diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 000000000..f42a45f52 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "tree-sitter-latex" +description = "latex grammar for the tree-sitter parsing library" +version = "0.0.1" +keywords = ["incremental", "parsing", "latex"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/tree-sitter/tree-sitter-javascript" +edition = "2018" +license = "MIT" + +build = "bindings/rust/build.rs" +include = [ + "bindings/rust/*", + "grammar.js", + "queries/*", + "src/*", +] + +[lib] +path = "bindings/rust/lib.rs" + +[dependencies] +tree-sitter = "0.17" + +[build-dependencies] +cc = "1.0" diff --git a/binding.gyp b/binding.gyp index 999cc9974..de05653c1 100644 --- a/binding.gyp +++ b/binding.gyp @@ -7,8 +7,9 @@ "src" ], "sources": [ + "bindings/node/binding.cc", "src/parser.c", - "src/binding.cc" + # If your language uses an external scanner, add it here. ], "cflags_c": [ "-std=c99", diff --git a/src/binding.cc b/bindings/node/binding.cc similarity index 100% rename from src/binding.cc rename to bindings/node/binding.cc diff --git a/bindings/node/index.js b/bindings/node/index.js new file mode 100644 index 000000000..368d029b8 --- /dev/null +++ b/bindings/node/index.js @@ -0,0 +1,19 @@ +try { + module.exports = require("../../build/Release/tree_sitter_latex_binding"); +} catch (error1) { + if (error1.code !== 'MODULE_NOT_FOUND') { + throw error1; + } + try { + module.exports = require("../../build/Debug/tree_sitter_latex_binding"); + } catch (error2) { + if (error2.code !== 'MODULE_NOT_FOUND') { + throw error2; + } + throw error1 + } +} + +try { + module.exports.nodeTypeInfo = require("../../src/node-types.json"); +} catch (_) {} diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs new file mode 100644 index 000000000..c6061f099 --- /dev/null +++ b/bindings/rust/build.rs @@ -0,0 +1,40 @@ +fn main() { + let src_dir = std::path::Path::new("src"); + + let mut c_config = cc::Build::new(); + c_config.include(&src_dir); + c_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable") + .flag_if_supported("-Wno-trigraphs"); + let parser_path = src_dir.join("parser.c"); + c_config.file(&parser_path); + + // If your language uses an external scanner written in C, + // then include this block of code: + + /* + let scanner_path = src_dir.join("scanner.c"); + c_config.file(&scanner_path); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + */ + + c_config.compile("parser"); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + + // If your language uses an external scanner written in C++, + // then include this block of code: + + /* + let mut cpp_config = cc::Build::new(); + cpp_config.cpp(true); + cpp_config.include(&src_dir); + cpp_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable"); + let scanner_path = src_dir.join("scanner.cc"); + cpp_config.file(&scanner_path); + cpp_config.compile("scanner"); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + */ +} diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs new file mode 100644 index 000000000..7671d6a81 --- /dev/null +++ b/bindings/rust/lib.rs @@ -0,0 +1,52 @@ +//! This crate provides latex 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_latex::language()).expect("Error loading latex 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_latex() -> 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_latex() } +} + +/// 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: &'static str = include_str!("../../src/node-types.json"); + +// Uncomment these to include any queries that this grammar contains + +// pub const HIGHLIGHTS_QUERY: &'static 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 latex language"); + } +} diff --git a/grammar.js b/grammar.js index d4d3119c5..efc981272 100644 --- a/grammar.js +++ b/grammar.js @@ -327,7 +327,7 @@ module.exports = grammar({ citation: $ => seq( - field('command', token(choice(...commands.citation))), + field('command', choice(...commands.citation)), optional( seq( field('prenote', $.bracket_group), @@ -341,7 +341,7 @@ module.exports = grammar({ package_include: $ => seq( - field('command', token(choice('\\usepackage', '\\RequirePackage'))), + field('command', choice('\\usepackage', '\\RequirePackage')), field('option', optional($.key_val_options)), '{', sepBy(field('path', $.word), ','), @@ -359,7 +359,7 @@ module.exports = grammar({ latex_include: $ => seq( - field('command', token(choice('\\include', '\\subfileinclude'))), + field('command', choice('\\include', '\\subfileinclude')), '{', sepBy(field('path', $.word), ','), '}' @@ -367,7 +367,7 @@ module.exports = grammar({ latex_input: $ => seq( - field('command', token(choice('\\input', '\\subfile'))), + field('command', choice('\\input', '\\subfile')), '{', sepBy(field('path', $.word), ','), '}' @@ -419,7 +419,7 @@ module.exports = grammar({ verbatim_include: $ => seq( - field('command', token(choice('\\verbatiminput', '\\VerbatimInput'))), + field('command', choice('\\verbatiminput', '\\VerbatimInput')), '{', sepBy(field('path', $.word), ','), '}' @@ -429,15 +429,13 @@ module.exports = grammar({ seq( field( 'command', - token( - choice( - '\\import', - '\\subimport', - '\\inputfrom', - '\\subimportfrom', - '\\includefrom', - '\\subincludefrom' - ) + choice( + '\\import', + '\\subimport', + '\\inputfrom', + '\\subimportfrom', + '\\includefrom', + '\\subincludefrom' ) ), '{', @@ -453,7 +451,7 @@ module.exports = grammar({ label_reference: $ => seq( - field('command', token(choice(...commands.labelReference))), + field('command', choice(...commands.labelReference)), '{', sepBy(field('label', $.word), ','), '}' @@ -470,7 +468,7 @@ module.exports = grammar({ label_reference_range: $ => prec.right( seq( - field('command', token(choice(...commands.labelRangeReference))), + field('command', choice(...commands.labelRangeReference)), '{', field('label1', $.word), '}', @@ -492,9 +490,7 @@ module.exports = grammar({ seq( field( 'command', - token( - choice('\\newcommand', '\\renewcommand', '\\DeclareRobustCommand') - ) + choice('\\newcommand', '\\renewcommand', '\\DeclareRobustCommand') ), field('argc', optional(seq('[', /\d/, ']'))), '{', @@ -507,7 +503,7 @@ module.exports = grammar({ seq( field( 'command', - token(choice('\\DeclareMathOperator', '\\DeclareMathOperator*')) + choice('\\DeclareMathOperator', '\\DeclareMathOperator*') ), '{', field('name', $.generic_command_name), @@ -528,7 +524,7 @@ module.exports = grammar({ glossary_entry_reference: $ => seq( - field('command', token(choice(...commands.glossaryEntryReference))), + field('command', choice(...commands.glossaryEntryReference)), field('option', optional($.key_val_options)), '{', field('name', $.word), @@ -548,7 +544,7 @@ module.exports = grammar({ acronym_reference: $ => seq( - field('command', token(choice(...commands.acronymReference))), + field('command', choice(...commands.acronymReference)), field('option', optional($.key_val_options)), '{', field('name', $.word), @@ -557,7 +553,7 @@ module.exports = grammar({ theorem_definition: $ => prec.right( seq( - field('command', token(choice('\\newtheorem', '\\declaretheorem'))), + field('command', choice('\\newtheorem', '\\declaretheorem')), '{', field('name', $.word), '}', @@ -581,7 +577,7 @@ module.exports = grammar({ seq( field( 'command', - token(choice('\\color', '\\colorbox', '\\textcolor', '\\pagecolor')) + choice('\\color', '\\colorbox', '\\textcolor', '\\pagecolor') ), '{', field('name', $.word), diff --git a/index.js b/index.js deleted file mode 100644 index e295f3445..000000000 --- a/index.js +++ /dev/null @@ -1,13 +0,0 @@ -try { - module.exports = require("./build/Release/tree_sitter_latex_binding"); -} catch (error) { - try { - module.exports = require("./build/Debug/tree_sitter_latex_binding"); - } catch (_) { - throw error - } -} - -try { - module.exports.nodeTypeInfo = require("./src/node-types.json"); -} catch (_) {} diff --git a/package-lock.json b/package-lock.json index f6ed82238..94c020984 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,9 +10,9 @@ "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==" }, "tree-sitter-cli": { - "version": "0.17.3", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.17.3.tgz", - "integrity": "sha512-AsQhjwRwWK5wtymwVc2H5E8/Q7yzMebSj7CQyeSg50k4h7m8HHwao1i/eKlh8aGTJ3IWbGjSwBAUZTSbzcSW6Q==", + "version": "0.19.4", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.19.4.tgz", + "integrity": "sha512-p2kxjuoQeauXBu5eE+j7c5BMCRXmc17EiAswnnWn3ieUlHXBkA0Z7vRnaCSElDR34MhZnSgqgzuuzQk0cDqCjw==", "dev": true } } diff --git a/package.json b/package.json index 94cd86454..e928e8aac 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "tree-sitter-latex", "version": "0.1.0", "description": "Tree-sitter Grammar for LaTeX", - "main": "index.js", + "main": "bindings/node", "scripts": { "build": "tree-sitter generate", "test": "tree-sitter test" @@ -26,6 +26,6 @@ "nan": "^2.14.2" }, "devDependencies": { - "tree-sitter-cli": "^0.17.3" + "tree-sitter-cli": "0.19.4" } } diff --git a/src/grammar.json b/src/grammar.json index 621f8d7c0..6189ae3c2 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1230,236 +1230,233 @@ "type": "FIELD", "name": "command", "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\cite" - }, - { - "type": "STRING", - "value": "\\cite*" - }, - { - "type": "STRING", - "value": "\\Cite" - }, - { - "type": "STRING", - "value": "\\nocite" - }, - { - "type": "STRING", - "value": "\\citet" - }, - { - "type": "STRING", - "value": "\\citep" - }, - { - "type": "STRING", - "value": "\\citet*" - }, - { - "type": "STRING", - "value": "\\citep*" - }, - { - "type": "STRING", - "value": "\\citeauthor" - }, - { - "type": "STRING", - "value": "\\citeauthor*" - }, - { - "type": "STRING", - "value": "\\Citeauthor" - }, - { - "type": "STRING", - "value": "\\Citeauthor*" - }, - { - "type": "STRING", - "value": "\\citetitle" - }, - { - "type": "STRING", - "value": "\\citetitle*" - }, - { - "type": "STRING", - "value": "\\citeyear" - }, - { - "type": "STRING", - "value": "\\citeyear*" - }, - { - "type": "STRING", - "value": "\\citedate" - }, - { - "type": "STRING", - "value": "\\citedate*" - }, - { - "type": "STRING", - "value": "\\citeurl" - }, - { - "type": "STRING", - "value": "\\fullcite" - }, - { - "type": "STRING", - "value": "\\citeyearpar" - }, - { - "type": "STRING", - "value": "\\citealt" - }, - { - "type": "STRING", - "value": "\\citealp" - }, - { - "type": "STRING", - "value": "\\citetext" - }, - { - "type": "STRING", - "value": "\\parencite" - }, - { - "type": "STRING", - "value": "\\parencite*" - }, - { - "type": "STRING", - "value": "\\Parencite" - }, - { - "type": "STRING", - "value": "\\footcite" - }, - { - "type": "STRING", - "value": "\\footfullcite" - }, - { - "type": "STRING", - "value": "\\footcitetext" - }, - { - "type": "STRING", - "value": "\\textcite" - }, - { - "type": "STRING", - "value": "\\Textcite" - }, - { - "type": "STRING", - "value": "\\smartcite" - }, - { - "type": "STRING", - "value": "\\Smartcite" - }, - { - "type": "STRING", - "value": "\\supercite" - }, - { - "type": "STRING", - "value": "\\autocite" - }, - { - "type": "STRING", - "value": "\\Autocite" - }, - { - "type": "STRING", - "value": "\\autocite*" - }, - { - "type": "STRING", - "value": "\\Autocite*" - }, - { - "type": "STRING", - "value": "\\volcite" - }, - { - "type": "STRING", - "value": "\\Volcite" - }, - { - "type": "STRING", - "value": "\\pvolcite" - }, - { - "type": "STRING", - "value": "\\Pvolcite" - }, - { - "type": "STRING", - "value": "\\fvolcite" - }, - { - "type": "STRING", - "value": "\\ftvolcite" - }, - { - "type": "STRING", - "value": "\\svolcite" - }, - { - "type": "STRING", - "value": "\\Svolcite" - }, - { - "type": "STRING", - "value": "\\tvolcite" - }, - { - "type": "STRING", - "value": "\\Tvolcite" - }, - { - "type": "STRING", - "value": "\\avolcite" - }, - { - "type": "STRING", - "value": "\\Avolcite" - }, - { - "type": "STRING", - "value": "\\notecite" - }, - { - "type": "STRING", - "value": "\\notecite" - }, - { - "type": "STRING", - "value": "\\pnotecite" - }, - { - "type": "STRING", - "value": "\\Pnotecite" - }, - { - "type": "STRING", - "value": "\\fnotecite" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\cite" + }, + { + "type": "STRING", + "value": "\\cite*" + }, + { + "type": "STRING", + "value": "\\Cite" + }, + { + "type": "STRING", + "value": "\\nocite" + }, + { + "type": "STRING", + "value": "\\citet" + }, + { + "type": "STRING", + "value": "\\citep" + }, + { + "type": "STRING", + "value": "\\citet*" + }, + { + "type": "STRING", + "value": "\\citep*" + }, + { + "type": "STRING", + "value": "\\citeauthor" + }, + { + "type": "STRING", + "value": "\\citeauthor*" + }, + { + "type": "STRING", + "value": "\\Citeauthor" + }, + { + "type": "STRING", + "value": "\\Citeauthor*" + }, + { + "type": "STRING", + "value": "\\citetitle" + }, + { + "type": "STRING", + "value": "\\citetitle*" + }, + { + "type": "STRING", + "value": "\\citeyear" + }, + { + "type": "STRING", + "value": "\\citeyear*" + }, + { + "type": "STRING", + "value": "\\citedate" + }, + { + "type": "STRING", + "value": "\\citedate*" + }, + { + "type": "STRING", + "value": "\\citeurl" + }, + { + "type": "STRING", + "value": "\\fullcite" + }, + { + "type": "STRING", + "value": "\\citeyearpar" + }, + { + "type": "STRING", + "value": "\\citealt" + }, + { + "type": "STRING", + "value": "\\citealp" + }, + { + "type": "STRING", + "value": "\\citetext" + }, + { + "type": "STRING", + "value": "\\parencite" + }, + { + "type": "STRING", + "value": "\\parencite*" + }, + { + "type": "STRING", + "value": "\\Parencite" + }, + { + "type": "STRING", + "value": "\\footcite" + }, + { + "type": "STRING", + "value": "\\footfullcite" + }, + { + "type": "STRING", + "value": "\\footcitetext" + }, + { + "type": "STRING", + "value": "\\textcite" + }, + { + "type": "STRING", + "value": "\\Textcite" + }, + { + "type": "STRING", + "value": "\\smartcite" + }, + { + "type": "STRING", + "value": "\\Smartcite" + }, + { + "type": "STRING", + "value": "\\supercite" + }, + { + "type": "STRING", + "value": "\\autocite" + }, + { + "type": "STRING", + "value": "\\Autocite" + }, + { + "type": "STRING", + "value": "\\autocite*" + }, + { + "type": "STRING", + "value": "\\Autocite*" + }, + { + "type": "STRING", + "value": "\\volcite" + }, + { + "type": "STRING", + "value": "\\Volcite" + }, + { + "type": "STRING", + "value": "\\pvolcite" + }, + { + "type": "STRING", + "value": "\\Pvolcite" + }, + { + "type": "STRING", + "value": "\\fvolcite" + }, + { + "type": "STRING", + "value": "\\ftvolcite" + }, + { + "type": "STRING", + "value": "\\svolcite" + }, + { + "type": "STRING", + "value": "\\Svolcite" + }, + { + "type": "STRING", + "value": "\\tvolcite" + }, + { + "type": "STRING", + "value": "\\Tvolcite" + }, + { + "type": "STRING", + "value": "\\avolcite" + }, + { + "type": "STRING", + "value": "\\Avolcite" + }, + { + "type": "STRING", + "value": "\\notecite" + }, + { + "type": "STRING", + "value": "\\notecite" + }, + { + "type": "STRING", + "value": "\\pnotecite" + }, + { + "type": "STRING", + "value": "\\Pnotecite" + }, + { + "type": "STRING", + "value": "\\fnotecite" + } + ] } }, { @@ -1554,23 +1551,20 @@ "type": "SEQ", "members": [ { - "type": "FIELD", - "name": "command", - "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\usepackage" - }, - { - "type": "STRING", - "value": "\\RequirePackage" - } - ] - } + "type": "FIELD", + "name": "command", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\usepackage" + }, + { + "type": "STRING", + "value": "\\RequirePackage" + } + ] } }, { @@ -1725,20 +1719,17 @@ "type": "FIELD", "name": "command", "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\include" - }, - { - "type": "STRING", - "value": "\\subfileinclude" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\include" + }, + { + "type": "STRING", + "value": "\\subfileinclude" + } + ] } }, { @@ -1799,20 +1790,17 @@ "type": "FIELD", "name": "command", "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\input" - }, - { - "type": "STRING", - "value": "\\subfile" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\input" + }, + { + "type": "STRING", + "value": "\\subfile" + } + ] } }, { @@ -2247,20 +2235,17 @@ "type": "FIELD", "name": "command", "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\verbatiminput" - }, - { - "type": "STRING", - "value": "\\VerbatimInput" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\verbatiminput" + }, + { + "type": "STRING", + "value": "\\VerbatimInput" + } + ] } }, { @@ -2321,36 +2306,33 @@ "type": "FIELD", "name": "command", "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\import" - }, - { - "type": "STRING", - "value": "\\subimport" - }, - { - "type": "STRING", - "value": "\\inputfrom" - }, - { - "type": "STRING", - "value": "\\subimportfrom" - }, - { - "type": "STRING", - "value": "\\includefrom" - }, - { - "type": "STRING", - "value": "\\subincludefrom" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\import" + }, + { + "type": "STRING", + "value": "\\subimport" + }, + { + "type": "STRING", + "value": "\\inputfrom" + }, + { + "type": "STRING", + "value": "\\subimportfrom" + }, + { + "type": "STRING", + "value": "\\includefrom" + }, + { + "type": "STRING", + "value": "\\subincludefrom" + } + ] } }, { @@ -2423,80 +2405,77 @@ "type": "FIELD", "name": "command", "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\ref" - }, - { - "type": "STRING", - "value": "\\vref" - }, - { - "type": "STRING", - "value": "\\Vref" - }, - { - "type": "STRING", - "value": "\\autoref" - }, - { - "type": "STRING", - "value": "\\pageref" - }, - { - "type": "STRING", - "value": "\\cref" - }, - { - "type": "STRING", - "value": "\\Cref" - }, - { - "type": "STRING", - "value": "\\cref*" - }, - { - "type": "STRING", - "value": "\\Cref*" - }, - { - "type": "STRING", - "value": "\\namecref" - }, - { - "type": "STRING", - "value": "\\nameCref" - }, - { - "type": "STRING", - "value": "\\lcnamecref" - }, - { - "type": "STRING", - "value": "\\namecrefs" - }, - { - "type": "STRING", - "value": "\\nameCrefs" - }, - { - "type": "STRING", - "value": "\\lcnamecrefs" - }, - { - "type": "STRING", - "value": "\\labelcref" - }, - { - "type": "STRING", - "value": "\\labelcpageref" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\ref" + }, + { + "type": "STRING", + "value": "\\vref" + }, + { + "type": "STRING", + "value": "\\Vref" + }, + { + "type": "STRING", + "value": "\\autoref" + }, + { + "type": "STRING", + "value": "\\pageref" + }, + { + "type": "STRING", + "value": "\\cref" + }, + { + "type": "STRING", + "value": "\\Cref" + }, + { + "type": "STRING", + "value": "\\cref*" + }, + { + "type": "STRING", + "value": "\\Cref*" + }, + { + "type": "STRING", + "value": "\\namecref" + }, + { + "type": "STRING", + "value": "\\nameCref" + }, + { + "type": "STRING", + "value": "\\lcnamecref" + }, + { + "type": "STRING", + "value": "\\namecrefs" + }, + { + "type": "STRING", + "value": "\\nameCrefs" + }, + { + "type": "STRING", + "value": "\\lcnamecrefs" + }, + { + "type": "STRING", + "value": "\\labelcref" + }, + { + "type": "STRING", + "value": "\\labelcpageref" + } + ] } }, { @@ -2613,45 +2592,42 @@ { "type": "FIELD", "name": "command", - "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\crefrange" - }, - { - "type": "STRING", - "value": "\\crefrange" - }, - { - "type": "STRING", - "value": "\\Crefrange" - }, - { - "type": "STRING", - "value": "\\Crefrange" - }, - { - "type": "STRING", - "value": "\\crefrange*" - }, - { - "type": "STRING", - "value": "\\crefrange*" - }, - { - "type": "STRING", - "value": "\\Crefrange*" - }, - { - "type": "STRING", - "value": "\\Crefrange*" - } - ] - } + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\crefrange" + }, + { + "type": "STRING", + "value": "\\crefrange" + }, + { + "type": "STRING", + "value": "\\Crefrange" + }, + { + "type": "STRING", + "value": "\\Crefrange" + }, + { + "type": "STRING", + "value": "\\crefrange*" + }, + { + "type": "STRING", + "value": "\\crefrange*" + }, + { + "type": "STRING", + "value": "\\Crefrange*" + }, + { + "type": "STRING", + "value": "\\Crefrange*" + } + ] } }, { @@ -2746,24 +2722,21 @@ "type": "FIELD", "name": "command", "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\newcommand" - }, - { - "type": "STRING", - "value": "\\renewcommand" - }, - { - "type": "STRING", - "value": "\\DeclareRobustCommand" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\newcommand" + }, + { + "type": "STRING", + "value": "\\renewcommand" + }, + { + "type": "STRING", + "value": "\\DeclareRobustCommand" + } + ] } }, { @@ -2828,20 +2801,17 @@ "type": "FIELD", "name": "command", "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\DeclareMathOperator" - }, - { - "type": "STRING", - "value": "\\DeclareMathOperator*" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\DeclareMathOperator" + }, + { + "type": "STRING", + "value": "\\DeclareMathOperator*" + } + ] } }, { @@ -2955,196 +2925,193 @@ "type": "FIELD", "name": "command", "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\gls" - }, - { - "type": "STRING", - "value": "\\Gls" - }, - { - "type": "STRING", - "value": "\\GLS" - }, - { - "type": "STRING", - "value": "\\glspl" - }, - { - "type": "STRING", - "value": "\\Glspl" - }, - { - "type": "STRING", - "value": "\\GLSpl" - }, - { - "type": "STRING", - "value": "\\glsdisp" - }, - { - "type": "STRING", - "value": "\\glslink" - }, - { - "type": "STRING", - "value": "\\glstext" - }, - { - "type": "STRING", - "value": "\\Glstext" - }, - { - "type": "STRING", - "value": "\\GLStext" - }, - { - "type": "STRING", - "value": "\\glsfirst" - }, - { - "type": "STRING", - "value": "\\Glsfirst" - }, - { - "type": "STRING", - "value": "\\GLSfirst" - }, - { - "type": "STRING", - "value": "\\glsplural" - }, - { - "type": "STRING", - "value": "\\Glsplural" - }, - { - "type": "STRING", - "value": "\\GLSplural" - }, - { - "type": "STRING", - "value": "\\glsfirstplural" - }, - { - "type": "STRING", - "value": "\\Glsfirstplural" - }, - { - "type": "STRING", - "value": "\\GLSfirstplural" - }, - { - "type": "STRING", - "value": "\\glsname" - }, - { - "type": "STRING", - "value": "\\Glsname" - }, - { - "type": "STRING", - "value": "\\GLSname" - }, - { - "type": "STRING", - "value": "\\glssymbol" - }, - { - "type": "STRING", - "value": "\\Glssymbol" - }, - { - "type": "STRING", - "value": "\\glsdesc" - }, - { - "type": "STRING", - "value": "\\Glsdesc" - }, - { - "type": "STRING", - "value": "\\GLSdesc" - }, - { - "type": "STRING", - "value": "\\glsuseri" - }, - { - "type": "STRING", - "value": "\\Glsuseri" - }, - { - "type": "STRING", - "value": "\\GLSuseri" - }, - { - "type": "STRING", - "value": "\\glsuserii" - }, - { - "type": "STRING", - "value": "\\Glsuserii" - }, - { - "type": "STRING", - "value": "\\GLSuserii" - }, - { - "type": "STRING", - "value": "\\glsuseriii" - }, - { - "type": "STRING", - "value": "\\Glsuseriii" - }, - { - "type": "STRING", - "value": "\\GLSuseriii" - }, - { - "type": "STRING", - "value": "\\glsuseriv" - }, - { - "type": "STRING", - "value": "\\Glsuseriv" - }, - { - "type": "STRING", - "value": "\\GLSuseriv" - }, - { - "type": "STRING", - "value": "\\glsuserv" - }, - { - "type": "STRING", - "value": "\\Glsuserv" - }, - { - "type": "STRING", - "value": "\\GLSuserv" - }, - { - "type": "STRING", - "value": "\\glsuservi" - }, - { - "type": "STRING", - "value": "\\Glsuservi" - }, - { - "type": "STRING", - "value": "\\GLSuservi" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\gls" + }, + { + "type": "STRING", + "value": "\\Gls" + }, + { + "type": "STRING", + "value": "\\GLS" + }, + { + "type": "STRING", + "value": "\\glspl" + }, + { + "type": "STRING", + "value": "\\Glspl" + }, + { + "type": "STRING", + "value": "\\GLSpl" + }, + { + "type": "STRING", + "value": "\\glsdisp" + }, + { + "type": "STRING", + "value": "\\glslink" + }, + { + "type": "STRING", + "value": "\\glstext" + }, + { + "type": "STRING", + "value": "\\Glstext" + }, + { + "type": "STRING", + "value": "\\GLStext" + }, + { + "type": "STRING", + "value": "\\glsfirst" + }, + { + "type": "STRING", + "value": "\\Glsfirst" + }, + { + "type": "STRING", + "value": "\\GLSfirst" + }, + { + "type": "STRING", + "value": "\\glsplural" + }, + { + "type": "STRING", + "value": "\\Glsplural" + }, + { + "type": "STRING", + "value": "\\GLSplural" + }, + { + "type": "STRING", + "value": "\\glsfirstplural" + }, + { + "type": "STRING", + "value": "\\Glsfirstplural" + }, + { + "type": "STRING", + "value": "\\GLSfirstplural" + }, + { + "type": "STRING", + "value": "\\glsname" + }, + { + "type": "STRING", + "value": "\\Glsname" + }, + { + "type": "STRING", + "value": "\\GLSname" + }, + { + "type": "STRING", + "value": "\\glssymbol" + }, + { + "type": "STRING", + "value": "\\Glssymbol" + }, + { + "type": "STRING", + "value": "\\glsdesc" + }, + { + "type": "STRING", + "value": "\\Glsdesc" + }, + { + "type": "STRING", + "value": "\\GLSdesc" + }, + { + "type": "STRING", + "value": "\\glsuseri" + }, + { + "type": "STRING", + "value": "\\Glsuseri" + }, + { + "type": "STRING", + "value": "\\GLSuseri" + }, + { + "type": "STRING", + "value": "\\glsuserii" + }, + { + "type": "STRING", + "value": "\\Glsuserii" + }, + { + "type": "STRING", + "value": "\\GLSuserii" + }, + { + "type": "STRING", + "value": "\\glsuseriii" + }, + { + "type": "STRING", + "value": "\\Glsuseriii" + }, + { + "type": "STRING", + "value": "\\GLSuseriii" + }, + { + "type": "STRING", + "value": "\\glsuseriv" + }, + { + "type": "STRING", + "value": "\\Glsuseriv" + }, + { + "type": "STRING", + "value": "\\GLSuseriv" + }, + { + "type": "STRING", + "value": "\\glsuserv" + }, + { + "type": "STRING", + "value": "\\Glsuserv" + }, + { + "type": "STRING", + "value": "\\GLSuserv" + }, + { + "type": "STRING", + "value": "\\glsuservi" + }, + { + "type": "STRING", + "value": "\\Glsuservi" + }, + { + "type": "STRING", + "value": "\\GLSuservi" + } + ] } }, { @@ -3195,236 +3162,233 @@ "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "key_val_options" + "type": "SYMBOL", + "name": "key_val_options" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": "{" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "word" + } + }, + { + "type": "STRING", + "value": "}" + }, + { + "type": "FIELD", + "name": "short", + "content": { + "type": "SYMBOL", + "name": "brace_group" + } + }, + { + "type": "FIELD", + "name": "long", + "content": { + "type": "SYMBOL", + "name": "brace_group" + } + } + ] + }, + "acronym_reference": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\acrshort" + }, + { + "type": "STRING", + "value": "\\Acrshort" + }, + { + "type": "STRING", + "value": "\\ACRshort" + }, + { + "type": "STRING", + "value": "\\acrshortpl" + }, + { + "type": "STRING", + "value": "\\Acrshortpl" + }, + { + "type": "STRING", + "value": "\\ACRshortpl" + }, + { + "type": "STRING", + "value": "\\acrlong" + }, + { + "type": "STRING", + "value": "\\Acrlong" + }, + { + "type": "STRING", + "value": "\\ACRlong" + }, + { + "type": "STRING", + "value": "\\acrlongpl" + }, + { + "type": "STRING", + "value": "\\Acrlongpl" + }, + { + "type": "STRING", + "value": "\\ACRlongpl" + }, + { + "type": "STRING", + "value": "\\acrfull" + }, + { + "type": "STRING", + "value": "\\Acrfull" + }, + { + "type": "STRING", + "value": "\\ACRfull" + }, + { + "type": "STRING", + "value": "\\acrfullpl" + }, + { + "type": "STRING", + "value": "\\Acrfullpl" + }, + { + "type": "STRING", + "value": "\\ACRfullpl" + }, + { + "type": "STRING", + "value": "\\acs" + }, + { + "type": "STRING", + "value": "\\Acs" + }, + { + "type": "STRING", + "value": "\\acsp" + }, + { + "type": "STRING", + "value": "\\Acsp" + }, + { + "type": "STRING", + "value": "\\acl" + }, + { + "type": "STRING", + "value": "\\Acl" + }, + { + "type": "STRING", + "value": "\\aclp" + }, + { + "type": "STRING", + "value": "\\Aclp" + }, + { + "type": "STRING", + "value": "\\acf" + }, + { + "type": "STRING", + "value": "\\Acf" + }, + { + "type": "STRING", + "value": "\\acfp" + }, + { + "type": "STRING", + "value": "\\Acfp" + }, + { + "type": "STRING", + "value": "\\ac" + }, + { + "type": "STRING", + "value": "\\Ac" + }, + { + "type": "STRING", + "value": "\\acp" + }, + { + "type": "STRING", + "value": "\\glsentrylong" + }, + { + "type": "STRING", + "value": "\\Glsentrylong" }, { - "type": "BLANK" + "type": "STRING", + "value": "\\glsentrylongpl" + }, + { + "type": "STRING", + "value": "\\Glsentrylongpl" + }, + { + "type": "STRING", + "value": "\\glsentryshort" + }, + { + "type": "STRING", + "value": "\\Glsentryshort" + }, + { + "type": "STRING", + "value": "\\glsentryshortpl" + }, + { + "type": "STRING", + "value": "\\Glsentryshortpl" + }, + { + "type": "STRING", + "value": "\\glsentryfullpl" + }, + { + "type": "STRING", + "value": "\\Glsentryfullpl" } ] } }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "word" - } - }, - { - "type": "STRING", - "value": "}" - }, - { - "type": "FIELD", - "name": "short", - "content": { - "type": "SYMBOL", - "name": "brace_group" - } - }, - { - "type": "FIELD", - "name": "long", - "content": { - "type": "SYMBOL", - "name": "brace_group" - } - } - ] - }, - "acronym_reference": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "command", - "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\acrshort" - }, - { - "type": "STRING", - "value": "\\Acrshort" - }, - { - "type": "STRING", - "value": "\\ACRshort" - }, - { - "type": "STRING", - "value": "\\acrshortpl" - }, - { - "type": "STRING", - "value": "\\Acrshortpl" - }, - { - "type": "STRING", - "value": "\\ACRshortpl" - }, - { - "type": "STRING", - "value": "\\acrlong" - }, - { - "type": "STRING", - "value": "\\Acrlong" - }, - { - "type": "STRING", - "value": "\\ACRlong" - }, - { - "type": "STRING", - "value": "\\acrlongpl" - }, - { - "type": "STRING", - "value": "\\Acrlongpl" - }, - { - "type": "STRING", - "value": "\\ACRlongpl" - }, - { - "type": "STRING", - "value": "\\acrfull" - }, - { - "type": "STRING", - "value": "\\Acrfull" - }, - { - "type": "STRING", - "value": "\\ACRfull" - }, - { - "type": "STRING", - "value": "\\acrfullpl" - }, - { - "type": "STRING", - "value": "\\Acrfullpl" - }, - { - "type": "STRING", - "value": "\\ACRfullpl" - }, - { - "type": "STRING", - "value": "\\acs" - }, - { - "type": "STRING", - "value": "\\Acs" - }, - { - "type": "STRING", - "value": "\\acsp" - }, - { - "type": "STRING", - "value": "\\Acsp" - }, - { - "type": "STRING", - "value": "\\acl" - }, - { - "type": "STRING", - "value": "\\Acl" - }, - { - "type": "STRING", - "value": "\\aclp" - }, - { - "type": "STRING", - "value": "\\Aclp" - }, - { - "type": "STRING", - "value": "\\acf" - }, - { - "type": "STRING", - "value": "\\Acf" - }, - { - "type": "STRING", - "value": "\\acfp" - }, - { - "type": "STRING", - "value": "\\Acfp" - }, - { - "type": "STRING", - "value": "\\ac" - }, - { - "type": "STRING", - "value": "\\Ac" - }, - { - "type": "STRING", - "value": "\\acp" - }, - { - "type": "STRING", - "value": "\\glsentrylong" - }, - { - "type": "STRING", - "value": "\\Glsentrylong" - }, - { - "type": "STRING", - "value": "\\glsentrylongpl" - }, - { - "type": "STRING", - "value": "\\Glsentrylongpl" - }, - { - "type": "STRING", - "value": "\\glsentryshort" - }, - { - "type": "STRING", - "value": "\\Glsentryshort" - }, - { - "type": "STRING", - "value": "\\glsentryshortpl" - }, - { - "type": "STRING", - "value": "\\Glsentryshortpl" - }, - { - "type": "STRING", - "value": "\\glsentryfullpl" - }, - { - "type": "STRING", - "value": "\\Glsentryfullpl" - } - ] - } - } - }, { "type": "FIELD", "name": "option", @@ -3469,20 +3433,17 @@ "type": "FIELD", "name": "command", "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\newtheorem" - }, - { - "type": "STRING", - "value": "\\declaretheorem" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\newtheorem" + }, + { + "type": "STRING", + "value": "\\declaretheorem" + } + ] } }, { @@ -3590,28 +3551,25 @@ "type": "FIELD", "name": "command", "content": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\\color" - }, - { - "type": "STRING", - "value": "\\colorbox" - }, - { - "type": "STRING", - "value": "\\textcolor" - }, - { - "type": "STRING", - "value": "\\pagecolor" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\color" + }, + { + "type": "STRING", + "value": "\\colorbox" + }, + { + "type": "STRING", + "value": "\\textcolor" + }, + { + "type": "STRING", + "value": "\\pagecolor" + } + ] } }, { @@ -4024,6 +3982,7 @@ } ], "conflicts": [], + "precedences": [], "externals": [], "inline": [], "supertypes": [] diff --git a/src/node-types.json b/src/node-types.json index b90e104ec..956d0aa00 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -49,6 +49,184 @@ "type": "acronym_reference", "named": true, "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\ACRfull", + "named": false + }, + { + "type": "\\ACRfullpl", + "named": false + }, + { + "type": "\\ACRlong", + "named": false + }, + { + "type": "\\ACRlongpl", + "named": false + }, + { + "type": "\\ACRshort", + "named": false + }, + { + "type": "\\ACRshortpl", + "named": false + }, + { + "type": "\\Ac", + "named": false + }, + { + "type": "\\Acf", + "named": false + }, + { + "type": "\\Acfp", + "named": false + }, + { + "type": "\\Acl", + "named": false + }, + { + "type": "\\Aclp", + "named": false + }, + { + "type": "\\Acrfull", + "named": false + }, + { + "type": "\\Acrfullpl", + "named": false + }, + { + "type": "\\Acrlong", + "named": false + }, + { + "type": "\\Acrlongpl", + "named": false + }, + { + "type": "\\Acrshort", + "named": false + }, + { + "type": "\\Acrshortpl", + "named": false + }, + { + "type": "\\Acs", + "named": false + }, + { + "type": "\\Acsp", + "named": false + }, + { + "type": "\\Glsentryfullpl", + "named": false + }, + { + "type": "\\Glsentrylong", + "named": false + }, + { + "type": "\\Glsentrylongpl", + "named": false + }, + { + "type": "\\Glsentryshort", + "named": false + }, + { + "type": "\\Glsentryshortpl", + "named": false + }, + { + "type": "\\ac", + "named": false + }, + { + "type": "\\acf", + "named": false + }, + { + "type": "\\acfp", + "named": false + }, + { + "type": "\\acl", + "named": false + }, + { + "type": "\\aclp", + "named": false + }, + { + "type": "\\acp", + "named": false + }, + { + "type": "\\acrfull", + "named": false + }, + { + "type": "\\acrfullpl", + "named": false + }, + { + "type": "\\acrlong", + "named": false + }, + { + "type": "\\acrlongpl", + "named": false + }, + { + "type": "\\acrshort", + "named": false + }, + { + "type": "\\acrshortpl", + "named": false + }, + { + "type": "\\acs", + "named": false + }, + { + "type": "\\acsp", + "named": false + }, + { + "type": "\\glsentryfullpl", + "named": false + }, + { + "type": "\\glsentrylong", + "named": false + }, + { + "type": "\\glsentrylongpl", + "named": false + }, + { + "type": "\\glsentryshort", + "named": false + }, + { + "type": "\\glsentryshortpl", + "named": false + } + ] + }, "name": { "multiple": false, "required": true, @@ -838,664 +1016,267 @@ { "type": "citation", "named": true, - "fields": { - "key": { - "multiple": true, - "required": false, - "types": [ - { - "type": "word", - "named": true - } - ] - }, - "postnote": { - "multiple": false, - "required": false, - "types": [ - { - "type": "bracket_group", - "named": true - } - ] - }, - "prenote": { - "multiple": false, - "required": false, - "types": [ - { - "type": "bracket_group", - "named": true - } - ] - } - } - }, - { - "type": "class_include", - "named": true, "fields": { "command": { "multiple": false, "required": true, "types": [ { - "type": "\\documentclass", + "type": "\\Autocite", "named": false - } - ] - }, - "option": { - "multiple": false, - "required": false, - "types": [ + }, { - "type": "key_val_options", - "named": true - } - ] - }, - "path": { - "multiple": true, - "required": false, - "types": [ + "type": "\\Autocite*", + "named": false + }, { - "type": "word", - "named": true - } - ] - } - } - }, - { - "type": "color_definition", - "named": true, - "fields": { - "command": { - "multiple": false, - "required": true, - "types": [ + "type": "\\Avolcite", + "named": false + }, { - "type": "\\definecolor", + "type": "\\Cite", "named": false - } - ] - }, - "model": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "word", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ + "type": "\\Citeauthor", + "named": false + }, { - "type": "word", - "named": true - } - ] - }, - "spec": { - "multiple": false, - "required": false, - "types": [ + "type": "\\Citeauthor*", + "named": false + }, { - "type": "text", - "named": true - } - ] - } - } - }, - { - "type": "color_reference", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ + "type": "\\Parencite", + "named": false + }, { - "type": "word", - "named": true - } - ] - } - } - }, - { - "type": "color_set_definition", - "named": true, - "fields": { - "command": { - "multiple": false, - "required": true, - "types": [ - { - "type": "\\definecolorset", + "type": "\\Pnotecite", "named": false - } - ] - }, - "head": { - "multiple": false, - "required": false, - "types": [ - { - "type": "brace_group", - "named": true - } - ] - }, - "model": { - "multiple": true, - "required": false, - "types": [ - { - "type": "word", - "named": true - } - ] - }, - "spec": { - "multiple": false, - "required": false, - "types": [ - { - "type": "brace_group", - "named": true - } - ] - }, - "tail": { - "multiple": false, - "required": false, - "types": [ - { - "type": "brace_group", - "named": true - } - ] - }, - "ty": { - "multiple": false, - "required": false, - "types": [ - { - "type": "word", - "named": true - } - ] - } - } - }, - { - "type": "command_definition", - "named": true, - "fields": { - "argc": { - "multiple": true, - "required": false, - "types": [ + }, { - "type": "[", + "type": "\\Pvolcite", "named": false }, { - "type": "]", + "type": "\\Smartcite", "named": false - } - ] - }, - "implementation": { - "multiple": false, - "required": true, - "types": [ - { - "type": "brace_group", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "generic_command_name", - "named": true - } - ] - } - } - }, - { - "type": "displayed_equation", - "named": true, - "fields": { - "child": { - "multiple": true, - "required": false, - "types": [ - { - "type": "acronym_definition", - "named": true }, { - "type": "acronym_reference", - "named": true + "type": "\\Svolcite", + "named": false }, { - "type": "biblatex_include", - "named": true + "type": "\\Textcite", + "named": false }, { - "type": "bibtex_include", - "named": true + "type": "\\Tvolcite", + "named": false }, { - "type": "brace_group", - "named": true + "type": "\\Volcite", + "named": false }, { - "type": "caption", - "named": true + "type": "\\autocite", + "named": false }, { - "type": "chapter", - "named": true + "type": "\\autocite*", + "named": false }, { - "type": "citation", - "named": true + "type": "\\avolcite", + "named": false }, { - "type": "class_include", - "named": true + "type": "\\cite", + "named": false }, { - "type": "color_definition", - "named": true + "type": "\\cite*", + "named": false }, { - "type": "color_reference", - "named": true + "type": "\\citealp", + "named": false }, { - "type": "color_set_definition", - "named": true + "type": "\\citealt", + "named": false }, { - "type": "command_definition", - "named": true + "type": "\\citeauthor", + "named": false }, { - "type": "displayed_equation", - "named": true + "type": "\\citeauthor*", + "named": false }, { - "type": "enum_item", - "named": true + "type": "\\citedate", + "named": false }, { - "type": "environment", - "named": true + "type": "\\citedate*", + "named": false }, { - "type": "equation_label_reference", - "named": true + "type": "\\citep", + "named": false }, { - "type": "generic_command", - "named": true + "type": "\\citep*", + "named": false }, { - "type": "glossary_entry_definition", - "named": true + "type": "\\citet", + "named": false }, { - "type": "glossary_entry_reference", - "named": true + "type": "\\citet*", + "named": false }, { - "type": "graphics_include", - "named": true + "type": "\\citetext", + "named": false }, { - "type": "import", - "named": true + "type": "\\citetitle", + "named": false }, { - "type": "inkscape_include", - "named": true + "type": "\\citetitle*", + "named": false }, { - "type": "inline_formula", - "named": true + "type": "\\citeurl", + "named": false }, { - "type": "label_definition", - "named": true + "type": "\\citeyear", + "named": false }, { - "type": "label_number", - "named": true + "type": "\\citeyear*", + "named": false }, { - "type": "label_reference", - "named": true + "type": "\\citeyearpar", + "named": false }, { - "type": "label_reference_range", - "named": true + "type": "\\fnotecite", + "named": false }, { - "type": "latex_include", - "named": true + "type": "\\footcite", + "named": false }, { - "type": "latex_input", - "named": true + "type": "\\footcitetext", + "named": false }, { - "type": "math_operator", - "named": true + "type": "\\footfullcite", + "named": false }, { - "type": "mixed_group", - "named": true + "type": "\\ftvolcite", + "named": false }, { - "type": "package_include", - "named": true + "type": "\\fullcite", + "named": false }, { - "type": "paragraph", - "named": true + "type": "\\fvolcite", + "named": false }, { - "type": "param", - "named": true + "type": "\\nocite", + "named": false }, { - "type": "part", - "named": true + "type": "\\notecite", + "named": false }, { - "type": "pgf_library_import", - "named": true + "type": "\\parencite", + "named": false }, { - "type": "section", - "named": true + "type": "\\parencite*", + "named": false }, { - "type": "subparagraph", - "named": true + "type": "\\pnotecite", + "named": false }, { - "type": "subsection", - "named": true + "type": "\\pvolcite", + "named": false }, { - "type": "subsubsection", - "named": true + "type": "\\smartcite", + "named": false }, { - "type": "svg_include", - "named": true + "type": "\\supercite", + "named": false }, { - "type": "text", - "named": true + "type": "\\svolcite", + "named": false }, { - "type": "theorem_definition", - "named": true + "type": "\\textcite", + "named": false }, { - "type": "tikz_library_import", - "named": true + "type": "\\tvolcite", + "named": false }, { - "type": "verbatim_include", - "named": true + "type": "\\volcite", + "named": false } ] }, - "left": { - "multiple": false, - "required": true, + "key": { + "multiple": true, + "required": false, "types": [ { - "type": "$$", - "named": false - }, - { - "type": "\\[", - "named": false + "type": "word", + "named": true } ] }, - "right": { + "postnote": { "multiple": false, - "required": true, + "required": false, "types": [ { - "type": "$$", - "named": false - }, + "type": "bracket_group", + "named": true + } + ] + }, + "prenote": { + "multiple": false, + "required": false, + "types": [ { - "type": "\\]", - "named": false + "type": "bracket_group", + "named": true } ] } } }, { - "type": "document", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "acronym_definition", - "named": true - }, - { - "type": "acronym_reference", - "named": true - }, - { - "type": "biblatex_include", - "named": true - }, - { - "type": "bibtex_include", - "named": true - }, - { - "type": "brace_group", - "named": true - }, - { - "type": "caption", - "named": true - }, - { - "type": "chapter", - "named": true - }, - { - "type": "citation", - "named": true - }, - { - "type": "class_include", - "named": true - }, - { - "type": "color_definition", - "named": true - }, - { - "type": "color_reference", - "named": true - }, - { - "type": "color_set_definition", - "named": true - }, - { - "type": "command_definition", - "named": true - }, - { - "type": "displayed_equation", - "named": true - }, - { - "type": "enum_item", - "named": true - }, - { - "type": "environment", - "named": true - }, - { - "type": "equation_label_reference", - "named": true - }, - { - "type": "generic_command", - "named": true - }, - { - "type": "glossary_entry_definition", - "named": true - }, - { - "type": "glossary_entry_reference", - "named": true - }, - { - "type": "graphics_include", - "named": true - }, - { - "type": "import", - "named": true - }, - { - "type": "inkscape_include", - "named": true - }, - { - "type": "inline_formula", - "named": true - }, - { - "type": "label_definition", - "named": true - }, - { - "type": "label_number", - "named": true - }, - { - "type": "label_reference", - "named": true - }, - { - "type": "label_reference_range", - "named": true - }, - { - "type": "latex_include", - "named": true - }, - { - "type": "latex_input", - "named": true - }, - { - "type": "math_operator", - "named": true - }, - { - "type": "mixed_group", - "named": true - }, - { - "type": "package_include", - "named": true - }, - { - "type": "paragraph", - "named": true - }, - { - "type": "param", - "named": true - }, - { - "type": "part", - "named": true - }, - { - "type": "pgf_library_import", - "named": true - }, - { - "type": "section", - "named": true - }, - { - "type": "subparagraph", - "named": true - }, - { - "type": "subsection", - "named": true - }, - { - "type": "subsubsection", - "named": true - }, - { - "type": "svg_include", - "named": true - }, - { - "type": "text", - "named": true - }, - { - "type": "theorem_definition", - "named": true - }, - { - "type": "tikz_library_import", - "named": true - }, - { - "type": "verbatim_include", - "named": true - } - ] - } - }, - { - "type": "end", + "type": "class_include", "named": true, "fields": { "command": { @@ -1503,14 +1284,24 @@ "required": true, "types": [ { - "type": "\\end", + "type": "\\documentclass", "named": false } ] }, - "name": { + "option": { "multiple": false, - "required": true, + "required": false, + "types": [ + { + "type": "key_val_options", + "named": true + } + ] + }, + "path": { + "multiple": true, + "required": false, "types": [ { "type": "word", @@ -1521,17 +1312,225 @@ } }, { - "type": "enum_item", + "type": "color_definition", "named": true, "fields": { - "child": { - "multiple": true, - "required": false, + "command": { + "multiple": false, + "required": true, "types": [ { - "type": "acronym_definition", - "named": true - }, + "type": "\\definecolor", + "named": false + } + ] + }, + "model": { + "multiple": false, + "required": true, + "types": [ + { + "type": "word", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "word", + "named": true + } + ] + }, + "spec": { + "multiple": false, + "required": false, + "types": [ + { + "type": "text", + "named": true + } + ] + } + } + }, + { + "type": "color_reference", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\color", + "named": false + }, + { + "type": "\\colorbox", + "named": false + }, + { + "type": "\\pagecolor", + "named": false + }, + { + "type": "\\textcolor", + "named": false + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "word", + "named": true + } + ] + } + } + }, + { + "type": "color_set_definition", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\definecolorset", + "named": false + } + ] + }, + "head": { + "multiple": false, + "required": false, + "types": [ + { + "type": "brace_group", + "named": true + } + ] + }, + "model": { + "multiple": true, + "required": false, + "types": [ + { + "type": "word", + "named": true + } + ] + }, + "spec": { + "multiple": false, + "required": false, + "types": [ + { + "type": "brace_group", + "named": true + } + ] + }, + "tail": { + "multiple": false, + "required": false, + "types": [ + { + "type": "brace_group", + "named": true + } + ] + }, + "ty": { + "multiple": false, + "required": false, + "types": [ + { + "type": "word", + "named": true + } + ] + } + } + }, + { + "type": "command_definition", + "named": true, + "fields": { + "argc": { + "multiple": true, + "required": false, + "types": [ + { + "type": "[", + "named": false + }, + { + "type": "]", + "named": false + } + ] + }, + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\DeclareRobustCommand", + "named": false + }, + { + "type": "\\newcommand", + "named": false + }, + { + "type": "\\renewcommand", + "named": false + } + ] + }, + "implementation": { + "multiple": false, + "required": true, + "types": [ + { + "type": "brace_group", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "generic_command_name", + "named": true + } + ] + } + } + }, + { + "type": "displayed_equation", + "named": true, + "fields": { + "child": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, { "type": "acronym_reference", "named": true @@ -1552,6 +1551,10 @@ "type": "caption", "named": true }, + { + "type": "chapter", + "named": true + }, { "type": "citation", "named": true @@ -1580,6 +1583,10 @@ "type": "displayed_equation", "named": true }, + { + "type": "enum_item", + "named": true + }, { "type": "environment", "named": true @@ -1652,14 +1659,38 @@ "type": "package_include", "named": true }, + { + "type": "paragraph", + "named": true + }, { "type": "param", "named": true }, + { + "type": "part", + "named": true + }, { "type": "pgf_library_import", "named": true }, + { + "type": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, { "type": "svg_include", "named": true @@ -1682,42 +1713,261 @@ } ] }, - "command": { + "left": { "multiple": false, "required": true, "types": [ { - "type": "\\item", + "type": "$$", + "named": false + }, + { + "type": "\\[", "named": false } ] }, - "label": { + "right": { "multiple": false, - "required": false, + "required": true, "types": [ { - "type": "word", - "named": true + "type": "$$", + "named": false + }, + { + "type": "\\]", + "named": false } ] } } }, { - "type": "environment", + "type": "document", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "acronym_reference", + "named": true + }, + { + "type": "biblatex_include", + "named": true + }, + { + "type": "bibtex_include", + "named": true + }, + { + "type": "brace_group", + "named": true + }, + { + "type": "caption", + "named": true + }, + { + "type": "chapter", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "class_include", + "named": true + }, + { + "type": "color_definition", + "named": true + }, + { + "type": "color_reference", + "named": true + }, + { + "type": "color_set_definition", + "named": true + }, + { + "type": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "named": true + }, + { + "type": "equation_label_reference", + "named": true + }, + { + "type": "generic_command", + "named": true + }, + { + "type": "glossary_entry_definition", + "named": true + }, + { + "type": "glossary_entry_reference", + "named": true + }, + { + "type": "graphics_include", + "named": true + }, + { + "type": "import", + "named": true + }, + { + "type": "inkscape_include", + "named": true + }, + { + "type": "inline_formula", + "named": true + }, + { + "type": "label_definition", + "named": true + }, + { + "type": "label_number", + "named": true + }, + { + "type": "label_reference", + "named": true + }, + { + "type": "label_reference_range", + "named": true + }, + { + "type": "latex_include", + "named": true + }, + { + "type": "latex_input", + "named": true + }, + { + "type": "math_operator", + "named": true + }, + { + "type": "mixed_group", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "paragraph", + "named": true + }, + { + "type": "param", + "named": true + }, + { + "type": "part", + "named": true + }, + { + "type": "pgf_library_import", + "named": true + }, + { + "type": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "svg_include", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + }, + { + "type": "tikz_library_import", + "named": true + }, + { + "type": "verbatim_include", + "named": true + } + ] + } + }, + { + "type": "end", "named": true, "fields": { - "begin": { + "command": { "multiple": false, "required": true, "types": [ { - "type": "begin", - "named": true + "type": "\\end", + "named": false } ] }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "word", + "named": true + } + ] + } + } + }, + { + "type": "enum_item", + "named": true, + "fields": { "child": { "multiple": true, "required": false, @@ -1746,10 +1996,6 @@ "type": "caption", "named": true }, - { - "type": "chapter", - "named": true - }, { "type": "citation", "named": true @@ -1778,10 +2024,6 @@ "type": "displayed_equation", "named": true }, - { - "type": "enum_item", - "named": true - }, { "type": "environment", "named": true @@ -1854,38 +2096,14 @@ "type": "package_include", "named": true }, - { - "type": "paragraph", - "named": true - }, { "type": "param", "named": true }, - { - "type": "part", - "named": true - }, { "type": "pgf_library_import", "named": true }, - { - "type": "section", - "named": true - }, - { - "type": "subparagraph", - "named": true - }, - { - "type": "subsection", - "named": true - }, - { - "type": "subsubsection", - "named": true - }, { "type": "svg_include", "named": true @@ -1908,193 +2126,19 @@ } ] }, - "end": { + "command": { "multiple": false, "required": true, "types": [ { - "type": "end", - "named": true - } - ] - } - } - }, - { - "type": "equation_label_reference", - "named": true, - "fields": { - "command": { - "multiple": false, - "required": true, - "types": [ - { - "type": "\\eqref", + "type": "\\item", "named": false } ] }, "label": { - "multiple": true, - "required": true, - "types": [ - { - "type": "word", - "named": true - } - ] - } - } - }, - { - "type": "generic_command", - "named": true, - "fields": { - "arg": { - "multiple": true, - "required": false, - "types": [ - { - "type": "brace_group", - "named": true - }, - { - "type": "bracket_group", - "named": true - }, - { - "type": "paren_group", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "generic_command_name", - "named": true - } - ] - } - } - }, - { - "type": "glossary_entry_definition", - "named": true, - "fields": { - "command": { - "multiple": false, - "required": true, - "types": [ - { - "type": "\\newglossaryentry", - "named": false - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "word", - "named": true - } - ] - }, - "property": { - "multiple": true, - "required": false, - "types": [ - { - "type": "key_val_pair", - "named": true - } - ] - } - } - }, - { - "type": "glossary_entry_reference", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "word", - "named": true - } - ] - }, - "option": { - "multiple": false, - "required": false, - "types": [ - { - "type": "key_val_options", - "named": true - } - ] - } - } - }, - { - "type": "graphics_include", - "named": true, - "fields": { - "command": { - "multiple": false, - "required": true, - "types": [ - { - "type": "\\includegraphics", - "named": false - } - ] - }, - "option": { "multiple": false, "required": false, - "types": [ - { - "type": "key_val_options", - "named": true - } - ] - }, - "path": { - "multiple": true, - "required": false, - "types": [ - { - "type": "word", - "named": true - } - ] - } - } - }, - { - "type": "import", - "named": true, - "fields": { - "directory": { - "multiple": false, - "required": true, - "types": [ - { - "type": "word", - "named": true - } - ] - }, - "file": { - "multiple": false, - "required": true, "types": [ { "type": "word", @@ -2105,45 +2149,19 @@ } }, { - "type": "inkscape_include", + "type": "environment", "named": true, "fields": { - "command": { + "begin": { "multiple": false, "required": true, "types": [ { - "type": "\\includeinkscape", - "named": false - } - ] - }, - "option": { - "multiple": false, - "required": false, - "types": [ - { - "type": "key_val_options", + "type": "begin", "named": true } ] }, - "path": { - "multiple": true, - "required": false, - "types": [ - { - "type": "word", - "named": true - } - ] - } - } - }, - { - "type": "inline_formula", - "named": true, - "fields": { "child": { "multiple": true, "required": false, @@ -2334,88 +2352,94 @@ } ] }, - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "$", - "named": false - }, - { - "type": "\\(", - "named": false - } - ] - }, - "right": { + "end": { "multiple": false, "required": true, "types": [ { - "type": "$", - "named": false - }, - { - "type": "\\)", - "named": false + "type": "end", + "named": true } ] } } }, { - "type": "key_val_options", + "type": "equation_label_reference", "named": true, "fields": { - "left": { + "command": { "multiple": false, "required": true, "types": [ { - "type": "[", + "type": "\\eqref", "named": false } ] }, - "property": { + "label": { "multiple": true, - "required": false, - "types": [ - { - "type": "key_val_pair", - "named": true - } - ] - }, - "right": { - "multiple": false, "required": true, "types": [ { - "type": "]", - "named": false + "type": "word", + "named": true } ] } } }, { - "type": "key_val_pair", + "type": "generic_command", "named": true, "fields": { - "equals": { - "multiple": false, - "required": false, + "arg": { + "multiple": true, + "required": false, "types": [ { - "type": "=", + "type": "brace_group", + "named": true + }, + { + "type": "bracket_group", + "named": true + }, + { + "type": "paren_group", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "generic_command_name", + "named": true + } + ] + } + } + }, + { + "type": "glossary_entry_definition", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\newglossaryentry", "named": false } ] }, - "key": { - "multiple": true, + "name": { + "multiple": false, "required": true, "types": [ { @@ -2424,218 +2448,228 @@ } ] }, - "value": { - "multiple": false, + "property": { + "multiple": true, "required": false, "types": [ { - "type": "acronym_definition", + "type": "key_val_pair", "named": true + } + ] + } + } + }, + { + "type": "glossary_entry_reference", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\GLS", + "named": false }, { - "type": "acronym_reference", - "named": true + "type": "\\GLSdesc", + "named": false }, { - "type": "biblatex_include", - "named": true + "type": "\\GLSfirst", + "named": false }, { - "type": "bibtex_include", - "named": true + "type": "\\GLSfirstplural", + "named": false }, { - "type": "brace_group", - "named": true + "type": "\\GLSname", + "named": false }, { - "type": "caption", - "named": true + "type": "\\GLSpl", + "named": false }, { - "type": "chapter", - "named": true + "type": "\\GLSplural", + "named": false }, { - "type": "citation", - "named": true + "type": "\\GLStext", + "named": false }, { - "type": "class_include", - "named": true + "type": "\\GLSuseri", + "named": false }, { - "type": "color_definition", - "named": true + "type": "\\GLSuserii", + "named": false }, { - "type": "color_reference", - "named": true + "type": "\\GLSuseriii", + "named": false }, { - "type": "color_set_definition", - "named": true + "type": "\\GLSuseriv", + "named": false }, { - "type": "command_definition", - "named": true + "type": "\\GLSuserv", + "named": false }, { - "type": "displayed_equation", - "named": true + "type": "\\GLSuservi", + "named": false }, { - "type": "enum_item", - "named": true + "type": "\\Gls", + "named": false }, { - "type": "environment", - "named": true + "type": "\\Glsdesc", + "named": false }, { - "type": "equation_label_reference", - "named": true + "type": "\\Glsfirst", + "named": false }, { - "type": "generic_command", - "named": true + "type": "\\Glsfirstplural", + "named": false }, { - "type": "glossary_entry_definition", - "named": true + "type": "\\Glsname", + "named": false }, { - "type": "glossary_entry_reference", - "named": true + "type": "\\Glspl", + "named": false }, { - "type": "graphics_include", - "named": true + "type": "\\Glsplural", + "named": false }, { - "type": "import", - "named": true + "type": "\\Glssymbol", + "named": false }, { - "type": "inkscape_include", - "named": true + "type": "\\Glstext", + "named": false }, { - "type": "inline_formula", - "named": true + "type": "\\Glsuseri", + "named": false }, { - "type": "label_definition", - "named": true + "type": "\\Glsuserii", + "named": false }, { - "type": "label_number", - "named": true + "type": "\\Glsuseriii", + "named": false }, { - "type": "label_reference", - "named": true + "type": "\\Glsuseriv", + "named": false }, { - "type": "label_reference_range", - "named": true + "type": "\\Glsuserv", + "named": false }, { - "type": "latex_include", - "named": true + "type": "\\Glsuservi", + "named": false }, { - "type": "latex_input", - "named": true + "type": "\\gls", + "named": false }, { - "type": "math_operator", - "named": true + "type": "\\glsdesc", + "named": false }, { - "type": "mixed_group", - "named": true + "type": "\\glsdisp", + "named": false }, { - "type": "package_include", - "named": true + "type": "\\glsfirst", + "named": false }, { - "type": "paragraph", - "named": true + "type": "\\glsfirstplural", + "named": false }, { - "type": "param", - "named": true + "type": "\\glslink", + "named": false }, { - "type": "part", - "named": true + "type": "\\glsname", + "named": false }, { - "type": "pgf_library_import", - "named": true + "type": "\\glspl", + "named": false }, { - "type": "section", - "named": true + "type": "\\glsplural", + "named": false }, { - "type": "subparagraph", - "named": true + "type": "\\glssymbol", + "named": false }, { - "type": "subsection", - "named": true + "type": "\\glstext", + "named": false }, { - "type": "subsubsection", - "named": true + "type": "\\glsuseri", + "named": false }, { - "type": "svg_include", - "named": true + "type": "\\glsuserii", + "named": false }, { - "type": "text", - "named": true + "type": "\\glsuseriii", + "named": false }, { - "type": "theorem_definition", - "named": true + "type": "\\glsuseriv", + "named": false }, { - "type": "tikz_library_import", - "named": true + "type": "\\glsuserv", + "named": false }, { - "type": "verbatim_include", - "named": true + "type": "\\glsuservi", + "named": false } ] - } - } - }, - { - "type": "label_definition", - "named": true, - "fields": { - "command": { + }, + "name": { "multiple": false, "required": true, "types": [ { - "type": "\\label", - "named": false + "type": "word", + "named": true } ] }, - "name": { + "option": { "multiple": false, - "required": true, + "required": false, "types": [ { - "type": "word", + "type": "key_val_options", "named": true } ] @@ -2643,7 +2677,7 @@ } }, { - "type": "label_number", + "type": "graphics_include", "named": true, "fields": { "command": { @@ -2651,38 +2685,22 @@ "required": true, "types": [ { - "type": "\\newlabel", + "type": "\\includegraphics", "named": false } ] }, - "label": { + "option": { "multiple": false, - "required": true, + "required": false, "types": [ { - "type": "word", + "type": "key_val_options", "named": true } ] }, - "number": { - "multiple": false, - "required": true, - "types": [ - { - "type": "brace_group", - "named": true - } - ] - } - } - }, - { - "type": "label_reference", - "named": true, - "fields": { - "label": { + "path": { "multiple": true, "required": false, "types": [ @@ -2695,38 +2713,52 @@ } }, { - "type": "label_reference_range", + "type": "import", "named": true, "fields": { - "label1": { + "command": { "multiple": false, "required": true, "types": [ { - "type": "word", - "named": true - } - ] - }, - "label2": { + "type": "\\import", + "named": false + }, + { + "type": "\\includefrom", + "named": false + }, + { + "type": "\\inputfrom", + "named": false + }, + { + "type": "\\subimport", + "named": false + }, + { + "type": "\\subimportfrom", + "named": false + }, + { + "type": "\\subincludefrom", + "named": false + } + ] + }, + "directory": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "word", "named": true } ] - } - } - }, - { - "type": "latex_include", - "named": true, - "fields": { - "path": { - "multiple": true, - "required": false, + }, + "file": { + "multiple": false, + "required": true, "types": [ { "type": "word", @@ -2737,41 +2769,35 @@ } }, { - "type": "latex_input", + "type": "inkscape_include", "named": true, "fields": { - "path": { - "multiple": true, - "required": false, + "command": { + "multiple": false, + "required": true, "types": [ { - "type": "word", - "named": true + "type": "\\includeinkscape", + "named": false } ] - } - } - }, - { - "type": "math_operator", - "named": true, - "fields": { - "implementation": { + }, + "option": { "multiple": false, - "required": true, + "required": false, "types": [ { - "type": "brace_group", + "type": "key_val_options", "named": true } ] }, - "name": { - "multiple": false, - "required": true, + "path": { + "multiple": true, + "required": false, "types": [ { - "type": "generic_command_name", + "type": "word", "named": true } ] @@ -2779,7 +2805,7 @@ } }, { - "type": "mixed_group", + "type": "inline_formula", "named": true, "fields": { "child": { @@ -2977,11 +3003,11 @@ "required": true, "types": [ { - "type": "(", + "type": "$", "named": false }, { - "type": "[", + "type": "\\(", "named": false } ] @@ -2991,11 +3017,11 @@ "required": true, "types": [ { - "type": ")", + "type": "$", "named": false }, { - "type": "]", + "type": "\\)", "named": false } ] @@ -3003,37 +3029,67 @@ } }, { - "type": "package_include", + "type": "key_val_options", "named": true, "fields": { - "option": { + "left": { "multiple": false, - "required": false, + "required": true, "types": [ { - "type": "key_val_options", - "named": true + "type": "[", + "named": false } ] }, - "path": { + "property": { "multiple": true, "required": false, "types": [ { - "type": "word", + "type": "key_val_pair", "named": true } ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "]", + "named": false + } + ] } } }, { - "type": "paragraph", + "type": "key_val_pair", "named": true, "fields": { - "child": { + "equals": { + "multiple": false, + "required": false, + "types": [ + { + "type": "=", + "named": false + } + ] + }, + "key": { "multiple": true, + "required": true, + "types": [ + { + "type": "word", + "named": true + } + ] + }, + "value": { + "multiple": false, "required": false, "types": [ { @@ -3060,6 +3116,10 @@ "type": "caption", "named": true }, + { + "type": "chapter", + "named": true + }, { "type": "citation", "named": true @@ -3164,18 +3224,38 @@ "type": "package_include", "named": true }, + { + "type": "paragraph", + "named": true + }, { "type": "param", "named": true }, + { + "type": "part", + "named": true + }, { "type": "pgf_library_import", "named": true }, + { + "type": "section", + "named": true + }, { "type": "subparagraph", "named": true }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, { "type": "svg_include", "named": true @@ -3197,13 +3277,29 @@ "named": true } ] + } + } + }, + { + "type": "label_definition", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\label", + "named": false + } + ] }, - "text": { + "name": { "multiple": false, "required": true, "types": [ { - "type": "brace_group", + "type": "word", "named": true } ] @@ -3211,223 +3307,281 @@ } }, { - "type": "paren_group", + "type": "label_number", "named": true, "fields": { - "child": { - "multiple": true, - "required": false, + "command": { + "multiple": false, + "required": true, "types": [ { - "type": "acronym_definition", - "named": true - }, + "type": "\\newlabel", + "named": false + } + ] + }, + "label": { + "multiple": false, + "required": true, + "types": [ { - "type": "acronym_reference", + "type": "word", "named": true - }, + } + ] + }, + "number": { + "multiple": false, + "required": true, + "types": [ { - "type": "biblatex_include", + "type": "brace_group", "named": true + } + ] + } + } + }, + { + "type": "label_reference", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\Cref", + "named": false }, { - "type": "bibtex_include", - "named": true + "type": "\\Cref*", + "named": false }, { - "type": "brace_group", - "named": true + "type": "\\Vref", + "named": false }, { - "type": "caption", - "named": true + "type": "\\autoref", + "named": false }, { - "type": "chapter", - "named": true + "type": "\\cref", + "named": false }, { - "type": "citation", - "named": true + "type": "\\cref*", + "named": false }, { - "type": "class_include", - "named": true + "type": "\\labelcpageref", + "named": false }, { - "type": "color_definition", - "named": true + "type": "\\labelcref", + "named": false }, { - "type": "color_reference", - "named": true + "type": "\\lcnamecref", + "named": false }, { - "type": "color_set_definition", - "named": true + "type": "\\lcnamecrefs", + "named": false }, { - "type": "command_definition", - "named": true + "type": "\\nameCref", + "named": false }, { - "type": "displayed_equation", - "named": true + "type": "\\nameCrefs", + "named": false }, { - "type": "enum_item", - "named": true + "type": "\\namecref", + "named": false }, { - "type": "environment", - "named": true - }, - { - "type": "equation_label_reference", - "named": true - }, - { - "type": "generic_command", - "named": true - }, - { - "type": "glossary_entry_definition", - "named": true - }, - { - "type": "glossary_entry_reference", - "named": true - }, - { - "type": "graphics_include", - "named": true - }, - { - "type": "import", - "named": true - }, - { - "type": "inkscape_include", - "named": true - }, - { - "type": "inline_formula", - "named": true - }, - { - "type": "label_definition", - "named": true - }, - { - "type": "label_number", - "named": true - }, - { - "type": "label_reference", - "named": true - }, - { - "type": "label_reference_range", - "named": true + "type": "\\namecrefs", + "named": false }, { - "type": "latex_include", - "named": true + "type": "\\pageref", + "named": false }, { - "type": "latex_input", - "named": true + "type": "\\ref", + "named": false }, { - "type": "math_operator", - "named": true - }, + "type": "\\vref", + "named": false + } + ] + }, + "label": { + "multiple": true, + "required": false, + "types": [ { - "type": "mixed_group", + "type": "word", "named": true - }, + } + ] + } + } + }, + { + "type": "label_reference_range", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ { - "type": "package_include", - "named": true + "type": "\\Crefrange", + "named": false }, { - "type": "paragraph", - "named": true + "type": "\\Crefrange*", + "named": false }, { - "type": "param", - "named": true + "type": "\\crefrange", + "named": false }, { - "type": "part", - "named": true - }, + "type": "\\crefrange*", + "named": false + } + ] + }, + "label1": { + "multiple": false, + "required": true, + "types": [ { - "type": "pgf_library_import", + "type": "word", "named": true - }, + } + ] + }, + "label2": { + "multiple": false, + "required": false, + "types": [ { - "type": "section", + "type": "word", "named": true - }, + } + ] + } + } + }, + { + "type": "latex_include", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ { - "type": "subparagraph", - "named": true + "type": "\\include", + "named": false }, { - "type": "subsection", - "named": true - }, + "type": "\\subfileinclude", + "named": false + } + ] + }, + "path": { + "multiple": true, + "required": false, + "types": [ { - "type": "subsubsection", + "type": "word", "named": true - }, + } + ] + } + } + }, + { + "type": "latex_input", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ { - "type": "svg_include", - "named": true + "type": "\\input", + "named": false }, { - "type": "text", - "named": true - }, + "type": "\\subfile", + "named": false + } + ] + }, + "path": { + "multiple": true, + "required": false, + "types": [ { - "type": "theorem_definition", + "type": "word", "named": true - }, + } + ] + } + } + }, + { + "type": "math_operator", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ { - "type": "tikz_library_import", - "named": true + "type": "\\DeclareMathOperator", + "named": false }, { - "type": "verbatim_include", - "named": true + "type": "\\DeclareMathOperator*", + "named": false } ] }, - "left": { + "implementation": { "multiple": false, "required": true, "types": [ { - "type": "(", - "named": false + "type": "brace_group", + "named": true } ] }, - "right": { + "name": { "multiple": false, "required": true, "types": [ { - "type": ")", - "named": false + "type": "generic_command_name", + "named": true } ] } } }, { - "type": "part", + "type": "mixed_group", "named": true, "fields": { "child": { @@ -3574,6 +3728,10 @@ "type": "param", "named": true }, + { + "type": "part", + "named": true + }, { "type": "pgf_library_import", "named": true @@ -3616,20 +3774,38 @@ } ] }, - "text": { + "left": { "multiple": false, "required": true, "types": [ { - "type": "brace_group", - "named": true + "type": "(", + "named": false + }, + { + "type": "[", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": ")", + "named": false + }, + { + "type": "]", + "named": false } ] } } }, { - "type": "pgf_library_import", + "type": "package_include", "named": true, "fields": { "command": { @@ -3637,12 +3813,26 @@ "required": true, "types": [ { - "type": "\\usepgflibrary", + "type": "\\RequirePackage", + "named": false + }, + { + "type": "\\usepackage", "named": false } ] }, - "name": { + "option": { + "multiple": false, + "required": false, + "types": [ + { + "type": "key_val_options", + "named": true + } + ] + }, + "path": { "multiple": true, "required": false, "types": [ @@ -3655,7 +3845,7 @@ } }, { - "type": "section", + "type": "paragraph", "named": true, "fields": { "child": { @@ -3790,10 +3980,6 @@ "type": "package_include", "named": true }, - { - "type": "paragraph", - "named": true - }, { "type": "param", "named": true @@ -3806,14 +3992,6 @@ "type": "subparagraph", "named": true }, - { - "type": "subsection", - "named": true - }, - { - "type": "subsubsection", - "named": true - }, { "type": "svg_include", "named": true @@ -3849,7 +4027,7 @@ } }, { - "type": "subparagraph", + "type": "paren_group", "named": true, "fields": { "child": { @@ -3880,6 +4058,10 @@ "type": "caption", "named": true }, + { + "type": "chapter", + "named": true + }, { "type": "citation", "named": true @@ -3984,14 +4166,38 @@ "type": "package_include", "named": true }, + { + "type": "paragraph", + "named": true + }, { "type": "param", "named": true }, + { + "type": "part", + "named": true + }, { "type": "pgf_library_import", "named": true }, + { + "type": "section", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, { "type": "svg_include", "named": true @@ -4014,20 +4220,30 @@ } ] }, - "text": { + "left": { "multiple": false, "required": true, "types": [ { - "type": "brace_group", - "named": true + "type": "(", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": ")", + "named": false } ] } } }, { - "type": "subsection", + "type": "part", "named": true, "fields": { "child": { @@ -4058,6 +4274,10 @@ "type": "caption", "named": true }, + { + "type": "chapter", + "named": true + }, { "type": "citation", "named": true @@ -4174,10 +4394,18 @@ "type": "pgf_library_import", "named": true }, + { + "type": "section", + "named": true + }, { "type": "subparagraph", "named": true }, + { + "type": "subsection", + "named": true + }, { "type": "subsubsection", "named": true @@ -4217,7 +4445,33 @@ } }, { - "type": "subsubsection", + "type": "pgf_library_import", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\usepgflibrary", + "named": false + } + ] + }, + "name": { + "multiple": true, + "required": false, + "types": [ + { + "type": "word", + "named": true + } + ] + } + } + }, + { + "type": "section", "named": true, "fields": { "child": { @@ -4368,6 +4622,14 @@ "type": "subparagraph", "named": true }, + { + "type": "subsection", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, { "type": "svg_include", "named": true @@ -4403,212 +4665,1406 @@ } }, { - "type": "svg_include", - "named": true, - "fields": { - "command": { - "multiple": false, - "required": true, - "types": [ - { - "type": "\\includesvg", - "named": false - } - ] - }, - "option": { - "multiple": false, - "required": false, - "types": [ - { - "type": "key_val_options", - "named": true - } - ] - }, - "path": { - "multiple": true, - "required": false, - "types": [ - { - "type": "word", - "named": true - } - ] - } - } + "type": "subparagraph", + "named": true, + "fields": { + "child": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "acronym_reference", + "named": true + }, + { + "type": "biblatex_include", + "named": true + }, + { + "type": "bibtex_include", + "named": true + }, + { + "type": "brace_group", + "named": true + }, + { + "type": "caption", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "class_include", + "named": true + }, + { + "type": "color_definition", + "named": true + }, + { + "type": "color_reference", + "named": true + }, + { + "type": "color_set_definition", + "named": true + }, + { + "type": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "named": true + }, + { + "type": "equation_label_reference", + "named": true + }, + { + "type": "generic_command", + "named": true + }, + { + "type": "glossary_entry_definition", + "named": true + }, + { + "type": "glossary_entry_reference", + "named": true + }, + { + "type": "graphics_include", + "named": true + }, + { + "type": "import", + "named": true + }, + { + "type": "inkscape_include", + "named": true + }, + { + "type": "inline_formula", + "named": true + }, + { + "type": "label_definition", + "named": true + }, + { + "type": "label_number", + "named": true + }, + { + "type": "label_reference", + "named": true + }, + { + "type": "label_reference_range", + "named": true + }, + { + "type": "latex_include", + "named": true + }, + { + "type": "latex_input", + "named": true + }, + { + "type": "math_operator", + "named": true + }, + { + "type": "mixed_group", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "param", + "named": true + }, + { + "type": "pgf_library_import", + "named": true + }, + { + "type": "svg_include", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + }, + { + "type": "tikz_library_import", + "named": true + }, + { + "type": "verbatim_include", + "named": true + } + ] + }, + "text": { + "multiple": false, + "required": true, + "types": [ + { + "type": "brace_group", + "named": true + } + ] + } + } + }, + { + "type": "subsection", + "named": true, + "fields": { + "child": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "acronym_reference", + "named": true + }, + { + "type": "biblatex_include", + "named": true + }, + { + "type": "bibtex_include", + "named": true + }, + { + "type": "brace_group", + "named": true + }, + { + "type": "caption", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "class_include", + "named": true + }, + { + "type": "color_definition", + "named": true + }, + { + "type": "color_reference", + "named": true + }, + { + "type": "color_set_definition", + "named": true + }, + { + "type": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "named": true + }, + { + "type": "equation_label_reference", + "named": true + }, + { + "type": "generic_command", + "named": true + }, + { + "type": "glossary_entry_definition", + "named": true + }, + { + "type": "glossary_entry_reference", + "named": true + }, + { + "type": "graphics_include", + "named": true + }, + { + "type": "import", + "named": true + }, + { + "type": "inkscape_include", + "named": true + }, + { + "type": "inline_formula", + "named": true + }, + { + "type": "label_definition", + "named": true + }, + { + "type": "label_number", + "named": true + }, + { + "type": "label_reference", + "named": true + }, + { + "type": "label_reference_range", + "named": true + }, + { + "type": "latex_include", + "named": true + }, + { + "type": "latex_input", + "named": true + }, + { + "type": "math_operator", + "named": true + }, + { + "type": "mixed_group", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "paragraph", + "named": true + }, + { + "type": "param", + "named": true + }, + { + "type": "pgf_library_import", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "subsubsection", + "named": true + }, + { + "type": "svg_include", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + }, + { + "type": "tikz_library_import", + "named": true + }, + { + "type": "verbatim_include", + "named": true + } + ] + }, + "text": { + "multiple": false, + "required": true, + "types": [ + { + "type": "brace_group", + "named": true + } + ] + } + } + }, + { + "type": "subsubsection", + "named": true, + "fields": { + "child": { + "multiple": true, + "required": false, + "types": [ + { + "type": "acronym_definition", + "named": true + }, + { + "type": "acronym_reference", + "named": true + }, + { + "type": "biblatex_include", + "named": true + }, + { + "type": "bibtex_include", + "named": true + }, + { + "type": "brace_group", + "named": true + }, + { + "type": "caption", + "named": true + }, + { + "type": "citation", + "named": true + }, + { + "type": "class_include", + "named": true + }, + { + "type": "color_definition", + "named": true + }, + { + "type": "color_reference", + "named": true + }, + { + "type": "color_set_definition", + "named": true + }, + { + "type": "command_definition", + "named": true + }, + { + "type": "displayed_equation", + "named": true + }, + { + "type": "enum_item", + "named": true + }, + { + "type": "environment", + "named": true + }, + { + "type": "equation_label_reference", + "named": true + }, + { + "type": "generic_command", + "named": true + }, + { + "type": "glossary_entry_definition", + "named": true + }, + { + "type": "glossary_entry_reference", + "named": true + }, + { + "type": "graphics_include", + "named": true + }, + { + "type": "import", + "named": true + }, + { + "type": "inkscape_include", + "named": true + }, + { + "type": "inline_formula", + "named": true + }, + { + "type": "label_definition", + "named": true + }, + { + "type": "label_number", + "named": true + }, + { + "type": "label_reference", + "named": true + }, + { + "type": "label_reference_range", + "named": true + }, + { + "type": "latex_include", + "named": true + }, + { + "type": "latex_input", + "named": true + }, + { + "type": "math_operator", + "named": true + }, + { + "type": "mixed_group", + "named": true + }, + { + "type": "package_include", + "named": true + }, + { + "type": "paragraph", + "named": true + }, + { + "type": "param", + "named": true + }, + { + "type": "pgf_library_import", + "named": true + }, + { + "type": "subparagraph", + "named": true + }, + { + "type": "svg_include", + "named": true + }, + { + "type": "text", + "named": true + }, + { + "type": "theorem_definition", + "named": true + }, + { + "type": "tikz_library_import", + "named": true + }, + { + "type": "verbatim_include", + "named": true + } + ] + }, + "text": { + "multiple": false, + "required": true, + "types": [ + { + "type": "brace_group", + "named": true + } + ] + } + } + }, + { + "type": "svg_include", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\includesvg", + "named": false + } + ] + }, + "option": { + "multiple": false, + "required": false, + "types": [ + { + "type": "key_val_options", + "named": true + } + ] + }, + "path": { + "multiple": true, + "required": false, + "types": [ + { + "type": "word", + "named": true + } + ] + } + } + }, + { + "type": "text", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "word", + "named": true + } + ] + } + }, + { + "type": "theorem_definition", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\declaretheorem", + "named": false + }, + { + "type": "\\newtheorem", + "named": false + } + ] + }, + "counter": { + "multiple": false, + "required": false, + "types": [ + { + "type": "word", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "word", + "named": true + } + ] + }, + "title": { + "multiple": false, + "required": true, + "types": [ + { + "type": "brace_group", + "named": true + } + ] + } + } + }, + { + "type": "tikz_library_import", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\usetikzlibrary", + "named": false + } + ] + }, + "name": { + "multiple": true, + "required": false, + "types": [ + { + "type": "word", + "named": true + } + ] + } + } + }, + { + "type": "verbatim_include", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\VerbatimInput", + "named": false + }, + { + "type": "\\verbatiminput", + "named": false + } + ] + }, + "path": { + "multiple": true, + "required": false, + "types": [ + { + "type": "word", + "named": true + } + ] + } + } + }, + { + "type": "$", + "named": false + }, + { + "type": "$$", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "\\(", + "named": false + }, + { + "type": "\\)", + "named": false + }, + { + "type": "\\ACRfull", + "named": false + }, + { + "type": "\\ACRfullpl", + "named": false + }, + { + "type": "\\ACRlong", + "named": false + }, + { + "type": "\\ACRlongpl", + "named": false + }, + { + "type": "\\ACRshort", + "named": false + }, + { + "type": "\\ACRshortpl", + "named": false + }, + { + "type": "\\Ac", + "named": false + }, + { + "type": "\\Acf", + "named": false + }, + { + "type": "\\Acfp", + "named": false + }, + { + "type": "\\Acl", + "named": false + }, + { + "type": "\\Aclp", + "named": false + }, + { + "type": "\\Acrfull", + "named": false + }, + { + "type": "\\Acrfullpl", + "named": false + }, + { + "type": "\\Acrlong", + "named": false + }, + { + "type": "\\Acrlongpl", + "named": false + }, + { + "type": "\\Acrshort", + "named": false + }, + { + "type": "\\Acrshortpl", + "named": false + }, + { + "type": "\\Acs", + "named": false + }, + { + "type": "\\Acsp", + "named": false + }, + { + "type": "\\Autocite", + "named": false + }, + { + "type": "\\Autocite*", + "named": false + }, + { + "type": "\\Avolcite", + "named": false + }, + { + "type": "\\Cite", + "named": false + }, + { + "type": "\\Citeauthor", + "named": false + }, + { + "type": "\\Citeauthor*", + "named": false + }, + { + "type": "\\Cref", + "named": false + }, + { + "type": "\\Cref*", + "named": false + }, + { + "type": "\\Crefrange", + "named": false + }, + { + "type": "\\Crefrange*", + "named": false + }, + { + "type": "\\DeclareMathOperator", + "named": false + }, + { + "type": "\\DeclareMathOperator*", + "named": false + }, + { + "type": "\\DeclareRobustCommand", + "named": false + }, + { + "type": "\\GLS", + "named": false + }, + { + "type": "\\GLSdesc", + "named": false + }, + { + "type": "\\GLSfirst", + "named": false + }, + { + "type": "\\GLSfirstplural", + "named": false + }, + { + "type": "\\GLSname", + "named": false + }, + { + "type": "\\GLSpl", + "named": false + }, + { + "type": "\\GLSplural", + "named": false + }, + { + "type": "\\GLStext", + "named": false + }, + { + "type": "\\GLSuseri", + "named": false + }, + { + "type": "\\GLSuserii", + "named": false + }, + { + "type": "\\GLSuseriii", + "named": false + }, + { + "type": "\\GLSuseriv", + "named": false + }, + { + "type": "\\GLSuserv", + "named": false + }, + { + "type": "\\GLSuservi", + "named": false + }, + { + "type": "\\Gls", + "named": false + }, + { + "type": "\\Glsdesc", + "named": false + }, + { + "type": "\\Glsentryfullpl", + "named": false + }, + { + "type": "\\Glsentrylong", + "named": false + }, + { + "type": "\\Glsentrylongpl", + "named": false + }, + { + "type": "\\Glsentryshort", + "named": false + }, + { + "type": "\\Glsentryshortpl", + "named": false + }, + { + "type": "\\Glsfirst", + "named": false + }, + { + "type": "\\Glsfirstplural", + "named": false + }, + { + "type": "\\Glsname", + "named": false + }, + { + "type": "\\Glspl", + "named": false + }, + { + "type": "\\Glsplural", + "named": false + }, + { + "type": "\\Glssymbol", + "named": false + }, + { + "type": "\\Glstext", + "named": false + }, + { + "type": "\\Glsuseri", + "named": false + }, + { + "type": "\\Glsuserii", + "named": false + }, + { + "type": "\\Glsuseriii", + "named": false + }, + { + "type": "\\Glsuseriv", + "named": false + }, + { + "type": "\\Glsuserv", + "named": false + }, + { + "type": "\\Glsuservi", + "named": false + }, + { + "type": "\\Parencite", + "named": false + }, + { + "type": "\\Pnotecite", + "named": false + }, + { + "type": "\\Pvolcite", + "named": false + }, + { + "type": "\\RequirePackage", + "named": false + }, + { + "type": "\\Smartcite", + "named": false + }, + { + "type": "\\Svolcite", + "named": false + }, + { + "type": "\\Textcite", + "named": false + }, + { + "type": "\\Tvolcite", + "named": false + }, + { + "type": "\\VerbatimInput", + "named": false + }, + { + "type": "\\Volcite", + "named": false + }, + { + "type": "\\Vref", + "named": false + }, + { + "type": "\\[", + "named": false + }, + { + "type": "\\]", + "named": false + }, + { + "type": "\\ac", + "named": false + }, + { + "type": "\\acf", + "named": false + }, + { + "type": "\\acfp", + "named": false + }, + { + "type": "\\acl", + "named": false + }, + { + "type": "\\aclp", + "named": false + }, + { + "type": "\\acp", + "named": false + }, + { + "type": "\\acrfull", + "named": false + }, + { + "type": "\\acrfullpl", + "named": false + }, + { + "type": "\\acrlong", + "named": false + }, + { + "type": "\\acrlongpl", + "named": false + }, + { + "type": "\\acrshort", + "named": false + }, + { + "type": "\\acrshortpl", + "named": false + }, + { + "type": "\\acs", + "named": false + }, + { + "type": "\\acsp", + "named": false + }, + { + "type": "\\addbibresource", + "named": false + }, + { + "type": "\\autocite", + "named": false + }, + { + "type": "\\autocite*", + "named": false + }, + { + "type": "\\autoref", + "named": false + }, + { + "type": "\\avolcite", + "named": false + }, + { + "type": "\\begin", + "named": false + }, + { + "type": "\\bibliography", + "named": false + }, + { + "type": "\\caption", + "named": false + }, + { + "type": "\\cite", + "named": false + }, + { + "type": "\\cite*", + "named": false + }, + { + "type": "\\citealp", + "named": false + }, + { + "type": "\\citealt", + "named": false + }, + { + "type": "\\citeauthor", + "named": false + }, + { + "type": "\\citeauthor*", + "named": false + }, + { + "type": "\\citedate", + "named": false + }, + { + "type": "\\citedate*", + "named": false + }, + { + "type": "\\citep", + "named": false + }, + { + "type": "\\citep*", + "named": false + }, + { + "type": "\\citet", + "named": false + }, + { + "type": "\\citet*", + "named": false + }, + { + "type": "\\citetext", + "named": false + }, + { + "type": "\\citetitle", + "named": false + }, + { + "type": "\\citetitle*", + "named": false + }, + { + "type": "\\citeurl", + "named": false + }, + { + "type": "\\citeyear", + "named": false + }, + { + "type": "\\citeyear*", + "named": false + }, + { + "type": "\\citeyearpar", + "named": false + }, + { + "type": "\\color", + "named": false + }, + { + "type": "\\colorbox", + "named": false + }, + { + "type": "\\cref", + "named": false + }, + { + "type": "\\cref*", + "named": false + }, + { + "type": "\\crefrange", + "named": false + }, + { + "type": "\\crefrange*", + "named": false + }, + { + "type": "\\declaretheorem", + "named": false + }, + { + "type": "\\definecolor", + "named": false + }, + { + "type": "\\definecolorset", + "named": false + }, + { + "type": "\\documentclass", + "named": false + }, + { + "type": "\\end", + "named": false + }, + { + "type": "\\eqref", + "named": false + }, + { + "type": "\\fnotecite", + "named": false + }, + { + "type": "\\footcite", + "named": false + }, + { + "type": "\\footcitetext", + "named": false + }, + { + "type": "\\footfullcite", + "named": false + }, + { + "type": "\\ftvolcite", + "named": false + }, + { + "type": "\\fullcite", + "named": false + }, + { + "type": "\\fvolcite", + "named": false + }, + { + "type": "\\gls", + "named": false }, { - "type": "text", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "word", - "named": true - } - ] - } + "type": "\\glsdesc", + "named": false }, { - "type": "theorem_definition", - "named": true, - "fields": { - "counter": { - "multiple": false, - "required": false, - "types": [ - { - "type": "word", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "word", - "named": true - } - ] - }, - "title": { - "multiple": false, - "required": true, - "types": [ - { - "type": "brace_group", - "named": true - } - ] - } - } + "type": "\\glsdisp", + "named": false }, { - "type": "tikz_library_import", - "named": true, - "fields": { - "command": { - "multiple": false, - "required": true, - "types": [ - { - "type": "\\usetikzlibrary", - "named": false - } - ] - }, - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "word", - "named": true - } - ] - } - } + "type": "\\glsentryfullpl", + "named": false }, { - "type": "verbatim_include", - "named": true, - "fields": { - "path": { - "multiple": true, - "required": false, - "types": [ - { - "type": "word", - "named": true - } - ] - } - } + "type": "\\glsentrylong", + "named": false }, { - "type": "$", + "type": "\\glsentrylongpl", "named": false }, { - "type": "$$", + "type": "\\glsentryshort", "named": false }, { - "type": "(", + "type": "\\glsentryshortpl", "named": false }, { - "type": ")", + "type": "\\glsfirst", "named": false }, { - "type": ",", + "type": "\\glsfirstplural", "named": false }, { - "type": "=", + "type": "\\glslink", "named": false }, { - "type": "[", + "type": "\\glsname", "named": false }, { - "type": "\\(", + "type": "\\glspl", "named": false }, { - "type": "\\)", + "type": "\\glsplural", "named": false }, { - "type": "\\[", + "type": "\\glssymbol", "named": false }, { - "type": "\\]", + "type": "\\glstext", "named": false }, { - "type": "\\addbibresource", + "type": "\\glsuseri", "named": false }, { - "type": "\\begin", + "type": "\\glsuserii", "named": false }, { - "type": "\\bibliography", + "type": "\\glsuseriii", "named": false }, { - "type": "\\caption", + "type": "\\glsuseriv", "named": false }, { - "type": "\\definecolor", + "type": "\\glsuserv", "named": false }, { - "type": "\\definecolorset", + "type": "\\glsuservi", "named": false }, { - "type": "\\documentclass", + "type": "\\import", "named": false }, { - "type": "\\end", + "type": "\\include", "named": false }, { - "type": "\\eqref", + "type": "\\includefrom", "named": false }, { @@ -4623,6 +6079,14 @@ "type": "\\includesvg", "named": false }, + { + "type": "\\input", + "named": false + }, + { + "type": "\\inputfrom", + "named": false + }, { "type": "\\item", "named": false @@ -4631,10 +6095,46 @@ "type": "\\label", "named": false }, + { + "type": "\\labelcpageref", + "named": false + }, + { + "type": "\\labelcref", + "named": false + }, + { + "type": "\\lcnamecref", + "named": false + }, + { + "type": "\\lcnamecrefs", + "named": false + }, + { + "type": "\\nameCref", + "named": false + }, + { + "type": "\\nameCrefs", + "named": false + }, + { + "type": "\\namecref", + "named": false + }, + { + "type": "\\namecrefs", + "named": false + }, { "type": "\\newacronym", "named": false }, + { + "type": "\\newcommand", + "named": false + }, { "type": "\\newglossaryentry", "named": false @@ -4643,6 +6143,98 @@ "type": "\\newlabel", "named": false }, + { + "type": "\\newtheorem", + "named": false + }, + { + "type": "\\nocite", + "named": false + }, + { + "type": "\\notecite", + "named": false + }, + { + "type": "\\pagecolor", + "named": false + }, + { + "type": "\\pageref", + "named": false + }, + { + "type": "\\parencite", + "named": false + }, + { + "type": "\\parencite*", + "named": false + }, + { + "type": "\\pnotecite", + "named": false + }, + { + "type": "\\pvolcite", + "named": false + }, + { + "type": "\\ref", + "named": false + }, + { + "type": "\\renewcommand", + "named": false + }, + { + "type": "\\smartcite", + "named": false + }, + { + "type": "\\subfile", + "named": false + }, + { + "type": "\\subfileinclude", + "named": false + }, + { + "type": "\\subimport", + "named": false + }, + { + "type": "\\subimportfrom", + "named": false + }, + { + "type": "\\subincludefrom", + "named": false + }, + { + "type": "\\supercite", + "named": false + }, + { + "type": "\\svolcite", + "named": false + }, + { + "type": "\\textcite", + "named": false + }, + { + "type": "\\textcolor", + "named": false + }, + { + "type": "\\tvolcite", + "named": false + }, + { + "type": "\\usepackage", + "named": false + }, { "type": "\\usepgflibrary", "named": false @@ -4651,6 +6243,18 @@ "type": "\\usetikzlibrary", "named": false }, + { + "type": "\\verbatiminput", + "named": false + }, + { + "type": "\\volcite", + "named": false + }, + { + "type": "\\vref", + "named": false + }, { "type": "]", "named": false diff --git a/src/parser.c b/src/parser.c index bfbb21403..e4d1e844c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,16 @@ #pragma GCC optimize ("O0") #endif -#define LANGUAGE_VERSION 12 +#define LANGUAGE_VERSION 13 #define STATE_COUNT 4474 -#define LARGE_STATE_COUNT 472 -#define SYMBOL_COUNT 135 +#define LARGE_STATE_COUNT 1987 +#define SYMBOL_COUNT 311 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 61 +#define TOKEN_COUNT 237 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 34 #define MAX_ALIAS_SEQUENCE_LENGTH 11 +#define PRODUCTION_ID_COUNT 75 enum { sym_generic_command_name = 1, @@ -54,110 +55,286 @@ enum { anon_sym_BSLASHbegin = 28, anon_sym_BSLASHend = 29, anon_sym_BSLASHcaption = 30, - aux_sym_citation_token1 = 31, - aux_sym_package_include_token1 = 32, - anon_sym_BSLASHdocumentclass = 33, - aux_sym_latex_include_token1 = 34, - aux_sym_latex_input_token1 = 35, - anon_sym_BSLASHaddbibresource = 36, - anon_sym_BSLASHbibliography = 37, - anon_sym_BSLASHincludegraphics = 38, - anon_sym_BSLASHincludesvg = 39, - anon_sym_BSLASHincludeinkscape = 40, - aux_sym_verbatim_include_token1 = 41, - aux_sym_import_token1 = 42, - anon_sym_BSLASHlabel = 43, - aux_sym_label_reference_token1 = 44, - anon_sym_BSLASHeqref = 45, - aux_sym_label_reference_range_token1 = 46, - anon_sym_BSLASHnewlabel = 47, - aux_sym_command_definition_token1 = 48, - aux_sym_command_definition_token2 = 49, - aux_sym_math_operator_token1 = 50, - anon_sym_BSLASHnewglossaryentry = 51, - aux_sym_glossary_entry_reference_token1 = 52, - anon_sym_BSLASHnewacronym = 53, - aux_sym_acronym_reference_token1 = 54, - aux_sym_theorem_definition_token1 = 55, - aux_sym_color_reference_token1 = 56, - anon_sym_BSLASHdefinecolor = 57, - anon_sym_BSLASHdefinecolorset = 58, - anon_sym_BSLASHusepgflibrary = 59, - anon_sym_BSLASHusetikzlibrary = 60, - sym_document = 61, - sym__simple_content = 62, - sym__content = 63, - sym_part = 64, - sym_chapter = 65, - sym_section = 66, - sym_subsection = 67, - sym_subsubsection = 68, - sym_paragraph = 69, - sym_subparagraph = 70, - sym_enum_item = 71, - sym_brace_group = 72, - sym_bracket_group = 73, - sym_paren_group = 74, - sym_mixed_group = 75, - sym_key_val_options = 76, - sym_key_val_pair = 77, - sym_text = 78, - sym__text_fragment = 79, - sym_displayed_equation = 80, - sym_inline_formula = 81, - sym_begin = 82, - sym_end = 83, - sym_environment = 84, - sym_caption = 85, - sym_citation = 86, - sym_package_include = 87, - sym_class_include = 88, - sym_latex_include = 89, - sym_latex_input = 90, - sym_biblatex_include = 91, - sym_bibtex_include = 92, - sym_graphics_include = 93, - sym_svg_include = 94, - sym_inkscape_include = 95, - sym_verbatim_include = 96, - sym_import = 97, - sym_label_definition = 98, - sym_label_reference = 99, - sym_equation_label_reference = 100, - sym_label_reference_range = 101, - sym_label_number = 102, - sym_command_definition = 103, - sym_math_operator = 104, - sym_glossary_entry_definition = 105, - sym_glossary_entry_reference = 106, - sym_acronym_definition = 107, - sym_acronym_reference = 108, - sym_theorem_definition = 109, - sym_color_reference = 110, - sym_color_definition = 111, - sym_color_set_definition = 112, - sym_pgf_library_import = 113, - sym_tikz_library_import = 114, - sym_generic_command = 115, - aux_sym_document_repeat1 = 116, - aux_sym_part_repeat1 = 117, - aux_sym_chapter_repeat1 = 118, - aux_sym_section_repeat1 = 119, - aux_sym_subsection_repeat1 = 120, - aux_sym_subsubsection_repeat1 = 121, - aux_sym_paragraph_repeat1 = 122, - aux_sym_subparagraph_repeat1 = 123, - aux_sym_enum_item_repeat1 = 124, - aux_sym_key_val_options_repeat1 = 125, - aux_sym_key_val_pair_repeat1 = 126, - aux_sym_text_repeat1 = 127, - aux_sym_begin_repeat1 = 128, - aux_sym_citation_repeat1 = 129, - aux_sym_package_include_repeat1 = 130, - aux_sym_label_reference_repeat1 = 131, - aux_sym_color_set_definition_repeat1 = 132, - aux_sym_pgf_library_import_repeat1 = 133, - aux_sym_generic_command_repeat1 = 134, + anon_sym_BSLASHcite = 31, + anon_sym_BSLASHcite_STAR = 32, + anon_sym_BSLASHCite = 33, + anon_sym_BSLASHnocite = 34, + anon_sym_BSLASHcitet = 35, + anon_sym_BSLASHcitep = 36, + anon_sym_BSLASHcitet_STAR = 37, + anon_sym_BSLASHcitep_STAR = 38, + anon_sym_BSLASHciteauthor = 39, + anon_sym_BSLASHciteauthor_STAR = 40, + anon_sym_BSLASHCiteauthor = 41, + anon_sym_BSLASHCiteauthor_STAR = 42, + anon_sym_BSLASHcitetitle = 43, + anon_sym_BSLASHcitetitle_STAR = 44, + anon_sym_BSLASHciteyear = 45, + anon_sym_BSLASHciteyear_STAR = 46, + anon_sym_BSLASHcitedate = 47, + anon_sym_BSLASHcitedate_STAR = 48, + anon_sym_BSLASHciteurl = 49, + anon_sym_BSLASHfullcite = 50, + anon_sym_BSLASHciteyearpar = 51, + anon_sym_BSLASHcitealt = 52, + anon_sym_BSLASHcitealp = 53, + anon_sym_BSLASHcitetext = 54, + anon_sym_BSLASHparencite = 55, + anon_sym_BSLASHparencite_STAR = 56, + anon_sym_BSLASHParencite = 57, + anon_sym_BSLASHfootcite = 58, + anon_sym_BSLASHfootfullcite = 59, + anon_sym_BSLASHfootcitetext = 60, + anon_sym_BSLASHtextcite = 61, + anon_sym_BSLASHTextcite = 62, + anon_sym_BSLASHsmartcite = 63, + anon_sym_BSLASHSmartcite = 64, + anon_sym_BSLASHsupercite = 65, + anon_sym_BSLASHautocite = 66, + anon_sym_BSLASHAutocite = 67, + anon_sym_BSLASHautocite_STAR = 68, + anon_sym_BSLASHAutocite_STAR = 69, + anon_sym_BSLASHvolcite = 70, + anon_sym_BSLASHVolcite = 71, + anon_sym_BSLASHpvolcite = 72, + anon_sym_BSLASHPvolcite = 73, + anon_sym_BSLASHfvolcite = 74, + anon_sym_BSLASHftvolcite = 75, + anon_sym_BSLASHsvolcite = 76, + anon_sym_BSLASHSvolcite = 77, + anon_sym_BSLASHtvolcite = 78, + anon_sym_BSLASHTvolcite = 79, + anon_sym_BSLASHavolcite = 80, + anon_sym_BSLASHAvolcite = 81, + anon_sym_BSLASHnotecite = 82, + anon_sym_BSLASHpnotecite = 83, + anon_sym_BSLASHPnotecite = 84, + anon_sym_BSLASHfnotecite = 85, + anon_sym_BSLASHusepackage = 86, + anon_sym_BSLASHRequirePackage = 87, + anon_sym_BSLASHdocumentclass = 88, + anon_sym_BSLASHinclude = 89, + anon_sym_BSLASHsubfileinclude = 90, + anon_sym_BSLASHinput = 91, + anon_sym_BSLASHsubfile = 92, + anon_sym_BSLASHaddbibresource = 93, + anon_sym_BSLASHbibliography = 94, + anon_sym_BSLASHincludegraphics = 95, + anon_sym_BSLASHincludesvg = 96, + anon_sym_BSLASHincludeinkscape = 97, + anon_sym_BSLASHverbatiminput = 98, + anon_sym_BSLASHVerbatimInput = 99, + anon_sym_BSLASHimport = 100, + anon_sym_BSLASHsubimport = 101, + anon_sym_BSLASHinputfrom = 102, + anon_sym_BSLASHsubimportfrom = 103, + anon_sym_BSLASHincludefrom = 104, + anon_sym_BSLASHsubincludefrom = 105, + anon_sym_BSLASHlabel = 106, + anon_sym_BSLASHref = 107, + anon_sym_BSLASHvref = 108, + anon_sym_BSLASHVref = 109, + anon_sym_BSLASHautoref = 110, + anon_sym_BSLASHpageref = 111, + anon_sym_BSLASHcref = 112, + anon_sym_BSLASHCref = 113, + anon_sym_BSLASHcref_STAR = 114, + anon_sym_BSLASHCref_STAR = 115, + anon_sym_BSLASHnamecref = 116, + anon_sym_BSLASHnameCref = 117, + anon_sym_BSLASHlcnamecref = 118, + anon_sym_BSLASHnamecrefs = 119, + anon_sym_BSLASHnameCrefs = 120, + anon_sym_BSLASHlcnamecrefs = 121, + anon_sym_BSLASHlabelcref = 122, + anon_sym_BSLASHlabelcpageref = 123, + anon_sym_BSLASHeqref = 124, + anon_sym_BSLASHcrefrange = 125, + anon_sym_BSLASHCrefrange = 126, + anon_sym_BSLASHcrefrange_STAR = 127, + anon_sym_BSLASHCrefrange_STAR = 128, + anon_sym_BSLASHnewlabel = 129, + anon_sym_BSLASHnewcommand = 130, + anon_sym_BSLASHrenewcommand = 131, + anon_sym_BSLASHDeclareRobustCommand = 132, + aux_sym_command_definition_token1 = 133, + anon_sym_BSLASHDeclareMathOperator = 134, + anon_sym_BSLASHDeclareMathOperator_STAR = 135, + anon_sym_BSLASHnewglossaryentry = 136, + anon_sym_BSLASHgls = 137, + anon_sym_BSLASHGls = 138, + anon_sym_BSLASHGLS = 139, + anon_sym_BSLASHglspl = 140, + anon_sym_BSLASHGlspl = 141, + anon_sym_BSLASHGLSpl = 142, + anon_sym_BSLASHglsdisp = 143, + anon_sym_BSLASHglslink = 144, + anon_sym_BSLASHglstext = 145, + anon_sym_BSLASHGlstext = 146, + anon_sym_BSLASHGLStext = 147, + anon_sym_BSLASHglsfirst = 148, + anon_sym_BSLASHGlsfirst = 149, + anon_sym_BSLASHGLSfirst = 150, + anon_sym_BSLASHglsplural = 151, + anon_sym_BSLASHGlsplural = 152, + anon_sym_BSLASHGLSplural = 153, + anon_sym_BSLASHglsfirstplural = 154, + anon_sym_BSLASHGlsfirstplural = 155, + anon_sym_BSLASHGLSfirstplural = 156, + anon_sym_BSLASHglsname = 157, + anon_sym_BSLASHGlsname = 158, + anon_sym_BSLASHGLSname = 159, + anon_sym_BSLASHglssymbol = 160, + anon_sym_BSLASHGlssymbol = 161, + anon_sym_BSLASHglsdesc = 162, + anon_sym_BSLASHGlsdesc = 163, + anon_sym_BSLASHGLSdesc = 164, + anon_sym_BSLASHglsuseri = 165, + anon_sym_BSLASHGlsuseri = 166, + anon_sym_BSLASHGLSuseri = 167, + anon_sym_BSLASHglsuserii = 168, + anon_sym_BSLASHGlsuserii = 169, + anon_sym_BSLASHGLSuserii = 170, + anon_sym_BSLASHglsuseriii = 171, + anon_sym_BSLASHGlsuseriii = 172, + anon_sym_BSLASHGLSuseriii = 173, + anon_sym_BSLASHglsuseriv = 174, + anon_sym_BSLASHGlsuseriv = 175, + anon_sym_BSLASHGLSuseriv = 176, + anon_sym_BSLASHglsuserv = 177, + anon_sym_BSLASHGlsuserv = 178, + anon_sym_BSLASHGLSuserv = 179, + anon_sym_BSLASHglsuservi = 180, + anon_sym_BSLASHGlsuservi = 181, + anon_sym_BSLASHGLSuservi = 182, + anon_sym_BSLASHnewacronym = 183, + anon_sym_BSLASHacrshort = 184, + anon_sym_BSLASHAcrshort = 185, + anon_sym_BSLASHACRshort = 186, + anon_sym_BSLASHacrshortpl = 187, + anon_sym_BSLASHAcrshortpl = 188, + anon_sym_BSLASHACRshortpl = 189, + anon_sym_BSLASHacrlong = 190, + anon_sym_BSLASHAcrlong = 191, + anon_sym_BSLASHACRlong = 192, + anon_sym_BSLASHacrlongpl = 193, + anon_sym_BSLASHAcrlongpl = 194, + anon_sym_BSLASHACRlongpl = 195, + anon_sym_BSLASHacrfull = 196, + anon_sym_BSLASHAcrfull = 197, + anon_sym_BSLASHACRfull = 198, + anon_sym_BSLASHacrfullpl = 199, + anon_sym_BSLASHAcrfullpl = 200, + anon_sym_BSLASHACRfullpl = 201, + anon_sym_BSLASHacs = 202, + anon_sym_BSLASHAcs = 203, + anon_sym_BSLASHacsp = 204, + anon_sym_BSLASHAcsp = 205, + anon_sym_BSLASHacl = 206, + anon_sym_BSLASHAcl = 207, + anon_sym_BSLASHaclp = 208, + anon_sym_BSLASHAclp = 209, + anon_sym_BSLASHacf = 210, + anon_sym_BSLASHAcf = 211, + anon_sym_BSLASHacfp = 212, + anon_sym_BSLASHAcfp = 213, + anon_sym_BSLASHac = 214, + anon_sym_BSLASHAc = 215, + anon_sym_BSLASHacp = 216, + anon_sym_BSLASHglsentrylong = 217, + anon_sym_BSLASHGlsentrylong = 218, + anon_sym_BSLASHglsentrylongpl = 219, + anon_sym_BSLASHGlsentrylongpl = 220, + anon_sym_BSLASHglsentryshort = 221, + anon_sym_BSLASHGlsentryshort = 222, + anon_sym_BSLASHglsentryshortpl = 223, + anon_sym_BSLASHGlsentryshortpl = 224, + anon_sym_BSLASHglsentryfullpl = 225, + anon_sym_BSLASHGlsentryfullpl = 226, + anon_sym_BSLASHnewtheorem = 227, + anon_sym_BSLASHdeclaretheorem = 228, + anon_sym_BSLASHcolor = 229, + anon_sym_BSLASHcolorbox = 230, + anon_sym_BSLASHtextcolor = 231, + anon_sym_BSLASHpagecolor = 232, + anon_sym_BSLASHdefinecolor = 233, + anon_sym_BSLASHdefinecolorset = 234, + anon_sym_BSLASHusepgflibrary = 235, + anon_sym_BSLASHusetikzlibrary = 236, + sym_document = 237, + sym__simple_content = 238, + sym__content = 239, + sym_part = 240, + sym_chapter = 241, + sym_section = 242, + sym_subsection = 243, + sym_subsubsection = 244, + sym_paragraph = 245, + sym_subparagraph = 246, + sym_enum_item = 247, + sym_brace_group = 248, + sym_bracket_group = 249, + sym_paren_group = 250, + sym_mixed_group = 251, + sym_key_val_options = 252, + sym_key_val_pair = 253, + sym_text = 254, + sym__text_fragment = 255, + sym_displayed_equation = 256, + sym_inline_formula = 257, + sym_begin = 258, + sym_end = 259, + sym_environment = 260, + sym_caption = 261, + sym_citation = 262, + sym_package_include = 263, + sym_class_include = 264, + sym_latex_include = 265, + sym_latex_input = 266, + sym_biblatex_include = 267, + sym_bibtex_include = 268, + sym_graphics_include = 269, + sym_svg_include = 270, + sym_inkscape_include = 271, + sym_verbatim_include = 272, + sym_import = 273, + sym_label_definition = 274, + sym_label_reference = 275, + sym_equation_label_reference = 276, + sym_label_reference_range = 277, + sym_label_number = 278, + sym_command_definition = 279, + sym_math_operator = 280, + sym_glossary_entry_definition = 281, + sym_glossary_entry_reference = 282, + sym_acronym_definition = 283, + sym_acronym_reference = 284, + sym_theorem_definition = 285, + sym_color_reference = 286, + sym_color_definition = 287, + sym_color_set_definition = 288, + sym_pgf_library_import = 289, + sym_tikz_library_import = 290, + sym_generic_command = 291, + aux_sym_document_repeat1 = 292, + aux_sym_part_repeat1 = 293, + aux_sym_chapter_repeat1 = 294, + aux_sym_section_repeat1 = 295, + aux_sym_subsection_repeat1 = 296, + aux_sym_subsubsection_repeat1 = 297, + aux_sym_paragraph_repeat1 = 298, + aux_sym_subparagraph_repeat1 = 299, + aux_sym_enum_item_repeat1 = 300, + aux_sym_key_val_options_repeat1 = 301, + aux_sym_key_val_pair_repeat1 = 302, + aux_sym_text_repeat1 = 303, + aux_sym_begin_repeat1 = 304, + aux_sym_citation_repeat1 = 305, + aux_sym_package_include_repeat1 = 306, + aux_sym_label_reference_repeat1 = 307, + aux_sym_color_set_definition_repeat1 = 308, + aux_sym_pgf_library_import_repeat1 = 309, + aux_sym_generic_command_repeat1 = 310, }; static const char *ts_symbol_names[] = { @@ -192,32 +369,208 @@ static const char *ts_symbol_names[] = { [anon_sym_BSLASHbegin] = "\\begin", [anon_sym_BSLASHend] = "\\end", [anon_sym_BSLASHcaption] = "\\caption", - [aux_sym_citation_token1] = "citation_token1", - [aux_sym_package_include_token1] = "package_include_token1", + [anon_sym_BSLASHcite] = "\\cite", + [anon_sym_BSLASHcite_STAR] = "\\cite*", + [anon_sym_BSLASHCite] = "\\Cite", + [anon_sym_BSLASHnocite] = "\\nocite", + [anon_sym_BSLASHcitet] = "\\citet", + [anon_sym_BSLASHcitep] = "\\citep", + [anon_sym_BSLASHcitet_STAR] = "\\citet*", + [anon_sym_BSLASHcitep_STAR] = "\\citep*", + [anon_sym_BSLASHciteauthor] = "\\citeauthor", + [anon_sym_BSLASHciteauthor_STAR] = "\\citeauthor*", + [anon_sym_BSLASHCiteauthor] = "\\Citeauthor", + [anon_sym_BSLASHCiteauthor_STAR] = "\\Citeauthor*", + [anon_sym_BSLASHcitetitle] = "\\citetitle", + [anon_sym_BSLASHcitetitle_STAR] = "\\citetitle*", + [anon_sym_BSLASHciteyear] = "\\citeyear", + [anon_sym_BSLASHciteyear_STAR] = "\\citeyear*", + [anon_sym_BSLASHcitedate] = "\\citedate", + [anon_sym_BSLASHcitedate_STAR] = "\\citedate*", + [anon_sym_BSLASHciteurl] = "\\citeurl", + [anon_sym_BSLASHfullcite] = "\\fullcite", + [anon_sym_BSLASHciteyearpar] = "\\citeyearpar", + [anon_sym_BSLASHcitealt] = "\\citealt", + [anon_sym_BSLASHcitealp] = "\\citealp", + [anon_sym_BSLASHcitetext] = "\\citetext", + [anon_sym_BSLASHparencite] = "\\parencite", + [anon_sym_BSLASHparencite_STAR] = "\\parencite*", + [anon_sym_BSLASHParencite] = "\\Parencite", + [anon_sym_BSLASHfootcite] = "\\footcite", + [anon_sym_BSLASHfootfullcite] = "\\footfullcite", + [anon_sym_BSLASHfootcitetext] = "\\footcitetext", + [anon_sym_BSLASHtextcite] = "\\textcite", + [anon_sym_BSLASHTextcite] = "\\Textcite", + [anon_sym_BSLASHsmartcite] = "\\smartcite", + [anon_sym_BSLASHSmartcite] = "\\Smartcite", + [anon_sym_BSLASHsupercite] = "\\supercite", + [anon_sym_BSLASHautocite] = "\\autocite", + [anon_sym_BSLASHAutocite] = "\\Autocite", + [anon_sym_BSLASHautocite_STAR] = "\\autocite*", + [anon_sym_BSLASHAutocite_STAR] = "\\Autocite*", + [anon_sym_BSLASHvolcite] = "\\volcite", + [anon_sym_BSLASHVolcite] = "\\Volcite", + [anon_sym_BSLASHpvolcite] = "\\pvolcite", + [anon_sym_BSLASHPvolcite] = "\\Pvolcite", + [anon_sym_BSLASHfvolcite] = "\\fvolcite", + [anon_sym_BSLASHftvolcite] = "\\ftvolcite", + [anon_sym_BSLASHsvolcite] = "\\svolcite", + [anon_sym_BSLASHSvolcite] = "\\Svolcite", + [anon_sym_BSLASHtvolcite] = "\\tvolcite", + [anon_sym_BSLASHTvolcite] = "\\Tvolcite", + [anon_sym_BSLASHavolcite] = "\\avolcite", + [anon_sym_BSLASHAvolcite] = "\\Avolcite", + [anon_sym_BSLASHnotecite] = "\\notecite", + [anon_sym_BSLASHpnotecite] = "\\pnotecite", + [anon_sym_BSLASHPnotecite] = "\\Pnotecite", + [anon_sym_BSLASHfnotecite] = "\\fnotecite", + [anon_sym_BSLASHusepackage] = "\\usepackage", + [anon_sym_BSLASHRequirePackage] = "\\RequirePackage", [anon_sym_BSLASHdocumentclass] = "\\documentclass", - [aux_sym_latex_include_token1] = "latex_include_token1", - [aux_sym_latex_input_token1] = "latex_input_token1", + [anon_sym_BSLASHinclude] = "\\include", + [anon_sym_BSLASHsubfileinclude] = "\\subfileinclude", + [anon_sym_BSLASHinput] = "\\input", + [anon_sym_BSLASHsubfile] = "\\subfile", [anon_sym_BSLASHaddbibresource] = "\\addbibresource", [anon_sym_BSLASHbibliography] = "\\bibliography", [anon_sym_BSLASHincludegraphics] = "\\includegraphics", [anon_sym_BSLASHincludesvg] = "\\includesvg", [anon_sym_BSLASHincludeinkscape] = "\\includeinkscape", - [aux_sym_verbatim_include_token1] = "verbatim_include_token1", - [aux_sym_import_token1] = "import_token1", + [anon_sym_BSLASHverbatiminput] = "\\verbatiminput", + [anon_sym_BSLASHVerbatimInput] = "\\VerbatimInput", + [anon_sym_BSLASHimport] = "\\import", + [anon_sym_BSLASHsubimport] = "\\subimport", + [anon_sym_BSLASHinputfrom] = "\\inputfrom", + [anon_sym_BSLASHsubimportfrom] = "\\subimportfrom", + [anon_sym_BSLASHincludefrom] = "\\includefrom", + [anon_sym_BSLASHsubincludefrom] = "\\subincludefrom", [anon_sym_BSLASHlabel] = "\\label", - [aux_sym_label_reference_token1] = "label_reference_token1", + [anon_sym_BSLASHref] = "\\ref", + [anon_sym_BSLASHvref] = "\\vref", + [anon_sym_BSLASHVref] = "\\Vref", + [anon_sym_BSLASHautoref] = "\\autoref", + [anon_sym_BSLASHpageref] = "\\pageref", + [anon_sym_BSLASHcref] = "\\cref", + [anon_sym_BSLASHCref] = "\\Cref", + [anon_sym_BSLASHcref_STAR] = "\\cref*", + [anon_sym_BSLASHCref_STAR] = "\\Cref*", + [anon_sym_BSLASHnamecref] = "\\namecref", + [anon_sym_BSLASHnameCref] = "\\nameCref", + [anon_sym_BSLASHlcnamecref] = "\\lcnamecref", + [anon_sym_BSLASHnamecrefs] = "\\namecrefs", + [anon_sym_BSLASHnameCrefs] = "\\nameCrefs", + [anon_sym_BSLASHlcnamecrefs] = "\\lcnamecrefs", + [anon_sym_BSLASHlabelcref] = "\\labelcref", + [anon_sym_BSLASHlabelcpageref] = "\\labelcpageref", [anon_sym_BSLASHeqref] = "\\eqref", - [aux_sym_label_reference_range_token1] = "label_reference_range_token1", + [anon_sym_BSLASHcrefrange] = "\\crefrange", + [anon_sym_BSLASHCrefrange] = "\\Crefrange", + [anon_sym_BSLASHcrefrange_STAR] = "\\crefrange*", + [anon_sym_BSLASHCrefrange_STAR] = "\\Crefrange*", [anon_sym_BSLASHnewlabel] = "\\newlabel", + [anon_sym_BSLASHnewcommand] = "\\newcommand", + [anon_sym_BSLASHrenewcommand] = "\\renewcommand", + [anon_sym_BSLASHDeclareRobustCommand] = "\\DeclareRobustCommand", [aux_sym_command_definition_token1] = "command_definition_token1", - [aux_sym_command_definition_token2] = "command_definition_token2", - [aux_sym_math_operator_token1] = "math_operator_token1", + [anon_sym_BSLASHDeclareMathOperator] = "\\DeclareMathOperator", + [anon_sym_BSLASHDeclareMathOperator_STAR] = "\\DeclareMathOperator*", [anon_sym_BSLASHnewglossaryentry] = "\\newglossaryentry", - [aux_sym_glossary_entry_reference_token1] = "glossary_entry_reference_token1", + [anon_sym_BSLASHgls] = "\\gls", + [anon_sym_BSLASHGls] = "\\Gls", + [anon_sym_BSLASHGLS] = "\\GLS", + [anon_sym_BSLASHglspl] = "\\glspl", + [anon_sym_BSLASHGlspl] = "\\Glspl", + [anon_sym_BSLASHGLSpl] = "\\GLSpl", + [anon_sym_BSLASHglsdisp] = "\\glsdisp", + [anon_sym_BSLASHglslink] = "\\glslink", + [anon_sym_BSLASHglstext] = "\\glstext", + [anon_sym_BSLASHGlstext] = "\\Glstext", + [anon_sym_BSLASHGLStext] = "\\GLStext", + [anon_sym_BSLASHglsfirst] = "\\glsfirst", + [anon_sym_BSLASHGlsfirst] = "\\Glsfirst", + [anon_sym_BSLASHGLSfirst] = "\\GLSfirst", + [anon_sym_BSLASHglsplural] = "\\glsplural", + [anon_sym_BSLASHGlsplural] = "\\Glsplural", + [anon_sym_BSLASHGLSplural] = "\\GLSplural", + [anon_sym_BSLASHglsfirstplural] = "\\glsfirstplural", + [anon_sym_BSLASHGlsfirstplural] = "\\Glsfirstplural", + [anon_sym_BSLASHGLSfirstplural] = "\\GLSfirstplural", + [anon_sym_BSLASHglsname] = "\\glsname", + [anon_sym_BSLASHGlsname] = "\\Glsname", + [anon_sym_BSLASHGLSname] = "\\GLSname", + [anon_sym_BSLASHglssymbol] = "\\glssymbol", + [anon_sym_BSLASHGlssymbol] = "\\Glssymbol", + [anon_sym_BSLASHglsdesc] = "\\glsdesc", + [anon_sym_BSLASHGlsdesc] = "\\Glsdesc", + [anon_sym_BSLASHGLSdesc] = "\\GLSdesc", + [anon_sym_BSLASHglsuseri] = "\\glsuseri", + [anon_sym_BSLASHGlsuseri] = "\\Glsuseri", + [anon_sym_BSLASHGLSuseri] = "\\GLSuseri", + [anon_sym_BSLASHglsuserii] = "\\glsuserii", + [anon_sym_BSLASHGlsuserii] = "\\Glsuserii", + [anon_sym_BSLASHGLSuserii] = "\\GLSuserii", + [anon_sym_BSLASHglsuseriii] = "\\glsuseriii", + [anon_sym_BSLASHGlsuseriii] = "\\Glsuseriii", + [anon_sym_BSLASHGLSuseriii] = "\\GLSuseriii", + [anon_sym_BSLASHglsuseriv] = "\\glsuseriv", + [anon_sym_BSLASHGlsuseriv] = "\\Glsuseriv", + [anon_sym_BSLASHGLSuseriv] = "\\GLSuseriv", + [anon_sym_BSLASHglsuserv] = "\\glsuserv", + [anon_sym_BSLASHGlsuserv] = "\\Glsuserv", + [anon_sym_BSLASHGLSuserv] = "\\GLSuserv", + [anon_sym_BSLASHglsuservi] = "\\glsuservi", + [anon_sym_BSLASHGlsuservi] = "\\Glsuservi", + [anon_sym_BSLASHGLSuservi] = "\\GLSuservi", [anon_sym_BSLASHnewacronym] = "\\newacronym", - [aux_sym_acronym_reference_token1] = "acronym_reference_token1", - [aux_sym_theorem_definition_token1] = "theorem_definition_token1", - [aux_sym_color_reference_token1] = "color_reference_token1", + [anon_sym_BSLASHacrshort] = "\\acrshort", + [anon_sym_BSLASHAcrshort] = "\\Acrshort", + [anon_sym_BSLASHACRshort] = "\\ACRshort", + [anon_sym_BSLASHacrshortpl] = "\\acrshortpl", + [anon_sym_BSLASHAcrshortpl] = "\\Acrshortpl", + [anon_sym_BSLASHACRshortpl] = "\\ACRshortpl", + [anon_sym_BSLASHacrlong] = "\\acrlong", + [anon_sym_BSLASHAcrlong] = "\\Acrlong", + [anon_sym_BSLASHACRlong] = "\\ACRlong", + [anon_sym_BSLASHacrlongpl] = "\\acrlongpl", + [anon_sym_BSLASHAcrlongpl] = "\\Acrlongpl", + [anon_sym_BSLASHACRlongpl] = "\\ACRlongpl", + [anon_sym_BSLASHacrfull] = "\\acrfull", + [anon_sym_BSLASHAcrfull] = "\\Acrfull", + [anon_sym_BSLASHACRfull] = "\\ACRfull", + [anon_sym_BSLASHacrfullpl] = "\\acrfullpl", + [anon_sym_BSLASHAcrfullpl] = "\\Acrfullpl", + [anon_sym_BSLASHACRfullpl] = "\\ACRfullpl", + [anon_sym_BSLASHacs] = "\\acs", + [anon_sym_BSLASHAcs] = "\\Acs", + [anon_sym_BSLASHacsp] = "\\acsp", + [anon_sym_BSLASHAcsp] = "\\Acsp", + [anon_sym_BSLASHacl] = "\\acl", + [anon_sym_BSLASHAcl] = "\\Acl", + [anon_sym_BSLASHaclp] = "\\aclp", + [anon_sym_BSLASHAclp] = "\\Aclp", + [anon_sym_BSLASHacf] = "\\acf", + [anon_sym_BSLASHAcf] = "\\Acf", + [anon_sym_BSLASHacfp] = "\\acfp", + [anon_sym_BSLASHAcfp] = "\\Acfp", + [anon_sym_BSLASHac] = "\\ac", + [anon_sym_BSLASHAc] = "\\Ac", + [anon_sym_BSLASHacp] = "\\acp", + [anon_sym_BSLASHglsentrylong] = "\\glsentrylong", + [anon_sym_BSLASHGlsentrylong] = "\\Glsentrylong", + [anon_sym_BSLASHglsentrylongpl] = "\\glsentrylongpl", + [anon_sym_BSLASHGlsentrylongpl] = "\\Glsentrylongpl", + [anon_sym_BSLASHglsentryshort] = "\\glsentryshort", + [anon_sym_BSLASHGlsentryshort] = "\\Glsentryshort", + [anon_sym_BSLASHglsentryshortpl] = "\\glsentryshortpl", + [anon_sym_BSLASHGlsentryshortpl] = "\\Glsentryshortpl", + [anon_sym_BSLASHglsentryfullpl] = "\\glsentryfullpl", + [anon_sym_BSLASHGlsentryfullpl] = "\\Glsentryfullpl", + [anon_sym_BSLASHnewtheorem] = "\\newtheorem", + [anon_sym_BSLASHdeclaretheorem] = "\\declaretheorem", + [anon_sym_BSLASHcolor] = "\\color", + [anon_sym_BSLASHcolorbox] = "\\colorbox", + [anon_sym_BSLASHtextcolor] = "\\textcolor", + [anon_sym_BSLASHpagecolor] = "\\pagecolor", [anon_sym_BSLASHdefinecolor] = "\\definecolor", [anon_sym_BSLASHdefinecolorset] = "\\definecolorset", [anon_sym_BSLASHusepgflibrary] = "\\usepgflibrary", @@ -330,32 +683,208 @@ static TSSymbol ts_symbol_map[] = { [anon_sym_BSLASHbegin] = anon_sym_BSLASHbegin, [anon_sym_BSLASHend] = anon_sym_BSLASHend, [anon_sym_BSLASHcaption] = anon_sym_BSLASHcaption, - [aux_sym_citation_token1] = aux_sym_citation_token1, - [aux_sym_package_include_token1] = aux_sym_package_include_token1, + [anon_sym_BSLASHcite] = anon_sym_BSLASHcite, + [anon_sym_BSLASHcite_STAR] = anon_sym_BSLASHcite_STAR, + [anon_sym_BSLASHCite] = anon_sym_BSLASHCite, + [anon_sym_BSLASHnocite] = anon_sym_BSLASHnocite, + [anon_sym_BSLASHcitet] = anon_sym_BSLASHcitet, + [anon_sym_BSLASHcitep] = anon_sym_BSLASHcitep, + [anon_sym_BSLASHcitet_STAR] = anon_sym_BSLASHcitet_STAR, + [anon_sym_BSLASHcitep_STAR] = anon_sym_BSLASHcitep_STAR, + [anon_sym_BSLASHciteauthor] = anon_sym_BSLASHciteauthor, + [anon_sym_BSLASHciteauthor_STAR] = anon_sym_BSLASHciteauthor_STAR, + [anon_sym_BSLASHCiteauthor] = anon_sym_BSLASHCiteauthor, + [anon_sym_BSLASHCiteauthor_STAR] = anon_sym_BSLASHCiteauthor_STAR, + [anon_sym_BSLASHcitetitle] = anon_sym_BSLASHcitetitle, + [anon_sym_BSLASHcitetitle_STAR] = anon_sym_BSLASHcitetitle_STAR, + [anon_sym_BSLASHciteyear] = anon_sym_BSLASHciteyear, + [anon_sym_BSLASHciteyear_STAR] = anon_sym_BSLASHciteyear_STAR, + [anon_sym_BSLASHcitedate] = anon_sym_BSLASHcitedate, + [anon_sym_BSLASHcitedate_STAR] = anon_sym_BSLASHcitedate_STAR, + [anon_sym_BSLASHciteurl] = anon_sym_BSLASHciteurl, + [anon_sym_BSLASHfullcite] = anon_sym_BSLASHfullcite, + [anon_sym_BSLASHciteyearpar] = anon_sym_BSLASHciteyearpar, + [anon_sym_BSLASHcitealt] = anon_sym_BSLASHcitealt, + [anon_sym_BSLASHcitealp] = anon_sym_BSLASHcitealp, + [anon_sym_BSLASHcitetext] = anon_sym_BSLASHcitetext, + [anon_sym_BSLASHparencite] = anon_sym_BSLASHparencite, + [anon_sym_BSLASHparencite_STAR] = anon_sym_BSLASHparencite_STAR, + [anon_sym_BSLASHParencite] = anon_sym_BSLASHParencite, + [anon_sym_BSLASHfootcite] = anon_sym_BSLASHfootcite, + [anon_sym_BSLASHfootfullcite] = anon_sym_BSLASHfootfullcite, + [anon_sym_BSLASHfootcitetext] = anon_sym_BSLASHfootcitetext, + [anon_sym_BSLASHtextcite] = anon_sym_BSLASHtextcite, + [anon_sym_BSLASHTextcite] = anon_sym_BSLASHTextcite, + [anon_sym_BSLASHsmartcite] = anon_sym_BSLASHsmartcite, + [anon_sym_BSLASHSmartcite] = anon_sym_BSLASHSmartcite, + [anon_sym_BSLASHsupercite] = anon_sym_BSLASHsupercite, + [anon_sym_BSLASHautocite] = anon_sym_BSLASHautocite, + [anon_sym_BSLASHAutocite] = anon_sym_BSLASHAutocite, + [anon_sym_BSLASHautocite_STAR] = anon_sym_BSLASHautocite_STAR, + [anon_sym_BSLASHAutocite_STAR] = anon_sym_BSLASHAutocite_STAR, + [anon_sym_BSLASHvolcite] = anon_sym_BSLASHvolcite, + [anon_sym_BSLASHVolcite] = anon_sym_BSLASHVolcite, + [anon_sym_BSLASHpvolcite] = anon_sym_BSLASHpvolcite, + [anon_sym_BSLASHPvolcite] = anon_sym_BSLASHPvolcite, + [anon_sym_BSLASHfvolcite] = anon_sym_BSLASHfvolcite, + [anon_sym_BSLASHftvolcite] = anon_sym_BSLASHftvolcite, + [anon_sym_BSLASHsvolcite] = anon_sym_BSLASHsvolcite, + [anon_sym_BSLASHSvolcite] = anon_sym_BSLASHSvolcite, + [anon_sym_BSLASHtvolcite] = anon_sym_BSLASHtvolcite, + [anon_sym_BSLASHTvolcite] = anon_sym_BSLASHTvolcite, + [anon_sym_BSLASHavolcite] = anon_sym_BSLASHavolcite, + [anon_sym_BSLASHAvolcite] = anon_sym_BSLASHAvolcite, + [anon_sym_BSLASHnotecite] = anon_sym_BSLASHnotecite, + [anon_sym_BSLASHpnotecite] = anon_sym_BSLASHpnotecite, + [anon_sym_BSLASHPnotecite] = anon_sym_BSLASHPnotecite, + [anon_sym_BSLASHfnotecite] = anon_sym_BSLASHfnotecite, + [anon_sym_BSLASHusepackage] = anon_sym_BSLASHusepackage, + [anon_sym_BSLASHRequirePackage] = anon_sym_BSLASHRequirePackage, [anon_sym_BSLASHdocumentclass] = anon_sym_BSLASHdocumentclass, - [aux_sym_latex_include_token1] = aux_sym_latex_include_token1, - [aux_sym_latex_input_token1] = aux_sym_latex_input_token1, + [anon_sym_BSLASHinclude] = anon_sym_BSLASHinclude, + [anon_sym_BSLASHsubfileinclude] = anon_sym_BSLASHsubfileinclude, + [anon_sym_BSLASHinput] = anon_sym_BSLASHinput, + [anon_sym_BSLASHsubfile] = anon_sym_BSLASHsubfile, [anon_sym_BSLASHaddbibresource] = anon_sym_BSLASHaddbibresource, [anon_sym_BSLASHbibliography] = anon_sym_BSLASHbibliography, [anon_sym_BSLASHincludegraphics] = anon_sym_BSLASHincludegraphics, [anon_sym_BSLASHincludesvg] = anon_sym_BSLASHincludesvg, [anon_sym_BSLASHincludeinkscape] = anon_sym_BSLASHincludeinkscape, - [aux_sym_verbatim_include_token1] = aux_sym_verbatim_include_token1, - [aux_sym_import_token1] = aux_sym_import_token1, + [anon_sym_BSLASHverbatiminput] = anon_sym_BSLASHverbatiminput, + [anon_sym_BSLASHVerbatimInput] = anon_sym_BSLASHVerbatimInput, + [anon_sym_BSLASHimport] = anon_sym_BSLASHimport, + [anon_sym_BSLASHsubimport] = anon_sym_BSLASHsubimport, + [anon_sym_BSLASHinputfrom] = anon_sym_BSLASHinputfrom, + [anon_sym_BSLASHsubimportfrom] = anon_sym_BSLASHsubimportfrom, + [anon_sym_BSLASHincludefrom] = anon_sym_BSLASHincludefrom, + [anon_sym_BSLASHsubincludefrom] = anon_sym_BSLASHsubincludefrom, [anon_sym_BSLASHlabel] = anon_sym_BSLASHlabel, - [aux_sym_label_reference_token1] = aux_sym_label_reference_token1, + [anon_sym_BSLASHref] = anon_sym_BSLASHref, + [anon_sym_BSLASHvref] = anon_sym_BSLASHvref, + [anon_sym_BSLASHVref] = anon_sym_BSLASHVref, + [anon_sym_BSLASHautoref] = anon_sym_BSLASHautoref, + [anon_sym_BSLASHpageref] = anon_sym_BSLASHpageref, + [anon_sym_BSLASHcref] = anon_sym_BSLASHcref, + [anon_sym_BSLASHCref] = anon_sym_BSLASHCref, + [anon_sym_BSLASHcref_STAR] = anon_sym_BSLASHcref_STAR, + [anon_sym_BSLASHCref_STAR] = anon_sym_BSLASHCref_STAR, + [anon_sym_BSLASHnamecref] = anon_sym_BSLASHnamecref, + [anon_sym_BSLASHnameCref] = anon_sym_BSLASHnameCref, + [anon_sym_BSLASHlcnamecref] = anon_sym_BSLASHlcnamecref, + [anon_sym_BSLASHnamecrefs] = anon_sym_BSLASHnamecrefs, + [anon_sym_BSLASHnameCrefs] = anon_sym_BSLASHnameCrefs, + [anon_sym_BSLASHlcnamecrefs] = anon_sym_BSLASHlcnamecrefs, + [anon_sym_BSLASHlabelcref] = anon_sym_BSLASHlabelcref, + [anon_sym_BSLASHlabelcpageref] = anon_sym_BSLASHlabelcpageref, [anon_sym_BSLASHeqref] = anon_sym_BSLASHeqref, - [aux_sym_label_reference_range_token1] = aux_sym_label_reference_range_token1, + [anon_sym_BSLASHcrefrange] = anon_sym_BSLASHcrefrange, + [anon_sym_BSLASHCrefrange] = anon_sym_BSLASHCrefrange, + [anon_sym_BSLASHcrefrange_STAR] = anon_sym_BSLASHcrefrange_STAR, + [anon_sym_BSLASHCrefrange_STAR] = anon_sym_BSLASHCrefrange_STAR, [anon_sym_BSLASHnewlabel] = anon_sym_BSLASHnewlabel, + [anon_sym_BSLASHnewcommand] = anon_sym_BSLASHnewcommand, + [anon_sym_BSLASHrenewcommand] = anon_sym_BSLASHrenewcommand, + [anon_sym_BSLASHDeclareRobustCommand] = anon_sym_BSLASHDeclareRobustCommand, [aux_sym_command_definition_token1] = aux_sym_command_definition_token1, - [aux_sym_command_definition_token2] = aux_sym_command_definition_token2, - [aux_sym_math_operator_token1] = aux_sym_math_operator_token1, + [anon_sym_BSLASHDeclareMathOperator] = anon_sym_BSLASHDeclareMathOperator, + [anon_sym_BSLASHDeclareMathOperator_STAR] = anon_sym_BSLASHDeclareMathOperator_STAR, [anon_sym_BSLASHnewglossaryentry] = anon_sym_BSLASHnewglossaryentry, - [aux_sym_glossary_entry_reference_token1] = aux_sym_glossary_entry_reference_token1, + [anon_sym_BSLASHgls] = anon_sym_BSLASHgls, + [anon_sym_BSLASHGls] = anon_sym_BSLASHGls, + [anon_sym_BSLASHGLS] = anon_sym_BSLASHGLS, + [anon_sym_BSLASHglspl] = anon_sym_BSLASHglspl, + [anon_sym_BSLASHGlspl] = anon_sym_BSLASHGlspl, + [anon_sym_BSLASHGLSpl] = anon_sym_BSLASHGLSpl, + [anon_sym_BSLASHglsdisp] = anon_sym_BSLASHglsdisp, + [anon_sym_BSLASHglslink] = anon_sym_BSLASHglslink, + [anon_sym_BSLASHglstext] = anon_sym_BSLASHglstext, + [anon_sym_BSLASHGlstext] = anon_sym_BSLASHGlstext, + [anon_sym_BSLASHGLStext] = anon_sym_BSLASHGLStext, + [anon_sym_BSLASHglsfirst] = anon_sym_BSLASHglsfirst, + [anon_sym_BSLASHGlsfirst] = anon_sym_BSLASHGlsfirst, + [anon_sym_BSLASHGLSfirst] = anon_sym_BSLASHGLSfirst, + [anon_sym_BSLASHglsplural] = anon_sym_BSLASHglsplural, + [anon_sym_BSLASHGlsplural] = anon_sym_BSLASHGlsplural, + [anon_sym_BSLASHGLSplural] = anon_sym_BSLASHGLSplural, + [anon_sym_BSLASHglsfirstplural] = anon_sym_BSLASHglsfirstplural, + [anon_sym_BSLASHGlsfirstplural] = anon_sym_BSLASHGlsfirstplural, + [anon_sym_BSLASHGLSfirstplural] = anon_sym_BSLASHGLSfirstplural, + [anon_sym_BSLASHglsname] = anon_sym_BSLASHglsname, + [anon_sym_BSLASHGlsname] = anon_sym_BSLASHGlsname, + [anon_sym_BSLASHGLSname] = anon_sym_BSLASHGLSname, + [anon_sym_BSLASHglssymbol] = anon_sym_BSLASHglssymbol, + [anon_sym_BSLASHGlssymbol] = anon_sym_BSLASHGlssymbol, + [anon_sym_BSLASHglsdesc] = anon_sym_BSLASHglsdesc, + [anon_sym_BSLASHGlsdesc] = anon_sym_BSLASHGlsdesc, + [anon_sym_BSLASHGLSdesc] = anon_sym_BSLASHGLSdesc, + [anon_sym_BSLASHglsuseri] = anon_sym_BSLASHglsuseri, + [anon_sym_BSLASHGlsuseri] = anon_sym_BSLASHGlsuseri, + [anon_sym_BSLASHGLSuseri] = anon_sym_BSLASHGLSuseri, + [anon_sym_BSLASHglsuserii] = anon_sym_BSLASHglsuserii, + [anon_sym_BSLASHGlsuserii] = anon_sym_BSLASHGlsuserii, + [anon_sym_BSLASHGLSuserii] = anon_sym_BSLASHGLSuserii, + [anon_sym_BSLASHglsuseriii] = anon_sym_BSLASHglsuseriii, + [anon_sym_BSLASHGlsuseriii] = anon_sym_BSLASHGlsuseriii, + [anon_sym_BSLASHGLSuseriii] = anon_sym_BSLASHGLSuseriii, + [anon_sym_BSLASHglsuseriv] = anon_sym_BSLASHglsuseriv, + [anon_sym_BSLASHGlsuseriv] = anon_sym_BSLASHGlsuseriv, + [anon_sym_BSLASHGLSuseriv] = anon_sym_BSLASHGLSuseriv, + [anon_sym_BSLASHglsuserv] = anon_sym_BSLASHglsuserv, + [anon_sym_BSLASHGlsuserv] = anon_sym_BSLASHGlsuserv, + [anon_sym_BSLASHGLSuserv] = anon_sym_BSLASHGLSuserv, + [anon_sym_BSLASHglsuservi] = anon_sym_BSLASHglsuservi, + [anon_sym_BSLASHGlsuservi] = anon_sym_BSLASHGlsuservi, + [anon_sym_BSLASHGLSuservi] = anon_sym_BSLASHGLSuservi, [anon_sym_BSLASHnewacronym] = anon_sym_BSLASHnewacronym, - [aux_sym_acronym_reference_token1] = aux_sym_acronym_reference_token1, - [aux_sym_theorem_definition_token1] = aux_sym_theorem_definition_token1, - [aux_sym_color_reference_token1] = aux_sym_color_reference_token1, + [anon_sym_BSLASHacrshort] = anon_sym_BSLASHacrshort, + [anon_sym_BSLASHAcrshort] = anon_sym_BSLASHAcrshort, + [anon_sym_BSLASHACRshort] = anon_sym_BSLASHACRshort, + [anon_sym_BSLASHacrshortpl] = anon_sym_BSLASHacrshortpl, + [anon_sym_BSLASHAcrshortpl] = anon_sym_BSLASHAcrshortpl, + [anon_sym_BSLASHACRshortpl] = anon_sym_BSLASHACRshortpl, + [anon_sym_BSLASHacrlong] = anon_sym_BSLASHacrlong, + [anon_sym_BSLASHAcrlong] = anon_sym_BSLASHAcrlong, + [anon_sym_BSLASHACRlong] = anon_sym_BSLASHACRlong, + [anon_sym_BSLASHacrlongpl] = anon_sym_BSLASHacrlongpl, + [anon_sym_BSLASHAcrlongpl] = anon_sym_BSLASHAcrlongpl, + [anon_sym_BSLASHACRlongpl] = anon_sym_BSLASHACRlongpl, + [anon_sym_BSLASHacrfull] = anon_sym_BSLASHacrfull, + [anon_sym_BSLASHAcrfull] = anon_sym_BSLASHAcrfull, + [anon_sym_BSLASHACRfull] = anon_sym_BSLASHACRfull, + [anon_sym_BSLASHacrfullpl] = anon_sym_BSLASHacrfullpl, + [anon_sym_BSLASHAcrfullpl] = anon_sym_BSLASHAcrfullpl, + [anon_sym_BSLASHACRfullpl] = anon_sym_BSLASHACRfullpl, + [anon_sym_BSLASHacs] = anon_sym_BSLASHacs, + [anon_sym_BSLASHAcs] = anon_sym_BSLASHAcs, + [anon_sym_BSLASHacsp] = anon_sym_BSLASHacsp, + [anon_sym_BSLASHAcsp] = anon_sym_BSLASHAcsp, + [anon_sym_BSLASHacl] = anon_sym_BSLASHacl, + [anon_sym_BSLASHAcl] = anon_sym_BSLASHAcl, + [anon_sym_BSLASHaclp] = anon_sym_BSLASHaclp, + [anon_sym_BSLASHAclp] = anon_sym_BSLASHAclp, + [anon_sym_BSLASHacf] = anon_sym_BSLASHacf, + [anon_sym_BSLASHAcf] = anon_sym_BSLASHAcf, + [anon_sym_BSLASHacfp] = anon_sym_BSLASHacfp, + [anon_sym_BSLASHAcfp] = anon_sym_BSLASHAcfp, + [anon_sym_BSLASHac] = anon_sym_BSLASHac, + [anon_sym_BSLASHAc] = anon_sym_BSLASHAc, + [anon_sym_BSLASHacp] = anon_sym_BSLASHacp, + [anon_sym_BSLASHglsentrylong] = anon_sym_BSLASHglsentrylong, + [anon_sym_BSLASHGlsentrylong] = anon_sym_BSLASHGlsentrylong, + [anon_sym_BSLASHglsentrylongpl] = anon_sym_BSLASHglsentrylongpl, + [anon_sym_BSLASHGlsentrylongpl] = anon_sym_BSLASHGlsentrylongpl, + [anon_sym_BSLASHglsentryshort] = anon_sym_BSLASHglsentryshort, + [anon_sym_BSLASHGlsentryshort] = anon_sym_BSLASHGlsentryshort, + [anon_sym_BSLASHglsentryshortpl] = anon_sym_BSLASHglsentryshortpl, + [anon_sym_BSLASHGlsentryshortpl] = anon_sym_BSLASHGlsentryshortpl, + [anon_sym_BSLASHglsentryfullpl] = anon_sym_BSLASHglsentryfullpl, + [anon_sym_BSLASHGlsentryfullpl] = anon_sym_BSLASHGlsentryfullpl, + [anon_sym_BSLASHnewtheorem] = anon_sym_BSLASHnewtheorem, + [anon_sym_BSLASHdeclaretheorem] = anon_sym_BSLASHdeclaretheorem, + [anon_sym_BSLASHcolor] = anon_sym_BSLASHcolor, + [anon_sym_BSLASHcolorbox] = anon_sym_BSLASHcolorbox, + [anon_sym_BSLASHtextcolor] = anon_sym_BSLASHtextcolor, + [anon_sym_BSLASHpagecolor] = anon_sym_BSLASHpagecolor, [anon_sym_BSLASHdefinecolor] = anon_sym_BSLASHdefinecolor, [anon_sym_BSLASHdefinecolorset] = anon_sym_BSLASHdefinecolorset, [anon_sym_BSLASHusepgflibrary] = anon_sym_BSLASHusepgflibrary, @@ -561,24 +1090,252 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_citation_token1] = { - .visible = false, + [anon_sym_BSLASHcite] = { + .visible = true, .named = false, }, - [aux_sym_package_include_token1] = { - .visible = false, + [anon_sym_BSLASHcite_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHCite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHnocite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcitet] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcitep] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcitet_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcitep_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHciteauthor] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHciteauthor_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHCiteauthor] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHCiteauthor_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcitetitle] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcitetitle_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHciteyear] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHciteyear_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcitedate] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcitedate_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHciteurl] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHfullcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHciteyearpar] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcitealt] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcitealp] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcitetext] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHparencite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHparencite_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHParencite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHfootcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHfootfullcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHfootcitetext] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHtextcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHTextcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHsmartcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHSmartcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHsupercite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHautocite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHAutocite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHautocite_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHAutocite_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHvolcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHVolcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHpvolcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHPvolcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHfvolcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHftvolcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHsvolcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHSvolcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHtvolcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHTvolcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHavolcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHAvolcite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHnotecite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHpnotecite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHPnotecite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHfnotecite] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHusepackage] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHRequirePackage] = { + .visible = true, .named = false, }, [anon_sym_BSLASHdocumentclass] = { .visible = true, .named = false, }, - [aux_sym_latex_include_token1] = { - .visible = false, + [anon_sym_BSLASHinclude] = { + .visible = true, .named = false, }, - [aux_sym_latex_input_token1] = { - .visible = false, + [anon_sym_BSLASHsubfileinclude] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHinput] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHsubfile] = { + .visible = true, .named = false, }, [anon_sym_BSLASHaddbibresource] = { @@ -601,389 +1358,865 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [aux_sym_verbatim_include_token1] = { - .visible = false, + [anon_sym_BSLASHverbatiminput] = { + .visible = true, .named = false, }, - [aux_sym_import_token1] = { - .visible = false, + [anon_sym_BSLASHVerbatimInput] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHimport] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHsubimport] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHinputfrom] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHsubimportfrom] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHincludefrom] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHsubincludefrom] = { + .visible = true, .named = false, }, [anon_sym_BSLASHlabel] = { .visible = true, .named = false, }, - [aux_sym_label_reference_token1] = { - .visible = false, + [anon_sym_BSLASHref] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHvref] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHVref] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHautoref] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHpageref] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcref] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHCref] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcref_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHCref_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHnamecref] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHnameCref] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHlcnamecref] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHnamecrefs] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHnameCrefs] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHlcnamecrefs] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHlabelcref] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHlabelcpageref] = { + .visible = true, .named = false, }, [anon_sym_BSLASHeqref] = { .visible = true, .named = false, }, - [aux_sym_label_reference_range_token1] = { - .visible = false, + [anon_sym_BSLASHcrefrange] = { + .visible = true, .named = false, }, - [anon_sym_BSLASHnewlabel] = { + [anon_sym_BSLASHCrefrange] = { .visible = true, .named = false, }, - [aux_sym_command_definition_token1] = { - .visible = false, + [anon_sym_BSLASHcrefrange_STAR] = { + .visible = true, .named = false, }, - [aux_sym_command_definition_token2] = { - .visible = false, + [anon_sym_BSLASHCrefrange_STAR] = { + .visible = true, .named = false, }, - [aux_sym_math_operator_token1] = { - .visible = false, + [anon_sym_BSLASHnewlabel] = { + .visible = true, .named = false, }, - [anon_sym_BSLASHnewglossaryentry] = { + [anon_sym_BSLASHnewcommand] = { .visible = true, .named = false, }, - [aux_sym_glossary_entry_reference_token1] = { - .visible = false, + [anon_sym_BSLASHrenewcommand] = { + .visible = true, .named = false, }, - [anon_sym_BSLASHnewacronym] = { + [anon_sym_BSLASHDeclareRobustCommand] = { .visible = true, .named = false, }, - [aux_sym_acronym_reference_token1] = { + [aux_sym_command_definition_token1] = { .visible = false, .named = false, }, - [aux_sym_theorem_definition_token1] = { - .visible = false, + [anon_sym_BSLASHDeclareMathOperator] = { + .visible = true, .named = false, }, - [aux_sym_color_reference_token1] = { - .visible = false, + [anon_sym_BSLASHDeclareMathOperator_STAR] = { + .visible = true, .named = false, }, - [anon_sym_BSLASHdefinecolor] = { + [anon_sym_BSLASHnewglossaryentry] = { .visible = true, .named = false, }, - [anon_sym_BSLASHdefinecolorset] = { + [anon_sym_BSLASHgls] = { .visible = true, .named = false, }, - [anon_sym_BSLASHusepgflibrary] = { + [anon_sym_BSLASHGls] = { .visible = true, .named = false, }, - [anon_sym_BSLASHusetikzlibrary] = { + [anon_sym_BSLASHGLS] = { .visible = true, .named = false, }, - [sym_document] = { + [anon_sym_BSLASHglspl] = { .visible = true, - .named = true, + .named = false, }, - [sym__simple_content] = { - .visible = false, - .named = true, + [anon_sym_BSLASHGlspl] = { + .visible = true, + .named = false, }, - [sym__content] = { - .visible = false, - .named = true, + [anon_sym_BSLASHGLSpl] = { + .visible = true, + .named = false, }, - [sym_part] = { + [anon_sym_BSLASHglsdisp] = { .visible = true, - .named = true, + .named = false, }, - [sym_chapter] = { + [anon_sym_BSLASHglslink] = { .visible = true, - .named = true, + .named = false, }, - [sym_section] = { + [anon_sym_BSLASHglstext] = { .visible = true, - .named = true, + .named = false, }, - [sym_subsection] = { + [anon_sym_BSLASHGlstext] = { .visible = true, - .named = true, + .named = false, }, - [sym_subsubsection] = { + [anon_sym_BSLASHGLStext] = { .visible = true, - .named = true, + .named = false, }, - [sym_paragraph] = { + [anon_sym_BSLASHglsfirst] = { .visible = true, - .named = true, + .named = false, }, - [sym_subparagraph] = { + [anon_sym_BSLASHGlsfirst] = { .visible = true, - .named = true, + .named = false, }, - [sym_enum_item] = { + [anon_sym_BSLASHGLSfirst] = { .visible = true, - .named = true, + .named = false, }, - [sym_brace_group] = { + [anon_sym_BSLASHglsplural] = { .visible = true, - .named = true, + .named = false, }, - [sym_bracket_group] = { + [anon_sym_BSLASHGlsplural] = { .visible = true, - .named = true, + .named = false, }, - [sym_paren_group] = { + [anon_sym_BSLASHGLSplural] = { .visible = true, - .named = true, + .named = false, }, - [sym_mixed_group] = { + [anon_sym_BSLASHglsfirstplural] = { .visible = true, - .named = true, + .named = false, }, - [sym_key_val_options] = { + [anon_sym_BSLASHGlsfirstplural] = { .visible = true, - .named = true, + .named = false, }, - [sym_key_val_pair] = { + [anon_sym_BSLASHGLSfirstplural] = { .visible = true, - .named = true, + .named = false, }, - [sym_text] = { + [anon_sym_BSLASHglsname] = { .visible = true, - .named = true, + .named = false, }, - [sym__text_fragment] = { - .visible = false, - .named = true, + [anon_sym_BSLASHGlsname] = { + .visible = true, + .named = false, }, - [sym_displayed_equation] = { + [anon_sym_BSLASHGLSname] = { .visible = true, - .named = true, + .named = false, }, - [sym_inline_formula] = { + [anon_sym_BSLASHglssymbol] = { .visible = true, - .named = true, + .named = false, }, - [sym_begin] = { + [anon_sym_BSLASHGlssymbol] = { .visible = true, - .named = true, + .named = false, }, - [sym_end] = { + [anon_sym_BSLASHglsdesc] = { .visible = true, - .named = true, + .named = false, }, - [sym_environment] = { + [anon_sym_BSLASHGlsdesc] = { .visible = true, - .named = true, + .named = false, }, - [sym_caption] = { + [anon_sym_BSLASHGLSdesc] = { .visible = true, - .named = true, + .named = false, }, - [sym_citation] = { + [anon_sym_BSLASHglsuseri] = { .visible = true, - .named = true, + .named = false, }, - [sym_package_include] = { + [anon_sym_BSLASHGlsuseri] = { .visible = true, - .named = true, + .named = false, }, - [sym_class_include] = { + [anon_sym_BSLASHGLSuseri] = { .visible = true, - .named = true, + .named = false, }, - [sym_latex_include] = { + [anon_sym_BSLASHglsuserii] = { .visible = true, - .named = true, + .named = false, }, - [sym_latex_input] = { + [anon_sym_BSLASHGlsuserii] = { .visible = true, - .named = true, + .named = false, }, - [sym_biblatex_include] = { + [anon_sym_BSLASHGLSuserii] = { .visible = true, - .named = true, + .named = false, }, - [sym_bibtex_include] = { + [anon_sym_BSLASHglsuseriii] = { .visible = true, - .named = true, + .named = false, }, - [sym_graphics_include] = { + [anon_sym_BSLASHGlsuseriii] = { .visible = true, - .named = true, + .named = false, }, - [sym_svg_include] = { + [anon_sym_BSLASHGLSuseriii] = { .visible = true, - .named = true, + .named = false, }, - [sym_inkscape_include] = { + [anon_sym_BSLASHglsuseriv] = { .visible = true, - .named = true, + .named = false, }, - [sym_verbatim_include] = { + [anon_sym_BSLASHGlsuseriv] = { .visible = true, - .named = true, + .named = false, }, - [sym_import] = { + [anon_sym_BSLASHGLSuseriv] = { .visible = true, - .named = true, + .named = false, }, - [sym_label_definition] = { + [anon_sym_BSLASHglsuserv] = { .visible = true, - .named = true, + .named = false, }, - [sym_label_reference] = { + [anon_sym_BSLASHGlsuserv] = { .visible = true, - .named = true, + .named = false, }, - [sym_equation_label_reference] = { + [anon_sym_BSLASHGLSuserv] = { .visible = true, - .named = true, + .named = false, }, - [sym_label_reference_range] = { + [anon_sym_BSLASHglsuservi] = { .visible = true, - .named = true, + .named = false, }, - [sym_label_number] = { + [anon_sym_BSLASHGlsuservi] = { .visible = true, - .named = true, + .named = false, }, - [sym_command_definition] = { + [anon_sym_BSLASHGLSuservi] = { .visible = true, - .named = true, + .named = false, }, - [sym_math_operator] = { + [anon_sym_BSLASHnewacronym] = { .visible = true, - .named = true, + .named = false, }, - [sym_glossary_entry_definition] = { + [anon_sym_BSLASHacrshort] = { .visible = true, - .named = true, + .named = false, }, - [sym_glossary_entry_reference] = { + [anon_sym_BSLASHAcrshort] = { .visible = true, - .named = true, + .named = false, }, - [sym_acronym_definition] = { + [anon_sym_BSLASHACRshort] = { .visible = true, - .named = true, + .named = false, }, - [sym_acronym_reference] = { + [anon_sym_BSLASHacrshortpl] = { .visible = true, - .named = true, + .named = false, }, - [sym_theorem_definition] = { + [anon_sym_BSLASHAcrshortpl] = { .visible = true, - .named = true, + .named = false, }, - [sym_color_reference] = { + [anon_sym_BSLASHACRshortpl] = { .visible = true, - .named = true, + .named = false, }, - [sym_color_definition] = { + [anon_sym_BSLASHacrlong] = { .visible = true, - .named = true, + .named = false, }, - [sym_color_set_definition] = { + [anon_sym_BSLASHAcrlong] = { .visible = true, - .named = true, + .named = false, }, - [sym_pgf_library_import] = { + [anon_sym_BSLASHACRlong] = { .visible = true, - .named = true, + .named = false, }, - [sym_tikz_library_import] = { + [anon_sym_BSLASHacrlongpl] = { .visible = true, - .named = true, + .named = false, }, - [sym_generic_command] = { + [anon_sym_BSLASHAcrlongpl] = { .visible = true, - .named = true, + .named = false, }, - [aux_sym_document_repeat1] = { - .visible = false, + [anon_sym_BSLASHACRlongpl] = { + .visible = true, .named = false, }, - [aux_sym_part_repeat1] = { - .visible = false, + [anon_sym_BSLASHacrfull] = { + .visible = true, .named = false, }, - [aux_sym_chapter_repeat1] = { - .visible = false, + [anon_sym_BSLASHAcrfull] = { + .visible = true, .named = false, }, - [aux_sym_section_repeat1] = { - .visible = false, + [anon_sym_BSLASHACRfull] = { + .visible = true, .named = false, }, - [aux_sym_subsection_repeat1] = { - .visible = false, + [anon_sym_BSLASHacrfullpl] = { + .visible = true, .named = false, }, - [aux_sym_subsubsection_repeat1] = { - .visible = false, + [anon_sym_BSLASHAcrfullpl] = { + .visible = true, .named = false, }, - [aux_sym_paragraph_repeat1] = { - .visible = false, + [anon_sym_BSLASHACRfullpl] = { + .visible = true, .named = false, }, - [aux_sym_subparagraph_repeat1] = { - .visible = false, + [anon_sym_BSLASHacs] = { + .visible = true, .named = false, }, - [aux_sym_enum_item_repeat1] = { - .visible = false, + [anon_sym_BSLASHAcs] = { + .visible = true, .named = false, }, - [aux_sym_key_val_options_repeat1] = { - .visible = false, + [anon_sym_BSLASHacsp] = { + .visible = true, .named = false, }, - [aux_sym_key_val_pair_repeat1] = { - .visible = false, + [anon_sym_BSLASHAcsp] = { + .visible = true, .named = false, }, - [aux_sym_text_repeat1] = { - .visible = false, + [anon_sym_BSLASHacl] = { + .visible = true, .named = false, }, - [aux_sym_begin_repeat1] = { - .visible = false, + [anon_sym_BSLASHAcl] = { + .visible = true, .named = false, }, - [aux_sym_citation_repeat1] = { - .visible = false, + [anon_sym_BSLASHaclp] = { + .visible = true, .named = false, }, - [aux_sym_package_include_repeat1] = { - .visible = false, + [anon_sym_BSLASHAclp] = { + .visible = true, .named = false, }, - [aux_sym_label_reference_repeat1] = { - .visible = false, + [anon_sym_BSLASHacf] = { + .visible = true, .named = false, }, - [aux_sym_color_set_definition_repeat1] = { - .visible = false, + [anon_sym_BSLASHAcf] = { + .visible = true, .named = false, }, - [aux_sym_pgf_library_import_repeat1] = { - .visible = false, + [anon_sym_BSLASHacfp] = { + .visible = true, .named = false, }, - [aux_sym_generic_command_repeat1] = { - .visible = false, + [anon_sym_BSLASHAcfp] = { + .visible = true, .named = false, }, -}; - -enum { - field_arg = 1, - field_argc = 2, - field_begin = 3, - field_child = 4, + [anon_sym_BSLASHac] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHAc] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHacp] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHglsentrylong] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHGlsentrylong] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHglsentrylongpl] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHGlsentrylongpl] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHglsentryshort] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHGlsentryshort] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHglsentryshortpl] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHGlsentryshortpl] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHglsentryfullpl] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHGlsentryfullpl] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHnewtheorem] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHdeclaretheorem] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcolor] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHcolorbox] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHtextcolor] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHpagecolor] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHdefinecolor] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHdefinecolorset] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHusepgflibrary] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHusetikzlibrary] = { + .visible = true, + .named = false, + }, + [sym_document] = { + .visible = true, + .named = true, + }, + [sym__simple_content] = { + .visible = false, + .named = true, + }, + [sym__content] = { + .visible = false, + .named = true, + }, + [sym_part] = { + .visible = true, + .named = true, + }, + [sym_chapter] = { + .visible = true, + .named = true, + }, + [sym_section] = { + .visible = true, + .named = true, + }, + [sym_subsection] = { + .visible = true, + .named = true, + }, + [sym_subsubsection] = { + .visible = true, + .named = true, + }, + [sym_paragraph] = { + .visible = true, + .named = true, + }, + [sym_subparagraph] = { + .visible = true, + .named = true, + }, + [sym_enum_item] = { + .visible = true, + .named = true, + }, + [sym_brace_group] = { + .visible = true, + .named = true, + }, + [sym_bracket_group] = { + .visible = true, + .named = true, + }, + [sym_paren_group] = { + .visible = true, + .named = true, + }, + [sym_mixed_group] = { + .visible = true, + .named = true, + }, + [sym_key_val_options] = { + .visible = true, + .named = true, + }, + [sym_key_val_pair] = { + .visible = true, + .named = true, + }, + [sym_text] = { + .visible = true, + .named = true, + }, + [sym__text_fragment] = { + .visible = false, + .named = true, + }, + [sym_displayed_equation] = { + .visible = true, + .named = true, + }, + [sym_inline_formula] = { + .visible = true, + .named = true, + }, + [sym_begin] = { + .visible = true, + .named = true, + }, + [sym_end] = { + .visible = true, + .named = true, + }, + [sym_environment] = { + .visible = true, + .named = true, + }, + [sym_caption] = { + .visible = true, + .named = true, + }, + [sym_citation] = { + .visible = true, + .named = true, + }, + [sym_package_include] = { + .visible = true, + .named = true, + }, + [sym_class_include] = { + .visible = true, + .named = true, + }, + [sym_latex_include] = { + .visible = true, + .named = true, + }, + [sym_latex_input] = { + .visible = true, + .named = true, + }, + [sym_biblatex_include] = { + .visible = true, + .named = true, + }, + [sym_bibtex_include] = { + .visible = true, + .named = true, + }, + [sym_graphics_include] = { + .visible = true, + .named = true, + }, + [sym_svg_include] = { + .visible = true, + .named = true, + }, + [sym_inkscape_include] = { + .visible = true, + .named = true, + }, + [sym_verbatim_include] = { + .visible = true, + .named = true, + }, + [sym_import] = { + .visible = true, + .named = true, + }, + [sym_label_definition] = { + .visible = true, + .named = true, + }, + [sym_label_reference] = { + .visible = true, + .named = true, + }, + [sym_equation_label_reference] = { + .visible = true, + .named = true, + }, + [sym_label_reference_range] = { + .visible = true, + .named = true, + }, + [sym_label_number] = { + .visible = true, + .named = true, + }, + [sym_command_definition] = { + .visible = true, + .named = true, + }, + [sym_math_operator] = { + .visible = true, + .named = true, + }, + [sym_glossary_entry_definition] = { + .visible = true, + .named = true, + }, + [sym_glossary_entry_reference] = { + .visible = true, + .named = true, + }, + [sym_acronym_definition] = { + .visible = true, + .named = true, + }, + [sym_acronym_reference] = { + .visible = true, + .named = true, + }, + [sym_theorem_definition] = { + .visible = true, + .named = true, + }, + [sym_color_reference] = { + .visible = true, + .named = true, + }, + [sym_color_definition] = { + .visible = true, + .named = true, + }, + [sym_color_set_definition] = { + .visible = true, + .named = true, + }, + [sym_pgf_library_import] = { + .visible = true, + .named = true, + }, + [sym_tikz_library_import] = { + .visible = true, + .named = true, + }, + [sym_generic_command] = { + .visible = true, + .named = true, + }, + [aux_sym_document_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_part_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_chapter_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_section_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_subsection_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_subsubsection_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_paragraph_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_subparagraph_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_enum_item_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_key_val_options_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_key_val_pair_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_text_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_begin_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_citation_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_package_include_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_label_reference_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_color_set_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pgf_library_import_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_generic_command_repeat1] = { + .visible = false, + .named = false, + }, +}; + +enum { + field_arg = 1, + field_argc = 2, + field_begin = 3, + field_child = 4, field_command = 5, field_counter = 6, field_directory = 7, @@ -1054,7 +2287,7 @@ static const char *ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[75] = { +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [2] = {.index = 1, .length = 1}, [3] = {.index = 2, .length = 2}, @@ -1421,7 +2654,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_ty, 2}, }; -static TSSymbol ts_alias_sequences[75][MAX_ALIAS_SEQUENCE_LENGTH] = { +static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, }; @@ -1429,6 +2662,24 @@ static uint16_t ts_non_terminal_alias_map[] = { 0, }; +static inline bool sym_word_character_set_1(int32_t c) { + return (c < '(' + ? (c < '\r' + ? (c < '\t' + ? c == 0 + : c <= '\n') + : (c <= '\r' || (c < '#' + ? c == ' ' + : c <= '%'))) + : (c <= ')' || (c < '[' + ? (c < '=' + ? c == ',' + : c <= '=') + : (c <= ']' || (c < '}' + ? c == '{' + : c <= '}'))))); +} + static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); eof = lexer->eof(lexer); @@ -1443,7 +2694,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\\') ADVANCE(262); if (lookahead == ']') ADVANCE(37); if (lookahead == '{') ADVANCE(38); if (lookahead == '}') ADVANCE(39); @@ -1462,7 +2713,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\\') ADVANCE(263); if (lookahead == '{') ADVANCE(38); if (lookahead == '\t' || lookahead == '\n' || @@ -1481,7 +2732,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(119); + if (lookahead == '\\') ADVANCE(268); if (lookahead == '{') ADVANCE(38); if (lookahead == '\t' || lookahead == '\n' || @@ -1500,7 +2751,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(117); + if (lookahead == '\\') ADVANCE(266); if (lookahead == '{') ADVANCE(38); if (lookahead == '\t' || lookahead == '\n' || @@ -1519,7 +2770,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(115); + if (lookahead == '\\') ADVANCE(264); if (lookahead == '{') ADVANCE(38); if (lookahead == '\t' || lookahead == '\n' || @@ -1538,7 +2789,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(122); + if (lookahead == '\\') ADVANCE(271); if (lookahead == ']') ADVANCE(37); if (lookahead == '{') ADVANCE(38); if (lookahead == '}') ADVANCE(39); @@ -1557,7 +2808,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(123); + if (lookahead == '\\') ADVANCE(272); if (lookahead == ']') ADVANCE(37); if (lookahead == '{') ADVANCE(38); if (lookahead == '}') ADVANCE(39); @@ -1576,7 +2827,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(124); + if (lookahead == '\\') ADVANCE(273); if (lookahead == ']') ADVANCE(37); if (lookahead == '{') ADVANCE(38); if (lookahead == '}') ADVANCE(39); @@ -1595,7 +2846,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(126); + if (lookahead == '\\') ADVANCE(275); if (lookahead == ']') ADVANCE(37); if (lookahead == '{') ADVANCE(38); if (lookahead == '}') ADVANCE(39); @@ -1614,7 +2865,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(127); + if (lookahead == '\\') ADVANCE(276); if (lookahead == ']') ADVANCE(37); if (lookahead == '{') ADVANCE(38); if (lookahead == '}') ADVANCE(39); @@ -1633,7 +2884,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(128); + if (lookahead == '\\') ADVANCE(277); if (lookahead == ']') ADVANCE(37); if (lookahead == '{') ADVANCE(38); if (lookahead == '}') ADVANCE(39); @@ -1652,7 +2903,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(121); + if (lookahead == '\\') ADVANCE(270); if (lookahead == ']') ADVANCE(37); if (lookahead == '{') ADVANCE(38); if (lookahead == '}') ADVANCE(39); @@ -1671,7 +2922,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(125); + if (lookahead == '\\') ADVANCE(274); if (lookahead == ']') ADVANCE(37); if (lookahead == '{') ADVANCE(38); if (lookahead == '}') ADVANCE(39); @@ -1684,12 +2935,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 13: if (lookahead == '%') ADVANCE(20); - if (lookahead == '\\') ADVANCE(605); + if (lookahead == '\\') ADVANCE(1077); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(19); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(157); END_STATE(); case 14: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45); @@ -1704,7 +2955,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(120); + if (lookahead == '\\') ADVANCE(269); if (lookahead == ']') ADVANCE(37); if (lookahead == '{') ADVANCE(38); if (lookahead == '}') ADVANCE(39); @@ -1724,7 +2975,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(118); + if (lookahead == '\\') ADVANCE(267); if (lookahead == ']') ADVANCE(37); if (lookahead == '{') ADVANCE(38); if (lookahead == '}') ADVANCE(39); @@ -1744,7 +2995,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(42); if (lookahead == '=') ADVANCE(43); if (lookahead == '[') ADVANCE(36); - if (lookahead == '\\') ADVANCE(116); + if (lookahead == '\\') ADVANCE(265); if (lookahead == ']') ADVANCE(37); if (lookahead == '{') ADVANCE(38); if (lookahead == '}') ADVANCE(39); @@ -1777,7 +3028,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_part_token1); if (lookahead == '*') ADVANCE(21); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 23: ACCEPT_TOKEN(aux_sym_chapter_token1); @@ -1786,7 +3037,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_chapter_token1); if (lookahead == '*') ADVANCE(23); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 25: ACCEPT_TOKEN(aux_sym_section_token1); @@ -1795,7 +3046,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_section_token1); if (lookahead == '*') ADVANCE(25); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 27: ACCEPT_TOKEN(aux_sym_subsection_token1); @@ -1804,7 +3055,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_subsection_token1); if (lookahead == '*') ADVANCE(27); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 29: ACCEPT_TOKEN(aux_sym_subsubsection_token1); @@ -1813,7 +3064,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_subsubsection_token1); if (lookahead == '*') ADVANCE(29); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 31: ACCEPT_TOKEN(aux_sym_paragraph_token1); @@ -1822,7 +3073,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_paragraph_token1); if (lookahead == '*') ADVANCE(31); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 33: ACCEPT_TOKEN(aux_sym_subparagraph_token1); @@ -1831,13 +3082,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_subparagraph_token1); if (lookahead == '*') ADVANCE(33); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 35: ACCEPT_TOKEN(anon_sym_BSLASHitem); - if (lookahead == '*') ADVANCE(112); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 36: ACCEPT_TOKEN(anon_sym_LBRACK); @@ -1865,19 +3116,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 44: ACCEPT_TOKEN(sym_word); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '#' || '%' < lookahead) && - lookahead != '(' && - lookahead != ')' && - lookahead != ',' && - lookahead != '=' && - (lookahead < '[' || ']' < lookahead) && - lookahead != '{' && - lookahead != '}') ADVANCE(44); + if (!sym_word_character_set_1(lookahead)) ADVANCE(44); END_STATE(); case 45: ACCEPT_TOKEN(sym_param); @@ -1903,143261 +3142,492713 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 52: ACCEPT_TOKEN(anon_sym_BSLASHbegin); - if (lookahead == '*') ADVANCE(112); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 53: ACCEPT_TOKEN(anon_sym_BSLASHend); - if (lookahead == '*') ADVANCE(112); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 54: ACCEPT_TOKEN(anon_sym_BSLASHcaption); - if (lookahead == '*') ADVANCE(112); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 55: - ACCEPT_TOKEN(aux_sym_citation_token1); + ACCEPT_TOKEN(anon_sym_BSLASHcite); + if (lookahead == '*') ADVANCE(56); + if (lookahead == 'a') ADVANCE(679); + if (lookahead == 'd') ADVANCE(339); + if (lookahead == 'p') ADVANCE(60); + if (lookahead == 't') ADVANCE(59); + if (lookahead == 'u') ADVANCE(895); + if (lookahead == 'y') ADVANCE(514); + if (('@' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 56: - ACCEPT_TOKEN(aux_sym_citation_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(576); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHcite_STAR); END_STATE(); case 57: - ACCEPT_TOKEN(aux_sym_citation_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(283); + ACCEPT_TOKEN(anon_sym_BSLASHCite); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(1036); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 58: - ACCEPT_TOKEN(aux_sym_citation_token1); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHnocite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 59: - ACCEPT_TOKEN(aux_sym_citation_token1); - if (lookahead == '*') ADVANCE(55); - if (lookahead == 'a') ADVANCE(357); - if (lookahead == 'd') ADVANCE(180); - if (lookahead == 'p') ADVANCE(62); - if (lookahead == 't') ADVANCE(60); - if (lookahead == 'u') ADVANCE(499); - if (lookahead == 'y') ADVANCE(282); + ACCEPT_TOKEN(anon_sym_BSLASHcitet); + if (lookahead == '*') ADVANCE(61); + if (lookahead == 'e') ADVANCE(1062); + if (lookahead == 'i') ADVANCE(1018); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 60: - ACCEPT_TOKEN(aux_sym_citation_token1); - if (lookahead == '*') ADVANCE(55); - if (lookahead == 'e') ADVANCE(592); - if (lookahead == 'i') ADVANCE(565); + ACCEPT_TOKEN(anon_sym_BSLASHcitep); + if (lookahead == '*') ADVANCE(62); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 61: - ACCEPT_TOKEN(aux_sym_citation_token1); - if (lookahead == '*') ADVANCE(55); - if (lookahead == 'p') ADVANCE(161); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHcitet_STAR); END_STATE(); case 62: - ACCEPT_TOKEN(aux_sym_citation_token1); - if (lookahead == '*') ADVANCE(55); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHcitep_STAR); END_STATE(); case 63: - ACCEPT_TOKEN(aux_sym_package_include_token1); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHciteauthor); + if (lookahead == '*') ADVANCE(64); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 64: - ACCEPT_TOKEN(anon_sym_BSLASHdocumentclass); - if (lookahead == '*') ADVANCE(112); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHciteauthor_STAR); END_STATE(); case 65: - ACCEPT_TOKEN(aux_sym_latex_include_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(503); - if (lookahead == 'g') ADVANCE(513); - if (lookahead == 'i') ADVANCE(418); - if (lookahead == 's') ADVANCE(586); + ACCEPT_TOKEN(anon_sym_BSLASHCiteauthor); + if (lookahead == '*') ADVANCE(66); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 66: - ACCEPT_TOKEN(aux_sym_latex_include_token1); - if (lookahead == '*') ADVANCE(112); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHCiteauthor_STAR); END_STATE(); case 67: - ACCEPT_TOKEN(aux_sym_latex_input_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(503); + ACCEPT_TOKEN(anon_sym_BSLASHcitetitle); + if (lookahead == '*') ADVANCE(68); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 68: - ACCEPT_TOKEN(aux_sym_latex_input_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(426); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHcitetitle_STAR); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_BSLASHaddbibresource); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHciteyear); + if (lookahead == '*') ADVANCE(70); + if (lookahead == 'p') ADVANCE(309); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 70: - ACCEPT_TOKEN(anon_sym_BSLASHbibliography); - if (lookahead == '*') ADVANCE(112); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHciteyear_STAR); END_STATE(); case 71: - ACCEPT_TOKEN(anon_sym_BSLASHincludegraphics); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHcitedate); + if (lookahead == '*') ADVANCE(72); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 72: - ACCEPT_TOKEN(anon_sym_BSLASHincludesvg); - if (lookahead == '*') ADVANCE(112); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHcitedate_STAR); END_STATE(); case 73: - ACCEPT_TOKEN(anon_sym_BSLASHincludeinkscape); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHciteurl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 74: - ACCEPT_TOKEN(aux_sym_verbatim_include_token1); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHfullcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 75: - ACCEPT_TOKEN(aux_sym_import_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(503); + ACCEPT_TOKEN(anon_sym_BSLASHciteyearpar); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 76: - ACCEPT_TOKEN(aux_sym_import_token1); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHcitealt); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 77: - ACCEPT_TOKEN(anon_sym_BSLASHlabel); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(465); + ACCEPT_TOKEN(anon_sym_BSLASHcitealp); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 78: - ACCEPT_TOKEN(aux_sym_label_reference_token1); + ACCEPT_TOKEN(anon_sym_BSLASHcitetext); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 79: - ACCEPT_TOKEN(aux_sym_label_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(80); + ACCEPT_TOKEN(anon_sym_BSLASHparencite); + if (lookahead == '*') ADVANCE(80); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 80: - ACCEPT_TOKEN(aux_sym_label_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHparencite_STAR); END_STATE(); case 81: - ACCEPT_TOKEN(aux_sym_label_reference_token1); - if (lookahead == '*') ADVANCE(78); - if (lookahead == 'r') ADVANCE(156); + ACCEPT_TOKEN(anon_sym_BSLASHParencite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 82: - ACCEPT_TOKEN(anon_sym_BSLASHeqref); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHfootcite); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(518); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 83: - ACCEPT_TOKEN(aux_sym_label_reference_range_token1); + ACCEPT_TOKEN(anon_sym_BSLASHfootfullcite); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 84: - ACCEPT_TOKEN(aux_sym_label_reference_range_token1); - if (lookahead == '*') ADVANCE(83); + ACCEPT_TOKEN(anon_sym_BSLASHfootcitetext); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 85: - ACCEPT_TOKEN(anon_sym_BSLASHnewlabel); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHtextcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 86: - ACCEPT_TOKEN(aux_sym_command_definition_token1); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHTextcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 87: - ACCEPT_TOKEN(aux_sym_command_definition_token2); + ACCEPT_TOKEN(anon_sym_BSLASHsmartcite); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 88: - ACCEPT_TOKEN(aux_sym_math_operator_token1); + ACCEPT_TOKEN(anon_sym_BSLASHSmartcite); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 89: - ACCEPT_TOKEN(aux_sym_math_operator_token1); - if (lookahead == '*') ADVANCE(88); + ACCEPT_TOKEN(anon_sym_BSLASHsupercite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 90: - ACCEPT_TOKEN(anon_sym_BSLASHnewglossaryentry); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHautocite); + if (lookahead == '*') ADVANCE(92); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 91: - ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'd') ADVANCE(263); - if (lookahead == 'e') ADVANCE(420); - if (lookahead == 'f') ADVANCE(331); - if (lookahead == 'l') ADVANCE(332); - if (lookahead == 'n') ADVANCE(175); - if (lookahead == 'p') ADVANCE(355); - if (lookahead == 's') ADVANCE(598); - if (lookahead == 't') ADVANCE(280); - if (lookahead == 'u') ADVANCE(529); + ACCEPT_TOKEN(anon_sym_BSLASHAutocite); + if (lookahead == '*') ADVANCE(93); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 92: - ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'd') ADVANCE(264); - if (lookahead == 'e') ADVANCE(420); - if (lookahead == 'f') ADVANCE(331); - if (lookahead == 'n') ADVANCE(175); - if (lookahead == 'p') ADVANCE(355); - if (lookahead == 's') ADVANCE(598); - if (lookahead == 't') ADVANCE(280); - if (lookahead == 'u') ADVANCE(529); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHautocite_STAR); END_STATE(); case 93: - ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'd') ADVANCE(264); - if (lookahead == 'f') ADVANCE(331); - if (lookahead == 'n') ADVANCE(175); - if (lookahead == 'p') ADVANCE(355); - if (lookahead == 't') ADVANCE(280); - if (lookahead == 'u') ADVANCE(529); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHAutocite_STAR); END_STATE(); case 94: - ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(98); + ACCEPT_TOKEN(anon_sym_BSLASHvolcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 95: - ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(94); - if (lookahead == 'v') ADVANCE(98); + ACCEPT_TOKEN(anon_sym_BSLASHVolcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 96: - ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(370); + ACCEPT_TOKEN(anon_sym_BSLASHpvolcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 97: - ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(498); + ACCEPT_TOKEN(anon_sym_BSLASHPvolcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 98: - ACCEPT_TOKEN(aux_sym_glossary_entry_reference_token1); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHfvolcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 99: - ACCEPT_TOKEN(anon_sym_BSLASHnewacronym); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHftvolcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 100: - ACCEPT_TOKEN(aux_sym_acronym_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(102); - if (lookahead == 'l') ADVANCE(102); - if (lookahead == 'p') ADVANCE(104); - if (lookahead == 'r') ADVANCE(297); - if (lookahead == 's') ADVANCE(102); + ACCEPT_TOKEN(anon_sym_BSLASHsvolcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 101: - ACCEPT_TOKEN(aux_sym_acronym_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(102); - if (lookahead == 'l') ADVANCE(102); - if (lookahead == 'r') ADVANCE(297); - if (lookahead == 's') ADVANCE(102); + ACCEPT_TOKEN(anon_sym_BSLASHSvolcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 102: - ACCEPT_TOKEN(aux_sym_acronym_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(104); + ACCEPT_TOKEN(anon_sym_BSLASHtvolcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 103: - ACCEPT_TOKEN(aux_sym_acronym_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(354); + ACCEPT_TOKEN(anon_sym_BSLASHTvolcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 104: - ACCEPT_TOKEN(aux_sym_acronym_reference_token1); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHavolcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 105: - ACCEPT_TOKEN(aux_sym_theorem_definition_token1); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHAvolcite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 106: - ACCEPT_TOKEN(aux_sym_color_reference_token1); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(429); + ACCEPT_TOKEN(anon_sym_BSLASHnotecite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 107: - ACCEPT_TOKEN(aux_sym_color_reference_token1); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHpnotecite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym_BSLASHdefinecolor); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(279); + ACCEPT_TOKEN(anon_sym_BSLASHPnotecite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_BSLASHdefinecolorset); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHfnotecite); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_BSLASHusepgflibrary); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHusepackage); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_BSLASHusetikzlibrary); - if (lookahead == '*') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHRequirePackage); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 112: - ACCEPT_TOKEN(sym_generic_command_name); + ACCEPT_TOKEN(anon_sym_BSLASHdocumentclass); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 113: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == ')') ADVANCE(51); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == ']') ADVANCE(48); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(140); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(411); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(143); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(260); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHinclude); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(901); + if (lookahead == 'g') ADVANCE(917); + if (lookahead == 'i') ADVANCE(766); + if (lookahead == 's') ADVANCE(1053); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 114: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == ')') ADVANCE(51); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == ']') ADVANCE(48); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(140); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(473); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(143); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(260); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHsubfileinclude); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 115: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == ')') ADVANCE(51); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(140); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(411); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(143); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(260); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHinput); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(896); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 116: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == ')') ADVANCE(51); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(140); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(473); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(143); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(260); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHsubfile); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(781); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 117: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == ']') ADVANCE(48); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(140); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(411); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(143); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(260); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHaddbibresource); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 118: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == ']') ADVANCE(48); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(140); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(473); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(143); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(260); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHbibliography); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 119: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(140); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(411); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(143); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(260); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHincludegraphics); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 120: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(140); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(473); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(143); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(260); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHincludesvg); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 121: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(140); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(473); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(147); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(260); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHincludeinkscape); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 122: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(141); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(473); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(147); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(260); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHverbatiminput); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 123: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(141); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(473); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(147); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(384); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHVerbatimInput); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 124: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(141); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(473); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(147); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(385); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHimport); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 125: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(141); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(473); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(147); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(387); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHsubimport); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(903); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 126: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(141); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(473); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(150); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(385); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHinputfrom); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 127: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(141); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(473); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(394); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(150); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(386); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHsubimportfrom); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 128: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '(') ADVANCE(50); - if (lookahead == 'A') ADVANCE(129); - if (lookahead == 'C') ADVANCE(327); - if (lookahead == 'D') ADVANCE(231); - if (lookahead == 'G') ADVANCE(133); - if (lookahead == 'P') ADVANCE(139); - if (lookahead == 'R') ADVANCE(232); - if (lookahead == 'S') ADVANCE(388); - if (lookahead == 'T') ADVANCE(233); - if (lookahead == 'V') ADVANCE(254); - if (lookahead == '[') ADVANCE(47); - if (lookahead == 'a') ADVANCE(198); - if (lookahead == 'b') ADVANCE(234); - if (lookahead == 'c') ADVANCE(141); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(473); - if (lookahead == 'f') ADVANCE(410); - if (lookahead == 'g') ADVANCE(363); - if (lookahead == 'i') ADVANCE(395); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(142); - if (lookahead == 'p') ADVANCE(150); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 's') ADVANCE(386); - if (lookahead == 't') ADVANCE(286); - if (lookahead == 'u') ADVANCE(523); - if (lookahead == 'v') ADVANCE(291); - if (('@' <= lookahead && lookahead <= 'Z') || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ACCEPT_TOKEN(anon_sym_BSLASHincludefrom); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 129: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'C') ADVANCE(137); - if (lookahead == 'c') ADVANCE(101); - if (lookahead == 'u') ADVANCE(546); - if (lookahead == 'v') ADVANCE(428); + ACCEPT_TOKEN(anon_sym_BSLASHsubincludefrom); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 130: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'C') ADVANCE(432); + ACCEPT_TOKEN(anon_sym_BSLASHlabel); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(853); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 131: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'C') ADVANCE(510); - if (lookahead == 'c') ADVANCE(510); + ACCEPT_TOKEN(anon_sym_BSLASHref); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 132: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'I') ADVANCE(419); + ACCEPT_TOKEN(anon_sym_BSLASHvref); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 133: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'L') ADVANCE(138); - if (lookahead == 'l') ADVANCE(518); + ACCEPT_TOKEN(anon_sym_BSLASHVref); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 134: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'M') ADVANCE(162); - if (lookahead == 'R') ADVANCE(436); + ACCEPT_TOKEN(anon_sym_BSLASHautoref); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 135: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'O') ADVANCE(467); + ACCEPT_TOKEN(anon_sym_BSLASHpageref); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 136: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'P') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_BSLASHcref); + if (lookahead == '*') ADVANCE(138); + if (lookahead == 'r') ADVANCE(327); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 137: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'R') ADVANCE(297); + ACCEPT_TOKEN(anon_sym_BSLASHCref); + if (lookahead == '*') ADVANCE(139); + if (lookahead == 'r') ADVANCE(304); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 138: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'S') ADVANCE(93); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHcref_STAR); END_STATE(); case 139: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(493); - if (lookahead == 'n') ADVANCE(430); - if (lookahead == 'v') ADVANCE(428); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHCref_STAR); END_STATE(); case 140: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(460); - if (lookahead == 'h') ADVANCE(165); - if (lookahead == 'i') ADVANCE(553); - if (lookahead == 'o') ADVANCE(366); - if (lookahead == 'r') ADVANCE(237); + ACCEPT_TOKEN(anon_sym_BSLASHnamecref); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(143); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 141: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(460); - if (lookahead == 'i') ADVANCE(553); - if (lookahead == 'o') ADVANCE(366); - if (lookahead == 'r') ADVANCE(237); + ACCEPT_TOKEN(anon_sym_BSLASHnameCref); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(144); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 142: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(398); - if (lookahead == 'e') ADVANCE(587); - if (lookahead == 'o') ADVANCE(202); + ACCEPT_TOKEN(anon_sym_BSLASHlcnamecref); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(145); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 143: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(309); - if (lookahead == 'n') ADVANCE(430); - if (lookahead == 'v') ADVANCE(428); + ACCEPT_TOKEN(anon_sym_BSLASHnamecrefs); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 144: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(308); - if (lookahead == 'e') ADVANCE(425); - if (lookahead == 't') ADVANCE(22); + ACCEPT_TOKEN(anon_sym_BSLASHnameCrefs); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 145: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(308); - if (lookahead == 'e') ADVANCE(425); + ACCEPT_TOKEN(anon_sym_BSLASHlcnamecrefs); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 146: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(191); - if (lookahead == 'c') ADVANCE(413); + ACCEPT_TOKEN(anon_sym_BSLASHlabelcref); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 147: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(310); - if (lookahead == 'n') ADVANCE(430); - if (lookahead == 'v') ADVANCE(428); + ACCEPT_TOKEN(anon_sym_BSLASHlabelcpageref); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 148: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(486); + ACCEPT_TOKEN(anon_sym_BSLASHeqref); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 149: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(402); + ACCEPT_TOKEN(anon_sym_BSLASHcrefrange); + if (lookahead == '*') ADVANCE(151); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 150: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(311); - if (lookahead == 'n') ADVANCE(430); - if (lookahead == 'v') ADVANCE(428); + ACCEPT_TOKEN(anon_sym_BSLASHCrefrange); + if (lookahead == '*') ADVANCE(152); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 151: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(459); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHcrefrange_STAR); END_STATE(); case 152: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(208); - if (lookahead == 'c') ADVANCE(432); - if (lookahead == 'g') ADVANCE(371); - if (lookahead == 'l') ADVANCE(166); - if (lookahead == 't') ADVANCE(323); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHCrefrange_STAR); END_STATE(); case 153: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(461); + ACCEPT_TOKEN(anon_sym_BSLASHnewlabel); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 154: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(204); - if (lookahead == 'g') ADVANCE(302); + ACCEPT_TOKEN(anon_sym_BSLASHnewcommand); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 155: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(204); + ACCEPT_TOKEN(anon_sym_BSLASHrenewcommand); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 156: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(417); + ACCEPT_TOKEN(anon_sym_BSLASHDeclareRobustCommand); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 157: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(478); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(aux_sym_command_definition_token1); END_STATE(); case 158: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(416); + ACCEPT_TOKEN(anon_sym_BSLASHDeclareMathOperator); + if (lookahead == '*') ADVANCE(159); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 159: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(358); - if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ACCEPT_TOKEN(anon_sym_BSLASHDeclareMathOperator_STAR); END_STATE(); case 160: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(485); + ACCEPT_TOKEN(anon_sym_BSLASHnewglossaryentry); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 161: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(483); + ACCEPT_TOKEN(anon_sym_BSLASHgls); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'd') ADVANCE(516); + if (lookahead == 'e') ADVANCE(782); + if (lookahead == 'f') ADVANCE(609); + if (lookahead == 'l') ADVANCE(600); + if (lookahead == 'n') ADVANCE(337); + if (lookahead == 'p') ADVANCE(649); + if (lookahead == 's') ADVANCE(1074); + if (lookahead == 't') ADVANCE(517); + if (lookahead == 'u') ADVANCE(949); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 162: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(549); + ACCEPT_TOKEN(anon_sym_BSLASHGls); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'd') ADVANCE(513); + if (lookahead == 'e') ADVANCE(772); + if (lookahead == 'f') ADVANCE(608); + if (lookahead == 'n') ADVANCE(334); + if (lookahead == 'p') ADVANCE(648); + if (lookahead == 's') ADVANCE(1069); + if (lookahead == 't') ADVANCE(515); + if (lookahead == 'u') ADVANCE(946); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 163: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(489); + ACCEPT_TOKEN(anon_sym_BSLASHGLS); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'd') ADVANCE(485); + if (lookahead == 'f') ADVANCE(596); + if (lookahead == 'n') ADVANCE(330); + if (lookahead == 'p') ADVANCE(647); + if (lookahead == 't') ADVANCE(511); + if (lookahead == 'u') ADVANCE(945); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 164: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(491); + ACCEPT_TOKEN(anon_sym_BSLASHglspl); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(919); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 165: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(469); + ACCEPT_TOKEN(anon_sym_BSLASHGlspl); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(916); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 166: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(193); + ACCEPT_TOKEN(anon_sym_BSLASHGLSpl); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(888); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 167: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(313); + ACCEPT_TOKEN(anon_sym_BSLASHglsdisp); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 168: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(552); + ACCEPT_TOKEN(anon_sym_BSLASHglslink); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 169: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(463); + ACCEPT_TOKEN(anon_sym_BSLASHglstext); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 170: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(526); + ACCEPT_TOKEN(anon_sym_BSLASHGlstext); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 171: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(468); + ACCEPT_TOKEN(anon_sym_BSLASHGLStext); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 172: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(497); + ACCEPT_TOKEN(anon_sym_BSLASHglsfirst); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(706); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 173: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(559); + ACCEPT_TOKEN(anon_sym_BSLASHGlsfirst); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(705); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 174: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(507); + ACCEPT_TOKEN(anon_sym_BSLASHGLSfirst); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(687); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 175: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(400); + ACCEPT_TOKEN(anon_sym_BSLASHglsplural); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 176: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(314); + ACCEPT_TOKEN(anon_sym_BSLASHGlsplural); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 177: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(554); + ACCEPT_TOKEN(anon_sym_BSLASHGLSplural); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 178: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(464); + ACCEPT_TOKEN(anon_sym_BSLASHglsfirstplural); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 179: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(509); + ACCEPT_TOKEN(anon_sym_BSLASHGlsfirstplural); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 180: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(560); + ACCEPT_TOKEN(anon_sym_BSLASHGLSfirstplural); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 181: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'a') ADVANCE(316); + ACCEPT_TOKEN(anon_sym_BSLASHglsname); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 182: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(298); - if (lookahead == 'p') ADVANCE(266); + ACCEPT_TOKEN(anon_sym_BSLASHGlsname); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 183: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(300); - if (lookahead == 'p') ADVANCE(266); + ACCEPT_TOKEN(anon_sym_BSLASHGLSname); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 184: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'p') ADVANCE(266); + ACCEPT_TOKEN(anon_sym_BSLASHglssymbol); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 185: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(299); - if (lookahead == 'p') ADVANCE(266); + ACCEPT_TOKEN(anon_sym_BSLASHGlssymbol); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 186: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(329); + ACCEPT_TOKEN(anon_sym_BSLASHglsdesc); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 187: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(368); + ACCEPT_TOKEN(anon_sym_BSLASHGlsdesc); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 188: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_BSLASHGLSdesc); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 189: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(581); + ACCEPT_TOKEN(anon_sym_BSLASHglsuseri); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(192); + if (lookahead == 'v') ADVANCE(198); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 190: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(533); + ACCEPT_TOKEN(anon_sym_BSLASHGlsuseri); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(193); + if (lookahead == 'v') ADVANCE(199); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 191: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(269); + ACCEPT_TOKEN(anon_sym_BSLASHGLSuseri); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(194); + if (lookahead == 'v') ADVANCE(200); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 192: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(515); + ACCEPT_TOKEN(anon_sym_BSLASHglsuserii); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(195); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 193: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(276); + ACCEPT_TOKEN(anon_sym_BSLASHGlsuserii); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(196); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 194: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(443); + ACCEPT_TOKEN(anon_sym_BSLASHGLSuserii); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(197); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 195: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(511); + ACCEPT_TOKEN(anon_sym_BSLASHglsuseriii); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 196: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(177); + ACCEPT_TOKEN(anon_sym_BSLASHGlsuseriii); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 197: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'b') ADVANCE(516); + ACCEPT_TOKEN(anon_sym_BSLASHGLSuseriii); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 198: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(100); - if (lookahead == 'd') ADVANCE(227); - if (lookahead == 'u') ADVANCE(547); - if (lookahead == 'v') ADVANCE(428); + ACCEPT_TOKEN(anon_sym_BSLASHglsuseriv); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 199: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(345); + ACCEPT_TOKEN(anon_sym_BSLASHGlsuseriv); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 200: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(98); + ACCEPT_TOKEN(anon_sym_BSLASHGLSuseriv); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 201: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(579); + ACCEPT_TOKEN(anon_sym_BSLASHglsuserv); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(204); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 202: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(346); - if (lookahead == 't') ADVANCE(265); + ACCEPT_TOKEN(anon_sym_BSLASHGlsuserv); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(205); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 203: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(346); + ACCEPT_TOKEN(anon_sym_BSLASHGLSuserv); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(206); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 204: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(353); + ACCEPT_TOKEN(anon_sym_BSLASHglsuservi); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 205: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(365); + ACCEPT_TOKEN(anon_sym_BSLASHGlsuservi); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 206: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(367); - if (lookahead == 'p') ADVANCE(574); + ACCEPT_TOKEN(anon_sym_BSLASHGLSuservi); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 207: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(432); + ACCEPT_TOKEN(anon_sym_BSLASHnewacronym); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 208: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(502); + ACCEPT_TOKEN(anon_sym_BSLASHacrshort); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(669); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 209: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(521); + ACCEPT_TOKEN(anon_sym_BSLASHAcrshort); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(668); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 210: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(375); + ACCEPT_TOKEN(anon_sym_BSLASHACRshort); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(667); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 211: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(171); + ACCEPT_TOKEN(anon_sym_BSLASHacrshortpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 212: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(251); + ACCEPT_TOKEN(anon_sym_BSLASHAcrshortpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 213: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(450); - if (lookahead == 'r') ADVANCE(257); + ACCEPT_TOKEN(anon_sym_BSLASHACRshortpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 214: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(380); + ACCEPT_TOKEN(anon_sym_BSLASHacrlong); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(664); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 215: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(381); + ACCEPT_TOKEN(anon_sym_BSLASHAcrlong); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(659); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 216: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(510); + ACCEPT_TOKEN(anon_sym_BSLASHACRlong); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(657); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 217: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(347); - if (lookahead == 'r') ADVANCE(257); + ACCEPT_TOKEN(anon_sym_BSLASHacrlongpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 218: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(347); + ACCEPT_TOKEN(anon_sym_BSLASHAcrlongpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 219: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(382); - if (lookahead == 'f') ADVANCE(330); + ACCEPT_TOKEN(anon_sym_BSLASHACRlongpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 220: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(567); + ACCEPT_TOKEN(anon_sym_BSLASHacrfull); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(663); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 221: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(452); + ACCEPT_TOKEN(anon_sym_BSLASHAcrfull); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(658); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 222: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(348); - if (lookahead == 'f') ADVANCE(571); + ACCEPT_TOKEN(anon_sym_BSLASHACRfull); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(656); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 223: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(568); + ACCEPT_TOKEN(anon_sym_BSLASHacrfullpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 224: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'c') ADVANCE(569); + ACCEPT_TOKEN(anon_sym_BSLASHAcrfullpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 225: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'd') ADVANCE(53); + ACCEPT_TOKEN(anon_sym_BSLASHACRfullpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 226: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'd') ADVANCE(86); + ACCEPT_TOKEN(anon_sym_BSLASHacs); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(228); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 227: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'd') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_BSLASHAcs); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(229); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 228: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'd') ADVANCE(246); + ACCEPT_TOKEN(anon_sym_BSLASHacsp); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 229: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'd') ADVANCE(268); + ACCEPT_TOKEN(anon_sym_BSLASHAcsp); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 230: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'd') ADVANCE(252); + ACCEPT_TOKEN(anon_sym_BSLASHacl); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(232); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 231: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(205); + ACCEPT_TOKEN(anon_sym_BSLASHAcl); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(233); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 232: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(472); + ACCEPT_TOKEN(anon_sym_BSLASHaclp); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 233: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(590); - if (lookahead == 'v') ADVANCE(428); + ACCEPT_TOKEN(anon_sym_BSLASHAclp); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 234: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(305); - if (lookahead == 'i') ADVANCE(187); + ACCEPT_TOKEN(anon_sym_BSLASHacf); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(236); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 235: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(219); - if (lookahead == 'o') ADVANCE(201); + ACCEPT_TOKEN(anon_sym_BSLASHAcf); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(237); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 236: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(292); + ACCEPT_TOKEN(anon_sym_BSLASHacfp); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 237: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(294); + ACCEPT_TOKEN(anon_sym_BSLASHAcfp); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 238: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(457); + ACCEPT_TOKEN(anon_sym_BSLASHac); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(234); + if (lookahead == 'l') ADVANCE(230); + if (lookahead == 'p') ADVANCE(240); + if (lookahead == 'r') ADVANCE(553); + if (lookahead == 's') ADVANCE(226); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 239: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(56); + ACCEPT_TOKEN(anon_sym_BSLASHAc); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(235); + if (lookahead == 'l') ADVANCE(231); + if (lookahead == 'r') ADVANCE(552); + if (lookahead == 's') ADVANCE(227); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 240: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(59); + ACCEPT_TOKEN(anon_sym_BSLASHacp); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 241: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(131); + ACCEPT_TOKEN(anon_sym_BSLASHglsentrylong); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(675); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 242: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(62); + ACCEPT_TOKEN(anon_sym_BSLASHGlsentrylong); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(672); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 243: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(134); + ACCEPT_TOKEN(anon_sym_BSLASHglsentrylongpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 244: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(98); + ACCEPT_TOKEN(anon_sym_BSLASHGlsentrylongpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 245: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(136); + ACCEPT_TOKEN(anon_sym_BSLASHglsentryshort); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(678); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 246: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(65); + ACCEPT_TOKEN(anon_sym_BSLASHGlsentryshort); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(677); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 247: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(68); + ACCEPT_TOKEN(anon_sym_BSLASHglsentryshortpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 248: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(57); + ACCEPT_TOKEN(anon_sym_BSLASHGlsentryshortpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 249: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(84); + ACCEPT_TOKEN(anon_sym_BSLASHglsentryfullpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 250: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(63); + ACCEPT_TOKEN(anon_sym_BSLASHGlsentryfullpl); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 251: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(69); + ACCEPT_TOKEN(anon_sym_BSLASHnewtheorem); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 252: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(66); + ACCEPT_TOKEN(anon_sym_BSLASHdeclaretheorem); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 253: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(73); + ACCEPT_TOKEN(anon_sym_BSLASHcolor); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(787); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 254: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(484); - if (lookahead == 'o') ADVANCE(364); - if (lookahead == 'r') ADVANCE(257); + ACCEPT_TOKEN(anon_sym_BSLASHcolorbox); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 255: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(389); + ACCEPT_TOKEN(anon_sym_BSLASHtextcolor); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 256: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(588); + ACCEPT_TOKEN(anon_sym_BSLASHpagecolor); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 257: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(293); + ACCEPT_TOKEN(anon_sym_BSLASHdefinecolor); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(510); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 258: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(213); + ACCEPT_TOKEN(anon_sym_BSLASHdefinecolorset); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 259: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(58); + ACCEPT_TOKEN(anon_sym_BSLASHusepgflibrary); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 260: - ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(220); - if (lookahead == 'm') ADVANCE(148); - if (lookahead == 'u') ADVANCE(182); - if (lookahead == 'v') ADVANCE(428); + ACCEPT_TOKEN(anon_sym_BSLASHusetikzlibrary); + if (lookahead == '*') ADVANCE(261); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 261: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(415); - if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); END_STATE(); case 262: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(295); + if (lookahead == '(') ADVANCE(50); + if (lookahead == ')') ADVANCE(51); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == ']') ADVANCE(48); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(289); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(760); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(292); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(482); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 263: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(525); - if (lookahead == 'i') ADVANCE(522); + if (lookahead == '(') ADVANCE(50); + if (lookahead == ')') ADVANCE(51); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == ']') ADVANCE(48); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(289); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(292); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(482); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 264: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(525); + if (lookahead == '(') ADVANCE(50); + if (lookahead == ')') ADVANCE(51); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(289); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(760); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(292); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(482); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 265: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(203); + if (lookahead == '(') ADVANCE(50); + if (lookahead == ')') ADVANCE(51); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(289); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(292); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(482); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 266: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(487); + if (lookahead == '(') ADVANCE(50); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == ']') ADVANCE(48); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(289); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(760); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(292); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(482); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 267: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(296); + if (lookahead == '(') ADVANCE(50); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == ']') ADVANCE(48); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(289); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(292); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(482); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 268: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(303); + if (lookahead == '(') ADVANCE(50); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(289); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(760); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(292); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(482); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 269: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(356); + if (lookahead == '(') ADVANCE(50); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(289); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(292); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(482); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 270: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(531); + if (lookahead == '(') ADVANCE(50); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(289); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(296); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(482); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 271: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(221); + if (lookahead == '(') ADVANCE(50); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(290); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(296); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(482); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 272: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(476); + if (lookahead == '(') ADVANCE(50); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(290); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(296); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(751); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 273: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(216); + if (lookahead == '(') ADVANCE(50); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(290); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(296); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 274: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(393); + if (lookahead == '(') ADVANCE(50); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(290); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(296); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(754); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 275: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(477); + if (lookahead == '(') ADVANCE(50); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(290); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(752); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 276: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(359); + if (lookahead == '(') ADVANCE(50); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(290); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(753); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 277: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(454); + if (lookahead == '(') ADVANCE(50); + if (lookahead == 'A') ADVANCE(278); + if (lookahead == 'C') ADVANCE(592); + if (lookahead == 'D') ADVANCE(421); + if (lookahead == 'G') ADVANCE(282); + if (lookahead == 'P') ADVANCE(288); + if (lookahead == 'R') ADVANCE(422); + if (lookahead == 'S') ADVANCE(723); + if (lookahead == 'T') ADVANCE(423); + if (lookahead == 'V') ADVANCE(477); + if (lookahead == '[') ADVANCE(47); + if (lookahead == 'a') ADVANCE(360); + if (lookahead == 'b') ADVANCE(424); + if (lookahead == 'c') ADVANCE(290); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'f') ADVANCE(785); + if (lookahead == 'g') ADVANCE(680); + if (lookahead == 'i') ADVANCE(734); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'p') ADVANCE(299); + if (lookahead == 'r') ADVANCE(426); + if (lookahead == 's') ADVANCE(753); + if (lookahead == 't') ADVANCE(521); + if (lookahead == 'u') ADVANCE(936); + if (lookahead == 'v') ADVANCE(530); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); END_STATE(); case 278: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(544); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'C') ADVANCE(286); + if (lookahead == 'c') ADVANCE(239); + if (lookahead == 'u') ADVANCE(974); + if (lookahead == 'v') ADVANCE(832); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 279: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(541); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'C') ADVANCE(908); + if (lookahead == 'c') ADVANCE(909); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 280: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(591); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'C') ADVANCE(831); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 281: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(421); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'I') ADVANCE(771); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 282: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(157); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'L') ADVANCE(287); + if (lookahead == 'l') ADVANCE(931); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 283: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(592); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'M') ADVANCE(313); + if (lookahead == 'R') ADVANCE(796); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 284: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(506); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'O') ADVANCE(856); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 285: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(488); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'P') ADVANCE(341); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 286: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(593); - if (lookahead == 'v') ADVANCE(428); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'R') ADVANCE(545); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 287: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(423); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'S') ADVANCE(163); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 288: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(223); - if (lookahead == 'u') ADVANCE(190); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(886); + if (lookahead == 'n') ADVANCE(788); + if (lookahead == 'v') ADVANCE(833); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 289: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(425); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(848); + if (lookahead == 'h') ADVANCE(320); + if (lookahead == 'i') ADVANCE(982); + if (lookahead == 'o') ADVANCE(683); + if (lookahead == 'r') ADVANCE(484); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 290: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(224); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(848); + if (lookahead == 'i') ADVANCE(982); + if (lookahead == 'o') ADVANCE(683); + if (lookahead == 'r') ADVANCE(484); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 291: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'e') ADVANCE(517); - if (lookahead == 'o') ADVANCE(364); - if (lookahead == 'r') ADVANCE(257); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(737); + if (lookahead == 'e') ADVANCE(1055); + if (lookahead == 'o') ADVANCE(366); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 292: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(80); - if (lookahead == 'n') ADVANCE(256); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(564); + if (lookahead == 'n') ADVANCE(843); + if (lookahead == 'v') ADVANCE(838); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 293: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(80); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(563); + if (lookahead == 'e') ADVANCE(784); + if (lookahead == 't') ADVANCE(22); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 294: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(81); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(563); + if (lookahead == 'e') ADVANCE(784); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 295: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(82); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(352); + if (lookahead == 'c') ADVANCE(762); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 296: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(79); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(565); + if (lookahead == 'n') ADVANCE(843); + if (lookahead == 'v') ADVANCE(838); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 297: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(575); - if (lookahead == 'l') ADVANCE(434); - if (lookahead == 's') ADVANCE(324); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(929); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 298: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(338); - if (lookahead == 'i') ADVANCE(404); - if (lookahead == 'p') ADVANCE(172); - if (lookahead == 's') ADVANCE(288); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(744); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 299: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(338); - if (lookahead == 'i') ADVANCE(404); - if (lookahead == 'p') ADVANCE(172); - if (lookahead == 's') ADVANCE(573); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(566); + if (lookahead == 'n') ADVANCE(843); + if (lookahead == 'v') ADVANCE(838); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 300: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(338); - if (lookahead == 'i') ADVANCE(404); - if (lookahead == 'p') ADVANCE(172); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(847); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 301: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(338); - if (lookahead == 'i') ADVANCE(404); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(370); + if (lookahead == 'c') ADVANCE(790); + if (lookahead == 'g') ADVANCE(689); + if (lookahead == 'l') ADVANCE(321); + if (lookahead == 't') ADVANCE(581); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 302: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(372); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(849); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 303: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(503); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(367); + if (lookahead == 'g') ADVANCE(550); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 304: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'f') ADVANCE(582); - if (lookahead == 'l') ADVANCE(434); - if (lookahead == 's') ADVANCE(324); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(770); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 305: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'g') ADVANCE(328); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(867); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 306: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'g') ADVANCE(72); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(764); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 307: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'g') ADVANCE(103); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(878); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 308: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'g') ADVANCE(495); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(767); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 309: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'g') ADVANCE(258); - if (lookahead == 'r') ADVANCE(144); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(872); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 310: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'g') ADVANCE(258); - if (lookahead == 'r') ADVANCE(145); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(660); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 311: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'g') ADVANCE(258); - if (lookahead == 'r') ADVANCE(289); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(769); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 312: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'g') ADVANCE(249); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(661); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 313: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'g') ADVANCE(285); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(976); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 314: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'g') ADVANCE(250); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(880); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 315: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'g') ADVANCE(504); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(882); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 316: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'g') ADVANCE(514); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(665); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 317: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'h') ADVANCE(32); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(670); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 318: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'h') ADVANCE(135); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(673); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 319: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'h') ADVANCE(34); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(676); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 320: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'h') ADVANCE(594); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(858); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 321: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'h') ADVANCE(340); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(354); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 322: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'h') ADVANCE(442); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(978); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 323: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'h') ADVANCE(277); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(851); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 324: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'h') ADVANCE(451); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(940); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 325: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(350); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(857); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 326: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(95); - if (lookahead == 'v') ADVANCE(94); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(887); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 327: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(551); - if (lookahead == 'r') ADVANCE(237); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(777); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 328: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(405); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(986); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 329: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(195); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(904); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 330: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(424); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(739); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 331: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(490); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(980); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 332: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(412); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(852); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 333: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(391); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(569); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 334: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(192); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(740); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 335: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(403); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(570); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 336: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(455); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(907); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 337: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(437); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(741); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 338: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(378); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(571); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 339: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(439); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(997); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 340: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(209); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(573); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 341: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(419); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(411); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 342: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(444); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'a') ADVANCE(930); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 343: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(445); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(546); + if (lookahead == 'p') ADVANCE(487); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 344: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(508); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(548); + if (lookahead == 'p') ADVANCE(487); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 345: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(558); - if (lookahead == 'o') ADVANCE(374); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(549); + if (lookahead == 'p') ADVANCE(487); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 346: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(558); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(547); + if (lookahead == 'p') ADVANCE(487); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 347: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(560); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(594); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 348: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(561); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(685); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 349: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'i') ADVANCE(197); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(322); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 350: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'k') ADVANCE(602); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(1046); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 351: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'k') ADVANCE(98); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(952); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 352: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'k') ADVANCE(527); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(495); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 353: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'k') ADVANCE(176); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(923); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 354: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(104); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(508); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 355: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(97); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(813); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 356: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(77); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(815); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 357: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(603); - if (lookahead == 'u') ADVANCE(563); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(910); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 358: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(98); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(331); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 359: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(85); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'b') ADVANCE(925); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 360: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(364); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(238); + if (lookahead == 'd') ADVANCE(417); + if (lookahead == 'u') ADVANCE(975); + if (lookahead == 'v') ADVANCE(836); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 361: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(103); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(628); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 362: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(58); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(188); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 363: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(519); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(187); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 364: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(203); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(186); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 365: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(174); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(1041); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 366: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(431); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(611); + if (lookahead == 't') ADVANCE(526); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 367: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(570); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(645); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 368: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(336); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(682); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 369: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(466); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(684); + if (lookahead == 'p') ADVANCE(1035); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 370: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(584); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(893); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 371: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(435); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(934); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 372: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(334); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(325); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 373: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(361); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(693); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 374: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(441); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(474); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 375: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(170); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(818); + if (lookahead == 'r') ADVANCE(490); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 376: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(369); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(700); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 377: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(446); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(703); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 378: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(247); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(911); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 379: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(242); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(612); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 380: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(580); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(704); + if (lookahead == 'f') ADVANCE(595); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 381: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(583); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(1021); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 382: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(179); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(821); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 383: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'l') ADVANCE(349); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(613); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 384: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(148); - if (lookahead == 'u') ADVANCE(182); - if (lookahead == 'v') ADVANCE(428); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(1022); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 385: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(148); - if (lookahead == 'u') ADVANCE(183); - if (lookahead == 'v') ADVANCE(428); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(614); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 386: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(148); - if (lookahead == 'u') ADVANCE(184); - if (lookahead == 'v') ADVANCE(428); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(1023); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 387: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(148); - if (lookahead == 'u') ADVANCE(185); - if (lookahead == 'v') ADVANCE(428); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(615); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 388: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(148); - if (lookahead == 'v') ADVANCE(428); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(616); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 389: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(35); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(617); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 390: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(76); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(618); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 391: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(132); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(619); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 392: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(99); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(620); + if (lookahead == 'r') ADVANCE(489); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 393: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(105); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(621); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 394: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(462); - if (lookahead == 'n') ADVANCE(206); - if (lookahead == 't') ADVANCE(255); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(622); + if (lookahead == 'f') ADVANCE(1052); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 395: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(462); - if (lookahead == 'n') ADVANCE(206); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(623); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 396: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(401); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(624); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 397: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(194); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(625); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 398: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(241); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(626); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 399: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(281); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(627); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 400: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(244); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(629); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 401: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(158); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(630); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 402: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(273); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(631); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 403: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(341); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(632); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 404: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'm') ADVANCE(471); - if (lookahead == 'n') ADVANCE(214); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(633); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 405: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(52); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(634); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 406: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(54); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(635); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 407: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(26); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(636); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 408: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(28); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(637); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 409: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(30); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(638); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 410: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(430); - if (lookahead == 'o') ADVANCE(433); - if (lookahead == 't') ADVANCE(585); - if (lookahead == 'u') ADVANCE(360); - if (lookahead == 'v') ADVANCE(428); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(639); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 411: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(225); - if (lookahead == 'q') ADVANCE(496); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(646); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 412: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(351); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'c') ADVANCE(829); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 413: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(149); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'd') ADVANCE(53); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 414: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(307); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'd') ADVANCE(154); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 415: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(203); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'd') ADVANCE(155); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 416: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(226); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'd') ADVANCE(156); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 417: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(312); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'd') ADVANCE(347); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 418: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(352); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'd') ADVANCE(439); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 419: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(470); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'd') ADVANCE(503); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 420: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(555); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'd') ADVANCE(475); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 421: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(566); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(368); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 422: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(599); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(862); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 423: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(557); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(1058); + if (lookahead == 'v') ADVANCE(835); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 424: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(271); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(556); + if (lookahead == 'i') ADVANCE(348); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 425: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(218); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(380); + if (lookahead == 'o') ADVANCE(365); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 426: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'n') ADVANCE(215); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(532); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 427: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(217); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(533); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 428: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(364); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(844); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 429: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(589); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(57); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 430: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(562); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(55); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 431: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(475); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(279); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 432: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(396); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(58); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 433: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(542); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(283); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 434: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(414); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(183); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 435: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(524); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(182); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 436: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(189); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(285); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 437: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(406); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(95); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 438: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(390); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(181); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 439: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(407); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(113); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 440: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(422); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(116); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 441: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(479); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(94); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 442: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(474); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(91); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 443: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(358); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(105); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 444: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(408); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(97); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 445: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(409); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(101); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 446: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(480); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(86); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 447: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(481); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(103); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 448: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(494); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(90); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 449: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(577); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(104); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 450: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(374); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(71); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 451: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(500); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(82); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 452: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(377); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(74); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 453: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(505); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(98); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 454: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(512); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(106); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 455: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(315); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(96); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 456: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'o') ADVANCE(218); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(100); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 457: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(154); - if (lookahead == 't') ADVANCE(325); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(85); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 458: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(98); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(102); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 459: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(317); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(150); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 460: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(564); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(81); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 461: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(320); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(108); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 462: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(448); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(88); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 463: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(321); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(67); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 464: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(319); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(149); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 465: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(167); - if (lookahead == 'r') ADVANCE(257); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(109); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 466: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(354); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(99); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 467: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(284); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(79); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 468: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(253); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(107); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 469: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(556); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(87); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 470: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(578); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(89); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 471: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p') ADVANCE(453); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(110); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 472: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'q') ADVANCE(572); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(83); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 473: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'q') ADVANCE(496); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(111); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 474: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(62); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(117); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 475: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(106); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(114); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 476: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(326); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(121); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 477: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(24); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(877); + if (lookahead == 'o') ADVANCE(681); + if (lookahead == 'r') ADVANCE(480); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 478: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(61); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(724); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 479: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(107); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(1056); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 480: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(108); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(534); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 481: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(89); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(375); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 482: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(601); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(381); + if (lookahead == 'm') ADVANCE(342); + if (lookahead == 'u') ADVANCE(343); + if (lookahead == 'v') ADVANCE(839); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 483: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(58); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(783); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 484: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(188); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(535); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 485: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(600); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(938); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 486: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(548); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(536); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 487: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(203); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(928); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 488: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(257); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(537); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 489: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(595); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(538); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 490: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(528); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(539); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 491: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(596); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(540); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 492: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(597); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(948); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 493: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(261); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(865); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 494: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(535); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(541); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 495: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(151); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(650); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 496: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(262); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(382); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 497: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(181); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(728); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 498: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(159); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(542); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 499: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(362); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(876); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 500: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(543); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(543); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 501: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(212); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(378); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 502: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(440); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(866); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 503: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(438); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(551); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 504: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(153); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(879); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 505: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(538); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(731); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 506: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(173); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(544); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 507: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(243); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(826); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 508: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(245); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(655); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 509: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(278); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(1025); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 510: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(267); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(972); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 511: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(270); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(1059); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 512: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(274); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(775); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 513: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(169); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(939); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 514: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(178); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(305); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 515: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(163); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(1060); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 516: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(164); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(941); + if (lookahead == 'i') ADVANCE(935); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 517: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'r') ADVANCE(196); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(1061); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 518: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(92); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(1063); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 519: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(91); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(913); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 520: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(64); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(898); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 521: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(71); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(1064); + if (lookahead == 'v') ADVANCE(840); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 522: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(458); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(778); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 523: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(238); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(827); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 524: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(532); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(384); + if (lookahead == 'u') ADVANCE(351); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 525: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(200); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(386); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 526: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(520); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(397); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 527: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(211); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(402); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 528: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(537); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(404); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 529: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(272); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(407); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 530: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(539); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(927); + if (lookahead == 'o') ADVANCE(707); + if (lookahead == 'r') ADVANCE(486); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 531: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(449); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'e') ADVANCE(784); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 532: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(160); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(131); + if (lookahead == 'n') ADVANCE(479); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 533: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 's') ADVANCE(290); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(137); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 534: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(67); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(133); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 535: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(76); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(136); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 536: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(98); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(132); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 537: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(96); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(148); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 538: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(75); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(134); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 539: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(130); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(135); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 540: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(74); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(141); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 541: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(109); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(140); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 542: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(222); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(146); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 543: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(103); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(142); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 544: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(323); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(147); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 545: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(58); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(1037); + if (lookahead == 'l') ADVANCE(792); + if (lookahead == 's') ADVANCE(582); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 546: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(456); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'i') ADVANCE(750); + if (lookahead == 'p') ADVANCE(326); + if (lookahead == 's') ADVANCE(524); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 547: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(427); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'i') ADVANCE(750); + if (lookahead == 'p') ADVANCE(326); + if (lookahead == 's') ADVANCE(1034); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 548: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(203); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'i') ADVANCE(750); + if (lookahead == 'p') ADVANCE(326); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 549: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(318); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(603); + if (lookahead == 'i') ADVANCE(750); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 550: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(199); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(688); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 551: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(239); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(905); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 552: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(333); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(1043); + if (lookahead == 'l') ADVANCE(794); + if (lookahead == 's') ADVANCE(584); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 553: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(240); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(1045); + if (lookahead == 'l') ADVANCE(795); + if (lookahead == 's') ADVANCE(585); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 554: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(335); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(1047); + if (lookahead == 'l') ADVANCE(809); + if (lookahead == 's') ADVANCE(586); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 555: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(482); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'f') ADVANCE(1048); + if (lookahead == 'l') ADVANCE(810); + if (lookahead == 's') ADVANCE(587); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 556: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(275); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(593); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 557: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(492); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(216); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 558: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(259); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(215); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 559: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(447); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(214); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 560: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(242); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(120); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 561: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(248); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(242); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 562: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(265); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(241); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 563: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(322); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(885); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 564: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(337); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(481); + if (lookahead == 'r') ADVANCE(293); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 565: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(379); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(481); + if (lookahead == 'r') ADVANCE(294); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 566: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(210); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(481); + if (lookahead == 'r') ADVANCE(531); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 567: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(339); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(459); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 568: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(342); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(464); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 569: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 't') ADVANCE(343); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(519); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 570: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(228); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(471); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 571: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(360); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(473); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 572: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(344); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(894); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 573: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(190); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'g') ADVANCE(920); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 574: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(534); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(32); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 575: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(373); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(284); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 576: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(563); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(34); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 577: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(501); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(1065); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 578: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(540); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(605); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 579: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(399); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(806); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 580: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(229); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(808); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 581: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(530); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(507); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 582: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(376); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(819); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 583: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(230); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(523); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 584: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'u') ADVANCE(498); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(820); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 585: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'v') ADVANCE(428); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(822); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 586: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'v') ADVANCE(306); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(824); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 587: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'w') ADVANCE(152); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'h') ADVANCE(825); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 588: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'w') ADVANCE(207); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(642); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 589: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'x') ADVANCE(107); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(191); + if (lookahead == 'v') ADVANCE(203); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 590: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'x') ADVANCE(548); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(190); + if (lookahead == 'v') ADVANCE(202); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 591: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'x') ADVANCE(536); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(189); + if (lookahead == 'v') ADVANCE(201); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 592: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'x') ADVANCE(545); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(979); + if (lookahead == 'r') ADVANCE(427); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 593: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'x') ADVANCE(550); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(755); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 594: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'y') ADVANCE(70); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(357); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 595: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'y') ADVANCE(110); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(779); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 596: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'y') ADVANCE(111); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(881); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 597: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'y') ADVANCE(90); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(725); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 598: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'y') ADVANCE(397); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(353); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 599: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'y') ADVANCE(392); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(745); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 600: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'y') ADVANCE(287); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(761); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 601: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'y') ADVANCE(304); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(828); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 602: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'z') ADVANCE(383); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(798); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 603: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); - if (lookahead == 'p' || - lookahead == 't') ADVANCE(58); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(698); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 604: ACCEPT_TOKEN(sym_generic_command_name); - if (lookahead == '*') ADVANCE(112); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(799); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); case 605: ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(371); if (('@' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(604); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(112); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - ACCEPT_TOKEN(ts_builtin_sym_end); + case 606: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(807); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); END_STATE(); - default: - return false; - } -} - -static TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 15}, - [2] = {.lex_state = 16}, - [3] = {.lex_state = 17}, - [4] = {.lex_state = 16}, - [5] = {.lex_state = 17}, - [6] = {.lex_state = 15}, - [7] = {.lex_state = 16}, - [8] = {.lex_state = 16}, - [9] = {.lex_state = 16}, - [10] = {.lex_state = 16}, - [11] = {.lex_state = 16}, - [12] = {.lex_state = 17}, - [13] = {.lex_state = 17}, - [14] = {.lex_state = 16}, - [15] = {.lex_state = 17}, - [16] = {.lex_state = 16}, - [17] = {.lex_state = 16}, - [18] = {.lex_state = 17}, - [19] = {.lex_state = 16}, - [20] = {.lex_state = 17}, - [21] = {.lex_state = 17}, - [22] = {.lex_state = 16}, - [23] = {.lex_state = 17}, - [24] = {.lex_state = 17}, - [25] = {.lex_state = 16}, - [26] = {.lex_state = 16}, - [27] = {.lex_state = 17}, - [28] = {.lex_state = 16}, - [29] = {.lex_state = 17}, - [30] = {.lex_state = 16}, - [31] = {.lex_state = 17}, - [32] = {.lex_state = 17}, - [33] = {.lex_state = 16}, - [34] = {.lex_state = 17}, - [35] = {.lex_state = 16}, - [36] = {.lex_state = 17}, - [37] = {.lex_state = 16}, - [38] = {.lex_state = 17}, - [39] = {.lex_state = 17}, - [40] = {.lex_state = 17}, - [41] = {.lex_state = 17}, - [42] = {.lex_state = 16}, - [43] = {.lex_state = 15}, - [44] = {.lex_state = 2}, - [45] = {.lex_state = 3}, - [46] = {.lex_state = 15}, - [47] = {.lex_state = 4}, - [48] = {.lex_state = 3}, - [49] = {.lex_state = 4}, - [50] = {.lex_state = 1}, - [51] = {.lex_state = 1}, - [52] = {.lex_state = 2}, - [53] = {.lex_state = 15}, - [54] = {.lex_state = 1}, - [55] = {.lex_state = 15}, - [56] = {.lex_state = 1}, - [57] = {.lex_state = 2}, - [58] = {.lex_state = 15}, - [59] = {.lex_state = 2}, - [60] = {.lex_state = 15}, - [61] = {.lex_state = 15}, - [62] = {.lex_state = 15}, - [63] = {.lex_state = 2}, - [64] = {.lex_state = 15}, - [65] = {.lex_state = 15}, - [66] = {.lex_state = 2}, - [67] = {.lex_state = 15}, - [68] = {.lex_state = 15}, - [69] = {.lex_state = 2}, - [70] = {.lex_state = 15}, - [71] = {.lex_state = 15}, - [72] = {.lex_state = 2}, - [73] = {.lex_state = 2}, - [74] = {.lex_state = 15}, - [75] = {.lex_state = 15}, - [76] = {.lex_state = 2}, - [77] = {.lex_state = 15}, - [78] = {.lex_state = 2}, - [79] = {.lex_state = 15}, - [80] = {.lex_state = 15}, - [81] = {.lex_state = 15}, - [82] = {.lex_state = 15}, - [83] = {.lex_state = 2}, - [84] = {.lex_state = 2}, - [85] = {.lex_state = 15}, - [86] = {.lex_state = 2}, - [87] = {.lex_state = 15}, - [88] = {.lex_state = 15}, - [89] = {.lex_state = 15}, - [90] = {.lex_state = 2}, - [91] = {.lex_state = 2}, - [92] = {.lex_state = 15}, - [93] = {.lex_state = 15}, - [94] = {.lex_state = 2}, - [95] = {.lex_state = 15}, - [96] = {.lex_state = 15}, - [97] = {.lex_state = 15}, - [98] = {.lex_state = 15}, - [99] = {.lex_state = 2}, - [100] = {.lex_state = 2}, - [101] = {.lex_state = 15}, - [102] = {.lex_state = 15}, - [103] = {.lex_state = 15}, - [104] = {.lex_state = 15}, - [105] = {.lex_state = 2}, - [106] = {.lex_state = 15}, - [107] = {.lex_state = 15}, - [108] = {.lex_state = 2}, - [109] = {.lex_state = 2}, - [110] = {.lex_state = 15}, - [111] = {.lex_state = 15}, - [112] = {.lex_state = 2}, - [113] = {.lex_state = 2}, - [114] = {.lex_state = 17}, - [115] = {.lex_state = 16}, - [116] = {.lex_state = 15}, - [117] = {.lex_state = 16}, - [118] = {.lex_state = 15}, - [119] = {.lex_state = 15}, - [120] = {.lex_state = 16}, - [121] = {.lex_state = 15}, - [122] = {.lex_state = 15}, - [123] = {.lex_state = 16}, - [124] = {.lex_state = 16}, - [125] = {.lex_state = 15}, - [126] = {.lex_state = 15}, - [127] = {.lex_state = 16}, - [128] = {.lex_state = 15}, - [129] = {.lex_state = 15}, - [130] = {.lex_state = 15}, - [131] = {.lex_state = 15}, - [132] = {.lex_state = 15}, - [133] = {.lex_state = 17}, - [134] = {.lex_state = 16}, - [135] = {.lex_state = 15}, - [136] = {.lex_state = 16}, - [137] = {.lex_state = 17}, - [138] = {.lex_state = 15}, - [139] = {.lex_state = 17}, - [140] = {.lex_state = 15}, - [141] = {.lex_state = 17}, - [142] = {.lex_state = 17}, - [143] = {.lex_state = 16}, - [144] = {.lex_state = 15}, - [145] = {.lex_state = 17}, - [146] = {.lex_state = 15}, - [147] = {.lex_state = 16}, - [148] = {.lex_state = 17}, - [149] = {.lex_state = 16}, - [150] = {.lex_state = 15}, - [151] = {.lex_state = 15}, - [152] = {.lex_state = 15}, - [153] = {.lex_state = 15}, - [154] = {.lex_state = 15}, - [155] = {.lex_state = 15}, - [156] = {.lex_state = 15}, - [157] = {.lex_state = 2}, - [158] = {.lex_state = 16}, - [159] = {.lex_state = 15}, - [160] = {.lex_state = 17}, - [161] = {.lex_state = 15}, - [162] = {.lex_state = 17}, - [163] = {.lex_state = 15}, - [164] = {.lex_state = 16}, - [165] = {.lex_state = 16}, - [166] = {.lex_state = 15}, - [167] = {.lex_state = 17}, - [168] = {.lex_state = 15}, - [169] = {.lex_state = 15}, - [170] = {.lex_state = 16}, - [171] = {.lex_state = 17}, - [172] = {.lex_state = 15}, - [173] = {.lex_state = 16}, - [174] = {.lex_state = 15}, - [175] = {.lex_state = 16}, - [176] = {.lex_state = 17}, - [177] = {.lex_state = 15}, - [178] = {.lex_state = 15}, - [179] = {.lex_state = 15}, - [180] = {.lex_state = 15}, - [181] = {.lex_state = 17}, - [182] = {.lex_state = 15}, - [183] = {.lex_state = 15}, - [184] = {.lex_state = 17}, - [185] = {.lex_state = 16}, - [186] = {.lex_state = 15}, - [187] = {.lex_state = 15}, - [188] = {.lex_state = 15}, - [189] = {.lex_state = 16}, - [190] = {.lex_state = 15}, - [191] = {.lex_state = 17}, - [192] = {.lex_state = 16}, - [193] = {.lex_state = 15}, - [194] = {.lex_state = 17}, - [195] = {.lex_state = 15}, - [196] = {.lex_state = 17}, - [197] = {.lex_state = 15}, - [198] = {.lex_state = 15}, - [199] = {.lex_state = 15}, - [200] = {.lex_state = 15}, - [201] = {.lex_state = 15}, - [202] = {.lex_state = 15}, - [203] = {.lex_state = 16}, - [204] = {.lex_state = 17}, - [205] = {.lex_state = 16}, - [206] = {.lex_state = 15}, - [207] = {.lex_state = 15}, - [208] = {.lex_state = 17}, - [209] = {.lex_state = 15}, - [210] = {.lex_state = 15}, - [211] = {.lex_state = 17}, - [212] = {.lex_state = 15}, - [213] = {.lex_state = 15}, - [214] = {.lex_state = 16}, - [215] = {.lex_state = 17}, - [216] = {.lex_state = 15}, - [217] = {.lex_state = 15}, - [218] = {.lex_state = 15}, - [219] = {.lex_state = 15}, - [220] = {.lex_state = 15}, - [221] = {.lex_state = 17}, - [222] = {.lex_state = 16}, - [223] = {.lex_state = 15}, - [224] = {.lex_state = 17}, - [225] = {.lex_state = 15}, - [226] = {.lex_state = 15}, - [227] = {.lex_state = 15}, - [228] = {.lex_state = 15}, - [229] = {.lex_state = 15}, - [230] = {.lex_state = 15}, - [231] = {.lex_state = 17}, - [232] = {.lex_state = 16}, - [233] = {.lex_state = 17}, - [234] = {.lex_state = 15}, - [235] = {.lex_state = 16}, - [236] = {.lex_state = 17}, - [237] = {.lex_state = 15}, - [238] = {.lex_state = 15}, - [239] = {.lex_state = 15}, - [240] = {.lex_state = 16}, - [241] = {.lex_state = 17}, - [242] = {.lex_state = 15}, - [243] = {.lex_state = 15}, - [244] = {.lex_state = 16}, - [245] = {.lex_state = 15}, - [246] = {.lex_state = 15}, - [247] = {.lex_state = 17}, - [248] = {.lex_state = 16}, - [249] = {.lex_state = 15}, - [250] = {.lex_state = 15}, - [251] = {.lex_state = 15}, - [252] = {.lex_state = 15}, - [253] = {.lex_state = 16}, - [254] = {.lex_state = 16}, - [255] = {.lex_state = 15}, - [256] = {.lex_state = 15}, - [257] = {.lex_state = 2}, - [258] = {.lex_state = 11}, - [259] = {.lex_state = 11}, - [260] = {.lex_state = 2}, - [261] = {.lex_state = 11}, - [262] = {.lex_state = 2}, - [263] = {.lex_state = 16}, - [264] = {.lex_state = 17}, - [265] = {.lex_state = 17}, - [266] = {.lex_state = 15}, - [267] = {.lex_state = 17}, - [268] = {.lex_state = 15}, - [269] = {.lex_state = 11}, - [270] = {.lex_state = 16}, - [271] = {.lex_state = 17}, - [272] = {.lex_state = 16}, - [273] = {.lex_state = 2}, - [274] = {.lex_state = 11}, - [275] = {.lex_state = 15}, - [276] = {.lex_state = 11}, - [277] = {.lex_state = 2}, - [278] = {.lex_state = 17}, - [279] = {.lex_state = 2}, - [280] = {.lex_state = 15}, - [281] = {.lex_state = 16}, - [282] = {.lex_state = 17}, - [283] = {.lex_state = 17}, - [284] = {.lex_state = 11}, - [285] = {.lex_state = 2}, - [286] = {.lex_state = 11}, - [287] = {.lex_state = 17}, - [288] = {.lex_state = 15}, - [289] = {.lex_state = 5}, - [290] = {.lex_state = 15}, - [291] = {.lex_state = 15}, - [292] = {.lex_state = 11}, - [293] = {.lex_state = 5}, - [294] = {.lex_state = 2}, - [295] = {.lex_state = 16}, - [296] = {.lex_state = 5}, - [297] = {.lex_state = 17}, - [298] = {.lex_state = 16}, - [299] = {.lex_state = 2}, - [300] = {.lex_state = 16}, - [301] = {.lex_state = 2}, - [302] = {.lex_state = 2}, - [303] = {.lex_state = 15}, - [304] = {.lex_state = 5}, - [305] = {.lex_state = 2}, - [306] = {.lex_state = 17}, - [307] = {.lex_state = 17}, - [308] = {.lex_state = 15}, - [309] = {.lex_state = 16}, - [310] = {.lex_state = 11}, - [311] = {.lex_state = 15}, - [312] = {.lex_state = 11}, - [313] = {.lex_state = 11}, - [314] = {.lex_state = 5}, - [315] = {.lex_state = 5}, - [316] = {.lex_state = 16}, - [317] = {.lex_state = 17}, - [318] = {.lex_state = 16}, - [319] = {.lex_state = 15}, - [320] = {.lex_state = 15}, - [321] = {.lex_state = 16}, - [322] = {.lex_state = 17}, - [323] = {.lex_state = 17}, - [324] = {.lex_state = 6}, - [325] = {.lex_state = 5}, - [326] = {.lex_state = 11}, - [327] = {.lex_state = 5}, - [328] = {.lex_state = 15}, - [329] = {.lex_state = 15}, - [330] = {.lex_state = 16}, - [331] = {.lex_state = 15}, - [332] = {.lex_state = 16}, - [333] = {.lex_state = 6}, - [334] = {.lex_state = 2}, - [335] = {.lex_state = 2}, - [336] = {.lex_state = 17}, - [337] = {.lex_state = 6}, - [338] = {.lex_state = 5}, - [339] = {.lex_state = 11}, - [340] = {.lex_state = 2}, - [341] = {.lex_state = 11}, - [342] = {.lex_state = 16}, - [343] = {.lex_state = 11}, - [344] = {.lex_state = 5}, - [345] = {.lex_state = 6}, - [346] = {.lex_state = 2}, - [347] = {.lex_state = 11}, - [348] = {.lex_state = 6}, - [349] = {.lex_state = 2}, - [350] = {.lex_state = 16}, - [351] = {.lex_state = 11}, - [352] = {.lex_state = 5}, - [353] = {.lex_state = 6}, - [354] = {.lex_state = 5}, - [355] = {.lex_state = 2}, - [356] = {.lex_state = 17}, - [357] = {.lex_state = 16}, - [358] = {.lex_state = 17}, - [359] = {.lex_state = 17}, - [360] = {.lex_state = 6}, - [361] = {.lex_state = 5}, - [362] = {.lex_state = 17}, - [363] = {.lex_state = 16}, - [364] = {.lex_state = 16}, - [365] = {.lex_state = 12}, - [366] = {.lex_state = 17}, - [367] = {.lex_state = 11}, - [368] = {.lex_state = 5}, - [369] = {.lex_state = 12}, - [370] = {.lex_state = 2}, - [371] = {.lex_state = 16}, - [372] = {.lex_state = 17}, - [373] = {.lex_state = 2}, - [374] = {.lex_state = 5}, - [375] = {.lex_state = 6}, - [376] = {.lex_state = 2}, - [377] = {.lex_state = 6}, - [378] = {.lex_state = 12}, - [379] = {.lex_state = 11}, - [380] = {.lex_state = 11}, - [381] = {.lex_state = 17}, - [382] = {.lex_state = 2}, - [383] = {.lex_state = 12}, - [384] = {.lex_state = 11}, - [385] = {.lex_state = 16}, - [386] = {.lex_state = 16}, - [387] = {.lex_state = 6}, - [388] = {.lex_state = 11}, - [389] = {.lex_state = 11}, - [390] = {.lex_state = 11}, - [391] = {.lex_state = 17}, - [392] = {.lex_state = 12}, - [393] = {.lex_state = 6}, - [394] = {.lex_state = 6}, - [395] = {.lex_state = 12}, - [396] = {.lex_state = 16}, - [397] = {.lex_state = 16}, - [398] = {.lex_state = 2}, - [399] = {.lex_state = 17}, - [400] = {.lex_state = 17}, - [401] = {.lex_state = 11}, - [402] = {.lex_state = 5}, - [403] = {.lex_state = 2}, - [404] = {.lex_state = 17}, - [405] = {.lex_state = 16}, - [406] = {.lex_state = 2}, - [407] = {.lex_state = 2}, - [408] = {.lex_state = 5}, - [409] = {.lex_state = 5}, - [410] = {.lex_state = 5}, - [411] = {.lex_state = 12}, - [412] = {.lex_state = 5}, - [413] = {.lex_state = 7}, - [414] = {.lex_state = 6}, - [415] = {.lex_state = 12}, - [416] = {.lex_state = 5}, - [417] = {.lex_state = 7}, - [418] = {.lex_state = 6}, - [419] = {.lex_state = 12}, - [420] = {.lex_state = 6}, - [421] = {.lex_state = 5}, - [422] = {.lex_state = 5}, - [423] = {.lex_state = 7}, - [424] = {.lex_state = 6}, - [425] = {.lex_state = 12}, - [426] = {.lex_state = 7}, - [427] = {.lex_state = 12}, - [428] = {.lex_state = 6}, - [429] = {.lex_state = 6}, - [430] = {.lex_state = 12}, - [431] = {.lex_state = 6}, - [432] = {.lex_state = 6}, - [433] = {.lex_state = 7}, - [434] = {.lex_state = 7}, - [435] = {.lex_state = 8}, - [436] = {.lex_state = 8}, - [437] = {.lex_state = 8}, - [438] = {.lex_state = 7}, - [439] = {.lex_state = 7}, - [440] = {.lex_state = 12}, - [441] = {.lex_state = 12}, - [442] = {.lex_state = 12}, - [443] = {.lex_state = 12}, - [444] = {.lex_state = 7}, - [445] = {.lex_state = 12}, - [446] = {.lex_state = 8}, - [447] = {.lex_state = 8}, - [448] = {.lex_state = 7}, - [449] = {.lex_state = 7}, - [450] = {.lex_state = 7}, - [451] = {.lex_state = 7}, - [452] = {.lex_state = 7}, - [453] = {.lex_state = 8}, - [454] = {.lex_state = 8}, - [455] = {.lex_state = 8}, - [456] = {.lex_state = 9}, - [457] = {.lex_state = 8}, - [458] = {.lex_state = 8}, - [459] = {.lex_state = 8}, - [460] = {.lex_state = 9}, - [461] = {.lex_state = 9}, - [462] = {.lex_state = 9}, - [463] = {.lex_state = 9}, - [464] = {.lex_state = 9}, - [465] = {.lex_state = 9}, - [466] = {.lex_state = 9}, - [467] = {.lex_state = 10}, - [468] = {.lex_state = 10}, - [469] = {.lex_state = 10}, - [470] = {.lex_state = 10}, - [471] = {.lex_state = 10}, - [472] = {.lex_state = 15}, - [473] = {.lex_state = 15}, - [474] = {.lex_state = 15}, - [475] = {.lex_state = 15}, - [476] = {.lex_state = 15}, - [477] = {.lex_state = 15}, - [478] = {.lex_state = 11}, - [479] = {.lex_state = 16}, - [480] = {.lex_state = 17}, - [481] = {.lex_state = 15}, - [482] = {.lex_state = 15}, - [483] = {.lex_state = 17}, - [484] = {.lex_state = 2}, - [485] = {.lex_state = 11}, - [486] = {.lex_state = 2}, - [487] = {.lex_state = 11}, - [488] = {.lex_state = 15}, - [489] = {.lex_state = 15}, - [490] = {.lex_state = 16}, - [491] = {.lex_state = 16}, - [492] = {.lex_state = 15}, - [493] = {.lex_state = 2}, - [494] = {.lex_state = 17}, - [495] = {.lex_state = 15}, - [496] = {.lex_state = 15}, - [497] = {.lex_state = 5}, - [498] = {.lex_state = 15}, - [499] = {.lex_state = 15}, - [500] = {.lex_state = 15}, - [501] = {.lex_state = 15}, - [502] = {.lex_state = 15}, - [503] = {.lex_state = 15}, - [504] = {.lex_state = 15}, - [505] = {.lex_state = 15}, - [506] = {.lex_state = 15}, - [507] = {.lex_state = 15}, - [508] = {.lex_state = 15}, - [509] = {.lex_state = 15}, - [510] = {.lex_state = 15}, - [511] = {.lex_state = 15}, - [512] = {.lex_state = 5}, - [513] = {.lex_state = 15}, - [514] = {.lex_state = 15}, - [515] = {.lex_state = 5}, - [516] = {.lex_state = 15}, - [517] = {.lex_state = 15}, - [518] = {.lex_state = 15}, - [519] = {.lex_state = 15}, - [520] = {.lex_state = 15}, - [521] = {.lex_state = 15}, - [522] = {.lex_state = 15}, - [523] = {.lex_state = 15}, - [524] = {.lex_state = 15}, - [525] = {.lex_state = 15}, - [526] = {.lex_state = 15}, - [527] = {.lex_state = 15}, - [528] = {.lex_state = 15}, - [529] = {.lex_state = 15}, - [530] = {.lex_state = 15}, - [531] = {.lex_state = 15}, - [532] = {.lex_state = 15}, - [533] = {.lex_state = 15}, - [534] = {.lex_state = 15}, - [535] = {.lex_state = 15}, - [536] = {.lex_state = 15}, - [537] = {.lex_state = 15}, - [538] = {.lex_state = 15}, - [539] = {.lex_state = 15}, - [540] = {.lex_state = 15}, - [541] = {.lex_state = 15}, - [542] = {.lex_state = 15}, - [543] = {.lex_state = 15}, - [544] = {.lex_state = 15}, - [545] = {.lex_state = 15}, - [546] = {.lex_state = 15}, - [547] = {.lex_state = 15}, - [548] = {.lex_state = 15}, - [549] = {.lex_state = 15}, - [550] = {.lex_state = 15}, - [551] = {.lex_state = 15}, - [552] = {.lex_state = 15}, - [553] = {.lex_state = 15}, - [554] = {.lex_state = 15}, - [555] = {.lex_state = 15}, - [556] = {.lex_state = 15}, - [557] = {.lex_state = 15}, - [558] = {.lex_state = 15}, - [559] = {.lex_state = 15}, - [560] = {.lex_state = 15}, - [561] = {.lex_state = 15}, - [562] = {.lex_state = 15}, - [563] = {.lex_state = 15}, - [564] = {.lex_state = 15}, - [565] = {.lex_state = 15}, - [566] = {.lex_state = 15}, - [567] = {.lex_state = 15}, - [568] = {.lex_state = 15}, - [569] = {.lex_state = 15}, - [570] = {.lex_state = 15}, - [571] = {.lex_state = 15}, - [572] = {.lex_state = 15}, - [573] = {.lex_state = 15}, - [574] = {.lex_state = 15}, - [575] = {.lex_state = 15}, - [576] = {.lex_state = 15}, - [577] = {.lex_state = 15}, - [578] = {.lex_state = 15}, - [579] = {.lex_state = 15}, - [580] = {.lex_state = 15}, - [581] = {.lex_state = 15}, - [582] = {.lex_state = 15}, - [583] = {.lex_state = 15}, - [584] = {.lex_state = 15}, - [585] = {.lex_state = 15}, - [586] = {.lex_state = 15}, - [587] = {.lex_state = 15}, - [588] = {.lex_state = 15}, - [589] = {.lex_state = 15}, - [590] = {.lex_state = 15}, - [591] = {.lex_state = 15}, - [592] = {.lex_state = 15}, - [593] = {.lex_state = 15}, - [594] = {.lex_state = 15}, - [595] = {.lex_state = 15}, - [596] = {.lex_state = 15}, - [597] = {.lex_state = 15}, - [598] = {.lex_state = 15}, - [599] = {.lex_state = 15}, - [600] = {.lex_state = 15}, - [601] = {.lex_state = 15}, - [602] = {.lex_state = 15}, - [603] = {.lex_state = 15}, - [604] = {.lex_state = 15}, - [605] = {.lex_state = 15}, - [606] = {.lex_state = 15}, - [607] = {.lex_state = 15}, - [608] = {.lex_state = 15}, - [609] = {.lex_state = 15}, - [610] = {.lex_state = 15}, - [611] = {.lex_state = 15}, - [612] = {.lex_state = 2}, - [613] = {.lex_state = 6}, - [614] = {.lex_state = 2}, - [615] = {.lex_state = 16}, - [616] = {.lex_state = 11}, - [617] = {.lex_state = 16}, - [618] = {.lex_state = 2}, - [619] = {.lex_state = 11}, - [620] = {.lex_state = 6}, - [621] = {.lex_state = 17}, - [622] = {.lex_state = 2}, - [623] = {.lex_state = 2}, - [624] = {.lex_state = 6}, - [625] = {.lex_state = 17}, - [626] = {.lex_state = 12}, - [627] = {.lex_state = 15}, - [628] = {.lex_state = 2}, - [629] = {.lex_state = 12}, - [630] = {.lex_state = 15}, - [631] = {.lex_state = 16}, - [632] = {.lex_state = 16}, - [633] = {.lex_state = 15}, - [634] = {.lex_state = 15}, - [635] = {.lex_state = 16}, - [636] = {.lex_state = 15}, - [637] = {.lex_state = 2}, - [638] = {.lex_state = 15}, - [639] = {.lex_state = 2}, - [640] = {.lex_state = 12}, - [641] = {.lex_state = 16}, - [642] = {.lex_state = 17}, - [643] = {.lex_state = 15}, - [644] = {.lex_state = 5}, - [645] = {.lex_state = 5}, - [646] = {.lex_state = 15}, - [647] = {.lex_state = 15}, - [648] = {.lex_state = 11}, - [649] = {.lex_state = 15}, - [650] = {.lex_state = 16}, - [651] = {.lex_state = 11}, - [652] = {.lex_state = 11}, - [653] = {.lex_state = 11}, - [654] = {.lex_state = 11}, - [655] = {.lex_state = 16}, - [656] = {.lex_state = 11}, - [657] = {.lex_state = 2}, - [658] = {.lex_state = 2}, - [659] = {.lex_state = 2}, - [660] = {.lex_state = 15}, - [661] = {.lex_state = 15}, - [662] = {.lex_state = 17}, - [663] = {.lex_state = 17}, - [664] = {.lex_state = 17}, - [665] = {.lex_state = 17}, - [666] = {.lex_state = 17}, - [667] = {.lex_state = 17}, - [668] = {.lex_state = 16}, - [669] = {.lex_state = 17}, - [670] = {.lex_state = 17}, - [671] = {.lex_state = 17}, - [672] = {.lex_state = 17}, - [673] = {.lex_state = 17}, - [674] = {.lex_state = 17}, - [675] = {.lex_state = 17}, - [676] = {.lex_state = 17}, - [677] = {.lex_state = 17}, - [678] = {.lex_state = 17}, - [679] = {.lex_state = 17}, - [680] = {.lex_state = 17}, - [681] = {.lex_state = 17}, - [682] = {.lex_state = 17}, - [683] = {.lex_state = 17}, - [684] = {.lex_state = 17}, - [685] = {.lex_state = 17}, - [686] = {.lex_state = 17}, - [687] = {.lex_state = 17}, - [688] = {.lex_state = 17}, - [689] = {.lex_state = 17}, - [690] = {.lex_state = 17}, - [691] = {.lex_state = 17}, - [692] = {.lex_state = 17}, - [693] = {.lex_state = 17}, - [694] = {.lex_state = 17}, - [695] = {.lex_state = 17}, - [696] = {.lex_state = 6}, - [697] = {.lex_state = 17}, - [698] = {.lex_state = 17}, - [699] = {.lex_state = 17}, - [700] = {.lex_state = 17}, - [701] = {.lex_state = 17}, - [702] = {.lex_state = 17}, - [703] = {.lex_state = 17}, - [704] = {.lex_state = 17}, - [705] = {.lex_state = 17}, - [706] = {.lex_state = 17}, - [707] = {.lex_state = 17}, - [708] = {.lex_state = 17}, - [709] = {.lex_state = 17}, - [710] = {.lex_state = 17}, - [711] = {.lex_state = 17}, - [712] = {.lex_state = 17}, - [713] = {.lex_state = 17}, - [714] = {.lex_state = 17}, - [715] = {.lex_state = 17}, - [716] = {.lex_state = 17}, - [717] = {.lex_state = 17}, - [718] = {.lex_state = 17}, - [719] = {.lex_state = 17}, - [720] = {.lex_state = 17}, - [721] = {.lex_state = 17}, - [722] = {.lex_state = 17}, - [723] = {.lex_state = 17}, - [724] = {.lex_state = 17}, - [725] = {.lex_state = 17}, - [726] = {.lex_state = 17}, - [727] = {.lex_state = 17}, - [728] = {.lex_state = 17}, - [729] = {.lex_state = 17}, - [730] = {.lex_state = 17}, - [731] = {.lex_state = 17}, - [732] = {.lex_state = 17}, - [733] = {.lex_state = 17}, - [734] = {.lex_state = 17}, - [735] = {.lex_state = 17}, - [736] = {.lex_state = 17}, - [737] = {.lex_state = 17}, - [738] = {.lex_state = 17}, - [739] = {.lex_state = 17}, - [740] = {.lex_state = 2}, - [741] = {.lex_state = 2}, - [742] = {.lex_state = 17}, - [743] = {.lex_state = 2}, - [744] = {.lex_state = 17}, - [745] = {.lex_state = 2}, - [746] = {.lex_state = 2}, - [747] = {.lex_state = 17}, - [748] = {.lex_state = 2}, - [749] = {.lex_state = 17}, - [750] = {.lex_state = 17}, - [751] = {.lex_state = 17}, - [752] = {.lex_state = 17}, - [753] = {.lex_state = 17}, - [754] = {.lex_state = 17}, - [755] = {.lex_state = 17}, - [756] = {.lex_state = 17}, - [757] = {.lex_state = 17}, - [758] = {.lex_state = 17}, - [759] = {.lex_state = 2}, - [760] = {.lex_state = 2}, - [761] = {.lex_state = 17}, - [762] = {.lex_state = 2}, - [763] = {.lex_state = 17}, - [764] = {.lex_state = 2}, - [765] = {.lex_state = 2}, - [766] = {.lex_state = 2}, - [767] = {.lex_state = 2}, - [768] = {.lex_state = 2}, - [769] = {.lex_state = 2}, - [770] = {.lex_state = 2}, - [771] = {.lex_state = 2}, - [772] = {.lex_state = 2}, - [773] = {.lex_state = 2}, - [774] = {.lex_state = 2}, - [775] = {.lex_state = 2}, - [776] = {.lex_state = 2}, - [777] = {.lex_state = 2}, - [778] = {.lex_state = 2}, - [779] = {.lex_state = 17}, - [780] = {.lex_state = 2}, - [781] = {.lex_state = 2}, - [782] = {.lex_state = 2}, - [783] = {.lex_state = 17}, - [784] = {.lex_state = 2}, - [785] = {.lex_state = 17}, - [786] = {.lex_state = 17}, - [787] = {.lex_state = 17}, - [788] = {.lex_state = 17}, - [789] = {.lex_state = 17}, - [790] = {.lex_state = 17}, - [791] = {.lex_state = 17}, - [792] = {.lex_state = 17}, - [793] = {.lex_state = 2}, - [794] = {.lex_state = 2}, - [795] = {.lex_state = 2}, - [796] = {.lex_state = 2}, - [797] = {.lex_state = 2}, - [798] = {.lex_state = 2}, - [799] = {.lex_state = 2}, - [800] = {.lex_state = 2}, - [801] = {.lex_state = 2}, - [802] = {.lex_state = 2}, - [803] = {.lex_state = 2}, - [804] = {.lex_state = 2}, - [805] = {.lex_state = 2}, - [806] = {.lex_state = 2}, - [807] = {.lex_state = 2}, - [808] = {.lex_state = 2}, - [809] = {.lex_state = 2}, - [810] = {.lex_state = 2}, - [811] = {.lex_state = 2}, - [812] = {.lex_state = 2}, - [813] = {.lex_state = 2}, - [814] = {.lex_state = 2}, - [815] = {.lex_state = 2}, - [816] = {.lex_state = 2}, - [817] = {.lex_state = 2}, - [818] = {.lex_state = 2}, - [819] = {.lex_state = 17}, - [820] = {.lex_state = 2}, - [821] = {.lex_state = 2}, - [822] = {.lex_state = 2}, - [823] = {.lex_state = 17}, - [824] = {.lex_state = 2}, - [825] = {.lex_state = 2}, - [826] = {.lex_state = 2}, - [827] = {.lex_state = 2}, - [828] = {.lex_state = 2}, - [829] = {.lex_state = 2}, - [830] = {.lex_state = 2}, - [831] = {.lex_state = 2}, - [832] = {.lex_state = 2}, - [833] = {.lex_state = 2}, - [834] = {.lex_state = 2}, - [835] = {.lex_state = 2}, - [836] = {.lex_state = 2}, - [837] = {.lex_state = 2}, - [838] = {.lex_state = 2}, - [839] = {.lex_state = 2}, - [840] = {.lex_state = 2}, - [841] = {.lex_state = 2}, - [842] = {.lex_state = 2}, - [843] = {.lex_state = 2}, - [844] = {.lex_state = 2}, - [845] = {.lex_state = 2}, - [846] = {.lex_state = 2}, - [847] = {.lex_state = 2}, - [848] = {.lex_state = 2}, - [849] = {.lex_state = 2}, - [850] = {.lex_state = 2}, - [851] = {.lex_state = 17}, - [852] = {.lex_state = 2}, - [853] = {.lex_state = 2}, - [854] = {.lex_state = 2}, - [855] = {.lex_state = 2}, - [856] = {.lex_state = 2}, - [857] = {.lex_state = 2}, - [858] = {.lex_state = 2}, - [859] = {.lex_state = 2}, - [860] = {.lex_state = 2}, - [861] = {.lex_state = 2}, - [862] = {.lex_state = 2}, - [863] = {.lex_state = 2}, - [864] = {.lex_state = 2}, - [865] = {.lex_state = 16}, - [866] = {.lex_state = 2}, - [867] = {.lex_state = 2}, - [868] = {.lex_state = 2}, - [869] = {.lex_state = 2}, - [870] = {.lex_state = 2}, - [871] = {.lex_state = 2}, - [872] = {.lex_state = 2}, - [873] = {.lex_state = 17}, - [874] = {.lex_state = 2}, - [875] = {.lex_state = 2}, - [876] = {.lex_state = 2}, - [877] = {.lex_state = 2}, - [878] = {.lex_state = 2}, - [879] = {.lex_state = 17}, - [880] = {.lex_state = 2}, - [881] = {.lex_state = 2}, - [882] = {.lex_state = 2}, - [883] = {.lex_state = 2}, - [884] = {.lex_state = 2}, - [885] = {.lex_state = 17}, - [886] = {.lex_state = 17}, - [887] = {.lex_state = 17}, - [888] = {.lex_state = 17}, - [889] = {.lex_state = 17}, - [890] = {.lex_state = 17}, - [891] = {.lex_state = 17}, - [892] = {.lex_state = 17}, - [893] = {.lex_state = 17}, - [894] = {.lex_state = 17}, - [895] = {.lex_state = 17}, - [896] = {.lex_state = 17}, - [897] = {.lex_state = 11}, - [898] = {.lex_state = 16}, - [899] = {.lex_state = 16}, - [900] = {.lex_state = 11}, - [901] = {.lex_state = 16}, - [902] = {.lex_state = 7}, - [903] = {.lex_state = 16}, - [904] = {.lex_state = 16}, - [905] = {.lex_state = 16}, - [906] = {.lex_state = 16}, - [907] = {.lex_state = 16}, - [908] = {.lex_state = 16}, - [909] = {.lex_state = 16}, - [910] = {.lex_state = 16}, - [911] = {.lex_state = 16}, - [912] = {.lex_state = 16}, - [913] = {.lex_state = 16}, - [914] = {.lex_state = 16}, - [915] = {.lex_state = 11}, - [916] = {.lex_state = 16}, - [917] = {.lex_state = 16}, - [918] = {.lex_state = 16}, - [919] = {.lex_state = 16}, - [920] = {.lex_state = 7}, - [921] = {.lex_state = 16}, - [922] = {.lex_state = 16}, - [923] = {.lex_state = 16}, - [924] = {.lex_state = 16}, - [925] = {.lex_state = 16}, - [926] = {.lex_state = 16}, - [927] = {.lex_state = 16}, - [928] = {.lex_state = 7}, - [929] = {.lex_state = 16}, - [930] = {.lex_state = 16}, - [931] = {.lex_state = 6}, - [932] = {.lex_state = 16}, - [933] = {.lex_state = 16}, - [934] = {.lex_state = 5}, - [935] = {.lex_state = 5}, - [936] = {.lex_state = 5}, - [937] = {.lex_state = 5}, - [938] = {.lex_state = 16}, - [939] = {.lex_state = 5}, - [940] = {.lex_state = 16}, - [941] = {.lex_state = 16}, - [942] = {.lex_state = 16}, - [943] = {.lex_state = 16}, - [944] = {.lex_state = 16}, - [945] = {.lex_state = 16}, - [946] = {.lex_state = 16}, - [947] = {.lex_state = 16}, - [948] = {.lex_state = 16}, - [949] = {.lex_state = 16}, - [950] = {.lex_state = 16}, - [951] = {.lex_state = 16}, - [952] = {.lex_state = 16}, - [953] = {.lex_state = 16}, - [954] = {.lex_state = 5}, - [955] = {.lex_state = 16}, - [956] = {.lex_state = 16}, - [957] = {.lex_state = 16}, - [958] = {.lex_state = 16}, - [959] = {.lex_state = 16}, - [960] = {.lex_state = 16}, - [961] = {.lex_state = 16}, - [962] = {.lex_state = 16}, - [963] = {.lex_state = 16}, - [964] = {.lex_state = 16}, - [965] = {.lex_state = 16}, - [966] = {.lex_state = 17}, - [967] = {.lex_state = 16}, - [968] = {.lex_state = 16}, - [969] = {.lex_state = 16}, - [970] = {.lex_state = 16}, - [971] = {.lex_state = 16}, - [972] = {.lex_state = 16}, - [973] = {.lex_state = 16}, - [974] = {.lex_state = 16}, - [975] = {.lex_state = 16}, - [976] = {.lex_state = 16}, - [977] = {.lex_state = 11}, - [978] = {.lex_state = 16}, - [979] = {.lex_state = 11}, - [980] = {.lex_state = 11}, - [981] = {.lex_state = 11}, - [982] = {.lex_state = 11}, - [983] = {.lex_state = 16}, - [984] = {.lex_state = 11}, - [985] = {.lex_state = 11}, - [986] = {.lex_state = 11}, - [987] = {.lex_state = 11}, - [988] = {.lex_state = 11}, - [989] = {.lex_state = 16}, - [990] = {.lex_state = 11}, - [991] = {.lex_state = 11}, - [992] = {.lex_state = 11}, - [993] = {.lex_state = 11}, - [994] = {.lex_state = 11}, - [995] = {.lex_state = 11}, - [996] = {.lex_state = 11}, - [997] = {.lex_state = 16}, - [998] = {.lex_state = 11}, - [999] = {.lex_state = 11}, - [1000] = {.lex_state = 11}, - [1001] = {.lex_state = 16}, - [1002] = {.lex_state = 11}, - [1003] = {.lex_state = 11}, - [1004] = {.lex_state = 11}, - [1005] = {.lex_state = 11}, - [1006] = {.lex_state = 11}, - [1007] = {.lex_state = 11}, - [1008] = {.lex_state = 11}, - [1009] = {.lex_state = 11}, - [1010] = {.lex_state = 11}, - [1011] = {.lex_state = 11}, - [1012] = {.lex_state = 16}, - [1013] = {.lex_state = 11}, - [1014] = {.lex_state = 11}, - [1015] = {.lex_state = 11}, - [1016] = {.lex_state = 11}, - [1017] = {.lex_state = 11}, - [1018] = {.lex_state = 11}, - [1019] = {.lex_state = 11}, - [1020] = {.lex_state = 11}, - [1021] = {.lex_state = 11}, - [1022] = {.lex_state = 11}, - [1023] = {.lex_state = 11}, - [1024] = {.lex_state = 11}, - [1025] = {.lex_state = 11}, - [1026] = {.lex_state = 11}, - [1027] = {.lex_state = 11}, - [1028] = {.lex_state = 11}, - [1029] = {.lex_state = 11}, - [1030] = {.lex_state = 11}, - [1031] = {.lex_state = 11}, - [1032] = {.lex_state = 16}, - [1033] = {.lex_state = 16}, - [1034] = {.lex_state = 16}, - [1035] = {.lex_state = 16}, - [1036] = {.lex_state = 16}, - [1037] = {.lex_state = 11}, - [1038] = {.lex_state = 16}, - [1039] = {.lex_state = 11}, - [1040] = {.lex_state = 16}, - [1041] = {.lex_state = 16}, - [1042] = {.lex_state = 16}, - [1043] = {.lex_state = 16}, - [1044] = {.lex_state = 16}, - [1045] = {.lex_state = 16}, - [1046] = {.lex_state = 16}, - [1047] = {.lex_state = 16}, - [1048] = {.lex_state = 16}, - [1049] = {.lex_state = 16}, - [1050] = {.lex_state = 11}, - [1051] = {.lex_state = 11}, - [1052] = {.lex_state = 16}, - [1053] = {.lex_state = 11}, - [1054] = {.lex_state = 16}, - [1055] = {.lex_state = 11}, - [1056] = {.lex_state = 11}, - [1057] = {.lex_state = 16}, - [1058] = {.lex_state = 11}, - [1059] = {.lex_state = 16}, - [1060] = {.lex_state = 16}, - [1061] = {.lex_state = 16}, - [1062] = {.lex_state = 16}, - [1063] = {.lex_state = 16}, - [1064] = {.lex_state = 16}, - [1065] = {.lex_state = 16}, - [1066] = {.lex_state = 16}, - [1067] = {.lex_state = 11}, - [1068] = {.lex_state = 11}, - [1069] = {.lex_state = 16}, - [1070] = {.lex_state = 11}, - [1071] = {.lex_state = 16}, - [1072] = {.lex_state = 11}, - [1073] = {.lex_state = 11}, - [1074] = {.lex_state = 11}, - [1075] = {.lex_state = 11}, - [1076] = {.lex_state = 11}, - [1077] = {.lex_state = 11}, - [1078] = {.lex_state = 11}, - [1079] = {.lex_state = 11}, - [1080] = {.lex_state = 11}, - [1081] = {.lex_state = 11}, - [1082] = {.lex_state = 11}, - [1083] = {.lex_state = 11}, - [1084] = {.lex_state = 11}, - [1085] = {.lex_state = 11}, - [1086] = {.lex_state = 11}, - [1087] = {.lex_state = 16}, - [1088] = {.lex_state = 11}, - [1089] = {.lex_state = 11}, - [1090] = {.lex_state = 11}, - [1091] = {.lex_state = 16}, - [1092] = {.lex_state = 11}, - [1093] = {.lex_state = 16}, - [1094] = {.lex_state = 16}, - [1095] = {.lex_state = 16}, - [1096] = {.lex_state = 16}, - [1097] = {.lex_state = 16}, - [1098] = {.lex_state = 16}, - [1099] = {.lex_state = 16}, - [1100] = {.lex_state = 11}, - [1101] = {.lex_state = 11}, - [1102] = {.lex_state = 11}, - [1103] = {.lex_state = 11}, - [1104] = {.lex_state = 11}, - [1105] = {.lex_state = 11}, - [1106] = {.lex_state = 11}, - [1107] = {.lex_state = 11}, - [1108] = {.lex_state = 11}, - [1109] = {.lex_state = 11}, - [1110] = {.lex_state = 11}, - [1111] = {.lex_state = 11}, - [1112] = {.lex_state = 11}, - [1113] = {.lex_state = 11}, - [1114] = {.lex_state = 11}, - [1115] = {.lex_state = 11}, - [1116] = {.lex_state = 11}, - [1117] = {.lex_state = 11}, - [1118] = {.lex_state = 11}, - [1119] = {.lex_state = 11}, - [1120] = {.lex_state = 11}, - [1121] = {.lex_state = 11}, - [1122] = {.lex_state = 11}, - [1123] = {.lex_state = 11}, - [1124] = {.lex_state = 11}, - [1125] = {.lex_state = 11}, - [1126] = {.lex_state = 16}, - [1127] = {.lex_state = 11}, - [1128] = {.lex_state = 11}, - [1129] = {.lex_state = 11}, - [1130] = {.lex_state = 16}, - [1131] = {.lex_state = 11}, - [1132] = {.lex_state = 11}, - [1133] = {.lex_state = 11}, - [1134] = {.lex_state = 5}, - [1135] = {.lex_state = 5}, - [1136] = {.lex_state = 5}, - [1137] = {.lex_state = 5}, - [1138] = {.lex_state = 6}, - [1139] = {.lex_state = 8}, - [1140] = {.lex_state = 8}, - [1141] = {.lex_state = 8}, - [1142] = {.lex_state = 12}, - [1143] = {.lex_state = 12}, - [1144] = {.lex_state = 5}, - [1145] = {.lex_state = 5}, - [1146] = {.lex_state = 5}, - [1147] = {.lex_state = 5}, - [1148] = {.lex_state = 5}, - [1149] = {.lex_state = 5}, - [1150] = {.lex_state = 5}, - [1151] = {.lex_state = 5}, - [1152] = {.lex_state = 5}, - [1153] = {.lex_state = 5}, - [1154] = {.lex_state = 6}, - [1155] = {.lex_state = 5}, - [1156] = {.lex_state = 5}, - [1157] = {.lex_state = 5}, - [1158] = {.lex_state = 5}, - [1159] = {.lex_state = 5}, - [1160] = {.lex_state = 5}, - [1161] = {.lex_state = 5}, - [1162] = {.lex_state = 5}, - [1163] = {.lex_state = 5}, - [1164] = {.lex_state = 5}, - [1165] = {.lex_state = 5}, - [1166] = {.lex_state = 6}, - [1167] = {.lex_state = 5}, - [1168] = {.lex_state = 5}, - [1169] = {.lex_state = 5}, - [1170] = {.lex_state = 5}, - [1171] = {.lex_state = 5}, - [1172] = {.lex_state = 5}, - [1173] = {.lex_state = 5}, - [1174] = {.lex_state = 5}, - [1175] = {.lex_state = 5}, - [1176] = {.lex_state = 5}, - [1177] = {.lex_state = 5}, - [1178] = {.lex_state = 5}, - [1179] = {.lex_state = 5}, - [1180] = {.lex_state = 5}, - [1181] = {.lex_state = 5}, - [1182] = {.lex_state = 5}, - [1183] = {.lex_state = 5}, - [1184] = {.lex_state = 5}, - [1185] = {.lex_state = 5}, - [1186] = {.lex_state = 5}, - [1187] = {.lex_state = 5}, - [1188] = {.lex_state = 5}, - [1189] = {.lex_state = 5}, - [1190] = {.lex_state = 5}, - [1191] = {.lex_state = 5}, - [1192] = {.lex_state = 5}, - [1193] = {.lex_state = 5}, - [1194] = {.lex_state = 5}, - [1195] = {.lex_state = 5}, - [1196] = {.lex_state = 5}, - [1197] = {.lex_state = 6}, - [1198] = {.lex_state = 5}, - [1199] = {.lex_state = 5}, - [1200] = {.lex_state = 5}, - [1201] = {.lex_state = 5}, - [1202] = {.lex_state = 5}, - [1203] = {.lex_state = 5}, - [1204] = {.lex_state = 5}, - [1205] = {.lex_state = 5}, - [1206] = {.lex_state = 5}, - [1207] = {.lex_state = 5}, - [1208] = {.lex_state = 5}, - [1209] = {.lex_state = 5}, - [1210] = {.lex_state = 5}, - [1211] = {.lex_state = 5}, - [1212] = {.lex_state = 5}, - [1213] = {.lex_state = 5}, - [1214] = {.lex_state = 5}, - [1215] = {.lex_state = 5}, - [1216] = {.lex_state = 6}, - [1217] = {.lex_state = 5}, - [1218] = {.lex_state = 5}, - [1219] = {.lex_state = 5}, - [1220] = {.lex_state = 5}, - [1221] = {.lex_state = 5}, - [1222] = {.lex_state = 5}, - [1223] = {.lex_state = 5}, - [1224] = {.lex_state = 5}, - [1225] = {.lex_state = 5}, - [1226] = {.lex_state = 5}, - [1227] = {.lex_state = 5}, - [1228] = {.lex_state = 5}, - [1229] = {.lex_state = 5}, - [1230] = {.lex_state = 5}, - [1231] = {.lex_state = 5}, - [1232] = {.lex_state = 5}, - [1233] = {.lex_state = 5}, - [1234] = {.lex_state = 5}, - [1235] = {.lex_state = 5}, - [1236] = {.lex_state = 5}, - [1237] = {.lex_state = 5}, - [1238] = {.lex_state = 5}, - [1239] = {.lex_state = 5}, - [1240] = {.lex_state = 5}, - [1241] = {.lex_state = 5}, - [1242] = {.lex_state = 5}, - [1243] = {.lex_state = 5}, - [1244] = {.lex_state = 5}, - [1245] = {.lex_state = 5}, - [1246] = {.lex_state = 5}, - [1247] = {.lex_state = 6}, - [1248] = {.lex_state = 5}, - [1249] = {.lex_state = 5}, - [1250] = {.lex_state = 5}, - [1251] = {.lex_state = 5}, - [1252] = {.lex_state = 5}, - [1253] = {.lex_state = 5}, - [1254] = {.lex_state = 5}, - [1255] = {.lex_state = 5}, - [1256] = {.lex_state = 5}, - [1257] = {.lex_state = 5}, - [1258] = {.lex_state = 5}, - [1259] = {.lex_state = 6}, - [1260] = {.lex_state = 6}, - [1261] = {.lex_state = 12}, - [1262] = {.lex_state = 6}, - [1263] = {.lex_state = 6}, - [1264] = {.lex_state = 7}, - [1265] = {.lex_state = 6}, - [1266] = {.lex_state = 6}, - [1267] = {.lex_state = 6}, - [1268] = {.lex_state = 6}, - [1269] = {.lex_state = 6}, - [1270] = {.lex_state = 6}, - [1271] = {.lex_state = 6}, - [1272] = {.lex_state = 6}, - [1273] = {.lex_state = 6}, - [1274] = {.lex_state = 6}, - [1275] = {.lex_state = 6}, - [1276] = {.lex_state = 6}, - [1277] = {.lex_state = 6}, - [1278] = {.lex_state = 6}, - [1279] = {.lex_state = 6}, - [1280] = {.lex_state = 6}, - [1281] = {.lex_state = 6}, - [1282] = {.lex_state = 6}, - [1283] = {.lex_state = 6}, - [1284] = {.lex_state = 6}, - [1285] = {.lex_state = 6}, - [1286] = {.lex_state = 6}, - [1287] = {.lex_state = 6}, - [1288] = {.lex_state = 6}, - [1289] = {.lex_state = 6}, - [1290] = {.lex_state = 6}, - [1291] = {.lex_state = 6}, - [1292] = {.lex_state = 6}, - [1293] = {.lex_state = 6}, - [1294] = {.lex_state = 6}, - [1295] = {.lex_state = 6}, - [1296] = {.lex_state = 6}, - [1297] = {.lex_state = 6}, - [1298] = {.lex_state = 6}, - [1299] = {.lex_state = 6}, - [1300] = {.lex_state = 6}, - [1301] = {.lex_state = 6}, - [1302] = {.lex_state = 6}, - [1303] = {.lex_state = 6}, - [1304] = {.lex_state = 6}, - [1305] = {.lex_state = 6}, - [1306] = {.lex_state = 6}, - [1307] = {.lex_state = 6}, - [1308] = {.lex_state = 6}, - [1309] = {.lex_state = 6}, - [1310] = {.lex_state = 6}, - [1311] = {.lex_state = 6}, - [1312] = {.lex_state = 6}, - [1313] = {.lex_state = 6}, - [1314] = {.lex_state = 6}, - [1315] = {.lex_state = 6}, - [1316] = {.lex_state = 6}, - [1317] = {.lex_state = 6}, - [1318] = {.lex_state = 6}, - [1319] = {.lex_state = 6}, - [1320] = {.lex_state = 6}, - [1321] = {.lex_state = 6}, - [1322] = {.lex_state = 6}, - [1323] = {.lex_state = 6}, - [1324] = {.lex_state = 6}, - [1325] = {.lex_state = 6}, - [1326] = {.lex_state = 6}, - [1327] = {.lex_state = 6}, - [1328] = {.lex_state = 6}, - [1329] = {.lex_state = 6}, - [1330] = {.lex_state = 6}, - [1331] = {.lex_state = 6}, - [1332] = {.lex_state = 6}, - [1333] = {.lex_state = 6}, - [1334] = {.lex_state = 6}, - [1335] = {.lex_state = 6}, - [1336] = {.lex_state = 6}, - [1337] = {.lex_state = 6}, - [1338] = {.lex_state = 6}, - [1339] = {.lex_state = 6}, - [1340] = {.lex_state = 6}, - [1341] = {.lex_state = 6}, - [1342] = {.lex_state = 6}, - [1343] = {.lex_state = 6}, - [1344] = {.lex_state = 12}, - [1345] = {.lex_state = 12}, - [1346] = {.lex_state = 12}, - [1347] = {.lex_state = 12}, - [1348] = {.lex_state = 12}, - [1349] = {.lex_state = 6}, - [1350] = {.lex_state = 6}, - [1351] = {.lex_state = 6}, - [1352] = {.lex_state = 6}, - [1353] = {.lex_state = 6}, - [1354] = {.lex_state = 6}, - [1355] = {.lex_state = 6}, - [1356] = {.lex_state = 6}, - [1357] = {.lex_state = 6}, - [1358] = {.lex_state = 7}, - [1359] = {.lex_state = 6}, - [1360] = {.lex_state = 6}, - [1361] = {.lex_state = 9}, - [1362] = {.lex_state = 6}, - [1363] = {.lex_state = 6}, - [1364] = {.lex_state = 9}, - [1365] = {.lex_state = 6}, - [1366] = {.lex_state = 9}, - [1367] = {.lex_state = 6}, - [1368] = {.lex_state = 6}, - [1369] = {.lex_state = 6}, - [1370] = {.lex_state = 6}, - [1371] = {.lex_state = 6}, - [1372] = {.lex_state = 6}, - [1373] = {.lex_state = 6}, - [1374] = {.lex_state = 6}, - [1375] = {.lex_state = 6}, - [1376] = {.lex_state = 6}, - [1377] = {.lex_state = 6}, - [1378] = {.lex_state = 6}, - [1379] = {.lex_state = 6}, - [1380] = {.lex_state = 6}, - [1381] = {.lex_state = 6}, - [1382] = {.lex_state = 6}, - [1383] = {.lex_state = 6}, - [1384] = {.lex_state = 12}, - [1385] = {.lex_state = 12}, - [1386] = {.lex_state = 12}, - [1387] = {.lex_state = 8}, - [1388] = {.lex_state = 8}, - [1389] = {.lex_state = 7}, - [1390] = {.lex_state = 7}, - [1391] = {.lex_state = 7}, - [1392] = {.lex_state = 7}, - [1393] = {.lex_state = 12}, - [1394] = {.lex_state = 7}, - [1395] = {.lex_state = 7}, - [1396] = {.lex_state = 12}, - [1397] = {.lex_state = 12}, - [1398] = {.lex_state = 12}, - [1399] = {.lex_state = 12}, - [1400] = {.lex_state = 12}, - [1401] = {.lex_state = 12}, - [1402] = {.lex_state = 12}, - [1403] = {.lex_state = 12}, - [1404] = {.lex_state = 12}, - [1405] = {.lex_state = 12}, - [1406] = {.lex_state = 12}, - [1407] = {.lex_state = 12}, - [1408] = {.lex_state = 12}, - [1409] = {.lex_state = 12}, - [1410] = {.lex_state = 12}, - [1411] = {.lex_state = 12}, - [1412] = {.lex_state = 12}, - [1413] = {.lex_state = 12}, - [1414] = {.lex_state = 12}, - [1415] = {.lex_state = 12}, - [1416] = {.lex_state = 12}, - [1417] = {.lex_state = 12}, - [1418] = {.lex_state = 12}, - [1419] = {.lex_state = 12}, - [1420] = {.lex_state = 12}, - [1421] = {.lex_state = 12}, - [1422] = {.lex_state = 12}, - [1423] = {.lex_state = 12}, - [1424] = {.lex_state = 12}, - [1425] = {.lex_state = 12}, - [1426] = {.lex_state = 12}, - [1427] = {.lex_state = 12}, - [1428] = {.lex_state = 12}, - [1429] = {.lex_state = 12}, - [1430] = {.lex_state = 12}, - [1431] = {.lex_state = 12}, - [1432] = {.lex_state = 12}, - [1433] = {.lex_state = 12}, - [1434] = {.lex_state = 12}, - [1435] = {.lex_state = 12}, - [1436] = {.lex_state = 12}, - [1437] = {.lex_state = 12}, - [1438] = {.lex_state = 12}, - [1439] = {.lex_state = 12}, - [1440] = {.lex_state = 12}, - [1441] = {.lex_state = 12}, - [1442] = {.lex_state = 12}, - [1443] = {.lex_state = 12}, - [1444] = {.lex_state = 12}, - [1445] = {.lex_state = 12}, - [1446] = {.lex_state = 12}, - [1447] = {.lex_state = 12}, - [1448] = {.lex_state = 12}, - [1449] = {.lex_state = 12}, - [1450] = {.lex_state = 12}, - [1451] = {.lex_state = 12}, - [1452] = {.lex_state = 12}, - [1453] = {.lex_state = 12}, - [1454] = {.lex_state = 12}, - [1455] = {.lex_state = 12}, - [1456] = {.lex_state = 12}, - [1457] = {.lex_state = 12}, - [1458] = {.lex_state = 12}, - [1459] = {.lex_state = 12}, - [1460] = {.lex_state = 12}, - [1461] = {.lex_state = 12}, - [1462] = {.lex_state = 12}, - [1463] = {.lex_state = 12}, - [1464] = {.lex_state = 12}, - [1465] = {.lex_state = 12}, - [1466] = {.lex_state = 12}, - [1467] = {.lex_state = 12}, - [1468] = {.lex_state = 12}, - [1469] = {.lex_state = 12}, - [1470] = {.lex_state = 12}, - [1471] = {.lex_state = 12}, - [1472] = {.lex_state = 12}, - [1473] = {.lex_state = 12}, - [1474] = {.lex_state = 12}, - [1475] = {.lex_state = 12}, - [1476] = {.lex_state = 12}, - [1477] = {.lex_state = 12}, - [1478] = {.lex_state = 12}, - [1479] = {.lex_state = 12}, - [1480] = {.lex_state = 10}, - [1481] = {.lex_state = 12}, - [1482] = {.lex_state = 12}, - [1483] = {.lex_state = 10}, - [1484] = {.lex_state = 12}, - [1485] = {.lex_state = 12}, - [1486] = {.lex_state = 12}, - [1487] = {.lex_state = 12}, - [1488] = {.lex_state = 10}, - [1489] = {.lex_state = 12}, - [1490] = {.lex_state = 12}, - [1491] = {.lex_state = 12}, - [1492] = {.lex_state = 12}, - [1493] = {.lex_state = 12}, - [1494] = {.lex_state = 12}, - [1495] = {.lex_state = 12}, - [1496] = {.lex_state = 12}, - [1497] = {.lex_state = 12}, - [1498] = {.lex_state = 12}, - [1499] = {.lex_state = 12}, - [1500] = {.lex_state = 12}, - [1501] = {.lex_state = 12}, - [1502] = {.lex_state = 12}, - [1503] = {.lex_state = 12}, - [1504] = {.lex_state = 12}, - [1505] = {.lex_state = 12}, - [1506] = {.lex_state = 12}, - [1507] = {.lex_state = 12}, - [1508] = {.lex_state = 12}, - [1509] = {.lex_state = 7}, - [1510] = {.lex_state = 7}, - [1511] = {.lex_state = 9}, - [1512] = {.lex_state = 7}, - [1513] = {.lex_state = 9}, - [1514] = {.lex_state = 8}, - [1515] = {.lex_state = 8}, - [1516] = {.lex_state = 8}, - [1517] = {.lex_state = 8}, - [1518] = {.lex_state = 8}, - [1519] = {.lex_state = 8}, - [1520] = {.lex_state = 7}, - [1521] = {.lex_state = 7}, - [1522] = {.lex_state = 7}, - [1523] = {.lex_state = 7}, - [1524] = {.lex_state = 7}, - [1525] = {.lex_state = 7}, - [1526] = {.lex_state = 7}, - [1527] = {.lex_state = 7}, - [1528] = {.lex_state = 7}, - [1529] = {.lex_state = 7}, - [1530] = {.lex_state = 7}, - [1531] = {.lex_state = 7}, - [1532] = {.lex_state = 7}, - [1533] = {.lex_state = 7}, - [1534] = {.lex_state = 7}, - [1535] = {.lex_state = 7}, - [1536] = {.lex_state = 7}, - [1537] = {.lex_state = 7}, - [1538] = {.lex_state = 7}, - [1539] = {.lex_state = 7}, - [1540] = {.lex_state = 7}, - [1541] = {.lex_state = 7}, - [1542] = {.lex_state = 7}, - [1543] = {.lex_state = 7}, - [1544] = {.lex_state = 7}, - [1545] = {.lex_state = 7}, - [1546] = {.lex_state = 7}, - [1547] = {.lex_state = 7}, - [1548] = {.lex_state = 7}, - [1549] = {.lex_state = 7}, - [1550] = {.lex_state = 7}, - [1551] = {.lex_state = 7}, - [1552] = {.lex_state = 7}, - [1553] = {.lex_state = 7}, - [1554] = {.lex_state = 7}, - [1555] = {.lex_state = 7}, - [1556] = {.lex_state = 7}, - [1557] = {.lex_state = 7}, - [1558] = {.lex_state = 7}, - [1559] = {.lex_state = 7}, - [1560] = {.lex_state = 7}, - [1561] = {.lex_state = 7}, - [1562] = {.lex_state = 7}, - [1563] = {.lex_state = 7}, - [1564] = {.lex_state = 7}, - [1565] = {.lex_state = 7}, - [1566] = {.lex_state = 7}, - [1567] = {.lex_state = 7}, - [1568] = {.lex_state = 7}, - [1569] = {.lex_state = 7}, - [1570] = {.lex_state = 7}, - [1571] = {.lex_state = 7}, - [1572] = {.lex_state = 7}, - [1573] = {.lex_state = 7}, - [1574] = {.lex_state = 7}, - [1575] = {.lex_state = 7}, - [1576] = {.lex_state = 7}, - [1577] = {.lex_state = 7}, - [1578] = {.lex_state = 7}, - [1579] = {.lex_state = 7}, - [1580] = {.lex_state = 7}, - [1581] = {.lex_state = 7}, - [1582] = {.lex_state = 7}, - [1583] = {.lex_state = 7}, - [1584] = {.lex_state = 7}, - [1585] = {.lex_state = 7}, - [1586] = {.lex_state = 7}, - [1587] = {.lex_state = 7}, - [1588] = {.lex_state = 7}, - [1589] = {.lex_state = 7}, - [1590] = {.lex_state = 7}, - [1591] = {.lex_state = 7}, - [1592] = {.lex_state = 7}, - [1593] = {.lex_state = 7}, - [1594] = {.lex_state = 7}, - [1595] = {.lex_state = 7}, - [1596] = {.lex_state = 7}, - [1597] = {.lex_state = 7}, - [1598] = {.lex_state = 7}, - [1599] = {.lex_state = 7}, - [1600] = {.lex_state = 7}, - [1601] = {.lex_state = 7}, - [1602] = {.lex_state = 7}, - [1603] = {.lex_state = 7}, - [1604] = {.lex_state = 7}, - [1605] = {.lex_state = 7}, - [1606] = {.lex_state = 7}, - [1607] = {.lex_state = 7}, - [1608] = {.lex_state = 7}, - [1609] = {.lex_state = 7}, - [1610] = {.lex_state = 7}, - [1611] = {.lex_state = 7}, - [1612] = {.lex_state = 7}, - [1613] = {.lex_state = 7}, - [1614] = {.lex_state = 7}, - [1615] = {.lex_state = 7}, - [1616] = {.lex_state = 7}, - [1617] = {.lex_state = 7}, - [1618] = {.lex_state = 7}, - [1619] = {.lex_state = 7}, - [1620] = {.lex_state = 7}, - [1621] = {.lex_state = 7}, - [1622] = {.lex_state = 7}, - [1623] = {.lex_state = 7}, - [1624] = {.lex_state = 7}, - [1625] = {.lex_state = 7}, - [1626] = {.lex_state = 7}, - [1627] = {.lex_state = 7}, - [1628] = {.lex_state = 7}, - [1629] = {.lex_state = 7}, - [1630] = {.lex_state = 7}, - [1631] = {.lex_state = 8}, - [1632] = {.lex_state = 8}, - [1633] = {.lex_state = 9}, - [1634] = {.lex_state = 9}, - [1635] = {.lex_state = 9}, - [1636] = {.lex_state = 9}, - [1637] = {.lex_state = 8}, - [1638] = {.lex_state = 9}, - [1639] = {.lex_state = 10}, - [1640] = {.lex_state = 8}, - [1641] = {.lex_state = 8}, - [1642] = {.lex_state = 8}, - [1643] = {.lex_state = 8}, - [1644] = {.lex_state = 8}, - [1645] = {.lex_state = 8}, - [1646] = {.lex_state = 8}, - [1647] = {.lex_state = 8}, - [1648] = {.lex_state = 8}, - [1649] = {.lex_state = 8}, - [1650] = {.lex_state = 8}, - [1651] = {.lex_state = 8}, - [1652] = {.lex_state = 8}, - [1653] = {.lex_state = 8}, - [1654] = {.lex_state = 8}, - [1655] = {.lex_state = 8}, - [1656] = {.lex_state = 8}, - [1657] = {.lex_state = 8}, - [1658] = {.lex_state = 8}, - [1659] = {.lex_state = 8}, - [1660] = {.lex_state = 8}, - [1661] = {.lex_state = 8}, - [1662] = {.lex_state = 8}, - [1663] = {.lex_state = 8}, - [1664] = {.lex_state = 8}, - [1665] = {.lex_state = 8}, - [1666] = {.lex_state = 8}, - [1667] = {.lex_state = 8}, - [1668] = {.lex_state = 8}, - [1669] = {.lex_state = 8}, - [1670] = {.lex_state = 8}, - [1671] = {.lex_state = 8}, - [1672] = {.lex_state = 8}, - [1673] = {.lex_state = 8}, - [1674] = {.lex_state = 8}, - [1675] = {.lex_state = 8}, - [1676] = {.lex_state = 8}, - [1677] = {.lex_state = 8}, - [1678] = {.lex_state = 8}, - [1679] = {.lex_state = 8}, - [1680] = {.lex_state = 8}, - [1681] = {.lex_state = 8}, - [1682] = {.lex_state = 8}, - [1683] = {.lex_state = 8}, - [1684] = {.lex_state = 8}, - [1685] = {.lex_state = 8}, - [1686] = {.lex_state = 8}, - [1687] = {.lex_state = 8}, - [1688] = {.lex_state = 8}, - [1689] = {.lex_state = 8}, - [1690] = {.lex_state = 8}, - [1691] = {.lex_state = 8}, - [1692] = {.lex_state = 8}, - [1693] = {.lex_state = 8}, - [1694] = {.lex_state = 8}, - [1695] = {.lex_state = 8}, - [1696] = {.lex_state = 8}, - [1697] = {.lex_state = 8}, - [1698] = {.lex_state = 8}, - [1699] = {.lex_state = 8}, - [1700] = {.lex_state = 8}, - [1701] = {.lex_state = 8}, - [1702] = {.lex_state = 8}, - [1703] = {.lex_state = 8}, - [1704] = {.lex_state = 8}, - [1705] = {.lex_state = 8}, - [1706] = {.lex_state = 8}, - [1707] = {.lex_state = 8}, - [1708] = {.lex_state = 8}, - [1709] = {.lex_state = 8}, - [1710] = {.lex_state = 8}, - [1711] = {.lex_state = 8}, - [1712] = {.lex_state = 8}, - [1713] = {.lex_state = 8}, - [1714] = {.lex_state = 8}, - [1715] = {.lex_state = 8}, - [1716] = {.lex_state = 8}, - [1717] = {.lex_state = 8}, - [1718] = {.lex_state = 8}, - [1719] = {.lex_state = 8}, - [1720] = {.lex_state = 8}, - [1721] = {.lex_state = 8}, - [1722] = {.lex_state = 8}, - [1723] = {.lex_state = 9}, - [1724] = {.lex_state = 8}, - [1725] = {.lex_state = 8}, - [1726] = {.lex_state = 8}, - [1727] = {.lex_state = 8}, - [1728] = {.lex_state = 8}, - [1729] = {.lex_state = 8}, - [1730] = {.lex_state = 8}, - [1731] = {.lex_state = 8}, - [1732] = {.lex_state = 8}, - [1733] = {.lex_state = 8}, - [1734] = {.lex_state = 8}, - [1735] = {.lex_state = 8}, - [1736] = {.lex_state = 8}, - [1737] = {.lex_state = 8}, - [1738] = {.lex_state = 8}, - [1739] = {.lex_state = 8}, - [1740] = {.lex_state = 8}, - [1741] = {.lex_state = 8}, - [1742] = {.lex_state = 8}, - [1743] = {.lex_state = 8}, - [1744] = {.lex_state = 8}, - [1745] = {.lex_state = 8}, - [1746] = {.lex_state = 8}, - [1747] = {.lex_state = 8}, - [1748] = {.lex_state = 8}, - [1749] = {.lex_state = 8}, - [1750] = {.lex_state = 8}, - [1751] = {.lex_state = 8}, - [1752] = {.lex_state = 10}, - [1753] = {.lex_state = 9}, - [1754] = {.lex_state = 9}, - [1755] = {.lex_state = 9}, - [1756] = {.lex_state = 9}, - [1757] = {.lex_state = 9}, - [1758] = {.lex_state = 10}, - [1759] = {.lex_state = 9}, - [1760] = {.lex_state = 9}, - [1761] = {.lex_state = 9}, - [1762] = {.lex_state = 9}, - [1763] = {.lex_state = 9}, - [1764] = {.lex_state = 10}, - [1765] = {.lex_state = 9}, - [1766] = {.lex_state = 9}, - [1767] = {.lex_state = 9}, - [1768] = {.lex_state = 9}, - [1769] = {.lex_state = 9}, - [1770] = {.lex_state = 9}, - [1771] = {.lex_state = 9}, - [1772] = {.lex_state = 10}, - [1773] = {.lex_state = 9}, - [1774] = {.lex_state = 9}, - [1775] = {.lex_state = 9}, - [1776] = {.lex_state = 9}, - [1777] = {.lex_state = 9}, - [1778] = {.lex_state = 9}, - [1779] = {.lex_state = 9}, - [1780] = {.lex_state = 9}, - [1781] = {.lex_state = 9}, - [1782] = {.lex_state = 9}, - [1783] = {.lex_state = 9}, - [1784] = {.lex_state = 10}, - [1785] = {.lex_state = 9}, - [1786] = {.lex_state = 9}, - [1787] = {.lex_state = 9}, - [1788] = {.lex_state = 9}, - [1789] = {.lex_state = 9}, - [1790] = {.lex_state = 9}, - [1791] = {.lex_state = 9}, - [1792] = {.lex_state = 9}, - [1793] = {.lex_state = 9}, - [1794] = {.lex_state = 9}, - [1795] = {.lex_state = 9}, - [1796] = {.lex_state = 9}, - [1797] = {.lex_state = 9}, - [1798] = {.lex_state = 9}, - [1799] = {.lex_state = 9}, - [1800] = {.lex_state = 9}, - [1801] = {.lex_state = 9}, - [1802] = {.lex_state = 9}, - [1803] = {.lex_state = 9}, - [1804] = {.lex_state = 9}, - [1805] = {.lex_state = 9}, - [1806] = {.lex_state = 9}, - [1807] = {.lex_state = 9}, - [1808] = {.lex_state = 9}, - [1809] = {.lex_state = 9}, - [1810] = {.lex_state = 9}, - [1811] = {.lex_state = 9}, - [1812] = {.lex_state = 9}, - [1813] = {.lex_state = 9}, - [1814] = {.lex_state = 9}, - [1815] = {.lex_state = 9}, - [1816] = {.lex_state = 9}, - [1817] = {.lex_state = 9}, - [1818] = {.lex_state = 9}, - [1819] = {.lex_state = 9}, - [1820] = {.lex_state = 9}, - [1821] = {.lex_state = 10}, - [1822] = {.lex_state = 9}, - [1823] = {.lex_state = 9}, - [1824] = {.lex_state = 9}, - [1825] = {.lex_state = 9}, - [1826] = {.lex_state = 9}, - [1827] = {.lex_state = 9}, - [1828] = {.lex_state = 9}, - [1829] = {.lex_state = 9}, - [1830] = {.lex_state = 9}, - [1831] = {.lex_state = 9}, - [1832] = {.lex_state = 9}, - [1833] = {.lex_state = 9}, - [1834] = {.lex_state = 9}, - [1835] = {.lex_state = 9}, - [1836] = {.lex_state = 9}, - [1837] = {.lex_state = 9}, - [1838] = {.lex_state = 9}, - [1839] = {.lex_state = 9}, - [1840] = {.lex_state = 9}, - [1841] = {.lex_state = 9}, - [1842] = {.lex_state = 9}, - [1843] = {.lex_state = 9}, - [1844] = {.lex_state = 9}, - [1845] = {.lex_state = 9}, - [1846] = {.lex_state = 9}, - [1847] = {.lex_state = 9}, - [1848] = {.lex_state = 9}, - [1849] = {.lex_state = 9}, - [1850] = {.lex_state = 9}, - [1851] = {.lex_state = 9}, - [1852] = {.lex_state = 9}, - [1853] = {.lex_state = 9}, - [1854] = {.lex_state = 9}, - [1855] = {.lex_state = 9}, - [1856] = {.lex_state = 9}, - [1857] = {.lex_state = 9}, - [1858] = {.lex_state = 9}, - [1859] = {.lex_state = 9}, - [1860] = {.lex_state = 9}, - [1861] = {.lex_state = 9}, - [1862] = {.lex_state = 9}, - [1863] = {.lex_state = 9}, - [1864] = {.lex_state = 9}, - [1865] = {.lex_state = 9}, - [1866] = {.lex_state = 9}, - [1867] = {.lex_state = 9}, - [1868] = {.lex_state = 9}, - [1869] = {.lex_state = 9}, - [1870] = {.lex_state = 9}, - [1871] = {.lex_state = 9}, - [1872] = {.lex_state = 10}, - [1873] = {.lex_state = 10}, - [1874] = {.lex_state = 10}, - [1875] = {.lex_state = 10}, - [1876] = {.lex_state = 10}, - [1877] = {.lex_state = 10}, - [1878] = {.lex_state = 10}, - [1879] = {.lex_state = 10}, - [1880] = {.lex_state = 10}, - [1881] = {.lex_state = 10}, - [1882] = {.lex_state = 10}, - [1883] = {.lex_state = 10}, - [1884] = {.lex_state = 10}, - [1885] = {.lex_state = 10}, - [1886] = {.lex_state = 10}, - [1887] = {.lex_state = 10}, - [1888] = {.lex_state = 10}, - [1889] = {.lex_state = 10}, - [1890] = {.lex_state = 10}, - [1891] = {.lex_state = 10}, - [1892] = {.lex_state = 10}, - [1893] = {.lex_state = 10}, - [1894] = {.lex_state = 10}, - [1895] = {.lex_state = 10}, - [1896] = {.lex_state = 10}, - [1897] = {.lex_state = 10}, - [1898] = {.lex_state = 10}, - [1899] = {.lex_state = 10}, - [1900] = {.lex_state = 10}, - [1901] = {.lex_state = 10}, - [1902] = {.lex_state = 10}, - [1903] = {.lex_state = 10}, - [1904] = {.lex_state = 10}, - [1905] = {.lex_state = 10}, - [1906] = {.lex_state = 10}, - [1907] = {.lex_state = 10}, - [1908] = {.lex_state = 10}, - [1909] = {.lex_state = 10}, - [1910] = {.lex_state = 10}, - [1911] = {.lex_state = 10}, - [1912] = {.lex_state = 10}, - [1913] = {.lex_state = 10}, - [1914] = {.lex_state = 10}, - [1915] = {.lex_state = 10}, - [1916] = {.lex_state = 10}, - [1917] = {.lex_state = 10}, - [1918] = {.lex_state = 10}, - [1919] = {.lex_state = 10}, - [1920] = {.lex_state = 10}, - [1921] = {.lex_state = 10}, - [1922] = {.lex_state = 10}, - [1923] = {.lex_state = 10}, - [1924] = {.lex_state = 10}, - [1925] = {.lex_state = 10}, - [1926] = {.lex_state = 10}, - [1927] = {.lex_state = 10}, - [1928] = {.lex_state = 10}, - [1929] = {.lex_state = 10}, - [1930] = {.lex_state = 10}, - [1931] = {.lex_state = 10}, - [1932] = {.lex_state = 10}, - [1933] = {.lex_state = 10}, - [1934] = {.lex_state = 10}, - [1935] = {.lex_state = 10}, - [1936] = {.lex_state = 10}, - [1937] = {.lex_state = 10}, - [1938] = {.lex_state = 10}, - [1939] = {.lex_state = 10}, - [1940] = {.lex_state = 10}, - [1941] = {.lex_state = 10}, - [1942] = {.lex_state = 10}, - [1943] = {.lex_state = 10}, - [1944] = {.lex_state = 10}, - [1945] = {.lex_state = 10}, - [1946] = {.lex_state = 10}, - [1947] = {.lex_state = 10}, - [1948] = {.lex_state = 10}, - [1949] = {.lex_state = 10}, - [1950] = {.lex_state = 10}, - [1951] = {.lex_state = 10}, - [1952] = {.lex_state = 10}, - [1953] = {.lex_state = 10}, - [1954] = {.lex_state = 10}, - [1955] = {.lex_state = 10}, - [1956] = {.lex_state = 10}, - [1957] = {.lex_state = 10}, - [1958] = {.lex_state = 10}, - [1959] = {.lex_state = 10}, - [1960] = {.lex_state = 10}, - [1961] = {.lex_state = 10}, - [1962] = {.lex_state = 10}, - [1963] = {.lex_state = 10}, - [1964] = {.lex_state = 10}, - [1965] = {.lex_state = 10}, - [1966] = {.lex_state = 10}, - [1967] = {.lex_state = 10}, - [1968] = {.lex_state = 10}, - [1969] = {.lex_state = 10}, - [1970] = {.lex_state = 10}, - [1971] = {.lex_state = 10}, - [1972] = {.lex_state = 10}, - [1973] = {.lex_state = 10}, - [1974] = {.lex_state = 10}, - [1975] = {.lex_state = 10}, - [1976] = {.lex_state = 10}, - [1977] = {.lex_state = 10}, - [1978] = {.lex_state = 10}, - [1979] = {.lex_state = 10}, - [1980] = {.lex_state = 10}, - [1981] = {.lex_state = 10}, - [1982] = {.lex_state = 10}, - [1983] = {.lex_state = 10}, - [1984] = {.lex_state = 10}, - [1985] = {.lex_state = 10}, - [1986] = {.lex_state = 10}, - [1987] = {.lex_state = 15}, - [1988] = {.lex_state = 15}, - [1989] = {.lex_state = 15}, - [1990] = {.lex_state = 15}, - [1991] = {.lex_state = 15}, - [1992] = {.lex_state = 15}, - [1993] = {.lex_state = 15}, - [1994] = {.lex_state = 15}, - [1995] = {.lex_state = 15}, - [1996] = {.lex_state = 15}, - [1997] = {.lex_state = 15}, - [1998] = {.lex_state = 15}, - [1999] = {.lex_state = 15}, - [2000] = {.lex_state = 15}, - [2001] = {.lex_state = 15}, - [2002] = {.lex_state = 0}, - [2003] = {.lex_state = 0}, - [2004] = {.lex_state = 15}, - [2005] = {.lex_state = 0}, - [2006] = {.lex_state = 15}, - [2007] = {.lex_state = 15}, - [2008] = {.lex_state = 0}, - [2009] = {.lex_state = 0}, - [2010] = {.lex_state = 0}, - [2011] = {.lex_state = 15}, - [2012] = {.lex_state = 0}, - [2013] = {.lex_state = 15}, - [2014] = {.lex_state = 15}, - [2015] = {.lex_state = 0}, - [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 15}, - [2018] = {.lex_state = 15}, - [2019] = {.lex_state = 0}, - [2020] = {.lex_state = 0}, - [2021] = {.lex_state = 15}, - [2022] = {.lex_state = 15}, - [2023] = {.lex_state = 0}, - [2024] = {.lex_state = 15}, - [2025] = {.lex_state = 0}, - [2026] = {.lex_state = 15}, - [2027] = {.lex_state = 0}, - [2028] = {.lex_state = 0}, - [2029] = {.lex_state = 0}, - [2030] = {.lex_state = 0}, - [2031] = {.lex_state = 0}, - [2032] = {.lex_state = 0}, - [2033] = {.lex_state = 0}, - [2034] = {.lex_state = 0}, - [2035] = {.lex_state = 0}, - [2036] = {.lex_state = 0}, - [2037] = {.lex_state = 0}, - [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 0}, - [2040] = {.lex_state = 0}, - [2041] = {.lex_state = 0}, - [2042] = {.lex_state = 0}, - [2043] = {.lex_state = 0}, - [2044] = {.lex_state = 0}, - [2045] = {.lex_state = 0}, - [2046] = {.lex_state = 0}, - [2047] = {.lex_state = 0}, - [2048] = {.lex_state = 0}, - [2049] = {.lex_state = 0}, - [2050] = {.lex_state = 0}, - [2051] = {.lex_state = 0}, - [2052] = {.lex_state = 0}, - [2053] = {.lex_state = 0}, - [2054] = {.lex_state = 0}, - [2055] = {.lex_state = 0}, - [2056] = {.lex_state = 0}, - [2057] = {.lex_state = 0}, - [2058] = {.lex_state = 0}, - [2059] = {.lex_state = 0}, - [2060] = {.lex_state = 0}, - [2061] = {.lex_state = 0}, - [2062] = {.lex_state = 0}, - [2063] = {.lex_state = 0}, - [2064] = {.lex_state = 0}, - [2065] = {.lex_state = 0}, - [2066] = {.lex_state = 0}, - [2067] = {.lex_state = 0}, - [2068] = {.lex_state = 0}, - [2069] = {.lex_state = 0}, - [2070] = {.lex_state = 0}, - [2071] = {.lex_state = 0}, - [2072] = {.lex_state = 0}, - [2073] = {.lex_state = 0}, - [2074] = {.lex_state = 0}, - [2075] = {.lex_state = 0}, - [2076] = {.lex_state = 0}, - [2077] = {.lex_state = 0}, - [2078] = {.lex_state = 0}, - [2079] = {.lex_state = 0}, - [2080] = {.lex_state = 0}, - [2081] = {.lex_state = 0}, - [2082] = {.lex_state = 0}, - [2083] = {.lex_state = 0}, - [2084] = {.lex_state = 0}, - [2085] = {.lex_state = 0}, - [2086] = {.lex_state = 0}, - [2087] = {.lex_state = 0}, - [2088] = {.lex_state = 0}, - [2089] = {.lex_state = 0}, - [2090] = {.lex_state = 0}, - [2091] = {.lex_state = 0}, - [2092] = {.lex_state = 0}, - [2093] = {.lex_state = 0}, - [2094] = {.lex_state = 0}, - [2095] = {.lex_state = 0}, - [2096] = {.lex_state = 0}, - [2097] = {.lex_state = 0}, - [2098] = {.lex_state = 0}, - [2099] = {.lex_state = 0}, - [2100] = {.lex_state = 0}, - [2101] = {.lex_state = 0}, - [2102] = {.lex_state = 0}, - [2103] = {.lex_state = 0}, - [2104] = {.lex_state = 0}, - [2105] = {.lex_state = 0}, - [2106] = {.lex_state = 0}, - [2107] = {.lex_state = 0}, - [2108] = {.lex_state = 0}, - [2109] = {.lex_state = 0}, - [2110] = {.lex_state = 0}, - [2111] = {.lex_state = 0}, - [2112] = {.lex_state = 0}, - [2113] = {.lex_state = 0}, - [2114] = {.lex_state = 0}, - [2115] = {.lex_state = 0}, - [2116] = {.lex_state = 0}, - [2117] = {.lex_state = 0}, - [2118] = {.lex_state = 0}, - [2119] = {.lex_state = 0}, - [2120] = {.lex_state = 0}, - [2121] = {.lex_state = 0}, - [2122] = {.lex_state = 0}, - [2123] = {.lex_state = 0}, - [2124] = {.lex_state = 0}, - [2125] = {.lex_state = 0}, - [2126] = {.lex_state = 0}, - [2127] = {.lex_state = 0}, - [2128] = {.lex_state = 0}, - [2129] = {.lex_state = 0}, - [2130] = {.lex_state = 0}, - [2131] = {.lex_state = 0}, - [2132] = {.lex_state = 0}, - [2133] = {.lex_state = 0}, - [2134] = {.lex_state = 0}, - [2135] = {.lex_state = 0}, - [2136] = {.lex_state = 0}, - [2137] = {.lex_state = 0}, - [2138] = {.lex_state = 0}, - [2139] = {.lex_state = 0}, - [2140] = {.lex_state = 0}, - [2141] = {.lex_state = 0}, - [2142] = {.lex_state = 0}, - [2143] = {.lex_state = 0}, - [2144] = {.lex_state = 0}, - [2145] = {.lex_state = 0}, - [2146] = {.lex_state = 0}, - [2147] = {.lex_state = 0}, - [2148] = {.lex_state = 0}, - [2149] = {.lex_state = 0}, - [2150] = {.lex_state = 0}, - [2151] = {.lex_state = 0}, - [2152] = {.lex_state = 0}, - [2153] = {.lex_state = 0}, - [2154] = {.lex_state = 0}, - [2155] = {.lex_state = 0}, - [2156] = {.lex_state = 0}, - [2157] = {.lex_state = 0}, - [2158] = {.lex_state = 0}, - [2159] = {.lex_state = 0}, - [2160] = {.lex_state = 0}, - [2161] = {.lex_state = 0}, - [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 0}, - [2164] = {.lex_state = 0}, - [2165] = {.lex_state = 0}, - [2166] = {.lex_state = 0}, - [2167] = {.lex_state = 0}, - [2168] = {.lex_state = 0}, - [2169] = {.lex_state = 0}, - [2170] = {.lex_state = 0}, - [2171] = {.lex_state = 0}, - [2172] = {.lex_state = 0}, - [2173] = {.lex_state = 0}, - [2174] = {.lex_state = 0}, - [2175] = {.lex_state = 0}, - [2176] = {.lex_state = 0}, - [2177] = {.lex_state = 0}, - [2178] = {.lex_state = 0}, - [2179] = {.lex_state = 0}, - [2180] = {.lex_state = 0}, - [2181] = {.lex_state = 0}, - [2182] = {.lex_state = 0}, - [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 0}, - [2185] = {.lex_state = 0}, - [2186] = {.lex_state = 0}, - [2187] = {.lex_state = 0}, - [2188] = {.lex_state = 0}, - [2189] = {.lex_state = 0}, - [2190] = {.lex_state = 0}, - [2191] = {.lex_state = 0}, - [2192] = {.lex_state = 0}, - [2193] = {.lex_state = 0}, - [2194] = {.lex_state = 0}, - [2195] = {.lex_state = 0}, - [2196] = {.lex_state = 0}, - [2197] = {.lex_state = 0}, - [2198] = {.lex_state = 0}, - [2199] = {.lex_state = 0}, - [2200] = {.lex_state = 0}, - [2201] = {.lex_state = 0}, - [2202] = {.lex_state = 0}, - [2203] = {.lex_state = 0}, - [2204] = {.lex_state = 0}, - [2205] = {.lex_state = 0}, - [2206] = {.lex_state = 0}, - [2207] = {.lex_state = 0}, - [2208] = {.lex_state = 0}, - [2209] = {.lex_state = 0}, - [2210] = {.lex_state = 0}, - [2211] = {.lex_state = 0}, - [2212] = {.lex_state = 0}, - [2213] = {.lex_state = 0}, - [2214] = {.lex_state = 0}, - [2215] = {.lex_state = 0}, - [2216] = {.lex_state = 0}, - [2217] = {.lex_state = 0}, - [2218] = {.lex_state = 0}, - [2219] = {.lex_state = 0}, - [2220] = {.lex_state = 0}, - [2221] = {.lex_state = 0}, - [2222] = {.lex_state = 0}, - [2223] = {.lex_state = 0}, - [2224] = {.lex_state = 0}, - [2225] = {.lex_state = 0}, - [2226] = {.lex_state = 0}, - [2227] = {.lex_state = 0}, - [2228] = {.lex_state = 0}, - [2229] = {.lex_state = 0}, - [2230] = {.lex_state = 0}, - [2231] = {.lex_state = 0}, - [2232] = {.lex_state = 0}, - [2233] = {.lex_state = 0}, - [2234] = {.lex_state = 0}, - [2235] = {.lex_state = 0}, - [2236] = {.lex_state = 0}, - [2237] = {.lex_state = 0}, - [2238] = {.lex_state = 0}, - [2239] = {.lex_state = 0}, - [2240] = {.lex_state = 0}, - [2241] = {.lex_state = 0}, - [2242] = {.lex_state = 0}, - [2243] = {.lex_state = 0}, - [2244] = {.lex_state = 0}, - [2245] = {.lex_state = 0}, - [2246] = {.lex_state = 0}, - [2247] = {.lex_state = 0}, - [2248] = {.lex_state = 0}, - [2249] = {.lex_state = 0}, - [2250] = {.lex_state = 0}, - [2251] = {.lex_state = 0}, - [2252] = {.lex_state = 0}, - [2253] = {.lex_state = 0}, - [2254] = {.lex_state = 0}, - [2255] = {.lex_state = 0}, - [2256] = {.lex_state = 0}, - [2257] = {.lex_state = 0}, - [2258] = {.lex_state = 0}, - [2259] = {.lex_state = 0}, - [2260] = {.lex_state = 0}, - [2261] = {.lex_state = 0}, - [2262] = {.lex_state = 0}, - [2263] = {.lex_state = 0}, - [2264] = {.lex_state = 0}, - [2265] = {.lex_state = 0}, - [2266] = {.lex_state = 0}, - [2267] = {.lex_state = 0}, - [2268] = {.lex_state = 0}, - [2269] = {.lex_state = 0}, - [2270] = {.lex_state = 0}, - [2271] = {.lex_state = 0}, - [2272] = {.lex_state = 0}, - [2273] = {.lex_state = 0}, - [2274] = {.lex_state = 0}, - [2275] = {.lex_state = 0}, - [2276] = {.lex_state = 0}, - [2277] = {.lex_state = 0}, - [2278] = {.lex_state = 0}, - [2279] = {.lex_state = 0}, - [2280] = {.lex_state = 0}, - [2281] = {.lex_state = 0}, - [2282] = {.lex_state = 0}, - [2283] = {.lex_state = 0}, - [2284] = {.lex_state = 0}, - [2285] = {.lex_state = 0}, - [2286] = {.lex_state = 0}, - [2287] = {.lex_state = 0}, - [2288] = {.lex_state = 0}, - [2289] = {.lex_state = 0}, - [2290] = {.lex_state = 0}, - [2291] = {.lex_state = 0}, - [2292] = {.lex_state = 0}, - [2293] = {.lex_state = 0}, - [2294] = {.lex_state = 0}, - [2295] = {.lex_state = 0}, - [2296] = {.lex_state = 0}, - [2297] = {.lex_state = 0}, - [2298] = {.lex_state = 0}, - [2299] = {.lex_state = 0}, - [2300] = {.lex_state = 0}, - [2301] = {.lex_state = 0}, - [2302] = {.lex_state = 0}, - [2303] = {.lex_state = 0}, - [2304] = {.lex_state = 0}, - [2305] = {.lex_state = 0}, - [2306] = {.lex_state = 0}, - [2307] = {.lex_state = 0}, - [2308] = {.lex_state = 0}, - [2309] = {.lex_state = 0}, - [2310] = {.lex_state = 0}, - [2311] = {.lex_state = 0}, - [2312] = {.lex_state = 0}, - [2313] = {.lex_state = 0}, - [2314] = {.lex_state = 0}, - [2315] = {.lex_state = 0}, - [2316] = {.lex_state = 0}, - [2317] = {.lex_state = 0}, - [2318] = {.lex_state = 0}, - [2319] = {.lex_state = 0}, - [2320] = {.lex_state = 0}, - [2321] = {.lex_state = 0}, - [2322] = {.lex_state = 0}, - [2323] = {.lex_state = 0}, - [2324] = {.lex_state = 0}, - [2325] = {.lex_state = 0}, - [2326] = {.lex_state = 0}, - [2327] = {.lex_state = 0}, - [2328] = {.lex_state = 0}, - [2329] = {.lex_state = 0}, - [2330] = {.lex_state = 0}, - [2331] = {.lex_state = 0}, - [2332] = {.lex_state = 0}, - [2333] = {.lex_state = 0}, - [2334] = {.lex_state = 0}, - [2335] = {.lex_state = 0}, - [2336] = {.lex_state = 0}, - [2337] = {.lex_state = 0}, - [2338] = {.lex_state = 0}, - [2339] = {.lex_state = 0}, - [2340] = {.lex_state = 0}, - [2341] = {.lex_state = 0}, - [2342] = {.lex_state = 0}, - [2343] = {.lex_state = 0}, - [2344] = {.lex_state = 0}, - [2345] = {.lex_state = 0}, - [2346] = {.lex_state = 0}, - [2347] = {.lex_state = 0}, - [2348] = {.lex_state = 0}, - [2349] = {.lex_state = 0}, - [2350] = {.lex_state = 0}, - [2351] = {.lex_state = 0}, - [2352] = {.lex_state = 0}, - [2353] = {.lex_state = 0}, - [2354] = {.lex_state = 0}, - [2355] = {.lex_state = 0}, - [2356] = {.lex_state = 0}, - [2357] = {.lex_state = 0}, - [2358] = {.lex_state = 0}, - [2359] = {.lex_state = 0}, - [2360] = {.lex_state = 0}, - [2361] = {.lex_state = 0}, - [2362] = {.lex_state = 0}, - [2363] = {.lex_state = 0}, - [2364] = {.lex_state = 0}, - [2365] = {.lex_state = 0}, - [2366] = {.lex_state = 0}, - [2367] = {.lex_state = 0}, - [2368] = {.lex_state = 0}, - [2369] = {.lex_state = 0}, - [2370] = {.lex_state = 0}, - [2371] = {.lex_state = 0}, - [2372] = {.lex_state = 0}, - [2373] = {.lex_state = 0}, - [2374] = {.lex_state = 0}, - [2375] = {.lex_state = 0}, - [2376] = {.lex_state = 0}, - [2377] = {.lex_state = 0}, - [2378] = {.lex_state = 0}, - [2379] = {.lex_state = 0}, - [2380] = {.lex_state = 0}, - [2381] = {.lex_state = 0}, - [2382] = {.lex_state = 0}, - [2383] = {.lex_state = 0}, - [2384] = {.lex_state = 0}, - [2385] = {.lex_state = 0}, - [2386] = {.lex_state = 0}, - [2387] = {.lex_state = 0}, - [2388] = {.lex_state = 0}, - [2389] = {.lex_state = 0}, - [2390] = {.lex_state = 0}, - [2391] = {.lex_state = 0}, - [2392] = {.lex_state = 0}, - [2393] = {.lex_state = 0}, - [2394] = {.lex_state = 0}, - [2395] = {.lex_state = 0}, - [2396] = {.lex_state = 0}, - [2397] = {.lex_state = 0}, - [2398] = {.lex_state = 0}, - [2399] = {.lex_state = 0}, - [2400] = {.lex_state = 0}, - [2401] = {.lex_state = 0}, - [2402] = {.lex_state = 0}, - [2403] = {.lex_state = 0}, - [2404] = {.lex_state = 0}, - [2405] = {.lex_state = 0}, - [2406] = {.lex_state = 0}, - [2407] = {.lex_state = 0}, - [2408] = {.lex_state = 0}, - [2409] = {.lex_state = 0}, - [2410] = {.lex_state = 0}, - [2411] = {.lex_state = 0}, - [2412] = {.lex_state = 0}, - [2413] = {.lex_state = 0}, - [2414] = {.lex_state = 0}, - [2415] = {.lex_state = 0}, - [2416] = {.lex_state = 0}, - [2417] = {.lex_state = 0}, - [2418] = {.lex_state = 0}, - [2419] = {.lex_state = 0}, - [2420] = {.lex_state = 0}, - [2421] = {.lex_state = 0}, - [2422] = {.lex_state = 0}, - [2423] = {.lex_state = 0}, - [2424] = {.lex_state = 0}, - [2425] = {.lex_state = 0}, - [2426] = {.lex_state = 0}, - [2427] = {.lex_state = 0}, - [2428] = {.lex_state = 0}, - [2429] = {.lex_state = 0}, - [2430] = {.lex_state = 0}, - [2431] = {.lex_state = 0}, - [2432] = {.lex_state = 0}, - [2433] = {.lex_state = 0}, - [2434] = {.lex_state = 0}, - [2435] = {.lex_state = 0}, - [2436] = {.lex_state = 0}, - [2437] = {.lex_state = 0}, - [2438] = {.lex_state = 0}, - [2439] = {.lex_state = 0}, - [2440] = {.lex_state = 0}, - [2441] = {.lex_state = 0}, - [2442] = {.lex_state = 0}, - [2443] = {.lex_state = 0}, - [2444] = {.lex_state = 0}, - [2445] = {.lex_state = 0}, - [2446] = {.lex_state = 0}, - [2447] = {.lex_state = 0}, - [2448] = {.lex_state = 0}, - [2449] = {.lex_state = 0}, - [2450] = {.lex_state = 0}, - [2451] = {.lex_state = 0}, - [2452] = {.lex_state = 0}, - [2453] = {.lex_state = 0}, - [2454] = {.lex_state = 0}, - [2455] = {.lex_state = 0}, - [2456] = {.lex_state = 0}, - [2457] = {.lex_state = 0}, - [2458] = {.lex_state = 0}, - [2459] = {.lex_state = 0}, - [2460] = {.lex_state = 0}, - [2461] = {.lex_state = 0}, - [2462] = {.lex_state = 0}, - [2463] = {.lex_state = 0}, - [2464] = {.lex_state = 0}, - [2465] = {.lex_state = 0}, - [2466] = {.lex_state = 0}, - [2467] = {.lex_state = 0}, - [2468] = {.lex_state = 0}, - [2469] = {.lex_state = 0}, - [2470] = {.lex_state = 0}, - [2471] = {.lex_state = 0}, - [2472] = {.lex_state = 0}, - [2473] = {.lex_state = 0}, - [2474] = {.lex_state = 0}, - [2475] = {.lex_state = 0}, - [2476] = {.lex_state = 0}, - [2477] = {.lex_state = 0}, - [2478] = {.lex_state = 0}, - [2479] = {.lex_state = 0}, - [2480] = {.lex_state = 0}, - [2481] = {.lex_state = 0}, - [2482] = {.lex_state = 0}, - [2483] = {.lex_state = 0}, - [2484] = {.lex_state = 0}, - [2485] = {.lex_state = 0}, - [2486] = {.lex_state = 0}, - [2487] = {.lex_state = 0}, - [2488] = {.lex_state = 0}, - [2489] = {.lex_state = 0}, - [2490] = {.lex_state = 0}, - [2491] = {.lex_state = 0}, - [2492] = {.lex_state = 0}, - [2493] = {.lex_state = 0}, - [2494] = {.lex_state = 0}, - [2495] = {.lex_state = 0}, - [2496] = {.lex_state = 0}, - [2497] = {.lex_state = 0}, - [2498] = {.lex_state = 0}, - [2499] = {.lex_state = 0}, - [2500] = {.lex_state = 0}, - [2501] = {.lex_state = 0}, - [2502] = {.lex_state = 0}, - [2503] = {.lex_state = 0}, - [2504] = {.lex_state = 0}, - [2505] = {.lex_state = 0}, - [2506] = {.lex_state = 0}, - [2507] = {.lex_state = 0}, - [2508] = {.lex_state = 0}, - [2509] = {.lex_state = 0}, - [2510] = {.lex_state = 0}, - [2511] = {.lex_state = 0}, - [2512] = {.lex_state = 0}, - [2513] = {.lex_state = 0}, - [2514] = {.lex_state = 0}, - [2515] = {.lex_state = 0}, - [2516] = {.lex_state = 0}, - [2517] = {.lex_state = 0}, - [2518] = {.lex_state = 0}, - [2519] = {.lex_state = 0}, - [2520] = {.lex_state = 0}, - [2521] = {.lex_state = 0}, - [2522] = {.lex_state = 0}, - [2523] = {.lex_state = 0}, - [2524] = {.lex_state = 0}, - [2525] = {.lex_state = 0}, - [2526] = {.lex_state = 0}, - [2527] = {.lex_state = 0}, - [2528] = {.lex_state = 0}, - [2529] = {.lex_state = 0}, - [2530] = {.lex_state = 0}, - [2531] = {.lex_state = 0}, - [2532] = {.lex_state = 0}, - [2533] = {.lex_state = 0}, - [2534] = {.lex_state = 0}, - [2535] = {.lex_state = 0}, - [2536] = {.lex_state = 0}, - [2537] = {.lex_state = 0}, - [2538] = {.lex_state = 0}, - [2539] = {.lex_state = 0}, - [2540] = {.lex_state = 0}, - [2541] = {.lex_state = 0}, - [2542] = {.lex_state = 0}, - [2543] = {.lex_state = 0}, - [2544] = {.lex_state = 0}, - [2545] = {.lex_state = 0}, - [2546] = {.lex_state = 0}, - [2547] = {.lex_state = 0}, - [2548] = {.lex_state = 0}, - [2549] = {.lex_state = 0}, - [2550] = {.lex_state = 0}, - [2551] = {.lex_state = 0}, - [2552] = {.lex_state = 0}, - [2553] = {.lex_state = 0}, - [2554] = {.lex_state = 0}, - [2555] = {.lex_state = 0}, - [2556] = {.lex_state = 0}, - [2557] = {.lex_state = 0}, - [2558] = {.lex_state = 0}, - [2559] = {.lex_state = 0}, - [2560] = {.lex_state = 0}, - [2561] = {.lex_state = 0}, - [2562] = {.lex_state = 0}, - [2563] = {.lex_state = 0}, - [2564] = {.lex_state = 0}, - [2565] = {.lex_state = 0}, - [2566] = {.lex_state = 0}, - [2567] = {.lex_state = 0}, - [2568] = {.lex_state = 0}, - [2569] = {.lex_state = 0}, - [2570] = {.lex_state = 0}, - [2571] = {.lex_state = 0}, - [2572] = {.lex_state = 0}, - [2573] = {.lex_state = 0}, - [2574] = {.lex_state = 0}, - [2575] = {.lex_state = 0}, - [2576] = {.lex_state = 15}, - [2577] = {.lex_state = 0}, - [2578] = {.lex_state = 0}, - [2579] = {.lex_state = 0}, - [2580] = {.lex_state = 0}, - [2581] = {.lex_state = 0}, - [2582] = {.lex_state = 0}, - [2583] = {.lex_state = 0}, - [2584] = {.lex_state = 0}, - [2585] = {.lex_state = 0}, - [2586] = {.lex_state = 0}, - [2587] = {.lex_state = 0}, - [2588] = {.lex_state = 0}, - [2589] = {.lex_state = 0}, - [2590] = {.lex_state = 0}, - [2591] = {.lex_state = 0}, - [2592] = {.lex_state = 0}, - [2593] = {.lex_state = 0}, - [2594] = {.lex_state = 0}, - [2595] = {.lex_state = 0}, - [2596] = {.lex_state = 0}, - [2597] = {.lex_state = 0}, - [2598] = {.lex_state = 0}, - [2599] = {.lex_state = 0}, - [2600] = {.lex_state = 0}, - [2601] = {.lex_state = 0}, - [2602] = {.lex_state = 0}, - [2603] = {.lex_state = 0}, - [2604] = {.lex_state = 0}, - [2605] = {.lex_state = 0}, - [2606] = {.lex_state = 0}, - [2607] = {.lex_state = 0}, - [2608] = {.lex_state = 0}, - [2609] = {.lex_state = 0}, - [2610] = {.lex_state = 0}, - [2611] = {.lex_state = 0}, - [2612] = {.lex_state = 0}, - [2613] = {.lex_state = 0}, - [2614] = {.lex_state = 0}, - [2615] = {.lex_state = 0}, - [2616] = {.lex_state = 0}, - [2617] = {.lex_state = 0}, - [2618] = {.lex_state = 0}, - [2619] = {.lex_state = 0}, - [2620] = {.lex_state = 0}, - [2621] = {.lex_state = 0}, - [2622] = {.lex_state = 0}, - [2623] = {.lex_state = 0}, - [2624] = {.lex_state = 0}, - [2625] = {.lex_state = 0}, - [2626] = {.lex_state = 0}, - [2627] = {.lex_state = 0}, - [2628] = {.lex_state = 0}, - [2629] = {.lex_state = 0}, - [2630] = {.lex_state = 0}, - [2631] = {.lex_state = 0}, - [2632] = {.lex_state = 0}, - [2633] = {.lex_state = 0}, - [2634] = {.lex_state = 0}, - [2635] = {.lex_state = 0}, - [2636] = {.lex_state = 0}, - [2637] = {.lex_state = 0}, - [2638] = {.lex_state = 0}, - [2639] = {.lex_state = 0}, - [2640] = {.lex_state = 0}, - [2641] = {.lex_state = 0}, - [2642] = {.lex_state = 0}, - [2643] = {.lex_state = 0}, - [2644] = {.lex_state = 0}, - [2645] = {.lex_state = 0}, - [2646] = {.lex_state = 0}, - [2647] = {.lex_state = 0}, - [2648] = {.lex_state = 0}, - [2649] = {.lex_state = 0}, - [2650] = {.lex_state = 0}, - [2651] = {.lex_state = 0}, - [2652] = {.lex_state = 0}, - [2653] = {.lex_state = 0}, - [2654] = {.lex_state = 0}, - [2655] = {.lex_state = 0}, - [2656] = {.lex_state = 0}, - [2657] = {.lex_state = 0}, - [2658] = {.lex_state = 0}, - [2659] = {.lex_state = 0}, - [2660] = {.lex_state = 0}, - [2661] = {.lex_state = 0}, - [2662] = {.lex_state = 0}, - [2663] = {.lex_state = 0}, - [2664] = {.lex_state = 0}, - [2665] = {.lex_state = 0}, - [2666] = {.lex_state = 0}, - [2667] = {.lex_state = 0}, - [2668] = {.lex_state = 0}, - [2669] = {.lex_state = 0}, - [2670] = {.lex_state = 0}, - [2671] = {.lex_state = 0}, - [2672] = {.lex_state = 0}, - [2673] = {.lex_state = 0}, - [2674] = {.lex_state = 0}, - [2675] = {.lex_state = 0}, - [2676] = {.lex_state = 0}, - [2677] = {.lex_state = 0}, - [2678] = {.lex_state = 0}, - [2679] = {.lex_state = 0}, - [2680] = {.lex_state = 0}, - [2681] = {.lex_state = 0}, - [2682] = {.lex_state = 0}, - [2683] = {.lex_state = 0}, - [2684] = {.lex_state = 0}, - [2685] = {.lex_state = 0}, - [2686] = {.lex_state = 0}, - [2687] = {.lex_state = 0}, - [2688] = {.lex_state = 0}, - [2689] = {.lex_state = 0}, - [2690] = {.lex_state = 0}, - [2691] = {.lex_state = 0}, - [2692] = {.lex_state = 0}, - [2693] = {.lex_state = 0}, - [2694] = {.lex_state = 0}, - [2695] = {.lex_state = 0}, - [2696] = {.lex_state = 0}, - [2697] = {.lex_state = 0}, - [2698] = {.lex_state = 0}, - [2699] = {.lex_state = 0}, - [2700] = {.lex_state = 0}, - [2701] = {.lex_state = 0}, - [2702] = {.lex_state = 0}, - [2703] = {.lex_state = 0}, - [2704] = {.lex_state = 0}, - [2705] = {.lex_state = 0}, - [2706] = {.lex_state = 0}, - [2707] = {.lex_state = 0}, - [2708] = {.lex_state = 0}, - [2709] = {.lex_state = 0}, - [2710] = {.lex_state = 0}, - [2711] = {.lex_state = 0}, - [2712] = {.lex_state = 0}, - [2713] = {.lex_state = 0}, - [2714] = {.lex_state = 0}, - [2715] = {.lex_state = 0}, - [2716] = {.lex_state = 0}, - [2717] = {.lex_state = 0}, - [2718] = {.lex_state = 0}, - [2719] = {.lex_state = 0}, - [2720] = {.lex_state = 0}, - [2721] = {.lex_state = 0}, - [2722] = {.lex_state = 0}, - [2723] = {.lex_state = 0}, - [2724] = {.lex_state = 0}, - [2725] = {.lex_state = 0}, - [2726] = {.lex_state = 0}, - [2727] = {.lex_state = 0}, - [2728] = {.lex_state = 0}, - [2729] = {.lex_state = 0}, - [2730] = {.lex_state = 0}, - [2731] = {.lex_state = 0}, - [2732] = {.lex_state = 0}, - [2733] = {.lex_state = 0}, - [2734] = {.lex_state = 0}, - [2735] = {.lex_state = 0}, - [2736] = {.lex_state = 0}, - [2737] = {.lex_state = 0}, - [2738] = {.lex_state = 0}, - [2739] = {.lex_state = 0}, - [2740] = {.lex_state = 0}, - [2741] = {.lex_state = 0}, - [2742] = {.lex_state = 0}, - [2743] = {.lex_state = 0}, - [2744] = {.lex_state = 0}, - [2745] = {.lex_state = 0}, - [2746] = {.lex_state = 0}, - [2747] = {.lex_state = 0}, - [2748] = {.lex_state = 0}, - [2749] = {.lex_state = 0}, - [2750] = {.lex_state = 0}, - [2751] = {.lex_state = 0}, - [2752] = {.lex_state = 0}, - [2753] = {.lex_state = 0}, - [2754] = {.lex_state = 0}, - [2755] = {.lex_state = 0}, - [2756] = {.lex_state = 0}, - [2757] = {.lex_state = 0}, - [2758] = {.lex_state = 0}, - [2759] = {.lex_state = 0}, - [2760] = {.lex_state = 0}, - [2761] = {.lex_state = 0}, - [2762] = {.lex_state = 0}, - [2763] = {.lex_state = 0}, - [2764] = {.lex_state = 0}, - [2765] = {.lex_state = 0}, - [2766] = {.lex_state = 0}, - [2767] = {.lex_state = 0}, - [2768] = {.lex_state = 0}, - [2769] = {.lex_state = 0}, - [2770] = {.lex_state = 0}, - [2771] = {.lex_state = 0}, - [2772] = {.lex_state = 0}, - [2773] = {.lex_state = 0}, - [2774] = {.lex_state = 0}, - [2775] = {.lex_state = 0}, - [2776] = {.lex_state = 0}, - [2777] = {.lex_state = 0}, - [2778] = {.lex_state = 0}, - [2779] = {.lex_state = 0}, - [2780] = {.lex_state = 0}, - [2781] = {.lex_state = 0}, - [2782] = {.lex_state = 0}, - [2783] = {.lex_state = 0}, - [2784] = {.lex_state = 0}, - [2785] = {.lex_state = 0}, - [2786] = {.lex_state = 0}, - [2787] = {.lex_state = 0}, - [2788] = {.lex_state = 0}, - [2789] = {.lex_state = 0}, - [2790] = {.lex_state = 0}, - [2791] = {.lex_state = 0}, - [2792] = {.lex_state = 0}, - [2793] = {.lex_state = 0}, - [2794] = {.lex_state = 0}, - [2795] = {.lex_state = 0}, - [2796] = {.lex_state = 0}, - [2797] = {.lex_state = 0}, - [2798] = {.lex_state = 0}, - [2799] = {.lex_state = 0}, - [2800] = {.lex_state = 0}, - [2801] = {.lex_state = 0}, - [2802] = {.lex_state = 0}, - [2803] = {.lex_state = 0}, - [2804] = {.lex_state = 0}, - [2805] = {.lex_state = 15}, - [2806] = {.lex_state = 0}, - [2807] = {.lex_state = 0}, - [2808] = {.lex_state = 0}, - [2809] = {.lex_state = 0}, - [2810] = {.lex_state = 0}, - [2811] = {.lex_state = 0}, - [2812] = {.lex_state = 0}, - [2813] = {.lex_state = 0}, - [2814] = {.lex_state = 0}, - [2815] = {.lex_state = 0}, - [2816] = {.lex_state = 0}, - [2817] = {.lex_state = 0}, - [2818] = {.lex_state = 0}, - [2819] = {.lex_state = 0}, - [2820] = {.lex_state = 0}, - [2821] = {.lex_state = 0}, - [2822] = {.lex_state = 0}, - [2823] = {.lex_state = 0}, - [2824] = {.lex_state = 15}, - [2825] = {.lex_state = 0}, - [2826] = {.lex_state = 15}, - [2827] = {.lex_state = 15}, - [2828] = {.lex_state = 15}, - [2829] = {.lex_state = 0}, - [2830] = {.lex_state = 0}, - [2831] = {.lex_state = 15}, - [2832] = {.lex_state = 0}, - [2833] = {.lex_state = 15}, - [2834] = {.lex_state = 15}, - [2835] = {.lex_state = 15}, - [2836] = {.lex_state = 15}, - [2837] = {.lex_state = 15}, - [2838] = {.lex_state = 15}, - [2839] = {.lex_state = 15}, - [2840] = {.lex_state = 15}, - [2841] = {.lex_state = 15}, - [2842] = {.lex_state = 15}, - [2843] = {.lex_state = 15}, - [2844] = {.lex_state = 15}, - [2845] = {.lex_state = 15}, - [2846] = {.lex_state = 15}, - [2847] = {.lex_state = 15}, - [2848] = {.lex_state = 0}, - [2849] = {.lex_state = 0}, - [2850] = {.lex_state = 0}, - [2851] = {.lex_state = 15}, - [2852] = {.lex_state = 0}, - [2853] = {.lex_state = 15}, - [2854] = {.lex_state = 0}, - [2855] = {.lex_state = 15}, - [2856] = {.lex_state = 15}, - [2857] = {.lex_state = 15}, - [2858] = {.lex_state = 0}, - [2859] = {.lex_state = 0}, - [2860] = {.lex_state = 0}, - [2861] = {.lex_state = 15}, - [2862] = {.lex_state = 0}, - [2863] = {.lex_state = 0}, - [2864] = {.lex_state = 15}, - [2865] = {.lex_state = 15}, - [2866] = {.lex_state = 15}, - [2867] = {.lex_state = 15}, - [2868] = {.lex_state = 15}, - [2869] = {.lex_state = 15}, - [2870] = {.lex_state = 0}, - [2871] = {.lex_state = 15}, - [2872] = {.lex_state = 15}, - [2873] = {.lex_state = 0}, - [2874] = {.lex_state = 0}, - [2875] = {.lex_state = 0}, - [2876] = {.lex_state = 0}, - [2877] = {.lex_state = 15}, - [2878] = {.lex_state = 15}, - [2879] = {.lex_state = 0}, - [2880] = {.lex_state = 0}, - [2881] = {.lex_state = 0}, - [2882] = {.lex_state = 0}, - [2883] = {.lex_state = 15}, - [2884] = {.lex_state = 0}, - [2885] = {.lex_state = 15}, - [2886] = {.lex_state = 15}, - [2887] = {.lex_state = 15}, - [2888] = {.lex_state = 15}, - [2889] = {.lex_state = 15}, - [2890] = {.lex_state = 15}, - [2891] = {.lex_state = 15}, - [2892] = {.lex_state = 15}, - [2893] = {.lex_state = 15}, - [2894] = {.lex_state = 15}, - [2895] = {.lex_state = 15}, - [2896] = {.lex_state = 15}, - [2897] = {.lex_state = 15}, - [2898] = {.lex_state = 15}, - [2899] = {.lex_state = 15}, - [2900] = {.lex_state = 0}, - [2901] = {.lex_state = 0}, - [2902] = {.lex_state = 0}, - [2903] = {.lex_state = 0}, - [2904] = {.lex_state = 0}, - [2905] = {.lex_state = 0}, - [2906] = {.lex_state = 0}, - [2907] = {.lex_state = 0}, - [2908] = {.lex_state = 0}, - [2909] = {.lex_state = 0}, - [2910] = {.lex_state = 15}, - [2911] = {.lex_state = 15}, - [2912] = {.lex_state = 15}, - [2913] = {.lex_state = 15}, - [2914] = {.lex_state = 0}, - [2915] = {.lex_state = 0}, - [2916] = {.lex_state = 0}, - [2917] = {.lex_state = 0}, - [2918] = {.lex_state = 0}, - [2919] = {.lex_state = 0}, - [2920] = {.lex_state = 15}, - [2921] = {.lex_state = 0}, - [2922] = {.lex_state = 15}, - [2923] = {.lex_state = 0}, - [2924] = {.lex_state = 0}, - [2925] = {.lex_state = 0}, - [2926] = {.lex_state = 0}, - [2927] = {.lex_state = 0}, - [2928] = {.lex_state = 0}, - [2929] = {.lex_state = 0}, - [2930] = {.lex_state = 0}, - [2931] = {.lex_state = 0}, - [2932] = {.lex_state = 0}, - [2933] = {.lex_state = 0}, - [2934] = {.lex_state = 0}, - [2935] = {.lex_state = 0}, - [2936] = {.lex_state = 0}, - [2937] = {.lex_state = 0}, - [2938] = {.lex_state = 0}, - [2939] = {.lex_state = 0}, - [2940] = {.lex_state = 0}, - [2941] = {.lex_state = 0}, - [2942] = {.lex_state = 0}, - [2943] = {.lex_state = 0}, - [2944] = {.lex_state = 0}, - [2945] = {.lex_state = 15}, - [2946] = {.lex_state = 0}, - [2947] = {.lex_state = 0}, - [2948] = {.lex_state = 15}, - [2949] = {.lex_state = 15}, - [2950] = {.lex_state = 0}, - [2951] = {.lex_state = 15}, - [2952] = {.lex_state = 15}, - [2953] = {.lex_state = 15}, - [2954] = {.lex_state = 15}, - [2955] = {.lex_state = 15}, - [2956] = {.lex_state = 15}, - [2957] = {.lex_state = 0}, - [2958] = {.lex_state = 15}, - [2959] = {.lex_state = 15}, - [2960] = {.lex_state = 15}, - [2961] = {.lex_state = 15}, - [2962] = {.lex_state = 15}, - [2963] = {.lex_state = 15}, - [2964] = {.lex_state = 15}, - [2965] = {.lex_state = 15}, - [2966] = {.lex_state = 15}, - [2967] = {.lex_state = 15}, - [2968] = {.lex_state = 15}, - [2969] = {.lex_state = 15}, - [2970] = {.lex_state = 15}, - [2971] = {.lex_state = 15}, - [2972] = {.lex_state = 15}, - [2973] = {.lex_state = 15}, - [2974] = {.lex_state = 15}, - [2975] = {.lex_state = 15}, - [2976] = {.lex_state = 0}, - [2977] = {.lex_state = 0}, - [2978] = {.lex_state = 15}, - [2979] = {.lex_state = 0}, - [2980] = {.lex_state = 15}, - [2981] = {.lex_state = 0}, - [2982] = {.lex_state = 15}, - [2983] = {.lex_state = 0}, - [2984] = {.lex_state = 0}, - [2985] = {.lex_state = 0}, - [2986] = {.lex_state = 15}, - [2987] = {.lex_state = 0}, - [2988] = {.lex_state = 0}, - [2989] = {.lex_state = 15}, - [2990] = {.lex_state = 0}, - [2991] = {.lex_state = 15}, - [2992] = {.lex_state = 15}, - [2993] = {.lex_state = 15}, - [2994] = {.lex_state = 0}, - [2995] = {.lex_state = 0}, - [2996] = {.lex_state = 0}, - [2997] = {.lex_state = 0}, - [2998] = {.lex_state = 0}, - [2999] = {.lex_state = 15}, - [3000] = {.lex_state = 0}, - [3001] = {.lex_state = 15}, - [3002] = {.lex_state = 15}, - [3003] = {.lex_state = 0}, - [3004] = {.lex_state = 0}, - [3005] = {.lex_state = 0}, - [3006] = {.lex_state = 0}, - [3007] = {.lex_state = 15}, - [3008] = {.lex_state = 15}, - [3009] = {.lex_state = 0}, - [3010] = {.lex_state = 0}, - [3011] = {.lex_state = 15}, - [3012] = {.lex_state = 15}, - [3013] = {.lex_state = 0}, - [3014] = {.lex_state = 0}, - [3015] = {.lex_state = 15}, - [3016] = {.lex_state = 15}, - [3017] = {.lex_state = 15}, - [3018] = {.lex_state = 15}, - [3019] = {.lex_state = 15}, - [3020] = {.lex_state = 15}, - [3021] = {.lex_state = 15}, - [3022] = {.lex_state = 0}, - [3023] = {.lex_state = 0}, - [3024] = {.lex_state = 15}, - [3025] = {.lex_state = 15}, - [3026] = {.lex_state = 15}, - [3027] = {.lex_state = 0}, - [3028] = {.lex_state = 0}, - [3029] = {.lex_state = 0}, - [3030] = {.lex_state = 0}, - [3031] = {.lex_state = 0}, - [3032] = {.lex_state = 15}, - [3033] = {.lex_state = 15}, - [3034] = {.lex_state = 15}, - [3035] = {.lex_state = 15}, - [3036] = {.lex_state = 0}, - [3037] = {.lex_state = 15}, - [3038] = {.lex_state = 15}, - [3039] = {.lex_state = 15}, - [3040] = {.lex_state = 15}, - [3041] = {.lex_state = 15}, - [3042] = {.lex_state = 15}, - [3043] = {.lex_state = 15}, - [3044] = {.lex_state = 15}, - [3045] = {.lex_state = 0}, - [3046] = {.lex_state = 0}, - [3047] = {.lex_state = 15}, - [3048] = {.lex_state = 0}, - [3049] = {.lex_state = 0}, - [3050] = {.lex_state = 0}, - [3051] = {.lex_state = 15}, - [3052] = {.lex_state = 15}, - [3053] = {.lex_state = 0}, - [3054] = {.lex_state = 0}, - [3055] = {.lex_state = 15}, - [3056] = {.lex_state = 0}, - [3057] = {.lex_state = 0}, - [3058] = {.lex_state = 15}, - [3059] = {.lex_state = 0}, - [3060] = {.lex_state = 15}, - [3061] = {.lex_state = 0}, - [3062] = {.lex_state = 0}, - [3063] = {.lex_state = 0}, - [3064] = {.lex_state = 15}, - [3065] = {.lex_state = 0}, - [3066] = {.lex_state = 0}, - [3067] = {.lex_state = 0}, - [3068] = {.lex_state = 0}, - [3069] = {.lex_state = 15}, - [3070] = {.lex_state = 0}, - [3071] = {.lex_state = 0}, - [3072] = {.lex_state = 0}, - [3073] = {.lex_state = 0}, - [3074] = {.lex_state = 0}, - [3075] = {.lex_state = 0}, - [3076] = {.lex_state = 0}, - [3077] = {.lex_state = 0}, - [3078] = {.lex_state = 0}, - [3079] = {.lex_state = 15}, - [3080] = {.lex_state = 0}, - [3081] = {.lex_state = 0}, - [3082] = {.lex_state = 15}, - [3083] = {.lex_state = 15}, - [3084] = {.lex_state = 15}, - [3085] = {.lex_state = 15}, - [3086] = {.lex_state = 15}, - [3087] = {.lex_state = 15}, - [3088] = {.lex_state = 15}, - [3089] = {.lex_state = 15}, - [3090] = {.lex_state = 15}, - [3091] = {.lex_state = 15}, - [3092] = {.lex_state = 15}, - [3093] = {.lex_state = 15}, - [3094] = {.lex_state = 15}, - [3095] = {.lex_state = 15}, - [3096] = {.lex_state = 15}, - [3097] = {.lex_state = 15}, - [3098] = {.lex_state = 15}, - [3099] = {.lex_state = 0}, - [3100] = {.lex_state = 15}, - [3101] = {.lex_state = 0}, - [3102] = {.lex_state = 15}, - [3103] = {.lex_state = 0}, - [3104] = {.lex_state = 15}, - [3105] = {.lex_state = 0}, - [3106] = {.lex_state = 15}, - [3107] = {.lex_state = 0}, - [3108] = {.lex_state = 0}, - [3109] = {.lex_state = 0}, - [3110] = {.lex_state = 15}, - [3111] = {.lex_state = 0}, - [3112] = {.lex_state = 0}, - [3113] = {.lex_state = 15}, - [3114] = {.lex_state = 0}, - [3115] = {.lex_state = 15}, - [3116] = {.lex_state = 0}, - [3117] = {.lex_state = 15}, - [3118] = {.lex_state = 0}, - [3119] = {.lex_state = 0}, - [3120] = {.lex_state = 0}, - [3121] = {.lex_state = 0}, - [3122] = {.lex_state = 0}, - [3123] = {.lex_state = 0}, - [3124] = {.lex_state = 0}, - [3125] = {.lex_state = 0}, - [3126] = {.lex_state = 0}, - [3127] = {.lex_state = 0}, - [3128] = {.lex_state = 0}, - [3129] = {.lex_state = 0}, - [3130] = {.lex_state = 0}, - [3131] = {.lex_state = 0}, - [3132] = {.lex_state = 15}, - [3133] = {.lex_state = 0}, - [3134] = {.lex_state = 15}, - [3135] = {.lex_state = 0}, - [3136] = {.lex_state = 0}, - [3137] = {.lex_state = 0}, - [3138] = {.lex_state = 15}, - [3139] = {.lex_state = 0}, - [3140] = {.lex_state = 0}, - [3141] = {.lex_state = 0}, - [3142] = {.lex_state = 15}, - [3143] = {.lex_state = 0}, - [3144] = {.lex_state = 0}, - [3145] = {.lex_state = 0}, - [3146] = {.lex_state = 0}, - [3147] = {.lex_state = 0}, - [3148] = {.lex_state = 15}, - [3149] = {.lex_state = 15}, - [3150] = {.lex_state = 15}, - [3151] = {.lex_state = 0}, - [3152] = {.lex_state = 0}, - [3153] = {.lex_state = 0}, - [3154] = {.lex_state = 0}, - [3155] = {.lex_state = 0}, - [3156] = {.lex_state = 15}, - [3157] = {.lex_state = 15}, - [3158] = {.lex_state = 15}, - [3159] = {.lex_state = 15}, - [3160] = {.lex_state = 0}, - [3161] = {.lex_state = 15}, - [3162] = {.lex_state = 15}, - [3163] = {.lex_state = 15}, - [3164] = {.lex_state = 15}, - [3165] = {.lex_state = 15}, - [3166] = {.lex_state = 15}, - [3167] = {.lex_state = 15}, - [3168] = {.lex_state = 15}, - [3169] = {.lex_state = 15}, - [3170] = {.lex_state = 0}, - [3171] = {.lex_state = 15}, - [3172] = {.lex_state = 0}, - [3173] = {.lex_state = 15}, - [3174] = {.lex_state = 0}, - [3175] = {.lex_state = 0}, - [3176] = {.lex_state = 15}, - [3177] = {.lex_state = 0}, - [3178] = {.lex_state = 0}, - [3179] = {.lex_state = 15}, - [3180] = {.lex_state = 0}, - [3181] = {.lex_state = 0}, - [3182] = {.lex_state = 15}, - [3183] = {.lex_state = 0}, - [3184] = {.lex_state = 0}, - [3185] = {.lex_state = 15}, - [3186] = {.lex_state = 0}, - [3187] = {.lex_state = 0}, - [3188] = {.lex_state = 0}, - [3189] = {.lex_state = 0}, - [3190] = {.lex_state = 0}, - [3191] = {.lex_state = 0}, - [3192] = {.lex_state = 0}, - [3193] = {.lex_state = 15}, - [3194] = {.lex_state = 15}, - [3195] = {.lex_state = 0}, - [3196] = {.lex_state = 15}, - [3197] = {.lex_state = 15}, - [3198] = {.lex_state = 15}, - [3199] = {.lex_state = 0}, - [3200] = {.lex_state = 15}, - [3201] = {.lex_state = 0}, - [3202] = {.lex_state = 15}, - [3203] = {.lex_state = 15}, - [3204] = {.lex_state = 0}, - [3205] = {.lex_state = 15}, - [3206] = {.lex_state = 15}, - [3207] = {.lex_state = 15}, - [3208] = {.lex_state = 15}, - [3209] = {.lex_state = 15}, - [3210] = {.lex_state = 15}, - [3211] = {.lex_state = 15}, - [3212] = {.lex_state = 15}, - [3213] = {.lex_state = 15}, - [3214] = {.lex_state = 15}, - [3215] = {.lex_state = 15}, - [3216] = {.lex_state = 15}, - [3217] = {.lex_state = 15}, - [3218] = {.lex_state = 15}, - [3219] = {.lex_state = 15}, - [3220] = {.lex_state = 15}, - [3221] = {.lex_state = 0}, - [3222] = {.lex_state = 0}, - [3223] = {.lex_state = 0}, - [3224] = {.lex_state = 15}, - [3225] = {.lex_state = 15}, - [3226] = {.lex_state = 0}, - [3227] = {.lex_state = 15}, - [3228] = {.lex_state = 0}, - [3229] = {.lex_state = 15}, - [3230] = {.lex_state = 0}, - [3231] = {.lex_state = 0}, - [3232] = {.lex_state = 0}, - [3233] = {.lex_state = 15}, - [3234] = {.lex_state = 0}, - [3235] = {.lex_state = 0}, - [3236] = {.lex_state = 15}, - [3237] = {.lex_state = 0}, - [3238] = {.lex_state = 15}, - [3239] = {.lex_state = 0}, - [3240] = {.lex_state = 15}, - [3241] = {.lex_state = 0}, - [3242] = {.lex_state = 0}, - [3243] = {.lex_state = 0}, - [3244] = {.lex_state = 0}, - [3245] = {.lex_state = 0}, - [3246] = {.lex_state = 0}, - [3247] = {.lex_state = 0}, - [3248] = {.lex_state = 0}, - [3249] = {.lex_state = 0}, - [3250] = {.lex_state = 0}, - [3251] = {.lex_state = 0}, - [3252] = {.lex_state = 0}, - [3253] = {.lex_state = 0}, - [3254] = {.lex_state = 0}, - [3255] = {.lex_state = 15}, - [3256] = {.lex_state = 0}, - [3257] = {.lex_state = 0}, - [3258] = {.lex_state = 0}, - [3259] = {.lex_state = 0}, - [3260] = {.lex_state = 0}, - [3261] = {.lex_state = 0}, - [3262] = {.lex_state = 0}, - [3263] = {.lex_state = 0}, - [3264] = {.lex_state = 0}, - [3265] = {.lex_state = 0}, - [3266] = {.lex_state = 0}, - [3267] = {.lex_state = 0}, - [3268] = {.lex_state = 0}, - [3269] = {.lex_state = 15}, - [3270] = {.lex_state = 0}, - [3271] = {.lex_state = 0}, - [3272] = {.lex_state = 0}, - [3273] = {.lex_state = 0}, - [3274] = {.lex_state = 0}, - [3275] = {.lex_state = 0}, - [3276] = {.lex_state = 0}, - [3277] = {.lex_state = 0}, - [3278] = {.lex_state = 0}, - [3279] = {.lex_state = 0}, - [3280] = {.lex_state = 0}, - [3281] = {.lex_state = 0}, - [3282] = {.lex_state = 0}, - [3283] = {.lex_state = 0}, - [3284] = {.lex_state = 15}, - [3285] = {.lex_state = 0}, - [3286] = {.lex_state = 0}, - [3287] = {.lex_state = 0}, - [3288] = {.lex_state = 0}, - [3289] = {.lex_state = 0}, - [3290] = {.lex_state = 15}, - [3291] = {.lex_state = 15}, - [3292] = {.lex_state = 15}, - [3293] = {.lex_state = 0}, - [3294] = {.lex_state = 15}, - [3295] = {.lex_state = 0}, - [3296] = {.lex_state = 15}, - [3297] = {.lex_state = 0}, - [3298] = {.lex_state = 0}, - [3299] = {.lex_state = 15}, - [3300] = {.lex_state = 0}, - [3301] = {.lex_state = 0}, - [3302] = {.lex_state = 15}, - [3303] = {.lex_state = 0}, - [3304] = {.lex_state = 0}, - [3305] = {.lex_state = 15}, - [3306] = {.lex_state = 0}, - [3307] = {.lex_state = 0}, - [3308] = {.lex_state = 0}, - [3309] = {.lex_state = 0}, - [3310] = {.lex_state = 0}, - [3311] = {.lex_state = 0}, - [3312] = {.lex_state = 0}, - [3313] = {.lex_state = 0}, - [3314] = {.lex_state = 0}, - [3315] = {.lex_state = 0}, - [3316] = {.lex_state = 0}, - [3317] = {.lex_state = 0}, - [3318] = {.lex_state = 0}, - [3319] = {.lex_state = 0}, - [3320] = {.lex_state = 15}, - [3321] = {.lex_state = 0}, - [3322] = {.lex_state = 0}, - [3323] = {.lex_state = 0}, - [3324] = {.lex_state = 15}, - [3325] = {.lex_state = 15}, - [3326] = {.lex_state = 0}, - [3327] = {.lex_state = 15}, - [3328] = {.lex_state = 15}, - [3329] = {.lex_state = 15}, - [3330] = {.lex_state = 15}, - [3331] = {.lex_state = 15}, - [3332] = {.lex_state = 15}, - [3333] = {.lex_state = 15}, - [3334] = {.lex_state = 15}, - [3335] = {.lex_state = 15}, - [3336] = {.lex_state = 15}, - [3337] = {.lex_state = 15}, - [3338] = {.lex_state = 15}, - [3339] = {.lex_state = 15}, - [3340] = {.lex_state = 15}, - [3341] = {.lex_state = 15}, - [3342] = {.lex_state = 15}, - [3343] = {.lex_state = 15}, - [3344] = {.lex_state = 15}, - [3345] = {.lex_state = 15}, - [3346] = {.lex_state = 15}, - [3347] = {.lex_state = 15}, - [3348] = {.lex_state = 15}, - [3349] = {.lex_state = 15}, - [3350] = {.lex_state = 15}, - [3351] = {.lex_state = 15}, - [3352] = {.lex_state = 15}, - [3353] = {.lex_state = 15}, - [3354] = {.lex_state = 15}, - [3355] = {.lex_state = 15}, - [3356] = {.lex_state = 15}, - [3357] = {.lex_state = 15}, - [3358] = {.lex_state = 15}, - [3359] = {.lex_state = 15}, - [3360] = {.lex_state = 15}, - [3361] = {.lex_state = 15}, - [3362] = {.lex_state = 15}, - [3363] = {.lex_state = 15}, - [3364] = {.lex_state = 0}, - [3365] = {.lex_state = 15}, - [3366] = {.lex_state = 15}, - [3367] = {.lex_state = 0}, - [3368] = {.lex_state = 15}, - [3369] = {.lex_state = 0}, - [3370] = {.lex_state = 0}, - [3371] = {.lex_state = 15}, - [3372] = {.lex_state = 15}, - [3373] = {.lex_state = 0}, - [3374] = {.lex_state = 0}, - [3375] = {.lex_state = 0}, - [3376] = {.lex_state = 0}, - [3377] = {.lex_state = 15}, - [3378] = {.lex_state = 0}, - [3379] = {.lex_state = 0}, - [3380] = {.lex_state = 0}, - [3381] = {.lex_state = 0}, - [3382] = {.lex_state = 0}, - [3383] = {.lex_state = 0}, - [3384] = {.lex_state = 0}, - [3385] = {.lex_state = 0}, - [3386] = {.lex_state = 0}, - [3387] = {.lex_state = 0}, - [3388] = {.lex_state = 0}, - [3389] = {.lex_state = 0}, - [3390] = {.lex_state = 15}, - [3391] = {.lex_state = 0}, - [3392] = {.lex_state = 0}, - [3393] = {.lex_state = 0}, - [3394] = {.lex_state = 0}, - [3395] = {.lex_state = 0}, - [3396] = {.lex_state = 0}, - [3397] = {.lex_state = 0}, - [3398] = {.lex_state = 0}, - [3399] = {.lex_state = 15}, - [3400] = {.lex_state = 15}, - [3401] = {.lex_state = 0}, - [3402] = {.lex_state = 15}, - [3403] = {.lex_state = 0}, - [3404] = {.lex_state = 15}, - [3405] = {.lex_state = 15}, - [3406] = {.lex_state = 15}, - [3407] = {.lex_state = 0}, - [3408] = {.lex_state = 15}, - [3409] = {.lex_state = 0}, - [3410] = {.lex_state = 0}, - [3411] = {.lex_state = 0}, - [3412] = {.lex_state = 0}, - [3413] = {.lex_state = 0}, - [3414] = {.lex_state = 0}, - [3415] = {.lex_state = 0}, - [3416] = {.lex_state = 15}, - [3417] = {.lex_state = 0}, - [3418] = {.lex_state = 0}, - [3419] = {.lex_state = 0}, - [3420] = {.lex_state = 0}, - [3421] = {.lex_state = 15}, - [3422] = {.lex_state = 0}, - [3423] = {.lex_state = 0}, - [3424] = {.lex_state = 0}, - [3425] = {.lex_state = 0}, - [3426] = {.lex_state = 0}, - [3427] = {.lex_state = 0}, - [3428] = {.lex_state = 0}, - [3429] = {.lex_state = 0}, - [3430] = {.lex_state = 0}, - [3431] = {.lex_state = 0}, - [3432] = {.lex_state = 0}, - [3433] = {.lex_state = 15}, - [3434] = {.lex_state = 0}, - [3435] = {.lex_state = 0}, - [3436] = {.lex_state = 0}, - [3437] = {.lex_state = 15}, - [3438] = {.lex_state = 15}, - [3439] = {.lex_state = 15}, - [3440] = {.lex_state = 15}, - [3441] = {.lex_state = 15}, - [3442] = {.lex_state = 15}, - [3443] = {.lex_state = 15}, - [3444] = {.lex_state = 0}, - [3445] = {.lex_state = 0}, - [3446] = {.lex_state = 0}, - [3447] = {.lex_state = 0}, - [3448] = {.lex_state = 0}, - [3449] = {.lex_state = 0}, - [3450] = {.lex_state = 0}, - [3451] = {.lex_state = 0}, - [3452] = {.lex_state = 0}, - [3453] = {.lex_state = 0}, - [3454] = {.lex_state = 0}, - [3455] = {.lex_state = 0}, - [3456] = {.lex_state = 0}, - [3457] = {.lex_state = 0}, - [3458] = {.lex_state = 0}, - [3459] = {.lex_state = 0}, - [3460] = {.lex_state = 0}, - [3461] = {.lex_state = 0}, - [3462] = {.lex_state = 15}, - [3463] = {.lex_state = 15}, - [3464] = {.lex_state = 15}, - [3465] = {.lex_state = 15}, - [3466] = {.lex_state = 15}, - [3467] = {.lex_state = 15}, - [3468] = {.lex_state = 0}, - [3469] = {.lex_state = 0}, - [3470] = {.lex_state = 0}, - [3471] = {.lex_state = 0}, - [3472] = {.lex_state = 15}, - [3473] = {.lex_state = 15}, - [3474] = {.lex_state = 0}, - [3475] = {.lex_state = 15}, - [3476] = {.lex_state = 0}, - [3477] = {.lex_state = 0}, - [3478] = {.lex_state = 0}, - [3479] = {.lex_state = 0}, - [3480] = {.lex_state = 15}, - [3481] = {.lex_state = 15}, - [3482] = {.lex_state = 0}, - [3483] = {.lex_state = 15}, - [3484] = {.lex_state = 0}, - [3485] = {.lex_state = 0}, - [3486] = {.lex_state = 0}, - [3487] = {.lex_state = 15}, - [3488] = {.lex_state = 0}, - [3489] = {.lex_state = 0}, - [3490] = {.lex_state = 0}, - [3491] = {.lex_state = 0}, - [3492] = {.lex_state = 0}, - [3493] = {.lex_state = 0}, - [3494] = {.lex_state = 0}, - [3495] = {.lex_state = 0}, - [3496] = {.lex_state = 0}, - [3497] = {.lex_state = 0}, - [3498] = {.lex_state = 0}, - [3499] = {.lex_state = 0}, - [3500] = {.lex_state = 0}, - [3501] = {.lex_state = 0}, - [3502] = {.lex_state = 0}, - [3503] = {.lex_state = 0}, - [3504] = {.lex_state = 0}, - [3505] = {.lex_state = 0}, - [3506] = {.lex_state = 0}, - [3507] = {.lex_state = 0}, - [3508] = {.lex_state = 0}, - [3509] = {.lex_state = 0}, - [3510] = {.lex_state = 0}, - [3511] = {.lex_state = 0}, - [3512] = {.lex_state = 0}, - [3513] = {.lex_state = 0}, - [3514] = {.lex_state = 0}, - [3515] = {.lex_state = 15}, - [3516] = {.lex_state = 15}, - [3517] = {.lex_state = 15}, - [3518] = {.lex_state = 15}, - [3519] = {.lex_state = 15}, - [3520] = {.lex_state = 15}, - [3521] = {.lex_state = 0}, - [3522] = {.lex_state = 0}, - [3523] = {.lex_state = 0}, - [3524] = {.lex_state = 0}, - [3525] = {.lex_state = 15}, - [3526] = {.lex_state = 15}, - [3527] = {.lex_state = 0}, - [3528] = {.lex_state = 15}, - [3529] = {.lex_state = 0}, - [3530] = {.lex_state = 0}, - [3531] = {.lex_state = 0}, - [3532] = {.lex_state = 0}, - [3533] = {.lex_state = 15}, - [3534] = {.lex_state = 15}, - [3535] = {.lex_state = 15}, - [3536] = {.lex_state = 15}, - [3537] = {.lex_state = 15}, - [3538] = {.lex_state = 0}, - [3539] = {.lex_state = 0}, - [3540] = {.lex_state = 15}, - [3541] = {.lex_state = 0}, - [3542] = {.lex_state = 0}, - [3543] = {.lex_state = 0}, - [3544] = {.lex_state = 0}, - [3545] = {.lex_state = 0}, - [3546] = {.lex_state = 0}, - [3547] = {.lex_state = 0}, - [3548] = {.lex_state = 0}, - [3549] = {.lex_state = 0}, - [3550] = {.lex_state = 0}, - [3551] = {.lex_state = 0}, - [3552] = {.lex_state = 0}, - [3553] = {.lex_state = 0}, - [3554] = {.lex_state = 0}, - [3555] = {.lex_state = 0}, - [3556] = {.lex_state = 0}, - [3557] = {.lex_state = 0}, - [3558] = {.lex_state = 0}, - [3559] = {.lex_state = 0}, - [3560] = {.lex_state = 0}, - [3561] = {.lex_state = 0}, - [3562] = {.lex_state = 0}, - [3563] = {.lex_state = 0}, - [3564] = {.lex_state = 0}, - [3565] = {.lex_state = 0}, - [3566] = {.lex_state = 0}, - [3567] = {.lex_state = 0}, - [3568] = {.lex_state = 15}, - [3569] = {.lex_state = 15}, - [3570] = {.lex_state = 15}, - [3571] = {.lex_state = 15}, - [3572] = {.lex_state = 15}, - [3573] = {.lex_state = 15}, - [3574] = {.lex_state = 0}, - [3575] = {.lex_state = 0}, - [3576] = {.lex_state = 0}, - [3577] = {.lex_state = 0}, - [3578] = {.lex_state = 15}, - [3579] = {.lex_state = 15}, - [3580] = {.lex_state = 0}, - [3581] = {.lex_state = 15}, - [3582] = {.lex_state = 0}, - [3583] = {.lex_state = 0}, - [3584] = {.lex_state = 0}, - [3585] = {.lex_state = 0}, - [3586] = {.lex_state = 15}, - [3587] = {.lex_state = 15}, - [3588] = {.lex_state = 0}, - [3589] = {.lex_state = 15}, - [3590] = {.lex_state = 0}, - [3591] = {.lex_state = 0}, - [3592] = {.lex_state = 0}, - [3593] = {.lex_state = 15}, - [3594] = {.lex_state = 0}, - [3595] = {.lex_state = 0}, - [3596] = {.lex_state = 15}, - [3597] = {.lex_state = 0}, - [3598] = {.lex_state = 0}, - [3599] = {.lex_state = 0}, - [3600] = {.lex_state = 15}, - [3601] = {.lex_state = 13}, - [3602] = {.lex_state = 0}, - [3603] = {.lex_state = 0}, - [3604] = {.lex_state = 0}, - [3605] = {.lex_state = 0}, - [3606] = {.lex_state = 0}, - [3607] = {.lex_state = 0}, - [3608] = {.lex_state = 0}, - [3609] = {.lex_state = 0}, - [3610] = {.lex_state = 0}, - [3611] = {.lex_state = 0}, - [3612] = {.lex_state = 0}, - [3613] = {.lex_state = 0}, - [3614] = {.lex_state = 0}, - [3615] = {.lex_state = 0}, - [3616] = {.lex_state = 0}, - [3617] = {.lex_state = 0}, - [3618] = {.lex_state = 0}, - [3619] = {.lex_state = 0}, - [3620] = {.lex_state = 0}, - [3621] = {.lex_state = 15}, - [3622] = {.lex_state = 15}, - [3623] = {.lex_state = 15}, - [3624] = {.lex_state = 15}, - [3625] = {.lex_state = 15}, - [3626] = {.lex_state = 15}, - [3627] = {.lex_state = 0}, - [3628] = {.lex_state = 0}, - [3629] = {.lex_state = 0}, - [3630] = {.lex_state = 0}, - [3631] = {.lex_state = 15}, - [3632] = {.lex_state = 15}, - [3633] = {.lex_state = 0}, - [3634] = {.lex_state = 15}, - [3635] = {.lex_state = 0}, - [3636] = {.lex_state = 0}, - [3637] = {.lex_state = 0}, - [3638] = {.lex_state = 0}, - [3639] = {.lex_state = 0}, - [3640] = {.lex_state = 15}, - [3641] = {.lex_state = 0}, - [3642] = {.lex_state = 15}, - [3643] = {.lex_state = 0}, - [3644] = {.lex_state = 0}, - [3645] = {.lex_state = 0}, - [3646] = {.lex_state = 15}, - [3647] = {.lex_state = 0}, - [3648] = {.lex_state = 0}, - [3649] = {.lex_state = 0}, - [3650] = {.lex_state = 0}, - [3651] = {.lex_state = 0}, - [3652] = {.lex_state = 0}, - [3653] = {.lex_state = 0}, - [3654] = {.lex_state = 0}, - [3655] = {.lex_state = 0}, - [3656] = {.lex_state = 0}, - [3657] = {.lex_state = 0}, - [3658] = {.lex_state = 0}, - [3659] = {.lex_state = 0}, - [3660] = {.lex_state = 0}, - [3661] = {.lex_state = 0}, - [3662] = {.lex_state = 0}, - [3663] = {.lex_state = 0}, - [3664] = {.lex_state = 0}, - [3665] = {.lex_state = 0}, - [3666] = {.lex_state = 0}, - [3667] = {.lex_state = 0}, - [3668] = {.lex_state = 0}, - [3669] = {.lex_state = 0}, - [3670] = {.lex_state = 0}, - [3671] = {.lex_state = 0}, - [3672] = {.lex_state = 0}, - [3673] = {.lex_state = 0}, - [3674] = {.lex_state = 15}, - [3675] = {.lex_state = 15}, - [3676] = {.lex_state = 15}, - [3677] = {.lex_state = 15}, - [3678] = {.lex_state = 15}, - [3679] = {.lex_state = 15}, - [3680] = {.lex_state = 0}, - [3681] = {.lex_state = 0}, - [3682] = {.lex_state = 0}, - [3683] = {.lex_state = 0}, - [3684] = {.lex_state = 15}, - [3685] = {.lex_state = 15}, - [3686] = {.lex_state = 0}, - [3687] = {.lex_state = 15}, - [3688] = {.lex_state = 0}, - [3689] = {.lex_state = 0}, - [3690] = {.lex_state = 0}, - [3691] = {.lex_state = 0}, - [3692] = {.lex_state = 15}, - [3693] = {.lex_state = 15}, - [3694] = {.lex_state = 0}, - [3695] = {.lex_state = 15}, - [3696] = {.lex_state = 0}, - [3697] = {.lex_state = 0}, - [3698] = {.lex_state = 0}, - [3699] = {.lex_state = 15}, - [3700] = {.lex_state = 15}, - [3701] = {.lex_state = 0}, - [3702] = {.lex_state = 0}, - [3703] = {.lex_state = 0}, - [3704] = {.lex_state = 15}, - [3705] = {.lex_state = 0}, - [3706] = {.lex_state = 0}, - [3707] = {.lex_state = 0}, - [3708] = {.lex_state = 0}, - [3709] = {.lex_state = 0}, - [3710] = {.lex_state = 0}, - [3711] = {.lex_state = 0}, - [3712] = {.lex_state = 0}, - [3713] = {.lex_state = 0}, - [3714] = {.lex_state = 0}, - [3715] = {.lex_state = 0}, - [3716] = {.lex_state = 0}, - [3717] = {.lex_state = 0}, - [3718] = {.lex_state = 0}, - [3719] = {.lex_state = 0}, - [3720] = {.lex_state = 0}, - [3721] = {.lex_state = 0}, - [3722] = {.lex_state = 0}, - [3723] = {.lex_state = 0}, - [3724] = {.lex_state = 0}, - [3725] = {.lex_state = 0}, - [3726] = {.lex_state = 0}, - [3727] = {.lex_state = 15}, - [3728] = {.lex_state = 15}, - [3729] = {.lex_state = 15}, - [3730] = {.lex_state = 15}, - [3731] = {.lex_state = 15}, - [3732] = {.lex_state = 15}, - [3733] = {.lex_state = 0}, - [3734] = {.lex_state = 0}, - [3735] = {.lex_state = 0}, - [3736] = {.lex_state = 0}, - [3737] = {.lex_state = 15}, - [3738] = {.lex_state = 15}, - [3739] = {.lex_state = 0}, - [3740] = {.lex_state = 15}, - [3741] = {.lex_state = 0}, - [3742] = {.lex_state = 0}, - [3743] = {.lex_state = 0}, - [3744] = {.lex_state = 0}, - [3745] = {.lex_state = 15}, - [3746] = {.lex_state = 15}, - [3747] = {.lex_state = 0}, - [3748] = {.lex_state = 15}, - [3749] = {.lex_state = 0}, - [3750] = {.lex_state = 0}, - [3751] = {.lex_state = 0}, - [3752] = {.lex_state = 15}, - [3753] = {.lex_state = 0}, - [3754] = {.lex_state = 0}, - [3755] = {.lex_state = 0}, - [3756] = {.lex_state = 0}, - [3757] = {.lex_state = 0}, - [3758] = {.lex_state = 0}, - [3759] = {.lex_state = 0}, - [3760] = {.lex_state = 0}, - [3761] = {.lex_state = 0}, - [3762] = {.lex_state = 0}, - [3763] = {.lex_state = 0}, - [3764] = {.lex_state = 0}, - [3765] = {.lex_state = 15}, - [3766] = {.lex_state = 0}, - [3767] = {.lex_state = 0}, - [3768] = {.lex_state = 0}, - [3769] = {.lex_state = 0}, - [3770] = {.lex_state = 0}, - [3771] = {.lex_state = 0}, - [3772] = {.lex_state = 0}, - [3773] = {.lex_state = 0}, - [3774] = {.lex_state = 0}, - [3775] = {.lex_state = 0}, - [3776] = {.lex_state = 0}, - [3777] = {.lex_state = 0}, - [3778] = {.lex_state = 0}, - [3779] = {.lex_state = 0}, - [3780] = {.lex_state = 15}, - [3781] = {.lex_state = 15}, - [3782] = {.lex_state = 15}, - [3783] = {.lex_state = 15}, - [3784] = {.lex_state = 15}, - [3785] = {.lex_state = 15}, - [3786] = {.lex_state = 0}, - [3787] = {.lex_state = 0}, - [3788] = {.lex_state = 0}, - [3789] = {.lex_state = 0}, - [3790] = {.lex_state = 15}, - [3791] = {.lex_state = 15}, - [3792] = {.lex_state = 0}, - [3793] = {.lex_state = 15}, - [3794] = {.lex_state = 0}, - [3795] = {.lex_state = 0}, - [3796] = {.lex_state = 0}, - [3797] = {.lex_state = 0}, - [3798] = {.lex_state = 15}, - [3799] = {.lex_state = 15}, - [3800] = {.lex_state = 0}, - [3801] = {.lex_state = 15}, - [3802] = {.lex_state = 0}, - [3803] = {.lex_state = 0}, - [3804] = {.lex_state = 0}, - [3805] = {.lex_state = 15}, - [3806] = {.lex_state = 0}, - [3807] = {.lex_state = 0}, - [3808] = {.lex_state = 0}, - [3809] = {.lex_state = 0}, - [3810] = {.lex_state = 0}, - [3811] = {.lex_state = 0}, - [3812] = {.lex_state = 0}, - [3813] = {.lex_state = 0}, - [3814] = {.lex_state = 0}, - [3815] = {.lex_state = 0}, - [3816] = {.lex_state = 0}, - [3817] = {.lex_state = 0}, - [3818] = {.lex_state = 0}, - [3819] = {.lex_state = 0}, - [3820] = {.lex_state = 0}, - [3821] = {.lex_state = 0}, - [3822] = {.lex_state = 0}, - [3823] = {.lex_state = 15}, - [3824] = {.lex_state = 0}, - [3825] = {.lex_state = 0}, - [3826] = {.lex_state = 0}, - [3827] = {.lex_state = 0}, - [3828] = {.lex_state = 0}, - [3829] = {.lex_state = 0}, - [3830] = {.lex_state = 0}, - [3831] = {.lex_state = 0}, - [3832] = {.lex_state = 0}, - [3833] = {.lex_state = 15}, - [3834] = {.lex_state = 15}, - [3835] = {.lex_state = 15}, - [3836] = {.lex_state = 15}, - [3837] = {.lex_state = 15}, - [3838] = {.lex_state = 15}, - [3839] = {.lex_state = 0}, - [3840] = {.lex_state = 0}, - [3841] = {.lex_state = 0}, - [3842] = {.lex_state = 0}, - [3843] = {.lex_state = 15}, - [3844] = {.lex_state = 15}, - [3845] = {.lex_state = 0}, - [3846] = {.lex_state = 15}, - [3847] = {.lex_state = 0}, - [3848] = {.lex_state = 15}, - [3849] = {.lex_state = 0}, - [3850] = {.lex_state = 15}, - [3851] = {.lex_state = 15}, - [3852] = {.lex_state = 15}, - [3853] = {.lex_state = 15}, - [3854] = {.lex_state = 15}, - [3855] = {.lex_state = 15}, - [3856] = {.lex_state = 0}, - [3857] = {.lex_state = 0}, - [3858] = {.lex_state = 15}, - [3859] = {.lex_state = 13}, - [3860] = {.lex_state = 13}, - [3861] = {.lex_state = 13}, - [3862] = {.lex_state = 15}, - [3863] = {.lex_state = 15}, - [3864] = {.lex_state = 0}, - [3865] = {.lex_state = 0}, - [3866] = {.lex_state = 0}, - [3867] = {.lex_state = 0}, - [3868] = {.lex_state = 0}, - [3869] = {.lex_state = 15}, - [3870] = {.lex_state = 0}, - [3871] = {.lex_state = 0}, - [3872] = {.lex_state = 0}, - [3873] = {.lex_state = 15}, - [3874] = {.lex_state = 0}, - [3875] = {.lex_state = 0}, - [3876] = {.lex_state = 0}, - [3877] = {.lex_state = 0}, - [3878] = {.lex_state = 0}, - [3879] = {.lex_state = 0}, - [3880] = {.lex_state = 0}, - [3881] = {.lex_state = 0}, - [3882] = {.lex_state = 0}, - [3883] = {.lex_state = 0}, - [3884] = {.lex_state = 0}, - [3885] = {.lex_state = 0}, - [3886] = {.lex_state = 15}, - [3887] = {.lex_state = 15}, - [3888] = {.lex_state = 15}, - [3889] = {.lex_state = 15}, - [3890] = {.lex_state = 15}, - [3891] = {.lex_state = 15}, - [3892] = {.lex_state = 0}, - [3893] = {.lex_state = 0}, - [3894] = {.lex_state = 0}, - [3895] = {.lex_state = 0}, - [3896] = {.lex_state = 15}, - [3897] = {.lex_state = 15}, - [3898] = {.lex_state = 0}, - [3899] = {.lex_state = 15}, - [3900] = {.lex_state = 0}, - [3901] = {.lex_state = 0}, - [3902] = {.lex_state = 0}, - [3903] = {.lex_state = 0}, - [3904] = {.lex_state = 15}, - [3905] = {.lex_state = 15}, - [3906] = {.lex_state = 0}, - [3907] = {.lex_state = 15}, - [3908] = {.lex_state = 0}, - [3909] = {.lex_state = 0}, - [3910] = {.lex_state = 0}, - [3911] = {.lex_state = 15}, - [3912] = {.lex_state = 0}, - [3913] = {.lex_state = 0}, - [3914] = {.lex_state = 15}, - [3915] = {.lex_state = 15}, - [3916] = {.lex_state = 0}, - [3917] = {.lex_state = 0}, - [3918] = {.lex_state = 0}, - [3919] = {.lex_state = 0}, - [3920] = {.lex_state = 0}, - [3921] = {.lex_state = 0}, - [3922] = {.lex_state = 0}, - [3923] = {.lex_state = 0}, - [3924] = {.lex_state = 0}, - [3925] = {.lex_state = 0}, - [3926] = {.lex_state = 0}, - [3927] = {.lex_state = 0}, - [3928] = {.lex_state = 0}, - [3929] = {.lex_state = 0}, - [3930] = {.lex_state = 0}, - [3931] = {.lex_state = 0}, - [3932] = {.lex_state = 0}, - [3933] = {.lex_state = 0}, - [3934] = {.lex_state = 0}, - [3935] = {.lex_state = 0}, - [3936] = {.lex_state = 0}, - [3937] = {.lex_state = 0}, - [3938] = {.lex_state = 0}, - [3939] = {.lex_state = 15}, - [3940] = {.lex_state = 15}, - [3941] = {.lex_state = 15}, - [3942] = {.lex_state = 15}, - [3943] = {.lex_state = 15}, - [3944] = {.lex_state = 15}, - [3945] = {.lex_state = 0}, - [3946] = {.lex_state = 0}, - [3947] = {.lex_state = 0}, - [3948] = {.lex_state = 0}, - [3949] = {.lex_state = 15}, - [3950] = {.lex_state = 15}, - [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 15}, - [3953] = {.lex_state = 0}, - [3954] = {.lex_state = 0}, - [3955] = {.lex_state = 0}, - [3956] = {.lex_state = 0}, - [3957] = {.lex_state = 0}, - [3958] = {.lex_state = 15}, - [3959] = {.lex_state = 0}, - [3960] = {.lex_state = 15}, - [3961] = {.lex_state = 0}, - [3962] = {.lex_state = 0}, - [3963] = {.lex_state = 0}, - [3964] = {.lex_state = 15}, - [3965] = {.lex_state = 0}, - [3966] = {.lex_state = 0}, - [3967] = {.lex_state = 0}, - [3968] = {.lex_state = 0}, - [3969] = {.lex_state = 0}, - [3970] = {.lex_state = 0}, - [3971] = {.lex_state = 15}, - [3972] = {.lex_state = 15}, - [3973] = {.lex_state = 0}, - [3974] = {.lex_state = 0}, - [3975] = {.lex_state = 15}, - [3976] = {.lex_state = 0}, - [3977] = {.lex_state = 15}, - [3978] = {.lex_state = 0}, - [3979] = {.lex_state = 15}, - [3980] = {.lex_state = 0}, - [3981] = {.lex_state = 0}, - [3982] = {.lex_state = 0}, - [3983] = {.lex_state = 0}, - [3984] = {.lex_state = 0}, - [3985] = {.lex_state = 0}, - [3986] = {.lex_state = 0}, - [3987] = {.lex_state = 0}, - [3988] = {.lex_state = 0}, - [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 0}, - [3991] = {.lex_state = 0}, - [3992] = {.lex_state = 15}, - [3993] = {.lex_state = 15}, - [3994] = {.lex_state = 15}, - [3995] = {.lex_state = 15}, - [3996] = {.lex_state = 15}, - [3997] = {.lex_state = 15}, - [3998] = {.lex_state = 0}, - [3999] = {.lex_state = 0}, - [4000] = {.lex_state = 0}, - [4001] = {.lex_state = 0}, - [4002] = {.lex_state = 15}, - [4003] = {.lex_state = 15}, - [4004] = {.lex_state = 0}, - [4005] = {.lex_state = 15}, - [4006] = {.lex_state = 0}, - [4007] = {.lex_state = 0}, - [4008] = {.lex_state = 0}, - [4009] = {.lex_state = 0}, - [4010] = {.lex_state = 15}, - [4011] = {.lex_state = 15}, - [4012] = {.lex_state = 15}, - [4013] = {.lex_state = 15}, - [4014] = {.lex_state = 0}, - [4015] = {.lex_state = 0}, - [4016] = {.lex_state = 0}, - [4017] = {.lex_state = 15}, - [4018] = {.lex_state = 0}, - [4019] = {.lex_state = 0}, - [4020] = {.lex_state = 0}, - [4021] = {.lex_state = 0}, - [4022] = {.lex_state = 0}, - [4023] = {.lex_state = 0}, - [4024] = {.lex_state = 0}, - [4025] = {.lex_state = 0}, - [4026] = {.lex_state = 0}, - [4027] = {.lex_state = 15}, - [4028] = {.lex_state = 0}, - [4029] = {.lex_state = 15}, - [4030] = {.lex_state = 13}, - [4031] = {.lex_state = 13}, - [4032] = {.lex_state = 0}, - [4033] = {.lex_state = 0}, - [4034] = {.lex_state = 15}, - [4035] = {.lex_state = 0}, - [4036] = {.lex_state = 0}, - [4037] = {.lex_state = 0}, - [4038] = {.lex_state = 0}, - [4039] = {.lex_state = 0}, - [4040] = {.lex_state = 0}, - [4041] = {.lex_state = 0}, - [4042] = {.lex_state = 13}, - [4043] = {.lex_state = 15}, - [4044] = {.lex_state = 0}, - [4045] = {.lex_state = 0}, - [4046] = {.lex_state = 0}, - [4047] = {.lex_state = 0}, - [4048] = {.lex_state = 0}, - [4049] = {.lex_state = 0}, - [4050] = {.lex_state = 15}, - [4051] = {.lex_state = 13}, - [4052] = {.lex_state = 13}, - [4053] = {.lex_state = 0}, - [4054] = {.lex_state = 0}, - [4055] = {.lex_state = 15}, - [4056] = {.lex_state = 0}, - [4057] = {.lex_state = 0}, - [4058] = {.lex_state = 0}, - [4059] = {.lex_state = 0}, - [4060] = {.lex_state = 0}, - [4061] = {.lex_state = 0}, - [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 13}, - [4064] = {.lex_state = 15}, - [4065] = {.lex_state = 0}, - [4066] = {.lex_state = 0}, - [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 0}, - [4069] = {.lex_state = 0}, - [4070] = {.lex_state = 0}, - [4071] = {.lex_state = 15}, - [4072] = {.lex_state = 13}, - [4073] = {.lex_state = 13}, - [4074] = {.lex_state = 0}, - [4075] = {.lex_state = 0}, - [4076] = {.lex_state = 15}, - [4077] = {.lex_state = 0}, - [4078] = {.lex_state = 0}, - [4079] = {.lex_state = 0}, - [4080] = {.lex_state = 0}, - [4081] = {.lex_state = 0}, - [4082] = {.lex_state = 0}, - [4083] = {.lex_state = 0}, - [4084] = {.lex_state = 13}, - [4085] = {.lex_state = 15}, - [4086] = {.lex_state = 0}, - [4087] = {.lex_state = 0}, - [4088] = {.lex_state = 0}, - [4089] = {.lex_state = 0}, - [4090] = {.lex_state = 0}, - [4091] = {.lex_state = 0}, - [4092] = {.lex_state = 15}, - [4093] = {.lex_state = 13}, - [4094] = {.lex_state = 13}, - [4095] = {.lex_state = 0}, - [4096] = {.lex_state = 0}, - [4097] = {.lex_state = 15}, - [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 0}, - [4100] = {.lex_state = 0}, - [4101] = {.lex_state = 0}, - [4102] = {.lex_state = 0}, - [4103] = {.lex_state = 0}, - [4104] = {.lex_state = 0}, - [4105] = {.lex_state = 13}, - [4106] = {.lex_state = 15}, - [4107] = {.lex_state = 0}, - [4108] = {.lex_state = 0}, - [4109] = {.lex_state = 0}, - [4110] = {.lex_state = 0}, - [4111] = {.lex_state = 15}, - [4112] = {.lex_state = 0}, - [4113] = {.lex_state = 15}, - [4114] = {.lex_state = 13}, - [4115] = {.lex_state = 13}, - [4116] = {.lex_state = 0}, - [4117] = {.lex_state = 0}, - [4118] = {.lex_state = 15}, - [4119] = {.lex_state = 0}, - [4120] = {.lex_state = 0}, - [4121] = {.lex_state = 0}, - [4122] = {.lex_state = 0}, - [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 0}, - [4125] = {.lex_state = 0}, - [4126] = {.lex_state = 13}, - [4127] = {.lex_state = 15}, - [4128] = {.lex_state = 0}, - [4129] = {.lex_state = 0}, - [4130] = {.lex_state = 0}, - [4131] = {.lex_state = 0}, - [4132] = {.lex_state = 15}, - [4133] = {.lex_state = 0}, - [4134] = {.lex_state = 15}, - [4135] = {.lex_state = 13}, - [4136] = {.lex_state = 13}, - [4137] = {.lex_state = 0}, - [4138] = {.lex_state = 0}, - [4139] = {.lex_state = 15}, - [4140] = {.lex_state = 0}, - [4141] = {.lex_state = 0}, - [4142] = {.lex_state = 0}, - [4143] = {.lex_state = 0}, - [4144] = {.lex_state = 0}, - [4145] = {.lex_state = 0}, - [4146] = {.lex_state = 0}, - [4147] = {.lex_state = 13}, - [4148] = {.lex_state = 15}, - [4149] = {.lex_state = 0}, - [4150] = {.lex_state = 0}, - [4151] = {.lex_state = 0}, - [4152] = {.lex_state = 0}, - [4153] = {.lex_state = 0}, - [4154] = {.lex_state = 0}, - [4155] = {.lex_state = 15}, - [4156] = {.lex_state = 13}, - [4157] = {.lex_state = 13}, - [4158] = {.lex_state = 0}, - [4159] = {.lex_state = 0}, - [4160] = {.lex_state = 15}, - [4161] = {.lex_state = 0}, - [4162] = {.lex_state = 0}, - [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 0}, - [4165] = {.lex_state = 0}, - [4166] = {.lex_state = 0}, - [4167] = {.lex_state = 0}, - [4168] = {.lex_state = 13}, - [4169] = {.lex_state = 15}, - [4170] = {.lex_state = 0}, - [4171] = {.lex_state = 0}, - [4172] = {.lex_state = 0}, - [4173] = {.lex_state = 0}, - [4174] = {.lex_state = 0}, - [4175] = {.lex_state = 0}, - [4176] = {.lex_state = 15}, - [4177] = {.lex_state = 13}, - [4178] = {.lex_state = 13}, - [4179] = {.lex_state = 0}, - [4180] = {.lex_state = 0}, - [4181] = {.lex_state = 15}, - [4182] = {.lex_state = 0}, - [4183] = {.lex_state = 0}, - [4184] = {.lex_state = 0}, - [4185] = {.lex_state = 0}, - [4186] = {.lex_state = 0}, - [4187] = {.lex_state = 0}, - [4188] = {.lex_state = 0}, - [4189] = {.lex_state = 13}, - [4190] = {.lex_state = 15}, - [4191] = {.lex_state = 0}, - [4192] = {.lex_state = 0}, - [4193] = {.lex_state = 0}, - [4194] = {.lex_state = 0}, - [4195] = {.lex_state = 0}, - [4196] = {.lex_state = 0}, - [4197] = {.lex_state = 15}, - [4198] = {.lex_state = 13}, - [4199] = {.lex_state = 13}, - [4200] = {.lex_state = 0}, - [4201] = {.lex_state = 0}, - [4202] = {.lex_state = 15}, - [4203] = {.lex_state = 0}, - [4204] = {.lex_state = 0}, - [4205] = {.lex_state = 0}, - [4206] = {.lex_state = 0}, - [4207] = {.lex_state = 0}, - [4208] = {.lex_state = 0}, - [4209] = {.lex_state = 0}, - [4210] = {.lex_state = 13}, - [4211] = {.lex_state = 15}, - [4212] = {.lex_state = 0}, - [4213] = {.lex_state = 0}, - [4214] = {.lex_state = 0}, - [4215] = {.lex_state = 0}, - [4216] = {.lex_state = 0}, - [4217] = {.lex_state = 0}, - [4218] = {.lex_state = 15}, - [4219] = {.lex_state = 13}, - [4220] = {.lex_state = 13}, - [4221] = {.lex_state = 0}, - [4222] = {.lex_state = 0}, - [4223] = {.lex_state = 15}, - [4224] = {.lex_state = 0}, - [4225] = {.lex_state = 0}, - [4226] = {.lex_state = 0}, - [4227] = {.lex_state = 0}, - [4228] = {.lex_state = 0}, - [4229] = {.lex_state = 0}, - [4230] = {.lex_state = 0}, - [4231] = {.lex_state = 13}, - [4232] = {.lex_state = 15}, - [4233] = {.lex_state = 0}, - [4234] = {.lex_state = 0}, - [4235] = {.lex_state = 0}, - [4236] = {.lex_state = 0}, - [4237] = {.lex_state = 0}, - [4238] = {.lex_state = 0}, - [4239] = {.lex_state = 15}, - [4240] = {.lex_state = 13}, - [4241] = {.lex_state = 13}, - [4242] = {.lex_state = 0}, - [4243] = {.lex_state = 0}, - [4244] = {.lex_state = 15}, - [4245] = {.lex_state = 0}, - [4246] = {.lex_state = 0}, - [4247] = {.lex_state = 0}, - [4248] = {.lex_state = 0}, - [4249] = {.lex_state = 0}, - [4250] = {.lex_state = 0}, - [4251] = {.lex_state = 0}, - [4252] = {.lex_state = 13}, - [4253] = {.lex_state = 15}, - [4254] = {.lex_state = 0}, - [4255] = {.lex_state = 0}, - [4256] = {.lex_state = 0}, - [4257] = {.lex_state = 0}, - [4258] = {.lex_state = 15}, - [4259] = {.lex_state = 15}, - [4260] = {.lex_state = 15}, - [4261] = {.lex_state = 0}, - [4262] = {.lex_state = 15}, - [4263] = {.lex_state = 0}, - [4264] = {.lex_state = 0}, - [4265] = {.lex_state = 0}, - [4266] = {.lex_state = 0}, - [4267] = {.lex_state = 0}, - [4268] = {.lex_state = 0}, - [4269] = {.lex_state = 15}, - [4270] = {.lex_state = 15}, - [4271] = {.lex_state = 15}, - [4272] = {.lex_state = 0}, - [4273] = {.lex_state = 15}, - [4274] = {.lex_state = 0}, - [4275] = {.lex_state = 0}, - [4276] = {.lex_state = 0}, - [4277] = {.lex_state = 0}, - [4278] = {.lex_state = 0}, - [4279] = {.lex_state = 0}, - [4280] = {.lex_state = 15}, - [4281] = {.lex_state = 15}, - [4282] = {.lex_state = 15}, - [4283] = {.lex_state = 0}, - [4284] = {.lex_state = 15}, - [4285] = {.lex_state = 0}, - [4286] = {.lex_state = 0}, - [4287] = {.lex_state = 0}, - [4288] = {.lex_state = 0}, - [4289] = {.lex_state = 0}, - [4290] = {.lex_state = 0}, - [4291] = {.lex_state = 15}, - [4292] = {.lex_state = 15}, - [4293] = {.lex_state = 15}, - [4294] = {.lex_state = 0}, - [4295] = {.lex_state = 15}, - [4296] = {.lex_state = 0}, - [4297] = {.lex_state = 0}, - [4298] = {.lex_state = 0}, - [4299] = {.lex_state = 0}, - [4300] = {.lex_state = 0}, - [4301] = {.lex_state = 0}, - [4302] = {.lex_state = 15}, - [4303] = {.lex_state = 15}, - [4304] = {.lex_state = 15}, - [4305] = {.lex_state = 0}, - [4306] = {.lex_state = 15}, - [4307] = {.lex_state = 0}, - [4308] = {.lex_state = 0}, - [4309] = {.lex_state = 0}, - [4310] = {.lex_state = 0}, - [4311] = {.lex_state = 0}, - [4312] = {.lex_state = 0}, - [4313] = {.lex_state = 15}, - [4314] = {.lex_state = 15}, - [4315] = {.lex_state = 15}, - [4316] = {.lex_state = 0}, - [4317] = {.lex_state = 15}, - [4318] = {.lex_state = 0}, - [4319] = {.lex_state = 0}, - [4320] = {.lex_state = 0}, - [4321] = {.lex_state = 0}, - [4322] = {.lex_state = 0}, - [4323] = {.lex_state = 0}, - [4324] = {.lex_state = 15}, - [4325] = {.lex_state = 15}, - [4326] = {.lex_state = 15}, - [4327] = {.lex_state = 0}, - [4328] = {.lex_state = 15}, - [4329] = {.lex_state = 0}, - [4330] = {.lex_state = 0}, - [4331] = {.lex_state = 0}, - [4332] = {.lex_state = 0}, - [4333] = {.lex_state = 0}, - [4334] = {.lex_state = 0}, - [4335] = {.lex_state = 15}, - [4336] = {.lex_state = 15}, - [4337] = {.lex_state = 15}, - [4338] = {.lex_state = 0}, - [4339] = {.lex_state = 15}, - [4340] = {.lex_state = 0}, - [4341] = {.lex_state = 0}, - [4342] = {.lex_state = 0}, - [4343] = {.lex_state = 0}, - [4344] = {.lex_state = 0}, - [4345] = {.lex_state = 0}, - [4346] = {.lex_state = 15}, - [4347] = {.lex_state = 15}, - [4348] = {.lex_state = 15}, - [4349] = {.lex_state = 0}, - [4350] = {.lex_state = 15}, - [4351] = {.lex_state = 0}, - [4352] = {.lex_state = 0}, - [4353] = {.lex_state = 0}, - [4354] = {.lex_state = 0}, - [4355] = {.lex_state = 0}, - [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 15}, - [4358] = {.lex_state = 15}, - [4359] = {.lex_state = 15}, - [4360] = {.lex_state = 0}, - [4361] = {.lex_state = 15}, - [4362] = {.lex_state = 0}, - [4363] = {.lex_state = 0}, - [4364] = {.lex_state = 0}, - [4365] = {.lex_state = 0}, - [4366] = {.lex_state = 0}, - [4367] = {.lex_state = 0}, - [4368] = {.lex_state = 15}, - [4369] = {.lex_state = 15}, - [4370] = {.lex_state = 15}, - [4371] = {.lex_state = 0}, - [4372] = {.lex_state = 15}, - [4373] = {.lex_state = 0}, - [4374] = {.lex_state = 0}, - [4375] = {.lex_state = 0}, - [4376] = {.lex_state = 15}, - [4377] = {.lex_state = 15}, - [4378] = {.lex_state = 0}, - [4379] = {.lex_state = 15}, - [4380] = {.lex_state = 0}, - [4381] = {.lex_state = 0}, - [4382] = {.lex_state = 0}, - [4383] = {.lex_state = 15}, - [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 15}, - [4386] = {.lex_state = 0}, - [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 0}, - [4389] = {.lex_state = 15}, - [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 15}, - [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 0}, - [4394] = {.lex_state = 0}, - [4395] = {.lex_state = 15}, - [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 15}, - [4398] = {.lex_state = 0}, - [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 0}, - [4401] = {.lex_state = 15}, - [4402] = {.lex_state = 0}, - [4403] = {.lex_state = 15}, - [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 0}, - [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 15}, - [4408] = {.lex_state = 0}, - [4409] = {.lex_state = 15}, - [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 0}, - [4412] = {.lex_state = 0}, - [4413] = {.lex_state = 15}, - [4414] = {.lex_state = 0}, - [4415] = {.lex_state = 15}, - [4416] = {.lex_state = 0}, - [4417] = {.lex_state = 0}, - [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 15}, - [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 15}, - [4422] = {.lex_state = 0}, - [4423] = {.lex_state = 0}, - [4424] = {.lex_state = 0}, - [4425] = {.lex_state = 15}, - [4426] = {.lex_state = 0}, - [4427] = {.lex_state = 15}, - [4428] = {.lex_state = 0}, - [4429] = {.lex_state = 0}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 15}, - [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 15}, - [4434] = {.lex_state = 0}, - [4435] = {.lex_state = 0}, - [4436] = {.lex_state = 0}, - [4437] = {.lex_state = 15}, - [4438] = {.lex_state = 0}, - [4439] = {.lex_state = 15}, - [4440] = {.lex_state = 0}, - [4441] = {.lex_state = 0}, - [4442] = {.lex_state = 0}, - [4443] = {.lex_state = 13}, - [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 0}, - [4446] = {.lex_state = 13}, - [4447] = {.lex_state = 0}, - [4448] = {.lex_state = 0}, - [4449] = {.lex_state = 13}, - [4450] = {.lex_state = 0}, - [4451] = {.lex_state = 0}, - [4452] = {.lex_state = 13}, - [4453] = {.lex_state = 0}, - [4454] = {.lex_state = 0}, - [4455] = {.lex_state = 13}, - [4456] = {.lex_state = 0}, - [4457] = {.lex_state = 0}, - [4458] = {.lex_state = 13}, - [4459] = {.lex_state = 0}, - [4460] = {.lex_state = 0}, - [4461] = {.lex_state = 13}, - [4462] = {.lex_state = 0}, - [4463] = {.lex_state = 0}, - [4464] = {.lex_state = 13}, - [4465] = {.lex_state = 0}, - [4466] = {.lex_state = 0}, - [4467] = {.lex_state = 13}, - [4468] = {.lex_state = 0}, - [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 13}, - [4471] = {.lex_state = 0}, - [4472] = {.lex_state = 0}, - [4473] = {.lex_state = 13}, -}; - -static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [sym_generic_command_name] = ACTIONS(1), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1), - [aux_sym_chapter_token1] = ACTIONS(1), - [aux_sym_section_token1] = ACTIONS(1), - [aux_sym_subsection_token1] = ACTIONS(1), - [aux_sym_subsubsection_token1] = ACTIONS(1), - [aux_sym_paragraph_token1] = ACTIONS(1), - [aux_sym_subparagraph_token1] = ACTIONS(1), - [anon_sym_BSLASHitem] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [sym_word] = ACTIONS(1), - [sym_param] = ACTIONS(1), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1), - [anon_sym_BSLASHbegin] = ACTIONS(1), - [anon_sym_BSLASHend] = ACTIONS(1), - [anon_sym_BSLASHcaption] = ACTIONS(1), - [aux_sym_citation_token1] = ACTIONS(1), - [aux_sym_package_include_token1] = ACTIONS(1), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1), - [aux_sym_latex_include_token1] = ACTIONS(1), - [aux_sym_latex_input_token1] = ACTIONS(1), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1), - [anon_sym_BSLASHbibliography] = ACTIONS(1), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1), - [anon_sym_BSLASHincludesvg] = ACTIONS(1), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1), - [aux_sym_verbatim_include_token1] = ACTIONS(1), - [aux_sym_import_token1] = ACTIONS(1), - [anon_sym_BSLASHlabel] = ACTIONS(1), - [aux_sym_label_reference_token1] = ACTIONS(1), - [anon_sym_BSLASHeqref] = ACTIONS(1), - [aux_sym_label_reference_range_token1] = ACTIONS(1), - [anon_sym_BSLASHnewlabel] = ACTIONS(1), - [aux_sym_command_definition_token1] = ACTIONS(1), - [aux_sym_command_definition_token2] = ACTIONS(1), - [aux_sym_math_operator_token1] = ACTIONS(1), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(1), - [anon_sym_BSLASHnewacronym] = ACTIONS(1), - [aux_sym_acronym_reference_token1] = ACTIONS(1), - [aux_sym_theorem_definition_token1] = ACTIONS(1), - [aux_sym_color_reference_token1] = ACTIONS(1), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1), - }, - [1] = { - [sym_document] = STATE(3703), - [sym__simple_content] = STATE(197), - [sym__content] = STATE(197), - [sym_part] = STATE(197), - [sym_chapter] = STATE(197), - [sym_section] = STATE(197), - [sym_subsection] = STATE(197), - [sym_subsubsection] = STATE(197), - [sym_paragraph] = STATE(197), - [sym_subparagraph] = STATE(197), - [sym_enum_item] = STATE(197), - [sym_brace_group] = STATE(197), - [sym_mixed_group] = STATE(197), - [sym_text] = STATE(197), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(197), - [sym_inline_formula] = STATE(197), - [sym_begin] = STATE(52), - [sym_environment] = STATE(197), - [sym_caption] = STATE(197), - [sym_citation] = STATE(197), - [sym_package_include] = STATE(197), - [sym_class_include] = STATE(197), - [sym_latex_include] = STATE(197), - [sym_latex_input] = STATE(197), - [sym_biblatex_include] = STATE(197), - [sym_bibtex_include] = STATE(197), - [sym_graphics_include] = STATE(197), - [sym_svg_include] = STATE(197), - [sym_inkscape_include] = STATE(197), - [sym_verbatim_include] = STATE(197), - [sym_import] = STATE(197), - [sym_label_definition] = STATE(197), - [sym_label_reference] = STATE(197), - [sym_equation_label_reference] = STATE(197), - [sym_label_reference_range] = STATE(197), - [sym_label_number] = STATE(197), - [sym_command_definition] = STATE(197), - [sym_math_operator] = STATE(197), - [sym_glossary_entry_definition] = STATE(197), - [sym_glossary_entry_reference] = STATE(197), - [sym_acronym_definition] = STATE(197), - [sym_acronym_reference] = STATE(197), - [sym_theorem_definition] = STATE(197), - [sym_color_reference] = STATE(197), - [sym_color_definition] = STATE(197), - [sym_color_set_definition] = STATE(197), - [sym_pgf_library_import] = STATE(197), - [sym_tikz_library_import] = STATE(197), - [sym_generic_command] = STATE(197), - [aux_sym_document_repeat1] = STATE(197), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(31), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [2] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(101), - [sym_generic_command_name] = ACTIONS(103), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(103), - [aux_sym_chapter_token1] = ACTIONS(103), - [aux_sym_section_token1] = ACTIONS(103), - [aux_sym_subsection_token1] = ACTIONS(103), - [aux_sym_subsubsection_token1] = ACTIONS(103), - [aux_sym_paragraph_token1] = ACTIONS(103), - [aux_sym_subparagraph_token1] = ACTIONS(103), - [anon_sym_BSLASHitem] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(101), - [anon_sym_RBRACK] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(101), - [anon_sym_RPAREN] = ACTIONS(101), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [sym_word] = ACTIONS(101), - [sym_param] = ACTIONS(101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_BSLASH_LBRACK] = ACTIONS(101), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_BSLASH_LPAREN] = ACTIONS(101), - [anon_sym_BSLASHbegin] = ACTIONS(103), - [anon_sym_BSLASHcaption] = ACTIONS(103), - [aux_sym_citation_token1] = ACTIONS(103), - [aux_sym_package_include_token1] = ACTIONS(103), - [anon_sym_BSLASHdocumentclass] = ACTIONS(103), - [aux_sym_latex_include_token1] = ACTIONS(103), - [aux_sym_latex_input_token1] = ACTIONS(103), - [anon_sym_BSLASHaddbibresource] = ACTIONS(103), - [anon_sym_BSLASHbibliography] = ACTIONS(103), - [anon_sym_BSLASHincludegraphics] = ACTIONS(103), - [anon_sym_BSLASHincludesvg] = ACTIONS(103), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(103), - [aux_sym_verbatim_include_token1] = ACTIONS(103), - [aux_sym_import_token1] = ACTIONS(103), - [anon_sym_BSLASHlabel] = ACTIONS(103), - [aux_sym_label_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHeqref] = ACTIONS(103), - [aux_sym_label_reference_range_token1] = ACTIONS(103), - [anon_sym_BSLASHnewlabel] = ACTIONS(103), - [aux_sym_command_definition_token1] = ACTIONS(103), - [aux_sym_math_operator_token1] = ACTIONS(103), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(103), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHnewacronym] = ACTIONS(103), - [aux_sym_acronym_reference_token1] = ACTIONS(103), - [aux_sym_theorem_definition_token1] = ACTIONS(103), - [aux_sym_color_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(103), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(103), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(103), - }, - [3] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(107), - [sym_generic_command_name] = ACTIONS(109), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(109), - [aux_sym_chapter_token1] = ACTIONS(109), - [aux_sym_section_token1] = ACTIONS(109), - [aux_sym_subsection_token1] = ACTIONS(109), - [aux_sym_subsubsection_token1] = ACTIONS(109), - [aux_sym_paragraph_token1] = ACTIONS(109), - [aux_sym_subparagraph_token1] = ACTIONS(109), - [anon_sym_BSLASHitem] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_RBRACK] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_RPAREN] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(107), - [sym_word] = ACTIONS(107), - [sym_param] = ACTIONS(107), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(109), - [anon_sym_BSLASHcaption] = ACTIONS(109), - [aux_sym_citation_token1] = ACTIONS(109), - [aux_sym_package_include_token1] = ACTIONS(109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(109), - [aux_sym_latex_include_token1] = ACTIONS(109), - [aux_sym_latex_input_token1] = ACTIONS(109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(109), - [anon_sym_BSLASHbibliography] = ACTIONS(109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(109), - [anon_sym_BSLASHincludesvg] = ACTIONS(109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(109), - [aux_sym_verbatim_include_token1] = ACTIONS(109), - [aux_sym_import_token1] = ACTIONS(109), - [anon_sym_BSLASHlabel] = ACTIONS(109), - [aux_sym_label_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHeqref] = ACTIONS(109), - [aux_sym_label_reference_range_token1] = ACTIONS(109), - [anon_sym_BSLASHnewlabel] = ACTIONS(109), - [aux_sym_command_definition_token1] = ACTIONS(109), - [aux_sym_math_operator_token1] = ACTIONS(109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(109), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHnewacronym] = ACTIONS(109), - [aux_sym_acronym_reference_token1] = ACTIONS(109), - [aux_sym_theorem_definition_token1] = ACTIONS(109), - [aux_sym_color_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(109), - }, - [4] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(113), - [sym_generic_command_name] = ACTIONS(115), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(115), - [aux_sym_chapter_token1] = ACTIONS(115), - [aux_sym_section_token1] = ACTIONS(115), - [aux_sym_subsection_token1] = ACTIONS(115), - [aux_sym_subsubsection_token1] = ACTIONS(115), - [aux_sym_paragraph_token1] = ACTIONS(115), - [aux_sym_subparagraph_token1] = ACTIONS(115), - [anon_sym_BSLASHitem] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_RBRACK] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_RPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(113), - [sym_word] = ACTIONS(113), - [sym_param] = ACTIONS(113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(113), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(113), - [anon_sym_BSLASHbegin] = ACTIONS(115), - [anon_sym_BSLASHcaption] = ACTIONS(115), - [aux_sym_citation_token1] = ACTIONS(115), - [aux_sym_package_include_token1] = ACTIONS(115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(115), - [aux_sym_latex_include_token1] = ACTIONS(115), - [aux_sym_latex_input_token1] = ACTIONS(115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(115), - [anon_sym_BSLASHbibliography] = ACTIONS(115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(115), - [anon_sym_BSLASHincludesvg] = ACTIONS(115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(115), - [aux_sym_verbatim_include_token1] = ACTIONS(115), - [aux_sym_import_token1] = ACTIONS(115), - [anon_sym_BSLASHlabel] = ACTIONS(115), - [aux_sym_label_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHeqref] = ACTIONS(115), - [aux_sym_label_reference_range_token1] = ACTIONS(115), - [anon_sym_BSLASHnewlabel] = ACTIONS(115), - [aux_sym_command_definition_token1] = ACTIONS(115), - [aux_sym_math_operator_token1] = ACTIONS(115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(115), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(115), - [aux_sym_acronym_reference_token1] = ACTIONS(115), - [aux_sym_theorem_definition_token1] = ACTIONS(115), - [aux_sym_color_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(115), - }, - [5] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(117), - [sym_generic_command_name] = ACTIONS(119), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(119), - [aux_sym_chapter_token1] = ACTIONS(119), - [aux_sym_section_token1] = ACTIONS(119), - [aux_sym_subsection_token1] = ACTIONS(119), - [aux_sym_subsubsection_token1] = ACTIONS(119), - [aux_sym_paragraph_token1] = ACTIONS(119), - [aux_sym_subparagraph_token1] = ACTIONS(119), - [anon_sym_BSLASHitem] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_RPAREN] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [sym_word] = ACTIONS(117), - [sym_param] = ACTIONS(117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(117), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(119), - [anon_sym_BSLASHcaption] = ACTIONS(119), - [aux_sym_citation_token1] = ACTIONS(119), - [aux_sym_package_include_token1] = ACTIONS(119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(119), - [aux_sym_latex_include_token1] = ACTIONS(119), - [aux_sym_latex_input_token1] = ACTIONS(119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(119), - [anon_sym_BSLASHbibliography] = ACTIONS(119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(119), - [anon_sym_BSLASHincludesvg] = ACTIONS(119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(119), - [aux_sym_verbatim_include_token1] = ACTIONS(119), - [aux_sym_import_token1] = ACTIONS(119), - [anon_sym_BSLASHlabel] = ACTIONS(119), - [aux_sym_label_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHeqref] = ACTIONS(119), - [aux_sym_label_reference_range_token1] = ACTIONS(119), - [anon_sym_BSLASHnewlabel] = ACTIONS(119), - [aux_sym_command_definition_token1] = ACTIONS(119), - [aux_sym_math_operator_token1] = ACTIONS(119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(119), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHnewacronym] = ACTIONS(119), - [aux_sym_acronym_reference_token1] = ACTIONS(119), - [aux_sym_theorem_definition_token1] = ACTIONS(119), - [aux_sym_color_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(119), - }, - [6] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(121), - [sym_generic_command_name] = ACTIONS(123), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(126), - [aux_sym_chapter_token1] = ACTIONS(129), - [aux_sym_section_token1] = ACTIONS(132), - [aux_sym_subsection_token1] = ACTIONS(135), - [aux_sym_subsubsection_token1] = ACTIONS(138), - [aux_sym_paragraph_token1] = ACTIONS(141), - [aux_sym_subparagraph_token1] = ACTIONS(144), - [anon_sym_BSLASHitem] = ACTIONS(147), - [anon_sym_LBRACK] = ACTIONS(150), - [anon_sym_RBRACK] = ACTIONS(121), - [anon_sym_LBRACE] = ACTIONS(153), - [anon_sym_RBRACE] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_COMMA] = ACTIONS(156), - [anon_sym_EQ] = ACTIONS(156), - [sym_word] = ACTIONS(156), - [sym_param] = ACTIONS(159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(162), - [anon_sym_BSLASH_LBRACK] = ACTIONS(162), - [anon_sym_DOLLAR] = ACTIONS(165), - [anon_sym_BSLASH_LPAREN] = ACTIONS(168), - [anon_sym_BSLASHbegin] = ACTIONS(171), - [anon_sym_BSLASHcaption] = ACTIONS(174), - [aux_sym_citation_token1] = ACTIONS(177), - [aux_sym_package_include_token1] = ACTIONS(180), - [anon_sym_BSLASHdocumentclass] = ACTIONS(183), - [aux_sym_latex_include_token1] = ACTIONS(186), - [aux_sym_latex_input_token1] = ACTIONS(189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(192), - [anon_sym_BSLASHbibliography] = ACTIONS(195), - [anon_sym_BSLASHincludegraphics] = ACTIONS(198), - [anon_sym_BSLASHincludesvg] = ACTIONS(201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(204), - [aux_sym_verbatim_include_token1] = ACTIONS(207), - [aux_sym_import_token1] = ACTIONS(210), - [anon_sym_BSLASHlabel] = ACTIONS(213), - [aux_sym_label_reference_token1] = ACTIONS(216), - [anon_sym_BSLASHeqref] = ACTIONS(219), - [aux_sym_label_reference_range_token1] = ACTIONS(222), - [anon_sym_BSLASHnewlabel] = ACTIONS(225), - [aux_sym_command_definition_token1] = ACTIONS(228), - [aux_sym_math_operator_token1] = ACTIONS(231), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(234), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(237), - [anon_sym_BSLASHnewacronym] = ACTIONS(240), - [aux_sym_acronym_reference_token1] = ACTIONS(243), - [aux_sym_theorem_definition_token1] = ACTIONS(246), - [aux_sym_color_reference_token1] = ACTIONS(249), - [anon_sym_BSLASHdefinecolor] = ACTIONS(252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(255), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(258), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(261), - }, - [7] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(103), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(103), - [aux_sym_section_token1] = ACTIONS(103), - [aux_sym_subsection_token1] = ACTIONS(103), - [aux_sym_subsubsection_token1] = ACTIONS(103), - [aux_sym_paragraph_token1] = ACTIONS(103), - [aux_sym_subparagraph_token1] = ACTIONS(103), - [anon_sym_BSLASHitem] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(101), - [anon_sym_RBRACK] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(101), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [sym_word] = ACTIONS(101), - [sym_param] = ACTIONS(101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_BSLASH_LBRACK] = ACTIONS(101), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_BSLASH_LPAREN] = ACTIONS(101), - [anon_sym_BSLASHbegin] = ACTIONS(103), - [anon_sym_BSLASHcaption] = ACTIONS(103), - [aux_sym_citation_token1] = ACTIONS(103), - [aux_sym_package_include_token1] = ACTIONS(103), - [anon_sym_BSLASHdocumentclass] = ACTIONS(103), - [aux_sym_latex_include_token1] = ACTIONS(103), - [aux_sym_latex_input_token1] = ACTIONS(103), - [anon_sym_BSLASHaddbibresource] = ACTIONS(103), - [anon_sym_BSLASHbibliography] = ACTIONS(103), - [anon_sym_BSLASHincludegraphics] = ACTIONS(103), - [anon_sym_BSLASHincludesvg] = ACTIONS(103), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(103), - [aux_sym_verbatim_include_token1] = ACTIONS(103), - [aux_sym_import_token1] = ACTIONS(103), - [anon_sym_BSLASHlabel] = ACTIONS(103), - [aux_sym_label_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHeqref] = ACTIONS(103), - [aux_sym_label_reference_range_token1] = ACTIONS(103), - [anon_sym_BSLASHnewlabel] = ACTIONS(103), - [aux_sym_command_definition_token1] = ACTIONS(103), - [aux_sym_math_operator_token1] = ACTIONS(103), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(103), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHnewacronym] = ACTIONS(103), - [aux_sym_acronym_reference_token1] = ACTIONS(103), - [aux_sym_theorem_definition_token1] = ACTIONS(103), - [aux_sym_color_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(103), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(103), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(103), - }, - [8] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(103), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(103), - [aux_sym_subsection_token1] = ACTIONS(103), - [aux_sym_subsubsection_token1] = ACTIONS(103), - [aux_sym_paragraph_token1] = ACTIONS(103), - [aux_sym_subparagraph_token1] = ACTIONS(103), - [anon_sym_BSLASHitem] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(101), - [anon_sym_RBRACK] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(101), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [sym_word] = ACTIONS(101), - [sym_param] = ACTIONS(101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_BSLASH_LBRACK] = ACTIONS(101), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_BSLASH_LPAREN] = ACTIONS(101), - [anon_sym_BSLASHbegin] = ACTIONS(103), - [anon_sym_BSLASHcaption] = ACTIONS(103), - [aux_sym_citation_token1] = ACTIONS(103), - [aux_sym_package_include_token1] = ACTIONS(103), - [anon_sym_BSLASHdocumentclass] = ACTIONS(103), - [aux_sym_latex_include_token1] = ACTIONS(103), - [aux_sym_latex_input_token1] = ACTIONS(103), - [anon_sym_BSLASHaddbibresource] = ACTIONS(103), - [anon_sym_BSLASHbibliography] = ACTIONS(103), - [anon_sym_BSLASHincludegraphics] = ACTIONS(103), - [anon_sym_BSLASHincludesvg] = ACTIONS(103), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(103), - [aux_sym_verbatim_include_token1] = ACTIONS(103), - [aux_sym_import_token1] = ACTIONS(103), - [anon_sym_BSLASHlabel] = ACTIONS(103), - [aux_sym_label_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHeqref] = ACTIONS(103), - [aux_sym_label_reference_range_token1] = ACTIONS(103), - [anon_sym_BSLASHnewlabel] = ACTIONS(103), - [aux_sym_command_definition_token1] = ACTIONS(103), - [aux_sym_math_operator_token1] = ACTIONS(103), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(103), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHnewacronym] = ACTIONS(103), - [aux_sym_acronym_reference_token1] = ACTIONS(103), - [aux_sym_theorem_definition_token1] = ACTIONS(103), - [aux_sym_color_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(103), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(103), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(103), - }, - [9] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(115), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(115), - [aux_sym_subsection_token1] = ACTIONS(115), - [aux_sym_subsubsection_token1] = ACTIONS(115), - [aux_sym_paragraph_token1] = ACTIONS(115), - [aux_sym_subparagraph_token1] = ACTIONS(115), - [anon_sym_BSLASHitem] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_RBRACK] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(113), - [sym_word] = ACTIONS(113), - [sym_param] = ACTIONS(113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(113), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(113), - [anon_sym_BSLASHbegin] = ACTIONS(115), - [anon_sym_BSLASHcaption] = ACTIONS(115), - [aux_sym_citation_token1] = ACTIONS(115), - [aux_sym_package_include_token1] = ACTIONS(115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(115), - [aux_sym_latex_include_token1] = ACTIONS(115), - [aux_sym_latex_input_token1] = ACTIONS(115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(115), - [anon_sym_BSLASHbibliography] = ACTIONS(115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(115), - [anon_sym_BSLASHincludesvg] = ACTIONS(115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(115), - [aux_sym_verbatim_include_token1] = ACTIONS(115), - [aux_sym_import_token1] = ACTIONS(115), - [anon_sym_BSLASHlabel] = ACTIONS(115), - [aux_sym_label_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHeqref] = ACTIONS(115), - [aux_sym_label_reference_range_token1] = ACTIONS(115), - [anon_sym_BSLASHnewlabel] = ACTIONS(115), - [aux_sym_command_definition_token1] = ACTIONS(115), - [aux_sym_math_operator_token1] = ACTIONS(115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(115), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(115), - [aux_sym_acronym_reference_token1] = ACTIONS(115), - [aux_sym_theorem_definition_token1] = ACTIONS(115), - [aux_sym_color_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(115), - }, - [10] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(115), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(115), - [aux_sym_subsubsection_token1] = ACTIONS(115), - [aux_sym_paragraph_token1] = ACTIONS(115), - [aux_sym_subparagraph_token1] = ACTIONS(115), - [anon_sym_BSLASHitem] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_RBRACK] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(113), - [sym_word] = ACTIONS(113), - [sym_param] = ACTIONS(113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(113), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(113), - [anon_sym_BSLASHbegin] = ACTIONS(115), - [anon_sym_BSLASHcaption] = ACTIONS(115), - [aux_sym_citation_token1] = ACTIONS(115), - [aux_sym_package_include_token1] = ACTIONS(115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(115), - [aux_sym_latex_include_token1] = ACTIONS(115), - [aux_sym_latex_input_token1] = ACTIONS(115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(115), - [anon_sym_BSLASHbibliography] = ACTIONS(115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(115), - [anon_sym_BSLASHincludesvg] = ACTIONS(115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(115), - [aux_sym_verbatim_include_token1] = ACTIONS(115), - [aux_sym_import_token1] = ACTIONS(115), - [anon_sym_BSLASHlabel] = ACTIONS(115), - [aux_sym_label_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHeqref] = ACTIONS(115), - [aux_sym_label_reference_range_token1] = ACTIONS(115), - [anon_sym_BSLASHnewlabel] = ACTIONS(115), - [aux_sym_command_definition_token1] = ACTIONS(115), - [aux_sym_math_operator_token1] = ACTIONS(115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(115), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(115), - [aux_sym_acronym_reference_token1] = ACTIONS(115), - [aux_sym_theorem_definition_token1] = ACTIONS(115), - [aux_sym_color_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(115), - }, - [11] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_RBRACK] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(288), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(290), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [12] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(382), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(386), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [13] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(109), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(109), - [aux_sym_subsubsection_token1] = ACTIONS(109), - [aux_sym_paragraph_token1] = ACTIONS(109), - [aux_sym_subparagraph_token1] = ACTIONS(109), - [anon_sym_BSLASHitem] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_RBRACK] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(107), - [sym_word] = ACTIONS(107), - [sym_param] = ACTIONS(107), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(109), - [anon_sym_BSLASHcaption] = ACTIONS(109), - [aux_sym_citation_token1] = ACTIONS(109), - [aux_sym_package_include_token1] = ACTIONS(109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(109), - [aux_sym_latex_include_token1] = ACTIONS(109), - [aux_sym_latex_input_token1] = ACTIONS(109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(109), - [anon_sym_BSLASHbibliography] = ACTIONS(109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(109), - [anon_sym_BSLASHincludesvg] = ACTIONS(109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(109), - [aux_sym_verbatim_include_token1] = ACTIONS(109), - [aux_sym_import_token1] = ACTIONS(109), - [anon_sym_BSLASHlabel] = ACTIONS(109), - [aux_sym_label_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHeqref] = ACTIONS(109), - [aux_sym_label_reference_range_token1] = ACTIONS(109), - [anon_sym_BSLASHnewlabel] = ACTIONS(109), - [aux_sym_command_definition_token1] = ACTIONS(109), - [aux_sym_math_operator_token1] = ACTIONS(109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(109), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHnewacronym] = ACTIONS(109), - [aux_sym_acronym_reference_token1] = ACTIONS(109), - [aux_sym_theorem_definition_token1] = ACTIONS(109), - [aux_sym_color_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(109), - }, - [14] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(103), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(103), - [aux_sym_subsubsection_token1] = ACTIONS(103), - [aux_sym_paragraph_token1] = ACTIONS(103), - [aux_sym_subparagraph_token1] = ACTIONS(103), - [anon_sym_BSLASHitem] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(101), - [anon_sym_RBRACK] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(101), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [sym_word] = ACTIONS(101), - [sym_param] = ACTIONS(101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_BSLASH_LBRACK] = ACTIONS(101), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_BSLASH_LPAREN] = ACTIONS(101), - [anon_sym_BSLASHbegin] = ACTIONS(103), - [anon_sym_BSLASHcaption] = ACTIONS(103), - [aux_sym_citation_token1] = ACTIONS(103), - [aux_sym_package_include_token1] = ACTIONS(103), - [anon_sym_BSLASHdocumentclass] = ACTIONS(103), - [aux_sym_latex_include_token1] = ACTIONS(103), - [aux_sym_latex_input_token1] = ACTIONS(103), - [anon_sym_BSLASHaddbibresource] = ACTIONS(103), - [anon_sym_BSLASHbibliography] = ACTIONS(103), - [anon_sym_BSLASHincludegraphics] = ACTIONS(103), - [anon_sym_BSLASHincludesvg] = ACTIONS(103), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(103), - [aux_sym_verbatim_include_token1] = ACTIONS(103), - [aux_sym_import_token1] = ACTIONS(103), - [anon_sym_BSLASHlabel] = ACTIONS(103), - [aux_sym_label_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHeqref] = ACTIONS(103), - [aux_sym_label_reference_range_token1] = ACTIONS(103), - [anon_sym_BSLASHnewlabel] = ACTIONS(103), - [aux_sym_command_definition_token1] = ACTIONS(103), - [aux_sym_math_operator_token1] = ACTIONS(103), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(103), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHnewacronym] = ACTIONS(103), - [aux_sym_acronym_reference_token1] = ACTIONS(103), - [aux_sym_theorem_definition_token1] = ACTIONS(103), - [aux_sym_color_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(103), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(103), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(103), - }, - [15] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(109), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(109), - [anon_sym_BSLASHitem] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_RBRACK] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(107), - [sym_word] = ACTIONS(107), - [sym_param] = ACTIONS(107), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(109), - [anon_sym_BSLASHcaption] = ACTIONS(109), - [aux_sym_citation_token1] = ACTIONS(109), - [aux_sym_package_include_token1] = ACTIONS(109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(109), - [aux_sym_latex_include_token1] = ACTIONS(109), - [aux_sym_latex_input_token1] = ACTIONS(109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(109), - [anon_sym_BSLASHbibliography] = ACTIONS(109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(109), - [anon_sym_BSLASHincludesvg] = ACTIONS(109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(109), - [aux_sym_verbatim_include_token1] = ACTIONS(109), - [aux_sym_import_token1] = ACTIONS(109), - [anon_sym_BSLASHlabel] = ACTIONS(109), - [aux_sym_label_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHeqref] = ACTIONS(109), - [aux_sym_label_reference_range_token1] = ACTIONS(109), - [anon_sym_BSLASHnewlabel] = ACTIONS(109), - [aux_sym_command_definition_token1] = ACTIONS(109), - [aux_sym_math_operator_token1] = ACTIONS(109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(109), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHnewacronym] = ACTIONS(109), - [aux_sym_acronym_reference_token1] = ACTIONS(109), - [aux_sym_theorem_definition_token1] = ACTIONS(109), - [aux_sym_color_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(109), - }, - [16] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(103), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(103), - [anon_sym_BSLASHitem] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(101), - [anon_sym_RBRACK] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(101), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [sym_word] = ACTIONS(101), - [sym_param] = ACTIONS(101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_BSLASH_LBRACK] = ACTIONS(101), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_BSLASH_LPAREN] = ACTIONS(101), - [anon_sym_BSLASHbegin] = ACTIONS(103), - [anon_sym_BSLASHcaption] = ACTIONS(103), - [aux_sym_citation_token1] = ACTIONS(103), - [aux_sym_package_include_token1] = ACTIONS(103), - [anon_sym_BSLASHdocumentclass] = ACTIONS(103), - [aux_sym_latex_include_token1] = ACTIONS(103), - [aux_sym_latex_input_token1] = ACTIONS(103), - [anon_sym_BSLASHaddbibresource] = ACTIONS(103), - [anon_sym_BSLASHbibliography] = ACTIONS(103), - [anon_sym_BSLASHincludegraphics] = ACTIONS(103), - [anon_sym_BSLASHincludesvg] = ACTIONS(103), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(103), - [aux_sym_verbatim_include_token1] = ACTIONS(103), - [aux_sym_import_token1] = ACTIONS(103), - [anon_sym_BSLASHlabel] = ACTIONS(103), - [aux_sym_label_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHeqref] = ACTIONS(103), - [aux_sym_label_reference_range_token1] = ACTIONS(103), - [anon_sym_BSLASHnewlabel] = ACTIONS(103), - [aux_sym_command_definition_token1] = ACTIONS(103), - [aux_sym_math_operator_token1] = ACTIONS(103), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(103), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHnewacronym] = ACTIONS(103), - [aux_sym_acronym_reference_token1] = ACTIONS(103), - [aux_sym_theorem_definition_token1] = ACTIONS(103), - [aux_sym_color_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(103), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(103), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(103), - }, - [17] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(103), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(101), - [anon_sym_RBRACK] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(101), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [sym_word] = ACTIONS(101), - [sym_param] = ACTIONS(101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_BSLASH_LBRACK] = ACTIONS(101), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_BSLASH_LPAREN] = ACTIONS(101), - [anon_sym_BSLASHbegin] = ACTIONS(103), - [anon_sym_BSLASHcaption] = ACTIONS(103), - [aux_sym_citation_token1] = ACTIONS(103), - [aux_sym_package_include_token1] = ACTIONS(103), - [anon_sym_BSLASHdocumentclass] = ACTIONS(103), - [aux_sym_latex_include_token1] = ACTIONS(103), - [aux_sym_latex_input_token1] = ACTIONS(103), - [anon_sym_BSLASHaddbibresource] = ACTIONS(103), - [anon_sym_BSLASHbibliography] = ACTIONS(103), - [anon_sym_BSLASHincludegraphics] = ACTIONS(103), - [anon_sym_BSLASHincludesvg] = ACTIONS(103), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(103), - [aux_sym_verbatim_include_token1] = ACTIONS(103), - [aux_sym_import_token1] = ACTIONS(103), - [anon_sym_BSLASHlabel] = ACTIONS(103), - [aux_sym_label_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHeqref] = ACTIONS(103), - [aux_sym_label_reference_range_token1] = ACTIONS(103), - [anon_sym_BSLASHnewlabel] = ACTIONS(103), - [aux_sym_command_definition_token1] = ACTIONS(103), - [aux_sym_math_operator_token1] = ACTIONS(103), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(103), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHnewacronym] = ACTIONS(103), - [aux_sym_acronym_reference_token1] = ACTIONS(103), - [aux_sym_theorem_definition_token1] = ACTIONS(103), - [aux_sym_color_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(103), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(103), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(103), - }, - [18] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(109), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_RBRACK] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(107), - [sym_word] = ACTIONS(107), - [sym_param] = ACTIONS(107), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(109), - [anon_sym_BSLASHcaption] = ACTIONS(109), - [aux_sym_citation_token1] = ACTIONS(109), - [aux_sym_package_include_token1] = ACTIONS(109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(109), - [aux_sym_latex_include_token1] = ACTIONS(109), - [aux_sym_latex_input_token1] = ACTIONS(109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(109), - [anon_sym_BSLASHbibliography] = ACTIONS(109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(109), - [anon_sym_BSLASHincludesvg] = ACTIONS(109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(109), - [aux_sym_verbatim_include_token1] = ACTIONS(109), - [aux_sym_import_token1] = ACTIONS(109), - [anon_sym_BSLASHlabel] = ACTIONS(109), - [aux_sym_label_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHeqref] = ACTIONS(109), - [aux_sym_label_reference_range_token1] = ACTIONS(109), - [anon_sym_BSLASHnewlabel] = ACTIONS(109), - [aux_sym_command_definition_token1] = ACTIONS(109), - [aux_sym_math_operator_token1] = ACTIONS(109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(109), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHnewacronym] = ACTIONS(109), - [aux_sym_acronym_reference_token1] = ACTIONS(109), - [aux_sym_theorem_definition_token1] = ACTIONS(109), - [aux_sym_color_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(109), - }, - [19] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(115), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_RBRACK] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(113), - [sym_word] = ACTIONS(113), - [sym_param] = ACTIONS(113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(113), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(113), - [anon_sym_BSLASHbegin] = ACTIONS(115), - [anon_sym_BSLASHcaption] = ACTIONS(115), - [aux_sym_citation_token1] = ACTIONS(115), - [aux_sym_package_include_token1] = ACTIONS(115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(115), - [aux_sym_latex_include_token1] = ACTIONS(115), - [aux_sym_latex_input_token1] = ACTIONS(115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(115), - [anon_sym_BSLASHbibliography] = ACTIONS(115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(115), - [anon_sym_BSLASHincludesvg] = ACTIONS(115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(115), - [aux_sym_verbatim_include_token1] = ACTIONS(115), - [aux_sym_import_token1] = ACTIONS(115), - [anon_sym_BSLASHlabel] = ACTIONS(115), - [aux_sym_label_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHeqref] = ACTIONS(115), - [aux_sym_label_reference_range_token1] = ACTIONS(115), - [anon_sym_BSLASHnewlabel] = ACTIONS(115), - [aux_sym_command_definition_token1] = ACTIONS(115), - [aux_sym_math_operator_token1] = ACTIONS(115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(115), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(115), - [aux_sym_acronym_reference_token1] = ACTIONS(115), - [aux_sym_theorem_definition_token1] = ACTIONS(115), - [aux_sym_color_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(115), - }, - [20] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(119), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [sym_word] = ACTIONS(117), - [sym_param] = ACTIONS(117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(117), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(119), - [anon_sym_BSLASHcaption] = ACTIONS(119), - [aux_sym_citation_token1] = ACTIONS(119), - [aux_sym_package_include_token1] = ACTIONS(119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(119), - [aux_sym_latex_include_token1] = ACTIONS(119), - [aux_sym_latex_input_token1] = ACTIONS(119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(119), - [anon_sym_BSLASHbibliography] = ACTIONS(119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(119), - [anon_sym_BSLASHincludesvg] = ACTIONS(119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(119), - [aux_sym_verbatim_include_token1] = ACTIONS(119), - [aux_sym_import_token1] = ACTIONS(119), - [anon_sym_BSLASHlabel] = ACTIONS(119), - [aux_sym_label_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHeqref] = ACTIONS(119), - [aux_sym_label_reference_range_token1] = ACTIONS(119), - [anon_sym_BSLASHnewlabel] = ACTIONS(119), - [aux_sym_command_definition_token1] = ACTIONS(119), - [aux_sym_math_operator_token1] = ACTIONS(119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(119), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHnewacronym] = ACTIONS(119), - [aux_sym_acronym_reference_token1] = ACTIONS(119), - [aux_sym_theorem_definition_token1] = ACTIONS(119), - [aux_sym_color_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(119), - }, - [21] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(109), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(109), - [aux_sym_section_token1] = ACTIONS(109), - [aux_sym_subsection_token1] = ACTIONS(109), - [aux_sym_subsubsection_token1] = ACTIONS(109), - [aux_sym_paragraph_token1] = ACTIONS(109), - [aux_sym_subparagraph_token1] = ACTIONS(109), - [anon_sym_BSLASHitem] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_RBRACK] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(107), - [sym_word] = ACTIONS(107), - [sym_param] = ACTIONS(107), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(109), - [anon_sym_BSLASHcaption] = ACTIONS(109), - [aux_sym_citation_token1] = ACTIONS(109), - [aux_sym_package_include_token1] = ACTIONS(109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(109), - [aux_sym_latex_include_token1] = ACTIONS(109), - [aux_sym_latex_input_token1] = ACTIONS(109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(109), - [anon_sym_BSLASHbibliography] = ACTIONS(109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(109), - [anon_sym_BSLASHincludesvg] = ACTIONS(109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(109), - [aux_sym_verbatim_include_token1] = ACTIONS(109), - [aux_sym_import_token1] = ACTIONS(109), - [anon_sym_BSLASHlabel] = ACTIONS(109), - [aux_sym_label_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHeqref] = ACTIONS(109), - [aux_sym_label_reference_range_token1] = ACTIONS(109), - [anon_sym_BSLASHnewlabel] = ACTIONS(109), - [aux_sym_command_definition_token1] = ACTIONS(109), - [aux_sym_math_operator_token1] = ACTIONS(109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(109), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHnewacronym] = ACTIONS(109), - [aux_sym_acronym_reference_token1] = ACTIONS(109), - [aux_sym_theorem_definition_token1] = ACTIONS(109), - [aux_sym_color_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(109), - }, - [22] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(115), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(115), - [aux_sym_section_token1] = ACTIONS(115), - [aux_sym_subsection_token1] = ACTIONS(115), - [aux_sym_subsubsection_token1] = ACTIONS(115), - [aux_sym_paragraph_token1] = ACTIONS(115), - [aux_sym_subparagraph_token1] = ACTIONS(115), - [anon_sym_BSLASHitem] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_RBRACK] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(113), - [sym_word] = ACTIONS(113), - [sym_param] = ACTIONS(113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(113), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(113), - [anon_sym_BSLASHbegin] = ACTIONS(115), - [anon_sym_BSLASHcaption] = ACTIONS(115), - [aux_sym_citation_token1] = ACTIONS(115), - [aux_sym_package_include_token1] = ACTIONS(115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(115), - [aux_sym_latex_include_token1] = ACTIONS(115), - [aux_sym_latex_input_token1] = ACTIONS(115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(115), - [anon_sym_BSLASHbibliography] = ACTIONS(115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(115), - [anon_sym_BSLASHincludesvg] = ACTIONS(115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(115), - [aux_sym_verbatim_include_token1] = ACTIONS(115), - [aux_sym_import_token1] = ACTIONS(115), - [anon_sym_BSLASHlabel] = ACTIONS(115), - [aux_sym_label_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHeqref] = ACTIONS(115), - [aux_sym_label_reference_range_token1] = ACTIONS(115), - [anon_sym_BSLASHnewlabel] = ACTIONS(115), - [aux_sym_command_definition_token1] = ACTIONS(115), - [aux_sym_math_operator_token1] = ACTIONS(115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(115), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(115), - [aux_sym_acronym_reference_token1] = ACTIONS(115), - [aux_sym_theorem_definition_token1] = ACTIONS(115), - [aux_sym_color_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(115), - }, - [23] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(119), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(119), - [aux_sym_section_token1] = ACTIONS(119), - [aux_sym_subsection_token1] = ACTIONS(119), - [aux_sym_subsubsection_token1] = ACTIONS(119), - [aux_sym_paragraph_token1] = ACTIONS(119), - [aux_sym_subparagraph_token1] = ACTIONS(119), - [anon_sym_BSLASHitem] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [sym_word] = ACTIONS(117), - [sym_param] = ACTIONS(117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(117), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(119), - [anon_sym_BSLASHcaption] = ACTIONS(119), - [aux_sym_citation_token1] = ACTIONS(119), - [aux_sym_package_include_token1] = ACTIONS(119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(119), - [aux_sym_latex_include_token1] = ACTIONS(119), - [aux_sym_latex_input_token1] = ACTIONS(119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(119), - [anon_sym_BSLASHbibliography] = ACTIONS(119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(119), - [anon_sym_BSLASHincludesvg] = ACTIONS(119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(119), - [aux_sym_verbatim_include_token1] = ACTIONS(119), - [aux_sym_import_token1] = ACTIONS(119), - [anon_sym_BSLASHlabel] = ACTIONS(119), - [aux_sym_label_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHeqref] = ACTIONS(119), - [aux_sym_label_reference_range_token1] = ACTIONS(119), - [anon_sym_BSLASHnewlabel] = ACTIONS(119), - [aux_sym_command_definition_token1] = ACTIONS(119), - [aux_sym_math_operator_token1] = ACTIONS(119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(119), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHnewacronym] = ACTIONS(119), - [aux_sym_acronym_reference_token1] = ACTIONS(119), - [aux_sym_theorem_definition_token1] = ACTIONS(119), - [aux_sym_color_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(119), - }, - [24] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(119), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(119), - [aux_sym_subsubsection_token1] = ACTIONS(119), - [aux_sym_paragraph_token1] = ACTIONS(119), - [aux_sym_subparagraph_token1] = ACTIONS(119), - [anon_sym_BSLASHitem] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [sym_word] = ACTIONS(117), - [sym_param] = ACTIONS(117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(117), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(119), - [anon_sym_BSLASHcaption] = ACTIONS(119), - [aux_sym_citation_token1] = ACTIONS(119), - [aux_sym_package_include_token1] = ACTIONS(119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(119), - [aux_sym_latex_include_token1] = ACTIONS(119), - [aux_sym_latex_input_token1] = ACTIONS(119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(119), - [anon_sym_BSLASHbibliography] = ACTIONS(119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(119), - [anon_sym_BSLASHincludesvg] = ACTIONS(119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(119), - [aux_sym_verbatim_include_token1] = ACTIONS(119), - [aux_sym_import_token1] = ACTIONS(119), - [anon_sym_BSLASHlabel] = ACTIONS(119), - [aux_sym_label_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHeqref] = ACTIONS(119), - [aux_sym_label_reference_range_token1] = ACTIONS(119), - [anon_sym_BSLASHnewlabel] = ACTIONS(119), - [aux_sym_command_definition_token1] = ACTIONS(119), - [aux_sym_math_operator_token1] = ACTIONS(119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(119), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHnewacronym] = ACTIONS(119), - [aux_sym_acronym_reference_token1] = ACTIONS(119), - [aux_sym_theorem_definition_token1] = ACTIONS(119), - [aux_sym_color_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(119), - }, - [25] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_RBRACK] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(288), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(290), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [26] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(103), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(103), - [aux_sym_paragraph_token1] = ACTIONS(103), - [aux_sym_subparagraph_token1] = ACTIONS(103), - [anon_sym_BSLASHitem] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(101), - [anon_sym_RBRACK] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(101), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [sym_word] = ACTIONS(101), - [sym_param] = ACTIONS(101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_BSLASH_LBRACK] = ACTIONS(101), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_BSLASH_LPAREN] = ACTIONS(101), - [anon_sym_BSLASHbegin] = ACTIONS(103), - [anon_sym_BSLASHcaption] = ACTIONS(103), - [aux_sym_citation_token1] = ACTIONS(103), - [aux_sym_package_include_token1] = ACTIONS(103), - [anon_sym_BSLASHdocumentclass] = ACTIONS(103), - [aux_sym_latex_include_token1] = ACTIONS(103), - [aux_sym_latex_input_token1] = ACTIONS(103), - [anon_sym_BSLASHaddbibresource] = ACTIONS(103), - [anon_sym_BSLASHbibliography] = ACTIONS(103), - [anon_sym_BSLASHincludegraphics] = ACTIONS(103), - [anon_sym_BSLASHincludesvg] = ACTIONS(103), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(103), - [aux_sym_verbatim_include_token1] = ACTIONS(103), - [aux_sym_import_token1] = ACTIONS(103), - [anon_sym_BSLASHlabel] = ACTIONS(103), - [aux_sym_label_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHeqref] = ACTIONS(103), - [aux_sym_label_reference_range_token1] = ACTIONS(103), - [anon_sym_BSLASHnewlabel] = ACTIONS(103), - [aux_sym_command_definition_token1] = ACTIONS(103), - [aux_sym_math_operator_token1] = ACTIONS(103), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(103), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHnewacronym] = ACTIONS(103), - [aux_sym_acronym_reference_token1] = ACTIONS(103), - [aux_sym_theorem_definition_token1] = ACTIONS(103), - [aux_sym_color_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(103), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(103), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(103), - }, - [27] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(109), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(109), - [aux_sym_paragraph_token1] = ACTIONS(109), - [aux_sym_subparagraph_token1] = ACTIONS(109), - [anon_sym_BSLASHitem] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_RBRACK] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(107), - [sym_word] = ACTIONS(107), - [sym_param] = ACTIONS(107), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(109), - [anon_sym_BSLASHcaption] = ACTIONS(109), - [aux_sym_citation_token1] = ACTIONS(109), - [aux_sym_package_include_token1] = ACTIONS(109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(109), - [aux_sym_latex_include_token1] = ACTIONS(109), - [aux_sym_latex_input_token1] = ACTIONS(109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(109), - [anon_sym_BSLASHbibliography] = ACTIONS(109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(109), - [anon_sym_BSLASHincludesvg] = ACTIONS(109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(109), - [aux_sym_verbatim_include_token1] = ACTIONS(109), - [aux_sym_import_token1] = ACTIONS(109), - [anon_sym_BSLASHlabel] = ACTIONS(109), - [aux_sym_label_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHeqref] = ACTIONS(109), - [aux_sym_label_reference_range_token1] = ACTIONS(109), - [anon_sym_BSLASHnewlabel] = ACTIONS(109), - [aux_sym_command_definition_token1] = ACTIONS(109), - [aux_sym_math_operator_token1] = ACTIONS(109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(109), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHnewacronym] = ACTIONS(109), - [aux_sym_acronym_reference_token1] = ACTIONS(109), - [aux_sym_theorem_definition_token1] = ACTIONS(109), - [aux_sym_color_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(109), - }, - [28] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(103), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(101), - [anon_sym_RBRACK] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(101), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [sym_word] = ACTIONS(101), - [sym_param] = ACTIONS(101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_BSLASH_LBRACK] = ACTIONS(101), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_BSLASH_LPAREN] = ACTIONS(101), - [anon_sym_BSLASHbegin] = ACTIONS(103), - [anon_sym_BSLASHcaption] = ACTIONS(103), - [aux_sym_citation_token1] = ACTIONS(103), - [aux_sym_package_include_token1] = ACTIONS(103), - [anon_sym_BSLASHdocumentclass] = ACTIONS(103), - [aux_sym_latex_include_token1] = ACTIONS(103), - [aux_sym_latex_input_token1] = ACTIONS(103), - [anon_sym_BSLASHaddbibresource] = ACTIONS(103), - [anon_sym_BSLASHbibliography] = ACTIONS(103), - [anon_sym_BSLASHincludegraphics] = ACTIONS(103), - [anon_sym_BSLASHincludesvg] = ACTIONS(103), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(103), - [aux_sym_verbatim_include_token1] = ACTIONS(103), - [aux_sym_import_token1] = ACTIONS(103), - [anon_sym_BSLASHlabel] = ACTIONS(103), - [aux_sym_label_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHeqref] = ACTIONS(103), - [aux_sym_label_reference_range_token1] = ACTIONS(103), - [anon_sym_BSLASHnewlabel] = ACTIONS(103), - [aux_sym_command_definition_token1] = ACTIONS(103), - [aux_sym_math_operator_token1] = ACTIONS(103), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(103), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHnewacronym] = ACTIONS(103), - [aux_sym_acronym_reference_token1] = ACTIONS(103), - [aux_sym_theorem_definition_token1] = ACTIONS(103), - [aux_sym_color_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(103), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(103), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(103), - }, - [29] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(109), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_RBRACK] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(107), - [sym_word] = ACTIONS(107), - [sym_param] = ACTIONS(107), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(109), - [anon_sym_BSLASHcaption] = ACTIONS(109), - [aux_sym_citation_token1] = ACTIONS(109), - [aux_sym_package_include_token1] = ACTIONS(109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(109), - [aux_sym_latex_include_token1] = ACTIONS(109), - [aux_sym_latex_input_token1] = ACTIONS(109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(109), - [anon_sym_BSLASHbibliography] = ACTIONS(109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(109), - [anon_sym_BSLASHincludesvg] = ACTIONS(109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(109), - [aux_sym_verbatim_include_token1] = ACTIONS(109), - [aux_sym_import_token1] = ACTIONS(109), - [anon_sym_BSLASHlabel] = ACTIONS(109), - [aux_sym_label_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHeqref] = ACTIONS(109), - [aux_sym_label_reference_range_token1] = ACTIONS(109), - [anon_sym_BSLASHnewlabel] = ACTIONS(109), - [aux_sym_command_definition_token1] = ACTIONS(109), - [aux_sym_math_operator_token1] = ACTIONS(109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(109), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHnewacronym] = ACTIONS(109), - [aux_sym_acronym_reference_token1] = ACTIONS(109), - [aux_sym_theorem_definition_token1] = ACTIONS(109), - [aux_sym_color_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(109), - }, - [30] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(115), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_RBRACK] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(113), - [sym_word] = ACTIONS(113), - [sym_param] = ACTIONS(113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(113), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(113), - [anon_sym_BSLASHbegin] = ACTIONS(115), - [anon_sym_BSLASHcaption] = ACTIONS(115), - [aux_sym_citation_token1] = ACTIONS(115), - [aux_sym_package_include_token1] = ACTIONS(115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(115), - [aux_sym_latex_include_token1] = ACTIONS(115), - [aux_sym_latex_input_token1] = ACTIONS(115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(115), - [anon_sym_BSLASHbibliography] = ACTIONS(115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(115), - [anon_sym_BSLASHincludesvg] = ACTIONS(115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(115), - [aux_sym_verbatim_include_token1] = ACTIONS(115), - [aux_sym_import_token1] = ACTIONS(115), - [anon_sym_BSLASHlabel] = ACTIONS(115), - [aux_sym_label_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHeqref] = ACTIONS(115), - [aux_sym_label_reference_range_token1] = ACTIONS(115), - [anon_sym_BSLASHnewlabel] = ACTIONS(115), - [aux_sym_command_definition_token1] = ACTIONS(115), - [aux_sym_math_operator_token1] = ACTIONS(115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(115), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(115), - [aux_sym_acronym_reference_token1] = ACTIONS(115), - [aux_sym_theorem_definition_token1] = ACTIONS(115), - [aux_sym_color_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(115), - }, - [31] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(119), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [sym_word] = ACTIONS(117), - [sym_param] = ACTIONS(117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(117), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(119), - [anon_sym_BSLASHcaption] = ACTIONS(119), - [aux_sym_citation_token1] = ACTIONS(119), - [aux_sym_package_include_token1] = ACTIONS(119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(119), - [aux_sym_latex_include_token1] = ACTIONS(119), - [aux_sym_latex_input_token1] = ACTIONS(119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(119), - [anon_sym_BSLASHbibliography] = ACTIONS(119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(119), - [anon_sym_BSLASHincludesvg] = ACTIONS(119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(119), - [aux_sym_verbatim_include_token1] = ACTIONS(119), - [aux_sym_import_token1] = ACTIONS(119), - [anon_sym_BSLASHlabel] = ACTIONS(119), - [aux_sym_label_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHeqref] = ACTIONS(119), - [aux_sym_label_reference_range_token1] = ACTIONS(119), - [anon_sym_BSLASHnewlabel] = ACTIONS(119), - [aux_sym_command_definition_token1] = ACTIONS(119), - [aux_sym_math_operator_token1] = ACTIONS(119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(119), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHnewacronym] = ACTIONS(119), - [aux_sym_acronym_reference_token1] = ACTIONS(119), - [aux_sym_theorem_definition_token1] = ACTIONS(119), - [aux_sym_color_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(119), - }, - [32] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(109), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(109), - [aux_sym_subsection_token1] = ACTIONS(109), - [aux_sym_subsubsection_token1] = ACTIONS(109), - [aux_sym_paragraph_token1] = ACTIONS(109), - [aux_sym_subparagraph_token1] = ACTIONS(109), - [anon_sym_BSLASHitem] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_RBRACK] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(107), - [sym_word] = ACTIONS(107), - [sym_param] = ACTIONS(107), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(109), - [anon_sym_BSLASHcaption] = ACTIONS(109), - [aux_sym_citation_token1] = ACTIONS(109), - [aux_sym_package_include_token1] = ACTIONS(109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(109), - [aux_sym_latex_include_token1] = ACTIONS(109), - [aux_sym_latex_input_token1] = ACTIONS(109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(109), - [anon_sym_BSLASHbibliography] = ACTIONS(109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(109), - [anon_sym_BSLASHincludesvg] = ACTIONS(109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(109), - [aux_sym_verbatim_include_token1] = ACTIONS(109), - [aux_sym_import_token1] = ACTIONS(109), - [anon_sym_BSLASHlabel] = ACTIONS(109), - [aux_sym_label_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHeqref] = ACTIONS(109), - [aux_sym_label_reference_range_token1] = ACTIONS(109), - [anon_sym_BSLASHnewlabel] = ACTIONS(109), - [aux_sym_command_definition_token1] = ACTIONS(109), - [aux_sym_math_operator_token1] = ACTIONS(109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(109), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHnewacronym] = ACTIONS(109), - [aux_sym_acronym_reference_token1] = ACTIONS(109), - [aux_sym_theorem_definition_token1] = ACTIONS(109), - [aux_sym_color_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(109), - }, - [33] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(115), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(115), - [aux_sym_paragraph_token1] = ACTIONS(115), - [aux_sym_subparagraph_token1] = ACTIONS(115), - [anon_sym_BSLASHitem] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_RBRACK] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(113), - [sym_word] = ACTIONS(113), - [sym_param] = ACTIONS(113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(113), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(113), - [anon_sym_BSLASHbegin] = ACTIONS(115), - [anon_sym_BSLASHcaption] = ACTIONS(115), - [aux_sym_citation_token1] = ACTIONS(115), - [aux_sym_package_include_token1] = ACTIONS(115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(115), - [aux_sym_latex_include_token1] = ACTIONS(115), - [aux_sym_latex_input_token1] = ACTIONS(115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(115), - [anon_sym_BSLASHbibliography] = ACTIONS(115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(115), - [anon_sym_BSLASHincludesvg] = ACTIONS(115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(115), - [aux_sym_verbatim_include_token1] = ACTIONS(115), - [aux_sym_import_token1] = ACTIONS(115), - [anon_sym_BSLASHlabel] = ACTIONS(115), - [aux_sym_label_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHeqref] = ACTIONS(115), - [aux_sym_label_reference_range_token1] = ACTIONS(115), - [anon_sym_BSLASHnewlabel] = ACTIONS(115), - [aux_sym_command_definition_token1] = ACTIONS(115), - [aux_sym_math_operator_token1] = ACTIONS(115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(115), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(115), - [aux_sym_acronym_reference_token1] = ACTIONS(115), - [aux_sym_theorem_definition_token1] = ACTIONS(115), - [aux_sym_color_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(115), - }, - [34] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(119), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(119), - [aux_sym_paragraph_token1] = ACTIONS(119), - [aux_sym_subparagraph_token1] = ACTIONS(119), - [anon_sym_BSLASHitem] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [sym_word] = ACTIONS(117), - [sym_param] = ACTIONS(117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(117), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(119), - [anon_sym_BSLASHcaption] = ACTIONS(119), - [aux_sym_citation_token1] = ACTIONS(119), - [aux_sym_package_include_token1] = ACTIONS(119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(119), - [aux_sym_latex_include_token1] = ACTIONS(119), - [aux_sym_latex_input_token1] = ACTIONS(119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(119), - [anon_sym_BSLASHbibliography] = ACTIONS(119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(119), - [anon_sym_BSLASHincludesvg] = ACTIONS(119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(119), - [aux_sym_verbatim_include_token1] = ACTIONS(119), - [aux_sym_import_token1] = ACTIONS(119), - [anon_sym_BSLASHlabel] = ACTIONS(119), - [aux_sym_label_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHeqref] = ACTIONS(119), - [aux_sym_label_reference_range_token1] = ACTIONS(119), - [anon_sym_BSLASHnewlabel] = ACTIONS(119), - [aux_sym_command_definition_token1] = ACTIONS(119), - [aux_sym_math_operator_token1] = ACTIONS(119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(119), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHnewacronym] = ACTIONS(119), - [aux_sym_acronym_reference_token1] = ACTIONS(119), - [aux_sym_theorem_definition_token1] = ACTIONS(119), - [aux_sym_color_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(119), - }, - [35] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(103), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(103), - [aux_sym_subparagraph_token1] = ACTIONS(103), - [anon_sym_BSLASHitem] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(101), - [anon_sym_RBRACK] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_RBRACE] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(101), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [sym_word] = ACTIONS(101), - [sym_param] = ACTIONS(101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_BSLASH_LBRACK] = ACTIONS(101), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_BSLASH_LPAREN] = ACTIONS(101), - [anon_sym_BSLASHbegin] = ACTIONS(103), - [anon_sym_BSLASHcaption] = ACTIONS(103), - [aux_sym_citation_token1] = ACTIONS(103), - [aux_sym_package_include_token1] = ACTIONS(103), - [anon_sym_BSLASHdocumentclass] = ACTIONS(103), - [aux_sym_latex_include_token1] = ACTIONS(103), - [aux_sym_latex_input_token1] = ACTIONS(103), - [anon_sym_BSLASHaddbibresource] = ACTIONS(103), - [anon_sym_BSLASHbibliography] = ACTIONS(103), - [anon_sym_BSLASHincludegraphics] = ACTIONS(103), - [anon_sym_BSLASHincludesvg] = ACTIONS(103), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(103), - [aux_sym_verbatim_include_token1] = ACTIONS(103), - [aux_sym_import_token1] = ACTIONS(103), - [anon_sym_BSLASHlabel] = ACTIONS(103), - [aux_sym_label_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHeqref] = ACTIONS(103), - [aux_sym_label_reference_range_token1] = ACTIONS(103), - [anon_sym_BSLASHnewlabel] = ACTIONS(103), - [aux_sym_command_definition_token1] = ACTIONS(103), - [aux_sym_math_operator_token1] = ACTIONS(103), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(103), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHnewacronym] = ACTIONS(103), - [aux_sym_acronym_reference_token1] = ACTIONS(103), - [aux_sym_theorem_definition_token1] = ACTIONS(103), - [aux_sym_color_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(103), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(103), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(103), - }, - [36] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(109), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(109), - [aux_sym_subparagraph_token1] = ACTIONS(109), - [anon_sym_BSLASHitem] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_RBRACK] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(107), - [sym_word] = ACTIONS(107), - [sym_param] = ACTIONS(107), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(109), - [anon_sym_BSLASHcaption] = ACTIONS(109), - [aux_sym_citation_token1] = ACTIONS(109), - [aux_sym_package_include_token1] = ACTIONS(109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(109), - [aux_sym_latex_include_token1] = ACTIONS(109), - [aux_sym_latex_input_token1] = ACTIONS(109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(109), - [anon_sym_BSLASHbibliography] = ACTIONS(109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(109), - [anon_sym_BSLASHincludesvg] = ACTIONS(109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(109), - [aux_sym_verbatim_include_token1] = ACTIONS(109), - [aux_sym_import_token1] = ACTIONS(109), - [anon_sym_BSLASHlabel] = ACTIONS(109), - [aux_sym_label_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHeqref] = ACTIONS(109), - [aux_sym_label_reference_range_token1] = ACTIONS(109), - [anon_sym_BSLASHnewlabel] = ACTIONS(109), - [aux_sym_command_definition_token1] = ACTIONS(109), - [aux_sym_math_operator_token1] = ACTIONS(109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(109), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHnewacronym] = ACTIONS(109), - [aux_sym_acronym_reference_token1] = ACTIONS(109), - [aux_sym_theorem_definition_token1] = ACTIONS(109), - [aux_sym_color_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(109), - }, - [37] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(115), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(115), - [anon_sym_BSLASHitem] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_RBRACK] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(113), - [sym_word] = ACTIONS(113), - [sym_param] = ACTIONS(113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(113), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(113), - [anon_sym_BSLASHbegin] = ACTIONS(115), - [anon_sym_BSLASHcaption] = ACTIONS(115), - [aux_sym_citation_token1] = ACTIONS(115), - [aux_sym_package_include_token1] = ACTIONS(115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(115), - [aux_sym_latex_include_token1] = ACTIONS(115), - [aux_sym_latex_input_token1] = ACTIONS(115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(115), - [anon_sym_BSLASHbibliography] = ACTIONS(115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(115), - [anon_sym_BSLASHincludesvg] = ACTIONS(115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(115), - [aux_sym_verbatim_include_token1] = ACTIONS(115), - [aux_sym_import_token1] = ACTIONS(115), - [anon_sym_BSLASHlabel] = ACTIONS(115), - [aux_sym_label_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHeqref] = ACTIONS(115), - [aux_sym_label_reference_range_token1] = ACTIONS(115), - [anon_sym_BSLASHnewlabel] = ACTIONS(115), - [aux_sym_command_definition_token1] = ACTIONS(115), - [aux_sym_math_operator_token1] = ACTIONS(115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(115), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(115), - [aux_sym_acronym_reference_token1] = ACTIONS(115), - [aux_sym_theorem_definition_token1] = ACTIONS(115), - [aux_sym_color_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(115), - }, - [38] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(119), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(119), - [anon_sym_BSLASHitem] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [sym_word] = ACTIONS(117), - [sym_param] = ACTIONS(117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(117), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(119), - [anon_sym_BSLASHcaption] = ACTIONS(119), - [aux_sym_citation_token1] = ACTIONS(119), - [aux_sym_package_include_token1] = ACTIONS(119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(119), - [aux_sym_latex_include_token1] = ACTIONS(119), - [aux_sym_latex_input_token1] = ACTIONS(119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(119), - [anon_sym_BSLASHbibliography] = ACTIONS(119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(119), - [anon_sym_BSLASHincludesvg] = ACTIONS(119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(119), - [aux_sym_verbatim_include_token1] = ACTIONS(119), - [aux_sym_import_token1] = ACTIONS(119), - [anon_sym_BSLASHlabel] = ACTIONS(119), - [aux_sym_label_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHeqref] = ACTIONS(119), - [aux_sym_label_reference_range_token1] = ACTIONS(119), - [anon_sym_BSLASHnewlabel] = ACTIONS(119), - [aux_sym_command_definition_token1] = ACTIONS(119), - [aux_sym_math_operator_token1] = ACTIONS(119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(119), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHnewacronym] = ACTIONS(119), - [aux_sym_acronym_reference_token1] = ACTIONS(119), - [aux_sym_theorem_definition_token1] = ACTIONS(119), - [aux_sym_color_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(119), - }, - [39] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(119), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(119), - [aux_sym_subsection_token1] = ACTIONS(119), - [aux_sym_subsubsection_token1] = ACTIONS(119), - [aux_sym_paragraph_token1] = ACTIONS(119), - [aux_sym_subparagraph_token1] = ACTIONS(119), - [anon_sym_BSLASHitem] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [sym_word] = ACTIONS(117), - [sym_param] = ACTIONS(117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(117), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(119), - [anon_sym_BSLASHcaption] = ACTIONS(119), - [aux_sym_citation_token1] = ACTIONS(119), - [aux_sym_package_include_token1] = ACTIONS(119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(119), - [aux_sym_latex_include_token1] = ACTIONS(119), - [aux_sym_latex_input_token1] = ACTIONS(119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(119), - [anon_sym_BSLASHbibliography] = ACTIONS(119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(119), - [anon_sym_BSLASHincludesvg] = ACTIONS(119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(119), - [aux_sym_verbatim_include_token1] = ACTIONS(119), - [aux_sym_import_token1] = ACTIONS(119), - [anon_sym_BSLASHlabel] = ACTIONS(119), - [aux_sym_label_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHeqref] = ACTIONS(119), - [aux_sym_label_reference_range_token1] = ACTIONS(119), - [anon_sym_BSLASHnewlabel] = ACTIONS(119), - [aux_sym_command_definition_token1] = ACTIONS(119), - [aux_sym_math_operator_token1] = ACTIONS(119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(119), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHnewacronym] = ACTIONS(119), - [aux_sym_acronym_reference_token1] = ACTIONS(119), - [aux_sym_theorem_definition_token1] = ACTIONS(119), - [aux_sym_color_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(119), - }, - [40] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(119), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(119), - [aux_sym_subparagraph_token1] = ACTIONS(119), - [anon_sym_BSLASHitem] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_RBRACK] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [sym_word] = ACTIONS(117), - [sym_param] = ACTIONS(117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(117), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(119), - [anon_sym_BSLASHcaption] = ACTIONS(119), - [aux_sym_citation_token1] = ACTIONS(119), - [aux_sym_package_include_token1] = ACTIONS(119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(119), - [aux_sym_latex_include_token1] = ACTIONS(119), - [aux_sym_latex_input_token1] = ACTIONS(119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(119), - [anon_sym_BSLASHbibliography] = ACTIONS(119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(119), - [anon_sym_BSLASHincludesvg] = ACTIONS(119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(119), - [aux_sym_verbatim_include_token1] = ACTIONS(119), - [aux_sym_import_token1] = ACTIONS(119), - [anon_sym_BSLASHlabel] = ACTIONS(119), - [aux_sym_label_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHeqref] = ACTIONS(119), - [aux_sym_label_reference_range_token1] = ACTIONS(119), - [anon_sym_BSLASHnewlabel] = ACTIONS(119), - [aux_sym_command_definition_token1] = ACTIONS(119), - [aux_sym_math_operator_token1] = ACTIONS(119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(119), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHnewacronym] = ACTIONS(119), - [aux_sym_acronym_reference_token1] = ACTIONS(119), - [aux_sym_theorem_definition_token1] = ACTIONS(119), - [aux_sym_color_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(119), - }, - [41] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_RBRACK] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_RBRACE] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(382), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(386), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [42] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(115), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(115), - [aux_sym_subparagraph_token1] = ACTIONS(115), - [anon_sym_BSLASHitem] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_RBRACK] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_RBRACE] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(113), - [sym_word] = ACTIONS(113), - [sym_param] = ACTIONS(113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(113), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(113), - [anon_sym_BSLASHbegin] = ACTIONS(115), - [anon_sym_BSLASHcaption] = ACTIONS(115), - [aux_sym_citation_token1] = ACTIONS(115), - [aux_sym_package_include_token1] = ACTIONS(115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(115), - [aux_sym_latex_include_token1] = ACTIONS(115), - [aux_sym_latex_input_token1] = ACTIONS(115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(115), - [anon_sym_BSLASHbibliography] = ACTIONS(115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(115), - [anon_sym_BSLASHincludesvg] = ACTIONS(115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(115), - [aux_sym_verbatim_include_token1] = ACTIONS(115), - [aux_sym_import_token1] = ACTIONS(115), - [anon_sym_BSLASHlabel] = ACTIONS(115), - [aux_sym_label_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHeqref] = ACTIONS(115), - [aux_sym_label_reference_range_token1] = ACTIONS(115), - [anon_sym_BSLASHnewlabel] = ACTIONS(115), - [aux_sym_command_definition_token1] = ACTIONS(115), - [aux_sym_math_operator_token1] = ACTIONS(115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(115), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(115), - [aux_sym_acronym_reference_token1] = ACTIONS(115), - [aux_sym_theorem_definition_token1] = ACTIONS(115), - [aux_sym_color_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(115), - }, - [43] = { - [sym__simple_content] = STATE(110), - [sym__content] = STATE(110), - [sym_part] = STATE(110), - [sym_chapter] = STATE(110), - [sym_section] = STATE(110), - [sym_subsection] = STATE(110), - [sym_subsubsection] = STATE(110), - [sym_paragraph] = STATE(110), - [sym_subparagraph] = STATE(110), - [sym_enum_item] = STATE(110), - [sym_brace_group] = STATE(110), - [sym_mixed_group] = STATE(110), - [sym_text] = STATE(110), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(110), - [sym_inline_formula] = STATE(110), - [sym_begin] = STATE(52), - [sym_environment] = STATE(110), - [sym_caption] = STATE(110), - [sym_citation] = STATE(110), - [sym_package_include] = STATE(110), - [sym_class_include] = STATE(110), - [sym_latex_include] = STATE(110), - [sym_latex_input] = STATE(110), - [sym_biblatex_include] = STATE(110), - [sym_bibtex_include] = STATE(110), - [sym_graphics_include] = STATE(110), - [sym_svg_include] = STATE(110), - [sym_inkscape_include] = STATE(110), - [sym_verbatim_include] = STATE(110), - [sym_import] = STATE(110), - [sym_label_definition] = STATE(110), - [sym_label_reference] = STATE(110), - [sym_equation_label_reference] = STATE(110), - [sym_label_reference_range] = STATE(110), - [sym_label_number] = STATE(110), - [sym_command_definition] = STATE(110), - [sym_math_operator] = STATE(110), - [sym_glossary_entry_definition] = STATE(110), - [sym_glossary_entry_reference] = STATE(110), - [sym_acronym_definition] = STATE(110), - [sym_acronym_reference] = STATE(110), - [sym_theorem_definition] = STATE(110), - [sym_color_reference] = STATE(110), - [sym_color_definition] = STATE(110), - [sym_color_set_definition] = STATE(110), - [sym_pgf_library_import] = STATE(110), - [sym_tikz_library_import] = STATE(110), - [sym_generic_command] = STATE(110), - [aux_sym_document_repeat1] = STATE(110), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(452), - [sym_param] = ACTIONS(454), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [44] = { - [sym__simple_content] = STATE(57), - [sym__content] = STATE(57), - [sym_part] = STATE(57), - [sym_chapter] = STATE(57), - [sym_section] = STATE(57), - [sym_subsection] = STATE(57), - [sym_subsubsection] = STATE(57), - [sym_paragraph] = STATE(57), - [sym_subparagraph] = STATE(57), - [sym_enum_item] = STATE(57), - [sym_brace_group] = STATE(57), - [sym_mixed_group] = STATE(57), - [sym_text] = STATE(57), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(57), - [sym_inline_formula] = STATE(57), - [sym_begin] = STATE(73), - [sym_end] = STATE(1862), - [sym_environment] = STATE(57), - [sym_caption] = STATE(57), - [sym_citation] = STATE(57), - [sym_package_include] = STATE(57), - [sym_class_include] = STATE(57), - [sym_latex_include] = STATE(57), - [sym_latex_input] = STATE(57), - [sym_biblatex_include] = STATE(57), - [sym_bibtex_include] = STATE(57), - [sym_graphics_include] = STATE(57), - [sym_svg_include] = STATE(57), - [sym_inkscape_include] = STATE(57), - [sym_verbatim_include] = STATE(57), - [sym_import] = STATE(57), - [sym_label_definition] = STATE(57), - [sym_label_reference] = STATE(57), - [sym_equation_label_reference] = STATE(57), - [sym_label_reference_range] = STATE(57), - [sym_label_number] = STATE(57), - [sym_command_definition] = STATE(57), - [sym_math_operator] = STATE(57), - [sym_glossary_entry_definition] = STATE(57), - [sym_glossary_entry_reference] = STATE(57), - [sym_acronym_definition] = STATE(57), - [sym_acronym_reference] = STATE(57), - [sym_theorem_definition] = STATE(57), - [sym_color_reference] = STATE(57), - [sym_color_definition] = STATE(57), - [sym_color_set_definition] = STATE(57), - [sym_pgf_library_import] = STATE(57), - [sym_tikz_library_import] = STATE(57), - [sym_generic_command] = STATE(57), - [aux_sym_document_repeat1] = STATE(57), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(480), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(488), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [45] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(103), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(103), - [aux_sym_chapter_token1] = ACTIONS(103), - [aux_sym_section_token1] = ACTIONS(103), - [aux_sym_subsection_token1] = ACTIONS(103), - [aux_sym_subsubsection_token1] = ACTIONS(103), - [aux_sym_paragraph_token1] = ACTIONS(103), - [aux_sym_subparagraph_token1] = ACTIONS(103), - [anon_sym_BSLASHitem] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(101), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [sym_word] = ACTIONS(101), - [sym_param] = ACTIONS(101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_BSLASH_LBRACK] = ACTIONS(101), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_BSLASH_LPAREN] = ACTIONS(101), - [anon_sym_BSLASHbegin] = ACTIONS(103), - [anon_sym_BSLASHend] = ACTIONS(103), - [anon_sym_BSLASHcaption] = ACTIONS(103), - [aux_sym_citation_token1] = ACTIONS(103), - [aux_sym_package_include_token1] = ACTIONS(103), - [anon_sym_BSLASHdocumentclass] = ACTIONS(103), - [aux_sym_latex_include_token1] = ACTIONS(103), - [aux_sym_latex_input_token1] = ACTIONS(103), - [anon_sym_BSLASHaddbibresource] = ACTIONS(103), - [anon_sym_BSLASHbibliography] = ACTIONS(103), - [anon_sym_BSLASHincludegraphics] = ACTIONS(103), - [anon_sym_BSLASHincludesvg] = ACTIONS(103), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(103), - [aux_sym_verbatim_include_token1] = ACTIONS(103), - [aux_sym_import_token1] = ACTIONS(103), - [anon_sym_BSLASHlabel] = ACTIONS(103), - [aux_sym_label_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHeqref] = ACTIONS(103), - [aux_sym_label_reference_range_token1] = ACTIONS(103), - [anon_sym_BSLASHnewlabel] = ACTIONS(103), - [aux_sym_command_definition_token1] = ACTIONS(103), - [aux_sym_math_operator_token1] = ACTIONS(103), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(103), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHnewacronym] = ACTIONS(103), - [aux_sym_acronym_reference_token1] = ACTIONS(103), - [aux_sym_theorem_definition_token1] = ACTIONS(103), - [aux_sym_color_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(103), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(103), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(103), - }, - [46] = { - [sym__simple_content] = STATE(70), - [sym__content] = STATE(70), - [sym_part] = STATE(70), - [sym_chapter] = STATE(70), - [sym_section] = STATE(70), - [sym_subsection] = STATE(70), - [sym_subsubsection] = STATE(70), - [sym_paragraph] = STATE(70), - [sym_subparagraph] = STATE(70), - [sym_enum_item] = STATE(70), - [sym_brace_group] = STATE(70), - [sym_mixed_group] = STATE(70), - [sym_text] = STATE(70), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(70), - [sym_inline_formula] = STATE(70), - [sym_begin] = STATE(52), - [sym_environment] = STATE(70), - [sym_caption] = STATE(70), - [sym_citation] = STATE(70), - [sym_package_include] = STATE(70), - [sym_class_include] = STATE(70), - [sym_latex_include] = STATE(70), - [sym_latex_input] = STATE(70), - [sym_biblatex_include] = STATE(70), - [sym_bibtex_include] = STATE(70), - [sym_graphics_include] = STATE(70), - [sym_svg_include] = STATE(70), - [sym_inkscape_include] = STATE(70), - [sym_verbatim_include] = STATE(70), - [sym_import] = STATE(70), - [sym_label_definition] = STATE(70), - [sym_label_reference] = STATE(70), - [sym_equation_label_reference] = STATE(70), - [sym_label_reference_range] = STATE(70), - [sym_label_number] = STATE(70), - [sym_command_definition] = STATE(70), - [sym_math_operator] = STATE(70), - [sym_glossary_entry_definition] = STATE(70), - [sym_glossary_entry_reference] = STATE(70), - [sym_acronym_definition] = STATE(70), - [sym_acronym_reference] = STATE(70), - [sym_theorem_definition] = STATE(70), - [sym_color_reference] = STATE(70), - [sym_color_definition] = STATE(70), - [sym_color_set_definition] = STATE(70), - [sym_pgf_library_import] = STATE(70), - [sym_tikz_library_import] = STATE(70), - [sym_generic_command] = STATE(70), - [aux_sym_document_repeat1] = STATE(70), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(550), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(552), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [47] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(109), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(109), - [aux_sym_chapter_token1] = ACTIONS(109), - [aux_sym_section_token1] = ACTIONS(109), - [aux_sym_subsection_token1] = ACTIONS(109), - [aux_sym_subsubsection_token1] = ACTIONS(109), - [aux_sym_paragraph_token1] = ACTIONS(109), - [aux_sym_subparagraph_token1] = ACTIONS(109), - [anon_sym_BSLASHitem] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(107), - [sym_word] = ACTIONS(107), - [sym_param] = ACTIONS(107), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(109), - [anon_sym_BSLASHend] = ACTIONS(109), - [anon_sym_BSLASHcaption] = ACTIONS(109), - [aux_sym_citation_token1] = ACTIONS(109), - [aux_sym_package_include_token1] = ACTIONS(109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(109), - [aux_sym_latex_include_token1] = ACTIONS(109), - [aux_sym_latex_input_token1] = ACTIONS(109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(109), - [anon_sym_BSLASHbibliography] = ACTIONS(109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(109), - [anon_sym_BSLASHincludesvg] = ACTIONS(109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(109), - [aux_sym_verbatim_include_token1] = ACTIONS(109), - [aux_sym_import_token1] = ACTIONS(109), - [anon_sym_BSLASHlabel] = ACTIONS(109), - [aux_sym_label_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHeqref] = ACTIONS(109), - [aux_sym_label_reference_range_token1] = ACTIONS(109), - [anon_sym_BSLASHnewlabel] = ACTIONS(109), - [aux_sym_command_definition_token1] = ACTIONS(109), - [aux_sym_math_operator_token1] = ACTIONS(109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(109), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHnewacronym] = ACTIONS(109), - [aux_sym_acronym_reference_token1] = ACTIONS(109), - [aux_sym_theorem_definition_token1] = ACTIONS(109), - [aux_sym_color_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(109), - }, - [48] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(115), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(115), - [aux_sym_chapter_token1] = ACTIONS(115), - [aux_sym_section_token1] = ACTIONS(115), - [aux_sym_subsection_token1] = ACTIONS(115), - [aux_sym_subsubsection_token1] = ACTIONS(115), - [aux_sym_paragraph_token1] = ACTIONS(115), - [aux_sym_subparagraph_token1] = ACTIONS(115), - [anon_sym_BSLASHitem] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(113), - [sym_word] = ACTIONS(113), - [sym_param] = ACTIONS(113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(113), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(113), - [anon_sym_BSLASHbegin] = ACTIONS(115), - [anon_sym_BSLASHend] = ACTIONS(115), - [anon_sym_BSLASHcaption] = ACTIONS(115), - [aux_sym_citation_token1] = ACTIONS(115), - [aux_sym_package_include_token1] = ACTIONS(115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(115), - [aux_sym_latex_include_token1] = ACTIONS(115), - [aux_sym_latex_input_token1] = ACTIONS(115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(115), - [anon_sym_BSLASHbibliography] = ACTIONS(115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(115), - [anon_sym_BSLASHincludesvg] = ACTIONS(115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(115), - [aux_sym_verbatim_include_token1] = ACTIONS(115), - [aux_sym_import_token1] = ACTIONS(115), - [anon_sym_BSLASHlabel] = ACTIONS(115), - [aux_sym_label_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHeqref] = ACTIONS(115), - [aux_sym_label_reference_range_token1] = ACTIONS(115), - [anon_sym_BSLASHnewlabel] = ACTIONS(115), - [aux_sym_command_definition_token1] = ACTIONS(115), - [aux_sym_math_operator_token1] = ACTIONS(115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(115), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(115), - [aux_sym_acronym_reference_token1] = ACTIONS(115), - [aux_sym_theorem_definition_token1] = ACTIONS(115), - [aux_sym_color_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(115), - }, - [49] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(119), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(119), - [aux_sym_chapter_token1] = ACTIONS(119), - [aux_sym_section_token1] = ACTIONS(119), - [aux_sym_subsection_token1] = ACTIONS(119), - [aux_sym_subsubsection_token1] = ACTIONS(119), - [aux_sym_paragraph_token1] = ACTIONS(119), - [aux_sym_subparagraph_token1] = ACTIONS(119), - [anon_sym_BSLASHitem] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [sym_word] = ACTIONS(117), - [sym_param] = ACTIONS(117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(117), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(119), - [anon_sym_BSLASHend] = ACTIONS(119), - [anon_sym_BSLASHcaption] = ACTIONS(119), - [aux_sym_citation_token1] = ACTIONS(119), - [aux_sym_package_include_token1] = ACTIONS(119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(119), - [aux_sym_latex_include_token1] = ACTIONS(119), - [aux_sym_latex_input_token1] = ACTIONS(119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(119), - [anon_sym_BSLASHbibliography] = ACTIONS(119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(119), - [anon_sym_BSLASHincludesvg] = ACTIONS(119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(119), - [aux_sym_verbatim_include_token1] = ACTIONS(119), - [aux_sym_import_token1] = ACTIONS(119), - [anon_sym_BSLASHlabel] = ACTIONS(119), - [aux_sym_label_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHeqref] = ACTIONS(119), - [aux_sym_label_reference_range_token1] = ACTIONS(119), - [anon_sym_BSLASHnewlabel] = ACTIONS(119), - [aux_sym_command_definition_token1] = ACTIONS(119), - [aux_sym_math_operator_token1] = ACTIONS(119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(119), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHnewacronym] = ACTIONS(119), - [aux_sym_acronym_reference_token1] = ACTIONS(119), - [aux_sym_theorem_definition_token1] = ACTIONS(119), - [aux_sym_color_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(119), - }, - [50] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(115), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(115), - [aux_sym_chapter_token1] = ACTIONS(115), - [aux_sym_section_token1] = ACTIONS(115), - [aux_sym_subsection_token1] = ACTIONS(115), - [aux_sym_subsubsection_token1] = ACTIONS(115), - [aux_sym_paragraph_token1] = ACTIONS(115), - [aux_sym_subparagraph_token1] = ACTIONS(115), - [anon_sym_BSLASHitem] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(113), - [sym_word] = ACTIONS(113), - [sym_param] = ACTIONS(113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(113), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(113), - [anon_sym_BSLASH_RPAREN] = ACTIONS(113), - [anon_sym_BSLASHbegin] = ACTIONS(115), - [anon_sym_BSLASHcaption] = ACTIONS(115), - [aux_sym_citation_token1] = ACTIONS(115), - [aux_sym_package_include_token1] = ACTIONS(115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(115), - [aux_sym_latex_include_token1] = ACTIONS(115), - [aux_sym_latex_input_token1] = ACTIONS(115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(115), - [anon_sym_BSLASHbibliography] = ACTIONS(115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(115), - [anon_sym_BSLASHincludesvg] = ACTIONS(115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(115), - [aux_sym_verbatim_include_token1] = ACTIONS(115), - [aux_sym_import_token1] = ACTIONS(115), - [anon_sym_BSLASHlabel] = ACTIONS(115), - [aux_sym_label_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHeqref] = ACTIONS(115), - [aux_sym_label_reference_range_token1] = ACTIONS(115), - [anon_sym_BSLASHnewlabel] = ACTIONS(115), - [aux_sym_command_definition_token1] = ACTIONS(115), - [aux_sym_math_operator_token1] = ACTIONS(115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(115), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(115), - [aux_sym_acronym_reference_token1] = ACTIONS(115), - [aux_sym_theorem_definition_token1] = ACTIONS(115), - [aux_sym_color_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(115), - }, - [51] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(103), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(103), - [aux_sym_chapter_token1] = ACTIONS(103), - [aux_sym_section_token1] = ACTIONS(103), - [aux_sym_subsection_token1] = ACTIONS(103), - [aux_sym_subsubsection_token1] = ACTIONS(103), - [aux_sym_paragraph_token1] = ACTIONS(103), - [aux_sym_subparagraph_token1] = ACTIONS(103), - [anon_sym_BSLASHitem] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(101), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [sym_word] = ACTIONS(101), - [sym_param] = ACTIONS(101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_BSLASH_LBRACK] = ACTIONS(101), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_BSLASH_LPAREN] = ACTIONS(101), - [anon_sym_BSLASH_RPAREN] = ACTIONS(101), - [anon_sym_BSLASHbegin] = ACTIONS(103), - [anon_sym_BSLASHcaption] = ACTIONS(103), - [aux_sym_citation_token1] = ACTIONS(103), - [aux_sym_package_include_token1] = ACTIONS(103), - [anon_sym_BSLASHdocumentclass] = ACTIONS(103), - [aux_sym_latex_include_token1] = ACTIONS(103), - [aux_sym_latex_input_token1] = ACTIONS(103), - [anon_sym_BSLASHaddbibresource] = ACTIONS(103), - [anon_sym_BSLASHbibliography] = ACTIONS(103), - [anon_sym_BSLASHincludegraphics] = ACTIONS(103), - [anon_sym_BSLASHincludesvg] = ACTIONS(103), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(103), - [aux_sym_verbatim_include_token1] = ACTIONS(103), - [aux_sym_import_token1] = ACTIONS(103), - [anon_sym_BSLASHlabel] = ACTIONS(103), - [aux_sym_label_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHeqref] = ACTIONS(103), - [aux_sym_label_reference_range_token1] = ACTIONS(103), - [anon_sym_BSLASHnewlabel] = ACTIONS(103), - [aux_sym_command_definition_token1] = ACTIONS(103), - [aux_sym_math_operator_token1] = ACTIONS(103), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(103), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHnewacronym] = ACTIONS(103), - [aux_sym_acronym_reference_token1] = ACTIONS(103), - [aux_sym_theorem_definition_token1] = ACTIONS(103), - [aux_sym_color_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(103), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(103), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(103), - }, - [52] = { - [sym__simple_content] = STATE(108), - [sym__content] = STATE(108), - [sym_part] = STATE(108), - [sym_chapter] = STATE(108), - [sym_section] = STATE(108), - [sym_subsection] = STATE(108), - [sym_subsubsection] = STATE(108), - [sym_paragraph] = STATE(108), - [sym_subparagraph] = STATE(108), - [sym_enum_item] = STATE(108), - [sym_brace_group] = STATE(108), - [sym_mixed_group] = STATE(108), - [sym_text] = STATE(108), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(108), - [sym_inline_formula] = STATE(108), - [sym_begin] = STATE(73), - [sym_end] = STATE(500), - [sym_environment] = STATE(108), - [sym_caption] = STATE(108), - [sym_citation] = STATE(108), - [sym_package_include] = STATE(108), - [sym_class_include] = STATE(108), - [sym_latex_include] = STATE(108), - [sym_latex_input] = STATE(108), - [sym_biblatex_include] = STATE(108), - [sym_bibtex_include] = STATE(108), - [sym_graphics_include] = STATE(108), - [sym_svg_include] = STATE(108), - [sym_inkscape_include] = STATE(108), - [sym_verbatim_include] = STATE(108), - [sym_import] = STATE(108), - [sym_label_definition] = STATE(108), - [sym_label_reference] = STATE(108), - [sym_equation_label_reference] = STATE(108), - [sym_label_reference_range] = STATE(108), - [sym_label_number] = STATE(108), - [sym_command_definition] = STATE(108), - [sym_math_operator] = STATE(108), - [sym_glossary_entry_definition] = STATE(108), - [sym_glossary_entry_reference] = STATE(108), - [sym_acronym_definition] = STATE(108), - [sym_acronym_reference] = STATE(108), - [sym_theorem_definition] = STATE(108), - [sym_color_reference] = STATE(108), - [sym_color_definition] = STATE(108), - [sym_color_set_definition] = STATE(108), - [sym_pgf_library_import] = STATE(108), - [sym_tikz_library_import] = STATE(108), - [sym_generic_command] = STATE(108), - [aux_sym_document_repeat1] = STATE(108), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(554), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(556), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [53] = { - [sym__simple_content] = STATE(65), - [sym__content] = STATE(65), - [sym_part] = STATE(65), - [sym_chapter] = STATE(65), - [sym_section] = STATE(65), - [sym_subsection] = STATE(65), - [sym_subsubsection] = STATE(65), - [sym_paragraph] = STATE(65), - [sym_subparagraph] = STATE(65), - [sym_enum_item] = STATE(65), - [sym_brace_group] = STATE(65), - [sym_mixed_group] = STATE(65), - [sym_text] = STATE(65), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(65), - [sym_inline_formula] = STATE(65), - [sym_begin] = STATE(52), - [sym_environment] = STATE(65), - [sym_caption] = STATE(65), - [sym_citation] = STATE(65), - [sym_package_include] = STATE(65), - [sym_class_include] = STATE(65), - [sym_latex_include] = STATE(65), - [sym_latex_input] = STATE(65), - [sym_biblatex_include] = STATE(65), - [sym_bibtex_include] = STATE(65), - [sym_graphics_include] = STATE(65), - [sym_svg_include] = STATE(65), - [sym_inkscape_include] = STATE(65), - [sym_verbatim_include] = STATE(65), - [sym_import] = STATE(65), - [sym_label_definition] = STATE(65), - [sym_label_reference] = STATE(65), - [sym_equation_label_reference] = STATE(65), - [sym_label_reference_range] = STATE(65), - [sym_label_number] = STATE(65), - [sym_command_definition] = STATE(65), - [sym_math_operator] = STATE(65), - [sym_glossary_entry_definition] = STATE(65), - [sym_glossary_entry_reference] = STATE(65), - [sym_acronym_definition] = STATE(65), - [sym_acronym_reference] = STATE(65), - [sym_theorem_definition] = STATE(65), - [sym_color_reference] = STATE(65), - [sym_color_definition] = STATE(65), - [sym_color_set_definition] = STATE(65), - [sym_pgf_library_import] = STATE(65), - [sym_tikz_library_import] = STATE(65), - [sym_generic_command] = STATE(65), - [aux_sym_document_repeat1] = STATE(65), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(558), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(560), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [54] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(119), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(119), - [aux_sym_chapter_token1] = ACTIONS(119), - [aux_sym_section_token1] = ACTIONS(119), - [aux_sym_subsection_token1] = ACTIONS(119), - [aux_sym_subsubsection_token1] = ACTIONS(119), - [aux_sym_paragraph_token1] = ACTIONS(119), - [aux_sym_subparagraph_token1] = ACTIONS(119), - [anon_sym_BSLASHitem] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [sym_word] = ACTIONS(117), - [sym_param] = ACTIONS(117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(117), - [anon_sym_BSLASH_RBRACK] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(117), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(119), - [anon_sym_BSLASHcaption] = ACTIONS(119), - [aux_sym_citation_token1] = ACTIONS(119), - [aux_sym_package_include_token1] = ACTIONS(119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(119), - [aux_sym_latex_include_token1] = ACTIONS(119), - [aux_sym_latex_input_token1] = ACTIONS(119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(119), - [anon_sym_BSLASHbibliography] = ACTIONS(119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(119), - [anon_sym_BSLASHincludesvg] = ACTIONS(119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(119), - [aux_sym_verbatim_include_token1] = ACTIONS(119), - [aux_sym_import_token1] = ACTIONS(119), - [anon_sym_BSLASHlabel] = ACTIONS(119), - [aux_sym_label_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHeqref] = ACTIONS(119), - [aux_sym_label_reference_range_token1] = ACTIONS(119), - [anon_sym_BSLASHnewlabel] = ACTIONS(119), - [aux_sym_command_definition_token1] = ACTIONS(119), - [aux_sym_math_operator_token1] = ACTIONS(119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(119), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHnewacronym] = ACTIONS(119), - [aux_sym_acronym_reference_token1] = ACTIONS(119), - [aux_sym_theorem_definition_token1] = ACTIONS(119), - [aux_sym_color_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(119), - }, - [55] = { - [sym__simple_content] = STATE(111), - [sym_chapter] = STATE(111), - [sym_section] = STATE(111), - [sym_subsection] = STATE(111), - [sym_subsubsection] = STATE(111), - [sym_paragraph] = STATE(111), - [sym_subparagraph] = STATE(111), - [sym_enum_item] = STATE(111), - [sym_brace_group] = STATE(111), - [sym_mixed_group] = STATE(111), - [sym_text] = STATE(111), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(111), - [sym_inline_formula] = STATE(111), - [sym_begin] = STATE(52), - [sym_environment] = STATE(111), - [sym_caption] = STATE(111), - [sym_citation] = STATE(111), - [sym_package_include] = STATE(111), - [sym_class_include] = STATE(111), - [sym_latex_include] = STATE(111), - [sym_latex_input] = STATE(111), - [sym_biblatex_include] = STATE(111), - [sym_bibtex_include] = STATE(111), - [sym_graphics_include] = STATE(111), - [sym_svg_include] = STATE(111), - [sym_inkscape_include] = STATE(111), - [sym_verbatim_include] = STATE(111), - [sym_import] = STATE(111), - [sym_label_definition] = STATE(111), - [sym_label_reference] = STATE(111), - [sym_equation_label_reference] = STATE(111), - [sym_label_reference_range] = STATE(111), - [sym_label_number] = STATE(111), - [sym_command_definition] = STATE(111), - [sym_math_operator] = STATE(111), - [sym_glossary_entry_definition] = STATE(111), - [sym_glossary_entry_reference] = STATE(111), - [sym_acronym_definition] = STATE(111), - [sym_acronym_reference] = STATE(111), - [sym_theorem_definition] = STATE(111), - [sym_color_reference] = STATE(111), - [sym_color_definition] = STATE(111), - [sym_color_set_definition] = STATE(111), - [sym_pgf_library_import] = STATE(111), - [sym_tikz_library_import] = STATE(111), - [sym_generic_command] = STATE(111), - [aux_sym_part_repeat1] = STATE(111), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(562), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(564), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(562), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(566), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [56] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(109), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(109), - [aux_sym_chapter_token1] = ACTIONS(109), - [aux_sym_section_token1] = ACTIONS(109), - [aux_sym_subsection_token1] = ACTIONS(109), - [aux_sym_subsubsection_token1] = ACTIONS(109), - [aux_sym_paragraph_token1] = ACTIONS(109), - [aux_sym_subparagraph_token1] = ACTIONS(109), - [anon_sym_BSLASHitem] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(107), - [sym_word] = ACTIONS(107), - [sym_param] = ACTIONS(107), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(107), - [anon_sym_BSLASH_RBRACK] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(109), - [anon_sym_BSLASHcaption] = ACTIONS(109), - [aux_sym_citation_token1] = ACTIONS(109), - [aux_sym_package_include_token1] = ACTIONS(109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(109), - [aux_sym_latex_include_token1] = ACTIONS(109), - [aux_sym_latex_input_token1] = ACTIONS(109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(109), - [anon_sym_BSLASHbibliography] = ACTIONS(109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(109), - [anon_sym_BSLASHincludesvg] = ACTIONS(109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(109), - [aux_sym_verbatim_include_token1] = ACTIONS(109), - [aux_sym_import_token1] = ACTIONS(109), - [anon_sym_BSLASHlabel] = ACTIONS(109), - [aux_sym_label_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHeqref] = ACTIONS(109), - [aux_sym_label_reference_range_token1] = ACTIONS(109), - [anon_sym_BSLASHnewlabel] = ACTIONS(109), - [aux_sym_command_definition_token1] = ACTIONS(109), - [aux_sym_math_operator_token1] = ACTIONS(109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(109), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHnewacronym] = ACTIONS(109), - [aux_sym_acronym_reference_token1] = ACTIONS(109), - [aux_sym_theorem_definition_token1] = ACTIONS(109), - [aux_sym_color_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(109), - }, - [57] = { - [sym__simple_content] = STATE(157), - [sym__content] = STATE(157), - [sym_part] = STATE(157), - [sym_chapter] = STATE(157), - [sym_section] = STATE(157), - [sym_subsection] = STATE(157), - [sym_subsubsection] = STATE(157), - [sym_paragraph] = STATE(157), - [sym_subparagraph] = STATE(157), - [sym_enum_item] = STATE(157), - [sym_brace_group] = STATE(157), - [sym_mixed_group] = STATE(157), - [sym_text] = STATE(157), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_begin] = STATE(73), - [sym_end] = STATE(1840), - [sym_environment] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_latex_input] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_equation_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_command_definition] = STATE(157), - [sym_math_operator] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_pgf_library_import] = STATE(157), - [sym_tikz_library_import] = STATE(157), - [sym_generic_command] = STATE(157), - [aux_sym_document_repeat1] = STATE(157), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(568), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(488), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [58] = { - [sym__simple_content] = STATE(61), - [sym__content] = STATE(61), - [sym_part] = STATE(61), - [sym_chapter] = STATE(61), - [sym_section] = STATE(61), - [sym_subsection] = STATE(61), - [sym_subsubsection] = STATE(61), - [sym_paragraph] = STATE(61), - [sym_subparagraph] = STATE(61), - [sym_enum_item] = STATE(61), - [sym_brace_group] = STATE(61), - [sym_mixed_group] = STATE(61), - [sym_text] = STATE(61), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(61), - [sym_inline_formula] = STATE(61), - [sym_begin] = STATE(52), - [sym_environment] = STATE(61), - [sym_caption] = STATE(61), - [sym_citation] = STATE(61), - [sym_package_include] = STATE(61), - [sym_class_include] = STATE(61), - [sym_latex_include] = STATE(61), - [sym_latex_input] = STATE(61), - [sym_biblatex_include] = STATE(61), - [sym_bibtex_include] = STATE(61), - [sym_graphics_include] = STATE(61), - [sym_svg_include] = STATE(61), - [sym_inkscape_include] = STATE(61), - [sym_verbatim_include] = STATE(61), - [sym_import] = STATE(61), - [sym_label_definition] = STATE(61), - [sym_label_reference] = STATE(61), - [sym_equation_label_reference] = STATE(61), - [sym_label_reference_range] = STATE(61), - [sym_label_number] = STATE(61), - [sym_command_definition] = STATE(61), - [sym_math_operator] = STATE(61), - [sym_glossary_entry_definition] = STATE(61), - [sym_glossary_entry_reference] = STATE(61), - [sym_acronym_definition] = STATE(61), - [sym_acronym_reference] = STATE(61), - [sym_theorem_definition] = STATE(61), - [sym_color_reference] = STATE(61), - [sym_color_definition] = STATE(61), - [sym_color_set_definition] = STATE(61), - [sym_pgf_library_import] = STATE(61), - [sym_tikz_library_import] = STATE(61), - [sym_generic_command] = STATE(61), - [aux_sym_document_repeat1] = STATE(61), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(570), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(572), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [59] = { - [sym__simple_content] = STATE(63), - [sym__content] = STATE(63), - [sym_part] = STATE(63), - [sym_chapter] = STATE(63), - [sym_section] = STATE(63), - [sym_subsection] = STATE(63), - [sym_subsubsection] = STATE(63), - [sym_paragraph] = STATE(63), - [sym_subparagraph] = STATE(63), - [sym_enum_item] = STATE(63), - [sym_brace_group] = STATE(63), - [sym_mixed_group] = STATE(63), - [sym_text] = STATE(63), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(63), - [sym_inline_formula] = STATE(63), - [sym_begin] = STATE(73), - [sym_end] = STATE(950), - [sym_environment] = STATE(63), - [sym_caption] = STATE(63), - [sym_citation] = STATE(63), - [sym_package_include] = STATE(63), - [sym_class_include] = STATE(63), - [sym_latex_include] = STATE(63), - [sym_latex_input] = STATE(63), - [sym_biblatex_include] = STATE(63), - [sym_bibtex_include] = STATE(63), - [sym_graphics_include] = STATE(63), - [sym_svg_include] = STATE(63), - [sym_inkscape_include] = STATE(63), - [sym_verbatim_include] = STATE(63), - [sym_import] = STATE(63), - [sym_label_definition] = STATE(63), - [sym_label_reference] = STATE(63), - [sym_equation_label_reference] = STATE(63), - [sym_label_reference_range] = STATE(63), - [sym_label_number] = STATE(63), - [sym_command_definition] = STATE(63), - [sym_math_operator] = STATE(63), - [sym_glossary_entry_definition] = STATE(63), - [sym_glossary_entry_reference] = STATE(63), - [sym_acronym_definition] = STATE(63), - [sym_acronym_reference] = STATE(63), - [sym_theorem_definition] = STATE(63), - [sym_color_reference] = STATE(63), - [sym_color_definition] = STATE(63), - [sym_color_set_definition] = STATE(63), - [sym_pgf_library_import] = STATE(63), - [sym_tikz_library_import] = STATE(63), - [sym_generic_command] = STATE(63), - [aux_sym_document_repeat1] = STATE(63), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(574), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(576), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [60] = { - [sym__simple_content] = STATE(61), - [sym__content] = STATE(61), - [sym_part] = STATE(61), - [sym_chapter] = STATE(61), - [sym_section] = STATE(61), - [sym_subsection] = STATE(61), - [sym_subsubsection] = STATE(61), - [sym_paragraph] = STATE(61), - [sym_subparagraph] = STATE(61), - [sym_enum_item] = STATE(61), - [sym_brace_group] = STATE(61), - [sym_mixed_group] = STATE(61), - [sym_text] = STATE(61), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(61), - [sym_inline_formula] = STATE(61), - [sym_begin] = STATE(52), - [sym_environment] = STATE(61), - [sym_caption] = STATE(61), - [sym_citation] = STATE(61), - [sym_package_include] = STATE(61), - [sym_class_include] = STATE(61), - [sym_latex_include] = STATE(61), - [sym_latex_input] = STATE(61), - [sym_biblatex_include] = STATE(61), - [sym_bibtex_include] = STATE(61), - [sym_graphics_include] = STATE(61), - [sym_svg_include] = STATE(61), - [sym_inkscape_include] = STATE(61), - [sym_verbatim_include] = STATE(61), - [sym_import] = STATE(61), - [sym_label_definition] = STATE(61), - [sym_label_reference] = STATE(61), - [sym_equation_label_reference] = STATE(61), - [sym_label_reference_range] = STATE(61), - [sym_label_number] = STATE(61), - [sym_command_definition] = STATE(61), - [sym_math_operator] = STATE(61), - [sym_glossary_entry_definition] = STATE(61), - [sym_glossary_entry_reference] = STATE(61), - [sym_acronym_definition] = STATE(61), - [sym_acronym_reference] = STATE(61), - [sym_theorem_definition] = STATE(61), - [sym_color_reference] = STATE(61), - [sym_color_definition] = STATE(61), - [sym_color_set_definition] = STATE(61), - [sym_pgf_library_import] = STATE(61), - [sym_tikz_library_import] = STATE(61), - [sym_generic_command] = STATE(61), - [aux_sym_document_repeat1] = STATE(61), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(570), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(578), - [sym_param] = ACTIONS(572), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [61] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [62] = { - [sym__simple_content] = STATE(65), - [sym__content] = STATE(65), - [sym_part] = STATE(65), - [sym_chapter] = STATE(65), - [sym_section] = STATE(65), - [sym_subsection] = STATE(65), - [sym_subsubsection] = STATE(65), - [sym_paragraph] = STATE(65), - [sym_subparagraph] = STATE(65), - [sym_enum_item] = STATE(65), - [sym_brace_group] = STATE(65), - [sym_mixed_group] = STATE(65), - [sym_text] = STATE(65), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(65), - [sym_inline_formula] = STATE(65), - [sym_begin] = STATE(52), - [sym_environment] = STATE(65), - [sym_caption] = STATE(65), - [sym_citation] = STATE(65), - [sym_package_include] = STATE(65), - [sym_class_include] = STATE(65), - [sym_latex_include] = STATE(65), - [sym_latex_input] = STATE(65), - [sym_biblatex_include] = STATE(65), - [sym_bibtex_include] = STATE(65), - [sym_graphics_include] = STATE(65), - [sym_svg_include] = STATE(65), - [sym_inkscape_include] = STATE(65), - [sym_verbatim_include] = STATE(65), - [sym_import] = STATE(65), - [sym_label_definition] = STATE(65), - [sym_label_reference] = STATE(65), - [sym_equation_label_reference] = STATE(65), - [sym_label_reference_range] = STATE(65), - [sym_label_number] = STATE(65), - [sym_command_definition] = STATE(65), - [sym_math_operator] = STATE(65), - [sym_glossary_entry_definition] = STATE(65), - [sym_glossary_entry_reference] = STATE(65), - [sym_acronym_definition] = STATE(65), - [sym_acronym_reference] = STATE(65), - [sym_theorem_definition] = STATE(65), - [sym_color_reference] = STATE(65), - [sym_color_definition] = STATE(65), - [sym_color_set_definition] = STATE(65), - [sym_pgf_library_import] = STATE(65), - [sym_tikz_library_import] = STATE(65), - [sym_generic_command] = STATE(65), - [aux_sym_document_repeat1] = STATE(65), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(558), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(584), - [sym_param] = ACTIONS(560), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [63] = { - [sym__simple_content] = STATE(157), - [sym__content] = STATE(157), - [sym_part] = STATE(157), - [sym_chapter] = STATE(157), - [sym_section] = STATE(157), - [sym_subsection] = STATE(157), - [sym_subsubsection] = STATE(157), - [sym_paragraph] = STATE(157), - [sym_subparagraph] = STATE(157), - [sym_enum_item] = STATE(157), - [sym_brace_group] = STATE(157), - [sym_mixed_group] = STATE(157), - [sym_text] = STATE(157), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_begin] = STATE(73), - [sym_end] = STATE(973), - [sym_environment] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_latex_input] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_equation_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_command_definition] = STATE(157), - [sym_math_operator] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_pgf_library_import] = STATE(157), - [sym_tikz_library_import] = STATE(157), - [sym_generic_command] = STATE(157), - [aux_sym_document_repeat1] = STATE(157), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(568), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(576), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [64] = { - [sym__simple_content] = STATE(68), - [sym__content] = STATE(68), - [sym_part] = STATE(68), - [sym_chapter] = STATE(68), - [sym_section] = STATE(68), - [sym_subsection] = STATE(68), - [sym_subsubsection] = STATE(68), - [sym_paragraph] = STATE(68), - [sym_subparagraph] = STATE(68), - [sym_enum_item] = STATE(68), - [sym_brace_group] = STATE(68), - [sym_mixed_group] = STATE(68), - [sym_text] = STATE(68), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(68), - [sym_inline_formula] = STATE(68), - [sym_begin] = STATE(52), - [sym_environment] = STATE(68), - [sym_caption] = STATE(68), - [sym_citation] = STATE(68), - [sym_package_include] = STATE(68), - [sym_class_include] = STATE(68), - [sym_latex_include] = STATE(68), - [sym_latex_input] = STATE(68), - [sym_biblatex_include] = STATE(68), - [sym_bibtex_include] = STATE(68), - [sym_graphics_include] = STATE(68), - [sym_svg_include] = STATE(68), - [sym_inkscape_include] = STATE(68), - [sym_verbatim_include] = STATE(68), - [sym_import] = STATE(68), - [sym_label_definition] = STATE(68), - [sym_label_reference] = STATE(68), - [sym_equation_label_reference] = STATE(68), - [sym_label_reference_range] = STATE(68), - [sym_label_number] = STATE(68), - [sym_command_definition] = STATE(68), - [sym_math_operator] = STATE(68), - [sym_glossary_entry_definition] = STATE(68), - [sym_glossary_entry_reference] = STATE(68), - [sym_acronym_definition] = STATE(68), - [sym_acronym_reference] = STATE(68), - [sym_theorem_definition] = STATE(68), - [sym_color_reference] = STATE(68), - [sym_color_definition] = STATE(68), - [sym_color_set_definition] = STATE(68), - [sym_pgf_library_import] = STATE(68), - [sym_tikz_library_import] = STATE(68), - [sym_generic_command] = STATE(68), - [aux_sym_document_repeat1] = STATE(68), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(588), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [65] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(590), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(590), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [66] = { - [sym__simple_content] = STATE(69), - [sym__content] = STATE(69), - [sym_part] = STATE(69), - [sym_chapter] = STATE(69), - [sym_section] = STATE(69), - [sym_subsection] = STATE(69), - [sym_subsubsection] = STATE(69), - [sym_paragraph] = STATE(69), - [sym_subparagraph] = STATE(69), - [sym_enum_item] = STATE(69), - [sym_brace_group] = STATE(69), - [sym_mixed_group] = STATE(69), - [sym_text] = STATE(69), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(69), - [sym_inline_formula] = STATE(69), - [sym_begin] = STATE(73), - [sym_end] = STATE(891), - [sym_environment] = STATE(69), - [sym_caption] = STATE(69), - [sym_citation] = STATE(69), - [sym_package_include] = STATE(69), - [sym_class_include] = STATE(69), - [sym_latex_include] = STATE(69), - [sym_latex_input] = STATE(69), - [sym_biblatex_include] = STATE(69), - [sym_bibtex_include] = STATE(69), - [sym_graphics_include] = STATE(69), - [sym_svg_include] = STATE(69), - [sym_inkscape_include] = STATE(69), - [sym_verbatim_include] = STATE(69), - [sym_import] = STATE(69), - [sym_label_definition] = STATE(69), - [sym_label_reference] = STATE(69), - [sym_equation_label_reference] = STATE(69), - [sym_label_reference_range] = STATE(69), - [sym_label_number] = STATE(69), - [sym_command_definition] = STATE(69), - [sym_math_operator] = STATE(69), - [sym_glossary_entry_definition] = STATE(69), - [sym_glossary_entry_reference] = STATE(69), - [sym_acronym_definition] = STATE(69), - [sym_acronym_reference] = STATE(69), - [sym_theorem_definition] = STATE(69), - [sym_color_reference] = STATE(69), - [sym_color_definition] = STATE(69), - [sym_color_set_definition] = STATE(69), - [sym_pgf_library_import] = STATE(69), - [sym_tikz_library_import] = STATE(69), - [sym_generic_command] = STATE(69), - [aux_sym_document_repeat1] = STATE(69), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(592), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(594), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [67] = { - [sym__simple_content] = STATE(68), - [sym__content] = STATE(68), - [sym_part] = STATE(68), - [sym_chapter] = STATE(68), - [sym_section] = STATE(68), - [sym_subsection] = STATE(68), - [sym_subsubsection] = STATE(68), - [sym_paragraph] = STATE(68), - [sym_subparagraph] = STATE(68), - [sym_enum_item] = STATE(68), - [sym_brace_group] = STATE(68), - [sym_mixed_group] = STATE(68), - [sym_text] = STATE(68), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(68), - [sym_inline_formula] = STATE(68), - [sym_begin] = STATE(52), - [sym_environment] = STATE(68), - [sym_caption] = STATE(68), - [sym_citation] = STATE(68), - [sym_package_include] = STATE(68), - [sym_class_include] = STATE(68), - [sym_latex_include] = STATE(68), - [sym_latex_input] = STATE(68), - [sym_biblatex_include] = STATE(68), - [sym_bibtex_include] = STATE(68), - [sym_graphics_include] = STATE(68), - [sym_svg_include] = STATE(68), - [sym_inkscape_include] = STATE(68), - [sym_verbatim_include] = STATE(68), - [sym_import] = STATE(68), - [sym_label_definition] = STATE(68), - [sym_label_reference] = STATE(68), - [sym_equation_label_reference] = STATE(68), - [sym_label_reference_range] = STATE(68), - [sym_label_number] = STATE(68), - [sym_command_definition] = STATE(68), - [sym_math_operator] = STATE(68), - [sym_glossary_entry_definition] = STATE(68), - [sym_glossary_entry_reference] = STATE(68), - [sym_acronym_definition] = STATE(68), - [sym_acronym_reference] = STATE(68), - [sym_theorem_definition] = STATE(68), - [sym_color_reference] = STATE(68), - [sym_color_definition] = STATE(68), - [sym_color_set_definition] = STATE(68), - [sym_pgf_library_import] = STATE(68), - [sym_tikz_library_import] = STATE(68), - [sym_generic_command] = STATE(68), - [aux_sym_document_repeat1] = STATE(68), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(586), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(586), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(596), - [sym_param] = ACTIONS(588), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [68] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(598), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(598), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [69] = { - [sym__simple_content] = STATE(157), - [sym__content] = STATE(157), - [sym_part] = STATE(157), - [sym_chapter] = STATE(157), - [sym_section] = STATE(157), - [sym_subsection] = STATE(157), - [sym_subsubsection] = STATE(157), - [sym_paragraph] = STATE(157), - [sym_subparagraph] = STATE(157), - [sym_enum_item] = STATE(157), - [sym_brace_group] = STATE(157), - [sym_mixed_group] = STATE(157), - [sym_text] = STATE(157), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_begin] = STATE(73), - [sym_end] = STATE(779), - [sym_environment] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_latex_input] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_equation_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_command_definition] = STATE(157), - [sym_math_operator] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_pgf_library_import] = STATE(157), - [sym_tikz_library_import] = STATE(157), - [sym_generic_command] = STATE(157), - [aux_sym_document_repeat1] = STATE(157), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(568), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(594), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [70] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [71] = { - [sym__simple_content] = STATE(75), - [sym__content] = STATE(75), - [sym_part] = STATE(75), - [sym_chapter] = STATE(75), - [sym_section] = STATE(75), - [sym_subsection] = STATE(75), - [sym_subsubsection] = STATE(75), - [sym_paragraph] = STATE(75), - [sym_subparagraph] = STATE(75), - [sym_enum_item] = STATE(75), - [sym_brace_group] = STATE(75), - [sym_mixed_group] = STATE(75), - [sym_text] = STATE(75), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(75), - [sym_inline_formula] = STATE(75), - [sym_begin] = STATE(52), - [sym_environment] = STATE(75), - [sym_caption] = STATE(75), - [sym_citation] = STATE(75), - [sym_package_include] = STATE(75), - [sym_class_include] = STATE(75), - [sym_latex_include] = STATE(75), - [sym_latex_input] = STATE(75), - [sym_biblatex_include] = STATE(75), - [sym_bibtex_include] = STATE(75), - [sym_graphics_include] = STATE(75), - [sym_svg_include] = STATE(75), - [sym_inkscape_include] = STATE(75), - [sym_verbatim_include] = STATE(75), - [sym_import] = STATE(75), - [sym_label_definition] = STATE(75), - [sym_label_reference] = STATE(75), - [sym_equation_label_reference] = STATE(75), - [sym_label_reference_range] = STATE(75), - [sym_label_number] = STATE(75), - [sym_command_definition] = STATE(75), - [sym_math_operator] = STATE(75), - [sym_glossary_entry_definition] = STATE(75), - [sym_glossary_entry_reference] = STATE(75), - [sym_acronym_definition] = STATE(75), - [sym_acronym_reference] = STATE(75), - [sym_theorem_definition] = STATE(75), - [sym_color_reference] = STATE(75), - [sym_color_definition] = STATE(75), - [sym_color_set_definition] = STATE(75), - [sym_pgf_library_import] = STATE(75), - [sym_tikz_library_import] = STATE(75), - [sym_generic_command] = STATE(75), - [aux_sym_document_repeat1] = STATE(75), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(602), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(604), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [72] = { - [sym__simple_content] = STATE(157), - [sym__content] = STATE(157), - [sym_part] = STATE(157), - [sym_chapter] = STATE(157), - [sym_section] = STATE(157), - [sym_subsection] = STATE(157), - [sym_subsubsection] = STATE(157), - [sym_paragraph] = STATE(157), - [sym_subparagraph] = STATE(157), - [sym_enum_item] = STATE(157), - [sym_brace_group] = STATE(157), - [sym_mixed_group] = STATE(157), - [sym_text] = STATE(157), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_begin] = STATE(73), - [sym_end] = STATE(1727), - [sym_environment] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_latex_input] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_equation_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_command_definition] = STATE(157), - [sym_math_operator] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_pgf_library_import] = STATE(157), - [sym_tikz_library_import] = STATE(157), - [sym_generic_command] = STATE(157), - [aux_sym_document_repeat1] = STATE(157), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(568), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(606), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [73] = { - [sym__simple_content] = STATE(76), - [sym__content] = STATE(76), - [sym_part] = STATE(76), - [sym_chapter] = STATE(76), - [sym_section] = STATE(76), - [sym_subsection] = STATE(76), - [sym_subsubsection] = STATE(76), - [sym_paragraph] = STATE(76), - [sym_subparagraph] = STATE(76), - [sym_enum_item] = STATE(76), - [sym_brace_group] = STATE(76), - [sym_mixed_group] = STATE(76), - [sym_text] = STATE(76), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(76), - [sym_inline_formula] = STATE(76), - [sym_begin] = STATE(73), - [sym_end] = STATE(748), - [sym_environment] = STATE(76), - [sym_caption] = STATE(76), - [sym_citation] = STATE(76), - [sym_package_include] = STATE(76), - [sym_class_include] = STATE(76), - [sym_latex_include] = STATE(76), - [sym_latex_input] = STATE(76), - [sym_biblatex_include] = STATE(76), - [sym_bibtex_include] = STATE(76), - [sym_graphics_include] = STATE(76), - [sym_svg_include] = STATE(76), - [sym_inkscape_include] = STATE(76), - [sym_verbatim_include] = STATE(76), - [sym_import] = STATE(76), - [sym_label_definition] = STATE(76), - [sym_label_reference] = STATE(76), - [sym_equation_label_reference] = STATE(76), - [sym_label_reference_range] = STATE(76), - [sym_label_number] = STATE(76), - [sym_command_definition] = STATE(76), - [sym_math_operator] = STATE(76), - [sym_glossary_entry_definition] = STATE(76), - [sym_glossary_entry_reference] = STATE(76), - [sym_acronym_definition] = STATE(76), - [sym_acronym_reference] = STATE(76), - [sym_theorem_definition] = STATE(76), - [sym_color_reference] = STATE(76), - [sym_color_definition] = STATE(76), - [sym_color_set_definition] = STATE(76), - [sym_pgf_library_import] = STATE(76), - [sym_tikz_library_import] = STATE(76), - [sym_generic_command] = STATE(76), - [aux_sym_document_repeat1] = STATE(76), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(608), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(610), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [74] = { - [sym__simple_content] = STATE(75), - [sym__content] = STATE(75), - [sym_part] = STATE(75), - [sym_chapter] = STATE(75), - [sym_section] = STATE(75), - [sym_subsection] = STATE(75), - [sym_subsubsection] = STATE(75), - [sym_paragraph] = STATE(75), - [sym_subparagraph] = STATE(75), - [sym_enum_item] = STATE(75), - [sym_brace_group] = STATE(75), - [sym_mixed_group] = STATE(75), - [sym_text] = STATE(75), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(75), - [sym_inline_formula] = STATE(75), - [sym_begin] = STATE(52), - [sym_environment] = STATE(75), - [sym_caption] = STATE(75), - [sym_citation] = STATE(75), - [sym_package_include] = STATE(75), - [sym_class_include] = STATE(75), - [sym_latex_include] = STATE(75), - [sym_latex_input] = STATE(75), - [sym_biblatex_include] = STATE(75), - [sym_bibtex_include] = STATE(75), - [sym_graphics_include] = STATE(75), - [sym_svg_include] = STATE(75), - [sym_inkscape_include] = STATE(75), - [sym_verbatim_include] = STATE(75), - [sym_import] = STATE(75), - [sym_label_definition] = STATE(75), - [sym_label_reference] = STATE(75), - [sym_equation_label_reference] = STATE(75), - [sym_label_reference_range] = STATE(75), - [sym_label_number] = STATE(75), - [sym_command_definition] = STATE(75), - [sym_math_operator] = STATE(75), - [sym_glossary_entry_definition] = STATE(75), - [sym_glossary_entry_reference] = STATE(75), - [sym_acronym_definition] = STATE(75), - [sym_acronym_reference] = STATE(75), - [sym_theorem_definition] = STATE(75), - [sym_color_reference] = STATE(75), - [sym_color_definition] = STATE(75), - [sym_color_set_definition] = STATE(75), - [sym_pgf_library_import] = STATE(75), - [sym_tikz_library_import] = STATE(75), - [sym_generic_command] = STATE(75), - [aux_sym_document_repeat1] = STATE(75), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(602), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(602), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(612), - [sym_param] = ACTIONS(604), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [75] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(614), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(614), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [76] = { - [sym__simple_content] = STATE(157), - [sym__content] = STATE(157), - [sym_part] = STATE(157), - [sym_chapter] = STATE(157), - [sym_section] = STATE(157), - [sym_subsection] = STATE(157), - [sym_subsubsection] = STATE(157), - [sym_paragraph] = STATE(157), - [sym_subparagraph] = STATE(157), - [sym_enum_item] = STATE(157), - [sym_brace_group] = STATE(157), - [sym_mixed_group] = STATE(157), - [sym_text] = STATE(157), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_begin] = STATE(73), - [sym_end] = STATE(784), - [sym_environment] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_latex_input] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_equation_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_command_definition] = STATE(157), - [sym_math_operator] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_pgf_library_import] = STATE(157), - [sym_tikz_library_import] = STATE(157), - [sym_generic_command] = STATE(157), - [aux_sym_document_repeat1] = STATE(157), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(568), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(610), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [77] = { - [sym__simple_content] = STATE(80), - [sym__content] = STATE(80), - [sym_part] = STATE(80), - [sym_chapter] = STATE(80), - [sym_section] = STATE(80), - [sym_subsection] = STATE(80), - [sym_subsubsection] = STATE(80), - [sym_paragraph] = STATE(80), - [sym_subparagraph] = STATE(80), - [sym_enum_item] = STATE(80), - [sym_brace_group] = STATE(80), - [sym_mixed_group] = STATE(80), - [sym_text] = STATE(80), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(80), - [sym_inline_formula] = STATE(80), - [sym_begin] = STATE(52), - [sym_environment] = STATE(80), - [sym_caption] = STATE(80), - [sym_citation] = STATE(80), - [sym_package_include] = STATE(80), - [sym_class_include] = STATE(80), - [sym_latex_include] = STATE(80), - [sym_latex_input] = STATE(80), - [sym_biblatex_include] = STATE(80), - [sym_bibtex_include] = STATE(80), - [sym_graphics_include] = STATE(80), - [sym_svg_include] = STATE(80), - [sym_inkscape_include] = STATE(80), - [sym_verbatim_include] = STATE(80), - [sym_import] = STATE(80), - [sym_label_definition] = STATE(80), - [sym_label_reference] = STATE(80), - [sym_equation_label_reference] = STATE(80), - [sym_label_reference_range] = STATE(80), - [sym_label_number] = STATE(80), - [sym_command_definition] = STATE(80), - [sym_math_operator] = STATE(80), - [sym_glossary_entry_definition] = STATE(80), - [sym_glossary_entry_reference] = STATE(80), - [sym_acronym_definition] = STATE(80), - [sym_acronym_reference] = STATE(80), - [sym_theorem_definition] = STATE(80), - [sym_color_reference] = STATE(80), - [sym_color_definition] = STATE(80), - [sym_color_set_definition] = STATE(80), - [sym_pgf_library_import] = STATE(80), - [sym_tikz_library_import] = STATE(80), - [sym_generic_command] = STATE(80), - [aux_sym_document_repeat1] = STATE(80), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(618), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [78] = { - [sym__simple_content] = STATE(84), - [sym__content] = STATE(84), - [sym_part] = STATE(84), - [sym_chapter] = STATE(84), - [sym_section] = STATE(84), - [sym_subsection] = STATE(84), - [sym_subsubsection] = STATE(84), - [sym_paragraph] = STATE(84), - [sym_subparagraph] = STATE(84), - [sym_enum_item] = STATE(84), - [sym_brace_group] = STATE(84), - [sym_mixed_group] = STATE(84), - [sym_text] = STATE(84), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(84), - [sym_inline_formula] = STATE(84), - [sym_begin] = STATE(73), - [sym_end] = STATE(1909), - [sym_environment] = STATE(84), - [sym_caption] = STATE(84), - [sym_citation] = STATE(84), - [sym_package_include] = STATE(84), - [sym_class_include] = STATE(84), - [sym_latex_include] = STATE(84), - [sym_latex_input] = STATE(84), - [sym_biblatex_include] = STATE(84), - [sym_bibtex_include] = STATE(84), - [sym_graphics_include] = STATE(84), - [sym_svg_include] = STATE(84), - [sym_inkscape_include] = STATE(84), - [sym_verbatim_include] = STATE(84), - [sym_import] = STATE(84), - [sym_label_definition] = STATE(84), - [sym_label_reference] = STATE(84), - [sym_equation_label_reference] = STATE(84), - [sym_label_reference_range] = STATE(84), - [sym_label_number] = STATE(84), - [sym_command_definition] = STATE(84), - [sym_math_operator] = STATE(84), - [sym_glossary_entry_definition] = STATE(84), - [sym_glossary_entry_reference] = STATE(84), - [sym_acronym_definition] = STATE(84), - [sym_acronym_reference] = STATE(84), - [sym_theorem_definition] = STATE(84), - [sym_color_reference] = STATE(84), - [sym_color_definition] = STATE(84), - [sym_color_set_definition] = STATE(84), - [sym_pgf_library_import] = STATE(84), - [sym_tikz_library_import] = STATE(84), - [sym_generic_command] = STATE(84), - [aux_sym_document_repeat1] = STATE(84), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(620), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(622), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [79] = { - [sym__simple_content] = STATE(80), - [sym__content] = STATE(80), - [sym_part] = STATE(80), - [sym_chapter] = STATE(80), - [sym_section] = STATE(80), - [sym_subsection] = STATE(80), - [sym_subsubsection] = STATE(80), - [sym_paragraph] = STATE(80), - [sym_subparagraph] = STATE(80), - [sym_enum_item] = STATE(80), - [sym_brace_group] = STATE(80), - [sym_mixed_group] = STATE(80), - [sym_text] = STATE(80), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(80), - [sym_inline_formula] = STATE(80), - [sym_begin] = STATE(52), - [sym_environment] = STATE(80), - [sym_caption] = STATE(80), - [sym_citation] = STATE(80), - [sym_package_include] = STATE(80), - [sym_class_include] = STATE(80), - [sym_latex_include] = STATE(80), - [sym_latex_input] = STATE(80), - [sym_biblatex_include] = STATE(80), - [sym_bibtex_include] = STATE(80), - [sym_graphics_include] = STATE(80), - [sym_svg_include] = STATE(80), - [sym_inkscape_include] = STATE(80), - [sym_verbatim_include] = STATE(80), - [sym_import] = STATE(80), - [sym_label_definition] = STATE(80), - [sym_label_reference] = STATE(80), - [sym_equation_label_reference] = STATE(80), - [sym_label_reference_range] = STATE(80), - [sym_label_number] = STATE(80), - [sym_command_definition] = STATE(80), - [sym_math_operator] = STATE(80), - [sym_glossary_entry_definition] = STATE(80), - [sym_glossary_entry_reference] = STATE(80), - [sym_acronym_definition] = STATE(80), - [sym_acronym_reference] = STATE(80), - [sym_theorem_definition] = STATE(80), - [sym_color_reference] = STATE(80), - [sym_color_definition] = STATE(80), - [sym_color_set_definition] = STATE(80), - [sym_pgf_library_import] = STATE(80), - [sym_tikz_library_import] = STATE(80), - [sym_generic_command] = STATE(80), - [aux_sym_document_repeat1] = STATE(80), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(616), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(624), - [sym_param] = ACTIONS(618), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [80] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(626), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [81] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(628), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(628), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [82] = { - [sym__simple_content] = STATE(81), - [sym__content] = STATE(81), - [sym_part] = STATE(81), - [sym_chapter] = STATE(81), - [sym_section] = STATE(81), - [sym_subsection] = STATE(81), - [sym_subsubsection] = STATE(81), - [sym_paragraph] = STATE(81), - [sym_subparagraph] = STATE(81), - [sym_enum_item] = STATE(81), - [sym_brace_group] = STATE(81), - [sym_mixed_group] = STATE(81), - [sym_text] = STATE(81), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(81), - [sym_inline_formula] = STATE(81), - [sym_begin] = STATE(52), - [sym_environment] = STATE(81), - [sym_caption] = STATE(81), - [sym_citation] = STATE(81), - [sym_package_include] = STATE(81), - [sym_class_include] = STATE(81), - [sym_latex_include] = STATE(81), - [sym_latex_input] = STATE(81), - [sym_biblatex_include] = STATE(81), - [sym_bibtex_include] = STATE(81), - [sym_graphics_include] = STATE(81), - [sym_svg_include] = STATE(81), - [sym_inkscape_include] = STATE(81), - [sym_verbatim_include] = STATE(81), - [sym_import] = STATE(81), - [sym_label_definition] = STATE(81), - [sym_label_reference] = STATE(81), - [sym_equation_label_reference] = STATE(81), - [sym_label_reference_range] = STATE(81), - [sym_label_number] = STATE(81), - [sym_command_definition] = STATE(81), - [sym_math_operator] = STATE(81), - [sym_glossary_entry_definition] = STATE(81), - [sym_glossary_entry_reference] = STATE(81), - [sym_acronym_definition] = STATE(81), - [sym_acronym_reference] = STATE(81), - [sym_theorem_definition] = STATE(81), - [sym_color_reference] = STATE(81), - [sym_color_definition] = STATE(81), - [sym_color_set_definition] = STATE(81), - [sym_pgf_library_import] = STATE(81), - [sym_tikz_library_import] = STATE(81), - [sym_generic_command] = STATE(81), - [aux_sym_document_repeat1] = STATE(81), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(630), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(632), - [sym_param] = ACTIONS(634), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [83] = { - [sym__simple_content] = STATE(72), - [sym__content] = STATE(72), - [sym_part] = STATE(72), - [sym_chapter] = STATE(72), - [sym_section] = STATE(72), - [sym_subsection] = STATE(72), - [sym_subsubsection] = STATE(72), - [sym_paragraph] = STATE(72), - [sym_subparagraph] = STATE(72), - [sym_enum_item] = STATE(72), - [sym_brace_group] = STATE(72), - [sym_mixed_group] = STATE(72), - [sym_text] = STATE(72), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(72), - [sym_inline_formula] = STATE(72), - [sym_begin] = STATE(73), - [sym_end] = STATE(1748), - [sym_environment] = STATE(72), - [sym_caption] = STATE(72), - [sym_citation] = STATE(72), - [sym_package_include] = STATE(72), - [sym_class_include] = STATE(72), - [sym_latex_include] = STATE(72), - [sym_latex_input] = STATE(72), - [sym_biblatex_include] = STATE(72), - [sym_bibtex_include] = STATE(72), - [sym_graphics_include] = STATE(72), - [sym_svg_include] = STATE(72), - [sym_inkscape_include] = STATE(72), - [sym_verbatim_include] = STATE(72), - [sym_import] = STATE(72), - [sym_label_definition] = STATE(72), - [sym_label_reference] = STATE(72), - [sym_equation_label_reference] = STATE(72), - [sym_label_reference_range] = STATE(72), - [sym_label_number] = STATE(72), - [sym_command_definition] = STATE(72), - [sym_math_operator] = STATE(72), - [sym_glossary_entry_definition] = STATE(72), - [sym_glossary_entry_reference] = STATE(72), - [sym_acronym_definition] = STATE(72), - [sym_acronym_reference] = STATE(72), - [sym_theorem_definition] = STATE(72), - [sym_color_reference] = STATE(72), - [sym_color_definition] = STATE(72), - [sym_color_set_definition] = STATE(72), - [sym_pgf_library_import] = STATE(72), - [sym_tikz_library_import] = STATE(72), - [sym_generic_command] = STATE(72), - [aux_sym_document_repeat1] = STATE(72), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(636), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(606), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [84] = { - [sym__simple_content] = STATE(157), - [sym__content] = STATE(157), - [sym_part] = STATE(157), - [sym_chapter] = STATE(157), - [sym_section] = STATE(157), - [sym_subsection] = STATE(157), - [sym_subsubsection] = STATE(157), - [sym_paragraph] = STATE(157), - [sym_subparagraph] = STATE(157), - [sym_enum_item] = STATE(157), - [sym_brace_group] = STATE(157), - [sym_mixed_group] = STATE(157), - [sym_text] = STATE(157), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_begin] = STATE(73), - [sym_end] = STATE(1924), - [sym_environment] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_latex_input] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_equation_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_command_definition] = STATE(157), - [sym_math_operator] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_pgf_library_import] = STATE(157), - [sym_tikz_library_import] = STATE(157), - [sym_generic_command] = STATE(157), - [aux_sym_document_repeat1] = STATE(157), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(568), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(622), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [85] = { - [sym__simple_content] = STATE(89), - [sym__content] = STATE(89), - [sym_part] = STATE(89), - [sym_chapter] = STATE(89), - [sym_section] = STATE(89), - [sym_subsection] = STATE(89), - [sym_subsubsection] = STATE(89), - [sym_paragraph] = STATE(89), - [sym_subparagraph] = STATE(89), - [sym_enum_item] = STATE(89), - [sym_brace_group] = STATE(89), - [sym_mixed_group] = STATE(89), - [sym_text] = STATE(89), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(89), - [sym_inline_formula] = STATE(89), - [sym_begin] = STATE(52), - [sym_environment] = STATE(89), - [sym_caption] = STATE(89), - [sym_citation] = STATE(89), - [sym_package_include] = STATE(89), - [sym_class_include] = STATE(89), - [sym_latex_include] = STATE(89), - [sym_latex_input] = STATE(89), - [sym_biblatex_include] = STATE(89), - [sym_bibtex_include] = STATE(89), - [sym_graphics_include] = STATE(89), - [sym_svg_include] = STATE(89), - [sym_inkscape_include] = STATE(89), - [sym_verbatim_include] = STATE(89), - [sym_import] = STATE(89), - [sym_label_definition] = STATE(89), - [sym_label_reference] = STATE(89), - [sym_equation_label_reference] = STATE(89), - [sym_label_reference_range] = STATE(89), - [sym_label_number] = STATE(89), - [sym_command_definition] = STATE(89), - [sym_math_operator] = STATE(89), - [sym_glossary_entry_definition] = STATE(89), - [sym_glossary_entry_reference] = STATE(89), - [sym_acronym_definition] = STATE(89), - [sym_acronym_reference] = STATE(89), - [sym_theorem_definition] = STATE(89), - [sym_color_reference] = STATE(89), - [sym_color_definition] = STATE(89), - [sym_color_set_definition] = STATE(89), - [sym_pgf_library_import] = STATE(89), - [sym_tikz_library_import] = STATE(89), - [sym_generic_command] = STATE(89), - [aux_sym_document_repeat1] = STATE(89), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(640), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [86] = { - [sym__simple_content] = STATE(90), - [sym__content] = STATE(90), - [sym_part] = STATE(90), - [sym_chapter] = STATE(90), - [sym_section] = STATE(90), - [sym_subsection] = STATE(90), - [sym_subsubsection] = STATE(90), - [sym_paragraph] = STATE(90), - [sym_subparagraph] = STATE(90), - [sym_enum_item] = STATE(90), - [sym_brace_group] = STATE(90), - [sym_mixed_group] = STATE(90), - [sym_text] = STATE(90), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(90), - [sym_inline_formula] = STATE(90), - [sym_begin] = STATE(73), - [sym_end] = STATE(1058), - [sym_environment] = STATE(90), - [sym_caption] = STATE(90), - [sym_citation] = STATE(90), - [sym_package_include] = STATE(90), - [sym_class_include] = STATE(90), - [sym_latex_include] = STATE(90), - [sym_latex_input] = STATE(90), - [sym_biblatex_include] = STATE(90), - [sym_bibtex_include] = STATE(90), - [sym_graphics_include] = STATE(90), - [sym_svg_include] = STATE(90), - [sym_inkscape_include] = STATE(90), - [sym_verbatim_include] = STATE(90), - [sym_import] = STATE(90), - [sym_label_definition] = STATE(90), - [sym_label_reference] = STATE(90), - [sym_equation_label_reference] = STATE(90), - [sym_label_reference_range] = STATE(90), - [sym_label_number] = STATE(90), - [sym_command_definition] = STATE(90), - [sym_math_operator] = STATE(90), - [sym_glossary_entry_definition] = STATE(90), - [sym_glossary_entry_reference] = STATE(90), - [sym_acronym_definition] = STATE(90), - [sym_acronym_reference] = STATE(90), - [sym_theorem_definition] = STATE(90), - [sym_color_reference] = STATE(90), - [sym_color_definition] = STATE(90), - [sym_color_set_definition] = STATE(90), - [sym_pgf_library_import] = STATE(90), - [sym_tikz_library_import] = STATE(90), - [sym_generic_command] = STATE(90), - [aux_sym_document_repeat1] = STATE(90), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(642), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(644), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [87] = { - [sym__simple_content] = STATE(81), - [sym__content] = STATE(81), - [sym_part] = STATE(81), - [sym_chapter] = STATE(81), - [sym_section] = STATE(81), - [sym_subsection] = STATE(81), - [sym_subsubsection] = STATE(81), - [sym_paragraph] = STATE(81), - [sym_subparagraph] = STATE(81), - [sym_enum_item] = STATE(81), - [sym_brace_group] = STATE(81), - [sym_mixed_group] = STATE(81), - [sym_text] = STATE(81), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(81), - [sym_inline_formula] = STATE(81), - [sym_begin] = STATE(52), - [sym_environment] = STATE(81), - [sym_caption] = STATE(81), - [sym_citation] = STATE(81), - [sym_package_include] = STATE(81), - [sym_class_include] = STATE(81), - [sym_latex_include] = STATE(81), - [sym_latex_input] = STATE(81), - [sym_biblatex_include] = STATE(81), - [sym_bibtex_include] = STATE(81), - [sym_graphics_include] = STATE(81), - [sym_svg_include] = STATE(81), - [sym_inkscape_include] = STATE(81), - [sym_verbatim_include] = STATE(81), - [sym_import] = STATE(81), - [sym_label_definition] = STATE(81), - [sym_label_reference] = STATE(81), - [sym_equation_label_reference] = STATE(81), - [sym_label_reference_range] = STATE(81), - [sym_label_number] = STATE(81), - [sym_command_definition] = STATE(81), - [sym_math_operator] = STATE(81), - [sym_glossary_entry_definition] = STATE(81), - [sym_glossary_entry_reference] = STATE(81), - [sym_acronym_definition] = STATE(81), - [sym_acronym_reference] = STATE(81), - [sym_theorem_definition] = STATE(81), - [sym_color_reference] = STATE(81), - [sym_color_definition] = STATE(81), - [sym_color_set_definition] = STATE(81), - [sym_pgf_library_import] = STATE(81), - [sym_tikz_library_import] = STATE(81), - [sym_generic_command] = STATE(81), - [aux_sym_document_repeat1] = STATE(81), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(630), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(630), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(634), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [88] = { - [sym__simple_content] = STATE(89), - [sym__content] = STATE(89), - [sym_part] = STATE(89), - [sym_chapter] = STATE(89), - [sym_section] = STATE(89), - [sym_subsection] = STATE(89), - [sym_subsubsection] = STATE(89), - [sym_paragraph] = STATE(89), - [sym_subparagraph] = STATE(89), - [sym_enum_item] = STATE(89), - [sym_brace_group] = STATE(89), - [sym_mixed_group] = STATE(89), - [sym_text] = STATE(89), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(89), - [sym_inline_formula] = STATE(89), - [sym_begin] = STATE(52), - [sym_environment] = STATE(89), - [sym_caption] = STATE(89), - [sym_citation] = STATE(89), - [sym_package_include] = STATE(89), - [sym_class_include] = STATE(89), - [sym_latex_include] = STATE(89), - [sym_latex_input] = STATE(89), - [sym_biblatex_include] = STATE(89), - [sym_bibtex_include] = STATE(89), - [sym_graphics_include] = STATE(89), - [sym_svg_include] = STATE(89), - [sym_inkscape_include] = STATE(89), - [sym_verbatim_include] = STATE(89), - [sym_import] = STATE(89), - [sym_label_definition] = STATE(89), - [sym_label_reference] = STATE(89), - [sym_equation_label_reference] = STATE(89), - [sym_label_reference_range] = STATE(89), - [sym_label_number] = STATE(89), - [sym_command_definition] = STATE(89), - [sym_math_operator] = STATE(89), - [sym_glossary_entry_definition] = STATE(89), - [sym_glossary_entry_reference] = STATE(89), - [sym_acronym_definition] = STATE(89), - [sym_acronym_reference] = STATE(89), - [sym_theorem_definition] = STATE(89), - [sym_color_reference] = STATE(89), - [sym_color_definition] = STATE(89), - [sym_color_set_definition] = STATE(89), - [sym_pgf_library_import] = STATE(89), - [sym_tikz_library_import] = STATE(89), - [sym_generic_command] = STATE(89), - [aux_sym_document_repeat1] = STATE(89), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(638), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(638), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(646), - [sym_param] = ACTIONS(640), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [89] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(648), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [90] = { - [sym__simple_content] = STATE(157), - [sym__content] = STATE(157), - [sym_part] = STATE(157), - [sym_chapter] = STATE(157), - [sym_section] = STATE(157), - [sym_subsection] = STATE(157), - [sym_subsubsection] = STATE(157), - [sym_paragraph] = STATE(157), - [sym_subparagraph] = STATE(157), - [sym_enum_item] = STATE(157), - [sym_brace_group] = STATE(157), - [sym_mixed_group] = STATE(157), - [sym_text] = STATE(157), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_begin] = STATE(73), - [sym_end] = STATE(1092), - [sym_environment] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_latex_input] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_equation_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_command_definition] = STATE(157), - [sym_math_operator] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_pgf_library_import] = STATE(157), - [sym_tikz_library_import] = STATE(157), - [sym_generic_command] = STATE(157), - [aux_sym_document_repeat1] = STATE(157), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(568), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(644), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [91] = { - [sym__simple_content] = STATE(157), - [sym__content] = STATE(157), - [sym_part] = STATE(157), - [sym_chapter] = STATE(157), - [sym_section] = STATE(157), - [sym_subsection] = STATE(157), - [sym_subsubsection] = STATE(157), - [sym_paragraph] = STATE(157), - [sym_subparagraph] = STATE(157), - [sym_enum_item] = STATE(157), - [sym_brace_group] = STATE(157), - [sym_mixed_group] = STATE(157), - [sym_text] = STATE(157), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_begin] = STATE(73), - [sym_end] = STATE(1606), - [sym_environment] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_latex_input] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_equation_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_command_definition] = STATE(157), - [sym_math_operator] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_pgf_library_import] = STATE(157), - [sym_tikz_library_import] = STATE(157), - [sym_generic_command] = STATE(157), - [aux_sym_document_repeat1] = STATE(157), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(568), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(650), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [92] = { - [sym__simple_content] = STATE(92), - [sym_chapter] = STATE(92), - [sym_section] = STATE(92), - [sym_subsection] = STATE(92), - [sym_subsubsection] = STATE(92), - [sym_paragraph] = STATE(92), - [sym_subparagraph] = STATE(92), - [sym_enum_item] = STATE(92), - [sym_brace_group] = STATE(92), - [sym_mixed_group] = STATE(92), - [sym_text] = STATE(92), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(92), - [sym_inline_formula] = STATE(92), - [sym_begin] = STATE(52), - [sym_environment] = STATE(92), - [sym_caption] = STATE(92), - [sym_citation] = STATE(92), - [sym_package_include] = STATE(92), - [sym_class_include] = STATE(92), - [sym_latex_include] = STATE(92), - [sym_latex_input] = STATE(92), - [sym_biblatex_include] = STATE(92), - [sym_bibtex_include] = STATE(92), - [sym_graphics_include] = STATE(92), - [sym_svg_include] = STATE(92), - [sym_inkscape_include] = STATE(92), - [sym_verbatim_include] = STATE(92), - [sym_import] = STATE(92), - [sym_label_definition] = STATE(92), - [sym_label_reference] = STATE(92), - [sym_equation_label_reference] = STATE(92), - [sym_label_reference_range] = STATE(92), - [sym_label_number] = STATE(92), - [sym_command_definition] = STATE(92), - [sym_math_operator] = STATE(92), - [sym_glossary_entry_definition] = STATE(92), - [sym_glossary_entry_reference] = STATE(92), - [sym_acronym_definition] = STATE(92), - [sym_acronym_reference] = STATE(92), - [sym_theorem_definition] = STATE(92), - [sym_color_reference] = STATE(92), - [sym_color_definition] = STATE(92), - [sym_color_set_definition] = STATE(92), - [sym_pgf_library_import] = STATE(92), - [sym_tikz_library_import] = STATE(92), - [sym_generic_command] = STATE(92), - [aux_sym_part_repeat1] = STATE(92), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(652), - [sym_generic_command_name] = ACTIONS(654), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(657), - [aux_sym_chapter_token1] = ACTIONS(659), - [aux_sym_section_token1] = ACTIONS(662), - [aux_sym_subsection_token1] = ACTIONS(665), - [aux_sym_subsubsection_token1] = ACTIONS(668), - [aux_sym_paragraph_token1] = ACTIONS(671), - [aux_sym_subparagraph_token1] = ACTIONS(674), - [anon_sym_BSLASHitem] = ACTIONS(677), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(680), - [anon_sym_RPAREN] = ACTIONS(652), - [anon_sym_COMMA] = ACTIONS(686), - [anon_sym_EQ] = ACTIONS(686), - [sym_word] = ACTIONS(686), - [sym_param] = ACTIONS(689), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(692), - [anon_sym_BSLASH_LBRACK] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(695), - [anon_sym_BSLASH_LPAREN] = ACTIONS(698), - [anon_sym_BSLASHbegin] = ACTIONS(701), - [anon_sym_BSLASHcaption] = ACTIONS(704), - [aux_sym_citation_token1] = ACTIONS(707), - [aux_sym_package_include_token1] = ACTIONS(710), - [anon_sym_BSLASHdocumentclass] = ACTIONS(713), - [aux_sym_latex_include_token1] = ACTIONS(716), - [aux_sym_latex_input_token1] = ACTIONS(719), - [anon_sym_BSLASHaddbibresource] = ACTIONS(722), - [anon_sym_BSLASHbibliography] = ACTIONS(725), - [anon_sym_BSLASHincludegraphics] = ACTIONS(728), - [anon_sym_BSLASHincludesvg] = ACTIONS(731), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(734), - [aux_sym_verbatim_include_token1] = ACTIONS(737), - [aux_sym_import_token1] = ACTIONS(740), - [anon_sym_BSLASHlabel] = ACTIONS(743), - [aux_sym_label_reference_token1] = ACTIONS(746), - [anon_sym_BSLASHeqref] = ACTIONS(749), - [aux_sym_label_reference_range_token1] = ACTIONS(752), - [anon_sym_BSLASHnewlabel] = ACTIONS(755), - [aux_sym_command_definition_token1] = ACTIONS(758), - [aux_sym_math_operator_token1] = ACTIONS(761), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(764), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(767), - [anon_sym_BSLASHnewacronym] = ACTIONS(770), - [aux_sym_acronym_reference_token1] = ACTIONS(773), - [aux_sym_theorem_definition_token1] = ACTIONS(776), - [aux_sym_color_reference_token1] = ACTIONS(779), - [anon_sym_BSLASHdefinecolor] = ACTIONS(782), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(785), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(788), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(791), - }, - [93] = { - [sym__simple_content] = STATE(96), - [sym__content] = STATE(96), - [sym_part] = STATE(96), - [sym_chapter] = STATE(96), - [sym_section] = STATE(96), - [sym_subsection] = STATE(96), - [sym_subsubsection] = STATE(96), - [sym_paragraph] = STATE(96), - [sym_subparagraph] = STATE(96), - [sym_enum_item] = STATE(96), - [sym_brace_group] = STATE(96), - [sym_mixed_group] = STATE(96), - [sym_text] = STATE(96), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(96), - [sym_inline_formula] = STATE(96), - [sym_begin] = STATE(52), - [sym_environment] = STATE(96), - [sym_caption] = STATE(96), - [sym_citation] = STATE(96), - [sym_package_include] = STATE(96), - [sym_class_include] = STATE(96), - [sym_latex_include] = STATE(96), - [sym_latex_input] = STATE(96), - [sym_biblatex_include] = STATE(96), - [sym_bibtex_include] = STATE(96), - [sym_graphics_include] = STATE(96), - [sym_svg_include] = STATE(96), - [sym_inkscape_include] = STATE(96), - [sym_verbatim_include] = STATE(96), - [sym_import] = STATE(96), - [sym_label_definition] = STATE(96), - [sym_label_reference] = STATE(96), - [sym_equation_label_reference] = STATE(96), - [sym_label_reference_range] = STATE(96), - [sym_label_number] = STATE(96), - [sym_command_definition] = STATE(96), - [sym_math_operator] = STATE(96), - [sym_glossary_entry_definition] = STATE(96), - [sym_glossary_entry_reference] = STATE(96), - [sym_acronym_definition] = STATE(96), - [sym_acronym_reference] = STATE(96), - [sym_theorem_definition] = STATE(96), - [sym_color_reference] = STATE(96), - [sym_color_definition] = STATE(96), - [sym_color_set_definition] = STATE(96), - [sym_pgf_library_import] = STATE(96), - [sym_tikz_library_import] = STATE(96), - [sym_generic_command] = STATE(96), - [aux_sym_document_repeat1] = STATE(96), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(796), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [94] = { - [sym__simple_content] = STATE(100), - [sym__content] = STATE(100), - [sym_part] = STATE(100), - [sym_chapter] = STATE(100), - [sym_section] = STATE(100), - [sym_subsection] = STATE(100), - [sym_subsubsection] = STATE(100), - [sym_paragraph] = STATE(100), - [sym_subparagraph] = STATE(100), - [sym_enum_item] = STATE(100), - [sym_brace_group] = STATE(100), - [sym_mixed_group] = STATE(100), - [sym_text] = STATE(100), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_begin] = STATE(73), - [sym_end] = STATE(1209), - [sym_environment] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_latex_input] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_equation_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_command_definition] = STATE(100), - [sym_math_operator] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_pgf_library_import] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [sym_generic_command] = STATE(100), - [aux_sym_document_repeat1] = STATE(100), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(798), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(800), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [95] = { - [sym__simple_content] = STATE(96), - [sym__content] = STATE(96), - [sym_part] = STATE(96), - [sym_chapter] = STATE(96), - [sym_section] = STATE(96), - [sym_subsection] = STATE(96), - [sym_subsubsection] = STATE(96), - [sym_paragraph] = STATE(96), - [sym_subparagraph] = STATE(96), - [sym_enum_item] = STATE(96), - [sym_brace_group] = STATE(96), - [sym_mixed_group] = STATE(96), - [sym_text] = STATE(96), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(96), - [sym_inline_formula] = STATE(96), - [sym_begin] = STATE(52), - [sym_environment] = STATE(96), - [sym_caption] = STATE(96), - [sym_citation] = STATE(96), - [sym_package_include] = STATE(96), - [sym_class_include] = STATE(96), - [sym_latex_include] = STATE(96), - [sym_latex_input] = STATE(96), - [sym_biblatex_include] = STATE(96), - [sym_bibtex_include] = STATE(96), - [sym_graphics_include] = STATE(96), - [sym_svg_include] = STATE(96), - [sym_inkscape_include] = STATE(96), - [sym_verbatim_include] = STATE(96), - [sym_import] = STATE(96), - [sym_label_definition] = STATE(96), - [sym_label_reference] = STATE(96), - [sym_equation_label_reference] = STATE(96), - [sym_label_reference_range] = STATE(96), - [sym_label_number] = STATE(96), - [sym_command_definition] = STATE(96), - [sym_math_operator] = STATE(96), - [sym_glossary_entry_definition] = STATE(96), - [sym_glossary_entry_reference] = STATE(96), - [sym_acronym_definition] = STATE(96), - [sym_acronym_reference] = STATE(96), - [sym_theorem_definition] = STATE(96), - [sym_color_reference] = STATE(96), - [sym_color_definition] = STATE(96), - [sym_color_set_definition] = STATE(96), - [sym_pgf_library_import] = STATE(96), - [sym_tikz_library_import] = STATE(96), - [sym_generic_command] = STATE(96), - [aux_sym_document_repeat1] = STATE(96), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(794), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(802), - [sym_param] = ACTIONS(796), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [96] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [97] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(806), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [98] = { - [sym__simple_content] = STATE(97), - [sym__content] = STATE(97), - [sym_part] = STATE(97), - [sym_chapter] = STATE(97), - [sym_section] = STATE(97), - [sym_subsection] = STATE(97), - [sym_subsubsection] = STATE(97), - [sym_paragraph] = STATE(97), - [sym_subparagraph] = STATE(97), - [sym_enum_item] = STATE(97), - [sym_brace_group] = STATE(97), - [sym_mixed_group] = STATE(97), - [sym_text] = STATE(97), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(97), - [sym_inline_formula] = STATE(97), - [sym_begin] = STATE(52), - [sym_environment] = STATE(97), - [sym_caption] = STATE(97), - [sym_citation] = STATE(97), - [sym_package_include] = STATE(97), - [sym_class_include] = STATE(97), - [sym_latex_include] = STATE(97), - [sym_latex_input] = STATE(97), - [sym_biblatex_include] = STATE(97), - [sym_bibtex_include] = STATE(97), - [sym_graphics_include] = STATE(97), - [sym_svg_include] = STATE(97), - [sym_inkscape_include] = STATE(97), - [sym_verbatim_include] = STATE(97), - [sym_import] = STATE(97), - [sym_label_definition] = STATE(97), - [sym_label_reference] = STATE(97), - [sym_equation_label_reference] = STATE(97), - [sym_label_reference_range] = STATE(97), - [sym_label_number] = STATE(97), - [sym_command_definition] = STATE(97), - [sym_math_operator] = STATE(97), - [sym_glossary_entry_definition] = STATE(97), - [sym_glossary_entry_reference] = STATE(97), - [sym_acronym_definition] = STATE(97), - [sym_acronym_reference] = STATE(97), - [sym_theorem_definition] = STATE(97), - [sym_color_reference] = STATE(97), - [sym_color_definition] = STATE(97), - [sym_color_set_definition] = STATE(97), - [sym_pgf_library_import] = STATE(97), - [sym_tikz_library_import] = STATE(97), - [sym_generic_command] = STATE(97), - [aux_sym_document_repeat1] = STATE(97), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(808), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(810), - [sym_param] = ACTIONS(812), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [99] = { - [sym__simple_content] = STATE(91), - [sym__content] = STATE(91), - [sym_part] = STATE(91), - [sym_chapter] = STATE(91), - [sym_section] = STATE(91), - [sym_subsection] = STATE(91), - [sym_subsubsection] = STATE(91), - [sym_paragraph] = STATE(91), - [sym_subparagraph] = STATE(91), - [sym_enum_item] = STATE(91), - [sym_brace_group] = STATE(91), - [sym_mixed_group] = STATE(91), - [sym_text] = STATE(91), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(91), - [sym_inline_formula] = STATE(91), - [sym_begin] = STATE(73), - [sym_end] = STATE(1627), - [sym_environment] = STATE(91), - [sym_caption] = STATE(91), - [sym_citation] = STATE(91), - [sym_package_include] = STATE(91), - [sym_class_include] = STATE(91), - [sym_latex_include] = STATE(91), - [sym_latex_input] = STATE(91), - [sym_biblatex_include] = STATE(91), - [sym_bibtex_include] = STATE(91), - [sym_graphics_include] = STATE(91), - [sym_svg_include] = STATE(91), - [sym_inkscape_include] = STATE(91), - [sym_verbatim_include] = STATE(91), - [sym_import] = STATE(91), - [sym_label_definition] = STATE(91), - [sym_label_reference] = STATE(91), - [sym_equation_label_reference] = STATE(91), - [sym_label_reference_range] = STATE(91), - [sym_label_number] = STATE(91), - [sym_command_definition] = STATE(91), - [sym_math_operator] = STATE(91), - [sym_glossary_entry_definition] = STATE(91), - [sym_glossary_entry_reference] = STATE(91), - [sym_acronym_definition] = STATE(91), - [sym_acronym_reference] = STATE(91), - [sym_theorem_definition] = STATE(91), - [sym_color_reference] = STATE(91), - [sym_color_definition] = STATE(91), - [sym_color_set_definition] = STATE(91), - [sym_pgf_library_import] = STATE(91), - [sym_tikz_library_import] = STATE(91), - [sym_generic_command] = STATE(91), - [aux_sym_document_repeat1] = STATE(91), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(814), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(650), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [100] = { - [sym__simple_content] = STATE(157), - [sym__content] = STATE(157), - [sym_part] = STATE(157), - [sym_chapter] = STATE(157), - [sym_section] = STATE(157), - [sym_subsection] = STATE(157), - [sym_subsubsection] = STATE(157), - [sym_paragraph] = STATE(157), - [sym_subparagraph] = STATE(157), - [sym_enum_item] = STATE(157), - [sym_brace_group] = STATE(157), - [sym_mixed_group] = STATE(157), - [sym_text] = STATE(157), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_begin] = STATE(73), - [sym_end] = STATE(1242), - [sym_environment] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_latex_input] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_equation_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_command_definition] = STATE(157), - [sym_math_operator] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_pgf_library_import] = STATE(157), - [sym_tikz_library_import] = STATE(157), - [sym_generic_command] = STATE(157), - [aux_sym_document_repeat1] = STATE(157), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(568), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(800), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [101] = { - [sym__simple_content] = STATE(110), - [sym__content] = STATE(110), - [sym_part] = STATE(110), - [sym_chapter] = STATE(110), - [sym_section] = STATE(110), - [sym_subsection] = STATE(110), - [sym_subsubsection] = STATE(110), - [sym_paragraph] = STATE(110), - [sym_subparagraph] = STATE(110), - [sym_enum_item] = STATE(110), - [sym_brace_group] = STATE(110), - [sym_mixed_group] = STATE(110), - [sym_text] = STATE(110), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(110), - [sym_inline_formula] = STATE(110), - [sym_begin] = STATE(52), - [sym_environment] = STATE(110), - [sym_caption] = STATE(110), - [sym_citation] = STATE(110), - [sym_package_include] = STATE(110), - [sym_class_include] = STATE(110), - [sym_latex_include] = STATE(110), - [sym_latex_input] = STATE(110), - [sym_biblatex_include] = STATE(110), - [sym_bibtex_include] = STATE(110), - [sym_graphics_include] = STATE(110), - [sym_svg_include] = STATE(110), - [sym_inkscape_include] = STATE(110), - [sym_verbatim_include] = STATE(110), - [sym_import] = STATE(110), - [sym_label_definition] = STATE(110), - [sym_label_reference] = STATE(110), - [sym_equation_label_reference] = STATE(110), - [sym_label_reference_range] = STATE(110), - [sym_label_number] = STATE(110), - [sym_command_definition] = STATE(110), - [sym_math_operator] = STATE(110), - [sym_glossary_entry_definition] = STATE(110), - [sym_glossary_entry_reference] = STATE(110), - [sym_acronym_definition] = STATE(110), - [sym_acronym_reference] = STATE(110), - [sym_theorem_definition] = STATE(110), - [sym_color_reference] = STATE(110), - [sym_color_definition] = STATE(110), - [sym_color_set_definition] = STATE(110), - [sym_pgf_library_import] = STATE(110), - [sym_tikz_library_import] = STATE(110), - [sym_generic_command] = STATE(110), - [aux_sym_document_repeat1] = STATE(110), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(450), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(450), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(454), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [102] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(816), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(816), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [103] = { - [sym__simple_content] = STATE(70), - [sym__content] = STATE(70), - [sym_part] = STATE(70), - [sym_chapter] = STATE(70), - [sym_section] = STATE(70), - [sym_subsection] = STATE(70), - [sym_subsubsection] = STATE(70), - [sym_paragraph] = STATE(70), - [sym_subparagraph] = STATE(70), - [sym_enum_item] = STATE(70), - [sym_brace_group] = STATE(70), - [sym_mixed_group] = STATE(70), - [sym_text] = STATE(70), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(70), - [sym_inline_formula] = STATE(70), - [sym_begin] = STATE(52), - [sym_environment] = STATE(70), - [sym_caption] = STATE(70), - [sym_citation] = STATE(70), - [sym_package_include] = STATE(70), - [sym_class_include] = STATE(70), - [sym_latex_include] = STATE(70), - [sym_latex_input] = STATE(70), - [sym_biblatex_include] = STATE(70), - [sym_bibtex_include] = STATE(70), - [sym_graphics_include] = STATE(70), - [sym_svg_include] = STATE(70), - [sym_inkscape_include] = STATE(70), - [sym_verbatim_include] = STATE(70), - [sym_import] = STATE(70), - [sym_label_definition] = STATE(70), - [sym_label_reference] = STATE(70), - [sym_equation_label_reference] = STATE(70), - [sym_label_reference_range] = STATE(70), - [sym_label_number] = STATE(70), - [sym_command_definition] = STATE(70), - [sym_math_operator] = STATE(70), - [sym_glossary_entry_definition] = STATE(70), - [sym_glossary_entry_reference] = STATE(70), - [sym_acronym_definition] = STATE(70), - [sym_acronym_reference] = STATE(70), - [sym_theorem_definition] = STATE(70), - [sym_color_reference] = STATE(70), - [sym_color_definition] = STATE(70), - [sym_color_set_definition] = STATE(70), - [sym_pgf_library_import] = STATE(70), - [sym_tikz_library_import] = STATE(70), - [sym_generic_command] = STATE(70), - [aux_sym_document_repeat1] = STATE(70), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(550), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(550), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(818), - [sym_param] = ACTIONS(552), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [104] = { - [sym__simple_content] = STATE(97), - [sym__content] = STATE(97), - [sym_part] = STATE(97), - [sym_chapter] = STATE(97), - [sym_section] = STATE(97), - [sym_subsection] = STATE(97), - [sym_subsubsection] = STATE(97), - [sym_paragraph] = STATE(97), - [sym_subparagraph] = STATE(97), - [sym_enum_item] = STATE(97), - [sym_brace_group] = STATE(97), - [sym_mixed_group] = STATE(97), - [sym_text] = STATE(97), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(97), - [sym_inline_formula] = STATE(97), - [sym_begin] = STATE(52), - [sym_environment] = STATE(97), - [sym_caption] = STATE(97), - [sym_citation] = STATE(97), - [sym_package_include] = STATE(97), - [sym_class_include] = STATE(97), - [sym_latex_include] = STATE(97), - [sym_latex_input] = STATE(97), - [sym_biblatex_include] = STATE(97), - [sym_bibtex_include] = STATE(97), - [sym_graphics_include] = STATE(97), - [sym_svg_include] = STATE(97), - [sym_inkscape_include] = STATE(97), - [sym_verbatim_include] = STATE(97), - [sym_import] = STATE(97), - [sym_label_definition] = STATE(97), - [sym_label_reference] = STATE(97), - [sym_equation_label_reference] = STATE(97), - [sym_label_reference_range] = STATE(97), - [sym_label_number] = STATE(97), - [sym_command_definition] = STATE(97), - [sym_math_operator] = STATE(97), - [sym_glossary_entry_definition] = STATE(97), - [sym_glossary_entry_reference] = STATE(97), - [sym_acronym_definition] = STATE(97), - [sym_acronym_reference] = STATE(97), - [sym_theorem_definition] = STATE(97), - [sym_color_reference] = STATE(97), - [sym_color_definition] = STATE(97), - [sym_color_set_definition] = STATE(97), - [sym_pgf_library_import] = STATE(97), - [sym_tikz_library_import] = STATE(97), - [sym_generic_command] = STATE(97), - [aux_sym_document_repeat1] = STATE(97), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(808), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(808), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(812), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [105] = { - [sym__simple_content] = STATE(113), - [sym__content] = STATE(113), - [sym_part] = STATE(113), - [sym_chapter] = STATE(113), - [sym_section] = STATE(113), - [sym_subsection] = STATE(113), - [sym_subsubsection] = STATE(113), - [sym_paragraph] = STATE(113), - [sym_subparagraph] = STATE(113), - [sym_enum_item] = STATE(113), - [sym_brace_group] = STATE(113), - [sym_mixed_group] = STATE(113), - [sym_text] = STATE(113), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(113), - [sym_inline_formula] = STATE(113), - [sym_begin] = STATE(73), - [sym_end] = STATE(1356), - [sym_environment] = STATE(113), - [sym_caption] = STATE(113), - [sym_citation] = STATE(113), - [sym_package_include] = STATE(113), - [sym_class_include] = STATE(113), - [sym_latex_include] = STATE(113), - [sym_latex_input] = STATE(113), - [sym_biblatex_include] = STATE(113), - [sym_bibtex_include] = STATE(113), - [sym_graphics_include] = STATE(113), - [sym_svg_include] = STATE(113), - [sym_inkscape_include] = STATE(113), - [sym_verbatim_include] = STATE(113), - [sym_import] = STATE(113), - [sym_label_definition] = STATE(113), - [sym_label_reference] = STATE(113), - [sym_equation_label_reference] = STATE(113), - [sym_label_reference_range] = STATE(113), - [sym_label_number] = STATE(113), - [sym_command_definition] = STATE(113), - [sym_math_operator] = STATE(113), - [sym_glossary_entry_definition] = STATE(113), - [sym_glossary_entry_reference] = STATE(113), - [sym_acronym_definition] = STATE(113), - [sym_acronym_reference] = STATE(113), - [sym_theorem_definition] = STATE(113), - [sym_color_reference] = STATE(113), - [sym_color_definition] = STATE(113), - [sym_color_set_definition] = STATE(113), - [sym_pgf_library_import] = STATE(113), - [sym_tikz_library_import] = STATE(113), - [sym_generic_command] = STATE(113), - [aux_sym_document_repeat1] = STATE(113), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(820), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(822), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [106] = { - [sym__simple_content] = STATE(102), - [sym__content] = STATE(102), - [sym_part] = STATE(102), - [sym_chapter] = STATE(102), - [sym_section] = STATE(102), - [sym_subsection] = STATE(102), - [sym_subsubsection] = STATE(102), - [sym_paragraph] = STATE(102), - [sym_subparagraph] = STATE(102), - [sym_enum_item] = STATE(102), - [sym_brace_group] = STATE(102), - [sym_mixed_group] = STATE(102), - [sym_text] = STATE(102), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(102), - [sym_inline_formula] = STATE(102), - [sym_begin] = STATE(52), - [sym_environment] = STATE(102), - [sym_caption] = STATE(102), - [sym_citation] = STATE(102), - [sym_package_include] = STATE(102), - [sym_class_include] = STATE(102), - [sym_latex_include] = STATE(102), - [sym_latex_input] = STATE(102), - [sym_biblatex_include] = STATE(102), - [sym_bibtex_include] = STATE(102), - [sym_graphics_include] = STATE(102), - [sym_svg_include] = STATE(102), - [sym_inkscape_include] = STATE(102), - [sym_verbatim_include] = STATE(102), - [sym_import] = STATE(102), - [sym_label_definition] = STATE(102), - [sym_label_reference] = STATE(102), - [sym_equation_label_reference] = STATE(102), - [sym_label_reference_range] = STATE(102), - [sym_label_number] = STATE(102), - [sym_command_definition] = STATE(102), - [sym_math_operator] = STATE(102), - [sym_glossary_entry_definition] = STATE(102), - [sym_glossary_entry_reference] = STATE(102), - [sym_acronym_definition] = STATE(102), - [sym_acronym_reference] = STATE(102), - [sym_theorem_definition] = STATE(102), - [sym_color_reference] = STATE(102), - [sym_color_definition] = STATE(102), - [sym_color_set_definition] = STATE(102), - [sym_pgf_library_import] = STATE(102), - [sym_tikz_library_import] = STATE(102), - [sym_generic_command] = STATE(102), - [aux_sym_document_repeat1] = STATE(102), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(826), - [sym_param] = ACTIONS(828), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [107] = { - [sym__simple_content] = STATE(102), - [sym__content] = STATE(102), - [sym_part] = STATE(102), - [sym_chapter] = STATE(102), - [sym_section] = STATE(102), - [sym_subsection] = STATE(102), - [sym_subsubsection] = STATE(102), - [sym_paragraph] = STATE(102), - [sym_subparagraph] = STATE(102), - [sym_enum_item] = STATE(102), - [sym_brace_group] = STATE(102), - [sym_mixed_group] = STATE(102), - [sym_text] = STATE(102), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(102), - [sym_inline_formula] = STATE(102), - [sym_begin] = STATE(52), - [sym_environment] = STATE(102), - [sym_caption] = STATE(102), - [sym_citation] = STATE(102), - [sym_package_include] = STATE(102), - [sym_class_include] = STATE(102), - [sym_latex_include] = STATE(102), - [sym_latex_input] = STATE(102), - [sym_biblatex_include] = STATE(102), - [sym_bibtex_include] = STATE(102), - [sym_graphics_include] = STATE(102), - [sym_svg_include] = STATE(102), - [sym_inkscape_include] = STATE(102), - [sym_verbatim_include] = STATE(102), - [sym_import] = STATE(102), - [sym_label_definition] = STATE(102), - [sym_label_reference] = STATE(102), - [sym_equation_label_reference] = STATE(102), - [sym_label_reference_range] = STATE(102), - [sym_label_number] = STATE(102), - [sym_command_definition] = STATE(102), - [sym_math_operator] = STATE(102), - [sym_glossary_entry_definition] = STATE(102), - [sym_glossary_entry_reference] = STATE(102), - [sym_acronym_definition] = STATE(102), - [sym_acronym_reference] = STATE(102), - [sym_theorem_definition] = STATE(102), - [sym_color_reference] = STATE(102), - [sym_color_definition] = STATE(102), - [sym_color_set_definition] = STATE(102), - [sym_pgf_library_import] = STATE(102), - [sym_tikz_library_import] = STATE(102), - [sym_generic_command] = STATE(102), - [aux_sym_document_repeat1] = STATE(102), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(824), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(828), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [108] = { - [sym__simple_content] = STATE(157), - [sym__content] = STATE(157), - [sym_part] = STATE(157), - [sym_chapter] = STATE(157), - [sym_section] = STATE(157), - [sym_subsection] = STATE(157), - [sym_subsubsection] = STATE(157), - [sym_paragraph] = STATE(157), - [sym_subparagraph] = STATE(157), - [sym_enum_item] = STATE(157), - [sym_brace_group] = STATE(157), - [sym_mixed_group] = STATE(157), - [sym_text] = STATE(157), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_begin] = STATE(73), - [sym_end] = STATE(556), - [sym_environment] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_latex_input] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_equation_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_command_definition] = STATE(157), - [sym_math_operator] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_pgf_library_import] = STATE(157), - [sym_tikz_library_import] = STATE(157), - [sym_generic_command] = STATE(157), - [aux_sym_document_repeat1] = STATE(157), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(568), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(556), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [109] = { - [sym__simple_content] = STATE(157), - [sym__content] = STATE(157), - [sym_part] = STATE(157), - [sym_chapter] = STATE(157), - [sym_section] = STATE(157), - [sym_subsection] = STATE(157), - [sym_subsubsection] = STATE(157), - [sym_paragraph] = STATE(157), - [sym_subparagraph] = STATE(157), - [sym_enum_item] = STATE(157), - [sym_brace_group] = STATE(157), - [sym_mixed_group] = STATE(157), - [sym_text] = STATE(157), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_begin] = STATE(73), - [sym_end] = STATE(1484), - [sym_environment] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_latex_input] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_equation_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_command_definition] = STATE(157), - [sym_math_operator] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_pgf_library_import] = STATE(157), - [sym_tikz_library_import] = STATE(157), - [sym_generic_command] = STATE(157), - [aux_sym_document_repeat1] = STATE(157), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(568), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [110] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [111] = { - [sym__simple_content] = STATE(92), - [sym_chapter] = STATE(92), - [sym_section] = STATE(92), - [sym_subsection] = STATE(92), - [sym_subsubsection] = STATE(92), - [sym_paragraph] = STATE(92), - [sym_subparagraph] = STATE(92), - [sym_enum_item] = STATE(92), - [sym_brace_group] = STATE(92), - [sym_mixed_group] = STATE(92), - [sym_text] = STATE(92), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(92), - [sym_inline_formula] = STATE(92), - [sym_begin] = STATE(52), - [sym_environment] = STATE(92), - [sym_caption] = STATE(92), - [sym_citation] = STATE(92), - [sym_package_include] = STATE(92), - [sym_class_include] = STATE(92), - [sym_latex_include] = STATE(92), - [sym_latex_input] = STATE(92), - [sym_biblatex_include] = STATE(92), - [sym_bibtex_include] = STATE(92), - [sym_graphics_include] = STATE(92), - [sym_svg_include] = STATE(92), - [sym_inkscape_include] = STATE(92), - [sym_verbatim_include] = STATE(92), - [sym_import] = STATE(92), - [sym_label_definition] = STATE(92), - [sym_label_reference] = STATE(92), - [sym_equation_label_reference] = STATE(92), - [sym_label_reference_range] = STATE(92), - [sym_label_number] = STATE(92), - [sym_command_definition] = STATE(92), - [sym_math_operator] = STATE(92), - [sym_glossary_entry_definition] = STATE(92), - [sym_glossary_entry_reference] = STATE(92), - [sym_acronym_definition] = STATE(92), - [sym_acronym_reference] = STATE(92), - [sym_theorem_definition] = STATE(92), - [sym_color_reference] = STATE(92), - [sym_color_definition] = STATE(92), - [sym_color_set_definition] = STATE(92), - [sym_pgf_library_import] = STATE(92), - [sym_tikz_library_import] = STATE(92), - [sym_generic_command] = STATE(92), - [aux_sym_part_repeat1] = STATE(92), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(834), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(836), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(838), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [112] = { - [sym__simple_content] = STATE(109), - [sym__content] = STATE(109), - [sym_part] = STATE(109), - [sym_chapter] = STATE(109), - [sym_section] = STATE(109), - [sym_subsection] = STATE(109), - [sym_subsubsection] = STATE(109), - [sym_paragraph] = STATE(109), - [sym_subparagraph] = STATE(109), - [sym_enum_item] = STATE(109), - [sym_brace_group] = STATE(109), - [sym_mixed_group] = STATE(109), - [sym_text] = STATE(109), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(109), - [sym_inline_formula] = STATE(109), - [sym_begin] = STATE(73), - [sym_end] = STATE(1502), - [sym_environment] = STATE(109), - [sym_caption] = STATE(109), - [sym_citation] = STATE(109), - [sym_package_include] = STATE(109), - [sym_class_include] = STATE(109), - [sym_latex_include] = STATE(109), - [sym_latex_input] = STATE(109), - [sym_biblatex_include] = STATE(109), - [sym_bibtex_include] = STATE(109), - [sym_graphics_include] = STATE(109), - [sym_svg_include] = STATE(109), - [sym_inkscape_include] = STATE(109), - [sym_verbatim_include] = STATE(109), - [sym_import] = STATE(109), - [sym_label_definition] = STATE(109), - [sym_label_reference] = STATE(109), - [sym_equation_label_reference] = STATE(109), - [sym_label_reference_range] = STATE(109), - [sym_label_number] = STATE(109), - [sym_command_definition] = STATE(109), - [sym_math_operator] = STATE(109), - [sym_glossary_entry_definition] = STATE(109), - [sym_glossary_entry_reference] = STATE(109), - [sym_acronym_definition] = STATE(109), - [sym_acronym_reference] = STATE(109), - [sym_theorem_definition] = STATE(109), - [sym_color_reference] = STATE(109), - [sym_color_definition] = STATE(109), - [sym_color_set_definition] = STATE(109), - [sym_pgf_library_import] = STATE(109), - [sym_tikz_library_import] = STATE(109), - [sym_generic_command] = STATE(109), - [aux_sym_document_repeat1] = STATE(109), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(840), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [113] = { - [sym__simple_content] = STATE(157), - [sym__content] = STATE(157), - [sym_part] = STATE(157), - [sym_chapter] = STATE(157), - [sym_section] = STATE(157), - [sym_subsection] = STATE(157), - [sym_subsubsection] = STATE(157), - [sym_paragraph] = STATE(157), - [sym_subparagraph] = STATE(157), - [sym_enum_item] = STATE(157), - [sym_brace_group] = STATE(157), - [sym_mixed_group] = STATE(157), - [sym_text] = STATE(157), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_begin] = STATE(73), - [sym_end] = STATE(1362), - [sym_environment] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_latex_input] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_equation_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_command_definition] = STATE(157), - [sym_math_operator] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_pgf_library_import] = STATE(157), - [sym_tikz_library_import] = STATE(157), - [sym_generic_command] = STATE(157), - [aux_sym_document_repeat1] = STATE(157), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(458), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(568), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(822), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [114] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(846), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [115] = { - [sym__simple_content] = STATE(240), - [sym__content] = STATE(240), - [sym_part] = STATE(240), - [sym_chapter] = STATE(240), - [sym_section] = STATE(240), - [sym_subsection] = STATE(240), - [sym_subsubsection] = STATE(240), - [sym_paragraph] = STATE(240), - [sym_subparagraph] = STATE(240), - [sym_enum_item] = STATE(240), - [sym_brace_group] = STATE(240), - [sym_mixed_group] = STATE(240), - [sym_text] = STATE(240), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_begin] = STATE(59), - [sym_environment] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_latex_input] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_equation_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_command_definition] = STATE(240), - [sym_math_operator] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_pgf_library_import] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [sym_generic_command] = STATE(240), - [aux_sym_document_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(848), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(850), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(852), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [116] = { - [sym__simple_content] = STATE(188), - [sym__content] = STATE(188), - [sym_part] = STATE(188), - [sym_chapter] = STATE(188), - [sym_section] = STATE(188), - [sym_subsection] = STATE(188), - [sym_subsubsection] = STATE(188), - [sym_paragraph] = STATE(188), - [sym_subparagraph] = STATE(188), - [sym_enum_item] = STATE(188), - [sym_brace_group] = STATE(188), - [sym_mixed_group] = STATE(188), - [sym_text] = STATE(188), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(188), - [sym_inline_formula] = STATE(188), - [sym_begin] = STATE(52), - [sym_environment] = STATE(188), - [sym_caption] = STATE(188), - [sym_citation] = STATE(188), - [sym_package_include] = STATE(188), - [sym_class_include] = STATE(188), - [sym_latex_include] = STATE(188), - [sym_latex_input] = STATE(188), - [sym_biblatex_include] = STATE(188), - [sym_bibtex_include] = STATE(188), - [sym_graphics_include] = STATE(188), - [sym_svg_include] = STATE(188), - [sym_inkscape_include] = STATE(188), - [sym_verbatim_include] = STATE(188), - [sym_import] = STATE(188), - [sym_label_definition] = STATE(188), - [sym_label_reference] = STATE(188), - [sym_equation_label_reference] = STATE(188), - [sym_label_reference_range] = STATE(188), - [sym_label_number] = STATE(188), - [sym_command_definition] = STATE(188), - [sym_math_operator] = STATE(188), - [sym_glossary_entry_definition] = STATE(188), - [sym_glossary_entry_reference] = STATE(188), - [sym_acronym_definition] = STATE(188), - [sym_acronym_reference] = STATE(188), - [sym_theorem_definition] = STATE(188), - [sym_color_reference] = STATE(188), - [sym_color_definition] = STATE(188), - [sym_color_set_definition] = STATE(188), - [sym_pgf_library_import] = STATE(188), - [sym_tikz_library_import] = STATE(188), - [sym_generic_command] = STATE(188), - [aux_sym_document_repeat1] = STATE(188), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(854), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(856), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [117] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(115), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(115), - [aux_sym_chapter_token1] = ACTIONS(115), - [aux_sym_section_token1] = ACTIONS(115), - [aux_sym_subsection_token1] = ACTIONS(115), - [aux_sym_subsubsection_token1] = ACTIONS(115), - [aux_sym_paragraph_token1] = ACTIONS(115), - [aux_sym_subparagraph_token1] = ACTIONS(115), - [anon_sym_BSLASHitem] = ACTIONS(115), - [anon_sym_LBRACK] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(113), - [anon_sym_LPAREN] = ACTIONS(113), - [anon_sym_COMMA] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(113), - [sym_word] = ACTIONS(113), - [sym_param] = ACTIONS(113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(113), - [anon_sym_BSLASH_LBRACK] = ACTIONS(113), - [anon_sym_BSLASH_RBRACK] = ACTIONS(113), - [anon_sym_DOLLAR] = ACTIONS(115), - [anon_sym_BSLASH_LPAREN] = ACTIONS(113), - [anon_sym_BSLASHbegin] = ACTIONS(115), - [anon_sym_BSLASHcaption] = ACTIONS(115), - [aux_sym_citation_token1] = ACTIONS(115), - [aux_sym_package_include_token1] = ACTIONS(115), - [anon_sym_BSLASHdocumentclass] = ACTIONS(115), - [aux_sym_latex_include_token1] = ACTIONS(115), - [aux_sym_latex_input_token1] = ACTIONS(115), - [anon_sym_BSLASHaddbibresource] = ACTIONS(115), - [anon_sym_BSLASHbibliography] = ACTIONS(115), - [anon_sym_BSLASHincludegraphics] = ACTIONS(115), - [anon_sym_BSLASHincludesvg] = ACTIONS(115), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(115), - [aux_sym_verbatim_include_token1] = ACTIONS(115), - [aux_sym_import_token1] = ACTIONS(115), - [anon_sym_BSLASHlabel] = ACTIONS(115), - [aux_sym_label_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHeqref] = ACTIONS(115), - [aux_sym_label_reference_range_token1] = ACTIONS(115), - [anon_sym_BSLASHnewlabel] = ACTIONS(115), - [aux_sym_command_definition_token1] = ACTIONS(115), - [aux_sym_math_operator_token1] = ACTIONS(115), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(115), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHnewacronym] = ACTIONS(115), - [aux_sym_acronym_reference_token1] = ACTIONS(115), - [aux_sym_theorem_definition_token1] = ACTIONS(115), - [aux_sym_color_reference_token1] = ACTIONS(115), - [anon_sym_BSLASHdefinecolor] = ACTIONS(115), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(115), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(115), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(115), - }, - [118] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(858), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [119] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(860), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [120] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(862), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(865), - [aux_sym_chapter_token1] = ACTIONS(868), - [aux_sym_section_token1] = ACTIONS(871), - [aux_sym_subsection_token1] = ACTIONS(874), - [aux_sym_subsubsection_token1] = ACTIONS(877), - [aux_sym_paragraph_token1] = ACTIONS(880), - [aux_sym_subparagraph_token1] = ACTIONS(883), - [anon_sym_BSLASHitem] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(889), - [anon_sym_LBRACE] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(889), - [anon_sym_COMMA] = ACTIONS(895), - [anon_sym_EQ] = ACTIONS(895), - [sym_word] = ACTIONS(895), - [sym_param] = ACTIONS(898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(901), - [anon_sym_BSLASH_LBRACK] = ACTIONS(901), - [anon_sym_BSLASH_RBRACK] = ACTIONS(121), - [anon_sym_DOLLAR] = ACTIONS(904), - [anon_sym_BSLASH_LPAREN] = ACTIONS(907), - [anon_sym_BSLASHbegin] = ACTIONS(171), - [anon_sym_BSLASHcaption] = ACTIONS(910), - [aux_sym_citation_token1] = ACTIONS(913), - [aux_sym_package_include_token1] = ACTIONS(916), - [anon_sym_BSLASHdocumentclass] = ACTIONS(919), - [aux_sym_latex_include_token1] = ACTIONS(922), - [aux_sym_latex_input_token1] = ACTIONS(925), - [anon_sym_BSLASHaddbibresource] = ACTIONS(928), - [anon_sym_BSLASHbibliography] = ACTIONS(931), - [anon_sym_BSLASHincludegraphics] = ACTIONS(934), - [anon_sym_BSLASHincludesvg] = ACTIONS(937), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(940), - [aux_sym_verbatim_include_token1] = ACTIONS(943), - [aux_sym_import_token1] = ACTIONS(946), - [anon_sym_BSLASHlabel] = ACTIONS(949), - [aux_sym_label_reference_token1] = ACTIONS(952), - [anon_sym_BSLASHeqref] = ACTIONS(955), - [aux_sym_label_reference_range_token1] = ACTIONS(958), - [anon_sym_BSLASHnewlabel] = ACTIONS(961), - [aux_sym_command_definition_token1] = ACTIONS(964), - [aux_sym_math_operator_token1] = ACTIONS(967), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(970), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(973), - [anon_sym_BSLASHnewacronym] = ACTIONS(976), - [aux_sym_acronym_reference_token1] = ACTIONS(979), - [aux_sym_theorem_definition_token1] = ACTIONS(982), - [aux_sym_color_reference_token1] = ACTIONS(985), - [anon_sym_BSLASHdefinecolor] = ACTIONS(988), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(991), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(994), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(997), - }, - [121] = { - [sym__simple_content] = STATE(118), - [sym__content] = STATE(118), - [sym_part] = STATE(118), - [sym_chapter] = STATE(118), - [sym_section] = STATE(118), - [sym_subsection] = STATE(118), - [sym_subsubsection] = STATE(118), - [sym_paragraph] = STATE(118), - [sym_subparagraph] = STATE(118), - [sym_enum_item] = STATE(118), - [sym_brace_group] = STATE(118), - [sym_mixed_group] = STATE(118), - [sym_text] = STATE(118), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(118), - [sym_inline_formula] = STATE(118), - [sym_begin] = STATE(52), - [sym_environment] = STATE(118), - [sym_caption] = STATE(118), - [sym_citation] = STATE(118), - [sym_package_include] = STATE(118), - [sym_class_include] = STATE(118), - [sym_latex_include] = STATE(118), - [sym_latex_input] = STATE(118), - [sym_biblatex_include] = STATE(118), - [sym_bibtex_include] = STATE(118), - [sym_graphics_include] = STATE(118), - [sym_svg_include] = STATE(118), - [sym_inkscape_include] = STATE(118), - [sym_verbatim_include] = STATE(118), - [sym_import] = STATE(118), - [sym_label_definition] = STATE(118), - [sym_label_reference] = STATE(118), - [sym_equation_label_reference] = STATE(118), - [sym_label_reference_range] = STATE(118), - [sym_label_number] = STATE(118), - [sym_command_definition] = STATE(118), - [sym_math_operator] = STATE(118), - [sym_glossary_entry_definition] = STATE(118), - [sym_glossary_entry_reference] = STATE(118), - [sym_acronym_definition] = STATE(118), - [sym_acronym_reference] = STATE(118), - [sym_theorem_definition] = STATE(118), - [sym_color_reference] = STATE(118), - [sym_color_definition] = STATE(118), - [sym_color_set_definition] = STATE(118), - [sym_pgf_library_import] = STATE(118), - [sym_tikz_library_import] = STATE(118), - [sym_generic_command] = STATE(118), - [aux_sym_document_repeat1] = STATE(118), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1000), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1002), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [122] = { - [sym__simple_content] = STATE(119), - [sym__content] = STATE(119), - [sym_part] = STATE(119), - [sym_chapter] = STATE(119), - [sym_section] = STATE(119), - [sym_subsection] = STATE(119), - [sym_subsubsection] = STATE(119), - [sym_paragraph] = STATE(119), - [sym_subparagraph] = STATE(119), - [sym_enum_item] = STATE(119), - [sym_brace_group] = STATE(119), - [sym_mixed_group] = STATE(119), - [sym_text] = STATE(119), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(119), - [sym_inline_formula] = STATE(119), - [sym_begin] = STATE(52), - [sym_environment] = STATE(119), - [sym_caption] = STATE(119), - [sym_citation] = STATE(119), - [sym_package_include] = STATE(119), - [sym_class_include] = STATE(119), - [sym_latex_include] = STATE(119), - [sym_latex_input] = STATE(119), - [sym_biblatex_include] = STATE(119), - [sym_bibtex_include] = STATE(119), - [sym_graphics_include] = STATE(119), - [sym_svg_include] = STATE(119), - [sym_inkscape_include] = STATE(119), - [sym_verbatim_include] = STATE(119), - [sym_import] = STATE(119), - [sym_label_definition] = STATE(119), - [sym_label_reference] = STATE(119), - [sym_equation_label_reference] = STATE(119), - [sym_label_reference_range] = STATE(119), - [sym_label_number] = STATE(119), - [sym_command_definition] = STATE(119), - [sym_math_operator] = STATE(119), - [sym_glossary_entry_definition] = STATE(119), - [sym_glossary_entry_reference] = STATE(119), - [sym_acronym_definition] = STATE(119), - [sym_acronym_reference] = STATE(119), - [sym_theorem_definition] = STATE(119), - [sym_color_reference] = STATE(119), - [sym_color_definition] = STATE(119), - [sym_color_set_definition] = STATE(119), - [sym_pgf_library_import] = STATE(119), - [sym_tikz_library_import] = STATE(119), - [sym_generic_command] = STATE(119), - [aux_sym_document_repeat1] = STATE(119), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1006), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [123] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1010), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1012), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [124] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1014), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [125] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [126] = { - [sym__simple_content] = STATE(202), - [sym__content] = STATE(202), - [sym_part] = STATE(202), - [sym_chapter] = STATE(202), - [sym_section] = STATE(202), - [sym_subsection] = STATE(202), - [sym_subsubsection] = STATE(202), - [sym_paragraph] = STATE(202), - [sym_subparagraph] = STATE(202), - [sym_enum_item] = STATE(202), - [sym_brace_group] = STATE(202), - [sym_mixed_group] = STATE(202), - [sym_text] = STATE(202), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_begin] = STATE(52), - [sym_environment] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_latex_input] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_equation_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_command_definition] = STATE(202), - [sym_math_operator] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_pgf_library_import] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [sym_generic_command] = STATE(202), - [aux_sym_document_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1022), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [127] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(103), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(103), - [aux_sym_chapter_token1] = ACTIONS(103), - [aux_sym_section_token1] = ACTIONS(103), - [aux_sym_subsection_token1] = ACTIONS(103), - [aux_sym_subsubsection_token1] = ACTIONS(103), - [aux_sym_paragraph_token1] = ACTIONS(103), - [aux_sym_subparagraph_token1] = ACTIONS(103), - [anon_sym_BSLASHitem] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(101), - [anon_sym_LPAREN] = ACTIONS(101), - [anon_sym_COMMA] = ACTIONS(101), - [anon_sym_EQ] = ACTIONS(101), - [sym_word] = ACTIONS(101), - [sym_param] = ACTIONS(101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(101), - [anon_sym_BSLASH_LBRACK] = ACTIONS(101), - [anon_sym_BSLASH_RBRACK] = ACTIONS(101), - [anon_sym_DOLLAR] = ACTIONS(103), - [anon_sym_BSLASH_LPAREN] = ACTIONS(101), - [anon_sym_BSLASHbegin] = ACTIONS(103), - [anon_sym_BSLASHcaption] = ACTIONS(103), - [aux_sym_citation_token1] = ACTIONS(103), - [aux_sym_package_include_token1] = ACTIONS(103), - [anon_sym_BSLASHdocumentclass] = ACTIONS(103), - [aux_sym_latex_include_token1] = ACTIONS(103), - [aux_sym_latex_input_token1] = ACTIONS(103), - [anon_sym_BSLASHaddbibresource] = ACTIONS(103), - [anon_sym_BSLASHbibliography] = ACTIONS(103), - [anon_sym_BSLASHincludegraphics] = ACTIONS(103), - [anon_sym_BSLASHincludesvg] = ACTIONS(103), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(103), - [aux_sym_verbatim_include_token1] = ACTIONS(103), - [aux_sym_import_token1] = ACTIONS(103), - [anon_sym_BSLASHlabel] = ACTIONS(103), - [aux_sym_label_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHeqref] = ACTIONS(103), - [aux_sym_label_reference_range_token1] = ACTIONS(103), - [anon_sym_BSLASHnewlabel] = ACTIONS(103), - [aux_sym_command_definition_token1] = ACTIONS(103), - [aux_sym_math_operator_token1] = ACTIONS(103), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(103), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHnewacronym] = ACTIONS(103), - [aux_sym_acronym_reference_token1] = ACTIONS(103), - [aux_sym_theorem_definition_token1] = ACTIONS(103), - [aux_sym_color_reference_token1] = ACTIONS(103), - [anon_sym_BSLASHdefinecolor] = ACTIONS(103), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(103), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(103), - }, - [128] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [129] = { - [sym__simple_content] = STATE(156), - [sym__content] = STATE(156), - [sym_part] = STATE(156), - [sym_chapter] = STATE(156), - [sym_section] = STATE(156), - [sym_subsection] = STATE(156), - [sym_subsubsection] = STATE(156), - [sym_paragraph] = STATE(156), - [sym_subparagraph] = STATE(156), - [sym_enum_item] = STATE(156), - [sym_brace_group] = STATE(156), - [sym_mixed_group] = STATE(156), - [sym_text] = STATE(156), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(156), - [sym_inline_formula] = STATE(156), - [sym_begin] = STATE(52), - [sym_environment] = STATE(156), - [sym_caption] = STATE(156), - [sym_citation] = STATE(156), - [sym_package_include] = STATE(156), - [sym_class_include] = STATE(156), - [sym_latex_include] = STATE(156), - [sym_latex_input] = STATE(156), - [sym_biblatex_include] = STATE(156), - [sym_bibtex_include] = STATE(156), - [sym_graphics_include] = STATE(156), - [sym_svg_include] = STATE(156), - [sym_inkscape_include] = STATE(156), - [sym_verbatim_include] = STATE(156), - [sym_import] = STATE(156), - [sym_label_definition] = STATE(156), - [sym_label_reference] = STATE(156), - [sym_equation_label_reference] = STATE(156), - [sym_label_reference_range] = STATE(156), - [sym_label_number] = STATE(156), - [sym_command_definition] = STATE(156), - [sym_math_operator] = STATE(156), - [sym_glossary_entry_definition] = STATE(156), - [sym_glossary_entry_reference] = STATE(156), - [sym_acronym_definition] = STATE(156), - [sym_acronym_reference] = STATE(156), - [sym_theorem_definition] = STATE(156), - [sym_color_reference] = STATE(156), - [sym_color_definition] = STATE(156), - [sym_color_set_definition] = STATE(156), - [sym_pgf_library_import] = STATE(156), - [sym_tikz_library_import] = STATE(156), - [sym_generic_command] = STATE(156), - [aux_sym_document_repeat1] = STATE(156), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1026), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1028), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [130] = { - [sym__simple_content] = STATE(207), - [sym_section] = STATE(207), - [sym_subsection] = STATE(207), - [sym_subsubsection] = STATE(207), - [sym_paragraph] = STATE(207), - [sym_subparagraph] = STATE(207), - [sym_enum_item] = STATE(207), - [sym_brace_group] = STATE(207), - [sym_mixed_group] = STATE(207), - [sym_text] = STATE(207), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(207), - [sym_inline_formula] = STATE(207), - [sym_begin] = STATE(52), - [sym_environment] = STATE(207), - [sym_caption] = STATE(207), - [sym_citation] = STATE(207), - [sym_package_include] = STATE(207), - [sym_class_include] = STATE(207), - [sym_latex_include] = STATE(207), - [sym_latex_input] = STATE(207), - [sym_biblatex_include] = STATE(207), - [sym_bibtex_include] = STATE(207), - [sym_graphics_include] = STATE(207), - [sym_svg_include] = STATE(207), - [sym_inkscape_include] = STATE(207), - [sym_verbatim_include] = STATE(207), - [sym_import] = STATE(207), - [sym_label_definition] = STATE(207), - [sym_label_reference] = STATE(207), - [sym_equation_label_reference] = STATE(207), - [sym_label_reference_range] = STATE(207), - [sym_label_number] = STATE(207), - [sym_command_definition] = STATE(207), - [sym_math_operator] = STATE(207), - [sym_glossary_entry_definition] = STATE(207), - [sym_glossary_entry_reference] = STATE(207), - [sym_acronym_definition] = STATE(207), - [sym_acronym_reference] = STATE(207), - [sym_theorem_definition] = STATE(207), - [sym_color_reference] = STATE(207), - [sym_color_definition] = STATE(207), - [sym_color_set_definition] = STATE(207), - [sym_pgf_library_import] = STATE(207), - [sym_tikz_library_import] = STATE(207), - [sym_generic_command] = STATE(207), - [aux_sym_chapter_repeat1] = STATE(207), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(1030), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1032), - [aux_sym_chapter_token1] = ACTIONS(1032), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1034), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [131] = { - [sym__simple_content] = STATE(138), - [sym__content] = STATE(138), - [sym_part] = STATE(138), - [sym_chapter] = STATE(138), - [sym_section] = STATE(138), - [sym_subsection] = STATE(138), - [sym_subsubsection] = STATE(138), - [sym_paragraph] = STATE(138), - [sym_subparagraph] = STATE(138), - [sym_enum_item] = STATE(138), - [sym_brace_group] = STATE(138), - [sym_mixed_group] = STATE(138), - [sym_text] = STATE(138), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(138), - [sym_inline_formula] = STATE(138), - [sym_begin] = STATE(52), - [sym_environment] = STATE(138), - [sym_caption] = STATE(138), - [sym_citation] = STATE(138), - [sym_package_include] = STATE(138), - [sym_class_include] = STATE(138), - [sym_latex_include] = STATE(138), - [sym_latex_input] = STATE(138), - [sym_biblatex_include] = STATE(138), - [sym_bibtex_include] = STATE(138), - [sym_graphics_include] = STATE(138), - [sym_svg_include] = STATE(138), - [sym_inkscape_include] = STATE(138), - [sym_verbatim_include] = STATE(138), - [sym_import] = STATE(138), - [sym_label_definition] = STATE(138), - [sym_label_reference] = STATE(138), - [sym_equation_label_reference] = STATE(138), - [sym_label_reference_range] = STATE(138), - [sym_label_number] = STATE(138), - [sym_command_definition] = STATE(138), - [sym_math_operator] = STATE(138), - [sym_glossary_entry_definition] = STATE(138), - [sym_glossary_entry_reference] = STATE(138), - [sym_acronym_definition] = STATE(138), - [sym_acronym_reference] = STATE(138), - [sym_theorem_definition] = STATE(138), - [sym_color_reference] = STATE(138), - [sym_color_definition] = STATE(138), - [sym_color_set_definition] = STATE(138), - [sym_pgf_library_import] = STATE(138), - [sym_tikz_library_import] = STATE(138), - [sym_generic_command] = STATE(138), - [aux_sym_document_repeat1] = STATE(138), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1038), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [132] = { - [sym__simple_content] = STATE(128), - [sym__content] = STATE(128), - [sym_part] = STATE(128), - [sym_chapter] = STATE(128), - [sym_section] = STATE(128), - [sym_subsection] = STATE(128), - [sym_subsubsection] = STATE(128), - [sym_paragraph] = STATE(128), - [sym_subparagraph] = STATE(128), - [sym_enum_item] = STATE(128), - [sym_brace_group] = STATE(128), - [sym_mixed_group] = STATE(128), - [sym_text] = STATE(128), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(128), - [sym_inline_formula] = STATE(128), - [sym_begin] = STATE(52), - [sym_environment] = STATE(128), - [sym_caption] = STATE(128), - [sym_citation] = STATE(128), - [sym_package_include] = STATE(128), - [sym_class_include] = STATE(128), - [sym_latex_include] = STATE(128), - [sym_latex_input] = STATE(128), - [sym_biblatex_include] = STATE(128), - [sym_bibtex_include] = STATE(128), - [sym_graphics_include] = STATE(128), - [sym_svg_include] = STATE(128), - [sym_inkscape_include] = STATE(128), - [sym_verbatim_include] = STATE(128), - [sym_import] = STATE(128), - [sym_label_definition] = STATE(128), - [sym_label_reference] = STATE(128), - [sym_equation_label_reference] = STATE(128), - [sym_label_reference_range] = STATE(128), - [sym_label_number] = STATE(128), - [sym_command_definition] = STATE(128), - [sym_math_operator] = STATE(128), - [sym_glossary_entry_definition] = STATE(128), - [sym_glossary_entry_reference] = STATE(128), - [sym_acronym_definition] = STATE(128), - [sym_acronym_reference] = STATE(128), - [sym_theorem_definition] = STATE(128), - [sym_color_reference] = STATE(128), - [sym_color_definition] = STATE(128), - [sym_color_set_definition] = STATE(128), - [sym_pgf_library_import] = STATE(128), - [sym_tikz_library_import] = STATE(128), - [sym_generic_command] = STATE(128), - [aux_sym_document_repeat1] = STATE(128), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1042), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [133] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1046), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [134] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1048), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [135] = { - [sym__simple_content] = STATE(140), - [sym__content] = STATE(140), - [sym_part] = STATE(140), - [sym_chapter] = STATE(140), - [sym_section] = STATE(140), - [sym_subsection] = STATE(140), - [sym_subsubsection] = STATE(140), - [sym_paragraph] = STATE(140), - [sym_subparagraph] = STATE(140), - [sym_enum_item] = STATE(140), - [sym_brace_group] = STATE(140), - [sym_mixed_group] = STATE(140), - [sym_text] = STATE(140), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(140), - [sym_inline_formula] = STATE(140), - [sym_begin] = STATE(52), - [sym_environment] = STATE(140), - [sym_caption] = STATE(140), - [sym_citation] = STATE(140), - [sym_package_include] = STATE(140), - [sym_class_include] = STATE(140), - [sym_latex_include] = STATE(140), - [sym_latex_input] = STATE(140), - [sym_biblatex_include] = STATE(140), - [sym_bibtex_include] = STATE(140), - [sym_graphics_include] = STATE(140), - [sym_svg_include] = STATE(140), - [sym_inkscape_include] = STATE(140), - [sym_verbatim_include] = STATE(140), - [sym_import] = STATE(140), - [sym_label_definition] = STATE(140), - [sym_label_reference] = STATE(140), - [sym_equation_label_reference] = STATE(140), - [sym_label_reference_range] = STATE(140), - [sym_label_number] = STATE(140), - [sym_command_definition] = STATE(140), - [sym_math_operator] = STATE(140), - [sym_glossary_entry_definition] = STATE(140), - [sym_glossary_entry_reference] = STATE(140), - [sym_acronym_definition] = STATE(140), - [sym_acronym_reference] = STATE(140), - [sym_theorem_definition] = STATE(140), - [sym_color_reference] = STATE(140), - [sym_color_definition] = STATE(140), - [sym_color_set_definition] = STATE(140), - [sym_pgf_library_import] = STATE(140), - [sym_tikz_library_import] = STATE(140), - [sym_generic_command] = STATE(140), - [aux_sym_document_repeat1] = STATE(140), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1054), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [136] = { - [sym__simple_content] = STATE(123), - [sym__content] = STATE(123), - [sym_part] = STATE(123), - [sym_chapter] = STATE(123), - [sym_section] = STATE(123), - [sym_subsection] = STATE(123), - [sym_subsubsection] = STATE(123), - [sym_paragraph] = STATE(123), - [sym_subparagraph] = STATE(123), - [sym_enum_item] = STATE(123), - [sym_brace_group] = STATE(123), - [sym_mixed_group] = STATE(123), - [sym_text] = STATE(123), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(123), - [sym_inline_formula] = STATE(123), - [sym_begin] = STATE(59), - [sym_environment] = STATE(123), - [sym_caption] = STATE(123), - [sym_citation] = STATE(123), - [sym_package_include] = STATE(123), - [sym_class_include] = STATE(123), - [sym_latex_include] = STATE(123), - [sym_latex_input] = STATE(123), - [sym_biblatex_include] = STATE(123), - [sym_bibtex_include] = STATE(123), - [sym_graphics_include] = STATE(123), - [sym_svg_include] = STATE(123), - [sym_inkscape_include] = STATE(123), - [sym_verbatim_include] = STATE(123), - [sym_import] = STATE(123), - [sym_label_definition] = STATE(123), - [sym_label_reference] = STATE(123), - [sym_equation_label_reference] = STATE(123), - [sym_label_reference_range] = STATE(123), - [sym_label_number] = STATE(123), - [sym_command_definition] = STATE(123), - [sym_math_operator] = STATE(123), - [sym_glossary_entry_definition] = STATE(123), - [sym_glossary_entry_reference] = STATE(123), - [sym_acronym_definition] = STATE(123), - [sym_acronym_reference] = STATE(123), - [sym_theorem_definition] = STATE(123), - [sym_color_reference] = STATE(123), - [sym_color_definition] = STATE(123), - [sym_color_set_definition] = STATE(123), - [sym_pgf_library_import] = STATE(123), - [sym_tikz_library_import] = STATE(123), - [sym_generic_command] = STATE(123), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(288), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(290), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(105), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [137] = { - [sym__simple_content] = STATE(139), - [sym__content] = STATE(139), - [sym_part] = STATE(139), - [sym_chapter] = STATE(139), - [sym_section] = STATE(139), - [sym_subsection] = STATE(139), - [sym_subsubsection] = STATE(139), - [sym_paragraph] = STATE(139), - [sym_subparagraph] = STATE(139), - [sym_enum_item] = STATE(139), - [sym_brace_group] = STATE(139), - [sym_mixed_group] = STATE(139), - [sym_text] = STATE(139), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(139), - [sym_inline_formula] = STATE(139), - [sym_begin] = STATE(66), - [sym_environment] = STATE(139), - [sym_caption] = STATE(139), - [sym_citation] = STATE(139), - [sym_package_include] = STATE(139), - [sym_class_include] = STATE(139), - [sym_latex_include] = STATE(139), - [sym_latex_input] = STATE(139), - [sym_biblatex_include] = STATE(139), - [sym_bibtex_include] = STATE(139), - [sym_graphics_include] = STATE(139), - [sym_svg_include] = STATE(139), - [sym_inkscape_include] = STATE(139), - [sym_verbatim_include] = STATE(139), - [sym_import] = STATE(139), - [sym_label_definition] = STATE(139), - [sym_label_reference] = STATE(139), - [sym_equation_label_reference] = STATE(139), - [sym_label_reference_range] = STATE(139), - [sym_label_number] = STATE(139), - [sym_command_definition] = STATE(139), - [sym_math_operator] = STATE(139), - [sym_glossary_entry_definition] = STATE(139), - [sym_glossary_entry_reference] = STATE(139), - [sym_acronym_definition] = STATE(139), - [sym_acronym_reference] = STATE(139), - [sym_theorem_definition] = STATE(139), - [sym_color_reference] = STATE(139), - [sym_color_definition] = STATE(139), - [sym_color_set_definition] = STATE(139), - [sym_pgf_library_import] = STATE(139), - [sym_tikz_library_import] = STATE(139), - [sym_generic_command] = STATE(139), - [aux_sym_document_repeat1] = STATE(139), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(1056), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1058), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1060), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [138] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1062), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [139] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1064), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1066), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [140] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [141] = { - [sym__simple_content] = STATE(133), - [sym__content] = STATE(133), - [sym_part] = STATE(133), - [sym_chapter] = STATE(133), - [sym_section] = STATE(133), - [sym_subsection] = STATE(133), - [sym_subsubsection] = STATE(133), - [sym_paragraph] = STATE(133), - [sym_subparagraph] = STATE(133), - [sym_enum_item] = STATE(133), - [sym_brace_group] = STATE(133), - [sym_mixed_group] = STATE(133), - [sym_text] = STATE(133), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(133), - [sym_inline_formula] = STATE(133), - [sym_begin] = STATE(66), - [sym_environment] = STATE(133), - [sym_caption] = STATE(133), - [sym_citation] = STATE(133), - [sym_package_include] = STATE(133), - [sym_class_include] = STATE(133), - [sym_latex_include] = STATE(133), - [sym_latex_input] = STATE(133), - [sym_biblatex_include] = STATE(133), - [sym_bibtex_include] = STATE(133), - [sym_graphics_include] = STATE(133), - [sym_svg_include] = STATE(133), - [sym_inkscape_include] = STATE(133), - [sym_verbatim_include] = STATE(133), - [sym_import] = STATE(133), - [sym_label_definition] = STATE(133), - [sym_label_reference] = STATE(133), - [sym_equation_label_reference] = STATE(133), - [sym_label_reference_range] = STATE(133), - [sym_label_number] = STATE(133), - [sym_command_definition] = STATE(133), - [sym_math_operator] = STATE(133), - [sym_glossary_entry_definition] = STATE(133), - [sym_glossary_entry_reference] = STATE(133), - [sym_acronym_definition] = STATE(133), - [sym_acronym_reference] = STATE(133), - [sym_theorem_definition] = STATE(133), - [sym_color_reference] = STATE(133), - [sym_color_definition] = STATE(133), - [sym_color_set_definition] = STATE(133), - [sym_pgf_library_import] = STATE(133), - [sym_tikz_library_import] = STATE(133), - [sym_generic_command] = STATE(133), - [aux_sym_document_repeat1] = STATE(133), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(1070), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1072), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1074), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [142] = { - [sym__simple_content] = STATE(196), - [sym__content] = STATE(196), - [sym_part] = STATE(196), - [sym_chapter] = STATE(196), - [sym_section] = STATE(196), - [sym_subsection] = STATE(196), - [sym_subsubsection] = STATE(196), - [sym_paragraph] = STATE(196), - [sym_subparagraph] = STATE(196), - [sym_enum_item] = STATE(196), - [sym_brace_group] = STATE(196), - [sym_mixed_group] = STATE(196), - [sym_text] = STATE(196), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(196), - [sym_inline_formula] = STATE(196), - [sym_begin] = STATE(66), - [sym_environment] = STATE(196), - [sym_caption] = STATE(196), - [sym_citation] = STATE(196), - [sym_package_include] = STATE(196), - [sym_class_include] = STATE(196), - [sym_latex_include] = STATE(196), - [sym_latex_input] = STATE(196), - [sym_biblatex_include] = STATE(196), - [sym_bibtex_include] = STATE(196), - [sym_graphics_include] = STATE(196), - [sym_svg_include] = STATE(196), - [sym_inkscape_include] = STATE(196), - [sym_verbatim_include] = STATE(196), - [sym_import] = STATE(196), - [sym_label_definition] = STATE(196), - [sym_label_reference] = STATE(196), - [sym_equation_label_reference] = STATE(196), - [sym_label_reference_range] = STATE(196), - [sym_label_number] = STATE(196), - [sym_command_definition] = STATE(196), - [sym_math_operator] = STATE(196), - [sym_glossary_entry_definition] = STATE(196), - [sym_glossary_entry_reference] = STATE(196), - [sym_acronym_definition] = STATE(196), - [sym_acronym_reference] = STATE(196), - [sym_theorem_definition] = STATE(196), - [sym_color_reference] = STATE(196), - [sym_color_definition] = STATE(196), - [sym_color_set_definition] = STATE(196), - [sym_pgf_library_import] = STATE(196), - [sym_tikz_library_import] = STATE(196), - [sym_generic_command] = STATE(196), - [aux_sym_document_repeat1] = STATE(196), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(1076), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1078), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1080), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [143] = { - [sym__simple_content] = STATE(134), - [sym__content] = STATE(134), - [sym_part] = STATE(134), - [sym_chapter] = STATE(134), - [sym_section] = STATE(134), - [sym_subsection] = STATE(134), - [sym_subsubsection] = STATE(134), - [sym_paragraph] = STATE(134), - [sym_subparagraph] = STATE(134), - [sym_enum_item] = STATE(134), - [sym_brace_group] = STATE(134), - [sym_mixed_group] = STATE(134), - [sym_text] = STATE(134), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(134), - [sym_inline_formula] = STATE(134), - [sym_begin] = STATE(59), - [sym_environment] = STATE(134), - [sym_caption] = STATE(134), - [sym_citation] = STATE(134), - [sym_package_include] = STATE(134), - [sym_class_include] = STATE(134), - [sym_latex_include] = STATE(134), - [sym_latex_input] = STATE(134), - [sym_biblatex_include] = STATE(134), - [sym_bibtex_include] = STATE(134), - [sym_graphics_include] = STATE(134), - [sym_svg_include] = STATE(134), - [sym_inkscape_include] = STATE(134), - [sym_verbatim_include] = STATE(134), - [sym_import] = STATE(134), - [sym_label_definition] = STATE(134), - [sym_label_reference] = STATE(134), - [sym_equation_label_reference] = STATE(134), - [sym_label_reference_range] = STATE(134), - [sym_label_number] = STATE(134), - [sym_command_definition] = STATE(134), - [sym_math_operator] = STATE(134), - [sym_glossary_entry_definition] = STATE(134), - [sym_glossary_entry_reference] = STATE(134), - [sym_acronym_definition] = STATE(134), - [sym_acronym_reference] = STATE(134), - [sym_theorem_definition] = STATE(134), - [sym_color_reference] = STATE(134), - [sym_color_definition] = STATE(134), - [sym_color_set_definition] = STATE(134), - [sym_pgf_library_import] = STATE(134), - [sym_tikz_library_import] = STATE(134), - [sym_generic_command] = STATE(134), - [aux_sym_document_repeat1] = STATE(134), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1082), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1084), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1086), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [144] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [145] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1090), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1092), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [146] = { - [sym__simple_content] = STATE(151), - [sym__content] = STATE(151), - [sym_part] = STATE(151), - [sym_chapter] = STATE(151), - [sym_section] = STATE(151), - [sym_subsection] = STATE(151), - [sym_subsubsection] = STATE(151), - [sym_paragraph] = STATE(151), - [sym_subparagraph] = STATE(151), - [sym_enum_item] = STATE(151), - [sym_brace_group] = STATE(151), - [sym_mixed_group] = STATE(151), - [sym_text] = STATE(151), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(151), - [sym_inline_formula] = STATE(151), - [sym_begin] = STATE(52), - [sym_environment] = STATE(151), - [sym_caption] = STATE(151), - [sym_citation] = STATE(151), - [sym_package_include] = STATE(151), - [sym_class_include] = STATE(151), - [sym_latex_include] = STATE(151), - [sym_latex_input] = STATE(151), - [sym_biblatex_include] = STATE(151), - [sym_bibtex_include] = STATE(151), - [sym_graphics_include] = STATE(151), - [sym_svg_include] = STATE(151), - [sym_inkscape_include] = STATE(151), - [sym_verbatim_include] = STATE(151), - [sym_import] = STATE(151), - [sym_label_definition] = STATE(151), - [sym_label_reference] = STATE(151), - [sym_equation_label_reference] = STATE(151), - [sym_label_reference_range] = STATE(151), - [sym_label_number] = STATE(151), - [sym_command_definition] = STATE(151), - [sym_math_operator] = STATE(151), - [sym_glossary_entry_definition] = STATE(151), - [sym_glossary_entry_reference] = STATE(151), - [sym_acronym_definition] = STATE(151), - [sym_acronym_reference] = STATE(151), - [sym_theorem_definition] = STATE(151), - [sym_color_reference] = STATE(151), - [sym_color_definition] = STATE(151), - [sym_color_set_definition] = STATE(151), - [sym_pgf_library_import] = STATE(151), - [sym_tikz_library_import] = STATE(151), - [sym_generic_command] = STATE(151), - [aux_sym_document_repeat1] = STATE(151), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1094), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1096), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [147] = { - [sym__simple_content] = STATE(170), - [sym__content] = STATE(170), - [sym_part] = STATE(170), - [sym_chapter] = STATE(170), - [sym_section] = STATE(170), - [sym_subsection] = STATE(170), - [sym_subsubsection] = STATE(170), - [sym_paragraph] = STATE(170), - [sym_subparagraph] = STATE(170), - [sym_enum_item] = STATE(170), - [sym_brace_group] = STATE(170), - [sym_mixed_group] = STATE(170), - [sym_text] = STATE(170), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(170), - [sym_inline_formula] = STATE(170), - [sym_begin] = STATE(59), - [sym_environment] = STATE(170), - [sym_caption] = STATE(170), - [sym_citation] = STATE(170), - [sym_package_include] = STATE(170), - [sym_class_include] = STATE(170), - [sym_latex_include] = STATE(170), - [sym_latex_input] = STATE(170), - [sym_biblatex_include] = STATE(170), - [sym_bibtex_include] = STATE(170), - [sym_graphics_include] = STATE(170), - [sym_svg_include] = STATE(170), - [sym_inkscape_include] = STATE(170), - [sym_verbatim_include] = STATE(170), - [sym_import] = STATE(170), - [sym_label_definition] = STATE(170), - [sym_label_reference] = STATE(170), - [sym_equation_label_reference] = STATE(170), - [sym_label_reference_range] = STATE(170), - [sym_label_number] = STATE(170), - [sym_command_definition] = STATE(170), - [sym_math_operator] = STATE(170), - [sym_glossary_entry_definition] = STATE(170), - [sym_glossary_entry_reference] = STATE(170), - [sym_acronym_definition] = STATE(170), - [sym_acronym_reference] = STATE(170), - [sym_theorem_definition] = STATE(170), - [sym_color_reference] = STATE(170), - [sym_color_definition] = STATE(170), - [sym_color_set_definition] = STATE(170), - [sym_pgf_library_import] = STATE(170), - [sym_tikz_library_import] = STATE(170), - [sym_generic_command] = STATE(170), - [aux_sym_document_repeat1] = STATE(170), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1098), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1100), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(852), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [148] = { - [sym__simple_content] = STATE(114), - [sym__content] = STATE(114), - [sym_part] = STATE(114), - [sym_chapter] = STATE(114), - [sym_section] = STATE(114), - [sym_subsection] = STATE(114), - [sym_subsubsection] = STATE(114), - [sym_paragraph] = STATE(114), - [sym_subparagraph] = STATE(114), - [sym_enum_item] = STATE(114), - [sym_brace_group] = STATE(114), - [sym_mixed_group] = STATE(114), - [sym_text] = STATE(114), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(114), - [sym_inline_formula] = STATE(114), - [sym_begin] = STATE(66), - [sym_environment] = STATE(114), - [sym_caption] = STATE(114), - [sym_citation] = STATE(114), - [sym_package_include] = STATE(114), - [sym_class_include] = STATE(114), - [sym_latex_include] = STATE(114), - [sym_latex_input] = STATE(114), - [sym_biblatex_include] = STATE(114), - [sym_bibtex_include] = STATE(114), - [sym_graphics_include] = STATE(114), - [sym_svg_include] = STATE(114), - [sym_inkscape_include] = STATE(114), - [sym_verbatim_include] = STATE(114), - [sym_import] = STATE(114), - [sym_label_definition] = STATE(114), - [sym_label_reference] = STATE(114), - [sym_equation_label_reference] = STATE(114), - [sym_label_reference_range] = STATE(114), - [sym_label_number] = STATE(114), - [sym_command_definition] = STATE(114), - [sym_math_operator] = STATE(114), - [sym_glossary_entry_definition] = STATE(114), - [sym_glossary_entry_reference] = STATE(114), - [sym_acronym_definition] = STATE(114), - [sym_acronym_reference] = STATE(114), - [sym_theorem_definition] = STATE(114), - [sym_color_reference] = STATE(114), - [sym_color_definition] = STATE(114), - [sym_color_set_definition] = STATE(114), - [sym_pgf_library_import] = STATE(114), - [sym_tikz_library_import] = STATE(114), - [sym_generic_command] = STATE(114), - [aux_sym_document_repeat1] = STATE(114), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(1102), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1104), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1106), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [149] = { - [sym__simple_content] = STATE(124), - [sym__content] = STATE(124), - [sym_part] = STATE(124), - [sym_chapter] = STATE(124), - [sym_section] = STATE(124), - [sym_subsection] = STATE(124), - [sym_subsubsection] = STATE(124), - [sym_paragraph] = STATE(124), - [sym_subparagraph] = STATE(124), - [sym_enum_item] = STATE(124), - [sym_brace_group] = STATE(124), - [sym_mixed_group] = STATE(124), - [sym_text] = STATE(124), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(124), - [sym_inline_formula] = STATE(124), - [sym_begin] = STATE(59), - [sym_environment] = STATE(124), - [sym_caption] = STATE(124), - [sym_citation] = STATE(124), - [sym_package_include] = STATE(124), - [sym_class_include] = STATE(124), - [sym_latex_include] = STATE(124), - [sym_latex_input] = STATE(124), - [sym_biblatex_include] = STATE(124), - [sym_bibtex_include] = STATE(124), - [sym_graphics_include] = STATE(124), - [sym_svg_include] = STATE(124), - [sym_inkscape_include] = STATE(124), - [sym_verbatim_include] = STATE(124), - [sym_import] = STATE(124), - [sym_label_definition] = STATE(124), - [sym_label_reference] = STATE(124), - [sym_equation_label_reference] = STATE(124), - [sym_label_reference_range] = STATE(124), - [sym_label_number] = STATE(124), - [sym_command_definition] = STATE(124), - [sym_math_operator] = STATE(124), - [sym_glossary_entry_definition] = STATE(124), - [sym_glossary_entry_reference] = STATE(124), - [sym_acronym_definition] = STATE(124), - [sym_acronym_reference] = STATE(124), - [sym_theorem_definition] = STATE(124), - [sym_color_reference] = STATE(124), - [sym_color_definition] = STATE(124), - [sym_color_set_definition] = STATE(124), - [sym_pgf_library_import] = STATE(124), - [sym_tikz_library_import] = STATE(124), - [sym_generic_command] = STATE(124), - [aux_sym_document_repeat1] = STATE(124), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1108), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1110), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1112), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [150] = { - [sym__simple_content] = STATE(125), - [sym__content] = STATE(125), - [sym_part] = STATE(125), - [sym_chapter] = STATE(125), - [sym_section] = STATE(125), - [sym_subsection] = STATE(125), - [sym_subsubsection] = STATE(125), - [sym_paragraph] = STATE(125), - [sym_subparagraph] = STATE(125), - [sym_enum_item] = STATE(125), - [sym_brace_group] = STATE(125), - [sym_mixed_group] = STATE(125), - [sym_text] = STATE(125), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(125), - [sym_inline_formula] = STATE(125), - [sym_begin] = STATE(52), - [sym_environment] = STATE(125), - [sym_caption] = STATE(125), - [sym_citation] = STATE(125), - [sym_package_include] = STATE(125), - [sym_class_include] = STATE(125), - [sym_latex_include] = STATE(125), - [sym_latex_input] = STATE(125), - [sym_biblatex_include] = STATE(125), - [sym_bibtex_include] = STATE(125), - [sym_graphics_include] = STATE(125), - [sym_svg_include] = STATE(125), - [sym_inkscape_include] = STATE(125), - [sym_verbatim_include] = STATE(125), - [sym_import] = STATE(125), - [sym_label_definition] = STATE(125), - [sym_label_reference] = STATE(125), - [sym_equation_label_reference] = STATE(125), - [sym_label_reference_range] = STATE(125), - [sym_label_number] = STATE(125), - [sym_command_definition] = STATE(125), - [sym_math_operator] = STATE(125), - [sym_glossary_entry_definition] = STATE(125), - [sym_glossary_entry_reference] = STATE(125), - [sym_acronym_definition] = STATE(125), - [sym_acronym_reference] = STATE(125), - [sym_theorem_definition] = STATE(125), - [sym_color_reference] = STATE(125), - [sym_color_definition] = STATE(125), - [sym_color_set_definition] = STATE(125), - [sym_pgf_library_import] = STATE(125), - [sym_tikz_library_import] = STATE(125), - [sym_generic_command] = STATE(125), - [aux_sym_document_repeat1] = STATE(125), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1114), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1116), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [151] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1118), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [152] = { - [sym__simple_content] = STATE(168), - [sym__content] = STATE(168), - [sym_part] = STATE(168), - [sym_chapter] = STATE(168), - [sym_section] = STATE(168), - [sym_subsection] = STATE(168), - [sym_subsubsection] = STATE(168), - [sym_paragraph] = STATE(168), - [sym_subparagraph] = STATE(168), - [sym_enum_item] = STATE(168), - [sym_brace_group] = STATE(168), - [sym_mixed_group] = STATE(168), - [sym_text] = STATE(168), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(168), - [sym_inline_formula] = STATE(168), - [sym_begin] = STATE(52), - [sym_environment] = STATE(168), - [sym_caption] = STATE(168), - [sym_citation] = STATE(168), - [sym_package_include] = STATE(168), - [sym_class_include] = STATE(168), - [sym_latex_include] = STATE(168), - [sym_latex_input] = STATE(168), - [sym_biblatex_include] = STATE(168), - [sym_bibtex_include] = STATE(168), - [sym_graphics_include] = STATE(168), - [sym_svg_include] = STATE(168), - [sym_inkscape_include] = STATE(168), - [sym_verbatim_include] = STATE(168), - [sym_import] = STATE(168), - [sym_label_definition] = STATE(168), - [sym_label_reference] = STATE(168), - [sym_equation_label_reference] = STATE(168), - [sym_label_reference_range] = STATE(168), - [sym_label_number] = STATE(168), - [sym_command_definition] = STATE(168), - [sym_math_operator] = STATE(168), - [sym_glossary_entry_definition] = STATE(168), - [sym_glossary_entry_reference] = STATE(168), - [sym_acronym_definition] = STATE(168), - [sym_acronym_reference] = STATE(168), - [sym_theorem_definition] = STATE(168), - [sym_color_reference] = STATE(168), - [sym_color_definition] = STATE(168), - [sym_color_set_definition] = STATE(168), - [sym_pgf_library_import] = STATE(168), - [sym_tikz_library_import] = STATE(168), - [sym_generic_command] = STATE(168), - [aux_sym_document_repeat1] = STATE(168), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1120), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1122), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [153] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1124), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [154] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1126), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [155] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1128), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [156] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1130), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [157] = { - [sym__simple_content] = STATE(157), - [sym__content] = STATE(157), - [sym_part] = STATE(157), - [sym_chapter] = STATE(157), - [sym_section] = STATE(157), - [sym_subsection] = STATE(157), - [sym_subsubsection] = STATE(157), - [sym_paragraph] = STATE(157), - [sym_subparagraph] = STATE(157), - [sym_enum_item] = STATE(157), - [sym_brace_group] = STATE(157), - [sym_mixed_group] = STATE(157), - [sym_text] = STATE(157), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_begin] = STATE(73), - [sym_environment] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_latex_input] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_equation_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_command_definition] = STATE(157), - [sym_math_operator] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_pgf_library_import] = STATE(157), - [sym_tikz_library_import] = STATE(157), - [sym_generic_command] = STATE(157), - [aux_sym_document_repeat1] = STATE(157), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(1132), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1135), - [aux_sym_chapter_token1] = ACTIONS(1138), - [aux_sym_section_token1] = ACTIONS(1141), - [aux_sym_subsection_token1] = ACTIONS(1144), - [aux_sym_subsubsection_token1] = ACTIONS(1147), - [aux_sym_paragraph_token1] = ACTIONS(1150), - [aux_sym_subparagraph_token1] = ACTIONS(1153), - [anon_sym_BSLASHitem] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(1162), - [anon_sym_LPAREN] = ACTIONS(1159), - [anon_sym_COMMA] = ACTIONS(1165), - [anon_sym_EQ] = ACTIONS(1165), - [sym_word] = ACTIONS(1165), - [sym_param] = ACTIONS(1168), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1171), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1171), - [anon_sym_DOLLAR] = ACTIONS(1174), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1177), - [anon_sym_BSLASHbegin] = ACTIONS(171), - [anon_sym_BSLASHend] = ACTIONS(1180), - [anon_sym_BSLASHcaption] = ACTIONS(1182), - [aux_sym_citation_token1] = ACTIONS(1185), - [aux_sym_package_include_token1] = ACTIONS(1188), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1191), - [aux_sym_latex_include_token1] = ACTIONS(1194), - [aux_sym_latex_input_token1] = ACTIONS(1197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1200), - [anon_sym_BSLASHbibliography] = ACTIONS(1203), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1206), - [anon_sym_BSLASHincludesvg] = ACTIONS(1209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1212), - [aux_sym_verbatim_include_token1] = ACTIONS(1215), - [aux_sym_import_token1] = ACTIONS(1218), - [anon_sym_BSLASHlabel] = ACTIONS(1221), - [aux_sym_label_reference_token1] = ACTIONS(1224), - [anon_sym_BSLASHeqref] = ACTIONS(1227), - [aux_sym_label_reference_range_token1] = ACTIONS(1230), - [anon_sym_BSLASHnewlabel] = ACTIONS(1233), - [aux_sym_command_definition_token1] = ACTIONS(1236), - [aux_sym_math_operator_token1] = ACTIONS(1239), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1242), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(1245), - [anon_sym_BSLASHnewacronym] = ACTIONS(1248), - [aux_sym_acronym_reference_token1] = ACTIONS(1251), - [aux_sym_theorem_definition_token1] = ACTIONS(1254), - [aux_sym_color_reference_token1] = ACTIONS(1257), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1260), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1263), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1266), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1269), - }, - [158] = { - [sym__simple_content] = STATE(203), - [sym__content] = STATE(203), - [sym_part] = STATE(203), - [sym_chapter] = STATE(203), - [sym_section] = STATE(203), - [sym_subsection] = STATE(203), - [sym_subsubsection] = STATE(203), - [sym_paragraph] = STATE(203), - [sym_subparagraph] = STATE(203), - [sym_enum_item] = STATE(203), - [sym_brace_group] = STATE(203), - [sym_mixed_group] = STATE(203), - [sym_text] = STATE(203), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(203), - [sym_inline_formula] = STATE(203), - [sym_begin] = STATE(59), - [sym_environment] = STATE(203), - [sym_caption] = STATE(203), - [sym_citation] = STATE(203), - [sym_package_include] = STATE(203), - [sym_class_include] = STATE(203), - [sym_latex_include] = STATE(203), - [sym_latex_input] = STATE(203), - [sym_biblatex_include] = STATE(203), - [sym_bibtex_include] = STATE(203), - [sym_graphics_include] = STATE(203), - [sym_svg_include] = STATE(203), - [sym_inkscape_include] = STATE(203), - [sym_verbatim_include] = STATE(203), - [sym_import] = STATE(203), - [sym_label_definition] = STATE(203), - [sym_label_reference] = STATE(203), - [sym_equation_label_reference] = STATE(203), - [sym_label_reference_range] = STATE(203), - [sym_label_number] = STATE(203), - [sym_command_definition] = STATE(203), - [sym_math_operator] = STATE(203), - [sym_glossary_entry_definition] = STATE(203), - [sym_glossary_entry_reference] = STATE(203), - [sym_acronym_definition] = STATE(203), - [sym_acronym_reference] = STATE(203), - [sym_theorem_definition] = STATE(203), - [sym_color_reference] = STATE(203), - [sym_color_definition] = STATE(203), - [sym_color_set_definition] = STATE(203), - [sym_pgf_library_import] = STATE(203), - [sym_tikz_library_import] = STATE(203), - [sym_generic_command] = STATE(203), - [aux_sym_document_repeat1] = STATE(203), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1272), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1274), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [159] = { - [sym__simple_content] = STATE(153), - [sym__content] = STATE(153), - [sym_part] = STATE(153), - [sym_chapter] = STATE(153), - [sym_section] = STATE(153), - [sym_subsection] = STATE(153), - [sym_subsubsection] = STATE(153), - [sym_paragraph] = STATE(153), - [sym_subparagraph] = STATE(153), - [sym_enum_item] = STATE(153), - [sym_brace_group] = STATE(153), - [sym_mixed_group] = STATE(153), - [sym_text] = STATE(153), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(153), - [sym_inline_formula] = STATE(153), - [sym_begin] = STATE(52), - [sym_environment] = STATE(153), - [sym_caption] = STATE(153), - [sym_citation] = STATE(153), - [sym_package_include] = STATE(153), - [sym_class_include] = STATE(153), - [sym_latex_include] = STATE(153), - [sym_latex_input] = STATE(153), - [sym_biblatex_include] = STATE(153), - [sym_bibtex_include] = STATE(153), - [sym_graphics_include] = STATE(153), - [sym_svg_include] = STATE(153), - [sym_inkscape_include] = STATE(153), - [sym_verbatim_include] = STATE(153), - [sym_import] = STATE(153), - [sym_label_definition] = STATE(153), - [sym_label_reference] = STATE(153), - [sym_equation_label_reference] = STATE(153), - [sym_label_reference_range] = STATE(153), - [sym_label_number] = STATE(153), - [sym_command_definition] = STATE(153), - [sym_math_operator] = STATE(153), - [sym_glossary_entry_definition] = STATE(153), - [sym_glossary_entry_reference] = STATE(153), - [sym_acronym_definition] = STATE(153), - [sym_acronym_reference] = STATE(153), - [sym_theorem_definition] = STATE(153), - [sym_color_reference] = STATE(153), - [sym_color_definition] = STATE(153), - [sym_color_set_definition] = STATE(153), - [sym_pgf_library_import] = STATE(153), - [sym_tikz_library_import] = STATE(153), - [sym_generic_command] = STATE(153), - [aux_sym_document_repeat1] = STATE(153), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1278), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1280), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [160] = { - [sym__simple_content] = STATE(145), - [sym__content] = STATE(145), - [sym_part] = STATE(145), - [sym_chapter] = STATE(145), - [sym_section] = STATE(145), - [sym_subsection] = STATE(145), - [sym_subsubsection] = STATE(145), - [sym_paragraph] = STATE(145), - [sym_subparagraph] = STATE(145), - [sym_enum_item] = STATE(145), - [sym_brace_group] = STATE(145), - [sym_mixed_group] = STATE(145), - [sym_text] = STATE(145), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(145), - [sym_inline_formula] = STATE(145), - [sym_begin] = STATE(66), - [sym_environment] = STATE(145), - [sym_caption] = STATE(145), - [sym_citation] = STATE(145), - [sym_package_include] = STATE(145), - [sym_class_include] = STATE(145), - [sym_latex_include] = STATE(145), - [sym_latex_input] = STATE(145), - [sym_biblatex_include] = STATE(145), - [sym_bibtex_include] = STATE(145), - [sym_graphics_include] = STATE(145), - [sym_svg_include] = STATE(145), - [sym_inkscape_include] = STATE(145), - [sym_verbatim_include] = STATE(145), - [sym_import] = STATE(145), - [sym_label_definition] = STATE(145), - [sym_label_reference] = STATE(145), - [sym_equation_label_reference] = STATE(145), - [sym_label_reference_range] = STATE(145), - [sym_label_number] = STATE(145), - [sym_command_definition] = STATE(145), - [sym_math_operator] = STATE(145), - [sym_glossary_entry_definition] = STATE(145), - [sym_glossary_entry_reference] = STATE(145), - [sym_acronym_definition] = STATE(145), - [sym_acronym_reference] = STATE(145), - [sym_theorem_definition] = STATE(145), - [sym_color_reference] = STATE(145), - [sym_color_definition] = STATE(145), - [sym_color_set_definition] = STATE(145), - [sym_pgf_library_import] = STATE(145), - [sym_tikz_library_import] = STATE(145), - [sym_generic_command] = STATE(145), - [aux_sym_document_repeat1] = STATE(145), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(1282), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1284), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1286), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [161] = { - [sym__simple_content] = STATE(155), - [sym__content] = STATE(155), - [sym_part] = STATE(155), - [sym_chapter] = STATE(155), - [sym_section] = STATE(155), - [sym_subsection] = STATE(155), - [sym_subsubsection] = STATE(155), - [sym_paragraph] = STATE(155), - [sym_subparagraph] = STATE(155), - [sym_enum_item] = STATE(155), - [sym_brace_group] = STATE(155), - [sym_mixed_group] = STATE(155), - [sym_text] = STATE(155), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(155), - [sym_inline_formula] = STATE(155), - [sym_begin] = STATE(52), - [sym_environment] = STATE(155), - [sym_caption] = STATE(155), - [sym_citation] = STATE(155), - [sym_package_include] = STATE(155), - [sym_class_include] = STATE(155), - [sym_latex_include] = STATE(155), - [sym_latex_input] = STATE(155), - [sym_biblatex_include] = STATE(155), - [sym_bibtex_include] = STATE(155), - [sym_graphics_include] = STATE(155), - [sym_svg_include] = STATE(155), - [sym_inkscape_include] = STATE(155), - [sym_verbatim_include] = STATE(155), - [sym_import] = STATE(155), - [sym_label_definition] = STATE(155), - [sym_label_reference] = STATE(155), - [sym_equation_label_reference] = STATE(155), - [sym_label_reference_range] = STATE(155), - [sym_label_number] = STATE(155), - [sym_command_definition] = STATE(155), - [sym_math_operator] = STATE(155), - [sym_glossary_entry_definition] = STATE(155), - [sym_glossary_entry_reference] = STATE(155), - [sym_acronym_definition] = STATE(155), - [sym_acronym_reference] = STATE(155), - [sym_theorem_definition] = STATE(155), - [sym_color_reference] = STATE(155), - [sym_color_definition] = STATE(155), - [sym_color_set_definition] = STATE(155), - [sym_pgf_library_import] = STATE(155), - [sym_tikz_library_import] = STATE(155), - [sym_generic_command] = STATE(155), - [aux_sym_document_repeat1] = STATE(155), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1290), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [162] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1292), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1294), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [163] = { - [sym__simple_content] = STATE(172), - [sym__content] = STATE(172), - [sym_part] = STATE(172), - [sym_chapter] = STATE(172), - [sym_section] = STATE(172), - [sym_subsection] = STATE(172), - [sym_subsubsection] = STATE(172), - [sym_paragraph] = STATE(172), - [sym_subparagraph] = STATE(172), - [sym_enum_item] = STATE(172), - [sym_brace_group] = STATE(172), - [sym_mixed_group] = STATE(172), - [sym_text] = STATE(172), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(172), - [sym_inline_formula] = STATE(172), - [sym_begin] = STATE(52), - [sym_environment] = STATE(172), - [sym_caption] = STATE(172), - [sym_citation] = STATE(172), - [sym_package_include] = STATE(172), - [sym_class_include] = STATE(172), - [sym_latex_include] = STATE(172), - [sym_latex_input] = STATE(172), - [sym_biblatex_include] = STATE(172), - [sym_bibtex_include] = STATE(172), - [sym_graphics_include] = STATE(172), - [sym_svg_include] = STATE(172), - [sym_inkscape_include] = STATE(172), - [sym_verbatim_include] = STATE(172), - [sym_import] = STATE(172), - [sym_label_definition] = STATE(172), - [sym_label_reference] = STATE(172), - [sym_equation_label_reference] = STATE(172), - [sym_label_reference_range] = STATE(172), - [sym_label_number] = STATE(172), - [sym_command_definition] = STATE(172), - [sym_math_operator] = STATE(172), - [sym_glossary_entry_definition] = STATE(172), - [sym_glossary_entry_reference] = STATE(172), - [sym_acronym_definition] = STATE(172), - [sym_acronym_reference] = STATE(172), - [sym_theorem_definition] = STATE(172), - [sym_color_reference] = STATE(172), - [sym_color_definition] = STATE(172), - [sym_color_set_definition] = STATE(172), - [sym_pgf_library_import] = STATE(172), - [sym_tikz_library_import] = STATE(172), - [sym_generic_command] = STATE(172), - [aux_sym_document_repeat1] = STATE(172), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1298), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [164] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1300), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1302), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [165] = { - [sym__simple_content] = STATE(175), - [sym__content] = STATE(175), - [sym_part] = STATE(175), - [sym_chapter] = STATE(175), - [sym_section] = STATE(175), - [sym_subsection] = STATE(175), - [sym_subsubsection] = STATE(175), - [sym_paragraph] = STATE(175), - [sym_subparagraph] = STATE(175), - [sym_enum_item] = STATE(175), - [sym_brace_group] = STATE(175), - [sym_mixed_group] = STATE(175), - [sym_text] = STATE(175), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(175), - [sym_inline_formula] = STATE(175), - [sym_begin] = STATE(59), - [sym_environment] = STATE(175), - [sym_caption] = STATE(175), - [sym_citation] = STATE(175), - [sym_package_include] = STATE(175), - [sym_class_include] = STATE(175), - [sym_latex_include] = STATE(175), - [sym_latex_input] = STATE(175), - [sym_biblatex_include] = STATE(175), - [sym_bibtex_include] = STATE(175), - [sym_graphics_include] = STATE(175), - [sym_svg_include] = STATE(175), - [sym_inkscape_include] = STATE(175), - [sym_verbatim_include] = STATE(175), - [sym_import] = STATE(175), - [sym_label_definition] = STATE(175), - [sym_label_reference] = STATE(175), - [sym_equation_label_reference] = STATE(175), - [sym_label_reference_range] = STATE(175), - [sym_label_number] = STATE(175), - [sym_command_definition] = STATE(175), - [sym_math_operator] = STATE(175), - [sym_glossary_entry_definition] = STATE(175), - [sym_glossary_entry_reference] = STATE(175), - [sym_acronym_definition] = STATE(175), - [sym_acronym_reference] = STATE(175), - [sym_theorem_definition] = STATE(175), - [sym_color_reference] = STATE(175), - [sym_color_definition] = STATE(175), - [sym_color_set_definition] = STATE(175), - [sym_pgf_library_import] = STATE(175), - [sym_tikz_library_import] = STATE(175), - [sym_generic_command] = STATE(175), - [aux_sym_document_repeat1] = STATE(175), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1304), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1306), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [166] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1310), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [167] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(382), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(386), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(111), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [168] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [169] = { - [sym__simple_content] = STATE(209), - [sym__content] = STATE(209), - [sym_part] = STATE(209), - [sym_chapter] = STATE(209), - [sym_section] = STATE(209), - [sym_subsection] = STATE(209), - [sym_subsubsection] = STATE(209), - [sym_paragraph] = STATE(209), - [sym_subparagraph] = STATE(209), - [sym_enum_item] = STATE(209), - [sym_brace_group] = STATE(209), - [sym_mixed_group] = STATE(209), - [sym_text] = STATE(209), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(209), - [sym_inline_formula] = STATE(209), - [sym_begin] = STATE(52), - [sym_environment] = STATE(209), - [sym_caption] = STATE(209), - [sym_citation] = STATE(209), - [sym_package_include] = STATE(209), - [sym_class_include] = STATE(209), - [sym_latex_include] = STATE(209), - [sym_latex_input] = STATE(209), - [sym_biblatex_include] = STATE(209), - [sym_bibtex_include] = STATE(209), - [sym_graphics_include] = STATE(209), - [sym_svg_include] = STATE(209), - [sym_inkscape_include] = STATE(209), - [sym_verbatim_include] = STATE(209), - [sym_import] = STATE(209), - [sym_label_definition] = STATE(209), - [sym_label_reference] = STATE(209), - [sym_equation_label_reference] = STATE(209), - [sym_label_reference_range] = STATE(209), - [sym_label_number] = STATE(209), - [sym_command_definition] = STATE(209), - [sym_math_operator] = STATE(209), - [sym_glossary_entry_definition] = STATE(209), - [sym_glossary_entry_reference] = STATE(209), - [sym_acronym_definition] = STATE(209), - [sym_acronym_reference] = STATE(209), - [sym_theorem_definition] = STATE(209), - [sym_color_reference] = STATE(209), - [sym_color_definition] = STATE(209), - [sym_color_set_definition] = STATE(209), - [sym_pgf_library_import] = STATE(209), - [sym_tikz_library_import] = STATE(209), - [sym_generic_command] = STATE(209), - [aux_sym_document_repeat1] = STATE(209), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1316), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [170] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1318), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [171] = { - [sym__simple_content] = STATE(162), - [sym__content] = STATE(162), - [sym_part] = STATE(162), - [sym_chapter] = STATE(162), - [sym_section] = STATE(162), - [sym_subsection] = STATE(162), - [sym_subsubsection] = STATE(162), - [sym_paragraph] = STATE(162), - [sym_subparagraph] = STATE(162), - [sym_enum_item] = STATE(162), - [sym_brace_group] = STATE(162), - [sym_mixed_group] = STATE(162), - [sym_text] = STATE(162), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(162), - [sym_inline_formula] = STATE(162), - [sym_begin] = STATE(66), - [sym_environment] = STATE(162), - [sym_caption] = STATE(162), - [sym_citation] = STATE(162), - [sym_package_include] = STATE(162), - [sym_class_include] = STATE(162), - [sym_latex_include] = STATE(162), - [sym_latex_input] = STATE(162), - [sym_biblatex_include] = STATE(162), - [sym_bibtex_include] = STATE(162), - [sym_graphics_include] = STATE(162), - [sym_svg_include] = STATE(162), - [sym_inkscape_include] = STATE(162), - [sym_verbatim_include] = STATE(162), - [sym_import] = STATE(162), - [sym_label_definition] = STATE(162), - [sym_label_reference] = STATE(162), - [sym_equation_label_reference] = STATE(162), - [sym_label_reference_range] = STATE(162), - [sym_label_number] = STATE(162), - [sym_command_definition] = STATE(162), - [sym_math_operator] = STATE(162), - [sym_glossary_entry_definition] = STATE(162), - [sym_glossary_entry_reference] = STATE(162), - [sym_acronym_definition] = STATE(162), - [sym_acronym_reference] = STATE(162), - [sym_theorem_definition] = STATE(162), - [sym_color_reference] = STATE(162), - [sym_color_definition] = STATE(162), - [sym_color_set_definition] = STATE(162), - [sym_pgf_library_import] = STATE(162), - [sym_tikz_library_import] = STATE(162), - [sym_generic_command] = STATE(162), - [aux_sym_document_repeat1] = STATE(162), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(1322), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1324), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1326), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [172] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [173] = { - [sym__simple_content] = STATE(164), - [sym__content] = STATE(164), - [sym_part] = STATE(164), - [sym_chapter] = STATE(164), - [sym_section] = STATE(164), - [sym_subsection] = STATE(164), - [sym_subsubsection] = STATE(164), - [sym_paragraph] = STATE(164), - [sym_subparagraph] = STATE(164), - [sym_enum_item] = STATE(164), - [sym_brace_group] = STATE(164), - [sym_mixed_group] = STATE(164), - [sym_text] = STATE(164), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(164), - [sym_inline_formula] = STATE(164), - [sym_begin] = STATE(59), - [sym_environment] = STATE(164), - [sym_caption] = STATE(164), - [sym_citation] = STATE(164), - [sym_package_include] = STATE(164), - [sym_class_include] = STATE(164), - [sym_latex_include] = STATE(164), - [sym_latex_input] = STATE(164), - [sym_biblatex_include] = STATE(164), - [sym_bibtex_include] = STATE(164), - [sym_graphics_include] = STATE(164), - [sym_svg_include] = STATE(164), - [sym_inkscape_include] = STATE(164), - [sym_verbatim_include] = STATE(164), - [sym_import] = STATE(164), - [sym_label_definition] = STATE(164), - [sym_label_reference] = STATE(164), - [sym_equation_label_reference] = STATE(164), - [sym_label_reference_range] = STATE(164), - [sym_label_number] = STATE(164), - [sym_command_definition] = STATE(164), - [sym_math_operator] = STATE(164), - [sym_glossary_entry_definition] = STATE(164), - [sym_glossary_entry_reference] = STATE(164), - [sym_acronym_definition] = STATE(164), - [sym_acronym_reference] = STATE(164), - [sym_theorem_definition] = STATE(164), - [sym_color_reference] = STATE(164), - [sym_color_definition] = STATE(164), - [sym_color_set_definition] = STATE(164), - [sym_pgf_library_import] = STATE(164), - [sym_tikz_library_import] = STATE(164), - [sym_generic_command] = STATE(164), - [aux_sym_document_repeat1] = STATE(164), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1330), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1332), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [174] = { - [sym__simple_content] = STATE(166), - [sym__content] = STATE(166), - [sym_part] = STATE(166), - [sym_chapter] = STATE(166), - [sym_section] = STATE(166), - [sym_subsection] = STATE(166), - [sym_subsubsection] = STATE(166), - [sym_paragraph] = STATE(166), - [sym_subparagraph] = STATE(166), - [sym_enum_item] = STATE(166), - [sym_brace_group] = STATE(166), - [sym_mixed_group] = STATE(166), - [sym_text] = STATE(166), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(166), - [sym_inline_formula] = STATE(166), - [sym_begin] = STATE(52), - [sym_environment] = STATE(166), - [sym_caption] = STATE(166), - [sym_citation] = STATE(166), - [sym_package_include] = STATE(166), - [sym_class_include] = STATE(166), - [sym_latex_include] = STATE(166), - [sym_latex_input] = STATE(166), - [sym_biblatex_include] = STATE(166), - [sym_bibtex_include] = STATE(166), - [sym_graphics_include] = STATE(166), - [sym_svg_include] = STATE(166), - [sym_inkscape_include] = STATE(166), - [sym_verbatim_include] = STATE(166), - [sym_import] = STATE(166), - [sym_label_definition] = STATE(166), - [sym_label_reference] = STATE(166), - [sym_equation_label_reference] = STATE(166), - [sym_label_reference_range] = STATE(166), - [sym_label_number] = STATE(166), - [sym_command_definition] = STATE(166), - [sym_math_operator] = STATE(166), - [sym_glossary_entry_definition] = STATE(166), - [sym_glossary_entry_reference] = STATE(166), - [sym_acronym_definition] = STATE(166), - [sym_acronym_reference] = STATE(166), - [sym_theorem_definition] = STATE(166), - [sym_color_reference] = STATE(166), - [sym_color_definition] = STATE(166), - [sym_color_set_definition] = STATE(166), - [sym_pgf_library_import] = STATE(166), - [sym_tikz_library_import] = STATE(166), - [sym_generic_command] = STATE(166), - [aux_sym_document_repeat1] = STATE(166), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1338), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [175] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1340), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [176] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1344), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1346), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [177] = { - [sym__simple_content] = STATE(190), - [sym__content] = STATE(190), - [sym_part] = STATE(190), - [sym_chapter] = STATE(190), - [sym_section] = STATE(190), - [sym_subsection] = STATE(190), - [sym_subsubsection] = STATE(190), - [sym_paragraph] = STATE(190), - [sym_subparagraph] = STATE(190), - [sym_enum_item] = STATE(190), - [sym_brace_group] = STATE(190), - [sym_mixed_group] = STATE(190), - [sym_text] = STATE(190), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(190), - [sym_inline_formula] = STATE(190), - [sym_begin] = STATE(52), - [sym_environment] = STATE(190), - [sym_caption] = STATE(190), - [sym_citation] = STATE(190), - [sym_package_include] = STATE(190), - [sym_class_include] = STATE(190), - [sym_latex_include] = STATE(190), - [sym_latex_input] = STATE(190), - [sym_biblatex_include] = STATE(190), - [sym_bibtex_include] = STATE(190), - [sym_graphics_include] = STATE(190), - [sym_svg_include] = STATE(190), - [sym_inkscape_include] = STATE(190), - [sym_verbatim_include] = STATE(190), - [sym_import] = STATE(190), - [sym_label_definition] = STATE(190), - [sym_label_reference] = STATE(190), - [sym_equation_label_reference] = STATE(190), - [sym_label_reference_range] = STATE(190), - [sym_label_number] = STATE(190), - [sym_command_definition] = STATE(190), - [sym_math_operator] = STATE(190), - [sym_glossary_entry_definition] = STATE(190), - [sym_glossary_entry_reference] = STATE(190), - [sym_acronym_definition] = STATE(190), - [sym_acronym_reference] = STATE(190), - [sym_theorem_definition] = STATE(190), - [sym_color_reference] = STATE(190), - [sym_color_definition] = STATE(190), - [sym_color_set_definition] = STATE(190), - [sym_pgf_library_import] = STATE(190), - [sym_tikz_library_import] = STATE(190), - [sym_generic_command] = STATE(190), - [aux_sym_document_repeat1] = STATE(190), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1348), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1350), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [178] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [179] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [180] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1356), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [181] = { - [sym__simple_content] = STATE(194), - [sym__content] = STATE(194), - [sym_part] = STATE(194), - [sym_chapter] = STATE(194), - [sym_section] = STATE(194), - [sym_subsection] = STATE(194), - [sym_subsubsection] = STATE(194), - [sym_paragraph] = STATE(194), - [sym_subparagraph] = STATE(194), - [sym_enum_item] = STATE(194), - [sym_brace_group] = STATE(194), - [sym_mixed_group] = STATE(194), - [sym_text] = STATE(194), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(194), - [sym_inline_formula] = STATE(194), - [sym_begin] = STATE(66), - [sym_environment] = STATE(194), - [sym_caption] = STATE(194), - [sym_citation] = STATE(194), - [sym_package_include] = STATE(194), - [sym_class_include] = STATE(194), - [sym_latex_include] = STATE(194), - [sym_latex_input] = STATE(194), - [sym_biblatex_include] = STATE(194), - [sym_bibtex_include] = STATE(194), - [sym_graphics_include] = STATE(194), - [sym_svg_include] = STATE(194), - [sym_inkscape_include] = STATE(194), - [sym_verbatim_include] = STATE(194), - [sym_import] = STATE(194), - [sym_label_definition] = STATE(194), - [sym_label_reference] = STATE(194), - [sym_equation_label_reference] = STATE(194), - [sym_label_reference_range] = STATE(194), - [sym_label_number] = STATE(194), - [sym_command_definition] = STATE(194), - [sym_math_operator] = STATE(194), - [sym_glossary_entry_definition] = STATE(194), - [sym_glossary_entry_reference] = STATE(194), - [sym_acronym_definition] = STATE(194), - [sym_acronym_reference] = STATE(194), - [sym_theorem_definition] = STATE(194), - [sym_color_reference] = STATE(194), - [sym_color_definition] = STATE(194), - [sym_color_set_definition] = STATE(194), - [sym_pgf_library_import] = STATE(194), - [sym_tikz_library_import] = STATE(194), - [sym_generic_command] = STATE(194), - [aux_sym_document_repeat1] = STATE(194), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(1358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1360), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1362), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [182] = { - [sym__simple_content] = STATE(178), - [sym__content] = STATE(178), - [sym_part] = STATE(178), - [sym_chapter] = STATE(178), - [sym_section] = STATE(178), - [sym_subsection] = STATE(178), - [sym_subsubsection] = STATE(178), - [sym_paragraph] = STATE(178), - [sym_subparagraph] = STATE(178), - [sym_enum_item] = STATE(178), - [sym_brace_group] = STATE(178), - [sym_mixed_group] = STATE(178), - [sym_text] = STATE(178), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(178), - [sym_inline_formula] = STATE(178), - [sym_begin] = STATE(52), - [sym_environment] = STATE(178), - [sym_caption] = STATE(178), - [sym_citation] = STATE(178), - [sym_package_include] = STATE(178), - [sym_class_include] = STATE(178), - [sym_latex_include] = STATE(178), - [sym_latex_input] = STATE(178), - [sym_biblatex_include] = STATE(178), - [sym_bibtex_include] = STATE(178), - [sym_graphics_include] = STATE(178), - [sym_svg_include] = STATE(178), - [sym_inkscape_include] = STATE(178), - [sym_verbatim_include] = STATE(178), - [sym_import] = STATE(178), - [sym_label_definition] = STATE(178), - [sym_label_reference] = STATE(178), - [sym_equation_label_reference] = STATE(178), - [sym_label_reference_range] = STATE(178), - [sym_label_number] = STATE(178), - [sym_command_definition] = STATE(178), - [sym_math_operator] = STATE(178), - [sym_glossary_entry_definition] = STATE(178), - [sym_glossary_entry_reference] = STATE(178), - [sym_acronym_definition] = STATE(178), - [sym_acronym_reference] = STATE(178), - [sym_theorem_definition] = STATE(178), - [sym_color_reference] = STATE(178), - [sym_color_definition] = STATE(178), - [sym_color_set_definition] = STATE(178), - [sym_pgf_library_import] = STATE(178), - [sym_tikz_library_import] = STATE(178), - [sym_generic_command] = STATE(178), - [aux_sym_document_repeat1] = STATE(178), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1364), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1366), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [183] = { - [sym__simple_content] = STATE(179), - [sym__content] = STATE(179), - [sym_part] = STATE(179), - [sym_chapter] = STATE(179), - [sym_section] = STATE(179), - [sym_subsection] = STATE(179), - [sym_subsubsection] = STATE(179), - [sym_paragraph] = STATE(179), - [sym_subparagraph] = STATE(179), - [sym_enum_item] = STATE(179), - [sym_brace_group] = STATE(179), - [sym_mixed_group] = STATE(179), - [sym_text] = STATE(179), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(179), - [sym_inline_formula] = STATE(179), - [sym_begin] = STATE(52), - [sym_environment] = STATE(179), - [sym_caption] = STATE(179), - [sym_citation] = STATE(179), - [sym_package_include] = STATE(179), - [sym_class_include] = STATE(179), - [sym_latex_include] = STATE(179), - [sym_latex_input] = STATE(179), - [sym_biblatex_include] = STATE(179), - [sym_bibtex_include] = STATE(179), - [sym_graphics_include] = STATE(179), - [sym_svg_include] = STATE(179), - [sym_inkscape_include] = STATE(179), - [sym_verbatim_include] = STATE(179), - [sym_import] = STATE(179), - [sym_label_definition] = STATE(179), - [sym_label_reference] = STATE(179), - [sym_equation_label_reference] = STATE(179), - [sym_label_reference_range] = STATE(179), - [sym_label_number] = STATE(179), - [sym_command_definition] = STATE(179), - [sym_math_operator] = STATE(179), - [sym_glossary_entry_definition] = STATE(179), - [sym_glossary_entry_reference] = STATE(179), - [sym_acronym_definition] = STATE(179), - [sym_acronym_reference] = STATE(179), - [sym_theorem_definition] = STATE(179), - [sym_color_reference] = STATE(179), - [sym_color_definition] = STATE(179), - [sym_color_set_definition] = STATE(179), - [sym_pgf_library_import] = STATE(179), - [sym_tikz_library_import] = STATE(179), - [sym_generic_command] = STATE(179), - [aux_sym_document_repeat1] = STATE(179), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1370), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [184] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1372), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1374), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [185] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1376), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1378), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [186] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [187] = { - [sym__simple_content] = STATE(195), - [sym__content] = STATE(195), - [sym_part] = STATE(195), - [sym_chapter] = STATE(195), - [sym_section] = STATE(195), - [sym_subsection] = STATE(195), - [sym_subsubsection] = STATE(195), - [sym_paragraph] = STATE(195), - [sym_subparagraph] = STATE(195), - [sym_enum_item] = STATE(195), - [sym_brace_group] = STATE(195), - [sym_mixed_group] = STATE(195), - [sym_text] = STATE(195), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(195), - [sym_inline_formula] = STATE(195), - [sym_begin] = STATE(52), - [sym_environment] = STATE(195), - [sym_caption] = STATE(195), - [sym_citation] = STATE(195), - [sym_package_include] = STATE(195), - [sym_class_include] = STATE(195), - [sym_latex_include] = STATE(195), - [sym_latex_input] = STATE(195), - [sym_biblatex_include] = STATE(195), - [sym_bibtex_include] = STATE(195), - [sym_graphics_include] = STATE(195), - [sym_svg_include] = STATE(195), - [sym_inkscape_include] = STATE(195), - [sym_verbatim_include] = STATE(195), - [sym_import] = STATE(195), - [sym_label_definition] = STATE(195), - [sym_label_reference] = STATE(195), - [sym_equation_label_reference] = STATE(195), - [sym_label_reference_range] = STATE(195), - [sym_label_number] = STATE(195), - [sym_command_definition] = STATE(195), - [sym_math_operator] = STATE(195), - [sym_glossary_entry_definition] = STATE(195), - [sym_glossary_entry_reference] = STATE(195), - [sym_acronym_definition] = STATE(195), - [sym_acronym_reference] = STATE(195), - [sym_theorem_definition] = STATE(195), - [sym_color_reference] = STATE(195), - [sym_color_definition] = STATE(195), - [sym_color_set_definition] = STATE(195), - [sym_pgf_library_import] = STATE(195), - [sym_tikz_library_import] = STATE(195), - [sym_generic_command] = STATE(195), - [aux_sym_document_repeat1] = STATE(195), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1384), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [188] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [189] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1388), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1390), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [190] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [191] = { - [sym__simple_content] = STATE(184), - [sym__content] = STATE(184), - [sym_part] = STATE(184), - [sym_chapter] = STATE(184), - [sym_section] = STATE(184), - [sym_subsection] = STATE(184), - [sym_subsubsection] = STATE(184), - [sym_paragraph] = STATE(184), - [sym_subparagraph] = STATE(184), - [sym_enum_item] = STATE(184), - [sym_brace_group] = STATE(184), - [sym_mixed_group] = STATE(184), - [sym_text] = STATE(184), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(184), - [sym_inline_formula] = STATE(184), - [sym_begin] = STATE(66), - [sym_environment] = STATE(184), - [sym_caption] = STATE(184), - [sym_citation] = STATE(184), - [sym_package_include] = STATE(184), - [sym_class_include] = STATE(184), - [sym_latex_include] = STATE(184), - [sym_latex_input] = STATE(184), - [sym_biblatex_include] = STATE(184), - [sym_bibtex_include] = STATE(184), - [sym_graphics_include] = STATE(184), - [sym_svg_include] = STATE(184), - [sym_inkscape_include] = STATE(184), - [sym_verbatim_include] = STATE(184), - [sym_import] = STATE(184), - [sym_label_definition] = STATE(184), - [sym_label_reference] = STATE(184), - [sym_equation_label_reference] = STATE(184), - [sym_label_reference_range] = STATE(184), - [sym_label_number] = STATE(184), - [sym_command_definition] = STATE(184), - [sym_math_operator] = STATE(184), - [sym_glossary_entry_definition] = STATE(184), - [sym_glossary_entry_reference] = STATE(184), - [sym_acronym_definition] = STATE(184), - [sym_acronym_reference] = STATE(184), - [sym_theorem_definition] = STATE(184), - [sym_color_reference] = STATE(184), - [sym_color_definition] = STATE(184), - [sym_color_set_definition] = STATE(184), - [sym_pgf_library_import] = STATE(184), - [sym_tikz_library_import] = STATE(184), - [sym_generic_command] = STATE(184), - [aux_sym_document_repeat1] = STATE(184), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(1394), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1396), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1398), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [192] = { - [sym__simple_content] = STATE(185), - [sym__content] = STATE(185), - [sym_part] = STATE(185), - [sym_chapter] = STATE(185), - [sym_section] = STATE(185), - [sym_subsection] = STATE(185), - [sym_subsubsection] = STATE(185), - [sym_paragraph] = STATE(185), - [sym_subparagraph] = STATE(185), - [sym_enum_item] = STATE(185), - [sym_brace_group] = STATE(185), - [sym_mixed_group] = STATE(185), - [sym_text] = STATE(185), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(185), - [sym_inline_formula] = STATE(185), - [sym_begin] = STATE(59), - [sym_environment] = STATE(185), - [sym_caption] = STATE(185), - [sym_citation] = STATE(185), - [sym_package_include] = STATE(185), - [sym_class_include] = STATE(185), - [sym_latex_include] = STATE(185), - [sym_latex_input] = STATE(185), - [sym_biblatex_include] = STATE(185), - [sym_bibtex_include] = STATE(185), - [sym_graphics_include] = STATE(185), - [sym_svg_include] = STATE(185), - [sym_inkscape_include] = STATE(185), - [sym_verbatim_include] = STATE(185), - [sym_import] = STATE(185), - [sym_label_definition] = STATE(185), - [sym_label_reference] = STATE(185), - [sym_equation_label_reference] = STATE(185), - [sym_label_reference_range] = STATE(185), - [sym_label_number] = STATE(185), - [sym_command_definition] = STATE(185), - [sym_math_operator] = STATE(185), - [sym_glossary_entry_definition] = STATE(185), - [sym_glossary_entry_reference] = STATE(185), - [sym_acronym_definition] = STATE(185), - [sym_acronym_reference] = STATE(185), - [sym_theorem_definition] = STATE(185), - [sym_color_reference] = STATE(185), - [sym_color_definition] = STATE(185), - [sym_color_set_definition] = STATE(185), - [sym_pgf_library_import] = STATE(185), - [sym_tikz_library_import] = STATE(185), - [sym_generic_command] = STATE(185), - [aux_sym_document_repeat1] = STATE(185), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1400), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1402), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1404), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [193] = { - [sym__simple_content] = STATE(186), - [sym__content] = STATE(186), - [sym_part] = STATE(186), - [sym_chapter] = STATE(186), - [sym_section] = STATE(186), - [sym_subsection] = STATE(186), - [sym_subsubsection] = STATE(186), - [sym_paragraph] = STATE(186), - [sym_subparagraph] = STATE(186), - [sym_enum_item] = STATE(186), - [sym_brace_group] = STATE(186), - [sym_mixed_group] = STATE(186), - [sym_text] = STATE(186), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(186), - [sym_inline_formula] = STATE(186), - [sym_begin] = STATE(52), - [sym_environment] = STATE(186), - [sym_caption] = STATE(186), - [sym_citation] = STATE(186), - [sym_package_include] = STATE(186), - [sym_class_include] = STATE(186), - [sym_latex_include] = STATE(186), - [sym_latex_input] = STATE(186), - [sym_biblatex_include] = STATE(186), - [sym_bibtex_include] = STATE(186), - [sym_graphics_include] = STATE(186), - [sym_svg_include] = STATE(186), - [sym_inkscape_include] = STATE(186), - [sym_verbatim_include] = STATE(186), - [sym_import] = STATE(186), - [sym_label_definition] = STATE(186), - [sym_label_reference] = STATE(186), - [sym_equation_label_reference] = STATE(186), - [sym_label_reference_range] = STATE(186), - [sym_label_number] = STATE(186), - [sym_command_definition] = STATE(186), - [sym_math_operator] = STATE(186), - [sym_glossary_entry_definition] = STATE(186), - [sym_glossary_entry_reference] = STATE(186), - [sym_acronym_definition] = STATE(186), - [sym_acronym_reference] = STATE(186), - [sym_theorem_definition] = STATE(186), - [sym_color_reference] = STATE(186), - [sym_color_definition] = STATE(186), - [sym_color_set_definition] = STATE(186), - [sym_pgf_library_import] = STATE(186), - [sym_tikz_library_import] = STATE(186), - [sym_generic_command] = STATE(186), - [aux_sym_document_repeat1] = STATE(186), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1408), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [194] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1412), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [195] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [196] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1416), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1418), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [197] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [198] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1422), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [199] = { - [sym__simple_content] = STATE(144), - [sym__content] = STATE(144), - [sym_part] = STATE(144), - [sym_chapter] = STATE(144), - [sym_section] = STATE(144), - [sym_subsection] = STATE(144), - [sym_subsubsection] = STATE(144), - [sym_paragraph] = STATE(144), - [sym_subparagraph] = STATE(144), - [sym_enum_item] = STATE(144), - [sym_brace_group] = STATE(144), - [sym_mixed_group] = STATE(144), - [sym_text] = STATE(144), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(144), - [sym_inline_formula] = STATE(144), - [sym_begin] = STATE(52), - [sym_environment] = STATE(144), - [sym_caption] = STATE(144), - [sym_citation] = STATE(144), - [sym_package_include] = STATE(144), - [sym_class_include] = STATE(144), - [sym_latex_include] = STATE(144), - [sym_latex_input] = STATE(144), - [sym_biblatex_include] = STATE(144), - [sym_bibtex_include] = STATE(144), - [sym_graphics_include] = STATE(144), - [sym_svg_include] = STATE(144), - [sym_inkscape_include] = STATE(144), - [sym_verbatim_include] = STATE(144), - [sym_import] = STATE(144), - [sym_label_definition] = STATE(144), - [sym_label_reference] = STATE(144), - [sym_equation_label_reference] = STATE(144), - [sym_label_reference_range] = STATE(144), - [sym_label_number] = STATE(144), - [sym_command_definition] = STATE(144), - [sym_math_operator] = STATE(144), - [sym_glossary_entry_definition] = STATE(144), - [sym_glossary_entry_reference] = STATE(144), - [sym_acronym_definition] = STATE(144), - [sym_acronym_reference] = STATE(144), - [sym_theorem_definition] = STATE(144), - [sym_color_reference] = STATE(144), - [sym_color_definition] = STATE(144), - [sym_color_set_definition] = STATE(144), - [sym_pgf_library_import] = STATE(144), - [sym_tikz_library_import] = STATE(144), - [sym_generic_command] = STATE(144), - [aux_sym_document_repeat1] = STATE(144), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1426), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [200] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [201] = { - [sym__simple_content] = STATE(213), - [sym__content] = STATE(213), - [sym_part] = STATE(213), - [sym_chapter] = STATE(213), - [sym_section] = STATE(213), - [sym_subsection] = STATE(213), - [sym_subsubsection] = STATE(213), - [sym_paragraph] = STATE(213), - [sym_subparagraph] = STATE(213), - [sym_enum_item] = STATE(213), - [sym_brace_group] = STATE(213), - [sym_mixed_group] = STATE(213), - [sym_text] = STATE(213), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(213), - [sym_inline_formula] = STATE(213), - [sym_begin] = STATE(52), - [sym_environment] = STATE(213), - [sym_caption] = STATE(213), - [sym_citation] = STATE(213), - [sym_package_include] = STATE(213), - [sym_class_include] = STATE(213), - [sym_latex_include] = STATE(213), - [sym_latex_input] = STATE(213), - [sym_biblatex_include] = STATE(213), - [sym_bibtex_include] = STATE(213), - [sym_graphics_include] = STATE(213), - [sym_svg_include] = STATE(213), - [sym_inkscape_include] = STATE(213), - [sym_verbatim_include] = STATE(213), - [sym_import] = STATE(213), - [sym_label_definition] = STATE(213), - [sym_label_reference] = STATE(213), - [sym_equation_label_reference] = STATE(213), - [sym_label_reference_range] = STATE(213), - [sym_label_number] = STATE(213), - [sym_command_definition] = STATE(213), - [sym_math_operator] = STATE(213), - [sym_glossary_entry_definition] = STATE(213), - [sym_glossary_entry_reference] = STATE(213), - [sym_acronym_definition] = STATE(213), - [sym_acronym_reference] = STATE(213), - [sym_theorem_definition] = STATE(213), - [sym_color_reference] = STATE(213), - [sym_color_definition] = STATE(213), - [sym_color_set_definition] = STATE(213), - [sym_pgf_library_import] = STATE(213), - [sym_tikz_library_import] = STATE(213), - [sym_generic_command] = STATE(213), - [aux_sym_document_repeat1] = STATE(213), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1432), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [202] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [203] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1436), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1438), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [204] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(109), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(109), - [aux_sym_chapter_token1] = ACTIONS(109), - [aux_sym_section_token1] = ACTIONS(109), - [aux_sym_subsection_token1] = ACTIONS(109), - [aux_sym_subsubsection_token1] = ACTIONS(109), - [aux_sym_paragraph_token1] = ACTIONS(109), - [aux_sym_subparagraph_token1] = ACTIONS(109), - [anon_sym_BSLASHitem] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(107), - [anon_sym_EQ] = ACTIONS(107), - [sym_word] = ACTIONS(107), - [sym_param] = ACTIONS(107), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(107), - [anon_sym_DOLLAR] = ACTIONS(109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(107), - [anon_sym_BSLASHbegin] = ACTIONS(109), - [anon_sym_BSLASHcaption] = ACTIONS(109), - [aux_sym_citation_token1] = ACTIONS(109), - [aux_sym_package_include_token1] = ACTIONS(109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(109), - [aux_sym_latex_include_token1] = ACTIONS(109), - [aux_sym_latex_input_token1] = ACTIONS(109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(109), - [anon_sym_BSLASHbibliography] = ACTIONS(109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(109), - [anon_sym_BSLASHincludesvg] = ACTIONS(109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(109), - [aux_sym_verbatim_include_token1] = ACTIONS(109), - [aux_sym_import_token1] = ACTIONS(109), - [anon_sym_BSLASHlabel] = ACTIONS(109), - [aux_sym_label_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHeqref] = ACTIONS(109), - [aux_sym_label_reference_range_token1] = ACTIONS(109), - [anon_sym_BSLASHnewlabel] = ACTIONS(109), - [aux_sym_command_definition_token1] = ACTIONS(109), - [aux_sym_math_operator_token1] = ACTIONS(109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(109), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHnewacronym] = ACTIONS(109), - [aux_sym_acronym_reference_token1] = ACTIONS(109), - [aux_sym_theorem_definition_token1] = ACTIONS(109), - [aux_sym_color_reference_token1] = ACTIONS(109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(109), - }, - [205] = { - [sym__simple_content] = STATE(214), - [sym__content] = STATE(214), - [sym_part] = STATE(214), - [sym_chapter] = STATE(214), - [sym_section] = STATE(214), - [sym_subsection] = STATE(214), - [sym_subsubsection] = STATE(214), - [sym_paragraph] = STATE(214), - [sym_subparagraph] = STATE(214), - [sym_enum_item] = STATE(214), - [sym_brace_group] = STATE(214), - [sym_mixed_group] = STATE(214), - [sym_text] = STATE(214), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(214), - [sym_inline_formula] = STATE(214), - [sym_begin] = STATE(59), - [sym_environment] = STATE(214), - [sym_caption] = STATE(214), - [sym_citation] = STATE(214), - [sym_package_include] = STATE(214), - [sym_class_include] = STATE(214), - [sym_latex_include] = STATE(214), - [sym_latex_input] = STATE(214), - [sym_biblatex_include] = STATE(214), - [sym_bibtex_include] = STATE(214), - [sym_graphics_include] = STATE(214), - [sym_svg_include] = STATE(214), - [sym_inkscape_include] = STATE(214), - [sym_verbatim_include] = STATE(214), - [sym_import] = STATE(214), - [sym_label_definition] = STATE(214), - [sym_label_reference] = STATE(214), - [sym_equation_label_reference] = STATE(214), - [sym_label_reference_range] = STATE(214), - [sym_label_number] = STATE(214), - [sym_command_definition] = STATE(214), - [sym_math_operator] = STATE(214), - [sym_glossary_entry_definition] = STATE(214), - [sym_glossary_entry_reference] = STATE(214), - [sym_acronym_definition] = STATE(214), - [sym_acronym_reference] = STATE(214), - [sym_theorem_definition] = STATE(214), - [sym_color_reference] = STATE(214), - [sym_color_definition] = STATE(214), - [sym_color_set_definition] = STATE(214), - [sym_pgf_library_import] = STATE(214), - [sym_tikz_library_import] = STATE(214), - [sym_generic_command] = STATE(214), - [aux_sym_document_repeat1] = STATE(214), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1440), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1442), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1444), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [206] = { - [sym__simple_content] = STATE(228), - [sym__content] = STATE(228), - [sym_part] = STATE(228), - [sym_chapter] = STATE(228), - [sym_section] = STATE(228), - [sym_subsection] = STATE(228), - [sym_subsubsection] = STATE(228), - [sym_paragraph] = STATE(228), - [sym_subparagraph] = STATE(228), - [sym_enum_item] = STATE(228), - [sym_brace_group] = STATE(228), - [sym_mixed_group] = STATE(228), - [sym_text] = STATE(228), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(228), - [sym_inline_formula] = STATE(228), - [sym_begin] = STATE(52), - [sym_environment] = STATE(228), - [sym_caption] = STATE(228), - [sym_citation] = STATE(228), - [sym_package_include] = STATE(228), - [sym_class_include] = STATE(228), - [sym_latex_include] = STATE(228), - [sym_latex_input] = STATE(228), - [sym_biblatex_include] = STATE(228), - [sym_bibtex_include] = STATE(228), - [sym_graphics_include] = STATE(228), - [sym_svg_include] = STATE(228), - [sym_inkscape_include] = STATE(228), - [sym_verbatim_include] = STATE(228), - [sym_import] = STATE(228), - [sym_label_definition] = STATE(228), - [sym_label_reference] = STATE(228), - [sym_equation_label_reference] = STATE(228), - [sym_label_reference_range] = STATE(228), - [sym_label_number] = STATE(228), - [sym_command_definition] = STATE(228), - [sym_math_operator] = STATE(228), - [sym_glossary_entry_definition] = STATE(228), - [sym_glossary_entry_reference] = STATE(228), - [sym_acronym_definition] = STATE(228), - [sym_acronym_reference] = STATE(228), - [sym_theorem_definition] = STATE(228), - [sym_color_reference] = STATE(228), - [sym_color_definition] = STATE(228), - [sym_color_set_definition] = STATE(228), - [sym_pgf_library_import] = STATE(228), - [sym_tikz_library_import] = STATE(228), - [sym_generic_command] = STATE(228), - [aux_sym_document_repeat1] = STATE(228), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1448), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [207] = { - [sym__simple_content] = STATE(207), - [sym_section] = STATE(207), - [sym_subsection] = STATE(207), - [sym_subsubsection] = STATE(207), - [sym_paragraph] = STATE(207), - [sym_subparagraph] = STATE(207), - [sym_enum_item] = STATE(207), - [sym_brace_group] = STATE(207), - [sym_mixed_group] = STATE(207), - [sym_text] = STATE(207), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(207), - [sym_inline_formula] = STATE(207), - [sym_begin] = STATE(52), - [sym_environment] = STATE(207), - [sym_caption] = STATE(207), - [sym_citation] = STATE(207), - [sym_package_include] = STATE(207), - [sym_class_include] = STATE(207), - [sym_latex_include] = STATE(207), - [sym_latex_input] = STATE(207), - [sym_biblatex_include] = STATE(207), - [sym_bibtex_include] = STATE(207), - [sym_graphics_include] = STATE(207), - [sym_svg_include] = STATE(207), - [sym_inkscape_include] = STATE(207), - [sym_verbatim_include] = STATE(207), - [sym_import] = STATE(207), - [sym_label_definition] = STATE(207), - [sym_label_reference] = STATE(207), - [sym_equation_label_reference] = STATE(207), - [sym_label_reference_range] = STATE(207), - [sym_label_number] = STATE(207), - [sym_command_definition] = STATE(207), - [sym_math_operator] = STATE(207), - [sym_glossary_entry_definition] = STATE(207), - [sym_glossary_entry_reference] = STATE(207), - [sym_acronym_definition] = STATE(207), - [sym_acronym_reference] = STATE(207), - [sym_theorem_definition] = STATE(207), - [sym_color_reference] = STATE(207), - [sym_color_definition] = STATE(207), - [sym_color_set_definition] = STATE(207), - [sym_pgf_library_import] = STATE(207), - [sym_tikz_library_import] = STATE(207), - [sym_generic_command] = STATE(207), - [aux_sym_chapter_repeat1] = STATE(207), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_generic_command_name] = ACTIONS(1452), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1455), - [aux_sym_chapter_token1] = ACTIONS(1455), - [aux_sym_section_token1] = ACTIONS(1457), - [aux_sym_subsection_token1] = ACTIONS(1460), - [aux_sym_subsubsection_token1] = ACTIONS(1463), - [aux_sym_paragraph_token1] = ACTIONS(1466), - [aux_sym_subparagraph_token1] = ACTIONS(1469), - [anon_sym_BSLASHitem] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_RBRACK] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_RPAREN] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1481), - [sym_word] = ACTIONS(1481), - [sym_param] = ACTIONS(1484), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1487), - [anon_sym_DOLLAR] = ACTIONS(1490), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1493), - [anon_sym_BSLASHbegin] = ACTIONS(1496), - [anon_sym_BSLASHcaption] = ACTIONS(1499), - [aux_sym_citation_token1] = ACTIONS(1502), - [aux_sym_package_include_token1] = ACTIONS(1505), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1508), - [aux_sym_latex_include_token1] = ACTIONS(1511), - [aux_sym_latex_input_token1] = ACTIONS(1514), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1517), - [anon_sym_BSLASHbibliography] = ACTIONS(1520), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1523), - [anon_sym_BSLASHincludesvg] = ACTIONS(1526), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1529), - [aux_sym_verbatim_include_token1] = ACTIONS(1532), - [aux_sym_import_token1] = ACTIONS(1535), - [anon_sym_BSLASHlabel] = ACTIONS(1538), - [aux_sym_label_reference_token1] = ACTIONS(1541), - [anon_sym_BSLASHeqref] = ACTIONS(1544), - [aux_sym_label_reference_range_token1] = ACTIONS(1547), - [anon_sym_BSLASHnewlabel] = ACTIONS(1550), - [aux_sym_command_definition_token1] = ACTIONS(1553), - [aux_sym_math_operator_token1] = ACTIONS(1556), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1559), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(1562), - [anon_sym_BSLASHnewacronym] = ACTIONS(1565), - [aux_sym_acronym_reference_token1] = ACTIONS(1568), - [aux_sym_theorem_definition_token1] = ACTIONS(1571), - [aux_sym_color_reference_token1] = ACTIONS(1574), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1577), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1580), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1583), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1586), - }, - [208] = { - [sym__simple_content] = STATE(215), - [sym__content] = STATE(215), - [sym_part] = STATE(215), - [sym_chapter] = STATE(215), - [sym_section] = STATE(215), - [sym_subsection] = STATE(215), - [sym_subsubsection] = STATE(215), - [sym_paragraph] = STATE(215), - [sym_subparagraph] = STATE(215), - [sym_enum_item] = STATE(215), - [sym_brace_group] = STATE(215), - [sym_mixed_group] = STATE(215), - [sym_text] = STATE(215), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(215), - [sym_inline_formula] = STATE(215), - [sym_begin] = STATE(66), - [sym_environment] = STATE(215), - [sym_caption] = STATE(215), - [sym_citation] = STATE(215), - [sym_package_include] = STATE(215), - [sym_class_include] = STATE(215), - [sym_latex_include] = STATE(215), - [sym_latex_input] = STATE(215), - [sym_biblatex_include] = STATE(215), - [sym_bibtex_include] = STATE(215), - [sym_graphics_include] = STATE(215), - [sym_svg_include] = STATE(215), - [sym_inkscape_include] = STATE(215), - [sym_verbatim_include] = STATE(215), - [sym_import] = STATE(215), - [sym_label_definition] = STATE(215), - [sym_label_reference] = STATE(215), - [sym_equation_label_reference] = STATE(215), - [sym_label_reference_range] = STATE(215), - [sym_label_number] = STATE(215), - [sym_command_definition] = STATE(215), - [sym_math_operator] = STATE(215), - [sym_glossary_entry_definition] = STATE(215), - [sym_glossary_entry_reference] = STATE(215), - [sym_acronym_definition] = STATE(215), - [sym_acronym_reference] = STATE(215), - [sym_theorem_definition] = STATE(215), - [sym_color_reference] = STATE(215), - [sym_color_definition] = STATE(215), - [sym_color_set_definition] = STATE(215), - [sym_pgf_library_import] = STATE(215), - [sym_tikz_library_import] = STATE(215), - [sym_generic_command] = STATE(215), - [aux_sym_document_repeat1] = STATE(215), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(1589), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1591), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1593), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [209] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [210] = { - [sym__simple_content] = STATE(154), - [sym__content] = STATE(154), - [sym_part] = STATE(154), - [sym_chapter] = STATE(154), - [sym_section] = STATE(154), - [sym_subsection] = STATE(154), - [sym_subsubsection] = STATE(154), - [sym_paragraph] = STATE(154), - [sym_subparagraph] = STATE(154), - [sym_enum_item] = STATE(154), - [sym_brace_group] = STATE(154), - [sym_mixed_group] = STATE(154), - [sym_text] = STATE(154), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(154), - [sym_inline_formula] = STATE(154), - [sym_begin] = STATE(52), - [sym_environment] = STATE(154), - [sym_caption] = STATE(154), - [sym_citation] = STATE(154), - [sym_package_include] = STATE(154), - [sym_class_include] = STATE(154), - [sym_latex_include] = STATE(154), - [sym_latex_input] = STATE(154), - [sym_biblatex_include] = STATE(154), - [sym_bibtex_include] = STATE(154), - [sym_graphics_include] = STATE(154), - [sym_svg_include] = STATE(154), - [sym_inkscape_include] = STATE(154), - [sym_verbatim_include] = STATE(154), - [sym_import] = STATE(154), - [sym_label_definition] = STATE(154), - [sym_label_reference] = STATE(154), - [sym_equation_label_reference] = STATE(154), - [sym_label_reference_range] = STATE(154), - [sym_label_number] = STATE(154), - [sym_command_definition] = STATE(154), - [sym_math_operator] = STATE(154), - [sym_glossary_entry_definition] = STATE(154), - [sym_glossary_entry_reference] = STATE(154), - [sym_acronym_definition] = STATE(154), - [sym_acronym_reference] = STATE(154), - [sym_theorem_definition] = STATE(154), - [sym_color_reference] = STATE(154), - [sym_color_definition] = STATE(154), - [sym_color_set_definition] = STATE(154), - [sym_pgf_library_import] = STATE(154), - [sym_tikz_library_import] = STATE(154), - [sym_generic_command] = STATE(154), - [aux_sym_document_repeat1] = STATE(154), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1597), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1599), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [211] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(1601), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1604), - [aux_sym_chapter_token1] = ACTIONS(1607), - [aux_sym_section_token1] = ACTIONS(1610), - [aux_sym_subsection_token1] = ACTIONS(1613), - [aux_sym_subsubsection_token1] = ACTIONS(1616), - [aux_sym_paragraph_token1] = ACTIONS(1619), - [aux_sym_subparagraph_token1] = ACTIONS(1622), - [anon_sym_BSLASHitem] = ACTIONS(1625), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_LBRACE] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_COMMA] = ACTIONS(1634), - [anon_sym_EQ] = ACTIONS(1634), - [sym_word] = ACTIONS(1634), - [sym_param] = ACTIONS(1637), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1640), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(1643), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1646), - [anon_sym_BSLASH_RPAREN] = ACTIONS(121), - [anon_sym_BSLASHbegin] = ACTIONS(171), - [anon_sym_BSLASHcaption] = ACTIONS(1649), - [aux_sym_citation_token1] = ACTIONS(1652), - [aux_sym_package_include_token1] = ACTIONS(1655), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1658), - [aux_sym_latex_include_token1] = ACTIONS(1661), - [aux_sym_latex_input_token1] = ACTIONS(1664), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1667), - [anon_sym_BSLASHbibliography] = ACTIONS(1670), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1673), - [anon_sym_BSLASHincludesvg] = ACTIONS(1676), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1679), - [aux_sym_verbatim_include_token1] = ACTIONS(1682), - [aux_sym_import_token1] = ACTIONS(1685), - [anon_sym_BSLASHlabel] = ACTIONS(1688), - [aux_sym_label_reference_token1] = ACTIONS(1691), - [anon_sym_BSLASHeqref] = ACTIONS(1694), - [aux_sym_label_reference_range_token1] = ACTIONS(1697), - [anon_sym_BSLASHnewlabel] = ACTIONS(1700), - [aux_sym_command_definition_token1] = ACTIONS(1703), - [aux_sym_math_operator_token1] = ACTIONS(1706), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1709), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(1712), - [anon_sym_BSLASHnewacronym] = ACTIONS(1715), - [aux_sym_acronym_reference_token1] = ACTIONS(1718), - [aux_sym_theorem_definition_token1] = ACTIONS(1721), - [aux_sym_color_reference_token1] = ACTIONS(1724), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1727), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1730), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1733), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1736), - }, - [212] = { - [sym__simple_content] = STATE(180), - [sym__content] = STATE(180), - [sym_part] = STATE(180), - [sym_chapter] = STATE(180), - [sym_section] = STATE(180), - [sym_subsection] = STATE(180), - [sym_subsubsection] = STATE(180), - [sym_paragraph] = STATE(180), - [sym_subparagraph] = STATE(180), - [sym_enum_item] = STATE(180), - [sym_brace_group] = STATE(180), - [sym_mixed_group] = STATE(180), - [sym_text] = STATE(180), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(180), - [sym_inline_formula] = STATE(180), - [sym_begin] = STATE(52), - [sym_environment] = STATE(180), - [sym_caption] = STATE(180), - [sym_citation] = STATE(180), - [sym_package_include] = STATE(180), - [sym_class_include] = STATE(180), - [sym_latex_include] = STATE(180), - [sym_latex_input] = STATE(180), - [sym_biblatex_include] = STATE(180), - [sym_bibtex_include] = STATE(180), - [sym_graphics_include] = STATE(180), - [sym_svg_include] = STATE(180), - [sym_inkscape_include] = STATE(180), - [sym_verbatim_include] = STATE(180), - [sym_import] = STATE(180), - [sym_label_definition] = STATE(180), - [sym_label_reference] = STATE(180), - [sym_equation_label_reference] = STATE(180), - [sym_label_reference_range] = STATE(180), - [sym_label_number] = STATE(180), - [sym_command_definition] = STATE(180), - [sym_math_operator] = STATE(180), - [sym_glossary_entry_definition] = STATE(180), - [sym_glossary_entry_reference] = STATE(180), - [sym_acronym_definition] = STATE(180), - [sym_acronym_reference] = STATE(180), - [sym_theorem_definition] = STATE(180), - [sym_color_reference] = STATE(180), - [sym_color_definition] = STATE(180), - [sym_color_set_definition] = STATE(180), - [sym_pgf_library_import] = STATE(180), - [sym_tikz_library_import] = STATE(180), - [sym_generic_command] = STATE(180), - [aux_sym_document_repeat1] = STATE(180), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1741), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [213] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [214] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1745), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1747), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [215] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1749), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1751), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [216] = { - [sym__simple_content] = STATE(225), - [sym__content] = STATE(225), - [sym_part] = STATE(225), - [sym_chapter] = STATE(225), - [sym_section] = STATE(225), - [sym_subsection] = STATE(225), - [sym_subsubsection] = STATE(225), - [sym_paragraph] = STATE(225), - [sym_subparagraph] = STATE(225), - [sym_enum_item] = STATE(225), - [sym_brace_group] = STATE(225), - [sym_mixed_group] = STATE(225), - [sym_text] = STATE(225), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(225), - [sym_inline_formula] = STATE(225), - [sym_begin] = STATE(52), - [sym_environment] = STATE(225), - [sym_caption] = STATE(225), - [sym_citation] = STATE(225), - [sym_package_include] = STATE(225), - [sym_class_include] = STATE(225), - [sym_latex_include] = STATE(225), - [sym_latex_input] = STATE(225), - [sym_biblatex_include] = STATE(225), - [sym_bibtex_include] = STATE(225), - [sym_graphics_include] = STATE(225), - [sym_svg_include] = STATE(225), - [sym_inkscape_include] = STATE(225), - [sym_verbatim_include] = STATE(225), - [sym_import] = STATE(225), - [sym_label_definition] = STATE(225), - [sym_label_reference] = STATE(225), - [sym_equation_label_reference] = STATE(225), - [sym_label_reference_range] = STATE(225), - [sym_label_number] = STATE(225), - [sym_command_definition] = STATE(225), - [sym_math_operator] = STATE(225), - [sym_glossary_entry_definition] = STATE(225), - [sym_glossary_entry_reference] = STATE(225), - [sym_acronym_definition] = STATE(225), - [sym_acronym_reference] = STATE(225), - [sym_theorem_definition] = STATE(225), - [sym_color_reference] = STATE(225), - [sym_color_definition] = STATE(225), - [sym_color_set_definition] = STATE(225), - [sym_pgf_library_import] = STATE(225), - [sym_tikz_library_import] = STATE(225), - [sym_generic_command] = STATE(225), - [aux_sym_document_repeat1] = STATE(225), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1755), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [217] = { - [sym__simple_content] = STATE(229), - [sym__content] = STATE(229), - [sym_part] = STATE(229), - [sym_chapter] = STATE(229), - [sym_section] = STATE(229), - [sym_subsection] = STATE(229), - [sym_subsubsection] = STATE(229), - [sym_paragraph] = STATE(229), - [sym_subparagraph] = STATE(229), - [sym_enum_item] = STATE(229), - [sym_brace_group] = STATE(229), - [sym_mixed_group] = STATE(229), - [sym_text] = STATE(229), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(229), - [sym_inline_formula] = STATE(229), - [sym_begin] = STATE(52), - [sym_environment] = STATE(229), - [sym_caption] = STATE(229), - [sym_citation] = STATE(229), - [sym_package_include] = STATE(229), - [sym_class_include] = STATE(229), - [sym_latex_include] = STATE(229), - [sym_latex_input] = STATE(229), - [sym_biblatex_include] = STATE(229), - [sym_bibtex_include] = STATE(229), - [sym_graphics_include] = STATE(229), - [sym_svg_include] = STATE(229), - [sym_inkscape_include] = STATE(229), - [sym_verbatim_include] = STATE(229), - [sym_import] = STATE(229), - [sym_label_definition] = STATE(229), - [sym_label_reference] = STATE(229), - [sym_equation_label_reference] = STATE(229), - [sym_label_reference_range] = STATE(229), - [sym_label_number] = STATE(229), - [sym_command_definition] = STATE(229), - [sym_math_operator] = STATE(229), - [sym_glossary_entry_definition] = STATE(229), - [sym_glossary_entry_reference] = STATE(229), - [sym_acronym_definition] = STATE(229), - [sym_acronym_reference] = STATE(229), - [sym_theorem_definition] = STATE(229), - [sym_color_reference] = STATE(229), - [sym_color_definition] = STATE(229), - [sym_color_set_definition] = STATE(229), - [sym_pgf_library_import] = STATE(229), - [sym_tikz_library_import] = STATE(229), - [sym_generic_command] = STATE(229), - [aux_sym_document_repeat1] = STATE(229), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1757), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1759), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [218] = { - [sym__simple_content] = STATE(198), - [sym__content] = STATE(198), - [sym_part] = STATE(198), - [sym_chapter] = STATE(198), - [sym_section] = STATE(198), - [sym_subsection] = STATE(198), - [sym_subsubsection] = STATE(198), - [sym_paragraph] = STATE(198), - [sym_subparagraph] = STATE(198), - [sym_enum_item] = STATE(198), - [sym_brace_group] = STATE(198), - [sym_mixed_group] = STATE(198), - [sym_text] = STATE(198), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(198), - [sym_inline_formula] = STATE(198), - [sym_begin] = STATE(52), - [sym_environment] = STATE(198), - [sym_caption] = STATE(198), - [sym_citation] = STATE(198), - [sym_package_include] = STATE(198), - [sym_class_include] = STATE(198), - [sym_latex_include] = STATE(198), - [sym_latex_input] = STATE(198), - [sym_biblatex_include] = STATE(198), - [sym_bibtex_include] = STATE(198), - [sym_graphics_include] = STATE(198), - [sym_svg_include] = STATE(198), - [sym_inkscape_include] = STATE(198), - [sym_verbatim_include] = STATE(198), - [sym_import] = STATE(198), - [sym_label_definition] = STATE(198), - [sym_label_reference] = STATE(198), - [sym_equation_label_reference] = STATE(198), - [sym_label_reference_range] = STATE(198), - [sym_label_number] = STATE(198), - [sym_command_definition] = STATE(198), - [sym_math_operator] = STATE(198), - [sym_glossary_entry_definition] = STATE(198), - [sym_glossary_entry_reference] = STATE(198), - [sym_acronym_definition] = STATE(198), - [sym_acronym_reference] = STATE(198), - [sym_theorem_definition] = STATE(198), - [sym_color_reference] = STATE(198), - [sym_color_definition] = STATE(198), - [sym_color_set_definition] = STATE(198), - [sym_pgf_library_import] = STATE(198), - [sym_tikz_library_import] = STATE(198), - [sym_generic_command] = STATE(198), - [aux_sym_document_repeat1] = STATE(198), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1761), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1763), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [219] = { - [sym__simple_content] = STATE(226), - [sym__content] = STATE(226), - [sym_part] = STATE(226), - [sym_chapter] = STATE(226), - [sym_section] = STATE(226), - [sym_subsection] = STATE(226), - [sym_subsubsection] = STATE(226), - [sym_paragraph] = STATE(226), - [sym_subparagraph] = STATE(226), - [sym_enum_item] = STATE(226), - [sym_brace_group] = STATE(226), - [sym_mixed_group] = STATE(226), - [sym_text] = STATE(226), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(226), - [sym_inline_formula] = STATE(226), - [sym_begin] = STATE(52), - [sym_environment] = STATE(226), - [sym_caption] = STATE(226), - [sym_citation] = STATE(226), - [sym_package_include] = STATE(226), - [sym_class_include] = STATE(226), - [sym_latex_include] = STATE(226), - [sym_latex_input] = STATE(226), - [sym_biblatex_include] = STATE(226), - [sym_bibtex_include] = STATE(226), - [sym_graphics_include] = STATE(226), - [sym_svg_include] = STATE(226), - [sym_inkscape_include] = STATE(226), - [sym_verbatim_include] = STATE(226), - [sym_import] = STATE(226), - [sym_label_definition] = STATE(226), - [sym_label_reference] = STATE(226), - [sym_equation_label_reference] = STATE(226), - [sym_label_reference_range] = STATE(226), - [sym_label_number] = STATE(226), - [sym_command_definition] = STATE(226), - [sym_math_operator] = STATE(226), - [sym_glossary_entry_definition] = STATE(226), - [sym_glossary_entry_reference] = STATE(226), - [sym_acronym_definition] = STATE(226), - [sym_acronym_reference] = STATE(226), - [sym_theorem_definition] = STATE(226), - [sym_color_reference] = STATE(226), - [sym_color_definition] = STATE(226), - [sym_color_set_definition] = STATE(226), - [sym_pgf_library_import] = STATE(226), - [sym_tikz_library_import] = STATE(226), - [sym_generic_command] = STATE(226), - [aux_sym_document_repeat1] = STATE(226), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1765), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1767), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [220] = { - [sym__simple_content] = STATE(200), - [sym__content] = STATE(200), - [sym_part] = STATE(200), - [sym_chapter] = STATE(200), - [sym_section] = STATE(200), - [sym_subsection] = STATE(200), - [sym_subsubsection] = STATE(200), - [sym_paragraph] = STATE(200), - [sym_subparagraph] = STATE(200), - [sym_enum_item] = STATE(200), - [sym_brace_group] = STATE(200), - [sym_mixed_group] = STATE(200), - [sym_text] = STATE(200), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(200), - [sym_inline_formula] = STATE(200), - [sym_begin] = STATE(52), - [sym_environment] = STATE(200), - [sym_caption] = STATE(200), - [sym_citation] = STATE(200), - [sym_package_include] = STATE(200), - [sym_class_include] = STATE(200), - [sym_latex_include] = STATE(200), - [sym_latex_input] = STATE(200), - [sym_biblatex_include] = STATE(200), - [sym_bibtex_include] = STATE(200), - [sym_graphics_include] = STATE(200), - [sym_svg_include] = STATE(200), - [sym_inkscape_include] = STATE(200), - [sym_verbatim_include] = STATE(200), - [sym_import] = STATE(200), - [sym_label_definition] = STATE(200), - [sym_label_reference] = STATE(200), - [sym_equation_label_reference] = STATE(200), - [sym_label_reference_range] = STATE(200), - [sym_label_number] = STATE(200), - [sym_command_definition] = STATE(200), - [sym_math_operator] = STATE(200), - [sym_glossary_entry_definition] = STATE(200), - [sym_glossary_entry_reference] = STATE(200), - [sym_acronym_definition] = STATE(200), - [sym_acronym_reference] = STATE(200), - [sym_theorem_definition] = STATE(200), - [sym_color_reference] = STATE(200), - [sym_color_definition] = STATE(200), - [sym_color_set_definition] = STATE(200), - [sym_pgf_library_import] = STATE(200), - [sym_tikz_library_import] = STATE(200), - [sym_generic_command] = STATE(200), - [aux_sym_document_repeat1] = STATE(200), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1769), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1771), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [221] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1773), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1775), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [222] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1777), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1779), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [223] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1781), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [224] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1783), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1785), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [225] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [226] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1789), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [227] = { - [sym__simple_content] = STATE(238), - [sym__content] = STATE(238), - [sym_part] = STATE(238), - [sym_chapter] = STATE(238), - [sym_section] = STATE(238), - [sym_subsection] = STATE(238), - [sym_subsubsection] = STATE(238), - [sym_paragraph] = STATE(238), - [sym_subparagraph] = STATE(238), - [sym_enum_item] = STATE(238), - [sym_brace_group] = STATE(238), - [sym_mixed_group] = STATE(238), - [sym_text] = STATE(238), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(238), - [sym_inline_formula] = STATE(238), - [sym_begin] = STATE(52), - [sym_environment] = STATE(238), - [sym_caption] = STATE(238), - [sym_citation] = STATE(238), - [sym_package_include] = STATE(238), - [sym_class_include] = STATE(238), - [sym_latex_include] = STATE(238), - [sym_latex_input] = STATE(238), - [sym_biblatex_include] = STATE(238), - [sym_bibtex_include] = STATE(238), - [sym_graphics_include] = STATE(238), - [sym_svg_include] = STATE(238), - [sym_inkscape_include] = STATE(238), - [sym_verbatim_include] = STATE(238), - [sym_import] = STATE(238), - [sym_label_definition] = STATE(238), - [sym_label_reference] = STATE(238), - [sym_equation_label_reference] = STATE(238), - [sym_label_reference_range] = STATE(238), - [sym_label_number] = STATE(238), - [sym_command_definition] = STATE(238), - [sym_math_operator] = STATE(238), - [sym_glossary_entry_definition] = STATE(238), - [sym_glossary_entry_reference] = STATE(238), - [sym_acronym_definition] = STATE(238), - [sym_acronym_reference] = STATE(238), - [sym_theorem_definition] = STATE(238), - [sym_color_reference] = STATE(238), - [sym_color_definition] = STATE(238), - [sym_color_set_definition] = STATE(238), - [sym_pgf_library_import] = STATE(238), - [sym_tikz_library_import] = STATE(238), - [sym_generic_command] = STATE(238), - [aux_sym_document_repeat1] = STATE(238), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1793), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [228] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [229] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1797), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [230] = { - [sym__simple_content] = STATE(130), - [sym_section] = STATE(130), - [sym_subsection] = STATE(130), - [sym_subsubsection] = STATE(130), - [sym_paragraph] = STATE(130), - [sym_subparagraph] = STATE(130), - [sym_enum_item] = STATE(130), - [sym_brace_group] = STATE(130), - [sym_mixed_group] = STATE(130), - [sym_text] = STATE(130), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(130), - [sym_inline_formula] = STATE(130), - [sym_begin] = STATE(52), - [sym_environment] = STATE(130), - [sym_caption] = STATE(130), - [sym_citation] = STATE(130), - [sym_package_include] = STATE(130), - [sym_class_include] = STATE(130), - [sym_latex_include] = STATE(130), - [sym_latex_input] = STATE(130), - [sym_biblatex_include] = STATE(130), - [sym_bibtex_include] = STATE(130), - [sym_graphics_include] = STATE(130), - [sym_svg_include] = STATE(130), - [sym_inkscape_include] = STATE(130), - [sym_verbatim_include] = STATE(130), - [sym_import] = STATE(130), - [sym_label_definition] = STATE(130), - [sym_label_reference] = STATE(130), - [sym_equation_label_reference] = STATE(130), - [sym_label_reference_range] = STATE(130), - [sym_label_number] = STATE(130), - [sym_command_definition] = STATE(130), - [sym_math_operator] = STATE(130), - [sym_glossary_entry_definition] = STATE(130), - [sym_glossary_entry_reference] = STATE(130), - [sym_acronym_definition] = STATE(130), - [sym_acronym_reference] = STATE(130), - [sym_theorem_definition] = STATE(130), - [sym_color_reference] = STATE(130), - [sym_color_definition] = STATE(130), - [sym_color_set_definition] = STATE(130), - [sym_pgf_library_import] = STATE(130), - [sym_tikz_library_import] = STATE(130), - [sym_generic_command] = STATE(130), - [aux_sym_chapter_repeat1] = STATE(130), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(1799), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1801), - [aux_sym_chapter_token1] = ACTIONS(1801), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1799), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1803), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [231] = { - [sym__simple_content] = STATE(241), - [sym__content] = STATE(241), - [sym_part] = STATE(241), - [sym_chapter] = STATE(241), - [sym_section] = STATE(241), - [sym_subsection] = STATE(241), - [sym_subsubsection] = STATE(241), - [sym_paragraph] = STATE(241), - [sym_subparagraph] = STATE(241), - [sym_enum_item] = STATE(241), - [sym_brace_group] = STATE(241), - [sym_mixed_group] = STATE(241), - [sym_text] = STATE(241), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(241), - [sym_inline_formula] = STATE(241), - [sym_begin] = STATE(66), - [sym_environment] = STATE(241), - [sym_caption] = STATE(241), - [sym_citation] = STATE(241), - [sym_package_include] = STATE(241), - [sym_class_include] = STATE(241), - [sym_latex_include] = STATE(241), - [sym_latex_input] = STATE(241), - [sym_biblatex_include] = STATE(241), - [sym_bibtex_include] = STATE(241), - [sym_graphics_include] = STATE(241), - [sym_svg_include] = STATE(241), - [sym_inkscape_include] = STATE(241), - [sym_verbatim_include] = STATE(241), - [sym_import] = STATE(241), - [sym_label_definition] = STATE(241), - [sym_label_reference] = STATE(241), - [sym_equation_label_reference] = STATE(241), - [sym_label_reference_range] = STATE(241), - [sym_label_number] = STATE(241), - [sym_command_definition] = STATE(241), - [sym_math_operator] = STATE(241), - [sym_glossary_entry_definition] = STATE(241), - [sym_glossary_entry_reference] = STATE(241), - [sym_acronym_definition] = STATE(241), - [sym_acronym_reference] = STATE(241), - [sym_theorem_definition] = STATE(241), - [sym_color_reference] = STATE(241), - [sym_color_definition] = STATE(241), - [sym_color_set_definition] = STATE(241), - [sym_pgf_library_import] = STATE(241), - [sym_tikz_library_import] = STATE(241), - [sym_generic_command] = STATE(241), - [aux_sym_document_repeat1] = STATE(241), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(1805), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1080), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [232] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1809), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1811), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [233] = { - [sym__simple_content] = STATE(221), - [sym__content] = STATE(221), - [sym_part] = STATE(221), - [sym_chapter] = STATE(221), - [sym_section] = STATE(221), - [sym_subsection] = STATE(221), - [sym_subsubsection] = STATE(221), - [sym_paragraph] = STATE(221), - [sym_subparagraph] = STATE(221), - [sym_enum_item] = STATE(221), - [sym_brace_group] = STATE(221), - [sym_mixed_group] = STATE(221), - [sym_text] = STATE(221), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(221), - [sym_inline_formula] = STATE(221), - [sym_begin] = STATE(66), - [sym_environment] = STATE(221), - [sym_caption] = STATE(221), - [sym_citation] = STATE(221), - [sym_package_include] = STATE(221), - [sym_class_include] = STATE(221), - [sym_latex_include] = STATE(221), - [sym_latex_input] = STATE(221), - [sym_biblatex_include] = STATE(221), - [sym_bibtex_include] = STATE(221), - [sym_graphics_include] = STATE(221), - [sym_svg_include] = STATE(221), - [sym_inkscape_include] = STATE(221), - [sym_verbatim_include] = STATE(221), - [sym_import] = STATE(221), - [sym_label_definition] = STATE(221), - [sym_label_reference] = STATE(221), - [sym_equation_label_reference] = STATE(221), - [sym_label_reference_range] = STATE(221), - [sym_label_number] = STATE(221), - [sym_command_definition] = STATE(221), - [sym_math_operator] = STATE(221), - [sym_glossary_entry_definition] = STATE(221), - [sym_glossary_entry_reference] = STATE(221), - [sym_acronym_definition] = STATE(221), - [sym_acronym_reference] = STATE(221), - [sym_theorem_definition] = STATE(221), - [sym_color_reference] = STATE(221), - [sym_color_definition] = STATE(221), - [sym_color_set_definition] = STATE(221), - [sym_pgf_library_import] = STATE(221), - [sym_tikz_library_import] = STATE(221), - [sym_generic_command] = STATE(221), - [aux_sym_document_repeat1] = STATE(221), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(1813), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1815), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1817), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [234] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [235] = { - [sym__simple_content] = STATE(222), - [sym__content] = STATE(222), - [sym_part] = STATE(222), - [sym_chapter] = STATE(222), - [sym_section] = STATE(222), - [sym_subsection] = STATE(222), - [sym_subsubsection] = STATE(222), - [sym_paragraph] = STATE(222), - [sym_subparagraph] = STATE(222), - [sym_enum_item] = STATE(222), - [sym_brace_group] = STATE(222), - [sym_mixed_group] = STATE(222), - [sym_text] = STATE(222), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(222), - [sym_inline_formula] = STATE(222), - [sym_begin] = STATE(59), - [sym_environment] = STATE(222), - [sym_caption] = STATE(222), - [sym_citation] = STATE(222), - [sym_package_include] = STATE(222), - [sym_class_include] = STATE(222), - [sym_latex_include] = STATE(222), - [sym_latex_input] = STATE(222), - [sym_biblatex_include] = STATE(222), - [sym_bibtex_include] = STATE(222), - [sym_graphics_include] = STATE(222), - [sym_svg_include] = STATE(222), - [sym_inkscape_include] = STATE(222), - [sym_verbatim_include] = STATE(222), - [sym_import] = STATE(222), - [sym_label_definition] = STATE(222), - [sym_label_reference] = STATE(222), - [sym_equation_label_reference] = STATE(222), - [sym_label_reference_range] = STATE(222), - [sym_label_number] = STATE(222), - [sym_command_definition] = STATE(222), - [sym_math_operator] = STATE(222), - [sym_glossary_entry_definition] = STATE(222), - [sym_glossary_entry_reference] = STATE(222), - [sym_acronym_definition] = STATE(222), - [sym_acronym_reference] = STATE(222), - [sym_theorem_definition] = STATE(222), - [sym_color_reference] = STATE(222), - [sym_color_definition] = STATE(222), - [sym_color_set_definition] = STATE(222), - [sym_pgf_library_import] = STATE(222), - [sym_tikz_library_import] = STATE(222), - [sym_generic_command] = STATE(222), - [aux_sym_document_repeat1] = STATE(222), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1821), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1823), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1825), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [236] = { - [sym__simple_content] = STATE(224), - [sym__content] = STATE(224), - [sym_part] = STATE(224), - [sym_chapter] = STATE(224), - [sym_section] = STATE(224), - [sym_subsection] = STATE(224), - [sym_subsubsection] = STATE(224), - [sym_paragraph] = STATE(224), - [sym_subparagraph] = STATE(224), - [sym_enum_item] = STATE(224), - [sym_brace_group] = STATE(224), - [sym_mixed_group] = STATE(224), - [sym_text] = STATE(224), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(224), - [sym_inline_formula] = STATE(224), - [sym_begin] = STATE(66), - [sym_environment] = STATE(224), - [sym_caption] = STATE(224), - [sym_citation] = STATE(224), - [sym_package_include] = STATE(224), - [sym_class_include] = STATE(224), - [sym_latex_include] = STATE(224), - [sym_latex_input] = STATE(224), - [sym_biblatex_include] = STATE(224), - [sym_bibtex_include] = STATE(224), - [sym_graphics_include] = STATE(224), - [sym_svg_include] = STATE(224), - [sym_inkscape_include] = STATE(224), - [sym_verbatim_include] = STATE(224), - [sym_import] = STATE(224), - [sym_label_definition] = STATE(224), - [sym_label_reference] = STATE(224), - [sym_equation_label_reference] = STATE(224), - [sym_label_reference_range] = STATE(224), - [sym_label_number] = STATE(224), - [sym_command_definition] = STATE(224), - [sym_math_operator] = STATE(224), - [sym_glossary_entry_definition] = STATE(224), - [sym_glossary_entry_reference] = STATE(224), - [sym_acronym_definition] = STATE(224), - [sym_acronym_reference] = STATE(224), - [sym_theorem_definition] = STATE(224), - [sym_color_reference] = STATE(224), - [sym_color_definition] = STATE(224), - [sym_color_set_definition] = STATE(224), - [sym_pgf_library_import] = STATE(224), - [sym_tikz_library_import] = STATE(224), - [sym_generic_command] = STATE(224), - [aux_sym_document_repeat1] = STATE(224), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(1827), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1829), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1831), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [237] = { - [sym__simple_content] = STATE(223), - [sym__content] = STATE(223), - [sym_part] = STATE(223), - [sym_chapter] = STATE(223), - [sym_section] = STATE(223), - [sym_subsection] = STATE(223), - [sym_subsubsection] = STATE(223), - [sym_paragraph] = STATE(223), - [sym_subparagraph] = STATE(223), - [sym_enum_item] = STATE(223), - [sym_brace_group] = STATE(223), - [sym_mixed_group] = STATE(223), - [sym_text] = STATE(223), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(223), - [sym_inline_formula] = STATE(223), - [sym_begin] = STATE(52), - [sym_environment] = STATE(223), - [sym_caption] = STATE(223), - [sym_citation] = STATE(223), - [sym_package_include] = STATE(223), - [sym_class_include] = STATE(223), - [sym_latex_include] = STATE(223), - [sym_latex_input] = STATE(223), - [sym_biblatex_include] = STATE(223), - [sym_bibtex_include] = STATE(223), - [sym_graphics_include] = STATE(223), - [sym_svg_include] = STATE(223), - [sym_inkscape_include] = STATE(223), - [sym_verbatim_include] = STATE(223), - [sym_import] = STATE(223), - [sym_label_definition] = STATE(223), - [sym_label_reference] = STATE(223), - [sym_equation_label_reference] = STATE(223), - [sym_label_reference_range] = STATE(223), - [sym_label_number] = STATE(223), - [sym_command_definition] = STATE(223), - [sym_math_operator] = STATE(223), - [sym_glossary_entry_definition] = STATE(223), - [sym_glossary_entry_reference] = STATE(223), - [sym_acronym_definition] = STATE(223), - [sym_acronym_reference] = STATE(223), - [sym_theorem_definition] = STATE(223), - [sym_color_reference] = STATE(223), - [sym_color_definition] = STATE(223), - [sym_color_set_definition] = STATE(223), - [sym_pgf_library_import] = STATE(223), - [sym_tikz_library_import] = STATE(223), - [sym_generic_command] = STATE(223), - [aux_sym_document_repeat1] = STATE(223), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1835), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [238] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [239] = { - [sym__simple_content] = STATE(234), - [sym__content] = STATE(234), - [sym_part] = STATE(234), - [sym_chapter] = STATE(234), - [sym_section] = STATE(234), - [sym_subsection] = STATE(234), - [sym_subsubsection] = STATE(234), - [sym_paragraph] = STATE(234), - [sym_subparagraph] = STATE(234), - [sym_enum_item] = STATE(234), - [sym_brace_group] = STATE(234), - [sym_mixed_group] = STATE(234), - [sym_text] = STATE(234), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(234), - [sym_inline_formula] = STATE(234), - [sym_begin] = STATE(52), - [sym_environment] = STATE(234), - [sym_caption] = STATE(234), - [sym_citation] = STATE(234), - [sym_package_include] = STATE(234), - [sym_class_include] = STATE(234), - [sym_latex_include] = STATE(234), - [sym_latex_input] = STATE(234), - [sym_biblatex_include] = STATE(234), - [sym_bibtex_include] = STATE(234), - [sym_graphics_include] = STATE(234), - [sym_svg_include] = STATE(234), - [sym_inkscape_include] = STATE(234), - [sym_verbatim_include] = STATE(234), - [sym_import] = STATE(234), - [sym_label_definition] = STATE(234), - [sym_label_reference] = STATE(234), - [sym_equation_label_reference] = STATE(234), - [sym_label_reference_range] = STATE(234), - [sym_label_number] = STATE(234), - [sym_command_definition] = STATE(234), - [sym_math_operator] = STATE(234), - [sym_glossary_entry_definition] = STATE(234), - [sym_glossary_entry_reference] = STATE(234), - [sym_acronym_definition] = STATE(234), - [sym_acronym_reference] = STATE(234), - [sym_theorem_definition] = STATE(234), - [sym_color_reference] = STATE(234), - [sym_color_definition] = STATE(234), - [sym_color_set_definition] = STATE(234), - [sym_pgf_library_import] = STATE(234), - [sym_tikz_library_import] = STATE(234), - [sym_generic_command] = STATE(234), - [aux_sym_document_repeat1] = STATE(234), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1841), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [240] = { - [sym__simple_content] = STATE(120), - [sym__content] = STATE(120), - [sym_part] = STATE(120), - [sym_chapter] = STATE(120), - [sym_section] = STATE(120), - [sym_subsection] = STATE(120), - [sym_subsubsection] = STATE(120), - [sym_paragraph] = STATE(120), - [sym_subparagraph] = STATE(120), - [sym_enum_item] = STATE(120), - [sym_brace_group] = STATE(120), - [sym_mixed_group] = STATE(120), - [sym_text] = STATE(120), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_begin] = STATE(59), - [sym_environment] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_latex_input] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_equation_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_command_definition] = STATE(120), - [sym_math_operator] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_pgf_library_import] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [sym_generic_command] = STATE(120), - [aux_sym_document_repeat1] = STATE(120), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1843), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1320), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [241] = { - [sym__simple_content] = STATE(211), - [sym__content] = STATE(211), - [sym_part] = STATE(211), - [sym_chapter] = STATE(211), - [sym_section] = STATE(211), - [sym_subsection] = STATE(211), - [sym_subsubsection] = STATE(211), - [sym_paragraph] = STATE(211), - [sym_subparagraph] = STATE(211), - [sym_enum_item] = STATE(211), - [sym_brace_group] = STATE(211), - [sym_mixed_group] = STATE(211), - [sym_text] = STATE(211), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(211), - [sym_inline_formula] = STATE(211), - [sym_begin] = STATE(66), - [sym_environment] = STATE(211), - [sym_caption] = STATE(211), - [sym_citation] = STATE(211), - [sym_package_include] = STATE(211), - [sym_class_include] = STATE(211), - [sym_latex_include] = STATE(211), - [sym_latex_input] = STATE(211), - [sym_biblatex_include] = STATE(211), - [sym_bibtex_include] = STATE(211), - [sym_graphics_include] = STATE(211), - [sym_svg_include] = STATE(211), - [sym_inkscape_include] = STATE(211), - [sym_verbatim_include] = STATE(211), - [sym_import] = STATE(211), - [sym_label_definition] = STATE(211), - [sym_label_reference] = STATE(211), - [sym_equation_label_reference] = STATE(211), - [sym_label_reference_range] = STATE(211), - [sym_label_number] = STATE(211), - [sym_command_definition] = STATE(211), - [sym_math_operator] = STATE(211), - [sym_glossary_entry_definition] = STATE(211), - [sym_glossary_entry_reference] = STATE(211), - [sym_acronym_definition] = STATE(211), - [sym_acronym_reference] = STATE(211), - [sym_theorem_definition] = STATE(211), - [sym_color_reference] = STATE(211), - [sym_color_definition] = STATE(211), - [sym_color_set_definition] = STATE(211), - [sym_pgf_library_import] = STATE(211), - [sym_tikz_library_import] = STATE(211), - [sym_generic_command] = STATE(211), - [aux_sym_document_repeat1] = STATE(211), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(360), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(842), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(1845), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1418), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [242] = { - [sym__simple_content] = STATE(245), - [sym__content] = STATE(245), - [sym_part] = STATE(245), - [sym_chapter] = STATE(245), - [sym_section] = STATE(245), - [sym_subsection] = STATE(245), - [sym_subsubsection] = STATE(245), - [sym_paragraph] = STATE(245), - [sym_subparagraph] = STATE(245), - [sym_enum_item] = STATE(245), - [sym_brace_group] = STATE(245), - [sym_mixed_group] = STATE(245), - [sym_text] = STATE(245), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(245), - [sym_inline_formula] = STATE(245), - [sym_begin] = STATE(52), - [sym_environment] = STATE(245), - [sym_caption] = STATE(245), - [sym_citation] = STATE(245), - [sym_package_include] = STATE(245), - [sym_class_include] = STATE(245), - [sym_latex_include] = STATE(245), - [sym_latex_input] = STATE(245), - [sym_biblatex_include] = STATE(245), - [sym_bibtex_include] = STATE(245), - [sym_graphics_include] = STATE(245), - [sym_svg_include] = STATE(245), - [sym_inkscape_include] = STATE(245), - [sym_verbatim_include] = STATE(245), - [sym_import] = STATE(245), - [sym_label_definition] = STATE(245), - [sym_label_reference] = STATE(245), - [sym_equation_label_reference] = STATE(245), - [sym_label_reference_range] = STATE(245), - [sym_label_number] = STATE(245), - [sym_command_definition] = STATE(245), - [sym_math_operator] = STATE(245), - [sym_glossary_entry_definition] = STATE(245), - [sym_glossary_entry_reference] = STATE(245), - [sym_acronym_definition] = STATE(245), - [sym_acronym_reference] = STATE(245), - [sym_theorem_definition] = STATE(245), - [sym_color_reference] = STATE(245), - [sym_color_definition] = STATE(245), - [sym_color_set_definition] = STATE(245), - [sym_pgf_library_import] = STATE(245), - [sym_tikz_library_import] = STATE(245), - [sym_generic_command] = STATE(245), - [aux_sym_document_repeat1] = STATE(245), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1847), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1849), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [243] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [244] = { - [sym__simple_content] = STATE(189), - [sym__content] = STATE(189), - [sym_part] = STATE(189), - [sym_chapter] = STATE(189), - [sym_section] = STATE(189), - [sym_subsection] = STATE(189), - [sym_subsubsection] = STATE(189), - [sym_paragraph] = STATE(189), - [sym_subparagraph] = STATE(189), - [sym_enum_item] = STATE(189), - [sym_brace_group] = STATE(189), - [sym_mixed_group] = STATE(189), - [sym_text] = STATE(189), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(189), - [sym_inline_formula] = STATE(189), - [sym_begin] = STATE(59), - [sym_environment] = STATE(189), - [sym_caption] = STATE(189), - [sym_citation] = STATE(189), - [sym_package_include] = STATE(189), - [sym_class_include] = STATE(189), - [sym_latex_include] = STATE(189), - [sym_latex_input] = STATE(189), - [sym_biblatex_include] = STATE(189), - [sym_bibtex_include] = STATE(189), - [sym_graphics_include] = STATE(189), - [sym_svg_include] = STATE(189), - [sym_inkscape_include] = STATE(189), - [sym_verbatim_include] = STATE(189), - [sym_import] = STATE(189), - [sym_label_definition] = STATE(189), - [sym_label_reference] = STATE(189), - [sym_equation_label_reference] = STATE(189), - [sym_label_reference_range] = STATE(189), - [sym_label_number] = STATE(189), - [sym_command_definition] = STATE(189), - [sym_math_operator] = STATE(189), - [sym_glossary_entry_definition] = STATE(189), - [sym_glossary_entry_reference] = STATE(189), - [sym_acronym_definition] = STATE(189), - [sym_acronym_reference] = STATE(189), - [sym_theorem_definition] = STATE(189), - [sym_color_reference] = STATE(189), - [sym_color_definition] = STATE(189), - [sym_color_set_definition] = STATE(189), - [sym_pgf_library_import] = STATE(189), - [sym_tikz_library_import] = STATE(189), - [sym_generic_command] = STATE(189), - [aux_sym_document_repeat1] = STATE(189), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1853), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1855), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1857), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [245] = { - [sym__simple_content] = STATE(6), - [sym__content] = STATE(6), - [sym_part] = STATE(6), - [sym_chapter] = STATE(6), - [sym_section] = STATE(6), - [sym_subsection] = STATE(6), - [sym_subsubsection] = STATE(6), - [sym_paragraph] = STATE(6), - [sym_subparagraph] = STATE(6), - [sym_enum_item] = STATE(6), - [sym_brace_group] = STATE(6), - [sym_mixed_group] = STATE(6), - [sym_text] = STATE(6), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(6), - [sym_inline_formula] = STATE(6), - [sym_begin] = STATE(52), - [sym_environment] = STATE(6), - [sym_caption] = STATE(6), - [sym_citation] = STATE(6), - [sym_package_include] = STATE(6), - [sym_class_include] = STATE(6), - [sym_latex_include] = STATE(6), - [sym_latex_input] = STATE(6), - [sym_biblatex_include] = STATE(6), - [sym_bibtex_include] = STATE(6), - [sym_graphics_include] = STATE(6), - [sym_svg_include] = STATE(6), - [sym_inkscape_include] = STATE(6), - [sym_verbatim_include] = STATE(6), - [sym_import] = STATE(6), - [sym_label_definition] = STATE(6), - [sym_label_reference] = STATE(6), - [sym_equation_label_reference] = STATE(6), - [sym_label_reference_range] = STATE(6), - [sym_label_number] = STATE(6), - [sym_command_definition] = STATE(6), - [sym_math_operator] = STATE(6), - [sym_glossary_entry_definition] = STATE(6), - [sym_glossary_entry_reference] = STATE(6), - [sym_acronym_definition] = STATE(6), - [sym_acronym_reference] = STATE(6), - [sym_theorem_definition] = STATE(6), - [sym_color_reference] = STATE(6), - [sym_color_definition] = STATE(6), - [sym_color_set_definition] = STATE(6), - [sym_pgf_library_import] = STATE(6), - [sym_tikz_library_import] = STATE(6), - [sym_generic_command] = STATE(6), - [aux_sym_document_repeat1] = STATE(6), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(582), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [246] = { - [sym__simple_content] = STATE(243), - [sym__content] = STATE(243), - [sym_part] = STATE(243), - [sym_chapter] = STATE(243), - [sym_section] = STATE(243), - [sym_subsection] = STATE(243), - [sym_subsubsection] = STATE(243), - [sym_paragraph] = STATE(243), - [sym_subparagraph] = STATE(243), - [sym_enum_item] = STATE(243), - [sym_brace_group] = STATE(243), - [sym_mixed_group] = STATE(243), - [sym_text] = STATE(243), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(243), - [sym_inline_formula] = STATE(243), - [sym_begin] = STATE(52), - [sym_environment] = STATE(243), - [sym_caption] = STATE(243), - [sym_citation] = STATE(243), - [sym_package_include] = STATE(243), - [sym_class_include] = STATE(243), - [sym_latex_include] = STATE(243), - [sym_latex_input] = STATE(243), - [sym_biblatex_include] = STATE(243), - [sym_bibtex_include] = STATE(243), - [sym_graphics_include] = STATE(243), - [sym_svg_include] = STATE(243), - [sym_inkscape_include] = STATE(243), - [sym_verbatim_include] = STATE(243), - [sym_import] = STATE(243), - [sym_label_definition] = STATE(243), - [sym_label_reference] = STATE(243), - [sym_equation_label_reference] = STATE(243), - [sym_label_reference_range] = STATE(243), - [sym_label_number] = STATE(243), - [sym_command_definition] = STATE(243), - [sym_math_operator] = STATE(243), - [sym_glossary_entry_definition] = STATE(243), - [sym_glossary_entry_reference] = STATE(243), - [sym_acronym_definition] = STATE(243), - [sym_acronym_reference] = STATE(243), - [sym_theorem_definition] = STATE(243), - [sym_color_reference] = STATE(243), - [sym_color_definition] = STATE(243), - [sym_color_set_definition] = STATE(243), - [sym_pgf_library_import] = STATE(243), - [sym_tikz_library_import] = STATE(243), - [sym_generic_command] = STATE(243), - [aux_sym_document_repeat1] = STATE(243), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(9), - [aux_sym_chapter_token1] = ACTIONS(11), - [aux_sym_section_token1] = ACTIONS(13), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1861), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1863), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [247] = { - [sym__simple_content] = STATE(176), - [sym__content] = STATE(176), - [sym_part] = STATE(176), - [sym_chapter] = STATE(176), - [sym_section] = STATE(176), - [sym_subsection] = STATE(176), - [sym_subsubsection] = STATE(176), - [sym_paragraph] = STATE(176), - [sym_subparagraph] = STATE(176), - [sym_enum_item] = STATE(176), - [sym_brace_group] = STATE(176), - [sym_mixed_group] = STATE(176), - [sym_text] = STATE(176), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_begin] = STATE(66), - [sym_environment] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_latex_input] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_equation_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_command_definition] = STATE(176), - [sym_math_operator] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_pgf_library_import] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [sym_generic_command] = STATE(176), - [aux_sym_document_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(119), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(119), - [aux_sym_chapter_token1] = ACTIONS(119), - [aux_sym_section_token1] = ACTIONS(119), - [aux_sym_subsection_token1] = ACTIONS(119), - [aux_sym_subsubsection_token1] = ACTIONS(119), - [aux_sym_paragraph_token1] = ACTIONS(119), - [aux_sym_subparagraph_token1] = ACTIONS(119), - [anon_sym_BSLASHitem] = ACTIONS(119), - [anon_sym_LBRACK] = ACTIONS(117), - [anon_sym_LBRACE] = ACTIONS(117), - [anon_sym_LPAREN] = ACTIONS(117), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_EQ] = ACTIONS(117), - [sym_word] = ACTIONS(117), - [sym_param] = ACTIONS(117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(117), - [anon_sym_DOLLAR] = ACTIONS(119), - [anon_sym_BSLASH_LPAREN] = ACTIONS(117), - [anon_sym_BSLASH_RPAREN] = ACTIONS(117), - [anon_sym_BSLASHbegin] = ACTIONS(119), - [anon_sym_BSLASHcaption] = ACTIONS(119), - [aux_sym_citation_token1] = ACTIONS(119), - [aux_sym_package_include_token1] = ACTIONS(119), - [anon_sym_BSLASHdocumentclass] = ACTIONS(119), - [aux_sym_latex_include_token1] = ACTIONS(119), - [aux_sym_latex_input_token1] = ACTIONS(119), - [anon_sym_BSLASHaddbibresource] = ACTIONS(119), - [anon_sym_BSLASHbibliography] = ACTIONS(119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(119), - [anon_sym_BSLASHincludesvg] = ACTIONS(119), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(119), - [aux_sym_verbatim_include_token1] = ACTIONS(119), - [aux_sym_import_token1] = ACTIONS(119), - [anon_sym_BSLASHlabel] = ACTIONS(119), - [aux_sym_label_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHeqref] = ACTIONS(119), - [aux_sym_label_reference_range_token1] = ACTIONS(119), - [anon_sym_BSLASHnewlabel] = ACTIONS(119), - [aux_sym_command_definition_token1] = ACTIONS(119), - [aux_sym_math_operator_token1] = ACTIONS(119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(119), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHnewacronym] = ACTIONS(119), - [aux_sym_acronym_reference_token1] = ACTIONS(119), - [aux_sym_theorem_definition_token1] = ACTIONS(119), - [aux_sym_color_reference_token1] = ACTIONS(119), - [anon_sym_BSLASHdefinecolor] = ACTIONS(119), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(119), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(119), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(119), - }, - [248] = { - [sym__simple_content] = STATE(232), - [sym__content] = STATE(232), - [sym_part] = STATE(232), - [sym_chapter] = STATE(232), - [sym_section] = STATE(232), - [sym_subsection] = STATE(232), - [sym_subsubsection] = STATE(232), - [sym_paragraph] = STATE(232), - [sym_subparagraph] = STATE(232), - [sym_enum_item] = STATE(232), - [sym_brace_group] = STATE(232), - [sym_mixed_group] = STATE(232), - [sym_text] = STATE(232), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(232), - [sym_inline_formula] = STATE(232), - [sym_begin] = STATE(59), - [sym_environment] = STATE(232), - [sym_caption] = STATE(232), - [sym_citation] = STATE(232), - [sym_package_include] = STATE(232), - [sym_class_include] = STATE(232), - [sym_latex_include] = STATE(232), - [sym_latex_input] = STATE(232), - [sym_biblatex_include] = STATE(232), - [sym_bibtex_include] = STATE(232), - [sym_graphics_include] = STATE(232), - [sym_svg_include] = STATE(232), - [sym_inkscape_include] = STATE(232), - [sym_verbatim_include] = STATE(232), - [sym_import] = STATE(232), - [sym_label_definition] = STATE(232), - [sym_label_reference] = STATE(232), - [sym_equation_label_reference] = STATE(232), - [sym_label_reference_range] = STATE(232), - [sym_label_number] = STATE(232), - [sym_command_definition] = STATE(232), - [sym_math_operator] = STATE(232), - [sym_glossary_entry_definition] = STATE(232), - [sym_glossary_entry_reference] = STATE(232), - [sym_acronym_definition] = STATE(232), - [sym_acronym_reference] = STATE(232), - [sym_theorem_definition] = STATE(232), - [sym_color_reference] = STATE(232), - [sym_color_definition] = STATE(232), - [sym_color_set_definition] = STATE(232), - [sym_pgf_library_import] = STATE(232), - [sym_tikz_library_import] = STATE(232), - [sym_generic_command] = STATE(232), - [aux_sym_document_repeat1] = STATE(232), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(264), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(1865), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1869), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [249] = { - [sym__simple_content] = STATE(251), - [sym_subsection] = STATE(251), - [sym_subsubsection] = STATE(251), - [sym_paragraph] = STATE(251), - [sym_subparagraph] = STATE(251), - [sym_enum_item] = STATE(251), - [sym_brace_group] = STATE(251), - [sym_mixed_group] = STATE(251), - [sym_text] = STATE(251), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_begin] = STATE(52), - [sym_environment] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_latex_input] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_equation_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_command_definition] = STATE(251), - [sym_math_operator] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_pgf_library_import] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_generic_command] = STATE(251), - [aux_sym_section_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(1871), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1873), - [aux_sym_chapter_token1] = ACTIONS(1873), - [aux_sym_section_token1] = ACTIONS(1873), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1871), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1875), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [250] = { - [sym__simple_content] = STATE(249), - [sym_subsection] = STATE(249), - [sym_subsubsection] = STATE(249), - [sym_paragraph] = STATE(249), - [sym_subparagraph] = STATE(249), - [sym_enum_item] = STATE(249), - [sym_brace_group] = STATE(249), - [sym_mixed_group] = STATE(249), - [sym_text] = STATE(249), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(249), - [sym_inline_formula] = STATE(249), - [sym_begin] = STATE(52), - [sym_environment] = STATE(249), - [sym_caption] = STATE(249), - [sym_citation] = STATE(249), - [sym_package_include] = STATE(249), - [sym_class_include] = STATE(249), - [sym_latex_include] = STATE(249), - [sym_latex_input] = STATE(249), - [sym_biblatex_include] = STATE(249), - [sym_bibtex_include] = STATE(249), - [sym_graphics_include] = STATE(249), - [sym_svg_include] = STATE(249), - [sym_inkscape_include] = STATE(249), - [sym_verbatim_include] = STATE(249), - [sym_import] = STATE(249), - [sym_label_definition] = STATE(249), - [sym_label_reference] = STATE(249), - [sym_equation_label_reference] = STATE(249), - [sym_label_reference_range] = STATE(249), - [sym_label_number] = STATE(249), - [sym_command_definition] = STATE(249), - [sym_math_operator] = STATE(249), - [sym_glossary_entry_definition] = STATE(249), - [sym_glossary_entry_reference] = STATE(249), - [sym_acronym_definition] = STATE(249), - [sym_acronym_reference] = STATE(249), - [sym_theorem_definition] = STATE(249), - [sym_color_reference] = STATE(249), - [sym_color_definition] = STATE(249), - [sym_color_set_definition] = STATE(249), - [sym_pgf_library_import] = STATE(249), - [sym_tikz_library_import] = STATE(249), - [sym_generic_command] = STATE(249), - [aux_sym_section_repeat1] = STATE(249), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(1877), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1879), - [aux_sym_chapter_token1] = ACTIONS(1879), - [aux_sym_section_token1] = ACTIONS(1879), - [aux_sym_subsection_token1] = ACTIONS(15), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(1881), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [251] = { - [sym__simple_content] = STATE(251), - [sym_subsection] = STATE(251), - [sym_subsubsection] = STATE(251), - [sym_paragraph] = STATE(251), - [sym_subparagraph] = STATE(251), - [sym_enum_item] = STATE(251), - [sym_brace_group] = STATE(251), - [sym_mixed_group] = STATE(251), - [sym_text] = STATE(251), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_begin] = STATE(52), - [sym_environment] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_latex_input] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_equation_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_command_definition] = STATE(251), - [sym_math_operator] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_pgf_library_import] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [sym_generic_command] = STATE(251), - [aux_sym_section_repeat1] = STATE(251), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(1883), - [sym_generic_command_name] = ACTIONS(1885), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1888), - [aux_sym_chapter_token1] = ACTIONS(1888), - [aux_sym_section_token1] = ACTIONS(1888), - [aux_sym_subsection_token1] = ACTIONS(1890), - [aux_sym_subsubsection_token1] = ACTIONS(1893), - [aux_sym_paragraph_token1] = ACTIONS(1896), - [aux_sym_subparagraph_token1] = ACTIONS(1899), - [anon_sym_BSLASHitem] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_RBRACK] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(1908), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_RPAREN] = ACTIONS(1883), - [anon_sym_COMMA] = ACTIONS(1911), - [anon_sym_EQ] = ACTIONS(1911), - [sym_word] = ACTIONS(1911), - [sym_param] = ACTIONS(1914), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1917), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1923), - [anon_sym_BSLASHbegin] = ACTIONS(1926), - [anon_sym_BSLASHcaption] = ACTIONS(1929), - [aux_sym_citation_token1] = ACTIONS(1932), - [aux_sym_package_include_token1] = ACTIONS(1935), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1938), - [aux_sym_latex_include_token1] = ACTIONS(1941), - [aux_sym_latex_input_token1] = ACTIONS(1944), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), - [anon_sym_BSLASHbibliography] = ACTIONS(1950), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1953), - [anon_sym_BSLASHincludesvg] = ACTIONS(1956), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1959), - [aux_sym_verbatim_include_token1] = ACTIONS(1962), - [aux_sym_import_token1] = ACTIONS(1965), - [anon_sym_BSLASHlabel] = ACTIONS(1968), - [aux_sym_label_reference_token1] = ACTIONS(1971), - [anon_sym_BSLASHeqref] = ACTIONS(1974), - [aux_sym_label_reference_range_token1] = ACTIONS(1977), - [anon_sym_BSLASHnewlabel] = ACTIONS(1980), - [aux_sym_command_definition_token1] = ACTIONS(1983), - [aux_sym_math_operator_token1] = ACTIONS(1986), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1989), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(1992), - [anon_sym_BSLASHnewacronym] = ACTIONS(1995), - [aux_sym_acronym_reference_token1] = ACTIONS(1998), - [aux_sym_theorem_definition_token1] = ACTIONS(2001), - [aux_sym_color_reference_token1] = ACTIONS(2004), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2010), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2013), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2016), - }, - [252] = { - [sym__simple_content] = STATE(252), - [sym_subsubsection] = STATE(252), - [sym_paragraph] = STATE(252), - [sym_subparagraph] = STATE(252), - [sym_enum_item] = STATE(252), - [sym_brace_group] = STATE(252), - [sym_mixed_group] = STATE(252), - [sym_text] = STATE(252), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_begin] = STATE(52), - [sym_environment] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_latex_input] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_equation_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_command_definition] = STATE(252), - [sym_math_operator] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_pgf_library_import] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [sym_generic_command] = STATE(252), - [aux_sym_subsection_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(2019), - [sym_generic_command_name] = ACTIONS(2021), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2024), - [aux_sym_chapter_token1] = ACTIONS(2024), - [aux_sym_section_token1] = ACTIONS(2024), - [aux_sym_subsection_token1] = ACTIONS(2024), - [aux_sym_subsubsection_token1] = ACTIONS(2026), - [aux_sym_paragraph_token1] = ACTIONS(2029), - [aux_sym_subparagraph_token1] = ACTIONS(2032), - [anon_sym_BSLASHitem] = ACTIONS(2035), - [anon_sym_LBRACK] = ACTIONS(2038), - [anon_sym_RBRACK] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_RPAREN] = ACTIONS(2019), - [anon_sym_COMMA] = ACTIONS(2044), - [anon_sym_EQ] = ACTIONS(2044), - [sym_word] = ACTIONS(2044), - [sym_param] = ACTIONS(2047), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2050), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2050), - [anon_sym_DOLLAR] = ACTIONS(2053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2056), - [anon_sym_BSLASHbegin] = ACTIONS(2059), - [anon_sym_BSLASHcaption] = ACTIONS(2062), - [aux_sym_citation_token1] = ACTIONS(2065), - [aux_sym_package_include_token1] = ACTIONS(2068), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2071), - [aux_sym_latex_include_token1] = ACTIONS(2074), - [aux_sym_latex_input_token1] = ACTIONS(2077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2080), - [anon_sym_BSLASHbibliography] = ACTIONS(2083), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2086), - [anon_sym_BSLASHincludesvg] = ACTIONS(2089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2092), - [aux_sym_verbatim_include_token1] = ACTIONS(2095), - [aux_sym_import_token1] = ACTIONS(2098), - [anon_sym_BSLASHlabel] = ACTIONS(2101), - [aux_sym_label_reference_token1] = ACTIONS(2104), - [anon_sym_BSLASHeqref] = ACTIONS(2107), - [aux_sym_label_reference_range_token1] = ACTIONS(2110), - [anon_sym_BSLASHnewlabel] = ACTIONS(2113), - [aux_sym_command_definition_token1] = ACTIONS(2116), - [aux_sym_math_operator_token1] = ACTIONS(2119), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2122), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2125), - [anon_sym_BSLASHnewacronym] = ACTIONS(2128), - [aux_sym_acronym_reference_token1] = ACTIONS(2131), - [aux_sym_theorem_definition_token1] = ACTIONS(2134), - [aux_sym_color_reference_token1] = ACTIONS(2137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2140), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2146), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2149), - }, - [253] = { - [sym__simple_content] = STATE(263), - [sym_chapter] = STATE(263), - [sym_section] = STATE(263), - [sym_subsection] = STATE(263), - [sym_subsubsection] = STATE(263), - [sym_paragraph] = STATE(263), - [sym_subparagraph] = STATE(263), - [sym_enum_item] = STATE(263), - [sym_brace_group] = STATE(263), - [sym_mixed_group] = STATE(263), - [sym_text] = STATE(263), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(263), - [sym_inline_formula] = STATE(263), - [sym_begin] = STATE(59), - [sym_environment] = STATE(263), - [sym_caption] = STATE(263), - [sym_citation] = STATE(263), - [sym_package_include] = STATE(263), - [sym_class_include] = STATE(263), - [sym_latex_include] = STATE(263), - [sym_latex_input] = STATE(263), - [sym_biblatex_include] = STATE(263), - [sym_bibtex_include] = STATE(263), - [sym_graphics_include] = STATE(263), - [sym_svg_include] = STATE(263), - [sym_inkscape_include] = STATE(263), - [sym_verbatim_include] = STATE(263), - [sym_import] = STATE(263), - [sym_label_definition] = STATE(263), - [sym_label_reference] = STATE(263), - [sym_equation_label_reference] = STATE(263), - [sym_label_reference_range] = STATE(263), - [sym_label_number] = STATE(263), - [sym_command_definition] = STATE(263), - [sym_math_operator] = STATE(263), - [sym_glossary_entry_definition] = STATE(263), - [sym_glossary_entry_reference] = STATE(263), - [sym_acronym_definition] = STATE(263), - [sym_acronym_reference] = STATE(263), - [sym_theorem_definition] = STATE(263), - [sym_color_reference] = STATE(263), - [sym_color_definition] = STATE(263), - [sym_color_set_definition] = STATE(263), - [sym_pgf_library_import] = STATE(263), - [sym_tikz_library_import] = STATE(263), - [sym_generic_command] = STATE(263), - [aux_sym_part_repeat1] = STATE(263), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(836), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(2152), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [254] = { - [sym__simple_content] = STATE(253), - [sym_chapter] = STATE(253), - [sym_section] = STATE(253), - [sym_subsection] = STATE(253), - [sym_subsubsection] = STATE(253), - [sym_paragraph] = STATE(253), - [sym_subparagraph] = STATE(253), - [sym_enum_item] = STATE(253), - [sym_brace_group] = STATE(253), - [sym_mixed_group] = STATE(253), - [sym_text] = STATE(253), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(253), - [sym_inline_formula] = STATE(253), - [sym_begin] = STATE(59), - [sym_environment] = STATE(253), - [sym_caption] = STATE(253), - [sym_citation] = STATE(253), - [sym_package_include] = STATE(253), - [sym_class_include] = STATE(253), - [sym_latex_include] = STATE(253), - [sym_latex_input] = STATE(253), - [sym_biblatex_include] = STATE(253), - [sym_bibtex_include] = STATE(253), - [sym_graphics_include] = STATE(253), - [sym_svg_include] = STATE(253), - [sym_inkscape_include] = STATE(253), - [sym_verbatim_include] = STATE(253), - [sym_import] = STATE(253), - [sym_label_definition] = STATE(253), - [sym_label_reference] = STATE(253), - [sym_equation_label_reference] = STATE(253), - [sym_label_reference_range] = STATE(253), - [sym_label_number] = STATE(253), - [sym_command_definition] = STATE(253), - [sym_math_operator] = STATE(253), - [sym_glossary_entry_definition] = STATE(253), - [sym_glossary_entry_reference] = STATE(253), - [sym_acronym_definition] = STATE(253), - [sym_acronym_reference] = STATE(253), - [sym_theorem_definition] = STATE(253), - [sym_color_reference] = STATE(253), - [sym_color_definition] = STATE(253), - [sym_color_set_definition] = STATE(253), - [sym_pgf_library_import] = STATE(253), - [sym_tikz_library_import] = STATE(253), - [sym_generic_command] = STATE(253), - [aux_sym_part_repeat1] = STATE(253), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(564), - [aux_sym_chapter_token1] = ACTIONS(266), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(2154), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(562), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [255] = { - [sym__simple_content] = STATE(256), - [sym_subsubsection] = STATE(256), - [sym_paragraph] = STATE(256), - [sym_subparagraph] = STATE(256), - [sym_enum_item] = STATE(256), - [sym_brace_group] = STATE(256), - [sym_mixed_group] = STATE(256), - [sym_text] = STATE(256), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(256), - [sym_inline_formula] = STATE(256), - [sym_begin] = STATE(52), - [sym_environment] = STATE(256), - [sym_caption] = STATE(256), - [sym_citation] = STATE(256), - [sym_package_include] = STATE(256), - [sym_class_include] = STATE(256), - [sym_latex_include] = STATE(256), - [sym_latex_input] = STATE(256), - [sym_biblatex_include] = STATE(256), - [sym_bibtex_include] = STATE(256), - [sym_graphics_include] = STATE(256), - [sym_svg_include] = STATE(256), - [sym_inkscape_include] = STATE(256), - [sym_verbatim_include] = STATE(256), - [sym_import] = STATE(256), - [sym_label_definition] = STATE(256), - [sym_label_reference] = STATE(256), - [sym_equation_label_reference] = STATE(256), - [sym_label_reference_range] = STATE(256), - [sym_label_number] = STATE(256), - [sym_command_definition] = STATE(256), - [sym_math_operator] = STATE(256), - [sym_glossary_entry_definition] = STATE(256), - [sym_glossary_entry_reference] = STATE(256), - [sym_acronym_definition] = STATE(256), - [sym_acronym_reference] = STATE(256), - [sym_theorem_definition] = STATE(256), - [sym_color_reference] = STATE(256), - [sym_color_definition] = STATE(256), - [sym_color_set_definition] = STATE(256), - [sym_pgf_library_import] = STATE(256), - [sym_tikz_library_import] = STATE(256), - [sym_generic_command] = STATE(256), - [aux_sym_subsection_repeat1] = STATE(256), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(2156), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2158), - [aux_sym_chapter_token1] = ACTIONS(2158), - [aux_sym_section_token1] = ACTIONS(2158), - [aux_sym_subsection_token1] = ACTIONS(2158), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(2156), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(2160), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [256] = { - [sym__simple_content] = STATE(252), - [sym_subsubsection] = STATE(252), - [sym_paragraph] = STATE(252), - [sym_subparagraph] = STATE(252), - [sym_enum_item] = STATE(252), - [sym_brace_group] = STATE(252), - [sym_mixed_group] = STATE(252), - [sym_text] = STATE(252), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_begin] = STATE(52), - [sym_environment] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_latex_input] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_equation_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_command_definition] = STATE(252), - [sym_math_operator] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_pgf_library_import] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [sym_generic_command] = STATE(252), - [aux_sym_subsection_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2164), - [aux_sym_chapter_token1] = ACTIONS(2164), - [aux_sym_section_token1] = ACTIONS(2164), - [aux_sym_subsection_token1] = ACTIONS(2164), - [aux_sym_subsubsection_token1] = ACTIONS(17), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(2166), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [257] = { - [sym__simple_content] = STATE(260), - [sym_chapter] = STATE(260), - [sym_section] = STATE(260), - [sym_subsection] = STATE(260), - [sym_subsubsection] = STATE(260), - [sym_paragraph] = STATE(260), - [sym_subparagraph] = STATE(260), - [sym_enum_item] = STATE(260), - [sym_brace_group] = STATE(260), - [sym_mixed_group] = STATE(260), - [sym_text] = STATE(260), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(260), - [sym_inline_formula] = STATE(260), - [sym_begin] = STATE(73), - [sym_environment] = STATE(260), - [sym_caption] = STATE(260), - [sym_citation] = STATE(260), - [sym_package_include] = STATE(260), - [sym_class_include] = STATE(260), - [sym_latex_include] = STATE(260), - [sym_latex_input] = STATE(260), - [sym_biblatex_include] = STATE(260), - [sym_bibtex_include] = STATE(260), - [sym_graphics_include] = STATE(260), - [sym_svg_include] = STATE(260), - [sym_inkscape_include] = STATE(260), - [sym_verbatim_include] = STATE(260), - [sym_import] = STATE(260), - [sym_label_definition] = STATE(260), - [sym_label_reference] = STATE(260), - [sym_equation_label_reference] = STATE(260), - [sym_label_reference_range] = STATE(260), - [sym_label_number] = STATE(260), - [sym_command_definition] = STATE(260), - [sym_math_operator] = STATE(260), - [sym_glossary_entry_definition] = STATE(260), - [sym_glossary_entry_reference] = STATE(260), - [sym_acronym_definition] = STATE(260), - [sym_acronym_reference] = STATE(260), - [sym_theorem_definition] = STATE(260), - [sym_color_reference] = STATE(260), - [sym_color_definition] = STATE(260), - [sym_color_set_definition] = STATE(260), - [sym_pgf_library_import] = STATE(260), - [sym_tikz_library_import] = STATE(260), - [sym_generic_command] = STATE(260), - [aux_sym_part_repeat1] = STATE(260), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(564), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(2168), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(564), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [258] = { - [sym__simple_content] = STATE(261), - [sym_chapter] = STATE(261), - [sym_section] = STATE(261), - [sym_subsection] = STATE(261), - [sym_subsubsection] = STATE(261), - [sym_paragraph] = STATE(261), - [sym_subparagraph] = STATE(261), - [sym_enum_item] = STATE(261), - [sym_brace_group] = STATE(261), - [sym_mixed_group] = STATE(261), - [sym_text] = STATE(261), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(261), - [sym_inline_formula] = STATE(261), - [sym_begin] = STATE(86), - [sym_environment] = STATE(261), - [sym_caption] = STATE(261), - [sym_citation] = STATE(261), - [sym_package_include] = STATE(261), - [sym_class_include] = STATE(261), - [sym_latex_include] = STATE(261), - [sym_latex_input] = STATE(261), - [sym_biblatex_include] = STATE(261), - [sym_bibtex_include] = STATE(261), - [sym_graphics_include] = STATE(261), - [sym_svg_include] = STATE(261), - [sym_inkscape_include] = STATE(261), - [sym_verbatim_include] = STATE(261), - [sym_import] = STATE(261), - [sym_label_definition] = STATE(261), - [sym_label_reference] = STATE(261), - [sym_equation_label_reference] = STATE(261), - [sym_label_reference_range] = STATE(261), - [sym_label_number] = STATE(261), - [sym_command_definition] = STATE(261), - [sym_math_operator] = STATE(261), - [sym_glossary_entry_definition] = STATE(261), - [sym_glossary_entry_reference] = STATE(261), - [sym_acronym_definition] = STATE(261), - [sym_acronym_reference] = STATE(261), - [sym_theorem_definition] = STATE(261), - [sym_color_reference] = STATE(261), - [sym_color_definition] = STATE(261), - [sym_color_set_definition] = STATE(261), - [sym_pgf_library_import] = STATE(261), - [sym_tikz_library_import] = STATE(261), - [sym_generic_command] = STATE(261), - [aux_sym_part_repeat1] = STATE(261), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(2172), - [aux_sym_section_token1] = ACTIONS(2174), - [aux_sym_subsection_token1] = ACTIONS(2176), - [aux_sym_subsubsection_token1] = ACTIONS(2178), - [aux_sym_paragraph_token1] = ACTIONS(2180), - [aux_sym_subparagraph_token1] = ACTIONS(2182), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(2192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [259] = { - [sym__simple_content] = STATE(259), - [sym_chapter] = STATE(259), - [sym_section] = STATE(259), - [sym_subsection] = STATE(259), - [sym_subsubsection] = STATE(259), - [sym_paragraph] = STATE(259), - [sym_subparagraph] = STATE(259), - [sym_enum_item] = STATE(259), - [sym_brace_group] = STATE(259), - [sym_mixed_group] = STATE(259), - [sym_text] = STATE(259), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(259), - [sym_inline_formula] = STATE(259), - [sym_begin] = STATE(86), - [sym_environment] = STATE(259), - [sym_caption] = STATE(259), - [sym_citation] = STATE(259), - [sym_package_include] = STATE(259), - [sym_class_include] = STATE(259), - [sym_latex_include] = STATE(259), - [sym_latex_input] = STATE(259), - [sym_biblatex_include] = STATE(259), - [sym_bibtex_include] = STATE(259), - [sym_graphics_include] = STATE(259), - [sym_svg_include] = STATE(259), - [sym_inkscape_include] = STATE(259), - [sym_verbatim_include] = STATE(259), - [sym_import] = STATE(259), - [sym_label_definition] = STATE(259), - [sym_label_reference] = STATE(259), - [sym_equation_label_reference] = STATE(259), - [sym_label_reference_range] = STATE(259), - [sym_label_number] = STATE(259), - [sym_command_definition] = STATE(259), - [sym_math_operator] = STATE(259), - [sym_glossary_entry_definition] = STATE(259), - [sym_glossary_entry_reference] = STATE(259), - [sym_acronym_definition] = STATE(259), - [sym_acronym_reference] = STATE(259), - [sym_theorem_definition] = STATE(259), - [sym_color_reference] = STATE(259), - [sym_color_definition] = STATE(259), - [sym_color_set_definition] = STATE(259), - [sym_pgf_library_import] = STATE(259), - [sym_tikz_library_import] = STATE(259), - [sym_generic_command] = STATE(259), - [aux_sym_part_repeat1] = STATE(259), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2260), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(2263), - [aux_sym_section_token1] = ACTIONS(2266), - [aux_sym_subsection_token1] = ACTIONS(2269), - [aux_sym_subsubsection_token1] = ACTIONS(2272), - [aux_sym_paragraph_token1] = ACTIONS(2275), - [aux_sym_subparagraph_token1] = ACTIONS(2278), - [anon_sym_BSLASHitem] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_RBRACK] = ACTIONS(652), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(652), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_COMMA] = ACTIONS(2290), - [anon_sym_EQ] = ACTIONS(2290), - [sym_word] = ACTIONS(2290), - [sym_param] = ACTIONS(2293), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2296), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2296), - [anon_sym_DOLLAR] = ACTIONS(2299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2302), - [anon_sym_BSLASHbegin] = ACTIONS(701), - [anon_sym_BSLASHcaption] = ACTIONS(2305), - [aux_sym_citation_token1] = ACTIONS(2308), - [aux_sym_package_include_token1] = ACTIONS(2311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2314), - [aux_sym_latex_include_token1] = ACTIONS(2317), - [aux_sym_latex_input_token1] = ACTIONS(2320), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2323), - [anon_sym_BSLASHbibliography] = ACTIONS(2326), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2329), - [anon_sym_BSLASHincludesvg] = ACTIONS(2332), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2335), - [aux_sym_verbatim_include_token1] = ACTIONS(2338), - [aux_sym_import_token1] = ACTIONS(2341), - [anon_sym_BSLASHlabel] = ACTIONS(2344), - [aux_sym_label_reference_token1] = ACTIONS(2347), - [anon_sym_BSLASHeqref] = ACTIONS(2350), - [aux_sym_label_reference_range_token1] = ACTIONS(2353), - [anon_sym_BSLASHnewlabel] = ACTIONS(2356), - [aux_sym_command_definition_token1] = ACTIONS(2359), - [aux_sym_math_operator_token1] = ACTIONS(2362), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2365), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2368), - [anon_sym_BSLASHnewacronym] = ACTIONS(2371), - [aux_sym_acronym_reference_token1] = ACTIONS(2374), - [aux_sym_theorem_definition_token1] = ACTIONS(2377), - [aux_sym_color_reference_token1] = ACTIONS(2380), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2383), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2386), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2389), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2392), - }, - [260] = { - [sym__simple_content] = STATE(262), - [sym_chapter] = STATE(262), - [sym_section] = STATE(262), - [sym_subsection] = STATE(262), - [sym_subsubsection] = STATE(262), - [sym_paragraph] = STATE(262), - [sym_subparagraph] = STATE(262), - [sym_enum_item] = STATE(262), - [sym_brace_group] = STATE(262), - [sym_mixed_group] = STATE(262), - [sym_text] = STATE(262), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(262), - [sym_inline_formula] = STATE(262), - [sym_begin] = STATE(73), - [sym_environment] = STATE(262), - [sym_caption] = STATE(262), - [sym_citation] = STATE(262), - [sym_package_include] = STATE(262), - [sym_class_include] = STATE(262), - [sym_latex_include] = STATE(262), - [sym_latex_input] = STATE(262), - [sym_biblatex_include] = STATE(262), - [sym_bibtex_include] = STATE(262), - [sym_graphics_include] = STATE(262), - [sym_svg_include] = STATE(262), - [sym_inkscape_include] = STATE(262), - [sym_verbatim_include] = STATE(262), - [sym_import] = STATE(262), - [sym_label_definition] = STATE(262), - [sym_label_reference] = STATE(262), - [sym_equation_label_reference] = STATE(262), - [sym_label_reference_range] = STATE(262), - [sym_label_number] = STATE(262), - [sym_command_definition] = STATE(262), - [sym_math_operator] = STATE(262), - [sym_glossary_entry_definition] = STATE(262), - [sym_glossary_entry_reference] = STATE(262), - [sym_acronym_definition] = STATE(262), - [sym_acronym_reference] = STATE(262), - [sym_theorem_definition] = STATE(262), - [sym_color_reference] = STATE(262), - [sym_color_definition] = STATE(262), - [sym_color_set_definition] = STATE(262), - [sym_pgf_library_import] = STATE(262), - [sym_tikz_library_import] = STATE(262), - [sym_generic_command] = STATE(262), - [aux_sym_part_repeat1] = STATE(262), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(836), - [aux_sym_chapter_token1] = ACTIONS(460), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(2395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(836), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [261] = { - [sym__simple_content] = STATE(259), - [sym_chapter] = STATE(259), - [sym_section] = STATE(259), - [sym_subsection] = STATE(259), - [sym_subsubsection] = STATE(259), - [sym_paragraph] = STATE(259), - [sym_subparagraph] = STATE(259), - [sym_enum_item] = STATE(259), - [sym_brace_group] = STATE(259), - [sym_mixed_group] = STATE(259), - [sym_text] = STATE(259), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(259), - [sym_inline_formula] = STATE(259), - [sym_begin] = STATE(86), - [sym_environment] = STATE(259), - [sym_caption] = STATE(259), - [sym_citation] = STATE(259), - [sym_package_include] = STATE(259), - [sym_class_include] = STATE(259), - [sym_latex_include] = STATE(259), - [sym_latex_input] = STATE(259), - [sym_biblatex_include] = STATE(259), - [sym_bibtex_include] = STATE(259), - [sym_graphics_include] = STATE(259), - [sym_svg_include] = STATE(259), - [sym_inkscape_include] = STATE(259), - [sym_verbatim_include] = STATE(259), - [sym_import] = STATE(259), - [sym_label_definition] = STATE(259), - [sym_label_reference] = STATE(259), - [sym_equation_label_reference] = STATE(259), - [sym_label_reference_range] = STATE(259), - [sym_label_number] = STATE(259), - [sym_command_definition] = STATE(259), - [sym_math_operator] = STATE(259), - [sym_glossary_entry_definition] = STATE(259), - [sym_glossary_entry_reference] = STATE(259), - [sym_acronym_definition] = STATE(259), - [sym_acronym_reference] = STATE(259), - [sym_theorem_definition] = STATE(259), - [sym_color_reference] = STATE(259), - [sym_color_definition] = STATE(259), - [sym_color_set_definition] = STATE(259), - [sym_pgf_library_import] = STATE(259), - [sym_tikz_library_import] = STATE(259), - [sym_generic_command] = STATE(259), - [aux_sym_part_repeat1] = STATE(259), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(2172), - [aux_sym_section_token1] = ACTIONS(2174), - [aux_sym_subsection_token1] = ACTIONS(2176), - [aux_sym_subsubsection_token1] = ACTIONS(2178), - [aux_sym_paragraph_token1] = ACTIONS(2180), - [aux_sym_subparagraph_token1] = ACTIONS(2182), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(834), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(2397), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [262] = { - [sym__simple_content] = STATE(262), - [sym_chapter] = STATE(262), - [sym_section] = STATE(262), - [sym_subsection] = STATE(262), - [sym_subsubsection] = STATE(262), - [sym_paragraph] = STATE(262), - [sym_subparagraph] = STATE(262), - [sym_enum_item] = STATE(262), - [sym_brace_group] = STATE(262), - [sym_mixed_group] = STATE(262), - [sym_text] = STATE(262), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(262), - [sym_inline_formula] = STATE(262), - [sym_begin] = STATE(73), - [sym_environment] = STATE(262), - [sym_caption] = STATE(262), - [sym_citation] = STATE(262), - [sym_package_include] = STATE(262), - [sym_class_include] = STATE(262), - [sym_latex_include] = STATE(262), - [sym_latex_input] = STATE(262), - [sym_biblatex_include] = STATE(262), - [sym_bibtex_include] = STATE(262), - [sym_graphics_include] = STATE(262), - [sym_svg_include] = STATE(262), - [sym_inkscape_include] = STATE(262), - [sym_verbatim_include] = STATE(262), - [sym_import] = STATE(262), - [sym_label_definition] = STATE(262), - [sym_label_reference] = STATE(262), - [sym_equation_label_reference] = STATE(262), - [sym_label_reference_range] = STATE(262), - [sym_label_number] = STATE(262), - [sym_command_definition] = STATE(262), - [sym_math_operator] = STATE(262), - [sym_glossary_entry_definition] = STATE(262), - [sym_glossary_entry_reference] = STATE(262), - [sym_acronym_definition] = STATE(262), - [sym_acronym_reference] = STATE(262), - [sym_theorem_definition] = STATE(262), - [sym_color_reference] = STATE(262), - [sym_color_definition] = STATE(262), - [sym_color_set_definition] = STATE(262), - [sym_pgf_library_import] = STATE(262), - [sym_tikz_library_import] = STATE(262), - [sym_generic_command] = STATE(262), - [aux_sym_part_repeat1] = STATE(262), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(2399), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(657), - [aux_sym_chapter_token1] = ACTIONS(2402), - [aux_sym_section_token1] = ACTIONS(2405), - [aux_sym_subsection_token1] = ACTIONS(2408), - [aux_sym_subsubsection_token1] = ACTIONS(2411), - [aux_sym_paragraph_token1] = ACTIONS(2414), - [aux_sym_subparagraph_token1] = ACTIONS(2417), - [anon_sym_BSLASHitem] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2423), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_COMMA] = ACTIONS(2429), - [anon_sym_EQ] = ACTIONS(2429), - [sym_word] = ACTIONS(2429), - [sym_param] = ACTIONS(2432), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2438), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2441), - [anon_sym_BSLASHbegin] = ACTIONS(701), - [anon_sym_BSLASHend] = ACTIONS(657), - [anon_sym_BSLASHcaption] = ACTIONS(2444), - [aux_sym_citation_token1] = ACTIONS(2447), - [aux_sym_package_include_token1] = ACTIONS(2450), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2453), - [aux_sym_latex_include_token1] = ACTIONS(2456), - [aux_sym_latex_input_token1] = ACTIONS(2459), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2462), - [anon_sym_BSLASHbibliography] = ACTIONS(2465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2468), - [anon_sym_BSLASHincludesvg] = ACTIONS(2471), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2474), - [aux_sym_verbatim_include_token1] = ACTIONS(2477), - [aux_sym_import_token1] = ACTIONS(2480), - [anon_sym_BSLASHlabel] = ACTIONS(2483), - [aux_sym_label_reference_token1] = ACTIONS(2486), - [anon_sym_BSLASHeqref] = ACTIONS(2489), - [aux_sym_label_reference_range_token1] = ACTIONS(2492), - [anon_sym_BSLASHnewlabel] = ACTIONS(2495), - [aux_sym_command_definition_token1] = ACTIONS(2498), - [aux_sym_math_operator_token1] = ACTIONS(2501), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2504), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2507), - [anon_sym_BSLASHnewacronym] = ACTIONS(2510), - [aux_sym_acronym_reference_token1] = ACTIONS(2513), - [aux_sym_theorem_definition_token1] = ACTIONS(2516), - [aux_sym_color_reference_token1] = ACTIONS(2519), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2522), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2525), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2528), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2531), - }, - [263] = { - [sym__simple_content] = STATE(263), - [sym_chapter] = STATE(263), - [sym_section] = STATE(263), - [sym_subsection] = STATE(263), - [sym_subsubsection] = STATE(263), - [sym_paragraph] = STATE(263), - [sym_subparagraph] = STATE(263), - [sym_enum_item] = STATE(263), - [sym_brace_group] = STATE(263), - [sym_mixed_group] = STATE(263), - [sym_text] = STATE(263), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(263), - [sym_inline_formula] = STATE(263), - [sym_begin] = STATE(59), - [sym_environment] = STATE(263), - [sym_caption] = STATE(263), - [sym_citation] = STATE(263), - [sym_package_include] = STATE(263), - [sym_class_include] = STATE(263), - [sym_latex_include] = STATE(263), - [sym_latex_input] = STATE(263), - [sym_biblatex_include] = STATE(263), - [sym_bibtex_include] = STATE(263), - [sym_graphics_include] = STATE(263), - [sym_svg_include] = STATE(263), - [sym_inkscape_include] = STATE(263), - [sym_verbatim_include] = STATE(263), - [sym_import] = STATE(263), - [sym_label_definition] = STATE(263), - [sym_label_reference] = STATE(263), - [sym_equation_label_reference] = STATE(263), - [sym_label_reference_range] = STATE(263), - [sym_label_number] = STATE(263), - [sym_command_definition] = STATE(263), - [sym_math_operator] = STATE(263), - [sym_glossary_entry_definition] = STATE(263), - [sym_glossary_entry_reference] = STATE(263), - [sym_acronym_definition] = STATE(263), - [sym_acronym_reference] = STATE(263), - [sym_theorem_definition] = STATE(263), - [sym_color_reference] = STATE(263), - [sym_color_definition] = STATE(263), - [sym_color_set_definition] = STATE(263), - [sym_pgf_library_import] = STATE(263), - [sym_tikz_library_import] = STATE(263), - [sym_generic_command] = STATE(263), - [aux_sym_part_repeat1] = STATE(263), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(2534), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(657), - [aux_sym_chapter_token1] = ACTIONS(2537), - [aux_sym_section_token1] = ACTIONS(2540), - [aux_sym_subsection_token1] = ACTIONS(2543), - [aux_sym_subsubsection_token1] = ACTIONS(2546), - [aux_sym_paragraph_token1] = ACTIONS(2549), - [aux_sym_subparagraph_token1] = ACTIONS(2552), - [anon_sym_BSLASHitem] = ACTIONS(2555), - [anon_sym_LBRACK] = ACTIONS(2558), - [anon_sym_LBRACE] = ACTIONS(2561), - [anon_sym_LPAREN] = ACTIONS(2558), - [anon_sym_COMMA] = ACTIONS(2564), - [anon_sym_EQ] = ACTIONS(2564), - [sym_word] = ACTIONS(2564), - [sym_param] = ACTIONS(2567), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2570), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2570), - [anon_sym_BSLASH_RBRACK] = ACTIONS(652), - [anon_sym_DOLLAR] = ACTIONS(2573), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2576), - [anon_sym_BSLASHbegin] = ACTIONS(701), - [anon_sym_BSLASHcaption] = ACTIONS(2579), - [aux_sym_citation_token1] = ACTIONS(2582), - [aux_sym_package_include_token1] = ACTIONS(2585), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2588), - [aux_sym_latex_include_token1] = ACTIONS(2591), - [aux_sym_latex_input_token1] = ACTIONS(2594), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2597), - [anon_sym_BSLASHbibliography] = ACTIONS(2600), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2603), - [anon_sym_BSLASHincludesvg] = ACTIONS(2606), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2609), - [aux_sym_verbatim_include_token1] = ACTIONS(2612), - [aux_sym_import_token1] = ACTIONS(2615), - [anon_sym_BSLASHlabel] = ACTIONS(2618), - [aux_sym_label_reference_token1] = ACTIONS(2621), - [anon_sym_BSLASHeqref] = ACTIONS(2624), - [aux_sym_label_reference_range_token1] = ACTIONS(2627), - [anon_sym_BSLASHnewlabel] = ACTIONS(2630), - [aux_sym_command_definition_token1] = ACTIONS(2633), - [aux_sym_math_operator_token1] = ACTIONS(2636), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2639), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2642), - [anon_sym_BSLASHnewacronym] = ACTIONS(2645), - [aux_sym_acronym_reference_token1] = ACTIONS(2648), - [aux_sym_theorem_definition_token1] = ACTIONS(2651), - [aux_sym_color_reference_token1] = ACTIONS(2654), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2657), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2660), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2663), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2666), - }, - [264] = { - [sym__simple_content] = STATE(265), - [sym_chapter] = STATE(265), - [sym_section] = STATE(265), - [sym_subsection] = STATE(265), - [sym_subsubsection] = STATE(265), - [sym_paragraph] = STATE(265), - [sym_subparagraph] = STATE(265), - [sym_enum_item] = STATE(265), - [sym_brace_group] = STATE(265), - [sym_mixed_group] = STATE(265), - [sym_text] = STATE(265), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(265), - [sym_inline_formula] = STATE(265), - [sym_begin] = STATE(66), - [sym_environment] = STATE(265), - [sym_caption] = STATE(265), - [sym_citation] = STATE(265), - [sym_package_include] = STATE(265), - [sym_class_include] = STATE(265), - [sym_latex_include] = STATE(265), - [sym_latex_input] = STATE(265), - [sym_biblatex_include] = STATE(265), - [sym_bibtex_include] = STATE(265), - [sym_graphics_include] = STATE(265), - [sym_svg_include] = STATE(265), - [sym_inkscape_include] = STATE(265), - [sym_verbatim_include] = STATE(265), - [sym_import] = STATE(265), - [sym_label_definition] = STATE(265), - [sym_label_reference] = STATE(265), - [sym_equation_label_reference] = STATE(265), - [sym_label_reference_range] = STATE(265), - [sym_label_number] = STATE(265), - [sym_command_definition] = STATE(265), - [sym_math_operator] = STATE(265), - [sym_glossary_entry_definition] = STATE(265), - [sym_glossary_entry_reference] = STATE(265), - [sym_acronym_definition] = STATE(265), - [sym_acronym_reference] = STATE(265), - [sym_theorem_definition] = STATE(265), - [sym_color_reference] = STATE(265), - [sym_color_definition] = STATE(265), - [sym_color_set_definition] = STATE(265), - [sym_pgf_library_import] = STATE(265), - [sym_tikz_library_import] = STATE(265), - [sym_generic_command] = STATE(265), - [aux_sym_part_repeat1] = STATE(265), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(836), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(2669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(834), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [265] = { - [sym__simple_content] = STATE(265), - [sym_chapter] = STATE(265), - [sym_section] = STATE(265), - [sym_subsection] = STATE(265), - [sym_subsubsection] = STATE(265), - [sym_paragraph] = STATE(265), - [sym_subparagraph] = STATE(265), - [sym_enum_item] = STATE(265), - [sym_brace_group] = STATE(265), - [sym_mixed_group] = STATE(265), - [sym_text] = STATE(265), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(265), - [sym_inline_formula] = STATE(265), - [sym_begin] = STATE(66), - [sym_environment] = STATE(265), - [sym_caption] = STATE(265), - [sym_citation] = STATE(265), - [sym_package_include] = STATE(265), - [sym_class_include] = STATE(265), - [sym_latex_include] = STATE(265), - [sym_latex_input] = STATE(265), - [sym_biblatex_include] = STATE(265), - [sym_bibtex_include] = STATE(265), - [sym_graphics_include] = STATE(265), - [sym_svg_include] = STATE(265), - [sym_inkscape_include] = STATE(265), - [sym_verbatim_include] = STATE(265), - [sym_import] = STATE(265), - [sym_label_definition] = STATE(265), - [sym_label_reference] = STATE(265), - [sym_equation_label_reference] = STATE(265), - [sym_label_reference_range] = STATE(265), - [sym_label_number] = STATE(265), - [sym_command_definition] = STATE(265), - [sym_math_operator] = STATE(265), - [sym_glossary_entry_definition] = STATE(265), - [sym_glossary_entry_reference] = STATE(265), - [sym_acronym_definition] = STATE(265), - [sym_acronym_reference] = STATE(265), - [sym_theorem_definition] = STATE(265), - [sym_color_reference] = STATE(265), - [sym_color_definition] = STATE(265), - [sym_color_set_definition] = STATE(265), - [sym_pgf_library_import] = STATE(265), - [sym_tikz_library_import] = STATE(265), - [sym_generic_command] = STATE(265), - [aux_sym_part_repeat1] = STATE(265), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(2673), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(657), - [aux_sym_chapter_token1] = ACTIONS(2676), - [aux_sym_section_token1] = ACTIONS(2679), - [aux_sym_subsection_token1] = ACTIONS(2682), - [aux_sym_subsubsection_token1] = ACTIONS(2685), - [aux_sym_paragraph_token1] = ACTIONS(2688), - [aux_sym_subparagraph_token1] = ACTIONS(2691), - [anon_sym_BSLASHitem] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_COMMA] = ACTIONS(2703), - [anon_sym_EQ] = ACTIONS(2703), - [sym_word] = ACTIONS(2703), - [sym_param] = ACTIONS(2706), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2709), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2709), - [anon_sym_DOLLAR] = ACTIONS(2712), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2715), - [anon_sym_BSLASH_RPAREN] = ACTIONS(652), - [anon_sym_BSLASHbegin] = ACTIONS(701), - [anon_sym_BSLASHcaption] = ACTIONS(2718), - [aux_sym_citation_token1] = ACTIONS(2721), - [aux_sym_package_include_token1] = ACTIONS(2724), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2727), - [aux_sym_latex_include_token1] = ACTIONS(2730), - [aux_sym_latex_input_token1] = ACTIONS(2733), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2736), - [anon_sym_BSLASHbibliography] = ACTIONS(2739), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2742), - [anon_sym_BSLASHincludesvg] = ACTIONS(2745), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2748), - [aux_sym_verbatim_include_token1] = ACTIONS(2751), - [aux_sym_import_token1] = ACTIONS(2754), - [anon_sym_BSLASHlabel] = ACTIONS(2757), - [aux_sym_label_reference_token1] = ACTIONS(2760), - [anon_sym_BSLASHeqref] = ACTIONS(2763), - [aux_sym_label_reference_range_token1] = ACTIONS(2766), - [anon_sym_BSLASHnewlabel] = ACTIONS(2769), - [aux_sym_command_definition_token1] = ACTIONS(2772), - [aux_sym_math_operator_token1] = ACTIONS(2775), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2778), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2781), - [anon_sym_BSLASHnewacronym] = ACTIONS(2784), - [aux_sym_acronym_reference_token1] = ACTIONS(2787), - [aux_sym_theorem_definition_token1] = ACTIONS(2790), - [aux_sym_color_reference_token1] = ACTIONS(2793), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2796), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2799), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2802), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2805), - }, - [266] = { - [sym__simple_content] = STATE(2212), - [sym__content] = STATE(2212), - [sym_part] = STATE(2212), - [sym_chapter] = STATE(2212), - [sym_section] = STATE(2212), - [sym_subsection] = STATE(2212), - [sym_subsubsection] = STATE(2212), - [sym_paragraph] = STATE(2212), - [sym_subparagraph] = STATE(2212), - [sym_enum_item] = STATE(2212), - [sym_brace_group] = STATE(2212), - [sym_mixed_group] = STATE(2212), - [sym_text] = STATE(2212), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(2212), - [sym_inline_formula] = STATE(2212), - [sym_begin] = STATE(52), - [sym_environment] = STATE(2212), - [sym_caption] = STATE(2212), - [sym_citation] = STATE(2212), - [sym_package_include] = STATE(2212), - [sym_class_include] = STATE(2212), - [sym_latex_include] = STATE(2212), - [sym_latex_input] = STATE(2212), - [sym_biblatex_include] = STATE(2212), - [sym_bibtex_include] = STATE(2212), - [sym_graphics_include] = STATE(2212), - [sym_svg_include] = STATE(2212), - [sym_inkscape_include] = STATE(2212), - [sym_verbatim_include] = STATE(2212), - [sym_import] = STATE(2212), - [sym_label_definition] = STATE(2212), - [sym_label_reference] = STATE(2212), - [sym_equation_label_reference] = STATE(2212), - [sym_label_reference_range] = STATE(2212), - [sym_label_number] = STATE(2212), - [sym_command_definition] = STATE(2212), - [sym_math_operator] = STATE(2212), - [sym_glossary_entry_definition] = STATE(2212), - [sym_glossary_entry_reference] = STATE(2212), - [sym_acronym_definition] = STATE(2212), - [sym_acronym_reference] = STATE(2212), - [sym_theorem_definition] = STATE(2212), - [sym_color_reference] = STATE(2212), - [sym_color_definition] = STATE(2212), - [sym_color_set_definition] = STATE(2212), - [sym_pgf_library_import] = STATE(2212), - [sym_tikz_library_import] = STATE(2212), - [sym_generic_command] = STATE(2212), - [aux_sym_text_repeat1] = STATE(475), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2808), - [aux_sym_chapter_token1] = ACTIONS(2810), - [aux_sym_section_token1] = ACTIONS(2812), - [aux_sym_subsection_token1] = ACTIONS(2814), - [aux_sym_subsubsection_token1] = ACTIONS(2816), - [aux_sym_paragraph_token1] = ACTIONS(2818), - [aux_sym_subparagraph_token1] = ACTIONS(2820), - [anon_sym_BSLASHitem] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(2824), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2826), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2826), - [anon_sym_DOLLAR] = ACTIONS(2828), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2830), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [267] = { - [sym__simple_content] = STATE(264), - [sym_chapter] = STATE(264), - [sym_section] = STATE(264), - [sym_subsection] = STATE(264), - [sym_subsubsection] = STATE(264), - [sym_paragraph] = STATE(264), - [sym_subparagraph] = STATE(264), - [sym_enum_item] = STATE(264), - [sym_brace_group] = STATE(264), - [sym_mixed_group] = STATE(264), - [sym_text] = STATE(264), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(264), - [sym_inline_formula] = STATE(264), - [sym_begin] = STATE(66), - [sym_environment] = STATE(264), - [sym_caption] = STATE(264), - [sym_citation] = STATE(264), - [sym_package_include] = STATE(264), - [sym_class_include] = STATE(264), - [sym_latex_include] = STATE(264), - [sym_latex_input] = STATE(264), - [sym_biblatex_include] = STATE(264), - [sym_bibtex_include] = STATE(264), - [sym_graphics_include] = STATE(264), - [sym_svg_include] = STATE(264), - [sym_inkscape_include] = STATE(264), - [sym_verbatim_include] = STATE(264), - [sym_import] = STATE(264), - [sym_label_definition] = STATE(264), - [sym_label_reference] = STATE(264), - [sym_equation_label_reference] = STATE(264), - [sym_label_reference_range] = STATE(264), - [sym_label_number] = STATE(264), - [sym_command_definition] = STATE(264), - [sym_math_operator] = STATE(264), - [sym_glossary_entry_definition] = STATE(264), - [sym_glossary_entry_reference] = STATE(264), - [sym_acronym_definition] = STATE(264), - [sym_acronym_reference] = STATE(264), - [sym_theorem_definition] = STATE(264), - [sym_color_reference] = STATE(264), - [sym_color_definition] = STATE(264), - [sym_color_set_definition] = STATE(264), - [sym_pgf_library_import] = STATE(264), - [sym_tikz_library_import] = STATE(264), - [sym_generic_command] = STATE(264), - [aux_sym_part_repeat1] = STATE(264), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(564), - [aux_sym_chapter_token1] = ACTIONS(362), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(2832), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(562), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [268] = { - [sym__simple_content] = STATE(275), - [sym_paragraph] = STATE(275), - [sym_subparagraph] = STATE(275), - [sym_enum_item] = STATE(275), - [sym_brace_group] = STATE(275), - [sym_mixed_group] = STATE(275), - [sym_text] = STATE(275), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(275), - [sym_inline_formula] = STATE(275), - [sym_begin] = STATE(52), - [sym_environment] = STATE(275), - [sym_caption] = STATE(275), - [sym_citation] = STATE(275), - [sym_package_include] = STATE(275), - [sym_class_include] = STATE(275), - [sym_latex_include] = STATE(275), - [sym_latex_input] = STATE(275), - [sym_biblatex_include] = STATE(275), - [sym_bibtex_include] = STATE(275), - [sym_graphics_include] = STATE(275), - [sym_svg_include] = STATE(275), - [sym_inkscape_include] = STATE(275), - [sym_verbatim_include] = STATE(275), - [sym_import] = STATE(275), - [sym_label_definition] = STATE(275), - [sym_label_reference] = STATE(275), - [sym_equation_label_reference] = STATE(275), - [sym_label_reference_range] = STATE(275), - [sym_label_number] = STATE(275), - [sym_command_definition] = STATE(275), - [sym_math_operator] = STATE(275), - [sym_glossary_entry_definition] = STATE(275), - [sym_glossary_entry_reference] = STATE(275), - [sym_acronym_definition] = STATE(275), - [sym_acronym_reference] = STATE(275), - [sym_theorem_definition] = STATE(275), - [sym_color_reference] = STATE(275), - [sym_color_definition] = STATE(275), - [sym_color_set_definition] = STATE(275), - [sym_pgf_library_import] = STATE(275), - [sym_tikz_library_import] = STATE(275), - [sym_generic_command] = STATE(275), - [aux_sym_subsubsection_repeat1] = STATE(275), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(2834), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2836), - [aux_sym_chapter_token1] = ACTIONS(2836), - [aux_sym_section_token1] = ACTIONS(2836), - [aux_sym_subsection_token1] = ACTIONS(2836), - [aux_sym_subsubsection_token1] = ACTIONS(2836), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(2838), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [269] = { - [sym__simple_content] = STATE(269), - [sym_section] = STATE(269), - [sym_subsection] = STATE(269), - [sym_subsubsection] = STATE(269), - [sym_paragraph] = STATE(269), - [sym_subparagraph] = STATE(269), - [sym_enum_item] = STATE(269), - [sym_brace_group] = STATE(269), - [sym_mixed_group] = STATE(269), - [sym_text] = STATE(269), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(269), - [sym_inline_formula] = STATE(269), - [sym_begin] = STATE(86), - [sym_environment] = STATE(269), - [sym_caption] = STATE(269), - [sym_citation] = STATE(269), - [sym_package_include] = STATE(269), - [sym_class_include] = STATE(269), - [sym_latex_include] = STATE(269), - [sym_latex_input] = STATE(269), - [sym_biblatex_include] = STATE(269), - [sym_bibtex_include] = STATE(269), - [sym_graphics_include] = STATE(269), - [sym_svg_include] = STATE(269), - [sym_inkscape_include] = STATE(269), - [sym_verbatim_include] = STATE(269), - [sym_import] = STATE(269), - [sym_label_definition] = STATE(269), - [sym_label_reference] = STATE(269), - [sym_equation_label_reference] = STATE(269), - [sym_label_reference_range] = STATE(269), - [sym_label_number] = STATE(269), - [sym_command_definition] = STATE(269), - [sym_math_operator] = STATE(269), - [sym_glossary_entry_definition] = STATE(269), - [sym_glossary_entry_reference] = STATE(269), - [sym_acronym_definition] = STATE(269), - [sym_acronym_reference] = STATE(269), - [sym_theorem_definition] = STATE(269), - [sym_color_reference] = STATE(269), - [sym_color_definition] = STATE(269), - [sym_color_set_definition] = STATE(269), - [sym_pgf_library_import] = STATE(269), - [sym_tikz_library_import] = STATE(269), - [sym_generic_command] = STATE(269), - [aux_sym_chapter_repeat1] = STATE(269), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2840), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(1455), - [aux_sym_section_token1] = ACTIONS(2843), - [aux_sym_subsection_token1] = ACTIONS(2846), - [aux_sym_subsubsection_token1] = ACTIONS(2849), - [aux_sym_paragraph_token1] = ACTIONS(2852), - [aux_sym_subparagraph_token1] = ACTIONS(2855), - [anon_sym_BSLASHitem] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2861), - [anon_sym_RBRACK] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(2861), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_EQ] = ACTIONS(2867), - [sym_word] = ACTIONS(2867), - [sym_param] = ACTIONS(2870), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2873), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2873), - [anon_sym_DOLLAR] = ACTIONS(2876), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2879), - [anon_sym_BSLASHbegin] = ACTIONS(1496), - [anon_sym_BSLASHcaption] = ACTIONS(2882), - [aux_sym_citation_token1] = ACTIONS(2885), - [aux_sym_package_include_token1] = ACTIONS(2888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2891), - [aux_sym_latex_include_token1] = ACTIONS(2894), - [aux_sym_latex_input_token1] = ACTIONS(2897), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2900), - [anon_sym_BSLASHbibliography] = ACTIONS(2903), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2906), - [anon_sym_BSLASHincludesvg] = ACTIONS(2909), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2912), - [aux_sym_verbatim_include_token1] = ACTIONS(2915), - [aux_sym_import_token1] = ACTIONS(2918), - [anon_sym_BSLASHlabel] = ACTIONS(2921), - [aux_sym_label_reference_token1] = ACTIONS(2924), - [anon_sym_BSLASHeqref] = ACTIONS(2927), - [aux_sym_label_reference_range_token1] = ACTIONS(2930), - [anon_sym_BSLASHnewlabel] = ACTIONS(2933), - [aux_sym_command_definition_token1] = ACTIONS(2936), - [aux_sym_math_operator_token1] = ACTIONS(2939), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2942), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2945), - [anon_sym_BSLASHnewacronym] = ACTIONS(2948), - [aux_sym_acronym_reference_token1] = ACTIONS(2951), - [aux_sym_theorem_definition_token1] = ACTIONS(2954), - [aux_sym_color_reference_token1] = ACTIONS(2957), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2960), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2963), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2966), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2969), - }, - [270] = { - [sym__simple_content] = STATE(281), - [sym_section] = STATE(281), - [sym_subsection] = STATE(281), - [sym_subsubsection] = STATE(281), - [sym_paragraph] = STATE(281), - [sym_subparagraph] = STATE(281), - [sym_enum_item] = STATE(281), - [sym_brace_group] = STATE(281), - [sym_mixed_group] = STATE(281), - [sym_text] = STATE(281), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(281), - [sym_inline_formula] = STATE(281), - [sym_begin] = STATE(59), - [sym_environment] = STATE(281), - [sym_caption] = STATE(281), - [sym_citation] = STATE(281), - [sym_package_include] = STATE(281), - [sym_class_include] = STATE(281), - [sym_latex_include] = STATE(281), - [sym_latex_input] = STATE(281), - [sym_biblatex_include] = STATE(281), - [sym_bibtex_include] = STATE(281), - [sym_graphics_include] = STATE(281), - [sym_svg_include] = STATE(281), - [sym_inkscape_include] = STATE(281), - [sym_verbatim_include] = STATE(281), - [sym_import] = STATE(281), - [sym_label_definition] = STATE(281), - [sym_label_reference] = STATE(281), - [sym_equation_label_reference] = STATE(281), - [sym_label_reference_range] = STATE(281), - [sym_label_number] = STATE(281), - [sym_command_definition] = STATE(281), - [sym_math_operator] = STATE(281), - [sym_glossary_entry_definition] = STATE(281), - [sym_glossary_entry_reference] = STATE(281), - [sym_acronym_definition] = STATE(281), - [sym_acronym_reference] = STATE(281), - [sym_theorem_definition] = STATE(281), - [sym_color_reference] = STATE(281), - [sym_color_definition] = STATE(281), - [sym_color_set_definition] = STATE(281), - [sym_pgf_library_import] = STATE(281), - [sym_tikz_library_import] = STATE(281), - [sym_generic_command] = STATE(281), - [aux_sym_chapter_repeat1] = STATE(281), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1032), - [aux_sym_chapter_token1] = ACTIONS(1032), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(2972), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [271] = { - [sym__simple_content] = STATE(282), - [sym_section] = STATE(282), - [sym_subsection] = STATE(282), - [sym_subsubsection] = STATE(282), - [sym_paragraph] = STATE(282), - [sym_subparagraph] = STATE(282), - [sym_enum_item] = STATE(282), - [sym_brace_group] = STATE(282), - [sym_mixed_group] = STATE(282), - [sym_text] = STATE(282), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(282), - [sym_inline_formula] = STATE(282), - [sym_begin] = STATE(66), - [sym_environment] = STATE(282), - [sym_caption] = STATE(282), - [sym_citation] = STATE(282), - [sym_package_include] = STATE(282), - [sym_class_include] = STATE(282), - [sym_latex_include] = STATE(282), - [sym_latex_input] = STATE(282), - [sym_biblatex_include] = STATE(282), - [sym_bibtex_include] = STATE(282), - [sym_graphics_include] = STATE(282), - [sym_svg_include] = STATE(282), - [sym_inkscape_include] = STATE(282), - [sym_verbatim_include] = STATE(282), - [sym_import] = STATE(282), - [sym_label_definition] = STATE(282), - [sym_label_reference] = STATE(282), - [sym_equation_label_reference] = STATE(282), - [sym_label_reference_range] = STATE(282), - [sym_label_number] = STATE(282), - [sym_command_definition] = STATE(282), - [sym_math_operator] = STATE(282), - [sym_glossary_entry_definition] = STATE(282), - [sym_glossary_entry_reference] = STATE(282), - [sym_acronym_definition] = STATE(282), - [sym_acronym_reference] = STATE(282), - [sym_theorem_definition] = STATE(282), - [sym_color_reference] = STATE(282), - [sym_color_definition] = STATE(282), - [sym_color_set_definition] = STATE(282), - [sym_pgf_library_import] = STATE(282), - [sym_tikz_library_import] = STATE(282), - [sym_generic_command] = STATE(282), - [aux_sym_chapter_repeat1] = STATE(282), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1801), - [aux_sym_chapter_token1] = ACTIONS(1801), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(2974), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1799), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [272] = { - [sym__simple_content] = STATE(270), - [sym_section] = STATE(270), - [sym_subsection] = STATE(270), - [sym_subsubsection] = STATE(270), - [sym_paragraph] = STATE(270), - [sym_subparagraph] = STATE(270), - [sym_enum_item] = STATE(270), - [sym_brace_group] = STATE(270), - [sym_mixed_group] = STATE(270), - [sym_text] = STATE(270), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(270), - [sym_inline_formula] = STATE(270), - [sym_begin] = STATE(59), - [sym_environment] = STATE(270), - [sym_caption] = STATE(270), - [sym_citation] = STATE(270), - [sym_package_include] = STATE(270), - [sym_class_include] = STATE(270), - [sym_latex_include] = STATE(270), - [sym_latex_input] = STATE(270), - [sym_biblatex_include] = STATE(270), - [sym_bibtex_include] = STATE(270), - [sym_graphics_include] = STATE(270), - [sym_svg_include] = STATE(270), - [sym_inkscape_include] = STATE(270), - [sym_verbatim_include] = STATE(270), - [sym_import] = STATE(270), - [sym_label_definition] = STATE(270), - [sym_label_reference] = STATE(270), - [sym_equation_label_reference] = STATE(270), - [sym_label_reference_range] = STATE(270), - [sym_label_number] = STATE(270), - [sym_command_definition] = STATE(270), - [sym_math_operator] = STATE(270), - [sym_glossary_entry_definition] = STATE(270), - [sym_glossary_entry_reference] = STATE(270), - [sym_acronym_definition] = STATE(270), - [sym_acronym_reference] = STATE(270), - [sym_theorem_definition] = STATE(270), - [sym_color_reference] = STATE(270), - [sym_color_definition] = STATE(270), - [sym_color_set_definition] = STATE(270), - [sym_pgf_library_import] = STATE(270), - [sym_tikz_library_import] = STATE(270), - [sym_generic_command] = STATE(270), - [aux_sym_chapter_repeat1] = STATE(270), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1801), - [aux_sym_chapter_token1] = ACTIONS(1801), - [aux_sym_section_token1] = ACTIONS(268), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(2976), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [273] = { - [sym__simple_content] = STATE(273), - [sym_section] = STATE(273), - [sym_subsection] = STATE(273), - [sym_subsubsection] = STATE(273), - [sym_paragraph] = STATE(273), - [sym_subparagraph] = STATE(273), - [sym_enum_item] = STATE(273), - [sym_brace_group] = STATE(273), - [sym_mixed_group] = STATE(273), - [sym_text] = STATE(273), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(273), - [sym_inline_formula] = STATE(273), - [sym_begin] = STATE(73), - [sym_environment] = STATE(273), - [sym_caption] = STATE(273), - [sym_citation] = STATE(273), - [sym_package_include] = STATE(273), - [sym_class_include] = STATE(273), - [sym_latex_include] = STATE(273), - [sym_latex_input] = STATE(273), - [sym_biblatex_include] = STATE(273), - [sym_bibtex_include] = STATE(273), - [sym_graphics_include] = STATE(273), - [sym_svg_include] = STATE(273), - [sym_inkscape_include] = STATE(273), - [sym_verbatim_include] = STATE(273), - [sym_import] = STATE(273), - [sym_label_definition] = STATE(273), - [sym_label_reference] = STATE(273), - [sym_equation_label_reference] = STATE(273), - [sym_label_reference_range] = STATE(273), - [sym_label_number] = STATE(273), - [sym_command_definition] = STATE(273), - [sym_math_operator] = STATE(273), - [sym_glossary_entry_definition] = STATE(273), - [sym_glossary_entry_reference] = STATE(273), - [sym_acronym_definition] = STATE(273), - [sym_acronym_reference] = STATE(273), - [sym_theorem_definition] = STATE(273), - [sym_color_reference] = STATE(273), - [sym_color_definition] = STATE(273), - [sym_color_set_definition] = STATE(273), - [sym_pgf_library_import] = STATE(273), - [sym_tikz_library_import] = STATE(273), - [sym_generic_command] = STATE(273), - [aux_sym_chapter_repeat1] = STATE(273), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(2978), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1455), - [aux_sym_chapter_token1] = ACTIONS(1455), - [aux_sym_section_token1] = ACTIONS(2981), - [aux_sym_subsection_token1] = ACTIONS(2984), - [aux_sym_subsubsection_token1] = ACTIONS(2987), - [aux_sym_paragraph_token1] = ACTIONS(2990), - [aux_sym_subparagraph_token1] = ACTIONS(2993), - [anon_sym_BSLASHitem] = ACTIONS(2996), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_EQ] = ACTIONS(3005), - [sym_word] = ACTIONS(3005), - [sym_param] = ACTIONS(3008), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3011), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3011), - [anon_sym_DOLLAR] = ACTIONS(3014), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3017), - [anon_sym_BSLASHbegin] = ACTIONS(1496), - [anon_sym_BSLASHend] = ACTIONS(1455), - [anon_sym_BSLASHcaption] = ACTIONS(3020), - [aux_sym_citation_token1] = ACTIONS(3023), - [aux_sym_package_include_token1] = ACTIONS(3026), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3029), - [aux_sym_latex_include_token1] = ACTIONS(3032), - [aux_sym_latex_input_token1] = ACTIONS(3035), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3038), - [anon_sym_BSLASHbibliography] = ACTIONS(3041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3044), - [anon_sym_BSLASHincludesvg] = ACTIONS(3047), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3050), - [aux_sym_verbatim_include_token1] = ACTIONS(3053), - [aux_sym_import_token1] = ACTIONS(3056), - [anon_sym_BSLASHlabel] = ACTIONS(3059), - [aux_sym_label_reference_token1] = ACTIONS(3062), - [anon_sym_BSLASHeqref] = ACTIONS(3065), - [aux_sym_label_reference_range_token1] = ACTIONS(3068), - [anon_sym_BSLASHnewlabel] = ACTIONS(3071), - [aux_sym_command_definition_token1] = ACTIONS(3074), - [aux_sym_math_operator_token1] = ACTIONS(3077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3080), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3083), - [anon_sym_BSLASHnewacronym] = ACTIONS(3086), - [aux_sym_acronym_reference_token1] = ACTIONS(3089), - [aux_sym_theorem_definition_token1] = ACTIONS(3092), - [aux_sym_color_reference_token1] = ACTIONS(3095), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3098), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3104), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3107), - }, - [274] = { - [sym__simple_content] = STATE(276), - [sym_section] = STATE(276), - [sym_subsection] = STATE(276), - [sym_subsubsection] = STATE(276), - [sym_paragraph] = STATE(276), - [sym_subparagraph] = STATE(276), - [sym_enum_item] = STATE(276), - [sym_brace_group] = STATE(276), - [sym_mixed_group] = STATE(276), - [sym_text] = STATE(276), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(276), - [sym_inline_formula] = STATE(276), - [sym_begin] = STATE(86), - [sym_environment] = STATE(276), - [sym_caption] = STATE(276), - [sym_citation] = STATE(276), - [sym_package_include] = STATE(276), - [sym_class_include] = STATE(276), - [sym_latex_include] = STATE(276), - [sym_latex_input] = STATE(276), - [sym_biblatex_include] = STATE(276), - [sym_bibtex_include] = STATE(276), - [sym_graphics_include] = STATE(276), - [sym_svg_include] = STATE(276), - [sym_inkscape_include] = STATE(276), - [sym_verbatim_include] = STATE(276), - [sym_import] = STATE(276), - [sym_label_definition] = STATE(276), - [sym_label_reference] = STATE(276), - [sym_equation_label_reference] = STATE(276), - [sym_label_reference_range] = STATE(276), - [sym_label_number] = STATE(276), - [sym_command_definition] = STATE(276), - [sym_math_operator] = STATE(276), - [sym_glossary_entry_definition] = STATE(276), - [sym_glossary_entry_reference] = STATE(276), - [sym_acronym_definition] = STATE(276), - [sym_acronym_reference] = STATE(276), - [sym_theorem_definition] = STATE(276), - [sym_color_reference] = STATE(276), - [sym_color_definition] = STATE(276), - [sym_color_set_definition] = STATE(276), - [sym_pgf_library_import] = STATE(276), - [sym_tikz_library_import] = STATE(276), - [sym_generic_command] = STATE(276), - [aux_sym_chapter_repeat1] = STATE(276), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(1801), - [aux_sym_section_token1] = ACTIONS(2174), - [aux_sym_subsection_token1] = ACTIONS(2176), - [aux_sym_subsubsection_token1] = ACTIONS(2178), - [aux_sym_paragraph_token1] = ACTIONS(2180), - [aux_sym_subparagraph_token1] = ACTIONS(2182), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(3110), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [275] = { - [sym__simple_content] = STATE(275), - [sym_paragraph] = STATE(275), - [sym_subparagraph] = STATE(275), - [sym_enum_item] = STATE(275), - [sym_brace_group] = STATE(275), - [sym_mixed_group] = STATE(275), - [sym_text] = STATE(275), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(275), - [sym_inline_formula] = STATE(275), - [sym_begin] = STATE(52), - [sym_environment] = STATE(275), - [sym_caption] = STATE(275), - [sym_citation] = STATE(275), - [sym_package_include] = STATE(275), - [sym_class_include] = STATE(275), - [sym_latex_include] = STATE(275), - [sym_latex_input] = STATE(275), - [sym_biblatex_include] = STATE(275), - [sym_bibtex_include] = STATE(275), - [sym_graphics_include] = STATE(275), - [sym_svg_include] = STATE(275), - [sym_inkscape_include] = STATE(275), - [sym_verbatim_include] = STATE(275), - [sym_import] = STATE(275), - [sym_label_definition] = STATE(275), - [sym_label_reference] = STATE(275), - [sym_equation_label_reference] = STATE(275), - [sym_label_reference_range] = STATE(275), - [sym_label_number] = STATE(275), - [sym_command_definition] = STATE(275), - [sym_math_operator] = STATE(275), - [sym_glossary_entry_definition] = STATE(275), - [sym_glossary_entry_reference] = STATE(275), - [sym_acronym_definition] = STATE(275), - [sym_acronym_reference] = STATE(275), - [sym_theorem_definition] = STATE(275), - [sym_color_reference] = STATE(275), - [sym_color_definition] = STATE(275), - [sym_color_set_definition] = STATE(275), - [sym_pgf_library_import] = STATE(275), - [sym_tikz_library_import] = STATE(275), - [sym_generic_command] = STATE(275), - [aux_sym_subsubsection_repeat1] = STATE(275), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(3112), - [sym_generic_command_name] = ACTIONS(3114), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3117), - [aux_sym_chapter_token1] = ACTIONS(3117), - [aux_sym_section_token1] = ACTIONS(3117), - [aux_sym_subsection_token1] = ACTIONS(3117), - [aux_sym_subsubsection_token1] = ACTIONS(3117), - [aux_sym_paragraph_token1] = ACTIONS(3119), - [aux_sym_subparagraph_token1] = ACTIONS(3122), - [anon_sym_BSLASHitem] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_RPAREN] = ACTIONS(3112), - [anon_sym_COMMA] = ACTIONS(3134), - [anon_sym_EQ] = ACTIONS(3134), - [sym_word] = ACTIONS(3134), - [sym_param] = ACTIONS(3137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3140), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3140), - [anon_sym_DOLLAR] = ACTIONS(3143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3146), - [anon_sym_BSLASHbegin] = ACTIONS(3149), - [anon_sym_BSLASHcaption] = ACTIONS(3152), - [aux_sym_citation_token1] = ACTIONS(3155), - [aux_sym_package_include_token1] = ACTIONS(3158), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3161), - [aux_sym_latex_include_token1] = ACTIONS(3164), - [aux_sym_latex_input_token1] = ACTIONS(3167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3170), - [anon_sym_BSLASHbibliography] = ACTIONS(3173), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3176), - [anon_sym_BSLASHincludesvg] = ACTIONS(3179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3182), - [aux_sym_verbatim_include_token1] = ACTIONS(3185), - [aux_sym_import_token1] = ACTIONS(3188), - [anon_sym_BSLASHlabel] = ACTIONS(3191), - [aux_sym_label_reference_token1] = ACTIONS(3194), - [anon_sym_BSLASHeqref] = ACTIONS(3197), - [aux_sym_label_reference_range_token1] = ACTIONS(3200), - [anon_sym_BSLASHnewlabel] = ACTIONS(3203), - [aux_sym_command_definition_token1] = ACTIONS(3206), - [aux_sym_math_operator_token1] = ACTIONS(3209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3212), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3215), - [anon_sym_BSLASHnewacronym] = ACTIONS(3218), - [aux_sym_acronym_reference_token1] = ACTIONS(3221), - [aux_sym_theorem_definition_token1] = ACTIONS(3224), - [aux_sym_color_reference_token1] = ACTIONS(3227), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3230), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3233), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3236), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3239), - }, - [276] = { - [sym__simple_content] = STATE(269), - [sym_section] = STATE(269), - [sym_subsection] = STATE(269), - [sym_subsubsection] = STATE(269), - [sym_paragraph] = STATE(269), - [sym_subparagraph] = STATE(269), - [sym_enum_item] = STATE(269), - [sym_brace_group] = STATE(269), - [sym_mixed_group] = STATE(269), - [sym_text] = STATE(269), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(269), - [sym_inline_formula] = STATE(269), - [sym_begin] = STATE(86), - [sym_environment] = STATE(269), - [sym_caption] = STATE(269), - [sym_citation] = STATE(269), - [sym_package_include] = STATE(269), - [sym_class_include] = STATE(269), - [sym_latex_include] = STATE(269), - [sym_latex_input] = STATE(269), - [sym_biblatex_include] = STATE(269), - [sym_bibtex_include] = STATE(269), - [sym_graphics_include] = STATE(269), - [sym_svg_include] = STATE(269), - [sym_inkscape_include] = STATE(269), - [sym_verbatim_include] = STATE(269), - [sym_import] = STATE(269), - [sym_label_definition] = STATE(269), - [sym_label_reference] = STATE(269), - [sym_equation_label_reference] = STATE(269), - [sym_label_reference_range] = STATE(269), - [sym_label_number] = STATE(269), - [sym_command_definition] = STATE(269), - [sym_math_operator] = STATE(269), - [sym_glossary_entry_definition] = STATE(269), - [sym_glossary_entry_reference] = STATE(269), - [sym_acronym_definition] = STATE(269), - [sym_acronym_reference] = STATE(269), - [sym_theorem_definition] = STATE(269), - [sym_color_reference] = STATE(269), - [sym_color_definition] = STATE(269), - [sym_color_set_definition] = STATE(269), - [sym_pgf_library_import] = STATE(269), - [sym_tikz_library_import] = STATE(269), - [sym_generic_command] = STATE(269), - [aux_sym_chapter_repeat1] = STATE(269), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(1032), - [aux_sym_section_token1] = ACTIONS(2174), - [aux_sym_subsection_token1] = ACTIONS(2176), - [aux_sym_subsubsection_token1] = ACTIONS(2178), - [aux_sym_paragraph_token1] = ACTIONS(2180), - [aux_sym_subparagraph_token1] = ACTIONS(2182), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(3242), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [277] = { - [sym__simple_content] = STATE(279), - [sym_section] = STATE(279), - [sym_subsection] = STATE(279), - [sym_subsubsection] = STATE(279), - [sym_paragraph] = STATE(279), - [sym_subparagraph] = STATE(279), - [sym_enum_item] = STATE(279), - [sym_brace_group] = STATE(279), - [sym_mixed_group] = STATE(279), - [sym_text] = STATE(279), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(279), - [sym_inline_formula] = STATE(279), - [sym_begin] = STATE(73), - [sym_environment] = STATE(279), - [sym_caption] = STATE(279), - [sym_citation] = STATE(279), - [sym_package_include] = STATE(279), - [sym_class_include] = STATE(279), - [sym_latex_include] = STATE(279), - [sym_latex_input] = STATE(279), - [sym_biblatex_include] = STATE(279), - [sym_bibtex_include] = STATE(279), - [sym_graphics_include] = STATE(279), - [sym_svg_include] = STATE(279), - [sym_inkscape_include] = STATE(279), - [sym_verbatim_include] = STATE(279), - [sym_import] = STATE(279), - [sym_label_definition] = STATE(279), - [sym_label_reference] = STATE(279), - [sym_equation_label_reference] = STATE(279), - [sym_label_reference_range] = STATE(279), - [sym_label_number] = STATE(279), - [sym_command_definition] = STATE(279), - [sym_math_operator] = STATE(279), - [sym_glossary_entry_definition] = STATE(279), - [sym_glossary_entry_reference] = STATE(279), - [sym_acronym_definition] = STATE(279), - [sym_acronym_reference] = STATE(279), - [sym_theorem_definition] = STATE(279), - [sym_color_reference] = STATE(279), - [sym_color_definition] = STATE(279), - [sym_color_set_definition] = STATE(279), - [sym_pgf_library_import] = STATE(279), - [sym_tikz_library_import] = STATE(279), - [sym_generic_command] = STATE(279), - [aux_sym_chapter_repeat1] = STATE(279), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1801), - [aux_sym_chapter_token1] = ACTIONS(1801), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(3244), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(1801), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [278] = { - [sym__simple_content] = STATE(278), - [sym_section] = STATE(278), - [sym_subsection] = STATE(278), - [sym_subsubsection] = STATE(278), - [sym_paragraph] = STATE(278), - [sym_subparagraph] = STATE(278), - [sym_enum_item] = STATE(278), - [sym_brace_group] = STATE(278), - [sym_mixed_group] = STATE(278), - [sym_text] = STATE(278), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(278), - [sym_inline_formula] = STATE(278), - [sym_begin] = STATE(66), - [sym_environment] = STATE(278), - [sym_caption] = STATE(278), - [sym_citation] = STATE(278), - [sym_package_include] = STATE(278), - [sym_class_include] = STATE(278), - [sym_latex_include] = STATE(278), - [sym_latex_input] = STATE(278), - [sym_biblatex_include] = STATE(278), - [sym_bibtex_include] = STATE(278), - [sym_graphics_include] = STATE(278), - [sym_svg_include] = STATE(278), - [sym_inkscape_include] = STATE(278), - [sym_verbatim_include] = STATE(278), - [sym_import] = STATE(278), - [sym_label_definition] = STATE(278), - [sym_label_reference] = STATE(278), - [sym_equation_label_reference] = STATE(278), - [sym_label_reference_range] = STATE(278), - [sym_label_number] = STATE(278), - [sym_command_definition] = STATE(278), - [sym_math_operator] = STATE(278), - [sym_glossary_entry_definition] = STATE(278), - [sym_glossary_entry_reference] = STATE(278), - [sym_acronym_definition] = STATE(278), - [sym_acronym_reference] = STATE(278), - [sym_theorem_definition] = STATE(278), - [sym_color_reference] = STATE(278), - [sym_color_definition] = STATE(278), - [sym_color_set_definition] = STATE(278), - [sym_pgf_library_import] = STATE(278), - [sym_tikz_library_import] = STATE(278), - [sym_generic_command] = STATE(278), - [aux_sym_chapter_repeat1] = STATE(278), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(3246), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1455), - [aux_sym_chapter_token1] = ACTIONS(1455), - [aux_sym_section_token1] = ACTIONS(3249), - [aux_sym_subsection_token1] = ACTIONS(3252), - [aux_sym_subsubsection_token1] = ACTIONS(3255), - [aux_sym_paragraph_token1] = ACTIONS(3258), - [aux_sym_subparagraph_token1] = ACTIONS(3261), - [anon_sym_BSLASHitem] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_COMMA] = ACTIONS(3273), - [anon_sym_EQ] = ACTIONS(3273), - [sym_word] = ACTIONS(3273), - [sym_param] = ACTIONS(3276), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3279), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3279), - [anon_sym_DOLLAR] = ACTIONS(3282), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3285), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1450), - [anon_sym_BSLASHbegin] = ACTIONS(1496), - [anon_sym_BSLASHcaption] = ACTIONS(3288), - [aux_sym_citation_token1] = ACTIONS(3291), - [aux_sym_package_include_token1] = ACTIONS(3294), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3297), - [aux_sym_latex_include_token1] = ACTIONS(3300), - [aux_sym_latex_input_token1] = ACTIONS(3303), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3306), - [anon_sym_BSLASHbibliography] = ACTIONS(3309), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3312), - [anon_sym_BSLASHincludesvg] = ACTIONS(3315), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3318), - [aux_sym_verbatim_include_token1] = ACTIONS(3321), - [aux_sym_import_token1] = ACTIONS(3324), - [anon_sym_BSLASHlabel] = ACTIONS(3327), - [aux_sym_label_reference_token1] = ACTIONS(3330), - [anon_sym_BSLASHeqref] = ACTIONS(3333), - [aux_sym_label_reference_range_token1] = ACTIONS(3336), - [anon_sym_BSLASHnewlabel] = ACTIONS(3339), - [aux_sym_command_definition_token1] = ACTIONS(3342), - [aux_sym_math_operator_token1] = ACTIONS(3345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3348), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3351), - [anon_sym_BSLASHnewacronym] = ACTIONS(3354), - [aux_sym_acronym_reference_token1] = ACTIONS(3357), - [aux_sym_theorem_definition_token1] = ACTIONS(3360), - [aux_sym_color_reference_token1] = ACTIONS(3363), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3366), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3369), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3372), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3375), - }, - [279] = { - [sym__simple_content] = STATE(273), - [sym_section] = STATE(273), - [sym_subsection] = STATE(273), - [sym_subsubsection] = STATE(273), - [sym_paragraph] = STATE(273), - [sym_subparagraph] = STATE(273), - [sym_enum_item] = STATE(273), - [sym_brace_group] = STATE(273), - [sym_mixed_group] = STATE(273), - [sym_text] = STATE(273), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(273), - [sym_inline_formula] = STATE(273), - [sym_begin] = STATE(73), - [sym_environment] = STATE(273), - [sym_caption] = STATE(273), - [sym_citation] = STATE(273), - [sym_package_include] = STATE(273), - [sym_class_include] = STATE(273), - [sym_latex_include] = STATE(273), - [sym_latex_input] = STATE(273), - [sym_biblatex_include] = STATE(273), - [sym_bibtex_include] = STATE(273), - [sym_graphics_include] = STATE(273), - [sym_svg_include] = STATE(273), - [sym_inkscape_include] = STATE(273), - [sym_verbatim_include] = STATE(273), - [sym_import] = STATE(273), - [sym_label_definition] = STATE(273), - [sym_label_reference] = STATE(273), - [sym_equation_label_reference] = STATE(273), - [sym_label_reference_range] = STATE(273), - [sym_label_number] = STATE(273), - [sym_command_definition] = STATE(273), - [sym_math_operator] = STATE(273), - [sym_glossary_entry_definition] = STATE(273), - [sym_glossary_entry_reference] = STATE(273), - [sym_acronym_definition] = STATE(273), - [sym_acronym_reference] = STATE(273), - [sym_theorem_definition] = STATE(273), - [sym_color_reference] = STATE(273), - [sym_color_definition] = STATE(273), - [sym_color_set_definition] = STATE(273), - [sym_pgf_library_import] = STATE(273), - [sym_tikz_library_import] = STATE(273), - [sym_generic_command] = STATE(273), - [aux_sym_chapter_repeat1] = STATE(273), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1032), - [aux_sym_chapter_token1] = ACTIONS(1032), - [aux_sym_section_token1] = ACTIONS(462), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(3378), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(1032), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [280] = { - [sym__simple_content] = STATE(268), - [sym_paragraph] = STATE(268), - [sym_subparagraph] = STATE(268), - [sym_enum_item] = STATE(268), - [sym_brace_group] = STATE(268), - [sym_mixed_group] = STATE(268), - [sym_text] = STATE(268), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(268), - [sym_inline_formula] = STATE(268), - [sym_begin] = STATE(52), - [sym_environment] = STATE(268), - [sym_caption] = STATE(268), - [sym_citation] = STATE(268), - [sym_package_include] = STATE(268), - [sym_class_include] = STATE(268), - [sym_latex_include] = STATE(268), - [sym_latex_input] = STATE(268), - [sym_biblatex_include] = STATE(268), - [sym_bibtex_include] = STATE(268), - [sym_graphics_include] = STATE(268), - [sym_svg_include] = STATE(268), - [sym_inkscape_include] = STATE(268), - [sym_verbatim_include] = STATE(268), - [sym_import] = STATE(268), - [sym_label_definition] = STATE(268), - [sym_label_reference] = STATE(268), - [sym_equation_label_reference] = STATE(268), - [sym_label_reference_range] = STATE(268), - [sym_label_number] = STATE(268), - [sym_command_definition] = STATE(268), - [sym_math_operator] = STATE(268), - [sym_glossary_entry_definition] = STATE(268), - [sym_glossary_entry_reference] = STATE(268), - [sym_acronym_definition] = STATE(268), - [sym_acronym_reference] = STATE(268), - [sym_theorem_definition] = STATE(268), - [sym_color_reference] = STATE(268), - [sym_color_definition] = STATE(268), - [sym_color_set_definition] = STATE(268), - [sym_pgf_library_import] = STATE(268), - [sym_tikz_library_import] = STATE(268), - [sym_generic_command] = STATE(268), - [aux_sym_subsubsection_repeat1] = STATE(268), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(3380), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3382), - [aux_sym_chapter_token1] = ACTIONS(3382), - [aux_sym_section_token1] = ACTIONS(3382), - [aux_sym_subsection_token1] = ACTIONS(3382), - [aux_sym_subsubsection_token1] = ACTIONS(3382), - [aux_sym_paragraph_token1] = ACTIONS(19), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(3380), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(3384), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [281] = { - [sym__simple_content] = STATE(281), - [sym_section] = STATE(281), - [sym_subsection] = STATE(281), - [sym_subsubsection] = STATE(281), - [sym_paragraph] = STATE(281), - [sym_subparagraph] = STATE(281), - [sym_enum_item] = STATE(281), - [sym_brace_group] = STATE(281), - [sym_mixed_group] = STATE(281), - [sym_text] = STATE(281), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(281), - [sym_inline_formula] = STATE(281), - [sym_begin] = STATE(59), - [sym_environment] = STATE(281), - [sym_caption] = STATE(281), - [sym_citation] = STATE(281), - [sym_package_include] = STATE(281), - [sym_class_include] = STATE(281), - [sym_latex_include] = STATE(281), - [sym_latex_input] = STATE(281), - [sym_biblatex_include] = STATE(281), - [sym_bibtex_include] = STATE(281), - [sym_graphics_include] = STATE(281), - [sym_svg_include] = STATE(281), - [sym_inkscape_include] = STATE(281), - [sym_verbatim_include] = STATE(281), - [sym_import] = STATE(281), - [sym_label_definition] = STATE(281), - [sym_label_reference] = STATE(281), - [sym_equation_label_reference] = STATE(281), - [sym_label_reference_range] = STATE(281), - [sym_label_number] = STATE(281), - [sym_command_definition] = STATE(281), - [sym_math_operator] = STATE(281), - [sym_glossary_entry_definition] = STATE(281), - [sym_glossary_entry_reference] = STATE(281), - [sym_acronym_definition] = STATE(281), - [sym_acronym_reference] = STATE(281), - [sym_theorem_definition] = STATE(281), - [sym_color_reference] = STATE(281), - [sym_color_definition] = STATE(281), - [sym_color_set_definition] = STATE(281), - [sym_pgf_library_import] = STATE(281), - [sym_tikz_library_import] = STATE(281), - [sym_generic_command] = STATE(281), - [aux_sym_chapter_repeat1] = STATE(281), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(3386), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1455), - [aux_sym_chapter_token1] = ACTIONS(1455), - [aux_sym_section_token1] = ACTIONS(3389), - [aux_sym_subsection_token1] = ACTIONS(3392), - [aux_sym_subsubsection_token1] = ACTIONS(3395), - [aux_sym_paragraph_token1] = ACTIONS(3398), - [aux_sym_subparagraph_token1] = ACTIONS(3401), - [anon_sym_BSLASHitem] = ACTIONS(3404), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(3413), - [sym_word] = ACTIONS(3413), - [sym_param] = ACTIONS(3416), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3419), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3419), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1450), - [anon_sym_DOLLAR] = ACTIONS(3422), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3425), - [anon_sym_BSLASHbegin] = ACTIONS(1496), - [anon_sym_BSLASHcaption] = ACTIONS(3428), - [aux_sym_citation_token1] = ACTIONS(3431), - [aux_sym_package_include_token1] = ACTIONS(3434), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3437), - [aux_sym_latex_include_token1] = ACTIONS(3440), - [aux_sym_latex_input_token1] = ACTIONS(3443), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3446), - [anon_sym_BSLASHbibliography] = ACTIONS(3449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3452), - [anon_sym_BSLASHincludesvg] = ACTIONS(3455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3458), - [aux_sym_verbatim_include_token1] = ACTIONS(3461), - [aux_sym_import_token1] = ACTIONS(3464), - [anon_sym_BSLASHlabel] = ACTIONS(3467), - [aux_sym_label_reference_token1] = ACTIONS(3470), - [anon_sym_BSLASHeqref] = ACTIONS(3473), - [aux_sym_label_reference_range_token1] = ACTIONS(3476), - [anon_sym_BSLASHnewlabel] = ACTIONS(3479), - [aux_sym_command_definition_token1] = ACTIONS(3482), - [aux_sym_math_operator_token1] = ACTIONS(3485), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3488), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3491), - [anon_sym_BSLASHnewacronym] = ACTIONS(3494), - [aux_sym_acronym_reference_token1] = ACTIONS(3497), - [aux_sym_theorem_definition_token1] = ACTIONS(3500), - [aux_sym_color_reference_token1] = ACTIONS(3503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3506), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3509), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3512), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3515), - }, - [282] = { - [sym__simple_content] = STATE(278), - [sym_section] = STATE(278), - [sym_subsection] = STATE(278), - [sym_subsubsection] = STATE(278), - [sym_paragraph] = STATE(278), - [sym_subparagraph] = STATE(278), - [sym_enum_item] = STATE(278), - [sym_brace_group] = STATE(278), - [sym_mixed_group] = STATE(278), - [sym_text] = STATE(278), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(278), - [sym_inline_formula] = STATE(278), - [sym_begin] = STATE(66), - [sym_environment] = STATE(278), - [sym_caption] = STATE(278), - [sym_citation] = STATE(278), - [sym_package_include] = STATE(278), - [sym_class_include] = STATE(278), - [sym_latex_include] = STATE(278), - [sym_latex_input] = STATE(278), - [sym_biblatex_include] = STATE(278), - [sym_bibtex_include] = STATE(278), - [sym_graphics_include] = STATE(278), - [sym_svg_include] = STATE(278), - [sym_inkscape_include] = STATE(278), - [sym_verbatim_include] = STATE(278), - [sym_import] = STATE(278), - [sym_label_definition] = STATE(278), - [sym_label_reference] = STATE(278), - [sym_equation_label_reference] = STATE(278), - [sym_label_reference_range] = STATE(278), - [sym_label_number] = STATE(278), - [sym_command_definition] = STATE(278), - [sym_math_operator] = STATE(278), - [sym_glossary_entry_definition] = STATE(278), - [sym_glossary_entry_reference] = STATE(278), - [sym_acronym_definition] = STATE(278), - [sym_acronym_reference] = STATE(278), - [sym_theorem_definition] = STATE(278), - [sym_color_reference] = STATE(278), - [sym_color_definition] = STATE(278), - [sym_color_set_definition] = STATE(278), - [sym_pgf_library_import] = STATE(278), - [sym_tikz_library_import] = STATE(278), - [sym_generic_command] = STATE(278), - [aux_sym_chapter_repeat1] = STATE(278), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1032), - [aux_sym_chapter_token1] = ACTIONS(1032), - [aux_sym_section_token1] = ACTIONS(364), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(3518), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1030), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [283] = { - [sym__simple_content] = STATE(287), - [sym_subsection] = STATE(287), - [sym_subsubsection] = STATE(287), - [sym_paragraph] = STATE(287), - [sym_subparagraph] = STATE(287), - [sym_enum_item] = STATE(287), - [sym_brace_group] = STATE(287), - [sym_mixed_group] = STATE(287), - [sym_text] = STATE(287), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(287), - [sym_inline_formula] = STATE(287), - [sym_begin] = STATE(66), - [sym_environment] = STATE(287), - [sym_caption] = STATE(287), - [sym_citation] = STATE(287), - [sym_package_include] = STATE(287), - [sym_class_include] = STATE(287), - [sym_latex_include] = STATE(287), - [sym_latex_input] = STATE(287), - [sym_biblatex_include] = STATE(287), - [sym_bibtex_include] = STATE(287), - [sym_graphics_include] = STATE(287), - [sym_svg_include] = STATE(287), - [sym_inkscape_include] = STATE(287), - [sym_verbatim_include] = STATE(287), - [sym_import] = STATE(287), - [sym_label_definition] = STATE(287), - [sym_label_reference] = STATE(287), - [sym_equation_label_reference] = STATE(287), - [sym_label_reference_range] = STATE(287), - [sym_label_number] = STATE(287), - [sym_command_definition] = STATE(287), - [sym_math_operator] = STATE(287), - [sym_glossary_entry_definition] = STATE(287), - [sym_glossary_entry_reference] = STATE(287), - [sym_acronym_definition] = STATE(287), - [sym_acronym_reference] = STATE(287), - [sym_theorem_definition] = STATE(287), - [sym_color_reference] = STATE(287), - [sym_color_definition] = STATE(287), - [sym_color_set_definition] = STATE(287), - [sym_pgf_library_import] = STATE(287), - [sym_tikz_library_import] = STATE(287), - [sym_generic_command] = STATE(287), - [aux_sym_section_repeat1] = STATE(287), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1873), - [aux_sym_chapter_token1] = ACTIONS(1873), - [aux_sym_section_token1] = ACTIONS(1873), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(3520), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1871), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [284] = { - [sym__simple_content] = STATE(284), - [sym_subsection] = STATE(284), - [sym_subsubsection] = STATE(284), - [sym_paragraph] = STATE(284), - [sym_subparagraph] = STATE(284), - [sym_enum_item] = STATE(284), - [sym_brace_group] = STATE(284), - [sym_mixed_group] = STATE(284), - [sym_text] = STATE(284), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(284), - [sym_inline_formula] = STATE(284), - [sym_begin] = STATE(86), - [sym_environment] = STATE(284), - [sym_caption] = STATE(284), - [sym_citation] = STATE(284), - [sym_package_include] = STATE(284), - [sym_class_include] = STATE(284), - [sym_latex_include] = STATE(284), - [sym_latex_input] = STATE(284), - [sym_biblatex_include] = STATE(284), - [sym_bibtex_include] = STATE(284), - [sym_graphics_include] = STATE(284), - [sym_svg_include] = STATE(284), - [sym_inkscape_include] = STATE(284), - [sym_verbatim_include] = STATE(284), - [sym_import] = STATE(284), - [sym_label_definition] = STATE(284), - [sym_label_reference] = STATE(284), - [sym_equation_label_reference] = STATE(284), - [sym_label_reference_range] = STATE(284), - [sym_label_number] = STATE(284), - [sym_command_definition] = STATE(284), - [sym_math_operator] = STATE(284), - [sym_glossary_entry_definition] = STATE(284), - [sym_glossary_entry_reference] = STATE(284), - [sym_acronym_definition] = STATE(284), - [sym_acronym_reference] = STATE(284), - [sym_theorem_definition] = STATE(284), - [sym_color_reference] = STATE(284), - [sym_color_definition] = STATE(284), - [sym_color_set_definition] = STATE(284), - [sym_pgf_library_import] = STATE(284), - [sym_tikz_library_import] = STATE(284), - [sym_generic_command] = STATE(284), - [aux_sym_section_repeat1] = STATE(284), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(3522), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(1888), - [aux_sym_section_token1] = ACTIONS(1888), - [aux_sym_subsection_token1] = ACTIONS(3525), - [aux_sym_subsubsection_token1] = ACTIONS(3528), - [aux_sym_paragraph_token1] = ACTIONS(3531), - [aux_sym_subparagraph_token1] = ACTIONS(3534), - [anon_sym_BSLASHitem] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_RBRACK] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(3540), - [anon_sym_COMMA] = ACTIONS(3546), - [anon_sym_EQ] = ACTIONS(3546), - [sym_word] = ACTIONS(3546), - [sym_param] = ACTIONS(3549), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3552), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3552), - [anon_sym_DOLLAR] = ACTIONS(3555), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3558), - [anon_sym_BSLASHbegin] = ACTIONS(1926), - [anon_sym_BSLASHcaption] = ACTIONS(3561), - [aux_sym_citation_token1] = ACTIONS(3564), - [aux_sym_package_include_token1] = ACTIONS(3567), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3570), - [aux_sym_latex_include_token1] = ACTIONS(3573), - [aux_sym_latex_input_token1] = ACTIONS(3576), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3579), - [anon_sym_BSLASHbibliography] = ACTIONS(3582), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3585), - [anon_sym_BSLASHincludesvg] = ACTIONS(3588), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3591), - [aux_sym_verbatim_include_token1] = ACTIONS(3594), - [aux_sym_import_token1] = ACTIONS(3597), - [anon_sym_BSLASHlabel] = ACTIONS(3600), - [aux_sym_label_reference_token1] = ACTIONS(3603), - [anon_sym_BSLASHeqref] = ACTIONS(3606), - [aux_sym_label_reference_range_token1] = ACTIONS(3609), - [anon_sym_BSLASHnewlabel] = ACTIONS(3612), - [aux_sym_command_definition_token1] = ACTIONS(3615), - [aux_sym_math_operator_token1] = ACTIONS(3618), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3621), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3624), - [anon_sym_BSLASHnewacronym] = ACTIONS(3627), - [aux_sym_acronym_reference_token1] = ACTIONS(3630), - [aux_sym_theorem_definition_token1] = ACTIONS(3633), - [aux_sym_color_reference_token1] = ACTIONS(3636), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3639), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3642), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3645), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3648), - }, - [285] = { - [sym__simple_content] = STATE(294), - [sym_subsection] = STATE(294), - [sym_subsubsection] = STATE(294), - [sym_paragraph] = STATE(294), - [sym_subparagraph] = STATE(294), - [sym_enum_item] = STATE(294), - [sym_brace_group] = STATE(294), - [sym_mixed_group] = STATE(294), - [sym_text] = STATE(294), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(294), - [sym_inline_formula] = STATE(294), - [sym_begin] = STATE(73), - [sym_environment] = STATE(294), - [sym_caption] = STATE(294), - [sym_citation] = STATE(294), - [sym_package_include] = STATE(294), - [sym_class_include] = STATE(294), - [sym_latex_include] = STATE(294), - [sym_latex_input] = STATE(294), - [sym_biblatex_include] = STATE(294), - [sym_bibtex_include] = STATE(294), - [sym_graphics_include] = STATE(294), - [sym_svg_include] = STATE(294), - [sym_inkscape_include] = STATE(294), - [sym_verbatim_include] = STATE(294), - [sym_import] = STATE(294), - [sym_label_definition] = STATE(294), - [sym_label_reference] = STATE(294), - [sym_equation_label_reference] = STATE(294), - [sym_label_reference_range] = STATE(294), - [sym_label_number] = STATE(294), - [sym_command_definition] = STATE(294), - [sym_math_operator] = STATE(294), - [sym_glossary_entry_definition] = STATE(294), - [sym_glossary_entry_reference] = STATE(294), - [sym_acronym_definition] = STATE(294), - [sym_acronym_reference] = STATE(294), - [sym_theorem_definition] = STATE(294), - [sym_color_reference] = STATE(294), - [sym_color_definition] = STATE(294), - [sym_color_set_definition] = STATE(294), - [sym_pgf_library_import] = STATE(294), - [sym_tikz_library_import] = STATE(294), - [sym_generic_command] = STATE(294), - [aux_sym_section_repeat1] = STATE(294), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1873), - [aux_sym_chapter_token1] = ACTIONS(1873), - [aux_sym_section_token1] = ACTIONS(1873), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(3651), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(1873), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [286] = { - [sym__simple_content] = STATE(292), - [sym_subsection] = STATE(292), - [sym_subsubsection] = STATE(292), - [sym_paragraph] = STATE(292), - [sym_subparagraph] = STATE(292), - [sym_enum_item] = STATE(292), - [sym_brace_group] = STATE(292), - [sym_mixed_group] = STATE(292), - [sym_text] = STATE(292), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(292), - [sym_inline_formula] = STATE(292), - [sym_begin] = STATE(86), - [sym_environment] = STATE(292), - [sym_caption] = STATE(292), - [sym_citation] = STATE(292), - [sym_package_include] = STATE(292), - [sym_class_include] = STATE(292), - [sym_latex_include] = STATE(292), - [sym_latex_input] = STATE(292), - [sym_biblatex_include] = STATE(292), - [sym_bibtex_include] = STATE(292), - [sym_graphics_include] = STATE(292), - [sym_svg_include] = STATE(292), - [sym_inkscape_include] = STATE(292), - [sym_verbatim_include] = STATE(292), - [sym_import] = STATE(292), - [sym_label_definition] = STATE(292), - [sym_label_reference] = STATE(292), - [sym_equation_label_reference] = STATE(292), - [sym_label_reference_range] = STATE(292), - [sym_label_number] = STATE(292), - [sym_command_definition] = STATE(292), - [sym_math_operator] = STATE(292), - [sym_glossary_entry_definition] = STATE(292), - [sym_glossary_entry_reference] = STATE(292), - [sym_acronym_definition] = STATE(292), - [sym_acronym_reference] = STATE(292), - [sym_theorem_definition] = STATE(292), - [sym_color_reference] = STATE(292), - [sym_color_definition] = STATE(292), - [sym_color_set_definition] = STATE(292), - [sym_pgf_library_import] = STATE(292), - [sym_tikz_library_import] = STATE(292), - [sym_generic_command] = STATE(292), - [aux_sym_section_repeat1] = STATE(292), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(1879), - [aux_sym_section_token1] = ACTIONS(1879), - [aux_sym_subsection_token1] = ACTIONS(2176), - [aux_sym_subsubsection_token1] = ACTIONS(2178), - [aux_sym_paragraph_token1] = ACTIONS(2180), - [aux_sym_subparagraph_token1] = ACTIONS(2182), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(3653), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [287] = { - [sym__simple_content] = STATE(287), - [sym_subsection] = STATE(287), - [sym_subsubsection] = STATE(287), - [sym_paragraph] = STATE(287), - [sym_subparagraph] = STATE(287), - [sym_enum_item] = STATE(287), - [sym_brace_group] = STATE(287), - [sym_mixed_group] = STATE(287), - [sym_text] = STATE(287), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(287), - [sym_inline_formula] = STATE(287), - [sym_begin] = STATE(66), - [sym_environment] = STATE(287), - [sym_caption] = STATE(287), - [sym_citation] = STATE(287), - [sym_package_include] = STATE(287), - [sym_class_include] = STATE(287), - [sym_latex_include] = STATE(287), - [sym_latex_input] = STATE(287), - [sym_biblatex_include] = STATE(287), - [sym_bibtex_include] = STATE(287), - [sym_graphics_include] = STATE(287), - [sym_svg_include] = STATE(287), - [sym_inkscape_include] = STATE(287), - [sym_verbatim_include] = STATE(287), - [sym_import] = STATE(287), - [sym_label_definition] = STATE(287), - [sym_label_reference] = STATE(287), - [sym_equation_label_reference] = STATE(287), - [sym_label_reference_range] = STATE(287), - [sym_label_number] = STATE(287), - [sym_command_definition] = STATE(287), - [sym_math_operator] = STATE(287), - [sym_glossary_entry_definition] = STATE(287), - [sym_glossary_entry_reference] = STATE(287), - [sym_acronym_definition] = STATE(287), - [sym_acronym_reference] = STATE(287), - [sym_theorem_definition] = STATE(287), - [sym_color_reference] = STATE(287), - [sym_color_definition] = STATE(287), - [sym_color_set_definition] = STATE(287), - [sym_pgf_library_import] = STATE(287), - [sym_tikz_library_import] = STATE(287), - [sym_generic_command] = STATE(287), - [aux_sym_section_repeat1] = STATE(287), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(3655), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1888), - [aux_sym_chapter_token1] = ACTIONS(1888), - [aux_sym_section_token1] = ACTIONS(1888), - [aux_sym_subsection_token1] = ACTIONS(3658), - [aux_sym_subsubsection_token1] = ACTIONS(3661), - [aux_sym_paragraph_token1] = ACTIONS(3664), - [aux_sym_subparagraph_token1] = ACTIONS(3667), - [anon_sym_BSLASHitem] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3673), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3673), - [anon_sym_COMMA] = ACTIONS(3679), - [anon_sym_EQ] = ACTIONS(3679), - [sym_word] = ACTIONS(3679), - [sym_param] = ACTIONS(3682), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3685), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3685), - [anon_sym_DOLLAR] = ACTIONS(3688), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3691), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1883), - [anon_sym_BSLASHbegin] = ACTIONS(1926), - [anon_sym_BSLASHcaption] = ACTIONS(3694), - [aux_sym_citation_token1] = ACTIONS(3697), - [aux_sym_package_include_token1] = ACTIONS(3700), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3703), - [aux_sym_latex_include_token1] = ACTIONS(3706), - [aux_sym_latex_input_token1] = ACTIONS(3709), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3712), - [anon_sym_BSLASHbibliography] = ACTIONS(3715), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3718), - [anon_sym_BSLASHincludesvg] = ACTIONS(3721), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3724), - [aux_sym_verbatim_include_token1] = ACTIONS(3727), - [aux_sym_import_token1] = ACTIONS(3730), - [anon_sym_BSLASHlabel] = ACTIONS(3733), - [aux_sym_label_reference_token1] = ACTIONS(3736), - [anon_sym_BSLASHeqref] = ACTIONS(3739), - [aux_sym_label_reference_range_token1] = ACTIONS(3742), - [anon_sym_BSLASHnewlabel] = ACTIONS(3745), - [aux_sym_command_definition_token1] = ACTIONS(3748), - [aux_sym_math_operator_token1] = ACTIONS(3751), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3754), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3757), - [anon_sym_BSLASHnewacronym] = ACTIONS(3760), - [aux_sym_acronym_reference_token1] = ACTIONS(3763), - [aux_sym_theorem_definition_token1] = ACTIONS(3766), - [aux_sym_color_reference_token1] = ACTIONS(3769), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3772), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3775), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3778), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3781), - }, - [288] = { - [sym__simple_content] = STATE(290), - [sym_subparagraph] = STATE(290), - [sym_enum_item] = STATE(290), - [sym_brace_group] = STATE(290), - [sym_mixed_group] = STATE(290), - [sym_text] = STATE(290), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(290), - [sym_inline_formula] = STATE(290), - [sym_begin] = STATE(52), - [sym_environment] = STATE(290), - [sym_caption] = STATE(290), - [sym_citation] = STATE(290), - [sym_package_include] = STATE(290), - [sym_class_include] = STATE(290), - [sym_latex_include] = STATE(290), - [sym_latex_input] = STATE(290), - [sym_biblatex_include] = STATE(290), - [sym_bibtex_include] = STATE(290), - [sym_graphics_include] = STATE(290), - [sym_svg_include] = STATE(290), - [sym_inkscape_include] = STATE(290), - [sym_verbatim_include] = STATE(290), - [sym_import] = STATE(290), - [sym_label_definition] = STATE(290), - [sym_label_reference] = STATE(290), - [sym_equation_label_reference] = STATE(290), - [sym_label_reference_range] = STATE(290), - [sym_label_number] = STATE(290), - [sym_command_definition] = STATE(290), - [sym_math_operator] = STATE(290), - [sym_glossary_entry_definition] = STATE(290), - [sym_glossary_entry_reference] = STATE(290), - [sym_acronym_definition] = STATE(290), - [sym_acronym_reference] = STATE(290), - [sym_theorem_definition] = STATE(290), - [sym_color_reference] = STATE(290), - [sym_color_definition] = STATE(290), - [sym_color_set_definition] = STATE(290), - [sym_pgf_library_import] = STATE(290), - [sym_tikz_library_import] = STATE(290), - [sym_generic_command] = STATE(290), - [aux_sym_paragraph_repeat1] = STATE(290), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(3784), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3786), - [aux_sym_chapter_token1] = ACTIONS(3786), - [aux_sym_section_token1] = ACTIONS(3786), - [aux_sym_subsection_token1] = ACTIONS(3786), - [aux_sym_subsubsection_token1] = ACTIONS(3786), - [aux_sym_paragraph_token1] = ACTIONS(3786), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3784), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(3784), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(3788), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [289] = { - [sym__simple_content] = STATE(296), - [sym_section] = STATE(296), - [sym_subsection] = STATE(296), - [sym_subsubsection] = STATE(296), - [sym_paragraph] = STATE(296), - [sym_subparagraph] = STATE(296), - [sym_enum_item] = STATE(296), - [sym_brace_group] = STATE(296), - [sym_mixed_group] = STATE(296), - [sym_text] = STATE(296), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(296), - [sym_inline_formula] = STATE(296), - [sym_begin] = STATE(94), - [sym_environment] = STATE(296), - [sym_caption] = STATE(296), - [sym_citation] = STATE(296), - [sym_package_include] = STATE(296), - [sym_class_include] = STATE(296), - [sym_latex_include] = STATE(296), - [sym_latex_input] = STATE(296), - [sym_biblatex_include] = STATE(296), - [sym_bibtex_include] = STATE(296), - [sym_graphics_include] = STATE(296), - [sym_svg_include] = STATE(296), - [sym_inkscape_include] = STATE(296), - [sym_verbatim_include] = STATE(296), - [sym_import] = STATE(296), - [sym_label_definition] = STATE(296), - [sym_label_reference] = STATE(296), - [sym_equation_label_reference] = STATE(296), - [sym_label_reference_range] = STATE(296), - [sym_label_number] = STATE(296), - [sym_command_definition] = STATE(296), - [sym_math_operator] = STATE(296), - [sym_glossary_entry_definition] = STATE(296), - [sym_glossary_entry_reference] = STATE(296), - [sym_acronym_definition] = STATE(296), - [sym_acronym_reference] = STATE(296), - [sym_theorem_definition] = STATE(296), - [sym_color_reference] = STATE(296), - [sym_color_definition] = STATE(296), - [sym_color_set_definition] = STATE(296), - [sym_pgf_library_import] = STATE(296), - [sym_tikz_library_import] = STATE(296), - [sym_generic_command] = STATE(296), - [aux_sym_chapter_repeat1] = STATE(296), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(3792), - [aux_sym_subsection_token1] = ACTIONS(3794), - [aux_sym_subsubsection_token1] = ACTIONS(3796), - [aux_sym_paragraph_token1] = ACTIONS(3798), - [aux_sym_subparagraph_token1] = ACTIONS(3800), - [anon_sym_BSLASHitem] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(3810), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [290] = { - [sym__simple_content] = STATE(291), - [sym_subparagraph] = STATE(291), - [sym_enum_item] = STATE(291), - [sym_brace_group] = STATE(291), - [sym_mixed_group] = STATE(291), - [sym_text] = STATE(291), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(291), - [sym_inline_formula] = STATE(291), - [sym_begin] = STATE(52), - [sym_environment] = STATE(291), - [sym_caption] = STATE(291), - [sym_citation] = STATE(291), - [sym_package_include] = STATE(291), - [sym_class_include] = STATE(291), - [sym_latex_include] = STATE(291), - [sym_latex_input] = STATE(291), - [sym_biblatex_include] = STATE(291), - [sym_bibtex_include] = STATE(291), - [sym_graphics_include] = STATE(291), - [sym_svg_include] = STATE(291), - [sym_inkscape_include] = STATE(291), - [sym_verbatim_include] = STATE(291), - [sym_import] = STATE(291), - [sym_label_definition] = STATE(291), - [sym_label_reference] = STATE(291), - [sym_equation_label_reference] = STATE(291), - [sym_label_reference_range] = STATE(291), - [sym_label_number] = STATE(291), - [sym_command_definition] = STATE(291), - [sym_math_operator] = STATE(291), - [sym_glossary_entry_definition] = STATE(291), - [sym_glossary_entry_reference] = STATE(291), - [sym_acronym_definition] = STATE(291), - [sym_acronym_reference] = STATE(291), - [sym_theorem_definition] = STATE(291), - [sym_color_reference] = STATE(291), - [sym_color_definition] = STATE(291), - [sym_color_set_definition] = STATE(291), - [sym_pgf_library_import] = STATE(291), - [sym_tikz_library_import] = STATE(291), - [sym_generic_command] = STATE(291), - [aux_sym_paragraph_repeat1] = STATE(291), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(3878), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3880), - [aux_sym_chapter_token1] = ACTIONS(3880), - [aux_sym_section_token1] = ACTIONS(3880), - [aux_sym_subsection_token1] = ACTIONS(3880), - [aux_sym_subsubsection_token1] = ACTIONS(3880), - [aux_sym_paragraph_token1] = ACTIONS(3880), - [aux_sym_subparagraph_token1] = ACTIONS(21), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(3878), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(3878), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(3878), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(3882), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [291] = { - [sym__simple_content] = STATE(291), - [sym_subparagraph] = STATE(291), - [sym_enum_item] = STATE(291), - [sym_brace_group] = STATE(291), - [sym_mixed_group] = STATE(291), - [sym_text] = STATE(291), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(291), - [sym_inline_formula] = STATE(291), - [sym_begin] = STATE(52), - [sym_environment] = STATE(291), - [sym_caption] = STATE(291), - [sym_citation] = STATE(291), - [sym_package_include] = STATE(291), - [sym_class_include] = STATE(291), - [sym_latex_include] = STATE(291), - [sym_latex_input] = STATE(291), - [sym_biblatex_include] = STATE(291), - [sym_bibtex_include] = STATE(291), - [sym_graphics_include] = STATE(291), - [sym_svg_include] = STATE(291), - [sym_inkscape_include] = STATE(291), - [sym_verbatim_include] = STATE(291), - [sym_import] = STATE(291), - [sym_label_definition] = STATE(291), - [sym_label_reference] = STATE(291), - [sym_equation_label_reference] = STATE(291), - [sym_label_reference_range] = STATE(291), - [sym_label_number] = STATE(291), - [sym_command_definition] = STATE(291), - [sym_math_operator] = STATE(291), - [sym_glossary_entry_definition] = STATE(291), - [sym_glossary_entry_reference] = STATE(291), - [sym_acronym_definition] = STATE(291), - [sym_acronym_reference] = STATE(291), - [sym_theorem_definition] = STATE(291), - [sym_color_reference] = STATE(291), - [sym_color_definition] = STATE(291), - [sym_color_set_definition] = STATE(291), - [sym_pgf_library_import] = STATE(291), - [sym_tikz_library_import] = STATE(291), - [sym_generic_command] = STATE(291), - [aux_sym_paragraph_repeat1] = STATE(291), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(3884), - [sym_generic_command_name] = ACTIONS(3886), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3889), - [aux_sym_chapter_token1] = ACTIONS(3889), - [aux_sym_section_token1] = ACTIONS(3889), - [aux_sym_subsection_token1] = ACTIONS(3889), - [aux_sym_subsubsection_token1] = ACTIONS(3889), - [aux_sym_paragraph_token1] = ACTIONS(3889), - [aux_sym_subparagraph_token1] = ACTIONS(3891), - [anon_sym_BSLASHitem] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3897), - [anon_sym_RBRACK] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(3900), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_LPAREN] = ACTIONS(3897), - [anon_sym_RPAREN] = ACTIONS(3884), - [anon_sym_COMMA] = ACTIONS(3903), - [anon_sym_EQ] = ACTIONS(3903), - [sym_word] = ACTIONS(3903), - [sym_param] = ACTIONS(3906), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3909), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3909), - [anon_sym_DOLLAR] = ACTIONS(3912), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3915), - [anon_sym_BSLASHbegin] = ACTIONS(3918), - [anon_sym_BSLASHcaption] = ACTIONS(3921), - [aux_sym_citation_token1] = ACTIONS(3924), - [aux_sym_package_include_token1] = ACTIONS(3927), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3930), - [aux_sym_latex_include_token1] = ACTIONS(3933), - [aux_sym_latex_input_token1] = ACTIONS(3936), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3939), - [anon_sym_BSLASHbibliography] = ACTIONS(3942), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3945), - [anon_sym_BSLASHincludesvg] = ACTIONS(3948), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3951), - [aux_sym_verbatim_include_token1] = ACTIONS(3954), - [aux_sym_import_token1] = ACTIONS(3957), - [anon_sym_BSLASHlabel] = ACTIONS(3960), - [aux_sym_label_reference_token1] = ACTIONS(3963), - [anon_sym_BSLASHeqref] = ACTIONS(3966), - [aux_sym_label_reference_range_token1] = ACTIONS(3969), - [anon_sym_BSLASHnewlabel] = ACTIONS(3972), - [aux_sym_command_definition_token1] = ACTIONS(3975), - [aux_sym_math_operator_token1] = ACTIONS(3978), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3981), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3984), - [anon_sym_BSLASHnewacronym] = ACTIONS(3987), - [aux_sym_acronym_reference_token1] = ACTIONS(3990), - [aux_sym_theorem_definition_token1] = ACTIONS(3993), - [aux_sym_color_reference_token1] = ACTIONS(3996), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3999), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4002), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4005), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4008), - }, - [292] = { - [sym__simple_content] = STATE(284), - [sym_subsection] = STATE(284), - [sym_subsubsection] = STATE(284), - [sym_paragraph] = STATE(284), - [sym_subparagraph] = STATE(284), - [sym_enum_item] = STATE(284), - [sym_brace_group] = STATE(284), - [sym_mixed_group] = STATE(284), - [sym_text] = STATE(284), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(284), - [sym_inline_formula] = STATE(284), - [sym_begin] = STATE(86), - [sym_environment] = STATE(284), - [sym_caption] = STATE(284), - [sym_citation] = STATE(284), - [sym_package_include] = STATE(284), - [sym_class_include] = STATE(284), - [sym_latex_include] = STATE(284), - [sym_latex_input] = STATE(284), - [sym_biblatex_include] = STATE(284), - [sym_bibtex_include] = STATE(284), - [sym_graphics_include] = STATE(284), - [sym_svg_include] = STATE(284), - [sym_inkscape_include] = STATE(284), - [sym_verbatim_include] = STATE(284), - [sym_import] = STATE(284), - [sym_label_definition] = STATE(284), - [sym_label_reference] = STATE(284), - [sym_equation_label_reference] = STATE(284), - [sym_label_reference_range] = STATE(284), - [sym_label_number] = STATE(284), - [sym_command_definition] = STATE(284), - [sym_math_operator] = STATE(284), - [sym_glossary_entry_definition] = STATE(284), - [sym_glossary_entry_reference] = STATE(284), - [sym_acronym_definition] = STATE(284), - [sym_acronym_reference] = STATE(284), - [sym_theorem_definition] = STATE(284), - [sym_color_reference] = STATE(284), - [sym_color_definition] = STATE(284), - [sym_color_set_definition] = STATE(284), - [sym_pgf_library_import] = STATE(284), - [sym_tikz_library_import] = STATE(284), - [sym_generic_command] = STATE(284), - [aux_sym_section_repeat1] = STATE(284), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(1873), - [aux_sym_section_token1] = ACTIONS(1873), - [aux_sym_subsection_token1] = ACTIONS(2176), - [aux_sym_subsubsection_token1] = ACTIONS(2178), - [aux_sym_paragraph_token1] = ACTIONS(2180), - [aux_sym_subparagraph_token1] = ACTIONS(2182), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(4011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [293] = { - [sym__simple_content] = STATE(289), - [sym_section] = STATE(289), - [sym_subsection] = STATE(289), - [sym_subsubsection] = STATE(289), - [sym_paragraph] = STATE(289), - [sym_subparagraph] = STATE(289), - [sym_enum_item] = STATE(289), - [sym_brace_group] = STATE(289), - [sym_mixed_group] = STATE(289), - [sym_text] = STATE(289), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(289), - [sym_inline_formula] = STATE(289), - [sym_begin] = STATE(94), - [sym_environment] = STATE(289), - [sym_caption] = STATE(289), - [sym_citation] = STATE(289), - [sym_package_include] = STATE(289), - [sym_class_include] = STATE(289), - [sym_latex_include] = STATE(289), - [sym_latex_input] = STATE(289), - [sym_biblatex_include] = STATE(289), - [sym_bibtex_include] = STATE(289), - [sym_graphics_include] = STATE(289), - [sym_svg_include] = STATE(289), - [sym_inkscape_include] = STATE(289), - [sym_verbatim_include] = STATE(289), - [sym_import] = STATE(289), - [sym_label_definition] = STATE(289), - [sym_label_reference] = STATE(289), - [sym_equation_label_reference] = STATE(289), - [sym_label_reference_range] = STATE(289), - [sym_label_number] = STATE(289), - [sym_command_definition] = STATE(289), - [sym_math_operator] = STATE(289), - [sym_glossary_entry_definition] = STATE(289), - [sym_glossary_entry_reference] = STATE(289), - [sym_acronym_definition] = STATE(289), - [sym_acronym_reference] = STATE(289), - [sym_theorem_definition] = STATE(289), - [sym_color_reference] = STATE(289), - [sym_color_definition] = STATE(289), - [sym_color_set_definition] = STATE(289), - [sym_pgf_library_import] = STATE(289), - [sym_tikz_library_import] = STATE(289), - [sym_generic_command] = STATE(289), - [aux_sym_chapter_repeat1] = STATE(289), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(3792), - [aux_sym_subsection_token1] = ACTIONS(3794), - [aux_sym_subsubsection_token1] = ACTIONS(3796), - [aux_sym_paragraph_token1] = ACTIONS(3798), - [aux_sym_subparagraph_token1] = ACTIONS(3800), - [anon_sym_BSLASHitem] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(4013), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [294] = { - [sym__simple_content] = STATE(294), - [sym_subsection] = STATE(294), - [sym_subsubsection] = STATE(294), - [sym_paragraph] = STATE(294), - [sym_subparagraph] = STATE(294), - [sym_enum_item] = STATE(294), - [sym_brace_group] = STATE(294), - [sym_mixed_group] = STATE(294), - [sym_text] = STATE(294), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(294), - [sym_inline_formula] = STATE(294), - [sym_begin] = STATE(73), - [sym_environment] = STATE(294), - [sym_caption] = STATE(294), - [sym_citation] = STATE(294), - [sym_package_include] = STATE(294), - [sym_class_include] = STATE(294), - [sym_latex_include] = STATE(294), - [sym_latex_input] = STATE(294), - [sym_biblatex_include] = STATE(294), - [sym_bibtex_include] = STATE(294), - [sym_graphics_include] = STATE(294), - [sym_svg_include] = STATE(294), - [sym_inkscape_include] = STATE(294), - [sym_verbatim_include] = STATE(294), - [sym_import] = STATE(294), - [sym_label_definition] = STATE(294), - [sym_label_reference] = STATE(294), - [sym_equation_label_reference] = STATE(294), - [sym_label_reference_range] = STATE(294), - [sym_label_number] = STATE(294), - [sym_command_definition] = STATE(294), - [sym_math_operator] = STATE(294), - [sym_glossary_entry_definition] = STATE(294), - [sym_glossary_entry_reference] = STATE(294), - [sym_acronym_definition] = STATE(294), - [sym_acronym_reference] = STATE(294), - [sym_theorem_definition] = STATE(294), - [sym_color_reference] = STATE(294), - [sym_color_definition] = STATE(294), - [sym_color_set_definition] = STATE(294), - [sym_pgf_library_import] = STATE(294), - [sym_tikz_library_import] = STATE(294), - [sym_generic_command] = STATE(294), - [aux_sym_section_repeat1] = STATE(294), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(4015), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1888), - [aux_sym_chapter_token1] = ACTIONS(1888), - [aux_sym_section_token1] = ACTIONS(1888), - [aux_sym_subsection_token1] = ACTIONS(4018), - [aux_sym_subsubsection_token1] = ACTIONS(4021), - [aux_sym_paragraph_token1] = ACTIONS(4024), - [aux_sym_subparagraph_token1] = ACTIONS(4027), - [anon_sym_BSLASHitem] = ACTIONS(4030), - [anon_sym_LBRACK] = ACTIONS(4033), - [anon_sym_LBRACE] = ACTIONS(4036), - [anon_sym_LPAREN] = ACTIONS(4033), - [anon_sym_COMMA] = ACTIONS(4039), - [anon_sym_EQ] = ACTIONS(4039), - [sym_word] = ACTIONS(4039), - [sym_param] = ACTIONS(4042), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4045), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4045), - [anon_sym_DOLLAR] = ACTIONS(4048), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4051), - [anon_sym_BSLASHbegin] = ACTIONS(1926), - [anon_sym_BSLASHend] = ACTIONS(1888), - [anon_sym_BSLASHcaption] = ACTIONS(4054), - [aux_sym_citation_token1] = ACTIONS(4057), - [aux_sym_package_include_token1] = ACTIONS(4060), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4063), - [aux_sym_latex_include_token1] = ACTIONS(4066), - [aux_sym_latex_input_token1] = ACTIONS(4069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4072), - [anon_sym_BSLASHbibliography] = ACTIONS(4075), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4078), - [anon_sym_BSLASHincludesvg] = ACTIONS(4081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4084), - [aux_sym_verbatim_include_token1] = ACTIONS(4087), - [aux_sym_import_token1] = ACTIONS(4090), - [anon_sym_BSLASHlabel] = ACTIONS(4093), - [aux_sym_label_reference_token1] = ACTIONS(4096), - [anon_sym_BSLASHeqref] = ACTIONS(4099), - [aux_sym_label_reference_range_token1] = ACTIONS(4102), - [anon_sym_BSLASHnewlabel] = ACTIONS(4105), - [aux_sym_command_definition_token1] = ACTIONS(4108), - [aux_sym_math_operator_token1] = ACTIONS(4111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4114), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(4117), - [anon_sym_BSLASHnewacronym] = ACTIONS(4120), - [aux_sym_acronym_reference_token1] = ACTIONS(4123), - [aux_sym_theorem_definition_token1] = ACTIONS(4126), - [aux_sym_color_reference_token1] = ACTIONS(4129), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4132), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4141), - }, - [295] = { - [sym__simple_content] = STATE(298), - [sym_subsection] = STATE(298), - [sym_subsubsection] = STATE(298), - [sym_paragraph] = STATE(298), - [sym_subparagraph] = STATE(298), - [sym_enum_item] = STATE(298), - [sym_brace_group] = STATE(298), - [sym_mixed_group] = STATE(298), - [sym_text] = STATE(298), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(298), - [sym_inline_formula] = STATE(298), - [sym_begin] = STATE(59), - [sym_environment] = STATE(298), - [sym_caption] = STATE(298), - [sym_citation] = STATE(298), - [sym_package_include] = STATE(298), - [sym_class_include] = STATE(298), - [sym_latex_include] = STATE(298), - [sym_latex_input] = STATE(298), - [sym_biblatex_include] = STATE(298), - [sym_bibtex_include] = STATE(298), - [sym_graphics_include] = STATE(298), - [sym_svg_include] = STATE(298), - [sym_inkscape_include] = STATE(298), - [sym_verbatim_include] = STATE(298), - [sym_import] = STATE(298), - [sym_label_definition] = STATE(298), - [sym_label_reference] = STATE(298), - [sym_equation_label_reference] = STATE(298), - [sym_label_reference_range] = STATE(298), - [sym_label_number] = STATE(298), - [sym_command_definition] = STATE(298), - [sym_math_operator] = STATE(298), - [sym_glossary_entry_definition] = STATE(298), - [sym_glossary_entry_reference] = STATE(298), - [sym_acronym_definition] = STATE(298), - [sym_acronym_reference] = STATE(298), - [sym_theorem_definition] = STATE(298), - [sym_color_reference] = STATE(298), - [sym_color_definition] = STATE(298), - [sym_color_set_definition] = STATE(298), - [sym_pgf_library_import] = STATE(298), - [sym_tikz_library_import] = STATE(298), - [sym_generic_command] = STATE(298), - [aux_sym_section_repeat1] = STATE(298), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1879), - [aux_sym_chapter_token1] = ACTIONS(1879), - [aux_sym_section_token1] = ACTIONS(1879), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(4144), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1877), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [296] = { - [sym__simple_content] = STATE(296), - [sym_section] = STATE(296), - [sym_subsection] = STATE(296), - [sym_subsubsection] = STATE(296), - [sym_paragraph] = STATE(296), - [sym_subparagraph] = STATE(296), - [sym_enum_item] = STATE(296), - [sym_brace_group] = STATE(296), - [sym_mixed_group] = STATE(296), - [sym_text] = STATE(296), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(296), - [sym_inline_formula] = STATE(296), - [sym_begin] = STATE(94), - [sym_environment] = STATE(296), - [sym_caption] = STATE(296), - [sym_citation] = STATE(296), - [sym_package_include] = STATE(296), - [sym_class_include] = STATE(296), - [sym_latex_include] = STATE(296), - [sym_latex_input] = STATE(296), - [sym_biblatex_include] = STATE(296), - [sym_bibtex_include] = STATE(296), - [sym_graphics_include] = STATE(296), - [sym_svg_include] = STATE(296), - [sym_inkscape_include] = STATE(296), - [sym_verbatim_include] = STATE(296), - [sym_import] = STATE(296), - [sym_label_definition] = STATE(296), - [sym_label_reference] = STATE(296), - [sym_equation_label_reference] = STATE(296), - [sym_label_reference_range] = STATE(296), - [sym_label_number] = STATE(296), - [sym_command_definition] = STATE(296), - [sym_math_operator] = STATE(296), - [sym_glossary_entry_definition] = STATE(296), - [sym_glossary_entry_reference] = STATE(296), - [sym_acronym_definition] = STATE(296), - [sym_acronym_reference] = STATE(296), - [sym_theorem_definition] = STATE(296), - [sym_color_reference] = STATE(296), - [sym_color_definition] = STATE(296), - [sym_color_set_definition] = STATE(296), - [sym_pgf_library_import] = STATE(296), - [sym_tikz_library_import] = STATE(296), - [sym_generic_command] = STATE(296), - [aux_sym_chapter_repeat1] = STATE(296), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(4146), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(4149), - [aux_sym_subsection_token1] = ACTIONS(4152), - [aux_sym_subsubsection_token1] = ACTIONS(4155), - [aux_sym_paragraph_token1] = ACTIONS(4158), - [aux_sym_subparagraph_token1] = ACTIONS(4161), - [anon_sym_BSLASHitem] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4167), - [anon_sym_RBRACK] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(4170), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(4167), - [anon_sym_COMMA] = ACTIONS(4173), - [anon_sym_EQ] = ACTIONS(4173), - [sym_word] = ACTIONS(4173), - [sym_param] = ACTIONS(4176), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4179), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4179), - [anon_sym_DOLLAR] = ACTIONS(4182), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4185), - [anon_sym_BSLASHbegin] = ACTIONS(1496), - [anon_sym_BSLASHcaption] = ACTIONS(4188), - [aux_sym_citation_token1] = ACTIONS(4191), - [aux_sym_package_include_token1] = ACTIONS(4194), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4197), - [aux_sym_latex_include_token1] = ACTIONS(4200), - [aux_sym_latex_input_token1] = ACTIONS(4203), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4206), - [anon_sym_BSLASHbibliography] = ACTIONS(4209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4212), - [anon_sym_BSLASHincludesvg] = ACTIONS(4215), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4218), - [aux_sym_verbatim_include_token1] = ACTIONS(4221), - [aux_sym_import_token1] = ACTIONS(4224), - [anon_sym_BSLASHlabel] = ACTIONS(4227), - [aux_sym_label_reference_token1] = ACTIONS(4230), - [anon_sym_BSLASHeqref] = ACTIONS(4233), - [aux_sym_label_reference_range_token1] = ACTIONS(4236), - [anon_sym_BSLASHnewlabel] = ACTIONS(4239), - [aux_sym_command_definition_token1] = ACTIONS(4242), - [aux_sym_math_operator_token1] = ACTIONS(4245), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4248), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(4251), - [anon_sym_BSLASHnewacronym] = ACTIONS(4254), - [aux_sym_acronym_reference_token1] = ACTIONS(4257), - [aux_sym_theorem_definition_token1] = ACTIONS(4260), - [aux_sym_color_reference_token1] = ACTIONS(4263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4266), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4269), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4272), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4275), - }, - [297] = { - [sym__simple_content] = STATE(283), - [sym_subsection] = STATE(283), - [sym_subsubsection] = STATE(283), - [sym_paragraph] = STATE(283), - [sym_subparagraph] = STATE(283), - [sym_enum_item] = STATE(283), - [sym_brace_group] = STATE(283), - [sym_mixed_group] = STATE(283), - [sym_text] = STATE(283), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(283), - [sym_inline_formula] = STATE(283), - [sym_begin] = STATE(66), - [sym_environment] = STATE(283), - [sym_caption] = STATE(283), - [sym_citation] = STATE(283), - [sym_package_include] = STATE(283), - [sym_class_include] = STATE(283), - [sym_latex_include] = STATE(283), - [sym_latex_input] = STATE(283), - [sym_biblatex_include] = STATE(283), - [sym_bibtex_include] = STATE(283), - [sym_graphics_include] = STATE(283), - [sym_svg_include] = STATE(283), - [sym_inkscape_include] = STATE(283), - [sym_verbatim_include] = STATE(283), - [sym_import] = STATE(283), - [sym_label_definition] = STATE(283), - [sym_label_reference] = STATE(283), - [sym_equation_label_reference] = STATE(283), - [sym_label_reference_range] = STATE(283), - [sym_label_number] = STATE(283), - [sym_command_definition] = STATE(283), - [sym_math_operator] = STATE(283), - [sym_glossary_entry_definition] = STATE(283), - [sym_glossary_entry_reference] = STATE(283), - [sym_acronym_definition] = STATE(283), - [sym_acronym_reference] = STATE(283), - [sym_theorem_definition] = STATE(283), - [sym_color_reference] = STATE(283), - [sym_color_definition] = STATE(283), - [sym_color_set_definition] = STATE(283), - [sym_pgf_library_import] = STATE(283), - [sym_tikz_library_import] = STATE(283), - [sym_generic_command] = STATE(283), - [aux_sym_section_repeat1] = STATE(283), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1879), - [aux_sym_chapter_token1] = ACTIONS(1879), - [aux_sym_section_token1] = ACTIONS(1879), - [aux_sym_subsection_token1] = ACTIONS(366), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(4278), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1877), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [298] = { - [sym__simple_content] = STATE(300), - [sym_subsection] = STATE(300), - [sym_subsubsection] = STATE(300), - [sym_paragraph] = STATE(300), - [sym_subparagraph] = STATE(300), - [sym_enum_item] = STATE(300), - [sym_brace_group] = STATE(300), - [sym_mixed_group] = STATE(300), - [sym_text] = STATE(300), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(300), - [sym_inline_formula] = STATE(300), - [sym_begin] = STATE(59), - [sym_environment] = STATE(300), - [sym_caption] = STATE(300), - [sym_citation] = STATE(300), - [sym_package_include] = STATE(300), - [sym_class_include] = STATE(300), - [sym_latex_include] = STATE(300), - [sym_latex_input] = STATE(300), - [sym_biblatex_include] = STATE(300), - [sym_bibtex_include] = STATE(300), - [sym_graphics_include] = STATE(300), - [sym_svg_include] = STATE(300), - [sym_inkscape_include] = STATE(300), - [sym_verbatim_include] = STATE(300), - [sym_import] = STATE(300), - [sym_label_definition] = STATE(300), - [sym_label_reference] = STATE(300), - [sym_equation_label_reference] = STATE(300), - [sym_label_reference_range] = STATE(300), - [sym_label_number] = STATE(300), - [sym_command_definition] = STATE(300), - [sym_math_operator] = STATE(300), - [sym_glossary_entry_definition] = STATE(300), - [sym_glossary_entry_reference] = STATE(300), - [sym_acronym_definition] = STATE(300), - [sym_acronym_reference] = STATE(300), - [sym_theorem_definition] = STATE(300), - [sym_color_reference] = STATE(300), - [sym_color_definition] = STATE(300), - [sym_color_set_definition] = STATE(300), - [sym_pgf_library_import] = STATE(300), - [sym_tikz_library_import] = STATE(300), - [sym_generic_command] = STATE(300), - [aux_sym_section_repeat1] = STATE(300), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1873), - [aux_sym_chapter_token1] = ACTIONS(1873), - [aux_sym_section_token1] = ACTIONS(1873), - [aux_sym_subsection_token1] = ACTIONS(272), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(4280), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1871), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [299] = { - [sym__simple_content] = STATE(285), - [sym_subsection] = STATE(285), - [sym_subsubsection] = STATE(285), - [sym_paragraph] = STATE(285), - [sym_subparagraph] = STATE(285), - [sym_enum_item] = STATE(285), - [sym_brace_group] = STATE(285), - [sym_mixed_group] = STATE(285), - [sym_text] = STATE(285), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(285), - [sym_inline_formula] = STATE(285), - [sym_begin] = STATE(73), - [sym_environment] = STATE(285), - [sym_caption] = STATE(285), - [sym_citation] = STATE(285), - [sym_package_include] = STATE(285), - [sym_class_include] = STATE(285), - [sym_latex_include] = STATE(285), - [sym_latex_input] = STATE(285), - [sym_biblatex_include] = STATE(285), - [sym_bibtex_include] = STATE(285), - [sym_graphics_include] = STATE(285), - [sym_svg_include] = STATE(285), - [sym_inkscape_include] = STATE(285), - [sym_verbatim_include] = STATE(285), - [sym_import] = STATE(285), - [sym_label_definition] = STATE(285), - [sym_label_reference] = STATE(285), - [sym_equation_label_reference] = STATE(285), - [sym_label_reference_range] = STATE(285), - [sym_label_number] = STATE(285), - [sym_command_definition] = STATE(285), - [sym_math_operator] = STATE(285), - [sym_glossary_entry_definition] = STATE(285), - [sym_glossary_entry_reference] = STATE(285), - [sym_acronym_definition] = STATE(285), - [sym_acronym_reference] = STATE(285), - [sym_theorem_definition] = STATE(285), - [sym_color_reference] = STATE(285), - [sym_color_definition] = STATE(285), - [sym_color_set_definition] = STATE(285), - [sym_pgf_library_import] = STATE(285), - [sym_tikz_library_import] = STATE(285), - [sym_generic_command] = STATE(285), - [aux_sym_section_repeat1] = STATE(285), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1879), - [aux_sym_chapter_token1] = ACTIONS(1879), - [aux_sym_section_token1] = ACTIONS(1879), - [aux_sym_subsection_token1] = ACTIONS(464), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(4282), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(1879), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [300] = { - [sym__simple_content] = STATE(300), - [sym_subsection] = STATE(300), - [sym_subsubsection] = STATE(300), - [sym_paragraph] = STATE(300), - [sym_subparagraph] = STATE(300), - [sym_enum_item] = STATE(300), - [sym_brace_group] = STATE(300), - [sym_mixed_group] = STATE(300), - [sym_text] = STATE(300), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(300), - [sym_inline_formula] = STATE(300), - [sym_begin] = STATE(59), - [sym_environment] = STATE(300), - [sym_caption] = STATE(300), - [sym_citation] = STATE(300), - [sym_package_include] = STATE(300), - [sym_class_include] = STATE(300), - [sym_latex_include] = STATE(300), - [sym_latex_input] = STATE(300), - [sym_biblatex_include] = STATE(300), - [sym_bibtex_include] = STATE(300), - [sym_graphics_include] = STATE(300), - [sym_svg_include] = STATE(300), - [sym_inkscape_include] = STATE(300), - [sym_verbatim_include] = STATE(300), - [sym_import] = STATE(300), - [sym_label_definition] = STATE(300), - [sym_label_reference] = STATE(300), - [sym_equation_label_reference] = STATE(300), - [sym_label_reference_range] = STATE(300), - [sym_label_number] = STATE(300), - [sym_command_definition] = STATE(300), - [sym_math_operator] = STATE(300), - [sym_glossary_entry_definition] = STATE(300), - [sym_glossary_entry_reference] = STATE(300), - [sym_acronym_definition] = STATE(300), - [sym_acronym_reference] = STATE(300), - [sym_theorem_definition] = STATE(300), - [sym_color_reference] = STATE(300), - [sym_color_definition] = STATE(300), - [sym_color_set_definition] = STATE(300), - [sym_pgf_library_import] = STATE(300), - [sym_tikz_library_import] = STATE(300), - [sym_generic_command] = STATE(300), - [aux_sym_section_repeat1] = STATE(300), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(4284), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(1888), - [aux_sym_chapter_token1] = ACTIONS(1888), - [aux_sym_section_token1] = ACTIONS(1888), - [aux_sym_subsection_token1] = ACTIONS(4287), - [aux_sym_subsubsection_token1] = ACTIONS(4290), - [aux_sym_paragraph_token1] = ACTIONS(4293), - [aux_sym_subparagraph_token1] = ACTIONS(4296), - [anon_sym_BSLASHitem] = ACTIONS(4299), - [anon_sym_LBRACK] = ACTIONS(4302), - [anon_sym_LBRACE] = ACTIONS(4305), - [anon_sym_LPAREN] = ACTIONS(4302), - [anon_sym_COMMA] = ACTIONS(4308), - [anon_sym_EQ] = ACTIONS(4308), - [sym_word] = ACTIONS(4308), - [sym_param] = ACTIONS(4311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4314), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4314), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1883), - [anon_sym_DOLLAR] = ACTIONS(4317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4320), - [anon_sym_BSLASHbegin] = ACTIONS(1926), - [anon_sym_BSLASHcaption] = ACTIONS(4323), - [aux_sym_citation_token1] = ACTIONS(4326), - [aux_sym_package_include_token1] = ACTIONS(4329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4332), - [aux_sym_latex_include_token1] = ACTIONS(4335), - [aux_sym_latex_input_token1] = ACTIONS(4338), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4341), - [anon_sym_BSLASHbibliography] = ACTIONS(4344), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4347), - [anon_sym_BSLASHincludesvg] = ACTIONS(4350), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4353), - [aux_sym_verbatim_include_token1] = ACTIONS(4356), - [aux_sym_import_token1] = ACTIONS(4359), - [anon_sym_BSLASHlabel] = ACTIONS(4362), - [aux_sym_label_reference_token1] = ACTIONS(4365), - [anon_sym_BSLASHeqref] = ACTIONS(4368), - [aux_sym_label_reference_range_token1] = ACTIONS(4371), - [anon_sym_BSLASHnewlabel] = ACTIONS(4374), - [aux_sym_command_definition_token1] = ACTIONS(4377), - [aux_sym_math_operator_token1] = ACTIONS(4380), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4383), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(4386), - [anon_sym_BSLASHnewacronym] = ACTIONS(4389), - [aux_sym_acronym_reference_token1] = ACTIONS(4392), - [aux_sym_theorem_definition_token1] = ACTIONS(4395), - [aux_sym_color_reference_token1] = ACTIONS(4398), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4401), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4404), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4407), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4410), - }, - [301] = { - [sym__simple_content] = STATE(302), - [sym_subsubsection] = STATE(302), - [sym_paragraph] = STATE(302), - [sym_subparagraph] = STATE(302), - [sym_enum_item] = STATE(302), - [sym_brace_group] = STATE(302), - [sym_mixed_group] = STATE(302), - [sym_text] = STATE(302), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(302), - [sym_inline_formula] = STATE(302), - [sym_begin] = STATE(73), - [sym_environment] = STATE(302), - [sym_caption] = STATE(302), - [sym_citation] = STATE(302), - [sym_package_include] = STATE(302), - [sym_class_include] = STATE(302), - [sym_latex_include] = STATE(302), - [sym_latex_input] = STATE(302), - [sym_biblatex_include] = STATE(302), - [sym_bibtex_include] = STATE(302), - [sym_graphics_include] = STATE(302), - [sym_svg_include] = STATE(302), - [sym_inkscape_include] = STATE(302), - [sym_verbatim_include] = STATE(302), - [sym_import] = STATE(302), - [sym_label_definition] = STATE(302), - [sym_label_reference] = STATE(302), - [sym_equation_label_reference] = STATE(302), - [sym_label_reference_range] = STATE(302), - [sym_label_number] = STATE(302), - [sym_command_definition] = STATE(302), - [sym_math_operator] = STATE(302), - [sym_glossary_entry_definition] = STATE(302), - [sym_glossary_entry_reference] = STATE(302), - [sym_acronym_definition] = STATE(302), - [sym_acronym_reference] = STATE(302), - [sym_theorem_definition] = STATE(302), - [sym_color_reference] = STATE(302), - [sym_color_definition] = STATE(302), - [sym_color_set_definition] = STATE(302), - [sym_pgf_library_import] = STATE(302), - [sym_tikz_library_import] = STATE(302), - [sym_generic_command] = STATE(302), - [aux_sym_subsection_repeat1] = STATE(302), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2164), - [aux_sym_chapter_token1] = ACTIONS(2164), - [aux_sym_section_token1] = ACTIONS(2164), - [aux_sym_subsection_token1] = ACTIONS(2164), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(4413), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(2164), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [302] = { - [sym__simple_content] = STATE(302), - [sym_subsubsection] = STATE(302), - [sym_paragraph] = STATE(302), - [sym_subparagraph] = STATE(302), - [sym_enum_item] = STATE(302), - [sym_brace_group] = STATE(302), - [sym_mixed_group] = STATE(302), - [sym_text] = STATE(302), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(302), - [sym_inline_formula] = STATE(302), - [sym_begin] = STATE(73), - [sym_environment] = STATE(302), - [sym_caption] = STATE(302), - [sym_citation] = STATE(302), - [sym_package_include] = STATE(302), - [sym_class_include] = STATE(302), - [sym_latex_include] = STATE(302), - [sym_latex_input] = STATE(302), - [sym_biblatex_include] = STATE(302), - [sym_bibtex_include] = STATE(302), - [sym_graphics_include] = STATE(302), - [sym_svg_include] = STATE(302), - [sym_inkscape_include] = STATE(302), - [sym_verbatim_include] = STATE(302), - [sym_import] = STATE(302), - [sym_label_definition] = STATE(302), - [sym_label_reference] = STATE(302), - [sym_equation_label_reference] = STATE(302), - [sym_label_reference_range] = STATE(302), - [sym_label_number] = STATE(302), - [sym_command_definition] = STATE(302), - [sym_math_operator] = STATE(302), - [sym_glossary_entry_definition] = STATE(302), - [sym_glossary_entry_reference] = STATE(302), - [sym_acronym_definition] = STATE(302), - [sym_acronym_reference] = STATE(302), - [sym_theorem_definition] = STATE(302), - [sym_color_reference] = STATE(302), - [sym_color_definition] = STATE(302), - [sym_color_set_definition] = STATE(302), - [sym_pgf_library_import] = STATE(302), - [sym_tikz_library_import] = STATE(302), - [sym_generic_command] = STATE(302), - [aux_sym_subsection_repeat1] = STATE(302), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(4415), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2024), - [aux_sym_chapter_token1] = ACTIONS(2024), - [aux_sym_section_token1] = ACTIONS(2024), - [aux_sym_subsection_token1] = ACTIONS(2024), - [aux_sym_subsubsection_token1] = ACTIONS(4418), - [aux_sym_paragraph_token1] = ACTIONS(4421), - [aux_sym_subparagraph_token1] = ACTIONS(4424), - [anon_sym_BSLASHitem] = ACTIONS(4427), - [anon_sym_LBRACK] = ACTIONS(4430), - [anon_sym_LBRACE] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4430), - [anon_sym_COMMA] = ACTIONS(4436), - [anon_sym_EQ] = ACTIONS(4436), - [sym_word] = ACTIONS(4436), - [sym_param] = ACTIONS(4439), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4442), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4442), - [anon_sym_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4448), - [anon_sym_BSLASHbegin] = ACTIONS(2059), - [anon_sym_BSLASHend] = ACTIONS(2024), - [anon_sym_BSLASHcaption] = ACTIONS(4451), - [aux_sym_citation_token1] = ACTIONS(4454), - [aux_sym_package_include_token1] = ACTIONS(4457), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4460), - [aux_sym_latex_include_token1] = ACTIONS(4463), - [aux_sym_latex_input_token1] = ACTIONS(4466), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4469), - [anon_sym_BSLASHbibliography] = ACTIONS(4472), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), - [anon_sym_BSLASHincludesvg] = ACTIONS(4478), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4481), - [aux_sym_verbatim_include_token1] = ACTIONS(4484), - [aux_sym_import_token1] = ACTIONS(4487), - [anon_sym_BSLASHlabel] = ACTIONS(4490), - [aux_sym_label_reference_token1] = ACTIONS(4493), - [anon_sym_BSLASHeqref] = ACTIONS(4496), - [aux_sym_label_reference_range_token1] = ACTIONS(4499), - [anon_sym_BSLASHnewlabel] = ACTIONS(4502), - [aux_sym_command_definition_token1] = ACTIONS(4505), - [aux_sym_math_operator_token1] = ACTIONS(4508), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4511), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(4514), - [anon_sym_BSLASHnewacronym] = ACTIONS(4517), - [aux_sym_acronym_reference_token1] = ACTIONS(4520), - [aux_sym_theorem_definition_token1] = ACTIONS(4523), - [aux_sym_color_reference_token1] = ACTIONS(4526), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4529), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4532), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4535), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4538), - }, - [303] = { - [sym__simple_content] = STATE(308), - [sym_enum_item] = STATE(308), - [sym_brace_group] = STATE(308), - [sym_mixed_group] = STATE(308), - [sym_text] = STATE(308), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(308), - [sym_inline_formula] = STATE(308), - [sym_begin] = STATE(52), - [sym_environment] = STATE(308), - [sym_caption] = STATE(308), - [sym_citation] = STATE(308), - [sym_package_include] = STATE(308), - [sym_class_include] = STATE(308), - [sym_latex_include] = STATE(308), - [sym_latex_input] = STATE(308), - [sym_biblatex_include] = STATE(308), - [sym_bibtex_include] = STATE(308), - [sym_graphics_include] = STATE(308), - [sym_svg_include] = STATE(308), - [sym_inkscape_include] = STATE(308), - [sym_verbatim_include] = STATE(308), - [sym_import] = STATE(308), - [sym_label_definition] = STATE(308), - [sym_label_reference] = STATE(308), - [sym_equation_label_reference] = STATE(308), - [sym_label_reference_range] = STATE(308), - [sym_label_number] = STATE(308), - [sym_command_definition] = STATE(308), - [sym_math_operator] = STATE(308), - [sym_glossary_entry_definition] = STATE(308), - [sym_glossary_entry_reference] = STATE(308), - [sym_acronym_definition] = STATE(308), - [sym_acronym_reference] = STATE(308), - [sym_theorem_definition] = STATE(308), - [sym_color_reference] = STATE(308), - [sym_color_definition] = STATE(308), - [sym_color_set_definition] = STATE(308), - [sym_pgf_library_import] = STATE(308), - [sym_tikz_library_import] = STATE(308), - [sym_generic_command] = STATE(308), - [aux_sym_subparagraph_repeat1] = STATE(308), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(4541), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(4543), - [aux_sym_chapter_token1] = ACTIONS(4543), - [aux_sym_section_token1] = ACTIONS(4543), - [aux_sym_subsection_token1] = ACTIONS(4543), - [aux_sym_subsubsection_token1] = ACTIONS(4543), - [aux_sym_paragraph_token1] = ACTIONS(4543), - [aux_sym_subparagraph_token1] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(4541), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(4545), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [304] = { - [sym__simple_content] = STATE(304), - [sym_subsection] = STATE(304), - [sym_subsubsection] = STATE(304), - [sym_paragraph] = STATE(304), - [sym_subparagraph] = STATE(304), - [sym_enum_item] = STATE(304), - [sym_brace_group] = STATE(304), - [sym_mixed_group] = STATE(304), - [sym_text] = STATE(304), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(304), - [sym_inline_formula] = STATE(304), - [sym_begin] = STATE(94), - [sym_environment] = STATE(304), - [sym_caption] = STATE(304), - [sym_citation] = STATE(304), - [sym_package_include] = STATE(304), - [sym_class_include] = STATE(304), - [sym_latex_include] = STATE(304), - [sym_latex_input] = STATE(304), - [sym_biblatex_include] = STATE(304), - [sym_bibtex_include] = STATE(304), - [sym_graphics_include] = STATE(304), - [sym_svg_include] = STATE(304), - [sym_inkscape_include] = STATE(304), - [sym_verbatim_include] = STATE(304), - [sym_import] = STATE(304), - [sym_label_definition] = STATE(304), - [sym_label_reference] = STATE(304), - [sym_equation_label_reference] = STATE(304), - [sym_label_reference_range] = STATE(304), - [sym_label_number] = STATE(304), - [sym_command_definition] = STATE(304), - [sym_math_operator] = STATE(304), - [sym_glossary_entry_definition] = STATE(304), - [sym_glossary_entry_reference] = STATE(304), - [sym_acronym_definition] = STATE(304), - [sym_acronym_reference] = STATE(304), - [sym_theorem_definition] = STATE(304), - [sym_color_reference] = STATE(304), - [sym_color_definition] = STATE(304), - [sym_color_set_definition] = STATE(304), - [sym_pgf_library_import] = STATE(304), - [sym_tikz_library_import] = STATE(304), - [sym_generic_command] = STATE(304), - [aux_sym_section_repeat1] = STATE(304), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(4547), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(1888), - [aux_sym_subsection_token1] = ACTIONS(4550), - [aux_sym_subsubsection_token1] = ACTIONS(4553), - [aux_sym_paragraph_token1] = ACTIONS(4556), - [aux_sym_subparagraph_token1] = ACTIONS(4559), - [anon_sym_BSLASHitem] = ACTIONS(4562), - [anon_sym_LBRACK] = ACTIONS(4565), - [anon_sym_RBRACK] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(4568), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(4565), - [anon_sym_COMMA] = ACTIONS(4571), - [anon_sym_EQ] = ACTIONS(4571), - [sym_word] = ACTIONS(4571), - [sym_param] = ACTIONS(4574), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4577), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4577), - [anon_sym_DOLLAR] = ACTIONS(4580), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4583), - [anon_sym_BSLASHbegin] = ACTIONS(1926), - [anon_sym_BSLASHcaption] = ACTIONS(4586), - [aux_sym_citation_token1] = ACTIONS(4589), - [aux_sym_package_include_token1] = ACTIONS(4592), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4595), - [aux_sym_latex_include_token1] = ACTIONS(4598), - [aux_sym_latex_input_token1] = ACTIONS(4601), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4604), - [anon_sym_BSLASHbibliography] = ACTIONS(4607), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4610), - [anon_sym_BSLASHincludesvg] = ACTIONS(4613), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4616), - [aux_sym_verbatim_include_token1] = ACTIONS(4619), - [aux_sym_import_token1] = ACTIONS(4622), - [anon_sym_BSLASHlabel] = ACTIONS(4625), - [aux_sym_label_reference_token1] = ACTIONS(4628), - [anon_sym_BSLASHeqref] = ACTIONS(4631), - [aux_sym_label_reference_range_token1] = ACTIONS(4634), - [anon_sym_BSLASHnewlabel] = ACTIONS(4637), - [aux_sym_command_definition_token1] = ACTIONS(4640), - [aux_sym_math_operator_token1] = ACTIONS(4643), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4646), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(4649), - [anon_sym_BSLASHnewacronym] = ACTIONS(4652), - [aux_sym_acronym_reference_token1] = ACTIONS(4655), - [aux_sym_theorem_definition_token1] = ACTIONS(4658), - [aux_sym_color_reference_token1] = ACTIONS(4661), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4664), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4667), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4670), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4673), - }, - [305] = { - [sym__simple_content] = STATE(301), - [sym_subsubsection] = STATE(301), - [sym_paragraph] = STATE(301), - [sym_subparagraph] = STATE(301), - [sym_enum_item] = STATE(301), - [sym_brace_group] = STATE(301), - [sym_mixed_group] = STATE(301), - [sym_text] = STATE(301), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(301), - [sym_inline_formula] = STATE(301), - [sym_begin] = STATE(73), - [sym_environment] = STATE(301), - [sym_caption] = STATE(301), - [sym_citation] = STATE(301), - [sym_package_include] = STATE(301), - [sym_class_include] = STATE(301), - [sym_latex_include] = STATE(301), - [sym_latex_input] = STATE(301), - [sym_biblatex_include] = STATE(301), - [sym_bibtex_include] = STATE(301), - [sym_graphics_include] = STATE(301), - [sym_svg_include] = STATE(301), - [sym_inkscape_include] = STATE(301), - [sym_verbatim_include] = STATE(301), - [sym_import] = STATE(301), - [sym_label_definition] = STATE(301), - [sym_label_reference] = STATE(301), - [sym_equation_label_reference] = STATE(301), - [sym_label_reference_range] = STATE(301), - [sym_label_number] = STATE(301), - [sym_command_definition] = STATE(301), - [sym_math_operator] = STATE(301), - [sym_glossary_entry_definition] = STATE(301), - [sym_glossary_entry_reference] = STATE(301), - [sym_acronym_definition] = STATE(301), - [sym_acronym_reference] = STATE(301), - [sym_theorem_definition] = STATE(301), - [sym_color_reference] = STATE(301), - [sym_color_definition] = STATE(301), - [sym_color_set_definition] = STATE(301), - [sym_pgf_library_import] = STATE(301), - [sym_tikz_library_import] = STATE(301), - [sym_generic_command] = STATE(301), - [aux_sym_subsection_repeat1] = STATE(301), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2158), - [aux_sym_chapter_token1] = ACTIONS(2158), - [aux_sym_section_token1] = ACTIONS(2158), - [aux_sym_subsection_token1] = ACTIONS(2158), - [aux_sym_subsubsection_token1] = ACTIONS(466), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(4676), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(2158), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [306] = { - [sym__simple_content] = STATE(306), - [sym_subsubsection] = STATE(306), - [sym_paragraph] = STATE(306), - [sym_subparagraph] = STATE(306), - [sym_enum_item] = STATE(306), - [sym_brace_group] = STATE(306), - [sym_mixed_group] = STATE(306), - [sym_text] = STATE(306), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(306), - [sym_inline_formula] = STATE(306), - [sym_begin] = STATE(66), - [sym_environment] = STATE(306), - [sym_caption] = STATE(306), - [sym_citation] = STATE(306), - [sym_package_include] = STATE(306), - [sym_class_include] = STATE(306), - [sym_latex_include] = STATE(306), - [sym_latex_input] = STATE(306), - [sym_biblatex_include] = STATE(306), - [sym_bibtex_include] = STATE(306), - [sym_graphics_include] = STATE(306), - [sym_svg_include] = STATE(306), - [sym_inkscape_include] = STATE(306), - [sym_verbatim_include] = STATE(306), - [sym_import] = STATE(306), - [sym_label_definition] = STATE(306), - [sym_label_reference] = STATE(306), - [sym_equation_label_reference] = STATE(306), - [sym_label_reference_range] = STATE(306), - [sym_label_number] = STATE(306), - [sym_command_definition] = STATE(306), - [sym_math_operator] = STATE(306), - [sym_glossary_entry_definition] = STATE(306), - [sym_glossary_entry_reference] = STATE(306), - [sym_acronym_definition] = STATE(306), - [sym_acronym_reference] = STATE(306), - [sym_theorem_definition] = STATE(306), - [sym_color_reference] = STATE(306), - [sym_color_definition] = STATE(306), - [sym_color_set_definition] = STATE(306), - [sym_pgf_library_import] = STATE(306), - [sym_tikz_library_import] = STATE(306), - [sym_generic_command] = STATE(306), - [aux_sym_subsection_repeat1] = STATE(306), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(4678), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2024), - [aux_sym_chapter_token1] = ACTIONS(2024), - [aux_sym_section_token1] = ACTIONS(2024), - [aux_sym_subsection_token1] = ACTIONS(2024), - [aux_sym_subsubsection_token1] = ACTIONS(4681), - [aux_sym_paragraph_token1] = ACTIONS(4684), - [aux_sym_subparagraph_token1] = ACTIONS(4687), - [anon_sym_BSLASHitem] = ACTIONS(4690), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_LBRACE] = ACTIONS(4696), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_COMMA] = ACTIONS(4699), - [anon_sym_EQ] = ACTIONS(4699), - [sym_word] = ACTIONS(4699), - [sym_param] = ACTIONS(4702), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4705), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4705), - [anon_sym_DOLLAR] = ACTIONS(4708), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4711), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2019), - [anon_sym_BSLASHbegin] = ACTIONS(2059), - [anon_sym_BSLASHcaption] = ACTIONS(4714), - [aux_sym_citation_token1] = ACTIONS(4717), - [aux_sym_package_include_token1] = ACTIONS(4720), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4723), - [aux_sym_latex_include_token1] = ACTIONS(4726), - [aux_sym_latex_input_token1] = ACTIONS(4729), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4732), - [anon_sym_BSLASHbibliography] = ACTIONS(4735), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4738), - [anon_sym_BSLASHincludesvg] = ACTIONS(4741), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4744), - [aux_sym_verbatim_include_token1] = ACTIONS(4747), - [aux_sym_import_token1] = ACTIONS(4750), - [anon_sym_BSLASHlabel] = ACTIONS(4753), - [aux_sym_label_reference_token1] = ACTIONS(4756), - [anon_sym_BSLASHeqref] = ACTIONS(4759), - [aux_sym_label_reference_range_token1] = ACTIONS(4762), - [anon_sym_BSLASHnewlabel] = ACTIONS(4765), - [aux_sym_command_definition_token1] = ACTIONS(4768), - [aux_sym_math_operator_token1] = ACTIONS(4771), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4774), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(4777), - [anon_sym_BSLASHnewacronym] = ACTIONS(4780), - [aux_sym_acronym_reference_token1] = ACTIONS(4783), - [aux_sym_theorem_definition_token1] = ACTIONS(4786), - [aux_sym_color_reference_token1] = ACTIONS(4789), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4792), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4795), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4798), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4801), - }, - [307] = { - [sym__simple_content] = STATE(306), - [sym_subsubsection] = STATE(306), - [sym_paragraph] = STATE(306), - [sym_subparagraph] = STATE(306), - [sym_enum_item] = STATE(306), - [sym_brace_group] = STATE(306), - [sym_mixed_group] = STATE(306), - [sym_text] = STATE(306), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(306), - [sym_inline_formula] = STATE(306), - [sym_begin] = STATE(66), - [sym_environment] = STATE(306), - [sym_caption] = STATE(306), - [sym_citation] = STATE(306), - [sym_package_include] = STATE(306), - [sym_class_include] = STATE(306), - [sym_latex_include] = STATE(306), - [sym_latex_input] = STATE(306), - [sym_biblatex_include] = STATE(306), - [sym_bibtex_include] = STATE(306), - [sym_graphics_include] = STATE(306), - [sym_svg_include] = STATE(306), - [sym_inkscape_include] = STATE(306), - [sym_verbatim_include] = STATE(306), - [sym_import] = STATE(306), - [sym_label_definition] = STATE(306), - [sym_label_reference] = STATE(306), - [sym_equation_label_reference] = STATE(306), - [sym_label_reference_range] = STATE(306), - [sym_label_number] = STATE(306), - [sym_command_definition] = STATE(306), - [sym_math_operator] = STATE(306), - [sym_glossary_entry_definition] = STATE(306), - [sym_glossary_entry_reference] = STATE(306), - [sym_acronym_definition] = STATE(306), - [sym_acronym_reference] = STATE(306), - [sym_theorem_definition] = STATE(306), - [sym_color_reference] = STATE(306), - [sym_color_definition] = STATE(306), - [sym_color_set_definition] = STATE(306), - [sym_pgf_library_import] = STATE(306), - [sym_tikz_library_import] = STATE(306), - [sym_generic_command] = STATE(306), - [aux_sym_subsection_repeat1] = STATE(306), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2164), - [aux_sym_chapter_token1] = ACTIONS(2164), - [aux_sym_section_token1] = ACTIONS(2164), - [aux_sym_subsection_token1] = ACTIONS(2164), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(4804), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2162), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [308] = { - [sym__simple_content] = STATE(311), - [sym_enum_item] = STATE(311), - [sym_brace_group] = STATE(311), - [sym_mixed_group] = STATE(311), - [sym_text] = STATE(311), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(311), - [sym_inline_formula] = STATE(311), - [sym_begin] = STATE(52), - [sym_environment] = STATE(311), - [sym_caption] = STATE(311), - [sym_citation] = STATE(311), - [sym_package_include] = STATE(311), - [sym_class_include] = STATE(311), - [sym_latex_include] = STATE(311), - [sym_latex_input] = STATE(311), - [sym_biblatex_include] = STATE(311), - [sym_bibtex_include] = STATE(311), - [sym_graphics_include] = STATE(311), - [sym_svg_include] = STATE(311), - [sym_inkscape_include] = STATE(311), - [sym_verbatim_include] = STATE(311), - [sym_import] = STATE(311), - [sym_label_definition] = STATE(311), - [sym_label_reference] = STATE(311), - [sym_equation_label_reference] = STATE(311), - [sym_label_reference_range] = STATE(311), - [sym_label_number] = STATE(311), - [sym_command_definition] = STATE(311), - [sym_math_operator] = STATE(311), - [sym_glossary_entry_definition] = STATE(311), - [sym_glossary_entry_reference] = STATE(311), - [sym_acronym_definition] = STATE(311), - [sym_acronym_reference] = STATE(311), - [sym_theorem_definition] = STATE(311), - [sym_color_reference] = STATE(311), - [sym_color_definition] = STATE(311), - [sym_color_set_definition] = STATE(311), - [sym_pgf_library_import] = STATE(311), - [sym_tikz_library_import] = STATE(311), - [sym_generic_command] = STATE(311), - [aux_sym_subparagraph_repeat1] = STATE(311), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(4806), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(4808), - [aux_sym_chapter_token1] = ACTIONS(4808), - [aux_sym_section_token1] = ACTIONS(4808), - [aux_sym_subsection_token1] = ACTIONS(4808), - [aux_sym_subsubsection_token1] = ACTIONS(4808), - [aux_sym_paragraph_token1] = ACTIONS(4808), - [aux_sym_subparagraph_token1] = ACTIONS(4808), - [anon_sym_BSLASHitem] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(4806), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(4806), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(4806), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(4810), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [309] = { - [sym__simple_content] = STATE(309), - [sym_subsubsection] = STATE(309), - [sym_paragraph] = STATE(309), - [sym_subparagraph] = STATE(309), - [sym_enum_item] = STATE(309), - [sym_brace_group] = STATE(309), - [sym_mixed_group] = STATE(309), - [sym_text] = STATE(309), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(309), - [sym_inline_formula] = STATE(309), - [sym_begin] = STATE(59), - [sym_environment] = STATE(309), - [sym_caption] = STATE(309), - [sym_citation] = STATE(309), - [sym_package_include] = STATE(309), - [sym_class_include] = STATE(309), - [sym_latex_include] = STATE(309), - [sym_latex_input] = STATE(309), - [sym_biblatex_include] = STATE(309), - [sym_bibtex_include] = STATE(309), - [sym_graphics_include] = STATE(309), - [sym_svg_include] = STATE(309), - [sym_inkscape_include] = STATE(309), - [sym_verbatim_include] = STATE(309), - [sym_import] = STATE(309), - [sym_label_definition] = STATE(309), - [sym_label_reference] = STATE(309), - [sym_equation_label_reference] = STATE(309), - [sym_label_reference_range] = STATE(309), - [sym_label_number] = STATE(309), - [sym_command_definition] = STATE(309), - [sym_math_operator] = STATE(309), - [sym_glossary_entry_definition] = STATE(309), - [sym_glossary_entry_reference] = STATE(309), - [sym_acronym_definition] = STATE(309), - [sym_acronym_reference] = STATE(309), - [sym_theorem_definition] = STATE(309), - [sym_color_reference] = STATE(309), - [sym_color_definition] = STATE(309), - [sym_color_set_definition] = STATE(309), - [sym_pgf_library_import] = STATE(309), - [sym_tikz_library_import] = STATE(309), - [sym_generic_command] = STATE(309), - [aux_sym_subsection_repeat1] = STATE(309), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(4812), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2024), - [aux_sym_chapter_token1] = ACTIONS(2024), - [aux_sym_section_token1] = ACTIONS(2024), - [aux_sym_subsection_token1] = ACTIONS(2024), - [aux_sym_subsubsection_token1] = ACTIONS(4815), - [aux_sym_paragraph_token1] = ACTIONS(4818), - [aux_sym_subparagraph_token1] = ACTIONS(4821), - [anon_sym_BSLASHitem] = ACTIONS(4824), - [anon_sym_LBRACK] = ACTIONS(4827), - [anon_sym_LBRACE] = ACTIONS(4830), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_COMMA] = ACTIONS(4833), - [anon_sym_EQ] = ACTIONS(4833), - [sym_word] = ACTIONS(4833), - [sym_param] = ACTIONS(4836), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4839), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4839), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2019), - [anon_sym_DOLLAR] = ACTIONS(4842), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4845), - [anon_sym_BSLASHbegin] = ACTIONS(2059), - [anon_sym_BSLASHcaption] = ACTIONS(4848), - [aux_sym_citation_token1] = ACTIONS(4851), - [aux_sym_package_include_token1] = ACTIONS(4854), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), - [aux_sym_latex_include_token1] = ACTIONS(4860), - [aux_sym_latex_input_token1] = ACTIONS(4863), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4866), - [anon_sym_BSLASHbibliography] = ACTIONS(4869), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4872), - [anon_sym_BSLASHincludesvg] = ACTIONS(4875), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4878), - [aux_sym_verbatim_include_token1] = ACTIONS(4881), - [aux_sym_import_token1] = ACTIONS(4884), - [anon_sym_BSLASHlabel] = ACTIONS(4887), - [aux_sym_label_reference_token1] = ACTIONS(4890), - [anon_sym_BSLASHeqref] = ACTIONS(4893), - [aux_sym_label_reference_range_token1] = ACTIONS(4896), - [anon_sym_BSLASHnewlabel] = ACTIONS(4899), - [aux_sym_command_definition_token1] = ACTIONS(4902), - [aux_sym_math_operator_token1] = ACTIONS(4905), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4908), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(4911), - [anon_sym_BSLASHnewacronym] = ACTIONS(4914), - [aux_sym_acronym_reference_token1] = ACTIONS(4917), - [aux_sym_theorem_definition_token1] = ACTIONS(4920), - [aux_sym_color_reference_token1] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4926), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4932), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4935), - }, - [310] = { - [sym__simple_content] = STATE(310), - [sym_subsubsection] = STATE(310), - [sym_paragraph] = STATE(310), - [sym_subparagraph] = STATE(310), - [sym_enum_item] = STATE(310), - [sym_brace_group] = STATE(310), - [sym_mixed_group] = STATE(310), - [sym_text] = STATE(310), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(310), - [sym_inline_formula] = STATE(310), - [sym_begin] = STATE(86), - [sym_environment] = STATE(310), - [sym_caption] = STATE(310), - [sym_citation] = STATE(310), - [sym_package_include] = STATE(310), - [sym_class_include] = STATE(310), - [sym_latex_include] = STATE(310), - [sym_latex_input] = STATE(310), - [sym_biblatex_include] = STATE(310), - [sym_bibtex_include] = STATE(310), - [sym_graphics_include] = STATE(310), - [sym_svg_include] = STATE(310), - [sym_inkscape_include] = STATE(310), - [sym_verbatim_include] = STATE(310), - [sym_import] = STATE(310), - [sym_label_definition] = STATE(310), - [sym_label_reference] = STATE(310), - [sym_equation_label_reference] = STATE(310), - [sym_label_reference_range] = STATE(310), - [sym_label_number] = STATE(310), - [sym_command_definition] = STATE(310), - [sym_math_operator] = STATE(310), - [sym_glossary_entry_definition] = STATE(310), - [sym_glossary_entry_reference] = STATE(310), - [sym_acronym_definition] = STATE(310), - [sym_acronym_reference] = STATE(310), - [sym_theorem_definition] = STATE(310), - [sym_color_reference] = STATE(310), - [sym_color_definition] = STATE(310), - [sym_color_set_definition] = STATE(310), - [sym_pgf_library_import] = STATE(310), - [sym_tikz_library_import] = STATE(310), - [sym_generic_command] = STATE(310), - [aux_sym_subsection_repeat1] = STATE(310), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(4938), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(2024), - [aux_sym_section_token1] = ACTIONS(2024), - [aux_sym_subsection_token1] = ACTIONS(2024), - [aux_sym_subsubsection_token1] = ACTIONS(4941), - [aux_sym_paragraph_token1] = ACTIONS(4944), - [aux_sym_subparagraph_token1] = ACTIONS(4947), - [anon_sym_BSLASHitem] = ACTIONS(4950), - [anon_sym_LBRACK] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(4956), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_COMMA] = ACTIONS(4959), - [anon_sym_EQ] = ACTIONS(4959), - [sym_word] = ACTIONS(4959), - [sym_param] = ACTIONS(4962), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4965), - [anon_sym_DOLLAR] = ACTIONS(4968), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), - [anon_sym_BSLASHbegin] = ACTIONS(2059), - [anon_sym_BSLASHcaption] = ACTIONS(4974), - [aux_sym_citation_token1] = ACTIONS(4977), - [aux_sym_package_include_token1] = ACTIONS(4980), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [aux_sym_latex_include_token1] = ACTIONS(4986), - [aux_sym_latex_input_token1] = ACTIONS(4989), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4992), - [anon_sym_BSLASHbibliography] = ACTIONS(4995), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4998), - [anon_sym_BSLASHincludesvg] = ACTIONS(5001), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5004), - [aux_sym_verbatim_include_token1] = ACTIONS(5007), - [aux_sym_import_token1] = ACTIONS(5010), - [anon_sym_BSLASHlabel] = ACTIONS(5013), - [aux_sym_label_reference_token1] = ACTIONS(5016), - [anon_sym_BSLASHeqref] = ACTIONS(5019), - [aux_sym_label_reference_range_token1] = ACTIONS(5022), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [aux_sym_command_definition_token1] = ACTIONS(5028), - [aux_sym_math_operator_token1] = ACTIONS(5031), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5034), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5040), - [aux_sym_acronym_reference_token1] = ACTIONS(5043), - [aux_sym_theorem_definition_token1] = ACTIONS(5046), - [aux_sym_color_reference_token1] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5052), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5055), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5058), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), - }, - [311] = { - [sym__simple_content] = STATE(311), - [sym_enum_item] = STATE(311), - [sym_brace_group] = STATE(311), - [sym_mixed_group] = STATE(311), - [sym_text] = STATE(311), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(311), - [sym_inline_formula] = STATE(311), - [sym_begin] = STATE(52), - [sym_environment] = STATE(311), - [sym_caption] = STATE(311), - [sym_citation] = STATE(311), - [sym_package_include] = STATE(311), - [sym_class_include] = STATE(311), - [sym_latex_include] = STATE(311), - [sym_latex_input] = STATE(311), - [sym_biblatex_include] = STATE(311), - [sym_bibtex_include] = STATE(311), - [sym_graphics_include] = STATE(311), - [sym_svg_include] = STATE(311), - [sym_inkscape_include] = STATE(311), - [sym_verbatim_include] = STATE(311), - [sym_import] = STATE(311), - [sym_label_definition] = STATE(311), - [sym_label_reference] = STATE(311), - [sym_equation_label_reference] = STATE(311), - [sym_label_reference_range] = STATE(311), - [sym_label_number] = STATE(311), - [sym_command_definition] = STATE(311), - [sym_math_operator] = STATE(311), - [sym_glossary_entry_definition] = STATE(311), - [sym_glossary_entry_reference] = STATE(311), - [sym_acronym_definition] = STATE(311), - [sym_acronym_reference] = STATE(311), - [sym_theorem_definition] = STATE(311), - [sym_color_reference] = STATE(311), - [sym_color_definition] = STATE(311), - [sym_color_set_definition] = STATE(311), - [sym_pgf_library_import] = STATE(311), - [sym_tikz_library_import] = STATE(311), - [sym_generic_command] = STATE(311), - [aux_sym_subparagraph_repeat1] = STATE(311), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(5064), - [sym_generic_command_name] = ACTIONS(5066), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5069), - [aux_sym_chapter_token1] = ACTIONS(5069), - [aux_sym_section_token1] = ACTIONS(5069), - [aux_sym_subsection_token1] = ACTIONS(5069), - [aux_sym_subsubsection_token1] = ACTIONS(5069), - [aux_sym_paragraph_token1] = ACTIONS(5069), - [aux_sym_subparagraph_token1] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5074), - [anon_sym_RBRACK] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(5077), - [anon_sym_RBRACE] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(5074), - [anon_sym_RPAREN] = ACTIONS(5064), - [anon_sym_COMMA] = ACTIONS(5080), - [anon_sym_EQ] = ACTIONS(5080), - [sym_word] = ACTIONS(5080), - [sym_param] = ACTIONS(5083), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5086), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5086), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5092), - [anon_sym_BSLASHbegin] = ACTIONS(5095), - [anon_sym_BSLASHcaption] = ACTIONS(5098), - [aux_sym_citation_token1] = ACTIONS(5101), - [aux_sym_package_include_token1] = ACTIONS(5104), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5107), - [aux_sym_latex_include_token1] = ACTIONS(5110), - [aux_sym_latex_input_token1] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5116), - [anon_sym_BSLASHbibliography] = ACTIONS(5119), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5122), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5128), - [aux_sym_verbatim_include_token1] = ACTIONS(5131), - [aux_sym_import_token1] = ACTIONS(5134), - [anon_sym_BSLASHlabel] = ACTIONS(5137), - [aux_sym_label_reference_token1] = ACTIONS(5140), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [aux_sym_label_reference_range_token1] = ACTIONS(5146), - [anon_sym_BSLASHnewlabel] = ACTIONS(5149), - [aux_sym_command_definition_token1] = ACTIONS(5152), - [aux_sym_math_operator_token1] = ACTIONS(5155), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5158), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5161), - [anon_sym_BSLASHnewacronym] = ACTIONS(5164), - [aux_sym_acronym_reference_token1] = ACTIONS(5167), - [aux_sym_theorem_definition_token1] = ACTIONS(5170), - [aux_sym_color_reference_token1] = ACTIONS(5173), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5176), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5182), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - }, - [312] = { - [sym__simple_content] = STATE(313), - [sym_subsubsection] = STATE(313), - [sym_paragraph] = STATE(313), - [sym_subparagraph] = STATE(313), - [sym_enum_item] = STATE(313), - [sym_brace_group] = STATE(313), - [sym_mixed_group] = STATE(313), - [sym_text] = STATE(313), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(313), - [sym_inline_formula] = STATE(313), - [sym_begin] = STATE(86), - [sym_environment] = STATE(313), - [sym_caption] = STATE(313), - [sym_citation] = STATE(313), - [sym_package_include] = STATE(313), - [sym_class_include] = STATE(313), - [sym_latex_include] = STATE(313), - [sym_latex_input] = STATE(313), - [sym_biblatex_include] = STATE(313), - [sym_bibtex_include] = STATE(313), - [sym_graphics_include] = STATE(313), - [sym_svg_include] = STATE(313), - [sym_inkscape_include] = STATE(313), - [sym_verbatim_include] = STATE(313), - [sym_import] = STATE(313), - [sym_label_definition] = STATE(313), - [sym_label_reference] = STATE(313), - [sym_equation_label_reference] = STATE(313), - [sym_label_reference_range] = STATE(313), - [sym_label_number] = STATE(313), - [sym_command_definition] = STATE(313), - [sym_math_operator] = STATE(313), - [sym_glossary_entry_definition] = STATE(313), - [sym_glossary_entry_reference] = STATE(313), - [sym_acronym_definition] = STATE(313), - [sym_acronym_reference] = STATE(313), - [sym_theorem_definition] = STATE(313), - [sym_color_reference] = STATE(313), - [sym_color_definition] = STATE(313), - [sym_color_set_definition] = STATE(313), - [sym_pgf_library_import] = STATE(313), - [sym_tikz_library_import] = STATE(313), - [sym_generic_command] = STATE(313), - [aux_sym_subsection_repeat1] = STATE(313), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(2158), - [aux_sym_section_token1] = ACTIONS(2158), - [aux_sym_subsection_token1] = ACTIONS(2158), - [aux_sym_subsubsection_token1] = ACTIONS(2178), - [aux_sym_paragraph_token1] = ACTIONS(2180), - [aux_sym_subparagraph_token1] = ACTIONS(2182), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(5188), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [313] = { - [sym__simple_content] = STATE(310), - [sym_subsubsection] = STATE(310), - [sym_paragraph] = STATE(310), - [sym_subparagraph] = STATE(310), - [sym_enum_item] = STATE(310), - [sym_brace_group] = STATE(310), - [sym_mixed_group] = STATE(310), - [sym_text] = STATE(310), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(310), - [sym_inline_formula] = STATE(310), - [sym_begin] = STATE(86), - [sym_environment] = STATE(310), - [sym_caption] = STATE(310), - [sym_citation] = STATE(310), - [sym_package_include] = STATE(310), - [sym_class_include] = STATE(310), - [sym_latex_include] = STATE(310), - [sym_latex_input] = STATE(310), - [sym_biblatex_include] = STATE(310), - [sym_bibtex_include] = STATE(310), - [sym_graphics_include] = STATE(310), - [sym_svg_include] = STATE(310), - [sym_inkscape_include] = STATE(310), - [sym_verbatim_include] = STATE(310), - [sym_import] = STATE(310), - [sym_label_definition] = STATE(310), - [sym_label_reference] = STATE(310), - [sym_equation_label_reference] = STATE(310), - [sym_label_reference_range] = STATE(310), - [sym_label_number] = STATE(310), - [sym_command_definition] = STATE(310), - [sym_math_operator] = STATE(310), - [sym_glossary_entry_definition] = STATE(310), - [sym_glossary_entry_reference] = STATE(310), - [sym_acronym_definition] = STATE(310), - [sym_acronym_reference] = STATE(310), - [sym_theorem_definition] = STATE(310), - [sym_color_reference] = STATE(310), - [sym_color_definition] = STATE(310), - [sym_color_set_definition] = STATE(310), - [sym_pgf_library_import] = STATE(310), - [sym_tikz_library_import] = STATE(310), - [sym_generic_command] = STATE(310), - [aux_sym_subsection_repeat1] = STATE(310), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(2164), - [aux_sym_section_token1] = ACTIONS(2164), - [aux_sym_subsection_token1] = ACTIONS(2164), - [aux_sym_subsubsection_token1] = ACTIONS(2178), - [aux_sym_paragraph_token1] = ACTIONS(2180), - [aux_sym_subparagraph_token1] = ACTIONS(2182), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(5190), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [314] = { - [sym__simple_content] = STATE(315), - [sym_subsection] = STATE(315), - [sym_subsubsection] = STATE(315), - [sym_paragraph] = STATE(315), - [sym_subparagraph] = STATE(315), - [sym_enum_item] = STATE(315), - [sym_brace_group] = STATE(315), - [sym_mixed_group] = STATE(315), - [sym_text] = STATE(315), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(315), - [sym_inline_formula] = STATE(315), - [sym_begin] = STATE(94), - [sym_environment] = STATE(315), - [sym_caption] = STATE(315), - [sym_citation] = STATE(315), - [sym_package_include] = STATE(315), - [sym_class_include] = STATE(315), - [sym_latex_include] = STATE(315), - [sym_latex_input] = STATE(315), - [sym_biblatex_include] = STATE(315), - [sym_bibtex_include] = STATE(315), - [sym_graphics_include] = STATE(315), - [sym_svg_include] = STATE(315), - [sym_inkscape_include] = STATE(315), - [sym_verbatim_include] = STATE(315), - [sym_import] = STATE(315), - [sym_label_definition] = STATE(315), - [sym_label_reference] = STATE(315), - [sym_equation_label_reference] = STATE(315), - [sym_label_reference_range] = STATE(315), - [sym_label_number] = STATE(315), - [sym_command_definition] = STATE(315), - [sym_math_operator] = STATE(315), - [sym_glossary_entry_definition] = STATE(315), - [sym_glossary_entry_reference] = STATE(315), - [sym_acronym_definition] = STATE(315), - [sym_acronym_reference] = STATE(315), - [sym_theorem_definition] = STATE(315), - [sym_color_reference] = STATE(315), - [sym_color_definition] = STATE(315), - [sym_color_set_definition] = STATE(315), - [sym_pgf_library_import] = STATE(315), - [sym_tikz_library_import] = STATE(315), - [sym_generic_command] = STATE(315), - [aux_sym_section_repeat1] = STATE(315), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(1879), - [aux_sym_subsection_token1] = ACTIONS(3794), - [aux_sym_subsubsection_token1] = ACTIONS(3796), - [aux_sym_paragraph_token1] = ACTIONS(3798), - [aux_sym_subparagraph_token1] = ACTIONS(3800), - [anon_sym_BSLASHitem] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(5192), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [315] = { - [sym__simple_content] = STATE(304), - [sym_subsection] = STATE(304), - [sym_subsubsection] = STATE(304), - [sym_paragraph] = STATE(304), - [sym_subparagraph] = STATE(304), - [sym_enum_item] = STATE(304), - [sym_brace_group] = STATE(304), - [sym_mixed_group] = STATE(304), - [sym_text] = STATE(304), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(304), - [sym_inline_formula] = STATE(304), - [sym_begin] = STATE(94), - [sym_environment] = STATE(304), - [sym_caption] = STATE(304), - [sym_citation] = STATE(304), - [sym_package_include] = STATE(304), - [sym_class_include] = STATE(304), - [sym_latex_include] = STATE(304), - [sym_latex_input] = STATE(304), - [sym_biblatex_include] = STATE(304), - [sym_bibtex_include] = STATE(304), - [sym_graphics_include] = STATE(304), - [sym_svg_include] = STATE(304), - [sym_inkscape_include] = STATE(304), - [sym_verbatim_include] = STATE(304), - [sym_import] = STATE(304), - [sym_label_definition] = STATE(304), - [sym_label_reference] = STATE(304), - [sym_equation_label_reference] = STATE(304), - [sym_label_reference_range] = STATE(304), - [sym_label_number] = STATE(304), - [sym_command_definition] = STATE(304), - [sym_math_operator] = STATE(304), - [sym_glossary_entry_definition] = STATE(304), - [sym_glossary_entry_reference] = STATE(304), - [sym_acronym_definition] = STATE(304), - [sym_acronym_reference] = STATE(304), - [sym_theorem_definition] = STATE(304), - [sym_color_reference] = STATE(304), - [sym_color_definition] = STATE(304), - [sym_color_set_definition] = STATE(304), - [sym_pgf_library_import] = STATE(304), - [sym_tikz_library_import] = STATE(304), - [sym_generic_command] = STATE(304), - [aux_sym_section_repeat1] = STATE(304), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(1873), - [aux_sym_subsection_token1] = ACTIONS(3794), - [aux_sym_subsubsection_token1] = ACTIONS(3796), - [aux_sym_paragraph_token1] = ACTIONS(3798), - [aux_sym_subparagraph_token1] = ACTIONS(3800), - [anon_sym_BSLASHitem] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(5194), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [316] = { - [sym__simple_content] = STATE(318), - [sym_subsubsection] = STATE(318), - [sym_paragraph] = STATE(318), - [sym_subparagraph] = STATE(318), - [sym_enum_item] = STATE(318), - [sym_brace_group] = STATE(318), - [sym_mixed_group] = STATE(318), - [sym_text] = STATE(318), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(318), - [sym_inline_formula] = STATE(318), - [sym_begin] = STATE(59), - [sym_environment] = STATE(318), - [sym_caption] = STATE(318), - [sym_citation] = STATE(318), - [sym_package_include] = STATE(318), - [sym_class_include] = STATE(318), - [sym_latex_include] = STATE(318), - [sym_latex_input] = STATE(318), - [sym_biblatex_include] = STATE(318), - [sym_bibtex_include] = STATE(318), - [sym_graphics_include] = STATE(318), - [sym_svg_include] = STATE(318), - [sym_inkscape_include] = STATE(318), - [sym_verbatim_include] = STATE(318), - [sym_import] = STATE(318), - [sym_label_definition] = STATE(318), - [sym_label_reference] = STATE(318), - [sym_equation_label_reference] = STATE(318), - [sym_label_reference_range] = STATE(318), - [sym_label_number] = STATE(318), - [sym_command_definition] = STATE(318), - [sym_math_operator] = STATE(318), - [sym_glossary_entry_definition] = STATE(318), - [sym_glossary_entry_reference] = STATE(318), - [sym_acronym_definition] = STATE(318), - [sym_acronym_reference] = STATE(318), - [sym_theorem_definition] = STATE(318), - [sym_color_reference] = STATE(318), - [sym_color_definition] = STATE(318), - [sym_color_set_definition] = STATE(318), - [sym_pgf_library_import] = STATE(318), - [sym_tikz_library_import] = STATE(318), - [sym_generic_command] = STATE(318), - [aux_sym_subsection_repeat1] = STATE(318), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2158), - [aux_sym_chapter_token1] = ACTIONS(2158), - [aux_sym_section_token1] = ACTIONS(2158), - [aux_sym_subsection_token1] = ACTIONS(2158), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(5196), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2156), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [317] = { - [sym__simple_content] = STATE(307), - [sym_subsubsection] = STATE(307), - [sym_paragraph] = STATE(307), - [sym_subparagraph] = STATE(307), - [sym_enum_item] = STATE(307), - [sym_brace_group] = STATE(307), - [sym_mixed_group] = STATE(307), - [sym_text] = STATE(307), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(307), - [sym_inline_formula] = STATE(307), - [sym_begin] = STATE(66), - [sym_environment] = STATE(307), - [sym_caption] = STATE(307), - [sym_citation] = STATE(307), - [sym_package_include] = STATE(307), - [sym_class_include] = STATE(307), - [sym_latex_include] = STATE(307), - [sym_latex_input] = STATE(307), - [sym_biblatex_include] = STATE(307), - [sym_bibtex_include] = STATE(307), - [sym_graphics_include] = STATE(307), - [sym_svg_include] = STATE(307), - [sym_inkscape_include] = STATE(307), - [sym_verbatim_include] = STATE(307), - [sym_import] = STATE(307), - [sym_label_definition] = STATE(307), - [sym_label_reference] = STATE(307), - [sym_equation_label_reference] = STATE(307), - [sym_label_reference_range] = STATE(307), - [sym_label_number] = STATE(307), - [sym_command_definition] = STATE(307), - [sym_math_operator] = STATE(307), - [sym_glossary_entry_definition] = STATE(307), - [sym_glossary_entry_reference] = STATE(307), - [sym_acronym_definition] = STATE(307), - [sym_acronym_reference] = STATE(307), - [sym_theorem_definition] = STATE(307), - [sym_color_reference] = STATE(307), - [sym_color_definition] = STATE(307), - [sym_color_set_definition] = STATE(307), - [sym_pgf_library_import] = STATE(307), - [sym_tikz_library_import] = STATE(307), - [sym_generic_command] = STATE(307), - [aux_sym_subsection_repeat1] = STATE(307), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2158), - [aux_sym_chapter_token1] = ACTIONS(2158), - [aux_sym_section_token1] = ACTIONS(2158), - [aux_sym_subsection_token1] = ACTIONS(2158), - [aux_sym_subsubsection_token1] = ACTIONS(368), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(5198), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2156), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [318] = { - [sym__simple_content] = STATE(309), - [sym_subsubsection] = STATE(309), - [sym_paragraph] = STATE(309), - [sym_subparagraph] = STATE(309), - [sym_enum_item] = STATE(309), - [sym_brace_group] = STATE(309), - [sym_mixed_group] = STATE(309), - [sym_text] = STATE(309), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(309), - [sym_inline_formula] = STATE(309), - [sym_begin] = STATE(59), - [sym_environment] = STATE(309), - [sym_caption] = STATE(309), - [sym_citation] = STATE(309), - [sym_package_include] = STATE(309), - [sym_class_include] = STATE(309), - [sym_latex_include] = STATE(309), - [sym_latex_input] = STATE(309), - [sym_biblatex_include] = STATE(309), - [sym_bibtex_include] = STATE(309), - [sym_graphics_include] = STATE(309), - [sym_svg_include] = STATE(309), - [sym_inkscape_include] = STATE(309), - [sym_verbatim_include] = STATE(309), - [sym_import] = STATE(309), - [sym_label_definition] = STATE(309), - [sym_label_reference] = STATE(309), - [sym_equation_label_reference] = STATE(309), - [sym_label_reference_range] = STATE(309), - [sym_label_number] = STATE(309), - [sym_command_definition] = STATE(309), - [sym_math_operator] = STATE(309), - [sym_glossary_entry_definition] = STATE(309), - [sym_glossary_entry_reference] = STATE(309), - [sym_acronym_definition] = STATE(309), - [sym_acronym_reference] = STATE(309), - [sym_theorem_definition] = STATE(309), - [sym_color_reference] = STATE(309), - [sym_color_definition] = STATE(309), - [sym_color_set_definition] = STATE(309), - [sym_pgf_library_import] = STATE(309), - [sym_tikz_library_import] = STATE(309), - [sym_generic_command] = STATE(309), - [aux_sym_subsection_repeat1] = STATE(309), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2164), - [aux_sym_chapter_token1] = ACTIONS(2164), - [aux_sym_section_token1] = ACTIONS(2164), - [aux_sym_subsection_token1] = ACTIONS(2164), - [aux_sym_subsubsection_token1] = ACTIONS(274), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(5200), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2162), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [319] = { - [sym__simple_content] = STATE(329), - [sym_brace_group] = STATE(329), - [sym_mixed_group] = STATE(329), - [sym_text] = STATE(329), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(329), - [sym_inline_formula] = STATE(329), - [sym_begin] = STATE(52), - [sym_environment] = STATE(329), - [sym_caption] = STATE(329), - [sym_citation] = STATE(329), - [sym_package_include] = STATE(329), - [sym_class_include] = STATE(329), - [sym_latex_include] = STATE(329), - [sym_latex_input] = STATE(329), - [sym_biblatex_include] = STATE(329), - [sym_bibtex_include] = STATE(329), - [sym_graphics_include] = STATE(329), - [sym_svg_include] = STATE(329), - [sym_inkscape_include] = STATE(329), - [sym_verbatim_include] = STATE(329), - [sym_import] = STATE(329), - [sym_label_definition] = STATE(329), - [sym_label_reference] = STATE(329), - [sym_equation_label_reference] = STATE(329), - [sym_label_reference_range] = STATE(329), - [sym_label_number] = STATE(329), - [sym_command_definition] = STATE(329), - [sym_math_operator] = STATE(329), - [sym_glossary_entry_definition] = STATE(329), - [sym_glossary_entry_reference] = STATE(329), - [sym_acronym_definition] = STATE(329), - [sym_acronym_reference] = STATE(329), - [sym_theorem_definition] = STATE(329), - [sym_color_reference] = STATE(329), - [sym_color_definition] = STATE(329), - [sym_color_set_definition] = STATE(329), - [sym_pgf_library_import] = STATE(329), - [sym_tikz_library_import] = STATE(329), - [sym_generic_command] = STATE(329), - [aux_sym_enum_item_repeat1] = STATE(329), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(5202), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5204), - [aux_sym_chapter_token1] = ACTIONS(5204), - [aux_sym_section_token1] = ACTIONS(5204), - [aux_sym_subsection_token1] = ACTIONS(5204), - [aux_sym_subsubsection_token1] = ACTIONS(5204), - [aux_sym_paragraph_token1] = ACTIONS(5204), - [aux_sym_subparagraph_token1] = ACTIONS(5204), - [anon_sym_BSLASHitem] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(5202), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(5206), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [320] = { - [sym__simple_content] = STATE(331), - [sym_brace_group] = STATE(331), - [sym_mixed_group] = STATE(331), - [sym_text] = STATE(331), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(331), - [sym_inline_formula] = STATE(331), - [sym_begin] = STATE(52), - [sym_environment] = STATE(331), - [sym_caption] = STATE(331), - [sym_citation] = STATE(331), - [sym_package_include] = STATE(331), - [sym_class_include] = STATE(331), - [sym_latex_include] = STATE(331), - [sym_latex_input] = STATE(331), - [sym_biblatex_include] = STATE(331), - [sym_bibtex_include] = STATE(331), - [sym_graphics_include] = STATE(331), - [sym_svg_include] = STATE(331), - [sym_inkscape_include] = STATE(331), - [sym_verbatim_include] = STATE(331), - [sym_import] = STATE(331), - [sym_label_definition] = STATE(331), - [sym_label_reference] = STATE(331), - [sym_equation_label_reference] = STATE(331), - [sym_label_reference_range] = STATE(331), - [sym_label_number] = STATE(331), - [sym_command_definition] = STATE(331), - [sym_math_operator] = STATE(331), - [sym_glossary_entry_definition] = STATE(331), - [sym_glossary_entry_reference] = STATE(331), - [sym_acronym_definition] = STATE(331), - [sym_acronym_reference] = STATE(331), - [sym_theorem_definition] = STATE(331), - [sym_color_reference] = STATE(331), - [sym_color_definition] = STATE(331), - [sym_color_set_definition] = STATE(331), - [sym_pgf_library_import] = STATE(331), - [sym_tikz_library_import] = STATE(331), - [sym_generic_command] = STATE(331), - [aux_sym_enum_item_repeat1] = STATE(331), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(5208), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5210), - [aux_sym_chapter_token1] = ACTIONS(5210), - [aux_sym_section_token1] = ACTIONS(5210), - [aux_sym_subsection_token1] = ACTIONS(5210), - [aux_sym_subsubsection_token1] = ACTIONS(5210), - [aux_sym_paragraph_token1] = ACTIONS(5210), - [aux_sym_subparagraph_token1] = ACTIONS(5210), - [anon_sym_BSLASHitem] = ACTIONS(5210), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(5208), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(5208), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(5212), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [321] = { - [sym__simple_content] = STATE(332), - [sym_paragraph] = STATE(332), - [sym_subparagraph] = STATE(332), - [sym_enum_item] = STATE(332), - [sym_brace_group] = STATE(332), - [sym_mixed_group] = STATE(332), - [sym_text] = STATE(332), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(332), - [sym_inline_formula] = STATE(332), - [sym_begin] = STATE(59), - [sym_environment] = STATE(332), - [sym_caption] = STATE(332), - [sym_citation] = STATE(332), - [sym_package_include] = STATE(332), - [sym_class_include] = STATE(332), - [sym_latex_include] = STATE(332), - [sym_latex_input] = STATE(332), - [sym_biblatex_include] = STATE(332), - [sym_bibtex_include] = STATE(332), - [sym_graphics_include] = STATE(332), - [sym_svg_include] = STATE(332), - [sym_inkscape_include] = STATE(332), - [sym_verbatim_include] = STATE(332), - [sym_import] = STATE(332), - [sym_label_definition] = STATE(332), - [sym_label_reference] = STATE(332), - [sym_equation_label_reference] = STATE(332), - [sym_label_reference_range] = STATE(332), - [sym_label_number] = STATE(332), - [sym_command_definition] = STATE(332), - [sym_math_operator] = STATE(332), - [sym_glossary_entry_definition] = STATE(332), - [sym_glossary_entry_reference] = STATE(332), - [sym_acronym_definition] = STATE(332), - [sym_acronym_reference] = STATE(332), - [sym_theorem_definition] = STATE(332), - [sym_color_reference] = STATE(332), - [sym_color_definition] = STATE(332), - [sym_color_set_definition] = STATE(332), - [sym_pgf_library_import] = STATE(332), - [sym_tikz_library_import] = STATE(332), - [sym_generic_command] = STATE(332), - [aux_sym_subsubsection_repeat1] = STATE(332), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2836), - [aux_sym_chapter_token1] = ACTIONS(2836), - [aux_sym_section_token1] = ACTIONS(2836), - [aux_sym_subsection_token1] = ACTIONS(2836), - [aux_sym_subsubsection_token1] = ACTIONS(2836), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(5214), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2834), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [322] = { - [sym__simple_content] = STATE(322), - [sym_paragraph] = STATE(322), - [sym_subparagraph] = STATE(322), - [sym_enum_item] = STATE(322), - [sym_brace_group] = STATE(322), - [sym_mixed_group] = STATE(322), - [sym_text] = STATE(322), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(322), - [sym_inline_formula] = STATE(322), - [sym_begin] = STATE(66), - [sym_environment] = STATE(322), - [sym_caption] = STATE(322), - [sym_citation] = STATE(322), - [sym_package_include] = STATE(322), - [sym_class_include] = STATE(322), - [sym_latex_include] = STATE(322), - [sym_latex_input] = STATE(322), - [sym_biblatex_include] = STATE(322), - [sym_bibtex_include] = STATE(322), - [sym_graphics_include] = STATE(322), - [sym_svg_include] = STATE(322), - [sym_inkscape_include] = STATE(322), - [sym_verbatim_include] = STATE(322), - [sym_import] = STATE(322), - [sym_label_definition] = STATE(322), - [sym_label_reference] = STATE(322), - [sym_equation_label_reference] = STATE(322), - [sym_label_reference_range] = STATE(322), - [sym_label_number] = STATE(322), - [sym_command_definition] = STATE(322), - [sym_math_operator] = STATE(322), - [sym_glossary_entry_definition] = STATE(322), - [sym_glossary_entry_reference] = STATE(322), - [sym_acronym_definition] = STATE(322), - [sym_acronym_reference] = STATE(322), - [sym_theorem_definition] = STATE(322), - [sym_color_reference] = STATE(322), - [sym_color_definition] = STATE(322), - [sym_color_set_definition] = STATE(322), - [sym_pgf_library_import] = STATE(322), - [sym_tikz_library_import] = STATE(322), - [sym_generic_command] = STATE(322), - [aux_sym_subsubsection_repeat1] = STATE(322), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(5216), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3117), - [aux_sym_chapter_token1] = ACTIONS(3117), - [aux_sym_section_token1] = ACTIONS(3117), - [aux_sym_subsection_token1] = ACTIONS(3117), - [aux_sym_subsubsection_token1] = ACTIONS(3117), - [aux_sym_paragraph_token1] = ACTIONS(5219), - [aux_sym_subparagraph_token1] = ACTIONS(5222), - [anon_sym_BSLASHitem] = ACTIONS(5225), - [anon_sym_LBRACK] = ACTIONS(5228), - [anon_sym_LBRACE] = ACTIONS(5231), - [anon_sym_LPAREN] = ACTIONS(5228), - [anon_sym_COMMA] = ACTIONS(5234), - [anon_sym_EQ] = ACTIONS(5234), - [sym_word] = ACTIONS(5234), - [sym_param] = ACTIONS(5237), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5240), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5240), - [anon_sym_DOLLAR] = ACTIONS(5243), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5246), - [anon_sym_BSLASH_RPAREN] = ACTIONS(3112), - [anon_sym_BSLASHbegin] = ACTIONS(3149), - [anon_sym_BSLASHcaption] = ACTIONS(5249), - [aux_sym_citation_token1] = ACTIONS(5252), - [aux_sym_package_include_token1] = ACTIONS(5255), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5258), - [aux_sym_latex_include_token1] = ACTIONS(5261), - [aux_sym_latex_input_token1] = ACTIONS(5264), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5267), - [anon_sym_BSLASHbibliography] = ACTIONS(5270), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), - [anon_sym_BSLASHincludesvg] = ACTIONS(5276), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5279), - [aux_sym_verbatim_include_token1] = ACTIONS(5282), - [aux_sym_import_token1] = ACTIONS(5285), - [anon_sym_BSLASHlabel] = ACTIONS(5288), - [aux_sym_label_reference_token1] = ACTIONS(5291), - [anon_sym_BSLASHeqref] = ACTIONS(5294), - [aux_sym_label_reference_range_token1] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5300), - [aux_sym_command_definition_token1] = ACTIONS(5303), - [aux_sym_math_operator_token1] = ACTIONS(5306), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5312), - [anon_sym_BSLASHnewacronym] = ACTIONS(5315), - [aux_sym_acronym_reference_token1] = ACTIONS(5318), - [aux_sym_theorem_definition_token1] = ACTIONS(5321), - [aux_sym_color_reference_token1] = ACTIONS(5324), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5327), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5330), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5336), - }, - [323] = { - [sym__simple_content] = STATE(336), - [sym_paragraph] = STATE(336), - [sym_subparagraph] = STATE(336), - [sym_enum_item] = STATE(336), - [sym_brace_group] = STATE(336), - [sym_mixed_group] = STATE(336), - [sym_text] = STATE(336), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(336), - [sym_inline_formula] = STATE(336), - [sym_begin] = STATE(66), - [sym_environment] = STATE(336), - [sym_caption] = STATE(336), - [sym_citation] = STATE(336), - [sym_package_include] = STATE(336), - [sym_class_include] = STATE(336), - [sym_latex_include] = STATE(336), - [sym_latex_input] = STATE(336), - [sym_biblatex_include] = STATE(336), - [sym_bibtex_include] = STATE(336), - [sym_graphics_include] = STATE(336), - [sym_svg_include] = STATE(336), - [sym_inkscape_include] = STATE(336), - [sym_verbatim_include] = STATE(336), - [sym_import] = STATE(336), - [sym_label_definition] = STATE(336), - [sym_label_reference] = STATE(336), - [sym_equation_label_reference] = STATE(336), - [sym_label_reference_range] = STATE(336), - [sym_label_number] = STATE(336), - [sym_command_definition] = STATE(336), - [sym_math_operator] = STATE(336), - [sym_glossary_entry_definition] = STATE(336), - [sym_glossary_entry_reference] = STATE(336), - [sym_acronym_definition] = STATE(336), - [sym_acronym_reference] = STATE(336), - [sym_theorem_definition] = STATE(336), - [sym_color_reference] = STATE(336), - [sym_color_definition] = STATE(336), - [sym_color_set_definition] = STATE(336), - [sym_pgf_library_import] = STATE(336), - [sym_tikz_library_import] = STATE(336), - [sym_generic_command] = STATE(336), - [aux_sym_subsubsection_repeat1] = STATE(336), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3382), - [aux_sym_chapter_token1] = ACTIONS(3382), - [aux_sym_section_token1] = ACTIONS(3382), - [aux_sym_subsection_token1] = ACTIONS(3382), - [aux_sym_subsubsection_token1] = ACTIONS(3382), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(5339), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(3380), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [324] = { - [sym__simple_content] = STATE(324), - [sym_subsection] = STATE(324), - [sym_subsubsection] = STATE(324), - [sym_paragraph] = STATE(324), - [sym_subparagraph] = STATE(324), - [sym_enum_item] = STATE(324), - [sym_brace_group] = STATE(324), - [sym_mixed_group] = STATE(324), - [sym_text] = STATE(324), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(324), - [sym_inline_formula] = STATE(324), - [sym_begin] = STATE(105), - [sym_environment] = STATE(324), - [sym_caption] = STATE(324), - [sym_citation] = STATE(324), - [sym_package_include] = STATE(324), - [sym_class_include] = STATE(324), - [sym_latex_include] = STATE(324), - [sym_latex_input] = STATE(324), - [sym_biblatex_include] = STATE(324), - [sym_bibtex_include] = STATE(324), - [sym_graphics_include] = STATE(324), - [sym_svg_include] = STATE(324), - [sym_inkscape_include] = STATE(324), - [sym_verbatim_include] = STATE(324), - [sym_import] = STATE(324), - [sym_label_definition] = STATE(324), - [sym_label_reference] = STATE(324), - [sym_equation_label_reference] = STATE(324), - [sym_label_reference_range] = STATE(324), - [sym_label_number] = STATE(324), - [sym_command_definition] = STATE(324), - [sym_math_operator] = STATE(324), - [sym_glossary_entry_definition] = STATE(324), - [sym_glossary_entry_reference] = STATE(324), - [sym_acronym_definition] = STATE(324), - [sym_acronym_reference] = STATE(324), - [sym_theorem_definition] = STATE(324), - [sym_color_reference] = STATE(324), - [sym_color_definition] = STATE(324), - [sym_color_set_definition] = STATE(324), - [sym_pgf_library_import] = STATE(324), - [sym_tikz_library_import] = STATE(324), - [sym_generic_command] = STATE(324), - [aux_sym_section_repeat1] = STATE(324), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5341), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(5344), - [aux_sym_subsubsection_token1] = ACTIONS(5347), - [aux_sym_paragraph_token1] = ACTIONS(5350), - [aux_sym_subparagraph_token1] = ACTIONS(5353), - [anon_sym_BSLASHitem] = ACTIONS(5356), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(1883), - [anon_sym_LBRACE] = ACTIONS(5362), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5365), - [anon_sym_EQ] = ACTIONS(5365), - [sym_word] = ACTIONS(5365), - [sym_param] = ACTIONS(5368), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5371), - [anon_sym_DOLLAR] = ACTIONS(5374), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5377), - [anon_sym_BSLASHbegin] = ACTIONS(1926), - [anon_sym_BSLASHcaption] = ACTIONS(5380), - [aux_sym_citation_token1] = ACTIONS(5383), - [aux_sym_package_include_token1] = ACTIONS(5386), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5389), - [aux_sym_latex_include_token1] = ACTIONS(5392), - [aux_sym_latex_input_token1] = ACTIONS(5395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5398), - [anon_sym_BSLASHbibliography] = ACTIONS(5401), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5404), - [anon_sym_BSLASHincludesvg] = ACTIONS(5407), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5410), - [aux_sym_verbatim_include_token1] = ACTIONS(5413), - [aux_sym_import_token1] = ACTIONS(5416), - [anon_sym_BSLASHlabel] = ACTIONS(5419), - [aux_sym_label_reference_token1] = ACTIONS(5422), - [anon_sym_BSLASHeqref] = ACTIONS(5425), - [aux_sym_label_reference_range_token1] = ACTIONS(5428), - [anon_sym_BSLASHnewlabel] = ACTIONS(5431), - [aux_sym_command_definition_token1] = ACTIONS(5434), - [aux_sym_math_operator_token1] = ACTIONS(5437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5440), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5443), - [anon_sym_BSLASHnewacronym] = ACTIONS(5446), - [aux_sym_acronym_reference_token1] = ACTIONS(5449), - [aux_sym_theorem_definition_token1] = ACTIONS(5452), - [aux_sym_color_reference_token1] = ACTIONS(5455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5458), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5461), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5464), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5467), - }, - [325] = { - [sym__simple_content] = STATE(325), - [sym_subsubsection] = STATE(325), - [sym_paragraph] = STATE(325), - [sym_subparagraph] = STATE(325), - [sym_enum_item] = STATE(325), - [sym_brace_group] = STATE(325), - [sym_mixed_group] = STATE(325), - [sym_text] = STATE(325), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(325), - [sym_inline_formula] = STATE(325), - [sym_begin] = STATE(94), - [sym_environment] = STATE(325), - [sym_caption] = STATE(325), - [sym_citation] = STATE(325), - [sym_package_include] = STATE(325), - [sym_class_include] = STATE(325), - [sym_latex_include] = STATE(325), - [sym_latex_input] = STATE(325), - [sym_biblatex_include] = STATE(325), - [sym_bibtex_include] = STATE(325), - [sym_graphics_include] = STATE(325), - [sym_svg_include] = STATE(325), - [sym_inkscape_include] = STATE(325), - [sym_verbatim_include] = STATE(325), - [sym_import] = STATE(325), - [sym_label_definition] = STATE(325), - [sym_label_reference] = STATE(325), - [sym_equation_label_reference] = STATE(325), - [sym_label_reference_range] = STATE(325), - [sym_label_number] = STATE(325), - [sym_command_definition] = STATE(325), - [sym_math_operator] = STATE(325), - [sym_glossary_entry_definition] = STATE(325), - [sym_glossary_entry_reference] = STATE(325), - [sym_acronym_definition] = STATE(325), - [sym_acronym_reference] = STATE(325), - [sym_theorem_definition] = STATE(325), - [sym_color_reference] = STATE(325), - [sym_color_definition] = STATE(325), - [sym_color_set_definition] = STATE(325), - [sym_pgf_library_import] = STATE(325), - [sym_tikz_library_import] = STATE(325), - [sym_generic_command] = STATE(325), - [aux_sym_subsection_repeat1] = STATE(325), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(5470), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(2024), - [aux_sym_subsection_token1] = ACTIONS(2024), - [aux_sym_subsubsection_token1] = ACTIONS(5473), - [aux_sym_paragraph_token1] = ACTIONS(5476), - [aux_sym_subparagraph_token1] = ACTIONS(5479), - [anon_sym_BSLASHitem] = ACTIONS(5482), - [anon_sym_LBRACK] = ACTIONS(5485), - [anon_sym_RBRACK] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(5488), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(5485), - [anon_sym_COMMA] = ACTIONS(5491), - [anon_sym_EQ] = ACTIONS(5491), - [sym_word] = ACTIONS(5491), - [sym_param] = ACTIONS(5494), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5497), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5497), - [anon_sym_DOLLAR] = ACTIONS(5500), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5503), - [anon_sym_BSLASHbegin] = ACTIONS(2059), - [anon_sym_BSLASHcaption] = ACTIONS(5506), - [aux_sym_citation_token1] = ACTIONS(5509), - [aux_sym_package_include_token1] = ACTIONS(5512), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5515), - [aux_sym_latex_include_token1] = ACTIONS(5518), - [aux_sym_latex_input_token1] = ACTIONS(5521), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5524), - [anon_sym_BSLASHbibliography] = ACTIONS(5527), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5530), - [anon_sym_BSLASHincludesvg] = ACTIONS(5533), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5536), - [aux_sym_verbatim_include_token1] = ACTIONS(5539), - [aux_sym_import_token1] = ACTIONS(5542), - [anon_sym_BSLASHlabel] = ACTIONS(5545), - [aux_sym_label_reference_token1] = ACTIONS(5548), - [anon_sym_BSLASHeqref] = ACTIONS(5551), - [aux_sym_label_reference_range_token1] = ACTIONS(5554), - [anon_sym_BSLASHnewlabel] = ACTIONS(5557), - [aux_sym_command_definition_token1] = ACTIONS(5560), - [aux_sym_math_operator_token1] = ACTIONS(5563), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5566), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5569), - [anon_sym_BSLASHnewacronym] = ACTIONS(5572), - [aux_sym_acronym_reference_token1] = ACTIONS(5575), - [aux_sym_theorem_definition_token1] = ACTIONS(5578), - [aux_sym_color_reference_token1] = ACTIONS(5581), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5584), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5587), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5590), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5593), - }, - [326] = { - [sym__simple_content] = STATE(341), - [sym_paragraph] = STATE(341), - [sym_subparagraph] = STATE(341), - [sym_enum_item] = STATE(341), - [sym_brace_group] = STATE(341), - [sym_mixed_group] = STATE(341), - [sym_text] = STATE(341), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(341), - [sym_inline_formula] = STATE(341), - [sym_begin] = STATE(86), - [sym_environment] = STATE(341), - [sym_caption] = STATE(341), - [sym_citation] = STATE(341), - [sym_package_include] = STATE(341), - [sym_class_include] = STATE(341), - [sym_latex_include] = STATE(341), - [sym_latex_input] = STATE(341), - [sym_biblatex_include] = STATE(341), - [sym_bibtex_include] = STATE(341), - [sym_graphics_include] = STATE(341), - [sym_svg_include] = STATE(341), - [sym_inkscape_include] = STATE(341), - [sym_verbatim_include] = STATE(341), - [sym_import] = STATE(341), - [sym_label_definition] = STATE(341), - [sym_label_reference] = STATE(341), - [sym_equation_label_reference] = STATE(341), - [sym_label_reference_range] = STATE(341), - [sym_label_number] = STATE(341), - [sym_command_definition] = STATE(341), - [sym_math_operator] = STATE(341), - [sym_glossary_entry_definition] = STATE(341), - [sym_glossary_entry_reference] = STATE(341), - [sym_acronym_definition] = STATE(341), - [sym_acronym_reference] = STATE(341), - [sym_theorem_definition] = STATE(341), - [sym_color_reference] = STATE(341), - [sym_color_definition] = STATE(341), - [sym_color_set_definition] = STATE(341), - [sym_pgf_library_import] = STATE(341), - [sym_tikz_library_import] = STATE(341), - [sym_generic_command] = STATE(341), - [aux_sym_subsubsection_repeat1] = STATE(341), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(2836), - [aux_sym_section_token1] = ACTIONS(2836), - [aux_sym_subsection_token1] = ACTIONS(2836), - [aux_sym_subsubsection_token1] = ACTIONS(2836), - [aux_sym_paragraph_token1] = ACTIONS(2180), - [aux_sym_subparagraph_token1] = ACTIONS(2182), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(5596), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [327] = { - [sym__simple_content] = STATE(338), - [sym_subsubsection] = STATE(338), - [sym_paragraph] = STATE(338), - [sym_subparagraph] = STATE(338), - [sym_enum_item] = STATE(338), - [sym_brace_group] = STATE(338), - [sym_mixed_group] = STATE(338), - [sym_text] = STATE(338), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(338), - [sym_inline_formula] = STATE(338), - [sym_begin] = STATE(94), - [sym_environment] = STATE(338), - [sym_caption] = STATE(338), - [sym_citation] = STATE(338), - [sym_package_include] = STATE(338), - [sym_class_include] = STATE(338), - [sym_latex_include] = STATE(338), - [sym_latex_input] = STATE(338), - [sym_biblatex_include] = STATE(338), - [sym_bibtex_include] = STATE(338), - [sym_graphics_include] = STATE(338), - [sym_svg_include] = STATE(338), - [sym_inkscape_include] = STATE(338), - [sym_verbatim_include] = STATE(338), - [sym_import] = STATE(338), - [sym_label_definition] = STATE(338), - [sym_label_reference] = STATE(338), - [sym_equation_label_reference] = STATE(338), - [sym_label_reference_range] = STATE(338), - [sym_label_number] = STATE(338), - [sym_command_definition] = STATE(338), - [sym_math_operator] = STATE(338), - [sym_glossary_entry_definition] = STATE(338), - [sym_glossary_entry_reference] = STATE(338), - [sym_acronym_definition] = STATE(338), - [sym_acronym_reference] = STATE(338), - [sym_theorem_definition] = STATE(338), - [sym_color_reference] = STATE(338), - [sym_color_definition] = STATE(338), - [sym_color_set_definition] = STATE(338), - [sym_pgf_library_import] = STATE(338), - [sym_tikz_library_import] = STATE(338), - [sym_generic_command] = STATE(338), - [aux_sym_subsection_repeat1] = STATE(338), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(2158), - [aux_sym_subsection_token1] = ACTIONS(2158), - [aux_sym_subsubsection_token1] = ACTIONS(3796), - [aux_sym_paragraph_token1] = ACTIONS(3798), - [aux_sym_subparagraph_token1] = ACTIONS(3800), - [anon_sym_BSLASHitem] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(5598), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [328] = { - [sym__simple_content] = STATE(319), - [sym_brace_group] = STATE(319), - [sym_mixed_group] = STATE(319), - [sym_text] = STATE(319), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(319), - [sym_inline_formula] = STATE(319), - [sym_begin] = STATE(52), - [sym_environment] = STATE(319), - [sym_caption] = STATE(319), - [sym_citation] = STATE(319), - [sym_package_include] = STATE(319), - [sym_class_include] = STATE(319), - [sym_latex_include] = STATE(319), - [sym_latex_input] = STATE(319), - [sym_biblatex_include] = STATE(319), - [sym_bibtex_include] = STATE(319), - [sym_graphics_include] = STATE(319), - [sym_svg_include] = STATE(319), - [sym_inkscape_include] = STATE(319), - [sym_verbatim_include] = STATE(319), - [sym_import] = STATE(319), - [sym_label_definition] = STATE(319), - [sym_label_reference] = STATE(319), - [sym_equation_label_reference] = STATE(319), - [sym_label_reference_range] = STATE(319), - [sym_label_number] = STATE(319), - [sym_command_definition] = STATE(319), - [sym_math_operator] = STATE(319), - [sym_glossary_entry_definition] = STATE(319), - [sym_glossary_entry_reference] = STATE(319), - [sym_acronym_definition] = STATE(319), - [sym_acronym_reference] = STATE(319), - [sym_theorem_definition] = STATE(319), - [sym_color_reference] = STATE(319), - [sym_color_definition] = STATE(319), - [sym_color_set_definition] = STATE(319), - [sym_pgf_library_import] = STATE(319), - [sym_tikz_library_import] = STATE(319), - [sym_generic_command] = STATE(319), - [aux_sym_enum_item_repeat1] = STATE(319), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(5600), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5602), - [aux_sym_chapter_token1] = ACTIONS(5602), - [aux_sym_section_token1] = ACTIONS(5602), - [aux_sym_subsection_token1] = ACTIONS(5602), - [aux_sym_subsubsection_token1] = ACTIONS(5602), - [aux_sym_paragraph_token1] = ACTIONS(5602), - [aux_sym_subparagraph_token1] = ACTIONS(5602), - [anon_sym_BSLASHitem] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(5604), - [anon_sym_RBRACK] = ACTIONS(5600), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(5600), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(5600), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(5606), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [329] = { - [sym__simple_content] = STATE(329), - [sym_brace_group] = STATE(329), - [sym_mixed_group] = STATE(329), - [sym_text] = STATE(329), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(329), - [sym_inline_formula] = STATE(329), - [sym_begin] = STATE(52), - [sym_environment] = STATE(329), - [sym_caption] = STATE(329), - [sym_citation] = STATE(329), - [sym_package_include] = STATE(329), - [sym_class_include] = STATE(329), - [sym_latex_include] = STATE(329), - [sym_latex_input] = STATE(329), - [sym_biblatex_include] = STATE(329), - [sym_bibtex_include] = STATE(329), - [sym_graphics_include] = STATE(329), - [sym_svg_include] = STATE(329), - [sym_inkscape_include] = STATE(329), - [sym_verbatim_include] = STATE(329), - [sym_import] = STATE(329), - [sym_label_definition] = STATE(329), - [sym_label_reference] = STATE(329), - [sym_equation_label_reference] = STATE(329), - [sym_label_reference_range] = STATE(329), - [sym_label_number] = STATE(329), - [sym_command_definition] = STATE(329), - [sym_math_operator] = STATE(329), - [sym_glossary_entry_definition] = STATE(329), - [sym_glossary_entry_reference] = STATE(329), - [sym_acronym_definition] = STATE(329), - [sym_acronym_reference] = STATE(329), - [sym_theorem_definition] = STATE(329), - [sym_color_reference] = STATE(329), - [sym_color_definition] = STATE(329), - [sym_color_set_definition] = STATE(329), - [sym_pgf_library_import] = STATE(329), - [sym_tikz_library_import] = STATE(329), - [sym_generic_command] = STATE(329), - [aux_sym_enum_item_repeat1] = STATE(329), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(5608), - [sym_generic_command_name] = ACTIONS(5610), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5613), - [aux_sym_chapter_token1] = ACTIONS(5613), - [aux_sym_section_token1] = ACTIONS(5613), - [aux_sym_subsection_token1] = ACTIONS(5613), - [aux_sym_subsubsection_token1] = ACTIONS(5613), - [aux_sym_paragraph_token1] = ACTIONS(5613), - [aux_sym_subparagraph_token1] = ACTIONS(5613), - [anon_sym_BSLASHitem] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(5615), - [anon_sym_RBRACK] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(5618), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_LPAREN] = ACTIONS(5615), - [anon_sym_RPAREN] = ACTIONS(5608), - [anon_sym_COMMA] = ACTIONS(5621), - [anon_sym_EQ] = ACTIONS(5621), - [sym_word] = ACTIONS(5621), - [sym_param] = ACTIONS(5624), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5627), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5627), - [anon_sym_DOLLAR] = ACTIONS(5630), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5633), - [anon_sym_BSLASHbegin] = ACTIONS(5636), - [anon_sym_BSLASHcaption] = ACTIONS(5639), - [aux_sym_citation_token1] = ACTIONS(5642), - [aux_sym_package_include_token1] = ACTIONS(5645), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5648), - [aux_sym_latex_include_token1] = ACTIONS(5651), - [aux_sym_latex_input_token1] = ACTIONS(5654), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5657), - [anon_sym_BSLASHbibliography] = ACTIONS(5660), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5663), - [anon_sym_BSLASHincludesvg] = ACTIONS(5666), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5669), - [aux_sym_verbatim_include_token1] = ACTIONS(5672), - [aux_sym_import_token1] = ACTIONS(5675), - [anon_sym_BSLASHlabel] = ACTIONS(5678), - [aux_sym_label_reference_token1] = ACTIONS(5681), - [anon_sym_BSLASHeqref] = ACTIONS(5684), - [aux_sym_label_reference_range_token1] = ACTIONS(5687), - [anon_sym_BSLASHnewlabel] = ACTIONS(5690), - [aux_sym_command_definition_token1] = ACTIONS(5693), - [aux_sym_math_operator_token1] = ACTIONS(5696), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5699), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5702), - [anon_sym_BSLASHnewacronym] = ACTIONS(5705), - [aux_sym_acronym_reference_token1] = ACTIONS(5708), - [aux_sym_theorem_definition_token1] = ACTIONS(5711), - [aux_sym_color_reference_token1] = ACTIONS(5714), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5717), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5720), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5723), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5726), - }, - [330] = { - [sym__simple_content] = STATE(321), - [sym_paragraph] = STATE(321), - [sym_subparagraph] = STATE(321), - [sym_enum_item] = STATE(321), - [sym_brace_group] = STATE(321), - [sym_mixed_group] = STATE(321), - [sym_text] = STATE(321), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(321), - [sym_inline_formula] = STATE(321), - [sym_begin] = STATE(59), - [sym_environment] = STATE(321), - [sym_caption] = STATE(321), - [sym_citation] = STATE(321), - [sym_package_include] = STATE(321), - [sym_class_include] = STATE(321), - [sym_latex_include] = STATE(321), - [sym_latex_input] = STATE(321), - [sym_biblatex_include] = STATE(321), - [sym_bibtex_include] = STATE(321), - [sym_graphics_include] = STATE(321), - [sym_svg_include] = STATE(321), - [sym_inkscape_include] = STATE(321), - [sym_verbatim_include] = STATE(321), - [sym_import] = STATE(321), - [sym_label_definition] = STATE(321), - [sym_label_reference] = STATE(321), - [sym_equation_label_reference] = STATE(321), - [sym_label_reference_range] = STATE(321), - [sym_label_number] = STATE(321), - [sym_command_definition] = STATE(321), - [sym_math_operator] = STATE(321), - [sym_glossary_entry_definition] = STATE(321), - [sym_glossary_entry_reference] = STATE(321), - [sym_acronym_definition] = STATE(321), - [sym_acronym_reference] = STATE(321), - [sym_theorem_definition] = STATE(321), - [sym_color_reference] = STATE(321), - [sym_color_definition] = STATE(321), - [sym_color_set_definition] = STATE(321), - [sym_pgf_library_import] = STATE(321), - [sym_tikz_library_import] = STATE(321), - [sym_generic_command] = STATE(321), - [aux_sym_subsubsection_repeat1] = STATE(321), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3382), - [aux_sym_chapter_token1] = ACTIONS(3382), - [aux_sym_section_token1] = ACTIONS(3382), - [aux_sym_subsection_token1] = ACTIONS(3382), - [aux_sym_subsubsection_token1] = ACTIONS(3382), - [aux_sym_paragraph_token1] = ACTIONS(276), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(5729), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(3380), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [331] = { - [sym__simple_content] = STATE(329), - [sym_brace_group] = STATE(329), - [sym_mixed_group] = STATE(329), - [sym_text] = STATE(329), - [sym__text_fragment] = STATE(475), - [sym_displayed_equation] = STATE(329), - [sym_inline_formula] = STATE(329), - [sym_begin] = STATE(52), - [sym_environment] = STATE(329), - [sym_caption] = STATE(329), - [sym_citation] = STATE(329), - [sym_package_include] = STATE(329), - [sym_class_include] = STATE(329), - [sym_latex_include] = STATE(329), - [sym_latex_input] = STATE(329), - [sym_biblatex_include] = STATE(329), - [sym_bibtex_include] = STATE(329), - [sym_graphics_include] = STATE(329), - [sym_svg_include] = STATE(329), - [sym_inkscape_include] = STATE(329), - [sym_verbatim_include] = STATE(329), - [sym_import] = STATE(329), - [sym_label_definition] = STATE(329), - [sym_label_reference] = STATE(329), - [sym_equation_label_reference] = STATE(329), - [sym_label_reference_range] = STATE(329), - [sym_label_number] = STATE(329), - [sym_command_definition] = STATE(329), - [sym_math_operator] = STATE(329), - [sym_glossary_entry_definition] = STATE(329), - [sym_glossary_entry_reference] = STATE(329), - [sym_acronym_definition] = STATE(329), - [sym_acronym_reference] = STATE(329), - [sym_theorem_definition] = STATE(329), - [sym_color_reference] = STATE(329), - [sym_color_definition] = STATE(329), - [sym_color_set_definition] = STATE(329), - [sym_pgf_library_import] = STATE(329), - [sym_tikz_library_import] = STATE(329), - [sym_generic_command] = STATE(329), - [aux_sym_enum_item_repeat1] = STATE(329), - [aux_sym_text_repeat1] = STATE(475), - [ts_builtin_sym_end] = ACTIONS(5731), - [sym_generic_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5733), - [aux_sym_chapter_token1] = ACTIONS(5733), - [aux_sym_section_token1] = ACTIONS(5733), - [aux_sym_subsection_token1] = ACTIONS(5733), - [aux_sym_subsubsection_token1] = ACTIONS(5733), - [aux_sym_paragraph_token1] = ACTIONS(5733), - [aux_sym_subparagraph_token1] = ACTIONS(5733), - [anon_sym_BSLASHitem] = ACTIONS(5733), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_RBRACK] = ACTIONS(5731), - [anon_sym_LBRACE] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_LPAREN] = ACTIONS(25), - [anon_sym_RPAREN] = ACTIONS(5731), - [anon_sym_COMMA] = ACTIONS(29), - [anon_sym_EQ] = ACTIONS(29), - [sym_word] = ACTIONS(29), - [sym_param] = ACTIONS(5206), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), - [anon_sym_BSLASH_LBRACK] = ACTIONS(33), - [anon_sym_DOLLAR] = ACTIONS(35), - [anon_sym_BSLASH_LPAREN] = ACTIONS(37), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(41), - [aux_sym_citation_token1] = ACTIONS(43), - [aux_sym_package_include_token1] = ACTIONS(45), - [anon_sym_BSLASHdocumentclass] = ACTIONS(47), - [aux_sym_latex_include_token1] = ACTIONS(49), - [aux_sym_latex_input_token1] = ACTIONS(51), - [anon_sym_BSLASHaddbibresource] = ACTIONS(53), - [anon_sym_BSLASHbibliography] = ACTIONS(55), - [anon_sym_BSLASHincludegraphics] = ACTIONS(57), - [anon_sym_BSLASHincludesvg] = ACTIONS(59), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(61), - [aux_sym_verbatim_include_token1] = ACTIONS(63), - [aux_sym_import_token1] = ACTIONS(65), - [anon_sym_BSLASHlabel] = ACTIONS(67), - [aux_sym_label_reference_token1] = ACTIONS(69), - [anon_sym_BSLASHeqref] = ACTIONS(71), - [aux_sym_label_reference_range_token1] = ACTIONS(73), - [anon_sym_BSLASHnewlabel] = ACTIONS(75), - [aux_sym_command_definition_token1] = ACTIONS(77), - [aux_sym_math_operator_token1] = ACTIONS(79), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(81), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(83), - [anon_sym_BSLASHnewacronym] = ACTIONS(85), - [aux_sym_acronym_reference_token1] = ACTIONS(87), - [aux_sym_theorem_definition_token1] = ACTIONS(89), - [aux_sym_color_reference_token1] = ACTIONS(91), - [anon_sym_BSLASHdefinecolor] = ACTIONS(93), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(95), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(97), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(99), - }, - [332] = { - [sym__simple_content] = STATE(332), - [sym_paragraph] = STATE(332), - [sym_subparagraph] = STATE(332), - [sym_enum_item] = STATE(332), - [sym_brace_group] = STATE(332), - [sym_mixed_group] = STATE(332), - [sym_text] = STATE(332), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(332), - [sym_inline_formula] = STATE(332), - [sym_begin] = STATE(59), - [sym_environment] = STATE(332), - [sym_caption] = STATE(332), - [sym_citation] = STATE(332), - [sym_package_include] = STATE(332), - [sym_class_include] = STATE(332), - [sym_latex_include] = STATE(332), - [sym_latex_input] = STATE(332), - [sym_biblatex_include] = STATE(332), - [sym_bibtex_include] = STATE(332), - [sym_graphics_include] = STATE(332), - [sym_svg_include] = STATE(332), - [sym_inkscape_include] = STATE(332), - [sym_verbatim_include] = STATE(332), - [sym_import] = STATE(332), - [sym_label_definition] = STATE(332), - [sym_label_reference] = STATE(332), - [sym_equation_label_reference] = STATE(332), - [sym_label_reference_range] = STATE(332), - [sym_label_number] = STATE(332), - [sym_command_definition] = STATE(332), - [sym_math_operator] = STATE(332), - [sym_glossary_entry_definition] = STATE(332), - [sym_glossary_entry_reference] = STATE(332), - [sym_acronym_definition] = STATE(332), - [sym_acronym_reference] = STATE(332), - [sym_theorem_definition] = STATE(332), - [sym_color_reference] = STATE(332), - [sym_color_definition] = STATE(332), - [sym_color_set_definition] = STATE(332), - [sym_pgf_library_import] = STATE(332), - [sym_tikz_library_import] = STATE(332), - [sym_generic_command] = STATE(332), - [aux_sym_subsubsection_repeat1] = STATE(332), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(5735), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3117), - [aux_sym_chapter_token1] = ACTIONS(3117), - [aux_sym_section_token1] = ACTIONS(3117), - [aux_sym_subsection_token1] = ACTIONS(3117), - [aux_sym_subsubsection_token1] = ACTIONS(3117), - [aux_sym_paragraph_token1] = ACTIONS(5738), - [aux_sym_subparagraph_token1] = ACTIONS(5741), - [anon_sym_BSLASHitem] = ACTIONS(5744), - [anon_sym_LBRACK] = ACTIONS(5747), - [anon_sym_LBRACE] = ACTIONS(5750), - [anon_sym_LPAREN] = ACTIONS(5747), - [anon_sym_COMMA] = ACTIONS(5753), - [anon_sym_EQ] = ACTIONS(5753), - [sym_word] = ACTIONS(5753), - [sym_param] = ACTIONS(5756), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5759), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5759), - [anon_sym_BSLASH_RBRACK] = ACTIONS(3112), - [anon_sym_DOLLAR] = ACTIONS(5762), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5765), - [anon_sym_BSLASHbegin] = ACTIONS(3149), - [anon_sym_BSLASHcaption] = ACTIONS(5768), - [aux_sym_citation_token1] = ACTIONS(5771), - [aux_sym_package_include_token1] = ACTIONS(5774), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5777), - [aux_sym_latex_include_token1] = ACTIONS(5780), - [aux_sym_latex_input_token1] = ACTIONS(5783), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5786), - [anon_sym_BSLASHbibliography] = ACTIONS(5789), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5792), - [anon_sym_BSLASHincludesvg] = ACTIONS(5795), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5798), - [aux_sym_verbatim_include_token1] = ACTIONS(5801), - [aux_sym_import_token1] = ACTIONS(5804), - [anon_sym_BSLASHlabel] = ACTIONS(5807), - [aux_sym_label_reference_token1] = ACTIONS(5810), - [anon_sym_BSLASHeqref] = ACTIONS(5813), - [aux_sym_label_reference_range_token1] = ACTIONS(5816), - [anon_sym_BSLASHnewlabel] = ACTIONS(5819), - [aux_sym_command_definition_token1] = ACTIONS(5822), - [aux_sym_math_operator_token1] = ACTIONS(5825), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5828), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5831), - [anon_sym_BSLASHnewacronym] = ACTIONS(5834), - [aux_sym_acronym_reference_token1] = ACTIONS(5837), - [aux_sym_theorem_definition_token1] = ACTIONS(5840), - [aux_sym_color_reference_token1] = ACTIONS(5843), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5846), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5849), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5852), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5855), - }, - [333] = { - [sym__simple_content] = STATE(337), - [sym_subsection] = STATE(337), - [sym_subsubsection] = STATE(337), - [sym_paragraph] = STATE(337), - [sym_subparagraph] = STATE(337), - [sym_enum_item] = STATE(337), - [sym_brace_group] = STATE(337), - [sym_mixed_group] = STATE(337), - [sym_text] = STATE(337), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(337), - [sym_inline_formula] = STATE(337), - [sym_begin] = STATE(105), - [sym_environment] = STATE(337), - [sym_caption] = STATE(337), - [sym_citation] = STATE(337), - [sym_package_include] = STATE(337), - [sym_class_include] = STATE(337), - [sym_latex_include] = STATE(337), - [sym_latex_input] = STATE(337), - [sym_biblatex_include] = STATE(337), - [sym_bibtex_include] = STATE(337), - [sym_graphics_include] = STATE(337), - [sym_svg_include] = STATE(337), - [sym_inkscape_include] = STATE(337), - [sym_verbatim_include] = STATE(337), - [sym_import] = STATE(337), - [sym_label_definition] = STATE(337), - [sym_label_reference] = STATE(337), - [sym_equation_label_reference] = STATE(337), - [sym_label_reference_range] = STATE(337), - [sym_label_number] = STATE(337), - [sym_command_definition] = STATE(337), - [sym_math_operator] = STATE(337), - [sym_glossary_entry_definition] = STATE(337), - [sym_glossary_entry_reference] = STATE(337), - [sym_acronym_definition] = STATE(337), - [sym_acronym_reference] = STATE(337), - [sym_theorem_definition] = STATE(337), - [sym_color_reference] = STATE(337), - [sym_color_definition] = STATE(337), - [sym_color_set_definition] = STATE(337), - [sym_pgf_library_import] = STATE(337), - [sym_tikz_library_import] = STATE(337), - [sym_generic_command] = STATE(337), - [aux_sym_section_repeat1] = STATE(337), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(5860), - [aux_sym_subsubsection_token1] = ACTIONS(5862), - [aux_sym_paragraph_token1] = ACTIONS(5864), - [aux_sym_subparagraph_token1] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(5876), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [334] = { - [sym__simple_content] = STATE(340), - [sym_paragraph] = STATE(340), - [sym_subparagraph] = STATE(340), - [sym_enum_item] = STATE(340), - [sym_brace_group] = STATE(340), - [sym_mixed_group] = STATE(340), - [sym_text] = STATE(340), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(340), - [sym_inline_formula] = STATE(340), - [sym_begin] = STATE(73), - [sym_environment] = STATE(340), - [sym_caption] = STATE(340), - [sym_citation] = STATE(340), - [sym_package_include] = STATE(340), - [sym_class_include] = STATE(340), - [sym_latex_include] = STATE(340), - [sym_latex_input] = STATE(340), - [sym_biblatex_include] = STATE(340), - [sym_bibtex_include] = STATE(340), - [sym_graphics_include] = STATE(340), - [sym_svg_include] = STATE(340), - [sym_inkscape_include] = STATE(340), - [sym_verbatim_include] = STATE(340), - [sym_import] = STATE(340), - [sym_label_definition] = STATE(340), - [sym_label_reference] = STATE(340), - [sym_equation_label_reference] = STATE(340), - [sym_label_reference_range] = STATE(340), - [sym_label_number] = STATE(340), - [sym_command_definition] = STATE(340), - [sym_math_operator] = STATE(340), - [sym_glossary_entry_definition] = STATE(340), - [sym_glossary_entry_reference] = STATE(340), - [sym_acronym_definition] = STATE(340), - [sym_acronym_reference] = STATE(340), - [sym_theorem_definition] = STATE(340), - [sym_color_reference] = STATE(340), - [sym_color_definition] = STATE(340), - [sym_color_set_definition] = STATE(340), - [sym_pgf_library_import] = STATE(340), - [sym_tikz_library_import] = STATE(340), - [sym_generic_command] = STATE(340), - [aux_sym_subsubsection_repeat1] = STATE(340), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2836), - [aux_sym_chapter_token1] = ACTIONS(2836), - [aux_sym_section_token1] = ACTIONS(2836), - [aux_sym_subsection_token1] = ACTIONS(2836), - [aux_sym_subsubsection_token1] = ACTIONS(2836), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(5944), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(2836), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [335] = { - [sym__simple_content] = STATE(334), - [sym_paragraph] = STATE(334), - [sym_subparagraph] = STATE(334), - [sym_enum_item] = STATE(334), - [sym_brace_group] = STATE(334), - [sym_mixed_group] = STATE(334), - [sym_text] = STATE(334), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(334), - [sym_inline_formula] = STATE(334), - [sym_begin] = STATE(73), - [sym_environment] = STATE(334), - [sym_caption] = STATE(334), - [sym_citation] = STATE(334), - [sym_package_include] = STATE(334), - [sym_class_include] = STATE(334), - [sym_latex_include] = STATE(334), - [sym_latex_input] = STATE(334), - [sym_biblatex_include] = STATE(334), - [sym_bibtex_include] = STATE(334), - [sym_graphics_include] = STATE(334), - [sym_svg_include] = STATE(334), - [sym_inkscape_include] = STATE(334), - [sym_verbatim_include] = STATE(334), - [sym_import] = STATE(334), - [sym_label_definition] = STATE(334), - [sym_label_reference] = STATE(334), - [sym_equation_label_reference] = STATE(334), - [sym_label_reference_range] = STATE(334), - [sym_label_number] = STATE(334), - [sym_command_definition] = STATE(334), - [sym_math_operator] = STATE(334), - [sym_glossary_entry_definition] = STATE(334), - [sym_glossary_entry_reference] = STATE(334), - [sym_acronym_definition] = STATE(334), - [sym_acronym_reference] = STATE(334), - [sym_theorem_definition] = STATE(334), - [sym_color_reference] = STATE(334), - [sym_color_definition] = STATE(334), - [sym_color_set_definition] = STATE(334), - [sym_pgf_library_import] = STATE(334), - [sym_tikz_library_import] = STATE(334), - [sym_generic_command] = STATE(334), - [aux_sym_subsubsection_repeat1] = STATE(334), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3382), - [aux_sym_chapter_token1] = ACTIONS(3382), - [aux_sym_section_token1] = ACTIONS(3382), - [aux_sym_subsection_token1] = ACTIONS(3382), - [aux_sym_subsubsection_token1] = ACTIONS(3382), - [aux_sym_paragraph_token1] = ACTIONS(468), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(5946), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(3382), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [336] = { - [sym__simple_content] = STATE(322), - [sym_paragraph] = STATE(322), - [sym_subparagraph] = STATE(322), - [sym_enum_item] = STATE(322), - [sym_brace_group] = STATE(322), - [sym_mixed_group] = STATE(322), - [sym_text] = STATE(322), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(322), - [sym_inline_formula] = STATE(322), - [sym_begin] = STATE(66), - [sym_environment] = STATE(322), - [sym_caption] = STATE(322), - [sym_citation] = STATE(322), - [sym_package_include] = STATE(322), - [sym_class_include] = STATE(322), - [sym_latex_include] = STATE(322), - [sym_latex_input] = STATE(322), - [sym_biblatex_include] = STATE(322), - [sym_bibtex_include] = STATE(322), - [sym_graphics_include] = STATE(322), - [sym_svg_include] = STATE(322), - [sym_inkscape_include] = STATE(322), - [sym_verbatim_include] = STATE(322), - [sym_import] = STATE(322), - [sym_label_definition] = STATE(322), - [sym_label_reference] = STATE(322), - [sym_equation_label_reference] = STATE(322), - [sym_label_reference_range] = STATE(322), - [sym_label_number] = STATE(322), - [sym_command_definition] = STATE(322), - [sym_math_operator] = STATE(322), - [sym_glossary_entry_definition] = STATE(322), - [sym_glossary_entry_reference] = STATE(322), - [sym_acronym_definition] = STATE(322), - [sym_acronym_reference] = STATE(322), - [sym_theorem_definition] = STATE(322), - [sym_color_reference] = STATE(322), - [sym_color_definition] = STATE(322), - [sym_color_set_definition] = STATE(322), - [sym_pgf_library_import] = STATE(322), - [sym_tikz_library_import] = STATE(322), - [sym_generic_command] = STATE(322), - [aux_sym_subsubsection_repeat1] = STATE(322), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(2836), - [aux_sym_chapter_token1] = ACTIONS(2836), - [aux_sym_section_token1] = ACTIONS(2836), - [aux_sym_subsection_token1] = ACTIONS(2836), - [aux_sym_subsubsection_token1] = ACTIONS(2836), - [aux_sym_paragraph_token1] = ACTIONS(370), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(5948), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2834), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [337] = { - [sym__simple_content] = STATE(324), - [sym_subsection] = STATE(324), - [sym_subsubsection] = STATE(324), - [sym_paragraph] = STATE(324), - [sym_subparagraph] = STATE(324), - [sym_enum_item] = STATE(324), - [sym_brace_group] = STATE(324), - [sym_mixed_group] = STATE(324), - [sym_text] = STATE(324), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(324), - [sym_inline_formula] = STATE(324), - [sym_begin] = STATE(105), - [sym_environment] = STATE(324), - [sym_caption] = STATE(324), - [sym_citation] = STATE(324), - [sym_package_include] = STATE(324), - [sym_class_include] = STATE(324), - [sym_latex_include] = STATE(324), - [sym_latex_input] = STATE(324), - [sym_biblatex_include] = STATE(324), - [sym_bibtex_include] = STATE(324), - [sym_graphics_include] = STATE(324), - [sym_svg_include] = STATE(324), - [sym_inkscape_include] = STATE(324), - [sym_verbatim_include] = STATE(324), - [sym_import] = STATE(324), - [sym_label_definition] = STATE(324), - [sym_label_reference] = STATE(324), - [sym_equation_label_reference] = STATE(324), - [sym_label_reference_range] = STATE(324), - [sym_label_number] = STATE(324), - [sym_command_definition] = STATE(324), - [sym_math_operator] = STATE(324), - [sym_glossary_entry_definition] = STATE(324), - [sym_glossary_entry_reference] = STATE(324), - [sym_acronym_definition] = STATE(324), - [sym_acronym_reference] = STATE(324), - [sym_theorem_definition] = STATE(324), - [sym_color_reference] = STATE(324), - [sym_color_definition] = STATE(324), - [sym_color_set_definition] = STATE(324), - [sym_pgf_library_import] = STATE(324), - [sym_tikz_library_import] = STATE(324), - [sym_generic_command] = STATE(324), - [aux_sym_section_repeat1] = STATE(324), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(5860), - [aux_sym_subsubsection_token1] = ACTIONS(5862), - [aux_sym_paragraph_token1] = ACTIONS(5864), - [aux_sym_subparagraph_token1] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(1871), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(5950), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [338] = { - [sym__simple_content] = STATE(325), - [sym_subsubsection] = STATE(325), - [sym_paragraph] = STATE(325), - [sym_subparagraph] = STATE(325), - [sym_enum_item] = STATE(325), - [sym_brace_group] = STATE(325), - [sym_mixed_group] = STATE(325), - [sym_text] = STATE(325), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(325), - [sym_inline_formula] = STATE(325), - [sym_begin] = STATE(94), - [sym_environment] = STATE(325), - [sym_caption] = STATE(325), - [sym_citation] = STATE(325), - [sym_package_include] = STATE(325), - [sym_class_include] = STATE(325), - [sym_latex_include] = STATE(325), - [sym_latex_input] = STATE(325), - [sym_biblatex_include] = STATE(325), - [sym_bibtex_include] = STATE(325), - [sym_graphics_include] = STATE(325), - [sym_svg_include] = STATE(325), - [sym_inkscape_include] = STATE(325), - [sym_verbatim_include] = STATE(325), - [sym_import] = STATE(325), - [sym_label_definition] = STATE(325), - [sym_label_reference] = STATE(325), - [sym_equation_label_reference] = STATE(325), - [sym_label_reference_range] = STATE(325), - [sym_label_number] = STATE(325), - [sym_command_definition] = STATE(325), - [sym_math_operator] = STATE(325), - [sym_glossary_entry_definition] = STATE(325), - [sym_glossary_entry_reference] = STATE(325), - [sym_acronym_definition] = STATE(325), - [sym_acronym_reference] = STATE(325), - [sym_theorem_definition] = STATE(325), - [sym_color_reference] = STATE(325), - [sym_color_definition] = STATE(325), - [sym_color_set_definition] = STATE(325), - [sym_pgf_library_import] = STATE(325), - [sym_tikz_library_import] = STATE(325), - [sym_generic_command] = STATE(325), - [aux_sym_subsection_repeat1] = STATE(325), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(2164), - [aux_sym_subsection_token1] = ACTIONS(2164), - [aux_sym_subsubsection_token1] = ACTIONS(3796), - [aux_sym_paragraph_token1] = ACTIONS(3798), - [aux_sym_subparagraph_token1] = ACTIONS(3800), - [anon_sym_BSLASHitem] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(5952), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [339] = { - [sym__simple_content] = STATE(326), - [sym_paragraph] = STATE(326), - [sym_subparagraph] = STATE(326), - [sym_enum_item] = STATE(326), - [sym_brace_group] = STATE(326), - [sym_mixed_group] = STATE(326), - [sym_text] = STATE(326), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(326), - [sym_inline_formula] = STATE(326), - [sym_begin] = STATE(86), - [sym_environment] = STATE(326), - [sym_caption] = STATE(326), - [sym_citation] = STATE(326), - [sym_package_include] = STATE(326), - [sym_class_include] = STATE(326), - [sym_latex_include] = STATE(326), - [sym_latex_input] = STATE(326), - [sym_biblatex_include] = STATE(326), - [sym_bibtex_include] = STATE(326), - [sym_graphics_include] = STATE(326), - [sym_svg_include] = STATE(326), - [sym_inkscape_include] = STATE(326), - [sym_verbatim_include] = STATE(326), - [sym_import] = STATE(326), - [sym_label_definition] = STATE(326), - [sym_label_reference] = STATE(326), - [sym_equation_label_reference] = STATE(326), - [sym_label_reference_range] = STATE(326), - [sym_label_number] = STATE(326), - [sym_command_definition] = STATE(326), - [sym_math_operator] = STATE(326), - [sym_glossary_entry_definition] = STATE(326), - [sym_glossary_entry_reference] = STATE(326), - [sym_acronym_definition] = STATE(326), - [sym_acronym_reference] = STATE(326), - [sym_theorem_definition] = STATE(326), - [sym_color_reference] = STATE(326), - [sym_color_definition] = STATE(326), - [sym_color_set_definition] = STATE(326), - [sym_pgf_library_import] = STATE(326), - [sym_tikz_library_import] = STATE(326), - [sym_generic_command] = STATE(326), - [aux_sym_subsubsection_repeat1] = STATE(326), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(3382), - [aux_sym_section_token1] = ACTIONS(3382), - [aux_sym_subsection_token1] = ACTIONS(3382), - [aux_sym_subsubsection_token1] = ACTIONS(3382), - [aux_sym_paragraph_token1] = ACTIONS(2180), - [aux_sym_subparagraph_token1] = ACTIONS(2182), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(5954), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [340] = { - [sym__simple_content] = STATE(340), - [sym_paragraph] = STATE(340), - [sym_subparagraph] = STATE(340), - [sym_enum_item] = STATE(340), - [sym_brace_group] = STATE(340), - [sym_mixed_group] = STATE(340), - [sym_text] = STATE(340), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(340), - [sym_inline_formula] = STATE(340), - [sym_begin] = STATE(73), - [sym_environment] = STATE(340), - [sym_caption] = STATE(340), - [sym_citation] = STATE(340), - [sym_package_include] = STATE(340), - [sym_class_include] = STATE(340), - [sym_latex_include] = STATE(340), - [sym_latex_input] = STATE(340), - [sym_biblatex_include] = STATE(340), - [sym_bibtex_include] = STATE(340), - [sym_graphics_include] = STATE(340), - [sym_svg_include] = STATE(340), - [sym_inkscape_include] = STATE(340), - [sym_verbatim_include] = STATE(340), - [sym_import] = STATE(340), - [sym_label_definition] = STATE(340), - [sym_label_reference] = STATE(340), - [sym_equation_label_reference] = STATE(340), - [sym_label_reference_range] = STATE(340), - [sym_label_number] = STATE(340), - [sym_command_definition] = STATE(340), - [sym_math_operator] = STATE(340), - [sym_glossary_entry_definition] = STATE(340), - [sym_glossary_entry_reference] = STATE(340), - [sym_acronym_definition] = STATE(340), - [sym_acronym_reference] = STATE(340), - [sym_theorem_definition] = STATE(340), - [sym_color_reference] = STATE(340), - [sym_color_definition] = STATE(340), - [sym_color_set_definition] = STATE(340), - [sym_pgf_library_import] = STATE(340), - [sym_tikz_library_import] = STATE(340), - [sym_generic_command] = STATE(340), - [aux_sym_subsubsection_repeat1] = STATE(340), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(5956), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3117), - [aux_sym_chapter_token1] = ACTIONS(3117), - [aux_sym_section_token1] = ACTIONS(3117), - [aux_sym_subsection_token1] = ACTIONS(3117), - [aux_sym_subsubsection_token1] = ACTIONS(3117), - [aux_sym_paragraph_token1] = ACTIONS(5959), - [aux_sym_subparagraph_token1] = ACTIONS(5962), - [anon_sym_BSLASHitem] = ACTIONS(5965), - [anon_sym_LBRACK] = ACTIONS(5968), - [anon_sym_LBRACE] = ACTIONS(5971), - [anon_sym_LPAREN] = ACTIONS(5968), - [anon_sym_COMMA] = ACTIONS(5974), - [anon_sym_EQ] = ACTIONS(5974), - [sym_word] = ACTIONS(5974), - [sym_param] = ACTIONS(5977), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5980), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5980), - [anon_sym_DOLLAR] = ACTIONS(5983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5986), - [anon_sym_BSLASHbegin] = ACTIONS(3149), - [anon_sym_BSLASHend] = ACTIONS(3117), - [anon_sym_BSLASHcaption] = ACTIONS(5989), - [aux_sym_citation_token1] = ACTIONS(5992), - [aux_sym_package_include_token1] = ACTIONS(5995), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5998), - [aux_sym_latex_include_token1] = ACTIONS(6001), - [aux_sym_latex_input_token1] = ACTIONS(6004), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6007), - [anon_sym_BSLASHbibliography] = ACTIONS(6010), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6013), - [anon_sym_BSLASHincludesvg] = ACTIONS(6016), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6019), - [aux_sym_verbatim_include_token1] = ACTIONS(6022), - [aux_sym_import_token1] = ACTIONS(6025), - [anon_sym_BSLASHlabel] = ACTIONS(6028), - [aux_sym_label_reference_token1] = ACTIONS(6031), - [anon_sym_BSLASHeqref] = ACTIONS(6034), - [aux_sym_label_reference_range_token1] = ACTIONS(6037), - [anon_sym_BSLASHnewlabel] = ACTIONS(6040), - [aux_sym_command_definition_token1] = ACTIONS(6043), - [aux_sym_math_operator_token1] = ACTIONS(6046), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6049), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(6052), - [anon_sym_BSLASHnewacronym] = ACTIONS(6055), - [aux_sym_acronym_reference_token1] = ACTIONS(6058), - [aux_sym_theorem_definition_token1] = ACTIONS(6061), - [aux_sym_color_reference_token1] = ACTIONS(6064), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6067), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6070), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6076), - }, - [341] = { - [sym__simple_content] = STATE(341), - [sym_paragraph] = STATE(341), - [sym_subparagraph] = STATE(341), - [sym_enum_item] = STATE(341), - [sym_brace_group] = STATE(341), - [sym_mixed_group] = STATE(341), - [sym_text] = STATE(341), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(341), - [sym_inline_formula] = STATE(341), - [sym_begin] = STATE(86), - [sym_environment] = STATE(341), - [sym_caption] = STATE(341), - [sym_citation] = STATE(341), - [sym_package_include] = STATE(341), - [sym_class_include] = STATE(341), - [sym_latex_include] = STATE(341), - [sym_latex_input] = STATE(341), - [sym_biblatex_include] = STATE(341), - [sym_bibtex_include] = STATE(341), - [sym_graphics_include] = STATE(341), - [sym_svg_include] = STATE(341), - [sym_inkscape_include] = STATE(341), - [sym_verbatim_include] = STATE(341), - [sym_import] = STATE(341), - [sym_label_definition] = STATE(341), - [sym_label_reference] = STATE(341), - [sym_equation_label_reference] = STATE(341), - [sym_label_reference_range] = STATE(341), - [sym_label_number] = STATE(341), - [sym_command_definition] = STATE(341), - [sym_math_operator] = STATE(341), - [sym_glossary_entry_definition] = STATE(341), - [sym_glossary_entry_reference] = STATE(341), - [sym_acronym_definition] = STATE(341), - [sym_acronym_reference] = STATE(341), - [sym_theorem_definition] = STATE(341), - [sym_color_reference] = STATE(341), - [sym_color_definition] = STATE(341), - [sym_color_set_definition] = STATE(341), - [sym_pgf_library_import] = STATE(341), - [sym_tikz_library_import] = STATE(341), - [sym_generic_command] = STATE(341), - [aux_sym_subsubsection_repeat1] = STATE(341), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(6079), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(3117), - [aux_sym_section_token1] = ACTIONS(3117), - [aux_sym_subsection_token1] = ACTIONS(3117), - [aux_sym_subsubsection_token1] = ACTIONS(3117), - [aux_sym_paragraph_token1] = ACTIONS(6082), - [aux_sym_subparagraph_token1] = ACTIONS(6085), - [anon_sym_BSLASHitem] = ACTIONS(6088), - [anon_sym_LBRACK] = ACTIONS(6091), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(6094), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(6091), - [anon_sym_COMMA] = ACTIONS(6097), - [anon_sym_EQ] = ACTIONS(6097), - [sym_word] = ACTIONS(6097), - [sym_param] = ACTIONS(6100), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6103), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6103), - [anon_sym_DOLLAR] = ACTIONS(6106), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6109), - [anon_sym_BSLASHbegin] = ACTIONS(3149), - [anon_sym_BSLASHcaption] = ACTIONS(6112), - [aux_sym_citation_token1] = ACTIONS(6115), - [aux_sym_package_include_token1] = ACTIONS(6118), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6121), - [aux_sym_latex_include_token1] = ACTIONS(6124), - [aux_sym_latex_input_token1] = ACTIONS(6127), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6130), - [anon_sym_BSLASHbibliography] = ACTIONS(6133), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6136), - [anon_sym_BSLASHincludesvg] = ACTIONS(6139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6142), - [aux_sym_verbatim_include_token1] = ACTIONS(6145), - [aux_sym_import_token1] = ACTIONS(6148), - [anon_sym_BSLASHlabel] = ACTIONS(6151), - [aux_sym_label_reference_token1] = ACTIONS(6154), - [anon_sym_BSLASHeqref] = ACTIONS(6157), - [aux_sym_label_reference_range_token1] = ACTIONS(6160), - [anon_sym_BSLASHnewlabel] = ACTIONS(6163), - [aux_sym_command_definition_token1] = ACTIONS(6166), - [aux_sym_math_operator_token1] = ACTIONS(6169), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6172), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(6175), - [anon_sym_BSLASHnewacronym] = ACTIONS(6178), - [aux_sym_acronym_reference_token1] = ACTIONS(6181), - [aux_sym_theorem_definition_token1] = ACTIONS(6184), - [aux_sym_color_reference_token1] = ACTIONS(6187), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6190), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6196), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6199), - }, - [342] = { - [sym__simple_content] = STATE(350), - [sym_subparagraph] = STATE(350), - [sym_enum_item] = STATE(350), - [sym_brace_group] = STATE(350), - [sym_mixed_group] = STATE(350), - [sym_text] = STATE(350), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(350), - [sym_inline_formula] = STATE(350), - [sym_begin] = STATE(59), - [sym_environment] = STATE(350), - [sym_caption] = STATE(350), - [sym_citation] = STATE(350), - [sym_package_include] = STATE(350), - [sym_class_include] = STATE(350), - [sym_latex_include] = STATE(350), - [sym_latex_input] = STATE(350), - [sym_biblatex_include] = STATE(350), - [sym_bibtex_include] = STATE(350), - [sym_graphics_include] = STATE(350), - [sym_svg_include] = STATE(350), - [sym_inkscape_include] = STATE(350), - [sym_verbatim_include] = STATE(350), - [sym_import] = STATE(350), - [sym_label_definition] = STATE(350), - [sym_label_reference] = STATE(350), - [sym_equation_label_reference] = STATE(350), - [sym_label_reference_range] = STATE(350), - [sym_label_number] = STATE(350), - [sym_command_definition] = STATE(350), - [sym_math_operator] = STATE(350), - [sym_glossary_entry_definition] = STATE(350), - [sym_glossary_entry_reference] = STATE(350), - [sym_acronym_definition] = STATE(350), - [sym_acronym_reference] = STATE(350), - [sym_theorem_definition] = STATE(350), - [sym_color_reference] = STATE(350), - [sym_color_definition] = STATE(350), - [sym_color_set_definition] = STATE(350), - [sym_pgf_library_import] = STATE(350), - [sym_tikz_library_import] = STATE(350), - [sym_generic_command] = STATE(350), - [aux_sym_paragraph_repeat1] = STATE(350), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3786), - [aux_sym_chapter_token1] = ACTIONS(3786), - [aux_sym_section_token1] = ACTIONS(3786), - [aux_sym_subsection_token1] = ACTIONS(3786), - [aux_sym_subsubsection_token1] = ACTIONS(3786), - [aux_sym_paragraph_token1] = ACTIONS(3786), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(6202), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(3784), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [343] = { - [sym__simple_content] = STATE(351), - [sym_subparagraph] = STATE(351), - [sym_enum_item] = STATE(351), - [sym_brace_group] = STATE(351), - [sym_mixed_group] = STATE(351), - [sym_text] = STATE(351), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(351), - [sym_inline_formula] = STATE(351), - [sym_begin] = STATE(86), - [sym_environment] = STATE(351), - [sym_caption] = STATE(351), - [sym_citation] = STATE(351), - [sym_package_include] = STATE(351), - [sym_class_include] = STATE(351), - [sym_latex_include] = STATE(351), - [sym_latex_input] = STATE(351), - [sym_biblatex_include] = STATE(351), - [sym_bibtex_include] = STATE(351), - [sym_graphics_include] = STATE(351), - [sym_svg_include] = STATE(351), - [sym_inkscape_include] = STATE(351), - [sym_verbatim_include] = STATE(351), - [sym_import] = STATE(351), - [sym_label_definition] = STATE(351), - [sym_label_reference] = STATE(351), - [sym_equation_label_reference] = STATE(351), - [sym_label_reference_range] = STATE(351), - [sym_label_number] = STATE(351), - [sym_command_definition] = STATE(351), - [sym_math_operator] = STATE(351), - [sym_glossary_entry_definition] = STATE(351), - [sym_glossary_entry_reference] = STATE(351), - [sym_acronym_definition] = STATE(351), - [sym_acronym_reference] = STATE(351), - [sym_theorem_definition] = STATE(351), - [sym_color_reference] = STATE(351), - [sym_color_definition] = STATE(351), - [sym_color_set_definition] = STATE(351), - [sym_pgf_library_import] = STATE(351), - [sym_tikz_library_import] = STATE(351), - [sym_generic_command] = STATE(351), - [aux_sym_paragraph_repeat1] = STATE(351), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(3786), - [aux_sym_section_token1] = ACTIONS(3786), - [aux_sym_subsection_token1] = ACTIONS(3786), - [aux_sym_subsubsection_token1] = ACTIONS(3786), - [aux_sym_paragraph_token1] = ACTIONS(3786), - [aux_sym_subparagraph_token1] = ACTIONS(2182), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(3784), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(6204), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [344] = { - [sym__simple_content] = STATE(344), - [sym_paragraph] = STATE(344), - [sym_subparagraph] = STATE(344), - [sym_enum_item] = STATE(344), - [sym_brace_group] = STATE(344), - [sym_mixed_group] = STATE(344), - [sym_text] = STATE(344), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(344), - [sym_inline_formula] = STATE(344), - [sym_begin] = STATE(94), - [sym_environment] = STATE(344), - [sym_caption] = STATE(344), - [sym_citation] = STATE(344), - [sym_package_include] = STATE(344), - [sym_class_include] = STATE(344), - [sym_latex_include] = STATE(344), - [sym_latex_input] = STATE(344), - [sym_biblatex_include] = STATE(344), - [sym_bibtex_include] = STATE(344), - [sym_graphics_include] = STATE(344), - [sym_svg_include] = STATE(344), - [sym_inkscape_include] = STATE(344), - [sym_verbatim_include] = STATE(344), - [sym_import] = STATE(344), - [sym_label_definition] = STATE(344), - [sym_label_reference] = STATE(344), - [sym_equation_label_reference] = STATE(344), - [sym_label_reference_range] = STATE(344), - [sym_label_number] = STATE(344), - [sym_command_definition] = STATE(344), - [sym_math_operator] = STATE(344), - [sym_glossary_entry_definition] = STATE(344), - [sym_glossary_entry_reference] = STATE(344), - [sym_acronym_definition] = STATE(344), - [sym_acronym_reference] = STATE(344), - [sym_theorem_definition] = STATE(344), - [sym_color_reference] = STATE(344), - [sym_color_definition] = STATE(344), - [sym_color_set_definition] = STATE(344), - [sym_pgf_library_import] = STATE(344), - [sym_tikz_library_import] = STATE(344), - [sym_generic_command] = STATE(344), - [aux_sym_subsubsection_repeat1] = STATE(344), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(6206), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(3117), - [aux_sym_subsection_token1] = ACTIONS(3117), - [aux_sym_subsubsection_token1] = ACTIONS(3117), - [aux_sym_paragraph_token1] = ACTIONS(6209), - [aux_sym_subparagraph_token1] = ACTIONS(6212), - [anon_sym_BSLASHitem] = ACTIONS(6215), - [anon_sym_LBRACK] = ACTIONS(6218), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(6221), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(6218), - [anon_sym_COMMA] = ACTIONS(6224), - [anon_sym_EQ] = ACTIONS(6224), - [sym_word] = ACTIONS(6224), - [sym_param] = ACTIONS(6227), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6230), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6230), - [anon_sym_DOLLAR] = ACTIONS(6233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6236), - [anon_sym_BSLASHbegin] = ACTIONS(3149), - [anon_sym_BSLASHcaption] = ACTIONS(6239), - [aux_sym_citation_token1] = ACTIONS(6242), - [aux_sym_package_include_token1] = ACTIONS(6245), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6248), - [aux_sym_latex_include_token1] = ACTIONS(6251), - [aux_sym_latex_input_token1] = ACTIONS(6254), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6257), - [anon_sym_BSLASHbibliography] = ACTIONS(6260), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6263), - [anon_sym_BSLASHincludesvg] = ACTIONS(6266), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6269), - [aux_sym_verbatim_include_token1] = ACTIONS(6272), - [aux_sym_import_token1] = ACTIONS(6275), - [anon_sym_BSLASHlabel] = ACTIONS(6278), - [aux_sym_label_reference_token1] = ACTIONS(6281), - [anon_sym_BSLASHeqref] = ACTIONS(6284), - [aux_sym_label_reference_range_token1] = ACTIONS(6287), - [anon_sym_BSLASHnewlabel] = ACTIONS(6290), - [aux_sym_command_definition_token1] = ACTIONS(6293), - [aux_sym_math_operator_token1] = ACTIONS(6296), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6299), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(6302), - [anon_sym_BSLASHnewacronym] = ACTIONS(6305), - [aux_sym_acronym_reference_token1] = ACTIONS(6308), - [aux_sym_theorem_definition_token1] = ACTIONS(6311), - [aux_sym_color_reference_token1] = ACTIONS(6314), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6320), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6323), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6326), - }, - [345] = { - [sym__simple_content] = STATE(353), - [sym_subsubsection] = STATE(353), - [sym_paragraph] = STATE(353), - [sym_subparagraph] = STATE(353), - [sym_enum_item] = STATE(353), - [sym_brace_group] = STATE(353), - [sym_mixed_group] = STATE(353), - [sym_text] = STATE(353), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(353), - [sym_inline_formula] = STATE(353), - [sym_begin] = STATE(105), - [sym_environment] = STATE(353), - [sym_caption] = STATE(353), - [sym_citation] = STATE(353), - [sym_package_include] = STATE(353), - [sym_class_include] = STATE(353), - [sym_latex_include] = STATE(353), - [sym_latex_input] = STATE(353), - [sym_biblatex_include] = STATE(353), - [sym_bibtex_include] = STATE(353), - [sym_graphics_include] = STATE(353), - [sym_svg_include] = STATE(353), - [sym_inkscape_include] = STATE(353), - [sym_verbatim_include] = STATE(353), - [sym_import] = STATE(353), - [sym_label_definition] = STATE(353), - [sym_label_reference] = STATE(353), - [sym_equation_label_reference] = STATE(353), - [sym_label_reference_range] = STATE(353), - [sym_label_number] = STATE(353), - [sym_command_definition] = STATE(353), - [sym_math_operator] = STATE(353), - [sym_glossary_entry_definition] = STATE(353), - [sym_glossary_entry_reference] = STATE(353), - [sym_acronym_definition] = STATE(353), - [sym_acronym_reference] = STATE(353), - [sym_theorem_definition] = STATE(353), - [sym_color_reference] = STATE(353), - [sym_color_definition] = STATE(353), - [sym_color_set_definition] = STATE(353), - [sym_pgf_library_import] = STATE(353), - [sym_tikz_library_import] = STATE(353), - [sym_generic_command] = STATE(353), - [aux_sym_subsection_repeat1] = STATE(353), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(2164), - [aux_sym_subsubsection_token1] = ACTIONS(5862), - [aux_sym_paragraph_token1] = ACTIONS(5864), - [aux_sym_subparagraph_token1] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(6329), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [346] = { - [sym__simple_content] = STATE(346), - [sym_subparagraph] = STATE(346), - [sym_enum_item] = STATE(346), - [sym_brace_group] = STATE(346), - [sym_mixed_group] = STATE(346), - [sym_text] = STATE(346), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(346), - [sym_inline_formula] = STATE(346), - [sym_begin] = STATE(73), - [sym_environment] = STATE(346), - [sym_caption] = STATE(346), - [sym_citation] = STATE(346), - [sym_package_include] = STATE(346), - [sym_class_include] = STATE(346), - [sym_latex_include] = STATE(346), - [sym_latex_input] = STATE(346), - [sym_biblatex_include] = STATE(346), - [sym_bibtex_include] = STATE(346), - [sym_graphics_include] = STATE(346), - [sym_svg_include] = STATE(346), - [sym_inkscape_include] = STATE(346), - [sym_verbatim_include] = STATE(346), - [sym_import] = STATE(346), - [sym_label_definition] = STATE(346), - [sym_label_reference] = STATE(346), - [sym_equation_label_reference] = STATE(346), - [sym_label_reference_range] = STATE(346), - [sym_label_number] = STATE(346), - [sym_command_definition] = STATE(346), - [sym_math_operator] = STATE(346), - [sym_glossary_entry_definition] = STATE(346), - [sym_glossary_entry_reference] = STATE(346), - [sym_acronym_definition] = STATE(346), - [sym_acronym_reference] = STATE(346), - [sym_theorem_definition] = STATE(346), - [sym_color_reference] = STATE(346), - [sym_color_definition] = STATE(346), - [sym_color_set_definition] = STATE(346), - [sym_pgf_library_import] = STATE(346), - [sym_tikz_library_import] = STATE(346), - [sym_generic_command] = STATE(346), - [aux_sym_paragraph_repeat1] = STATE(346), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(6331), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3889), - [aux_sym_chapter_token1] = ACTIONS(3889), - [aux_sym_section_token1] = ACTIONS(3889), - [aux_sym_subsection_token1] = ACTIONS(3889), - [aux_sym_subsubsection_token1] = ACTIONS(3889), - [aux_sym_paragraph_token1] = ACTIONS(3889), - [aux_sym_subparagraph_token1] = ACTIONS(6334), - [anon_sym_BSLASHitem] = ACTIONS(6337), - [anon_sym_LBRACK] = ACTIONS(6340), - [anon_sym_LBRACE] = ACTIONS(6343), - [anon_sym_LPAREN] = ACTIONS(6340), - [anon_sym_COMMA] = ACTIONS(6346), - [anon_sym_EQ] = ACTIONS(6346), - [sym_word] = ACTIONS(6346), - [sym_param] = ACTIONS(6349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6352), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6352), - [anon_sym_DOLLAR] = ACTIONS(6355), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6358), - [anon_sym_BSLASHbegin] = ACTIONS(3918), - [anon_sym_BSLASHend] = ACTIONS(3889), - [anon_sym_BSLASHcaption] = ACTIONS(6361), - [aux_sym_citation_token1] = ACTIONS(6364), - [aux_sym_package_include_token1] = ACTIONS(6367), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6370), - [aux_sym_latex_include_token1] = ACTIONS(6373), - [aux_sym_latex_input_token1] = ACTIONS(6376), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6379), - [anon_sym_BSLASHbibliography] = ACTIONS(6382), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6385), - [anon_sym_BSLASHincludesvg] = ACTIONS(6388), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6391), - [aux_sym_verbatim_include_token1] = ACTIONS(6394), - [aux_sym_import_token1] = ACTIONS(6397), - [anon_sym_BSLASHlabel] = ACTIONS(6400), - [aux_sym_label_reference_token1] = ACTIONS(6403), - [anon_sym_BSLASHeqref] = ACTIONS(6406), - [aux_sym_label_reference_range_token1] = ACTIONS(6409), - [anon_sym_BSLASHnewlabel] = ACTIONS(6412), - [aux_sym_command_definition_token1] = ACTIONS(6415), - [aux_sym_math_operator_token1] = ACTIONS(6418), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6421), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(6424), - [anon_sym_BSLASHnewacronym] = ACTIONS(6427), - [aux_sym_acronym_reference_token1] = ACTIONS(6430), - [aux_sym_theorem_definition_token1] = ACTIONS(6433), - [aux_sym_color_reference_token1] = ACTIONS(6436), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6439), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6442), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6448), - }, - [347] = { - [sym__simple_content] = STATE(347), - [sym_subparagraph] = STATE(347), - [sym_enum_item] = STATE(347), - [sym_brace_group] = STATE(347), - [sym_mixed_group] = STATE(347), - [sym_text] = STATE(347), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(347), - [sym_inline_formula] = STATE(347), - [sym_begin] = STATE(86), - [sym_environment] = STATE(347), - [sym_caption] = STATE(347), - [sym_citation] = STATE(347), - [sym_package_include] = STATE(347), - [sym_class_include] = STATE(347), - [sym_latex_include] = STATE(347), - [sym_latex_input] = STATE(347), - [sym_biblatex_include] = STATE(347), - [sym_bibtex_include] = STATE(347), - [sym_graphics_include] = STATE(347), - [sym_svg_include] = STATE(347), - [sym_inkscape_include] = STATE(347), - [sym_verbatim_include] = STATE(347), - [sym_import] = STATE(347), - [sym_label_definition] = STATE(347), - [sym_label_reference] = STATE(347), - [sym_equation_label_reference] = STATE(347), - [sym_label_reference_range] = STATE(347), - [sym_label_number] = STATE(347), - [sym_command_definition] = STATE(347), - [sym_math_operator] = STATE(347), - [sym_glossary_entry_definition] = STATE(347), - [sym_glossary_entry_reference] = STATE(347), - [sym_acronym_definition] = STATE(347), - [sym_acronym_reference] = STATE(347), - [sym_theorem_definition] = STATE(347), - [sym_color_reference] = STATE(347), - [sym_color_definition] = STATE(347), - [sym_color_set_definition] = STATE(347), - [sym_pgf_library_import] = STATE(347), - [sym_tikz_library_import] = STATE(347), - [sym_generic_command] = STATE(347), - [aux_sym_paragraph_repeat1] = STATE(347), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(6451), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(3889), - [aux_sym_section_token1] = ACTIONS(3889), - [aux_sym_subsection_token1] = ACTIONS(3889), - [aux_sym_subsubsection_token1] = ACTIONS(3889), - [aux_sym_paragraph_token1] = ACTIONS(3889), - [aux_sym_subparagraph_token1] = ACTIONS(6454), - [anon_sym_BSLASHitem] = ACTIONS(6457), - [anon_sym_LBRACK] = ACTIONS(6460), - [anon_sym_RBRACK] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(6463), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_LPAREN] = ACTIONS(6460), - [anon_sym_COMMA] = ACTIONS(6466), - [anon_sym_EQ] = ACTIONS(6466), - [sym_word] = ACTIONS(6466), - [sym_param] = ACTIONS(6469), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6472), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6472), - [anon_sym_DOLLAR] = ACTIONS(6475), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6478), - [anon_sym_BSLASHbegin] = ACTIONS(3918), - [anon_sym_BSLASHcaption] = ACTIONS(6481), - [aux_sym_citation_token1] = ACTIONS(6484), - [aux_sym_package_include_token1] = ACTIONS(6487), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6490), - [aux_sym_latex_include_token1] = ACTIONS(6493), - [aux_sym_latex_input_token1] = ACTIONS(6496), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6499), - [anon_sym_BSLASHbibliography] = ACTIONS(6502), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6505), - [anon_sym_BSLASHincludesvg] = ACTIONS(6508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6511), - [aux_sym_verbatim_include_token1] = ACTIONS(6514), - [aux_sym_import_token1] = ACTIONS(6517), - [anon_sym_BSLASHlabel] = ACTIONS(6520), - [aux_sym_label_reference_token1] = ACTIONS(6523), - [anon_sym_BSLASHeqref] = ACTIONS(6526), - [aux_sym_label_reference_range_token1] = ACTIONS(6529), - [anon_sym_BSLASHnewlabel] = ACTIONS(6532), - [aux_sym_command_definition_token1] = ACTIONS(6535), - [aux_sym_math_operator_token1] = ACTIONS(6538), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6541), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(6544), - [anon_sym_BSLASHnewacronym] = ACTIONS(6547), - [aux_sym_acronym_reference_token1] = ACTIONS(6550), - [aux_sym_theorem_definition_token1] = ACTIONS(6553), - [aux_sym_color_reference_token1] = ACTIONS(6556), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6559), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6562), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6565), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6568), - }, - [348] = { - [sym__simple_content] = STATE(345), - [sym_subsubsection] = STATE(345), - [sym_paragraph] = STATE(345), - [sym_subparagraph] = STATE(345), - [sym_enum_item] = STATE(345), - [sym_brace_group] = STATE(345), - [sym_mixed_group] = STATE(345), - [sym_text] = STATE(345), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(345), - [sym_inline_formula] = STATE(345), - [sym_begin] = STATE(105), - [sym_environment] = STATE(345), - [sym_caption] = STATE(345), - [sym_citation] = STATE(345), - [sym_package_include] = STATE(345), - [sym_class_include] = STATE(345), - [sym_latex_include] = STATE(345), - [sym_latex_input] = STATE(345), - [sym_biblatex_include] = STATE(345), - [sym_bibtex_include] = STATE(345), - [sym_graphics_include] = STATE(345), - [sym_svg_include] = STATE(345), - [sym_inkscape_include] = STATE(345), - [sym_verbatim_include] = STATE(345), - [sym_import] = STATE(345), - [sym_label_definition] = STATE(345), - [sym_label_reference] = STATE(345), - [sym_equation_label_reference] = STATE(345), - [sym_label_reference_range] = STATE(345), - [sym_label_number] = STATE(345), - [sym_command_definition] = STATE(345), - [sym_math_operator] = STATE(345), - [sym_glossary_entry_definition] = STATE(345), - [sym_glossary_entry_reference] = STATE(345), - [sym_acronym_definition] = STATE(345), - [sym_acronym_reference] = STATE(345), - [sym_theorem_definition] = STATE(345), - [sym_color_reference] = STATE(345), - [sym_color_definition] = STATE(345), - [sym_color_set_definition] = STATE(345), - [sym_pgf_library_import] = STATE(345), - [sym_tikz_library_import] = STATE(345), - [sym_generic_command] = STATE(345), - [aux_sym_subsection_repeat1] = STATE(345), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(2158), - [aux_sym_subsubsection_token1] = ACTIONS(5862), - [aux_sym_paragraph_token1] = ACTIONS(5864), - [aux_sym_subparagraph_token1] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(6571), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [349] = { - [sym__simple_content] = STATE(355), - [sym_subparagraph] = STATE(355), - [sym_enum_item] = STATE(355), - [sym_brace_group] = STATE(355), - [sym_mixed_group] = STATE(355), - [sym_text] = STATE(355), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(355), - [sym_inline_formula] = STATE(355), - [sym_begin] = STATE(73), - [sym_environment] = STATE(355), - [sym_caption] = STATE(355), - [sym_citation] = STATE(355), - [sym_package_include] = STATE(355), - [sym_class_include] = STATE(355), - [sym_latex_include] = STATE(355), - [sym_latex_input] = STATE(355), - [sym_biblatex_include] = STATE(355), - [sym_bibtex_include] = STATE(355), - [sym_graphics_include] = STATE(355), - [sym_svg_include] = STATE(355), - [sym_inkscape_include] = STATE(355), - [sym_verbatim_include] = STATE(355), - [sym_import] = STATE(355), - [sym_label_definition] = STATE(355), - [sym_label_reference] = STATE(355), - [sym_equation_label_reference] = STATE(355), - [sym_label_reference_range] = STATE(355), - [sym_label_number] = STATE(355), - [sym_command_definition] = STATE(355), - [sym_math_operator] = STATE(355), - [sym_glossary_entry_definition] = STATE(355), - [sym_glossary_entry_reference] = STATE(355), - [sym_acronym_definition] = STATE(355), - [sym_acronym_reference] = STATE(355), - [sym_theorem_definition] = STATE(355), - [sym_color_reference] = STATE(355), - [sym_color_definition] = STATE(355), - [sym_color_set_definition] = STATE(355), - [sym_pgf_library_import] = STATE(355), - [sym_tikz_library_import] = STATE(355), - [sym_generic_command] = STATE(355), - [aux_sym_paragraph_repeat1] = STATE(355), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3786), - [aux_sym_chapter_token1] = ACTIONS(3786), - [aux_sym_section_token1] = ACTIONS(3786), - [aux_sym_subsection_token1] = ACTIONS(3786), - [aux_sym_subsubsection_token1] = ACTIONS(3786), - [aux_sym_paragraph_token1] = ACTIONS(3786), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(6573), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(3786), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [350] = { - [sym__simple_content] = STATE(357), - [sym_subparagraph] = STATE(357), - [sym_enum_item] = STATE(357), - [sym_brace_group] = STATE(357), - [sym_mixed_group] = STATE(357), - [sym_text] = STATE(357), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(357), - [sym_inline_formula] = STATE(357), - [sym_begin] = STATE(59), - [sym_environment] = STATE(357), - [sym_caption] = STATE(357), - [sym_citation] = STATE(357), - [sym_package_include] = STATE(357), - [sym_class_include] = STATE(357), - [sym_latex_include] = STATE(357), - [sym_latex_input] = STATE(357), - [sym_biblatex_include] = STATE(357), - [sym_bibtex_include] = STATE(357), - [sym_graphics_include] = STATE(357), - [sym_svg_include] = STATE(357), - [sym_inkscape_include] = STATE(357), - [sym_verbatim_include] = STATE(357), - [sym_import] = STATE(357), - [sym_label_definition] = STATE(357), - [sym_label_reference] = STATE(357), - [sym_equation_label_reference] = STATE(357), - [sym_label_reference_range] = STATE(357), - [sym_label_number] = STATE(357), - [sym_command_definition] = STATE(357), - [sym_math_operator] = STATE(357), - [sym_glossary_entry_definition] = STATE(357), - [sym_glossary_entry_reference] = STATE(357), - [sym_acronym_definition] = STATE(357), - [sym_acronym_reference] = STATE(357), - [sym_theorem_definition] = STATE(357), - [sym_color_reference] = STATE(357), - [sym_color_definition] = STATE(357), - [sym_color_set_definition] = STATE(357), - [sym_pgf_library_import] = STATE(357), - [sym_tikz_library_import] = STATE(357), - [sym_generic_command] = STATE(357), - [aux_sym_paragraph_repeat1] = STATE(357), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3880), - [aux_sym_chapter_token1] = ACTIONS(3880), - [aux_sym_section_token1] = ACTIONS(3880), - [aux_sym_subsection_token1] = ACTIONS(3880), - [aux_sym_subsubsection_token1] = ACTIONS(3880), - [aux_sym_paragraph_token1] = ACTIONS(3880), - [aux_sym_subparagraph_token1] = ACTIONS(278), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(6575), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(3878), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [351] = { - [sym__simple_content] = STATE(347), - [sym_subparagraph] = STATE(347), - [sym_enum_item] = STATE(347), - [sym_brace_group] = STATE(347), - [sym_mixed_group] = STATE(347), - [sym_text] = STATE(347), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(347), - [sym_inline_formula] = STATE(347), - [sym_begin] = STATE(86), - [sym_environment] = STATE(347), - [sym_caption] = STATE(347), - [sym_citation] = STATE(347), - [sym_package_include] = STATE(347), - [sym_class_include] = STATE(347), - [sym_latex_include] = STATE(347), - [sym_latex_input] = STATE(347), - [sym_biblatex_include] = STATE(347), - [sym_bibtex_include] = STATE(347), - [sym_graphics_include] = STATE(347), - [sym_svg_include] = STATE(347), - [sym_inkscape_include] = STATE(347), - [sym_verbatim_include] = STATE(347), - [sym_import] = STATE(347), - [sym_label_definition] = STATE(347), - [sym_label_reference] = STATE(347), - [sym_equation_label_reference] = STATE(347), - [sym_label_reference_range] = STATE(347), - [sym_label_number] = STATE(347), - [sym_command_definition] = STATE(347), - [sym_math_operator] = STATE(347), - [sym_glossary_entry_definition] = STATE(347), - [sym_glossary_entry_reference] = STATE(347), - [sym_acronym_definition] = STATE(347), - [sym_acronym_reference] = STATE(347), - [sym_theorem_definition] = STATE(347), - [sym_color_reference] = STATE(347), - [sym_color_definition] = STATE(347), - [sym_color_set_definition] = STATE(347), - [sym_pgf_library_import] = STATE(347), - [sym_tikz_library_import] = STATE(347), - [sym_generic_command] = STATE(347), - [aux_sym_paragraph_repeat1] = STATE(347), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(3880), - [aux_sym_section_token1] = ACTIONS(3880), - [aux_sym_subsection_token1] = ACTIONS(3880), - [aux_sym_subsubsection_token1] = ACTIONS(3880), - [aux_sym_paragraph_token1] = ACTIONS(3880), - [aux_sym_subparagraph_token1] = ACTIONS(2182), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(3878), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(3878), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(6577), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [352] = { - [sym__simple_content] = STATE(344), - [sym_paragraph] = STATE(344), - [sym_subparagraph] = STATE(344), - [sym_enum_item] = STATE(344), - [sym_brace_group] = STATE(344), - [sym_mixed_group] = STATE(344), - [sym_text] = STATE(344), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(344), - [sym_inline_formula] = STATE(344), - [sym_begin] = STATE(94), - [sym_environment] = STATE(344), - [sym_caption] = STATE(344), - [sym_citation] = STATE(344), - [sym_package_include] = STATE(344), - [sym_class_include] = STATE(344), - [sym_latex_include] = STATE(344), - [sym_latex_input] = STATE(344), - [sym_biblatex_include] = STATE(344), - [sym_bibtex_include] = STATE(344), - [sym_graphics_include] = STATE(344), - [sym_svg_include] = STATE(344), - [sym_inkscape_include] = STATE(344), - [sym_verbatim_include] = STATE(344), - [sym_import] = STATE(344), - [sym_label_definition] = STATE(344), - [sym_label_reference] = STATE(344), - [sym_equation_label_reference] = STATE(344), - [sym_label_reference_range] = STATE(344), - [sym_label_number] = STATE(344), - [sym_command_definition] = STATE(344), - [sym_math_operator] = STATE(344), - [sym_glossary_entry_definition] = STATE(344), - [sym_glossary_entry_reference] = STATE(344), - [sym_acronym_definition] = STATE(344), - [sym_acronym_reference] = STATE(344), - [sym_theorem_definition] = STATE(344), - [sym_color_reference] = STATE(344), - [sym_color_definition] = STATE(344), - [sym_color_set_definition] = STATE(344), - [sym_pgf_library_import] = STATE(344), - [sym_tikz_library_import] = STATE(344), - [sym_generic_command] = STATE(344), - [aux_sym_subsubsection_repeat1] = STATE(344), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(2836), - [aux_sym_subsection_token1] = ACTIONS(2836), - [aux_sym_subsubsection_token1] = ACTIONS(2836), - [aux_sym_paragraph_token1] = ACTIONS(3798), - [aux_sym_subparagraph_token1] = ACTIONS(3800), - [anon_sym_BSLASHitem] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(6579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [353] = { - [sym__simple_content] = STATE(353), - [sym_subsubsection] = STATE(353), - [sym_paragraph] = STATE(353), - [sym_subparagraph] = STATE(353), - [sym_enum_item] = STATE(353), - [sym_brace_group] = STATE(353), - [sym_mixed_group] = STATE(353), - [sym_text] = STATE(353), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(353), - [sym_inline_formula] = STATE(353), - [sym_begin] = STATE(105), - [sym_environment] = STATE(353), - [sym_caption] = STATE(353), - [sym_citation] = STATE(353), - [sym_package_include] = STATE(353), - [sym_class_include] = STATE(353), - [sym_latex_include] = STATE(353), - [sym_latex_input] = STATE(353), - [sym_biblatex_include] = STATE(353), - [sym_bibtex_include] = STATE(353), - [sym_graphics_include] = STATE(353), - [sym_svg_include] = STATE(353), - [sym_inkscape_include] = STATE(353), - [sym_verbatim_include] = STATE(353), - [sym_import] = STATE(353), - [sym_label_definition] = STATE(353), - [sym_label_reference] = STATE(353), - [sym_equation_label_reference] = STATE(353), - [sym_label_reference_range] = STATE(353), - [sym_label_number] = STATE(353), - [sym_command_definition] = STATE(353), - [sym_math_operator] = STATE(353), - [sym_glossary_entry_definition] = STATE(353), - [sym_glossary_entry_reference] = STATE(353), - [sym_acronym_definition] = STATE(353), - [sym_acronym_reference] = STATE(353), - [sym_theorem_definition] = STATE(353), - [sym_color_reference] = STATE(353), - [sym_color_definition] = STATE(353), - [sym_color_set_definition] = STATE(353), - [sym_pgf_library_import] = STATE(353), - [sym_tikz_library_import] = STATE(353), - [sym_generic_command] = STATE(353), - [aux_sym_subsection_repeat1] = STATE(353), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(6581), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(2024), - [aux_sym_subsubsection_token1] = ACTIONS(6584), - [aux_sym_paragraph_token1] = ACTIONS(6587), - [aux_sym_subparagraph_token1] = ACTIONS(6590), - [anon_sym_BSLASHitem] = ACTIONS(6593), - [anon_sym_LBRACK] = ACTIONS(6596), - [anon_sym_RBRACK] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(6599), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(6596), - [anon_sym_COMMA] = ACTIONS(6602), - [anon_sym_EQ] = ACTIONS(6602), - [sym_word] = ACTIONS(6602), - [sym_param] = ACTIONS(6605), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6608), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6608), - [anon_sym_DOLLAR] = ACTIONS(6611), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6614), - [anon_sym_BSLASHbegin] = ACTIONS(2059), - [anon_sym_BSLASHcaption] = ACTIONS(6617), - [aux_sym_citation_token1] = ACTIONS(6620), - [aux_sym_package_include_token1] = ACTIONS(6623), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6626), - [aux_sym_latex_include_token1] = ACTIONS(6629), - [aux_sym_latex_input_token1] = ACTIONS(6632), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6635), - [anon_sym_BSLASHbibliography] = ACTIONS(6638), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6641), - [anon_sym_BSLASHincludesvg] = ACTIONS(6644), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6647), - [aux_sym_verbatim_include_token1] = ACTIONS(6650), - [aux_sym_import_token1] = ACTIONS(6653), - [anon_sym_BSLASHlabel] = ACTIONS(6656), - [aux_sym_label_reference_token1] = ACTIONS(6659), - [anon_sym_BSLASHeqref] = ACTIONS(6662), - [aux_sym_label_reference_range_token1] = ACTIONS(6665), - [anon_sym_BSLASHnewlabel] = ACTIONS(6668), - [aux_sym_command_definition_token1] = ACTIONS(6671), - [aux_sym_math_operator_token1] = ACTIONS(6674), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6677), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(6680), - [anon_sym_BSLASHnewacronym] = ACTIONS(6683), - [aux_sym_acronym_reference_token1] = ACTIONS(6686), - [aux_sym_theorem_definition_token1] = ACTIONS(6689), - [aux_sym_color_reference_token1] = ACTIONS(6692), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6695), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6698), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6701), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6704), - }, - [354] = { - [sym__simple_content] = STATE(352), - [sym_paragraph] = STATE(352), - [sym_subparagraph] = STATE(352), - [sym_enum_item] = STATE(352), - [sym_brace_group] = STATE(352), - [sym_mixed_group] = STATE(352), - [sym_text] = STATE(352), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(352), - [sym_inline_formula] = STATE(352), - [sym_begin] = STATE(94), - [sym_environment] = STATE(352), - [sym_caption] = STATE(352), - [sym_citation] = STATE(352), - [sym_package_include] = STATE(352), - [sym_class_include] = STATE(352), - [sym_latex_include] = STATE(352), - [sym_latex_input] = STATE(352), - [sym_biblatex_include] = STATE(352), - [sym_bibtex_include] = STATE(352), - [sym_graphics_include] = STATE(352), - [sym_svg_include] = STATE(352), - [sym_inkscape_include] = STATE(352), - [sym_verbatim_include] = STATE(352), - [sym_import] = STATE(352), - [sym_label_definition] = STATE(352), - [sym_label_reference] = STATE(352), - [sym_equation_label_reference] = STATE(352), - [sym_label_reference_range] = STATE(352), - [sym_label_number] = STATE(352), - [sym_command_definition] = STATE(352), - [sym_math_operator] = STATE(352), - [sym_glossary_entry_definition] = STATE(352), - [sym_glossary_entry_reference] = STATE(352), - [sym_acronym_definition] = STATE(352), - [sym_acronym_reference] = STATE(352), - [sym_theorem_definition] = STATE(352), - [sym_color_reference] = STATE(352), - [sym_color_definition] = STATE(352), - [sym_color_set_definition] = STATE(352), - [sym_pgf_library_import] = STATE(352), - [sym_tikz_library_import] = STATE(352), - [sym_generic_command] = STATE(352), - [aux_sym_subsubsection_repeat1] = STATE(352), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(3382), - [aux_sym_subsection_token1] = ACTIONS(3382), - [aux_sym_subsubsection_token1] = ACTIONS(3382), - [aux_sym_paragraph_token1] = ACTIONS(3798), - [aux_sym_subparagraph_token1] = ACTIONS(3800), - [anon_sym_BSLASHitem] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(6707), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [355] = { - [sym__simple_content] = STATE(346), - [sym_subparagraph] = STATE(346), - [sym_enum_item] = STATE(346), - [sym_brace_group] = STATE(346), - [sym_mixed_group] = STATE(346), - [sym_text] = STATE(346), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(346), - [sym_inline_formula] = STATE(346), - [sym_begin] = STATE(73), - [sym_environment] = STATE(346), - [sym_caption] = STATE(346), - [sym_citation] = STATE(346), - [sym_package_include] = STATE(346), - [sym_class_include] = STATE(346), - [sym_latex_include] = STATE(346), - [sym_latex_input] = STATE(346), - [sym_biblatex_include] = STATE(346), - [sym_bibtex_include] = STATE(346), - [sym_graphics_include] = STATE(346), - [sym_svg_include] = STATE(346), - [sym_inkscape_include] = STATE(346), - [sym_verbatim_include] = STATE(346), - [sym_import] = STATE(346), - [sym_label_definition] = STATE(346), - [sym_label_reference] = STATE(346), - [sym_equation_label_reference] = STATE(346), - [sym_label_reference_range] = STATE(346), - [sym_label_number] = STATE(346), - [sym_command_definition] = STATE(346), - [sym_math_operator] = STATE(346), - [sym_glossary_entry_definition] = STATE(346), - [sym_glossary_entry_reference] = STATE(346), - [sym_acronym_definition] = STATE(346), - [sym_acronym_reference] = STATE(346), - [sym_theorem_definition] = STATE(346), - [sym_color_reference] = STATE(346), - [sym_color_definition] = STATE(346), - [sym_color_set_definition] = STATE(346), - [sym_pgf_library_import] = STATE(346), - [sym_tikz_library_import] = STATE(346), - [sym_generic_command] = STATE(346), - [aux_sym_paragraph_repeat1] = STATE(346), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3880), - [aux_sym_chapter_token1] = ACTIONS(3880), - [aux_sym_section_token1] = ACTIONS(3880), - [aux_sym_subsection_token1] = ACTIONS(3880), - [aux_sym_subsubsection_token1] = ACTIONS(3880), - [aux_sym_paragraph_token1] = ACTIONS(3880), - [aux_sym_subparagraph_token1] = ACTIONS(470), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(6709), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(3880), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [356] = { - [sym__simple_content] = STATE(358), - [sym_subparagraph] = STATE(358), - [sym_enum_item] = STATE(358), - [sym_brace_group] = STATE(358), - [sym_mixed_group] = STATE(358), - [sym_text] = STATE(358), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(358), - [sym_inline_formula] = STATE(358), - [sym_begin] = STATE(66), - [sym_environment] = STATE(358), - [sym_caption] = STATE(358), - [sym_citation] = STATE(358), - [sym_package_include] = STATE(358), - [sym_class_include] = STATE(358), - [sym_latex_include] = STATE(358), - [sym_latex_input] = STATE(358), - [sym_biblatex_include] = STATE(358), - [sym_bibtex_include] = STATE(358), - [sym_graphics_include] = STATE(358), - [sym_svg_include] = STATE(358), - [sym_inkscape_include] = STATE(358), - [sym_verbatim_include] = STATE(358), - [sym_import] = STATE(358), - [sym_label_definition] = STATE(358), - [sym_label_reference] = STATE(358), - [sym_equation_label_reference] = STATE(358), - [sym_label_reference_range] = STATE(358), - [sym_label_number] = STATE(358), - [sym_command_definition] = STATE(358), - [sym_math_operator] = STATE(358), - [sym_glossary_entry_definition] = STATE(358), - [sym_glossary_entry_reference] = STATE(358), - [sym_acronym_definition] = STATE(358), - [sym_acronym_reference] = STATE(358), - [sym_theorem_definition] = STATE(358), - [sym_color_reference] = STATE(358), - [sym_color_definition] = STATE(358), - [sym_color_set_definition] = STATE(358), - [sym_pgf_library_import] = STATE(358), - [sym_tikz_library_import] = STATE(358), - [sym_generic_command] = STATE(358), - [aux_sym_paragraph_repeat1] = STATE(358), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3880), - [aux_sym_chapter_token1] = ACTIONS(3880), - [aux_sym_section_token1] = ACTIONS(3880), - [aux_sym_subsection_token1] = ACTIONS(3880), - [aux_sym_subsubsection_token1] = ACTIONS(3880), - [aux_sym_paragraph_token1] = ACTIONS(3880), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(6711), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(3878), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [357] = { - [sym__simple_content] = STATE(357), - [sym_subparagraph] = STATE(357), - [sym_enum_item] = STATE(357), - [sym_brace_group] = STATE(357), - [sym_mixed_group] = STATE(357), - [sym_text] = STATE(357), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(357), - [sym_inline_formula] = STATE(357), - [sym_begin] = STATE(59), - [sym_environment] = STATE(357), - [sym_caption] = STATE(357), - [sym_citation] = STATE(357), - [sym_package_include] = STATE(357), - [sym_class_include] = STATE(357), - [sym_latex_include] = STATE(357), - [sym_latex_input] = STATE(357), - [sym_biblatex_include] = STATE(357), - [sym_bibtex_include] = STATE(357), - [sym_graphics_include] = STATE(357), - [sym_svg_include] = STATE(357), - [sym_inkscape_include] = STATE(357), - [sym_verbatim_include] = STATE(357), - [sym_import] = STATE(357), - [sym_label_definition] = STATE(357), - [sym_label_reference] = STATE(357), - [sym_equation_label_reference] = STATE(357), - [sym_label_reference_range] = STATE(357), - [sym_label_number] = STATE(357), - [sym_command_definition] = STATE(357), - [sym_math_operator] = STATE(357), - [sym_glossary_entry_definition] = STATE(357), - [sym_glossary_entry_reference] = STATE(357), - [sym_acronym_definition] = STATE(357), - [sym_acronym_reference] = STATE(357), - [sym_theorem_definition] = STATE(357), - [sym_color_reference] = STATE(357), - [sym_color_definition] = STATE(357), - [sym_color_set_definition] = STATE(357), - [sym_pgf_library_import] = STATE(357), - [sym_tikz_library_import] = STATE(357), - [sym_generic_command] = STATE(357), - [aux_sym_paragraph_repeat1] = STATE(357), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(6713), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3889), - [aux_sym_chapter_token1] = ACTIONS(3889), - [aux_sym_section_token1] = ACTIONS(3889), - [aux_sym_subsection_token1] = ACTIONS(3889), - [aux_sym_subsubsection_token1] = ACTIONS(3889), - [aux_sym_paragraph_token1] = ACTIONS(3889), - [aux_sym_subparagraph_token1] = ACTIONS(6716), - [anon_sym_BSLASHitem] = ACTIONS(6719), - [anon_sym_LBRACK] = ACTIONS(6722), - [anon_sym_LBRACE] = ACTIONS(6725), - [anon_sym_LPAREN] = ACTIONS(6722), - [anon_sym_COMMA] = ACTIONS(6728), - [anon_sym_EQ] = ACTIONS(6728), - [sym_word] = ACTIONS(6728), - [sym_param] = ACTIONS(6731), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6734), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6734), - [anon_sym_BSLASH_RBRACK] = ACTIONS(3884), - [anon_sym_DOLLAR] = ACTIONS(6737), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6740), - [anon_sym_BSLASHbegin] = ACTIONS(3918), - [anon_sym_BSLASHcaption] = ACTIONS(6743), - [aux_sym_citation_token1] = ACTIONS(6746), - [aux_sym_package_include_token1] = ACTIONS(6749), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6752), - [aux_sym_latex_include_token1] = ACTIONS(6755), - [aux_sym_latex_input_token1] = ACTIONS(6758), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6761), - [anon_sym_BSLASHbibliography] = ACTIONS(6764), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6767), - [anon_sym_BSLASHincludesvg] = ACTIONS(6770), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6773), - [aux_sym_verbatim_include_token1] = ACTIONS(6776), - [aux_sym_import_token1] = ACTIONS(6779), - [anon_sym_BSLASHlabel] = ACTIONS(6782), - [aux_sym_label_reference_token1] = ACTIONS(6785), - [anon_sym_BSLASHeqref] = ACTIONS(6788), - [aux_sym_label_reference_range_token1] = ACTIONS(6791), - [anon_sym_BSLASHnewlabel] = ACTIONS(6794), - [aux_sym_command_definition_token1] = ACTIONS(6797), - [aux_sym_math_operator_token1] = ACTIONS(6800), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6803), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(6806), - [anon_sym_BSLASHnewacronym] = ACTIONS(6809), - [aux_sym_acronym_reference_token1] = ACTIONS(6812), - [aux_sym_theorem_definition_token1] = ACTIONS(6815), - [aux_sym_color_reference_token1] = ACTIONS(6818), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6821), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6824), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6827), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6830), - }, - [358] = { - [sym__simple_content] = STATE(358), - [sym_subparagraph] = STATE(358), - [sym_enum_item] = STATE(358), - [sym_brace_group] = STATE(358), - [sym_mixed_group] = STATE(358), - [sym_text] = STATE(358), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(358), - [sym_inline_formula] = STATE(358), - [sym_begin] = STATE(66), - [sym_environment] = STATE(358), - [sym_caption] = STATE(358), - [sym_citation] = STATE(358), - [sym_package_include] = STATE(358), - [sym_class_include] = STATE(358), - [sym_latex_include] = STATE(358), - [sym_latex_input] = STATE(358), - [sym_biblatex_include] = STATE(358), - [sym_bibtex_include] = STATE(358), - [sym_graphics_include] = STATE(358), - [sym_svg_include] = STATE(358), - [sym_inkscape_include] = STATE(358), - [sym_verbatim_include] = STATE(358), - [sym_import] = STATE(358), - [sym_label_definition] = STATE(358), - [sym_label_reference] = STATE(358), - [sym_equation_label_reference] = STATE(358), - [sym_label_reference_range] = STATE(358), - [sym_label_number] = STATE(358), - [sym_command_definition] = STATE(358), - [sym_math_operator] = STATE(358), - [sym_glossary_entry_definition] = STATE(358), - [sym_glossary_entry_reference] = STATE(358), - [sym_acronym_definition] = STATE(358), - [sym_acronym_reference] = STATE(358), - [sym_theorem_definition] = STATE(358), - [sym_color_reference] = STATE(358), - [sym_color_definition] = STATE(358), - [sym_color_set_definition] = STATE(358), - [sym_pgf_library_import] = STATE(358), - [sym_tikz_library_import] = STATE(358), - [sym_generic_command] = STATE(358), - [aux_sym_paragraph_repeat1] = STATE(358), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(6833), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3889), - [aux_sym_chapter_token1] = ACTIONS(3889), - [aux_sym_section_token1] = ACTIONS(3889), - [aux_sym_subsection_token1] = ACTIONS(3889), - [aux_sym_subsubsection_token1] = ACTIONS(3889), - [aux_sym_paragraph_token1] = ACTIONS(3889), - [aux_sym_subparagraph_token1] = ACTIONS(6836), - [anon_sym_BSLASHitem] = ACTIONS(6839), - [anon_sym_LBRACK] = ACTIONS(6842), - [anon_sym_LBRACE] = ACTIONS(6845), - [anon_sym_LPAREN] = ACTIONS(6842), - [anon_sym_COMMA] = ACTIONS(6848), - [anon_sym_EQ] = ACTIONS(6848), - [sym_word] = ACTIONS(6848), - [sym_param] = ACTIONS(6851), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6854), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6854), - [anon_sym_DOLLAR] = ACTIONS(6857), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6860), - [anon_sym_BSLASH_RPAREN] = ACTIONS(3884), - [anon_sym_BSLASHbegin] = ACTIONS(3918), - [anon_sym_BSLASHcaption] = ACTIONS(6863), - [aux_sym_citation_token1] = ACTIONS(6866), - [aux_sym_package_include_token1] = ACTIONS(6869), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6872), - [aux_sym_latex_include_token1] = ACTIONS(6875), - [aux_sym_latex_input_token1] = ACTIONS(6878), - [anon_sym_BSLASHaddbibresource] = ACTIONS(6881), - [anon_sym_BSLASHbibliography] = ACTIONS(6884), - [anon_sym_BSLASHincludegraphics] = ACTIONS(6887), - [anon_sym_BSLASHincludesvg] = ACTIONS(6890), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(6893), - [aux_sym_verbatim_include_token1] = ACTIONS(6896), - [aux_sym_import_token1] = ACTIONS(6899), - [anon_sym_BSLASHlabel] = ACTIONS(6902), - [aux_sym_label_reference_token1] = ACTIONS(6905), - [anon_sym_BSLASHeqref] = ACTIONS(6908), - [aux_sym_label_reference_range_token1] = ACTIONS(6911), - [anon_sym_BSLASHnewlabel] = ACTIONS(6914), - [aux_sym_command_definition_token1] = ACTIONS(6917), - [aux_sym_math_operator_token1] = ACTIONS(6920), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6923), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(6926), - [anon_sym_BSLASHnewacronym] = ACTIONS(6929), - [aux_sym_acronym_reference_token1] = ACTIONS(6932), - [aux_sym_theorem_definition_token1] = ACTIONS(6935), - [aux_sym_color_reference_token1] = ACTIONS(6938), - [anon_sym_BSLASHdefinecolor] = ACTIONS(6941), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(6944), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(6947), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6950), - }, - [359] = { - [sym__simple_content] = STATE(356), - [sym_subparagraph] = STATE(356), - [sym_enum_item] = STATE(356), - [sym_brace_group] = STATE(356), - [sym_mixed_group] = STATE(356), - [sym_text] = STATE(356), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(356), - [sym_inline_formula] = STATE(356), - [sym_begin] = STATE(66), - [sym_environment] = STATE(356), - [sym_caption] = STATE(356), - [sym_citation] = STATE(356), - [sym_package_include] = STATE(356), - [sym_class_include] = STATE(356), - [sym_latex_include] = STATE(356), - [sym_latex_input] = STATE(356), - [sym_biblatex_include] = STATE(356), - [sym_bibtex_include] = STATE(356), - [sym_graphics_include] = STATE(356), - [sym_svg_include] = STATE(356), - [sym_inkscape_include] = STATE(356), - [sym_verbatim_include] = STATE(356), - [sym_import] = STATE(356), - [sym_label_definition] = STATE(356), - [sym_label_reference] = STATE(356), - [sym_equation_label_reference] = STATE(356), - [sym_label_reference_range] = STATE(356), - [sym_label_number] = STATE(356), - [sym_command_definition] = STATE(356), - [sym_math_operator] = STATE(356), - [sym_glossary_entry_definition] = STATE(356), - [sym_glossary_entry_reference] = STATE(356), - [sym_acronym_definition] = STATE(356), - [sym_acronym_reference] = STATE(356), - [sym_theorem_definition] = STATE(356), - [sym_color_reference] = STATE(356), - [sym_color_definition] = STATE(356), - [sym_color_set_definition] = STATE(356), - [sym_pgf_library_import] = STATE(356), - [sym_tikz_library_import] = STATE(356), - [sym_generic_command] = STATE(356), - [aux_sym_paragraph_repeat1] = STATE(356), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(3786), - [aux_sym_chapter_token1] = ACTIONS(3786), - [aux_sym_section_token1] = ACTIONS(3786), - [aux_sym_subsection_token1] = ACTIONS(3786), - [aux_sym_subsubsection_token1] = ACTIONS(3786), - [aux_sym_paragraph_token1] = ACTIONS(3786), - [aux_sym_subparagraph_token1] = ACTIONS(372), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(6953), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(3784), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [360] = { - [sym__simple_content] = STATE(377), - [sym_paragraph] = STATE(377), - [sym_subparagraph] = STATE(377), - [sym_enum_item] = STATE(377), - [sym_brace_group] = STATE(377), - [sym_mixed_group] = STATE(377), - [sym_text] = STATE(377), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(377), - [sym_inline_formula] = STATE(377), - [sym_begin] = STATE(105), - [sym_environment] = STATE(377), - [sym_caption] = STATE(377), - [sym_citation] = STATE(377), - [sym_package_include] = STATE(377), - [sym_class_include] = STATE(377), - [sym_latex_include] = STATE(377), - [sym_latex_input] = STATE(377), - [sym_biblatex_include] = STATE(377), - [sym_bibtex_include] = STATE(377), - [sym_graphics_include] = STATE(377), - [sym_svg_include] = STATE(377), - [sym_inkscape_include] = STATE(377), - [sym_verbatim_include] = STATE(377), - [sym_import] = STATE(377), - [sym_label_definition] = STATE(377), - [sym_label_reference] = STATE(377), - [sym_equation_label_reference] = STATE(377), - [sym_label_reference_range] = STATE(377), - [sym_label_number] = STATE(377), - [sym_command_definition] = STATE(377), - [sym_math_operator] = STATE(377), - [sym_glossary_entry_definition] = STATE(377), - [sym_glossary_entry_reference] = STATE(377), - [sym_acronym_definition] = STATE(377), - [sym_acronym_reference] = STATE(377), - [sym_theorem_definition] = STATE(377), - [sym_color_reference] = STATE(377), - [sym_color_definition] = STATE(377), - [sym_color_set_definition] = STATE(377), - [sym_pgf_library_import] = STATE(377), - [sym_tikz_library_import] = STATE(377), - [sym_generic_command] = STATE(377), - [aux_sym_subsubsection_repeat1] = STATE(377), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(2836), - [aux_sym_subsubsection_token1] = ACTIONS(2836), - [aux_sym_paragraph_token1] = ACTIONS(5864), - [aux_sym_subparagraph_token1] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(6955), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [361] = { - [sym__simple_content] = STATE(374), - [sym_subparagraph] = STATE(374), - [sym_enum_item] = STATE(374), - [sym_brace_group] = STATE(374), - [sym_mixed_group] = STATE(374), - [sym_text] = STATE(374), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(374), - [sym_inline_formula] = STATE(374), - [sym_begin] = STATE(94), - [sym_environment] = STATE(374), - [sym_caption] = STATE(374), - [sym_citation] = STATE(374), - [sym_package_include] = STATE(374), - [sym_class_include] = STATE(374), - [sym_latex_include] = STATE(374), - [sym_latex_input] = STATE(374), - [sym_biblatex_include] = STATE(374), - [sym_bibtex_include] = STATE(374), - [sym_graphics_include] = STATE(374), - [sym_svg_include] = STATE(374), - [sym_inkscape_include] = STATE(374), - [sym_verbatim_include] = STATE(374), - [sym_import] = STATE(374), - [sym_label_definition] = STATE(374), - [sym_label_reference] = STATE(374), - [sym_equation_label_reference] = STATE(374), - [sym_label_reference_range] = STATE(374), - [sym_label_number] = STATE(374), - [sym_command_definition] = STATE(374), - [sym_math_operator] = STATE(374), - [sym_glossary_entry_definition] = STATE(374), - [sym_glossary_entry_reference] = STATE(374), - [sym_acronym_definition] = STATE(374), - [sym_acronym_reference] = STATE(374), - [sym_theorem_definition] = STATE(374), - [sym_color_reference] = STATE(374), - [sym_color_definition] = STATE(374), - [sym_color_set_definition] = STATE(374), - [sym_pgf_library_import] = STATE(374), - [sym_tikz_library_import] = STATE(374), - [sym_generic_command] = STATE(374), - [aux_sym_paragraph_repeat1] = STATE(374), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(3786), - [aux_sym_subsection_token1] = ACTIONS(3786), - [aux_sym_subsubsection_token1] = ACTIONS(3786), - [aux_sym_paragraph_token1] = ACTIONS(3786), - [aux_sym_subparagraph_token1] = ACTIONS(3800), - [anon_sym_BSLASHitem] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(3784), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(6957), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [362] = { - [sym__simple_content] = STATE(366), - [sym_enum_item] = STATE(366), - [sym_brace_group] = STATE(366), - [sym_mixed_group] = STATE(366), - [sym_text] = STATE(366), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(366), - [sym_inline_formula] = STATE(366), - [sym_begin] = STATE(66), - [sym_environment] = STATE(366), - [sym_caption] = STATE(366), - [sym_citation] = STATE(366), - [sym_package_include] = STATE(366), - [sym_class_include] = STATE(366), - [sym_latex_include] = STATE(366), - [sym_latex_input] = STATE(366), - [sym_biblatex_include] = STATE(366), - [sym_bibtex_include] = STATE(366), - [sym_graphics_include] = STATE(366), - [sym_svg_include] = STATE(366), - [sym_inkscape_include] = STATE(366), - [sym_verbatim_include] = STATE(366), - [sym_import] = STATE(366), - [sym_label_definition] = STATE(366), - [sym_label_reference] = STATE(366), - [sym_equation_label_reference] = STATE(366), - [sym_label_reference_range] = STATE(366), - [sym_label_number] = STATE(366), - [sym_command_definition] = STATE(366), - [sym_math_operator] = STATE(366), - [sym_glossary_entry_definition] = STATE(366), - [sym_glossary_entry_reference] = STATE(366), - [sym_acronym_definition] = STATE(366), - [sym_acronym_reference] = STATE(366), - [sym_theorem_definition] = STATE(366), - [sym_color_reference] = STATE(366), - [sym_color_definition] = STATE(366), - [sym_color_set_definition] = STATE(366), - [sym_pgf_library_import] = STATE(366), - [sym_tikz_library_import] = STATE(366), - [sym_generic_command] = STATE(366), - [aux_sym_subparagraph_repeat1] = STATE(366), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(4808), - [aux_sym_chapter_token1] = ACTIONS(4808), - [aux_sym_section_token1] = ACTIONS(4808), - [aux_sym_subsection_token1] = ACTIONS(4808), - [aux_sym_subsubsection_token1] = ACTIONS(4808), - [aux_sym_paragraph_token1] = ACTIONS(4808), - [aux_sym_subparagraph_token1] = ACTIONS(4808), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(6959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4806), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [363] = { - [sym__simple_content] = STATE(363), - [sym_enum_item] = STATE(363), - [sym_brace_group] = STATE(363), - [sym_mixed_group] = STATE(363), - [sym_text] = STATE(363), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(363), - [sym_inline_formula] = STATE(363), - [sym_begin] = STATE(59), - [sym_environment] = STATE(363), - [sym_caption] = STATE(363), - [sym_citation] = STATE(363), - [sym_package_include] = STATE(363), - [sym_class_include] = STATE(363), - [sym_latex_include] = STATE(363), - [sym_latex_input] = STATE(363), - [sym_biblatex_include] = STATE(363), - [sym_bibtex_include] = STATE(363), - [sym_graphics_include] = STATE(363), - [sym_svg_include] = STATE(363), - [sym_inkscape_include] = STATE(363), - [sym_verbatim_include] = STATE(363), - [sym_import] = STATE(363), - [sym_label_definition] = STATE(363), - [sym_label_reference] = STATE(363), - [sym_equation_label_reference] = STATE(363), - [sym_label_reference_range] = STATE(363), - [sym_label_number] = STATE(363), - [sym_command_definition] = STATE(363), - [sym_math_operator] = STATE(363), - [sym_glossary_entry_definition] = STATE(363), - [sym_glossary_entry_reference] = STATE(363), - [sym_acronym_definition] = STATE(363), - [sym_acronym_reference] = STATE(363), - [sym_theorem_definition] = STATE(363), - [sym_color_reference] = STATE(363), - [sym_color_definition] = STATE(363), - [sym_color_set_definition] = STATE(363), - [sym_pgf_library_import] = STATE(363), - [sym_tikz_library_import] = STATE(363), - [sym_generic_command] = STATE(363), - [aux_sym_subparagraph_repeat1] = STATE(363), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(6961), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5069), - [aux_sym_chapter_token1] = ACTIONS(5069), - [aux_sym_section_token1] = ACTIONS(5069), - [aux_sym_subsection_token1] = ACTIONS(5069), - [aux_sym_subsubsection_token1] = ACTIONS(5069), - [aux_sym_paragraph_token1] = ACTIONS(5069), - [aux_sym_subparagraph_token1] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(6964), - [anon_sym_LBRACK] = ACTIONS(6967), - [anon_sym_LBRACE] = ACTIONS(6970), - [anon_sym_LPAREN] = ACTIONS(6967), - [anon_sym_COMMA] = ACTIONS(6973), - [anon_sym_EQ] = ACTIONS(6973), - [sym_word] = ACTIONS(6973), - [sym_param] = ACTIONS(6976), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6979), - [anon_sym_BSLASH_LBRACK] = ACTIONS(6979), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5064), - [anon_sym_DOLLAR] = ACTIONS(6982), - [anon_sym_BSLASH_LPAREN] = ACTIONS(6985), - [anon_sym_BSLASHbegin] = ACTIONS(5095), - [anon_sym_BSLASHcaption] = ACTIONS(6988), - [aux_sym_citation_token1] = ACTIONS(6991), - [aux_sym_package_include_token1] = ACTIONS(6994), - [anon_sym_BSLASHdocumentclass] = ACTIONS(6997), - [aux_sym_latex_include_token1] = ACTIONS(7000), - [aux_sym_latex_input_token1] = ACTIONS(7003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7006), - [anon_sym_BSLASHbibliography] = ACTIONS(7009), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7012), - [anon_sym_BSLASHincludesvg] = ACTIONS(7015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7018), - [aux_sym_verbatim_include_token1] = ACTIONS(7021), - [aux_sym_import_token1] = ACTIONS(7024), - [anon_sym_BSLASHlabel] = ACTIONS(7027), - [aux_sym_label_reference_token1] = ACTIONS(7030), - [anon_sym_BSLASHeqref] = ACTIONS(7033), - [aux_sym_label_reference_range_token1] = ACTIONS(7036), - [anon_sym_BSLASHnewlabel] = ACTIONS(7039), - [aux_sym_command_definition_token1] = ACTIONS(7042), - [aux_sym_math_operator_token1] = ACTIONS(7045), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7048), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7051), - [anon_sym_BSLASHnewacronym] = ACTIONS(7054), - [aux_sym_acronym_reference_token1] = ACTIONS(7057), - [aux_sym_theorem_definition_token1] = ACTIONS(7060), - [aux_sym_color_reference_token1] = ACTIONS(7063), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7066), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7072), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7075), - }, - [364] = { - [sym__simple_content] = STATE(363), - [sym_enum_item] = STATE(363), - [sym_brace_group] = STATE(363), - [sym_mixed_group] = STATE(363), - [sym_text] = STATE(363), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(363), - [sym_inline_formula] = STATE(363), - [sym_begin] = STATE(59), - [sym_environment] = STATE(363), - [sym_caption] = STATE(363), - [sym_citation] = STATE(363), - [sym_package_include] = STATE(363), - [sym_class_include] = STATE(363), - [sym_latex_include] = STATE(363), - [sym_latex_input] = STATE(363), - [sym_biblatex_include] = STATE(363), - [sym_bibtex_include] = STATE(363), - [sym_graphics_include] = STATE(363), - [sym_svg_include] = STATE(363), - [sym_inkscape_include] = STATE(363), - [sym_verbatim_include] = STATE(363), - [sym_import] = STATE(363), - [sym_label_definition] = STATE(363), - [sym_label_reference] = STATE(363), - [sym_equation_label_reference] = STATE(363), - [sym_label_reference_range] = STATE(363), - [sym_label_number] = STATE(363), - [sym_command_definition] = STATE(363), - [sym_math_operator] = STATE(363), - [sym_glossary_entry_definition] = STATE(363), - [sym_glossary_entry_reference] = STATE(363), - [sym_acronym_definition] = STATE(363), - [sym_acronym_reference] = STATE(363), - [sym_theorem_definition] = STATE(363), - [sym_color_reference] = STATE(363), - [sym_color_definition] = STATE(363), - [sym_color_set_definition] = STATE(363), - [sym_pgf_library_import] = STATE(363), - [sym_tikz_library_import] = STATE(363), - [sym_generic_command] = STATE(363), - [aux_sym_subparagraph_repeat1] = STATE(363), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(4808), - [aux_sym_chapter_token1] = ACTIONS(4808), - [aux_sym_section_token1] = ACTIONS(4808), - [aux_sym_subsection_token1] = ACTIONS(4808), - [aux_sym_subsubsection_token1] = ACTIONS(4808), - [aux_sym_paragraph_token1] = ACTIONS(4808), - [aux_sym_subparagraph_token1] = ACTIONS(4808), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(7078), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4806), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [365] = { - [sym__simple_content] = STATE(378), - [sym_subsubsection] = STATE(378), - [sym_paragraph] = STATE(378), - [sym_subparagraph] = STATE(378), - [sym_enum_item] = STATE(378), - [sym_brace_group] = STATE(378), - [sym_mixed_group] = STATE(378), - [sym_text] = STATE(378), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(378), - [sym_inline_formula] = STATE(378), - [sym_begin] = STATE(112), - [sym_environment] = STATE(378), - [sym_caption] = STATE(378), - [sym_citation] = STATE(378), - [sym_package_include] = STATE(378), - [sym_class_include] = STATE(378), - [sym_latex_include] = STATE(378), - [sym_latex_input] = STATE(378), - [sym_biblatex_include] = STATE(378), - [sym_bibtex_include] = STATE(378), - [sym_graphics_include] = STATE(378), - [sym_svg_include] = STATE(378), - [sym_inkscape_include] = STATE(378), - [sym_verbatim_include] = STATE(378), - [sym_import] = STATE(378), - [sym_label_definition] = STATE(378), - [sym_label_reference] = STATE(378), - [sym_equation_label_reference] = STATE(378), - [sym_label_reference_range] = STATE(378), - [sym_label_number] = STATE(378), - [sym_command_definition] = STATE(378), - [sym_math_operator] = STATE(378), - [sym_glossary_entry_definition] = STATE(378), - [sym_glossary_entry_reference] = STATE(378), - [sym_acronym_definition] = STATE(378), - [sym_acronym_reference] = STATE(378), - [sym_theorem_definition] = STATE(378), - [sym_color_reference] = STATE(378), - [sym_color_definition] = STATE(378), - [sym_color_set_definition] = STATE(378), - [sym_pgf_library_import] = STATE(378), - [sym_tikz_library_import] = STATE(378), - [sym_generic_command] = STATE(378), - [aux_sym_subsection_repeat1] = STATE(378), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(7080), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(7082), - [aux_sym_paragraph_token1] = ACTIONS(7084), - [aux_sym_subparagraph_token1] = ACTIONS(7086), - [anon_sym_BSLASHitem] = ACTIONS(7088), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(7094), - [sym_word] = ACTIONS(7094), - [sym_param] = ACTIONS(7096), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7098), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7098), - [anon_sym_DOLLAR] = ACTIONS(7100), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7102), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(7104), - [aux_sym_citation_token1] = ACTIONS(7106), - [aux_sym_package_include_token1] = ACTIONS(7108), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7110), - [aux_sym_latex_include_token1] = ACTIONS(7112), - [aux_sym_latex_input_token1] = ACTIONS(7114), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7116), - [anon_sym_BSLASHbibliography] = ACTIONS(7118), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7120), - [anon_sym_BSLASHincludesvg] = ACTIONS(7122), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7124), - [aux_sym_verbatim_include_token1] = ACTIONS(7126), - [aux_sym_import_token1] = ACTIONS(7128), - [anon_sym_BSLASHlabel] = ACTIONS(7130), - [aux_sym_label_reference_token1] = ACTIONS(7132), - [anon_sym_BSLASHeqref] = ACTIONS(7134), - [aux_sym_label_reference_range_token1] = ACTIONS(7136), - [anon_sym_BSLASHnewlabel] = ACTIONS(7138), - [aux_sym_command_definition_token1] = ACTIONS(7140), - [aux_sym_math_operator_token1] = ACTIONS(7142), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7144), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7146), - [anon_sym_BSLASHnewacronym] = ACTIONS(7148), - [aux_sym_acronym_reference_token1] = ACTIONS(7150), - [aux_sym_theorem_definition_token1] = ACTIONS(7152), - [aux_sym_color_reference_token1] = ACTIONS(7154), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7156), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7160), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7162), - }, - [366] = { - [sym__simple_content] = STATE(366), - [sym_enum_item] = STATE(366), - [sym_brace_group] = STATE(366), - [sym_mixed_group] = STATE(366), - [sym_text] = STATE(366), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(366), - [sym_inline_formula] = STATE(366), - [sym_begin] = STATE(66), - [sym_environment] = STATE(366), - [sym_caption] = STATE(366), - [sym_citation] = STATE(366), - [sym_package_include] = STATE(366), - [sym_class_include] = STATE(366), - [sym_latex_include] = STATE(366), - [sym_latex_input] = STATE(366), - [sym_biblatex_include] = STATE(366), - [sym_bibtex_include] = STATE(366), - [sym_graphics_include] = STATE(366), - [sym_svg_include] = STATE(366), - [sym_inkscape_include] = STATE(366), - [sym_verbatim_include] = STATE(366), - [sym_import] = STATE(366), - [sym_label_definition] = STATE(366), - [sym_label_reference] = STATE(366), - [sym_equation_label_reference] = STATE(366), - [sym_label_reference_range] = STATE(366), - [sym_label_number] = STATE(366), - [sym_command_definition] = STATE(366), - [sym_math_operator] = STATE(366), - [sym_glossary_entry_definition] = STATE(366), - [sym_glossary_entry_reference] = STATE(366), - [sym_acronym_definition] = STATE(366), - [sym_acronym_reference] = STATE(366), - [sym_theorem_definition] = STATE(366), - [sym_color_reference] = STATE(366), - [sym_color_definition] = STATE(366), - [sym_color_set_definition] = STATE(366), - [sym_pgf_library_import] = STATE(366), - [sym_tikz_library_import] = STATE(366), - [sym_generic_command] = STATE(366), - [aux_sym_subparagraph_repeat1] = STATE(366), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(7164), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5069), - [aux_sym_chapter_token1] = ACTIONS(5069), - [aux_sym_section_token1] = ACTIONS(5069), - [aux_sym_subsection_token1] = ACTIONS(5069), - [aux_sym_subsubsection_token1] = ACTIONS(5069), - [aux_sym_paragraph_token1] = ACTIONS(5069), - [aux_sym_subparagraph_token1] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(7167), - [anon_sym_LBRACK] = ACTIONS(7170), - [anon_sym_LBRACE] = ACTIONS(7173), - [anon_sym_LPAREN] = ACTIONS(7170), - [anon_sym_COMMA] = ACTIONS(7176), - [anon_sym_EQ] = ACTIONS(7176), - [sym_word] = ACTIONS(7176), - [sym_param] = ACTIONS(7179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7182), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7182), - [anon_sym_DOLLAR] = ACTIONS(7185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7188), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5064), - [anon_sym_BSLASHbegin] = ACTIONS(5095), - [anon_sym_BSLASHcaption] = ACTIONS(7191), - [aux_sym_citation_token1] = ACTIONS(7194), - [aux_sym_package_include_token1] = ACTIONS(7197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7200), - [aux_sym_latex_include_token1] = ACTIONS(7203), - [aux_sym_latex_input_token1] = ACTIONS(7206), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7209), - [anon_sym_BSLASHbibliography] = ACTIONS(7212), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7215), - [anon_sym_BSLASHincludesvg] = ACTIONS(7218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7221), - [aux_sym_verbatim_include_token1] = ACTIONS(7224), - [aux_sym_import_token1] = ACTIONS(7227), - [anon_sym_BSLASHlabel] = ACTIONS(7230), - [aux_sym_label_reference_token1] = ACTIONS(7233), - [anon_sym_BSLASHeqref] = ACTIONS(7236), - [aux_sym_label_reference_range_token1] = ACTIONS(7239), - [anon_sym_BSLASHnewlabel] = ACTIONS(7242), - [aux_sym_command_definition_token1] = ACTIONS(7245), - [aux_sym_math_operator_token1] = ACTIONS(7248), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7251), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7254), - [anon_sym_BSLASHnewacronym] = ACTIONS(7257), - [aux_sym_acronym_reference_token1] = ACTIONS(7260), - [aux_sym_theorem_definition_token1] = ACTIONS(7263), - [aux_sym_color_reference_token1] = ACTIONS(7266), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7269), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7272), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7275), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7278), - }, - [367] = { - [sym__simple_content] = STATE(380), - [sym_enum_item] = STATE(380), - [sym_brace_group] = STATE(380), - [sym_mixed_group] = STATE(380), - [sym_text] = STATE(380), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(380), - [sym_inline_formula] = STATE(380), - [sym_begin] = STATE(86), - [sym_environment] = STATE(380), - [sym_caption] = STATE(380), - [sym_citation] = STATE(380), - [sym_package_include] = STATE(380), - [sym_class_include] = STATE(380), - [sym_latex_include] = STATE(380), - [sym_latex_input] = STATE(380), - [sym_biblatex_include] = STATE(380), - [sym_bibtex_include] = STATE(380), - [sym_graphics_include] = STATE(380), - [sym_svg_include] = STATE(380), - [sym_inkscape_include] = STATE(380), - [sym_verbatim_include] = STATE(380), - [sym_import] = STATE(380), - [sym_label_definition] = STATE(380), - [sym_label_reference] = STATE(380), - [sym_equation_label_reference] = STATE(380), - [sym_label_reference_range] = STATE(380), - [sym_label_number] = STATE(380), - [sym_command_definition] = STATE(380), - [sym_math_operator] = STATE(380), - [sym_glossary_entry_definition] = STATE(380), - [sym_glossary_entry_reference] = STATE(380), - [sym_acronym_definition] = STATE(380), - [sym_acronym_reference] = STATE(380), - [sym_theorem_definition] = STATE(380), - [sym_color_reference] = STATE(380), - [sym_color_definition] = STATE(380), - [sym_color_set_definition] = STATE(380), - [sym_pgf_library_import] = STATE(380), - [sym_tikz_library_import] = STATE(380), - [sym_generic_command] = STATE(380), - [aux_sym_subparagraph_repeat1] = STATE(380), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(4808), - [aux_sym_section_token1] = ACTIONS(4808), - [aux_sym_subsection_token1] = ACTIONS(4808), - [aux_sym_subsubsection_token1] = ACTIONS(4808), - [aux_sym_paragraph_token1] = ACTIONS(4808), - [aux_sym_subparagraph_token1] = ACTIONS(4808), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(4806), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(4806), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(7281), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [368] = { - [sym__simple_content] = STATE(368), - [sym_subparagraph] = STATE(368), - [sym_enum_item] = STATE(368), - [sym_brace_group] = STATE(368), - [sym_mixed_group] = STATE(368), - [sym_text] = STATE(368), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(368), - [sym_inline_formula] = STATE(368), - [sym_begin] = STATE(94), - [sym_environment] = STATE(368), - [sym_caption] = STATE(368), - [sym_citation] = STATE(368), - [sym_package_include] = STATE(368), - [sym_class_include] = STATE(368), - [sym_latex_include] = STATE(368), - [sym_latex_input] = STATE(368), - [sym_biblatex_include] = STATE(368), - [sym_bibtex_include] = STATE(368), - [sym_graphics_include] = STATE(368), - [sym_svg_include] = STATE(368), - [sym_inkscape_include] = STATE(368), - [sym_verbatim_include] = STATE(368), - [sym_import] = STATE(368), - [sym_label_definition] = STATE(368), - [sym_label_reference] = STATE(368), - [sym_equation_label_reference] = STATE(368), - [sym_label_reference_range] = STATE(368), - [sym_label_number] = STATE(368), - [sym_command_definition] = STATE(368), - [sym_math_operator] = STATE(368), - [sym_glossary_entry_definition] = STATE(368), - [sym_glossary_entry_reference] = STATE(368), - [sym_acronym_definition] = STATE(368), - [sym_acronym_reference] = STATE(368), - [sym_theorem_definition] = STATE(368), - [sym_color_reference] = STATE(368), - [sym_color_definition] = STATE(368), - [sym_color_set_definition] = STATE(368), - [sym_pgf_library_import] = STATE(368), - [sym_tikz_library_import] = STATE(368), - [sym_generic_command] = STATE(368), - [aux_sym_paragraph_repeat1] = STATE(368), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(7283), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(3889), - [aux_sym_subsection_token1] = ACTIONS(3889), - [aux_sym_subsubsection_token1] = ACTIONS(3889), - [aux_sym_paragraph_token1] = ACTIONS(3889), - [aux_sym_subparagraph_token1] = ACTIONS(7286), - [anon_sym_BSLASHitem] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7292), - [anon_sym_RBRACK] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(7295), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_LPAREN] = ACTIONS(7292), - [anon_sym_COMMA] = ACTIONS(7298), - [anon_sym_EQ] = ACTIONS(7298), - [sym_word] = ACTIONS(7298), - [sym_param] = ACTIONS(7301), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7304), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7304), - [anon_sym_DOLLAR] = ACTIONS(7307), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7310), - [anon_sym_BSLASHbegin] = ACTIONS(3918), - [anon_sym_BSLASHcaption] = ACTIONS(7313), - [aux_sym_citation_token1] = ACTIONS(7316), - [aux_sym_package_include_token1] = ACTIONS(7319), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7322), - [aux_sym_latex_include_token1] = ACTIONS(7325), - [aux_sym_latex_input_token1] = ACTIONS(7328), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7331), - [anon_sym_BSLASHbibliography] = ACTIONS(7334), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7337), - [anon_sym_BSLASHincludesvg] = ACTIONS(7340), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7343), - [aux_sym_verbatim_include_token1] = ACTIONS(7346), - [aux_sym_import_token1] = ACTIONS(7349), - [anon_sym_BSLASHlabel] = ACTIONS(7352), - [aux_sym_label_reference_token1] = ACTIONS(7355), - [anon_sym_BSLASHeqref] = ACTIONS(7358), - [aux_sym_label_reference_range_token1] = ACTIONS(7361), - [anon_sym_BSLASHnewlabel] = ACTIONS(7364), - [aux_sym_command_definition_token1] = ACTIONS(7367), - [aux_sym_math_operator_token1] = ACTIONS(7370), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7373), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7376), - [anon_sym_BSLASHnewacronym] = ACTIONS(7379), - [aux_sym_acronym_reference_token1] = ACTIONS(7382), - [aux_sym_theorem_definition_token1] = ACTIONS(7385), - [aux_sym_color_reference_token1] = ACTIONS(7388), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7394), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7397), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7400), - }, - [369] = { - [sym__simple_content] = STATE(369), - [sym_subsubsection] = STATE(369), - [sym_paragraph] = STATE(369), - [sym_subparagraph] = STATE(369), - [sym_enum_item] = STATE(369), - [sym_brace_group] = STATE(369), - [sym_mixed_group] = STATE(369), - [sym_text] = STATE(369), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(369), - [sym_inline_formula] = STATE(369), - [sym_begin] = STATE(112), - [sym_environment] = STATE(369), - [sym_caption] = STATE(369), - [sym_citation] = STATE(369), - [sym_package_include] = STATE(369), - [sym_class_include] = STATE(369), - [sym_latex_include] = STATE(369), - [sym_latex_input] = STATE(369), - [sym_biblatex_include] = STATE(369), - [sym_bibtex_include] = STATE(369), - [sym_graphics_include] = STATE(369), - [sym_svg_include] = STATE(369), - [sym_inkscape_include] = STATE(369), - [sym_verbatim_include] = STATE(369), - [sym_import] = STATE(369), - [sym_label_definition] = STATE(369), - [sym_label_reference] = STATE(369), - [sym_equation_label_reference] = STATE(369), - [sym_label_reference_range] = STATE(369), - [sym_label_number] = STATE(369), - [sym_command_definition] = STATE(369), - [sym_math_operator] = STATE(369), - [sym_glossary_entry_definition] = STATE(369), - [sym_glossary_entry_reference] = STATE(369), - [sym_acronym_definition] = STATE(369), - [sym_acronym_reference] = STATE(369), - [sym_theorem_definition] = STATE(369), - [sym_color_reference] = STATE(369), - [sym_color_definition] = STATE(369), - [sym_color_set_definition] = STATE(369), - [sym_pgf_library_import] = STATE(369), - [sym_tikz_library_import] = STATE(369), - [sym_generic_command] = STATE(369), - [aux_sym_subsection_repeat1] = STATE(369), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(7403), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(7406), - [aux_sym_paragraph_token1] = ACTIONS(7409), - [aux_sym_subparagraph_token1] = ACTIONS(7412), - [anon_sym_BSLASHitem] = ACTIONS(7415), - [anon_sym_LBRACK] = ACTIONS(7418), - [anon_sym_RBRACK] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(7421), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_COMMA] = ACTIONS(7424), - [anon_sym_EQ] = ACTIONS(7424), - [sym_word] = ACTIONS(7424), - [sym_param] = ACTIONS(7427), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7430), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7430), - [anon_sym_DOLLAR] = ACTIONS(7433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7436), - [anon_sym_BSLASHbegin] = ACTIONS(2059), - [anon_sym_BSLASHcaption] = ACTIONS(7439), - [aux_sym_citation_token1] = ACTIONS(7442), - [aux_sym_package_include_token1] = ACTIONS(7445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7448), - [aux_sym_latex_include_token1] = ACTIONS(7451), - [aux_sym_latex_input_token1] = ACTIONS(7454), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7457), - [anon_sym_BSLASHbibliography] = ACTIONS(7460), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7463), - [anon_sym_BSLASHincludesvg] = ACTIONS(7466), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7469), - [aux_sym_verbatim_include_token1] = ACTIONS(7472), - [aux_sym_import_token1] = ACTIONS(7475), - [anon_sym_BSLASHlabel] = ACTIONS(7478), - [aux_sym_label_reference_token1] = ACTIONS(7481), - [anon_sym_BSLASHeqref] = ACTIONS(7484), - [aux_sym_label_reference_range_token1] = ACTIONS(7487), - [anon_sym_BSLASHnewlabel] = ACTIONS(7490), - [aux_sym_command_definition_token1] = ACTIONS(7493), - [aux_sym_math_operator_token1] = ACTIONS(7496), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7499), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7502), - [anon_sym_BSLASHnewacronym] = ACTIONS(7505), - [aux_sym_acronym_reference_token1] = ACTIONS(7508), - [aux_sym_theorem_definition_token1] = ACTIONS(7511), - [aux_sym_color_reference_token1] = ACTIONS(7514), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7517), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7520), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7523), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7526), - }, - [370] = { - [sym__simple_content] = STATE(373), - [sym_enum_item] = STATE(373), - [sym_brace_group] = STATE(373), - [sym_mixed_group] = STATE(373), - [sym_text] = STATE(373), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(373), - [sym_inline_formula] = STATE(373), - [sym_begin] = STATE(73), - [sym_environment] = STATE(373), - [sym_caption] = STATE(373), - [sym_citation] = STATE(373), - [sym_package_include] = STATE(373), - [sym_class_include] = STATE(373), - [sym_latex_include] = STATE(373), - [sym_latex_input] = STATE(373), - [sym_biblatex_include] = STATE(373), - [sym_bibtex_include] = STATE(373), - [sym_graphics_include] = STATE(373), - [sym_svg_include] = STATE(373), - [sym_inkscape_include] = STATE(373), - [sym_verbatim_include] = STATE(373), - [sym_import] = STATE(373), - [sym_label_definition] = STATE(373), - [sym_label_reference] = STATE(373), - [sym_equation_label_reference] = STATE(373), - [sym_label_reference_range] = STATE(373), - [sym_label_number] = STATE(373), - [sym_command_definition] = STATE(373), - [sym_math_operator] = STATE(373), - [sym_glossary_entry_definition] = STATE(373), - [sym_glossary_entry_reference] = STATE(373), - [sym_acronym_definition] = STATE(373), - [sym_acronym_reference] = STATE(373), - [sym_theorem_definition] = STATE(373), - [sym_color_reference] = STATE(373), - [sym_color_definition] = STATE(373), - [sym_color_set_definition] = STATE(373), - [sym_pgf_library_import] = STATE(373), - [sym_tikz_library_import] = STATE(373), - [sym_generic_command] = STATE(373), - [aux_sym_subparagraph_repeat1] = STATE(373), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(4543), - [aux_sym_chapter_token1] = ACTIONS(4543), - [aux_sym_section_token1] = ACTIONS(4543), - [aux_sym_subsection_token1] = ACTIONS(4543), - [aux_sym_subsubsection_token1] = ACTIONS(4543), - [aux_sym_paragraph_token1] = ACTIONS(4543), - [aux_sym_subparagraph_token1] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(7529), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(4543), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [371] = { - [sym__simple_content] = STATE(364), - [sym_enum_item] = STATE(364), - [sym_brace_group] = STATE(364), - [sym_mixed_group] = STATE(364), - [sym_text] = STATE(364), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(364), - [sym_inline_formula] = STATE(364), - [sym_begin] = STATE(59), - [sym_environment] = STATE(364), - [sym_caption] = STATE(364), - [sym_citation] = STATE(364), - [sym_package_include] = STATE(364), - [sym_class_include] = STATE(364), - [sym_latex_include] = STATE(364), - [sym_latex_input] = STATE(364), - [sym_biblatex_include] = STATE(364), - [sym_bibtex_include] = STATE(364), - [sym_graphics_include] = STATE(364), - [sym_svg_include] = STATE(364), - [sym_inkscape_include] = STATE(364), - [sym_verbatim_include] = STATE(364), - [sym_import] = STATE(364), - [sym_label_definition] = STATE(364), - [sym_label_reference] = STATE(364), - [sym_equation_label_reference] = STATE(364), - [sym_label_reference_range] = STATE(364), - [sym_label_number] = STATE(364), - [sym_command_definition] = STATE(364), - [sym_math_operator] = STATE(364), - [sym_glossary_entry_definition] = STATE(364), - [sym_glossary_entry_reference] = STATE(364), - [sym_acronym_definition] = STATE(364), - [sym_acronym_reference] = STATE(364), - [sym_theorem_definition] = STATE(364), - [sym_color_reference] = STATE(364), - [sym_color_definition] = STATE(364), - [sym_color_set_definition] = STATE(364), - [sym_pgf_library_import] = STATE(364), - [sym_tikz_library_import] = STATE(364), - [sym_generic_command] = STATE(364), - [aux_sym_subparagraph_repeat1] = STATE(364), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(4543), - [aux_sym_chapter_token1] = ACTIONS(4543), - [aux_sym_section_token1] = ACTIONS(4543), - [aux_sym_subsection_token1] = ACTIONS(4543), - [aux_sym_subsubsection_token1] = ACTIONS(4543), - [aux_sym_paragraph_token1] = ACTIONS(4543), - [aux_sym_subparagraph_token1] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(280), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(7531), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4541), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [372] = { - [sym__simple_content] = STATE(362), - [sym_enum_item] = STATE(362), - [sym_brace_group] = STATE(362), - [sym_mixed_group] = STATE(362), - [sym_text] = STATE(362), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(362), - [sym_inline_formula] = STATE(362), - [sym_begin] = STATE(66), - [sym_environment] = STATE(362), - [sym_caption] = STATE(362), - [sym_citation] = STATE(362), - [sym_package_include] = STATE(362), - [sym_class_include] = STATE(362), - [sym_latex_include] = STATE(362), - [sym_latex_input] = STATE(362), - [sym_biblatex_include] = STATE(362), - [sym_bibtex_include] = STATE(362), - [sym_graphics_include] = STATE(362), - [sym_svg_include] = STATE(362), - [sym_inkscape_include] = STATE(362), - [sym_verbatim_include] = STATE(362), - [sym_import] = STATE(362), - [sym_label_definition] = STATE(362), - [sym_label_reference] = STATE(362), - [sym_equation_label_reference] = STATE(362), - [sym_label_reference_range] = STATE(362), - [sym_label_number] = STATE(362), - [sym_command_definition] = STATE(362), - [sym_math_operator] = STATE(362), - [sym_glossary_entry_definition] = STATE(362), - [sym_glossary_entry_reference] = STATE(362), - [sym_acronym_definition] = STATE(362), - [sym_acronym_reference] = STATE(362), - [sym_theorem_definition] = STATE(362), - [sym_color_reference] = STATE(362), - [sym_color_definition] = STATE(362), - [sym_color_set_definition] = STATE(362), - [sym_pgf_library_import] = STATE(362), - [sym_tikz_library_import] = STATE(362), - [sym_generic_command] = STATE(362), - [aux_sym_subparagraph_repeat1] = STATE(362), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(4543), - [aux_sym_chapter_token1] = ACTIONS(4543), - [aux_sym_section_token1] = ACTIONS(4543), - [aux_sym_subsection_token1] = ACTIONS(4543), - [aux_sym_subsubsection_token1] = ACTIONS(4543), - [aux_sym_paragraph_token1] = ACTIONS(4543), - [aux_sym_subparagraph_token1] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(7533), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4541), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [373] = { - [sym__simple_content] = STATE(376), - [sym_enum_item] = STATE(376), - [sym_brace_group] = STATE(376), - [sym_mixed_group] = STATE(376), - [sym_text] = STATE(376), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(376), - [sym_inline_formula] = STATE(376), - [sym_begin] = STATE(73), - [sym_environment] = STATE(376), - [sym_caption] = STATE(376), - [sym_citation] = STATE(376), - [sym_package_include] = STATE(376), - [sym_class_include] = STATE(376), - [sym_latex_include] = STATE(376), - [sym_latex_input] = STATE(376), - [sym_biblatex_include] = STATE(376), - [sym_bibtex_include] = STATE(376), - [sym_graphics_include] = STATE(376), - [sym_svg_include] = STATE(376), - [sym_inkscape_include] = STATE(376), - [sym_verbatim_include] = STATE(376), - [sym_import] = STATE(376), - [sym_label_definition] = STATE(376), - [sym_label_reference] = STATE(376), - [sym_equation_label_reference] = STATE(376), - [sym_label_reference_range] = STATE(376), - [sym_label_number] = STATE(376), - [sym_command_definition] = STATE(376), - [sym_math_operator] = STATE(376), - [sym_glossary_entry_definition] = STATE(376), - [sym_glossary_entry_reference] = STATE(376), - [sym_acronym_definition] = STATE(376), - [sym_acronym_reference] = STATE(376), - [sym_theorem_definition] = STATE(376), - [sym_color_reference] = STATE(376), - [sym_color_definition] = STATE(376), - [sym_color_set_definition] = STATE(376), - [sym_pgf_library_import] = STATE(376), - [sym_tikz_library_import] = STATE(376), - [sym_generic_command] = STATE(376), - [aux_sym_subparagraph_repeat1] = STATE(376), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(4808), - [aux_sym_chapter_token1] = ACTIONS(4808), - [aux_sym_section_token1] = ACTIONS(4808), - [aux_sym_subsection_token1] = ACTIONS(4808), - [aux_sym_subsubsection_token1] = ACTIONS(4808), - [aux_sym_paragraph_token1] = ACTIONS(4808), - [aux_sym_subparagraph_token1] = ACTIONS(4808), - [anon_sym_BSLASHitem] = ACTIONS(472), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(7535), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(4808), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [374] = { - [sym__simple_content] = STATE(368), - [sym_subparagraph] = STATE(368), - [sym_enum_item] = STATE(368), - [sym_brace_group] = STATE(368), - [sym_mixed_group] = STATE(368), - [sym_text] = STATE(368), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(368), - [sym_inline_formula] = STATE(368), - [sym_begin] = STATE(94), - [sym_environment] = STATE(368), - [sym_caption] = STATE(368), - [sym_citation] = STATE(368), - [sym_package_include] = STATE(368), - [sym_class_include] = STATE(368), - [sym_latex_include] = STATE(368), - [sym_latex_input] = STATE(368), - [sym_biblatex_include] = STATE(368), - [sym_bibtex_include] = STATE(368), - [sym_graphics_include] = STATE(368), - [sym_svg_include] = STATE(368), - [sym_inkscape_include] = STATE(368), - [sym_verbatim_include] = STATE(368), - [sym_import] = STATE(368), - [sym_label_definition] = STATE(368), - [sym_label_reference] = STATE(368), - [sym_equation_label_reference] = STATE(368), - [sym_label_reference_range] = STATE(368), - [sym_label_number] = STATE(368), - [sym_command_definition] = STATE(368), - [sym_math_operator] = STATE(368), - [sym_glossary_entry_definition] = STATE(368), - [sym_glossary_entry_reference] = STATE(368), - [sym_acronym_definition] = STATE(368), - [sym_acronym_reference] = STATE(368), - [sym_theorem_definition] = STATE(368), - [sym_color_reference] = STATE(368), - [sym_color_definition] = STATE(368), - [sym_color_set_definition] = STATE(368), - [sym_pgf_library_import] = STATE(368), - [sym_tikz_library_import] = STATE(368), - [sym_generic_command] = STATE(368), - [aux_sym_paragraph_repeat1] = STATE(368), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(3880), - [aux_sym_subsection_token1] = ACTIONS(3880), - [aux_sym_subsubsection_token1] = ACTIONS(3880), - [aux_sym_paragraph_token1] = ACTIONS(3880), - [aux_sym_subparagraph_token1] = ACTIONS(3800), - [anon_sym_BSLASHitem] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(3878), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(3878), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(7537), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [375] = { - [sym__simple_content] = STATE(360), - [sym_paragraph] = STATE(360), - [sym_subparagraph] = STATE(360), - [sym_enum_item] = STATE(360), - [sym_brace_group] = STATE(360), - [sym_mixed_group] = STATE(360), - [sym_text] = STATE(360), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(360), - [sym_inline_formula] = STATE(360), - [sym_begin] = STATE(105), - [sym_environment] = STATE(360), - [sym_caption] = STATE(360), - [sym_citation] = STATE(360), - [sym_package_include] = STATE(360), - [sym_class_include] = STATE(360), - [sym_latex_include] = STATE(360), - [sym_latex_input] = STATE(360), - [sym_biblatex_include] = STATE(360), - [sym_bibtex_include] = STATE(360), - [sym_graphics_include] = STATE(360), - [sym_svg_include] = STATE(360), - [sym_inkscape_include] = STATE(360), - [sym_verbatim_include] = STATE(360), - [sym_import] = STATE(360), - [sym_label_definition] = STATE(360), - [sym_label_reference] = STATE(360), - [sym_equation_label_reference] = STATE(360), - [sym_label_reference_range] = STATE(360), - [sym_label_number] = STATE(360), - [sym_command_definition] = STATE(360), - [sym_math_operator] = STATE(360), - [sym_glossary_entry_definition] = STATE(360), - [sym_glossary_entry_reference] = STATE(360), - [sym_acronym_definition] = STATE(360), - [sym_acronym_reference] = STATE(360), - [sym_theorem_definition] = STATE(360), - [sym_color_reference] = STATE(360), - [sym_color_definition] = STATE(360), - [sym_color_set_definition] = STATE(360), - [sym_pgf_library_import] = STATE(360), - [sym_tikz_library_import] = STATE(360), - [sym_generic_command] = STATE(360), - [aux_sym_subsubsection_repeat1] = STATE(360), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(3382), - [aux_sym_subsubsection_token1] = ACTIONS(3382), - [aux_sym_paragraph_token1] = ACTIONS(5864), - [aux_sym_subparagraph_token1] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(7539), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [376] = { - [sym__simple_content] = STATE(376), - [sym_enum_item] = STATE(376), - [sym_brace_group] = STATE(376), - [sym_mixed_group] = STATE(376), - [sym_text] = STATE(376), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(376), - [sym_inline_formula] = STATE(376), - [sym_begin] = STATE(73), - [sym_environment] = STATE(376), - [sym_caption] = STATE(376), - [sym_citation] = STATE(376), - [sym_package_include] = STATE(376), - [sym_class_include] = STATE(376), - [sym_latex_include] = STATE(376), - [sym_latex_input] = STATE(376), - [sym_biblatex_include] = STATE(376), - [sym_bibtex_include] = STATE(376), - [sym_graphics_include] = STATE(376), - [sym_svg_include] = STATE(376), - [sym_inkscape_include] = STATE(376), - [sym_verbatim_include] = STATE(376), - [sym_import] = STATE(376), - [sym_label_definition] = STATE(376), - [sym_label_reference] = STATE(376), - [sym_equation_label_reference] = STATE(376), - [sym_label_reference_range] = STATE(376), - [sym_label_number] = STATE(376), - [sym_command_definition] = STATE(376), - [sym_math_operator] = STATE(376), - [sym_glossary_entry_definition] = STATE(376), - [sym_glossary_entry_reference] = STATE(376), - [sym_acronym_definition] = STATE(376), - [sym_acronym_reference] = STATE(376), - [sym_theorem_definition] = STATE(376), - [sym_color_reference] = STATE(376), - [sym_color_definition] = STATE(376), - [sym_color_set_definition] = STATE(376), - [sym_pgf_library_import] = STATE(376), - [sym_tikz_library_import] = STATE(376), - [sym_generic_command] = STATE(376), - [aux_sym_subparagraph_repeat1] = STATE(376), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(7541), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5069), - [aux_sym_chapter_token1] = ACTIONS(5069), - [aux_sym_section_token1] = ACTIONS(5069), - [aux_sym_subsection_token1] = ACTIONS(5069), - [aux_sym_subsubsection_token1] = ACTIONS(5069), - [aux_sym_paragraph_token1] = ACTIONS(5069), - [aux_sym_subparagraph_token1] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(7544), - [anon_sym_LBRACK] = ACTIONS(7547), - [anon_sym_LBRACE] = ACTIONS(7550), - [anon_sym_LPAREN] = ACTIONS(7547), - [anon_sym_COMMA] = ACTIONS(7553), - [anon_sym_EQ] = ACTIONS(7553), - [sym_word] = ACTIONS(7553), - [sym_param] = ACTIONS(7556), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7559), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7559), - [anon_sym_DOLLAR] = ACTIONS(7562), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7565), - [anon_sym_BSLASHbegin] = ACTIONS(5095), - [anon_sym_BSLASHend] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(7568), - [aux_sym_citation_token1] = ACTIONS(7571), - [aux_sym_package_include_token1] = ACTIONS(7574), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7577), - [aux_sym_latex_include_token1] = ACTIONS(7580), - [aux_sym_latex_input_token1] = ACTIONS(7583), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7586), - [anon_sym_BSLASHbibliography] = ACTIONS(7589), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7592), - [anon_sym_BSLASHincludesvg] = ACTIONS(7595), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7598), - [aux_sym_verbatim_include_token1] = ACTIONS(7601), - [aux_sym_import_token1] = ACTIONS(7604), - [anon_sym_BSLASHlabel] = ACTIONS(7607), - [aux_sym_label_reference_token1] = ACTIONS(7610), - [anon_sym_BSLASHeqref] = ACTIONS(7613), - [aux_sym_label_reference_range_token1] = ACTIONS(7616), - [anon_sym_BSLASHnewlabel] = ACTIONS(7619), - [aux_sym_command_definition_token1] = ACTIONS(7622), - [aux_sym_math_operator_token1] = ACTIONS(7625), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7628), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7631), - [anon_sym_BSLASHnewacronym] = ACTIONS(7634), - [aux_sym_acronym_reference_token1] = ACTIONS(7637), - [aux_sym_theorem_definition_token1] = ACTIONS(7640), - [aux_sym_color_reference_token1] = ACTIONS(7643), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7646), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7649), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7652), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7655), - }, - [377] = { - [sym__simple_content] = STATE(377), - [sym_paragraph] = STATE(377), - [sym_subparagraph] = STATE(377), - [sym_enum_item] = STATE(377), - [sym_brace_group] = STATE(377), - [sym_mixed_group] = STATE(377), - [sym_text] = STATE(377), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(377), - [sym_inline_formula] = STATE(377), - [sym_begin] = STATE(105), - [sym_environment] = STATE(377), - [sym_caption] = STATE(377), - [sym_citation] = STATE(377), - [sym_package_include] = STATE(377), - [sym_class_include] = STATE(377), - [sym_latex_include] = STATE(377), - [sym_latex_input] = STATE(377), - [sym_biblatex_include] = STATE(377), - [sym_bibtex_include] = STATE(377), - [sym_graphics_include] = STATE(377), - [sym_svg_include] = STATE(377), - [sym_inkscape_include] = STATE(377), - [sym_verbatim_include] = STATE(377), - [sym_import] = STATE(377), - [sym_label_definition] = STATE(377), - [sym_label_reference] = STATE(377), - [sym_equation_label_reference] = STATE(377), - [sym_label_reference_range] = STATE(377), - [sym_label_number] = STATE(377), - [sym_command_definition] = STATE(377), - [sym_math_operator] = STATE(377), - [sym_glossary_entry_definition] = STATE(377), - [sym_glossary_entry_reference] = STATE(377), - [sym_acronym_definition] = STATE(377), - [sym_acronym_reference] = STATE(377), - [sym_theorem_definition] = STATE(377), - [sym_color_reference] = STATE(377), - [sym_color_definition] = STATE(377), - [sym_color_set_definition] = STATE(377), - [sym_pgf_library_import] = STATE(377), - [sym_tikz_library_import] = STATE(377), - [sym_generic_command] = STATE(377), - [aux_sym_subsubsection_repeat1] = STATE(377), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(7658), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(3117), - [aux_sym_subsubsection_token1] = ACTIONS(3117), - [aux_sym_paragraph_token1] = ACTIONS(7661), - [aux_sym_subparagraph_token1] = ACTIONS(7664), - [anon_sym_BSLASHitem] = ACTIONS(7667), - [anon_sym_LBRACK] = ACTIONS(7670), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(7673), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(7670), - [anon_sym_COMMA] = ACTIONS(7676), - [anon_sym_EQ] = ACTIONS(7676), - [sym_word] = ACTIONS(7676), - [sym_param] = ACTIONS(7679), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7682), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7682), - [anon_sym_DOLLAR] = ACTIONS(7685), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7688), - [anon_sym_BSLASHbegin] = ACTIONS(3149), - [anon_sym_BSLASHcaption] = ACTIONS(7691), - [aux_sym_citation_token1] = ACTIONS(7694), - [aux_sym_package_include_token1] = ACTIONS(7697), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7700), - [aux_sym_latex_include_token1] = ACTIONS(7703), - [aux_sym_latex_input_token1] = ACTIONS(7706), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7709), - [anon_sym_BSLASHbibliography] = ACTIONS(7712), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7715), - [anon_sym_BSLASHincludesvg] = ACTIONS(7718), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7721), - [aux_sym_verbatim_include_token1] = ACTIONS(7724), - [aux_sym_import_token1] = ACTIONS(7727), - [anon_sym_BSLASHlabel] = ACTIONS(7730), - [aux_sym_label_reference_token1] = ACTIONS(7733), - [anon_sym_BSLASHeqref] = ACTIONS(7736), - [aux_sym_label_reference_range_token1] = ACTIONS(7739), - [anon_sym_BSLASHnewlabel] = ACTIONS(7742), - [aux_sym_command_definition_token1] = ACTIONS(7745), - [aux_sym_math_operator_token1] = ACTIONS(7748), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7751), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7754), - [anon_sym_BSLASHnewacronym] = ACTIONS(7757), - [aux_sym_acronym_reference_token1] = ACTIONS(7760), - [aux_sym_theorem_definition_token1] = ACTIONS(7763), - [aux_sym_color_reference_token1] = ACTIONS(7766), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7769), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7772), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7775), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7778), - }, - [378] = { - [sym__simple_content] = STATE(369), - [sym_subsubsection] = STATE(369), - [sym_paragraph] = STATE(369), - [sym_subparagraph] = STATE(369), - [sym_enum_item] = STATE(369), - [sym_brace_group] = STATE(369), - [sym_mixed_group] = STATE(369), - [sym_text] = STATE(369), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(369), - [sym_inline_formula] = STATE(369), - [sym_begin] = STATE(112), - [sym_environment] = STATE(369), - [sym_caption] = STATE(369), - [sym_citation] = STATE(369), - [sym_package_include] = STATE(369), - [sym_class_include] = STATE(369), - [sym_latex_include] = STATE(369), - [sym_latex_input] = STATE(369), - [sym_biblatex_include] = STATE(369), - [sym_bibtex_include] = STATE(369), - [sym_graphics_include] = STATE(369), - [sym_svg_include] = STATE(369), - [sym_inkscape_include] = STATE(369), - [sym_verbatim_include] = STATE(369), - [sym_import] = STATE(369), - [sym_label_definition] = STATE(369), - [sym_label_reference] = STATE(369), - [sym_equation_label_reference] = STATE(369), - [sym_label_reference_range] = STATE(369), - [sym_label_number] = STATE(369), - [sym_command_definition] = STATE(369), - [sym_math_operator] = STATE(369), - [sym_glossary_entry_definition] = STATE(369), - [sym_glossary_entry_reference] = STATE(369), - [sym_acronym_definition] = STATE(369), - [sym_acronym_reference] = STATE(369), - [sym_theorem_definition] = STATE(369), - [sym_color_reference] = STATE(369), - [sym_color_definition] = STATE(369), - [sym_color_set_definition] = STATE(369), - [sym_pgf_library_import] = STATE(369), - [sym_tikz_library_import] = STATE(369), - [sym_generic_command] = STATE(369), - [aux_sym_subsection_repeat1] = STATE(369), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(7080), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(7082), - [aux_sym_paragraph_token1] = ACTIONS(7084), - [aux_sym_subparagraph_token1] = ACTIONS(7086), - [anon_sym_BSLASHitem] = ACTIONS(7088), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(7094), - [sym_word] = ACTIONS(7094), - [sym_param] = ACTIONS(7781), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7098), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7098), - [anon_sym_DOLLAR] = ACTIONS(7100), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7102), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(7104), - [aux_sym_citation_token1] = ACTIONS(7106), - [aux_sym_package_include_token1] = ACTIONS(7108), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7110), - [aux_sym_latex_include_token1] = ACTIONS(7112), - [aux_sym_latex_input_token1] = ACTIONS(7114), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7116), - [anon_sym_BSLASHbibliography] = ACTIONS(7118), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7120), - [anon_sym_BSLASHincludesvg] = ACTIONS(7122), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7124), - [aux_sym_verbatim_include_token1] = ACTIONS(7126), - [aux_sym_import_token1] = ACTIONS(7128), - [anon_sym_BSLASHlabel] = ACTIONS(7130), - [aux_sym_label_reference_token1] = ACTIONS(7132), - [anon_sym_BSLASHeqref] = ACTIONS(7134), - [aux_sym_label_reference_range_token1] = ACTIONS(7136), - [anon_sym_BSLASHnewlabel] = ACTIONS(7138), - [aux_sym_command_definition_token1] = ACTIONS(7140), - [aux_sym_math_operator_token1] = ACTIONS(7142), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7144), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7146), - [anon_sym_BSLASHnewacronym] = ACTIONS(7148), - [aux_sym_acronym_reference_token1] = ACTIONS(7150), - [aux_sym_theorem_definition_token1] = ACTIONS(7152), - [aux_sym_color_reference_token1] = ACTIONS(7154), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7156), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7160), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7162), - }, - [379] = { - [sym__simple_content] = STATE(367), - [sym_enum_item] = STATE(367), - [sym_brace_group] = STATE(367), - [sym_mixed_group] = STATE(367), - [sym_text] = STATE(367), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(367), - [sym_inline_formula] = STATE(367), - [sym_begin] = STATE(86), - [sym_environment] = STATE(367), - [sym_caption] = STATE(367), - [sym_citation] = STATE(367), - [sym_package_include] = STATE(367), - [sym_class_include] = STATE(367), - [sym_latex_include] = STATE(367), - [sym_latex_input] = STATE(367), - [sym_biblatex_include] = STATE(367), - [sym_bibtex_include] = STATE(367), - [sym_graphics_include] = STATE(367), - [sym_svg_include] = STATE(367), - [sym_inkscape_include] = STATE(367), - [sym_verbatim_include] = STATE(367), - [sym_import] = STATE(367), - [sym_label_definition] = STATE(367), - [sym_label_reference] = STATE(367), - [sym_equation_label_reference] = STATE(367), - [sym_label_reference_range] = STATE(367), - [sym_label_number] = STATE(367), - [sym_command_definition] = STATE(367), - [sym_math_operator] = STATE(367), - [sym_glossary_entry_definition] = STATE(367), - [sym_glossary_entry_reference] = STATE(367), - [sym_acronym_definition] = STATE(367), - [sym_acronym_reference] = STATE(367), - [sym_theorem_definition] = STATE(367), - [sym_color_reference] = STATE(367), - [sym_color_definition] = STATE(367), - [sym_color_set_definition] = STATE(367), - [sym_pgf_library_import] = STATE(367), - [sym_tikz_library_import] = STATE(367), - [sym_generic_command] = STATE(367), - [aux_sym_subparagraph_repeat1] = STATE(367), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(4543), - [aux_sym_section_token1] = ACTIONS(4543), - [aux_sym_subsection_token1] = ACTIONS(4543), - [aux_sym_subsubsection_token1] = ACTIONS(4543), - [aux_sym_paragraph_token1] = ACTIONS(4543), - [aux_sym_subparagraph_token1] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(7783), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [380] = { - [sym__simple_content] = STATE(380), - [sym_enum_item] = STATE(380), - [sym_brace_group] = STATE(380), - [sym_mixed_group] = STATE(380), - [sym_text] = STATE(380), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(380), - [sym_inline_formula] = STATE(380), - [sym_begin] = STATE(86), - [sym_environment] = STATE(380), - [sym_caption] = STATE(380), - [sym_citation] = STATE(380), - [sym_package_include] = STATE(380), - [sym_class_include] = STATE(380), - [sym_latex_include] = STATE(380), - [sym_latex_input] = STATE(380), - [sym_biblatex_include] = STATE(380), - [sym_bibtex_include] = STATE(380), - [sym_graphics_include] = STATE(380), - [sym_svg_include] = STATE(380), - [sym_inkscape_include] = STATE(380), - [sym_verbatim_include] = STATE(380), - [sym_import] = STATE(380), - [sym_label_definition] = STATE(380), - [sym_label_reference] = STATE(380), - [sym_equation_label_reference] = STATE(380), - [sym_label_reference_range] = STATE(380), - [sym_label_number] = STATE(380), - [sym_command_definition] = STATE(380), - [sym_math_operator] = STATE(380), - [sym_glossary_entry_definition] = STATE(380), - [sym_glossary_entry_reference] = STATE(380), - [sym_acronym_definition] = STATE(380), - [sym_acronym_reference] = STATE(380), - [sym_theorem_definition] = STATE(380), - [sym_color_reference] = STATE(380), - [sym_color_definition] = STATE(380), - [sym_color_set_definition] = STATE(380), - [sym_pgf_library_import] = STATE(380), - [sym_tikz_library_import] = STATE(380), - [sym_generic_command] = STATE(380), - [aux_sym_subparagraph_repeat1] = STATE(380), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(7785), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(5069), - [aux_sym_section_token1] = ACTIONS(5069), - [aux_sym_subsection_token1] = ACTIONS(5069), - [aux_sym_subsubsection_token1] = ACTIONS(5069), - [aux_sym_paragraph_token1] = ACTIONS(5069), - [aux_sym_subparagraph_token1] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(7788), - [anon_sym_LBRACK] = ACTIONS(7791), - [anon_sym_RBRACK] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(7794), - [anon_sym_RBRACE] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7797), - [anon_sym_EQ] = ACTIONS(7797), - [sym_word] = ACTIONS(7797), - [sym_param] = ACTIONS(7800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7803), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7803), - [anon_sym_DOLLAR] = ACTIONS(7806), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7809), - [anon_sym_BSLASHbegin] = ACTIONS(5095), - [anon_sym_BSLASHcaption] = ACTIONS(7812), - [aux_sym_citation_token1] = ACTIONS(7815), - [aux_sym_package_include_token1] = ACTIONS(7818), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7821), - [aux_sym_latex_include_token1] = ACTIONS(7824), - [aux_sym_latex_input_token1] = ACTIONS(7827), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7830), - [anon_sym_BSLASHbibliography] = ACTIONS(7833), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7836), - [anon_sym_BSLASHincludesvg] = ACTIONS(7839), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7842), - [aux_sym_verbatim_include_token1] = ACTIONS(7845), - [aux_sym_import_token1] = ACTIONS(7848), - [anon_sym_BSLASHlabel] = ACTIONS(7851), - [aux_sym_label_reference_token1] = ACTIONS(7854), - [anon_sym_BSLASHeqref] = ACTIONS(7857), - [aux_sym_label_reference_range_token1] = ACTIONS(7860), - [anon_sym_BSLASHnewlabel] = ACTIONS(7863), - [aux_sym_command_definition_token1] = ACTIONS(7866), - [aux_sym_math_operator_token1] = ACTIONS(7869), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7872), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7875), - [anon_sym_BSLASHnewacronym] = ACTIONS(7878), - [aux_sym_acronym_reference_token1] = ACTIONS(7881), - [aux_sym_theorem_definition_token1] = ACTIONS(7884), - [aux_sym_color_reference_token1] = ACTIONS(7887), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7890), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7893), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7896), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7899), - }, - [381] = { - [sym__simple_content] = STATE(404), - [sym_brace_group] = STATE(404), - [sym_mixed_group] = STATE(404), - [sym_text] = STATE(404), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(404), - [sym_inline_formula] = STATE(404), - [sym_begin] = STATE(66), - [sym_environment] = STATE(404), - [sym_caption] = STATE(404), - [sym_citation] = STATE(404), - [sym_package_include] = STATE(404), - [sym_class_include] = STATE(404), - [sym_latex_include] = STATE(404), - [sym_latex_input] = STATE(404), - [sym_biblatex_include] = STATE(404), - [sym_bibtex_include] = STATE(404), - [sym_graphics_include] = STATE(404), - [sym_svg_include] = STATE(404), - [sym_inkscape_include] = STATE(404), - [sym_verbatim_include] = STATE(404), - [sym_import] = STATE(404), - [sym_label_definition] = STATE(404), - [sym_label_reference] = STATE(404), - [sym_equation_label_reference] = STATE(404), - [sym_label_reference_range] = STATE(404), - [sym_label_number] = STATE(404), - [sym_command_definition] = STATE(404), - [sym_math_operator] = STATE(404), - [sym_glossary_entry_definition] = STATE(404), - [sym_glossary_entry_reference] = STATE(404), - [sym_acronym_definition] = STATE(404), - [sym_acronym_reference] = STATE(404), - [sym_theorem_definition] = STATE(404), - [sym_color_reference] = STATE(404), - [sym_color_definition] = STATE(404), - [sym_color_set_definition] = STATE(404), - [sym_pgf_library_import] = STATE(404), - [sym_tikz_library_import] = STATE(404), - [sym_generic_command] = STATE(404), - [aux_sym_enum_item_repeat1] = STATE(404), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5204), - [aux_sym_chapter_token1] = ACTIONS(5204), - [aux_sym_section_token1] = ACTIONS(5204), - [aux_sym_subsection_token1] = ACTIONS(5204), - [aux_sym_subsubsection_token1] = ACTIONS(5204), - [aux_sym_paragraph_token1] = ACTIONS(5204), - [aux_sym_subparagraph_token1] = ACTIONS(5204), - [anon_sym_BSLASHitem] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(7902), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5202), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [382] = { - [sym__simple_content] = STATE(382), - [sym_brace_group] = STATE(382), - [sym_mixed_group] = STATE(382), - [sym_text] = STATE(382), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(382), - [sym_inline_formula] = STATE(382), - [sym_begin] = STATE(73), - [sym_environment] = STATE(382), - [sym_caption] = STATE(382), - [sym_citation] = STATE(382), - [sym_package_include] = STATE(382), - [sym_class_include] = STATE(382), - [sym_latex_include] = STATE(382), - [sym_latex_input] = STATE(382), - [sym_biblatex_include] = STATE(382), - [sym_bibtex_include] = STATE(382), - [sym_graphics_include] = STATE(382), - [sym_svg_include] = STATE(382), - [sym_inkscape_include] = STATE(382), - [sym_verbatim_include] = STATE(382), - [sym_import] = STATE(382), - [sym_label_definition] = STATE(382), - [sym_label_reference] = STATE(382), - [sym_equation_label_reference] = STATE(382), - [sym_label_reference_range] = STATE(382), - [sym_label_number] = STATE(382), - [sym_command_definition] = STATE(382), - [sym_math_operator] = STATE(382), - [sym_glossary_entry_definition] = STATE(382), - [sym_glossary_entry_reference] = STATE(382), - [sym_acronym_definition] = STATE(382), - [sym_acronym_reference] = STATE(382), - [sym_theorem_definition] = STATE(382), - [sym_color_reference] = STATE(382), - [sym_color_definition] = STATE(382), - [sym_color_set_definition] = STATE(382), - [sym_pgf_library_import] = STATE(382), - [sym_tikz_library_import] = STATE(382), - [sym_generic_command] = STATE(382), - [aux_sym_enum_item_repeat1] = STATE(382), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(7904), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5613), - [aux_sym_chapter_token1] = ACTIONS(5613), - [aux_sym_section_token1] = ACTIONS(5613), - [aux_sym_subsection_token1] = ACTIONS(5613), - [aux_sym_subsubsection_token1] = ACTIONS(5613), - [aux_sym_paragraph_token1] = ACTIONS(5613), - [aux_sym_subparagraph_token1] = ACTIONS(5613), - [anon_sym_BSLASHitem] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(7907), - [anon_sym_LBRACE] = ACTIONS(7910), - [anon_sym_LPAREN] = ACTIONS(7907), - [anon_sym_COMMA] = ACTIONS(7913), - [anon_sym_EQ] = ACTIONS(7913), - [sym_word] = ACTIONS(7913), - [sym_param] = ACTIONS(7916), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7919), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7919), - [anon_sym_DOLLAR] = ACTIONS(7922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7925), - [anon_sym_BSLASHbegin] = ACTIONS(5636), - [anon_sym_BSLASHend] = ACTIONS(5613), - [anon_sym_BSLASHcaption] = ACTIONS(7928), - [aux_sym_citation_token1] = ACTIONS(7931), - [aux_sym_package_include_token1] = ACTIONS(7934), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7937), - [aux_sym_latex_include_token1] = ACTIONS(7940), - [aux_sym_latex_input_token1] = ACTIONS(7943), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7946), - [anon_sym_BSLASHbibliography] = ACTIONS(7949), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7952), - [anon_sym_BSLASHincludesvg] = ACTIONS(7955), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7958), - [aux_sym_verbatim_include_token1] = ACTIONS(7961), - [aux_sym_import_token1] = ACTIONS(7964), - [anon_sym_BSLASHlabel] = ACTIONS(7967), - [aux_sym_label_reference_token1] = ACTIONS(7970), - [anon_sym_BSLASHeqref] = ACTIONS(7973), - [aux_sym_label_reference_range_token1] = ACTIONS(7976), - [anon_sym_BSLASHnewlabel] = ACTIONS(7979), - [aux_sym_command_definition_token1] = ACTIONS(7982), - [aux_sym_math_operator_token1] = ACTIONS(7985), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7988), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7991), - [anon_sym_BSLASHnewacronym] = ACTIONS(7994), - [aux_sym_acronym_reference_token1] = ACTIONS(7997), - [aux_sym_theorem_definition_token1] = ACTIONS(8000), - [aux_sym_color_reference_token1] = ACTIONS(8003), - [anon_sym_BSLASHdefinecolor] = ACTIONS(8006), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(8009), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(8012), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8015), - }, - [383] = { - [sym__simple_content] = STATE(392), - [sym_paragraph] = STATE(392), - [sym_subparagraph] = STATE(392), - [sym_enum_item] = STATE(392), - [sym_brace_group] = STATE(392), - [sym_mixed_group] = STATE(392), - [sym_text] = STATE(392), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(392), - [sym_inline_formula] = STATE(392), - [sym_begin] = STATE(112), - [sym_environment] = STATE(392), - [sym_caption] = STATE(392), - [sym_citation] = STATE(392), - [sym_package_include] = STATE(392), - [sym_class_include] = STATE(392), - [sym_latex_include] = STATE(392), - [sym_latex_input] = STATE(392), - [sym_biblatex_include] = STATE(392), - [sym_bibtex_include] = STATE(392), - [sym_graphics_include] = STATE(392), - [sym_svg_include] = STATE(392), - [sym_inkscape_include] = STATE(392), - [sym_verbatim_include] = STATE(392), - [sym_import] = STATE(392), - [sym_label_definition] = STATE(392), - [sym_label_reference] = STATE(392), - [sym_equation_label_reference] = STATE(392), - [sym_label_reference_range] = STATE(392), - [sym_label_number] = STATE(392), - [sym_command_definition] = STATE(392), - [sym_math_operator] = STATE(392), - [sym_glossary_entry_definition] = STATE(392), - [sym_glossary_entry_reference] = STATE(392), - [sym_acronym_definition] = STATE(392), - [sym_acronym_reference] = STATE(392), - [sym_theorem_definition] = STATE(392), - [sym_color_reference] = STATE(392), - [sym_color_definition] = STATE(392), - [sym_color_set_definition] = STATE(392), - [sym_pgf_library_import] = STATE(392), - [sym_tikz_library_import] = STATE(392), - [sym_generic_command] = STATE(392), - [aux_sym_subsubsection_repeat1] = STATE(392), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(7080), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(2836), - [aux_sym_paragraph_token1] = ACTIONS(7084), - [aux_sym_subparagraph_token1] = ACTIONS(7086), - [anon_sym_BSLASHitem] = ACTIONS(7088), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(7094), - [sym_word] = ACTIONS(7094), - [sym_param] = ACTIONS(8018), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7098), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7098), - [anon_sym_DOLLAR] = ACTIONS(7100), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7102), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(7104), - [aux_sym_citation_token1] = ACTIONS(7106), - [aux_sym_package_include_token1] = ACTIONS(7108), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7110), - [aux_sym_latex_include_token1] = ACTIONS(7112), - [aux_sym_latex_input_token1] = ACTIONS(7114), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7116), - [anon_sym_BSLASHbibliography] = ACTIONS(7118), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7120), - [anon_sym_BSLASHincludesvg] = ACTIONS(7122), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7124), - [aux_sym_verbatim_include_token1] = ACTIONS(7126), - [aux_sym_import_token1] = ACTIONS(7128), - [anon_sym_BSLASHlabel] = ACTIONS(7130), - [aux_sym_label_reference_token1] = ACTIONS(7132), - [anon_sym_BSLASHeqref] = ACTIONS(7134), - [aux_sym_label_reference_range_token1] = ACTIONS(7136), - [anon_sym_BSLASHnewlabel] = ACTIONS(7138), - [aux_sym_command_definition_token1] = ACTIONS(7140), - [aux_sym_math_operator_token1] = ACTIONS(7142), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7144), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7146), - [anon_sym_BSLASHnewacronym] = ACTIONS(7148), - [aux_sym_acronym_reference_token1] = ACTIONS(7150), - [aux_sym_theorem_definition_token1] = ACTIONS(7152), - [aux_sym_color_reference_token1] = ACTIONS(7154), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7156), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7160), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7162), - }, - [384] = { - [sym__simple_content] = STATE(401), - [sym_brace_group] = STATE(401), - [sym_mixed_group] = STATE(401), - [sym_text] = STATE(401), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(401), - [sym_inline_formula] = STATE(401), - [sym_begin] = STATE(86), - [sym_environment] = STATE(401), - [sym_caption] = STATE(401), - [sym_citation] = STATE(401), - [sym_package_include] = STATE(401), - [sym_class_include] = STATE(401), - [sym_latex_include] = STATE(401), - [sym_latex_input] = STATE(401), - [sym_biblatex_include] = STATE(401), - [sym_bibtex_include] = STATE(401), - [sym_graphics_include] = STATE(401), - [sym_svg_include] = STATE(401), - [sym_inkscape_include] = STATE(401), - [sym_verbatim_include] = STATE(401), - [sym_import] = STATE(401), - [sym_label_definition] = STATE(401), - [sym_label_reference] = STATE(401), - [sym_equation_label_reference] = STATE(401), - [sym_label_reference_range] = STATE(401), - [sym_label_number] = STATE(401), - [sym_command_definition] = STATE(401), - [sym_math_operator] = STATE(401), - [sym_glossary_entry_definition] = STATE(401), - [sym_glossary_entry_reference] = STATE(401), - [sym_acronym_definition] = STATE(401), - [sym_acronym_reference] = STATE(401), - [sym_theorem_definition] = STATE(401), - [sym_color_reference] = STATE(401), - [sym_color_definition] = STATE(401), - [sym_color_set_definition] = STATE(401), - [sym_pgf_library_import] = STATE(401), - [sym_tikz_library_import] = STATE(401), - [sym_generic_command] = STATE(401), - [aux_sym_enum_item_repeat1] = STATE(401), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(5733), - [aux_sym_section_token1] = ACTIONS(5733), - [aux_sym_subsection_token1] = ACTIONS(5733), - [aux_sym_subsubsection_token1] = ACTIONS(5733), - [aux_sym_paragraph_token1] = ACTIONS(5733), - [aux_sym_subparagraph_token1] = ACTIONS(5733), - [anon_sym_BSLASHitem] = ACTIONS(5733), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(5731), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(8020), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [385] = { - [sym__simple_content] = STATE(396), - [sym_brace_group] = STATE(396), - [sym_mixed_group] = STATE(396), - [sym_text] = STATE(396), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(396), - [sym_inline_formula] = STATE(396), - [sym_begin] = STATE(59), - [sym_environment] = STATE(396), - [sym_caption] = STATE(396), - [sym_citation] = STATE(396), - [sym_package_include] = STATE(396), - [sym_class_include] = STATE(396), - [sym_latex_include] = STATE(396), - [sym_latex_input] = STATE(396), - [sym_biblatex_include] = STATE(396), - [sym_bibtex_include] = STATE(396), - [sym_graphics_include] = STATE(396), - [sym_svg_include] = STATE(396), - [sym_inkscape_include] = STATE(396), - [sym_verbatim_include] = STATE(396), - [sym_import] = STATE(396), - [sym_label_definition] = STATE(396), - [sym_label_reference] = STATE(396), - [sym_equation_label_reference] = STATE(396), - [sym_label_reference_range] = STATE(396), - [sym_label_number] = STATE(396), - [sym_command_definition] = STATE(396), - [sym_math_operator] = STATE(396), - [sym_glossary_entry_definition] = STATE(396), - [sym_glossary_entry_reference] = STATE(396), - [sym_acronym_definition] = STATE(396), - [sym_acronym_reference] = STATE(396), - [sym_theorem_definition] = STATE(396), - [sym_color_reference] = STATE(396), - [sym_color_definition] = STATE(396), - [sym_color_set_definition] = STATE(396), - [sym_pgf_library_import] = STATE(396), - [sym_tikz_library_import] = STATE(396), - [sym_generic_command] = STATE(396), - [aux_sym_enum_item_repeat1] = STATE(396), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5210), - [aux_sym_chapter_token1] = ACTIONS(5210), - [aux_sym_section_token1] = ACTIONS(5210), - [aux_sym_subsection_token1] = ACTIONS(5210), - [aux_sym_subsubsection_token1] = ACTIONS(5210), - [aux_sym_paragraph_token1] = ACTIONS(5210), - [aux_sym_subparagraph_token1] = ACTIONS(5210), - [anon_sym_BSLASHitem] = ACTIONS(5210), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(8022), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5208), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [386] = { - [sym__simple_content] = STATE(386), - [sym_brace_group] = STATE(386), - [sym_mixed_group] = STATE(386), - [sym_text] = STATE(386), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(386), - [sym_inline_formula] = STATE(386), - [sym_begin] = STATE(59), - [sym_environment] = STATE(386), - [sym_caption] = STATE(386), - [sym_citation] = STATE(386), - [sym_package_include] = STATE(386), - [sym_class_include] = STATE(386), - [sym_latex_include] = STATE(386), - [sym_latex_input] = STATE(386), - [sym_biblatex_include] = STATE(386), - [sym_bibtex_include] = STATE(386), - [sym_graphics_include] = STATE(386), - [sym_svg_include] = STATE(386), - [sym_inkscape_include] = STATE(386), - [sym_verbatim_include] = STATE(386), - [sym_import] = STATE(386), - [sym_label_definition] = STATE(386), - [sym_label_reference] = STATE(386), - [sym_equation_label_reference] = STATE(386), - [sym_label_reference_range] = STATE(386), - [sym_label_number] = STATE(386), - [sym_command_definition] = STATE(386), - [sym_math_operator] = STATE(386), - [sym_glossary_entry_definition] = STATE(386), - [sym_glossary_entry_reference] = STATE(386), - [sym_acronym_definition] = STATE(386), - [sym_acronym_reference] = STATE(386), - [sym_theorem_definition] = STATE(386), - [sym_color_reference] = STATE(386), - [sym_color_definition] = STATE(386), - [sym_color_set_definition] = STATE(386), - [sym_pgf_library_import] = STATE(386), - [sym_tikz_library_import] = STATE(386), - [sym_generic_command] = STATE(386), - [aux_sym_enum_item_repeat1] = STATE(386), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(8024), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5613), - [aux_sym_chapter_token1] = ACTIONS(5613), - [aux_sym_section_token1] = ACTIONS(5613), - [aux_sym_subsection_token1] = ACTIONS(5613), - [aux_sym_subsubsection_token1] = ACTIONS(5613), - [aux_sym_paragraph_token1] = ACTIONS(5613), - [aux_sym_subparagraph_token1] = ACTIONS(5613), - [anon_sym_BSLASHitem] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(8027), - [anon_sym_LBRACE] = ACTIONS(8030), - [anon_sym_LPAREN] = ACTIONS(8027), - [anon_sym_COMMA] = ACTIONS(8033), - [anon_sym_EQ] = ACTIONS(8033), - [sym_word] = ACTIONS(8033), - [sym_param] = ACTIONS(8036), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(8039), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5608), - [anon_sym_DOLLAR] = ACTIONS(8042), - [anon_sym_BSLASH_LPAREN] = ACTIONS(8045), - [anon_sym_BSLASHbegin] = ACTIONS(5636), - [anon_sym_BSLASHcaption] = ACTIONS(8048), - [aux_sym_citation_token1] = ACTIONS(8051), - [aux_sym_package_include_token1] = ACTIONS(8054), - [anon_sym_BSLASHdocumentclass] = ACTIONS(8057), - [aux_sym_latex_include_token1] = ACTIONS(8060), - [aux_sym_latex_input_token1] = ACTIONS(8063), - [anon_sym_BSLASHaddbibresource] = ACTIONS(8066), - [anon_sym_BSLASHbibliography] = ACTIONS(8069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(8072), - [anon_sym_BSLASHincludesvg] = ACTIONS(8075), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(8078), - [aux_sym_verbatim_include_token1] = ACTIONS(8081), - [aux_sym_import_token1] = ACTIONS(8084), - [anon_sym_BSLASHlabel] = ACTIONS(8087), - [aux_sym_label_reference_token1] = ACTIONS(8090), - [anon_sym_BSLASHeqref] = ACTIONS(8093), - [aux_sym_label_reference_range_token1] = ACTIONS(8096), - [anon_sym_BSLASHnewlabel] = ACTIONS(8099), - [aux_sym_command_definition_token1] = ACTIONS(8102), - [aux_sym_math_operator_token1] = ACTIONS(8105), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8108), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(8111), - [anon_sym_BSLASHnewacronym] = ACTIONS(8114), - [aux_sym_acronym_reference_token1] = ACTIONS(8117), - [aux_sym_theorem_definition_token1] = ACTIONS(8120), - [aux_sym_color_reference_token1] = ACTIONS(8123), - [anon_sym_BSLASHdefinecolor] = ACTIONS(8126), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(8129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(8132), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8135), - }, - [387] = { - [sym__simple_content] = STATE(387), - [sym_subparagraph] = STATE(387), - [sym_enum_item] = STATE(387), - [sym_brace_group] = STATE(387), - [sym_mixed_group] = STATE(387), - [sym_text] = STATE(387), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(387), - [sym_inline_formula] = STATE(387), - [sym_begin] = STATE(105), - [sym_environment] = STATE(387), - [sym_caption] = STATE(387), - [sym_citation] = STATE(387), - [sym_package_include] = STATE(387), - [sym_class_include] = STATE(387), - [sym_latex_include] = STATE(387), - [sym_latex_input] = STATE(387), - [sym_biblatex_include] = STATE(387), - [sym_bibtex_include] = STATE(387), - [sym_graphics_include] = STATE(387), - [sym_svg_include] = STATE(387), - [sym_inkscape_include] = STATE(387), - [sym_verbatim_include] = STATE(387), - [sym_import] = STATE(387), - [sym_label_definition] = STATE(387), - [sym_label_reference] = STATE(387), - [sym_equation_label_reference] = STATE(387), - [sym_label_reference_range] = STATE(387), - [sym_label_number] = STATE(387), - [sym_command_definition] = STATE(387), - [sym_math_operator] = STATE(387), - [sym_glossary_entry_definition] = STATE(387), - [sym_glossary_entry_reference] = STATE(387), - [sym_acronym_definition] = STATE(387), - [sym_acronym_reference] = STATE(387), - [sym_theorem_definition] = STATE(387), - [sym_color_reference] = STATE(387), - [sym_color_definition] = STATE(387), - [sym_color_set_definition] = STATE(387), - [sym_pgf_library_import] = STATE(387), - [sym_tikz_library_import] = STATE(387), - [sym_generic_command] = STATE(387), - [aux_sym_paragraph_repeat1] = STATE(387), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(8138), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(3889), - [aux_sym_subsubsection_token1] = ACTIONS(3889), - [aux_sym_paragraph_token1] = ACTIONS(3889), - [aux_sym_subparagraph_token1] = ACTIONS(8141), - [anon_sym_BSLASHitem] = ACTIONS(8144), - [anon_sym_LBRACK] = ACTIONS(8147), - [anon_sym_RBRACK] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(8150), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_LPAREN] = ACTIONS(8147), - [anon_sym_COMMA] = ACTIONS(8153), - [anon_sym_EQ] = ACTIONS(8153), - [sym_word] = ACTIONS(8153), - [sym_param] = ACTIONS(8156), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8159), - [anon_sym_BSLASH_LBRACK] = ACTIONS(8159), - [anon_sym_DOLLAR] = ACTIONS(8162), - [anon_sym_BSLASH_LPAREN] = ACTIONS(8165), - [anon_sym_BSLASHbegin] = ACTIONS(3918), - [anon_sym_BSLASHcaption] = ACTIONS(8168), - [aux_sym_citation_token1] = ACTIONS(8171), - [aux_sym_package_include_token1] = ACTIONS(8174), - [anon_sym_BSLASHdocumentclass] = ACTIONS(8177), - [aux_sym_latex_include_token1] = ACTIONS(8180), - [aux_sym_latex_input_token1] = ACTIONS(8183), - [anon_sym_BSLASHaddbibresource] = ACTIONS(8186), - [anon_sym_BSLASHbibliography] = ACTIONS(8189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(8192), - [anon_sym_BSLASHincludesvg] = ACTIONS(8195), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(8198), - [aux_sym_verbatim_include_token1] = ACTIONS(8201), - [aux_sym_import_token1] = ACTIONS(8204), - [anon_sym_BSLASHlabel] = ACTIONS(8207), - [aux_sym_label_reference_token1] = ACTIONS(8210), - [anon_sym_BSLASHeqref] = ACTIONS(8213), - [aux_sym_label_reference_range_token1] = ACTIONS(8216), - [anon_sym_BSLASHnewlabel] = ACTIONS(8219), - [aux_sym_command_definition_token1] = ACTIONS(8222), - [aux_sym_math_operator_token1] = ACTIONS(8225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8228), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(8231), - [anon_sym_BSLASHnewacronym] = ACTIONS(8234), - [aux_sym_acronym_reference_token1] = ACTIONS(8237), - [aux_sym_theorem_definition_token1] = ACTIONS(8240), - [aux_sym_color_reference_token1] = ACTIONS(8243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(8246), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(8249), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(8252), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8255), - }, - [388] = { - [sym__simple_content] = STATE(401), - [sym_brace_group] = STATE(401), - [sym_mixed_group] = STATE(401), - [sym_text] = STATE(401), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(401), - [sym_inline_formula] = STATE(401), - [sym_begin] = STATE(86), - [sym_environment] = STATE(401), - [sym_caption] = STATE(401), - [sym_citation] = STATE(401), - [sym_package_include] = STATE(401), - [sym_class_include] = STATE(401), - [sym_latex_include] = STATE(401), - [sym_latex_input] = STATE(401), - [sym_biblatex_include] = STATE(401), - [sym_bibtex_include] = STATE(401), - [sym_graphics_include] = STATE(401), - [sym_svg_include] = STATE(401), - [sym_inkscape_include] = STATE(401), - [sym_verbatim_include] = STATE(401), - [sym_import] = STATE(401), - [sym_label_definition] = STATE(401), - [sym_label_reference] = STATE(401), - [sym_equation_label_reference] = STATE(401), - [sym_label_reference_range] = STATE(401), - [sym_label_number] = STATE(401), - [sym_command_definition] = STATE(401), - [sym_math_operator] = STATE(401), - [sym_glossary_entry_definition] = STATE(401), - [sym_glossary_entry_reference] = STATE(401), - [sym_acronym_definition] = STATE(401), - [sym_acronym_reference] = STATE(401), - [sym_theorem_definition] = STATE(401), - [sym_color_reference] = STATE(401), - [sym_color_definition] = STATE(401), - [sym_color_set_definition] = STATE(401), - [sym_pgf_library_import] = STATE(401), - [sym_tikz_library_import] = STATE(401), - [sym_generic_command] = STATE(401), - [aux_sym_enum_item_repeat1] = STATE(401), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(5204), - [aux_sym_section_token1] = ACTIONS(5204), - [aux_sym_subsection_token1] = ACTIONS(5204), - [aux_sym_subsubsection_token1] = ACTIONS(5204), - [aux_sym_paragraph_token1] = ACTIONS(5204), - [aux_sym_subparagraph_token1] = ACTIONS(5204), - [anon_sym_BSLASHitem] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(8020), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [389] = { - [sym__simple_content] = STATE(384), - [sym_brace_group] = STATE(384), - [sym_mixed_group] = STATE(384), - [sym_text] = STATE(384), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(384), - [sym_inline_formula] = STATE(384), - [sym_begin] = STATE(86), - [sym_environment] = STATE(384), - [sym_caption] = STATE(384), - [sym_citation] = STATE(384), - [sym_package_include] = STATE(384), - [sym_class_include] = STATE(384), - [sym_latex_include] = STATE(384), - [sym_latex_input] = STATE(384), - [sym_biblatex_include] = STATE(384), - [sym_bibtex_include] = STATE(384), - [sym_graphics_include] = STATE(384), - [sym_svg_include] = STATE(384), - [sym_inkscape_include] = STATE(384), - [sym_verbatim_include] = STATE(384), - [sym_import] = STATE(384), - [sym_label_definition] = STATE(384), - [sym_label_reference] = STATE(384), - [sym_equation_label_reference] = STATE(384), - [sym_label_reference_range] = STATE(384), - [sym_label_number] = STATE(384), - [sym_command_definition] = STATE(384), - [sym_math_operator] = STATE(384), - [sym_glossary_entry_definition] = STATE(384), - [sym_glossary_entry_reference] = STATE(384), - [sym_acronym_definition] = STATE(384), - [sym_acronym_reference] = STATE(384), - [sym_theorem_definition] = STATE(384), - [sym_color_reference] = STATE(384), - [sym_color_definition] = STATE(384), - [sym_color_set_definition] = STATE(384), - [sym_pgf_library_import] = STATE(384), - [sym_tikz_library_import] = STATE(384), - [sym_generic_command] = STATE(384), - [aux_sym_enum_item_repeat1] = STATE(384), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(5210), - [aux_sym_section_token1] = ACTIONS(5210), - [aux_sym_subsection_token1] = ACTIONS(5210), - [aux_sym_subsubsection_token1] = ACTIONS(5210), - [aux_sym_paragraph_token1] = ACTIONS(5210), - [aux_sym_subparagraph_token1] = ACTIONS(5210), - [anon_sym_BSLASHitem] = ACTIONS(5210), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_RBRACK] = ACTIONS(5208), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(8258), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [390] = { - [sym__simple_content] = STATE(388), - [sym_brace_group] = STATE(388), - [sym_mixed_group] = STATE(388), - [sym_text] = STATE(388), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(388), - [sym_inline_formula] = STATE(388), - [sym_begin] = STATE(86), - [sym_environment] = STATE(388), - [sym_caption] = STATE(388), - [sym_citation] = STATE(388), - [sym_package_include] = STATE(388), - [sym_class_include] = STATE(388), - [sym_latex_include] = STATE(388), - [sym_latex_input] = STATE(388), - [sym_biblatex_include] = STATE(388), - [sym_bibtex_include] = STATE(388), - [sym_graphics_include] = STATE(388), - [sym_svg_include] = STATE(388), - [sym_inkscape_include] = STATE(388), - [sym_verbatim_include] = STATE(388), - [sym_import] = STATE(388), - [sym_label_definition] = STATE(388), - [sym_label_reference] = STATE(388), - [sym_equation_label_reference] = STATE(388), - [sym_label_reference_range] = STATE(388), - [sym_label_number] = STATE(388), - [sym_command_definition] = STATE(388), - [sym_math_operator] = STATE(388), - [sym_glossary_entry_definition] = STATE(388), - [sym_glossary_entry_reference] = STATE(388), - [sym_acronym_definition] = STATE(388), - [sym_acronym_reference] = STATE(388), - [sym_theorem_definition] = STATE(388), - [sym_color_reference] = STATE(388), - [sym_color_definition] = STATE(388), - [sym_color_set_definition] = STATE(388), - [sym_pgf_library_import] = STATE(388), - [sym_tikz_library_import] = STATE(388), - [sym_generic_command] = STATE(388), - [aux_sym_enum_item_repeat1] = STATE(388), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(2170), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(5602), - [aux_sym_section_token1] = ACTIONS(5602), - [aux_sym_subsection_token1] = ACTIONS(5602), - [aux_sym_subsubsection_token1] = ACTIONS(5602), - [aux_sym_paragraph_token1] = ACTIONS(5602), - [aux_sym_subparagraph_token1] = ACTIONS(5602), - [anon_sym_BSLASHitem] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(8260), - [anon_sym_RBRACK] = ACTIONS(5600), - [anon_sym_LBRACE] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(5600), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2190), - [sym_word] = ACTIONS(2190), - [sym_param] = ACTIONS(8262), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2194), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2196), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2198), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(2200), - [aux_sym_citation_token1] = ACTIONS(2202), - [aux_sym_package_include_token1] = ACTIONS(2204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2206), - [aux_sym_latex_include_token1] = ACTIONS(2208), - [aux_sym_latex_input_token1] = ACTIONS(2210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2212), - [anon_sym_BSLASHbibliography] = ACTIONS(2214), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2216), - [anon_sym_BSLASHincludesvg] = ACTIONS(2218), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2220), - [aux_sym_verbatim_include_token1] = ACTIONS(2222), - [aux_sym_import_token1] = ACTIONS(2224), - [anon_sym_BSLASHlabel] = ACTIONS(2226), - [aux_sym_label_reference_token1] = ACTIONS(2228), - [anon_sym_BSLASHeqref] = ACTIONS(2230), - [aux_sym_label_reference_range_token1] = ACTIONS(2232), - [anon_sym_BSLASHnewlabel] = ACTIONS(2234), - [aux_sym_command_definition_token1] = ACTIONS(2236), - [aux_sym_math_operator_token1] = ACTIONS(2238), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2240), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(2242), - [anon_sym_BSLASHnewacronym] = ACTIONS(2244), - [aux_sym_acronym_reference_token1] = ACTIONS(2246), - [aux_sym_theorem_definition_token1] = ACTIONS(2248), - [aux_sym_color_reference_token1] = ACTIONS(2250), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2252), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2256), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2258), - }, - [391] = { - [sym__simple_content] = STATE(404), - [sym_brace_group] = STATE(404), - [sym_mixed_group] = STATE(404), - [sym_text] = STATE(404), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(404), - [sym_inline_formula] = STATE(404), - [sym_begin] = STATE(66), - [sym_environment] = STATE(404), - [sym_caption] = STATE(404), - [sym_citation] = STATE(404), - [sym_package_include] = STATE(404), - [sym_class_include] = STATE(404), - [sym_latex_include] = STATE(404), - [sym_latex_input] = STATE(404), - [sym_biblatex_include] = STATE(404), - [sym_bibtex_include] = STATE(404), - [sym_graphics_include] = STATE(404), - [sym_svg_include] = STATE(404), - [sym_inkscape_include] = STATE(404), - [sym_verbatim_include] = STATE(404), - [sym_import] = STATE(404), - [sym_label_definition] = STATE(404), - [sym_label_reference] = STATE(404), - [sym_equation_label_reference] = STATE(404), - [sym_label_reference_range] = STATE(404), - [sym_label_number] = STATE(404), - [sym_command_definition] = STATE(404), - [sym_math_operator] = STATE(404), - [sym_glossary_entry_definition] = STATE(404), - [sym_glossary_entry_reference] = STATE(404), - [sym_acronym_definition] = STATE(404), - [sym_acronym_reference] = STATE(404), - [sym_theorem_definition] = STATE(404), - [sym_color_reference] = STATE(404), - [sym_color_definition] = STATE(404), - [sym_color_set_definition] = STATE(404), - [sym_pgf_library_import] = STATE(404), - [sym_tikz_library_import] = STATE(404), - [sym_generic_command] = STATE(404), - [aux_sym_enum_item_repeat1] = STATE(404), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5733), - [aux_sym_chapter_token1] = ACTIONS(5733), - [aux_sym_section_token1] = ACTIONS(5733), - [aux_sym_subsection_token1] = ACTIONS(5733), - [aux_sym_subsubsection_token1] = ACTIONS(5733), - [aux_sym_paragraph_token1] = ACTIONS(5733), - [aux_sym_subparagraph_token1] = ACTIONS(5733), - [anon_sym_BSLASHitem] = ACTIONS(5733), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(7902), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5731), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [392] = { - [sym__simple_content] = STATE(392), - [sym_paragraph] = STATE(392), - [sym_subparagraph] = STATE(392), - [sym_enum_item] = STATE(392), - [sym_brace_group] = STATE(392), - [sym_mixed_group] = STATE(392), - [sym_text] = STATE(392), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(392), - [sym_inline_formula] = STATE(392), - [sym_begin] = STATE(112), - [sym_environment] = STATE(392), - [sym_caption] = STATE(392), - [sym_citation] = STATE(392), - [sym_package_include] = STATE(392), - [sym_class_include] = STATE(392), - [sym_latex_include] = STATE(392), - [sym_latex_input] = STATE(392), - [sym_biblatex_include] = STATE(392), - [sym_bibtex_include] = STATE(392), - [sym_graphics_include] = STATE(392), - [sym_svg_include] = STATE(392), - [sym_inkscape_include] = STATE(392), - [sym_verbatim_include] = STATE(392), - [sym_import] = STATE(392), - [sym_label_definition] = STATE(392), - [sym_label_reference] = STATE(392), - [sym_equation_label_reference] = STATE(392), - [sym_label_reference_range] = STATE(392), - [sym_label_number] = STATE(392), - [sym_command_definition] = STATE(392), - [sym_math_operator] = STATE(392), - [sym_glossary_entry_definition] = STATE(392), - [sym_glossary_entry_reference] = STATE(392), - [sym_acronym_definition] = STATE(392), - [sym_acronym_reference] = STATE(392), - [sym_theorem_definition] = STATE(392), - [sym_color_reference] = STATE(392), - [sym_color_definition] = STATE(392), - [sym_color_set_definition] = STATE(392), - [sym_pgf_library_import] = STATE(392), - [sym_tikz_library_import] = STATE(392), - [sym_generic_command] = STATE(392), - [aux_sym_subsubsection_repeat1] = STATE(392), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(8264), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(3117), - [aux_sym_paragraph_token1] = ACTIONS(8267), - [aux_sym_subparagraph_token1] = ACTIONS(8270), - [anon_sym_BSLASHitem] = ACTIONS(8273), - [anon_sym_LBRACK] = ACTIONS(8276), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(8279), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(8276), - [anon_sym_COMMA] = ACTIONS(8282), - [anon_sym_EQ] = ACTIONS(8282), - [sym_word] = ACTIONS(8282), - [sym_param] = ACTIONS(8285), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8288), - [anon_sym_BSLASH_LBRACK] = ACTIONS(8288), - [anon_sym_DOLLAR] = ACTIONS(8291), - [anon_sym_BSLASH_LPAREN] = ACTIONS(8294), - [anon_sym_BSLASHbegin] = ACTIONS(3149), - [anon_sym_BSLASHcaption] = ACTIONS(8297), - [aux_sym_citation_token1] = ACTIONS(8300), - [aux_sym_package_include_token1] = ACTIONS(8303), - [anon_sym_BSLASHdocumentclass] = ACTIONS(8306), - [aux_sym_latex_include_token1] = ACTIONS(8309), - [aux_sym_latex_input_token1] = ACTIONS(8312), - [anon_sym_BSLASHaddbibresource] = ACTIONS(8315), - [anon_sym_BSLASHbibliography] = ACTIONS(8318), - [anon_sym_BSLASHincludegraphics] = ACTIONS(8321), - [anon_sym_BSLASHincludesvg] = ACTIONS(8324), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(8327), - [aux_sym_verbatim_include_token1] = ACTIONS(8330), - [aux_sym_import_token1] = ACTIONS(8333), - [anon_sym_BSLASHlabel] = ACTIONS(8336), - [aux_sym_label_reference_token1] = ACTIONS(8339), - [anon_sym_BSLASHeqref] = ACTIONS(8342), - [aux_sym_label_reference_range_token1] = ACTIONS(8345), - [anon_sym_BSLASHnewlabel] = ACTIONS(8348), - [aux_sym_command_definition_token1] = ACTIONS(8351), - [aux_sym_math_operator_token1] = ACTIONS(8354), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8357), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(8360), - [anon_sym_BSLASHnewacronym] = ACTIONS(8363), - [aux_sym_acronym_reference_token1] = ACTIONS(8366), - [aux_sym_theorem_definition_token1] = ACTIONS(8369), - [aux_sym_color_reference_token1] = ACTIONS(8372), - [anon_sym_BSLASHdefinecolor] = ACTIONS(8375), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(8378), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(8381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8384), - }, - [393] = { - [sym__simple_content] = STATE(387), - [sym_subparagraph] = STATE(387), - [sym_enum_item] = STATE(387), - [sym_brace_group] = STATE(387), - [sym_mixed_group] = STATE(387), - [sym_text] = STATE(387), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(387), - [sym_inline_formula] = STATE(387), - [sym_begin] = STATE(105), - [sym_environment] = STATE(387), - [sym_caption] = STATE(387), - [sym_citation] = STATE(387), - [sym_package_include] = STATE(387), - [sym_class_include] = STATE(387), - [sym_latex_include] = STATE(387), - [sym_latex_input] = STATE(387), - [sym_biblatex_include] = STATE(387), - [sym_bibtex_include] = STATE(387), - [sym_graphics_include] = STATE(387), - [sym_svg_include] = STATE(387), - [sym_inkscape_include] = STATE(387), - [sym_verbatim_include] = STATE(387), - [sym_import] = STATE(387), - [sym_label_definition] = STATE(387), - [sym_label_reference] = STATE(387), - [sym_equation_label_reference] = STATE(387), - [sym_label_reference_range] = STATE(387), - [sym_label_number] = STATE(387), - [sym_command_definition] = STATE(387), - [sym_math_operator] = STATE(387), - [sym_glossary_entry_definition] = STATE(387), - [sym_glossary_entry_reference] = STATE(387), - [sym_acronym_definition] = STATE(387), - [sym_acronym_reference] = STATE(387), - [sym_theorem_definition] = STATE(387), - [sym_color_reference] = STATE(387), - [sym_color_definition] = STATE(387), - [sym_color_set_definition] = STATE(387), - [sym_pgf_library_import] = STATE(387), - [sym_tikz_library_import] = STATE(387), - [sym_generic_command] = STATE(387), - [aux_sym_paragraph_repeat1] = STATE(387), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(3880), - [aux_sym_subsubsection_token1] = ACTIONS(3880), - [aux_sym_paragraph_token1] = ACTIONS(3880), - [aux_sym_subparagraph_token1] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(3878), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(3878), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(8387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [394] = { - [sym__simple_content] = STATE(393), - [sym_subparagraph] = STATE(393), - [sym_enum_item] = STATE(393), - [sym_brace_group] = STATE(393), - [sym_mixed_group] = STATE(393), - [sym_text] = STATE(393), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(393), - [sym_inline_formula] = STATE(393), - [sym_begin] = STATE(105), - [sym_environment] = STATE(393), - [sym_caption] = STATE(393), - [sym_citation] = STATE(393), - [sym_package_include] = STATE(393), - [sym_class_include] = STATE(393), - [sym_latex_include] = STATE(393), - [sym_latex_input] = STATE(393), - [sym_biblatex_include] = STATE(393), - [sym_bibtex_include] = STATE(393), - [sym_graphics_include] = STATE(393), - [sym_svg_include] = STATE(393), - [sym_inkscape_include] = STATE(393), - [sym_verbatim_include] = STATE(393), - [sym_import] = STATE(393), - [sym_label_definition] = STATE(393), - [sym_label_reference] = STATE(393), - [sym_equation_label_reference] = STATE(393), - [sym_label_reference_range] = STATE(393), - [sym_label_number] = STATE(393), - [sym_command_definition] = STATE(393), - [sym_math_operator] = STATE(393), - [sym_glossary_entry_definition] = STATE(393), - [sym_glossary_entry_reference] = STATE(393), - [sym_acronym_definition] = STATE(393), - [sym_acronym_reference] = STATE(393), - [sym_theorem_definition] = STATE(393), - [sym_color_reference] = STATE(393), - [sym_color_definition] = STATE(393), - [sym_color_set_definition] = STATE(393), - [sym_pgf_library_import] = STATE(393), - [sym_tikz_library_import] = STATE(393), - [sym_generic_command] = STATE(393), - [aux_sym_paragraph_repeat1] = STATE(393), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(3786), - [aux_sym_subsubsection_token1] = ACTIONS(3786), - [aux_sym_paragraph_token1] = ACTIONS(3786), - [aux_sym_subparagraph_token1] = ACTIONS(5866), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(3784), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(8389), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [395] = { - [sym__simple_content] = STATE(383), - [sym_paragraph] = STATE(383), - [sym_subparagraph] = STATE(383), - [sym_enum_item] = STATE(383), - [sym_brace_group] = STATE(383), - [sym_mixed_group] = STATE(383), - [sym_text] = STATE(383), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(383), - [sym_inline_formula] = STATE(383), - [sym_begin] = STATE(112), - [sym_environment] = STATE(383), - [sym_caption] = STATE(383), - [sym_citation] = STATE(383), - [sym_package_include] = STATE(383), - [sym_class_include] = STATE(383), - [sym_latex_include] = STATE(383), - [sym_latex_input] = STATE(383), - [sym_biblatex_include] = STATE(383), - [sym_bibtex_include] = STATE(383), - [sym_graphics_include] = STATE(383), - [sym_svg_include] = STATE(383), - [sym_inkscape_include] = STATE(383), - [sym_verbatim_include] = STATE(383), - [sym_import] = STATE(383), - [sym_label_definition] = STATE(383), - [sym_label_reference] = STATE(383), - [sym_equation_label_reference] = STATE(383), - [sym_label_reference_range] = STATE(383), - [sym_label_number] = STATE(383), - [sym_command_definition] = STATE(383), - [sym_math_operator] = STATE(383), - [sym_glossary_entry_definition] = STATE(383), - [sym_glossary_entry_reference] = STATE(383), - [sym_acronym_definition] = STATE(383), - [sym_acronym_reference] = STATE(383), - [sym_theorem_definition] = STATE(383), - [sym_color_reference] = STATE(383), - [sym_color_definition] = STATE(383), - [sym_color_set_definition] = STATE(383), - [sym_pgf_library_import] = STATE(383), - [sym_tikz_library_import] = STATE(383), - [sym_generic_command] = STATE(383), - [aux_sym_subsubsection_repeat1] = STATE(383), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(7080), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(3382), - [aux_sym_paragraph_token1] = ACTIONS(7084), - [aux_sym_subparagraph_token1] = ACTIONS(7086), - [anon_sym_BSLASHitem] = ACTIONS(7088), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(7094), - [sym_word] = ACTIONS(7094), - [sym_param] = ACTIONS(8391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7098), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7098), - [anon_sym_DOLLAR] = ACTIONS(7100), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7102), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(7104), - [aux_sym_citation_token1] = ACTIONS(7106), - [aux_sym_package_include_token1] = ACTIONS(7108), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7110), - [aux_sym_latex_include_token1] = ACTIONS(7112), - [aux_sym_latex_input_token1] = ACTIONS(7114), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7116), - [anon_sym_BSLASHbibliography] = ACTIONS(7118), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7120), - [anon_sym_BSLASHincludesvg] = ACTIONS(7122), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7124), - [aux_sym_verbatim_include_token1] = ACTIONS(7126), - [aux_sym_import_token1] = ACTIONS(7128), - [anon_sym_BSLASHlabel] = ACTIONS(7130), - [aux_sym_label_reference_token1] = ACTIONS(7132), - [anon_sym_BSLASHeqref] = ACTIONS(7134), - [aux_sym_label_reference_range_token1] = ACTIONS(7136), - [anon_sym_BSLASHnewlabel] = ACTIONS(7138), - [aux_sym_command_definition_token1] = ACTIONS(7140), - [aux_sym_math_operator_token1] = ACTIONS(7142), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7144), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7146), - [anon_sym_BSLASHnewacronym] = ACTIONS(7148), - [aux_sym_acronym_reference_token1] = ACTIONS(7150), - [aux_sym_theorem_definition_token1] = ACTIONS(7152), - [aux_sym_color_reference_token1] = ACTIONS(7154), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7156), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7160), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7162), - }, - [396] = { - [sym__simple_content] = STATE(386), - [sym_brace_group] = STATE(386), - [sym_mixed_group] = STATE(386), - [sym_text] = STATE(386), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(386), - [sym_inline_formula] = STATE(386), - [sym_begin] = STATE(59), - [sym_environment] = STATE(386), - [sym_caption] = STATE(386), - [sym_citation] = STATE(386), - [sym_package_include] = STATE(386), - [sym_class_include] = STATE(386), - [sym_latex_include] = STATE(386), - [sym_latex_input] = STATE(386), - [sym_biblatex_include] = STATE(386), - [sym_bibtex_include] = STATE(386), - [sym_graphics_include] = STATE(386), - [sym_svg_include] = STATE(386), - [sym_inkscape_include] = STATE(386), - [sym_verbatim_include] = STATE(386), - [sym_import] = STATE(386), - [sym_label_definition] = STATE(386), - [sym_label_reference] = STATE(386), - [sym_equation_label_reference] = STATE(386), - [sym_label_reference_range] = STATE(386), - [sym_label_number] = STATE(386), - [sym_command_definition] = STATE(386), - [sym_math_operator] = STATE(386), - [sym_glossary_entry_definition] = STATE(386), - [sym_glossary_entry_reference] = STATE(386), - [sym_acronym_definition] = STATE(386), - [sym_acronym_reference] = STATE(386), - [sym_theorem_definition] = STATE(386), - [sym_color_reference] = STATE(386), - [sym_color_definition] = STATE(386), - [sym_color_set_definition] = STATE(386), - [sym_pgf_library_import] = STATE(386), - [sym_tikz_library_import] = STATE(386), - [sym_generic_command] = STATE(386), - [aux_sym_enum_item_repeat1] = STATE(386), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5733), - [aux_sym_chapter_token1] = ACTIONS(5733), - [aux_sym_section_token1] = ACTIONS(5733), - [aux_sym_subsection_token1] = ACTIONS(5733), - [aux_sym_subsubsection_token1] = ACTIONS(5733), - [aux_sym_paragraph_token1] = ACTIONS(5733), - [aux_sym_subparagraph_token1] = ACTIONS(5733), - [anon_sym_BSLASHitem] = ACTIONS(5733), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(8393), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5731), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [397] = { - [sym__simple_content] = STATE(405), - [sym_brace_group] = STATE(405), - [sym_mixed_group] = STATE(405), - [sym_text] = STATE(405), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(405), - [sym_inline_formula] = STATE(405), - [sym_begin] = STATE(59), - [sym_environment] = STATE(405), - [sym_caption] = STATE(405), - [sym_citation] = STATE(405), - [sym_package_include] = STATE(405), - [sym_class_include] = STATE(405), - [sym_latex_include] = STATE(405), - [sym_latex_input] = STATE(405), - [sym_biblatex_include] = STATE(405), - [sym_bibtex_include] = STATE(405), - [sym_graphics_include] = STATE(405), - [sym_svg_include] = STATE(405), - [sym_inkscape_include] = STATE(405), - [sym_verbatim_include] = STATE(405), - [sym_import] = STATE(405), - [sym_label_definition] = STATE(405), - [sym_label_reference] = STATE(405), - [sym_equation_label_reference] = STATE(405), - [sym_label_reference_range] = STATE(405), - [sym_label_number] = STATE(405), - [sym_command_definition] = STATE(405), - [sym_math_operator] = STATE(405), - [sym_glossary_entry_definition] = STATE(405), - [sym_glossary_entry_reference] = STATE(405), - [sym_acronym_definition] = STATE(405), - [sym_acronym_reference] = STATE(405), - [sym_theorem_definition] = STATE(405), - [sym_color_reference] = STATE(405), - [sym_color_definition] = STATE(405), - [sym_color_set_definition] = STATE(405), - [sym_pgf_library_import] = STATE(405), - [sym_tikz_library_import] = STATE(405), - [sym_generic_command] = STATE(405), - [aux_sym_enum_item_repeat1] = STATE(405), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5602), - [aux_sym_chapter_token1] = ACTIONS(5602), - [aux_sym_section_token1] = ACTIONS(5602), - [aux_sym_subsection_token1] = ACTIONS(5602), - [aux_sym_subsubsection_token1] = ACTIONS(5602), - [aux_sym_paragraph_token1] = ACTIONS(5602), - [aux_sym_subparagraph_token1] = ACTIONS(5602), - [anon_sym_BSLASHitem] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(8395), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(8397), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5600), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [398] = { - [sym__simple_content] = STATE(403), - [sym_brace_group] = STATE(403), - [sym_mixed_group] = STATE(403), - [sym_text] = STATE(403), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(403), - [sym_inline_formula] = STATE(403), - [sym_begin] = STATE(73), - [sym_environment] = STATE(403), - [sym_caption] = STATE(403), - [sym_citation] = STATE(403), - [sym_package_include] = STATE(403), - [sym_class_include] = STATE(403), - [sym_latex_include] = STATE(403), - [sym_latex_input] = STATE(403), - [sym_biblatex_include] = STATE(403), - [sym_bibtex_include] = STATE(403), - [sym_graphics_include] = STATE(403), - [sym_svg_include] = STATE(403), - [sym_inkscape_include] = STATE(403), - [sym_verbatim_include] = STATE(403), - [sym_import] = STATE(403), - [sym_label_definition] = STATE(403), - [sym_label_reference] = STATE(403), - [sym_equation_label_reference] = STATE(403), - [sym_label_reference_range] = STATE(403), - [sym_label_number] = STATE(403), - [sym_command_definition] = STATE(403), - [sym_math_operator] = STATE(403), - [sym_glossary_entry_definition] = STATE(403), - [sym_glossary_entry_reference] = STATE(403), - [sym_acronym_definition] = STATE(403), - [sym_acronym_reference] = STATE(403), - [sym_theorem_definition] = STATE(403), - [sym_color_reference] = STATE(403), - [sym_color_definition] = STATE(403), - [sym_color_set_definition] = STATE(403), - [sym_pgf_library_import] = STATE(403), - [sym_tikz_library_import] = STATE(403), - [sym_generic_command] = STATE(403), - [aux_sym_enum_item_repeat1] = STATE(403), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5210), - [aux_sym_chapter_token1] = ACTIONS(5210), - [aux_sym_section_token1] = ACTIONS(5210), - [aux_sym_subsection_token1] = ACTIONS(5210), - [aux_sym_subsubsection_token1] = ACTIONS(5210), - [aux_sym_paragraph_token1] = ACTIONS(5210), - [aux_sym_subparagraph_token1] = ACTIONS(5210), - [anon_sym_BSLASHitem] = ACTIONS(5210), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(8399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(5210), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [399] = { - [sym__simple_content] = STATE(391), - [sym_brace_group] = STATE(391), - [sym_mixed_group] = STATE(391), - [sym_text] = STATE(391), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(391), - [sym_inline_formula] = STATE(391), - [sym_begin] = STATE(66), - [sym_environment] = STATE(391), - [sym_caption] = STATE(391), - [sym_citation] = STATE(391), - [sym_package_include] = STATE(391), - [sym_class_include] = STATE(391), - [sym_latex_include] = STATE(391), - [sym_latex_input] = STATE(391), - [sym_biblatex_include] = STATE(391), - [sym_bibtex_include] = STATE(391), - [sym_graphics_include] = STATE(391), - [sym_svg_include] = STATE(391), - [sym_inkscape_include] = STATE(391), - [sym_verbatim_include] = STATE(391), - [sym_import] = STATE(391), - [sym_label_definition] = STATE(391), - [sym_label_reference] = STATE(391), - [sym_equation_label_reference] = STATE(391), - [sym_label_reference_range] = STATE(391), - [sym_label_number] = STATE(391), - [sym_command_definition] = STATE(391), - [sym_math_operator] = STATE(391), - [sym_glossary_entry_definition] = STATE(391), - [sym_glossary_entry_reference] = STATE(391), - [sym_acronym_definition] = STATE(391), - [sym_acronym_reference] = STATE(391), - [sym_theorem_definition] = STATE(391), - [sym_color_reference] = STATE(391), - [sym_color_definition] = STATE(391), - [sym_color_set_definition] = STATE(391), - [sym_pgf_library_import] = STATE(391), - [sym_tikz_library_import] = STATE(391), - [sym_generic_command] = STATE(391), - [aux_sym_enum_item_repeat1] = STATE(391), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5210), - [aux_sym_chapter_token1] = ACTIONS(5210), - [aux_sym_section_token1] = ACTIONS(5210), - [aux_sym_subsection_token1] = ACTIONS(5210), - [aux_sym_subsubsection_token1] = ACTIONS(5210), - [aux_sym_paragraph_token1] = ACTIONS(5210), - [aux_sym_subparagraph_token1] = ACTIONS(5210), - [anon_sym_BSLASHitem] = ACTIONS(5210), - [anon_sym_LBRACK] = ACTIONS(376), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(8401), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5208), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [400] = { - [sym__simple_content] = STATE(381), - [sym_brace_group] = STATE(381), - [sym_mixed_group] = STATE(381), - [sym_text] = STATE(381), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(381), - [sym_inline_formula] = STATE(381), - [sym_begin] = STATE(66), - [sym_environment] = STATE(381), - [sym_caption] = STATE(381), - [sym_citation] = STATE(381), - [sym_package_include] = STATE(381), - [sym_class_include] = STATE(381), - [sym_latex_include] = STATE(381), - [sym_latex_input] = STATE(381), - [sym_biblatex_include] = STATE(381), - [sym_bibtex_include] = STATE(381), - [sym_graphics_include] = STATE(381), - [sym_svg_include] = STATE(381), - [sym_inkscape_include] = STATE(381), - [sym_verbatim_include] = STATE(381), - [sym_import] = STATE(381), - [sym_label_definition] = STATE(381), - [sym_label_reference] = STATE(381), - [sym_equation_label_reference] = STATE(381), - [sym_label_reference_range] = STATE(381), - [sym_label_number] = STATE(381), - [sym_command_definition] = STATE(381), - [sym_math_operator] = STATE(381), - [sym_glossary_entry_definition] = STATE(381), - [sym_glossary_entry_reference] = STATE(381), - [sym_acronym_definition] = STATE(381), - [sym_acronym_reference] = STATE(381), - [sym_theorem_definition] = STATE(381), - [sym_color_reference] = STATE(381), - [sym_color_definition] = STATE(381), - [sym_color_set_definition] = STATE(381), - [sym_pgf_library_import] = STATE(381), - [sym_tikz_library_import] = STATE(381), - [sym_generic_command] = STATE(381), - [aux_sym_enum_item_repeat1] = STATE(381), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(358), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5602), - [aux_sym_chapter_token1] = ACTIONS(5602), - [aux_sym_section_token1] = ACTIONS(5602), - [aux_sym_subsection_token1] = ACTIONS(5602), - [aux_sym_subsubsection_token1] = ACTIONS(5602), - [aux_sym_paragraph_token1] = ACTIONS(5602), - [aux_sym_subparagraph_token1] = ACTIONS(5602), - [anon_sym_BSLASHitem] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(8403), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(376), - [anon_sym_COMMA] = ACTIONS(380), - [anon_sym_EQ] = ACTIONS(380), - [sym_word] = ACTIONS(380), - [sym_param] = ACTIONS(8405), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(384), - [anon_sym_BSLASH_LBRACK] = ACTIONS(384), - [anon_sym_DOLLAR] = ACTIONS(2671), - [anon_sym_BSLASH_LPAREN] = ACTIONS(388), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5600), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(390), - [aux_sym_citation_token1] = ACTIONS(392), - [aux_sym_package_include_token1] = ACTIONS(394), - [anon_sym_BSLASHdocumentclass] = ACTIONS(396), - [aux_sym_latex_include_token1] = ACTIONS(398), - [aux_sym_latex_input_token1] = ACTIONS(400), - [anon_sym_BSLASHaddbibresource] = ACTIONS(402), - [anon_sym_BSLASHbibliography] = ACTIONS(404), - [anon_sym_BSLASHincludegraphics] = ACTIONS(406), - [anon_sym_BSLASHincludesvg] = ACTIONS(408), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(410), - [aux_sym_verbatim_include_token1] = ACTIONS(412), - [aux_sym_import_token1] = ACTIONS(414), - [anon_sym_BSLASHlabel] = ACTIONS(416), - [aux_sym_label_reference_token1] = ACTIONS(418), - [anon_sym_BSLASHeqref] = ACTIONS(420), - [aux_sym_label_reference_range_token1] = ACTIONS(422), - [anon_sym_BSLASHnewlabel] = ACTIONS(424), - [aux_sym_command_definition_token1] = ACTIONS(426), - [aux_sym_math_operator_token1] = ACTIONS(428), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(430), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(432), - [anon_sym_BSLASHnewacronym] = ACTIONS(434), - [aux_sym_acronym_reference_token1] = ACTIONS(436), - [aux_sym_theorem_definition_token1] = ACTIONS(438), - [aux_sym_color_reference_token1] = ACTIONS(440), - [anon_sym_BSLASHdefinecolor] = ACTIONS(442), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(444), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(446), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(448), - }, - [401] = { - [sym__simple_content] = STATE(401), - [sym_brace_group] = STATE(401), - [sym_mixed_group] = STATE(401), - [sym_text] = STATE(401), - [sym__text_fragment] = STATE(619), - [sym_displayed_equation] = STATE(401), - [sym_inline_formula] = STATE(401), - [sym_begin] = STATE(86), - [sym_environment] = STATE(401), - [sym_caption] = STATE(401), - [sym_citation] = STATE(401), - [sym_package_include] = STATE(401), - [sym_class_include] = STATE(401), - [sym_latex_include] = STATE(401), - [sym_latex_input] = STATE(401), - [sym_biblatex_include] = STATE(401), - [sym_bibtex_include] = STATE(401), - [sym_graphics_include] = STATE(401), - [sym_svg_include] = STATE(401), - [sym_inkscape_include] = STATE(401), - [sym_verbatim_include] = STATE(401), - [sym_import] = STATE(401), - [sym_label_definition] = STATE(401), - [sym_label_reference] = STATE(401), - [sym_equation_label_reference] = STATE(401), - [sym_label_reference_range] = STATE(401), - [sym_label_number] = STATE(401), - [sym_command_definition] = STATE(401), - [sym_math_operator] = STATE(401), - [sym_glossary_entry_definition] = STATE(401), - [sym_glossary_entry_reference] = STATE(401), - [sym_acronym_definition] = STATE(401), - [sym_acronym_reference] = STATE(401), - [sym_theorem_definition] = STATE(401), - [sym_color_reference] = STATE(401), - [sym_color_definition] = STATE(401), - [sym_color_set_definition] = STATE(401), - [sym_pgf_library_import] = STATE(401), - [sym_tikz_library_import] = STATE(401), - [sym_generic_command] = STATE(401), - [aux_sym_enum_item_repeat1] = STATE(401), - [aux_sym_text_repeat1] = STATE(619), - [sym_generic_command_name] = ACTIONS(8407), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_chapter_token1] = ACTIONS(5613), - [aux_sym_section_token1] = ACTIONS(5613), - [aux_sym_subsection_token1] = ACTIONS(5613), - [aux_sym_subsubsection_token1] = ACTIONS(5613), - [aux_sym_paragraph_token1] = ACTIONS(5613), - [aux_sym_subparagraph_token1] = ACTIONS(5613), - [anon_sym_BSLASHitem] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(8410), - [anon_sym_RBRACK] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(8413), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_LPAREN] = ACTIONS(8410), - [anon_sym_COMMA] = ACTIONS(8416), - [anon_sym_EQ] = ACTIONS(8416), - [sym_word] = ACTIONS(8416), - [sym_param] = ACTIONS(8419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8422), - [anon_sym_BSLASH_LBRACK] = ACTIONS(8422), - [anon_sym_DOLLAR] = ACTIONS(8425), - [anon_sym_BSLASH_LPAREN] = ACTIONS(8428), - [anon_sym_BSLASHbegin] = ACTIONS(5636), - [anon_sym_BSLASHcaption] = ACTIONS(8431), - [aux_sym_citation_token1] = ACTIONS(8434), - [aux_sym_package_include_token1] = ACTIONS(8437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(8440), - [aux_sym_latex_include_token1] = ACTIONS(8443), - [aux_sym_latex_input_token1] = ACTIONS(8446), - [anon_sym_BSLASHaddbibresource] = ACTIONS(8449), - [anon_sym_BSLASHbibliography] = ACTIONS(8452), - [anon_sym_BSLASHincludegraphics] = ACTIONS(8455), - [anon_sym_BSLASHincludesvg] = ACTIONS(8458), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(8461), - [aux_sym_verbatim_include_token1] = ACTIONS(8464), - [aux_sym_import_token1] = ACTIONS(8467), - [anon_sym_BSLASHlabel] = ACTIONS(8470), - [aux_sym_label_reference_token1] = ACTIONS(8473), - [anon_sym_BSLASHeqref] = ACTIONS(8476), - [aux_sym_label_reference_range_token1] = ACTIONS(8479), - [anon_sym_BSLASHnewlabel] = ACTIONS(8482), - [aux_sym_command_definition_token1] = ACTIONS(8485), - [aux_sym_math_operator_token1] = ACTIONS(8488), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8491), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(8494), - [anon_sym_BSLASHnewacronym] = ACTIONS(8497), - [aux_sym_acronym_reference_token1] = ACTIONS(8500), - [aux_sym_theorem_definition_token1] = ACTIONS(8503), - [aux_sym_color_reference_token1] = ACTIONS(8506), - [anon_sym_BSLASHdefinecolor] = ACTIONS(8509), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(8512), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(8515), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8518), - }, - [402] = { - [sym__simple_content] = STATE(408), - [sym_enum_item] = STATE(408), - [sym_brace_group] = STATE(408), - [sym_mixed_group] = STATE(408), - [sym_text] = STATE(408), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(408), - [sym_inline_formula] = STATE(408), - [sym_begin] = STATE(94), - [sym_environment] = STATE(408), - [sym_caption] = STATE(408), - [sym_citation] = STATE(408), - [sym_package_include] = STATE(408), - [sym_class_include] = STATE(408), - [sym_latex_include] = STATE(408), - [sym_latex_input] = STATE(408), - [sym_biblatex_include] = STATE(408), - [sym_bibtex_include] = STATE(408), - [sym_graphics_include] = STATE(408), - [sym_svg_include] = STATE(408), - [sym_inkscape_include] = STATE(408), - [sym_verbatim_include] = STATE(408), - [sym_import] = STATE(408), - [sym_label_definition] = STATE(408), - [sym_label_reference] = STATE(408), - [sym_equation_label_reference] = STATE(408), - [sym_label_reference_range] = STATE(408), - [sym_label_number] = STATE(408), - [sym_command_definition] = STATE(408), - [sym_math_operator] = STATE(408), - [sym_glossary_entry_definition] = STATE(408), - [sym_glossary_entry_reference] = STATE(408), - [sym_acronym_definition] = STATE(408), - [sym_acronym_reference] = STATE(408), - [sym_theorem_definition] = STATE(408), - [sym_color_reference] = STATE(408), - [sym_color_definition] = STATE(408), - [sym_color_set_definition] = STATE(408), - [sym_pgf_library_import] = STATE(408), - [sym_tikz_library_import] = STATE(408), - [sym_generic_command] = STATE(408), - [aux_sym_subparagraph_repeat1] = STATE(408), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(4543), - [aux_sym_subsection_token1] = ACTIONS(4543), - [aux_sym_subsubsection_token1] = ACTIONS(4543), - [aux_sym_paragraph_token1] = ACTIONS(4543), - [aux_sym_subparagraph_token1] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(8521), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [403] = { - [sym__simple_content] = STATE(382), - [sym_brace_group] = STATE(382), - [sym_mixed_group] = STATE(382), - [sym_text] = STATE(382), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(382), - [sym_inline_formula] = STATE(382), - [sym_begin] = STATE(73), - [sym_environment] = STATE(382), - [sym_caption] = STATE(382), - [sym_citation] = STATE(382), - [sym_package_include] = STATE(382), - [sym_class_include] = STATE(382), - [sym_latex_include] = STATE(382), - [sym_latex_input] = STATE(382), - [sym_biblatex_include] = STATE(382), - [sym_bibtex_include] = STATE(382), - [sym_graphics_include] = STATE(382), - [sym_svg_include] = STATE(382), - [sym_inkscape_include] = STATE(382), - [sym_verbatim_include] = STATE(382), - [sym_import] = STATE(382), - [sym_label_definition] = STATE(382), - [sym_label_reference] = STATE(382), - [sym_equation_label_reference] = STATE(382), - [sym_label_reference_range] = STATE(382), - [sym_label_number] = STATE(382), - [sym_command_definition] = STATE(382), - [sym_math_operator] = STATE(382), - [sym_glossary_entry_definition] = STATE(382), - [sym_glossary_entry_reference] = STATE(382), - [sym_acronym_definition] = STATE(382), - [sym_acronym_reference] = STATE(382), - [sym_theorem_definition] = STATE(382), - [sym_color_reference] = STATE(382), - [sym_color_definition] = STATE(382), - [sym_color_set_definition] = STATE(382), - [sym_pgf_library_import] = STATE(382), - [sym_tikz_library_import] = STATE(382), - [sym_generic_command] = STATE(382), - [aux_sym_enum_item_repeat1] = STATE(382), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5733), - [aux_sym_chapter_token1] = ACTIONS(5733), - [aux_sym_section_token1] = ACTIONS(5733), - [aux_sym_subsection_token1] = ACTIONS(5733), - [aux_sym_subsubsection_token1] = ACTIONS(5733), - [aux_sym_paragraph_token1] = ACTIONS(5733), - [aux_sym_subparagraph_token1] = ACTIONS(5733), - [anon_sym_BSLASHitem] = ACTIONS(5733), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(8523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(5733), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [404] = { - [sym__simple_content] = STATE(404), - [sym_brace_group] = STATE(404), - [sym_mixed_group] = STATE(404), - [sym_text] = STATE(404), - [sym__text_fragment] = STATE(625), - [sym_displayed_equation] = STATE(404), - [sym_inline_formula] = STATE(404), - [sym_begin] = STATE(66), - [sym_environment] = STATE(404), - [sym_caption] = STATE(404), - [sym_citation] = STATE(404), - [sym_package_include] = STATE(404), - [sym_class_include] = STATE(404), - [sym_latex_include] = STATE(404), - [sym_latex_input] = STATE(404), - [sym_biblatex_include] = STATE(404), - [sym_bibtex_include] = STATE(404), - [sym_graphics_include] = STATE(404), - [sym_svg_include] = STATE(404), - [sym_inkscape_include] = STATE(404), - [sym_verbatim_include] = STATE(404), - [sym_import] = STATE(404), - [sym_label_definition] = STATE(404), - [sym_label_reference] = STATE(404), - [sym_equation_label_reference] = STATE(404), - [sym_label_reference_range] = STATE(404), - [sym_label_number] = STATE(404), - [sym_command_definition] = STATE(404), - [sym_math_operator] = STATE(404), - [sym_glossary_entry_definition] = STATE(404), - [sym_glossary_entry_reference] = STATE(404), - [sym_acronym_definition] = STATE(404), - [sym_acronym_reference] = STATE(404), - [sym_theorem_definition] = STATE(404), - [sym_color_reference] = STATE(404), - [sym_color_definition] = STATE(404), - [sym_color_set_definition] = STATE(404), - [sym_pgf_library_import] = STATE(404), - [sym_tikz_library_import] = STATE(404), - [sym_generic_command] = STATE(404), - [aux_sym_enum_item_repeat1] = STATE(404), - [aux_sym_text_repeat1] = STATE(625), - [sym_generic_command_name] = ACTIONS(8525), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5613), - [aux_sym_chapter_token1] = ACTIONS(5613), - [aux_sym_section_token1] = ACTIONS(5613), - [aux_sym_subsection_token1] = ACTIONS(5613), - [aux_sym_subsubsection_token1] = ACTIONS(5613), - [aux_sym_paragraph_token1] = ACTIONS(5613), - [aux_sym_subparagraph_token1] = ACTIONS(5613), - [anon_sym_BSLASHitem] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(8528), - [anon_sym_LBRACE] = ACTIONS(8531), - [anon_sym_LPAREN] = ACTIONS(8528), - [anon_sym_COMMA] = ACTIONS(8534), - [anon_sym_EQ] = ACTIONS(8534), - [sym_word] = ACTIONS(8534), - [sym_param] = ACTIONS(8537), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8540), - [anon_sym_BSLASH_LBRACK] = ACTIONS(8540), - [anon_sym_DOLLAR] = ACTIONS(8543), - [anon_sym_BSLASH_LPAREN] = ACTIONS(8546), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5608), - [anon_sym_BSLASHbegin] = ACTIONS(5636), - [anon_sym_BSLASHcaption] = ACTIONS(8549), - [aux_sym_citation_token1] = ACTIONS(8552), - [aux_sym_package_include_token1] = ACTIONS(8555), - [anon_sym_BSLASHdocumentclass] = ACTIONS(8558), - [aux_sym_latex_include_token1] = ACTIONS(8561), - [aux_sym_latex_input_token1] = ACTIONS(8564), - [anon_sym_BSLASHaddbibresource] = ACTIONS(8567), - [anon_sym_BSLASHbibliography] = ACTIONS(8570), - [anon_sym_BSLASHincludegraphics] = ACTIONS(8573), - [anon_sym_BSLASHincludesvg] = ACTIONS(8576), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(8579), - [aux_sym_verbatim_include_token1] = ACTIONS(8582), - [aux_sym_import_token1] = ACTIONS(8585), - [anon_sym_BSLASHlabel] = ACTIONS(8588), - [aux_sym_label_reference_token1] = ACTIONS(8591), - [anon_sym_BSLASHeqref] = ACTIONS(8594), - [aux_sym_label_reference_range_token1] = ACTIONS(8597), - [anon_sym_BSLASHnewlabel] = ACTIONS(8600), - [aux_sym_command_definition_token1] = ACTIONS(8603), - [aux_sym_math_operator_token1] = ACTIONS(8606), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8609), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(8612), - [anon_sym_BSLASHnewacronym] = ACTIONS(8615), - [aux_sym_acronym_reference_token1] = ACTIONS(8618), - [aux_sym_theorem_definition_token1] = ACTIONS(8621), - [aux_sym_color_reference_token1] = ACTIONS(8624), - [anon_sym_BSLASHdefinecolor] = ACTIONS(8627), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(8630), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(8633), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8636), - }, - [405] = { - [sym__simple_content] = STATE(386), - [sym_brace_group] = STATE(386), - [sym_mixed_group] = STATE(386), - [sym_text] = STATE(386), - [sym__text_fragment] = STATE(617), - [sym_displayed_equation] = STATE(386), - [sym_inline_formula] = STATE(386), - [sym_begin] = STATE(59), - [sym_environment] = STATE(386), - [sym_caption] = STATE(386), - [sym_citation] = STATE(386), - [sym_package_include] = STATE(386), - [sym_class_include] = STATE(386), - [sym_latex_include] = STATE(386), - [sym_latex_input] = STATE(386), - [sym_biblatex_include] = STATE(386), - [sym_bibtex_include] = STATE(386), - [sym_graphics_include] = STATE(386), - [sym_svg_include] = STATE(386), - [sym_inkscape_include] = STATE(386), - [sym_verbatim_include] = STATE(386), - [sym_import] = STATE(386), - [sym_label_definition] = STATE(386), - [sym_label_reference] = STATE(386), - [sym_equation_label_reference] = STATE(386), - [sym_label_reference_range] = STATE(386), - [sym_label_number] = STATE(386), - [sym_command_definition] = STATE(386), - [sym_math_operator] = STATE(386), - [sym_glossary_entry_definition] = STATE(386), - [sym_glossary_entry_reference] = STATE(386), - [sym_acronym_definition] = STATE(386), - [sym_acronym_reference] = STATE(386), - [sym_theorem_definition] = STATE(386), - [sym_color_reference] = STATE(386), - [sym_color_definition] = STATE(386), - [sym_color_set_definition] = STATE(386), - [sym_pgf_library_import] = STATE(386), - [sym_tikz_library_import] = STATE(386), - [sym_generic_command] = STATE(386), - [aux_sym_enum_item_repeat1] = STATE(386), - [aux_sym_text_repeat1] = STATE(617), - [sym_generic_command_name] = ACTIONS(270), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5204), - [aux_sym_chapter_token1] = ACTIONS(5204), - [aux_sym_section_token1] = ACTIONS(5204), - [aux_sym_subsection_token1] = ACTIONS(5204), - [aux_sym_subsubsection_token1] = ACTIONS(5204), - [aux_sym_paragraph_token1] = ACTIONS(5204), - [aux_sym_subparagraph_token1] = ACTIONS(5204), - [anon_sym_BSLASHitem] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(282), - [anon_sym_LBRACE] = ACTIONS(284), - [anon_sym_LPAREN] = ACTIONS(282), - [anon_sym_COMMA] = ACTIONS(286), - [anon_sym_EQ] = ACTIONS(286), - [sym_word] = ACTIONS(286), - [sym_param] = ACTIONS(8393), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(292), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5202), - [anon_sym_DOLLAR] = ACTIONS(294), - [anon_sym_BSLASH_LPAREN] = ACTIONS(296), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(298), - [aux_sym_citation_token1] = ACTIONS(300), - [aux_sym_package_include_token1] = ACTIONS(302), - [anon_sym_BSLASHdocumentclass] = ACTIONS(304), - [aux_sym_latex_include_token1] = ACTIONS(306), - [aux_sym_latex_input_token1] = ACTIONS(308), - [anon_sym_BSLASHaddbibresource] = ACTIONS(310), - [anon_sym_BSLASHbibliography] = ACTIONS(312), - [anon_sym_BSLASHincludegraphics] = ACTIONS(314), - [anon_sym_BSLASHincludesvg] = ACTIONS(316), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(318), - [aux_sym_verbatim_include_token1] = ACTIONS(320), - [aux_sym_import_token1] = ACTIONS(322), - [anon_sym_BSLASHlabel] = ACTIONS(324), - [aux_sym_label_reference_token1] = ACTIONS(326), - [anon_sym_BSLASHeqref] = ACTIONS(328), - [aux_sym_label_reference_range_token1] = ACTIONS(330), - [anon_sym_BSLASHnewlabel] = ACTIONS(332), - [aux_sym_command_definition_token1] = ACTIONS(334), - [aux_sym_math_operator_token1] = ACTIONS(336), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(338), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(340), - [anon_sym_BSLASHnewacronym] = ACTIONS(342), - [aux_sym_acronym_reference_token1] = ACTIONS(344), - [aux_sym_theorem_definition_token1] = ACTIONS(346), - [aux_sym_color_reference_token1] = ACTIONS(348), - [anon_sym_BSLASHdefinecolor] = ACTIONS(350), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(352), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(354), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(356), - }, - [406] = { - [sym__simple_content] = STATE(407), - [sym_brace_group] = STATE(407), - [sym_mixed_group] = STATE(407), - [sym_text] = STATE(407), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(407), - [sym_inline_formula] = STATE(407), - [sym_begin] = STATE(73), - [sym_environment] = STATE(407), - [sym_caption] = STATE(407), - [sym_citation] = STATE(407), - [sym_package_include] = STATE(407), - [sym_class_include] = STATE(407), - [sym_latex_include] = STATE(407), - [sym_latex_input] = STATE(407), - [sym_biblatex_include] = STATE(407), - [sym_bibtex_include] = STATE(407), - [sym_graphics_include] = STATE(407), - [sym_svg_include] = STATE(407), - [sym_inkscape_include] = STATE(407), - [sym_verbatim_include] = STATE(407), - [sym_import] = STATE(407), - [sym_label_definition] = STATE(407), - [sym_label_reference] = STATE(407), - [sym_equation_label_reference] = STATE(407), - [sym_label_reference_range] = STATE(407), - [sym_label_number] = STATE(407), - [sym_command_definition] = STATE(407), - [sym_math_operator] = STATE(407), - [sym_glossary_entry_definition] = STATE(407), - [sym_glossary_entry_reference] = STATE(407), - [sym_acronym_definition] = STATE(407), - [sym_acronym_reference] = STATE(407), - [sym_theorem_definition] = STATE(407), - [sym_color_reference] = STATE(407), - [sym_color_definition] = STATE(407), - [sym_color_set_definition] = STATE(407), - [sym_pgf_library_import] = STATE(407), - [sym_tikz_library_import] = STATE(407), - [sym_generic_command] = STATE(407), - [aux_sym_enum_item_repeat1] = STATE(407), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5602), - [aux_sym_chapter_token1] = ACTIONS(5602), - [aux_sym_section_token1] = ACTIONS(5602), - [aux_sym_subsection_token1] = ACTIONS(5602), - [aux_sym_subsubsection_token1] = ACTIONS(5602), - [aux_sym_paragraph_token1] = ACTIONS(5602), - [aux_sym_subparagraph_token1] = ACTIONS(5602), - [anon_sym_BSLASHitem] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(8639), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(8641), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(5602), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [407] = { - [sym__simple_content] = STATE(382), - [sym_brace_group] = STATE(382), - [sym_mixed_group] = STATE(382), - [sym_text] = STATE(382), - [sym__text_fragment] = STATE(614), - [sym_displayed_equation] = STATE(382), - [sym_inline_formula] = STATE(382), - [sym_begin] = STATE(73), - [sym_environment] = STATE(382), - [sym_caption] = STATE(382), - [sym_citation] = STATE(382), - [sym_package_include] = STATE(382), - [sym_class_include] = STATE(382), - [sym_latex_include] = STATE(382), - [sym_latex_input] = STATE(382), - [sym_biblatex_include] = STATE(382), - [sym_bibtex_include] = STATE(382), - [sym_graphics_include] = STATE(382), - [sym_svg_include] = STATE(382), - [sym_inkscape_include] = STATE(382), - [sym_verbatim_include] = STATE(382), - [sym_import] = STATE(382), - [sym_label_definition] = STATE(382), - [sym_label_reference] = STATE(382), - [sym_equation_label_reference] = STATE(382), - [sym_label_reference_range] = STATE(382), - [sym_label_number] = STATE(382), - [sym_command_definition] = STATE(382), - [sym_math_operator] = STATE(382), - [sym_glossary_entry_definition] = STATE(382), - [sym_glossary_entry_reference] = STATE(382), - [sym_acronym_definition] = STATE(382), - [sym_acronym_reference] = STATE(382), - [sym_theorem_definition] = STATE(382), - [sym_color_reference] = STATE(382), - [sym_color_definition] = STATE(382), - [sym_color_set_definition] = STATE(382), - [sym_pgf_library_import] = STATE(382), - [sym_tikz_library_import] = STATE(382), - [sym_generic_command] = STATE(382), - [aux_sym_enum_item_repeat1] = STATE(382), - [aux_sym_text_repeat1] = STATE(614), - [sym_generic_command_name] = ACTIONS(456), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_part_token1] = ACTIONS(5204), - [aux_sym_chapter_token1] = ACTIONS(5204), - [aux_sym_section_token1] = ACTIONS(5204), - [aux_sym_subsection_token1] = ACTIONS(5204), - [aux_sym_subsubsection_token1] = ACTIONS(5204), - [aux_sym_paragraph_token1] = ACTIONS(5204), - [aux_sym_subparagraph_token1] = ACTIONS(5204), - [anon_sym_BSLASHitem] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(478), - [sym_word] = ACTIONS(478), - [sym_param] = ACTIONS(8523), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(482), - [anon_sym_BSLASH_LBRACK] = ACTIONS(482), - [anon_sym_DOLLAR] = ACTIONS(484), - [anon_sym_BSLASH_LPAREN] = ACTIONS(486), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHend] = ACTIONS(5204), - [anon_sym_BSLASHcaption] = ACTIONS(490), - [aux_sym_citation_token1] = ACTIONS(492), - [aux_sym_package_include_token1] = ACTIONS(494), - [anon_sym_BSLASHdocumentclass] = ACTIONS(496), - [aux_sym_latex_include_token1] = ACTIONS(498), - [aux_sym_latex_input_token1] = ACTIONS(500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(502), - [anon_sym_BSLASHbibliography] = ACTIONS(504), - [anon_sym_BSLASHincludegraphics] = ACTIONS(506), - [anon_sym_BSLASHincludesvg] = ACTIONS(508), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(510), - [aux_sym_verbatim_include_token1] = ACTIONS(512), - [aux_sym_import_token1] = ACTIONS(514), - [anon_sym_BSLASHlabel] = ACTIONS(516), - [aux_sym_label_reference_token1] = ACTIONS(518), - [anon_sym_BSLASHeqref] = ACTIONS(520), - [aux_sym_label_reference_range_token1] = ACTIONS(522), - [anon_sym_BSLASHnewlabel] = ACTIONS(524), - [aux_sym_command_definition_token1] = ACTIONS(526), - [aux_sym_math_operator_token1] = ACTIONS(528), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(530), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(532), - [anon_sym_BSLASHnewacronym] = ACTIONS(534), - [aux_sym_acronym_reference_token1] = ACTIONS(536), - [aux_sym_theorem_definition_token1] = ACTIONS(538), - [aux_sym_color_reference_token1] = ACTIONS(540), - [anon_sym_BSLASHdefinecolor] = ACTIONS(542), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(544), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(546), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(548), - }, - [408] = { - [sym__simple_content] = STATE(409), - [sym_enum_item] = STATE(409), - [sym_brace_group] = STATE(409), - [sym_mixed_group] = STATE(409), - [sym_text] = STATE(409), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(409), - [sym_inline_formula] = STATE(409), - [sym_begin] = STATE(94), - [sym_environment] = STATE(409), - [sym_caption] = STATE(409), - [sym_citation] = STATE(409), - [sym_package_include] = STATE(409), - [sym_class_include] = STATE(409), - [sym_latex_include] = STATE(409), - [sym_latex_input] = STATE(409), - [sym_biblatex_include] = STATE(409), - [sym_bibtex_include] = STATE(409), - [sym_graphics_include] = STATE(409), - [sym_svg_include] = STATE(409), - [sym_inkscape_include] = STATE(409), - [sym_verbatim_include] = STATE(409), - [sym_import] = STATE(409), - [sym_label_definition] = STATE(409), - [sym_label_reference] = STATE(409), - [sym_equation_label_reference] = STATE(409), - [sym_label_reference_range] = STATE(409), - [sym_label_number] = STATE(409), - [sym_command_definition] = STATE(409), - [sym_math_operator] = STATE(409), - [sym_glossary_entry_definition] = STATE(409), - [sym_glossary_entry_reference] = STATE(409), - [sym_acronym_definition] = STATE(409), - [sym_acronym_reference] = STATE(409), - [sym_theorem_definition] = STATE(409), - [sym_color_reference] = STATE(409), - [sym_color_definition] = STATE(409), - [sym_color_set_definition] = STATE(409), - [sym_pgf_library_import] = STATE(409), - [sym_tikz_library_import] = STATE(409), - [sym_generic_command] = STATE(409), - [aux_sym_subparagraph_repeat1] = STATE(409), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(4808), - [aux_sym_subsection_token1] = ACTIONS(4808), - [aux_sym_subsubsection_token1] = ACTIONS(4808), - [aux_sym_paragraph_token1] = ACTIONS(4808), - [aux_sym_subparagraph_token1] = ACTIONS(4808), - [anon_sym_BSLASHitem] = ACTIONS(3802), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(4806), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(4806), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(8643), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [409] = { - [sym__simple_content] = STATE(409), - [sym_enum_item] = STATE(409), - [sym_brace_group] = STATE(409), - [sym_mixed_group] = STATE(409), - [sym_text] = STATE(409), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(409), - [sym_inline_formula] = STATE(409), - [sym_begin] = STATE(94), - [sym_environment] = STATE(409), - [sym_caption] = STATE(409), - [sym_citation] = STATE(409), - [sym_package_include] = STATE(409), - [sym_class_include] = STATE(409), - [sym_latex_include] = STATE(409), - [sym_latex_input] = STATE(409), - [sym_biblatex_include] = STATE(409), - [sym_bibtex_include] = STATE(409), - [sym_graphics_include] = STATE(409), - [sym_svg_include] = STATE(409), - [sym_inkscape_include] = STATE(409), - [sym_verbatim_include] = STATE(409), - [sym_import] = STATE(409), - [sym_label_definition] = STATE(409), - [sym_label_reference] = STATE(409), - [sym_equation_label_reference] = STATE(409), - [sym_label_reference_range] = STATE(409), - [sym_label_number] = STATE(409), - [sym_command_definition] = STATE(409), - [sym_math_operator] = STATE(409), - [sym_glossary_entry_definition] = STATE(409), - [sym_glossary_entry_reference] = STATE(409), - [sym_acronym_definition] = STATE(409), - [sym_acronym_reference] = STATE(409), - [sym_theorem_definition] = STATE(409), - [sym_color_reference] = STATE(409), - [sym_color_definition] = STATE(409), - [sym_color_set_definition] = STATE(409), - [sym_pgf_library_import] = STATE(409), - [sym_tikz_library_import] = STATE(409), - [sym_generic_command] = STATE(409), - [aux_sym_subparagraph_repeat1] = STATE(409), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(8645), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(5069), - [aux_sym_subsection_token1] = ACTIONS(5069), - [aux_sym_subsubsection_token1] = ACTIONS(5069), - [aux_sym_paragraph_token1] = ACTIONS(5069), - [aux_sym_subparagraph_token1] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(8648), - [anon_sym_LBRACK] = ACTIONS(8651), - [anon_sym_RBRACK] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(8654), - [anon_sym_RBRACE] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(8651), - [anon_sym_COMMA] = ACTIONS(8657), - [anon_sym_EQ] = ACTIONS(8657), - [sym_word] = ACTIONS(8657), - [sym_param] = ACTIONS(8660), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8663), - [anon_sym_BSLASH_LBRACK] = ACTIONS(8663), - [anon_sym_DOLLAR] = ACTIONS(8666), - [anon_sym_BSLASH_LPAREN] = ACTIONS(8669), - [anon_sym_BSLASHbegin] = ACTIONS(5095), - [anon_sym_BSLASHcaption] = ACTIONS(8672), - [aux_sym_citation_token1] = ACTIONS(8675), - [aux_sym_package_include_token1] = ACTIONS(8678), - [anon_sym_BSLASHdocumentclass] = ACTIONS(8681), - [aux_sym_latex_include_token1] = ACTIONS(8684), - [aux_sym_latex_input_token1] = ACTIONS(8687), - [anon_sym_BSLASHaddbibresource] = ACTIONS(8690), - [anon_sym_BSLASHbibliography] = ACTIONS(8693), - [anon_sym_BSLASHincludegraphics] = ACTIONS(8696), - [anon_sym_BSLASHincludesvg] = ACTIONS(8699), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(8702), - [aux_sym_verbatim_include_token1] = ACTIONS(8705), - [aux_sym_import_token1] = ACTIONS(8708), - [anon_sym_BSLASHlabel] = ACTIONS(8711), - [aux_sym_label_reference_token1] = ACTIONS(8714), - [anon_sym_BSLASHeqref] = ACTIONS(8717), - [aux_sym_label_reference_range_token1] = ACTIONS(8720), - [anon_sym_BSLASHnewlabel] = ACTIONS(8723), - [aux_sym_command_definition_token1] = ACTIONS(8726), - [aux_sym_math_operator_token1] = ACTIONS(8729), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8732), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(8735), - [anon_sym_BSLASHnewacronym] = ACTIONS(8738), - [aux_sym_acronym_reference_token1] = ACTIONS(8741), - [aux_sym_theorem_definition_token1] = ACTIONS(8744), - [aux_sym_color_reference_token1] = ACTIONS(8747), - [anon_sym_BSLASHdefinecolor] = ACTIONS(8750), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(8753), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(8756), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8759), - }, - [410] = { - [sym__simple_content] = STATE(412), - [sym_brace_group] = STATE(412), - [sym_mixed_group] = STATE(412), - [sym_text] = STATE(412), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(412), - [sym_inline_formula] = STATE(412), - [sym_begin] = STATE(94), - [sym_environment] = STATE(412), - [sym_caption] = STATE(412), - [sym_citation] = STATE(412), - [sym_package_include] = STATE(412), - [sym_class_include] = STATE(412), - [sym_latex_include] = STATE(412), - [sym_latex_input] = STATE(412), - [sym_biblatex_include] = STATE(412), - [sym_bibtex_include] = STATE(412), - [sym_graphics_include] = STATE(412), - [sym_svg_include] = STATE(412), - [sym_inkscape_include] = STATE(412), - [sym_verbatim_include] = STATE(412), - [sym_import] = STATE(412), - [sym_label_definition] = STATE(412), - [sym_label_reference] = STATE(412), - [sym_equation_label_reference] = STATE(412), - [sym_label_reference_range] = STATE(412), - [sym_label_number] = STATE(412), - [sym_command_definition] = STATE(412), - [sym_math_operator] = STATE(412), - [sym_glossary_entry_definition] = STATE(412), - [sym_glossary_entry_reference] = STATE(412), - [sym_acronym_definition] = STATE(412), - [sym_acronym_reference] = STATE(412), - [sym_theorem_definition] = STATE(412), - [sym_color_reference] = STATE(412), - [sym_color_definition] = STATE(412), - [sym_color_set_definition] = STATE(412), - [sym_pgf_library_import] = STATE(412), - [sym_tikz_library_import] = STATE(412), - [sym_generic_command] = STATE(412), - [aux_sym_enum_item_repeat1] = STATE(412), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(5210), - [aux_sym_subsection_token1] = ACTIONS(5210), - [aux_sym_subsubsection_token1] = ACTIONS(5210), - [aux_sym_paragraph_token1] = ACTIONS(5210), - [aux_sym_subparagraph_token1] = ACTIONS(5210), - [anon_sym_BSLASHitem] = ACTIONS(5210), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(5208), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(8762), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [411] = { - [sym__simple_content] = STATE(419), - [sym_subparagraph] = STATE(419), - [sym_enum_item] = STATE(419), - [sym_brace_group] = STATE(419), - [sym_mixed_group] = STATE(419), - [sym_text] = STATE(419), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(419), - [sym_inline_formula] = STATE(419), - [sym_begin] = STATE(112), - [sym_environment] = STATE(419), - [sym_caption] = STATE(419), - [sym_citation] = STATE(419), - [sym_package_include] = STATE(419), - [sym_class_include] = STATE(419), - [sym_latex_include] = STATE(419), - [sym_latex_input] = STATE(419), - [sym_biblatex_include] = STATE(419), - [sym_bibtex_include] = STATE(419), - [sym_graphics_include] = STATE(419), - [sym_svg_include] = STATE(419), - [sym_inkscape_include] = STATE(419), - [sym_verbatim_include] = STATE(419), - [sym_import] = STATE(419), - [sym_label_definition] = STATE(419), - [sym_label_reference] = STATE(419), - [sym_equation_label_reference] = STATE(419), - [sym_label_reference_range] = STATE(419), - [sym_label_number] = STATE(419), - [sym_command_definition] = STATE(419), - [sym_math_operator] = STATE(419), - [sym_glossary_entry_definition] = STATE(419), - [sym_glossary_entry_reference] = STATE(419), - [sym_acronym_definition] = STATE(419), - [sym_acronym_reference] = STATE(419), - [sym_theorem_definition] = STATE(419), - [sym_color_reference] = STATE(419), - [sym_color_definition] = STATE(419), - [sym_color_set_definition] = STATE(419), - [sym_pgf_library_import] = STATE(419), - [sym_tikz_library_import] = STATE(419), - [sym_generic_command] = STATE(419), - [aux_sym_paragraph_repeat1] = STATE(419), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(7080), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(3786), - [aux_sym_paragraph_token1] = ACTIONS(3786), - [aux_sym_subparagraph_token1] = ACTIONS(7086), - [anon_sym_BSLASHitem] = ACTIONS(7088), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(3784), - [anon_sym_LPAREN] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(7094), - [sym_word] = ACTIONS(7094), - [sym_param] = ACTIONS(8764), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7098), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7098), - [anon_sym_DOLLAR] = ACTIONS(7100), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7102), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(7104), - [aux_sym_citation_token1] = ACTIONS(7106), - [aux_sym_package_include_token1] = ACTIONS(7108), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7110), - [aux_sym_latex_include_token1] = ACTIONS(7112), - [aux_sym_latex_input_token1] = ACTIONS(7114), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7116), - [anon_sym_BSLASHbibliography] = ACTIONS(7118), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7120), - [anon_sym_BSLASHincludesvg] = ACTIONS(7122), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7124), - [aux_sym_verbatim_include_token1] = ACTIONS(7126), - [aux_sym_import_token1] = ACTIONS(7128), - [anon_sym_BSLASHlabel] = ACTIONS(7130), - [aux_sym_label_reference_token1] = ACTIONS(7132), - [anon_sym_BSLASHeqref] = ACTIONS(7134), - [aux_sym_label_reference_range_token1] = ACTIONS(7136), - [anon_sym_BSLASHnewlabel] = ACTIONS(7138), - [aux_sym_command_definition_token1] = ACTIONS(7140), - [aux_sym_math_operator_token1] = ACTIONS(7142), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7144), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7146), - [anon_sym_BSLASHnewacronym] = ACTIONS(7148), - [aux_sym_acronym_reference_token1] = ACTIONS(7150), - [aux_sym_theorem_definition_token1] = ACTIONS(7152), - [aux_sym_color_reference_token1] = ACTIONS(7154), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7156), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7160), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7162), - }, - [412] = { - [sym__simple_content] = STATE(421), - [sym_brace_group] = STATE(421), - [sym_mixed_group] = STATE(421), - [sym_text] = STATE(421), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(421), - [sym_inline_formula] = STATE(421), - [sym_begin] = STATE(94), - [sym_environment] = STATE(421), - [sym_caption] = STATE(421), - [sym_citation] = STATE(421), - [sym_package_include] = STATE(421), - [sym_class_include] = STATE(421), - [sym_latex_include] = STATE(421), - [sym_latex_input] = STATE(421), - [sym_biblatex_include] = STATE(421), - [sym_bibtex_include] = STATE(421), - [sym_graphics_include] = STATE(421), - [sym_svg_include] = STATE(421), - [sym_inkscape_include] = STATE(421), - [sym_verbatim_include] = STATE(421), - [sym_import] = STATE(421), - [sym_label_definition] = STATE(421), - [sym_label_reference] = STATE(421), - [sym_equation_label_reference] = STATE(421), - [sym_label_reference_range] = STATE(421), - [sym_label_number] = STATE(421), - [sym_command_definition] = STATE(421), - [sym_math_operator] = STATE(421), - [sym_glossary_entry_definition] = STATE(421), - [sym_glossary_entry_reference] = STATE(421), - [sym_acronym_definition] = STATE(421), - [sym_acronym_reference] = STATE(421), - [sym_theorem_definition] = STATE(421), - [sym_color_reference] = STATE(421), - [sym_color_definition] = STATE(421), - [sym_color_set_definition] = STATE(421), - [sym_pgf_library_import] = STATE(421), - [sym_tikz_library_import] = STATE(421), - [sym_generic_command] = STATE(421), - [aux_sym_enum_item_repeat1] = STATE(421), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(5733), - [aux_sym_subsection_token1] = ACTIONS(5733), - [aux_sym_subsubsection_token1] = ACTIONS(5733), - [aux_sym_paragraph_token1] = ACTIONS(5733), - [aux_sym_subparagraph_token1] = ACTIONS(5733), - [anon_sym_BSLASHitem] = ACTIONS(5733), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(5731), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(8766), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [413] = { - [sym__simple_content] = STATE(413), - [sym_paragraph] = STATE(413), - [sym_subparagraph] = STATE(413), - [sym_enum_item] = STATE(413), - [sym_brace_group] = STATE(413), - [sym_mixed_group] = STATE(413), - [sym_text] = STATE(413), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(413), - [sym_inline_formula] = STATE(413), - [sym_begin] = STATE(99), - [sym_environment] = STATE(413), - [sym_caption] = STATE(413), - [sym_citation] = STATE(413), - [sym_package_include] = STATE(413), - [sym_class_include] = STATE(413), - [sym_latex_include] = STATE(413), - [sym_latex_input] = STATE(413), - [sym_biblatex_include] = STATE(413), - [sym_bibtex_include] = STATE(413), - [sym_graphics_include] = STATE(413), - [sym_svg_include] = STATE(413), - [sym_inkscape_include] = STATE(413), - [sym_verbatim_include] = STATE(413), - [sym_import] = STATE(413), - [sym_label_definition] = STATE(413), - [sym_label_reference] = STATE(413), - [sym_equation_label_reference] = STATE(413), - [sym_label_reference_range] = STATE(413), - [sym_label_number] = STATE(413), - [sym_command_definition] = STATE(413), - [sym_math_operator] = STATE(413), - [sym_glossary_entry_definition] = STATE(413), - [sym_glossary_entry_reference] = STATE(413), - [sym_acronym_definition] = STATE(413), - [sym_acronym_reference] = STATE(413), - [sym_theorem_definition] = STATE(413), - [sym_color_reference] = STATE(413), - [sym_color_definition] = STATE(413), - [sym_color_set_definition] = STATE(413), - [sym_pgf_library_import] = STATE(413), - [sym_tikz_library_import] = STATE(413), - [sym_generic_command] = STATE(413), - [aux_sym_subsubsection_repeat1] = STATE(413), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(8768), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(8771), - [aux_sym_subparagraph_token1] = ACTIONS(8774), - [anon_sym_BSLASHitem] = ACTIONS(8777), - [anon_sym_LBRACK] = ACTIONS(8780), - [anon_sym_RBRACK] = ACTIONS(3112), - [anon_sym_LBRACE] = ACTIONS(8783), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(8780), - [anon_sym_COMMA] = ACTIONS(8786), - [anon_sym_EQ] = ACTIONS(8786), - [sym_word] = ACTIONS(8786), - [sym_param] = ACTIONS(8789), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8792), - [anon_sym_BSLASH_LBRACK] = ACTIONS(8792), - [anon_sym_DOLLAR] = ACTIONS(8795), - [anon_sym_BSLASH_LPAREN] = ACTIONS(8798), - [anon_sym_BSLASHbegin] = ACTIONS(3149), - [anon_sym_BSLASHcaption] = ACTIONS(8801), - [aux_sym_citation_token1] = ACTIONS(8804), - [aux_sym_package_include_token1] = ACTIONS(8807), - [anon_sym_BSLASHdocumentclass] = ACTIONS(8810), - [aux_sym_latex_include_token1] = ACTIONS(8813), - [aux_sym_latex_input_token1] = ACTIONS(8816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(8819), - [anon_sym_BSLASHbibliography] = ACTIONS(8822), - [anon_sym_BSLASHincludegraphics] = ACTIONS(8825), - [anon_sym_BSLASHincludesvg] = ACTIONS(8828), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(8831), - [aux_sym_verbatim_include_token1] = ACTIONS(8834), - [aux_sym_import_token1] = ACTIONS(8837), - [anon_sym_BSLASHlabel] = ACTIONS(8840), - [aux_sym_label_reference_token1] = ACTIONS(8843), - [anon_sym_BSLASHeqref] = ACTIONS(8846), - [aux_sym_label_reference_range_token1] = ACTIONS(8849), - [anon_sym_BSLASHnewlabel] = ACTIONS(8852), - [aux_sym_command_definition_token1] = ACTIONS(8855), - [aux_sym_math_operator_token1] = ACTIONS(8858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8861), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(8864), - [anon_sym_BSLASHnewacronym] = ACTIONS(8867), - [aux_sym_acronym_reference_token1] = ACTIONS(8870), - [aux_sym_theorem_definition_token1] = ACTIONS(8873), - [aux_sym_color_reference_token1] = ACTIONS(8876), - [anon_sym_BSLASHdefinecolor] = ACTIONS(8879), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(8882), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(8885), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8888), - }, - [414] = { - [sym__simple_content] = STATE(420), - [sym_enum_item] = STATE(420), - [sym_brace_group] = STATE(420), - [sym_mixed_group] = STATE(420), - [sym_text] = STATE(420), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(420), - [sym_inline_formula] = STATE(420), - [sym_begin] = STATE(105), - [sym_environment] = STATE(420), - [sym_caption] = STATE(420), - [sym_citation] = STATE(420), - [sym_package_include] = STATE(420), - [sym_class_include] = STATE(420), - [sym_latex_include] = STATE(420), - [sym_latex_input] = STATE(420), - [sym_biblatex_include] = STATE(420), - [sym_bibtex_include] = STATE(420), - [sym_graphics_include] = STATE(420), - [sym_svg_include] = STATE(420), - [sym_inkscape_include] = STATE(420), - [sym_verbatim_include] = STATE(420), - [sym_import] = STATE(420), - [sym_label_definition] = STATE(420), - [sym_label_reference] = STATE(420), - [sym_equation_label_reference] = STATE(420), - [sym_label_reference_range] = STATE(420), - [sym_label_number] = STATE(420), - [sym_command_definition] = STATE(420), - [sym_math_operator] = STATE(420), - [sym_glossary_entry_definition] = STATE(420), - [sym_glossary_entry_reference] = STATE(420), - [sym_acronym_definition] = STATE(420), - [sym_acronym_reference] = STATE(420), - [sym_theorem_definition] = STATE(420), - [sym_color_reference] = STATE(420), - [sym_color_definition] = STATE(420), - [sym_color_set_definition] = STATE(420), - [sym_pgf_library_import] = STATE(420), - [sym_tikz_library_import] = STATE(420), - [sym_generic_command] = STATE(420), - [aux_sym_subparagraph_repeat1] = STATE(420), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(4808), - [aux_sym_subsubsection_token1] = ACTIONS(4808), - [aux_sym_paragraph_token1] = ACTIONS(4808), - [aux_sym_subparagraph_token1] = ACTIONS(4808), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(4806), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(4806), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(8891), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [415] = { - [sym__simple_content] = STATE(415), - [sym_subparagraph] = STATE(415), - [sym_enum_item] = STATE(415), - [sym_brace_group] = STATE(415), - [sym_mixed_group] = STATE(415), - [sym_text] = STATE(415), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(415), - [sym_inline_formula] = STATE(415), - [sym_begin] = STATE(112), - [sym_environment] = STATE(415), - [sym_caption] = STATE(415), - [sym_citation] = STATE(415), - [sym_package_include] = STATE(415), - [sym_class_include] = STATE(415), - [sym_latex_include] = STATE(415), - [sym_latex_input] = STATE(415), - [sym_biblatex_include] = STATE(415), - [sym_bibtex_include] = STATE(415), - [sym_graphics_include] = STATE(415), - [sym_svg_include] = STATE(415), - [sym_inkscape_include] = STATE(415), - [sym_verbatim_include] = STATE(415), - [sym_import] = STATE(415), - [sym_label_definition] = STATE(415), - [sym_label_reference] = STATE(415), - [sym_equation_label_reference] = STATE(415), - [sym_label_reference_range] = STATE(415), - [sym_label_number] = STATE(415), - [sym_command_definition] = STATE(415), - [sym_math_operator] = STATE(415), - [sym_glossary_entry_definition] = STATE(415), - [sym_glossary_entry_reference] = STATE(415), - [sym_acronym_definition] = STATE(415), - [sym_acronym_reference] = STATE(415), - [sym_theorem_definition] = STATE(415), - [sym_color_reference] = STATE(415), - [sym_color_definition] = STATE(415), - [sym_color_set_definition] = STATE(415), - [sym_pgf_library_import] = STATE(415), - [sym_tikz_library_import] = STATE(415), - [sym_generic_command] = STATE(415), - [aux_sym_paragraph_repeat1] = STATE(415), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(8893), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(3889), - [aux_sym_paragraph_token1] = ACTIONS(3889), - [aux_sym_subparagraph_token1] = ACTIONS(8896), - [anon_sym_BSLASHitem] = ACTIONS(8899), - [anon_sym_LBRACK] = ACTIONS(8902), - [anon_sym_RBRACK] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(8905), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_LPAREN] = ACTIONS(8902), - [anon_sym_COMMA] = ACTIONS(8908), - [anon_sym_EQ] = ACTIONS(8908), - [sym_word] = ACTIONS(8908), - [sym_param] = ACTIONS(8911), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8914), - [anon_sym_BSLASH_LBRACK] = ACTIONS(8914), - [anon_sym_DOLLAR] = ACTIONS(8917), - [anon_sym_BSLASH_LPAREN] = ACTIONS(8920), - [anon_sym_BSLASHbegin] = ACTIONS(3918), - [anon_sym_BSLASHcaption] = ACTIONS(8923), - [aux_sym_citation_token1] = ACTIONS(8926), - [aux_sym_package_include_token1] = ACTIONS(8929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(8932), - [aux_sym_latex_include_token1] = ACTIONS(8935), - [aux_sym_latex_input_token1] = ACTIONS(8938), - [anon_sym_BSLASHaddbibresource] = ACTIONS(8941), - [anon_sym_BSLASHbibliography] = ACTIONS(8944), - [anon_sym_BSLASHincludegraphics] = ACTIONS(8947), - [anon_sym_BSLASHincludesvg] = ACTIONS(8950), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(8953), - [aux_sym_verbatim_include_token1] = ACTIONS(8956), - [aux_sym_import_token1] = ACTIONS(8959), - [anon_sym_BSLASHlabel] = ACTIONS(8962), - [aux_sym_label_reference_token1] = ACTIONS(8965), - [anon_sym_BSLASHeqref] = ACTIONS(8968), - [aux_sym_label_reference_range_token1] = ACTIONS(8971), - [anon_sym_BSLASHnewlabel] = ACTIONS(8974), - [aux_sym_command_definition_token1] = ACTIONS(8977), - [aux_sym_math_operator_token1] = ACTIONS(8980), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8983), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(8986), - [anon_sym_BSLASHnewacronym] = ACTIONS(8989), - [aux_sym_acronym_reference_token1] = ACTIONS(8992), - [aux_sym_theorem_definition_token1] = ACTIONS(8995), - [aux_sym_color_reference_token1] = ACTIONS(8998), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9001), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9004), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9010), - }, - [416] = { - [sym__simple_content] = STATE(421), - [sym_brace_group] = STATE(421), - [sym_mixed_group] = STATE(421), - [sym_text] = STATE(421), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(421), - [sym_inline_formula] = STATE(421), - [sym_begin] = STATE(94), - [sym_environment] = STATE(421), - [sym_caption] = STATE(421), - [sym_citation] = STATE(421), - [sym_package_include] = STATE(421), - [sym_class_include] = STATE(421), - [sym_latex_include] = STATE(421), - [sym_latex_input] = STATE(421), - [sym_biblatex_include] = STATE(421), - [sym_bibtex_include] = STATE(421), - [sym_graphics_include] = STATE(421), - [sym_svg_include] = STATE(421), - [sym_inkscape_include] = STATE(421), - [sym_verbatim_include] = STATE(421), - [sym_import] = STATE(421), - [sym_label_definition] = STATE(421), - [sym_label_reference] = STATE(421), - [sym_equation_label_reference] = STATE(421), - [sym_label_reference_range] = STATE(421), - [sym_label_number] = STATE(421), - [sym_command_definition] = STATE(421), - [sym_math_operator] = STATE(421), - [sym_glossary_entry_definition] = STATE(421), - [sym_glossary_entry_reference] = STATE(421), - [sym_acronym_definition] = STATE(421), - [sym_acronym_reference] = STATE(421), - [sym_theorem_definition] = STATE(421), - [sym_color_reference] = STATE(421), - [sym_color_definition] = STATE(421), - [sym_color_set_definition] = STATE(421), - [sym_pgf_library_import] = STATE(421), - [sym_tikz_library_import] = STATE(421), - [sym_generic_command] = STATE(421), - [aux_sym_enum_item_repeat1] = STATE(421), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(5204), - [aux_sym_subsection_token1] = ACTIONS(5204), - [aux_sym_subsubsection_token1] = ACTIONS(5204), - [aux_sym_paragraph_token1] = ACTIONS(5204), - [aux_sym_subparagraph_token1] = ACTIONS(5204), - [anon_sym_BSLASHitem] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(3804), - [anon_sym_RBRACK] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(8766), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [417] = { - [sym__simple_content] = STATE(423), - [sym_paragraph] = STATE(423), - [sym_subparagraph] = STATE(423), - [sym_enum_item] = STATE(423), - [sym_brace_group] = STATE(423), - [sym_mixed_group] = STATE(423), - [sym_text] = STATE(423), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(423), - [sym_inline_formula] = STATE(423), - [sym_begin] = STATE(99), - [sym_environment] = STATE(423), - [sym_caption] = STATE(423), - [sym_citation] = STATE(423), - [sym_package_include] = STATE(423), - [sym_class_include] = STATE(423), - [sym_latex_include] = STATE(423), - [sym_latex_input] = STATE(423), - [sym_biblatex_include] = STATE(423), - [sym_bibtex_include] = STATE(423), - [sym_graphics_include] = STATE(423), - [sym_svg_include] = STATE(423), - [sym_inkscape_include] = STATE(423), - [sym_verbatim_include] = STATE(423), - [sym_import] = STATE(423), - [sym_label_definition] = STATE(423), - [sym_label_reference] = STATE(423), - [sym_equation_label_reference] = STATE(423), - [sym_label_reference_range] = STATE(423), - [sym_label_number] = STATE(423), - [sym_command_definition] = STATE(423), - [sym_math_operator] = STATE(423), - [sym_glossary_entry_definition] = STATE(423), - [sym_glossary_entry_reference] = STATE(423), - [sym_acronym_definition] = STATE(423), - [sym_acronym_reference] = STATE(423), - [sym_theorem_definition] = STATE(423), - [sym_color_reference] = STATE(423), - [sym_color_definition] = STATE(423), - [sym_color_set_definition] = STATE(423), - [sym_pgf_library_import] = STATE(423), - [sym_tikz_library_import] = STATE(423), - [sym_generic_command] = STATE(423), - [aux_sym_subsubsection_repeat1] = STATE(423), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(9013), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(9015), - [aux_sym_subparagraph_token1] = ACTIONS(9017), - [anon_sym_BSLASHitem] = ACTIONS(9019), - [anon_sym_LBRACK] = ACTIONS(9021), - [anon_sym_RBRACK] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(9023), - [anon_sym_RBRACE] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(9021), - [anon_sym_COMMA] = ACTIONS(9025), - [anon_sym_EQ] = ACTIONS(9025), - [sym_word] = ACTIONS(9025), - [sym_param] = ACTIONS(9027), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9029), - [anon_sym_DOLLAR] = ACTIONS(9031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9033), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9035), - [aux_sym_citation_token1] = ACTIONS(9037), - [aux_sym_package_include_token1] = ACTIONS(9039), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9041), - [aux_sym_latex_include_token1] = ACTIONS(9043), - [aux_sym_latex_input_token1] = ACTIONS(9045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9047), - [anon_sym_BSLASHbibliography] = ACTIONS(9049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9051), - [anon_sym_BSLASHincludesvg] = ACTIONS(9053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9055), - [aux_sym_verbatim_include_token1] = ACTIONS(9057), - [aux_sym_import_token1] = ACTIONS(9059), - [anon_sym_BSLASHlabel] = ACTIONS(9061), - [aux_sym_label_reference_token1] = ACTIONS(9063), - [anon_sym_BSLASHeqref] = ACTIONS(9065), - [aux_sym_label_reference_range_token1] = ACTIONS(9067), - [anon_sym_BSLASHnewlabel] = ACTIONS(9069), - [aux_sym_command_definition_token1] = ACTIONS(9071), - [aux_sym_math_operator_token1] = ACTIONS(9073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9075), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9077), - [anon_sym_BSLASHnewacronym] = ACTIONS(9079), - [aux_sym_acronym_reference_token1] = ACTIONS(9081), - [aux_sym_theorem_definition_token1] = ACTIONS(9083), - [aux_sym_color_reference_token1] = ACTIONS(9085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9087), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9091), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9093), - }, - [418] = { - [sym__simple_content] = STATE(414), - [sym_enum_item] = STATE(414), - [sym_brace_group] = STATE(414), - [sym_mixed_group] = STATE(414), - [sym_text] = STATE(414), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(414), - [sym_inline_formula] = STATE(414), - [sym_begin] = STATE(105), - [sym_environment] = STATE(414), - [sym_caption] = STATE(414), - [sym_citation] = STATE(414), - [sym_package_include] = STATE(414), - [sym_class_include] = STATE(414), - [sym_latex_include] = STATE(414), - [sym_latex_input] = STATE(414), - [sym_biblatex_include] = STATE(414), - [sym_bibtex_include] = STATE(414), - [sym_graphics_include] = STATE(414), - [sym_svg_include] = STATE(414), - [sym_inkscape_include] = STATE(414), - [sym_verbatim_include] = STATE(414), - [sym_import] = STATE(414), - [sym_label_definition] = STATE(414), - [sym_label_reference] = STATE(414), - [sym_equation_label_reference] = STATE(414), - [sym_label_reference_range] = STATE(414), - [sym_label_number] = STATE(414), - [sym_command_definition] = STATE(414), - [sym_math_operator] = STATE(414), - [sym_glossary_entry_definition] = STATE(414), - [sym_glossary_entry_reference] = STATE(414), - [sym_acronym_definition] = STATE(414), - [sym_acronym_reference] = STATE(414), - [sym_theorem_definition] = STATE(414), - [sym_color_reference] = STATE(414), - [sym_color_definition] = STATE(414), - [sym_color_set_definition] = STATE(414), - [sym_pgf_library_import] = STATE(414), - [sym_tikz_library_import] = STATE(414), - [sym_generic_command] = STATE(414), - [aux_sym_subparagraph_repeat1] = STATE(414), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(4543), - [aux_sym_subsubsection_token1] = ACTIONS(4543), - [aux_sym_paragraph_token1] = ACTIONS(4543), - [aux_sym_subparagraph_token1] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(5868), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(9095), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [419] = { - [sym__simple_content] = STATE(415), - [sym_subparagraph] = STATE(415), - [sym_enum_item] = STATE(415), - [sym_brace_group] = STATE(415), - [sym_mixed_group] = STATE(415), - [sym_text] = STATE(415), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(415), - [sym_inline_formula] = STATE(415), - [sym_begin] = STATE(112), - [sym_environment] = STATE(415), - [sym_caption] = STATE(415), - [sym_citation] = STATE(415), - [sym_package_include] = STATE(415), - [sym_class_include] = STATE(415), - [sym_latex_include] = STATE(415), - [sym_latex_input] = STATE(415), - [sym_biblatex_include] = STATE(415), - [sym_bibtex_include] = STATE(415), - [sym_graphics_include] = STATE(415), - [sym_svg_include] = STATE(415), - [sym_inkscape_include] = STATE(415), - [sym_verbatim_include] = STATE(415), - [sym_import] = STATE(415), - [sym_label_definition] = STATE(415), - [sym_label_reference] = STATE(415), - [sym_equation_label_reference] = STATE(415), - [sym_label_reference_range] = STATE(415), - [sym_label_number] = STATE(415), - [sym_command_definition] = STATE(415), - [sym_math_operator] = STATE(415), - [sym_glossary_entry_definition] = STATE(415), - [sym_glossary_entry_reference] = STATE(415), - [sym_acronym_definition] = STATE(415), - [sym_acronym_reference] = STATE(415), - [sym_theorem_definition] = STATE(415), - [sym_color_reference] = STATE(415), - [sym_color_definition] = STATE(415), - [sym_color_set_definition] = STATE(415), - [sym_pgf_library_import] = STATE(415), - [sym_tikz_library_import] = STATE(415), - [sym_generic_command] = STATE(415), - [aux_sym_paragraph_repeat1] = STATE(415), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(7080), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(3880), - [aux_sym_paragraph_token1] = ACTIONS(3880), - [aux_sym_subparagraph_token1] = ACTIONS(7086), - [anon_sym_BSLASHitem] = ACTIONS(7088), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(3878), - [anon_sym_LBRACE] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(3878), - [anon_sym_LPAREN] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(7094), - [sym_word] = ACTIONS(7094), - [sym_param] = ACTIONS(9097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7098), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7098), - [anon_sym_DOLLAR] = ACTIONS(7100), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7102), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(7104), - [aux_sym_citation_token1] = ACTIONS(7106), - [aux_sym_package_include_token1] = ACTIONS(7108), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7110), - [aux_sym_latex_include_token1] = ACTIONS(7112), - [aux_sym_latex_input_token1] = ACTIONS(7114), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7116), - [anon_sym_BSLASHbibliography] = ACTIONS(7118), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7120), - [anon_sym_BSLASHincludesvg] = ACTIONS(7122), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7124), - [aux_sym_verbatim_include_token1] = ACTIONS(7126), - [aux_sym_import_token1] = ACTIONS(7128), - [anon_sym_BSLASHlabel] = ACTIONS(7130), - [aux_sym_label_reference_token1] = ACTIONS(7132), - [anon_sym_BSLASHeqref] = ACTIONS(7134), - [aux_sym_label_reference_range_token1] = ACTIONS(7136), - [anon_sym_BSLASHnewlabel] = ACTIONS(7138), - [aux_sym_command_definition_token1] = ACTIONS(7140), - [aux_sym_math_operator_token1] = ACTIONS(7142), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7144), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7146), - [anon_sym_BSLASHnewacronym] = ACTIONS(7148), - [aux_sym_acronym_reference_token1] = ACTIONS(7150), - [aux_sym_theorem_definition_token1] = ACTIONS(7152), - [aux_sym_color_reference_token1] = ACTIONS(7154), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7156), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7160), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7162), - }, - [420] = { - [sym__simple_content] = STATE(420), - [sym_enum_item] = STATE(420), - [sym_brace_group] = STATE(420), - [sym_mixed_group] = STATE(420), - [sym_text] = STATE(420), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(420), - [sym_inline_formula] = STATE(420), - [sym_begin] = STATE(105), - [sym_environment] = STATE(420), - [sym_caption] = STATE(420), - [sym_citation] = STATE(420), - [sym_package_include] = STATE(420), - [sym_class_include] = STATE(420), - [sym_latex_include] = STATE(420), - [sym_latex_input] = STATE(420), - [sym_biblatex_include] = STATE(420), - [sym_bibtex_include] = STATE(420), - [sym_graphics_include] = STATE(420), - [sym_svg_include] = STATE(420), - [sym_inkscape_include] = STATE(420), - [sym_verbatim_include] = STATE(420), - [sym_import] = STATE(420), - [sym_label_definition] = STATE(420), - [sym_label_reference] = STATE(420), - [sym_equation_label_reference] = STATE(420), - [sym_label_reference_range] = STATE(420), - [sym_label_number] = STATE(420), - [sym_command_definition] = STATE(420), - [sym_math_operator] = STATE(420), - [sym_glossary_entry_definition] = STATE(420), - [sym_glossary_entry_reference] = STATE(420), - [sym_acronym_definition] = STATE(420), - [sym_acronym_reference] = STATE(420), - [sym_theorem_definition] = STATE(420), - [sym_color_reference] = STATE(420), - [sym_color_definition] = STATE(420), - [sym_color_set_definition] = STATE(420), - [sym_pgf_library_import] = STATE(420), - [sym_tikz_library_import] = STATE(420), - [sym_generic_command] = STATE(420), - [aux_sym_subparagraph_repeat1] = STATE(420), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(9099), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(5069), - [aux_sym_subsubsection_token1] = ACTIONS(5069), - [aux_sym_paragraph_token1] = ACTIONS(5069), - [aux_sym_subparagraph_token1] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(9102), - [anon_sym_LBRACK] = ACTIONS(9105), - [anon_sym_RBRACK] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(9108), - [anon_sym_RBRACE] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(9105), - [anon_sym_COMMA] = ACTIONS(9111), - [anon_sym_EQ] = ACTIONS(9111), - [sym_word] = ACTIONS(9111), - [sym_param] = ACTIONS(9114), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9117), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9117), - [anon_sym_DOLLAR] = ACTIONS(9120), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9123), - [anon_sym_BSLASHbegin] = ACTIONS(5095), - [anon_sym_BSLASHcaption] = ACTIONS(9126), - [aux_sym_citation_token1] = ACTIONS(9129), - [aux_sym_package_include_token1] = ACTIONS(9132), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9135), - [aux_sym_latex_include_token1] = ACTIONS(9138), - [aux_sym_latex_input_token1] = ACTIONS(9141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9144), - [anon_sym_BSLASHbibliography] = ACTIONS(9147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9150), - [anon_sym_BSLASHincludesvg] = ACTIONS(9153), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9156), - [aux_sym_verbatim_include_token1] = ACTIONS(9159), - [aux_sym_import_token1] = ACTIONS(9162), - [anon_sym_BSLASHlabel] = ACTIONS(9165), - [aux_sym_label_reference_token1] = ACTIONS(9168), - [anon_sym_BSLASHeqref] = ACTIONS(9171), - [aux_sym_label_reference_range_token1] = ACTIONS(9174), - [anon_sym_BSLASHnewlabel] = ACTIONS(9177), - [aux_sym_command_definition_token1] = ACTIONS(9180), - [aux_sym_math_operator_token1] = ACTIONS(9183), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9186), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9189), - [anon_sym_BSLASHnewacronym] = ACTIONS(9192), - [aux_sym_acronym_reference_token1] = ACTIONS(9195), - [aux_sym_theorem_definition_token1] = ACTIONS(9198), - [aux_sym_color_reference_token1] = ACTIONS(9201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9204), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9207), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9210), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9213), - }, - [421] = { - [sym__simple_content] = STATE(421), - [sym_brace_group] = STATE(421), - [sym_mixed_group] = STATE(421), - [sym_text] = STATE(421), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(421), - [sym_inline_formula] = STATE(421), - [sym_begin] = STATE(94), - [sym_environment] = STATE(421), - [sym_caption] = STATE(421), - [sym_citation] = STATE(421), - [sym_package_include] = STATE(421), - [sym_class_include] = STATE(421), - [sym_latex_include] = STATE(421), - [sym_latex_input] = STATE(421), - [sym_biblatex_include] = STATE(421), - [sym_bibtex_include] = STATE(421), - [sym_graphics_include] = STATE(421), - [sym_svg_include] = STATE(421), - [sym_inkscape_include] = STATE(421), - [sym_verbatim_include] = STATE(421), - [sym_import] = STATE(421), - [sym_label_definition] = STATE(421), - [sym_label_reference] = STATE(421), - [sym_equation_label_reference] = STATE(421), - [sym_label_reference_range] = STATE(421), - [sym_label_number] = STATE(421), - [sym_command_definition] = STATE(421), - [sym_math_operator] = STATE(421), - [sym_glossary_entry_definition] = STATE(421), - [sym_glossary_entry_reference] = STATE(421), - [sym_acronym_definition] = STATE(421), - [sym_acronym_reference] = STATE(421), - [sym_theorem_definition] = STATE(421), - [sym_color_reference] = STATE(421), - [sym_color_definition] = STATE(421), - [sym_color_set_definition] = STATE(421), - [sym_pgf_library_import] = STATE(421), - [sym_tikz_library_import] = STATE(421), - [sym_generic_command] = STATE(421), - [aux_sym_enum_item_repeat1] = STATE(421), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(9216), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(5613), - [aux_sym_subsection_token1] = ACTIONS(5613), - [aux_sym_subsubsection_token1] = ACTIONS(5613), - [aux_sym_paragraph_token1] = ACTIONS(5613), - [aux_sym_subparagraph_token1] = ACTIONS(5613), - [anon_sym_BSLASHitem] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(9219), - [anon_sym_RBRACK] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(9222), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_LPAREN] = ACTIONS(9219), - [anon_sym_COMMA] = ACTIONS(9225), - [anon_sym_EQ] = ACTIONS(9225), - [sym_word] = ACTIONS(9225), - [sym_param] = ACTIONS(9228), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9231), - [anon_sym_DOLLAR] = ACTIONS(9234), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9237), - [anon_sym_BSLASHbegin] = ACTIONS(5636), - [anon_sym_BSLASHcaption] = ACTIONS(9240), - [aux_sym_citation_token1] = ACTIONS(9243), - [aux_sym_package_include_token1] = ACTIONS(9246), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9249), - [aux_sym_latex_include_token1] = ACTIONS(9252), - [aux_sym_latex_input_token1] = ACTIONS(9255), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9258), - [anon_sym_BSLASHbibliography] = ACTIONS(9261), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9264), - [anon_sym_BSLASHincludesvg] = ACTIONS(9267), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9270), - [aux_sym_verbatim_include_token1] = ACTIONS(9273), - [aux_sym_import_token1] = ACTIONS(9276), - [anon_sym_BSLASHlabel] = ACTIONS(9279), - [aux_sym_label_reference_token1] = ACTIONS(9282), - [anon_sym_BSLASHeqref] = ACTIONS(9285), - [aux_sym_label_reference_range_token1] = ACTIONS(9288), - [anon_sym_BSLASHnewlabel] = ACTIONS(9291), - [aux_sym_command_definition_token1] = ACTIONS(9294), - [aux_sym_math_operator_token1] = ACTIONS(9297), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9300), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9303), - [anon_sym_BSLASHnewacronym] = ACTIONS(9306), - [aux_sym_acronym_reference_token1] = ACTIONS(9309), - [aux_sym_theorem_definition_token1] = ACTIONS(9312), - [aux_sym_color_reference_token1] = ACTIONS(9315), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9318), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9324), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9327), - }, - [422] = { - [sym__simple_content] = STATE(416), - [sym_brace_group] = STATE(416), - [sym_mixed_group] = STATE(416), - [sym_text] = STATE(416), - [sym__text_fragment] = STATE(645), - [sym_displayed_equation] = STATE(416), - [sym_inline_formula] = STATE(416), - [sym_begin] = STATE(94), - [sym_environment] = STATE(416), - [sym_caption] = STATE(416), - [sym_citation] = STATE(416), - [sym_package_include] = STATE(416), - [sym_class_include] = STATE(416), - [sym_latex_include] = STATE(416), - [sym_latex_input] = STATE(416), - [sym_biblatex_include] = STATE(416), - [sym_bibtex_include] = STATE(416), - [sym_graphics_include] = STATE(416), - [sym_svg_include] = STATE(416), - [sym_inkscape_include] = STATE(416), - [sym_verbatim_include] = STATE(416), - [sym_import] = STATE(416), - [sym_label_definition] = STATE(416), - [sym_label_reference] = STATE(416), - [sym_equation_label_reference] = STATE(416), - [sym_label_reference_range] = STATE(416), - [sym_label_number] = STATE(416), - [sym_command_definition] = STATE(416), - [sym_math_operator] = STATE(416), - [sym_glossary_entry_definition] = STATE(416), - [sym_glossary_entry_reference] = STATE(416), - [sym_acronym_definition] = STATE(416), - [sym_acronym_reference] = STATE(416), - [sym_theorem_definition] = STATE(416), - [sym_color_reference] = STATE(416), - [sym_color_definition] = STATE(416), - [sym_color_set_definition] = STATE(416), - [sym_pgf_library_import] = STATE(416), - [sym_tikz_library_import] = STATE(416), - [sym_generic_command] = STATE(416), - [aux_sym_enum_item_repeat1] = STATE(416), - [aux_sym_text_repeat1] = STATE(645), - [sym_generic_command_name] = ACTIONS(3790), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_section_token1] = ACTIONS(5602), - [aux_sym_subsection_token1] = ACTIONS(5602), - [aux_sym_subsubsection_token1] = ACTIONS(5602), - [aux_sym_paragraph_token1] = ACTIONS(5602), - [aux_sym_subparagraph_token1] = ACTIONS(5602), - [anon_sym_BSLASHitem] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(9330), - [anon_sym_RBRACK] = ACTIONS(5600), - [anon_sym_LBRACE] = ACTIONS(3806), - [anon_sym_RBRACE] = ACTIONS(5600), - [anon_sym_LPAREN] = ACTIONS(3804), - [anon_sym_COMMA] = ACTIONS(3808), - [anon_sym_EQ] = ACTIONS(3808), - [sym_word] = ACTIONS(3808), - [sym_param] = ACTIONS(9332), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3812), - [anon_sym_DOLLAR] = ACTIONS(3814), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3816), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(3818), - [aux_sym_citation_token1] = ACTIONS(3820), - [aux_sym_package_include_token1] = ACTIONS(3822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3824), - [aux_sym_latex_include_token1] = ACTIONS(3826), - [aux_sym_latex_input_token1] = ACTIONS(3828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3830), - [anon_sym_BSLASHbibliography] = ACTIONS(3832), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3834), - [anon_sym_BSLASHincludesvg] = ACTIONS(3836), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), - [aux_sym_verbatim_include_token1] = ACTIONS(3840), - [aux_sym_import_token1] = ACTIONS(3842), - [anon_sym_BSLASHlabel] = ACTIONS(3844), - [aux_sym_label_reference_token1] = ACTIONS(3846), - [anon_sym_BSLASHeqref] = ACTIONS(3848), - [aux_sym_label_reference_range_token1] = ACTIONS(3850), - [anon_sym_BSLASHnewlabel] = ACTIONS(3852), - [aux_sym_command_definition_token1] = ACTIONS(3854), - [aux_sym_math_operator_token1] = ACTIONS(3856), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3858), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(3860), - [anon_sym_BSLASHnewacronym] = ACTIONS(3862), - [aux_sym_acronym_reference_token1] = ACTIONS(3864), - [aux_sym_theorem_definition_token1] = ACTIONS(3866), - [aux_sym_color_reference_token1] = ACTIONS(3868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3872), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3874), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3876), - }, - [423] = { - [sym__simple_content] = STATE(413), - [sym_paragraph] = STATE(413), - [sym_subparagraph] = STATE(413), - [sym_enum_item] = STATE(413), - [sym_brace_group] = STATE(413), - [sym_mixed_group] = STATE(413), - [sym_text] = STATE(413), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(413), - [sym_inline_formula] = STATE(413), - [sym_begin] = STATE(99), - [sym_environment] = STATE(413), - [sym_caption] = STATE(413), - [sym_citation] = STATE(413), - [sym_package_include] = STATE(413), - [sym_class_include] = STATE(413), - [sym_latex_include] = STATE(413), - [sym_latex_input] = STATE(413), - [sym_biblatex_include] = STATE(413), - [sym_bibtex_include] = STATE(413), - [sym_graphics_include] = STATE(413), - [sym_svg_include] = STATE(413), - [sym_inkscape_include] = STATE(413), - [sym_verbatim_include] = STATE(413), - [sym_import] = STATE(413), - [sym_label_definition] = STATE(413), - [sym_label_reference] = STATE(413), - [sym_equation_label_reference] = STATE(413), - [sym_label_reference_range] = STATE(413), - [sym_label_number] = STATE(413), - [sym_command_definition] = STATE(413), - [sym_math_operator] = STATE(413), - [sym_glossary_entry_definition] = STATE(413), - [sym_glossary_entry_reference] = STATE(413), - [sym_acronym_definition] = STATE(413), - [sym_acronym_reference] = STATE(413), - [sym_theorem_definition] = STATE(413), - [sym_color_reference] = STATE(413), - [sym_color_definition] = STATE(413), - [sym_color_set_definition] = STATE(413), - [sym_pgf_library_import] = STATE(413), - [sym_tikz_library_import] = STATE(413), - [sym_generic_command] = STATE(413), - [aux_sym_subsubsection_repeat1] = STATE(413), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(9013), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(9015), - [aux_sym_subparagraph_token1] = ACTIONS(9017), - [anon_sym_BSLASHitem] = ACTIONS(9019), - [anon_sym_LBRACK] = ACTIONS(9021), - [anon_sym_RBRACK] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(9023), - [anon_sym_RBRACE] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(9021), - [anon_sym_COMMA] = ACTIONS(9025), - [anon_sym_EQ] = ACTIONS(9025), - [sym_word] = ACTIONS(9025), - [sym_param] = ACTIONS(9334), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9029), - [anon_sym_DOLLAR] = ACTIONS(9031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9033), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9035), - [aux_sym_citation_token1] = ACTIONS(9037), - [aux_sym_package_include_token1] = ACTIONS(9039), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9041), - [aux_sym_latex_include_token1] = ACTIONS(9043), - [aux_sym_latex_input_token1] = ACTIONS(9045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9047), - [anon_sym_BSLASHbibliography] = ACTIONS(9049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9051), - [anon_sym_BSLASHincludesvg] = ACTIONS(9053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9055), - [aux_sym_verbatim_include_token1] = ACTIONS(9057), - [aux_sym_import_token1] = ACTIONS(9059), - [anon_sym_BSLASHlabel] = ACTIONS(9061), - [aux_sym_label_reference_token1] = ACTIONS(9063), - [anon_sym_BSLASHeqref] = ACTIONS(9065), - [aux_sym_label_reference_range_token1] = ACTIONS(9067), - [anon_sym_BSLASHnewlabel] = ACTIONS(9069), - [aux_sym_command_definition_token1] = ACTIONS(9071), - [aux_sym_math_operator_token1] = ACTIONS(9073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9075), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9077), - [anon_sym_BSLASHnewacronym] = ACTIONS(9079), - [aux_sym_acronym_reference_token1] = ACTIONS(9081), - [aux_sym_theorem_definition_token1] = ACTIONS(9083), - [aux_sym_color_reference_token1] = ACTIONS(9085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9087), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9091), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9093), - }, - [424] = { - [sym__simple_content] = STATE(428), - [sym_brace_group] = STATE(428), - [sym_mixed_group] = STATE(428), - [sym_text] = STATE(428), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(428), - [sym_inline_formula] = STATE(428), - [sym_begin] = STATE(105), - [sym_environment] = STATE(428), - [sym_caption] = STATE(428), - [sym_citation] = STATE(428), - [sym_package_include] = STATE(428), - [sym_class_include] = STATE(428), - [sym_latex_include] = STATE(428), - [sym_latex_input] = STATE(428), - [sym_biblatex_include] = STATE(428), - [sym_bibtex_include] = STATE(428), - [sym_graphics_include] = STATE(428), - [sym_svg_include] = STATE(428), - [sym_inkscape_include] = STATE(428), - [sym_verbatim_include] = STATE(428), - [sym_import] = STATE(428), - [sym_label_definition] = STATE(428), - [sym_label_reference] = STATE(428), - [sym_equation_label_reference] = STATE(428), - [sym_label_reference_range] = STATE(428), - [sym_label_number] = STATE(428), - [sym_command_definition] = STATE(428), - [sym_math_operator] = STATE(428), - [sym_glossary_entry_definition] = STATE(428), - [sym_glossary_entry_reference] = STATE(428), - [sym_acronym_definition] = STATE(428), - [sym_acronym_reference] = STATE(428), - [sym_theorem_definition] = STATE(428), - [sym_color_reference] = STATE(428), - [sym_color_definition] = STATE(428), - [sym_color_set_definition] = STATE(428), - [sym_pgf_library_import] = STATE(428), - [sym_tikz_library_import] = STATE(428), - [sym_generic_command] = STATE(428), - [aux_sym_enum_item_repeat1] = STATE(428), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(5204), - [aux_sym_subsubsection_token1] = ACTIONS(5204), - [aux_sym_paragraph_token1] = ACTIONS(5204), - [aux_sym_subparagraph_token1] = ACTIONS(5204), - [anon_sym_BSLASHitem] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(9336), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [425] = { - [sym__simple_content] = STATE(427), - [sym_enum_item] = STATE(427), - [sym_brace_group] = STATE(427), - [sym_mixed_group] = STATE(427), - [sym_text] = STATE(427), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(427), - [sym_inline_formula] = STATE(427), - [sym_begin] = STATE(112), - [sym_environment] = STATE(427), - [sym_caption] = STATE(427), - [sym_citation] = STATE(427), - [sym_package_include] = STATE(427), - [sym_class_include] = STATE(427), - [sym_latex_include] = STATE(427), - [sym_latex_input] = STATE(427), - [sym_biblatex_include] = STATE(427), - [sym_bibtex_include] = STATE(427), - [sym_graphics_include] = STATE(427), - [sym_svg_include] = STATE(427), - [sym_inkscape_include] = STATE(427), - [sym_verbatim_include] = STATE(427), - [sym_import] = STATE(427), - [sym_label_definition] = STATE(427), - [sym_label_reference] = STATE(427), - [sym_equation_label_reference] = STATE(427), - [sym_label_reference_range] = STATE(427), - [sym_label_number] = STATE(427), - [sym_command_definition] = STATE(427), - [sym_math_operator] = STATE(427), - [sym_glossary_entry_definition] = STATE(427), - [sym_glossary_entry_reference] = STATE(427), - [sym_acronym_definition] = STATE(427), - [sym_acronym_reference] = STATE(427), - [sym_theorem_definition] = STATE(427), - [sym_color_reference] = STATE(427), - [sym_color_definition] = STATE(427), - [sym_color_set_definition] = STATE(427), - [sym_pgf_library_import] = STATE(427), - [sym_tikz_library_import] = STATE(427), - [sym_generic_command] = STATE(427), - [aux_sym_subparagraph_repeat1] = STATE(427), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(7080), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(4543), - [aux_sym_paragraph_token1] = ACTIONS(4543), - [aux_sym_subparagraph_token1] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(7088), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(7094), - [sym_word] = ACTIONS(7094), - [sym_param] = ACTIONS(9338), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7098), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7098), - [anon_sym_DOLLAR] = ACTIONS(7100), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7102), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(7104), - [aux_sym_citation_token1] = ACTIONS(7106), - [aux_sym_package_include_token1] = ACTIONS(7108), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7110), - [aux_sym_latex_include_token1] = ACTIONS(7112), - [aux_sym_latex_input_token1] = ACTIONS(7114), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7116), - [anon_sym_BSLASHbibliography] = ACTIONS(7118), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7120), - [anon_sym_BSLASHincludesvg] = ACTIONS(7122), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7124), - [aux_sym_verbatim_include_token1] = ACTIONS(7126), - [aux_sym_import_token1] = ACTIONS(7128), - [anon_sym_BSLASHlabel] = ACTIONS(7130), - [aux_sym_label_reference_token1] = ACTIONS(7132), - [anon_sym_BSLASHeqref] = ACTIONS(7134), - [aux_sym_label_reference_range_token1] = ACTIONS(7136), - [anon_sym_BSLASHnewlabel] = ACTIONS(7138), - [aux_sym_command_definition_token1] = ACTIONS(7140), - [aux_sym_math_operator_token1] = ACTIONS(7142), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7144), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7146), - [anon_sym_BSLASHnewacronym] = ACTIONS(7148), - [aux_sym_acronym_reference_token1] = ACTIONS(7150), - [aux_sym_theorem_definition_token1] = ACTIONS(7152), - [aux_sym_color_reference_token1] = ACTIONS(7154), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7156), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7160), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7162), - }, - [426] = { - [sym__simple_content] = STATE(433), - [sym_subparagraph] = STATE(433), - [sym_enum_item] = STATE(433), - [sym_brace_group] = STATE(433), - [sym_mixed_group] = STATE(433), - [sym_text] = STATE(433), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(433), - [sym_inline_formula] = STATE(433), - [sym_begin] = STATE(99), - [sym_environment] = STATE(433), - [sym_caption] = STATE(433), - [sym_citation] = STATE(433), - [sym_package_include] = STATE(433), - [sym_class_include] = STATE(433), - [sym_latex_include] = STATE(433), - [sym_latex_input] = STATE(433), - [sym_biblatex_include] = STATE(433), - [sym_bibtex_include] = STATE(433), - [sym_graphics_include] = STATE(433), - [sym_svg_include] = STATE(433), - [sym_inkscape_include] = STATE(433), - [sym_verbatim_include] = STATE(433), - [sym_import] = STATE(433), - [sym_label_definition] = STATE(433), - [sym_label_reference] = STATE(433), - [sym_equation_label_reference] = STATE(433), - [sym_label_reference_range] = STATE(433), - [sym_label_number] = STATE(433), - [sym_command_definition] = STATE(433), - [sym_math_operator] = STATE(433), - [sym_glossary_entry_definition] = STATE(433), - [sym_glossary_entry_reference] = STATE(433), - [sym_acronym_definition] = STATE(433), - [sym_acronym_reference] = STATE(433), - [sym_theorem_definition] = STATE(433), - [sym_color_reference] = STATE(433), - [sym_color_definition] = STATE(433), - [sym_color_set_definition] = STATE(433), - [sym_pgf_library_import] = STATE(433), - [sym_tikz_library_import] = STATE(433), - [sym_generic_command] = STATE(433), - [aux_sym_paragraph_repeat1] = STATE(433), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(9013), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(3786), - [aux_sym_subparagraph_token1] = ACTIONS(9017), - [anon_sym_BSLASHitem] = ACTIONS(9019), - [anon_sym_LBRACK] = ACTIONS(9021), - [anon_sym_RBRACK] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(9023), - [anon_sym_RBRACE] = ACTIONS(3784), - [anon_sym_LPAREN] = ACTIONS(9021), - [anon_sym_COMMA] = ACTIONS(9025), - [anon_sym_EQ] = ACTIONS(9025), - [sym_word] = ACTIONS(9025), - [sym_param] = ACTIONS(9340), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9029), - [anon_sym_DOLLAR] = ACTIONS(9031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9033), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9035), - [aux_sym_citation_token1] = ACTIONS(9037), - [aux_sym_package_include_token1] = ACTIONS(9039), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9041), - [aux_sym_latex_include_token1] = ACTIONS(9043), - [aux_sym_latex_input_token1] = ACTIONS(9045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9047), - [anon_sym_BSLASHbibliography] = ACTIONS(9049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9051), - [anon_sym_BSLASHincludesvg] = ACTIONS(9053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9055), - [aux_sym_verbatim_include_token1] = ACTIONS(9057), - [aux_sym_import_token1] = ACTIONS(9059), - [anon_sym_BSLASHlabel] = ACTIONS(9061), - [aux_sym_label_reference_token1] = ACTIONS(9063), - [anon_sym_BSLASHeqref] = ACTIONS(9065), - [aux_sym_label_reference_range_token1] = ACTIONS(9067), - [anon_sym_BSLASHnewlabel] = ACTIONS(9069), - [aux_sym_command_definition_token1] = ACTIONS(9071), - [aux_sym_math_operator_token1] = ACTIONS(9073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9075), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9077), - [anon_sym_BSLASHnewacronym] = ACTIONS(9079), - [aux_sym_acronym_reference_token1] = ACTIONS(9081), - [aux_sym_theorem_definition_token1] = ACTIONS(9083), - [aux_sym_color_reference_token1] = ACTIONS(9085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9087), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9091), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9093), - }, - [427] = { - [sym__simple_content] = STATE(430), - [sym_enum_item] = STATE(430), - [sym_brace_group] = STATE(430), - [sym_mixed_group] = STATE(430), - [sym_text] = STATE(430), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(430), - [sym_inline_formula] = STATE(430), - [sym_begin] = STATE(112), - [sym_environment] = STATE(430), - [sym_caption] = STATE(430), - [sym_citation] = STATE(430), - [sym_package_include] = STATE(430), - [sym_class_include] = STATE(430), - [sym_latex_include] = STATE(430), - [sym_latex_input] = STATE(430), - [sym_biblatex_include] = STATE(430), - [sym_bibtex_include] = STATE(430), - [sym_graphics_include] = STATE(430), - [sym_svg_include] = STATE(430), - [sym_inkscape_include] = STATE(430), - [sym_verbatim_include] = STATE(430), - [sym_import] = STATE(430), - [sym_label_definition] = STATE(430), - [sym_label_reference] = STATE(430), - [sym_equation_label_reference] = STATE(430), - [sym_label_reference_range] = STATE(430), - [sym_label_number] = STATE(430), - [sym_command_definition] = STATE(430), - [sym_math_operator] = STATE(430), - [sym_glossary_entry_definition] = STATE(430), - [sym_glossary_entry_reference] = STATE(430), - [sym_acronym_definition] = STATE(430), - [sym_acronym_reference] = STATE(430), - [sym_theorem_definition] = STATE(430), - [sym_color_reference] = STATE(430), - [sym_color_definition] = STATE(430), - [sym_color_set_definition] = STATE(430), - [sym_pgf_library_import] = STATE(430), - [sym_tikz_library_import] = STATE(430), - [sym_generic_command] = STATE(430), - [aux_sym_subparagraph_repeat1] = STATE(430), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(7080), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(4808), - [aux_sym_paragraph_token1] = ACTIONS(4808), - [aux_sym_subparagraph_token1] = ACTIONS(4808), - [anon_sym_BSLASHitem] = ACTIONS(7088), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(4806), - [anon_sym_LBRACE] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(4806), - [anon_sym_LPAREN] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(7094), - [sym_word] = ACTIONS(7094), - [sym_param] = ACTIONS(9342), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7098), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7098), - [anon_sym_DOLLAR] = ACTIONS(7100), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7102), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(7104), - [aux_sym_citation_token1] = ACTIONS(7106), - [aux_sym_package_include_token1] = ACTIONS(7108), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7110), - [aux_sym_latex_include_token1] = ACTIONS(7112), - [aux_sym_latex_input_token1] = ACTIONS(7114), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7116), - [anon_sym_BSLASHbibliography] = ACTIONS(7118), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7120), - [anon_sym_BSLASHincludesvg] = ACTIONS(7122), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7124), - [aux_sym_verbatim_include_token1] = ACTIONS(7126), - [aux_sym_import_token1] = ACTIONS(7128), - [anon_sym_BSLASHlabel] = ACTIONS(7130), - [aux_sym_label_reference_token1] = ACTIONS(7132), - [anon_sym_BSLASHeqref] = ACTIONS(7134), - [aux_sym_label_reference_range_token1] = ACTIONS(7136), - [anon_sym_BSLASHnewlabel] = ACTIONS(7138), - [aux_sym_command_definition_token1] = ACTIONS(7140), - [aux_sym_math_operator_token1] = ACTIONS(7142), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7144), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7146), - [anon_sym_BSLASHnewacronym] = ACTIONS(7148), - [aux_sym_acronym_reference_token1] = ACTIONS(7150), - [aux_sym_theorem_definition_token1] = ACTIONS(7152), - [aux_sym_color_reference_token1] = ACTIONS(7154), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7156), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7160), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7162), - }, - [428] = { - [sym__simple_content] = STATE(428), - [sym_brace_group] = STATE(428), - [sym_mixed_group] = STATE(428), - [sym_text] = STATE(428), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(428), - [sym_inline_formula] = STATE(428), - [sym_begin] = STATE(105), - [sym_environment] = STATE(428), - [sym_caption] = STATE(428), - [sym_citation] = STATE(428), - [sym_package_include] = STATE(428), - [sym_class_include] = STATE(428), - [sym_latex_include] = STATE(428), - [sym_latex_input] = STATE(428), - [sym_biblatex_include] = STATE(428), - [sym_bibtex_include] = STATE(428), - [sym_graphics_include] = STATE(428), - [sym_svg_include] = STATE(428), - [sym_inkscape_include] = STATE(428), - [sym_verbatim_include] = STATE(428), - [sym_import] = STATE(428), - [sym_label_definition] = STATE(428), - [sym_label_reference] = STATE(428), - [sym_equation_label_reference] = STATE(428), - [sym_label_reference_range] = STATE(428), - [sym_label_number] = STATE(428), - [sym_command_definition] = STATE(428), - [sym_math_operator] = STATE(428), - [sym_glossary_entry_definition] = STATE(428), - [sym_glossary_entry_reference] = STATE(428), - [sym_acronym_definition] = STATE(428), - [sym_acronym_reference] = STATE(428), - [sym_theorem_definition] = STATE(428), - [sym_color_reference] = STATE(428), - [sym_color_definition] = STATE(428), - [sym_color_set_definition] = STATE(428), - [sym_pgf_library_import] = STATE(428), - [sym_tikz_library_import] = STATE(428), - [sym_generic_command] = STATE(428), - [aux_sym_enum_item_repeat1] = STATE(428), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(9344), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(5613), - [aux_sym_subsubsection_token1] = ACTIONS(5613), - [aux_sym_paragraph_token1] = ACTIONS(5613), - [aux_sym_subparagraph_token1] = ACTIONS(5613), - [anon_sym_BSLASHitem] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(9347), - [anon_sym_RBRACK] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(9350), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_LPAREN] = ACTIONS(9347), - [anon_sym_COMMA] = ACTIONS(9353), - [anon_sym_EQ] = ACTIONS(9353), - [sym_word] = ACTIONS(9353), - [sym_param] = ACTIONS(9356), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9359), - [anon_sym_DOLLAR] = ACTIONS(9362), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9365), - [anon_sym_BSLASHbegin] = ACTIONS(5636), - [anon_sym_BSLASHcaption] = ACTIONS(9368), - [aux_sym_citation_token1] = ACTIONS(9371), - [aux_sym_package_include_token1] = ACTIONS(9374), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9377), - [aux_sym_latex_include_token1] = ACTIONS(9380), - [aux_sym_latex_input_token1] = ACTIONS(9383), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9386), - [anon_sym_BSLASHbibliography] = ACTIONS(9389), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9392), - [anon_sym_BSLASHincludesvg] = ACTIONS(9395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9398), - [aux_sym_verbatim_include_token1] = ACTIONS(9401), - [aux_sym_import_token1] = ACTIONS(9404), - [anon_sym_BSLASHlabel] = ACTIONS(9407), - [aux_sym_label_reference_token1] = ACTIONS(9410), - [anon_sym_BSLASHeqref] = ACTIONS(9413), - [aux_sym_label_reference_range_token1] = ACTIONS(9416), - [anon_sym_BSLASHnewlabel] = ACTIONS(9419), - [aux_sym_command_definition_token1] = ACTIONS(9422), - [aux_sym_math_operator_token1] = ACTIONS(9425), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9428), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9431), - [anon_sym_BSLASHnewacronym] = ACTIONS(9434), - [aux_sym_acronym_reference_token1] = ACTIONS(9437), - [aux_sym_theorem_definition_token1] = ACTIONS(9440), - [aux_sym_color_reference_token1] = ACTIONS(9443), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9446), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9452), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9455), - }, - [429] = { - [sym__simple_content] = STATE(428), - [sym_brace_group] = STATE(428), - [sym_mixed_group] = STATE(428), - [sym_text] = STATE(428), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(428), - [sym_inline_formula] = STATE(428), - [sym_begin] = STATE(105), - [sym_environment] = STATE(428), - [sym_caption] = STATE(428), - [sym_citation] = STATE(428), - [sym_package_include] = STATE(428), - [sym_class_include] = STATE(428), - [sym_latex_include] = STATE(428), - [sym_latex_input] = STATE(428), - [sym_biblatex_include] = STATE(428), - [sym_bibtex_include] = STATE(428), - [sym_graphics_include] = STATE(428), - [sym_svg_include] = STATE(428), - [sym_inkscape_include] = STATE(428), - [sym_verbatim_include] = STATE(428), - [sym_import] = STATE(428), - [sym_label_definition] = STATE(428), - [sym_label_reference] = STATE(428), - [sym_equation_label_reference] = STATE(428), - [sym_label_reference_range] = STATE(428), - [sym_label_number] = STATE(428), - [sym_command_definition] = STATE(428), - [sym_math_operator] = STATE(428), - [sym_glossary_entry_definition] = STATE(428), - [sym_glossary_entry_reference] = STATE(428), - [sym_acronym_definition] = STATE(428), - [sym_acronym_reference] = STATE(428), - [sym_theorem_definition] = STATE(428), - [sym_color_reference] = STATE(428), - [sym_color_definition] = STATE(428), - [sym_color_set_definition] = STATE(428), - [sym_pgf_library_import] = STATE(428), - [sym_tikz_library_import] = STATE(428), - [sym_generic_command] = STATE(428), - [aux_sym_enum_item_repeat1] = STATE(428), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(5733), - [aux_sym_subsubsection_token1] = ACTIONS(5733), - [aux_sym_paragraph_token1] = ACTIONS(5733), - [aux_sym_subparagraph_token1] = ACTIONS(5733), - [anon_sym_BSLASHitem] = ACTIONS(5733), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5731), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(9336), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [430] = { - [sym__simple_content] = STATE(430), - [sym_enum_item] = STATE(430), - [sym_brace_group] = STATE(430), - [sym_mixed_group] = STATE(430), - [sym_text] = STATE(430), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(430), - [sym_inline_formula] = STATE(430), - [sym_begin] = STATE(112), - [sym_environment] = STATE(430), - [sym_caption] = STATE(430), - [sym_citation] = STATE(430), - [sym_package_include] = STATE(430), - [sym_class_include] = STATE(430), - [sym_latex_include] = STATE(430), - [sym_latex_input] = STATE(430), - [sym_biblatex_include] = STATE(430), - [sym_bibtex_include] = STATE(430), - [sym_graphics_include] = STATE(430), - [sym_svg_include] = STATE(430), - [sym_inkscape_include] = STATE(430), - [sym_verbatim_include] = STATE(430), - [sym_import] = STATE(430), - [sym_label_definition] = STATE(430), - [sym_label_reference] = STATE(430), - [sym_equation_label_reference] = STATE(430), - [sym_label_reference_range] = STATE(430), - [sym_label_number] = STATE(430), - [sym_command_definition] = STATE(430), - [sym_math_operator] = STATE(430), - [sym_glossary_entry_definition] = STATE(430), - [sym_glossary_entry_reference] = STATE(430), - [sym_acronym_definition] = STATE(430), - [sym_acronym_reference] = STATE(430), - [sym_theorem_definition] = STATE(430), - [sym_color_reference] = STATE(430), - [sym_color_definition] = STATE(430), - [sym_color_set_definition] = STATE(430), - [sym_pgf_library_import] = STATE(430), - [sym_tikz_library_import] = STATE(430), - [sym_generic_command] = STATE(430), - [aux_sym_subparagraph_repeat1] = STATE(430), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(9458), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(5069), - [aux_sym_paragraph_token1] = ACTIONS(5069), - [aux_sym_subparagraph_token1] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(9461), - [anon_sym_LBRACK] = ACTIONS(9464), - [anon_sym_RBRACK] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(9467), - [anon_sym_RBRACE] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(9464), - [anon_sym_COMMA] = ACTIONS(9470), - [anon_sym_EQ] = ACTIONS(9470), - [sym_word] = ACTIONS(9470), - [sym_param] = ACTIONS(9473), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9476), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9476), - [anon_sym_DOLLAR] = ACTIONS(9479), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9482), - [anon_sym_BSLASHbegin] = ACTIONS(5095), - [anon_sym_BSLASHcaption] = ACTIONS(9485), - [aux_sym_citation_token1] = ACTIONS(9488), - [aux_sym_package_include_token1] = ACTIONS(9491), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9494), - [aux_sym_latex_include_token1] = ACTIONS(9497), - [aux_sym_latex_input_token1] = ACTIONS(9500), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9503), - [anon_sym_BSLASHbibliography] = ACTIONS(9506), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9509), - [anon_sym_BSLASHincludesvg] = ACTIONS(9512), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9515), - [aux_sym_verbatim_include_token1] = ACTIONS(9518), - [aux_sym_import_token1] = ACTIONS(9521), - [anon_sym_BSLASHlabel] = ACTIONS(9524), - [aux_sym_label_reference_token1] = ACTIONS(9527), - [anon_sym_BSLASHeqref] = ACTIONS(9530), - [aux_sym_label_reference_range_token1] = ACTIONS(9533), - [anon_sym_BSLASHnewlabel] = ACTIONS(9536), - [aux_sym_command_definition_token1] = ACTIONS(9539), - [aux_sym_math_operator_token1] = ACTIONS(9542), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9545), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9548), - [anon_sym_BSLASHnewacronym] = ACTIONS(9551), - [aux_sym_acronym_reference_token1] = ACTIONS(9554), - [aux_sym_theorem_definition_token1] = ACTIONS(9557), - [aux_sym_color_reference_token1] = ACTIONS(9560), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9563), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9566), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9569), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9572), - }, - [431] = { - [sym__simple_content] = STATE(424), - [sym_brace_group] = STATE(424), - [sym_mixed_group] = STATE(424), - [sym_text] = STATE(424), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(424), - [sym_inline_formula] = STATE(424), - [sym_begin] = STATE(105), - [sym_environment] = STATE(424), - [sym_caption] = STATE(424), - [sym_citation] = STATE(424), - [sym_package_include] = STATE(424), - [sym_class_include] = STATE(424), - [sym_latex_include] = STATE(424), - [sym_latex_input] = STATE(424), - [sym_biblatex_include] = STATE(424), - [sym_bibtex_include] = STATE(424), - [sym_graphics_include] = STATE(424), - [sym_svg_include] = STATE(424), - [sym_inkscape_include] = STATE(424), - [sym_verbatim_include] = STATE(424), - [sym_import] = STATE(424), - [sym_label_definition] = STATE(424), - [sym_label_reference] = STATE(424), - [sym_equation_label_reference] = STATE(424), - [sym_label_reference_range] = STATE(424), - [sym_label_number] = STATE(424), - [sym_command_definition] = STATE(424), - [sym_math_operator] = STATE(424), - [sym_glossary_entry_definition] = STATE(424), - [sym_glossary_entry_reference] = STATE(424), - [sym_acronym_definition] = STATE(424), - [sym_acronym_reference] = STATE(424), - [sym_theorem_definition] = STATE(424), - [sym_color_reference] = STATE(424), - [sym_color_definition] = STATE(424), - [sym_color_set_definition] = STATE(424), - [sym_pgf_library_import] = STATE(424), - [sym_tikz_library_import] = STATE(424), - [sym_generic_command] = STATE(424), - [aux_sym_enum_item_repeat1] = STATE(424), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(5602), - [aux_sym_subsubsection_token1] = ACTIONS(5602), - [aux_sym_paragraph_token1] = ACTIONS(5602), - [aux_sym_subparagraph_token1] = ACTIONS(5602), - [anon_sym_BSLASHitem] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(9575), - [anon_sym_RBRACK] = ACTIONS(5600), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(5600), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(9577), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [432] = { - [sym__simple_content] = STATE(429), - [sym_brace_group] = STATE(429), - [sym_mixed_group] = STATE(429), - [sym_text] = STATE(429), - [sym__text_fragment] = STATE(931), - [sym_displayed_equation] = STATE(429), - [sym_inline_formula] = STATE(429), - [sym_begin] = STATE(105), - [sym_environment] = STATE(429), - [sym_caption] = STATE(429), - [sym_citation] = STATE(429), - [sym_package_include] = STATE(429), - [sym_class_include] = STATE(429), - [sym_latex_include] = STATE(429), - [sym_latex_input] = STATE(429), - [sym_biblatex_include] = STATE(429), - [sym_bibtex_include] = STATE(429), - [sym_graphics_include] = STATE(429), - [sym_svg_include] = STATE(429), - [sym_inkscape_include] = STATE(429), - [sym_verbatim_include] = STATE(429), - [sym_import] = STATE(429), - [sym_label_definition] = STATE(429), - [sym_label_reference] = STATE(429), - [sym_equation_label_reference] = STATE(429), - [sym_label_reference_range] = STATE(429), - [sym_label_number] = STATE(429), - [sym_command_definition] = STATE(429), - [sym_math_operator] = STATE(429), - [sym_glossary_entry_definition] = STATE(429), - [sym_glossary_entry_reference] = STATE(429), - [sym_acronym_definition] = STATE(429), - [sym_acronym_reference] = STATE(429), - [sym_theorem_definition] = STATE(429), - [sym_color_reference] = STATE(429), - [sym_color_definition] = STATE(429), - [sym_color_set_definition] = STATE(429), - [sym_pgf_library_import] = STATE(429), - [sym_tikz_library_import] = STATE(429), - [sym_generic_command] = STATE(429), - [aux_sym_enum_item_repeat1] = STATE(429), - [aux_sym_text_repeat1] = STATE(931), - [sym_generic_command_name] = ACTIONS(5858), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsection_token1] = ACTIONS(5210), - [aux_sym_subsubsection_token1] = ACTIONS(5210), - [aux_sym_paragraph_token1] = ACTIONS(5210), - [aux_sym_subparagraph_token1] = ACTIONS(5210), - [anon_sym_BSLASHitem] = ACTIONS(5210), - [anon_sym_LBRACK] = ACTIONS(5870), - [anon_sym_RBRACK] = ACTIONS(5208), - [anon_sym_LBRACE] = ACTIONS(5872), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(5870), - [anon_sym_COMMA] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(5874), - [sym_word] = ACTIONS(5874), - [sym_param] = ACTIONS(9579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5878), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5878), - [anon_sym_DOLLAR] = ACTIONS(5880), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5882), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(5884), - [aux_sym_citation_token1] = ACTIONS(5886), - [aux_sym_package_include_token1] = ACTIONS(5888), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5890), - [aux_sym_latex_include_token1] = ACTIONS(5892), - [aux_sym_latex_input_token1] = ACTIONS(5894), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5896), - [anon_sym_BSLASHbibliography] = ACTIONS(5898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5900), - [anon_sym_BSLASHincludesvg] = ACTIONS(5902), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5904), - [aux_sym_verbatim_include_token1] = ACTIONS(5906), - [aux_sym_import_token1] = ACTIONS(5908), - [anon_sym_BSLASHlabel] = ACTIONS(5910), - [aux_sym_label_reference_token1] = ACTIONS(5912), - [anon_sym_BSLASHeqref] = ACTIONS(5914), - [aux_sym_label_reference_range_token1] = ACTIONS(5916), - [anon_sym_BSLASHnewlabel] = ACTIONS(5918), - [aux_sym_command_definition_token1] = ACTIONS(5920), - [aux_sym_math_operator_token1] = ACTIONS(5922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5924), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(5926), - [anon_sym_BSLASHnewacronym] = ACTIONS(5928), - [aux_sym_acronym_reference_token1] = ACTIONS(5930), - [aux_sym_theorem_definition_token1] = ACTIONS(5932), - [aux_sym_color_reference_token1] = ACTIONS(5934), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5936), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5938), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5942), - }, - [433] = { - [sym__simple_content] = STATE(434), - [sym_subparagraph] = STATE(434), - [sym_enum_item] = STATE(434), - [sym_brace_group] = STATE(434), - [sym_mixed_group] = STATE(434), - [sym_text] = STATE(434), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(434), - [sym_inline_formula] = STATE(434), - [sym_begin] = STATE(99), - [sym_environment] = STATE(434), - [sym_caption] = STATE(434), - [sym_citation] = STATE(434), - [sym_package_include] = STATE(434), - [sym_class_include] = STATE(434), - [sym_latex_include] = STATE(434), - [sym_latex_input] = STATE(434), - [sym_biblatex_include] = STATE(434), - [sym_bibtex_include] = STATE(434), - [sym_graphics_include] = STATE(434), - [sym_svg_include] = STATE(434), - [sym_inkscape_include] = STATE(434), - [sym_verbatim_include] = STATE(434), - [sym_import] = STATE(434), - [sym_label_definition] = STATE(434), - [sym_label_reference] = STATE(434), - [sym_equation_label_reference] = STATE(434), - [sym_label_reference_range] = STATE(434), - [sym_label_number] = STATE(434), - [sym_command_definition] = STATE(434), - [sym_math_operator] = STATE(434), - [sym_glossary_entry_definition] = STATE(434), - [sym_glossary_entry_reference] = STATE(434), - [sym_acronym_definition] = STATE(434), - [sym_acronym_reference] = STATE(434), - [sym_theorem_definition] = STATE(434), - [sym_color_reference] = STATE(434), - [sym_color_definition] = STATE(434), - [sym_color_set_definition] = STATE(434), - [sym_pgf_library_import] = STATE(434), - [sym_tikz_library_import] = STATE(434), - [sym_generic_command] = STATE(434), - [aux_sym_paragraph_repeat1] = STATE(434), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(9013), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(3880), - [aux_sym_subparagraph_token1] = ACTIONS(9017), - [anon_sym_BSLASHitem] = ACTIONS(9019), - [anon_sym_LBRACK] = ACTIONS(9021), - [anon_sym_RBRACK] = ACTIONS(3878), - [anon_sym_LBRACE] = ACTIONS(9023), - [anon_sym_RBRACE] = ACTIONS(3878), - [anon_sym_LPAREN] = ACTIONS(9021), - [anon_sym_COMMA] = ACTIONS(9025), - [anon_sym_EQ] = ACTIONS(9025), - [sym_word] = ACTIONS(9025), - [sym_param] = ACTIONS(9581), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9029), - [anon_sym_DOLLAR] = ACTIONS(9031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9033), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9035), - [aux_sym_citation_token1] = ACTIONS(9037), - [aux_sym_package_include_token1] = ACTIONS(9039), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9041), - [aux_sym_latex_include_token1] = ACTIONS(9043), - [aux_sym_latex_input_token1] = ACTIONS(9045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9047), - [anon_sym_BSLASHbibliography] = ACTIONS(9049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9051), - [anon_sym_BSLASHincludesvg] = ACTIONS(9053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9055), - [aux_sym_verbatim_include_token1] = ACTIONS(9057), - [aux_sym_import_token1] = ACTIONS(9059), - [anon_sym_BSLASHlabel] = ACTIONS(9061), - [aux_sym_label_reference_token1] = ACTIONS(9063), - [anon_sym_BSLASHeqref] = ACTIONS(9065), - [aux_sym_label_reference_range_token1] = ACTIONS(9067), - [anon_sym_BSLASHnewlabel] = ACTIONS(9069), - [aux_sym_command_definition_token1] = ACTIONS(9071), - [aux_sym_math_operator_token1] = ACTIONS(9073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9075), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9077), - [anon_sym_BSLASHnewacronym] = ACTIONS(9079), - [aux_sym_acronym_reference_token1] = ACTIONS(9081), - [aux_sym_theorem_definition_token1] = ACTIONS(9083), - [aux_sym_color_reference_token1] = ACTIONS(9085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9087), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9091), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9093), - }, - [434] = { - [sym__simple_content] = STATE(434), - [sym_subparagraph] = STATE(434), - [sym_enum_item] = STATE(434), - [sym_brace_group] = STATE(434), - [sym_mixed_group] = STATE(434), - [sym_text] = STATE(434), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(434), - [sym_inline_formula] = STATE(434), - [sym_begin] = STATE(99), - [sym_environment] = STATE(434), - [sym_caption] = STATE(434), - [sym_citation] = STATE(434), - [sym_package_include] = STATE(434), - [sym_class_include] = STATE(434), - [sym_latex_include] = STATE(434), - [sym_latex_input] = STATE(434), - [sym_biblatex_include] = STATE(434), - [sym_bibtex_include] = STATE(434), - [sym_graphics_include] = STATE(434), - [sym_svg_include] = STATE(434), - [sym_inkscape_include] = STATE(434), - [sym_verbatim_include] = STATE(434), - [sym_import] = STATE(434), - [sym_label_definition] = STATE(434), - [sym_label_reference] = STATE(434), - [sym_equation_label_reference] = STATE(434), - [sym_label_reference_range] = STATE(434), - [sym_label_number] = STATE(434), - [sym_command_definition] = STATE(434), - [sym_math_operator] = STATE(434), - [sym_glossary_entry_definition] = STATE(434), - [sym_glossary_entry_reference] = STATE(434), - [sym_acronym_definition] = STATE(434), - [sym_acronym_reference] = STATE(434), - [sym_theorem_definition] = STATE(434), - [sym_color_reference] = STATE(434), - [sym_color_definition] = STATE(434), - [sym_color_set_definition] = STATE(434), - [sym_pgf_library_import] = STATE(434), - [sym_tikz_library_import] = STATE(434), - [sym_generic_command] = STATE(434), - [aux_sym_paragraph_repeat1] = STATE(434), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(9583), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(3889), - [aux_sym_subparagraph_token1] = ACTIONS(9586), - [anon_sym_BSLASHitem] = ACTIONS(9589), - [anon_sym_LBRACK] = ACTIONS(9592), - [anon_sym_RBRACK] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(9595), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_LPAREN] = ACTIONS(9592), - [anon_sym_COMMA] = ACTIONS(9598), - [anon_sym_EQ] = ACTIONS(9598), - [sym_word] = ACTIONS(9598), - [sym_param] = ACTIONS(9601), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9604), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9604), - [anon_sym_DOLLAR] = ACTIONS(9607), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9610), - [anon_sym_BSLASHbegin] = ACTIONS(3918), - [anon_sym_BSLASHcaption] = ACTIONS(9613), - [aux_sym_citation_token1] = ACTIONS(9616), - [aux_sym_package_include_token1] = ACTIONS(9619), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9622), - [aux_sym_latex_include_token1] = ACTIONS(9625), - [aux_sym_latex_input_token1] = ACTIONS(9628), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9631), - [anon_sym_BSLASHbibliography] = ACTIONS(9634), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9637), - [anon_sym_BSLASHincludesvg] = ACTIONS(9640), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9643), - [aux_sym_verbatim_include_token1] = ACTIONS(9646), - [aux_sym_import_token1] = ACTIONS(9649), - [anon_sym_BSLASHlabel] = ACTIONS(9652), - [aux_sym_label_reference_token1] = ACTIONS(9655), - [anon_sym_BSLASHeqref] = ACTIONS(9658), - [aux_sym_label_reference_range_token1] = ACTIONS(9661), - [anon_sym_BSLASHnewlabel] = ACTIONS(9664), - [aux_sym_command_definition_token1] = ACTIONS(9667), - [aux_sym_math_operator_token1] = ACTIONS(9670), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9673), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9676), - [anon_sym_BSLASHnewacronym] = ACTIONS(9679), - [aux_sym_acronym_reference_token1] = ACTIONS(9682), - [aux_sym_theorem_definition_token1] = ACTIONS(9685), - [aux_sym_color_reference_token1] = ACTIONS(9688), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9691), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9694), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9697), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9700), - }, - [435] = { - [sym__simple_content] = STATE(435), - [sym_subparagraph] = STATE(435), - [sym_enum_item] = STATE(435), - [sym_brace_group] = STATE(435), - [sym_mixed_group] = STATE(435), - [sym_text] = STATE(435), - [sym__text_fragment] = STATE(1388), - [sym_displayed_equation] = STATE(435), - [sym_inline_formula] = STATE(435), - [sym_begin] = STATE(83), - [sym_environment] = STATE(435), - [sym_caption] = STATE(435), - [sym_citation] = STATE(435), - [sym_package_include] = STATE(435), - [sym_class_include] = STATE(435), - [sym_latex_include] = STATE(435), - [sym_latex_input] = STATE(435), - [sym_biblatex_include] = STATE(435), - [sym_bibtex_include] = STATE(435), - [sym_graphics_include] = STATE(435), - [sym_svg_include] = STATE(435), - [sym_inkscape_include] = STATE(435), - [sym_verbatim_include] = STATE(435), - [sym_import] = STATE(435), - [sym_label_definition] = STATE(435), - [sym_label_reference] = STATE(435), - [sym_equation_label_reference] = STATE(435), - [sym_label_reference_range] = STATE(435), - [sym_label_number] = STATE(435), - [sym_command_definition] = STATE(435), - [sym_math_operator] = STATE(435), - [sym_glossary_entry_definition] = STATE(435), - [sym_glossary_entry_reference] = STATE(435), - [sym_acronym_definition] = STATE(435), - [sym_acronym_reference] = STATE(435), - [sym_theorem_definition] = STATE(435), - [sym_color_reference] = STATE(435), - [sym_color_definition] = STATE(435), - [sym_color_set_definition] = STATE(435), - [sym_pgf_library_import] = STATE(435), - [sym_tikz_library_import] = STATE(435), - [sym_generic_command] = STATE(435), - [aux_sym_paragraph_repeat1] = STATE(435), - [aux_sym_text_repeat1] = STATE(1388), - [sym_generic_command_name] = ACTIONS(9703), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subparagraph_token1] = ACTIONS(9706), - [anon_sym_BSLASHitem] = ACTIONS(9709), - [anon_sym_LBRACK] = ACTIONS(9712), - [anon_sym_RBRACK] = ACTIONS(3884), - [anon_sym_LBRACE] = ACTIONS(9715), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_LPAREN] = ACTIONS(9712), - [anon_sym_COMMA] = ACTIONS(9718), - [anon_sym_EQ] = ACTIONS(9718), - [sym_word] = ACTIONS(9718), - [sym_param] = ACTIONS(9721), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9724), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9724), - [anon_sym_DOLLAR] = ACTIONS(9727), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9730), - [anon_sym_BSLASHbegin] = ACTIONS(3918), - [anon_sym_BSLASHcaption] = ACTIONS(9733), - [aux_sym_citation_token1] = ACTIONS(9736), - [aux_sym_package_include_token1] = ACTIONS(9739), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9742), - [aux_sym_latex_include_token1] = ACTIONS(9745), - [aux_sym_latex_input_token1] = ACTIONS(9748), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9751), - [anon_sym_BSLASHbibliography] = ACTIONS(9754), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9757), - [anon_sym_BSLASHincludesvg] = ACTIONS(9760), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9763), - [aux_sym_verbatim_include_token1] = ACTIONS(9766), - [aux_sym_import_token1] = ACTIONS(9769), - [anon_sym_BSLASHlabel] = ACTIONS(9772), - [aux_sym_label_reference_token1] = ACTIONS(9775), - [anon_sym_BSLASHeqref] = ACTIONS(9778), - [aux_sym_label_reference_range_token1] = ACTIONS(9781), - [anon_sym_BSLASHnewlabel] = ACTIONS(9784), - [aux_sym_command_definition_token1] = ACTIONS(9787), - [aux_sym_math_operator_token1] = ACTIONS(9790), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9793), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9796), - [anon_sym_BSLASHnewacronym] = ACTIONS(9799), - [aux_sym_acronym_reference_token1] = ACTIONS(9802), - [aux_sym_theorem_definition_token1] = ACTIONS(9805), - [aux_sym_color_reference_token1] = ACTIONS(9808), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9811), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9814), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9817), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9820), - }, - [436] = { - [sym__simple_content] = STATE(437), - [sym_subparagraph] = STATE(437), - [sym_enum_item] = STATE(437), - [sym_brace_group] = STATE(437), - [sym_mixed_group] = STATE(437), - [sym_text] = STATE(437), - [sym__text_fragment] = STATE(1388), - [sym_displayed_equation] = STATE(437), - [sym_inline_formula] = STATE(437), - [sym_begin] = STATE(83), - [sym_environment] = STATE(437), - [sym_caption] = STATE(437), - [sym_citation] = STATE(437), - [sym_package_include] = STATE(437), - [sym_class_include] = STATE(437), - [sym_latex_include] = STATE(437), - [sym_latex_input] = STATE(437), - [sym_biblatex_include] = STATE(437), - [sym_bibtex_include] = STATE(437), - [sym_graphics_include] = STATE(437), - [sym_svg_include] = STATE(437), - [sym_inkscape_include] = STATE(437), - [sym_verbatim_include] = STATE(437), - [sym_import] = STATE(437), - [sym_label_definition] = STATE(437), - [sym_label_reference] = STATE(437), - [sym_equation_label_reference] = STATE(437), - [sym_label_reference_range] = STATE(437), - [sym_label_number] = STATE(437), - [sym_command_definition] = STATE(437), - [sym_math_operator] = STATE(437), - [sym_glossary_entry_definition] = STATE(437), - [sym_glossary_entry_reference] = STATE(437), - [sym_acronym_definition] = STATE(437), - [sym_acronym_reference] = STATE(437), - [sym_theorem_definition] = STATE(437), - [sym_color_reference] = STATE(437), - [sym_color_definition] = STATE(437), - [sym_color_set_definition] = STATE(437), - [sym_pgf_library_import] = STATE(437), - [sym_tikz_library_import] = STATE(437), - [sym_generic_command] = STATE(437), - [aux_sym_paragraph_repeat1] = STATE(437), - [aux_sym_text_repeat1] = STATE(1388), - [sym_generic_command_name] = ACTIONS(9823), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subparagraph_token1] = ACTIONS(9825), - [anon_sym_BSLASHitem] = ACTIONS(9827), - [anon_sym_LBRACK] = ACTIONS(9829), - [anon_sym_RBRACK] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(9831), - [anon_sym_RBRACE] = ACTIONS(3784), - [anon_sym_LPAREN] = ACTIONS(9829), - [anon_sym_COMMA] = ACTIONS(9833), - [anon_sym_EQ] = ACTIONS(9833), - [sym_word] = ACTIONS(9833), - [sym_param] = ACTIONS(9835), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9837), - [anon_sym_DOLLAR] = ACTIONS(9839), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9841), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9843), - [aux_sym_citation_token1] = ACTIONS(9845), - [aux_sym_package_include_token1] = ACTIONS(9847), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9849), - [aux_sym_latex_include_token1] = ACTIONS(9851), - [aux_sym_latex_input_token1] = ACTIONS(9853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9855), - [anon_sym_BSLASHbibliography] = ACTIONS(9857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9859), - [anon_sym_BSLASHincludesvg] = ACTIONS(9861), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9863), - [aux_sym_verbatim_include_token1] = ACTIONS(9865), - [aux_sym_import_token1] = ACTIONS(9867), - [anon_sym_BSLASHlabel] = ACTIONS(9869), - [aux_sym_label_reference_token1] = ACTIONS(9871), - [anon_sym_BSLASHeqref] = ACTIONS(9873), - [aux_sym_label_reference_range_token1] = ACTIONS(9875), - [anon_sym_BSLASHnewlabel] = ACTIONS(9877), - [aux_sym_command_definition_token1] = ACTIONS(9879), - [aux_sym_math_operator_token1] = ACTIONS(9881), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9883), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9885), - [anon_sym_BSLASHnewacronym] = ACTIONS(9887), - [aux_sym_acronym_reference_token1] = ACTIONS(9889), - [aux_sym_theorem_definition_token1] = ACTIONS(9891), - [aux_sym_color_reference_token1] = ACTIONS(9893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9895), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9899), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9901), - }, - [437] = { - [sym__simple_content] = STATE(435), - [sym_subparagraph] = STATE(435), - [sym_enum_item] = STATE(435), - [sym_brace_group] = STATE(435), - [sym_mixed_group] = STATE(435), - [sym_text] = STATE(435), - [sym__text_fragment] = STATE(1388), - [sym_displayed_equation] = STATE(435), - [sym_inline_formula] = STATE(435), - [sym_begin] = STATE(83), - [sym_environment] = STATE(435), - [sym_caption] = STATE(435), - [sym_citation] = STATE(435), - [sym_package_include] = STATE(435), - [sym_class_include] = STATE(435), - [sym_latex_include] = STATE(435), - [sym_latex_input] = STATE(435), - [sym_biblatex_include] = STATE(435), - [sym_bibtex_include] = STATE(435), - [sym_graphics_include] = STATE(435), - [sym_svg_include] = STATE(435), - [sym_inkscape_include] = STATE(435), - [sym_verbatim_include] = STATE(435), - [sym_import] = STATE(435), - [sym_label_definition] = STATE(435), - [sym_label_reference] = STATE(435), - [sym_equation_label_reference] = STATE(435), - [sym_label_reference_range] = STATE(435), - [sym_label_number] = STATE(435), - [sym_command_definition] = STATE(435), - [sym_math_operator] = STATE(435), - [sym_glossary_entry_definition] = STATE(435), - [sym_glossary_entry_reference] = STATE(435), - [sym_acronym_definition] = STATE(435), - [sym_acronym_reference] = STATE(435), - [sym_theorem_definition] = STATE(435), - [sym_color_reference] = STATE(435), - [sym_color_definition] = STATE(435), - [sym_color_set_definition] = STATE(435), - [sym_pgf_library_import] = STATE(435), - [sym_tikz_library_import] = STATE(435), - [sym_generic_command] = STATE(435), - [aux_sym_paragraph_repeat1] = STATE(435), - [aux_sym_text_repeat1] = STATE(1388), - [sym_generic_command_name] = ACTIONS(9823), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subparagraph_token1] = ACTIONS(9825), - [anon_sym_BSLASHitem] = ACTIONS(9827), - [anon_sym_LBRACK] = ACTIONS(9829), - [anon_sym_RBRACK] = ACTIONS(3878), - [anon_sym_LBRACE] = ACTIONS(9831), - [anon_sym_RBRACE] = ACTIONS(3878), - [anon_sym_LPAREN] = ACTIONS(9829), - [anon_sym_COMMA] = ACTIONS(9833), - [anon_sym_EQ] = ACTIONS(9833), - [sym_word] = ACTIONS(9833), - [sym_param] = ACTIONS(9903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9837), - [anon_sym_DOLLAR] = ACTIONS(9839), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9841), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9843), - [aux_sym_citation_token1] = ACTIONS(9845), - [aux_sym_package_include_token1] = ACTIONS(9847), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9849), - [aux_sym_latex_include_token1] = ACTIONS(9851), - [aux_sym_latex_input_token1] = ACTIONS(9853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9855), - [anon_sym_BSLASHbibliography] = ACTIONS(9857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9859), - [anon_sym_BSLASHincludesvg] = ACTIONS(9861), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9863), - [aux_sym_verbatim_include_token1] = ACTIONS(9865), - [aux_sym_import_token1] = ACTIONS(9867), - [anon_sym_BSLASHlabel] = ACTIONS(9869), - [aux_sym_label_reference_token1] = ACTIONS(9871), - [anon_sym_BSLASHeqref] = ACTIONS(9873), - [aux_sym_label_reference_range_token1] = ACTIONS(9875), - [anon_sym_BSLASHnewlabel] = ACTIONS(9877), - [aux_sym_command_definition_token1] = ACTIONS(9879), - [aux_sym_math_operator_token1] = ACTIONS(9881), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9883), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9885), - [anon_sym_BSLASHnewacronym] = ACTIONS(9887), - [aux_sym_acronym_reference_token1] = ACTIONS(9889), - [aux_sym_theorem_definition_token1] = ACTIONS(9891), - [aux_sym_color_reference_token1] = ACTIONS(9893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9895), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9899), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9901), - }, - [438] = { - [sym__simple_content] = STATE(439), - [sym_enum_item] = STATE(439), - [sym_brace_group] = STATE(439), - [sym_mixed_group] = STATE(439), - [sym_text] = STATE(439), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(439), - [sym_inline_formula] = STATE(439), - [sym_begin] = STATE(99), - [sym_environment] = STATE(439), - [sym_caption] = STATE(439), - [sym_citation] = STATE(439), - [sym_package_include] = STATE(439), - [sym_class_include] = STATE(439), - [sym_latex_include] = STATE(439), - [sym_latex_input] = STATE(439), - [sym_biblatex_include] = STATE(439), - [sym_bibtex_include] = STATE(439), - [sym_graphics_include] = STATE(439), - [sym_svg_include] = STATE(439), - [sym_inkscape_include] = STATE(439), - [sym_verbatim_include] = STATE(439), - [sym_import] = STATE(439), - [sym_label_definition] = STATE(439), - [sym_label_reference] = STATE(439), - [sym_equation_label_reference] = STATE(439), - [sym_label_reference_range] = STATE(439), - [sym_label_number] = STATE(439), - [sym_command_definition] = STATE(439), - [sym_math_operator] = STATE(439), - [sym_glossary_entry_definition] = STATE(439), - [sym_glossary_entry_reference] = STATE(439), - [sym_acronym_definition] = STATE(439), - [sym_acronym_reference] = STATE(439), - [sym_theorem_definition] = STATE(439), - [sym_color_reference] = STATE(439), - [sym_color_definition] = STATE(439), - [sym_color_set_definition] = STATE(439), - [sym_pgf_library_import] = STATE(439), - [sym_tikz_library_import] = STATE(439), - [sym_generic_command] = STATE(439), - [aux_sym_subparagraph_repeat1] = STATE(439), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(9013), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(4543), - [aux_sym_subparagraph_token1] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(9019), - [anon_sym_LBRACK] = ACTIONS(9021), - [anon_sym_RBRACK] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(9023), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(9021), - [anon_sym_COMMA] = ACTIONS(9025), - [anon_sym_EQ] = ACTIONS(9025), - [sym_word] = ACTIONS(9025), - [sym_param] = ACTIONS(9905), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9029), - [anon_sym_DOLLAR] = ACTIONS(9031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9033), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9035), - [aux_sym_citation_token1] = ACTIONS(9037), - [aux_sym_package_include_token1] = ACTIONS(9039), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9041), - [aux_sym_latex_include_token1] = ACTIONS(9043), - [aux_sym_latex_input_token1] = ACTIONS(9045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9047), - [anon_sym_BSLASHbibliography] = ACTIONS(9049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9051), - [anon_sym_BSLASHincludesvg] = ACTIONS(9053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9055), - [aux_sym_verbatim_include_token1] = ACTIONS(9057), - [aux_sym_import_token1] = ACTIONS(9059), - [anon_sym_BSLASHlabel] = ACTIONS(9061), - [aux_sym_label_reference_token1] = ACTIONS(9063), - [anon_sym_BSLASHeqref] = ACTIONS(9065), - [aux_sym_label_reference_range_token1] = ACTIONS(9067), - [anon_sym_BSLASHnewlabel] = ACTIONS(9069), - [aux_sym_command_definition_token1] = ACTIONS(9071), - [aux_sym_math_operator_token1] = ACTIONS(9073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9075), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9077), - [anon_sym_BSLASHnewacronym] = ACTIONS(9079), - [aux_sym_acronym_reference_token1] = ACTIONS(9081), - [aux_sym_theorem_definition_token1] = ACTIONS(9083), - [aux_sym_color_reference_token1] = ACTIONS(9085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9087), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9091), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9093), - }, - [439] = { - [sym__simple_content] = STATE(444), - [sym_enum_item] = STATE(444), - [sym_brace_group] = STATE(444), - [sym_mixed_group] = STATE(444), - [sym_text] = STATE(444), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(444), - [sym_inline_formula] = STATE(444), - [sym_begin] = STATE(99), - [sym_environment] = STATE(444), - [sym_caption] = STATE(444), - [sym_citation] = STATE(444), - [sym_package_include] = STATE(444), - [sym_class_include] = STATE(444), - [sym_latex_include] = STATE(444), - [sym_latex_input] = STATE(444), - [sym_biblatex_include] = STATE(444), - [sym_bibtex_include] = STATE(444), - [sym_graphics_include] = STATE(444), - [sym_svg_include] = STATE(444), - [sym_inkscape_include] = STATE(444), - [sym_verbatim_include] = STATE(444), - [sym_import] = STATE(444), - [sym_label_definition] = STATE(444), - [sym_label_reference] = STATE(444), - [sym_equation_label_reference] = STATE(444), - [sym_label_reference_range] = STATE(444), - [sym_label_number] = STATE(444), - [sym_command_definition] = STATE(444), - [sym_math_operator] = STATE(444), - [sym_glossary_entry_definition] = STATE(444), - [sym_glossary_entry_reference] = STATE(444), - [sym_acronym_definition] = STATE(444), - [sym_acronym_reference] = STATE(444), - [sym_theorem_definition] = STATE(444), - [sym_color_reference] = STATE(444), - [sym_color_definition] = STATE(444), - [sym_color_set_definition] = STATE(444), - [sym_pgf_library_import] = STATE(444), - [sym_tikz_library_import] = STATE(444), - [sym_generic_command] = STATE(444), - [aux_sym_subparagraph_repeat1] = STATE(444), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(9013), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(4808), - [aux_sym_subparagraph_token1] = ACTIONS(4808), - [anon_sym_BSLASHitem] = ACTIONS(9019), - [anon_sym_LBRACK] = ACTIONS(9021), - [anon_sym_RBRACK] = ACTIONS(4806), - [anon_sym_LBRACE] = ACTIONS(9023), - [anon_sym_RBRACE] = ACTIONS(4806), - [anon_sym_LPAREN] = ACTIONS(9021), - [anon_sym_COMMA] = ACTIONS(9025), - [anon_sym_EQ] = ACTIONS(9025), - [sym_word] = ACTIONS(9025), - [sym_param] = ACTIONS(9907), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9029), - [anon_sym_DOLLAR] = ACTIONS(9031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9033), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9035), - [aux_sym_citation_token1] = ACTIONS(9037), - [aux_sym_package_include_token1] = ACTIONS(9039), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9041), - [aux_sym_latex_include_token1] = ACTIONS(9043), - [aux_sym_latex_input_token1] = ACTIONS(9045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9047), - [anon_sym_BSLASHbibliography] = ACTIONS(9049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9051), - [anon_sym_BSLASHincludesvg] = ACTIONS(9053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9055), - [aux_sym_verbatim_include_token1] = ACTIONS(9057), - [aux_sym_import_token1] = ACTIONS(9059), - [anon_sym_BSLASHlabel] = ACTIONS(9061), - [aux_sym_label_reference_token1] = ACTIONS(9063), - [anon_sym_BSLASHeqref] = ACTIONS(9065), - [aux_sym_label_reference_range_token1] = ACTIONS(9067), - [anon_sym_BSLASHnewlabel] = ACTIONS(9069), - [aux_sym_command_definition_token1] = ACTIONS(9071), - [aux_sym_math_operator_token1] = ACTIONS(9073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9075), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9077), - [anon_sym_BSLASHnewacronym] = ACTIONS(9079), - [aux_sym_acronym_reference_token1] = ACTIONS(9081), - [aux_sym_theorem_definition_token1] = ACTIONS(9083), - [aux_sym_color_reference_token1] = ACTIONS(9085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9087), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9091), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9093), - }, - [440] = { - [sym__simple_content] = STATE(442), - [sym_brace_group] = STATE(442), - [sym_mixed_group] = STATE(442), - [sym_text] = STATE(442), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(442), - [sym_inline_formula] = STATE(442), - [sym_begin] = STATE(112), - [sym_environment] = STATE(442), - [sym_caption] = STATE(442), - [sym_citation] = STATE(442), - [sym_package_include] = STATE(442), - [sym_class_include] = STATE(442), - [sym_latex_include] = STATE(442), - [sym_latex_input] = STATE(442), - [sym_biblatex_include] = STATE(442), - [sym_bibtex_include] = STATE(442), - [sym_graphics_include] = STATE(442), - [sym_svg_include] = STATE(442), - [sym_inkscape_include] = STATE(442), - [sym_verbatim_include] = STATE(442), - [sym_import] = STATE(442), - [sym_label_definition] = STATE(442), - [sym_label_reference] = STATE(442), - [sym_equation_label_reference] = STATE(442), - [sym_label_reference_range] = STATE(442), - [sym_label_number] = STATE(442), - [sym_command_definition] = STATE(442), - [sym_math_operator] = STATE(442), - [sym_glossary_entry_definition] = STATE(442), - [sym_glossary_entry_reference] = STATE(442), - [sym_acronym_definition] = STATE(442), - [sym_acronym_reference] = STATE(442), - [sym_theorem_definition] = STATE(442), - [sym_color_reference] = STATE(442), - [sym_color_definition] = STATE(442), - [sym_color_set_definition] = STATE(442), - [sym_pgf_library_import] = STATE(442), - [sym_tikz_library_import] = STATE(442), - [sym_generic_command] = STATE(442), - [aux_sym_enum_item_repeat1] = STATE(442), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(7080), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(5210), - [aux_sym_paragraph_token1] = ACTIONS(5210), - [aux_sym_subparagraph_token1] = ACTIONS(5210), - [anon_sym_BSLASHitem] = ACTIONS(5210), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(5208), - [anon_sym_LBRACE] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(7094), - [sym_word] = ACTIONS(7094), - [sym_param] = ACTIONS(9909), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7098), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7098), - [anon_sym_DOLLAR] = ACTIONS(7100), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7102), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(7104), - [aux_sym_citation_token1] = ACTIONS(7106), - [aux_sym_package_include_token1] = ACTIONS(7108), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7110), - [aux_sym_latex_include_token1] = ACTIONS(7112), - [aux_sym_latex_input_token1] = ACTIONS(7114), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7116), - [anon_sym_BSLASHbibliography] = ACTIONS(7118), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7120), - [anon_sym_BSLASHincludesvg] = ACTIONS(7122), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7124), - [aux_sym_verbatim_include_token1] = ACTIONS(7126), - [aux_sym_import_token1] = ACTIONS(7128), - [anon_sym_BSLASHlabel] = ACTIONS(7130), - [aux_sym_label_reference_token1] = ACTIONS(7132), - [anon_sym_BSLASHeqref] = ACTIONS(7134), - [aux_sym_label_reference_range_token1] = ACTIONS(7136), - [anon_sym_BSLASHnewlabel] = ACTIONS(7138), - [aux_sym_command_definition_token1] = ACTIONS(7140), - [aux_sym_math_operator_token1] = ACTIONS(7142), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7144), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7146), - [anon_sym_BSLASHnewacronym] = ACTIONS(7148), - [aux_sym_acronym_reference_token1] = ACTIONS(7150), - [aux_sym_theorem_definition_token1] = ACTIONS(7152), - [aux_sym_color_reference_token1] = ACTIONS(7154), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7156), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7160), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7162), - }, - [441] = { - [sym__simple_content] = STATE(441), - [sym_brace_group] = STATE(441), - [sym_mixed_group] = STATE(441), - [sym_text] = STATE(441), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(441), - [sym_inline_formula] = STATE(441), - [sym_begin] = STATE(112), - [sym_environment] = STATE(441), - [sym_caption] = STATE(441), - [sym_citation] = STATE(441), - [sym_package_include] = STATE(441), - [sym_class_include] = STATE(441), - [sym_latex_include] = STATE(441), - [sym_latex_input] = STATE(441), - [sym_biblatex_include] = STATE(441), - [sym_bibtex_include] = STATE(441), - [sym_graphics_include] = STATE(441), - [sym_svg_include] = STATE(441), - [sym_inkscape_include] = STATE(441), - [sym_verbatim_include] = STATE(441), - [sym_import] = STATE(441), - [sym_label_definition] = STATE(441), - [sym_label_reference] = STATE(441), - [sym_equation_label_reference] = STATE(441), - [sym_label_reference_range] = STATE(441), - [sym_label_number] = STATE(441), - [sym_command_definition] = STATE(441), - [sym_math_operator] = STATE(441), - [sym_glossary_entry_definition] = STATE(441), - [sym_glossary_entry_reference] = STATE(441), - [sym_acronym_definition] = STATE(441), - [sym_acronym_reference] = STATE(441), - [sym_theorem_definition] = STATE(441), - [sym_color_reference] = STATE(441), - [sym_color_definition] = STATE(441), - [sym_color_set_definition] = STATE(441), - [sym_pgf_library_import] = STATE(441), - [sym_tikz_library_import] = STATE(441), - [sym_generic_command] = STATE(441), - [aux_sym_enum_item_repeat1] = STATE(441), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(9911), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(5613), - [aux_sym_paragraph_token1] = ACTIONS(5613), - [aux_sym_subparagraph_token1] = ACTIONS(5613), - [anon_sym_BSLASHitem] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(9914), - [anon_sym_RBRACK] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(9917), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_LPAREN] = ACTIONS(9914), - [anon_sym_COMMA] = ACTIONS(9920), - [anon_sym_EQ] = ACTIONS(9920), - [sym_word] = ACTIONS(9920), - [sym_param] = ACTIONS(9923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9926), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9926), - [anon_sym_DOLLAR] = ACTIONS(9929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9932), - [anon_sym_BSLASHbegin] = ACTIONS(5636), - [anon_sym_BSLASHcaption] = ACTIONS(9935), - [aux_sym_citation_token1] = ACTIONS(9938), - [aux_sym_package_include_token1] = ACTIONS(9941), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9944), - [aux_sym_latex_include_token1] = ACTIONS(9947), - [aux_sym_latex_input_token1] = ACTIONS(9950), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9953), - [anon_sym_BSLASHbibliography] = ACTIONS(9956), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9959), - [anon_sym_BSLASHincludesvg] = ACTIONS(9962), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9965), - [aux_sym_verbatim_include_token1] = ACTIONS(9968), - [aux_sym_import_token1] = ACTIONS(9971), - [anon_sym_BSLASHlabel] = ACTIONS(9974), - [aux_sym_label_reference_token1] = ACTIONS(9977), - [anon_sym_BSLASHeqref] = ACTIONS(9980), - [aux_sym_label_reference_range_token1] = ACTIONS(9983), - [anon_sym_BSLASHnewlabel] = ACTIONS(9986), - [aux_sym_command_definition_token1] = ACTIONS(9989), - [aux_sym_math_operator_token1] = ACTIONS(9992), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9995), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9998), - [anon_sym_BSLASHnewacronym] = ACTIONS(10001), - [aux_sym_acronym_reference_token1] = ACTIONS(10004), - [aux_sym_theorem_definition_token1] = ACTIONS(10007), - [aux_sym_color_reference_token1] = ACTIONS(10010), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10013), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10016), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10019), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10022), - }, - [442] = { - [sym__simple_content] = STATE(441), - [sym_brace_group] = STATE(441), - [sym_mixed_group] = STATE(441), - [sym_text] = STATE(441), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(441), - [sym_inline_formula] = STATE(441), - [sym_begin] = STATE(112), - [sym_environment] = STATE(441), - [sym_caption] = STATE(441), - [sym_citation] = STATE(441), - [sym_package_include] = STATE(441), - [sym_class_include] = STATE(441), - [sym_latex_include] = STATE(441), - [sym_latex_input] = STATE(441), - [sym_biblatex_include] = STATE(441), - [sym_bibtex_include] = STATE(441), - [sym_graphics_include] = STATE(441), - [sym_svg_include] = STATE(441), - [sym_inkscape_include] = STATE(441), - [sym_verbatim_include] = STATE(441), - [sym_import] = STATE(441), - [sym_label_definition] = STATE(441), - [sym_label_reference] = STATE(441), - [sym_equation_label_reference] = STATE(441), - [sym_label_reference_range] = STATE(441), - [sym_label_number] = STATE(441), - [sym_command_definition] = STATE(441), - [sym_math_operator] = STATE(441), - [sym_glossary_entry_definition] = STATE(441), - [sym_glossary_entry_reference] = STATE(441), - [sym_acronym_definition] = STATE(441), - [sym_acronym_reference] = STATE(441), - [sym_theorem_definition] = STATE(441), - [sym_color_reference] = STATE(441), - [sym_color_definition] = STATE(441), - [sym_color_set_definition] = STATE(441), - [sym_pgf_library_import] = STATE(441), - [sym_tikz_library_import] = STATE(441), - [sym_generic_command] = STATE(441), - [aux_sym_enum_item_repeat1] = STATE(441), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(7080), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(5733), - [aux_sym_paragraph_token1] = ACTIONS(5733), - [aux_sym_subparagraph_token1] = ACTIONS(5733), - [anon_sym_BSLASHitem] = ACTIONS(5733), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(5731), - [anon_sym_LBRACE] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_LPAREN] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(7094), - [sym_word] = ACTIONS(7094), - [sym_param] = ACTIONS(10025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7098), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7098), - [anon_sym_DOLLAR] = ACTIONS(7100), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7102), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(7104), - [aux_sym_citation_token1] = ACTIONS(7106), - [aux_sym_package_include_token1] = ACTIONS(7108), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7110), - [aux_sym_latex_include_token1] = ACTIONS(7112), - [aux_sym_latex_input_token1] = ACTIONS(7114), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7116), - [anon_sym_BSLASHbibliography] = ACTIONS(7118), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7120), - [anon_sym_BSLASHincludesvg] = ACTIONS(7122), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7124), - [aux_sym_verbatim_include_token1] = ACTIONS(7126), - [aux_sym_import_token1] = ACTIONS(7128), - [anon_sym_BSLASHlabel] = ACTIONS(7130), - [aux_sym_label_reference_token1] = ACTIONS(7132), - [anon_sym_BSLASHeqref] = ACTIONS(7134), - [aux_sym_label_reference_range_token1] = ACTIONS(7136), - [anon_sym_BSLASHnewlabel] = ACTIONS(7138), - [aux_sym_command_definition_token1] = ACTIONS(7140), - [aux_sym_math_operator_token1] = ACTIONS(7142), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7144), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7146), - [anon_sym_BSLASHnewacronym] = ACTIONS(7148), - [aux_sym_acronym_reference_token1] = ACTIONS(7150), - [aux_sym_theorem_definition_token1] = ACTIONS(7152), - [aux_sym_color_reference_token1] = ACTIONS(7154), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7156), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7160), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7162), - }, - [443] = { - [sym__simple_content] = STATE(441), - [sym_brace_group] = STATE(441), - [sym_mixed_group] = STATE(441), - [sym_text] = STATE(441), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(441), - [sym_inline_formula] = STATE(441), - [sym_begin] = STATE(112), - [sym_environment] = STATE(441), - [sym_caption] = STATE(441), - [sym_citation] = STATE(441), - [sym_package_include] = STATE(441), - [sym_class_include] = STATE(441), - [sym_latex_include] = STATE(441), - [sym_latex_input] = STATE(441), - [sym_biblatex_include] = STATE(441), - [sym_bibtex_include] = STATE(441), - [sym_graphics_include] = STATE(441), - [sym_svg_include] = STATE(441), - [sym_inkscape_include] = STATE(441), - [sym_verbatim_include] = STATE(441), - [sym_import] = STATE(441), - [sym_label_definition] = STATE(441), - [sym_label_reference] = STATE(441), - [sym_equation_label_reference] = STATE(441), - [sym_label_reference_range] = STATE(441), - [sym_label_number] = STATE(441), - [sym_command_definition] = STATE(441), - [sym_math_operator] = STATE(441), - [sym_glossary_entry_definition] = STATE(441), - [sym_glossary_entry_reference] = STATE(441), - [sym_acronym_definition] = STATE(441), - [sym_acronym_reference] = STATE(441), - [sym_theorem_definition] = STATE(441), - [sym_color_reference] = STATE(441), - [sym_color_definition] = STATE(441), - [sym_color_set_definition] = STATE(441), - [sym_pgf_library_import] = STATE(441), - [sym_tikz_library_import] = STATE(441), - [sym_generic_command] = STATE(441), - [aux_sym_enum_item_repeat1] = STATE(441), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(7080), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(5204), - [aux_sym_paragraph_token1] = ACTIONS(5204), - [aux_sym_subparagraph_token1] = ACTIONS(5204), - [anon_sym_BSLASHitem] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_LPAREN] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(7094), - [sym_word] = ACTIONS(7094), - [sym_param] = ACTIONS(10025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7098), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7098), - [anon_sym_DOLLAR] = ACTIONS(7100), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7102), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(7104), - [aux_sym_citation_token1] = ACTIONS(7106), - [aux_sym_package_include_token1] = ACTIONS(7108), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7110), - [aux_sym_latex_include_token1] = ACTIONS(7112), - [aux_sym_latex_input_token1] = ACTIONS(7114), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7116), - [anon_sym_BSLASHbibliography] = ACTIONS(7118), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7120), - [anon_sym_BSLASHincludesvg] = ACTIONS(7122), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7124), - [aux_sym_verbatim_include_token1] = ACTIONS(7126), - [aux_sym_import_token1] = ACTIONS(7128), - [anon_sym_BSLASHlabel] = ACTIONS(7130), - [aux_sym_label_reference_token1] = ACTIONS(7132), - [anon_sym_BSLASHeqref] = ACTIONS(7134), - [aux_sym_label_reference_range_token1] = ACTIONS(7136), - [anon_sym_BSLASHnewlabel] = ACTIONS(7138), - [aux_sym_command_definition_token1] = ACTIONS(7140), - [aux_sym_math_operator_token1] = ACTIONS(7142), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7144), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7146), - [anon_sym_BSLASHnewacronym] = ACTIONS(7148), - [aux_sym_acronym_reference_token1] = ACTIONS(7150), - [aux_sym_theorem_definition_token1] = ACTIONS(7152), - [aux_sym_color_reference_token1] = ACTIONS(7154), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7156), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7160), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7162), - }, - [444] = { - [sym__simple_content] = STATE(444), - [sym_enum_item] = STATE(444), - [sym_brace_group] = STATE(444), - [sym_mixed_group] = STATE(444), - [sym_text] = STATE(444), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(444), - [sym_inline_formula] = STATE(444), - [sym_begin] = STATE(99), - [sym_environment] = STATE(444), - [sym_caption] = STATE(444), - [sym_citation] = STATE(444), - [sym_package_include] = STATE(444), - [sym_class_include] = STATE(444), - [sym_latex_include] = STATE(444), - [sym_latex_input] = STATE(444), - [sym_biblatex_include] = STATE(444), - [sym_bibtex_include] = STATE(444), - [sym_graphics_include] = STATE(444), - [sym_svg_include] = STATE(444), - [sym_inkscape_include] = STATE(444), - [sym_verbatim_include] = STATE(444), - [sym_import] = STATE(444), - [sym_label_definition] = STATE(444), - [sym_label_reference] = STATE(444), - [sym_equation_label_reference] = STATE(444), - [sym_label_reference_range] = STATE(444), - [sym_label_number] = STATE(444), - [sym_command_definition] = STATE(444), - [sym_math_operator] = STATE(444), - [sym_glossary_entry_definition] = STATE(444), - [sym_glossary_entry_reference] = STATE(444), - [sym_acronym_definition] = STATE(444), - [sym_acronym_reference] = STATE(444), - [sym_theorem_definition] = STATE(444), - [sym_color_reference] = STATE(444), - [sym_color_definition] = STATE(444), - [sym_color_set_definition] = STATE(444), - [sym_pgf_library_import] = STATE(444), - [sym_tikz_library_import] = STATE(444), - [sym_generic_command] = STATE(444), - [aux_sym_subparagraph_repeat1] = STATE(444), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(10027), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(5069), - [aux_sym_subparagraph_token1] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(10030), - [anon_sym_LBRACK] = ACTIONS(10033), - [anon_sym_RBRACK] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(10036), - [anon_sym_RBRACE] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(10033), - [anon_sym_COMMA] = ACTIONS(10039), - [anon_sym_EQ] = ACTIONS(10039), - [sym_word] = ACTIONS(10039), - [sym_param] = ACTIONS(10042), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10045), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10045), - [anon_sym_DOLLAR] = ACTIONS(10048), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10051), - [anon_sym_BSLASHbegin] = ACTIONS(5095), - [anon_sym_BSLASHcaption] = ACTIONS(10054), - [aux_sym_citation_token1] = ACTIONS(10057), - [aux_sym_package_include_token1] = ACTIONS(10060), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10063), - [aux_sym_latex_include_token1] = ACTIONS(10066), - [aux_sym_latex_input_token1] = ACTIONS(10069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10072), - [anon_sym_BSLASHbibliography] = ACTIONS(10075), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10078), - [anon_sym_BSLASHincludesvg] = ACTIONS(10081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10084), - [aux_sym_verbatim_include_token1] = ACTIONS(10087), - [aux_sym_import_token1] = ACTIONS(10090), - [anon_sym_BSLASHlabel] = ACTIONS(10093), - [aux_sym_label_reference_token1] = ACTIONS(10096), - [anon_sym_BSLASHeqref] = ACTIONS(10099), - [aux_sym_label_reference_range_token1] = ACTIONS(10102), - [anon_sym_BSLASHnewlabel] = ACTIONS(10105), - [aux_sym_command_definition_token1] = ACTIONS(10108), - [aux_sym_math_operator_token1] = ACTIONS(10111), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10114), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10117), - [anon_sym_BSLASHnewacronym] = ACTIONS(10120), - [aux_sym_acronym_reference_token1] = ACTIONS(10123), - [aux_sym_theorem_definition_token1] = ACTIONS(10126), - [aux_sym_color_reference_token1] = ACTIONS(10129), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10132), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10138), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10141), - }, - [445] = { - [sym__simple_content] = STATE(443), - [sym_brace_group] = STATE(443), - [sym_mixed_group] = STATE(443), - [sym_text] = STATE(443), - [sym__text_fragment] = STATE(1143), - [sym_displayed_equation] = STATE(443), - [sym_inline_formula] = STATE(443), - [sym_begin] = STATE(112), - [sym_environment] = STATE(443), - [sym_caption] = STATE(443), - [sym_citation] = STATE(443), - [sym_package_include] = STATE(443), - [sym_class_include] = STATE(443), - [sym_latex_include] = STATE(443), - [sym_latex_input] = STATE(443), - [sym_biblatex_include] = STATE(443), - [sym_bibtex_include] = STATE(443), - [sym_graphics_include] = STATE(443), - [sym_svg_include] = STATE(443), - [sym_inkscape_include] = STATE(443), - [sym_verbatim_include] = STATE(443), - [sym_import] = STATE(443), - [sym_label_definition] = STATE(443), - [sym_label_reference] = STATE(443), - [sym_equation_label_reference] = STATE(443), - [sym_label_reference_range] = STATE(443), - [sym_label_number] = STATE(443), - [sym_command_definition] = STATE(443), - [sym_math_operator] = STATE(443), - [sym_glossary_entry_definition] = STATE(443), - [sym_glossary_entry_reference] = STATE(443), - [sym_acronym_definition] = STATE(443), - [sym_acronym_reference] = STATE(443), - [sym_theorem_definition] = STATE(443), - [sym_color_reference] = STATE(443), - [sym_color_definition] = STATE(443), - [sym_color_set_definition] = STATE(443), - [sym_pgf_library_import] = STATE(443), - [sym_tikz_library_import] = STATE(443), - [sym_generic_command] = STATE(443), - [aux_sym_enum_item_repeat1] = STATE(443), - [aux_sym_text_repeat1] = STATE(1143), - [sym_generic_command_name] = ACTIONS(7080), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subsubsection_token1] = ACTIONS(5602), - [aux_sym_paragraph_token1] = ACTIONS(5602), - [aux_sym_subparagraph_token1] = ACTIONS(5602), - [anon_sym_BSLASHitem] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(10144), - [anon_sym_RBRACK] = ACTIONS(5600), - [anon_sym_LBRACE] = ACTIONS(7092), - [anon_sym_RBRACE] = ACTIONS(5600), - [anon_sym_LPAREN] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7094), - [anon_sym_EQ] = ACTIONS(7094), - [sym_word] = ACTIONS(7094), - [sym_param] = ACTIONS(10146), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7098), - [anon_sym_BSLASH_LBRACK] = ACTIONS(7098), - [anon_sym_DOLLAR] = ACTIONS(7100), - [anon_sym_BSLASH_LPAREN] = ACTIONS(7102), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(7104), - [aux_sym_citation_token1] = ACTIONS(7106), - [aux_sym_package_include_token1] = ACTIONS(7108), - [anon_sym_BSLASHdocumentclass] = ACTIONS(7110), - [aux_sym_latex_include_token1] = ACTIONS(7112), - [aux_sym_latex_input_token1] = ACTIONS(7114), - [anon_sym_BSLASHaddbibresource] = ACTIONS(7116), - [anon_sym_BSLASHbibliography] = ACTIONS(7118), - [anon_sym_BSLASHincludegraphics] = ACTIONS(7120), - [anon_sym_BSLASHincludesvg] = ACTIONS(7122), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(7124), - [aux_sym_verbatim_include_token1] = ACTIONS(7126), - [aux_sym_import_token1] = ACTIONS(7128), - [anon_sym_BSLASHlabel] = ACTIONS(7130), - [aux_sym_label_reference_token1] = ACTIONS(7132), - [anon_sym_BSLASHeqref] = ACTIONS(7134), - [aux_sym_label_reference_range_token1] = ACTIONS(7136), - [anon_sym_BSLASHnewlabel] = ACTIONS(7138), - [aux_sym_command_definition_token1] = ACTIONS(7140), - [aux_sym_math_operator_token1] = ACTIONS(7142), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7144), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(7146), - [anon_sym_BSLASHnewacronym] = ACTIONS(7148), - [aux_sym_acronym_reference_token1] = ACTIONS(7150), - [aux_sym_theorem_definition_token1] = ACTIONS(7152), - [aux_sym_color_reference_token1] = ACTIONS(7154), - [anon_sym_BSLASHdefinecolor] = ACTIONS(7156), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(7158), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(7160), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7162), - }, - [446] = { - [sym__simple_content] = STATE(447), - [sym_enum_item] = STATE(447), - [sym_brace_group] = STATE(447), - [sym_mixed_group] = STATE(447), - [sym_text] = STATE(447), - [sym__text_fragment] = STATE(1388), - [sym_displayed_equation] = STATE(447), - [sym_inline_formula] = STATE(447), - [sym_begin] = STATE(83), - [sym_environment] = STATE(447), - [sym_caption] = STATE(447), - [sym_citation] = STATE(447), - [sym_package_include] = STATE(447), - [sym_class_include] = STATE(447), - [sym_latex_include] = STATE(447), - [sym_latex_input] = STATE(447), - [sym_biblatex_include] = STATE(447), - [sym_bibtex_include] = STATE(447), - [sym_graphics_include] = STATE(447), - [sym_svg_include] = STATE(447), - [sym_inkscape_include] = STATE(447), - [sym_verbatim_include] = STATE(447), - [sym_import] = STATE(447), - [sym_label_definition] = STATE(447), - [sym_label_reference] = STATE(447), - [sym_equation_label_reference] = STATE(447), - [sym_label_reference_range] = STATE(447), - [sym_label_number] = STATE(447), - [sym_command_definition] = STATE(447), - [sym_math_operator] = STATE(447), - [sym_glossary_entry_definition] = STATE(447), - [sym_glossary_entry_reference] = STATE(447), - [sym_acronym_definition] = STATE(447), - [sym_acronym_reference] = STATE(447), - [sym_theorem_definition] = STATE(447), - [sym_color_reference] = STATE(447), - [sym_color_definition] = STATE(447), - [sym_color_set_definition] = STATE(447), - [sym_pgf_library_import] = STATE(447), - [sym_tikz_library_import] = STATE(447), - [sym_generic_command] = STATE(447), - [aux_sym_subparagraph_repeat1] = STATE(447), - [aux_sym_text_repeat1] = STATE(1388), - [sym_generic_command_name] = ACTIONS(9823), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subparagraph_token1] = ACTIONS(4543), - [anon_sym_BSLASHitem] = ACTIONS(9827), - [anon_sym_LBRACK] = ACTIONS(9829), - [anon_sym_RBRACK] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(9831), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(9829), - [anon_sym_COMMA] = ACTIONS(9833), - [anon_sym_EQ] = ACTIONS(9833), - [sym_word] = ACTIONS(9833), - [sym_param] = ACTIONS(10148), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9837), - [anon_sym_DOLLAR] = ACTIONS(9839), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9841), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9843), - [aux_sym_citation_token1] = ACTIONS(9845), - [aux_sym_package_include_token1] = ACTIONS(9847), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9849), - [aux_sym_latex_include_token1] = ACTIONS(9851), - [aux_sym_latex_input_token1] = ACTIONS(9853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9855), - [anon_sym_BSLASHbibliography] = ACTIONS(9857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9859), - [anon_sym_BSLASHincludesvg] = ACTIONS(9861), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9863), - [aux_sym_verbatim_include_token1] = ACTIONS(9865), - [aux_sym_import_token1] = ACTIONS(9867), - [anon_sym_BSLASHlabel] = ACTIONS(9869), - [aux_sym_label_reference_token1] = ACTIONS(9871), - [anon_sym_BSLASHeqref] = ACTIONS(9873), - [aux_sym_label_reference_range_token1] = ACTIONS(9875), - [anon_sym_BSLASHnewlabel] = ACTIONS(9877), - [aux_sym_command_definition_token1] = ACTIONS(9879), - [aux_sym_math_operator_token1] = ACTIONS(9881), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9883), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9885), - [anon_sym_BSLASHnewacronym] = ACTIONS(9887), - [aux_sym_acronym_reference_token1] = ACTIONS(9889), - [aux_sym_theorem_definition_token1] = ACTIONS(9891), - [aux_sym_color_reference_token1] = ACTIONS(9893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9895), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9899), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9901), - }, - [447] = { - [sym__simple_content] = STATE(453), - [sym_enum_item] = STATE(453), - [sym_brace_group] = STATE(453), - [sym_mixed_group] = STATE(453), - [sym_text] = STATE(453), - [sym__text_fragment] = STATE(1388), - [sym_displayed_equation] = STATE(453), - [sym_inline_formula] = STATE(453), - [sym_begin] = STATE(83), - [sym_environment] = STATE(453), - [sym_caption] = STATE(453), - [sym_citation] = STATE(453), - [sym_package_include] = STATE(453), - [sym_class_include] = STATE(453), - [sym_latex_include] = STATE(453), - [sym_latex_input] = STATE(453), - [sym_biblatex_include] = STATE(453), - [sym_bibtex_include] = STATE(453), - [sym_graphics_include] = STATE(453), - [sym_svg_include] = STATE(453), - [sym_inkscape_include] = STATE(453), - [sym_verbatim_include] = STATE(453), - [sym_import] = STATE(453), - [sym_label_definition] = STATE(453), - [sym_label_reference] = STATE(453), - [sym_equation_label_reference] = STATE(453), - [sym_label_reference_range] = STATE(453), - [sym_label_number] = STATE(453), - [sym_command_definition] = STATE(453), - [sym_math_operator] = STATE(453), - [sym_glossary_entry_definition] = STATE(453), - [sym_glossary_entry_reference] = STATE(453), - [sym_acronym_definition] = STATE(453), - [sym_acronym_reference] = STATE(453), - [sym_theorem_definition] = STATE(453), - [sym_color_reference] = STATE(453), - [sym_color_definition] = STATE(453), - [sym_color_set_definition] = STATE(453), - [sym_pgf_library_import] = STATE(453), - [sym_tikz_library_import] = STATE(453), - [sym_generic_command] = STATE(453), - [aux_sym_subparagraph_repeat1] = STATE(453), - [aux_sym_text_repeat1] = STATE(1388), - [sym_generic_command_name] = ACTIONS(9823), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subparagraph_token1] = ACTIONS(4808), - [anon_sym_BSLASHitem] = ACTIONS(9827), - [anon_sym_LBRACK] = ACTIONS(9829), - [anon_sym_RBRACK] = ACTIONS(4806), - [anon_sym_LBRACE] = ACTIONS(9831), - [anon_sym_RBRACE] = ACTIONS(4806), - [anon_sym_LPAREN] = ACTIONS(9829), - [anon_sym_COMMA] = ACTIONS(9833), - [anon_sym_EQ] = ACTIONS(9833), - [sym_word] = ACTIONS(9833), - [sym_param] = ACTIONS(10150), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9837), - [anon_sym_DOLLAR] = ACTIONS(9839), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9841), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9843), - [aux_sym_citation_token1] = ACTIONS(9845), - [aux_sym_package_include_token1] = ACTIONS(9847), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9849), - [aux_sym_latex_include_token1] = ACTIONS(9851), - [aux_sym_latex_input_token1] = ACTIONS(9853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9855), - [anon_sym_BSLASHbibliography] = ACTIONS(9857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9859), - [anon_sym_BSLASHincludesvg] = ACTIONS(9861), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9863), - [aux_sym_verbatim_include_token1] = ACTIONS(9865), - [aux_sym_import_token1] = ACTIONS(9867), - [anon_sym_BSLASHlabel] = ACTIONS(9869), - [aux_sym_label_reference_token1] = ACTIONS(9871), - [anon_sym_BSLASHeqref] = ACTIONS(9873), - [aux_sym_label_reference_range_token1] = ACTIONS(9875), - [anon_sym_BSLASHnewlabel] = ACTIONS(9877), - [aux_sym_command_definition_token1] = ACTIONS(9879), - [aux_sym_math_operator_token1] = ACTIONS(9881), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9883), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9885), - [anon_sym_BSLASHnewacronym] = ACTIONS(9887), - [aux_sym_acronym_reference_token1] = ACTIONS(9889), - [aux_sym_theorem_definition_token1] = ACTIONS(9891), - [aux_sym_color_reference_token1] = ACTIONS(9893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9895), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9899), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9901), - }, - [448] = { - [sym__simple_content] = STATE(452), - [sym_brace_group] = STATE(452), - [sym_mixed_group] = STATE(452), - [sym_text] = STATE(452), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(452), - [sym_inline_formula] = STATE(452), - [sym_begin] = STATE(99), - [sym_environment] = STATE(452), - [sym_caption] = STATE(452), - [sym_citation] = STATE(452), - [sym_package_include] = STATE(452), - [sym_class_include] = STATE(452), - [sym_latex_include] = STATE(452), - [sym_latex_input] = STATE(452), - [sym_biblatex_include] = STATE(452), - [sym_bibtex_include] = STATE(452), - [sym_graphics_include] = STATE(452), - [sym_svg_include] = STATE(452), - [sym_inkscape_include] = STATE(452), - [sym_verbatim_include] = STATE(452), - [sym_import] = STATE(452), - [sym_label_definition] = STATE(452), - [sym_label_reference] = STATE(452), - [sym_equation_label_reference] = STATE(452), - [sym_label_reference_range] = STATE(452), - [sym_label_number] = STATE(452), - [sym_command_definition] = STATE(452), - [sym_math_operator] = STATE(452), - [sym_glossary_entry_definition] = STATE(452), - [sym_glossary_entry_reference] = STATE(452), - [sym_acronym_definition] = STATE(452), - [sym_acronym_reference] = STATE(452), - [sym_theorem_definition] = STATE(452), - [sym_color_reference] = STATE(452), - [sym_color_definition] = STATE(452), - [sym_color_set_definition] = STATE(452), - [sym_pgf_library_import] = STATE(452), - [sym_tikz_library_import] = STATE(452), - [sym_generic_command] = STATE(452), - [aux_sym_enum_item_repeat1] = STATE(452), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(9013), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(5204), - [aux_sym_subparagraph_token1] = ACTIONS(5204), - [anon_sym_BSLASHitem] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(9021), - [anon_sym_RBRACK] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(9023), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_LPAREN] = ACTIONS(9021), - [anon_sym_COMMA] = ACTIONS(9025), - [anon_sym_EQ] = ACTIONS(9025), - [sym_word] = ACTIONS(9025), - [sym_param] = ACTIONS(10152), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9029), - [anon_sym_DOLLAR] = ACTIONS(9031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9033), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9035), - [aux_sym_citation_token1] = ACTIONS(9037), - [aux_sym_package_include_token1] = ACTIONS(9039), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9041), - [aux_sym_latex_include_token1] = ACTIONS(9043), - [aux_sym_latex_input_token1] = ACTIONS(9045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9047), - [anon_sym_BSLASHbibliography] = ACTIONS(9049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9051), - [anon_sym_BSLASHincludesvg] = ACTIONS(9053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9055), - [aux_sym_verbatim_include_token1] = ACTIONS(9057), - [aux_sym_import_token1] = ACTIONS(9059), - [anon_sym_BSLASHlabel] = ACTIONS(9061), - [aux_sym_label_reference_token1] = ACTIONS(9063), - [anon_sym_BSLASHeqref] = ACTIONS(9065), - [aux_sym_label_reference_range_token1] = ACTIONS(9067), - [anon_sym_BSLASHnewlabel] = ACTIONS(9069), - [aux_sym_command_definition_token1] = ACTIONS(9071), - [aux_sym_math_operator_token1] = ACTIONS(9073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9075), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9077), - [anon_sym_BSLASHnewacronym] = ACTIONS(9079), - [aux_sym_acronym_reference_token1] = ACTIONS(9081), - [aux_sym_theorem_definition_token1] = ACTIONS(9083), - [aux_sym_color_reference_token1] = ACTIONS(9085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9087), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9091), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9093), - }, - [449] = { - [sym__simple_content] = STATE(450), - [sym_brace_group] = STATE(450), - [sym_mixed_group] = STATE(450), - [sym_text] = STATE(450), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(450), - [sym_inline_formula] = STATE(450), - [sym_begin] = STATE(99), - [sym_environment] = STATE(450), - [sym_caption] = STATE(450), - [sym_citation] = STATE(450), - [sym_package_include] = STATE(450), - [sym_class_include] = STATE(450), - [sym_latex_include] = STATE(450), - [sym_latex_input] = STATE(450), - [sym_biblatex_include] = STATE(450), - [sym_bibtex_include] = STATE(450), - [sym_graphics_include] = STATE(450), - [sym_svg_include] = STATE(450), - [sym_inkscape_include] = STATE(450), - [sym_verbatim_include] = STATE(450), - [sym_import] = STATE(450), - [sym_label_definition] = STATE(450), - [sym_label_reference] = STATE(450), - [sym_equation_label_reference] = STATE(450), - [sym_label_reference_range] = STATE(450), - [sym_label_number] = STATE(450), - [sym_command_definition] = STATE(450), - [sym_math_operator] = STATE(450), - [sym_glossary_entry_definition] = STATE(450), - [sym_glossary_entry_reference] = STATE(450), - [sym_acronym_definition] = STATE(450), - [sym_acronym_reference] = STATE(450), - [sym_theorem_definition] = STATE(450), - [sym_color_reference] = STATE(450), - [sym_color_definition] = STATE(450), - [sym_color_set_definition] = STATE(450), - [sym_pgf_library_import] = STATE(450), - [sym_tikz_library_import] = STATE(450), - [sym_generic_command] = STATE(450), - [aux_sym_enum_item_repeat1] = STATE(450), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(9013), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(5210), - [aux_sym_subparagraph_token1] = ACTIONS(5210), - [anon_sym_BSLASHitem] = ACTIONS(5210), - [anon_sym_LBRACK] = ACTIONS(9021), - [anon_sym_RBRACK] = ACTIONS(5208), - [anon_sym_LBRACE] = ACTIONS(9023), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(9021), - [anon_sym_COMMA] = ACTIONS(9025), - [anon_sym_EQ] = ACTIONS(9025), - [sym_word] = ACTIONS(9025), - [sym_param] = ACTIONS(10154), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9029), - [anon_sym_DOLLAR] = ACTIONS(9031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9033), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9035), - [aux_sym_citation_token1] = ACTIONS(9037), - [aux_sym_package_include_token1] = ACTIONS(9039), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9041), - [aux_sym_latex_include_token1] = ACTIONS(9043), - [aux_sym_latex_input_token1] = ACTIONS(9045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9047), - [anon_sym_BSLASHbibliography] = ACTIONS(9049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9051), - [anon_sym_BSLASHincludesvg] = ACTIONS(9053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9055), - [aux_sym_verbatim_include_token1] = ACTIONS(9057), - [aux_sym_import_token1] = ACTIONS(9059), - [anon_sym_BSLASHlabel] = ACTIONS(9061), - [aux_sym_label_reference_token1] = ACTIONS(9063), - [anon_sym_BSLASHeqref] = ACTIONS(9065), - [aux_sym_label_reference_range_token1] = ACTIONS(9067), - [anon_sym_BSLASHnewlabel] = ACTIONS(9069), - [aux_sym_command_definition_token1] = ACTIONS(9071), - [aux_sym_math_operator_token1] = ACTIONS(9073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9075), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9077), - [anon_sym_BSLASHnewacronym] = ACTIONS(9079), - [aux_sym_acronym_reference_token1] = ACTIONS(9081), - [aux_sym_theorem_definition_token1] = ACTIONS(9083), - [aux_sym_color_reference_token1] = ACTIONS(9085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9087), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9091), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9093), - }, - [450] = { - [sym__simple_content] = STATE(452), - [sym_brace_group] = STATE(452), - [sym_mixed_group] = STATE(452), - [sym_text] = STATE(452), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(452), - [sym_inline_formula] = STATE(452), - [sym_begin] = STATE(99), - [sym_environment] = STATE(452), - [sym_caption] = STATE(452), - [sym_citation] = STATE(452), - [sym_package_include] = STATE(452), - [sym_class_include] = STATE(452), - [sym_latex_include] = STATE(452), - [sym_latex_input] = STATE(452), - [sym_biblatex_include] = STATE(452), - [sym_bibtex_include] = STATE(452), - [sym_graphics_include] = STATE(452), - [sym_svg_include] = STATE(452), - [sym_inkscape_include] = STATE(452), - [sym_verbatim_include] = STATE(452), - [sym_import] = STATE(452), - [sym_label_definition] = STATE(452), - [sym_label_reference] = STATE(452), - [sym_equation_label_reference] = STATE(452), - [sym_label_reference_range] = STATE(452), - [sym_label_number] = STATE(452), - [sym_command_definition] = STATE(452), - [sym_math_operator] = STATE(452), - [sym_glossary_entry_definition] = STATE(452), - [sym_glossary_entry_reference] = STATE(452), - [sym_acronym_definition] = STATE(452), - [sym_acronym_reference] = STATE(452), - [sym_theorem_definition] = STATE(452), - [sym_color_reference] = STATE(452), - [sym_color_definition] = STATE(452), - [sym_color_set_definition] = STATE(452), - [sym_pgf_library_import] = STATE(452), - [sym_tikz_library_import] = STATE(452), - [sym_generic_command] = STATE(452), - [aux_sym_enum_item_repeat1] = STATE(452), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(9013), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(5733), - [aux_sym_subparagraph_token1] = ACTIONS(5733), - [anon_sym_BSLASHitem] = ACTIONS(5733), - [anon_sym_LBRACK] = ACTIONS(9021), - [anon_sym_RBRACK] = ACTIONS(5731), - [anon_sym_LBRACE] = ACTIONS(9023), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_LPAREN] = ACTIONS(9021), - [anon_sym_COMMA] = ACTIONS(9025), - [anon_sym_EQ] = ACTIONS(9025), - [sym_word] = ACTIONS(9025), - [sym_param] = ACTIONS(10152), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9029), - [anon_sym_DOLLAR] = ACTIONS(9031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9033), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9035), - [aux_sym_citation_token1] = ACTIONS(9037), - [aux_sym_package_include_token1] = ACTIONS(9039), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9041), - [aux_sym_latex_include_token1] = ACTIONS(9043), - [aux_sym_latex_input_token1] = ACTIONS(9045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9047), - [anon_sym_BSLASHbibliography] = ACTIONS(9049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9051), - [anon_sym_BSLASHincludesvg] = ACTIONS(9053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9055), - [aux_sym_verbatim_include_token1] = ACTIONS(9057), - [aux_sym_import_token1] = ACTIONS(9059), - [anon_sym_BSLASHlabel] = ACTIONS(9061), - [aux_sym_label_reference_token1] = ACTIONS(9063), - [anon_sym_BSLASHeqref] = ACTIONS(9065), - [aux_sym_label_reference_range_token1] = ACTIONS(9067), - [anon_sym_BSLASHnewlabel] = ACTIONS(9069), - [aux_sym_command_definition_token1] = ACTIONS(9071), - [aux_sym_math_operator_token1] = ACTIONS(9073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9075), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9077), - [anon_sym_BSLASHnewacronym] = ACTIONS(9079), - [aux_sym_acronym_reference_token1] = ACTIONS(9081), - [aux_sym_theorem_definition_token1] = ACTIONS(9083), - [aux_sym_color_reference_token1] = ACTIONS(9085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9087), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9091), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9093), - }, - [451] = { - [sym__simple_content] = STATE(448), - [sym_brace_group] = STATE(448), - [sym_mixed_group] = STATE(448), - [sym_text] = STATE(448), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(448), - [sym_inline_formula] = STATE(448), - [sym_begin] = STATE(99), - [sym_environment] = STATE(448), - [sym_caption] = STATE(448), - [sym_citation] = STATE(448), - [sym_package_include] = STATE(448), - [sym_class_include] = STATE(448), - [sym_latex_include] = STATE(448), - [sym_latex_input] = STATE(448), - [sym_biblatex_include] = STATE(448), - [sym_bibtex_include] = STATE(448), - [sym_graphics_include] = STATE(448), - [sym_svg_include] = STATE(448), - [sym_inkscape_include] = STATE(448), - [sym_verbatim_include] = STATE(448), - [sym_import] = STATE(448), - [sym_label_definition] = STATE(448), - [sym_label_reference] = STATE(448), - [sym_equation_label_reference] = STATE(448), - [sym_label_reference_range] = STATE(448), - [sym_label_number] = STATE(448), - [sym_command_definition] = STATE(448), - [sym_math_operator] = STATE(448), - [sym_glossary_entry_definition] = STATE(448), - [sym_glossary_entry_reference] = STATE(448), - [sym_acronym_definition] = STATE(448), - [sym_acronym_reference] = STATE(448), - [sym_theorem_definition] = STATE(448), - [sym_color_reference] = STATE(448), - [sym_color_definition] = STATE(448), - [sym_color_set_definition] = STATE(448), - [sym_pgf_library_import] = STATE(448), - [sym_tikz_library_import] = STATE(448), - [sym_generic_command] = STATE(448), - [aux_sym_enum_item_repeat1] = STATE(448), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(9013), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(5602), - [aux_sym_subparagraph_token1] = ACTIONS(5602), - [anon_sym_BSLASHitem] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(10156), - [anon_sym_RBRACK] = ACTIONS(5600), - [anon_sym_LBRACE] = ACTIONS(9023), - [anon_sym_RBRACE] = ACTIONS(5600), - [anon_sym_LPAREN] = ACTIONS(9021), - [anon_sym_COMMA] = ACTIONS(9025), - [anon_sym_EQ] = ACTIONS(9025), - [sym_word] = ACTIONS(9025), - [sym_param] = ACTIONS(10158), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9029), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9029), - [anon_sym_DOLLAR] = ACTIONS(9031), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9033), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9035), - [aux_sym_citation_token1] = ACTIONS(9037), - [aux_sym_package_include_token1] = ACTIONS(9039), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9041), - [aux_sym_latex_include_token1] = ACTIONS(9043), - [aux_sym_latex_input_token1] = ACTIONS(9045), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9047), - [anon_sym_BSLASHbibliography] = ACTIONS(9049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9051), - [anon_sym_BSLASHincludesvg] = ACTIONS(9053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9055), - [aux_sym_verbatim_include_token1] = ACTIONS(9057), - [aux_sym_import_token1] = ACTIONS(9059), - [anon_sym_BSLASHlabel] = ACTIONS(9061), - [aux_sym_label_reference_token1] = ACTIONS(9063), - [anon_sym_BSLASHeqref] = ACTIONS(9065), - [aux_sym_label_reference_range_token1] = ACTIONS(9067), - [anon_sym_BSLASHnewlabel] = ACTIONS(9069), - [aux_sym_command_definition_token1] = ACTIONS(9071), - [aux_sym_math_operator_token1] = ACTIONS(9073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9075), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9077), - [anon_sym_BSLASHnewacronym] = ACTIONS(9079), - [aux_sym_acronym_reference_token1] = ACTIONS(9081), - [aux_sym_theorem_definition_token1] = ACTIONS(9083), - [aux_sym_color_reference_token1] = ACTIONS(9085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9087), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9091), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9093), - }, - [452] = { - [sym__simple_content] = STATE(452), - [sym_brace_group] = STATE(452), - [sym_mixed_group] = STATE(452), - [sym_text] = STATE(452), - [sym__text_fragment] = STATE(1264), - [sym_displayed_equation] = STATE(452), - [sym_inline_formula] = STATE(452), - [sym_begin] = STATE(99), - [sym_environment] = STATE(452), - [sym_caption] = STATE(452), - [sym_citation] = STATE(452), - [sym_package_include] = STATE(452), - [sym_class_include] = STATE(452), - [sym_latex_include] = STATE(452), - [sym_latex_input] = STATE(452), - [sym_biblatex_include] = STATE(452), - [sym_bibtex_include] = STATE(452), - [sym_graphics_include] = STATE(452), - [sym_svg_include] = STATE(452), - [sym_inkscape_include] = STATE(452), - [sym_verbatim_include] = STATE(452), - [sym_import] = STATE(452), - [sym_label_definition] = STATE(452), - [sym_label_reference] = STATE(452), - [sym_equation_label_reference] = STATE(452), - [sym_label_reference_range] = STATE(452), - [sym_label_number] = STATE(452), - [sym_command_definition] = STATE(452), - [sym_math_operator] = STATE(452), - [sym_glossary_entry_definition] = STATE(452), - [sym_glossary_entry_reference] = STATE(452), - [sym_acronym_definition] = STATE(452), - [sym_acronym_reference] = STATE(452), - [sym_theorem_definition] = STATE(452), - [sym_color_reference] = STATE(452), - [sym_color_definition] = STATE(452), - [sym_color_set_definition] = STATE(452), - [sym_pgf_library_import] = STATE(452), - [sym_tikz_library_import] = STATE(452), - [sym_generic_command] = STATE(452), - [aux_sym_enum_item_repeat1] = STATE(452), - [aux_sym_text_repeat1] = STATE(1264), - [sym_generic_command_name] = ACTIONS(10160), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_paragraph_token1] = ACTIONS(5613), - [aux_sym_subparagraph_token1] = ACTIONS(5613), - [anon_sym_BSLASHitem] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(10163), - [anon_sym_RBRACK] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(10166), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_LPAREN] = ACTIONS(10163), - [anon_sym_COMMA] = ACTIONS(10169), - [anon_sym_EQ] = ACTIONS(10169), - [sym_word] = ACTIONS(10169), - [sym_param] = ACTIONS(10172), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10175), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10175), - [anon_sym_DOLLAR] = ACTIONS(10178), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10181), - [anon_sym_BSLASHbegin] = ACTIONS(5636), - [anon_sym_BSLASHcaption] = ACTIONS(10184), - [aux_sym_citation_token1] = ACTIONS(10187), - [aux_sym_package_include_token1] = ACTIONS(10190), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10193), - [aux_sym_latex_include_token1] = ACTIONS(10196), - [aux_sym_latex_input_token1] = ACTIONS(10199), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10202), - [anon_sym_BSLASHbibliography] = ACTIONS(10205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10208), - [anon_sym_BSLASHincludesvg] = ACTIONS(10211), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10214), - [aux_sym_verbatim_include_token1] = ACTIONS(10217), - [aux_sym_import_token1] = ACTIONS(10220), - [anon_sym_BSLASHlabel] = ACTIONS(10223), - [aux_sym_label_reference_token1] = ACTIONS(10226), - [anon_sym_BSLASHeqref] = ACTIONS(10229), - [aux_sym_label_reference_range_token1] = ACTIONS(10232), - [anon_sym_BSLASHnewlabel] = ACTIONS(10235), - [aux_sym_command_definition_token1] = ACTIONS(10238), - [aux_sym_math_operator_token1] = ACTIONS(10241), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10244), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10247), - [anon_sym_BSLASHnewacronym] = ACTIONS(10250), - [aux_sym_acronym_reference_token1] = ACTIONS(10253), - [aux_sym_theorem_definition_token1] = ACTIONS(10256), - [aux_sym_color_reference_token1] = ACTIONS(10259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10262), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10265), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10268), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10271), - }, - [453] = { - [sym__simple_content] = STATE(453), - [sym_enum_item] = STATE(453), - [sym_brace_group] = STATE(453), - [sym_mixed_group] = STATE(453), - [sym_text] = STATE(453), - [sym__text_fragment] = STATE(1388), - [sym_displayed_equation] = STATE(453), - [sym_inline_formula] = STATE(453), - [sym_begin] = STATE(83), - [sym_environment] = STATE(453), - [sym_caption] = STATE(453), - [sym_citation] = STATE(453), - [sym_package_include] = STATE(453), - [sym_class_include] = STATE(453), - [sym_latex_include] = STATE(453), - [sym_latex_input] = STATE(453), - [sym_biblatex_include] = STATE(453), - [sym_bibtex_include] = STATE(453), - [sym_graphics_include] = STATE(453), - [sym_svg_include] = STATE(453), - [sym_inkscape_include] = STATE(453), - [sym_verbatim_include] = STATE(453), - [sym_import] = STATE(453), - [sym_label_definition] = STATE(453), - [sym_label_reference] = STATE(453), - [sym_equation_label_reference] = STATE(453), - [sym_label_reference_range] = STATE(453), - [sym_label_number] = STATE(453), - [sym_command_definition] = STATE(453), - [sym_math_operator] = STATE(453), - [sym_glossary_entry_definition] = STATE(453), - [sym_glossary_entry_reference] = STATE(453), - [sym_acronym_definition] = STATE(453), - [sym_acronym_reference] = STATE(453), - [sym_theorem_definition] = STATE(453), - [sym_color_reference] = STATE(453), - [sym_color_definition] = STATE(453), - [sym_color_set_definition] = STATE(453), - [sym_pgf_library_import] = STATE(453), - [sym_tikz_library_import] = STATE(453), - [sym_generic_command] = STATE(453), - [aux_sym_subparagraph_repeat1] = STATE(453), - [aux_sym_text_repeat1] = STATE(1388), - [sym_generic_command_name] = ACTIONS(10274), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subparagraph_token1] = ACTIONS(5069), - [anon_sym_BSLASHitem] = ACTIONS(10277), - [anon_sym_LBRACK] = ACTIONS(10280), - [anon_sym_RBRACK] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(10283), - [anon_sym_RBRACE] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(10280), - [anon_sym_COMMA] = ACTIONS(10286), - [anon_sym_EQ] = ACTIONS(10286), - [sym_word] = ACTIONS(10286), - [sym_param] = ACTIONS(10289), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10292), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10292), - [anon_sym_DOLLAR] = ACTIONS(10295), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10298), - [anon_sym_BSLASHbegin] = ACTIONS(5095), - [anon_sym_BSLASHcaption] = ACTIONS(10301), - [aux_sym_citation_token1] = ACTIONS(10304), - [aux_sym_package_include_token1] = ACTIONS(10307), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10310), - [aux_sym_latex_include_token1] = ACTIONS(10313), - [aux_sym_latex_input_token1] = ACTIONS(10316), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10319), - [anon_sym_BSLASHbibliography] = ACTIONS(10322), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10325), - [anon_sym_BSLASHincludesvg] = ACTIONS(10328), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10331), - [aux_sym_verbatim_include_token1] = ACTIONS(10334), - [aux_sym_import_token1] = ACTIONS(10337), - [anon_sym_BSLASHlabel] = ACTIONS(10340), - [aux_sym_label_reference_token1] = ACTIONS(10343), - [anon_sym_BSLASHeqref] = ACTIONS(10346), - [aux_sym_label_reference_range_token1] = ACTIONS(10349), - [anon_sym_BSLASHnewlabel] = ACTIONS(10352), - [aux_sym_command_definition_token1] = ACTIONS(10355), - [aux_sym_math_operator_token1] = ACTIONS(10358), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10361), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10364), - [anon_sym_BSLASHnewacronym] = ACTIONS(10367), - [aux_sym_acronym_reference_token1] = ACTIONS(10370), - [aux_sym_theorem_definition_token1] = ACTIONS(10373), - [aux_sym_color_reference_token1] = ACTIONS(10376), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10379), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10382), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10388), - }, - [454] = { - [sym__simple_content] = STATE(458), - [sym_brace_group] = STATE(458), - [sym_mixed_group] = STATE(458), - [sym_text] = STATE(458), - [sym__text_fragment] = STATE(1388), - [sym_displayed_equation] = STATE(458), - [sym_inline_formula] = STATE(458), - [sym_begin] = STATE(83), - [sym_environment] = STATE(458), - [sym_caption] = STATE(458), - [sym_citation] = STATE(458), - [sym_package_include] = STATE(458), - [sym_class_include] = STATE(458), - [sym_latex_include] = STATE(458), - [sym_latex_input] = STATE(458), - [sym_biblatex_include] = STATE(458), - [sym_bibtex_include] = STATE(458), - [sym_graphics_include] = STATE(458), - [sym_svg_include] = STATE(458), - [sym_inkscape_include] = STATE(458), - [sym_verbatim_include] = STATE(458), - [sym_import] = STATE(458), - [sym_label_definition] = STATE(458), - [sym_label_reference] = STATE(458), - [sym_equation_label_reference] = STATE(458), - [sym_label_reference_range] = STATE(458), - [sym_label_number] = STATE(458), - [sym_command_definition] = STATE(458), - [sym_math_operator] = STATE(458), - [sym_glossary_entry_definition] = STATE(458), - [sym_glossary_entry_reference] = STATE(458), - [sym_acronym_definition] = STATE(458), - [sym_acronym_reference] = STATE(458), - [sym_theorem_definition] = STATE(458), - [sym_color_reference] = STATE(458), - [sym_color_definition] = STATE(458), - [sym_color_set_definition] = STATE(458), - [sym_pgf_library_import] = STATE(458), - [sym_tikz_library_import] = STATE(458), - [sym_generic_command] = STATE(458), - [aux_sym_enum_item_repeat1] = STATE(458), - [aux_sym_text_repeat1] = STATE(1388), - [sym_generic_command_name] = ACTIONS(9823), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subparagraph_token1] = ACTIONS(5733), - [anon_sym_BSLASHitem] = ACTIONS(5733), - [anon_sym_LBRACK] = ACTIONS(9829), - [anon_sym_RBRACK] = ACTIONS(5731), - [anon_sym_LBRACE] = ACTIONS(9831), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_LPAREN] = ACTIONS(9829), - [anon_sym_COMMA] = ACTIONS(9833), - [anon_sym_EQ] = ACTIONS(9833), - [sym_word] = ACTIONS(9833), - [sym_param] = ACTIONS(10391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9837), - [anon_sym_DOLLAR] = ACTIONS(9839), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9841), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9843), - [aux_sym_citation_token1] = ACTIONS(9845), - [aux_sym_package_include_token1] = ACTIONS(9847), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9849), - [aux_sym_latex_include_token1] = ACTIONS(9851), - [aux_sym_latex_input_token1] = ACTIONS(9853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9855), - [anon_sym_BSLASHbibliography] = ACTIONS(9857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9859), - [anon_sym_BSLASHincludesvg] = ACTIONS(9861), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9863), - [aux_sym_verbatim_include_token1] = ACTIONS(9865), - [aux_sym_import_token1] = ACTIONS(9867), - [anon_sym_BSLASHlabel] = ACTIONS(9869), - [aux_sym_label_reference_token1] = ACTIONS(9871), - [anon_sym_BSLASHeqref] = ACTIONS(9873), - [aux_sym_label_reference_range_token1] = ACTIONS(9875), - [anon_sym_BSLASHnewlabel] = ACTIONS(9877), - [aux_sym_command_definition_token1] = ACTIONS(9879), - [aux_sym_math_operator_token1] = ACTIONS(9881), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9883), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9885), - [anon_sym_BSLASHnewacronym] = ACTIONS(9887), - [aux_sym_acronym_reference_token1] = ACTIONS(9889), - [aux_sym_theorem_definition_token1] = ACTIONS(9891), - [aux_sym_color_reference_token1] = ACTIONS(9893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9895), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9899), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9901), - }, - [455] = { - [sym__simple_content] = STATE(454), - [sym_brace_group] = STATE(454), - [sym_mixed_group] = STATE(454), - [sym_text] = STATE(454), - [sym__text_fragment] = STATE(1388), - [sym_displayed_equation] = STATE(454), - [sym_inline_formula] = STATE(454), - [sym_begin] = STATE(83), - [sym_environment] = STATE(454), - [sym_caption] = STATE(454), - [sym_citation] = STATE(454), - [sym_package_include] = STATE(454), - [sym_class_include] = STATE(454), - [sym_latex_include] = STATE(454), - [sym_latex_input] = STATE(454), - [sym_biblatex_include] = STATE(454), - [sym_bibtex_include] = STATE(454), - [sym_graphics_include] = STATE(454), - [sym_svg_include] = STATE(454), - [sym_inkscape_include] = STATE(454), - [sym_verbatim_include] = STATE(454), - [sym_import] = STATE(454), - [sym_label_definition] = STATE(454), - [sym_label_reference] = STATE(454), - [sym_equation_label_reference] = STATE(454), - [sym_label_reference_range] = STATE(454), - [sym_label_number] = STATE(454), - [sym_command_definition] = STATE(454), - [sym_math_operator] = STATE(454), - [sym_glossary_entry_definition] = STATE(454), - [sym_glossary_entry_reference] = STATE(454), - [sym_acronym_definition] = STATE(454), - [sym_acronym_reference] = STATE(454), - [sym_theorem_definition] = STATE(454), - [sym_color_reference] = STATE(454), - [sym_color_definition] = STATE(454), - [sym_color_set_definition] = STATE(454), - [sym_pgf_library_import] = STATE(454), - [sym_tikz_library_import] = STATE(454), - [sym_generic_command] = STATE(454), - [aux_sym_enum_item_repeat1] = STATE(454), - [aux_sym_text_repeat1] = STATE(1388), - [sym_generic_command_name] = ACTIONS(9823), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subparagraph_token1] = ACTIONS(5210), - [anon_sym_BSLASHitem] = ACTIONS(5210), - [anon_sym_LBRACK] = ACTIONS(9829), - [anon_sym_RBRACK] = ACTIONS(5208), - [anon_sym_LBRACE] = ACTIONS(9831), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(9829), - [anon_sym_COMMA] = ACTIONS(9833), - [anon_sym_EQ] = ACTIONS(9833), - [sym_word] = ACTIONS(9833), - [sym_param] = ACTIONS(10393), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9837), - [anon_sym_DOLLAR] = ACTIONS(9839), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9841), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9843), - [aux_sym_citation_token1] = ACTIONS(9845), - [aux_sym_package_include_token1] = ACTIONS(9847), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9849), - [aux_sym_latex_include_token1] = ACTIONS(9851), - [aux_sym_latex_input_token1] = ACTIONS(9853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9855), - [anon_sym_BSLASHbibliography] = ACTIONS(9857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9859), - [anon_sym_BSLASHincludesvg] = ACTIONS(9861), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9863), - [aux_sym_verbatim_include_token1] = ACTIONS(9865), - [aux_sym_import_token1] = ACTIONS(9867), - [anon_sym_BSLASHlabel] = ACTIONS(9869), - [aux_sym_label_reference_token1] = ACTIONS(9871), - [anon_sym_BSLASHeqref] = ACTIONS(9873), - [aux_sym_label_reference_range_token1] = ACTIONS(9875), - [anon_sym_BSLASHnewlabel] = ACTIONS(9877), - [aux_sym_command_definition_token1] = ACTIONS(9879), - [aux_sym_math_operator_token1] = ACTIONS(9881), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9883), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9885), - [anon_sym_BSLASHnewacronym] = ACTIONS(9887), - [aux_sym_acronym_reference_token1] = ACTIONS(9889), - [aux_sym_theorem_definition_token1] = ACTIONS(9891), - [aux_sym_color_reference_token1] = ACTIONS(9893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9895), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9899), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9901), - }, - [456] = { - [sym__simple_content] = STATE(460), - [sym_enum_item] = STATE(460), - [sym_brace_group] = STATE(460), - [sym_mixed_group] = STATE(460), - [sym_text] = STATE(460), - [sym__text_fragment] = STATE(1513), - [sym_displayed_equation] = STATE(460), - [sym_inline_formula] = STATE(460), - [sym_begin] = STATE(44), - [sym_environment] = STATE(460), - [sym_caption] = STATE(460), - [sym_citation] = STATE(460), - [sym_package_include] = STATE(460), - [sym_class_include] = STATE(460), - [sym_latex_include] = STATE(460), - [sym_latex_input] = STATE(460), - [sym_biblatex_include] = STATE(460), - [sym_bibtex_include] = STATE(460), - [sym_graphics_include] = STATE(460), - [sym_svg_include] = STATE(460), - [sym_inkscape_include] = STATE(460), - [sym_verbatim_include] = STATE(460), - [sym_import] = STATE(460), - [sym_label_definition] = STATE(460), - [sym_label_reference] = STATE(460), - [sym_equation_label_reference] = STATE(460), - [sym_label_reference_range] = STATE(460), - [sym_label_number] = STATE(460), - [sym_command_definition] = STATE(460), - [sym_math_operator] = STATE(460), - [sym_glossary_entry_definition] = STATE(460), - [sym_glossary_entry_reference] = STATE(460), - [sym_acronym_definition] = STATE(460), - [sym_acronym_reference] = STATE(460), - [sym_theorem_definition] = STATE(460), - [sym_color_reference] = STATE(460), - [sym_color_definition] = STATE(460), - [sym_color_set_definition] = STATE(460), - [sym_pgf_library_import] = STATE(460), - [sym_tikz_library_import] = STATE(460), - [sym_generic_command] = STATE(460), - [aux_sym_subparagraph_repeat1] = STATE(460), - [aux_sym_text_repeat1] = STATE(1513), - [sym_generic_command_name] = ACTIONS(10395), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [anon_sym_BSLASHitem] = ACTIONS(10397), - [anon_sym_LBRACK] = ACTIONS(10399), - [anon_sym_RBRACK] = ACTIONS(4806), - [anon_sym_LBRACE] = ACTIONS(10401), - [anon_sym_RBRACE] = ACTIONS(4806), - [anon_sym_LPAREN] = ACTIONS(10399), - [anon_sym_COMMA] = ACTIONS(10403), - [anon_sym_EQ] = ACTIONS(10403), - [sym_word] = ACTIONS(10403), - [sym_param] = ACTIONS(10405), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10407), - [anon_sym_DOLLAR] = ACTIONS(10409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10411), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(10413), - [aux_sym_citation_token1] = ACTIONS(10415), - [aux_sym_package_include_token1] = ACTIONS(10417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10419), - [aux_sym_latex_include_token1] = ACTIONS(10421), - [aux_sym_latex_input_token1] = ACTIONS(10423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10425), - [anon_sym_BSLASHbibliography] = ACTIONS(10427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10429), - [anon_sym_BSLASHincludesvg] = ACTIONS(10431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10433), - [aux_sym_verbatim_include_token1] = ACTIONS(10435), - [aux_sym_import_token1] = ACTIONS(10437), - [anon_sym_BSLASHlabel] = ACTIONS(10439), - [aux_sym_label_reference_token1] = ACTIONS(10441), - [anon_sym_BSLASHeqref] = ACTIONS(10443), - [aux_sym_label_reference_range_token1] = ACTIONS(10445), - [anon_sym_BSLASHnewlabel] = ACTIONS(10447), - [aux_sym_command_definition_token1] = ACTIONS(10449), - [aux_sym_math_operator_token1] = ACTIONS(10451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10453), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10455), - [anon_sym_BSLASHnewacronym] = ACTIONS(10457), - [aux_sym_acronym_reference_token1] = ACTIONS(10459), - [aux_sym_theorem_definition_token1] = ACTIONS(10461), - [aux_sym_color_reference_token1] = ACTIONS(10463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10471), - }, - [457] = { - [sym__simple_content] = STATE(459), - [sym_brace_group] = STATE(459), - [sym_mixed_group] = STATE(459), - [sym_text] = STATE(459), - [sym__text_fragment] = STATE(1388), - [sym_displayed_equation] = STATE(459), - [sym_inline_formula] = STATE(459), - [sym_begin] = STATE(83), - [sym_environment] = STATE(459), - [sym_caption] = STATE(459), - [sym_citation] = STATE(459), - [sym_package_include] = STATE(459), - [sym_class_include] = STATE(459), - [sym_latex_include] = STATE(459), - [sym_latex_input] = STATE(459), - [sym_biblatex_include] = STATE(459), - [sym_bibtex_include] = STATE(459), - [sym_graphics_include] = STATE(459), - [sym_svg_include] = STATE(459), - [sym_inkscape_include] = STATE(459), - [sym_verbatim_include] = STATE(459), - [sym_import] = STATE(459), - [sym_label_definition] = STATE(459), - [sym_label_reference] = STATE(459), - [sym_equation_label_reference] = STATE(459), - [sym_label_reference_range] = STATE(459), - [sym_label_number] = STATE(459), - [sym_command_definition] = STATE(459), - [sym_math_operator] = STATE(459), - [sym_glossary_entry_definition] = STATE(459), - [sym_glossary_entry_reference] = STATE(459), - [sym_acronym_definition] = STATE(459), - [sym_acronym_reference] = STATE(459), - [sym_theorem_definition] = STATE(459), - [sym_color_reference] = STATE(459), - [sym_color_definition] = STATE(459), - [sym_color_set_definition] = STATE(459), - [sym_pgf_library_import] = STATE(459), - [sym_tikz_library_import] = STATE(459), - [sym_generic_command] = STATE(459), - [aux_sym_enum_item_repeat1] = STATE(459), - [aux_sym_text_repeat1] = STATE(1388), - [sym_generic_command_name] = ACTIONS(9823), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subparagraph_token1] = ACTIONS(5602), - [anon_sym_BSLASHitem] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(10473), - [anon_sym_RBRACK] = ACTIONS(5600), - [anon_sym_LBRACE] = ACTIONS(9831), - [anon_sym_RBRACE] = ACTIONS(5600), - [anon_sym_LPAREN] = ACTIONS(9829), - [anon_sym_COMMA] = ACTIONS(9833), - [anon_sym_EQ] = ACTIONS(9833), - [sym_word] = ACTIONS(9833), - [sym_param] = ACTIONS(10475), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9837), - [anon_sym_DOLLAR] = ACTIONS(9839), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9841), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9843), - [aux_sym_citation_token1] = ACTIONS(9845), - [aux_sym_package_include_token1] = ACTIONS(9847), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9849), - [aux_sym_latex_include_token1] = ACTIONS(9851), - [aux_sym_latex_input_token1] = ACTIONS(9853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9855), - [anon_sym_BSLASHbibliography] = ACTIONS(9857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9859), - [anon_sym_BSLASHincludesvg] = ACTIONS(9861), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9863), - [aux_sym_verbatim_include_token1] = ACTIONS(9865), - [aux_sym_import_token1] = ACTIONS(9867), - [anon_sym_BSLASHlabel] = ACTIONS(9869), - [aux_sym_label_reference_token1] = ACTIONS(9871), - [anon_sym_BSLASHeqref] = ACTIONS(9873), - [aux_sym_label_reference_range_token1] = ACTIONS(9875), - [anon_sym_BSLASHnewlabel] = ACTIONS(9877), - [aux_sym_command_definition_token1] = ACTIONS(9879), - [aux_sym_math_operator_token1] = ACTIONS(9881), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9883), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9885), - [anon_sym_BSLASHnewacronym] = ACTIONS(9887), - [aux_sym_acronym_reference_token1] = ACTIONS(9889), - [aux_sym_theorem_definition_token1] = ACTIONS(9891), - [aux_sym_color_reference_token1] = ACTIONS(9893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9895), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9899), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9901), - }, - [458] = { - [sym__simple_content] = STATE(458), - [sym_brace_group] = STATE(458), - [sym_mixed_group] = STATE(458), - [sym_text] = STATE(458), - [sym__text_fragment] = STATE(1388), - [sym_displayed_equation] = STATE(458), - [sym_inline_formula] = STATE(458), - [sym_begin] = STATE(83), - [sym_environment] = STATE(458), - [sym_caption] = STATE(458), - [sym_citation] = STATE(458), - [sym_package_include] = STATE(458), - [sym_class_include] = STATE(458), - [sym_latex_include] = STATE(458), - [sym_latex_input] = STATE(458), - [sym_biblatex_include] = STATE(458), - [sym_bibtex_include] = STATE(458), - [sym_graphics_include] = STATE(458), - [sym_svg_include] = STATE(458), - [sym_inkscape_include] = STATE(458), - [sym_verbatim_include] = STATE(458), - [sym_import] = STATE(458), - [sym_label_definition] = STATE(458), - [sym_label_reference] = STATE(458), - [sym_equation_label_reference] = STATE(458), - [sym_label_reference_range] = STATE(458), - [sym_label_number] = STATE(458), - [sym_command_definition] = STATE(458), - [sym_math_operator] = STATE(458), - [sym_glossary_entry_definition] = STATE(458), - [sym_glossary_entry_reference] = STATE(458), - [sym_acronym_definition] = STATE(458), - [sym_acronym_reference] = STATE(458), - [sym_theorem_definition] = STATE(458), - [sym_color_reference] = STATE(458), - [sym_color_definition] = STATE(458), - [sym_color_set_definition] = STATE(458), - [sym_pgf_library_import] = STATE(458), - [sym_tikz_library_import] = STATE(458), - [sym_generic_command] = STATE(458), - [aux_sym_enum_item_repeat1] = STATE(458), - [aux_sym_text_repeat1] = STATE(1388), - [sym_generic_command_name] = ACTIONS(10477), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subparagraph_token1] = ACTIONS(5613), - [anon_sym_BSLASHitem] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(10480), - [anon_sym_RBRACK] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(10483), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_LPAREN] = ACTIONS(10480), - [anon_sym_COMMA] = ACTIONS(10486), - [anon_sym_EQ] = ACTIONS(10486), - [sym_word] = ACTIONS(10486), - [sym_param] = ACTIONS(10489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10492), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10492), - [anon_sym_DOLLAR] = ACTIONS(10495), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10498), - [anon_sym_BSLASHbegin] = ACTIONS(5636), - [anon_sym_BSLASHcaption] = ACTIONS(10501), - [aux_sym_citation_token1] = ACTIONS(10504), - [aux_sym_package_include_token1] = ACTIONS(10507), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10510), - [aux_sym_latex_include_token1] = ACTIONS(10513), - [aux_sym_latex_input_token1] = ACTIONS(10516), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10519), - [anon_sym_BSLASHbibliography] = ACTIONS(10522), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10525), - [anon_sym_BSLASHincludesvg] = ACTIONS(10528), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10531), - [aux_sym_verbatim_include_token1] = ACTIONS(10534), - [aux_sym_import_token1] = ACTIONS(10537), - [anon_sym_BSLASHlabel] = ACTIONS(10540), - [aux_sym_label_reference_token1] = ACTIONS(10543), - [anon_sym_BSLASHeqref] = ACTIONS(10546), - [aux_sym_label_reference_range_token1] = ACTIONS(10549), - [anon_sym_BSLASHnewlabel] = ACTIONS(10552), - [aux_sym_command_definition_token1] = ACTIONS(10555), - [aux_sym_math_operator_token1] = ACTIONS(10558), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10561), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10564), - [anon_sym_BSLASHnewacronym] = ACTIONS(10567), - [aux_sym_acronym_reference_token1] = ACTIONS(10570), - [aux_sym_theorem_definition_token1] = ACTIONS(10573), - [aux_sym_color_reference_token1] = ACTIONS(10576), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10579), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10582), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10585), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10588), - }, - [459] = { - [sym__simple_content] = STATE(458), - [sym_brace_group] = STATE(458), - [sym_mixed_group] = STATE(458), - [sym_text] = STATE(458), - [sym__text_fragment] = STATE(1388), - [sym_displayed_equation] = STATE(458), - [sym_inline_formula] = STATE(458), - [sym_begin] = STATE(83), - [sym_environment] = STATE(458), - [sym_caption] = STATE(458), - [sym_citation] = STATE(458), - [sym_package_include] = STATE(458), - [sym_class_include] = STATE(458), - [sym_latex_include] = STATE(458), - [sym_latex_input] = STATE(458), - [sym_biblatex_include] = STATE(458), - [sym_bibtex_include] = STATE(458), - [sym_graphics_include] = STATE(458), - [sym_svg_include] = STATE(458), - [sym_inkscape_include] = STATE(458), - [sym_verbatim_include] = STATE(458), - [sym_import] = STATE(458), - [sym_label_definition] = STATE(458), - [sym_label_reference] = STATE(458), - [sym_equation_label_reference] = STATE(458), - [sym_label_reference_range] = STATE(458), - [sym_label_number] = STATE(458), - [sym_command_definition] = STATE(458), - [sym_math_operator] = STATE(458), - [sym_glossary_entry_definition] = STATE(458), - [sym_glossary_entry_reference] = STATE(458), - [sym_acronym_definition] = STATE(458), - [sym_acronym_reference] = STATE(458), - [sym_theorem_definition] = STATE(458), - [sym_color_reference] = STATE(458), - [sym_color_definition] = STATE(458), - [sym_color_set_definition] = STATE(458), - [sym_pgf_library_import] = STATE(458), - [sym_tikz_library_import] = STATE(458), - [sym_generic_command] = STATE(458), - [aux_sym_enum_item_repeat1] = STATE(458), - [aux_sym_text_repeat1] = STATE(1388), - [sym_generic_command_name] = ACTIONS(9823), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [aux_sym_subparagraph_token1] = ACTIONS(5204), - [anon_sym_BSLASHitem] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(9829), - [anon_sym_RBRACK] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(9831), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_LPAREN] = ACTIONS(9829), - [anon_sym_COMMA] = ACTIONS(9833), - [anon_sym_EQ] = ACTIONS(9833), - [sym_word] = ACTIONS(9833), - [sym_param] = ACTIONS(10391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9837), - [anon_sym_BSLASH_LBRACK] = ACTIONS(9837), - [anon_sym_DOLLAR] = ACTIONS(9839), - [anon_sym_BSLASH_LPAREN] = ACTIONS(9841), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(9843), - [aux_sym_citation_token1] = ACTIONS(9845), - [aux_sym_package_include_token1] = ACTIONS(9847), - [anon_sym_BSLASHdocumentclass] = ACTIONS(9849), - [aux_sym_latex_include_token1] = ACTIONS(9851), - [aux_sym_latex_input_token1] = ACTIONS(9853), - [anon_sym_BSLASHaddbibresource] = ACTIONS(9855), - [anon_sym_BSLASHbibliography] = ACTIONS(9857), - [anon_sym_BSLASHincludegraphics] = ACTIONS(9859), - [anon_sym_BSLASHincludesvg] = ACTIONS(9861), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(9863), - [aux_sym_verbatim_include_token1] = ACTIONS(9865), - [aux_sym_import_token1] = ACTIONS(9867), - [anon_sym_BSLASHlabel] = ACTIONS(9869), - [aux_sym_label_reference_token1] = ACTIONS(9871), - [anon_sym_BSLASHeqref] = ACTIONS(9873), - [aux_sym_label_reference_range_token1] = ACTIONS(9875), - [anon_sym_BSLASHnewlabel] = ACTIONS(9877), - [aux_sym_command_definition_token1] = ACTIONS(9879), - [aux_sym_math_operator_token1] = ACTIONS(9881), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9883), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(9885), - [anon_sym_BSLASHnewacronym] = ACTIONS(9887), - [aux_sym_acronym_reference_token1] = ACTIONS(9889), - [aux_sym_theorem_definition_token1] = ACTIONS(9891), - [aux_sym_color_reference_token1] = ACTIONS(9893), - [anon_sym_BSLASHdefinecolor] = ACTIONS(9895), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(9897), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(9899), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9901), - }, - [460] = { - [sym__simple_content] = STATE(460), - [sym_enum_item] = STATE(460), - [sym_brace_group] = STATE(460), - [sym_mixed_group] = STATE(460), - [sym_text] = STATE(460), - [sym__text_fragment] = STATE(1513), - [sym_displayed_equation] = STATE(460), - [sym_inline_formula] = STATE(460), - [sym_begin] = STATE(44), - [sym_environment] = STATE(460), - [sym_caption] = STATE(460), - [sym_citation] = STATE(460), - [sym_package_include] = STATE(460), - [sym_class_include] = STATE(460), - [sym_latex_include] = STATE(460), - [sym_latex_input] = STATE(460), - [sym_biblatex_include] = STATE(460), - [sym_bibtex_include] = STATE(460), - [sym_graphics_include] = STATE(460), - [sym_svg_include] = STATE(460), - [sym_inkscape_include] = STATE(460), - [sym_verbatim_include] = STATE(460), - [sym_import] = STATE(460), - [sym_label_definition] = STATE(460), - [sym_label_reference] = STATE(460), - [sym_equation_label_reference] = STATE(460), - [sym_label_reference_range] = STATE(460), - [sym_label_number] = STATE(460), - [sym_command_definition] = STATE(460), - [sym_math_operator] = STATE(460), - [sym_glossary_entry_definition] = STATE(460), - [sym_glossary_entry_reference] = STATE(460), - [sym_acronym_definition] = STATE(460), - [sym_acronym_reference] = STATE(460), - [sym_theorem_definition] = STATE(460), - [sym_color_reference] = STATE(460), - [sym_color_definition] = STATE(460), - [sym_color_set_definition] = STATE(460), - [sym_pgf_library_import] = STATE(460), - [sym_tikz_library_import] = STATE(460), - [sym_generic_command] = STATE(460), - [aux_sym_subparagraph_repeat1] = STATE(460), - [aux_sym_text_repeat1] = STATE(1513), - [sym_generic_command_name] = ACTIONS(10591), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [anon_sym_BSLASHitem] = ACTIONS(10594), - [anon_sym_LBRACK] = ACTIONS(10597), - [anon_sym_RBRACK] = ACTIONS(5064), - [anon_sym_LBRACE] = ACTIONS(10600), - [anon_sym_RBRACE] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(10597), - [anon_sym_COMMA] = ACTIONS(10603), - [anon_sym_EQ] = ACTIONS(10603), - [sym_word] = ACTIONS(10603), - [sym_param] = ACTIONS(10606), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10609), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10609), - [anon_sym_DOLLAR] = ACTIONS(10612), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10615), - [anon_sym_BSLASHbegin] = ACTIONS(5095), - [anon_sym_BSLASHcaption] = ACTIONS(10618), - [aux_sym_citation_token1] = ACTIONS(10621), - [aux_sym_package_include_token1] = ACTIONS(10624), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10627), - [aux_sym_latex_include_token1] = ACTIONS(10630), - [aux_sym_latex_input_token1] = ACTIONS(10633), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10636), - [anon_sym_BSLASHbibliography] = ACTIONS(10639), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10642), - [anon_sym_BSLASHincludesvg] = ACTIONS(10645), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10648), - [aux_sym_verbatim_include_token1] = ACTIONS(10651), - [aux_sym_import_token1] = ACTIONS(10654), - [anon_sym_BSLASHlabel] = ACTIONS(10657), - [aux_sym_label_reference_token1] = ACTIONS(10660), - [anon_sym_BSLASHeqref] = ACTIONS(10663), - [aux_sym_label_reference_range_token1] = ACTIONS(10666), - [anon_sym_BSLASHnewlabel] = ACTIONS(10669), - [aux_sym_command_definition_token1] = ACTIONS(10672), - [aux_sym_math_operator_token1] = ACTIONS(10675), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10678), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10681), - [anon_sym_BSLASHnewacronym] = ACTIONS(10684), - [aux_sym_acronym_reference_token1] = ACTIONS(10687), - [aux_sym_theorem_definition_token1] = ACTIONS(10690), - [aux_sym_color_reference_token1] = ACTIONS(10693), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10696), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10699), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10702), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10705), - }, - [461] = { - [sym__simple_content] = STATE(456), - [sym_enum_item] = STATE(456), - [sym_brace_group] = STATE(456), - [sym_mixed_group] = STATE(456), - [sym_text] = STATE(456), - [sym__text_fragment] = STATE(1513), - [sym_displayed_equation] = STATE(456), - [sym_inline_formula] = STATE(456), - [sym_begin] = STATE(44), - [sym_environment] = STATE(456), - [sym_caption] = STATE(456), - [sym_citation] = STATE(456), - [sym_package_include] = STATE(456), - [sym_class_include] = STATE(456), - [sym_latex_include] = STATE(456), - [sym_latex_input] = STATE(456), - [sym_biblatex_include] = STATE(456), - [sym_bibtex_include] = STATE(456), - [sym_graphics_include] = STATE(456), - [sym_svg_include] = STATE(456), - [sym_inkscape_include] = STATE(456), - [sym_verbatim_include] = STATE(456), - [sym_import] = STATE(456), - [sym_label_definition] = STATE(456), - [sym_label_reference] = STATE(456), - [sym_equation_label_reference] = STATE(456), - [sym_label_reference_range] = STATE(456), - [sym_label_number] = STATE(456), - [sym_command_definition] = STATE(456), - [sym_math_operator] = STATE(456), - [sym_glossary_entry_definition] = STATE(456), - [sym_glossary_entry_reference] = STATE(456), - [sym_acronym_definition] = STATE(456), - [sym_acronym_reference] = STATE(456), - [sym_theorem_definition] = STATE(456), - [sym_color_reference] = STATE(456), - [sym_color_definition] = STATE(456), - [sym_color_set_definition] = STATE(456), - [sym_pgf_library_import] = STATE(456), - [sym_tikz_library_import] = STATE(456), - [sym_generic_command] = STATE(456), - [aux_sym_subparagraph_repeat1] = STATE(456), - [aux_sym_text_repeat1] = STATE(1513), - [sym_generic_command_name] = ACTIONS(10395), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [anon_sym_BSLASHitem] = ACTIONS(10397), - [anon_sym_LBRACK] = ACTIONS(10399), - [anon_sym_RBRACK] = ACTIONS(4541), - [anon_sym_LBRACE] = ACTIONS(10401), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_LPAREN] = ACTIONS(10399), - [anon_sym_COMMA] = ACTIONS(10403), - [anon_sym_EQ] = ACTIONS(10403), - [sym_word] = ACTIONS(10403), - [sym_param] = ACTIONS(10708), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10407), - [anon_sym_DOLLAR] = ACTIONS(10409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10411), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(10413), - [aux_sym_citation_token1] = ACTIONS(10415), - [aux_sym_package_include_token1] = ACTIONS(10417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10419), - [aux_sym_latex_include_token1] = ACTIONS(10421), - [aux_sym_latex_input_token1] = ACTIONS(10423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10425), - [anon_sym_BSLASHbibliography] = ACTIONS(10427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10429), - [anon_sym_BSLASHincludesvg] = ACTIONS(10431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10433), - [aux_sym_verbatim_include_token1] = ACTIONS(10435), - [aux_sym_import_token1] = ACTIONS(10437), - [anon_sym_BSLASHlabel] = ACTIONS(10439), - [aux_sym_label_reference_token1] = ACTIONS(10441), - [anon_sym_BSLASHeqref] = ACTIONS(10443), - [aux_sym_label_reference_range_token1] = ACTIONS(10445), - [anon_sym_BSLASHnewlabel] = ACTIONS(10447), - [aux_sym_command_definition_token1] = ACTIONS(10449), - [aux_sym_math_operator_token1] = ACTIONS(10451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10453), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10455), - [anon_sym_BSLASHnewacronym] = ACTIONS(10457), - [aux_sym_acronym_reference_token1] = ACTIONS(10459), - [aux_sym_theorem_definition_token1] = ACTIONS(10461), - [aux_sym_color_reference_token1] = ACTIONS(10463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10471), - }, - [462] = { - [sym__simple_content] = STATE(466), - [sym_brace_group] = STATE(466), - [sym_mixed_group] = STATE(466), - [sym_text] = STATE(466), - [sym__text_fragment] = STATE(1513), - [sym_displayed_equation] = STATE(466), - [sym_inline_formula] = STATE(466), - [sym_begin] = STATE(44), - [sym_environment] = STATE(466), - [sym_caption] = STATE(466), - [sym_citation] = STATE(466), - [sym_package_include] = STATE(466), - [sym_class_include] = STATE(466), - [sym_latex_include] = STATE(466), - [sym_latex_input] = STATE(466), - [sym_biblatex_include] = STATE(466), - [sym_bibtex_include] = STATE(466), - [sym_graphics_include] = STATE(466), - [sym_svg_include] = STATE(466), - [sym_inkscape_include] = STATE(466), - [sym_verbatim_include] = STATE(466), - [sym_import] = STATE(466), - [sym_label_definition] = STATE(466), - [sym_label_reference] = STATE(466), - [sym_equation_label_reference] = STATE(466), - [sym_label_reference_range] = STATE(466), - [sym_label_number] = STATE(466), - [sym_command_definition] = STATE(466), - [sym_math_operator] = STATE(466), - [sym_glossary_entry_definition] = STATE(466), - [sym_glossary_entry_reference] = STATE(466), - [sym_acronym_definition] = STATE(466), - [sym_acronym_reference] = STATE(466), - [sym_theorem_definition] = STATE(466), - [sym_color_reference] = STATE(466), - [sym_color_definition] = STATE(466), - [sym_color_set_definition] = STATE(466), - [sym_pgf_library_import] = STATE(466), - [sym_tikz_library_import] = STATE(466), - [sym_generic_command] = STATE(466), - [aux_sym_enum_item_repeat1] = STATE(466), - [aux_sym_text_repeat1] = STATE(1513), - [sym_generic_command_name] = ACTIONS(10395), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [anon_sym_BSLASHitem] = ACTIONS(5210), - [anon_sym_LBRACK] = ACTIONS(10399), - [anon_sym_RBRACK] = ACTIONS(5208), - [anon_sym_LBRACE] = ACTIONS(10401), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(10399), - [anon_sym_COMMA] = ACTIONS(10403), - [anon_sym_EQ] = ACTIONS(10403), - [sym_word] = ACTIONS(10403), - [sym_param] = ACTIONS(10710), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10407), - [anon_sym_DOLLAR] = ACTIONS(10409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10411), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(10413), - [aux_sym_citation_token1] = ACTIONS(10415), - [aux_sym_package_include_token1] = ACTIONS(10417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10419), - [aux_sym_latex_include_token1] = ACTIONS(10421), - [aux_sym_latex_input_token1] = ACTIONS(10423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10425), - [anon_sym_BSLASHbibliography] = ACTIONS(10427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10429), - [anon_sym_BSLASHincludesvg] = ACTIONS(10431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10433), - [aux_sym_verbatim_include_token1] = ACTIONS(10435), - [aux_sym_import_token1] = ACTIONS(10437), - [anon_sym_BSLASHlabel] = ACTIONS(10439), - [aux_sym_label_reference_token1] = ACTIONS(10441), - [anon_sym_BSLASHeqref] = ACTIONS(10443), - [aux_sym_label_reference_range_token1] = ACTIONS(10445), - [anon_sym_BSLASHnewlabel] = ACTIONS(10447), - [aux_sym_command_definition_token1] = ACTIONS(10449), - [aux_sym_math_operator_token1] = ACTIONS(10451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10453), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10455), - [anon_sym_BSLASHnewacronym] = ACTIONS(10457), - [aux_sym_acronym_reference_token1] = ACTIONS(10459), - [aux_sym_theorem_definition_token1] = ACTIONS(10461), - [aux_sym_color_reference_token1] = ACTIONS(10463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10471), - }, - [463] = { - [sym__simple_content] = STATE(465), - [sym_brace_group] = STATE(465), - [sym_mixed_group] = STATE(465), - [sym_text] = STATE(465), - [sym__text_fragment] = STATE(1513), - [sym_displayed_equation] = STATE(465), - [sym_inline_formula] = STATE(465), - [sym_begin] = STATE(44), - [sym_environment] = STATE(465), - [sym_caption] = STATE(465), - [sym_citation] = STATE(465), - [sym_package_include] = STATE(465), - [sym_class_include] = STATE(465), - [sym_latex_include] = STATE(465), - [sym_latex_input] = STATE(465), - [sym_biblatex_include] = STATE(465), - [sym_bibtex_include] = STATE(465), - [sym_graphics_include] = STATE(465), - [sym_svg_include] = STATE(465), - [sym_inkscape_include] = STATE(465), - [sym_verbatim_include] = STATE(465), - [sym_import] = STATE(465), - [sym_label_definition] = STATE(465), - [sym_label_reference] = STATE(465), - [sym_equation_label_reference] = STATE(465), - [sym_label_reference_range] = STATE(465), - [sym_label_number] = STATE(465), - [sym_command_definition] = STATE(465), - [sym_math_operator] = STATE(465), - [sym_glossary_entry_definition] = STATE(465), - [sym_glossary_entry_reference] = STATE(465), - [sym_acronym_definition] = STATE(465), - [sym_acronym_reference] = STATE(465), - [sym_theorem_definition] = STATE(465), - [sym_color_reference] = STATE(465), - [sym_color_definition] = STATE(465), - [sym_color_set_definition] = STATE(465), - [sym_pgf_library_import] = STATE(465), - [sym_tikz_library_import] = STATE(465), - [sym_generic_command] = STATE(465), - [aux_sym_enum_item_repeat1] = STATE(465), - [aux_sym_text_repeat1] = STATE(1513), - [sym_generic_command_name] = ACTIONS(10395), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [anon_sym_BSLASHitem] = ACTIONS(5602), - [anon_sym_LBRACK] = ACTIONS(10712), - [anon_sym_RBRACK] = ACTIONS(5600), - [anon_sym_LBRACE] = ACTIONS(10401), - [anon_sym_RBRACE] = ACTIONS(5600), - [anon_sym_LPAREN] = ACTIONS(10399), - [anon_sym_COMMA] = ACTIONS(10403), - [anon_sym_EQ] = ACTIONS(10403), - [sym_word] = ACTIONS(10403), - [sym_param] = ACTIONS(10714), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10407), - [anon_sym_DOLLAR] = ACTIONS(10409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10411), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(10413), - [aux_sym_citation_token1] = ACTIONS(10415), - [aux_sym_package_include_token1] = ACTIONS(10417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10419), - [aux_sym_latex_include_token1] = ACTIONS(10421), - [aux_sym_latex_input_token1] = ACTIONS(10423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10425), - [anon_sym_BSLASHbibliography] = ACTIONS(10427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10429), - [anon_sym_BSLASHincludesvg] = ACTIONS(10431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10433), - [aux_sym_verbatim_include_token1] = ACTIONS(10435), - [aux_sym_import_token1] = ACTIONS(10437), - [anon_sym_BSLASHlabel] = ACTIONS(10439), - [aux_sym_label_reference_token1] = ACTIONS(10441), - [anon_sym_BSLASHeqref] = ACTIONS(10443), - [aux_sym_label_reference_range_token1] = ACTIONS(10445), - [anon_sym_BSLASHnewlabel] = ACTIONS(10447), - [aux_sym_command_definition_token1] = ACTIONS(10449), - [aux_sym_math_operator_token1] = ACTIONS(10451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10453), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10455), - [anon_sym_BSLASHnewacronym] = ACTIONS(10457), - [aux_sym_acronym_reference_token1] = ACTIONS(10459), - [aux_sym_theorem_definition_token1] = ACTIONS(10461), - [aux_sym_color_reference_token1] = ACTIONS(10463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10471), - }, - [464] = { - [sym__simple_content] = STATE(464), - [sym_brace_group] = STATE(464), - [sym_mixed_group] = STATE(464), - [sym_text] = STATE(464), - [sym__text_fragment] = STATE(1513), - [sym_displayed_equation] = STATE(464), - [sym_inline_formula] = STATE(464), - [sym_begin] = STATE(44), - [sym_environment] = STATE(464), - [sym_caption] = STATE(464), - [sym_citation] = STATE(464), - [sym_package_include] = STATE(464), - [sym_class_include] = STATE(464), - [sym_latex_include] = STATE(464), - [sym_latex_input] = STATE(464), - [sym_biblatex_include] = STATE(464), - [sym_bibtex_include] = STATE(464), - [sym_graphics_include] = STATE(464), - [sym_svg_include] = STATE(464), - [sym_inkscape_include] = STATE(464), - [sym_verbatim_include] = STATE(464), - [sym_import] = STATE(464), - [sym_label_definition] = STATE(464), - [sym_label_reference] = STATE(464), - [sym_equation_label_reference] = STATE(464), - [sym_label_reference_range] = STATE(464), - [sym_label_number] = STATE(464), - [sym_command_definition] = STATE(464), - [sym_math_operator] = STATE(464), - [sym_glossary_entry_definition] = STATE(464), - [sym_glossary_entry_reference] = STATE(464), - [sym_acronym_definition] = STATE(464), - [sym_acronym_reference] = STATE(464), - [sym_theorem_definition] = STATE(464), - [sym_color_reference] = STATE(464), - [sym_color_definition] = STATE(464), - [sym_color_set_definition] = STATE(464), - [sym_pgf_library_import] = STATE(464), - [sym_tikz_library_import] = STATE(464), - [sym_generic_command] = STATE(464), - [aux_sym_enum_item_repeat1] = STATE(464), - [aux_sym_text_repeat1] = STATE(1513), - [sym_generic_command_name] = ACTIONS(10716), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [anon_sym_BSLASHitem] = ACTIONS(5613), - [anon_sym_LBRACK] = ACTIONS(10719), - [anon_sym_RBRACK] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(10722), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_LPAREN] = ACTIONS(10719), - [anon_sym_COMMA] = ACTIONS(10725), - [anon_sym_EQ] = ACTIONS(10725), - [sym_word] = ACTIONS(10725), - [sym_param] = ACTIONS(10728), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10731), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10731), - [anon_sym_DOLLAR] = ACTIONS(10734), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10737), - [anon_sym_BSLASHbegin] = ACTIONS(5636), - [anon_sym_BSLASHcaption] = ACTIONS(10740), - [aux_sym_citation_token1] = ACTIONS(10743), - [aux_sym_package_include_token1] = ACTIONS(10746), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10749), - [aux_sym_latex_include_token1] = ACTIONS(10752), - [aux_sym_latex_input_token1] = ACTIONS(10755), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10758), - [anon_sym_BSLASHbibliography] = ACTIONS(10761), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10764), - [anon_sym_BSLASHincludesvg] = ACTIONS(10767), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10770), - [aux_sym_verbatim_include_token1] = ACTIONS(10773), - [aux_sym_import_token1] = ACTIONS(10776), - [anon_sym_BSLASHlabel] = ACTIONS(10779), - [aux_sym_label_reference_token1] = ACTIONS(10782), - [anon_sym_BSLASHeqref] = ACTIONS(10785), - [aux_sym_label_reference_range_token1] = ACTIONS(10788), - [anon_sym_BSLASHnewlabel] = ACTIONS(10791), - [aux_sym_command_definition_token1] = ACTIONS(10794), - [aux_sym_math_operator_token1] = ACTIONS(10797), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10800), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10803), - [anon_sym_BSLASHnewacronym] = ACTIONS(10806), - [aux_sym_acronym_reference_token1] = ACTIONS(10809), - [aux_sym_theorem_definition_token1] = ACTIONS(10812), - [aux_sym_color_reference_token1] = ACTIONS(10815), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10818), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10821), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10824), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10827), - }, - [465] = { - [sym__simple_content] = STATE(464), - [sym_brace_group] = STATE(464), - [sym_mixed_group] = STATE(464), - [sym_text] = STATE(464), - [sym__text_fragment] = STATE(1513), - [sym_displayed_equation] = STATE(464), - [sym_inline_formula] = STATE(464), - [sym_begin] = STATE(44), - [sym_environment] = STATE(464), - [sym_caption] = STATE(464), - [sym_citation] = STATE(464), - [sym_package_include] = STATE(464), - [sym_class_include] = STATE(464), - [sym_latex_include] = STATE(464), - [sym_latex_input] = STATE(464), - [sym_biblatex_include] = STATE(464), - [sym_bibtex_include] = STATE(464), - [sym_graphics_include] = STATE(464), - [sym_svg_include] = STATE(464), - [sym_inkscape_include] = STATE(464), - [sym_verbatim_include] = STATE(464), - [sym_import] = STATE(464), - [sym_label_definition] = STATE(464), - [sym_label_reference] = STATE(464), - [sym_equation_label_reference] = STATE(464), - [sym_label_reference_range] = STATE(464), - [sym_label_number] = STATE(464), - [sym_command_definition] = STATE(464), - [sym_math_operator] = STATE(464), - [sym_glossary_entry_definition] = STATE(464), - [sym_glossary_entry_reference] = STATE(464), - [sym_acronym_definition] = STATE(464), - [sym_acronym_reference] = STATE(464), - [sym_theorem_definition] = STATE(464), - [sym_color_reference] = STATE(464), - [sym_color_definition] = STATE(464), - [sym_color_set_definition] = STATE(464), - [sym_pgf_library_import] = STATE(464), - [sym_tikz_library_import] = STATE(464), - [sym_generic_command] = STATE(464), - [aux_sym_enum_item_repeat1] = STATE(464), - [aux_sym_text_repeat1] = STATE(1513), - [sym_generic_command_name] = ACTIONS(10395), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [anon_sym_BSLASHitem] = ACTIONS(5204), - [anon_sym_LBRACK] = ACTIONS(10399), - [anon_sym_RBRACK] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(10401), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_LPAREN] = ACTIONS(10399), - [anon_sym_COMMA] = ACTIONS(10403), - [anon_sym_EQ] = ACTIONS(10403), - [sym_word] = ACTIONS(10403), - [sym_param] = ACTIONS(10830), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10407), - [anon_sym_DOLLAR] = ACTIONS(10409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10411), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(10413), - [aux_sym_citation_token1] = ACTIONS(10415), - [aux_sym_package_include_token1] = ACTIONS(10417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10419), - [aux_sym_latex_include_token1] = ACTIONS(10421), - [aux_sym_latex_input_token1] = ACTIONS(10423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10425), - [anon_sym_BSLASHbibliography] = ACTIONS(10427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10429), - [anon_sym_BSLASHincludesvg] = ACTIONS(10431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10433), - [aux_sym_verbatim_include_token1] = ACTIONS(10435), - [aux_sym_import_token1] = ACTIONS(10437), - [anon_sym_BSLASHlabel] = ACTIONS(10439), - [aux_sym_label_reference_token1] = ACTIONS(10441), - [anon_sym_BSLASHeqref] = ACTIONS(10443), - [aux_sym_label_reference_range_token1] = ACTIONS(10445), - [anon_sym_BSLASHnewlabel] = ACTIONS(10447), - [aux_sym_command_definition_token1] = ACTIONS(10449), - [aux_sym_math_operator_token1] = ACTIONS(10451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10453), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10455), - [anon_sym_BSLASHnewacronym] = ACTIONS(10457), - [aux_sym_acronym_reference_token1] = ACTIONS(10459), - [aux_sym_theorem_definition_token1] = ACTIONS(10461), - [aux_sym_color_reference_token1] = ACTIONS(10463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10471), - }, - [466] = { - [sym__simple_content] = STATE(464), - [sym_brace_group] = STATE(464), - [sym_mixed_group] = STATE(464), - [sym_text] = STATE(464), - [sym__text_fragment] = STATE(1513), - [sym_displayed_equation] = STATE(464), - [sym_inline_formula] = STATE(464), - [sym_begin] = STATE(44), - [sym_environment] = STATE(464), - [sym_caption] = STATE(464), - [sym_citation] = STATE(464), - [sym_package_include] = STATE(464), - [sym_class_include] = STATE(464), - [sym_latex_include] = STATE(464), - [sym_latex_input] = STATE(464), - [sym_biblatex_include] = STATE(464), - [sym_bibtex_include] = STATE(464), - [sym_graphics_include] = STATE(464), - [sym_svg_include] = STATE(464), - [sym_inkscape_include] = STATE(464), - [sym_verbatim_include] = STATE(464), - [sym_import] = STATE(464), - [sym_label_definition] = STATE(464), - [sym_label_reference] = STATE(464), - [sym_equation_label_reference] = STATE(464), - [sym_label_reference_range] = STATE(464), - [sym_label_number] = STATE(464), - [sym_command_definition] = STATE(464), - [sym_math_operator] = STATE(464), - [sym_glossary_entry_definition] = STATE(464), - [sym_glossary_entry_reference] = STATE(464), - [sym_acronym_definition] = STATE(464), - [sym_acronym_reference] = STATE(464), - [sym_theorem_definition] = STATE(464), - [sym_color_reference] = STATE(464), - [sym_color_definition] = STATE(464), - [sym_color_set_definition] = STATE(464), - [sym_pgf_library_import] = STATE(464), - [sym_tikz_library_import] = STATE(464), - [sym_generic_command] = STATE(464), - [aux_sym_enum_item_repeat1] = STATE(464), - [aux_sym_text_repeat1] = STATE(1513), - [sym_generic_command_name] = ACTIONS(10395), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [anon_sym_BSLASHitem] = ACTIONS(5733), - [anon_sym_LBRACK] = ACTIONS(10399), - [anon_sym_RBRACK] = ACTIONS(5731), - [anon_sym_LBRACE] = ACTIONS(10401), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_LPAREN] = ACTIONS(10399), - [anon_sym_COMMA] = ACTIONS(10403), - [anon_sym_EQ] = ACTIONS(10403), - [sym_word] = ACTIONS(10403), - [sym_param] = ACTIONS(10830), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10407), - [anon_sym_DOLLAR] = ACTIONS(10409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10411), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(10413), - [aux_sym_citation_token1] = ACTIONS(10415), - [aux_sym_package_include_token1] = ACTIONS(10417), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10419), - [aux_sym_latex_include_token1] = ACTIONS(10421), - [aux_sym_latex_input_token1] = ACTIONS(10423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10425), - [anon_sym_BSLASHbibliography] = ACTIONS(10427), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10429), - [anon_sym_BSLASHincludesvg] = ACTIONS(10431), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10433), - [aux_sym_verbatim_include_token1] = ACTIONS(10435), - [aux_sym_import_token1] = ACTIONS(10437), - [anon_sym_BSLASHlabel] = ACTIONS(10439), - [aux_sym_label_reference_token1] = ACTIONS(10441), - [anon_sym_BSLASHeqref] = ACTIONS(10443), - [aux_sym_label_reference_range_token1] = ACTIONS(10445), - [anon_sym_BSLASHnewlabel] = ACTIONS(10447), - [aux_sym_command_definition_token1] = ACTIONS(10449), - [aux_sym_math_operator_token1] = ACTIONS(10451), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10453), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10455), - [anon_sym_BSLASHnewacronym] = ACTIONS(10457), - [aux_sym_acronym_reference_token1] = ACTIONS(10459), - [aux_sym_theorem_definition_token1] = ACTIONS(10461), - [aux_sym_color_reference_token1] = ACTIONS(10463), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10467), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10471), - }, - [467] = { - [sym__simple_content] = STATE(469), - [sym_brace_group] = STATE(469), - [sym_mixed_group] = STATE(469), - [sym_text] = STATE(469), - [sym__text_fragment] = STATE(1752), - [sym_displayed_equation] = STATE(469), - [sym_inline_formula] = STATE(469), - [sym_begin] = STATE(78), - [sym_environment] = STATE(469), - [sym_caption] = STATE(469), - [sym_citation] = STATE(469), - [sym_package_include] = STATE(469), - [sym_class_include] = STATE(469), - [sym_latex_include] = STATE(469), - [sym_latex_input] = STATE(469), - [sym_biblatex_include] = STATE(469), - [sym_bibtex_include] = STATE(469), - [sym_graphics_include] = STATE(469), - [sym_svg_include] = STATE(469), - [sym_inkscape_include] = STATE(469), - [sym_verbatim_include] = STATE(469), - [sym_import] = STATE(469), - [sym_label_definition] = STATE(469), - [sym_label_reference] = STATE(469), - [sym_equation_label_reference] = STATE(469), - [sym_label_reference_range] = STATE(469), - [sym_label_number] = STATE(469), - [sym_command_definition] = STATE(469), - [sym_math_operator] = STATE(469), - [sym_glossary_entry_definition] = STATE(469), - [sym_glossary_entry_reference] = STATE(469), - [sym_acronym_definition] = STATE(469), - [sym_acronym_reference] = STATE(469), - [sym_theorem_definition] = STATE(469), - [sym_color_reference] = STATE(469), - [sym_color_definition] = STATE(469), - [sym_color_set_definition] = STATE(469), - [sym_pgf_library_import] = STATE(469), - [sym_tikz_library_import] = STATE(469), - [sym_generic_command] = STATE(469), - [aux_sym_enum_item_repeat1] = STATE(469), - [aux_sym_text_repeat1] = STATE(1752), - [sym_generic_command_name] = ACTIONS(10832), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(10834), - [anon_sym_RBRACK] = ACTIONS(5202), - [anon_sym_LBRACE] = ACTIONS(10836), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_LPAREN] = ACTIONS(10834), - [anon_sym_COMMA] = ACTIONS(10838), - [anon_sym_EQ] = ACTIONS(10838), - [sym_word] = ACTIONS(10838), - [sym_param] = ACTIONS(10840), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10842), - [anon_sym_DOLLAR] = ACTIONS(10844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10846), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(10848), - [aux_sym_citation_token1] = ACTIONS(10850), - [aux_sym_package_include_token1] = ACTIONS(10852), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10854), - [aux_sym_latex_include_token1] = ACTIONS(10856), - [aux_sym_latex_input_token1] = ACTIONS(10858), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10860), - [anon_sym_BSLASHbibliography] = ACTIONS(10862), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10864), - [anon_sym_BSLASHincludesvg] = ACTIONS(10866), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10868), - [aux_sym_verbatim_include_token1] = ACTIONS(10870), - [aux_sym_import_token1] = ACTIONS(10872), - [anon_sym_BSLASHlabel] = ACTIONS(10874), - [aux_sym_label_reference_token1] = ACTIONS(10876), - [anon_sym_BSLASHeqref] = ACTIONS(10878), - [aux_sym_label_reference_range_token1] = ACTIONS(10880), - [anon_sym_BSLASHnewlabel] = ACTIONS(10882), - [aux_sym_command_definition_token1] = ACTIONS(10884), - [aux_sym_math_operator_token1] = ACTIONS(10886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10888), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10890), - [anon_sym_BSLASHnewacronym] = ACTIONS(10892), - [aux_sym_acronym_reference_token1] = ACTIONS(10894), - [aux_sym_theorem_definition_token1] = ACTIONS(10896), - [aux_sym_color_reference_token1] = ACTIONS(10898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10900), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10902), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10904), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10906), - }, - [468] = { - [sym__simple_content] = STATE(471), - [sym_brace_group] = STATE(471), - [sym_mixed_group] = STATE(471), - [sym_text] = STATE(471), - [sym__text_fragment] = STATE(1752), - [sym_displayed_equation] = STATE(471), - [sym_inline_formula] = STATE(471), - [sym_begin] = STATE(78), - [sym_environment] = STATE(471), - [sym_caption] = STATE(471), - [sym_citation] = STATE(471), - [sym_package_include] = STATE(471), - [sym_class_include] = STATE(471), - [sym_latex_include] = STATE(471), - [sym_latex_input] = STATE(471), - [sym_biblatex_include] = STATE(471), - [sym_bibtex_include] = STATE(471), - [sym_graphics_include] = STATE(471), - [sym_svg_include] = STATE(471), - [sym_inkscape_include] = STATE(471), - [sym_verbatim_include] = STATE(471), - [sym_import] = STATE(471), - [sym_label_definition] = STATE(471), - [sym_label_reference] = STATE(471), - [sym_equation_label_reference] = STATE(471), - [sym_label_reference_range] = STATE(471), - [sym_label_number] = STATE(471), - [sym_command_definition] = STATE(471), - [sym_math_operator] = STATE(471), - [sym_glossary_entry_definition] = STATE(471), - [sym_glossary_entry_reference] = STATE(471), - [sym_acronym_definition] = STATE(471), - [sym_acronym_reference] = STATE(471), - [sym_theorem_definition] = STATE(471), - [sym_color_reference] = STATE(471), - [sym_color_definition] = STATE(471), - [sym_color_set_definition] = STATE(471), - [sym_pgf_library_import] = STATE(471), - [sym_tikz_library_import] = STATE(471), - [sym_generic_command] = STATE(471), - [aux_sym_enum_item_repeat1] = STATE(471), - [aux_sym_text_repeat1] = STATE(1752), - [sym_generic_command_name] = ACTIONS(10832), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(10834), - [anon_sym_RBRACK] = ACTIONS(5208), - [anon_sym_LBRACE] = ACTIONS(10836), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_LPAREN] = ACTIONS(10834), - [anon_sym_COMMA] = ACTIONS(10838), - [anon_sym_EQ] = ACTIONS(10838), - [sym_word] = ACTIONS(10838), - [sym_param] = ACTIONS(10908), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10842), - [anon_sym_DOLLAR] = ACTIONS(10844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10846), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(10848), - [aux_sym_citation_token1] = ACTIONS(10850), - [aux_sym_package_include_token1] = ACTIONS(10852), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10854), - [aux_sym_latex_include_token1] = ACTIONS(10856), - [aux_sym_latex_input_token1] = ACTIONS(10858), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10860), - [anon_sym_BSLASHbibliography] = ACTIONS(10862), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10864), - [anon_sym_BSLASHincludesvg] = ACTIONS(10866), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10868), - [aux_sym_verbatim_include_token1] = ACTIONS(10870), - [aux_sym_import_token1] = ACTIONS(10872), - [anon_sym_BSLASHlabel] = ACTIONS(10874), - [aux_sym_label_reference_token1] = ACTIONS(10876), - [anon_sym_BSLASHeqref] = ACTIONS(10878), - [aux_sym_label_reference_range_token1] = ACTIONS(10880), - [anon_sym_BSLASHnewlabel] = ACTIONS(10882), - [aux_sym_command_definition_token1] = ACTIONS(10884), - [aux_sym_math_operator_token1] = ACTIONS(10886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10888), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10890), - [anon_sym_BSLASHnewacronym] = ACTIONS(10892), - [aux_sym_acronym_reference_token1] = ACTIONS(10894), - [aux_sym_theorem_definition_token1] = ACTIONS(10896), - [aux_sym_color_reference_token1] = ACTIONS(10898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10900), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10902), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10904), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10906), - }, - [469] = { - [sym__simple_content] = STATE(469), - [sym_brace_group] = STATE(469), - [sym_mixed_group] = STATE(469), - [sym_text] = STATE(469), - [sym__text_fragment] = STATE(1752), - [sym_displayed_equation] = STATE(469), - [sym_inline_formula] = STATE(469), - [sym_begin] = STATE(78), - [sym_environment] = STATE(469), - [sym_caption] = STATE(469), - [sym_citation] = STATE(469), - [sym_package_include] = STATE(469), - [sym_class_include] = STATE(469), - [sym_latex_include] = STATE(469), - [sym_latex_input] = STATE(469), - [sym_biblatex_include] = STATE(469), - [sym_bibtex_include] = STATE(469), - [sym_graphics_include] = STATE(469), - [sym_svg_include] = STATE(469), - [sym_inkscape_include] = STATE(469), - [sym_verbatim_include] = STATE(469), - [sym_import] = STATE(469), - [sym_label_definition] = STATE(469), - [sym_label_reference] = STATE(469), - [sym_equation_label_reference] = STATE(469), - [sym_label_reference_range] = STATE(469), - [sym_label_number] = STATE(469), - [sym_command_definition] = STATE(469), - [sym_math_operator] = STATE(469), - [sym_glossary_entry_definition] = STATE(469), - [sym_glossary_entry_reference] = STATE(469), - [sym_acronym_definition] = STATE(469), - [sym_acronym_reference] = STATE(469), - [sym_theorem_definition] = STATE(469), - [sym_color_reference] = STATE(469), - [sym_color_definition] = STATE(469), - [sym_color_set_definition] = STATE(469), - [sym_pgf_library_import] = STATE(469), - [sym_tikz_library_import] = STATE(469), - [sym_generic_command] = STATE(469), - [aux_sym_enum_item_repeat1] = STATE(469), - [aux_sym_text_repeat1] = STATE(1752), - [sym_generic_command_name] = ACTIONS(10910), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(10913), - [anon_sym_RBRACK] = ACTIONS(5608), - [anon_sym_LBRACE] = ACTIONS(10916), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_LPAREN] = ACTIONS(10913), - [anon_sym_COMMA] = ACTIONS(10919), - [anon_sym_EQ] = ACTIONS(10919), - [sym_word] = ACTIONS(10919), - [sym_param] = ACTIONS(10922), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10925), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10925), - [anon_sym_DOLLAR] = ACTIONS(10928), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10931), - [anon_sym_BSLASHbegin] = ACTIONS(5636), - [anon_sym_BSLASHcaption] = ACTIONS(10934), - [aux_sym_citation_token1] = ACTIONS(10937), - [aux_sym_package_include_token1] = ACTIONS(10940), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10943), - [aux_sym_latex_include_token1] = ACTIONS(10946), - [aux_sym_latex_input_token1] = ACTIONS(10949), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10952), - [anon_sym_BSLASHbibliography] = ACTIONS(10955), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10958), - [anon_sym_BSLASHincludesvg] = ACTIONS(10961), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10964), - [aux_sym_verbatim_include_token1] = ACTIONS(10967), - [aux_sym_import_token1] = ACTIONS(10970), - [anon_sym_BSLASHlabel] = ACTIONS(10973), - [aux_sym_label_reference_token1] = ACTIONS(10976), - [anon_sym_BSLASHeqref] = ACTIONS(10979), - [aux_sym_label_reference_range_token1] = ACTIONS(10982), - [anon_sym_BSLASHnewlabel] = ACTIONS(10985), - [aux_sym_command_definition_token1] = ACTIONS(10988), - [aux_sym_math_operator_token1] = ACTIONS(10991), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10994), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10997), - [anon_sym_BSLASHnewacronym] = ACTIONS(11000), - [aux_sym_acronym_reference_token1] = ACTIONS(11003), - [aux_sym_theorem_definition_token1] = ACTIONS(11006), - [aux_sym_color_reference_token1] = ACTIONS(11009), - [anon_sym_BSLASHdefinecolor] = ACTIONS(11012), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(11015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(11018), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11021), - }, - [470] = { - [sym__simple_content] = STATE(467), - [sym_brace_group] = STATE(467), - [sym_mixed_group] = STATE(467), - [sym_text] = STATE(467), - [sym__text_fragment] = STATE(1752), - [sym_displayed_equation] = STATE(467), - [sym_inline_formula] = STATE(467), - [sym_begin] = STATE(78), - [sym_environment] = STATE(467), - [sym_caption] = STATE(467), - [sym_citation] = STATE(467), - [sym_package_include] = STATE(467), - [sym_class_include] = STATE(467), - [sym_latex_include] = STATE(467), - [sym_latex_input] = STATE(467), - [sym_biblatex_include] = STATE(467), - [sym_bibtex_include] = STATE(467), - [sym_graphics_include] = STATE(467), - [sym_svg_include] = STATE(467), - [sym_inkscape_include] = STATE(467), - [sym_verbatim_include] = STATE(467), - [sym_import] = STATE(467), - [sym_label_definition] = STATE(467), - [sym_label_reference] = STATE(467), - [sym_equation_label_reference] = STATE(467), - [sym_label_reference_range] = STATE(467), - [sym_label_number] = STATE(467), - [sym_command_definition] = STATE(467), - [sym_math_operator] = STATE(467), - [sym_glossary_entry_definition] = STATE(467), - [sym_glossary_entry_reference] = STATE(467), - [sym_acronym_definition] = STATE(467), - [sym_acronym_reference] = STATE(467), - [sym_theorem_definition] = STATE(467), - [sym_color_reference] = STATE(467), - [sym_color_definition] = STATE(467), - [sym_color_set_definition] = STATE(467), - [sym_pgf_library_import] = STATE(467), - [sym_tikz_library_import] = STATE(467), - [sym_generic_command] = STATE(467), - [aux_sym_enum_item_repeat1] = STATE(467), - [aux_sym_text_repeat1] = STATE(1752), - [sym_generic_command_name] = ACTIONS(10832), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(11024), - [anon_sym_RBRACK] = ACTIONS(5600), - [anon_sym_LBRACE] = ACTIONS(10836), - [anon_sym_RBRACE] = ACTIONS(5600), - [anon_sym_LPAREN] = ACTIONS(10834), - [anon_sym_COMMA] = ACTIONS(10838), - [anon_sym_EQ] = ACTIONS(10838), - [sym_word] = ACTIONS(10838), - [sym_param] = ACTIONS(11026), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10842), - [anon_sym_DOLLAR] = ACTIONS(10844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10846), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(10848), - [aux_sym_citation_token1] = ACTIONS(10850), - [aux_sym_package_include_token1] = ACTIONS(10852), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10854), - [aux_sym_latex_include_token1] = ACTIONS(10856), - [aux_sym_latex_input_token1] = ACTIONS(10858), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10860), - [anon_sym_BSLASHbibliography] = ACTIONS(10862), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10864), - [anon_sym_BSLASHincludesvg] = ACTIONS(10866), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10868), - [aux_sym_verbatim_include_token1] = ACTIONS(10870), - [aux_sym_import_token1] = ACTIONS(10872), - [anon_sym_BSLASHlabel] = ACTIONS(10874), - [aux_sym_label_reference_token1] = ACTIONS(10876), - [anon_sym_BSLASHeqref] = ACTIONS(10878), - [aux_sym_label_reference_range_token1] = ACTIONS(10880), - [anon_sym_BSLASHnewlabel] = ACTIONS(10882), - [aux_sym_command_definition_token1] = ACTIONS(10884), - [aux_sym_math_operator_token1] = ACTIONS(10886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10888), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10890), - [anon_sym_BSLASHnewacronym] = ACTIONS(10892), - [aux_sym_acronym_reference_token1] = ACTIONS(10894), - [aux_sym_theorem_definition_token1] = ACTIONS(10896), - [aux_sym_color_reference_token1] = ACTIONS(10898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10900), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10902), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10904), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10906), - }, - [471] = { - [sym__simple_content] = STATE(469), - [sym_brace_group] = STATE(469), - [sym_mixed_group] = STATE(469), - [sym_text] = STATE(469), - [sym__text_fragment] = STATE(1752), - [sym_displayed_equation] = STATE(469), - [sym_inline_formula] = STATE(469), - [sym_begin] = STATE(78), - [sym_environment] = STATE(469), - [sym_caption] = STATE(469), - [sym_citation] = STATE(469), - [sym_package_include] = STATE(469), - [sym_class_include] = STATE(469), - [sym_latex_include] = STATE(469), - [sym_latex_input] = STATE(469), - [sym_biblatex_include] = STATE(469), - [sym_bibtex_include] = STATE(469), - [sym_graphics_include] = STATE(469), - [sym_svg_include] = STATE(469), - [sym_inkscape_include] = STATE(469), - [sym_verbatim_include] = STATE(469), - [sym_import] = STATE(469), - [sym_label_definition] = STATE(469), - [sym_label_reference] = STATE(469), - [sym_equation_label_reference] = STATE(469), - [sym_label_reference_range] = STATE(469), - [sym_label_number] = STATE(469), - [sym_command_definition] = STATE(469), - [sym_math_operator] = STATE(469), - [sym_glossary_entry_definition] = STATE(469), - [sym_glossary_entry_reference] = STATE(469), - [sym_acronym_definition] = STATE(469), - [sym_acronym_reference] = STATE(469), - [sym_theorem_definition] = STATE(469), - [sym_color_reference] = STATE(469), - [sym_color_definition] = STATE(469), - [sym_color_set_definition] = STATE(469), - [sym_pgf_library_import] = STATE(469), - [sym_tikz_library_import] = STATE(469), - [sym_generic_command] = STATE(469), - [aux_sym_enum_item_repeat1] = STATE(469), - [aux_sym_text_repeat1] = STATE(1752), - [sym_generic_command_name] = ACTIONS(10832), - [sym__whitespace] = ACTIONS(3), - [sym__comment] = ACTIONS(3), - [anon_sym_LBRACK] = ACTIONS(10834), - [anon_sym_RBRACK] = ACTIONS(5731), - [anon_sym_LBRACE] = ACTIONS(10836), - [anon_sym_RBRACE] = ACTIONS(5731), - [anon_sym_LPAREN] = ACTIONS(10834), - [anon_sym_COMMA] = ACTIONS(10838), - [anon_sym_EQ] = ACTIONS(10838), - [sym_word] = ACTIONS(10838), - [sym_param] = ACTIONS(10840), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(10842), - [anon_sym_DOLLAR] = ACTIONS(10844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(10846), - [anon_sym_BSLASHbegin] = ACTIONS(39), - [anon_sym_BSLASHcaption] = ACTIONS(10848), - [aux_sym_citation_token1] = ACTIONS(10850), - [aux_sym_package_include_token1] = ACTIONS(10852), - [anon_sym_BSLASHdocumentclass] = ACTIONS(10854), - [aux_sym_latex_include_token1] = ACTIONS(10856), - [aux_sym_latex_input_token1] = ACTIONS(10858), - [anon_sym_BSLASHaddbibresource] = ACTIONS(10860), - [anon_sym_BSLASHbibliography] = ACTIONS(10862), - [anon_sym_BSLASHincludegraphics] = ACTIONS(10864), - [anon_sym_BSLASHincludesvg] = ACTIONS(10866), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(10868), - [aux_sym_verbatim_include_token1] = ACTIONS(10870), - [aux_sym_import_token1] = ACTIONS(10872), - [anon_sym_BSLASHlabel] = ACTIONS(10874), - [aux_sym_label_reference_token1] = ACTIONS(10876), - [anon_sym_BSLASHeqref] = ACTIONS(10878), - [aux_sym_label_reference_range_token1] = ACTIONS(10880), - [anon_sym_BSLASHnewlabel] = ACTIONS(10882), - [aux_sym_command_definition_token1] = ACTIONS(10884), - [aux_sym_math_operator_token1] = ACTIONS(10886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10888), - [aux_sym_glossary_entry_reference_token1] = ACTIONS(10890), - [anon_sym_BSLASHnewacronym] = ACTIONS(10892), - [aux_sym_acronym_reference_token1] = ACTIONS(10894), - [aux_sym_theorem_definition_token1] = ACTIONS(10896), - [aux_sym_color_reference_token1] = ACTIONS(10898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(10900), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(10902), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(10904), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10906), - }, -}; - -static uint16_t ts_small_parse_table[] = { - [0] = 7, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(11032), 1, - anon_sym_LBRACK, - ACTIONS(11034), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(473), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11028), 11, - ts_builtin_sym_end, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11030), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76] = 7, - ACTIONS(27), 1, - anon_sym_LBRACE, - ACTIONS(11032), 1, - anon_sym_LBRACK, - ACTIONS(11034), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(474), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11036), 11, - ts_builtin_sym_end, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11038), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [152] = 7, - ACTIONS(11044), 1, - anon_sym_LBRACK, - ACTIONS(11047), 1, - anon_sym_LBRACE, - ACTIONS(11050), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(474), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11040), 11, - ts_builtin_sym_end, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11042), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [228] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(476), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11057), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11053), 11, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11055), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [298] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(476), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11063), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11059), 11, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11061), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [368] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2876), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11066), 13, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11068), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [437] = 7, - ACTIONS(11070), 1, - anon_sym_LBRACK, - ACTIONS(11073), 1, - anon_sym_LBRACE, - ACTIONS(11076), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(478), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11040), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11042), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [510] = 7, - ACTIONS(11079), 1, - anon_sym_LBRACK, - ACTIONS(11082), 1, - anon_sym_LBRACE, - ACTIONS(11085), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(479), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11040), 8, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11042), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [583] = 7, - ACTIONS(378), 1, - anon_sym_LBRACE, - ACTIONS(11088), 1, - anon_sym_LBRACK, - ACTIONS(11090), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(494), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11028), 8, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11030), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [656] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2809), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11092), 13, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11094), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [725] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3375), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11096), 13, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11098), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [794] = 7, - ACTIONS(11100), 1, - anon_sym_LBRACK, - ACTIONS(11103), 1, - anon_sym_LBRACE, - ACTIONS(11106), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(483), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11040), 8, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11042), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [867] = 7, - ACTIONS(11109), 1, - anon_sym_LBRACK, - ACTIONS(11112), 1, - anon_sym_LBRACE, - ACTIONS(11115), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(484), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11040), 7, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11042), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [940] = 7, - ACTIONS(2188), 1, - anon_sym_LBRACE, - ACTIONS(11118), 1, - anon_sym_LBRACK, - ACTIONS(11120), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(487), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11028), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11030), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1013] = 7, - ACTIONS(476), 1, - anon_sym_LBRACE, - ACTIONS(11122), 1, - anon_sym_LBRACK, - ACTIONS(11124), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(484), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11036), 7, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11038), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1086] = 7, - ACTIONS(2188), 1, - anon_sym_LBRACE, - ACTIONS(11118), 1, - anon_sym_LBRACK, - ACTIONS(11120), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(478), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11036), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11038), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1159] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2820), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11126), 13, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11128), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1228] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2823), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11130), 13, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11132), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1297] = 7, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(11134), 1, - anon_sym_LBRACK, - ACTIONS(11136), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(491), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11028), 8, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11030), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1370] = 7, - ACTIONS(284), 1, - anon_sym_LBRACE, - ACTIONS(11134), 1, - anon_sym_LBRACK, - ACTIONS(11136), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(479), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11036), 8, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11038), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1443] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3009), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11138), 13, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11140), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1512] = 7, - ACTIONS(476), 1, - anon_sym_LBRACE, - ACTIONS(11122), 1, - anon_sym_LBRACK, - ACTIONS(11124), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(486), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11028), 7, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11030), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1585] = 7, - ACTIONS(378), 1, - anon_sym_LBRACE, - ACTIONS(11088), 1, - anon_sym_LBRACK, - ACTIONS(11090), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(483), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11036), 8, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11038), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1658] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11142), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11144), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1722] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11146), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11148), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1786] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(11150), 1, - anon_sym_LBRACK, - ACTIONS(11152), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(515), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11028), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11030), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1858] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11154), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11156), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1922] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11158), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11160), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [1986] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11162), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11164), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2050] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11166), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11168), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2114] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11170), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11172), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2178] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(113), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(115), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2242] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(117), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(119), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2306] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11174), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11176), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2370] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11178), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11180), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2434] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11182), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11184), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2498] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11186), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11188), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2562] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11190), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11192), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2626] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11194), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11196), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2690] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11198), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11200), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2754] = 7, - ACTIONS(11202), 1, - anon_sym_LBRACK, - ACTIONS(11205), 1, - anon_sym_LBRACE, - ACTIONS(11208), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(512), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11040), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11042), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2826] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11211), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11213), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2890] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11215), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11217), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [2954] = 7, - ACTIONS(3806), 1, - anon_sym_LBRACE, - ACTIONS(11150), 1, - anon_sym_LBRACK, - ACTIONS(11152), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(512), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11036), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11038), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3026] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11219), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11221), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3090] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11223), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11225), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3154] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11227), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11229), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3218] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11231), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11233), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3282] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11235), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11237), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3346] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11239), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11241), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3410] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11243), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11245), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3474] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11247), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11249), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3538] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11251), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11253), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3602] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11255), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11257), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3666] = 4, - ACTIONS(11263), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11259), 13, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11261), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3732] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11265), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11267), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3796] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11269), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11271), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3860] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11273), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11275), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3924] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11277), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11279), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [3988] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11281), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11283), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4052] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11285), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11287), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4116] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11289), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11291), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4180] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11293), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11295), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4244] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11297), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11299), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4308] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11301), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11303), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4372] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11305), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11307), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4436] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11309), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11311), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4500] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11313), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11315), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4564] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11317), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11319), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4628] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11321), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11323), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4692] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11325), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11327), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4756] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11329), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11331), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4820] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11333), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11335), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4884] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11337), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11339), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [4948] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11341), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11343), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5012] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11345), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11347), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5076] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11349), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11351), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5140] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11353), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11355), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5204] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11357), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11359), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5268] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11361), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11363), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5332] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11365), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11367), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5396] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11369), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11371), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5460] = 4, - ACTIONS(11377), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11373), 13, - ts_builtin_sym_end, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11375), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5526] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11379), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11381), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5590] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11383), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11385), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5654] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11387), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11389), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5718] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11391), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11393), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5782] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11395), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11397), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5846] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11399), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11401), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5910] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11403), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11405), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [5974] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11407), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11409), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6038] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11411), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11413), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6102] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11415), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11417), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6166] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11419), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11421), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6230] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(101), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(103), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6294] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11423), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11425), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6358] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11427), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11429), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6422] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11431), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11433), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6486] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11435), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11437), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6550] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11439), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11441), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6614] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11443), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11445), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6678] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11447), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11449), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6742] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11451), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11453), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6806] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11455), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11457), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6870] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11459), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11461), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6934] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11463), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11465), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [6998] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11467), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11469), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7062] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11471), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11473), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7126] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11475), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11477), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7190] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11479), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11481), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7254] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11483), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11485), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7318] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11487), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11489), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7382] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11491), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11493), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7446] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(107), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(109), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7510] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11495), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11497), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7574] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11499), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11501), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7638] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11503), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11505), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7702] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11507), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11509), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7766] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11511), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11513), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7830] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11515), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11517), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7894] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11519), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11521), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [7958] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11523), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11525), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8022] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11527), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11529), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8086] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11531), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11533), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8150] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11535), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11537), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8214] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11539), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11541), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8278] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11543), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11545), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8342] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11547), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11549), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8406] = 4, - ACTIONS(11555), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11551), 13, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11553), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8472] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11557), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11559), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8536] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11561), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11563), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8600] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11565), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11567), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8664] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11569), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11571), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8728] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11573), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11575), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8792] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11577), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11579), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8856] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11581), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11583), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8920] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11585), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11587), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [8984] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11589), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11591), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9048] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11593), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11595), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9112] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11597), 14, - ts_builtin_sym_end, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11599), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9176] = 5, - ACTIONS(11122), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(622), 2, - sym_bracket_group, - aux_sym_begin_repeat1, - ACTIONS(11603), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11601), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9243] = 7, - ACTIONS(5872), 1, - anon_sym_LBRACE, - ACTIONS(11605), 1, - anon_sym_LBRACK, - ACTIONS(11607), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(624), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11028), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11030), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9314] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(618), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11609), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11053), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11055), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9381] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(615), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11611), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11059), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11061), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9448] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(616), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11614), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11059), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11061), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9515] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(615), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11617), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11053), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11055), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9582] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(618), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11619), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11059), 7, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11061), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9649] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(616), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11622), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11053), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11055), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9716] = 7, - ACTIONS(11624), 1, - anon_sym_LBRACK, - ACTIONS(11627), 1, - anon_sym_LBRACE, - ACTIONS(11630), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(620), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11040), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11042), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9787] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(621), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11633), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11059), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11061), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9854] = 5, - ACTIONS(11122), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(623), 2, - sym_bracket_group, - aux_sym_begin_repeat1, - ACTIONS(11638), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11636), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9921] = 5, - ACTIONS(11642), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(623), 2, - sym_bracket_group, - aux_sym_begin_repeat1, - ACTIONS(11645), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11640), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [9988] = 7, - ACTIONS(5872), 1, - anon_sym_LBRACE, - ACTIONS(11605), 1, - anon_sym_LBRACK, - ACTIONS(11607), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(620), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11036), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11038), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10059] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(621), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11647), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11053), 8, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11055), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10126] = 7, - ACTIONS(7092), 1, - anon_sym_LBRACE, - ACTIONS(11649), 1, - anon_sym_LBRACK, - ACTIONS(11651), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(629), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11036), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11038), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10196] = 4, - ACTIONS(11657), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11655), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11653), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10260] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3318), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11096), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11098), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10326] = 7, - ACTIONS(11659), 1, - anon_sym_LBRACK, - ACTIONS(11662), 1, - anon_sym_LBRACE, - ACTIONS(11665), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(629), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11040), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11042), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10396] = 4, - ACTIONS(11668), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11655), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11653), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10460] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3411), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11092), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11094), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10526] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3412), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11126), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11128), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10592] = 4, - ACTIONS(11670), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11655), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11653), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10656] = 4, - ACTIONS(11672), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11655), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11653), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10720] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3419), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11130), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11132), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10786] = 4, - ACTIONS(11674), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11655), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11653), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10850] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3311), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11130), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11132), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10916] = 4, - ACTIONS(11676), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11655), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11653), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [10980] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3315), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11066), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11068), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11046] = 7, - ACTIONS(7092), 1, - anon_sym_LBRACE, - ACTIONS(11649), 1, - anon_sym_LBRACK, - ACTIONS(11651), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(626), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11028), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11030), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11116] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3420), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11066), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11068), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11182] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3378), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11096), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11098), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11248] = 4, - ACTIONS(11678), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11655), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11653), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11312] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(644), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11680), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11059), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11061), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11378] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(644), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11683), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11053), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11055), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11444] = 4, - ACTIONS(11685), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11655), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11653), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11508] = 4, - ACTIONS(11687), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11655), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11653), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11572] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3230), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11138), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11140), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11638] = 4, - ACTIONS(11689), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11655), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11653), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11702] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3423), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11138), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11140), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11768] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3228), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11066), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11068), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11834] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3223), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11130), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11132), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11900] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3222), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11126), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11128), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [11966] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3201), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11092), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11094), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12032] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3429), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11096), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11098), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12098] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3237), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11096), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11098), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12164] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3307), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11092), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11094), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12230] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3308), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11126), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11128), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12296] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3316), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11138), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11140), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12362] = 4, - ACTIONS(11691), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11655), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11653), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12426] = 4, - ACTIONS(11693), 1, - anon_sym_RBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11655), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11653), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12490] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3367), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11126), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11128), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12556] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3374), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11138), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11140), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12622] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3369), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11130), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11132), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12688] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3364), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11092), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11094), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12754] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3370), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11066), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11068), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12820] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11391), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11393), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12881] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11219), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11221), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [12942] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11531), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11533), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13003] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11519), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11521), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13064] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11515), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11517), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13125] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11507), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11509), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13186] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11503), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11505), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13247] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11499), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11501), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13308] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11491), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11493), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13369] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11487), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11489), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13430] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11483), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11485), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13491] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11479), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11481), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13552] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11265), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11267), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13613] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11471), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11473), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13674] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11467), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11469), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13735] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11463), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11465), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13796] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11459), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11461), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13857] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11451), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11453), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13918] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11447), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11449), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [13979] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11443), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11445), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14040] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11439), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11441), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14101] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11435), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11437), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14162] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11431), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11433), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14223] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11419), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11421), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14284] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11415), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11417), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14345] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11411), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11413), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14406] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11407), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11409), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14467] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11399), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11401), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14528] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11395), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11397), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14589] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(696), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11695), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11059), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11061), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14654] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11379), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11381), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14715] = 4, - ACTIONS(11698), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11373), 10, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11375), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14778] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11353), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11355), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14839] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11345), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11347), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14900] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11341), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11343), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [14961] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11333), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11335), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15022] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11329), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11331), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15083] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11325), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11327), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15144] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11317), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11319), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15205] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11309), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11311), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15266] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11305), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11307), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15327] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11357), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11359), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15388] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11301), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11303), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15449] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11297), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11299), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15510] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11289), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11291), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15571] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11227), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11229), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15632] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11285), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11287), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15693] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11281), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11283), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15754] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11277), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11279), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15815] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11273), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11275), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15876] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11146), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11148), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [15937] = 4, - ACTIONS(11700), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11259), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11261), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16000] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11255), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11257), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16061] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11251), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11253), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16122] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11243), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11245), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16183] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11239), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11241), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16244] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11231), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11233), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16305] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11154), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11156), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16366] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11158), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11160), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16427] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11219), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11221), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16488] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11223), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11225), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16549] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11475), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11477), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16610] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11527), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11529), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16671] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11539), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11541), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16732] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11547), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11549), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16793] = 4, - ACTIONS(11702), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11551), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11553), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16856] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11557), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11559), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16917] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11561), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11563), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [16978] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11565), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11567), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17039] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11569), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11571), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17100] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11577), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11579), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17161] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11581), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11583), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17222] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11142), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11144), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17283] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11361), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11363), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17344] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11387), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11389), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17405] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11585), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11587), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17466] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(101), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(103), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17527] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11293), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11295), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17588] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(107), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(109), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17649] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11523), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11525), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17710] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11597), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11599), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17771] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11162), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11164), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17832] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11593), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11595), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17893] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11589), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11591), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [17954] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11573), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11575), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18015] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11543), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11545), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18076] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11190), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11192), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18137] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11511), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11513), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18198] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11495), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11497), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18259] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11455), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11457), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18320] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11427), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11429), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18381] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11423), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11425), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18442] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11166), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11168), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18503] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11170), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11172), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18564] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11403), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11405), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18625] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(113), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(115), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18686] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11269), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11271), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18747] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(117), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(119), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18808] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11174), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11176), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18869] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11178), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11180), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18930] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11182), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11184), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [18991] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11186), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11188), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19052] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11190), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11192), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19113] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11194), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11196), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19174] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11198), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11200), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19235] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11211), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11213), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19296] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11215), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11217), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19357] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11235), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11237), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19418] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11247), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11249), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19479] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11313), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11315), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19540] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11321), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11323), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19601] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11337), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11339), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19662] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11383), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11385), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19723] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11349), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11351), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19784] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11365), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11367), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19845] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11369), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11371), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19906] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11369), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11371), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [19967] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11383), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11385), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20028] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11365), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11367), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20089] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11349), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11351), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20150] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11337), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11339), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20211] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11321), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11323), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20272] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11313), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11315), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20333] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11247), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11249), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20394] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11235), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11237), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20455] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11215), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11217), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20516] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11269), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11271), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20577] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11403), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11405), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20638] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11423), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11425), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20699] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11427), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11429), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20760] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11455), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11457), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20821] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11495), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11497), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20882] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11511), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11513), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [20943] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11527), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11529), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21004] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11543), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11545), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21065] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11573), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11575), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21126] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11589), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11591), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21187] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11593), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11595), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21248] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11597), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11599), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21309] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11293), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11295), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21370] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11585), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11587), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21431] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11142), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11144), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21492] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11581), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11583), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21553] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11577), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11579), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21614] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11569), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11571), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21675] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11565), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11567), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21736] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11561), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11563), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21797] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11557), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11559), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21858] = 4, - ACTIONS(11704), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11551), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11553), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21921] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11547), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11549), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [21982] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11539), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11541), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22043] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11535), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11537), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22104] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11211), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11213), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22165] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11531), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11533), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22226] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11519), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11521), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22287] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11515), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11517), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22348] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11198), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11200), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22409] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11507), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11509), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22470] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11503), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11505), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22531] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11499), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11501), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22592] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11491), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11493), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22653] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11487), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11489), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22714] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11483), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11485), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22775] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11479), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11481), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22836] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11265), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11267), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22897] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11471), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11473), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [22958] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11467), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11469), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23019] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11463), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11465), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23080] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11459), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11461), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23141] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11451), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11453), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23202] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11447), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11449), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23263] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11443), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11445), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23324] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11439), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11441), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23385] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11435), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11437), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23446] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11431), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11433), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23507] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11419), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11421), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23568] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11415), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11417), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23629] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11411), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11413), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23690] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11407), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11409), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23751] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11399), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11401), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23812] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11395), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11397), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23873] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11391), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11393), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23934] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11379), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11381), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [23995] = 4, - ACTIONS(11706), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11373), 9, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11375), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24058] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11194), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11196), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24119] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11353), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11355), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24180] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11345), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11347), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24241] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11341), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11343), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24302] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11333), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11335), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24363] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11329), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11331), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24424] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11325), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11327), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24485] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11317), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11319), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24546] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11309), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11311), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24607] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11305), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11307), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24668] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11357), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11359), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24729] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11301), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11303), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24790] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11297), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11299), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24851] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11289), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11291), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24912] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11419), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11421), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [24973] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11227), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11229), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25034] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11285), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11287), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25095] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11281), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11283), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25156] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11277), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11279), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25217] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11273), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11275), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25278] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11146), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11148), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25339] = 4, - ACTIONS(11708), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11259), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11261), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25402] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11186), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11188), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25463] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11255), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11257), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25524] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11251), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11253), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25585] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11243), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11245), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25646] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11239), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11241), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25707] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11231), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11233), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25768] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11182), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11184), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25829] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11154), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11156), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25890] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11158), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11160), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [25951] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11219), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11221), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26012] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11223), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11225), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26073] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11475), 10, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11477), 42, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHend, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26134] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11178), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11180), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26195] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11174), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11176), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26256] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(117), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(119), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26317] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(113), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(115), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26378] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11170), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11172), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26439] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11166), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11168), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26500] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11162), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11164), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26561] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11523), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11525), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26622] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(107), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(109), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26683] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(101), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(103), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26744] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11387), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11389), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26805] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11361), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11363), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26866] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11387), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11389), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26927] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11475), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11477), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [26988] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11223), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11225), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27049] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11491), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11493), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27110] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11158), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11160), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27171] = 7, - ACTIONS(9023), 1, - anon_sym_LBRACE, - ACTIONS(11710), 1, - anon_sym_LBRACK, - ACTIONS(11712), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(920), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11036), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11038), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27240] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11154), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11156), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27301] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11231), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11233), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27362] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11239), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11241), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27423] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11243), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11245), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27484] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11251), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11253), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27545] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11255), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11257), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27606] = 4, - ACTIONS(11714), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11259), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11261), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27669] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11146), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11148), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27730] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11273), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11275), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27791] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11277), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11279), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27852] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11281), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11283), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27913] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11285), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11287), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [27974] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11170), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11172), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28035] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11227), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11229), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28096] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11289), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11291), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28157] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11297), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11299), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28218] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11301), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11303), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28279] = 7, - ACTIONS(11716), 1, - anon_sym_LBRACK, - ACTIONS(11719), 1, - anon_sym_LBRACE, - ACTIONS(11722), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(920), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11040), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11042), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28348] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11357), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11359), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28409] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11305), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11307), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28470] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11309), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11311), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28531] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11317), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11319), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28592] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11325), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11327), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28653] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11329), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11331), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28714] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11333), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11335), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28775] = 7, - ACTIONS(9023), 1, - anon_sym_LBRACE, - ACTIONS(11710), 1, - anon_sym_LBRACK, - ACTIONS(11712), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(902), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11028), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11030), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28844] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11341), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11343), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28905] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11345), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11347), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [28966] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(696), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11725), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11053), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11055), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29031] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11361), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11363), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29092] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11387), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11389), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29153] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3144), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11092), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11094), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29218] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3145), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11126), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11128), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29283] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3147), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11130), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11132), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29348] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3154), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11066), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11068), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29413] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(101), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(103), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29474] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3155), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11138), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11140), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29539] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11353), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11355), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29600] = 4, - ACTIONS(11727), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11373), 10, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11375), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29663] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11379), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11381), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29724] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11391), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11393), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29785] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11395), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11397), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29846] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11399), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11401), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29907] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11407), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11409), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [29968] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11411), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11413), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30029] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(107), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(109), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30090] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11523), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11525), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30151] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11162), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11164), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30212] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11166), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11168), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30273] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11170), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11172), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30334] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(113), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(115), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30395] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3174), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11096), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11098), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30460] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11174), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11176), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30521] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11178), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11180), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30582] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11182), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11184), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30643] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11186), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11188), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30704] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11190), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11192), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30765] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11194), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11196), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30826] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11198), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11200), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30887] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11211), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11213), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [30948] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11215), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11217), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31009] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11235), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11237), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31070] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11247), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11249), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31131] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11535), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - anon_sym_BSLASH_RPAREN, - ACTIONS(11537), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31192] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11313), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11315), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31253] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11321), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11323), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31314] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11337), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11339), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31375] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11349), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11351), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31436] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11365), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11367), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31497] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11369), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11371), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31558] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11383), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11385), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31619] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11269), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11271), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31680] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11403), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11405), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31741] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11423), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11425), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31802] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11475), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11477), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31863] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11415), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11417), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31924] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11223), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11225), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [31985] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11219), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11221), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32046] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11158), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11160), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32107] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11154), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11156), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32168] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11427), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11429), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32229] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11231), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11233), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32290] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11239), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11241), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32351] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11243), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11245), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32412] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11251), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11253), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32473] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11255), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11257), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32534] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11455), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11457), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32595] = 4, - ACTIONS(11729), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11259), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11261), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32658] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11146), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11148), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32719] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11273), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11275), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32780] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11277), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11279), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32841] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11281), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11283), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32902] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11285), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11287), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [32963] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11227), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11229), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33024] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11495), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11497), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33085] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11289), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11291), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33146] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11297), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11299), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33207] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11301), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11303), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33268] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11487), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11489), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33329] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11357), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11359), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33390] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11305), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11307), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33451] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11309), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11311), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33512] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11317), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11319), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33573] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11325), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11327), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33634] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11329), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11331), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33695] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11333), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11335), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33756] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11341), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11343), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33817] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11345), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11347), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33878] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11353), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11355), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [33939] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11511), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11513), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34000] = 4, - ACTIONS(11731), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11373), 11, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11375), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34063] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11379), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11381), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34124] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11391), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11393), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34185] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11395), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11397), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34246] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11399), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11401), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34307] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11407), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11409), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34368] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11411), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11413), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34429] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11415), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11417), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34490] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11419), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11421), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34551] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11431), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11433), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34612] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11435), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11437), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34673] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11439), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11441), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34734] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11443), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11445), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34795] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11447), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11449), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34856] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11451), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11453), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34917] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11459), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11461), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [34978] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11463), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11465), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35039] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11467), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11469), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35100] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11471), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11473), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35161] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11431), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11433), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35222] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11435), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11437), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35283] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11439), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11441), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35344] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11443), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11445), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35405] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11447), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11449), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35466] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11265), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11267), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35527] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11451), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11453), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35588] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11479), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11481), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35649] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11459), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11461), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35710] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11463), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11465), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35771] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11467), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11469), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35832] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11471), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11473), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35893] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11265), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11267), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [35954] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11479), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11481), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36015] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11483), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11485), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36076] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11543), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11545), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36137] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11491), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11493), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36198] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11499), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11501), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36259] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11361), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11363), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36320] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11483), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11485), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36381] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11503), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11505), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36442] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(101), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(103), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36503] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11507), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11509), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36564] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(107), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(109), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36625] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11523), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11525), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36686] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11515), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11517), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36747] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11162), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11164), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36808] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11519), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11521), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36869] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11531), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11533), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36930] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11535), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11537), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [36991] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11539), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11541), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37052] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11547), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11549), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37113] = 4, - ACTIONS(11733), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11551), 10, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11553), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37176] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11557), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11559), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37237] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11561), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11563), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37298] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11166), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11168), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37359] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11487), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11489), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37420] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11565), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11567), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37481] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(113), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(115), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37542] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11569), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11571), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37603] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(117), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(119), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37664] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11174), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11176), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37725] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11178), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11180), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37786] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11182), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11184), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37847] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11186), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11188), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37908] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11190), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11192), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [37969] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11194), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11196), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38030] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11198), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11200), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38091] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11211), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11213), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38152] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11215), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11217), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38213] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11235), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11237), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38274] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11247), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11249), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38335] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11313), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11315), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38396] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11321), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11323), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38457] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11337), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11339), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38518] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11577), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11579), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38579] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11349), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11351), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38640] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11365), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11367), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38701] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11369), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11371), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38762] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11581), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11583), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38823] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11383), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11385), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38884] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11142), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11144), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [38945] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11585), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11587), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39006] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11293), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11295), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39067] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11597), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11599), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39128] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11593), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11595), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39189] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11589), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11591), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39250] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11573), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11575), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39311] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11269), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11271), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39372] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11403), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11405), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39433] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11423), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11425), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39494] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11427), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11429), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39555] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11455), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11457), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39616] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11495), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11497), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39677] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11511), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11513), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39738] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11527), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11529), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39799] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11543), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11545), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39860] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11573), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11575), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39921] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11589), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11591), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [39982] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11593), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11595), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40043] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11597), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11599), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40104] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11293), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11295), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40165] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11585), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11587), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40226] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11142), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11144), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40287] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11581), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11583), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40348] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11577), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11579), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40409] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11569), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11571), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40470] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11565), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11567), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40531] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11561), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11563), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40592] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11557), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11559), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40653] = 4, - ACTIONS(11735), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11551), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11553), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40716] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11547), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11549), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40777] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11539), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11541), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40838] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11535), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11537), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40899] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(117), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(119), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [40960] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11531), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11533), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41021] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11519), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11521), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41082] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11515), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11517), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41143] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11527), 11, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_RBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11529), 41, - aux_sym_part_token1, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41204] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11507), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11509), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41265] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11503), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11505), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41326] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11499), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11501), 40, - aux_sym_chapter_token1, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41387] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(101), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(103), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41447] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11227), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11229), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41507] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11170), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11172), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41567] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11387), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11389), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41627] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3130), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11096), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11098), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41691] = 7, - ACTIONS(11737), 1, - anon_sym_LBRACK, - ACTIONS(11740), 1, - anon_sym_LBRACE, - ACTIONS(11743), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1139), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11040), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11042), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41759] = 7, - ACTIONS(9831), 1, - anon_sym_LBRACE, - ACTIONS(11746), 1, - anon_sym_LBRACK, - ACTIONS(11748), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1141), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11028), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11030), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41827] = 7, - ACTIONS(9831), 1, - anon_sym_LBRACE, - ACTIONS(11746), 1, - anon_sym_LBRACK, - ACTIONS(11748), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1139), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11036), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11038), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41895] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1142), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11750), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11059), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11061), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [41959] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1142), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11753), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11053), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11055), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42023] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11475), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11477), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42083] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11223), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11225), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42143] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11219), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11221), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42203] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11158), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11160), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42263] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11154), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11156), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42323] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11231), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11233), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42383] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11239), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11241), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42443] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11243), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11245), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42503] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11251), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11253), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42563] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11255), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11257), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42623] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3119), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11092), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11094), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42687] = 4, - ACTIONS(11755), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11259), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11261), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42749] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11146), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11148), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42809] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11273), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11275), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42869] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11277), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11279), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42929] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11281), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11283), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [42989] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11285), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11287), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43049] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11289), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11291), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43109] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11297), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11299), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43169] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11301), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11303), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43229] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11357), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11359), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43289] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11305), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11307), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43349] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3127), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11138), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11140), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43413] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11309), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11311), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43473] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11317), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11319), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43533] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11325), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11327), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43593] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11329), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11331), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43653] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11333), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11335), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43713] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11341), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11343), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43773] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11345), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11347), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43833] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11353), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11355), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43893] = 4, - ACTIONS(11757), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11373), 11, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11375), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [43955] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11379), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11381), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44015] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11391), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11393), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44075] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11395), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11397), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44135] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11399), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11401), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44195] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11407), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11409), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44255] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11411), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11413), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44315] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11415), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11417), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44375] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11419), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11421), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44435] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11431), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11433), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44495] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11435), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11437), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44555] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11439), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11441), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44615] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11443), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11445), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44675] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11447), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11449), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44735] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11451), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11453), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44795] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11459), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11461), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44855] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11463), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11465), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44915] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11467), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11469), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [44975] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11471), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11473), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45035] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11265), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11267), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45095] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11479), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11481), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45155] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11483), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11485), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45215] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3125), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11066), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11068), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45279] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11487), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11489), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45339] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11491), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11493), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45399] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11499), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11501), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45459] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11361), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11363), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45519] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11503), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11505), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45579] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11507), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11509), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45639] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11515), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11517), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45699] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11519), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11521), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45759] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(107), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(109), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45819] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11523), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11525), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45879] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11531), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11533), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45939] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11162), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11164), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [45999] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11535), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11537), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46059] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11539), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11541), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46119] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11547), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11549), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46179] = 4, - ACTIONS(11759), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11551), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11553), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46241] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11557), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11559), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46301] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11561), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11563), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46361] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3124), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11130), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11132), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46425] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11166), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11168), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46485] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11565), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11567), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46545] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11569), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11571), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46605] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(113), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(115), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46665] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11577), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11579), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46725] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(117), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(119), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46785] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11174), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11176), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46845] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11178), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11180), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46905] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11182), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11184), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [46965] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11186), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11188), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47025] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11190), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11192), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47085] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11194), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11196), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47145] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11198), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11200), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47205] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11211), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11213), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47265] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11215), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11217), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47325] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11235), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11237), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47385] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11247), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11249), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47445] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11313), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11315), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47505] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11321), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11323), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47565] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11337), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11339), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47625] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11581), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11583), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47685] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11349), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11351), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47745] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11365), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11367), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47805] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11369), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11371), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47865] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11142), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11144), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47925] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11383), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11385), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [47985] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11585), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11587), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48045] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11293), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11295), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48105] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11597), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11599), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48165] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11593), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11595), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48225] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3122), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11126), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11128), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48289] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11589), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11591), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48349] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11269), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11271), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48409] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11403), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11405), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48469] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11423), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11425), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48529] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11427), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11429), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48589] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11455), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11457), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48649] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11495), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11497), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48709] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11511), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11513), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48769] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11527), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11529), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48829] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11543), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11545), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48889] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11573), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11575), 39, - aux_sym_section_token1, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [48949] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11255), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11257), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49008] = 4, - ACTIONS(11761), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11259), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11261), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49069] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3077), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11096), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11098), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49132] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11273), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11275), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49191] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11277), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11279), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49250] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1358), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11763), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11053), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11055), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49313] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11146), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11148), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49372] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11285), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11287), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49431] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11227), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11229), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49490] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11170), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11172), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49549] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11289), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11291), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49608] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11297), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11299), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49667] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11301), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11303), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49726] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11357), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11359), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49785] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11305), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11307), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49844] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11309), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11311), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49903] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11251), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11253), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [49962] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11317), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11319), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50021] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11325), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11327), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50080] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11329), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11331), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50139] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11243), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11245), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50198] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11333), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11335), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50257] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11387), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11389), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50316] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11341), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11343), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50375] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11345), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11347), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50434] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11353), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11355), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50493] = 4, - ACTIONS(11765), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11373), 11, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11375), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50554] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11379), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11381), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50613] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11391), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11393), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50672] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11395), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11397), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50731] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11399), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11401), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50790] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11407), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11409), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50849] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11411), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11413), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50908] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11415), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11417), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [50967] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11419), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11421), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51026] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11431), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11433), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51085] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11435), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11437), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51144] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11439), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11441), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51203] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11443), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11445), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51262] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11447), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11449), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51321] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11451), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11453), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51380] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11459), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11461), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51439] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11463), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11465), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51498] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11467), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11469), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51557] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11471), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11473), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51616] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11265), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11267), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51675] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11479), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11481), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51734] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11483), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11485), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51793] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11239), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11241), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51852] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11487), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11489), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51911] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11491), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11493), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [51970] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11499), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11501), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52029] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11503), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11505), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52088] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11507), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11509), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52147] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11515), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11517), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52206] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11519), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11521), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52265] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11531), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11533), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52324] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11535), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11537), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52383] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11539), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11541), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52442] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11547), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11549), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52501] = 4, - ACTIONS(11767), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11551), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11553), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52562] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11557), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11559), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52621] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11231), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11233), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52680] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11281), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11283), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52739] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11561), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11563), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52798] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11565), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11567), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52857] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11569), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11571), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52916] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11577), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11579), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [52975] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11581), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11583), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53034] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11142), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11144), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53093] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11585), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11587), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53152] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11293), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11295), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53211] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11597), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11599), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53270] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11593), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11595), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53329] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11589), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11591), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53388] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11573), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11575), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53447] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11154), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11156), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53506] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11543), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11545), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53565] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11527), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11529), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53624] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11511), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11513), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53683] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11495), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11497), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53742] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11455), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11457), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53801] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11158), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11160), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53860] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11219), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11221), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53919] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11223), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11225), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [53978] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3075), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11138), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11140), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54041] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3074), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11066), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11068), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54104] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3073), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11130), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11132), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54167] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3071), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11126), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11128), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54230] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3070), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11092), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11094), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54293] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11361), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11363), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54352] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11475), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11477), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54411] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(101), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(103), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54470] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11427), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11429), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54529] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(107), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(109), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54588] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11523), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11525), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54647] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11423), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11425), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54706] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11162), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11164), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54765] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11365), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11367), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54824] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1358), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11769), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11059), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11061), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54887] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11403), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11405), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [54946] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11269), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11271), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55005] = 7, - ACTIONS(11772), 1, - anon_sym_LBRACK, - ACTIONS(11775), 1, - anon_sym_LBRACE, - ACTIONS(11778), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1361), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11040), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11042), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55072] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11383), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11385), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55131] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11166), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11168), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55190] = 7, - ACTIONS(10401), 1, - anon_sym_LBRACE, - ACTIONS(11781), 1, - anon_sym_LBRACK, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1366), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11028), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11030), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55257] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(113), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(115), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55316] = 7, - ACTIONS(10401), 1, - anon_sym_LBRACE, - ACTIONS(11781), 1, - anon_sym_LBRACK, - ACTIONS(11783), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1361), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11036), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11038), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55383] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(117), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(119), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55442] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11174), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11176), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55501] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11178), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11180), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55560] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11182), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11184), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55619] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11186), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11188), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55678] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11190), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11192), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55737] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11194), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11196), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55796] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11198), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11200), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55855] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11211), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11213), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55914] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11215), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11217), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [55973] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11235), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11237), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56032] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11247), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11249), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56091] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11313), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11315), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56150] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11321), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11323), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56209] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11337), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11339), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56268] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11369), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11371), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56327] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11349), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11351), 38, - aux_sym_subsection_token1, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56386] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11190), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11192), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56444] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11174), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11176), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56502] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11387), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11389), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56560] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1387), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11785), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11059), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11061), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56622] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1387), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11788), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11053), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11055), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56684] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3013), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11092), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11094), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56746] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3014), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11126), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11128), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56808] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3023), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11130), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11132), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56870] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3030), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11066), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11068), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56932] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11170), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11172), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [56990] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3031), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11138), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11140), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57052] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3045), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11096), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11098), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57114] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11475), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11477), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57172] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11223), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11225), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57230] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11219), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11221), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57288] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11158), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11160), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57346] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11154), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11156), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57404] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11231), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11233), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57462] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11239), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11241), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57520] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11243), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11245), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57578] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11251), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11253), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57636] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11255), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11257), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57694] = 4, - ACTIONS(11790), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11259), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11261), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57754] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11146), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11148), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57812] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11273), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11275), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57870] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11277), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11279), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57928] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11281), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11283), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [57986] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11285), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11287), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58044] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11227), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11229), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58102] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11289), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11291), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58160] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11297), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11299), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58218] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11301), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11303), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58276] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11357), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11359), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58334] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11305), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11307), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58392] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11309), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11311), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58450] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11317), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11319), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58508] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11325), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11327), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58566] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11329), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11331), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58624] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11333), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11335), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58682] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11341), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11343), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58740] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11345), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11347), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58798] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11353), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11355), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58856] = 4, - ACTIONS(11792), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11373), 11, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11375), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58916] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11379), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11381), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [58974] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11391), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11393), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59032] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11395), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11397), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59090] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11399), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11401), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59148] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11407), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11409), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59206] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11411), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11413), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59264] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11415), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11417), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59322] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11419), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11421), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59380] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11431), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11433), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59438] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11435), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11437), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59496] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11439), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11441), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59554] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11443), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11445), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59612] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11447), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11449), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59670] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11451), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11453), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59728] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11459), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11461), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59786] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11463), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11465), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59844] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11467), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11469), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59902] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11471), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11473), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [59960] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11265), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11267), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60018] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11479), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11481), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60076] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11483), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11485), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60134] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11487), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11489), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60192] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11491), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11493), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60250] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11499), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11501), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60308] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11503), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11505), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60366] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11507), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11509), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60424] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11515), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11517), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60482] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11519), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11521), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60540] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11531), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11533), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60598] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11535), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11537), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60656] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11539), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11541), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60714] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11547), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11549), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60772] = 4, - ACTIONS(11794), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11551), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11553), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60832] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11557), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11559), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60890] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11561), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11563), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [60948] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11565), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11567), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61006] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11569), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11571), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61064] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11577), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11579), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61122] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11581), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11583), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61180] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11142), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11144), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61238] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11585), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11587), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61296] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11293), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11295), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61354] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11597), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11599), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61412] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11593), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11595), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61470] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11589), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11591), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61528] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11573), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11575), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61586] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11543), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11545), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61644] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11527), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11529), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61702] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11511), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11513), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61760] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11495), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11497), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61818] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11455), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11457), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61876] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11427), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11429), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61934] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11423), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11425), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [61992] = 7, - ACTIONS(11796), 1, - anon_sym_LBRACK, - ACTIONS(11799), 1, - anon_sym_LBRACE, - ACTIONS(11802), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1480), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11040), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11042), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62058] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11403), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11405), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62116] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11269), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11271), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62174] = 7, - ACTIONS(10836), 1, - anon_sym_LBRACE, - ACTIONS(11805), 1, - anon_sym_LBRACK, - ACTIONS(11807), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1488), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11028), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11030), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62240] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11383), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11385), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62298] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11369), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11371), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62356] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11365), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11367), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62414] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11349), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11351), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62472] = 7, - ACTIONS(10836), 1, - anon_sym_LBRACE, - ACTIONS(11805), 1, - anon_sym_LBRACK, - ACTIONS(11807), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1480), 4, - sym_brace_group, - sym_bracket_group, - sym_paren_group, - aux_sym_generic_command_repeat1, - ACTIONS(11036), 9, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11038), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62538] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11337), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11339), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62596] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11321), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11323), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62654] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11313), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11315), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62712] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11247), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11249), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62770] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11235), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11237), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62828] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11361), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11363), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62886] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11215), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11217), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [62944] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11211), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11213), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63002] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(101), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(103), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63060] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11198), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11200), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63118] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(107), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(109), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63176] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11523), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11525), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63234] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11194), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11196), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63292] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11162), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11164), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63350] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11186), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11188), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63408] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11182), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11184), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63466] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11178), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11180), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63524] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(117), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(119), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63582] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(113), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(115), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63640] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11166), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11168), 37, - aux_sym_subsubsection_token1, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63698] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11531), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11533), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63755] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11361), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11363), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63812] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1511), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11809), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11059), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11061), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63873] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11170), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11172), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63930] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1511), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11812), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11053), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11055), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [63991] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2976), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11092), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11094), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64052] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2977), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11126), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11128), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64113] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2987), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11130), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11132), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64174] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2988), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11066), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11068), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64235] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2995), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11138), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11140), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64296] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2997), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11096), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11098), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64357] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11475), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11477), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64414] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11223), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11225), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64471] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11219), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11221), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64528] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11387), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11389), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64585] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11158), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11160), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64642] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11154), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11156), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64699] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11231), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11233), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64756] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11239), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11241), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64813] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11243), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11245), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64870] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11251), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11253), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64927] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11255), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11257), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [64984] = 4, - ACTIONS(11814), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11259), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11261), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65043] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11146), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11148), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65100] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11273), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11275), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65157] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11277), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11279), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65214] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11281), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11283), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65271] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11285), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11287), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65328] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11227), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11229), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65385] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11289), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11291), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65442] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11297), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11299), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65499] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11301), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11303), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65556] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11357), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11359), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65613] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11305), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11307), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65670] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11309), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11311), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65727] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11317), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11319), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65784] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11325), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11327), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65841] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11329), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11331), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65898] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11333), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11335), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [65955] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11341), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11343), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66012] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11345), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11347), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66069] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11353), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11355), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66126] = 4, - ACTIONS(11816), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11373), 11, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11375), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66185] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11379), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11381), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66242] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11391), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11393), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66299] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11395), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11397), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66356] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11399), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11401), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66413] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11407), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11409), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66470] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11411), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11413), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66527] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11415), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11417), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66584] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11419), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11421), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66641] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11431), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11433), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66698] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11435), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11437), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66755] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11439), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11441), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66812] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11443), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11445), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66869] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11447), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11449), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66926] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11451), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11453), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [66983] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11459), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11461), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67040] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11463), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11465), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67097] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11467), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11469), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67154] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11471), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11473), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67211] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11265), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11267), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67268] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11479), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11481), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67325] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11483), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11485), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67382] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11487), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11489), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67439] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11491), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11493), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67496] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11499), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11501), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67553] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11503), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11505), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67610] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11507), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11509), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67667] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11515), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11517), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67724] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11519), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11521), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67781] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11535), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11537), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67838] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11539), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11541), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67895] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11547), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11549), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [67952] = 4, - ACTIONS(11818), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11551), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11553), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68011] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11557), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11559), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68068] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11561), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11563), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68125] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11565), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11567), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68182] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11569), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11571), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68239] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11577), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11579), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68296] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11581), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11583), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68353] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11142), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11144), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68410] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11585), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11587), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68467] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11293), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11295), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68524] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11597), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11599), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68581] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11593), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11595), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68638] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11589), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11591), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68695] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11573), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11575), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68752] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11543), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11545), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68809] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11527), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11529), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68866] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11511), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11513), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68923] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11495), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11497), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [68980] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11455), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11457), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69037] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11427), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11429), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69094] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11423), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11425), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69151] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11403), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11405), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69208] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11269), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11271), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69265] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11383), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11385), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69322] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11369), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11371), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69379] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11365), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11367), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69436] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11349), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11351), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69493] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11337), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11339), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69550] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11321), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11323), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69607] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11313), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11315), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69664] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11247), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11249), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69721] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11235), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11237), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69778] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11215), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11217), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69835] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11211), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11213), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69892] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11198), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11200), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [69949] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11194), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11196), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70006] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11190), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11192), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70063] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11186), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11188), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70120] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11182), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11184), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70177] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11178), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11180), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70234] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11174), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11176), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70291] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(117), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(119), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70348] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(113), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(115), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70405] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11166), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11168), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70462] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11162), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11164), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70519] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11523), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11525), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70576] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(107), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(109), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70633] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(101), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(103), 36, - aux_sym_paragraph_token1, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70690] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11251), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11253), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70746] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11361), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11363), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70802] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2917), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11130), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11132), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70862] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2914), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11092), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11094), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70922] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2925), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11066), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11068), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [70982] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2926), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11138), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11140), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71042] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11387), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11389), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71098] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2935), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11096), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11098), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71158] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1639), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11820), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11059), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11061), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71218] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11475), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11477), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71274] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11223), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11225), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71330] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11219), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11221), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71386] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11158), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11160), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71442] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11154), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11156), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71498] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11231), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11233), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71554] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11239), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11241), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71610] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11243), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11245), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71666] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11255), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11257), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71722] = 4, - ACTIONS(11823), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11259), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11261), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71780] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11170), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11172), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71836] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11146), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11148), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71892] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11273), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11275), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [71948] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11277), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11279), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72004] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11281), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11283), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72060] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11285), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11287), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72116] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11227), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11229), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72172] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11289), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11291), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72228] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11297), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11299), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72284] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11301), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11303), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72340] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11357), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11359), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72396] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11305), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11307), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72452] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11309), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11311), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72508] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11317), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11319), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72564] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11325), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11327), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72620] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11329), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11331), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72676] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11333), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11335), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72732] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11341), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11343), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72788] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11345), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11347), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72844] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11353), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11355), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72900] = 4, - ACTIONS(11825), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11373), 11, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11375), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [72958] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11379), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11381), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73014] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11391), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11393), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73070] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11395), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11397), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73126] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11399), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11401), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73182] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11407), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11409), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73238] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11411), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11413), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73294] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11415), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11417), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73350] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11419), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11421), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73406] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11431), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11433), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73462] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11435), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11437), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73518] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11439), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11441), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73574] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11443), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11445), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73630] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11447), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11449), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73686] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11451), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11453), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73742] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11459), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11461), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73798] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11463), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11465), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73854] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11467), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11469), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73910] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11471), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11473), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [73966] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11265), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11267), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74022] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11479), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11481), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74078] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11483), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11485), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74134] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11487), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11489), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74190] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11491), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11493), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74246] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11499), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11501), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74302] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11503), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11505), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74358] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11507), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11509), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74414] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11515), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11517), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74470] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11519), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11521), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74526] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11531), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11533), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74582] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11535), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11537), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74638] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11539), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11541), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74694] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11547), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11549), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74750] = 4, - ACTIONS(11827), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11551), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11553), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74808] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11557), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11559), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74864] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11561), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11563), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74920] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11565), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11567), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [74976] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11569), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11571), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75032] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11577), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11579), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75088] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11581), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11583), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75144] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11142), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11144), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75200] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11585), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11587), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75256] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11293), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11295), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75312] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11597), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11599), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75368] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11593), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11595), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75424] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11589), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11591), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75480] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11573), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11575), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75536] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11543), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11545), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75592] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11527), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11529), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75648] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11511), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11513), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75704] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11495), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11497), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75760] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11455), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11457), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75816] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11427), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11429), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75872] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(2915), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11126), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11128), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75932] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11423), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11425), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [75988] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11403), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11405), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76044] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11269), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11271), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76100] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11383), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11385), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76156] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11369), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11371), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76212] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11365), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11367), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76268] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11349), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11351), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76324] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11337), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11339), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76380] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11321), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11323), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76436] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11313), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11315), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76492] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11247), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11249), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76548] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11235), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11237), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76604] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11215), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11217), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76660] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11211), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11213), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76716] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11198), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11200), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76772] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11194), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11196), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76828] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11190), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11192), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76884] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11186), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11188), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76940] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11182), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11184), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [76996] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11178), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11180), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77052] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11174), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11176), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77108] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(117), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(119), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77164] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(113), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(115), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77220] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11166), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11168), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77276] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11162), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11164), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77332] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11523), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11525), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77388] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(107), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(109), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77444] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(101), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(103), 35, - aux_sym_subparagraph_token1, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77500] = 5, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - STATE(1639), 2, - sym__text_fragment, - aux_sym_text_repeat1, - ACTIONS(11829), 3, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - ACTIONS(11053), 9, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11055), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77560] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(117), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(119), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77615] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11146), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11148), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77670] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11273), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11275), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77725] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11277), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11279), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77780] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11281), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11283), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77835] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3277), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11138), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11140), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77894] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11285), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11287), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [77949] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11227), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11229), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78004] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11154), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11156), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78059] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11289), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11291), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78114] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11297), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11299), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78169] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3273), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11066), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11068), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78228] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11301), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11303), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78283] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11357), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11359), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78338] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11305), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11307), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78393] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11309), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11311), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78448] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11317), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11319), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78503] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11325), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11327), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78558] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11329), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11331), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78613] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3272), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11130), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11132), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78672] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11333), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11335), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78727] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11341), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11343), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78782] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11345), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11347), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78837] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11387), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11389), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78892] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11353), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11355), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [78947] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11158), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11160), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79002] = 4, - ACTIONS(11831), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11373), 11, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11375), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79059] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11379), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11381), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79114] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11391), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11393), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79169] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11395), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11397), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79224] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11399), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11401), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79279] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3267), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11126), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11128), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79338] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11407), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11409), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79393] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11411), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11413), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79448] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11415), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11417), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79503] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11170), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11172), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79558] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11419), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11421), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79613] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11431), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11433), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79668] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11435), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11437), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79723] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11439), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11441), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79778] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11443), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11445), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79833] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11447), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11449), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79888] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11451), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11453), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79943] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11459), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11461), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [79998] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11463), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11465), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80053] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11467), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11469), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80108] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11471), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11473), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80163] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11265), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11267), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80218] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11479), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11481), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80273] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11483), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11485), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80328] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11487), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11489), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80383] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11491), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11493), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80438] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11499), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11501), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80493] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11503), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11505), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80548] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11507), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11509), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80603] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11515), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11517), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80658] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11519), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11521), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80713] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11531), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11533), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80768] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11219), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11221), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80823] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11535), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11537), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80878] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11539), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11541), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80933] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11547), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11549), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [80988] = 4, - ACTIONS(11833), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11551), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11553), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81045] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11557), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11559), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81100] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11561), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11563), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81155] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11565), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11567), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81210] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11569), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11571), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81265] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11577), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11579), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81320] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3283), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11096), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11098), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81379] = 4, - ACTIONS(11835), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11259), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11261), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81436] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11581), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11583), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81491] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11142), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11144), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81546] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11585), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11587), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81601] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11293), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11295), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81656] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11597), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11599), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81711] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11593), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11595), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81766] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11589), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11591), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81821] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11573), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11575), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81876] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11543), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11545), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81931] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11527), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11529), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [81986] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11511), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11513), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82041] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11495), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11497), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82096] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11455), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11457), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82151] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11427), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11429), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82206] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11423), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11425), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82261] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11403), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11405), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82316] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11269), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11271), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82371] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11383), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11385), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82426] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11369), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11371), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82481] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11365), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11367), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82536] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11349), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11351), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82591] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11337), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11339), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82646] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11321), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11323), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82701] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11313), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11315), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82756] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11247), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11249), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82811] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11235), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11237), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82866] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11215), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11217), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82921] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11211), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11213), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [82976] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11198), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11200), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83031] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11194), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11196), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83086] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11190), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11192), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83141] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11186), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11188), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83196] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11475), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11477), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83251] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11182), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11184), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83306] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11178), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11180), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83361] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11174), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11176), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83416] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(113), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(115), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83471] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11166), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11168), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83526] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11223), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11225), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83581] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11162), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11164), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83636] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11523), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11525), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83691] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(107), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(109), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83746] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(101), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(103), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83801] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11361), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11363), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83856] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11239), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11241), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83911] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11231), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11233), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [83966] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11243), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11245), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84021] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11251), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11253), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84076] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11255), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11257), 34, - anon_sym_BSLASHitem, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84131] = 5, - ACTIONS(27), 1, - anon_sym_LBRACE, - STATE(3266), 1, - sym_brace_group, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11092), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11094), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84190] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11539), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11541), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84244] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11543), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11545), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84298] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11305), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11307), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84352] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11357), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11359), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84406] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11301), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11303), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84460] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11297), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11299), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84514] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11182), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11184), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84568] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11227), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11229), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84622] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11285), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11287), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84676] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11281), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11283), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84730] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11337), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11339), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84784] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11277), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11279), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84838] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11273), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11275), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84892] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11589), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11591), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [84946] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11174), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11176), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85000] = 4, - ACTIONS(11837), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11259), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11261), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85056] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11255), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11257), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85110] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11523), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11525), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85164] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11251), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11253), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85218] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11321), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11323), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85272] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11243), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11245), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85326] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11317), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11319), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85380] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(117), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(119), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85434] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11239), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11241), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85488] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(113), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(115), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85542] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11313), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11315), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85596] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11158), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11160), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85650] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11235), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11237), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85704] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11247), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11249), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85758] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11215), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11217), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85812] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11231), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11233), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85866] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11211), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11213), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85920] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11154), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11156), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [85974] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(107), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(109), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86028] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11198), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11200), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86082] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11194), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11196), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86136] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11162), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11164), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86190] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11190), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11192), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86244] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11186), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11188), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86298] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11387), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11389), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86352] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11361), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11363), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86406] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11349), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11351), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86460] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11146), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11148), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86514] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11325), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11327), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86568] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11329), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11331), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86622] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11365), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11367), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86676] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11333), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11335), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86730] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11341), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11343), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86784] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11369), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11371), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86838] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11345), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11347), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86892] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11170), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11172), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [86946] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11383), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11385), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87000] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11353), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11355), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87054] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11269), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11271), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87108] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11403), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11405), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87162] = 4, - ACTIONS(11839), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11373), 11, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11375), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87218] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11379), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11381), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87272] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11391), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11393), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87326] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11395), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11397), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87380] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11399), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11401), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87434] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11407), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11409), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87488] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11411), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11413), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87542] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11415), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11417), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87596] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11419), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11421), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87650] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11431), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11433), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87704] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11435), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11437), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87758] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11439), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11441), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87812] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11443), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11445), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87866] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11423), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11425), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87920] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11289), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11291), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [87974] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11447), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11449), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88028] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11451), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11453), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88082] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11459), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11461), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88136] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11427), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11429), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88190] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11178), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11180), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88244] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11455), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11457), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88298] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11463), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11465), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88352] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11467), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11469), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88406] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11471), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11473), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88460] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11219), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11221), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88514] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11223), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11225), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88568] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11265), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11267), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88622] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11479), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11481), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88676] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11495), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11497), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88730] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11483), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11485), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88784] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11487), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11489), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88838] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11491), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11493), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88892] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11499), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11501), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [88946] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11503), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11505), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89000] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11507), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11509), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89054] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11515), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11517), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89108] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11519), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11521), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89162] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11531), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11533), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89216] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11535), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11537), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89270] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11547), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11549), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89324] = 4, - ACTIONS(11841), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11551), 11, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11553), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89380] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11557), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11559), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89434] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11561), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11563), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89488] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11565), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11567), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89542] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11569), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11571), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89596] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11511), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11513), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89650] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11527), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11529), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89704] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11577), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11579), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89758] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11309), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11311), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89812] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11581), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11583), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89866] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11142), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11144), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89920] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11573), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11575), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [89974] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11585), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11587), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [90028] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11166), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11168), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [90082] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11293), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11295), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [90136] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11597), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11599), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [90190] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11593), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11595), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [90244] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(101), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(103), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [90298] = 3, - ACTIONS(3), 2, - sym__whitespace, - sym__comment, - ACTIONS(11475), 12, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_EQ, - sym_word, - sym_param, - anon_sym_DOLLAR_DOLLAR, - anon_sym_BSLASH_LBRACK, - anon_sym_BSLASH_LPAREN, - ACTIONS(11477), 33, - anon_sym_DOLLAR, - anon_sym_BSLASHbegin, - anon_sym_BSLASHcaption, - aux_sym_citation_token1, - aux_sym_package_include_token1, - anon_sym_BSLASHdocumentclass, - aux_sym_latex_include_token1, - aux_sym_latex_input_token1, - anon_sym_BSLASHaddbibresource, - anon_sym_BSLASHbibliography, - anon_sym_BSLASHincludegraphics, - anon_sym_BSLASHincludesvg, - anon_sym_BSLASHincludeinkscape, - aux_sym_verbatim_include_token1, - aux_sym_import_token1, - anon_sym_BSLASHlabel, - aux_sym_label_reference_token1, - anon_sym_BSLASHeqref, - aux_sym_label_reference_range_token1, - anon_sym_BSLASHnewlabel, - aux_sym_command_definition_token1, - aux_sym_math_operator_token1, - anon_sym_BSLASHnewglossaryentry, - aux_sym_glossary_entry_reference_token1, - anon_sym_BSLASHnewacronym, - aux_sym_acronym_reference_token1, - aux_sym_theorem_definition_token1, - aux_sym_color_reference_token1, - anon_sym_BSLASHdefinecolor, - anon_sym_BSLASHdefinecolorset, - anon_sym_BSLASHusepgflibrary, - anon_sym_BSLASHusetikzlibrary, - sym_generic_command_name, - [90352] = 4, + case 607: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(811); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 608: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(915); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 609: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(918); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 610: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(906); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 611: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(985); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 612: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(987); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 613: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(988); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 614: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(989); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 615: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(990); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 616: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(991); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 617: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(992); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 618: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(993); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 619: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(994); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 620: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(995); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 621: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(996); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 622: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(998); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 623: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(999); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 624: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1000); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 625: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1001); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 626: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1002); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 627: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1003); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 628: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1004); + if (lookahead == 'o') ADVANCE(695); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 629: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1005); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 630: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1006); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 631: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1007); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 632: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1008); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 633: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1009); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 634: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1010); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 635: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1011); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 636: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1012); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 637: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1013); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 638: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1014); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 639: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(1015); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 640: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(780); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 641: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'i') ADVANCE(359); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 642: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'k') ADVANCE(1075); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 643: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'k') ADVANCE(168); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 644: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'k') ADVANCE(942); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 645: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'k') ADVANCE(335); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 646: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'k') ADVANCE(338); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 647: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(166); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 648: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(165); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 649: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(164); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 650: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(130); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 651: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(222); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 652: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(221); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 653: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(220); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 654: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(73); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 655: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(153); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 656: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(225); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 657: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(219); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 658: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(224); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 659: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(218); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 660: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(177); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 661: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(176); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 662: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(185); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 663: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(223); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 664: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(217); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 665: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(175); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 666: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(184); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 667: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(213); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 668: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(212); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 669: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(211); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 670: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(180); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 671: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(250); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 672: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(244); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 673: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(179); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 674: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(249); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 675: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(243); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 676: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(178); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 677: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(248); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 678: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(247); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 679: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(845); + if (lookahead == 'u') ADVANCE(1020); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 680: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(932); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 681: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(379); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 682: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(329); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 683: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(789); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 684: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(1032); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 685: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(601); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 686: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(854); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 687: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(1049); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 688: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(598); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 689: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(793); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 690: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(651); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 691: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(652); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 692: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(653); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 693: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(324); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 694: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(804); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 695: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(805); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 696: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(812); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 697: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(686); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 698: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(440); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 699: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(463); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 700: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(1042); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 701: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(855); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 702: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(701); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 703: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(1044); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 704: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(336); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 705: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(1050); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 706: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(1051); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 707: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(383); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 708: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(641); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 709: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(387); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 710: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(388); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 711: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(389); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 712: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(391); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 713: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(393); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 714: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(395); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 715: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(396); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 716: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(398); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 717: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(399); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 718: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(400); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 719: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(405); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 720: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(410); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 721: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(714); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 722: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'l') ADVANCE(720); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 723: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(297); + if (lookahead == 'v') ADVANCE(834); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 724: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(35); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 725: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(281); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 726: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(126); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 727: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(207); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 728: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(251); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 729: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(128); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 730: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(127); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 731: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(252); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 732: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(129); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 733: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(850); + if (lookahead == 'n') ADVANCE(369); + if (lookahead == 't') ADVANCE(478); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 734: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(850); + if (lookahead == 'n') ADVANCE(369); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 735: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(742); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 736: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(355); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 737: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(431); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 738: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(512); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 739: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(434); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 740: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(435); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 741: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(438); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 742: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(306); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 743: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(308); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 744: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(501); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 745: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(640); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 746: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(311); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 747: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(743); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 748: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(356); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 749: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(746); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 750: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(861); + if (lookahead == 'n') ADVANCE(376); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 751: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(342); + if (lookahead == 'u') ADVANCE(343); + if (lookahead == 'v') ADVANCE(839); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 752: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(342); + if (lookahead == 'u') ADVANCE(344); + if (lookahead == 'v') ADVANCE(839); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 753: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(342); + if (lookahead == 'u') ADVANCE(345); + if (lookahead == 'v') ADVANCE(839); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 754: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'm') ADVANCE(342); + if (lookahead == 'u') ADVANCE(346); + if (lookahead == 'v') ADVANCE(839); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 755: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(52); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 756: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(54); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 757: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(26); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 758: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(28); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 759: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(30); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 760: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(413); + if (lookahead == 'q') ADVANCE(889); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 761: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(643); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 762: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(298); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 763: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(557); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 764: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(414); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 765: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(558); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 766: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(644); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 767: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(415); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 768: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(559); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 769: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(416); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 770: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(567); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 771: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(859); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 772: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(981); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 773: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(561); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 774: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(562); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 775: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(1019); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 776: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(1070); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 777: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(568); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 778: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(984); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 779: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(496); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 780: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(860); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 781: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(377); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 782: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(1024); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 783: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(401); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 784: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(406); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 785: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'n') ADVANCE(842); + if (lookahead == 'o') ADVANCE(791); + if (lookahead == 't') ADVANCE(1054); + if (lookahead == 'u') ADVANCE(721); + if (lookahead == 'v') ADVANCE(837); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 786: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(392); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 787: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(1057); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 788: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(1029); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 789: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(864); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 790: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(735); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 791: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(973); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 792: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(763); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 793: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(937); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 794: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(765); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 795: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(768); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 796: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(350); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 797: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(726); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 798: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(756); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 799: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(757); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 800: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(729); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 801: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(776); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 802: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(730); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 803: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(732); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 804: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(868); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 805: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(869); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 806: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(870); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 807: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(758); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 808: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(871); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 809: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(773); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 810: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(774); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 811: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(759); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 812: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(873); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 813: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(662); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 814: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(874); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 815: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(666); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 816: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(884); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 817: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(1038); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 818: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(694); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 819: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(890); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 820: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(892); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 821: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(696); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 822: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(897); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 823: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(899); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 824: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(900); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 825: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(902); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 826: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(912); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 827: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(914); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 828: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(572); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 829: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(747); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 830: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(385); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 831: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(749); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 832: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(709); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 833: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(710); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 834: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(711); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 835: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(712); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 836: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(713); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 837: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(715); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 838: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(716); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 839: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(717); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 840: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(718); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 841: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(719); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 842: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(1030); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 843: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'o') ADVANCE(1031); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 844: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(303); + if (lookahead == 't') ADVANCE(588); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 845: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(77); + if (lookahead == 't') ADVANCE(76); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 846: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(167); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 847: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(574); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 848: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(1017); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 849: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(577); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 850: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(816); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 851: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(578); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 852: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(576); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 853: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(333); + if (lookahead == 'r') ADVANCE(498); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 854: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(671); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 855: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(674); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 856: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(520); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 857: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(476); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 858: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(983); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 859: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(1039); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 860: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(1040); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 861: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'p') ADVANCE(823); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 862: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'q') ADVANCE(1033); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 863: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'q') ADVANCE(889); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 864: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(253); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 865: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(589); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 866: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(24); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 867: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(69); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 868: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(256); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 869: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(255); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 870: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(65); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 871: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(63); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 872: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(75); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 873: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(257); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 874: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(158); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 875: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(1072); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 876: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(590); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 877: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(349); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 878: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(1071); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 879: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(591); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 880: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(1066); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 881: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(943); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 882: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(1067); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 883: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(1068); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 884: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(954); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 885: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(300); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 886: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(483); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 887: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(340); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 888: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(310); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 889: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(488); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 890: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(958); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 891: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(374); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 892: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(959); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 893: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(801); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 894: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(302); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 895: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(654); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 896: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(797); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 897: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(962); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 898: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(328); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 899: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(965); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 900: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(968); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 901: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(800); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 902: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(970); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 903: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(802); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 904: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(433); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 905: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(803); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 906: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(436); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 907: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(509); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 908: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(491); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 909: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(494); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 910: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(492); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 911: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(500); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 912: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(497); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 913: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(506); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 914: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(505); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 915: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(944); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 916: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(312); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 917: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(323); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 918: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(947); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 919: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(316); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 920: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(332); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 921: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(317); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 922: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(318); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 923: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(314); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 924: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(319); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 925: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(315); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 926: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(1073); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 927: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(358); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 928: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(409); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 929: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(1027); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 930: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'r') ADVANCE(1028); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 931: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(162); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 932: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(161); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 933: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(112); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 934: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(119); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 935: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(846); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 936: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(428); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 937: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(951); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 938: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(362); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 939: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(363); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 940: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(933); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 941: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(364); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 942: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(372); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 943: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(960); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 944: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(961); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 945: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(493); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 946: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(499); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 947: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(964); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 948: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(817); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 949: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(504); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 950: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(967); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 951: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(307); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 952: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 's') ADVANCE(525); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 953: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(115); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 954: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(124); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 955: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(171); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 956: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(170); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 957: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(169); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 958: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(210); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 959: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(209); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 960: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(174); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 961: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(173); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 962: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(208); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 963: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(78); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 964: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(172); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 965: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(125); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 966: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(84); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 967: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(280); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 968: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(246); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 969: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(123); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 970: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(245); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 971: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(122); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 972: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(258); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 973: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(394); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 974: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(830); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 975: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(786); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 976: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(575); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 977: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(361); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 978: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(597); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 979: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(429); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 980: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(599); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 981: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(875); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 982: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(430); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 983: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(502); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 984: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(883); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 985: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(432); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 986: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(814); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 987: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(437); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 988: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(441); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 989: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(442); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 990: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(443); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 991: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(444); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 992: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(445); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 993: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(446); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 994: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(447); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 995: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(448); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 996: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(449); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 997: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(450); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 998: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(451); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 999: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(452); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1000: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(453); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1001: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(454); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1002: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(455); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1003: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(456); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1004: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(457); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1005: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(458); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1006: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(460); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1007: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(461); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1008: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(462); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1009: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(465); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1010: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(466); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1011: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(467); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1012: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(468); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1013: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(469); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1014: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(470); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1015: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(472); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1016: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(579); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1017: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(602); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1018: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(699); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1019: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(373); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1020: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(580); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1021: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(604); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1022: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(606); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1023: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(607); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1024: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(926); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1025: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(583); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1026: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(390); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1027: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(403); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1028: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(408); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1029: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(527); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1030: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(528); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1031: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 't') ADVANCE(529); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1032: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(418); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1033: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(610); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1034: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(351); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1035: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(953); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1036: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(1016); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1037: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(690); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1038: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(891); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1039: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(969); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1040: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(971); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1041: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(738); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1042: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(419); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1043: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(691); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1044: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(420); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1045: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(692); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1046: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(950); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1047: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(697); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1048: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(702); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1049: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(921); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1050: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(922); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1051: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(924); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1052: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'u') ADVANCE(722); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1053: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'v') ADVANCE(560); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1054: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'v') ADVANCE(841); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1055: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'w') ADVANCE(301); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1056: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'w') ADVANCE(412); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1057: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'x') ADVANCE(254); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1058: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'x') ADVANCE(1026); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1059: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'x') ADVANCE(955); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1060: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'x') ADVANCE(956); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1061: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'x') ADVANCE(957); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1062: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'x') ADVANCE(963); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1063: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'x') ADVANCE(966); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1064: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'x') ADVANCE(977); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1065: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'y') ADVANCE(118); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1066: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'y') ADVANCE(259); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1067: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'y') ADVANCE(260); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1068: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'y') ADVANCE(160); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1069: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'y') ADVANCE(736); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1070: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'y') ADVANCE(727); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1071: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'y') ADVANCE(522); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1072: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'y') ADVANCE(554); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1073: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'y') ADVANCE(555); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1074: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'y') ADVANCE(748); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1075: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (lookahead == 'z') ADVANCE(708); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(1076); + END_STATE(); + case 1076: + ACCEPT_TOKEN(sym_generic_command_name); + if (lookahead == '*') ADVANCE(261); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + END_STATE(); + case 1077: + ACCEPT_TOKEN(sym_generic_command_name); + if (('@' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1076); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(261); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + default: + return false; + } +} + +static TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0}, + [1] = {.lex_state = 15}, + [2] = {.lex_state = 16}, + [3] = {.lex_state = 17}, + [4] = {.lex_state = 16}, + [5] = {.lex_state = 17}, + [6] = {.lex_state = 15}, + [7] = {.lex_state = 16}, + [8] = {.lex_state = 16}, + [9] = {.lex_state = 16}, + [10] = {.lex_state = 16}, + [11] = {.lex_state = 16}, + [12] = {.lex_state = 17}, + [13] = {.lex_state = 17}, + [14] = {.lex_state = 16}, + [15] = {.lex_state = 17}, + [16] = {.lex_state = 16}, + [17] = {.lex_state = 16}, + [18] = {.lex_state = 17}, + [19] = {.lex_state = 16}, + [20] = {.lex_state = 17}, + [21] = {.lex_state = 17}, + [22] = {.lex_state = 16}, + [23] = {.lex_state = 17}, + [24] = {.lex_state = 17}, + [25] = {.lex_state = 16}, + [26] = {.lex_state = 16}, + [27] = {.lex_state = 17}, + [28] = {.lex_state = 16}, + [29] = {.lex_state = 17}, + [30] = {.lex_state = 16}, + [31] = {.lex_state = 17}, + [32] = {.lex_state = 17}, + [33] = {.lex_state = 16}, + [34] = {.lex_state = 17}, + [35] = {.lex_state = 16}, + [36] = {.lex_state = 17}, + [37] = {.lex_state = 16}, + [38] = {.lex_state = 17}, + [39] = {.lex_state = 17}, + [40] = {.lex_state = 17}, + [41] = {.lex_state = 17}, + [42] = {.lex_state = 16}, + [43] = {.lex_state = 15}, + [44] = {.lex_state = 2}, + [45] = {.lex_state = 3}, + [46] = {.lex_state = 15}, + [47] = {.lex_state = 4}, + [48] = {.lex_state = 3}, + [49] = {.lex_state = 4}, + [50] = {.lex_state = 1}, + [51] = {.lex_state = 1}, + [52] = {.lex_state = 2}, + [53] = {.lex_state = 15}, + [54] = {.lex_state = 1}, + [55] = {.lex_state = 15}, + [56] = {.lex_state = 1}, + [57] = {.lex_state = 2}, + [58] = {.lex_state = 15}, + [59] = {.lex_state = 2}, + [60] = {.lex_state = 15}, + [61] = {.lex_state = 15}, + [62] = {.lex_state = 15}, + [63] = {.lex_state = 2}, + [64] = {.lex_state = 15}, + [65] = {.lex_state = 15}, + [66] = {.lex_state = 2}, + [67] = {.lex_state = 15}, + [68] = {.lex_state = 15}, + [69] = {.lex_state = 2}, + [70] = {.lex_state = 15}, + [71] = {.lex_state = 15}, + [72] = {.lex_state = 2}, + [73] = {.lex_state = 2}, + [74] = {.lex_state = 15}, + [75] = {.lex_state = 15}, + [76] = {.lex_state = 2}, + [77] = {.lex_state = 15}, + [78] = {.lex_state = 2}, + [79] = {.lex_state = 15}, + [80] = {.lex_state = 15}, + [81] = {.lex_state = 15}, + [82] = {.lex_state = 15}, + [83] = {.lex_state = 2}, + [84] = {.lex_state = 2}, + [85] = {.lex_state = 15}, + [86] = {.lex_state = 2}, + [87] = {.lex_state = 15}, + [88] = {.lex_state = 15}, + [89] = {.lex_state = 15}, + [90] = {.lex_state = 2}, + [91] = {.lex_state = 2}, + [92] = {.lex_state = 15}, + [93] = {.lex_state = 15}, + [94] = {.lex_state = 2}, + [95] = {.lex_state = 15}, + [96] = {.lex_state = 15}, + [97] = {.lex_state = 15}, + [98] = {.lex_state = 15}, + [99] = {.lex_state = 2}, + [100] = {.lex_state = 2}, + [101] = {.lex_state = 15}, + [102] = {.lex_state = 15}, + [103] = {.lex_state = 15}, + [104] = {.lex_state = 15}, + [105] = {.lex_state = 2}, + [106] = {.lex_state = 15}, + [107] = {.lex_state = 15}, + [108] = {.lex_state = 2}, + [109] = {.lex_state = 2}, + [110] = {.lex_state = 15}, + [111] = {.lex_state = 15}, + [112] = {.lex_state = 2}, + [113] = {.lex_state = 2}, + [114] = {.lex_state = 17}, + [115] = {.lex_state = 16}, + [116] = {.lex_state = 15}, + [117] = {.lex_state = 16}, + [118] = {.lex_state = 15}, + [119] = {.lex_state = 15}, + [120] = {.lex_state = 16}, + [121] = {.lex_state = 15}, + [122] = {.lex_state = 15}, + [123] = {.lex_state = 16}, + [124] = {.lex_state = 16}, + [125] = {.lex_state = 15}, + [126] = {.lex_state = 15}, + [127] = {.lex_state = 16}, + [128] = {.lex_state = 15}, + [129] = {.lex_state = 15}, + [130] = {.lex_state = 15}, + [131] = {.lex_state = 15}, + [132] = {.lex_state = 15}, + [133] = {.lex_state = 17}, + [134] = {.lex_state = 16}, + [135] = {.lex_state = 15}, + [136] = {.lex_state = 16}, + [137] = {.lex_state = 17}, + [138] = {.lex_state = 15}, + [139] = {.lex_state = 17}, + [140] = {.lex_state = 15}, + [141] = {.lex_state = 17}, + [142] = {.lex_state = 17}, + [143] = {.lex_state = 16}, + [144] = {.lex_state = 15}, + [145] = {.lex_state = 17}, + [146] = {.lex_state = 15}, + [147] = {.lex_state = 16}, + [148] = {.lex_state = 17}, + [149] = {.lex_state = 16}, + [150] = {.lex_state = 15}, + [151] = {.lex_state = 15}, + [152] = {.lex_state = 15}, + [153] = {.lex_state = 15}, + [154] = {.lex_state = 15}, + [155] = {.lex_state = 15}, + [156] = {.lex_state = 15}, + [157] = {.lex_state = 2}, + [158] = {.lex_state = 16}, + [159] = {.lex_state = 15}, + [160] = {.lex_state = 17}, + [161] = {.lex_state = 15}, + [162] = {.lex_state = 17}, + [163] = {.lex_state = 15}, + [164] = {.lex_state = 16}, + [165] = {.lex_state = 16}, + [166] = {.lex_state = 15}, + [167] = {.lex_state = 17}, + [168] = {.lex_state = 15}, + [169] = {.lex_state = 15}, + [170] = {.lex_state = 16}, + [171] = {.lex_state = 17}, + [172] = {.lex_state = 15}, + [173] = {.lex_state = 16}, + [174] = {.lex_state = 15}, + [175] = {.lex_state = 16}, + [176] = {.lex_state = 17}, + [177] = {.lex_state = 15}, + [178] = {.lex_state = 15}, + [179] = {.lex_state = 15}, + [180] = {.lex_state = 15}, + [181] = {.lex_state = 17}, + [182] = {.lex_state = 15}, + [183] = {.lex_state = 15}, + [184] = {.lex_state = 17}, + [185] = {.lex_state = 16}, + [186] = {.lex_state = 15}, + [187] = {.lex_state = 15}, + [188] = {.lex_state = 15}, + [189] = {.lex_state = 16}, + [190] = {.lex_state = 15}, + [191] = {.lex_state = 17}, + [192] = {.lex_state = 16}, + [193] = {.lex_state = 15}, + [194] = {.lex_state = 17}, + [195] = {.lex_state = 15}, + [196] = {.lex_state = 17}, + [197] = {.lex_state = 15}, + [198] = {.lex_state = 15}, + [199] = {.lex_state = 15}, + [200] = {.lex_state = 15}, + [201] = {.lex_state = 15}, + [202] = {.lex_state = 15}, + [203] = {.lex_state = 16}, + [204] = {.lex_state = 17}, + [205] = {.lex_state = 16}, + [206] = {.lex_state = 15}, + [207] = {.lex_state = 15}, + [208] = {.lex_state = 17}, + [209] = {.lex_state = 15}, + [210] = {.lex_state = 15}, + [211] = {.lex_state = 17}, + [212] = {.lex_state = 15}, + [213] = {.lex_state = 15}, + [214] = {.lex_state = 16}, + [215] = {.lex_state = 17}, + [216] = {.lex_state = 15}, + [217] = {.lex_state = 15}, + [218] = {.lex_state = 15}, + [219] = {.lex_state = 15}, + [220] = {.lex_state = 15}, + [221] = {.lex_state = 17}, + [222] = {.lex_state = 16}, + [223] = {.lex_state = 15}, + [224] = {.lex_state = 17}, + [225] = {.lex_state = 15}, + [226] = {.lex_state = 15}, + [227] = {.lex_state = 15}, + [228] = {.lex_state = 15}, + [229] = {.lex_state = 15}, + [230] = {.lex_state = 15}, + [231] = {.lex_state = 17}, + [232] = {.lex_state = 16}, + [233] = {.lex_state = 17}, + [234] = {.lex_state = 15}, + [235] = {.lex_state = 16}, + [236] = {.lex_state = 17}, + [237] = {.lex_state = 15}, + [238] = {.lex_state = 15}, + [239] = {.lex_state = 15}, + [240] = {.lex_state = 16}, + [241] = {.lex_state = 17}, + [242] = {.lex_state = 15}, + [243] = {.lex_state = 15}, + [244] = {.lex_state = 16}, + [245] = {.lex_state = 15}, + [246] = {.lex_state = 15}, + [247] = {.lex_state = 17}, + [248] = {.lex_state = 16}, + [249] = {.lex_state = 15}, + [250] = {.lex_state = 15}, + [251] = {.lex_state = 15}, + [252] = {.lex_state = 15}, + [253] = {.lex_state = 16}, + [254] = {.lex_state = 16}, + [255] = {.lex_state = 15}, + [256] = {.lex_state = 15}, + [257] = {.lex_state = 2}, + [258] = {.lex_state = 11}, + [259] = {.lex_state = 11}, + [260] = {.lex_state = 2}, + [261] = {.lex_state = 11}, + [262] = {.lex_state = 2}, + [263] = {.lex_state = 16}, + [264] = {.lex_state = 17}, + [265] = {.lex_state = 17}, + [266] = {.lex_state = 15}, + [267] = {.lex_state = 17}, + [268] = {.lex_state = 15}, + [269] = {.lex_state = 11}, + [270] = {.lex_state = 16}, + [271] = {.lex_state = 17}, + [272] = {.lex_state = 16}, + [273] = {.lex_state = 2}, + [274] = {.lex_state = 11}, + [275] = {.lex_state = 15}, + [276] = {.lex_state = 11}, + [277] = {.lex_state = 2}, + [278] = {.lex_state = 17}, + [279] = {.lex_state = 2}, + [280] = {.lex_state = 15}, + [281] = {.lex_state = 16}, + [282] = {.lex_state = 17}, + [283] = {.lex_state = 17}, + [284] = {.lex_state = 11}, + [285] = {.lex_state = 2}, + [286] = {.lex_state = 11}, + [287] = {.lex_state = 17}, + [288] = {.lex_state = 15}, + [289] = {.lex_state = 5}, + [290] = {.lex_state = 15}, + [291] = {.lex_state = 15}, + [292] = {.lex_state = 11}, + [293] = {.lex_state = 5}, + [294] = {.lex_state = 2}, + [295] = {.lex_state = 16}, + [296] = {.lex_state = 5}, + [297] = {.lex_state = 17}, + [298] = {.lex_state = 16}, + [299] = {.lex_state = 2}, + [300] = {.lex_state = 16}, + [301] = {.lex_state = 2}, + [302] = {.lex_state = 2}, + [303] = {.lex_state = 15}, + [304] = {.lex_state = 5}, + [305] = {.lex_state = 2}, + [306] = {.lex_state = 17}, + [307] = {.lex_state = 17}, + [308] = {.lex_state = 15}, + [309] = {.lex_state = 16}, + [310] = {.lex_state = 11}, + [311] = {.lex_state = 15}, + [312] = {.lex_state = 11}, + [313] = {.lex_state = 11}, + [314] = {.lex_state = 5}, + [315] = {.lex_state = 5}, + [316] = {.lex_state = 16}, + [317] = {.lex_state = 17}, + [318] = {.lex_state = 16}, + [319] = {.lex_state = 15}, + [320] = {.lex_state = 15}, + [321] = {.lex_state = 16}, + [322] = {.lex_state = 17}, + [323] = {.lex_state = 17}, + [324] = {.lex_state = 6}, + [325] = {.lex_state = 5}, + [326] = {.lex_state = 11}, + [327] = {.lex_state = 5}, + [328] = {.lex_state = 15}, + [329] = {.lex_state = 15}, + [330] = {.lex_state = 16}, + [331] = {.lex_state = 15}, + [332] = {.lex_state = 16}, + [333] = {.lex_state = 6}, + [334] = {.lex_state = 2}, + [335] = {.lex_state = 2}, + [336] = {.lex_state = 17}, + [337] = {.lex_state = 6}, + [338] = {.lex_state = 5}, + [339] = {.lex_state = 11}, + [340] = {.lex_state = 2}, + [341] = {.lex_state = 11}, + [342] = {.lex_state = 16}, + [343] = {.lex_state = 11}, + [344] = {.lex_state = 5}, + [345] = {.lex_state = 6}, + [346] = {.lex_state = 2}, + [347] = {.lex_state = 11}, + [348] = {.lex_state = 6}, + [349] = {.lex_state = 2}, + [350] = {.lex_state = 16}, + [351] = {.lex_state = 11}, + [352] = {.lex_state = 5}, + [353] = {.lex_state = 6}, + [354] = {.lex_state = 5}, + [355] = {.lex_state = 2}, + [356] = {.lex_state = 17}, + [357] = {.lex_state = 16}, + [358] = {.lex_state = 17}, + [359] = {.lex_state = 17}, + [360] = {.lex_state = 6}, + [361] = {.lex_state = 5}, + [362] = {.lex_state = 17}, + [363] = {.lex_state = 16}, + [364] = {.lex_state = 16}, + [365] = {.lex_state = 12}, + [366] = {.lex_state = 17}, + [367] = {.lex_state = 11}, + [368] = {.lex_state = 5}, + [369] = {.lex_state = 12}, + [370] = {.lex_state = 2}, + [371] = {.lex_state = 16}, + [372] = {.lex_state = 17}, + [373] = {.lex_state = 2}, + [374] = {.lex_state = 5}, + [375] = {.lex_state = 6}, + [376] = {.lex_state = 2}, + [377] = {.lex_state = 6}, + [378] = {.lex_state = 12}, + [379] = {.lex_state = 11}, + [380] = {.lex_state = 11}, + [381] = {.lex_state = 17}, + [382] = {.lex_state = 2}, + [383] = {.lex_state = 12}, + [384] = {.lex_state = 11}, + [385] = {.lex_state = 16}, + [386] = {.lex_state = 16}, + [387] = {.lex_state = 6}, + [388] = {.lex_state = 11}, + [389] = {.lex_state = 11}, + [390] = {.lex_state = 11}, + [391] = {.lex_state = 17}, + [392] = {.lex_state = 12}, + [393] = {.lex_state = 6}, + [394] = {.lex_state = 6}, + [395] = {.lex_state = 12}, + [396] = {.lex_state = 16}, + [397] = {.lex_state = 16}, + [398] = {.lex_state = 2}, + [399] = {.lex_state = 17}, + [400] = {.lex_state = 17}, + [401] = {.lex_state = 11}, + [402] = {.lex_state = 5}, + [403] = {.lex_state = 2}, + [404] = {.lex_state = 17}, + [405] = {.lex_state = 16}, + [406] = {.lex_state = 2}, + [407] = {.lex_state = 2}, + [408] = {.lex_state = 5}, + [409] = {.lex_state = 5}, + [410] = {.lex_state = 5}, + [411] = {.lex_state = 12}, + [412] = {.lex_state = 5}, + [413] = {.lex_state = 7}, + [414] = {.lex_state = 6}, + [415] = {.lex_state = 12}, + [416] = {.lex_state = 5}, + [417] = {.lex_state = 7}, + [418] = {.lex_state = 6}, + [419] = {.lex_state = 12}, + [420] = {.lex_state = 6}, + [421] = {.lex_state = 5}, + [422] = {.lex_state = 5}, + [423] = {.lex_state = 7}, + [424] = {.lex_state = 6}, + [425] = {.lex_state = 12}, + [426] = {.lex_state = 7}, + [427] = {.lex_state = 12}, + [428] = {.lex_state = 6}, + [429] = {.lex_state = 6}, + [430] = {.lex_state = 12}, + [431] = {.lex_state = 6}, + [432] = {.lex_state = 6}, + [433] = {.lex_state = 7}, + [434] = {.lex_state = 7}, + [435] = {.lex_state = 8}, + [436] = {.lex_state = 8}, + [437] = {.lex_state = 8}, + [438] = {.lex_state = 7}, + [439] = {.lex_state = 7}, + [440] = {.lex_state = 12}, + [441] = {.lex_state = 12}, + [442] = {.lex_state = 12}, + [443] = {.lex_state = 12}, + [444] = {.lex_state = 7}, + [445] = {.lex_state = 12}, + [446] = {.lex_state = 8}, + [447] = {.lex_state = 8}, + [448] = {.lex_state = 7}, + [449] = {.lex_state = 7}, + [450] = {.lex_state = 7}, + [451] = {.lex_state = 7}, + [452] = {.lex_state = 7}, + [453] = {.lex_state = 8}, + [454] = {.lex_state = 8}, + [455] = {.lex_state = 8}, + [456] = {.lex_state = 9}, + [457] = {.lex_state = 8}, + [458] = {.lex_state = 8}, + [459] = {.lex_state = 8}, + [460] = {.lex_state = 9}, + [461] = {.lex_state = 9}, + [462] = {.lex_state = 9}, + [463] = {.lex_state = 9}, + [464] = {.lex_state = 9}, + [465] = {.lex_state = 9}, + [466] = {.lex_state = 9}, + [467] = {.lex_state = 10}, + [468] = {.lex_state = 10}, + [469] = {.lex_state = 10}, + [470] = {.lex_state = 10}, + [471] = {.lex_state = 10}, + [472] = {.lex_state = 15}, + [473] = {.lex_state = 15}, + [474] = {.lex_state = 15}, + [475] = {.lex_state = 15}, + [476] = {.lex_state = 15}, + [477] = {.lex_state = 15}, + [478] = {.lex_state = 11}, + [479] = {.lex_state = 16}, + [480] = {.lex_state = 17}, + [481] = {.lex_state = 15}, + [482] = {.lex_state = 15}, + [483] = {.lex_state = 17}, + [484] = {.lex_state = 2}, + [485] = {.lex_state = 11}, + [486] = {.lex_state = 2}, + [487] = {.lex_state = 11}, + [488] = {.lex_state = 15}, + [489] = {.lex_state = 15}, + [490] = {.lex_state = 16}, + [491] = {.lex_state = 16}, + [492] = {.lex_state = 15}, + [493] = {.lex_state = 2}, + [494] = {.lex_state = 17}, + [495] = {.lex_state = 15}, + [496] = {.lex_state = 15}, + [497] = {.lex_state = 5}, + [498] = {.lex_state = 15}, + [499] = {.lex_state = 15}, + [500] = {.lex_state = 15}, + [501] = {.lex_state = 15}, + [502] = {.lex_state = 15}, + [503] = {.lex_state = 15}, + [504] = {.lex_state = 15}, + [505] = {.lex_state = 15}, + [506] = {.lex_state = 15}, + [507] = {.lex_state = 15}, + [508] = {.lex_state = 15}, + [509] = {.lex_state = 15}, + [510] = {.lex_state = 15}, + [511] = {.lex_state = 15}, + [512] = {.lex_state = 5}, + [513] = {.lex_state = 15}, + [514] = {.lex_state = 15}, + [515] = {.lex_state = 5}, + [516] = {.lex_state = 15}, + [517] = {.lex_state = 15}, + [518] = {.lex_state = 15}, + [519] = {.lex_state = 15}, + [520] = {.lex_state = 15}, + [521] = {.lex_state = 15}, + [522] = {.lex_state = 15}, + [523] = {.lex_state = 15}, + [524] = {.lex_state = 15}, + [525] = {.lex_state = 15}, + [526] = {.lex_state = 15}, + [527] = {.lex_state = 15}, + [528] = {.lex_state = 15}, + [529] = {.lex_state = 15}, + [530] = {.lex_state = 15}, + [531] = {.lex_state = 15}, + [532] = {.lex_state = 15}, + [533] = {.lex_state = 15}, + [534] = {.lex_state = 15}, + [535] = {.lex_state = 15}, + [536] = {.lex_state = 15}, + [537] = {.lex_state = 15}, + [538] = {.lex_state = 15}, + [539] = {.lex_state = 15}, + [540] = {.lex_state = 15}, + [541] = {.lex_state = 15}, + [542] = {.lex_state = 15}, + [543] = {.lex_state = 15}, + [544] = {.lex_state = 15}, + [545] = {.lex_state = 15}, + [546] = {.lex_state = 15}, + [547] = {.lex_state = 15}, + [548] = {.lex_state = 15}, + [549] = {.lex_state = 15}, + [550] = {.lex_state = 15}, + [551] = {.lex_state = 15}, + [552] = {.lex_state = 15}, + [553] = {.lex_state = 15}, + [554] = {.lex_state = 15}, + [555] = {.lex_state = 15}, + [556] = {.lex_state = 15}, + [557] = {.lex_state = 15}, + [558] = {.lex_state = 15}, + [559] = {.lex_state = 15}, + [560] = {.lex_state = 15}, + [561] = {.lex_state = 15}, + [562] = {.lex_state = 15}, + [563] = {.lex_state = 15}, + [564] = {.lex_state = 15}, + [565] = {.lex_state = 15}, + [566] = {.lex_state = 15}, + [567] = {.lex_state = 15}, + [568] = {.lex_state = 15}, + [569] = {.lex_state = 15}, + [570] = {.lex_state = 15}, + [571] = {.lex_state = 15}, + [572] = {.lex_state = 15}, + [573] = {.lex_state = 15}, + [574] = {.lex_state = 15}, + [575] = {.lex_state = 15}, + [576] = {.lex_state = 15}, + [577] = {.lex_state = 15}, + [578] = {.lex_state = 15}, + [579] = {.lex_state = 15}, + [580] = {.lex_state = 15}, + [581] = {.lex_state = 15}, + [582] = {.lex_state = 15}, + [583] = {.lex_state = 15}, + [584] = {.lex_state = 15}, + [585] = {.lex_state = 15}, + [586] = {.lex_state = 15}, + [587] = {.lex_state = 15}, + [588] = {.lex_state = 15}, + [589] = {.lex_state = 15}, + [590] = {.lex_state = 15}, + [591] = {.lex_state = 15}, + [592] = {.lex_state = 15}, + [593] = {.lex_state = 15}, + [594] = {.lex_state = 15}, + [595] = {.lex_state = 15}, + [596] = {.lex_state = 15}, + [597] = {.lex_state = 15}, + [598] = {.lex_state = 15}, + [599] = {.lex_state = 15}, + [600] = {.lex_state = 15}, + [601] = {.lex_state = 15}, + [602] = {.lex_state = 15}, + [603] = {.lex_state = 15}, + [604] = {.lex_state = 15}, + [605] = {.lex_state = 15}, + [606] = {.lex_state = 15}, + [607] = {.lex_state = 15}, + [608] = {.lex_state = 15}, + [609] = {.lex_state = 15}, + [610] = {.lex_state = 15}, + [611] = {.lex_state = 15}, + [612] = {.lex_state = 2}, + [613] = {.lex_state = 6}, + [614] = {.lex_state = 2}, + [615] = {.lex_state = 16}, + [616] = {.lex_state = 11}, + [617] = {.lex_state = 16}, + [618] = {.lex_state = 2}, + [619] = {.lex_state = 11}, + [620] = {.lex_state = 6}, + [621] = {.lex_state = 17}, + [622] = {.lex_state = 2}, + [623] = {.lex_state = 2}, + [624] = {.lex_state = 6}, + [625] = {.lex_state = 17}, + [626] = {.lex_state = 12}, + [627] = {.lex_state = 15}, + [628] = {.lex_state = 2}, + [629] = {.lex_state = 12}, + [630] = {.lex_state = 15}, + [631] = {.lex_state = 16}, + [632] = {.lex_state = 16}, + [633] = {.lex_state = 15}, + [634] = {.lex_state = 15}, + [635] = {.lex_state = 16}, + [636] = {.lex_state = 15}, + [637] = {.lex_state = 2}, + [638] = {.lex_state = 15}, + [639] = {.lex_state = 2}, + [640] = {.lex_state = 12}, + [641] = {.lex_state = 16}, + [642] = {.lex_state = 17}, + [643] = {.lex_state = 15}, + [644] = {.lex_state = 5}, + [645] = {.lex_state = 5}, + [646] = {.lex_state = 15}, + [647] = {.lex_state = 15}, + [648] = {.lex_state = 11}, + [649] = {.lex_state = 15}, + [650] = {.lex_state = 16}, + [651] = {.lex_state = 11}, + [652] = {.lex_state = 11}, + [653] = {.lex_state = 11}, + [654] = {.lex_state = 11}, + [655] = {.lex_state = 16}, + [656] = {.lex_state = 11}, + [657] = {.lex_state = 2}, + [658] = {.lex_state = 2}, + [659] = {.lex_state = 2}, + [660] = {.lex_state = 15}, + [661] = {.lex_state = 15}, + [662] = {.lex_state = 17}, + [663] = {.lex_state = 17}, + [664] = {.lex_state = 17}, + [665] = {.lex_state = 17}, + [666] = {.lex_state = 17}, + [667] = {.lex_state = 17}, + [668] = {.lex_state = 16}, + [669] = {.lex_state = 17}, + [670] = {.lex_state = 17}, + [671] = {.lex_state = 17}, + [672] = {.lex_state = 17}, + [673] = {.lex_state = 17}, + [674] = {.lex_state = 17}, + [675] = {.lex_state = 17}, + [676] = {.lex_state = 17}, + [677] = {.lex_state = 17}, + [678] = {.lex_state = 17}, + [679] = {.lex_state = 17}, + [680] = {.lex_state = 17}, + [681] = {.lex_state = 17}, + [682] = {.lex_state = 17}, + [683] = {.lex_state = 17}, + [684] = {.lex_state = 17}, + [685] = {.lex_state = 17}, + [686] = {.lex_state = 17}, + [687] = {.lex_state = 17}, + [688] = {.lex_state = 17}, + [689] = {.lex_state = 17}, + [690] = {.lex_state = 17}, + [691] = {.lex_state = 17}, + [692] = {.lex_state = 17}, + [693] = {.lex_state = 17}, + [694] = {.lex_state = 17}, + [695] = {.lex_state = 17}, + [696] = {.lex_state = 6}, + [697] = {.lex_state = 17}, + [698] = {.lex_state = 17}, + [699] = {.lex_state = 17}, + [700] = {.lex_state = 17}, + [701] = {.lex_state = 17}, + [702] = {.lex_state = 17}, + [703] = {.lex_state = 17}, + [704] = {.lex_state = 17}, + [705] = {.lex_state = 17}, + [706] = {.lex_state = 17}, + [707] = {.lex_state = 17}, + [708] = {.lex_state = 17}, + [709] = {.lex_state = 17}, + [710] = {.lex_state = 17}, + [711] = {.lex_state = 17}, + [712] = {.lex_state = 17}, + [713] = {.lex_state = 17}, + [714] = {.lex_state = 17}, + [715] = {.lex_state = 17}, + [716] = {.lex_state = 17}, + [717] = {.lex_state = 17}, + [718] = {.lex_state = 17}, + [719] = {.lex_state = 17}, + [720] = {.lex_state = 17}, + [721] = {.lex_state = 17}, + [722] = {.lex_state = 17}, + [723] = {.lex_state = 17}, + [724] = {.lex_state = 17}, + [725] = {.lex_state = 17}, + [726] = {.lex_state = 17}, + [727] = {.lex_state = 17}, + [728] = {.lex_state = 17}, + [729] = {.lex_state = 17}, + [730] = {.lex_state = 17}, + [731] = {.lex_state = 17}, + [732] = {.lex_state = 17}, + [733] = {.lex_state = 17}, + [734] = {.lex_state = 17}, + [735] = {.lex_state = 17}, + [736] = {.lex_state = 17}, + [737] = {.lex_state = 17}, + [738] = {.lex_state = 17}, + [739] = {.lex_state = 17}, + [740] = {.lex_state = 2}, + [741] = {.lex_state = 2}, + [742] = {.lex_state = 17}, + [743] = {.lex_state = 2}, + [744] = {.lex_state = 17}, + [745] = {.lex_state = 2}, + [746] = {.lex_state = 2}, + [747] = {.lex_state = 17}, + [748] = {.lex_state = 2}, + [749] = {.lex_state = 17}, + [750] = {.lex_state = 17}, + [751] = {.lex_state = 17}, + [752] = {.lex_state = 17}, + [753] = {.lex_state = 17}, + [754] = {.lex_state = 17}, + [755] = {.lex_state = 17}, + [756] = {.lex_state = 17}, + [757] = {.lex_state = 17}, + [758] = {.lex_state = 17}, + [759] = {.lex_state = 2}, + [760] = {.lex_state = 2}, + [761] = {.lex_state = 17}, + [762] = {.lex_state = 2}, + [763] = {.lex_state = 17}, + [764] = {.lex_state = 2}, + [765] = {.lex_state = 2}, + [766] = {.lex_state = 2}, + [767] = {.lex_state = 2}, + [768] = {.lex_state = 2}, + [769] = {.lex_state = 2}, + [770] = {.lex_state = 2}, + [771] = {.lex_state = 2}, + [772] = {.lex_state = 2}, + [773] = {.lex_state = 2}, + [774] = {.lex_state = 2}, + [775] = {.lex_state = 2}, + [776] = {.lex_state = 2}, + [777] = {.lex_state = 2}, + [778] = {.lex_state = 2}, + [779] = {.lex_state = 17}, + [780] = {.lex_state = 2}, + [781] = {.lex_state = 2}, + [782] = {.lex_state = 2}, + [783] = {.lex_state = 17}, + [784] = {.lex_state = 2}, + [785] = {.lex_state = 17}, + [786] = {.lex_state = 17}, + [787] = {.lex_state = 17}, + [788] = {.lex_state = 17}, + [789] = {.lex_state = 17}, + [790] = {.lex_state = 17}, + [791] = {.lex_state = 17}, + [792] = {.lex_state = 17}, + [793] = {.lex_state = 2}, + [794] = {.lex_state = 2}, + [795] = {.lex_state = 2}, + [796] = {.lex_state = 2}, + [797] = {.lex_state = 2}, + [798] = {.lex_state = 2}, + [799] = {.lex_state = 2}, + [800] = {.lex_state = 2}, + [801] = {.lex_state = 2}, + [802] = {.lex_state = 2}, + [803] = {.lex_state = 2}, + [804] = {.lex_state = 2}, + [805] = {.lex_state = 2}, + [806] = {.lex_state = 2}, + [807] = {.lex_state = 2}, + [808] = {.lex_state = 2}, + [809] = {.lex_state = 2}, + [810] = {.lex_state = 2}, + [811] = {.lex_state = 2}, + [812] = {.lex_state = 2}, + [813] = {.lex_state = 2}, + [814] = {.lex_state = 2}, + [815] = {.lex_state = 2}, + [816] = {.lex_state = 2}, + [817] = {.lex_state = 2}, + [818] = {.lex_state = 2}, + [819] = {.lex_state = 17}, + [820] = {.lex_state = 2}, + [821] = {.lex_state = 2}, + [822] = {.lex_state = 2}, + [823] = {.lex_state = 17}, + [824] = {.lex_state = 2}, + [825] = {.lex_state = 2}, + [826] = {.lex_state = 2}, + [827] = {.lex_state = 2}, + [828] = {.lex_state = 2}, + [829] = {.lex_state = 2}, + [830] = {.lex_state = 2}, + [831] = {.lex_state = 2}, + [832] = {.lex_state = 2}, + [833] = {.lex_state = 2}, + [834] = {.lex_state = 2}, + [835] = {.lex_state = 2}, + [836] = {.lex_state = 2}, + [837] = {.lex_state = 2}, + [838] = {.lex_state = 2}, + [839] = {.lex_state = 2}, + [840] = {.lex_state = 2}, + [841] = {.lex_state = 2}, + [842] = {.lex_state = 2}, + [843] = {.lex_state = 2}, + [844] = {.lex_state = 2}, + [845] = {.lex_state = 2}, + [846] = {.lex_state = 2}, + [847] = {.lex_state = 2}, + [848] = {.lex_state = 2}, + [849] = {.lex_state = 2}, + [850] = {.lex_state = 2}, + [851] = {.lex_state = 17}, + [852] = {.lex_state = 2}, + [853] = {.lex_state = 2}, + [854] = {.lex_state = 2}, + [855] = {.lex_state = 2}, + [856] = {.lex_state = 2}, + [857] = {.lex_state = 2}, + [858] = {.lex_state = 2}, + [859] = {.lex_state = 2}, + [860] = {.lex_state = 2}, + [861] = {.lex_state = 2}, + [862] = {.lex_state = 2}, + [863] = {.lex_state = 2}, + [864] = {.lex_state = 2}, + [865] = {.lex_state = 16}, + [866] = {.lex_state = 2}, + [867] = {.lex_state = 2}, + [868] = {.lex_state = 2}, + [869] = {.lex_state = 2}, + [870] = {.lex_state = 2}, + [871] = {.lex_state = 2}, + [872] = {.lex_state = 2}, + [873] = {.lex_state = 17}, + [874] = {.lex_state = 2}, + [875] = {.lex_state = 2}, + [876] = {.lex_state = 2}, + [877] = {.lex_state = 2}, + [878] = {.lex_state = 2}, + [879] = {.lex_state = 17}, + [880] = {.lex_state = 2}, + [881] = {.lex_state = 2}, + [882] = {.lex_state = 2}, + [883] = {.lex_state = 2}, + [884] = {.lex_state = 2}, + [885] = {.lex_state = 17}, + [886] = {.lex_state = 17}, + [887] = {.lex_state = 17}, + [888] = {.lex_state = 17}, + [889] = {.lex_state = 17}, + [890] = {.lex_state = 17}, + [891] = {.lex_state = 17}, + [892] = {.lex_state = 17}, + [893] = {.lex_state = 17}, + [894] = {.lex_state = 17}, + [895] = {.lex_state = 17}, + [896] = {.lex_state = 17}, + [897] = {.lex_state = 11}, + [898] = {.lex_state = 16}, + [899] = {.lex_state = 16}, + [900] = {.lex_state = 11}, + [901] = {.lex_state = 16}, + [902] = {.lex_state = 7}, + [903] = {.lex_state = 16}, + [904] = {.lex_state = 16}, + [905] = {.lex_state = 16}, + [906] = {.lex_state = 16}, + [907] = {.lex_state = 16}, + [908] = {.lex_state = 16}, + [909] = {.lex_state = 16}, + [910] = {.lex_state = 16}, + [911] = {.lex_state = 16}, + [912] = {.lex_state = 16}, + [913] = {.lex_state = 16}, + [914] = {.lex_state = 16}, + [915] = {.lex_state = 11}, + [916] = {.lex_state = 16}, + [917] = {.lex_state = 16}, + [918] = {.lex_state = 16}, + [919] = {.lex_state = 16}, + [920] = {.lex_state = 7}, + [921] = {.lex_state = 16}, + [922] = {.lex_state = 16}, + [923] = {.lex_state = 16}, + [924] = {.lex_state = 16}, + [925] = {.lex_state = 16}, + [926] = {.lex_state = 16}, + [927] = {.lex_state = 16}, + [928] = {.lex_state = 7}, + [929] = {.lex_state = 16}, + [930] = {.lex_state = 16}, + [931] = {.lex_state = 6}, + [932] = {.lex_state = 16}, + [933] = {.lex_state = 16}, + [934] = {.lex_state = 5}, + [935] = {.lex_state = 5}, + [936] = {.lex_state = 5}, + [937] = {.lex_state = 5}, + [938] = {.lex_state = 16}, + [939] = {.lex_state = 5}, + [940] = {.lex_state = 16}, + [941] = {.lex_state = 16}, + [942] = {.lex_state = 16}, + [943] = {.lex_state = 16}, + [944] = {.lex_state = 16}, + [945] = {.lex_state = 16}, + [946] = {.lex_state = 16}, + [947] = {.lex_state = 16}, + [948] = {.lex_state = 16}, + [949] = {.lex_state = 16}, + [950] = {.lex_state = 16}, + [951] = {.lex_state = 16}, + [952] = {.lex_state = 16}, + [953] = {.lex_state = 16}, + [954] = {.lex_state = 5}, + [955] = {.lex_state = 16}, + [956] = {.lex_state = 16}, + [957] = {.lex_state = 16}, + [958] = {.lex_state = 16}, + [959] = {.lex_state = 16}, + [960] = {.lex_state = 16}, + [961] = {.lex_state = 16}, + [962] = {.lex_state = 16}, + [963] = {.lex_state = 16}, + [964] = {.lex_state = 16}, + [965] = {.lex_state = 16}, + [966] = {.lex_state = 17}, + [967] = {.lex_state = 16}, + [968] = {.lex_state = 16}, + [969] = {.lex_state = 16}, + [970] = {.lex_state = 16}, + [971] = {.lex_state = 16}, + [972] = {.lex_state = 16}, + [973] = {.lex_state = 16}, + [974] = {.lex_state = 16}, + [975] = {.lex_state = 16}, + [976] = {.lex_state = 16}, + [977] = {.lex_state = 11}, + [978] = {.lex_state = 16}, + [979] = {.lex_state = 11}, + [980] = {.lex_state = 11}, + [981] = {.lex_state = 11}, + [982] = {.lex_state = 11}, + [983] = {.lex_state = 16}, + [984] = {.lex_state = 11}, + [985] = {.lex_state = 11}, + [986] = {.lex_state = 11}, + [987] = {.lex_state = 11}, + [988] = {.lex_state = 11}, + [989] = {.lex_state = 16}, + [990] = {.lex_state = 11}, + [991] = {.lex_state = 11}, + [992] = {.lex_state = 11}, + [993] = {.lex_state = 11}, + [994] = {.lex_state = 11}, + [995] = {.lex_state = 11}, + [996] = {.lex_state = 11}, + [997] = {.lex_state = 16}, + [998] = {.lex_state = 11}, + [999] = {.lex_state = 11}, + [1000] = {.lex_state = 11}, + [1001] = {.lex_state = 16}, + [1002] = {.lex_state = 11}, + [1003] = {.lex_state = 11}, + [1004] = {.lex_state = 11}, + [1005] = {.lex_state = 11}, + [1006] = {.lex_state = 11}, + [1007] = {.lex_state = 11}, + [1008] = {.lex_state = 11}, + [1009] = {.lex_state = 11}, + [1010] = {.lex_state = 11}, + [1011] = {.lex_state = 11}, + [1012] = {.lex_state = 16}, + [1013] = {.lex_state = 11}, + [1014] = {.lex_state = 11}, + [1015] = {.lex_state = 11}, + [1016] = {.lex_state = 11}, + [1017] = {.lex_state = 11}, + [1018] = {.lex_state = 11}, + [1019] = {.lex_state = 11}, + [1020] = {.lex_state = 11}, + [1021] = {.lex_state = 11}, + [1022] = {.lex_state = 11}, + [1023] = {.lex_state = 11}, + [1024] = {.lex_state = 11}, + [1025] = {.lex_state = 11}, + [1026] = {.lex_state = 11}, + [1027] = {.lex_state = 11}, + [1028] = {.lex_state = 11}, + [1029] = {.lex_state = 11}, + [1030] = {.lex_state = 11}, + [1031] = {.lex_state = 11}, + [1032] = {.lex_state = 16}, + [1033] = {.lex_state = 16}, + [1034] = {.lex_state = 16}, + [1035] = {.lex_state = 16}, + [1036] = {.lex_state = 16}, + [1037] = {.lex_state = 11}, + [1038] = {.lex_state = 16}, + [1039] = {.lex_state = 11}, + [1040] = {.lex_state = 16}, + [1041] = {.lex_state = 16}, + [1042] = {.lex_state = 16}, + [1043] = {.lex_state = 16}, + [1044] = {.lex_state = 16}, + [1045] = {.lex_state = 16}, + [1046] = {.lex_state = 16}, + [1047] = {.lex_state = 16}, + [1048] = {.lex_state = 16}, + [1049] = {.lex_state = 16}, + [1050] = {.lex_state = 11}, + [1051] = {.lex_state = 11}, + [1052] = {.lex_state = 16}, + [1053] = {.lex_state = 11}, + [1054] = {.lex_state = 16}, + [1055] = {.lex_state = 11}, + [1056] = {.lex_state = 11}, + [1057] = {.lex_state = 16}, + [1058] = {.lex_state = 11}, + [1059] = {.lex_state = 16}, + [1060] = {.lex_state = 16}, + [1061] = {.lex_state = 16}, + [1062] = {.lex_state = 16}, + [1063] = {.lex_state = 16}, + [1064] = {.lex_state = 16}, + [1065] = {.lex_state = 16}, + [1066] = {.lex_state = 16}, + [1067] = {.lex_state = 11}, + [1068] = {.lex_state = 11}, + [1069] = {.lex_state = 16}, + [1070] = {.lex_state = 11}, + [1071] = {.lex_state = 16}, + [1072] = {.lex_state = 11}, + [1073] = {.lex_state = 11}, + [1074] = {.lex_state = 11}, + [1075] = {.lex_state = 11}, + [1076] = {.lex_state = 11}, + [1077] = {.lex_state = 11}, + [1078] = {.lex_state = 11}, + [1079] = {.lex_state = 11}, + [1080] = {.lex_state = 11}, + [1081] = {.lex_state = 11}, + [1082] = {.lex_state = 11}, + [1083] = {.lex_state = 11}, + [1084] = {.lex_state = 11}, + [1085] = {.lex_state = 11}, + [1086] = {.lex_state = 11}, + [1087] = {.lex_state = 16}, + [1088] = {.lex_state = 11}, + [1089] = {.lex_state = 11}, + [1090] = {.lex_state = 11}, + [1091] = {.lex_state = 16}, + [1092] = {.lex_state = 11}, + [1093] = {.lex_state = 16}, + [1094] = {.lex_state = 16}, + [1095] = {.lex_state = 16}, + [1096] = {.lex_state = 16}, + [1097] = {.lex_state = 16}, + [1098] = {.lex_state = 16}, + [1099] = {.lex_state = 16}, + [1100] = {.lex_state = 11}, + [1101] = {.lex_state = 11}, + [1102] = {.lex_state = 11}, + [1103] = {.lex_state = 11}, + [1104] = {.lex_state = 11}, + [1105] = {.lex_state = 11}, + [1106] = {.lex_state = 11}, + [1107] = {.lex_state = 11}, + [1108] = {.lex_state = 11}, + [1109] = {.lex_state = 11}, + [1110] = {.lex_state = 11}, + [1111] = {.lex_state = 11}, + [1112] = {.lex_state = 11}, + [1113] = {.lex_state = 11}, + [1114] = {.lex_state = 11}, + [1115] = {.lex_state = 11}, + [1116] = {.lex_state = 11}, + [1117] = {.lex_state = 11}, + [1118] = {.lex_state = 11}, + [1119] = {.lex_state = 11}, + [1120] = {.lex_state = 11}, + [1121] = {.lex_state = 11}, + [1122] = {.lex_state = 11}, + [1123] = {.lex_state = 11}, + [1124] = {.lex_state = 11}, + [1125] = {.lex_state = 11}, + [1126] = {.lex_state = 16}, + [1127] = {.lex_state = 11}, + [1128] = {.lex_state = 11}, + [1129] = {.lex_state = 11}, + [1130] = {.lex_state = 16}, + [1131] = {.lex_state = 11}, + [1132] = {.lex_state = 11}, + [1133] = {.lex_state = 11}, + [1134] = {.lex_state = 5}, + [1135] = {.lex_state = 5}, + [1136] = {.lex_state = 5}, + [1137] = {.lex_state = 5}, + [1138] = {.lex_state = 6}, + [1139] = {.lex_state = 8}, + [1140] = {.lex_state = 8}, + [1141] = {.lex_state = 8}, + [1142] = {.lex_state = 12}, + [1143] = {.lex_state = 12}, + [1144] = {.lex_state = 5}, + [1145] = {.lex_state = 5}, + [1146] = {.lex_state = 5}, + [1147] = {.lex_state = 5}, + [1148] = {.lex_state = 5}, + [1149] = {.lex_state = 5}, + [1150] = {.lex_state = 5}, + [1151] = {.lex_state = 5}, + [1152] = {.lex_state = 5}, + [1153] = {.lex_state = 5}, + [1154] = {.lex_state = 6}, + [1155] = {.lex_state = 5}, + [1156] = {.lex_state = 5}, + [1157] = {.lex_state = 5}, + [1158] = {.lex_state = 5}, + [1159] = {.lex_state = 5}, + [1160] = {.lex_state = 5}, + [1161] = {.lex_state = 5}, + [1162] = {.lex_state = 5}, + [1163] = {.lex_state = 5}, + [1164] = {.lex_state = 5}, + [1165] = {.lex_state = 5}, + [1166] = {.lex_state = 6}, + [1167] = {.lex_state = 5}, + [1168] = {.lex_state = 5}, + [1169] = {.lex_state = 5}, + [1170] = {.lex_state = 5}, + [1171] = {.lex_state = 5}, + [1172] = {.lex_state = 5}, + [1173] = {.lex_state = 5}, + [1174] = {.lex_state = 5}, + [1175] = {.lex_state = 5}, + [1176] = {.lex_state = 5}, + [1177] = {.lex_state = 5}, + [1178] = {.lex_state = 5}, + [1179] = {.lex_state = 5}, + [1180] = {.lex_state = 5}, + [1181] = {.lex_state = 5}, + [1182] = {.lex_state = 5}, + [1183] = {.lex_state = 5}, + [1184] = {.lex_state = 5}, + [1185] = {.lex_state = 5}, + [1186] = {.lex_state = 5}, + [1187] = {.lex_state = 5}, + [1188] = {.lex_state = 5}, + [1189] = {.lex_state = 5}, + [1190] = {.lex_state = 5}, + [1191] = {.lex_state = 5}, + [1192] = {.lex_state = 5}, + [1193] = {.lex_state = 5}, + [1194] = {.lex_state = 5}, + [1195] = {.lex_state = 5}, + [1196] = {.lex_state = 5}, + [1197] = {.lex_state = 6}, + [1198] = {.lex_state = 5}, + [1199] = {.lex_state = 5}, + [1200] = {.lex_state = 5}, + [1201] = {.lex_state = 5}, + [1202] = {.lex_state = 5}, + [1203] = {.lex_state = 5}, + [1204] = {.lex_state = 5}, + [1205] = {.lex_state = 5}, + [1206] = {.lex_state = 5}, + [1207] = {.lex_state = 5}, + [1208] = {.lex_state = 5}, + [1209] = {.lex_state = 5}, + [1210] = {.lex_state = 5}, + [1211] = {.lex_state = 5}, + [1212] = {.lex_state = 5}, + [1213] = {.lex_state = 5}, + [1214] = {.lex_state = 5}, + [1215] = {.lex_state = 5}, + [1216] = {.lex_state = 6}, + [1217] = {.lex_state = 5}, + [1218] = {.lex_state = 5}, + [1219] = {.lex_state = 5}, + [1220] = {.lex_state = 5}, + [1221] = {.lex_state = 5}, + [1222] = {.lex_state = 5}, + [1223] = {.lex_state = 5}, + [1224] = {.lex_state = 5}, + [1225] = {.lex_state = 5}, + [1226] = {.lex_state = 5}, + [1227] = {.lex_state = 5}, + [1228] = {.lex_state = 5}, + [1229] = {.lex_state = 5}, + [1230] = {.lex_state = 5}, + [1231] = {.lex_state = 5}, + [1232] = {.lex_state = 5}, + [1233] = {.lex_state = 5}, + [1234] = {.lex_state = 5}, + [1235] = {.lex_state = 5}, + [1236] = {.lex_state = 5}, + [1237] = {.lex_state = 5}, + [1238] = {.lex_state = 5}, + [1239] = {.lex_state = 5}, + [1240] = {.lex_state = 5}, + [1241] = {.lex_state = 5}, + [1242] = {.lex_state = 5}, + [1243] = {.lex_state = 5}, + [1244] = {.lex_state = 5}, + [1245] = {.lex_state = 5}, + [1246] = {.lex_state = 5}, + [1247] = {.lex_state = 6}, + [1248] = {.lex_state = 5}, + [1249] = {.lex_state = 5}, + [1250] = {.lex_state = 5}, + [1251] = {.lex_state = 5}, + [1252] = {.lex_state = 5}, + [1253] = {.lex_state = 5}, + [1254] = {.lex_state = 5}, + [1255] = {.lex_state = 5}, + [1256] = {.lex_state = 5}, + [1257] = {.lex_state = 5}, + [1258] = {.lex_state = 5}, + [1259] = {.lex_state = 6}, + [1260] = {.lex_state = 6}, + [1261] = {.lex_state = 12}, + [1262] = {.lex_state = 6}, + [1263] = {.lex_state = 6}, + [1264] = {.lex_state = 7}, + [1265] = {.lex_state = 6}, + [1266] = {.lex_state = 6}, + [1267] = {.lex_state = 6}, + [1268] = {.lex_state = 6}, + [1269] = {.lex_state = 6}, + [1270] = {.lex_state = 6}, + [1271] = {.lex_state = 6}, + [1272] = {.lex_state = 6}, + [1273] = {.lex_state = 6}, + [1274] = {.lex_state = 6}, + [1275] = {.lex_state = 6}, + [1276] = {.lex_state = 6}, + [1277] = {.lex_state = 6}, + [1278] = {.lex_state = 6}, + [1279] = {.lex_state = 6}, + [1280] = {.lex_state = 6}, + [1281] = {.lex_state = 6}, + [1282] = {.lex_state = 6}, + [1283] = {.lex_state = 6}, + [1284] = {.lex_state = 6}, + [1285] = {.lex_state = 6}, + [1286] = {.lex_state = 6}, + [1287] = {.lex_state = 6}, + [1288] = {.lex_state = 6}, + [1289] = {.lex_state = 6}, + [1290] = {.lex_state = 6}, + [1291] = {.lex_state = 6}, + [1292] = {.lex_state = 6}, + [1293] = {.lex_state = 6}, + [1294] = {.lex_state = 6}, + [1295] = {.lex_state = 6}, + [1296] = {.lex_state = 6}, + [1297] = {.lex_state = 6}, + [1298] = {.lex_state = 6}, + [1299] = {.lex_state = 6}, + [1300] = {.lex_state = 6}, + [1301] = {.lex_state = 6}, + [1302] = {.lex_state = 6}, + [1303] = {.lex_state = 6}, + [1304] = {.lex_state = 6}, + [1305] = {.lex_state = 6}, + [1306] = {.lex_state = 6}, + [1307] = {.lex_state = 6}, + [1308] = {.lex_state = 6}, + [1309] = {.lex_state = 6}, + [1310] = {.lex_state = 6}, + [1311] = {.lex_state = 6}, + [1312] = {.lex_state = 6}, + [1313] = {.lex_state = 6}, + [1314] = {.lex_state = 6}, + [1315] = {.lex_state = 6}, + [1316] = {.lex_state = 6}, + [1317] = {.lex_state = 6}, + [1318] = {.lex_state = 6}, + [1319] = {.lex_state = 6}, + [1320] = {.lex_state = 6}, + [1321] = {.lex_state = 6}, + [1322] = {.lex_state = 6}, + [1323] = {.lex_state = 6}, + [1324] = {.lex_state = 6}, + [1325] = {.lex_state = 6}, + [1326] = {.lex_state = 6}, + [1327] = {.lex_state = 6}, + [1328] = {.lex_state = 6}, + [1329] = {.lex_state = 6}, + [1330] = {.lex_state = 6}, + [1331] = {.lex_state = 6}, + [1332] = {.lex_state = 6}, + [1333] = {.lex_state = 6}, + [1334] = {.lex_state = 6}, + [1335] = {.lex_state = 6}, + [1336] = {.lex_state = 6}, + [1337] = {.lex_state = 6}, + [1338] = {.lex_state = 6}, + [1339] = {.lex_state = 6}, + [1340] = {.lex_state = 6}, + [1341] = {.lex_state = 6}, + [1342] = {.lex_state = 6}, + [1343] = {.lex_state = 6}, + [1344] = {.lex_state = 12}, + [1345] = {.lex_state = 12}, + [1346] = {.lex_state = 12}, + [1347] = {.lex_state = 12}, + [1348] = {.lex_state = 12}, + [1349] = {.lex_state = 6}, + [1350] = {.lex_state = 6}, + [1351] = {.lex_state = 6}, + [1352] = {.lex_state = 6}, + [1353] = {.lex_state = 6}, + [1354] = {.lex_state = 6}, + [1355] = {.lex_state = 6}, + [1356] = {.lex_state = 6}, + [1357] = {.lex_state = 6}, + [1358] = {.lex_state = 7}, + [1359] = {.lex_state = 6}, + [1360] = {.lex_state = 6}, + [1361] = {.lex_state = 9}, + [1362] = {.lex_state = 6}, + [1363] = {.lex_state = 6}, + [1364] = {.lex_state = 9}, + [1365] = {.lex_state = 6}, + [1366] = {.lex_state = 9}, + [1367] = {.lex_state = 6}, + [1368] = {.lex_state = 6}, + [1369] = {.lex_state = 6}, + [1370] = {.lex_state = 6}, + [1371] = {.lex_state = 6}, + [1372] = {.lex_state = 6}, + [1373] = {.lex_state = 6}, + [1374] = {.lex_state = 6}, + [1375] = {.lex_state = 6}, + [1376] = {.lex_state = 6}, + [1377] = {.lex_state = 6}, + [1378] = {.lex_state = 6}, + [1379] = {.lex_state = 6}, + [1380] = {.lex_state = 6}, + [1381] = {.lex_state = 6}, + [1382] = {.lex_state = 6}, + [1383] = {.lex_state = 6}, + [1384] = {.lex_state = 12}, + [1385] = {.lex_state = 12}, + [1386] = {.lex_state = 12}, + [1387] = {.lex_state = 8}, + [1388] = {.lex_state = 8}, + [1389] = {.lex_state = 7}, + [1390] = {.lex_state = 7}, + [1391] = {.lex_state = 7}, + [1392] = {.lex_state = 7}, + [1393] = {.lex_state = 12}, + [1394] = {.lex_state = 7}, + [1395] = {.lex_state = 7}, + [1396] = {.lex_state = 12}, + [1397] = {.lex_state = 12}, + [1398] = {.lex_state = 12}, + [1399] = {.lex_state = 12}, + [1400] = {.lex_state = 12}, + [1401] = {.lex_state = 12}, + [1402] = {.lex_state = 12}, + [1403] = {.lex_state = 12}, + [1404] = {.lex_state = 12}, + [1405] = {.lex_state = 12}, + [1406] = {.lex_state = 12}, + [1407] = {.lex_state = 12}, + [1408] = {.lex_state = 12}, + [1409] = {.lex_state = 12}, + [1410] = {.lex_state = 12}, + [1411] = {.lex_state = 12}, + [1412] = {.lex_state = 12}, + [1413] = {.lex_state = 12}, + [1414] = {.lex_state = 12}, + [1415] = {.lex_state = 12}, + [1416] = {.lex_state = 12}, + [1417] = {.lex_state = 12}, + [1418] = {.lex_state = 12}, + [1419] = {.lex_state = 12}, + [1420] = {.lex_state = 12}, + [1421] = {.lex_state = 12}, + [1422] = {.lex_state = 12}, + [1423] = {.lex_state = 12}, + [1424] = {.lex_state = 12}, + [1425] = {.lex_state = 12}, + [1426] = {.lex_state = 12}, + [1427] = {.lex_state = 12}, + [1428] = {.lex_state = 12}, + [1429] = {.lex_state = 12}, + [1430] = {.lex_state = 12}, + [1431] = {.lex_state = 12}, + [1432] = {.lex_state = 12}, + [1433] = {.lex_state = 12}, + [1434] = {.lex_state = 12}, + [1435] = {.lex_state = 12}, + [1436] = {.lex_state = 12}, + [1437] = {.lex_state = 12}, + [1438] = {.lex_state = 12}, + [1439] = {.lex_state = 12}, + [1440] = {.lex_state = 12}, + [1441] = {.lex_state = 12}, + [1442] = {.lex_state = 12}, + [1443] = {.lex_state = 12}, + [1444] = {.lex_state = 12}, + [1445] = {.lex_state = 12}, + [1446] = {.lex_state = 12}, + [1447] = {.lex_state = 12}, + [1448] = {.lex_state = 12}, + [1449] = {.lex_state = 12}, + [1450] = {.lex_state = 12}, + [1451] = {.lex_state = 12}, + [1452] = {.lex_state = 12}, + [1453] = {.lex_state = 12}, + [1454] = {.lex_state = 12}, + [1455] = {.lex_state = 12}, + [1456] = {.lex_state = 12}, + [1457] = {.lex_state = 12}, + [1458] = {.lex_state = 12}, + [1459] = {.lex_state = 12}, + [1460] = {.lex_state = 12}, + [1461] = {.lex_state = 12}, + [1462] = {.lex_state = 12}, + [1463] = {.lex_state = 12}, + [1464] = {.lex_state = 12}, + [1465] = {.lex_state = 12}, + [1466] = {.lex_state = 12}, + [1467] = {.lex_state = 12}, + [1468] = {.lex_state = 12}, + [1469] = {.lex_state = 12}, + [1470] = {.lex_state = 12}, + [1471] = {.lex_state = 12}, + [1472] = {.lex_state = 12}, + [1473] = {.lex_state = 12}, + [1474] = {.lex_state = 12}, + [1475] = {.lex_state = 12}, + [1476] = {.lex_state = 12}, + [1477] = {.lex_state = 12}, + [1478] = {.lex_state = 12}, + [1479] = {.lex_state = 12}, + [1480] = {.lex_state = 10}, + [1481] = {.lex_state = 12}, + [1482] = {.lex_state = 12}, + [1483] = {.lex_state = 10}, + [1484] = {.lex_state = 12}, + [1485] = {.lex_state = 12}, + [1486] = {.lex_state = 12}, + [1487] = {.lex_state = 12}, + [1488] = {.lex_state = 10}, + [1489] = {.lex_state = 12}, + [1490] = {.lex_state = 12}, + [1491] = {.lex_state = 12}, + [1492] = {.lex_state = 12}, + [1493] = {.lex_state = 12}, + [1494] = {.lex_state = 12}, + [1495] = {.lex_state = 12}, + [1496] = {.lex_state = 12}, + [1497] = {.lex_state = 12}, + [1498] = {.lex_state = 12}, + [1499] = {.lex_state = 12}, + [1500] = {.lex_state = 12}, + [1501] = {.lex_state = 12}, + [1502] = {.lex_state = 12}, + [1503] = {.lex_state = 12}, + [1504] = {.lex_state = 12}, + [1505] = {.lex_state = 12}, + [1506] = {.lex_state = 12}, + [1507] = {.lex_state = 12}, + [1508] = {.lex_state = 12}, + [1509] = {.lex_state = 7}, + [1510] = {.lex_state = 7}, + [1511] = {.lex_state = 9}, + [1512] = {.lex_state = 7}, + [1513] = {.lex_state = 9}, + [1514] = {.lex_state = 8}, + [1515] = {.lex_state = 8}, + [1516] = {.lex_state = 8}, + [1517] = {.lex_state = 8}, + [1518] = {.lex_state = 8}, + [1519] = {.lex_state = 8}, + [1520] = {.lex_state = 7}, + [1521] = {.lex_state = 7}, + [1522] = {.lex_state = 7}, + [1523] = {.lex_state = 7}, + [1524] = {.lex_state = 7}, + [1525] = {.lex_state = 7}, + [1526] = {.lex_state = 7}, + [1527] = {.lex_state = 7}, + [1528] = {.lex_state = 7}, + [1529] = {.lex_state = 7}, + [1530] = {.lex_state = 7}, + [1531] = {.lex_state = 7}, + [1532] = {.lex_state = 7}, + [1533] = {.lex_state = 7}, + [1534] = {.lex_state = 7}, + [1535] = {.lex_state = 7}, + [1536] = {.lex_state = 7}, + [1537] = {.lex_state = 7}, + [1538] = {.lex_state = 7}, + [1539] = {.lex_state = 7}, + [1540] = {.lex_state = 7}, + [1541] = {.lex_state = 7}, + [1542] = {.lex_state = 7}, + [1543] = {.lex_state = 7}, + [1544] = {.lex_state = 7}, + [1545] = {.lex_state = 7}, + [1546] = {.lex_state = 7}, + [1547] = {.lex_state = 7}, + [1548] = {.lex_state = 7}, + [1549] = {.lex_state = 7}, + [1550] = {.lex_state = 7}, + [1551] = {.lex_state = 7}, + [1552] = {.lex_state = 7}, + [1553] = {.lex_state = 7}, + [1554] = {.lex_state = 7}, + [1555] = {.lex_state = 7}, + [1556] = {.lex_state = 7}, + [1557] = {.lex_state = 7}, + [1558] = {.lex_state = 7}, + [1559] = {.lex_state = 7}, + [1560] = {.lex_state = 7}, + [1561] = {.lex_state = 7}, + [1562] = {.lex_state = 7}, + [1563] = {.lex_state = 7}, + [1564] = {.lex_state = 7}, + [1565] = {.lex_state = 7}, + [1566] = {.lex_state = 7}, + [1567] = {.lex_state = 7}, + [1568] = {.lex_state = 7}, + [1569] = {.lex_state = 7}, + [1570] = {.lex_state = 7}, + [1571] = {.lex_state = 7}, + [1572] = {.lex_state = 7}, + [1573] = {.lex_state = 7}, + [1574] = {.lex_state = 7}, + [1575] = {.lex_state = 7}, + [1576] = {.lex_state = 7}, + [1577] = {.lex_state = 7}, + [1578] = {.lex_state = 7}, + [1579] = {.lex_state = 7}, + [1580] = {.lex_state = 7}, + [1581] = {.lex_state = 7}, + [1582] = {.lex_state = 7}, + [1583] = {.lex_state = 7}, + [1584] = {.lex_state = 7}, + [1585] = {.lex_state = 7}, + [1586] = {.lex_state = 7}, + [1587] = {.lex_state = 7}, + [1588] = {.lex_state = 7}, + [1589] = {.lex_state = 7}, + [1590] = {.lex_state = 7}, + [1591] = {.lex_state = 7}, + [1592] = {.lex_state = 7}, + [1593] = {.lex_state = 7}, + [1594] = {.lex_state = 7}, + [1595] = {.lex_state = 7}, + [1596] = {.lex_state = 7}, + [1597] = {.lex_state = 7}, + [1598] = {.lex_state = 7}, + [1599] = {.lex_state = 7}, + [1600] = {.lex_state = 7}, + [1601] = {.lex_state = 7}, + [1602] = {.lex_state = 7}, + [1603] = {.lex_state = 7}, + [1604] = {.lex_state = 7}, + [1605] = {.lex_state = 7}, + [1606] = {.lex_state = 7}, + [1607] = {.lex_state = 7}, + [1608] = {.lex_state = 7}, + [1609] = {.lex_state = 7}, + [1610] = {.lex_state = 7}, + [1611] = {.lex_state = 7}, + [1612] = {.lex_state = 7}, + [1613] = {.lex_state = 7}, + [1614] = {.lex_state = 7}, + [1615] = {.lex_state = 7}, + [1616] = {.lex_state = 7}, + [1617] = {.lex_state = 7}, + [1618] = {.lex_state = 7}, + [1619] = {.lex_state = 7}, + [1620] = {.lex_state = 7}, + [1621] = {.lex_state = 7}, + [1622] = {.lex_state = 7}, + [1623] = {.lex_state = 7}, + [1624] = {.lex_state = 7}, + [1625] = {.lex_state = 7}, + [1626] = {.lex_state = 7}, + [1627] = {.lex_state = 7}, + [1628] = {.lex_state = 7}, + [1629] = {.lex_state = 7}, + [1630] = {.lex_state = 7}, + [1631] = {.lex_state = 8}, + [1632] = {.lex_state = 8}, + [1633] = {.lex_state = 9}, + [1634] = {.lex_state = 9}, + [1635] = {.lex_state = 9}, + [1636] = {.lex_state = 9}, + [1637] = {.lex_state = 8}, + [1638] = {.lex_state = 9}, + [1639] = {.lex_state = 10}, + [1640] = {.lex_state = 8}, + [1641] = {.lex_state = 8}, + [1642] = {.lex_state = 8}, + [1643] = {.lex_state = 8}, + [1644] = {.lex_state = 8}, + [1645] = {.lex_state = 8}, + [1646] = {.lex_state = 8}, + [1647] = {.lex_state = 8}, + [1648] = {.lex_state = 8}, + [1649] = {.lex_state = 8}, + [1650] = {.lex_state = 8}, + [1651] = {.lex_state = 8}, + [1652] = {.lex_state = 8}, + [1653] = {.lex_state = 8}, + [1654] = {.lex_state = 8}, + [1655] = {.lex_state = 8}, + [1656] = {.lex_state = 8}, + [1657] = {.lex_state = 8}, + [1658] = {.lex_state = 8}, + [1659] = {.lex_state = 8}, + [1660] = {.lex_state = 8}, + [1661] = {.lex_state = 8}, + [1662] = {.lex_state = 8}, + [1663] = {.lex_state = 8}, + [1664] = {.lex_state = 8}, + [1665] = {.lex_state = 8}, + [1666] = {.lex_state = 8}, + [1667] = {.lex_state = 8}, + [1668] = {.lex_state = 8}, + [1669] = {.lex_state = 8}, + [1670] = {.lex_state = 8}, + [1671] = {.lex_state = 8}, + [1672] = {.lex_state = 8}, + [1673] = {.lex_state = 8}, + [1674] = {.lex_state = 8}, + [1675] = {.lex_state = 8}, + [1676] = {.lex_state = 8}, + [1677] = {.lex_state = 8}, + [1678] = {.lex_state = 8}, + [1679] = {.lex_state = 8}, + [1680] = {.lex_state = 8}, + [1681] = {.lex_state = 8}, + [1682] = {.lex_state = 8}, + [1683] = {.lex_state = 8}, + [1684] = {.lex_state = 8}, + [1685] = {.lex_state = 8}, + [1686] = {.lex_state = 8}, + [1687] = {.lex_state = 8}, + [1688] = {.lex_state = 8}, + [1689] = {.lex_state = 8}, + [1690] = {.lex_state = 8}, + [1691] = {.lex_state = 8}, + [1692] = {.lex_state = 8}, + [1693] = {.lex_state = 8}, + [1694] = {.lex_state = 8}, + [1695] = {.lex_state = 8}, + [1696] = {.lex_state = 8}, + [1697] = {.lex_state = 8}, + [1698] = {.lex_state = 8}, + [1699] = {.lex_state = 8}, + [1700] = {.lex_state = 8}, + [1701] = {.lex_state = 8}, + [1702] = {.lex_state = 8}, + [1703] = {.lex_state = 8}, + [1704] = {.lex_state = 8}, + [1705] = {.lex_state = 8}, + [1706] = {.lex_state = 8}, + [1707] = {.lex_state = 8}, + [1708] = {.lex_state = 8}, + [1709] = {.lex_state = 8}, + [1710] = {.lex_state = 8}, + [1711] = {.lex_state = 8}, + [1712] = {.lex_state = 8}, + [1713] = {.lex_state = 8}, + [1714] = {.lex_state = 8}, + [1715] = {.lex_state = 8}, + [1716] = {.lex_state = 8}, + [1717] = {.lex_state = 8}, + [1718] = {.lex_state = 8}, + [1719] = {.lex_state = 8}, + [1720] = {.lex_state = 8}, + [1721] = {.lex_state = 8}, + [1722] = {.lex_state = 8}, + [1723] = {.lex_state = 9}, + [1724] = {.lex_state = 8}, + [1725] = {.lex_state = 8}, + [1726] = {.lex_state = 8}, + [1727] = {.lex_state = 8}, + [1728] = {.lex_state = 8}, + [1729] = {.lex_state = 8}, + [1730] = {.lex_state = 8}, + [1731] = {.lex_state = 8}, + [1732] = {.lex_state = 8}, + [1733] = {.lex_state = 8}, + [1734] = {.lex_state = 8}, + [1735] = {.lex_state = 8}, + [1736] = {.lex_state = 8}, + [1737] = {.lex_state = 8}, + [1738] = {.lex_state = 8}, + [1739] = {.lex_state = 8}, + [1740] = {.lex_state = 8}, + [1741] = {.lex_state = 8}, + [1742] = {.lex_state = 8}, + [1743] = {.lex_state = 8}, + [1744] = {.lex_state = 8}, + [1745] = {.lex_state = 8}, + [1746] = {.lex_state = 8}, + [1747] = {.lex_state = 8}, + [1748] = {.lex_state = 8}, + [1749] = {.lex_state = 8}, + [1750] = {.lex_state = 8}, + [1751] = {.lex_state = 8}, + [1752] = {.lex_state = 10}, + [1753] = {.lex_state = 9}, + [1754] = {.lex_state = 9}, + [1755] = {.lex_state = 9}, + [1756] = {.lex_state = 9}, + [1757] = {.lex_state = 9}, + [1758] = {.lex_state = 10}, + [1759] = {.lex_state = 9}, + [1760] = {.lex_state = 9}, + [1761] = {.lex_state = 9}, + [1762] = {.lex_state = 9}, + [1763] = {.lex_state = 9}, + [1764] = {.lex_state = 10}, + [1765] = {.lex_state = 9}, + [1766] = {.lex_state = 9}, + [1767] = {.lex_state = 9}, + [1768] = {.lex_state = 9}, + [1769] = {.lex_state = 9}, + [1770] = {.lex_state = 9}, + [1771] = {.lex_state = 9}, + [1772] = {.lex_state = 10}, + [1773] = {.lex_state = 9}, + [1774] = {.lex_state = 9}, + [1775] = {.lex_state = 9}, + [1776] = {.lex_state = 9}, + [1777] = {.lex_state = 9}, + [1778] = {.lex_state = 9}, + [1779] = {.lex_state = 9}, + [1780] = {.lex_state = 9}, + [1781] = {.lex_state = 9}, + [1782] = {.lex_state = 9}, + [1783] = {.lex_state = 9}, + [1784] = {.lex_state = 10}, + [1785] = {.lex_state = 9}, + [1786] = {.lex_state = 9}, + [1787] = {.lex_state = 9}, + [1788] = {.lex_state = 9}, + [1789] = {.lex_state = 9}, + [1790] = {.lex_state = 9}, + [1791] = {.lex_state = 9}, + [1792] = {.lex_state = 9}, + [1793] = {.lex_state = 9}, + [1794] = {.lex_state = 9}, + [1795] = {.lex_state = 9}, + [1796] = {.lex_state = 9}, + [1797] = {.lex_state = 9}, + [1798] = {.lex_state = 9}, + [1799] = {.lex_state = 9}, + [1800] = {.lex_state = 9}, + [1801] = {.lex_state = 9}, + [1802] = {.lex_state = 9}, + [1803] = {.lex_state = 9}, + [1804] = {.lex_state = 9}, + [1805] = {.lex_state = 9}, + [1806] = {.lex_state = 9}, + [1807] = {.lex_state = 9}, + [1808] = {.lex_state = 9}, + [1809] = {.lex_state = 9}, + [1810] = {.lex_state = 9}, + [1811] = {.lex_state = 9}, + [1812] = {.lex_state = 9}, + [1813] = {.lex_state = 9}, + [1814] = {.lex_state = 9}, + [1815] = {.lex_state = 9}, + [1816] = {.lex_state = 9}, + [1817] = {.lex_state = 9}, + [1818] = {.lex_state = 9}, + [1819] = {.lex_state = 9}, + [1820] = {.lex_state = 9}, + [1821] = {.lex_state = 10}, + [1822] = {.lex_state = 9}, + [1823] = {.lex_state = 9}, + [1824] = {.lex_state = 9}, + [1825] = {.lex_state = 9}, + [1826] = {.lex_state = 9}, + [1827] = {.lex_state = 9}, + [1828] = {.lex_state = 9}, + [1829] = {.lex_state = 9}, + [1830] = {.lex_state = 9}, + [1831] = {.lex_state = 9}, + [1832] = {.lex_state = 9}, + [1833] = {.lex_state = 9}, + [1834] = {.lex_state = 9}, + [1835] = {.lex_state = 9}, + [1836] = {.lex_state = 9}, + [1837] = {.lex_state = 9}, + [1838] = {.lex_state = 9}, + [1839] = {.lex_state = 9}, + [1840] = {.lex_state = 9}, + [1841] = {.lex_state = 9}, + [1842] = {.lex_state = 9}, + [1843] = {.lex_state = 9}, + [1844] = {.lex_state = 9}, + [1845] = {.lex_state = 9}, + [1846] = {.lex_state = 9}, + [1847] = {.lex_state = 9}, + [1848] = {.lex_state = 9}, + [1849] = {.lex_state = 9}, + [1850] = {.lex_state = 9}, + [1851] = {.lex_state = 9}, + [1852] = {.lex_state = 9}, + [1853] = {.lex_state = 9}, + [1854] = {.lex_state = 9}, + [1855] = {.lex_state = 9}, + [1856] = {.lex_state = 9}, + [1857] = {.lex_state = 9}, + [1858] = {.lex_state = 9}, + [1859] = {.lex_state = 9}, + [1860] = {.lex_state = 9}, + [1861] = {.lex_state = 9}, + [1862] = {.lex_state = 9}, + [1863] = {.lex_state = 9}, + [1864] = {.lex_state = 9}, + [1865] = {.lex_state = 9}, + [1866] = {.lex_state = 9}, + [1867] = {.lex_state = 9}, + [1868] = {.lex_state = 9}, + [1869] = {.lex_state = 9}, + [1870] = {.lex_state = 9}, + [1871] = {.lex_state = 9}, + [1872] = {.lex_state = 10}, + [1873] = {.lex_state = 10}, + [1874] = {.lex_state = 10}, + [1875] = {.lex_state = 10}, + [1876] = {.lex_state = 10}, + [1877] = {.lex_state = 10}, + [1878] = {.lex_state = 10}, + [1879] = {.lex_state = 10}, + [1880] = {.lex_state = 10}, + [1881] = {.lex_state = 10}, + [1882] = {.lex_state = 10}, + [1883] = {.lex_state = 10}, + [1884] = {.lex_state = 10}, + [1885] = {.lex_state = 10}, + [1886] = {.lex_state = 10}, + [1887] = {.lex_state = 10}, + [1888] = {.lex_state = 10}, + [1889] = {.lex_state = 10}, + [1890] = {.lex_state = 10}, + [1891] = {.lex_state = 10}, + [1892] = {.lex_state = 10}, + [1893] = {.lex_state = 10}, + [1894] = {.lex_state = 10}, + [1895] = {.lex_state = 10}, + [1896] = {.lex_state = 10}, + [1897] = {.lex_state = 10}, + [1898] = {.lex_state = 10}, + [1899] = {.lex_state = 10}, + [1900] = {.lex_state = 10}, + [1901] = {.lex_state = 10}, + [1902] = {.lex_state = 10}, + [1903] = {.lex_state = 10}, + [1904] = {.lex_state = 10}, + [1905] = {.lex_state = 10}, + [1906] = {.lex_state = 10}, + [1907] = {.lex_state = 10}, + [1908] = {.lex_state = 10}, + [1909] = {.lex_state = 10}, + [1910] = {.lex_state = 10}, + [1911] = {.lex_state = 10}, + [1912] = {.lex_state = 10}, + [1913] = {.lex_state = 10}, + [1914] = {.lex_state = 10}, + [1915] = {.lex_state = 10}, + [1916] = {.lex_state = 10}, + [1917] = {.lex_state = 10}, + [1918] = {.lex_state = 10}, + [1919] = {.lex_state = 10}, + [1920] = {.lex_state = 10}, + [1921] = {.lex_state = 10}, + [1922] = {.lex_state = 10}, + [1923] = {.lex_state = 10}, + [1924] = {.lex_state = 10}, + [1925] = {.lex_state = 10}, + [1926] = {.lex_state = 10}, + [1927] = {.lex_state = 10}, + [1928] = {.lex_state = 10}, + [1929] = {.lex_state = 10}, + [1930] = {.lex_state = 10}, + [1931] = {.lex_state = 10}, + [1932] = {.lex_state = 10}, + [1933] = {.lex_state = 10}, + [1934] = {.lex_state = 10}, + [1935] = {.lex_state = 10}, + [1936] = {.lex_state = 10}, + [1937] = {.lex_state = 10}, + [1938] = {.lex_state = 10}, + [1939] = {.lex_state = 10}, + [1940] = {.lex_state = 10}, + [1941] = {.lex_state = 10}, + [1942] = {.lex_state = 10}, + [1943] = {.lex_state = 10}, + [1944] = {.lex_state = 10}, + [1945] = {.lex_state = 10}, + [1946] = {.lex_state = 10}, + [1947] = {.lex_state = 10}, + [1948] = {.lex_state = 10}, + [1949] = {.lex_state = 10}, + [1950] = {.lex_state = 10}, + [1951] = {.lex_state = 10}, + [1952] = {.lex_state = 10}, + [1953] = {.lex_state = 10}, + [1954] = {.lex_state = 10}, + [1955] = {.lex_state = 10}, + [1956] = {.lex_state = 10}, + [1957] = {.lex_state = 10}, + [1958] = {.lex_state = 10}, + [1959] = {.lex_state = 10}, + [1960] = {.lex_state = 10}, + [1961] = {.lex_state = 10}, + [1962] = {.lex_state = 10}, + [1963] = {.lex_state = 10}, + [1964] = {.lex_state = 10}, + [1965] = {.lex_state = 10}, + [1966] = {.lex_state = 10}, + [1967] = {.lex_state = 10}, + [1968] = {.lex_state = 10}, + [1969] = {.lex_state = 10}, + [1970] = {.lex_state = 10}, + [1971] = {.lex_state = 10}, + [1972] = {.lex_state = 10}, + [1973] = {.lex_state = 10}, + [1974] = {.lex_state = 10}, + [1975] = {.lex_state = 10}, + [1976] = {.lex_state = 10}, + [1977] = {.lex_state = 10}, + [1978] = {.lex_state = 10}, + [1979] = {.lex_state = 10}, + [1980] = {.lex_state = 10}, + [1981] = {.lex_state = 10}, + [1982] = {.lex_state = 10}, + [1983] = {.lex_state = 10}, + [1984] = {.lex_state = 10}, + [1985] = {.lex_state = 10}, + [1986] = {.lex_state = 10}, + [1987] = {.lex_state = 15}, + [1988] = {.lex_state = 15}, + [1989] = {.lex_state = 15}, + [1990] = {.lex_state = 15}, + [1991] = {.lex_state = 15}, + [1992] = {.lex_state = 15}, + [1993] = {.lex_state = 15}, + [1994] = {.lex_state = 15}, + [1995] = {.lex_state = 15}, + [1996] = {.lex_state = 15}, + [1997] = {.lex_state = 15}, + [1998] = {.lex_state = 15}, + [1999] = {.lex_state = 15}, + [2000] = {.lex_state = 15}, + [2001] = {.lex_state = 15}, + [2002] = {.lex_state = 0}, + [2003] = {.lex_state = 0}, + [2004] = {.lex_state = 15}, + [2005] = {.lex_state = 0}, + [2006] = {.lex_state = 15}, + [2007] = {.lex_state = 15}, + [2008] = {.lex_state = 0}, + [2009] = {.lex_state = 0}, + [2010] = {.lex_state = 0}, + [2011] = {.lex_state = 15}, + [2012] = {.lex_state = 0}, + [2013] = {.lex_state = 15}, + [2014] = {.lex_state = 15}, + [2015] = {.lex_state = 0}, + [2016] = {.lex_state = 0}, + [2017] = {.lex_state = 15}, + [2018] = {.lex_state = 15}, + [2019] = {.lex_state = 0}, + [2020] = {.lex_state = 0}, + [2021] = {.lex_state = 15}, + [2022] = {.lex_state = 15}, + [2023] = {.lex_state = 0}, + [2024] = {.lex_state = 15}, + [2025] = {.lex_state = 0}, + [2026] = {.lex_state = 15}, + [2027] = {.lex_state = 0}, + [2028] = {.lex_state = 0}, + [2029] = {.lex_state = 0}, + [2030] = {.lex_state = 0}, + [2031] = {.lex_state = 0}, + [2032] = {.lex_state = 0}, + [2033] = {.lex_state = 0}, + [2034] = {.lex_state = 0}, + [2035] = {.lex_state = 0}, + [2036] = {.lex_state = 0}, + [2037] = {.lex_state = 0}, + [2038] = {.lex_state = 0}, + [2039] = {.lex_state = 0}, + [2040] = {.lex_state = 0}, + [2041] = {.lex_state = 0}, + [2042] = {.lex_state = 0}, + [2043] = {.lex_state = 0}, + [2044] = {.lex_state = 0}, + [2045] = {.lex_state = 0}, + [2046] = {.lex_state = 0}, + [2047] = {.lex_state = 0}, + [2048] = {.lex_state = 0}, + [2049] = {.lex_state = 0}, + [2050] = {.lex_state = 0}, + [2051] = {.lex_state = 0}, + [2052] = {.lex_state = 0}, + [2053] = {.lex_state = 0}, + [2054] = {.lex_state = 0}, + [2055] = {.lex_state = 0}, + [2056] = {.lex_state = 0}, + [2057] = {.lex_state = 0}, + [2058] = {.lex_state = 0}, + [2059] = {.lex_state = 0}, + [2060] = {.lex_state = 0}, + [2061] = {.lex_state = 0}, + [2062] = {.lex_state = 0}, + [2063] = {.lex_state = 0}, + [2064] = {.lex_state = 0}, + [2065] = {.lex_state = 0}, + [2066] = {.lex_state = 0}, + [2067] = {.lex_state = 0}, + [2068] = {.lex_state = 0}, + [2069] = {.lex_state = 0}, + [2070] = {.lex_state = 0}, + [2071] = {.lex_state = 0}, + [2072] = {.lex_state = 0}, + [2073] = {.lex_state = 0}, + [2074] = {.lex_state = 0}, + [2075] = {.lex_state = 0}, + [2076] = {.lex_state = 0}, + [2077] = {.lex_state = 0}, + [2078] = {.lex_state = 0}, + [2079] = {.lex_state = 0}, + [2080] = {.lex_state = 0}, + [2081] = {.lex_state = 0}, + [2082] = {.lex_state = 0}, + [2083] = {.lex_state = 0}, + [2084] = {.lex_state = 0}, + [2085] = {.lex_state = 0}, + [2086] = {.lex_state = 0}, + [2087] = {.lex_state = 0}, + [2088] = {.lex_state = 0}, + [2089] = {.lex_state = 0}, + [2090] = {.lex_state = 0}, + [2091] = {.lex_state = 0}, + [2092] = {.lex_state = 0}, + [2093] = {.lex_state = 0}, + [2094] = {.lex_state = 0}, + [2095] = {.lex_state = 0}, + [2096] = {.lex_state = 0}, + [2097] = {.lex_state = 0}, + [2098] = {.lex_state = 0}, + [2099] = {.lex_state = 0}, + [2100] = {.lex_state = 0}, + [2101] = {.lex_state = 0}, + [2102] = {.lex_state = 0}, + [2103] = {.lex_state = 0}, + [2104] = {.lex_state = 0}, + [2105] = {.lex_state = 0}, + [2106] = {.lex_state = 0}, + [2107] = {.lex_state = 0}, + [2108] = {.lex_state = 0}, + [2109] = {.lex_state = 0}, + [2110] = {.lex_state = 0}, + [2111] = {.lex_state = 0}, + [2112] = {.lex_state = 0}, + [2113] = {.lex_state = 0}, + [2114] = {.lex_state = 0}, + [2115] = {.lex_state = 0}, + [2116] = {.lex_state = 0}, + [2117] = {.lex_state = 0}, + [2118] = {.lex_state = 0}, + [2119] = {.lex_state = 0}, + [2120] = {.lex_state = 0}, + [2121] = {.lex_state = 0}, + [2122] = {.lex_state = 0}, + [2123] = {.lex_state = 0}, + [2124] = {.lex_state = 0}, + [2125] = {.lex_state = 0}, + [2126] = {.lex_state = 0}, + [2127] = {.lex_state = 0}, + [2128] = {.lex_state = 0}, + [2129] = {.lex_state = 0}, + [2130] = {.lex_state = 0}, + [2131] = {.lex_state = 0}, + [2132] = {.lex_state = 0}, + [2133] = {.lex_state = 0}, + [2134] = {.lex_state = 0}, + [2135] = {.lex_state = 0}, + [2136] = {.lex_state = 0}, + [2137] = {.lex_state = 0}, + [2138] = {.lex_state = 0}, + [2139] = {.lex_state = 0}, + [2140] = {.lex_state = 0}, + [2141] = {.lex_state = 0}, + [2142] = {.lex_state = 0}, + [2143] = {.lex_state = 0}, + [2144] = {.lex_state = 0}, + [2145] = {.lex_state = 0}, + [2146] = {.lex_state = 0}, + [2147] = {.lex_state = 0}, + [2148] = {.lex_state = 0}, + [2149] = {.lex_state = 0}, + [2150] = {.lex_state = 0}, + [2151] = {.lex_state = 0}, + [2152] = {.lex_state = 0}, + [2153] = {.lex_state = 0}, + [2154] = {.lex_state = 0}, + [2155] = {.lex_state = 0}, + [2156] = {.lex_state = 0}, + [2157] = {.lex_state = 0}, + [2158] = {.lex_state = 0}, + [2159] = {.lex_state = 0}, + [2160] = {.lex_state = 0}, + [2161] = {.lex_state = 0}, + [2162] = {.lex_state = 0}, + [2163] = {.lex_state = 0}, + [2164] = {.lex_state = 0}, + [2165] = {.lex_state = 0}, + [2166] = {.lex_state = 0}, + [2167] = {.lex_state = 0}, + [2168] = {.lex_state = 0}, + [2169] = {.lex_state = 0}, + [2170] = {.lex_state = 0}, + [2171] = {.lex_state = 0}, + [2172] = {.lex_state = 0}, + [2173] = {.lex_state = 0}, + [2174] = {.lex_state = 0}, + [2175] = {.lex_state = 0}, + [2176] = {.lex_state = 0}, + [2177] = {.lex_state = 0}, + [2178] = {.lex_state = 0}, + [2179] = {.lex_state = 0}, + [2180] = {.lex_state = 0}, + [2181] = {.lex_state = 0}, + [2182] = {.lex_state = 0}, + [2183] = {.lex_state = 0}, + [2184] = {.lex_state = 0}, + [2185] = {.lex_state = 0}, + [2186] = {.lex_state = 0}, + [2187] = {.lex_state = 0}, + [2188] = {.lex_state = 0}, + [2189] = {.lex_state = 0}, + [2190] = {.lex_state = 0}, + [2191] = {.lex_state = 0}, + [2192] = {.lex_state = 0}, + [2193] = {.lex_state = 0}, + [2194] = {.lex_state = 0}, + [2195] = {.lex_state = 0}, + [2196] = {.lex_state = 0}, + [2197] = {.lex_state = 0}, + [2198] = {.lex_state = 0}, + [2199] = {.lex_state = 0}, + [2200] = {.lex_state = 0}, + [2201] = {.lex_state = 0}, + [2202] = {.lex_state = 0}, + [2203] = {.lex_state = 0}, + [2204] = {.lex_state = 0}, + [2205] = {.lex_state = 0}, + [2206] = {.lex_state = 0}, + [2207] = {.lex_state = 0}, + [2208] = {.lex_state = 0}, + [2209] = {.lex_state = 0}, + [2210] = {.lex_state = 0}, + [2211] = {.lex_state = 0}, + [2212] = {.lex_state = 0}, + [2213] = {.lex_state = 0}, + [2214] = {.lex_state = 0}, + [2215] = {.lex_state = 0}, + [2216] = {.lex_state = 0}, + [2217] = {.lex_state = 0}, + [2218] = {.lex_state = 0}, + [2219] = {.lex_state = 0}, + [2220] = {.lex_state = 0}, + [2221] = {.lex_state = 0}, + [2222] = {.lex_state = 0}, + [2223] = {.lex_state = 0}, + [2224] = {.lex_state = 0}, + [2225] = {.lex_state = 0}, + [2226] = {.lex_state = 0}, + [2227] = {.lex_state = 0}, + [2228] = {.lex_state = 0}, + [2229] = {.lex_state = 0}, + [2230] = {.lex_state = 0}, + [2231] = {.lex_state = 0}, + [2232] = {.lex_state = 0}, + [2233] = {.lex_state = 0}, + [2234] = {.lex_state = 0}, + [2235] = {.lex_state = 0}, + [2236] = {.lex_state = 0}, + [2237] = {.lex_state = 0}, + [2238] = {.lex_state = 0}, + [2239] = {.lex_state = 0}, + [2240] = {.lex_state = 0}, + [2241] = {.lex_state = 0}, + [2242] = {.lex_state = 0}, + [2243] = {.lex_state = 0}, + [2244] = {.lex_state = 0}, + [2245] = {.lex_state = 0}, + [2246] = {.lex_state = 0}, + [2247] = {.lex_state = 0}, + [2248] = {.lex_state = 0}, + [2249] = {.lex_state = 0}, + [2250] = {.lex_state = 0}, + [2251] = {.lex_state = 0}, + [2252] = {.lex_state = 0}, + [2253] = {.lex_state = 0}, + [2254] = {.lex_state = 0}, + [2255] = {.lex_state = 0}, + [2256] = {.lex_state = 0}, + [2257] = {.lex_state = 0}, + [2258] = {.lex_state = 0}, + [2259] = {.lex_state = 0}, + [2260] = {.lex_state = 0}, + [2261] = {.lex_state = 0}, + [2262] = {.lex_state = 0}, + [2263] = {.lex_state = 0}, + [2264] = {.lex_state = 0}, + [2265] = {.lex_state = 0}, + [2266] = {.lex_state = 0}, + [2267] = {.lex_state = 0}, + [2268] = {.lex_state = 0}, + [2269] = {.lex_state = 0}, + [2270] = {.lex_state = 0}, + [2271] = {.lex_state = 0}, + [2272] = {.lex_state = 0}, + [2273] = {.lex_state = 0}, + [2274] = {.lex_state = 0}, + [2275] = {.lex_state = 0}, + [2276] = {.lex_state = 0}, + [2277] = {.lex_state = 0}, + [2278] = {.lex_state = 0}, + [2279] = {.lex_state = 0}, + [2280] = {.lex_state = 0}, + [2281] = {.lex_state = 0}, + [2282] = {.lex_state = 0}, + [2283] = {.lex_state = 0}, + [2284] = {.lex_state = 0}, + [2285] = {.lex_state = 0}, + [2286] = {.lex_state = 0}, + [2287] = {.lex_state = 0}, + [2288] = {.lex_state = 0}, + [2289] = {.lex_state = 0}, + [2290] = {.lex_state = 0}, + [2291] = {.lex_state = 0}, + [2292] = {.lex_state = 0}, + [2293] = {.lex_state = 0}, + [2294] = {.lex_state = 0}, + [2295] = {.lex_state = 0}, + [2296] = {.lex_state = 0}, + [2297] = {.lex_state = 0}, + [2298] = {.lex_state = 0}, + [2299] = {.lex_state = 0}, + [2300] = {.lex_state = 0}, + [2301] = {.lex_state = 0}, + [2302] = {.lex_state = 0}, + [2303] = {.lex_state = 0}, + [2304] = {.lex_state = 0}, + [2305] = {.lex_state = 0}, + [2306] = {.lex_state = 0}, + [2307] = {.lex_state = 0}, + [2308] = {.lex_state = 0}, + [2309] = {.lex_state = 0}, + [2310] = {.lex_state = 0}, + [2311] = {.lex_state = 0}, + [2312] = {.lex_state = 0}, + [2313] = {.lex_state = 0}, + [2314] = {.lex_state = 0}, + [2315] = {.lex_state = 0}, + [2316] = {.lex_state = 0}, + [2317] = {.lex_state = 0}, + [2318] = {.lex_state = 0}, + [2319] = {.lex_state = 0}, + [2320] = {.lex_state = 0}, + [2321] = {.lex_state = 0}, + [2322] = {.lex_state = 0}, + [2323] = {.lex_state = 0}, + [2324] = {.lex_state = 0}, + [2325] = {.lex_state = 0}, + [2326] = {.lex_state = 0}, + [2327] = {.lex_state = 0}, + [2328] = {.lex_state = 0}, + [2329] = {.lex_state = 0}, + [2330] = {.lex_state = 0}, + [2331] = {.lex_state = 0}, + [2332] = {.lex_state = 0}, + [2333] = {.lex_state = 0}, + [2334] = {.lex_state = 0}, + [2335] = {.lex_state = 0}, + [2336] = {.lex_state = 0}, + [2337] = {.lex_state = 0}, + [2338] = {.lex_state = 0}, + [2339] = {.lex_state = 0}, + [2340] = {.lex_state = 0}, + [2341] = {.lex_state = 0}, + [2342] = {.lex_state = 0}, + [2343] = {.lex_state = 0}, + [2344] = {.lex_state = 0}, + [2345] = {.lex_state = 0}, + [2346] = {.lex_state = 0}, + [2347] = {.lex_state = 0}, + [2348] = {.lex_state = 0}, + [2349] = {.lex_state = 0}, + [2350] = {.lex_state = 0}, + [2351] = {.lex_state = 0}, + [2352] = {.lex_state = 0}, + [2353] = {.lex_state = 0}, + [2354] = {.lex_state = 0}, + [2355] = {.lex_state = 0}, + [2356] = {.lex_state = 0}, + [2357] = {.lex_state = 0}, + [2358] = {.lex_state = 0}, + [2359] = {.lex_state = 0}, + [2360] = {.lex_state = 0}, + [2361] = {.lex_state = 0}, + [2362] = {.lex_state = 0}, + [2363] = {.lex_state = 0}, + [2364] = {.lex_state = 0}, + [2365] = {.lex_state = 0}, + [2366] = {.lex_state = 0}, + [2367] = {.lex_state = 0}, + [2368] = {.lex_state = 0}, + [2369] = {.lex_state = 0}, + [2370] = {.lex_state = 0}, + [2371] = {.lex_state = 0}, + [2372] = {.lex_state = 0}, + [2373] = {.lex_state = 0}, + [2374] = {.lex_state = 0}, + [2375] = {.lex_state = 0}, + [2376] = {.lex_state = 0}, + [2377] = {.lex_state = 0}, + [2378] = {.lex_state = 0}, + [2379] = {.lex_state = 0}, + [2380] = {.lex_state = 0}, + [2381] = {.lex_state = 0}, + [2382] = {.lex_state = 0}, + [2383] = {.lex_state = 0}, + [2384] = {.lex_state = 0}, + [2385] = {.lex_state = 0}, + [2386] = {.lex_state = 0}, + [2387] = {.lex_state = 0}, + [2388] = {.lex_state = 0}, + [2389] = {.lex_state = 0}, + [2390] = {.lex_state = 0}, + [2391] = {.lex_state = 0}, + [2392] = {.lex_state = 0}, + [2393] = {.lex_state = 0}, + [2394] = {.lex_state = 0}, + [2395] = {.lex_state = 0}, + [2396] = {.lex_state = 0}, + [2397] = {.lex_state = 0}, + [2398] = {.lex_state = 0}, + [2399] = {.lex_state = 0}, + [2400] = {.lex_state = 0}, + [2401] = {.lex_state = 0}, + [2402] = {.lex_state = 0}, + [2403] = {.lex_state = 0}, + [2404] = {.lex_state = 0}, + [2405] = {.lex_state = 0}, + [2406] = {.lex_state = 0}, + [2407] = {.lex_state = 0}, + [2408] = {.lex_state = 0}, + [2409] = {.lex_state = 0}, + [2410] = {.lex_state = 0}, + [2411] = {.lex_state = 0}, + [2412] = {.lex_state = 0}, + [2413] = {.lex_state = 0}, + [2414] = {.lex_state = 0}, + [2415] = {.lex_state = 0}, + [2416] = {.lex_state = 0}, + [2417] = {.lex_state = 0}, + [2418] = {.lex_state = 0}, + [2419] = {.lex_state = 0}, + [2420] = {.lex_state = 0}, + [2421] = {.lex_state = 0}, + [2422] = {.lex_state = 0}, + [2423] = {.lex_state = 0}, + [2424] = {.lex_state = 0}, + [2425] = {.lex_state = 0}, + [2426] = {.lex_state = 0}, + [2427] = {.lex_state = 0}, + [2428] = {.lex_state = 0}, + [2429] = {.lex_state = 0}, + [2430] = {.lex_state = 0}, + [2431] = {.lex_state = 0}, + [2432] = {.lex_state = 0}, + [2433] = {.lex_state = 0}, + [2434] = {.lex_state = 0}, + [2435] = {.lex_state = 0}, + [2436] = {.lex_state = 0}, + [2437] = {.lex_state = 0}, + [2438] = {.lex_state = 0}, + [2439] = {.lex_state = 0}, + [2440] = {.lex_state = 0}, + [2441] = {.lex_state = 0}, + [2442] = {.lex_state = 0}, + [2443] = {.lex_state = 0}, + [2444] = {.lex_state = 0}, + [2445] = {.lex_state = 0}, + [2446] = {.lex_state = 0}, + [2447] = {.lex_state = 0}, + [2448] = {.lex_state = 0}, + [2449] = {.lex_state = 0}, + [2450] = {.lex_state = 0}, + [2451] = {.lex_state = 0}, + [2452] = {.lex_state = 0}, + [2453] = {.lex_state = 0}, + [2454] = {.lex_state = 0}, + [2455] = {.lex_state = 0}, + [2456] = {.lex_state = 0}, + [2457] = {.lex_state = 0}, + [2458] = {.lex_state = 0}, + [2459] = {.lex_state = 0}, + [2460] = {.lex_state = 0}, + [2461] = {.lex_state = 0}, + [2462] = {.lex_state = 0}, + [2463] = {.lex_state = 0}, + [2464] = {.lex_state = 0}, + [2465] = {.lex_state = 0}, + [2466] = {.lex_state = 0}, + [2467] = {.lex_state = 0}, + [2468] = {.lex_state = 0}, + [2469] = {.lex_state = 0}, + [2470] = {.lex_state = 0}, + [2471] = {.lex_state = 0}, + [2472] = {.lex_state = 0}, + [2473] = {.lex_state = 0}, + [2474] = {.lex_state = 0}, + [2475] = {.lex_state = 0}, + [2476] = {.lex_state = 0}, + [2477] = {.lex_state = 0}, + [2478] = {.lex_state = 0}, + [2479] = {.lex_state = 0}, + [2480] = {.lex_state = 0}, + [2481] = {.lex_state = 0}, + [2482] = {.lex_state = 0}, + [2483] = {.lex_state = 0}, + [2484] = {.lex_state = 0}, + [2485] = {.lex_state = 0}, + [2486] = {.lex_state = 0}, + [2487] = {.lex_state = 0}, + [2488] = {.lex_state = 0}, + [2489] = {.lex_state = 0}, + [2490] = {.lex_state = 0}, + [2491] = {.lex_state = 0}, + [2492] = {.lex_state = 0}, + [2493] = {.lex_state = 0}, + [2494] = {.lex_state = 0}, + [2495] = {.lex_state = 0}, + [2496] = {.lex_state = 0}, + [2497] = {.lex_state = 0}, + [2498] = {.lex_state = 0}, + [2499] = {.lex_state = 0}, + [2500] = {.lex_state = 0}, + [2501] = {.lex_state = 0}, + [2502] = {.lex_state = 0}, + [2503] = {.lex_state = 0}, + [2504] = {.lex_state = 0}, + [2505] = {.lex_state = 0}, + [2506] = {.lex_state = 0}, + [2507] = {.lex_state = 0}, + [2508] = {.lex_state = 0}, + [2509] = {.lex_state = 0}, + [2510] = {.lex_state = 0}, + [2511] = {.lex_state = 0}, + [2512] = {.lex_state = 0}, + [2513] = {.lex_state = 0}, + [2514] = {.lex_state = 0}, + [2515] = {.lex_state = 0}, + [2516] = {.lex_state = 0}, + [2517] = {.lex_state = 0}, + [2518] = {.lex_state = 0}, + [2519] = {.lex_state = 0}, + [2520] = {.lex_state = 0}, + [2521] = {.lex_state = 0}, + [2522] = {.lex_state = 0}, + [2523] = {.lex_state = 0}, + [2524] = {.lex_state = 0}, + [2525] = {.lex_state = 0}, + [2526] = {.lex_state = 0}, + [2527] = {.lex_state = 0}, + [2528] = {.lex_state = 0}, + [2529] = {.lex_state = 0}, + [2530] = {.lex_state = 0}, + [2531] = {.lex_state = 0}, + [2532] = {.lex_state = 0}, + [2533] = {.lex_state = 0}, + [2534] = {.lex_state = 0}, + [2535] = {.lex_state = 0}, + [2536] = {.lex_state = 0}, + [2537] = {.lex_state = 0}, + [2538] = {.lex_state = 0}, + [2539] = {.lex_state = 0}, + [2540] = {.lex_state = 0}, + [2541] = {.lex_state = 0}, + [2542] = {.lex_state = 0}, + [2543] = {.lex_state = 0}, + [2544] = {.lex_state = 0}, + [2545] = {.lex_state = 0}, + [2546] = {.lex_state = 0}, + [2547] = {.lex_state = 0}, + [2548] = {.lex_state = 0}, + [2549] = {.lex_state = 0}, + [2550] = {.lex_state = 0}, + [2551] = {.lex_state = 0}, + [2552] = {.lex_state = 0}, + [2553] = {.lex_state = 0}, + [2554] = {.lex_state = 0}, + [2555] = {.lex_state = 0}, + [2556] = {.lex_state = 0}, + [2557] = {.lex_state = 0}, + [2558] = {.lex_state = 0}, + [2559] = {.lex_state = 0}, + [2560] = {.lex_state = 0}, + [2561] = {.lex_state = 0}, + [2562] = {.lex_state = 0}, + [2563] = {.lex_state = 0}, + [2564] = {.lex_state = 0}, + [2565] = {.lex_state = 0}, + [2566] = {.lex_state = 0}, + [2567] = {.lex_state = 0}, + [2568] = {.lex_state = 0}, + [2569] = {.lex_state = 0}, + [2570] = {.lex_state = 0}, + [2571] = {.lex_state = 0}, + [2572] = {.lex_state = 0}, + [2573] = {.lex_state = 0}, + [2574] = {.lex_state = 0}, + [2575] = {.lex_state = 0}, + [2576] = {.lex_state = 15}, + [2577] = {.lex_state = 0}, + [2578] = {.lex_state = 0}, + [2579] = {.lex_state = 0}, + [2580] = {.lex_state = 0}, + [2581] = {.lex_state = 0}, + [2582] = {.lex_state = 0}, + [2583] = {.lex_state = 0}, + [2584] = {.lex_state = 0}, + [2585] = {.lex_state = 0}, + [2586] = {.lex_state = 0}, + [2587] = {.lex_state = 0}, + [2588] = {.lex_state = 0}, + [2589] = {.lex_state = 0}, + [2590] = {.lex_state = 0}, + [2591] = {.lex_state = 0}, + [2592] = {.lex_state = 0}, + [2593] = {.lex_state = 0}, + [2594] = {.lex_state = 0}, + [2595] = {.lex_state = 0}, + [2596] = {.lex_state = 0}, + [2597] = {.lex_state = 0}, + [2598] = {.lex_state = 0}, + [2599] = {.lex_state = 0}, + [2600] = {.lex_state = 0}, + [2601] = {.lex_state = 0}, + [2602] = {.lex_state = 0}, + [2603] = {.lex_state = 0}, + [2604] = {.lex_state = 0}, + [2605] = {.lex_state = 0}, + [2606] = {.lex_state = 0}, + [2607] = {.lex_state = 0}, + [2608] = {.lex_state = 0}, + [2609] = {.lex_state = 0}, + [2610] = {.lex_state = 0}, + [2611] = {.lex_state = 0}, + [2612] = {.lex_state = 0}, + [2613] = {.lex_state = 0}, + [2614] = {.lex_state = 0}, + [2615] = {.lex_state = 0}, + [2616] = {.lex_state = 0}, + [2617] = {.lex_state = 0}, + [2618] = {.lex_state = 0}, + [2619] = {.lex_state = 0}, + [2620] = {.lex_state = 0}, + [2621] = {.lex_state = 0}, + [2622] = {.lex_state = 0}, + [2623] = {.lex_state = 0}, + [2624] = {.lex_state = 0}, + [2625] = {.lex_state = 0}, + [2626] = {.lex_state = 0}, + [2627] = {.lex_state = 0}, + [2628] = {.lex_state = 0}, + [2629] = {.lex_state = 0}, + [2630] = {.lex_state = 0}, + [2631] = {.lex_state = 0}, + [2632] = {.lex_state = 0}, + [2633] = {.lex_state = 0}, + [2634] = {.lex_state = 0}, + [2635] = {.lex_state = 0}, + [2636] = {.lex_state = 0}, + [2637] = {.lex_state = 0}, + [2638] = {.lex_state = 0}, + [2639] = {.lex_state = 0}, + [2640] = {.lex_state = 0}, + [2641] = {.lex_state = 0}, + [2642] = {.lex_state = 0}, + [2643] = {.lex_state = 0}, + [2644] = {.lex_state = 0}, + [2645] = {.lex_state = 0}, + [2646] = {.lex_state = 0}, + [2647] = {.lex_state = 0}, + [2648] = {.lex_state = 0}, + [2649] = {.lex_state = 0}, + [2650] = {.lex_state = 0}, + [2651] = {.lex_state = 0}, + [2652] = {.lex_state = 0}, + [2653] = {.lex_state = 0}, + [2654] = {.lex_state = 0}, + [2655] = {.lex_state = 0}, + [2656] = {.lex_state = 0}, + [2657] = {.lex_state = 0}, + [2658] = {.lex_state = 0}, + [2659] = {.lex_state = 0}, + [2660] = {.lex_state = 0}, + [2661] = {.lex_state = 0}, + [2662] = {.lex_state = 0}, + [2663] = {.lex_state = 0}, + [2664] = {.lex_state = 0}, + [2665] = {.lex_state = 0}, + [2666] = {.lex_state = 0}, + [2667] = {.lex_state = 0}, + [2668] = {.lex_state = 0}, + [2669] = {.lex_state = 0}, + [2670] = {.lex_state = 0}, + [2671] = {.lex_state = 0}, + [2672] = {.lex_state = 0}, + [2673] = {.lex_state = 0}, + [2674] = {.lex_state = 0}, + [2675] = {.lex_state = 0}, + [2676] = {.lex_state = 0}, + [2677] = {.lex_state = 0}, + [2678] = {.lex_state = 0}, + [2679] = {.lex_state = 0}, + [2680] = {.lex_state = 0}, + [2681] = {.lex_state = 0}, + [2682] = {.lex_state = 0}, + [2683] = {.lex_state = 0}, + [2684] = {.lex_state = 0}, + [2685] = {.lex_state = 0}, + [2686] = {.lex_state = 0}, + [2687] = {.lex_state = 0}, + [2688] = {.lex_state = 0}, + [2689] = {.lex_state = 0}, + [2690] = {.lex_state = 0}, + [2691] = {.lex_state = 0}, + [2692] = {.lex_state = 0}, + [2693] = {.lex_state = 0}, + [2694] = {.lex_state = 0}, + [2695] = {.lex_state = 0}, + [2696] = {.lex_state = 0}, + [2697] = {.lex_state = 0}, + [2698] = {.lex_state = 0}, + [2699] = {.lex_state = 0}, + [2700] = {.lex_state = 0}, + [2701] = {.lex_state = 0}, + [2702] = {.lex_state = 0}, + [2703] = {.lex_state = 0}, + [2704] = {.lex_state = 0}, + [2705] = {.lex_state = 0}, + [2706] = {.lex_state = 0}, + [2707] = {.lex_state = 0}, + [2708] = {.lex_state = 0}, + [2709] = {.lex_state = 0}, + [2710] = {.lex_state = 0}, + [2711] = {.lex_state = 0}, + [2712] = {.lex_state = 0}, + [2713] = {.lex_state = 0}, + [2714] = {.lex_state = 0}, + [2715] = {.lex_state = 0}, + [2716] = {.lex_state = 0}, + [2717] = {.lex_state = 0}, + [2718] = {.lex_state = 0}, + [2719] = {.lex_state = 0}, + [2720] = {.lex_state = 0}, + [2721] = {.lex_state = 0}, + [2722] = {.lex_state = 0}, + [2723] = {.lex_state = 0}, + [2724] = {.lex_state = 0}, + [2725] = {.lex_state = 0}, + [2726] = {.lex_state = 0}, + [2727] = {.lex_state = 0}, + [2728] = {.lex_state = 0}, + [2729] = {.lex_state = 0}, + [2730] = {.lex_state = 0}, + [2731] = {.lex_state = 0}, + [2732] = {.lex_state = 0}, + [2733] = {.lex_state = 0}, + [2734] = {.lex_state = 0}, + [2735] = {.lex_state = 0}, + [2736] = {.lex_state = 0}, + [2737] = {.lex_state = 0}, + [2738] = {.lex_state = 0}, + [2739] = {.lex_state = 0}, + [2740] = {.lex_state = 0}, + [2741] = {.lex_state = 0}, + [2742] = {.lex_state = 0}, + [2743] = {.lex_state = 0}, + [2744] = {.lex_state = 0}, + [2745] = {.lex_state = 0}, + [2746] = {.lex_state = 0}, + [2747] = {.lex_state = 0}, + [2748] = {.lex_state = 0}, + [2749] = {.lex_state = 0}, + [2750] = {.lex_state = 0}, + [2751] = {.lex_state = 0}, + [2752] = {.lex_state = 0}, + [2753] = {.lex_state = 0}, + [2754] = {.lex_state = 0}, + [2755] = {.lex_state = 0}, + [2756] = {.lex_state = 0}, + [2757] = {.lex_state = 0}, + [2758] = {.lex_state = 0}, + [2759] = {.lex_state = 0}, + [2760] = {.lex_state = 0}, + [2761] = {.lex_state = 0}, + [2762] = {.lex_state = 0}, + [2763] = {.lex_state = 0}, + [2764] = {.lex_state = 0}, + [2765] = {.lex_state = 0}, + [2766] = {.lex_state = 0}, + [2767] = {.lex_state = 0}, + [2768] = {.lex_state = 0}, + [2769] = {.lex_state = 0}, + [2770] = {.lex_state = 0}, + [2771] = {.lex_state = 0}, + [2772] = {.lex_state = 0}, + [2773] = {.lex_state = 0}, + [2774] = {.lex_state = 0}, + [2775] = {.lex_state = 0}, + [2776] = {.lex_state = 0}, + [2777] = {.lex_state = 0}, + [2778] = {.lex_state = 0}, + [2779] = {.lex_state = 0}, + [2780] = {.lex_state = 0}, + [2781] = {.lex_state = 0}, + [2782] = {.lex_state = 0}, + [2783] = {.lex_state = 0}, + [2784] = {.lex_state = 0}, + [2785] = {.lex_state = 0}, + [2786] = {.lex_state = 0}, + [2787] = {.lex_state = 0}, + [2788] = {.lex_state = 0}, + [2789] = {.lex_state = 0}, + [2790] = {.lex_state = 0}, + [2791] = {.lex_state = 0}, + [2792] = {.lex_state = 0}, + [2793] = {.lex_state = 0}, + [2794] = {.lex_state = 0}, + [2795] = {.lex_state = 0}, + [2796] = {.lex_state = 0}, + [2797] = {.lex_state = 0}, + [2798] = {.lex_state = 0}, + [2799] = {.lex_state = 0}, + [2800] = {.lex_state = 0}, + [2801] = {.lex_state = 0}, + [2802] = {.lex_state = 0}, + [2803] = {.lex_state = 0}, + [2804] = {.lex_state = 0}, + [2805] = {.lex_state = 15}, + [2806] = {.lex_state = 0}, + [2807] = {.lex_state = 0}, + [2808] = {.lex_state = 0}, + [2809] = {.lex_state = 0}, + [2810] = {.lex_state = 0}, + [2811] = {.lex_state = 0}, + [2812] = {.lex_state = 0}, + [2813] = {.lex_state = 0}, + [2814] = {.lex_state = 0}, + [2815] = {.lex_state = 0}, + [2816] = {.lex_state = 0}, + [2817] = {.lex_state = 0}, + [2818] = {.lex_state = 0}, + [2819] = {.lex_state = 0}, + [2820] = {.lex_state = 0}, + [2821] = {.lex_state = 0}, + [2822] = {.lex_state = 0}, + [2823] = {.lex_state = 0}, + [2824] = {.lex_state = 15}, + [2825] = {.lex_state = 0}, + [2826] = {.lex_state = 15}, + [2827] = {.lex_state = 15}, + [2828] = {.lex_state = 15}, + [2829] = {.lex_state = 0}, + [2830] = {.lex_state = 0}, + [2831] = {.lex_state = 15}, + [2832] = {.lex_state = 0}, + [2833] = {.lex_state = 15}, + [2834] = {.lex_state = 15}, + [2835] = {.lex_state = 15}, + [2836] = {.lex_state = 15}, + [2837] = {.lex_state = 15}, + [2838] = {.lex_state = 15}, + [2839] = {.lex_state = 15}, + [2840] = {.lex_state = 15}, + [2841] = {.lex_state = 15}, + [2842] = {.lex_state = 15}, + [2843] = {.lex_state = 15}, + [2844] = {.lex_state = 15}, + [2845] = {.lex_state = 15}, + [2846] = {.lex_state = 15}, + [2847] = {.lex_state = 15}, + [2848] = {.lex_state = 0}, + [2849] = {.lex_state = 0}, + [2850] = {.lex_state = 0}, + [2851] = {.lex_state = 15}, + [2852] = {.lex_state = 0}, + [2853] = {.lex_state = 15}, + [2854] = {.lex_state = 0}, + [2855] = {.lex_state = 15}, + [2856] = {.lex_state = 15}, + [2857] = {.lex_state = 15}, + [2858] = {.lex_state = 0}, + [2859] = {.lex_state = 0}, + [2860] = {.lex_state = 0}, + [2861] = {.lex_state = 15}, + [2862] = {.lex_state = 0}, + [2863] = {.lex_state = 0}, + [2864] = {.lex_state = 15}, + [2865] = {.lex_state = 15}, + [2866] = {.lex_state = 15}, + [2867] = {.lex_state = 15}, + [2868] = {.lex_state = 15}, + [2869] = {.lex_state = 15}, + [2870] = {.lex_state = 0}, + [2871] = {.lex_state = 15}, + [2872] = {.lex_state = 15}, + [2873] = {.lex_state = 0}, + [2874] = {.lex_state = 0}, + [2875] = {.lex_state = 0}, + [2876] = {.lex_state = 0}, + [2877] = {.lex_state = 15}, + [2878] = {.lex_state = 15}, + [2879] = {.lex_state = 0}, + [2880] = {.lex_state = 0}, + [2881] = {.lex_state = 0}, + [2882] = {.lex_state = 0}, + [2883] = {.lex_state = 15}, + [2884] = {.lex_state = 0}, + [2885] = {.lex_state = 15}, + [2886] = {.lex_state = 15}, + [2887] = {.lex_state = 15}, + [2888] = {.lex_state = 15}, + [2889] = {.lex_state = 15}, + [2890] = {.lex_state = 15}, + [2891] = {.lex_state = 15}, + [2892] = {.lex_state = 15}, + [2893] = {.lex_state = 15}, + [2894] = {.lex_state = 15}, + [2895] = {.lex_state = 15}, + [2896] = {.lex_state = 15}, + [2897] = {.lex_state = 15}, + [2898] = {.lex_state = 15}, + [2899] = {.lex_state = 15}, + [2900] = {.lex_state = 0}, + [2901] = {.lex_state = 0}, + [2902] = {.lex_state = 0}, + [2903] = {.lex_state = 0}, + [2904] = {.lex_state = 0}, + [2905] = {.lex_state = 0}, + [2906] = {.lex_state = 0}, + [2907] = {.lex_state = 0}, + [2908] = {.lex_state = 0}, + [2909] = {.lex_state = 0}, + [2910] = {.lex_state = 15}, + [2911] = {.lex_state = 15}, + [2912] = {.lex_state = 15}, + [2913] = {.lex_state = 15}, + [2914] = {.lex_state = 0}, + [2915] = {.lex_state = 0}, + [2916] = {.lex_state = 0}, + [2917] = {.lex_state = 0}, + [2918] = {.lex_state = 0}, + [2919] = {.lex_state = 0}, + [2920] = {.lex_state = 15}, + [2921] = {.lex_state = 0}, + [2922] = {.lex_state = 15}, + [2923] = {.lex_state = 0}, + [2924] = {.lex_state = 0}, + [2925] = {.lex_state = 0}, + [2926] = {.lex_state = 0}, + [2927] = {.lex_state = 0}, + [2928] = {.lex_state = 0}, + [2929] = {.lex_state = 0}, + [2930] = {.lex_state = 0}, + [2931] = {.lex_state = 0}, + [2932] = {.lex_state = 0}, + [2933] = {.lex_state = 0}, + [2934] = {.lex_state = 0}, + [2935] = {.lex_state = 0}, + [2936] = {.lex_state = 0}, + [2937] = {.lex_state = 0}, + [2938] = {.lex_state = 0}, + [2939] = {.lex_state = 0}, + [2940] = {.lex_state = 0}, + [2941] = {.lex_state = 0}, + [2942] = {.lex_state = 0}, + [2943] = {.lex_state = 0}, + [2944] = {.lex_state = 0}, + [2945] = {.lex_state = 15}, + [2946] = {.lex_state = 0}, + [2947] = {.lex_state = 0}, + [2948] = {.lex_state = 15}, + [2949] = {.lex_state = 15}, + [2950] = {.lex_state = 0}, + [2951] = {.lex_state = 15}, + [2952] = {.lex_state = 15}, + [2953] = {.lex_state = 15}, + [2954] = {.lex_state = 15}, + [2955] = {.lex_state = 15}, + [2956] = {.lex_state = 15}, + [2957] = {.lex_state = 0}, + [2958] = {.lex_state = 15}, + [2959] = {.lex_state = 15}, + [2960] = {.lex_state = 15}, + [2961] = {.lex_state = 15}, + [2962] = {.lex_state = 15}, + [2963] = {.lex_state = 15}, + [2964] = {.lex_state = 15}, + [2965] = {.lex_state = 15}, + [2966] = {.lex_state = 15}, + [2967] = {.lex_state = 15}, + [2968] = {.lex_state = 15}, + [2969] = {.lex_state = 15}, + [2970] = {.lex_state = 15}, + [2971] = {.lex_state = 15}, + [2972] = {.lex_state = 15}, + [2973] = {.lex_state = 15}, + [2974] = {.lex_state = 15}, + [2975] = {.lex_state = 15}, + [2976] = {.lex_state = 0}, + [2977] = {.lex_state = 0}, + [2978] = {.lex_state = 15}, + [2979] = {.lex_state = 0}, + [2980] = {.lex_state = 15}, + [2981] = {.lex_state = 0}, + [2982] = {.lex_state = 15}, + [2983] = {.lex_state = 0}, + [2984] = {.lex_state = 0}, + [2985] = {.lex_state = 0}, + [2986] = {.lex_state = 15}, + [2987] = {.lex_state = 0}, + [2988] = {.lex_state = 0}, + [2989] = {.lex_state = 15}, + [2990] = {.lex_state = 0}, + [2991] = {.lex_state = 15}, + [2992] = {.lex_state = 15}, + [2993] = {.lex_state = 15}, + [2994] = {.lex_state = 0}, + [2995] = {.lex_state = 0}, + [2996] = {.lex_state = 0}, + [2997] = {.lex_state = 0}, + [2998] = {.lex_state = 0}, + [2999] = {.lex_state = 15}, + [3000] = {.lex_state = 0}, + [3001] = {.lex_state = 15}, + [3002] = {.lex_state = 15}, + [3003] = {.lex_state = 0}, + [3004] = {.lex_state = 0}, + [3005] = {.lex_state = 0}, + [3006] = {.lex_state = 0}, + [3007] = {.lex_state = 15}, + [3008] = {.lex_state = 15}, + [3009] = {.lex_state = 0}, + [3010] = {.lex_state = 0}, + [3011] = {.lex_state = 15}, + [3012] = {.lex_state = 15}, + [3013] = {.lex_state = 0}, + [3014] = {.lex_state = 0}, + [3015] = {.lex_state = 15}, + [3016] = {.lex_state = 15}, + [3017] = {.lex_state = 15}, + [3018] = {.lex_state = 15}, + [3019] = {.lex_state = 15}, + [3020] = {.lex_state = 15}, + [3021] = {.lex_state = 15}, + [3022] = {.lex_state = 0}, + [3023] = {.lex_state = 0}, + [3024] = {.lex_state = 15}, + [3025] = {.lex_state = 15}, + [3026] = {.lex_state = 15}, + [3027] = {.lex_state = 0}, + [3028] = {.lex_state = 0}, + [3029] = {.lex_state = 0}, + [3030] = {.lex_state = 0}, + [3031] = {.lex_state = 0}, + [3032] = {.lex_state = 15}, + [3033] = {.lex_state = 15}, + [3034] = {.lex_state = 15}, + [3035] = {.lex_state = 15}, + [3036] = {.lex_state = 0}, + [3037] = {.lex_state = 15}, + [3038] = {.lex_state = 15}, + [3039] = {.lex_state = 15}, + [3040] = {.lex_state = 15}, + [3041] = {.lex_state = 15}, + [3042] = {.lex_state = 15}, + [3043] = {.lex_state = 15}, + [3044] = {.lex_state = 15}, + [3045] = {.lex_state = 0}, + [3046] = {.lex_state = 0}, + [3047] = {.lex_state = 15}, + [3048] = {.lex_state = 0}, + [3049] = {.lex_state = 0}, + [3050] = {.lex_state = 0}, + [3051] = {.lex_state = 15}, + [3052] = {.lex_state = 15}, + [3053] = {.lex_state = 0}, + [3054] = {.lex_state = 0}, + [3055] = {.lex_state = 15}, + [3056] = {.lex_state = 0}, + [3057] = {.lex_state = 0}, + [3058] = {.lex_state = 15}, + [3059] = {.lex_state = 0}, + [3060] = {.lex_state = 15}, + [3061] = {.lex_state = 0}, + [3062] = {.lex_state = 0}, + [3063] = {.lex_state = 0}, + [3064] = {.lex_state = 15}, + [3065] = {.lex_state = 0}, + [3066] = {.lex_state = 0}, + [3067] = {.lex_state = 0}, + [3068] = {.lex_state = 0}, + [3069] = {.lex_state = 15}, + [3070] = {.lex_state = 0}, + [3071] = {.lex_state = 0}, + [3072] = {.lex_state = 0}, + [3073] = {.lex_state = 0}, + [3074] = {.lex_state = 0}, + [3075] = {.lex_state = 0}, + [3076] = {.lex_state = 0}, + [3077] = {.lex_state = 0}, + [3078] = {.lex_state = 0}, + [3079] = {.lex_state = 15}, + [3080] = {.lex_state = 0}, + [3081] = {.lex_state = 0}, + [3082] = {.lex_state = 15}, + [3083] = {.lex_state = 15}, + [3084] = {.lex_state = 15}, + [3085] = {.lex_state = 15}, + [3086] = {.lex_state = 15}, + [3087] = {.lex_state = 15}, + [3088] = {.lex_state = 15}, + [3089] = {.lex_state = 15}, + [3090] = {.lex_state = 15}, + [3091] = {.lex_state = 15}, + [3092] = {.lex_state = 15}, + [3093] = {.lex_state = 15}, + [3094] = {.lex_state = 15}, + [3095] = {.lex_state = 15}, + [3096] = {.lex_state = 15}, + [3097] = {.lex_state = 15}, + [3098] = {.lex_state = 15}, + [3099] = {.lex_state = 0}, + [3100] = {.lex_state = 15}, + [3101] = {.lex_state = 0}, + [3102] = {.lex_state = 15}, + [3103] = {.lex_state = 0}, + [3104] = {.lex_state = 15}, + [3105] = {.lex_state = 0}, + [3106] = {.lex_state = 15}, + [3107] = {.lex_state = 0}, + [3108] = {.lex_state = 0}, + [3109] = {.lex_state = 0}, + [3110] = {.lex_state = 15}, + [3111] = {.lex_state = 0}, + [3112] = {.lex_state = 0}, + [3113] = {.lex_state = 15}, + [3114] = {.lex_state = 0}, + [3115] = {.lex_state = 15}, + [3116] = {.lex_state = 0}, + [3117] = {.lex_state = 15}, + [3118] = {.lex_state = 0}, + [3119] = {.lex_state = 0}, + [3120] = {.lex_state = 0}, + [3121] = {.lex_state = 0}, + [3122] = {.lex_state = 0}, + [3123] = {.lex_state = 0}, + [3124] = {.lex_state = 0}, + [3125] = {.lex_state = 0}, + [3126] = {.lex_state = 0}, + [3127] = {.lex_state = 0}, + [3128] = {.lex_state = 0}, + [3129] = {.lex_state = 0}, + [3130] = {.lex_state = 0}, + [3131] = {.lex_state = 0}, + [3132] = {.lex_state = 15}, + [3133] = {.lex_state = 0}, + [3134] = {.lex_state = 15}, + [3135] = {.lex_state = 0}, + [3136] = {.lex_state = 0}, + [3137] = {.lex_state = 0}, + [3138] = {.lex_state = 15}, + [3139] = {.lex_state = 0}, + [3140] = {.lex_state = 0}, + [3141] = {.lex_state = 0}, + [3142] = {.lex_state = 15}, + [3143] = {.lex_state = 0}, + [3144] = {.lex_state = 0}, + [3145] = {.lex_state = 0}, + [3146] = {.lex_state = 0}, + [3147] = {.lex_state = 0}, + [3148] = {.lex_state = 15}, + [3149] = {.lex_state = 15}, + [3150] = {.lex_state = 15}, + [3151] = {.lex_state = 0}, + [3152] = {.lex_state = 0}, + [3153] = {.lex_state = 0}, + [3154] = {.lex_state = 0}, + [3155] = {.lex_state = 0}, + [3156] = {.lex_state = 15}, + [3157] = {.lex_state = 15}, + [3158] = {.lex_state = 15}, + [3159] = {.lex_state = 15}, + [3160] = {.lex_state = 0}, + [3161] = {.lex_state = 15}, + [3162] = {.lex_state = 15}, + [3163] = {.lex_state = 15}, + [3164] = {.lex_state = 15}, + [3165] = {.lex_state = 15}, + [3166] = {.lex_state = 15}, + [3167] = {.lex_state = 15}, + [3168] = {.lex_state = 15}, + [3169] = {.lex_state = 15}, + [3170] = {.lex_state = 0}, + [3171] = {.lex_state = 15}, + [3172] = {.lex_state = 0}, + [3173] = {.lex_state = 15}, + [3174] = {.lex_state = 0}, + [3175] = {.lex_state = 0}, + [3176] = {.lex_state = 15}, + [3177] = {.lex_state = 0}, + [3178] = {.lex_state = 0}, + [3179] = {.lex_state = 15}, + [3180] = {.lex_state = 0}, + [3181] = {.lex_state = 0}, + [3182] = {.lex_state = 15}, + [3183] = {.lex_state = 0}, + [3184] = {.lex_state = 0}, + [3185] = {.lex_state = 15}, + [3186] = {.lex_state = 0}, + [3187] = {.lex_state = 0}, + [3188] = {.lex_state = 0}, + [3189] = {.lex_state = 0}, + [3190] = {.lex_state = 0}, + [3191] = {.lex_state = 0}, + [3192] = {.lex_state = 0}, + [3193] = {.lex_state = 15}, + [3194] = {.lex_state = 15}, + [3195] = {.lex_state = 0}, + [3196] = {.lex_state = 15}, + [3197] = {.lex_state = 15}, + [3198] = {.lex_state = 15}, + [3199] = {.lex_state = 0}, + [3200] = {.lex_state = 15}, + [3201] = {.lex_state = 0}, + [3202] = {.lex_state = 15}, + [3203] = {.lex_state = 15}, + [3204] = {.lex_state = 0}, + [3205] = {.lex_state = 15}, + [3206] = {.lex_state = 15}, + [3207] = {.lex_state = 15}, + [3208] = {.lex_state = 15}, + [3209] = {.lex_state = 15}, + [3210] = {.lex_state = 15}, + [3211] = {.lex_state = 15}, + [3212] = {.lex_state = 15}, + [3213] = {.lex_state = 15}, + [3214] = {.lex_state = 15}, + [3215] = {.lex_state = 15}, + [3216] = {.lex_state = 15}, + [3217] = {.lex_state = 15}, + [3218] = {.lex_state = 15}, + [3219] = {.lex_state = 15}, + [3220] = {.lex_state = 15}, + [3221] = {.lex_state = 0}, + [3222] = {.lex_state = 0}, + [3223] = {.lex_state = 0}, + [3224] = {.lex_state = 15}, + [3225] = {.lex_state = 15}, + [3226] = {.lex_state = 0}, + [3227] = {.lex_state = 15}, + [3228] = {.lex_state = 0}, + [3229] = {.lex_state = 15}, + [3230] = {.lex_state = 0}, + [3231] = {.lex_state = 0}, + [3232] = {.lex_state = 0}, + [3233] = {.lex_state = 15}, + [3234] = {.lex_state = 0}, + [3235] = {.lex_state = 0}, + [3236] = {.lex_state = 15}, + [3237] = {.lex_state = 0}, + [3238] = {.lex_state = 15}, + [3239] = {.lex_state = 0}, + [3240] = {.lex_state = 15}, + [3241] = {.lex_state = 0}, + [3242] = {.lex_state = 0}, + [3243] = {.lex_state = 0}, + [3244] = {.lex_state = 0}, + [3245] = {.lex_state = 0}, + [3246] = {.lex_state = 0}, + [3247] = {.lex_state = 0}, + [3248] = {.lex_state = 0}, + [3249] = {.lex_state = 0}, + [3250] = {.lex_state = 0}, + [3251] = {.lex_state = 0}, + [3252] = {.lex_state = 0}, + [3253] = {.lex_state = 0}, + [3254] = {.lex_state = 0}, + [3255] = {.lex_state = 15}, + [3256] = {.lex_state = 0}, + [3257] = {.lex_state = 0}, + [3258] = {.lex_state = 0}, + [3259] = {.lex_state = 0}, + [3260] = {.lex_state = 0}, + [3261] = {.lex_state = 0}, + [3262] = {.lex_state = 0}, + [3263] = {.lex_state = 0}, + [3264] = {.lex_state = 0}, + [3265] = {.lex_state = 0}, + [3266] = {.lex_state = 0}, + [3267] = {.lex_state = 0}, + [3268] = {.lex_state = 0}, + [3269] = {.lex_state = 15}, + [3270] = {.lex_state = 0}, + [3271] = {.lex_state = 0}, + [3272] = {.lex_state = 0}, + [3273] = {.lex_state = 0}, + [3274] = {.lex_state = 0}, + [3275] = {.lex_state = 0}, + [3276] = {.lex_state = 0}, + [3277] = {.lex_state = 0}, + [3278] = {.lex_state = 0}, + [3279] = {.lex_state = 0}, + [3280] = {.lex_state = 0}, + [3281] = {.lex_state = 0}, + [3282] = {.lex_state = 0}, + [3283] = {.lex_state = 0}, + [3284] = {.lex_state = 15}, + [3285] = {.lex_state = 0}, + [3286] = {.lex_state = 0}, + [3287] = {.lex_state = 0}, + [3288] = {.lex_state = 0}, + [3289] = {.lex_state = 0}, + [3290] = {.lex_state = 15}, + [3291] = {.lex_state = 15}, + [3292] = {.lex_state = 15}, + [3293] = {.lex_state = 0}, + [3294] = {.lex_state = 15}, + [3295] = {.lex_state = 0}, + [3296] = {.lex_state = 15}, + [3297] = {.lex_state = 0}, + [3298] = {.lex_state = 0}, + [3299] = {.lex_state = 15}, + [3300] = {.lex_state = 0}, + [3301] = {.lex_state = 0}, + [3302] = {.lex_state = 15}, + [3303] = {.lex_state = 0}, + [3304] = {.lex_state = 0}, + [3305] = {.lex_state = 15}, + [3306] = {.lex_state = 0}, + [3307] = {.lex_state = 0}, + [3308] = {.lex_state = 0}, + [3309] = {.lex_state = 0}, + [3310] = {.lex_state = 0}, + [3311] = {.lex_state = 0}, + [3312] = {.lex_state = 0}, + [3313] = {.lex_state = 0}, + [3314] = {.lex_state = 0}, + [3315] = {.lex_state = 0}, + [3316] = {.lex_state = 0}, + [3317] = {.lex_state = 0}, + [3318] = {.lex_state = 0}, + [3319] = {.lex_state = 0}, + [3320] = {.lex_state = 15}, + [3321] = {.lex_state = 0}, + [3322] = {.lex_state = 0}, + [3323] = {.lex_state = 0}, + [3324] = {.lex_state = 15}, + [3325] = {.lex_state = 15}, + [3326] = {.lex_state = 0}, + [3327] = {.lex_state = 15}, + [3328] = {.lex_state = 15}, + [3329] = {.lex_state = 15}, + [3330] = {.lex_state = 15}, + [3331] = {.lex_state = 15}, + [3332] = {.lex_state = 15}, + [3333] = {.lex_state = 15}, + [3334] = {.lex_state = 15}, + [3335] = {.lex_state = 15}, + [3336] = {.lex_state = 15}, + [3337] = {.lex_state = 15}, + [3338] = {.lex_state = 15}, + [3339] = {.lex_state = 15}, + [3340] = {.lex_state = 15}, + [3341] = {.lex_state = 15}, + [3342] = {.lex_state = 15}, + [3343] = {.lex_state = 15}, + [3344] = {.lex_state = 15}, + [3345] = {.lex_state = 15}, + [3346] = {.lex_state = 15}, + [3347] = {.lex_state = 15}, + [3348] = {.lex_state = 15}, + [3349] = {.lex_state = 15}, + [3350] = {.lex_state = 15}, + [3351] = {.lex_state = 15}, + [3352] = {.lex_state = 15}, + [3353] = {.lex_state = 15}, + [3354] = {.lex_state = 15}, + [3355] = {.lex_state = 15}, + [3356] = {.lex_state = 15}, + [3357] = {.lex_state = 15}, + [3358] = {.lex_state = 15}, + [3359] = {.lex_state = 15}, + [3360] = {.lex_state = 15}, + [3361] = {.lex_state = 15}, + [3362] = {.lex_state = 15}, + [3363] = {.lex_state = 15}, + [3364] = {.lex_state = 0}, + [3365] = {.lex_state = 15}, + [3366] = {.lex_state = 15}, + [3367] = {.lex_state = 0}, + [3368] = {.lex_state = 15}, + [3369] = {.lex_state = 0}, + [3370] = {.lex_state = 0}, + [3371] = {.lex_state = 15}, + [3372] = {.lex_state = 15}, + [3373] = {.lex_state = 0}, + [3374] = {.lex_state = 0}, + [3375] = {.lex_state = 0}, + [3376] = {.lex_state = 0}, + [3377] = {.lex_state = 15}, + [3378] = {.lex_state = 0}, + [3379] = {.lex_state = 0}, + [3380] = {.lex_state = 0}, + [3381] = {.lex_state = 0}, + [3382] = {.lex_state = 0}, + [3383] = {.lex_state = 0}, + [3384] = {.lex_state = 0}, + [3385] = {.lex_state = 0}, + [3386] = {.lex_state = 0}, + [3387] = {.lex_state = 0}, + [3388] = {.lex_state = 0}, + [3389] = {.lex_state = 0}, + [3390] = {.lex_state = 15}, + [3391] = {.lex_state = 0}, + [3392] = {.lex_state = 0}, + [3393] = {.lex_state = 0}, + [3394] = {.lex_state = 0}, + [3395] = {.lex_state = 0}, + [3396] = {.lex_state = 0}, + [3397] = {.lex_state = 0}, + [3398] = {.lex_state = 0}, + [3399] = {.lex_state = 15}, + [3400] = {.lex_state = 15}, + [3401] = {.lex_state = 0}, + [3402] = {.lex_state = 15}, + [3403] = {.lex_state = 0}, + [3404] = {.lex_state = 15}, + [3405] = {.lex_state = 15}, + [3406] = {.lex_state = 15}, + [3407] = {.lex_state = 0}, + [3408] = {.lex_state = 15}, + [3409] = {.lex_state = 0}, + [3410] = {.lex_state = 0}, + [3411] = {.lex_state = 0}, + [3412] = {.lex_state = 0}, + [3413] = {.lex_state = 0}, + [3414] = {.lex_state = 0}, + [3415] = {.lex_state = 0}, + [3416] = {.lex_state = 15}, + [3417] = {.lex_state = 0}, + [3418] = {.lex_state = 0}, + [3419] = {.lex_state = 0}, + [3420] = {.lex_state = 0}, + [3421] = {.lex_state = 15}, + [3422] = {.lex_state = 0}, + [3423] = {.lex_state = 0}, + [3424] = {.lex_state = 0}, + [3425] = {.lex_state = 0}, + [3426] = {.lex_state = 0}, + [3427] = {.lex_state = 0}, + [3428] = {.lex_state = 0}, + [3429] = {.lex_state = 0}, + [3430] = {.lex_state = 0}, + [3431] = {.lex_state = 0}, + [3432] = {.lex_state = 0}, + [3433] = {.lex_state = 15}, + [3434] = {.lex_state = 0}, + [3435] = {.lex_state = 0}, + [3436] = {.lex_state = 0}, + [3437] = {.lex_state = 15}, + [3438] = {.lex_state = 15}, + [3439] = {.lex_state = 15}, + [3440] = {.lex_state = 15}, + [3441] = {.lex_state = 15}, + [3442] = {.lex_state = 15}, + [3443] = {.lex_state = 15}, + [3444] = {.lex_state = 0}, + [3445] = {.lex_state = 0}, + [3446] = {.lex_state = 0}, + [3447] = {.lex_state = 0}, + [3448] = {.lex_state = 0}, + [3449] = {.lex_state = 0}, + [3450] = {.lex_state = 0}, + [3451] = {.lex_state = 0}, + [3452] = {.lex_state = 0}, + [3453] = {.lex_state = 0}, + [3454] = {.lex_state = 0}, + [3455] = {.lex_state = 0}, + [3456] = {.lex_state = 0}, + [3457] = {.lex_state = 0}, + [3458] = {.lex_state = 0}, + [3459] = {.lex_state = 0}, + [3460] = {.lex_state = 0}, + [3461] = {.lex_state = 0}, + [3462] = {.lex_state = 15}, + [3463] = {.lex_state = 15}, + [3464] = {.lex_state = 15}, + [3465] = {.lex_state = 15}, + [3466] = {.lex_state = 15}, + [3467] = {.lex_state = 15}, + [3468] = {.lex_state = 0}, + [3469] = {.lex_state = 0}, + [3470] = {.lex_state = 0}, + [3471] = {.lex_state = 0}, + [3472] = {.lex_state = 15}, + [3473] = {.lex_state = 15}, + [3474] = {.lex_state = 0}, + [3475] = {.lex_state = 15}, + [3476] = {.lex_state = 0}, + [3477] = {.lex_state = 0}, + [3478] = {.lex_state = 0}, + [3479] = {.lex_state = 0}, + [3480] = {.lex_state = 15}, + [3481] = {.lex_state = 15}, + [3482] = {.lex_state = 0}, + [3483] = {.lex_state = 15}, + [3484] = {.lex_state = 0}, + [3485] = {.lex_state = 0}, + [3486] = {.lex_state = 0}, + [3487] = {.lex_state = 15}, + [3488] = {.lex_state = 0}, + [3489] = {.lex_state = 0}, + [3490] = {.lex_state = 0}, + [3491] = {.lex_state = 0}, + [3492] = {.lex_state = 0}, + [3493] = {.lex_state = 0}, + [3494] = {.lex_state = 0}, + [3495] = {.lex_state = 0}, + [3496] = {.lex_state = 0}, + [3497] = {.lex_state = 0}, + [3498] = {.lex_state = 0}, + [3499] = {.lex_state = 0}, + [3500] = {.lex_state = 0}, + [3501] = {.lex_state = 0}, + [3502] = {.lex_state = 0}, + [3503] = {.lex_state = 0}, + [3504] = {.lex_state = 0}, + [3505] = {.lex_state = 0}, + [3506] = {.lex_state = 0}, + [3507] = {.lex_state = 0}, + [3508] = {.lex_state = 0}, + [3509] = {.lex_state = 0}, + [3510] = {.lex_state = 0}, + [3511] = {.lex_state = 0}, + [3512] = {.lex_state = 0}, + [3513] = {.lex_state = 0}, + [3514] = {.lex_state = 0}, + [3515] = {.lex_state = 15}, + [3516] = {.lex_state = 15}, + [3517] = {.lex_state = 15}, + [3518] = {.lex_state = 15}, + [3519] = {.lex_state = 15}, + [3520] = {.lex_state = 15}, + [3521] = {.lex_state = 0}, + [3522] = {.lex_state = 0}, + [3523] = {.lex_state = 0}, + [3524] = {.lex_state = 0}, + [3525] = {.lex_state = 15}, + [3526] = {.lex_state = 15}, + [3527] = {.lex_state = 0}, + [3528] = {.lex_state = 15}, + [3529] = {.lex_state = 0}, + [3530] = {.lex_state = 0}, + [3531] = {.lex_state = 0}, + [3532] = {.lex_state = 0}, + [3533] = {.lex_state = 15}, + [3534] = {.lex_state = 15}, + [3535] = {.lex_state = 15}, + [3536] = {.lex_state = 15}, + [3537] = {.lex_state = 15}, + [3538] = {.lex_state = 0}, + [3539] = {.lex_state = 0}, + [3540] = {.lex_state = 15}, + [3541] = {.lex_state = 0}, + [3542] = {.lex_state = 0}, + [3543] = {.lex_state = 0}, + [3544] = {.lex_state = 0}, + [3545] = {.lex_state = 0}, + [3546] = {.lex_state = 0}, + [3547] = {.lex_state = 0}, + [3548] = {.lex_state = 0}, + [3549] = {.lex_state = 0}, + [3550] = {.lex_state = 0}, + [3551] = {.lex_state = 0}, + [3552] = {.lex_state = 0}, + [3553] = {.lex_state = 0}, + [3554] = {.lex_state = 0}, + [3555] = {.lex_state = 0}, + [3556] = {.lex_state = 0}, + [3557] = {.lex_state = 0}, + [3558] = {.lex_state = 0}, + [3559] = {.lex_state = 0}, + [3560] = {.lex_state = 0}, + [3561] = {.lex_state = 0}, + [3562] = {.lex_state = 0}, + [3563] = {.lex_state = 0}, + [3564] = {.lex_state = 0}, + [3565] = {.lex_state = 0}, + [3566] = {.lex_state = 0}, + [3567] = {.lex_state = 0}, + [3568] = {.lex_state = 15}, + [3569] = {.lex_state = 15}, + [3570] = {.lex_state = 15}, + [3571] = {.lex_state = 15}, + [3572] = {.lex_state = 15}, + [3573] = {.lex_state = 15}, + [3574] = {.lex_state = 0}, + [3575] = {.lex_state = 0}, + [3576] = {.lex_state = 0}, + [3577] = {.lex_state = 0}, + [3578] = {.lex_state = 15}, + [3579] = {.lex_state = 15}, + [3580] = {.lex_state = 0}, + [3581] = {.lex_state = 15}, + [3582] = {.lex_state = 0}, + [3583] = {.lex_state = 0}, + [3584] = {.lex_state = 0}, + [3585] = {.lex_state = 0}, + [3586] = {.lex_state = 15}, + [3587] = {.lex_state = 15}, + [3588] = {.lex_state = 0}, + [3589] = {.lex_state = 15}, + [3590] = {.lex_state = 0}, + [3591] = {.lex_state = 0}, + [3592] = {.lex_state = 0}, + [3593] = {.lex_state = 15}, + [3594] = {.lex_state = 0}, + [3595] = {.lex_state = 0}, + [3596] = {.lex_state = 15}, + [3597] = {.lex_state = 0}, + [3598] = {.lex_state = 0}, + [3599] = {.lex_state = 0}, + [3600] = {.lex_state = 15}, + [3601] = {.lex_state = 13}, + [3602] = {.lex_state = 0}, + [3603] = {.lex_state = 0}, + [3604] = {.lex_state = 0}, + [3605] = {.lex_state = 0}, + [3606] = {.lex_state = 0}, + [3607] = {.lex_state = 0}, + [3608] = {.lex_state = 0}, + [3609] = {.lex_state = 0}, + [3610] = {.lex_state = 0}, + [3611] = {.lex_state = 0}, + [3612] = {.lex_state = 0}, + [3613] = {.lex_state = 0}, + [3614] = {.lex_state = 0}, + [3615] = {.lex_state = 0}, + [3616] = {.lex_state = 0}, + [3617] = {.lex_state = 0}, + [3618] = {.lex_state = 0}, + [3619] = {.lex_state = 0}, + [3620] = {.lex_state = 0}, + [3621] = {.lex_state = 15}, + [3622] = {.lex_state = 15}, + [3623] = {.lex_state = 15}, + [3624] = {.lex_state = 15}, + [3625] = {.lex_state = 15}, + [3626] = {.lex_state = 15}, + [3627] = {.lex_state = 0}, + [3628] = {.lex_state = 0}, + [3629] = {.lex_state = 0}, + [3630] = {.lex_state = 0}, + [3631] = {.lex_state = 15}, + [3632] = {.lex_state = 15}, + [3633] = {.lex_state = 0}, + [3634] = {.lex_state = 15}, + [3635] = {.lex_state = 0}, + [3636] = {.lex_state = 0}, + [3637] = {.lex_state = 0}, + [3638] = {.lex_state = 0}, + [3639] = {.lex_state = 0}, + [3640] = {.lex_state = 15}, + [3641] = {.lex_state = 0}, + [3642] = {.lex_state = 15}, + [3643] = {.lex_state = 0}, + [3644] = {.lex_state = 0}, + [3645] = {.lex_state = 0}, + [3646] = {.lex_state = 15}, + [3647] = {.lex_state = 0}, + [3648] = {.lex_state = 0}, + [3649] = {.lex_state = 0}, + [3650] = {.lex_state = 0}, + [3651] = {.lex_state = 0}, + [3652] = {.lex_state = 0}, + [3653] = {.lex_state = 0}, + [3654] = {.lex_state = 0}, + [3655] = {.lex_state = 0}, + [3656] = {.lex_state = 0}, + [3657] = {.lex_state = 0}, + [3658] = {.lex_state = 0}, + [3659] = {.lex_state = 0}, + [3660] = {.lex_state = 0}, + [3661] = {.lex_state = 0}, + [3662] = {.lex_state = 0}, + [3663] = {.lex_state = 0}, + [3664] = {.lex_state = 0}, + [3665] = {.lex_state = 0}, + [3666] = {.lex_state = 0}, + [3667] = {.lex_state = 0}, + [3668] = {.lex_state = 0}, + [3669] = {.lex_state = 0}, + [3670] = {.lex_state = 0}, + [3671] = {.lex_state = 0}, + [3672] = {.lex_state = 0}, + [3673] = {.lex_state = 0}, + [3674] = {.lex_state = 15}, + [3675] = {.lex_state = 15}, + [3676] = {.lex_state = 15}, + [3677] = {.lex_state = 15}, + [3678] = {.lex_state = 15}, + [3679] = {.lex_state = 15}, + [3680] = {.lex_state = 0}, + [3681] = {.lex_state = 0}, + [3682] = {.lex_state = 0}, + [3683] = {.lex_state = 0}, + [3684] = {.lex_state = 15}, + [3685] = {.lex_state = 15}, + [3686] = {.lex_state = 0}, + [3687] = {.lex_state = 15}, + [3688] = {.lex_state = 0}, + [3689] = {.lex_state = 0}, + [3690] = {.lex_state = 0}, + [3691] = {.lex_state = 0}, + [3692] = {.lex_state = 15}, + [3693] = {.lex_state = 15}, + [3694] = {.lex_state = 0}, + [3695] = {.lex_state = 15}, + [3696] = {.lex_state = 0}, + [3697] = {.lex_state = 0}, + [3698] = {.lex_state = 0}, + [3699] = {.lex_state = 15}, + [3700] = {.lex_state = 15}, + [3701] = {.lex_state = 0}, + [3702] = {.lex_state = 0}, + [3703] = {.lex_state = 0}, + [3704] = {.lex_state = 15}, + [3705] = {.lex_state = 0}, + [3706] = {.lex_state = 0}, + [3707] = {.lex_state = 0}, + [3708] = {.lex_state = 0}, + [3709] = {.lex_state = 0}, + [3710] = {.lex_state = 0}, + [3711] = {.lex_state = 0}, + [3712] = {.lex_state = 0}, + [3713] = {.lex_state = 0}, + [3714] = {.lex_state = 0}, + [3715] = {.lex_state = 0}, + [3716] = {.lex_state = 0}, + [3717] = {.lex_state = 0}, + [3718] = {.lex_state = 0}, + [3719] = {.lex_state = 0}, + [3720] = {.lex_state = 0}, + [3721] = {.lex_state = 0}, + [3722] = {.lex_state = 0}, + [3723] = {.lex_state = 0}, + [3724] = {.lex_state = 0}, + [3725] = {.lex_state = 0}, + [3726] = {.lex_state = 0}, + [3727] = {.lex_state = 15}, + [3728] = {.lex_state = 15}, + [3729] = {.lex_state = 15}, + [3730] = {.lex_state = 15}, + [3731] = {.lex_state = 15}, + [3732] = {.lex_state = 15}, + [3733] = {.lex_state = 0}, + [3734] = {.lex_state = 0}, + [3735] = {.lex_state = 0}, + [3736] = {.lex_state = 0}, + [3737] = {.lex_state = 15}, + [3738] = {.lex_state = 15}, + [3739] = {.lex_state = 0}, + [3740] = {.lex_state = 15}, + [3741] = {.lex_state = 0}, + [3742] = {.lex_state = 0}, + [3743] = {.lex_state = 0}, + [3744] = {.lex_state = 0}, + [3745] = {.lex_state = 15}, + [3746] = {.lex_state = 15}, + [3747] = {.lex_state = 0}, + [3748] = {.lex_state = 15}, + [3749] = {.lex_state = 0}, + [3750] = {.lex_state = 0}, + [3751] = {.lex_state = 0}, + [3752] = {.lex_state = 15}, + [3753] = {.lex_state = 0}, + [3754] = {.lex_state = 0}, + [3755] = {.lex_state = 0}, + [3756] = {.lex_state = 0}, + [3757] = {.lex_state = 0}, + [3758] = {.lex_state = 0}, + [3759] = {.lex_state = 0}, + [3760] = {.lex_state = 0}, + [3761] = {.lex_state = 0}, + [3762] = {.lex_state = 0}, + [3763] = {.lex_state = 0}, + [3764] = {.lex_state = 0}, + [3765] = {.lex_state = 15}, + [3766] = {.lex_state = 0}, + [3767] = {.lex_state = 0}, + [3768] = {.lex_state = 0}, + [3769] = {.lex_state = 0}, + [3770] = {.lex_state = 0}, + [3771] = {.lex_state = 0}, + [3772] = {.lex_state = 0}, + [3773] = {.lex_state = 0}, + [3774] = {.lex_state = 0}, + [3775] = {.lex_state = 0}, + [3776] = {.lex_state = 0}, + [3777] = {.lex_state = 0}, + [3778] = {.lex_state = 0}, + [3779] = {.lex_state = 0}, + [3780] = {.lex_state = 15}, + [3781] = {.lex_state = 15}, + [3782] = {.lex_state = 15}, + [3783] = {.lex_state = 15}, + [3784] = {.lex_state = 15}, + [3785] = {.lex_state = 15}, + [3786] = {.lex_state = 0}, + [3787] = {.lex_state = 0}, + [3788] = {.lex_state = 0}, + [3789] = {.lex_state = 0}, + [3790] = {.lex_state = 15}, + [3791] = {.lex_state = 15}, + [3792] = {.lex_state = 0}, + [3793] = {.lex_state = 15}, + [3794] = {.lex_state = 0}, + [3795] = {.lex_state = 0}, + [3796] = {.lex_state = 0}, + [3797] = {.lex_state = 0}, + [3798] = {.lex_state = 15}, + [3799] = {.lex_state = 15}, + [3800] = {.lex_state = 0}, + [3801] = {.lex_state = 15}, + [3802] = {.lex_state = 0}, + [3803] = {.lex_state = 0}, + [3804] = {.lex_state = 0}, + [3805] = {.lex_state = 15}, + [3806] = {.lex_state = 0}, + [3807] = {.lex_state = 0}, + [3808] = {.lex_state = 0}, + [3809] = {.lex_state = 0}, + [3810] = {.lex_state = 0}, + [3811] = {.lex_state = 0}, + [3812] = {.lex_state = 0}, + [3813] = {.lex_state = 0}, + [3814] = {.lex_state = 0}, + [3815] = {.lex_state = 0}, + [3816] = {.lex_state = 0}, + [3817] = {.lex_state = 0}, + [3818] = {.lex_state = 0}, + [3819] = {.lex_state = 0}, + [3820] = {.lex_state = 0}, + [3821] = {.lex_state = 0}, + [3822] = {.lex_state = 0}, + [3823] = {.lex_state = 15}, + [3824] = {.lex_state = 0}, + [3825] = {.lex_state = 0}, + [3826] = {.lex_state = 0}, + [3827] = {.lex_state = 0}, + [3828] = {.lex_state = 0}, + [3829] = {.lex_state = 0}, + [3830] = {.lex_state = 0}, + [3831] = {.lex_state = 0}, + [3832] = {.lex_state = 0}, + [3833] = {.lex_state = 15}, + [3834] = {.lex_state = 15}, + [3835] = {.lex_state = 15}, + [3836] = {.lex_state = 15}, + [3837] = {.lex_state = 15}, + [3838] = {.lex_state = 15}, + [3839] = {.lex_state = 0}, + [3840] = {.lex_state = 0}, + [3841] = {.lex_state = 0}, + [3842] = {.lex_state = 0}, + [3843] = {.lex_state = 15}, + [3844] = {.lex_state = 15}, + [3845] = {.lex_state = 0}, + [3846] = {.lex_state = 15}, + [3847] = {.lex_state = 0}, + [3848] = {.lex_state = 15}, + [3849] = {.lex_state = 0}, + [3850] = {.lex_state = 15}, + [3851] = {.lex_state = 15}, + [3852] = {.lex_state = 15}, + [3853] = {.lex_state = 15}, + [3854] = {.lex_state = 15}, + [3855] = {.lex_state = 15}, + [3856] = {.lex_state = 0}, + [3857] = {.lex_state = 0}, + [3858] = {.lex_state = 15}, + [3859] = {.lex_state = 13}, + [3860] = {.lex_state = 13}, + [3861] = {.lex_state = 13}, + [3862] = {.lex_state = 15}, + [3863] = {.lex_state = 15}, + [3864] = {.lex_state = 0}, + [3865] = {.lex_state = 0}, + [3866] = {.lex_state = 0}, + [3867] = {.lex_state = 0}, + [3868] = {.lex_state = 0}, + [3869] = {.lex_state = 15}, + [3870] = {.lex_state = 0}, + [3871] = {.lex_state = 0}, + [3872] = {.lex_state = 0}, + [3873] = {.lex_state = 15}, + [3874] = {.lex_state = 0}, + [3875] = {.lex_state = 0}, + [3876] = {.lex_state = 0}, + [3877] = {.lex_state = 0}, + [3878] = {.lex_state = 0}, + [3879] = {.lex_state = 0}, + [3880] = {.lex_state = 0}, + [3881] = {.lex_state = 0}, + [3882] = {.lex_state = 0}, + [3883] = {.lex_state = 0}, + [3884] = {.lex_state = 0}, + [3885] = {.lex_state = 0}, + [3886] = {.lex_state = 15}, + [3887] = {.lex_state = 15}, + [3888] = {.lex_state = 15}, + [3889] = {.lex_state = 15}, + [3890] = {.lex_state = 15}, + [3891] = {.lex_state = 15}, + [3892] = {.lex_state = 0}, + [3893] = {.lex_state = 0}, + [3894] = {.lex_state = 0}, + [3895] = {.lex_state = 0}, + [3896] = {.lex_state = 15}, + [3897] = {.lex_state = 15}, + [3898] = {.lex_state = 0}, + [3899] = {.lex_state = 15}, + [3900] = {.lex_state = 0}, + [3901] = {.lex_state = 0}, + [3902] = {.lex_state = 0}, + [3903] = {.lex_state = 0}, + [3904] = {.lex_state = 15}, + [3905] = {.lex_state = 15}, + [3906] = {.lex_state = 0}, + [3907] = {.lex_state = 15}, + [3908] = {.lex_state = 0}, + [3909] = {.lex_state = 0}, + [3910] = {.lex_state = 0}, + [3911] = {.lex_state = 15}, + [3912] = {.lex_state = 0}, + [3913] = {.lex_state = 0}, + [3914] = {.lex_state = 15}, + [3915] = {.lex_state = 15}, + [3916] = {.lex_state = 0}, + [3917] = {.lex_state = 0}, + [3918] = {.lex_state = 0}, + [3919] = {.lex_state = 0}, + [3920] = {.lex_state = 0}, + [3921] = {.lex_state = 0}, + [3922] = {.lex_state = 0}, + [3923] = {.lex_state = 0}, + [3924] = {.lex_state = 0}, + [3925] = {.lex_state = 0}, + [3926] = {.lex_state = 0}, + [3927] = {.lex_state = 0}, + [3928] = {.lex_state = 0}, + [3929] = {.lex_state = 0}, + [3930] = {.lex_state = 0}, + [3931] = {.lex_state = 0}, + [3932] = {.lex_state = 0}, + [3933] = {.lex_state = 0}, + [3934] = {.lex_state = 0}, + [3935] = {.lex_state = 0}, + [3936] = {.lex_state = 0}, + [3937] = {.lex_state = 0}, + [3938] = {.lex_state = 0}, + [3939] = {.lex_state = 15}, + [3940] = {.lex_state = 15}, + [3941] = {.lex_state = 15}, + [3942] = {.lex_state = 15}, + [3943] = {.lex_state = 15}, + [3944] = {.lex_state = 15}, + [3945] = {.lex_state = 0}, + [3946] = {.lex_state = 0}, + [3947] = {.lex_state = 0}, + [3948] = {.lex_state = 0}, + [3949] = {.lex_state = 15}, + [3950] = {.lex_state = 15}, + [3951] = {.lex_state = 0}, + [3952] = {.lex_state = 15}, + [3953] = {.lex_state = 0}, + [3954] = {.lex_state = 0}, + [3955] = {.lex_state = 0}, + [3956] = {.lex_state = 0}, + [3957] = {.lex_state = 0}, + [3958] = {.lex_state = 15}, + [3959] = {.lex_state = 0}, + [3960] = {.lex_state = 15}, + [3961] = {.lex_state = 0}, + [3962] = {.lex_state = 0}, + [3963] = {.lex_state = 0}, + [3964] = {.lex_state = 15}, + [3965] = {.lex_state = 0}, + [3966] = {.lex_state = 0}, + [3967] = {.lex_state = 0}, + [3968] = {.lex_state = 0}, + [3969] = {.lex_state = 0}, + [3970] = {.lex_state = 0}, + [3971] = {.lex_state = 15}, + [3972] = {.lex_state = 15}, + [3973] = {.lex_state = 0}, + [3974] = {.lex_state = 0}, + [3975] = {.lex_state = 15}, + [3976] = {.lex_state = 0}, + [3977] = {.lex_state = 15}, + [3978] = {.lex_state = 0}, + [3979] = {.lex_state = 15}, + [3980] = {.lex_state = 0}, + [3981] = {.lex_state = 0}, + [3982] = {.lex_state = 0}, + [3983] = {.lex_state = 0}, + [3984] = {.lex_state = 0}, + [3985] = {.lex_state = 0}, + [3986] = {.lex_state = 0}, + [3987] = {.lex_state = 0}, + [3988] = {.lex_state = 0}, + [3989] = {.lex_state = 0}, + [3990] = {.lex_state = 0}, + [3991] = {.lex_state = 0}, + [3992] = {.lex_state = 15}, + [3993] = {.lex_state = 15}, + [3994] = {.lex_state = 15}, + [3995] = {.lex_state = 15}, + [3996] = {.lex_state = 15}, + [3997] = {.lex_state = 15}, + [3998] = {.lex_state = 0}, + [3999] = {.lex_state = 0}, + [4000] = {.lex_state = 0}, + [4001] = {.lex_state = 0}, + [4002] = {.lex_state = 15}, + [4003] = {.lex_state = 15}, + [4004] = {.lex_state = 0}, + [4005] = {.lex_state = 15}, + [4006] = {.lex_state = 0}, + [4007] = {.lex_state = 0}, + [4008] = {.lex_state = 0}, + [4009] = {.lex_state = 0}, + [4010] = {.lex_state = 15}, + [4011] = {.lex_state = 15}, + [4012] = {.lex_state = 15}, + [4013] = {.lex_state = 15}, + [4014] = {.lex_state = 0}, + [4015] = {.lex_state = 0}, + [4016] = {.lex_state = 0}, + [4017] = {.lex_state = 15}, + [4018] = {.lex_state = 0}, + [4019] = {.lex_state = 0}, + [4020] = {.lex_state = 0}, + [4021] = {.lex_state = 0}, + [4022] = {.lex_state = 0}, + [4023] = {.lex_state = 0}, + [4024] = {.lex_state = 0}, + [4025] = {.lex_state = 0}, + [4026] = {.lex_state = 0}, + [4027] = {.lex_state = 15}, + [4028] = {.lex_state = 0}, + [4029] = {.lex_state = 15}, + [4030] = {.lex_state = 13}, + [4031] = {.lex_state = 13}, + [4032] = {.lex_state = 0}, + [4033] = {.lex_state = 0}, + [4034] = {.lex_state = 15}, + [4035] = {.lex_state = 0}, + [4036] = {.lex_state = 0}, + [4037] = {.lex_state = 0}, + [4038] = {.lex_state = 0}, + [4039] = {.lex_state = 0}, + [4040] = {.lex_state = 0}, + [4041] = {.lex_state = 0}, + [4042] = {.lex_state = 13}, + [4043] = {.lex_state = 15}, + [4044] = {.lex_state = 0}, + [4045] = {.lex_state = 0}, + [4046] = {.lex_state = 0}, + [4047] = {.lex_state = 0}, + [4048] = {.lex_state = 0}, + [4049] = {.lex_state = 0}, + [4050] = {.lex_state = 15}, + [4051] = {.lex_state = 13}, + [4052] = {.lex_state = 13}, + [4053] = {.lex_state = 0}, + [4054] = {.lex_state = 0}, + [4055] = {.lex_state = 15}, + [4056] = {.lex_state = 0}, + [4057] = {.lex_state = 0}, + [4058] = {.lex_state = 0}, + [4059] = {.lex_state = 0}, + [4060] = {.lex_state = 0}, + [4061] = {.lex_state = 0}, + [4062] = {.lex_state = 0}, + [4063] = {.lex_state = 13}, + [4064] = {.lex_state = 15}, + [4065] = {.lex_state = 0}, + [4066] = {.lex_state = 0}, + [4067] = {.lex_state = 0}, + [4068] = {.lex_state = 0}, + [4069] = {.lex_state = 0}, + [4070] = {.lex_state = 0}, + [4071] = {.lex_state = 15}, + [4072] = {.lex_state = 13}, + [4073] = {.lex_state = 13}, + [4074] = {.lex_state = 0}, + [4075] = {.lex_state = 0}, + [4076] = {.lex_state = 15}, + [4077] = {.lex_state = 0}, + [4078] = {.lex_state = 0}, + [4079] = {.lex_state = 0}, + [4080] = {.lex_state = 0}, + [4081] = {.lex_state = 0}, + [4082] = {.lex_state = 0}, + [4083] = {.lex_state = 0}, + [4084] = {.lex_state = 13}, + [4085] = {.lex_state = 15}, + [4086] = {.lex_state = 0}, + [4087] = {.lex_state = 0}, + [4088] = {.lex_state = 0}, + [4089] = {.lex_state = 0}, + [4090] = {.lex_state = 0}, + [4091] = {.lex_state = 0}, + [4092] = {.lex_state = 15}, + [4093] = {.lex_state = 13}, + [4094] = {.lex_state = 13}, + [4095] = {.lex_state = 0}, + [4096] = {.lex_state = 0}, + [4097] = {.lex_state = 15}, + [4098] = {.lex_state = 0}, + [4099] = {.lex_state = 0}, + [4100] = {.lex_state = 0}, + [4101] = {.lex_state = 0}, + [4102] = {.lex_state = 0}, + [4103] = {.lex_state = 0}, + [4104] = {.lex_state = 0}, + [4105] = {.lex_state = 13}, + [4106] = {.lex_state = 15}, + [4107] = {.lex_state = 0}, + [4108] = {.lex_state = 0}, + [4109] = {.lex_state = 0}, + [4110] = {.lex_state = 0}, + [4111] = {.lex_state = 15}, + [4112] = {.lex_state = 0}, + [4113] = {.lex_state = 15}, + [4114] = {.lex_state = 13}, + [4115] = {.lex_state = 13}, + [4116] = {.lex_state = 0}, + [4117] = {.lex_state = 0}, + [4118] = {.lex_state = 15}, + [4119] = {.lex_state = 0}, + [4120] = {.lex_state = 0}, + [4121] = {.lex_state = 0}, + [4122] = {.lex_state = 0}, + [4123] = {.lex_state = 0}, + [4124] = {.lex_state = 0}, + [4125] = {.lex_state = 0}, + [4126] = {.lex_state = 13}, + [4127] = {.lex_state = 15}, + [4128] = {.lex_state = 0}, + [4129] = {.lex_state = 0}, + [4130] = {.lex_state = 0}, + [4131] = {.lex_state = 0}, + [4132] = {.lex_state = 15}, + [4133] = {.lex_state = 0}, + [4134] = {.lex_state = 15}, + [4135] = {.lex_state = 13}, + [4136] = {.lex_state = 13}, + [4137] = {.lex_state = 0}, + [4138] = {.lex_state = 0}, + [4139] = {.lex_state = 15}, + [4140] = {.lex_state = 0}, + [4141] = {.lex_state = 0}, + [4142] = {.lex_state = 0}, + [4143] = {.lex_state = 0}, + [4144] = {.lex_state = 0}, + [4145] = {.lex_state = 0}, + [4146] = {.lex_state = 0}, + [4147] = {.lex_state = 13}, + [4148] = {.lex_state = 15}, + [4149] = {.lex_state = 0}, + [4150] = {.lex_state = 0}, + [4151] = {.lex_state = 0}, + [4152] = {.lex_state = 0}, + [4153] = {.lex_state = 0}, + [4154] = {.lex_state = 0}, + [4155] = {.lex_state = 15}, + [4156] = {.lex_state = 13}, + [4157] = {.lex_state = 13}, + [4158] = {.lex_state = 0}, + [4159] = {.lex_state = 0}, + [4160] = {.lex_state = 15}, + [4161] = {.lex_state = 0}, + [4162] = {.lex_state = 0}, + [4163] = {.lex_state = 0}, + [4164] = {.lex_state = 0}, + [4165] = {.lex_state = 0}, + [4166] = {.lex_state = 0}, + [4167] = {.lex_state = 0}, + [4168] = {.lex_state = 13}, + [4169] = {.lex_state = 15}, + [4170] = {.lex_state = 0}, + [4171] = {.lex_state = 0}, + [4172] = {.lex_state = 0}, + [4173] = {.lex_state = 0}, + [4174] = {.lex_state = 0}, + [4175] = {.lex_state = 0}, + [4176] = {.lex_state = 15}, + [4177] = {.lex_state = 13}, + [4178] = {.lex_state = 13}, + [4179] = {.lex_state = 0}, + [4180] = {.lex_state = 0}, + [4181] = {.lex_state = 15}, + [4182] = {.lex_state = 0}, + [4183] = {.lex_state = 0}, + [4184] = {.lex_state = 0}, + [4185] = {.lex_state = 0}, + [4186] = {.lex_state = 0}, + [4187] = {.lex_state = 0}, + [4188] = {.lex_state = 0}, + [4189] = {.lex_state = 13}, + [4190] = {.lex_state = 15}, + [4191] = {.lex_state = 0}, + [4192] = {.lex_state = 0}, + [4193] = {.lex_state = 0}, + [4194] = {.lex_state = 0}, + [4195] = {.lex_state = 0}, + [4196] = {.lex_state = 0}, + [4197] = {.lex_state = 15}, + [4198] = {.lex_state = 13}, + [4199] = {.lex_state = 13}, + [4200] = {.lex_state = 0}, + [4201] = {.lex_state = 0}, + [4202] = {.lex_state = 15}, + [4203] = {.lex_state = 0}, + [4204] = {.lex_state = 0}, + [4205] = {.lex_state = 0}, + [4206] = {.lex_state = 0}, + [4207] = {.lex_state = 0}, + [4208] = {.lex_state = 0}, + [4209] = {.lex_state = 0}, + [4210] = {.lex_state = 13}, + [4211] = {.lex_state = 15}, + [4212] = {.lex_state = 0}, + [4213] = {.lex_state = 0}, + [4214] = {.lex_state = 0}, + [4215] = {.lex_state = 0}, + [4216] = {.lex_state = 0}, + [4217] = {.lex_state = 0}, + [4218] = {.lex_state = 15}, + [4219] = {.lex_state = 13}, + [4220] = {.lex_state = 13}, + [4221] = {.lex_state = 0}, + [4222] = {.lex_state = 0}, + [4223] = {.lex_state = 15}, + [4224] = {.lex_state = 0}, + [4225] = {.lex_state = 0}, + [4226] = {.lex_state = 0}, + [4227] = {.lex_state = 0}, + [4228] = {.lex_state = 0}, + [4229] = {.lex_state = 0}, + [4230] = {.lex_state = 0}, + [4231] = {.lex_state = 13}, + [4232] = {.lex_state = 15}, + [4233] = {.lex_state = 0}, + [4234] = {.lex_state = 0}, + [4235] = {.lex_state = 0}, + [4236] = {.lex_state = 0}, + [4237] = {.lex_state = 0}, + [4238] = {.lex_state = 0}, + [4239] = {.lex_state = 15}, + [4240] = {.lex_state = 13}, + [4241] = {.lex_state = 13}, + [4242] = {.lex_state = 0}, + [4243] = {.lex_state = 0}, + [4244] = {.lex_state = 15}, + [4245] = {.lex_state = 0}, + [4246] = {.lex_state = 0}, + [4247] = {.lex_state = 0}, + [4248] = {.lex_state = 0}, + [4249] = {.lex_state = 0}, + [4250] = {.lex_state = 0}, + [4251] = {.lex_state = 0}, + [4252] = {.lex_state = 13}, + [4253] = {.lex_state = 15}, + [4254] = {.lex_state = 0}, + [4255] = {.lex_state = 0}, + [4256] = {.lex_state = 0}, + [4257] = {.lex_state = 0}, + [4258] = {.lex_state = 15}, + [4259] = {.lex_state = 15}, + [4260] = {.lex_state = 15}, + [4261] = {.lex_state = 0}, + [4262] = {.lex_state = 15}, + [4263] = {.lex_state = 0}, + [4264] = {.lex_state = 0}, + [4265] = {.lex_state = 0}, + [4266] = {.lex_state = 0}, + [4267] = {.lex_state = 0}, + [4268] = {.lex_state = 0}, + [4269] = {.lex_state = 15}, + [4270] = {.lex_state = 15}, + [4271] = {.lex_state = 15}, + [4272] = {.lex_state = 0}, + [4273] = {.lex_state = 15}, + [4274] = {.lex_state = 0}, + [4275] = {.lex_state = 0}, + [4276] = {.lex_state = 0}, + [4277] = {.lex_state = 0}, + [4278] = {.lex_state = 0}, + [4279] = {.lex_state = 0}, + [4280] = {.lex_state = 15}, + [4281] = {.lex_state = 15}, + [4282] = {.lex_state = 15}, + [4283] = {.lex_state = 0}, + [4284] = {.lex_state = 15}, + [4285] = {.lex_state = 0}, + [4286] = {.lex_state = 0}, + [4287] = {.lex_state = 0}, + [4288] = {.lex_state = 0}, + [4289] = {.lex_state = 0}, + [4290] = {.lex_state = 0}, + [4291] = {.lex_state = 15}, + [4292] = {.lex_state = 15}, + [4293] = {.lex_state = 15}, + [4294] = {.lex_state = 0}, + [4295] = {.lex_state = 15}, + [4296] = {.lex_state = 0}, + [4297] = {.lex_state = 0}, + [4298] = {.lex_state = 0}, + [4299] = {.lex_state = 0}, + [4300] = {.lex_state = 0}, + [4301] = {.lex_state = 0}, + [4302] = {.lex_state = 15}, + [4303] = {.lex_state = 15}, + [4304] = {.lex_state = 15}, + [4305] = {.lex_state = 0}, + [4306] = {.lex_state = 15}, + [4307] = {.lex_state = 0}, + [4308] = {.lex_state = 0}, + [4309] = {.lex_state = 0}, + [4310] = {.lex_state = 0}, + [4311] = {.lex_state = 0}, + [4312] = {.lex_state = 0}, + [4313] = {.lex_state = 15}, + [4314] = {.lex_state = 15}, + [4315] = {.lex_state = 15}, + [4316] = {.lex_state = 0}, + [4317] = {.lex_state = 15}, + [4318] = {.lex_state = 0}, + [4319] = {.lex_state = 0}, + [4320] = {.lex_state = 0}, + [4321] = {.lex_state = 0}, + [4322] = {.lex_state = 0}, + [4323] = {.lex_state = 0}, + [4324] = {.lex_state = 15}, + [4325] = {.lex_state = 15}, + [4326] = {.lex_state = 15}, + [4327] = {.lex_state = 0}, + [4328] = {.lex_state = 15}, + [4329] = {.lex_state = 0}, + [4330] = {.lex_state = 0}, + [4331] = {.lex_state = 0}, + [4332] = {.lex_state = 0}, + [4333] = {.lex_state = 0}, + [4334] = {.lex_state = 0}, + [4335] = {.lex_state = 15}, + [4336] = {.lex_state = 15}, + [4337] = {.lex_state = 15}, + [4338] = {.lex_state = 0}, + [4339] = {.lex_state = 15}, + [4340] = {.lex_state = 0}, + [4341] = {.lex_state = 0}, + [4342] = {.lex_state = 0}, + [4343] = {.lex_state = 0}, + [4344] = {.lex_state = 0}, + [4345] = {.lex_state = 0}, + [4346] = {.lex_state = 15}, + [4347] = {.lex_state = 15}, + [4348] = {.lex_state = 15}, + [4349] = {.lex_state = 0}, + [4350] = {.lex_state = 15}, + [4351] = {.lex_state = 0}, + [4352] = {.lex_state = 0}, + [4353] = {.lex_state = 0}, + [4354] = {.lex_state = 0}, + [4355] = {.lex_state = 0}, + [4356] = {.lex_state = 0}, + [4357] = {.lex_state = 15}, + [4358] = {.lex_state = 15}, + [4359] = {.lex_state = 15}, + [4360] = {.lex_state = 0}, + [4361] = {.lex_state = 15}, + [4362] = {.lex_state = 0}, + [4363] = {.lex_state = 0}, + [4364] = {.lex_state = 0}, + [4365] = {.lex_state = 0}, + [4366] = {.lex_state = 0}, + [4367] = {.lex_state = 0}, + [4368] = {.lex_state = 15}, + [4369] = {.lex_state = 15}, + [4370] = {.lex_state = 15}, + [4371] = {.lex_state = 0}, + [4372] = {.lex_state = 15}, + [4373] = {.lex_state = 0}, + [4374] = {.lex_state = 0}, + [4375] = {.lex_state = 0}, + [4376] = {.lex_state = 15}, + [4377] = {.lex_state = 15}, + [4378] = {.lex_state = 0}, + [4379] = {.lex_state = 15}, + [4380] = {.lex_state = 0}, + [4381] = {.lex_state = 0}, + [4382] = {.lex_state = 0}, + [4383] = {.lex_state = 15}, + [4384] = {.lex_state = 0}, + [4385] = {.lex_state = 15}, + [4386] = {.lex_state = 0}, + [4387] = {.lex_state = 0}, + [4388] = {.lex_state = 0}, + [4389] = {.lex_state = 15}, + [4390] = {.lex_state = 0}, + [4391] = {.lex_state = 15}, + [4392] = {.lex_state = 0}, + [4393] = {.lex_state = 0}, + [4394] = {.lex_state = 0}, + [4395] = {.lex_state = 15}, + [4396] = {.lex_state = 0}, + [4397] = {.lex_state = 15}, + [4398] = {.lex_state = 0}, + [4399] = {.lex_state = 0}, + [4400] = {.lex_state = 0}, + [4401] = {.lex_state = 15}, + [4402] = {.lex_state = 0}, + [4403] = {.lex_state = 15}, + [4404] = {.lex_state = 0}, + [4405] = {.lex_state = 0}, + [4406] = {.lex_state = 0}, + [4407] = {.lex_state = 15}, + [4408] = {.lex_state = 0}, + [4409] = {.lex_state = 15}, + [4410] = {.lex_state = 0}, + [4411] = {.lex_state = 0}, + [4412] = {.lex_state = 0}, + [4413] = {.lex_state = 15}, + [4414] = {.lex_state = 0}, + [4415] = {.lex_state = 15}, + [4416] = {.lex_state = 0}, + [4417] = {.lex_state = 0}, + [4418] = {.lex_state = 0}, + [4419] = {.lex_state = 15}, + [4420] = {.lex_state = 0}, + [4421] = {.lex_state = 15}, + [4422] = {.lex_state = 0}, + [4423] = {.lex_state = 0}, + [4424] = {.lex_state = 0}, + [4425] = {.lex_state = 15}, + [4426] = {.lex_state = 0}, + [4427] = {.lex_state = 15}, + [4428] = {.lex_state = 0}, + [4429] = {.lex_state = 0}, + [4430] = {.lex_state = 0}, + [4431] = {.lex_state = 15}, + [4432] = {.lex_state = 0}, + [4433] = {.lex_state = 15}, + [4434] = {.lex_state = 0}, + [4435] = {.lex_state = 0}, + [4436] = {.lex_state = 0}, + [4437] = {.lex_state = 15}, + [4438] = {.lex_state = 0}, + [4439] = {.lex_state = 15}, + [4440] = {.lex_state = 0}, + [4441] = {.lex_state = 0}, + [4442] = {.lex_state = 0}, + [4443] = {.lex_state = 13}, + [4444] = {.lex_state = 0}, + [4445] = {.lex_state = 0}, + [4446] = {.lex_state = 13}, + [4447] = {.lex_state = 0}, + [4448] = {.lex_state = 0}, + [4449] = {.lex_state = 13}, + [4450] = {.lex_state = 0}, + [4451] = {.lex_state = 0}, + [4452] = {.lex_state = 13}, + [4453] = {.lex_state = 0}, + [4454] = {.lex_state = 0}, + [4455] = {.lex_state = 13}, + [4456] = {.lex_state = 0}, + [4457] = {.lex_state = 0}, + [4458] = {.lex_state = 13}, + [4459] = {.lex_state = 0}, + [4460] = {.lex_state = 0}, + [4461] = {.lex_state = 13}, + [4462] = {.lex_state = 0}, + [4463] = {.lex_state = 0}, + [4464] = {.lex_state = 13}, + [4465] = {.lex_state = 0}, + [4466] = {.lex_state = 0}, + [4467] = {.lex_state = 13}, + [4468] = {.lex_state = 0}, + [4469] = {.lex_state = 0}, + [4470] = {.lex_state = 13}, + [4471] = {.lex_state = 0}, + [4472] = {.lex_state = 0}, + [4473] = {.lex_state = 13}, +}; + +static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_generic_command_name] = ACTIONS(1), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1), + [aux_sym_chapter_token1] = ACTIONS(1), + [aux_sym_section_token1] = ACTIONS(1), + [aux_sym_subsection_token1] = ACTIONS(1), + [aux_sym_subsubsection_token1] = ACTIONS(1), + [aux_sym_paragraph_token1] = ACTIONS(1), + [aux_sym_subparagraph_token1] = ACTIONS(1), + [anon_sym_BSLASHitem] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [sym_word] = ACTIONS(1), + [sym_param] = ACTIONS(1), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1), + [anon_sym_BSLASHbegin] = ACTIONS(1), + [anon_sym_BSLASHend] = ACTIONS(1), + [anon_sym_BSLASHcaption] = ACTIONS(1), + [anon_sym_BSLASHcite] = ACTIONS(1), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1), + [anon_sym_BSLASHCite] = ACTIONS(1), + [anon_sym_BSLASHnocite] = ACTIONS(1), + [anon_sym_BSLASHcitet] = ACTIONS(1), + [anon_sym_BSLASHcitep] = ACTIONS(1), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1), + [anon_sym_BSLASHciteauthor] = ACTIONS(1), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1), + [anon_sym_BSLASHcitetitle] = ACTIONS(1), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1), + [anon_sym_BSLASHciteyear] = ACTIONS(1), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1), + [anon_sym_BSLASHcitedate] = ACTIONS(1), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1), + [anon_sym_BSLASHciteurl] = ACTIONS(1), + [anon_sym_BSLASHfullcite] = ACTIONS(1), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1), + [anon_sym_BSLASHcitealt] = ACTIONS(1), + [anon_sym_BSLASHcitealp] = ACTIONS(1), + [anon_sym_BSLASHcitetext] = ACTIONS(1), + [anon_sym_BSLASHparencite] = ACTIONS(1), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1), + [anon_sym_BSLASHParencite] = ACTIONS(1), + [anon_sym_BSLASHfootcite] = ACTIONS(1), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1), + [anon_sym_BSLASHtextcite] = ACTIONS(1), + [anon_sym_BSLASHTextcite] = ACTIONS(1), + [anon_sym_BSLASHsmartcite] = ACTIONS(1), + [anon_sym_BSLASHSmartcite] = ACTIONS(1), + [anon_sym_BSLASHsupercite] = ACTIONS(1), + [anon_sym_BSLASHautocite] = ACTIONS(1), + [anon_sym_BSLASHAutocite] = ACTIONS(1), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1), + [anon_sym_BSLASHvolcite] = ACTIONS(1), + [anon_sym_BSLASHVolcite] = ACTIONS(1), + [anon_sym_BSLASHpvolcite] = ACTIONS(1), + [anon_sym_BSLASHPvolcite] = ACTIONS(1), + [anon_sym_BSLASHfvolcite] = ACTIONS(1), + [anon_sym_BSLASHftvolcite] = ACTIONS(1), + [anon_sym_BSLASHsvolcite] = ACTIONS(1), + [anon_sym_BSLASHSvolcite] = ACTIONS(1), + [anon_sym_BSLASHtvolcite] = ACTIONS(1), + [anon_sym_BSLASHTvolcite] = ACTIONS(1), + [anon_sym_BSLASHavolcite] = ACTIONS(1), + [anon_sym_BSLASHAvolcite] = ACTIONS(1), + [anon_sym_BSLASHnotecite] = ACTIONS(1), + [anon_sym_BSLASHpnotecite] = ACTIONS(1), + [anon_sym_BSLASHPnotecite] = ACTIONS(1), + [anon_sym_BSLASHfnotecite] = ACTIONS(1), + [anon_sym_BSLASHusepackage] = ACTIONS(1), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1), + [anon_sym_BSLASHinclude] = ACTIONS(1), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1), + [anon_sym_BSLASHinput] = ACTIONS(1), + [anon_sym_BSLASHsubfile] = ACTIONS(1), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1), + [anon_sym_BSLASHbibliography] = ACTIONS(1), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1), + [anon_sym_BSLASHincludesvg] = ACTIONS(1), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1), + [anon_sym_BSLASHimport] = ACTIONS(1), + [anon_sym_BSLASHsubimport] = ACTIONS(1), + [anon_sym_BSLASHinputfrom] = ACTIONS(1), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1), + [anon_sym_BSLASHincludefrom] = ACTIONS(1), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1), + [anon_sym_BSLASHlabel] = ACTIONS(1), + [anon_sym_BSLASHref] = ACTIONS(1), + [anon_sym_BSLASHvref] = ACTIONS(1), + [anon_sym_BSLASHVref] = ACTIONS(1), + [anon_sym_BSLASHautoref] = ACTIONS(1), + [anon_sym_BSLASHpageref] = ACTIONS(1), + [anon_sym_BSLASHcref] = ACTIONS(1), + [anon_sym_BSLASHCref] = ACTIONS(1), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1), + [anon_sym_BSLASHnamecref] = ACTIONS(1), + [anon_sym_BSLASHnameCref] = ACTIONS(1), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1), + [anon_sym_BSLASHlabelcref] = ACTIONS(1), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1), + [anon_sym_BSLASHeqref] = ACTIONS(1), + [anon_sym_BSLASHcrefrange] = ACTIONS(1), + [anon_sym_BSLASHCrefrange] = ACTIONS(1), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1), + [anon_sym_BSLASHnewlabel] = ACTIONS(1), + [anon_sym_BSLASHnewcommand] = ACTIONS(1), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1), + [aux_sym_command_definition_token1] = ACTIONS(1), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1), + [anon_sym_BSLASHgls] = ACTIONS(1), + [anon_sym_BSLASHGls] = ACTIONS(1), + [anon_sym_BSLASHGLS] = ACTIONS(1), + [anon_sym_BSLASHglspl] = ACTIONS(1), + [anon_sym_BSLASHGlspl] = ACTIONS(1), + [anon_sym_BSLASHGLSpl] = ACTIONS(1), + [anon_sym_BSLASHglsdisp] = ACTIONS(1), + [anon_sym_BSLASHglslink] = ACTIONS(1), + [anon_sym_BSLASHglstext] = ACTIONS(1), + [anon_sym_BSLASHGlstext] = ACTIONS(1), + [anon_sym_BSLASHGLStext] = ACTIONS(1), + [anon_sym_BSLASHglsfirst] = ACTIONS(1), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1), + [anon_sym_BSLASHglsplural] = ACTIONS(1), + [anon_sym_BSLASHGlsplural] = ACTIONS(1), + [anon_sym_BSLASHGLSplural] = ACTIONS(1), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1), + [anon_sym_BSLASHglsname] = ACTIONS(1), + [anon_sym_BSLASHGlsname] = ACTIONS(1), + [anon_sym_BSLASHGLSname] = ACTIONS(1), + [anon_sym_BSLASHglssymbol] = ACTIONS(1), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1), + [anon_sym_BSLASHglsdesc] = ACTIONS(1), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1), + [anon_sym_BSLASHglsuseri] = ACTIONS(1), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1), + [anon_sym_BSLASHglsuserii] = ACTIONS(1), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1), + [anon_sym_BSLASHglsuserv] = ACTIONS(1), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1), + [anon_sym_BSLASHglsuservi] = ACTIONS(1), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1), + [anon_sym_BSLASHnewacronym] = ACTIONS(1), + [anon_sym_BSLASHacrshort] = ACTIONS(1), + [anon_sym_BSLASHAcrshort] = ACTIONS(1), + [anon_sym_BSLASHACRshort] = ACTIONS(1), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1), + [anon_sym_BSLASHacrlong] = ACTIONS(1), + [anon_sym_BSLASHAcrlong] = ACTIONS(1), + [anon_sym_BSLASHACRlong] = ACTIONS(1), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1), + [anon_sym_BSLASHacrfull] = ACTIONS(1), + [anon_sym_BSLASHAcrfull] = ACTIONS(1), + [anon_sym_BSLASHACRfull] = ACTIONS(1), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1), + [anon_sym_BSLASHacs] = ACTIONS(1), + [anon_sym_BSLASHAcs] = ACTIONS(1), + [anon_sym_BSLASHacsp] = ACTIONS(1), + [anon_sym_BSLASHAcsp] = ACTIONS(1), + [anon_sym_BSLASHacl] = ACTIONS(1), + [anon_sym_BSLASHAcl] = ACTIONS(1), + [anon_sym_BSLASHaclp] = ACTIONS(1), + [anon_sym_BSLASHAclp] = ACTIONS(1), + [anon_sym_BSLASHacf] = ACTIONS(1), + [anon_sym_BSLASHAcf] = ACTIONS(1), + [anon_sym_BSLASHacfp] = ACTIONS(1), + [anon_sym_BSLASHAcfp] = ACTIONS(1), + [anon_sym_BSLASHac] = ACTIONS(1), + [anon_sym_BSLASHAc] = ACTIONS(1), + [anon_sym_BSLASHacp] = ACTIONS(1), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1), + [anon_sym_BSLASHcolor] = ACTIONS(1), + [anon_sym_BSLASHcolorbox] = ACTIONS(1), + [anon_sym_BSLASHtextcolor] = ACTIONS(1), + [anon_sym_BSLASHpagecolor] = ACTIONS(1), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1), + }, + [1] = { + [sym_document] = STATE(3703), + [sym__simple_content] = STATE(197), + [sym__content] = STATE(197), + [sym_part] = STATE(197), + [sym_chapter] = STATE(197), + [sym_section] = STATE(197), + [sym_subsection] = STATE(197), + [sym_subsubsection] = STATE(197), + [sym_paragraph] = STATE(197), + [sym_subparagraph] = STATE(197), + [sym_enum_item] = STATE(197), + [sym_brace_group] = STATE(197), + [sym_mixed_group] = STATE(197), + [sym_text] = STATE(197), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(197), + [sym_inline_formula] = STATE(197), + [sym_begin] = STATE(52), + [sym_environment] = STATE(197), + [sym_caption] = STATE(197), + [sym_citation] = STATE(197), + [sym_package_include] = STATE(197), + [sym_class_include] = STATE(197), + [sym_latex_include] = STATE(197), + [sym_latex_input] = STATE(197), + [sym_biblatex_include] = STATE(197), + [sym_bibtex_include] = STATE(197), + [sym_graphics_include] = STATE(197), + [sym_svg_include] = STATE(197), + [sym_inkscape_include] = STATE(197), + [sym_verbatim_include] = STATE(197), + [sym_import] = STATE(197), + [sym_label_definition] = STATE(197), + [sym_label_reference] = STATE(197), + [sym_equation_label_reference] = STATE(197), + [sym_label_reference_range] = STATE(197), + [sym_label_number] = STATE(197), + [sym_command_definition] = STATE(197), + [sym_math_operator] = STATE(197), + [sym_glossary_entry_definition] = STATE(197), + [sym_glossary_entry_reference] = STATE(197), + [sym_acronym_definition] = STATE(197), + [sym_acronym_reference] = STATE(197), + [sym_theorem_definition] = STATE(197), + [sym_color_reference] = STATE(197), + [sym_color_definition] = STATE(197), + [sym_color_set_definition] = STATE(197), + [sym_pgf_library_import] = STATE(197), + [sym_tikz_library_import] = STATE(197), + [sym_generic_command] = STATE(197), + [aux_sym_document_repeat1] = STATE(197), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(31), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [2] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [ts_builtin_sym_end] = ACTIONS(109), + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(111), + [aux_sym_chapter_token1] = ACTIONS(111), + [aux_sym_section_token1] = ACTIONS(111), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_RPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [3] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [ts_builtin_sym_end] = ACTIONS(115), + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(117), + [aux_sym_chapter_token1] = ACTIONS(117), + [aux_sym_section_token1] = ACTIONS(117), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [4] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [ts_builtin_sym_end] = ACTIONS(121), + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(123), + [aux_sym_chapter_token1] = ACTIONS(123), + [aux_sym_section_token1] = ACTIONS(123), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [5] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [ts_builtin_sym_end] = ACTIONS(125), + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(127), + [aux_sym_chapter_token1] = ACTIONS(127), + [aux_sym_section_token1] = ACTIONS(127), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [6] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(129), + [sym_generic_command_name] = ACTIONS(131), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(134), + [aux_sym_chapter_token1] = ACTIONS(137), + [aux_sym_section_token1] = ACTIONS(140), + [aux_sym_subsection_token1] = ACTIONS(143), + [aux_sym_subsubsection_token1] = ACTIONS(146), + [aux_sym_paragraph_token1] = ACTIONS(149), + [aux_sym_subparagraph_token1] = ACTIONS(152), + [anon_sym_BSLASHitem] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(158), + [anon_sym_RBRACK] = ACTIONS(129), + [anon_sym_LBRACE] = ACTIONS(161), + [anon_sym_RBRACE] = ACTIONS(129), + [anon_sym_LPAREN] = ACTIONS(158), + [anon_sym_RPAREN] = ACTIONS(129), + [anon_sym_COMMA] = ACTIONS(164), + [anon_sym_EQ] = ACTIONS(164), + [sym_word] = ACTIONS(164), + [sym_param] = ACTIONS(167), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(170), + [anon_sym_BSLASH_LBRACK] = ACTIONS(170), + [anon_sym_DOLLAR] = ACTIONS(173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(176), + [anon_sym_BSLASHbegin] = ACTIONS(179), + [anon_sym_BSLASHcaption] = ACTIONS(182), + [anon_sym_BSLASHcite] = ACTIONS(185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(188), + [anon_sym_BSLASHCite] = ACTIONS(185), + [anon_sym_BSLASHnocite] = ACTIONS(185), + [anon_sym_BSLASHcitet] = ACTIONS(185), + [anon_sym_BSLASHcitep] = ACTIONS(185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(188), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(188), + [anon_sym_BSLASHciteauthor] = ACTIONS(185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(188), + [anon_sym_BSLASHCiteauthor] = ACTIONS(185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(188), + [anon_sym_BSLASHcitetitle] = ACTIONS(185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(188), + [anon_sym_BSLASHciteyear] = ACTIONS(185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(188), + [anon_sym_BSLASHcitedate] = ACTIONS(185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(188), + [anon_sym_BSLASHciteurl] = ACTIONS(185), + [anon_sym_BSLASHfullcite] = ACTIONS(185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(185), + [anon_sym_BSLASHcitealt] = ACTIONS(185), + [anon_sym_BSLASHcitealp] = ACTIONS(185), + [anon_sym_BSLASHcitetext] = ACTIONS(185), + [anon_sym_BSLASHparencite] = ACTIONS(185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(188), + [anon_sym_BSLASHParencite] = ACTIONS(185), + [anon_sym_BSLASHfootcite] = ACTIONS(185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(185), + [anon_sym_BSLASHtextcite] = ACTIONS(185), + [anon_sym_BSLASHTextcite] = ACTIONS(185), + [anon_sym_BSLASHsmartcite] = ACTIONS(185), + [anon_sym_BSLASHSmartcite] = ACTIONS(185), + [anon_sym_BSLASHsupercite] = ACTIONS(185), + [anon_sym_BSLASHautocite] = ACTIONS(185), + [anon_sym_BSLASHAutocite] = ACTIONS(185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(188), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(188), + [anon_sym_BSLASHvolcite] = ACTIONS(185), + [anon_sym_BSLASHVolcite] = ACTIONS(185), + [anon_sym_BSLASHpvolcite] = ACTIONS(185), + [anon_sym_BSLASHPvolcite] = ACTIONS(185), + [anon_sym_BSLASHfvolcite] = ACTIONS(185), + [anon_sym_BSLASHftvolcite] = ACTIONS(185), + [anon_sym_BSLASHsvolcite] = ACTIONS(185), + [anon_sym_BSLASHSvolcite] = ACTIONS(185), + [anon_sym_BSLASHtvolcite] = ACTIONS(185), + [anon_sym_BSLASHTvolcite] = ACTIONS(185), + [anon_sym_BSLASHavolcite] = ACTIONS(185), + [anon_sym_BSLASHAvolcite] = ACTIONS(185), + [anon_sym_BSLASHnotecite] = ACTIONS(185), + [anon_sym_BSLASHpnotecite] = ACTIONS(185), + [anon_sym_BSLASHPnotecite] = ACTIONS(185), + [anon_sym_BSLASHfnotecite] = ACTIONS(185), + [anon_sym_BSLASHusepackage] = ACTIONS(191), + [anon_sym_BSLASHRequirePackage] = ACTIONS(191), + [anon_sym_BSLASHdocumentclass] = ACTIONS(194), + [anon_sym_BSLASHinclude] = ACTIONS(197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(197), + [anon_sym_BSLASHinput] = ACTIONS(200), + [anon_sym_BSLASHsubfile] = ACTIONS(200), + [anon_sym_BSLASHaddbibresource] = ACTIONS(203), + [anon_sym_BSLASHbibliography] = ACTIONS(206), + [anon_sym_BSLASHincludegraphics] = ACTIONS(209), + [anon_sym_BSLASHincludesvg] = ACTIONS(212), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(215), + [anon_sym_BSLASHverbatiminput] = ACTIONS(218), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(218), + [anon_sym_BSLASHimport] = ACTIONS(221), + [anon_sym_BSLASHsubimport] = ACTIONS(221), + [anon_sym_BSLASHinputfrom] = ACTIONS(221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(221), + [anon_sym_BSLASHincludefrom] = ACTIONS(221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(221), + [anon_sym_BSLASHlabel] = ACTIONS(224), + [anon_sym_BSLASHref] = ACTIONS(227), + [anon_sym_BSLASHvref] = ACTIONS(227), + [anon_sym_BSLASHVref] = ACTIONS(227), + [anon_sym_BSLASHautoref] = ACTIONS(227), + [anon_sym_BSLASHpageref] = ACTIONS(227), + [anon_sym_BSLASHcref] = ACTIONS(227), + [anon_sym_BSLASHCref] = ACTIONS(227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(230), + [anon_sym_BSLASHCref_STAR] = ACTIONS(230), + [anon_sym_BSLASHnamecref] = ACTIONS(227), + [anon_sym_BSLASHnameCref] = ACTIONS(227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(227), + [anon_sym_BSLASHlabelcref] = ACTIONS(227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(227), + [anon_sym_BSLASHeqref] = ACTIONS(233), + [anon_sym_BSLASHcrefrange] = ACTIONS(236), + [anon_sym_BSLASHCrefrange] = ACTIONS(236), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(239), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(239), + [anon_sym_BSLASHnewlabel] = ACTIONS(242), + [anon_sym_BSLASHnewcommand] = ACTIONS(245), + [anon_sym_BSLASHrenewcommand] = ACTIONS(245), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(245), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(248), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(251), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(254), + [anon_sym_BSLASHgls] = ACTIONS(257), + [anon_sym_BSLASHGls] = ACTIONS(257), + [anon_sym_BSLASHGLS] = ACTIONS(257), + [anon_sym_BSLASHglspl] = ACTIONS(257), + [anon_sym_BSLASHGlspl] = ACTIONS(257), + [anon_sym_BSLASHGLSpl] = ACTIONS(257), + [anon_sym_BSLASHglsdisp] = ACTIONS(257), + [anon_sym_BSLASHglslink] = ACTIONS(257), + [anon_sym_BSLASHglstext] = ACTIONS(257), + [anon_sym_BSLASHGlstext] = ACTIONS(257), + [anon_sym_BSLASHGLStext] = ACTIONS(257), + [anon_sym_BSLASHglsfirst] = ACTIONS(257), + [anon_sym_BSLASHGlsfirst] = ACTIONS(257), + [anon_sym_BSLASHGLSfirst] = ACTIONS(257), + [anon_sym_BSLASHglsplural] = ACTIONS(257), + [anon_sym_BSLASHGlsplural] = ACTIONS(257), + [anon_sym_BSLASHGLSplural] = ACTIONS(257), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(257), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(257), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(257), + [anon_sym_BSLASHglsname] = ACTIONS(257), + [anon_sym_BSLASHGlsname] = ACTIONS(257), + [anon_sym_BSLASHGLSname] = ACTIONS(257), + [anon_sym_BSLASHglssymbol] = ACTIONS(257), + [anon_sym_BSLASHGlssymbol] = ACTIONS(257), + [anon_sym_BSLASHglsdesc] = ACTIONS(257), + [anon_sym_BSLASHGlsdesc] = ACTIONS(257), + [anon_sym_BSLASHGLSdesc] = ACTIONS(257), + [anon_sym_BSLASHglsuseri] = ACTIONS(257), + [anon_sym_BSLASHGlsuseri] = ACTIONS(257), + [anon_sym_BSLASHGLSuseri] = ACTIONS(257), + [anon_sym_BSLASHglsuserii] = ACTIONS(257), + [anon_sym_BSLASHGlsuserii] = ACTIONS(257), + [anon_sym_BSLASHGLSuserii] = ACTIONS(257), + [anon_sym_BSLASHglsuseriii] = ACTIONS(257), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(257), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(257), + [anon_sym_BSLASHglsuseriv] = ACTIONS(257), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(257), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(257), + [anon_sym_BSLASHglsuserv] = ACTIONS(257), + [anon_sym_BSLASHGlsuserv] = ACTIONS(257), + [anon_sym_BSLASHGLSuserv] = ACTIONS(257), + [anon_sym_BSLASHglsuservi] = ACTIONS(257), + [anon_sym_BSLASHGlsuservi] = ACTIONS(257), + [anon_sym_BSLASHGLSuservi] = ACTIONS(257), + [anon_sym_BSLASHnewacronym] = ACTIONS(260), + [anon_sym_BSLASHacrshort] = ACTIONS(263), + [anon_sym_BSLASHAcrshort] = ACTIONS(263), + [anon_sym_BSLASHACRshort] = ACTIONS(263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(263), + [anon_sym_BSLASHacrlong] = ACTIONS(263), + [anon_sym_BSLASHAcrlong] = ACTIONS(263), + [anon_sym_BSLASHACRlong] = ACTIONS(263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(263), + [anon_sym_BSLASHacrfull] = ACTIONS(263), + [anon_sym_BSLASHAcrfull] = ACTIONS(263), + [anon_sym_BSLASHACRfull] = ACTIONS(263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(263), + [anon_sym_BSLASHacs] = ACTIONS(263), + [anon_sym_BSLASHAcs] = ACTIONS(263), + [anon_sym_BSLASHacsp] = ACTIONS(263), + [anon_sym_BSLASHAcsp] = ACTIONS(263), + [anon_sym_BSLASHacl] = ACTIONS(263), + [anon_sym_BSLASHAcl] = ACTIONS(263), + [anon_sym_BSLASHaclp] = ACTIONS(263), + [anon_sym_BSLASHAclp] = ACTIONS(263), + [anon_sym_BSLASHacf] = ACTIONS(263), + [anon_sym_BSLASHAcf] = ACTIONS(263), + [anon_sym_BSLASHacfp] = ACTIONS(263), + [anon_sym_BSLASHAcfp] = ACTIONS(263), + [anon_sym_BSLASHac] = ACTIONS(263), + [anon_sym_BSLASHAc] = ACTIONS(263), + [anon_sym_BSLASHacp] = ACTIONS(263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(266), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(266), + [anon_sym_BSLASHcolor] = ACTIONS(269), + [anon_sym_BSLASHcolorbox] = ACTIONS(269), + [anon_sym_BSLASHtextcolor] = ACTIONS(269), + [anon_sym_BSLASHpagecolor] = ACTIONS(269), + [anon_sym_BSLASHdefinecolor] = ACTIONS(272), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(275), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(278), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(281), + }, + [7] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(111), + [aux_sym_section_token1] = ACTIONS(111), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [8] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(111), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [9] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(123), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [10] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [11] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(308), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(310), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [12] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(410), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(414), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [13] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [14] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [15] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [16] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [17] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [18] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [19] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [20] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [21] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(117), + [aux_sym_section_token1] = ACTIONS(117), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [22] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(123), + [aux_sym_section_token1] = ACTIONS(123), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [23] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(127), + [aux_sym_section_token1] = ACTIONS(127), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [24] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [25] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(308), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(310), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [26] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [27] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [28] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [29] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [30] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [31] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [32] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(117), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [33] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [34] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [35] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [36] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [37] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [38] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [39] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(127), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [40] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [41] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(410), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(414), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [42] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [43] = { + [sym__simple_content] = STATE(110), + [sym__content] = STATE(110), + [sym_part] = STATE(110), + [sym_chapter] = STATE(110), + [sym_section] = STATE(110), + [sym_subsection] = STATE(110), + [sym_subsubsection] = STATE(110), + [sym_paragraph] = STATE(110), + [sym_subparagraph] = STATE(110), + [sym_enum_item] = STATE(110), + [sym_brace_group] = STATE(110), + [sym_mixed_group] = STATE(110), + [sym_text] = STATE(110), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(110), + [sym_inline_formula] = STATE(110), + [sym_begin] = STATE(52), + [sym_environment] = STATE(110), + [sym_caption] = STATE(110), + [sym_citation] = STATE(110), + [sym_package_include] = STATE(110), + [sym_class_include] = STATE(110), + [sym_latex_include] = STATE(110), + [sym_latex_input] = STATE(110), + [sym_biblatex_include] = STATE(110), + [sym_bibtex_include] = STATE(110), + [sym_graphics_include] = STATE(110), + [sym_svg_include] = STATE(110), + [sym_inkscape_include] = STATE(110), + [sym_verbatim_include] = STATE(110), + [sym_import] = STATE(110), + [sym_label_definition] = STATE(110), + [sym_label_reference] = STATE(110), + [sym_equation_label_reference] = STATE(110), + [sym_label_reference_range] = STATE(110), + [sym_label_number] = STATE(110), + [sym_command_definition] = STATE(110), + [sym_math_operator] = STATE(110), + [sym_glossary_entry_definition] = STATE(110), + [sym_glossary_entry_reference] = STATE(110), + [sym_acronym_definition] = STATE(110), + [sym_acronym_reference] = STATE(110), + [sym_theorem_definition] = STATE(110), + [sym_color_reference] = STATE(110), + [sym_color_definition] = STATE(110), + [sym_color_set_definition] = STATE(110), + [sym_pgf_library_import] = STATE(110), + [sym_tikz_library_import] = STATE(110), + [sym_generic_command] = STATE(110), + [aux_sym_document_repeat1] = STATE(110), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(488), + [sym_param] = ACTIONS(490), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [44] = { + [sym__simple_content] = STATE(57), + [sym__content] = STATE(57), + [sym_part] = STATE(57), + [sym_chapter] = STATE(57), + [sym_section] = STATE(57), + [sym_subsection] = STATE(57), + [sym_subsubsection] = STATE(57), + [sym_paragraph] = STATE(57), + [sym_subparagraph] = STATE(57), + [sym_enum_item] = STATE(57), + [sym_brace_group] = STATE(57), + [sym_mixed_group] = STATE(57), + [sym_text] = STATE(57), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(57), + [sym_inline_formula] = STATE(57), + [sym_begin] = STATE(73), + [sym_end] = STATE(1862), + [sym_environment] = STATE(57), + [sym_caption] = STATE(57), + [sym_citation] = STATE(57), + [sym_package_include] = STATE(57), + [sym_class_include] = STATE(57), + [sym_latex_include] = STATE(57), + [sym_latex_input] = STATE(57), + [sym_biblatex_include] = STATE(57), + [sym_bibtex_include] = STATE(57), + [sym_graphics_include] = STATE(57), + [sym_svg_include] = STATE(57), + [sym_inkscape_include] = STATE(57), + [sym_verbatim_include] = STATE(57), + [sym_import] = STATE(57), + [sym_label_definition] = STATE(57), + [sym_label_reference] = STATE(57), + [sym_equation_label_reference] = STATE(57), + [sym_label_reference_range] = STATE(57), + [sym_label_number] = STATE(57), + [sym_command_definition] = STATE(57), + [sym_math_operator] = STATE(57), + [sym_glossary_entry_definition] = STATE(57), + [sym_glossary_entry_reference] = STATE(57), + [sym_acronym_definition] = STATE(57), + [sym_acronym_reference] = STATE(57), + [sym_theorem_definition] = STATE(57), + [sym_color_reference] = STATE(57), + [sym_color_definition] = STATE(57), + [sym_color_set_definition] = STATE(57), + [sym_pgf_library_import] = STATE(57), + [sym_tikz_library_import] = STATE(57), + [sym_generic_command] = STATE(57), + [aux_sym_document_repeat1] = STATE(57), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(516), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(524), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [45] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(111), + [aux_sym_chapter_token1] = ACTIONS(111), + [aux_sym_section_token1] = ACTIONS(111), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHend] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [46] = { + [sym__simple_content] = STATE(70), + [sym__content] = STATE(70), + [sym_part] = STATE(70), + [sym_chapter] = STATE(70), + [sym_section] = STATE(70), + [sym_subsection] = STATE(70), + [sym_subsubsection] = STATE(70), + [sym_paragraph] = STATE(70), + [sym_subparagraph] = STATE(70), + [sym_enum_item] = STATE(70), + [sym_brace_group] = STATE(70), + [sym_mixed_group] = STATE(70), + [sym_text] = STATE(70), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(70), + [sym_inline_formula] = STATE(70), + [sym_begin] = STATE(52), + [sym_environment] = STATE(70), + [sym_caption] = STATE(70), + [sym_citation] = STATE(70), + [sym_package_include] = STATE(70), + [sym_class_include] = STATE(70), + [sym_latex_include] = STATE(70), + [sym_latex_input] = STATE(70), + [sym_biblatex_include] = STATE(70), + [sym_bibtex_include] = STATE(70), + [sym_graphics_include] = STATE(70), + [sym_svg_include] = STATE(70), + [sym_inkscape_include] = STATE(70), + [sym_verbatim_include] = STATE(70), + [sym_import] = STATE(70), + [sym_label_definition] = STATE(70), + [sym_label_reference] = STATE(70), + [sym_equation_label_reference] = STATE(70), + [sym_label_reference_range] = STATE(70), + [sym_label_number] = STATE(70), + [sym_command_definition] = STATE(70), + [sym_math_operator] = STATE(70), + [sym_glossary_entry_definition] = STATE(70), + [sym_glossary_entry_reference] = STATE(70), + [sym_acronym_definition] = STATE(70), + [sym_acronym_reference] = STATE(70), + [sym_theorem_definition] = STATE(70), + [sym_color_reference] = STATE(70), + [sym_color_definition] = STATE(70), + [sym_color_set_definition] = STATE(70), + [sym_pgf_library_import] = STATE(70), + [sym_tikz_library_import] = STATE(70), + [sym_generic_command] = STATE(70), + [aux_sym_document_repeat1] = STATE(70), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(594), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(596), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [47] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(117), + [aux_sym_chapter_token1] = ACTIONS(117), + [aux_sym_section_token1] = ACTIONS(117), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHend] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [48] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(123), + [aux_sym_chapter_token1] = ACTIONS(123), + [aux_sym_section_token1] = ACTIONS(123), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHend] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [49] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(127), + [aux_sym_chapter_token1] = ACTIONS(127), + [aux_sym_section_token1] = ACTIONS(127), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHend] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [50] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(123), + [aux_sym_chapter_token1] = ACTIONS(123), + [aux_sym_section_token1] = ACTIONS(123), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASH_RPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [51] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(111), + [aux_sym_chapter_token1] = ACTIONS(111), + [aux_sym_section_token1] = ACTIONS(111), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASH_RPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [52] = { + [sym__simple_content] = STATE(108), + [sym__content] = STATE(108), + [sym_part] = STATE(108), + [sym_chapter] = STATE(108), + [sym_section] = STATE(108), + [sym_subsection] = STATE(108), + [sym_subsubsection] = STATE(108), + [sym_paragraph] = STATE(108), + [sym_subparagraph] = STATE(108), + [sym_enum_item] = STATE(108), + [sym_brace_group] = STATE(108), + [sym_mixed_group] = STATE(108), + [sym_text] = STATE(108), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(108), + [sym_inline_formula] = STATE(108), + [sym_begin] = STATE(73), + [sym_end] = STATE(500), + [sym_environment] = STATE(108), + [sym_caption] = STATE(108), + [sym_citation] = STATE(108), + [sym_package_include] = STATE(108), + [sym_class_include] = STATE(108), + [sym_latex_include] = STATE(108), + [sym_latex_input] = STATE(108), + [sym_biblatex_include] = STATE(108), + [sym_bibtex_include] = STATE(108), + [sym_graphics_include] = STATE(108), + [sym_svg_include] = STATE(108), + [sym_inkscape_include] = STATE(108), + [sym_verbatim_include] = STATE(108), + [sym_import] = STATE(108), + [sym_label_definition] = STATE(108), + [sym_label_reference] = STATE(108), + [sym_equation_label_reference] = STATE(108), + [sym_label_reference_range] = STATE(108), + [sym_label_number] = STATE(108), + [sym_command_definition] = STATE(108), + [sym_math_operator] = STATE(108), + [sym_glossary_entry_definition] = STATE(108), + [sym_glossary_entry_reference] = STATE(108), + [sym_acronym_definition] = STATE(108), + [sym_acronym_reference] = STATE(108), + [sym_theorem_definition] = STATE(108), + [sym_color_reference] = STATE(108), + [sym_color_definition] = STATE(108), + [sym_color_set_definition] = STATE(108), + [sym_pgf_library_import] = STATE(108), + [sym_tikz_library_import] = STATE(108), + [sym_generic_command] = STATE(108), + [aux_sym_document_repeat1] = STATE(108), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(598), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(600), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [53] = { + [sym__simple_content] = STATE(65), + [sym__content] = STATE(65), + [sym_part] = STATE(65), + [sym_chapter] = STATE(65), + [sym_section] = STATE(65), + [sym_subsection] = STATE(65), + [sym_subsubsection] = STATE(65), + [sym_paragraph] = STATE(65), + [sym_subparagraph] = STATE(65), + [sym_enum_item] = STATE(65), + [sym_brace_group] = STATE(65), + [sym_mixed_group] = STATE(65), + [sym_text] = STATE(65), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_begin] = STATE(52), + [sym_environment] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_latex_input] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_equation_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_command_definition] = STATE(65), + [sym_math_operator] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_pgf_library_import] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_generic_command] = STATE(65), + [aux_sym_document_repeat1] = STATE(65), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(604), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [54] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(127), + [aux_sym_chapter_token1] = ACTIONS(127), + [aux_sym_section_token1] = ACTIONS(127), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_BSLASH_RBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [55] = { + [sym__simple_content] = STATE(111), + [sym_chapter] = STATE(111), + [sym_section] = STATE(111), + [sym_subsection] = STATE(111), + [sym_subsubsection] = STATE(111), + [sym_paragraph] = STATE(111), + [sym_subparagraph] = STATE(111), + [sym_enum_item] = STATE(111), + [sym_brace_group] = STATE(111), + [sym_mixed_group] = STATE(111), + [sym_text] = STATE(111), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(111), + [sym_inline_formula] = STATE(111), + [sym_begin] = STATE(52), + [sym_environment] = STATE(111), + [sym_caption] = STATE(111), + [sym_citation] = STATE(111), + [sym_package_include] = STATE(111), + [sym_class_include] = STATE(111), + [sym_latex_include] = STATE(111), + [sym_latex_input] = STATE(111), + [sym_biblatex_include] = STATE(111), + [sym_bibtex_include] = STATE(111), + [sym_graphics_include] = STATE(111), + [sym_svg_include] = STATE(111), + [sym_inkscape_include] = STATE(111), + [sym_verbatim_include] = STATE(111), + [sym_import] = STATE(111), + [sym_label_definition] = STATE(111), + [sym_label_reference] = STATE(111), + [sym_equation_label_reference] = STATE(111), + [sym_label_reference_range] = STATE(111), + [sym_label_number] = STATE(111), + [sym_command_definition] = STATE(111), + [sym_math_operator] = STATE(111), + [sym_glossary_entry_definition] = STATE(111), + [sym_glossary_entry_reference] = STATE(111), + [sym_acronym_definition] = STATE(111), + [sym_acronym_reference] = STATE(111), + [sym_theorem_definition] = STATE(111), + [sym_color_reference] = STATE(111), + [sym_color_definition] = STATE(111), + [sym_color_set_definition] = STATE(111), + [sym_pgf_library_import] = STATE(111), + [sym_tikz_library_import] = STATE(111), + [sym_generic_command] = STATE(111), + [aux_sym_part_repeat1] = STATE(111), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(606), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(608), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(606), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(610), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [56] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(117), + [aux_sym_chapter_token1] = ACTIONS(117), + [aux_sym_section_token1] = ACTIONS(117), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_BSLASH_RBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [57] = { + [sym__simple_content] = STATE(157), + [sym__content] = STATE(157), + [sym_part] = STATE(157), + [sym_chapter] = STATE(157), + [sym_section] = STATE(157), + [sym_subsection] = STATE(157), + [sym_subsubsection] = STATE(157), + [sym_paragraph] = STATE(157), + [sym_subparagraph] = STATE(157), + [sym_enum_item] = STATE(157), + [sym_brace_group] = STATE(157), + [sym_mixed_group] = STATE(157), + [sym_text] = STATE(157), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_begin] = STATE(73), + [sym_end] = STATE(1840), + [sym_environment] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_latex_input] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_equation_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_command_definition] = STATE(157), + [sym_math_operator] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_pgf_library_import] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_generic_command] = STATE(157), + [aux_sym_document_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(524), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [58] = { + [sym__simple_content] = STATE(61), + [sym__content] = STATE(61), + [sym_part] = STATE(61), + [sym_chapter] = STATE(61), + [sym_section] = STATE(61), + [sym_subsection] = STATE(61), + [sym_subsubsection] = STATE(61), + [sym_paragraph] = STATE(61), + [sym_subparagraph] = STATE(61), + [sym_enum_item] = STATE(61), + [sym_brace_group] = STATE(61), + [sym_mixed_group] = STATE(61), + [sym_text] = STATE(61), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(61), + [sym_inline_formula] = STATE(61), + [sym_begin] = STATE(52), + [sym_environment] = STATE(61), + [sym_caption] = STATE(61), + [sym_citation] = STATE(61), + [sym_package_include] = STATE(61), + [sym_class_include] = STATE(61), + [sym_latex_include] = STATE(61), + [sym_latex_input] = STATE(61), + [sym_biblatex_include] = STATE(61), + [sym_bibtex_include] = STATE(61), + [sym_graphics_include] = STATE(61), + [sym_svg_include] = STATE(61), + [sym_inkscape_include] = STATE(61), + [sym_verbatim_include] = STATE(61), + [sym_import] = STATE(61), + [sym_label_definition] = STATE(61), + [sym_label_reference] = STATE(61), + [sym_equation_label_reference] = STATE(61), + [sym_label_reference_range] = STATE(61), + [sym_label_number] = STATE(61), + [sym_command_definition] = STATE(61), + [sym_math_operator] = STATE(61), + [sym_glossary_entry_definition] = STATE(61), + [sym_glossary_entry_reference] = STATE(61), + [sym_acronym_definition] = STATE(61), + [sym_acronym_reference] = STATE(61), + [sym_theorem_definition] = STATE(61), + [sym_color_reference] = STATE(61), + [sym_color_definition] = STATE(61), + [sym_color_set_definition] = STATE(61), + [sym_pgf_library_import] = STATE(61), + [sym_tikz_library_import] = STATE(61), + [sym_generic_command] = STATE(61), + [aux_sym_document_repeat1] = STATE(61), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(616), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [59] = { + [sym__simple_content] = STATE(63), + [sym__content] = STATE(63), + [sym_part] = STATE(63), + [sym_chapter] = STATE(63), + [sym_section] = STATE(63), + [sym_subsection] = STATE(63), + [sym_subsubsection] = STATE(63), + [sym_paragraph] = STATE(63), + [sym_subparagraph] = STATE(63), + [sym_enum_item] = STATE(63), + [sym_brace_group] = STATE(63), + [sym_mixed_group] = STATE(63), + [sym_text] = STATE(63), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(63), + [sym_inline_formula] = STATE(63), + [sym_begin] = STATE(73), + [sym_end] = STATE(950), + [sym_environment] = STATE(63), + [sym_caption] = STATE(63), + [sym_citation] = STATE(63), + [sym_package_include] = STATE(63), + [sym_class_include] = STATE(63), + [sym_latex_include] = STATE(63), + [sym_latex_input] = STATE(63), + [sym_biblatex_include] = STATE(63), + [sym_bibtex_include] = STATE(63), + [sym_graphics_include] = STATE(63), + [sym_svg_include] = STATE(63), + [sym_inkscape_include] = STATE(63), + [sym_verbatim_include] = STATE(63), + [sym_import] = STATE(63), + [sym_label_definition] = STATE(63), + [sym_label_reference] = STATE(63), + [sym_equation_label_reference] = STATE(63), + [sym_label_reference_range] = STATE(63), + [sym_label_number] = STATE(63), + [sym_command_definition] = STATE(63), + [sym_math_operator] = STATE(63), + [sym_glossary_entry_definition] = STATE(63), + [sym_glossary_entry_reference] = STATE(63), + [sym_acronym_definition] = STATE(63), + [sym_acronym_reference] = STATE(63), + [sym_theorem_definition] = STATE(63), + [sym_color_reference] = STATE(63), + [sym_color_definition] = STATE(63), + [sym_color_set_definition] = STATE(63), + [sym_pgf_library_import] = STATE(63), + [sym_tikz_library_import] = STATE(63), + [sym_generic_command] = STATE(63), + [aux_sym_document_repeat1] = STATE(63), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(618), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(620), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [60] = { + [sym__simple_content] = STATE(61), + [sym__content] = STATE(61), + [sym_part] = STATE(61), + [sym_chapter] = STATE(61), + [sym_section] = STATE(61), + [sym_subsection] = STATE(61), + [sym_subsubsection] = STATE(61), + [sym_paragraph] = STATE(61), + [sym_subparagraph] = STATE(61), + [sym_enum_item] = STATE(61), + [sym_brace_group] = STATE(61), + [sym_mixed_group] = STATE(61), + [sym_text] = STATE(61), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(61), + [sym_inline_formula] = STATE(61), + [sym_begin] = STATE(52), + [sym_environment] = STATE(61), + [sym_caption] = STATE(61), + [sym_citation] = STATE(61), + [sym_package_include] = STATE(61), + [sym_class_include] = STATE(61), + [sym_latex_include] = STATE(61), + [sym_latex_input] = STATE(61), + [sym_biblatex_include] = STATE(61), + [sym_bibtex_include] = STATE(61), + [sym_graphics_include] = STATE(61), + [sym_svg_include] = STATE(61), + [sym_inkscape_include] = STATE(61), + [sym_verbatim_include] = STATE(61), + [sym_import] = STATE(61), + [sym_label_definition] = STATE(61), + [sym_label_reference] = STATE(61), + [sym_equation_label_reference] = STATE(61), + [sym_label_reference_range] = STATE(61), + [sym_label_number] = STATE(61), + [sym_command_definition] = STATE(61), + [sym_math_operator] = STATE(61), + [sym_glossary_entry_definition] = STATE(61), + [sym_glossary_entry_reference] = STATE(61), + [sym_acronym_definition] = STATE(61), + [sym_acronym_reference] = STATE(61), + [sym_theorem_definition] = STATE(61), + [sym_color_reference] = STATE(61), + [sym_color_definition] = STATE(61), + [sym_color_set_definition] = STATE(61), + [sym_pgf_library_import] = STATE(61), + [sym_tikz_library_import] = STATE(61), + [sym_generic_command] = STATE(61), + [aux_sym_document_repeat1] = STATE(61), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(614), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(614), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(622), + [sym_param] = ACTIONS(616), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [61] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(624), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(624), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [62] = { + [sym__simple_content] = STATE(65), + [sym__content] = STATE(65), + [sym_part] = STATE(65), + [sym_chapter] = STATE(65), + [sym_section] = STATE(65), + [sym_subsection] = STATE(65), + [sym_subsubsection] = STATE(65), + [sym_paragraph] = STATE(65), + [sym_subparagraph] = STATE(65), + [sym_enum_item] = STATE(65), + [sym_brace_group] = STATE(65), + [sym_mixed_group] = STATE(65), + [sym_text] = STATE(65), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_begin] = STATE(52), + [sym_environment] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_latex_input] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_equation_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_command_definition] = STATE(65), + [sym_math_operator] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_pgf_library_import] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_generic_command] = STATE(65), + [aux_sym_document_repeat1] = STATE(65), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(602), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(602), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(628), + [sym_param] = ACTIONS(604), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [63] = { + [sym__simple_content] = STATE(157), + [sym__content] = STATE(157), + [sym_part] = STATE(157), + [sym_chapter] = STATE(157), + [sym_section] = STATE(157), + [sym_subsection] = STATE(157), + [sym_subsubsection] = STATE(157), + [sym_paragraph] = STATE(157), + [sym_subparagraph] = STATE(157), + [sym_enum_item] = STATE(157), + [sym_brace_group] = STATE(157), + [sym_mixed_group] = STATE(157), + [sym_text] = STATE(157), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_begin] = STATE(73), + [sym_end] = STATE(973), + [sym_environment] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_latex_input] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_equation_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_command_definition] = STATE(157), + [sym_math_operator] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_pgf_library_import] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_generic_command] = STATE(157), + [aux_sym_document_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(620), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [64] = { + [sym__simple_content] = STATE(68), + [sym__content] = STATE(68), + [sym_part] = STATE(68), + [sym_chapter] = STATE(68), + [sym_section] = STATE(68), + [sym_subsection] = STATE(68), + [sym_subsubsection] = STATE(68), + [sym_paragraph] = STATE(68), + [sym_subparagraph] = STATE(68), + [sym_enum_item] = STATE(68), + [sym_brace_group] = STATE(68), + [sym_mixed_group] = STATE(68), + [sym_text] = STATE(68), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(68), + [sym_inline_formula] = STATE(68), + [sym_begin] = STATE(52), + [sym_environment] = STATE(68), + [sym_caption] = STATE(68), + [sym_citation] = STATE(68), + [sym_package_include] = STATE(68), + [sym_class_include] = STATE(68), + [sym_latex_include] = STATE(68), + [sym_latex_input] = STATE(68), + [sym_biblatex_include] = STATE(68), + [sym_bibtex_include] = STATE(68), + [sym_graphics_include] = STATE(68), + [sym_svg_include] = STATE(68), + [sym_inkscape_include] = STATE(68), + [sym_verbatim_include] = STATE(68), + [sym_import] = STATE(68), + [sym_label_definition] = STATE(68), + [sym_label_reference] = STATE(68), + [sym_equation_label_reference] = STATE(68), + [sym_label_reference_range] = STATE(68), + [sym_label_number] = STATE(68), + [sym_command_definition] = STATE(68), + [sym_math_operator] = STATE(68), + [sym_glossary_entry_definition] = STATE(68), + [sym_glossary_entry_reference] = STATE(68), + [sym_acronym_definition] = STATE(68), + [sym_acronym_reference] = STATE(68), + [sym_theorem_definition] = STATE(68), + [sym_color_reference] = STATE(68), + [sym_color_definition] = STATE(68), + [sym_color_set_definition] = STATE(68), + [sym_pgf_library_import] = STATE(68), + [sym_tikz_library_import] = STATE(68), + [sym_generic_command] = STATE(68), + [aux_sym_document_repeat1] = STATE(68), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(632), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [65] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(634), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(634), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [66] = { + [sym__simple_content] = STATE(69), + [sym__content] = STATE(69), + [sym_part] = STATE(69), + [sym_chapter] = STATE(69), + [sym_section] = STATE(69), + [sym_subsection] = STATE(69), + [sym_subsubsection] = STATE(69), + [sym_paragraph] = STATE(69), + [sym_subparagraph] = STATE(69), + [sym_enum_item] = STATE(69), + [sym_brace_group] = STATE(69), + [sym_mixed_group] = STATE(69), + [sym_text] = STATE(69), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(69), + [sym_inline_formula] = STATE(69), + [sym_begin] = STATE(73), + [sym_end] = STATE(891), + [sym_environment] = STATE(69), + [sym_caption] = STATE(69), + [sym_citation] = STATE(69), + [sym_package_include] = STATE(69), + [sym_class_include] = STATE(69), + [sym_latex_include] = STATE(69), + [sym_latex_input] = STATE(69), + [sym_biblatex_include] = STATE(69), + [sym_bibtex_include] = STATE(69), + [sym_graphics_include] = STATE(69), + [sym_svg_include] = STATE(69), + [sym_inkscape_include] = STATE(69), + [sym_verbatim_include] = STATE(69), + [sym_import] = STATE(69), + [sym_label_definition] = STATE(69), + [sym_label_reference] = STATE(69), + [sym_equation_label_reference] = STATE(69), + [sym_label_reference_range] = STATE(69), + [sym_label_number] = STATE(69), + [sym_command_definition] = STATE(69), + [sym_math_operator] = STATE(69), + [sym_glossary_entry_definition] = STATE(69), + [sym_glossary_entry_reference] = STATE(69), + [sym_acronym_definition] = STATE(69), + [sym_acronym_reference] = STATE(69), + [sym_theorem_definition] = STATE(69), + [sym_color_reference] = STATE(69), + [sym_color_definition] = STATE(69), + [sym_color_set_definition] = STATE(69), + [sym_pgf_library_import] = STATE(69), + [sym_tikz_library_import] = STATE(69), + [sym_generic_command] = STATE(69), + [aux_sym_document_repeat1] = STATE(69), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(636), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(638), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [67] = { + [sym__simple_content] = STATE(68), + [sym__content] = STATE(68), + [sym_part] = STATE(68), + [sym_chapter] = STATE(68), + [sym_section] = STATE(68), + [sym_subsection] = STATE(68), + [sym_subsubsection] = STATE(68), + [sym_paragraph] = STATE(68), + [sym_subparagraph] = STATE(68), + [sym_enum_item] = STATE(68), + [sym_brace_group] = STATE(68), + [sym_mixed_group] = STATE(68), + [sym_text] = STATE(68), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(68), + [sym_inline_formula] = STATE(68), + [sym_begin] = STATE(52), + [sym_environment] = STATE(68), + [sym_caption] = STATE(68), + [sym_citation] = STATE(68), + [sym_package_include] = STATE(68), + [sym_class_include] = STATE(68), + [sym_latex_include] = STATE(68), + [sym_latex_input] = STATE(68), + [sym_biblatex_include] = STATE(68), + [sym_bibtex_include] = STATE(68), + [sym_graphics_include] = STATE(68), + [sym_svg_include] = STATE(68), + [sym_inkscape_include] = STATE(68), + [sym_verbatim_include] = STATE(68), + [sym_import] = STATE(68), + [sym_label_definition] = STATE(68), + [sym_label_reference] = STATE(68), + [sym_equation_label_reference] = STATE(68), + [sym_label_reference_range] = STATE(68), + [sym_label_number] = STATE(68), + [sym_command_definition] = STATE(68), + [sym_math_operator] = STATE(68), + [sym_glossary_entry_definition] = STATE(68), + [sym_glossary_entry_reference] = STATE(68), + [sym_acronym_definition] = STATE(68), + [sym_acronym_reference] = STATE(68), + [sym_theorem_definition] = STATE(68), + [sym_color_reference] = STATE(68), + [sym_color_definition] = STATE(68), + [sym_color_set_definition] = STATE(68), + [sym_pgf_library_import] = STATE(68), + [sym_tikz_library_import] = STATE(68), + [sym_generic_command] = STATE(68), + [aux_sym_document_repeat1] = STATE(68), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(630), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(630), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(640), + [sym_param] = ACTIONS(632), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [68] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(642), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(642), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [69] = { + [sym__simple_content] = STATE(157), + [sym__content] = STATE(157), + [sym_part] = STATE(157), + [sym_chapter] = STATE(157), + [sym_section] = STATE(157), + [sym_subsection] = STATE(157), + [sym_subsubsection] = STATE(157), + [sym_paragraph] = STATE(157), + [sym_subparagraph] = STATE(157), + [sym_enum_item] = STATE(157), + [sym_brace_group] = STATE(157), + [sym_mixed_group] = STATE(157), + [sym_text] = STATE(157), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_begin] = STATE(73), + [sym_end] = STATE(779), + [sym_environment] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_latex_input] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_equation_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_command_definition] = STATE(157), + [sym_math_operator] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_pgf_library_import] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_generic_command] = STATE(157), + [aux_sym_document_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(638), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [70] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(644), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(644), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [71] = { + [sym__simple_content] = STATE(75), + [sym__content] = STATE(75), + [sym_part] = STATE(75), + [sym_chapter] = STATE(75), + [sym_section] = STATE(75), + [sym_subsection] = STATE(75), + [sym_subsubsection] = STATE(75), + [sym_paragraph] = STATE(75), + [sym_subparagraph] = STATE(75), + [sym_enum_item] = STATE(75), + [sym_brace_group] = STATE(75), + [sym_mixed_group] = STATE(75), + [sym_text] = STATE(75), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(75), + [sym_inline_formula] = STATE(75), + [sym_begin] = STATE(52), + [sym_environment] = STATE(75), + [sym_caption] = STATE(75), + [sym_citation] = STATE(75), + [sym_package_include] = STATE(75), + [sym_class_include] = STATE(75), + [sym_latex_include] = STATE(75), + [sym_latex_input] = STATE(75), + [sym_biblatex_include] = STATE(75), + [sym_bibtex_include] = STATE(75), + [sym_graphics_include] = STATE(75), + [sym_svg_include] = STATE(75), + [sym_inkscape_include] = STATE(75), + [sym_verbatim_include] = STATE(75), + [sym_import] = STATE(75), + [sym_label_definition] = STATE(75), + [sym_label_reference] = STATE(75), + [sym_equation_label_reference] = STATE(75), + [sym_label_reference_range] = STATE(75), + [sym_label_number] = STATE(75), + [sym_command_definition] = STATE(75), + [sym_math_operator] = STATE(75), + [sym_glossary_entry_definition] = STATE(75), + [sym_glossary_entry_reference] = STATE(75), + [sym_acronym_definition] = STATE(75), + [sym_acronym_reference] = STATE(75), + [sym_theorem_definition] = STATE(75), + [sym_color_reference] = STATE(75), + [sym_color_definition] = STATE(75), + [sym_color_set_definition] = STATE(75), + [sym_pgf_library_import] = STATE(75), + [sym_tikz_library_import] = STATE(75), + [sym_generic_command] = STATE(75), + [aux_sym_document_repeat1] = STATE(75), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(648), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [72] = { + [sym__simple_content] = STATE(157), + [sym__content] = STATE(157), + [sym_part] = STATE(157), + [sym_chapter] = STATE(157), + [sym_section] = STATE(157), + [sym_subsection] = STATE(157), + [sym_subsubsection] = STATE(157), + [sym_paragraph] = STATE(157), + [sym_subparagraph] = STATE(157), + [sym_enum_item] = STATE(157), + [sym_brace_group] = STATE(157), + [sym_mixed_group] = STATE(157), + [sym_text] = STATE(157), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_begin] = STATE(73), + [sym_end] = STATE(1727), + [sym_environment] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_latex_input] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_equation_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_command_definition] = STATE(157), + [sym_math_operator] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_pgf_library_import] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_generic_command] = STATE(157), + [aux_sym_document_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(650), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [73] = { + [sym__simple_content] = STATE(76), + [sym__content] = STATE(76), + [sym_part] = STATE(76), + [sym_chapter] = STATE(76), + [sym_section] = STATE(76), + [sym_subsection] = STATE(76), + [sym_subsubsection] = STATE(76), + [sym_paragraph] = STATE(76), + [sym_subparagraph] = STATE(76), + [sym_enum_item] = STATE(76), + [sym_brace_group] = STATE(76), + [sym_mixed_group] = STATE(76), + [sym_text] = STATE(76), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(76), + [sym_inline_formula] = STATE(76), + [sym_begin] = STATE(73), + [sym_end] = STATE(748), + [sym_environment] = STATE(76), + [sym_caption] = STATE(76), + [sym_citation] = STATE(76), + [sym_package_include] = STATE(76), + [sym_class_include] = STATE(76), + [sym_latex_include] = STATE(76), + [sym_latex_input] = STATE(76), + [sym_biblatex_include] = STATE(76), + [sym_bibtex_include] = STATE(76), + [sym_graphics_include] = STATE(76), + [sym_svg_include] = STATE(76), + [sym_inkscape_include] = STATE(76), + [sym_verbatim_include] = STATE(76), + [sym_import] = STATE(76), + [sym_label_definition] = STATE(76), + [sym_label_reference] = STATE(76), + [sym_equation_label_reference] = STATE(76), + [sym_label_reference_range] = STATE(76), + [sym_label_number] = STATE(76), + [sym_command_definition] = STATE(76), + [sym_math_operator] = STATE(76), + [sym_glossary_entry_definition] = STATE(76), + [sym_glossary_entry_reference] = STATE(76), + [sym_acronym_definition] = STATE(76), + [sym_acronym_reference] = STATE(76), + [sym_theorem_definition] = STATE(76), + [sym_color_reference] = STATE(76), + [sym_color_definition] = STATE(76), + [sym_color_set_definition] = STATE(76), + [sym_pgf_library_import] = STATE(76), + [sym_tikz_library_import] = STATE(76), + [sym_generic_command] = STATE(76), + [aux_sym_document_repeat1] = STATE(76), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(652), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(654), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [74] = { + [sym__simple_content] = STATE(75), + [sym__content] = STATE(75), + [sym_part] = STATE(75), + [sym_chapter] = STATE(75), + [sym_section] = STATE(75), + [sym_subsection] = STATE(75), + [sym_subsubsection] = STATE(75), + [sym_paragraph] = STATE(75), + [sym_subparagraph] = STATE(75), + [sym_enum_item] = STATE(75), + [sym_brace_group] = STATE(75), + [sym_mixed_group] = STATE(75), + [sym_text] = STATE(75), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(75), + [sym_inline_formula] = STATE(75), + [sym_begin] = STATE(52), + [sym_environment] = STATE(75), + [sym_caption] = STATE(75), + [sym_citation] = STATE(75), + [sym_package_include] = STATE(75), + [sym_class_include] = STATE(75), + [sym_latex_include] = STATE(75), + [sym_latex_input] = STATE(75), + [sym_biblatex_include] = STATE(75), + [sym_bibtex_include] = STATE(75), + [sym_graphics_include] = STATE(75), + [sym_svg_include] = STATE(75), + [sym_inkscape_include] = STATE(75), + [sym_verbatim_include] = STATE(75), + [sym_import] = STATE(75), + [sym_label_definition] = STATE(75), + [sym_label_reference] = STATE(75), + [sym_equation_label_reference] = STATE(75), + [sym_label_reference_range] = STATE(75), + [sym_label_number] = STATE(75), + [sym_command_definition] = STATE(75), + [sym_math_operator] = STATE(75), + [sym_glossary_entry_definition] = STATE(75), + [sym_glossary_entry_reference] = STATE(75), + [sym_acronym_definition] = STATE(75), + [sym_acronym_reference] = STATE(75), + [sym_theorem_definition] = STATE(75), + [sym_color_reference] = STATE(75), + [sym_color_definition] = STATE(75), + [sym_color_set_definition] = STATE(75), + [sym_pgf_library_import] = STATE(75), + [sym_tikz_library_import] = STATE(75), + [sym_generic_command] = STATE(75), + [aux_sym_document_repeat1] = STATE(75), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(656), + [sym_param] = ACTIONS(648), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [75] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(658), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(658), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [76] = { + [sym__simple_content] = STATE(157), + [sym__content] = STATE(157), + [sym_part] = STATE(157), + [sym_chapter] = STATE(157), + [sym_section] = STATE(157), + [sym_subsection] = STATE(157), + [sym_subsubsection] = STATE(157), + [sym_paragraph] = STATE(157), + [sym_subparagraph] = STATE(157), + [sym_enum_item] = STATE(157), + [sym_brace_group] = STATE(157), + [sym_mixed_group] = STATE(157), + [sym_text] = STATE(157), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_begin] = STATE(73), + [sym_end] = STATE(784), + [sym_environment] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_latex_input] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_equation_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_command_definition] = STATE(157), + [sym_math_operator] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_pgf_library_import] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_generic_command] = STATE(157), + [aux_sym_document_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(654), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [77] = { + [sym__simple_content] = STATE(80), + [sym__content] = STATE(80), + [sym_part] = STATE(80), + [sym_chapter] = STATE(80), + [sym_section] = STATE(80), + [sym_subsection] = STATE(80), + [sym_subsubsection] = STATE(80), + [sym_paragraph] = STATE(80), + [sym_subparagraph] = STATE(80), + [sym_enum_item] = STATE(80), + [sym_brace_group] = STATE(80), + [sym_mixed_group] = STATE(80), + [sym_text] = STATE(80), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(80), + [sym_inline_formula] = STATE(80), + [sym_begin] = STATE(52), + [sym_environment] = STATE(80), + [sym_caption] = STATE(80), + [sym_citation] = STATE(80), + [sym_package_include] = STATE(80), + [sym_class_include] = STATE(80), + [sym_latex_include] = STATE(80), + [sym_latex_input] = STATE(80), + [sym_biblatex_include] = STATE(80), + [sym_bibtex_include] = STATE(80), + [sym_graphics_include] = STATE(80), + [sym_svg_include] = STATE(80), + [sym_inkscape_include] = STATE(80), + [sym_verbatim_include] = STATE(80), + [sym_import] = STATE(80), + [sym_label_definition] = STATE(80), + [sym_label_reference] = STATE(80), + [sym_equation_label_reference] = STATE(80), + [sym_label_reference_range] = STATE(80), + [sym_label_number] = STATE(80), + [sym_command_definition] = STATE(80), + [sym_math_operator] = STATE(80), + [sym_glossary_entry_definition] = STATE(80), + [sym_glossary_entry_reference] = STATE(80), + [sym_acronym_definition] = STATE(80), + [sym_acronym_reference] = STATE(80), + [sym_theorem_definition] = STATE(80), + [sym_color_reference] = STATE(80), + [sym_color_definition] = STATE(80), + [sym_color_set_definition] = STATE(80), + [sym_pgf_library_import] = STATE(80), + [sym_tikz_library_import] = STATE(80), + [sym_generic_command] = STATE(80), + [aux_sym_document_repeat1] = STATE(80), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(660), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(660), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(662), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [78] = { + [sym__simple_content] = STATE(84), + [sym__content] = STATE(84), + [sym_part] = STATE(84), + [sym_chapter] = STATE(84), + [sym_section] = STATE(84), + [sym_subsection] = STATE(84), + [sym_subsubsection] = STATE(84), + [sym_paragraph] = STATE(84), + [sym_subparagraph] = STATE(84), + [sym_enum_item] = STATE(84), + [sym_brace_group] = STATE(84), + [sym_mixed_group] = STATE(84), + [sym_text] = STATE(84), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(84), + [sym_inline_formula] = STATE(84), + [sym_begin] = STATE(73), + [sym_end] = STATE(1909), + [sym_environment] = STATE(84), + [sym_caption] = STATE(84), + [sym_citation] = STATE(84), + [sym_package_include] = STATE(84), + [sym_class_include] = STATE(84), + [sym_latex_include] = STATE(84), + [sym_latex_input] = STATE(84), + [sym_biblatex_include] = STATE(84), + [sym_bibtex_include] = STATE(84), + [sym_graphics_include] = STATE(84), + [sym_svg_include] = STATE(84), + [sym_inkscape_include] = STATE(84), + [sym_verbatim_include] = STATE(84), + [sym_import] = STATE(84), + [sym_label_definition] = STATE(84), + [sym_label_reference] = STATE(84), + [sym_equation_label_reference] = STATE(84), + [sym_label_reference_range] = STATE(84), + [sym_label_number] = STATE(84), + [sym_command_definition] = STATE(84), + [sym_math_operator] = STATE(84), + [sym_glossary_entry_definition] = STATE(84), + [sym_glossary_entry_reference] = STATE(84), + [sym_acronym_definition] = STATE(84), + [sym_acronym_reference] = STATE(84), + [sym_theorem_definition] = STATE(84), + [sym_color_reference] = STATE(84), + [sym_color_definition] = STATE(84), + [sym_color_set_definition] = STATE(84), + [sym_pgf_library_import] = STATE(84), + [sym_tikz_library_import] = STATE(84), + [sym_generic_command] = STATE(84), + [aux_sym_document_repeat1] = STATE(84), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(664), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(666), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [79] = { + [sym__simple_content] = STATE(80), + [sym__content] = STATE(80), + [sym_part] = STATE(80), + [sym_chapter] = STATE(80), + [sym_section] = STATE(80), + [sym_subsection] = STATE(80), + [sym_subsubsection] = STATE(80), + [sym_paragraph] = STATE(80), + [sym_subparagraph] = STATE(80), + [sym_enum_item] = STATE(80), + [sym_brace_group] = STATE(80), + [sym_mixed_group] = STATE(80), + [sym_text] = STATE(80), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(80), + [sym_inline_formula] = STATE(80), + [sym_begin] = STATE(52), + [sym_environment] = STATE(80), + [sym_caption] = STATE(80), + [sym_citation] = STATE(80), + [sym_package_include] = STATE(80), + [sym_class_include] = STATE(80), + [sym_latex_include] = STATE(80), + [sym_latex_input] = STATE(80), + [sym_biblatex_include] = STATE(80), + [sym_bibtex_include] = STATE(80), + [sym_graphics_include] = STATE(80), + [sym_svg_include] = STATE(80), + [sym_inkscape_include] = STATE(80), + [sym_verbatim_include] = STATE(80), + [sym_import] = STATE(80), + [sym_label_definition] = STATE(80), + [sym_label_reference] = STATE(80), + [sym_equation_label_reference] = STATE(80), + [sym_label_reference_range] = STATE(80), + [sym_label_number] = STATE(80), + [sym_command_definition] = STATE(80), + [sym_math_operator] = STATE(80), + [sym_glossary_entry_definition] = STATE(80), + [sym_glossary_entry_reference] = STATE(80), + [sym_acronym_definition] = STATE(80), + [sym_acronym_reference] = STATE(80), + [sym_theorem_definition] = STATE(80), + [sym_color_reference] = STATE(80), + [sym_color_definition] = STATE(80), + [sym_color_set_definition] = STATE(80), + [sym_pgf_library_import] = STATE(80), + [sym_tikz_library_import] = STATE(80), + [sym_generic_command] = STATE(80), + [aux_sym_document_repeat1] = STATE(80), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(660), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(660), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(668), + [sym_param] = ACTIONS(662), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [80] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(670), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(670), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [81] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(672), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(672), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [82] = { + [sym__simple_content] = STATE(81), + [sym__content] = STATE(81), + [sym_part] = STATE(81), + [sym_chapter] = STATE(81), + [sym_section] = STATE(81), + [sym_subsection] = STATE(81), + [sym_subsubsection] = STATE(81), + [sym_paragraph] = STATE(81), + [sym_subparagraph] = STATE(81), + [sym_enum_item] = STATE(81), + [sym_brace_group] = STATE(81), + [sym_mixed_group] = STATE(81), + [sym_text] = STATE(81), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(81), + [sym_inline_formula] = STATE(81), + [sym_begin] = STATE(52), + [sym_environment] = STATE(81), + [sym_caption] = STATE(81), + [sym_citation] = STATE(81), + [sym_package_include] = STATE(81), + [sym_class_include] = STATE(81), + [sym_latex_include] = STATE(81), + [sym_latex_input] = STATE(81), + [sym_biblatex_include] = STATE(81), + [sym_bibtex_include] = STATE(81), + [sym_graphics_include] = STATE(81), + [sym_svg_include] = STATE(81), + [sym_inkscape_include] = STATE(81), + [sym_verbatim_include] = STATE(81), + [sym_import] = STATE(81), + [sym_label_definition] = STATE(81), + [sym_label_reference] = STATE(81), + [sym_equation_label_reference] = STATE(81), + [sym_label_reference_range] = STATE(81), + [sym_label_number] = STATE(81), + [sym_command_definition] = STATE(81), + [sym_math_operator] = STATE(81), + [sym_glossary_entry_definition] = STATE(81), + [sym_glossary_entry_reference] = STATE(81), + [sym_acronym_definition] = STATE(81), + [sym_acronym_reference] = STATE(81), + [sym_theorem_definition] = STATE(81), + [sym_color_reference] = STATE(81), + [sym_color_definition] = STATE(81), + [sym_color_set_definition] = STATE(81), + [sym_pgf_library_import] = STATE(81), + [sym_tikz_library_import] = STATE(81), + [sym_generic_command] = STATE(81), + [aux_sym_document_repeat1] = STATE(81), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(676), + [sym_param] = ACTIONS(678), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [83] = { + [sym__simple_content] = STATE(72), + [sym__content] = STATE(72), + [sym_part] = STATE(72), + [sym_chapter] = STATE(72), + [sym_section] = STATE(72), + [sym_subsection] = STATE(72), + [sym_subsubsection] = STATE(72), + [sym_paragraph] = STATE(72), + [sym_subparagraph] = STATE(72), + [sym_enum_item] = STATE(72), + [sym_brace_group] = STATE(72), + [sym_mixed_group] = STATE(72), + [sym_text] = STATE(72), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(72), + [sym_inline_formula] = STATE(72), + [sym_begin] = STATE(73), + [sym_end] = STATE(1748), + [sym_environment] = STATE(72), + [sym_caption] = STATE(72), + [sym_citation] = STATE(72), + [sym_package_include] = STATE(72), + [sym_class_include] = STATE(72), + [sym_latex_include] = STATE(72), + [sym_latex_input] = STATE(72), + [sym_biblatex_include] = STATE(72), + [sym_bibtex_include] = STATE(72), + [sym_graphics_include] = STATE(72), + [sym_svg_include] = STATE(72), + [sym_inkscape_include] = STATE(72), + [sym_verbatim_include] = STATE(72), + [sym_import] = STATE(72), + [sym_label_definition] = STATE(72), + [sym_label_reference] = STATE(72), + [sym_equation_label_reference] = STATE(72), + [sym_label_reference_range] = STATE(72), + [sym_label_number] = STATE(72), + [sym_command_definition] = STATE(72), + [sym_math_operator] = STATE(72), + [sym_glossary_entry_definition] = STATE(72), + [sym_glossary_entry_reference] = STATE(72), + [sym_acronym_definition] = STATE(72), + [sym_acronym_reference] = STATE(72), + [sym_theorem_definition] = STATE(72), + [sym_color_reference] = STATE(72), + [sym_color_definition] = STATE(72), + [sym_color_set_definition] = STATE(72), + [sym_pgf_library_import] = STATE(72), + [sym_tikz_library_import] = STATE(72), + [sym_generic_command] = STATE(72), + [aux_sym_document_repeat1] = STATE(72), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(680), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(650), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [84] = { + [sym__simple_content] = STATE(157), + [sym__content] = STATE(157), + [sym_part] = STATE(157), + [sym_chapter] = STATE(157), + [sym_section] = STATE(157), + [sym_subsection] = STATE(157), + [sym_subsubsection] = STATE(157), + [sym_paragraph] = STATE(157), + [sym_subparagraph] = STATE(157), + [sym_enum_item] = STATE(157), + [sym_brace_group] = STATE(157), + [sym_mixed_group] = STATE(157), + [sym_text] = STATE(157), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_begin] = STATE(73), + [sym_end] = STATE(1924), + [sym_environment] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_latex_input] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_equation_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_command_definition] = STATE(157), + [sym_math_operator] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_pgf_library_import] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_generic_command] = STATE(157), + [aux_sym_document_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(666), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [85] = { + [sym__simple_content] = STATE(89), + [sym__content] = STATE(89), + [sym_part] = STATE(89), + [sym_chapter] = STATE(89), + [sym_section] = STATE(89), + [sym_subsection] = STATE(89), + [sym_subsubsection] = STATE(89), + [sym_paragraph] = STATE(89), + [sym_subparagraph] = STATE(89), + [sym_enum_item] = STATE(89), + [sym_brace_group] = STATE(89), + [sym_mixed_group] = STATE(89), + [sym_text] = STATE(89), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(89), + [sym_inline_formula] = STATE(89), + [sym_begin] = STATE(52), + [sym_environment] = STATE(89), + [sym_caption] = STATE(89), + [sym_citation] = STATE(89), + [sym_package_include] = STATE(89), + [sym_class_include] = STATE(89), + [sym_latex_include] = STATE(89), + [sym_latex_input] = STATE(89), + [sym_biblatex_include] = STATE(89), + [sym_bibtex_include] = STATE(89), + [sym_graphics_include] = STATE(89), + [sym_svg_include] = STATE(89), + [sym_inkscape_include] = STATE(89), + [sym_verbatim_include] = STATE(89), + [sym_import] = STATE(89), + [sym_label_definition] = STATE(89), + [sym_label_reference] = STATE(89), + [sym_equation_label_reference] = STATE(89), + [sym_label_reference_range] = STATE(89), + [sym_label_number] = STATE(89), + [sym_command_definition] = STATE(89), + [sym_math_operator] = STATE(89), + [sym_glossary_entry_definition] = STATE(89), + [sym_glossary_entry_reference] = STATE(89), + [sym_acronym_definition] = STATE(89), + [sym_acronym_reference] = STATE(89), + [sym_theorem_definition] = STATE(89), + [sym_color_reference] = STATE(89), + [sym_color_definition] = STATE(89), + [sym_color_set_definition] = STATE(89), + [sym_pgf_library_import] = STATE(89), + [sym_tikz_library_import] = STATE(89), + [sym_generic_command] = STATE(89), + [aux_sym_document_repeat1] = STATE(89), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(682), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(684), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [86] = { + [sym__simple_content] = STATE(90), + [sym__content] = STATE(90), + [sym_part] = STATE(90), + [sym_chapter] = STATE(90), + [sym_section] = STATE(90), + [sym_subsection] = STATE(90), + [sym_subsubsection] = STATE(90), + [sym_paragraph] = STATE(90), + [sym_subparagraph] = STATE(90), + [sym_enum_item] = STATE(90), + [sym_brace_group] = STATE(90), + [sym_mixed_group] = STATE(90), + [sym_text] = STATE(90), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(90), + [sym_inline_formula] = STATE(90), + [sym_begin] = STATE(73), + [sym_end] = STATE(1058), + [sym_environment] = STATE(90), + [sym_caption] = STATE(90), + [sym_citation] = STATE(90), + [sym_package_include] = STATE(90), + [sym_class_include] = STATE(90), + [sym_latex_include] = STATE(90), + [sym_latex_input] = STATE(90), + [sym_biblatex_include] = STATE(90), + [sym_bibtex_include] = STATE(90), + [sym_graphics_include] = STATE(90), + [sym_svg_include] = STATE(90), + [sym_inkscape_include] = STATE(90), + [sym_verbatim_include] = STATE(90), + [sym_import] = STATE(90), + [sym_label_definition] = STATE(90), + [sym_label_reference] = STATE(90), + [sym_equation_label_reference] = STATE(90), + [sym_label_reference_range] = STATE(90), + [sym_label_number] = STATE(90), + [sym_command_definition] = STATE(90), + [sym_math_operator] = STATE(90), + [sym_glossary_entry_definition] = STATE(90), + [sym_glossary_entry_reference] = STATE(90), + [sym_acronym_definition] = STATE(90), + [sym_acronym_reference] = STATE(90), + [sym_theorem_definition] = STATE(90), + [sym_color_reference] = STATE(90), + [sym_color_definition] = STATE(90), + [sym_color_set_definition] = STATE(90), + [sym_pgf_library_import] = STATE(90), + [sym_tikz_library_import] = STATE(90), + [sym_generic_command] = STATE(90), + [aux_sym_document_repeat1] = STATE(90), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(686), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(688), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [87] = { + [sym__simple_content] = STATE(81), + [sym__content] = STATE(81), + [sym_part] = STATE(81), + [sym_chapter] = STATE(81), + [sym_section] = STATE(81), + [sym_subsection] = STATE(81), + [sym_subsubsection] = STATE(81), + [sym_paragraph] = STATE(81), + [sym_subparagraph] = STATE(81), + [sym_enum_item] = STATE(81), + [sym_brace_group] = STATE(81), + [sym_mixed_group] = STATE(81), + [sym_text] = STATE(81), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(81), + [sym_inline_formula] = STATE(81), + [sym_begin] = STATE(52), + [sym_environment] = STATE(81), + [sym_caption] = STATE(81), + [sym_citation] = STATE(81), + [sym_package_include] = STATE(81), + [sym_class_include] = STATE(81), + [sym_latex_include] = STATE(81), + [sym_latex_input] = STATE(81), + [sym_biblatex_include] = STATE(81), + [sym_bibtex_include] = STATE(81), + [sym_graphics_include] = STATE(81), + [sym_svg_include] = STATE(81), + [sym_inkscape_include] = STATE(81), + [sym_verbatim_include] = STATE(81), + [sym_import] = STATE(81), + [sym_label_definition] = STATE(81), + [sym_label_reference] = STATE(81), + [sym_equation_label_reference] = STATE(81), + [sym_label_reference_range] = STATE(81), + [sym_label_number] = STATE(81), + [sym_command_definition] = STATE(81), + [sym_math_operator] = STATE(81), + [sym_glossary_entry_definition] = STATE(81), + [sym_glossary_entry_reference] = STATE(81), + [sym_acronym_definition] = STATE(81), + [sym_acronym_reference] = STATE(81), + [sym_theorem_definition] = STATE(81), + [sym_color_reference] = STATE(81), + [sym_color_definition] = STATE(81), + [sym_color_set_definition] = STATE(81), + [sym_pgf_library_import] = STATE(81), + [sym_tikz_library_import] = STATE(81), + [sym_generic_command] = STATE(81), + [aux_sym_document_repeat1] = STATE(81), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(674), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(674), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(678), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [88] = { + [sym__simple_content] = STATE(89), + [sym__content] = STATE(89), + [sym_part] = STATE(89), + [sym_chapter] = STATE(89), + [sym_section] = STATE(89), + [sym_subsection] = STATE(89), + [sym_subsubsection] = STATE(89), + [sym_paragraph] = STATE(89), + [sym_subparagraph] = STATE(89), + [sym_enum_item] = STATE(89), + [sym_brace_group] = STATE(89), + [sym_mixed_group] = STATE(89), + [sym_text] = STATE(89), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(89), + [sym_inline_formula] = STATE(89), + [sym_begin] = STATE(52), + [sym_environment] = STATE(89), + [sym_caption] = STATE(89), + [sym_citation] = STATE(89), + [sym_package_include] = STATE(89), + [sym_class_include] = STATE(89), + [sym_latex_include] = STATE(89), + [sym_latex_input] = STATE(89), + [sym_biblatex_include] = STATE(89), + [sym_bibtex_include] = STATE(89), + [sym_graphics_include] = STATE(89), + [sym_svg_include] = STATE(89), + [sym_inkscape_include] = STATE(89), + [sym_verbatim_include] = STATE(89), + [sym_import] = STATE(89), + [sym_label_definition] = STATE(89), + [sym_label_reference] = STATE(89), + [sym_equation_label_reference] = STATE(89), + [sym_label_reference_range] = STATE(89), + [sym_label_number] = STATE(89), + [sym_command_definition] = STATE(89), + [sym_math_operator] = STATE(89), + [sym_glossary_entry_definition] = STATE(89), + [sym_glossary_entry_reference] = STATE(89), + [sym_acronym_definition] = STATE(89), + [sym_acronym_reference] = STATE(89), + [sym_theorem_definition] = STATE(89), + [sym_color_reference] = STATE(89), + [sym_color_definition] = STATE(89), + [sym_color_set_definition] = STATE(89), + [sym_pgf_library_import] = STATE(89), + [sym_tikz_library_import] = STATE(89), + [sym_generic_command] = STATE(89), + [aux_sym_document_repeat1] = STATE(89), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(682), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(690), + [sym_param] = ACTIONS(684), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [89] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [90] = { + [sym__simple_content] = STATE(157), + [sym__content] = STATE(157), + [sym_part] = STATE(157), + [sym_chapter] = STATE(157), + [sym_section] = STATE(157), + [sym_subsection] = STATE(157), + [sym_subsubsection] = STATE(157), + [sym_paragraph] = STATE(157), + [sym_subparagraph] = STATE(157), + [sym_enum_item] = STATE(157), + [sym_brace_group] = STATE(157), + [sym_mixed_group] = STATE(157), + [sym_text] = STATE(157), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_begin] = STATE(73), + [sym_end] = STATE(1092), + [sym_environment] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_latex_input] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_equation_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_command_definition] = STATE(157), + [sym_math_operator] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_pgf_library_import] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_generic_command] = STATE(157), + [aux_sym_document_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(688), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [91] = { + [sym__simple_content] = STATE(157), + [sym__content] = STATE(157), + [sym_part] = STATE(157), + [sym_chapter] = STATE(157), + [sym_section] = STATE(157), + [sym_subsection] = STATE(157), + [sym_subsubsection] = STATE(157), + [sym_paragraph] = STATE(157), + [sym_subparagraph] = STATE(157), + [sym_enum_item] = STATE(157), + [sym_brace_group] = STATE(157), + [sym_mixed_group] = STATE(157), + [sym_text] = STATE(157), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_begin] = STATE(73), + [sym_end] = STATE(1606), + [sym_environment] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_latex_input] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_equation_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_command_definition] = STATE(157), + [sym_math_operator] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_pgf_library_import] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_generic_command] = STATE(157), + [aux_sym_document_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(694), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [92] = { + [sym__simple_content] = STATE(92), + [sym_chapter] = STATE(92), + [sym_section] = STATE(92), + [sym_subsection] = STATE(92), + [sym_subsubsection] = STATE(92), + [sym_paragraph] = STATE(92), + [sym_subparagraph] = STATE(92), + [sym_enum_item] = STATE(92), + [sym_brace_group] = STATE(92), + [sym_mixed_group] = STATE(92), + [sym_text] = STATE(92), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(92), + [sym_inline_formula] = STATE(92), + [sym_begin] = STATE(52), + [sym_environment] = STATE(92), + [sym_caption] = STATE(92), + [sym_citation] = STATE(92), + [sym_package_include] = STATE(92), + [sym_class_include] = STATE(92), + [sym_latex_include] = STATE(92), + [sym_latex_input] = STATE(92), + [sym_biblatex_include] = STATE(92), + [sym_bibtex_include] = STATE(92), + [sym_graphics_include] = STATE(92), + [sym_svg_include] = STATE(92), + [sym_inkscape_include] = STATE(92), + [sym_verbatim_include] = STATE(92), + [sym_import] = STATE(92), + [sym_label_definition] = STATE(92), + [sym_label_reference] = STATE(92), + [sym_equation_label_reference] = STATE(92), + [sym_label_reference_range] = STATE(92), + [sym_label_number] = STATE(92), + [sym_command_definition] = STATE(92), + [sym_math_operator] = STATE(92), + [sym_glossary_entry_definition] = STATE(92), + [sym_glossary_entry_reference] = STATE(92), + [sym_acronym_definition] = STATE(92), + [sym_acronym_reference] = STATE(92), + [sym_theorem_definition] = STATE(92), + [sym_color_reference] = STATE(92), + [sym_color_definition] = STATE(92), + [sym_color_set_definition] = STATE(92), + [sym_pgf_library_import] = STATE(92), + [sym_tikz_library_import] = STATE(92), + [sym_generic_command] = STATE(92), + [aux_sym_part_repeat1] = STATE(92), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(696), + [sym_generic_command_name] = ACTIONS(698), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(701), + [aux_sym_chapter_token1] = ACTIONS(703), + [aux_sym_section_token1] = ACTIONS(706), + [aux_sym_subsection_token1] = ACTIONS(709), + [aux_sym_subsubsection_token1] = ACTIONS(712), + [aux_sym_paragraph_token1] = ACTIONS(715), + [aux_sym_subparagraph_token1] = ACTIONS(718), + [anon_sym_BSLASHitem] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(724), + [anon_sym_RBRACK] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(727), + [anon_sym_RBRACE] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(724), + [anon_sym_RPAREN] = ACTIONS(696), + [anon_sym_COMMA] = ACTIONS(730), + [anon_sym_EQ] = ACTIONS(730), + [sym_word] = ACTIONS(730), + [sym_param] = ACTIONS(733), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(736), + [anon_sym_BSLASH_LBRACK] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(739), + [anon_sym_BSLASH_LPAREN] = ACTIONS(742), + [anon_sym_BSLASHbegin] = ACTIONS(745), + [anon_sym_BSLASHcaption] = ACTIONS(748), + [anon_sym_BSLASHcite] = ACTIONS(751), + [anon_sym_BSLASHcite_STAR] = ACTIONS(754), + [anon_sym_BSLASHCite] = ACTIONS(751), + [anon_sym_BSLASHnocite] = ACTIONS(751), + [anon_sym_BSLASHcitet] = ACTIONS(751), + [anon_sym_BSLASHcitep] = ACTIONS(751), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(754), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(754), + [anon_sym_BSLASHciteauthor] = ACTIONS(751), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(754), + [anon_sym_BSLASHCiteauthor] = ACTIONS(751), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(754), + [anon_sym_BSLASHcitetitle] = ACTIONS(751), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(754), + [anon_sym_BSLASHciteyear] = ACTIONS(751), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(754), + [anon_sym_BSLASHcitedate] = ACTIONS(751), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(754), + [anon_sym_BSLASHciteurl] = ACTIONS(751), + [anon_sym_BSLASHfullcite] = ACTIONS(751), + [anon_sym_BSLASHciteyearpar] = ACTIONS(751), + [anon_sym_BSLASHcitealt] = ACTIONS(751), + [anon_sym_BSLASHcitealp] = ACTIONS(751), + [anon_sym_BSLASHcitetext] = ACTIONS(751), + [anon_sym_BSLASHparencite] = ACTIONS(751), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(754), + [anon_sym_BSLASHParencite] = ACTIONS(751), + [anon_sym_BSLASHfootcite] = ACTIONS(751), + [anon_sym_BSLASHfootfullcite] = ACTIONS(751), + [anon_sym_BSLASHfootcitetext] = ACTIONS(751), + [anon_sym_BSLASHtextcite] = ACTIONS(751), + [anon_sym_BSLASHTextcite] = ACTIONS(751), + [anon_sym_BSLASHsmartcite] = ACTIONS(751), + [anon_sym_BSLASHSmartcite] = ACTIONS(751), + [anon_sym_BSLASHsupercite] = ACTIONS(751), + [anon_sym_BSLASHautocite] = ACTIONS(751), + [anon_sym_BSLASHAutocite] = ACTIONS(751), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(754), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(754), + [anon_sym_BSLASHvolcite] = ACTIONS(751), + [anon_sym_BSLASHVolcite] = ACTIONS(751), + [anon_sym_BSLASHpvolcite] = ACTIONS(751), + [anon_sym_BSLASHPvolcite] = ACTIONS(751), + [anon_sym_BSLASHfvolcite] = ACTIONS(751), + [anon_sym_BSLASHftvolcite] = ACTIONS(751), + [anon_sym_BSLASHsvolcite] = ACTIONS(751), + [anon_sym_BSLASHSvolcite] = ACTIONS(751), + [anon_sym_BSLASHtvolcite] = ACTIONS(751), + [anon_sym_BSLASHTvolcite] = ACTIONS(751), + [anon_sym_BSLASHavolcite] = ACTIONS(751), + [anon_sym_BSLASHAvolcite] = ACTIONS(751), + [anon_sym_BSLASHnotecite] = ACTIONS(751), + [anon_sym_BSLASHpnotecite] = ACTIONS(751), + [anon_sym_BSLASHPnotecite] = ACTIONS(751), + [anon_sym_BSLASHfnotecite] = ACTIONS(751), + [anon_sym_BSLASHusepackage] = ACTIONS(757), + [anon_sym_BSLASHRequirePackage] = ACTIONS(757), + [anon_sym_BSLASHdocumentclass] = ACTIONS(760), + [anon_sym_BSLASHinclude] = ACTIONS(763), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(763), + [anon_sym_BSLASHinput] = ACTIONS(766), + [anon_sym_BSLASHsubfile] = ACTIONS(766), + [anon_sym_BSLASHaddbibresource] = ACTIONS(769), + [anon_sym_BSLASHbibliography] = ACTIONS(772), + [anon_sym_BSLASHincludegraphics] = ACTIONS(775), + [anon_sym_BSLASHincludesvg] = ACTIONS(778), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(781), + [anon_sym_BSLASHverbatiminput] = ACTIONS(784), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(784), + [anon_sym_BSLASHimport] = ACTIONS(787), + [anon_sym_BSLASHsubimport] = ACTIONS(787), + [anon_sym_BSLASHinputfrom] = ACTIONS(787), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(787), + [anon_sym_BSLASHincludefrom] = ACTIONS(787), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(787), + [anon_sym_BSLASHlabel] = ACTIONS(790), + [anon_sym_BSLASHref] = ACTIONS(793), + [anon_sym_BSLASHvref] = ACTIONS(793), + [anon_sym_BSLASHVref] = ACTIONS(793), + [anon_sym_BSLASHautoref] = ACTIONS(793), + [anon_sym_BSLASHpageref] = ACTIONS(793), + [anon_sym_BSLASHcref] = ACTIONS(793), + [anon_sym_BSLASHCref] = ACTIONS(793), + [anon_sym_BSLASHcref_STAR] = ACTIONS(796), + [anon_sym_BSLASHCref_STAR] = ACTIONS(796), + [anon_sym_BSLASHnamecref] = ACTIONS(793), + [anon_sym_BSLASHnameCref] = ACTIONS(793), + [anon_sym_BSLASHlcnamecref] = ACTIONS(793), + [anon_sym_BSLASHnamecrefs] = ACTIONS(793), + [anon_sym_BSLASHnameCrefs] = ACTIONS(793), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(793), + [anon_sym_BSLASHlabelcref] = ACTIONS(793), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(793), + [anon_sym_BSLASHeqref] = ACTIONS(799), + [anon_sym_BSLASHcrefrange] = ACTIONS(802), + [anon_sym_BSLASHCrefrange] = ACTIONS(802), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(805), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(805), + [anon_sym_BSLASHnewlabel] = ACTIONS(808), + [anon_sym_BSLASHnewcommand] = ACTIONS(811), + [anon_sym_BSLASHrenewcommand] = ACTIONS(811), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(811), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(814), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(817), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(820), + [anon_sym_BSLASHgls] = ACTIONS(823), + [anon_sym_BSLASHGls] = ACTIONS(823), + [anon_sym_BSLASHGLS] = ACTIONS(823), + [anon_sym_BSLASHglspl] = ACTIONS(823), + [anon_sym_BSLASHGlspl] = ACTIONS(823), + [anon_sym_BSLASHGLSpl] = ACTIONS(823), + [anon_sym_BSLASHglsdisp] = ACTIONS(823), + [anon_sym_BSLASHglslink] = ACTIONS(823), + [anon_sym_BSLASHglstext] = ACTIONS(823), + [anon_sym_BSLASHGlstext] = ACTIONS(823), + [anon_sym_BSLASHGLStext] = ACTIONS(823), + [anon_sym_BSLASHglsfirst] = ACTIONS(823), + [anon_sym_BSLASHGlsfirst] = ACTIONS(823), + [anon_sym_BSLASHGLSfirst] = ACTIONS(823), + [anon_sym_BSLASHglsplural] = ACTIONS(823), + [anon_sym_BSLASHGlsplural] = ACTIONS(823), + [anon_sym_BSLASHGLSplural] = ACTIONS(823), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(823), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(823), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(823), + [anon_sym_BSLASHglsname] = ACTIONS(823), + [anon_sym_BSLASHGlsname] = ACTIONS(823), + [anon_sym_BSLASHGLSname] = ACTIONS(823), + [anon_sym_BSLASHglssymbol] = ACTIONS(823), + [anon_sym_BSLASHGlssymbol] = ACTIONS(823), + [anon_sym_BSLASHglsdesc] = ACTIONS(823), + [anon_sym_BSLASHGlsdesc] = ACTIONS(823), + [anon_sym_BSLASHGLSdesc] = ACTIONS(823), + [anon_sym_BSLASHglsuseri] = ACTIONS(823), + [anon_sym_BSLASHGlsuseri] = ACTIONS(823), + [anon_sym_BSLASHGLSuseri] = ACTIONS(823), + [anon_sym_BSLASHglsuserii] = ACTIONS(823), + [anon_sym_BSLASHGlsuserii] = ACTIONS(823), + [anon_sym_BSLASHGLSuserii] = ACTIONS(823), + [anon_sym_BSLASHglsuseriii] = ACTIONS(823), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(823), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(823), + [anon_sym_BSLASHglsuseriv] = ACTIONS(823), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(823), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(823), + [anon_sym_BSLASHglsuserv] = ACTIONS(823), + [anon_sym_BSLASHGlsuserv] = ACTIONS(823), + [anon_sym_BSLASHGLSuserv] = ACTIONS(823), + [anon_sym_BSLASHglsuservi] = ACTIONS(823), + [anon_sym_BSLASHGlsuservi] = ACTIONS(823), + [anon_sym_BSLASHGLSuservi] = ACTIONS(823), + [anon_sym_BSLASHnewacronym] = ACTIONS(826), + [anon_sym_BSLASHacrshort] = ACTIONS(829), + [anon_sym_BSLASHAcrshort] = ACTIONS(829), + [anon_sym_BSLASHACRshort] = ACTIONS(829), + [anon_sym_BSLASHacrshortpl] = ACTIONS(829), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(829), + [anon_sym_BSLASHACRshortpl] = ACTIONS(829), + [anon_sym_BSLASHacrlong] = ACTIONS(829), + [anon_sym_BSLASHAcrlong] = ACTIONS(829), + [anon_sym_BSLASHACRlong] = ACTIONS(829), + [anon_sym_BSLASHacrlongpl] = ACTIONS(829), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(829), + [anon_sym_BSLASHACRlongpl] = ACTIONS(829), + [anon_sym_BSLASHacrfull] = ACTIONS(829), + [anon_sym_BSLASHAcrfull] = ACTIONS(829), + [anon_sym_BSLASHACRfull] = ACTIONS(829), + [anon_sym_BSLASHacrfullpl] = ACTIONS(829), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(829), + [anon_sym_BSLASHACRfullpl] = ACTIONS(829), + [anon_sym_BSLASHacs] = ACTIONS(829), + [anon_sym_BSLASHAcs] = ACTIONS(829), + [anon_sym_BSLASHacsp] = ACTIONS(829), + [anon_sym_BSLASHAcsp] = ACTIONS(829), + [anon_sym_BSLASHacl] = ACTIONS(829), + [anon_sym_BSLASHAcl] = ACTIONS(829), + [anon_sym_BSLASHaclp] = ACTIONS(829), + [anon_sym_BSLASHAclp] = ACTIONS(829), + [anon_sym_BSLASHacf] = ACTIONS(829), + [anon_sym_BSLASHAcf] = ACTIONS(829), + [anon_sym_BSLASHacfp] = ACTIONS(829), + [anon_sym_BSLASHAcfp] = ACTIONS(829), + [anon_sym_BSLASHac] = ACTIONS(829), + [anon_sym_BSLASHAc] = ACTIONS(829), + [anon_sym_BSLASHacp] = ACTIONS(829), + [anon_sym_BSLASHglsentrylong] = ACTIONS(829), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(829), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(829), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(829), + [anon_sym_BSLASHglsentryshort] = ACTIONS(829), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(829), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(829), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(829), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(829), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(829), + [anon_sym_BSLASHnewtheorem] = ACTIONS(832), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(832), + [anon_sym_BSLASHcolor] = ACTIONS(835), + [anon_sym_BSLASHcolorbox] = ACTIONS(835), + [anon_sym_BSLASHtextcolor] = ACTIONS(835), + [anon_sym_BSLASHpagecolor] = ACTIONS(835), + [anon_sym_BSLASHdefinecolor] = ACTIONS(838), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(844), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(847), + }, + [93] = { + [sym__simple_content] = STATE(96), + [sym__content] = STATE(96), + [sym_part] = STATE(96), + [sym_chapter] = STATE(96), + [sym_section] = STATE(96), + [sym_subsection] = STATE(96), + [sym_subsubsection] = STATE(96), + [sym_paragraph] = STATE(96), + [sym_subparagraph] = STATE(96), + [sym_enum_item] = STATE(96), + [sym_brace_group] = STATE(96), + [sym_mixed_group] = STATE(96), + [sym_text] = STATE(96), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(96), + [sym_inline_formula] = STATE(96), + [sym_begin] = STATE(52), + [sym_environment] = STATE(96), + [sym_caption] = STATE(96), + [sym_citation] = STATE(96), + [sym_package_include] = STATE(96), + [sym_class_include] = STATE(96), + [sym_latex_include] = STATE(96), + [sym_latex_input] = STATE(96), + [sym_biblatex_include] = STATE(96), + [sym_bibtex_include] = STATE(96), + [sym_graphics_include] = STATE(96), + [sym_svg_include] = STATE(96), + [sym_inkscape_include] = STATE(96), + [sym_verbatim_include] = STATE(96), + [sym_import] = STATE(96), + [sym_label_definition] = STATE(96), + [sym_label_reference] = STATE(96), + [sym_equation_label_reference] = STATE(96), + [sym_label_reference_range] = STATE(96), + [sym_label_number] = STATE(96), + [sym_command_definition] = STATE(96), + [sym_math_operator] = STATE(96), + [sym_glossary_entry_definition] = STATE(96), + [sym_glossary_entry_reference] = STATE(96), + [sym_acronym_definition] = STATE(96), + [sym_acronym_reference] = STATE(96), + [sym_theorem_definition] = STATE(96), + [sym_color_reference] = STATE(96), + [sym_color_definition] = STATE(96), + [sym_color_set_definition] = STATE(96), + [sym_pgf_library_import] = STATE(96), + [sym_tikz_library_import] = STATE(96), + [sym_generic_command] = STATE(96), + [aux_sym_document_repeat1] = STATE(96), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(852), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [94] = { + [sym__simple_content] = STATE(100), + [sym__content] = STATE(100), + [sym_part] = STATE(100), + [sym_chapter] = STATE(100), + [sym_section] = STATE(100), + [sym_subsection] = STATE(100), + [sym_subsubsection] = STATE(100), + [sym_paragraph] = STATE(100), + [sym_subparagraph] = STATE(100), + [sym_enum_item] = STATE(100), + [sym_brace_group] = STATE(100), + [sym_mixed_group] = STATE(100), + [sym_text] = STATE(100), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(100), + [sym_inline_formula] = STATE(100), + [sym_begin] = STATE(73), + [sym_end] = STATE(1209), + [sym_environment] = STATE(100), + [sym_caption] = STATE(100), + [sym_citation] = STATE(100), + [sym_package_include] = STATE(100), + [sym_class_include] = STATE(100), + [sym_latex_include] = STATE(100), + [sym_latex_input] = STATE(100), + [sym_biblatex_include] = STATE(100), + [sym_bibtex_include] = STATE(100), + [sym_graphics_include] = STATE(100), + [sym_svg_include] = STATE(100), + [sym_inkscape_include] = STATE(100), + [sym_verbatim_include] = STATE(100), + [sym_import] = STATE(100), + [sym_label_definition] = STATE(100), + [sym_label_reference] = STATE(100), + [sym_equation_label_reference] = STATE(100), + [sym_label_reference_range] = STATE(100), + [sym_label_number] = STATE(100), + [sym_command_definition] = STATE(100), + [sym_math_operator] = STATE(100), + [sym_glossary_entry_definition] = STATE(100), + [sym_glossary_entry_reference] = STATE(100), + [sym_acronym_definition] = STATE(100), + [sym_acronym_reference] = STATE(100), + [sym_theorem_definition] = STATE(100), + [sym_color_reference] = STATE(100), + [sym_color_definition] = STATE(100), + [sym_color_set_definition] = STATE(100), + [sym_pgf_library_import] = STATE(100), + [sym_tikz_library_import] = STATE(100), + [sym_generic_command] = STATE(100), + [aux_sym_document_repeat1] = STATE(100), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(854), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(856), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [95] = { + [sym__simple_content] = STATE(96), + [sym__content] = STATE(96), + [sym_part] = STATE(96), + [sym_chapter] = STATE(96), + [sym_section] = STATE(96), + [sym_subsection] = STATE(96), + [sym_subsubsection] = STATE(96), + [sym_paragraph] = STATE(96), + [sym_subparagraph] = STATE(96), + [sym_enum_item] = STATE(96), + [sym_brace_group] = STATE(96), + [sym_mixed_group] = STATE(96), + [sym_text] = STATE(96), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(96), + [sym_inline_formula] = STATE(96), + [sym_begin] = STATE(52), + [sym_environment] = STATE(96), + [sym_caption] = STATE(96), + [sym_citation] = STATE(96), + [sym_package_include] = STATE(96), + [sym_class_include] = STATE(96), + [sym_latex_include] = STATE(96), + [sym_latex_input] = STATE(96), + [sym_biblatex_include] = STATE(96), + [sym_bibtex_include] = STATE(96), + [sym_graphics_include] = STATE(96), + [sym_svg_include] = STATE(96), + [sym_inkscape_include] = STATE(96), + [sym_verbatim_include] = STATE(96), + [sym_import] = STATE(96), + [sym_label_definition] = STATE(96), + [sym_label_reference] = STATE(96), + [sym_equation_label_reference] = STATE(96), + [sym_label_reference_range] = STATE(96), + [sym_label_number] = STATE(96), + [sym_command_definition] = STATE(96), + [sym_math_operator] = STATE(96), + [sym_glossary_entry_definition] = STATE(96), + [sym_glossary_entry_reference] = STATE(96), + [sym_acronym_definition] = STATE(96), + [sym_acronym_reference] = STATE(96), + [sym_theorem_definition] = STATE(96), + [sym_color_reference] = STATE(96), + [sym_color_definition] = STATE(96), + [sym_color_set_definition] = STATE(96), + [sym_pgf_library_import] = STATE(96), + [sym_tikz_library_import] = STATE(96), + [sym_generic_command] = STATE(96), + [aux_sym_document_repeat1] = STATE(96), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(858), + [sym_param] = ACTIONS(852), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [96] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(860), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(860), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [97] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(862), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(862), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [98] = { + [sym__simple_content] = STATE(97), + [sym__content] = STATE(97), + [sym_part] = STATE(97), + [sym_chapter] = STATE(97), + [sym_section] = STATE(97), + [sym_subsection] = STATE(97), + [sym_subsubsection] = STATE(97), + [sym_paragraph] = STATE(97), + [sym_subparagraph] = STATE(97), + [sym_enum_item] = STATE(97), + [sym_brace_group] = STATE(97), + [sym_mixed_group] = STATE(97), + [sym_text] = STATE(97), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(97), + [sym_inline_formula] = STATE(97), + [sym_begin] = STATE(52), + [sym_environment] = STATE(97), + [sym_caption] = STATE(97), + [sym_citation] = STATE(97), + [sym_package_include] = STATE(97), + [sym_class_include] = STATE(97), + [sym_latex_include] = STATE(97), + [sym_latex_input] = STATE(97), + [sym_biblatex_include] = STATE(97), + [sym_bibtex_include] = STATE(97), + [sym_graphics_include] = STATE(97), + [sym_svg_include] = STATE(97), + [sym_inkscape_include] = STATE(97), + [sym_verbatim_include] = STATE(97), + [sym_import] = STATE(97), + [sym_label_definition] = STATE(97), + [sym_label_reference] = STATE(97), + [sym_equation_label_reference] = STATE(97), + [sym_label_reference_range] = STATE(97), + [sym_label_number] = STATE(97), + [sym_command_definition] = STATE(97), + [sym_math_operator] = STATE(97), + [sym_glossary_entry_definition] = STATE(97), + [sym_glossary_entry_reference] = STATE(97), + [sym_acronym_definition] = STATE(97), + [sym_acronym_reference] = STATE(97), + [sym_theorem_definition] = STATE(97), + [sym_color_reference] = STATE(97), + [sym_color_definition] = STATE(97), + [sym_color_set_definition] = STATE(97), + [sym_pgf_library_import] = STATE(97), + [sym_tikz_library_import] = STATE(97), + [sym_generic_command] = STATE(97), + [aux_sym_document_repeat1] = STATE(97), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(864), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(866), + [sym_param] = ACTIONS(868), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [99] = { + [sym__simple_content] = STATE(91), + [sym__content] = STATE(91), + [sym_part] = STATE(91), + [sym_chapter] = STATE(91), + [sym_section] = STATE(91), + [sym_subsection] = STATE(91), + [sym_subsubsection] = STATE(91), + [sym_paragraph] = STATE(91), + [sym_subparagraph] = STATE(91), + [sym_enum_item] = STATE(91), + [sym_brace_group] = STATE(91), + [sym_mixed_group] = STATE(91), + [sym_text] = STATE(91), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(91), + [sym_inline_formula] = STATE(91), + [sym_begin] = STATE(73), + [sym_end] = STATE(1627), + [sym_environment] = STATE(91), + [sym_caption] = STATE(91), + [sym_citation] = STATE(91), + [sym_package_include] = STATE(91), + [sym_class_include] = STATE(91), + [sym_latex_include] = STATE(91), + [sym_latex_input] = STATE(91), + [sym_biblatex_include] = STATE(91), + [sym_bibtex_include] = STATE(91), + [sym_graphics_include] = STATE(91), + [sym_svg_include] = STATE(91), + [sym_inkscape_include] = STATE(91), + [sym_verbatim_include] = STATE(91), + [sym_import] = STATE(91), + [sym_label_definition] = STATE(91), + [sym_label_reference] = STATE(91), + [sym_equation_label_reference] = STATE(91), + [sym_label_reference_range] = STATE(91), + [sym_label_number] = STATE(91), + [sym_command_definition] = STATE(91), + [sym_math_operator] = STATE(91), + [sym_glossary_entry_definition] = STATE(91), + [sym_glossary_entry_reference] = STATE(91), + [sym_acronym_definition] = STATE(91), + [sym_acronym_reference] = STATE(91), + [sym_theorem_definition] = STATE(91), + [sym_color_reference] = STATE(91), + [sym_color_definition] = STATE(91), + [sym_color_set_definition] = STATE(91), + [sym_pgf_library_import] = STATE(91), + [sym_tikz_library_import] = STATE(91), + [sym_generic_command] = STATE(91), + [aux_sym_document_repeat1] = STATE(91), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(870), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(694), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [100] = { + [sym__simple_content] = STATE(157), + [sym__content] = STATE(157), + [sym_part] = STATE(157), + [sym_chapter] = STATE(157), + [sym_section] = STATE(157), + [sym_subsection] = STATE(157), + [sym_subsubsection] = STATE(157), + [sym_paragraph] = STATE(157), + [sym_subparagraph] = STATE(157), + [sym_enum_item] = STATE(157), + [sym_brace_group] = STATE(157), + [sym_mixed_group] = STATE(157), + [sym_text] = STATE(157), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_begin] = STATE(73), + [sym_end] = STATE(1242), + [sym_environment] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_latex_input] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_equation_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_command_definition] = STATE(157), + [sym_math_operator] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_pgf_library_import] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_generic_command] = STATE(157), + [aux_sym_document_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(856), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [101] = { + [sym__simple_content] = STATE(110), + [sym__content] = STATE(110), + [sym_part] = STATE(110), + [sym_chapter] = STATE(110), + [sym_section] = STATE(110), + [sym_subsection] = STATE(110), + [sym_subsubsection] = STATE(110), + [sym_paragraph] = STATE(110), + [sym_subparagraph] = STATE(110), + [sym_enum_item] = STATE(110), + [sym_brace_group] = STATE(110), + [sym_mixed_group] = STATE(110), + [sym_text] = STATE(110), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(110), + [sym_inline_formula] = STATE(110), + [sym_begin] = STATE(52), + [sym_environment] = STATE(110), + [sym_caption] = STATE(110), + [sym_citation] = STATE(110), + [sym_package_include] = STATE(110), + [sym_class_include] = STATE(110), + [sym_latex_include] = STATE(110), + [sym_latex_input] = STATE(110), + [sym_biblatex_include] = STATE(110), + [sym_bibtex_include] = STATE(110), + [sym_graphics_include] = STATE(110), + [sym_svg_include] = STATE(110), + [sym_inkscape_include] = STATE(110), + [sym_verbatim_include] = STATE(110), + [sym_import] = STATE(110), + [sym_label_definition] = STATE(110), + [sym_label_reference] = STATE(110), + [sym_equation_label_reference] = STATE(110), + [sym_label_reference_range] = STATE(110), + [sym_label_number] = STATE(110), + [sym_command_definition] = STATE(110), + [sym_math_operator] = STATE(110), + [sym_glossary_entry_definition] = STATE(110), + [sym_glossary_entry_reference] = STATE(110), + [sym_acronym_definition] = STATE(110), + [sym_acronym_reference] = STATE(110), + [sym_theorem_definition] = STATE(110), + [sym_color_reference] = STATE(110), + [sym_color_definition] = STATE(110), + [sym_color_set_definition] = STATE(110), + [sym_pgf_library_import] = STATE(110), + [sym_tikz_library_import] = STATE(110), + [sym_generic_command] = STATE(110), + [aux_sym_document_repeat1] = STATE(110), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(486), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(490), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [102] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(872), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(872), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [103] = { + [sym__simple_content] = STATE(70), + [sym__content] = STATE(70), + [sym_part] = STATE(70), + [sym_chapter] = STATE(70), + [sym_section] = STATE(70), + [sym_subsection] = STATE(70), + [sym_subsubsection] = STATE(70), + [sym_paragraph] = STATE(70), + [sym_subparagraph] = STATE(70), + [sym_enum_item] = STATE(70), + [sym_brace_group] = STATE(70), + [sym_mixed_group] = STATE(70), + [sym_text] = STATE(70), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(70), + [sym_inline_formula] = STATE(70), + [sym_begin] = STATE(52), + [sym_environment] = STATE(70), + [sym_caption] = STATE(70), + [sym_citation] = STATE(70), + [sym_package_include] = STATE(70), + [sym_class_include] = STATE(70), + [sym_latex_include] = STATE(70), + [sym_latex_input] = STATE(70), + [sym_biblatex_include] = STATE(70), + [sym_bibtex_include] = STATE(70), + [sym_graphics_include] = STATE(70), + [sym_svg_include] = STATE(70), + [sym_inkscape_include] = STATE(70), + [sym_verbatim_include] = STATE(70), + [sym_import] = STATE(70), + [sym_label_definition] = STATE(70), + [sym_label_reference] = STATE(70), + [sym_equation_label_reference] = STATE(70), + [sym_label_reference_range] = STATE(70), + [sym_label_number] = STATE(70), + [sym_command_definition] = STATE(70), + [sym_math_operator] = STATE(70), + [sym_glossary_entry_definition] = STATE(70), + [sym_glossary_entry_reference] = STATE(70), + [sym_acronym_definition] = STATE(70), + [sym_acronym_reference] = STATE(70), + [sym_theorem_definition] = STATE(70), + [sym_color_reference] = STATE(70), + [sym_color_definition] = STATE(70), + [sym_color_set_definition] = STATE(70), + [sym_pgf_library_import] = STATE(70), + [sym_tikz_library_import] = STATE(70), + [sym_generic_command] = STATE(70), + [aux_sym_document_repeat1] = STATE(70), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(594), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(594), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(874), + [sym_param] = ACTIONS(596), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [104] = { + [sym__simple_content] = STATE(97), + [sym__content] = STATE(97), + [sym_part] = STATE(97), + [sym_chapter] = STATE(97), + [sym_section] = STATE(97), + [sym_subsection] = STATE(97), + [sym_subsubsection] = STATE(97), + [sym_paragraph] = STATE(97), + [sym_subparagraph] = STATE(97), + [sym_enum_item] = STATE(97), + [sym_brace_group] = STATE(97), + [sym_mixed_group] = STATE(97), + [sym_text] = STATE(97), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(97), + [sym_inline_formula] = STATE(97), + [sym_begin] = STATE(52), + [sym_environment] = STATE(97), + [sym_caption] = STATE(97), + [sym_citation] = STATE(97), + [sym_package_include] = STATE(97), + [sym_class_include] = STATE(97), + [sym_latex_include] = STATE(97), + [sym_latex_input] = STATE(97), + [sym_biblatex_include] = STATE(97), + [sym_bibtex_include] = STATE(97), + [sym_graphics_include] = STATE(97), + [sym_svg_include] = STATE(97), + [sym_inkscape_include] = STATE(97), + [sym_verbatim_include] = STATE(97), + [sym_import] = STATE(97), + [sym_label_definition] = STATE(97), + [sym_label_reference] = STATE(97), + [sym_equation_label_reference] = STATE(97), + [sym_label_reference_range] = STATE(97), + [sym_label_number] = STATE(97), + [sym_command_definition] = STATE(97), + [sym_math_operator] = STATE(97), + [sym_glossary_entry_definition] = STATE(97), + [sym_glossary_entry_reference] = STATE(97), + [sym_acronym_definition] = STATE(97), + [sym_acronym_reference] = STATE(97), + [sym_theorem_definition] = STATE(97), + [sym_color_reference] = STATE(97), + [sym_color_definition] = STATE(97), + [sym_color_set_definition] = STATE(97), + [sym_pgf_library_import] = STATE(97), + [sym_tikz_library_import] = STATE(97), + [sym_generic_command] = STATE(97), + [aux_sym_document_repeat1] = STATE(97), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(864), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(868), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [105] = { + [sym__simple_content] = STATE(113), + [sym__content] = STATE(113), + [sym_part] = STATE(113), + [sym_chapter] = STATE(113), + [sym_section] = STATE(113), + [sym_subsection] = STATE(113), + [sym_subsubsection] = STATE(113), + [sym_paragraph] = STATE(113), + [sym_subparagraph] = STATE(113), + [sym_enum_item] = STATE(113), + [sym_brace_group] = STATE(113), + [sym_mixed_group] = STATE(113), + [sym_text] = STATE(113), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(113), + [sym_inline_formula] = STATE(113), + [sym_begin] = STATE(73), + [sym_end] = STATE(1356), + [sym_environment] = STATE(113), + [sym_caption] = STATE(113), + [sym_citation] = STATE(113), + [sym_package_include] = STATE(113), + [sym_class_include] = STATE(113), + [sym_latex_include] = STATE(113), + [sym_latex_input] = STATE(113), + [sym_biblatex_include] = STATE(113), + [sym_bibtex_include] = STATE(113), + [sym_graphics_include] = STATE(113), + [sym_svg_include] = STATE(113), + [sym_inkscape_include] = STATE(113), + [sym_verbatim_include] = STATE(113), + [sym_import] = STATE(113), + [sym_label_definition] = STATE(113), + [sym_label_reference] = STATE(113), + [sym_equation_label_reference] = STATE(113), + [sym_label_reference_range] = STATE(113), + [sym_label_number] = STATE(113), + [sym_command_definition] = STATE(113), + [sym_math_operator] = STATE(113), + [sym_glossary_entry_definition] = STATE(113), + [sym_glossary_entry_reference] = STATE(113), + [sym_acronym_definition] = STATE(113), + [sym_acronym_reference] = STATE(113), + [sym_theorem_definition] = STATE(113), + [sym_color_reference] = STATE(113), + [sym_color_definition] = STATE(113), + [sym_color_set_definition] = STATE(113), + [sym_pgf_library_import] = STATE(113), + [sym_tikz_library_import] = STATE(113), + [sym_generic_command] = STATE(113), + [aux_sym_document_repeat1] = STATE(113), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(876), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(878), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [106] = { + [sym__simple_content] = STATE(102), + [sym__content] = STATE(102), + [sym_part] = STATE(102), + [sym_chapter] = STATE(102), + [sym_section] = STATE(102), + [sym_subsection] = STATE(102), + [sym_subsubsection] = STATE(102), + [sym_paragraph] = STATE(102), + [sym_subparagraph] = STATE(102), + [sym_enum_item] = STATE(102), + [sym_brace_group] = STATE(102), + [sym_mixed_group] = STATE(102), + [sym_text] = STATE(102), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(102), + [sym_inline_formula] = STATE(102), + [sym_begin] = STATE(52), + [sym_environment] = STATE(102), + [sym_caption] = STATE(102), + [sym_citation] = STATE(102), + [sym_package_include] = STATE(102), + [sym_class_include] = STATE(102), + [sym_latex_include] = STATE(102), + [sym_latex_input] = STATE(102), + [sym_biblatex_include] = STATE(102), + [sym_bibtex_include] = STATE(102), + [sym_graphics_include] = STATE(102), + [sym_svg_include] = STATE(102), + [sym_inkscape_include] = STATE(102), + [sym_verbatim_include] = STATE(102), + [sym_import] = STATE(102), + [sym_label_definition] = STATE(102), + [sym_label_reference] = STATE(102), + [sym_equation_label_reference] = STATE(102), + [sym_label_reference_range] = STATE(102), + [sym_label_number] = STATE(102), + [sym_command_definition] = STATE(102), + [sym_math_operator] = STATE(102), + [sym_glossary_entry_definition] = STATE(102), + [sym_glossary_entry_reference] = STATE(102), + [sym_acronym_definition] = STATE(102), + [sym_acronym_reference] = STATE(102), + [sym_theorem_definition] = STATE(102), + [sym_color_reference] = STATE(102), + [sym_color_definition] = STATE(102), + [sym_color_set_definition] = STATE(102), + [sym_pgf_library_import] = STATE(102), + [sym_tikz_library_import] = STATE(102), + [sym_generic_command] = STATE(102), + [aux_sym_document_repeat1] = STATE(102), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(882), + [sym_param] = ACTIONS(884), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [107] = { + [sym__simple_content] = STATE(102), + [sym__content] = STATE(102), + [sym_part] = STATE(102), + [sym_chapter] = STATE(102), + [sym_section] = STATE(102), + [sym_subsection] = STATE(102), + [sym_subsubsection] = STATE(102), + [sym_paragraph] = STATE(102), + [sym_subparagraph] = STATE(102), + [sym_enum_item] = STATE(102), + [sym_brace_group] = STATE(102), + [sym_mixed_group] = STATE(102), + [sym_text] = STATE(102), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(102), + [sym_inline_formula] = STATE(102), + [sym_begin] = STATE(52), + [sym_environment] = STATE(102), + [sym_caption] = STATE(102), + [sym_citation] = STATE(102), + [sym_package_include] = STATE(102), + [sym_class_include] = STATE(102), + [sym_latex_include] = STATE(102), + [sym_latex_input] = STATE(102), + [sym_biblatex_include] = STATE(102), + [sym_bibtex_include] = STATE(102), + [sym_graphics_include] = STATE(102), + [sym_svg_include] = STATE(102), + [sym_inkscape_include] = STATE(102), + [sym_verbatim_include] = STATE(102), + [sym_import] = STATE(102), + [sym_label_definition] = STATE(102), + [sym_label_reference] = STATE(102), + [sym_equation_label_reference] = STATE(102), + [sym_label_reference_range] = STATE(102), + [sym_label_number] = STATE(102), + [sym_command_definition] = STATE(102), + [sym_math_operator] = STATE(102), + [sym_glossary_entry_definition] = STATE(102), + [sym_glossary_entry_reference] = STATE(102), + [sym_acronym_definition] = STATE(102), + [sym_acronym_reference] = STATE(102), + [sym_theorem_definition] = STATE(102), + [sym_color_reference] = STATE(102), + [sym_color_definition] = STATE(102), + [sym_color_set_definition] = STATE(102), + [sym_pgf_library_import] = STATE(102), + [sym_tikz_library_import] = STATE(102), + [sym_generic_command] = STATE(102), + [aux_sym_document_repeat1] = STATE(102), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(880), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(880), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(884), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [108] = { + [sym__simple_content] = STATE(157), + [sym__content] = STATE(157), + [sym_part] = STATE(157), + [sym_chapter] = STATE(157), + [sym_section] = STATE(157), + [sym_subsection] = STATE(157), + [sym_subsubsection] = STATE(157), + [sym_paragraph] = STATE(157), + [sym_subparagraph] = STATE(157), + [sym_enum_item] = STATE(157), + [sym_brace_group] = STATE(157), + [sym_mixed_group] = STATE(157), + [sym_text] = STATE(157), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_begin] = STATE(73), + [sym_end] = STATE(556), + [sym_environment] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_latex_input] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_equation_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_command_definition] = STATE(157), + [sym_math_operator] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_pgf_library_import] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_generic_command] = STATE(157), + [aux_sym_document_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(600), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [109] = { + [sym__simple_content] = STATE(157), + [sym__content] = STATE(157), + [sym_part] = STATE(157), + [sym_chapter] = STATE(157), + [sym_section] = STATE(157), + [sym_subsection] = STATE(157), + [sym_subsubsection] = STATE(157), + [sym_paragraph] = STATE(157), + [sym_subparagraph] = STATE(157), + [sym_enum_item] = STATE(157), + [sym_brace_group] = STATE(157), + [sym_mixed_group] = STATE(157), + [sym_text] = STATE(157), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_begin] = STATE(73), + [sym_end] = STATE(1484), + [sym_environment] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_latex_input] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_equation_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_command_definition] = STATE(157), + [sym_math_operator] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_pgf_library_import] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_generic_command] = STATE(157), + [aux_sym_document_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(886), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [110] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(888), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [111] = { + [sym__simple_content] = STATE(92), + [sym_chapter] = STATE(92), + [sym_section] = STATE(92), + [sym_subsection] = STATE(92), + [sym_subsubsection] = STATE(92), + [sym_paragraph] = STATE(92), + [sym_subparagraph] = STATE(92), + [sym_enum_item] = STATE(92), + [sym_brace_group] = STATE(92), + [sym_mixed_group] = STATE(92), + [sym_text] = STATE(92), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(92), + [sym_inline_formula] = STATE(92), + [sym_begin] = STATE(52), + [sym_environment] = STATE(92), + [sym_caption] = STATE(92), + [sym_citation] = STATE(92), + [sym_package_include] = STATE(92), + [sym_class_include] = STATE(92), + [sym_latex_include] = STATE(92), + [sym_latex_input] = STATE(92), + [sym_biblatex_include] = STATE(92), + [sym_bibtex_include] = STATE(92), + [sym_graphics_include] = STATE(92), + [sym_svg_include] = STATE(92), + [sym_inkscape_include] = STATE(92), + [sym_verbatim_include] = STATE(92), + [sym_import] = STATE(92), + [sym_label_definition] = STATE(92), + [sym_label_reference] = STATE(92), + [sym_equation_label_reference] = STATE(92), + [sym_label_reference_range] = STATE(92), + [sym_label_number] = STATE(92), + [sym_command_definition] = STATE(92), + [sym_math_operator] = STATE(92), + [sym_glossary_entry_definition] = STATE(92), + [sym_glossary_entry_reference] = STATE(92), + [sym_acronym_definition] = STATE(92), + [sym_acronym_reference] = STATE(92), + [sym_theorem_definition] = STATE(92), + [sym_color_reference] = STATE(92), + [sym_color_definition] = STATE(92), + [sym_color_set_definition] = STATE(92), + [sym_pgf_library_import] = STATE(92), + [sym_tikz_library_import] = STATE(92), + [sym_generic_command] = STATE(92), + [aux_sym_part_repeat1] = STATE(92), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(890), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(892), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(894), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [112] = { + [sym__simple_content] = STATE(109), + [sym__content] = STATE(109), + [sym_part] = STATE(109), + [sym_chapter] = STATE(109), + [sym_section] = STATE(109), + [sym_subsection] = STATE(109), + [sym_subsubsection] = STATE(109), + [sym_paragraph] = STATE(109), + [sym_subparagraph] = STATE(109), + [sym_enum_item] = STATE(109), + [sym_brace_group] = STATE(109), + [sym_mixed_group] = STATE(109), + [sym_text] = STATE(109), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(109), + [sym_inline_formula] = STATE(109), + [sym_begin] = STATE(73), + [sym_end] = STATE(1502), + [sym_environment] = STATE(109), + [sym_caption] = STATE(109), + [sym_citation] = STATE(109), + [sym_package_include] = STATE(109), + [sym_class_include] = STATE(109), + [sym_latex_include] = STATE(109), + [sym_latex_input] = STATE(109), + [sym_biblatex_include] = STATE(109), + [sym_bibtex_include] = STATE(109), + [sym_graphics_include] = STATE(109), + [sym_svg_include] = STATE(109), + [sym_inkscape_include] = STATE(109), + [sym_verbatim_include] = STATE(109), + [sym_import] = STATE(109), + [sym_label_definition] = STATE(109), + [sym_label_reference] = STATE(109), + [sym_equation_label_reference] = STATE(109), + [sym_label_reference_range] = STATE(109), + [sym_label_number] = STATE(109), + [sym_command_definition] = STATE(109), + [sym_math_operator] = STATE(109), + [sym_glossary_entry_definition] = STATE(109), + [sym_glossary_entry_reference] = STATE(109), + [sym_acronym_definition] = STATE(109), + [sym_acronym_reference] = STATE(109), + [sym_theorem_definition] = STATE(109), + [sym_color_reference] = STATE(109), + [sym_color_definition] = STATE(109), + [sym_color_set_definition] = STATE(109), + [sym_pgf_library_import] = STATE(109), + [sym_tikz_library_import] = STATE(109), + [sym_generic_command] = STATE(109), + [aux_sym_document_repeat1] = STATE(109), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(896), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(886), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [113] = { + [sym__simple_content] = STATE(157), + [sym__content] = STATE(157), + [sym_part] = STATE(157), + [sym_chapter] = STATE(157), + [sym_section] = STATE(157), + [sym_subsection] = STATE(157), + [sym_subsubsection] = STATE(157), + [sym_paragraph] = STATE(157), + [sym_subparagraph] = STATE(157), + [sym_enum_item] = STATE(157), + [sym_brace_group] = STATE(157), + [sym_mixed_group] = STATE(157), + [sym_text] = STATE(157), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_begin] = STATE(73), + [sym_end] = STATE(1362), + [sym_environment] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_latex_input] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_equation_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_command_definition] = STATE(157), + [sym_math_operator] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_pgf_library_import] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_generic_command] = STATE(157), + [aux_sym_document_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(494), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(612), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(878), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [114] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(898), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(900), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(902), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [115] = { + [sym__simple_content] = STATE(240), + [sym__content] = STATE(240), + [sym_part] = STATE(240), + [sym_chapter] = STATE(240), + [sym_section] = STATE(240), + [sym_subsection] = STATE(240), + [sym_subsubsection] = STATE(240), + [sym_paragraph] = STATE(240), + [sym_subparagraph] = STATE(240), + [sym_enum_item] = STATE(240), + [sym_brace_group] = STATE(240), + [sym_mixed_group] = STATE(240), + [sym_text] = STATE(240), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(240), + [sym_inline_formula] = STATE(240), + [sym_begin] = STATE(59), + [sym_environment] = STATE(240), + [sym_caption] = STATE(240), + [sym_citation] = STATE(240), + [sym_package_include] = STATE(240), + [sym_class_include] = STATE(240), + [sym_latex_include] = STATE(240), + [sym_latex_input] = STATE(240), + [sym_biblatex_include] = STATE(240), + [sym_bibtex_include] = STATE(240), + [sym_graphics_include] = STATE(240), + [sym_svg_include] = STATE(240), + [sym_inkscape_include] = STATE(240), + [sym_verbatim_include] = STATE(240), + [sym_import] = STATE(240), + [sym_label_definition] = STATE(240), + [sym_label_reference] = STATE(240), + [sym_equation_label_reference] = STATE(240), + [sym_label_reference_range] = STATE(240), + [sym_label_number] = STATE(240), + [sym_command_definition] = STATE(240), + [sym_math_operator] = STATE(240), + [sym_glossary_entry_definition] = STATE(240), + [sym_glossary_entry_reference] = STATE(240), + [sym_acronym_definition] = STATE(240), + [sym_acronym_reference] = STATE(240), + [sym_theorem_definition] = STATE(240), + [sym_color_reference] = STATE(240), + [sym_color_definition] = STATE(240), + [sym_color_set_definition] = STATE(240), + [sym_pgf_library_import] = STATE(240), + [sym_tikz_library_import] = STATE(240), + [sym_generic_command] = STATE(240), + [aux_sym_document_repeat1] = STATE(240), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(904), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(906), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(908), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [116] = { + [sym__simple_content] = STATE(188), + [sym__content] = STATE(188), + [sym_part] = STATE(188), + [sym_chapter] = STATE(188), + [sym_section] = STATE(188), + [sym_subsection] = STATE(188), + [sym_subsubsection] = STATE(188), + [sym_paragraph] = STATE(188), + [sym_subparagraph] = STATE(188), + [sym_enum_item] = STATE(188), + [sym_brace_group] = STATE(188), + [sym_mixed_group] = STATE(188), + [sym_text] = STATE(188), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(188), + [sym_inline_formula] = STATE(188), + [sym_begin] = STATE(52), + [sym_environment] = STATE(188), + [sym_caption] = STATE(188), + [sym_citation] = STATE(188), + [sym_package_include] = STATE(188), + [sym_class_include] = STATE(188), + [sym_latex_include] = STATE(188), + [sym_latex_input] = STATE(188), + [sym_biblatex_include] = STATE(188), + [sym_bibtex_include] = STATE(188), + [sym_graphics_include] = STATE(188), + [sym_svg_include] = STATE(188), + [sym_inkscape_include] = STATE(188), + [sym_verbatim_include] = STATE(188), + [sym_import] = STATE(188), + [sym_label_definition] = STATE(188), + [sym_label_reference] = STATE(188), + [sym_equation_label_reference] = STATE(188), + [sym_label_reference_range] = STATE(188), + [sym_label_number] = STATE(188), + [sym_command_definition] = STATE(188), + [sym_math_operator] = STATE(188), + [sym_glossary_entry_definition] = STATE(188), + [sym_glossary_entry_reference] = STATE(188), + [sym_acronym_definition] = STATE(188), + [sym_acronym_reference] = STATE(188), + [sym_theorem_definition] = STATE(188), + [sym_color_reference] = STATE(188), + [sym_color_definition] = STATE(188), + [sym_color_set_definition] = STATE(188), + [sym_pgf_library_import] = STATE(188), + [sym_tikz_library_import] = STATE(188), + [sym_generic_command] = STATE(188), + [aux_sym_document_repeat1] = STATE(188), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(912), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [117] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(123), + [aux_sym_chapter_token1] = ACTIONS(123), + [aux_sym_section_token1] = ACTIONS(123), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [118] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(914), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [119] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [120] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(918), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(921), + [aux_sym_chapter_token1] = ACTIONS(924), + [aux_sym_section_token1] = ACTIONS(927), + [aux_sym_subsection_token1] = ACTIONS(930), + [aux_sym_subsubsection_token1] = ACTIONS(933), + [aux_sym_paragraph_token1] = ACTIONS(936), + [aux_sym_subparagraph_token1] = ACTIONS(939), + [anon_sym_BSLASHitem] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_EQ] = ACTIONS(951), + [sym_word] = ACTIONS(951), + [sym_param] = ACTIONS(954), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(957), + [anon_sym_BSLASH_LBRACK] = ACTIONS(957), + [anon_sym_BSLASH_RBRACK] = ACTIONS(129), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_BSLASH_LPAREN] = ACTIONS(963), + [anon_sym_BSLASHbegin] = ACTIONS(179), + [anon_sym_BSLASHcaption] = ACTIONS(966), + [anon_sym_BSLASHcite] = ACTIONS(969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(972), + [anon_sym_BSLASHCite] = ACTIONS(969), + [anon_sym_BSLASHnocite] = ACTIONS(969), + [anon_sym_BSLASHcitet] = ACTIONS(969), + [anon_sym_BSLASHcitep] = ACTIONS(969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(972), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(972), + [anon_sym_BSLASHciteauthor] = ACTIONS(969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(972), + [anon_sym_BSLASHCiteauthor] = ACTIONS(969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(972), + [anon_sym_BSLASHcitetitle] = ACTIONS(969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(972), + [anon_sym_BSLASHciteyear] = ACTIONS(969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(972), + [anon_sym_BSLASHcitedate] = ACTIONS(969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(972), + [anon_sym_BSLASHciteurl] = ACTIONS(969), + [anon_sym_BSLASHfullcite] = ACTIONS(969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(969), + [anon_sym_BSLASHcitealt] = ACTIONS(969), + [anon_sym_BSLASHcitealp] = ACTIONS(969), + [anon_sym_BSLASHcitetext] = ACTIONS(969), + [anon_sym_BSLASHparencite] = ACTIONS(969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(972), + [anon_sym_BSLASHParencite] = ACTIONS(969), + [anon_sym_BSLASHfootcite] = ACTIONS(969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(969), + [anon_sym_BSLASHtextcite] = ACTIONS(969), + [anon_sym_BSLASHTextcite] = ACTIONS(969), + [anon_sym_BSLASHsmartcite] = ACTIONS(969), + [anon_sym_BSLASHSmartcite] = ACTIONS(969), + [anon_sym_BSLASHsupercite] = ACTIONS(969), + [anon_sym_BSLASHautocite] = ACTIONS(969), + [anon_sym_BSLASHAutocite] = ACTIONS(969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(972), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(972), + [anon_sym_BSLASHvolcite] = ACTIONS(969), + [anon_sym_BSLASHVolcite] = ACTIONS(969), + [anon_sym_BSLASHpvolcite] = ACTIONS(969), + [anon_sym_BSLASHPvolcite] = ACTIONS(969), + [anon_sym_BSLASHfvolcite] = ACTIONS(969), + [anon_sym_BSLASHftvolcite] = ACTIONS(969), + [anon_sym_BSLASHsvolcite] = ACTIONS(969), + [anon_sym_BSLASHSvolcite] = ACTIONS(969), + [anon_sym_BSLASHtvolcite] = ACTIONS(969), + [anon_sym_BSLASHTvolcite] = ACTIONS(969), + [anon_sym_BSLASHavolcite] = ACTIONS(969), + [anon_sym_BSLASHAvolcite] = ACTIONS(969), + [anon_sym_BSLASHnotecite] = ACTIONS(969), + [anon_sym_BSLASHpnotecite] = ACTIONS(969), + [anon_sym_BSLASHPnotecite] = ACTIONS(969), + [anon_sym_BSLASHfnotecite] = ACTIONS(969), + [anon_sym_BSLASHusepackage] = ACTIONS(975), + [anon_sym_BSLASHRequirePackage] = ACTIONS(975), + [anon_sym_BSLASHdocumentclass] = ACTIONS(978), + [anon_sym_BSLASHinclude] = ACTIONS(981), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(981), + [anon_sym_BSLASHinput] = ACTIONS(984), + [anon_sym_BSLASHsubfile] = ACTIONS(984), + [anon_sym_BSLASHaddbibresource] = ACTIONS(987), + [anon_sym_BSLASHbibliography] = ACTIONS(990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(993), + [anon_sym_BSLASHincludesvg] = ACTIONS(996), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1002), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1002), + [anon_sym_BSLASHimport] = ACTIONS(1005), + [anon_sym_BSLASHsubimport] = ACTIONS(1005), + [anon_sym_BSLASHinputfrom] = ACTIONS(1005), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1005), + [anon_sym_BSLASHincludefrom] = ACTIONS(1005), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1005), + [anon_sym_BSLASHlabel] = ACTIONS(1008), + [anon_sym_BSLASHref] = ACTIONS(1011), + [anon_sym_BSLASHvref] = ACTIONS(1011), + [anon_sym_BSLASHVref] = ACTIONS(1011), + [anon_sym_BSLASHautoref] = ACTIONS(1011), + [anon_sym_BSLASHpageref] = ACTIONS(1011), + [anon_sym_BSLASHcref] = ACTIONS(1011), + [anon_sym_BSLASHCref] = ACTIONS(1011), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1014), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1014), + [anon_sym_BSLASHnamecref] = ACTIONS(1011), + [anon_sym_BSLASHnameCref] = ACTIONS(1011), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1011), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1011), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1011), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1011), + [anon_sym_BSLASHlabelcref] = ACTIONS(1011), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1011), + [anon_sym_BSLASHeqref] = ACTIONS(1017), + [anon_sym_BSLASHcrefrange] = ACTIONS(1020), + [anon_sym_BSLASHCrefrange] = ACTIONS(1020), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1023), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1023), + [anon_sym_BSLASHnewlabel] = ACTIONS(1026), + [anon_sym_BSLASHnewcommand] = ACTIONS(1029), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1029), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1029), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1032), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1035), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1038), + [anon_sym_BSLASHgls] = ACTIONS(1041), + [anon_sym_BSLASHGls] = ACTIONS(1041), + [anon_sym_BSLASHGLS] = ACTIONS(1041), + [anon_sym_BSLASHglspl] = ACTIONS(1041), + [anon_sym_BSLASHGlspl] = ACTIONS(1041), + [anon_sym_BSLASHGLSpl] = ACTIONS(1041), + [anon_sym_BSLASHglsdisp] = ACTIONS(1041), + [anon_sym_BSLASHglslink] = ACTIONS(1041), + [anon_sym_BSLASHglstext] = ACTIONS(1041), + [anon_sym_BSLASHGlstext] = ACTIONS(1041), + [anon_sym_BSLASHGLStext] = ACTIONS(1041), + [anon_sym_BSLASHglsfirst] = ACTIONS(1041), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1041), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1041), + [anon_sym_BSLASHglsplural] = ACTIONS(1041), + [anon_sym_BSLASHGlsplural] = ACTIONS(1041), + [anon_sym_BSLASHGLSplural] = ACTIONS(1041), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1041), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1041), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1041), + [anon_sym_BSLASHglsname] = ACTIONS(1041), + [anon_sym_BSLASHGlsname] = ACTIONS(1041), + [anon_sym_BSLASHGLSname] = ACTIONS(1041), + [anon_sym_BSLASHglssymbol] = ACTIONS(1041), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1041), + [anon_sym_BSLASHglsdesc] = ACTIONS(1041), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1041), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1041), + [anon_sym_BSLASHglsuseri] = ACTIONS(1041), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1041), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1041), + [anon_sym_BSLASHglsuserii] = ACTIONS(1041), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1041), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1041), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1041), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1041), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1041), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1041), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1041), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1041), + [anon_sym_BSLASHglsuserv] = ACTIONS(1041), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1041), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1041), + [anon_sym_BSLASHglsuservi] = ACTIONS(1041), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1041), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1041), + [anon_sym_BSLASHnewacronym] = ACTIONS(1044), + [anon_sym_BSLASHacrshort] = ACTIONS(1047), + [anon_sym_BSLASHAcrshort] = ACTIONS(1047), + [anon_sym_BSLASHACRshort] = ACTIONS(1047), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1047), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1047), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1047), + [anon_sym_BSLASHacrlong] = ACTIONS(1047), + [anon_sym_BSLASHAcrlong] = ACTIONS(1047), + [anon_sym_BSLASHACRlong] = ACTIONS(1047), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1047), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1047), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1047), + [anon_sym_BSLASHacrfull] = ACTIONS(1047), + [anon_sym_BSLASHAcrfull] = ACTIONS(1047), + [anon_sym_BSLASHACRfull] = ACTIONS(1047), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1047), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1047), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1047), + [anon_sym_BSLASHacs] = ACTIONS(1047), + [anon_sym_BSLASHAcs] = ACTIONS(1047), + [anon_sym_BSLASHacsp] = ACTIONS(1047), + [anon_sym_BSLASHAcsp] = ACTIONS(1047), + [anon_sym_BSLASHacl] = ACTIONS(1047), + [anon_sym_BSLASHAcl] = ACTIONS(1047), + [anon_sym_BSLASHaclp] = ACTIONS(1047), + [anon_sym_BSLASHAclp] = ACTIONS(1047), + [anon_sym_BSLASHacf] = ACTIONS(1047), + [anon_sym_BSLASHAcf] = ACTIONS(1047), + [anon_sym_BSLASHacfp] = ACTIONS(1047), + [anon_sym_BSLASHAcfp] = ACTIONS(1047), + [anon_sym_BSLASHac] = ACTIONS(1047), + [anon_sym_BSLASHAc] = ACTIONS(1047), + [anon_sym_BSLASHacp] = ACTIONS(1047), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1047), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1047), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1047), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1047), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1047), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1047), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1047), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1047), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1047), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1047), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1050), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1050), + [anon_sym_BSLASHcolor] = ACTIONS(1053), + [anon_sym_BSLASHcolorbox] = ACTIONS(1053), + [anon_sym_BSLASHtextcolor] = ACTIONS(1053), + [anon_sym_BSLASHpagecolor] = ACTIONS(1053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1056), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1059), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1062), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1065), + }, + [121] = { + [sym__simple_content] = STATE(118), + [sym__content] = STATE(118), + [sym_part] = STATE(118), + [sym_chapter] = STATE(118), + [sym_section] = STATE(118), + [sym_subsection] = STATE(118), + [sym_subsubsection] = STATE(118), + [sym_paragraph] = STATE(118), + [sym_subparagraph] = STATE(118), + [sym_enum_item] = STATE(118), + [sym_brace_group] = STATE(118), + [sym_mixed_group] = STATE(118), + [sym_text] = STATE(118), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(118), + [sym_inline_formula] = STATE(118), + [sym_begin] = STATE(52), + [sym_environment] = STATE(118), + [sym_caption] = STATE(118), + [sym_citation] = STATE(118), + [sym_package_include] = STATE(118), + [sym_class_include] = STATE(118), + [sym_latex_include] = STATE(118), + [sym_latex_input] = STATE(118), + [sym_biblatex_include] = STATE(118), + [sym_bibtex_include] = STATE(118), + [sym_graphics_include] = STATE(118), + [sym_svg_include] = STATE(118), + [sym_inkscape_include] = STATE(118), + [sym_verbatim_include] = STATE(118), + [sym_import] = STATE(118), + [sym_label_definition] = STATE(118), + [sym_label_reference] = STATE(118), + [sym_equation_label_reference] = STATE(118), + [sym_label_reference_range] = STATE(118), + [sym_label_number] = STATE(118), + [sym_command_definition] = STATE(118), + [sym_math_operator] = STATE(118), + [sym_glossary_entry_definition] = STATE(118), + [sym_glossary_entry_reference] = STATE(118), + [sym_acronym_definition] = STATE(118), + [sym_acronym_reference] = STATE(118), + [sym_theorem_definition] = STATE(118), + [sym_color_reference] = STATE(118), + [sym_color_definition] = STATE(118), + [sym_color_set_definition] = STATE(118), + [sym_pgf_library_import] = STATE(118), + [sym_tikz_library_import] = STATE(118), + [sym_generic_command] = STATE(118), + [aux_sym_document_repeat1] = STATE(118), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1070), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [122] = { + [sym__simple_content] = STATE(119), + [sym__content] = STATE(119), + [sym_part] = STATE(119), + [sym_chapter] = STATE(119), + [sym_section] = STATE(119), + [sym_subsection] = STATE(119), + [sym_subsubsection] = STATE(119), + [sym_paragraph] = STATE(119), + [sym_subparagraph] = STATE(119), + [sym_enum_item] = STATE(119), + [sym_brace_group] = STATE(119), + [sym_mixed_group] = STATE(119), + [sym_text] = STATE(119), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(119), + [sym_inline_formula] = STATE(119), + [sym_begin] = STATE(52), + [sym_environment] = STATE(119), + [sym_caption] = STATE(119), + [sym_citation] = STATE(119), + [sym_package_include] = STATE(119), + [sym_class_include] = STATE(119), + [sym_latex_include] = STATE(119), + [sym_latex_input] = STATE(119), + [sym_biblatex_include] = STATE(119), + [sym_bibtex_include] = STATE(119), + [sym_graphics_include] = STATE(119), + [sym_svg_include] = STATE(119), + [sym_inkscape_include] = STATE(119), + [sym_verbatim_include] = STATE(119), + [sym_import] = STATE(119), + [sym_label_definition] = STATE(119), + [sym_label_reference] = STATE(119), + [sym_equation_label_reference] = STATE(119), + [sym_label_reference_range] = STATE(119), + [sym_label_number] = STATE(119), + [sym_command_definition] = STATE(119), + [sym_math_operator] = STATE(119), + [sym_glossary_entry_definition] = STATE(119), + [sym_glossary_entry_reference] = STATE(119), + [sym_acronym_definition] = STATE(119), + [sym_acronym_reference] = STATE(119), + [sym_theorem_definition] = STATE(119), + [sym_color_reference] = STATE(119), + [sym_color_definition] = STATE(119), + [sym_color_set_definition] = STATE(119), + [sym_pgf_library_import] = STATE(119), + [sym_tikz_library_import] = STATE(119), + [sym_generic_command] = STATE(119), + [aux_sym_document_repeat1] = STATE(119), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1074), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [123] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1076), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1078), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [124] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1076), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1082), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1084), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [125] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1086), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [126] = { + [sym__simple_content] = STATE(202), + [sym__content] = STATE(202), + [sym_part] = STATE(202), + [sym_chapter] = STATE(202), + [sym_section] = STATE(202), + [sym_subsection] = STATE(202), + [sym_subsubsection] = STATE(202), + [sym_paragraph] = STATE(202), + [sym_subparagraph] = STATE(202), + [sym_enum_item] = STATE(202), + [sym_brace_group] = STATE(202), + [sym_mixed_group] = STATE(202), + [sym_text] = STATE(202), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(202), + [sym_inline_formula] = STATE(202), + [sym_begin] = STATE(52), + [sym_environment] = STATE(202), + [sym_caption] = STATE(202), + [sym_citation] = STATE(202), + [sym_package_include] = STATE(202), + [sym_class_include] = STATE(202), + [sym_latex_include] = STATE(202), + [sym_latex_input] = STATE(202), + [sym_biblatex_include] = STATE(202), + [sym_bibtex_include] = STATE(202), + [sym_graphics_include] = STATE(202), + [sym_svg_include] = STATE(202), + [sym_inkscape_include] = STATE(202), + [sym_verbatim_include] = STATE(202), + [sym_import] = STATE(202), + [sym_label_definition] = STATE(202), + [sym_label_reference] = STATE(202), + [sym_equation_label_reference] = STATE(202), + [sym_label_reference_range] = STATE(202), + [sym_label_number] = STATE(202), + [sym_command_definition] = STATE(202), + [sym_math_operator] = STATE(202), + [sym_glossary_entry_definition] = STATE(202), + [sym_glossary_entry_reference] = STATE(202), + [sym_acronym_definition] = STATE(202), + [sym_acronym_reference] = STATE(202), + [sym_theorem_definition] = STATE(202), + [sym_color_reference] = STATE(202), + [sym_color_definition] = STATE(202), + [sym_color_set_definition] = STATE(202), + [sym_pgf_library_import] = STATE(202), + [sym_tikz_library_import] = STATE(202), + [sym_generic_command] = STATE(202), + [aux_sym_document_repeat1] = STATE(202), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1090), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [127] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(111), + [aux_sym_chapter_token1] = ACTIONS(111), + [aux_sym_section_token1] = ACTIONS(111), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_BSLASH_RBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [128] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1092), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [129] = { + [sym__simple_content] = STATE(156), + [sym__content] = STATE(156), + [sym_part] = STATE(156), + [sym_chapter] = STATE(156), + [sym_section] = STATE(156), + [sym_subsection] = STATE(156), + [sym_subsubsection] = STATE(156), + [sym_paragraph] = STATE(156), + [sym_subparagraph] = STATE(156), + [sym_enum_item] = STATE(156), + [sym_brace_group] = STATE(156), + [sym_mixed_group] = STATE(156), + [sym_text] = STATE(156), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(156), + [sym_inline_formula] = STATE(156), + [sym_begin] = STATE(52), + [sym_environment] = STATE(156), + [sym_caption] = STATE(156), + [sym_citation] = STATE(156), + [sym_package_include] = STATE(156), + [sym_class_include] = STATE(156), + [sym_latex_include] = STATE(156), + [sym_latex_input] = STATE(156), + [sym_biblatex_include] = STATE(156), + [sym_bibtex_include] = STATE(156), + [sym_graphics_include] = STATE(156), + [sym_svg_include] = STATE(156), + [sym_inkscape_include] = STATE(156), + [sym_verbatim_include] = STATE(156), + [sym_import] = STATE(156), + [sym_label_definition] = STATE(156), + [sym_label_reference] = STATE(156), + [sym_equation_label_reference] = STATE(156), + [sym_label_reference_range] = STATE(156), + [sym_label_number] = STATE(156), + [sym_command_definition] = STATE(156), + [sym_math_operator] = STATE(156), + [sym_glossary_entry_definition] = STATE(156), + [sym_glossary_entry_reference] = STATE(156), + [sym_acronym_definition] = STATE(156), + [sym_acronym_reference] = STATE(156), + [sym_theorem_definition] = STATE(156), + [sym_color_reference] = STATE(156), + [sym_color_definition] = STATE(156), + [sym_color_set_definition] = STATE(156), + [sym_pgf_library_import] = STATE(156), + [sym_tikz_library_import] = STATE(156), + [sym_generic_command] = STATE(156), + [aux_sym_document_repeat1] = STATE(156), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1094), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1096), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [130] = { + [sym__simple_content] = STATE(207), + [sym_section] = STATE(207), + [sym_subsection] = STATE(207), + [sym_subsubsection] = STATE(207), + [sym_paragraph] = STATE(207), + [sym_subparagraph] = STATE(207), + [sym_enum_item] = STATE(207), + [sym_brace_group] = STATE(207), + [sym_mixed_group] = STATE(207), + [sym_text] = STATE(207), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(207), + [sym_inline_formula] = STATE(207), + [sym_begin] = STATE(52), + [sym_environment] = STATE(207), + [sym_caption] = STATE(207), + [sym_citation] = STATE(207), + [sym_package_include] = STATE(207), + [sym_class_include] = STATE(207), + [sym_latex_include] = STATE(207), + [sym_latex_input] = STATE(207), + [sym_biblatex_include] = STATE(207), + [sym_bibtex_include] = STATE(207), + [sym_graphics_include] = STATE(207), + [sym_svg_include] = STATE(207), + [sym_inkscape_include] = STATE(207), + [sym_verbatim_include] = STATE(207), + [sym_import] = STATE(207), + [sym_label_definition] = STATE(207), + [sym_label_reference] = STATE(207), + [sym_equation_label_reference] = STATE(207), + [sym_label_reference_range] = STATE(207), + [sym_label_number] = STATE(207), + [sym_command_definition] = STATE(207), + [sym_math_operator] = STATE(207), + [sym_glossary_entry_definition] = STATE(207), + [sym_glossary_entry_reference] = STATE(207), + [sym_acronym_definition] = STATE(207), + [sym_acronym_reference] = STATE(207), + [sym_theorem_definition] = STATE(207), + [sym_color_reference] = STATE(207), + [sym_color_definition] = STATE(207), + [sym_color_set_definition] = STATE(207), + [sym_pgf_library_import] = STATE(207), + [sym_tikz_library_import] = STATE(207), + [sym_generic_command] = STATE(207), + [aux_sym_chapter_repeat1] = STATE(207), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(1098), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1100), + [aux_sym_chapter_token1] = ACTIONS(1100), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1098), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [131] = { + [sym__simple_content] = STATE(138), + [sym__content] = STATE(138), + [sym_part] = STATE(138), + [sym_chapter] = STATE(138), + [sym_section] = STATE(138), + [sym_subsection] = STATE(138), + [sym_subsubsection] = STATE(138), + [sym_paragraph] = STATE(138), + [sym_subparagraph] = STATE(138), + [sym_enum_item] = STATE(138), + [sym_brace_group] = STATE(138), + [sym_mixed_group] = STATE(138), + [sym_text] = STATE(138), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(138), + [sym_inline_formula] = STATE(138), + [sym_begin] = STATE(52), + [sym_environment] = STATE(138), + [sym_caption] = STATE(138), + [sym_citation] = STATE(138), + [sym_package_include] = STATE(138), + [sym_class_include] = STATE(138), + [sym_latex_include] = STATE(138), + [sym_latex_input] = STATE(138), + [sym_biblatex_include] = STATE(138), + [sym_bibtex_include] = STATE(138), + [sym_graphics_include] = STATE(138), + [sym_svg_include] = STATE(138), + [sym_inkscape_include] = STATE(138), + [sym_verbatim_include] = STATE(138), + [sym_import] = STATE(138), + [sym_label_definition] = STATE(138), + [sym_label_reference] = STATE(138), + [sym_equation_label_reference] = STATE(138), + [sym_label_reference_range] = STATE(138), + [sym_label_number] = STATE(138), + [sym_command_definition] = STATE(138), + [sym_math_operator] = STATE(138), + [sym_glossary_entry_definition] = STATE(138), + [sym_glossary_entry_reference] = STATE(138), + [sym_acronym_definition] = STATE(138), + [sym_acronym_reference] = STATE(138), + [sym_theorem_definition] = STATE(138), + [sym_color_reference] = STATE(138), + [sym_color_definition] = STATE(138), + [sym_color_set_definition] = STATE(138), + [sym_pgf_library_import] = STATE(138), + [sym_tikz_library_import] = STATE(138), + [sym_generic_command] = STATE(138), + [aux_sym_document_repeat1] = STATE(138), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1104), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1106), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [132] = { + [sym__simple_content] = STATE(128), + [sym__content] = STATE(128), + [sym_part] = STATE(128), + [sym_chapter] = STATE(128), + [sym_section] = STATE(128), + [sym_subsection] = STATE(128), + [sym_subsubsection] = STATE(128), + [sym_paragraph] = STATE(128), + [sym_subparagraph] = STATE(128), + [sym_enum_item] = STATE(128), + [sym_brace_group] = STATE(128), + [sym_mixed_group] = STATE(128), + [sym_text] = STATE(128), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(128), + [sym_inline_formula] = STATE(128), + [sym_begin] = STATE(52), + [sym_environment] = STATE(128), + [sym_caption] = STATE(128), + [sym_citation] = STATE(128), + [sym_package_include] = STATE(128), + [sym_class_include] = STATE(128), + [sym_latex_include] = STATE(128), + [sym_latex_input] = STATE(128), + [sym_biblatex_include] = STATE(128), + [sym_bibtex_include] = STATE(128), + [sym_graphics_include] = STATE(128), + [sym_svg_include] = STATE(128), + [sym_inkscape_include] = STATE(128), + [sym_verbatim_include] = STATE(128), + [sym_import] = STATE(128), + [sym_label_definition] = STATE(128), + [sym_label_reference] = STATE(128), + [sym_equation_label_reference] = STATE(128), + [sym_label_reference_range] = STATE(128), + [sym_label_number] = STATE(128), + [sym_command_definition] = STATE(128), + [sym_math_operator] = STATE(128), + [sym_glossary_entry_definition] = STATE(128), + [sym_glossary_entry_reference] = STATE(128), + [sym_acronym_definition] = STATE(128), + [sym_acronym_reference] = STATE(128), + [sym_theorem_definition] = STATE(128), + [sym_color_reference] = STATE(128), + [sym_color_definition] = STATE(128), + [sym_color_set_definition] = STATE(128), + [sym_pgf_library_import] = STATE(128), + [sym_tikz_library_import] = STATE(128), + [sym_generic_command] = STATE(128), + [aux_sym_document_repeat1] = STATE(128), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1108), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1110), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [133] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(898), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1112), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1114), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [134] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1076), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1116), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1118), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [135] = { + [sym__simple_content] = STATE(140), + [sym__content] = STATE(140), + [sym_part] = STATE(140), + [sym_chapter] = STATE(140), + [sym_section] = STATE(140), + [sym_subsection] = STATE(140), + [sym_subsubsection] = STATE(140), + [sym_paragraph] = STATE(140), + [sym_subparagraph] = STATE(140), + [sym_enum_item] = STATE(140), + [sym_brace_group] = STATE(140), + [sym_mixed_group] = STATE(140), + [sym_text] = STATE(140), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(140), + [sym_inline_formula] = STATE(140), + [sym_begin] = STATE(52), + [sym_environment] = STATE(140), + [sym_caption] = STATE(140), + [sym_citation] = STATE(140), + [sym_package_include] = STATE(140), + [sym_class_include] = STATE(140), + [sym_latex_include] = STATE(140), + [sym_latex_input] = STATE(140), + [sym_biblatex_include] = STATE(140), + [sym_bibtex_include] = STATE(140), + [sym_graphics_include] = STATE(140), + [sym_svg_include] = STATE(140), + [sym_inkscape_include] = STATE(140), + [sym_verbatim_include] = STATE(140), + [sym_import] = STATE(140), + [sym_label_definition] = STATE(140), + [sym_label_reference] = STATE(140), + [sym_equation_label_reference] = STATE(140), + [sym_label_reference_range] = STATE(140), + [sym_label_number] = STATE(140), + [sym_command_definition] = STATE(140), + [sym_math_operator] = STATE(140), + [sym_glossary_entry_definition] = STATE(140), + [sym_glossary_entry_reference] = STATE(140), + [sym_acronym_definition] = STATE(140), + [sym_acronym_reference] = STATE(140), + [sym_theorem_definition] = STATE(140), + [sym_color_reference] = STATE(140), + [sym_color_definition] = STATE(140), + [sym_color_set_definition] = STATE(140), + [sym_pgf_library_import] = STATE(140), + [sym_tikz_library_import] = STATE(140), + [sym_generic_command] = STATE(140), + [aux_sym_document_repeat1] = STATE(140), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1122), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [136] = { + [sym__simple_content] = STATE(123), + [sym__content] = STATE(123), + [sym_part] = STATE(123), + [sym_chapter] = STATE(123), + [sym_section] = STATE(123), + [sym_subsection] = STATE(123), + [sym_subsubsection] = STATE(123), + [sym_paragraph] = STATE(123), + [sym_subparagraph] = STATE(123), + [sym_enum_item] = STATE(123), + [sym_brace_group] = STATE(123), + [sym_mixed_group] = STATE(123), + [sym_text] = STATE(123), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(123), + [sym_inline_formula] = STATE(123), + [sym_begin] = STATE(59), + [sym_environment] = STATE(123), + [sym_caption] = STATE(123), + [sym_citation] = STATE(123), + [sym_package_include] = STATE(123), + [sym_class_include] = STATE(123), + [sym_latex_include] = STATE(123), + [sym_latex_input] = STATE(123), + [sym_biblatex_include] = STATE(123), + [sym_bibtex_include] = STATE(123), + [sym_graphics_include] = STATE(123), + [sym_svg_include] = STATE(123), + [sym_inkscape_include] = STATE(123), + [sym_verbatim_include] = STATE(123), + [sym_import] = STATE(123), + [sym_label_definition] = STATE(123), + [sym_label_reference] = STATE(123), + [sym_equation_label_reference] = STATE(123), + [sym_label_reference_range] = STATE(123), + [sym_label_number] = STATE(123), + [sym_command_definition] = STATE(123), + [sym_math_operator] = STATE(123), + [sym_glossary_entry_definition] = STATE(123), + [sym_glossary_entry_reference] = STATE(123), + [sym_acronym_definition] = STATE(123), + [sym_acronym_reference] = STATE(123), + [sym_theorem_definition] = STATE(123), + [sym_color_reference] = STATE(123), + [sym_color_definition] = STATE(123), + [sym_color_set_definition] = STATE(123), + [sym_pgf_library_import] = STATE(123), + [sym_tikz_library_import] = STATE(123), + [sym_generic_command] = STATE(123), + [aux_sym_document_repeat1] = STATE(123), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(308), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(310), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [137] = { + [sym__simple_content] = STATE(139), + [sym__content] = STATE(139), + [sym_part] = STATE(139), + [sym_chapter] = STATE(139), + [sym_section] = STATE(139), + [sym_subsection] = STATE(139), + [sym_subsubsection] = STATE(139), + [sym_paragraph] = STATE(139), + [sym_subparagraph] = STATE(139), + [sym_enum_item] = STATE(139), + [sym_brace_group] = STATE(139), + [sym_mixed_group] = STATE(139), + [sym_text] = STATE(139), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(139), + [sym_inline_formula] = STATE(139), + [sym_begin] = STATE(66), + [sym_environment] = STATE(139), + [sym_caption] = STATE(139), + [sym_citation] = STATE(139), + [sym_package_include] = STATE(139), + [sym_class_include] = STATE(139), + [sym_latex_include] = STATE(139), + [sym_latex_input] = STATE(139), + [sym_biblatex_include] = STATE(139), + [sym_bibtex_include] = STATE(139), + [sym_graphics_include] = STATE(139), + [sym_svg_include] = STATE(139), + [sym_inkscape_include] = STATE(139), + [sym_verbatim_include] = STATE(139), + [sym_import] = STATE(139), + [sym_label_definition] = STATE(139), + [sym_label_reference] = STATE(139), + [sym_equation_label_reference] = STATE(139), + [sym_label_reference_range] = STATE(139), + [sym_label_number] = STATE(139), + [sym_command_definition] = STATE(139), + [sym_math_operator] = STATE(139), + [sym_glossary_entry_definition] = STATE(139), + [sym_glossary_entry_reference] = STATE(139), + [sym_acronym_definition] = STATE(139), + [sym_acronym_reference] = STATE(139), + [sym_theorem_definition] = STATE(139), + [sym_color_reference] = STATE(139), + [sym_color_definition] = STATE(139), + [sym_color_set_definition] = STATE(139), + [sym_pgf_library_import] = STATE(139), + [sym_tikz_library_import] = STATE(139), + [sym_generic_command] = STATE(139), + [aux_sym_document_repeat1] = STATE(139), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(1124), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1126), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1128), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [138] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1130), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [139] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(898), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1134), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [140] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [141] = { + [sym__simple_content] = STATE(133), + [sym__content] = STATE(133), + [sym_part] = STATE(133), + [sym_chapter] = STATE(133), + [sym_section] = STATE(133), + [sym_subsection] = STATE(133), + [sym_subsubsection] = STATE(133), + [sym_paragraph] = STATE(133), + [sym_subparagraph] = STATE(133), + [sym_enum_item] = STATE(133), + [sym_brace_group] = STATE(133), + [sym_mixed_group] = STATE(133), + [sym_text] = STATE(133), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(133), + [sym_inline_formula] = STATE(133), + [sym_begin] = STATE(66), + [sym_environment] = STATE(133), + [sym_caption] = STATE(133), + [sym_citation] = STATE(133), + [sym_package_include] = STATE(133), + [sym_class_include] = STATE(133), + [sym_latex_include] = STATE(133), + [sym_latex_input] = STATE(133), + [sym_biblatex_include] = STATE(133), + [sym_bibtex_include] = STATE(133), + [sym_graphics_include] = STATE(133), + [sym_svg_include] = STATE(133), + [sym_inkscape_include] = STATE(133), + [sym_verbatim_include] = STATE(133), + [sym_import] = STATE(133), + [sym_label_definition] = STATE(133), + [sym_label_reference] = STATE(133), + [sym_equation_label_reference] = STATE(133), + [sym_label_reference_range] = STATE(133), + [sym_label_number] = STATE(133), + [sym_command_definition] = STATE(133), + [sym_math_operator] = STATE(133), + [sym_glossary_entry_definition] = STATE(133), + [sym_glossary_entry_reference] = STATE(133), + [sym_acronym_definition] = STATE(133), + [sym_acronym_reference] = STATE(133), + [sym_theorem_definition] = STATE(133), + [sym_color_reference] = STATE(133), + [sym_color_definition] = STATE(133), + [sym_color_set_definition] = STATE(133), + [sym_pgf_library_import] = STATE(133), + [sym_tikz_library_import] = STATE(133), + [sym_generic_command] = STATE(133), + [aux_sym_document_repeat1] = STATE(133), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(1138), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1142), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [142] = { + [sym__simple_content] = STATE(196), + [sym__content] = STATE(196), + [sym_part] = STATE(196), + [sym_chapter] = STATE(196), + [sym_section] = STATE(196), + [sym_subsection] = STATE(196), + [sym_subsubsection] = STATE(196), + [sym_paragraph] = STATE(196), + [sym_subparagraph] = STATE(196), + [sym_enum_item] = STATE(196), + [sym_brace_group] = STATE(196), + [sym_mixed_group] = STATE(196), + [sym_text] = STATE(196), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(196), + [sym_inline_formula] = STATE(196), + [sym_begin] = STATE(66), + [sym_environment] = STATE(196), + [sym_caption] = STATE(196), + [sym_citation] = STATE(196), + [sym_package_include] = STATE(196), + [sym_class_include] = STATE(196), + [sym_latex_include] = STATE(196), + [sym_latex_input] = STATE(196), + [sym_biblatex_include] = STATE(196), + [sym_bibtex_include] = STATE(196), + [sym_graphics_include] = STATE(196), + [sym_svg_include] = STATE(196), + [sym_inkscape_include] = STATE(196), + [sym_verbatim_include] = STATE(196), + [sym_import] = STATE(196), + [sym_label_definition] = STATE(196), + [sym_label_reference] = STATE(196), + [sym_equation_label_reference] = STATE(196), + [sym_label_reference_range] = STATE(196), + [sym_label_number] = STATE(196), + [sym_command_definition] = STATE(196), + [sym_math_operator] = STATE(196), + [sym_glossary_entry_definition] = STATE(196), + [sym_glossary_entry_reference] = STATE(196), + [sym_acronym_definition] = STATE(196), + [sym_acronym_reference] = STATE(196), + [sym_theorem_definition] = STATE(196), + [sym_color_reference] = STATE(196), + [sym_color_definition] = STATE(196), + [sym_color_set_definition] = STATE(196), + [sym_pgf_library_import] = STATE(196), + [sym_tikz_library_import] = STATE(196), + [sym_generic_command] = STATE(196), + [aux_sym_document_repeat1] = STATE(196), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(1144), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1146), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1148), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [143] = { + [sym__simple_content] = STATE(134), + [sym__content] = STATE(134), + [sym_part] = STATE(134), + [sym_chapter] = STATE(134), + [sym_section] = STATE(134), + [sym_subsection] = STATE(134), + [sym_subsubsection] = STATE(134), + [sym_paragraph] = STATE(134), + [sym_subparagraph] = STATE(134), + [sym_enum_item] = STATE(134), + [sym_brace_group] = STATE(134), + [sym_mixed_group] = STATE(134), + [sym_text] = STATE(134), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(134), + [sym_inline_formula] = STATE(134), + [sym_begin] = STATE(59), + [sym_environment] = STATE(134), + [sym_caption] = STATE(134), + [sym_citation] = STATE(134), + [sym_package_include] = STATE(134), + [sym_class_include] = STATE(134), + [sym_latex_include] = STATE(134), + [sym_latex_input] = STATE(134), + [sym_biblatex_include] = STATE(134), + [sym_bibtex_include] = STATE(134), + [sym_graphics_include] = STATE(134), + [sym_svg_include] = STATE(134), + [sym_inkscape_include] = STATE(134), + [sym_verbatim_include] = STATE(134), + [sym_import] = STATE(134), + [sym_label_definition] = STATE(134), + [sym_label_reference] = STATE(134), + [sym_equation_label_reference] = STATE(134), + [sym_label_reference_range] = STATE(134), + [sym_label_number] = STATE(134), + [sym_command_definition] = STATE(134), + [sym_math_operator] = STATE(134), + [sym_glossary_entry_definition] = STATE(134), + [sym_glossary_entry_reference] = STATE(134), + [sym_acronym_definition] = STATE(134), + [sym_acronym_reference] = STATE(134), + [sym_theorem_definition] = STATE(134), + [sym_color_reference] = STATE(134), + [sym_color_definition] = STATE(134), + [sym_color_set_definition] = STATE(134), + [sym_pgf_library_import] = STATE(134), + [sym_tikz_library_import] = STATE(134), + [sym_generic_command] = STATE(134), + [aux_sym_document_repeat1] = STATE(134), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1150), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1152), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1154), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [144] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [145] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(898), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1158), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1160), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [146] = { + [sym__simple_content] = STATE(151), + [sym__content] = STATE(151), + [sym_part] = STATE(151), + [sym_chapter] = STATE(151), + [sym_section] = STATE(151), + [sym_subsection] = STATE(151), + [sym_subsubsection] = STATE(151), + [sym_paragraph] = STATE(151), + [sym_subparagraph] = STATE(151), + [sym_enum_item] = STATE(151), + [sym_brace_group] = STATE(151), + [sym_mixed_group] = STATE(151), + [sym_text] = STATE(151), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(151), + [sym_inline_formula] = STATE(151), + [sym_begin] = STATE(52), + [sym_environment] = STATE(151), + [sym_caption] = STATE(151), + [sym_citation] = STATE(151), + [sym_package_include] = STATE(151), + [sym_class_include] = STATE(151), + [sym_latex_include] = STATE(151), + [sym_latex_input] = STATE(151), + [sym_biblatex_include] = STATE(151), + [sym_bibtex_include] = STATE(151), + [sym_graphics_include] = STATE(151), + [sym_svg_include] = STATE(151), + [sym_inkscape_include] = STATE(151), + [sym_verbatim_include] = STATE(151), + [sym_import] = STATE(151), + [sym_label_definition] = STATE(151), + [sym_label_reference] = STATE(151), + [sym_equation_label_reference] = STATE(151), + [sym_label_reference_range] = STATE(151), + [sym_label_number] = STATE(151), + [sym_command_definition] = STATE(151), + [sym_math_operator] = STATE(151), + [sym_glossary_entry_definition] = STATE(151), + [sym_glossary_entry_reference] = STATE(151), + [sym_acronym_definition] = STATE(151), + [sym_acronym_reference] = STATE(151), + [sym_theorem_definition] = STATE(151), + [sym_color_reference] = STATE(151), + [sym_color_definition] = STATE(151), + [sym_color_set_definition] = STATE(151), + [sym_pgf_library_import] = STATE(151), + [sym_tikz_library_import] = STATE(151), + [sym_generic_command] = STATE(151), + [aux_sym_document_repeat1] = STATE(151), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1164), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [147] = { + [sym__simple_content] = STATE(170), + [sym__content] = STATE(170), + [sym_part] = STATE(170), + [sym_chapter] = STATE(170), + [sym_section] = STATE(170), + [sym_subsection] = STATE(170), + [sym_subsubsection] = STATE(170), + [sym_paragraph] = STATE(170), + [sym_subparagraph] = STATE(170), + [sym_enum_item] = STATE(170), + [sym_brace_group] = STATE(170), + [sym_mixed_group] = STATE(170), + [sym_text] = STATE(170), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(170), + [sym_inline_formula] = STATE(170), + [sym_begin] = STATE(59), + [sym_environment] = STATE(170), + [sym_caption] = STATE(170), + [sym_citation] = STATE(170), + [sym_package_include] = STATE(170), + [sym_class_include] = STATE(170), + [sym_latex_include] = STATE(170), + [sym_latex_input] = STATE(170), + [sym_biblatex_include] = STATE(170), + [sym_bibtex_include] = STATE(170), + [sym_graphics_include] = STATE(170), + [sym_svg_include] = STATE(170), + [sym_inkscape_include] = STATE(170), + [sym_verbatim_include] = STATE(170), + [sym_import] = STATE(170), + [sym_label_definition] = STATE(170), + [sym_label_reference] = STATE(170), + [sym_equation_label_reference] = STATE(170), + [sym_label_reference_range] = STATE(170), + [sym_label_number] = STATE(170), + [sym_command_definition] = STATE(170), + [sym_math_operator] = STATE(170), + [sym_glossary_entry_definition] = STATE(170), + [sym_glossary_entry_reference] = STATE(170), + [sym_acronym_definition] = STATE(170), + [sym_acronym_reference] = STATE(170), + [sym_theorem_definition] = STATE(170), + [sym_color_reference] = STATE(170), + [sym_color_definition] = STATE(170), + [sym_color_set_definition] = STATE(170), + [sym_pgf_library_import] = STATE(170), + [sym_tikz_library_import] = STATE(170), + [sym_generic_command] = STATE(170), + [aux_sym_document_repeat1] = STATE(170), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1166), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1168), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(908), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [148] = { + [sym__simple_content] = STATE(114), + [sym__content] = STATE(114), + [sym_part] = STATE(114), + [sym_chapter] = STATE(114), + [sym_section] = STATE(114), + [sym_subsection] = STATE(114), + [sym_subsubsection] = STATE(114), + [sym_paragraph] = STATE(114), + [sym_subparagraph] = STATE(114), + [sym_enum_item] = STATE(114), + [sym_brace_group] = STATE(114), + [sym_mixed_group] = STATE(114), + [sym_text] = STATE(114), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(114), + [sym_inline_formula] = STATE(114), + [sym_begin] = STATE(66), + [sym_environment] = STATE(114), + [sym_caption] = STATE(114), + [sym_citation] = STATE(114), + [sym_package_include] = STATE(114), + [sym_class_include] = STATE(114), + [sym_latex_include] = STATE(114), + [sym_latex_input] = STATE(114), + [sym_biblatex_include] = STATE(114), + [sym_bibtex_include] = STATE(114), + [sym_graphics_include] = STATE(114), + [sym_svg_include] = STATE(114), + [sym_inkscape_include] = STATE(114), + [sym_verbatim_include] = STATE(114), + [sym_import] = STATE(114), + [sym_label_definition] = STATE(114), + [sym_label_reference] = STATE(114), + [sym_equation_label_reference] = STATE(114), + [sym_label_reference_range] = STATE(114), + [sym_label_number] = STATE(114), + [sym_command_definition] = STATE(114), + [sym_math_operator] = STATE(114), + [sym_glossary_entry_definition] = STATE(114), + [sym_glossary_entry_reference] = STATE(114), + [sym_acronym_definition] = STATE(114), + [sym_acronym_reference] = STATE(114), + [sym_theorem_definition] = STATE(114), + [sym_color_reference] = STATE(114), + [sym_color_definition] = STATE(114), + [sym_color_set_definition] = STATE(114), + [sym_pgf_library_import] = STATE(114), + [sym_tikz_library_import] = STATE(114), + [sym_generic_command] = STATE(114), + [aux_sym_document_repeat1] = STATE(114), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(1170), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1174), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [149] = { + [sym__simple_content] = STATE(124), + [sym__content] = STATE(124), + [sym_part] = STATE(124), + [sym_chapter] = STATE(124), + [sym_section] = STATE(124), + [sym_subsection] = STATE(124), + [sym_subsubsection] = STATE(124), + [sym_paragraph] = STATE(124), + [sym_subparagraph] = STATE(124), + [sym_enum_item] = STATE(124), + [sym_brace_group] = STATE(124), + [sym_mixed_group] = STATE(124), + [sym_text] = STATE(124), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(124), + [sym_inline_formula] = STATE(124), + [sym_begin] = STATE(59), + [sym_environment] = STATE(124), + [sym_caption] = STATE(124), + [sym_citation] = STATE(124), + [sym_package_include] = STATE(124), + [sym_class_include] = STATE(124), + [sym_latex_include] = STATE(124), + [sym_latex_input] = STATE(124), + [sym_biblatex_include] = STATE(124), + [sym_bibtex_include] = STATE(124), + [sym_graphics_include] = STATE(124), + [sym_svg_include] = STATE(124), + [sym_inkscape_include] = STATE(124), + [sym_verbatim_include] = STATE(124), + [sym_import] = STATE(124), + [sym_label_definition] = STATE(124), + [sym_label_reference] = STATE(124), + [sym_equation_label_reference] = STATE(124), + [sym_label_reference_range] = STATE(124), + [sym_label_number] = STATE(124), + [sym_command_definition] = STATE(124), + [sym_math_operator] = STATE(124), + [sym_glossary_entry_definition] = STATE(124), + [sym_glossary_entry_reference] = STATE(124), + [sym_acronym_definition] = STATE(124), + [sym_acronym_reference] = STATE(124), + [sym_theorem_definition] = STATE(124), + [sym_color_reference] = STATE(124), + [sym_color_definition] = STATE(124), + [sym_color_set_definition] = STATE(124), + [sym_pgf_library_import] = STATE(124), + [sym_tikz_library_import] = STATE(124), + [sym_generic_command] = STATE(124), + [aux_sym_document_repeat1] = STATE(124), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1176), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1178), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1180), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [150] = { + [sym__simple_content] = STATE(125), + [sym__content] = STATE(125), + [sym_part] = STATE(125), + [sym_chapter] = STATE(125), + [sym_section] = STATE(125), + [sym_subsection] = STATE(125), + [sym_subsubsection] = STATE(125), + [sym_paragraph] = STATE(125), + [sym_subparagraph] = STATE(125), + [sym_enum_item] = STATE(125), + [sym_brace_group] = STATE(125), + [sym_mixed_group] = STATE(125), + [sym_text] = STATE(125), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(125), + [sym_inline_formula] = STATE(125), + [sym_begin] = STATE(52), + [sym_environment] = STATE(125), + [sym_caption] = STATE(125), + [sym_citation] = STATE(125), + [sym_package_include] = STATE(125), + [sym_class_include] = STATE(125), + [sym_latex_include] = STATE(125), + [sym_latex_input] = STATE(125), + [sym_biblatex_include] = STATE(125), + [sym_bibtex_include] = STATE(125), + [sym_graphics_include] = STATE(125), + [sym_svg_include] = STATE(125), + [sym_inkscape_include] = STATE(125), + [sym_verbatim_include] = STATE(125), + [sym_import] = STATE(125), + [sym_label_definition] = STATE(125), + [sym_label_reference] = STATE(125), + [sym_equation_label_reference] = STATE(125), + [sym_label_reference_range] = STATE(125), + [sym_label_number] = STATE(125), + [sym_command_definition] = STATE(125), + [sym_math_operator] = STATE(125), + [sym_glossary_entry_definition] = STATE(125), + [sym_glossary_entry_reference] = STATE(125), + [sym_acronym_definition] = STATE(125), + [sym_acronym_reference] = STATE(125), + [sym_theorem_definition] = STATE(125), + [sym_color_reference] = STATE(125), + [sym_color_definition] = STATE(125), + [sym_color_set_definition] = STATE(125), + [sym_pgf_library_import] = STATE(125), + [sym_tikz_library_import] = STATE(125), + [sym_generic_command] = STATE(125), + [aux_sym_document_repeat1] = STATE(125), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1182), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1184), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [151] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1186), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [152] = { + [sym__simple_content] = STATE(168), + [sym__content] = STATE(168), + [sym_part] = STATE(168), + [sym_chapter] = STATE(168), + [sym_section] = STATE(168), + [sym_subsection] = STATE(168), + [sym_subsubsection] = STATE(168), + [sym_paragraph] = STATE(168), + [sym_subparagraph] = STATE(168), + [sym_enum_item] = STATE(168), + [sym_brace_group] = STATE(168), + [sym_mixed_group] = STATE(168), + [sym_text] = STATE(168), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(168), + [sym_inline_formula] = STATE(168), + [sym_begin] = STATE(52), + [sym_environment] = STATE(168), + [sym_caption] = STATE(168), + [sym_citation] = STATE(168), + [sym_package_include] = STATE(168), + [sym_class_include] = STATE(168), + [sym_latex_include] = STATE(168), + [sym_latex_input] = STATE(168), + [sym_biblatex_include] = STATE(168), + [sym_bibtex_include] = STATE(168), + [sym_graphics_include] = STATE(168), + [sym_svg_include] = STATE(168), + [sym_inkscape_include] = STATE(168), + [sym_verbatim_include] = STATE(168), + [sym_import] = STATE(168), + [sym_label_definition] = STATE(168), + [sym_label_reference] = STATE(168), + [sym_equation_label_reference] = STATE(168), + [sym_label_reference_range] = STATE(168), + [sym_label_number] = STATE(168), + [sym_command_definition] = STATE(168), + [sym_math_operator] = STATE(168), + [sym_glossary_entry_definition] = STATE(168), + [sym_glossary_entry_reference] = STATE(168), + [sym_acronym_definition] = STATE(168), + [sym_acronym_reference] = STATE(168), + [sym_theorem_definition] = STATE(168), + [sym_color_reference] = STATE(168), + [sym_color_definition] = STATE(168), + [sym_color_set_definition] = STATE(168), + [sym_pgf_library_import] = STATE(168), + [sym_tikz_library_import] = STATE(168), + [sym_generic_command] = STATE(168), + [aux_sym_document_repeat1] = STATE(168), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1188), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1190), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [153] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1192), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [154] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1194), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [155] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [156] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1198), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [157] = { + [sym__simple_content] = STATE(157), + [sym__content] = STATE(157), + [sym_part] = STATE(157), + [sym_chapter] = STATE(157), + [sym_section] = STATE(157), + [sym_subsection] = STATE(157), + [sym_subsubsection] = STATE(157), + [sym_paragraph] = STATE(157), + [sym_subparagraph] = STATE(157), + [sym_enum_item] = STATE(157), + [sym_brace_group] = STATE(157), + [sym_mixed_group] = STATE(157), + [sym_text] = STATE(157), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_begin] = STATE(73), + [sym_environment] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_latex_input] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_equation_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_command_definition] = STATE(157), + [sym_math_operator] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_pgf_library_import] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_generic_command] = STATE(157), + [aux_sym_document_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(1200), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1203), + [aux_sym_chapter_token1] = ACTIONS(1206), + [aux_sym_section_token1] = ACTIONS(1209), + [aux_sym_subsection_token1] = ACTIONS(1212), + [aux_sym_subsubsection_token1] = ACTIONS(1215), + [aux_sym_paragraph_token1] = ACTIONS(1218), + [aux_sym_subparagraph_token1] = ACTIONS(1221), + [anon_sym_BSLASHitem] = ACTIONS(1224), + [anon_sym_LBRACK] = ACTIONS(1227), + [anon_sym_LBRACE] = ACTIONS(1230), + [anon_sym_LPAREN] = ACTIONS(1227), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_EQ] = ACTIONS(1233), + [sym_word] = ACTIONS(1233), + [sym_param] = ACTIONS(1236), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1239), + [anon_sym_DOLLAR] = ACTIONS(1242), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1245), + [anon_sym_BSLASHbegin] = ACTIONS(179), + [anon_sym_BSLASHend] = ACTIONS(1248), + [anon_sym_BSLASHcaption] = ACTIONS(1250), + [anon_sym_BSLASHcite] = ACTIONS(1253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1256), + [anon_sym_BSLASHCite] = ACTIONS(1253), + [anon_sym_BSLASHnocite] = ACTIONS(1253), + [anon_sym_BSLASHcitet] = ACTIONS(1253), + [anon_sym_BSLASHcitep] = ACTIONS(1253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1256), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1256), + [anon_sym_BSLASHciteauthor] = ACTIONS(1253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1256), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1256), + [anon_sym_BSLASHcitetitle] = ACTIONS(1253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1256), + [anon_sym_BSLASHciteyear] = ACTIONS(1253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1256), + [anon_sym_BSLASHcitedate] = ACTIONS(1253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1256), + [anon_sym_BSLASHciteurl] = ACTIONS(1253), + [anon_sym_BSLASHfullcite] = ACTIONS(1253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1253), + [anon_sym_BSLASHcitealt] = ACTIONS(1253), + [anon_sym_BSLASHcitealp] = ACTIONS(1253), + [anon_sym_BSLASHcitetext] = ACTIONS(1253), + [anon_sym_BSLASHparencite] = ACTIONS(1253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1256), + [anon_sym_BSLASHParencite] = ACTIONS(1253), + [anon_sym_BSLASHfootcite] = ACTIONS(1253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1253), + [anon_sym_BSLASHtextcite] = ACTIONS(1253), + [anon_sym_BSLASHTextcite] = ACTIONS(1253), + [anon_sym_BSLASHsmartcite] = ACTIONS(1253), + [anon_sym_BSLASHSmartcite] = ACTIONS(1253), + [anon_sym_BSLASHsupercite] = ACTIONS(1253), + [anon_sym_BSLASHautocite] = ACTIONS(1253), + [anon_sym_BSLASHAutocite] = ACTIONS(1253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1256), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1256), + [anon_sym_BSLASHvolcite] = ACTIONS(1253), + [anon_sym_BSLASHVolcite] = ACTIONS(1253), + [anon_sym_BSLASHpvolcite] = ACTIONS(1253), + [anon_sym_BSLASHPvolcite] = ACTIONS(1253), + [anon_sym_BSLASHfvolcite] = ACTIONS(1253), + [anon_sym_BSLASHftvolcite] = ACTIONS(1253), + [anon_sym_BSLASHsvolcite] = ACTIONS(1253), + [anon_sym_BSLASHSvolcite] = ACTIONS(1253), + [anon_sym_BSLASHtvolcite] = ACTIONS(1253), + [anon_sym_BSLASHTvolcite] = ACTIONS(1253), + [anon_sym_BSLASHavolcite] = ACTIONS(1253), + [anon_sym_BSLASHAvolcite] = ACTIONS(1253), + [anon_sym_BSLASHnotecite] = ACTIONS(1253), + [anon_sym_BSLASHpnotecite] = ACTIONS(1253), + [anon_sym_BSLASHPnotecite] = ACTIONS(1253), + [anon_sym_BSLASHfnotecite] = ACTIONS(1253), + [anon_sym_BSLASHusepackage] = ACTIONS(1259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1262), + [anon_sym_BSLASHinclude] = ACTIONS(1265), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1265), + [anon_sym_BSLASHinput] = ACTIONS(1268), + [anon_sym_BSLASHsubfile] = ACTIONS(1268), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1271), + [anon_sym_BSLASHbibliography] = ACTIONS(1274), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1277), + [anon_sym_BSLASHincludesvg] = ACTIONS(1280), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1286), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1286), + [anon_sym_BSLASHimport] = ACTIONS(1289), + [anon_sym_BSLASHsubimport] = ACTIONS(1289), + [anon_sym_BSLASHinputfrom] = ACTIONS(1289), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1289), + [anon_sym_BSLASHincludefrom] = ACTIONS(1289), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1289), + [anon_sym_BSLASHlabel] = ACTIONS(1292), + [anon_sym_BSLASHref] = ACTIONS(1295), + [anon_sym_BSLASHvref] = ACTIONS(1295), + [anon_sym_BSLASHVref] = ACTIONS(1295), + [anon_sym_BSLASHautoref] = ACTIONS(1295), + [anon_sym_BSLASHpageref] = ACTIONS(1295), + [anon_sym_BSLASHcref] = ACTIONS(1295), + [anon_sym_BSLASHCref] = ACTIONS(1295), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1298), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1298), + [anon_sym_BSLASHnamecref] = ACTIONS(1295), + [anon_sym_BSLASHnameCref] = ACTIONS(1295), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1295), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1295), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1295), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1295), + [anon_sym_BSLASHlabelcref] = ACTIONS(1295), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1295), + [anon_sym_BSLASHeqref] = ACTIONS(1301), + [anon_sym_BSLASHcrefrange] = ACTIONS(1304), + [anon_sym_BSLASHCrefrange] = ACTIONS(1304), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1307), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1307), + [anon_sym_BSLASHnewlabel] = ACTIONS(1310), + [anon_sym_BSLASHnewcommand] = ACTIONS(1313), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1313), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1313), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1316), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1319), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1322), + [anon_sym_BSLASHgls] = ACTIONS(1325), + [anon_sym_BSLASHGls] = ACTIONS(1325), + [anon_sym_BSLASHGLS] = ACTIONS(1325), + [anon_sym_BSLASHglspl] = ACTIONS(1325), + [anon_sym_BSLASHGlspl] = ACTIONS(1325), + [anon_sym_BSLASHGLSpl] = ACTIONS(1325), + [anon_sym_BSLASHglsdisp] = ACTIONS(1325), + [anon_sym_BSLASHglslink] = ACTIONS(1325), + [anon_sym_BSLASHglstext] = ACTIONS(1325), + [anon_sym_BSLASHGlstext] = ACTIONS(1325), + [anon_sym_BSLASHGLStext] = ACTIONS(1325), + [anon_sym_BSLASHglsfirst] = ACTIONS(1325), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1325), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1325), + [anon_sym_BSLASHglsplural] = ACTIONS(1325), + [anon_sym_BSLASHGlsplural] = ACTIONS(1325), + [anon_sym_BSLASHGLSplural] = ACTIONS(1325), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1325), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1325), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1325), + [anon_sym_BSLASHglsname] = ACTIONS(1325), + [anon_sym_BSLASHGlsname] = ACTIONS(1325), + [anon_sym_BSLASHGLSname] = ACTIONS(1325), + [anon_sym_BSLASHglssymbol] = ACTIONS(1325), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1325), + [anon_sym_BSLASHglsdesc] = ACTIONS(1325), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1325), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1325), + [anon_sym_BSLASHglsuseri] = ACTIONS(1325), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1325), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1325), + [anon_sym_BSLASHglsuserii] = ACTIONS(1325), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1325), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1325), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1325), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1325), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1325), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1325), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1325), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1325), + [anon_sym_BSLASHglsuserv] = ACTIONS(1325), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1325), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1325), + [anon_sym_BSLASHglsuservi] = ACTIONS(1325), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1325), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1325), + [anon_sym_BSLASHnewacronym] = ACTIONS(1328), + [anon_sym_BSLASHacrshort] = ACTIONS(1331), + [anon_sym_BSLASHAcrshort] = ACTIONS(1331), + [anon_sym_BSLASHACRshort] = ACTIONS(1331), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1331), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1331), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1331), + [anon_sym_BSLASHacrlong] = ACTIONS(1331), + [anon_sym_BSLASHAcrlong] = ACTIONS(1331), + [anon_sym_BSLASHACRlong] = ACTIONS(1331), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1331), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1331), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1331), + [anon_sym_BSLASHacrfull] = ACTIONS(1331), + [anon_sym_BSLASHAcrfull] = ACTIONS(1331), + [anon_sym_BSLASHACRfull] = ACTIONS(1331), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1331), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1331), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1331), + [anon_sym_BSLASHacs] = ACTIONS(1331), + [anon_sym_BSLASHAcs] = ACTIONS(1331), + [anon_sym_BSLASHacsp] = ACTIONS(1331), + [anon_sym_BSLASHAcsp] = ACTIONS(1331), + [anon_sym_BSLASHacl] = ACTIONS(1331), + [anon_sym_BSLASHAcl] = ACTIONS(1331), + [anon_sym_BSLASHaclp] = ACTIONS(1331), + [anon_sym_BSLASHAclp] = ACTIONS(1331), + [anon_sym_BSLASHacf] = ACTIONS(1331), + [anon_sym_BSLASHAcf] = ACTIONS(1331), + [anon_sym_BSLASHacfp] = ACTIONS(1331), + [anon_sym_BSLASHAcfp] = ACTIONS(1331), + [anon_sym_BSLASHac] = ACTIONS(1331), + [anon_sym_BSLASHAc] = ACTIONS(1331), + [anon_sym_BSLASHacp] = ACTIONS(1331), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1331), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1331), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1331), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1331), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1331), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1331), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1331), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1331), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1331), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1331), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1334), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1334), + [anon_sym_BSLASHcolor] = ACTIONS(1337), + [anon_sym_BSLASHcolorbox] = ACTIONS(1337), + [anon_sym_BSLASHtextcolor] = ACTIONS(1337), + [anon_sym_BSLASHpagecolor] = ACTIONS(1337), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1340), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1343), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1346), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1349), + }, + [158] = { + [sym__simple_content] = STATE(203), + [sym__content] = STATE(203), + [sym_part] = STATE(203), + [sym_chapter] = STATE(203), + [sym_section] = STATE(203), + [sym_subsection] = STATE(203), + [sym_subsubsection] = STATE(203), + [sym_paragraph] = STATE(203), + [sym_subparagraph] = STATE(203), + [sym_enum_item] = STATE(203), + [sym_brace_group] = STATE(203), + [sym_mixed_group] = STATE(203), + [sym_text] = STATE(203), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(203), + [sym_inline_formula] = STATE(203), + [sym_begin] = STATE(59), + [sym_environment] = STATE(203), + [sym_caption] = STATE(203), + [sym_citation] = STATE(203), + [sym_package_include] = STATE(203), + [sym_class_include] = STATE(203), + [sym_latex_include] = STATE(203), + [sym_latex_input] = STATE(203), + [sym_biblatex_include] = STATE(203), + [sym_bibtex_include] = STATE(203), + [sym_graphics_include] = STATE(203), + [sym_svg_include] = STATE(203), + [sym_inkscape_include] = STATE(203), + [sym_verbatim_include] = STATE(203), + [sym_import] = STATE(203), + [sym_label_definition] = STATE(203), + [sym_label_reference] = STATE(203), + [sym_equation_label_reference] = STATE(203), + [sym_label_reference_range] = STATE(203), + [sym_label_number] = STATE(203), + [sym_command_definition] = STATE(203), + [sym_math_operator] = STATE(203), + [sym_glossary_entry_definition] = STATE(203), + [sym_glossary_entry_reference] = STATE(203), + [sym_acronym_definition] = STATE(203), + [sym_acronym_reference] = STATE(203), + [sym_theorem_definition] = STATE(203), + [sym_color_reference] = STATE(203), + [sym_color_definition] = STATE(203), + [sym_color_set_definition] = STATE(203), + [sym_pgf_library_import] = STATE(203), + [sym_tikz_library_import] = STATE(203), + [sym_generic_command] = STATE(203), + [aux_sym_document_repeat1] = STATE(203), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1352), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1354), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1356), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [159] = { + [sym__simple_content] = STATE(153), + [sym__content] = STATE(153), + [sym_part] = STATE(153), + [sym_chapter] = STATE(153), + [sym_section] = STATE(153), + [sym_subsection] = STATE(153), + [sym_subsubsection] = STATE(153), + [sym_paragraph] = STATE(153), + [sym_subparagraph] = STATE(153), + [sym_enum_item] = STATE(153), + [sym_brace_group] = STATE(153), + [sym_mixed_group] = STATE(153), + [sym_text] = STATE(153), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(153), + [sym_inline_formula] = STATE(153), + [sym_begin] = STATE(52), + [sym_environment] = STATE(153), + [sym_caption] = STATE(153), + [sym_citation] = STATE(153), + [sym_package_include] = STATE(153), + [sym_class_include] = STATE(153), + [sym_latex_include] = STATE(153), + [sym_latex_input] = STATE(153), + [sym_biblatex_include] = STATE(153), + [sym_bibtex_include] = STATE(153), + [sym_graphics_include] = STATE(153), + [sym_svg_include] = STATE(153), + [sym_inkscape_include] = STATE(153), + [sym_verbatim_include] = STATE(153), + [sym_import] = STATE(153), + [sym_label_definition] = STATE(153), + [sym_label_reference] = STATE(153), + [sym_equation_label_reference] = STATE(153), + [sym_label_reference_range] = STATE(153), + [sym_label_number] = STATE(153), + [sym_command_definition] = STATE(153), + [sym_math_operator] = STATE(153), + [sym_glossary_entry_definition] = STATE(153), + [sym_glossary_entry_reference] = STATE(153), + [sym_acronym_definition] = STATE(153), + [sym_acronym_reference] = STATE(153), + [sym_theorem_definition] = STATE(153), + [sym_color_reference] = STATE(153), + [sym_color_definition] = STATE(153), + [sym_color_set_definition] = STATE(153), + [sym_pgf_library_import] = STATE(153), + [sym_tikz_library_import] = STATE(153), + [sym_generic_command] = STATE(153), + [aux_sym_document_repeat1] = STATE(153), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1360), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [160] = { + [sym__simple_content] = STATE(145), + [sym__content] = STATE(145), + [sym_part] = STATE(145), + [sym_chapter] = STATE(145), + [sym_section] = STATE(145), + [sym_subsection] = STATE(145), + [sym_subsubsection] = STATE(145), + [sym_paragraph] = STATE(145), + [sym_subparagraph] = STATE(145), + [sym_enum_item] = STATE(145), + [sym_brace_group] = STATE(145), + [sym_mixed_group] = STATE(145), + [sym_text] = STATE(145), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(145), + [sym_inline_formula] = STATE(145), + [sym_begin] = STATE(66), + [sym_environment] = STATE(145), + [sym_caption] = STATE(145), + [sym_citation] = STATE(145), + [sym_package_include] = STATE(145), + [sym_class_include] = STATE(145), + [sym_latex_include] = STATE(145), + [sym_latex_input] = STATE(145), + [sym_biblatex_include] = STATE(145), + [sym_bibtex_include] = STATE(145), + [sym_graphics_include] = STATE(145), + [sym_svg_include] = STATE(145), + [sym_inkscape_include] = STATE(145), + [sym_verbatim_include] = STATE(145), + [sym_import] = STATE(145), + [sym_label_definition] = STATE(145), + [sym_label_reference] = STATE(145), + [sym_equation_label_reference] = STATE(145), + [sym_label_reference_range] = STATE(145), + [sym_label_number] = STATE(145), + [sym_command_definition] = STATE(145), + [sym_math_operator] = STATE(145), + [sym_glossary_entry_definition] = STATE(145), + [sym_glossary_entry_reference] = STATE(145), + [sym_acronym_definition] = STATE(145), + [sym_acronym_reference] = STATE(145), + [sym_theorem_definition] = STATE(145), + [sym_color_reference] = STATE(145), + [sym_color_definition] = STATE(145), + [sym_color_set_definition] = STATE(145), + [sym_pgf_library_import] = STATE(145), + [sym_tikz_library_import] = STATE(145), + [sym_generic_command] = STATE(145), + [aux_sym_document_repeat1] = STATE(145), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(1362), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1364), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1366), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [161] = { + [sym__simple_content] = STATE(155), + [sym__content] = STATE(155), + [sym_part] = STATE(155), + [sym_chapter] = STATE(155), + [sym_section] = STATE(155), + [sym_subsection] = STATE(155), + [sym_subsubsection] = STATE(155), + [sym_paragraph] = STATE(155), + [sym_subparagraph] = STATE(155), + [sym_enum_item] = STATE(155), + [sym_brace_group] = STATE(155), + [sym_mixed_group] = STATE(155), + [sym_text] = STATE(155), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(155), + [sym_inline_formula] = STATE(155), + [sym_begin] = STATE(52), + [sym_environment] = STATE(155), + [sym_caption] = STATE(155), + [sym_citation] = STATE(155), + [sym_package_include] = STATE(155), + [sym_class_include] = STATE(155), + [sym_latex_include] = STATE(155), + [sym_latex_input] = STATE(155), + [sym_biblatex_include] = STATE(155), + [sym_bibtex_include] = STATE(155), + [sym_graphics_include] = STATE(155), + [sym_svg_include] = STATE(155), + [sym_inkscape_include] = STATE(155), + [sym_verbatim_include] = STATE(155), + [sym_import] = STATE(155), + [sym_label_definition] = STATE(155), + [sym_label_reference] = STATE(155), + [sym_equation_label_reference] = STATE(155), + [sym_label_reference_range] = STATE(155), + [sym_label_number] = STATE(155), + [sym_command_definition] = STATE(155), + [sym_math_operator] = STATE(155), + [sym_glossary_entry_definition] = STATE(155), + [sym_glossary_entry_reference] = STATE(155), + [sym_acronym_definition] = STATE(155), + [sym_acronym_reference] = STATE(155), + [sym_theorem_definition] = STATE(155), + [sym_color_reference] = STATE(155), + [sym_color_definition] = STATE(155), + [sym_color_set_definition] = STATE(155), + [sym_pgf_library_import] = STATE(155), + [sym_tikz_library_import] = STATE(155), + [sym_generic_command] = STATE(155), + [aux_sym_document_repeat1] = STATE(155), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1370), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [162] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(898), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1372), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1374), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [163] = { + [sym__simple_content] = STATE(172), + [sym__content] = STATE(172), + [sym_part] = STATE(172), + [sym_chapter] = STATE(172), + [sym_section] = STATE(172), + [sym_subsection] = STATE(172), + [sym_subsubsection] = STATE(172), + [sym_paragraph] = STATE(172), + [sym_subparagraph] = STATE(172), + [sym_enum_item] = STATE(172), + [sym_brace_group] = STATE(172), + [sym_mixed_group] = STATE(172), + [sym_text] = STATE(172), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(172), + [sym_inline_formula] = STATE(172), + [sym_begin] = STATE(52), + [sym_environment] = STATE(172), + [sym_caption] = STATE(172), + [sym_citation] = STATE(172), + [sym_package_include] = STATE(172), + [sym_class_include] = STATE(172), + [sym_latex_include] = STATE(172), + [sym_latex_input] = STATE(172), + [sym_biblatex_include] = STATE(172), + [sym_bibtex_include] = STATE(172), + [sym_graphics_include] = STATE(172), + [sym_svg_include] = STATE(172), + [sym_inkscape_include] = STATE(172), + [sym_verbatim_include] = STATE(172), + [sym_import] = STATE(172), + [sym_label_definition] = STATE(172), + [sym_label_reference] = STATE(172), + [sym_equation_label_reference] = STATE(172), + [sym_label_reference_range] = STATE(172), + [sym_label_number] = STATE(172), + [sym_command_definition] = STATE(172), + [sym_math_operator] = STATE(172), + [sym_glossary_entry_definition] = STATE(172), + [sym_glossary_entry_reference] = STATE(172), + [sym_acronym_definition] = STATE(172), + [sym_acronym_reference] = STATE(172), + [sym_theorem_definition] = STATE(172), + [sym_color_reference] = STATE(172), + [sym_color_definition] = STATE(172), + [sym_color_set_definition] = STATE(172), + [sym_pgf_library_import] = STATE(172), + [sym_tikz_library_import] = STATE(172), + [sym_generic_command] = STATE(172), + [aux_sym_document_repeat1] = STATE(172), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1378), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [164] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1076), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1380), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [165] = { + [sym__simple_content] = STATE(175), + [sym__content] = STATE(175), + [sym_part] = STATE(175), + [sym_chapter] = STATE(175), + [sym_section] = STATE(175), + [sym_subsection] = STATE(175), + [sym_subsubsection] = STATE(175), + [sym_paragraph] = STATE(175), + [sym_subparagraph] = STATE(175), + [sym_enum_item] = STATE(175), + [sym_brace_group] = STATE(175), + [sym_mixed_group] = STATE(175), + [sym_text] = STATE(175), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(175), + [sym_inline_formula] = STATE(175), + [sym_begin] = STATE(59), + [sym_environment] = STATE(175), + [sym_caption] = STATE(175), + [sym_citation] = STATE(175), + [sym_package_include] = STATE(175), + [sym_class_include] = STATE(175), + [sym_latex_include] = STATE(175), + [sym_latex_input] = STATE(175), + [sym_biblatex_include] = STATE(175), + [sym_bibtex_include] = STATE(175), + [sym_graphics_include] = STATE(175), + [sym_svg_include] = STATE(175), + [sym_inkscape_include] = STATE(175), + [sym_verbatim_include] = STATE(175), + [sym_import] = STATE(175), + [sym_label_definition] = STATE(175), + [sym_label_reference] = STATE(175), + [sym_equation_label_reference] = STATE(175), + [sym_label_reference_range] = STATE(175), + [sym_label_number] = STATE(175), + [sym_command_definition] = STATE(175), + [sym_math_operator] = STATE(175), + [sym_glossary_entry_definition] = STATE(175), + [sym_glossary_entry_reference] = STATE(175), + [sym_acronym_definition] = STATE(175), + [sym_acronym_reference] = STATE(175), + [sym_theorem_definition] = STATE(175), + [sym_color_reference] = STATE(175), + [sym_color_definition] = STATE(175), + [sym_color_set_definition] = STATE(175), + [sym_pgf_library_import] = STATE(175), + [sym_tikz_library_import] = STATE(175), + [sym_generic_command] = STATE(175), + [aux_sym_document_repeat1] = STATE(175), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1384), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1386), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [166] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [167] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(410), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(414), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(119), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [168] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [169] = { + [sym__simple_content] = STATE(209), + [sym__content] = STATE(209), + [sym_part] = STATE(209), + [sym_chapter] = STATE(209), + [sym_section] = STATE(209), + [sym_subsection] = STATE(209), + [sym_subsubsection] = STATE(209), + [sym_paragraph] = STATE(209), + [sym_subparagraph] = STATE(209), + [sym_enum_item] = STATE(209), + [sym_brace_group] = STATE(209), + [sym_mixed_group] = STATE(209), + [sym_text] = STATE(209), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(209), + [sym_inline_formula] = STATE(209), + [sym_begin] = STATE(52), + [sym_environment] = STATE(209), + [sym_caption] = STATE(209), + [sym_citation] = STATE(209), + [sym_package_include] = STATE(209), + [sym_class_include] = STATE(209), + [sym_latex_include] = STATE(209), + [sym_latex_input] = STATE(209), + [sym_biblatex_include] = STATE(209), + [sym_bibtex_include] = STATE(209), + [sym_graphics_include] = STATE(209), + [sym_svg_include] = STATE(209), + [sym_inkscape_include] = STATE(209), + [sym_verbatim_include] = STATE(209), + [sym_import] = STATE(209), + [sym_label_definition] = STATE(209), + [sym_label_reference] = STATE(209), + [sym_equation_label_reference] = STATE(209), + [sym_label_reference_range] = STATE(209), + [sym_label_number] = STATE(209), + [sym_command_definition] = STATE(209), + [sym_math_operator] = STATE(209), + [sym_glossary_entry_definition] = STATE(209), + [sym_glossary_entry_reference] = STATE(209), + [sym_acronym_definition] = STATE(209), + [sym_acronym_reference] = STATE(209), + [sym_theorem_definition] = STATE(209), + [sym_color_reference] = STATE(209), + [sym_color_definition] = STATE(209), + [sym_color_set_definition] = STATE(209), + [sym_pgf_library_import] = STATE(209), + [sym_tikz_library_import] = STATE(209), + [sym_generic_command] = STATE(209), + [aux_sym_document_repeat1] = STATE(209), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1396), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [170] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1076), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1398), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [171] = { + [sym__simple_content] = STATE(162), + [sym__content] = STATE(162), + [sym_part] = STATE(162), + [sym_chapter] = STATE(162), + [sym_section] = STATE(162), + [sym_subsection] = STATE(162), + [sym_subsubsection] = STATE(162), + [sym_paragraph] = STATE(162), + [sym_subparagraph] = STATE(162), + [sym_enum_item] = STATE(162), + [sym_brace_group] = STATE(162), + [sym_mixed_group] = STATE(162), + [sym_text] = STATE(162), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(162), + [sym_inline_formula] = STATE(162), + [sym_begin] = STATE(66), + [sym_environment] = STATE(162), + [sym_caption] = STATE(162), + [sym_citation] = STATE(162), + [sym_package_include] = STATE(162), + [sym_class_include] = STATE(162), + [sym_latex_include] = STATE(162), + [sym_latex_input] = STATE(162), + [sym_biblatex_include] = STATE(162), + [sym_bibtex_include] = STATE(162), + [sym_graphics_include] = STATE(162), + [sym_svg_include] = STATE(162), + [sym_inkscape_include] = STATE(162), + [sym_verbatim_include] = STATE(162), + [sym_import] = STATE(162), + [sym_label_definition] = STATE(162), + [sym_label_reference] = STATE(162), + [sym_equation_label_reference] = STATE(162), + [sym_label_reference_range] = STATE(162), + [sym_label_number] = STATE(162), + [sym_command_definition] = STATE(162), + [sym_math_operator] = STATE(162), + [sym_glossary_entry_definition] = STATE(162), + [sym_glossary_entry_reference] = STATE(162), + [sym_acronym_definition] = STATE(162), + [sym_acronym_reference] = STATE(162), + [sym_theorem_definition] = STATE(162), + [sym_color_reference] = STATE(162), + [sym_color_definition] = STATE(162), + [sym_color_set_definition] = STATE(162), + [sym_pgf_library_import] = STATE(162), + [sym_tikz_library_import] = STATE(162), + [sym_generic_command] = STATE(162), + [aux_sym_document_repeat1] = STATE(162), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(1402), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1404), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1406), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [172] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [173] = { + [sym__simple_content] = STATE(164), + [sym__content] = STATE(164), + [sym_part] = STATE(164), + [sym_chapter] = STATE(164), + [sym_section] = STATE(164), + [sym_subsection] = STATE(164), + [sym_subsubsection] = STATE(164), + [sym_paragraph] = STATE(164), + [sym_subparagraph] = STATE(164), + [sym_enum_item] = STATE(164), + [sym_brace_group] = STATE(164), + [sym_mixed_group] = STATE(164), + [sym_text] = STATE(164), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(164), + [sym_inline_formula] = STATE(164), + [sym_begin] = STATE(59), + [sym_environment] = STATE(164), + [sym_caption] = STATE(164), + [sym_citation] = STATE(164), + [sym_package_include] = STATE(164), + [sym_class_include] = STATE(164), + [sym_latex_include] = STATE(164), + [sym_latex_input] = STATE(164), + [sym_biblatex_include] = STATE(164), + [sym_bibtex_include] = STATE(164), + [sym_graphics_include] = STATE(164), + [sym_svg_include] = STATE(164), + [sym_inkscape_include] = STATE(164), + [sym_verbatim_include] = STATE(164), + [sym_import] = STATE(164), + [sym_label_definition] = STATE(164), + [sym_label_reference] = STATE(164), + [sym_equation_label_reference] = STATE(164), + [sym_label_reference_range] = STATE(164), + [sym_label_number] = STATE(164), + [sym_command_definition] = STATE(164), + [sym_math_operator] = STATE(164), + [sym_glossary_entry_definition] = STATE(164), + [sym_glossary_entry_reference] = STATE(164), + [sym_acronym_definition] = STATE(164), + [sym_acronym_reference] = STATE(164), + [sym_theorem_definition] = STATE(164), + [sym_color_reference] = STATE(164), + [sym_color_definition] = STATE(164), + [sym_color_set_definition] = STATE(164), + [sym_pgf_library_import] = STATE(164), + [sym_tikz_library_import] = STATE(164), + [sym_generic_command] = STATE(164), + [aux_sym_document_repeat1] = STATE(164), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1410), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1414), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [174] = { + [sym__simple_content] = STATE(166), + [sym__content] = STATE(166), + [sym_part] = STATE(166), + [sym_chapter] = STATE(166), + [sym_section] = STATE(166), + [sym_subsection] = STATE(166), + [sym_subsubsection] = STATE(166), + [sym_paragraph] = STATE(166), + [sym_subparagraph] = STATE(166), + [sym_enum_item] = STATE(166), + [sym_brace_group] = STATE(166), + [sym_mixed_group] = STATE(166), + [sym_text] = STATE(166), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_begin] = STATE(52), + [sym_environment] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_latex_include] = STATE(166), + [sym_latex_input] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_bibtex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_svg_include] = STATE(166), + [sym_inkscape_include] = STATE(166), + [sym_verbatim_include] = STATE(166), + [sym_import] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_label_reference] = STATE(166), + [sym_equation_label_reference] = STATE(166), + [sym_label_reference_range] = STATE(166), + [sym_label_number] = STATE(166), + [sym_command_definition] = STATE(166), + [sym_math_operator] = STATE(166), + [sym_glossary_entry_definition] = STATE(166), + [sym_glossary_entry_reference] = STATE(166), + [sym_acronym_definition] = STATE(166), + [sym_acronym_reference] = STATE(166), + [sym_theorem_definition] = STATE(166), + [sym_color_reference] = STATE(166), + [sym_color_definition] = STATE(166), + [sym_color_set_definition] = STATE(166), + [sym_pgf_library_import] = STATE(166), + [sym_tikz_library_import] = STATE(166), + [sym_generic_command] = STATE(166), + [aux_sym_document_repeat1] = STATE(166), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1418), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [175] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1076), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1420), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1422), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [176] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(898), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1424), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1426), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [177] = { + [sym__simple_content] = STATE(190), + [sym__content] = STATE(190), + [sym_part] = STATE(190), + [sym_chapter] = STATE(190), + [sym_section] = STATE(190), + [sym_subsection] = STATE(190), + [sym_subsubsection] = STATE(190), + [sym_paragraph] = STATE(190), + [sym_subparagraph] = STATE(190), + [sym_enum_item] = STATE(190), + [sym_brace_group] = STATE(190), + [sym_mixed_group] = STATE(190), + [sym_text] = STATE(190), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(190), + [sym_inline_formula] = STATE(190), + [sym_begin] = STATE(52), + [sym_environment] = STATE(190), + [sym_caption] = STATE(190), + [sym_citation] = STATE(190), + [sym_package_include] = STATE(190), + [sym_class_include] = STATE(190), + [sym_latex_include] = STATE(190), + [sym_latex_input] = STATE(190), + [sym_biblatex_include] = STATE(190), + [sym_bibtex_include] = STATE(190), + [sym_graphics_include] = STATE(190), + [sym_svg_include] = STATE(190), + [sym_inkscape_include] = STATE(190), + [sym_verbatim_include] = STATE(190), + [sym_import] = STATE(190), + [sym_label_definition] = STATE(190), + [sym_label_reference] = STATE(190), + [sym_equation_label_reference] = STATE(190), + [sym_label_reference_range] = STATE(190), + [sym_label_number] = STATE(190), + [sym_command_definition] = STATE(190), + [sym_math_operator] = STATE(190), + [sym_glossary_entry_definition] = STATE(190), + [sym_glossary_entry_reference] = STATE(190), + [sym_acronym_definition] = STATE(190), + [sym_acronym_reference] = STATE(190), + [sym_theorem_definition] = STATE(190), + [sym_color_reference] = STATE(190), + [sym_color_definition] = STATE(190), + [sym_color_set_definition] = STATE(190), + [sym_pgf_library_import] = STATE(190), + [sym_tikz_library_import] = STATE(190), + [sym_generic_command] = STATE(190), + [aux_sym_document_repeat1] = STATE(190), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1430), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [178] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [179] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [180] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [181] = { + [sym__simple_content] = STATE(194), + [sym__content] = STATE(194), + [sym_part] = STATE(194), + [sym_chapter] = STATE(194), + [sym_section] = STATE(194), + [sym_subsection] = STATE(194), + [sym_subsubsection] = STATE(194), + [sym_paragraph] = STATE(194), + [sym_subparagraph] = STATE(194), + [sym_enum_item] = STATE(194), + [sym_brace_group] = STATE(194), + [sym_mixed_group] = STATE(194), + [sym_text] = STATE(194), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(194), + [sym_inline_formula] = STATE(194), + [sym_begin] = STATE(66), + [sym_environment] = STATE(194), + [sym_caption] = STATE(194), + [sym_citation] = STATE(194), + [sym_package_include] = STATE(194), + [sym_class_include] = STATE(194), + [sym_latex_include] = STATE(194), + [sym_latex_input] = STATE(194), + [sym_biblatex_include] = STATE(194), + [sym_bibtex_include] = STATE(194), + [sym_graphics_include] = STATE(194), + [sym_svg_include] = STATE(194), + [sym_inkscape_include] = STATE(194), + [sym_verbatim_include] = STATE(194), + [sym_import] = STATE(194), + [sym_label_definition] = STATE(194), + [sym_label_reference] = STATE(194), + [sym_equation_label_reference] = STATE(194), + [sym_label_reference_range] = STATE(194), + [sym_label_number] = STATE(194), + [sym_command_definition] = STATE(194), + [sym_math_operator] = STATE(194), + [sym_glossary_entry_definition] = STATE(194), + [sym_glossary_entry_reference] = STATE(194), + [sym_acronym_definition] = STATE(194), + [sym_acronym_reference] = STATE(194), + [sym_theorem_definition] = STATE(194), + [sym_color_reference] = STATE(194), + [sym_color_definition] = STATE(194), + [sym_color_set_definition] = STATE(194), + [sym_pgf_library_import] = STATE(194), + [sym_tikz_library_import] = STATE(194), + [sym_generic_command] = STATE(194), + [aux_sym_document_repeat1] = STATE(194), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(1438), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1440), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1442), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [182] = { + [sym__simple_content] = STATE(178), + [sym__content] = STATE(178), + [sym_part] = STATE(178), + [sym_chapter] = STATE(178), + [sym_section] = STATE(178), + [sym_subsection] = STATE(178), + [sym_subsubsection] = STATE(178), + [sym_paragraph] = STATE(178), + [sym_subparagraph] = STATE(178), + [sym_enum_item] = STATE(178), + [sym_brace_group] = STATE(178), + [sym_mixed_group] = STATE(178), + [sym_text] = STATE(178), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(178), + [sym_inline_formula] = STATE(178), + [sym_begin] = STATE(52), + [sym_environment] = STATE(178), + [sym_caption] = STATE(178), + [sym_citation] = STATE(178), + [sym_package_include] = STATE(178), + [sym_class_include] = STATE(178), + [sym_latex_include] = STATE(178), + [sym_latex_input] = STATE(178), + [sym_biblatex_include] = STATE(178), + [sym_bibtex_include] = STATE(178), + [sym_graphics_include] = STATE(178), + [sym_svg_include] = STATE(178), + [sym_inkscape_include] = STATE(178), + [sym_verbatim_include] = STATE(178), + [sym_import] = STATE(178), + [sym_label_definition] = STATE(178), + [sym_label_reference] = STATE(178), + [sym_equation_label_reference] = STATE(178), + [sym_label_reference_range] = STATE(178), + [sym_label_number] = STATE(178), + [sym_command_definition] = STATE(178), + [sym_math_operator] = STATE(178), + [sym_glossary_entry_definition] = STATE(178), + [sym_glossary_entry_reference] = STATE(178), + [sym_acronym_definition] = STATE(178), + [sym_acronym_reference] = STATE(178), + [sym_theorem_definition] = STATE(178), + [sym_color_reference] = STATE(178), + [sym_color_definition] = STATE(178), + [sym_color_set_definition] = STATE(178), + [sym_pgf_library_import] = STATE(178), + [sym_tikz_library_import] = STATE(178), + [sym_generic_command] = STATE(178), + [aux_sym_document_repeat1] = STATE(178), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1446), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [183] = { + [sym__simple_content] = STATE(179), + [sym__content] = STATE(179), + [sym_part] = STATE(179), + [sym_chapter] = STATE(179), + [sym_section] = STATE(179), + [sym_subsection] = STATE(179), + [sym_subsubsection] = STATE(179), + [sym_paragraph] = STATE(179), + [sym_subparagraph] = STATE(179), + [sym_enum_item] = STATE(179), + [sym_brace_group] = STATE(179), + [sym_mixed_group] = STATE(179), + [sym_text] = STATE(179), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(179), + [sym_inline_formula] = STATE(179), + [sym_begin] = STATE(52), + [sym_environment] = STATE(179), + [sym_caption] = STATE(179), + [sym_citation] = STATE(179), + [sym_package_include] = STATE(179), + [sym_class_include] = STATE(179), + [sym_latex_include] = STATE(179), + [sym_latex_input] = STATE(179), + [sym_biblatex_include] = STATE(179), + [sym_bibtex_include] = STATE(179), + [sym_graphics_include] = STATE(179), + [sym_svg_include] = STATE(179), + [sym_inkscape_include] = STATE(179), + [sym_verbatim_include] = STATE(179), + [sym_import] = STATE(179), + [sym_label_definition] = STATE(179), + [sym_label_reference] = STATE(179), + [sym_equation_label_reference] = STATE(179), + [sym_label_reference_range] = STATE(179), + [sym_label_number] = STATE(179), + [sym_command_definition] = STATE(179), + [sym_math_operator] = STATE(179), + [sym_glossary_entry_definition] = STATE(179), + [sym_glossary_entry_reference] = STATE(179), + [sym_acronym_definition] = STATE(179), + [sym_acronym_reference] = STATE(179), + [sym_theorem_definition] = STATE(179), + [sym_color_reference] = STATE(179), + [sym_color_definition] = STATE(179), + [sym_color_set_definition] = STATE(179), + [sym_pgf_library_import] = STATE(179), + [sym_tikz_library_import] = STATE(179), + [sym_generic_command] = STATE(179), + [aux_sym_document_repeat1] = STATE(179), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1448), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1450), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [184] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(898), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1452), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1454), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [185] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1076), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1456), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1458), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [186] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [187] = { + [sym__simple_content] = STATE(195), + [sym__content] = STATE(195), + [sym_part] = STATE(195), + [sym_chapter] = STATE(195), + [sym_section] = STATE(195), + [sym_subsection] = STATE(195), + [sym_subsubsection] = STATE(195), + [sym_paragraph] = STATE(195), + [sym_subparagraph] = STATE(195), + [sym_enum_item] = STATE(195), + [sym_brace_group] = STATE(195), + [sym_mixed_group] = STATE(195), + [sym_text] = STATE(195), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(195), + [sym_inline_formula] = STATE(195), + [sym_begin] = STATE(52), + [sym_environment] = STATE(195), + [sym_caption] = STATE(195), + [sym_citation] = STATE(195), + [sym_package_include] = STATE(195), + [sym_class_include] = STATE(195), + [sym_latex_include] = STATE(195), + [sym_latex_input] = STATE(195), + [sym_biblatex_include] = STATE(195), + [sym_bibtex_include] = STATE(195), + [sym_graphics_include] = STATE(195), + [sym_svg_include] = STATE(195), + [sym_inkscape_include] = STATE(195), + [sym_verbatim_include] = STATE(195), + [sym_import] = STATE(195), + [sym_label_definition] = STATE(195), + [sym_label_reference] = STATE(195), + [sym_equation_label_reference] = STATE(195), + [sym_label_reference_range] = STATE(195), + [sym_label_number] = STATE(195), + [sym_command_definition] = STATE(195), + [sym_math_operator] = STATE(195), + [sym_glossary_entry_definition] = STATE(195), + [sym_glossary_entry_reference] = STATE(195), + [sym_acronym_definition] = STATE(195), + [sym_acronym_reference] = STATE(195), + [sym_theorem_definition] = STATE(195), + [sym_color_reference] = STATE(195), + [sym_color_definition] = STATE(195), + [sym_color_set_definition] = STATE(195), + [sym_pgf_library_import] = STATE(195), + [sym_tikz_library_import] = STATE(195), + [sym_generic_command] = STATE(195), + [aux_sym_document_repeat1] = STATE(195), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1464), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [188] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1466), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [189] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1076), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1468), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [190] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [191] = { + [sym__simple_content] = STATE(184), + [sym__content] = STATE(184), + [sym_part] = STATE(184), + [sym_chapter] = STATE(184), + [sym_section] = STATE(184), + [sym_subsection] = STATE(184), + [sym_subsubsection] = STATE(184), + [sym_paragraph] = STATE(184), + [sym_subparagraph] = STATE(184), + [sym_enum_item] = STATE(184), + [sym_brace_group] = STATE(184), + [sym_mixed_group] = STATE(184), + [sym_text] = STATE(184), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(184), + [sym_inline_formula] = STATE(184), + [sym_begin] = STATE(66), + [sym_environment] = STATE(184), + [sym_caption] = STATE(184), + [sym_citation] = STATE(184), + [sym_package_include] = STATE(184), + [sym_class_include] = STATE(184), + [sym_latex_include] = STATE(184), + [sym_latex_input] = STATE(184), + [sym_biblatex_include] = STATE(184), + [sym_bibtex_include] = STATE(184), + [sym_graphics_include] = STATE(184), + [sym_svg_include] = STATE(184), + [sym_inkscape_include] = STATE(184), + [sym_verbatim_include] = STATE(184), + [sym_import] = STATE(184), + [sym_label_definition] = STATE(184), + [sym_label_reference] = STATE(184), + [sym_equation_label_reference] = STATE(184), + [sym_label_reference_range] = STATE(184), + [sym_label_number] = STATE(184), + [sym_command_definition] = STATE(184), + [sym_math_operator] = STATE(184), + [sym_glossary_entry_definition] = STATE(184), + [sym_glossary_entry_reference] = STATE(184), + [sym_acronym_definition] = STATE(184), + [sym_acronym_reference] = STATE(184), + [sym_theorem_definition] = STATE(184), + [sym_color_reference] = STATE(184), + [sym_color_definition] = STATE(184), + [sym_color_set_definition] = STATE(184), + [sym_pgf_library_import] = STATE(184), + [sym_tikz_library_import] = STATE(184), + [sym_generic_command] = STATE(184), + [aux_sym_document_repeat1] = STATE(184), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(1474), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1478), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [192] = { + [sym__simple_content] = STATE(185), + [sym__content] = STATE(185), + [sym_part] = STATE(185), + [sym_chapter] = STATE(185), + [sym_section] = STATE(185), + [sym_subsection] = STATE(185), + [sym_subsubsection] = STATE(185), + [sym_paragraph] = STATE(185), + [sym_subparagraph] = STATE(185), + [sym_enum_item] = STATE(185), + [sym_brace_group] = STATE(185), + [sym_mixed_group] = STATE(185), + [sym_text] = STATE(185), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(185), + [sym_inline_formula] = STATE(185), + [sym_begin] = STATE(59), + [sym_environment] = STATE(185), + [sym_caption] = STATE(185), + [sym_citation] = STATE(185), + [sym_package_include] = STATE(185), + [sym_class_include] = STATE(185), + [sym_latex_include] = STATE(185), + [sym_latex_input] = STATE(185), + [sym_biblatex_include] = STATE(185), + [sym_bibtex_include] = STATE(185), + [sym_graphics_include] = STATE(185), + [sym_svg_include] = STATE(185), + [sym_inkscape_include] = STATE(185), + [sym_verbatim_include] = STATE(185), + [sym_import] = STATE(185), + [sym_label_definition] = STATE(185), + [sym_label_reference] = STATE(185), + [sym_equation_label_reference] = STATE(185), + [sym_label_reference_range] = STATE(185), + [sym_label_number] = STATE(185), + [sym_command_definition] = STATE(185), + [sym_math_operator] = STATE(185), + [sym_glossary_entry_definition] = STATE(185), + [sym_glossary_entry_reference] = STATE(185), + [sym_acronym_definition] = STATE(185), + [sym_acronym_reference] = STATE(185), + [sym_theorem_definition] = STATE(185), + [sym_color_reference] = STATE(185), + [sym_color_definition] = STATE(185), + [sym_color_set_definition] = STATE(185), + [sym_pgf_library_import] = STATE(185), + [sym_tikz_library_import] = STATE(185), + [sym_generic_command] = STATE(185), + [aux_sym_document_repeat1] = STATE(185), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1480), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1482), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1484), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [193] = { + [sym__simple_content] = STATE(186), + [sym__content] = STATE(186), + [sym_part] = STATE(186), + [sym_chapter] = STATE(186), + [sym_section] = STATE(186), + [sym_subsection] = STATE(186), + [sym_subsubsection] = STATE(186), + [sym_paragraph] = STATE(186), + [sym_subparagraph] = STATE(186), + [sym_enum_item] = STATE(186), + [sym_brace_group] = STATE(186), + [sym_mixed_group] = STATE(186), + [sym_text] = STATE(186), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(186), + [sym_inline_formula] = STATE(186), + [sym_begin] = STATE(52), + [sym_environment] = STATE(186), + [sym_caption] = STATE(186), + [sym_citation] = STATE(186), + [sym_package_include] = STATE(186), + [sym_class_include] = STATE(186), + [sym_latex_include] = STATE(186), + [sym_latex_input] = STATE(186), + [sym_biblatex_include] = STATE(186), + [sym_bibtex_include] = STATE(186), + [sym_graphics_include] = STATE(186), + [sym_svg_include] = STATE(186), + [sym_inkscape_include] = STATE(186), + [sym_verbatim_include] = STATE(186), + [sym_import] = STATE(186), + [sym_label_definition] = STATE(186), + [sym_label_reference] = STATE(186), + [sym_equation_label_reference] = STATE(186), + [sym_label_reference_range] = STATE(186), + [sym_label_number] = STATE(186), + [sym_command_definition] = STATE(186), + [sym_math_operator] = STATE(186), + [sym_glossary_entry_definition] = STATE(186), + [sym_glossary_entry_reference] = STATE(186), + [sym_acronym_definition] = STATE(186), + [sym_acronym_reference] = STATE(186), + [sym_theorem_definition] = STATE(186), + [sym_color_reference] = STATE(186), + [sym_color_definition] = STATE(186), + [sym_color_set_definition] = STATE(186), + [sym_pgf_library_import] = STATE(186), + [sym_tikz_library_import] = STATE(186), + [sym_generic_command] = STATE(186), + [aux_sym_document_repeat1] = STATE(186), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1488), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [194] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(898), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1492), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [195] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1494), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [196] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(898), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1496), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1498), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [197] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(1500), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [198] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1502), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [199] = { + [sym__simple_content] = STATE(144), + [sym__content] = STATE(144), + [sym_part] = STATE(144), + [sym_chapter] = STATE(144), + [sym_section] = STATE(144), + [sym_subsection] = STATE(144), + [sym_subsubsection] = STATE(144), + [sym_paragraph] = STATE(144), + [sym_subparagraph] = STATE(144), + [sym_enum_item] = STATE(144), + [sym_brace_group] = STATE(144), + [sym_mixed_group] = STATE(144), + [sym_text] = STATE(144), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(144), + [sym_inline_formula] = STATE(144), + [sym_begin] = STATE(52), + [sym_environment] = STATE(144), + [sym_caption] = STATE(144), + [sym_citation] = STATE(144), + [sym_package_include] = STATE(144), + [sym_class_include] = STATE(144), + [sym_latex_include] = STATE(144), + [sym_latex_input] = STATE(144), + [sym_biblatex_include] = STATE(144), + [sym_bibtex_include] = STATE(144), + [sym_graphics_include] = STATE(144), + [sym_svg_include] = STATE(144), + [sym_inkscape_include] = STATE(144), + [sym_verbatim_include] = STATE(144), + [sym_import] = STATE(144), + [sym_label_definition] = STATE(144), + [sym_label_reference] = STATE(144), + [sym_equation_label_reference] = STATE(144), + [sym_label_reference_range] = STATE(144), + [sym_label_number] = STATE(144), + [sym_command_definition] = STATE(144), + [sym_math_operator] = STATE(144), + [sym_glossary_entry_definition] = STATE(144), + [sym_glossary_entry_reference] = STATE(144), + [sym_acronym_definition] = STATE(144), + [sym_acronym_reference] = STATE(144), + [sym_theorem_definition] = STATE(144), + [sym_color_reference] = STATE(144), + [sym_color_definition] = STATE(144), + [sym_color_set_definition] = STATE(144), + [sym_pgf_library_import] = STATE(144), + [sym_tikz_library_import] = STATE(144), + [sym_generic_command] = STATE(144), + [aux_sym_document_repeat1] = STATE(144), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1506), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [200] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [201] = { + [sym__simple_content] = STATE(213), + [sym__content] = STATE(213), + [sym_part] = STATE(213), + [sym_chapter] = STATE(213), + [sym_section] = STATE(213), + [sym_subsection] = STATE(213), + [sym_subsubsection] = STATE(213), + [sym_paragraph] = STATE(213), + [sym_subparagraph] = STATE(213), + [sym_enum_item] = STATE(213), + [sym_brace_group] = STATE(213), + [sym_mixed_group] = STATE(213), + [sym_text] = STATE(213), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(213), + [sym_inline_formula] = STATE(213), + [sym_begin] = STATE(52), + [sym_environment] = STATE(213), + [sym_caption] = STATE(213), + [sym_citation] = STATE(213), + [sym_package_include] = STATE(213), + [sym_class_include] = STATE(213), + [sym_latex_include] = STATE(213), + [sym_latex_input] = STATE(213), + [sym_biblatex_include] = STATE(213), + [sym_bibtex_include] = STATE(213), + [sym_graphics_include] = STATE(213), + [sym_svg_include] = STATE(213), + [sym_inkscape_include] = STATE(213), + [sym_verbatim_include] = STATE(213), + [sym_import] = STATE(213), + [sym_label_definition] = STATE(213), + [sym_label_reference] = STATE(213), + [sym_equation_label_reference] = STATE(213), + [sym_label_reference_range] = STATE(213), + [sym_label_number] = STATE(213), + [sym_command_definition] = STATE(213), + [sym_math_operator] = STATE(213), + [sym_glossary_entry_definition] = STATE(213), + [sym_glossary_entry_reference] = STATE(213), + [sym_acronym_definition] = STATE(213), + [sym_acronym_reference] = STATE(213), + [sym_theorem_definition] = STATE(213), + [sym_color_reference] = STATE(213), + [sym_color_definition] = STATE(213), + [sym_color_set_definition] = STATE(213), + [sym_pgf_library_import] = STATE(213), + [sym_tikz_library_import] = STATE(213), + [sym_generic_command] = STATE(213), + [aux_sym_document_repeat1] = STATE(213), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1512), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [202] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1514), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [203] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1076), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1516), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [204] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(117), + [aux_sym_chapter_token1] = ACTIONS(117), + [aux_sym_section_token1] = ACTIONS(117), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASH_RPAREN] = ACTIONS(115), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [205] = { + [sym__simple_content] = STATE(214), + [sym__content] = STATE(214), + [sym_part] = STATE(214), + [sym_chapter] = STATE(214), + [sym_section] = STATE(214), + [sym_subsection] = STATE(214), + [sym_subsubsection] = STATE(214), + [sym_paragraph] = STATE(214), + [sym_subparagraph] = STATE(214), + [sym_enum_item] = STATE(214), + [sym_brace_group] = STATE(214), + [sym_mixed_group] = STATE(214), + [sym_text] = STATE(214), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(214), + [sym_inline_formula] = STATE(214), + [sym_begin] = STATE(59), + [sym_environment] = STATE(214), + [sym_caption] = STATE(214), + [sym_citation] = STATE(214), + [sym_package_include] = STATE(214), + [sym_class_include] = STATE(214), + [sym_latex_include] = STATE(214), + [sym_latex_input] = STATE(214), + [sym_biblatex_include] = STATE(214), + [sym_bibtex_include] = STATE(214), + [sym_graphics_include] = STATE(214), + [sym_svg_include] = STATE(214), + [sym_inkscape_include] = STATE(214), + [sym_verbatim_include] = STATE(214), + [sym_import] = STATE(214), + [sym_label_definition] = STATE(214), + [sym_label_reference] = STATE(214), + [sym_equation_label_reference] = STATE(214), + [sym_label_reference_range] = STATE(214), + [sym_label_number] = STATE(214), + [sym_command_definition] = STATE(214), + [sym_math_operator] = STATE(214), + [sym_glossary_entry_definition] = STATE(214), + [sym_glossary_entry_reference] = STATE(214), + [sym_acronym_definition] = STATE(214), + [sym_acronym_reference] = STATE(214), + [sym_theorem_definition] = STATE(214), + [sym_color_reference] = STATE(214), + [sym_color_definition] = STATE(214), + [sym_color_set_definition] = STATE(214), + [sym_pgf_library_import] = STATE(214), + [sym_tikz_library_import] = STATE(214), + [sym_generic_command] = STATE(214), + [aux_sym_document_repeat1] = STATE(214), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1520), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1522), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [206] = { + [sym__simple_content] = STATE(228), + [sym__content] = STATE(228), + [sym_part] = STATE(228), + [sym_chapter] = STATE(228), + [sym_section] = STATE(228), + [sym_subsection] = STATE(228), + [sym_subsubsection] = STATE(228), + [sym_paragraph] = STATE(228), + [sym_subparagraph] = STATE(228), + [sym_enum_item] = STATE(228), + [sym_brace_group] = STATE(228), + [sym_mixed_group] = STATE(228), + [sym_text] = STATE(228), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(228), + [sym_inline_formula] = STATE(228), + [sym_begin] = STATE(52), + [sym_environment] = STATE(228), + [sym_caption] = STATE(228), + [sym_citation] = STATE(228), + [sym_package_include] = STATE(228), + [sym_class_include] = STATE(228), + [sym_latex_include] = STATE(228), + [sym_latex_input] = STATE(228), + [sym_biblatex_include] = STATE(228), + [sym_bibtex_include] = STATE(228), + [sym_graphics_include] = STATE(228), + [sym_svg_include] = STATE(228), + [sym_inkscape_include] = STATE(228), + [sym_verbatim_include] = STATE(228), + [sym_import] = STATE(228), + [sym_label_definition] = STATE(228), + [sym_label_reference] = STATE(228), + [sym_equation_label_reference] = STATE(228), + [sym_label_reference_range] = STATE(228), + [sym_label_number] = STATE(228), + [sym_command_definition] = STATE(228), + [sym_math_operator] = STATE(228), + [sym_glossary_entry_definition] = STATE(228), + [sym_glossary_entry_reference] = STATE(228), + [sym_acronym_definition] = STATE(228), + [sym_acronym_reference] = STATE(228), + [sym_theorem_definition] = STATE(228), + [sym_color_reference] = STATE(228), + [sym_color_definition] = STATE(228), + [sym_color_set_definition] = STATE(228), + [sym_pgf_library_import] = STATE(228), + [sym_tikz_library_import] = STATE(228), + [sym_generic_command] = STATE(228), + [aux_sym_document_repeat1] = STATE(228), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1526), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1528), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [207] = { + [sym__simple_content] = STATE(207), + [sym_section] = STATE(207), + [sym_subsection] = STATE(207), + [sym_subsubsection] = STATE(207), + [sym_paragraph] = STATE(207), + [sym_subparagraph] = STATE(207), + [sym_enum_item] = STATE(207), + [sym_brace_group] = STATE(207), + [sym_mixed_group] = STATE(207), + [sym_text] = STATE(207), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(207), + [sym_inline_formula] = STATE(207), + [sym_begin] = STATE(52), + [sym_environment] = STATE(207), + [sym_caption] = STATE(207), + [sym_citation] = STATE(207), + [sym_package_include] = STATE(207), + [sym_class_include] = STATE(207), + [sym_latex_include] = STATE(207), + [sym_latex_input] = STATE(207), + [sym_biblatex_include] = STATE(207), + [sym_bibtex_include] = STATE(207), + [sym_graphics_include] = STATE(207), + [sym_svg_include] = STATE(207), + [sym_inkscape_include] = STATE(207), + [sym_verbatim_include] = STATE(207), + [sym_import] = STATE(207), + [sym_label_definition] = STATE(207), + [sym_label_reference] = STATE(207), + [sym_equation_label_reference] = STATE(207), + [sym_label_reference_range] = STATE(207), + [sym_label_number] = STATE(207), + [sym_command_definition] = STATE(207), + [sym_math_operator] = STATE(207), + [sym_glossary_entry_definition] = STATE(207), + [sym_glossary_entry_reference] = STATE(207), + [sym_acronym_definition] = STATE(207), + [sym_acronym_reference] = STATE(207), + [sym_theorem_definition] = STATE(207), + [sym_color_reference] = STATE(207), + [sym_color_definition] = STATE(207), + [sym_color_set_definition] = STATE(207), + [sym_pgf_library_import] = STATE(207), + [sym_tikz_library_import] = STATE(207), + [sym_generic_command] = STATE(207), + [aux_sym_chapter_repeat1] = STATE(207), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(1530), + [sym_generic_command_name] = ACTIONS(1532), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1535), + [aux_sym_chapter_token1] = ACTIONS(1535), + [aux_sym_section_token1] = ACTIONS(1537), + [aux_sym_subsection_token1] = ACTIONS(1540), + [aux_sym_subsubsection_token1] = ACTIONS(1543), + [aux_sym_paragraph_token1] = ACTIONS(1546), + [aux_sym_subparagraph_token1] = ACTIONS(1549), + [anon_sym_BSLASHitem] = ACTIONS(1552), + [anon_sym_LBRACK] = ACTIONS(1555), + [anon_sym_RBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1558), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_COMMA] = ACTIONS(1561), + [anon_sym_EQ] = ACTIONS(1561), + [sym_word] = ACTIONS(1561), + [sym_param] = ACTIONS(1564), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1567), + [anon_sym_DOLLAR] = ACTIONS(1570), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1573), + [anon_sym_BSLASHbegin] = ACTIONS(1576), + [anon_sym_BSLASHcaption] = ACTIONS(1579), + [anon_sym_BSLASHcite] = ACTIONS(1582), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1585), + [anon_sym_BSLASHCite] = ACTIONS(1582), + [anon_sym_BSLASHnocite] = ACTIONS(1582), + [anon_sym_BSLASHcitet] = ACTIONS(1582), + [anon_sym_BSLASHcitep] = ACTIONS(1582), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1585), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1585), + [anon_sym_BSLASHciteauthor] = ACTIONS(1582), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1585), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1582), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1585), + [anon_sym_BSLASHcitetitle] = ACTIONS(1582), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1585), + [anon_sym_BSLASHciteyear] = ACTIONS(1582), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1585), + [anon_sym_BSLASHcitedate] = ACTIONS(1582), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1585), + [anon_sym_BSLASHciteurl] = ACTIONS(1582), + [anon_sym_BSLASHfullcite] = ACTIONS(1582), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1582), + [anon_sym_BSLASHcitealt] = ACTIONS(1582), + [anon_sym_BSLASHcitealp] = ACTIONS(1582), + [anon_sym_BSLASHcitetext] = ACTIONS(1582), + [anon_sym_BSLASHparencite] = ACTIONS(1582), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1585), + [anon_sym_BSLASHParencite] = ACTIONS(1582), + [anon_sym_BSLASHfootcite] = ACTIONS(1582), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1582), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1582), + [anon_sym_BSLASHtextcite] = ACTIONS(1582), + [anon_sym_BSLASHTextcite] = ACTIONS(1582), + [anon_sym_BSLASHsmartcite] = ACTIONS(1582), + [anon_sym_BSLASHSmartcite] = ACTIONS(1582), + [anon_sym_BSLASHsupercite] = ACTIONS(1582), + [anon_sym_BSLASHautocite] = ACTIONS(1582), + [anon_sym_BSLASHAutocite] = ACTIONS(1582), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1585), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1585), + [anon_sym_BSLASHvolcite] = ACTIONS(1582), + [anon_sym_BSLASHVolcite] = ACTIONS(1582), + [anon_sym_BSLASHpvolcite] = ACTIONS(1582), + [anon_sym_BSLASHPvolcite] = ACTIONS(1582), + [anon_sym_BSLASHfvolcite] = ACTIONS(1582), + [anon_sym_BSLASHftvolcite] = ACTIONS(1582), + [anon_sym_BSLASHsvolcite] = ACTIONS(1582), + [anon_sym_BSLASHSvolcite] = ACTIONS(1582), + [anon_sym_BSLASHtvolcite] = ACTIONS(1582), + [anon_sym_BSLASHTvolcite] = ACTIONS(1582), + [anon_sym_BSLASHavolcite] = ACTIONS(1582), + [anon_sym_BSLASHAvolcite] = ACTIONS(1582), + [anon_sym_BSLASHnotecite] = ACTIONS(1582), + [anon_sym_BSLASHpnotecite] = ACTIONS(1582), + [anon_sym_BSLASHPnotecite] = ACTIONS(1582), + [anon_sym_BSLASHfnotecite] = ACTIONS(1582), + [anon_sym_BSLASHusepackage] = ACTIONS(1588), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1588), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1591), + [anon_sym_BSLASHinclude] = ACTIONS(1594), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1594), + [anon_sym_BSLASHinput] = ACTIONS(1597), + [anon_sym_BSLASHsubfile] = ACTIONS(1597), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1600), + [anon_sym_BSLASHbibliography] = ACTIONS(1603), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1606), + [anon_sym_BSLASHincludesvg] = ACTIONS(1609), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1612), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1615), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1615), + [anon_sym_BSLASHimport] = ACTIONS(1618), + [anon_sym_BSLASHsubimport] = ACTIONS(1618), + [anon_sym_BSLASHinputfrom] = ACTIONS(1618), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1618), + [anon_sym_BSLASHincludefrom] = ACTIONS(1618), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1618), + [anon_sym_BSLASHlabel] = ACTIONS(1621), + [anon_sym_BSLASHref] = ACTIONS(1624), + [anon_sym_BSLASHvref] = ACTIONS(1624), + [anon_sym_BSLASHVref] = ACTIONS(1624), + [anon_sym_BSLASHautoref] = ACTIONS(1624), + [anon_sym_BSLASHpageref] = ACTIONS(1624), + [anon_sym_BSLASHcref] = ACTIONS(1624), + [anon_sym_BSLASHCref] = ACTIONS(1624), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1627), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1627), + [anon_sym_BSLASHnamecref] = ACTIONS(1624), + [anon_sym_BSLASHnameCref] = ACTIONS(1624), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1624), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1624), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1624), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1624), + [anon_sym_BSLASHlabelcref] = ACTIONS(1624), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1624), + [anon_sym_BSLASHeqref] = ACTIONS(1630), + [anon_sym_BSLASHcrefrange] = ACTIONS(1633), + [anon_sym_BSLASHCrefrange] = ACTIONS(1633), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1636), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1636), + [anon_sym_BSLASHnewlabel] = ACTIONS(1639), + [anon_sym_BSLASHnewcommand] = ACTIONS(1642), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1642), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1642), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1645), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1648), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1651), + [anon_sym_BSLASHgls] = ACTIONS(1654), + [anon_sym_BSLASHGls] = ACTIONS(1654), + [anon_sym_BSLASHGLS] = ACTIONS(1654), + [anon_sym_BSLASHglspl] = ACTIONS(1654), + [anon_sym_BSLASHGlspl] = ACTIONS(1654), + [anon_sym_BSLASHGLSpl] = ACTIONS(1654), + [anon_sym_BSLASHglsdisp] = ACTIONS(1654), + [anon_sym_BSLASHglslink] = ACTIONS(1654), + [anon_sym_BSLASHglstext] = ACTIONS(1654), + [anon_sym_BSLASHGlstext] = ACTIONS(1654), + [anon_sym_BSLASHGLStext] = ACTIONS(1654), + [anon_sym_BSLASHglsfirst] = ACTIONS(1654), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1654), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1654), + [anon_sym_BSLASHglsplural] = ACTIONS(1654), + [anon_sym_BSLASHGlsplural] = ACTIONS(1654), + [anon_sym_BSLASHGLSplural] = ACTIONS(1654), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1654), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1654), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1654), + [anon_sym_BSLASHglsname] = ACTIONS(1654), + [anon_sym_BSLASHGlsname] = ACTIONS(1654), + [anon_sym_BSLASHGLSname] = ACTIONS(1654), + [anon_sym_BSLASHglssymbol] = ACTIONS(1654), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1654), + [anon_sym_BSLASHglsdesc] = ACTIONS(1654), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1654), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1654), + [anon_sym_BSLASHglsuseri] = ACTIONS(1654), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1654), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1654), + [anon_sym_BSLASHglsuserii] = ACTIONS(1654), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1654), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1654), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1654), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1654), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1654), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1654), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1654), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1654), + [anon_sym_BSLASHglsuserv] = ACTIONS(1654), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1654), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1654), + [anon_sym_BSLASHglsuservi] = ACTIONS(1654), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1654), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1654), + [anon_sym_BSLASHnewacronym] = ACTIONS(1657), + [anon_sym_BSLASHacrshort] = ACTIONS(1660), + [anon_sym_BSLASHAcrshort] = ACTIONS(1660), + [anon_sym_BSLASHACRshort] = ACTIONS(1660), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1660), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1660), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1660), + [anon_sym_BSLASHacrlong] = ACTIONS(1660), + [anon_sym_BSLASHAcrlong] = ACTIONS(1660), + [anon_sym_BSLASHACRlong] = ACTIONS(1660), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1660), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1660), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1660), + [anon_sym_BSLASHacrfull] = ACTIONS(1660), + [anon_sym_BSLASHAcrfull] = ACTIONS(1660), + [anon_sym_BSLASHACRfull] = ACTIONS(1660), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1660), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1660), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1660), + [anon_sym_BSLASHacs] = ACTIONS(1660), + [anon_sym_BSLASHAcs] = ACTIONS(1660), + [anon_sym_BSLASHacsp] = ACTIONS(1660), + [anon_sym_BSLASHAcsp] = ACTIONS(1660), + [anon_sym_BSLASHacl] = ACTIONS(1660), + [anon_sym_BSLASHAcl] = ACTIONS(1660), + [anon_sym_BSLASHaclp] = ACTIONS(1660), + [anon_sym_BSLASHAclp] = ACTIONS(1660), + [anon_sym_BSLASHacf] = ACTIONS(1660), + [anon_sym_BSLASHAcf] = ACTIONS(1660), + [anon_sym_BSLASHacfp] = ACTIONS(1660), + [anon_sym_BSLASHAcfp] = ACTIONS(1660), + [anon_sym_BSLASHac] = ACTIONS(1660), + [anon_sym_BSLASHAc] = ACTIONS(1660), + [anon_sym_BSLASHacp] = ACTIONS(1660), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1660), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1660), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1660), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1660), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1660), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1660), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1660), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1660), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1660), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1660), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1663), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1663), + [anon_sym_BSLASHcolor] = ACTIONS(1666), + [anon_sym_BSLASHcolorbox] = ACTIONS(1666), + [anon_sym_BSLASHtextcolor] = ACTIONS(1666), + [anon_sym_BSLASHpagecolor] = ACTIONS(1666), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1669), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1672), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1675), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1678), + }, + [208] = { + [sym__simple_content] = STATE(215), + [sym__content] = STATE(215), + [sym_part] = STATE(215), + [sym_chapter] = STATE(215), + [sym_section] = STATE(215), + [sym_subsection] = STATE(215), + [sym_subsubsection] = STATE(215), + [sym_paragraph] = STATE(215), + [sym_subparagraph] = STATE(215), + [sym_enum_item] = STATE(215), + [sym_brace_group] = STATE(215), + [sym_mixed_group] = STATE(215), + [sym_text] = STATE(215), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(215), + [sym_inline_formula] = STATE(215), + [sym_begin] = STATE(66), + [sym_environment] = STATE(215), + [sym_caption] = STATE(215), + [sym_citation] = STATE(215), + [sym_package_include] = STATE(215), + [sym_class_include] = STATE(215), + [sym_latex_include] = STATE(215), + [sym_latex_input] = STATE(215), + [sym_biblatex_include] = STATE(215), + [sym_bibtex_include] = STATE(215), + [sym_graphics_include] = STATE(215), + [sym_svg_include] = STATE(215), + [sym_inkscape_include] = STATE(215), + [sym_verbatim_include] = STATE(215), + [sym_import] = STATE(215), + [sym_label_definition] = STATE(215), + [sym_label_reference] = STATE(215), + [sym_equation_label_reference] = STATE(215), + [sym_label_reference_range] = STATE(215), + [sym_label_number] = STATE(215), + [sym_command_definition] = STATE(215), + [sym_math_operator] = STATE(215), + [sym_glossary_entry_definition] = STATE(215), + [sym_glossary_entry_reference] = STATE(215), + [sym_acronym_definition] = STATE(215), + [sym_acronym_reference] = STATE(215), + [sym_theorem_definition] = STATE(215), + [sym_color_reference] = STATE(215), + [sym_color_definition] = STATE(215), + [sym_color_set_definition] = STATE(215), + [sym_pgf_library_import] = STATE(215), + [sym_tikz_library_import] = STATE(215), + [sym_generic_command] = STATE(215), + [aux_sym_document_repeat1] = STATE(215), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(1681), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1683), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1685), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [209] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [210] = { + [sym__simple_content] = STATE(154), + [sym__content] = STATE(154), + [sym_part] = STATE(154), + [sym_chapter] = STATE(154), + [sym_section] = STATE(154), + [sym_subsection] = STATE(154), + [sym_subsubsection] = STATE(154), + [sym_paragraph] = STATE(154), + [sym_subparagraph] = STATE(154), + [sym_enum_item] = STATE(154), + [sym_brace_group] = STATE(154), + [sym_mixed_group] = STATE(154), + [sym_text] = STATE(154), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(154), + [sym_inline_formula] = STATE(154), + [sym_begin] = STATE(52), + [sym_environment] = STATE(154), + [sym_caption] = STATE(154), + [sym_citation] = STATE(154), + [sym_package_include] = STATE(154), + [sym_class_include] = STATE(154), + [sym_latex_include] = STATE(154), + [sym_latex_input] = STATE(154), + [sym_biblatex_include] = STATE(154), + [sym_bibtex_include] = STATE(154), + [sym_graphics_include] = STATE(154), + [sym_svg_include] = STATE(154), + [sym_inkscape_include] = STATE(154), + [sym_verbatim_include] = STATE(154), + [sym_import] = STATE(154), + [sym_label_definition] = STATE(154), + [sym_label_reference] = STATE(154), + [sym_equation_label_reference] = STATE(154), + [sym_label_reference_range] = STATE(154), + [sym_label_number] = STATE(154), + [sym_command_definition] = STATE(154), + [sym_math_operator] = STATE(154), + [sym_glossary_entry_definition] = STATE(154), + [sym_glossary_entry_reference] = STATE(154), + [sym_acronym_definition] = STATE(154), + [sym_acronym_reference] = STATE(154), + [sym_theorem_definition] = STATE(154), + [sym_color_reference] = STATE(154), + [sym_color_definition] = STATE(154), + [sym_color_set_definition] = STATE(154), + [sym_pgf_library_import] = STATE(154), + [sym_tikz_library_import] = STATE(154), + [sym_generic_command] = STATE(154), + [aux_sym_document_repeat1] = STATE(154), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1689), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [211] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(1693), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1696), + [aux_sym_chapter_token1] = ACTIONS(1699), + [aux_sym_section_token1] = ACTIONS(1702), + [aux_sym_subsection_token1] = ACTIONS(1705), + [aux_sym_subsubsection_token1] = ACTIONS(1708), + [aux_sym_paragraph_token1] = ACTIONS(1711), + [aux_sym_subparagraph_token1] = ACTIONS(1714), + [anon_sym_BSLASHitem] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1720), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1720), + [anon_sym_COMMA] = ACTIONS(1726), + [anon_sym_EQ] = ACTIONS(1726), + [sym_word] = ACTIONS(1726), + [sym_param] = ACTIONS(1729), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1732), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1732), + [anon_sym_DOLLAR] = ACTIONS(1735), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1738), + [anon_sym_BSLASH_RPAREN] = ACTIONS(129), + [anon_sym_BSLASHbegin] = ACTIONS(179), + [anon_sym_BSLASHcaption] = ACTIONS(1741), + [anon_sym_BSLASHcite] = ACTIONS(1744), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1747), + [anon_sym_BSLASHCite] = ACTIONS(1744), + [anon_sym_BSLASHnocite] = ACTIONS(1744), + [anon_sym_BSLASHcitet] = ACTIONS(1744), + [anon_sym_BSLASHcitep] = ACTIONS(1744), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1747), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1747), + [anon_sym_BSLASHciteauthor] = ACTIONS(1744), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1747), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1744), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1747), + [anon_sym_BSLASHcitetitle] = ACTIONS(1744), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1747), + [anon_sym_BSLASHciteyear] = ACTIONS(1744), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1747), + [anon_sym_BSLASHcitedate] = ACTIONS(1744), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1747), + [anon_sym_BSLASHciteurl] = ACTIONS(1744), + [anon_sym_BSLASHfullcite] = ACTIONS(1744), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1744), + [anon_sym_BSLASHcitealt] = ACTIONS(1744), + [anon_sym_BSLASHcitealp] = ACTIONS(1744), + [anon_sym_BSLASHcitetext] = ACTIONS(1744), + [anon_sym_BSLASHparencite] = ACTIONS(1744), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1747), + [anon_sym_BSLASHParencite] = ACTIONS(1744), + [anon_sym_BSLASHfootcite] = ACTIONS(1744), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1744), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1744), + [anon_sym_BSLASHtextcite] = ACTIONS(1744), + [anon_sym_BSLASHTextcite] = ACTIONS(1744), + [anon_sym_BSLASHsmartcite] = ACTIONS(1744), + [anon_sym_BSLASHSmartcite] = ACTIONS(1744), + [anon_sym_BSLASHsupercite] = ACTIONS(1744), + [anon_sym_BSLASHautocite] = ACTIONS(1744), + [anon_sym_BSLASHAutocite] = ACTIONS(1744), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1747), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1747), + [anon_sym_BSLASHvolcite] = ACTIONS(1744), + [anon_sym_BSLASHVolcite] = ACTIONS(1744), + [anon_sym_BSLASHpvolcite] = ACTIONS(1744), + [anon_sym_BSLASHPvolcite] = ACTIONS(1744), + [anon_sym_BSLASHfvolcite] = ACTIONS(1744), + [anon_sym_BSLASHftvolcite] = ACTIONS(1744), + [anon_sym_BSLASHsvolcite] = ACTIONS(1744), + [anon_sym_BSLASHSvolcite] = ACTIONS(1744), + [anon_sym_BSLASHtvolcite] = ACTIONS(1744), + [anon_sym_BSLASHTvolcite] = ACTIONS(1744), + [anon_sym_BSLASHavolcite] = ACTIONS(1744), + [anon_sym_BSLASHAvolcite] = ACTIONS(1744), + [anon_sym_BSLASHnotecite] = ACTIONS(1744), + [anon_sym_BSLASHpnotecite] = ACTIONS(1744), + [anon_sym_BSLASHPnotecite] = ACTIONS(1744), + [anon_sym_BSLASHfnotecite] = ACTIONS(1744), + [anon_sym_BSLASHusepackage] = ACTIONS(1750), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1750), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1753), + [anon_sym_BSLASHinclude] = ACTIONS(1756), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1756), + [anon_sym_BSLASHinput] = ACTIONS(1759), + [anon_sym_BSLASHsubfile] = ACTIONS(1759), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1762), + [anon_sym_BSLASHbibliography] = ACTIONS(1765), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1768), + [anon_sym_BSLASHincludesvg] = ACTIONS(1771), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1774), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1777), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1777), + [anon_sym_BSLASHimport] = ACTIONS(1780), + [anon_sym_BSLASHsubimport] = ACTIONS(1780), + [anon_sym_BSLASHinputfrom] = ACTIONS(1780), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1780), + [anon_sym_BSLASHincludefrom] = ACTIONS(1780), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1780), + [anon_sym_BSLASHlabel] = ACTIONS(1783), + [anon_sym_BSLASHref] = ACTIONS(1786), + [anon_sym_BSLASHvref] = ACTIONS(1786), + [anon_sym_BSLASHVref] = ACTIONS(1786), + [anon_sym_BSLASHautoref] = ACTIONS(1786), + [anon_sym_BSLASHpageref] = ACTIONS(1786), + [anon_sym_BSLASHcref] = ACTIONS(1786), + [anon_sym_BSLASHCref] = ACTIONS(1786), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1789), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1789), + [anon_sym_BSLASHnamecref] = ACTIONS(1786), + [anon_sym_BSLASHnameCref] = ACTIONS(1786), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1786), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1786), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1786), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1786), + [anon_sym_BSLASHlabelcref] = ACTIONS(1786), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1786), + [anon_sym_BSLASHeqref] = ACTIONS(1792), + [anon_sym_BSLASHcrefrange] = ACTIONS(1795), + [anon_sym_BSLASHCrefrange] = ACTIONS(1795), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1798), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1798), + [anon_sym_BSLASHnewlabel] = ACTIONS(1801), + [anon_sym_BSLASHnewcommand] = ACTIONS(1804), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1804), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1804), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1807), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1810), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1813), + [anon_sym_BSLASHgls] = ACTIONS(1816), + [anon_sym_BSLASHGls] = ACTIONS(1816), + [anon_sym_BSLASHGLS] = ACTIONS(1816), + [anon_sym_BSLASHglspl] = ACTIONS(1816), + [anon_sym_BSLASHGlspl] = ACTIONS(1816), + [anon_sym_BSLASHGLSpl] = ACTIONS(1816), + [anon_sym_BSLASHglsdisp] = ACTIONS(1816), + [anon_sym_BSLASHglslink] = ACTIONS(1816), + [anon_sym_BSLASHglstext] = ACTIONS(1816), + [anon_sym_BSLASHGlstext] = ACTIONS(1816), + [anon_sym_BSLASHGLStext] = ACTIONS(1816), + [anon_sym_BSLASHglsfirst] = ACTIONS(1816), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), + [anon_sym_BSLASHglsplural] = ACTIONS(1816), + [anon_sym_BSLASHGlsplural] = ACTIONS(1816), + [anon_sym_BSLASHGLSplural] = ACTIONS(1816), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), + [anon_sym_BSLASHglsname] = ACTIONS(1816), + [anon_sym_BSLASHGlsname] = ACTIONS(1816), + [anon_sym_BSLASHGLSname] = ACTIONS(1816), + [anon_sym_BSLASHglssymbol] = ACTIONS(1816), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), + [anon_sym_BSLASHglsdesc] = ACTIONS(1816), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), + [anon_sym_BSLASHglsuseri] = ACTIONS(1816), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), + [anon_sym_BSLASHglsuserii] = ACTIONS(1816), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), + [anon_sym_BSLASHglsuserv] = ACTIONS(1816), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), + [anon_sym_BSLASHglsuservi] = ACTIONS(1816), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), + [anon_sym_BSLASHnewacronym] = ACTIONS(1819), + [anon_sym_BSLASHacrshort] = ACTIONS(1822), + [anon_sym_BSLASHAcrshort] = ACTIONS(1822), + [anon_sym_BSLASHACRshort] = ACTIONS(1822), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1822), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1822), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1822), + [anon_sym_BSLASHacrlong] = ACTIONS(1822), + [anon_sym_BSLASHAcrlong] = ACTIONS(1822), + [anon_sym_BSLASHACRlong] = ACTIONS(1822), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1822), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1822), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1822), + [anon_sym_BSLASHacrfull] = ACTIONS(1822), + [anon_sym_BSLASHAcrfull] = ACTIONS(1822), + [anon_sym_BSLASHACRfull] = ACTIONS(1822), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1822), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1822), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1822), + [anon_sym_BSLASHacs] = ACTIONS(1822), + [anon_sym_BSLASHAcs] = ACTIONS(1822), + [anon_sym_BSLASHacsp] = ACTIONS(1822), + [anon_sym_BSLASHAcsp] = ACTIONS(1822), + [anon_sym_BSLASHacl] = ACTIONS(1822), + [anon_sym_BSLASHAcl] = ACTIONS(1822), + [anon_sym_BSLASHaclp] = ACTIONS(1822), + [anon_sym_BSLASHAclp] = ACTIONS(1822), + [anon_sym_BSLASHacf] = ACTIONS(1822), + [anon_sym_BSLASHAcf] = ACTIONS(1822), + [anon_sym_BSLASHacfp] = ACTIONS(1822), + [anon_sym_BSLASHAcfp] = ACTIONS(1822), + [anon_sym_BSLASHac] = ACTIONS(1822), + [anon_sym_BSLASHAc] = ACTIONS(1822), + [anon_sym_BSLASHacp] = ACTIONS(1822), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1822), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1822), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1822), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1822), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1822), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1822), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1822), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1822), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1822), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1822), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1825), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1825), + [anon_sym_BSLASHcolor] = ACTIONS(1828), + [anon_sym_BSLASHcolorbox] = ACTIONS(1828), + [anon_sym_BSLASHtextcolor] = ACTIONS(1828), + [anon_sym_BSLASHpagecolor] = ACTIONS(1828), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1831), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1834), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1840), + }, + [212] = { + [sym__simple_content] = STATE(180), + [sym__content] = STATE(180), + [sym_part] = STATE(180), + [sym_chapter] = STATE(180), + [sym_section] = STATE(180), + [sym_subsection] = STATE(180), + [sym_subsubsection] = STATE(180), + [sym_paragraph] = STATE(180), + [sym_subparagraph] = STATE(180), + [sym_enum_item] = STATE(180), + [sym_brace_group] = STATE(180), + [sym_mixed_group] = STATE(180), + [sym_text] = STATE(180), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(180), + [sym_inline_formula] = STATE(180), + [sym_begin] = STATE(52), + [sym_environment] = STATE(180), + [sym_caption] = STATE(180), + [sym_citation] = STATE(180), + [sym_package_include] = STATE(180), + [sym_class_include] = STATE(180), + [sym_latex_include] = STATE(180), + [sym_latex_input] = STATE(180), + [sym_biblatex_include] = STATE(180), + [sym_bibtex_include] = STATE(180), + [sym_graphics_include] = STATE(180), + [sym_svg_include] = STATE(180), + [sym_inkscape_include] = STATE(180), + [sym_verbatim_include] = STATE(180), + [sym_import] = STATE(180), + [sym_label_definition] = STATE(180), + [sym_label_reference] = STATE(180), + [sym_equation_label_reference] = STATE(180), + [sym_label_reference_range] = STATE(180), + [sym_label_number] = STATE(180), + [sym_command_definition] = STATE(180), + [sym_math_operator] = STATE(180), + [sym_glossary_entry_definition] = STATE(180), + [sym_glossary_entry_reference] = STATE(180), + [sym_acronym_definition] = STATE(180), + [sym_acronym_reference] = STATE(180), + [sym_theorem_definition] = STATE(180), + [sym_color_reference] = STATE(180), + [sym_color_definition] = STATE(180), + [sym_color_set_definition] = STATE(180), + [sym_pgf_library_import] = STATE(180), + [sym_tikz_library_import] = STATE(180), + [sym_generic_command] = STATE(180), + [aux_sym_document_repeat1] = STATE(180), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [213] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [214] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1076), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1849), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1851), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [215] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(898), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1853), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1855), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [216] = { + [sym__simple_content] = STATE(225), + [sym__content] = STATE(225), + [sym_part] = STATE(225), + [sym_chapter] = STATE(225), + [sym_section] = STATE(225), + [sym_subsection] = STATE(225), + [sym_subsubsection] = STATE(225), + [sym_paragraph] = STATE(225), + [sym_subparagraph] = STATE(225), + [sym_enum_item] = STATE(225), + [sym_brace_group] = STATE(225), + [sym_mixed_group] = STATE(225), + [sym_text] = STATE(225), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(225), + [sym_inline_formula] = STATE(225), + [sym_begin] = STATE(52), + [sym_environment] = STATE(225), + [sym_caption] = STATE(225), + [sym_citation] = STATE(225), + [sym_package_include] = STATE(225), + [sym_class_include] = STATE(225), + [sym_latex_include] = STATE(225), + [sym_latex_input] = STATE(225), + [sym_biblatex_include] = STATE(225), + [sym_bibtex_include] = STATE(225), + [sym_graphics_include] = STATE(225), + [sym_svg_include] = STATE(225), + [sym_inkscape_include] = STATE(225), + [sym_verbatim_include] = STATE(225), + [sym_import] = STATE(225), + [sym_label_definition] = STATE(225), + [sym_label_reference] = STATE(225), + [sym_equation_label_reference] = STATE(225), + [sym_label_reference_range] = STATE(225), + [sym_label_number] = STATE(225), + [sym_command_definition] = STATE(225), + [sym_math_operator] = STATE(225), + [sym_glossary_entry_definition] = STATE(225), + [sym_glossary_entry_reference] = STATE(225), + [sym_acronym_definition] = STATE(225), + [sym_acronym_reference] = STATE(225), + [sym_theorem_definition] = STATE(225), + [sym_color_reference] = STATE(225), + [sym_color_definition] = STATE(225), + [sym_color_set_definition] = STATE(225), + [sym_pgf_library_import] = STATE(225), + [sym_tikz_library_import] = STATE(225), + [sym_generic_command] = STATE(225), + [aux_sym_document_repeat1] = STATE(225), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1859), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [217] = { + [sym__simple_content] = STATE(229), + [sym__content] = STATE(229), + [sym_part] = STATE(229), + [sym_chapter] = STATE(229), + [sym_section] = STATE(229), + [sym_subsection] = STATE(229), + [sym_subsubsection] = STATE(229), + [sym_paragraph] = STATE(229), + [sym_subparagraph] = STATE(229), + [sym_enum_item] = STATE(229), + [sym_brace_group] = STATE(229), + [sym_mixed_group] = STATE(229), + [sym_text] = STATE(229), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(229), + [sym_inline_formula] = STATE(229), + [sym_begin] = STATE(52), + [sym_environment] = STATE(229), + [sym_caption] = STATE(229), + [sym_citation] = STATE(229), + [sym_package_include] = STATE(229), + [sym_class_include] = STATE(229), + [sym_latex_include] = STATE(229), + [sym_latex_input] = STATE(229), + [sym_biblatex_include] = STATE(229), + [sym_bibtex_include] = STATE(229), + [sym_graphics_include] = STATE(229), + [sym_svg_include] = STATE(229), + [sym_inkscape_include] = STATE(229), + [sym_verbatim_include] = STATE(229), + [sym_import] = STATE(229), + [sym_label_definition] = STATE(229), + [sym_label_reference] = STATE(229), + [sym_equation_label_reference] = STATE(229), + [sym_label_reference_range] = STATE(229), + [sym_label_number] = STATE(229), + [sym_command_definition] = STATE(229), + [sym_math_operator] = STATE(229), + [sym_glossary_entry_definition] = STATE(229), + [sym_glossary_entry_reference] = STATE(229), + [sym_acronym_definition] = STATE(229), + [sym_acronym_reference] = STATE(229), + [sym_theorem_definition] = STATE(229), + [sym_color_reference] = STATE(229), + [sym_color_definition] = STATE(229), + [sym_color_set_definition] = STATE(229), + [sym_pgf_library_import] = STATE(229), + [sym_tikz_library_import] = STATE(229), + [sym_generic_command] = STATE(229), + [aux_sym_document_repeat1] = STATE(229), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1863), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [218] = { + [sym__simple_content] = STATE(198), + [sym__content] = STATE(198), + [sym_part] = STATE(198), + [sym_chapter] = STATE(198), + [sym_section] = STATE(198), + [sym_subsection] = STATE(198), + [sym_subsubsection] = STATE(198), + [sym_paragraph] = STATE(198), + [sym_subparagraph] = STATE(198), + [sym_enum_item] = STATE(198), + [sym_brace_group] = STATE(198), + [sym_mixed_group] = STATE(198), + [sym_text] = STATE(198), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(198), + [sym_inline_formula] = STATE(198), + [sym_begin] = STATE(52), + [sym_environment] = STATE(198), + [sym_caption] = STATE(198), + [sym_citation] = STATE(198), + [sym_package_include] = STATE(198), + [sym_class_include] = STATE(198), + [sym_latex_include] = STATE(198), + [sym_latex_input] = STATE(198), + [sym_biblatex_include] = STATE(198), + [sym_bibtex_include] = STATE(198), + [sym_graphics_include] = STATE(198), + [sym_svg_include] = STATE(198), + [sym_inkscape_include] = STATE(198), + [sym_verbatim_include] = STATE(198), + [sym_import] = STATE(198), + [sym_label_definition] = STATE(198), + [sym_label_reference] = STATE(198), + [sym_equation_label_reference] = STATE(198), + [sym_label_reference_range] = STATE(198), + [sym_label_number] = STATE(198), + [sym_command_definition] = STATE(198), + [sym_math_operator] = STATE(198), + [sym_glossary_entry_definition] = STATE(198), + [sym_glossary_entry_reference] = STATE(198), + [sym_acronym_definition] = STATE(198), + [sym_acronym_reference] = STATE(198), + [sym_theorem_definition] = STATE(198), + [sym_color_reference] = STATE(198), + [sym_color_definition] = STATE(198), + [sym_color_set_definition] = STATE(198), + [sym_pgf_library_import] = STATE(198), + [sym_tikz_library_import] = STATE(198), + [sym_generic_command] = STATE(198), + [aux_sym_document_repeat1] = STATE(198), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1865), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1867), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [219] = { + [sym__simple_content] = STATE(226), + [sym__content] = STATE(226), + [sym_part] = STATE(226), + [sym_chapter] = STATE(226), + [sym_section] = STATE(226), + [sym_subsection] = STATE(226), + [sym_subsubsection] = STATE(226), + [sym_paragraph] = STATE(226), + [sym_subparagraph] = STATE(226), + [sym_enum_item] = STATE(226), + [sym_brace_group] = STATE(226), + [sym_mixed_group] = STATE(226), + [sym_text] = STATE(226), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(226), + [sym_inline_formula] = STATE(226), + [sym_begin] = STATE(52), + [sym_environment] = STATE(226), + [sym_caption] = STATE(226), + [sym_citation] = STATE(226), + [sym_package_include] = STATE(226), + [sym_class_include] = STATE(226), + [sym_latex_include] = STATE(226), + [sym_latex_input] = STATE(226), + [sym_biblatex_include] = STATE(226), + [sym_bibtex_include] = STATE(226), + [sym_graphics_include] = STATE(226), + [sym_svg_include] = STATE(226), + [sym_inkscape_include] = STATE(226), + [sym_verbatim_include] = STATE(226), + [sym_import] = STATE(226), + [sym_label_definition] = STATE(226), + [sym_label_reference] = STATE(226), + [sym_equation_label_reference] = STATE(226), + [sym_label_reference_range] = STATE(226), + [sym_label_number] = STATE(226), + [sym_command_definition] = STATE(226), + [sym_math_operator] = STATE(226), + [sym_glossary_entry_definition] = STATE(226), + [sym_glossary_entry_reference] = STATE(226), + [sym_acronym_definition] = STATE(226), + [sym_acronym_reference] = STATE(226), + [sym_theorem_definition] = STATE(226), + [sym_color_reference] = STATE(226), + [sym_color_definition] = STATE(226), + [sym_color_set_definition] = STATE(226), + [sym_pgf_library_import] = STATE(226), + [sym_tikz_library_import] = STATE(226), + [sym_generic_command] = STATE(226), + [aux_sym_document_repeat1] = STATE(226), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1869), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1871), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [220] = { + [sym__simple_content] = STATE(200), + [sym__content] = STATE(200), + [sym_part] = STATE(200), + [sym_chapter] = STATE(200), + [sym_section] = STATE(200), + [sym_subsection] = STATE(200), + [sym_subsubsection] = STATE(200), + [sym_paragraph] = STATE(200), + [sym_subparagraph] = STATE(200), + [sym_enum_item] = STATE(200), + [sym_brace_group] = STATE(200), + [sym_mixed_group] = STATE(200), + [sym_text] = STATE(200), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(200), + [sym_inline_formula] = STATE(200), + [sym_begin] = STATE(52), + [sym_environment] = STATE(200), + [sym_caption] = STATE(200), + [sym_citation] = STATE(200), + [sym_package_include] = STATE(200), + [sym_class_include] = STATE(200), + [sym_latex_include] = STATE(200), + [sym_latex_input] = STATE(200), + [sym_biblatex_include] = STATE(200), + [sym_bibtex_include] = STATE(200), + [sym_graphics_include] = STATE(200), + [sym_svg_include] = STATE(200), + [sym_inkscape_include] = STATE(200), + [sym_verbatim_include] = STATE(200), + [sym_import] = STATE(200), + [sym_label_definition] = STATE(200), + [sym_label_reference] = STATE(200), + [sym_equation_label_reference] = STATE(200), + [sym_label_reference_range] = STATE(200), + [sym_label_number] = STATE(200), + [sym_command_definition] = STATE(200), + [sym_math_operator] = STATE(200), + [sym_glossary_entry_definition] = STATE(200), + [sym_glossary_entry_reference] = STATE(200), + [sym_acronym_definition] = STATE(200), + [sym_acronym_reference] = STATE(200), + [sym_theorem_definition] = STATE(200), + [sym_color_reference] = STATE(200), + [sym_color_definition] = STATE(200), + [sym_color_set_definition] = STATE(200), + [sym_pgf_library_import] = STATE(200), + [sym_tikz_library_import] = STATE(200), + [sym_generic_command] = STATE(200), + [aux_sym_document_repeat1] = STATE(200), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1875), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [221] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(898), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1877), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1879), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [222] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1076), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1881), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1883), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [223] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [224] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(898), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1887), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1889), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [225] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [226] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [227] = { + [sym__simple_content] = STATE(238), + [sym__content] = STATE(238), + [sym_part] = STATE(238), + [sym_chapter] = STATE(238), + [sym_section] = STATE(238), + [sym_subsection] = STATE(238), + [sym_subsubsection] = STATE(238), + [sym_paragraph] = STATE(238), + [sym_subparagraph] = STATE(238), + [sym_enum_item] = STATE(238), + [sym_brace_group] = STATE(238), + [sym_mixed_group] = STATE(238), + [sym_text] = STATE(238), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(238), + [sym_inline_formula] = STATE(238), + [sym_begin] = STATE(52), + [sym_environment] = STATE(238), + [sym_caption] = STATE(238), + [sym_citation] = STATE(238), + [sym_package_include] = STATE(238), + [sym_class_include] = STATE(238), + [sym_latex_include] = STATE(238), + [sym_latex_input] = STATE(238), + [sym_biblatex_include] = STATE(238), + [sym_bibtex_include] = STATE(238), + [sym_graphics_include] = STATE(238), + [sym_svg_include] = STATE(238), + [sym_inkscape_include] = STATE(238), + [sym_verbatim_include] = STATE(238), + [sym_import] = STATE(238), + [sym_label_definition] = STATE(238), + [sym_label_reference] = STATE(238), + [sym_equation_label_reference] = STATE(238), + [sym_label_reference_range] = STATE(238), + [sym_label_number] = STATE(238), + [sym_command_definition] = STATE(238), + [sym_math_operator] = STATE(238), + [sym_glossary_entry_definition] = STATE(238), + [sym_glossary_entry_reference] = STATE(238), + [sym_acronym_definition] = STATE(238), + [sym_acronym_reference] = STATE(238), + [sym_theorem_definition] = STATE(238), + [sym_color_reference] = STATE(238), + [sym_color_definition] = STATE(238), + [sym_color_set_definition] = STATE(238), + [sym_pgf_library_import] = STATE(238), + [sym_tikz_library_import] = STATE(238), + [sym_generic_command] = STATE(238), + [aux_sym_document_repeat1] = STATE(238), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [228] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [229] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1901), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [230] = { + [sym__simple_content] = STATE(130), + [sym_section] = STATE(130), + [sym_subsection] = STATE(130), + [sym_subsubsection] = STATE(130), + [sym_paragraph] = STATE(130), + [sym_subparagraph] = STATE(130), + [sym_enum_item] = STATE(130), + [sym_brace_group] = STATE(130), + [sym_mixed_group] = STATE(130), + [sym_text] = STATE(130), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(130), + [sym_inline_formula] = STATE(130), + [sym_begin] = STATE(52), + [sym_environment] = STATE(130), + [sym_caption] = STATE(130), + [sym_citation] = STATE(130), + [sym_package_include] = STATE(130), + [sym_class_include] = STATE(130), + [sym_latex_include] = STATE(130), + [sym_latex_input] = STATE(130), + [sym_biblatex_include] = STATE(130), + [sym_bibtex_include] = STATE(130), + [sym_graphics_include] = STATE(130), + [sym_svg_include] = STATE(130), + [sym_inkscape_include] = STATE(130), + [sym_verbatim_include] = STATE(130), + [sym_import] = STATE(130), + [sym_label_definition] = STATE(130), + [sym_label_reference] = STATE(130), + [sym_equation_label_reference] = STATE(130), + [sym_label_reference_range] = STATE(130), + [sym_label_number] = STATE(130), + [sym_command_definition] = STATE(130), + [sym_math_operator] = STATE(130), + [sym_glossary_entry_definition] = STATE(130), + [sym_glossary_entry_reference] = STATE(130), + [sym_acronym_definition] = STATE(130), + [sym_acronym_reference] = STATE(130), + [sym_theorem_definition] = STATE(130), + [sym_color_reference] = STATE(130), + [sym_color_definition] = STATE(130), + [sym_color_set_definition] = STATE(130), + [sym_pgf_library_import] = STATE(130), + [sym_tikz_library_import] = STATE(130), + [sym_generic_command] = STATE(130), + [aux_sym_chapter_repeat1] = STATE(130), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(1903), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1905), + [aux_sym_chapter_token1] = ACTIONS(1905), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1903), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1907), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [231] = { + [sym__simple_content] = STATE(241), + [sym__content] = STATE(241), + [sym_part] = STATE(241), + [sym_chapter] = STATE(241), + [sym_section] = STATE(241), + [sym_subsection] = STATE(241), + [sym_subsubsection] = STATE(241), + [sym_paragraph] = STATE(241), + [sym_subparagraph] = STATE(241), + [sym_enum_item] = STATE(241), + [sym_brace_group] = STATE(241), + [sym_mixed_group] = STATE(241), + [sym_text] = STATE(241), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(241), + [sym_inline_formula] = STATE(241), + [sym_begin] = STATE(66), + [sym_environment] = STATE(241), + [sym_caption] = STATE(241), + [sym_citation] = STATE(241), + [sym_package_include] = STATE(241), + [sym_class_include] = STATE(241), + [sym_latex_include] = STATE(241), + [sym_latex_input] = STATE(241), + [sym_biblatex_include] = STATE(241), + [sym_bibtex_include] = STATE(241), + [sym_graphics_include] = STATE(241), + [sym_svg_include] = STATE(241), + [sym_inkscape_include] = STATE(241), + [sym_verbatim_include] = STATE(241), + [sym_import] = STATE(241), + [sym_label_definition] = STATE(241), + [sym_label_reference] = STATE(241), + [sym_equation_label_reference] = STATE(241), + [sym_label_reference_range] = STATE(241), + [sym_label_number] = STATE(241), + [sym_command_definition] = STATE(241), + [sym_math_operator] = STATE(241), + [sym_glossary_entry_definition] = STATE(241), + [sym_glossary_entry_reference] = STATE(241), + [sym_acronym_definition] = STATE(241), + [sym_acronym_reference] = STATE(241), + [sym_theorem_definition] = STATE(241), + [sym_color_reference] = STATE(241), + [sym_color_definition] = STATE(241), + [sym_color_set_definition] = STATE(241), + [sym_pgf_library_import] = STATE(241), + [sym_tikz_library_import] = STATE(241), + [sym_generic_command] = STATE(241), + [aux_sym_document_repeat1] = STATE(241), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(1909), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1148), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [232] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1076), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1913), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1915), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [233] = { + [sym__simple_content] = STATE(221), + [sym__content] = STATE(221), + [sym_part] = STATE(221), + [sym_chapter] = STATE(221), + [sym_section] = STATE(221), + [sym_subsection] = STATE(221), + [sym_subsubsection] = STATE(221), + [sym_paragraph] = STATE(221), + [sym_subparagraph] = STATE(221), + [sym_enum_item] = STATE(221), + [sym_brace_group] = STATE(221), + [sym_mixed_group] = STATE(221), + [sym_text] = STATE(221), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(221), + [sym_inline_formula] = STATE(221), + [sym_begin] = STATE(66), + [sym_environment] = STATE(221), + [sym_caption] = STATE(221), + [sym_citation] = STATE(221), + [sym_package_include] = STATE(221), + [sym_class_include] = STATE(221), + [sym_latex_include] = STATE(221), + [sym_latex_input] = STATE(221), + [sym_biblatex_include] = STATE(221), + [sym_bibtex_include] = STATE(221), + [sym_graphics_include] = STATE(221), + [sym_svg_include] = STATE(221), + [sym_inkscape_include] = STATE(221), + [sym_verbatim_include] = STATE(221), + [sym_import] = STATE(221), + [sym_label_definition] = STATE(221), + [sym_label_reference] = STATE(221), + [sym_equation_label_reference] = STATE(221), + [sym_label_reference_range] = STATE(221), + [sym_label_number] = STATE(221), + [sym_command_definition] = STATE(221), + [sym_math_operator] = STATE(221), + [sym_glossary_entry_definition] = STATE(221), + [sym_glossary_entry_reference] = STATE(221), + [sym_acronym_definition] = STATE(221), + [sym_acronym_reference] = STATE(221), + [sym_theorem_definition] = STATE(221), + [sym_color_reference] = STATE(221), + [sym_color_definition] = STATE(221), + [sym_color_set_definition] = STATE(221), + [sym_pgf_library_import] = STATE(221), + [sym_tikz_library_import] = STATE(221), + [sym_generic_command] = STATE(221), + [aux_sym_document_repeat1] = STATE(221), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(1917), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1919), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [234] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [235] = { + [sym__simple_content] = STATE(222), + [sym__content] = STATE(222), + [sym_part] = STATE(222), + [sym_chapter] = STATE(222), + [sym_section] = STATE(222), + [sym_subsection] = STATE(222), + [sym_subsubsection] = STATE(222), + [sym_paragraph] = STATE(222), + [sym_subparagraph] = STATE(222), + [sym_enum_item] = STATE(222), + [sym_brace_group] = STATE(222), + [sym_mixed_group] = STATE(222), + [sym_text] = STATE(222), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(222), + [sym_inline_formula] = STATE(222), + [sym_begin] = STATE(59), + [sym_environment] = STATE(222), + [sym_caption] = STATE(222), + [sym_citation] = STATE(222), + [sym_package_include] = STATE(222), + [sym_class_include] = STATE(222), + [sym_latex_include] = STATE(222), + [sym_latex_input] = STATE(222), + [sym_biblatex_include] = STATE(222), + [sym_bibtex_include] = STATE(222), + [sym_graphics_include] = STATE(222), + [sym_svg_include] = STATE(222), + [sym_inkscape_include] = STATE(222), + [sym_verbatim_include] = STATE(222), + [sym_import] = STATE(222), + [sym_label_definition] = STATE(222), + [sym_label_reference] = STATE(222), + [sym_equation_label_reference] = STATE(222), + [sym_label_reference_range] = STATE(222), + [sym_label_number] = STATE(222), + [sym_command_definition] = STATE(222), + [sym_math_operator] = STATE(222), + [sym_glossary_entry_definition] = STATE(222), + [sym_glossary_entry_reference] = STATE(222), + [sym_acronym_definition] = STATE(222), + [sym_acronym_reference] = STATE(222), + [sym_theorem_definition] = STATE(222), + [sym_color_reference] = STATE(222), + [sym_color_definition] = STATE(222), + [sym_color_set_definition] = STATE(222), + [sym_pgf_library_import] = STATE(222), + [sym_tikz_library_import] = STATE(222), + [sym_generic_command] = STATE(222), + [aux_sym_document_repeat1] = STATE(222), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1925), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1927), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [236] = { + [sym__simple_content] = STATE(224), + [sym__content] = STATE(224), + [sym_part] = STATE(224), + [sym_chapter] = STATE(224), + [sym_section] = STATE(224), + [sym_subsection] = STATE(224), + [sym_subsubsection] = STATE(224), + [sym_paragraph] = STATE(224), + [sym_subparagraph] = STATE(224), + [sym_enum_item] = STATE(224), + [sym_brace_group] = STATE(224), + [sym_mixed_group] = STATE(224), + [sym_text] = STATE(224), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(224), + [sym_inline_formula] = STATE(224), + [sym_begin] = STATE(66), + [sym_environment] = STATE(224), + [sym_caption] = STATE(224), + [sym_citation] = STATE(224), + [sym_package_include] = STATE(224), + [sym_class_include] = STATE(224), + [sym_latex_include] = STATE(224), + [sym_latex_input] = STATE(224), + [sym_biblatex_include] = STATE(224), + [sym_bibtex_include] = STATE(224), + [sym_graphics_include] = STATE(224), + [sym_svg_include] = STATE(224), + [sym_inkscape_include] = STATE(224), + [sym_verbatim_include] = STATE(224), + [sym_import] = STATE(224), + [sym_label_definition] = STATE(224), + [sym_label_reference] = STATE(224), + [sym_equation_label_reference] = STATE(224), + [sym_label_reference_range] = STATE(224), + [sym_label_number] = STATE(224), + [sym_command_definition] = STATE(224), + [sym_math_operator] = STATE(224), + [sym_glossary_entry_definition] = STATE(224), + [sym_glossary_entry_reference] = STATE(224), + [sym_acronym_definition] = STATE(224), + [sym_acronym_reference] = STATE(224), + [sym_theorem_definition] = STATE(224), + [sym_color_reference] = STATE(224), + [sym_color_definition] = STATE(224), + [sym_color_set_definition] = STATE(224), + [sym_pgf_library_import] = STATE(224), + [sym_tikz_library_import] = STATE(224), + [sym_generic_command] = STATE(224), + [aux_sym_document_repeat1] = STATE(224), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(1931), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1933), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1935), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [237] = { + [sym__simple_content] = STATE(223), + [sym__content] = STATE(223), + [sym_part] = STATE(223), + [sym_chapter] = STATE(223), + [sym_section] = STATE(223), + [sym_subsection] = STATE(223), + [sym_subsubsection] = STATE(223), + [sym_paragraph] = STATE(223), + [sym_subparagraph] = STATE(223), + [sym_enum_item] = STATE(223), + [sym_brace_group] = STATE(223), + [sym_mixed_group] = STATE(223), + [sym_text] = STATE(223), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(223), + [sym_inline_formula] = STATE(223), + [sym_begin] = STATE(52), + [sym_environment] = STATE(223), + [sym_caption] = STATE(223), + [sym_citation] = STATE(223), + [sym_package_include] = STATE(223), + [sym_class_include] = STATE(223), + [sym_latex_include] = STATE(223), + [sym_latex_input] = STATE(223), + [sym_biblatex_include] = STATE(223), + [sym_bibtex_include] = STATE(223), + [sym_graphics_include] = STATE(223), + [sym_svg_include] = STATE(223), + [sym_inkscape_include] = STATE(223), + [sym_verbatim_include] = STATE(223), + [sym_import] = STATE(223), + [sym_label_definition] = STATE(223), + [sym_label_reference] = STATE(223), + [sym_equation_label_reference] = STATE(223), + [sym_label_reference_range] = STATE(223), + [sym_label_number] = STATE(223), + [sym_command_definition] = STATE(223), + [sym_math_operator] = STATE(223), + [sym_glossary_entry_definition] = STATE(223), + [sym_glossary_entry_reference] = STATE(223), + [sym_acronym_definition] = STATE(223), + [sym_acronym_reference] = STATE(223), + [sym_theorem_definition] = STATE(223), + [sym_color_reference] = STATE(223), + [sym_color_definition] = STATE(223), + [sym_color_set_definition] = STATE(223), + [sym_pgf_library_import] = STATE(223), + [sym_tikz_library_import] = STATE(223), + [sym_generic_command] = STATE(223), + [aux_sym_document_repeat1] = STATE(223), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1937), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1939), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [238] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [239] = { + [sym__simple_content] = STATE(234), + [sym__content] = STATE(234), + [sym_part] = STATE(234), + [sym_chapter] = STATE(234), + [sym_section] = STATE(234), + [sym_subsection] = STATE(234), + [sym_subsubsection] = STATE(234), + [sym_paragraph] = STATE(234), + [sym_subparagraph] = STATE(234), + [sym_enum_item] = STATE(234), + [sym_brace_group] = STATE(234), + [sym_mixed_group] = STATE(234), + [sym_text] = STATE(234), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(234), + [sym_inline_formula] = STATE(234), + [sym_begin] = STATE(52), + [sym_environment] = STATE(234), + [sym_caption] = STATE(234), + [sym_citation] = STATE(234), + [sym_package_include] = STATE(234), + [sym_class_include] = STATE(234), + [sym_latex_include] = STATE(234), + [sym_latex_input] = STATE(234), + [sym_biblatex_include] = STATE(234), + [sym_bibtex_include] = STATE(234), + [sym_graphics_include] = STATE(234), + [sym_svg_include] = STATE(234), + [sym_inkscape_include] = STATE(234), + [sym_verbatim_include] = STATE(234), + [sym_import] = STATE(234), + [sym_label_definition] = STATE(234), + [sym_label_reference] = STATE(234), + [sym_equation_label_reference] = STATE(234), + [sym_label_reference_range] = STATE(234), + [sym_label_number] = STATE(234), + [sym_command_definition] = STATE(234), + [sym_math_operator] = STATE(234), + [sym_glossary_entry_definition] = STATE(234), + [sym_glossary_entry_reference] = STATE(234), + [sym_acronym_definition] = STATE(234), + [sym_acronym_reference] = STATE(234), + [sym_theorem_definition] = STATE(234), + [sym_color_reference] = STATE(234), + [sym_color_definition] = STATE(234), + [sym_color_set_definition] = STATE(234), + [sym_pgf_library_import] = STATE(234), + [sym_tikz_library_import] = STATE(234), + [sym_generic_command] = STATE(234), + [aux_sym_document_repeat1] = STATE(234), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1945), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [240] = { + [sym__simple_content] = STATE(120), + [sym__content] = STATE(120), + [sym_part] = STATE(120), + [sym_chapter] = STATE(120), + [sym_section] = STATE(120), + [sym_subsection] = STATE(120), + [sym_subsubsection] = STATE(120), + [sym_paragraph] = STATE(120), + [sym_subparagraph] = STATE(120), + [sym_enum_item] = STATE(120), + [sym_brace_group] = STATE(120), + [sym_mixed_group] = STATE(120), + [sym_text] = STATE(120), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_begin] = STATE(59), + [sym_environment] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_latex_input] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_equation_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_command_definition] = STATE(120), + [sym_math_operator] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_pgf_library_import] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_generic_command] = STATE(120), + [aux_sym_document_repeat1] = STATE(120), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1076), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1947), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1400), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [241] = { + [sym__simple_content] = STATE(211), + [sym__content] = STATE(211), + [sym_part] = STATE(211), + [sym_chapter] = STATE(211), + [sym_section] = STATE(211), + [sym_subsection] = STATE(211), + [sym_subsubsection] = STATE(211), + [sym_paragraph] = STATE(211), + [sym_subparagraph] = STATE(211), + [sym_enum_item] = STATE(211), + [sym_brace_group] = STATE(211), + [sym_mixed_group] = STATE(211), + [sym_text] = STATE(211), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(211), + [sym_inline_formula] = STATE(211), + [sym_begin] = STATE(66), + [sym_environment] = STATE(211), + [sym_caption] = STATE(211), + [sym_citation] = STATE(211), + [sym_package_include] = STATE(211), + [sym_class_include] = STATE(211), + [sym_latex_include] = STATE(211), + [sym_latex_input] = STATE(211), + [sym_biblatex_include] = STATE(211), + [sym_bibtex_include] = STATE(211), + [sym_graphics_include] = STATE(211), + [sym_svg_include] = STATE(211), + [sym_inkscape_include] = STATE(211), + [sym_verbatim_include] = STATE(211), + [sym_import] = STATE(211), + [sym_label_definition] = STATE(211), + [sym_label_reference] = STATE(211), + [sym_equation_label_reference] = STATE(211), + [sym_label_reference_range] = STATE(211), + [sym_label_number] = STATE(211), + [sym_command_definition] = STATE(211), + [sym_math_operator] = STATE(211), + [sym_glossary_entry_definition] = STATE(211), + [sym_glossary_entry_reference] = STATE(211), + [sym_acronym_definition] = STATE(211), + [sym_acronym_reference] = STATE(211), + [sym_theorem_definition] = STATE(211), + [sym_color_reference] = STATE(211), + [sym_color_definition] = STATE(211), + [sym_color_set_definition] = STATE(211), + [sym_pgf_library_import] = STATE(211), + [sym_tikz_library_import] = STATE(211), + [sym_generic_command] = STATE(211), + [aux_sym_document_repeat1] = STATE(211), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(388), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(898), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(1949), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1498), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [242] = { + [sym__simple_content] = STATE(245), + [sym__content] = STATE(245), + [sym_part] = STATE(245), + [sym_chapter] = STATE(245), + [sym_section] = STATE(245), + [sym_subsection] = STATE(245), + [sym_subsubsection] = STATE(245), + [sym_paragraph] = STATE(245), + [sym_subparagraph] = STATE(245), + [sym_enum_item] = STATE(245), + [sym_brace_group] = STATE(245), + [sym_mixed_group] = STATE(245), + [sym_text] = STATE(245), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(245), + [sym_inline_formula] = STATE(245), + [sym_begin] = STATE(52), + [sym_environment] = STATE(245), + [sym_caption] = STATE(245), + [sym_citation] = STATE(245), + [sym_package_include] = STATE(245), + [sym_class_include] = STATE(245), + [sym_latex_include] = STATE(245), + [sym_latex_input] = STATE(245), + [sym_biblatex_include] = STATE(245), + [sym_bibtex_include] = STATE(245), + [sym_graphics_include] = STATE(245), + [sym_svg_include] = STATE(245), + [sym_inkscape_include] = STATE(245), + [sym_verbatim_include] = STATE(245), + [sym_import] = STATE(245), + [sym_label_definition] = STATE(245), + [sym_label_reference] = STATE(245), + [sym_equation_label_reference] = STATE(245), + [sym_label_reference_range] = STATE(245), + [sym_label_number] = STATE(245), + [sym_command_definition] = STATE(245), + [sym_math_operator] = STATE(245), + [sym_glossary_entry_definition] = STATE(245), + [sym_glossary_entry_reference] = STATE(245), + [sym_acronym_definition] = STATE(245), + [sym_acronym_reference] = STATE(245), + [sym_theorem_definition] = STATE(245), + [sym_color_reference] = STATE(245), + [sym_color_definition] = STATE(245), + [sym_color_set_definition] = STATE(245), + [sym_pgf_library_import] = STATE(245), + [sym_tikz_library_import] = STATE(245), + [sym_generic_command] = STATE(245), + [aux_sym_document_repeat1] = STATE(245), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1953), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [243] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [244] = { + [sym__simple_content] = STATE(189), + [sym__content] = STATE(189), + [sym_part] = STATE(189), + [sym_chapter] = STATE(189), + [sym_section] = STATE(189), + [sym_subsection] = STATE(189), + [sym_subsubsection] = STATE(189), + [sym_paragraph] = STATE(189), + [sym_subparagraph] = STATE(189), + [sym_enum_item] = STATE(189), + [sym_brace_group] = STATE(189), + [sym_mixed_group] = STATE(189), + [sym_text] = STATE(189), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(189), + [sym_inline_formula] = STATE(189), + [sym_begin] = STATE(59), + [sym_environment] = STATE(189), + [sym_caption] = STATE(189), + [sym_citation] = STATE(189), + [sym_package_include] = STATE(189), + [sym_class_include] = STATE(189), + [sym_latex_include] = STATE(189), + [sym_latex_input] = STATE(189), + [sym_biblatex_include] = STATE(189), + [sym_bibtex_include] = STATE(189), + [sym_graphics_include] = STATE(189), + [sym_svg_include] = STATE(189), + [sym_inkscape_include] = STATE(189), + [sym_verbatim_include] = STATE(189), + [sym_import] = STATE(189), + [sym_label_definition] = STATE(189), + [sym_label_reference] = STATE(189), + [sym_equation_label_reference] = STATE(189), + [sym_label_reference_range] = STATE(189), + [sym_label_number] = STATE(189), + [sym_command_definition] = STATE(189), + [sym_math_operator] = STATE(189), + [sym_glossary_entry_definition] = STATE(189), + [sym_glossary_entry_reference] = STATE(189), + [sym_acronym_definition] = STATE(189), + [sym_acronym_reference] = STATE(189), + [sym_theorem_definition] = STATE(189), + [sym_color_reference] = STATE(189), + [sym_color_definition] = STATE(189), + [sym_color_set_definition] = STATE(189), + [sym_pgf_library_import] = STATE(189), + [sym_tikz_library_import] = STATE(189), + [sym_generic_command] = STATE(189), + [aux_sym_document_repeat1] = STATE(189), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1957), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1959), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1961), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [245] = { + [sym__simple_content] = STATE(6), + [sym__content] = STATE(6), + [sym_part] = STATE(6), + [sym_chapter] = STATE(6), + [sym_section] = STATE(6), + [sym_subsection] = STATE(6), + [sym_subsubsection] = STATE(6), + [sym_paragraph] = STATE(6), + [sym_subparagraph] = STATE(6), + [sym_enum_item] = STATE(6), + [sym_brace_group] = STATE(6), + [sym_mixed_group] = STATE(6), + [sym_text] = STATE(6), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(6), + [sym_inline_formula] = STATE(6), + [sym_begin] = STATE(52), + [sym_environment] = STATE(6), + [sym_caption] = STATE(6), + [sym_citation] = STATE(6), + [sym_package_include] = STATE(6), + [sym_class_include] = STATE(6), + [sym_latex_include] = STATE(6), + [sym_latex_input] = STATE(6), + [sym_biblatex_include] = STATE(6), + [sym_bibtex_include] = STATE(6), + [sym_graphics_include] = STATE(6), + [sym_svg_include] = STATE(6), + [sym_inkscape_include] = STATE(6), + [sym_verbatim_include] = STATE(6), + [sym_import] = STATE(6), + [sym_label_definition] = STATE(6), + [sym_label_reference] = STATE(6), + [sym_equation_label_reference] = STATE(6), + [sym_label_reference_range] = STATE(6), + [sym_label_number] = STATE(6), + [sym_command_definition] = STATE(6), + [sym_math_operator] = STATE(6), + [sym_glossary_entry_definition] = STATE(6), + [sym_glossary_entry_reference] = STATE(6), + [sym_acronym_definition] = STATE(6), + [sym_acronym_reference] = STATE(6), + [sym_theorem_definition] = STATE(6), + [sym_color_reference] = STATE(6), + [sym_color_definition] = STATE(6), + [sym_color_set_definition] = STATE(6), + [sym_pgf_library_import] = STATE(6), + [sym_tikz_library_import] = STATE(6), + [sym_generic_command] = STATE(6), + [aux_sym_document_repeat1] = STATE(6), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1963), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(626), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [246] = { + [sym__simple_content] = STATE(243), + [sym__content] = STATE(243), + [sym_part] = STATE(243), + [sym_chapter] = STATE(243), + [sym_section] = STATE(243), + [sym_subsection] = STATE(243), + [sym_subsubsection] = STATE(243), + [sym_paragraph] = STATE(243), + [sym_subparagraph] = STATE(243), + [sym_enum_item] = STATE(243), + [sym_brace_group] = STATE(243), + [sym_mixed_group] = STATE(243), + [sym_text] = STATE(243), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(243), + [sym_inline_formula] = STATE(243), + [sym_begin] = STATE(52), + [sym_environment] = STATE(243), + [sym_caption] = STATE(243), + [sym_citation] = STATE(243), + [sym_package_include] = STATE(243), + [sym_class_include] = STATE(243), + [sym_latex_include] = STATE(243), + [sym_latex_input] = STATE(243), + [sym_biblatex_include] = STATE(243), + [sym_bibtex_include] = STATE(243), + [sym_graphics_include] = STATE(243), + [sym_svg_include] = STATE(243), + [sym_inkscape_include] = STATE(243), + [sym_verbatim_include] = STATE(243), + [sym_import] = STATE(243), + [sym_label_definition] = STATE(243), + [sym_label_reference] = STATE(243), + [sym_equation_label_reference] = STATE(243), + [sym_label_reference_range] = STATE(243), + [sym_label_number] = STATE(243), + [sym_command_definition] = STATE(243), + [sym_math_operator] = STATE(243), + [sym_glossary_entry_definition] = STATE(243), + [sym_glossary_entry_reference] = STATE(243), + [sym_acronym_definition] = STATE(243), + [sym_acronym_reference] = STATE(243), + [sym_theorem_definition] = STATE(243), + [sym_color_reference] = STATE(243), + [sym_color_definition] = STATE(243), + [sym_color_set_definition] = STATE(243), + [sym_pgf_library_import] = STATE(243), + [sym_tikz_library_import] = STATE(243), + [sym_generic_command] = STATE(243), + [aux_sym_document_repeat1] = STATE(243), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(9), + [aux_sym_chapter_token1] = ACTIONS(11), + [aux_sym_section_token1] = ACTIONS(13), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1965), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1967), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [247] = { + [sym__simple_content] = STATE(176), + [sym__content] = STATE(176), + [sym_part] = STATE(176), + [sym_chapter] = STATE(176), + [sym_section] = STATE(176), + [sym_subsection] = STATE(176), + [sym_subsubsection] = STATE(176), + [sym_paragraph] = STATE(176), + [sym_subparagraph] = STATE(176), + [sym_enum_item] = STATE(176), + [sym_brace_group] = STATE(176), + [sym_mixed_group] = STATE(176), + [sym_text] = STATE(176), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_begin] = STATE(66), + [sym_environment] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_latex_input] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_equation_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_command_definition] = STATE(176), + [sym_math_operator] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_pgf_library_import] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_generic_command] = STATE(176), + [aux_sym_document_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(127), + [aux_sym_chapter_token1] = ACTIONS(127), + [aux_sym_section_token1] = ACTIONS(127), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(125), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [248] = { + [sym__simple_content] = STATE(232), + [sym__content] = STATE(232), + [sym_part] = STATE(232), + [sym_chapter] = STATE(232), + [sym_section] = STATE(232), + [sym_subsection] = STATE(232), + [sym_subsubsection] = STATE(232), + [sym_paragraph] = STATE(232), + [sym_subparagraph] = STATE(232), + [sym_enum_item] = STATE(232), + [sym_brace_group] = STATE(232), + [sym_mixed_group] = STATE(232), + [sym_text] = STATE(232), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(232), + [sym_inline_formula] = STATE(232), + [sym_begin] = STATE(59), + [sym_environment] = STATE(232), + [sym_caption] = STATE(232), + [sym_citation] = STATE(232), + [sym_package_include] = STATE(232), + [sym_class_include] = STATE(232), + [sym_latex_include] = STATE(232), + [sym_latex_input] = STATE(232), + [sym_biblatex_include] = STATE(232), + [sym_bibtex_include] = STATE(232), + [sym_graphics_include] = STATE(232), + [sym_svg_include] = STATE(232), + [sym_inkscape_include] = STATE(232), + [sym_verbatim_include] = STATE(232), + [sym_import] = STATE(232), + [sym_label_definition] = STATE(232), + [sym_label_reference] = STATE(232), + [sym_equation_label_reference] = STATE(232), + [sym_label_reference_range] = STATE(232), + [sym_label_number] = STATE(232), + [sym_command_definition] = STATE(232), + [sym_math_operator] = STATE(232), + [sym_glossary_entry_definition] = STATE(232), + [sym_glossary_entry_reference] = STATE(232), + [sym_acronym_definition] = STATE(232), + [sym_acronym_reference] = STATE(232), + [sym_theorem_definition] = STATE(232), + [sym_color_reference] = STATE(232), + [sym_color_definition] = STATE(232), + [sym_color_set_definition] = STATE(232), + [sym_pgf_library_import] = STATE(232), + [sym_tikz_library_import] = STATE(232), + [sym_generic_command] = STATE(232), + [aux_sym_document_repeat1] = STATE(232), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(284), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(1969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1971), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1973), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [249] = { + [sym__simple_content] = STATE(251), + [sym_subsection] = STATE(251), + [sym_subsubsection] = STATE(251), + [sym_paragraph] = STATE(251), + [sym_subparagraph] = STATE(251), + [sym_enum_item] = STATE(251), + [sym_brace_group] = STATE(251), + [sym_mixed_group] = STATE(251), + [sym_text] = STATE(251), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(251), + [sym_inline_formula] = STATE(251), + [sym_begin] = STATE(52), + [sym_environment] = STATE(251), + [sym_caption] = STATE(251), + [sym_citation] = STATE(251), + [sym_package_include] = STATE(251), + [sym_class_include] = STATE(251), + [sym_latex_include] = STATE(251), + [sym_latex_input] = STATE(251), + [sym_biblatex_include] = STATE(251), + [sym_bibtex_include] = STATE(251), + [sym_graphics_include] = STATE(251), + [sym_svg_include] = STATE(251), + [sym_inkscape_include] = STATE(251), + [sym_verbatim_include] = STATE(251), + [sym_import] = STATE(251), + [sym_label_definition] = STATE(251), + [sym_label_reference] = STATE(251), + [sym_equation_label_reference] = STATE(251), + [sym_label_reference_range] = STATE(251), + [sym_label_number] = STATE(251), + [sym_command_definition] = STATE(251), + [sym_math_operator] = STATE(251), + [sym_glossary_entry_definition] = STATE(251), + [sym_glossary_entry_reference] = STATE(251), + [sym_acronym_definition] = STATE(251), + [sym_acronym_reference] = STATE(251), + [sym_theorem_definition] = STATE(251), + [sym_color_reference] = STATE(251), + [sym_color_definition] = STATE(251), + [sym_color_set_definition] = STATE(251), + [sym_pgf_library_import] = STATE(251), + [sym_tikz_library_import] = STATE(251), + [sym_generic_command] = STATE(251), + [aux_sym_section_repeat1] = STATE(251), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(1975), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1977), + [aux_sym_chapter_token1] = ACTIONS(1977), + [aux_sym_section_token1] = ACTIONS(1977), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1979), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [250] = { + [sym__simple_content] = STATE(249), + [sym_subsection] = STATE(249), + [sym_subsubsection] = STATE(249), + [sym_paragraph] = STATE(249), + [sym_subparagraph] = STATE(249), + [sym_enum_item] = STATE(249), + [sym_brace_group] = STATE(249), + [sym_mixed_group] = STATE(249), + [sym_text] = STATE(249), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(249), + [sym_inline_formula] = STATE(249), + [sym_begin] = STATE(52), + [sym_environment] = STATE(249), + [sym_caption] = STATE(249), + [sym_citation] = STATE(249), + [sym_package_include] = STATE(249), + [sym_class_include] = STATE(249), + [sym_latex_include] = STATE(249), + [sym_latex_input] = STATE(249), + [sym_biblatex_include] = STATE(249), + [sym_bibtex_include] = STATE(249), + [sym_graphics_include] = STATE(249), + [sym_svg_include] = STATE(249), + [sym_inkscape_include] = STATE(249), + [sym_verbatim_include] = STATE(249), + [sym_import] = STATE(249), + [sym_label_definition] = STATE(249), + [sym_label_reference] = STATE(249), + [sym_equation_label_reference] = STATE(249), + [sym_label_reference_range] = STATE(249), + [sym_label_number] = STATE(249), + [sym_command_definition] = STATE(249), + [sym_math_operator] = STATE(249), + [sym_glossary_entry_definition] = STATE(249), + [sym_glossary_entry_reference] = STATE(249), + [sym_acronym_definition] = STATE(249), + [sym_acronym_reference] = STATE(249), + [sym_theorem_definition] = STATE(249), + [sym_color_reference] = STATE(249), + [sym_color_definition] = STATE(249), + [sym_color_set_definition] = STATE(249), + [sym_pgf_library_import] = STATE(249), + [sym_tikz_library_import] = STATE(249), + [sym_generic_command] = STATE(249), + [aux_sym_section_repeat1] = STATE(249), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(1981), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1983), + [aux_sym_chapter_token1] = ACTIONS(1983), + [aux_sym_section_token1] = ACTIONS(1983), + [aux_sym_subsection_token1] = ACTIONS(15), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(1981), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(1985), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [251] = { + [sym__simple_content] = STATE(251), + [sym_subsection] = STATE(251), + [sym_subsubsection] = STATE(251), + [sym_paragraph] = STATE(251), + [sym_subparagraph] = STATE(251), + [sym_enum_item] = STATE(251), + [sym_brace_group] = STATE(251), + [sym_mixed_group] = STATE(251), + [sym_text] = STATE(251), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(251), + [sym_inline_formula] = STATE(251), + [sym_begin] = STATE(52), + [sym_environment] = STATE(251), + [sym_caption] = STATE(251), + [sym_citation] = STATE(251), + [sym_package_include] = STATE(251), + [sym_class_include] = STATE(251), + [sym_latex_include] = STATE(251), + [sym_latex_input] = STATE(251), + [sym_biblatex_include] = STATE(251), + [sym_bibtex_include] = STATE(251), + [sym_graphics_include] = STATE(251), + [sym_svg_include] = STATE(251), + [sym_inkscape_include] = STATE(251), + [sym_verbatim_include] = STATE(251), + [sym_import] = STATE(251), + [sym_label_definition] = STATE(251), + [sym_label_reference] = STATE(251), + [sym_equation_label_reference] = STATE(251), + [sym_label_reference_range] = STATE(251), + [sym_label_number] = STATE(251), + [sym_command_definition] = STATE(251), + [sym_math_operator] = STATE(251), + [sym_glossary_entry_definition] = STATE(251), + [sym_glossary_entry_reference] = STATE(251), + [sym_acronym_definition] = STATE(251), + [sym_acronym_reference] = STATE(251), + [sym_theorem_definition] = STATE(251), + [sym_color_reference] = STATE(251), + [sym_color_definition] = STATE(251), + [sym_color_set_definition] = STATE(251), + [sym_pgf_library_import] = STATE(251), + [sym_tikz_library_import] = STATE(251), + [sym_generic_command] = STATE(251), + [aux_sym_section_repeat1] = STATE(251), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(1987), + [sym_generic_command_name] = ACTIONS(1989), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1992), + [aux_sym_chapter_token1] = ACTIONS(1992), + [aux_sym_section_token1] = ACTIONS(1992), + [aux_sym_subsection_token1] = ACTIONS(1994), + [aux_sym_subsubsection_token1] = ACTIONS(1997), + [aux_sym_paragraph_token1] = ACTIONS(2000), + [aux_sym_subparagraph_token1] = ACTIONS(2003), + [anon_sym_BSLASHitem] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_RBRACK] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_RPAREN] = ACTIONS(1987), + [anon_sym_COMMA] = ACTIONS(2015), + [anon_sym_EQ] = ACTIONS(2015), + [sym_word] = ACTIONS(2015), + [sym_param] = ACTIONS(2018), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2021), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2021), + [anon_sym_DOLLAR] = ACTIONS(2024), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2027), + [anon_sym_BSLASHbegin] = ACTIONS(2030), + [anon_sym_BSLASHcaption] = ACTIONS(2033), + [anon_sym_BSLASHcite] = ACTIONS(2036), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2039), + [anon_sym_BSLASHCite] = ACTIONS(2036), + [anon_sym_BSLASHnocite] = ACTIONS(2036), + [anon_sym_BSLASHcitet] = ACTIONS(2036), + [anon_sym_BSLASHcitep] = ACTIONS(2036), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2039), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2039), + [anon_sym_BSLASHciteauthor] = ACTIONS(2036), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2039), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2036), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2039), + [anon_sym_BSLASHcitetitle] = ACTIONS(2036), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2039), + [anon_sym_BSLASHciteyear] = ACTIONS(2036), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2039), + [anon_sym_BSLASHcitedate] = ACTIONS(2036), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2039), + [anon_sym_BSLASHciteurl] = ACTIONS(2036), + [anon_sym_BSLASHfullcite] = ACTIONS(2036), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2036), + [anon_sym_BSLASHcitealt] = ACTIONS(2036), + [anon_sym_BSLASHcitealp] = ACTIONS(2036), + [anon_sym_BSLASHcitetext] = ACTIONS(2036), + [anon_sym_BSLASHparencite] = ACTIONS(2036), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2039), + [anon_sym_BSLASHParencite] = ACTIONS(2036), + [anon_sym_BSLASHfootcite] = ACTIONS(2036), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2036), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2036), + [anon_sym_BSLASHtextcite] = ACTIONS(2036), + [anon_sym_BSLASHTextcite] = ACTIONS(2036), + [anon_sym_BSLASHsmartcite] = ACTIONS(2036), + [anon_sym_BSLASHSmartcite] = ACTIONS(2036), + [anon_sym_BSLASHsupercite] = ACTIONS(2036), + [anon_sym_BSLASHautocite] = ACTIONS(2036), + [anon_sym_BSLASHAutocite] = ACTIONS(2036), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2039), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2039), + [anon_sym_BSLASHvolcite] = ACTIONS(2036), + [anon_sym_BSLASHVolcite] = ACTIONS(2036), + [anon_sym_BSLASHpvolcite] = ACTIONS(2036), + [anon_sym_BSLASHPvolcite] = ACTIONS(2036), + [anon_sym_BSLASHfvolcite] = ACTIONS(2036), + [anon_sym_BSLASHftvolcite] = ACTIONS(2036), + [anon_sym_BSLASHsvolcite] = ACTIONS(2036), + [anon_sym_BSLASHSvolcite] = ACTIONS(2036), + [anon_sym_BSLASHtvolcite] = ACTIONS(2036), + [anon_sym_BSLASHTvolcite] = ACTIONS(2036), + [anon_sym_BSLASHavolcite] = ACTIONS(2036), + [anon_sym_BSLASHAvolcite] = ACTIONS(2036), + [anon_sym_BSLASHnotecite] = ACTIONS(2036), + [anon_sym_BSLASHpnotecite] = ACTIONS(2036), + [anon_sym_BSLASHPnotecite] = ACTIONS(2036), + [anon_sym_BSLASHfnotecite] = ACTIONS(2036), + [anon_sym_BSLASHusepackage] = ACTIONS(2042), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2042), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2045), + [anon_sym_BSLASHinclude] = ACTIONS(2048), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2048), + [anon_sym_BSLASHinput] = ACTIONS(2051), + [anon_sym_BSLASHsubfile] = ACTIONS(2051), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2054), + [anon_sym_BSLASHbibliography] = ACTIONS(2057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2060), + [anon_sym_BSLASHincludesvg] = ACTIONS(2063), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2066), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2069), + [anon_sym_BSLASHimport] = ACTIONS(2072), + [anon_sym_BSLASHsubimport] = ACTIONS(2072), + [anon_sym_BSLASHinputfrom] = ACTIONS(2072), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2072), + [anon_sym_BSLASHincludefrom] = ACTIONS(2072), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2072), + [anon_sym_BSLASHlabel] = ACTIONS(2075), + [anon_sym_BSLASHref] = ACTIONS(2078), + [anon_sym_BSLASHvref] = ACTIONS(2078), + [anon_sym_BSLASHVref] = ACTIONS(2078), + [anon_sym_BSLASHautoref] = ACTIONS(2078), + [anon_sym_BSLASHpageref] = ACTIONS(2078), + [anon_sym_BSLASHcref] = ACTIONS(2078), + [anon_sym_BSLASHCref] = ACTIONS(2078), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2081), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2081), + [anon_sym_BSLASHnamecref] = ACTIONS(2078), + [anon_sym_BSLASHnameCref] = ACTIONS(2078), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2078), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2078), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2078), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2078), + [anon_sym_BSLASHlabelcref] = ACTIONS(2078), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2078), + [anon_sym_BSLASHeqref] = ACTIONS(2084), + [anon_sym_BSLASHcrefrange] = ACTIONS(2087), + [anon_sym_BSLASHCrefrange] = ACTIONS(2087), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2090), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2090), + [anon_sym_BSLASHnewlabel] = ACTIONS(2093), + [anon_sym_BSLASHnewcommand] = ACTIONS(2096), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2096), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2096), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2099), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2102), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2105), + [anon_sym_BSLASHgls] = ACTIONS(2108), + [anon_sym_BSLASHGls] = ACTIONS(2108), + [anon_sym_BSLASHGLS] = ACTIONS(2108), + [anon_sym_BSLASHglspl] = ACTIONS(2108), + [anon_sym_BSLASHGlspl] = ACTIONS(2108), + [anon_sym_BSLASHGLSpl] = ACTIONS(2108), + [anon_sym_BSLASHglsdisp] = ACTIONS(2108), + [anon_sym_BSLASHglslink] = ACTIONS(2108), + [anon_sym_BSLASHglstext] = ACTIONS(2108), + [anon_sym_BSLASHGlstext] = ACTIONS(2108), + [anon_sym_BSLASHGLStext] = ACTIONS(2108), + [anon_sym_BSLASHglsfirst] = ACTIONS(2108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2108), + [anon_sym_BSLASHglsplural] = ACTIONS(2108), + [anon_sym_BSLASHGlsplural] = ACTIONS(2108), + [anon_sym_BSLASHGLSplural] = ACTIONS(2108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2108), + [anon_sym_BSLASHglsname] = ACTIONS(2108), + [anon_sym_BSLASHGlsname] = ACTIONS(2108), + [anon_sym_BSLASHGLSname] = ACTIONS(2108), + [anon_sym_BSLASHglssymbol] = ACTIONS(2108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2108), + [anon_sym_BSLASHglsdesc] = ACTIONS(2108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2108), + [anon_sym_BSLASHglsuseri] = ACTIONS(2108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2108), + [anon_sym_BSLASHglsuserii] = ACTIONS(2108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2108), + [anon_sym_BSLASHglsuserv] = ACTIONS(2108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2108), + [anon_sym_BSLASHglsuservi] = ACTIONS(2108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2108), + [anon_sym_BSLASHnewacronym] = ACTIONS(2111), + [anon_sym_BSLASHacrshort] = ACTIONS(2114), + [anon_sym_BSLASHAcrshort] = ACTIONS(2114), + [anon_sym_BSLASHACRshort] = ACTIONS(2114), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2114), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2114), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2114), + [anon_sym_BSLASHacrlong] = ACTIONS(2114), + [anon_sym_BSLASHAcrlong] = ACTIONS(2114), + [anon_sym_BSLASHACRlong] = ACTIONS(2114), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2114), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2114), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2114), + [anon_sym_BSLASHacrfull] = ACTIONS(2114), + [anon_sym_BSLASHAcrfull] = ACTIONS(2114), + [anon_sym_BSLASHACRfull] = ACTIONS(2114), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2114), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2114), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2114), + [anon_sym_BSLASHacs] = ACTIONS(2114), + [anon_sym_BSLASHAcs] = ACTIONS(2114), + [anon_sym_BSLASHacsp] = ACTIONS(2114), + [anon_sym_BSLASHAcsp] = ACTIONS(2114), + [anon_sym_BSLASHacl] = ACTIONS(2114), + [anon_sym_BSLASHAcl] = ACTIONS(2114), + [anon_sym_BSLASHaclp] = ACTIONS(2114), + [anon_sym_BSLASHAclp] = ACTIONS(2114), + [anon_sym_BSLASHacf] = ACTIONS(2114), + [anon_sym_BSLASHAcf] = ACTIONS(2114), + [anon_sym_BSLASHacfp] = ACTIONS(2114), + [anon_sym_BSLASHAcfp] = ACTIONS(2114), + [anon_sym_BSLASHac] = ACTIONS(2114), + [anon_sym_BSLASHAc] = ACTIONS(2114), + [anon_sym_BSLASHacp] = ACTIONS(2114), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2114), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2114), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2114), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2114), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2114), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2114), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2114), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2114), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2114), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2114), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2117), + [anon_sym_BSLASHcolor] = ACTIONS(2120), + [anon_sym_BSLASHcolorbox] = ACTIONS(2120), + [anon_sym_BSLASHtextcolor] = ACTIONS(2120), + [anon_sym_BSLASHpagecolor] = ACTIONS(2120), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2126), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2129), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2132), + }, + [252] = { + [sym__simple_content] = STATE(252), + [sym_subsubsection] = STATE(252), + [sym_paragraph] = STATE(252), + [sym_subparagraph] = STATE(252), + [sym_enum_item] = STATE(252), + [sym_brace_group] = STATE(252), + [sym_mixed_group] = STATE(252), + [sym_text] = STATE(252), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(252), + [sym_inline_formula] = STATE(252), + [sym_begin] = STATE(52), + [sym_environment] = STATE(252), + [sym_caption] = STATE(252), + [sym_citation] = STATE(252), + [sym_package_include] = STATE(252), + [sym_class_include] = STATE(252), + [sym_latex_include] = STATE(252), + [sym_latex_input] = STATE(252), + [sym_biblatex_include] = STATE(252), + [sym_bibtex_include] = STATE(252), + [sym_graphics_include] = STATE(252), + [sym_svg_include] = STATE(252), + [sym_inkscape_include] = STATE(252), + [sym_verbatim_include] = STATE(252), + [sym_import] = STATE(252), + [sym_label_definition] = STATE(252), + [sym_label_reference] = STATE(252), + [sym_equation_label_reference] = STATE(252), + [sym_label_reference_range] = STATE(252), + [sym_label_number] = STATE(252), + [sym_command_definition] = STATE(252), + [sym_math_operator] = STATE(252), + [sym_glossary_entry_definition] = STATE(252), + [sym_glossary_entry_reference] = STATE(252), + [sym_acronym_definition] = STATE(252), + [sym_acronym_reference] = STATE(252), + [sym_theorem_definition] = STATE(252), + [sym_color_reference] = STATE(252), + [sym_color_definition] = STATE(252), + [sym_color_set_definition] = STATE(252), + [sym_pgf_library_import] = STATE(252), + [sym_tikz_library_import] = STATE(252), + [sym_generic_command] = STATE(252), + [aux_sym_subsection_repeat1] = STATE(252), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(2135), + [sym_generic_command_name] = ACTIONS(2137), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2140), + [aux_sym_chapter_token1] = ACTIONS(2140), + [aux_sym_section_token1] = ACTIONS(2140), + [aux_sym_subsection_token1] = ACTIONS(2140), + [aux_sym_subsubsection_token1] = ACTIONS(2142), + [aux_sym_paragraph_token1] = ACTIONS(2145), + [aux_sym_subparagraph_token1] = ACTIONS(2148), + [anon_sym_BSLASHitem] = ACTIONS(2151), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_RBRACK] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2135), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_EQ] = ACTIONS(2160), + [sym_word] = ACTIONS(2160), + [sym_param] = ACTIONS(2163), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2166), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2166), + [anon_sym_DOLLAR] = ACTIONS(2169), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2172), + [anon_sym_BSLASHbegin] = ACTIONS(2175), + [anon_sym_BSLASHcaption] = ACTIONS(2178), + [anon_sym_BSLASHcite] = ACTIONS(2181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2184), + [anon_sym_BSLASHCite] = ACTIONS(2181), + [anon_sym_BSLASHnocite] = ACTIONS(2181), + [anon_sym_BSLASHcitet] = ACTIONS(2181), + [anon_sym_BSLASHcitep] = ACTIONS(2181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2184), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2184), + [anon_sym_BSLASHciteauthor] = ACTIONS(2181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2184), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2184), + [anon_sym_BSLASHcitetitle] = ACTIONS(2181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2184), + [anon_sym_BSLASHciteyear] = ACTIONS(2181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2184), + [anon_sym_BSLASHcitedate] = ACTIONS(2181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2184), + [anon_sym_BSLASHciteurl] = ACTIONS(2181), + [anon_sym_BSLASHfullcite] = ACTIONS(2181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2181), + [anon_sym_BSLASHcitealt] = ACTIONS(2181), + [anon_sym_BSLASHcitealp] = ACTIONS(2181), + [anon_sym_BSLASHcitetext] = ACTIONS(2181), + [anon_sym_BSLASHparencite] = ACTIONS(2181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2184), + [anon_sym_BSLASHParencite] = ACTIONS(2181), + [anon_sym_BSLASHfootcite] = ACTIONS(2181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2181), + [anon_sym_BSLASHtextcite] = ACTIONS(2181), + [anon_sym_BSLASHTextcite] = ACTIONS(2181), + [anon_sym_BSLASHsmartcite] = ACTIONS(2181), + [anon_sym_BSLASHSmartcite] = ACTIONS(2181), + [anon_sym_BSLASHsupercite] = ACTIONS(2181), + [anon_sym_BSLASHautocite] = ACTIONS(2181), + [anon_sym_BSLASHAutocite] = ACTIONS(2181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2184), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2184), + [anon_sym_BSLASHvolcite] = ACTIONS(2181), + [anon_sym_BSLASHVolcite] = ACTIONS(2181), + [anon_sym_BSLASHpvolcite] = ACTIONS(2181), + [anon_sym_BSLASHPvolcite] = ACTIONS(2181), + [anon_sym_BSLASHfvolcite] = ACTIONS(2181), + [anon_sym_BSLASHftvolcite] = ACTIONS(2181), + [anon_sym_BSLASHsvolcite] = ACTIONS(2181), + [anon_sym_BSLASHSvolcite] = ACTIONS(2181), + [anon_sym_BSLASHtvolcite] = ACTIONS(2181), + [anon_sym_BSLASHTvolcite] = ACTIONS(2181), + [anon_sym_BSLASHavolcite] = ACTIONS(2181), + [anon_sym_BSLASHAvolcite] = ACTIONS(2181), + [anon_sym_BSLASHnotecite] = ACTIONS(2181), + [anon_sym_BSLASHpnotecite] = ACTIONS(2181), + [anon_sym_BSLASHPnotecite] = ACTIONS(2181), + [anon_sym_BSLASHfnotecite] = ACTIONS(2181), + [anon_sym_BSLASHusepackage] = ACTIONS(2187), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2187), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2190), + [anon_sym_BSLASHinclude] = ACTIONS(2193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2193), + [anon_sym_BSLASHinput] = ACTIONS(2196), + [anon_sym_BSLASHsubfile] = ACTIONS(2196), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2199), + [anon_sym_BSLASHbibliography] = ACTIONS(2202), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2205), + [anon_sym_BSLASHincludesvg] = ACTIONS(2208), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2211), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2214), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2214), + [anon_sym_BSLASHimport] = ACTIONS(2217), + [anon_sym_BSLASHsubimport] = ACTIONS(2217), + [anon_sym_BSLASHinputfrom] = ACTIONS(2217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2217), + [anon_sym_BSLASHincludefrom] = ACTIONS(2217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2217), + [anon_sym_BSLASHlabel] = ACTIONS(2220), + [anon_sym_BSLASHref] = ACTIONS(2223), + [anon_sym_BSLASHvref] = ACTIONS(2223), + [anon_sym_BSLASHVref] = ACTIONS(2223), + [anon_sym_BSLASHautoref] = ACTIONS(2223), + [anon_sym_BSLASHpageref] = ACTIONS(2223), + [anon_sym_BSLASHcref] = ACTIONS(2223), + [anon_sym_BSLASHCref] = ACTIONS(2223), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2226), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2226), + [anon_sym_BSLASHnamecref] = ACTIONS(2223), + [anon_sym_BSLASHnameCref] = ACTIONS(2223), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2223), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2223), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2223), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2223), + [anon_sym_BSLASHlabelcref] = ACTIONS(2223), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2223), + [anon_sym_BSLASHeqref] = ACTIONS(2229), + [anon_sym_BSLASHcrefrange] = ACTIONS(2232), + [anon_sym_BSLASHCrefrange] = ACTIONS(2232), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2235), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2235), + [anon_sym_BSLASHnewlabel] = ACTIONS(2238), + [anon_sym_BSLASHnewcommand] = ACTIONS(2241), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2241), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2241), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2244), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2247), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2250), + [anon_sym_BSLASHgls] = ACTIONS(2253), + [anon_sym_BSLASHGls] = ACTIONS(2253), + [anon_sym_BSLASHGLS] = ACTIONS(2253), + [anon_sym_BSLASHglspl] = ACTIONS(2253), + [anon_sym_BSLASHGlspl] = ACTIONS(2253), + [anon_sym_BSLASHGLSpl] = ACTIONS(2253), + [anon_sym_BSLASHglsdisp] = ACTIONS(2253), + [anon_sym_BSLASHglslink] = ACTIONS(2253), + [anon_sym_BSLASHglstext] = ACTIONS(2253), + [anon_sym_BSLASHGlstext] = ACTIONS(2253), + [anon_sym_BSLASHGLStext] = ACTIONS(2253), + [anon_sym_BSLASHglsfirst] = ACTIONS(2253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2253), + [anon_sym_BSLASHglsplural] = ACTIONS(2253), + [anon_sym_BSLASHGlsplural] = ACTIONS(2253), + [anon_sym_BSLASHGLSplural] = ACTIONS(2253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2253), + [anon_sym_BSLASHglsname] = ACTIONS(2253), + [anon_sym_BSLASHGlsname] = ACTIONS(2253), + [anon_sym_BSLASHGLSname] = ACTIONS(2253), + [anon_sym_BSLASHglssymbol] = ACTIONS(2253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2253), + [anon_sym_BSLASHglsdesc] = ACTIONS(2253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2253), + [anon_sym_BSLASHglsuseri] = ACTIONS(2253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2253), + [anon_sym_BSLASHglsuserii] = ACTIONS(2253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2253), + [anon_sym_BSLASHglsuserv] = ACTIONS(2253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2253), + [anon_sym_BSLASHglsuservi] = ACTIONS(2253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2253), + [anon_sym_BSLASHnewacronym] = ACTIONS(2256), + [anon_sym_BSLASHacrshort] = ACTIONS(2259), + [anon_sym_BSLASHAcrshort] = ACTIONS(2259), + [anon_sym_BSLASHACRshort] = ACTIONS(2259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2259), + [anon_sym_BSLASHacrlong] = ACTIONS(2259), + [anon_sym_BSLASHAcrlong] = ACTIONS(2259), + [anon_sym_BSLASHACRlong] = ACTIONS(2259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2259), + [anon_sym_BSLASHacrfull] = ACTIONS(2259), + [anon_sym_BSLASHAcrfull] = ACTIONS(2259), + [anon_sym_BSLASHACRfull] = ACTIONS(2259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2259), + [anon_sym_BSLASHacs] = ACTIONS(2259), + [anon_sym_BSLASHAcs] = ACTIONS(2259), + [anon_sym_BSLASHacsp] = ACTIONS(2259), + [anon_sym_BSLASHAcsp] = ACTIONS(2259), + [anon_sym_BSLASHacl] = ACTIONS(2259), + [anon_sym_BSLASHAcl] = ACTIONS(2259), + [anon_sym_BSLASHaclp] = ACTIONS(2259), + [anon_sym_BSLASHAclp] = ACTIONS(2259), + [anon_sym_BSLASHacf] = ACTIONS(2259), + [anon_sym_BSLASHAcf] = ACTIONS(2259), + [anon_sym_BSLASHacfp] = ACTIONS(2259), + [anon_sym_BSLASHAcfp] = ACTIONS(2259), + [anon_sym_BSLASHac] = ACTIONS(2259), + [anon_sym_BSLASHAc] = ACTIONS(2259), + [anon_sym_BSLASHacp] = ACTIONS(2259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2262), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2262), + [anon_sym_BSLASHcolor] = ACTIONS(2265), + [anon_sym_BSLASHcolorbox] = ACTIONS(2265), + [anon_sym_BSLASHtextcolor] = ACTIONS(2265), + [anon_sym_BSLASHpagecolor] = ACTIONS(2265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2268), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2274), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2277), + }, + [253] = { + [sym__simple_content] = STATE(263), + [sym_chapter] = STATE(263), + [sym_section] = STATE(263), + [sym_subsection] = STATE(263), + [sym_subsubsection] = STATE(263), + [sym_paragraph] = STATE(263), + [sym_subparagraph] = STATE(263), + [sym_enum_item] = STATE(263), + [sym_brace_group] = STATE(263), + [sym_mixed_group] = STATE(263), + [sym_text] = STATE(263), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(263), + [sym_inline_formula] = STATE(263), + [sym_begin] = STATE(59), + [sym_environment] = STATE(263), + [sym_caption] = STATE(263), + [sym_citation] = STATE(263), + [sym_package_include] = STATE(263), + [sym_class_include] = STATE(263), + [sym_latex_include] = STATE(263), + [sym_latex_input] = STATE(263), + [sym_biblatex_include] = STATE(263), + [sym_bibtex_include] = STATE(263), + [sym_graphics_include] = STATE(263), + [sym_svg_include] = STATE(263), + [sym_inkscape_include] = STATE(263), + [sym_verbatim_include] = STATE(263), + [sym_import] = STATE(263), + [sym_label_definition] = STATE(263), + [sym_label_reference] = STATE(263), + [sym_equation_label_reference] = STATE(263), + [sym_label_reference_range] = STATE(263), + [sym_label_number] = STATE(263), + [sym_command_definition] = STATE(263), + [sym_math_operator] = STATE(263), + [sym_glossary_entry_definition] = STATE(263), + [sym_glossary_entry_reference] = STATE(263), + [sym_acronym_definition] = STATE(263), + [sym_acronym_reference] = STATE(263), + [sym_theorem_definition] = STATE(263), + [sym_color_reference] = STATE(263), + [sym_color_definition] = STATE(263), + [sym_color_set_definition] = STATE(263), + [sym_pgf_library_import] = STATE(263), + [sym_tikz_library_import] = STATE(263), + [sym_generic_command] = STATE(263), + [aux_sym_part_repeat1] = STATE(263), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(892), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(2280), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(890), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [254] = { + [sym__simple_content] = STATE(253), + [sym_chapter] = STATE(253), + [sym_section] = STATE(253), + [sym_subsection] = STATE(253), + [sym_subsubsection] = STATE(253), + [sym_paragraph] = STATE(253), + [sym_subparagraph] = STATE(253), + [sym_enum_item] = STATE(253), + [sym_brace_group] = STATE(253), + [sym_mixed_group] = STATE(253), + [sym_text] = STATE(253), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(253), + [sym_inline_formula] = STATE(253), + [sym_begin] = STATE(59), + [sym_environment] = STATE(253), + [sym_caption] = STATE(253), + [sym_citation] = STATE(253), + [sym_package_include] = STATE(253), + [sym_class_include] = STATE(253), + [sym_latex_include] = STATE(253), + [sym_latex_input] = STATE(253), + [sym_biblatex_include] = STATE(253), + [sym_bibtex_include] = STATE(253), + [sym_graphics_include] = STATE(253), + [sym_svg_include] = STATE(253), + [sym_inkscape_include] = STATE(253), + [sym_verbatim_include] = STATE(253), + [sym_import] = STATE(253), + [sym_label_definition] = STATE(253), + [sym_label_reference] = STATE(253), + [sym_equation_label_reference] = STATE(253), + [sym_label_reference_range] = STATE(253), + [sym_label_number] = STATE(253), + [sym_command_definition] = STATE(253), + [sym_math_operator] = STATE(253), + [sym_glossary_entry_definition] = STATE(253), + [sym_glossary_entry_reference] = STATE(253), + [sym_acronym_definition] = STATE(253), + [sym_acronym_reference] = STATE(253), + [sym_theorem_definition] = STATE(253), + [sym_color_reference] = STATE(253), + [sym_color_definition] = STATE(253), + [sym_color_set_definition] = STATE(253), + [sym_pgf_library_import] = STATE(253), + [sym_tikz_library_import] = STATE(253), + [sym_generic_command] = STATE(253), + [aux_sym_part_repeat1] = STATE(253), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(608), + [aux_sym_chapter_token1] = ACTIONS(286), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(2282), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(606), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [255] = { + [sym__simple_content] = STATE(256), + [sym_subsubsection] = STATE(256), + [sym_paragraph] = STATE(256), + [sym_subparagraph] = STATE(256), + [sym_enum_item] = STATE(256), + [sym_brace_group] = STATE(256), + [sym_mixed_group] = STATE(256), + [sym_text] = STATE(256), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(256), + [sym_inline_formula] = STATE(256), + [sym_begin] = STATE(52), + [sym_environment] = STATE(256), + [sym_caption] = STATE(256), + [sym_citation] = STATE(256), + [sym_package_include] = STATE(256), + [sym_class_include] = STATE(256), + [sym_latex_include] = STATE(256), + [sym_latex_input] = STATE(256), + [sym_biblatex_include] = STATE(256), + [sym_bibtex_include] = STATE(256), + [sym_graphics_include] = STATE(256), + [sym_svg_include] = STATE(256), + [sym_inkscape_include] = STATE(256), + [sym_verbatim_include] = STATE(256), + [sym_import] = STATE(256), + [sym_label_definition] = STATE(256), + [sym_label_reference] = STATE(256), + [sym_equation_label_reference] = STATE(256), + [sym_label_reference_range] = STATE(256), + [sym_label_number] = STATE(256), + [sym_command_definition] = STATE(256), + [sym_math_operator] = STATE(256), + [sym_glossary_entry_definition] = STATE(256), + [sym_glossary_entry_reference] = STATE(256), + [sym_acronym_definition] = STATE(256), + [sym_acronym_reference] = STATE(256), + [sym_theorem_definition] = STATE(256), + [sym_color_reference] = STATE(256), + [sym_color_definition] = STATE(256), + [sym_color_set_definition] = STATE(256), + [sym_pgf_library_import] = STATE(256), + [sym_tikz_library_import] = STATE(256), + [sym_generic_command] = STATE(256), + [aux_sym_subsection_repeat1] = STATE(256), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(2284), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2286), + [aux_sym_chapter_token1] = ACTIONS(2286), + [aux_sym_section_token1] = ACTIONS(2286), + [aux_sym_subsection_token1] = ACTIONS(2286), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(2288), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [256] = { + [sym__simple_content] = STATE(252), + [sym_subsubsection] = STATE(252), + [sym_paragraph] = STATE(252), + [sym_subparagraph] = STATE(252), + [sym_enum_item] = STATE(252), + [sym_brace_group] = STATE(252), + [sym_mixed_group] = STATE(252), + [sym_text] = STATE(252), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(252), + [sym_inline_formula] = STATE(252), + [sym_begin] = STATE(52), + [sym_environment] = STATE(252), + [sym_caption] = STATE(252), + [sym_citation] = STATE(252), + [sym_package_include] = STATE(252), + [sym_class_include] = STATE(252), + [sym_latex_include] = STATE(252), + [sym_latex_input] = STATE(252), + [sym_biblatex_include] = STATE(252), + [sym_bibtex_include] = STATE(252), + [sym_graphics_include] = STATE(252), + [sym_svg_include] = STATE(252), + [sym_inkscape_include] = STATE(252), + [sym_verbatim_include] = STATE(252), + [sym_import] = STATE(252), + [sym_label_definition] = STATE(252), + [sym_label_reference] = STATE(252), + [sym_equation_label_reference] = STATE(252), + [sym_label_reference_range] = STATE(252), + [sym_label_number] = STATE(252), + [sym_command_definition] = STATE(252), + [sym_math_operator] = STATE(252), + [sym_glossary_entry_definition] = STATE(252), + [sym_glossary_entry_reference] = STATE(252), + [sym_acronym_definition] = STATE(252), + [sym_acronym_reference] = STATE(252), + [sym_theorem_definition] = STATE(252), + [sym_color_reference] = STATE(252), + [sym_color_definition] = STATE(252), + [sym_color_set_definition] = STATE(252), + [sym_pgf_library_import] = STATE(252), + [sym_tikz_library_import] = STATE(252), + [sym_generic_command] = STATE(252), + [aux_sym_subsection_repeat1] = STATE(252), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2292), + [aux_sym_chapter_token1] = ACTIONS(2292), + [aux_sym_section_token1] = ACTIONS(2292), + [aux_sym_subsection_token1] = ACTIONS(2292), + [aux_sym_subsubsection_token1] = ACTIONS(17), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(2290), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(2294), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [257] = { + [sym__simple_content] = STATE(260), + [sym_chapter] = STATE(260), + [sym_section] = STATE(260), + [sym_subsection] = STATE(260), + [sym_subsubsection] = STATE(260), + [sym_paragraph] = STATE(260), + [sym_subparagraph] = STATE(260), + [sym_enum_item] = STATE(260), + [sym_brace_group] = STATE(260), + [sym_mixed_group] = STATE(260), + [sym_text] = STATE(260), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(260), + [sym_inline_formula] = STATE(260), + [sym_begin] = STATE(73), + [sym_environment] = STATE(260), + [sym_caption] = STATE(260), + [sym_citation] = STATE(260), + [sym_package_include] = STATE(260), + [sym_class_include] = STATE(260), + [sym_latex_include] = STATE(260), + [sym_latex_input] = STATE(260), + [sym_biblatex_include] = STATE(260), + [sym_bibtex_include] = STATE(260), + [sym_graphics_include] = STATE(260), + [sym_svg_include] = STATE(260), + [sym_inkscape_include] = STATE(260), + [sym_verbatim_include] = STATE(260), + [sym_import] = STATE(260), + [sym_label_definition] = STATE(260), + [sym_label_reference] = STATE(260), + [sym_equation_label_reference] = STATE(260), + [sym_label_reference_range] = STATE(260), + [sym_label_number] = STATE(260), + [sym_command_definition] = STATE(260), + [sym_math_operator] = STATE(260), + [sym_glossary_entry_definition] = STATE(260), + [sym_glossary_entry_reference] = STATE(260), + [sym_acronym_definition] = STATE(260), + [sym_acronym_reference] = STATE(260), + [sym_theorem_definition] = STATE(260), + [sym_color_reference] = STATE(260), + [sym_color_definition] = STATE(260), + [sym_color_set_definition] = STATE(260), + [sym_pgf_library_import] = STATE(260), + [sym_tikz_library_import] = STATE(260), + [sym_generic_command] = STATE(260), + [aux_sym_part_repeat1] = STATE(260), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(608), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(2296), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(608), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [258] = { + [sym__simple_content] = STATE(261), + [sym_chapter] = STATE(261), + [sym_section] = STATE(261), + [sym_subsection] = STATE(261), + [sym_subsubsection] = STATE(261), + [sym_paragraph] = STATE(261), + [sym_subparagraph] = STATE(261), + [sym_enum_item] = STATE(261), + [sym_brace_group] = STATE(261), + [sym_mixed_group] = STATE(261), + [sym_text] = STATE(261), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(261), + [sym_inline_formula] = STATE(261), + [sym_begin] = STATE(86), + [sym_environment] = STATE(261), + [sym_caption] = STATE(261), + [sym_citation] = STATE(261), + [sym_package_include] = STATE(261), + [sym_class_include] = STATE(261), + [sym_latex_include] = STATE(261), + [sym_latex_input] = STATE(261), + [sym_biblatex_include] = STATE(261), + [sym_bibtex_include] = STATE(261), + [sym_graphics_include] = STATE(261), + [sym_svg_include] = STATE(261), + [sym_inkscape_include] = STATE(261), + [sym_verbatim_include] = STATE(261), + [sym_import] = STATE(261), + [sym_label_definition] = STATE(261), + [sym_label_reference] = STATE(261), + [sym_equation_label_reference] = STATE(261), + [sym_label_reference_range] = STATE(261), + [sym_label_number] = STATE(261), + [sym_command_definition] = STATE(261), + [sym_math_operator] = STATE(261), + [sym_glossary_entry_definition] = STATE(261), + [sym_glossary_entry_reference] = STATE(261), + [sym_acronym_definition] = STATE(261), + [sym_acronym_reference] = STATE(261), + [sym_theorem_definition] = STATE(261), + [sym_color_reference] = STATE(261), + [sym_color_definition] = STATE(261), + [sym_color_set_definition] = STATE(261), + [sym_pgf_library_import] = STATE(261), + [sym_tikz_library_import] = STATE(261), + [sym_generic_command] = STATE(261), + [aux_sym_part_repeat1] = STATE(261), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(2300), + [aux_sym_section_token1] = ACTIONS(2302), + [aux_sym_subsection_token1] = ACTIONS(2304), + [aux_sym_subsubsection_token1] = ACTIONS(2306), + [aux_sym_paragraph_token1] = ACTIONS(2308), + [aux_sym_subparagraph_token1] = ACTIONS(2310), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(2320), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [259] = { + [sym__simple_content] = STATE(259), + [sym_chapter] = STATE(259), + [sym_section] = STATE(259), + [sym_subsection] = STATE(259), + [sym_subsubsection] = STATE(259), + [sym_paragraph] = STATE(259), + [sym_subparagraph] = STATE(259), + [sym_enum_item] = STATE(259), + [sym_brace_group] = STATE(259), + [sym_mixed_group] = STATE(259), + [sym_text] = STATE(259), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(259), + [sym_inline_formula] = STATE(259), + [sym_begin] = STATE(86), + [sym_environment] = STATE(259), + [sym_caption] = STATE(259), + [sym_citation] = STATE(259), + [sym_package_include] = STATE(259), + [sym_class_include] = STATE(259), + [sym_latex_include] = STATE(259), + [sym_latex_input] = STATE(259), + [sym_biblatex_include] = STATE(259), + [sym_bibtex_include] = STATE(259), + [sym_graphics_include] = STATE(259), + [sym_svg_include] = STATE(259), + [sym_inkscape_include] = STATE(259), + [sym_verbatim_include] = STATE(259), + [sym_import] = STATE(259), + [sym_label_definition] = STATE(259), + [sym_label_reference] = STATE(259), + [sym_equation_label_reference] = STATE(259), + [sym_label_reference_range] = STATE(259), + [sym_label_number] = STATE(259), + [sym_command_definition] = STATE(259), + [sym_math_operator] = STATE(259), + [sym_glossary_entry_definition] = STATE(259), + [sym_glossary_entry_reference] = STATE(259), + [sym_acronym_definition] = STATE(259), + [sym_acronym_reference] = STATE(259), + [sym_theorem_definition] = STATE(259), + [sym_color_reference] = STATE(259), + [sym_color_definition] = STATE(259), + [sym_color_set_definition] = STATE(259), + [sym_pgf_library_import] = STATE(259), + [sym_tikz_library_import] = STATE(259), + [sym_generic_command] = STATE(259), + [aux_sym_part_repeat1] = STATE(259), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2396), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(2399), + [aux_sym_section_token1] = ACTIONS(2402), + [aux_sym_subsection_token1] = ACTIONS(2405), + [aux_sym_subsubsection_token1] = ACTIONS(2408), + [aux_sym_paragraph_token1] = ACTIONS(2411), + [aux_sym_subparagraph_token1] = ACTIONS(2414), + [anon_sym_BSLASHitem] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_RBRACK] = ACTIONS(696), + [anon_sym_LBRACE] = ACTIONS(2423), + [anon_sym_RBRACE] = ACTIONS(696), + [anon_sym_LPAREN] = ACTIONS(2420), + [anon_sym_COMMA] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(2426), + [sym_word] = ACTIONS(2426), + [sym_param] = ACTIONS(2429), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2432), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2432), + [anon_sym_DOLLAR] = ACTIONS(2435), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2438), + [anon_sym_BSLASHbegin] = ACTIONS(745), + [anon_sym_BSLASHcaption] = ACTIONS(2441), + [anon_sym_BSLASHcite] = ACTIONS(2444), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2447), + [anon_sym_BSLASHCite] = ACTIONS(2444), + [anon_sym_BSLASHnocite] = ACTIONS(2444), + [anon_sym_BSLASHcitet] = ACTIONS(2444), + [anon_sym_BSLASHcitep] = ACTIONS(2444), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2447), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2447), + [anon_sym_BSLASHciteauthor] = ACTIONS(2444), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2447), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2444), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2447), + [anon_sym_BSLASHcitetitle] = ACTIONS(2444), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2447), + [anon_sym_BSLASHciteyear] = ACTIONS(2444), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2447), + [anon_sym_BSLASHcitedate] = ACTIONS(2444), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2447), + [anon_sym_BSLASHciteurl] = ACTIONS(2444), + [anon_sym_BSLASHfullcite] = ACTIONS(2444), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2444), + [anon_sym_BSLASHcitealt] = ACTIONS(2444), + [anon_sym_BSLASHcitealp] = ACTIONS(2444), + [anon_sym_BSLASHcitetext] = ACTIONS(2444), + [anon_sym_BSLASHparencite] = ACTIONS(2444), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2447), + [anon_sym_BSLASHParencite] = ACTIONS(2444), + [anon_sym_BSLASHfootcite] = ACTIONS(2444), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2444), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2444), + [anon_sym_BSLASHtextcite] = ACTIONS(2444), + [anon_sym_BSLASHTextcite] = ACTIONS(2444), + [anon_sym_BSLASHsmartcite] = ACTIONS(2444), + [anon_sym_BSLASHSmartcite] = ACTIONS(2444), + [anon_sym_BSLASHsupercite] = ACTIONS(2444), + [anon_sym_BSLASHautocite] = ACTIONS(2444), + [anon_sym_BSLASHAutocite] = ACTIONS(2444), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2447), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2447), + [anon_sym_BSLASHvolcite] = ACTIONS(2444), + [anon_sym_BSLASHVolcite] = ACTIONS(2444), + [anon_sym_BSLASHpvolcite] = ACTIONS(2444), + [anon_sym_BSLASHPvolcite] = ACTIONS(2444), + [anon_sym_BSLASHfvolcite] = ACTIONS(2444), + [anon_sym_BSLASHftvolcite] = ACTIONS(2444), + [anon_sym_BSLASHsvolcite] = ACTIONS(2444), + [anon_sym_BSLASHSvolcite] = ACTIONS(2444), + [anon_sym_BSLASHtvolcite] = ACTIONS(2444), + [anon_sym_BSLASHTvolcite] = ACTIONS(2444), + [anon_sym_BSLASHavolcite] = ACTIONS(2444), + [anon_sym_BSLASHAvolcite] = ACTIONS(2444), + [anon_sym_BSLASHnotecite] = ACTIONS(2444), + [anon_sym_BSLASHpnotecite] = ACTIONS(2444), + [anon_sym_BSLASHPnotecite] = ACTIONS(2444), + [anon_sym_BSLASHfnotecite] = ACTIONS(2444), + [anon_sym_BSLASHusepackage] = ACTIONS(2450), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2450), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2453), + [anon_sym_BSLASHinclude] = ACTIONS(2456), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2456), + [anon_sym_BSLASHinput] = ACTIONS(2459), + [anon_sym_BSLASHsubfile] = ACTIONS(2459), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2462), + [anon_sym_BSLASHbibliography] = ACTIONS(2465), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2468), + [anon_sym_BSLASHincludesvg] = ACTIONS(2471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2474), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2477), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2477), + [anon_sym_BSLASHimport] = ACTIONS(2480), + [anon_sym_BSLASHsubimport] = ACTIONS(2480), + [anon_sym_BSLASHinputfrom] = ACTIONS(2480), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2480), + [anon_sym_BSLASHincludefrom] = ACTIONS(2480), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2480), + [anon_sym_BSLASHlabel] = ACTIONS(2483), + [anon_sym_BSLASHref] = ACTIONS(2486), + [anon_sym_BSLASHvref] = ACTIONS(2486), + [anon_sym_BSLASHVref] = ACTIONS(2486), + [anon_sym_BSLASHautoref] = ACTIONS(2486), + [anon_sym_BSLASHpageref] = ACTIONS(2486), + [anon_sym_BSLASHcref] = ACTIONS(2486), + [anon_sym_BSLASHCref] = ACTIONS(2486), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2489), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2489), + [anon_sym_BSLASHnamecref] = ACTIONS(2486), + [anon_sym_BSLASHnameCref] = ACTIONS(2486), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2486), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2486), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2486), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2486), + [anon_sym_BSLASHlabelcref] = ACTIONS(2486), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2486), + [anon_sym_BSLASHeqref] = ACTIONS(2492), + [anon_sym_BSLASHcrefrange] = ACTIONS(2495), + [anon_sym_BSLASHCrefrange] = ACTIONS(2495), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2498), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2498), + [anon_sym_BSLASHnewlabel] = ACTIONS(2501), + [anon_sym_BSLASHnewcommand] = ACTIONS(2504), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2504), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2504), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2507), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2510), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2513), + [anon_sym_BSLASHgls] = ACTIONS(2516), + [anon_sym_BSLASHGls] = ACTIONS(2516), + [anon_sym_BSLASHGLS] = ACTIONS(2516), + [anon_sym_BSLASHglspl] = ACTIONS(2516), + [anon_sym_BSLASHGlspl] = ACTIONS(2516), + [anon_sym_BSLASHGLSpl] = ACTIONS(2516), + [anon_sym_BSLASHglsdisp] = ACTIONS(2516), + [anon_sym_BSLASHglslink] = ACTIONS(2516), + [anon_sym_BSLASHglstext] = ACTIONS(2516), + [anon_sym_BSLASHGlstext] = ACTIONS(2516), + [anon_sym_BSLASHGLStext] = ACTIONS(2516), + [anon_sym_BSLASHglsfirst] = ACTIONS(2516), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2516), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2516), + [anon_sym_BSLASHglsplural] = ACTIONS(2516), + [anon_sym_BSLASHGlsplural] = ACTIONS(2516), + [anon_sym_BSLASHGLSplural] = ACTIONS(2516), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2516), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2516), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2516), + [anon_sym_BSLASHglsname] = ACTIONS(2516), + [anon_sym_BSLASHGlsname] = ACTIONS(2516), + [anon_sym_BSLASHGLSname] = ACTIONS(2516), + [anon_sym_BSLASHglssymbol] = ACTIONS(2516), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2516), + [anon_sym_BSLASHglsdesc] = ACTIONS(2516), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2516), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2516), + [anon_sym_BSLASHglsuseri] = ACTIONS(2516), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2516), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2516), + [anon_sym_BSLASHglsuserii] = ACTIONS(2516), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2516), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2516), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2516), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2516), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2516), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2516), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2516), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2516), + [anon_sym_BSLASHglsuserv] = ACTIONS(2516), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2516), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2516), + [anon_sym_BSLASHglsuservi] = ACTIONS(2516), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2516), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2516), + [anon_sym_BSLASHnewacronym] = ACTIONS(2519), + [anon_sym_BSLASHacrshort] = ACTIONS(2522), + [anon_sym_BSLASHAcrshort] = ACTIONS(2522), + [anon_sym_BSLASHACRshort] = ACTIONS(2522), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2522), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2522), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2522), + [anon_sym_BSLASHacrlong] = ACTIONS(2522), + [anon_sym_BSLASHAcrlong] = ACTIONS(2522), + [anon_sym_BSLASHACRlong] = ACTIONS(2522), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2522), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2522), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2522), + [anon_sym_BSLASHacrfull] = ACTIONS(2522), + [anon_sym_BSLASHAcrfull] = ACTIONS(2522), + [anon_sym_BSLASHACRfull] = ACTIONS(2522), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2522), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2522), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2522), + [anon_sym_BSLASHacs] = ACTIONS(2522), + [anon_sym_BSLASHAcs] = ACTIONS(2522), + [anon_sym_BSLASHacsp] = ACTIONS(2522), + [anon_sym_BSLASHAcsp] = ACTIONS(2522), + [anon_sym_BSLASHacl] = ACTIONS(2522), + [anon_sym_BSLASHAcl] = ACTIONS(2522), + [anon_sym_BSLASHaclp] = ACTIONS(2522), + [anon_sym_BSLASHAclp] = ACTIONS(2522), + [anon_sym_BSLASHacf] = ACTIONS(2522), + [anon_sym_BSLASHAcf] = ACTIONS(2522), + [anon_sym_BSLASHacfp] = ACTIONS(2522), + [anon_sym_BSLASHAcfp] = ACTIONS(2522), + [anon_sym_BSLASHac] = ACTIONS(2522), + [anon_sym_BSLASHAc] = ACTIONS(2522), + [anon_sym_BSLASHacp] = ACTIONS(2522), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2522), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2522), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2522), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2522), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2522), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2522), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2522), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2522), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2522), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2522), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2525), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2525), + [anon_sym_BSLASHcolor] = ACTIONS(2528), + [anon_sym_BSLASHcolorbox] = ACTIONS(2528), + [anon_sym_BSLASHtextcolor] = ACTIONS(2528), + [anon_sym_BSLASHpagecolor] = ACTIONS(2528), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2531), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2534), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2537), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2540), + }, + [260] = { + [sym__simple_content] = STATE(262), + [sym_chapter] = STATE(262), + [sym_section] = STATE(262), + [sym_subsection] = STATE(262), + [sym_subsubsection] = STATE(262), + [sym_paragraph] = STATE(262), + [sym_subparagraph] = STATE(262), + [sym_enum_item] = STATE(262), + [sym_brace_group] = STATE(262), + [sym_mixed_group] = STATE(262), + [sym_text] = STATE(262), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(262), + [sym_inline_formula] = STATE(262), + [sym_begin] = STATE(73), + [sym_environment] = STATE(262), + [sym_caption] = STATE(262), + [sym_citation] = STATE(262), + [sym_package_include] = STATE(262), + [sym_class_include] = STATE(262), + [sym_latex_include] = STATE(262), + [sym_latex_input] = STATE(262), + [sym_biblatex_include] = STATE(262), + [sym_bibtex_include] = STATE(262), + [sym_graphics_include] = STATE(262), + [sym_svg_include] = STATE(262), + [sym_inkscape_include] = STATE(262), + [sym_verbatim_include] = STATE(262), + [sym_import] = STATE(262), + [sym_label_definition] = STATE(262), + [sym_label_reference] = STATE(262), + [sym_equation_label_reference] = STATE(262), + [sym_label_reference_range] = STATE(262), + [sym_label_number] = STATE(262), + [sym_command_definition] = STATE(262), + [sym_math_operator] = STATE(262), + [sym_glossary_entry_definition] = STATE(262), + [sym_glossary_entry_reference] = STATE(262), + [sym_acronym_definition] = STATE(262), + [sym_acronym_reference] = STATE(262), + [sym_theorem_definition] = STATE(262), + [sym_color_reference] = STATE(262), + [sym_color_definition] = STATE(262), + [sym_color_set_definition] = STATE(262), + [sym_pgf_library_import] = STATE(262), + [sym_tikz_library_import] = STATE(262), + [sym_generic_command] = STATE(262), + [aux_sym_part_repeat1] = STATE(262), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(892), + [aux_sym_chapter_token1] = ACTIONS(496), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(2543), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(892), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [261] = { + [sym__simple_content] = STATE(259), + [sym_chapter] = STATE(259), + [sym_section] = STATE(259), + [sym_subsection] = STATE(259), + [sym_subsubsection] = STATE(259), + [sym_paragraph] = STATE(259), + [sym_subparagraph] = STATE(259), + [sym_enum_item] = STATE(259), + [sym_brace_group] = STATE(259), + [sym_mixed_group] = STATE(259), + [sym_text] = STATE(259), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(259), + [sym_inline_formula] = STATE(259), + [sym_begin] = STATE(86), + [sym_environment] = STATE(259), + [sym_caption] = STATE(259), + [sym_citation] = STATE(259), + [sym_package_include] = STATE(259), + [sym_class_include] = STATE(259), + [sym_latex_include] = STATE(259), + [sym_latex_input] = STATE(259), + [sym_biblatex_include] = STATE(259), + [sym_bibtex_include] = STATE(259), + [sym_graphics_include] = STATE(259), + [sym_svg_include] = STATE(259), + [sym_inkscape_include] = STATE(259), + [sym_verbatim_include] = STATE(259), + [sym_import] = STATE(259), + [sym_label_definition] = STATE(259), + [sym_label_reference] = STATE(259), + [sym_equation_label_reference] = STATE(259), + [sym_label_reference_range] = STATE(259), + [sym_label_number] = STATE(259), + [sym_command_definition] = STATE(259), + [sym_math_operator] = STATE(259), + [sym_glossary_entry_definition] = STATE(259), + [sym_glossary_entry_reference] = STATE(259), + [sym_acronym_definition] = STATE(259), + [sym_acronym_reference] = STATE(259), + [sym_theorem_definition] = STATE(259), + [sym_color_reference] = STATE(259), + [sym_color_definition] = STATE(259), + [sym_color_set_definition] = STATE(259), + [sym_pgf_library_import] = STATE(259), + [sym_tikz_library_import] = STATE(259), + [sym_generic_command] = STATE(259), + [aux_sym_part_repeat1] = STATE(259), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(2300), + [aux_sym_section_token1] = ACTIONS(2302), + [aux_sym_subsection_token1] = ACTIONS(2304), + [aux_sym_subsubsection_token1] = ACTIONS(2306), + [aux_sym_paragraph_token1] = ACTIONS(2308), + [aux_sym_subparagraph_token1] = ACTIONS(2310), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(890), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(2545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [262] = { + [sym__simple_content] = STATE(262), + [sym_chapter] = STATE(262), + [sym_section] = STATE(262), + [sym_subsection] = STATE(262), + [sym_subsubsection] = STATE(262), + [sym_paragraph] = STATE(262), + [sym_subparagraph] = STATE(262), + [sym_enum_item] = STATE(262), + [sym_brace_group] = STATE(262), + [sym_mixed_group] = STATE(262), + [sym_text] = STATE(262), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(262), + [sym_inline_formula] = STATE(262), + [sym_begin] = STATE(73), + [sym_environment] = STATE(262), + [sym_caption] = STATE(262), + [sym_citation] = STATE(262), + [sym_package_include] = STATE(262), + [sym_class_include] = STATE(262), + [sym_latex_include] = STATE(262), + [sym_latex_input] = STATE(262), + [sym_biblatex_include] = STATE(262), + [sym_bibtex_include] = STATE(262), + [sym_graphics_include] = STATE(262), + [sym_svg_include] = STATE(262), + [sym_inkscape_include] = STATE(262), + [sym_verbatim_include] = STATE(262), + [sym_import] = STATE(262), + [sym_label_definition] = STATE(262), + [sym_label_reference] = STATE(262), + [sym_equation_label_reference] = STATE(262), + [sym_label_reference_range] = STATE(262), + [sym_label_number] = STATE(262), + [sym_command_definition] = STATE(262), + [sym_math_operator] = STATE(262), + [sym_glossary_entry_definition] = STATE(262), + [sym_glossary_entry_reference] = STATE(262), + [sym_acronym_definition] = STATE(262), + [sym_acronym_reference] = STATE(262), + [sym_theorem_definition] = STATE(262), + [sym_color_reference] = STATE(262), + [sym_color_definition] = STATE(262), + [sym_color_set_definition] = STATE(262), + [sym_pgf_library_import] = STATE(262), + [sym_tikz_library_import] = STATE(262), + [sym_generic_command] = STATE(262), + [aux_sym_part_repeat1] = STATE(262), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(2547), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(701), + [aux_sym_chapter_token1] = ACTIONS(2550), + [aux_sym_section_token1] = ACTIONS(2553), + [aux_sym_subsection_token1] = ACTIONS(2556), + [aux_sym_subsubsection_token1] = ACTIONS(2559), + [aux_sym_paragraph_token1] = ACTIONS(2562), + [aux_sym_subparagraph_token1] = ACTIONS(2565), + [anon_sym_BSLASHitem] = ACTIONS(2568), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2574), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2577), + [anon_sym_EQ] = ACTIONS(2577), + [sym_word] = ACTIONS(2577), + [sym_param] = ACTIONS(2580), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2583), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2583), + [anon_sym_DOLLAR] = ACTIONS(2586), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2589), + [anon_sym_BSLASHbegin] = ACTIONS(745), + [anon_sym_BSLASHend] = ACTIONS(701), + [anon_sym_BSLASHcaption] = ACTIONS(2592), + [anon_sym_BSLASHcite] = ACTIONS(2595), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2598), + [anon_sym_BSLASHCite] = ACTIONS(2595), + [anon_sym_BSLASHnocite] = ACTIONS(2595), + [anon_sym_BSLASHcitet] = ACTIONS(2595), + [anon_sym_BSLASHcitep] = ACTIONS(2595), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2598), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2598), + [anon_sym_BSLASHciteauthor] = ACTIONS(2595), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2598), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2595), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2598), + [anon_sym_BSLASHcitetitle] = ACTIONS(2595), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2598), + [anon_sym_BSLASHciteyear] = ACTIONS(2595), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2598), + [anon_sym_BSLASHcitedate] = ACTIONS(2595), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2598), + [anon_sym_BSLASHciteurl] = ACTIONS(2595), + [anon_sym_BSLASHfullcite] = ACTIONS(2595), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2595), + [anon_sym_BSLASHcitealt] = ACTIONS(2595), + [anon_sym_BSLASHcitealp] = ACTIONS(2595), + [anon_sym_BSLASHcitetext] = ACTIONS(2595), + [anon_sym_BSLASHparencite] = ACTIONS(2595), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2598), + [anon_sym_BSLASHParencite] = ACTIONS(2595), + [anon_sym_BSLASHfootcite] = ACTIONS(2595), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2595), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2595), + [anon_sym_BSLASHtextcite] = ACTIONS(2595), + [anon_sym_BSLASHTextcite] = ACTIONS(2595), + [anon_sym_BSLASHsmartcite] = ACTIONS(2595), + [anon_sym_BSLASHSmartcite] = ACTIONS(2595), + [anon_sym_BSLASHsupercite] = ACTIONS(2595), + [anon_sym_BSLASHautocite] = ACTIONS(2595), + [anon_sym_BSLASHAutocite] = ACTIONS(2595), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2598), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2598), + [anon_sym_BSLASHvolcite] = ACTIONS(2595), + [anon_sym_BSLASHVolcite] = ACTIONS(2595), + [anon_sym_BSLASHpvolcite] = ACTIONS(2595), + [anon_sym_BSLASHPvolcite] = ACTIONS(2595), + [anon_sym_BSLASHfvolcite] = ACTIONS(2595), + [anon_sym_BSLASHftvolcite] = ACTIONS(2595), + [anon_sym_BSLASHsvolcite] = ACTIONS(2595), + [anon_sym_BSLASHSvolcite] = ACTIONS(2595), + [anon_sym_BSLASHtvolcite] = ACTIONS(2595), + [anon_sym_BSLASHTvolcite] = ACTIONS(2595), + [anon_sym_BSLASHavolcite] = ACTIONS(2595), + [anon_sym_BSLASHAvolcite] = ACTIONS(2595), + [anon_sym_BSLASHnotecite] = ACTIONS(2595), + [anon_sym_BSLASHpnotecite] = ACTIONS(2595), + [anon_sym_BSLASHPnotecite] = ACTIONS(2595), + [anon_sym_BSLASHfnotecite] = ACTIONS(2595), + [anon_sym_BSLASHusepackage] = ACTIONS(2601), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2601), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2604), + [anon_sym_BSLASHinclude] = ACTIONS(2607), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2607), + [anon_sym_BSLASHinput] = ACTIONS(2610), + [anon_sym_BSLASHsubfile] = ACTIONS(2610), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2613), + [anon_sym_BSLASHbibliography] = ACTIONS(2616), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2619), + [anon_sym_BSLASHincludesvg] = ACTIONS(2622), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2625), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2628), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2628), + [anon_sym_BSLASHimport] = ACTIONS(2631), + [anon_sym_BSLASHsubimport] = ACTIONS(2631), + [anon_sym_BSLASHinputfrom] = ACTIONS(2631), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2631), + [anon_sym_BSLASHincludefrom] = ACTIONS(2631), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2631), + [anon_sym_BSLASHlabel] = ACTIONS(2634), + [anon_sym_BSLASHref] = ACTIONS(2637), + [anon_sym_BSLASHvref] = ACTIONS(2637), + [anon_sym_BSLASHVref] = ACTIONS(2637), + [anon_sym_BSLASHautoref] = ACTIONS(2637), + [anon_sym_BSLASHpageref] = ACTIONS(2637), + [anon_sym_BSLASHcref] = ACTIONS(2637), + [anon_sym_BSLASHCref] = ACTIONS(2637), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2640), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2640), + [anon_sym_BSLASHnamecref] = ACTIONS(2637), + [anon_sym_BSLASHnameCref] = ACTIONS(2637), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2637), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2637), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2637), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2637), + [anon_sym_BSLASHlabelcref] = ACTIONS(2637), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2637), + [anon_sym_BSLASHeqref] = ACTIONS(2643), + [anon_sym_BSLASHcrefrange] = ACTIONS(2646), + [anon_sym_BSLASHCrefrange] = ACTIONS(2646), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2649), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2649), + [anon_sym_BSLASHnewlabel] = ACTIONS(2652), + [anon_sym_BSLASHnewcommand] = ACTIONS(2655), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2655), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2655), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2658), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2661), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2664), + [anon_sym_BSLASHgls] = ACTIONS(2667), + [anon_sym_BSLASHGls] = ACTIONS(2667), + [anon_sym_BSLASHGLS] = ACTIONS(2667), + [anon_sym_BSLASHglspl] = ACTIONS(2667), + [anon_sym_BSLASHGlspl] = ACTIONS(2667), + [anon_sym_BSLASHGLSpl] = ACTIONS(2667), + [anon_sym_BSLASHglsdisp] = ACTIONS(2667), + [anon_sym_BSLASHglslink] = ACTIONS(2667), + [anon_sym_BSLASHglstext] = ACTIONS(2667), + [anon_sym_BSLASHGlstext] = ACTIONS(2667), + [anon_sym_BSLASHGLStext] = ACTIONS(2667), + [anon_sym_BSLASHglsfirst] = ACTIONS(2667), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2667), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2667), + [anon_sym_BSLASHglsplural] = ACTIONS(2667), + [anon_sym_BSLASHGlsplural] = ACTIONS(2667), + [anon_sym_BSLASHGLSplural] = ACTIONS(2667), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2667), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2667), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2667), + [anon_sym_BSLASHglsname] = ACTIONS(2667), + [anon_sym_BSLASHGlsname] = ACTIONS(2667), + [anon_sym_BSLASHGLSname] = ACTIONS(2667), + [anon_sym_BSLASHglssymbol] = ACTIONS(2667), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2667), + [anon_sym_BSLASHglsdesc] = ACTIONS(2667), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2667), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2667), + [anon_sym_BSLASHglsuseri] = ACTIONS(2667), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2667), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2667), + [anon_sym_BSLASHglsuserii] = ACTIONS(2667), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2667), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2667), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2667), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2667), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2667), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2667), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2667), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2667), + [anon_sym_BSLASHglsuserv] = ACTIONS(2667), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2667), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2667), + [anon_sym_BSLASHglsuservi] = ACTIONS(2667), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2667), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2667), + [anon_sym_BSLASHnewacronym] = ACTIONS(2670), + [anon_sym_BSLASHacrshort] = ACTIONS(2673), + [anon_sym_BSLASHAcrshort] = ACTIONS(2673), + [anon_sym_BSLASHACRshort] = ACTIONS(2673), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2673), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2673), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2673), + [anon_sym_BSLASHacrlong] = ACTIONS(2673), + [anon_sym_BSLASHAcrlong] = ACTIONS(2673), + [anon_sym_BSLASHACRlong] = ACTIONS(2673), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2673), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2673), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2673), + [anon_sym_BSLASHacrfull] = ACTIONS(2673), + [anon_sym_BSLASHAcrfull] = ACTIONS(2673), + [anon_sym_BSLASHACRfull] = ACTIONS(2673), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2673), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2673), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2673), + [anon_sym_BSLASHacs] = ACTIONS(2673), + [anon_sym_BSLASHAcs] = ACTIONS(2673), + [anon_sym_BSLASHacsp] = ACTIONS(2673), + [anon_sym_BSLASHAcsp] = ACTIONS(2673), + [anon_sym_BSLASHacl] = ACTIONS(2673), + [anon_sym_BSLASHAcl] = ACTIONS(2673), + [anon_sym_BSLASHaclp] = ACTIONS(2673), + [anon_sym_BSLASHAclp] = ACTIONS(2673), + [anon_sym_BSLASHacf] = ACTIONS(2673), + [anon_sym_BSLASHAcf] = ACTIONS(2673), + [anon_sym_BSLASHacfp] = ACTIONS(2673), + [anon_sym_BSLASHAcfp] = ACTIONS(2673), + [anon_sym_BSLASHac] = ACTIONS(2673), + [anon_sym_BSLASHAc] = ACTIONS(2673), + [anon_sym_BSLASHacp] = ACTIONS(2673), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2673), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2673), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2673), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2673), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2673), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2673), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2673), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2673), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2673), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2673), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2676), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2676), + [anon_sym_BSLASHcolor] = ACTIONS(2679), + [anon_sym_BSLASHcolorbox] = ACTIONS(2679), + [anon_sym_BSLASHtextcolor] = ACTIONS(2679), + [anon_sym_BSLASHpagecolor] = ACTIONS(2679), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2682), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2685), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2688), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2691), + }, + [263] = { + [sym__simple_content] = STATE(263), + [sym_chapter] = STATE(263), + [sym_section] = STATE(263), + [sym_subsection] = STATE(263), + [sym_subsubsection] = STATE(263), + [sym_paragraph] = STATE(263), + [sym_subparagraph] = STATE(263), + [sym_enum_item] = STATE(263), + [sym_brace_group] = STATE(263), + [sym_mixed_group] = STATE(263), + [sym_text] = STATE(263), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(263), + [sym_inline_formula] = STATE(263), + [sym_begin] = STATE(59), + [sym_environment] = STATE(263), + [sym_caption] = STATE(263), + [sym_citation] = STATE(263), + [sym_package_include] = STATE(263), + [sym_class_include] = STATE(263), + [sym_latex_include] = STATE(263), + [sym_latex_input] = STATE(263), + [sym_biblatex_include] = STATE(263), + [sym_bibtex_include] = STATE(263), + [sym_graphics_include] = STATE(263), + [sym_svg_include] = STATE(263), + [sym_inkscape_include] = STATE(263), + [sym_verbatim_include] = STATE(263), + [sym_import] = STATE(263), + [sym_label_definition] = STATE(263), + [sym_label_reference] = STATE(263), + [sym_equation_label_reference] = STATE(263), + [sym_label_reference_range] = STATE(263), + [sym_label_number] = STATE(263), + [sym_command_definition] = STATE(263), + [sym_math_operator] = STATE(263), + [sym_glossary_entry_definition] = STATE(263), + [sym_glossary_entry_reference] = STATE(263), + [sym_acronym_definition] = STATE(263), + [sym_acronym_reference] = STATE(263), + [sym_theorem_definition] = STATE(263), + [sym_color_reference] = STATE(263), + [sym_color_definition] = STATE(263), + [sym_color_set_definition] = STATE(263), + [sym_pgf_library_import] = STATE(263), + [sym_tikz_library_import] = STATE(263), + [sym_generic_command] = STATE(263), + [aux_sym_part_repeat1] = STATE(263), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(2694), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(701), + [aux_sym_chapter_token1] = ACTIONS(2697), + [aux_sym_section_token1] = ACTIONS(2700), + [aux_sym_subsection_token1] = ACTIONS(2703), + [aux_sym_subsubsection_token1] = ACTIONS(2706), + [aux_sym_paragraph_token1] = ACTIONS(2709), + [aux_sym_subparagraph_token1] = ACTIONS(2712), + [anon_sym_BSLASHitem] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2718), + [anon_sym_LBRACE] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(2718), + [anon_sym_COMMA] = ACTIONS(2724), + [anon_sym_EQ] = ACTIONS(2724), + [sym_word] = ACTIONS(2724), + [sym_param] = ACTIONS(2727), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2730), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2730), + [anon_sym_BSLASH_RBRACK] = ACTIONS(696), + [anon_sym_DOLLAR] = ACTIONS(2733), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2736), + [anon_sym_BSLASHbegin] = ACTIONS(745), + [anon_sym_BSLASHcaption] = ACTIONS(2739), + [anon_sym_BSLASHcite] = ACTIONS(2742), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2745), + [anon_sym_BSLASHCite] = ACTIONS(2742), + [anon_sym_BSLASHnocite] = ACTIONS(2742), + [anon_sym_BSLASHcitet] = ACTIONS(2742), + [anon_sym_BSLASHcitep] = ACTIONS(2742), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2745), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2745), + [anon_sym_BSLASHciteauthor] = ACTIONS(2742), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2745), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2742), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2745), + [anon_sym_BSLASHcitetitle] = ACTIONS(2742), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2745), + [anon_sym_BSLASHciteyear] = ACTIONS(2742), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2745), + [anon_sym_BSLASHcitedate] = ACTIONS(2742), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2745), + [anon_sym_BSLASHciteurl] = ACTIONS(2742), + [anon_sym_BSLASHfullcite] = ACTIONS(2742), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2742), + [anon_sym_BSLASHcitealt] = ACTIONS(2742), + [anon_sym_BSLASHcitealp] = ACTIONS(2742), + [anon_sym_BSLASHcitetext] = ACTIONS(2742), + [anon_sym_BSLASHparencite] = ACTIONS(2742), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2745), + [anon_sym_BSLASHParencite] = ACTIONS(2742), + [anon_sym_BSLASHfootcite] = ACTIONS(2742), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2742), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2742), + [anon_sym_BSLASHtextcite] = ACTIONS(2742), + [anon_sym_BSLASHTextcite] = ACTIONS(2742), + [anon_sym_BSLASHsmartcite] = ACTIONS(2742), + [anon_sym_BSLASHSmartcite] = ACTIONS(2742), + [anon_sym_BSLASHsupercite] = ACTIONS(2742), + [anon_sym_BSLASHautocite] = ACTIONS(2742), + [anon_sym_BSLASHAutocite] = ACTIONS(2742), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2745), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2745), + [anon_sym_BSLASHvolcite] = ACTIONS(2742), + [anon_sym_BSLASHVolcite] = ACTIONS(2742), + [anon_sym_BSLASHpvolcite] = ACTIONS(2742), + [anon_sym_BSLASHPvolcite] = ACTIONS(2742), + [anon_sym_BSLASHfvolcite] = ACTIONS(2742), + [anon_sym_BSLASHftvolcite] = ACTIONS(2742), + [anon_sym_BSLASHsvolcite] = ACTIONS(2742), + [anon_sym_BSLASHSvolcite] = ACTIONS(2742), + [anon_sym_BSLASHtvolcite] = ACTIONS(2742), + [anon_sym_BSLASHTvolcite] = ACTIONS(2742), + [anon_sym_BSLASHavolcite] = ACTIONS(2742), + [anon_sym_BSLASHAvolcite] = ACTIONS(2742), + [anon_sym_BSLASHnotecite] = ACTIONS(2742), + [anon_sym_BSLASHpnotecite] = ACTIONS(2742), + [anon_sym_BSLASHPnotecite] = ACTIONS(2742), + [anon_sym_BSLASHfnotecite] = ACTIONS(2742), + [anon_sym_BSLASHusepackage] = ACTIONS(2748), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2748), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2751), + [anon_sym_BSLASHinclude] = ACTIONS(2754), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2754), + [anon_sym_BSLASHinput] = ACTIONS(2757), + [anon_sym_BSLASHsubfile] = ACTIONS(2757), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2760), + [anon_sym_BSLASHbibliography] = ACTIONS(2763), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2766), + [anon_sym_BSLASHincludesvg] = ACTIONS(2769), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2772), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2775), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2775), + [anon_sym_BSLASHimport] = ACTIONS(2778), + [anon_sym_BSLASHsubimport] = ACTIONS(2778), + [anon_sym_BSLASHinputfrom] = ACTIONS(2778), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2778), + [anon_sym_BSLASHincludefrom] = ACTIONS(2778), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2778), + [anon_sym_BSLASHlabel] = ACTIONS(2781), + [anon_sym_BSLASHref] = ACTIONS(2784), + [anon_sym_BSLASHvref] = ACTIONS(2784), + [anon_sym_BSLASHVref] = ACTIONS(2784), + [anon_sym_BSLASHautoref] = ACTIONS(2784), + [anon_sym_BSLASHpageref] = ACTIONS(2784), + [anon_sym_BSLASHcref] = ACTIONS(2784), + [anon_sym_BSLASHCref] = ACTIONS(2784), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2787), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2787), + [anon_sym_BSLASHnamecref] = ACTIONS(2784), + [anon_sym_BSLASHnameCref] = ACTIONS(2784), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2784), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2784), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2784), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2784), + [anon_sym_BSLASHlabelcref] = ACTIONS(2784), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2784), + [anon_sym_BSLASHeqref] = ACTIONS(2790), + [anon_sym_BSLASHcrefrange] = ACTIONS(2793), + [anon_sym_BSLASHCrefrange] = ACTIONS(2793), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2796), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2796), + [anon_sym_BSLASHnewlabel] = ACTIONS(2799), + [anon_sym_BSLASHnewcommand] = ACTIONS(2802), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2802), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2802), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2805), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2808), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2811), + [anon_sym_BSLASHgls] = ACTIONS(2814), + [anon_sym_BSLASHGls] = ACTIONS(2814), + [anon_sym_BSLASHGLS] = ACTIONS(2814), + [anon_sym_BSLASHglspl] = ACTIONS(2814), + [anon_sym_BSLASHGlspl] = ACTIONS(2814), + [anon_sym_BSLASHGLSpl] = ACTIONS(2814), + [anon_sym_BSLASHglsdisp] = ACTIONS(2814), + [anon_sym_BSLASHglslink] = ACTIONS(2814), + [anon_sym_BSLASHglstext] = ACTIONS(2814), + [anon_sym_BSLASHGlstext] = ACTIONS(2814), + [anon_sym_BSLASHGLStext] = ACTIONS(2814), + [anon_sym_BSLASHglsfirst] = ACTIONS(2814), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2814), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2814), + [anon_sym_BSLASHglsplural] = ACTIONS(2814), + [anon_sym_BSLASHGlsplural] = ACTIONS(2814), + [anon_sym_BSLASHGLSplural] = ACTIONS(2814), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2814), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2814), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2814), + [anon_sym_BSLASHglsname] = ACTIONS(2814), + [anon_sym_BSLASHGlsname] = ACTIONS(2814), + [anon_sym_BSLASHGLSname] = ACTIONS(2814), + [anon_sym_BSLASHglssymbol] = ACTIONS(2814), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2814), + [anon_sym_BSLASHglsdesc] = ACTIONS(2814), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2814), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2814), + [anon_sym_BSLASHglsuseri] = ACTIONS(2814), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2814), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2814), + [anon_sym_BSLASHglsuserii] = ACTIONS(2814), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2814), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2814), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2814), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2814), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2814), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2814), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2814), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2814), + [anon_sym_BSLASHglsuserv] = ACTIONS(2814), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2814), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2814), + [anon_sym_BSLASHglsuservi] = ACTIONS(2814), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2814), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2814), + [anon_sym_BSLASHnewacronym] = ACTIONS(2817), + [anon_sym_BSLASHacrshort] = ACTIONS(2820), + [anon_sym_BSLASHAcrshort] = ACTIONS(2820), + [anon_sym_BSLASHACRshort] = ACTIONS(2820), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2820), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2820), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2820), + [anon_sym_BSLASHacrlong] = ACTIONS(2820), + [anon_sym_BSLASHAcrlong] = ACTIONS(2820), + [anon_sym_BSLASHACRlong] = ACTIONS(2820), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2820), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2820), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2820), + [anon_sym_BSLASHacrfull] = ACTIONS(2820), + [anon_sym_BSLASHAcrfull] = ACTIONS(2820), + [anon_sym_BSLASHACRfull] = ACTIONS(2820), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2820), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2820), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2820), + [anon_sym_BSLASHacs] = ACTIONS(2820), + [anon_sym_BSLASHAcs] = ACTIONS(2820), + [anon_sym_BSLASHacsp] = ACTIONS(2820), + [anon_sym_BSLASHAcsp] = ACTIONS(2820), + [anon_sym_BSLASHacl] = ACTIONS(2820), + [anon_sym_BSLASHAcl] = ACTIONS(2820), + [anon_sym_BSLASHaclp] = ACTIONS(2820), + [anon_sym_BSLASHAclp] = ACTIONS(2820), + [anon_sym_BSLASHacf] = ACTIONS(2820), + [anon_sym_BSLASHAcf] = ACTIONS(2820), + [anon_sym_BSLASHacfp] = ACTIONS(2820), + [anon_sym_BSLASHAcfp] = ACTIONS(2820), + [anon_sym_BSLASHac] = ACTIONS(2820), + [anon_sym_BSLASHAc] = ACTIONS(2820), + [anon_sym_BSLASHacp] = ACTIONS(2820), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2820), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2820), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2820), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2820), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2820), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2820), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2820), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2820), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2820), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2820), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2823), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2823), + [anon_sym_BSLASHcolor] = ACTIONS(2826), + [anon_sym_BSLASHcolorbox] = ACTIONS(2826), + [anon_sym_BSLASHtextcolor] = ACTIONS(2826), + [anon_sym_BSLASHpagecolor] = ACTIONS(2826), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2829), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2832), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2835), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2838), + }, + [264] = { + [sym__simple_content] = STATE(265), + [sym_chapter] = STATE(265), + [sym_section] = STATE(265), + [sym_subsection] = STATE(265), + [sym_subsubsection] = STATE(265), + [sym_paragraph] = STATE(265), + [sym_subparagraph] = STATE(265), + [sym_enum_item] = STATE(265), + [sym_brace_group] = STATE(265), + [sym_mixed_group] = STATE(265), + [sym_text] = STATE(265), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(265), + [sym_inline_formula] = STATE(265), + [sym_begin] = STATE(66), + [sym_environment] = STATE(265), + [sym_caption] = STATE(265), + [sym_citation] = STATE(265), + [sym_package_include] = STATE(265), + [sym_class_include] = STATE(265), + [sym_latex_include] = STATE(265), + [sym_latex_input] = STATE(265), + [sym_biblatex_include] = STATE(265), + [sym_bibtex_include] = STATE(265), + [sym_graphics_include] = STATE(265), + [sym_svg_include] = STATE(265), + [sym_inkscape_include] = STATE(265), + [sym_verbatim_include] = STATE(265), + [sym_import] = STATE(265), + [sym_label_definition] = STATE(265), + [sym_label_reference] = STATE(265), + [sym_equation_label_reference] = STATE(265), + [sym_label_reference_range] = STATE(265), + [sym_label_number] = STATE(265), + [sym_command_definition] = STATE(265), + [sym_math_operator] = STATE(265), + [sym_glossary_entry_definition] = STATE(265), + [sym_glossary_entry_reference] = STATE(265), + [sym_acronym_definition] = STATE(265), + [sym_acronym_reference] = STATE(265), + [sym_theorem_definition] = STATE(265), + [sym_color_reference] = STATE(265), + [sym_color_definition] = STATE(265), + [sym_color_set_definition] = STATE(265), + [sym_pgf_library_import] = STATE(265), + [sym_tikz_library_import] = STATE(265), + [sym_generic_command] = STATE(265), + [aux_sym_part_repeat1] = STATE(265), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(892), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(2841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(890), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [265] = { + [sym__simple_content] = STATE(265), + [sym_chapter] = STATE(265), + [sym_section] = STATE(265), + [sym_subsection] = STATE(265), + [sym_subsubsection] = STATE(265), + [sym_paragraph] = STATE(265), + [sym_subparagraph] = STATE(265), + [sym_enum_item] = STATE(265), + [sym_brace_group] = STATE(265), + [sym_mixed_group] = STATE(265), + [sym_text] = STATE(265), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(265), + [sym_inline_formula] = STATE(265), + [sym_begin] = STATE(66), + [sym_environment] = STATE(265), + [sym_caption] = STATE(265), + [sym_citation] = STATE(265), + [sym_package_include] = STATE(265), + [sym_class_include] = STATE(265), + [sym_latex_include] = STATE(265), + [sym_latex_input] = STATE(265), + [sym_biblatex_include] = STATE(265), + [sym_bibtex_include] = STATE(265), + [sym_graphics_include] = STATE(265), + [sym_svg_include] = STATE(265), + [sym_inkscape_include] = STATE(265), + [sym_verbatim_include] = STATE(265), + [sym_import] = STATE(265), + [sym_label_definition] = STATE(265), + [sym_label_reference] = STATE(265), + [sym_equation_label_reference] = STATE(265), + [sym_label_reference_range] = STATE(265), + [sym_label_number] = STATE(265), + [sym_command_definition] = STATE(265), + [sym_math_operator] = STATE(265), + [sym_glossary_entry_definition] = STATE(265), + [sym_glossary_entry_reference] = STATE(265), + [sym_acronym_definition] = STATE(265), + [sym_acronym_reference] = STATE(265), + [sym_theorem_definition] = STATE(265), + [sym_color_reference] = STATE(265), + [sym_color_definition] = STATE(265), + [sym_color_set_definition] = STATE(265), + [sym_pgf_library_import] = STATE(265), + [sym_tikz_library_import] = STATE(265), + [sym_generic_command] = STATE(265), + [aux_sym_part_repeat1] = STATE(265), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(2845), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(701), + [aux_sym_chapter_token1] = ACTIONS(2848), + [aux_sym_section_token1] = ACTIONS(2851), + [aux_sym_subsection_token1] = ACTIONS(2854), + [aux_sym_subsubsection_token1] = ACTIONS(2857), + [aux_sym_paragraph_token1] = ACTIONS(2860), + [aux_sym_subparagraph_token1] = ACTIONS(2863), + [anon_sym_BSLASHitem] = ACTIONS(2866), + [anon_sym_LBRACK] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2872), + [anon_sym_LPAREN] = ACTIONS(2869), + [anon_sym_COMMA] = ACTIONS(2875), + [anon_sym_EQ] = ACTIONS(2875), + [sym_word] = ACTIONS(2875), + [sym_param] = ACTIONS(2878), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2881), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2881), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2887), + [anon_sym_BSLASH_RPAREN] = ACTIONS(696), + [anon_sym_BSLASHbegin] = ACTIONS(745), + [anon_sym_BSLASHcaption] = ACTIONS(2890), + [anon_sym_BSLASHcite] = ACTIONS(2893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2896), + [anon_sym_BSLASHCite] = ACTIONS(2893), + [anon_sym_BSLASHnocite] = ACTIONS(2893), + [anon_sym_BSLASHcitet] = ACTIONS(2893), + [anon_sym_BSLASHcitep] = ACTIONS(2893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2896), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2896), + [anon_sym_BSLASHciteauthor] = ACTIONS(2893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2896), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2896), + [anon_sym_BSLASHcitetitle] = ACTIONS(2893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2896), + [anon_sym_BSLASHciteyear] = ACTIONS(2893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2896), + [anon_sym_BSLASHcitedate] = ACTIONS(2893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2896), + [anon_sym_BSLASHciteurl] = ACTIONS(2893), + [anon_sym_BSLASHfullcite] = ACTIONS(2893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2893), + [anon_sym_BSLASHcitealt] = ACTIONS(2893), + [anon_sym_BSLASHcitealp] = ACTIONS(2893), + [anon_sym_BSLASHcitetext] = ACTIONS(2893), + [anon_sym_BSLASHparencite] = ACTIONS(2893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2896), + [anon_sym_BSLASHParencite] = ACTIONS(2893), + [anon_sym_BSLASHfootcite] = ACTIONS(2893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2893), + [anon_sym_BSLASHtextcite] = ACTIONS(2893), + [anon_sym_BSLASHTextcite] = ACTIONS(2893), + [anon_sym_BSLASHsmartcite] = ACTIONS(2893), + [anon_sym_BSLASHSmartcite] = ACTIONS(2893), + [anon_sym_BSLASHsupercite] = ACTIONS(2893), + [anon_sym_BSLASHautocite] = ACTIONS(2893), + [anon_sym_BSLASHAutocite] = ACTIONS(2893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2896), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2896), + [anon_sym_BSLASHvolcite] = ACTIONS(2893), + [anon_sym_BSLASHVolcite] = ACTIONS(2893), + [anon_sym_BSLASHpvolcite] = ACTIONS(2893), + [anon_sym_BSLASHPvolcite] = ACTIONS(2893), + [anon_sym_BSLASHfvolcite] = ACTIONS(2893), + [anon_sym_BSLASHftvolcite] = ACTIONS(2893), + [anon_sym_BSLASHsvolcite] = ACTIONS(2893), + [anon_sym_BSLASHSvolcite] = ACTIONS(2893), + [anon_sym_BSLASHtvolcite] = ACTIONS(2893), + [anon_sym_BSLASHTvolcite] = ACTIONS(2893), + [anon_sym_BSLASHavolcite] = ACTIONS(2893), + [anon_sym_BSLASHAvolcite] = ACTIONS(2893), + [anon_sym_BSLASHnotecite] = ACTIONS(2893), + [anon_sym_BSLASHpnotecite] = ACTIONS(2893), + [anon_sym_BSLASHPnotecite] = ACTIONS(2893), + [anon_sym_BSLASHfnotecite] = ACTIONS(2893), + [anon_sym_BSLASHusepackage] = ACTIONS(2899), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2899), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2902), + [anon_sym_BSLASHinclude] = ACTIONS(2905), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2905), + [anon_sym_BSLASHinput] = ACTIONS(2908), + [anon_sym_BSLASHsubfile] = ACTIONS(2908), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2911), + [anon_sym_BSLASHbibliography] = ACTIONS(2914), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2917), + [anon_sym_BSLASHincludesvg] = ACTIONS(2920), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2926), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2926), + [anon_sym_BSLASHimport] = ACTIONS(2929), + [anon_sym_BSLASHsubimport] = ACTIONS(2929), + [anon_sym_BSLASHinputfrom] = ACTIONS(2929), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2929), + [anon_sym_BSLASHincludefrom] = ACTIONS(2929), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2929), + [anon_sym_BSLASHlabel] = ACTIONS(2932), + [anon_sym_BSLASHref] = ACTIONS(2935), + [anon_sym_BSLASHvref] = ACTIONS(2935), + [anon_sym_BSLASHVref] = ACTIONS(2935), + [anon_sym_BSLASHautoref] = ACTIONS(2935), + [anon_sym_BSLASHpageref] = ACTIONS(2935), + [anon_sym_BSLASHcref] = ACTIONS(2935), + [anon_sym_BSLASHCref] = ACTIONS(2935), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2938), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2938), + [anon_sym_BSLASHnamecref] = ACTIONS(2935), + [anon_sym_BSLASHnameCref] = ACTIONS(2935), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2935), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2935), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2935), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2935), + [anon_sym_BSLASHlabelcref] = ACTIONS(2935), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2935), + [anon_sym_BSLASHeqref] = ACTIONS(2941), + [anon_sym_BSLASHcrefrange] = ACTIONS(2944), + [anon_sym_BSLASHCrefrange] = ACTIONS(2944), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2947), + [anon_sym_BSLASHnewlabel] = ACTIONS(2950), + [anon_sym_BSLASHnewcommand] = ACTIONS(2953), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2953), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2953), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2956), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2959), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2962), + [anon_sym_BSLASHgls] = ACTIONS(2965), + [anon_sym_BSLASHGls] = ACTIONS(2965), + [anon_sym_BSLASHGLS] = ACTIONS(2965), + [anon_sym_BSLASHglspl] = ACTIONS(2965), + [anon_sym_BSLASHGlspl] = ACTIONS(2965), + [anon_sym_BSLASHGLSpl] = ACTIONS(2965), + [anon_sym_BSLASHglsdisp] = ACTIONS(2965), + [anon_sym_BSLASHglslink] = ACTIONS(2965), + [anon_sym_BSLASHglstext] = ACTIONS(2965), + [anon_sym_BSLASHGlstext] = ACTIONS(2965), + [anon_sym_BSLASHGLStext] = ACTIONS(2965), + [anon_sym_BSLASHglsfirst] = ACTIONS(2965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2965), + [anon_sym_BSLASHglsplural] = ACTIONS(2965), + [anon_sym_BSLASHGlsplural] = ACTIONS(2965), + [anon_sym_BSLASHGLSplural] = ACTIONS(2965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2965), + [anon_sym_BSLASHglsname] = ACTIONS(2965), + [anon_sym_BSLASHGlsname] = ACTIONS(2965), + [anon_sym_BSLASHGLSname] = ACTIONS(2965), + [anon_sym_BSLASHglssymbol] = ACTIONS(2965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2965), + [anon_sym_BSLASHglsdesc] = ACTIONS(2965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2965), + [anon_sym_BSLASHglsuseri] = ACTIONS(2965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2965), + [anon_sym_BSLASHglsuserii] = ACTIONS(2965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2965), + [anon_sym_BSLASHglsuserv] = ACTIONS(2965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2965), + [anon_sym_BSLASHglsuservi] = ACTIONS(2965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2965), + [anon_sym_BSLASHnewacronym] = ACTIONS(2968), + [anon_sym_BSLASHacrshort] = ACTIONS(2971), + [anon_sym_BSLASHAcrshort] = ACTIONS(2971), + [anon_sym_BSLASHACRshort] = ACTIONS(2971), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2971), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2971), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2971), + [anon_sym_BSLASHacrlong] = ACTIONS(2971), + [anon_sym_BSLASHAcrlong] = ACTIONS(2971), + [anon_sym_BSLASHACRlong] = ACTIONS(2971), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2971), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2971), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2971), + [anon_sym_BSLASHacrfull] = ACTIONS(2971), + [anon_sym_BSLASHAcrfull] = ACTIONS(2971), + [anon_sym_BSLASHACRfull] = ACTIONS(2971), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2971), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2971), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2971), + [anon_sym_BSLASHacs] = ACTIONS(2971), + [anon_sym_BSLASHAcs] = ACTIONS(2971), + [anon_sym_BSLASHacsp] = ACTIONS(2971), + [anon_sym_BSLASHAcsp] = ACTIONS(2971), + [anon_sym_BSLASHacl] = ACTIONS(2971), + [anon_sym_BSLASHAcl] = ACTIONS(2971), + [anon_sym_BSLASHaclp] = ACTIONS(2971), + [anon_sym_BSLASHAclp] = ACTIONS(2971), + [anon_sym_BSLASHacf] = ACTIONS(2971), + [anon_sym_BSLASHAcf] = ACTIONS(2971), + [anon_sym_BSLASHacfp] = ACTIONS(2971), + [anon_sym_BSLASHAcfp] = ACTIONS(2971), + [anon_sym_BSLASHac] = ACTIONS(2971), + [anon_sym_BSLASHAc] = ACTIONS(2971), + [anon_sym_BSLASHacp] = ACTIONS(2971), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2971), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2971), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2971), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2971), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2971), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2971), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2971), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2971), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2971), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2971), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2974), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2974), + [anon_sym_BSLASHcolor] = ACTIONS(2977), + [anon_sym_BSLASHcolorbox] = ACTIONS(2977), + [anon_sym_BSLASHtextcolor] = ACTIONS(2977), + [anon_sym_BSLASHpagecolor] = ACTIONS(2977), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2980), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2986), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2989), + }, + [266] = { + [sym__simple_content] = STATE(2212), + [sym__content] = STATE(2212), + [sym_part] = STATE(2212), + [sym_chapter] = STATE(2212), + [sym_section] = STATE(2212), + [sym_subsection] = STATE(2212), + [sym_subsubsection] = STATE(2212), + [sym_paragraph] = STATE(2212), + [sym_subparagraph] = STATE(2212), + [sym_enum_item] = STATE(2212), + [sym_brace_group] = STATE(2212), + [sym_mixed_group] = STATE(2212), + [sym_text] = STATE(2212), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(2212), + [sym_inline_formula] = STATE(2212), + [sym_begin] = STATE(52), + [sym_environment] = STATE(2212), + [sym_caption] = STATE(2212), + [sym_citation] = STATE(2212), + [sym_package_include] = STATE(2212), + [sym_class_include] = STATE(2212), + [sym_latex_include] = STATE(2212), + [sym_latex_input] = STATE(2212), + [sym_biblatex_include] = STATE(2212), + [sym_bibtex_include] = STATE(2212), + [sym_graphics_include] = STATE(2212), + [sym_svg_include] = STATE(2212), + [sym_inkscape_include] = STATE(2212), + [sym_verbatim_include] = STATE(2212), + [sym_import] = STATE(2212), + [sym_label_definition] = STATE(2212), + [sym_label_reference] = STATE(2212), + [sym_equation_label_reference] = STATE(2212), + [sym_label_reference_range] = STATE(2212), + [sym_label_number] = STATE(2212), + [sym_command_definition] = STATE(2212), + [sym_math_operator] = STATE(2212), + [sym_glossary_entry_definition] = STATE(2212), + [sym_glossary_entry_reference] = STATE(2212), + [sym_acronym_definition] = STATE(2212), + [sym_acronym_reference] = STATE(2212), + [sym_theorem_definition] = STATE(2212), + [sym_color_reference] = STATE(2212), + [sym_color_definition] = STATE(2212), + [sym_color_set_definition] = STATE(2212), + [sym_pgf_library_import] = STATE(2212), + [sym_tikz_library_import] = STATE(2212), + [sym_generic_command] = STATE(2212), + [aux_sym_text_repeat1] = STATE(475), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2992), + [aux_sym_chapter_token1] = ACTIONS(2994), + [aux_sym_section_token1] = ACTIONS(2996), + [aux_sym_subsection_token1] = ACTIONS(2998), + [aux_sym_subsubsection_token1] = ACTIONS(3000), + [aux_sym_paragraph_token1] = ACTIONS(3002), + [aux_sym_subparagraph_token1] = ACTIONS(3004), + [anon_sym_BSLASHitem] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(3008), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3010), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3010), + [anon_sym_DOLLAR] = ACTIONS(3012), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3014), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [267] = { + [sym__simple_content] = STATE(264), + [sym_chapter] = STATE(264), + [sym_section] = STATE(264), + [sym_subsection] = STATE(264), + [sym_subsubsection] = STATE(264), + [sym_paragraph] = STATE(264), + [sym_subparagraph] = STATE(264), + [sym_enum_item] = STATE(264), + [sym_brace_group] = STATE(264), + [sym_mixed_group] = STATE(264), + [sym_text] = STATE(264), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(264), + [sym_inline_formula] = STATE(264), + [sym_begin] = STATE(66), + [sym_environment] = STATE(264), + [sym_caption] = STATE(264), + [sym_citation] = STATE(264), + [sym_package_include] = STATE(264), + [sym_class_include] = STATE(264), + [sym_latex_include] = STATE(264), + [sym_latex_input] = STATE(264), + [sym_biblatex_include] = STATE(264), + [sym_bibtex_include] = STATE(264), + [sym_graphics_include] = STATE(264), + [sym_svg_include] = STATE(264), + [sym_inkscape_include] = STATE(264), + [sym_verbatim_include] = STATE(264), + [sym_import] = STATE(264), + [sym_label_definition] = STATE(264), + [sym_label_reference] = STATE(264), + [sym_equation_label_reference] = STATE(264), + [sym_label_reference_range] = STATE(264), + [sym_label_number] = STATE(264), + [sym_command_definition] = STATE(264), + [sym_math_operator] = STATE(264), + [sym_glossary_entry_definition] = STATE(264), + [sym_glossary_entry_reference] = STATE(264), + [sym_acronym_definition] = STATE(264), + [sym_acronym_reference] = STATE(264), + [sym_theorem_definition] = STATE(264), + [sym_color_reference] = STATE(264), + [sym_color_definition] = STATE(264), + [sym_color_set_definition] = STATE(264), + [sym_pgf_library_import] = STATE(264), + [sym_tikz_library_import] = STATE(264), + [sym_generic_command] = STATE(264), + [aux_sym_part_repeat1] = STATE(264), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(608), + [aux_sym_chapter_token1] = ACTIONS(390), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(3016), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(606), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [268] = { + [sym__simple_content] = STATE(275), + [sym_paragraph] = STATE(275), + [sym_subparagraph] = STATE(275), + [sym_enum_item] = STATE(275), + [sym_brace_group] = STATE(275), + [sym_mixed_group] = STATE(275), + [sym_text] = STATE(275), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(275), + [sym_inline_formula] = STATE(275), + [sym_begin] = STATE(52), + [sym_environment] = STATE(275), + [sym_caption] = STATE(275), + [sym_citation] = STATE(275), + [sym_package_include] = STATE(275), + [sym_class_include] = STATE(275), + [sym_latex_include] = STATE(275), + [sym_latex_input] = STATE(275), + [sym_biblatex_include] = STATE(275), + [sym_bibtex_include] = STATE(275), + [sym_graphics_include] = STATE(275), + [sym_svg_include] = STATE(275), + [sym_inkscape_include] = STATE(275), + [sym_verbatim_include] = STATE(275), + [sym_import] = STATE(275), + [sym_label_definition] = STATE(275), + [sym_label_reference] = STATE(275), + [sym_equation_label_reference] = STATE(275), + [sym_label_reference_range] = STATE(275), + [sym_label_number] = STATE(275), + [sym_command_definition] = STATE(275), + [sym_math_operator] = STATE(275), + [sym_glossary_entry_definition] = STATE(275), + [sym_glossary_entry_reference] = STATE(275), + [sym_acronym_definition] = STATE(275), + [sym_acronym_reference] = STATE(275), + [sym_theorem_definition] = STATE(275), + [sym_color_reference] = STATE(275), + [sym_color_definition] = STATE(275), + [sym_color_set_definition] = STATE(275), + [sym_pgf_library_import] = STATE(275), + [sym_tikz_library_import] = STATE(275), + [sym_generic_command] = STATE(275), + [aux_sym_subsubsection_repeat1] = STATE(275), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(3018), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3020), + [aux_sym_chapter_token1] = ACTIONS(3020), + [aux_sym_section_token1] = ACTIONS(3020), + [aux_sym_subsection_token1] = ACTIONS(3020), + [aux_sym_subsubsection_token1] = ACTIONS(3020), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(3018), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(3022), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [269] = { + [sym__simple_content] = STATE(269), + [sym_section] = STATE(269), + [sym_subsection] = STATE(269), + [sym_subsubsection] = STATE(269), + [sym_paragraph] = STATE(269), + [sym_subparagraph] = STATE(269), + [sym_enum_item] = STATE(269), + [sym_brace_group] = STATE(269), + [sym_mixed_group] = STATE(269), + [sym_text] = STATE(269), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(269), + [sym_inline_formula] = STATE(269), + [sym_begin] = STATE(86), + [sym_environment] = STATE(269), + [sym_caption] = STATE(269), + [sym_citation] = STATE(269), + [sym_package_include] = STATE(269), + [sym_class_include] = STATE(269), + [sym_latex_include] = STATE(269), + [sym_latex_input] = STATE(269), + [sym_biblatex_include] = STATE(269), + [sym_bibtex_include] = STATE(269), + [sym_graphics_include] = STATE(269), + [sym_svg_include] = STATE(269), + [sym_inkscape_include] = STATE(269), + [sym_verbatim_include] = STATE(269), + [sym_import] = STATE(269), + [sym_label_definition] = STATE(269), + [sym_label_reference] = STATE(269), + [sym_equation_label_reference] = STATE(269), + [sym_label_reference_range] = STATE(269), + [sym_label_number] = STATE(269), + [sym_command_definition] = STATE(269), + [sym_math_operator] = STATE(269), + [sym_glossary_entry_definition] = STATE(269), + [sym_glossary_entry_reference] = STATE(269), + [sym_acronym_definition] = STATE(269), + [sym_acronym_reference] = STATE(269), + [sym_theorem_definition] = STATE(269), + [sym_color_reference] = STATE(269), + [sym_color_definition] = STATE(269), + [sym_color_set_definition] = STATE(269), + [sym_pgf_library_import] = STATE(269), + [sym_tikz_library_import] = STATE(269), + [sym_generic_command] = STATE(269), + [aux_sym_chapter_repeat1] = STATE(269), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(3024), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1535), + [aux_sym_section_token1] = ACTIONS(3027), + [aux_sym_subsection_token1] = ACTIONS(3030), + [aux_sym_subsubsection_token1] = ACTIONS(3033), + [aux_sym_paragraph_token1] = ACTIONS(3036), + [aux_sym_subparagraph_token1] = ACTIONS(3039), + [anon_sym_BSLASHitem] = ACTIONS(3042), + [anon_sym_LBRACK] = ACTIONS(3045), + [anon_sym_RBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(3048), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_COMMA] = ACTIONS(3051), + [anon_sym_EQ] = ACTIONS(3051), + [sym_word] = ACTIONS(3051), + [sym_param] = ACTIONS(3054), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3057), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3057), + [anon_sym_DOLLAR] = ACTIONS(3060), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3063), + [anon_sym_BSLASHbegin] = ACTIONS(1576), + [anon_sym_BSLASHcaption] = ACTIONS(3066), + [anon_sym_BSLASHcite] = ACTIONS(3069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3072), + [anon_sym_BSLASHCite] = ACTIONS(3069), + [anon_sym_BSLASHnocite] = ACTIONS(3069), + [anon_sym_BSLASHcitet] = ACTIONS(3069), + [anon_sym_BSLASHcitep] = ACTIONS(3069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3072), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3072), + [anon_sym_BSLASHciteauthor] = ACTIONS(3069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3072), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3072), + [anon_sym_BSLASHcitetitle] = ACTIONS(3069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3072), + [anon_sym_BSLASHciteyear] = ACTIONS(3069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3072), + [anon_sym_BSLASHcitedate] = ACTIONS(3069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3072), + [anon_sym_BSLASHciteurl] = ACTIONS(3069), + [anon_sym_BSLASHfullcite] = ACTIONS(3069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3069), + [anon_sym_BSLASHcitealt] = ACTIONS(3069), + [anon_sym_BSLASHcitealp] = ACTIONS(3069), + [anon_sym_BSLASHcitetext] = ACTIONS(3069), + [anon_sym_BSLASHparencite] = ACTIONS(3069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3072), + [anon_sym_BSLASHParencite] = ACTIONS(3069), + [anon_sym_BSLASHfootcite] = ACTIONS(3069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3069), + [anon_sym_BSLASHtextcite] = ACTIONS(3069), + [anon_sym_BSLASHTextcite] = ACTIONS(3069), + [anon_sym_BSLASHsmartcite] = ACTIONS(3069), + [anon_sym_BSLASHSmartcite] = ACTIONS(3069), + [anon_sym_BSLASHsupercite] = ACTIONS(3069), + [anon_sym_BSLASHautocite] = ACTIONS(3069), + [anon_sym_BSLASHAutocite] = ACTIONS(3069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3072), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3072), + [anon_sym_BSLASHvolcite] = ACTIONS(3069), + [anon_sym_BSLASHVolcite] = ACTIONS(3069), + [anon_sym_BSLASHpvolcite] = ACTIONS(3069), + [anon_sym_BSLASHPvolcite] = ACTIONS(3069), + [anon_sym_BSLASHfvolcite] = ACTIONS(3069), + [anon_sym_BSLASHftvolcite] = ACTIONS(3069), + [anon_sym_BSLASHsvolcite] = ACTIONS(3069), + [anon_sym_BSLASHSvolcite] = ACTIONS(3069), + [anon_sym_BSLASHtvolcite] = ACTIONS(3069), + [anon_sym_BSLASHTvolcite] = ACTIONS(3069), + [anon_sym_BSLASHavolcite] = ACTIONS(3069), + [anon_sym_BSLASHAvolcite] = ACTIONS(3069), + [anon_sym_BSLASHnotecite] = ACTIONS(3069), + [anon_sym_BSLASHpnotecite] = ACTIONS(3069), + [anon_sym_BSLASHPnotecite] = ACTIONS(3069), + [anon_sym_BSLASHfnotecite] = ACTIONS(3069), + [anon_sym_BSLASHusepackage] = ACTIONS(3075), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3075), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3078), + [anon_sym_BSLASHinclude] = ACTIONS(3081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3081), + [anon_sym_BSLASHinput] = ACTIONS(3084), + [anon_sym_BSLASHsubfile] = ACTIONS(3084), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3087), + [anon_sym_BSLASHbibliography] = ACTIONS(3090), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3093), + [anon_sym_BSLASHincludesvg] = ACTIONS(3096), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3099), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3102), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3102), + [anon_sym_BSLASHimport] = ACTIONS(3105), + [anon_sym_BSLASHsubimport] = ACTIONS(3105), + [anon_sym_BSLASHinputfrom] = ACTIONS(3105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3105), + [anon_sym_BSLASHincludefrom] = ACTIONS(3105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3105), + [anon_sym_BSLASHlabel] = ACTIONS(3108), + [anon_sym_BSLASHref] = ACTIONS(3111), + [anon_sym_BSLASHvref] = ACTIONS(3111), + [anon_sym_BSLASHVref] = ACTIONS(3111), + [anon_sym_BSLASHautoref] = ACTIONS(3111), + [anon_sym_BSLASHpageref] = ACTIONS(3111), + [anon_sym_BSLASHcref] = ACTIONS(3111), + [anon_sym_BSLASHCref] = ACTIONS(3111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3114), + [anon_sym_BSLASHnamecref] = ACTIONS(3111), + [anon_sym_BSLASHnameCref] = ACTIONS(3111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3111), + [anon_sym_BSLASHlabelcref] = ACTIONS(3111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3111), + [anon_sym_BSLASHeqref] = ACTIONS(3117), + [anon_sym_BSLASHcrefrange] = ACTIONS(3120), + [anon_sym_BSLASHCrefrange] = ACTIONS(3120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3123), + [anon_sym_BSLASHnewlabel] = ACTIONS(3126), + [anon_sym_BSLASHnewcommand] = ACTIONS(3129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3138), + [anon_sym_BSLASHgls] = ACTIONS(3141), + [anon_sym_BSLASHGls] = ACTIONS(3141), + [anon_sym_BSLASHGLS] = ACTIONS(3141), + [anon_sym_BSLASHglspl] = ACTIONS(3141), + [anon_sym_BSLASHGlspl] = ACTIONS(3141), + [anon_sym_BSLASHGLSpl] = ACTIONS(3141), + [anon_sym_BSLASHglsdisp] = ACTIONS(3141), + [anon_sym_BSLASHglslink] = ACTIONS(3141), + [anon_sym_BSLASHglstext] = ACTIONS(3141), + [anon_sym_BSLASHGlstext] = ACTIONS(3141), + [anon_sym_BSLASHGLStext] = ACTIONS(3141), + [anon_sym_BSLASHglsfirst] = ACTIONS(3141), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3141), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3141), + [anon_sym_BSLASHglsplural] = ACTIONS(3141), + [anon_sym_BSLASHGlsplural] = ACTIONS(3141), + [anon_sym_BSLASHGLSplural] = ACTIONS(3141), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3141), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3141), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3141), + [anon_sym_BSLASHglsname] = ACTIONS(3141), + [anon_sym_BSLASHGlsname] = ACTIONS(3141), + [anon_sym_BSLASHGLSname] = ACTIONS(3141), + [anon_sym_BSLASHglssymbol] = ACTIONS(3141), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3141), + [anon_sym_BSLASHglsdesc] = ACTIONS(3141), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3141), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3141), + [anon_sym_BSLASHglsuseri] = ACTIONS(3141), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3141), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3141), + [anon_sym_BSLASHglsuserii] = ACTIONS(3141), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3141), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3141), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3141), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3141), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3141), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3141), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3141), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3141), + [anon_sym_BSLASHglsuserv] = ACTIONS(3141), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3141), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3141), + [anon_sym_BSLASHglsuservi] = ACTIONS(3141), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3141), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3141), + [anon_sym_BSLASHnewacronym] = ACTIONS(3144), + [anon_sym_BSLASHacrshort] = ACTIONS(3147), + [anon_sym_BSLASHAcrshort] = ACTIONS(3147), + [anon_sym_BSLASHACRshort] = ACTIONS(3147), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3147), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3147), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3147), + [anon_sym_BSLASHacrlong] = ACTIONS(3147), + [anon_sym_BSLASHAcrlong] = ACTIONS(3147), + [anon_sym_BSLASHACRlong] = ACTIONS(3147), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3147), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3147), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3147), + [anon_sym_BSLASHacrfull] = ACTIONS(3147), + [anon_sym_BSLASHAcrfull] = ACTIONS(3147), + [anon_sym_BSLASHACRfull] = ACTIONS(3147), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3147), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3147), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3147), + [anon_sym_BSLASHacs] = ACTIONS(3147), + [anon_sym_BSLASHAcs] = ACTIONS(3147), + [anon_sym_BSLASHacsp] = ACTIONS(3147), + [anon_sym_BSLASHAcsp] = ACTIONS(3147), + [anon_sym_BSLASHacl] = ACTIONS(3147), + [anon_sym_BSLASHAcl] = ACTIONS(3147), + [anon_sym_BSLASHaclp] = ACTIONS(3147), + [anon_sym_BSLASHAclp] = ACTIONS(3147), + [anon_sym_BSLASHacf] = ACTIONS(3147), + [anon_sym_BSLASHAcf] = ACTIONS(3147), + [anon_sym_BSLASHacfp] = ACTIONS(3147), + [anon_sym_BSLASHAcfp] = ACTIONS(3147), + [anon_sym_BSLASHac] = ACTIONS(3147), + [anon_sym_BSLASHAc] = ACTIONS(3147), + [anon_sym_BSLASHacp] = ACTIONS(3147), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3147), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3147), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3147), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3147), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3147), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3147), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3147), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3147), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3147), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3147), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3150), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3150), + [anon_sym_BSLASHcolor] = ACTIONS(3153), + [anon_sym_BSLASHcolorbox] = ACTIONS(3153), + [anon_sym_BSLASHtextcolor] = ACTIONS(3153), + [anon_sym_BSLASHpagecolor] = ACTIONS(3153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3159), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3162), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3165), + }, + [270] = { + [sym__simple_content] = STATE(281), + [sym_section] = STATE(281), + [sym_subsection] = STATE(281), + [sym_subsubsection] = STATE(281), + [sym_paragraph] = STATE(281), + [sym_subparagraph] = STATE(281), + [sym_enum_item] = STATE(281), + [sym_brace_group] = STATE(281), + [sym_mixed_group] = STATE(281), + [sym_text] = STATE(281), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(281), + [sym_inline_formula] = STATE(281), + [sym_begin] = STATE(59), + [sym_environment] = STATE(281), + [sym_caption] = STATE(281), + [sym_citation] = STATE(281), + [sym_package_include] = STATE(281), + [sym_class_include] = STATE(281), + [sym_latex_include] = STATE(281), + [sym_latex_input] = STATE(281), + [sym_biblatex_include] = STATE(281), + [sym_bibtex_include] = STATE(281), + [sym_graphics_include] = STATE(281), + [sym_svg_include] = STATE(281), + [sym_inkscape_include] = STATE(281), + [sym_verbatim_include] = STATE(281), + [sym_import] = STATE(281), + [sym_label_definition] = STATE(281), + [sym_label_reference] = STATE(281), + [sym_equation_label_reference] = STATE(281), + [sym_label_reference_range] = STATE(281), + [sym_label_number] = STATE(281), + [sym_command_definition] = STATE(281), + [sym_math_operator] = STATE(281), + [sym_glossary_entry_definition] = STATE(281), + [sym_glossary_entry_reference] = STATE(281), + [sym_acronym_definition] = STATE(281), + [sym_acronym_reference] = STATE(281), + [sym_theorem_definition] = STATE(281), + [sym_color_reference] = STATE(281), + [sym_color_definition] = STATE(281), + [sym_color_set_definition] = STATE(281), + [sym_pgf_library_import] = STATE(281), + [sym_tikz_library_import] = STATE(281), + [sym_generic_command] = STATE(281), + [aux_sym_chapter_repeat1] = STATE(281), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1100), + [aux_sym_chapter_token1] = ACTIONS(1100), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(3168), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1098), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [271] = { + [sym__simple_content] = STATE(282), + [sym_section] = STATE(282), + [sym_subsection] = STATE(282), + [sym_subsubsection] = STATE(282), + [sym_paragraph] = STATE(282), + [sym_subparagraph] = STATE(282), + [sym_enum_item] = STATE(282), + [sym_brace_group] = STATE(282), + [sym_mixed_group] = STATE(282), + [sym_text] = STATE(282), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(282), + [sym_inline_formula] = STATE(282), + [sym_begin] = STATE(66), + [sym_environment] = STATE(282), + [sym_caption] = STATE(282), + [sym_citation] = STATE(282), + [sym_package_include] = STATE(282), + [sym_class_include] = STATE(282), + [sym_latex_include] = STATE(282), + [sym_latex_input] = STATE(282), + [sym_biblatex_include] = STATE(282), + [sym_bibtex_include] = STATE(282), + [sym_graphics_include] = STATE(282), + [sym_svg_include] = STATE(282), + [sym_inkscape_include] = STATE(282), + [sym_verbatim_include] = STATE(282), + [sym_import] = STATE(282), + [sym_label_definition] = STATE(282), + [sym_label_reference] = STATE(282), + [sym_equation_label_reference] = STATE(282), + [sym_label_reference_range] = STATE(282), + [sym_label_number] = STATE(282), + [sym_command_definition] = STATE(282), + [sym_math_operator] = STATE(282), + [sym_glossary_entry_definition] = STATE(282), + [sym_glossary_entry_reference] = STATE(282), + [sym_acronym_definition] = STATE(282), + [sym_acronym_reference] = STATE(282), + [sym_theorem_definition] = STATE(282), + [sym_color_reference] = STATE(282), + [sym_color_definition] = STATE(282), + [sym_color_set_definition] = STATE(282), + [sym_pgf_library_import] = STATE(282), + [sym_tikz_library_import] = STATE(282), + [sym_generic_command] = STATE(282), + [aux_sym_chapter_repeat1] = STATE(282), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1905), + [aux_sym_chapter_token1] = ACTIONS(1905), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(3170), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1903), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [272] = { + [sym__simple_content] = STATE(270), + [sym_section] = STATE(270), + [sym_subsection] = STATE(270), + [sym_subsubsection] = STATE(270), + [sym_paragraph] = STATE(270), + [sym_subparagraph] = STATE(270), + [sym_enum_item] = STATE(270), + [sym_brace_group] = STATE(270), + [sym_mixed_group] = STATE(270), + [sym_text] = STATE(270), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(270), + [sym_inline_formula] = STATE(270), + [sym_begin] = STATE(59), + [sym_environment] = STATE(270), + [sym_caption] = STATE(270), + [sym_citation] = STATE(270), + [sym_package_include] = STATE(270), + [sym_class_include] = STATE(270), + [sym_latex_include] = STATE(270), + [sym_latex_input] = STATE(270), + [sym_biblatex_include] = STATE(270), + [sym_bibtex_include] = STATE(270), + [sym_graphics_include] = STATE(270), + [sym_svg_include] = STATE(270), + [sym_inkscape_include] = STATE(270), + [sym_verbatim_include] = STATE(270), + [sym_import] = STATE(270), + [sym_label_definition] = STATE(270), + [sym_label_reference] = STATE(270), + [sym_equation_label_reference] = STATE(270), + [sym_label_reference_range] = STATE(270), + [sym_label_number] = STATE(270), + [sym_command_definition] = STATE(270), + [sym_math_operator] = STATE(270), + [sym_glossary_entry_definition] = STATE(270), + [sym_glossary_entry_reference] = STATE(270), + [sym_acronym_definition] = STATE(270), + [sym_acronym_reference] = STATE(270), + [sym_theorem_definition] = STATE(270), + [sym_color_reference] = STATE(270), + [sym_color_definition] = STATE(270), + [sym_color_set_definition] = STATE(270), + [sym_pgf_library_import] = STATE(270), + [sym_tikz_library_import] = STATE(270), + [sym_generic_command] = STATE(270), + [aux_sym_chapter_repeat1] = STATE(270), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1905), + [aux_sym_chapter_token1] = ACTIONS(1905), + [aux_sym_section_token1] = ACTIONS(288), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(3172), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [273] = { + [sym__simple_content] = STATE(273), + [sym_section] = STATE(273), + [sym_subsection] = STATE(273), + [sym_subsubsection] = STATE(273), + [sym_paragraph] = STATE(273), + [sym_subparagraph] = STATE(273), + [sym_enum_item] = STATE(273), + [sym_brace_group] = STATE(273), + [sym_mixed_group] = STATE(273), + [sym_text] = STATE(273), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(273), + [sym_inline_formula] = STATE(273), + [sym_begin] = STATE(73), + [sym_environment] = STATE(273), + [sym_caption] = STATE(273), + [sym_citation] = STATE(273), + [sym_package_include] = STATE(273), + [sym_class_include] = STATE(273), + [sym_latex_include] = STATE(273), + [sym_latex_input] = STATE(273), + [sym_biblatex_include] = STATE(273), + [sym_bibtex_include] = STATE(273), + [sym_graphics_include] = STATE(273), + [sym_svg_include] = STATE(273), + [sym_inkscape_include] = STATE(273), + [sym_verbatim_include] = STATE(273), + [sym_import] = STATE(273), + [sym_label_definition] = STATE(273), + [sym_label_reference] = STATE(273), + [sym_equation_label_reference] = STATE(273), + [sym_label_reference_range] = STATE(273), + [sym_label_number] = STATE(273), + [sym_command_definition] = STATE(273), + [sym_math_operator] = STATE(273), + [sym_glossary_entry_definition] = STATE(273), + [sym_glossary_entry_reference] = STATE(273), + [sym_acronym_definition] = STATE(273), + [sym_acronym_reference] = STATE(273), + [sym_theorem_definition] = STATE(273), + [sym_color_reference] = STATE(273), + [sym_color_definition] = STATE(273), + [sym_color_set_definition] = STATE(273), + [sym_pgf_library_import] = STATE(273), + [sym_tikz_library_import] = STATE(273), + [sym_generic_command] = STATE(273), + [aux_sym_chapter_repeat1] = STATE(273), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(3174), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1535), + [aux_sym_chapter_token1] = ACTIONS(1535), + [aux_sym_section_token1] = ACTIONS(3177), + [aux_sym_subsection_token1] = ACTIONS(3180), + [aux_sym_subsubsection_token1] = ACTIONS(3183), + [aux_sym_paragraph_token1] = ACTIONS(3186), + [aux_sym_subparagraph_token1] = ACTIONS(3189), + [anon_sym_BSLASHitem] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_COMMA] = ACTIONS(3201), + [anon_sym_EQ] = ACTIONS(3201), + [sym_word] = ACTIONS(3201), + [sym_param] = ACTIONS(3204), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3207), + [anon_sym_DOLLAR] = ACTIONS(3210), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3213), + [anon_sym_BSLASHbegin] = ACTIONS(1576), + [anon_sym_BSLASHend] = ACTIONS(1535), + [anon_sym_BSLASHcaption] = ACTIONS(3216), + [anon_sym_BSLASHcite] = ACTIONS(3219), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3222), + [anon_sym_BSLASHCite] = ACTIONS(3219), + [anon_sym_BSLASHnocite] = ACTIONS(3219), + [anon_sym_BSLASHcitet] = ACTIONS(3219), + [anon_sym_BSLASHcitep] = ACTIONS(3219), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3222), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3222), + [anon_sym_BSLASHciteauthor] = ACTIONS(3219), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3222), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3219), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3222), + [anon_sym_BSLASHcitetitle] = ACTIONS(3219), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3222), + [anon_sym_BSLASHciteyear] = ACTIONS(3219), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3222), + [anon_sym_BSLASHcitedate] = ACTIONS(3219), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3222), + [anon_sym_BSLASHciteurl] = ACTIONS(3219), + [anon_sym_BSLASHfullcite] = ACTIONS(3219), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3219), + [anon_sym_BSLASHcitealt] = ACTIONS(3219), + [anon_sym_BSLASHcitealp] = ACTIONS(3219), + [anon_sym_BSLASHcitetext] = ACTIONS(3219), + [anon_sym_BSLASHparencite] = ACTIONS(3219), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3222), + [anon_sym_BSLASHParencite] = ACTIONS(3219), + [anon_sym_BSLASHfootcite] = ACTIONS(3219), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3219), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3219), + [anon_sym_BSLASHtextcite] = ACTIONS(3219), + [anon_sym_BSLASHTextcite] = ACTIONS(3219), + [anon_sym_BSLASHsmartcite] = ACTIONS(3219), + [anon_sym_BSLASHSmartcite] = ACTIONS(3219), + [anon_sym_BSLASHsupercite] = ACTIONS(3219), + [anon_sym_BSLASHautocite] = ACTIONS(3219), + [anon_sym_BSLASHAutocite] = ACTIONS(3219), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3222), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3222), + [anon_sym_BSLASHvolcite] = ACTIONS(3219), + [anon_sym_BSLASHVolcite] = ACTIONS(3219), + [anon_sym_BSLASHpvolcite] = ACTIONS(3219), + [anon_sym_BSLASHPvolcite] = ACTIONS(3219), + [anon_sym_BSLASHfvolcite] = ACTIONS(3219), + [anon_sym_BSLASHftvolcite] = ACTIONS(3219), + [anon_sym_BSLASHsvolcite] = ACTIONS(3219), + [anon_sym_BSLASHSvolcite] = ACTIONS(3219), + [anon_sym_BSLASHtvolcite] = ACTIONS(3219), + [anon_sym_BSLASHTvolcite] = ACTIONS(3219), + [anon_sym_BSLASHavolcite] = ACTIONS(3219), + [anon_sym_BSLASHAvolcite] = ACTIONS(3219), + [anon_sym_BSLASHnotecite] = ACTIONS(3219), + [anon_sym_BSLASHpnotecite] = ACTIONS(3219), + [anon_sym_BSLASHPnotecite] = ACTIONS(3219), + [anon_sym_BSLASHfnotecite] = ACTIONS(3219), + [anon_sym_BSLASHusepackage] = ACTIONS(3225), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3225), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3228), + [anon_sym_BSLASHinclude] = ACTIONS(3231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3231), + [anon_sym_BSLASHinput] = ACTIONS(3234), + [anon_sym_BSLASHsubfile] = ACTIONS(3234), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3237), + [anon_sym_BSLASHbibliography] = ACTIONS(3240), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3243), + [anon_sym_BSLASHincludesvg] = ACTIONS(3246), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3252), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3252), + [anon_sym_BSLASHimport] = ACTIONS(3255), + [anon_sym_BSLASHsubimport] = ACTIONS(3255), + [anon_sym_BSLASHinputfrom] = ACTIONS(3255), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3255), + [anon_sym_BSLASHincludefrom] = ACTIONS(3255), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3255), + [anon_sym_BSLASHlabel] = ACTIONS(3258), + [anon_sym_BSLASHref] = ACTIONS(3261), + [anon_sym_BSLASHvref] = ACTIONS(3261), + [anon_sym_BSLASHVref] = ACTIONS(3261), + [anon_sym_BSLASHautoref] = ACTIONS(3261), + [anon_sym_BSLASHpageref] = ACTIONS(3261), + [anon_sym_BSLASHcref] = ACTIONS(3261), + [anon_sym_BSLASHCref] = ACTIONS(3261), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3264), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3264), + [anon_sym_BSLASHnamecref] = ACTIONS(3261), + [anon_sym_BSLASHnameCref] = ACTIONS(3261), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3261), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3261), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3261), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3261), + [anon_sym_BSLASHlabelcref] = ACTIONS(3261), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3261), + [anon_sym_BSLASHeqref] = ACTIONS(3267), + [anon_sym_BSLASHcrefrange] = ACTIONS(3270), + [anon_sym_BSLASHCrefrange] = ACTIONS(3270), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), + [anon_sym_BSLASHnewlabel] = ACTIONS(3276), + [anon_sym_BSLASHnewcommand] = ACTIONS(3279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3282), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3288), + [anon_sym_BSLASHgls] = ACTIONS(3291), + [anon_sym_BSLASHGls] = ACTIONS(3291), + [anon_sym_BSLASHGLS] = ACTIONS(3291), + [anon_sym_BSLASHglspl] = ACTIONS(3291), + [anon_sym_BSLASHGlspl] = ACTIONS(3291), + [anon_sym_BSLASHGLSpl] = ACTIONS(3291), + [anon_sym_BSLASHglsdisp] = ACTIONS(3291), + [anon_sym_BSLASHglslink] = ACTIONS(3291), + [anon_sym_BSLASHglstext] = ACTIONS(3291), + [anon_sym_BSLASHGlstext] = ACTIONS(3291), + [anon_sym_BSLASHGLStext] = ACTIONS(3291), + [anon_sym_BSLASHglsfirst] = ACTIONS(3291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3291), + [anon_sym_BSLASHglsplural] = ACTIONS(3291), + [anon_sym_BSLASHGlsplural] = ACTIONS(3291), + [anon_sym_BSLASHGLSplural] = ACTIONS(3291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3291), + [anon_sym_BSLASHglsname] = ACTIONS(3291), + [anon_sym_BSLASHGlsname] = ACTIONS(3291), + [anon_sym_BSLASHGLSname] = ACTIONS(3291), + [anon_sym_BSLASHglssymbol] = ACTIONS(3291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3291), + [anon_sym_BSLASHglsdesc] = ACTIONS(3291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3291), + [anon_sym_BSLASHglsuseri] = ACTIONS(3291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3291), + [anon_sym_BSLASHglsuserii] = ACTIONS(3291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3291), + [anon_sym_BSLASHglsuserv] = ACTIONS(3291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3291), + [anon_sym_BSLASHglsuservi] = ACTIONS(3291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3291), + [anon_sym_BSLASHnewacronym] = ACTIONS(3294), + [anon_sym_BSLASHacrshort] = ACTIONS(3297), + [anon_sym_BSLASHAcrshort] = ACTIONS(3297), + [anon_sym_BSLASHACRshort] = ACTIONS(3297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3297), + [anon_sym_BSLASHacrlong] = ACTIONS(3297), + [anon_sym_BSLASHAcrlong] = ACTIONS(3297), + [anon_sym_BSLASHACRlong] = ACTIONS(3297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3297), + [anon_sym_BSLASHacrfull] = ACTIONS(3297), + [anon_sym_BSLASHAcrfull] = ACTIONS(3297), + [anon_sym_BSLASHACRfull] = ACTIONS(3297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3297), + [anon_sym_BSLASHacs] = ACTIONS(3297), + [anon_sym_BSLASHAcs] = ACTIONS(3297), + [anon_sym_BSLASHacsp] = ACTIONS(3297), + [anon_sym_BSLASHAcsp] = ACTIONS(3297), + [anon_sym_BSLASHacl] = ACTIONS(3297), + [anon_sym_BSLASHAcl] = ACTIONS(3297), + [anon_sym_BSLASHaclp] = ACTIONS(3297), + [anon_sym_BSLASHAclp] = ACTIONS(3297), + [anon_sym_BSLASHacf] = ACTIONS(3297), + [anon_sym_BSLASHAcf] = ACTIONS(3297), + [anon_sym_BSLASHacfp] = ACTIONS(3297), + [anon_sym_BSLASHAcfp] = ACTIONS(3297), + [anon_sym_BSLASHac] = ACTIONS(3297), + [anon_sym_BSLASHAc] = ACTIONS(3297), + [anon_sym_BSLASHacp] = ACTIONS(3297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3300), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3300), + [anon_sym_BSLASHcolor] = ACTIONS(3303), + [anon_sym_BSLASHcolorbox] = ACTIONS(3303), + [anon_sym_BSLASHtextcolor] = ACTIONS(3303), + [anon_sym_BSLASHpagecolor] = ACTIONS(3303), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3306), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3309), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3312), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3315), + }, + [274] = { + [sym__simple_content] = STATE(276), + [sym_section] = STATE(276), + [sym_subsection] = STATE(276), + [sym_subsubsection] = STATE(276), + [sym_paragraph] = STATE(276), + [sym_subparagraph] = STATE(276), + [sym_enum_item] = STATE(276), + [sym_brace_group] = STATE(276), + [sym_mixed_group] = STATE(276), + [sym_text] = STATE(276), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(276), + [sym_inline_formula] = STATE(276), + [sym_begin] = STATE(86), + [sym_environment] = STATE(276), + [sym_caption] = STATE(276), + [sym_citation] = STATE(276), + [sym_package_include] = STATE(276), + [sym_class_include] = STATE(276), + [sym_latex_include] = STATE(276), + [sym_latex_input] = STATE(276), + [sym_biblatex_include] = STATE(276), + [sym_bibtex_include] = STATE(276), + [sym_graphics_include] = STATE(276), + [sym_svg_include] = STATE(276), + [sym_inkscape_include] = STATE(276), + [sym_verbatim_include] = STATE(276), + [sym_import] = STATE(276), + [sym_label_definition] = STATE(276), + [sym_label_reference] = STATE(276), + [sym_equation_label_reference] = STATE(276), + [sym_label_reference_range] = STATE(276), + [sym_label_number] = STATE(276), + [sym_command_definition] = STATE(276), + [sym_math_operator] = STATE(276), + [sym_glossary_entry_definition] = STATE(276), + [sym_glossary_entry_reference] = STATE(276), + [sym_acronym_definition] = STATE(276), + [sym_acronym_reference] = STATE(276), + [sym_theorem_definition] = STATE(276), + [sym_color_reference] = STATE(276), + [sym_color_definition] = STATE(276), + [sym_color_set_definition] = STATE(276), + [sym_pgf_library_import] = STATE(276), + [sym_tikz_library_import] = STATE(276), + [sym_generic_command] = STATE(276), + [aux_sym_chapter_repeat1] = STATE(276), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1905), + [aux_sym_section_token1] = ACTIONS(2302), + [aux_sym_subsection_token1] = ACTIONS(2304), + [aux_sym_subsubsection_token1] = ACTIONS(2306), + [aux_sym_paragraph_token1] = ACTIONS(2308), + [aux_sym_subparagraph_token1] = ACTIONS(2310), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(3318), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [275] = { + [sym__simple_content] = STATE(275), + [sym_paragraph] = STATE(275), + [sym_subparagraph] = STATE(275), + [sym_enum_item] = STATE(275), + [sym_brace_group] = STATE(275), + [sym_mixed_group] = STATE(275), + [sym_text] = STATE(275), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(275), + [sym_inline_formula] = STATE(275), + [sym_begin] = STATE(52), + [sym_environment] = STATE(275), + [sym_caption] = STATE(275), + [sym_citation] = STATE(275), + [sym_package_include] = STATE(275), + [sym_class_include] = STATE(275), + [sym_latex_include] = STATE(275), + [sym_latex_input] = STATE(275), + [sym_biblatex_include] = STATE(275), + [sym_bibtex_include] = STATE(275), + [sym_graphics_include] = STATE(275), + [sym_svg_include] = STATE(275), + [sym_inkscape_include] = STATE(275), + [sym_verbatim_include] = STATE(275), + [sym_import] = STATE(275), + [sym_label_definition] = STATE(275), + [sym_label_reference] = STATE(275), + [sym_equation_label_reference] = STATE(275), + [sym_label_reference_range] = STATE(275), + [sym_label_number] = STATE(275), + [sym_command_definition] = STATE(275), + [sym_math_operator] = STATE(275), + [sym_glossary_entry_definition] = STATE(275), + [sym_glossary_entry_reference] = STATE(275), + [sym_acronym_definition] = STATE(275), + [sym_acronym_reference] = STATE(275), + [sym_theorem_definition] = STATE(275), + [sym_color_reference] = STATE(275), + [sym_color_definition] = STATE(275), + [sym_color_set_definition] = STATE(275), + [sym_pgf_library_import] = STATE(275), + [sym_tikz_library_import] = STATE(275), + [sym_generic_command] = STATE(275), + [aux_sym_subsubsection_repeat1] = STATE(275), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(3320), + [sym_generic_command_name] = ACTIONS(3322), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3325), + [aux_sym_chapter_token1] = ACTIONS(3325), + [aux_sym_section_token1] = ACTIONS(3325), + [aux_sym_subsection_token1] = ACTIONS(3325), + [aux_sym_subsubsection_token1] = ACTIONS(3325), + [aux_sym_paragraph_token1] = ACTIONS(3327), + [aux_sym_subparagraph_token1] = ACTIONS(3330), + [anon_sym_BSLASHitem] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_RBRACK] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3339), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_RPAREN] = ACTIONS(3320), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(3342), + [sym_word] = ACTIONS(3342), + [sym_param] = ACTIONS(3345), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3348), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3348), + [anon_sym_DOLLAR] = ACTIONS(3351), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3354), + [anon_sym_BSLASHbegin] = ACTIONS(3357), + [anon_sym_BSLASHcaption] = ACTIONS(3360), + [anon_sym_BSLASHcite] = ACTIONS(3363), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3366), + [anon_sym_BSLASHCite] = ACTIONS(3363), + [anon_sym_BSLASHnocite] = ACTIONS(3363), + [anon_sym_BSLASHcitet] = ACTIONS(3363), + [anon_sym_BSLASHcitep] = ACTIONS(3363), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3366), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3366), + [anon_sym_BSLASHciteauthor] = ACTIONS(3363), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3366), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3363), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3366), + [anon_sym_BSLASHcitetitle] = ACTIONS(3363), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3366), + [anon_sym_BSLASHciteyear] = ACTIONS(3363), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3366), + [anon_sym_BSLASHcitedate] = ACTIONS(3363), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3366), + [anon_sym_BSLASHciteurl] = ACTIONS(3363), + [anon_sym_BSLASHfullcite] = ACTIONS(3363), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3363), + [anon_sym_BSLASHcitealt] = ACTIONS(3363), + [anon_sym_BSLASHcitealp] = ACTIONS(3363), + [anon_sym_BSLASHcitetext] = ACTIONS(3363), + [anon_sym_BSLASHparencite] = ACTIONS(3363), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3366), + [anon_sym_BSLASHParencite] = ACTIONS(3363), + [anon_sym_BSLASHfootcite] = ACTIONS(3363), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3363), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3363), + [anon_sym_BSLASHtextcite] = ACTIONS(3363), + [anon_sym_BSLASHTextcite] = ACTIONS(3363), + [anon_sym_BSLASHsmartcite] = ACTIONS(3363), + [anon_sym_BSLASHSmartcite] = ACTIONS(3363), + [anon_sym_BSLASHsupercite] = ACTIONS(3363), + [anon_sym_BSLASHautocite] = ACTIONS(3363), + [anon_sym_BSLASHAutocite] = ACTIONS(3363), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3366), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3366), + [anon_sym_BSLASHvolcite] = ACTIONS(3363), + [anon_sym_BSLASHVolcite] = ACTIONS(3363), + [anon_sym_BSLASHpvolcite] = ACTIONS(3363), + [anon_sym_BSLASHPvolcite] = ACTIONS(3363), + [anon_sym_BSLASHfvolcite] = ACTIONS(3363), + [anon_sym_BSLASHftvolcite] = ACTIONS(3363), + [anon_sym_BSLASHsvolcite] = ACTIONS(3363), + [anon_sym_BSLASHSvolcite] = ACTIONS(3363), + [anon_sym_BSLASHtvolcite] = ACTIONS(3363), + [anon_sym_BSLASHTvolcite] = ACTIONS(3363), + [anon_sym_BSLASHavolcite] = ACTIONS(3363), + [anon_sym_BSLASHAvolcite] = ACTIONS(3363), + [anon_sym_BSLASHnotecite] = ACTIONS(3363), + [anon_sym_BSLASHpnotecite] = ACTIONS(3363), + [anon_sym_BSLASHPnotecite] = ACTIONS(3363), + [anon_sym_BSLASHfnotecite] = ACTIONS(3363), + [anon_sym_BSLASHusepackage] = ACTIONS(3369), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3369), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3372), + [anon_sym_BSLASHinclude] = ACTIONS(3375), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3375), + [anon_sym_BSLASHinput] = ACTIONS(3378), + [anon_sym_BSLASHsubfile] = ACTIONS(3378), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3381), + [anon_sym_BSLASHbibliography] = ACTIONS(3384), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3387), + [anon_sym_BSLASHincludesvg] = ACTIONS(3390), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3396), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3396), + [anon_sym_BSLASHimport] = ACTIONS(3399), + [anon_sym_BSLASHsubimport] = ACTIONS(3399), + [anon_sym_BSLASHinputfrom] = ACTIONS(3399), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3399), + [anon_sym_BSLASHincludefrom] = ACTIONS(3399), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3399), + [anon_sym_BSLASHlabel] = ACTIONS(3402), + [anon_sym_BSLASHref] = ACTIONS(3405), + [anon_sym_BSLASHvref] = ACTIONS(3405), + [anon_sym_BSLASHVref] = ACTIONS(3405), + [anon_sym_BSLASHautoref] = ACTIONS(3405), + [anon_sym_BSLASHpageref] = ACTIONS(3405), + [anon_sym_BSLASHcref] = ACTIONS(3405), + [anon_sym_BSLASHCref] = ACTIONS(3405), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3408), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3408), + [anon_sym_BSLASHnamecref] = ACTIONS(3405), + [anon_sym_BSLASHnameCref] = ACTIONS(3405), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3405), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3405), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3405), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3405), + [anon_sym_BSLASHlabelcref] = ACTIONS(3405), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3405), + [anon_sym_BSLASHeqref] = ACTIONS(3411), + [anon_sym_BSLASHcrefrange] = ACTIONS(3414), + [anon_sym_BSLASHCrefrange] = ACTIONS(3414), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3417), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3417), + [anon_sym_BSLASHnewlabel] = ACTIONS(3420), + [anon_sym_BSLASHnewcommand] = ACTIONS(3423), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3423), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3423), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3426), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3429), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3432), + [anon_sym_BSLASHgls] = ACTIONS(3435), + [anon_sym_BSLASHGls] = ACTIONS(3435), + [anon_sym_BSLASHGLS] = ACTIONS(3435), + [anon_sym_BSLASHglspl] = ACTIONS(3435), + [anon_sym_BSLASHGlspl] = ACTIONS(3435), + [anon_sym_BSLASHGLSpl] = ACTIONS(3435), + [anon_sym_BSLASHglsdisp] = ACTIONS(3435), + [anon_sym_BSLASHglslink] = ACTIONS(3435), + [anon_sym_BSLASHglstext] = ACTIONS(3435), + [anon_sym_BSLASHGlstext] = ACTIONS(3435), + [anon_sym_BSLASHGLStext] = ACTIONS(3435), + [anon_sym_BSLASHglsfirst] = ACTIONS(3435), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3435), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3435), + [anon_sym_BSLASHglsplural] = ACTIONS(3435), + [anon_sym_BSLASHGlsplural] = ACTIONS(3435), + [anon_sym_BSLASHGLSplural] = ACTIONS(3435), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3435), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3435), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3435), + [anon_sym_BSLASHglsname] = ACTIONS(3435), + [anon_sym_BSLASHGlsname] = ACTIONS(3435), + [anon_sym_BSLASHGLSname] = ACTIONS(3435), + [anon_sym_BSLASHglssymbol] = ACTIONS(3435), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3435), + [anon_sym_BSLASHglsdesc] = ACTIONS(3435), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3435), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3435), + [anon_sym_BSLASHglsuseri] = ACTIONS(3435), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3435), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3435), + [anon_sym_BSLASHglsuserii] = ACTIONS(3435), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3435), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3435), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3435), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3435), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3435), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3435), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3435), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3435), + [anon_sym_BSLASHglsuserv] = ACTIONS(3435), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3435), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3435), + [anon_sym_BSLASHglsuservi] = ACTIONS(3435), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3435), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3435), + [anon_sym_BSLASHnewacronym] = ACTIONS(3438), + [anon_sym_BSLASHacrshort] = ACTIONS(3441), + [anon_sym_BSLASHAcrshort] = ACTIONS(3441), + [anon_sym_BSLASHACRshort] = ACTIONS(3441), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3441), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3441), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3441), + [anon_sym_BSLASHacrlong] = ACTIONS(3441), + [anon_sym_BSLASHAcrlong] = ACTIONS(3441), + [anon_sym_BSLASHACRlong] = ACTIONS(3441), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3441), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3441), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3441), + [anon_sym_BSLASHacrfull] = ACTIONS(3441), + [anon_sym_BSLASHAcrfull] = ACTIONS(3441), + [anon_sym_BSLASHACRfull] = ACTIONS(3441), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3441), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3441), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3441), + [anon_sym_BSLASHacs] = ACTIONS(3441), + [anon_sym_BSLASHAcs] = ACTIONS(3441), + [anon_sym_BSLASHacsp] = ACTIONS(3441), + [anon_sym_BSLASHAcsp] = ACTIONS(3441), + [anon_sym_BSLASHacl] = ACTIONS(3441), + [anon_sym_BSLASHAcl] = ACTIONS(3441), + [anon_sym_BSLASHaclp] = ACTIONS(3441), + [anon_sym_BSLASHAclp] = ACTIONS(3441), + [anon_sym_BSLASHacf] = ACTIONS(3441), + [anon_sym_BSLASHAcf] = ACTIONS(3441), + [anon_sym_BSLASHacfp] = ACTIONS(3441), + [anon_sym_BSLASHAcfp] = ACTIONS(3441), + [anon_sym_BSLASHac] = ACTIONS(3441), + [anon_sym_BSLASHAc] = ACTIONS(3441), + [anon_sym_BSLASHacp] = ACTIONS(3441), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3441), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3441), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3441), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3441), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3441), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3441), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3441), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3441), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3441), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3441), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3444), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3444), + [anon_sym_BSLASHcolor] = ACTIONS(3447), + [anon_sym_BSLASHcolorbox] = ACTIONS(3447), + [anon_sym_BSLASHtextcolor] = ACTIONS(3447), + [anon_sym_BSLASHpagecolor] = ACTIONS(3447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3450), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3453), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3456), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3459), + }, + [276] = { + [sym__simple_content] = STATE(269), + [sym_section] = STATE(269), + [sym_subsection] = STATE(269), + [sym_subsubsection] = STATE(269), + [sym_paragraph] = STATE(269), + [sym_subparagraph] = STATE(269), + [sym_enum_item] = STATE(269), + [sym_brace_group] = STATE(269), + [sym_mixed_group] = STATE(269), + [sym_text] = STATE(269), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(269), + [sym_inline_formula] = STATE(269), + [sym_begin] = STATE(86), + [sym_environment] = STATE(269), + [sym_caption] = STATE(269), + [sym_citation] = STATE(269), + [sym_package_include] = STATE(269), + [sym_class_include] = STATE(269), + [sym_latex_include] = STATE(269), + [sym_latex_input] = STATE(269), + [sym_biblatex_include] = STATE(269), + [sym_bibtex_include] = STATE(269), + [sym_graphics_include] = STATE(269), + [sym_svg_include] = STATE(269), + [sym_inkscape_include] = STATE(269), + [sym_verbatim_include] = STATE(269), + [sym_import] = STATE(269), + [sym_label_definition] = STATE(269), + [sym_label_reference] = STATE(269), + [sym_equation_label_reference] = STATE(269), + [sym_label_reference_range] = STATE(269), + [sym_label_number] = STATE(269), + [sym_command_definition] = STATE(269), + [sym_math_operator] = STATE(269), + [sym_glossary_entry_definition] = STATE(269), + [sym_glossary_entry_reference] = STATE(269), + [sym_acronym_definition] = STATE(269), + [sym_acronym_reference] = STATE(269), + [sym_theorem_definition] = STATE(269), + [sym_color_reference] = STATE(269), + [sym_color_definition] = STATE(269), + [sym_color_set_definition] = STATE(269), + [sym_pgf_library_import] = STATE(269), + [sym_tikz_library_import] = STATE(269), + [sym_generic_command] = STATE(269), + [aux_sym_chapter_repeat1] = STATE(269), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1100), + [aux_sym_section_token1] = ACTIONS(2302), + [aux_sym_subsection_token1] = ACTIONS(2304), + [aux_sym_subsubsection_token1] = ACTIONS(2306), + [aux_sym_paragraph_token1] = ACTIONS(2308), + [aux_sym_subparagraph_token1] = ACTIONS(2310), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(3462), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [277] = { + [sym__simple_content] = STATE(279), + [sym_section] = STATE(279), + [sym_subsection] = STATE(279), + [sym_subsubsection] = STATE(279), + [sym_paragraph] = STATE(279), + [sym_subparagraph] = STATE(279), + [sym_enum_item] = STATE(279), + [sym_brace_group] = STATE(279), + [sym_mixed_group] = STATE(279), + [sym_text] = STATE(279), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(279), + [sym_inline_formula] = STATE(279), + [sym_begin] = STATE(73), + [sym_environment] = STATE(279), + [sym_caption] = STATE(279), + [sym_citation] = STATE(279), + [sym_package_include] = STATE(279), + [sym_class_include] = STATE(279), + [sym_latex_include] = STATE(279), + [sym_latex_input] = STATE(279), + [sym_biblatex_include] = STATE(279), + [sym_bibtex_include] = STATE(279), + [sym_graphics_include] = STATE(279), + [sym_svg_include] = STATE(279), + [sym_inkscape_include] = STATE(279), + [sym_verbatim_include] = STATE(279), + [sym_import] = STATE(279), + [sym_label_definition] = STATE(279), + [sym_label_reference] = STATE(279), + [sym_equation_label_reference] = STATE(279), + [sym_label_reference_range] = STATE(279), + [sym_label_number] = STATE(279), + [sym_command_definition] = STATE(279), + [sym_math_operator] = STATE(279), + [sym_glossary_entry_definition] = STATE(279), + [sym_glossary_entry_reference] = STATE(279), + [sym_acronym_definition] = STATE(279), + [sym_acronym_reference] = STATE(279), + [sym_theorem_definition] = STATE(279), + [sym_color_reference] = STATE(279), + [sym_color_definition] = STATE(279), + [sym_color_set_definition] = STATE(279), + [sym_pgf_library_import] = STATE(279), + [sym_tikz_library_import] = STATE(279), + [sym_generic_command] = STATE(279), + [aux_sym_chapter_repeat1] = STATE(279), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1905), + [aux_sym_chapter_token1] = ACTIONS(1905), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(3464), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(1905), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [278] = { + [sym__simple_content] = STATE(278), + [sym_section] = STATE(278), + [sym_subsection] = STATE(278), + [sym_subsubsection] = STATE(278), + [sym_paragraph] = STATE(278), + [sym_subparagraph] = STATE(278), + [sym_enum_item] = STATE(278), + [sym_brace_group] = STATE(278), + [sym_mixed_group] = STATE(278), + [sym_text] = STATE(278), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(278), + [sym_inline_formula] = STATE(278), + [sym_begin] = STATE(66), + [sym_environment] = STATE(278), + [sym_caption] = STATE(278), + [sym_citation] = STATE(278), + [sym_package_include] = STATE(278), + [sym_class_include] = STATE(278), + [sym_latex_include] = STATE(278), + [sym_latex_input] = STATE(278), + [sym_biblatex_include] = STATE(278), + [sym_bibtex_include] = STATE(278), + [sym_graphics_include] = STATE(278), + [sym_svg_include] = STATE(278), + [sym_inkscape_include] = STATE(278), + [sym_verbatim_include] = STATE(278), + [sym_import] = STATE(278), + [sym_label_definition] = STATE(278), + [sym_label_reference] = STATE(278), + [sym_equation_label_reference] = STATE(278), + [sym_label_reference_range] = STATE(278), + [sym_label_number] = STATE(278), + [sym_command_definition] = STATE(278), + [sym_math_operator] = STATE(278), + [sym_glossary_entry_definition] = STATE(278), + [sym_glossary_entry_reference] = STATE(278), + [sym_acronym_definition] = STATE(278), + [sym_acronym_reference] = STATE(278), + [sym_theorem_definition] = STATE(278), + [sym_color_reference] = STATE(278), + [sym_color_definition] = STATE(278), + [sym_color_set_definition] = STATE(278), + [sym_pgf_library_import] = STATE(278), + [sym_tikz_library_import] = STATE(278), + [sym_generic_command] = STATE(278), + [aux_sym_chapter_repeat1] = STATE(278), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(3466), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1535), + [aux_sym_chapter_token1] = ACTIONS(1535), + [aux_sym_section_token1] = ACTIONS(3469), + [aux_sym_subsection_token1] = ACTIONS(3472), + [aux_sym_subsubsection_token1] = ACTIONS(3475), + [aux_sym_paragraph_token1] = ACTIONS(3478), + [aux_sym_subparagraph_token1] = ACTIONS(3481), + [anon_sym_BSLASHitem] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3487), + [anon_sym_LBRACE] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3487), + [anon_sym_COMMA] = ACTIONS(3493), + [anon_sym_EQ] = ACTIONS(3493), + [sym_word] = ACTIONS(3493), + [sym_param] = ACTIONS(3496), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3499), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3499), + [anon_sym_DOLLAR] = ACTIONS(3502), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3505), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1530), + [anon_sym_BSLASHbegin] = ACTIONS(1576), + [anon_sym_BSLASHcaption] = ACTIONS(3508), + [anon_sym_BSLASHcite] = ACTIONS(3511), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3514), + [anon_sym_BSLASHCite] = ACTIONS(3511), + [anon_sym_BSLASHnocite] = ACTIONS(3511), + [anon_sym_BSLASHcitet] = ACTIONS(3511), + [anon_sym_BSLASHcitep] = ACTIONS(3511), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3514), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3514), + [anon_sym_BSLASHciteauthor] = ACTIONS(3511), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3514), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3511), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3514), + [anon_sym_BSLASHcitetitle] = ACTIONS(3511), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3514), + [anon_sym_BSLASHciteyear] = ACTIONS(3511), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3514), + [anon_sym_BSLASHcitedate] = ACTIONS(3511), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3514), + [anon_sym_BSLASHciteurl] = ACTIONS(3511), + [anon_sym_BSLASHfullcite] = ACTIONS(3511), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3511), + [anon_sym_BSLASHcitealt] = ACTIONS(3511), + [anon_sym_BSLASHcitealp] = ACTIONS(3511), + [anon_sym_BSLASHcitetext] = ACTIONS(3511), + [anon_sym_BSLASHparencite] = ACTIONS(3511), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3514), + [anon_sym_BSLASHParencite] = ACTIONS(3511), + [anon_sym_BSLASHfootcite] = ACTIONS(3511), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3511), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3511), + [anon_sym_BSLASHtextcite] = ACTIONS(3511), + [anon_sym_BSLASHTextcite] = ACTIONS(3511), + [anon_sym_BSLASHsmartcite] = ACTIONS(3511), + [anon_sym_BSLASHSmartcite] = ACTIONS(3511), + [anon_sym_BSLASHsupercite] = ACTIONS(3511), + [anon_sym_BSLASHautocite] = ACTIONS(3511), + [anon_sym_BSLASHAutocite] = ACTIONS(3511), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3514), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3514), + [anon_sym_BSLASHvolcite] = ACTIONS(3511), + [anon_sym_BSLASHVolcite] = ACTIONS(3511), + [anon_sym_BSLASHpvolcite] = ACTIONS(3511), + [anon_sym_BSLASHPvolcite] = ACTIONS(3511), + [anon_sym_BSLASHfvolcite] = ACTIONS(3511), + [anon_sym_BSLASHftvolcite] = ACTIONS(3511), + [anon_sym_BSLASHsvolcite] = ACTIONS(3511), + [anon_sym_BSLASHSvolcite] = ACTIONS(3511), + [anon_sym_BSLASHtvolcite] = ACTIONS(3511), + [anon_sym_BSLASHTvolcite] = ACTIONS(3511), + [anon_sym_BSLASHavolcite] = ACTIONS(3511), + [anon_sym_BSLASHAvolcite] = ACTIONS(3511), + [anon_sym_BSLASHnotecite] = ACTIONS(3511), + [anon_sym_BSLASHpnotecite] = ACTIONS(3511), + [anon_sym_BSLASHPnotecite] = ACTIONS(3511), + [anon_sym_BSLASHfnotecite] = ACTIONS(3511), + [anon_sym_BSLASHusepackage] = ACTIONS(3517), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3517), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3520), + [anon_sym_BSLASHinclude] = ACTIONS(3523), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3523), + [anon_sym_BSLASHinput] = ACTIONS(3526), + [anon_sym_BSLASHsubfile] = ACTIONS(3526), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3529), + [anon_sym_BSLASHbibliography] = ACTIONS(3532), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3535), + [anon_sym_BSLASHincludesvg] = ACTIONS(3538), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3541), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3544), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3544), + [anon_sym_BSLASHimport] = ACTIONS(3547), + [anon_sym_BSLASHsubimport] = ACTIONS(3547), + [anon_sym_BSLASHinputfrom] = ACTIONS(3547), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3547), + [anon_sym_BSLASHincludefrom] = ACTIONS(3547), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3547), + [anon_sym_BSLASHlabel] = ACTIONS(3550), + [anon_sym_BSLASHref] = ACTIONS(3553), + [anon_sym_BSLASHvref] = ACTIONS(3553), + [anon_sym_BSLASHVref] = ACTIONS(3553), + [anon_sym_BSLASHautoref] = ACTIONS(3553), + [anon_sym_BSLASHpageref] = ACTIONS(3553), + [anon_sym_BSLASHcref] = ACTIONS(3553), + [anon_sym_BSLASHCref] = ACTIONS(3553), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3556), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3556), + [anon_sym_BSLASHnamecref] = ACTIONS(3553), + [anon_sym_BSLASHnameCref] = ACTIONS(3553), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3553), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3553), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3553), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3553), + [anon_sym_BSLASHlabelcref] = ACTIONS(3553), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3553), + [anon_sym_BSLASHeqref] = ACTIONS(3559), + [anon_sym_BSLASHcrefrange] = ACTIONS(3562), + [anon_sym_BSLASHCrefrange] = ACTIONS(3562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3565), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3565), + [anon_sym_BSLASHnewlabel] = ACTIONS(3568), + [anon_sym_BSLASHnewcommand] = ACTIONS(3571), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3571), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3571), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3574), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3577), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3580), + [anon_sym_BSLASHgls] = ACTIONS(3583), + [anon_sym_BSLASHGls] = ACTIONS(3583), + [anon_sym_BSLASHGLS] = ACTIONS(3583), + [anon_sym_BSLASHglspl] = ACTIONS(3583), + [anon_sym_BSLASHGlspl] = ACTIONS(3583), + [anon_sym_BSLASHGLSpl] = ACTIONS(3583), + [anon_sym_BSLASHglsdisp] = ACTIONS(3583), + [anon_sym_BSLASHglslink] = ACTIONS(3583), + [anon_sym_BSLASHglstext] = ACTIONS(3583), + [anon_sym_BSLASHGlstext] = ACTIONS(3583), + [anon_sym_BSLASHGLStext] = ACTIONS(3583), + [anon_sym_BSLASHglsfirst] = ACTIONS(3583), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3583), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3583), + [anon_sym_BSLASHglsplural] = ACTIONS(3583), + [anon_sym_BSLASHGlsplural] = ACTIONS(3583), + [anon_sym_BSLASHGLSplural] = ACTIONS(3583), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3583), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3583), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3583), + [anon_sym_BSLASHglsname] = ACTIONS(3583), + [anon_sym_BSLASHGlsname] = ACTIONS(3583), + [anon_sym_BSLASHGLSname] = ACTIONS(3583), + [anon_sym_BSLASHglssymbol] = ACTIONS(3583), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3583), + [anon_sym_BSLASHglsdesc] = ACTIONS(3583), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3583), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3583), + [anon_sym_BSLASHglsuseri] = ACTIONS(3583), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3583), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3583), + [anon_sym_BSLASHglsuserii] = ACTIONS(3583), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3583), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3583), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3583), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3583), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3583), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3583), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3583), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3583), + [anon_sym_BSLASHglsuserv] = ACTIONS(3583), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3583), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3583), + [anon_sym_BSLASHglsuservi] = ACTIONS(3583), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3583), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3583), + [anon_sym_BSLASHnewacronym] = ACTIONS(3586), + [anon_sym_BSLASHacrshort] = ACTIONS(3589), + [anon_sym_BSLASHAcrshort] = ACTIONS(3589), + [anon_sym_BSLASHACRshort] = ACTIONS(3589), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3589), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3589), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3589), + [anon_sym_BSLASHacrlong] = ACTIONS(3589), + [anon_sym_BSLASHAcrlong] = ACTIONS(3589), + [anon_sym_BSLASHACRlong] = ACTIONS(3589), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3589), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3589), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3589), + [anon_sym_BSLASHacrfull] = ACTIONS(3589), + [anon_sym_BSLASHAcrfull] = ACTIONS(3589), + [anon_sym_BSLASHACRfull] = ACTIONS(3589), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3589), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3589), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3589), + [anon_sym_BSLASHacs] = ACTIONS(3589), + [anon_sym_BSLASHAcs] = ACTIONS(3589), + [anon_sym_BSLASHacsp] = ACTIONS(3589), + [anon_sym_BSLASHAcsp] = ACTIONS(3589), + [anon_sym_BSLASHacl] = ACTIONS(3589), + [anon_sym_BSLASHAcl] = ACTIONS(3589), + [anon_sym_BSLASHaclp] = ACTIONS(3589), + [anon_sym_BSLASHAclp] = ACTIONS(3589), + [anon_sym_BSLASHacf] = ACTIONS(3589), + [anon_sym_BSLASHAcf] = ACTIONS(3589), + [anon_sym_BSLASHacfp] = ACTIONS(3589), + [anon_sym_BSLASHAcfp] = ACTIONS(3589), + [anon_sym_BSLASHac] = ACTIONS(3589), + [anon_sym_BSLASHAc] = ACTIONS(3589), + [anon_sym_BSLASHacp] = ACTIONS(3589), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3589), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3589), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3589), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3589), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3589), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3589), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3589), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3589), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3589), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3589), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3592), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3592), + [anon_sym_BSLASHcolor] = ACTIONS(3595), + [anon_sym_BSLASHcolorbox] = ACTIONS(3595), + [anon_sym_BSLASHtextcolor] = ACTIONS(3595), + [anon_sym_BSLASHpagecolor] = ACTIONS(3595), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3598), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3601), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3604), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3607), + }, + [279] = { + [sym__simple_content] = STATE(273), + [sym_section] = STATE(273), + [sym_subsection] = STATE(273), + [sym_subsubsection] = STATE(273), + [sym_paragraph] = STATE(273), + [sym_subparagraph] = STATE(273), + [sym_enum_item] = STATE(273), + [sym_brace_group] = STATE(273), + [sym_mixed_group] = STATE(273), + [sym_text] = STATE(273), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(273), + [sym_inline_formula] = STATE(273), + [sym_begin] = STATE(73), + [sym_environment] = STATE(273), + [sym_caption] = STATE(273), + [sym_citation] = STATE(273), + [sym_package_include] = STATE(273), + [sym_class_include] = STATE(273), + [sym_latex_include] = STATE(273), + [sym_latex_input] = STATE(273), + [sym_biblatex_include] = STATE(273), + [sym_bibtex_include] = STATE(273), + [sym_graphics_include] = STATE(273), + [sym_svg_include] = STATE(273), + [sym_inkscape_include] = STATE(273), + [sym_verbatim_include] = STATE(273), + [sym_import] = STATE(273), + [sym_label_definition] = STATE(273), + [sym_label_reference] = STATE(273), + [sym_equation_label_reference] = STATE(273), + [sym_label_reference_range] = STATE(273), + [sym_label_number] = STATE(273), + [sym_command_definition] = STATE(273), + [sym_math_operator] = STATE(273), + [sym_glossary_entry_definition] = STATE(273), + [sym_glossary_entry_reference] = STATE(273), + [sym_acronym_definition] = STATE(273), + [sym_acronym_reference] = STATE(273), + [sym_theorem_definition] = STATE(273), + [sym_color_reference] = STATE(273), + [sym_color_definition] = STATE(273), + [sym_color_set_definition] = STATE(273), + [sym_pgf_library_import] = STATE(273), + [sym_tikz_library_import] = STATE(273), + [sym_generic_command] = STATE(273), + [aux_sym_chapter_repeat1] = STATE(273), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1100), + [aux_sym_chapter_token1] = ACTIONS(1100), + [aux_sym_section_token1] = ACTIONS(498), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(3610), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(1100), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [280] = { + [sym__simple_content] = STATE(268), + [sym_paragraph] = STATE(268), + [sym_subparagraph] = STATE(268), + [sym_enum_item] = STATE(268), + [sym_brace_group] = STATE(268), + [sym_mixed_group] = STATE(268), + [sym_text] = STATE(268), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(268), + [sym_inline_formula] = STATE(268), + [sym_begin] = STATE(52), + [sym_environment] = STATE(268), + [sym_caption] = STATE(268), + [sym_citation] = STATE(268), + [sym_package_include] = STATE(268), + [sym_class_include] = STATE(268), + [sym_latex_include] = STATE(268), + [sym_latex_input] = STATE(268), + [sym_biblatex_include] = STATE(268), + [sym_bibtex_include] = STATE(268), + [sym_graphics_include] = STATE(268), + [sym_svg_include] = STATE(268), + [sym_inkscape_include] = STATE(268), + [sym_verbatim_include] = STATE(268), + [sym_import] = STATE(268), + [sym_label_definition] = STATE(268), + [sym_label_reference] = STATE(268), + [sym_equation_label_reference] = STATE(268), + [sym_label_reference_range] = STATE(268), + [sym_label_number] = STATE(268), + [sym_command_definition] = STATE(268), + [sym_math_operator] = STATE(268), + [sym_glossary_entry_definition] = STATE(268), + [sym_glossary_entry_reference] = STATE(268), + [sym_acronym_definition] = STATE(268), + [sym_acronym_reference] = STATE(268), + [sym_theorem_definition] = STATE(268), + [sym_color_reference] = STATE(268), + [sym_color_definition] = STATE(268), + [sym_color_set_definition] = STATE(268), + [sym_pgf_library_import] = STATE(268), + [sym_tikz_library_import] = STATE(268), + [sym_generic_command] = STATE(268), + [aux_sym_subsubsection_repeat1] = STATE(268), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(3612), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3614), + [aux_sym_chapter_token1] = ACTIONS(3614), + [aux_sym_section_token1] = ACTIONS(3614), + [aux_sym_subsection_token1] = ACTIONS(3614), + [aux_sym_subsubsection_token1] = ACTIONS(3614), + [aux_sym_paragraph_token1] = ACTIONS(19), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(3616), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [281] = { + [sym__simple_content] = STATE(281), + [sym_section] = STATE(281), + [sym_subsection] = STATE(281), + [sym_subsubsection] = STATE(281), + [sym_paragraph] = STATE(281), + [sym_subparagraph] = STATE(281), + [sym_enum_item] = STATE(281), + [sym_brace_group] = STATE(281), + [sym_mixed_group] = STATE(281), + [sym_text] = STATE(281), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(281), + [sym_inline_formula] = STATE(281), + [sym_begin] = STATE(59), + [sym_environment] = STATE(281), + [sym_caption] = STATE(281), + [sym_citation] = STATE(281), + [sym_package_include] = STATE(281), + [sym_class_include] = STATE(281), + [sym_latex_include] = STATE(281), + [sym_latex_input] = STATE(281), + [sym_biblatex_include] = STATE(281), + [sym_bibtex_include] = STATE(281), + [sym_graphics_include] = STATE(281), + [sym_svg_include] = STATE(281), + [sym_inkscape_include] = STATE(281), + [sym_verbatim_include] = STATE(281), + [sym_import] = STATE(281), + [sym_label_definition] = STATE(281), + [sym_label_reference] = STATE(281), + [sym_equation_label_reference] = STATE(281), + [sym_label_reference_range] = STATE(281), + [sym_label_number] = STATE(281), + [sym_command_definition] = STATE(281), + [sym_math_operator] = STATE(281), + [sym_glossary_entry_definition] = STATE(281), + [sym_glossary_entry_reference] = STATE(281), + [sym_acronym_definition] = STATE(281), + [sym_acronym_reference] = STATE(281), + [sym_theorem_definition] = STATE(281), + [sym_color_reference] = STATE(281), + [sym_color_definition] = STATE(281), + [sym_color_set_definition] = STATE(281), + [sym_pgf_library_import] = STATE(281), + [sym_tikz_library_import] = STATE(281), + [sym_generic_command] = STATE(281), + [aux_sym_chapter_repeat1] = STATE(281), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(3618), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1535), + [aux_sym_chapter_token1] = ACTIONS(1535), + [aux_sym_section_token1] = ACTIONS(3621), + [aux_sym_subsection_token1] = ACTIONS(3624), + [aux_sym_subsubsection_token1] = ACTIONS(3627), + [aux_sym_paragraph_token1] = ACTIONS(3630), + [aux_sym_subparagraph_token1] = ACTIONS(3633), + [anon_sym_BSLASHitem] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3639), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3639), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_EQ] = ACTIONS(3645), + [sym_word] = ACTIONS(3645), + [sym_param] = ACTIONS(3648), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3651), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3651), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(3654), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3657), + [anon_sym_BSLASHbegin] = ACTIONS(1576), + [anon_sym_BSLASHcaption] = ACTIONS(3660), + [anon_sym_BSLASHcite] = ACTIONS(3663), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3666), + [anon_sym_BSLASHCite] = ACTIONS(3663), + [anon_sym_BSLASHnocite] = ACTIONS(3663), + [anon_sym_BSLASHcitet] = ACTIONS(3663), + [anon_sym_BSLASHcitep] = ACTIONS(3663), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3666), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3666), + [anon_sym_BSLASHciteauthor] = ACTIONS(3663), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3666), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3663), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3666), + [anon_sym_BSLASHcitetitle] = ACTIONS(3663), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3666), + [anon_sym_BSLASHciteyear] = ACTIONS(3663), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3666), + [anon_sym_BSLASHcitedate] = ACTIONS(3663), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3666), + [anon_sym_BSLASHciteurl] = ACTIONS(3663), + [anon_sym_BSLASHfullcite] = ACTIONS(3663), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3663), + [anon_sym_BSLASHcitealt] = ACTIONS(3663), + [anon_sym_BSLASHcitealp] = ACTIONS(3663), + [anon_sym_BSLASHcitetext] = ACTIONS(3663), + [anon_sym_BSLASHparencite] = ACTIONS(3663), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3666), + [anon_sym_BSLASHParencite] = ACTIONS(3663), + [anon_sym_BSLASHfootcite] = ACTIONS(3663), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3663), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3663), + [anon_sym_BSLASHtextcite] = ACTIONS(3663), + [anon_sym_BSLASHTextcite] = ACTIONS(3663), + [anon_sym_BSLASHsmartcite] = ACTIONS(3663), + [anon_sym_BSLASHSmartcite] = ACTIONS(3663), + [anon_sym_BSLASHsupercite] = ACTIONS(3663), + [anon_sym_BSLASHautocite] = ACTIONS(3663), + [anon_sym_BSLASHAutocite] = ACTIONS(3663), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3666), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3666), + [anon_sym_BSLASHvolcite] = ACTIONS(3663), + [anon_sym_BSLASHVolcite] = ACTIONS(3663), + [anon_sym_BSLASHpvolcite] = ACTIONS(3663), + [anon_sym_BSLASHPvolcite] = ACTIONS(3663), + [anon_sym_BSLASHfvolcite] = ACTIONS(3663), + [anon_sym_BSLASHftvolcite] = ACTIONS(3663), + [anon_sym_BSLASHsvolcite] = ACTIONS(3663), + [anon_sym_BSLASHSvolcite] = ACTIONS(3663), + [anon_sym_BSLASHtvolcite] = ACTIONS(3663), + [anon_sym_BSLASHTvolcite] = ACTIONS(3663), + [anon_sym_BSLASHavolcite] = ACTIONS(3663), + [anon_sym_BSLASHAvolcite] = ACTIONS(3663), + [anon_sym_BSLASHnotecite] = ACTIONS(3663), + [anon_sym_BSLASHpnotecite] = ACTIONS(3663), + [anon_sym_BSLASHPnotecite] = ACTIONS(3663), + [anon_sym_BSLASHfnotecite] = ACTIONS(3663), + [anon_sym_BSLASHusepackage] = ACTIONS(3669), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3669), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3672), + [anon_sym_BSLASHinclude] = ACTIONS(3675), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3675), + [anon_sym_BSLASHinput] = ACTIONS(3678), + [anon_sym_BSLASHsubfile] = ACTIONS(3678), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3681), + [anon_sym_BSLASHbibliography] = ACTIONS(3684), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3687), + [anon_sym_BSLASHincludesvg] = ACTIONS(3690), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3696), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3696), + [anon_sym_BSLASHimport] = ACTIONS(3699), + [anon_sym_BSLASHsubimport] = ACTIONS(3699), + [anon_sym_BSLASHinputfrom] = ACTIONS(3699), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3699), + [anon_sym_BSLASHincludefrom] = ACTIONS(3699), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3699), + [anon_sym_BSLASHlabel] = ACTIONS(3702), + [anon_sym_BSLASHref] = ACTIONS(3705), + [anon_sym_BSLASHvref] = ACTIONS(3705), + [anon_sym_BSLASHVref] = ACTIONS(3705), + [anon_sym_BSLASHautoref] = ACTIONS(3705), + [anon_sym_BSLASHpageref] = ACTIONS(3705), + [anon_sym_BSLASHcref] = ACTIONS(3705), + [anon_sym_BSLASHCref] = ACTIONS(3705), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3708), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3708), + [anon_sym_BSLASHnamecref] = ACTIONS(3705), + [anon_sym_BSLASHnameCref] = ACTIONS(3705), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3705), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3705), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3705), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3705), + [anon_sym_BSLASHlabelcref] = ACTIONS(3705), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3705), + [anon_sym_BSLASHeqref] = ACTIONS(3711), + [anon_sym_BSLASHcrefrange] = ACTIONS(3714), + [anon_sym_BSLASHCrefrange] = ACTIONS(3714), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3717), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3717), + [anon_sym_BSLASHnewlabel] = ACTIONS(3720), + [anon_sym_BSLASHnewcommand] = ACTIONS(3723), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3723), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3723), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3726), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3729), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3732), + [anon_sym_BSLASHgls] = ACTIONS(3735), + [anon_sym_BSLASHGls] = ACTIONS(3735), + [anon_sym_BSLASHGLS] = ACTIONS(3735), + [anon_sym_BSLASHglspl] = ACTIONS(3735), + [anon_sym_BSLASHGlspl] = ACTIONS(3735), + [anon_sym_BSLASHGLSpl] = ACTIONS(3735), + [anon_sym_BSLASHglsdisp] = ACTIONS(3735), + [anon_sym_BSLASHglslink] = ACTIONS(3735), + [anon_sym_BSLASHglstext] = ACTIONS(3735), + [anon_sym_BSLASHGlstext] = ACTIONS(3735), + [anon_sym_BSLASHGLStext] = ACTIONS(3735), + [anon_sym_BSLASHglsfirst] = ACTIONS(3735), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3735), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3735), + [anon_sym_BSLASHglsplural] = ACTIONS(3735), + [anon_sym_BSLASHGlsplural] = ACTIONS(3735), + [anon_sym_BSLASHGLSplural] = ACTIONS(3735), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3735), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3735), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3735), + [anon_sym_BSLASHglsname] = ACTIONS(3735), + [anon_sym_BSLASHGlsname] = ACTIONS(3735), + [anon_sym_BSLASHGLSname] = ACTIONS(3735), + [anon_sym_BSLASHglssymbol] = ACTIONS(3735), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3735), + [anon_sym_BSLASHglsdesc] = ACTIONS(3735), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3735), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3735), + [anon_sym_BSLASHglsuseri] = ACTIONS(3735), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3735), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3735), + [anon_sym_BSLASHglsuserii] = ACTIONS(3735), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3735), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3735), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3735), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3735), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3735), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3735), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3735), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3735), + [anon_sym_BSLASHglsuserv] = ACTIONS(3735), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3735), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3735), + [anon_sym_BSLASHglsuservi] = ACTIONS(3735), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3735), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3735), + [anon_sym_BSLASHnewacronym] = ACTIONS(3738), + [anon_sym_BSLASHacrshort] = ACTIONS(3741), + [anon_sym_BSLASHAcrshort] = ACTIONS(3741), + [anon_sym_BSLASHACRshort] = ACTIONS(3741), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3741), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3741), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3741), + [anon_sym_BSLASHacrlong] = ACTIONS(3741), + [anon_sym_BSLASHAcrlong] = ACTIONS(3741), + [anon_sym_BSLASHACRlong] = ACTIONS(3741), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3741), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3741), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3741), + [anon_sym_BSLASHacrfull] = ACTIONS(3741), + [anon_sym_BSLASHAcrfull] = ACTIONS(3741), + [anon_sym_BSLASHACRfull] = ACTIONS(3741), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3741), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3741), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3741), + [anon_sym_BSLASHacs] = ACTIONS(3741), + [anon_sym_BSLASHAcs] = ACTIONS(3741), + [anon_sym_BSLASHacsp] = ACTIONS(3741), + [anon_sym_BSLASHAcsp] = ACTIONS(3741), + [anon_sym_BSLASHacl] = ACTIONS(3741), + [anon_sym_BSLASHAcl] = ACTIONS(3741), + [anon_sym_BSLASHaclp] = ACTIONS(3741), + [anon_sym_BSLASHAclp] = ACTIONS(3741), + [anon_sym_BSLASHacf] = ACTIONS(3741), + [anon_sym_BSLASHAcf] = ACTIONS(3741), + [anon_sym_BSLASHacfp] = ACTIONS(3741), + [anon_sym_BSLASHAcfp] = ACTIONS(3741), + [anon_sym_BSLASHac] = ACTIONS(3741), + [anon_sym_BSLASHAc] = ACTIONS(3741), + [anon_sym_BSLASHacp] = ACTIONS(3741), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3741), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3741), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3741), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3741), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3741), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3741), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3741), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3741), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3741), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3741), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3744), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3744), + [anon_sym_BSLASHcolor] = ACTIONS(3747), + [anon_sym_BSLASHcolorbox] = ACTIONS(3747), + [anon_sym_BSLASHtextcolor] = ACTIONS(3747), + [anon_sym_BSLASHpagecolor] = ACTIONS(3747), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3750), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3753), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3756), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3759), + }, + [282] = { + [sym__simple_content] = STATE(278), + [sym_section] = STATE(278), + [sym_subsection] = STATE(278), + [sym_subsubsection] = STATE(278), + [sym_paragraph] = STATE(278), + [sym_subparagraph] = STATE(278), + [sym_enum_item] = STATE(278), + [sym_brace_group] = STATE(278), + [sym_mixed_group] = STATE(278), + [sym_text] = STATE(278), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(278), + [sym_inline_formula] = STATE(278), + [sym_begin] = STATE(66), + [sym_environment] = STATE(278), + [sym_caption] = STATE(278), + [sym_citation] = STATE(278), + [sym_package_include] = STATE(278), + [sym_class_include] = STATE(278), + [sym_latex_include] = STATE(278), + [sym_latex_input] = STATE(278), + [sym_biblatex_include] = STATE(278), + [sym_bibtex_include] = STATE(278), + [sym_graphics_include] = STATE(278), + [sym_svg_include] = STATE(278), + [sym_inkscape_include] = STATE(278), + [sym_verbatim_include] = STATE(278), + [sym_import] = STATE(278), + [sym_label_definition] = STATE(278), + [sym_label_reference] = STATE(278), + [sym_equation_label_reference] = STATE(278), + [sym_label_reference_range] = STATE(278), + [sym_label_number] = STATE(278), + [sym_command_definition] = STATE(278), + [sym_math_operator] = STATE(278), + [sym_glossary_entry_definition] = STATE(278), + [sym_glossary_entry_reference] = STATE(278), + [sym_acronym_definition] = STATE(278), + [sym_acronym_reference] = STATE(278), + [sym_theorem_definition] = STATE(278), + [sym_color_reference] = STATE(278), + [sym_color_definition] = STATE(278), + [sym_color_set_definition] = STATE(278), + [sym_pgf_library_import] = STATE(278), + [sym_tikz_library_import] = STATE(278), + [sym_generic_command] = STATE(278), + [aux_sym_chapter_repeat1] = STATE(278), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1100), + [aux_sym_chapter_token1] = ACTIONS(1100), + [aux_sym_section_token1] = ACTIONS(392), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(3762), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1098), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [283] = { + [sym__simple_content] = STATE(287), + [sym_subsection] = STATE(287), + [sym_subsubsection] = STATE(287), + [sym_paragraph] = STATE(287), + [sym_subparagraph] = STATE(287), + [sym_enum_item] = STATE(287), + [sym_brace_group] = STATE(287), + [sym_mixed_group] = STATE(287), + [sym_text] = STATE(287), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(287), + [sym_inline_formula] = STATE(287), + [sym_begin] = STATE(66), + [sym_environment] = STATE(287), + [sym_caption] = STATE(287), + [sym_citation] = STATE(287), + [sym_package_include] = STATE(287), + [sym_class_include] = STATE(287), + [sym_latex_include] = STATE(287), + [sym_latex_input] = STATE(287), + [sym_biblatex_include] = STATE(287), + [sym_bibtex_include] = STATE(287), + [sym_graphics_include] = STATE(287), + [sym_svg_include] = STATE(287), + [sym_inkscape_include] = STATE(287), + [sym_verbatim_include] = STATE(287), + [sym_import] = STATE(287), + [sym_label_definition] = STATE(287), + [sym_label_reference] = STATE(287), + [sym_equation_label_reference] = STATE(287), + [sym_label_reference_range] = STATE(287), + [sym_label_number] = STATE(287), + [sym_command_definition] = STATE(287), + [sym_math_operator] = STATE(287), + [sym_glossary_entry_definition] = STATE(287), + [sym_glossary_entry_reference] = STATE(287), + [sym_acronym_definition] = STATE(287), + [sym_acronym_reference] = STATE(287), + [sym_theorem_definition] = STATE(287), + [sym_color_reference] = STATE(287), + [sym_color_definition] = STATE(287), + [sym_color_set_definition] = STATE(287), + [sym_pgf_library_import] = STATE(287), + [sym_tikz_library_import] = STATE(287), + [sym_generic_command] = STATE(287), + [aux_sym_section_repeat1] = STATE(287), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1977), + [aux_sym_chapter_token1] = ACTIONS(1977), + [aux_sym_section_token1] = ACTIONS(1977), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(3764), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1975), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [284] = { + [sym__simple_content] = STATE(284), + [sym_subsection] = STATE(284), + [sym_subsubsection] = STATE(284), + [sym_paragraph] = STATE(284), + [sym_subparagraph] = STATE(284), + [sym_enum_item] = STATE(284), + [sym_brace_group] = STATE(284), + [sym_mixed_group] = STATE(284), + [sym_text] = STATE(284), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(284), + [sym_inline_formula] = STATE(284), + [sym_begin] = STATE(86), + [sym_environment] = STATE(284), + [sym_caption] = STATE(284), + [sym_citation] = STATE(284), + [sym_package_include] = STATE(284), + [sym_class_include] = STATE(284), + [sym_latex_include] = STATE(284), + [sym_latex_input] = STATE(284), + [sym_biblatex_include] = STATE(284), + [sym_bibtex_include] = STATE(284), + [sym_graphics_include] = STATE(284), + [sym_svg_include] = STATE(284), + [sym_inkscape_include] = STATE(284), + [sym_verbatim_include] = STATE(284), + [sym_import] = STATE(284), + [sym_label_definition] = STATE(284), + [sym_label_reference] = STATE(284), + [sym_equation_label_reference] = STATE(284), + [sym_label_reference_range] = STATE(284), + [sym_label_number] = STATE(284), + [sym_command_definition] = STATE(284), + [sym_math_operator] = STATE(284), + [sym_glossary_entry_definition] = STATE(284), + [sym_glossary_entry_reference] = STATE(284), + [sym_acronym_definition] = STATE(284), + [sym_acronym_reference] = STATE(284), + [sym_theorem_definition] = STATE(284), + [sym_color_reference] = STATE(284), + [sym_color_definition] = STATE(284), + [sym_color_set_definition] = STATE(284), + [sym_pgf_library_import] = STATE(284), + [sym_tikz_library_import] = STATE(284), + [sym_generic_command] = STATE(284), + [aux_sym_section_repeat1] = STATE(284), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(3766), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1992), + [aux_sym_section_token1] = ACTIONS(1992), + [aux_sym_subsection_token1] = ACTIONS(3769), + [aux_sym_subsubsection_token1] = ACTIONS(3772), + [aux_sym_paragraph_token1] = ACTIONS(3775), + [aux_sym_subparagraph_token1] = ACTIONS(3778), + [anon_sym_BSLASHitem] = ACTIONS(3781), + [anon_sym_LBRACK] = ACTIONS(3784), + [anon_sym_RBRACK] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(3787), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(3784), + [anon_sym_COMMA] = ACTIONS(3790), + [anon_sym_EQ] = ACTIONS(3790), + [sym_word] = ACTIONS(3790), + [sym_param] = ACTIONS(3793), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3796), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3796), + [anon_sym_DOLLAR] = ACTIONS(3799), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3802), + [anon_sym_BSLASHbegin] = ACTIONS(2030), + [anon_sym_BSLASHcaption] = ACTIONS(3805), + [anon_sym_BSLASHcite] = ACTIONS(3808), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3811), + [anon_sym_BSLASHCite] = ACTIONS(3808), + [anon_sym_BSLASHnocite] = ACTIONS(3808), + [anon_sym_BSLASHcitet] = ACTIONS(3808), + [anon_sym_BSLASHcitep] = ACTIONS(3808), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3811), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3811), + [anon_sym_BSLASHciteauthor] = ACTIONS(3808), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3811), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3808), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3811), + [anon_sym_BSLASHcitetitle] = ACTIONS(3808), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3811), + [anon_sym_BSLASHciteyear] = ACTIONS(3808), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3811), + [anon_sym_BSLASHcitedate] = ACTIONS(3808), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3811), + [anon_sym_BSLASHciteurl] = ACTIONS(3808), + [anon_sym_BSLASHfullcite] = ACTIONS(3808), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3808), + [anon_sym_BSLASHcitealt] = ACTIONS(3808), + [anon_sym_BSLASHcitealp] = ACTIONS(3808), + [anon_sym_BSLASHcitetext] = ACTIONS(3808), + [anon_sym_BSLASHparencite] = ACTIONS(3808), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3811), + [anon_sym_BSLASHParencite] = ACTIONS(3808), + [anon_sym_BSLASHfootcite] = ACTIONS(3808), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3808), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3808), + [anon_sym_BSLASHtextcite] = ACTIONS(3808), + [anon_sym_BSLASHTextcite] = ACTIONS(3808), + [anon_sym_BSLASHsmartcite] = ACTIONS(3808), + [anon_sym_BSLASHSmartcite] = ACTIONS(3808), + [anon_sym_BSLASHsupercite] = ACTIONS(3808), + [anon_sym_BSLASHautocite] = ACTIONS(3808), + [anon_sym_BSLASHAutocite] = ACTIONS(3808), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3811), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3811), + [anon_sym_BSLASHvolcite] = ACTIONS(3808), + [anon_sym_BSLASHVolcite] = ACTIONS(3808), + [anon_sym_BSLASHpvolcite] = ACTIONS(3808), + [anon_sym_BSLASHPvolcite] = ACTIONS(3808), + [anon_sym_BSLASHfvolcite] = ACTIONS(3808), + [anon_sym_BSLASHftvolcite] = ACTIONS(3808), + [anon_sym_BSLASHsvolcite] = ACTIONS(3808), + [anon_sym_BSLASHSvolcite] = ACTIONS(3808), + [anon_sym_BSLASHtvolcite] = ACTIONS(3808), + [anon_sym_BSLASHTvolcite] = ACTIONS(3808), + [anon_sym_BSLASHavolcite] = ACTIONS(3808), + [anon_sym_BSLASHAvolcite] = ACTIONS(3808), + [anon_sym_BSLASHnotecite] = ACTIONS(3808), + [anon_sym_BSLASHpnotecite] = ACTIONS(3808), + [anon_sym_BSLASHPnotecite] = ACTIONS(3808), + [anon_sym_BSLASHfnotecite] = ACTIONS(3808), + [anon_sym_BSLASHusepackage] = ACTIONS(3814), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3814), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3817), + [anon_sym_BSLASHinclude] = ACTIONS(3820), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3820), + [anon_sym_BSLASHinput] = ACTIONS(3823), + [anon_sym_BSLASHsubfile] = ACTIONS(3823), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3826), + [anon_sym_BSLASHbibliography] = ACTIONS(3829), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3832), + [anon_sym_BSLASHincludesvg] = ACTIONS(3835), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3838), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3841), + [anon_sym_BSLASHimport] = ACTIONS(3844), + [anon_sym_BSLASHsubimport] = ACTIONS(3844), + [anon_sym_BSLASHinputfrom] = ACTIONS(3844), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3844), + [anon_sym_BSLASHincludefrom] = ACTIONS(3844), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3844), + [anon_sym_BSLASHlabel] = ACTIONS(3847), + [anon_sym_BSLASHref] = ACTIONS(3850), + [anon_sym_BSLASHvref] = ACTIONS(3850), + [anon_sym_BSLASHVref] = ACTIONS(3850), + [anon_sym_BSLASHautoref] = ACTIONS(3850), + [anon_sym_BSLASHpageref] = ACTIONS(3850), + [anon_sym_BSLASHcref] = ACTIONS(3850), + [anon_sym_BSLASHCref] = ACTIONS(3850), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3853), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3853), + [anon_sym_BSLASHnamecref] = ACTIONS(3850), + [anon_sym_BSLASHnameCref] = ACTIONS(3850), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3850), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3850), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3850), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3850), + [anon_sym_BSLASHlabelcref] = ACTIONS(3850), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3850), + [anon_sym_BSLASHeqref] = ACTIONS(3856), + [anon_sym_BSLASHcrefrange] = ACTIONS(3859), + [anon_sym_BSLASHCrefrange] = ACTIONS(3859), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3862), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3862), + [anon_sym_BSLASHnewlabel] = ACTIONS(3865), + [anon_sym_BSLASHnewcommand] = ACTIONS(3868), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3868), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3868), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3871), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3874), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3877), + [anon_sym_BSLASHgls] = ACTIONS(3880), + [anon_sym_BSLASHGls] = ACTIONS(3880), + [anon_sym_BSLASHGLS] = ACTIONS(3880), + [anon_sym_BSLASHglspl] = ACTIONS(3880), + [anon_sym_BSLASHGlspl] = ACTIONS(3880), + [anon_sym_BSLASHGLSpl] = ACTIONS(3880), + [anon_sym_BSLASHglsdisp] = ACTIONS(3880), + [anon_sym_BSLASHglslink] = ACTIONS(3880), + [anon_sym_BSLASHglstext] = ACTIONS(3880), + [anon_sym_BSLASHGlstext] = ACTIONS(3880), + [anon_sym_BSLASHGLStext] = ACTIONS(3880), + [anon_sym_BSLASHglsfirst] = ACTIONS(3880), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3880), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3880), + [anon_sym_BSLASHglsplural] = ACTIONS(3880), + [anon_sym_BSLASHGlsplural] = ACTIONS(3880), + [anon_sym_BSLASHGLSplural] = ACTIONS(3880), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3880), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3880), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3880), + [anon_sym_BSLASHglsname] = ACTIONS(3880), + [anon_sym_BSLASHGlsname] = ACTIONS(3880), + [anon_sym_BSLASHGLSname] = ACTIONS(3880), + [anon_sym_BSLASHglssymbol] = ACTIONS(3880), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3880), + [anon_sym_BSLASHglsdesc] = ACTIONS(3880), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3880), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3880), + [anon_sym_BSLASHglsuseri] = ACTIONS(3880), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3880), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3880), + [anon_sym_BSLASHglsuserii] = ACTIONS(3880), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3880), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3880), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3880), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3880), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3880), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3880), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3880), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3880), + [anon_sym_BSLASHglsuserv] = ACTIONS(3880), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3880), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3880), + [anon_sym_BSLASHglsuservi] = ACTIONS(3880), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3880), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3880), + [anon_sym_BSLASHnewacronym] = ACTIONS(3883), + [anon_sym_BSLASHacrshort] = ACTIONS(3886), + [anon_sym_BSLASHAcrshort] = ACTIONS(3886), + [anon_sym_BSLASHACRshort] = ACTIONS(3886), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3886), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3886), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3886), + [anon_sym_BSLASHacrlong] = ACTIONS(3886), + [anon_sym_BSLASHAcrlong] = ACTIONS(3886), + [anon_sym_BSLASHACRlong] = ACTIONS(3886), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3886), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3886), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3886), + [anon_sym_BSLASHacrfull] = ACTIONS(3886), + [anon_sym_BSLASHAcrfull] = ACTIONS(3886), + [anon_sym_BSLASHACRfull] = ACTIONS(3886), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3886), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3886), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3886), + [anon_sym_BSLASHacs] = ACTIONS(3886), + [anon_sym_BSLASHAcs] = ACTIONS(3886), + [anon_sym_BSLASHacsp] = ACTIONS(3886), + [anon_sym_BSLASHAcsp] = ACTIONS(3886), + [anon_sym_BSLASHacl] = ACTIONS(3886), + [anon_sym_BSLASHAcl] = ACTIONS(3886), + [anon_sym_BSLASHaclp] = ACTIONS(3886), + [anon_sym_BSLASHAclp] = ACTIONS(3886), + [anon_sym_BSLASHacf] = ACTIONS(3886), + [anon_sym_BSLASHAcf] = ACTIONS(3886), + [anon_sym_BSLASHacfp] = ACTIONS(3886), + [anon_sym_BSLASHAcfp] = ACTIONS(3886), + [anon_sym_BSLASHac] = ACTIONS(3886), + [anon_sym_BSLASHAc] = ACTIONS(3886), + [anon_sym_BSLASHacp] = ACTIONS(3886), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3886), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3886), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3886), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3886), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3886), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3886), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3886), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3886), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3886), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3886), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3889), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3889), + [anon_sym_BSLASHcolor] = ACTIONS(3892), + [anon_sym_BSLASHcolorbox] = ACTIONS(3892), + [anon_sym_BSLASHtextcolor] = ACTIONS(3892), + [anon_sym_BSLASHpagecolor] = ACTIONS(3892), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3895), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3898), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3904), + }, + [285] = { + [sym__simple_content] = STATE(294), + [sym_subsection] = STATE(294), + [sym_subsubsection] = STATE(294), + [sym_paragraph] = STATE(294), + [sym_subparagraph] = STATE(294), + [sym_enum_item] = STATE(294), + [sym_brace_group] = STATE(294), + [sym_mixed_group] = STATE(294), + [sym_text] = STATE(294), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(294), + [sym_inline_formula] = STATE(294), + [sym_begin] = STATE(73), + [sym_environment] = STATE(294), + [sym_caption] = STATE(294), + [sym_citation] = STATE(294), + [sym_package_include] = STATE(294), + [sym_class_include] = STATE(294), + [sym_latex_include] = STATE(294), + [sym_latex_input] = STATE(294), + [sym_biblatex_include] = STATE(294), + [sym_bibtex_include] = STATE(294), + [sym_graphics_include] = STATE(294), + [sym_svg_include] = STATE(294), + [sym_inkscape_include] = STATE(294), + [sym_verbatim_include] = STATE(294), + [sym_import] = STATE(294), + [sym_label_definition] = STATE(294), + [sym_label_reference] = STATE(294), + [sym_equation_label_reference] = STATE(294), + [sym_label_reference_range] = STATE(294), + [sym_label_number] = STATE(294), + [sym_command_definition] = STATE(294), + [sym_math_operator] = STATE(294), + [sym_glossary_entry_definition] = STATE(294), + [sym_glossary_entry_reference] = STATE(294), + [sym_acronym_definition] = STATE(294), + [sym_acronym_reference] = STATE(294), + [sym_theorem_definition] = STATE(294), + [sym_color_reference] = STATE(294), + [sym_color_definition] = STATE(294), + [sym_color_set_definition] = STATE(294), + [sym_pgf_library_import] = STATE(294), + [sym_tikz_library_import] = STATE(294), + [sym_generic_command] = STATE(294), + [aux_sym_section_repeat1] = STATE(294), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1977), + [aux_sym_chapter_token1] = ACTIONS(1977), + [aux_sym_section_token1] = ACTIONS(1977), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(3907), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(1977), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [286] = { + [sym__simple_content] = STATE(292), + [sym_subsection] = STATE(292), + [sym_subsubsection] = STATE(292), + [sym_paragraph] = STATE(292), + [sym_subparagraph] = STATE(292), + [sym_enum_item] = STATE(292), + [sym_brace_group] = STATE(292), + [sym_mixed_group] = STATE(292), + [sym_text] = STATE(292), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(292), + [sym_inline_formula] = STATE(292), + [sym_begin] = STATE(86), + [sym_environment] = STATE(292), + [sym_caption] = STATE(292), + [sym_citation] = STATE(292), + [sym_package_include] = STATE(292), + [sym_class_include] = STATE(292), + [sym_latex_include] = STATE(292), + [sym_latex_input] = STATE(292), + [sym_biblatex_include] = STATE(292), + [sym_bibtex_include] = STATE(292), + [sym_graphics_include] = STATE(292), + [sym_svg_include] = STATE(292), + [sym_inkscape_include] = STATE(292), + [sym_verbatim_include] = STATE(292), + [sym_import] = STATE(292), + [sym_label_definition] = STATE(292), + [sym_label_reference] = STATE(292), + [sym_equation_label_reference] = STATE(292), + [sym_label_reference_range] = STATE(292), + [sym_label_number] = STATE(292), + [sym_command_definition] = STATE(292), + [sym_math_operator] = STATE(292), + [sym_glossary_entry_definition] = STATE(292), + [sym_glossary_entry_reference] = STATE(292), + [sym_acronym_definition] = STATE(292), + [sym_acronym_reference] = STATE(292), + [sym_theorem_definition] = STATE(292), + [sym_color_reference] = STATE(292), + [sym_color_definition] = STATE(292), + [sym_color_set_definition] = STATE(292), + [sym_pgf_library_import] = STATE(292), + [sym_tikz_library_import] = STATE(292), + [sym_generic_command] = STATE(292), + [aux_sym_section_repeat1] = STATE(292), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1983), + [aux_sym_section_token1] = ACTIONS(1983), + [aux_sym_subsection_token1] = ACTIONS(2304), + [aux_sym_subsubsection_token1] = ACTIONS(2306), + [aux_sym_paragraph_token1] = ACTIONS(2308), + [aux_sym_subparagraph_token1] = ACTIONS(2310), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(3909), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [287] = { + [sym__simple_content] = STATE(287), + [sym_subsection] = STATE(287), + [sym_subsubsection] = STATE(287), + [sym_paragraph] = STATE(287), + [sym_subparagraph] = STATE(287), + [sym_enum_item] = STATE(287), + [sym_brace_group] = STATE(287), + [sym_mixed_group] = STATE(287), + [sym_text] = STATE(287), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(287), + [sym_inline_formula] = STATE(287), + [sym_begin] = STATE(66), + [sym_environment] = STATE(287), + [sym_caption] = STATE(287), + [sym_citation] = STATE(287), + [sym_package_include] = STATE(287), + [sym_class_include] = STATE(287), + [sym_latex_include] = STATE(287), + [sym_latex_input] = STATE(287), + [sym_biblatex_include] = STATE(287), + [sym_bibtex_include] = STATE(287), + [sym_graphics_include] = STATE(287), + [sym_svg_include] = STATE(287), + [sym_inkscape_include] = STATE(287), + [sym_verbatim_include] = STATE(287), + [sym_import] = STATE(287), + [sym_label_definition] = STATE(287), + [sym_label_reference] = STATE(287), + [sym_equation_label_reference] = STATE(287), + [sym_label_reference_range] = STATE(287), + [sym_label_number] = STATE(287), + [sym_command_definition] = STATE(287), + [sym_math_operator] = STATE(287), + [sym_glossary_entry_definition] = STATE(287), + [sym_glossary_entry_reference] = STATE(287), + [sym_acronym_definition] = STATE(287), + [sym_acronym_reference] = STATE(287), + [sym_theorem_definition] = STATE(287), + [sym_color_reference] = STATE(287), + [sym_color_definition] = STATE(287), + [sym_color_set_definition] = STATE(287), + [sym_pgf_library_import] = STATE(287), + [sym_tikz_library_import] = STATE(287), + [sym_generic_command] = STATE(287), + [aux_sym_section_repeat1] = STATE(287), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(3911), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1992), + [aux_sym_chapter_token1] = ACTIONS(1992), + [aux_sym_section_token1] = ACTIONS(1992), + [aux_sym_subsection_token1] = ACTIONS(3914), + [aux_sym_subsubsection_token1] = ACTIONS(3917), + [aux_sym_paragraph_token1] = ACTIONS(3920), + [aux_sym_subparagraph_token1] = ACTIONS(3923), + [anon_sym_BSLASHitem] = ACTIONS(3926), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3932), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_COMMA] = ACTIONS(3935), + [anon_sym_EQ] = ACTIONS(3935), + [sym_word] = ACTIONS(3935), + [sym_param] = ACTIONS(3938), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3941), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3941), + [anon_sym_DOLLAR] = ACTIONS(3944), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3947), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1987), + [anon_sym_BSLASHbegin] = ACTIONS(2030), + [anon_sym_BSLASHcaption] = ACTIONS(3950), + [anon_sym_BSLASHcite] = ACTIONS(3953), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3956), + [anon_sym_BSLASHCite] = ACTIONS(3953), + [anon_sym_BSLASHnocite] = ACTIONS(3953), + [anon_sym_BSLASHcitet] = ACTIONS(3953), + [anon_sym_BSLASHcitep] = ACTIONS(3953), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3956), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3956), + [anon_sym_BSLASHciteauthor] = ACTIONS(3953), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3956), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3953), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3956), + [anon_sym_BSLASHcitetitle] = ACTIONS(3953), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3956), + [anon_sym_BSLASHciteyear] = ACTIONS(3953), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3956), + [anon_sym_BSLASHcitedate] = ACTIONS(3953), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3956), + [anon_sym_BSLASHciteurl] = ACTIONS(3953), + [anon_sym_BSLASHfullcite] = ACTIONS(3953), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3953), + [anon_sym_BSLASHcitealt] = ACTIONS(3953), + [anon_sym_BSLASHcitealp] = ACTIONS(3953), + [anon_sym_BSLASHcitetext] = ACTIONS(3953), + [anon_sym_BSLASHparencite] = ACTIONS(3953), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3956), + [anon_sym_BSLASHParencite] = ACTIONS(3953), + [anon_sym_BSLASHfootcite] = ACTIONS(3953), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3953), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3953), + [anon_sym_BSLASHtextcite] = ACTIONS(3953), + [anon_sym_BSLASHTextcite] = ACTIONS(3953), + [anon_sym_BSLASHsmartcite] = ACTIONS(3953), + [anon_sym_BSLASHSmartcite] = ACTIONS(3953), + [anon_sym_BSLASHsupercite] = ACTIONS(3953), + [anon_sym_BSLASHautocite] = ACTIONS(3953), + [anon_sym_BSLASHAutocite] = ACTIONS(3953), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3956), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3956), + [anon_sym_BSLASHvolcite] = ACTIONS(3953), + [anon_sym_BSLASHVolcite] = ACTIONS(3953), + [anon_sym_BSLASHpvolcite] = ACTIONS(3953), + [anon_sym_BSLASHPvolcite] = ACTIONS(3953), + [anon_sym_BSLASHfvolcite] = ACTIONS(3953), + [anon_sym_BSLASHftvolcite] = ACTIONS(3953), + [anon_sym_BSLASHsvolcite] = ACTIONS(3953), + [anon_sym_BSLASHSvolcite] = ACTIONS(3953), + [anon_sym_BSLASHtvolcite] = ACTIONS(3953), + [anon_sym_BSLASHTvolcite] = ACTIONS(3953), + [anon_sym_BSLASHavolcite] = ACTIONS(3953), + [anon_sym_BSLASHAvolcite] = ACTIONS(3953), + [anon_sym_BSLASHnotecite] = ACTIONS(3953), + [anon_sym_BSLASHpnotecite] = ACTIONS(3953), + [anon_sym_BSLASHPnotecite] = ACTIONS(3953), + [anon_sym_BSLASHfnotecite] = ACTIONS(3953), + [anon_sym_BSLASHusepackage] = ACTIONS(3959), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3959), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3962), + [anon_sym_BSLASHinclude] = ACTIONS(3965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3965), + [anon_sym_BSLASHinput] = ACTIONS(3968), + [anon_sym_BSLASHsubfile] = ACTIONS(3968), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3971), + [anon_sym_BSLASHbibliography] = ACTIONS(3974), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3977), + [anon_sym_BSLASHincludesvg] = ACTIONS(3980), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3986), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3986), + [anon_sym_BSLASHimport] = ACTIONS(3989), + [anon_sym_BSLASHsubimport] = ACTIONS(3989), + [anon_sym_BSLASHinputfrom] = ACTIONS(3989), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3989), + [anon_sym_BSLASHincludefrom] = ACTIONS(3989), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3989), + [anon_sym_BSLASHlabel] = ACTIONS(3992), + [anon_sym_BSLASHref] = ACTIONS(3995), + [anon_sym_BSLASHvref] = ACTIONS(3995), + [anon_sym_BSLASHVref] = ACTIONS(3995), + [anon_sym_BSLASHautoref] = ACTIONS(3995), + [anon_sym_BSLASHpageref] = ACTIONS(3995), + [anon_sym_BSLASHcref] = ACTIONS(3995), + [anon_sym_BSLASHCref] = ACTIONS(3995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3998), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3998), + [anon_sym_BSLASHnamecref] = ACTIONS(3995), + [anon_sym_BSLASHnameCref] = ACTIONS(3995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3995), + [anon_sym_BSLASHlabelcref] = ACTIONS(3995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3995), + [anon_sym_BSLASHeqref] = ACTIONS(4001), + [anon_sym_BSLASHcrefrange] = ACTIONS(4004), + [anon_sym_BSLASHCrefrange] = ACTIONS(4004), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4007), + [anon_sym_BSLASHnewlabel] = ACTIONS(4010), + [anon_sym_BSLASHnewcommand] = ACTIONS(4013), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4013), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4013), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4016), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4019), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4022), + [anon_sym_BSLASHgls] = ACTIONS(4025), + [anon_sym_BSLASHGls] = ACTIONS(4025), + [anon_sym_BSLASHGLS] = ACTIONS(4025), + [anon_sym_BSLASHglspl] = ACTIONS(4025), + [anon_sym_BSLASHGlspl] = ACTIONS(4025), + [anon_sym_BSLASHGLSpl] = ACTIONS(4025), + [anon_sym_BSLASHglsdisp] = ACTIONS(4025), + [anon_sym_BSLASHglslink] = ACTIONS(4025), + [anon_sym_BSLASHglstext] = ACTIONS(4025), + [anon_sym_BSLASHGlstext] = ACTIONS(4025), + [anon_sym_BSLASHGLStext] = ACTIONS(4025), + [anon_sym_BSLASHglsfirst] = ACTIONS(4025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4025), + [anon_sym_BSLASHglsplural] = ACTIONS(4025), + [anon_sym_BSLASHGlsplural] = ACTIONS(4025), + [anon_sym_BSLASHGLSplural] = ACTIONS(4025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4025), + [anon_sym_BSLASHglsname] = ACTIONS(4025), + [anon_sym_BSLASHGlsname] = ACTIONS(4025), + [anon_sym_BSLASHGLSname] = ACTIONS(4025), + [anon_sym_BSLASHglssymbol] = ACTIONS(4025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4025), + [anon_sym_BSLASHglsdesc] = ACTIONS(4025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4025), + [anon_sym_BSLASHglsuseri] = ACTIONS(4025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4025), + [anon_sym_BSLASHglsuserii] = ACTIONS(4025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4025), + [anon_sym_BSLASHglsuserv] = ACTIONS(4025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4025), + [anon_sym_BSLASHglsuservi] = ACTIONS(4025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4025), + [anon_sym_BSLASHnewacronym] = ACTIONS(4028), + [anon_sym_BSLASHacrshort] = ACTIONS(4031), + [anon_sym_BSLASHAcrshort] = ACTIONS(4031), + [anon_sym_BSLASHACRshort] = ACTIONS(4031), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4031), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4031), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4031), + [anon_sym_BSLASHacrlong] = ACTIONS(4031), + [anon_sym_BSLASHAcrlong] = ACTIONS(4031), + [anon_sym_BSLASHACRlong] = ACTIONS(4031), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4031), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4031), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4031), + [anon_sym_BSLASHacrfull] = ACTIONS(4031), + [anon_sym_BSLASHAcrfull] = ACTIONS(4031), + [anon_sym_BSLASHACRfull] = ACTIONS(4031), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4031), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4031), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4031), + [anon_sym_BSLASHacs] = ACTIONS(4031), + [anon_sym_BSLASHAcs] = ACTIONS(4031), + [anon_sym_BSLASHacsp] = ACTIONS(4031), + [anon_sym_BSLASHAcsp] = ACTIONS(4031), + [anon_sym_BSLASHacl] = ACTIONS(4031), + [anon_sym_BSLASHAcl] = ACTIONS(4031), + [anon_sym_BSLASHaclp] = ACTIONS(4031), + [anon_sym_BSLASHAclp] = ACTIONS(4031), + [anon_sym_BSLASHacf] = ACTIONS(4031), + [anon_sym_BSLASHAcf] = ACTIONS(4031), + [anon_sym_BSLASHacfp] = ACTIONS(4031), + [anon_sym_BSLASHAcfp] = ACTIONS(4031), + [anon_sym_BSLASHac] = ACTIONS(4031), + [anon_sym_BSLASHAc] = ACTIONS(4031), + [anon_sym_BSLASHacp] = ACTIONS(4031), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4031), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4031), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4031), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4031), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4031), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4031), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4031), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4031), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4031), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4031), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4034), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4034), + [anon_sym_BSLASHcolor] = ACTIONS(4037), + [anon_sym_BSLASHcolorbox] = ACTIONS(4037), + [anon_sym_BSLASHtextcolor] = ACTIONS(4037), + [anon_sym_BSLASHpagecolor] = ACTIONS(4037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4040), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4043), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4046), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4049), + }, + [288] = { + [sym__simple_content] = STATE(290), + [sym_subparagraph] = STATE(290), + [sym_enum_item] = STATE(290), + [sym_brace_group] = STATE(290), + [sym_mixed_group] = STATE(290), + [sym_text] = STATE(290), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(290), + [sym_inline_formula] = STATE(290), + [sym_begin] = STATE(52), + [sym_environment] = STATE(290), + [sym_caption] = STATE(290), + [sym_citation] = STATE(290), + [sym_package_include] = STATE(290), + [sym_class_include] = STATE(290), + [sym_latex_include] = STATE(290), + [sym_latex_input] = STATE(290), + [sym_biblatex_include] = STATE(290), + [sym_bibtex_include] = STATE(290), + [sym_graphics_include] = STATE(290), + [sym_svg_include] = STATE(290), + [sym_inkscape_include] = STATE(290), + [sym_verbatim_include] = STATE(290), + [sym_import] = STATE(290), + [sym_label_definition] = STATE(290), + [sym_label_reference] = STATE(290), + [sym_equation_label_reference] = STATE(290), + [sym_label_reference_range] = STATE(290), + [sym_label_number] = STATE(290), + [sym_command_definition] = STATE(290), + [sym_math_operator] = STATE(290), + [sym_glossary_entry_definition] = STATE(290), + [sym_glossary_entry_reference] = STATE(290), + [sym_acronym_definition] = STATE(290), + [sym_acronym_reference] = STATE(290), + [sym_theorem_definition] = STATE(290), + [sym_color_reference] = STATE(290), + [sym_color_definition] = STATE(290), + [sym_color_set_definition] = STATE(290), + [sym_pgf_library_import] = STATE(290), + [sym_tikz_library_import] = STATE(290), + [sym_generic_command] = STATE(290), + [aux_sym_paragraph_repeat1] = STATE(290), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(4052), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4054), + [aux_sym_chapter_token1] = ACTIONS(4054), + [aux_sym_section_token1] = ACTIONS(4054), + [aux_sym_subsection_token1] = ACTIONS(4054), + [aux_sym_subsubsection_token1] = ACTIONS(4054), + [aux_sym_paragraph_token1] = ACTIONS(4054), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(4052), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(4052), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(4056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [289] = { + [sym__simple_content] = STATE(296), + [sym_section] = STATE(296), + [sym_subsection] = STATE(296), + [sym_subsubsection] = STATE(296), + [sym_paragraph] = STATE(296), + [sym_subparagraph] = STATE(296), + [sym_enum_item] = STATE(296), + [sym_brace_group] = STATE(296), + [sym_mixed_group] = STATE(296), + [sym_text] = STATE(296), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(296), + [sym_inline_formula] = STATE(296), + [sym_begin] = STATE(94), + [sym_environment] = STATE(296), + [sym_caption] = STATE(296), + [sym_citation] = STATE(296), + [sym_package_include] = STATE(296), + [sym_class_include] = STATE(296), + [sym_latex_include] = STATE(296), + [sym_latex_input] = STATE(296), + [sym_biblatex_include] = STATE(296), + [sym_bibtex_include] = STATE(296), + [sym_graphics_include] = STATE(296), + [sym_svg_include] = STATE(296), + [sym_inkscape_include] = STATE(296), + [sym_verbatim_include] = STATE(296), + [sym_import] = STATE(296), + [sym_label_definition] = STATE(296), + [sym_label_reference] = STATE(296), + [sym_equation_label_reference] = STATE(296), + [sym_label_reference_range] = STATE(296), + [sym_label_number] = STATE(296), + [sym_command_definition] = STATE(296), + [sym_math_operator] = STATE(296), + [sym_glossary_entry_definition] = STATE(296), + [sym_glossary_entry_reference] = STATE(296), + [sym_acronym_definition] = STATE(296), + [sym_acronym_reference] = STATE(296), + [sym_theorem_definition] = STATE(296), + [sym_color_reference] = STATE(296), + [sym_color_definition] = STATE(296), + [sym_color_set_definition] = STATE(296), + [sym_pgf_library_import] = STATE(296), + [sym_tikz_library_import] = STATE(296), + [sym_generic_command] = STATE(296), + [aux_sym_chapter_repeat1] = STATE(296), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(4060), + [aux_sym_subsection_token1] = ACTIONS(4062), + [aux_sym_subsubsection_token1] = ACTIONS(4064), + [aux_sym_paragraph_token1] = ACTIONS(4066), + [aux_sym_subparagraph_token1] = ACTIONS(4068), + [anon_sym_BSLASHitem] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(1098), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(1098), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(4078), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [290] = { + [sym__simple_content] = STATE(291), + [sym_subparagraph] = STATE(291), + [sym_enum_item] = STATE(291), + [sym_brace_group] = STATE(291), + [sym_mixed_group] = STATE(291), + [sym_text] = STATE(291), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(291), + [sym_inline_formula] = STATE(291), + [sym_begin] = STATE(52), + [sym_environment] = STATE(291), + [sym_caption] = STATE(291), + [sym_citation] = STATE(291), + [sym_package_include] = STATE(291), + [sym_class_include] = STATE(291), + [sym_latex_include] = STATE(291), + [sym_latex_input] = STATE(291), + [sym_biblatex_include] = STATE(291), + [sym_bibtex_include] = STATE(291), + [sym_graphics_include] = STATE(291), + [sym_svg_include] = STATE(291), + [sym_inkscape_include] = STATE(291), + [sym_verbatim_include] = STATE(291), + [sym_import] = STATE(291), + [sym_label_definition] = STATE(291), + [sym_label_reference] = STATE(291), + [sym_equation_label_reference] = STATE(291), + [sym_label_reference_range] = STATE(291), + [sym_label_number] = STATE(291), + [sym_command_definition] = STATE(291), + [sym_math_operator] = STATE(291), + [sym_glossary_entry_definition] = STATE(291), + [sym_glossary_entry_reference] = STATE(291), + [sym_acronym_definition] = STATE(291), + [sym_acronym_reference] = STATE(291), + [sym_theorem_definition] = STATE(291), + [sym_color_reference] = STATE(291), + [sym_color_definition] = STATE(291), + [sym_color_set_definition] = STATE(291), + [sym_pgf_library_import] = STATE(291), + [sym_tikz_library_import] = STATE(291), + [sym_generic_command] = STATE(291), + [aux_sym_paragraph_repeat1] = STATE(291), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(4154), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4156), + [aux_sym_chapter_token1] = ACTIONS(4156), + [aux_sym_section_token1] = ACTIONS(4156), + [aux_sym_subsection_token1] = ACTIONS(4156), + [aux_sym_subsubsection_token1] = ACTIONS(4156), + [aux_sym_paragraph_token1] = ACTIONS(4156), + [aux_sym_subparagraph_token1] = ACTIONS(21), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(4154), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(4158), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [291] = { + [sym__simple_content] = STATE(291), + [sym_subparagraph] = STATE(291), + [sym_enum_item] = STATE(291), + [sym_brace_group] = STATE(291), + [sym_mixed_group] = STATE(291), + [sym_text] = STATE(291), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(291), + [sym_inline_formula] = STATE(291), + [sym_begin] = STATE(52), + [sym_environment] = STATE(291), + [sym_caption] = STATE(291), + [sym_citation] = STATE(291), + [sym_package_include] = STATE(291), + [sym_class_include] = STATE(291), + [sym_latex_include] = STATE(291), + [sym_latex_input] = STATE(291), + [sym_biblatex_include] = STATE(291), + [sym_bibtex_include] = STATE(291), + [sym_graphics_include] = STATE(291), + [sym_svg_include] = STATE(291), + [sym_inkscape_include] = STATE(291), + [sym_verbatim_include] = STATE(291), + [sym_import] = STATE(291), + [sym_label_definition] = STATE(291), + [sym_label_reference] = STATE(291), + [sym_equation_label_reference] = STATE(291), + [sym_label_reference_range] = STATE(291), + [sym_label_number] = STATE(291), + [sym_command_definition] = STATE(291), + [sym_math_operator] = STATE(291), + [sym_glossary_entry_definition] = STATE(291), + [sym_glossary_entry_reference] = STATE(291), + [sym_acronym_definition] = STATE(291), + [sym_acronym_reference] = STATE(291), + [sym_theorem_definition] = STATE(291), + [sym_color_reference] = STATE(291), + [sym_color_definition] = STATE(291), + [sym_color_set_definition] = STATE(291), + [sym_pgf_library_import] = STATE(291), + [sym_tikz_library_import] = STATE(291), + [sym_generic_command] = STATE(291), + [aux_sym_paragraph_repeat1] = STATE(291), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(4160), + [sym_generic_command_name] = ACTIONS(4162), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4165), + [aux_sym_chapter_token1] = ACTIONS(4165), + [aux_sym_section_token1] = ACTIONS(4165), + [aux_sym_subsection_token1] = ACTIONS(4165), + [aux_sym_subsubsection_token1] = ACTIONS(4165), + [aux_sym_paragraph_token1] = ACTIONS(4165), + [aux_sym_subparagraph_token1] = ACTIONS(4167), + [anon_sym_BSLASHitem] = ACTIONS(4170), + [anon_sym_LBRACK] = ACTIONS(4173), + [anon_sym_RBRACK] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(4176), + [anon_sym_RBRACE] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(4173), + [anon_sym_RPAREN] = ACTIONS(4160), + [anon_sym_COMMA] = ACTIONS(4179), + [anon_sym_EQ] = ACTIONS(4179), + [sym_word] = ACTIONS(4179), + [sym_param] = ACTIONS(4182), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4185), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4185), + [anon_sym_DOLLAR] = ACTIONS(4188), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4191), + [anon_sym_BSLASHbegin] = ACTIONS(4194), + [anon_sym_BSLASHcaption] = ACTIONS(4197), + [anon_sym_BSLASHcite] = ACTIONS(4200), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4203), + [anon_sym_BSLASHCite] = ACTIONS(4200), + [anon_sym_BSLASHnocite] = ACTIONS(4200), + [anon_sym_BSLASHcitet] = ACTIONS(4200), + [anon_sym_BSLASHcitep] = ACTIONS(4200), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4203), + [anon_sym_BSLASHciteauthor] = ACTIONS(4200), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4200), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4203), + [anon_sym_BSLASHcitetitle] = ACTIONS(4200), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4203), + [anon_sym_BSLASHciteyear] = ACTIONS(4200), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4203), + [anon_sym_BSLASHcitedate] = ACTIONS(4200), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4203), + [anon_sym_BSLASHciteurl] = ACTIONS(4200), + [anon_sym_BSLASHfullcite] = ACTIONS(4200), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4200), + [anon_sym_BSLASHcitealt] = ACTIONS(4200), + [anon_sym_BSLASHcitealp] = ACTIONS(4200), + [anon_sym_BSLASHcitetext] = ACTIONS(4200), + [anon_sym_BSLASHparencite] = ACTIONS(4200), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4203), + [anon_sym_BSLASHParencite] = ACTIONS(4200), + [anon_sym_BSLASHfootcite] = ACTIONS(4200), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4200), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4200), + [anon_sym_BSLASHtextcite] = ACTIONS(4200), + [anon_sym_BSLASHTextcite] = ACTIONS(4200), + [anon_sym_BSLASHsmartcite] = ACTIONS(4200), + [anon_sym_BSLASHSmartcite] = ACTIONS(4200), + [anon_sym_BSLASHsupercite] = ACTIONS(4200), + [anon_sym_BSLASHautocite] = ACTIONS(4200), + [anon_sym_BSLASHAutocite] = ACTIONS(4200), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4203), + [anon_sym_BSLASHvolcite] = ACTIONS(4200), + [anon_sym_BSLASHVolcite] = ACTIONS(4200), + [anon_sym_BSLASHpvolcite] = ACTIONS(4200), + [anon_sym_BSLASHPvolcite] = ACTIONS(4200), + [anon_sym_BSLASHfvolcite] = ACTIONS(4200), + [anon_sym_BSLASHftvolcite] = ACTIONS(4200), + [anon_sym_BSLASHsvolcite] = ACTIONS(4200), + [anon_sym_BSLASHSvolcite] = ACTIONS(4200), + [anon_sym_BSLASHtvolcite] = ACTIONS(4200), + [anon_sym_BSLASHTvolcite] = ACTIONS(4200), + [anon_sym_BSLASHavolcite] = ACTIONS(4200), + [anon_sym_BSLASHAvolcite] = ACTIONS(4200), + [anon_sym_BSLASHnotecite] = ACTIONS(4200), + [anon_sym_BSLASHpnotecite] = ACTIONS(4200), + [anon_sym_BSLASHPnotecite] = ACTIONS(4200), + [anon_sym_BSLASHfnotecite] = ACTIONS(4200), + [anon_sym_BSLASHusepackage] = ACTIONS(4206), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4206), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4209), + [anon_sym_BSLASHinclude] = ACTIONS(4212), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4212), + [anon_sym_BSLASHinput] = ACTIONS(4215), + [anon_sym_BSLASHsubfile] = ACTIONS(4215), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4218), + [anon_sym_BSLASHbibliography] = ACTIONS(4221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4224), + [anon_sym_BSLASHincludesvg] = ACTIONS(4227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4230), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4233), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4233), + [anon_sym_BSLASHimport] = ACTIONS(4236), + [anon_sym_BSLASHsubimport] = ACTIONS(4236), + [anon_sym_BSLASHinputfrom] = ACTIONS(4236), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4236), + [anon_sym_BSLASHincludefrom] = ACTIONS(4236), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4236), + [anon_sym_BSLASHlabel] = ACTIONS(4239), + [anon_sym_BSLASHref] = ACTIONS(4242), + [anon_sym_BSLASHvref] = ACTIONS(4242), + [anon_sym_BSLASHVref] = ACTIONS(4242), + [anon_sym_BSLASHautoref] = ACTIONS(4242), + [anon_sym_BSLASHpageref] = ACTIONS(4242), + [anon_sym_BSLASHcref] = ACTIONS(4242), + [anon_sym_BSLASHCref] = ACTIONS(4242), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4245), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4245), + [anon_sym_BSLASHnamecref] = ACTIONS(4242), + [anon_sym_BSLASHnameCref] = ACTIONS(4242), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4242), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4242), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4242), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4242), + [anon_sym_BSLASHlabelcref] = ACTIONS(4242), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4242), + [anon_sym_BSLASHeqref] = ACTIONS(4248), + [anon_sym_BSLASHcrefrange] = ACTIONS(4251), + [anon_sym_BSLASHCrefrange] = ACTIONS(4251), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4254), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4254), + [anon_sym_BSLASHnewlabel] = ACTIONS(4257), + [anon_sym_BSLASHnewcommand] = ACTIONS(4260), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4260), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4260), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4266), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4269), + [anon_sym_BSLASHgls] = ACTIONS(4272), + [anon_sym_BSLASHGls] = ACTIONS(4272), + [anon_sym_BSLASHGLS] = ACTIONS(4272), + [anon_sym_BSLASHglspl] = ACTIONS(4272), + [anon_sym_BSLASHGlspl] = ACTIONS(4272), + [anon_sym_BSLASHGLSpl] = ACTIONS(4272), + [anon_sym_BSLASHglsdisp] = ACTIONS(4272), + [anon_sym_BSLASHglslink] = ACTIONS(4272), + [anon_sym_BSLASHglstext] = ACTIONS(4272), + [anon_sym_BSLASHGlstext] = ACTIONS(4272), + [anon_sym_BSLASHGLStext] = ACTIONS(4272), + [anon_sym_BSLASHglsfirst] = ACTIONS(4272), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4272), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4272), + [anon_sym_BSLASHglsplural] = ACTIONS(4272), + [anon_sym_BSLASHGlsplural] = ACTIONS(4272), + [anon_sym_BSLASHGLSplural] = ACTIONS(4272), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4272), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4272), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4272), + [anon_sym_BSLASHglsname] = ACTIONS(4272), + [anon_sym_BSLASHGlsname] = ACTIONS(4272), + [anon_sym_BSLASHGLSname] = ACTIONS(4272), + [anon_sym_BSLASHglssymbol] = ACTIONS(4272), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4272), + [anon_sym_BSLASHglsdesc] = ACTIONS(4272), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4272), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4272), + [anon_sym_BSLASHglsuseri] = ACTIONS(4272), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4272), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4272), + [anon_sym_BSLASHglsuserii] = ACTIONS(4272), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4272), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4272), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4272), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4272), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4272), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4272), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4272), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4272), + [anon_sym_BSLASHglsuserv] = ACTIONS(4272), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4272), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4272), + [anon_sym_BSLASHglsuservi] = ACTIONS(4272), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4272), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4272), + [anon_sym_BSLASHnewacronym] = ACTIONS(4275), + [anon_sym_BSLASHacrshort] = ACTIONS(4278), + [anon_sym_BSLASHAcrshort] = ACTIONS(4278), + [anon_sym_BSLASHACRshort] = ACTIONS(4278), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4278), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4278), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4278), + [anon_sym_BSLASHacrlong] = ACTIONS(4278), + [anon_sym_BSLASHAcrlong] = ACTIONS(4278), + [anon_sym_BSLASHACRlong] = ACTIONS(4278), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4278), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4278), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4278), + [anon_sym_BSLASHacrfull] = ACTIONS(4278), + [anon_sym_BSLASHAcrfull] = ACTIONS(4278), + [anon_sym_BSLASHACRfull] = ACTIONS(4278), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4278), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4278), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4278), + [anon_sym_BSLASHacs] = ACTIONS(4278), + [anon_sym_BSLASHAcs] = ACTIONS(4278), + [anon_sym_BSLASHacsp] = ACTIONS(4278), + [anon_sym_BSLASHAcsp] = ACTIONS(4278), + [anon_sym_BSLASHacl] = ACTIONS(4278), + [anon_sym_BSLASHAcl] = ACTIONS(4278), + [anon_sym_BSLASHaclp] = ACTIONS(4278), + [anon_sym_BSLASHAclp] = ACTIONS(4278), + [anon_sym_BSLASHacf] = ACTIONS(4278), + [anon_sym_BSLASHAcf] = ACTIONS(4278), + [anon_sym_BSLASHacfp] = ACTIONS(4278), + [anon_sym_BSLASHAcfp] = ACTIONS(4278), + [anon_sym_BSLASHac] = ACTIONS(4278), + [anon_sym_BSLASHAc] = ACTIONS(4278), + [anon_sym_BSLASHacp] = ACTIONS(4278), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4278), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4278), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4278), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4278), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4278), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4278), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4278), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4278), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4278), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4278), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4281), + [anon_sym_BSLASHcolor] = ACTIONS(4284), + [anon_sym_BSLASHcolorbox] = ACTIONS(4284), + [anon_sym_BSLASHtextcolor] = ACTIONS(4284), + [anon_sym_BSLASHpagecolor] = ACTIONS(4284), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4287), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4290), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4296), + }, + [292] = { + [sym__simple_content] = STATE(284), + [sym_subsection] = STATE(284), + [sym_subsubsection] = STATE(284), + [sym_paragraph] = STATE(284), + [sym_subparagraph] = STATE(284), + [sym_enum_item] = STATE(284), + [sym_brace_group] = STATE(284), + [sym_mixed_group] = STATE(284), + [sym_text] = STATE(284), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(284), + [sym_inline_formula] = STATE(284), + [sym_begin] = STATE(86), + [sym_environment] = STATE(284), + [sym_caption] = STATE(284), + [sym_citation] = STATE(284), + [sym_package_include] = STATE(284), + [sym_class_include] = STATE(284), + [sym_latex_include] = STATE(284), + [sym_latex_input] = STATE(284), + [sym_biblatex_include] = STATE(284), + [sym_bibtex_include] = STATE(284), + [sym_graphics_include] = STATE(284), + [sym_svg_include] = STATE(284), + [sym_inkscape_include] = STATE(284), + [sym_verbatim_include] = STATE(284), + [sym_import] = STATE(284), + [sym_label_definition] = STATE(284), + [sym_label_reference] = STATE(284), + [sym_equation_label_reference] = STATE(284), + [sym_label_reference_range] = STATE(284), + [sym_label_number] = STATE(284), + [sym_command_definition] = STATE(284), + [sym_math_operator] = STATE(284), + [sym_glossary_entry_definition] = STATE(284), + [sym_glossary_entry_reference] = STATE(284), + [sym_acronym_definition] = STATE(284), + [sym_acronym_reference] = STATE(284), + [sym_theorem_definition] = STATE(284), + [sym_color_reference] = STATE(284), + [sym_color_definition] = STATE(284), + [sym_color_set_definition] = STATE(284), + [sym_pgf_library_import] = STATE(284), + [sym_tikz_library_import] = STATE(284), + [sym_generic_command] = STATE(284), + [aux_sym_section_repeat1] = STATE(284), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(1977), + [aux_sym_section_token1] = ACTIONS(1977), + [aux_sym_subsection_token1] = ACTIONS(2304), + [aux_sym_subsubsection_token1] = ACTIONS(2306), + [aux_sym_paragraph_token1] = ACTIONS(2308), + [aux_sym_subparagraph_token1] = ACTIONS(2310), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(4299), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [293] = { + [sym__simple_content] = STATE(289), + [sym_section] = STATE(289), + [sym_subsection] = STATE(289), + [sym_subsubsection] = STATE(289), + [sym_paragraph] = STATE(289), + [sym_subparagraph] = STATE(289), + [sym_enum_item] = STATE(289), + [sym_brace_group] = STATE(289), + [sym_mixed_group] = STATE(289), + [sym_text] = STATE(289), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(289), + [sym_inline_formula] = STATE(289), + [sym_begin] = STATE(94), + [sym_environment] = STATE(289), + [sym_caption] = STATE(289), + [sym_citation] = STATE(289), + [sym_package_include] = STATE(289), + [sym_class_include] = STATE(289), + [sym_latex_include] = STATE(289), + [sym_latex_input] = STATE(289), + [sym_biblatex_include] = STATE(289), + [sym_bibtex_include] = STATE(289), + [sym_graphics_include] = STATE(289), + [sym_svg_include] = STATE(289), + [sym_inkscape_include] = STATE(289), + [sym_verbatim_include] = STATE(289), + [sym_import] = STATE(289), + [sym_label_definition] = STATE(289), + [sym_label_reference] = STATE(289), + [sym_equation_label_reference] = STATE(289), + [sym_label_reference_range] = STATE(289), + [sym_label_number] = STATE(289), + [sym_command_definition] = STATE(289), + [sym_math_operator] = STATE(289), + [sym_glossary_entry_definition] = STATE(289), + [sym_glossary_entry_reference] = STATE(289), + [sym_acronym_definition] = STATE(289), + [sym_acronym_reference] = STATE(289), + [sym_theorem_definition] = STATE(289), + [sym_color_reference] = STATE(289), + [sym_color_definition] = STATE(289), + [sym_color_set_definition] = STATE(289), + [sym_pgf_library_import] = STATE(289), + [sym_tikz_library_import] = STATE(289), + [sym_generic_command] = STATE(289), + [aux_sym_chapter_repeat1] = STATE(289), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(4060), + [aux_sym_subsection_token1] = ACTIONS(4062), + [aux_sym_subsubsection_token1] = ACTIONS(4064), + [aux_sym_paragraph_token1] = ACTIONS(4066), + [aux_sym_subparagraph_token1] = ACTIONS(4068), + [anon_sym_BSLASHitem] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(4301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [294] = { + [sym__simple_content] = STATE(294), + [sym_subsection] = STATE(294), + [sym_subsubsection] = STATE(294), + [sym_paragraph] = STATE(294), + [sym_subparagraph] = STATE(294), + [sym_enum_item] = STATE(294), + [sym_brace_group] = STATE(294), + [sym_mixed_group] = STATE(294), + [sym_text] = STATE(294), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(294), + [sym_inline_formula] = STATE(294), + [sym_begin] = STATE(73), + [sym_environment] = STATE(294), + [sym_caption] = STATE(294), + [sym_citation] = STATE(294), + [sym_package_include] = STATE(294), + [sym_class_include] = STATE(294), + [sym_latex_include] = STATE(294), + [sym_latex_input] = STATE(294), + [sym_biblatex_include] = STATE(294), + [sym_bibtex_include] = STATE(294), + [sym_graphics_include] = STATE(294), + [sym_svg_include] = STATE(294), + [sym_inkscape_include] = STATE(294), + [sym_verbatim_include] = STATE(294), + [sym_import] = STATE(294), + [sym_label_definition] = STATE(294), + [sym_label_reference] = STATE(294), + [sym_equation_label_reference] = STATE(294), + [sym_label_reference_range] = STATE(294), + [sym_label_number] = STATE(294), + [sym_command_definition] = STATE(294), + [sym_math_operator] = STATE(294), + [sym_glossary_entry_definition] = STATE(294), + [sym_glossary_entry_reference] = STATE(294), + [sym_acronym_definition] = STATE(294), + [sym_acronym_reference] = STATE(294), + [sym_theorem_definition] = STATE(294), + [sym_color_reference] = STATE(294), + [sym_color_definition] = STATE(294), + [sym_color_set_definition] = STATE(294), + [sym_pgf_library_import] = STATE(294), + [sym_tikz_library_import] = STATE(294), + [sym_generic_command] = STATE(294), + [aux_sym_section_repeat1] = STATE(294), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(4303), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1992), + [aux_sym_chapter_token1] = ACTIONS(1992), + [aux_sym_section_token1] = ACTIONS(1992), + [aux_sym_subsection_token1] = ACTIONS(4306), + [aux_sym_subsubsection_token1] = ACTIONS(4309), + [aux_sym_paragraph_token1] = ACTIONS(4312), + [aux_sym_subparagraph_token1] = ACTIONS(4315), + [anon_sym_BSLASHitem] = ACTIONS(4318), + [anon_sym_LBRACK] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4324), + [anon_sym_LPAREN] = ACTIONS(4321), + [anon_sym_COMMA] = ACTIONS(4327), + [anon_sym_EQ] = ACTIONS(4327), + [sym_word] = ACTIONS(4327), + [sym_param] = ACTIONS(4330), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4333), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4333), + [anon_sym_DOLLAR] = ACTIONS(4336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4339), + [anon_sym_BSLASHbegin] = ACTIONS(2030), + [anon_sym_BSLASHend] = ACTIONS(1992), + [anon_sym_BSLASHcaption] = ACTIONS(4342), + [anon_sym_BSLASHcite] = ACTIONS(4345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4348), + [anon_sym_BSLASHCite] = ACTIONS(4345), + [anon_sym_BSLASHnocite] = ACTIONS(4345), + [anon_sym_BSLASHcitet] = ACTIONS(4345), + [anon_sym_BSLASHcitep] = ACTIONS(4345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4348), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4348), + [anon_sym_BSLASHciteauthor] = ACTIONS(4345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4348), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4348), + [anon_sym_BSLASHcitetitle] = ACTIONS(4345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4348), + [anon_sym_BSLASHciteyear] = ACTIONS(4345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4348), + [anon_sym_BSLASHcitedate] = ACTIONS(4345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4348), + [anon_sym_BSLASHciteurl] = ACTIONS(4345), + [anon_sym_BSLASHfullcite] = ACTIONS(4345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), + [anon_sym_BSLASHcitealt] = ACTIONS(4345), + [anon_sym_BSLASHcitealp] = ACTIONS(4345), + [anon_sym_BSLASHcitetext] = ACTIONS(4345), + [anon_sym_BSLASHparencite] = ACTIONS(4345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4348), + [anon_sym_BSLASHParencite] = ACTIONS(4345), + [anon_sym_BSLASHfootcite] = ACTIONS(4345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), + [anon_sym_BSLASHtextcite] = ACTIONS(4345), + [anon_sym_BSLASHTextcite] = ACTIONS(4345), + [anon_sym_BSLASHsmartcite] = ACTIONS(4345), + [anon_sym_BSLASHSmartcite] = ACTIONS(4345), + [anon_sym_BSLASHsupercite] = ACTIONS(4345), + [anon_sym_BSLASHautocite] = ACTIONS(4345), + [anon_sym_BSLASHAutocite] = ACTIONS(4345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4348), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4348), + [anon_sym_BSLASHvolcite] = ACTIONS(4345), + [anon_sym_BSLASHVolcite] = ACTIONS(4345), + [anon_sym_BSLASHpvolcite] = ACTIONS(4345), + [anon_sym_BSLASHPvolcite] = ACTIONS(4345), + [anon_sym_BSLASHfvolcite] = ACTIONS(4345), + [anon_sym_BSLASHftvolcite] = ACTIONS(4345), + [anon_sym_BSLASHsvolcite] = ACTIONS(4345), + [anon_sym_BSLASHSvolcite] = ACTIONS(4345), + [anon_sym_BSLASHtvolcite] = ACTIONS(4345), + [anon_sym_BSLASHTvolcite] = ACTIONS(4345), + [anon_sym_BSLASHavolcite] = ACTIONS(4345), + [anon_sym_BSLASHAvolcite] = ACTIONS(4345), + [anon_sym_BSLASHnotecite] = ACTIONS(4345), + [anon_sym_BSLASHpnotecite] = ACTIONS(4345), + [anon_sym_BSLASHPnotecite] = ACTIONS(4345), + [anon_sym_BSLASHfnotecite] = ACTIONS(4345), + [anon_sym_BSLASHusepackage] = ACTIONS(4351), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4351), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4354), + [anon_sym_BSLASHinclude] = ACTIONS(4357), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4357), + [anon_sym_BSLASHinput] = ACTIONS(4360), + [anon_sym_BSLASHsubfile] = ACTIONS(4360), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4363), + [anon_sym_BSLASHbibliography] = ACTIONS(4366), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4369), + [anon_sym_BSLASHincludesvg] = ACTIONS(4372), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4375), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4378), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4378), + [anon_sym_BSLASHimport] = ACTIONS(4381), + [anon_sym_BSLASHsubimport] = ACTIONS(4381), + [anon_sym_BSLASHinputfrom] = ACTIONS(4381), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4381), + [anon_sym_BSLASHincludefrom] = ACTIONS(4381), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4381), + [anon_sym_BSLASHlabel] = ACTIONS(4384), + [anon_sym_BSLASHref] = ACTIONS(4387), + [anon_sym_BSLASHvref] = ACTIONS(4387), + [anon_sym_BSLASHVref] = ACTIONS(4387), + [anon_sym_BSLASHautoref] = ACTIONS(4387), + [anon_sym_BSLASHpageref] = ACTIONS(4387), + [anon_sym_BSLASHcref] = ACTIONS(4387), + [anon_sym_BSLASHCref] = ACTIONS(4387), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4390), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4390), + [anon_sym_BSLASHnamecref] = ACTIONS(4387), + [anon_sym_BSLASHnameCref] = ACTIONS(4387), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4387), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4387), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4387), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4387), + [anon_sym_BSLASHlabelcref] = ACTIONS(4387), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4387), + [anon_sym_BSLASHeqref] = ACTIONS(4393), + [anon_sym_BSLASHcrefrange] = ACTIONS(4396), + [anon_sym_BSLASHCrefrange] = ACTIONS(4396), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4399), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4399), + [anon_sym_BSLASHnewlabel] = ACTIONS(4402), + [anon_sym_BSLASHnewcommand] = ACTIONS(4405), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4405), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4405), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4408), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4414), + [anon_sym_BSLASHgls] = ACTIONS(4417), + [anon_sym_BSLASHGls] = ACTIONS(4417), + [anon_sym_BSLASHGLS] = ACTIONS(4417), + [anon_sym_BSLASHglspl] = ACTIONS(4417), + [anon_sym_BSLASHGlspl] = ACTIONS(4417), + [anon_sym_BSLASHGLSpl] = ACTIONS(4417), + [anon_sym_BSLASHglsdisp] = ACTIONS(4417), + [anon_sym_BSLASHglslink] = ACTIONS(4417), + [anon_sym_BSLASHglstext] = ACTIONS(4417), + [anon_sym_BSLASHGlstext] = ACTIONS(4417), + [anon_sym_BSLASHGLStext] = ACTIONS(4417), + [anon_sym_BSLASHglsfirst] = ACTIONS(4417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4417), + [anon_sym_BSLASHglsplural] = ACTIONS(4417), + [anon_sym_BSLASHGlsplural] = ACTIONS(4417), + [anon_sym_BSLASHGLSplural] = ACTIONS(4417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4417), + [anon_sym_BSLASHglsname] = ACTIONS(4417), + [anon_sym_BSLASHGlsname] = ACTIONS(4417), + [anon_sym_BSLASHGLSname] = ACTIONS(4417), + [anon_sym_BSLASHglssymbol] = ACTIONS(4417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4417), + [anon_sym_BSLASHglsdesc] = ACTIONS(4417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4417), + [anon_sym_BSLASHglsuseri] = ACTIONS(4417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4417), + [anon_sym_BSLASHglsuserii] = ACTIONS(4417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4417), + [anon_sym_BSLASHglsuserv] = ACTIONS(4417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4417), + [anon_sym_BSLASHglsuservi] = ACTIONS(4417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4417), + [anon_sym_BSLASHnewacronym] = ACTIONS(4420), + [anon_sym_BSLASHacrshort] = ACTIONS(4423), + [anon_sym_BSLASHAcrshort] = ACTIONS(4423), + [anon_sym_BSLASHACRshort] = ACTIONS(4423), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4423), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4423), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4423), + [anon_sym_BSLASHacrlong] = ACTIONS(4423), + [anon_sym_BSLASHAcrlong] = ACTIONS(4423), + [anon_sym_BSLASHACRlong] = ACTIONS(4423), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4423), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4423), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4423), + [anon_sym_BSLASHacrfull] = ACTIONS(4423), + [anon_sym_BSLASHAcrfull] = ACTIONS(4423), + [anon_sym_BSLASHACRfull] = ACTIONS(4423), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4423), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4423), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4423), + [anon_sym_BSLASHacs] = ACTIONS(4423), + [anon_sym_BSLASHAcs] = ACTIONS(4423), + [anon_sym_BSLASHacsp] = ACTIONS(4423), + [anon_sym_BSLASHAcsp] = ACTIONS(4423), + [anon_sym_BSLASHacl] = ACTIONS(4423), + [anon_sym_BSLASHAcl] = ACTIONS(4423), + [anon_sym_BSLASHaclp] = ACTIONS(4423), + [anon_sym_BSLASHAclp] = ACTIONS(4423), + [anon_sym_BSLASHacf] = ACTIONS(4423), + [anon_sym_BSLASHAcf] = ACTIONS(4423), + [anon_sym_BSLASHacfp] = ACTIONS(4423), + [anon_sym_BSLASHAcfp] = ACTIONS(4423), + [anon_sym_BSLASHac] = ACTIONS(4423), + [anon_sym_BSLASHAc] = ACTIONS(4423), + [anon_sym_BSLASHacp] = ACTIONS(4423), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4423), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4423), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4423), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4423), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4423), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4423), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4423), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4423), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4423), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4423), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4426), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4426), + [anon_sym_BSLASHcolor] = ACTIONS(4429), + [anon_sym_BSLASHcolorbox] = ACTIONS(4429), + [anon_sym_BSLASHtextcolor] = ACTIONS(4429), + [anon_sym_BSLASHpagecolor] = ACTIONS(4429), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4432), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4435), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4438), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), + }, + [295] = { + [sym__simple_content] = STATE(298), + [sym_subsection] = STATE(298), + [sym_subsubsection] = STATE(298), + [sym_paragraph] = STATE(298), + [sym_subparagraph] = STATE(298), + [sym_enum_item] = STATE(298), + [sym_brace_group] = STATE(298), + [sym_mixed_group] = STATE(298), + [sym_text] = STATE(298), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(298), + [sym_inline_formula] = STATE(298), + [sym_begin] = STATE(59), + [sym_environment] = STATE(298), + [sym_caption] = STATE(298), + [sym_citation] = STATE(298), + [sym_package_include] = STATE(298), + [sym_class_include] = STATE(298), + [sym_latex_include] = STATE(298), + [sym_latex_input] = STATE(298), + [sym_biblatex_include] = STATE(298), + [sym_bibtex_include] = STATE(298), + [sym_graphics_include] = STATE(298), + [sym_svg_include] = STATE(298), + [sym_inkscape_include] = STATE(298), + [sym_verbatim_include] = STATE(298), + [sym_import] = STATE(298), + [sym_label_definition] = STATE(298), + [sym_label_reference] = STATE(298), + [sym_equation_label_reference] = STATE(298), + [sym_label_reference_range] = STATE(298), + [sym_label_number] = STATE(298), + [sym_command_definition] = STATE(298), + [sym_math_operator] = STATE(298), + [sym_glossary_entry_definition] = STATE(298), + [sym_glossary_entry_reference] = STATE(298), + [sym_acronym_definition] = STATE(298), + [sym_acronym_reference] = STATE(298), + [sym_theorem_definition] = STATE(298), + [sym_color_reference] = STATE(298), + [sym_color_definition] = STATE(298), + [sym_color_set_definition] = STATE(298), + [sym_pgf_library_import] = STATE(298), + [sym_tikz_library_import] = STATE(298), + [sym_generic_command] = STATE(298), + [aux_sym_section_repeat1] = STATE(298), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1983), + [aux_sym_chapter_token1] = ACTIONS(1983), + [aux_sym_section_token1] = ACTIONS(1983), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(4444), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1981), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [296] = { + [sym__simple_content] = STATE(296), + [sym_section] = STATE(296), + [sym_subsection] = STATE(296), + [sym_subsubsection] = STATE(296), + [sym_paragraph] = STATE(296), + [sym_subparagraph] = STATE(296), + [sym_enum_item] = STATE(296), + [sym_brace_group] = STATE(296), + [sym_mixed_group] = STATE(296), + [sym_text] = STATE(296), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(296), + [sym_inline_formula] = STATE(296), + [sym_begin] = STATE(94), + [sym_environment] = STATE(296), + [sym_caption] = STATE(296), + [sym_citation] = STATE(296), + [sym_package_include] = STATE(296), + [sym_class_include] = STATE(296), + [sym_latex_include] = STATE(296), + [sym_latex_input] = STATE(296), + [sym_biblatex_include] = STATE(296), + [sym_bibtex_include] = STATE(296), + [sym_graphics_include] = STATE(296), + [sym_svg_include] = STATE(296), + [sym_inkscape_include] = STATE(296), + [sym_verbatim_include] = STATE(296), + [sym_import] = STATE(296), + [sym_label_definition] = STATE(296), + [sym_label_reference] = STATE(296), + [sym_equation_label_reference] = STATE(296), + [sym_label_reference_range] = STATE(296), + [sym_label_number] = STATE(296), + [sym_command_definition] = STATE(296), + [sym_math_operator] = STATE(296), + [sym_glossary_entry_definition] = STATE(296), + [sym_glossary_entry_reference] = STATE(296), + [sym_acronym_definition] = STATE(296), + [sym_acronym_reference] = STATE(296), + [sym_theorem_definition] = STATE(296), + [sym_color_reference] = STATE(296), + [sym_color_definition] = STATE(296), + [sym_color_set_definition] = STATE(296), + [sym_pgf_library_import] = STATE(296), + [sym_tikz_library_import] = STATE(296), + [sym_generic_command] = STATE(296), + [aux_sym_chapter_repeat1] = STATE(296), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4446), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(4449), + [aux_sym_subsection_token1] = ACTIONS(4452), + [aux_sym_subsubsection_token1] = ACTIONS(4455), + [aux_sym_paragraph_token1] = ACTIONS(4458), + [aux_sym_subparagraph_token1] = ACTIONS(4461), + [anon_sym_BSLASHitem] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4467), + [anon_sym_RBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(4470), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(4467), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [sym_word] = ACTIONS(4473), + [sym_param] = ACTIONS(4476), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4479), + [anon_sym_DOLLAR] = ACTIONS(4482), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), + [anon_sym_BSLASHbegin] = ACTIONS(1576), + [anon_sym_BSLASHcaption] = ACTIONS(4488), + [anon_sym_BSLASHcite] = ACTIONS(4491), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4494), + [anon_sym_BSLASHCite] = ACTIONS(4491), + [anon_sym_BSLASHnocite] = ACTIONS(4491), + [anon_sym_BSLASHcitet] = ACTIONS(4491), + [anon_sym_BSLASHcitep] = ACTIONS(4491), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4494), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4494), + [anon_sym_BSLASHciteauthor] = ACTIONS(4491), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4494), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4491), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4494), + [anon_sym_BSLASHcitetitle] = ACTIONS(4491), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4494), + [anon_sym_BSLASHciteyear] = ACTIONS(4491), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4494), + [anon_sym_BSLASHcitedate] = ACTIONS(4491), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4494), + [anon_sym_BSLASHciteurl] = ACTIONS(4491), + [anon_sym_BSLASHfullcite] = ACTIONS(4491), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4491), + [anon_sym_BSLASHcitealt] = ACTIONS(4491), + [anon_sym_BSLASHcitealp] = ACTIONS(4491), + [anon_sym_BSLASHcitetext] = ACTIONS(4491), + [anon_sym_BSLASHparencite] = ACTIONS(4491), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4494), + [anon_sym_BSLASHParencite] = ACTIONS(4491), + [anon_sym_BSLASHfootcite] = ACTIONS(4491), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4491), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4491), + [anon_sym_BSLASHtextcite] = ACTIONS(4491), + [anon_sym_BSLASHTextcite] = ACTIONS(4491), + [anon_sym_BSLASHsmartcite] = ACTIONS(4491), + [anon_sym_BSLASHSmartcite] = ACTIONS(4491), + [anon_sym_BSLASHsupercite] = ACTIONS(4491), + [anon_sym_BSLASHautocite] = ACTIONS(4491), + [anon_sym_BSLASHAutocite] = ACTIONS(4491), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4494), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4494), + [anon_sym_BSLASHvolcite] = ACTIONS(4491), + [anon_sym_BSLASHVolcite] = ACTIONS(4491), + [anon_sym_BSLASHpvolcite] = ACTIONS(4491), + [anon_sym_BSLASHPvolcite] = ACTIONS(4491), + [anon_sym_BSLASHfvolcite] = ACTIONS(4491), + [anon_sym_BSLASHftvolcite] = ACTIONS(4491), + [anon_sym_BSLASHsvolcite] = ACTIONS(4491), + [anon_sym_BSLASHSvolcite] = ACTIONS(4491), + [anon_sym_BSLASHtvolcite] = ACTIONS(4491), + [anon_sym_BSLASHTvolcite] = ACTIONS(4491), + [anon_sym_BSLASHavolcite] = ACTIONS(4491), + [anon_sym_BSLASHAvolcite] = ACTIONS(4491), + [anon_sym_BSLASHnotecite] = ACTIONS(4491), + [anon_sym_BSLASHpnotecite] = ACTIONS(4491), + [anon_sym_BSLASHPnotecite] = ACTIONS(4491), + [anon_sym_BSLASHfnotecite] = ACTIONS(4491), + [anon_sym_BSLASHusepackage] = ACTIONS(4497), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4497), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4500), + [anon_sym_BSLASHinclude] = ACTIONS(4503), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4503), + [anon_sym_BSLASHinput] = ACTIONS(4506), + [anon_sym_BSLASHsubfile] = ACTIONS(4506), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4509), + [anon_sym_BSLASHbibliography] = ACTIONS(4512), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4515), + [anon_sym_BSLASHincludesvg] = ACTIONS(4518), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4521), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4524), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4524), + [anon_sym_BSLASHimport] = ACTIONS(4527), + [anon_sym_BSLASHsubimport] = ACTIONS(4527), + [anon_sym_BSLASHinputfrom] = ACTIONS(4527), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4527), + [anon_sym_BSLASHincludefrom] = ACTIONS(4527), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4527), + [anon_sym_BSLASHlabel] = ACTIONS(4530), + [anon_sym_BSLASHref] = ACTIONS(4533), + [anon_sym_BSLASHvref] = ACTIONS(4533), + [anon_sym_BSLASHVref] = ACTIONS(4533), + [anon_sym_BSLASHautoref] = ACTIONS(4533), + [anon_sym_BSLASHpageref] = ACTIONS(4533), + [anon_sym_BSLASHcref] = ACTIONS(4533), + [anon_sym_BSLASHCref] = ACTIONS(4533), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4536), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4536), + [anon_sym_BSLASHnamecref] = ACTIONS(4533), + [anon_sym_BSLASHnameCref] = ACTIONS(4533), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4533), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4533), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4533), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4533), + [anon_sym_BSLASHlabelcref] = ACTIONS(4533), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4533), + [anon_sym_BSLASHeqref] = ACTIONS(4539), + [anon_sym_BSLASHcrefrange] = ACTIONS(4542), + [anon_sym_BSLASHCrefrange] = ACTIONS(4542), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4545), + [anon_sym_BSLASHnewlabel] = ACTIONS(4548), + [anon_sym_BSLASHnewcommand] = ACTIONS(4551), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4551), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4551), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4554), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4557), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4560), + [anon_sym_BSLASHgls] = ACTIONS(4563), + [anon_sym_BSLASHGls] = ACTIONS(4563), + [anon_sym_BSLASHGLS] = ACTIONS(4563), + [anon_sym_BSLASHglspl] = ACTIONS(4563), + [anon_sym_BSLASHGlspl] = ACTIONS(4563), + [anon_sym_BSLASHGLSpl] = ACTIONS(4563), + [anon_sym_BSLASHglsdisp] = ACTIONS(4563), + [anon_sym_BSLASHglslink] = ACTIONS(4563), + [anon_sym_BSLASHglstext] = ACTIONS(4563), + [anon_sym_BSLASHGlstext] = ACTIONS(4563), + [anon_sym_BSLASHGLStext] = ACTIONS(4563), + [anon_sym_BSLASHglsfirst] = ACTIONS(4563), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4563), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4563), + [anon_sym_BSLASHglsplural] = ACTIONS(4563), + [anon_sym_BSLASHGlsplural] = ACTIONS(4563), + [anon_sym_BSLASHGLSplural] = ACTIONS(4563), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4563), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4563), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4563), + [anon_sym_BSLASHglsname] = ACTIONS(4563), + [anon_sym_BSLASHGlsname] = ACTIONS(4563), + [anon_sym_BSLASHGLSname] = ACTIONS(4563), + [anon_sym_BSLASHglssymbol] = ACTIONS(4563), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4563), + [anon_sym_BSLASHglsdesc] = ACTIONS(4563), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4563), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4563), + [anon_sym_BSLASHglsuseri] = ACTIONS(4563), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4563), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4563), + [anon_sym_BSLASHglsuserii] = ACTIONS(4563), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4563), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4563), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4563), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4563), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4563), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4563), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4563), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4563), + [anon_sym_BSLASHglsuserv] = ACTIONS(4563), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4563), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4563), + [anon_sym_BSLASHglsuservi] = ACTIONS(4563), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4563), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4563), + [anon_sym_BSLASHnewacronym] = ACTIONS(4566), + [anon_sym_BSLASHacrshort] = ACTIONS(4569), + [anon_sym_BSLASHAcrshort] = ACTIONS(4569), + [anon_sym_BSLASHACRshort] = ACTIONS(4569), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4569), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4569), + [anon_sym_BSLASHacrlong] = ACTIONS(4569), + [anon_sym_BSLASHAcrlong] = ACTIONS(4569), + [anon_sym_BSLASHACRlong] = ACTIONS(4569), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4569), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4569), + [anon_sym_BSLASHacrfull] = ACTIONS(4569), + [anon_sym_BSLASHAcrfull] = ACTIONS(4569), + [anon_sym_BSLASHACRfull] = ACTIONS(4569), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4569), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4569), + [anon_sym_BSLASHacs] = ACTIONS(4569), + [anon_sym_BSLASHAcs] = ACTIONS(4569), + [anon_sym_BSLASHacsp] = ACTIONS(4569), + [anon_sym_BSLASHAcsp] = ACTIONS(4569), + [anon_sym_BSLASHacl] = ACTIONS(4569), + [anon_sym_BSLASHAcl] = ACTIONS(4569), + [anon_sym_BSLASHaclp] = ACTIONS(4569), + [anon_sym_BSLASHAclp] = ACTIONS(4569), + [anon_sym_BSLASHacf] = ACTIONS(4569), + [anon_sym_BSLASHAcf] = ACTIONS(4569), + [anon_sym_BSLASHacfp] = ACTIONS(4569), + [anon_sym_BSLASHAcfp] = ACTIONS(4569), + [anon_sym_BSLASHac] = ACTIONS(4569), + [anon_sym_BSLASHAc] = ACTIONS(4569), + [anon_sym_BSLASHacp] = ACTIONS(4569), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4569), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4569), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4569), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4569), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4569), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4569), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4572), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4572), + [anon_sym_BSLASHcolor] = ACTIONS(4575), + [anon_sym_BSLASHcolorbox] = ACTIONS(4575), + [anon_sym_BSLASHtextcolor] = ACTIONS(4575), + [anon_sym_BSLASHpagecolor] = ACTIONS(4575), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4578), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4581), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4584), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4587), + }, + [297] = { + [sym__simple_content] = STATE(283), + [sym_subsection] = STATE(283), + [sym_subsubsection] = STATE(283), + [sym_paragraph] = STATE(283), + [sym_subparagraph] = STATE(283), + [sym_enum_item] = STATE(283), + [sym_brace_group] = STATE(283), + [sym_mixed_group] = STATE(283), + [sym_text] = STATE(283), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(283), + [sym_inline_formula] = STATE(283), + [sym_begin] = STATE(66), + [sym_environment] = STATE(283), + [sym_caption] = STATE(283), + [sym_citation] = STATE(283), + [sym_package_include] = STATE(283), + [sym_class_include] = STATE(283), + [sym_latex_include] = STATE(283), + [sym_latex_input] = STATE(283), + [sym_biblatex_include] = STATE(283), + [sym_bibtex_include] = STATE(283), + [sym_graphics_include] = STATE(283), + [sym_svg_include] = STATE(283), + [sym_inkscape_include] = STATE(283), + [sym_verbatim_include] = STATE(283), + [sym_import] = STATE(283), + [sym_label_definition] = STATE(283), + [sym_label_reference] = STATE(283), + [sym_equation_label_reference] = STATE(283), + [sym_label_reference_range] = STATE(283), + [sym_label_number] = STATE(283), + [sym_command_definition] = STATE(283), + [sym_math_operator] = STATE(283), + [sym_glossary_entry_definition] = STATE(283), + [sym_glossary_entry_reference] = STATE(283), + [sym_acronym_definition] = STATE(283), + [sym_acronym_reference] = STATE(283), + [sym_theorem_definition] = STATE(283), + [sym_color_reference] = STATE(283), + [sym_color_definition] = STATE(283), + [sym_color_set_definition] = STATE(283), + [sym_pgf_library_import] = STATE(283), + [sym_tikz_library_import] = STATE(283), + [sym_generic_command] = STATE(283), + [aux_sym_section_repeat1] = STATE(283), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1983), + [aux_sym_chapter_token1] = ACTIONS(1983), + [aux_sym_section_token1] = ACTIONS(1983), + [aux_sym_subsection_token1] = ACTIONS(394), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(4590), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1981), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [298] = { + [sym__simple_content] = STATE(300), + [sym_subsection] = STATE(300), + [sym_subsubsection] = STATE(300), + [sym_paragraph] = STATE(300), + [sym_subparagraph] = STATE(300), + [sym_enum_item] = STATE(300), + [sym_brace_group] = STATE(300), + [sym_mixed_group] = STATE(300), + [sym_text] = STATE(300), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(300), + [sym_inline_formula] = STATE(300), + [sym_begin] = STATE(59), + [sym_environment] = STATE(300), + [sym_caption] = STATE(300), + [sym_citation] = STATE(300), + [sym_package_include] = STATE(300), + [sym_class_include] = STATE(300), + [sym_latex_include] = STATE(300), + [sym_latex_input] = STATE(300), + [sym_biblatex_include] = STATE(300), + [sym_bibtex_include] = STATE(300), + [sym_graphics_include] = STATE(300), + [sym_svg_include] = STATE(300), + [sym_inkscape_include] = STATE(300), + [sym_verbatim_include] = STATE(300), + [sym_import] = STATE(300), + [sym_label_definition] = STATE(300), + [sym_label_reference] = STATE(300), + [sym_equation_label_reference] = STATE(300), + [sym_label_reference_range] = STATE(300), + [sym_label_number] = STATE(300), + [sym_command_definition] = STATE(300), + [sym_math_operator] = STATE(300), + [sym_glossary_entry_definition] = STATE(300), + [sym_glossary_entry_reference] = STATE(300), + [sym_acronym_definition] = STATE(300), + [sym_acronym_reference] = STATE(300), + [sym_theorem_definition] = STATE(300), + [sym_color_reference] = STATE(300), + [sym_color_definition] = STATE(300), + [sym_color_set_definition] = STATE(300), + [sym_pgf_library_import] = STATE(300), + [sym_tikz_library_import] = STATE(300), + [sym_generic_command] = STATE(300), + [aux_sym_section_repeat1] = STATE(300), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1977), + [aux_sym_chapter_token1] = ACTIONS(1977), + [aux_sym_section_token1] = ACTIONS(1977), + [aux_sym_subsection_token1] = ACTIONS(292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(4592), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [299] = { + [sym__simple_content] = STATE(285), + [sym_subsection] = STATE(285), + [sym_subsubsection] = STATE(285), + [sym_paragraph] = STATE(285), + [sym_subparagraph] = STATE(285), + [sym_enum_item] = STATE(285), + [sym_brace_group] = STATE(285), + [sym_mixed_group] = STATE(285), + [sym_text] = STATE(285), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(285), + [sym_inline_formula] = STATE(285), + [sym_begin] = STATE(73), + [sym_environment] = STATE(285), + [sym_caption] = STATE(285), + [sym_citation] = STATE(285), + [sym_package_include] = STATE(285), + [sym_class_include] = STATE(285), + [sym_latex_include] = STATE(285), + [sym_latex_input] = STATE(285), + [sym_biblatex_include] = STATE(285), + [sym_bibtex_include] = STATE(285), + [sym_graphics_include] = STATE(285), + [sym_svg_include] = STATE(285), + [sym_inkscape_include] = STATE(285), + [sym_verbatim_include] = STATE(285), + [sym_import] = STATE(285), + [sym_label_definition] = STATE(285), + [sym_label_reference] = STATE(285), + [sym_equation_label_reference] = STATE(285), + [sym_label_reference_range] = STATE(285), + [sym_label_number] = STATE(285), + [sym_command_definition] = STATE(285), + [sym_math_operator] = STATE(285), + [sym_glossary_entry_definition] = STATE(285), + [sym_glossary_entry_reference] = STATE(285), + [sym_acronym_definition] = STATE(285), + [sym_acronym_reference] = STATE(285), + [sym_theorem_definition] = STATE(285), + [sym_color_reference] = STATE(285), + [sym_color_definition] = STATE(285), + [sym_color_set_definition] = STATE(285), + [sym_pgf_library_import] = STATE(285), + [sym_tikz_library_import] = STATE(285), + [sym_generic_command] = STATE(285), + [aux_sym_section_repeat1] = STATE(285), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1983), + [aux_sym_chapter_token1] = ACTIONS(1983), + [aux_sym_section_token1] = ACTIONS(1983), + [aux_sym_subsection_token1] = ACTIONS(500), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(4594), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(1983), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [300] = { + [sym__simple_content] = STATE(300), + [sym_subsection] = STATE(300), + [sym_subsubsection] = STATE(300), + [sym_paragraph] = STATE(300), + [sym_subparagraph] = STATE(300), + [sym_enum_item] = STATE(300), + [sym_brace_group] = STATE(300), + [sym_mixed_group] = STATE(300), + [sym_text] = STATE(300), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(300), + [sym_inline_formula] = STATE(300), + [sym_begin] = STATE(59), + [sym_environment] = STATE(300), + [sym_caption] = STATE(300), + [sym_citation] = STATE(300), + [sym_package_include] = STATE(300), + [sym_class_include] = STATE(300), + [sym_latex_include] = STATE(300), + [sym_latex_input] = STATE(300), + [sym_biblatex_include] = STATE(300), + [sym_bibtex_include] = STATE(300), + [sym_graphics_include] = STATE(300), + [sym_svg_include] = STATE(300), + [sym_inkscape_include] = STATE(300), + [sym_verbatim_include] = STATE(300), + [sym_import] = STATE(300), + [sym_label_definition] = STATE(300), + [sym_label_reference] = STATE(300), + [sym_equation_label_reference] = STATE(300), + [sym_label_reference_range] = STATE(300), + [sym_label_number] = STATE(300), + [sym_command_definition] = STATE(300), + [sym_math_operator] = STATE(300), + [sym_glossary_entry_definition] = STATE(300), + [sym_glossary_entry_reference] = STATE(300), + [sym_acronym_definition] = STATE(300), + [sym_acronym_reference] = STATE(300), + [sym_theorem_definition] = STATE(300), + [sym_color_reference] = STATE(300), + [sym_color_definition] = STATE(300), + [sym_color_set_definition] = STATE(300), + [sym_pgf_library_import] = STATE(300), + [sym_tikz_library_import] = STATE(300), + [sym_generic_command] = STATE(300), + [aux_sym_section_repeat1] = STATE(300), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(4596), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(1992), + [aux_sym_chapter_token1] = ACTIONS(1992), + [aux_sym_section_token1] = ACTIONS(1992), + [aux_sym_subsection_token1] = ACTIONS(4599), + [aux_sym_subsubsection_token1] = ACTIONS(4602), + [aux_sym_paragraph_token1] = ACTIONS(4605), + [aux_sym_subparagraph_token1] = ACTIONS(4608), + [anon_sym_BSLASHitem] = ACTIONS(4611), + [anon_sym_LBRACK] = ACTIONS(4614), + [anon_sym_LBRACE] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(4614), + [anon_sym_COMMA] = ACTIONS(4620), + [anon_sym_EQ] = ACTIONS(4620), + [sym_word] = ACTIONS(4620), + [sym_param] = ACTIONS(4623), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4626), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4626), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1987), + [anon_sym_DOLLAR] = ACTIONS(4629), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4632), + [anon_sym_BSLASHbegin] = ACTIONS(2030), + [anon_sym_BSLASHcaption] = ACTIONS(4635), + [anon_sym_BSLASHcite] = ACTIONS(4638), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4641), + [anon_sym_BSLASHCite] = ACTIONS(4638), + [anon_sym_BSLASHnocite] = ACTIONS(4638), + [anon_sym_BSLASHcitet] = ACTIONS(4638), + [anon_sym_BSLASHcitep] = ACTIONS(4638), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4641), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4641), + [anon_sym_BSLASHciteauthor] = ACTIONS(4638), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4641), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4638), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4641), + [anon_sym_BSLASHcitetitle] = ACTIONS(4638), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4641), + [anon_sym_BSLASHciteyear] = ACTIONS(4638), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4641), + [anon_sym_BSLASHcitedate] = ACTIONS(4638), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4641), + [anon_sym_BSLASHciteurl] = ACTIONS(4638), + [anon_sym_BSLASHfullcite] = ACTIONS(4638), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4638), + [anon_sym_BSLASHcitealt] = ACTIONS(4638), + [anon_sym_BSLASHcitealp] = ACTIONS(4638), + [anon_sym_BSLASHcitetext] = ACTIONS(4638), + [anon_sym_BSLASHparencite] = ACTIONS(4638), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4641), + [anon_sym_BSLASHParencite] = ACTIONS(4638), + [anon_sym_BSLASHfootcite] = ACTIONS(4638), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4638), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4638), + [anon_sym_BSLASHtextcite] = ACTIONS(4638), + [anon_sym_BSLASHTextcite] = ACTIONS(4638), + [anon_sym_BSLASHsmartcite] = ACTIONS(4638), + [anon_sym_BSLASHSmartcite] = ACTIONS(4638), + [anon_sym_BSLASHsupercite] = ACTIONS(4638), + [anon_sym_BSLASHautocite] = ACTIONS(4638), + [anon_sym_BSLASHAutocite] = ACTIONS(4638), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4641), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4641), + [anon_sym_BSLASHvolcite] = ACTIONS(4638), + [anon_sym_BSLASHVolcite] = ACTIONS(4638), + [anon_sym_BSLASHpvolcite] = ACTIONS(4638), + [anon_sym_BSLASHPvolcite] = ACTIONS(4638), + [anon_sym_BSLASHfvolcite] = ACTIONS(4638), + [anon_sym_BSLASHftvolcite] = ACTIONS(4638), + [anon_sym_BSLASHsvolcite] = ACTIONS(4638), + [anon_sym_BSLASHSvolcite] = ACTIONS(4638), + [anon_sym_BSLASHtvolcite] = ACTIONS(4638), + [anon_sym_BSLASHTvolcite] = ACTIONS(4638), + [anon_sym_BSLASHavolcite] = ACTIONS(4638), + [anon_sym_BSLASHAvolcite] = ACTIONS(4638), + [anon_sym_BSLASHnotecite] = ACTIONS(4638), + [anon_sym_BSLASHpnotecite] = ACTIONS(4638), + [anon_sym_BSLASHPnotecite] = ACTIONS(4638), + [anon_sym_BSLASHfnotecite] = ACTIONS(4638), + [anon_sym_BSLASHusepackage] = ACTIONS(4644), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4644), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4647), + [anon_sym_BSLASHinclude] = ACTIONS(4650), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4650), + [anon_sym_BSLASHinput] = ACTIONS(4653), + [anon_sym_BSLASHsubfile] = ACTIONS(4653), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4656), + [anon_sym_BSLASHbibliography] = ACTIONS(4659), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4662), + [anon_sym_BSLASHincludesvg] = ACTIONS(4665), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4668), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4671), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4671), + [anon_sym_BSLASHimport] = ACTIONS(4674), + [anon_sym_BSLASHsubimport] = ACTIONS(4674), + [anon_sym_BSLASHinputfrom] = ACTIONS(4674), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4674), + [anon_sym_BSLASHincludefrom] = ACTIONS(4674), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4674), + [anon_sym_BSLASHlabel] = ACTIONS(4677), + [anon_sym_BSLASHref] = ACTIONS(4680), + [anon_sym_BSLASHvref] = ACTIONS(4680), + [anon_sym_BSLASHVref] = ACTIONS(4680), + [anon_sym_BSLASHautoref] = ACTIONS(4680), + [anon_sym_BSLASHpageref] = ACTIONS(4680), + [anon_sym_BSLASHcref] = ACTIONS(4680), + [anon_sym_BSLASHCref] = ACTIONS(4680), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4683), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4683), + [anon_sym_BSLASHnamecref] = ACTIONS(4680), + [anon_sym_BSLASHnameCref] = ACTIONS(4680), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4680), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4680), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4680), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4680), + [anon_sym_BSLASHlabelcref] = ACTIONS(4680), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4680), + [anon_sym_BSLASHeqref] = ACTIONS(4686), + [anon_sym_BSLASHcrefrange] = ACTIONS(4689), + [anon_sym_BSLASHCrefrange] = ACTIONS(4689), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4692), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4692), + [anon_sym_BSLASHnewlabel] = ACTIONS(4695), + [anon_sym_BSLASHnewcommand] = ACTIONS(4698), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4698), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4698), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4701), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4704), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4707), + [anon_sym_BSLASHgls] = ACTIONS(4710), + [anon_sym_BSLASHGls] = ACTIONS(4710), + [anon_sym_BSLASHGLS] = ACTIONS(4710), + [anon_sym_BSLASHglspl] = ACTIONS(4710), + [anon_sym_BSLASHGlspl] = ACTIONS(4710), + [anon_sym_BSLASHGLSpl] = ACTIONS(4710), + [anon_sym_BSLASHglsdisp] = ACTIONS(4710), + [anon_sym_BSLASHglslink] = ACTIONS(4710), + [anon_sym_BSLASHglstext] = ACTIONS(4710), + [anon_sym_BSLASHGlstext] = ACTIONS(4710), + [anon_sym_BSLASHGLStext] = ACTIONS(4710), + [anon_sym_BSLASHglsfirst] = ACTIONS(4710), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4710), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4710), + [anon_sym_BSLASHglsplural] = ACTIONS(4710), + [anon_sym_BSLASHGlsplural] = ACTIONS(4710), + [anon_sym_BSLASHGLSplural] = ACTIONS(4710), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4710), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4710), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4710), + [anon_sym_BSLASHglsname] = ACTIONS(4710), + [anon_sym_BSLASHGlsname] = ACTIONS(4710), + [anon_sym_BSLASHGLSname] = ACTIONS(4710), + [anon_sym_BSLASHglssymbol] = ACTIONS(4710), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4710), + [anon_sym_BSLASHglsdesc] = ACTIONS(4710), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4710), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4710), + [anon_sym_BSLASHglsuseri] = ACTIONS(4710), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4710), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4710), + [anon_sym_BSLASHglsuserii] = ACTIONS(4710), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4710), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4710), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4710), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4710), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4710), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4710), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4710), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4710), + [anon_sym_BSLASHglsuserv] = ACTIONS(4710), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4710), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4710), + [anon_sym_BSLASHglsuservi] = ACTIONS(4710), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4710), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4710), + [anon_sym_BSLASHnewacronym] = ACTIONS(4713), + [anon_sym_BSLASHacrshort] = ACTIONS(4716), + [anon_sym_BSLASHAcrshort] = ACTIONS(4716), + [anon_sym_BSLASHACRshort] = ACTIONS(4716), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4716), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4716), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4716), + [anon_sym_BSLASHacrlong] = ACTIONS(4716), + [anon_sym_BSLASHAcrlong] = ACTIONS(4716), + [anon_sym_BSLASHACRlong] = ACTIONS(4716), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4716), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4716), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4716), + [anon_sym_BSLASHacrfull] = ACTIONS(4716), + [anon_sym_BSLASHAcrfull] = ACTIONS(4716), + [anon_sym_BSLASHACRfull] = ACTIONS(4716), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4716), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4716), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4716), + [anon_sym_BSLASHacs] = ACTIONS(4716), + [anon_sym_BSLASHAcs] = ACTIONS(4716), + [anon_sym_BSLASHacsp] = ACTIONS(4716), + [anon_sym_BSLASHAcsp] = ACTIONS(4716), + [anon_sym_BSLASHacl] = ACTIONS(4716), + [anon_sym_BSLASHAcl] = ACTIONS(4716), + [anon_sym_BSLASHaclp] = ACTIONS(4716), + [anon_sym_BSLASHAclp] = ACTIONS(4716), + [anon_sym_BSLASHacf] = ACTIONS(4716), + [anon_sym_BSLASHAcf] = ACTIONS(4716), + [anon_sym_BSLASHacfp] = ACTIONS(4716), + [anon_sym_BSLASHAcfp] = ACTIONS(4716), + [anon_sym_BSLASHac] = ACTIONS(4716), + [anon_sym_BSLASHAc] = ACTIONS(4716), + [anon_sym_BSLASHacp] = ACTIONS(4716), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4716), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4716), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4716), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4716), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4716), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4716), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4716), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4716), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4716), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4716), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4719), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4719), + [anon_sym_BSLASHcolor] = ACTIONS(4722), + [anon_sym_BSLASHcolorbox] = ACTIONS(4722), + [anon_sym_BSLASHtextcolor] = ACTIONS(4722), + [anon_sym_BSLASHpagecolor] = ACTIONS(4722), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4725), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4728), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4731), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4734), + }, + [301] = { + [sym__simple_content] = STATE(302), + [sym_subsubsection] = STATE(302), + [sym_paragraph] = STATE(302), + [sym_subparagraph] = STATE(302), + [sym_enum_item] = STATE(302), + [sym_brace_group] = STATE(302), + [sym_mixed_group] = STATE(302), + [sym_text] = STATE(302), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(302), + [sym_inline_formula] = STATE(302), + [sym_begin] = STATE(73), + [sym_environment] = STATE(302), + [sym_caption] = STATE(302), + [sym_citation] = STATE(302), + [sym_package_include] = STATE(302), + [sym_class_include] = STATE(302), + [sym_latex_include] = STATE(302), + [sym_latex_input] = STATE(302), + [sym_biblatex_include] = STATE(302), + [sym_bibtex_include] = STATE(302), + [sym_graphics_include] = STATE(302), + [sym_svg_include] = STATE(302), + [sym_inkscape_include] = STATE(302), + [sym_verbatim_include] = STATE(302), + [sym_import] = STATE(302), + [sym_label_definition] = STATE(302), + [sym_label_reference] = STATE(302), + [sym_equation_label_reference] = STATE(302), + [sym_label_reference_range] = STATE(302), + [sym_label_number] = STATE(302), + [sym_command_definition] = STATE(302), + [sym_math_operator] = STATE(302), + [sym_glossary_entry_definition] = STATE(302), + [sym_glossary_entry_reference] = STATE(302), + [sym_acronym_definition] = STATE(302), + [sym_acronym_reference] = STATE(302), + [sym_theorem_definition] = STATE(302), + [sym_color_reference] = STATE(302), + [sym_color_definition] = STATE(302), + [sym_color_set_definition] = STATE(302), + [sym_pgf_library_import] = STATE(302), + [sym_tikz_library_import] = STATE(302), + [sym_generic_command] = STATE(302), + [aux_sym_subsection_repeat1] = STATE(302), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2292), + [aux_sym_chapter_token1] = ACTIONS(2292), + [aux_sym_section_token1] = ACTIONS(2292), + [aux_sym_subsection_token1] = ACTIONS(2292), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(4737), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(2292), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [302] = { + [sym__simple_content] = STATE(302), + [sym_subsubsection] = STATE(302), + [sym_paragraph] = STATE(302), + [sym_subparagraph] = STATE(302), + [sym_enum_item] = STATE(302), + [sym_brace_group] = STATE(302), + [sym_mixed_group] = STATE(302), + [sym_text] = STATE(302), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(302), + [sym_inline_formula] = STATE(302), + [sym_begin] = STATE(73), + [sym_environment] = STATE(302), + [sym_caption] = STATE(302), + [sym_citation] = STATE(302), + [sym_package_include] = STATE(302), + [sym_class_include] = STATE(302), + [sym_latex_include] = STATE(302), + [sym_latex_input] = STATE(302), + [sym_biblatex_include] = STATE(302), + [sym_bibtex_include] = STATE(302), + [sym_graphics_include] = STATE(302), + [sym_svg_include] = STATE(302), + [sym_inkscape_include] = STATE(302), + [sym_verbatim_include] = STATE(302), + [sym_import] = STATE(302), + [sym_label_definition] = STATE(302), + [sym_label_reference] = STATE(302), + [sym_equation_label_reference] = STATE(302), + [sym_label_reference_range] = STATE(302), + [sym_label_number] = STATE(302), + [sym_command_definition] = STATE(302), + [sym_math_operator] = STATE(302), + [sym_glossary_entry_definition] = STATE(302), + [sym_glossary_entry_reference] = STATE(302), + [sym_acronym_definition] = STATE(302), + [sym_acronym_reference] = STATE(302), + [sym_theorem_definition] = STATE(302), + [sym_color_reference] = STATE(302), + [sym_color_definition] = STATE(302), + [sym_color_set_definition] = STATE(302), + [sym_pgf_library_import] = STATE(302), + [sym_tikz_library_import] = STATE(302), + [sym_generic_command] = STATE(302), + [aux_sym_subsection_repeat1] = STATE(302), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(4739), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2140), + [aux_sym_chapter_token1] = ACTIONS(2140), + [aux_sym_section_token1] = ACTIONS(2140), + [aux_sym_subsection_token1] = ACTIONS(2140), + [aux_sym_subsubsection_token1] = ACTIONS(4742), + [aux_sym_paragraph_token1] = ACTIONS(4745), + [aux_sym_subparagraph_token1] = ACTIONS(4748), + [anon_sym_BSLASHitem] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4754), + [anon_sym_LBRACE] = ACTIONS(4757), + [anon_sym_LPAREN] = ACTIONS(4754), + [anon_sym_COMMA] = ACTIONS(4760), + [anon_sym_EQ] = ACTIONS(4760), + [sym_word] = ACTIONS(4760), + [sym_param] = ACTIONS(4763), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4766), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4766), + [anon_sym_DOLLAR] = ACTIONS(4769), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4772), + [anon_sym_BSLASHbegin] = ACTIONS(2175), + [anon_sym_BSLASHend] = ACTIONS(2140), + [anon_sym_BSLASHcaption] = ACTIONS(4775), + [anon_sym_BSLASHcite] = ACTIONS(4778), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4781), + [anon_sym_BSLASHCite] = ACTIONS(4778), + [anon_sym_BSLASHnocite] = ACTIONS(4778), + [anon_sym_BSLASHcitet] = ACTIONS(4778), + [anon_sym_BSLASHcitep] = ACTIONS(4778), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4781), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4781), + [anon_sym_BSLASHciteauthor] = ACTIONS(4778), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4781), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4778), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4781), + [anon_sym_BSLASHcitetitle] = ACTIONS(4778), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4781), + [anon_sym_BSLASHciteyear] = ACTIONS(4778), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4781), + [anon_sym_BSLASHcitedate] = ACTIONS(4778), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4781), + [anon_sym_BSLASHciteurl] = ACTIONS(4778), + [anon_sym_BSLASHfullcite] = ACTIONS(4778), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4778), + [anon_sym_BSLASHcitealt] = ACTIONS(4778), + [anon_sym_BSLASHcitealp] = ACTIONS(4778), + [anon_sym_BSLASHcitetext] = ACTIONS(4778), + [anon_sym_BSLASHparencite] = ACTIONS(4778), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4781), + [anon_sym_BSLASHParencite] = ACTIONS(4778), + [anon_sym_BSLASHfootcite] = ACTIONS(4778), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4778), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4778), + [anon_sym_BSLASHtextcite] = ACTIONS(4778), + [anon_sym_BSLASHTextcite] = ACTIONS(4778), + [anon_sym_BSLASHsmartcite] = ACTIONS(4778), + [anon_sym_BSLASHSmartcite] = ACTIONS(4778), + [anon_sym_BSLASHsupercite] = ACTIONS(4778), + [anon_sym_BSLASHautocite] = ACTIONS(4778), + [anon_sym_BSLASHAutocite] = ACTIONS(4778), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4781), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4781), + [anon_sym_BSLASHvolcite] = ACTIONS(4778), + [anon_sym_BSLASHVolcite] = ACTIONS(4778), + [anon_sym_BSLASHpvolcite] = ACTIONS(4778), + [anon_sym_BSLASHPvolcite] = ACTIONS(4778), + [anon_sym_BSLASHfvolcite] = ACTIONS(4778), + [anon_sym_BSLASHftvolcite] = ACTIONS(4778), + [anon_sym_BSLASHsvolcite] = ACTIONS(4778), + [anon_sym_BSLASHSvolcite] = ACTIONS(4778), + [anon_sym_BSLASHtvolcite] = ACTIONS(4778), + [anon_sym_BSLASHTvolcite] = ACTIONS(4778), + [anon_sym_BSLASHavolcite] = ACTIONS(4778), + [anon_sym_BSLASHAvolcite] = ACTIONS(4778), + [anon_sym_BSLASHnotecite] = ACTIONS(4778), + [anon_sym_BSLASHpnotecite] = ACTIONS(4778), + [anon_sym_BSLASHPnotecite] = ACTIONS(4778), + [anon_sym_BSLASHfnotecite] = ACTIONS(4778), + [anon_sym_BSLASHusepackage] = ACTIONS(4784), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4784), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4787), + [anon_sym_BSLASHinclude] = ACTIONS(4790), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4790), + [anon_sym_BSLASHinput] = ACTIONS(4793), + [anon_sym_BSLASHsubfile] = ACTIONS(4793), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4796), + [anon_sym_BSLASHbibliography] = ACTIONS(4799), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4802), + [anon_sym_BSLASHincludesvg] = ACTIONS(4805), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4808), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4811), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4811), + [anon_sym_BSLASHimport] = ACTIONS(4814), + [anon_sym_BSLASHsubimport] = ACTIONS(4814), + [anon_sym_BSLASHinputfrom] = ACTIONS(4814), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4814), + [anon_sym_BSLASHincludefrom] = ACTIONS(4814), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4814), + [anon_sym_BSLASHlabel] = ACTIONS(4817), + [anon_sym_BSLASHref] = ACTIONS(4820), + [anon_sym_BSLASHvref] = ACTIONS(4820), + [anon_sym_BSLASHVref] = ACTIONS(4820), + [anon_sym_BSLASHautoref] = ACTIONS(4820), + [anon_sym_BSLASHpageref] = ACTIONS(4820), + [anon_sym_BSLASHcref] = ACTIONS(4820), + [anon_sym_BSLASHCref] = ACTIONS(4820), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4823), + [anon_sym_BSLASHnamecref] = ACTIONS(4820), + [anon_sym_BSLASHnameCref] = ACTIONS(4820), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4820), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4820), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4820), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4820), + [anon_sym_BSLASHlabelcref] = ACTIONS(4820), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4820), + [anon_sym_BSLASHeqref] = ACTIONS(4826), + [anon_sym_BSLASHcrefrange] = ACTIONS(4829), + [anon_sym_BSLASHCrefrange] = ACTIONS(4829), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4832), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4832), + [anon_sym_BSLASHnewlabel] = ACTIONS(4835), + [anon_sym_BSLASHnewcommand] = ACTIONS(4838), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4838), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4838), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4844), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4847), + [anon_sym_BSLASHgls] = ACTIONS(4850), + [anon_sym_BSLASHGls] = ACTIONS(4850), + [anon_sym_BSLASHGLS] = ACTIONS(4850), + [anon_sym_BSLASHglspl] = ACTIONS(4850), + [anon_sym_BSLASHGlspl] = ACTIONS(4850), + [anon_sym_BSLASHGLSpl] = ACTIONS(4850), + [anon_sym_BSLASHglsdisp] = ACTIONS(4850), + [anon_sym_BSLASHglslink] = ACTIONS(4850), + [anon_sym_BSLASHglstext] = ACTIONS(4850), + [anon_sym_BSLASHGlstext] = ACTIONS(4850), + [anon_sym_BSLASHGLStext] = ACTIONS(4850), + [anon_sym_BSLASHglsfirst] = ACTIONS(4850), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4850), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4850), + [anon_sym_BSLASHglsplural] = ACTIONS(4850), + [anon_sym_BSLASHGlsplural] = ACTIONS(4850), + [anon_sym_BSLASHGLSplural] = ACTIONS(4850), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4850), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4850), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4850), + [anon_sym_BSLASHglsname] = ACTIONS(4850), + [anon_sym_BSLASHGlsname] = ACTIONS(4850), + [anon_sym_BSLASHGLSname] = ACTIONS(4850), + [anon_sym_BSLASHglssymbol] = ACTIONS(4850), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4850), + [anon_sym_BSLASHglsdesc] = ACTIONS(4850), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4850), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4850), + [anon_sym_BSLASHglsuseri] = ACTIONS(4850), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4850), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4850), + [anon_sym_BSLASHglsuserii] = ACTIONS(4850), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4850), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4850), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4850), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4850), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4850), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4850), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4850), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4850), + [anon_sym_BSLASHglsuserv] = ACTIONS(4850), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4850), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4850), + [anon_sym_BSLASHglsuservi] = ACTIONS(4850), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4850), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4850), + [anon_sym_BSLASHnewacronym] = ACTIONS(4853), + [anon_sym_BSLASHacrshort] = ACTIONS(4856), + [anon_sym_BSLASHAcrshort] = ACTIONS(4856), + [anon_sym_BSLASHACRshort] = ACTIONS(4856), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4856), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4856), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4856), + [anon_sym_BSLASHacrlong] = ACTIONS(4856), + [anon_sym_BSLASHAcrlong] = ACTIONS(4856), + [anon_sym_BSLASHACRlong] = ACTIONS(4856), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4856), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4856), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4856), + [anon_sym_BSLASHacrfull] = ACTIONS(4856), + [anon_sym_BSLASHAcrfull] = ACTIONS(4856), + [anon_sym_BSLASHACRfull] = ACTIONS(4856), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4856), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4856), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4856), + [anon_sym_BSLASHacs] = ACTIONS(4856), + [anon_sym_BSLASHAcs] = ACTIONS(4856), + [anon_sym_BSLASHacsp] = ACTIONS(4856), + [anon_sym_BSLASHAcsp] = ACTIONS(4856), + [anon_sym_BSLASHacl] = ACTIONS(4856), + [anon_sym_BSLASHAcl] = ACTIONS(4856), + [anon_sym_BSLASHaclp] = ACTIONS(4856), + [anon_sym_BSLASHAclp] = ACTIONS(4856), + [anon_sym_BSLASHacf] = ACTIONS(4856), + [anon_sym_BSLASHAcf] = ACTIONS(4856), + [anon_sym_BSLASHacfp] = ACTIONS(4856), + [anon_sym_BSLASHAcfp] = ACTIONS(4856), + [anon_sym_BSLASHac] = ACTIONS(4856), + [anon_sym_BSLASHAc] = ACTIONS(4856), + [anon_sym_BSLASHacp] = ACTIONS(4856), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4856), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4856), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4856), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4856), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4856), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4856), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4856), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4856), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4856), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4856), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4859), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4859), + [anon_sym_BSLASHcolor] = ACTIONS(4862), + [anon_sym_BSLASHcolorbox] = ACTIONS(4862), + [anon_sym_BSLASHtextcolor] = ACTIONS(4862), + [anon_sym_BSLASHpagecolor] = ACTIONS(4862), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4868), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4871), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4874), + }, + [303] = { + [sym__simple_content] = STATE(308), + [sym_enum_item] = STATE(308), + [sym_brace_group] = STATE(308), + [sym_mixed_group] = STATE(308), + [sym_text] = STATE(308), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(308), + [sym_inline_formula] = STATE(308), + [sym_begin] = STATE(52), + [sym_environment] = STATE(308), + [sym_caption] = STATE(308), + [sym_citation] = STATE(308), + [sym_package_include] = STATE(308), + [sym_class_include] = STATE(308), + [sym_latex_include] = STATE(308), + [sym_latex_input] = STATE(308), + [sym_biblatex_include] = STATE(308), + [sym_bibtex_include] = STATE(308), + [sym_graphics_include] = STATE(308), + [sym_svg_include] = STATE(308), + [sym_inkscape_include] = STATE(308), + [sym_verbatim_include] = STATE(308), + [sym_import] = STATE(308), + [sym_label_definition] = STATE(308), + [sym_label_reference] = STATE(308), + [sym_equation_label_reference] = STATE(308), + [sym_label_reference_range] = STATE(308), + [sym_label_number] = STATE(308), + [sym_command_definition] = STATE(308), + [sym_math_operator] = STATE(308), + [sym_glossary_entry_definition] = STATE(308), + [sym_glossary_entry_reference] = STATE(308), + [sym_acronym_definition] = STATE(308), + [sym_acronym_reference] = STATE(308), + [sym_theorem_definition] = STATE(308), + [sym_color_reference] = STATE(308), + [sym_color_definition] = STATE(308), + [sym_color_set_definition] = STATE(308), + [sym_pgf_library_import] = STATE(308), + [sym_tikz_library_import] = STATE(308), + [sym_generic_command] = STATE(308), + [aux_sym_subparagraph_repeat1] = STATE(308), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(4877), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4879), + [aux_sym_chapter_token1] = ACTIONS(4879), + [aux_sym_section_token1] = ACTIONS(4879), + [aux_sym_subsection_token1] = ACTIONS(4879), + [aux_sym_subsubsection_token1] = ACTIONS(4879), + [aux_sym_paragraph_token1] = ACTIONS(4879), + [aux_sym_subparagraph_token1] = ACTIONS(4879), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(4877), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(4881), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [304] = { + [sym__simple_content] = STATE(304), + [sym_subsection] = STATE(304), + [sym_subsubsection] = STATE(304), + [sym_paragraph] = STATE(304), + [sym_subparagraph] = STATE(304), + [sym_enum_item] = STATE(304), + [sym_brace_group] = STATE(304), + [sym_mixed_group] = STATE(304), + [sym_text] = STATE(304), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(304), + [sym_inline_formula] = STATE(304), + [sym_begin] = STATE(94), + [sym_environment] = STATE(304), + [sym_caption] = STATE(304), + [sym_citation] = STATE(304), + [sym_package_include] = STATE(304), + [sym_class_include] = STATE(304), + [sym_latex_include] = STATE(304), + [sym_latex_input] = STATE(304), + [sym_biblatex_include] = STATE(304), + [sym_bibtex_include] = STATE(304), + [sym_graphics_include] = STATE(304), + [sym_svg_include] = STATE(304), + [sym_inkscape_include] = STATE(304), + [sym_verbatim_include] = STATE(304), + [sym_import] = STATE(304), + [sym_label_definition] = STATE(304), + [sym_label_reference] = STATE(304), + [sym_equation_label_reference] = STATE(304), + [sym_label_reference_range] = STATE(304), + [sym_label_number] = STATE(304), + [sym_command_definition] = STATE(304), + [sym_math_operator] = STATE(304), + [sym_glossary_entry_definition] = STATE(304), + [sym_glossary_entry_reference] = STATE(304), + [sym_acronym_definition] = STATE(304), + [sym_acronym_reference] = STATE(304), + [sym_theorem_definition] = STATE(304), + [sym_color_reference] = STATE(304), + [sym_color_definition] = STATE(304), + [sym_color_set_definition] = STATE(304), + [sym_pgf_library_import] = STATE(304), + [sym_tikz_library_import] = STATE(304), + [sym_generic_command] = STATE(304), + [aux_sym_section_repeat1] = STATE(304), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4883), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(1992), + [aux_sym_subsection_token1] = ACTIONS(4886), + [aux_sym_subsubsection_token1] = ACTIONS(4889), + [aux_sym_paragraph_token1] = ACTIONS(4892), + [aux_sym_subparagraph_token1] = ACTIONS(4895), + [anon_sym_BSLASHitem] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4901), + [anon_sym_RBRACK] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(4904), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(4901), + [anon_sym_COMMA] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(4907), + [sym_word] = ACTIONS(4907), + [sym_param] = ACTIONS(4910), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4913), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4913), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), + [anon_sym_BSLASHbegin] = ACTIONS(2030), + [anon_sym_BSLASHcaption] = ACTIONS(4922), + [anon_sym_BSLASHcite] = ACTIONS(4925), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4928), + [anon_sym_BSLASHCite] = ACTIONS(4925), + [anon_sym_BSLASHnocite] = ACTIONS(4925), + [anon_sym_BSLASHcitet] = ACTIONS(4925), + [anon_sym_BSLASHcitep] = ACTIONS(4925), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4928), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4928), + [anon_sym_BSLASHciteauthor] = ACTIONS(4925), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4928), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4928), + [anon_sym_BSLASHcitetitle] = ACTIONS(4925), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4928), + [anon_sym_BSLASHciteyear] = ACTIONS(4925), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4928), + [anon_sym_BSLASHcitedate] = ACTIONS(4925), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4928), + [anon_sym_BSLASHciteurl] = ACTIONS(4925), + [anon_sym_BSLASHfullcite] = ACTIONS(4925), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4925), + [anon_sym_BSLASHcitealt] = ACTIONS(4925), + [anon_sym_BSLASHcitealp] = ACTIONS(4925), + [anon_sym_BSLASHcitetext] = ACTIONS(4925), + [anon_sym_BSLASHparencite] = ACTIONS(4925), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4928), + [anon_sym_BSLASHParencite] = ACTIONS(4925), + [anon_sym_BSLASHfootcite] = ACTIONS(4925), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4925), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4925), + [anon_sym_BSLASHtextcite] = ACTIONS(4925), + [anon_sym_BSLASHTextcite] = ACTIONS(4925), + [anon_sym_BSLASHsmartcite] = ACTIONS(4925), + [anon_sym_BSLASHSmartcite] = ACTIONS(4925), + [anon_sym_BSLASHsupercite] = ACTIONS(4925), + [anon_sym_BSLASHautocite] = ACTIONS(4925), + [anon_sym_BSLASHAutocite] = ACTIONS(4925), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4928), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4928), + [anon_sym_BSLASHvolcite] = ACTIONS(4925), + [anon_sym_BSLASHVolcite] = ACTIONS(4925), + [anon_sym_BSLASHpvolcite] = ACTIONS(4925), + [anon_sym_BSLASHPvolcite] = ACTIONS(4925), + [anon_sym_BSLASHfvolcite] = ACTIONS(4925), + [anon_sym_BSLASHftvolcite] = ACTIONS(4925), + [anon_sym_BSLASHsvolcite] = ACTIONS(4925), + [anon_sym_BSLASHSvolcite] = ACTIONS(4925), + [anon_sym_BSLASHtvolcite] = ACTIONS(4925), + [anon_sym_BSLASHTvolcite] = ACTIONS(4925), + [anon_sym_BSLASHavolcite] = ACTIONS(4925), + [anon_sym_BSLASHAvolcite] = ACTIONS(4925), + [anon_sym_BSLASHnotecite] = ACTIONS(4925), + [anon_sym_BSLASHpnotecite] = ACTIONS(4925), + [anon_sym_BSLASHPnotecite] = ACTIONS(4925), + [anon_sym_BSLASHfnotecite] = ACTIONS(4925), + [anon_sym_BSLASHusepackage] = ACTIONS(4931), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4931), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4934), + [anon_sym_BSLASHinclude] = ACTIONS(4937), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4937), + [anon_sym_BSLASHinput] = ACTIONS(4940), + [anon_sym_BSLASHsubfile] = ACTIONS(4940), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4943), + [anon_sym_BSLASHbibliography] = ACTIONS(4946), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4949), + [anon_sym_BSLASHincludesvg] = ACTIONS(4952), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4958), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4958), + [anon_sym_BSLASHimport] = ACTIONS(4961), + [anon_sym_BSLASHsubimport] = ACTIONS(4961), + [anon_sym_BSLASHinputfrom] = ACTIONS(4961), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4961), + [anon_sym_BSLASHincludefrom] = ACTIONS(4961), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4961), + [anon_sym_BSLASHlabel] = ACTIONS(4964), + [anon_sym_BSLASHref] = ACTIONS(4967), + [anon_sym_BSLASHvref] = ACTIONS(4967), + [anon_sym_BSLASHVref] = ACTIONS(4967), + [anon_sym_BSLASHautoref] = ACTIONS(4967), + [anon_sym_BSLASHpageref] = ACTIONS(4967), + [anon_sym_BSLASHcref] = ACTIONS(4967), + [anon_sym_BSLASHCref] = ACTIONS(4967), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4970), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4970), + [anon_sym_BSLASHnamecref] = ACTIONS(4967), + [anon_sym_BSLASHnameCref] = ACTIONS(4967), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4967), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4967), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4967), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4967), + [anon_sym_BSLASHlabelcref] = ACTIONS(4967), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4967), + [anon_sym_BSLASHeqref] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange] = ACTIONS(4976), + [anon_sym_BSLASHCrefrange] = ACTIONS(4976), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4979), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4979), + [anon_sym_BSLASHnewlabel] = ACTIONS(4982), + [anon_sym_BSLASHnewcommand] = ACTIONS(4985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4988), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4994), + [anon_sym_BSLASHgls] = ACTIONS(4997), + [anon_sym_BSLASHGls] = ACTIONS(4997), + [anon_sym_BSLASHGLS] = ACTIONS(4997), + [anon_sym_BSLASHglspl] = ACTIONS(4997), + [anon_sym_BSLASHGlspl] = ACTIONS(4997), + [anon_sym_BSLASHGLSpl] = ACTIONS(4997), + [anon_sym_BSLASHglsdisp] = ACTIONS(4997), + [anon_sym_BSLASHglslink] = ACTIONS(4997), + [anon_sym_BSLASHglstext] = ACTIONS(4997), + [anon_sym_BSLASHGlstext] = ACTIONS(4997), + [anon_sym_BSLASHGLStext] = ACTIONS(4997), + [anon_sym_BSLASHglsfirst] = ACTIONS(4997), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4997), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4997), + [anon_sym_BSLASHglsplural] = ACTIONS(4997), + [anon_sym_BSLASHGlsplural] = ACTIONS(4997), + [anon_sym_BSLASHGLSplural] = ACTIONS(4997), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4997), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4997), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4997), + [anon_sym_BSLASHglsname] = ACTIONS(4997), + [anon_sym_BSLASHGlsname] = ACTIONS(4997), + [anon_sym_BSLASHGLSname] = ACTIONS(4997), + [anon_sym_BSLASHglssymbol] = ACTIONS(4997), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4997), + [anon_sym_BSLASHglsdesc] = ACTIONS(4997), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4997), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4997), + [anon_sym_BSLASHglsuseri] = ACTIONS(4997), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4997), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4997), + [anon_sym_BSLASHglsuserii] = ACTIONS(4997), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4997), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4997), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4997), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4997), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4997), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4997), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4997), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4997), + [anon_sym_BSLASHglsuserv] = ACTIONS(4997), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4997), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4997), + [anon_sym_BSLASHglsuservi] = ACTIONS(4997), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4997), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4997), + [anon_sym_BSLASHnewacronym] = ACTIONS(5000), + [anon_sym_BSLASHacrshort] = ACTIONS(5003), + [anon_sym_BSLASHAcrshort] = ACTIONS(5003), + [anon_sym_BSLASHACRshort] = ACTIONS(5003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), + [anon_sym_BSLASHacrlong] = ACTIONS(5003), + [anon_sym_BSLASHAcrlong] = ACTIONS(5003), + [anon_sym_BSLASHACRlong] = ACTIONS(5003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), + [anon_sym_BSLASHacrfull] = ACTIONS(5003), + [anon_sym_BSLASHAcrfull] = ACTIONS(5003), + [anon_sym_BSLASHACRfull] = ACTIONS(5003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), + [anon_sym_BSLASHacs] = ACTIONS(5003), + [anon_sym_BSLASHAcs] = ACTIONS(5003), + [anon_sym_BSLASHacsp] = ACTIONS(5003), + [anon_sym_BSLASHAcsp] = ACTIONS(5003), + [anon_sym_BSLASHacl] = ACTIONS(5003), + [anon_sym_BSLASHAcl] = ACTIONS(5003), + [anon_sym_BSLASHaclp] = ACTIONS(5003), + [anon_sym_BSLASHAclp] = ACTIONS(5003), + [anon_sym_BSLASHacf] = ACTIONS(5003), + [anon_sym_BSLASHAcf] = ACTIONS(5003), + [anon_sym_BSLASHacfp] = ACTIONS(5003), + [anon_sym_BSLASHAcfp] = ACTIONS(5003), + [anon_sym_BSLASHac] = ACTIONS(5003), + [anon_sym_BSLASHAc] = ACTIONS(5003), + [anon_sym_BSLASHacp] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5006), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5006), + [anon_sym_BSLASHcolor] = ACTIONS(5009), + [anon_sym_BSLASHcolorbox] = ACTIONS(5009), + [anon_sym_BSLASHtextcolor] = ACTIONS(5009), + [anon_sym_BSLASHpagecolor] = ACTIONS(5009), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5012), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5018), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + }, + [305] = { + [sym__simple_content] = STATE(301), + [sym_subsubsection] = STATE(301), + [sym_paragraph] = STATE(301), + [sym_subparagraph] = STATE(301), + [sym_enum_item] = STATE(301), + [sym_brace_group] = STATE(301), + [sym_mixed_group] = STATE(301), + [sym_text] = STATE(301), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(301), + [sym_inline_formula] = STATE(301), + [sym_begin] = STATE(73), + [sym_environment] = STATE(301), + [sym_caption] = STATE(301), + [sym_citation] = STATE(301), + [sym_package_include] = STATE(301), + [sym_class_include] = STATE(301), + [sym_latex_include] = STATE(301), + [sym_latex_input] = STATE(301), + [sym_biblatex_include] = STATE(301), + [sym_bibtex_include] = STATE(301), + [sym_graphics_include] = STATE(301), + [sym_svg_include] = STATE(301), + [sym_inkscape_include] = STATE(301), + [sym_verbatim_include] = STATE(301), + [sym_import] = STATE(301), + [sym_label_definition] = STATE(301), + [sym_label_reference] = STATE(301), + [sym_equation_label_reference] = STATE(301), + [sym_label_reference_range] = STATE(301), + [sym_label_number] = STATE(301), + [sym_command_definition] = STATE(301), + [sym_math_operator] = STATE(301), + [sym_glossary_entry_definition] = STATE(301), + [sym_glossary_entry_reference] = STATE(301), + [sym_acronym_definition] = STATE(301), + [sym_acronym_reference] = STATE(301), + [sym_theorem_definition] = STATE(301), + [sym_color_reference] = STATE(301), + [sym_color_definition] = STATE(301), + [sym_color_set_definition] = STATE(301), + [sym_pgf_library_import] = STATE(301), + [sym_tikz_library_import] = STATE(301), + [sym_generic_command] = STATE(301), + [aux_sym_subsection_repeat1] = STATE(301), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2286), + [aux_sym_chapter_token1] = ACTIONS(2286), + [aux_sym_section_token1] = ACTIONS(2286), + [aux_sym_subsection_token1] = ACTIONS(2286), + [aux_sym_subsubsection_token1] = ACTIONS(502), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(5024), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(2286), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [306] = { + [sym__simple_content] = STATE(306), + [sym_subsubsection] = STATE(306), + [sym_paragraph] = STATE(306), + [sym_subparagraph] = STATE(306), + [sym_enum_item] = STATE(306), + [sym_brace_group] = STATE(306), + [sym_mixed_group] = STATE(306), + [sym_text] = STATE(306), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(306), + [sym_inline_formula] = STATE(306), + [sym_begin] = STATE(66), + [sym_environment] = STATE(306), + [sym_caption] = STATE(306), + [sym_citation] = STATE(306), + [sym_package_include] = STATE(306), + [sym_class_include] = STATE(306), + [sym_latex_include] = STATE(306), + [sym_latex_input] = STATE(306), + [sym_biblatex_include] = STATE(306), + [sym_bibtex_include] = STATE(306), + [sym_graphics_include] = STATE(306), + [sym_svg_include] = STATE(306), + [sym_inkscape_include] = STATE(306), + [sym_verbatim_include] = STATE(306), + [sym_import] = STATE(306), + [sym_label_definition] = STATE(306), + [sym_label_reference] = STATE(306), + [sym_equation_label_reference] = STATE(306), + [sym_label_reference_range] = STATE(306), + [sym_label_number] = STATE(306), + [sym_command_definition] = STATE(306), + [sym_math_operator] = STATE(306), + [sym_glossary_entry_definition] = STATE(306), + [sym_glossary_entry_reference] = STATE(306), + [sym_acronym_definition] = STATE(306), + [sym_acronym_reference] = STATE(306), + [sym_theorem_definition] = STATE(306), + [sym_color_reference] = STATE(306), + [sym_color_definition] = STATE(306), + [sym_color_set_definition] = STATE(306), + [sym_pgf_library_import] = STATE(306), + [sym_tikz_library_import] = STATE(306), + [sym_generic_command] = STATE(306), + [aux_sym_subsection_repeat1] = STATE(306), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(5026), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2140), + [aux_sym_chapter_token1] = ACTIONS(2140), + [aux_sym_section_token1] = ACTIONS(2140), + [aux_sym_subsection_token1] = ACTIONS(2140), + [aux_sym_subsubsection_token1] = ACTIONS(5029), + [aux_sym_paragraph_token1] = ACTIONS(5032), + [aux_sym_subparagraph_token1] = ACTIONS(5035), + [anon_sym_BSLASHitem] = ACTIONS(5038), + [anon_sym_LBRACK] = ACTIONS(5041), + [anon_sym_LBRACE] = ACTIONS(5044), + [anon_sym_LPAREN] = ACTIONS(5041), + [anon_sym_COMMA] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [sym_word] = ACTIONS(5047), + [sym_param] = ACTIONS(5050), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5053), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5053), + [anon_sym_DOLLAR] = ACTIONS(5056), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2135), + [anon_sym_BSLASHbegin] = ACTIONS(2175), + [anon_sym_BSLASHcaption] = ACTIONS(5062), + [anon_sym_BSLASHcite] = ACTIONS(5065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCite] = ACTIONS(5065), + [anon_sym_BSLASHnocite] = ACTIONS(5065), + [anon_sym_BSLASHcitet] = ACTIONS(5065), + [anon_sym_BSLASHcitep] = ACTIONS(5065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteauthor] = ACTIONS(5065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitetitle] = ACTIONS(5065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteyear] = ACTIONS(5065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5068), + [anon_sym_BSLASHcitedate] = ACTIONS(5065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5068), + [anon_sym_BSLASHciteurl] = ACTIONS(5065), + [anon_sym_BSLASHfullcite] = ACTIONS(5065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), + [anon_sym_BSLASHcitealt] = ACTIONS(5065), + [anon_sym_BSLASHcitealp] = ACTIONS(5065), + [anon_sym_BSLASHcitetext] = ACTIONS(5065), + [anon_sym_BSLASHparencite] = ACTIONS(5065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHParencite] = ACTIONS(5065), + [anon_sym_BSLASHfootcite] = ACTIONS(5065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), + [anon_sym_BSLASHtextcite] = ACTIONS(5065), + [anon_sym_BSLASHTextcite] = ACTIONS(5065), + [anon_sym_BSLASHsmartcite] = ACTIONS(5065), + [anon_sym_BSLASHSmartcite] = ACTIONS(5065), + [anon_sym_BSLASHsupercite] = ACTIONS(5065), + [anon_sym_BSLASHautocite] = ACTIONS(5065), + [anon_sym_BSLASHAutocite] = ACTIONS(5065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5068), + [anon_sym_BSLASHvolcite] = ACTIONS(5065), + [anon_sym_BSLASHVolcite] = ACTIONS(5065), + [anon_sym_BSLASHpvolcite] = ACTIONS(5065), + [anon_sym_BSLASHPvolcite] = ACTIONS(5065), + [anon_sym_BSLASHfvolcite] = ACTIONS(5065), + [anon_sym_BSLASHftvolcite] = ACTIONS(5065), + [anon_sym_BSLASHsvolcite] = ACTIONS(5065), + [anon_sym_BSLASHSvolcite] = ACTIONS(5065), + [anon_sym_BSLASHtvolcite] = ACTIONS(5065), + [anon_sym_BSLASHTvolcite] = ACTIONS(5065), + [anon_sym_BSLASHavolcite] = ACTIONS(5065), + [anon_sym_BSLASHAvolcite] = ACTIONS(5065), + [anon_sym_BSLASHnotecite] = ACTIONS(5065), + [anon_sym_BSLASHpnotecite] = ACTIONS(5065), + [anon_sym_BSLASHPnotecite] = ACTIONS(5065), + [anon_sym_BSLASHfnotecite] = ACTIONS(5065), + [anon_sym_BSLASHusepackage] = ACTIONS(5071), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5071), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5074), + [anon_sym_BSLASHinclude] = ACTIONS(5077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), + [anon_sym_BSLASHinput] = ACTIONS(5080), + [anon_sym_BSLASHsubfile] = ACTIONS(5080), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5083), + [anon_sym_BSLASHbibliography] = ACTIONS(5086), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), + [anon_sym_BSLASHincludesvg] = ACTIONS(5092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5095), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5098), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5098), + [anon_sym_BSLASHimport] = ACTIONS(5101), + [anon_sym_BSLASHsubimport] = ACTIONS(5101), + [anon_sym_BSLASHinputfrom] = ACTIONS(5101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), + [anon_sym_BSLASHincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHlabel] = ACTIONS(5104), + [anon_sym_BSLASHref] = ACTIONS(5107), + [anon_sym_BSLASHvref] = ACTIONS(5107), + [anon_sym_BSLASHVref] = ACTIONS(5107), + [anon_sym_BSLASHautoref] = ACTIONS(5107), + [anon_sym_BSLASHpageref] = ACTIONS(5107), + [anon_sym_BSLASHcref] = ACTIONS(5107), + [anon_sym_BSLASHCref] = ACTIONS(5107), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5110), + [anon_sym_BSLASHnamecref] = ACTIONS(5107), + [anon_sym_BSLASHnameCref] = ACTIONS(5107), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5107), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5107), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5107), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5107), + [anon_sym_BSLASHlabelcref] = ACTIONS(5107), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5107), + [anon_sym_BSLASHeqref] = ACTIONS(5113), + [anon_sym_BSLASHcrefrange] = ACTIONS(5116), + [anon_sym_BSLASHCrefrange] = ACTIONS(5116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), + [anon_sym_BSLASHnewlabel] = ACTIONS(5122), + [anon_sym_BSLASHnewcommand] = ACTIONS(5125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5134), + [anon_sym_BSLASHgls] = ACTIONS(5137), + [anon_sym_BSLASHGls] = ACTIONS(5137), + [anon_sym_BSLASHGLS] = ACTIONS(5137), + [anon_sym_BSLASHglspl] = ACTIONS(5137), + [anon_sym_BSLASHGlspl] = ACTIONS(5137), + [anon_sym_BSLASHGLSpl] = ACTIONS(5137), + [anon_sym_BSLASHglsdisp] = ACTIONS(5137), + [anon_sym_BSLASHglslink] = ACTIONS(5137), + [anon_sym_BSLASHglstext] = ACTIONS(5137), + [anon_sym_BSLASHGlstext] = ACTIONS(5137), + [anon_sym_BSLASHGLStext] = ACTIONS(5137), + [anon_sym_BSLASHglsfirst] = ACTIONS(5137), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5137), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5137), + [anon_sym_BSLASHglsplural] = ACTIONS(5137), + [anon_sym_BSLASHGlsplural] = ACTIONS(5137), + [anon_sym_BSLASHGLSplural] = ACTIONS(5137), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5137), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5137), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5137), + [anon_sym_BSLASHglsname] = ACTIONS(5137), + [anon_sym_BSLASHGlsname] = ACTIONS(5137), + [anon_sym_BSLASHGLSname] = ACTIONS(5137), + [anon_sym_BSLASHglssymbol] = ACTIONS(5137), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5137), + [anon_sym_BSLASHglsdesc] = ACTIONS(5137), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5137), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5137), + [anon_sym_BSLASHglsuseri] = ACTIONS(5137), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5137), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5137), + [anon_sym_BSLASHglsuserii] = ACTIONS(5137), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5137), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5137), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5137), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5137), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5137), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5137), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5137), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5137), + [anon_sym_BSLASHglsuserv] = ACTIONS(5137), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5137), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5137), + [anon_sym_BSLASHglsuservi] = ACTIONS(5137), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5137), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5137), + [anon_sym_BSLASHnewacronym] = ACTIONS(5140), + [anon_sym_BSLASHacrshort] = ACTIONS(5143), + [anon_sym_BSLASHAcrshort] = ACTIONS(5143), + [anon_sym_BSLASHACRshort] = ACTIONS(5143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), + [anon_sym_BSLASHacrlong] = ACTIONS(5143), + [anon_sym_BSLASHAcrlong] = ACTIONS(5143), + [anon_sym_BSLASHACRlong] = ACTIONS(5143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), + [anon_sym_BSLASHacrfull] = ACTIONS(5143), + [anon_sym_BSLASHAcrfull] = ACTIONS(5143), + [anon_sym_BSLASHACRfull] = ACTIONS(5143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), + [anon_sym_BSLASHacs] = ACTIONS(5143), + [anon_sym_BSLASHAcs] = ACTIONS(5143), + [anon_sym_BSLASHacsp] = ACTIONS(5143), + [anon_sym_BSLASHAcsp] = ACTIONS(5143), + [anon_sym_BSLASHacl] = ACTIONS(5143), + [anon_sym_BSLASHAcl] = ACTIONS(5143), + [anon_sym_BSLASHaclp] = ACTIONS(5143), + [anon_sym_BSLASHAclp] = ACTIONS(5143), + [anon_sym_BSLASHacf] = ACTIONS(5143), + [anon_sym_BSLASHAcf] = ACTIONS(5143), + [anon_sym_BSLASHacfp] = ACTIONS(5143), + [anon_sym_BSLASHAcfp] = ACTIONS(5143), + [anon_sym_BSLASHac] = ACTIONS(5143), + [anon_sym_BSLASHAc] = ACTIONS(5143), + [anon_sym_BSLASHacp] = ACTIONS(5143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5146), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5146), + [anon_sym_BSLASHcolor] = ACTIONS(5149), + [anon_sym_BSLASHcolorbox] = ACTIONS(5149), + [anon_sym_BSLASHtextcolor] = ACTIONS(5149), + [anon_sym_BSLASHpagecolor] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5155), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5158), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), + }, + [307] = { + [sym__simple_content] = STATE(306), + [sym_subsubsection] = STATE(306), + [sym_paragraph] = STATE(306), + [sym_subparagraph] = STATE(306), + [sym_enum_item] = STATE(306), + [sym_brace_group] = STATE(306), + [sym_mixed_group] = STATE(306), + [sym_text] = STATE(306), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(306), + [sym_inline_formula] = STATE(306), + [sym_begin] = STATE(66), + [sym_environment] = STATE(306), + [sym_caption] = STATE(306), + [sym_citation] = STATE(306), + [sym_package_include] = STATE(306), + [sym_class_include] = STATE(306), + [sym_latex_include] = STATE(306), + [sym_latex_input] = STATE(306), + [sym_biblatex_include] = STATE(306), + [sym_bibtex_include] = STATE(306), + [sym_graphics_include] = STATE(306), + [sym_svg_include] = STATE(306), + [sym_inkscape_include] = STATE(306), + [sym_verbatim_include] = STATE(306), + [sym_import] = STATE(306), + [sym_label_definition] = STATE(306), + [sym_label_reference] = STATE(306), + [sym_equation_label_reference] = STATE(306), + [sym_label_reference_range] = STATE(306), + [sym_label_number] = STATE(306), + [sym_command_definition] = STATE(306), + [sym_math_operator] = STATE(306), + [sym_glossary_entry_definition] = STATE(306), + [sym_glossary_entry_reference] = STATE(306), + [sym_acronym_definition] = STATE(306), + [sym_acronym_reference] = STATE(306), + [sym_theorem_definition] = STATE(306), + [sym_color_reference] = STATE(306), + [sym_color_definition] = STATE(306), + [sym_color_set_definition] = STATE(306), + [sym_pgf_library_import] = STATE(306), + [sym_tikz_library_import] = STATE(306), + [sym_generic_command] = STATE(306), + [aux_sym_subsection_repeat1] = STATE(306), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2292), + [aux_sym_chapter_token1] = ACTIONS(2292), + [aux_sym_section_token1] = ACTIONS(2292), + [aux_sym_subsection_token1] = ACTIONS(2292), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(5164), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2290), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [308] = { + [sym__simple_content] = STATE(311), + [sym_enum_item] = STATE(311), + [sym_brace_group] = STATE(311), + [sym_mixed_group] = STATE(311), + [sym_text] = STATE(311), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(311), + [sym_inline_formula] = STATE(311), + [sym_begin] = STATE(52), + [sym_environment] = STATE(311), + [sym_caption] = STATE(311), + [sym_citation] = STATE(311), + [sym_package_include] = STATE(311), + [sym_class_include] = STATE(311), + [sym_latex_include] = STATE(311), + [sym_latex_input] = STATE(311), + [sym_biblatex_include] = STATE(311), + [sym_bibtex_include] = STATE(311), + [sym_graphics_include] = STATE(311), + [sym_svg_include] = STATE(311), + [sym_inkscape_include] = STATE(311), + [sym_verbatim_include] = STATE(311), + [sym_import] = STATE(311), + [sym_label_definition] = STATE(311), + [sym_label_reference] = STATE(311), + [sym_equation_label_reference] = STATE(311), + [sym_label_reference_range] = STATE(311), + [sym_label_number] = STATE(311), + [sym_command_definition] = STATE(311), + [sym_math_operator] = STATE(311), + [sym_glossary_entry_definition] = STATE(311), + [sym_glossary_entry_reference] = STATE(311), + [sym_acronym_definition] = STATE(311), + [sym_acronym_reference] = STATE(311), + [sym_theorem_definition] = STATE(311), + [sym_color_reference] = STATE(311), + [sym_color_definition] = STATE(311), + [sym_color_set_definition] = STATE(311), + [sym_pgf_library_import] = STATE(311), + [sym_tikz_library_import] = STATE(311), + [sym_generic_command] = STATE(311), + [aux_sym_subparagraph_repeat1] = STATE(311), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(5166), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5168), + [aux_sym_chapter_token1] = ACTIONS(5168), + [aux_sym_section_token1] = ACTIONS(5168), + [aux_sym_subsection_token1] = ACTIONS(5168), + [aux_sym_subsubsection_token1] = ACTIONS(5168), + [aux_sym_paragraph_token1] = ACTIONS(5168), + [aux_sym_subparagraph_token1] = ACTIONS(5168), + [anon_sym_BSLASHitem] = ACTIONS(23), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(5166), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(5170), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [309] = { + [sym__simple_content] = STATE(309), + [sym_subsubsection] = STATE(309), + [sym_paragraph] = STATE(309), + [sym_subparagraph] = STATE(309), + [sym_enum_item] = STATE(309), + [sym_brace_group] = STATE(309), + [sym_mixed_group] = STATE(309), + [sym_text] = STATE(309), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(309), + [sym_inline_formula] = STATE(309), + [sym_begin] = STATE(59), + [sym_environment] = STATE(309), + [sym_caption] = STATE(309), + [sym_citation] = STATE(309), + [sym_package_include] = STATE(309), + [sym_class_include] = STATE(309), + [sym_latex_include] = STATE(309), + [sym_latex_input] = STATE(309), + [sym_biblatex_include] = STATE(309), + [sym_bibtex_include] = STATE(309), + [sym_graphics_include] = STATE(309), + [sym_svg_include] = STATE(309), + [sym_inkscape_include] = STATE(309), + [sym_verbatim_include] = STATE(309), + [sym_import] = STATE(309), + [sym_label_definition] = STATE(309), + [sym_label_reference] = STATE(309), + [sym_equation_label_reference] = STATE(309), + [sym_label_reference_range] = STATE(309), + [sym_label_number] = STATE(309), + [sym_command_definition] = STATE(309), + [sym_math_operator] = STATE(309), + [sym_glossary_entry_definition] = STATE(309), + [sym_glossary_entry_reference] = STATE(309), + [sym_acronym_definition] = STATE(309), + [sym_acronym_reference] = STATE(309), + [sym_theorem_definition] = STATE(309), + [sym_color_reference] = STATE(309), + [sym_color_definition] = STATE(309), + [sym_color_set_definition] = STATE(309), + [sym_pgf_library_import] = STATE(309), + [sym_tikz_library_import] = STATE(309), + [sym_generic_command] = STATE(309), + [aux_sym_subsection_repeat1] = STATE(309), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(5172), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2140), + [aux_sym_chapter_token1] = ACTIONS(2140), + [aux_sym_section_token1] = ACTIONS(2140), + [aux_sym_subsection_token1] = ACTIONS(2140), + [aux_sym_subsubsection_token1] = ACTIONS(5175), + [aux_sym_paragraph_token1] = ACTIONS(5178), + [aux_sym_subparagraph_token1] = ACTIONS(5181), + [anon_sym_BSLASHitem] = ACTIONS(5184), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5190), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5193), + [anon_sym_EQ] = ACTIONS(5193), + [sym_word] = ACTIONS(5193), + [sym_param] = ACTIONS(5196), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2135), + [anon_sym_DOLLAR] = ACTIONS(5202), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5205), + [anon_sym_BSLASHbegin] = ACTIONS(2175), + [anon_sym_BSLASHcaption] = ACTIONS(5208), + [anon_sym_BSLASHcite] = ACTIONS(5211), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5214), + [anon_sym_BSLASHCite] = ACTIONS(5211), + [anon_sym_BSLASHnocite] = ACTIONS(5211), + [anon_sym_BSLASHcitet] = ACTIONS(5211), + [anon_sym_BSLASHcitep] = ACTIONS(5211), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5214), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5214), + [anon_sym_BSLASHciteauthor] = ACTIONS(5211), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5214), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5211), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5214), + [anon_sym_BSLASHcitetitle] = ACTIONS(5211), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5214), + [anon_sym_BSLASHciteyear] = ACTIONS(5211), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5214), + [anon_sym_BSLASHcitedate] = ACTIONS(5211), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5214), + [anon_sym_BSLASHciteurl] = ACTIONS(5211), + [anon_sym_BSLASHfullcite] = ACTIONS(5211), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5211), + [anon_sym_BSLASHcitealt] = ACTIONS(5211), + [anon_sym_BSLASHcitealp] = ACTIONS(5211), + [anon_sym_BSLASHcitetext] = ACTIONS(5211), + [anon_sym_BSLASHparencite] = ACTIONS(5211), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5214), + [anon_sym_BSLASHParencite] = ACTIONS(5211), + [anon_sym_BSLASHfootcite] = ACTIONS(5211), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5211), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5211), + [anon_sym_BSLASHtextcite] = ACTIONS(5211), + [anon_sym_BSLASHTextcite] = ACTIONS(5211), + [anon_sym_BSLASHsmartcite] = ACTIONS(5211), + [anon_sym_BSLASHSmartcite] = ACTIONS(5211), + [anon_sym_BSLASHsupercite] = ACTIONS(5211), + [anon_sym_BSLASHautocite] = ACTIONS(5211), + [anon_sym_BSLASHAutocite] = ACTIONS(5211), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5214), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5214), + [anon_sym_BSLASHvolcite] = ACTIONS(5211), + [anon_sym_BSLASHVolcite] = ACTIONS(5211), + [anon_sym_BSLASHpvolcite] = ACTIONS(5211), + [anon_sym_BSLASHPvolcite] = ACTIONS(5211), + [anon_sym_BSLASHfvolcite] = ACTIONS(5211), + [anon_sym_BSLASHftvolcite] = ACTIONS(5211), + [anon_sym_BSLASHsvolcite] = ACTIONS(5211), + [anon_sym_BSLASHSvolcite] = ACTIONS(5211), + [anon_sym_BSLASHtvolcite] = ACTIONS(5211), + [anon_sym_BSLASHTvolcite] = ACTIONS(5211), + [anon_sym_BSLASHavolcite] = ACTIONS(5211), + [anon_sym_BSLASHAvolcite] = ACTIONS(5211), + [anon_sym_BSLASHnotecite] = ACTIONS(5211), + [anon_sym_BSLASHpnotecite] = ACTIONS(5211), + [anon_sym_BSLASHPnotecite] = ACTIONS(5211), + [anon_sym_BSLASHfnotecite] = ACTIONS(5211), + [anon_sym_BSLASHusepackage] = ACTIONS(5217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5220), + [anon_sym_BSLASHinclude] = ACTIONS(5223), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5223), + [anon_sym_BSLASHinput] = ACTIONS(5226), + [anon_sym_BSLASHsubfile] = ACTIONS(5226), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), + [anon_sym_BSLASHbibliography] = ACTIONS(5232), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), + [anon_sym_BSLASHincludesvg] = ACTIONS(5238), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5244), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5244), + [anon_sym_BSLASHimport] = ACTIONS(5247), + [anon_sym_BSLASHsubimport] = ACTIONS(5247), + [anon_sym_BSLASHinputfrom] = ACTIONS(5247), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5247), + [anon_sym_BSLASHincludefrom] = ACTIONS(5247), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5247), + [anon_sym_BSLASHlabel] = ACTIONS(5250), + [anon_sym_BSLASHref] = ACTIONS(5253), + [anon_sym_BSLASHvref] = ACTIONS(5253), + [anon_sym_BSLASHVref] = ACTIONS(5253), + [anon_sym_BSLASHautoref] = ACTIONS(5253), + [anon_sym_BSLASHpageref] = ACTIONS(5253), + [anon_sym_BSLASHcref] = ACTIONS(5253), + [anon_sym_BSLASHCref] = ACTIONS(5253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5256), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5256), + [anon_sym_BSLASHnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnameCref] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHlabelcref] = ACTIONS(5253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), + [anon_sym_BSLASHeqref] = ACTIONS(5259), + [anon_sym_BSLASHcrefrange] = ACTIONS(5262), + [anon_sym_BSLASHCrefrange] = ACTIONS(5262), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5265), + [anon_sym_BSLASHnewlabel] = ACTIONS(5268), + [anon_sym_BSLASHnewcommand] = ACTIONS(5271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5274), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5280), + [anon_sym_BSLASHgls] = ACTIONS(5283), + [anon_sym_BSLASHGls] = ACTIONS(5283), + [anon_sym_BSLASHGLS] = ACTIONS(5283), + [anon_sym_BSLASHglspl] = ACTIONS(5283), + [anon_sym_BSLASHGlspl] = ACTIONS(5283), + [anon_sym_BSLASHGLSpl] = ACTIONS(5283), + [anon_sym_BSLASHglsdisp] = ACTIONS(5283), + [anon_sym_BSLASHglslink] = ACTIONS(5283), + [anon_sym_BSLASHglstext] = ACTIONS(5283), + [anon_sym_BSLASHGlstext] = ACTIONS(5283), + [anon_sym_BSLASHGLStext] = ACTIONS(5283), + [anon_sym_BSLASHglsfirst] = ACTIONS(5283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), + [anon_sym_BSLASHglsplural] = ACTIONS(5283), + [anon_sym_BSLASHGlsplural] = ACTIONS(5283), + [anon_sym_BSLASHGLSplural] = ACTIONS(5283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), + [anon_sym_BSLASHglsname] = ACTIONS(5283), + [anon_sym_BSLASHGlsname] = ACTIONS(5283), + [anon_sym_BSLASHGLSname] = ACTIONS(5283), + [anon_sym_BSLASHglssymbol] = ACTIONS(5283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), + [anon_sym_BSLASHglsdesc] = ACTIONS(5283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), + [anon_sym_BSLASHglsuseri] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), + [anon_sym_BSLASHglsuserii] = ACTIONS(5283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), + [anon_sym_BSLASHglsuserv] = ACTIONS(5283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), + [anon_sym_BSLASHglsuservi] = ACTIONS(5283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), + [anon_sym_BSLASHnewacronym] = ACTIONS(5286), + [anon_sym_BSLASHacrshort] = ACTIONS(5289), + [anon_sym_BSLASHAcrshort] = ACTIONS(5289), + [anon_sym_BSLASHACRshort] = ACTIONS(5289), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), + [anon_sym_BSLASHacrlong] = ACTIONS(5289), + [anon_sym_BSLASHAcrlong] = ACTIONS(5289), + [anon_sym_BSLASHACRlong] = ACTIONS(5289), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), + [anon_sym_BSLASHacrfull] = ACTIONS(5289), + [anon_sym_BSLASHAcrfull] = ACTIONS(5289), + [anon_sym_BSLASHACRfull] = ACTIONS(5289), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), + [anon_sym_BSLASHacs] = ACTIONS(5289), + [anon_sym_BSLASHAcs] = ACTIONS(5289), + [anon_sym_BSLASHacsp] = ACTIONS(5289), + [anon_sym_BSLASHAcsp] = ACTIONS(5289), + [anon_sym_BSLASHacl] = ACTIONS(5289), + [anon_sym_BSLASHAcl] = ACTIONS(5289), + [anon_sym_BSLASHaclp] = ACTIONS(5289), + [anon_sym_BSLASHAclp] = ACTIONS(5289), + [anon_sym_BSLASHacf] = ACTIONS(5289), + [anon_sym_BSLASHAcf] = ACTIONS(5289), + [anon_sym_BSLASHacfp] = ACTIONS(5289), + [anon_sym_BSLASHAcfp] = ACTIONS(5289), + [anon_sym_BSLASHac] = ACTIONS(5289), + [anon_sym_BSLASHAc] = ACTIONS(5289), + [anon_sym_BSLASHacp] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5292), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5292), + [anon_sym_BSLASHcolor] = ACTIONS(5295), + [anon_sym_BSLASHcolorbox] = ACTIONS(5295), + [anon_sym_BSLASHtextcolor] = ACTIONS(5295), + [anon_sym_BSLASHpagecolor] = ACTIONS(5295), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5298), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5304), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5307), + }, + [310] = { + [sym__simple_content] = STATE(310), + [sym_subsubsection] = STATE(310), + [sym_paragraph] = STATE(310), + [sym_subparagraph] = STATE(310), + [sym_enum_item] = STATE(310), + [sym_brace_group] = STATE(310), + [sym_mixed_group] = STATE(310), + [sym_text] = STATE(310), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(310), + [sym_inline_formula] = STATE(310), + [sym_begin] = STATE(86), + [sym_environment] = STATE(310), + [sym_caption] = STATE(310), + [sym_citation] = STATE(310), + [sym_package_include] = STATE(310), + [sym_class_include] = STATE(310), + [sym_latex_include] = STATE(310), + [sym_latex_input] = STATE(310), + [sym_biblatex_include] = STATE(310), + [sym_bibtex_include] = STATE(310), + [sym_graphics_include] = STATE(310), + [sym_svg_include] = STATE(310), + [sym_inkscape_include] = STATE(310), + [sym_verbatim_include] = STATE(310), + [sym_import] = STATE(310), + [sym_label_definition] = STATE(310), + [sym_label_reference] = STATE(310), + [sym_equation_label_reference] = STATE(310), + [sym_label_reference_range] = STATE(310), + [sym_label_number] = STATE(310), + [sym_command_definition] = STATE(310), + [sym_math_operator] = STATE(310), + [sym_glossary_entry_definition] = STATE(310), + [sym_glossary_entry_reference] = STATE(310), + [sym_acronym_definition] = STATE(310), + [sym_acronym_reference] = STATE(310), + [sym_theorem_definition] = STATE(310), + [sym_color_reference] = STATE(310), + [sym_color_definition] = STATE(310), + [sym_color_set_definition] = STATE(310), + [sym_pgf_library_import] = STATE(310), + [sym_tikz_library_import] = STATE(310), + [sym_generic_command] = STATE(310), + [aux_sym_subsection_repeat1] = STATE(310), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(5310), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(2140), + [aux_sym_section_token1] = ACTIONS(2140), + [aux_sym_subsection_token1] = ACTIONS(2140), + [aux_sym_subsubsection_token1] = ACTIONS(5313), + [aux_sym_paragraph_token1] = ACTIONS(5316), + [aux_sym_subparagraph_token1] = ACTIONS(5319), + [anon_sym_BSLASHitem] = ACTIONS(5322), + [anon_sym_LBRACK] = ACTIONS(5325), + [anon_sym_RBRACK] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(5328), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(5325), + [anon_sym_COMMA] = ACTIONS(5331), + [anon_sym_EQ] = ACTIONS(5331), + [sym_word] = ACTIONS(5331), + [sym_param] = ACTIONS(5334), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5337), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5337), + [anon_sym_DOLLAR] = ACTIONS(5340), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), + [anon_sym_BSLASHbegin] = ACTIONS(2175), + [anon_sym_BSLASHcaption] = ACTIONS(5346), + [anon_sym_BSLASHcite] = ACTIONS(5349), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5352), + [anon_sym_BSLASHCite] = ACTIONS(5349), + [anon_sym_BSLASHnocite] = ACTIONS(5349), + [anon_sym_BSLASHcitet] = ACTIONS(5349), + [anon_sym_BSLASHcitep] = ACTIONS(5349), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5352), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5352), + [anon_sym_BSLASHciteauthor] = ACTIONS(5349), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5352), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5352), + [anon_sym_BSLASHcitetitle] = ACTIONS(5349), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5352), + [anon_sym_BSLASHciteyear] = ACTIONS(5349), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5352), + [anon_sym_BSLASHcitedate] = ACTIONS(5349), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5352), + [anon_sym_BSLASHciteurl] = ACTIONS(5349), + [anon_sym_BSLASHfullcite] = ACTIONS(5349), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), + [anon_sym_BSLASHcitealt] = ACTIONS(5349), + [anon_sym_BSLASHcitealp] = ACTIONS(5349), + [anon_sym_BSLASHcitetext] = ACTIONS(5349), + [anon_sym_BSLASHparencite] = ACTIONS(5349), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5352), + [anon_sym_BSLASHParencite] = ACTIONS(5349), + [anon_sym_BSLASHfootcite] = ACTIONS(5349), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), + [anon_sym_BSLASHtextcite] = ACTIONS(5349), + [anon_sym_BSLASHTextcite] = ACTIONS(5349), + [anon_sym_BSLASHsmartcite] = ACTIONS(5349), + [anon_sym_BSLASHSmartcite] = ACTIONS(5349), + [anon_sym_BSLASHsupercite] = ACTIONS(5349), + [anon_sym_BSLASHautocite] = ACTIONS(5349), + [anon_sym_BSLASHAutocite] = ACTIONS(5349), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5352), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5352), + [anon_sym_BSLASHvolcite] = ACTIONS(5349), + [anon_sym_BSLASHVolcite] = ACTIONS(5349), + [anon_sym_BSLASHpvolcite] = ACTIONS(5349), + [anon_sym_BSLASHPvolcite] = ACTIONS(5349), + [anon_sym_BSLASHfvolcite] = ACTIONS(5349), + [anon_sym_BSLASHftvolcite] = ACTIONS(5349), + [anon_sym_BSLASHsvolcite] = ACTIONS(5349), + [anon_sym_BSLASHSvolcite] = ACTIONS(5349), + [anon_sym_BSLASHtvolcite] = ACTIONS(5349), + [anon_sym_BSLASHTvolcite] = ACTIONS(5349), + [anon_sym_BSLASHavolcite] = ACTIONS(5349), + [anon_sym_BSLASHAvolcite] = ACTIONS(5349), + [anon_sym_BSLASHnotecite] = ACTIONS(5349), + [anon_sym_BSLASHpnotecite] = ACTIONS(5349), + [anon_sym_BSLASHPnotecite] = ACTIONS(5349), + [anon_sym_BSLASHfnotecite] = ACTIONS(5349), + [anon_sym_BSLASHusepackage] = ACTIONS(5355), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5355), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5358), + [anon_sym_BSLASHinclude] = ACTIONS(5361), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), + [anon_sym_BSLASHinput] = ACTIONS(5364), + [anon_sym_BSLASHsubfile] = ACTIONS(5364), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5367), + [anon_sym_BSLASHbibliography] = ACTIONS(5370), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5373), + [anon_sym_BSLASHincludesvg] = ACTIONS(5376), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5379), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5382), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5382), + [anon_sym_BSLASHimport] = ACTIONS(5385), + [anon_sym_BSLASHsubimport] = ACTIONS(5385), + [anon_sym_BSLASHinputfrom] = ACTIONS(5385), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5385), + [anon_sym_BSLASHincludefrom] = ACTIONS(5385), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5385), + [anon_sym_BSLASHlabel] = ACTIONS(5388), + [anon_sym_BSLASHref] = ACTIONS(5391), + [anon_sym_BSLASHvref] = ACTIONS(5391), + [anon_sym_BSLASHVref] = ACTIONS(5391), + [anon_sym_BSLASHautoref] = ACTIONS(5391), + [anon_sym_BSLASHpageref] = ACTIONS(5391), + [anon_sym_BSLASHcref] = ACTIONS(5391), + [anon_sym_BSLASHCref] = ACTIONS(5391), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5394), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5394), + [anon_sym_BSLASHnamecref] = ACTIONS(5391), + [anon_sym_BSLASHnameCref] = ACTIONS(5391), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5391), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5391), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5391), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5391), + [anon_sym_BSLASHlabelcref] = ACTIONS(5391), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5391), + [anon_sym_BSLASHeqref] = ACTIONS(5397), + [anon_sym_BSLASHcrefrange] = ACTIONS(5400), + [anon_sym_BSLASHCrefrange] = ACTIONS(5400), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5403), + [anon_sym_BSLASHnewlabel] = ACTIONS(5406), + [anon_sym_BSLASHnewcommand] = ACTIONS(5409), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5409), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5409), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5412), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5415), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5418), + [anon_sym_BSLASHgls] = ACTIONS(5421), + [anon_sym_BSLASHGls] = ACTIONS(5421), + [anon_sym_BSLASHGLS] = ACTIONS(5421), + [anon_sym_BSLASHglspl] = ACTIONS(5421), + [anon_sym_BSLASHGlspl] = ACTIONS(5421), + [anon_sym_BSLASHGLSpl] = ACTIONS(5421), + [anon_sym_BSLASHglsdisp] = ACTIONS(5421), + [anon_sym_BSLASHglslink] = ACTIONS(5421), + [anon_sym_BSLASHglstext] = ACTIONS(5421), + [anon_sym_BSLASHGlstext] = ACTIONS(5421), + [anon_sym_BSLASHGLStext] = ACTIONS(5421), + [anon_sym_BSLASHglsfirst] = ACTIONS(5421), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5421), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5421), + [anon_sym_BSLASHglsplural] = ACTIONS(5421), + [anon_sym_BSLASHGlsplural] = ACTIONS(5421), + [anon_sym_BSLASHGLSplural] = ACTIONS(5421), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5421), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5421), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5421), + [anon_sym_BSLASHglsname] = ACTIONS(5421), + [anon_sym_BSLASHGlsname] = ACTIONS(5421), + [anon_sym_BSLASHGLSname] = ACTIONS(5421), + [anon_sym_BSLASHglssymbol] = ACTIONS(5421), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5421), + [anon_sym_BSLASHglsdesc] = ACTIONS(5421), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5421), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5421), + [anon_sym_BSLASHglsuseri] = ACTIONS(5421), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5421), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5421), + [anon_sym_BSLASHglsuserii] = ACTIONS(5421), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5421), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5421), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5421), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5421), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5421), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5421), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5421), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5421), + [anon_sym_BSLASHglsuserv] = ACTIONS(5421), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5421), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5421), + [anon_sym_BSLASHglsuservi] = ACTIONS(5421), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5421), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5421), + [anon_sym_BSLASHnewacronym] = ACTIONS(5424), + [anon_sym_BSLASHacrshort] = ACTIONS(5427), + [anon_sym_BSLASHAcrshort] = ACTIONS(5427), + [anon_sym_BSLASHACRshort] = ACTIONS(5427), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5427), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5427), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5427), + [anon_sym_BSLASHacrlong] = ACTIONS(5427), + [anon_sym_BSLASHAcrlong] = ACTIONS(5427), + [anon_sym_BSLASHACRlong] = ACTIONS(5427), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5427), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5427), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5427), + [anon_sym_BSLASHacrfull] = ACTIONS(5427), + [anon_sym_BSLASHAcrfull] = ACTIONS(5427), + [anon_sym_BSLASHACRfull] = ACTIONS(5427), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5427), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5427), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5427), + [anon_sym_BSLASHacs] = ACTIONS(5427), + [anon_sym_BSLASHAcs] = ACTIONS(5427), + [anon_sym_BSLASHacsp] = ACTIONS(5427), + [anon_sym_BSLASHAcsp] = ACTIONS(5427), + [anon_sym_BSLASHacl] = ACTIONS(5427), + [anon_sym_BSLASHAcl] = ACTIONS(5427), + [anon_sym_BSLASHaclp] = ACTIONS(5427), + [anon_sym_BSLASHAclp] = ACTIONS(5427), + [anon_sym_BSLASHacf] = ACTIONS(5427), + [anon_sym_BSLASHAcf] = ACTIONS(5427), + [anon_sym_BSLASHacfp] = ACTIONS(5427), + [anon_sym_BSLASHAcfp] = ACTIONS(5427), + [anon_sym_BSLASHac] = ACTIONS(5427), + [anon_sym_BSLASHAc] = ACTIONS(5427), + [anon_sym_BSLASHacp] = ACTIONS(5427), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5427), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5427), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5427), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5427), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5427), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5427), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5427), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5427), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5427), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5427), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5430), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5430), + [anon_sym_BSLASHcolor] = ACTIONS(5433), + [anon_sym_BSLASHcolorbox] = ACTIONS(5433), + [anon_sym_BSLASHtextcolor] = ACTIONS(5433), + [anon_sym_BSLASHpagecolor] = ACTIONS(5433), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5436), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5439), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5442), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5445), + }, + [311] = { + [sym__simple_content] = STATE(311), + [sym_enum_item] = STATE(311), + [sym_brace_group] = STATE(311), + [sym_mixed_group] = STATE(311), + [sym_text] = STATE(311), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(311), + [sym_inline_formula] = STATE(311), + [sym_begin] = STATE(52), + [sym_environment] = STATE(311), + [sym_caption] = STATE(311), + [sym_citation] = STATE(311), + [sym_package_include] = STATE(311), + [sym_class_include] = STATE(311), + [sym_latex_include] = STATE(311), + [sym_latex_input] = STATE(311), + [sym_biblatex_include] = STATE(311), + [sym_bibtex_include] = STATE(311), + [sym_graphics_include] = STATE(311), + [sym_svg_include] = STATE(311), + [sym_inkscape_include] = STATE(311), + [sym_verbatim_include] = STATE(311), + [sym_import] = STATE(311), + [sym_label_definition] = STATE(311), + [sym_label_reference] = STATE(311), + [sym_equation_label_reference] = STATE(311), + [sym_label_reference_range] = STATE(311), + [sym_label_number] = STATE(311), + [sym_command_definition] = STATE(311), + [sym_math_operator] = STATE(311), + [sym_glossary_entry_definition] = STATE(311), + [sym_glossary_entry_reference] = STATE(311), + [sym_acronym_definition] = STATE(311), + [sym_acronym_reference] = STATE(311), + [sym_theorem_definition] = STATE(311), + [sym_color_reference] = STATE(311), + [sym_color_definition] = STATE(311), + [sym_color_set_definition] = STATE(311), + [sym_pgf_library_import] = STATE(311), + [sym_tikz_library_import] = STATE(311), + [sym_generic_command] = STATE(311), + [aux_sym_subparagraph_repeat1] = STATE(311), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(5448), + [sym_generic_command_name] = ACTIONS(5450), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5453), + [aux_sym_chapter_token1] = ACTIONS(5453), + [aux_sym_section_token1] = ACTIONS(5453), + [aux_sym_subsection_token1] = ACTIONS(5453), + [aux_sym_subsubsection_token1] = ACTIONS(5453), + [aux_sym_paragraph_token1] = ACTIONS(5453), + [aux_sym_subparagraph_token1] = ACTIONS(5453), + [anon_sym_BSLASHitem] = ACTIONS(5455), + [anon_sym_LBRACK] = ACTIONS(5458), + [anon_sym_RBRACK] = ACTIONS(5448), + [anon_sym_LBRACE] = ACTIONS(5461), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(5458), + [anon_sym_RPAREN] = ACTIONS(5448), + [anon_sym_COMMA] = ACTIONS(5464), + [anon_sym_EQ] = ACTIONS(5464), + [sym_word] = ACTIONS(5464), + [sym_param] = ACTIONS(5467), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5470), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5470), + [anon_sym_DOLLAR] = ACTIONS(5473), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5476), + [anon_sym_BSLASHbegin] = ACTIONS(5479), + [anon_sym_BSLASHcaption] = ACTIONS(5482), + [anon_sym_BSLASHcite] = ACTIONS(5485), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5488), + [anon_sym_BSLASHCite] = ACTIONS(5485), + [anon_sym_BSLASHnocite] = ACTIONS(5485), + [anon_sym_BSLASHcitet] = ACTIONS(5485), + [anon_sym_BSLASHcitep] = ACTIONS(5485), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5488), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5488), + [anon_sym_BSLASHciteauthor] = ACTIONS(5485), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5488), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5485), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5488), + [anon_sym_BSLASHcitetitle] = ACTIONS(5485), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5488), + [anon_sym_BSLASHciteyear] = ACTIONS(5485), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5488), + [anon_sym_BSLASHcitedate] = ACTIONS(5485), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5488), + [anon_sym_BSLASHciteurl] = ACTIONS(5485), + [anon_sym_BSLASHfullcite] = ACTIONS(5485), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5485), + [anon_sym_BSLASHcitealt] = ACTIONS(5485), + [anon_sym_BSLASHcitealp] = ACTIONS(5485), + [anon_sym_BSLASHcitetext] = ACTIONS(5485), + [anon_sym_BSLASHparencite] = ACTIONS(5485), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5488), + [anon_sym_BSLASHParencite] = ACTIONS(5485), + [anon_sym_BSLASHfootcite] = ACTIONS(5485), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5485), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5485), + [anon_sym_BSLASHtextcite] = ACTIONS(5485), + [anon_sym_BSLASHTextcite] = ACTIONS(5485), + [anon_sym_BSLASHsmartcite] = ACTIONS(5485), + [anon_sym_BSLASHSmartcite] = ACTIONS(5485), + [anon_sym_BSLASHsupercite] = ACTIONS(5485), + [anon_sym_BSLASHautocite] = ACTIONS(5485), + [anon_sym_BSLASHAutocite] = ACTIONS(5485), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5488), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5488), + [anon_sym_BSLASHvolcite] = ACTIONS(5485), + [anon_sym_BSLASHVolcite] = ACTIONS(5485), + [anon_sym_BSLASHpvolcite] = ACTIONS(5485), + [anon_sym_BSLASHPvolcite] = ACTIONS(5485), + [anon_sym_BSLASHfvolcite] = ACTIONS(5485), + [anon_sym_BSLASHftvolcite] = ACTIONS(5485), + [anon_sym_BSLASHsvolcite] = ACTIONS(5485), + [anon_sym_BSLASHSvolcite] = ACTIONS(5485), + [anon_sym_BSLASHtvolcite] = ACTIONS(5485), + [anon_sym_BSLASHTvolcite] = ACTIONS(5485), + [anon_sym_BSLASHavolcite] = ACTIONS(5485), + [anon_sym_BSLASHAvolcite] = ACTIONS(5485), + [anon_sym_BSLASHnotecite] = ACTIONS(5485), + [anon_sym_BSLASHpnotecite] = ACTIONS(5485), + [anon_sym_BSLASHPnotecite] = ACTIONS(5485), + [anon_sym_BSLASHfnotecite] = ACTIONS(5485), + [anon_sym_BSLASHusepackage] = ACTIONS(5491), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5491), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5494), + [anon_sym_BSLASHinclude] = ACTIONS(5497), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5497), + [anon_sym_BSLASHinput] = ACTIONS(5500), + [anon_sym_BSLASHsubfile] = ACTIONS(5500), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5503), + [anon_sym_BSLASHbibliography] = ACTIONS(5506), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5509), + [anon_sym_BSLASHincludesvg] = ACTIONS(5512), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5515), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5518), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5518), + [anon_sym_BSLASHimport] = ACTIONS(5521), + [anon_sym_BSLASHsubimport] = ACTIONS(5521), + [anon_sym_BSLASHinputfrom] = ACTIONS(5521), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5521), + [anon_sym_BSLASHincludefrom] = ACTIONS(5521), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5521), + [anon_sym_BSLASHlabel] = ACTIONS(5524), + [anon_sym_BSLASHref] = ACTIONS(5527), + [anon_sym_BSLASHvref] = ACTIONS(5527), + [anon_sym_BSLASHVref] = ACTIONS(5527), + [anon_sym_BSLASHautoref] = ACTIONS(5527), + [anon_sym_BSLASHpageref] = ACTIONS(5527), + [anon_sym_BSLASHcref] = ACTIONS(5527), + [anon_sym_BSLASHCref] = ACTIONS(5527), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5530), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5530), + [anon_sym_BSLASHnamecref] = ACTIONS(5527), + [anon_sym_BSLASHnameCref] = ACTIONS(5527), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5527), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5527), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5527), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5527), + [anon_sym_BSLASHlabelcref] = ACTIONS(5527), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5527), + [anon_sym_BSLASHeqref] = ACTIONS(5533), + [anon_sym_BSLASHcrefrange] = ACTIONS(5536), + [anon_sym_BSLASHCrefrange] = ACTIONS(5536), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5539), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5539), + [anon_sym_BSLASHnewlabel] = ACTIONS(5542), + [anon_sym_BSLASHnewcommand] = ACTIONS(5545), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5545), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5545), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5548), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5551), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5554), + [anon_sym_BSLASHgls] = ACTIONS(5557), + [anon_sym_BSLASHGls] = ACTIONS(5557), + [anon_sym_BSLASHGLS] = ACTIONS(5557), + [anon_sym_BSLASHglspl] = ACTIONS(5557), + [anon_sym_BSLASHGlspl] = ACTIONS(5557), + [anon_sym_BSLASHGLSpl] = ACTIONS(5557), + [anon_sym_BSLASHglsdisp] = ACTIONS(5557), + [anon_sym_BSLASHglslink] = ACTIONS(5557), + [anon_sym_BSLASHglstext] = ACTIONS(5557), + [anon_sym_BSLASHGlstext] = ACTIONS(5557), + [anon_sym_BSLASHGLStext] = ACTIONS(5557), + [anon_sym_BSLASHglsfirst] = ACTIONS(5557), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5557), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5557), + [anon_sym_BSLASHglsplural] = ACTIONS(5557), + [anon_sym_BSLASHGlsplural] = ACTIONS(5557), + [anon_sym_BSLASHGLSplural] = ACTIONS(5557), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5557), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5557), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5557), + [anon_sym_BSLASHglsname] = ACTIONS(5557), + [anon_sym_BSLASHGlsname] = ACTIONS(5557), + [anon_sym_BSLASHGLSname] = ACTIONS(5557), + [anon_sym_BSLASHglssymbol] = ACTIONS(5557), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5557), + [anon_sym_BSLASHglsdesc] = ACTIONS(5557), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5557), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5557), + [anon_sym_BSLASHglsuseri] = ACTIONS(5557), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5557), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5557), + [anon_sym_BSLASHglsuserii] = ACTIONS(5557), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5557), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5557), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5557), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5557), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5557), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5557), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5557), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5557), + [anon_sym_BSLASHglsuserv] = ACTIONS(5557), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5557), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5557), + [anon_sym_BSLASHglsuservi] = ACTIONS(5557), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5557), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5557), + [anon_sym_BSLASHnewacronym] = ACTIONS(5560), + [anon_sym_BSLASHacrshort] = ACTIONS(5563), + [anon_sym_BSLASHAcrshort] = ACTIONS(5563), + [anon_sym_BSLASHACRshort] = ACTIONS(5563), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5563), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5563), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5563), + [anon_sym_BSLASHacrlong] = ACTIONS(5563), + [anon_sym_BSLASHAcrlong] = ACTIONS(5563), + [anon_sym_BSLASHACRlong] = ACTIONS(5563), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5563), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5563), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5563), + [anon_sym_BSLASHacrfull] = ACTIONS(5563), + [anon_sym_BSLASHAcrfull] = ACTIONS(5563), + [anon_sym_BSLASHACRfull] = ACTIONS(5563), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5563), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5563), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5563), + [anon_sym_BSLASHacs] = ACTIONS(5563), + [anon_sym_BSLASHAcs] = ACTIONS(5563), + [anon_sym_BSLASHacsp] = ACTIONS(5563), + [anon_sym_BSLASHAcsp] = ACTIONS(5563), + [anon_sym_BSLASHacl] = ACTIONS(5563), + [anon_sym_BSLASHAcl] = ACTIONS(5563), + [anon_sym_BSLASHaclp] = ACTIONS(5563), + [anon_sym_BSLASHAclp] = ACTIONS(5563), + [anon_sym_BSLASHacf] = ACTIONS(5563), + [anon_sym_BSLASHAcf] = ACTIONS(5563), + [anon_sym_BSLASHacfp] = ACTIONS(5563), + [anon_sym_BSLASHAcfp] = ACTIONS(5563), + [anon_sym_BSLASHac] = ACTIONS(5563), + [anon_sym_BSLASHAc] = ACTIONS(5563), + [anon_sym_BSLASHacp] = ACTIONS(5563), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5563), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5563), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5563), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5563), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5563), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5563), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5563), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5563), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5563), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5563), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5566), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5566), + [anon_sym_BSLASHcolor] = ACTIONS(5569), + [anon_sym_BSLASHcolorbox] = ACTIONS(5569), + [anon_sym_BSLASHtextcolor] = ACTIONS(5569), + [anon_sym_BSLASHpagecolor] = ACTIONS(5569), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5572), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5575), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5578), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5581), + }, + [312] = { + [sym__simple_content] = STATE(313), + [sym_subsubsection] = STATE(313), + [sym_paragraph] = STATE(313), + [sym_subparagraph] = STATE(313), + [sym_enum_item] = STATE(313), + [sym_brace_group] = STATE(313), + [sym_mixed_group] = STATE(313), + [sym_text] = STATE(313), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(313), + [sym_inline_formula] = STATE(313), + [sym_begin] = STATE(86), + [sym_environment] = STATE(313), + [sym_caption] = STATE(313), + [sym_citation] = STATE(313), + [sym_package_include] = STATE(313), + [sym_class_include] = STATE(313), + [sym_latex_include] = STATE(313), + [sym_latex_input] = STATE(313), + [sym_biblatex_include] = STATE(313), + [sym_bibtex_include] = STATE(313), + [sym_graphics_include] = STATE(313), + [sym_svg_include] = STATE(313), + [sym_inkscape_include] = STATE(313), + [sym_verbatim_include] = STATE(313), + [sym_import] = STATE(313), + [sym_label_definition] = STATE(313), + [sym_label_reference] = STATE(313), + [sym_equation_label_reference] = STATE(313), + [sym_label_reference_range] = STATE(313), + [sym_label_number] = STATE(313), + [sym_command_definition] = STATE(313), + [sym_math_operator] = STATE(313), + [sym_glossary_entry_definition] = STATE(313), + [sym_glossary_entry_reference] = STATE(313), + [sym_acronym_definition] = STATE(313), + [sym_acronym_reference] = STATE(313), + [sym_theorem_definition] = STATE(313), + [sym_color_reference] = STATE(313), + [sym_color_definition] = STATE(313), + [sym_color_set_definition] = STATE(313), + [sym_pgf_library_import] = STATE(313), + [sym_tikz_library_import] = STATE(313), + [sym_generic_command] = STATE(313), + [aux_sym_subsection_repeat1] = STATE(313), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(2286), + [aux_sym_section_token1] = ACTIONS(2286), + [aux_sym_subsection_token1] = ACTIONS(2286), + [aux_sym_subsubsection_token1] = ACTIONS(2306), + [aux_sym_paragraph_token1] = ACTIONS(2308), + [aux_sym_subparagraph_token1] = ACTIONS(2310), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(5584), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [313] = { + [sym__simple_content] = STATE(310), + [sym_subsubsection] = STATE(310), + [sym_paragraph] = STATE(310), + [sym_subparagraph] = STATE(310), + [sym_enum_item] = STATE(310), + [sym_brace_group] = STATE(310), + [sym_mixed_group] = STATE(310), + [sym_text] = STATE(310), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(310), + [sym_inline_formula] = STATE(310), + [sym_begin] = STATE(86), + [sym_environment] = STATE(310), + [sym_caption] = STATE(310), + [sym_citation] = STATE(310), + [sym_package_include] = STATE(310), + [sym_class_include] = STATE(310), + [sym_latex_include] = STATE(310), + [sym_latex_input] = STATE(310), + [sym_biblatex_include] = STATE(310), + [sym_bibtex_include] = STATE(310), + [sym_graphics_include] = STATE(310), + [sym_svg_include] = STATE(310), + [sym_inkscape_include] = STATE(310), + [sym_verbatim_include] = STATE(310), + [sym_import] = STATE(310), + [sym_label_definition] = STATE(310), + [sym_label_reference] = STATE(310), + [sym_equation_label_reference] = STATE(310), + [sym_label_reference_range] = STATE(310), + [sym_label_number] = STATE(310), + [sym_command_definition] = STATE(310), + [sym_math_operator] = STATE(310), + [sym_glossary_entry_definition] = STATE(310), + [sym_glossary_entry_reference] = STATE(310), + [sym_acronym_definition] = STATE(310), + [sym_acronym_reference] = STATE(310), + [sym_theorem_definition] = STATE(310), + [sym_color_reference] = STATE(310), + [sym_color_definition] = STATE(310), + [sym_color_set_definition] = STATE(310), + [sym_pgf_library_import] = STATE(310), + [sym_tikz_library_import] = STATE(310), + [sym_generic_command] = STATE(310), + [aux_sym_subsection_repeat1] = STATE(310), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(2292), + [aux_sym_section_token1] = ACTIONS(2292), + [aux_sym_subsection_token1] = ACTIONS(2292), + [aux_sym_subsubsection_token1] = ACTIONS(2306), + [aux_sym_paragraph_token1] = ACTIONS(2308), + [aux_sym_subparagraph_token1] = ACTIONS(2310), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(2290), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(5586), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [314] = { + [sym__simple_content] = STATE(315), + [sym_subsection] = STATE(315), + [sym_subsubsection] = STATE(315), + [sym_paragraph] = STATE(315), + [sym_subparagraph] = STATE(315), + [sym_enum_item] = STATE(315), + [sym_brace_group] = STATE(315), + [sym_mixed_group] = STATE(315), + [sym_text] = STATE(315), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(315), + [sym_inline_formula] = STATE(315), + [sym_begin] = STATE(94), + [sym_environment] = STATE(315), + [sym_caption] = STATE(315), + [sym_citation] = STATE(315), + [sym_package_include] = STATE(315), + [sym_class_include] = STATE(315), + [sym_latex_include] = STATE(315), + [sym_latex_input] = STATE(315), + [sym_biblatex_include] = STATE(315), + [sym_bibtex_include] = STATE(315), + [sym_graphics_include] = STATE(315), + [sym_svg_include] = STATE(315), + [sym_inkscape_include] = STATE(315), + [sym_verbatim_include] = STATE(315), + [sym_import] = STATE(315), + [sym_label_definition] = STATE(315), + [sym_label_reference] = STATE(315), + [sym_equation_label_reference] = STATE(315), + [sym_label_reference_range] = STATE(315), + [sym_label_number] = STATE(315), + [sym_command_definition] = STATE(315), + [sym_math_operator] = STATE(315), + [sym_glossary_entry_definition] = STATE(315), + [sym_glossary_entry_reference] = STATE(315), + [sym_acronym_definition] = STATE(315), + [sym_acronym_reference] = STATE(315), + [sym_theorem_definition] = STATE(315), + [sym_color_reference] = STATE(315), + [sym_color_definition] = STATE(315), + [sym_color_set_definition] = STATE(315), + [sym_pgf_library_import] = STATE(315), + [sym_tikz_library_import] = STATE(315), + [sym_generic_command] = STATE(315), + [aux_sym_section_repeat1] = STATE(315), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(1983), + [aux_sym_subsection_token1] = ACTIONS(4062), + [aux_sym_subsubsection_token1] = ACTIONS(4064), + [aux_sym_paragraph_token1] = ACTIONS(4066), + [aux_sym_subparagraph_token1] = ACTIONS(4068), + [anon_sym_BSLASHitem] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(5588), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [315] = { + [sym__simple_content] = STATE(304), + [sym_subsection] = STATE(304), + [sym_subsubsection] = STATE(304), + [sym_paragraph] = STATE(304), + [sym_subparagraph] = STATE(304), + [sym_enum_item] = STATE(304), + [sym_brace_group] = STATE(304), + [sym_mixed_group] = STATE(304), + [sym_text] = STATE(304), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(304), + [sym_inline_formula] = STATE(304), + [sym_begin] = STATE(94), + [sym_environment] = STATE(304), + [sym_caption] = STATE(304), + [sym_citation] = STATE(304), + [sym_package_include] = STATE(304), + [sym_class_include] = STATE(304), + [sym_latex_include] = STATE(304), + [sym_latex_input] = STATE(304), + [sym_biblatex_include] = STATE(304), + [sym_bibtex_include] = STATE(304), + [sym_graphics_include] = STATE(304), + [sym_svg_include] = STATE(304), + [sym_inkscape_include] = STATE(304), + [sym_verbatim_include] = STATE(304), + [sym_import] = STATE(304), + [sym_label_definition] = STATE(304), + [sym_label_reference] = STATE(304), + [sym_equation_label_reference] = STATE(304), + [sym_label_reference_range] = STATE(304), + [sym_label_number] = STATE(304), + [sym_command_definition] = STATE(304), + [sym_math_operator] = STATE(304), + [sym_glossary_entry_definition] = STATE(304), + [sym_glossary_entry_reference] = STATE(304), + [sym_acronym_definition] = STATE(304), + [sym_acronym_reference] = STATE(304), + [sym_theorem_definition] = STATE(304), + [sym_color_reference] = STATE(304), + [sym_color_definition] = STATE(304), + [sym_color_set_definition] = STATE(304), + [sym_pgf_library_import] = STATE(304), + [sym_tikz_library_import] = STATE(304), + [sym_generic_command] = STATE(304), + [aux_sym_section_repeat1] = STATE(304), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(1977), + [aux_sym_subsection_token1] = ACTIONS(4062), + [aux_sym_subsubsection_token1] = ACTIONS(4064), + [aux_sym_paragraph_token1] = ACTIONS(4066), + [aux_sym_subparagraph_token1] = ACTIONS(4068), + [anon_sym_BSLASHitem] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(5590), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [316] = { + [sym__simple_content] = STATE(318), + [sym_subsubsection] = STATE(318), + [sym_paragraph] = STATE(318), + [sym_subparagraph] = STATE(318), + [sym_enum_item] = STATE(318), + [sym_brace_group] = STATE(318), + [sym_mixed_group] = STATE(318), + [sym_text] = STATE(318), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(318), + [sym_inline_formula] = STATE(318), + [sym_begin] = STATE(59), + [sym_environment] = STATE(318), + [sym_caption] = STATE(318), + [sym_citation] = STATE(318), + [sym_package_include] = STATE(318), + [sym_class_include] = STATE(318), + [sym_latex_include] = STATE(318), + [sym_latex_input] = STATE(318), + [sym_biblatex_include] = STATE(318), + [sym_bibtex_include] = STATE(318), + [sym_graphics_include] = STATE(318), + [sym_svg_include] = STATE(318), + [sym_inkscape_include] = STATE(318), + [sym_verbatim_include] = STATE(318), + [sym_import] = STATE(318), + [sym_label_definition] = STATE(318), + [sym_label_reference] = STATE(318), + [sym_equation_label_reference] = STATE(318), + [sym_label_reference_range] = STATE(318), + [sym_label_number] = STATE(318), + [sym_command_definition] = STATE(318), + [sym_math_operator] = STATE(318), + [sym_glossary_entry_definition] = STATE(318), + [sym_glossary_entry_reference] = STATE(318), + [sym_acronym_definition] = STATE(318), + [sym_acronym_reference] = STATE(318), + [sym_theorem_definition] = STATE(318), + [sym_color_reference] = STATE(318), + [sym_color_definition] = STATE(318), + [sym_color_set_definition] = STATE(318), + [sym_pgf_library_import] = STATE(318), + [sym_tikz_library_import] = STATE(318), + [sym_generic_command] = STATE(318), + [aux_sym_subsection_repeat1] = STATE(318), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2286), + [aux_sym_chapter_token1] = ACTIONS(2286), + [aux_sym_section_token1] = ACTIONS(2286), + [aux_sym_subsection_token1] = ACTIONS(2286), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(5592), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2284), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [317] = { + [sym__simple_content] = STATE(307), + [sym_subsubsection] = STATE(307), + [sym_paragraph] = STATE(307), + [sym_subparagraph] = STATE(307), + [sym_enum_item] = STATE(307), + [sym_brace_group] = STATE(307), + [sym_mixed_group] = STATE(307), + [sym_text] = STATE(307), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(307), + [sym_inline_formula] = STATE(307), + [sym_begin] = STATE(66), + [sym_environment] = STATE(307), + [sym_caption] = STATE(307), + [sym_citation] = STATE(307), + [sym_package_include] = STATE(307), + [sym_class_include] = STATE(307), + [sym_latex_include] = STATE(307), + [sym_latex_input] = STATE(307), + [sym_biblatex_include] = STATE(307), + [sym_bibtex_include] = STATE(307), + [sym_graphics_include] = STATE(307), + [sym_svg_include] = STATE(307), + [sym_inkscape_include] = STATE(307), + [sym_verbatim_include] = STATE(307), + [sym_import] = STATE(307), + [sym_label_definition] = STATE(307), + [sym_label_reference] = STATE(307), + [sym_equation_label_reference] = STATE(307), + [sym_label_reference_range] = STATE(307), + [sym_label_number] = STATE(307), + [sym_command_definition] = STATE(307), + [sym_math_operator] = STATE(307), + [sym_glossary_entry_definition] = STATE(307), + [sym_glossary_entry_reference] = STATE(307), + [sym_acronym_definition] = STATE(307), + [sym_acronym_reference] = STATE(307), + [sym_theorem_definition] = STATE(307), + [sym_color_reference] = STATE(307), + [sym_color_definition] = STATE(307), + [sym_color_set_definition] = STATE(307), + [sym_pgf_library_import] = STATE(307), + [sym_tikz_library_import] = STATE(307), + [sym_generic_command] = STATE(307), + [aux_sym_subsection_repeat1] = STATE(307), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2286), + [aux_sym_chapter_token1] = ACTIONS(2286), + [aux_sym_section_token1] = ACTIONS(2286), + [aux_sym_subsection_token1] = ACTIONS(2286), + [aux_sym_subsubsection_token1] = ACTIONS(396), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(5594), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2284), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [318] = { + [sym__simple_content] = STATE(309), + [sym_subsubsection] = STATE(309), + [sym_paragraph] = STATE(309), + [sym_subparagraph] = STATE(309), + [sym_enum_item] = STATE(309), + [sym_brace_group] = STATE(309), + [sym_mixed_group] = STATE(309), + [sym_text] = STATE(309), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(309), + [sym_inline_formula] = STATE(309), + [sym_begin] = STATE(59), + [sym_environment] = STATE(309), + [sym_caption] = STATE(309), + [sym_citation] = STATE(309), + [sym_package_include] = STATE(309), + [sym_class_include] = STATE(309), + [sym_latex_include] = STATE(309), + [sym_latex_input] = STATE(309), + [sym_biblatex_include] = STATE(309), + [sym_bibtex_include] = STATE(309), + [sym_graphics_include] = STATE(309), + [sym_svg_include] = STATE(309), + [sym_inkscape_include] = STATE(309), + [sym_verbatim_include] = STATE(309), + [sym_import] = STATE(309), + [sym_label_definition] = STATE(309), + [sym_label_reference] = STATE(309), + [sym_equation_label_reference] = STATE(309), + [sym_label_reference_range] = STATE(309), + [sym_label_number] = STATE(309), + [sym_command_definition] = STATE(309), + [sym_math_operator] = STATE(309), + [sym_glossary_entry_definition] = STATE(309), + [sym_glossary_entry_reference] = STATE(309), + [sym_acronym_definition] = STATE(309), + [sym_acronym_reference] = STATE(309), + [sym_theorem_definition] = STATE(309), + [sym_color_reference] = STATE(309), + [sym_color_definition] = STATE(309), + [sym_color_set_definition] = STATE(309), + [sym_pgf_library_import] = STATE(309), + [sym_tikz_library_import] = STATE(309), + [sym_generic_command] = STATE(309), + [aux_sym_subsection_repeat1] = STATE(309), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(2292), + [aux_sym_chapter_token1] = ACTIONS(2292), + [aux_sym_section_token1] = ACTIONS(2292), + [aux_sym_subsection_token1] = ACTIONS(2292), + [aux_sym_subsubsection_token1] = ACTIONS(294), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(5596), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2290), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [319] = { + [sym__simple_content] = STATE(329), + [sym_brace_group] = STATE(329), + [sym_mixed_group] = STATE(329), + [sym_text] = STATE(329), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(329), + [sym_inline_formula] = STATE(329), + [sym_begin] = STATE(52), + [sym_environment] = STATE(329), + [sym_caption] = STATE(329), + [sym_citation] = STATE(329), + [sym_package_include] = STATE(329), + [sym_class_include] = STATE(329), + [sym_latex_include] = STATE(329), + [sym_latex_input] = STATE(329), + [sym_biblatex_include] = STATE(329), + [sym_bibtex_include] = STATE(329), + [sym_graphics_include] = STATE(329), + [sym_svg_include] = STATE(329), + [sym_inkscape_include] = STATE(329), + [sym_verbatim_include] = STATE(329), + [sym_import] = STATE(329), + [sym_label_definition] = STATE(329), + [sym_label_reference] = STATE(329), + [sym_equation_label_reference] = STATE(329), + [sym_label_reference_range] = STATE(329), + [sym_label_number] = STATE(329), + [sym_command_definition] = STATE(329), + [sym_math_operator] = STATE(329), + [sym_glossary_entry_definition] = STATE(329), + [sym_glossary_entry_reference] = STATE(329), + [sym_acronym_definition] = STATE(329), + [sym_acronym_reference] = STATE(329), + [sym_theorem_definition] = STATE(329), + [sym_color_reference] = STATE(329), + [sym_color_definition] = STATE(329), + [sym_color_set_definition] = STATE(329), + [sym_pgf_library_import] = STATE(329), + [sym_tikz_library_import] = STATE(329), + [sym_generic_command] = STATE(329), + [aux_sym_enum_item_repeat1] = STATE(329), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(5598), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5600), + [aux_sym_chapter_token1] = ACTIONS(5600), + [aux_sym_section_token1] = ACTIONS(5600), + [aux_sym_subsection_token1] = ACTIONS(5600), + [aux_sym_subsubsection_token1] = ACTIONS(5600), + [aux_sym_paragraph_token1] = ACTIONS(5600), + [aux_sym_subparagraph_token1] = ACTIONS(5600), + [anon_sym_BSLASHitem] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(5598), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(5598), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(5602), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [320] = { + [sym__simple_content] = STATE(331), + [sym_brace_group] = STATE(331), + [sym_mixed_group] = STATE(331), + [sym_text] = STATE(331), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(331), + [sym_inline_formula] = STATE(331), + [sym_begin] = STATE(52), + [sym_environment] = STATE(331), + [sym_caption] = STATE(331), + [sym_citation] = STATE(331), + [sym_package_include] = STATE(331), + [sym_class_include] = STATE(331), + [sym_latex_include] = STATE(331), + [sym_latex_input] = STATE(331), + [sym_biblatex_include] = STATE(331), + [sym_bibtex_include] = STATE(331), + [sym_graphics_include] = STATE(331), + [sym_svg_include] = STATE(331), + [sym_inkscape_include] = STATE(331), + [sym_verbatim_include] = STATE(331), + [sym_import] = STATE(331), + [sym_label_definition] = STATE(331), + [sym_label_reference] = STATE(331), + [sym_equation_label_reference] = STATE(331), + [sym_label_reference_range] = STATE(331), + [sym_label_number] = STATE(331), + [sym_command_definition] = STATE(331), + [sym_math_operator] = STATE(331), + [sym_glossary_entry_definition] = STATE(331), + [sym_glossary_entry_reference] = STATE(331), + [sym_acronym_definition] = STATE(331), + [sym_acronym_reference] = STATE(331), + [sym_theorem_definition] = STATE(331), + [sym_color_reference] = STATE(331), + [sym_color_definition] = STATE(331), + [sym_color_set_definition] = STATE(331), + [sym_pgf_library_import] = STATE(331), + [sym_tikz_library_import] = STATE(331), + [sym_generic_command] = STATE(331), + [aux_sym_enum_item_repeat1] = STATE(331), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(5604), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5606), + [aux_sym_chapter_token1] = ACTIONS(5606), + [aux_sym_section_token1] = ACTIONS(5606), + [aux_sym_subsection_token1] = ACTIONS(5606), + [aux_sym_subsubsection_token1] = ACTIONS(5606), + [aux_sym_paragraph_token1] = ACTIONS(5606), + [aux_sym_subparagraph_token1] = ACTIONS(5606), + [anon_sym_BSLASHitem] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(5604), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(5608), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [321] = { + [sym__simple_content] = STATE(332), + [sym_paragraph] = STATE(332), + [sym_subparagraph] = STATE(332), + [sym_enum_item] = STATE(332), + [sym_brace_group] = STATE(332), + [sym_mixed_group] = STATE(332), + [sym_text] = STATE(332), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(332), + [sym_inline_formula] = STATE(332), + [sym_begin] = STATE(59), + [sym_environment] = STATE(332), + [sym_caption] = STATE(332), + [sym_citation] = STATE(332), + [sym_package_include] = STATE(332), + [sym_class_include] = STATE(332), + [sym_latex_include] = STATE(332), + [sym_latex_input] = STATE(332), + [sym_biblatex_include] = STATE(332), + [sym_bibtex_include] = STATE(332), + [sym_graphics_include] = STATE(332), + [sym_svg_include] = STATE(332), + [sym_inkscape_include] = STATE(332), + [sym_verbatim_include] = STATE(332), + [sym_import] = STATE(332), + [sym_label_definition] = STATE(332), + [sym_label_reference] = STATE(332), + [sym_equation_label_reference] = STATE(332), + [sym_label_reference_range] = STATE(332), + [sym_label_number] = STATE(332), + [sym_command_definition] = STATE(332), + [sym_math_operator] = STATE(332), + [sym_glossary_entry_definition] = STATE(332), + [sym_glossary_entry_reference] = STATE(332), + [sym_acronym_definition] = STATE(332), + [sym_acronym_reference] = STATE(332), + [sym_theorem_definition] = STATE(332), + [sym_color_reference] = STATE(332), + [sym_color_definition] = STATE(332), + [sym_color_set_definition] = STATE(332), + [sym_pgf_library_import] = STATE(332), + [sym_tikz_library_import] = STATE(332), + [sym_generic_command] = STATE(332), + [aux_sym_subsubsection_repeat1] = STATE(332), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3020), + [aux_sym_chapter_token1] = ACTIONS(3020), + [aux_sym_section_token1] = ACTIONS(3020), + [aux_sym_subsection_token1] = ACTIONS(3020), + [aux_sym_subsubsection_token1] = ACTIONS(3020), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(5610), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(3018), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [322] = { + [sym__simple_content] = STATE(322), + [sym_paragraph] = STATE(322), + [sym_subparagraph] = STATE(322), + [sym_enum_item] = STATE(322), + [sym_brace_group] = STATE(322), + [sym_mixed_group] = STATE(322), + [sym_text] = STATE(322), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(322), + [sym_inline_formula] = STATE(322), + [sym_begin] = STATE(66), + [sym_environment] = STATE(322), + [sym_caption] = STATE(322), + [sym_citation] = STATE(322), + [sym_package_include] = STATE(322), + [sym_class_include] = STATE(322), + [sym_latex_include] = STATE(322), + [sym_latex_input] = STATE(322), + [sym_biblatex_include] = STATE(322), + [sym_bibtex_include] = STATE(322), + [sym_graphics_include] = STATE(322), + [sym_svg_include] = STATE(322), + [sym_inkscape_include] = STATE(322), + [sym_verbatim_include] = STATE(322), + [sym_import] = STATE(322), + [sym_label_definition] = STATE(322), + [sym_label_reference] = STATE(322), + [sym_equation_label_reference] = STATE(322), + [sym_label_reference_range] = STATE(322), + [sym_label_number] = STATE(322), + [sym_command_definition] = STATE(322), + [sym_math_operator] = STATE(322), + [sym_glossary_entry_definition] = STATE(322), + [sym_glossary_entry_reference] = STATE(322), + [sym_acronym_definition] = STATE(322), + [sym_acronym_reference] = STATE(322), + [sym_theorem_definition] = STATE(322), + [sym_color_reference] = STATE(322), + [sym_color_definition] = STATE(322), + [sym_color_set_definition] = STATE(322), + [sym_pgf_library_import] = STATE(322), + [sym_tikz_library_import] = STATE(322), + [sym_generic_command] = STATE(322), + [aux_sym_subsubsection_repeat1] = STATE(322), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(5612), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3325), + [aux_sym_chapter_token1] = ACTIONS(3325), + [aux_sym_section_token1] = ACTIONS(3325), + [aux_sym_subsection_token1] = ACTIONS(3325), + [aux_sym_subsubsection_token1] = ACTIONS(3325), + [aux_sym_paragraph_token1] = ACTIONS(5615), + [aux_sym_subparagraph_token1] = ACTIONS(5618), + [anon_sym_BSLASHitem] = ACTIONS(5621), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_LBRACE] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5630), + [anon_sym_EQ] = ACTIONS(5630), + [sym_word] = ACTIONS(5630), + [sym_param] = ACTIONS(5633), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5636), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5636), + [anon_sym_DOLLAR] = ACTIONS(5639), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5642), + [anon_sym_BSLASH_RPAREN] = ACTIONS(3320), + [anon_sym_BSLASHbegin] = ACTIONS(3357), + [anon_sym_BSLASHcaption] = ACTIONS(5645), + [anon_sym_BSLASHcite] = ACTIONS(5648), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5651), + [anon_sym_BSLASHCite] = ACTIONS(5648), + [anon_sym_BSLASHnocite] = ACTIONS(5648), + [anon_sym_BSLASHcitet] = ACTIONS(5648), + [anon_sym_BSLASHcitep] = ACTIONS(5648), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5651), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5651), + [anon_sym_BSLASHciteauthor] = ACTIONS(5648), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5651), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5648), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5651), + [anon_sym_BSLASHcitetitle] = ACTIONS(5648), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5651), + [anon_sym_BSLASHciteyear] = ACTIONS(5648), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5651), + [anon_sym_BSLASHcitedate] = ACTIONS(5648), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5651), + [anon_sym_BSLASHciteurl] = ACTIONS(5648), + [anon_sym_BSLASHfullcite] = ACTIONS(5648), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5648), + [anon_sym_BSLASHcitealt] = ACTIONS(5648), + [anon_sym_BSLASHcitealp] = ACTIONS(5648), + [anon_sym_BSLASHcitetext] = ACTIONS(5648), + [anon_sym_BSLASHparencite] = ACTIONS(5648), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5651), + [anon_sym_BSLASHParencite] = ACTIONS(5648), + [anon_sym_BSLASHfootcite] = ACTIONS(5648), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5648), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5648), + [anon_sym_BSLASHtextcite] = ACTIONS(5648), + [anon_sym_BSLASHTextcite] = ACTIONS(5648), + [anon_sym_BSLASHsmartcite] = ACTIONS(5648), + [anon_sym_BSLASHSmartcite] = ACTIONS(5648), + [anon_sym_BSLASHsupercite] = ACTIONS(5648), + [anon_sym_BSLASHautocite] = ACTIONS(5648), + [anon_sym_BSLASHAutocite] = ACTIONS(5648), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5651), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5651), + [anon_sym_BSLASHvolcite] = ACTIONS(5648), + [anon_sym_BSLASHVolcite] = ACTIONS(5648), + [anon_sym_BSLASHpvolcite] = ACTIONS(5648), + [anon_sym_BSLASHPvolcite] = ACTIONS(5648), + [anon_sym_BSLASHfvolcite] = ACTIONS(5648), + [anon_sym_BSLASHftvolcite] = ACTIONS(5648), + [anon_sym_BSLASHsvolcite] = ACTIONS(5648), + [anon_sym_BSLASHSvolcite] = ACTIONS(5648), + [anon_sym_BSLASHtvolcite] = ACTIONS(5648), + [anon_sym_BSLASHTvolcite] = ACTIONS(5648), + [anon_sym_BSLASHavolcite] = ACTIONS(5648), + [anon_sym_BSLASHAvolcite] = ACTIONS(5648), + [anon_sym_BSLASHnotecite] = ACTIONS(5648), + [anon_sym_BSLASHpnotecite] = ACTIONS(5648), + [anon_sym_BSLASHPnotecite] = ACTIONS(5648), + [anon_sym_BSLASHfnotecite] = ACTIONS(5648), + [anon_sym_BSLASHusepackage] = ACTIONS(5654), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5654), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5657), + [anon_sym_BSLASHinclude] = ACTIONS(5660), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5660), + [anon_sym_BSLASHinput] = ACTIONS(5663), + [anon_sym_BSLASHsubfile] = ACTIONS(5663), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5666), + [anon_sym_BSLASHbibliography] = ACTIONS(5669), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5672), + [anon_sym_BSLASHincludesvg] = ACTIONS(5675), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5678), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5681), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5681), + [anon_sym_BSLASHimport] = ACTIONS(5684), + [anon_sym_BSLASHsubimport] = ACTIONS(5684), + [anon_sym_BSLASHinputfrom] = ACTIONS(5684), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5684), + [anon_sym_BSLASHincludefrom] = ACTIONS(5684), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5684), + [anon_sym_BSLASHlabel] = ACTIONS(5687), + [anon_sym_BSLASHref] = ACTIONS(5690), + [anon_sym_BSLASHvref] = ACTIONS(5690), + [anon_sym_BSLASHVref] = ACTIONS(5690), + [anon_sym_BSLASHautoref] = ACTIONS(5690), + [anon_sym_BSLASHpageref] = ACTIONS(5690), + [anon_sym_BSLASHcref] = ACTIONS(5690), + [anon_sym_BSLASHCref] = ACTIONS(5690), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5693), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5693), + [anon_sym_BSLASHnamecref] = ACTIONS(5690), + [anon_sym_BSLASHnameCref] = ACTIONS(5690), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5690), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5690), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5690), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5690), + [anon_sym_BSLASHlabelcref] = ACTIONS(5690), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5690), + [anon_sym_BSLASHeqref] = ACTIONS(5696), + [anon_sym_BSLASHcrefrange] = ACTIONS(5699), + [anon_sym_BSLASHCrefrange] = ACTIONS(5699), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5702), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5702), + [anon_sym_BSLASHnewlabel] = ACTIONS(5705), + [anon_sym_BSLASHnewcommand] = ACTIONS(5708), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5708), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5708), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5711), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5714), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5717), + [anon_sym_BSLASHgls] = ACTIONS(5720), + [anon_sym_BSLASHGls] = ACTIONS(5720), + [anon_sym_BSLASHGLS] = ACTIONS(5720), + [anon_sym_BSLASHglspl] = ACTIONS(5720), + [anon_sym_BSLASHGlspl] = ACTIONS(5720), + [anon_sym_BSLASHGLSpl] = ACTIONS(5720), + [anon_sym_BSLASHglsdisp] = ACTIONS(5720), + [anon_sym_BSLASHglslink] = ACTIONS(5720), + [anon_sym_BSLASHglstext] = ACTIONS(5720), + [anon_sym_BSLASHGlstext] = ACTIONS(5720), + [anon_sym_BSLASHGLStext] = ACTIONS(5720), + [anon_sym_BSLASHglsfirst] = ACTIONS(5720), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5720), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5720), + [anon_sym_BSLASHglsplural] = ACTIONS(5720), + [anon_sym_BSLASHGlsplural] = ACTIONS(5720), + [anon_sym_BSLASHGLSplural] = ACTIONS(5720), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5720), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5720), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5720), + [anon_sym_BSLASHglsname] = ACTIONS(5720), + [anon_sym_BSLASHGlsname] = ACTIONS(5720), + [anon_sym_BSLASHGLSname] = ACTIONS(5720), + [anon_sym_BSLASHglssymbol] = ACTIONS(5720), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5720), + [anon_sym_BSLASHglsdesc] = ACTIONS(5720), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5720), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5720), + [anon_sym_BSLASHglsuseri] = ACTIONS(5720), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5720), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5720), + [anon_sym_BSLASHglsuserii] = ACTIONS(5720), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5720), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5720), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5720), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5720), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5720), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5720), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5720), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5720), + [anon_sym_BSLASHglsuserv] = ACTIONS(5720), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5720), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5720), + [anon_sym_BSLASHglsuservi] = ACTIONS(5720), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5720), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5720), + [anon_sym_BSLASHnewacronym] = ACTIONS(5723), + [anon_sym_BSLASHacrshort] = ACTIONS(5726), + [anon_sym_BSLASHAcrshort] = ACTIONS(5726), + [anon_sym_BSLASHACRshort] = ACTIONS(5726), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5726), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5726), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5726), + [anon_sym_BSLASHacrlong] = ACTIONS(5726), + [anon_sym_BSLASHAcrlong] = ACTIONS(5726), + [anon_sym_BSLASHACRlong] = ACTIONS(5726), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5726), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5726), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5726), + [anon_sym_BSLASHacrfull] = ACTIONS(5726), + [anon_sym_BSLASHAcrfull] = ACTIONS(5726), + [anon_sym_BSLASHACRfull] = ACTIONS(5726), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5726), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5726), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5726), + [anon_sym_BSLASHacs] = ACTIONS(5726), + [anon_sym_BSLASHAcs] = ACTIONS(5726), + [anon_sym_BSLASHacsp] = ACTIONS(5726), + [anon_sym_BSLASHAcsp] = ACTIONS(5726), + [anon_sym_BSLASHacl] = ACTIONS(5726), + [anon_sym_BSLASHAcl] = ACTIONS(5726), + [anon_sym_BSLASHaclp] = ACTIONS(5726), + [anon_sym_BSLASHAclp] = ACTIONS(5726), + [anon_sym_BSLASHacf] = ACTIONS(5726), + [anon_sym_BSLASHAcf] = ACTIONS(5726), + [anon_sym_BSLASHacfp] = ACTIONS(5726), + [anon_sym_BSLASHAcfp] = ACTIONS(5726), + [anon_sym_BSLASHac] = ACTIONS(5726), + [anon_sym_BSLASHAc] = ACTIONS(5726), + [anon_sym_BSLASHacp] = ACTIONS(5726), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5726), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5726), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5726), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5726), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5726), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5726), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5726), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5726), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5726), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5726), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5729), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5729), + [anon_sym_BSLASHcolor] = ACTIONS(5732), + [anon_sym_BSLASHcolorbox] = ACTIONS(5732), + [anon_sym_BSLASHtextcolor] = ACTIONS(5732), + [anon_sym_BSLASHpagecolor] = ACTIONS(5732), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5735), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5738), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5741), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5744), + }, + [323] = { + [sym__simple_content] = STATE(336), + [sym_paragraph] = STATE(336), + [sym_subparagraph] = STATE(336), + [sym_enum_item] = STATE(336), + [sym_brace_group] = STATE(336), + [sym_mixed_group] = STATE(336), + [sym_text] = STATE(336), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(336), + [sym_inline_formula] = STATE(336), + [sym_begin] = STATE(66), + [sym_environment] = STATE(336), + [sym_caption] = STATE(336), + [sym_citation] = STATE(336), + [sym_package_include] = STATE(336), + [sym_class_include] = STATE(336), + [sym_latex_include] = STATE(336), + [sym_latex_input] = STATE(336), + [sym_biblatex_include] = STATE(336), + [sym_bibtex_include] = STATE(336), + [sym_graphics_include] = STATE(336), + [sym_svg_include] = STATE(336), + [sym_inkscape_include] = STATE(336), + [sym_verbatim_include] = STATE(336), + [sym_import] = STATE(336), + [sym_label_definition] = STATE(336), + [sym_label_reference] = STATE(336), + [sym_equation_label_reference] = STATE(336), + [sym_label_reference_range] = STATE(336), + [sym_label_number] = STATE(336), + [sym_command_definition] = STATE(336), + [sym_math_operator] = STATE(336), + [sym_glossary_entry_definition] = STATE(336), + [sym_glossary_entry_reference] = STATE(336), + [sym_acronym_definition] = STATE(336), + [sym_acronym_reference] = STATE(336), + [sym_theorem_definition] = STATE(336), + [sym_color_reference] = STATE(336), + [sym_color_definition] = STATE(336), + [sym_color_set_definition] = STATE(336), + [sym_pgf_library_import] = STATE(336), + [sym_tikz_library_import] = STATE(336), + [sym_generic_command] = STATE(336), + [aux_sym_subsubsection_repeat1] = STATE(336), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3614), + [aux_sym_chapter_token1] = ACTIONS(3614), + [aux_sym_section_token1] = ACTIONS(3614), + [aux_sym_subsection_token1] = ACTIONS(3614), + [aux_sym_subsubsection_token1] = ACTIONS(3614), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(5747), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(3612), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [324] = { + [sym__simple_content] = STATE(324), + [sym_subsection] = STATE(324), + [sym_subsubsection] = STATE(324), + [sym_paragraph] = STATE(324), + [sym_subparagraph] = STATE(324), + [sym_enum_item] = STATE(324), + [sym_brace_group] = STATE(324), + [sym_mixed_group] = STATE(324), + [sym_text] = STATE(324), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(324), + [sym_inline_formula] = STATE(324), + [sym_begin] = STATE(105), + [sym_environment] = STATE(324), + [sym_caption] = STATE(324), + [sym_citation] = STATE(324), + [sym_package_include] = STATE(324), + [sym_class_include] = STATE(324), + [sym_latex_include] = STATE(324), + [sym_latex_input] = STATE(324), + [sym_biblatex_include] = STATE(324), + [sym_bibtex_include] = STATE(324), + [sym_graphics_include] = STATE(324), + [sym_svg_include] = STATE(324), + [sym_inkscape_include] = STATE(324), + [sym_verbatim_include] = STATE(324), + [sym_import] = STATE(324), + [sym_label_definition] = STATE(324), + [sym_label_reference] = STATE(324), + [sym_equation_label_reference] = STATE(324), + [sym_label_reference_range] = STATE(324), + [sym_label_number] = STATE(324), + [sym_command_definition] = STATE(324), + [sym_math_operator] = STATE(324), + [sym_glossary_entry_definition] = STATE(324), + [sym_glossary_entry_reference] = STATE(324), + [sym_acronym_definition] = STATE(324), + [sym_acronym_reference] = STATE(324), + [sym_theorem_definition] = STATE(324), + [sym_color_reference] = STATE(324), + [sym_color_definition] = STATE(324), + [sym_color_set_definition] = STATE(324), + [sym_pgf_library_import] = STATE(324), + [sym_tikz_library_import] = STATE(324), + [sym_generic_command] = STATE(324), + [aux_sym_section_repeat1] = STATE(324), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(5749), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(5752), + [aux_sym_subsubsection_token1] = ACTIONS(5755), + [aux_sym_paragraph_token1] = ACTIONS(5758), + [aux_sym_subparagraph_token1] = ACTIONS(5761), + [anon_sym_BSLASHitem] = ACTIONS(5764), + [anon_sym_LBRACK] = ACTIONS(5767), + [anon_sym_RBRACK] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(5770), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_LPAREN] = ACTIONS(5767), + [anon_sym_COMMA] = ACTIONS(5773), + [anon_sym_EQ] = ACTIONS(5773), + [sym_word] = ACTIONS(5773), + [sym_param] = ACTIONS(5776), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5779), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5779), + [anon_sym_DOLLAR] = ACTIONS(5782), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5785), + [anon_sym_BSLASHbegin] = ACTIONS(2030), + [anon_sym_BSLASHcaption] = ACTIONS(5788), + [anon_sym_BSLASHcite] = ACTIONS(5791), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5794), + [anon_sym_BSLASHCite] = ACTIONS(5791), + [anon_sym_BSLASHnocite] = ACTIONS(5791), + [anon_sym_BSLASHcitet] = ACTIONS(5791), + [anon_sym_BSLASHcitep] = ACTIONS(5791), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5794), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5794), + [anon_sym_BSLASHciteauthor] = ACTIONS(5791), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5794), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5791), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5794), + [anon_sym_BSLASHcitetitle] = ACTIONS(5791), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5794), + [anon_sym_BSLASHciteyear] = ACTIONS(5791), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5794), + [anon_sym_BSLASHcitedate] = ACTIONS(5791), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5794), + [anon_sym_BSLASHciteurl] = ACTIONS(5791), + [anon_sym_BSLASHfullcite] = ACTIONS(5791), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5791), + [anon_sym_BSLASHcitealt] = ACTIONS(5791), + [anon_sym_BSLASHcitealp] = ACTIONS(5791), + [anon_sym_BSLASHcitetext] = ACTIONS(5791), + [anon_sym_BSLASHparencite] = ACTIONS(5791), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5794), + [anon_sym_BSLASHParencite] = ACTIONS(5791), + [anon_sym_BSLASHfootcite] = ACTIONS(5791), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5791), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5791), + [anon_sym_BSLASHtextcite] = ACTIONS(5791), + [anon_sym_BSLASHTextcite] = ACTIONS(5791), + [anon_sym_BSLASHsmartcite] = ACTIONS(5791), + [anon_sym_BSLASHSmartcite] = ACTIONS(5791), + [anon_sym_BSLASHsupercite] = ACTIONS(5791), + [anon_sym_BSLASHautocite] = ACTIONS(5791), + [anon_sym_BSLASHAutocite] = ACTIONS(5791), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5794), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5794), + [anon_sym_BSLASHvolcite] = ACTIONS(5791), + [anon_sym_BSLASHVolcite] = ACTIONS(5791), + [anon_sym_BSLASHpvolcite] = ACTIONS(5791), + [anon_sym_BSLASHPvolcite] = ACTIONS(5791), + [anon_sym_BSLASHfvolcite] = ACTIONS(5791), + [anon_sym_BSLASHftvolcite] = ACTIONS(5791), + [anon_sym_BSLASHsvolcite] = ACTIONS(5791), + [anon_sym_BSLASHSvolcite] = ACTIONS(5791), + [anon_sym_BSLASHtvolcite] = ACTIONS(5791), + [anon_sym_BSLASHTvolcite] = ACTIONS(5791), + [anon_sym_BSLASHavolcite] = ACTIONS(5791), + [anon_sym_BSLASHAvolcite] = ACTIONS(5791), + [anon_sym_BSLASHnotecite] = ACTIONS(5791), + [anon_sym_BSLASHpnotecite] = ACTIONS(5791), + [anon_sym_BSLASHPnotecite] = ACTIONS(5791), + [anon_sym_BSLASHfnotecite] = ACTIONS(5791), + [anon_sym_BSLASHusepackage] = ACTIONS(5797), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5797), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5800), + [anon_sym_BSLASHinclude] = ACTIONS(5803), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5803), + [anon_sym_BSLASHinput] = ACTIONS(5806), + [anon_sym_BSLASHsubfile] = ACTIONS(5806), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5809), + [anon_sym_BSLASHbibliography] = ACTIONS(5812), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5815), + [anon_sym_BSLASHincludesvg] = ACTIONS(5818), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5821), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5824), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5824), + [anon_sym_BSLASHimport] = ACTIONS(5827), + [anon_sym_BSLASHsubimport] = ACTIONS(5827), + [anon_sym_BSLASHinputfrom] = ACTIONS(5827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5827), + [anon_sym_BSLASHincludefrom] = ACTIONS(5827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5827), + [anon_sym_BSLASHlabel] = ACTIONS(5830), + [anon_sym_BSLASHref] = ACTIONS(5833), + [anon_sym_BSLASHvref] = ACTIONS(5833), + [anon_sym_BSLASHVref] = ACTIONS(5833), + [anon_sym_BSLASHautoref] = ACTIONS(5833), + [anon_sym_BSLASHpageref] = ACTIONS(5833), + [anon_sym_BSLASHcref] = ACTIONS(5833), + [anon_sym_BSLASHCref] = ACTIONS(5833), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5836), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5836), + [anon_sym_BSLASHnamecref] = ACTIONS(5833), + [anon_sym_BSLASHnameCref] = ACTIONS(5833), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5833), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5833), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5833), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5833), + [anon_sym_BSLASHlabelcref] = ACTIONS(5833), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5833), + [anon_sym_BSLASHeqref] = ACTIONS(5839), + [anon_sym_BSLASHcrefrange] = ACTIONS(5842), + [anon_sym_BSLASHCrefrange] = ACTIONS(5842), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5845), + [anon_sym_BSLASHnewlabel] = ACTIONS(5848), + [anon_sym_BSLASHnewcommand] = ACTIONS(5851), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5851), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5851), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5854), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5860), + [anon_sym_BSLASHgls] = ACTIONS(5863), + [anon_sym_BSLASHGls] = ACTIONS(5863), + [anon_sym_BSLASHGLS] = ACTIONS(5863), + [anon_sym_BSLASHglspl] = ACTIONS(5863), + [anon_sym_BSLASHGlspl] = ACTIONS(5863), + [anon_sym_BSLASHGLSpl] = ACTIONS(5863), + [anon_sym_BSLASHglsdisp] = ACTIONS(5863), + [anon_sym_BSLASHglslink] = ACTIONS(5863), + [anon_sym_BSLASHglstext] = ACTIONS(5863), + [anon_sym_BSLASHGlstext] = ACTIONS(5863), + [anon_sym_BSLASHGLStext] = ACTIONS(5863), + [anon_sym_BSLASHglsfirst] = ACTIONS(5863), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5863), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5863), + [anon_sym_BSLASHglsplural] = ACTIONS(5863), + [anon_sym_BSLASHGlsplural] = ACTIONS(5863), + [anon_sym_BSLASHGLSplural] = ACTIONS(5863), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5863), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5863), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5863), + [anon_sym_BSLASHglsname] = ACTIONS(5863), + [anon_sym_BSLASHGlsname] = ACTIONS(5863), + [anon_sym_BSLASHGLSname] = ACTIONS(5863), + [anon_sym_BSLASHglssymbol] = ACTIONS(5863), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5863), + [anon_sym_BSLASHglsdesc] = ACTIONS(5863), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5863), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5863), + [anon_sym_BSLASHglsuseri] = ACTIONS(5863), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5863), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5863), + [anon_sym_BSLASHglsuserii] = ACTIONS(5863), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5863), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5863), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5863), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5863), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5863), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5863), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5863), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5863), + [anon_sym_BSLASHglsuserv] = ACTIONS(5863), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5863), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5863), + [anon_sym_BSLASHglsuservi] = ACTIONS(5863), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5863), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5863), + [anon_sym_BSLASHnewacronym] = ACTIONS(5866), + [anon_sym_BSLASHacrshort] = ACTIONS(5869), + [anon_sym_BSLASHAcrshort] = ACTIONS(5869), + [anon_sym_BSLASHACRshort] = ACTIONS(5869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5869), + [anon_sym_BSLASHacrlong] = ACTIONS(5869), + [anon_sym_BSLASHAcrlong] = ACTIONS(5869), + [anon_sym_BSLASHACRlong] = ACTIONS(5869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5869), + [anon_sym_BSLASHacrfull] = ACTIONS(5869), + [anon_sym_BSLASHAcrfull] = ACTIONS(5869), + [anon_sym_BSLASHACRfull] = ACTIONS(5869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5869), + [anon_sym_BSLASHacs] = ACTIONS(5869), + [anon_sym_BSLASHAcs] = ACTIONS(5869), + [anon_sym_BSLASHacsp] = ACTIONS(5869), + [anon_sym_BSLASHAcsp] = ACTIONS(5869), + [anon_sym_BSLASHacl] = ACTIONS(5869), + [anon_sym_BSLASHAcl] = ACTIONS(5869), + [anon_sym_BSLASHaclp] = ACTIONS(5869), + [anon_sym_BSLASHAclp] = ACTIONS(5869), + [anon_sym_BSLASHacf] = ACTIONS(5869), + [anon_sym_BSLASHAcf] = ACTIONS(5869), + [anon_sym_BSLASHacfp] = ACTIONS(5869), + [anon_sym_BSLASHAcfp] = ACTIONS(5869), + [anon_sym_BSLASHac] = ACTIONS(5869), + [anon_sym_BSLASHAc] = ACTIONS(5869), + [anon_sym_BSLASHacp] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5872), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5872), + [anon_sym_BSLASHcolor] = ACTIONS(5875), + [anon_sym_BSLASHcolorbox] = ACTIONS(5875), + [anon_sym_BSLASHtextcolor] = ACTIONS(5875), + [anon_sym_BSLASHpagecolor] = ACTIONS(5875), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5878), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5881), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5884), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5887), + }, + [325] = { + [sym__simple_content] = STATE(325), + [sym_subsubsection] = STATE(325), + [sym_paragraph] = STATE(325), + [sym_subparagraph] = STATE(325), + [sym_enum_item] = STATE(325), + [sym_brace_group] = STATE(325), + [sym_mixed_group] = STATE(325), + [sym_text] = STATE(325), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(325), + [sym_inline_formula] = STATE(325), + [sym_begin] = STATE(94), + [sym_environment] = STATE(325), + [sym_caption] = STATE(325), + [sym_citation] = STATE(325), + [sym_package_include] = STATE(325), + [sym_class_include] = STATE(325), + [sym_latex_include] = STATE(325), + [sym_latex_input] = STATE(325), + [sym_biblatex_include] = STATE(325), + [sym_bibtex_include] = STATE(325), + [sym_graphics_include] = STATE(325), + [sym_svg_include] = STATE(325), + [sym_inkscape_include] = STATE(325), + [sym_verbatim_include] = STATE(325), + [sym_import] = STATE(325), + [sym_label_definition] = STATE(325), + [sym_label_reference] = STATE(325), + [sym_equation_label_reference] = STATE(325), + [sym_label_reference_range] = STATE(325), + [sym_label_number] = STATE(325), + [sym_command_definition] = STATE(325), + [sym_math_operator] = STATE(325), + [sym_glossary_entry_definition] = STATE(325), + [sym_glossary_entry_reference] = STATE(325), + [sym_acronym_definition] = STATE(325), + [sym_acronym_reference] = STATE(325), + [sym_theorem_definition] = STATE(325), + [sym_color_reference] = STATE(325), + [sym_color_definition] = STATE(325), + [sym_color_set_definition] = STATE(325), + [sym_pgf_library_import] = STATE(325), + [sym_tikz_library_import] = STATE(325), + [sym_generic_command] = STATE(325), + [aux_sym_subsection_repeat1] = STATE(325), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(5890), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(2140), + [aux_sym_subsection_token1] = ACTIONS(2140), + [aux_sym_subsubsection_token1] = ACTIONS(5893), + [aux_sym_paragraph_token1] = ACTIONS(5896), + [aux_sym_subparagraph_token1] = ACTIONS(5899), + [anon_sym_BSLASHitem] = ACTIONS(5902), + [anon_sym_LBRACK] = ACTIONS(5905), + [anon_sym_RBRACK] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(5908), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(5905), + [anon_sym_COMMA] = ACTIONS(5911), + [anon_sym_EQ] = ACTIONS(5911), + [sym_word] = ACTIONS(5911), + [sym_param] = ACTIONS(5914), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5917), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5917), + [anon_sym_DOLLAR] = ACTIONS(5920), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5923), + [anon_sym_BSLASHbegin] = ACTIONS(2175), + [anon_sym_BSLASHcaption] = ACTIONS(5926), + [anon_sym_BSLASHcite] = ACTIONS(5929), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5932), + [anon_sym_BSLASHCite] = ACTIONS(5929), + [anon_sym_BSLASHnocite] = ACTIONS(5929), + [anon_sym_BSLASHcitet] = ACTIONS(5929), + [anon_sym_BSLASHcitep] = ACTIONS(5929), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5932), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5932), + [anon_sym_BSLASHciteauthor] = ACTIONS(5929), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5932), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5929), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5932), + [anon_sym_BSLASHcitetitle] = ACTIONS(5929), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5932), + [anon_sym_BSLASHciteyear] = ACTIONS(5929), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5932), + [anon_sym_BSLASHcitedate] = ACTIONS(5929), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5932), + [anon_sym_BSLASHciteurl] = ACTIONS(5929), + [anon_sym_BSLASHfullcite] = ACTIONS(5929), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5929), + [anon_sym_BSLASHcitealt] = ACTIONS(5929), + [anon_sym_BSLASHcitealp] = ACTIONS(5929), + [anon_sym_BSLASHcitetext] = ACTIONS(5929), + [anon_sym_BSLASHparencite] = ACTIONS(5929), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5932), + [anon_sym_BSLASHParencite] = ACTIONS(5929), + [anon_sym_BSLASHfootcite] = ACTIONS(5929), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5929), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5929), + [anon_sym_BSLASHtextcite] = ACTIONS(5929), + [anon_sym_BSLASHTextcite] = ACTIONS(5929), + [anon_sym_BSLASHsmartcite] = ACTIONS(5929), + [anon_sym_BSLASHSmartcite] = ACTIONS(5929), + [anon_sym_BSLASHsupercite] = ACTIONS(5929), + [anon_sym_BSLASHautocite] = ACTIONS(5929), + [anon_sym_BSLASHAutocite] = ACTIONS(5929), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5932), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5932), + [anon_sym_BSLASHvolcite] = ACTIONS(5929), + [anon_sym_BSLASHVolcite] = ACTIONS(5929), + [anon_sym_BSLASHpvolcite] = ACTIONS(5929), + [anon_sym_BSLASHPvolcite] = ACTIONS(5929), + [anon_sym_BSLASHfvolcite] = ACTIONS(5929), + [anon_sym_BSLASHftvolcite] = ACTIONS(5929), + [anon_sym_BSLASHsvolcite] = ACTIONS(5929), + [anon_sym_BSLASHSvolcite] = ACTIONS(5929), + [anon_sym_BSLASHtvolcite] = ACTIONS(5929), + [anon_sym_BSLASHTvolcite] = ACTIONS(5929), + [anon_sym_BSLASHavolcite] = ACTIONS(5929), + [anon_sym_BSLASHAvolcite] = ACTIONS(5929), + [anon_sym_BSLASHnotecite] = ACTIONS(5929), + [anon_sym_BSLASHpnotecite] = ACTIONS(5929), + [anon_sym_BSLASHPnotecite] = ACTIONS(5929), + [anon_sym_BSLASHfnotecite] = ACTIONS(5929), + [anon_sym_BSLASHusepackage] = ACTIONS(5935), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5935), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5938), + [anon_sym_BSLASHinclude] = ACTIONS(5941), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5941), + [anon_sym_BSLASHinput] = ACTIONS(5944), + [anon_sym_BSLASHsubfile] = ACTIONS(5944), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5947), + [anon_sym_BSLASHbibliography] = ACTIONS(5950), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5953), + [anon_sym_BSLASHincludesvg] = ACTIONS(5956), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5959), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5962), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5962), + [anon_sym_BSLASHimport] = ACTIONS(5965), + [anon_sym_BSLASHsubimport] = ACTIONS(5965), + [anon_sym_BSLASHinputfrom] = ACTIONS(5965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5965), + [anon_sym_BSLASHincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5965), + [anon_sym_BSLASHlabel] = ACTIONS(5968), + [anon_sym_BSLASHref] = ACTIONS(5971), + [anon_sym_BSLASHvref] = ACTIONS(5971), + [anon_sym_BSLASHVref] = ACTIONS(5971), + [anon_sym_BSLASHautoref] = ACTIONS(5971), + [anon_sym_BSLASHpageref] = ACTIONS(5971), + [anon_sym_BSLASHcref] = ACTIONS(5971), + [anon_sym_BSLASHCref] = ACTIONS(5971), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5974), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5974), + [anon_sym_BSLASHnamecref] = ACTIONS(5971), + [anon_sym_BSLASHnameCref] = ACTIONS(5971), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5971), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5971), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5971), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5971), + [anon_sym_BSLASHlabelcref] = ACTIONS(5971), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5971), + [anon_sym_BSLASHeqref] = ACTIONS(5977), + [anon_sym_BSLASHcrefrange] = ACTIONS(5980), + [anon_sym_BSLASHCrefrange] = ACTIONS(5980), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5983), + [anon_sym_BSLASHnewlabel] = ACTIONS(5986), + [anon_sym_BSLASHnewcommand] = ACTIONS(5989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5992), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5998), + [anon_sym_BSLASHgls] = ACTIONS(6001), + [anon_sym_BSLASHGls] = ACTIONS(6001), + [anon_sym_BSLASHGLS] = ACTIONS(6001), + [anon_sym_BSLASHglspl] = ACTIONS(6001), + [anon_sym_BSLASHGlspl] = ACTIONS(6001), + [anon_sym_BSLASHGLSpl] = ACTIONS(6001), + [anon_sym_BSLASHglsdisp] = ACTIONS(6001), + [anon_sym_BSLASHglslink] = ACTIONS(6001), + [anon_sym_BSLASHglstext] = ACTIONS(6001), + [anon_sym_BSLASHGlstext] = ACTIONS(6001), + [anon_sym_BSLASHGLStext] = ACTIONS(6001), + [anon_sym_BSLASHglsfirst] = ACTIONS(6001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6001), + [anon_sym_BSLASHglsplural] = ACTIONS(6001), + [anon_sym_BSLASHGlsplural] = ACTIONS(6001), + [anon_sym_BSLASHGLSplural] = ACTIONS(6001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6001), + [anon_sym_BSLASHglsname] = ACTIONS(6001), + [anon_sym_BSLASHGlsname] = ACTIONS(6001), + [anon_sym_BSLASHGLSname] = ACTIONS(6001), + [anon_sym_BSLASHglssymbol] = ACTIONS(6001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6001), + [anon_sym_BSLASHglsdesc] = ACTIONS(6001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6001), + [anon_sym_BSLASHglsuseri] = ACTIONS(6001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6001), + [anon_sym_BSLASHglsuserii] = ACTIONS(6001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6001), + [anon_sym_BSLASHglsuserv] = ACTIONS(6001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6001), + [anon_sym_BSLASHglsuservi] = ACTIONS(6001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6001), + [anon_sym_BSLASHnewacronym] = ACTIONS(6004), + [anon_sym_BSLASHacrshort] = ACTIONS(6007), + [anon_sym_BSLASHAcrshort] = ACTIONS(6007), + [anon_sym_BSLASHACRshort] = ACTIONS(6007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6007), + [anon_sym_BSLASHacrlong] = ACTIONS(6007), + [anon_sym_BSLASHAcrlong] = ACTIONS(6007), + [anon_sym_BSLASHACRlong] = ACTIONS(6007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6007), + [anon_sym_BSLASHacrfull] = ACTIONS(6007), + [anon_sym_BSLASHAcrfull] = ACTIONS(6007), + [anon_sym_BSLASHACRfull] = ACTIONS(6007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6007), + [anon_sym_BSLASHacs] = ACTIONS(6007), + [anon_sym_BSLASHAcs] = ACTIONS(6007), + [anon_sym_BSLASHacsp] = ACTIONS(6007), + [anon_sym_BSLASHAcsp] = ACTIONS(6007), + [anon_sym_BSLASHacl] = ACTIONS(6007), + [anon_sym_BSLASHAcl] = ACTIONS(6007), + [anon_sym_BSLASHaclp] = ACTIONS(6007), + [anon_sym_BSLASHAclp] = ACTIONS(6007), + [anon_sym_BSLASHacf] = ACTIONS(6007), + [anon_sym_BSLASHAcf] = ACTIONS(6007), + [anon_sym_BSLASHacfp] = ACTIONS(6007), + [anon_sym_BSLASHAcfp] = ACTIONS(6007), + [anon_sym_BSLASHac] = ACTIONS(6007), + [anon_sym_BSLASHAc] = ACTIONS(6007), + [anon_sym_BSLASHacp] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6010), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6010), + [anon_sym_BSLASHcolor] = ACTIONS(6013), + [anon_sym_BSLASHcolorbox] = ACTIONS(6013), + [anon_sym_BSLASHtextcolor] = ACTIONS(6013), + [anon_sym_BSLASHpagecolor] = ACTIONS(6013), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6016), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6019), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6022), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6025), + }, + [326] = { + [sym__simple_content] = STATE(341), + [sym_paragraph] = STATE(341), + [sym_subparagraph] = STATE(341), + [sym_enum_item] = STATE(341), + [sym_brace_group] = STATE(341), + [sym_mixed_group] = STATE(341), + [sym_text] = STATE(341), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(341), + [sym_inline_formula] = STATE(341), + [sym_begin] = STATE(86), + [sym_environment] = STATE(341), + [sym_caption] = STATE(341), + [sym_citation] = STATE(341), + [sym_package_include] = STATE(341), + [sym_class_include] = STATE(341), + [sym_latex_include] = STATE(341), + [sym_latex_input] = STATE(341), + [sym_biblatex_include] = STATE(341), + [sym_bibtex_include] = STATE(341), + [sym_graphics_include] = STATE(341), + [sym_svg_include] = STATE(341), + [sym_inkscape_include] = STATE(341), + [sym_verbatim_include] = STATE(341), + [sym_import] = STATE(341), + [sym_label_definition] = STATE(341), + [sym_label_reference] = STATE(341), + [sym_equation_label_reference] = STATE(341), + [sym_label_reference_range] = STATE(341), + [sym_label_number] = STATE(341), + [sym_command_definition] = STATE(341), + [sym_math_operator] = STATE(341), + [sym_glossary_entry_definition] = STATE(341), + [sym_glossary_entry_reference] = STATE(341), + [sym_acronym_definition] = STATE(341), + [sym_acronym_reference] = STATE(341), + [sym_theorem_definition] = STATE(341), + [sym_color_reference] = STATE(341), + [sym_color_definition] = STATE(341), + [sym_color_set_definition] = STATE(341), + [sym_pgf_library_import] = STATE(341), + [sym_tikz_library_import] = STATE(341), + [sym_generic_command] = STATE(341), + [aux_sym_subsubsection_repeat1] = STATE(341), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(3020), + [aux_sym_section_token1] = ACTIONS(3020), + [aux_sym_subsection_token1] = ACTIONS(3020), + [aux_sym_subsubsection_token1] = ACTIONS(3020), + [aux_sym_paragraph_token1] = ACTIONS(2308), + [aux_sym_subparagraph_token1] = ACTIONS(2310), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(6028), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [327] = { + [sym__simple_content] = STATE(338), + [sym_subsubsection] = STATE(338), + [sym_paragraph] = STATE(338), + [sym_subparagraph] = STATE(338), + [sym_enum_item] = STATE(338), + [sym_brace_group] = STATE(338), + [sym_mixed_group] = STATE(338), + [sym_text] = STATE(338), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(338), + [sym_inline_formula] = STATE(338), + [sym_begin] = STATE(94), + [sym_environment] = STATE(338), + [sym_caption] = STATE(338), + [sym_citation] = STATE(338), + [sym_package_include] = STATE(338), + [sym_class_include] = STATE(338), + [sym_latex_include] = STATE(338), + [sym_latex_input] = STATE(338), + [sym_biblatex_include] = STATE(338), + [sym_bibtex_include] = STATE(338), + [sym_graphics_include] = STATE(338), + [sym_svg_include] = STATE(338), + [sym_inkscape_include] = STATE(338), + [sym_verbatim_include] = STATE(338), + [sym_import] = STATE(338), + [sym_label_definition] = STATE(338), + [sym_label_reference] = STATE(338), + [sym_equation_label_reference] = STATE(338), + [sym_label_reference_range] = STATE(338), + [sym_label_number] = STATE(338), + [sym_command_definition] = STATE(338), + [sym_math_operator] = STATE(338), + [sym_glossary_entry_definition] = STATE(338), + [sym_glossary_entry_reference] = STATE(338), + [sym_acronym_definition] = STATE(338), + [sym_acronym_reference] = STATE(338), + [sym_theorem_definition] = STATE(338), + [sym_color_reference] = STATE(338), + [sym_color_definition] = STATE(338), + [sym_color_set_definition] = STATE(338), + [sym_pgf_library_import] = STATE(338), + [sym_tikz_library_import] = STATE(338), + [sym_generic_command] = STATE(338), + [aux_sym_subsection_repeat1] = STATE(338), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(2286), + [aux_sym_subsection_token1] = ACTIONS(2286), + [aux_sym_subsubsection_token1] = ACTIONS(4064), + [aux_sym_paragraph_token1] = ACTIONS(4066), + [aux_sym_subparagraph_token1] = ACTIONS(4068), + [anon_sym_BSLASHitem] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(6030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [328] = { + [sym__simple_content] = STATE(319), + [sym_brace_group] = STATE(319), + [sym_mixed_group] = STATE(319), + [sym_text] = STATE(319), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(319), + [sym_inline_formula] = STATE(319), + [sym_begin] = STATE(52), + [sym_environment] = STATE(319), + [sym_caption] = STATE(319), + [sym_citation] = STATE(319), + [sym_package_include] = STATE(319), + [sym_class_include] = STATE(319), + [sym_latex_include] = STATE(319), + [sym_latex_input] = STATE(319), + [sym_biblatex_include] = STATE(319), + [sym_bibtex_include] = STATE(319), + [sym_graphics_include] = STATE(319), + [sym_svg_include] = STATE(319), + [sym_inkscape_include] = STATE(319), + [sym_verbatim_include] = STATE(319), + [sym_import] = STATE(319), + [sym_label_definition] = STATE(319), + [sym_label_reference] = STATE(319), + [sym_equation_label_reference] = STATE(319), + [sym_label_reference_range] = STATE(319), + [sym_label_number] = STATE(319), + [sym_command_definition] = STATE(319), + [sym_math_operator] = STATE(319), + [sym_glossary_entry_definition] = STATE(319), + [sym_glossary_entry_reference] = STATE(319), + [sym_acronym_definition] = STATE(319), + [sym_acronym_reference] = STATE(319), + [sym_theorem_definition] = STATE(319), + [sym_color_reference] = STATE(319), + [sym_color_definition] = STATE(319), + [sym_color_set_definition] = STATE(319), + [sym_pgf_library_import] = STATE(319), + [sym_tikz_library_import] = STATE(319), + [sym_generic_command] = STATE(319), + [aux_sym_enum_item_repeat1] = STATE(319), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(6032), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(6034), + [aux_sym_chapter_token1] = ACTIONS(6034), + [aux_sym_section_token1] = ACTIONS(6034), + [aux_sym_subsection_token1] = ACTIONS(6034), + [aux_sym_subsubsection_token1] = ACTIONS(6034), + [aux_sym_paragraph_token1] = ACTIONS(6034), + [aux_sym_subparagraph_token1] = ACTIONS(6034), + [anon_sym_BSLASHitem] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(6036), + [anon_sym_RBRACK] = ACTIONS(6032), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(6032), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(6038), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [329] = { + [sym__simple_content] = STATE(329), + [sym_brace_group] = STATE(329), + [sym_mixed_group] = STATE(329), + [sym_text] = STATE(329), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(329), + [sym_inline_formula] = STATE(329), + [sym_begin] = STATE(52), + [sym_environment] = STATE(329), + [sym_caption] = STATE(329), + [sym_citation] = STATE(329), + [sym_package_include] = STATE(329), + [sym_class_include] = STATE(329), + [sym_latex_include] = STATE(329), + [sym_latex_input] = STATE(329), + [sym_biblatex_include] = STATE(329), + [sym_bibtex_include] = STATE(329), + [sym_graphics_include] = STATE(329), + [sym_svg_include] = STATE(329), + [sym_inkscape_include] = STATE(329), + [sym_verbatim_include] = STATE(329), + [sym_import] = STATE(329), + [sym_label_definition] = STATE(329), + [sym_label_reference] = STATE(329), + [sym_equation_label_reference] = STATE(329), + [sym_label_reference_range] = STATE(329), + [sym_label_number] = STATE(329), + [sym_command_definition] = STATE(329), + [sym_math_operator] = STATE(329), + [sym_glossary_entry_definition] = STATE(329), + [sym_glossary_entry_reference] = STATE(329), + [sym_acronym_definition] = STATE(329), + [sym_acronym_reference] = STATE(329), + [sym_theorem_definition] = STATE(329), + [sym_color_reference] = STATE(329), + [sym_color_definition] = STATE(329), + [sym_color_set_definition] = STATE(329), + [sym_pgf_library_import] = STATE(329), + [sym_tikz_library_import] = STATE(329), + [sym_generic_command] = STATE(329), + [aux_sym_enum_item_repeat1] = STATE(329), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(6040), + [sym_generic_command_name] = ACTIONS(6042), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(6045), + [aux_sym_chapter_token1] = ACTIONS(6045), + [aux_sym_section_token1] = ACTIONS(6045), + [aux_sym_subsection_token1] = ACTIONS(6045), + [aux_sym_subsubsection_token1] = ACTIONS(6045), + [aux_sym_paragraph_token1] = ACTIONS(6045), + [aux_sym_subparagraph_token1] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(6047), + [anon_sym_RBRACK] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(6050), + [anon_sym_RBRACE] = ACTIONS(6040), + [anon_sym_LPAREN] = ACTIONS(6047), + [anon_sym_RPAREN] = ACTIONS(6040), + [anon_sym_COMMA] = ACTIONS(6053), + [anon_sym_EQ] = ACTIONS(6053), + [sym_word] = ACTIONS(6053), + [sym_param] = ACTIONS(6056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6062), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6065), + [anon_sym_BSLASHbegin] = ACTIONS(6068), + [anon_sym_BSLASHcaption] = ACTIONS(6071), + [anon_sym_BSLASHcite] = ACTIONS(6074), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6077), + [anon_sym_BSLASHCite] = ACTIONS(6074), + [anon_sym_BSLASHnocite] = ACTIONS(6074), + [anon_sym_BSLASHcitet] = ACTIONS(6074), + [anon_sym_BSLASHcitep] = ACTIONS(6074), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6077), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6077), + [anon_sym_BSLASHciteauthor] = ACTIONS(6074), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6077), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6074), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6077), + [anon_sym_BSLASHcitetitle] = ACTIONS(6074), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6077), + [anon_sym_BSLASHciteyear] = ACTIONS(6074), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6077), + [anon_sym_BSLASHcitedate] = ACTIONS(6074), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6077), + [anon_sym_BSLASHciteurl] = ACTIONS(6074), + [anon_sym_BSLASHfullcite] = ACTIONS(6074), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6074), + [anon_sym_BSLASHcitealt] = ACTIONS(6074), + [anon_sym_BSLASHcitealp] = ACTIONS(6074), + [anon_sym_BSLASHcitetext] = ACTIONS(6074), + [anon_sym_BSLASHparencite] = ACTIONS(6074), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6077), + [anon_sym_BSLASHParencite] = ACTIONS(6074), + [anon_sym_BSLASHfootcite] = ACTIONS(6074), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6074), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6074), + [anon_sym_BSLASHtextcite] = ACTIONS(6074), + [anon_sym_BSLASHTextcite] = ACTIONS(6074), + [anon_sym_BSLASHsmartcite] = ACTIONS(6074), + [anon_sym_BSLASHSmartcite] = ACTIONS(6074), + [anon_sym_BSLASHsupercite] = ACTIONS(6074), + [anon_sym_BSLASHautocite] = ACTIONS(6074), + [anon_sym_BSLASHAutocite] = ACTIONS(6074), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6077), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6077), + [anon_sym_BSLASHvolcite] = ACTIONS(6074), + [anon_sym_BSLASHVolcite] = ACTIONS(6074), + [anon_sym_BSLASHpvolcite] = ACTIONS(6074), + [anon_sym_BSLASHPvolcite] = ACTIONS(6074), + [anon_sym_BSLASHfvolcite] = ACTIONS(6074), + [anon_sym_BSLASHftvolcite] = ACTIONS(6074), + [anon_sym_BSLASHsvolcite] = ACTIONS(6074), + [anon_sym_BSLASHSvolcite] = ACTIONS(6074), + [anon_sym_BSLASHtvolcite] = ACTIONS(6074), + [anon_sym_BSLASHTvolcite] = ACTIONS(6074), + [anon_sym_BSLASHavolcite] = ACTIONS(6074), + [anon_sym_BSLASHAvolcite] = ACTIONS(6074), + [anon_sym_BSLASHnotecite] = ACTIONS(6074), + [anon_sym_BSLASHpnotecite] = ACTIONS(6074), + [anon_sym_BSLASHPnotecite] = ACTIONS(6074), + [anon_sym_BSLASHfnotecite] = ACTIONS(6074), + [anon_sym_BSLASHusepackage] = ACTIONS(6080), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6080), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6083), + [anon_sym_BSLASHinclude] = ACTIONS(6086), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6086), + [anon_sym_BSLASHinput] = ACTIONS(6089), + [anon_sym_BSLASHsubfile] = ACTIONS(6089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6092), + [anon_sym_BSLASHbibliography] = ACTIONS(6095), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6098), + [anon_sym_BSLASHincludesvg] = ACTIONS(6101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6107), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6107), + [anon_sym_BSLASHimport] = ACTIONS(6110), + [anon_sym_BSLASHsubimport] = ACTIONS(6110), + [anon_sym_BSLASHinputfrom] = ACTIONS(6110), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6110), + [anon_sym_BSLASHincludefrom] = ACTIONS(6110), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6110), + [anon_sym_BSLASHlabel] = ACTIONS(6113), + [anon_sym_BSLASHref] = ACTIONS(6116), + [anon_sym_BSLASHvref] = ACTIONS(6116), + [anon_sym_BSLASHVref] = ACTIONS(6116), + [anon_sym_BSLASHautoref] = ACTIONS(6116), + [anon_sym_BSLASHpageref] = ACTIONS(6116), + [anon_sym_BSLASHcref] = ACTIONS(6116), + [anon_sym_BSLASHCref] = ACTIONS(6116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6119), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6119), + [anon_sym_BSLASHnamecref] = ACTIONS(6116), + [anon_sym_BSLASHnameCref] = ACTIONS(6116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6116), + [anon_sym_BSLASHlabelcref] = ACTIONS(6116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6116), + [anon_sym_BSLASHeqref] = ACTIONS(6122), + [anon_sym_BSLASHcrefrange] = ACTIONS(6125), + [anon_sym_BSLASHCrefrange] = ACTIONS(6125), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6128), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6128), + [anon_sym_BSLASHnewlabel] = ACTIONS(6131), + [anon_sym_BSLASHnewcommand] = ACTIONS(6134), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6134), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6134), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6137), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6140), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6143), + [anon_sym_BSLASHgls] = ACTIONS(6146), + [anon_sym_BSLASHGls] = ACTIONS(6146), + [anon_sym_BSLASHGLS] = ACTIONS(6146), + [anon_sym_BSLASHglspl] = ACTIONS(6146), + [anon_sym_BSLASHGlspl] = ACTIONS(6146), + [anon_sym_BSLASHGLSpl] = ACTIONS(6146), + [anon_sym_BSLASHglsdisp] = ACTIONS(6146), + [anon_sym_BSLASHglslink] = ACTIONS(6146), + [anon_sym_BSLASHglstext] = ACTIONS(6146), + [anon_sym_BSLASHGlstext] = ACTIONS(6146), + [anon_sym_BSLASHGLStext] = ACTIONS(6146), + [anon_sym_BSLASHglsfirst] = ACTIONS(6146), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6146), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6146), + [anon_sym_BSLASHglsplural] = ACTIONS(6146), + [anon_sym_BSLASHGlsplural] = ACTIONS(6146), + [anon_sym_BSLASHGLSplural] = ACTIONS(6146), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6146), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6146), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6146), + [anon_sym_BSLASHglsname] = ACTIONS(6146), + [anon_sym_BSLASHGlsname] = ACTIONS(6146), + [anon_sym_BSLASHGLSname] = ACTIONS(6146), + [anon_sym_BSLASHglssymbol] = ACTIONS(6146), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6146), + [anon_sym_BSLASHglsdesc] = ACTIONS(6146), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6146), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6146), + [anon_sym_BSLASHglsuseri] = ACTIONS(6146), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6146), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6146), + [anon_sym_BSLASHglsuserii] = ACTIONS(6146), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6146), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6146), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6146), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6146), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6146), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6146), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6146), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6146), + [anon_sym_BSLASHglsuserv] = ACTIONS(6146), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6146), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6146), + [anon_sym_BSLASHglsuservi] = ACTIONS(6146), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6146), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6146), + [anon_sym_BSLASHnewacronym] = ACTIONS(6149), + [anon_sym_BSLASHacrshort] = ACTIONS(6152), + [anon_sym_BSLASHAcrshort] = ACTIONS(6152), + [anon_sym_BSLASHACRshort] = ACTIONS(6152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6152), + [anon_sym_BSLASHacrlong] = ACTIONS(6152), + [anon_sym_BSLASHAcrlong] = ACTIONS(6152), + [anon_sym_BSLASHACRlong] = ACTIONS(6152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6152), + [anon_sym_BSLASHacrfull] = ACTIONS(6152), + [anon_sym_BSLASHAcrfull] = ACTIONS(6152), + [anon_sym_BSLASHACRfull] = ACTIONS(6152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6152), + [anon_sym_BSLASHacs] = ACTIONS(6152), + [anon_sym_BSLASHAcs] = ACTIONS(6152), + [anon_sym_BSLASHacsp] = ACTIONS(6152), + [anon_sym_BSLASHAcsp] = ACTIONS(6152), + [anon_sym_BSLASHacl] = ACTIONS(6152), + [anon_sym_BSLASHAcl] = ACTIONS(6152), + [anon_sym_BSLASHaclp] = ACTIONS(6152), + [anon_sym_BSLASHAclp] = ACTIONS(6152), + [anon_sym_BSLASHacf] = ACTIONS(6152), + [anon_sym_BSLASHAcf] = ACTIONS(6152), + [anon_sym_BSLASHacfp] = ACTIONS(6152), + [anon_sym_BSLASHAcfp] = ACTIONS(6152), + [anon_sym_BSLASHac] = ACTIONS(6152), + [anon_sym_BSLASHAc] = ACTIONS(6152), + [anon_sym_BSLASHacp] = ACTIONS(6152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6155), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6155), + [anon_sym_BSLASHcolor] = ACTIONS(6158), + [anon_sym_BSLASHcolorbox] = ACTIONS(6158), + [anon_sym_BSLASHtextcolor] = ACTIONS(6158), + [anon_sym_BSLASHpagecolor] = ACTIONS(6158), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6161), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6164), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6167), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6170), + }, + [330] = { + [sym__simple_content] = STATE(321), + [sym_paragraph] = STATE(321), + [sym_subparagraph] = STATE(321), + [sym_enum_item] = STATE(321), + [sym_brace_group] = STATE(321), + [sym_mixed_group] = STATE(321), + [sym_text] = STATE(321), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(321), + [sym_inline_formula] = STATE(321), + [sym_begin] = STATE(59), + [sym_environment] = STATE(321), + [sym_caption] = STATE(321), + [sym_citation] = STATE(321), + [sym_package_include] = STATE(321), + [sym_class_include] = STATE(321), + [sym_latex_include] = STATE(321), + [sym_latex_input] = STATE(321), + [sym_biblatex_include] = STATE(321), + [sym_bibtex_include] = STATE(321), + [sym_graphics_include] = STATE(321), + [sym_svg_include] = STATE(321), + [sym_inkscape_include] = STATE(321), + [sym_verbatim_include] = STATE(321), + [sym_import] = STATE(321), + [sym_label_definition] = STATE(321), + [sym_label_reference] = STATE(321), + [sym_equation_label_reference] = STATE(321), + [sym_label_reference_range] = STATE(321), + [sym_label_number] = STATE(321), + [sym_command_definition] = STATE(321), + [sym_math_operator] = STATE(321), + [sym_glossary_entry_definition] = STATE(321), + [sym_glossary_entry_reference] = STATE(321), + [sym_acronym_definition] = STATE(321), + [sym_acronym_reference] = STATE(321), + [sym_theorem_definition] = STATE(321), + [sym_color_reference] = STATE(321), + [sym_color_definition] = STATE(321), + [sym_color_set_definition] = STATE(321), + [sym_pgf_library_import] = STATE(321), + [sym_tikz_library_import] = STATE(321), + [sym_generic_command] = STATE(321), + [aux_sym_subsubsection_repeat1] = STATE(321), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3614), + [aux_sym_chapter_token1] = ACTIONS(3614), + [aux_sym_section_token1] = ACTIONS(3614), + [aux_sym_subsection_token1] = ACTIONS(3614), + [aux_sym_subsubsection_token1] = ACTIONS(3614), + [aux_sym_paragraph_token1] = ACTIONS(296), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(6173), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(3612), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [331] = { + [sym__simple_content] = STATE(329), + [sym_brace_group] = STATE(329), + [sym_mixed_group] = STATE(329), + [sym_text] = STATE(329), + [sym__text_fragment] = STATE(475), + [sym_displayed_equation] = STATE(329), + [sym_inline_formula] = STATE(329), + [sym_begin] = STATE(52), + [sym_environment] = STATE(329), + [sym_caption] = STATE(329), + [sym_citation] = STATE(329), + [sym_package_include] = STATE(329), + [sym_class_include] = STATE(329), + [sym_latex_include] = STATE(329), + [sym_latex_input] = STATE(329), + [sym_biblatex_include] = STATE(329), + [sym_bibtex_include] = STATE(329), + [sym_graphics_include] = STATE(329), + [sym_svg_include] = STATE(329), + [sym_inkscape_include] = STATE(329), + [sym_verbatim_include] = STATE(329), + [sym_import] = STATE(329), + [sym_label_definition] = STATE(329), + [sym_label_reference] = STATE(329), + [sym_equation_label_reference] = STATE(329), + [sym_label_reference_range] = STATE(329), + [sym_label_number] = STATE(329), + [sym_command_definition] = STATE(329), + [sym_math_operator] = STATE(329), + [sym_glossary_entry_definition] = STATE(329), + [sym_glossary_entry_reference] = STATE(329), + [sym_acronym_definition] = STATE(329), + [sym_acronym_reference] = STATE(329), + [sym_theorem_definition] = STATE(329), + [sym_color_reference] = STATE(329), + [sym_color_definition] = STATE(329), + [sym_color_set_definition] = STATE(329), + [sym_pgf_library_import] = STATE(329), + [sym_tikz_library_import] = STATE(329), + [sym_generic_command] = STATE(329), + [aux_sym_enum_item_repeat1] = STATE(329), + [aux_sym_text_repeat1] = STATE(475), + [ts_builtin_sym_end] = ACTIONS(6175), + [sym_generic_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(6177), + [aux_sym_chapter_token1] = ACTIONS(6177), + [aux_sym_section_token1] = ACTIONS(6177), + [aux_sym_subsection_token1] = ACTIONS(6177), + [aux_sym_subsubsection_token1] = ACTIONS(6177), + [aux_sym_paragraph_token1] = ACTIONS(6177), + [aux_sym_subparagraph_token1] = ACTIONS(6177), + [anon_sym_BSLASHitem] = ACTIONS(6177), + [anon_sym_LBRACK] = ACTIONS(25), + [anon_sym_RBRACK] = ACTIONS(6175), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(25), + [anon_sym_RPAREN] = ACTIONS(6175), + [anon_sym_COMMA] = ACTIONS(29), + [anon_sym_EQ] = ACTIONS(29), + [sym_word] = ACTIONS(29), + [sym_param] = ACTIONS(5602), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(33), + [anon_sym_BSLASH_LBRACK] = ACTIONS(33), + [anon_sym_DOLLAR] = ACTIONS(35), + [anon_sym_BSLASH_LPAREN] = ACTIONS(37), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(41), + [anon_sym_BSLASHcite] = ACTIONS(43), + [anon_sym_BSLASHcite_STAR] = ACTIONS(45), + [anon_sym_BSLASHCite] = ACTIONS(43), + [anon_sym_BSLASHnocite] = ACTIONS(43), + [anon_sym_BSLASHcitet] = ACTIONS(43), + [anon_sym_BSLASHcitep] = ACTIONS(43), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteauthor] = ACTIONS(43), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHCiteauthor] = ACTIONS(43), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitetitle] = ACTIONS(43), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteyear] = ACTIONS(43), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(45), + [anon_sym_BSLASHcitedate] = ACTIONS(43), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(45), + [anon_sym_BSLASHciteurl] = ACTIONS(43), + [anon_sym_BSLASHfullcite] = ACTIONS(43), + [anon_sym_BSLASHciteyearpar] = ACTIONS(43), + [anon_sym_BSLASHcitealt] = ACTIONS(43), + [anon_sym_BSLASHcitealp] = ACTIONS(43), + [anon_sym_BSLASHcitetext] = ACTIONS(43), + [anon_sym_BSLASHparencite] = ACTIONS(43), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(45), + [anon_sym_BSLASHParencite] = ACTIONS(43), + [anon_sym_BSLASHfootcite] = ACTIONS(43), + [anon_sym_BSLASHfootfullcite] = ACTIONS(43), + [anon_sym_BSLASHfootcitetext] = ACTIONS(43), + [anon_sym_BSLASHtextcite] = ACTIONS(43), + [anon_sym_BSLASHTextcite] = ACTIONS(43), + [anon_sym_BSLASHsmartcite] = ACTIONS(43), + [anon_sym_BSLASHSmartcite] = ACTIONS(43), + [anon_sym_BSLASHsupercite] = ACTIONS(43), + [anon_sym_BSLASHautocite] = ACTIONS(43), + [anon_sym_BSLASHAutocite] = ACTIONS(43), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(45), + [anon_sym_BSLASHvolcite] = ACTIONS(43), + [anon_sym_BSLASHVolcite] = ACTIONS(43), + [anon_sym_BSLASHpvolcite] = ACTIONS(43), + [anon_sym_BSLASHPvolcite] = ACTIONS(43), + [anon_sym_BSLASHfvolcite] = ACTIONS(43), + [anon_sym_BSLASHftvolcite] = ACTIONS(43), + [anon_sym_BSLASHsvolcite] = ACTIONS(43), + [anon_sym_BSLASHSvolcite] = ACTIONS(43), + [anon_sym_BSLASHtvolcite] = ACTIONS(43), + [anon_sym_BSLASHTvolcite] = ACTIONS(43), + [anon_sym_BSLASHavolcite] = ACTIONS(43), + [anon_sym_BSLASHAvolcite] = ACTIONS(43), + [anon_sym_BSLASHnotecite] = ACTIONS(43), + [anon_sym_BSLASHpnotecite] = ACTIONS(43), + [anon_sym_BSLASHPnotecite] = ACTIONS(43), + [anon_sym_BSLASHfnotecite] = ACTIONS(43), + [anon_sym_BSLASHusepackage] = ACTIONS(47), + [anon_sym_BSLASHRequirePackage] = ACTIONS(47), + [anon_sym_BSLASHdocumentclass] = ACTIONS(49), + [anon_sym_BSLASHinclude] = ACTIONS(51), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(51), + [anon_sym_BSLASHinput] = ACTIONS(53), + [anon_sym_BSLASHsubfile] = ACTIONS(53), + [anon_sym_BSLASHaddbibresource] = ACTIONS(55), + [anon_sym_BSLASHbibliography] = ACTIONS(57), + [anon_sym_BSLASHincludegraphics] = ACTIONS(59), + [anon_sym_BSLASHincludesvg] = ACTIONS(61), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(63), + [anon_sym_BSLASHverbatiminput] = ACTIONS(65), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(65), + [anon_sym_BSLASHimport] = ACTIONS(67), + [anon_sym_BSLASHsubimport] = ACTIONS(67), + [anon_sym_BSLASHinputfrom] = ACTIONS(67), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(67), + [anon_sym_BSLASHincludefrom] = ACTIONS(67), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(67), + [anon_sym_BSLASHlabel] = ACTIONS(69), + [anon_sym_BSLASHref] = ACTIONS(71), + [anon_sym_BSLASHvref] = ACTIONS(71), + [anon_sym_BSLASHVref] = ACTIONS(71), + [anon_sym_BSLASHautoref] = ACTIONS(71), + [anon_sym_BSLASHpageref] = ACTIONS(71), + [anon_sym_BSLASHcref] = ACTIONS(71), + [anon_sym_BSLASHCref] = ACTIONS(71), + [anon_sym_BSLASHcref_STAR] = ACTIONS(73), + [anon_sym_BSLASHCref_STAR] = ACTIONS(73), + [anon_sym_BSLASHnamecref] = ACTIONS(71), + [anon_sym_BSLASHnameCref] = ACTIONS(71), + [anon_sym_BSLASHlcnamecref] = ACTIONS(71), + [anon_sym_BSLASHnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHnameCrefs] = ACTIONS(71), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(71), + [anon_sym_BSLASHlabelcref] = ACTIONS(71), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(71), + [anon_sym_BSLASHeqref] = ACTIONS(75), + [anon_sym_BSLASHcrefrange] = ACTIONS(77), + [anon_sym_BSLASHCrefrange] = ACTIONS(77), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(79), + [anon_sym_BSLASHnewlabel] = ACTIONS(81), + [anon_sym_BSLASHnewcommand] = ACTIONS(83), + [anon_sym_BSLASHrenewcommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(83), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(85), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(87), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(89), + [anon_sym_BSLASHgls] = ACTIONS(91), + [anon_sym_BSLASHGls] = ACTIONS(91), + [anon_sym_BSLASHGLS] = ACTIONS(91), + [anon_sym_BSLASHglspl] = ACTIONS(91), + [anon_sym_BSLASHGlspl] = ACTIONS(91), + [anon_sym_BSLASHGLSpl] = ACTIONS(91), + [anon_sym_BSLASHglsdisp] = ACTIONS(91), + [anon_sym_BSLASHglslink] = ACTIONS(91), + [anon_sym_BSLASHglstext] = ACTIONS(91), + [anon_sym_BSLASHGlstext] = ACTIONS(91), + [anon_sym_BSLASHGLStext] = ACTIONS(91), + [anon_sym_BSLASHglsfirst] = ACTIONS(91), + [anon_sym_BSLASHGlsfirst] = ACTIONS(91), + [anon_sym_BSLASHGLSfirst] = ACTIONS(91), + [anon_sym_BSLASHglsplural] = ACTIONS(91), + [anon_sym_BSLASHGlsplural] = ACTIONS(91), + [anon_sym_BSLASHGLSplural] = ACTIONS(91), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(91), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(91), + [anon_sym_BSLASHglsname] = ACTIONS(91), + [anon_sym_BSLASHGlsname] = ACTIONS(91), + [anon_sym_BSLASHGLSname] = ACTIONS(91), + [anon_sym_BSLASHglssymbol] = ACTIONS(91), + [anon_sym_BSLASHGlssymbol] = ACTIONS(91), + [anon_sym_BSLASHglsdesc] = ACTIONS(91), + [anon_sym_BSLASHGlsdesc] = ACTIONS(91), + [anon_sym_BSLASHGLSdesc] = ACTIONS(91), + [anon_sym_BSLASHglsuseri] = ACTIONS(91), + [anon_sym_BSLASHGlsuseri] = ACTIONS(91), + [anon_sym_BSLASHGLSuseri] = ACTIONS(91), + [anon_sym_BSLASHglsuserii] = ACTIONS(91), + [anon_sym_BSLASHGlsuserii] = ACTIONS(91), + [anon_sym_BSLASHGLSuserii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(91), + [anon_sym_BSLASHglsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(91), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(91), + [anon_sym_BSLASHglsuserv] = ACTIONS(91), + [anon_sym_BSLASHGlsuserv] = ACTIONS(91), + [anon_sym_BSLASHGLSuserv] = ACTIONS(91), + [anon_sym_BSLASHglsuservi] = ACTIONS(91), + [anon_sym_BSLASHGlsuservi] = ACTIONS(91), + [anon_sym_BSLASHGLSuservi] = ACTIONS(91), + [anon_sym_BSLASHnewacronym] = ACTIONS(93), + [anon_sym_BSLASHacrshort] = ACTIONS(95), + [anon_sym_BSLASHAcrshort] = ACTIONS(95), + [anon_sym_BSLASHACRshort] = ACTIONS(95), + [anon_sym_BSLASHacrshortpl] = ACTIONS(95), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(95), + [anon_sym_BSLASHACRshortpl] = ACTIONS(95), + [anon_sym_BSLASHacrlong] = ACTIONS(95), + [anon_sym_BSLASHAcrlong] = ACTIONS(95), + [anon_sym_BSLASHACRlong] = ACTIONS(95), + [anon_sym_BSLASHacrlongpl] = ACTIONS(95), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(95), + [anon_sym_BSLASHACRlongpl] = ACTIONS(95), + [anon_sym_BSLASHacrfull] = ACTIONS(95), + [anon_sym_BSLASHAcrfull] = ACTIONS(95), + [anon_sym_BSLASHACRfull] = ACTIONS(95), + [anon_sym_BSLASHacrfullpl] = ACTIONS(95), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(95), + [anon_sym_BSLASHACRfullpl] = ACTIONS(95), + [anon_sym_BSLASHacs] = ACTIONS(95), + [anon_sym_BSLASHAcs] = ACTIONS(95), + [anon_sym_BSLASHacsp] = ACTIONS(95), + [anon_sym_BSLASHAcsp] = ACTIONS(95), + [anon_sym_BSLASHacl] = ACTIONS(95), + [anon_sym_BSLASHAcl] = ACTIONS(95), + [anon_sym_BSLASHaclp] = ACTIONS(95), + [anon_sym_BSLASHAclp] = ACTIONS(95), + [anon_sym_BSLASHacf] = ACTIONS(95), + [anon_sym_BSLASHAcf] = ACTIONS(95), + [anon_sym_BSLASHacfp] = ACTIONS(95), + [anon_sym_BSLASHAcfp] = ACTIONS(95), + [anon_sym_BSLASHac] = ACTIONS(95), + [anon_sym_BSLASHAc] = ACTIONS(95), + [anon_sym_BSLASHacp] = ACTIONS(95), + [anon_sym_BSLASHglsentrylong] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(95), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryshort] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(95), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(95), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(95), + [anon_sym_BSLASHnewtheorem] = ACTIONS(97), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(97), + [anon_sym_BSLASHcolor] = ACTIONS(99), + [anon_sym_BSLASHcolorbox] = ACTIONS(99), + [anon_sym_BSLASHtextcolor] = ACTIONS(99), + [anon_sym_BSLASHpagecolor] = ACTIONS(99), + [anon_sym_BSLASHdefinecolor] = ACTIONS(101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(103), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(107), + }, + [332] = { + [sym__simple_content] = STATE(332), + [sym_paragraph] = STATE(332), + [sym_subparagraph] = STATE(332), + [sym_enum_item] = STATE(332), + [sym_brace_group] = STATE(332), + [sym_mixed_group] = STATE(332), + [sym_text] = STATE(332), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(332), + [sym_inline_formula] = STATE(332), + [sym_begin] = STATE(59), + [sym_environment] = STATE(332), + [sym_caption] = STATE(332), + [sym_citation] = STATE(332), + [sym_package_include] = STATE(332), + [sym_class_include] = STATE(332), + [sym_latex_include] = STATE(332), + [sym_latex_input] = STATE(332), + [sym_biblatex_include] = STATE(332), + [sym_bibtex_include] = STATE(332), + [sym_graphics_include] = STATE(332), + [sym_svg_include] = STATE(332), + [sym_inkscape_include] = STATE(332), + [sym_verbatim_include] = STATE(332), + [sym_import] = STATE(332), + [sym_label_definition] = STATE(332), + [sym_label_reference] = STATE(332), + [sym_equation_label_reference] = STATE(332), + [sym_label_reference_range] = STATE(332), + [sym_label_number] = STATE(332), + [sym_command_definition] = STATE(332), + [sym_math_operator] = STATE(332), + [sym_glossary_entry_definition] = STATE(332), + [sym_glossary_entry_reference] = STATE(332), + [sym_acronym_definition] = STATE(332), + [sym_acronym_reference] = STATE(332), + [sym_theorem_definition] = STATE(332), + [sym_color_reference] = STATE(332), + [sym_color_definition] = STATE(332), + [sym_color_set_definition] = STATE(332), + [sym_pgf_library_import] = STATE(332), + [sym_tikz_library_import] = STATE(332), + [sym_generic_command] = STATE(332), + [aux_sym_subsubsection_repeat1] = STATE(332), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(6179), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3325), + [aux_sym_chapter_token1] = ACTIONS(3325), + [aux_sym_section_token1] = ACTIONS(3325), + [aux_sym_subsection_token1] = ACTIONS(3325), + [aux_sym_subsubsection_token1] = ACTIONS(3325), + [aux_sym_paragraph_token1] = ACTIONS(6182), + [aux_sym_subparagraph_token1] = ACTIONS(6185), + [anon_sym_BSLASHitem] = ACTIONS(6188), + [anon_sym_LBRACK] = ACTIONS(6191), + [anon_sym_LBRACE] = ACTIONS(6194), + [anon_sym_LPAREN] = ACTIONS(6191), + [anon_sym_COMMA] = ACTIONS(6197), + [anon_sym_EQ] = ACTIONS(6197), + [sym_word] = ACTIONS(6197), + [sym_param] = ACTIONS(6200), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6203), + [anon_sym_BSLASH_RBRACK] = ACTIONS(3320), + [anon_sym_DOLLAR] = ACTIONS(6206), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6209), + [anon_sym_BSLASHbegin] = ACTIONS(3357), + [anon_sym_BSLASHcaption] = ACTIONS(6212), + [anon_sym_BSLASHcite] = ACTIONS(6215), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6218), + [anon_sym_BSLASHCite] = ACTIONS(6215), + [anon_sym_BSLASHnocite] = ACTIONS(6215), + [anon_sym_BSLASHcitet] = ACTIONS(6215), + [anon_sym_BSLASHcitep] = ACTIONS(6215), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6218), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6218), + [anon_sym_BSLASHciteauthor] = ACTIONS(6215), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6218), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6215), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6218), + [anon_sym_BSLASHcitetitle] = ACTIONS(6215), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6218), + [anon_sym_BSLASHciteyear] = ACTIONS(6215), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6218), + [anon_sym_BSLASHcitedate] = ACTIONS(6215), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6218), + [anon_sym_BSLASHciteurl] = ACTIONS(6215), + [anon_sym_BSLASHfullcite] = ACTIONS(6215), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6215), + [anon_sym_BSLASHcitealt] = ACTIONS(6215), + [anon_sym_BSLASHcitealp] = ACTIONS(6215), + [anon_sym_BSLASHcitetext] = ACTIONS(6215), + [anon_sym_BSLASHparencite] = ACTIONS(6215), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6218), + [anon_sym_BSLASHParencite] = ACTIONS(6215), + [anon_sym_BSLASHfootcite] = ACTIONS(6215), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6215), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6215), + [anon_sym_BSLASHtextcite] = ACTIONS(6215), + [anon_sym_BSLASHTextcite] = ACTIONS(6215), + [anon_sym_BSLASHsmartcite] = ACTIONS(6215), + [anon_sym_BSLASHSmartcite] = ACTIONS(6215), + [anon_sym_BSLASHsupercite] = ACTIONS(6215), + [anon_sym_BSLASHautocite] = ACTIONS(6215), + [anon_sym_BSLASHAutocite] = ACTIONS(6215), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6218), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6218), + [anon_sym_BSLASHvolcite] = ACTIONS(6215), + [anon_sym_BSLASHVolcite] = ACTIONS(6215), + [anon_sym_BSLASHpvolcite] = ACTIONS(6215), + [anon_sym_BSLASHPvolcite] = ACTIONS(6215), + [anon_sym_BSLASHfvolcite] = ACTIONS(6215), + [anon_sym_BSLASHftvolcite] = ACTIONS(6215), + [anon_sym_BSLASHsvolcite] = ACTIONS(6215), + [anon_sym_BSLASHSvolcite] = ACTIONS(6215), + [anon_sym_BSLASHtvolcite] = ACTIONS(6215), + [anon_sym_BSLASHTvolcite] = ACTIONS(6215), + [anon_sym_BSLASHavolcite] = ACTIONS(6215), + [anon_sym_BSLASHAvolcite] = ACTIONS(6215), + [anon_sym_BSLASHnotecite] = ACTIONS(6215), + [anon_sym_BSLASHpnotecite] = ACTIONS(6215), + [anon_sym_BSLASHPnotecite] = ACTIONS(6215), + [anon_sym_BSLASHfnotecite] = ACTIONS(6215), + [anon_sym_BSLASHusepackage] = ACTIONS(6221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6224), + [anon_sym_BSLASHinclude] = ACTIONS(6227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6227), + [anon_sym_BSLASHinput] = ACTIONS(6230), + [anon_sym_BSLASHsubfile] = ACTIONS(6230), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6233), + [anon_sym_BSLASHbibliography] = ACTIONS(6236), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6239), + [anon_sym_BSLASHincludesvg] = ACTIONS(6242), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6248), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6248), + [anon_sym_BSLASHimport] = ACTIONS(6251), + [anon_sym_BSLASHsubimport] = ACTIONS(6251), + [anon_sym_BSLASHinputfrom] = ACTIONS(6251), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6251), + [anon_sym_BSLASHincludefrom] = ACTIONS(6251), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6251), + [anon_sym_BSLASHlabel] = ACTIONS(6254), + [anon_sym_BSLASHref] = ACTIONS(6257), + [anon_sym_BSLASHvref] = ACTIONS(6257), + [anon_sym_BSLASHVref] = ACTIONS(6257), + [anon_sym_BSLASHautoref] = ACTIONS(6257), + [anon_sym_BSLASHpageref] = ACTIONS(6257), + [anon_sym_BSLASHcref] = ACTIONS(6257), + [anon_sym_BSLASHCref] = ACTIONS(6257), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6260), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6260), + [anon_sym_BSLASHnamecref] = ACTIONS(6257), + [anon_sym_BSLASHnameCref] = ACTIONS(6257), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6257), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6257), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6257), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6257), + [anon_sym_BSLASHlabelcref] = ACTIONS(6257), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6257), + [anon_sym_BSLASHeqref] = ACTIONS(6263), + [anon_sym_BSLASHcrefrange] = ACTIONS(6266), + [anon_sym_BSLASHCrefrange] = ACTIONS(6266), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6269), + [anon_sym_BSLASHnewlabel] = ACTIONS(6272), + [anon_sym_BSLASHnewcommand] = ACTIONS(6275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6278), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6284), + [anon_sym_BSLASHgls] = ACTIONS(6287), + [anon_sym_BSLASHGls] = ACTIONS(6287), + [anon_sym_BSLASHGLS] = ACTIONS(6287), + [anon_sym_BSLASHglspl] = ACTIONS(6287), + [anon_sym_BSLASHGlspl] = ACTIONS(6287), + [anon_sym_BSLASHGLSpl] = ACTIONS(6287), + [anon_sym_BSLASHglsdisp] = ACTIONS(6287), + [anon_sym_BSLASHglslink] = ACTIONS(6287), + [anon_sym_BSLASHglstext] = ACTIONS(6287), + [anon_sym_BSLASHGlstext] = ACTIONS(6287), + [anon_sym_BSLASHGLStext] = ACTIONS(6287), + [anon_sym_BSLASHglsfirst] = ACTIONS(6287), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6287), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6287), + [anon_sym_BSLASHglsplural] = ACTIONS(6287), + [anon_sym_BSLASHGlsplural] = ACTIONS(6287), + [anon_sym_BSLASHGLSplural] = ACTIONS(6287), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6287), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6287), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6287), + [anon_sym_BSLASHglsname] = ACTIONS(6287), + [anon_sym_BSLASHGlsname] = ACTIONS(6287), + [anon_sym_BSLASHGLSname] = ACTIONS(6287), + [anon_sym_BSLASHglssymbol] = ACTIONS(6287), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6287), + [anon_sym_BSLASHglsdesc] = ACTIONS(6287), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6287), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6287), + [anon_sym_BSLASHglsuseri] = ACTIONS(6287), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6287), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6287), + [anon_sym_BSLASHglsuserii] = ACTIONS(6287), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6287), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6287), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6287), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6287), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6287), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6287), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6287), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6287), + [anon_sym_BSLASHglsuserv] = ACTIONS(6287), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6287), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6287), + [anon_sym_BSLASHglsuservi] = ACTIONS(6287), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6287), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6287), + [anon_sym_BSLASHnewacronym] = ACTIONS(6290), + [anon_sym_BSLASHacrshort] = ACTIONS(6293), + [anon_sym_BSLASHAcrshort] = ACTIONS(6293), + [anon_sym_BSLASHACRshort] = ACTIONS(6293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6293), + [anon_sym_BSLASHacrlong] = ACTIONS(6293), + [anon_sym_BSLASHAcrlong] = ACTIONS(6293), + [anon_sym_BSLASHACRlong] = ACTIONS(6293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6293), + [anon_sym_BSLASHacrfull] = ACTIONS(6293), + [anon_sym_BSLASHAcrfull] = ACTIONS(6293), + [anon_sym_BSLASHACRfull] = ACTIONS(6293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6293), + [anon_sym_BSLASHacs] = ACTIONS(6293), + [anon_sym_BSLASHAcs] = ACTIONS(6293), + [anon_sym_BSLASHacsp] = ACTIONS(6293), + [anon_sym_BSLASHAcsp] = ACTIONS(6293), + [anon_sym_BSLASHacl] = ACTIONS(6293), + [anon_sym_BSLASHAcl] = ACTIONS(6293), + [anon_sym_BSLASHaclp] = ACTIONS(6293), + [anon_sym_BSLASHAclp] = ACTIONS(6293), + [anon_sym_BSLASHacf] = ACTIONS(6293), + [anon_sym_BSLASHAcf] = ACTIONS(6293), + [anon_sym_BSLASHacfp] = ACTIONS(6293), + [anon_sym_BSLASHAcfp] = ACTIONS(6293), + [anon_sym_BSLASHac] = ACTIONS(6293), + [anon_sym_BSLASHAc] = ACTIONS(6293), + [anon_sym_BSLASHacp] = ACTIONS(6293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6296), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6296), + [anon_sym_BSLASHcolor] = ACTIONS(6299), + [anon_sym_BSLASHcolorbox] = ACTIONS(6299), + [anon_sym_BSLASHtextcolor] = ACTIONS(6299), + [anon_sym_BSLASHpagecolor] = ACTIONS(6299), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6302), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6305), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6308), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6311), + }, + [333] = { + [sym__simple_content] = STATE(337), + [sym_subsection] = STATE(337), + [sym_subsubsection] = STATE(337), + [sym_paragraph] = STATE(337), + [sym_subparagraph] = STATE(337), + [sym_enum_item] = STATE(337), + [sym_brace_group] = STATE(337), + [sym_mixed_group] = STATE(337), + [sym_text] = STATE(337), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(337), + [sym_inline_formula] = STATE(337), + [sym_begin] = STATE(105), + [sym_environment] = STATE(337), + [sym_caption] = STATE(337), + [sym_citation] = STATE(337), + [sym_package_include] = STATE(337), + [sym_class_include] = STATE(337), + [sym_latex_include] = STATE(337), + [sym_latex_input] = STATE(337), + [sym_biblatex_include] = STATE(337), + [sym_bibtex_include] = STATE(337), + [sym_graphics_include] = STATE(337), + [sym_svg_include] = STATE(337), + [sym_inkscape_include] = STATE(337), + [sym_verbatim_include] = STATE(337), + [sym_import] = STATE(337), + [sym_label_definition] = STATE(337), + [sym_label_reference] = STATE(337), + [sym_equation_label_reference] = STATE(337), + [sym_label_reference_range] = STATE(337), + [sym_label_number] = STATE(337), + [sym_command_definition] = STATE(337), + [sym_math_operator] = STATE(337), + [sym_glossary_entry_definition] = STATE(337), + [sym_glossary_entry_reference] = STATE(337), + [sym_acronym_definition] = STATE(337), + [sym_acronym_reference] = STATE(337), + [sym_theorem_definition] = STATE(337), + [sym_color_reference] = STATE(337), + [sym_color_definition] = STATE(337), + [sym_color_set_definition] = STATE(337), + [sym_pgf_library_import] = STATE(337), + [sym_tikz_library_import] = STATE(337), + [sym_generic_command] = STATE(337), + [aux_sym_section_repeat1] = STATE(337), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(6316), + [aux_sym_subsubsection_token1] = ACTIONS(6318), + [aux_sym_paragraph_token1] = ACTIONS(6320), + [aux_sym_subparagraph_token1] = ACTIONS(6322), + [anon_sym_BSLASHitem] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(6332), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [334] = { + [sym__simple_content] = STATE(340), + [sym_paragraph] = STATE(340), + [sym_subparagraph] = STATE(340), + [sym_enum_item] = STATE(340), + [sym_brace_group] = STATE(340), + [sym_mixed_group] = STATE(340), + [sym_text] = STATE(340), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(340), + [sym_inline_formula] = STATE(340), + [sym_begin] = STATE(73), + [sym_environment] = STATE(340), + [sym_caption] = STATE(340), + [sym_citation] = STATE(340), + [sym_package_include] = STATE(340), + [sym_class_include] = STATE(340), + [sym_latex_include] = STATE(340), + [sym_latex_input] = STATE(340), + [sym_biblatex_include] = STATE(340), + [sym_bibtex_include] = STATE(340), + [sym_graphics_include] = STATE(340), + [sym_svg_include] = STATE(340), + [sym_inkscape_include] = STATE(340), + [sym_verbatim_include] = STATE(340), + [sym_import] = STATE(340), + [sym_label_definition] = STATE(340), + [sym_label_reference] = STATE(340), + [sym_equation_label_reference] = STATE(340), + [sym_label_reference_range] = STATE(340), + [sym_label_number] = STATE(340), + [sym_command_definition] = STATE(340), + [sym_math_operator] = STATE(340), + [sym_glossary_entry_definition] = STATE(340), + [sym_glossary_entry_reference] = STATE(340), + [sym_acronym_definition] = STATE(340), + [sym_acronym_reference] = STATE(340), + [sym_theorem_definition] = STATE(340), + [sym_color_reference] = STATE(340), + [sym_color_definition] = STATE(340), + [sym_color_set_definition] = STATE(340), + [sym_pgf_library_import] = STATE(340), + [sym_tikz_library_import] = STATE(340), + [sym_generic_command] = STATE(340), + [aux_sym_subsubsection_repeat1] = STATE(340), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3020), + [aux_sym_chapter_token1] = ACTIONS(3020), + [aux_sym_section_token1] = ACTIONS(3020), + [aux_sym_subsection_token1] = ACTIONS(3020), + [aux_sym_subsubsection_token1] = ACTIONS(3020), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(6408), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(3020), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [335] = { + [sym__simple_content] = STATE(334), + [sym_paragraph] = STATE(334), + [sym_subparagraph] = STATE(334), + [sym_enum_item] = STATE(334), + [sym_brace_group] = STATE(334), + [sym_mixed_group] = STATE(334), + [sym_text] = STATE(334), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(334), + [sym_inline_formula] = STATE(334), + [sym_begin] = STATE(73), + [sym_environment] = STATE(334), + [sym_caption] = STATE(334), + [sym_citation] = STATE(334), + [sym_package_include] = STATE(334), + [sym_class_include] = STATE(334), + [sym_latex_include] = STATE(334), + [sym_latex_input] = STATE(334), + [sym_biblatex_include] = STATE(334), + [sym_bibtex_include] = STATE(334), + [sym_graphics_include] = STATE(334), + [sym_svg_include] = STATE(334), + [sym_inkscape_include] = STATE(334), + [sym_verbatim_include] = STATE(334), + [sym_import] = STATE(334), + [sym_label_definition] = STATE(334), + [sym_label_reference] = STATE(334), + [sym_equation_label_reference] = STATE(334), + [sym_label_reference_range] = STATE(334), + [sym_label_number] = STATE(334), + [sym_command_definition] = STATE(334), + [sym_math_operator] = STATE(334), + [sym_glossary_entry_definition] = STATE(334), + [sym_glossary_entry_reference] = STATE(334), + [sym_acronym_definition] = STATE(334), + [sym_acronym_reference] = STATE(334), + [sym_theorem_definition] = STATE(334), + [sym_color_reference] = STATE(334), + [sym_color_definition] = STATE(334), + [sym_color_set_definition] = STATE(334), + [sym_pgf_library_import] = STATE(334), + [sym_tikz_library_import] = STATE(334), + [sym_generic_command] = STATE(334), + [aux_sym_subsubsection_repeat1] = STATE(334), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3614), + [aux_sym_chapter_token1] = ACTIONS(3614), + [aux_sym_section_token1] = ACTIONS(3614), + [aux_sym_subsection_token1] = ACTIONS(3614), + [aux_sym_subsubsection_token1] = ACTIONS(3614), + [aux_sym_paragraph_token1] = ACTIONS(504), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(6410), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(3614), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [336] = { + [sym__simple_content] = STATE(322), + [sym_paragraph] = STATE(322), + [sym_subparagraph] = STATE(322), + [sym_enum_item] = STATE(322), + [sym_brace_group] = STATE(322), + [sym_mixed_group] = STATE(322), + [sym_text] = STATE(322), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(322), + [sym_inline_formula] = STATE(322), + [sym_begin] = STATE(66), + [sym_environment] = STATE(322), + [sym_caption] = STATE(322), + [sym_citation] = STATE(322), + [sym_package_include] = STATE(322), + [sym_class_include] = STATE(322), + [sym_latex_include] = STATE(322), + [sym_latex_input] = STATE(322), + [sym_biblatex_include] = STATE(322), + [sym_bibtex_include] = STATE(322), + [sym_graphics_include] = STATE(322), + [sym_svg_include] = STATE(322), + [sym_inkscape_include] = STATE(322), + [sym_verbatim_include] = STATE(322), + [sym_import] = STATE(322), + [sym_label_definition] = STATE(322), + [sym_label_reference] = STATE(322), + [sym_equation_label_reference] = STATE(322), + [sym_label_reference_range] = STATE(322), + [sym_label_number] = STATE(322), + [sym_command_definition] = STATE(322), + [sym_math_operator] = STATE(322), + [sym_glossary_entry_definition] = STATE(322), + [sym_glossary_entry_reference] = STATE(322), + [sym_acronym_definition] = STATE(322), + [sym_acronym_reference] = STATE(322), + [sym_theorem_definition] = STATE(322), + [sym_color_reference] = STATE(322), + [sym_color_definition] = STATE(322), + [sym_color_set_definition] = STATE(322), + [sym_pgf_library_import] = STATE(322), + [sym_tikz_library_import] = STATE(322), + [sym_generic_command] = STATE(322), + [aux_sym_subsubsection_repeat1] = STATE(322), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3020), + [aux_sym_chapter_token1] = ACTIONS(3020), + [aux_sym_section_token1] = ACTIONS(3020), + [aux_sym_subsection_token1] = ACTIONS(3020), + [aux_sym_subsubsection_token1] = ACTIONS(3020), + [aux_sym_paragraph_token1] = ACTIONS(398), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(6412), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(3018), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [337] = { + [sym__simple_content] = STATE(324), + [sym_subsection] = STATE(324), + [sym_subsubsection] = STATE(324), + [sym_paragraph] = STATE(324), + [sym_subparagraph] = STATE(324), + [sym_enum_item] = STATE(324), + [sym_brace_group] = STATE(324), + [sym_mixed_group] = STATE(324), + [sym_text] = STATE(324), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(324), + [sym_inline_formula] = STATE(324), + [sym_begin] = STATE(105), + [sym_environment] = STATE(324), + [sym_caption] = STATE(324), + [sym_citation] = STATE(324), + [sym_package_include] = STATE(324), + [sym_class_include] = STATE(324), + [sym_latex_include] = STATE(324), + [sym_latex_input] = STATE(324), + [sym_biblatex_include] = STATE(324), + [sym_bibtex_include] = STATE(324), + [sym_graphics_include] = STATE(324), + [sym_svg_include] = STATE(324), + [sym_inkscape_include] = STATE(324), + [sym_verbatim_include] = STATE(324), + [sym_import] = STATE(324), + [sym_label_definition] = STATE(324), + [sym_label_reference] = STATE(324), + [sym_equation_label_reference] = STATE(324), + [sym_label_reference_range] = STATE(324), + [sym_label_number] = STATE(324), + [sym_command_definition] = STATE(324), + [sym_math_operator] = STATE(324), + [sym_glossary_entry_definition] = STATE(324), + [sym_glossary_entry_reference] = STATE(324), + [sym_acronym_definition] = STATE(324), + [sym_acronym_reference] = STATE(324), + [sym_theorem_definition] = STATE(324), + [sym_color_reference] = STATE(324), + [sym_color_definition] = STATE(324), + [sym_color_set_definition] = STATE(324), + [sym_pgf_library_import] = STATE(324), + [sym_tikz_library_import] = STATE(324), + [sym_generic_command] = STATE(324), + [aux_sym_section_repeat1] = STATE(324), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(6316), + [aux_sym_subsubsection_token1] = ACTIONS(6318), + [aux_sym_paragraph_token1] = ACTIONS(6320), + [aux_sym_subparagraph_token1] = ACTIONS(6322), + [anon_sym_BSLASHitem] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(6414), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [338] = { + [sym__simple_content] = STATE(325), + [sym_subsubsection] = STATE(325), + [sym_paragraph] = STATE(325), + [sym_subparagraph] = STATE(325), + [sym_enum_item] = STATE(325), + [sym_brace_group] = STATE(325), + [sym_mixed_group] = STATE(325), + [sym_text] = STATE(325), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(325), + [sym_inline_formula] = STATE(325), + [sym_begin] = STATE(94), + [sym_environment] = STATE(325), + [sym_caption] = STATE(325), + [sym_citation] = STATE(325), + [sym_package_include] = STATE(325), + [sym_class_include] = STATE(325), + [sym_latex_include] = STATE(325), + [sym_latex_input] = STATE(325), + [sym_biblatex_include] = STATE(325), + [sym_bibtex_include] = STATE(325), + [sym_graphics_include] = STATE(325), + [sym_svg_include] = STATE(325), + [sym_inkscape_include] = STATE(325), + [sym_verbatim_include] = STATE(325), + [sym_import] = STATE(325), + [sym_label_definition] = STATE(325), + [sym_label_reference] = STATE(325), + [sym_equation_label_reference] = STATE(325), + [sym_label_reference_range] = STATE(325), + [sym_label_number] = STATE(325), + [sym_command_definition] = STATE(325), + [sym_math_operator] = STATE(325), + [sym_glossary_entry_definition] = STATE(325), + [sym_glossary_entry_reference] = STATE(325), + [sym_acronym_definition] = STATE(325), + [sym_acronym_reference] = STATE(325), + [sym_theorem_definition] = STATE(325), + [sym_color_reference] = STATE(325), + [sym_color_definition] = STATE(325), + [sym_color_set_definition] = STATE(325), + [sym_pgf_library_import] = STATE(325), + [sym_tikz_library_import] = STATE(325), + [sym_generic_command] = STATE(325), + [aux_sym_subsection_repeat1] = STATE(325), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(2292), + [aux_sym_subsection_token1] = ACTIONS(2292), + [aux_sym_subsubsection_token1] = ACTIONS(4064), + [aux_sym_paragraph_token1] = ACTIONS(4066), + [aux_sym_subparagraph_token1] = ACTIONS(4068), + [anon_sym_BSLASHitem] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(2290), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(6416), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [339] = { + [sym__simple_content] = STATE(326), + [sym_paragraph] = STATE(326), + [sym_subparagraph] = STATE(326), + [sym_enum_item] = STATE(326), + [sym_brace_group] = STATE(326), + [sym_mixed_group] = STATE(326), + [sym_text] = STATE(326), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(326), + [sym_inline_formula] = STATE(326), + [sym_begin] = STATE(86), + [sym_environment] = STATE(326), + [sym_caption] = STATE(326), + [sym_citation] = STATE(326), + [sym_package_include] = STATE(326), + [sym_class_include] = STATE(326), + [sym_latex_include] = STATE(326), + [sym_latex_input] = STATE(326), + [sym_biblatex_include] = STATE(326), + [sym_bibtex_include] = STATE(326), + [sym_graphics_include] = STATE(326), + [sym_svg_include] = STATE(326), + [sym_inkscape_include] = STATE(326), + [sym_verbatim_include] = STATE(326), + [sym_import] = STATE(326), + [sym_label_definition] = STATE(326), + [sym_label_reference] = STATE(326), + [sym_equation_label_reference] = STATE(326), + [sym_label_reference_range] = STATE(326), + [sym_label_number] = STATE(326), + [sym_command_definition] = STATE(326), + [sym_math_operator] = STATE(326), + [sym_glossary_entry_definition] = STATE(326), + [sym_glossary_entry_reference] = STATE(326), + [sym_acronym_definition] = STATE(326), + [sym_acronym_reference] = STATE(326), + [sym_theorem_definition] = STATE(326), + [sym_color_reference] = STATE(326), + [sym_color_definition] = STATE(326), + [sym_color_set_definition] = STATE(326), + [sym_pgf_library_import] = STATE(326), + [sym_tikz_library_import] = STATE(326), + [sym_generic_command] = STATE(326), + [aux_sym_subsubsection_repeat1] = STATE(326), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(3614), + [aux_sym_section_token1] = ACTIONS(3614), + [aux_sym_subsection_token1] = ACTIONS(3614), + [aux_sym_subsubsection_token1] = ACTIONS(3614), + [aux_sym_paragraph_token1] = ACTIONS(2308), + [aux_sym_subparagraph_token1] = ACTIONS(2310), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(6418), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [340] = { + [sym__simple_content] = STATE(340), + [sym_paragraph] = STATE(340), + [sym_subparagraph] = STATE(340), + [sym_enum_item] = STATE(340), + [sym_brace_group] = STATE(340), + [sym_mixed_group] = STATE(340), + [sym_text] = STATE(340), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(340), + [sym_inline_formula] = STATE(340), + [sym_begin] = STATE(73), + [sym_environment] = STATE(340), + [sym_caption] = STATE(340), + [sym_citation] = STATE(340), + [sym_package_include] = STATE(340), + [sym_class_include] = STATE(340), + [sym_latex_include] = STATE(340), + [sym_latex_input] = STATE(340), + [sym_biblatex_include] = STATE(340), + [sym_bibtex_include] = STATE(340), + [sym_graphics_include] = STATE(340), + [sym_svg_include] = STATE(340), + [sym_inkscape_include] = STATE(340), + [sym_verbatim_include] = STATE(340), + [sym_import] = STATE(340), + [sym_label_definition] = STATE(340), + [sym_label_reference] = STATE(340), + [sym_equation_label_reference] = STATE(340), + [sym_label_reference_range] = STATE(340), + [sym_label_number] = STATE(340), + [sym_command_definition] = STATE(340), + [sym_math_operator] = STATE(340), + [sym_glossary_entry_definition] = STATE(340), + [sym_glossary_entry_reference] = STATE(340), + [sym_acronym_definition] = STATE(340), + [sym_acronym_reference] = STATE(340), + [sym_theorem_definition] = STATE(340), + [sym_color_reference] = STATE(340), + [sym_color_definition] = STATE(340), + [sym_color_set_definition] = STATE(340), + [sym_pgf_library_import] = STATE(340), + [sym_tikz_library_import] = STATE(340), + [sym_generic_command] = STATE(340), + [aux_sym_subsubsection_repeat1] = STATE(340), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(6420), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(3325), + [aux_sym_chapter_token1] = ACTIONS(3325), + [aux_sym_section_token1] = ACTIONS(3325), + [aux_sym_subsection_token1] = ACTIONS(3325), + [aux_sym_subsubsection_token1] = ACTIONS(3325), + [aux_sym_paragraph_token1] = ACTIONS(6423), + [aux_sym_subparagraph_token1] = ACTIONS(6426), + [anon_sym_BSLASHitem] = ACTIONS(6429), + [anon_sym_LBRACK] = ACTIONS(6432), + [anon_sym_LBRACE] = ACTIONS(6435), + [anon_sym_LPAREN] = ACTIONS(6432), + [anon_sym_COMMA] = ACTIONS(6438), + [anon_sym_EQ] = ACTIONS(6438), + [sym_word] = ACTIONS(6438), + [sym_param] = ACTIONS(6441), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6444), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6444), + [anon_sym_DOLLAR] = ACTIONS(6447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6450), + [anon_sym_BSLASHbegin] = ACTIONS(3357), + [anon_sym_BSLASHend] = ACTIONS(3325), + [anon_sym_BSLASHcaption] = ACTIONS(6453), + [anon_sym_BSLASHcite] = ACTIONS(6456), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6459), + [anon_sym_BSLASHCite] = ACTIONS(6456), + [anon_sym_BSLASHnocite] = ACTIONS(6456), + [anon_sym_BSLASHcitet] = ACTIONS(6456), + [anon_sym_BSLASHcitep] = ACTIONS(6456), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6459), + [anon_sym_BSLASHciteauthor] = ACTIONS(6456), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6456), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6459), + [anon_sym_BSLASHcitetitle] = ACTIONS(6456), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6459), + [anon_sym_BSLASHciteyear] = ACTIONS(6456), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6459), + [anon_sym_BSLASHcitedate] = ACTIONS(6456), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6459), + [anon_sym_BSLASHciteurl] = ACTIONS(6456), + [anon_sym_BSLASHfullcite] = ACTIONS(6456), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6456), + [anon_sym_BSLASHcitealt] = ACTIONS(6456), + [anon_sym_BSLASHcitealp] = ACTIONS(6456), + [anon_sym_BSLASHcitetext] = ACTIONS(6456), + [anon_sym_BSLASHparencite] = ACTIONS(6456), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6459), + [anon_sym_BSLASHParencite] = ACTIONS(6456), + [anon_sym_BSLASHfootcite] = ACTIONS(6456), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6456), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6456), + [anon_sym_BSLASHtextcite] = ACTIONS(6456), + [anon_sym_BSLASHTextcite] = ACTIONS(6456), + [anon_sym_BSLASHsmartcite] = ACTIONS(6456), + [anon_sym_BSLASHSmartcite] = ACTIONS(6456), + [anon_sym_BSLASHsupercite] = ACTIONS(6456), + [anon_sym_BSLASHautocite] = ACTIONS(6456), + [anon_sym_BSLASHAutocite] = ACTIONS(6456), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6459), + [anon_sym_BSLASHvolcite] = ACTIONS(6456), + [anon_sym_BSLASHVolcite] = ACTIONS(6456), + [anon_sym_BSLASHpvolcite] = ACTIONS(6456), + [anon_sym_BSLASHPvolcite] = ACTIONS(6456), + [anon_sym_BSLASHfvolcite] = ACTIONS(6456), + [anon_sym_BSLASHftvolcite] = ACTIONS(6456), + [anon_sym_BSLASHsvolcite] = ACTIONS(6456), + [anon_sym_BSLASHSvolcite] = ACTIONS(6456), + [anon_sym_BSLASHtvolcite] = ACTIONS(6456), + [anon_sym_BSLASHTvolcite] = ACTIONS(6456), + [anon_sym_BSLASHavolcite] = ACTIONS(6456), + [anon_sym_BSLASHAvolcite] = ACTIONS(6456), + [anon_sym_BSLASHnotecite] = ACTIONS(6456), + [anon_sym_BSLASHpnotecite] = ACTIONS(6456), + [anon_sym_BSLASHPnotecite] = ACTIONS(6456), + [anon_sym_BSLASHfnotecite] = ACTIONS(6456), + [anon_sym_BSLASHusepackage] = ACTIONS(6462), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6462), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6465), + [anon_sym_BSLASHinclude] = ACTIONS(6468), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6468), + [anon_sym_BSLASHinput] = ACTIONS(6471), + [anon_sym_BSLASHsubfile] = ACTIONS(6471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6474), + [anon_sym_BSLASHbibliography] = ACTIONS(6477), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6480), + [anon_sym_BSLASHincludesvg] = ACTIONS(6483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6486), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6489), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6489), + [anon_sym_BSLASHimport] = ACTIONS(6492), + [anon_sym_BSLASHsubimport] = ACTIONS(6492), + [anon_sym_BSLASHinputfrom] = ACTIONS(6492), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6492), + [anon_sym_BSLASHincludefrom] = ACTIONS(6492), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6492), + [anon_sym_BSLASHlabel] = ACTIONS(6495), + [anon_sym_BSLASHref] = ACTIONS(6498), + [anon_sym_BSLASHvref] = ACTIONS(6498), + [anon_sym_BSLASHVref] = ACTIONS(6498), + [anon_sym_BSLASHautoref] = ACTIONS(6498), + [anon_sym_BSLASHpageref] = ACTIONS(6498), + [anon_sym_BSLASHcref] = ACTIONS(6498), + [anon_sym_BSLASHCref] = ACTIONS(6498), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6501), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6501), + [anon_sym_BSLASHnamecref] = ACTIONS(6498), + [anon_sym_BSLASHnameCref] = ACTIONS(6498), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6498), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6498), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6498), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6498), + [anon_sym_BSLASHlabelcref] = ACTIONS(6498), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6498), + [anon_sym_BSLASHeqref] = ACTIONS(6504), + [anon_sym_BSLASHcrefrange] = ACTIONS(6507), + [anon_sym_BSLASHCrefrange] = ACTIONS(6507), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6510), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6510), + [anon_sym_BSLASHnewlabel] = ACTIONS(6513), + [anon_sym_BSLASHnewcommand] = ACTIONS(6516), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6516), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6516), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6519), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6522), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6525), + [anon_sym_BSLASHgls] = ACTIONS(6528), + [anon_sym_BSLASHGls] = ACTIONS(6528), + [anon_sym_BSLASHGLS] = ACTIONS(6528), + [anon_sym_BSLASHglspl] = ACTIONS(6528), + [anon_sym_BSLASHGlspl] = ACTIONS(6528), + [anon_sym_BSLASHGLSpl] = ACTIONS(6528), + [anon_sym_BSLASHglsdisp] = ACTIONS(6528), + [anon_sym_BSLASHglslink] = ACTIONS(6528), + [anon_sym_BSLASHglstext] = ACTIONS(6528), + [anon_sym_BSLASHGlstext] = ACTIONS(6528), + [anon_sym_BSLASHGLStext] = ACTIONS(6528), + [anon_sym_BSLASHglsfirst] = ACTIONS(6528), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6528), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6528), + [anon_sym_BSLASHglsplural] = ACTIONS(6528), + [anon_sym_BSLASHGlsplural] = ACTIONS(6528), + [anon_sym_BSLASHGLSplural] = ACTIONS(6528), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6528), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6528), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6528), + [anon_sym_BSLASHglsname] = ACTIONS(6528), + [anon_sym_BSLASHGlsname] = ACTIONS(6528), + [anon_sym_BSLASHGLSname] = ACTIONS(6528), + [anon_sym_BSLASHglssymbol] = ACTIONS(6528), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6528), + [anon_sym_BSLASHglsdesc] = ACTIONS(6528), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6528), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6528), + [anon_sym_BSLASHglsuseri] = ACTIONS(6528), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6528), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6528), + [anon_sym_BSLASHglsuserii] = ACTIONS(6528), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6528), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6528), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6528), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6528), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6528), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6528), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6528), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6528), + [anon_sym_BSLASHglsuserv] = ACTIONS(6528), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6528), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6528), + [anon_sym_BSLASHglsuservi] = ACTIONS(6528), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6528), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6528), + [anon_sym_BSLASHnewacronym] = ACTIONS(6531), + [anon_sym_BSLASHacrshort] = ACTIONS(6534), + [anon_sym_BSLASHAcrshort] = ACTIONS(6534), + [anon_sym_BSLASHACRshort] = ACTIONS(6534), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6534), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6534), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6534), + [anon_sym_BSLASHacrlong] = ACTIONS(6534), + [anon_sym_BSLASHAcrlong] = ACTIONS(6534), + [anon_sym_BSLASHACRlong] = ACTIONS(6534), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6534), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6534), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6534), + [anon_sym_BSLASHacrfull] = ACTIONS(6534), + [anon_sym_BSLASHAcrfull] = ACTIONS(6534), + [anon_sym_BSLASHACRfull] = ACTIONS(6534), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6534), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6534), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6534), + [anon_sym_BSLASHacs] = ACTIONS(6534), + [anon_sym_BSLASHAcs] = ACTIONS(6534), + [anon_sym_BSLASHacsp] = ACTIONS(6534), + [anon_sym_BSLASHAcsp] = ACTIONS(6534), + [anon_sym_BSLASHacl] = ACTIONS(6534), + [anon_sym_BSLASHAcl] = ACTIONS(6534), + [anon_sym_BSLASHaclp] = ACTIONS(6534), + [anon_sym_BSLASHAclp] = ACTIONS(6534), + [anon_sym_BSLASHacf] = ACTIONS(6534), + [anon_sym_BSLASHAcf] = ACTIONS(6534), + [anon_sym_BSLASHacfp] = ACTIONS(6534), + [anon_sym_BSLASHAcfp] = ACTIONS(6534), + [anon_sym_BSLASHac] = ACTIONS(6534), + [anon_sym_BSLASHAc] = ACTIONS(6534), + [anon_sym_BSLASHacp] = ACTIONS(6534), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6534), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6534), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6534), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6534), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6534), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6534), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6534), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6534), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6534), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6534), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6537), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6537), + [anon_sym_BSLASHcolor] = ACTIONS(6540), + [anon_sym_BSLASHcolorbox] = ACTIONS(6540), + [anon_sym_BSLASHtextcolor] = ACTIONS(6540), + [anon_sym_BSLASHpagecolor] = ACTIONS(6540), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6543), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6546), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6549), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6552), + }, + [341] = { + [sym__simple_content] = STATE(341), + [sym_paragraph] = STATE(341), + [sym_subparagraph] = STATE(341), + [sym_enum_item] = STATE(341), + [sym_brace_group] = STATE(341), + [sym_mixed_group] = STATE(341), + [sym_text] = STATE(341), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(341), + [sym_inline_formula] = STATE(341), + [sym_begin] = STATE(86), + [sym_environment] = STATE(341), + [sym_caption] = STATE(341), + [sym_citation] = STATE(341), + [sym_package_include] = STATE(341), + [sym_class_include] = STATE(341), + [sym_latex_include] = STATE(341), + [sym_latex_input] = STATE(341), + [sym_biblatex_include] = STATE(341), + [sym_bibtex_include] = STATE(341), + [sym_graphics_include] = STATE(341), + [sym_svg_include] = STATE(341), + [sym_inkscape_include] = STATE(341), + [sym_verbatim_include] = STATE(341), + [sym_import] = STATE(341), + [sym_label_definition] = STATE(341), + [sym_label_reference] = STATE(341), + [sym_equation_label_reference] = STATE(341), + [sym_label_reference_range] = STATE(341), + [sym_label_number] = STATE(341), + [sym_command_definition] = STATE(341), + [sym_math_operator] = STATE(341), + [sym_glossary_entry_definition] = STATE(341), + [sym_glossary_entry_reference] = STATE(341), + [sym_acronym_definition] = STATE(341), + [sym_acronym_reference] = STATE(341), + [sym_theorem_definition] = STATE(341), + [sym_color_reference] = STATE(341), + [sym_color_definition] = STATE(341), + [sym_color_set_definition] = STATE(341), + [sym_pgf_library_import] = STATE(341), + [sym_tikz_library_import] = STATE(341), + [sym_generic_command] = STATE(341), + [aux_sym_subsubsection_repeat1] = STATE(341), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(6555), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(3325), + [aux_sym_section_token1] = ACTIONS(3325), + [aux_sym_subsection_token1] = ACTIONS(3325), + [aux_sym_subsubsection_token1] = ACTIONS(3325), + [aux_sym_paragraph_token1] = ACTIONS(6558), + [aux_sym_subparagraph_token1] = ACTIONS(6561), + [anon_sym_BSLASHitem] = ACTIONS(6564), + [anon_sym_LBRACK] = ACTIONS(6567), + [anon_sym_RBRACK] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(6570), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(6567), + [anon_sym_COMMA] = ACTIONS(6573), + [anon_sym_EQ] = ACTIONS(6573), + [sym_word] = ACTIONS(6573), + [sym_param] = ACTIONS(6576), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6579), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6579), + [anon_sym_DOLLAR] = ACTIONS(6582), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6585), + [anon_sym_BSLASHbegin] = ACTIONS(3357), + [anon_sym_BSLASHcaption] = ACTIONS(6588), + [anon_sym_BSLASHcite] = ACTIONS(6591), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6594), + [anon_sym_BSLASHCite] = ACTIONS(6591), + [anon_sym_BSLASHnocite] = ACTIONS(6591), + [anon_sym_BSLASHcitet] = ACTIONS(6591), + [anon_sym_BSLASHcitep] = ACTIONS(6591), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6594), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6594), + [anon_sym_BSLASHciteauthor] = ACTIONS(6591), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6594), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6591), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6594), + [anon_sym_BSLASHcitetitle] = ACTIONS(6591), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6594), + [anon_sym_BSLASHciteyear] = ACTIONS(6591), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6594), + [anon_sym_BSLASHcitedate] = ACTIONS(6591), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6594), + [anon_sym_BSLASHciteurl] = ACTIONS(6591), + [anon_sym_BSLASHfullcite] = ACTIONS(6591), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6591), + [anon_sym_BSLASHcitealt] = ACTIONS(6591), + [anon_sym_BSLASHcitealp] = ACTIONS(6591), + [anon_sym_BSLASHcitetext] = ACTIONS(6591), + [anon_sym_BSLASHparencite] = ACTIONS(6591), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6594), + [anon_sym_BSLASHParencite] = ACTIONS(6591), + [anon_sym_BSLASHfootcite] = ACTIONS(6591), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6591), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6591), + [anon_sym_BSLASHtextcite] = ACTIONS(6591), + [anon_sym_BSLASHTextcite] = ACTIONS(6591), + [anon_sym_BSLASHsmartcite] = ACTIONS(6591), + [anon_sym_BSLASHSmartcite] = ACTIONS(6591), + [anon_sym_BSLASHsupercite] = ACTIONS(6591), + [anon_sym_BSLASHautocite] = ACTIONS(6591), + [anon_sym_BSLASHAutocite] = ACTIONS(6591), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6594), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6594), + [anon_sym_BSLASHvolcite] = ACTIONS(6591), + [anon_sym_BSLASHVolcite] = ACTIONS(6591), + [anon_sym_BSLASHpvolcite] = ACTIONS(6591), + [anon_sym_BSLASHPvolcite] = ACTIONS(6591), + [anon_sym_BSLASHfvolcite] = ACTIONS(6591), + [anon_sym_BSLASHftvolcite] = ACTIONS(6591), + [anon_sym_BSLASHsvolcite] = ACTIONS(6591), + [anon_sym_BSLASHSvolcite] = ACTIONS(6591), + [anon_sym_BSLASHtvolcite] = ACTIONS(6591), + [anon_sym_BSLASHTvolcite] = ACTIONS(6591), + [anon_sym_BSLASHavolcite] = ACTIONS(6591), + [anon_sym_BSLASHAvolcite] = ACTIONS(6591), + [anon_sym_BSLASHnotecite] = ACTIONS(6591), + [anon_sym_BSLASHpnotecite] = ACTIONS(6591), + [anon_sym_BSLASHPnotecite] = ACTIONS(6591), + [anon_sym_BSLASHfnotecite] = ACTIONS(6591), + [anon_sym_BSLASHusepackage] = ACTIONS(6597), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6597), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6600), + [anon_sym_BSLASHinclude] = ACTIONS(6603), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6603), + [anon_sym_BSLASHinput] = ACTIONS(6606), + [anon_sym_BSLASHsubfile] = ACTIONS(6606), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6609), + [anon_sym_BSLASHbibliography] = ACTIONS(6612), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6615), + [anon_sym_BSLASHincludesvg] = ACTIONS(6618), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6621), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6624), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6624), + [anon_sym_BSLASHimport] = ACTIONS(6627), + [anon_sym_BSLASHsubimport] = ACTIONS(6627), + [anon_sym_BSLASHinputfrom] = ACTIONS(6627), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6627), + [anon_sym_BSLASHincludefrom] = ACTIONS(6627), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6627), + [anon_sym_BSLASHlabel] = ACTIONS(6630), + [anon_sym_BSLASHref] = ACTIONS(6633), + [anon_sym_BSLASHvref] = ACTIONS(6633), + [anon_sym_BSLASHVref] = ACTIONS(6633), + [anon_sym_BSLASHautoref] = ACTIONS(6633), + [anon_sym_BSLASHpageref] = ACTIONS(6633), + [anon_sym_BSLASHcref] = ACTIONS(6633), + [anon_sym_BSLASHCref] = ACTIONS(6633), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6636), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6636), + [anon_sym_BSLASHnamecref] = ACTIONS(6633), + [anon_sym_BSLASHnameCref] = ACTIONS(6633), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6633), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6633), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6633), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6633), + [anon_sym_BSLASHlabelcref] = ACTIONS(6633), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6633), + [anon_sym_BSLASHeqref] = ACTIONS(6639), + [anon_sym_BSLASHcrefrange] = ACTIONS(6642), + [anon_sym_BSLASHCrefrange] = ACTIONS(6642), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6645), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6645), + [anon_sym_BSLASHnewlabel] = ACTIONS(6648), + [anon_sym_BSLASHnewcommand] = ACTIONS(6651), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6651), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6651), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6654), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6657), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6660), + [anon_sym_BSLASHgls] = ACTIONS(6663), + [anon_sym_BSLASHGls] = ACTIONS(6663), + [anon_sym_BSLASHGLS] = ACTIONS(6663), + [anon_sym_BSLASHglspl] = ACTIONS(6663), + [anon_sym_BSLASHGlspl] = ACTIONS(6663), + [anon_sym_BSLASHGLSpl] = ACTIONS(6663), + [anon_sym_BSLASHglsdisp] = ACTIONS(6663), + [anon_sym_BSLASHglslink] = ACTIONS(6663), + [anon_sym_BSLASHglstext] = ACTIONS(6663), + [anon_sym_BSLASHGlstext] = ACTIONS(6663), + [anon_sym_BSLASHGLStext] = ACTIONS(6663), + [anon_sym_BSLASHglsfirst] = ACTIONS(6663), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6663), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6663), + [anon_sym_BSLASHglsplural] = ACTIONS(6663), + [anon_sym_BSLASHGlsplural] = ACTIONS(6663), + [anon_sym_BSLASHGLSplural] = ACTIONS(6663), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6663), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6663), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6663), + [anon_sym_BSLASHglsname] = ACTIONS(6663), + [anon_sym_BSLASHGlsname] = ACTIONS(6663), + [anon_sym_BSLASHGLSname] = ACTIONS(6663), + [anon_sym_BSLASHglssymbol] = ACTIONS(6663), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6663), + [anon_sym_BSLASHglsdesc] = ACTIONS(6663), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6663), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6663), + [anon_sym_BSLASHglsuseri] = ACTIONS(6663), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6663), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6663), + [anon_sym_BSLASHglsuserii] = ACTIONS(6663), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6663), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6663), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6663), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6663), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6663), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6663), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6663), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6663), + [anon_sym_BSLASHglsuserv] = ACTIONS(6663), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6663), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6663), + [anon_sym_BSLASHglsuservi] = ACTIONS(6663), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6663), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6663), + [anon_sym_BSLASHnewacronym] = ACTIONS(6666), + [anon_sym_BSLASHacrshort] = ACTIONS(6669), + [anon_sym_BSLASHAcrshort] = ACTIONS(6669), + [anon_sym_BSLASHACRshort] = ACTIONS(6669), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6669), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6669), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6669), + [anon_sym_BSLASHacrlong] = ACTIONS(6669), + [anon_sym_BSLASHAcrlong] = ACTIONS(6669), + [anon_sym_BSLASHACRlong] = ACTIONS(6669), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6669), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6669), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6669), + [anon_sym_BSLASHacrfull] = ACTIONS(6669), + [anon_sym_BSLASHAcrfull] = ACTIONS(6669), + [anon_sym_BSLASHACRfull] = ACTIONS(6669), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6669), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6669), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6669), + [anon_sym_BSLASHacs] = ACTIONS(6669), + [anon_sym_BSLASHAcs] = ACTIONS(6669), + [anon_sym_BSLASHacsp] = ACTIONS(6669), + [anon_sym_BSLASHAcsp] = ACTIONS(6669), + [anon_sym_BSLASHacl] = ACTIONS(6669), + [anon_sym_BSLASHAcl] = ACTIONS(6669), + [anon_sym_BSLASHaclp] = ACTIONS(6669), + [anon_sym_BSLASHAclp] = ACTIONS(6669), + [anon_sym_BSLASHacf] = ACTIONS(6669), + [anon_sym_BSLASHAcf] = ACTIONS(6669), + [anon_sym_BSLASHacfp] = ACTIONS(6669), + [anon_sym_BSLASHAcfp] = ACTIONS(6669), + [anon_sym_BSLASHac] = ACTIONS(6669), + [anon_sym_BSLASHAc] = ACTIONS(6669), + [anon_sym_BSLASHacp] = ACTIONS(6669), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6669), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6669), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6669), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6669), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6669), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6669), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6669), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6669), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6669), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6669), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6672), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6672), + [anon_sym_BSLASHcolor] = ACTIONS(6675), + [anon_sym_BSLASHcolorbox] = ACTIONS(6675), + [anon_sym_BSLASHtextcolor] = ACTIONS(6675), + [anon_sym_BSLASHpagecolor] = ACTIONS(6675), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6678), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6681), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6684), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6687), + }, + [342] = { + [sym__simple_content] = STATE(350), + [sym_subparagraph] = STATE(350), + [sym_enum_item] = STATE(350), + [sym_brace_group] = STATE(350), + [sym_mixed_group] = STATE(350), + [sym_text] = STATE(350), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(350), + [sym_inline_formula] = STATE(350), + [sym_begin] = STATE(59), + [sym_environment] = STATE(350), + [sym_caption] = STATE(350), + [sym_citation] = STATE(350), + [sym_package_include] = STATE(350), + [sym_class_include] = STATE(350), + [sym_latex_include] = STATE(350), + [sym_latex_input] = STATE(350), + [sym_biblatex_include] = STATE(350), + [sym_bibtex_include] = STATE(350), + [sym_graphics_include] = STATE(350), + [sym_svg_include] = STATE(350), + [sym_inkscape_include] = STATE(350), + [sym_verbatim_include] = STATE(350), + [sym_import] = STATE(350), + [sym_label_definition] = STATE(350), + [sym_label_reference] = STATE(350), + [sym_equation_label_reference] = STATE(350), + [sym_label_reference_range] = STATE(350), + [sym_label_number] = STATE(350), + [sym_command_definition] = STATE(350), + [sym_math_operator] = STATE(350), + [sym_glossary_entry_definition] = STATE(350), + [sym_glossary_entry_reference] = STATE(350), + [sym_acronym_definition] = STATE(350), + [sym_acronym_reference] = STATE(350), + [sym_theorem_definition] = STATE(350), + [sym_color_reference] = STATE(350), + [sym_color_definition] = STATE(350), + [sym_color_set_definition] = STATE(350), + [sym_pgf_library_import] = STATE(350), + [sym_tikz_library_import] = STATE(350), + [sym_generic_command] = STATE(350), + [aux_sym_paragraph_repeat1] = STATE(350), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4054), + [aux_sym_chapter_token1] = ACTIONS(4054), + [aux_sym_section_token1] = ACTIONS(4054), + [aux_sym_subsection_token1] = ACTIONS(4054), + [aux_sym_subsubsection_token1] = ACTIONS(4054), + [aux_sym_paragraph_token1] = ACTIONS(4054), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(6690), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4052), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [343] = { + [sym__simple_content] = STATE(351), + [sym_subparagraph] = STATE(351), + [sym_enum_item] = STATE(351), + [sym_brace_group] = STATE(351), + [sym_mixed_group] = STATE(351), + [sym_text] = STATE(351), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(351), + [sym_inline_formula] = STATE(351), + [sym_begin] = STATE(86), + [sym_environment] = STATE(351), + [sym_caption] = STATE(351), + [sym_citation] = STATE(351), + [sym_package_include] = STATE(351), + [sym_class_include] = STATE(351), + [sym_latex_include] = STATE(351), + [sym_latex_input] = STATE(351), + [sym_biblatex_include] = STATE(351), + [sym_bibtex_include] = STATE(351), + [sym_graphics_include] = STATE(351), + [sym_svg_include] = STATE(351), + [sym_inkscape_include] = STATE(351), + [sym_verbatim_include] = STATE(351), + [sym_import] = STATE(351), + [sym_label_definition] = STATE(351), + [sym_label_reference] = STATE(351), + [sym_equation_label_reference] = STATE(351), + [sym_label_reference_range] = STATE(351), + [sym_label_number] = STATE(351), + [sym_command_definition] = STATE(351), + [sym_math_operator] = STATE(351), + [sym_glossary_entry_definition] = STATE(351), + [sym_glossary_entry_reference] = STATE(351), + [sym_acronym_definition] = STATE(351), + [sym_acronym_reference] = STATE(351), + [sym_theorem_definition] = STATE(351), + [sym_color_reference] = STATE(351), + [sym_color_definition] = STATE(351), + [sym_color_set_definition] = STATE(351), + [sym_pgf_library_import] = STATE(351), + [sym_tikz_library_import] = STATE(351), + [sym_generic_command] = STATE(351), + [aux_sym_paragraph_repeat1] = STATE(351), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(4054), + [aux_sym_section_token1] = ACTIONS(4054), + [aux_sym_subsection_token1] = ACTIONS(4054), + [aux_sym_subsubsection_token1] = ACTIONS(4054), + [aux_sym_paragraph_token1] = ACTIONS(4054), + [aux_sym_subparagraph_token1] = ACTIONS(2310), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(4052), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(6692), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [344] = { + [sym__simple_content] = STATE(344), + [sym_paragraph] = STATE(344), + [sym_subparagraph] = STATE(344), + [sym_enum_item] = STATE(344), + [sym_brace_group] = STATE(344), + [sym_mixed_group] = STATE(344), + [sym_text] = STATE(344), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(344), + [sym_inline_formula] = STATE(344), + [sym_begin] = STATE(94), + [sym_environment] = STATE(344), + [sym_caption] = STATE(344), + [sym_citation] = STATE(344), + [sym_package_include] = STATE(344), + [sym_class_include] = STATE(344), + [sym_latex_include] = STATE(344), + [sym_latex_input] = STATE(344), + [sym_biblatex_include] = STATE(344), + [sym_bibtex_include] = STATE(344), + [sym_graphics_include] = STATE(344), + [sym_svg_include] = STATE(344), + [sym_inkscape_include] = STATE(344), + [sym_verbatim_include] = STATE(344), + [sym_import] = STATE(344), + [sym_label_definition] = STATE(344), + [sym_label_reference] = STATE(344), + [sym_equation_label_reference] = STATE(344), + [sym_label_reference_range] = STATE(344), + [sym_label_number] = STATE(344), + [sym_command_definition] = STATE(344), + [sym_math_operator] = STATE(344), + [sym_glossary_entry_definition] = STATE(344), + [sym_glossary_entry_reference] = STATE(344), + [sym_acronym_definition] = STATE(344), + [sym_acronym_reference] = STATE(344), + [sym_theorem_definition] = STATE(344), + [sym_color_reference] = STATE(344), + [sym_color_definition] = STATE(344), + [sym_color_set_definition] = STATE(344), + [sym_pgf_library_import] = STATE(344), + [sym_tikz_library_import] = STATE(344), + [sym_generic_command] = STATE(344), + [aux_sym_subsubsection_repeat1] = STATE(344), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(6694), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(3325), + [aux_sym_subsection_token1] = ACTIONS(3325), + [aux_sym_subsubsection_token1] = ACTIONS(3325), + [aux_sym_paragraph_token1] = ACTIONS(6697), + [aux_sym_subparagraph_token1] = ACTIONS(6700), + [anon_sym_BSLASHitem] = ACTIONS(6703), + [anon_sym_LBRACK] = ACTIONS(6706), + [anon_sym_RBRACK] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(6709), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(6706), + [anon_sym_COMMA] = ACTIONS(6712), + [anon_sym_EQ] = ACTIONS(6712), + [sym_word] = ACTIONS(6712), + [sym_param] = ACTIONS(6715), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6718), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6718), + [anon_sym_DOLLAR] = ACTIONS(6721), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6724), + [anon_sym_BSLASHbegin] = ACTIONS(3357), + [anon_sym_BSLASHcaption] = ACTIONS(6727), + [anon_sym_BSLASHcite] = ACTIONS(6730), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6733), + [anon_sym_BSLASHCite] = ACTIONS(6730), + [anon_sym_BSLASHnocite] = ACTIONS(6730), + [anon_sym_BSLASHcitet] = ACTIONS(6730), + [anon_sym_BSLASHcitep] = ACTIONS(6730), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6733), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6733), + [anon_sym_BSLASHciteauthor] = ACTIONS(6730), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6733), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6730), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6733), + [anon_sym_BSLASHcitetitle] = ACTIONS(6730), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6733), + [anon_sym_BSLASHciteyear] = ACTIONS(6730), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6733), + [anon_sym_BSLASHcitedate] = ACTIONS(6730), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6733), + [anon_sym_BSLASHciteurl] = ACTIONS(6730), + [anon_sym_BSLASHfullcite] = ACTIONS(6730), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6730), + [anon_sym_BSLASHcitealt] = ACTIONS(6730), + [anon_sym_BSLASHcitealp] = ACTIONS(6730), + [anon_sym_BSLASHcitetext] = ACTIONS(6730), + [anon_sym_BSLASHparencite] = ACTIONS(6730), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6733), + [anon_sym_BSLASHParencite] = ACTIONS(6730), + [anon_sym_BSLASHfootcite] = ACTIONS(6730), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6730), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6730), + [anon_sym_BSLASHtextcite] = ACTIONS(6730), + [anon_sym_BSLASHTextcite] = ACTIONS(6730), + [anon_sym_BSLASHsmartcite] = ACTIONS(6730), + [anon_sym_BSLASHSmartcite] = ACTIONS(6730), + [anon_sym_BSLASHsupercite] = ACTIONS(6730), + [anon_sym_BSLASHautocite] = ACTIONS(6730), + [anon_sym_BSLASHAutocite] = ACTIONS(6730), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6733), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6733), + [anon_sym_BSLASHvolcite] = ACTIONS(6730), + [anon_sym_BSLASHVolcite] = ACTIONS(6730), + [anon_sym_BSLASHpvolcite] = ACTIONS(6730), + [anon_sym_BSLASHPvolcite] = ACTIONS(6730), + [anon_sym_BSLASHfvolcite] = ACTIONS(6730), + [anon_sym_BSLASHftvolcite] = ACTIONS(6730), + [anon_sym_BSLASHsvolcite] = ACTIONS(6730), + [anon_sym_BSLASHSvolcite] = ACTIONS(6730), + [anon_sym_BSLASHtvolcite] = ACTIONS(6730), + [anon_sym_BSLASHTvolcite] = ACTIONS(6730), + [anon_sym_BSLASHavolcite] = ACTIONS(6730), + [anon_sym_BSLASHAvolcite] = ACTIONS(6730), + [anon_sym_BSLASHnotecite] = ACTIONS(6730), + [anon_sym_BSLASHpnotecite] = ACTIONS(6730), + [anon_sym_BSLASHPnotecite] = ACTIONS(6730), + [anon_sym_BSLASHfnotecite] = ACTIONS(6730), + [anon_sym_BSLASHusepackage] = ACTIONS(6736), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6736), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6739), + [anon_sym_BSLASHinclude] = ACTIONS(6742), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6742), + [anon_sym_BSLASHinput] = ACTIONS(6745), + [anon_sym_BSLASHsubfile] = ACTIONS(6745), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6748), + [anon_sym_BSLASHbibliography] = ACTIONS(6751), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6754), + [anon_sym_BSLASHincludesvg] = ACTIONS(6757), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6760), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6763), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6763), + [anon_sym_BSLASHimport] = ACTIONS(6766), + [anon_sym_BSLASHsubimport] = ACTIONS(6766), + [anon_sym_BSLASHinputfrom] = ACTIONS(6766), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6766), + [anon_sym_BSLASHincludefrom] = ACTIONS(6766), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6766), + [anon_sym_BSLASHlabel] = ACTIONS(6769), + [anon_sym_BSLASHref] = ACTIONS(6772), + [anon_sym_BSLASHvref] = ACTIONS(6772), + [anon_sym_BSLASHVref] = ACTIONS(6772), + [anon_sym_BSLASHautoref] = ACTIONS(6772), + [anon_sym_BSLASHpageref] = ACTIONS(6772), + [anon_sym_BSLASHcref] = ACTIONS(6772), + [anon_sym_BSLASHCref] = ACTIONS(6772), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6775), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6775), + [anon_sym_BSLASHnamecref] = ACTIONS(6772), + [anon_sym_BSLASHnameCref] = ACTIONS(6772), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6772), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6772), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6772), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6772), + [anon_sym_BSLASHlabelcref] = ACTIONS(6772), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6772), + [anon_sym_BSLASHeqref] = ACTIONS(6778), + [anon_sym_BSLASHcrefrange] = ACTIONS(6781), + [anon_sym_BSLASHCrefrange] = ACTIONS(6781), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6784), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6784), + [anon_sym_BSLASHnewlabel] = ACTIONS(6787), + [anon_sym_BSLASHnewcommand] = ACTIONS(6790), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6790), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6790), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6793), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6796), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6799), + [anon_sym_BSLASHgls] = ACTIONS(6802), + [anon_sym_BSLASHGls] = ACTIONS(6802), + [anon_sym_BSLASHGLS] = ACTIONS(6802), + [anon_sym_BSLASHglspl] = ACTIONS(6802), + [anon_sym_BSLASHGlspl] = ACTIONS(6802), + [anon_sym_BSLASHGLSpl] = ACTIONS(6802), + [anon_sym_BSLASHglsdisp] = ACTIONS(6802), + [anon_sym_BSLASHglslink] = ACTIONS(6802), + [anon_sym_BSLASHglstext] = ACTIONS(6802), + [anon_sym_BSLASHGlstext] = ACTIONS(6802), + [anon_sym_BSLASHGLStext] = ACTIONS(6802), + [anon_sym_BSLASHglsfirst] = ACTIONS(6802), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6802), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6802), + [anon_sym_BSLASHglsplural] = ACTIONS(6802), + [anon_sym_BSLASHGlsplural] = ACTIONS(6802), + [anon_sym_BSLASHGLSplural] = ACTIONS(6802), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6802), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6802), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6802), + [anon_sym_BSLASHglsname] = ACTIONS(6802), + [anon_sym_BSLASHGlsname] = ACTIONS(6802), + [anon_sym_BSLASHGLSname] = ACTIONS(6802), + [anon_sym_BSLASHglssymbol] = ACTIONS(6802), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6802), + [anon_sym_BSLASHglsdesc] = ACTIONS(6802), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6802), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6802), + [anon_sym_BSLASHglsuseri] = ACTIONS(6802), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6802), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6802), + [anon_sym_BSLASHglsuserii] = ACTIONS(6802), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6802), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6802), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6802), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6802), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6802), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6802), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6802), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6802), + [anon_sym_BSLASHglsuserv] = ACTIONS(6802), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6802), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6802), + [anon_sym_BSLASHglsuservi] = ACTIONS(6802), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6802), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6802), + [anon_sym_BSLASHnewacronym] = ACTIONS(6805), + [anon_sym_BSLASHacrshort] = ACTIONS(6808), + [anon_sym_BSLASHAcrshort] = ACTIONS(6808), + [anon_sym_BSLASHACRshort] = ACTIONS(6808), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6808), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6808), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6808), + [anon_sym_BSLASHacrlong] = ACTIONS(6808), + [anon_sym_BSLASHAcrlong] = ACTIONS(6808), + [anon_sym_BSLASHACRlong] = ACTIONS(6808), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6808), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6808), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6808), + [anon_sym_BSLASHacrfull] = ACTIONS(6808), + [anon_sym_BSLASHAcrfull] = ACTIONS(6808), + [anon_sym_BSLASHACRfull] = ACTIONS(6808), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6808), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6808), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6808), + [anon_sym_BSLASHacs] = ACTIONS(6808), + [anon_sym_BSLASHAcs] = ACTIONS(6808), + [anon_sym_BSLASHacsp] = ACTIONS(6808), + [anon_sym_BSLASHAcsp] = ACTIONS(6808), + [anon_sym_BSLASHacl] = ACTIONS(6808), + [anon_sym_BSLASHAcl] = ACTIONS(6808), + [anon_sym_BSLASHaclp] = ACTIONS(6808), + [anon_sym_BSLASHAclp] = ACTIONS(6808), + [anon_sym_BSLASHacf] = ACTIONS(6808), + [anon_sym_BSLASHAcf] = ACTIONS(6808), + [anon_sym_BSLASHacfp] = ACTIONS(6808), + [anon_sym_BSLASHAcfp] = ACTIONS(6808), + [anon_sym_BSLASHac] = ACTIONS(6808), + [anon_sym_BSLASHAc] = ACTIONS(6808), + [anon_sym_BSLASHacp] = ACTIONS(6808), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6808), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6808), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6808), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6808), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6808), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6808), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6808), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6808), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6808), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6808), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6811), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6811), + [anon_sym_BSLASHcolor] = ACTIONS(6814), + [anon_sym_BSLASHcolorbox] = ACTIONS(6814), + [anon_sym_BSLASHtextcolor] = ACTIONS(6814), + [anon_sym_BSLASHpagecolor] = ACTIONS(6814), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6817), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6820), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6823), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6826), + }, + [345] = { + [sym__simple_content] = STATE(353), + [sym_subsubsection] = STATE(353), + [sym_paragraph] = STATE(353), + [sym_subparagraph] = STATE(353), + [sym_enum_item] = STATE(353), + [sym_brace_group] = STATE(353), + [sym_mixed_group] = STATE(353), + [sym_text] = STATE(353), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(353), + [sym_inline_formula] = STATE(353), + [sym_begin] = STATE(105), + [sym_environment] = STATE(353), + [sym_caption] = STATE(353), + [sym_citation] = STATE(353), + [sym_package_include] = STATE(353), + [sym_class_include] = STATE(353), + [sym_latex_include] = STATE(353), + [sym_latex_input] = STATE(353), + [sym_biblatex_include] = STATE(353), + [sym_bibtex_include] = STATE(353), + [sym_graphics_include] = STATE(353), + [sym_svg_include] = STATE(353), + [sym_inkscape_include] = STATE(353), + [sym_verbatim_include] = STATE(353), + [sym_import] = STATE(353), + [sym_label_definition] = STATE(353), + [sym_label_reference] = STATE(353), + [sym_equation_label_reference] = STATE(353), + [sym_label_reference_range] = STATE(353), + [sym_label_number] = STATE(353), + [sym_command_definition] = STATE(353), + [sym_math_operator] = STATE(353), + [sym_glossary_entry_definition] = STATE(353), + [sym_glossary_entry_reference] = STATE(353), + [sym_acronym_definition] = STATE(353), + [sym_acronym_reference] = STATE(353), + [sym_theorem_definition] = STATE(353), + [sym_color_reference] = STATE(353), + [sym_color_definition] = STATE(353), + [sym_color_set_definition] = STATE(353), + [sym_pgf_library_import] = STATE(353), + [sym_tikz_library_import] = STATE(353), + [sym_generic_command] = STATE(353), + [aux_sym_subsection_repeat1] = STATE(353), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(2292), + [aux_sym_subsubsection_token1] = ACTIONS(6318), + [aux_sym_paragraph_token1] = ACTIONS(6320), + [aux_sym_subparagraph_token1] = ACTIONS(6322), + [anon_sym_BSLASHitem] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(2290), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(6829), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [346] = { + [sym__simple_content] = STATE(346), + [sym_subparagraph] = STATE(346), + [sym_enum_item] = STATE(346), + [sym_brace_group] = STATE(346), + [sym_mixed_group] = STATE(346), + [sym_text] = STATE(346), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(346), + [sym_inline_formula] = STATE(346), + [sym_begin] = STATE(73), + [sym_environment] = STATE(346), + [sym_caption] = STATE(346), + [sym_citation] = STATE(346), + [sym_package_include] = STATE(346), + [sym_class_include] = STATE(346), + [sym_latex_include] = STATE(346), + [sym_latex_input] = STATE(346), + [sym_biblatex_include] = STATE(346), + [sym_bibtex_include] = STATE(346), + [sym_graphics_include] = STATE(346), + [sym_svg_include] = STATE(346), + [sym_inkscape_include] = STATE(346), + [sym_verbatim_include] = STATE(346), + [sym_import] = STATE(346), + [sym_label_definition] = STATE(346), + [sym_label_reference] = STATE(346), + [sym_equation_label_reference] = STATE(346), + [sym_label_reference_range] = STATE(346), + [sym_label_number] = STATE(346), + [sym_command_definition] = STATE(346), + [sym_math_operator] = STATE(346), + [sym_glossary_entry_definition] = STATE(346), + [sym_glossary_entry_reference] = STATE(346), + [sym_acronym_definition] = STATE(346), + [sym_acronym_reference] = STATE(346), + [sym_theorem_definition] = STATE(346), + [sym_color_reference] = STATE(346), + [sym_color_definition] = STATE(346), + [sym_color_set_definition] = STATE(346), + [sym_pgf_library_import] = STATE(346), + [sym_tikz_library_import] = STATE(346), + [sym_generic_command] = STATE(346), + [aux_sym_paragraph_repeat1] = STATE(346), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(6831), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4165), + [aux_sym_chapter_token1] = ACTIONS(4165), + [aux_sym_section_token1] = ACTIONS(4165), + [aux_sym_subsection_token1] = ACTIONS(4165), + [aux_sym_subsubsection_token1] = ACTIONS(4165), + [aux_sym_paragraph_token1] = ACTIONS(4165), + [aux_sym_subparagraph_token1] = ACTIONS(6834), + [anon_sym_BSLASHitem] = ACTIONS(6837), + [anon_sym_LBRACK] = ACTIONS(6840), + [anon_sym_LBRACE] = ACTIONS(6843), + [anon_sym_LPAREN] = ACTIONS(6840), + [anon_sym_COMMA] = ACTIONS(6846), + [anon_sym_EQ] = ACTIONS(6846), + [sym_word] = ACTIONS(6846), + [sym_param] = ACTIONS(6849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6852), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6852), + [anon_sym_DOLLAR] = ACTIONS(6855), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6858), + [anon_sym_BSLASHbegin] = ACTIONS(4194), + [anon_sym_BSLASHend] = ACTIONS(4165), + [anon_sym_BSLASHcaption] = ACTIONS(6861), + [anon_sym_BSLASHcite] = ACTIONS(6864), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6867), + [anon_sym_BSLASHCite] = ACTIONS(6864), + [anon_sym_BSLASHnocite] = ACTIONS(6864), + [anon_sym_BSLASHcitet] = ACTIONS(6864), + [anon_sym_BSLASHcitep] = ACTIONS(6864), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6867), + [anon_sym_BSLASHciteauthor] = ACTIONS(6864), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6864), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6867), + [anon_sym_BSLASHcitetitle] = ACTIONS(6864), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6867), + [anon_sym_BSLASHciteyear] = ACTIONS(6864), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6867), + [anon_sym_BSLASHcitedate] = ACTIONS(6864), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6867), + [anon_sym_BSLASHciteurl] = ACTIONS(6864), + [anon_sym_BSLASHfullcite] = ACTIONS(6864), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6864), + [anon_sym_BSLASHcitealt] = ACTIONS(6864), + [anon_sym_BSLASHcitealp] = ACTIONS(6864), + [anon_sym_BSLASHcitetext] = ACTIONS(6864), + [anon_sym_BSLASHparencite] = ACTIONS(6864), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6867), + [anon_sym_BSLASHParencite] = ACTIONS(6864), + [anon_sym_BSLASHfootcite] = ACTIONS(6864), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6864), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6864), + [anon_sym_BSLASHtextcite] = ACTIONS(6864), + [anon_sym_BSLASHTextcite] = ACTIONS(6864), + [anon_sym_BSLASHsmartcite] = ACTIONS(6864), + [anon_sym_BSLASHSmartcite] = ACTIONS(6864), + [anon_sym_BSLASHsupercite] = ACTIONS(6864), + [anon_sym_BSLASHautocite] = ACTIONS(6864), + [anon_sym_BSLASHAutocite] = ACTIONS(6864), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6867), + [anon_sym_BSLASHvolcite] = ACTIONS(6864), + [anon_sym_BSLASHVolcite] = ACTIONS(6864), + [anon_sym_BSLASHpvolcite] = ACTIONS(6864), + [anon_sym_BSLASHPvolcite] = ACTIONS(6864), + [anon_sym_BSLASHfvolcite] = ACTIONS(6864), + [anon_sym_BSLASHftvolcite] = ACTIONS(6864), + [anon_sym_BSLASHsvolcite] = ACTIONS(6864), + [anon_sym_BSLASHSvolcite] = ACTIONS(6864), + [anon_sym_BSLASHtvolcite] = ACTIONS(6864), + [anon_sym_BSLASHTvolcite] = ACTIONS(6864), + [anon_sym_BSLASHavolcite] = ACTIONS(6864), + [anon_sym_BSLASHAvolcite] = ACTIONS(6864), + [anon_sym_BSLASHnotecite] = ACTIONS(6864), + [anon_sym_BSLASHpnotecite] = ACTIONS(6864), + [anon_sym_BSLASHPnotecite] = ACTIONS(6864), + [anon_sym_BSLASHfnotecite] = ACTIONS(6864), + [anon_sym_BSLASHusepackage] = ACTIONS(6870), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6870), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6873), + [anon_sym_BSLASHinclude] = ACTIONS(6876), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6876), + [anon_sym_BSLASHinput] = ACTIONS(6879), + [anon_sym_BSLASHsubfile] = ACTIONS(6879), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6882), + [anon_sym_BSLASHbibliography] = ACTIONS(6885), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6888), + [anon_sym_BSLASHincludesvg] = ACTIONS(6891), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6894), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6897), + [anon_sym_BSLASHimport] = ACTIONS(6900), + [anon_sym_BSLASHsubimport] = ACTIONS(6900), + [anon_sym_BSLASHinputfrom] = ACTIONS(6900), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6900), + [anon_sym_BSLASHincludefrom] = ACTIONS(6900), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6900), + [anon_sym_BSLASHlabel] = ACTIONS(6903), + [anon_sym_BSLASHref] = ACTIONS(6906), + [anon_sym_BSLASHvref] = ACTIONS(6906), + [anon_sym_BSLASHVref] = ACTIONS(6906), + [anon_sym_BSLASHautoref] = ACTIONS(6906), + [anon_sym_BSLASHpageref] = ACTIONS(6906), + [anon_sym_BSLASHcref] = ACTIONS(6906), + [anon_sym_BSLASHCref] = ACTIONS(6906), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6909), + [anon_sym_BSLASHnamecref] = ACTIONS(6906), + [anon_sym_BSLASHnameCref] = ACTIONS(6906), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6906), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6906), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6906), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6906), + [anon_sym_BSLASHlabelcref] = ACTIONS(6906), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6906), + [anon_sym_BSLASHeqref] = ACTIONS(6912), + [anon_sym_BSLASHcrefrange] = ACTIONS(6915), + [anon_sym_BSLASHCrefrange] = ACTIONS(6915), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6918), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6918), + [anon_sym_BSLASHnewlabel] = ACTIONS(6921), + [anon_sym_BSLASHnewcommand] = ACTIONS(6924), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6924), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6924), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6927), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6930), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6933), + [anon_sym_BSLASHgls] = ACTIONS(6936), + [anon_sym_BSLASHGls] = ACTIONS(6936), + [anon_sym_BSLASHGLS] = ACTIONS(6936), + [anon_sym_BSLASHglspl] = ACTIONS(6936), + [anon_sym_BSLASHGlspl] = ACTIONS(6936), + [anon_sym_BSLASHGLSpl] = ACTIONS(6936), + [anon_sym_BSLASHglsdisp] = ACTIONS(6936), + [anon_sym_BSLASHglslink] = ACTIONS(6936), + [anon_sym_BSLASHglstext] = ACTIONS(6936), + [anon_sym_BSLASHGlstext] = ACTIONS(6936), + [anon_sym_BSLASHGLStext] = ACTIONS(6936), + [anon_sym_BSLASHglsfirst] = ACTIONS(6936), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6936), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6936), + [anon_sym_BSLASHglsplural] = ACTIONS(6936), + [anon_sym_BSLASHGlsplural] = ACTIONS(6936), + [anon_sym_BSLASHGLSplural] = ACTIONS(6936), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6936), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6936), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6936), + [anon_sym_BSLASHglsname] = ACTIONS(6936), + [anon_sym_BSLASHGlsname] = ACTIONS(6936), + [anon_sym_BSLASHGLSname] = ACTIONS(6936), + [anon_sym_BSLASHglssymbol] = ACTIONS(6936), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6936), + [anon_sym_BSLASHglsdesc] = ACTIONS(6936), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6936), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6936), + [anon_sym_BSLASHglsuseri] = ACTIONS(6936), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6936), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6936), + [anon_sym_BSLASHglsuserii] = ACTIONS(6936), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6936), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6936), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6936), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6936), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6936), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6936), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6936), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6936), + [anon_sym_BSLASHglsuserv] = ACTIONS(6936), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6936), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6936), + [anon_sym_BSLASHglsuservi] = ACTIONS(6936), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6936), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6936), + [anon_sym_BSLASHnewacronym] = ACTIONS(6939), + [anon_sym_BSLASHacrshort] = ACTIONS(6942), + [anon_sym_BSLASHAcrshort] = ACTIONS(6942), + [anon_sym_BSLASHACRshort] = ACTIONS(6942), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6942), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6942), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6942), + [anon_sym_BSLASHacrlong] = ACTIONS(6942), + [anon_sym_BSLASHAcrlong] = ACTIONS(6942), + [anon_sym_BSLASHACRlong] = ACTIONS(6942), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6942), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6942), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6942), + [anon_sym_BSLASHacrfull] = ACTIONS(6942), + [anon_sym_BSLASHAcrfull] = ACTIONS(6942), + [anon_sym_BSLASHACRfull] = ACTIONS(6942), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6942), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6942), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6942), + [anon_sym_BSLASHacs] = ACTIONS(6942), + [anon_sym_BSLASHAcs] = ACTIONS(6942), + [anon_sym_BSLASHacsp] = ACTIONS(6942), + [anon_sym_BSLASHAcsp] = ACTIONS(6942), + [anon_sym_BSLASHacl] = ACTIONS(6942), + [anon_sym_BSLASHAcl] = ACTIONS(6942), + [anon_sym_BSLASHaclp] = ACTIONS(6942), + [anon_sym_BSLASHAclp] = ACTIONS(6942), + [anon_sym_BSLASHacf] = ACTIONS(6942), + [anon_sym_BSLASHAcf] = ACTIONS(6942), + [anon_sym_BSLASHacfp] = ACTIONS(6942), + [anon_sym_BSLASHAcfp] = ACTIONS(6942), + [anon_sym_BSLASHac] = ACTIONS(6942), + [anon_sym_BSLASHAc] = ACTIONS(6942), + [anon_sym_BSLASHacp] = ACTIONS(6942), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6942), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6942), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6942), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6942), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6942), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6942), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6942), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6942), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6942), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6942), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6945), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6945), + [anon_sym_BSLASHcolor] = ACTIONS(6948), + [anon_sym_BSLASHcolorbox] = ACTIONS(6948), + [anon_sym_BSLASHtextcolor] = ACTIONS(6948), + [anon_sym_BSLASHpagecolor] = ACTIONS(6948), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6951), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6954), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6957), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6960), + }, + [347] = { + [sym__simple_content] = STATE(347), + [sym_subparagraph] = STATE(347), + [sym_enum_item] = STATE(347), + [sym_brace_group] = STATE(347), + [sym_mixed_group] = STATE(347), + [sym_text] = STATE(347), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(347), + [sym_inline_formula] = STATE(347), + [sym_begin] = STATE(86), + [sym_environment] = STATE(347), + [sym_caption] = STATE(347), + [sym_citation] = STATE(347), + [sym_package_include] = STATE(347), + [sym_class_include] = STATE(347), + [sym_latex_include] = STATE(347), + [sym_latex_input] = STATE(347), + [sym_biblatex_include] = STATE(347), + [sym_bibtex_include] = STATE(347), + [sym_graphics_include] = STATE(347), + [sym_svg_include] = STATE(347), + [sym_inkscape_include] = STATE(347), + [sym_verbatim_include] = STATE(347), + [sym_import] = STATE(347), + [sym_label_definition] = STATE(347), + [sym_label_reference] = STATE(347), + [sym_equation_label_reference] = STATE(347), + [sym_label_reference_range] = STATE(347), + [sym_label_number] = STATE(347), + [sym_command_definition] = STATE(347), + [sym_math_operator] = STATE(347), + [sym_glossary_entry_definition] = STATE(347), + [sym_glossary_entry_reference] = STATE(347), + [sym_acronym_definition] = STATE(347), + [sym_acronym_reference] = STATE(347), + [sym_theorem_definition] = STATE(347), + [sym_color_reference] = STATE(347), + [sym_color_definition] = STATE(347), + [sym_color_set_definition] = STATE(347), + [sym_pgf_library_import] = STATE(347), + [sym_tikz_library_import] = STATE(347), + [sym_generic_command] = STATE(347), + [aux_sym_paragraph_repeat1] = STATE(347), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(6963), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(4165), + [aux_sym_section_token1] = ACTIONS(4165), + [aux_sym_subsection_token1] = ACTIONS(4165), + [aux_sym_subsubsection_token1] = ACTIONS(4165), + [aux_sym_paragraph_token1] = ACTIONS(4165), + [aux_sym_subparagraph_token1] = ACTIONS(6966), + [anon_sym_BSLASHitem] = ACTIONS(6969), + [anon_sym_LBRACK] = ACTIONS(6972), + [anon_sym_RBRACK] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(6975), + [anon_sym_RBRACE] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(6972), + [anon_sym_COMMA] = ACTIONS(6978), + [anon_sym_EQ] = ACTIONS(6978), + [sym_word] = ACTIONS(6978), + [sym_param] = ACTIONS(6981), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6984), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6984), + [anon_sym_DOLLAR] = ACTIONS(6987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6990), + [anon_sym_BSLASHbegin] = ACTIONS(4194), + [anon_sym_BSLASHcaption] = ACTIONS(6993), + [anon_sym_BSLASHcite] = ACTIONS(6996), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6999), + [anon_sym_BSLASHCite] = ACTIONS(6996), + [anon_sym_BSLASHnocite] = ACTIONS(6996), + [anon_sym_BSLASHcitet] = ACTIONS(6996), + [anon_sym_BSLASHcitep] = ACTIONS(6996), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6999), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6999), + [anon_sym_BSLASHciteauthor] = ACTIONS(6996), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6999), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6996), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6999), + [anon_sym_BSLASHcitetitle] = ACTIONS(6996), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6999), + [anon_sym_BSLASHciteyear] = ACTIONS(6996), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6999), + [anon_sym_BSLASHcitedate] = ACTIONS(6996), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6999), + [anon_sym_BSLASHciteurl] = ACTIONS(6996), + [anon_sym_BSLASHfullcite] = ACTIONS(6996), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6996), + [anon_sym_BSLASHcitealt] = ACTIONS(6996), + [anon_sym_BSLASHcitealp] = ACTIONS(6996), + [anon_sym_BSLASHcitetext] = ACTIONS(6996), + [anon_sym_BSLASHparencite] = ACTIONS(6996), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6999), + [anon_sym_BSLASHParencite] = ACTIONS(6996), + [anon_sym_BSLASHfootcite] = ACTIONS(6996), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6996), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6996), + [anon_sym_BSLASHtextcite] = ACTIONS(6996), + [anon_sym_BSLASHTextcite] = ACTIONS(6996), + [anon_sym_BSLASHsmartcite] = ACTIONS(6996), + [anon_sym_BSLASHSmartcite] = ACTIONS(6996), + [anon_sym_BSLASHsupercite] = ACTIONS(6996), + [anon_sym_BSLASHautocite] = ACTIONS(6996), + [anon_sym_BSLASHAutocite] = ACTIONS(6996), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6999), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6999), + [anon_sym_BSLASHvolcite] = ACTIONS(6996), + [anon_sym_BSLASHVolcite] = ACTIONS(6996), + [anon_sym_BSLASHpvolcite] = ACTIONS(6996), + [anon_sym_BSLASHPvolcite] = ACTIONS(6996), + [anon_sym_BSLASHfvolcite] = ACTIONS(6996), + [anon_sym_BSLASHftvolcite] = ACTIONS(6996), + [anon_sym_BSLASHsvolcite] = ACTIONS(6996), + [anon_sym_BSLASHSvolcite] = ACTIONS(6996), + [anon_sym_BSLASHtvolcite] = ACTIONS(6996), + [anon_sym_BSLASHTvolcite] = ACTIONS(6996), + [anon_sym_BSLASHavolcite] = ACTIONS(6996), + [anon_sym_BSLASHAvolcite] = ACTIONS(6996), + [anon_sym_BSLASHnotecite] = ACTIONS(6996), + [anon_sym_BSLASHpnotecite] = ACTIONS(6996), + [anon_sym_BSLASHPnotecite] = ACTIONS(6996), + [anon_sym_BSLASHfnotecite] = ACTIONS(6996), + [anon_sym_BSLASHusepackage] = ACTIONS(7002), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7002), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7005), + [anon_sym_BSLASHinclude] = ACTIONS(7008), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7008), + [anon_sym_BSLASHinput] = ACTIONS(7011), + [anon_sym_BSLASHsubfile] = ACTIONS(7011), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7014), + [anon_sym_BSLASHbibliography] = ACTIONS(7017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7020), + [anon_sym_BSLASHincludesvg] = ACTIONS(7023), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7026), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7029), + [anon_sym_BSLASHimport] = ACTIONS(7032), + [anon_sym_BSLASHsubimport] = ACTIONS(7032), + [anon_sym_BSLASHinputfrom] = ACTIONS(7032), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7032), + [anon_sym_BSLASHincludefrom] = ACTIONS(7032), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7032), + [anon_sym_BSLASHlabel] = ACTIONS(7035), + [anon_sym_BSLASHref] = ACTIONS(7038), + [anon_sym_BSLASHvref] = ACTIONS(7038), + [anon_sym_BSLASHVref] = ACTIONS(7038), + [anon_sym_BSLASHautoref] = ACTIONS(7038), + [anon_sym_BSLASHpageref] = ACTIONS(7038), + [anon_sym_BSLASHcref] = ACTIONS(7038), + [anon_sym_BSLASHCref] = ACTIONS(7038), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7041), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7041), + [anon_sym_BSLASHnamecref] = ACTIONS(7038), + [anon_sym_BSLASHnameCref] = ACTIONS(7038), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7038), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7038), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7038), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7038), + [anon_sym_BSLASHlabelcref] = ACTIONS(7038), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7038), + [anon_sym_BSLASHeqref] = ACTIONS(7044), + [anon_sym_BSLASHcrefrange] = ACTIONS(7047), + [anon_sym_BSLASHCrefrange] = ACTIONS(7047), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7050), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7050), + [anon_sym_BSLASHnewlabel] = ACTIONS(7053), + [anon_sym_BSLASHnewcommand] = ACTIONS(7056), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7056), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7056), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7059), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7062), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7065), + [anon_sym_BSLASHgls] = ACTIONS(7068), + [anon_sym_BSLASHGls] = ACTIONS(7068), + [anon_sym_BSLASHGLS] = ACTIONS(7068), + [anon_sym_BSLASHglspl] = ACTIONS(7068), + [anon_sym_BSLASHGlspl] = ACTIONS(7068), + [anon_sym_BSLASHGLSpl] = ACTIONS(7068), + [anon_sym_BSLASHglsdisp] = ACTIONS(7068), + [anon_sym_BSLASHglslink] = ACTIONS(7068), + [anon_sym_BSLASHglstext] = ACTIONS(7068), + [anon_sym_BSLASHGlstext] = ACTIONS(7068), + [anon_sym_BSLASHGLStext] = ACTIONS(7068), + [anon_sym_BSLASHglsfirst] = ACTIONS(7068), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7068), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7068), + [anon_sym_BSLASHglsplural] = ACTIONS(7068), + [anon_sym_BSLASHGlsplural] = ACTIONS(7068), + [anon_sym_BSLASHGLSplural] = ACTIONS(7068), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7068), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7068), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7068), + [anon_sym_BSLASHglsname] = ACTIONS(7068), + [anon_sym_BSLASHGlsname] = ACTIONS(7068), + [anon_sym_BSLASHGLSname] = ACTIONS(7068), + [anon_sym_BSLASHglssymbol] = ACTIONS(7068), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7068), + [anon_sym_BSLASHglsdesc] = ACTIONS(7068), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7068), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7068), + [anon_sym_BSLASHglsuseri] = ACTIONS(7068), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7068), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7068), + [anon_sym_BSLASHglsuserii] = ACTIONS(7068), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7068), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7068), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7068), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7068), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7068), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7068), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7068), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7068), + [anon_sym_BSLASHglsuserv] = ACTIONS(7068), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7068), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7068), + [anon_sym_BSLASHglsuservi] = ACTIONS(7068), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7068), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7068), + [anon_sym_BSLASHnewacronym] = ACTIONS(7071), + [anon_sym_BSLASHacrshort] = ACTIONS(7074), + [anon_sym_BSLASHAcrshort] = ACTIONS(7074), + [anon_sym_BSLASHACRshort] = ACTIONS(7074), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7074), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7074), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7074), + [anon_sym_BSLASHacrlong] = ACTIONS(7074), + [anon_sym_BSLASHAcrlong] = ACTIONS(7074), + [anon_sym_BSLASHACRlong] = ACTIONS(7074), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7074), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7074), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7074), + [anon_sym_BSLASHacrfull] = ACTIONS(7074), + [anon_sym_BSLASHAcrfull] = ACTIONS(7074), + [anon_sym_BSLASHACRfull] = ACTIONS(7074), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7074), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7074), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7074), + [anon_sym_BSLASHacs] = ACTIONS(7074), + [anon_sym_BSLASHAcs] = ACTIONS(7074), + [anon_sym_BSLASHacsp] = ACTIONS(7074), + [anon_sym_BSLASHAcsp] = ACTIONS(7074), + [anon_sym_BSLASHacl] = ACTIONS(7074), + [anon_sym_BSLASHAcl] = ACTIONS(7074), + [anon_sym_BSLASHaclp] = ACTIONS(7074), + [anon_sym_BSLASHAclp] = ACTIONS(7074), + [anon_sym_BSLASHacf] = ACTIONS(7074), + [anon_sym_BSLASHAcf] = ACTIONS(7074), + [anon_sym_BSLASHacfp] = ACTIONS(7074), + [anon_sym_BSLASHAcfp] = ACTIONS(7074), + [anon_sym_BSLASHac] = ACTIONS(7074), + [anon_sym_BSLASHAc] = ACTIONS(7074), + [anon_sym_BSLASHacp] = ACTIONS(7074), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7074), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7074), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7074), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7074), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7074), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7074), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7074), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7074), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7074), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7074), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7077), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7077), + [anon_sym_BSLASHcolor] = ACTIONS(7080), + [anon_sym_BSLASHcolorbox] = ACTIONS(7080), + [anon_sym_BSLASHtextcolor] = ACTIONS(7080), + [anon_sym_BSLASHpagecolor] = ACTIONS(7080), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7083), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7086), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7092), + }, + [348] = { + [sym__simple_content] = STATE(345), + [sym_subsubsection] = STATE(345), + [sym_paragraph] = STATE(345), + [sym_subparagraph] = STATE(345), + [sym_enum_item] = STATE(345), + [sym_brace_group] = STATE(345), + [sym_mixed_group] = STATE(345), + [sym_text] = STATE(345), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(345), + [sym_inline_formula] = STATE(345), + [sym_begin] = STATE(105), + [sym_environment] = STATE(345), + [sym_caption] = STATE(345), + [sym_citation] = STATE(345), + [sym_package_include] = STATE(345), + [sym_class_include] = STATE(345), + [sym_latex_include] = STATE(345), + [sym_latex_input] = STATE(345), + [sym_biblatex_include] = STATE(345), + [sym_bibtex_include] = STATE(345), + [sym_graphics_include] = STATE(345), + [sym_svg_include] = STATE(345), + [sym_inkscape_include] = STATE(345), + [sym_verbatim_include] = STATE(345), + [sym_import] = STATE(345), + [sym_label_definition] = STATE(345), + [sym_label_reference] = STATE(345), + [sym_equation_label_reference] = STATE(345), + [sym_label_reference_range] = STATE(345), + [sym_label_number] = STATE(345), + [sym_command_definition] = STATE(345), + [sym_math_operator] = STATE(345), + [sym_glossary_entry_definition] = STATE(345), + [sym_glossary_entry_reference] = STATE(345), + [sym_acronym_definition] = STATE(345), + [sym_acronym_reference] = STATE(345), + [sym_theorem_definition] = STATE(345), + [sym_color_reference] = STATE(345), + [sym_color_definition] = STATE(345), + [sym_color_set_definition] = STATE(345), + [sym_pgf_library_import] = STATE(345), + [sym_tikz_library_import] = STATE(345), + [sym_generic_command] = STATE(345), + [aux_sym_subsection_repeat1] = STATE(345), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(2286), + [aux_sym_subsubsection_token1] = ACTIONS(6318), + [aux_sym_paragraph_token1] = ACTIONS(6320), + [aux_sym_subparagraph_token1] = ACTIONS(6322), + [anon_sym_BSLASHitem] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(7095), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [349] = { + [sym__simple_content] = STATE(355), + [sym_subparagraph] = STATE(355), + [sym_enum_item] = STATE(355), + [sym_brace_group] = STATE(355), + [sym_mixed_group] = STATE(355), + [sym_text] = STATE(355), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(355), + [sym_inline_formula] = STATE(355), + [sym_begin] = STATE(73), + [sym_environment] = STATE(355), + [sym_caption] = STATE(355), + [sym_citation] = STATE(355), + [sym_package_include] = STATE(355), + [sym_class_include] = STATE(355), + [sym_latex_include] = STATE(355), + [sym_latex_input] = STATE(355), + [sym_biblatex_include] = STATE(355), + [sym_bibtex_include] = STATE(355), + [sym_graphics_include] = STATE(355), + [sym_svg_include] = STATE(355), + [sym_inkscape_include] = STATE(355), + [sym_verbatim_include] = STATE(355), + [sym_import] = STATE(355), + [sym_label_definition] = STATE(355), + [sym_label_reference] = STATE(355), + [sym_equation_label_reference] = STATE(355), + [sym_label_reference_range] = STATE(355), + [sym_label_number] = STATE(355), + [sym_command_definition] = STATE(355), + [sym_math_operator] = STATE(355), + [sym_glossary_entry_definition] = STATE(355), + [sym_glossary_entry_reference] = STATE(355), + [sym_acronym_definition] = STATE(355), + [sym_acronym_reference] = STATE(355), + [sym_theorem_definition] = STATE(355), + [sym_color_reference] = STATE(355), + [sym_color_definition] = STATE(355), + [sym_color_set_definition] = STATE(355), + [sym_pgf_library_import] = STATE(355), + [sym_tikz_library_import] = STATE(355), + [sym_generic_command] = STATE(355), + [aux_sym_paragraph_repeat1] = STATE(355), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4054), + [aux_sym_chapter_token1] = ACTIONS(4054), + [aux_sym_section_token1] = ACTIONS(4054), + [aux_sym_subsection_token1] = ACTIONS(4054), + [aux_sym_subsubsection_token1] = ACTIONS(4054), + [aux_sym_paragraph_token1] = ACTIONS(4054), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(7097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(4054), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [350] = { + [sym__simple_content] = STATE(357), + [sym_subparagraph] = STATE(357), + [sym_enum_item] = STATE(357), + [sym_brace_group] = STATE(357), + [sym_mixed_group] = STATE(357), + [sym_text] = STATE(357), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(357), + [sym_inline_formula] = STATE(357), + [sym_begin] = STATE(59), + [sym_environment] = STATE(357), + [sym_caption] = STATE(357), + [sym_citation] = STATE(357), + [sym_package_include] = STATE(357), + [sym_class_include] = STATE(357), + [sym_latex_include] = STATE(357), + [sym_latex_input] = STATE(357), + [sym_biblatex_include] = STATE(357), + [sym_bibtex_include] = STATE(357), + [sym_graphics_include] = STATE(357), + [sym_svg_include] = STATE(357), + [sym_inkscape_include] = STATE(357), + [sym_verbatim_include] = STATE(357), + [sym_import] = STATE(357), + [sym_label_definition] = STATE(357), + [sym_label_reference] = STATE(357), + [sym_equation_label_reference] = STATE(357), + [sym_label_reference_range] = STATE(357), + [sym_label_number] = STATE(357), + [sym_command_definition] = STATE(357), + [sym_math_operator] = STATE(357), + [sym_glossary_entry_definition] = STATE(357), + [sym_glossary_entry_reference] = STATE(357), + [sym_acronym_definition] = STATE(357), + [sym_acronym_reference] = STATE(357), + [sym_theorem_definition] = STATE(357), + [sym_color_reference] = STATE(357), + [sym_color_definition] = STATE(357), + [sym_color_set_definition] = STATE(357), + [sym_pgf_library_import] = STATE(357), + [sym_tikz_library_import] = STATE(357), + [sym_generic_command] = STATE(357), + [aux_sym_paragraph_repeat1] = STATE(357), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4156), + [aux_sym_chapter_token1] = ACTIONS(4156), + [aux_sym_section_token1] = ACTIONS(4156), + [aux_sym_subsection_token1] = ACTIONS(4156), + [aux_sym_subsubsection_token1] = ACTIONS(4156), + [aux_sym_paragraph_token1] = ACTIONS(4156), + [aux_sym_subparagraph_token1] = ACTIONS(298), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(7099), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4154), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [351] = { + [sym__simple_content] = STATE(347), + [sym_subparagraph] = STATE(347), + [sym_enum_item] = STATE(347), + [sym_brace_group] = STATE(347), + [sym_mixed_group] = STATE(347), + [sym_text] = STATE(347), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(347), + [sym_inline_formula] = STATE(347), + [sym_begin] = STATE(86), + [sym_environment] = STATE(347), + [sym_caption] = STATE(347), + [sym_citation] = STATE(347), + [sym_package_include] = STATE(347), + [sym_class_include] = STATE(347), + [sym_latex_include] = STATE(347), + [sym_latex_input] = STATE(347), + [sym_biblatex_include] = STATE(347), + [sym_bibtex_include] = STATE(347), + [sym_graphics_include] = STATE(347), + [sym_svg_include] = STATE(347), + [sym_inkscape_include] = STATE(347), + [sym_verbatim_include] = STATE(347), + [sym_import] = STATE(347), + [sym_label_definition] = STATE(347), + [sym_label_reference] = STATE(347), + [sym_equation_label_reference] = STATE(347), + [sym_label_reference_range] = STATE(347), + [sym_label_number] = STATE(347), + [sym_command_definition] = STATE(347), + [sym_math_operator] = STATE(347), + [sym_glossary_entry_definition] = STATE(347), + [sym_glossary_entry_reference] = STATE(347), + [sym_acronym_definition] = STATE(347), + [sym_acronym_reference] = STATE(347), + [sym_theorem_definition] = STATE(347), + [sym_color_reference] = STATE(347), + [sym_color_definition] = STATE(347), + [sym_color_set_definition] = STATE(347), + [sym_pgf_library_import] = STATE(347), + [sym_tikz_library_import] = STATE(347), + [sym_generic_command] = STATE(347), + [aux_sym_paragraph_repeat1] = STATE(347), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(4156), + [aux_sym_section_token1] = ACTIONS(4156), + [aux_sym_subsection_token1] = ACTIONS(4156), + [aux_sym_subsubsection_token1] = ACTIONS(4156), + [aux_sym_paragraph_token1] = ACTIONS(4156), + [aux_sym_subparagraph_token1] = ACTIONS(2310), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(7101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [352] = { + [sym__simple_content] = STATE(344), + [sym_paragraph] = STATE(344), + [sym_subparagraph] = STATE(344), + [sym_enum_item] = STATE(344), + [sym_brace_group] = STATE(344), + [sym_mixed_group] = STATE(344), + [sym_text] = STATE(344), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(344), + [sym_inline_formula] = STATE(344), + [sym_begin] = STATE(94), + [sym_environment] = STATE(344), + [sym_caption] = STATE(344), + [sym_citation] = STATE(344), + [sym_package_include] = STATE(344), + [sym_class_include] = STATE(344), + [sym_latex_include] = STATE(344), + [sym_latex_input] = STATE(344), + [sym_biblatex_include] = STATE(344), + [sym_bibtex_include] = STATE(344), + [sym_graphics_include] = STATE(344), + [sym_svg_include] = STATE(344), + [sym_inkscape_include] = STATE(344), + [sym_verbatim_include] = STATE(344), + [sym_import] = STATE(344), + [sym_label_definition] = STATE(344), + [sym_label_reference] = STATE(344), + [sym_equation_label_reference] = STATE(344), + [sym_label_reference_range] = STATE(344), + [sym_label_number] = STATE(344), + [sym_command_definition] = STATE(344), + [sym_math_operator] = STATE(344), + [sym_glossary_entry_definition] = STATE(344), + [sym_glossary_entry_reference] = STATE(344), + [sym_acronym_definition] = STATE(344), + [sym_acronym_reference] = STATE(344), + [sym_theorem_definition] = STATE(344), + [sym_color_reference] = STATE(344), + [sym_color_definition] = STATE(344), + [sym_color_set_definition] = STATE(344), + [sym_pgf_library_import] = STATE(344), + [sym_tikz_library_import] = STATE(344), + [sym_generic_command] = STATE(344), + [aux_sym_subsubsection_repeat1] = STATE(344), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(3020), + [aux_sym_subsection_token1] = ACTIONS(3020), + [aux_sym_subsubsection_token1] = ACTIONS(3020), + [aux_sym_paragraph_token1] = ACTIONS(4066), + [aux_sym_subparagraph_token1] = ACTIONS(4068), + [anon_sym_BSLASHitem] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(7103), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [353] = { + [sym__simple_content] = STATE(353), + [sym_subsubsection] = STATE(353), + [sym_paragraph] = STATE(353), + [sym_subparagraph] = STATE(353), + [sym_enum_item] = STATE(353), + [sym_brace_group] = STATE(353), + [sym_mixed_group] = STATE(353), + [sym_text] = STATE(353), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(353), + [sym_inline_formula] = STATE(353), + [sym_begin] = STATE(105), + [sym_environment] = STATE(353), + [sym_caption] = STATE(353), + [sym_citation] = STATE(353), + [sym_package_include] = STATE(353), + [sym_class_include] = STATE(353), + [sym_latex_include] = STATE(353), + [sym_latex_input] = STATE(353), + [sym_biblatex_include] = STATE(353), + [sym_bibtex_include] = STATE(353), + [sym_graphics_include] = STATE(353), + [sym_svg_include] = STATE(353), + [sym_inkscape_include] = STATE(353), + [sym_verbatim_include] = STATE(353), + [sym_import] = STATE(353), + [sym_label_definition] = STATE(353), + [sym_label_reference] = STATE(353), + [sym_equation_label_reference] = STATE(353), + [sym_label_reference_range] = STATE(353), + [sym_label_number] = STATE(353), + [sym_command_definition] = STATE(353), + [sym_math_operator] = STATE(353), + [sym_glossary_entry_definition] = STATE(353), + [sym_glossary_entry_reference] = STATE(353), + [sym_acronym_definition] = STATE(353), + [sym_acronym_reference] = STATE(353), + [sym_theorem_definition] = STATE(353), + [sym_color_reference] = STATE(353), + [sym_color_definition] = STATE(353), + [sym_color_set_definition] = STATE(353), + [sym_pgf_library_import] = STATE(353), + [sym_tikz_library_import] = STATE(353), + [sym_generic_command] = STATE(353), + [aux_sym_subsection_repeat1] = STATE(353), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(7105), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(2140), + [aux_sym_subsubsection_token1] = ACTIONS(7108), + [aux_sym_paragraph_token1] = ACTIONS(7111), + [aux_sym_subparagraph_token1] = ACTIONS(7114), + [anon_sym_BSLASHitem] = ACTIONS(7117), + [anon_sym_LBRACK] = ACTIONS(7120), + [anon_sym_RBRACK] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(7123), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(7120), + [anon_sym_COMMA] = ACTIONS(7126), + [anon_sym_EQ] = ACTIONS(7126), + [sym_word] = ACTIONS(7126), + [sym_param] = ACTIONS(7129), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7132), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7132), + [anon_sym_DOLLAR] = ACTIONS(7135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7138), + [anon_sym_BSLASHbegin] = ACTIONS(2175), + [anon_sym_BSLASHcaption] = ACTIONS(7141), + [anon_sym_BSLASHcite] = ACTIONS(7144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7147), + [anon_sym_BSLASHCite] = ACTIONS(7144), + [anon_sym_BSLASHnocite] = ACTIONS(7144), + [anon_sym_BSLASHcitet] = ACTIONS(7144), + [anon_sym_BSLASHcitep] = ACTIONS(7144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7147), + [anon_sym_BSLASHciteauthor] = ACTIONS(7144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7147), + [anon_sym_BSLASHcitetitle] = ACTIONS(7144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7147), + [anon_sym_BSLASHciteyear] = ACTIONS(7144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7147), + [anon_sym_BSLASHcitedate] = ACTIONS(7144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7147), + [anon_sym_BSLASHciteurl] = ACTIONS(7144), + [anon_sym_BSLASHfullcite] = ACTIONS(7144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7144), + [anon_sym_BSLASHcitealt] = ACTIONS(7144), + [anon_sym_BSLASHcitealp] = ACTIONS(7144), + [anon_sym_BSLASHcitetext] = ACTIONS(7144), + [anon_sym_BSLASHparencite] = ACTIONS(7144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7147), + [anon_sym_BSLASHParencite] = ACTIONS(7144), + [anon_sym_BSLASHfootcite] = ACTIONS(7144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7144), + [anon_sym_BSLASHtextcite] = ACTIONS(7144), + [anon_sym_BSLASHTextcite] = ACTIONS(7144), + [anon_sym_BSLASHsmartcite] = ACTIONS(7144), + [anon_sym_BSLASHSmartcite] = ACTIONS(7144), + [anon_sym_BSLASHsupercite] = ACTIONS(7144), + [anon_sym_BSLASHautocite] = ACTIONS(7144), + [anon_sym_BSLASHAutocite] = ACTIONS(7144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7147), + [anon_sym_BSLASHvolcite] = ACTIONS(7144), + [anon_sym_BSLASHVolcite] = ACTIONS(7144), + [anon_sym_BSLASHpvolcite] = ACTIONS(7144), + [anon_sym_BSLASHPvolcite] = ACTIONS(7144), + [anon_sym_BSLASHfvolcite] = ACTIONS(7144), + [anon_sym_BSLASHftvolcite] = ACTIONS(7144), + [anon_sym_BSLASHsvolcite] = ACTIONS(7144), + [anon_sym_BSLASHSvolcite] = ACTIONS(7144), + [anon_sym_BSLASHtvolcite] = ACTIONS(7144), + [anon_sym_BSLASHTvolcite] = ACTIONS(7144), + [anon_sym_BSLASHavolcite] = ACTIONS(7144), + [anon_sym_BSLASHAvolcite] = ACTIONS(7144), + [anon_sym_BSLASHnotecite] = ACTIONS(7144), + [anon_sym_BSLASHpnotecite] = ACTIONS(7144), + [anon_sym_BSLASHPnotecite] = ACTIONS(7144), + [anon_sym_BSLASHfnotecite] = ACTIONS(7144), + [anon_sym_BSLASHusepackage] = ACTIONS(7150), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7150), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7153), + [anon_sym_BSLASHinclude] = ACTIONS(7156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7156), + [anon_sym_BSLASHinput] = ACTIONS(7159), + [anon_sym_BSLASHsubfile] = ACTIONS(7159), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7162), + [anon_sym_BSLASHbibliography] = ACTIONS(7165), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7168), + [anon_sym_BSLASHincludesvg] = ACTIONS(7171), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7174), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7177), + [anon_sym_BSLASHimport] = ACTIONS(7180), + [anon_sym_BSLASHsubimport] = ACTIONS(7180), + [anon_sym_BSLASHinputfrom] = ACTIONS(7180), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7180), + [anon_sym_BSLASHincludefrom] = ACTIONS(7180), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7180), + [anon_sym_BSLASHlabel] = ACTIONS(7183), + [anon_sym_BSLASHref] = ACTIONS(7186), + [anon_sym_BSLASHvref] = ACTIONS(7186), + [anon_sym_BSLASHVref] = ACTIONS(7186), + [anon_sym_BSLASHautoref] = ACTIONS(7186), + [anon_sym_BSLASHpageref] = ACTIONS(7186), + [anon_sym_BSLASHcref] = ACTIONS(7186), + [anon_sym_BSLASHCref] = ACTIONS(7186), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7189), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7189), + [anon_sym_BSLASHnamecref] = ACTIONS(7186), + [anon_sym_BSLASHnameCref] = ACTIONS(7186), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7186), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7186), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7186), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7186), + [anon_sym_BSLASHlabelcref] = ACTIONS(7186), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7186), + [anon_sym_BSLASHeqref] = ACTIONS(7192), + [anon_sym_BSLASHcrefrange] = ACTIONS(7195), + [anon_sym_BSLASHCrefrange] = ACTIONS(7195), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7198), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7198), + [anon_sym_BSLASHnewlabel] = ACTIONS(7201), + [anon_sym_BSLASHnewcommand] = ACTIONS(7204), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7204), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7204), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7207), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7210), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7213), + [anon_sym_BSLASHgls] = ACTIONS(7216), + [anon_sym_BSLASHGls] = ACTIONS(7216), + [anon_sym_BSLASHGLS] = ACTIONS(7216), + [anon_sym_BSLASHglspl] = ACTIONS(7216), + [anon_sym_BSLASHGlspl] = ACTIONS(7216), + [anon_sym_BSLASHGLSpl] = ACTIONS(7216), + [anon_sym_BSLASHglsdisp] = ACTIONS(7216), + [anon_sym_BSLASHglslink] = ACTIONS(7216), + [anon_sym_BSLASHglstext] = ACTIONS(7216), + [anon_sym_BSLASHGlstext] = ACTIONS(7216), + [anon_sym_BSLASHGLStext] = ACTIONS(7216), + [anon_sym_BSLASHglsfirst] = ACTIONS(7216), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7216), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7216), + [anon_sym_BSLASHglsplural] = ACTIONS(7216), + [anon_sym_BSLASHGlsplural] = ACTIONS(7216), + [anon_sym_BSLASHGLSplural] = ACTIONS(7216), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7216), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7216), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7216), + [anon_sym_BSLASHglsname] = ACTIONS(7216), + [anon_sym_BSLASHGlsname] = ACTIONS(7216), + [anon_sym_BSLASHGLSname] = ACTIONS(7216), + [anon_sym_BSLASHglssymbol] = ACTIONS(7216), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7216), + [anon_sym_BSLASHglsdesc] = ACTIONS(7216), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7216), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7216), + [anon_sym_BSLASHglsuseri] = ACTIONS(7216), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7216), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7216), + [anon_sym_BSLASHglsuserii] = ACTIONS(7216), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7216), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7216), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7216), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7216), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7216), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7216), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7216), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7216), + [anon_sym_BSLASHglsuserv] = ACTIONS(7216), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7216), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7216), + [anon_sym_BSLASHglsuservi] = ACTIONS(7216), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7216), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7216), + [anon_sym_BSLASHnewacronym] = ACTIONS(7219), + [anon_sym_BSLASHacrshort] = ACTIONS(7222), + [anon_sym_BSLASHAcrshort] = ACTIONS(7222), + [anon_sym_BSLASHACRshort] = ACTIONS(7222), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7222), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7222), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7222), + [anon_sym_BSLASHacrlong] = ACTIONS(7222), + [anon_sym_BSLASHAcrlong] = ACTIONS(7222), + [anon_sym_BSLASHACRlong] = ACTIONS(7222), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7222), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7222), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7222), + [anon_sym_BSLASHacrfull] = ACTIONS(7222), + [anon_sym_BSLASHAcrfull] = ACTIONS(7222), + [anon_sym_BSLASHACRfull] = ACTIONS(7222), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7222), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7222), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7222), + [anon_sym_BSLASHacs] = ACTIONS(7222), + [anon_sym_BSLASHAcs] = ACTIONS(7222), + [anon_sym_BSLASHacsp] = ACTIONS(7222), + [anon_sym_BSLASHAcsp] = ACTIONS(7222), + [anon_sym_BSLASHacl] = ACTIONS(7222), + [anon_sym_BSLASHAcl] = ACTIONS(7222), + [anon_sym_BSLASHaclp] = ACTIONS(7222), + [anon_sym_BSLASHAclp] = ACTIONS(7222), + [anon_sym_BSLASHacf] = ACTIONS(7222), + [anon_sym_BSLASHAcf] = ACTIONS(7222), + [anon_sym_BSLASHacfp] = ACTIONS(7222), + [anon_sym_BSLASHAcfp] = ACTIONS(7222), + [anon_sym_BSLASHac] = ACTIONS(7222), + [anon_sym_BSLASHAc] = ACTIONS(7222), + [anon_sym_BSLASHacp] = ACTIONS(7222), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7222), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7222), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7222), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7222), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7222), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7222), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7222), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7222), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7222), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7222), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7225), + [anon_sym_BSLASHcolor] = ACTIONS(7228), + [anon_sym_BSLASHcolorbox] = ACTIONS(7228), + [anon_sym_BSLASHtextcolor] = ACTIONS(7228), + [anon_sym_BSLASHpagecolor] = ACTIONS(7228), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7234), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7237), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7240), + }, + [354] = { + [sym__simple_content] = STATE(352), + [sym_paragraph] = STATE(352), + [sym_subparagraph] = STATE(352), + [sym_enum_item] = STATE(352), + [sym_brace_group] = STATE(352), + [sym_mixed_group] = STATE(352), + [sym_text] = STATE(352), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(352), + [sym_inline_formula] = STATE(352), + [sym_begin] = STATE(94), + [sym_environment] = STATE(352), + [sym_caption] = STATE(352), + [sym_citation] = STATE(352), + [sym_package_include] = STATE(352), + [sym_class_include] = STATE(352), + [sym_latex_include] = STATE(352), + [sym_latex_input] = STATE(352), + [sym_biblatex_include] = STATE(352), + [sym_bibtex_include] = STATE(352), + [sym_graphics_include] = STATE(352), + [sym_svg_include] = STATE(352), + [sym_inkscape_include] = STATE(352), + [sym_verbatim_include] = STATE(352), + [sym_import] = STATE(352), + [sym_label_definition] = STATE(352), + [sym_label_reference] = STATE(352), + [sym_equation_label_reference] = STATE(352), + [sym_label_reference_range] = STATE(352), + [sym_label_number] = STATE(352), + [sym_command_definition] = STATE(352), + [sym_math_operator] = STATE(352), + [sym_glossary_entry_definition] = STATE(352), + [sym_glossary_entry_reference] = STATE(352), + [sym_acronym_definition] = STATE(352), + [sym_acronym_reference] = STATE(352), + [sym_theorem_definition] = STATE(352), + [sym_color_reference] = STATE(352), + [sym_color_definition] = STATE(352), + [sym_color_set_definition] = STATE(352), + [sym_pgf_library_import] = STATE(352), + [sym_tikz_library_import] = STATE(352), + [sym_generic_command] = STATE(352), + [aux_sym_subsubsection_repeat1] = STATE(352), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(3614), + [aux_sym_subsection_token1] = ACTIONS(3614), + [aux_sym_subsubsection_token1] = ACTIONS(3614), + [aux_sym_paragraph_token1] = ACTIONS(4066), + [aux_sym_subparagraph_token1] = ACTIONS(4068), + [anon_sym_BSLASHitem] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(7243), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [355] = { + [sym__simple_content] = STATE(346), + [sym_subparagraph] = STATE(346), + [sym_enum_item] = STATE(346), + [sym_brace_group] = STATE(346), + [sym_mixed_group] = STATE(346), + [sym_text] = STATE(346), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(346), + [sym_inline_formula] = STATE(346), + [sym_begin] = STATE(73), + [sym_environment] = STATE(346), + [sym_caption] = STATE(346), + [sym_citation] = STATE(346), + [sym_package_include] = STATE(346), + [sym_class_include] = STATE(346), + [sym_latex_include] = STATE(346), + [sym_latex_input] = STATE(346), + [sym_biblatex_include] = STATE(346), + [sym_bibtex_include] = STATE(346), + [sym_graphics_include] = STATE(346), + [sym_svg_include] = STATE(346), + [sym_inkscape_include] = STATE(346), + [sym_verbatim_include] = STATE(346), + [sym_import] = STATE(346), + [sym_label_definition] = STATE(346), + [sym_label_reference] = STATE(346), + [sym_equation_label_reference] = STATE(346), + [sym_label_reference_range] = STATE(346), + [sym_label_number] = STATE(346), + [sym_command_definition] = STATE(346), + [sym_math_operator] = STATE(346), + [sym_glossary_entry_definition] = STATE(346), + [sym_glossary_entry_reference] = STATE(346), + [sym_acronym_definition] = STATE(346), + [sym_acronym_reference] = STATE(346), + [sym_theorem_definition] = STATE(346), + [sym_color_reference] = STATE(346), + [sym_color_definition] = STATE(346), + [sym_color_set_definition] = STATE(346), + [sym_pgf_library_import] = STATE(346), + [sym_tikz_library_import] = STATE(346), + [sym_generic_command] = STATE(346), + [aux_sym_paragraph_repeat1] = STATE(346), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4156), + [aux_sym_chapter_token1] = ACTIONS(4156), + [aux_sym_section_token1] = ACTIONS(4156), + [aux_sym_subsection_token1] = ACTIONS(4156), + [aux_sym_subsubsection_token1] = ACTIONS(4156), + [aux_sym_paragraph_token1] = ACTIONS(4156), + [aux_sym_subparagraph_token1] = ACTIONS(506), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(7245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(4156), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [356] = { + [sym__simple_content] = STATE(358), + [sym_subparagraph] = STATE(358), + [sym_enum_item] = STATE(358), + [sym_brace_group] = STATE(358), + [sym_mixed_group] = STATE(358), + [sym_text] = STATE(358), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(358), + [sym_inline_formula] = STATE(358), + [sym_begin] = STATE(66), + [sym_environment] = STATE(358), + [sym_caption] = STATE(358), + [sym_citation] = STATE(358), + [sym_package_include] = STATE(358), + [sym_class_include] = STATE(358), + [sym_latex_include] = STATE(358), + [sym_latex_input] = STATE(358), + [sym_biblatex_include] = STATE(358), + [sym_bibtex_include] = STATE(358), + [sym_graphics_include] = STATE(358), + [sym_svg_include] = STATE(358), + [sym_inkscape_include] = STATE(358), + [sym_verbatim_include] = STATE(358), + [sym_import] = STATE(358), + [sym_label_definition] = STATE(358), + [sym_label_reference] = STATE(358), + [sym_equation_label_reference] = STATE(358), + [sym_label_reference_range] = STATE(358), + [sym_label_number] = STATE(358), + [sym_command_definition] = STATE(358), + [sym_math_operator] = STATE(358), + [sym_glossary_entry_definition] = STATE(358), + [sym_glossary_entry_reference] = STATE(358), + [sym_acronym_definition] = STATE(358), + [sym_acronym_reference] = STATE(358), + [sym_theorem_definition] = STATE(358), + [sym_color_reference] = STATE(358), + [sym_color_definition] = STATE(358), + [sym_color_set_definition] = STATE(358), + [sym_pgf_library_import] = STATE(358), + [sym_tikz_library_import] = STATE(358), + [sym_generic_command] = STATE(358), + [aux_sym_paragraph_repeat1] = STATE(358), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4156), + [aux_sym_chapter_token1] = ACTIONS(4156), + [aux_sym_section_token1] = ACTIONS(4156), + [aux_sym_subsection_token1] = ACTIONS(4156), + [aux_sym_subsubsection_token1] = ACTIONS(4156), + [aux_sym_paragraph_token1] = ACTIONS(4156), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(7247), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4154), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [357] = { + [sym__simple_content] = STATE(357), + [sym_subparagraph] = STATE(357), + [sym_enum_item] = STATE(357), + [sym_brace_group] = STATE(357), + [sym_mixed_group] = STATE(357), + [sym_text] = STATE(357), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(357), + [sym_inline_formula] = STATE(357), + [sym_begin] = STATE(59), + [sym_environment] = STATE(357), + [sym_caption] = STATE(357), + [sym_citation] = STATE(357), + [sym_package_include] = STATE(357), + [sym_class_include] = STATE(357), + [sym_latex_include] = STATE(357), + [sym_latex_input] = STATE(357), + [sym_biblatex_include] = STATE(357), + [sym_bibtex_include] = STATE(357), + [sym_graphics_include] = STATE(357), + [sym_svg_include] = STATE(357), + [sym_inkscape_include] = STATE(357), + [sym_verbatim_include] = STATE(357), + [sym_import] = STATE(357), + [sym_label_definition] = STATE(357), + [sym_label_reference] = STATE(357), + [sym_equation_label_reference] = STATE(357), + [sym_label_reference_range] = STATE(357), + [sym_label_number] = STATE(357), + [sym_command_definition] = STATE(357), + [sym_math_operator] = STATE(357), + [sym_glossary_entry_definition] = STATE(357), + [sym_glossary_entry_reference] = STATE(357), + [sym_acronym_definition] = STATE(357), + [sym_acronym_reference] = STATE(357), + [sym_theorem_definition] = STATE(357), + [sym_color_reference] = STATE(357), + [sym_color_definition] = STATE(357), + [sym_color_set_definition] = STATE(357), + [sym_pgf_library_import] = STATE(357), + [sym_tikz_library_import] = STATE(357), + [sym_generic_command] = STATE(357), + [aux_sym_paragraph_repeat1] = STATE(357), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(7249), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4165), + [aux_sym_chapter_token1] = ACTIONS(4165), + [aux_sym_section_token1] = ACTIONS(4165), + [aux_sym_subsection_token1] = ACTIONS(4165), + [aux_sym_subsubsection_token1] = ACTIONS(4165), + [aux_sym_paragraph_token1] = ACTIONS(4165), + [aux_sym_subparagraph_token1] = ACTIONS(7252), + [anon_sym_BSLASHitem] = ACTIONS(7255), + [anon_sym_LBRACK] = ACTIONS(7258), + [anon_sym_LBRACE] = ACTIONS(7261), + [anon_sym_LPAREN] = ACTIONS(7258), + [anon_sym_COMMA] = ACTIONS(7264), + [anon_sym_EQ] = ACTIONS(7264), + [sym_word] = ACTIONS(7264), + [sym_param] = ACTIONS(7267), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7270), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7270), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4160), + [anon_sym_DOLLAR] = ACTIONS(7273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7276), + [anon_sym_BSLASHbegin] = ACTIONS(4194), + [anon_sym_BSLASHcaption] = ACTIONS(7279), + [anon_sym_BSLASHcite] = ACTIONS(7282), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7285), + [anon_sym_BSLASHCite] = ACTIONS(7282), + [anon_sym_BSLASHnocite] = ACTIONS(7282), + [anon_sym_BSLASHcitet] = ACTIONS(7282), + [anon_sym_BSLASHcitep] = ACTIONS(7282), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7285), + [anon_sym_BSLASHciteauthor] = ACTIONS(7282), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7282), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7285), + [anon_sym_BSLASHcitetitle] = ACTIONS(7282), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7285), + [anon_sym_BSLASHciteyear] = ACTIONS(7282), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7285), + [anon_sym_BSLASHcitedate] = ACTIONS(7282), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7285), + [anon_sym_BSLASHciteurl] = ACTIONS(7282), + [anon_sym_BSLASHfullcite] = ACTIONS(7282), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7282), + [anon_sym_BSLASHcitealt] = ACTIONS(7282), + [anon_sym_BSLASHcitealp] = ACTIONS(7282), + [anon_sym_BSLASHcitetext] = ACTIONS(7282), + [anon_sym_BSLASHparencite] = ACTIONS(7282), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7285), + [anon_sym_BSLASHParencite] = ACTIONS(7282), + [anon_sym_BSLASHfootcite] = ACTIONS(7282), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7282), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7282), + [anon_sym_BSLASHtextcite] = ACTIONS(7282), + [anon_sym_BSLASHTextcite] = ACTIONS(7282), + [anon_sym_BSLASHsmartcite] = ACTIONS(7282), + [anon_sym_BSLASHSmartcite] = ACTIONS(7282), + [anon_sym_BSLASHsupercite] = ACTIONS(7282), + [anon_sym_BSLASHautocite] = ACTIONS(7282), + [anon_sym_BSLASHAutocite] = ACTIONS(7282), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7285), + [anon_sym_BSLASHvolcite] = ACTIONS(7282), + [anon_sym_BSLASHVolcite] = ACTIONS(7282), + [anon_sym_BSLASHpvolcite] = ACTIONS(7282), + [anon_sym_BSLASHPvolcite] = ACTIONS(7282), + [anon_sym_BSLASHfvolcite] = ACTIONS(7282), + [anon_sym_BSLASHftvolcite] = ACTIONS(7282), + [anon_sym_BSLASHsvolcite] = ACTIONS(7282), + [anon_sym_BSLASHSvolcite] = ACTIONS(7282), + [anon_sym_BSLASHtvolcite] = ACTIONS(7282), + [anon_sym_BSLASHTvolcite] = ACTIONS(7282), + [anon_sym_BSLASHavolcite] = ACTIONS(7282), + [anon_sym_BSLASHAvolcite] = ACTIONS(7282), + [anon_sym_BSLASHnotecite] = ACTIONS(7282), + [anon_sym_BSLASHpnotecite] = ACTIONS(7282), + [anon_sym_BSLASHPnotecite] = ACTIONS(7282), + [anon_sym_BSLASHfnotecite] = ACTIONS(7282), + [anon_sym_BSLASHusepackage] = ACTIONS(7288), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7288), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7291), + [anon_sym_BSLASHinclude] = ACTIONS(7294), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7294), + [anon_sym_BSLASHinput] = ACTIONS(7297), + [anon_sym_BSLASHsubfile] = ACTIONS(7297), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7300), + [anon_sym_BSLASHbibliography] = ACTIONS(7303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7306), + [anon_sym_BSLASHincludesvg] = ACTIONS(7309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7312), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7315), + [anon_sym_BSLASHimport] = ACTIONS(7318), + [anon_sym_BSLASHsubimport] = ACTIONS(7318), + [anon_sym_BSLASHinputfrom] = ACTIONS(7318), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7318), + [anon_sym_BSLASHincludefrom] = ACTIONS(7318), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7318), + [anon_sym_BSLASHlabel] = ACTIONS(7321), + [anon_sym_BSLASHref] = ACTIONS(7324), + [anon_sym_BSLASHvref] = ACTIONS(7324), + [anon_sym_BSLASHVref] = ACTIONS(7324), + [anon_sym_BSLASHautoref] = ACTIONS(7324), + [anon_sym_BSLASHpageref] = ACTIONS(7324), + [anon_sym_BSLASHcref] = ACTIONS(7324), + [anon_sym_BSLASHCref] = ACTIONS(7324), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7327), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7327), + [anon_sym_BSLASHnamecref] = ACTIONS(7324), + [anon_sym_BSLASHnameCref] = ACTIONS(7324), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7324), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7324), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7324), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7324), + [anon_sym_BSLASHlabelcref] = ACTIONS(7324), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7324), + [anon_sym_BSLASHeqref] = ACTIONS(7330), + [anon_sym_BSLASHcrefrange] = ACTIONS(7333), + [anon_sym_BSLASHCrefrange] = ACTIONS(7333), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7336), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7336), + [anon_sym_BSLASHnewlabel] = ACTIONS(7339), + [anon_sym_BSLASHnewcommand] = ACTIONS(7342), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7342), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7342), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7348), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7351), + [anon_sym_BSLASHgls] = ACTIONS(7354), + [anon_sym_BSLASHGls] = ACTIONS(7354), + [anon_sym_BSLASHGLS] = ACTIONS(7354), + [anon_sym_BSLASHglspl] = ACTIONS(7354), + [anon_sym_BSLASHGlspl] = ACTIONS(7354), + [anon_sym_BSLASHGLSpl] = ACTIONS(7354), + [anon_sym_BSLASHglsdisp] = ACTIONS(7354), + [anon_sym_BSLASHglslink] = ACTIONS(7354), + [anon_sym_BSLASHglstext] = ACTIONS(7354), + [anon_sym_BSLASHGlstext] = ACTIONS(7354), + [anon_sym_BSLASHGLStext] = ACTIONS(7354), + [anon_sym_BSLASHglsfirst] = ACTIONS(7354), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7354), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7354), + [anon_sym_BSLASHglsplural] = ACTIONS(7354), + [anon_sym_BSLASHGlsplural] = ACTIONS(7354), + [anon_sym_BSLASHGLSplural] = ACTIONS(7354), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7354), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7354), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7354), + [anon_sym_BSLASHglsname] = ACTIONS(7354), + [anon_sym_BSLASHGlsname] = ACTIONS(7354), + [anon_sym_BSLASHGLSname] = ACTIONS(7354), + [anon_sym_BSLASHglssymbol] = ACTIONS(7354), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7354), + [anon_sym_BSLASHglsdesc] = ACTIONS(7354), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7354), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7354), + [anon_sym_BSLASHglsuseri] = ACTIONS(7354), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7354), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7354), + [anon_sym_BSLASHglsuserii] = ACTIONS(7354), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7354), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7354), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7354), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7354), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7354), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7354), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7354), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7354), + [anon_sym_BSLASHglsuserv] = ACTIONS(7354), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7354), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7354), + [anon_sym_BSLASHglsuservi] = ACTIONS(7354), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7354), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7354), + [anon_sym_BSLASHnewacronym] = ACTIONS(7357), + [anon_sym_BSLASHacrshort] = ACTIONS(7360), + [anon_sym_BSLASHAcrshort] = ACTIONS(7360), + [anon_sym_BSLASHACRshort] = ACTIONS(7360), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7360), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7360), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7360), + [anon_sym_BSLASHacrlong] = ACTIONS(7360), + [anon_sym_BSLASHAcrlong] = ACTIONS(7360), + [anon_sym_BSLASHACRlong] = ACTIONS(7360), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7360), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7360), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7360), + [anon_sym_BSLASHacrfull] = ACTIONS(7360), + [anon_sym_BSLASHAcrfull] = ACTIONS(7360), + [anon_sym_BSLASHACRfull] = ACTIONS(7360), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7360), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7360), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7360), + [anon_sym_BSLASHacs] = ACTIONS(7360), + [anon_sym_BSLASHAcs] = ACTIONS(7360), + [anon_sym_BSLASHacsp] = ACTIONS(7360), + [anon_sym_BSLASHAcsp] = ACTIONS(7360), + [anon_sym_BSLASHacl] = ACTIONS(7360), + [anon_sym_BSLASHAcl] = ACTIONS(7360), + [anon_sym_BSLASHaclp] = ACTIONS(7360), + [anon_sym_BSLASHAclp] = ACTIONS(7360), + [anon_sym_BSLASHacf] = ACTIONS(7360), + [anon_sym_BSLASHAcf] = ACTIONS(7360), + [anon_sym_BSLASHacfp] = ACTIONS(7360), + [anon_sym_BSLASHAcfp] = ACTIONS(7360), + [anon_sym_BSLASHac] = ACTIONS(7360), + [anon_sym_BSLASHAc] = ACTIONS(7360), + [anon_sym_BSLASHacp] = ACTIONS(7360), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7360), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7360), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7360), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7360), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7360), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7360), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7360), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7360), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7360), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7360), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7363), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7363), + [anon_sym_BSLASHcolor] = ACTIONS(7366), + [anon_sym_BSLASHcolorbox] = ACTIONS(7366), + [anon_sym_BSLASHtextcolor] = ACTIONS(7366), + [anon_sym_BSLASHpagecolor] = ACTIONS(7366), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7372), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7375), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7378), + }, + [358] = { + [sym__simple_content] = STATE(358), + [sym_subparagraph] = STATE(358), + [sym_enum_item] = STATE(358), + [sym_brace_group] = STATE(358), + [sym_mixed_group] = STATE(358), + [sym_text] = STATE(358), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(358), + [sym_inline_formula] = STATE(358), + [sym_begin] = STATE(66), + [sym_environment] = STATE(358), + [sym_caption] = STATE(358), + [sym_citation] = STATE(358), + [sym_package_include] = STATE(358), + [sym_class_include] = STATE(358), + [sym_latex_include] = STATE(358), + [sym_latex_input] = STATE(358), + [sym_biblatex_include] = STATE(358), + [sym_bibtex_include] = STATE(358), + [sym_graphics_include] = STATE(358), + [sym_svg_include] = STATE(358), + [sym_inkscape_include] = STATE(358), + [sym_verbatim_include] = STATE(358), + [sym_import] = STATE(358), + [sym_label_definition] = STATE(358), + [sym_label_reference] = STATE(358), + [sym_equation_label_reference] = STATE(358), + [sym_label_reference_range] = STATE(358), + [sym_label_number] = STATE(358), + [sym_command_definition] = STATE(358), + [sym_math_operator] = STATE(358), + [sym_glossary_entry_definition] = STATE(358), + [sym_glossary_entry_reference] = STATE(358), + [sym_acronym_definition] = STATE(358), + [sym_acronym_reference] = STATE(358), + [sym_theorem_definition] = STATE(358), + [sym_color_reference] = STATE(358), + [sym_color_definition] = STATE(358), + [sym_color_set_definition] = STATE(358), + [sym_pgf_library_import] = STATE(358), + [sym_tikz_library_import] = STATE(358), + [sym_generic_command] = STATE(358), + [aux_sym_paragraph_repeat1] = STATE(358), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(7381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4165), + [aux_sym_chapter_token1] = ACTIONS(4165), + [aux_sym_section_token1] = ACTIONS(4165), + [aux_sym_subsection_token1] = ACTIONS(4165), + [aux_sym_subsubsection_token1] = ACTIONS(4165), + [aux_sym_paragraph_token1] = ACTIONS(4165), + [aux_sym_subparagraph_token1] = ACTIONS(7384), + [anon_sym_BSLASHitem] = ACTIONS(7387), + [anon_sym_LBRACK] = ACTIONS(7390), + [anon_sym_LBRACE] = ACTIONS(7393), + [anon_sym_LPAREN] = ACTIONS(7390), + [anon_sym_COMMA] = ACTIONS(7396), + [anon_sym_EQ] = ACTIONS(7396), + [sym_word] = ACTIONS(7396), + [sym_param] = ACTIONS(7399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7402), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7402), + [anon_sym_DOLLAR] = ACTIONS(7405), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7408), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4160), + [anon_sym_BSLASHbegin] = ACTIONS(4194), + [anon_sym_BSLASHcaption] = ACTIONS(7411), + [anon_sym_BSLASHcite] = ACTIONS(7414), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7417), + [anon_sym_BSLASHCite] = ACTIONS(7414), + [anon_sym_BSLASHnocite] = ACTIONS(7414), + [anon_sym_BSLASHcitet] = ACTIONS(7414), + [anon_sym_BSLASHcitep] = ACTIONS(7414), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7417), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7417), + [anon_sym_BSLASHciteauthor] = ACTIONS(7414), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7417), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7414), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7417), + [anon_sym_BSLASHcitetitle] = ACTIONS(7414), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7417), + [anon_sym_BSLASHciteyear] = ACTIONS(7414), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7417), + [anon_sym_BSLASHcitedate] = ACTIONS(7414), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7417), + [anon_sym_BSLASHciteurl] = ACTIONS(7414), + [anon_sym_BSLASHfullcite] = ACTIONS(7414), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7414), + [anon_sym_BSLASHcitealt] = ACTIONS(7414), + [anon_sym_BSLASHcitealp] = ACTIONS(7414), + [anon_sym_BSLASHcitetext] = ACTIONS(7414), + [anon_sym_BSLASHparencite] = ACTIONS(7414), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7417), + [anon_sym_BSLASHParencite] = ACTIONS(7414), + [anon_sym_BSLASHfootcite] = ACTIONS(7414), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7414), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7414), + [anon_sym_BSLASHtextcite] = ACTIONS(7414), + [anon_sym_BSLASHTextcite] = ACTIONS(7414), + [anon_sym_BSLASHsmartcite] = ACTIONS(7414), + [anon_sym_BSLASHSmartcite] = ACTIONS(7414), + [anon_sym_BSLASHsupercite] = ACTIONS(7414), + [anon_sym_BSLASHautocite] = ACTIONS(7414), + [anon_sym_BSLASHAutocite] = ACTIONS(7414), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7417), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7417), + [anon_sym_BSLASHvolcite] = ACTIONS(7414), + [anon_sym_BSLASHVolcite] = ACTIONS(7414), + [anon_sym_BSLASHpvolcite] = ACTIONS(7414), + [anon_sym_BSLASHPvolcite] = ACTIONS(7414), + [anon_sym_BSLASHfvolcite] = ACTIONS(7414), + [anon_sym_BSLASHftvolcite] = ACTIONS(7414), + [anon_sym_BSLASHsvolcite] = ACTIONS(7414), + [anon_sym_BSLASHSvolcite] = ACTIONS(7414), + [anon_sym_BSLASHtvolcite] = ACTIONS(7414), + [anon_sym_BSLASHTvolcite] = ACTIONS(7414), + [anon_sym_BSLASHavolcite] = ACTIONS(7414), + [anon_sym_BSLASHAvolcite] = ACTIONS(7414), + [anon_sym_BSLASHnotecite] = ACTIONS(7414), + [anon_sym_BSLASHpnotecite] = ACTIONS(7414), + [anon_sym_BSLASHPnotecite] = ACTIONS(7414), + [anon_sym_BSLASHfnotecite] = ACTIONS(7414), + [anon_sym_BSLASHusepackage] = ACTIONS(7420), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7420), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7423), + [anon_sym_BSLASHinclude] = ACTIONS(7426), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7426), + [anon_sym_BSLASHinput] = ACTIONS(7429), + [anon_sym_BSLASHsubfile] = ACTIONS(7429), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7432), + [anon_sym_BSLASHbibliography] = ACTIONS(7435), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7438), + [anon_sym_BSLASHincludesvg] = ACTIONS(7441), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7444), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7447), + [anon_sym_BSLASHimport] = ACTIONS(7450), + [anon_sym_BSLASHsubimport] = ACTIONS(7450), + [anon_sym_BSLASHinputfrom] = ACTIONS(7450), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7450), + [anon_sym_BSLASHincludefrom] = ACTIONS(7450), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7450), + [anon_sym_BSLASHlabel] = ACTIONS(7453), + [anon_sym_BSLASHref] = ACTIONS(7456), + [anon_sym_BSLASHvref] = ACTIONS(7456), + [anon_sym_BSLASHVref] = ACTIONS(7456), + [anon_sym_BSLASHautoref] = ACTIONS(7456), + [anon_sym_BSLASHpageref] = ACTIONS(7456), + [anon_sym_BSLASHcref] = ACTIONS(7456), + [anon_sym_BSLASHCref] = ACTIONS(7456), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7459), + [anon_sym_BSLASHnamecref] = ACTIONS(7456), + [anon_sym_BSLASHnameCref] = ACTIONS(7456), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7456), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7456), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7456), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7456), + [anon_sym_BSLASHlabelcref] = ACTIONS(7456), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7456), + [anon_sym_BSLASHeqref] = ACTIONS(7462), + [anon_sym_BSLASHcrefrange] = ACTIONS(7465), + [anon_sym_BSLASHCrefrange] = ACTIONS(7465), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7468), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7468), + [anon_sym_BSLASHnewlabel] = ACTIONS(7471), + [anon_sym_BSLASHnewcommand] = ACTIONS(7474), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7474), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7474), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7477), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7480), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7483), + [anon_sym_BSLASHgls] = ACTIONS(7486), + [anon_sym_BSLASHGls] = ACTIONS(7486), + [anon_sym_BSLASHGLS] = ACTIONS(7486), + [anon_sym_BSLASHglspl] = ACTIONS(7486), + [anon_sym_BSLASHGlspl] = ACTIONS(7486), + [anon_sym_BSLASHGLSpl] = ACTIONS(7486), + [anon_sym_BSLASHglsdisp] = ACTIONS(7486), + [anon_sym_BSLASHglslink] = ACTIONS(7486), + [anon_sym_BSLASHglstext] = ACTIONS(7486), + [anon_sym_BSLASHGlstext] = ACTIONS(7486), + [anon_sym_BSLASHGLStext] = ACTIONS(7486), + [anon_sym_BSLASHglsfirst] = ACTIONS(7486), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7486), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7486), + [anon_sym_BSLASHglsplural] = ACTIONS(7486), + [anon_sym_BSLASHGlsplural] = ACTIONS(7486), + [anon_sym_BSLASHGLSplural] = ACTIONS(7486), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7486), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7486), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7486), + [anon_sym_BSLASHglsname] = ACTIONS(7486), + [anon_sym_BSLASHGlsname] = ACTIONS(7486), + [anon_sym_BSLASHGLSname] = ACTIONS(7486), + [anon_sym_BSLASHglssymbol] = ACTIONS(7486), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7486), + [anon_sym_BSLASHglsdesc] = ACTIONS(7486), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7486), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7486), + [anon_sym_BSLASHglsuseri] = ACTIONS(7486), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7486), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7486), + [anon_sym_BSLASHglsuserii] = ACTIONS(7486), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7486), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7486), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7486), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7486), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7486), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7486), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7486), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7486), + [anon_sym_BSLASHglsuserv] = ACTIONS(7486), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7486), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7486), + [anon_sym_BSLASHglsuservi] = ACTIONS(7486), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7486), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7486), + [anon_sym_BSLASHnewacronym] = ACTIONS(7489), + [anon_sym_BSLASHacrshort] = ACTIONS(7492), + [anon_sym_BSLASHAcrshort] = ACTIONS(7492), + [anon_sym_BSLASHACRshort] = ACTIONS(7492), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7492), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7492), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7492), + [anon_sym_BSLASHacrlong] = ACTIONS(7492), + [anon_sym_BSLASHAcrlong] = ACTIONS(7492), + [anon_sym_BSLASHACRlong] = ACTIONS(7492), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7492), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7492), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7492), + [anon_sym_BSLASHacrfull] = ACTIONS(7492), + [anon_sym_BSLASHAcrfull] = ACTIONS(7492), + [anon_sym_BSLASHACRfull] = ACTIONS(7492), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7492), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7492), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7492), + [anon_sym_BSLASHacs] = ACTIONS(7492), + [anon_sym_BSLASHAcs] = ACTIONS(7492), + [anon_sym_BSLASHacsp] = ACTIONS(7492), + [anon_sym_BSLASHAcsp] = ACTIONS(7492), + [anon_sym_BSLASHacl] = ACTIONS(7492), + [anon_sym_BSLASHAcl] = ACTIONS(7492), + [anon_sym_BSLASHaclp] = ACTIONS(7492), + [anon_sym_BSLASHAclp] = ACTIONS(7492), + [anon_sym_BSLASHacf] = ACTIONS(7492), + [anon_sym_BSLASHAcf] = ACTIONS(7492), + [anon_sym_BSLASHacfp] = ACTIONS(7492), + [anon_sym_BSLASHAcfp] = ACTIONS(7492), + [anon_sym_BSLASHac] = ACTIONS(7492), + [anon_sym_BSLASHAc] = ACTIONS(7492), + [anon_sym_BSLASHacp] = ACTIONS(7492), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7492), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7492), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7492), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7492), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7492), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7492), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7492), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7492), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7492), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7492), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7495), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7495), + [anon_sym_BSLASHcolor] = ACTIONS(7498), + [anon_sym_BSLASHcolorbox] = ACTIONS(7498), + [anon_sym_BSLASHtextcolor] = ACTIONS(7498), + [anon_sym_BSLASHpagecolor] = ACTIONS(7498), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7501), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7504), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7507), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7510), + }, + [359] = { + [sym__simple_content] = STATE(356), + [sym_subparagraph] = STATE(356), + [sym_enum_item] = STATE(356), + [sym_brace_group] = STATE(356), + [sym_mixed_group] = STATE(356), + [sym_text] = STATE(356), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(356), + [sym_inline_formula] = STATE(356), + [sym_begin] = STATE(66), + [sym_environment] = STATE(356), + [sym_caption] = STATE(356), + [sym_citation] = STATE(356), + [sym_package_include] = STATE(356), + [sym_class_include] = STATE(356), + [sym_latex_include] = STATE(356), + [sym_latex_input] = STATE(356), + [sym_biblatex_include] = STATE(356), + [sym_bibtex_include] = STATE(356), + [sym_graphics_include] = STATE(356), + [sym_svg_include] = STATE(356), + [sym_inkscape_include] = STATE(356), + [sym_verbatim_include] = STATE(356), + [sym_import] = STATE(356), + [sym_label_definition] = STATE(356), + [sym_label_reference] = STATE(356), + [sym_equation_label_reference] = STATE(356), + [sym_label_reference_range] = STATE(356), + [sym_label_number] = STATE(356), + [sym_command_definition] = STATE(356), + [sym_math_operator] = STATE(356), + [sym_glossary_entry_definition] = STATE(356), + [sym_glossary_entry_reference] = STATE(356), + [sym_acronym_definition] = STATE(356), + [sym_acronym_reference] = STATE(356), + [sym_theorem_definition] = STATE(356), + [sym_color_reference] = STATE(356), + [sym_color_definition] = STATE(356), + [sym_color_set_definition] = STATE(356), + [sym_pgf_library_import] = STATE(356), + [sym_tikz_library_import] = STATE(356), + [sym_generic_command] = STATE(356), + [aux_sym_paragraph_repeat1] = STATE(356), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4054), + [aux_sym_chapter_token1] = ACTIONS(4054), + [aux_sym_section_token1] = ACTIONS(4054), + [aux_sym_subsection_token1] = ACTIONS(4054), + [aux_sym_subsubsection_token1] = ACTIONS(4054), + [aux_sym_paragraph_token1] = ACTIONS(4054), + [aux_sym_subparagraph_token1] = ACTIONS(400), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(7513), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4052), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [360] = { + [sym__simple_content] = STATE(377), + [sym_paragraph] = STATE(377), + [sym_subparagraph] = STATE(377), + [sym_enum_item] = STATE(377), + [sym_brace_group] = STATE(377), + [sym_mixed_group] = STATE(377), + [sym_text] = STATE(377), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(377), + [sym_inline_formula] = STATE(377), + [sym_begin] = STATE(105), + [sym_environment] = STATE(377), + [sym_caption] = STATE(377), + [sym_citation] = STATE(377), + [sym_package_include] = STATE(377), + [sym_class_include] = STATE(377), + [sym_latex_include] = STATE(377), + [sym_latex_input] = STATE(377), + [sym_biblatex_include] = STATE(377), + [sym_bibtex_include] = STATE(377), + [sym_graphics_include] = STATE(377), + [sym_svg_include] = STATE(377), + [sym_inkscape_include] = STATE(377), + [sym_verbatim_include] = STATE(377), + [sym_import] = STATE(377), + [sym_label_definition] = STATE(377), + [sym_label_reference] = STATE(377), + [sym_equation_label_reference] = STATE(377), + [sym_label_reference_range] = STATE(377), + [sym_label_number] = STATE(377), + [sym_command_definition] = STATE(377), + [sym_math_operator] = STATE(377), + [sym_glossary_entry_definition] = STATE(377), + [sym_glossary_entry_reference] = STATE(377), + [sym_acronym_definition] = STATE(377), + [sym_acronym_reference] = STATE(377), + [sym_theorem_definition] = STATE(377), + [sym_color_reference] = STATE(377), + [sym_color_definition] = STATE(377), + [sym_color_set_definition] = STATE(377), + [sym_pgf_library_import] = STATE(377), + [sym_tikz_library_import] = STATE(377), + [sym_generic_command] = STATE(377), + [aux_sym_subsubsection_repeat1] = STATE(377), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(3020), + [aux_sym_subsubsection_token1] = ACTIONS(3020), + [aux_sym_paragraph_token1] = ACTIONS(6320), + [aux_sym_subparagraph_token1] = ACTIONS(6322), + [anon_sym_BSLASHitem] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(7515), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [361] = { + [sym__simple_content] = STATE(374), + [sym_subparagraph] = STATE(374), + [sym_enum_item] = STATE(374), + [sym_brace_group] = STATE(374), + [sym_mixed_group] = STATE(374), + [sym_text] = STATE(374), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(374), + [sym_inline_formula] = STATE(374), + [sym_begin] = STATE(94), + [sym_environment] = STATE(374), + [sym_caption] = STATE(374), + [sym_citation] = STATE(374), + [sym_package_include] = STATE(374), + [sym_class_include] = STATE(374), + [sym_latex_include] = STATE(374), + [sym_latex_input] = STATE(374), + [sym_biblatex_include] = STATE(374), + [sym_bibtex_include] = STATE(374), + [sym_graphics_include] = STATE(374), + [sym_svg_include] = STATE(374), + [sym_inkscape_include] = STATE(374), + [sym_verbatim_include] = STATE(374), + [sym_import] = STATE(374), + [sym_label_definition] = STATE(374), + [sym_label_reference] = STATE(374), + [sym_equation_label_reference] = STATE(374), + [sym_label_reference_range] = STATE(374), + [sym_label_number] = STATE(374), + [sym_command_definition] = STATE(374), + [sym_math_operator] = STATE(374), + [sym_glossary_entry_definition] = STATE(374), + [sym_glossary_entry_reference] = STATE(374), + [sym_acronym_definition] = STATE(374), + [sym_acronym_reference] = STATE(374), + [sym_theorem_definition] = STATE(374), + [sym_color_reference] = STATE(374), + [sym_color_definition] = STATE(374), + [sym_color_set_definition] = STATE(374), + [sym_pgf_library_import] = STATE(374), + [sym_tikz_library_import] = STATE(374), + [sym_generic_command] = STATE(374), + [aux_sym_paragraph_repeat1] = STATE(374), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(4054), + [aux_sym_subsection_token1] = ACTIONS(4054), + [aux_sym_subsubsection_token1] = ACTIONS(4054), + [aux_sym_paragraph_token1] = ACTIONS(4054), + [aux_sym_subparagraph_token1] = ACTIONS(4068), + [anon_sym_BSLASHitem] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(4052), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(7517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [362] = { + [sym__simple_content] = STATE(366), + [sym_enum_item] = STATE(366), + [sym_brace_group] = STATE(366), + [sym_mixed_group] = STATE(366), + [sym_text] = STATE(366), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(366), + [sym_inline_formula] = STATE(366), + [sym_begin] = STATE(66), + [sym_environment] = STATE(366), + [sym_caption] = STATE(366), + [sym_citation] = STATE(366), + [sym_package_include] = STATE(366), + [sym_class_include] = STATE(366), + [sym_latex_include] = STATE(366), + [sym_latex_input] = STATE(366), + [sym_biblatex_include] = STATE(366), + [sym_bibtex_include] = STATE(366), + [sym_graphics_include] = STATE(366), + [sym_svg_include] = STATE(366), + [sym_inkscape_include] = STATE(366), + [sym_verbatim_include] = STATE(366), + [sym_import] = STATE(366), + [sym_label_definition] = STATE(366), + [sym_label_reference] = STATE(366), + [sym_equation_label_reference] = STATE(366), + [sym_label_reference_range] = STATE(366), + [sym_label_number] = STATE(366), + [sym_command_definition] = STATE(366), + [sym_math_operator] = STATE(366), + [sym_glossary_entry_definition] = STATE(366), + [sym_glossary_entry_reference] = STATE(366), + [sym_acronym_definition] = STATE(366), + [sym_acronym_reference] = STATE(366), + [sym_theorem_definition] = STATE(366), + [sym_color_reference] = STATE(366), + [sym_color_definition] = STATE(366), + [sym_color_set_definition] = STATE(366), + [sym_pgf_library_import] = STATE(366), + [sym_tikz_library_import] = STATE(366), + [sym_generic_command] = STATE(366), + [aux_sym_subparagraph_repeat1] = STATE(366), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5168), + [aux_sym_chapter_token1] = ACTIONS(5168), + [aux_sym_section_token1] = ACTIONS(5168), + [aux_sym_subsection_token1] = ACTIONS(5168), + [aux_sym_subsubsection_token1] = ACTIONS(5168), + [aux_sym_paragraph_token1] = ACTIONS(5168), + [aux_sym_subparagraph_token1] = ACTIONS(5168), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(7519), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5166), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [363] = { + [sym__simple_content] = STATE(363), + [sym_enum_item] = STATE(363), + [sym_brace_group] = STATE(363), + [sym_mixed_group] = STATE(363), + [sym_text] = STATE(363), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(363), + [sym_inline_formula] = STATE(363), + [sym_begin] = STATE(59), + [sym_environment] = STATE(363), + [sym_caption] = STATE(363), + [sym_citation] = STATE(363), + [sym_package_include] = STATE(363), + [sym_class_include] = STATE(363), + [sym_latex_include] = STATE(363), + [sym_latex_input] = STATE(363), + [sym_biblatex_include] = STATE(363), + [sym_bibtex_include] = STATE(363), + [sym_graphics_include] = STATE(363), + [sym_svg_include] = STATE(363), + [sym_inkscape_include] = STATE(363), + [sym_verbatim_include] = STATE(363), + [sym_import] = STATE(363), + [sym_label_definition] = STATE(363), + [sym_label_reference] = STATE(363), + [sym_equation_label_reference] = STATE(363), + [sym_label_reference_range] = STATE(363), + [sym_label_number] = STATE(363), + [sym_command_definition] = STATE(363), + [sym_math_operator] = STATE(363), + [sym_glossary_entry_definition] = STATE(363), + [sym_glossary_entry_reference] = STATE(363), + [sym_acronym_definition] = STATE(363), + [sym_acronym_reference] = STATE(363), + [sym_theorem_definition] = STATE(363), + [sym_color_reference] = STATE(363), + [sym_color_definition] = STATE(363), + [sym_color_set_definition] = STATE(363), + [sym_pgf_library_import] = STATE(363), + [sym_tikz_library_import] = STATE(363), + [sym_generic_command] = STATE(363), + [aux_sym_subparagraph_repeat1] = STATE(363), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(7521), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5453), + [aux_sym_chapter_token1] = ACTIONS(5453), + [aux_sym_section_token1] = ACTIONS(5453), + [aux_sym_subsection_token1] = ACTIONS(5453), + [aux_sym_subsubsection_token1] = ACTIONS(5453), + [aux_sym_paragraph_token1] = ACTIONS(5453), + [aux_sym_subparagraph_token1] = ACTIONS(5453), + [anon_sym_BSLASHitem] = ACTIONS(7524), + [anon_sym_LBRACK] = ACTIONS(7527), + [anon_sym_LBRACE] = ACTIONS(7530), + [anon_sym_LPAREN] = ACTIONS(7527), + [anon_sym_COMMA] = ACTIONS(7533), + [anon_sym_EQ] = ACTIONS(7533), + [sym_word] = ACTIONS(7533), + [sym_param] = ACTIONS(7536), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7539), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7539), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5448), + [anon_sym_DOLLAR] = ACTIONS(7542), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7545), + [anon_sym_BSLASHbegin] = ACTIONS(5479), + [anon_sym_BSLASHcaption] = ACTIONS(7548), + [anon_sym_BSLASHcite] = ACTIONS(7551), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7554), + [anon_sym_BSLASHCite] = ACTIONS(7551), + [anon_sym_BSLASHnocite] = ACTIONS(7551), + [anon_sym_BSLASHcitet] = ACTIONS(7551), + [anon_sym_BSLASHcitep] = ACTIONS(7551), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7554), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7554), + [anon_sym_BSLASHciteauthor] = ACTIONS(7551), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7554), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7551), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7554), + [anon_sym_BSLASHcitetitle] = ACTIONS(7551), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7554), + [anon_sym_BSLASHciteyear] = ACTIONS(7551), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7554), + [anon_sym_BSLASHcitedate] = ACTIONS(7551), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7554), + [anon_sym_BSLASHciteurl] = ACTIONS(7551), + [anon_sym_BSLASHfullcite] = ACTIONS(7551), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7551), + [anon_sym_BSLASHcitealt] = ACTIONS(7551), + [anon_sym_BSLASHcitealp] = ACTIONS(7551), + [anon_sym_BSLASHcitetext] = ACTIONS(7551), + [anon_sym_BSLASHparencite] = ACTIONS(7551), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7554), + [anon_sym_BSLASHParencite] = ACTIONS(7551), + [anon_sym_BSLASHfootcite] = ACTIONS(7551), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7551), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7551), + [anon_sym_BSLASHtextcite] = ACTIONS(7551), + [anon_sym_BSLASHTextcite] = ACTIONS(7551), + [anon_sym_BSLASHsmartcite] = ACTIONS(7551), + [anon_sym_BSLASHSmartcite] = ACTIONS(7551), + [anon_sym_BSLASHsupercite] = ACTIONS(7551), + [anon_sym_BSLASHautocite] = ACTIONS(7551), + [anon_sym_BSLASHAutocite] = ACTIONS(7551), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7554), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7554), + [anon_sym_BSLASHvolcite] = ACTIONS(7551), + [anon_sym_BSLASHVolcite] = ACTIONS(7551), + [anon_sym_BSLASHpvolcite] = ACTIONS(7551), + [anon_sym_BSLASHPvolcite] = ACTIONS(7551), + [anon_sym_BSLASHfvolcite] = ACTIONS(7551), + [anon_sym_BSLASHftvolcite] = ACTIONS(7551), + [anon_sym_BSLASHsvolcite] = ACTIONS(7551), + [anon_sym_BSLASHSvolcite] = ACTIONS(7551), + [anon_sym_BSLASHtvolcite] = ACTIONS(7551), + [anon_sym_BSLASHTvolcite] = ACTIONS(7551), + [anon_sym_BSLASHavolcite] = ACTIONS(7551), + [anon_sym_BSLASHAvolcite] = ACTIONS(7551), + [anon_sym_BSLASHnotecite] = ACTIONS(7551), + [anon_sym_BSLASHpnotecite] = ACTIONS(7551), + [anon_sym_BSLASHPnotecite] = ACTIONS(7551), + [anon_sym_BSLASHfnotecite] = ACTIONS(7551), + [anon_sym_BSLASHusepackage] = ACTIONS(7557), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7557), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7560), + [anon_sym_BSLASHinclude] = ACTIONS(7563), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7563), + [anon_sym_BSLASHinput] = ACTIONS(7566), + [anon_sym_BSLASHsubfile] = ACTIONS(7566), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7569), + [anon_sym_BSLASHbibliography] = ACTIONS(7572), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7575), + [anon_sym_BSLASHincludesvg] = ACTIONS(7578), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7581), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7584), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7584), + [anon_sym_BSLASHimport] = ACTIONS(7587), + [anon_sym_BSLASHsubimport] = ACTIONS(7587), + [anon_sym_BSLASHinputfrom] = ACTIONS(7587), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7587), + [anon_sym_BSLASHincludefrom] = ACTIONS(7587), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7587), + [anon_sym_BSLASHlabel] = ACTIONS(7590), + [anon_sym_BSLASHref] = ACTIONS(7593), + [anon_sym_BSLASHvref] = ACTIONS(7593), + [anon_sym_BSLASHVref] = ACTIONS(7593), + [anon_sym_BSLASHautoref] = ACTIONS(7593), + [anon_sym_BSLASHpageref] = ACTIONS(7593), + [anon_sym_BSLASHcref] = ACTIONS(7593), + [anon_sym_BSLASHCref] = ACTIONS(7593), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7596), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7596), + [anon_sym_BSLASHnamecref] = ACTIONS(7593), + [anon_sym_BSLASHnameCref] = ACTIONS(7593), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7593), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7593), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7593), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7593), + [anon_sym_BSLASHlabelcref] = ACTIONS(7593), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7593), + [anon_sym_BSLASHeqref] = ACTIONS(7599), + [anon_sym_BSLASHcrefrange] = ACTIONS(7602), + [anon_sym_BSLASHCrefrange] = ACTIONS(7602), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7605), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7605), + [anon_sym_BSLASHnewlabel] = ACTIONS(7608), + [anon_sym_BSLASHnewcommand] = ACTIONS(7611), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7611), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7611), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7614), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7617), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7620), + [anon_sym_BSLASHgls] = ACTIONS(7623), + [anon_sym_BSLASHGls] = ACTIONS(7623), + [anon_sym_BSLASHGLS] = ACTIONS(7623), + [anon_sym_BSLASHglspl] = ACTIONS(7623), + [anon_sym_BSLASHGlspl] = ACTIONS(7623), + [anon_sym_BSLASHGLSpl] = ACTIONS(7623), + [anon_sym_BSLASHglsdisp] = ACTIONS(7623), + [anon_sym_BSLASHglslink] = ACTIONS(7623), + [anon_sym_BSLASHglstext] = ACTIONS(7623), + [anon_sym_BSLASHGlstext] = ACTIONS(7623), + [anon_sym_BSLASHGLStext] = ACTIONS(7623), + [anon_sym_BSLASHglsfirst] = ACTIONS(7623), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7623), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7623), + [anon_sym_BSLASHglsplural] = ACTIONS(7623), + [anon_sym_BSLASHGlsplural] = ACTIONS(7623), + [anon_sym_BSLASHGLSplural] = ACTIONS(7623), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7623), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7623), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7623), + [anon_sym_BSLASHglsname] = ACTIONS(7623), + [anon_sym_BSLASHGlsname] = ACTIONS(7623), + [anon_sym_BSLASHGLSname] = ACTIONS(7623), + [anon_sym_BSLASHglssymbol] = ACTIONS(7623), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7623), + [anon_sym_BSLASHglsdesc] = ACTIONS(7623), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7623), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7623), + [anon_sym_BSLASHglsuseri] = ACTIONS(7623), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7623), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7623), + [anon_sym_BSLASHglsuserii] = ACTIONS(7623), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7623), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7623), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7623), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7623), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7623), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7623), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7623), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7623), + [anon_sym_BSLASHglsuserv] = ACTIONS(7623), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7623), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7623), + [anon_sym_BSLASHglsuservi] = ACTIONS(7623), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7623), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7623), + [anon_sym_BSLASHnewacronym] = ACTIONS(7626), + [anon_sym_BSLASHacrshort] = ACTIONS(7629), + [anon_sym_BSLASHAcrshort] = ACTIONS(7629), + [anon_sym_BSLASHACRshort] = ACTIONS(7629), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7629), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7629), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7629), + [anon_sym_BSLASHacrlong] = ACTIONS(7629), + [anon_sym_BSLASHAcrlong] = ACTIONS(7629), + [anon_sym_BSLASHACRlong] = ACTIONS(7629), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7629), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7629), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7629), + [anon_sym_BSLASHacrfull] = ACTIONS(7629), + [anon_sym_BSLASHAcrfull] = ACTIONS(7629), + [anon_sym_BSLASHACRfull] = ACTIONS(7629), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7629), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7629), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7629), + [anon_sym_BSLASHacs] = ACTIONS(7629), + [anon_sym_BSLASHAcs] = ACTIONS(7629), + [anon_sym_BSLASHacsp] = ACTIONS(7629), + [anon_sym_BSLASHAcsp] = ACTIONS(7629), + [anon_sym_BSLASHacl] = ACTIONS(7629), + [anon_sym_BSLASHAcl] = ACTIONS(7629), + [anon_sym_BSLASHaclp] = ACTIONS(7629), + [anon_sym_BSLASHAclp] = ACTIONS(7629), + [anon_sym_BSLASHacf] = ACTIONS(7629), + [anon_sym_BSLASHAcf] = ACTIONS(7629), + [anon_sym_BSLASHacfp] = ACTIONS(7629), + [anon_sym_BSLASHAcfp] = ACTIONS(7629), + [anon_sym_BSLASHac] = ACTIONS(7629), + [anon_sym_BSLASHAc] = ACTIONS(7629), + [anon_sym_BSLASHacp] = ACTIONS(7629), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7629), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7629), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7629), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7629), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7629), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7629), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7629), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7629), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7629), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7629), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7632), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7632), + [anon_sym_BSLASHcolor] = ACTIONS(7635), + [anon_sym_BSLASHcolorbox] = ACTIONS(7635), + [anon_sym_BSLASHtextcolor] = ACTIONS(7635), + [anon_sym_BSLASHpagecolor] = ACTIONS(7635), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7638), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7641), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7644), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7647), + }, + [364] = { + [sym__simple_content] = STATE(363), + [sym_enum_item] = STATE(363), + [sym_brace_group] = STATE(363), + [sym_mixed_group] = STATE(363), + [sym_text] = STATE(363), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(363), + [sym_inline_formula] = STATE(363), + [sym_begin] = STATE(59), + [sym_environment] = STATE(363), + [sym_caption] = STATE(363), + [sym_citation] = STATE(363), + [sym_package_include] = STATE(363), + [sym_class_include] = STATE(363), + [sym_latex_include] = STATE(363), + [sym_latex_input] = STATE(363), + [sym_biblatex_include] = STATE(363), + [sym_bibtex_include] = STATE(363), + [sym_graphics_include] = STATE(363), + [sym_svg_include] = STATE(363), + [sym_inkscape_include] = STATE(363), + [sym_verbatim_include] = STATE(363), + [sym_import] = STATE(363), + [sym_label_definition] = STATE(363), + [sym_label_reference] = STATE(363), + [sym_equation_label_reference] = STATE(363), + [sym_label_reference_range] = STATE(363), + [sym_label_number] = STATE(363), + [sym_command_definition] = STATE(363), + [sym_math_operator] = STATE(363), + [sym_glossary_entry_definition] = STATE(363), + [sym_glossary_entry_reference] = STATE(363), + [sym_acronym_definition] = STATE(363), + [sym_acronym_reference] = STATE(363), + [sym_theorem_definition] = STATE(363), + [sym_color_reference] = STATE(363), + [sym_color_definition] = STATE(363), + [sym_color_set_definition] = STATE(363), + [sym_pgf_library_import] = STATE(363), + [sym_tikz_library_import] = STATE(363), + [sym_generic_command] = STATE(363), + [aux_sym_subparagraph_repeat1] = STATE(363), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5168), + [aux_sym_chapter_token1] = ACTIONS(5168), + [aux_sym_section_token1] = ACTIONS(5168), + [aux_sym_subsection_token1] = ACTIONS(5168), + [aux_sym_subsubsection_token1] = ACTIONS(5168), + [aux_sym_paragraph_token1] = ACTIONS(5168), + [aux_sym_subparagraph_token1] = ACTIONS(5168), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(7650), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5166), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [365] = { + [sym__simple_content] = STATE(378), + [sym_subsubsection] = STATE(378), + [sym_paragraph] = STATE(378), + [sym_subparagraph] = STATE(378), + [sym_enum_item] = STATE(378), + [sym_brace_group] = STATE(378), + [sym_mixed_group] = STATE(378), + [sym_text] = STATE(378), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(378), + [sym_inline_formula] = STATE(378), + [sym_begin] = STATE(112), + [sym_environment] = STATE(378), + [sym_caption] = STATE(378), + [sym_citation] = STATE(378), + [sym_package_include] = STATE(378), + [sym_class_include] = STATE(378), + [sym_latex_include] = STATE(378), + [sym_latex_input] = STATE(378), + [sym_biblatex_include] = STATE(378), + [sym_bibtex_include] = STATE(378), + [sym_graphics_include] = STATE(378), + [sym_svg_include] = STATE(378), + [sym_inkscape_include] = STATE(378), + [sym_verbatim_include] = STATE(378), + [sym_import] = STATE(378), + [sym_label_definition] = STATE(378), + [sym_label_reference] = STATE(378), + [sym_equation_label_reference] = STATE(378), + [sym_label_reference_range] = STATE(378), + [sym_label_number] = STATE(378), + [sym_command_definition] = STATE(378), + [sym_math_operator] = STATE(378), + [sym_glossary_entry_definition] = STATE(378), + [sym_glossary_entry_reference] = STATE(378), + [sym_acronym_definition] = STATE(378), + [sym_acronym_reference] = STATE(378), + [sym_theorem_definition] = STATE(378), + [sym_color_reference] = STATE(378), + [sym_color_definition] = STATE(378), + [sym_color_set_definition] = STATE(378), + [sym_pgf_library_import] = STATE(378), + [sym_tikz_library_import] = STATE(378), + [sym_generic_command] = STATE(378), + [aux_sym_subsection_repeat1] = STATE(378), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(7652), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(7654), + [aux_sym_paragraph_token1] = ACTIONS(7656), + [aux_sym_subparagraph_token1] = ACTIONS(7658), + [anon_sym_BSLASHitem] = ACTIONS(7660), + [anon_sym_LBRACK] = ACTIONS(7662), + [anon_sym_RBRACK] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(7662), + [anon_sym_COMMA] = ACTIONS(7666), + [anon_sym_EQ] = ACTIONS(7666), + [sym_word] = ACTIONS(7666), + [sym_param] = ACTIONS(7668), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7670), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7670), + [anon_sym_DOLLAR] = ACTIONS(7672), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7674), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7676), + [anon_sym_BSLASHcite] = ACTIONS(7678), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCite] = ACTIONS(7678), + [anon_sym_BSLASHnocite] = ACTIONS(7678), + [anon_sym_BSLASHcitet] = ACTIONS(7678), + [anon_sym_BSLASHcitep] = ACTIONS(7678), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteauthor] = ACTIONS(7678), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7678), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitetitle] = ACTIONS(7678), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteyear] = ACTIONS(7678), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitedate] = ACTIONS(7678), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteurl] = ACTIONS(7678), + [anon_sym_BSLASHfullcite] = ACTIONS(7678), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7678), + [anon_sym_BSLASHcitealt] = ACTIONS(7678), + [anon_sym_BSLASHcitealp] = ACTIONS(7678), + [anon_sym_BSLASHcitetext] = ACTIONS(7678), + [anon_sym_BSLASHparencite] = ACTIONS(7678), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHParencite] = ACTIONS(7678), + [anon_sym_BSLASHfootcite] = ACTIONS(7678), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7678), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7678), + [anon_sym_BSLASHtextcite] = ACTIONS(7678), + [anon_sym_BSLASHTextcite] = ACTIONS(7678), + [anon_sym_BSLASHsmartcite] = ACTIONS(7678), + [anon_sym_BSLASHSmartcite] = ACTIONS(7678), + [anon_sym_BSLASHsupercite] = ACTIONS(7678), + [anon_sym_BSLASHautocite] = ACTIONS(7678), + [anon_sym_BSLASHAutocite] = ACTIONS(7678), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHvolcite] = ACTIONS(7678), + [anon_sym_BSLASHVolcite] = ACTIONS(7678), + [anon_sym_BSLASHpvolcite] = ACTIONS(7678), + [anon_sym_BSLASHPvolcite] = ACTIONS(7678), + [anon_sym_BSLASHfvolcite] = ACTIONS(7678), + [anon_sym_BSLASHftvolcite] = ACTIONS(7678), + [anon_sym_BSLASHsvolcite] = ACTIONS(7678), + [anon_sym_BSLASHSvolcite] = ACTIONS(7678), + [anon_sym_BSLASHtvolcite] = ACTIONS(7678), + [anon_sym_BSLASHTvolcite] = ACTIONS(7678), + [anon_sym_BSLASHavolcite] = ACTIONS(7678), + [anon_sym_BSLASHAvolcite] = ACTIONS(7678), + [anon_sym_BSLASHnotecite] = ACTIONS(7678), + [anon_sym_BSLASHpnotecite] = ACTIONS(7678), + [anon_sym_BSLASHPnotecite] = ACTIONS(7678), + [anon_sym_BSLASHfnotecite] = ACTIONS(7678), + [anon_sym_BSLASHusepackage] = ACTIONS(7682), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7684), + [anon_sym_BSLASHinclude] = ACTIONS(7686), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7686), + [anon_sym_BSLASHinput] = ACTIONS(7688), + [anon_sym_BSLASHsubfile] = ACTIONS(7688), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7690), + [anon_sym_BSLASHbibliography] = ACTIONS(7692), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7694), + [anon_sym_BSLASHincludesvg] = ACTIONS(7696), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7698), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7700), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7700), + [anon_sym_BSLASHimport] = ACTIONS(7702), + [anon_sym_BSLASHsubimport] = ACTIONS(7702), + [anon_sym_BSLASHinputfrom] = ACTIONS(7702), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7702), + [anon_sym_BSLASHincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHlabel] = ACTIONS(7704), + [anon_sym_BSLASHref] = ACTIONS(7706), + [anon_sym_BSLASHvref] = ACTIONS(7706), + [anon_sym_BSLASHVref] = ACTIONS(7706), + [anon_sym_BSLASHautoref] = ACTIONS(7706), + [anon_sym_BSLASHpageref] = ACTIONS(7706), + [anon_sym_BSLASHcref] = ACTIONS(7706), + [anon_sym_BSLASHCref] = ACTIONS(7706), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnameCref] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHlabelcref] = ACTIONS(7706), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7706), + [anon_sym_BSLASHeqref] = ACTIONS(7710), + [anon_sym_BSLASHcrefrange] = ACTIONS(7712), + [anon_sym_BSLASHCrefrange] = ACTIONS(7712), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHnewlabel] = ACTIONS(7716), + [anon_sym_BSLASHnewcommand] = ACTIONS(7718), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7720), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7722), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7724), + [anon_sym_BSLASHgls] = ACTIONS(7726), + [anon_sym_BSLASHGls] = ACTIONS(7726), + [anon_sym_BSLASHGLS] = ACTIONS(7726), + [anon_sym_BSLASHglspl] = ACTIONS(7726), + [anon_sym_BSLASHGlspl] = ACTIONS(7726), + [anon_sym_BSLASHGLSpl] = ACTIONS(7726), + [anon_sym_BSLASHglsdisp] = ACTIONS(7726), + [anon_sym_BSLASHglslink] = ACTIONS(7726), + [anon_sym_BSLASHglstext] = ACTIONS(7726), + [anon_sym_BSLASHGlstext] = ACTIONS(7726), + [anon_sym_BSLASHGLStext] = ACTIONS(7726), + [anon_sym_BSLASHglsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7726), + [anon_sym_BSLASHglsplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSplural] = ACTIONS(7726), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHglsname] = ACTIONS(7726), + [anon_sym_BSLASHGlsname] = ACTIONS(7726), + [anon_sym_BSLASHGLSname] = ACTIONS(7726), + [anon_sym_BSLASHglssymbol] = ACTIONS(7726), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7726), + [anon_sym_BSLASHglsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7726), + [anon_sym_BSLASHglsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7726), + [anon_sym_BSLASHglsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7726), + [anon_sym_BSLASHglsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7726), + [anon_sym_BSLASHglsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7726), + [anon_sym_BSLASHnewacronym] = ACTIONS(7728), + [anon_sym_BSLASHacrshort] = ACTIONS(7730), + [anon_sym_BSLASHAcrshort] = ACTIONS(7730), + [anon_sym_BSLASHACRshort] = ACTIONS(7730), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7730), + [anon_sym_BSLASHacrlong] = ACTIONS(7730), + [anon_sym_BSLASHAcrlong] = ACTIONS(7730), + [anon_sym_BSLASHACRlong] = ACTIONS(7730), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7730), + [anon_sym_BSLASHacrfull] = ACTIONS(7730), + [anon_sym_BSLASHAcrfull] = ACTIONS(7730), + [anon_sym_BSLASHACRfull] = ACTIONS(7730), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7730), + [anon_sym_BSLASHacs] = ACTIONS(7730), + [anon_sym_BSLASHAcs] = ACTIONS(7730), + [anon_sym_BSLASHacsp] = ACTIONS(7730), + [anon_sym_BSLASHAcsp] = ACTIONS(7730), + [anon_sym_BSLASHacl] = ACTIONS(7730), + [anon_sym_BSLASHAcl] = ACTIONS(7730), + [anon_sym_BSLASHaclp] = ACTIONS(7730), + [anon_sym_BSLASHAclp] = ACTIONS(7730), + [anon_sym_BSLASHacf] = ACTIONS(7730), + [anon_sym_BSLASHAcf] = ACTIONS(7730), + [anon_sym_BSLASHacfp] = ACTIONS(7730), + [anon_sym_BSLASHAcfp] = ACTIONS(7730), + [anon_sym_BSLASHac] = ACTIONS(7730), + [anon_sym_BSLASHAc] = ACTIONS(7730), + [anon_sym_BSLASHacp] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7732), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7732), + [anon_sym_BSLASHcolor] = ACTIONS(7734), + [anon_sym_BSLASHcolorbox] = ACTIONS(7734), + [anon_sym_BSLASHtextcolor] = ACTIONS(7734), + [anon_sym_BSLASHpagecolor] = ACTIONS(7734), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7736), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7738), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7740), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7742), + }, + [366] = { + [sym__simple_content] = STATE(366), + [sym_enum_item] = STATE(366), + [sym_brace_group] = STATE(366), + [sym_mixed_group] = STATE(366), + [sym_text] = STATE(366), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(366), + [sym_inline_formula] = STATE(366), + [sym_begin] = STATE(66), + [sym_environment] = STATE(366), + [sym_caption] = STATE(366), + [sym_citation] = STATE(366), + [sym_package_include] = STATE(366), + [sym_class_include] = STATE(366), + [sym_latex_include] = STATE(366), + [sym_latex_input] = STATE(366), + [sym_biblatex_include] = STATE(366), + [sym_bibtex_include] = STATE(366), + [sym_graphics_include] = STATE(366), + [sym_svg_include] = STATE(366), + [sym_inkscape_include] = STATE(366), + [sym_verbatim_include] = STATE(366), + [sym_import] = STATE(366), + [sym_label_definition] = STATE(366), + [sym_label_reference] = STATE(366), + [sym_equation_label_reference] = STATE(366), + [sym_label_reference_range] = STATE(366), + [sym_label_number] = STATE(366), + [sym_command_definition] = STATE(366), + [sym_math_operator] = STATE(366), + [sym_glossary_entry_definition] = STATE(366), + [sym_glossary_entry_reference] = STATE(366), + [sym_acronym_definition] = STATE(366), + [sym_acronym_reference] = STATE(366), + [sym_theorem_definition] = STATE(366), + [sym_color_reference] = STATE(366), + [sym_color_definition] = STATE(366), + [sym_color_set_definition] = STATE(366), + [sym_pgf_library_import] = STATE(366), + [sym_tikz_library_import] = STATE(366), + [sym_generic_command] = STATE(366), + [aux_sym_subparagraph_repeat1] = STATE(366), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(7744), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5453), + [aux_sym_chapter_token1] = ACTIONS(5453), + [aux_sym_section_token1] = ACTIONS(5453), + [aux_sym_subsection_token1] = ACTIONS(5453), + [aux_sym_subsubsection_token1] = ACTIONS(5453), + [aux_sym_paragraph_token1] = ACTIONS(5453), + [aux_sym_subparagraph_token1] = ACTIONS(5453), + [anon_sym_BSLASHitem] = ACTIONS(7747), + [anon_sym_LBRACK] = ACTIONS(7750), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_LPAREN] = ACTIONS(7750), + [anon_sym_COMMA] = ACTIONS(7756), + [anon_sym_EQ] = ACTIONS(7756), + [sym_word] = ACTIONS(7756), + [sym_param] = ACTIONS(7759), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7762), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7762), + [anon_sym_DOLLAR] = ACTIONS(7765), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7768), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5448), + [anon_sym_BSLASHbegin] = ACTIONS(5479), + [anon_sym_BSLASHcaption] = ACTIONS(7771), + [anon_sym_BSLASHcite] = ACTIONS(7774), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7777), + [anon_sym_BSLASHCite] = ACTIONS(7774), + [anon_sym_BSLASHnocite] = ACTIONS(7774), + [anon_sym_BSLASHcitet] = ACTIONS(7774), + [anon_sym_BSLASHcitep] = ACTIONS(7774), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7777), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7777), + [anon_sym_BSLASHciteauthor] = ACTIONS(7774), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7777), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7774), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7777), + [anon_sym_BSLASHcitetitle] = ACTIONS(7774), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7777), + [anon_sym_BSLASHciteyear] = ACTIONS(7774), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7777), + [anon_sym_BSLASHcitedate] = ACTIONS(7774), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7777), + [anon_sym_BSLASHciteurl] = ACTIONS(7774), + [anon_sym_BSLASHfullcite] = ACTIONS(7774), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7774), + [anon_sym_BSLASHcitealt] = ACTIONS(7774), + [anon_sym_BSLASHcitealp] = ACTIONS(7774), + [anon_sym_BSLASHcitetext] = ACTIONS(7774), + [anon_sym_BSLASHparencite] = ACTIONS(7774), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7777), + [anon_sym_BSLASHParencite] = ACTIONS(7774), + [anon_sym_BSLASHfootcite] = ACTIONS(7774), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7774), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7774), + [anon_sym_BSLASHtextcite] = ACTIONS(7774), + [anon_sym_BSLASHTextcite] = ACTIONS(7774), + [anon_sym_BSLASHsmartcite] = ACTIONS(7774), + [anon_sym_BSLASHSmartcite] = ACTIONS(7774), + [anon_sym_BSLASHsupercite] = ACTIONS(7774), + [anon_sym_BSLASHautocite] = ACTIONS(7774), + [anon_sym_BSLASHAutocite] = ACTIONS(7774), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7777), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7777), + [anon_sym_BSLASHvolcite] = ACTIONS(7774), + [anon_sym_BSLASHVolcite] = ACTIONS(7774), + [anon_sym_BSLASHpvolcite] = ACTIONS(7774), + [anon_sym_BSLASHPvolcite] = ACTIONS(7774), + [anon_sym_BSLASHfvolcite] = ACTIONS(7774), + [anon_sym_BSLASHftvolcite] = ACTIONS(7774), + [anon_sym_BSLASHsvolcite] = ACTIONS(7774), + [anon_sym_BSLASHSvolcite] = ACTIONS(7774), + [anon_sym_BSLASHtvolcite] = ACTIONS(7774), + [anon_sym_BSLASHTvolcite] = ACTIONS(7774), + [anon_sym_BSLASHavolcite] = ACTIONS(7774), + [anon_sym_BSLASHAvolcite] = ACTIONS(7774), + [anon_sym_BSLASHnotecite] = ACTIONS(7774), + [anon_sym_BSLASHpnotecite] = ACTIONS(7774), + [anon_sym_BSLASHPnotecite] = ACTIONS(7774), + [anon_sym_BSLASHfnotecite] = ACTIONS(7774), + [anon_sym_BSLASHusepackage] = ACTIONS(7780), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7780), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7783), + [anon_sym_BSLASHinclude] = ACTIONS(7786), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7786), + [anon_sym_BSLASHinput] = ACTIONS(7789), + [anon_sym_BSLASHsubfile] = ACTIONS(7789), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7792), + [anon_sym_BSLASHbibliography] = ACTIONS(7795), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7798), + [anon_sym_BSLASHincludesvg] = ACTIONS(7801), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7804), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7807), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7807), + [anon_sym_BSLASHimport] = ACTIONS(7810), + [anon_sym_BSLASHsubimport] = ACTIONS(7810), + [anon_sym_BSLASHinputfrom] = ACTIONS(7810), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7810), + [anon_sym_BSLASHincludefrom] = ACTIONS(7810), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7810), + [anon_sym_BSLASHlabel] = ACTIONS(7813), + [anon_sym_BSLASHref] = ACTIONS(7816), + [anon_sym_BSLASHvref] = ACTIONS(7816), + [anon_sym_BSLASHVref] = ACTIONS(7816), + [anon_sym_BSLASHautoref] = ACTIONS(7816), + [anon_sym_BSLASHpageref] = ACTIONS(7816), + [anon_sym_BSLASHcref] = ACTIONS(7816), + [anon_sym_BSLASHCref] = ACTIONS(7816), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7819), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7819), + [anon_sym_BSLASHnamecref] = ACTIONS(7816), + [anon_sym_BSLASHnameCref] = ACTIONS(7816), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7816), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7816), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7816), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7816), + [anon_sym_BSLASHlabelcref] = ACTIONS(7816), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7816), + [anon_sym_BSLASHeqref] = ACTIONS(7822), + [anon_sym_BSLASHcrefrange] = ACTIONS(7825), + [anon_sym_BSLASHCrefrange] = ACTIONS(7825), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7828), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7828), + [anon_sym_BSLASHnewlabel] = ACTIONS(7831), + [anon_sym_BSLASHnewcommand] = ACTIONS(7834), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7834), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7834), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7840), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7843), + [anon_sym_BSLASHgls] = ACTIONS(7846), + [anon_sym_BSLASHGls] = ACTIONS(7846), + [anon_sym_BSLASHGLS] = ACTIONS(7846), + [anon_sym_BSLASHglspl] = ACTIONS(7846), + [anon_sym_BSLASHGlspl] = ACTIONS(7846), + [anon_sym_BSLASHGLSpl] = ACTIONS(7846), + [anon_sym_BSLASHglsdisp] = ACTIONS(7846), + [anon_sym_BSLASHglslink] = ACTIONS(7846), + [anon_sym_BSLASHglstext] = ACTIONS(7846), + [anon_sym_BSLASHGlstext] = ACTIONS(7846), + [anon_sym_BSLASHGLStext] = ACTIONS(7846), + [anon_sym_BSLASHglsfirst] = ACTIONS(7846), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7846), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7846), + [anon_sym_BSLASHglsplural] = ACTIONS(7846), + [anon_sym_BSLASHGlsplural] = ACTIONS(7846), + [anon_sym_BSLASHGLSplural] = ACTIONS(7846), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7846), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7846), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7846), + [anon_sym_BSLASHglsname] = ACTIONS(7846), + [anon_sym_BSLASHGlsname] = ACTIONS(7846), + [anon_sym_BSLASHGLSname] = ACTIONS(7846), + [anon_sym_BSLASHglssymbol] = ACTIONS(7846), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7846), + [anon_sym_BSLASHglsdesc] = ACTIONS(7846), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7846), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7846), + [anon_sym_BSLASHglsuseri] = ACTIONS(7846), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7846), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7846), + [anon_sym_BSLASHglsuserii] = ACTIONS(7846), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7846), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7846), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7846), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7846), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7846), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7846), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7846), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7846), + [anon_sym_BSLASHglsuserv] = ACTIONS(7846), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7846), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7846), + [anon_sym_BSLASHglsuservi] = ACTIONS(7846), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7846), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7846), + [anon_sym_BSLASHnewacronym] = ACTIONS(7849), + [anon_sym_BSLASHacrshort] = ACTIONS(7852), + [anon_sym_BSLASHAcrshort] = ACTIONS(7852), + [anon_sym_BSLASHACRshort] = ACTIONS(7852), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7852), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7852), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7852), + [anon_sym_BSLASHacrlong] = ACTIONS(7852), + [anon_sym_BSLASHAcrlong] = ACTIONS(7852), + [anon_sym_BSLASHACRlong] = ACTIONS(7852), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7852), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7852), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7852), + [anon_sym_BSLASHacrfull] = ACTIONS(7852), + [anon_sym_BSLASHAcrfull] = ACTIONS(7852), + [anon_sym_BSLASHACRfull] = ACTIONS(7852), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7852), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7852), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7852), + [anon_sym_BSLASHacs] = ACTIONS(7852), + [anon_sym_BSLASHAcs] = ACTIONS(7852), + [anon_sym_BSLASHacsp] = ACTIONS(7852), + [anon_sym_BSLASHAcsp] = ACTIONS(7852), + [anon_sym_BSLASHacl] = ACTIONS(7852), + [anon_sym_BSLASHAcl] = ACTIONS(7852), + [anon_sym_BSLASHaclp] = ACTIONS(7852), + [anon_sym_BSLASHAclp] = ACTIONS(7852), + [anon_sym_BSLASHacf] = ACTIONS(7852), + [anon_sym_BSLASHAcf] = ACTIONS(7852), + [anon_sym_BSLASHacfp] = ACTIONS(7852), + [anon_sym_BSLASHAcfp] = ACTIONS(7852), + [anon_sym_BSLASHac] = ACTIONS(7852), + [anon_sym_BSLASHAc] = ACTIONS(7852), + [anon_sym_BSLASHacp] = ACTIONS(7852), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7852), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7852), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7852), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7852), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7852), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7852), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7852), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7852), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7852), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7852), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7855), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7855), + [anon_sym_BSLASHcolor] = ACTIONS(7858), + [anon_sym_BSLASHcolorbox] = ACTIONS(7858), + [anon_sym_BSLASHtextcolor] = ACTIONS(7858), + [anon_sym_BSLASHpagecolor] = ACTIONS(7858), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7861), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7864), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7867), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7870), + }, + [367] = { + [sym__simple_content] = STATE(380), + [sym_enum_item] = STATE(380), + [sym_brace_group] = STATE(380), + [sym_mixed_group] = STATE(380), + [sym_text] = STATE(380), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(380), + [sym_inline_formula] = STATE(380), + [sym_begin] = STATE(86), + [sym_environment] = STATE(380), + [sym_caption] = STATE(380), + [sym_citation] = STATE(380), + [sym_package_include] = STATE(380), + [sym_class_include] = STATE(380), + [sym_latex_include] = STATE(380), + [sym_latex_input] = STATE(380), + [sym_biblatex_include] = STATE(380), + [sym_bibtex_include] = STATE(380), + [sym_graphics_include] = STATE(380), + [sym_svg_include] = STATE(380), + [sym_inkscape_include] = STATE(380), + [sym_verbatim_include] = STATE(380), + [sym_import] = STATE(380), + [sym_label_definition] = STATE(380), + [sym_label_reference] = STATE(380), + [sym_equation_label_reference] = STATE(380), + [sym_label_reference_range] = STATE(380), + [sym_label_number] = STATE(380), + [sym_command_definition] = STATE(380), + [sym_math_operator] = STATE(380), + [sym_glossary_entry_definition] = STATE(380), + [sym_glossary_entry_reference] = STATE(380), + [sym_acronym_definition] = STATE(380), + [sym_acronym_reference] = STATE(380), + [sym_theorem_definition] = STATE(380), + [sym_color_reference] = STATE(380), + [sym_color_definition] = STATE(380), + [sym_color_set_definition] = STATE(380), + [sym_pgf_library_import] = STATE(380), + [sym_tikz_library_import] = STATE(380), + [sym_generic_command] = STATE(380), + [aux_sym_subparagraph_repeat1] = STATE(380), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(5168), + [aux_sym_section_token1] = ACTIONS(5168), + [aux_sym_subsection_token1] = ACTIONS(5168), + [aux_sym_subsubsection_token1] = ACTIONS(5168), + [aux_sym_paragraph_token1] = ACTIONS(5168), + [aux_sym_subparagraph_token1] = ACTIONS(5168), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(7873), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [368] = { + [sym__simple_content] = STATE(368), + [sym_subparagraph] = STATE(368), + [sym_enum_item] = STATE(368), + [sym_brace_group] = STATE(368), + [sym_mixed_group] = STATE(368), + [sym_text] = STATE(368), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(368), + [sym_inline_formula] = STATE(368), + [sym_begin] = STATE(94), + [sym_environment] = STATE(368), + [sym_caption] = STATE(368), + [sym_citation] = STATE(368), + [sym_package_include] = STATE(368), + [sym_class_include] = STATE(368), + [sym_latex_include] = STATE(368), + [sym_latex_input] = STATE(368), + [sym_biblatex_include] = STATE(368), + [sym_bibtex_include] = STATE(368), + [sym_graphics_include] = STATE(368), + [sym_svg_include] = STATE(368), + [sym_inkscape_include] = STATE(368), + [sym_verbatim_include] = STATE(368), + [sym_import] = STATE(368), + [sym_label_definition] = STATE(368), + [sym_label_reference] = STATE(368), + [sym_equation_label_reference] = STATE(368), + [sym_label_reference_range] = STATE(368), + [sym_label_number] = STATE(368), + [sym_command_definition] = STATE(368), + [sym_math_operator] = STATE(368), + [sym_glossary_entry_definition] = STATE(368), + [sym_glossary_entry_reference] = STATE(368), + [sym_acronym_definition] = STATE(368), + [sym_acronym_reference] = STATE(368), + [sym_theorem_definition] = STATE(368), + [sym_color_reference] = STATE(368), + [sym_color_definition] = STATE(368), + [sym_color_set_definition] = STATE(368), + [sym_pgf_library_import] = STATE(368), + [sym_tikz_library_import] = STATE(368), + [sym_generic_command] = STATE(368), + [aux_sym_paragraph_repeat1] = STATE(368), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(7875), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(4165), + [aux_sym_subsection_token1] = ACTIONS(4165), + [aux_sym_subsubsection_token1] = ACTIONS(4165), + [aux_sym_paragraph_token1] = ACTIONS(4165), + [aux_sym_subparagraph_token1] = ACTIONS(7878), + [anon_sym_BSLASHitem] = ACTIONS(7881), + [anon_sym_LBRACK] = ACTIONS(7884), + [anon_sym_RBRACK] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(7887), + [anon_sym_RBRACE] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(7884), + [anon_sym_COMMA] = ACTIONS(7890), + [anon_sym_EQ] = ACTIONS(7890), + [sym_word] = ACTIONS(7890), + [sym_param] = ACTIONS(7893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7896), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7896), + [anon_sym_DOLLAR] = ACTIONS(7899), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7902), + [anon_sym_BSLASHbegin] = ACTIONS(4194), + [anon_sym_BSLASHcaption] = ACTIONS(7905), + [anon_sym_BSLASHcite] = ACTIONS(7908), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7911), + [anon_sym_BSLASHCite] = ACTIONS(7908), + [anon_sym_BSLASHnocite] = ACTIONS(7908), + [anon_sym_BSLASHcitet] = ACTIONS(7908), + [anon_sym_BSLASHcitep] = ACTIONS(7908), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7911), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7911), + [anon_sym_BSLASHciteauthor] = ACTIONS(7908), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7911), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7908), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7911), + [anon_sym_BSLASHcitetitle] = ACTIONS(7908), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7911), + [anon_sym_BSLASHciteyear] = ACTIONS(7908), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7911), + [anon_sym_BSLASHcitedate] = ACTIONS(7908), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7911), + [anon_sym_BSLASHciteurl] = ACTIONS(7908), + [anon_sym_BSLASHfullcite] = ACTIONS(7908), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7908), + [anon_sym_BSLASHcitealt] = ACTIONS(7908), + [anon_sym_BSLASHcitealp] = ACTIONS(7908), + [anon_sym_BSLASHcitetext] = ACTIONS(7908), + [anon_sym_BSLASHparencite] = ACTIONS(7908), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7911), + [anon_sym_BSLASHParencite] = ACTIONS(7908), + [anon_sym_BSLASHfootcite] = ACTIONS(7908), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7908), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7908), + [anon_sym_BSLASHtextcite] = ACTIONS(7908), + [anon_sym_BSLASHTextcite] = ACTIONS(7908), + [anon_sym_BSLASHsmartcite] = ACTIONS(7908), + [anon_sym_BSLASHSmartcite] = ACTIONS(7908), + [anon_sym_BSLASHsupercite] = ACTIONS(7908), + [anon_sym_BSLASHautocite] = ACTIONS(7908), + [anon_sym_BSLASHAutocite] = ACTIONS(7908), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7911), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7911), + [anon_sym_BSLASHvolcite] = ACTIONS(7908), + [anon_sym_BSLASHVolcite] = ACTIONS(7908), + [anon_sym_BSLASHpvolcite] = ACTIONS(7908), + [anon_sym_BSLASHPvolcite] = ACTIONS(7908), + [anon_sym_BSLASHfvolcite] = ACTIONS(7908), + [anon_sym_BSLASHftvolcite] = ACTIONS(7908), + [anon_sym_BSLASHsvolcite] = ACTIONS(7908), + [anon_sym_BSLASHSvolcite] = ACTIONS(7908), + [anon_sym_BSLASHtvolcite] = ACTIONS(7908), + [anon_sym_BSLASHTvolcite] = ACTIONS(7908), + [anon_sym_BSLASHavolcite] = ACTIONS(7908), + [anon_sym_BSLASHAvolcite] = ACTIONS(7908), + [anon_sym_BSLASHnotecite] = ACTIONS(7908), + [anon_sym_BSLASHpnotecite] = ACTIONS(7908), + [anon_sym_BSLASHPnotecite] = ACTIONS(7908), + [anon_sym_BSLASHfnotecite] = ACTIONS(7908), + [anon_sym_BSLASHusepackage] = ACTIONS(7914), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7914), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7917), + [anon_sym_BSLASHinclude] = ACTIONS(7920), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7920), + [anon_sym_BSLASHinput] = ACTIONS(7923), + [anon_sym_BSLASHsubfile] = ACTIONS(7923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7926), + [anon_sym_BSLASHbibliography] = ACTIONS(7929), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7932), + [anon_sym_BSLASHincludesvg] = ACTIONS(7935), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7938), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7941), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7941), + [anon_sym_BSLASHimport] = ACTIONS(7944), + [anon_sym_BSLASHsubimport] = ACTIONS(7944), + [anon_sym_BSLASHinputfrom] = ACTIONS(7944), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7944), + [anon_sym_BSLASHincludefrom] = ACTIONS(7944), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7944), + [anon_sym_BSLASHlabel] = ACTIONS(7947), + [anon_sym_BSLASHref] = ACTIONS(7950), + [anon_sym_BSLASHvref] = ACTIONS(7950), + [anon_sym_BSLASHVref] = ACTIONS(7950), + [anon_sym_BSLASHautoref] = ACTIONS(7950), + [anon_sym_BSLASHpageref] = ACTIONS(7950), + [anon_sym_BSLASHcref] = ACTIONS(7950), + [anon_sym_BSLASHCref] = ACTIONS(7950), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7953), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7953), + [anon_sym_BSLASHnamecref] = ACTIONS(7950), + [anon_sym_BSLASHnameCref] = ACTIONS(7950), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7950), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7950), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7950), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7950), + [anon_sym_BSLASHlabelcref] = ACTIONS(7950), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7950), + [anon_sym_BSLASHeqref] = ACTIONS(7956), + [anon_sym_BSLASHcrefrange] = ACTIONS(7959), + [anon_sym_BSLASHCrefrange] = ACTIONS(7959), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7962), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7962), + [anon_sym_BSLASHnewlabel] = ACTIONS(7965), + [anon_sym_BSLASHnewcommand] = ACTIONS(7968), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7968), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7968), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7971), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7974), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7977), + [anon_sym_BSLASHgls] = ACTIONS(7980), + [anon_sym_BSLASHGls] = ACTIONS(7980), + [anon_sym_BSLASHGLS] = ACTIONS(7980), + [anon_sym_BSLASHglspl] = ACTIONS(7980), + [anon_sym_BSLASHGlspl] = ACTIONS(7980), + [anon_sym_BSLASHGLSpl] = ACTIONS(7980), + [anon_sym_BSLASHglsdisp] = ACTIONS(7980), + [anon_sym_BSLASHglslink] = ACTIONS(7980), + [anon_sym_BSLASHglstext] = ACTIONS(7980), + [anon_sym_BSLASHGlstext] = ACTIONS(7980), + [anon_sym_BSLASHGLStext] = ACTIONS(7980), + [anon_sym_BSLASHglsfirst] = ACTIONS(7980), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7980), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7980), + [anon_sym_BSLASHglsplural] = ACTIONS(7980), + [anon_sym_BSLASHGlsplural] = ACTIONS(7980), + [anon_sym_BSLASHGLSplural] = ACTIONS(7980), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7980), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7980), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7980), + [anon_sym_BSLASHglsname] = ACTIONS(7980), + [anon_sym_BSLASHGlsname] = ACTIONS(7980), + [anon_sym_BSLASHGLSname] = ACTIONS(7980), + [anon_sym_BSLASHglssymbol] = ACTIONS(7980), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7980), + [anon_sym_BSLASHglsdesc] = ACTIONS(7980), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7980), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7980), + [anon_sym_BSLASHglsuseri] = ACTIONS(7980), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7980), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7980), + [anon_sym_BSLASHglsuserii] = ACTIONS(7980), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7980), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7980), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7980), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7980), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7980), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7980), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7980), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7980), + [anon_sym_BSLASHglsuserv] = ACTIONS(7980), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7980), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7980), + [anon_sym_BSLASHglsuservi] = ACTIONS(7980), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7980), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7980), + [anon_sym_BSLASHnewacronym] = ACTIONS(7983), + [anon_sym_BSLASHacrshort] = ACTIONS(7986), + [anon_sym_BSLASHAcrshort] = ACTIONS(7986), + [anon_sym_BSLASHACRshort] = ACTIONS(7986), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7986), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7986), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7986), + [anon_sym_BSLASHacrlong] = ACTIONS(7986), + [anon_sym_BSLASHAcrlong] = ACTIONS(7986), + [anon_sym_BSLASHACRlong] = ACTIONS(7986), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7986), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7986), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7986), + [anon_sym_BSLASHacrfull] = ACTIONS(7986), + [anon_sym_BSLASHAcrfull] = ACTIONS(7986), + [anon_sym_BSLASHACRfull] = ACTIONS(7986), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7986), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7986), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7986), + [anon_sym_BSLASHacs] = ACTIONS(7986), + [anon_sym_BSLASHAcs] = ACTIONS(7986), + [anon_sym_BSLASHacsp] = ACTIONS(7986), + [anon_sym_BSLASHAcsp] = ACTIONS(7986), + [anon_sym_BSLASHacl] = ACTIONS(7986), + [anon_sym_BSLASHAcl] = ACTIONS(7986), + [anon_sym_BSLASHaclp] = ACTIONS(7986), + [anon_sym_BSLASHAclp] = ACTIONS(7986), + [anon_sym_BSLASHacf] = ACTIONS(7986), + [anon_sym_BSLASHAcf] = ACTIONS(7986), + [anon_sym_BSLASHacfp] = ACTIONS(7986), + [anon_sym_BSLASHAcfp] = ACTIONS(7986), + [anon_sym_BSLASHac] = ACTIONS(7986), + [anon_sym_BSLASHAc] = ACTIONS(7986), + [anon_sym_BSLASHacp] = ACTIONS(7986), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7986), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7986), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7986), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7986), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7986), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7986), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7986), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7986), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7986), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7986), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7989), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7989), + [anon_sym_BSLASHcolor] = ACTIONS(7992), + [anon_sym_BSLASHcolorbox] = ACTIONS(7992), + [anon_sym_BSLASHtextcolor] = ACTIONS(7992), + [anon_sym_BSLASHpagecolor] = ACTIONS(7992), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7998), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(8001), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8004), + }, + [369] = { + [sym__simple_content] = STATE(369), + [sym_subsubsection] = STATE(369), + [sym_paragraph] = STATE(369), + [sym_subparagraph] = STATE(369), + [sym_enum_item] = STATE(369), + [sym_brace_group] = STATE(369), + [sym_mixed_group] = STATE(369), + [sym_text] = STATE(369), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(369), + [sym_inline_formula] = STATE(369), + [sym_begin] = STATE(112), + [sym_environment] = STATE(369), + [sym_caption] = STATE(369), + [sym_citation] = STATE(369), + [sym_package_include] = STATE(369), + [sym_class_include] = STATE(369), + [sym_latex_include] = STATE(369), + [sym_latex_input] = STATE(369), + [sym_biblatex_include] = STATE(369), + [sym_bibtex_include] = STATE(369), + [sym_graphics_include] = STATE(369), + [sym_svg_include] = STATE(369), + [sym_inkscape_include] = STATE(369), + [sym_verbatim_include] = STATE(369), + [sym_import] = STATE(369), + [sym_label_definition] = STATE(369), + [sym_label_reference] = STATE(369), + [sym_equation_label_reference] = STATE(369), + [sym_label_reference_range] = STATE(369), + [sym_label_number] = STATE(369), + [sym_command_definition] = STATE(369), + [sym_math_operator] = STATE(369), + [sym_glossary_entry_definition] = STATE(369), + [sym_glossary_entry_reference] = STATE(369), + [sym_acronym_definition] = STATE(369), + [sym_acronym_reference] = STATE(369), + [sym_theorem_definition] = STATE(369), + [sym_color_reference] = STATE(369), + [sym_color_definition] = STATE(369), + [sym_color_set_definition] = STATE(369), + [sym_pgf_library_import] = STATE(369), + [sym_tikz_library_import] = STATE(369), + [sym_generic_command] = STATE(369), + [aux_sym_subsection_repeat1] = STATE(369), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(8007), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(8010), + [aux_sym_paragraph_token1] = ACTIONS(8013), + [aux_sym_subparagraph_token1] = ACTIONS(8016), + [anon_sym_BSLASHitem] = ACTIONS(8019), + [anon_sym_LBRACK] = ACTIONS(8022), + [anon_sym_RBRACK] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(8025), + [anon_sym_RBRACE] = ACTIONS(2135), + [anon_sym_LPAREN] = ACTIONS(8022), + [anon_sym_COMMA] = ACTIONS(8028), + [anon_sym_EQ] = ACTIONS(8028), + [sym_word] = ACTIONS(8028), + [sym_param] = ACTIONS(8031), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8034), + [anon_sym_BSLASH_LBRACK] = ACTIONS(8034), + [anon_sym_DOLLAR] = ACTIONS(8037), + [anon_sym_BSLASH_LPAREN] = ACTIONS(8040), + [anon_sym_BSLASHbegin] = ACTIONS(2175), + [anon_sym_BSLASHcaption] = ACTIONS(8043), + [anon_sym_BSLASHcite] = ACTIONS(8046), + [anon_sym_BSLASHcite_STAR] = ACTIONS(8049), + [anon_sym_BSLASHCite] = ACTIONS(8046), + [anon_sym_BSLASHnocite] = ACTIONS(8046), + [anon_sym_BSLASHcitet] = ACTIONS(8046), + [anon_sym_BSLASHcitep] = ACTIONS(8046), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(8049), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(8049), + [anon_sym_BSLASHciteauthor] = ACTIONS(8046), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(8049), + [anon_sym_BSLASHCiteauthor] = ACTIONS(8046), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(8049), + [anon_sym_BSLASHcitetitle] = ACTIONS(8046), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(8049), + [anon_sym_BSLASHciteyear] = ACTIONS(8046), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(8049), + [anon_sym_BSLASHcitedate] = ACTIONS(8046), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(8049), + [anon_sym_BSLASHciteurl] = ACTIONS(8046), + [anon_sym_BSLASHfullcite] = ACTIONS(8046), + [anon_sym_BSLASHciteyearpar] = ACTIONS(8046), + [anon_sym_BSLASHcitealt] = ACTIONS(8046), + [anon_sym_BSLASHcitealp] = ACTIONS(8046), + [anon_sym_BSLASHcitetext] = ACTIONS(8046), + [anon_sym_BSLASHparencite] = ACTIONS(8046), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(8049), + [anon_sym_BSLASHParencite] = ACTIONS(8046), + [anon_sym_BSLASHfootcite] = ACTIONS(8046), + [anon_sym_BSLASHfootfullcite] = ACTIONS(8046), + [anon_sym_BSLASHfootcitetext] = ACTIONS(8046), + [anon_sym_BSLASHtextcite] = ACTIONS(8046), + [anon_sym_BSLASHTextcite] = ACTIONS(8046), + [anon_sym_BSLASHsmartcite] = ACTIONS(8046), + [anon_sym_BSLASHSmartcite] = ACTIONS(8046), + [anon_sym_BSLASHsupercite] = ACTIONS(8046), + [anon_sym_BSLASHautocite] = ACTIONS(8046), + [anon_sym_BSLASHAutocite] = ACTIONS(8046), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(8049), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(8049), + [anon_sym_BSLASHvolcite] = ACTIONS(8046), + [anon_sym_BSLASHVolcite] = ACTIONS(8046), + [anon_sym_BSLASHpvolcite] = ACTIONS(8046), + [anon_sym_BSLASHPvolcite] = ACTIONS(8046), + [anon_sym_BSLASHfvolcite] = ACTIONS(8046), + [anon_sym_BSLASHftvolcite] = ACTIONS(8046), + [anon_sym_BSLASHsvolcite] = ACTIONS(8046), + [anon_sym_BSLASHSvolcite] = ACTIONS(8046), + [anon_sym_BSLASHtvolcite] = ACTIONS(8046), + [anon_sym_BSLASHTvolcite] = ACTIONS(8046), + [anon_sym_BSLASHavolcite] = ACTIONS(8046), + [anon_sym_BSLASHAvolcite] = ACTIONS(8046), + [anon_sym_BSLASHnotecite] = ACTIONS(8046), + [anon_sym_BSLASHpnotecite] = ACTIONS(8046), + [anon_sym_BSLASHPnotecite] = ACTIONS(8046), + [anon_sym_BSLASHfnotecite] = ACTIONS(8046), + [anon_sym_BSLASHusepackage] = ACTIONS(8052), + [anon_sym_BSLASHRequirePackage] = ACTIONS(8052), + [anon_sym_BSLASHdocumentclass] = ACTIONS(8055), + [anon_sym_BSLASHinclude] = ACTIONS(8058), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(8058), + [anon_sym_BSLASHinput] = ACTIONS(8061), + [anon_sym_BSLASHsubfile] = ACTIONS(8061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(8064), + [anon_sym_BSLASHbibliography] = ACTIONS(8067), + [anon_sym_BSLASHincludegraphics] = ACTIONS(8070), + [anon_sym_BSLASHincludesvg] = ACTIONS(8073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(8076), + [anon_sym_BSLASHverbatiminput] = ACTIONS(8079), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(8079), + [anon_sym_BSLASHimport] = ACTIONS(8082), + [anon_sym_BSLASHsubimport] = ACTIONS(8082), + [anon_sym_BSLASHinputfrom] = ACTIONS(8082), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(8082), + [anon_sym_BSLASHincludefrom] = ACTIONS(8082), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(8082), + [anon_sym_BSLASHlabel] = ACTIONS(8085), + [anon_sym_BSLASHref] = ACTIONS(8088), + [anon_sym_BSLASHvref] = ACTIONS(8088), + [anon_sym_BSLASHVref] = ACTIONS(8088), + [anon_sym_BSLASHautoref] = ACTIONS(8088), + [anon_sym_BSLASHpageref] = ACTIONS(8088), + [anon_sym_BSLASHcref] = ACTIONS(8088), + [anon_sym_BSLASHCref] = ACTIONS(8088), + [anon_sym_BSLASHcref_STAR] = ACTIONS(8091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(8091), + [anon_sym_BSLASHnamecref] = ACTIONS(8088), + [anon_sym_BSLASHnameCref] = ACTIONS(8088), + [anon_sym_BSLASHlcnamecref] = ACTIONS(8088), + [anon_sym_BSLASHnamecrefs] = ACTIONS(8088), + [anon_sym_BSLASHnameCrefs] = ACTIONS(8088), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(8088), + [anon_sym_BSLASHlabelcref] = ACTIONS(8088), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(8088), + [anon_sym_BSLASHeqref] = ACTIONS(8094), + [anon_sym_BSLASHcrefrange] = ACTIONS(8097), + [anon_sym_BSLASHCrefrange] = ACTIONS(8097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(8100), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(8100), + [anon_sym_BSLASHnewlabel] = ACTIONS(8103), + [anon_sym_BSLASHnewcommand] = ACTIONS(8106), + [anon_sym_BSLASHrenewcommand] = ACTIONS(8106), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(8106), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(8109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(8112), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8115), + [anon_sym_BSLASHgls] = ACTIONS(8118), + [anon_sym_BSLASHGls] = ACTIONS(8118), + [anon_sym_BSLASHGLS] = ACTIONS(8118), + [anon_sym_BSLASHglspl] = ACTIONS(8118), + [anon_sym_BSLASHGlspl] = ACTIONS(8118), + [anon_sym_BSLASHGLSpl] = ACTIONS(8118), + [anon_sym_BSLASHglsdisp] = ACTIONS(8118), + [anon_sym_BSLASHglslink] = ACTIONS(8118), + [anon_sym_BSLASHglstext] = ACTIONS(8118), + [anon_sym_BSLASHGlstext] = ACTIONS(8118), + [anon_sym_BSLASHGLStext] = ACTIONS(8118), + [anon_sym_BSLASHglsfirst] = ACTIONS(8118), + [anon_sym_BSLASHGlsfirst] = ACTIONS(8118), + [anon_sym_BSLASHGLSfirst] = ACTIONS(8118), + [anon_sym_BSLASHglsplural] = ACTIONS(8118), + [anon_sym_BSLASHGlsplural] = ACTIONS(8118), + [anon_sym_BSLASHGLSplural] = ACTIONS(8118), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(8118), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(8118), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(8118), + [anon_sym_BSLASHglsname] = ACTIONS(8118), + [anon_sym_BSLASHGlsname] = ACTIONS(8118), + [anon_sym_BSLASHGLSname] = ACTIONS(8118), + [anon_sym_BSLASHglssymbol] = ACTIONS(8118), + [anon_sym_BSLASHGlssymbol] = ACTIONS(8118), + [anon_sym_BSLASHglsdesc] = ACTIONS(8118), + [anon_sym_BSLASHGlsdesc] = ACTIONS(8118), + [anon_sym_BSLASHGLSdesc] = ACTIONS(8118), + [anon_sym_BSLASHglsuseri] = ACTIONS(8118), + [anon_sym_BSLASHGlsuseri] = ACTIONS(8118), + [anon_sym_BSLASHGLSuseri] = ACTIONS(8118), + [anon_sym_BSLASHglsuserii] = ACTIONS(8118), + [anon_sym_BSLASHGlsuserii] = ACTIONS(8118), + [anon_sym_BSLASHGLSuserii] = ACTIONS(8118), + [anon_sym_BSLASHglsuseriii] = ACTIONS(8118), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(8118), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(8118), + [anon_sym_BSLASHglsuseriv] = ACTIONS(8118), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(8118), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(8118), + [anon_sym_BSLASHglsuserv] = ACTIONS(8118), + [anon_sym_BSLASHGlsuserv] = ACTIONS(8118), + [anon_sym_BSLASHGLSuserv] = ACTIONS(8118), + [anon_sym_BSLASHglsuservi] = ACTIONS(8118), + [anon_sym_BSLASHGlsuservi] = ACTIONS(8118), + [anon_sym_BSLASHGLSuservi] = ACTIONS(8118), + [anon_sym_BSLASHnewacronym] = ACTIONS(8121), + [anon_sym_BSLASHacrshort] = ACTIONS(8124), + [anon_sym_BSLASHAcrshort] = ACTIONS(8124), + [anon_sym_BSLASHACRshort] = ACTIONS(8124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(8124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(8124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(8124), + [anon_sym_BSLASHacrlong] = ACTIONS(8124), + [anon_sym_BSLASHAcrlong] = ACTIONS(8124), + [anon_sym_BSLASHACRlong] = ACTIONS(8124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(8124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(8124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(8124), + [anon_sym_BSLASHacrfull] = ACTIONS(8124), + [anon_sym_BSLASHAcrfull] = ACTIONS(8124), + [anon_sym_BSLASHACRfull] = ACTIONS(8124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(8124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(8124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(8124), + [anon_sym_BSLASHacs] = ACTIONS(8124), + [anon_sym_BSLASHAcs] = ACTIONS(8124), + [anon_sym_BSLASHacsp] = ACTIONS(8124), + [anon_sym_BSLASHAcsp] = ACTIONS(8124), + [anon_sym_BSLASHacl] = ACTIONS(8124), + [anon_sym_BSLASHAcl] = ACTIONS(8124), + [anon_sym_BSLASHaclp] = ACTIONS(8124), + [anon_sym_BSLASHAclp] = ACTIONS(8124), + [anon_sym_BSLASHacf] = ACTIONS(8124), + [anon_sym_BSLASHAcf] = ACTIONS(8124), + [anon_sym_BSLASHacfp] = ACTIONS(8124), + [anon_sym_BSLASHAcfp] = ACTIONS(8124), + [anon_sym_BSLASHac] = ACTIONS(8124), + [anon_sym_BSLASHAc] = ACTIONS(8124), + [anon_sym_BSLASHacp] = ACTIONS(8124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(8124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(8124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(8124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(8124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(8124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(8124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(8124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(8124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(8124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(8124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(8127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(8127), + [anon_sym_BSLASHcolor] = ACTIONS(8130), + [anon_sym_BSLASHcolorbox] = ACTIONS(8130), + [anon_sym_BSLASHtextcolor] = ACTIONS(8130), + [anon_sym_BSLASHpagecolor] = ACTIONS(8130), + [anon_sym_BSLASHdefinecolor] = ACTIONS(8133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(8136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(8139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8142), + }, + [370] = { + [sym__simple_content] = STATE(373), + [sym_enum_item] = STATE(373), + [sym_brace_group] = STATE(373), + [sym_mixed_group] = STATE(373), + [sym_text] = STATE(373), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(373), + [sym_inline_formula] = STATE(373), + [sym_begin] = STATE(73), + [sym_environment] = STATE(373), + [sym_caption] = STATE(373), + [sym_citation] = STATE(373), + [sym_package_include] = STATE(373), + [sym_class_include] = STATE(373), + [sym_latex_include] = STATE(373), + [sym_latex_input] = STATE(373), + [sym_biblatex_include] = STATE(373), + [sym_bibtex_include] = STATE(373), + [sym_graphics_include] = STATE(373), + [sym_svg_include] = STATE(373), + [sym_inkscape_include] = STATE(373), + [sym_verbatim_include] = STATE(373), + [sym_import] = STATE(373), + [sym_label_definition] = STATE(373), + [sym_label_reference] = STATE(373), + [sym_equation_label_reference] = STATE(373), + [sym_label_reference_range] = STATE(373), + [sym_label_number] = STATE(373), + [sym_command_definition] = STATE(373), + [sym_math_operator] = STATE(373), + [sym_glossary_entry_definition] = STATE(373), + [sym_glossary_entry_reference] = STATE(373), + [sym_acronym_definition] = STATE(373), + [sym_acronym_reference] = STATE(373), + [sym_theorem_definition] = STATE(373), + [sym_color_reference] = STATE(373), + [sym_color_definition] = STATE(373), + [sym_color_set_definition] = STATE(373), + [sym_pgf_library_import] = STATE(373), + [sym_tikz_library_import] = STATE(373), + [sym_generic_command] = STATE(373), + [aux_sym_subparagraph_repeat1] = STATE(373), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4879), + [aux_sym_chapter_token1] = ACTIONS(4879), + [aux_sym_section_token1] = ACTIONS(4879), + [aux_sym_subsection_token1] = ACTIONS(4879), + [aux_sym_subsubsection_token1] = ACTIONS(4879), + [aux_sym_paragraph_token1] = ACTIONS(4879), + [aux_sym_subparagraph_token1] = ACTIONS(4879), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(8145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(4879), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [371] = { + [sym__simple_content] = STATE(364), + [sym_enum_item] = STATE(364), + [sym_brace_group] = STATE(364), + [sym_mixed_group] = STATE(364), + [sym_text] = STATE(364), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(364), + [sym_inline_formula] = STATE(364), + [sym_begin] = STATE(59), + [sym_environment] = STATE(364), + [sym_caption] = STATE(364), + [sym_citation] = STATE(364), + [sym_package_include] = STATE(364), + [sym_class_include] = STATE(364), + [sym_latex_include] = STATE(364), + [sym_latex_input] = STATE(364), + [sym_biblatex_include] = STATE(364), + [sym_bibtex_include] = STATE(364), + [sym_graphics_include] = STATE(364), + [sym_svg_include] = STATE(364), + [sym_inkscape_include] = STATE(364), + [sym_verbatim_include] = STATE(364), + [sym_import] = STATE(364), + [sym_label_definition] = STATE(364), + [sym_label_reference] = STATE(364), + [sym_equation_label_reference] = STATE(364), + [sym_label_reference_range] = STATE(364), + [sym_label_number] = STATE(364), + [sym_command_definition] = STATE(364), + [sym_math_operator] = STATE(364), + [sym_glossary_entry_definition] = STATE(364), + [sym_glossary_entry_reference] = STATE(364), + [sym_acronym_definition] = STATE(364), + [sym_acronym_reference] = STATE(364), + [sym_theorem_definition] = STATE(364), + [sym_color_reference] = STATE(364), + [sym_color_definition] = STATE(364), + [sym_color_set_definition] = STATE(364), + [sym_pgf_library_import] = STATE(364), + [sym_tikz_library_import] = STATE(364), + [sym_generic_command] = STATE(364), + [aux_sym_subparagraph_repeat1] = STATE(364), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4879), + [aux_sym_chapter_token1] = ACTIONS(4879), + [aux_sym_section_token1] = ACTIONS(4879), + [aux_sym_subsection_token1] = ACTIONS(4879), + [aux_sym_subsubsection_token1] = ACTIONS(4879), + [aux_sym_paragraph_token1] = ACTIONS(4879), + [aux_sym_subparagraph_token1] = ACTIONS(4879), + [anon_sym_BSLASHitem] = ACTIONS(300), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(8147), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [372] = { + [sym__simple_content] = STATE(362), + [sym_enum_item] = STATE(362), + [sym_brace_group] = STATE(362), + [sym_mixed_group] = STATE(362), + [sym_text] = STATE(362), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(362), + [sym_inline_formula] = STATE(362), + [sym_begin] = STATE(66), + [sym_environment] = STATE(362), + [sym_caption] = STATE(362), + [sym_citation] = STATE(362), + [sym_package_include] = STATE(362), + [sym_class_include] = STATE(362), + [sym_latex_include] = STATE(362), + [sym_latex_input] = STATE(362), + [sym_biblatex_include] = STATE(362), + [sym_bibtex_include] = STATE(362), + [sym_graphics_include] = STATE(362), + [sym_svg_include] = STATE(362), + [sym_inkscape_include] = STATE(362), + [sym_verbatim_include] = STATE(362), + [sym_import] = STATE(362), + [sym_label_definition] = STATE(362), + [sym_label_reference] = STATE(362), + [sym_equation_label_reference] = STATE(362), + [sym_label_reference_range] = STATE(362), + [sym_label_number] = STATE(362), + [sym_command_definition] = STATE(362), + [sym_math_operator] = STATE(362), + [sym_glossary_entry_definition] = STATE(362), + [sym_glossary_entry_reference] = STATE(362), + [sym_acronym_definition] = STATE(362), + [sym_acronym_reference] = STATE(362), + [sym_theorem_definition] = STATE(362), + [sym_color_reference] = STATE(362), + [sym_color_definition] = STATE(362), + [sym_color_set_definition] = STATE(362), + [sym_pgf_library_import] = STATE(362), + [sym_tikz_library_import] = STATE(362), + [sym_generic_command] = STATE(362), + [aux_sym_subparagraph_repeat1] = STATE(362), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(4879), + [aux_sym_chapter_token1] = ACTIONS(4879), + [aux_sym_section_token1] = ACTIONS(4879), + [aux_sym_subsection_token1] = ACTIONS(4879), + [aux_sym_subsubsection_token1] = ACTIONS(4879), + [aux_sym_paragraph_token1] = ACTIONS(4879), + [aux_sym_subparagraph_token1] = ACTIONS(4879), + [anon_sym_BSLASHitem] = ACTIONS(402), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(8149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4877), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [373] = { + [sym__simple_content] = STATE(376), + [sym_enum_item] = STATE(376), + [sym_brace_group] = STATE(376), + [sym_mixed_group] = STATE(376), + [sym_text] = STATE(376), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(376), + [sym_inline_formula] = STATE(376), + [sym_begin] = STATE(73), + [sym_environment] = STATE(376), + [sym_caption] = STATE(376), + [sym_citation] = STATE(376), + [sym_package_include] = STATE(376), + [sym_class_include] = STATE(376), + [sym_latex_include] = STATE(376), + [sym_latex_input] = STATE(376), + [sym_biblatex_include] = STATE(376), + [sym_bibtex_include] = STATE(376), + [sym_graphics_include] = STATE(376), + [sym_svg_include] = STATE(376), + [sym_inkscape_include] = STATE(376), + [sym_verbatim_include] = STATE(376), + [sym_import] = STATE(376), + [sym_label_definition] = STATE(376), + [sym_label_reference] = STATE(376), + [sym_equation_label_reference] = STATE(376), + [sym_label_reference_range] = STATE(376), + [sym_label_number] = STATE(376), + [sym_command_definition] = STATE(376), + [sym_math_operator] = STATE(376), + [sym_glossary_entry_definition] = STATE(376), + [sym_glossary_entry_reference] = STATE(376), + [sym_acronym_definition] = STATE(376), + [sym_acronym_reference] = STATE(376), + [sym_theorem_definition] = STATE(376), + [sym_color_reference] = STATE(376), + [sym_color_definition] = STATE(376), + [sym_color_set_definition] = STATE(376), + [sym_pgf_library_import] = STATE(376), + [sym_tikz_library_import] = STATE(376), + [sym_generic_command] = STATE(376), + [aux_sym_subparagraph_repeat1] = STATE(376), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5168), + [aux_sym_chapter_token1] = ACTIONS(5168), + [aux_sym_section_token1] = ACTIONS(5168), + [aux_sym_subsection_token1] = ACTIONS(5168), + [aux_sym_subsubsection_token1] = ACTIONS(5168), + [aux_sym_paragraph_token1] = ACTIONS(5168), + [aux_sym_subparagraph_token1] = ACTIONS(5168), + [anon_sym_BSLASHitem] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(8151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(5168), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [374] = { + [sym__simple_content] = STATE(368), + [sym_subparagraph] = STATE(368), + [sym_enum_item] = STATE(368), + [sym_brace_group] = STATE(368), + [sym_mixed_group] = STATE(368), + [sym_text] = STATE(368), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(368), + [sym_inline_formula] = STATE(368), + [sym_begin] = STATE(94), + [sym_environment] = STATE(368), + [sym_caption] = STATE(368), + [sym_citation] = STATE(368), + [sym_package_include] = STATE(368), + [sym_class_include] = STATE(368), + [sym_latex_include] = STATE(368), + [sym_latex_input] = STATE(368), + [sym_biblatex_include] = STATE(368), + [sym_bibtex_include] = STATE(368), + [sym_graphics_include] = STATE(368), + [sym_svg_include] = STATE(368), + [sym_inkscape_include] = STATE(368), + [sym_verbatim_include] = STATE(368), + [sym_import] = STATE(368), + [sym_label_definition] = STATE(368), + [sym_label_reference] = STATE(368), + [sym_equation_label_reference] = STATE(368), + [sym_label_reference_range] = STATE(368), + [sym_label_number] = STATE(368), + [sym_command_definition] = STATE(368), + [sym_math_operator] = STATE(368), + [sym_glossary_entry_definition] = STATE(368), + [sym_glossary_entry_reference] = STATE(368), + [sym_acronym_definition] = STATE(368), + [sym_acronym_reference] = STATE(368), + [sym_theorem_definition] = STATE(368), + [sym_color_reference] = STATE(368), + [sym_color_definition] = STATE(368), + [sym_color_set_definition] = STATE(368), + [sym_pgf_library_import] = STATE(368), + [sym_tikz_library_import] = STATE(368), + [sym_generic_command] = STATE(368), + [aux_sym_paragraph_repeat1] = STATE(368), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(4156), + [aux_sym_subsection_token1] = ACTIONS(4156), + [aux_sym_subsubsection_token1] = ACTIONS(4156), + [aux_sym_paragraph_token1] = ACTIONS(4156), + [aux_sym_subparagraph_token1] = ACTIONS(4068), + [anon_sym_BSLASHitem] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(8153), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [375] = { + [sym__simple_content] = STATE(360), + [sym_paragraph] = STATE(360), + [sym_subparagraph] = STATE(360), + [sym_enum_item] = STATE(360), + [sym_brace_group] = STATE(360), + [sym_mixed_group] = STATE(360), + [sym_text] = STATE(360), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(360), + [sym_inline_formula] = STATE(360), + [sym_begin] = STATE(105), + [sym_environment] = STATE(360), + [sym_caption] = STATE(360), + [sym_citation] = STATE(360), + [sym_package_include] = STATE(360), + [sym_class_include] = STATE(360), + [sym_latex_include] = STATE(360), + [sym_latex_input] = STATE(360), + [sym_biblatex_include] = STATE(360), + [sym_bibtex_include] = STATE(360), + [sym_graphics_include] = STATE(360), + [sym_svg_include] = STATE(360), + [sym_inkscape_include] = STATE(360), + [sym_verbatim_include] = STATE(360), + [sym_import] = STATE(360), + [sym_label_definition] = STATE(360), + [sym_label_reference] = STATE(360), + [sym_equation_label_reference] = STATE(360), + [sym_label_reference_range] = STATE(360), + [sym_label_number] = STATE(360), + [sym_command_definition] = STATE(360), + [sym_math_operator] = STATE(360), + [sym_glossary_entry_definition] = STATE(360), + [sym_glossary_entry_reference] = STATE(360), + [sym_acronym_definition] = STATE(360), + [sym_acronym_reference] = STATE(360), + [sym_theorem_definition] = STATE(360), + [sym_color_reference] = STATE(360), + [sym_color_definition] = STATE(360), + [sym_color_set_definition] = STATE(360), + [sym_pgf_library_import] = STATE(360), + [sym_tikz_library_import] = STATE(360), + [sym_generic_command] = STATE(360), + [aux_sym_subsubsection_repeat1] = STATE(360), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(3614), + [aux_sym_subsubsection_token1] = ACTIONS(3614), + [aux_sym_paragraph_token1] = ACTIONS(6320), + [aux_sym_subparagraph_token1] = ACTIONS(6322), + [anon_sym_BSLASHitem] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(8155), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [376] = { + [sym__simple_content] = STATE(376), + [sym_enum_item] = STATE(376), + [sym_brace_group] = STATE(376), + [sym_mixed_group] = STATE(376), + [sym_text] = STATE(376), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(376), + [sym_inline_formula] = STATE(376), + [sym_begin] = STATE(73), + [sym_environment] = STATE(376), + [sym_caption] = STATE(376), + [sym_citation] = STATE(376), + [sym_package_include] = STATE(376), + [sym_class_include] = STATE(376), + [sym_latex_include] = STATE(376), + [sym_latex_input] = STATE(376), + [sym_biblatex_include] = STATE(376), + [sym_bibtex_include] = STATE(376), + [sym_graphics_include] = STATE(376), + [sym_svg_include] = STATE(376), + [sym_inkscape_include] = STATE(376), + [sym_verbatim_include] = STATE(376), + [sym_import] = STATE(376), + [sym_label_definition] = STATE(376), + [sym_label_reference] = STATE(376), + [sym_equation_label_reference] = STATE(376), + [sym_label_reference_range] = STATE(376), + [sym_label_number] = STATE(376), + [sym_command_definition] = STATE(376), + [sym_math_operator] = STATE(376), + [sym_glossary_entry_definition] = STATE(376), + [sym_glossary_entry_reference] = STATE(376), + [sym_acronym_definition] = STATE(376), + [sym_acronym_reference] = STATE(376), + [sym_theorem_definition] = STATE(376), + [sym_color_reference] = STATE(376), + [sym_color_definition] = STATE(376), + [sym_color_set_definition] = STATE(376), + [sym_pgf_library_import] = STATE(376), + [sym_tikz_library_import] = STATE(376), + [sym_generic_command] = STATE(376), + [aux_sym_subparagraph_repeat1] = STATE(376), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(8157), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5453), + [aux_sym_chapter_token1] = ACTIONS(5453), + [aux_sym_section_token1] = ACTIONS(5453), + [aux_sym_subsection_token1] = ACTIONS(5453), + [aux_sym_subsubsection_token1] = ACTIONS(5453), + [aux_sym_paragraph_token1] = ACTIONS(5453), + [aux_sym_subparagraph_token1] = ACTIONS(5453), + [anon_sym_BSLASHitem] = ACTIONS(8160), + [anon_sym_LBRACK] = ACTIONS(8163), + [anon_sym_LBRACE] = ACTIONS(8166), + [anon_sym_LPAREN] = ACTIONS(8163), + [anon_sym_COMMA] = ACTIONS(8169), + [anon_sym_EQ] = ACTIONS(8169), + [sym_word] = ACTIONS(8169), + [sym_param] = ACTIONS(8172), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(8175), + [anon_sym_DOLLAR] = ACTIONS(8178), + [anon_sym_BSLASH_LPAREN] = ACTIONS(8181), + [anon_sym_BSLASHbegin] = ACTIONS(5479), + [anon_sym_BSLASHend] = ACTIONS(5453), + [anon_sym_BSLASHcaption] = ACTIONS(8184), + [anon_sym_BSLASHcite] = ACTIONS(8187), + [anon_sym_BSLASHcite_STAR] = ACTIONS(8190), + [anon_sym_BSLASHCite] = ACTIONS(8187), + [anon_sym_BSLASHnocite] = ACTIONS(8187), + [anon_sym_BSLASHcitet] = ACTIONS(8187), + [anon_sym_BSLASHcitep] = ACTIONS(8187), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(8190), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(8190), + [anon_sym_BSLASHciteauthor] = ACTIONS(8187), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(8190), + [anon_sym_BSLASHCiteauthor] = ACTIONS(8187), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(8190), + [anon_sym_BSLASHcitetitle] = ACTIONS(8187), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(8190), + [anon_sym_BSLASHciteyear] = ACTIONS(8187), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(8190), + [anon_sym_BSLASHcitedate] = ACTIONS(8187), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(8190), + [anon_sym_BSLASHciteurl] = ACTIONS(8187), + [anon_sym_BSLASHfullcite] = ACTIONS(8187), + [anon_sym_BSLASHciteyearpar] = ACTIONS(8187), + [anon_sym_BSLASHcitealt] = ACTIONS(8187), + [anon_sym_BSLASHcitealp] = ACTIONS(8187), + [anon_sym_BSLASHcitetext] = ACTIONS(8187), + [anon_sym_BSLASHparencite] = ACTIONS(8187), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(8190), + [anon_sym_BSLASHParencite] = ACTIONS(8187), + [anon_sym_BSLASHfootcite] = ACTIONS(8187), + [anon_sym_BSLASHfootfullcite] = ACTIONS(8187), + [anon_sym_BSLASHfootcitetext] = ACTIONS(8187), + [anon_sym_BSLASHtextcite] = ACTIONS(8187), + [anon_sym_BSLASHTextcite] = ACTIONS(8187), + [anon_sym_BSLASHsmartcite] = ACTIONS(8187), + [anon_sym_BSLASHSmartcite] = ACTIONS(8187), + [anon_sym_BSLASHsupercite] = ACTIONS(8187), + [anon_sym_BSLASHautocite] = ACTIONS(8187), + [anon_sym_BSLASHAutocite] = ACTIONS(8187), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(8190), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(8190), + [anon_sym_BSLASHvolcite] = ACTIONS(8187), + [anon_sym_BSLASHVolcite] = ACTIONS(8187), + [anon_sym_BSLASHpvolcite] = ACTIONS(8187), + [anon_sym_BSLASHPvolcite] = ACTIONS(8187), + [anon_sym_BSLASHfvolcite] = ACTIONS(8187), + [anon_sym_BSLASHftvolcite] = ACTIONS(8187), + [anon_sym_BSLASHsvolcite] = ACTIONS(8187), + [anon_sym_BSLASHSvolcite] = ACTIONS(8187), + [anon_sym_BSLASHtvolcite] = ACTIONS(8187), + [anon_sym_BSLASHTvolcite] = ACTIONS(8187), + [anon_sym_BSLASHavolcite] = ACTIONS(8187), + [anon_sym_BSLASHAvolcite] = ACTIONS(8187), + [anon_sym_BSLASHnotecite] = ACTIONS(8187), + [anon_sym_BSLASHpnotecite] = ACTIONS(8187), + [anon_sym_BSLASHPnotecite] = ACTIONS(8187), + [anon_sym_BSLASHfnotecite] = ACTIONS(8187), + [anon_sym_BSLASHusepackage] = ACTIONS(8193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(8193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(8196), + [anon_sym_BSLASHinclude] = ACTIONS(8199), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(8199), + [anon_sym_BSLASHinput] = ACTIONS(8202), + [anon_sym_BSLASHsubfile] = ACTIONS(8202), + [anon_sym_BSLASHaddbibresource] = ACTIONS(8205), + [anon_sym_BSLASHbibliography] = ACTIONS(8208), + [anon_sym_BSLASHincludegraphics] = ACTIONS(8211), + [anon_sym_BSLASHincludesvg] = ACTIONS(8214), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(8217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(8220), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(8220), + [anon_sym_BSLASHimport] = ACTIONS(8223), + [anon_sym_BSLASHsubimport] = ACTIONS(8223), + [anon_sym_BSLASHinputfrom] = ACTIONS(8223), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(8223), + [anon_sym_BSLASHincludefrom] = ACTIONS(8223), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(8223), + [anon_sym_BSLASHlabel] = ACTIONS(8226), + [anon_sym_BSLASHref] = ACTIONS(8229), + [anon_sym_BSLASHvref] = ACTIONS(8229), + [anon_sym_BSLASHVref] = ACTIONS(8229), + [anon_sym_BSLASHautoref] = ACTIONS(8229), + [anon_sym_BSLASHpageref] = ACTIONS(8229), + [anon_sym_BSLASHcref] = ACTIONS(8229), + [anon_sym_BSLASHCref] = ACTIONS(8229), + [anon_sym_BSLASHcref_STAR] = ACTIONS(8232), + [anon_sym_BSLASHCref_STAR] = ACTIONS(8232), + [anon_sym_BSLASHnamecref] = ACTIONS(8229), + [anon_sym_BSLASHnameCref] = ACTIONS(8229), + [anon_sym_BSLASHlcnamecref] = ACTIONS(8229), + [anon_sym_BSLASHnamecrefs] = ACTIONS(8229), + [anon_sym_BSLASHnameCrefs] = ACTIONS(8229), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(8229), + [anon_sym_BSLASHlabelcref] = ACTIONS(8229), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(8229), + [anon_sym_BSLASHeqref] = ACTIONS(8235), + [anon_sym_BSLASHcrefrange] = ACTIONS(8238), + [anon_sym_BSLASHCrefrange] = ACTIONS(8238), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(8241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(8241), + [anon_sym_BSLASHnewlabel] = ACTIONS(8244), + [anon_sym_BSLASHnewcommand] = ACTIONS(8247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(8247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(8247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(8250), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(8253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8256), + [anon_sym_BSLASHgls] = ACTIONS(8259), + [anon_sym_BSLASHGls] = ACTIONS(8259), + [anon_sym_BSLASHGLS] = ACTIONS(8259), + [anon_sym_BSLASHglspl] = ACTIONS(8259), + [anon_sym_BSLASHGlspl] = ACTIONS(8259), + [anon_sym_BSLASHGLSpl] = ACTIONS(8259), + [anon_sym_BSLASHglsdisp] = ACTIONS(8259), + [anon_sym_BSLASHglslink] = ACTIONS(8259), + [anon_sym_BSLASHglstext] = ACTIONS(8259), + [anon_sym_BSLASHGlstext] = ACTIONS(8259), + [anon_sym_BSLASHGLStext] = ACTIONS(8259), + [anon_sym_BSLASHglsfirst] = ACTIONS(8259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(8259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(8259), + [anon_sym_BSLASHglsplural] = ACTIONS(8259), + [anon_sym_BSLASHGlsplural] = ACTIONS(8259), + [anon_sym_BSLASHGLSplural] = ACTIONS(8259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(8259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(8259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(8259), + [anon_sym_BSLASHglsname] = ACTIONS(8259), + [anon_sym_BSLASHGlsname] = ACTIONS(8259), + [anon_sym_BSLASHGLSname] = ACTIONS(8259), + [anon_sym_BSLASHglssymbol] = ACTIONS(8259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(8259), + [anon_sym_BSLASHglsdesc] = ACTIONS(8259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(8259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(8259), + [anon_sym_BSLASHglsuseri] = ACTIONS(8259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(8259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(8259), + [anon_sym_BSLASHglsuserii] = ACTIONS(8259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(8259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(8259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(8259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(8259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(8259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(8259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(8259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(8259), + [anon_sym_BSLASHglsuserv] = ACTIONS(8259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(8259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(8259), + [anon_sym_BSLASHglsuservi] = ACTIONS(8259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(8259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(8259), + [anon_sym_BSLASHnewacronym] = ACTIONS(8262), + [anon_sym_BSLASHacrshort] = ACTIONS(8265), + [anon_sym_BSLASHAcrshort] = ACTIONS(8265), + [anon_sym_BSLASHACRshort] = ACTIONS(8265), + [anon_sym_BSLASHacrshortpl] = ACTIONS(8265), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(8265), + [anon_sym_BSLASHACRshortpl] = ACTIONS(8265), + [anon_sym_BSLASHacrlong] = ACTIONS(8265), + [anon_sym_BSLASHAcrlong] = ACTIONS(8265), + [anon_sym_BSLASHACRlong] = ACTIONS(8265), + [anon_sym_BSLASHacrlongpl] = ACTIONS(8265), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(8265), + [anon_sym_BSLASHACRlongpl] = ACTIONS(8265), + [anon_sym_BSLASHacrfull] = ACTIONS(8265), + [anon_sym_BSLASHAcrfull] = ACTIONS(8265), + [anon_sym_BSLASHACRfull] = ACTIONS(8265), + [anon_sym_BSLASHacrfullpl] = ACTIONS(8265), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(8265), + [anon_sym_BSLASHACRfullpl] = ACTIONS(8265), + [anon_sym_BSLASHacs] = ACTIONS(8265), + [anon_sym_BSLASHAcs] = ACTIONS(8265), + [anon_sym_BSLASHacsp] = ACTIONS(8265), + [anon_sym_BSLASHAcsp] = ACTIONS(8265), + [anon_sym_BSLASHacl] = ACTIONS(8265), + [anon_sym_BSLASHAcl] = ACTIONS(8265), + [anon_sym_BSLASHaclp] = ACTIONS(8265), + [anon_sym_BSLASHAclp] = ACTIONS(8265), + [anon_sym_BSLASHacf] = ACTIONS(8265), + [anon_sym_BSLASHAcf] = ACTIONS(8265), + [anon_sym_BSLASHacfp] = ACTIONS(8265), + [anon_sym_BSLASHAcfp] = ACTIONS(8265), + [anon_sym_BSLASHac] = ACTIONS(8265), + [anon_sym_BSLASHAc] = ACTIONS(8265), + [anon_sym_BSLASHacp] = ACTIONS(8265), + [anon_sym_BSLASHglsentrylong] = ACTIONS(8265), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(8265), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(8265), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(8265), + [anon_sym_BSLASHglsentryshort] = ACTIONS(8265), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(8265), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(8265), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(8265), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(8265), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(8265), + [anon_sym_BSLASHnewtheorem] = ACTIONS(8268), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(8268), + [anon_sym_BSLASHcolor] = ACTIONS(8271), + [anon_sym_BSLASHcolorbox] = ACTIONS(8271), + [anon_sym_BSLASHtextcolor] = ACTIONS(8271), + [anon_sym_BSLASHpagecolor] = ACTIONS(8271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(8274), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(8277), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(8280), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8283), + }, + [377] = { + [sym__simple_content] = STATE(377), + [sym_paragraph] = STATE(377), + [sym_subparagraph] = STATE(377), + [sym_enum_item] = STATE(377), + [sym_brace_group] = STATE(377), + [sym_mixed_group] = STATE(377), + [sym_text] = STATE(377), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(377), + [sym_inline_formula] = STATE(377), + [sym_begin] = STATE(105), + [sym_environment] = STATE(377), + [sym_caption] = STATE(377), + [sym_citation] = STATE(377), + [sym_package_include] = STATE(377), + [sym_class_include] = STATE(377), + [sym_latex_include] = STATE(377), + [sym_latex_input] = STATE(377), + [sym_biblatex_include] = STATE(377), + [sym_bibtex_include] = STATE(377), + [sym_graphics_include] = STATE(377), + [sym_svg_include] = STATE(377), + [sym_inkscape_include] = STATE(377), + [sym_verbatim_include] = STATE(377), + [sym_import] = STATE(377), + [sym_label_definition] = STATE(377), + [sym_label_reference] = STATE(377), + [sym_equation_label_reference] = STATE(377), + [sym_label_reference_range] = STATE(377), + [sym_label_number] = STATE(377), + [sym_command_definition] = STATE(377), + [sym_math_operator] = STATE(377), + [sym_glossary_entry_definition] = STATE(377), + [sym_glossary_entry_reference] = STATE(377), + [sym_acronym_definition] = STATE(377), + [sym_acronym_reference] = STATE(377), + [sym_theorem_definition] = STATE(377), + [sym_color_reference] = STATE(377), + [sym_color_definition] = STATE(377), + [sym_color_set_definition] = STATE(377), + [sym_pgf_library_import] = STATE(377), + [sym_tikz_library_import] = STATE(377), + [sym_generic_command] = STATE(377), + [aux_sym_subsubsection_repeat1] = STATE(377), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(8286), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(3325), + [aux_sym_subsubsection_token1] = ACTIONS(3325), + [aux_sym_paragraph_token1] = ACTIONS(8289), + [aux_sym_subparagraph_token1] = ACTIONS(8292), + [anon_sym_BSLASHitem] = ACTIONS(8295), + [anon_sym_LBRACK] = ACTIONS(8298), + [anon_sym_RBRACK] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(8301), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(8298), + [anon_sym_COMMA] = ACTIONS(8304), + [anon_sym_EQ] = ACTIONS(8304), + [sym_word] = ACTIONS(8304), + [sym_param] = ACTIONS(8307), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8310), + [anon_sym_BSLASH_LBRACK] = ACTIONS(8310), + [anon_sym_DOLLAR] = ACTIONS(8313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(8316), + [anon_sym_BSLASHbegin] = ACTIONS(3357), + [anon_sym_BSLASHcaption] = ACTIONS(8319), + [anon_sym_BSLASHcite] = ACTIONS(8322), + [anon_sym_BSLASHcite_STAR] = ACTIONS(8325), + [anon_sym_BSLASHCite] = ACTIONS(8322), + [anon_sym_BSLASHnocite] = ACTIONS(8322), + [anon_sym_BSLASHcitet] = ACTIONS(8322), + [anon_sym_BSLASHcitep] = ACTIONS(8322), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(8325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(8325), + [anon_sym_BSLASHciteauthor] = ACTIONS(8322), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(8325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(8322), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(8325), + [anon_sym_BSLASHcitetitle] = ACTIONS(8322), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(8325), + [anon_sym_BSLASHciteyear] = ACTIONS(8322), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(8325), + [anon_sym_BSLASHcitedate] = ACTIONS(8322), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(8325), + [anon_sym_BSLASHciteurl] = ACTIONS(8322), + [anon_sym_BSLASHfullcite] = ACTIONS(8322), + [anon_sym_BSLASHciteyearpar] = ACTIONS(8322), + [anon_sym_BSLASHcitealt] = ACTIONS(8322), + [anon_sym_BSLASHcitealp] = ACTIONS(8322), + [anon_sym_BSLASHcitetext] = ACTIONS(8322), + [anon_sym_BSLASHparencite] = ACTIONS(8322), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(8325), + [anon_sym_BSLASHParencite] = ACTIONS(8322), + [anon_sym_BSLASHfootcite] = ACTIONS(8322), + [anon_sym_BSLASHfootfullcite] = ACTIONS(8322), + [anon_sym_BSLASHfootcitetext] = ACTIONS(8322), + [anon_sym_BSLASHtextcite] = ACTIONS(8322), + [anon_sym_BSLASHTextcite] = ACTIONS(8322), + [anon_sym_BSLASHsmartcite] = ACTIONS(8322), + [anon_sym_BSLASHSmartcite] = ACTIONS(8322), + [anon_sym_BSLASHsupercite] = ACTIONS(8322), + [anon_sym_BSLASHautocite] = ACTIONS(8322), + [anon_sym_BSLASHAutocite] = ACTIONS(8322), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(8325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(8325), + [anon_sym_BSLASHvolcite] = ACTIONS(8322), + [anon_sym_BSLASHVolcite] = ACTIONS(8322), + [anon_sym_BSLASHpvolcite] = ACTIONS(8322), + [anon_sym_BSLASHPvolcite] = ACTIONS(8322), + [anon_sym_BSLASHfvolcite] = ACTIONS(8322), + [anon_sym_BSLASHftvolcite] = ACTIONS(8322), + [anon_sym_BSLASHsvolcite] = ACTIONS(8322), + [anon_sym_BSLASHSvolcite] = ACTIONS(8322), + [anon_sym_BSLASHtvolcite] = ACTIONS(8322), + [anon_sym_BSLASHTvolcite] = ACTIONS(8322), + [anon_sym_BSLASHavolcite] = ACTIONS(8322), + [anon_sym_BSLASHAvolcite] = ACTIONS(8322), + [anon_sym_BSLASHnotecite] = ACTIONS(8322), + [anon_sym_BSLASHpnotecite] = ACTIONS(8322), + [anon_sym_BSLASHPnotecite] = ACTIONS(8322), + [anon_sym_BSLASHfnotecite] = ACTIONS(8322), + [anon_sym_BSLASHusepackage] = ACTIONS(8328), + [anon_sym_BSLASHRequirePackage] = ACTIONS(8328), + [anon_sym_BSLASHdocumentclass] = ACTIONS(8331), + [anon_sym_BSLASHinclude] = ACTIONS(8334), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(8334), + [anon_sym_BSLASHinput] = ACTIONS(8337), + [anon_sym_BSLASHsubfile] = ACTIONS(8337), + [anon_sym_BSLASHaddbibresource] = ACTIONS(8340), + [anon_sym_BSLASHbibliography] = ACTIONS(8343), + [anon_sym_BSLASHincludegraphics] = ACTIONS(8346), + [anon_sym_BSLASHincludesvg] = ACTIONS(8349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(8352), + [anon_sym_BSLASHverbatiminput] = ACTIONS(8355), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(8355), + [anon_sym_BSLASHimport] = ACTIONS(8358), + [anon_sym_BSLASHsubimport] = ACTIONS(8358), + [anon_sym_BSLASHinputfrom] = ACTIONS(8358), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(8358), + [anon_sym_BSLASHincludefrom] = ACTIONS(8358), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(8358), + [anon_sym_BSLASHlabel] = ACTIONS(8361), + [anon_sym_BSLASHref] = ACTIONS(8364), + [anon_sym_BSLASHvref] = ACTIONS(8364), + [anon_sym_BSLASHVref] = ACTIONS(8364), + [anon_sym_BSLASHautoref] = ACTIONS(8364), + [anon_sym_BSLASHpageref] = ACTIONS(8364), + [anon_sym_BSLASHcref] = ACTIONS(8364), + [anon_sym_BSLASHCref] = ACTIONS(8364), + [anon_sym_BSLASHcref_STAR] = ACTIONS(8367), + [anon_sym_BSLASHCref_STAR] = ACTIONS(8367), + [anon_sym_BSLASHnamecref] = ACTIONS(8364), + [anon_sym_BSLASHnameCref] = ACTIONS(8364), + [anon_sym_BSLASHlcnamecref] = ACTIONS(8364), + [anon_sym_BSLASHnamecrefs] = ACTIONS(8364), + [anon_sym_BSLASHnameCrefs] = ACTIONS(8364), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(8364), + [anon_sym_BSLASHlabelcref] = ACTIONS(8364), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(8364), + [anon_sym_BSLASHeqref] = ACTIONS(8370), + [anon_sym_BSLASHcrefrange] = ACTIONS(8373), + [anon_sym_BSLASHCrefrange] = ACTIONS(8373), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(8376), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(8376), + [anon_sym_BSLASHnewlabel] = ACTIONS(8379), + [anon_sym_BSLASHnewcommand] = ACTIONS(8382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(8382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(8382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(8385), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(8388), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8391), + [anon_sym_BSLASHgls] = ACTIONS(8394), + [anon_sym_BSLASHGls] = ACTIONS(8394), + [anon_sym_BSLASHGLS] = ACTIONS(8394), + [anon_sym_BSLASHglspl] = ACTIONS(8394), + [anon_sym_BSLASHGlspl] = ACTIONS(8394), + [anon_sym_BSLASHGLSpl] = ACTIONS(8394), + [anon_sym_BSLASHglsdisp] = ACTIONS(8394), + [anon_sym_BSLASHglslink] = ACTIONS(8394), + [anon_sym_BSLASHglstext] = ACTIONS(8394), + [anon_sym_BSLASHGlstext] = ACTIONS(8394), + [anon_sym_BSLASHGLStext] = ACTIONS(8394), + [anon_sym_BSLASHglsfirst] = ACTIONS(8394), + [anon_sym_BSLASHGlsfirst] = ACTIONS(8394), + [anon_sym_BSLASHGLSfirst] = ACTIONS(8394), + [anon_sym_BSLASHglsplural] = ACTIONS(8394), + [anon_sym_BSLASHGlsplural] = ACTIONS(8394), + [anon_sym_BSLASHGLSplural] = ACTIONS(8394), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(8394), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(8394), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(8394), + [anon_sym_BSLASHglsname] = ACTIONS(8394), + [anon_sym_BSLASHGlsname] = ACTIONS(8394), + [anon_sym_BSLASHGLSname] = ACTIONS(8394), + [anon_sym_BSLASHglssymbol] = ACTIONS(8394), + [anon_sym_BSLASHGlssymbol] = ACTIONS(8394), + [anon_sym_BSLASHglsdesc] = ACTIONS(8394), + [anon_sym_BSLASHGlsdesc] = ACTIONS(8394), + [anon_sym_BSLASHGLSdesc] = ACTIONS(8394), + [anon_sym_BSLASHglsuseri] = ACTIONS(8394), + [anon_sym_BSLASHGlsuseri] = ACTIONS(8394), + [anon_sym_BSLASHGLSuseri] = ACTIONS(8394), + [anon_sym_BSLASHglsuserii] = ACTIONS(8394), + [anon_sym_BSLASHGlsuserii] = ACTIONS(8394), + [anon_sym_BSLASHGLSuserii] = ACTIONS(8394), + [anon_sym_BSLASHglsuseriii] = ACTIONS(8394), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(8394), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(8394), + [anon_sym_BSLASHglsuseriv] = ACTIONS(8394), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(8394), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(8394), + [anon_sym_BSLASHglsuserv] = ACTIONS(8394), + [anon_sym_BSLASHGlsuserv] = ACTIONS(8394), + [anon_sym_BSLASHGLSuserv] = ACTIONS(8394), + [anon_sym_BSLASHglsuservi] = ACTIONS(8394), + [anon_sym_BSLASHGlsuservi] = ACTIONS(8394), + [anon_sym_BSLASHGLSuservi] = ACTIONS(8394), + [anon_sym_BSLASHnewacronym] = ACTIONS(8397), + [anon_sym_BSLASHacrshort] = ACTIONS(8400), + [anon_sym_BSLASHAcrshort] = ACTIONS(8400), + [anon_sym_BSLASHACRshort] = ACTIONS(8400), + [anon_sym_BSLASHacrshortpl] = ACTIONS(8400), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(8400), + [anon_sym_BSLASHACRshortpl] = ACTIONS(8400), + [anon_sym_BSLASHacrlong] = ACTIONS(8400), + [anon_sym_BSLASHAcrlong] = ACTIONS(8400), + [anon_sym_BSLASHACRlong] = ACTIONS(8400), + [anon_sym_BSLASHacrlongpl] = ACTIONS(8400), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(8400), + [anon_sym_BSLASHACRlongpl] = ACTIONS(8400), + [anon_sym_BSLASHacrfull] = ACTIONS(8400), + [anon_sym_BSLASHAcrfull] = ACTIONS(8400), + [anon_sym_BSLASHACRfull] = ACTIONS(8400), + [anon_sym_BSLASHacrfullpl] = ACTIONS(8400), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(8400), + [anon_sym_BSLASHACRfullpl] = ACTIONS(8400), + [anon_sym_BSLASHacs] = ACTIONS(8400), + [anon_sym_BSLASHAcs] = ACTIONS(8400), + [anon_sym_BSLASHacsp] = ACTIONS(8400), + [anon_sym_BSLASHAcsp] = ACTIONS(8400), + [anon_sym_BSLASHacl] = ACTIONS(8400), + [anon_sym_BSLASHAcl] = ACTIONS(8400), + [anon_sym_BSLASHaclp] = ACTIONS(8400), + [anon_sym_BSLASHAclp] = ACTIONS(8400), + [anon_sym_BSLASHacf] = ACTIONS(8400), + [anon_sym_BSLASHAcf] = ACTIONS(8400), + [anon_sym_BSLASHacfp] = ACTIONS(8400), + [anon_sym_BSLASHAcfp] = ACTIONS(8400), + [anon_sym_BSLASHac] = ACTIONS(8400), + [anon_sym_BSLASHAc] = ACTIONS(8400), + [anon_sym_BSLASHacp] = ACTIONS(8400), + [anon_sym_BSLASHglsentrylong] = ACTIONS(8400), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(8400), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(8400), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(8400), + [anon_sym_BSLASHglsentryshort] = ACTIONS(8400), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(8400), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(8400), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(8400), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(8400), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(8400), + [anon_sym_BSLASHnewtheorem] = ACTIONS(8403), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(8403), + [anon_sym_BSLASHcolor] = ACTIONS(8406), + [anon_sym_BSLASHcolorbox] = ACTIONS(8406), + [anon_sym_BSLASHtextcolor] = ACTIONS(8406), + [anon_sym_BSLASHpagecolor] = ACTIONS(8406), + [anon_sym_BSLASHdefinecolor] = ACTIONS(8409), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(8412), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(8415), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8418), + }, + [378] = { + [sym__simple_content] = STATE(369), + [sym_subsubsection] = STATE(369), + [sym_paragraph] = STATE(369), + [sym_subparagraph] = STATE(369), + [sym_enum_item] = STATE(369), + [sym_brace_group] = STATE(369), + [sym_mixed_group] = STATE(369), + [sym_text] = STATE(369), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(369), + [sym_inline_formula] = STATE(369), + [sym_begin] = STATE(112), + [sym_environment] = STATE(369), + [sym_caption] = STATE(369), + [sym_citation] = STATE(369), + [sym_package_include] = STATE(369), + [sym_class_include] = STATE(369), + [sym_latex_include] = STATE(369), + [sym_latex_input] = STATE(369), + [sym_biblatex_include] = STATE(369), + [sym_bibtex_include] = STATE(369), + [sym_graphics_include] = STATE(369), + [sym_svg_include] = STATE(369), + [sym_inkscape_include] = STATE(369), + [sym_verbatim_include] = STATE(369), + [sym_import] = STATE(369), + [sym_label_definition] = STATE(369), + [sym_label_reference] = STATE(369), + [sym_equation_label_reference] = STATE(369), + [sym_label_reference_range] = STATE(369), + [sym_label_number] = STATE(369), + [sym_command_definition] = STATE(369), + [sym_math_operator] = STATE(369), + [sym_glossary_entry_definition] = STATE(369), + [sym_glossary_entry_reference] = STATE(369), + [sym_acronym_definition] = STATE(369), + [sym_acronym_reference] = STATE(369), + [sym_theorem_definition] = STATE(369), + [sym_color_reference] = STATE(369), + [sym_color_definition] = STATE(369), + [sym_color_set_definition] = STATE(369), + [sym_pgf_library_import] = STATE(369), + [sym_tikz_library_import] = STATE(369), + [sym_generic_command] = STATE(369), + [aux_sym_subsection_repeat1] = STATE(369), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(7652), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(7654), + [aux_sym_paragraph_token1] = ACTIONS(7656), + [aux_sym_subparagraph_token1] = ACTIONS(7658), + [anon_sym_BSLASHitem] = ACTIONS(7660), + [anon_sym_LBRACK] = ACTIONS(7662), + [anon_sym_RBRACK] = ACTIONS(2290), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_LPAREN] = ACTIONS(7662), + [anon_sym_COMMA] = ACTIONS(7666), + [anon_sym_EQ] = ACTIONS(7666), + [sym_word] = ACTIONS(7666), + [sym_param] = ACTIONS(8421), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7670), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7670), + [anon_sym_DOLLAR] = ACTIONS(7672), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7674), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7676), + [anon_sym_BSLASHcite] = ACTIONS(7678), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCite] = ACTIONS(7678), + [anon_sym_BSLASHnocite] = ACTIONS(7678), + [anon_sym_BSLASHcitet] = ACTIONS(7678), + [anon_sym_BSLASHcitep] = ACTIONS(7678), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteauthor] = ACTIONS(7678), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7678), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitetitle] = ACTIONS(7678), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteyear] = ACTIONS(7678), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitedate] = ACTIONS(7678), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteurl] = ACTIONS(7678), + [anon_sym_BSLASHfullcite] = ACTIONS(7678), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7678), + [anon_sym_BSLASHcitealt] = ACTIONS(7678), + [anon_sym_BSLASHcitealp] = ACTIONS(7678), + [anon_sym_BSLASHcitetext] = ACTIONS(7678), + [anon_sym_BSLASHparencite] = ACTIONS(7678), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHParencite] = ACTIONS(7678), + [anon_sym_BSLASHfootcite] = ACTIONS(7678), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7678), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7678), + [anon_sym_BSLASHtextcite] = ACTIONS(7678), + [anon_sym_BSLASHTextcite] = ACTIONS(7678), + [anon_sym_BSLASHsmartcite] = ACTIONS(7678), + [anon_sym_BSLASHSmartcite] = ACTIONS(7678), + [anon_sym_BSLASHsupercite] = ACTIONS(7678), + [anon_sym_BSLASHautocite] = ACTIONS(7678), + [anon_sym_BSLASHAutocite] = ACTIONS(7678), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHvolcite] = ACTIONS(7678), + [anon_sym_BSLASHVolcite] = ACTIONS(7678), + [anon_sym_BSLASHpvolcite] = ACTIONS(7678), + [anon_sym_BSLASHPvolcite] = ACTIONS(7678), + [anon_sym_BSLASHfvolcite] = ACTIONS(7678), + [anon_sym_BSLASHftvolcite] = ACTIONS(7678), + [anon_sym_BSLASHsvolcite] = ACTIONS(7678), + [anon_sym_BSLASHSvolcite] = ACTIONS(7678), + [anon_sym_BSLASHtvolcite] = ACTIONS(7678), + [anon_sym_BSLASHTvolcite] = ACTIONS(7678), + [anon_sym_BSLASHavolcite] = ACTIONS(7678), + [anon_sym_BSLASHAvolcite] = ACTIONS(7678), + [anon_sym_BSLASHnotecite] = ACTIONS(7678), + [anon_sym_BSLASHpnotecite] = ACTIONS(7678), + [anon_sym_BSLASHPnotecite] = ACTIONS(7678), + [anon_sym_BSLASHfnotecite] = ACTIONS(7678), + [anon_sym_BSLASHusepackage] = ACTIONS(7682), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7684), + [anon_sym_BSLASHinclude] = ACTIONS(7686), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7686), + [anon_sym_BSLASHinput] = ACTIONS(7688), + [anon_sym_BSLASHsubfile] = ACTIONS(7688), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7690), + [anon_sym_BSLASHbibliography] = ACTIONS(7692), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7694), + [anon_sym_BSLASHincludesvg] = ACTIONS(7696), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7698), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7700), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7700), + [anon_sym_BSLASHimport] = ACTIONS(7702), + [anon_sym_BSLASHsubimport] = ACTIONS(7702), + [anon_sym_BSLASHinputfrom] = ACTIONS(7702), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7702), + [anon_sym_BSLASHincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHlabel] = ACTIONS(7704), + [anon_sym_BSLASHref] = ACTIONS(7706), + [anon_sym_BSLASHvref] = ACTIONS(7706), + [anon_sym_BSLASHVref] = ACTIONS(7706), + [anon_sym_BSLASHautoref] = ACTIONS(7706), + [anon_sym_BSLASHpageref] = ACTIONS(7706), + [anon_sym_BSLASHcref] = ACTIONS(7706), + [anon_sym_BSLASHCref] = ACTIONS(7706), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnameCref] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHlabelcref] = ACTIONS(7706), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7706), + [anon_sym_BSLASHeqref] = ACTIONS(7710), + [anon_sym_BSLASHcrefrange] = ACTIONS(7712), + [anon_sym_BSLASHCrefrange] = ACTIONS(7712), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHnewlabel] = ACTIONS(7716), + [anon_sym_BSLASHnewcommand] = ACTIONS(7718), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7720), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7722), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7724), + [anon_sym_BSLASHgls] = ACTIONS(7726), + [anon_sym_BSLASHGls] = ACTIONS(7726), + [anon_sym_BSLASHGLS] = ACTIONS(7726), + [anon_sym_BSLASHglspl] = ACTIONS(7726), + [anon_sym_BSLASHGlspl] = ACTIONS(7726), + [anon_sym_BSLASHGLSpl] = ACTIONS(7726), + [anon_sym_BSLASHglsdisp] = ACTIONS(7726), + [anon_sym_BSLASHglslink] = ACTIONS(7726), + [anon_sym_BSLASHglstext] = ACTIONS(7726), + [anon_sym_BSLASHGlstext] = ACTIONS(7726), + [anon_sym_BSLASHGLStext] = ACTIONS(7726), + [anon_sym_BSLASHglsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7726), + [anon_sym_BSLASHglsplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSplural] = ACTIONS(7726), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHglsname] = ACTIONS(7726), + [anon_sym_BSLASHGlsname] = ACTIONS(7726), + [anon_sym_BSLASHGLSname] = ACTIONS(7726), + [anon_sym_BSLASHglssymbol] = ACTIONS(7726), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7726), + [anon_sym_BSLASHglsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7726), + [anon_sym_BSLASHglsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7726), + [anon_sym_BSLASHglsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7726), + [anon_sym_BSLASHglsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7726), + [anon_sym_BSLASHglsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7726), + [anon_sym_BSLASHnewacronym] = ACTIONS(7728), + [anon_sym_BSLASHacrshort] = ACTIONS(7730), + [anon_sym_BSLASHAcrshort] = ACTIONS(7730), + [anon_sym_BSLASHACRshort] = ACTIONS(7730), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7730), + [anon_sym_BSLASHacrlong] = ACTIONS(7730), + [anon_sym_BSLASHAcrlong] = ACTIONS(7730), + [anon_sym_BSLASHACRlong] = ACTIONS(7730), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7730), + [anon_sym_BSLASHacrfull] = ACTIONS(7730), + [anon_sym_BSLASHAcrfull] = ACTIONS(7730), + [anon_sym_BSLASHACRfull] = ACTIONS(7730), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7730), + [anon_sym_BSLASHacs] = ACTIONS(7730), + [anon_sym_BSLASHAcs] = ACTIONS(7730), + [anon_sym_BSLASHacsp] = ACTIONS(7730), + [anon_sym_BSLASHAcsp] = ACTIONS(7730), + [anon_sym_BSLASHacl] = ACTIONS(7730), + [anon_sym_BSLASHAcl] = ACTIONS(7730), + [anon_sym_BSLASHaclp] = ACTIONS(7730), + [anon_sym_BSLASHAclp] = ACTIONS(7730), + [anon_sym_BSLASHacf] = ACTIONS(7730), + [anon_sym_BSLASHAcf] = ACTIONS(7730), + [anon_sym_BSLASHacfp] = ACTIONS(7730), + [anon_sym_BSLASHAcfp] = ACTIONS(7730), + [anon_sym_BSLASHac] = ACTIONS(7730), + [anon_sym_BSLASHAc] = ACTIONS(7730), + [anon_sym_BSLASHacp] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7732), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7732), + [anon_sym_BSLASHcolor] = ACTIONS(7734), + [anon_sym_BSLASHcolorbox] = ACTIONS(7734), + [anon_sym_BSLASHtextcolor] = ACTIONS(7734), + [anon_sym_BSLASHpagecolor] = ACTIONS(7734), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7736), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7738), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7740), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7742), + }, + [379] = { + [sym__simple_content] = STATE(367), + [sym_enum_item] = STATE(367), + [sym_brace_group] = STATE(367), + [sym_mixed_group] = STATE(367), + [sym_text] = STATE(367), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(367), + [sym_inline_formula] = STATE(367), + [sym_begin] = STATE(86), + [sym_environment] = STATE(367), + [sym_caption] = STATE(367), + [sym_citation] = STATE(367), + [sym_package_include] = STATE(367), + [sym_class_include] = STATE(367), + [sym_latex_include] = STATE(367), + [sym_latex_input] = STATE(367), + [sym_biblatex_include] = STATE(367), + [sym_bibtex_include] = STATE(367), + [sym_graphics_include] = STATE(367), + [sym_svg_include] = STATE(367), + [sym_inkscape_include] = STATE(367), + [sym_verbatim_include] = STATE(367), + [sym_import] = STATE(367), + [sym_label_definition] = STATE(367), + [sym_label_reference] = STATE(367), + [sym_equation_label_reference] = STATE(367), + [sym_label_reference_range] = STATE(367), + [sym_label_number] = STATE(367), + [sym_command_definition] = STATE(367), + [sym_math_operator] = STATE(367), + [sym_glossary_entry_definition] = STATE(367), + [sym_glossary_entry_reference] = STATE(367), + [sym_acronym_definition] = STATE(367), + [sym_acronym_reference] = STATE(367), + [sym_theorem_definition] = STATE(367), + [sym_color_reference] = STATE(367), + [sym_color_definition] = STATE(367), + [sym_color_set_definition] = STATE(367), + [sym_pgf_library_import] = STATE(367), + [sym_tikz_library_import] = STATE(367), + [sym_generic_command] = STATE(367), + [aux_sym_subparagraph_repeat1] = STATE(367), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(4879), + [aux_sym_section_token1] = ACTIONS(4879), + [aux_sym_subsection_token1] = ACTIONS(4879), + [aux_sym_subsubsection_token1] = ACTIONS(4879), + [aux_sym_paragraph_token1] = ACTIONS(4879), + [aux_sym_subparagraph_token1] = ACTIONS(4879), + [anon_sym_BSLASHitem] = ACTIONS(2312), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(4877), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(8423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [380] = { + [sym__simple_content] = STATE(380), + [sym_enum_item] = STATE(380), + [sym_brace_group] = STATE(380), + [sym_mixed_group] = STATE(380), + [sym_text] = STATE(380), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(380), + [sym_inline_formula] = STATE(380), + [sym_begin] = STATE(86), + [sym_environment] = STATE(380), + [sym_caption] = STATE(380), + [sym_citation] = STATE(380), + [sym_package_include] = STATE(380), + [sym_class_include] = STATE(380), + [sym_latex_include] = STATE(380), + [sym_latex_input] = STATE(380), + [sym_biblatex_include] = STATE(380), + [sym_bibtex_include] = STATE(380), + [sym_graphics_include] = STATE(380), + [sym_svg_include] = STATE(380), + [sym_inkscape_include] = STATE(380), + [sym_verbatim_include] = STATE(380), + [sym_import] = STATE(380), + [sym_label_definition] = STATE(380), + [sym_label_reference] = STATE(380), + [sym_equation_label_reference] = STATE(380), + [sym_label_reference_range] = STATE(380), + [sym_label_number] = STATE(380), + [sym_command_definition] = STATE(380), + [sym_math_operator] = STATE(380), + [sym_glossary_entry_definition] = STATE(380), + [sym_glossary_entry_reference] = STATE(380), + [sym_acronym_definition] = STATE(380), + [sym_acronym_reference] = STATE(380), + [sym_theorem_definition] = STATE(380), + [sym_color_reference] = STATE(380), + [sym_color_definition] = STATE(380), + [sym_color_set_definition] = STATE(380), + [sym_pgf_library_import] = STATE(380), + [sym_tikz_library_import] = STATE(380), + [sym_generic_command] = STATE(380), + [aux_sym_subparagraph_repeat1] = STATE(380), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(8425), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(5453), + [aux_sym_section_token1] = ACTIONS(5453), + [aux_sym_subsection_token1] = ACTIONS(5453), + [aux_sym_subsubsection_token1] = ACTIONS(5453), + [aux_sym_paragraph_token1] = ACTIONS(5453), + [aux_sym_subparagraph_token1] = ACTIONS(5453), + [anon_sym_BSLASHitem] = ACTIONS(8428), + [anon_sym_LBRACK] = ACTIONS(8431), + [anon_sym_RBRACK] = ACTIONS(5448), + [anon_sym_LBRACE] = ACTIONS(8434), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(8431), + [anon_sym_COMMA] = ACTIONS(8437), + [anon_sym_EQ] = ACTIONS(8437), + [sym_word] = ACTIONS(8437), + [sym_param] = ACTIONS(8440), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8443), + [anon_sym_BSLASH_LBRACK] = ACTIONS(8443), + [anon_sym_DOLLAR] = ACTIONS(8446), + [anon_sym_BSLASH_LPAREN] = ACTIONS(8449), + [anon_sym_BSLASHbegin] = ACTIONS(5479), + [anon_sym_BSLASHcaption] = ACTIONS(8452), + [anon_sym_BSLASHcite] = ACTIONS(8455), + [anon_sym_BSLASHcite_STAR] = ACTIONS(8458), + [anon_sym_BSLASHCite] = ACTIONS(8455), + [anon_sym_BSLASHnocite] = ACTIONS(8455), + [anon_sym_BSLASHcitet] = ACTIONS(8455), + [anon_sym_BSLASHcitep] = ACTIONS(8455), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(8458), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(8458), + [anon_sym_BSLASHciteauthor] = ACTIONS(8455), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(8458), + [anon_sym_BSLASHCiteauthor] = ACTIONS(8455), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(8458), + [anon_sym_BSLASHcitetitle] = ACTIONS(8455), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(8458), + [anon_sym_BSLASHciteyear] = ACTIONS(8455), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(8458), + [anon_sym_BSLASHcitedate] = ACTIONS(8455), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(8458), + [anon_sym_BSLASHciteurl] = ACTIONS(8455), + [anon_sym_BSLASHfullcite] = ACTIONS(8455), + [anon_sym_BSLASHciteyearpar] = ACTIONS(8455), + [anon_sym_BSLASHcitealt] = ACTIONS(8455), + [anon_sym_BSLASHcitealp] = ACTIONS(8455), + [anon_sym_BSLASHcitetext] = ACTIONS(8455), + [anon_sym_BSLASHparencite] = ACTIONS(8455), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(8458), + [anon_sym_BSLASHParencite] = ACTIONS(8455), + [anon_sym_BSLASHfootcite] = ACTIONS(8455), + [anon_sym_BSLASHfootfullcite] = ACTIONS(8455), + [anon_sym_BSLASHfootcitetext] = ACTIONS(8455), + [anon_sym_BSLASHtextcite] = ACTIONS(8455), + [anon_sym_BSLASHTextcite] = ACTIONS(8455), + [anon_sym_BSLASHsmartcite] = ACTIONS(8455), + [anon_sym_BSLASHSmartcite] = ACTIONS(8455), + [anon_sym_BSLASHsupercite] = ACTIONS(8455), + [anon_sym_BSLASHautocite] = ACTIONS(8455), + [anon_sym_BSLASHAutocite] = ACTIONS(8455), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(8458), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(8458), + [anon_sym_BSLASHvolcite] = ACTIONS(8455), + [anon_sym_BSLASHVolcite] = ACTIONS(8455), + [anon_sym_BSLASHpvolcite] = ACTIONS(8455), + [anon_sym_BSLASHPvolcite] = ACTIONS(8455), + [anon_sym_BSLASHfvolcite] = ACTIONS(8455), + [anon_sym_BSLASHftvolcite] = ACTIONS(8455), + [anon_sym_BSLASHsvolcite] = ACTIONS(8455), + [anon_sym_BSLASHSvolcite] = ACTIONS(8455), + [anon_sym_BSLASHtvolcite] = ACTIONS(8455), + [anon_sym_BSLASHTvolcite] = ACTIONS(8455), + [anon_sym_BSLASHavolcite] = ACTIONS(8455), + [anon_sym_BSLASHAvolcite] = ACTIONS(8455), + [anon_sym_BSLASHnotecite] = ACTIONS(8455), + [anon_sym_BSLASHpnotecite] = ACTIONS(8455), + [anon_sym_BSLASHPnotecite] = ACTIONS(8455), + [anon_sym_BSLASHfnotecite] = ACTIONS(8455), + [anon_sym_BSLASHusepackage] = ACTIONS(8461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(8461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(8464), + [anon_sym_BSLASHinclude] = ACTIONS(8467), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(8467), + [anon_sym_BSLASHinput] = ACTIONS(8470), + [anon_sym_BSLASHsubfile] = ACTIONS(8470), + [anon_sym_BSLASHaddbibresource] = ACTIONS(8473), + [anon_sym_BSLASHbibliography] = ACTIONS(8476), + [anon_sym_BSLASHincludegraphics] = ACTIONS(8479), + [anon_sym_BSLASHincludesvg] = ACTIONS(8482), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(8485), + [anon_sym_BSLASHverbatiminput] = ACTIONS(8488), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(8488), + [anon_sym_BSLASHimport] = ACTIONS(8491), + [anon_sym_BSLASHsubimport] = ACTIONS(8491), + [anon_sym_BSLASHinputfrom] = ACTIONS(8491), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(8491), + [anon_sym_BSLASHincludefrom] = ACTIONS(8491), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(8491), + [anon_sym_BSLASHlabel] = ACTIONS(8494), + [anon_sym_BSLASHref] = ACTIONS(8497), + [anon_sym_BSLASHvref] = ACTIONS(8497), + [anon_sym_BSLASHVref] = ACTIONS(8497), + [anon_sym_BSLASHautoref] = ACTIONS(8497), + [anon_sym_BSLASHpageref] = ACTIONS(8497), + [anon_sym_BSLASHcref] = ACTIONS(8497), + [anon_sym_BSLASHCref] = ACTIONS(8497), + [anon_sym_BSLASHcref_STAR] = ACTIONS(8500), + [anon_sym_BSLASHCref_STAR] = ACTIONS(8500), + [anon_sym_BSLASHnamecref] = ACTIONS(8497), + [anon_sym_BSLASHnameCref] = ACTIONS(8497), + [anon_sym_BSLASHlcnamecref] = ACTIONS(8497), + [anon_sym_BSLASHnamecrefs] = ACTIONS(8497), + [anon_sym_BSLASHnameCrefs] = ACTIONS(8497), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(8497), + [anon_sym_BSLASHlabelcref] = ACTIONS(8497), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(8497), + [anon_sym_BSLASHeqref] = ACTIONS(8503), + [anon_sym_BSLASHcrefrange] = ACTIONS(8506), + [anon_sym_BSLASHCrefrange] = ACTIONS(8506), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(8509), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(8509), + [anon_sym_BSLASHnewlabel] = ACTIONS(8512), + [anon_sym_BSLASHnewcommand] = ACTIONS(8515), + [anon_sym_BSLASHrenewcommand] = ACTIONS(8515), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(8515), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(8518), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(8521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8524), + [anon_sym_BSLASHgls] = ACTIONS(8527), + [anon_sym_BSLASHGls] = ACTIONS(8527), + [anon_sym_BSLASHGLS] = ACTIONS(8527), + [anon_sym_BSLASHglspl] = ACTIONS(8527), + [anon_sym_BSLASHGlspl] = ACTIONS(8527), + [anon_sym_BSLASHGLSpl] = ACTIONS(8527), + [anon_sym_BSLASHglsdisp] = ACTIONS(8527), + [anon_sym_BSLASHglslink] = ACTIONS(8527), + [anon_sym_BSLASHglstext] = ACTIONS(8527), + [anon_sym_BSLASHGlstext] = ACTIONS(8527), + [anon_sym_BSLASHGLStext] = ACTIONS(8527), + [anon_sym_BSLASHglsfirst] = ACTIONS(8527), + [anon_sym_BSLASHGlsfirst] = ACTIONS(8527), + [anon_sym_BSLASHGLSfirst] = ACTIONS(8527), + [anon_sym_BSLASHglsplural] = ACTIONS(8527), + [anon_sym_BSLASHGlsplural] = ACTIONS(8527), + [anon_sym_BSLASHGLSplural] = ACTIONS(8527), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(8527), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(8527), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(8527), + [anon_sym_BSLASHglsname] = ACTIONS(8527), + [anon_sym_BSLASHGlsname] = ACTIONS(8527), + [anon_sym_BSLASHGLSname] = ACTIONS(8527), + [anon_sym_BSLASHglssymbol] = ACTIONS(8527), + [anon_sym_BSLASHGlssymbol] = ACTIONS(8527), + [anon_sym_BSLASHglsdesc] = ACTIONS(8527), + [anon_sym_BSLASHGlsdesc] = ACTIONS(8527), + [anon_sym_BSLASHGLSdesc] = ACTIONS(8527), + [anon_sym_BSLASHglsuseri] = ACTIONS(8527), + [anon_sym_BSLASHGlsuseri] = ACTIONS(8527), + [anon_sym_BSLASHGLSuseri] = ACTIONS(8527), + [anon_sym_BSLASHglsuserii] = ACTIONS(8527), + [anon_sym_BSLASHGlsuserii] = ACTIONS(8527), + [anon_sym_BSLASHGLSuserii] = ACTIONS(8527), + [anon_sym_BSLASHglsuseriii] = ACTIONS(8527), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(8527), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(8527), + [anon_sym_BSLASHglsuseriv] = ACTIONS(8527), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(8527), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(8527), + [anon_sym_BSLASHglsuserv] = ACTIONS(8527), + [anon_sym_BSLASHGlsuserv] = ACTIONS(8527), + [anon_sym_BSLASHGLSuserv] = ACTIONS(8527), + [anon_sym_BSLASHglsuservi] = ACTIONS(8527), + [anon_sym_BSLASHGlsuservi] = ACTIONS(8527), + [anon_sym_BSLASHGLSuservi] = ACTIONS(8527), + [anon_sym_BSLASHnewacronym] = ACTIONS(8530), + [anon_sym_BSLASHacrshort] = ACTIONS(8533), + [anon_sym_BSLASHAcrshort] = ACTIONS(8533), + [anon_sym_BSLASHACRshort] = ACTIONS(8533), + [anon_sym_BSLASHacrshortpl] = ACTIONS(8533), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(8533), + [anon_sym_BSLASHACRshortpl] = ACTIONS(8533), + [anon_sym_BSLASHacrlong] = ACTIONS(8533), + [anon_sym_BSLASHAcrlong] = ACTIONS(8533), + [anon_sym_BSLASHACRlong] = ACTIONS(8533), + [anon_sym_BSLASHacrlongpl] = ACTIONS(8533), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(8533), + [anon_sym_BSLASHACRlongpl] = ACTIONS(8533), + [anon_sym_BSLASHacrfull] = ACTIONS(8533), + [anon_sym_BSLASHAcrfull] = ACTIONS(8533), + [anon_sym_BSLASHACRfull] = ACTIONS(8533), + [anon_sym_BSLASHacrfullpl] = ACTIONS(8533), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(8533), + [anon_sym_BSLASHACRfullpl] = ACTIONS(8533), + [anon_sym_BSLASHacs] = ACTIONS(8533), + [anon_sym_BSLASHAcs] = ACTIONS(8533), + [anon_sym_BSLASHacsp] = ACTIONS(8533), + [anon_sym_BSLASHAcsp] = ACTIONS(8533), + [anon_sym_BSLASHacl] = ACTIONS(8533), + [anon_sym_BSLASHAcl] = ACTIONS(8533), + [anon_sym_BSLASHaclp] = ACTIONS(8533), + [anon_sym_BSLASHAclp] = ACTIONS(8533), + [anon_sym_BSLASHacf] = ACTIONS(8533), + [anon_sym_BSLASHAcf] = ACTIONS(8533), + [anon_sym_BSLASHacfp] = ACTIONS(8533), + [anon_sym_BSLASHAcfp] = ACTIONS(8533), + [anon_sym_BSLASHac] = ACTIONS(8533), + [anon_sym_BSLASHAc] = ACTIONS(8533), + [anon_sym_BSLASHacp] = ACTIONS(8533), + [anon_sym_BSLASHglsentrylong] = ACTIONS(8533), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(8533), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(8533), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(8533), + [anon_sym_BSLASHglsentryshort] = ACTIONS(8533), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(8533), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(8533), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(8533), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(8533), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(8533), + [anon_sym_BSLASHnewtheorem] = ACTIONS(8536), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(8536), + [anon_sym_BSLASHcolor] = ACTIONS(8539), + [anon_sym_BSLASHcolorbox] = ACTIONS(8539), + [anon_sym_BSLASHtextcolor] = ACTIONS(8539), + [anon_sym_BSLASHpagecolor] = ACTIONS(8539), + [anon_sym_BSLASHdefinecolor] = ACTIONS(8542), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(8545), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(8548), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8551), + }, + [381] = { + [sym__simple_content] = STATE(404), + [sym_brace_group] = STATE(404), + [sym_mixed_group] = STATE(404), + [sym_text] = STATE(404), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(404), + [sym_inline_formula] = STATE(404), + [sym_begin] = STATE(66), + [sym_environment] = STATE(404), + [sym_caption] = STATE(404), + [sym_citation] = STATE(404), + [sym_package_include] = STATE(404), + [sym_class_include] = STATE(404), + [sym_latex_include] = STATE(404), + [sym_latex_input] = STATE(404), + [sym_biblatex_include] = STATE(404), + [sym_bibtex_include] = STATE(404), + [sym_graphics_include] = STATE(404), + [sym_svg_include] = STATE(404), + [sym_inkscape_include] = STATE(404), + [sym_verbatim_include] = STATE(404), + [sym_import] = STATE(404), + [sym_label_definition] = STATE(404), + [sym_label_reference] = STATE(404), + [sym_equation_label_reference] = STATE(404), + [sym_label_reference_range] = STATE(404), + [sym_label_number] = STATE(404), + [sym_command_definition] = STATE(404), + [sym_math_operator] = STATE(404), + [sym_glossary_entry_definition] = STATE(404), + [sym_glossary_entry_reference] = STATE(404), + [sym_acronym_definition] = STATE(404), + [sym_acronym_reference] = STATE(404), + [sym_theorem_definition] = STATE(404), + [sym_color_reference] = STATE(404), + [sym_color_definition] = STATE(404), + [sym_color_set_definition] = STATE(404), + [sym_pgf_library_import] = STATE(404), + [sym_tikz_library_import] = STATE(404), + [sym_generic_command] = STATE(404), + [aux_sym_enum_item_repeat1] = STATE(404), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5600), + [aux_sym_chapter_token1] = ACTIONS(5600), + [aux_sym_section_token1] = ACTIONS(5600), + [aux_sym_subsection_token1] = ACTIONS(5600), + [aux_sym_subsubsection_token1] = ACTIONS(5600), + [aux_sym_paragraph_token1] = ACTIONS(5600), + [aux_sym_subparagraph_token1] = ACTIONS(5600), + [anon_sym_BSLASHitem] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(8554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5598), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [382] = { + [sym__simple_content] = STATE(382), + [sym_brace_group] = STATE(382), + [sym_mixed_group] = STATE(382), + [sym_text] = STATE(382), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(382), + [sym_inline_formula] = STATE(382), + [sym_begin] = STATE(73), + [sym_environment] = STATE(382), + [sym_caption] = STATE(382), + [sym_citation] = STATE(382), + [sym_package_include] = STATE(382), + [sym_class_include] = STATE(382), + [sym_latex_include] = STATE(382), + [sym_latex_input] = STATE(382), + [sym_biblatex_include] = STATE(382), + [sym_bibtex_include] = STATE(382), + [sym_graphics_include] = STATE(382), + [sym_svg_include] = STATE(382), + [sym_inkscape_include] = STATE(382), + [sym_verbatim_include] = STATE(382), + [sym_import] = STATE(382), + [sym_label_definition] = STATE(382), + [sym_label_reference] = STATE(382), + [sym_equation_label_reference] = STATE(382), + [sym_label_reference_range] = STATE(382), + [sym_label_number] = STATE(382), + [sym_command_definition] = STATE(382), + [sym_math_operator] = STATE(382), + [sym_glossary_entry_definition] = STATE(382), + [sym_glossary_entry_reference] = STATE(382), + [sym_acronym_definition] = STATE(382), + [sym_acronym_reference] = STATE(382), + [sym_theorem_definition] = STATE(382), + [sym_color_reference] = STATE(382), + [sym_color_definition] = STATE(382), + [sym_color_set_definition] = STATE(382), + [sym_pgf_library_import] = STATE(382), + [sym_tikz_library_import] = STATE(382), + [sym_generic_command] = STATE(382), + [aux_sym_enum_item_repeat1] = STATE(382), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(8556), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(6045), + [aux_sym_chapter_token1] = ACTIONS(6045), + [aux_sym_section_token1] = ACTIONS(6045), + [aux_sym_subsection_token1] = ACTIONS(6045), + [aux_sym_subsubsection_token1] = ACTIONS(6045), + [aux_sym_paragraph_token1] = ACTIONS(6045), + [aux_sym_subparagraph_token1] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(8559), + [anon_sym_LBRACE] = ACTIONS(8562), + [anon_sym_LPAREN] = ACTIONS(8559), + [anon_sym_COMMA] = ACTIONS(8565), + [anon_sym_EQ] = ACTIONS(8565), + [sym_word] = ACTIONS(8565), + [sym_param] = ACTIONS(8568), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8571), + [anon_sym_BSLASH_LBRACK] = ACTIONS(8571), + [anon_sym_DOLLAR] = ACTIONS(8574), + [anon_sym_BSLASH_LPAREN] = ACTIONS(8577), + [anon_sym_BSLASHbegin] = ACTIONS(6068), + [anon_sym_BSLASHend] = ACTIONS(6045), + [anon_sym_BSLASHcaption] = ACTIONS(8580), + [anon_sym_BSLASHcite] = ACTIONS(8583), + [anon_sym_BSLASHcite_STAR] = ACTIONS(8586), + [anon_sym_BSLASHCite] = ACTIONS(8583), + [anon_sym_BSLASHnocite] = ACTIONS(8583), + [anon_sym_BSLASHcitet] = ACTIONS(8583), + [anon_sym_BSLASHcitep] = ACTIONS(8583), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(8586), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(8586), + [anon_sym_BSLASHciteauthor] = ACTIONS(8583), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(8586), + [anon_sym_BSLASHCiteauthor] = ACTIONS(8583), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(8586), + [anon_sym_BSLASHcitetitle] = ACTIONS(8583), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(8586), + [anon_sym_BSLASHciteyear] = ACTIONS(8583), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(8586), + [anon_sym_BSLASHcitedate] = ACTIONS(8583), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(8586), + [anon_sym_BSLASHciteurl] = ACTIONS(8583), + [anon_sym_BSLASHfullcite] = ACTIONS(8583), + [anon_sym_BSLASHciteyearpar] = ACTIONS(8583), + [anon_sym_BSLASHcitealt] = ACTIONS(8583), + [anon_sym_BSLASHcitealp] = ACTIONS(8583), + [anon_sym_BSLASHcitetext] = ACTIONS(8583), + [anon_sym_BSLASHparencite] = ACTIONS(8583), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(8586), + [anon_sym_BSLASHParencite] = ACTIONS(8583), + [anon_sym_BSLASHfootcite] = ACTIONS(8583), + [anon_sym_BSLASHfootfullcite] = ACTIONS(8583), + [anon_sym_BSLASHfootcitetext] = ACTIONS(8583), + [anon_sym_BSLASHtextcite] = ACTIONS(8583), + [anon_sym_BSLASHTextcite] = ACTIONS(8583), + [anon_sym_BSLASHsmartcite] = ACTIONS(8583), + [anon_sym_BSLASHSmartcite] = ACTIONS(8583), + [anon_sym_BSLASHsupercite] = ACTIONS(8583), + [anon_sym_BSLASHautocite] = ACTIONS(8583), + [anon_sym_BSLASHAutocite] = ACTIONS(8583), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(8586), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(8586), + [anon_sym_BSLASHvolcite] = ACTIONS(8583), + [anon_sym_BSLASHVolcite] = ACTIONS(8583), + [anon_sym_BSLASHpvolcite] = ACTIONS(8583), + [anon_sym_BSLASHPvolcite] = ACTIONS(8583), + [anon_sym_BSLASHfvolcite] = ACTIONS(8583), + [anon_sym_BSLASHftvolcite] = ACTIONS(8583), + [anon_sym_BSLASHsvolcite] = ACTIONS(8583), + [anon_sym_BSLASHSvolcite] = ACTIONS(8583), + [anon_sym_BSLASHtvolcite] = ACTIONS(8583), + [anon_sym_BSLASHTvolcite] = ACTIONS(8583), + [anon_sym_BSLASHavolcite] = ACTIONS(8583), + [anon_sym_BSLASHAvolcite] = ACTIONS(8583), + [anon_sym_BSLASHnotecite] = ACTIONS(8583), + [anon_sym_BSLASHpnotecite] = ACTIONS(8583), + [anon_sym_BSLASHPnotecite] = ACTIONS(8583), + [anon_sym_BSLASHfnotecite] = ACTIONS(8583), + [anon_sym_BSLASHusepackage] = ACTIONS(8589), + [anon_sym_BSLASHRequirePackage] = ACTIONS(8589), + [anon_sym_BSLASHdocumentclass] = ACTIONS(8592), + [anon_sym_BSLASHinclude] = ACTIONS(8595), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(8595), + [anon_sym_BSLASHinput] = ACTIONS(8598), + [anon_sym_BSLASHsubfile] = ACTIONS(8598), + [anon_sym_BSLASHaddbibresource] = ACTIONS(8601), + [anon_sym_BSLASHbibliography] = ACTIONS(8604), + [anon_sym_BSLASHincludegraphics] = ACTIONS(8607), + [anon_sym_BSLASHincludesvg] = ACTIONS(8610), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(8613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(8616), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(8616), + [anon_sym_BSLASHimport] = ACTIONS(8619), + [anon_sym_BSLASHsubimport] = ACTIONS(8619), + [anon_sym_BSLASHinputfrom] = ACTIONS(8619), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(8619), + [anon_sym_BSLASHincludefrom] = ACTIONS(8619), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(8619), + [anon_sym_BSLASHlabel] = ACTIONS(8622), + [anon_sym_BSLASHref] = ACTIONS(8625), + [anon_sym_BSLASHvref] = ACTIONS(8625), + [anon_sym_BSLASHVref] = ACTIONS(8625), + [anon_sym_BSLASHautoref] = ACTIONS(8625), + [anon_sym_BSLASHpageref] = ACTIONS(8625), + [anon_sym_BSLASHcref] = ACTIONS(8625), + [anon_sym_BSLASHCref] = ACTIONS(8625), + [anon_sym_BSLASHcref_STAR] = ACTIONS(8628), + [anon_sym_BSLASHCref_STAR] = ACTIONS(8628), + [anon_sym_BSLASHnamecref] = ACTIONS(8625), + [anon_sym_BSLASHnameCref] = ACTIONS(8625), + [anon_sym_BSLASHlcnamecref] = ACTIONS(8625), + [anon_sym_BSLASHnamecrefs] = ACTIONS(8625), + [anon_sym_BSLASHnameCrefs] = ACTIONS(8625), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(8625), + [anon_sym_BSLASHlabelcref] = ACTIONS(8625), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(8625), + [anon_sym_BSLASHeqref] = ACTIONS(8631), + [anon_sym_BSLASHcrefrange] = ACTIONS(8634), + [anon_sym_BSLASHCrefrange] = ACTIONS(8634), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(8637), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(8637), + [anon_sym_BSLASHnewlabel] = ACTIONS(8640), + [anon_sym_BSLASHnewcommand] = ACTIONS(8643), + [anon_sym_BSLASHrenewcommand] = ACTIONS(8643), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(8643), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(8646), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(8649), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8652), + [anon_sym_BSLASHgls] = ACTIONS(8655), + [anon_sym_BSLASHGls] = ACTIONS(8655), + [anon_sym_BSLASHGLS] = ACTIONS(8655), + [anon_sym_BSLASHglspl] = ACTIONS(8655), + [anon_sym_BSLASHGlspl] = ACTIONS(8655), + [anon_sym_BSLASHGLSpl] = ACTIONS(8655), + [anon_sym_BSLASHglsdisp] = ACTIONS(8655), + [anon_sym_BSLASHglslink] = ACTIONS(8655), + [anon_sym_BSLASHglstext] = ACTIONS(8655), + [anon_sym_BSLASHGlstext] = ACTIONS(8655), + [anon_sym_BSLASHGLStext] = ACTIONS(8655), + [anon_sym_BSLASHglsfirst] = ACTIONS(8655), + [anon_sym_BSLASHGlsfirst] = ACTIONS(8655), + [anon_sym_BSLASHGLSfirst] = ACTIONS(8655), + [anon_sym_BSLASHglsplural] = ACTIONS(8655), + [anon_sym_BSLASHGlsplural] = ACTIONS(8655), + [anon_sym_BSLASHGLSplural] = ACTIONS(8655), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(8655), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(8655), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(8655), + [anon_sym_BSLASHglsname] = ACTIONS(8655), + [anon_sym_BSLASHGlsname] = ACTIONS(8655), + [anon_sym_BSLASHGLSname] = ACTIONS(8655), + [anon_sym_BSLASHglssymbol] = ACTIONS(8655), + [anon_sym_BSLASHGlssymbol] = ACTIONS(8655), + [anon_sym_BSLASHglsdesc] = ACTIONS(8655), + [anon_sym_BSLASHGlsdesc] = ACTIONS(8655), + [anon_sym_BSLASHGLSdesc] = ACTIONS(8655), + [anon_sym_BSLASHglsuseri] = ACTIONS(8655), + [anon_sym_BSLASHGlsuseri] = ACTIONS(8655), + [anon_sym_BSLASHGLSuseri] = ACTIONS(8655), + [anon_sym_BSLASHglsuserii] = ACTIONS(8655), + [anon_sym_BSLASHGlsuserii] = ACTIONS(8655), + [anon_sym_BSLASHGLSuserii] = ACTIONS(8655), + [anon_sym_BSLASHglsuseriii] = ACTIONS(8655), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(8655), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(8655), + [anon_sym_BSLASHglsuseriv] = ACTIONS(8655), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(8655), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(8655), + [anon_sym_BSLASHglsuserv] = ACTIONS(8655), + [anon_sym_BSLASHGlsuserv] = ACTIONS(8655), + [anon_sym_BSLASHGLSuserv] = ACTIONS(8655), + [anon_sym_BSLASHglsuservi] = ACTIONS(8655), + [anon_sym_BSLASHGlsuservi] = ACTIONS(8655), + [anon_sym_BSLASHGLSuservi] = ACTIONS(8655), + [anon_sym_BSLASHnewacronym] = ACTIONS(8658), + [anon_sym_BSLASHacrshort] = ACTIONS(8661), + [anon_sym_BSLASHAcrshort] = ACTIONS(8661), + [anon_sym_BSLASHACRshort] = ACTIONS(8661), + [anon_sym_BSLASHacrshortpl] = ACTIONS(8661), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(8661), + [anon_sym_BSLASHACRshortpl] = ACTIONS(8661), + [anon_sym_BSLASHacrlong] = ACTIONS(8661), + [anon_sym_BSLASHAcrlong] = ACTIONS(8661), + [anon_sym_BSLASHACRlong] = ACTIONS(8661), + [anon_sym_BSLASHacrlongpl] = ACTIONS(8661), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(8661), + [anon_sym_BSLASHACRlongpl] = ACTIONS(8661), + [anon_sym_BSLASHacrfull] = ACTIONS(8661), + [anon_sym_BSLASHAcrfull] = ACTIONS(8661), + [anon_sym_BSLASHACRfull] = ACTIONS(8661), + [anon_sym_BSLASHacrfullpl] = ACTIONS(8661), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(8661), + [anon_sym_BSLASHACRfullpl] = ACTIONS(8661), + [anon_sym_BSLASHacs] = ACTIONS(8661), + [anon_sym_BSLASHAcs] = ACTIONS(8661), + [anon_sym_BSLASHacsp] = ACTIONS(8661), + [anon_sym_BSLASHAcsp] = ACTIONS(8661), + [anon_sym_BSLASHacl] = ACTIONS(8661), + [anon_sym_BSLASHAcl] = ACTIONS(8661), + [anon_sym_BSLASHaclp] = ACTIONS(8661), + [anon_sym_BSLASHAclp] = ACTIONS(8661), + [anon_sym_BSLASHacf] = ACTIONS(8661), + [anon_sym_BSLASHAcf] = ACTIONS(8661), + [anon_sym_BSLASHacfp] = ACTIONS(8661), + [anon_sym_BSLASHAcfp] = ACTIONS(8661), + [anon_sym_BSLASHac] = ACTIONS(8661), + [anon_sym_BSLASHAc] = ACTIONS(8661), + [anon_sym_BSLASHacp] = ACTIONS(8661), + [anon_sym_BSLASHglsentrylong] = ACTIONS(8661), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(8661), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(8661), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(8661), + [anon_sym_BSLASHglsentryshort] = ACTIONS(8661), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(8661), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(8661), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(8661), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(8661), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(8661), + [anon_sym_BSLASHnewtheorem] = ACTIONS(8664), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(8664), + [anon_sym_BSLASHcolor] = ACTIONS(8667), + [anon_sym_BSLASHcolorbox] = ACTIONS(8667), + [anon_sym_BSLASHtextcolor] = ACTIONS(8667), + [anon_sym_BSLASHpagecolor] = ACTIONS(8667), + [anon_sym_BSLASHdefinecolor] = ACTIONS(8670), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(8673), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(8676), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8679), + }, + [383] = { + [sym__simple_content] = STATE(392), + [sym_paragraph] = STATE(392), + [sym_subparagraph] = STATE(392), + [sym_enum_item] = STATE(392), + [sym_brace_group] = STATE(392), + [sym_mixed_group] = STATE(392), + [sym_text] = STATE(392), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(392), + [sym_inline_formula] = STATE(392), + [sym_begin] = STATE(112), + [sym_environment] = STATE(392), + [sym_caption] = STATE(392), + [sym_citation] = STATE(392), + [sym_package_include] = STATE(392), + [sym_class_include] = STATE(392), + [sym_latex_include] = STATE(392), + [sym_latex_input] = STATE(392), + [sym_biblatex_include] = STATE(392), + [sym_bibtex_include] = STATE(392), + [sym_graphics_include] = STATE(392), + [sym_svg_include] = STATE(392), + [sym_inkscape_include] = STATE(392), + [sym_verbatim_include] = STATE(392), + [sym_import] = STATE(392), + [sym_label_definition] = STATE(392), + [sym_label_reference] = STATE(392), + [sym_equation_label_reference] = STATE(392), + [sym_label_reference_range] = STATE(392), + [sym_label_number] = STATE(392), + [sym_command_definition] = STATE(392), + [sym_math_operator] = STATE(392), + [sym_glossary_entry_definition] = STATE(392), + [sym_glossary_entry_reference] = STATE(392), + [sym_acronym_definition] = STATE(392), + [sym_acronym_reference] = STATE(392), + [sym_theorem_definition] = STATE(392), + [sym_color_reference] = STATE(392), + [sym_color_definition] = STATE(392), + [sym_color_set_definition] = STATE(392), + [sym_pgf_library_import] = STATE(392), + [sym_tikz_library_import] = STATE(392), + [sym_generic_command] = STATE(392), + [aux_sym_subsubsection_repeat1] = STATE(392), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(7652), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(3020), + [aux_sym_paragraph_token1] = ACTIONS(7656), + [aux_sym_subparagraph_token1] = ACTIONS(7658), + [anon_sym_BSLASHitem] = ACTIONS(7660), + [anon_sym_LBRACK] = ACTIONS(7662), + [anon_sym_RBRACK] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(7662), + [anon_sym_COMMA] = ACTIONS(7666), + [anon_sym_EQ] = ACTIONS(7666), + [sym_word] = ACTIONS(7666), + [sym_param] = ACTIONS(8682), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7670), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7670), + [anon_sym_DOLLAR] = ACTIONS(7672), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7674), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7676), + [anon_sym_BSLASHcite] = ACTIONS(7678), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCite] = ACTIONS(7678), + [anon_sym_BSLASHnocite] = ACTIONS(7678), + [anon_sym_BSLASHcitet] = ACTIONS(7678), + [anon_sym_BSLASHcitep] = ACTIONS(7678), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteauthor] = ACTIONS(7678), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7678), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitetitle] = ACTIONS(7678), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteyear] = ACTIONS(7678), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitedate] = ACTIONS(7678), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteurl] = ACTIONS(7678), + [anon_sym_BSLASHfullcite] = ACTIONS(7678), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7678), + [anon_sym_BSLASHcitealt] = ACTIONS(7678), + [anon_sym_BSLASHcitealp] = ACTIONS(7678), + [anon_sym_BSLASHcitetext] = ACTIONS(7678), + [anon_sym_BSLASHparencite] = ACTIONS(7678), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHParencite] = ACTIONS(7678), + [anon_sym_BSLASHfootcite] = ACTIONS(7678), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7678), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7678), + [anon_sym_BSLASHtextcite] = ACTIONS(7678), + [anon_sym_BSLASHTextcite] = ACTIONS(7678), + [anon_sym_BSLASHsmartcite] = ACTIONS(7678), + [anon_sym_BSLASHSmartcite] = ACTIONS(7678), + [anon_sym_BSLASHsupercite] = ACTIONS(7678), + [anon_sym_BSLASHautocite] = ACTIONS(7678), + [anon_sym_BSLASHAutocite] = ACTIONS(7678), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHvolcite] = ACTIONS(7678), + [anon_sym_BSLASHVolcite] = ACTIONS(7678), + [anon_sym_BSLASHpvolcite] = ACTIONS(7678), + [anon_sym_BSLASHPvolcite] = ACTIONS(7678), + [anon_sym_BSLASHfvolcite] = ACTIONS(7678), + [anon_sym_BSLASHftvolcite] = ACTIONS(7678), + [anon_sym_BSLASHsvolcite] = ACTIONS(7678), + [anon_sym_BSLASHSvolcite] = ACTIONS(7678), + [anon_sym_BSLASHtvolcite] = ACTIONS(7678), + [anon_sym_BSLASHTvolcite] = ACTIONS(7678), + [anon_sym_BSLASHavolcite] = ACTIONS(7678), + [anon_sym_BSLASHAvolcite] = ACTIONS(7678), + [anon_sym_BSLASHnotecite] = ACTIONS(7678), + [anon_sym_BSLASHpnotecite] = ACTIONS(7678), + [anon_sym_BSLASHPnotecite] = ACTIONS(7678), + [anon_sym_BSLASHfnotecite] = ACTIONS(7678), + [anon_sym_BSLASHusepackage] = ACTIONS(7682), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7684), + [anon_sym_BSLASHinclude] = ACTIONS(7686), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7686), + [anon_sym_BSLASHinput] = ACTIONS(7688), + [anon_sym_BSLASHsubfile] = ACTIONS(7688), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7690), + [anon_sym_BSLASHbibliography] = ACTIONS(7692), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7694), + [anon_sym_BSLASHincludesvg] = ACTIONS(7696), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7698), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7700), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7700), + [anon_sym_BSLASHimport] = ACTIONS(7702), + [anon_sym_BSLASHsubimport] = ACTIONS(7702), + [anon_sym_BSLASHinputfrom] = ACTIONS(7702), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7702), + [anon_sym_BSLASHincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHlabel] = ACTIONS(7704), + [anon_sym_BSLASHref] = ACTIONS(7706), + [anon_sym_BSLASHvref] = ACTIONS(7706), + [anon_sym_BSLASHVref] = ACTIONS(7706), + [anon_sym_BSLASHautoref] = ACTIONS(7706), + [anon_sym_BSLASHpageref] = ACTIONS(7706), + [anon_sym_BSLASHcref] = ACTIONS(7706), + [anon_sym_BSLASHCref] = ACTIONS(7706), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnameCref] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHlabelcref] = ACTIONS(7706), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7706), + [anon_sym_BSLASHeqref] = ACTIONS(7710), + [anon_sym_BSLASHcrefrange] = ACTIONS(7712), + [anon_sym_BSLASHCrefrange] = ACTIONS(7712), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHnewlabel] = ACTIONS(7716), + [anon_sym_BSLASHnewcommand] = ACTIONS(7718), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7720), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7722), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7724), + [anon_sym_BSLASHgls] = ACTIONS(7726), + [anon_sym_BSLASHGls] = ACTIONS(7726), + [anon_sym_BSLASHGLS] = ACTIONS(7726), + [anon_sym_BSLASHglspl] = ACTIONS(7726), + [anon_sym_BSLASHGlspl] = ACTIONS(7726), + [anon_sym_BSLASHGLSpl] = ACTIONS(7726), + [anon_sym_BSLASHglsdisp] = ACTIONS(7726), + [anon_sym_BSLASHglslink] = ACTIONS(7726), + [anon_sym_BSLASHglstext] = ACTIONS(7726), + [anon_sym_BSLASHGlstext] = ACTIONS(7726), + [anon_sym_BSLASHGLStext] = ACTIONS(7726), + [anon_sym_BSLASHglsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7726), + [anon_sym_BSLASHglsplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSplural] = ACTIONS(7726), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHglsname] = ACTIONS(7726), + [anon_sym_BSLASHGlsname] = ACTIONS(7726), + [anon_sym_BSLASHGLSname] = ACTIONS(7726), + [anon_sym_BSLASHglssymbol] = ACTIONS(7726), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7726), + [anon_sym_BSLASHglsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7726), + [anon_sym_BSLASHglsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7726), + [anon_sym_BSLASHglsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7726), + [anon_sym_BSLASHglsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7726), + [anon_sym_BSLASHglsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7726), + [anon_sym_BSLASHnewacronym] = ACTIONS(7728), + [anon_sym_BSLASHacrshort] = ACTIONS(7730), + [anon_sym_BSLASHAcrshort] = ACTIONS(7730), + [anon_sym_BSLASHACRshort] = ACTIONS(7730), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7730), + [anon_sym_BSLASHacrlong] = ACTIONS(7730), + [anon_sym_BSLASHAcrlong] = ACTIONS(7730), + [anon_sym_BSLASHACRlong] = ACTIONS(7730), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7730), + [anon_sym_BSLASHacrfull] = ACTIONS(7730), + [anon_sym_BSLASHAcrfull] = ACTIONS(7730), + [anon_sym_BSLASHACRfull] = ACTIONS(7730), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7730), + [anon_sym_BSLASHacs] = ACTIONS(7730), + [anon_sym_BSLASHAcs] = ACTIONS(7730), + [anon_sym_BSLASHacsp] = ACTIONS(7730), + [anon_sym_BSLASHAcsp] = ACTIONS(7730), + [anon_sym_BSLASHacl] = ACTIONS(7730), + [anon_sym_BSLASHAcl] = ACTIONS(7730), + [anon_sym_BSLASHaclp] = ACTIONS(7730), + [anon_sym_BSLASHAclp] = ACTIONS(7730), + [anon_sym_BSLASHacf] = ACTIONS(7730), + [anon_sym_BSLASHAcf] = ACTIONS(7730), + [anon_sym_BSLASHacfp] = ACTIONS(7730), + [anon_sym_BSLASHAcfp] = ACTIONS(7730), + [anon_sym_BSLASHac] = ACTIONS(7730), + [anon_sym_BSLASHAc] = ACTIONS(7730), + [anon_sym_BSLASHacp] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7732), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7732), + [anon_sym_BSLASHcolor] = ACTIONS(7734), + [anon_sym_BSLASHcolorbox] = ACTIONS(7734), + [anon_sym_BSLASHtextcolor] = ACTIONS(7734), + [anon_sym_BSLASHpagecolor] = ACTIONS(7734), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7736), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7738), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7740), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7742), + }, + [384] = { + [sym__simple_content] = STATE(401), + [sym_brace_group] = STATE(401), + [sym_mixed_group] = STATE(401), + [sym_text] = STATE(401), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(401), + [sym_inline_formula] = STATE(401), + [sym_begin] = STATE(86), + [sym_environment] = STATE(401), + [sym_caption] = STATE(401), + [sym_citation] = STATE(401), + [sym_package_include] = STATE(401), + [sym_class_include] = STATE(401), + [sym_latex_include] = STATE(401), + [sym_latex_input] = STATE(401), + [sym_biblatex_include] = STATE(401), + [sym_bibtex_include] = STATE(401), + [sym_graphics_include] = STATE(401), + [sym_svg_include] = STATE(401), + [sym_inkscape_include] = STATE(401), + [sym_verbatim_include] = STATE(401), + [sym_import] = STATE(401), + [sym_label_definition] = STATE(401), + [sym_label_reference] = STATE(401), + [sym_equation_label_reference] = STATE(401), + [sym_label_reference_range] = STATE(401), + [sym_label_number] = STATE(401), + [sym_command_definition] = STATE(401), + [sym_math_operator] = STATE(401), + [sym_glossary_entry_definition] = STATE(401), + [sym_glossary_entry_reference] = STATE(401), + [sym_acronym_definition] = STATE(401), + [sym_acronym_reference] = STATE(401), + [sym_theorem_definition] = STATE(401), + [sym_color_reference] = STATE(401), + [sym_color_definition] = STATE(401), + [sym_color_set_definition] = STATE(401), + [sym_pgf_library_import] = STATE(401), + [sym_tikz_library_import] = STATE(401), + [sym_generic_command] = STATE(401), + [aux_sym_enum_item_repeat1] = STATE(401), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(6177), + [aux_sym_section_token1] = ACTIONS(6177), + [aux_sym_subsection_token1] = ACTIONS(6177), + [aux_sym_subsubsection_token1] = ACTIONS(6177), + [aux_sym_paragraph_token1] = ACTIONS(6177), + [aux_sym_subparagraph_token1] = ACTIONS(6177), + [anon_sym_BSLASHitem] = ACTIONS(6177), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(6175), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(8684), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [385] = { + [sym__simple_content] = STATE(396), + [sym_brace_group] = STATE(396), + [sym_mixed_group] = STATE(396), + [sym_text] = STATE(396), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(396), + [sym_inline_formula] = STATE(396), + [sym_begin] = STATE(59), + [sym_environment] = STATE(396), + [sym_caption] = STATE(396), + [sym_citation] = STATE(396), + [sym_package_include] = STATE(396), + [sym_class_include] = STATE(396), + [sym_latex_include] = STATE(396), + [sym_latex_input] = STATE(396), + [sym_biblatex_include] = STATE(396), + [sym_bibtex_include] = STATE(396), + [sym_graphics_include] = STATE(396), + [sym_svg_include] = STATE(396), + [sym_inkscape_include] = STATE(396), + [sym_verbatim_include] = STATE(396), + [sym_import] = STATE(396), + [sym_label_definition] = STATE(396), + [sym_label_reference] = STATE(396), + [sym_equation_label_reference] = STATE(396), + [sym_label_reference_range] = STATE(396), + [sym_label_number] = STATE(396), + [sym_command_definition] = STATE(396), + [sym_math_operator] = STATE(396), + [sym_glossary_entry_definition] = STATE(396), + [sym_glossary_entry_reference] = STATE(396), + [sym_acronym_definition] = STATE(396), + [sym_acronym_reference] = STATE(396), + [sym_theorem_definition] = STATE(396), + [sym_color_reference] = STATE(396), + [sym_color_definition] = STATE(396), + [sym_color_set_definition] = STATE(396), + [sym_pgf_library_import] = STATE(396), + [sym_tikz_library_import] = STATE(396), + [sym_generic_command] = STATE(396), + [aux_sym_enum_item_repeat1] = STATE(396), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5606), + [aux_sym_chapter_token1] = ACTIONS(5606), + [aux_sym_section_token1] = ACTIONS(5606), + [aux_sym_subsection_token1] = ACTIONS(5606), + [aux_sym_subsubsection_token1] = ACTIONS(5606), + [aux_sym_paragraph_token1] = ACTIONS(5606), + [aux_sym_subparagraph_token1] = ACTIONS(5606), + [anon_sym_BSLASHitem] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(8686), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5604), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [386] = { + [sym__simple_content] = STATE(386), + [sym_brace_group] = STATE(386), + [sym_mixed_group] = STATE(386), + [sym_text] = STATE(386), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(386), + [sym_inline_formula] = STATE(386), + [sym_begin] = STATE(59), + [sym_environment] = STATE(386), + [sym_caption] = STATE(386), + [sym_citation] = STATE(386), + [sym_package_include] = STATE(386), + [sym_class_include] = STATE(386), + [sym_latex_include] = STATE(386), + [sym_latex_input] = STATE(386), + [sym_biblatex_include] = STATE(386), + [sym_bibtex_include] = STATE(386), + [sym_graphics_include] = STATE(386), + [sym_svg_include] = STATE(386), + [sym_inkscape_include] = STATE(386), + [sym_verbatim_include] = STATE(386), + [sym_import] = STATE(386), + [sym_label_definition] = STATE(386), + [sym_label_reference] = STATE(386), + [sym_equation_label_reference] = STATE(386), + [sym_label_reference_range] = STATE(386), + [sym_label_number] = STATE(386), + [sym_command_definition] = STATE(386), + [sym_math_operator] = STATE(386), + [sym_glossary_entry_definition] = STATE(386), + [sym_glossary_entry_reference] = STATE(386), + [sym_acronym_definition] = STATE(386), + [sym_acronym_reference] = STATE(386), + [sym_theorem_definition] = STATE(386), + [sym_color_reference] = STATE(386), + [sym_color_definition] = STATE(386), + [sym_color_set_definition] = STATE(386), + [sym_pgf_library_import] = STATE(386), + [sym_tikz_library_import] = STATE(386), + [sym_generic_command] = STATE(386), + [aux_sym_enum_item_repeat1] = STATE(386), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(8688), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(6045), + [aux_sym_chapter_token1] = ACTIONS(6045), + [aux_sym_section_token1] = ACTIONS(6045), + [aux_sym_subsection_token1] = ACTIONS(6045), + [aux_sym_subsubsection_token1] = ACTIONS(6045), + [aux_sym_paragraph_token1] = ACTIONS(6045), + [aux_sym_subparagraph_token1] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(8691), + [anon_sym_LBRACE] = ACTIONS(8694), + [anon_sym_LPAREN] = ACTIONS(8691), + [anon_sym_COMMA] = ACTIONS(8697), + [anon_sym_EQ] = ACTIONS(8697), + [sym_word] = ACTIONS(8697), + [sym_param] = ACTIONS(8700), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8703), + [anon_sym_BSLASH_LBRACK] = ACTIONS(8703), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6040), + [anon_sym_DOLLAR] = ACTIONS(8706), + [anon_sym_BSLASH_LPAREN] = ACTIONS(8709), + [anon_sym_BSLASHbegin] = ACTIONS(6068), + [anon_sym_BSLASHcaption] = ACTIONS(8712), + [anon_sym_BSLASHcite] = ACTIONS(8715), + [anon_sym_BSLASHcite_STAR] = ACTIONS(8718), + [anon_sym_BSLASHCite] = ACTIONS(8715), + [anon_sym_BSLASHnocite] = ACTIONS(8715), + [anon_sym_BSLASHcitet] = ACTIONS(8715), + [anon_sym_BSLASHcitep] = ACTIONS(8715), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(8718), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(8718), + [anon_sym_BSLASHciteauthor] = ACTIONS(8715), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(8718), + [anon_sym_BSLASHCiteauthor] = ACTIONS(8715), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(8718), + [anon_sym_BSLASHcitetitle] = ACTIONS(8715), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(8718), + [anon_sym_BSLASHciteyear] = ACTIONS(8715), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(8718), + [anon_sym_BSLASHcitedate] = ACTIONS(8715), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(8718), + [anon_sym_BSLASHciteurl] = ACTIONS(8715), + [anon_sym_BSLASHfullcite] = ACTIONS(8715), + [anon_sym_BSLASHciteyearpar] = ACTIONS(8715), + [anon_sym_BSLASHcitealt] = ACTIONS(8715), + [anon_sym_BSLASHcitealp] = ACTIONS(8715), + [anon_sym_BSLASHcitetext] = ACTIONS(8715), + [anon_sym_BSLASHparencite] = ACTIONS(8715), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(8718), + [anon_sym_BSLASHParencite] = ACTIONS(8715), + [anon_sym_BSLASHfootcite] = ACTIONS(8715), + [anon_sym_BSLASHfootfullcite] = ACTIONS(8715), + [anon_sym_BSLASHfootcitetext] = ACTIONS(8715), + [anon_sym_BSLASHtextcite] = ACTIONS(8715), + [anon_sym_BSLASHTextcite] = ACTIONS(8715), + [anon_sym_BSLASHsmartcite] = ACTIONS(8715), + [anon_sym_BSLASHSmartcite] = ACTIONS(8715), + [anon_sym_BSLASHsupercite] = ACTIONS(8715), + [anon_sym_BSLASHautocite] = ACTIONS(8715), + [anon_sym_BSLASHAutocite] = ACTIONS(8715), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(8718), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(8718), + [anon_sym_BSLASHvolcite] = ACTIONS(8715), + [anon_sym_BSLASHVolcite] = ACTIONS(8715), + [anon_sym_BSLASHpvolcite] = ACTIONS(8715), + [anon_sym_BSLASHPvolcite] = ACTIONS(8715), + [anon_sym_BSLASHfvolcite] = ACTIONS(8715), + [anon_sym_BSLASHftvolcite] = ACTIONS(8715), + [anon_sym_BSLASHsvolcite] = ACTIONS(8715), + [anon_sym_BSLASHSvolcite] = ACTIONS(8715), + [anon_sym_BSLASHtvolcite] = ACTIONS(8715), + [anon_sym_BSLASHTvolcite] = ACTIONS(8715), + [anon_sym_BSLASHavolcite] = ACTIONS(8715), + [anon_sym_BSLASHAvolcite] = ACTIONS(8715), + [anon_sym_BSLASHnotecite] = ACTIONS(8715), + [anon_sym_BSLASHpnotecite] = ACTIONS(8715), + [anon_sym_BSLASHPnotecite] = ACTIONS(8715), + [anon_sym_BSLASHfnotecite] = ACTIONS(8715), + [anon_sym_BSLASHusepackage] = ACTIONS(8721), + [anon_sym_BSLASHRequirePackage] = ACTIONS(8721), + [anon_sym_BSLASHdocumentclass] = ACTIONS(8724), + [anon_sym_BSLASHinclude] = ACTIONS(8727), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(8727), + [anon_sym_BSLASHinput] = ACTIONS(8730), + [anon_sym_BSLASHsubfile] = ACTIONS(8730), + [anon_sym_BSLASHaddbibresource] = ACTIONS(8733), + [anon_sym_BSLASHbibliography] = ACTIONS(8736), + [anon_sym_BSLASHincludegraphics] = ACTIONS(8739), + [anon_sym_BSLASHincludesvg] = ACTIONS(8742), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(8745), + [anon_sym_BSLASHverbatiminput] = ACTIONS(8748), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(8748), + [anon_sym_BSLASHimport] = ACTIONS(8751), + [anon_sym_BSLASHsubimport] = ACTIONS(8751), + [anon_sym_BSLASHinputfrom] = ACTIONS(8751), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(8751), + [anon_sym_BSLASHincludefrom] = ACTIONS(8751), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(8751), + [anon_sym_BSLASHlabel] = ACTIONS(8754), + [anon_sym_BSLASHref] = ACTIONS(8757), + [anon_sym_BSLASHvref] = ACTIONS(8757), + [anon_sym_BSLASHVref] = ACTIONS(8757), + [anon_sym_BSLASHautoref] = ACTIONS(8757), + [anon_sym_BSLASHpageref] = ACTIONS(8757), + [anon_sym_BSLASHcref] = ACTIONS(8757), + [anon_sym_BSLASHCref] = ACTIONS(8757), + [anon_sym_BSLASHcref_STAR] = ACTIONS(8760), + [anon_sym_BSLASHCref_STAR] = ACTIONS(8760), + [anon_sym_BSLASHnamecref] = ACTIONS(8757), + [anon_sym_BSLASHnameCref] = ACTIONS(8757), + [anon_sym_BSLASHlcnamecref] = ACTIONS(8757), + [anon_sym_BSLASHnamecrefs] = ACTIONS(8757), + [anon_sym_BSLASHnameCrefs] = ACTIONS(8757), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(8757), + [anon_sym_BSLASHlabelcref] = ACTIONS(8757), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(8757), + [anon_sym_BSLASHeqref] = ACTIONS(8763), + [anon_sym_BSLASHcrefrange] = ACTIONS(8766), + [anon_sym_BSLASHCrefrange] = ACTIONS(8766), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(8769), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(8769), + [anon_sym_BSLASHnewlabel] = ACTIONS(8772), + [anon_sym_BSLASHnewcommand] = ACTIONS(8775), + [anon_sym_BSLASHrenewcommand] = ACTIONS(8775), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(8775), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(8778), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(8781), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8784), + [anon_sym_BSLASHgls] = ACTIONS(8787), + [anon_sym_BSLASHGls] = ACTIONS(8787), + [anon_sym_BSLASHGLS] = ACTIONS(8787), + [anon_sym_BSLASHglspl] = ACTIONS(8787), + [anon_sym_BSLASHGlspl] = ACTIONS(8787), + [anon_sym_BSLASHGLSpl] = ACTIONS(8787), + [anon_sym_BSLASHglsdisp] = ACTIONS(8787), + [anon_sym_BSLASHglslink] = ACTIONS(8787), + [anon_sym_BSLASHglstext] = ACTIONS(8787), + [anon_sym_BSLASHGlstext] = ACTIONS(8787), + [anon_sym_BSLASHGLStext] = ACTIONS(8787), + [anon_sym_BSLASHglsfirst] = ACTIONS(8787), + [anon_sym_BSLASHGlsfirst] = ACTIONS(8787), + [anon_sym_BSLASHGLSfirst] = ACTIONS(8787), + [anon_sym_BSLASHglsplural] = ACTIONS(8787), + [anon_sym_BSLASHGlsplural] = ACTIONS(8787), + [anon_sym_BSLASHGLSplural] = ACTIONS(8787), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(8787), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(8787), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(8787), + [anon_sym_BSLASHglsname] = ACTIONS(8787), + [anon_sym_BSLASHGlsname] = ACTIONS(8787), + [anon_sym_BSLASHGLSname] = ACTIONS(8787), + [anon_sym_BSLASHglssymbol] = ACTIONS(8787), + [anon_sym_BSLASHGlssymbol] = ACTIONS(8787), + [anon_sym_BSLASHglsdesc] = ACTIONS(8787), + [anon_sym_BSLASHGlsdesc] = ACTIONS(8787), + [anon_sym_BSLASHGLSdesc] = ACTIONS(8787), + [anon_sym_BSLASHglsuseri] = ACTIONS(8787), + [anon_sym_BSLASHGlsuseri] = ACTIONS(8787), + [anon_sym_BSLASHGLSuseri] = ACTIONS(8787), + [anon_sym_BSLASHglsuserii] = ACTIONS(8787), + [anon_sym_BSLASHGlsuserii] = ACTIONS(8787), + [anon_sym_BSLASHGLSuserii] = ACTIONS(8787), + [anon_sym_BSLASHglsuseriii] = ACTIONS(8787), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(8787), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(8787), + [anon_sym_BSLASHglsuseriv] = ACTIONS(8787), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(8787), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(8787), + [anon_sym_BSLASHglsuserv] = ACTIONS(8787), + [anon_sym_BSLASHGlsuserv] = ACTIONS(8787), + [anon_sym_BSLASHGLSuserv] = ACTIONS(8787), + [anon_sym_BSLASHglsuservi] = ACTIONS(8787), + [anon_sym_BSLASHGlsuservi] = ACTIONS(8787), + [anon_sym_BSLASHGLSuservi] = ACTIONS(8787), + [anon_sym_BSLASHnewacronym] = ACTIONS(8790), + [anon_sym_BSLASHacrshort] = ACTIONS(8793), + [anon_sym_BSLASHAcrshort] = ACTIONS(8793), + [anon_sym_BSLASHACRshort] = ACTIONS(8793), + [anon_sym_BSLASHacrshortpl] = ACTIONS(8793), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(8793), + [anon_sym_BSLASHACRshortpl] = ACTIONS(8793), + [anon_sym_BSLASHacrlong] = ACTIONS(8793), + [anon_sym_BSLASHAcrlong] = ACTIONS(8793), + [anon_sym_BSLASHACRlong] = ACTIONS(8793), + [anon_sym_BSLASHacrlongpl] = ACTIONS(8793), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(8793), + [anon_sym_BSLASHACRlongpl] = ACTIONS(8793), + [anon_sym_BSLASHacrfull] = ACTIONS(8793), + [anon_sym_BSLASHAcrfull] = ACTIONS(8793), + [anon_sym_BSLASHACRfull] = ACTIONS(8793), + [anon_sym_BSLASHacrfullpl] = ACTIONS(8793), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(8793), + [anon_sym_BSLASHACRfullpl] = ACTIONS(8793), + [anon_sym_BSLASHacs] = ACTIONS(8793), + [anon_sym_BSLASHAcs] = ACTIONS(8793), + [anon_sym_BSLASHacsp] = ACTIONS(8793), + [anon_sym_BSLASHAcsp] = ACTIONS(8793), + [anon_sym_BSLASHacl] = ACTIONS(8793), + [anon_sym_BSLASHAcl] = ACTIONS(8793), + [anon_sym_BSLASHaclp] = ACTIONS(8793), + [anon_sym_BSLASHAclp] = ACTIONS(8793), + [anon_sym_BSLASHacf] = ACTIONS(8793), + [anon_sym_BSLASHAcf] = ACTIONS(8793), + [anon_sym_BSLASHacfp] = ACTIONS(8793), + [anon_sym_BSLASHAcfp] = ACTIONS(8793), + [anon_sym_BSLASHac] = ACTIONS(8793), + [anon_sym_BSLASHAc] = ACTIONS(8793), + [anon_sym_BSLASHacp] = ACTIONS(8793), + [anon_sym_BSLASHglsentrylong] = ACTIONS(8793), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(8793), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(8793), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(8793), + [anon_sym_BSLASHglsentryshort] = ACTIONS(8793), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(8793), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(8793), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(8793), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(8793), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(8793), + [anon_sym_BSLASHnewtheorem] = ACTIONS(8796), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(8796), + [anon_sym_BSLASHcolor] = ACTIONS(8799), + [anon_sym_BSLASHcolorbox] = ACTIONS(8799), + [anon_sym_BSLASHtextcolor] = ACTIONS(8799), + [anon_sym_BSLASHpagecolor] = ACTIONS(8799), + [anon_sym_BSLASHdefinecolor] = ACTIONS(8802), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(8805), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(8808), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8811), + }, + [387] = { + [sym__simple_content] = STATE(387), + [sym_subparagraph] = STATE(387), + [sym_enum_item] = STATE(387), + [sym_brace_group] = STATE(387), + [sym_mixed_group] = STATE(387), + [sym_text] = STATE(387), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(387), + [sym_inline_formula] = STATE(387), + [sym_begin] = STATE(105), + [sym_environment] = STATE(387), + [sym_caption] = STATE(387), + [sym_citation] = STATE(387), + [sym_package_include] = STATE(387), + [sym_class_include] = STATE(387), + [sym_latex_include] = STATE(387), + [sym_latex_input] = STATE(387), + [sym_biblatex_include] = STATE(387), + [sym_bibtex_include] = STATE(387), + [sym_graphics_include] = STATE(387), + [sym_svg_include] = STATE(387), + [sym_inkscape_include] = STATE(387), + [sym_verbatim_include] = STATE(387), + [sym_import] = STATE(387), + [sym_label_definition] = STATE(387), + [sym_label_reference] = STATE(387), + [sym_equation_label_reference] = STATE(387), + [sym_label_reference_range] = STATE(387), + [sym_label_number] = STATE(387), + [sym_command_definition] = STATE(387), + [sym_math_operator] = STATE(387), + [sym_glossary_entry_definition] = STATE(387), + [sym_glossary_entry_reference] = STATE(387), + [sym_acronym_definition] = STATE(387), + [sym_acronym_reference] = STATE(387), + [sym_theorem_definition] = STATE(387), + [sym_color_reference] = STATE(387), + [sym_color_definition] = STATE(387), + [sym_color_set_definition] = STATE(387), + [sym_pgf_library_import] = STATE(387), + [sym_tikz_library_import] = STATE(387), + [sym_generic_command] = STATE(387), + [aux_sym_paragraph_repeat1] = STATE(387), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(8814), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(4165), + [aux_sym_subsubsection_token1] = ACTIONS(4165), + [aux_sym_paragraph_token1] = ACTIONS(4165), + [aux_sym_subparagraph_token1] = ACTIONS(8817), + [anon_sym_BSLASHitem] = ACTIONS(8820), + [anon_sym_LBRACK] = ACTIONS(8823), + [anon_sym_RBRACK] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(8826), + [anon_sym_RBRACE] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(8823), + [anon_sym_COMMA] = ACTIONS(8829), + [anon_sym_EQ] = ACTIONS(8829), + [sym_word] = ACTIONS(8829), + [sym_param] = ACTIONS(8832), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(8835), + [anon_sym_DOLLAR] = ACTIONS(8838), + [anon_sym_BSLASH_LPAREN] = ACTIONS(8841), + [anon_sym_BSLASHbegin] = ACTIONS(4194), + [anon_sym_BSLASHcaption] = ACTIONS(8844), + [anon_sym_BSLASHcite] = ACTIONS(8847), + [anon_sym_BSLASHcite_STAR] = ACTIONS(8850), + [anon_sym_BSLASHCite] = ACTIONS(8847), + [anon_sym_BSLASHnocite] = ACTIONS(8847), + [anon_sym_BSLASHcitet] = ACTIONS(8847), + [anon_sym_BSLASHcitep] = ACTIONS(8847), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(8850), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(8850), + [anon_sym_BSLASHciteauthor] = ACTIONS(8847), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(8850), + [anon_sym_BSLASHCiteauthor] = ACTIONS(8847), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(8850), + [anon_sym_BSLASHcitetitle] = ACTIONS(8847), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(8850), + [anon_sym_BSLASHciteyear] = ACTIONS(8847), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(8850), + [anon_sym_BSLASHcitedate] = ACTIONS(8847), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(8850), + [anon_sym_BSLASHciteurl] = ACTIONS(8847), + [anon_sym_BSLASHfullcite] = ACTIONS(8847), + [anon_sym_BSLASHciteyearpar] = ACTIONS(8847), + [anon_sym_BSLASHcitealt] = ACTIONS(8847), + [anon_sym_BSLASHcitealp] = ACTIONS(8847), + [anon_sym_BSLASHcitetext] = ACTIONS(8847), + [anon_sym_BSLASHparencite] = ACTIONS(8847), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(8850), + [anon_sym_BSLASHParencite] = ACTIONS(8847), + [anon_sym_BSLASHfootcite] = ACTIONS(8847), + [anon_sym_BSLASHfootfullcite] = ACTIONS(8847), + [anon_sym_BSLASHfootcitetext] = ACTIONS(8847), + [anon_sym_BSLASHtextcite] = ACTIONS(8847), + [anon_sym_BSLASHTextcite] = ACTIONS(8847), + [anon_sym_BSLASHsmartcite] = ACTIONS(8847), + [anon_sym_BSLASHSmartcite] = ACTIONS(8847), + [anon_sym_BSLASHsupercite] = ACTIONS(8847), + [anon_sym_BSLASHautocite] = ACTIONS(8847), + [anon_sym_BSLASHAutocite] = ACTIONS(8847), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(8850), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(8850), + [anon_sym_BSLASHvolcite] = ACTIONS(8847), + [anon_sym_BSLASHVolcite] = ACTIONS(8847), + [anon_sym_BSLASHpvolcite] = ACTIONS(8847), + [anon_sym_BSLASHPvolcite] = ACTIONS(8847), + [anon_sym_BSLASHfvolcite] = ACTIONS(8847), + [anon_sym_BSLASHftvolcite] = ACTIONS(8847), + [anon_sym_BSLASHsvolcite] = ACTIONS(8847), + [anon_sym_BSLASHSvolcite] = ACTIONS(8847), + [anon_sym_BSLASHtvolcite] = ACTIONS(8847), + [anon_sym_BSLASHTvolcite] = ACTIONS(8847), + [anon_sym_BSLASHavolcite] = ACTIONS(8847), + [anon_sym_BSLASHAvolcite] = ACTIONS(8847), + [anon_sym_BSLASHnotecite] = ACTIONS(8847), + [anon_sym_BSLASHpnotecite] = ACTIONS(8847), + [anon_sym_BSLASHPnotecite] = ACTIONS(8847), + [anon_sym_BSLASHfnotecite] = ACTIONS(8847), + [anon_sym_BSLASHusepackage] = ACTIONS(8853), + [anon_sym_BSLASHRequirePackage] = ACTIONS(8853), + [anon_sym_BSLASHdocumentclass] = ACTIONS(8856), + [anon_sym_BSLASHinclude] = ACTIONS(8859), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(8859), + [anon_sym_BSLASHinput] = ACTIONS(8862), + [anon_sym_BSLASHsubfile] = ACTIONS(8862), + [anon_sym_BSLASHaddbibresource] = ACTIONS(8865), + [anon_sym_BSLASHbibliography] = ACTIONS(8868), + [anon_sym_BSLASHincludegraphics] = ACTIONS(8871), + [anon_sym_BSLASHincludesvg] = ACTIONS(8874), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(8877), + [anon_sym_BSLASHverbatiminput] = ACTIONS(8880), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(8880), + [anon_sym_BSLASHimport] = ACTIONS(8883), + [anon_sym_BSLASHsubimport] = ACTIONS(8883), + [anon_sym_BSLASHinputfrom] = ACTIONS(8883), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(8883), + [anon_sym_BSLASHincludefrom] = ACTIONS(8883), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(8883), + [anon_sym_BSLASHlabel] = ACTIONS(8886), + [anon_sym_BSLASHref] = ACTIONS(8889), + [anon_sym_BSLASHvref] = ACTIONS(8889), + [anon_sym_BSLASHVref] = ACTIONS(8889), + [anon_sym_BSLASHautoref] = ACTIONS(8889), + [anon_sym_BSLASHpageref] = ACTIONS(8889), + [anon_sym_BSLASHcref] = ACTIONS(8889), + [anon_sym_BSLASHCref] = ACTIONS(8889), + [anon_sym_BSLASHcref_STAR] = ACTIONS(8892), + [anon_sym_BSLASHCref_STAR] = ACTIONS(8892), + [anon_sym_BSLASHnamecref] = ACTIONS(8889), + [anon_sym_BSLASHnameCref] = ACTIONS(8889), + [anon_sym_BSLASHlcnamecref] = ACTIONS(8889), + [anon_sym_BSLASHnamecrefs] = ACTIONS(8889), + [anon_sym_BSLASHnameCrefs] = ACTIONS(8889), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(8889), + [anon_sym_BSLASHlabelcref] = ACTIONS(8889), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(8889), + [anon_sym_BSLASHeqref] = ACTIONS(8895), + [anon_sym_BSLASHcrefrange] = ACTIONS(8898), + [anon_sym_BSLASHCrefrange] = ACTIONS(8898), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(8901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(8901), + [anon_sym_BSLASHnewlabel] = ACTIONS(8904), + [anon_sym_BSLASHnewcommand] = ACTIONS(8907), + [anon_sym_BSLASHrenewcommand] = ACTIONS(8907), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(8907), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(8910), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(8913), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(8916), + [anon_sym_BSLASHgls] = ACTIONS(8919), + [anon_sym_BSLASHGls] = ACTIONS(8919), + [anon_sym_BSLASHGLS] = ACTIONS(8919), + [anon_sym_BSLASHglspl] = ACTIONS(8919), + [anon_sym_BSLASHGlspl] = ACTIONS(8919), + [anon_sym_BSLASHGLSpl] = ACTIONS(8919), + [anon_sym_BSLASHglsdisp] = ACTIONS(8919), + [anon_sym_BSLASHglslink] = ACTIONS(8919), + [anon_sym_BSLASHglstext] = ACTIONS(8919), + [anon_sym_BSLASHGlstext] = ACTIONS(8919), + [anon_sym_BSLASHGLStext] = ACTIONS(8919), + [anon_sym_BSLASHglsfirst] = ACTIONS(8919), + [anon_sym_BSLASHGlsfirst] = ACTIONS(8919), + [anon_sym_BSLASHGLSfirst] = ACTIONS(8919), + [anon_sym_BSLASHglsplural] = ACTIONS(8919), + [anon_sym_BSLASHGlsplural] = ACTIONS(8919), + [anon_sym_BSLASHGLSplural] = ACTIONS(8919), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(8919), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(8919), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(8919), + [anon_sym_BSLASHglsname] = ACTIONS(8919), + [anon_sym_BSLASHGlsname] = ACTIONS(8919), + [anon_sym_BSLASHGLSname] = ACTIONS(8919), + [anon_sym_BSLASHglssymbol] = ACTIONS(8919), + [anon_sym_BSLASHGlssymbol] = ACTIONS(8919), + [anon_sym_BSLASHglsdesc] = ACTIONS(8919), + [anon_sym_BSLASHGlsdesc] = ACTIONS(8919), + [anon_sym_BSLASHGLSdesc] = ACTIONS(8919), + [anon_sym_BSLASHglsuseri] = ACTIONS(8919), + [anon_sym_BSLASHGlsuseri] = ACTIONS(8919), + [anon_sym_BSLASHGLSuseri] = ACTIONS(8919), + [anon_sym_BSLASHglsuserii] = ACTIONS(8919), + [anon_sym_BSLASHGlsuserii] = ACTIONS(8919), + [anon_sym_BSLASHGLSuserii] = ACTIONS(8919), + [anon_sym_BSLASHglsuseriii] = ACTIONS(8919), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(8919), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(8919), + [anon_sym_BSLASHglsuseriv] = ACTIONS(8919), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(8919), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(8919), + [anon_sym_BSLASHglsuserv] = ACTIONS(8919), + [anon_sym_BSLASHGlsuserv] = ACTIONS(8919), + [anon_sym_BSLASHGLSuserv] = ACTIONS(8919), + [anon_sym_BSLASHglsuservi] = ACTIONS(8919), + [anon_sym_BSLASHGlsuservi] = ACTIONS(8919), + [anon_sym_BSLASHGLSuservi] = ACTIONS(8919), + [anon_sym_BSLASHnewacronym] = ACTIONS(8922), + [anon_sym_BSLASHacrshort] = ACTIONS(8925), + [anon_sym_BSLASHAcrshort] = ACTIONS(8925), + [anon_sym_BSLASHACRshort] = ACTIONS(8925), + [anon_sym_BSLASHacrshortpl] = ACTIONS(8925), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(8925), + [anon_sym_BSLASHACRshortpl] = ACTIONS(8925), + [anon_sym_BSLASHacrlong] = ACTIONS(8925), + [anon_sym_BSLASHAcrlong] = ACTIONS(8925), + [anon_sym_BSLASHACRlong] = ACTIONS(8925), + [anon_sym_BSLASHacrlongpl] = ACTIONS(8925), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(8925), + [anon_sym_BSLASHACRlongpl] = ACTIONS(8925), + [anon_sym_BSLASHacrfull] = ACTIONS(8925), + [anon_sym_BSLASHAcrfull] = ACTIONS(8925), + [anon_sym_BSLASHACRfull] = ACTIONS(8925), + [anon_sym_BSLASHacrfullpl] = ACTIONS(8925), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(8925), + [anon_sym_BSLASHACRfullpl] = ACTIONS(8925), + [anon_sym_BSLASHacs] = ACTIONS(8925), + [anon_sym_BSLASHAcs] = ACTIONS(8925), + [anon_sym_BSLASHacsp] = ACTIONS(8925), + [anon_sym_BSLASHAcsp] = ACTIONS(8925), + [anon_sym_BSLASHacl] = ACTIONS(8925), + [anon_sym_BSLASHAcl] = ACTIONS(8925), + [anon_sym_BSLASHaclp] = ACTIONS(8925), + [anon_sym_BSLASHAclp] = ACTIONS(8925), + [anon_sym_BSLASHacf] = ACTIONS(8925), + [anon_sym_BSLASHAcf] = ACTIONS(8925), + [anon_sym_BSLASHacfp] = ACTIONS(8925), + [anon_sym_BSLASHAcfp] = ACTIONS(8925), + [anon_sym_BSLASHac] = ACTIONS(8925), + [anon_sym_BSLASHAc] = ACTIONS(8925), + [anon_sym_BSLASHacp] = ACTIONS(8925), + [anon_sym_BSLASHglsentrylong] = ACTIONS(8925), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(8925), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(8925), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(8925), + [anon_sym_BSLASHglsentryshort] = ACTIONS(8925), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(8925), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(8925), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(8925), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(8925), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(8925), + [anon_sym_BSLASHnewtheorem] = ACTIONS(8928), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(8928), + [anon_sym_BSLASHcolor] = ACTIONS(8931), + [anon_sym_BSLASHcolorbox] = ACTIONS(8931), + [anon_sym_BSLASHtextcolor] = ACTIONS(8931), + [anon_sym_BSLASHpagecolor] = ACTIONS(8931), + [anon_sym_BSLASHdefinecolor] = ACTIONS(8934), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(8937), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(8940), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(8943), + }, + [388] = { + [sym__simple_content] = STATE(401), + [sym_brace_group] = STATE(401), + [sym_mixed_group] = STATE(401), + [sym_text] = STATE(401), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(401), + [sym_inline_formula] = STATE(401), + [sym_begin] = STATE(86), + [sym_environment] = STATE(401), + [sym_caption] = STATE(401), + [sym_citation] = STATE(401), + [sym_package_include] = STATE(401), + [sym_class_include] = STATE(401), + [sym_latex_include] = STATE(401), + [sym_latex_input] = STATE(401), + [sym_biblatex_include] = STATE(401), + [sym_bibtex_include] = STATE(401), + [sym_graphics_include] = STATE(401), + [sym_svg_include] = STATE(401), + [sym_inkscape_include] = STATE(401), + [sym_verbatim_include] = STATE(401), + [sym_import] = STATE(401), + [sym_label_definition] = STATE(401), + [sym_label_reference] = STATE(401), + [sym_equation_label_reference] = STATE(401), + [sym_label_reference_range] = STATE(401), + [sym_label_number] = STATE(401), + [sym_command_definition] = STATE(401), + [sym_math_operator] = STATE(401), + [sym_glossary_entry_definition] = STATE(401), + [sym_glossary_entry_reference] = STATE(401), + [sym_acronym_definition] = STATE(401), + [sym_acronym_reference] = STATE(401), + [sym_theorem_definition] = STATE(401), + [sym_color_reference] = STATE(401), + [sym_color_definition] = STATE(401), + [sym_color_set_definition] = STATE(401), + [sym_pgf_library_import] = STATE(401), + [sym_tikz_library_import] = STATE(401), + [sym_generic_command] = STATE(401), + [aux_sym_enum_item_repeat1] = STATE(401), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(5600), + [aux_sym_section_token1] = ACTIONS(5600), + [aux_sym_subsection_token1] = ACTIONS(5600), + [aux_sym_subsubsection_token1] = ACTIONS(5600), + [aux_sym_paragraph_token1] = ACTIONS(5600), + [aux_sym_subparagraph_token1] = ACTIONS(5600), + [anon_sym_BSLASHitem] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(5598), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(8684), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [389] = { + [sym__simple_content] = STATE(384), + [sym_brace_group] = STATE(384), + [sym_mixed_group] = STATE(384), + [sym_text] = STATE(384), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(384), + [sym_inline_formula] = STATE(384), + [sym_begin] = STATE(86), + [sym_environment] = STATE(384), + [sym_caption] = STATE(384), + [sym_citation] = STATE(384), + [sym_package_include] = STATE(384), + [sym_class_include] = STATE(384), + [sym_latex_include] = STATE(384), + [sym_latex_input] = STATE(384), + [sym_biblatex_include] = STATE(384), + [sym_bibtex_include] = STATE(384), + [sym_graphics_include] = STATE(384), + [sym_svg_include] = STATE(384), + [sym_inkscape_include] = STATE(384), + [sym_verbatim_include] = STATE(384), + [sym_import] = STATE(384), + [sym_label_definition] = STATE(384), + [sym_label_reference] = STATE(384), + [sym_equation_label_reference] = STATE(384), + [sym_label_reference_range] = STATE(384), + [sym_label_number] = STATE(384), + [sym_command_definition] = STATE(384), + [sym_math_operator] = STATE(384), + [sym_glossary_entry_definition] = STATE(384), + [sym_glossary_entry_reference] = STATE(384), + [sym_acronym_definition] = STATE(384), + [sym_acronym_reference] = STATE(384), + [sym_theorem_definition] = STATE(384), + [sym_color_reference] = STATE(384), + [sym_color_definition] = STATE(384), + [sym_color_set_definition] = STATE(384), + [sym_pgf_library_import] = STATE(384), + [sym_tikz_library_import] = STATE(384), + [sym_generic_command] = STATE(384), + [aux_sym_enum_item_repeat1] = STATE(384), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(5606), + [aux_sym_section_token1] = ACTIONS(5606), + [aux_sym_subsection_token1] = ACTIONS(5606), + [aux_sym_subsubsection_token1] = ACTIONS(5606), + [aux_sym_paragraph_token1] = ACTIONS(5606), + [aux_sym_subparagraph_token1] = ACTIONS(5606), + [anon_sym_BSLASHitem] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_RBRACK] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(8946), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [390] = { + [sym__simple_content] = STATE(388), + [sym_brace_group] = STATE(388), + [sym_mixed_group] = STATE(388), + [sym_text] = STATE(388), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(388), + [sym_inline_formula] = STATE(388), + [sym_begin] = STATE(86), + [sym_environment] = STATE(388), + [sym_caption] = STATE(388), + [sym_citation] = STATE(388), + [sym_package_include] = STATE(388), + [sym_class_include] = STATE(388), + [sym_latex_include] = STATE(388), + [sym_latex_input] = STATE(388), + [sym_biblatex_include] = STATE(388), + [sym_bibtex_include] = STATE(388), + [sym_graphics_include] = STATE(388), + [sym_svg_include] = STATE(388), + [sym_inkscape_include] = STATE(388), + [sym_verbatim_include] = STATE(388), + [sym_import] = STATE(388), + [sym_label_definition] = STATE(388), + [sym_label_reference] = STATE(388), + [sym_equation_label_reference] = STATE(388), + [sym_label_reference_range] = STATE(388), + [sym_label_number] = STATE(388), + [sym_command_definition] = STATE(388), + [sym_math_operator] = STATE(388), + [sym_glossary_entry_definition] = STATE(388), + [sym_glossary_entry_reference] = STATE(388), + [sym_acronym_definition] = STATE(388), + [sym_acronym_reference] = STATE(388), + [sym_theorem_definition] = STATE(388), + [sym_color_reference] = STATE(388), + [sym_color_definition] = STATE(388), + [sym_color_set_definition] = STATE(388), + [sym_pgf_library_import] = STATE(388), + [sym_tikz_library_import] = STATE(388), + [sym_generic_command] = STATE(388), + [aux_sym_enum_item_repeat1] = STATE(388), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(2298), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(6034), + [aux_sym_section_token1] = ACTIONS(6034), + [aux_sym_subsection_token1] = ACTIONS(6034), + [aux_sym_subsubsection_token1] = ACTIONS(6034), + [aux_sym_paragraph_token1] = ACTIONS(6034), + [aux_sym_subparagraph_token1] = ACTIONS(6034), + [anon_sym_BSLASHitem] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(8948), + [anon_sym_RBRACK] = ACTIONS(6032), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2318), + [anon_sym_EQ] = ACTIONS(2318), + [sym_word] = ACTIONS(2318), + [sym_param] = ACTIONS(8950), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2322), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2322), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2326), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(2328), + [anon_sym_BSLASHcite] = ACTIONS(2330), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCite] = ACTIONS(2330), + [anon_sym_BSLASHnocite] = ACTIONS(2330), + [anon_sym_BSLASHcitet] = ACTIONS(2330), + [anon_sym_BSLASHcitep] = ACTIONS(2330), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor] = ACTIONS(2330), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2330), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle] = ACTIONS(2330), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteyear] = ACTIONS(2330), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2332), + [anon_sym_BSLASHcitedate] = ACTIONS(2330), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2332), + [anon_sym_BSLASHciteurl] = ACTIONS(2330), + [anon_sym_BSLASHfullcite] = ACTIONS(2330), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2330), + [anon_sym_BSLASHcitealt] = ACTIONS(2330), + [anon_sym_BSLASHcitealp] = ACTIONS(2330), + [anon_sym_BSLASHcitetext] = ACTIONS(2330), + [anon_sym_BSLASHparencite] = ACTIONS(2330), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHParencite] = ACTIONS(2330), + [anon_sym_BSLASHfootcite] = ACTIONS(2330), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2330), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2330), + [anon_sym_BSLASHtextcite] = ACTIONS(2330), + [anon_sym_BSLASHTextcite] = ACTIONS(2330), + [anon_sym_BSLASHsmartcite] = ACTIONS(2330), + [anon_sym_BSLASHSmartcite] = ACTIONS(2330), + [anon_sym_BSLASHsupercite] = ACTIONS(2330), + [anon_sym_BSLASHautocite] = ACTIONS(2330), + [anon_sym_BSLASHAutocite] = ACTIONS(2330), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2332), + [anon_sym_BSLASHvolcite] = ACTIONS(2330), + [anon_sym_BSLASHVolcite] = ACTIONS(2330), + [anon_sym_BSLASHpvolcite] = ACTIONS(2330), + [anon_sym_BSLASHPvolcite] = ACTIONS(2330), + [anon_sym_BSLASHfvolcite] = ACTIONS(2330), + [anon_sym_BSLASHftvolcite] = ACTIONS(2330), + [anon_sym_BSLASHsvolcite] = ACTIONS(2330), + [anon_sym_BSLASHSvolcite] = ACTIONS(2330), + [anon_sym_BSLASHtvolcite] = ACTIONS(2330), + [anon_sym_BSLASHTvolcite] = ACTIONS(2330), + [anon_sym_BSLASHavolcite] = ACTIONS(2330), + [anon_sym_BSLASHAvolcite] = ACTIONS(2330), + [anon_sym_BSLASHnotecite] = ACTIONS(2330), + [anon_sym_BSLASHpnotecite] = ACTIONS(2330), + [anon_sym_BSLASHPnotecite] = ACTIONS(2330), + [anon_sym_BSLASHfnotecite] = ACTIONS(2330), + [anon_sym_BSLASHusepackage] = ACTIONS(2334), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2334), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2336), + [anon_sym_BSLASHinclude] = ACTIONS(2338), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2338), + [anon_sym_BSLASHinput] = ACTIONS(2340), + [anon_sym_BSLASHsubfile] = ACTIONS(2340), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2342), + [anon_sym_BSLASHbibliography] = ACTIONS(2344), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2346), + [anon_sym_BSLASHincludesvg] = ACTIONS(2348), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2350), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2352), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2352), + [anon_sym_BSLASHimport] = ACTIONS(2354), + [anon_sym_BSLASHsubimport] = ACTIONS(2354), + [anon_sym_BSLASHinputfrom] = ACTIONS(2354), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2354), + [anon_sym_BSLASHincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2354), + [anon_sym_BSLASHlabel] = ACTIONS(2356), + [anon_sym_BSLASHref] = ACTIONS(2358), + [anon_sym_BSLASHvref] = ACTIONS(2358), + [anon_sym_BSLASHVref] = ACTIONS(2358), + [anon_sym_BSLASHautoref] = ACTIONS(2358), + [anon_sym_BSLASHpageref] = ACTIONS(2358), + [anon_sym_BSLASHcref] = ACTIONS(2358), + [anon_sym_BSLASHCref] = ACTIONS(2358), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2360), + [anon_sym_BSLASHnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnameCref] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2358), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2358), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2358), + [anon_sym_BSLASHlabelcref] = ACTIONS(2358), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2358), + [anon_sym_BSLASHeqref] = ACTIONS(2362), + [anon_sym_BSLASHcrefrange] = ACTIONS(2364), + [anon_sym_BSLASHCrefrange] = ACTIONS(2364), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2366), + [anon_sym_BSLASHnewlabel] = ACTIONS(2368), + [anon_sym_BSLASHnewcommand] = ACTIONS(2370), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2370), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2374), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2376), + [anon_sym_BSLASHgls] = ACTIONS(2378), + [anon_sym_BSLASHGls] = ACTIONS(2378), + [anon_sym_BSLASHGLS] = ACTIONS(2378), + [anon_sym_BSLASHglspl] = ACTIONS(2378), + [anon_sym_BSLASHGlspl] = ACTIONS(2378), + [anon_sym_BSLASHGLSpl] = ACTIONS(2378), + [anon_sym_BSLASHglsdisp] = ACTIONS(2378), + [anon_sym_BSLASHglslink] = ACTIONS(2378), + [anon_sym_BSLASHglstext] = ACTIONS(2378), + [anon_sym_BSLASHGlstext] = ACTIONS(2378), + [anon_sym_BSLASHGLStext] = ACTIONS(2378), + [anon_sym_BSLASHglsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2378), + [anon_sym_BSLASHglsplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSplural] = ACTIONS(2378), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2378), + [anon_sym_BSLASHglsname] = ACTIONS(2378), + [anon_sym_BSLASHGlsname] = ACTIONS(2378), + [anon_sym_BSLASHGLSname] = ACTIONS(2378), + [anon_sym_BSLASHglssymbol] = ACTIONS(2378), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2378), + [anon_sym_BSLASHglsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2378), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2378), + [anon_sym_BSLASHglsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2378), + [anon_sym_BSLASHglsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2378), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2378), + [anon_sym_BSLASHglsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2378), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2378), + [anon_sym_BSLASHglsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2378), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2378), + [anon_sym_BSLASHnewacronym] = ACTIONS(2380), + [anon_sym_BSLASHacrshort] = ACTIONS(2382), + [anon_sym_BSLASHAcrshort] = ACTIONS(2382), + [anon_sym_BSLASHACRshort] = ACTIONS(2382), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2382), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2382), + [anon_sym_BSLASHacrlong] = ACTIONS(2382), + [anon_sym_BSLASHAcrlong] = ACTIONS(2382), + [anon_sym_BSLASHACRlong] = ACTIONS(2382), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2382), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2382), + [anon_sym_BSLASHacrfull] = ACTIONS(2382), + [anon_sym_BSLASHAcrfull] = ACTIONS(2382), + [anon_sym_BSLASHACRfull] = ACTIONS(2382), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2382), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2382), + [anon_sym_BSLASHacs] = ACTIONS(2382), + [anon_sym_BSLASHAcs] = ACTIONS(2382), + [anon_sym_BSLASHacsp] = ACTIONS(2382), + [anon_sym_BSLASHAcsp] = ACTIONS(2382), + [anon_sym_BSLASHacl] = ACTIONS(2382), + [anon_sym_BSLASHAcl] = ACTIONS(2382), + [anon_sym_BSLASHaclp] = ACTIONS(2382), + [anon_sym_BSLASHAclp] = ACTIONS(2382), + [anon_sym_BSLASHacf] = ACTIONS(2382), + [anon_sym_BSLASHAcf] = ACTIONS(2382), + [anon_sym_BSLASHacfp] = ACTIONS(2382), + [anon_sym_BSLASHAcfp] = ACTIONS(2382), + [anon_sym_BSLASHac] = ACTIONS(2382), + [anon_sym_BSLASHAc] = ACTIONS(2382), + [anon_sym_BSLASHacp] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2382), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2382), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2382), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2382), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2384), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2384), + [anon_sym_BSLASHcolor] = ACTIONS(2386), + [anon_sym_BSLASHcolorbox] = ACTIONS(2386), + [anon_sym_BSLASHtextcolor] = ACTIONS(2386), + [anon_sym_BSLASHpagecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2388), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2390), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2392), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2394), + }, + [391] = { + [sym__simple_content] = STATE(404), + [sym_brace_group] = STATE(404), + [sym_mixed_group] = STATE(404), + [sym_text] = STATE(404), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(404), + [sym_inline_formula] = STATE(404), + [sym_begin] = STATE(66), + [sym_environment] = STATE(404), + [sym_caption] = STATE(404), + [sym_citation] = STATE(404), + [sym_package_include] = STATE(404), + [sym_class_include] = STATE(404), + [sym_latex_include] = STATE(404), + [sym_latex_input] = STATE(404), + [sym_biblatex_include] = STATE(404), + [sym_bibtex_include] = STATE(404), + [sym_graphics_include] = STATE(404), + [sym_svg_include] = STATE(404), + [sym_inkscape_include] = STATE(404), + [sym_verbatim_include] = STATE(404), + [sym_import] = STATE(404), + [sym_label_definition] = STATE(404), + [sym_label_reference] = STATE(404), + [sym_equation_label_reference] = STATE(404), + [sym_label_reference_range] = STATE(404), + [sym_label_number] = STATE(404), + [sym_command_definition] = STATE(404), + [sym_math_operator] = STATE(404), + [sym_glossary_entry_definition] = STATE(404), + [sym_glossary_entry_reference] = STATE(404), + [sym_acronym_definition] = STATE(404), + [sym_acronym_reference] = STATE(404), + [sym_theorem_definition] = STATE(404), + [sym_color_reference] = STATE(404), + [sym_color_definition] = STATE(404), + [sym_color_set_definition] = STATE(404), + [sym_pgf_library_import] = STATE(404), + [sym_tikz_library_import] = STATE(404), + [sym_generic_command] = STATE(404), + [aux_sym_enum_item_repeat1] = STATE(404), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(6177), + [aux_sym_chapter_token1] = ACTIONS(6177), + [aux_sym_section_token1] = ACTIONS(6177), + [aux_sym_subsection_token1] = ACTIONS(6177), + [aux_sym_subsubsection_token1] = ACTIONS(6177), + [aux_sym_paragraph_token1] = ACTIONS(6177), + [aux_sym_subparagraph_token1] = ACTIONS(6177), + [anon_sym_BSLASHitem] = ACTIONS(6177), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(8554), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6175), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [392] = { + [sym__simple_content] = STATE(392), + [sym_paragraph] = STATE(392), + [sym_subparagraph] = STATE(392), + [sym_enum_item] = STATE(392), + [sym_brace_group] = STATE(392), + [sym_mixed_group] = STATE(392), + [sym_text] = STATE(392), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(392), + [sym_inline_formula] = STATE(392), + [sym_begin] = STATE(112), + [sym_environment] = STATE(392), + [sym_caption] = STATE(392), + [sym_citation] = STATE(392), + [sym_package_include] = STATE(392), + [sym_class_include] = STATE(392), + [sym_latex_include] = STATE(392), + [sym_latex_input] = STATE(392), + [sym_biblatex_include] = STATE(392), + [sym_bibtex_include] = STATE(392), + [sym_graphics_include] = STATE(392), + [sym_svg_include] = STATE(392), + [sym_inkscape_include] = STATE(392), + [sym_verbatim_include] = STATE(392), + [sym_import] = STATE(392), + [sym_label_definition] = STATE(392), + [sym_label_reference] = STATE(392), + [sym_equation_label_reference] = STATE(392), + [sym_label_reference_range] = STATE(392), + [sym_label_number] = STATE(392), + [sym_command_definition] = STATE(392), + [sym_math_operator] = STATE(392), + [sym_glossary_entry_definition] = STATE(392), + [sym_glossary_entry_reference] = STATE(392), + [sym_acronym_definition] = STATE(392), + [sym_acronym_reference] = STATE(392), + [sym_theorem_definition] = STATE(392), + [sym_color_reference] = STATE(392), + [sym_color_definition] = STATE(392), + [sym_color_set_definition] = STATE(392), + [sym_pgf_library_import] = STATE(392), + [sym_tikz_library_import] = STATE(392), + [sym_generic_command] = STATE(392), + [aux_sym_subsubsection_repeat1] = STATE(392), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(8952), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(3325), + [aux_sym_paragraph_token1] = ACTIONS(8955), + [aux_sym_subparagraph_token1] = ACTIONS(8958), + [anon_sym_BSLASHitem] = ACTIONS(8961), + [anon_sym_LBRACK] = ACTIONS(8964), + [anon_sym_RBRACK] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(8967), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(8964), + [anon_sym_COMMA] = ACTIONS(8970), + [anon_sym_EQ] = ACTIONS(8970), + [sym_word] = ACTIONS(8970), + [sym_param] = ACTIONS(8973), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(8976), + [anon_sym_BSLASH_LBRACK] = ACTIONS(8976), + [anon_sym_DOLLAR] = ACTIONS(8979), + [anon_sym_BSLASH_LPAREN] = ACTIONS(8982), + [anon_sym_BSLASHbegin] = ACTIONS(3357), + [anon_sym_BSLASHcaption] = ACTIONS(8985), + [anon_sym_BSLASHcite] = ACTIONS(8988), + [anon_sym_BSLASHcite_STAR] = ACTIONS(8991), + [anon_sym_BSLASHCite] = ACTIONS(8988), + [anon_sym_BSLASHnocite] = ACTIONS(8988), + [anon_sym_BSLASHcitet] = ACTIONS(8988), + [anon_sym_BSLASHcitep] = ACTIONS(8988), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(8991), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(8991), + [anon_sym_BSLASHciteauthor] = ACTIONS(8988), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(8991), + [anon_sym_BSLASHCiteauthor] = ACTIONS(8988), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(8991), + [anon_sym_BSLASHcitetitle] = ACTIONS(8988), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(8991), + [anon_sym_BSLASHciteyear] = ACTIONS(8988), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(8991), + [anon_sym_BSLASHcitedate] = ACTIONS(8988), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(8991), + [anon_sym_BSLASHciteurl] = ACTIONS(8988), + [anon_sym_BSLASHfullcite] = ACTIONS(8988), + [anon_sym_BSLASHciteyearpar] = ACTIONS(8988), + [anon_sym_BSLASHcitealt] = ACTIONS(8988), + [anon_sym_BSLASHcitealp] = ACTIONS(8988), + [anon_sym_BSLASHcitetext] = ACTIONS(8988), + [anon_sym_BSLASHparencite] = ACTIONS(8988), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(8991), + [anon_sym_BSLASHParencite] = ACTIONS(8988), + [anon_sym_BSLASHfootcite] = ACTIONS(8988), + [anon_sym_BSLASHfootfullcite] = ACTIONS(8988), + [anon_sym_BSLASHfootcitetext] = ACTIONS(8988), + [anon_sym_BSLASHtextcite] = ACTIONS(8988), + [anon_sym_BSLASHTextcite] = ACTIONS(8988), + [anon_sym_BSLASHsmartcite] = ACTIONS(8988), + [anon_sym_BSLASHSmartcite] = ACTIONS(8988), + [anon_sym_BSLASHsupercite] = ACTIONS(8988), + [anon_sym_BSLASHautocite] = ACTIONS(8988), + [anon_sym_BSLASHAutocite] = ACTIONS(8988), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(8991), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(8991), + [anon_sym_BSLASHvolcite] = ACTIONS(8988), + [anon_sym_BSLASHVolcite] = ACTIONS(8988), + [anon_sym_BSLASHpvolcite] = ACTIONS(8988), + [anon_sym_BSLASHPvolcite] = ACTIONS(8988), + [anon_sym_BSLASHfvolcite] = ACTIONS(8988), + [anon_sym_BSLASHftvolcite] = ACTIONS(8988), + [anon_sym_BSLASHsvolcite] = ACTIONS(8988), + [anon_sym_BSLASHSvolcite] = ACTIONS(8988), + [anon_sym_BSLASHtvolcite] = ACTIONS(8988), + [anon_sym_BSLASHTvolcite] = ACTIONS(8988), + [anon_sym_BSLASHavolcite] = ACTIONS(8988), + [anon_sym_BSLASHAvolcite] = ACTIONS(8988), + [anon_sym_BSLASHnotecite] = ACTIONS(8988), + [anon_sym_BSLASHpnotecite] = ACTIONS(8988), + [anon_sym_BSLASHPnotecite] = ACTIONS(8988), + [anon_sym_BSLASHfnotecite] = ACTIONS(8988), + [anon_sym_BSLASHusepackage] = ACTIONS(8994), + [anon_sym_BSLASHRequirePackage] = ACTIONS(8994), + [anon_sym_BSLASHdocumentclass] = ACTIONS(8997), + [anon_sym_BSLASHinclude] = ACTIONS(9000), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9000), + [anon_sym_BSLASHinput] = ACTIONS(9003), + [anon_sym_BSLASHsubfile] = ACTIONS(9003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9006), + [anon_sym_BSLASHbibliography] = ACTIONS(9009), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9012), + [anon_sym_BSLASHincludesvg] = ACTIONS(9015), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9018), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9021), + [anon_sym_BSLASHimport] = ACTIONS(9024), + [anon_sym_BSLASHsubimport] = ACTIONS(9024), + [anon_sym_BSLASHinputfrom] = ACTIONS(9024), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9024), + [anon_sym_BSLASHincludefrom] = ACTIONS(9024), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9024), + [anon_sym_BSLASHlabel] = ACTIONS(9027), + [anon_sym_BSLASHref] = ACTIONS(9030), + [anon_sym_BSLASHvref] = ACTIONS(9030), + [anon_sym_BSLASHVref] = ACTIONS(9030), + [anon_sym_BSLASHautoref] = ACTIONS(9030), + [anon_sym_BSLASHpageref] = ACTIONS(9030), + [anon_sym_BSLASHcref] = ACTIONS(9030), + [anon_sym_BSLASHCref] = ACTIONS(9030), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9033), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9033), + [anon_sym_BSLASHnamecref] = ACTIONS(9030), + [anon_sym_BSLASHnameCref] = ACTIONS(9030), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9030), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9030), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9030), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9030), + [anon_sym_BSLASHlabelcref] = ACTIONS(9030), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9030), + [anon_sym_BSLASHeqref] = ACTIONS(9036), + [anon_sym_BSLASHcrefrange] = ACTIONS(9039), + [anon_sym_BSLASHCrefrange] = ACTIONS(9039), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9042), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9042), + [anon_sym_BSLASHnewlabel] = ACTIONS(9045), + [anon_sym_BSLASHnewcommand] = ACTIONS(9048), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9048), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9048), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9051), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9054), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9057), + [anon_sym_BSLASHgls] = ACTIONS(9060), + [anon_sym_BSLASHGls] = ACTIONS(9060), + [anon_sym_BSLASHGLS] = ACTIONS(9060), + [anon_sym_BSLASHglspl] = ACTIONS(9060), + [anon_sym_BSLASHGlspl] = ACTIONS(9060), + [anon_sym_BSLASHGLSpl] = ACTIONS(9060), + [anon_sym_BSLASHglsdisp] = ACTIONS(9060), + [anon_sym_BSLASHglslink] = ACTIONS(9060), + [anon_sym_BSLASHglstext] = ACTIONS(9060), + [anon_sym_BSLASHGlstext] = ACTIONS(9060), + [anon_sym_BSLASHGLStext] = ACTIONS(9060), + [anon_sym_BSLASHglsfirst] = ACTIONS(9060), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9060), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9060), + [anon_sym_BSLASHglsplural] = ACTIONS(9060), + [anon_sym_BSLASHGlsplural] = ACTIONS(9060), + [anon_sym_BSLASHGLSplural] = ACTIONS(9060), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9060), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9060), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9060), + [anon_sym_BSLASHglsname] = ACTIONS(9060), + [anon_sym_BSLASHGlsname] = ACTIONS(9060), + [anon_sym_BSLASHGLSname] = ACTIONS(9060), + [anon_sym_BSLASHglssymbol] = ACTIONS(9060), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9060), + [anon_sym_BSLASHglsdesc] = ACTIONS(9060), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9060), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9060), + [anon_sym_BSLASHglsuseri] = ACTIONS(9060), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9060), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9060), + [anon_sym_BSLASHglsuserii] = ACTIONS(9060), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9060), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9060), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9060), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9060), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9060), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9060), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9060), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9060), + [anon_sym_BSLASHglsuserv] = ACTIONS(9060), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9060), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9060), + [anon_sym_BSLASHglsuservi] = ACTIONS(9060), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9060), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9060), + [anon_sym_BSLASHnewacronym] = ACTIONS(9063), + [anon_sym_BSLASHacrshort] = ACTIONS(9066), + [anon_sym_BSLASHAcrshort] = ACTIONS(9066), + [anon_sym_BSLASHACRshort] = ACTIONS(9066), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9066), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9066), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9066), + [anon_sym_BSLASHacrlong] = ACTIONS(9066), + [anon_sym_BSLASHAcrlong] = ACTIONS(9066), + [anon_sym_BSLASHACRlong] = ACTIONS(9066), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9066), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9066), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9066), + [anon_sym_BSLASHacrfull] = ACTIONS(9066), + [anon_sym_BSLASHAcrfull] = ACTIONS(9066), + [anon_sym_BSLASHACRfull] = ACTIONS(9066), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9066), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9066), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9066), + [anon_sym_BSLASHacs] = ACTIONS(9066), + [anon_sym_BSLASHAcs] = ACTIONS(9066), + [anon_sym_BSLASHacsp] = ACTIONS(9066), + [anon_sym_BSLASHAcsp] = ACTIONS(9066), + [anon_sym_BSLASHacl] = ACTIONS(9066), + [anon_sym_BSLASHAcl] = ACTIONS(9066), + [anon_sym_BSLASHaclp] = ACTIONS(9066), + [anon_sym_BSLASHAclp] = ACTIONS(9066), + [anon_sym_BSLASHacf] = ACTIONS(9066), + [anon_sym_BSLASHAcf] = ACTIONS(9066), + [anon_sym_BSLASHacfp] = ACTIONS(9066), + [anon_sym_BSLASHAcfp] = ACTIONS(9066), + [anon_sym_BSLASHac] = ACTIONS(9066), + [anon_sym_BSLASHAc] = ACTIONS(9066), + [anon_sym_BSLASHacp] = ACTIONS(9066), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9066), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9066), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9066), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9066), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9066), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9066), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9066), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9066), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9066), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9066), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9069), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9069), + [anon_sym_BSLASHcolor] = ACTIONS(9072), + [anon_sym_BSLASHcolorbox] = ACTIONS(9072), + [anon_sym_BSLASHtextcolor] = ACTIONS(9072), + [anon_sym_BSLASHpagecolor] = ACTIONS(9072), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9075), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9078), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9084), + }, + [393] = { + [sym__simple_content] = STATE(387), + [sym_subparagraph] = STATE(387), + [sym_enum_item] = STATE(387), + [sym_brace_group] = STATE(387), + [sym_mixed_group] = STATE(387), + [sym_text] = STATE(387), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(387), + [sym_inline_formula] = STATE(387), + [sym_begin] = STATE(105), + [sym_environment] = STATE(387), + [sym_caption] = STATE(387), + [sym_citation] = STATE(387), + [sym_package_include] = STATE(387), + [sym_class_include] = STATE(387), + [sym_latex_include] = STATE(387), + [sym_latex_input] = STATE(387), + [sym_biblatex_include] = STATE(387), + [sym_bibtex_include] = STATE(387), + [sym_graphics_include] = STATE(387), + [sym_svg_include] = STATE(387), + [sym_inkscape_include] = STATE(387), + [sym_verbatim_include] = STATE(387), + [sym_import] = STATE(387), + [sym_label_definition] = STATE(387), + [sym_label_reference] = STATE(387), + [sym_equation_label_reference] = STATE(387), + [sym_label_reference_range] = STATE(387), + [sym_label_number] = STATE(387), + [sym_command_definition] = STATE(387), + [sym_math_operator] = STATE(387), + [sym_glossary_entry_definition] = STATE(387), + [sym_glossary_entry_reference] = STATE(387), + [sym_acronym_definition] = STATE(387), + [sym_acronym_reference] = STATE(387), + [sym_theorem_definition] = STATE(387), + [sym_color_reference] = STATE(387), + [sym_color_definition] = STATE(387), + [sym_color_set_definition] = STATE(387), + [sym_pgf_library_import] = STATE(387), + [sym_tikz_library_import] = STATE(387), + [sym_generic_command] = STATE(387), + [aux_sym_paragraph_repeat1] = STATE(387), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(4156), + [aux_sym_subsubsection_token1] = ACTIONS(4156), + [aux_sym_paragraph_token1] = ACTIONS(4156), + [aux_sym_subparagraph_token1] = ACTIONS(6322), + [anon_sym_BSLASHitem] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(9087), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [394] = { + [sym__simple_content] = STATE(393), + [sym_subparagraph] = STATE(393), + [sym_enum_item] = STATE(393), + [sym_brace_group] = STATE(393), + [sym_mixed_group] = STATE(393), + [sym_text] = STATE(393), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(393), + [sym_inline_formula] = STATE(393), + [sym_begin] = STATE(105), + [sym_environment] = STATE(393), + [sym_caption] = STATE(393), + [sym_citation] = STATE(393), + [sym_package_include] = STATE(393), + [sym_class_include] = STATE(393), + [sym_latex_include] = STATE(393), + [sym_latex_input] = STATE(393), + [sym_biblatex_include] = STATE(393), + [sym_bibtex_include] = STATE(393), + [sym_graphics_include] = STATE(393), + [sym_svg_include] = STATE(393), + [sym_inkscape_include] = STATE(393), + [sym_verbatim_include] = STATE(393), + [sym_import] = STATE(393), + [sym_label_definition] = STATE(393), + [sym_label_reference] = STATE(393), + [sym_equation_label_reference] = STATE(393), + [sym_label_reference_range] = STATE(393), + [sym_label_number] = STATE(393), + [sym_command_definition] = STATE(393), + [sym_math_operator] = STATE(393), + [sym_glossary_entry_definition] = STATE(393), + [sym_glossary_entry_reference] = STATE(393), + [sym_acronym_definition] = STATE(393), + [sym_acronym_reference] = STATE(393), + [sym_theorem_definition] = STATE(393), + [sym_color_reference] = STATE(393), + [sym_color_definition] = STATE(393), + [sym_color_set_definition] = STATE(393), + [sym_pgf_library_import] = STATE(393), + [sym_tikz_library_import] = STATE(393), + [sym_generic_command] = STATE(393), + [aux_sym_paragraph_repeat1] = STATE(393), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(4054), + [aux_sym_subsubsection_token1] = ACTIONS(4054), + [aux_sym_paragraph_token1] = ACTIONS(4054), + [aux_sym_subparagraph_token1] = ACTIONS(6322), + [anon_sym_BSLASHitem] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(4052), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(9089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [395] = { + [sym__simple_content] = STATE(383), + [sym_paragraph] = STATE(383), + [sym_subparagraph] = STATE(383), + [sym_enum_item] = STATE(383), + [sym_brace_group] = STATE(383), + [sym_mixed_group] = STATE(383), + [sym_text] = STATE(383), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(383), + [sym_inline_formula] = STATE(383), + [sym_begin] = STATE(112), + [sym_environment] = STATE(383), + [sym_caption] = STATE(383), + [sym_citation] = STATE(383), + [sym_package_include] = STATE(383), + [sym_class_include] = STATE(383), + [sym_latex_include] = STATE(383), + [sym_latex_input] = STATE(383), + [sym_biblatex_include] = STATE(383), + [sym_bibtex_include] = STATE(383), + [sym_graphics_include] = STATE(383), + [sym_svg_include] = STATE(383), + [sym_inkscape_include] = STATE(383), + [sym_verbatim_include] = STATE(383), + [sym_import] = STATE(383), + [sym_label_definition] = STATE(383), + [sym_label_reference] = STATE(383), + [sym_equation_label_reference] = STATE(383), + [sym_label_reference_range] = STATE(383), + [sym_label_number] = STATE(383), + [sym_command_definition] = STATE(383), + [sym_math_operator] = STATE(383), + [sym_glossary_entry_definition] = STATE(383), + [sym_glossary_entry_reference] = STATE(383), + [sym_acronym_definition] = STATE(383), + [sym_acronym_reference] = STATE(383), + [sym_theorem_definition] = STATE(383), + [sym_color_reference] = STATE(383), + [sym_color_definition] = STATE(383), + [sym_color_set_definition] = STATE(383), + [sym_pgf_library_import] = STATE(383), + [sym_tikz_library_import] = STATE(383), + [sym_generic_command] = STATE(383), + [aux_sym_subsubsection_repeat1] = STATE(383), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(7652), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(3614), + [aux_sym_paragraph_token1] = ACTIONS(7656), + [aux_sym_subparagraph_token1] = ACTIONS(7658), + [anon_sym_BSLASHitem] = ACTIONS(7660), + [anon_sym_LBRACK] = ACTIONS(7662), + [anon_sym_RBRACK] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(7662), + [anon_sym_COMMA] = ACTIONS(7666), + [anon_sym_EQ] = ACTIONS(7666), + [sym_word] = ACTIONS(7666), + [sym_param] = ACTIONS(9091), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7670), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7670), + [anon_sym_DOLLAR] = ACTIONS(7672), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7674), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7676), + [anon_sym_BSLASHcite] = ACTIONS(7678), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCite] = ACTIONS(7678), + [anon_sym_BSLASHnocite] = ACTIONS(7678), + [anon_sym_BSLASHcitet] = ACTIONS(7678), + [anon_sym_BSLASHcitep] = ACTIONS(7678), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteauthor] = ACTIONS(7678), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7678), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitetitle] = ACTIONS(7678), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteyear] = ACTIONS(7678), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitedate] = ACTIONS(7678), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteurl] = ACTIONS(7678), + [anon_sym_BSLASHfullcite] = ACTIONS(7678), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7678), + [anon_sym_BSLASHcitealt] = ACTIONS(7678), + [anon_sym_BSLASHcitealp] = ACTIONS(7678), + [anon_sym_BSLASHcitetext] = ACTIONS(7678), + [anon_sym_BSLASHparencite] = ACTIONS(7678), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHParencite] = ACTIONS(7678), + [anon_sym_BSLASHfootcite] = ACTIONS(7678), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7678), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7678), + [anon_sym_BSLASHtextcite] = ACTIONS(7678), + [anon_sym_BSLASHTextcite] = ACTIONS(7678), + [anon_sym_BSLASHsmartcite] = ACTIONS(7678), + [anon_sym_BSLASHSmartcite] = ACTIONS(7678), + [anon_sym_BSLASHsupercite] = ACTIONS(7678), + [anon_sym_BSLASHautocite] = ACTIONS(7678), + [anon_sym_BSLASHAutocite] = ACTIONS(7678), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHvolcite] = ACTIONS(7678), + [anon_sym_BSLASHVolcite] = ACTIONS(7678), + [anon_sym_BSLASHpvolcite] = ACTIONS(7678), + [anon_sym_BSLASHPvolcite] = ACTIONS(7678), + [anon_sym_BSLASHfvolcite] = ACTIONS(7678), + [anon_sym_BSLASHftvolcite] = ACTIONS(7678), + [anon_sym_BSLASHsvolcite] = ACTIONS(7678), + [anon_sym_BSLASHSvolcite] = ACTIONS(7678), + [anon_sym_BSLASHtvolcite] = ACTIONS(7678), + [anon_sym_BSLASHTvolcite] = ACTIONS(7678), + [anon_sym_BSLASHavolcite] = ACTIONS(7678), + [anon_sym_BSLASHAvolcite] = ACTIONS(7678), + [anon_sym_BSLASHnotecite] = ACTIONS(7678), + [anon_sym_BSLASHpnotecite] = ACTIONS(7678), + [anon_sym_BSLASHPnotecite] = ACTIONS(7678), + [anon_sym_BSLASHfnotecite] = ACTIONS(7678), + [anon_sym_BSLASHusepackage] = ACTIONS(7682), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7684), + [anon_sym_BSLASHinclude] = ACTIONS(7686), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7686), + [anon_sym_BSLASHinput] = ACTIONS(7688), + [anon_sym_BSLASHsubfile] = ACTIONS(7688), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7690), + [anon_sym_BSLASHbibliography] = ACTIONS(7692), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7694), + [anon_sym_BSLASHincludesvg] = ACTIONS(7696), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7698), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7700), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7700), + [anon_sym_BSLASHimport] = ACTIONS(7702), + [anon_sym_BSLASHsubimport] = ACTIONS(7702), + [anon_sym_BSLASHinputfrom] = ACTIONS(7702), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7702), + [anon_sym_BSLASHincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHlabel] = ACTIONS(7704), + [anon_sym_BSLASHref] = ACTIONS(7706), + [anon_sym_BSLASHvref] = ACTIONS(7706), + [anon_sym_BSLASHVref] = ACTIONS(7706), + [anon_sym_BSLASHautoref] = ACTIONS(7706), + [anon_sym_BSLASHpageref] = ACTIONS(7706), + [anon_sym_BSLASHcref] = ACTIONS(7706), + [anon_sym_BSLASHCref] = ACTIONS(7706), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnameCref] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHlabelcref] = ACTIONS(7706), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7706), + [anon_sym_BSLASHeqref] = ACTIONS(7710), + [anon_sym_BSLASHcrefrange] = ACTIONS(7712), + [anon_sym_BSLASHCrefrange] = ACTIONS(7712), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHnewlabel] = ACTIONS(7716), + [anon_sym_BSLASHnewcommand] = ACTIONS(7718), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7720), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7722), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7724), + [anon_sym_BSLASHgls] = ACTIONS(7726), + [anon_sym_BSLASHGls] = ACTIONS(7726), + [anon_sym_BSLASHGLS] = ACTIONS(7726), + [anon_sym_BSLASHglspl] = ACTIONS(7726), + [anon_sym_BSLASHGlspl] = ACTIONS(7726), + [anon_sym_BSLASHGLSpl] = ACTIONS(7726), + [anon_sym_BSLASHglsdisp] = ACTIONS(7726), + [anon_sym_BSLASHglslink] = ACTIONS(7726), + [anon_sym_BSLASHglstext] = ACTIONS(7726), + [anon_sym_BSLASHGlstext] = ACTIONS(7726), + [anon_sym_BSLASHGLStext] = ACTIONS(7726), + [anon_sym_BSLASHglsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7726), + [anon_sym_BSLASHglsplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSplural] = ACTIONS(7726), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHglsname] = ACTIONS(7726), + [anon_sym_BSLASHGlsname] = ACTIONS(7726), + [anon_sym_BSLASHGLSname] = ACTIONS(7726), + [anon_sym_BSLASHglssymbol] = ACTIONS(7726), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7726), + [anon_sym_BSLASHglsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7726), + [anon_sym_BSLASHglsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7726), + [anon_sym_BSLASHglsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7726), + [anon_sym_BSLASHglsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7726), + [anon_sym_BSLASHglsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7726), + [anon_sym_BSLASHnewacronym] = ACTIONS(7728), + [anon_sym_BSLASHacrshort] = ACTIONS(7730), + [anon_sym_BSLASHAcrshort] = ACTIONS(7730), + [anon_sym_BSLASHACRshort] = ACTIONS(7730), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7730), + [anon_sym_BSLASHacrlong] = ACTIONS(7730), + [anon_sym_BSLASHAcrlong] = ACTIONS(7730), + [anon_sym_BSLASHACRlong] = ACTIONS(7730), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7730), + [anon_sym_BSLASHacrfull] = ACTIONS(7730), + [anon_sym_BSLASHAcrfull] = ACTIONS(7730), + [anon_sym_BSLASHACRfull] = ACTIONS(7730), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7730), + [anon_sym_BSLASHacs] = ACTIONS(7730), + [anon_sym_BSLASHAcs] = ACTIONS(7730), + [anon_sym_BSLASHacsp] = ACTIONS(7730), + [anon_sym_BSLASHAcsp] = ACTIONS(7730), + [anon_sym_BSLASHacl] = ACTIONS(7730), + [anon_sym_BSLASHAcl] = ACTIONS(7730), + [anon_sym_BSLASHaclp] = ACTIONS(7730), + [anon_sym_BSLASHAclp] = ACTIONS(7730), + [anon_sym_BSLASHacf] = ACTIONS(7730), + [anon_sym_BSLASHAcf] = ACTIONS(7730), + [anon_sym_BSLASHacfp] = ACTIONS(7730), + [anon_sym_BSLASHAcfp] = ACTIONS(7730), + [anon_sym_BSLASHac] = ACTIONS(7730), + [anon_sym_BSLASHAc] = ACTIONS(7730), + [anon_sym_BSLASHacp] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7732), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7732), + [anon_sym_BSLASHcolor] = ACTIONS(7734), + [anon_sym_BSLASHcolorbox] = ACTIONS(7734), + [anon_sym_BSLASHtextcolor] = ACTIONS(7734), + [anon_sym_BSLASHpagecolor] = ACTIONS(7734), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7736), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7738), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7740), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7742), + }, + [396] = { + [sym__simple_content] = STATE(386), + [sym_brace_group] = STATE(386), + [sym_mixed_group] = STATE(386), + [sym_text] = STATE(386), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(386), + [sym_inline_formula] = STATE(386), + [sym_begin] = STATE(59), + [sym_environment] = STATE(386), + [sym_caption] = STATE(386), + [sym_citation] = STATE(386), + [sym_package_include] = STATE(386), + [sym_class_include] = STATE(386), + [sym_latex_include] = STATE(386), + [sym_latex_input] = STATE(386), + [sym_biblatex_include] = STATE(386), + [sym_bibtex_include] = STATE(386), + [sym_graphics_include] = STATE(386), + [sym_svg_include] = STATE(386), + [sym_inkscape_include] = STATE(386), + [sym_verbatim_include] = STATE(386), + [sym_import] = STATE(386), + [sym_label_definition] = STATE(386), + [sym_label_reference] = STATE(386), + [sym_equation_label_reference] = STATE(386), + [sym_label_reference_range] = STATE(386), + [sym_label_number] = STATE(386), + [sym_command_definition] = STATE(386), + [sym_math_operator] = STATE(386), + [sym_glossary_entry_definition] = STATE(386), + [sym_glossary_entry_reference] = STATE(386), + [sym_acronym_definition] = STATE(386), + [sym_acronym_reference] = STATE(386), + [sym_theorem_definition] = STATE(386), + [sym_color_reference] = STATE(386), + [sym_color_definition] = STATE(386), + [sym_color_set_definition] = STATE(386), + [sym_pgf_library_import] = STATE(386), + [sym_tikz_library_import] = STATE(386), + [sym_generic_command] = STATE(386), + [aux_sym_enum_item_repeat1] = STATE(386), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(6177), + [aux_sym_chapter_token1] = ACTIONS(6177), + [aux_sym_section_token1] = ACTIONS(6177), + [aux_sym_subsection_token1] = ACTIONS(6177), + [aux_sym_subsubsection_token1] = ACTIONS(6177), + [aux_sym_paragraph_token1] = ACTIONS(6177), + [aux_sym_subparagraph_token1] = ACTIONS(6177), + [anon_sym_BSLASHitem] = ACTIONS(6177), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(9093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6175), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [397] = { + [sym__simple_content] = STATE(405), + [sym_brace_group] = STATE(405), + [sym_mixed_group] = STATE(405), + [sym_text] = STATE(405), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(405), + [sym_inline_formula] = STATE(405), + [sym_begin] = STATE(59), + [sym_environment] = STATE(405), + [sym_caption] = STATE(405), + [sym_citation] = STATE(405), + [sym_package_include] = STATE(405), + [sym_class_include] = STATE(405), + [sym_latex_include] = STATE(405), + [sym_latex_input] = STATE(405), + [sym_biblatex_include] = STATE(405), + [sym_bibtex_include] = STATE(405), + [sym_graphics_include] = STATE(405), + [sym_svg_include] = STATE(405), + [sym_inkscape_include] = STATE(405), + [sym_verbatim_include] = STATE(405), + [sym_import] = STATE(405), + [sym_label_definition] = STATE(405), + [sym_label_reference] = STATE(405), + [sym_equation_label_reference] = STATE(405), + [sym_label_reference_range] = STATE(405), + [sym_label_number] = STATE(405), + [sym_command_definition] = STATE(405), + [sym_math_operator] = STATE(405), + [sym_glossary_entry_definition] = STATE(405), + [sym_glossary_entry_reference] = STATE(405), + [sym_acronym_definition] = STATE(405), + [sym_acronym_reference] = STATE(405), + [sym_theorem_definition] = STATE(405), + [sym_color_reference] = STATE(405), + [sym_color_definition] = STATE(405), + [sym_color_set_definition] = STATE(405), + [sym_pgf_library_import] = STATE(405), + [sym_tikz_library_import] = STATE(405), + [sym_generic_command] = STATE(405), + [aux_sym_enum_item_repeat1] = STATE(405), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(6034), + [aux_sym_chapter_token1] = ACTIONS(6034), + [aux_sym_section_token1] = ACTIONS(6034), + [aux_sym_subsection_token1] = ACTIONS(6034), + [aux_sym_subsubsection_token1] = ACTIONS(6034), + [aux_sym_paragraph_token1] = ACTIONS(6034), + [aux_sym_subparagraph_token1] = ACTIONS(6034), + [anon_sym_BSLASHitem] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(9095), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(9097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(6032), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [398] = { + [sym__simple_content] = STATE(403), + [sym_brace_group] = STATE(403), + [sym_mixed_group] = STATE(403), + [sym_text] = STATE(403), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(403), + [sym_inline_formula] = STATE(403), + [sym_begin] = STATE(73), + [sym_environment] = STATE(403), + [sym_caption] = STATE(403), + [sym_citation] = STATE(403), + [sym_package_include] = STATE(403), + [sym_class_include] = STATE(403), + [sym_latex_include] = STATE(403), + [sym_latex_input] = STATE(403), + [sym_biblatex_include] = STATE(403), + [sym_bibtex_include] = STATE(403), + [sym_graphics_include] = STATE(403), + [sym_svg_include] = STATE(403), + [sym_inkscape_include] = STATE(403), + [sym_verbatim_include] = STATE(403), + [sym_import] = STATE(403), + [sym_label_definition] = STATE(403), + [sym_label_reference] = STATE(403), + [sym_equation_label_reference] = STATE(403), + [sym_label_reference_range] = STATE(403), + [sym_label_number] = STATE(403), + [sym_command_definition] = STATE(403), + [sym_math_operator] = STATE(403), + [sym_glossary_entry_definition] = STATE(403), + [sym_glossary_entry_reference] = STATE(403), + [sym_acronym_definition] = STATE(403), + [sym_acronym_reference] = STATE(403), + [sym_theorem_definition] = STATE(403), + [sym_color_reference] = STATE(403), + [sym_color_definition] = STATE(403), + [sym_color_set_definition] = STATE(403), + [sym_pgf_library_import] = STATE(403), + [sym_tikz_library_import] = STATE(403), + [sym_generic_command] = STATE(403), + [aux_sym_enum_item_repeat1] = STATE(403), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5606), + [aux_sym_chapter_token1] = ACTIONS(5606), + [aux_sym_section_token1] = ACTIONS(5606), + [aux_sym_subsection_token1] = ACTIONS(5606), + [aux_sym_subsubsection_token1] = ACTIONS(5606), + [aux_sym_paragraph_token1] = ACTIONS(5606), + [aux_sym_subparagraph_token1] = ACTIONS(5606), + [anon_sym_BSLASHitem] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(9099), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(5606), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [399] = { + [sym__simple_content] = STATE(391), + [sym_brace_group] = STATE(391), + [sym_mixed_group] = STATE(391), + [sym_text] = STATE(391), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(391), + [sym_inline_formula] = STATE(391), + [sym_begin] = STATE(66), + [sym_environment] = STATE(391), + [sym_caption] = STATE(391), + [sym_citation] = STATE(391), + [sym_package_include] = STATE(391), + [sym_class_include] = STATE(391), + [sym_latex_include] = STATE(391), + [sym_latex_input] = STATE(391), + [sym_biblatex_include] = STATE(391), + [sym_bibtex_include] = STATE(391), + [sym_graphics_include] = STATE(391), + [sym_svg_include] = STATE(391), + [sym_inkscape_include] = STATE(391), + [sym_verbatim_include] = STATE(391), + [sym_import] = STATE(391), + [sym_label_definition] = STATE(391), + [sym_label_reference] = STATE(391), + [sym_equation_label_reference] = STATE(391), + [sym_label_reference_range] = STATE(391), + [sym_label_number] = STATE(391), + [sym_command_definition] = STATE(391), + [sym_math_operator] = STATE(391), + [sym_glossary_entry_definition] = STATE(391), + [sym_glossary_entry_reference] = STATE(391), + [sym_acronym_definition] = STATE(391), + [sym_acronym_reference] = STATE(391), + [sym_theorem_definition] = STATE(391), + [sym_color_reference] = STATE(391), + [sym_color_definition] = STATE(391), + [sym_color_set_definition] = STATE(391), + [sym_pgf_library_import] = STATE(391), + [sym_tikz_library_import] = STATE(391), + [sym_generic_command] = STATE(391), + [aux_sym_enum_item_repeat1] = STATE(391), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5606), + [aux_sym_chapter_token1] = ACTIONS(5606), + [aux_sym_section_token1] = ACTIONS(5606), + [aux_sym_subsection_token1] = ACTIONS(5606), + [aux_sym_subsubsection_token1] = ACTIONS(5606), + [aux_sym_paragraph_token1] = ACTIONS(5606), + [aux_sym_subparagraph_token1] = ACTIONS(5606), + [anon_sym_BSLASHitem] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(404), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(9101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5604), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [400] = { + [sym__simple_content] = STATE(381), + [sym_brace_group] = STATE(381), + [sym_mixed_group] = STATE(381), + [sym_text] = STATE(381), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(381), + [sym_inline_formula] = STATE(381), + [sym_begin] = STATE(66), + [sym_environment] = STATE(381), + [sym_caption] = STATE(381), + [sym_citation] = STATE(381), + [sym_package_include] = STATE(381), + [sym_class_include] = STATE(381), + [sym_latex_include] = STATE(381), + [sym_latex_input] = STATE(381), + [sym_biblatex_include] = STATE(381), + [sym_bibtex_include] = STATE(381), + [sym_graphics_include] = STATE(381), + [sym_svg_include] = STATE(381), + [sym_inkscape_include] = STATE(381), + [sym_verbatim_include] = STATE(381), + [sym_import] = STATE(381), + [sym_label_definition] = STATE(381), + [sym_label_reference] = STATE(381), + [sym_equation_label_reference] = STATE(381), + [sym_label_reference_range] = STATE(381), + [sym_label_number] = STATE(381), + [sym_command_definition] = STATE(381), + [sym_math_operator] = STATE(381), + [sym_glossary_entry_definition] = STATE(381), + [sym_glossary_entry_reference] = STATE(381), + [sym_acronym_definition] = STATE(381), + [sym_acronym_reference] = STATE(381), + [sym_theorem_definition] = STATE(381), + [sym_color_reference] = STATE(381), + [sym_color_definition] = STATE(381), + [sym_color_set_definition] = STATE(381), + [sym_pgf_library_import] = STATE(381), + [sym_tikz_library_import] = STATE(381), + [sym_generic_command] = STATE(381), + [aux_sym_enum_item_repeat1] = STATE(381), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(386), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(6034), + [aux_sym_chapter_token1] = ACTIONS(6034), + [aux_sym_section_token1] = ACTIONS(6034), + [aux_sym_subsection_token1] = ACTIONS(6034), + [aux_sym_subsubsection_token1] = ACTIONS(6034), + [aux_sym_paragraph_token1] = ACTIONS(6034), + [aux_sym_subparagraph_token1] = ACTIONS(6034), + [anon_sym_BSLASHitem] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(9103), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_COMMA] = ACTIONS(408), + [anon_sym_EQ] = ACTIONS(408), + [sym_word] = ACTIONS(408), + [sym_param] = ACTIONS(9105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(412), + [anon_sym_BSLASH_LBRACK] = ACTIONS(412), + [anon_sym_DOLLAR] = ACTIONS(2843), + [anon_sym_BSLASH_LPAREN] = ACTIONS(416), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6032), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(418), + [anon_sym_BSLASHcite] = ACTIONS(420), + [anon_sym_BSLASHcite_STAR] = ACTIONS(422), + [anon_sym_BSLASHCite] = ACTIONS(420), + [anon_sym_BSLASHnocite] = ACTIONS(420), + [anon_sym_BSLASHcitet] = ACTIONS(420), + [anon_sym_BSLASHcitep] = ACTIONS(420), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteauthor] = ACTIONS(420), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHCiteauthor] = ACTIONS(420), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitetitle] = ACTIONS(420), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteyear] = ACTIONS(420), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(422), + [anon_sym_BSLASHcitedate] = ACTIONS(420), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(422), + [anon_sym_BSLASHciteurl] = ACTIONS(420), + [anon_sym_BSLASHfullcite] = ACTIONS(420), + [anon_sym_BSLASHciteyearpar] = ACTIONS(420), + [anon_sym_BSLASHcitealt] = ACTIONS(420), + [anon_sym_BSLASHcitealp] = ACTIONS(420), + [anon_sym_BSLASHcitetext] = ACTIONS(420), + [anon_sym_BSLASHparencite] = ACTIONS(420), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(422), + [anon_sym_BSLASHParencite] = ACTIONS(420), + [anon_sym_BSLASHfootcite] = ACTIONS(420), + [anon_sym_BSLASHfootfullcite] = ACTIONS(420), + [anon_sym_BSLASHfootcitetext] = ACTIONS(420), + [anon_sym_BSLASHtextcite] = ACTIONS(420), + [anon_sym_BSLASHTextcite] = ACTIONS(420), + [anon_sym_BSLASHsmartcite] = ACTIONS(420), + [anon_sym_BSLASHSmartcite] = ACTIONS(420), + [anon_sym_BSLASHsupercite] = ACTIONS(420), + [anon_sym_BSLASHautocite] = ACTIONS(420), + [anon_sym_BSLASHAutocite] = ACTIONS(420), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(422), + [anon_sym_BSLASHvolcite] = ACTIONS(420), + [anon_sym_BSLASHVolcite] = ACTIONS(420), + [anon_sym_BSLASHpvolcite] = ACTIONS(420), + [anon_sym_BSLASHPvolcite] = ACTIONS(420), + [anon_sym_BSLASHfvolcite] = ACTIONS(420), + [anon_sym_BSLASHftvolcite] = ACTIONS(420), + [anon_sym_BSLASHsvolcite] = ACTIONS(420), + [anon_sym_BSLASHSvolcite] = ACTIONS(420), + [anon_sym_BSLASHtvolcite] = ACTIONS(420), + [anon_sym_BSLASHTvolcite] = ACTIONS(420), + [anon_sym_BSLASHavolcite] = ACTIONS(420), + [anon_sym_BSLASHAvolcite] = ACTIONS(420), + [anon_sym_BSLASHnotecite] = ACTIONS(420), + [anon_sym_BSLASHpnotecite] = ACTIONS(420), + [anon_sym_BSLASHPnotecite] = ACTIONS(420), + [anon_sym_BSLASHfnotecite] = ACTIONS(420), + [anon_sym_BSLASHusepackage] = ACTIONS(424), + [anon_sym_BSLASHRequirePackage] = ACTIONS(424), + [anon_sym_BSLASHdocumentclass] = ACTIONS(426), + [anon_sym_BSLASHinclude] = ACTIONS(428), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(428), + [anon_sym_BSLASHinput] = ACTIONS(430), + [anon_sym_BSLASHsubfile] = ACTIONS(430), + [anon_sym_BSLASHaddbibresource] = ACTIONS(432), + [anon_sym_BSLASHbibliography] = ACTIONS(434), + [anon_sym_BSLASHincludegraphics] = ACTIONS(436), + [anon_sym_BSLASHincludesvg] = ACTIONS(438), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(440), + [anon_sym_BSLASHverbatiminput] = ACTIONS(442), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(442), + [anon_sym_BSLASHimport] = ACTIONS(444), + [anon_sym_BSLASHsubimport] = ACTIONS(444), + [anon_sym_BSLASHinputfrom] = ACTIONS(444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(444), + [anon_sym_BSLASHincludefrom] = ACTIONS(444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(444), + [anon_sym_BSLASHlabel] = ACTIONS(446), + [anon_sym_BSLASHref] = ACTIONS(448), + [anon_sym_BSLASHvref] = ACTIONS(448), + [anon_sym_BSLASHVref] = ACTIONS(448), + [anon_sym_BSLASHautoref] = ACTIONS(448), + [anon_sym_BSLASHpageref] = ACTIONS(448), + [anon_sym_BSLASHcref] = ACTIONS(448), + [anon_sym_BSLASHCref] = ACTIONS(448), + [anon_sym_BSLASHcref_STAR] = ACTIONS(450), + [anon_sym_BSLASHCref_STAR] = ACTIONS(450), + [anon_sym_BSLASHnamecref] = ACTIONS(448), + [anon_sym_BSLASHnameCref] = ACTIONS(448), + [anon_sym_BSLASHlcnamecref] = ACTIONS(448), + [anon_sym_BSLASHnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHnameCrefs] = ACTIONS(448), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(448), + [anon_sym_BSLASHlabelcref] = ACTIONS(448), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(448), + [anon_sym_BSLASHeqref] = ACTIONS(452), + [anon_sym_BSLASHcrefrange] = ACTIONS(454), + [anon_sym_BSLASHCrefrange] = ACTIONS(454), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(456), + [anon_sym_BSLASHnewlabel] = ACTIONS(458), + [anon_sym_BSLASHnewcommand] = ACTIONS(460), + [anon_sym_BSLASHrenewcommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(460), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(464), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(466), + [anon_sym_BSLASHgls] = ACTIONS(468), + [anon_sym_BSLASHGls] = ACTIONS(468), + [anon_sym_BSLASHGLS] = ACTIONS(468), + [anon_sym_BSLASHglspl] = ACTIONS(468), + [anon_sym_BSLASHGlspl] = ACTIONS(468), + [anon_sym_BSLASHGLSpl] = ACTIONS(468), + [anon_sym_BSLASHglsdisp] = ACTIONS(468), + [anon_sym_BSLASHglslink] = ACTIONS(468), + [anon_sym_BSLASHglstext] = ACTIONS(468), + [anon_sym_BSLASHGlstext] = ACTIONS(468), + [anon_sym_BSLASHGLStext] = ACTIONS(468), + [anon_sym_BSLASHglsfirst] = ACTIONS(468), + [anon_sym_BSLASHGlsfirst] = ACTIONS(468), + [anon_sym_BSLASHGLSfirst] = ACTIONS(468), + [anon_sym_BSLASHglsplural] = ACTIONS(468), + [anon_sym_BSLASHGlsplural] = ACTIONS(468), + [anon_sym_BSLASHGLSplural] = ACTIONS(468), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(468), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(468), + [anon_sym_BSLASHglsname] = ACTIONS(468), + [anon_sym_BSLASHGlsname] = ACTIONS(468), + [anon_sym_BSLASHGLSname] = ACTIONS(468), + [anon_sym_BSLASHglssymbol] = ACTIONS(468), + [anon_sym_BSLASHGlssymbol] = ACTIONS(468), + [anon_sym_BSLASHglsdesc] = ACTIONS(468), + [anon_sym_BSLASHGlsdesc] = ACTIONS(468), + [anon_sym_BSLASHGLSdesc] = ACTIONS(468), + [anon_sym_BSLASHglsuseri] = ACTIONS(468), + [anon_sym_BSLASHGlsuseri] = ACTIONS(468), + [anon_sym_BSLASHGLSuseri] = ACTIONS(468), + [anon_sym_BSLASHglsuserii] = ACTIONS(468), + [anon_sym_BSLASHGlsuserii] = ACTIONS(468), + [anon_sym_BSLASHGLSuserii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(468), + [anon_sym_BSLASHglsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(468), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(468), + [anon_sym_BSLASHglsuserv] = ACTIONS(468), + [anon_sym_BSLASHGlsuserv] = ACTIONS(468), + [anon_sym_BSLASHGLSuserv] = ACTIONS(468), + [anon_sym_BSLASHglsuservi] = ACTIONS(468), + [anon_sym_BSLASHGlsuservi] = ACTIONS(468), + [anon_sym_BSLASHGLSuservi] = ACTIONS(468), + [anon_sym_BSLASHnewacronym] = ACTIONS(470), + [anon_sym_BSLASHacrshort] = ACTIONS(472), + [anon_sym_BSLASHAcrshort] = ACTIONS(472), + [anon_sym_BSLASHACRshort] = ACTIONS(472), + [anon_sym_BSLASHacrshortpl] = ACTIONS(472), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(472), + [anon_sym_BSLASHACRshortpl] = ACTIONS(472), + [anon_sym_BSLASHacrlong] = ACTIONS(472), + [anon_sym_BSLASHAcrlong] = ACTIONS(472), + [anon_sym_BSLASHACRlong] = ACTIONS(472), + [anon_sym_BSLASHacrlongpl] = ACTIONS(472), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(472), + [anon_sym_BSLASHACRlongpl] = ACTIONS(472), + [anon_sym_BSLASHacrfull] = ACTIONS(472), + [anon_sym_BSLASHAcrfull] = ACTIONS(472), + [anon_sym_BSLASHACRfull] = ACTIONS(472), + [anon_sym_BSLASHacrfullpl] = ACTIONS(472), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(472), + [anon_sym_BSLASHACRfullpl] = ACTIONS(472), + [anon_sym_BSLASHacs] = ACTIONS(472), + [anon_sym_BSLASHAcs] = ACTIONS(472), + [anon_sym_BSLASHacsp] = ACTIONS(472), + [anon_sym_BSLASHAcsp] = ACTIONS(472), + [anon_sym_BSLASHacl] = ACTIONS(472), + [anon_sym_BSLASHAcl] = ACTIONS(472), + [anon_sym_BSLASHaclp] = ACTIONS(472), + [anon_sym_BSLASHAclp] = ACTIONS(472), + [anon_sym_BSLASHacf] = ACTIONS(472), + [anon_sym_BSLASHAcf] = ACTIONS(472), + [anon_sym_BSLASHacfp] = ACTIONS(472), + [anon_sym_BSLASHAcfp] = ACTIONS(472), + [anon_sym_BSLASHac] = ACTIONS(472), + [anon_sym_BSLASHAc] = ACTIONS(472), + [anon_sym_BSLASHacp] = ACTIONS(472), + [anon_sym_BSLASHglsentrylong] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(472), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryshort] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(472), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(472), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(472), + [anon_sym_BSLASHnewtheorem] = ACTIONS(474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(474), + [anon_sym_BSLASHcolor] = ACTIONS(476), + [anon_sym_BSLASHcolorbox] = ACTIONS(476), + [anon_sym_BSLASHtextcolor] = ACTIONS(476), + [anon_sym_BSLASHpagecolor] = ACTIONS(476), + [anon_sym_BSLASHdefinecolor] = ACTIONS(478), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(480), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(482), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(484), + }, + [401] = { + [sym__simple_content] = STATE(401), + [sym_brace_group] = STATE(401), + [sym_mixed_group] = STATE(401), + [sym_text] = STATE(401), + [sym__text_fragment] = STATE(619), + [sym_displayed_equation] = STATE(401), + [sym_inline_formula] = STATE(401), + [sym_begin] = STATE(86), + [sym_environment] = STATE(401), + [sym_caption] = STATE(401), + [sym_citation] = STATE(401), + [sym_package_include] = STATE(401), + [sym_class_include] = STATE(401), + [sym_latex_include] = STATE(401), + [sym_latex_input] = STATE(401), + [sym_biblatex_include] = STATE(401), + [sym_bibtex_include] = STATE(401), + [sym_graphics_include] = STATE(401), + [sym_svg_include] = STATE(401), + [sym_inkscape_include] = STATE(401), + [sym_verbatim_include] = STATE(401), + [sym_import] = STATE(401), + [sym_label_definition] = STATE(401), + [sym_label_reference] = STATE(401), + [sym_equation_label_reference] = STATE(401), + [sym_label_reference_range] = STATE(401), + [sym_label_number] = STATE(401), + [sym_command_definition] = STATE(401), + [sym_math_operator] = STATE(401), + [sym_glossary_entry_definition] = STATE(401), + [sym_glossary_entry_reference] = STATE(401), + [sym_acronym_definition] = STATE(401), + [sym_acronym_reference] = STATE(401), + [sym_theorem_definition] = STATE(401), + [sym_color_reference] = STATE(401), + [sym_color_definition] = STATE(401), + [sym_color_set_definition] = STATE(401), + [sym_pgf_library_import] = STATE(401), + [sym_tikz_library_import] = STATE(401), + [sym_generic_command] = STATE(401), + [aux_sym_enum_item_repeat1] = STATE(401), + [aux_sym_text_repeat1] = STATE(619), + [sym_generic_command_name] = ACTIONS(9107), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(6045), + [aux_sym_section_token1] = ACTIONS(6045), + [aux_sym_subsection_token1] = ACTIONS(6045), + [aux_sym_subsubsection_token1] = ACTIONS(6045), + [aux_sym_paragraph_token1] = ACTIONS(6045), + [aux_sym_subparagraph_token1] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(9110), + [anon_sym_RBRACK] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(9113), + [anon_sym_RBRACE] = ACTIONS(6040), + [anon_sym_LPAREN] = ACTIONS(9110), + [anon_sym_COMMA] = ACTIONS(9116), + [anon_sym_EQ] = ACTIONS(9116), + [sym_word] = ACTIONS(9116), + [sym_param] = ACTIONS(9119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9122), + [anon_sym_DOLLAR] = ACTIONS(9125), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9128), + [anon_sym_BSLASHbegin] = ACTIONS(6068), + [anon_sym_BSLASHcaption] = ACTIONS(9131), + [anon_sym_BSLASHcite] = ACTIONS(9134), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9137), + [anon_sym_BSLASHCite] = ACTIONS(9134), + [anon_sym_BSLASHnocite] = ACTIONS(9134), + [anon_sym_BSLASHcitet] = ACTIONS(9134), + [anon_sym_BSLASHcitep] = ACTIONS(9134), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9137), + [anon_sym_BSLASHciteauthor] = ACTIONS(9134), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9134), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9137), + [anon_sym_BSLASHcitetitle] = ACTIONS(9134), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9137), + [anon_sym_BSLASHciteyear] = ACTIONS(9134), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9137), + [anon_sym_BSLASHcitedate] = ACTIONS(9134), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9137), + [anon_sym_BSLASHciteurl] = ACTIONS(9134), + [anon_sym_BSLASHfullcite] = ACTIONS(9134), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9134), + [anon_sym_BSLASHcitealt] = ACTIONS(9134), + [anon_sym_BSLASHcitealp] = ACTIONS(9134), + [anon_sym_BSLASHcitetext] = ACTIONS(9134), + [anon_sym_BSLASHparencite] = ACTIONS(9134), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9137), + [anon_sym_BSLASHParencite] = ACTIONS(9134), + [anon_sym_BSLASHfootcite] = ACTIONS(9134), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9134), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9134), + [anon_sym_BSLASHtextcite] = ACTIONS(9134), + [anon_sym_BSLASHTextcite] = ACTIONS(9134), + [anon_sym_BSLASHsmartcite] = ACTIONS(9134), + [anon_sym_BSLASHSmartcite] = ACTIONS(9134), + [anon_sym_BSLASHsupercite] = ACTIONS(9134), + [anon_sym_BSLASHautocite] = ACTIONS(9134), + [anon_sym_BSLASHAutocite] = ACTIONS(9134), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9137), + [anon_sym_BSLASHvolcite] = ACTIONS(9134), + [anon_sym_BSLASHVolcite] = ACTIONS(9134), + [anon_sym_BSLASHpvolcite] = ACTIONS(9134), + [anon_sym_BSLASHPvolcite] = ACTIONS(9134), + [anon_sym_BSLASHfvolcite] = ACTIONS(9134), + [anon_sym_BSLASHftvolcite] = ACTIONS(9134), + [anon_sym_BSLASHsvolcite] = ACTIONS(9134), + [anon_sym_BSLASHSvolcite] = ACTIONS(9134), + [anon_sym_BSLASHtvolcite] = ACTIONS(9134), + [anon_sym_BSLASHTvolcite] = ACTIONS(9134), + [anon_sym_BSLASHavolcite] = ACTIONS(9134), + [anon_sym_BSLASHAvolcite] = ACTIONS(9134), + [anon_sym_BSLASHnotecite] = ACTIONS(9134), + [anon_sym_BSLASHpnotecite] = ACTIONS(9134), + [anon_sym_BSLASHPnotecite] = ACTIONS(9134), + [anon_sym_BSLASHfnotecite] = ACTIONS(9134), + [anon_sym_BSLASHusepackage] = ACTIONS(9140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9143), + [anon_sym_BSLASHinclude] = ACTIONS(9146), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9146), + [anon_sym_BSLASHinput] = ACTIONS(9149), + [anon_sym_BSLASHsubfile] = ACTIONS(9149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9152), + [anon_sym_BSLASHbibliography] = ACTIONS(9155), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9158), + [anon_sym_BSLASHincludesvg] = ACTIONS(9161), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9164), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9167), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9167), + [anon_sym_BSLASHimport] = ACTIONS(9170), + [anon_sym_BSLASHsubimport] = ACTIONS(9170), + [anon_sym_BSLASHinputfrom] = ACTIONS(9170), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9170), + [anon_sym_BSLASHincludefrom] = ACTIONS(9170), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9170), + [anon_sym_BSLASHlabel] = ACTIONS(9173), + [anon_sym_BSLASHref] = ACTIONS(9176), + [anon_sym_BSLASHvref] = ACTIONS(9176), + [anon_sym_BSLASHVref] = ACTIONS(9176), + [anon_sym_BSLASHautoref] = ACTIONS(9176), + [anon_sym_BSLASHpageref] = ACTIONS(9176), + [anon_sym_BSLASHcref] = ACTIONS(9176), + [anon_sym_BSLASHCref] = ACTIONS(9176), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9179), + [anon_sym_BSLASHnamecref] = ACTIONS(9176), + [anon_sym_BSLASHnameCref] = ACTIONS(9176), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9176), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9176), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9176), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9176), + [anon_sym_BSLASHlabelcref] = ACTIONS(9176), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9176), + [anon_sym_BSLASHeqref] = ACTIONS(9182), + [anon_sym_BSLASHcrefrange] = ACTIONS(9185), + [anon_sym_BSLASHCrefrange] = ACTIONS(9185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9188), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9188), + [anon_sym_BSLASHnewlabel] = ACTIONS(9191), + [anon_sym_BSLASHnewcommand] = ACTIONS(9194), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9194), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9194), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9200), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9203), + [anon_sym_BSLASHgls] = ACTIONS(9206), + [anon_sym_BSLASHGls] = ACTIONS(9206), + [anon_sym_BSLASHGLS] = ACTIONS(9206), + [anon_sym_BSLASHglspl] = ACTIONS(9206), + [anon_sym_BSLASHGlspl] = ACTIONS(9206), + [anon_sym_BSLASHGLSpl] = ACTIONS(9206), + [anon_sym_BSLASHglsdisp] = ACTIONS(9206), + [anon_sym_BSLASHglslink] = ACTIONS(9206), + [anon_sym_BSLASHglstext] = ACTIONS(9206), + [anon_sym_BSLASHGlstext] = ACTIONS(9206), + [anon_sym_BSLASHGLStext] = ACTIONS(9206), + [anon_sym_BSLASHglsfirst] = ACTIONS(9206), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9206), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9206), + [anon_sym_BSLASHglsplural] = ACTIONS(9206), + [anon_sym_BSLASHGlsplural] = ACTIONS(9206), + [anon_sym_BSLASHGLSplural] = ACTIONS(9206), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9206), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9206), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9206), + [anon_sym_BSLASHglsname] = ACTIONS(9206), + [anon_sym_BSLASHGlsname] = ACTIONS(9206), + [anon_sym_BSLASHGLSname] = ACTIONS(9206), + [anon_sym_BSLASHglssymbol] = ACTIONS(9206), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9206), + [anon_sym_BSLASHglsdesc] = ACTIONS(9206), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9206), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9206), + [anon_sym_BSLASHglsuseri] = ACTIONS(9206), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9206), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9206), + [anon_sym_BSLASHglsuserii] = ACTIONS(9206), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9206), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9206), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9206), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9206), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9206), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9206), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9206), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9206), + [anon_sym_BSLASHglsuserv] = ACTIONS(9206), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9206), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9206), + [anon_sym_BSLASHglsuservi] = ACTIONS(9206), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9206), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9206), + [anon_sym_BSLASHnewacronym] = ACTIONS(9209), + [anon_sym_BSLASHacrshort] = ACTIONS(9212), + [anon_sym_BSLASHAcrshort] = ACTIONS(9212), + [anon_sym_BSLASHACRshort] = ACTIONS(9212), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9212), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9212), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9212), + [anon_sym_BSLASHacrlong] = ACTIONS(9212), + [anon_sym_BSLASHAcrlong] = ACTIONS(9212), + [anon_sym_BSLASHACRlong] = ACTIONS(9212), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9212), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9212), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9212), + [anon_sym_BSLASHacrfull] = ACTIONS(9212), + [anon_sym_BSLASHAcrfull] = ACTIONS(9212), + [anon_sym_BSLASHACRfull] = ACTIONS(9212), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9212), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9212), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9212), + [anon_sym_BSLASHacs] = ACTIONS(9212), + [anon_sym_BSLASHAcs] = ACTIONS(9212), + [anon_sym_BSLASHacsp] = ACTIONS(9212), + [anon_sym_BSLASHAcsp] = ACTIONS(9212), + [anon_sym_BSLASHacl] = ACTIONS(9212), + [anon_sym_BSLASHAcl] = ACTIONS(9212), + [anon_sym_BSLASHaclp] = ACTIONS(9212), + [anon_sym_BSLASHAclp] = ACTIONS(9212), + [anon_sym_BSLASHacf] = ACTIONS(9212), + [anon_sym_BSLASHAcf] = ACTIONS(9212), + [anon_sym_BSLASHacfp] = ACTIONS(9212), + [anon_sym_BSLASHAcfp] = ACTIONS(9212), + [anon_sym_BSLASHac] = ACTIONS(9212), + [anon_sym_BSLASHAc] = ACTIONS(9212), + [anon_sym_BSLASHacp] = ACTIONS(9212), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9212), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9212), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9212), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9212), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9212), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9212), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9212), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9212), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9212), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9212), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9215), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9215), + [anon_sym_BSLASHcolor] = ACTIONS(9218), + [anon_sym_BSLASHcolorbox] = ACTIONS(9218), + [anon_sym_BSLASHtextcolor] = ACTIONS(9218), + [anon_sym_BSLASHpagecolor] = ACTIONS(9218), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9224), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9230), + }, + [402] = { + [sym__simple_content] = STATE(408), + [sym_enum_item] = STATE(408), + [sym_brace_group] = STATE(408), + [sym_mixed_group] = STATE(408), + [sym_text] = STATE(408), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(408), + [sym_inline_formula] = STATE(408), + [sym_begin] = STATE(94), + [sym_environment] = STATE(408), + [sym_caption] = STATE(408), + [sym_citation] = STATE(408), + [sym_package_include] = STATE(408), + [sym_class_include] = STATE(408), + [sym_latex_include] = STATE(408), + [sym_latex_input] = STATE(408), + [sym_biblatex_include] = STATE(408), + [sym_bibtex_include] = STATE(408), + [sym_graphics_include] = STATE(408), + [sym_svg_include] = STATE(408), + [sym_inkscape_include] = STATE(408), + [sym_verbatim_include] = STATE(408), + [sym_import] = STATE(408), + [sym_label_definition] = STATE(408), + [sym_label_reference] = STATE(408), + [sym_equation_label_reference] = STATE(408), + [sym_label_reference_range] = STATE(408), + [sym_label_number] = STATE(408), + [sym_command_definition] = STATE(408), + [sym_math_operator] = STATE(408), + [sym_glossary_entry_definition] = STATE(408), + [sym_glossary_entry_reference] = STATE(408), + [sym_acronym_definition] = STATE(408), + [sym_acronym_reference] = STATE(408), + [sym_theorem_definition] = STATE(408), + [sym_color_reference] = STATE(408), + [sym_color_definition] = STATE(408), + [sym_color_set_definition] = STATE(408), + [sym_pgf_library_import] = STATE(408), + [sym_tikz_library_import] = STATE(408), + [sym_generic_command] = STATE(408), + [aux_sym_subparagraph_repeat1] = STATE(408), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(4879), + [aux_sym_subsection_token1] = ACTIONS(4879), + [aux_sym_subsubsection_token1] = ACTIONS(4879), + [aux_sym_paragraph_token1] = ACTIONS(4879), + [aux_sym_subparagraph_token1] = ACTIONS(4879), + [anon_sym_BSLASHitem] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(4877), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(9233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [403] = { + [sym__simple_content] = STATE(382), + [sym_brace_group] = STATE(382), + [sym_mixed_group] = STATE(382), + [sym_text] = STATE(382), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(382), + [sym_inline_formula] = STATE(382), + [sym_begin] = STATE(73), + [sym_environment] = STATE(382), + [sym_caption] = STATE(382), + [sym_citation] = STATE(382), + [sym_package_include] = STATE(382), + [sym_class_include] = STATE(382), + [sym_latex_include] = STATE(382), + [sym_latex_input] = STATE(382), + [sym_biblatex_include] = STATE(382), + [sym_bibtex_include] = STATE(382), + [sym_graphics_include] = STATE(382), + [sym_svg_include] = STATE(382), + [sym_inkscape_include] = STATE(382), + [sym_verbatim_include] = STATE(382), + [sym_import] = STATE(382), + [sym_label_definition] = STATE(382), + [sym_label_reference] = STATE(382), + [sym_equation_label_reference] = STATE(382), + [sym_label_reference_range] = STATE(382), + [sym_label_number] = STATE(382), + [sym_command_definition] = STATE(382), + [sym_math_operator] = STATE(382), + [sym_glossary_entry_definition] = STATE(382), + [sym_glossary_entry_reference] = STATE(382), + [sym_acronym_definition] = STATE(382), + [sym_acronym_reference] = STATE(382), + [sym_theorem_definition] = STATE(382), + [sym_color_reference] = STATE(382), + [sym_color_definition] = STATE(382), + [sym_color_set_definition] = STATE(382), + [sym_pgf_library_import] = STATE(382), + [sym_tikz_library_import] = STATE(382), + [sym_generic_command] = STATE(382), + [aux_sym_enum_item_repeat1] = STATE(382), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(6177), + [aux_sym_chapter_token1] = ACTIONS(6177), + [aux_sym_section_token1] = ACTIONS(6177), + [aux_sym_subsection_token1] = ACTIONS(6177), + [aux_sym_subsubsection_token1] = ACTIONS(6177), + [aux_sym_paragraph_token1] = ACTIONS(6177), + [aux_sym_subparagraph_token1] = ACTIONS(6177), + [anon_sym_BSLASHitem] = ACTIONS(6177), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(9235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(6177), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [404] = { + [sym__simple_content] = STATE(404), + [sym_brace_group] = STATE(404), + [sym_mixed_group] = STATE(404), + [sym_text] = STATE(404), + [sym__text_fragment] = STATE(625), + [sym_displayed_equation] = STATE(404), + [sym_inline_formula] = STATE(404), + [sym_begin] = STATE(66), + [sym_environment] = STATE(404), + [sym_caption] = STATE(404), + [sym_citation] = STATE(404), + [sym_package_include] = STATE(404), + [sym_class_include] = STATE(404), + [sym_latex_include] = STATE(404), + [sym_latex_input] = STATE(404), + [sym_biblatex_include] = STATE(404), + [sym_bibtex_include] = STATE(404), + [sym_graphics_include] = STATE(404), + [sym_svg_include] = STATE(404), + [sym_inkscape_include] = STATE(404), + [sym_verbatim_include] = STATE(404), + [sym_import] = STATE(404), + [sym_label_definition] = STATE(404), + [sym_label_reference] = STATE(404), + [sym_equation_label_reference] = STATE(404), + [sym_label_reference_range] = STATE(404), + [sym_label_number] = STATE(404), + [sym_command_definition] = STATE(404), + [sym_math_operator] = STATE(404), + [sym_glossary_entry_definition] = STATE(404), + [sym_glossary_entry_reference] = STATE(404), + [sym_acronym_definition] = STATE(404), + [sym_acronym_reference] = STATE(404), + [sym_theorem_definition] = STATE(404), + [sym_color_reference] = STATE(404), + [sym_color_definition] = STATE(404), + [sym_color_set_definition] = STATE(404), + [sym_pgf_library_import] = STATE(404), + [sym_tikz_library_import] = STATE(404), + [sym_generic_command] = STATE(404), + [aux_sym_enum_item_repeat1] = STATE(404), + [aux_sym_text_repeat1] = STATE(625), + [sym_generic_command_name] = ACTIONS(9237), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(6045), + [aux_sym_chapter_token1] = ACTIONS(6045), + [aux_sym_section_token1] = ACTIONS(6045), + [aux_sym_subsection_token1] = ACTIONS(6045), + [aux_sym_subsubsection_token1] = ACTIONS(6045), + [aux_sym_paragraph_token1] = ACTIONS(6045), + [aux_sym_subparagraph_token1] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(9240), + [anon_sym_LBRACE] = ACTIONS(9243), + [anon_sym_LPAREN] = ACTIONS(9240), + [anon_sym_COMMA] = ACTIONS(9246), + [anon_sym_EQ] = ACTIONS(9246), + [sym_word] = ACTIONS(9246), + [sym_param] = ACTIONS(9249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9252), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9252), + [anon_sym_DOLLAR] = ACTIONS(9255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9258), + [anon_sym_BSLASH_RPAREN] = ACTIONS(6040), + [anon_sym_BSLASHbegin] = ACTIONS(6068), + [anon_sym_BSLASHcaption] = ACTIONS(9261), + [anon_sym_BSLASHcite] = ACTIONS(9264), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9267), + [anon_sym_BSLASHCite] = ACTIONS(9264), + [anon_sym_BSLASHnocite] = ACTIONS(9264), + [anon_sym_BSLASHcitet] = ACTIONS(9264), + [anon_sym_BSLASHcitep] = ACTIONS(9264), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9267), + [anon_sym_BSLASHciteauthor] = ACTIONS(9264), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9264), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9267), + [anon_sym_BSLASHcitetitle] = ACTIONS(9264), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9267), + [anon_sym_BSLASHciteyear] = ACTIONS(9264), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9267), + [anon_sym_BSLASHcitedate] = ACTIONS(9264), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9267), + [anon_sym_BSLASHciteurl] = ACTIONS(9264), + [anon_sym_BSLASHfullcite] = ACTIONS(9264), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9264), + [anon_sym_BSLASHcitealt] = ACTIONS(9264), + [anon_sym_BSLASHcitealp] = ACTIONS(9264), + [anon_sym_BSLASHcitetext] = ACTIONS(9264), + [anon_sym_BSLASHparencite] = ACTIONS(9264), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9267), + [anon_sym_BSLASHParencite] = ACTIONS(9264), + [anon_sym_BSLASHfootcite] = ACTIONS(9264), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9264), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9264), + [anon_sym_BSLASHtextcite] = ACTIONS(9264), + [anon_sym_BSLASHTextcite] = ACTIONS(9264), + [anon_sym_BSLASHsmartcite] = ACTIONS(9264), + [anon_sym_BSLASHSmartcite] = ACTIONS(9264), + [anon_sym_BSLASHsupercite] = ACTIONS(9264), + [anon_sym_BSLASHautocite] = ACTIONS(9264), + [anon_sym_BSLASHAutocite] = ACTIONS(9264), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9267), + [anon_sym_BSLASHvolcite] = ACTIONS(9264), + [anon_sym_BSLASHVolcite] = ACTIONS(9264), + [anon_sym_BSLASHpvolcite] = ACTIONS(9264), + [anon_sym_BSLASHPvolcite] = ACTIONS(9264), + [anon_sym_BSLASHfvolcite] = ACTIONS(9264), + [anon_sym_BSLASHftvolcite] = ACTIONS(9264), + [anon_sym_BSLASHsvolcite] = ACTIONS(9264), + [anon_sym_BSLASHSvolcite] = ACTIONS(9264), + [anon_sym_BSLASHtvolcite] = ACTIONS(9264), + [anon_sym_BSLASHTvolcite] = ACTIONS(9264), + [anon_sym_BSLASHavolcite] = ACTIONS(9264), + [anon_sym_BSLASHAvolcite] = ACTIONS(9264), + [anon_sym_BSLASHnotecite] = ACTIONS(9264), + [anon_sym_BSLASHpnotecite] = ACTIONS(9264), + [anon_sym_BSLASHPnotecite] = ACTIONS(9264), + [anon_sym_BSLASHfnotecite] = ACTIONS(9264), + [anon_sym_BSLASHusepackage] = ACTIONS(9270), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9270), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9273), + [anon_sym_BSLASHinclude] = ACTIONS(9276), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9276), + [anon_sym_BSLASHinput] = ACTIONS(9279), + [anon_sym_BSLASHsubfile] = ACTIONS(9279), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9282), + [anon_sym_BSLASHbibliography] = ACTIONS(9285), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9288), + [anon_sym_BSLASHincludesvg] = ACTIONS(9291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9294), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9297), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9297), + [anon_sym_BSLASHimport] = ACTIONS(9300), + [anon_sym_BSLASHsubimport] = ACTIONS(9300), + [anon_sym_BSLASHinputfrom] = ACTIONS(9300), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9300), + [anon_sym_BSLASHincludefrom] = ACTIONS(9300), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9300), + [anon_sym_BSLASHlabel] = ACTIONS(9303), + [anon_sym_BSLASHref] = ACTIONS(9306), + [anon_sym_BSLASHvref] = ACTIONS(9306), + [anon_sym_BSLASHVref] = ACTIONS(9306), + [anon_sym_BSLASHautoref] = ACTIONS(9306), + [anon_sym_BSLASHpageref] = ACTIONS(9306), + [anon_sym_BSLASHcref] = ACTIONS(9306), + [anon_sym_BSLASHCref] = ACTIONS(9306), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9309), + [anon_sym_BSLASHnamecref] = ACTIONS(9306), + [anon_sym_BSLASHnameCref] = ACTIONS(9306), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9306), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9306), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9306), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9306), + [anon_sym_BSLASHlabelcref] = ACTIONS(9306), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9306), + [anon_sym_BSLASHeqref] = ACTIONS(9312), + [anon_sym_BSLASHcrefrange] = ACTIONS(9315), + [anon_sym_BSLASHCrefrange] = ACTIONS(9315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9318), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9318), + [anon_sym_BSLASHnewlabel] = ACTIONS(9321), + [anon_sym_BSLASHnewcommand] = ACTIONS(9324), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9324), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9324), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9330), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9333), + [anon_sym_BSLASHgls] = ACTIONS(9336), + [anon_sym_BSLASHGls] = ACTIONS(9336), + [anon_sym_BSLASHGLS] = ACTIONS(9336), + [anon_sym_BSLASHglspl] = ACTIONS(9336), + [anon_sym_BSLASHGlspl] = ACTIONS(9336), + [anon_sym_BSLASHGLSpl] = ACTIONS(9336), + [anon_sym_BSLASHglsdisp] = ACTIONS(9336), + [anon_sym_BSLASHglslink] = ACTIONS(9336), + [anon_sym_BSLASHglstext] = ACTIONS(9336), + [anon_sym_BSLASHGlstext] = ACTIONS(9336), + [anon_sym_BSLASHGLStext] = ACTIONS(9336), + [anon_sym_BSLASHglsfirst] = ACTIONS(9336), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9336), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9336), + [anon_sym_BSLASHglsplural] = ACTIONS(9336), + [anon_sym_BSLASHGlsplural] = ACTIONS(9336), + [anon_sym_BSLASHGLSplural] = ACTIONS(9336), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9336), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9336), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9336), + [anon_sym_BSLASHglsname] = ACTIONS(9336), + [anon_sym_BSLASHGlsname] = ACTIONS(9336), + [anon_sym_BSLASHGLSname] = ACTIONS(9336), + [anon_sym_BSLASHglssymbol] = ACTIONS(9336), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9336), + [anon_sym_BSLASHglsdesc] = ACTIONS(9336), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9336), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9336), + [anon_sym_BSLASHglsuseri] = ACTIONS(9336), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9336), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9336), + [anon_sym_BSLASHglsuserii] = ACTIONS(9336), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9336), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9336), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9336), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9336), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9336), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9336), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9336), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9336), + [anon_sym_BSLASHglsuserv] = ACTIONS(9336), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9336), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9336), + [anon_sym_BSLASHglsuservi] = ACTIONS(9336), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9336), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9336), + [anon_sym_BSLASHnewacronym] = ACTIONS(9339), + [anon_sym_BSLASHacrshort] = ACTIONS(9342), + [anon_sym_BSLASHAcrshort] = ACTIONS(9342), + [anon_sym_BSLASHACRshort] = ACTIONS(9342), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9342), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9342), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9342), + [anon_sym_BSLASHacrlong] = ACTIONS(9342), + [anon_sym_BSLASHAcrlong] = ACTIONS(9342), + [anon_sym_BSLASHACRlong] = ACTIONS(9342), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9342), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9342), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9342), + [anon_sym_BSLASHacrfull] = ACTIONS(9342), + [anon_sym_BSLASHAcrfull] = ACTIONS(9342), + [anon_sym_BSLASHACRfull] = ACTIONS(9342), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9342), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9342), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9342), + [anon_sym_BSLASHacs] = ACTIONS(9342), + [anon_sym_BSLASHAcs] = ACTIONS(9342), + [anon_sym_BSLASHacsp] = ACTIONS(9342), + [anon_sym_BSLASHAcsp] = ACTIONS(9342), + [anon_sym_BSLASHacl] = ACTIONS(9342), + [anon_sym_BSLASHAcl] = ACTIONS(9342), + [anon_sym_BSLASHaclp] = ACTIONS(9342), + [anon_sym_BSLASHAclp] = ACTIONS(9342), + [anon_sym_BSLASHacf] = ACTIONS(9342), + [anon_sym_BSLASHAcf] = ACTIONS(9342), + [anon_sym_BSLASHacfp] = ACTIONS(9342), + [anon_sym_BSLASHAcfp] = ACTIONS(9342), + [anon_sym_BSLASHac] = ACTIONS(9342), + [anon_sym_BSLASHAc] = ACTIONS(9342), + [anon_sym_BSLASHacp] = ACTIONS(9342), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9342), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9342), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9342), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9342), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9342), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9342), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9342), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9342), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9342), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9342), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9345), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9345), + [anon_sym_BSLASHcolor] = ACTIONS(9348), + [anon_sym_BSLASHcolorbox] = ACTIONS(9348), + [anon_sym_BSLASHtextcolor] = ACTIONS(9348), + [anon_sym_BSLASHpagecolor] = ACTIONS(9348), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9351), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9354), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9357), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9360), + }, + [405] = { + [sym__simple_content] = STATE(386), + [sym_brace_group] = STATE(386), + [sym_mixed_group] = STATE(386), + [sym_text] = STATE(386), + [sym__text_fragment] = STATE(617), + [sym_displayed_equation] = STATE(386), + [sym_inline_formula] = STATE(386), + [sym_begin] = STATE(59), + [sym_environment] = STATE(386), + [sym_caption] = STATE(386), + [sym_citation] = STATE(386), + [sym_package_include] = STATE(386), + [sym_class_include] = STATE(386), + [sym_latex_include] = STATE(386), + [sym_latex_input] = STATE(386), + [sym_biblatex_include] = STATE(386), + [sym_bibtex_include] = STATE(386), + [sym_graphics_include] = STATE(386), + [sym_svg_include] = STATE(386), + [sym_inkscape_include] = STATE(386), + [sym_verbatim_include] = STATE(386), + [sym_import] = STATE(386), + [sym_label_definition] = STATE(386), + [sym_label_reference] = STATE(386), + [sym_equation_label_reference] = STATE(386), + [sym_label_reference_range] = STATE(386), + [sym_label_number] = STATE(386), + [sym_command_definition] = STATE(386), + [sym_math_operator] = STATE(386), + [sym_glossary_entry_definition] = STATE(386), + [sym_glossary_entry_reference] = STATE(386), + [sym_acronym_definition] = STATE(386), + [sym_acronym_reference] = STATE(386), + [sym_theorem_definition] = STATE(386), + [sym_color_reference] = STATE(386), + [sym_color_definition] = STATE(386), + [sym_color_set_definition] = STATE(386), + [sym_pgf_library_import] = STATE(386), + [sym_tikz_library_import] = STATE(386), + [sym_generic_command] = STATE(386), + [aux_sym_enum_item_repeat1] = STATE(386), + [aux_sym_text_repeat1] = STATE(617), + [sym_generic_command_name] = ACTIONS(290), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5600), + [aux_sym_chapter_token1] = ACTIONS(5600), + [aux_sym_section_token1] = ACTIONS(5600), + [aux_sym_subsection_token1] = ACTIONS(5600), + [aux_sym_subsubsection_token1] = ACTIONS(5600), + [aux_sym_paragraph_token1] = ACTIONS(5600), + [aux_sym_subparagraph_token1] = ACTIONS(5600), + [anon_sym_BSLASHitem] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(302), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(302), + [anon_sym_COMMA] = ACTIONS(306), + [anon_sym_EQ] = ACTIONS(306), + [sym_word] = ACTIONS(306), + [sym_param] = ACTIONS(9093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(312), + [anon_sym_BSLASH_LBRACK] = ACTIONS(312), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5598), + [anon_sym_DOLLAR] = ACTIONS(314), + [anon_sym_BSLASH_LPAREN] = ACTIONS(316), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(318), + [anon_sym_BSLASHcite] = ACTIONS(320), + [anon_sym_BSLASHcite_STAR] = ACTIONS(322), + [anon_sym_BSLASHCite] = ACTIONS(320), + [anon_sym_BSLASHnocite] = ACTIONS(320), + [anon_sym_BSLASHcitet] = ACTIONS(320), + [anon_sym_BSLASHcitep] = ACTIONS(320), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteauthor] = ACTIONS(320), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHCiteauthor] = ACTIONS(320), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitetitle] = ACTIONS(320), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteyear] = ACTIONS(320), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(322), + [anon_sym_BSLASHcitedate] = ACTIONS(320), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(322), + [anon_sym_BSLASHciteurl] = ACTIONS(320), + [anon_sym_BSLASHfullcite] = ACTIONS(320), + [anon_sym_BSLASHciteyearpar] = ACTIONS(320), + [anon_sym_BSLASHcitealt] = ACTIONS(320), + [anon_sym_BSLASHcitealp] = ACTIONS(320), + [anon_sym_BSLASHcitetext] = ACTIONS(320), + [anon_sym_BSLASHparencite] = ACTIONS(320), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(322), + [anon_sym_BSLASHParencite] = ACTIONS(320), + [anon_sym_BSLASHfootcite] = ACTIONS(320), + [anon_sym_BSLASHfootfullcite] = ACTIONS(320), + [anon_sym_BSLASHfootcitetext] = ACTIONS(320), + [anon_sym_BSLASHtextcite] = ACTIONS(320), + [anon_sym_BSLASHTextcite] = ACTIONS(320), + [anon_sym_BSLASHsmartcite] = ACTIONS(320), + [anon_sym_BSLASHSmartcite] = ACTIONS(320), + [anon_sym_BSLASHsupercite] = ACTIONS(320), + [anon_sym_BSLASHautocite] = ACTIONS(320), + [anon_sym_BSLASHAutocite] = ACTIONS(320), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(322), + [anon_sym_BSLASHvolcite] = ACTIONS(320), + [anon_sym_BSLASHVolcite] = ACTIONS(320), + [anon_sym_BSLASHpvolcite] = ACTIONS(320), + [anon_sym_BSLASHPvolcite] = ACTIONS(320), + [anon_sym_BSLASHfvolcite] = ACTIONS(320), + [anon_sym_BSLASHftvolcite] = ACTIONS(320), + [anon_sym_BSLASHsvolcite] = ACTIONS(320), + [anon_sym_BSLASHSvolcite] = ACTIONS(320), + [anon_sym_BSLASHtvolcite] = ACTIONS(320), + [anon_sym_BSLASHTvolcite] = ACTIONS(320), + [anon_sym_BSLASHavolcite] = ACTIONS(320), + [anon_sym_BSLASHAvolcite] = ACTIONS(320), + [anon_sym_BSLASHnotecite] = ACTIONS(320), + [anon_sym_BSLASHpnotecite] = ACTIONS(320), + [anon_sym_BSLASHPnotecite] = ACTIONS(320), + [anon_sym_BSLASHfnotecite] = ACTIONS(320), + [anon_sym_BSLASHusepackage] = ACTIONS(324), + [anon_sym_BSLASHRequirePackage] = ACTIONS(324), + [anon_sym_BSLASHdocumentclass] = ACTIONS(326), + [anon_sym_BSLASHinclude] = ACTIONS(328), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(328), + [anon_sym_BSLASHinput] = ACTIONS(330), + [anon_sym_BSLASHsubfile] = ACTIONS(330), + [anon_sym_BSLASHaddbibresource] = ACTIONS(332), + [anon_sym_BSLASHbibliography] = ACTIONS(334), + [anon_sym_BSLASHincludegraphics] = ACTIONS(336), + [anon_sym_BSLASHincludesvg] = ACTIONS(338), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(340), + [anon_sym_BSLASHverbatiminput] = ACTIONS(342), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(342), + [anon_sym_BSLASHimport] = ACTIONS(344), + [anon_sym_BSLASHsubimport] = ACTIONS(344), + [anon_sym_BSLASHinputfrom] = ACTIONS(344), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(344), + [anon_sym_BSLASHincludefrom] = ACTIONS(344), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(344), + [anon_sym_BSLASHlabel] = ACTIONS(346), + [anon_sym_BSLASHref] = ACTIONS(348), + [anon_sym_BSLASHvref] = ACTIONS(348), + [anon_sym_BSLASHVref] = ACTIONS(348), + [anon_sym_BSLASHautoref] = ACTIONS(348), + [anon_sym_BSLASHpageref] = ACTIONS(348), + [anon_sym_BSLASHcref] = ACTIONS(348), + [anon_sym_BSLASHCref] = ACTIONS(348), + [anon_sym_BSLASHcref_STAR] = ACTIONS(350), + [anon_sym_BSLASHCref_STAR] = ACTIONS(350), + [anon_sym_BSLASHnamecref] = ACTIONS(348), + [anon_sym_BSLASHnameCref] = ACTIONS(348), + [anon_sym_BSLASHlcnamecref] = ACTIONS(348), + [anon_sym_BSLASHnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHnameCrefs] = ACTIONS(348), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(348), + [anon_sym_BSLASHlabelcref] = ACTIONS(348), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(348), + [anon_sym_BSLASHeqref] = ACTIONS(352), + [anon_sym_BSLASHcrefrange] = ACTIONS(354), + [anon_sym_BSLASHCrefrange] = ACTIONS(354), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(356), + [anon_sym_BSLASHnewlabel] = ACTIONS(358), + [anon_sym_BSLASHnewcommand] = ACTIONS(360), + [anon_sym_BSLASHrenewcommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(360), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(362), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(364), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(366), + [anon_sym_BSLASHgls] = ACTIONS(368), + [anon_sym_BSLASHGls] = ACTIONS(368), + [anon_sym_BSLASHGLS] = ACTIONS(368), + [anon_sym_BSLASHglspl] = ACTIONS(368), + [anon_sym_BSLASHGlspl] = ACTIONS(368), + [anon_sym_BSLASHGLSpl] = ACTIONS(368), + [anon_sym_BSLASHglsdisp] = ACTIONS(368), + [anon_sym_BSLASHglslink] = ACTIONS(368), + [anon_sym_BSLASHglstext] = ACTIONS(368), + [anon_sym_BSLASHGlstext] = ACTIONS(368), + [anon_sym_BSLASHGLStext] = ACTIONS(368), + [anon_sym_BSLASHglsfirst] = ACTIONS(368), + [anon_sym_BSLASHGlsfirst] = ACTIONS(368), + [anon_sym_BSLASHGLSfirst] = ACTIONS(368), + [anon_sym_BSLASHglsplural] = ACTIONS(368), + [anon_sym_BSLASHGlsplural] = ACTIONS(368), + [anon_sym_BSLASHGLSplural] = ACTIONS(368), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(368), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(368), + [anon_sym_BSLASHglsname] = ACTIONS(368), + [anon_sym_BSLASHGlsname] = ACTIONS(368), + [anon_sym_BSLASHGLSname] = ACTIONS(368), + [anon_sym_BSLASHglssymbol] = ACTIONS(368), + [anon_sym_BSLASHGlssymbol] = ACTIONS(368), + [anon_sym_BSLASHglsdesc] = ACTIONS(368), + [anon_sym_BSLASHGlsdesc] = ACTIONS(368), + [anon_sym_BSLASHGLSdesc] = ACTIONS(368), + [anon_sym_BSLASHglsuseri] = ACTIONS(368), + [anon_sym_BSLASHGlsuseri] = ACTIONS(368), + [anon_sym_BSLASHGLSuseri] = ACTIONS(368), + [anon_sym_BSLASHglsuserii] = ACTIONS(368), + [anon_sym_BSLASHGlsuserii] = ACTIONS(368), + [anon_sym_BSLASHGLSuserii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(368), + [anon_sym_BSLASHglsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(368), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(368), + [anon_sym_BSLASHglsuserv] = ACTIONS(368), + [anon_sym_BSLASHGlsuserv] = ACTIONS(368), + [anon_sym_BSLASHGLSuserv] = ACTIONS(368), + [anon_sym_BSLASHglsuservi] = ACTIONS(368), + [anon_sym_BSLASHGlsuservi] = ACTIONS(368), + [anon_sym_BSLASHGLSuservi] = ACTIONS(368), + [anon_sym_BSLASHnewacronym] = ACTIONS(370), + [anon_sym_BSLASHacrshort] = ACTIONS(372), + [anon_sym_BSLASHAcrshort] = ACTIONS(372), + [anon_sym_BSLASHACRshort] = ACTIONS(372), + [anon_sym_BSLASHacrshortpl] = ACTIONS(372), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(372), + [anon_sym_BSLASHACRshortpl] = ACTIONS(372), + [anon_sym_BSLASHacrlong] = ACTIONS(372), + [anon_sym_BSLASHAcrlong] = ACTIONS(372), + [anon_sym_BSLASHACRlong] = ACTIONS(372), + [anon_sym_BSLASHacrlongpl] = ACTIONS(372), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(372), + [anon_sym_BSLASHACRlongpl] = ACTIONS(372), + [anon_sym_BSLASHacrfull] = ACTIONS(372), + [anon_sym_BSLASHAcrfull] = ACTIONS(372), + [anon_sym_BSLASHACRfull] = ACTIONS(372), + [anon_sym_BSLASHacrfullpl] = ACTIONS(372), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(372), + [anon_sym_BSLASHACRfullpl] = ACTIONS(372), + [anon_sym_BSLASHacs] = ACTIONS(372), + [anon_sym_BSLASHAcs] = ACTIONS(372), + [anon_sym_BSLASHacsp] = ACTIONS(372), + [anon_sym_BSLASHAcsp] = ACTIONS(372), + [anon_sym_BSLASHacl] = ACTIONS(372), + [anon_sym_BSLASHAcl] = ACTIONS(372), + [anon_sym_BSLASHaclp] = ACTIONS(372), + [anon_sym_BSLASHAclp] = ACTIONS(372), + [anon_sym_BSLASHacf] = ACTIONS(372), + [anon_sym_BSLASHAcf] = ACTIONS(372), + [anon_sym_BSLASHacfp] = ACTIONS(372), + [anon_sym_BSLASHAcfp] = ACTIONS(372), + [anon_sym_BSLASHac] = ACTIONS(372), + [anon_sym_BSLASHAc] = ACTIONS(372), + [anon_sym_BSLASHacp] = ACTIONS(372), + [anon_sym_BSLASHglsentrylong] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(372), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryshort] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(372), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(372), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(372), + [anon_sym_BSLASHnewtheorem] = ACTIONS(374), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(374), + [anon_sym_BSLASHcolor] = ACTIONS(376), + [anon_sym_BSLASHcolorbox] = ACTIONS(376), + [anon_sym_BSLASHtextcolor] = ACTIONS(376), + [anon_sym_BSLASHpagecolor] = ACTIONS(376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(378), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(380), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(382), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(384), + }, + [406] = { + [sym__simple_content] = STATE(407), + [sym_brace_group] = STATE(407), + [sym_mixed_group] = STATE(407), + [sym_text] = STATE(407), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(407), + [sym_inline_formula] = STATE(407), + [sym_begin] = STATE(73), + [sym_environment] = STATE(407), + [sym_caption] = STATE(407), + [sym_citation] = STATE(407), + [sym_package_include] = STATE(407), + [sym_class_include] = STATE(407), + [sym_latex_include] = STATE(407), + [sym_latex_input] = STATE(407), + [sym_biblatex_include] = STATE(407), + [sym_bibtex_include] = STATE(407), + [sym_graphics_include] = STATE(407), + [sym_svg_include] = STATE(407), + [sym_inkscape_include] = STATE(407), + [sym_verbatim_include] = STATE(407), + [sym_import] = STATE(407), + [sym_label_definition] = STATE(407), + [sym_label_reference] = STATE(407), + [sym_equation_label_reference] = STATE(407), + [sym_label_reference_range] = STATE(407), + [sym_label_number] = STATE(407), + [sym_command_definition] = STATE(407), + [sym_math_operator] = STATE(407), + [sym_glossary_entry_definition] = STATE(407), + [sym_glossary_entry_reference] = STATE(407), + [sym_acronym_definition] = STATE(407), + [sym_acronym_reference] = STATE(407), + [sym_theorem_definition] = STATE(407), + [sym_color_reference] = STATE(407), + [sym_color_definition] = STATE(407), + [sym_color_set_definition] = STATE(407), + [sym_pgf_library_import] = STATE(407), + [sym_tikz_library_import] = STATE(407), + [sym_generic_command] = STATE(407), + [aux_sym_enum_item_repeat1] = STATE(407), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(6034), + [aux_sym_chapter_token1] = ACTIONS(6034), + [aux_sym_section_token1] = ACTIONS(6034), + [aux_sym_subsection_token1] = ACTIONS(6034), + [aux_sym_subsubsection_token1] = ACTIONS(6034), + [aux_sym_paragraph_token1] = ACTIONS(6034), + [aux_sym_subparagraph_token1] = ACTIONS(6034), + [anon_sym_BSLASHitem] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(9363), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(9365), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(6034), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [407] = { + [sym__simple_content] = STATE(382), + [sym_brace_group] = STATE(382), + [sym_mixed_group] = STATE(382), + [sym_text] = STATE(382), + [sym__text_fragment] = STATE(614), + [sym_displayed_equation] = STATE(382), + [sym_inline_formula] = STATE(382), + [sym_begin] = STATE(73), + [sym_environment] = STATE(382), + [sym_caption] = STATE(382), + [sym_citation] = STATE(382), + [sym_package_include] = STATE(382), + [sym_class_include] = STATE(382), + [sym_latex_include] = STATE(382), + [sym_latex_input] = STATE(382), + [sym_biblatex_include] = STATE(382), + [sym_bibtex_include] = STATE(382), + [sym_graphics_include] = STATE(382), + [sym_svg_include] = STATE(382), + [sym_inkscape_include] = STATE(382), + [sym_verbatim_include] = STATE(382), + [sym_import] = STATE(382), + [sym_label_definition] = STATE(382), + [sym_label_reference] = STATE(382), + [sym_equation_label_reference] = STATE(382), + [sym_label_reference_range] = STATE(382), + [sym_label_number] = STATE(382), + [sym_command_definition] = STATE(382), + [sym_math_operator] = STATE(382), + [sym_glossary_entry_definition] = STATE(382), + [sym_glossary_entry_reference] = STATE(382), + [sym_acronym_definition] = STATE(382), + [sym_acronym_reference] = STATE(382), + [sym_theorem_definition] = STATE(382), + [sym_color_reference] = STATE(382), + [sym_color_definition] = STATE(382), + [sym_color_set_definition] = STATE(382), + [sym_pgf_library_import] = STATE(382), + [sym_tikz_library_import] = STATE(382), + [sym_generic_command] = STATE(382), + [aux_sym_enum_item_repeat1] = STATE(382), + [aux_sym_text_repeat1] = STATE(614), + [sym_generic_command_name] = ACTIONS(492), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(5600), + [aux_sym_chapter_token1] = ACTIONS(5600), + [aux_sym_section_token1] = ACTIONS(5600), + [aux_sym_subsection_token1] = ACTIONS(5600), + [aux_sym_subsubsection_token1] = ACTIONS(5600), + [aux_sym_paragraph_token1] = ACTIONS(5600), + [aux_sym_subparagraph_token1] = ACTIONS(5600), + [anon_sym_BSLASHitem] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(510), + [anon_sym_COMMA] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(514), + [sym_word] = ACTIONS(514), + [sym_param] = ACTIONS(9235), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(518), + [anon_sym_DOLLAR] = ACTIONS(520), + [anon_sym_BSLASH_LPAREN] = ACTIONS(522), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHend] = ACTIONS(5600), + [anon_sym_BSLASHcaption] = ACTIONS(526), + [anon_sym_BSLASHcite] = ACTIONS(528), + [anon_sym_BSLASHcite_STAR] = ACTIONS(530), + [anon_sym_BSLASHCite] = ACTIONS(528), + [anon_sym_BSLASHnocite] = ACTIONS(528), + [anon_sym_BSLASHcitet] = ACTIONS(528), + [anon_sym_BSLASHcitep] = ACTIONS(528), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteauthor] = ACTIONS(528), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHCiteauthor] = ACTIONS(528), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitetitle] = ACTIONS(528), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteyear] = ACTIONS(528), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(530), + [anon_sym_BSLASHcitedate] = ACTIONS(528), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(530), + [anon_sym_BSLASHciteurl] = ACTIONS(528), + [anon_sym_BSLASHfullcite] = ACTIONS(528), + [anon_sym_BSLASHciteyearpar] = ACTIONS(528), + [anon_sym_BSLASHcitealt] = ACTIONS(528), + [anon_sym_BSLASHcitealp] = ACTIONS(528), + [anon_sym_BSLASHcitetext] = ACTIONS(528), + [anon_sym_BSLASHparencite] = ACTIONS(528), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(530), + [anon_sym_BSLASHParencite] = ACTIONS(528), + [anon_sym_BSLASHfootcite] = ACTIONS(528), + [anon_sym_BSLASHfootfullcite] = ACTIONS(528), + [anon_sym_BSLASHfootcitetext] = ACTIONS(528), + [anon_sym_BSLASHtextcite] = ACTIONS(528), + [anon_sym_BSLASHTextcite] = ACTIONS(528), + [anon_sym_BSLASHsmartcite] = ACTIONS(528), + [anon_sym_BSLASHSmartcite] = ACTIONS(528), + [anon_sym_BSLASHsupercite] = ACTIONS(528), + [anon_sym_BSLASHautocite] = ACTIONS(528), + [anon_sym_BSLASHAutocite] = ACTIONS(528), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(530), + [anon_sym_BSLASHvolcite] = ACTIONS(528), + [anon_sym_BSLASHVolcite] = ACTIONS(528), + [anon_sym_BSLASHpvolcite] = ACTIONS(528), + [anon_sym_BSLASHPvolcite] = ACTIONS(528), + [anon_sym_BSLASHfvolcite] = ACTIONS(528), + [anon_sym_BSLASHftvolcite] = ACTIONS(528), + [anon_sym_BSLASHsvolcite] = ACTIONS(528), + [anon_sym_BSLASHSvolcite] = ACTIONS(528), + [anon_sym_BSLASHtvolcite] = ACTIONS(528), + [anon_sym_BSLASHTvolcite] = ACTIONS(528), + [anon_sym_BSLASHavolcite] = ACTIONS(528), + [anon_sym_BSLASHAvolcite] = ACTIONS(528), + [anon_sym_BSLASHnotecite] = ACTIONS(528), + [anon_sym_BSLASHpnotecite] = ACTIONS(528), + [anon_sym_BSLASHPnotecite] = ACTIONS(528), + [anon_sym_BSLASHfnotecite] = ACTIONS(528), + [anon_sym_BSLASHusepackage] = ACTIONS(532), + [anon_sym_BSLASHRequirePackage] = ACTIONS(532), + [anon_sym_BSLASHdocumentclass] = ACTIONS(534), + [anon_sym_BSLASHinclude] = ACTIONS(536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(536), + [anon_sym_BSLASHinput] = ACTIONS(538), + [anon_sym_BSLASHsubfile] = ACTIONS(538), + [anon_sym_BSLASHaddbibresource] = ACTIONS(540), + [anon_sym_BSLASHbibliography] = ACTIONS(542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(544), + [anon_sym_BSLASHincludesvg] = ACTIONS(546), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(548), + [anon_sym_BSLASHverbatiminput] = ACTIONS(550), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(550), + [anon_sym_BSLASHimport] = ACTIONS(552), + [anon_sym_BSLASHsubimport] = ACTIONS(552), + [anon_sym_BSLASHinputfrom] = ACTIONS(552), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(552), + [anon_sym_BSLASHincludefrom] = ACTIONS(552), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(552), + [anon_sym_BSLASHlabel] = ACTIONS(554), + [anon_sym_BSLASHref] = ACTIONS(556), + [anon_sym_BSLASHvref] = ACTIONS(556), + [anon_sym_BSLASHVref] = ACTIONS(556), + [anon_sym_BSLASHautoref] = ACTIONS(556), + [anon_sym_BSLASHpageref] = ACTIONS(556), + [anon_sym_BSLASHcref] = ACTIONS(556), + [anon_sym_BSLASHCref] = ACTIONS(556), + [anon_sym_BSLASHcref_STAR] = ACTIONS(558), + [anon_sym_BSLASHCref_STAR] = ACTIONS(558), + [anon_sym_BSLASHnamecref] = ACTIONS(556), + [anon_sym_BSLASHnameCref] = ACTIONS(556), + [anon_sym_BSLASHlcnamecref] = ACTIONS(556), + [anon_sym_BSLASHnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHnameCrefs] = ACTIONS(556), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(556), + [anon_sym_BSLASHlabelcref] = ACTIONS(556), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(556), + [anon_sym_BSLASHeqref] = ACTIONS(560), + [anon_sym_BSLASHcrefrange] = ACTIONS(562), + [anon_sym_BSLASHCrefrange] = ACTIONS(562), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(564), + [anon_sym_BSLASHnewlabel] = ACTIONS(566), + [anon_sym_BSLASHnewcommand] = ACTIONS(568), + [anon_sym_BSLASHrenewcommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(568), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(570), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(572), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(574), + [anon_sym_BSLASHgls] = ACTIONS(576), + [anon_sym_BSLASHGls] = ACTIONS(576), + [anon_sym_BSLASHGLS] = ACTIONS(576), + [anon_sym_BSLASHglspl] = ACTIONS(576), + [anon_sym_BSLASHGlspl] = ACTIONS(576), + [anon_sym_BSLASHGLSpl] = ACTIONS(576), + [anon_sym_BSLASHglsdisp] = ACTIONS(576), + [anon_sym_BSLASHglslink] = ACTIONS(576), + [anon_sym_BSLASHglstext] = ACTIONS(576), + [anon_sym_BSLASHGlstext] = ACTIONS(576), + [anon_sym_BSLASHGLStext] = ACTIONS(576), + [anon_sym_BSLASHglsfirst] = ACTIONS(576), + [anon_sym_BSLASHGlsfirst] = ACTIONS(576), + [anon_sym_BSLASHGLSfirst] = ACTIONS(576), + [anon_sym_BSLASHglsplural] = ACTIONS(576), + [anon_sym_BSLASHGlsplural] = ACTIONS(576), + [anon_sym_BSLASHGLSplural] = ACTIONS(576), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(576), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(576), + [anon_sym_BSLASHglsname] = ACTIONS(576), + [anon_sym_BSLASHGlsname] = ACTIONS(576), + [anon_sym_BSLASHGLSname] = ACTIONS(576), + [anon_sym_BSLASHglssymbol] = ACTIONS(576), + [anon_sym_BSLASHGlssymbol] = ACTIONS(576), + [anon_sym_BSLASHglsdesc] = ACTIONS(576), + [anon_sym_BSLASHGlsdesc] = ACTIONS(576), + [anon_sym_BSLASHGLSdesc] = ACTIONS(576), + [anon_sym_BSLASHglsuseri] = ACTIONS(576), + [anon_sym_BSLASHGlsuseri] = ACTIONS(576), + [anon_sym_BSLASHGLSuseri] = ACTIONS(576), + [anon_sym_BSLASHglsuserii] = ACTIONS(576), + [anon_sym_BSLASHGlsuserii] = ACTIONS(576), + [anon_sym_BSLASHGLSuserii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(576), + [anon_sym_BSLASHglsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(576), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(576), + [anon_sym_BSLASHglsuserv] = ACTIONS(576), + [anon_sym_BSLASHGlsuserv] = ACTIONS(576), + [anon_sym_BSLASHGLSuserv] = ACTIONS(576), + [anon_sym_BSLASHglsuservi] = ACTIONS(576), + [anon_sym_BSLASHGlsuservi] = ACTIONS(576), + [anon_sym_BSLASHGLSuservi] = ACTIONS(576), + [anon_sym_BSLASHnewacronym] = ACTIONS(578), + [anon_sym_BSLASHacrshort] = ACTIONS(580), + [anon_sym_BSLASHAcrshort] = ACTIONS(580), + [anon_sym_BSLASHACRshort] = ACTIONS(580), + [anon_sym_BSLASHacrshortpl] = ACTIONS(580), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(580), + [anon_sym_BSLASHACRshortpl] = ACTIONS(580), + [anon_sym_BSLASHacrlong] = ACTIONS(580), + [anon_sym_BSLASHAcrlong] = ACTIONS(580), + [anon_sym_BSLASHACRlong] = ACTIONS(580), + [anon_sym_BSLASHacrlongpl] = ACTIONS(580), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(580), + [anon_sym_BSLASHACRlongpl] = ACTIONS(580), + [anon_sym_BSLASHacrfull] = ACTIONS(580), + [anon_sym_BSLASHAcrfull] = ACTIONS(580), + [anon_sym_BSLASHACRfull] = ACTIONS(580), + [anon_sym_BSLASHacrfullpl] = ACTIONS(580), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(580), + [anon_sym_BSLASHACRfullpl] = ACTIONS(580), + [anon_sym_BSLASHacs] = ACTIONS(580), + [anon_sym_BSLASHAcs] = ACTIONS(580), + [anon_sym_BSLASHacsp] = ACTIONS(580), + [anon_sym_BSLASHAcsp] = ACTIONS(580), + [anon_sym_BSLASHacl] = ACTIONS(580), + [anon_sym_BSLASHAcl] = ACTIONS(580), + [anon_sym_BSLASHaclp] = ACTIONS(580), + [anon_sym_BSLASHAclp] = ACTIONS(580), + [anon_sym_BSLASHacf] = ACTIONS(580), + [anon_sym_BSLASHAcf] = ACTIONS(580), + [anon_sym_BSLASHacfp] = ACTIONS(580), + [anon_sym_BSLASHAcfp] = ACTIONS(580), + [anon_sym_BSLASHac] = ACTIONS(580), + [anon_sym_BSLASHAc] = ACTIONS(580), + [anon_sym_BSLASHacp] = ACTIONS(580), + [anon_sym_BSLASHglsentrylong] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(580), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryshort] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(580), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(580), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(580), + [anon_sym_BSLASHnewtheorem] = ACTIONS(582), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(582), + [anon_sym_BSLASHcolor] = ACTIONS(584), + [anon_sym_BSLASHcolorbox] = ACTIONS(584), + [anon_sym_BSLASHtextcolor] = ACTIONS(584), + [anon_sym_BSLASHpagecolor] = ACTIONS(584), + [anon_sym_BSLASHdefinecolor] = ACTIONS(586), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(588), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(590), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(592), + }, + [408] = { + [sym__simple_content] = STATE(409), + [sym_enum_item] = STATE(409), + [sym_brace_group] = STATE(409), + [sym_mixed_group] = STATE(409), + [sym_text] = STATE(409), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(409), + [sym_inline_formula] = STATE(409), + [sym_begin] = STATE(94), + [sym_environment] = STATE(409), + [sym_caption] = STATE(409), + [sym_citation] = STATE(409), + [sym_package_include] = STATE(409), + [sym_class_include] = STATE(409), + [sym_latex_include] = STATE(409), + [sym_latex_input] = STATE(409), + [sym_biblatex_include] = STATE(409), + [sym_bibtex_include] = STATE(409), + [sym_graphics_include] = STATE(409), + [sym_svg_include] = STATE(409), + [sym_inkscape_include] = STATE(409), + [sym_verbatim_include] = STATE(409), + [sym_import] = STATE(409), + [sym_label_definition] = STATE(409), + [sym_label_reference] = STATE(409), + [sym_equation_label_reference] = STATE(409), + [sym_label_reference_range] = STATE(409), + [sym_label_number] = STATE(409), + [sym_command_definition] = STATE(409), + [sym_math_operator] = STATE(409), + [sym_glossary_entry_definition] = STATE(409), + [sym_glossary_entry_reference] = STATE(409), + [sym_acronym_definition] = STATE(409), + [sym_acronym_reference] = STATE(409), + [sym_theorem_definition] = STATE(409), + [sym_color_reference] = STATE(409), + [sym_color_definition] = STATE(409), + [sym_color_set_definition] = STATE(409), + [sym_pgf_library_import] = STATE(409), + [sym_tikz_library_import] = STATE(409), + [sym_generic_command] = STATE(409), + [aux_sym_subparagraph_repeat1] = STATE(409), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(5168), + [aux_sym_subsection_token1] = ACTIONS(5168), + [aux_sym_subsubsection_token1] = ACTIONS(5168), + [aux_sym_paragraph_token1] = ACTIONS(5168), + [aux_sym_subparagraph_token1] = ACTIONS(5168), + [anon_sym_BSLASHitem] = ACTIONS(4070), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(9367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [409] = { + [sym__simple_content] = STATE(409), + [sym_enum_item] = STATE(409), + [sym_brace_group] = STATE(409), + [sym_mixed_group] = STATE(409), + [sym_text] = STATE(409), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(409), + [sym_inline_formula] = STATE(409), + [sym_begin] = STATE(94), + [sym_environment] = STATE(409), + [sym_caption] = STATE(409), + [sym_citation] = STATE(409), + [sym_package_include] = STATE(409), + [sym_class_include] = STATE(409), + [sym_latex_include] = STATE(409), + [sym_latex_input] = STATE(409), + [sym_biblatex_include] = STATE(409), + [sym_bibtex_include] = STATE(409), + [sym_graphics_include] = STATE(409), + [sym_svg_include] = STATE(409), + [sym_inkscape_include] = STATE(409), + [sym_verbatim_include] = STATE(409), + [sym_import] = STATE(409), + [sym_label_definition] = STATE(409), + [sym_label_reference] = STATE(409), + [sym_equation_label_reference] = STATE(409), + [sym_label_reference_range] = STATE(409), + [sym_label_number] = STATE(409), + [sym_command_definition] = STATE(409), + [sym_math_operator] = STATE(409), + [sym_glossary_entry_definition] = STATE(409), + [sym_glossary_entry_reference] = STATE(409), + [sym_acronym_definition] = STATE(409), + [sym_acronym_reference] = STATE(409), + [sym_theorem_definition] = STATE(409), + [sym_color_reference] = STATE(409), + [sym_color_definition] = STATE(409), + [sym_color_set_definition] = STATE(409), + [sym_pgf_library_import] = STATE(409), + [sym_tikz_library_import] = STATE(409), + [sym_generic_command] = STATE(409), + [aux_sym_subparagraph_repeat1] = STATE(409), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(9369), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(5453), + [aux_sym_subsection_token1] = ACTIONS(5453), + [aux_sym_subsubsection_token1] = ACTIONS(5453), + [aux_sym_paragraph_token1] = ACTIONS(5453), + [aux_sym_subparagraph_token1] = ACTIONS(5453), + [anon_sym_BSLASHitem] = ACTIONS(9372), + [anon_sym_LBRACK] = ACTIONS(9375), + [anon_sym_RBRACK] = ACTIONS(5448), + [anon_sym_LBRACE] = ACTIONS(9378), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(9375), + [anon_sym_COMMA] = ACTIONS(9381), + [anon_sym_EQ] = ACTIONS(9381), + [sym_word] = ACTIONS(9381), + [sym_param] = ACTIONS(9384), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9387), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9387), + [anon_sym_DOLLAR] = ACTIONS(9390), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9393), + [anon_sym_BSLASHbegin] = ACTIONS(5479), + [anon_sym_BSLASHcaption] = ACTIONS(9396), + [anon_sym_BSLASHcite] = ACTIONS(9399), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9402), + [anon_sym_BSLASHCite] = ACTIONS(9399), + [anon_sym_BSLASHnocite] = ACTIONS(9399), + [anon_sym_BSLASHcitet] = ACTIONS(9399), + [anon_sym_BSLASHcitep] = ACTIONS(9399), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9402), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9402), + [anon_sym_BSLASHciteauthor] = ACTIONS(9399), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9402), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9399), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9402), + [anon_sym_BSLASHcitetitle] = ACTIONS(9399), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9402), + [anon_sym_BSLASHciteyear] = ACTIONS(9399), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9402), + [anon_sym_BSLASHcitedate] = ACTIONS(9399), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9402), + [anon_sym_BSLASHciteurl] = ACTIONS(9399), + [anon_sym_BSLASHfullcite] = ACTIONS(9399), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9399), + [anon_sym_BSLASHcitealt] = ACTIONS(9399), + [anon_sym_BSLASHcitealp] = ACTIONS(9399), + [anon_sym_BSLASHcitetext] = ACTIONS(9399), + [anon_sym_BSLASHparencite] = ACTIONS(9399), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9402), + [anon_sym_BSLASHParencite] = ACTIONS(9399), + [anon_sym_BSLASHfootcite] = ACTIONS(9399), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9399), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9399), + [anon_sym_BSLASHtextcite] = ACTIONS(9399), + [anon_sym_BSLASHTextcite] = ACTIONS(9399), + [anon_sym_BSLASHsmartcite] = ACTIONS(9399), + [anon_sym_BSLASHSmartcite] = ACTIONS(9399), + [anon_sym_BSLASHsupercite] = ACTIONS(9399), + [anon_sym_BSLASHautocite] = ACTIONS(9399), + [anon_sym_BSLASHAutocite] = ACTIONS(9399), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9402), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9402), + [anon_sym_BSLASHvolcite] = ACTIONS(9399), + [anon_sym_BSLASHVolcite] = ACTIONS(9399), + [anon_sym_BSLASHpvolcite] = ACTIONS(9399), + [anon_sym_BSLASHPvolcite] = ACTIONS(9399), + [anon_sym_BSLASHfvolcite] = ACTIONS(9399), + [anon_sym_BSLASHftvolcite] = ACTIONS(9399), + [anon_sym_BSLASHsvolcite] = ACTIONS(9399), + [anon_sym_BSLASHSvolcite] = ACTIONS(9399), + [anon_sym_BSLASHtvolcite] = ACTIONS(9399), + [anon_sym_BSLASHTvolcite] = ACTIONS(9399), + [anon_sym_BSLASHavolcite] = ACTIONS(9399), + [anon_sym_BSLASHAvolcite] = ACTIONS(9399), + [anon_sym_BSLASHnotecite] = ACTIONS(9399), + [anon_sym_BSLASHpnotecite] = ACTIONS(9399), + [anon_sym_BSLASHPnotecite] = ACTIONS(9399), + [anon_sym_BSLASHfnotecite] = ACTIONS(9399), + [anon_sym_BSLASHusepackage] = ACTIONS(9405), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9408), + [anon_sym_BSLASHinclude] = ACTIONS(9411), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9411), + [anon_sym_BSLASHinput] = ACTIONS(9414), + [anon_sym_BSLASHsubfile] = ACTIONS(9414), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9417), + [anon_sym_BSLASHbibliography] = ACTIONS(9420), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9423), + [anon_sym_BSLASHincludesvg] = ACTIONS(9426), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9429), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9432), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9432), + [anon_sym_BSLASHimport] = ACTIONS(9435), + [anon_sym_BSLASHsubimport] = ACTIONS(9435), + [anon_sym_BSLASHinputfrom] = ACTIONS(9435), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9435), + [anon_sym_BSLASHincludefrom] = ACTIONS(9435), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9435), + [anon_sym_BSLASHlabel] = ACTIONS(9438), + [anon_sym_BSLASHref] = ACTIONS(9441), + [anon_sym_BSLASHvref] = ACTIONS(9441), + [anon_sym_BSLASHVref] = ACTIONS(9441), + [anon_sym_BSLASHautoref] = ACTIONS(9441), + [anon_sym_BSLASHpageref] = ACTIONS(9441), + [anon_sym_BSLASHcref] = ACTIONS(9441), + [anon_sym_BSLASHCref] = ACTIONS(9441), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9444), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9444), + [anon_sym_BSLASHnamecref] = ACTIONS(9441), + [anon_sym_BSLASHnameCref] = ACTIONS(9441), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9441), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9441), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9441), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9441), + [anon_sym_BSLASHlabelcref] = ACTIONS(9441), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9441), + [anon_sym_BSLASHeqref] = ACTIONS(9447), + [anon_sym_BSLASHcrefrange] = ACTIONS(9450), + [anon_sym_BSLASHCrefrange] = ACTIONS(9450), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9453), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9453), + [anon_sym_BSLASHnewlabel] = ACTIONS(9456), + [anon_sym_BSLASHnewcommand] = ACTIONS(9459), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9459), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9459), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9462), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9465), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9468), + [anon_sym_BSLASHgls] = ACTIONS(9471), + [anon_sym_BSLASHGls] = ACTIONS(9471), + [anon_sym_BSLASHGLS] = ACTIONS(9471), + [anon_sym_BSLASHglspl] = ACTIONS(9471), + [anon_sym_BSLASHGlspl] = ACTIONS(9471), + [anon_sym_BSLASHGLSpl] = ACTIONS(9471), + [anon_sym_BSLASHglsdisp] = ACTIONS(9471), + [anon_sym_BSLASHglslink] = ACTIONS(9471), + [anon_sym_BSLASHglstext] = ACTIONS(9471), + [anon_sym_BSLASHGlstext] = ACTIONS(9471), + [anon_sym_BSLASHGLStext] = ACTIONS(9471), + [anon_sym_BSLASHglsfirst] = ACTIONS(9471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9471), + [anon_sym_BSLASHglsplural] = ACTIONS(9471), + [anon_sym_BSLASHGlsplural] = ACTIONS(9471), + [anon_sym_BSLASHGLSplural] = ACTIONS(9471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9471), + [anon_sym_BSLASHglsname] = ACTIONS(9471), + [anon_sym_BSLASHGlsname] = ACTIONS(9471), + [anon_sym_BSLASHGLSname] = ACTIONS(9471), + [anon_sym_BSLASHglssymbol] = ACTIONS(9471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9471), + [anon_sym_BSLASHglsdesc] = ACTIONS(9471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9471), + [anon_sym_BSLASHglsuseri] = ACTIONS(9471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9471), + [anon_sym_BSLASHglsuserii] = ACTIONS(9471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9471), + [anon_sym_BSLASHglsuserv] = ACTIONS(9471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9471), + [anon_sym_BSLASHglsuservi] = ACTIONS(9471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9471), + [anon_sym_BSLASHnewacronym] = ACTIONS(9474), + [anon_sym_BSLASHacrshort] = ACTIONS(9477), + [anon_sym_BSLASHAcrshort] = ACTIONS(9477), + [anon_sym_BSLASHACRshort] = ACTIONS(9477), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9477), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9477), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9477), + [anon_sym_BSLASHacrlong] = ACTIONS(9477), + [anon_sym_BSLASHAcrlong] = ACTIONS(9477), + [anon_sym_BSLASHACRlong] = ACTIONS(9477), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9477), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9477), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9477), + [anon_sym_BSLASHacrfull] = ACTIONS(9477), + [anon_sym_BSLASHAcrfull] = ACTIONS(9477), + [anon_sym_BSLASHACRfull] = ACTIONS(9477), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9477), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9477), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9477), + [anon_sym_BSLASHacs] = ACTIONS(9477), + [anon_sym_BSLASHAcs] = ACTIONS(9477), + [anon_sym_BSLASHacsp] = ACTIONS(9477), + [anon_sym_BSLASHAcsp] = ACTIONS(9477), + [anon_sym_BSLASHacl] = ACTIONS(9477), + [anon_sym_BSLASHAcl] = ACTIONS(9477), + [anon_sym_BSLASHaclp] = ACTIONS(9477), + [anon_sym_BSLASHAclp] = ACTIONS(9477), + [anon_sym_BSLASHacf] = ACTIONS(9477), + [anon_sym_BSLASHAcf] = ACTIONS(9477), + [anon_sym_BSLASHacfp] = ACTIONS(9477), + [anon_sym_BSLASHAcfp] = ACTIONS(9477), + [anon_sym_BSLASHac] = ACTIONS(9477), + [anon_sym_BSLASHAc] = ACTIONS(9477), + [anon_sym_BSLASHacp] = ACTIONS(9477), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9477), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9477), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9477), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9477), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9477), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9477), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9477), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9477), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9477), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9477), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9480), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9480), + [anon_sym_BSLASHcolor] = ACTIONS(9483), + [anon_sym_BSLASHcolorbox] = ACTIONS(9483), + [anon_sym_BSLASHtextcolor] = ACTIONS(9483), + [anon_sym_BSLASHpagecolor] = ACTIONS(9483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9486), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9489), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9492), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9495), + }, + [410] = { + [sym__simple_content] = STATE(412), + [sym_brace_group] = STATE(412), + [sym_mixed_group] = STATE(412), + [sym_text] = STATE(412), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(412), + [sym_inline_formula] = STATE(412), + [sym_begin] = STATE(94), + [sym_environment] = STATE(412), + [sym_caption] = STATE(412), + [sym_citation] = STATE(412), + [sym_package_include] = STATE(412), + [sym_class_include] = STATE(412), + [sym_latex_include] = STATE(412), + [sym_latex_input] = STATE(412), + [sym_biblatex_include] = STATE(412), + [sym_bibtex_include] = STATE(412), + [sym_graphics_include] = STATE(412), + [sym_svg_include] = STATE(412), + [sym_inkscape_include] = STATE(412), + [sym_verbatim_include] = STATE(412), + [sym_import] = STATE(412), + [sym_label_definition] = STATE(412), + [sym_label_reference] = STATE(412), + [sym_equation_label_reference] = STATE(412), + [sym_label_reference_range] = STATE(412), + [sym_label_number] = STATE(412), + [sym_command_definition] = STATE(412), + [sym_math_operator] = STATE(412), + [sym_glossary_entry_definition] = STATE(412), + [sym_glossary_entry_reference] = STATE(412), + [sym_acronym_definition] = STATE(412), + [sym_acronym_reference] = STATE(412), + [sym_theorem_definition] = STATE(412), + [sym_color_reference] = STATE(412), + [sym_color_definition] = STATE(412), + [sym_color_set_definition] = STATE(412), + [sym_pgf_library_import] = STATE(412), + [sym_tikz_library_import] = STATE(412), + [sym_generic_command] = STATE(412), + [aux_sym_enum_item_repeat1] = STATE(412), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(5606), + [aux_sym_subsection_token1] = ACTIONS(5606), + [aux_sym_subsubsection_token1] = ACTIONS(5606), + [aux_sym_paragraph_token1] = ACTIONS(5606), + [aux_sym_subparagraph_token1] = ACTIONS(5606), + [anon_sym_BSLASHitem] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(9498), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [411] = { + [sym__simple_content] = STATE(419), + [sym_subparagraph] = STATE(419), + [sym_enum_item] = STATE(419), + [sym_brace_group] = STATE(419), + [sym_mixed_group] = STATE(419), + [sym_text] = STATE(419), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(419), + [sym_inline_formula] = STATE(419), + [sym_begin] = STATE(112), + [sym_environment] = STATE(419), + [sym_caption] = STATE(419), + [sym_citation] = STATE(419), + [sym_package_include] = STATE(419), + [sym_class_include] = STATE(419), + [sym_latex_include] = STATE(419), + [sym_latex_input] = STATE(419), + [sym_biblatex_include] = STATE(419), + [sym_bibtex_include] = STATE(419), + [sym_graphics_include] = STATE(419), + [sym_svg_include] = STATE(419), + [sym_inkscape_include] = STATE(419), + [sym_verbatim_include] = STATE(419), + [sym_import] = STATE(419), + [sym_label_definition] = STATE(419), + [sym_label_reference] = STATE(419), + [sym_equation_label_reference] = STATE(419), + [sym_label_reference_range] = STATE(419), + [sym_label_number] = STATE(419), + [sym_command_definition] = STATE(419), + [sym_math_operator] = STATE(419), + [sym_glossary_entry_definition] = STATE(419), + [sym_glossary_entry_reference] = STATE(419), + [sym_acronym_definition] = STATE(419), + [sym_acronym_reference] = STATE(419), + [sym_theorem_definition] = STATE(419), + [sym_color_reference] = STATE(419), + [sym_color_definition] = STATE(419), + [sym_color_set_definition] = STATE(419), + [sym_pgf_library_import] = STATE(419), + [sym_tikz_library_import] = STATE(419), + [sym_generic_command] = STATE(419), + [aux_sym_paragraph_repeat1] = STATE(419), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(7652), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(4054), + [aux_sym_paragraph_token1] = ACTIONS(4054), + [aux_sym_subparagraph_token1] = ACTIONS(7658), + [anon_sym_BSLASHitem] = ACTIONS(7660), + [anon_sym_LBRACK] = ACTIONS(7662), + [anon_sym_RBRACK] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(4052), + [anon_sym_LPAREN] = ACTIONS(7662), + [anon_sym_COMMA] = ACTIONS(7666), + [anon_sym_EQ] = ACTIONS(7666), + [sym_word] = ACTIONS(7666), + [sym_param] = ACTIONS(9500), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7670), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7670), + [anon_sym_DOLLAR] = ACTIONS(7672), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7674), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7676), + [anon_sym_BSLASHcite] = ACTIONS(7678), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCite] = ACTIONS(7678), + [anon_sym_BSLASHnocite] = ACTIONS(7678), + [anon_sym_BSLASHcitet] = ACTIONS(7678), + [anon_sym_BSLASHcitep] = ACTIONS(7678), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteauthor] = ACTIONS(7678), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7678), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitetitle] = ACTIONS(7678), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteyear] = ACTIONS(7678), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitedate] = ACTIONS(7678), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteurl] = ACTIONS(7678), + [anon_sym_BSLASHfullcite] = ACTIONS(7678), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7678), + [anon_sym_BSLASHcitealt] = ACTIONS(7678), + [anon_sym_BSLASHcitealp] = ACTIONS(7678), + [anon_sym_BSLASHcitetext] = ACTIONS(7678), + [anon_sym_BSLASHparencite] = ACTIONS(7678), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHParencite] = ACTIONS(7678), + [anon_sym_BSLASHfootcite] = ACTIONS(7678), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7678), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7678), + [anon_sym_BSLASHtextcite] = ACTIONS(7678), + [anon_sym_BSLASHTextcite] = ACTIONS(7678), + [anon_sym_BSLASHsmartcite] = ACTIONS(7678), + [anon_sym_BSLASHSmartcite] = ACTIONS(7678), + [anon_sym_BSLASHsupercite] = ACTIONS(7678), + [anon_sym_BSLASHautocite] = ACTIONS(7678), + [anon_sym_BSLASHAutocite] = ACTIONS(7678), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHvolcite] = ACTIONS(7678), + [anon_sym_BSLASHVolcite] = ACTIONS(7678), + [anon_sym_BSLASHpvolcite] = ACTIONS(7678), + [anon_sym_BSLASHPvolcite] = ACTIONS(7678), + [anon_sym_BSLASHfvolcite] = ACTIONS(7678), + [anon_sym_BSLASHftvolcite] = ACTIONS(7678), + [anon_sym_BSLASHsvolcite] = ACTIONS(7678), + [anon_sym_BSLASHSvolcite] = ACTIONS(7678), + [anon_sym_BSLASHtvolcite] = ACTIONS(7678), + [anon_sym_BSLASHTvolcite] = ACTIONS(7678), + [anon_sym_BSLASHavolcite] = ACTIONS(7678), + [anon_sym_BSLASHAvolcite] = ACTIONS(7678), + [anon_sym_BSLASHnotecite] = ACTIONS(7678), + [anon_sym_BSLASHpnotecite] = ACTIONS(7678), + [anon_sym_BSLASHPnotecite] = ACTIONS(7678), + [anon_sym_BSLASHfnotecite] = ACTIONS(7678), + [anon_sym_BSLASHusepackage] = ACTIONS(7682), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7684), + [anon_sym_BSLASHinclude] = ACTIONS(7686), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7686), + [anon_sym_BSLASHinput] = ACTIONS(7688), + [anon_sym_BSLASHsubfile] = ACTIONS(7688), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7690), + [anon_sym_BSLASHbibliography] = ACTIONS(7692), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7694), + [anon_sym_BSLASHincludesvg] = ACTIONS(7696), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7698), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7700), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7700), + [anon_sym_BSLASHimport] = ACTIONS(7702), + [anon_sym_BSLASHsubimport] = ACTIONS(7702), + [anon_sym_BSLASHinputfrom] = ACTIONS(7702), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7702), + [anon_sym_BSLASHincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHlabel] = ACTIONS(7704), + [anon_sym_BSLASHref] = ACTIONS(7706), + [anon_sym_BSLASHvref] = ACTIONS(7706), + [anon_sym_BSLASHVref] = ACTIONS(7706), + [anon_sym_BSLASHautoref] = ACTIONS(7706), + [anon_sym_BSLASHpageref] = ACTIONS(7706), + [anon_sym_BSLASHcref] = ACTIONS(7706), + [anon_sym_BSLASHCref] = ACTIONS(7706), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnameCref] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHlabelcref] = ACTIONS(7706), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7706), + [anon_sym_BSLASHeqref] = ACTIONS(7710), + [anon_sym_BSLASHcrefrange] = ACTIONS(7712), + [anon_sym_BSLASHCrefrange] = ACTIONS(7712), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHnewlabel] = ACTIONS(7716), + [anon_sym_BSLASHnewcommand] = ACTIONS(7718), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7720), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7722), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7724), + [anon_sym_BSLASHgls] = ACTIONS(7726), + [anon_sym_BSLASHGls] = ACTIONS(7726), + [anon_sym_BSLASHGLS] = ACTIONS(7726), + [anon_sym_BSLASHglspl] = ACTIONS(7726), + [anon_sym_BSLASHGlspl] = ACTIONS(7726), + [anon_sym_BSLASHGLSpl] = ACTIONS(7726), + [anon_sym_BSLASHglsdisp] = ACTIONS(7726), + [anon_sym_BSLASHglslink] = ACTIONS(7726), + [anon_sym_BSLASHglstext] = ACTIONS(7726), + [anon_sym_BSLASHGlstext] = ACTIONS(7726), + [anon_sym_BSLASHGLStext] = ACTIONS(7726), + [anon_sym_BSLASHglsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7726), + [anon_sym_BSLASHglsplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSplural] = ACTIONS(7726), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHglsname] = ACTIONS(7726), + [anon_sym_BSLASHGlsname] = ACTIONS(7726), + [anon_sym_BSLASHGLSname] = ACTIONS(7726), + [anon_sym_BSLASHglssymbol] = ACTIONS(7726), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7726), + [anon_sym_BSLASHglsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7726), + [anon_sym_BSLASHglsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7726), + [anon_sym_BSLASHglsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7726), + [anon_sym_BSLASHglsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7726), + [anon_sym_BSLASHglsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7726), + [anon_sym_BSLASHnewacronym] = ACTIONS(7728), + [anon_sym_BSLASHacrshort] = ACTIONS(7730), + [anon_sym_BSLASHAcrshort] = ACTIONS(7730), + [anon_sym_BSLASHACRshort] = ACTIONS(7730), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7730), + [anon_sym_BSLASHacrlong] = ACTIONS(7730), + [anon_sym_BSLASHAcrlong] = ACTIONS(7730), + [anon_sym_BSLASHACRlong] = ACTIONS(7730), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7730), + [anon_sym_BSLASHacrfull] = ACTIONS(7730), + [anon_sym_BSLASHAcrfull] = ACTIONS(7730), + [anon_sym_BSLASHACRfull] = ACTIONS(7730), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7730), + [anon_sym_BSLASHacs] = ACTIONS(7730), + [anon_sym_BSLASHAcs] = ACTIONS(7730), + [anon_sym_BSLASHacsp] = ACTIONS(7730), + [anon_sym_BSLASHAcsp] = ACTIONS(7730), + [anon_sym_BSLASHacl] = ACTIONS(7730), + [anon_sym_BSLASHAcl] = ACTIONS(7730), + [anon_sym_BSLASHaclp] = ACTIONS(7730), + [anon_sym_BSLASHAclp] = ACTIONS(7730), + [anon_sym_BSLASHacf] = ACTIONS(7730), + [anon_sym_BSLASHAcf] = ACTIONS(7730), + [anon_sym_BSLASHacfp] = ACTIONS(7730), + [anon_sym_BSLASHAcfp] = ACTIONS(7730), + [anon_sym_BSLASHac] = ACTIONS(7730), + [anon_sym_BSLASHAc] = ACTIONS(7730), + [anon_sym_BSLASHacp] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7732), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7732), + [anon_sym_BSLASHcolor] = ACTIONS(7734), + [anon_sym_BSLASHcolorbox] = ACTIONS(7734), + [anon_sym_BSLASHtextcolor] = ACTIONS(7734), + [anon_sym_BSLASHpagecolor] = ACTIONS(7734), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7736), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7738), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7740), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7742), + }, + [412] = { + [sym__simple_content] = STATE(421), + [sym_brace_group] = STATE(421), + [sym_mixed_group] = STATE(421), + [sym_text] = STATE(421), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(421), + [sym_inline_formula] = STATE(421), + [sym_begin] = STATE(94), + [sym_environment] = STATE(421), + [sym_caption] = STATE(421), + [sym_citation] = STATE(421), + [sym_package_include] = STATE(421), + [sym_class_include] = STATE(421), + [sym_latex_include] = STATE(421), + [sym_latex_input] = STATE(421), + [sym_biblatex_include] = STATE(421), + [sym_bibtex_include] = STATE(421), + [sym_graphics_include] = STATE(421), + [sym_svg_include] = STATE(421), + [sym_inkscape_include] = STATE(421), + [sym_verbatim_include] = STATE(421), + [sym_import] = STATE(421), + [sym_label_definition] = STATE(421), + [sym_label_reference] = STATE(421), + [sym_equation_label_reference] = STATE(421), + [sym_label_reference_range] = STATE(421), + [sym_label_number] = STATE(421), + [sym_command_definition] = STATE(421), + [sym_math_operator] = STATE(421), + [sym_glossary_entry_definition] = STATE(421), + [sym_glossary_entry_reference] = STATE(421), + [sym_acronym_definition] = STATE(421), + [sym_acronym_reference] = STATE(421), + [sym_theorem_definition] = STATE(421), + [sym_color_reference] = STATE(421), + [sym_color_definition] = STATE(421), + [sym_color_set_definition] = STATE(421), + [sym_pgf_library_import] = STATE(421), + [sym_tikz_library_import] = STATE(421), + [sym_generic_command] = STATE(421), + [aux_sym_enum_item_repeat1] = STATE(421), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(6177), + [aux_sym_subsection_token1] = ACTIONS(6177), + [aux_sym_subsubsection_token1] = ACTIONS(6177), + [aux_sym_paragraph_token1] = ACTIONS(6177), + [aux_sym_subparagraph_token1] = ACTIONS(6177), + [anon_sym_BSLASHitem] = ACTIONS(6177), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(6175), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(9502), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [413] = { + [sym__simple_content] = STATE(413), + [sym_paragraph] = STATE(413), + [sym_subparagraph] = STATE(413), + [sym_enum_item] = STATE(413), + [sym_brace_group] = STATE(413), + [sym_mixed_group] = STATE(413), + [sym_text] = STATE(413), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(413), + [sym_inline_formula] = STATE(413), + [sym_begin] = STATE(99), + [sym_environment] = STATE(413), + [sym_caption] = STATE(413), + [sym_citation] = STATE(413), + [sym_package_include] = STATE(413), + [sym_class_include] = STATE(413), + [sym_latex_include] = STATE(413), + [sym_latex_input] = STATE(413), + [sym_biblatex_include] = STATE(413), + [sym_bibtex_include] = STATE(413), + [sym_graphics_include] = STATE(413), + [sym_svg_include] = STATE(413), + [sym_inkscape_include] = STATE(413), + [sym_verbatim_include] = STATE(413), + [sym_import] = STATE(413), + [sym_label_definition] = STATE(413), + [sym_label_reference] = STATE(413), + [sym_equation_label_reference] = STATE(413), + [sym_label_reference_range] = STATE(413), + [sym_label_number] = STATE(413), + [sym_command_definition] = STATE(413), + [sym_math_operator] = STATE(413), + [sym_glossary_entry_definition] = STATE(413), + [sym_glossary_entry_reference] = STATE(413), + [sym_acronym_definition] = STATE(413), + [sym_acronym_reference] = STATE(413), + [sym_theorem_definition] = STATE(413), + [sym_color_reference] = STATE(413), + [sym_color_definition] = STATE(413), + [sym_color_set_definition] = STATE(413), + [sym_pgf_library_import] = STATE(413), + [sym_tikz_library_import] = STATE(413), + [sym_generic_command] = STATE(413), + [aux_sym_subsubsection_repeat1] = STATE(413), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(9504), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(9507), + [aux_sym_subparagraph_token1] = ACTIONS(9510), + [anon_sym_BSLASHitem] = ACTIONS(9513), + [anon_sym_LBRACK] = ACTIONS(9516), + [anon_sym_RBRACK] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(9519), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(9516), + [anon_sym_COMMA] = ACTIONS(9522), + [anon_sym_EQ] = ACTIONS(9522), + [sym_word] = ACTIONS(9522), + [sym_param] = ACTIONS(9525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9528), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9528), + [anon_sym_DOLLAR] = ACTIONS(9531), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9534), + [anon_sym_BSLASHbegin] = ACTIONS(3357), + [anon_sym_BSLASHcaption] = ACTIONS(9537), + [anon_sym_BSLASHcite] = ACTIONS(9540), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9543), + [anon_sym_BSLASHCite] = ACTIONS(9540), + [anon_sym_BSLASHnocite] = ACTIONS(9540), + [anon_sym_BSLASHcitet] = ACTIONS(9540), + [anon_sym_BSLASHcitep] = ACTIONS(9540), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9543), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9543), + [anon_sym_BSLASHciteauthor] = ACTIONS(9540), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9543), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9540), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9543), + [anon_sym_BSLASHcitetitle] = ACTIONS(9540), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9543), + [anon_sym_BSLASHciteyear] = ACTIONS(9540), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9543), + [anon_sym_BSLASHcitedate] = ACTIONS(9540), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9543), + [anon_sym_BSLASHciteurl] = ACTIONS(9540), + [anon_sym_BSLASHfullcite] = ACTIONS(9540), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9540), + [anon_sym_BSLASHcitealt] = ACTIONS(9540), + [anon_sym_BSLASHcitealp] = ACTIONS(9540), + [anon_sym_BSLASHcitetext] = ACTIONS(9540), + [anon_sym_BSLASHparencite] = ACTIONS(9540), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9543), + [anon_sym_BSLASHParencite] = ACTIONS(9540), + [anon_sym_BSLASHfootcite] = ACTIONS(9540), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9540), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9540), + [anon_sym_BSLASHtextcite] = ACTIONS(9540), + [anon_sym_BSLASHTextcite] = ACTIONS(9540), + [anon_sym_BSLASHsmartcite] = ACTIONS(9540), + [anon_sym_BSLASHSmartcite] = ACTIONS(9540), + [anon_sym_BSLASHsupercite] = ACTIONS(9540), + [anon_sym_BSLASHautocite] = ACTIONS(9540), + [anon_sym_BSLASHAutocite] = ACTIONS(9540), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9543), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9543), + [anon_sym_BSLASHvolcite] = ACTIONS(9540), + [anon_sym_BSLASHVolcite] = ACTIONS(9540), + [anon_sym_BSLASHpvolcite] = ACTIONS(9540), + [anon_sym_BSLASHPvolcite] = ACTIONS(9540), + [anon_sym_BSLASHfvolcite] = ACTIONS(9540), + [anon_sym_BSLASHftvolcite] = ACTIONS(9540), + [anon_sym_BSLASHsvolcite] = ACTIONS(9540), + [anon_sym_BSLASHSvolcite] = ACTIONS(9540), + [anon_sym_BSLASHtvolcite] = ACTIONS(9540), + [anon_sym_BSLASHTvolcite] = ACTIONS(9540), + [anon_sym_BSLASHavolcite] = ACTIONS(9540), + [anon_sym_BSLASHAvolcite] = ACTIONS(9540), + [anon_sym_BSLASHnotecite] = ACTIONS(9540), + [anon_sym_BSLASHpnotecite] = ACTIONS(9540), + [anon_sym_BSLASHPnotecite] = ACTIONS(9540), + [anon_sym_BSLASHfnotecite] = ACTIONS(9540), + [anon_sym_BSLASHusepackage] = ACTIONS(9546), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9546), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9549), + [anon_sym_BSLASHinclude] = ACTIONS(9552), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9552), + [anon_sym_BSLASHinput] = ACTIONS(9555), + [anon_sym_BSLASHsubfile] = ACTIONS(9555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9558), + [anon_sym_BSLASHbibliography] = ACTIONS(9561), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9564), + [anon_sym_BSLASHincludesvg] = ACTIONS(9567), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9570), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9573), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9573), + [anon_sym_BSLASHimport] = ACTIONS(9576), + [anon_sym_BSLASHsubimport] = ACTIONS(9576), + [anon_sym_BSLASHinputfrom] = ACTIONS(9576), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9576), + [anon_sym_BSLASHincludefrom] = ACTIONS(9576), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9576), + [anon_sym_BSLASHlabel] = ACTIONS(9579), + [anon_sym_BSLASHref] = ACTIONS(9582), + [anon_sym_BSLASHvref] = ACTIONS(9582), + [anon_sym_BSLASHVref] = ACTIONS(9582), + [anon_sym_BSLASHautoref] = ACTIONS(9582), + [anon_sym_BSLASHpageref] = ACTIONS(9582), + [anon_sym_BSLASHcref] = ACTIONS(9582), + [anon_sym_BSLASHCref] = ACTIONS(9582), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9585), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9585), + [anon_sym_BSLASHnamecref] = ACTIONS(9582), + [anon_sym_BSLASHnameCref] = ACTIONS(9582), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9582), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9582), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9582), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9582), + [anon_sym_BSLASHlabelcref] = ACTIONS(9582), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9582), + [anon_sym_BSLASHeqref] = ACTIONS(9588), + [anon_sym_BSLASHcrefrange] = ACTIONS(9591), + [anon_sym_BSLASHCrefrange] = ACTIONS(9591), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9594), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9594), + [anon_sym_BSLASHnewlabel] = ACTIONS(9597), + [anon_sym_BSLASHnewcommand] = ACTIONS(9600), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9600), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9600), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9603), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9606), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9609), + [anon_sym_BSLASHgls] = ACTIONS(9612), + [anon_sym_BSLASHGls] = ACTIONS(9612), + [anon_sym_BSLASHGLS] = ACTIONS(9612), + [anon_sym_BSLASHglspl] = ACTIONS(9612), + [anon_sym_BSLASHGlspl] = ACTIONS(9612), + [anon_sym_BSLASHGLSpl] = ACTIONS(9612), + [anon_sym_BSLASHglsdisp] = ACTIONS(9612), + [anon_sym_BSLASHglslink] = ACTIONS(9612), + [anon_sym_BSLASHglstext] = ACTIONS(9612), + [anon_sym_BSLASHGlstext] = ACTIONS(9612), + [anon_sym_BSLASHGLStext] = ACTIONS(9612), + [anon_sym_BSLASHglsfirst] = ACTIONS(9612), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9612), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9612), + [anon_sym_BSLASHglsplural] = ACTIONS(9612), + [anon_sym_BSLASHGlsplural] = ACTIONS(9612), + [anon_sym_BSLASHGLSplural] = ACTIONS(9612), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9612), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9612), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9612), + [anon_sym_BSLASHglsname] = ACTIONS(9612), + [anon_sym_BSLASHGlsname] = ACTIONS(9612), + [anon_sym_BSLASHGLSname] = ACTIONS(9612), + [anon_sym_BSLASHglssymbol] = ACTIONS(9612), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9612), + [anon_sym_BSLASHglsdesc] = ACTIONS(9612), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9612), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9612), + [anon_sym_BSLASHglsuseri] = ACTIONS(9612), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9612), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9612), + [anon_sym_BSLASHglsuserii] = ACTIONS(9612), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9612), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9612), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9612), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9612), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9612), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9612), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9612), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9612), + [anon_sym_BSLASHglsuserv] = ACTIONS(9612), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9612), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9612), + [anon_sym_BSLASHglsuservi] = ACTIONS(9612), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9612), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9612), + [anon_sym_BSLASHnewacronym] = ACTIONS(9615), + [anon_sym_BSLASHacrshort] = ACTIONS(9618), + [anon_sym_BSLASHAcrshort] = ACTIONS(9618), + [anon_sym_BSLASHACRshort] = ACTIONS(9618), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9618), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9618), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9618), + [anon_sym_BSLASHacrlong] = ACTIONS(9618), + [anon_sym_BSLASHAcrlong] = ACTIONS(9618), + [anon_sym_BSLASHACRlong] = ACTIONS(9618), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9618), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9618), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9618), + [anon_sym_BSLASHacrfull] = ACTIONS(9618), + [anon_sym_BSLASHAcrfull] = ACTIONS(9618), + [anon_sym_BSLASHACRfull] = ACTIONS(9618), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9618), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9618), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9618), + [anon_sym_BSLASHacs] = ACTIONS(9618), + [anon_sym_BSLASHAcs] = ACTIONS(9618), + [anon_sym_BSLASHacsp] = ACTIONS(9618), + [anon_sym_BSLASHAcsp] = ACTIONS(9618), + [anon_sym_BSLASHacl] = ACTIONS(9618), + [anon_sym_BSLASHAcl] = ACTIONS(9618), + [anon_sym_BSLASHaclp] = ACTIONS(9618), + [anon_sym_BSLASHAclp] = ACTIONS(9618), + [anon_sym_BSLASHacf] = ACTIONS(9618), + [anon_sym_BSLASHAcf] = ACTIONS(9618), + [anon_sym_BSLASHacfp] = ACTIONS(9618), + [anon_sym_BSLASHAcfp] = ACTIONS(9618), + [anon_sym_BSLASHac] = ACTIONS(9618), + [anon_sym_BSLASHAc] = ACTIONS(9618), + [anon_sym_BSLASHacp] = ACTIONS(9618), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9618), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9618), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9618), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9618), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9618), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9618), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9618), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9618), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9618), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9618), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9621), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9621), + [anon_sym_BSLASHcolor] = ACTIONS(9624), + [anon_sym_BSLASHcolorbox] = ACTIONS(9624), + [anon_sym_BSLASHtextcolor] = ACTIONS(9624), + [anon_sym_BSLASHpagecolor] = ACTIONS(9624), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9627), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9630), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9633), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9636), + }, + [414] = { + [sym__simple_content] = STATE(420), + [sym_enum_item] = STATE(420), + [sym_brace_group] = STATE(420), + [sym_mixed_group] = STATE(420), + [sym_text] = STATE(420), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(420), + [sym_inline_formula] = STATE(420), + [sym_begin] = STATE(105), + [sym_environment] = STATE(420), + [sym_caption] = STATE(420), + [sym_citation] = STATE(420), + [sym_package_include] = STATE(420), + [sym_class_include] = STATE(420), + [sym_latex_include] = STATE(420), + [sym_latex_input] = STATE(420), + [sym_biblatex_include] = STATE(420), + [sym_bibtex_include] = STATE(420), + [sym_graphics_include] = STATE(420), + [sym_svg_include] = STATE(420), + [sym_inkscape_include] = STATE(420), + [sym_verbatim_include] = STATE(420), + [sym_import] = STATE(420), + [sym_label_definition] = STATE(420), + [sym_label_reference] = STATE(420), + [sym_equation_label_reference] = STATE(420), + [sym_label_reference_range] = STATE(420), + [sym_label_number] = STATE(420), + [sym_command_definition] = STATE(420), + [sym_math_operator] = STATE(420), + [sym_glossary_entry_definition] = STATE(420), + [sym_glossary_entry_reference] = STATE(420), + [sym_acronym_definition] = STATE(420), + [sym_acronym_reference] = STATE(420), + [sym_theorem_definition] = STATE(420), + [sym_color_reference] = STATE(420), + [sym_color_definition] = STATE(420), + [sym_color_set_definition] = STATE(420), + [sym_pgf_library_import] = STATE(420), + [sym_tikz_library_import] = STATE(420), + [sym_generic_command] = STATE(420), + [aux_sym_subparagraph_repeat1] = STATE(420), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(5168), + [aux_sym_subsubsection_token1] = ACTIONS(5168), + [aux_sym_paragraph_token1] = ACTIONS(5168), + [aux_sym_subparagraph_token1] = ACTIONS(5168), + [anon_sym_BSLASHitem] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(9639), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [415] = { + [sym__simple_content] = STATE(415), + [sym_subparagraph] = STATE(415), + [sym_enum_item] = STATE(415), + [sym_brace_group] = STATE(415), + [sym_mixed_group] = STATE(415), + [sym_text] = STATE(415), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(415), + [sym_inline_formula] = STATE(415), + [sym_begin] = STATE(112), + [sym_environment] = STATE(415), + [sym_caption] = STATE(415), + [sym_citation] = STATE(415), + [sym_package_include] = STATE(415), + [sym_class_include] = STATE(415), + [sym_latex_include] = STATE(415), + [sym_latex_input] = STATE(415), + [sym_biblatex_include] = STATE(415), + [sym_bibtex_include] = STATE(415), + [sym_graphics_include] = STATE(415), + [sym_svg_include] = STATE(415), + [sym_inkscape_include] = STATE(415), + [sym_verbatim_include] = STATE(415), + [sym_import] = STATE(415), + [sym_label_definition] = STATE(415), + [sym_label_reference] = STATE(415), + [sym_equation_label_reference] = STATE(415), + [sym_label_reference_range] = STATE(415), + [sym_label_number] = STATE(415), + [sym_command_definition] = STATE(415), + [sym_math_operator] = STATE(415), + [sym_glossary_entry_definition] = STATE(415), + [sym_glossary_entry_reference] = STATE(415), + [sym_acronym_definition] = STATE(415), + [sym_acronym_reference] = STATE(415), + [sym_theorem_definition] = STATE(415), + [sym_color_reference] = STATE(415), + [sym_color_definition] = STATE(415), + [sym_color_set_definition] = STATE(415), + [sym_pgf_library_import] = STATE(415), + [sym_tikz_library_import] = STATE(415), + [sym_generic_command] = STATE(415), + [aux_sym_paragraph_repeat1] = STATE(415), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(9641), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(4165), + [aux_sym_paragraph_token1] = ACTIONS(4165), + [aux_sym_subparagraph_token1] = ACTIONS(9644), + [anon_sym_BSLASHitem] = ACTIONS(9647), + [anon_sym_LBRACK] = ACTIONS(9650), + [anon_sym_RBRACK] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(9653), + [anon_sym_RBRACE] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(9650), + [anon_sym_COMMA] = ACTIONS(9656), + [anon_sym_EQ] = ACTIONS(9656), + [sym_word] = ACTIONS(9656), + [sym_param] = ACTIONS(9659), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9662), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9662), + [anon_sym_DOLLAR] = ACTIONS(9665), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9668), + [anon_sym_BSLASHbegin] = ACTIONS(4194), + [anon_sym_BSLASHcaption] = ACTIONS(9671), + [anon_sym_BSLASHcite] = ACTIONS(9674), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9677), + [anon_sym_BSLASHCite] = ACTIONS(9674), + [anon_sym_BSLASHnocite] = ACTIONS(9674), + [anon_sym_BSLASHcitet] = ACTIONS(9674), + [anon_sym_BSLASHcitep] = ACTIONS(9674), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9677), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9677), + [anon_sym_BSLASHciteauthor] = ACTIONS(9674), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9677), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9674), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9677), + [anon_sym_BSLASHcitetitle] = ACTIONS(9674), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9677), + [anon_sym_BSLASHciteyear] = ACTIONS(9674), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9677), + [anon_sym_BSLASHcitedate] = ACTIONS(9674), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9677), + [anon_sym_BSLASHciteurl] = ACTIONS(9674), + [anon_sym_BSLASHfullcite] = ACTIONS(9674), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9674), + [anon_sym_BSLASHcitealt] = ACTIONS(9674), + [anon_sym_BSLASHcitealp] = ACTIONS(9674), + [anon_sym_BSLASHcitetext] = ACTIONS(9674), + [anon_sym_BSLASHparencite] = ACTIONS(9674), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9677), + [anon_sym_BSLASHParencite] = ACTIONS(9674), + [anon_sym_BSLASHfootcite] = ACTIONS(9674), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9674), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9674), + [anon_sym_BSLASHtextcite] = ACTIONS(9674), + [anon_sym_BSLASHTextcite] = ACTIONS(9674), + [anon_sym_BSLASHsmartcite] = ACTIONS(9674), + [anon_sym_BSLASHSmartcite] = ACTIONS(9674), + [anon_sym_BSLASHsupercite] = ACTIONS(9674), + [anon_sym_BSLASHautocite] = ACTIONS(9674), + [anon_sym_BSLASHAutocite] = ACTIONS(9674), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9677), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9677), + [anon_sym_BSLASHvolcite] = ACTIONS(9674), + [anon_sym_BSLASHVolcite] = ACTIONS(9674), + [anon_sym_BSLASHpvolcite] = ACTIONS(9674), + [anon_sym_BSLASHPvolcite] = ACTIONS(9674), + [anon_sym_BSLASHfvolcite] = ACTIONS(9674), + [anon_sym_BSLASHftvolcite] = ACTIONS(9674), + [anon_sym_BSLASHsvolcite] = ACTIONS(9674), + [anon_sym_BSLASHSvolcite] = ACTIONS(9674), + [anon_sym_BSLASHtvolcite] = ACTIONS(9674), + [anon_sym_BSLASHTvolcite] = ACTIONS(9674), + [anon_sym_BSLASHavolcite] = ACTIONS(9674), + [anon_sym_BSLASHAvolcite] = ACTIONS(9674), + [anon_sym_BSLASHnotecite] = ACTIONS(9674), + [anon_sym_BSLASHpnotecite] = ACTIONS(9674), + [anon_sym_BSLASHPnotecite] = ACTIONS(9674), + [anon_sym_BSLASHfnotecite] = ACTIONS(9674), + [anon_sym_BSLASHusepackage] = ACTIONS(9680), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9680), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9683), + [anon_sym_BSLASHinclude] = ACTIONS(9686), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9686), + [anon_sym_BSLASHinput] = ACTIONS(9689), + [anon_sym_BSLASHsubfile] = ACTIONS(9689), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9692), + [anon_sym_BSLASHbibliography] = ACTIONS(9695), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9698), + [anon_sym_BSLASHincludesvg] = ACTIONS(9701), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9704), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9707), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9707), + [anon_sym_BSLASHimport] = ACTIONS(9710), + [anon_sym_BSLASHsubimport] = ACTIONS(9710), + [anon_sym_BSLASHinputfrom] = ACTIONS(9710), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9710), + [anon_sym_BSLASHincludefrom] = ACTIONS(9710), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9710), + [anon_sym_BSLASHlabel] = ACTIONS(9713), + [anon_sym_BSLASHref] = ACTIONS(9716), + [anon_sym_BSLASHvref] = ACTIONS(9716), + [anon_sym_BSLASHVref] = ACTIONS(9716), + [anon_sym_BSLASHautoref] = ACTIONS(9716), + [anon_sym_BSLASHpageref] = ACTIONS(9716), + [anon_sym_BSLASHcref] = ACTIONS(9716), + [anon_sym_BSLASHCref] = ACTIONS(9716), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9719), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9719), + [anon_sym_BSLASHnamecref] = ACTIONS(9716), + [anon_sym_BSLASHnameCref] = ACTIONS(9716), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9716), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9716), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9716), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9716), + [anon_sym_BSLASHlabelcref] = ACTIONS(9716), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9716), + [anon_sym_BSLASHeqref] = ACTIONS(9722), + [anon_sym_BSLASHcrefrange] = ACTIONS(9725), + [anon_sym_BSLASHCrefrange] = ACTIONS(9725), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9728), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9728), + [anon_sym_BSLASHnewlabel] = ACTIONS(9731), + [anon_sym_BSLASHnewcommand] = ACTIONS(9734), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9734), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9734), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9737), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9740), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9743), + [anon_sym_BSLASHgls] = ACTIONS(9746), + [anon_sym_BSLASHGls] = ACTIONS(9746), + [anon_sym_BSLASHGLS] = ACTIONS(9746), + [anon_sym_BSLASHglspl] = ACTIONS(9746), + [anon_sym_BSLASHGlspl] = ACTIONS(9746), + [anon_sym_BSLASHGLSpl] = ACTIONS(9746), + [anon_sym_BSLASHglsdisp] = ACTIONS(9746), + [anon_sym_BSLASHglslink] = ACTIONS(9746), + [anon_sym_BSLASHglstext] = ACTIONS(9746), + [anon_sym_BSLASHGlstext] = ACTIONS(9746), + [anon_sym_BSLASHGLStext] = ACTIONS(9746), + [anon_sym_BSLASHglsfirst] = ACTIONS(9746), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9746), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9746), + [anon_sym_BSLASHglsplural] = ACTIONS(9746), + [anon_sym_BSLASHGlsplural] = ACTIONS(9746), + [anon_sym_BSLASHGLSplural] = ACTIONS(9746), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9746), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9746), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9746), + [anon_sym_BSLASHglsname] = ACTIONS(9746), + [anon_sym_BSLASHGlsname] = ACTIONS(9746), + [anon_sym_BSLASHGLSname] = ACTIONS(9746), + [anon_sym_BSLASHglssymbol] = ACTIONS(9746), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9746), + [anon_sym_BSLASHglsdesc] = ACTIONS(9746), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9746), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9746), + [anon_sym_BSLASHglsuseri] = ACTIONS(9746), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9746), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9746), + [anon_sym_BSLASHglsuserii] = ACTIONS(9746), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9746), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9746), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9746), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9746), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9746), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9746), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9746), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9746), + [anon_sym_BSLASHglsuserv] = ACTIONS(9746), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9746), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9746), + [anon_sym_BSLASHglsuservi] = ACTIONS(9746), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9746), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9746), + [anon_sym_BSLASHnewacronym] = ACTIONS(9749), + [anon_sym_BSLASHacrshort] = ACTIONS(9752), + [anon_sym_BSLASHAcrshort] = ACTIONS(9752), + [anon_sym_BSLASHACRshort] = ACTIONS(9752), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9752), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9752), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9752), + [anon_sym_BSLASHacrlong] = ACTIONS(9752), + [anon_sym_BSLASHAcrlong] = ACTIONS(9752), + [anon_sym_BSLASHACRlong] = ACTIONS(9752), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9752), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9752), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9752), + [anon_sym_BSLASHacrfull] = ACTIONS(9752), + [anon_sym_BSLASHAcrfull] = ACTIONS(9752), + [anon_sym_BSLASHACRfull] = ACTIONS(9752), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9752), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9752), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9752), + [anon_sym_BSLASHacs] = ACTIONS(9752), + [anon_sym_BSLASHAcs] = ACTIONS(9752), + [anon_sym_BSLASHacsp] = ACTIONS(9752), + [anon_sym_BSLASHAcsp] = ACTIONS(9752), + [anon_sym_BSLASHacl] = ACTIONS(9752), + [anon_sym_BSLASHAcl] = ACTIONS(9752), + [anon_sym_BSLASHaclp] = ACTIONS(9752), + [anon_sym_BSLASHAclp] = ACTIONS(9752), + [anon_sym_BSLASHacf] = ACTIONS(9752), + [anon_sym_BSLASHAcf] = ACTIONS(9752), + [anon_sym_BSLASHacfp] = ACTIONS(9752), + [anon_sym_BSLASHAcfp] = ACTIONS(9752), + [anon_sym_BSLASHac] = ACTIONS(9752), + [anon_sym_BSLASHAc] = ACTIONS(9752), + [anon_sym_BSLASHacp] = ACTIONS(9752), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9752), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9752), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9752), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9752), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9752), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9752), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9752), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9752), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9752), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9752), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9755), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9755), + [anon_sym_BSLASHcolor] = ACTIONS(9758), + [anon_sym_BSLASHcolorbox] = ACTIONS(9758), + [anon_sym_BSLASHtextcolor] = ACTIONS(9758), + [anon_sym_BSLASHpagecolor] = ACTIONS(9758), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9761), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9764), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9767), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9770), + }, + [416] = { + [sym__simple_content] = STATE(421), + [sym_brace_group] = STATE(421), + [sym_mixed_group] = STATE(421), + [sym_text] = STATE(421), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(421), + [sym_inline_formula] = STATE(421), + [sym_begin] = STATE(94), + [sym_environment] = STATE(421), + [sym_caption] = STATE(421), + [sym_citation] = STATE(421), + [sym_package_include] = STATE(421), + [sym_class_include] = STATE(421), + [sym_latex_include] = STATE(421), + [sym_latex_input] = STATE(421), + [sym_biblatex_include] = STATE(421), + [sym_bibtex_include] = STATE(421), + [sym_graphics_include] = STATE(421), + [sym_svg_include] = STATE(421), + [sym_inkscape_include] = STATE(421), + [sym_verbatim_include] = STATE(421), + [sym_import] = STATE(421), + [sym_label_definition] = STATE(421), + [sym_label_reference] = STATE(421), + [sym_equation_label_reference] = STATE(421), + [sym_label_reference_range] = STATE(421), + [sym_label_number] = STATE(421), + [sym_command_definition] = STATE(421), + [sym_math_operator] = STATE(421), + [sym_glossary_entry_definition] = STATE(421), + [sym_glossary_entry_reference] = STATE(421), + [sym_acronym_definition] = STATE(421), + [sym_acronym_reference] = STATE(421), + [sym_theorem_definition] = STATE(421), + [sym_color_reference] = STATE(421), + [sym_color_definition] = STATE(421), + [sym_color_set_definition] = STATE(421), + [sym_pgf_library_import] = STATE(421), + [sym_tikz_library_import] = STATE(421), + [sym_generic_command] = STATE(421), + [aux_sym_enum_item_repeat1] = STATE(421), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(5600), + [aux_sym_subsection_token1] = ACTIONS(5600), + [aux_sym_subsubsection_token1] = ACTIONS(5600), + [aux_sym_paragraph_token1] = ACTIONS(5600), + [aux_sym_subparagraph_token1] = ACTIONS(5600), + [anon_sym_BSLASHitem] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(4072), + [anon_sym_RBRACK] = ACTIONS(5598), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(9502), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [417] = { + [sym__simple_content] = STATE(423), + [sym_paragraph] = STATE(423), + [sym_subparagraph] = STATE(423), + [sym_enum_item] = STATE(423), + [sym_brace_group] = STATE(423), + [sym_mixed_group] = STATE(423), + [sym_text] = STATE(423), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(423), + [sym_inline_formula] = STATE(423), + [sym_begin] = STATE(99), + [sym_environment] = STATE(423), + [sym_caption] = STATE(423), + [sym_citation] = STATE(423), + [sym_package_include] = STATE(423), + [sym_class_include] = STATE(423), + [sym_latex_include] = STATE(423), + [sym_latex_input] = STATE(423), + [sym_biblatex_include] = STATE(423), + [sym_bibtex_include] = STATE(423), + [sym_graphics_include] = STATE(423), + [sym_svg_include] = STATE(423), + [sym_inkscape_include] = STATE(423), + [sym_verbatim_include] = STATE(423), + [sym_import] = STATE(423), + [sym_label_definition] = STATE(423), + [sym_label_reference] = STATE(423), + [sym_equation_label_reference] = STATE(423), + [sym_label_reference_range] = STATE(423), + [sym_label_number] = STATE(423), + [sym_command_definition] = STATE(423), + [sym_math_operator] = STATE(423), + [sym_glossary_entry_definition] = STATE(423), + [sym_glossary_entry_reference] = STATE(423), + [sym_acronym_definition] = STATE(423), + [sym_acronym_reference] = STATE(423), + [sym_theorem_definition] = STATE(423), + [sym_color_reference] = STATE(423), + [sym_color_definition] = STATE(423), + [sym_color_set_definition] = STATE(423), + [sym_pgf_library_import] = STATE(423), + [sym_tikz_library_import] = STATE(423), + [sym_generic_command] = STATE(423), + [aux_sym_subsubsection_repeat1] = STATE(423), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(9773), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(9775), + [aux_sym_subparagraph_token1] = ACTIONS(9777), + [anon_sym_BSLASHitem] = ACTIONS(9779), + [anon_sym_LBRACK] = ACTIONS(9781), + [anon_sym_RBRACK] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(9783), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(9781), + [anon_sym_COMMA] = ACTIONS(9785), + [anon_sym_EQ] = ACTIONS(9785), + [sym_word] = ACTIONS(9785), + [sym_param] = ACTIONS(9787), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9789), + [anon_sym_DOLLAR] = ACTIONS(9791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9793), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(9795), + [anon_sym_BSLASHcite] = ACTIONS(9797), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCite] = ACTIONS(9797), + [anon_sym_BSLASHnocite] = ACTIONS(9797), + [anon_sym_BSLASHcitet] = ACTIONS(9797), + [anon_sym_BSLASHcitep] = ACTIONS(9797), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteauthor] = ACTIONS(9797), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9797), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitetitle] = ACTIONS(9797), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteyear] = ACTIONS(9797), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitedate] = ACTIONS(9797), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteurl] = ACTIONS(9797), + [anon_sym_BSLASHfullcite] = ACTIONS(9797), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9797), + [anon_sym_BSLASHcitealt] = ACTIONS(9797), + [anon_sym_BSLASHcitealp] = ACTIONS(9797), + [anon_sym_BSLASHcitetext] = ACTIONS(9797), + [anon_sym_BSLASHparencite] = ACTIONS(9797), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHParencite] = ACTIONS(9797), + [anon_sym_BSLASHfootcite] = ACTIONS(9797), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9797), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9797), + [anon_sym_BSLASHtextcite] = ACTIONS(9797), + [anon_sym_BSLASHTextcite] = ACTIONS(9797), + [anon_sym_BSLASHsmartcite] = ACTIONS(9797), + [anon_sym_BSLASHSmartcite] = ACTIONS(9797), + [anon_sym_BSLASHsupercite] = ACTIONS(9797), + [anon_sym_BSLASHautocite] = ACTIONS(9797), + [anon_sym_BSLASHAutocite] = ACTIONS(9797), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHvolcite] = ACTIONS(9797), + [anon_sym_BSLASHVolcite] = ACTIONS(9797), + [anon_sym_BSLASHpvolcite] = ACTIONS(9797), + [anon_sym_BSLASHPvolcite] = ACTIONS(9797), + [anon_sym_BSLASHfvolcite] = ACTIONS(9797), + [anon_sym_BSLASHftvolcite] = ACTIONS(9797), + [anon_sym_BSLASHsvolcite] = ACTIONS(9797), + [anon_sym_BSLASHSvolcite] = ACTIONS(9797), + [anon_sym_BSLASHtvolcite] = ACTIONS(9797), + [anon_sym_BSLASHTvolcite] = ACTIONS(9797), + [anon_sym_BSLASHavolcite] = ACTIONS(9797), + [anon_sym_BSLASHAvolcite] = ACTIONS(9797), + [anon_sym_BSLASHnotecite] = ACTIONS(9797), + [anon_sym_BSLASHpnotecite] = ACTIONS(9797), + [anon_sym_BSLASHPnotecite] = ACTIONS(9797), + [anon_sym_BSLASHfnotecite] = ACTIONS(9797), + [anon_sym_BSLASHusepackage] = ACTIONS(9801), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9801), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9803), + [anon_sym_BSLASHinclude] = ACTIONS(9805), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9805), + [anon_sym_BSLASHinput] = ACTIONS(9807), + [anon_sym_BSLASHsubfile] = ACTIONS(9807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9809), + [anon_sym_BSLASHbibliography] = ACTIONS(9811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9813), + [anon_sym_BSLASHincludesvg] = ACTIONS(9815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9819), + [anon_sym_BSLASHimport] = ACTIONS(9821), + [anon_sym_BSLASHsubimport] = ACTIONS(9821), + [anon_sym_BSLASHinputfrom] = ACTIONS(9821), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9821), + [anon_sym_BSLASHincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHlabel] = ACTIONS(9823), + [anon_sym_BSLASHref] = ACTIONS(9825), + [anon_sym_BSLASHvref] = ACTIONS(9825), + [anon_sym_BSLASHVref] = ACTIONS(9825), + [anon_sym_BSLASHautoref] = ACTIONS(9825), + [anon_sym_BSLASHpageref] = ACTIONS(9825), + [anon_sym_BSLASHcref] = ACTIONS(9825), + [anon_sym_BSLASHCref] = ACTIONS(9825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnameCref] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHlabelcref] = ACTIONS(9825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9825), + [anon_sym_BSLASHeqref] = ACTIONS(9829), + [anon_sym_BSLASHcrefrange] = ACTIONS(9831), + [anon_sym_BSLASHCrefrange] = ACTIONS(9831), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHnewlabel] = ACTIONS(9835), + [anon_sym_BSLASHnewcommand] = ACTIONS(9837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9839), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9843), + [anon_sym_BSLASHgls] = ACTIONS(9845), + [anon_sym_BSLASHGls] = ACTIONS(9845), + [anon_sym_BSLASHGLS] = ACTIONS(9845), + [anon_sym_BSLASHglspl] = ACTIONS(9845), + [anon_sym_BSLASHGlspl] = ACTIONS(9845), + [anon_sym_BSLASHGLSpl] = ACTIONS(9845), + [anon_sym_BSLASHglsdisp] = ACTIONS(9845), + [anon_sym_BSLASHglslink] = ACTIONS(9845), + [anon_sym_BSLASHglstext] = ACTIONS(9845), + [anon_sym_BSLASHGlstext] = ACTIONS(9845), + [anon_sym_BSLASHGLStext] = ACTIONS(9845), + [anon_sym_BSLASHglsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9845), + [anon_sym_BSLASHglsplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSplural] = ACTIONS(9845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHglsname] = ACTIONS(9845), + [anon_sym_BSLASHGlsname] = ACTIONS(9845), + [anon_sym_BSLASHGLSname] = ACTIONS(9845), + [anon_sym_BSLASHglssymbol] = ACTIONS(9845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9845), + [anon_sym_BSLASHglsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9845), + [anon_sym_BSLASHglsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9845), + [anon_sym_BSLASHglsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9845), + [anon_sym_BSLASHglsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9845), + [anon_sym_BSLASHglsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9845), + [anon_sym_BSLASHnewacronym] = ACTIONS(9847), + [anon_sym_BSLASHacrshort] = ACTIONS(9849), + [anon_sym_BSLASHAcrshort] = ACTIONS(9849), + [anon_sym_BSLASHACRshort] = ACTIONS(9849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9849), + [anon_sym_BSLASHacrlong] = ACTIONS(9849), + [anon_sym_BSLASHAcrlong] = ACTIONS(9849), + [anon_sym_BSLASHACRlong] = ACTIONS(9849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9849), + [anon_sym_BSLASHacrfull] = ACTIONS(9849), + [anon_sym_BSLASHAcrfull] = ACTIONS(9849), + [anon_sym_BSLASHACRfull] = ACTIONS(9849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9849), + [anon_sym_BSLASHacs] = ACTIONS(9849), + [anon_sym_BSLASHAcs] = ACTIONS(9849), + [anon_sym_BSLASHacsp] = ACTIONS(9849), + [anon_sym_BSLASHAcsp] = ACTIONS(9849), + [anon_sym_BSLASHacl] = ACTIONS(9849), + [anon_sym_BSLASHAcl] = ACTIONS(9849), + [anon_sym_BSLASHaclp] = ACTIONS(9849), + [anon_sym_BSLASHAclp] = ACTIONS(9849), + [anon_sym_BSLASHacf] = ACTIONS(9849), + [anon_sym_BSLASHAcf] = ACTIONS(9849), + [anon_sym_BSLASHacfp] = ACTIONS(9849), + [anon_sym_BSLASHAcfp] = ACTIONS(9849), + [anon_sym_BSLASHac] = ACTIONS(9849), + [anon_sym_BSLASHAc] = ACTIONS(9849), + [anon_sym_BSLASHacp] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9851), + [anon_sym_BSLASHcolor] = ACTIONS(9853), + [anon_sym_BSLASHcolorbox] = ACTIONS(9853), + [anon_sym_BSLASHtextcolor] = ACTIONS(9853), + [anon_sym_BSLASHpagecolor] = ACTIONS(9853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9855), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9859), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9861), + }, + [418] = { + [sym__simple_content] = STATE(414), + [sym_enum_item] = STATE(414), + [sym_brace_group] = STATE(414), + [sym_mixed_group] = STATE(414), + [sym_text] = STATE(414), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(414), + [sym_inline_formula] = STATE(414), + [sym_begin] = STATE(105), + [sym_environment] = STATE(414), + [sym_caption] = STATE(414), + [sym_citation] = STATE(414), + [sym_package_include] = STATE(414), + [sym_class_include] = STATE(414), + [sym_latex_include] = STATE(414), + [sym_latex_input] = STATE(414), + [sym_biblatex_include] = STATE(414), + [sym_bibtex_include] = STATE(414), + [sym_graphics_include] = STATE(414), + [sym_svg_include] = STATE(414), + [sym_inkscape_include] = STATE(414), + [sym_verbatim_include] = STATE(414), + [sym_import] = STATE(414), + [sym_label_definition] = STATE(414), + [sym_label_reference] = STATE(414), + [sym_equation_label_reference] = STATE(414), + [sym_label_reference_range] = STATE(414), + [sym_label_number] = STATE(414), + [sym_command_definition] = STATE(414), + [sym_math_operator] = STATE(414), + [sym_glossary_entry_definition] = STATE(414), + [sym_glossary_entry_reference] = STATE(414), + [sym_acronym_definition] = STATE(414), + [sym_acronym_reference] = STATE(414), + [sym_theorem_definition] = STATE(414), + [sym_color_reference] = STATE(414), + [sym_color_definition] = STATE(414), + [sym_color_set_definition] = STATE(414), + [sym_pgf_library_import] = STATE(414), + [sym_tikz_library_import] = STATE(414), + [sym_generic_command] = STATE(414), + [aux_sym_subparagraph_repeat1] = STATE(414), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(4879), + [aux_sym_subsubsection_token1] = ACTIONS(4879), + [aux_sym_paragraph_token1] = ACTIONS(4879), + [aux_sym_subparagraph_token1] = ACTIONS(4879), + [anon_sym_BSLASHitem] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(4877), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(9863), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [419] = { + [sym__simple_content] = STATE(415), + [sym_subparagraph] = STATE(415), + [sym_enum_item] = STATE(415), + [sym_brace_group] = STATE(415), + [sym_mixed_group] = STATE(415), + [sym_text] = STATE(415), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(415), + [sym_inline_formula] = STATE(415), + [sym_begin] = STATE(112), + [sym_environment] = STATE(415), + [sym_caption] = STATE(415), + [sym_citation] = STATE(415), + [sym_package_include] = STATE(415), + [sym_class_include] = STATE(415), + [sym_latex_include] = STATE(415), + [sym_latex_input] = STATE(415), + [sym_biblatex_include] = STATE(415), + [sym_bibtex_include] = STATE(415), + [sym_graphics_include] = STATE(415), + [sym_svg_include] = STATE(415), + [sym_inkscape_include] = STATE(415), + [sym_verbatim_include] = STATE(415), + [sym_import] = STATE(415), + [sym_label_definition] = STATE(415), + [sym_label_reference] = STATE(415), + [sym_equation_label_reference] = STATE(415), + [sym_label_reference_range] = STATE(415), + [sym_label_number] = STATE(415), + [sym_command_definition] = STATE(415), + [sym_math_operator] = STATE(415), + [sym_glossary_entry_definition] = STATE(415), + [sym_glossary_entry_reference] = STATE(415), + [sym_acronym_definition] = STATE(415), + [sym_acronym_reference] = STATE(415), + [sym_theorem_definition] = STATE(415), + [sym_color_reference] = STATE(415), + [sym_color_definition] = STATE(415), + [sym_color_set_definition] = STATE(415), + [sym_pgf_library_import] = STATE(415), + [sym_tikz_library_import] = STATE(415), + [sym_generic_command] = STATE(415), + [aux_sym_paragraph_repeat1] = STATE(415), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(7652), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(4156), + [aux_sym_paragraph_token1] = ACTIONS(4156), + [aux_sym_subparagraph_token1] = ACTIONS(7658), + [anon_sym_BSLASHitem] = ACTIONS(7660), + [anon_sym_LBRACK] = ACTIONS(7662), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(7662), + [anon_sym_COMMA] = ACTIONS(7666), + [anon_sym_EQ] = ACTIONS(7666), + [sym_word] = ACTIONS(7666), + [sym_param] = ACTIONS(9865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7670), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7670), + [anon_sym_DOLLAR] = ACTIONS(7672), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7674), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7676), + [anon_sym_BSLASHcite] = ACTIONS(7678), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCite] = ACTIONS(7678), + [anon_sym_BSLASHnocite] = ACTIONS(7678), + [anon_sym_BSLASHcitet] = ACTIONS(7678), + [anon_sym_BSLASHcitep] = ACTIONS(7678), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteauthor] = ACTIONS(7678), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7678), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitetitle] = ACTIONS(7678), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteyear] = ACTIONS(7678), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitedate] = ACTIONS(7678), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteurl] = ACTIONS(7678), + [anon_sym_BSLASHfullcite] = ACTIONS(7678), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7678), + [anon_sym_BSLASHcitealt] = ACTIONS(7678), + [anon_sym_BSLASHcitealp] = ACTIONS(7678), + [anon_sym_BSLASHcitetext] = ACTIONS(7678), + [anon_sym_BSLASHparencite] = ACTIONS(7678), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHParencite] = ACTIONS(7678), + [anon_sym_BSLASHfootcite] = ACTIONS(7678), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7678), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7678), + [anon_sym_BSLASHtextcite] = ACTIONS(7678), + [anon_sym_BSLASHTextcite] = ACTIONS(7678), + [anon_sym_BSLASHsmartcite] = ACTIONS(7678), + [anon_sym_BSLASHSmartcite] = ACTIONS(7678), + [anon_sym_BSLASHsupercite] = ACTIONS(7678), + [anon_sym_BSLASHautocite] = ACTIONS(7678), + [anon_sym_BSLASHAutocite] = ACTIONS(7678), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHvolcite] = ACTIONS(7678), + [anon_sym_BSLASHVolcite] = ACTIONS(7678), + [anon_sym_BSLASHpvolcite] = ACTIONS(7678), + [anon_sym_BSLASHPvolcite] = ACTIONS(7678), + [anon_sym_BSLASHfvolcite] = ACTIONS(7678), + [anon_sym_BSLASHftvolcite] = ACTIONS(7678), + [anon_sym_BSLASHsvolcite] = ACTIONS(7678), + [anon_sym_BSLASHSvolcite] = ACTIONS(7678), + [anon_sym_BSLASHtvolcite] = ACTIONS(7678), + [anon_sym_BSLASHTvolcite] = ACTIONS(7678), + [anon_sym_BSLASHavolcite] = ACTIONS(7678), + [anon_sym_BSLASHAvolcite] = ACTIONS(7678), + [anon_sym_BSLASHnotecite] = ACTIONS(7678), + [anon_sym_BSLASHpnotecite] = ACTIONS(7678), + [anon_sym_BSLASHPnotecite] = ACTIONS(7678), + [anon_sym_BSLASHfnotecite] = ACTIONS(7678), + [anon_sym_BSLASHusepackage] = ACTIONS(7682), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7684), + [anon_sym_BSLASHinclude] = ACTIONS(7686), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7686), + [anon_sym_BSLASHinput] = ACTIONS(7688), + [anon_sym_BSLASHsubfile] = ACTIONS(7688), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7690), + [anon_sym_BSLASHbibliography] = ACTIONS(7692), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7694), + [anon_sym_BSLASHincludesvg] = ACTIONS(7696), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7698), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7700), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7700), + [anon_sym_BSLASHimport] = ACTIONS(7702), + [anon_sym_BSLASHsubimport] = ACTIONS(7702), + [anon_sym_BSLASHinputfrom] = ACTIONS(7702), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7702), + [anon_sym_BSLASHincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHlabel] = ACTIONS(7704), + [anon_sym_BSLASHref] = ACTIONS(7706), + [anon_sym_BSLASHvref] = ACTIONS(7706), + [anon_sym_BSLASHVref] = ACTIONS(7706), + [anon_sym_BSLASHautoref] = ACTIONS(7706), + [anon_sym_BSLASHpageref] = ACTIONS(7706), + [anon_sym_BSLASHcref] = ACTIONS(7706), + [anon_sym_BSLASHCref] = ACTIONS(7706), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnameCref] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHlabelcref] = ACTIONS(7706), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7706), + [anon_sym_BSLASHeqref] = ACTIONS(7710), + [anon_sym_BSLASHcrefrange] = ACTIONS(7712), + [anon_sym_BSLASHCrefrange] = ACTIONS(7712), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHnewlabel] = ACTIONS(7716), + [anon_sym_BSLASHnewcommand] = ACTIONS(7718), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7720), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7722), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7724), + [anon_sym_BSLASHgls] = ACTIONS(7726), + [anon_sym_BSLASHGls] = ACTIONS(7726), + [anon_sym_BSLASHGLS] = ACTIONS(7726), + [anon_sym_BSLASHglspl] = ACTIONS(7726), + [anon_sym_BSLASHGlspl] = ACTIONS(7726), + [anon_sym_BSLASHGLSpl] = ACTIONS(7726), + [anon_sym_BSLASHglsdisp] = ACTIONS(7726), + [anon_sym_BSLASHglslink] = ACTIONS(7726), + [anon_sym_BSLASHglstext] = ACTIONS(7726), + [anon_sym_BSLASHGlstext] = ACTIONS(7726), + [anon_sym_BSLASHGLStext] = ACTIONS(7726), + [anon_sym_BSLASHglsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7726), + [anon_sym_BSLASHglsplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSplural] = ACTIONS(7726), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHglsname] = ACTIONS(7726), + [anon_sym_BSLASHGlsname] = ACTIONS(7726), + [anon_sym_BSLASHGLSname] = ACTIONS(7726), + [anon_sym_BSLASHglssymbol] = ACTIONS(7726), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7726), + [anon_sym_BSLASHglsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7726), + [anon_sym_BSLASHglsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7726), + [anon_sym_BSLASHglsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7726), + [anon_sym_BSLASHglsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7726), + [anon_sym_BSLASHglsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7726), + [anon_sym_BSLASHnewacronym] = ACTIONS(7728), + [anon_sym_BSLASHacrshort] = ACTIONS(7730), + [anon_sym_BSLASHAcrshort] = ACTIONS(7730), + [anon_sym_BSLASHACRshort] = ACTIONS(7730), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7730), + [anon_sym_BSLASHacrlong] = ACTIONS(7730), + [anon_sym_BSLASHAcrlong] = ACTIONS(7730), + [anon_sym_BSLASHACRlong] = ACTIONS(7730), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7730), + [anon_sym_BSLASHacrfull] = ACTIONS(7730), + [anon_sym_BSLASHAcrfull] = ACTIONS(7730), + [anon_sym_BSLASHACRfull] = ACTIONS(7730), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7730), + [anon_sym_BSLASHacs] = ACTIONS(7730), + [anon_sym_BSLASHAcs] = ACTIONS(7730), + [anon_sym_BSLASHacsp] = ACTIONS(7730), + [anon_sym_BSLASHAcsp] = ACTIONS(7730), + [anon_sym_BSLASHacl] = ACTIONS(7730), + [anon_sym_BSLASHAcl] = ACTIONS(7730), + [anon_sym_BSLASHaclp] = ACTIONS(7730), + [anon_sym_BSLASHAclp] = ACTIONS(7730), + [anon_sym_BSLASHacf] = ACTIONS(7730), + [anon_sym_BSLASHAcf] = ACTIONS(7730), + [anon_sym_BSLASHacfp] = ACTIONS(7730), + [anon_sym_BSLASHAcfp] = ACTIONS(7730), + [anon_sym_BSLASHac] = ACTIONS(7730), + [anon_sym_BSLASHAc] = ACTIONS(7730), + [anon_sym_BSLASHacp] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7732), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7732), + [anon_sym_BSLASHcolor] = ACTIONS(7734), + [anon_sym_BSLASHcolorbox] = ACTIONS(7734), + [anon_sym_BSLASHtextcolor] = ACTIONS(7734), + [anon_sym_BSLASHpagecolor] = ACTIONS(7734), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7736), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7738), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7740), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7742), + }, + [420] = { + [sym__simple_content] = STATE(420), + [sym_enum_item] = STATE(420), + [sym_brace_group] = STATE(420), + [sym_mixed_group] = STATE(420), + [sym_text] = STATE(420), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(420), + [sym_inline_formula] = STATE(420), + [sym_begin] = STATE(105), + [sym_environment] = STATE(420), + [sym_caption] = STATE(420), + [sym_citation] = STATE(420), + [sym_package_include] = STATE(420), + [sym_class_include] = STATE(420), + [sym_latex_include] = STATE(420), + [sym_latex_input] = STATE(420), + [sym_biblatex_include] = STATE(420), + [sym_bibtex_include] = STATE(420), + [sym_graphics_include] = STATE(420), + [sym_svg_include] = STATE(420), + [sym_inkscape_include] = STATE(420), + [sym_verbatim_include] = STATE(420), + [sym_import] = STATE(420), + [sym_label_definition] = STATE(420), + [sym_label_reference] = STATE(420), + [sym_equation_label_reference] = STATE(420), + [sym_label_reference_range] = STATE(420), + [sym_label_number] = STATE(420), + [sym_command_definition] = STATE(420), + [sym_math_operator] = STATE(420), + [sym_glossary_entry_definition] = STATE(420), + [sym_glossary_entry_reference] = STATE(420), + [sym_acronym_definition] = STATE(420), + [sym_acronym_reference] = STATE(420), + [sym_theorem_definition] = STATE(420), + [sym_color_reference] = STATE(420), + [sym_color_definition] = STATE(420), + [sym_color_set_definition] = STATE(420), + [sym_pgf_library_import] = STATE(420), + [sym_tikz_library_import] = STATE(420), + [sym_generic_command] = STATE(420), + [aux_sym_subparagraph_repeat1] = STATE(420), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(9867), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(5453), + [aux_sym_subsubsection_token1] = ACTIONS(5453), + [aux_sym_paragraph_token1] = ACTIONS(5453), + [aux_sym_subparagraph_token1] = ACTIONS(5453), + [anon_sym_BSLASHitem] = ACTIONS(9870), + [anon_sym_LBRACK] = ACTIONS(9873), + [anon_sym_RBRACK] = ACTIONS(5448), + [anon_sym_LBRACE] = ACTIONS(9876), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(9873), + [anon_sym_COMMA] = ACTIONS(9879), + [anon_sym_EQ] = ACTIONS(9879), + [sym_word] = ACTIONS(9879), + [sym_param] = ACTIONS(9882), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9885), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9885), + [anon_sym_DOLLAR] = ACTIONS(9888), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9891), + [anon_sym_BSLASHbegin] = ACTIONS(5479), + [anon_sym_BSLASHcaption] = ACTIONS(9894), + [anon_sym_BSLASHcite] = ACTIONS(9897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9900), + [anon_sym_BSLASHCite] = ACTIONS(9897), + [anon_sym_BSLASHnocite] = ACTIONS(9897), + [anon_sym_BSLASHcitet] = ACTIONS(9897), + [anon_sym_BSLASHcitep] = ACTIONS(9897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9900), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9900), + [anon_sym_BSLASHciteauthor] = ACTIONS(9897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9900), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9900), + [anon_sym_BSLASHcitetitle] = ACTIONS(9897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9900), + [anon_sym_BSLASHciteyear] = ACTIONS(9897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9900), + [anon_sym_BSLASHcitedate] = ACTIONS(9897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9900), + [anon_sym_BSLASHciteurl] = ACTIONS(9897), + [anon_sym_BSLASHfullcite] = ACTIONS(9897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9897), + [anon_sym_BSLASHcitealt] = ACTIONS(9897), + [anon_sym_BSLASHcitealp] = ACTIONS(9897), + [anon_sym_BSLASHcitetext] = ACTIONS(9897), + [anon_sym_BSLASHparencite] = ACTIONS(9897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9900), + [anon_sym_BSLASHParencite] = ACTIONS(9897), + [anon_sym_BSLASHfootcite] = ACTIONS(9897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9897), + [anon_sym_BSLASHtextcite] = ACTIONS(9897), + [anon_sym_BSLASHTextcite] = ACTIONS(9897), + [anon_sym_BSLASHsmartcite] = ACTIONS(9897), + [anon_sym_BSLASHSmartcite] = ACTIONS(9897), + [anon_sym_BSLASHsupercite] = ACTIONS(9897), + [anon_sym_BSLASHautocite] = ACTIONS(9897), + [anon_sym_BSLASHAutocite] = ACTIONS(9897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9900), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9900), + [anon_sym_BSLASHvolcite] = ACTIONS(9897), + [anon_sym_BSLASHVolcite] = ACTIONS(9897), + [anon_sym_BSLASHpvolcite] = ACTIONS(9897), + [anon_sym_BSLASHPvolcite] = ACTIONS(9897), + [anon_sym_BSLASHfvolcite] = ACTIONS(9897), + [anon_sym_BSLASHftvolcite] = ACTIONS(9897), + [anon_sym_BSLASHsvolcite] = ACTIONS(9897), + [anon_sym_BSLASHSvolcite] = ACTIONS(9897), + [anon_sym_BSLASHtvolcite] = ACTIONS(9897), + [anon_sym_BSLASHTvolcite] = ACTIONS(9897), + [anon_sym_BSLASHavolcite] = ACTIONS(9897), + [anon_sym_BSLASHAvolcite] = ACTIONS(9897), + [anon_sym_BSLASHnotecite] = ACTIONS(9897), + [anon_sym_BSLASHpnotecite] = ACTIONS(9897), + [anon_sym_BSLASHPnotecite] = ACTIONS(9897), + [anon_sym_BSLASHfnotecite] = ACTIONS(9897), + [anon_sym_BSLASHusepackage] = ACTIONS(9903), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9903), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9906), + [anon_sym_BSLASHinclude] = ACTIONS(9909), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9909), + [anon_sym_BSLASHinput] = ACTIONS(9912), + [anon_sym_BSLASHsubfile] = ACTIONS(9912), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9915), + [anon_sym_BSLASHbibliography] = ACTIONS(9918), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9921), + [anon_sym_BSLASHincludesvg] = ACTIONS(9924), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9927), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9930), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9930), + [anon_sym_BSLASHimport] = ACTIONS(9933), + [anon_sym_BSLASHsubimport] = ACTIONS(9933), + [anon_sym_BSLASHinputfrom] = ACTIONS(9933), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9933), + [anon_sym_BSLASHincludefrom] = ACTIONS(9933), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9933), + [anon_sym_BSLASHlabel] = ACTIONS(9936), + [anon_sym_BSLASHref] = ACTIONS(9939), + [anon_sym_BSLASHvref] = ACTIONS(9939), + [anon_sym_BSLASHVref] = ACTIONS(9939), + [anon_sym_BSLASHautoref] = ACTIONS(9939), + [anon_sym_BSLASHpageref] = ACTIONS(9939), + [anon_sym_BSLASHcref] = ACTIONS(9939), + [anon_sym_BSLASHCref] = ACTIONS(9939), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9942), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9942), + [anon_sym_BSLASHnamecref] = ACTIONS(9939), + [anon_sym_BSLASHnameCref] = ACTIONS(9939), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9939), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9939), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9939), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9939), + [anon_sym_BSLASHlabelcref] = ACTIONS(9939), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9939), + [anon_sym_BSLASHeqref] = ACTIONS(9945), + [anon_sym_BSLASHcrefrange] = ACTIONS(9948), + [anon_sym_BSLASHCrefrange] = ACTIONS(9948), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9951), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9951), + [anon_sym_BSLASHnewlabel] = ACTIONS(9954), + [anon_sym_BSLASHnewcommand] = ACTIONS(9957), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9957), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9957), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9960), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9963), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9966), + [anon_sym_BSLASHgls] = ACTIONS(9969), + [anon_sym_BSLASHGls] = ACTIONS(9969), + [anon_sym_BSLASHGLS] = ACTIONS(9969), + [anon_sym_BSLASHglspl] = ACTIONS(9969), + [anon_sym_BSLASHGlspl] = ACTIONS(9969), + [anon_sym_BSLASHGLSpl] = ACTIONS(9969), + [anon_sym_BSLASHglsdisp] = ACTIONS(9969), + [anon_sym_BSLASHglslink] = ACTIONS(9969), + [anon_sym_BSLASHglstext] = ACTIONS(9969), + [anon_sym_BSLASHGlstext] = ACTIONS(9969), + [anon_sym_BSLASHGLStext] = ACTIONS(9969), + [anon_sym_BSLASHglsfirst] = ACTIONS(9969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9969), + [anon_sym_BSLASHglsplural] = ACTIONS(9969), + [anon_sym_BSLASHGlsplural] = ACTIONS(9969), + [anon_sym_BSLASHGLSplural] = ACTIONS(9969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9969), + [anon_sym_BSLASHglsname] = ACTIONS(9969), + [anon_sym_BSLASHGlsname] = ACTIONS(9969), + [anon_sym_BSLASHGLSname] = ACTIONS(9969), + [anon_sym_BSLASHglssymbol] = ACTIONS(9969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9969), + [anon_sym_BSLASHglsdesc] = ACTIONS(9969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9969), + [anon_sym_BSLASHglsuseri] = ACTIONS(9969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9969), + [anon_sym_BSLASHglsuserii] = ACTIONS(9969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9969), + [anon_sym_BSLASHglsuserv] = ACTIONS(9969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9969), + [anon_sym_BSLASHglsuservi] = ACTIONS(9969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9969), + [anon_sym_BSLASHnewacronym] = ACTIONS(9972), + [anon_sym_BSLASHacrshort] = ACTIONS(9975), + [anon_sym_BSLASHAcrshort] = ACTIONS(9975), + [anon_sym_BSLASHACRshort] = ACTIONS(9975), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9975), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9975), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9975), + [anon_sym_BSLASHacrlong] = ACTIONS(9975), + [anon_sym_BSLASHAcrlong] = ACTIONS(9975), + [anon_sym_BSLASHACRlong] = ACTIONS(9975), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9975), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9975), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9975), + [anon_sym_BSLASHacrfull] = ACTIONS(9975), + [anon_sym_BSLASHAcrfull] = ACTIONS(9975), + [anon_sym_BSLASHACRfull] = ACTIONS(9975), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9975), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9975), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9975), + [anon_sym_BSLASHacs] = ACTIONS(9975), + [anon_sym_BSLASHAcs] = ACTIONS(9975), + [anon_sym_BSLASHacsp] = ACTIONS(9975), + [anon_sym_BSLASHAcsp] = ACTIONS(9975), + [anon_sym_BSLASHacl] = ACTIONS(9975), + [anon_sym_BSLASHAcl] = ACTIONS(9975), + [anon_sym_BSLASHaclp] = ACTIONS(9975), + [anon_sym_BSLASHAclp] = ACTIONS(9975), + [anon_sym_BSLASHacf] = ACTIONS(9975), + [anon_sym_BSLASHAcf] = ACTIONS(9975), + [anon_sym_BSLASHacfp] = ACTIONS(9975), + [anon_sym_BSLASHAcfp] = ACTIONS(9975), + [anon_sym_BSLASHac] = ACTIONS(9975), + [anon_sym_BSLASHAc] = ACTIONS(9975), + [anon_sym_BSLASHacp] = ACTIONS(9975), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9975), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9975), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9975), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9975), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9975), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9975), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9975), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9975), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9975), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9975), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9978), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9978), + [anon_sym_BSLASHcolor] = ACTIONS(9981), + [anon_sym_BSLASHcolorbox] = ACTIONS(9981), + [anon_sym_BSLASHtextcolor] = ACTIONS(9981), + [anon_sym_BSLASHpagecolor] = ACTIONS(9981), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9984), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9993), + }, + [421] = { + [sym__simple_content] = STATE(421), + [sym_brace_group] = STATE(421), + [sym_mixed_group] = STATE(421), + [sym_text] = STATE(421), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(421), + [sym_inline_formula] = STATE(421), + [sym_begin] = STATE(94), + [sym_environment] = STATE(421), + [sym_caption] = STATE(421), + [sym_citation] = STATE(421), + [sym_package_include] = STATE(421), + [sym_class_include] = STATE(421), + [sym_latex_include] = STATE(421), + [sym_latex_input] = STATE(421), + [sym_biblatex_include] = STATE(421), + [sym_bibtex_include] = STATE(421), + [sym_graphics_include] = STATE(421), + [sym_svg_include] = STATE(421), + [sym_inkscape_include] = STATE(421), + [sym_verbatim_include] = STATE(421), + [sym_import] = STATE(421), + [sym_label_definition] = STATE(421), + [sym_label_reference] = STATE(421), + [sym_equation_label_reference] = STATE(421), + [sym_label_reference_range] = STATE(421), + [sym_label_number] = STATE(421), + [sym_command_definition] = STATE(421), + [sym_math_operator] = STATE(421), + [sym_glossary_entry_definition] = STATE(421), + [sym_glossary_entry_reference] = STATE(421), + [sym_acronym_definition] = STATE(421), + [sym_acronym_reference] = STATE(421), + [sym_theorem_definition] = STATE(421), + [sym_color_reference] = STATE(421), + [sym_color_definition] = STATE(421), + [sym_color_set_definition] = STATE(421), + [sym_pgf_library_import] = STATE(421), + [sym_tikz_library_import] = STATE(421), + [sym_generic_command] = STATE(421), + [aux_sym_enum_item_repeat1] = STATE(421), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(9996), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(6045), + [aux_sym_subsection_token1] = ACTIONS(6045), + [aux_sym_subsubsection_token1] = ACTIONS(6045), + [aux_sym_paragraph_token1] = ACTIONS(6045), + [aux_sym_subparagraph_token1] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(9999), + [anon_sym_RBRACK] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(10002), + [anon_sym_RBRACE] = ACTIONS(6040), + [anon_sym_LPAREN] = ACTIONS(9999), + [anon_sym_COMMA] = ACTIONS(10005), + [anon_sym_EQ] = ACTIONS(10005), + [sym_word] = ACTIONS(10005), + [sym_param] = ACTIONS(10008), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10011), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10011), + [anon_sym_DOLLAR] = ACTIONS(10014), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10017), + [anon_sym_BSLASHbegin] = ACTIONS(6068), + [anon_sym_BSLASHcaption] = ACTIONS(10020), + [anon_sym_BSLASHcite] = ACTIONS(10023), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10026), + [anon_sym_BSLASHCite] = ACTIONS(10023), + [anon_sym_BSLASHnocite] = ACTIONS(10023), + [anon_sym_BSLASHcitet] = ACTIONS(10023), + [anon_sym_BSLASHcitep] = ACTIONS(10023), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10026), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10026), + [anon_sym_BSLASHciteauthor] = ACTIONS(10023), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10026), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10023), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10026), + [anon_sym_BSLASHcitetitle] = ACTIONS(10023), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10026), + [anon_sym_BSLASHciteyear] = ACTIONS(10023), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10026), + [anon_sym_BSLASHcitedate] = ACTIONS(10023), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10026), + [anon_sym_BSLASHciteurl] = ACTIONS(10023), + [anon_sym_BSLASHfullcite] = ACTIONS(10023), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10023), + [anon_sym_BSLASHcitealt] = ACTIONS(10023), + [anon_sym_BSLASHcitealp] = ACTIONS(10023), + [anon_sym_BSLASHcitetext] = ACTIONS(10023), + [anon_sym_BSLASHparencite] = ACTIONS(10023), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10026), + [anon_sym_BSLASHParencite] = ACTIONS(10023), + [anon_sym_BSLASHfootcite] = ACTIONS(10023), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10023), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10023), + [anon_sym_BSLASHtextcite] = ACTIONS(10023), + [anon_sym_BSLASHTextcite] = ACTIONS(10023), + [anon_sym_BSLASHsmartcite] = ACTIONS(10023), + [anon_sym_BSLASHSmartcite] = ACTIONS(10023), + [anon_sym_BSLASHsupercite] = ACTIONS(10023), + [anon_sym_BSLASHautocite] = ACTIONS(10023), + [anon_sym_BSLASHAutocite] = ACTIONS(10023), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10026), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10026), + [anon_sym_BSLASHvolcite] = ACTIONS(10023), + [anon_sym_BSLASHVolcite] = ACTIONS(10023), + [anon_sym_BSLASHpvolcite] = ACTIONS(10023), + [anon_sym_BSLASHPvolcite] = ACTIONS(10023), + [anon_sym_BSLASHfvolcite] = ACTIONS(10023), + [anon_sym_BSLASHftvolcite] = ACTIONS(10023), + [anon_sym_BSLASHsvolcite] = ACTIONS(10023), + [anon_sym_BSLASHSvolcite] = ACTIONS(10023), + [anon_sym_BSLASHtvolcite] = ACTIONS(10023), + [anon_sym_BSLASHTvolcite] = ACTIONS(10023), + [anon_sym_BSLASHavolcite] = ACTIONS(10023), + [anon_sym_BSLASHAvolcite] = ACTIONS(10023), + [anon_sym_BSLASHnotecite] = ACTIONS(10023), + [anon_sym_BSLASHpnotecite] = ACTIONS(10023), + [anon_sym_BSLASHPnotecite] = ACTIONS(10023), + [anon_sym_BSLASHfnotecite] = ACTIONS(10023), + [anon_sym_BSLASHusepackage] = ACTIONS(10029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10032), + [anon_sym_BSLASHinclude] = ACTIONS(10035), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10035), + [anon_sym_BSLASHinput] = ACTIONS(10038), + [anon_sym_BSLASHsubfile] = ACTIONS(10038), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10041), + [anon_sym_BSLASHbibliography] = ACTIONS(10044), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10047), + [anon_sym_BSLASHincludesvg] = ACTIONS(10050), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10056), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10056), + [anon_sym_BSLASHimport] = ACTIONS(10059), + [anon_sym_BSLASHsubimport] = ACTIONS(10059), + [anon_sym_BSLASHinputfrom] = ACTIONS(10059), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10059), + [anon_sym_BSLASHincludefrom] = ACTIONS(10059), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10059), + [anon_sym_BSLASHlabel] = ACTIONS(10062), + [anon_sym_BSLASHref] = ACTIONS(10065), + [anon_sym_BSLASHvref] = ACTIONS(10065), + [anon_sym_BSLASHVref] = ACTIONS(10065), + [anon_sym_BSLASHautoref] = ACTIONS(10065), + [anon_sym_BSLASHpageref] = ACTIONS(10065), + [anon_sym_BSLASHcref] = ACTIONS(10065), + [anon_sym_BSLASHCref] = ACTIONS(10065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10068), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10068), + [anon_sym_BSLASHnamecref] = ACTIONS(10065), + [anon_sym_BSLASHnameCref] = ACTIONS(10065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10065), + [anon_sym_BSLASHlabelcref] = ACTIONS(10065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10065), + [anon_sym_BSLASHeqref] = ACTIONS(10071), + [anon_sym_BSLASHcrefrange] = ACTIONS(10074), + [anon_sym_BSLASHCrefrange] = ACTIONS(10074), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10077), + [anon_sym_BSLASHnewlabel] = ACTIONS(10080), + [anon_sym_BSLASHnewcommand] = ACTIONS(10083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10086), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10092), + [anon_sym_BSLASHgls] = ACTIONS(10095), + [anon_sym_BSLASHGls] = ACTIONS(10095), + [anon_sym_BSLASHGLS] = ACTIONS(10095), + [anon_sym_BSLASHglspl] = ACTIONS(10095), + [anon_sym_BSLASHGlspl] = ACTIONS(10095), + [anon_sym_BSLASHGLSpl] = ACTIONS(10095), + [anon_sym_BSLASHglsdisp] = ACTIONS(10095), + [anon_sym_BSLASHglslink] = ACTIONS(10095), + [anon_sym_BSLASHglstext] = ACTIONS(10095), + [anon_sym_BSLASHGlstext] = ACTIONS(10095), + [anon_sym_BSLASHGLStext] = ACTIONS(10095), + [anon_sym_BSLASHglsfirst] = ACTIONS(10095), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10095), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10095), + [anon_sym_BSLASHglsplural] = ACTIONS(10095), + [anon_sym_BSLASHGlsplural] = ACTIONS(10095), + [anon_sym_BSLASHGLSplural] = ACTIONS(10095), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10095), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10095), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10095), + [anon_sym_BSLASHglsname] = ACTIONS(10095), + [anon_sym_BSLASHGlsname] = ACTIONS(10095), + [anon_sym_BSLASHGLSname] = ACTIONS(10095), + [anon_sym_BSLASHglssymbol] = ACTIONS(10095), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10095), + [anon_sym_BSLASHglsdesc] = ACTIONS(10095), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10095), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10095), + [anon_sym_BSLASHglsuseri] = ACTIONS(10095), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10095), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10095), + [anon_sym_BSLASHglsuserii] = ACTIONS(10095), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10095), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10095), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10095), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10095), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10095), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10095), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10095), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10095), + [anon_sym_BSLASHglsuserv] = ACTIONS(10095), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10095), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10095), + [anon_sym_BSLASHglsuservi] = ACTIONS(10095), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10095), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10095), + [anon_sym_BSLASHnewacronym] = ACTIONS(10098), + [anon_sym_BSLASHacrshort] = ACTIONS(10101), + [anon_sym_BSLASHAcrshort] = ACTIONS(10101), + [anon_sym_BSLASHACRshort] = ACTIONS(10101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10101), + [anon_sym_BSLASHacrlong] = ACTIONS(10101), + [anon_sym_BSLASHAcrlong] = ACTIONS(10101), + [anon_sym_BSLASHACRlong] = ACTIONS(10101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10101), + [anon_sym_BSLASHacrfull] = ACTIONS(10101), + [anon_sym_BSLASHAcrfull] = ACTIONS(10101), + [anon_sym_BSLASHACRfull] = ACTIONS(10101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10101), + [anon_sym_BSLASHacs] = ACTIONS(10101), + [anon_sym_BSLASHAcs] = ACTIONS(10101), + [anon_sym_BSLASHacsp] = ACTIONS(10101), + [anon_sym_BSLASHAcsp] = ACTIONS(10101), + [anon_sym_BSLASHacl] = ACTIONS(10101), + [anon_sym_BSLASHAcl] = ACTIONS(10101), + [anon_sym_BSLASHaclp] = ACTIONS(10101), + [anon_sym_BSLASHAclp] = ACTIONS(10101), + [anon_sym_BSLASHacf] = ACTIONS(10101), + [anon_sym_BSLASHAcf] = ACTIONS(10101), + [anon_sym_BSLASHacfp] = ACTIONS(10101), + [anon_sym_BSLASHAcfp] = ACTIONS(10101), + [anon_sym_BSLASHac] = ACTIONS(10101), + [anon_sym_BSLASHAc] = ACTIONS(10101), + [anon_sym_BSLASHacp] = ACTIONS(10101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10104), + [anon_sym_BSLASHcolor] = ACTIONS(10107), + [anon_sym_BSLASHcolorbox] = ACTIONS(10107), + [anon_sym_BSLASHtextcolor] = ACTIONS(10107), + [anon_sym_BSLASHpagecolor] = ACTIONS(10107), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10110), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10113), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10119), + }, + [422] = { + [sym__simple_content] = STATE(416), + [sym_brace_group] = STATE(416), + [sym_mixed_group] = STATE(416), + [sym_text] = STATE(416), + [sym__text_fragment] = STATE(645), + [sym_displayed_equation] = STATE(416), + [sym_inline_formula] = STATE(416), + [sym_begin] = STATE(94), + [sym_environment] = STATE(416), + [sym_caption] = STATE(416), + [sym_citation] = STATE(416), + [sym_package_include] = STATE(416), + [sym_class_include] = STATE(416), + [sym_latex_include] = STATE(416), + [sym_latex_input] = STATE(416), + [sym_biblatex_include] = STATE(416), + [sym_bibtex_include] = STATE(416), + [sym_graphics_include] = STATE(416), + [sym_svg_include] = STATE(416), + [sym_inkscape_include] = STATE(416), + [sym_verbatim_include] = STATE(416), + [sym_import] = STATE(416), + [sym_label_definition] = STATE(416), + [sym_label_reference] = STATE(416), + [sym_equation_label_reference] = STATE(416), + [sym_label_reference_range] = STATE(416), + [sym_label_number] = STATE(416), + [sym_command_definition] = STATE(416), + [sym_math_operator] = STATE(416), + [sym_glossary_entry_definition] = STATE(416), + [sym_glossary_entry_reference] = STATE(416), + [sym_acronym_definition] = STATE(416), + [sym_acronym_reference] = STATE(416), + [sym_theorem_definition] = STATE(416), + [sym_color_reference] = STATE(416), + [sym_color_definition] = STATE(416), + [sym_color_set_definition] = STATE(416), + [sym_pgf_library_import] = STATE(416), + [sym_tikz_library_import] = STATE(416), + [sym_generic_command] = STATE(416), + [aux_sym_enum_item_repeat1] = STATE(416), + [aux_sym_text_repeat1] = STATE(645), + [sym_generic_command_name] = ACTIONS(4058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(6034), + [aux_sym_subsection_token1] = ACTIONS(6034), + [aux_sym_subsubsection_token1] = ACTIONS(6034), + [aux_sym_paragraph_token1] = ACTIONS(6034), + [aux_sym_subparagraph_token1] = ACTIONS(6034), + [anon_sym_BSLASHitem] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(10122), + [anon_sym_RBRACK] = ACTIONS(6032), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(4072), + [anon_sym_COMMA] = ACTIONS(4076), + [anon_sym_EQ] = ACTIONS(4076), + [sym_word] = ACTIONS(4076), + [sym_param] = ACTIONS(10124), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4080), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4084), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(4086), + [anon_sym_BSLASHcite] = ACTIONS(4088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCite] = ACTIONS(4088), + [anon_sym_BSLASHnocite] = ACTIONS(4088), + [anon_sym_BSLASHcitet] = ACTIONS(4088), + [anon_sym_BSLASHcitep] = ACTIONS(4088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteauthor] = ACTIONS(4088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitetitle] = ACTIONS(4088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteyear] = ACTIONS(4088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4090), + [anon_sym_BSLASHcitedate] = ACTIONS(4088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4090), + [anon_sym_BSLASHciteurl] = ACTIONS(4088), + [anon_sym_BSLASHfullcite] = ACTIONS(4088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4088), + [anon_sym_BSLASHcitealt] = ACTIONS(4088), + [anon_sym_BSLASHcitealp] = ACTIONS(4088), + [anon_sym_BSLASHcitetext] = ACTIONS(4088), + [anon_sym_BSLASHparencite] = ACTIONS(4088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHParencite] = ACTIONS(4088), + [anon_sym_BSLASHfootcite] = ACTIONS(4088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4088), + [anon_sym_BSLASHtextcite] = ACTIONS(4088), + [anon_sym_BSLASHTextcite] = ACTIONS(4088), + [anon_sym_BSLASHsmartcite] = ACTIONS(4088), + [anon_sym_BSLASHSmartcite] = ACTIONS(4088), + [anon_sym_BSLASHsupercite] = ACTIONS(4088), + [anon_sym_BSLASHautocite] = ACTIONS(4088), + [anon_sym_BSLASHAutocite] = ACTIONS(4088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4090), + [anon_sym_BSLASHvolcite] = ACTIONS(4088), + [anon_sym_BSLASHVolcite] = ACTIONS(4088), + [anon_sym_BSLASHpvolcite] = ACTIONS(4088), + [anon_sym_BSLASHPvolcite] = ACTIONS(4088), + [anon_sym_BSLASHfvolcite] = ACTIONS(4088), + [anon_sym_BSLASHftvolcite] = ACTIONS(4088), + [anon_sym_BSLASHsvolcite] = ACTIONS(4088), + [anon_sym_BSLASHSvolcite] = ACTIONS(4088), + [anon_sym_BSLASHtvolcite] = ACTIONS(4088), + [anon_sym_BSLASHTvolcite] = ACTIONS(4088), + [anon_sym_BSLASHavolcite] = ACTIONS(4088), + [anon_sym_BSLASHAvolcite] = ACTIONS(4088), + [anon_sym_BSLASHnotecite] = ACTIONS(4088), + [anon_sym_BSLASHpnotecite] = ACTIONS(4088), + [anon_sym_BSLASHPnotecite] = ACTIONS(4088), + [anon_sym_BSLASHfnotecite] = ACTIONS(4088), + [anon_sym_BSLASHusepackage] = ACTIONS(4092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4094), + [anon_sym_BSLASHinclude] = ACTIONS(4096), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), + [anon_sym_BSLASHinput] = ACTIONS(4098), + [anon_sym_BSLASHsubfile] = ACTIONS(4098), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4100), + [anon_sym_BSLASHbibliography] = ACTIONS(4102), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4104), + [anon_sym_BSLASHincludesvg] = ACTIONS(4106), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4110), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4110), + [anon_sym_BSLASHimport] = ACTIONS(4112), + [anon_sym_BSLASHsubimport] = ACTIONS(4112), + [anon_sym_BSLASHinputfrom] = ACTIONS(4112), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4112), + [anon_sym_BSLASHincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4112), + [anon_sym_BSLASHlabel] = ACTIONS(4114), + [anon_sym_BSLASHref] = ACTIONS(4116), + [anon_sym_BSLASHvref] = ACTIONS(4116), + [anon_sym_BSLASHVref] = ACTIONS(4116), + [anon_sym_BSLASHautoref] = ACTIONS(4116), + [anon_sym_BSLASHpageref] = ACTIONS(4116), + [anon_sym_BSLASHcref] = ACTIONS(4116), + [anon_sym_BSLASHCref] = ACTIONS(4116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4118), + [anon_sym_BSLASHnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnameCref] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4116), + [anon_sym_BSLASHlabelcref] = ACTIONS(4116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4116), + [anon_sym_BSLASHeqref] = ACTIONS(4120), + [anon_sym_BSLASHcrefrange] = ACTIONS(4122), + [anon_sym_BSLASHCrefrange] = ACTIONS(4122), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4124), + [anon_sym_BSLASHnewlabel] = ACTIONS(4126), + [anon_sym_BSLASHnewcommand] = ACTIONS(4128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4130), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4132), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4134), + [anon_sym_BSLASHgls] = ACTIONS(4136), + [anon_sym_BSLASHGls] = ACTIONS(4136), + [anon_sym_BSLASHGLS] = ACTIONS(4136), + [anon_sym_BSLASHglspl] = ACTIONS(4136), + [anon_sym_BSLASHGlspl] = ACTIONS(4136), + [anon_sym_BSLASHGLSpl] = ACTIONS(4136), + [anon_sym_BSLASHglsdisp] = ACTIONS(4136), + [anon_sym_BSLASHglslink] = ACTIONS(4136), + [anon_sym_BSLASHglstext] = ACTIONS(4136), + [anon_sym_BSLASHGlstext] = ACTIONS(4136), + [anon_sym_BSLASHGLStext] = ACTIONS(4136), + [anon_sym_BSLASHglsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4136), + [anon_sym_BSLASHglsplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSplural] = ACTIONS(4136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4136), + [anon_sym_BSLASHglsname] = ACTIONS(4136), + [anon_sym_BSLASHGlsname] = ACTIONS(4136), + [anon_sym_BSLASHGLSname] = ACTIONS(4136), + [anon_sym_BSLASHglssymbol] = ACTIONS(4136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4136), + [anon_sym_BSLASHglsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4136), + [anon_sym_BSLASHglsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4136), + [anon_sym_BSLASHglsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4136), + [anon_sym_BSLASHglsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4136), + [anon_sym_BSLASHglsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4136), + [anon_sym_BSLASHnewacronym] = ACTIONS(4138), + [anon_sym_BSLASHacrshort] = ACTIONS(4140), + [anon_sym_BSLASHAcrshort] = ACTIONS(4140), + [anon_sym_BSLASHACRshort] = ACTIONS(4140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4140), + [anon_sym_BSLASHacrlong] = ACTIONS(4140), + [anon_sym_BSLASHAcrlong] = ACTIONS(4140), + [anon_sym_BSLASHACRlong] = ACTIONS(4140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4140), + [anon_sym_BSLASHacrfull] = ACTIONS(4140), + [anon_sym_BSLASHAcrfull] = ACTIONS(4140), + [anon_sym_BSLASHACRfull] = ACTIONS(4140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4140), + [anon_sym_BSLASHacs] = ACTIONS(4140), + [anon_sym_BSLASHAcs] = ACTIONS(4140), + [anon_sym_BSLASHacsp] = ACTIONS(4140), + [anon_sym_BSLASHAcsp] = ACTIONS(4140), + [anon_sym_BSLASHacl] = ACTIONS(4140), + [anon_sym_BSLASHAcl] = ACTIONS(4140), + [anon_sym_BSLASHaclp] = ACTIONS(4140), + [anon_sym_BSLASHAclp] = ACTIONS(4140), + [anon_sym_BSLASHacf] = ACTIONS(4140), + [anon_sym_BSLASHAcf] = ACTIONS(4140), + [anon_sym_BSLASHacfp] = ACTIONS(4140), + [anon_sym_BSLASHAcfp] = ACTIONS(4140), + [anon_sym_BSLASHac] = ACTIONS(4140), + [anon_sym_BSLASHAc] = ACTIONS(4140), + [anon_sym_BSLASHacp] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4142), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4142), + [anon_sym_BSLASHcolor] = ACTIONS(4144), + [anon_sym_BSLASHcolorbox] = ACTIONS(4144), + [anon_sym_BSLASHtextcolor] = ACTIONS(4144), + [anon_sym_BSLASHpagecolor] = ACTIONS(4144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4150), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4152), + }, + [423] = { + [sym__simple_content] = STATE(413), + [sym_paragraph] = STATE(413), + [sym_subparagraph] = STATE(413), + [sym_enum_item] = STATE(413), + [sym_brace_group] = STATE(413), + [sym_mixed_group] = STATE(413), + [sym_text] = STATE(413), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(413), + [sym_inline_formula] = STATE(413), + [sym_begin] = STATE(99), + [sym_environment] = STATE(413), + [sym_caption] = STATE(413), + [sym_citation] = STATE(413), + [sym_package_include] = STATE(413), + [sym_class_include] = STATE(413), + [sym_latex_include] = STATE(413), + [sym_latex_input] = STATE(413), + [sym_biblatex_include] = STATE(413), + [sym_bibtex_include] = STATE(413), + [sym_graphics_include] = STATE(413), + [sym_svg_include] = STATE(413), + [sym_inkscape_include] = STATE(413), + [sym_verbatim_include] = STATE(413), + [sym_import] = STATE(413), + [sym_label_definition] = STATE(413), + [sym_label_reference] = STATE(413), + [sym_equation_label_reference] = STATE(413), + [sym_label_reference_range] = STATE(413), + [sym_label_number] = STATE(413), + [sym_command_definition] = STATE(413), + [sym_math_operator] = STATE(413), + [sym_glossary_entry_definition] = STATE(413), + [sym_glossary_entry_reference] = STATE(413), + [sym_acronym_definition] = STATE(413), + [sym_acronym_reference] = STATE(413), + [sym_theorem_definition] = STATE(413), + [sym_color_reference] = STATE(413), + [sym_color_definition] = STATE(413), + [sym_color_set_definition] = STATE(413), + [sym_pgf_library_import] = STATE(413), + [sym_tikz_library_import] = STATE(413), + [sym_generic_command] = STATE(413), + [aux_sym_subsubsection_repeat1] = STATE(413), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(9773), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(9775), + [aux_sym_subparagraph_token1] = ACTIONS(9777), + [anon_sym_BSLASHitem] = ACTIONS(9779), + [anon_sym_LBRACK] = ACTIONS(9781), + [anon_sym_RBRACK] = ACTIONS(3018), + [anon_sym_LBRACE] = ACTIONS(9783), + [anon_sym_RBRACE] = ACTIONS(3018), + [anon_sym_LPAREN] = ACTIONS(9781), + [anon_sym_COMMA] = ACTIONS(9785), + [anon_sym_EQ] = ACTIONS(9785), + [sym_word] = ACTIONS(9785), + [sym_param] = ACTIONS(10126), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9789), + [anon_sym_DOLLAR] = ACTIONS(9791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9793), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(9795), + [anon_sym_BSLASHcite] = ACTIONS(9797), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCite] = ACTIONS(9797), + [anon_sym_BSLASHnocite] = ACTIONS(9797), + [anon_sym_BSLASHcitet] = ACTIONS(9797), + [anon_sym_BSLASHcitep] = ACTIONS(9797), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteauthor] = ACTIONS(9797), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9797), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitetitle] = ACTIONS(9797), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteyear] = ACTIONS(9797), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitedate] = ACTIONS(9797), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteurl] = ACTIONS(9797), + [anon_sym_BSLASHfullcite] = ACTIONS(9797), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9797), + [anon_sym_BSLASHcitealt] = ACTIONS(9797), + [anon_sym_BSLASHcitealp] = ACTIONS(9797), + [anon_sym_BSLASHcitetext] = ACTIONS(9797), + [anon_sym_BSLASHparencite] = ACTIONS(9797), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHParencite] = ACTIONS(9797), + [anon_sym_BSLASHfootcite] = ACTIONS(9797), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9797), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9797), + [anon_sym_BSLASHtextcite] = ACTIONS(9797), + [anon_sym_BSLASHTextcite] = ACTIONS(9797), + [anon_sym_BSLASHsmartcite] = ACTIONS(9797), + [anon_sym_BSLASHSmartcite] = ACTIONS(9797), + [anon_sym_BSLASHsupercite] = ACTIONS(9797), + [anon_sym_BSLASHautocite] = ACTIONS(9797), + [anon_sym_BSLASHAutocite] = ACTIONS(9797), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHvolcite] = ACTIONS(9797), + [anon_sym_BSLASHVolcite] = ACTIONS(9797), + [anon_sym_BSLASHpvolcite] = ACTIONS(9797), + [anon_sym_BSLASHPvolcite] = ACTIONS(9797), + [anon_sym_BSLASHfvolcite] = ACTIONS(9797), + [anon_sym_BSLASHftvolcite] = ACTIONS(9797), + [anon_sym_BSLASHsvolcite] = ACTIONS(9797), + [anon_sym_BSLASHSvolcite] = ACTIONS(9797), + [anon_sym_BSLASHtvolcite] = ACTIONS(9797), + [anon_sym_BSLASHTvolcite] = ACTIONS(9797), + [anon_sym_BSLASHavolcite] = ACTIONS(9797), + [anon_sym_BSLASHAvolcite] = ACTIONS(9797), + [anon_sym_BSLASHnotecite] = ACTIONS(9797), + [anon_sym_BSLASHpnotecite] = ACTIONS(9797), + [anon_sym_BSLASHPnotecite] = ACTIONS(9797), + [anon_sym_BSLASHfnotecite] = ACTIONS(9797), + [anon_sym_BSLASHusepackage] = ACTIONS(9801), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9801), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9803), + [anon_sym_BSLASHinclude] = ACTIONS(9805), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9805), + [anon_sym_BSLASHinput] = ACTIONS(9807), + [anon_sym_BSLASHsubfile] = ACTIONS(9807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9809), + [anon_sym_BSLASHbibliography] = ACTIONS(9811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9813), + [anon_sym_BSLASHincludesvg] = ACTIONS(9815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9819), + [anon_sym_BSLASHimport] = ACTIONS(9821), + [anon_sym_BSLASHsubimport] = ACTIONS(9821), + [anon_sym_BSLASHinputfrom] = ACTIONS(9821), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9821), + [anon_sym_BSLASHincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHlabel] = ACTIONS(9823), + [anon_sym_BSLASHref] = ACTIONS(9825), + [anon_sym_BSLASHvref] = ACTIONS(9825), + [anon_sym_BSLASHVref] = ACTIONS(9825), + [anon_sym_BSLASHautoref] = ACTIONS(9825), + [anon_sym_BSLASHpageref] = ACTIONS(9825), + [anon_sym_BSLASHcref] = ACTIONS(9825), + [anon_sym_BSLASHCref] = ACTIONS(9825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnameCref] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHlabelcref] = ACTIONS(9825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9825), + [anon_sym_BSLASHeqref] = ACTIONS(9829), + [anon_sym_BSLASHcrefrange] = ACTIONS(9831), + [anon_sym_BSLASHCrefrange] = ACTIONS(9831), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHnewlabel] = ACTIONS(9835), + [anon_sym_BSLASHnewcommand] = ACTIONS(9837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9839), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9843), + [anon_sym_BSLASHgls] = ACTIONS(9845), + [anon_sym_BSLASHGls] = ACTIONS(9845), + [anon_sym_BSLASHGLS] = ACTIONS(9845), + [anon_sym_BSLASHglspl] = ACTIONS(9845), + [anon_sym_BSLASHGlspl] = ACTIONS(9845), + [anon_sym_BSLASHGLSpl] = ACTIONS(9845), + [anon_sym_BSLASHglsdisp] = ACTIONS(9845), + [anon_sym_BSLASHglslink] = ACTIONS(9845), + [anon_sym_BSLASHglstext] = ACTIONS(9845), + [anon_sym_BSLASHGlstext] = ACTIONS(9845), + [anon_sym_BSLASHGLStext] = ACTIONS(9845), + [anon_sym_BSLASHglsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9845), + [anon_sym_BSLASHglsplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSplural] = ACTIONS(9845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHglsname] = ACTIONS(9845), + [anon_sym_BSLASHGlsname] = ACTIONS(9845), + [anon_sym_BSLASHGLSname] = ACTIONS(9845), + [anon_sym_BSLASHglssymbol] = ACTIONS(9845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9845), + [anon_sym_BSLASHglsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9845), + [anon_sym_BSLASHglsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9845), + [anon_sym_BSLASHglsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9845), + [anon_sym_BSLASHglsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9845), + [anon_sym_BSLASHglsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9845), + [anon_sym_BSLASHnewacronym] = ACTIONS(9847), + [anon_sym_BSLASHacrshort] = ACTIONS(9849), + [anon_sym_BSLASHAcrshort] = ACTIONS(9849), + [anon_sym_BSLASHACRshort] = ACTIONS(9849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9849), + [anon_sym_BSLASHacrlong] = ACTIONS(9849), + [anon_sym_BSLASHAcrlong] = ACTIONS(9849), + [anon_sym_BSLASHACRlong] = ACTIONS(9849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9849), + [anon_sym_BSLASHacrfull] = ACTIONS(9849), + [anon_sym_BSLASHAcrfull] = ACTIONS(9849), + [anon_sym_BSLASHACRfull] = ACTIONS(9849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9849), + [anon_sym_BSLASHacs] = ACTIONS(9849), + [anon_sym_BSLASHAcs] = ACTIONS(9849), + [anon_sym_BSLASHacsp] = ACTIONS(9849), + [anon_sym_BSLASHAcsp] = ACTIONS(9849), + [anon_sym_BSLASHacl] = ACTIONS(9849), + [anon_sym_BSLASHAcl] = ACTIONS(9849), + [anon_sym_BSLASHaclp] = ACTIONS(9849), + [anon_sym_BSLASHAclp] = ACTIONS(9849), + [anon_sym_BSLASHacf] = ACTIONS(9849), + [anon_sym_BSLASHAcf] = ACTIONS(9849), + [anon_sym_BSLASHacfp] = ACTIONS(9849), + [anon_sym_BSLASHAcfp] = ACTIONS(9849), + [anon_sym_BSLASHac] = ACTIONS(9849), + [anon_sym_BSLASHAc] = ACTIONS(9849), + [anon_sym_BSLASHacp] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9851), + [anon_sym_BSLASHcolor] = ACTIONS(9853), + [anon_sym_BSLASHcolorbox] = ACTIONS(9853), + [anon_sym_BSLASHtextcolor] = ACTIONS(9853), + [anon_sym_BSLASHpagecolor] = ACTIONS(9853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9855), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9859), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9861), + }, + [424] = { + [sym__simple_content] = STATE(428), + [sym_brace_group] = STATE(428), + [sym_mixed_group] = STATE(428), + [sym_text] = STATE(428), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(428), + [sym_inline_formula] = STATE(428), + [sym_begin] = STATE(105), + [sym_environment] = STATE(428), + [sym_caption] = STATE(428), + [sym_citation] = STATE(428), + [sym_package_include] = STATE(428), + [sym_class_include] = STATE(428), + [sym_latex_include] = STATE(428), + [sym_latex_input] = STATE(428), + [sym_biblatex_include] = STATE(428), + [sym_bibtex_include] = STATE(428), + [sym_graphics_include] = STATE(428), + [sym_svg_include] = STATE(428), + [sym_inkscape_include] = STATE(428), + [sym_verbatim_include] = STATE(428), + [sym_import] = STATE(428), + [sym_label_definition] = STATE(428), + [sym_label_reference] = STATE(428), + [sym_equation_label_reference] = STATE(428), + [sym_label_reference_range] = STATE(428), + [sym_label_number] = STATE(428), + [sym_command_definition] = STATE(428), + [sym_math_operator] = STATE(428), + [sym_glossary_entry_definition] = STATE(428), + [sym_glossary_entry_reference] = STATE(428), + [sym_acronym_definition] = STATE(428), + [sym_acronym_reference] = STATE(428), + [sym_theorem_definition] = STATE(428), + [sym_color_reference] = STATE(428), + [sym_color_definition] = STATE(428), + [sym_color_set_definition] = STATE(428), + [sym_pgf_library_import] = STATE(428), + [sym_tikz_library_import] = STATE(428), + [sym_generic_command] = STATE(428), + [aux_sym_enum_item_repeat1] = STATE(428), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(5600), + [aux_sym_subsubsection_token1] = ACTIONS(5600), + [aux_sym_paragraph_token1] = ACTIONS(5600), + [aux_sym_subparagraph_token1] = ACTIONS(5600), + [anon_sym_BSLASHitem] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(5598), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(10128), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [425] = { + [sym__simple_content] = STATE(427), + [sym_enum_item] = STATE(427), + [sym_brace_group] = STATE(427), + [sym_mixed_group] = STATE(427), + [sym_text] = STATE(427), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(427), + [sym_inline_formula] = STATE(427), + [sym_begin] = STATE(112), + [sym_environment] = STATE(427), + [sym_caption] = STATE(427), + [sym_citation] = STATE(427), + [sym_package_include] = STATE(427), + [sym_class_include] = STATE(427), + [sym_latex_include] = STATE(427), + [sym_latex_input] = STATE(427), + [sym_biblatex_include] = STATE(427), + [sym_bibtex_include] = STATE(427), + [sym_graphics_include] = STATE(427), + [sym_svg_include] = STATE(427), + [sym_inkscape_include] = STATE(427), + [sym_verbatim_include] = STATE(427), + [sym_import] = STATE(427), + [sym_label_definition] = STATE(427), + [sym_label_reference] = STATE(427), + [sym_equation_label_reference] = STATE(427), + [sym_label_reference_range] = STATE(427), + [sym_label_number] = STATE(427), + [sym_command_definition] = STATE(427), + [sym_math_operator] = STATE(427), + [sym_glossary_entry_definition] = STATE(427), + [sym_glossary_entry_reference] = STATE(427), + [sym_acronym_definition] = STATE(427), + [sym_acronym_reference] = STATE(427), + [sym_theorem_definition] = STATE(427), + [sym_color_reference] = STATE(427), + [sym_color_definition] = STATE(427), + [sym_color_set_definition] = STATE(427), + [sym_pgf_library_import] = STATE(427), + [sym_tikz_library_import] = STATE(427), + [sym_generic_command] = STATE(427), + [aux_sym_subparagraph_repeat1] = STATE(427), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(7652), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(4879), + [aux_sym_paragraph_token1] = ACTIONS(4879), + [aux_sym_subparagraph_token1] = ACTIONS(4879), + [anon_sym_BSLASHitem] = ACTIONS(7660), + [anon_sym_LBRACK] = ACTIONS(7662), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(4877), + [anon_sym_LPAREN] = ACTIONS(7662), + [anon_sym_COMMA] = ACTIONS(7666), + [anon_sym_EQ] = ACTIONS(7666), + [sym_word] = ACTIONS(7666), + [sym_param] = ACTIONS(10130), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7670), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7670), + [anon_sym_DOLLAR] = ACTIONS(7672), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7674), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7676), + [anon_sym_BSLASHcite] = ACTIONS(7678), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCite] = ACTIONS(7678), + [anon_sym_BSLASHnocite] = ACTIONS(7678), + [anon_sym_BSLASHcitet] = ACTIONS(7678), + [anon_sym_BSLASHcitep] = ACTIONS(7678), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteauthor] = ACTIONS(7678), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7678), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitetitle] = ACTIONS(7678), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteyear] = ACTIONS(7678), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitedate] = ACTIONS(7678), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteurl] = ACTIONS(7678), + [anon_sym_BSLASHfullcite] = ACTIONS(7678), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7678), + [anon_sym_BSLASHcitealt] = ACTIONS(7678), + [anon_sym_BSLASHcitealp] = ACTIONS(7678), + [anon_sym_BSLASHcitetext] = ACTIONS(7678), + [anon_sym_BSLASHparencite] = ACTIONS(7678), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHParencite] = ACTIONS(7678), + [anon_sym_BSLASHfootcite] = ACTIONS(7678), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7678), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7678), + [anon_sym_BSLASHtextcite] = ACTIONS(7678), + [anon_sym_BSLASHTextcite] = ACTIONS(7678), + [anon_sym_BSLASHsmartcite] = ACTIONS(7678), + [anon_sym_BSLASHSmartcite] = ACTIONS(7678), + [anon_sym_BSLASHsupercite] = ACTIONS(7678), + [anon_sym_BSLASHautocite] = ACTIONS(7678), + [anon_sym_BSLASHAutocite] = ACTIONS(7678), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHvolcite] = ACTIONS(7678), + [anon_sym_BSLASHVolcite] = ACTIONS(7678), + [anon_sym_BSLASHpvolcite] = ACTIONS(7678), + [anon_sym_BSLASHPvolcite] = ACTIONS(7678), + [anon_sym_BSLASHfvolcite] = ACTIONS(7678), + [anon_sym_BSLASHftvolcite] = ACTIONS(7678), + [anon_sym_BSLASHsvolcite] = ACTIONS(7678), + [anon_sym_BSLASHSvolcite] = ACTIONS(7678), + [anon_sym_BSLASHtvolcite] = ACTIONS(7678), + [anon_sym_BSLASHTvolcite] = ACTIONS(7678), + [anon_sym_BSLASHavolcite] = ACTIONS(7678), + [anon_sym_BSLASHAvolcite] = ACTIONS(7678), + [anon_sym_BSLASHnotecite] = ACTIONS(7678), + [anon_sym_BSLASHpnotecite] = ACTIONS(7678), + [anon_sym_BSLASHPnotecite] = ACTIONS(7678), + [anon_sym_BSLASHfnotecite] = ACTIONS(7678), + [anon_sym_BSLASHusepackage] = ACTIONS(7682), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7684), + [anon_sym_BSLASHinclude] = ACTIONS(7686), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7686), + [anon_sym_BSLASHinput] = ACTIONS(7688), + [anon_sym_BSLASHsubfile] = ACTIONS(7688), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7690), + [anon_sym_BSLASHbibliography] = ACTIONS(7692), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7694), + [anon_sym_BSLASHincludesvg] = ACTIONS(7696), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7698), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7700), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7700), + [anon_sym_BSLASHimport] = ACTIONS(7702), + [anon_sym_BSLASHsubimport] = ACTIONS(7702), + [anon_sym_BSLASHinputfrom] = ACTIONS(7702), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7702), + [anon_sym_BSLASHincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHlabel] = ACTIONS(7704), + [anon_sym_BSLASHref] = ACTIONS(7706), + [anon_sym_BSLASHvref] = ACTIONS(7706), + [anon_sym_BSLASHVref] = ACTIONS(7706), + [anon_sym_BSLASHautoref] = ACTIONS(7706), + [anon_sym_BSLASHpageref] = ACTIONS(7706), + [anon_sym_BSLASHcref] = ACTIONS(7706), + [anon_sym_BSLASHCref] = ACTIONS(7706), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnameCref] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHlabelcref] = ACTIONS(7706), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7706), + [anon_sym_BSLASHeqref] = ACTIONS(7710), + [anon_sym_BSLASHcrefrange] = ACTIONS(7712), + [anon_sym_BSLASHCrefrange] = ACTIONS(7712), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHnewlabel] = ACTIONS(7716), + [anon_sym_BSLASHnewcommand] = ACTIONS(7718), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7720), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7722), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7724), + [anon_sym_BSLASHgls] = ACTIONS(7726), + [anon_sym_BSLASHGls] = ACTIONS(7726), + [anon_sym_BSLASHGLS] = ACTIONS(7726), + [anon_sym_BSLASHglspl] = ACTIONS(7726), + [anon_sym_BSLASHGlspl] = ACTIONS(7726), + [anon_sym_BSLASHGLSpl] = ACTIONS(7726), + [anon_sym_BSLASHglsdisp] = ACTIONS(7726), + [anon_sym_BSLASHglslink] = ACTIONS(7726), + [anon_sym_BSLASHglstext] = ACTIONS(7726), + [anon_sym_BSLASHGlstext] = ACTIONS(7726), + [anon_sym_BSLASHGLStext] = ACTIONS(7726), + [anon_sym_BSLASHglsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7726), + [anon_sym_BSLASHglsplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSplural] = ACTIONS(7726), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHglsname] = ACTIONS(7726), + [anon_sym_BSLASHGlsname] = ACTIONS(7726), + [anon_sym_BSLASHGLSname] = ACTIONS(7726), + [anon_sym_BSLASHglssymbol] = ACTIONS(7726), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7726), + [anon_sym_BSLASHglsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7726), + [anon_sym_BSLASHglsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7726), + [anon_sym_BSLASHglsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7726), + [anon_sym_BSLASHglsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7726), + [anon_sym_BSLASHglsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7726), + [anon_sym_BSLASHnewacronym] = ACTIONS(7728), + [anon_sym_BSLASHacrshort] = ACTIONS(7730), + [anon_sym_BSLASHAcrshort] = ACTIONS(7730), + [anon_sym_BSLASHACRshort] = ACTIONS(7730), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7730), + [anon_sym_BSLASHacrlong] = ACTIONS(7730), + [anon_sym_BSLASHAcrlong] = ACTIONS(7730), + [anon_sym_BSLASHACRlong] = ACTIONS(7730), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7730), + [anon_sym_BSLASHacrfull] = ACTIONS(7730), + [anon_sym_BSLASHAcrfull] = ACTIONS(7730), + [anon_sym_BSLASHACRfull] = ACTIONS(7730), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7730), + [anon_sym_BSLASHacs] = ACTIONS(7730), + [anon_sym_BSLASHAcs] = ACTIONS(7730), + [anon_sym_BSLASHacsp] = ACTIONS(7730), + [anon_sym_BSLASHAcsp] = ACTIONS(7730), + [anon_sym_BSLASHacl] = ACTIONS(7730), + [anon_sym_BSLASHAcl] = ACTIONS(7730), + [anon_sym_BSLASHaclp] = ACTIONS(7730), + [anon_sym_BSLASHAclp] = ACTIONS(7730), + [anon_sym_BSLASHacf] = ACTIONS(7730), + [anon_sym_BSLASHAcf] = ACTIONS(7730), + [anon_sym_BSLASHacfp] = ACTIONS(7730), + [anon_sym_BSLASHAcfp] = ACTIONS(7730), + [anon_sym_BSLASHac] = ACTIONS(7730), + [anon_sym_BSLASHAc] = ACTIONS(7730), + [anon_sym_BSLASHacp] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7732), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7732), + [anon_sym_BSLASHcolor] = ACTIONS(7734), + [anon_sym_BSLASHcolorbox] = ACTIONS(7734), + [anon_sym_BSLASHtextcolor] = ACTIONS(7734), + [anon_sym_BSLASHpagecolor] = ACTIONS(7734), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7736), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7738), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7740), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7742), + }, + [426] = { + [sym__simple_content] = STATE(433), + [sym_subparagraph] = STATE(433), + [sym_enum_item] = STATE(433), + [sym_brace_group] = STATE(433), + [sym_mixed_group] = STATE(433), + [sym_text] = STATE(433), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(433), + [sym_inline_formula] = STATE(433), + [sym_begin] = STATE(99), + [sym_environment] = STATE(433), + [sym_caption] = STATE(433), + [sym_citation] = STATE(433), + [sym_package_include] = STATE(433), + [sym_class_include] = STATE(433), + [sym_latex_include] = STATE(433), + [sym_latex_input] = STATE(433), + [sym_biblatex_include] = STATE(433), + [sym_bibtex_include] = STATE(433), + [sym_graphics_include] = STATE(433), + [sym_svg_include] = STATE(433), + [sym_inkscape_include] = STATE(433), + [sym_verbatim_include] = STATE(433), + [sym_import] = STATE(433), + [sym_label_definition] = STATE(433), + [sym_label_reference] = STATE(433), + [sym_equation_label_reference] = STATE(433), + [sym_label_reference_range] = STATE(433), + [sym_label_number] = STATE(433), + [sym_command_definition] = STATE(433), + [sym_math_operator] = STATE(433), + [sym_glossary_entry_definition] = STATE(433), + [sym_glossary_entry_reference] = STATE(433), + [sym_acronym_definition] = STATE(433), + [sym_acronym_reference] = STATE(433), + [sym_theorem_definition] = STATE(433), + [sym_color_reference] = STATE(433), + [sym_color_definition] = STATE(433), + [sym_color_set_definition] = STATE(433), + [sym_pgf_library_import] = STATE(433), + [sym_tikz_library_import] = STATE(433), + [sym_generic_command] = STATE(433), + [aux_sym_paragraph_repeat1] = STATE(433), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(9773), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(4054), + [aux_sym_subparagraph_token1] = ACTIONS(9777), + [anon_sym_BSLASHitem] = ACTIONS(9779), + [anon_sym_LBRACK] = ACTIONS(9781), + [anon_sym_RBRACK] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(9783), + [anon_sym_RBRACE] = ACTIONS(4052), + [anon_sym_LPAREN] = ACTIONS(9781), + [anon_sym_COMMA] = ACTIONS(9785), + [anon_sym_EQ] = ACTIONS(9785), + [sym_word] = ACTIONS(9785), + [sym_param] = ACTIONS(10132), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9789), + [anon_sym_DOLLAR] = ACTIONS(9791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9793), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(9795), + [anon_sym_BSLASHcite] = ACTIONS(9797), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCite] = ACTIONS(9797), + [anon_sym_BSLASHnocite] = ACTIONS(9797), + [anon_sym_BSLASHcitet] = ACTIONS(9797), + [anon_sym_BSLASHcitep] = ACTIONS(9797), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteauthor] = ACTIONS(9797), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9797), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitetitle] = ACTIONS(9797), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteyear] = ACTIONS(9797), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitedate] = ACTIONS(9797), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteurl] = ACTIONS(9797), + [anon_sym_BSLASHfullcite] = ACTIONS(9797), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9797), + [anon_sym_BSLASHcitealt] = ACTIONS(9797), + [anon_sym_BSLASHcitealp] = ACTIONS(9797), + [anon_sym_BSLASHcitetext] = ACTIONS(9797), + [anon_sym_BSLASHparencite] = ACTIONS(9797), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHParencite] = ACTIONS(9797), + [anon_sym_BSLASHfootcite] = ACTIONS(9797), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9797), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9797), + [anon_sym_BSLASHtextcite] = ACTIONS(9797), + [anon_sym_BSLASHTextcite] = ACTIONS(9797), + [anon_sym_BSLASHsmartcite] = ACTIONS(9797), + [anon_sym_BSLASHSmartcite] = ACTIONS(9797), + [anon_sym_BSLASHsupercite] = ACTIONS(9797), + [anon_sym_BSLASHautocite] = ACTIONS(9797), + [anon_sym_BSLASHAutocite] = ACTIONS(9797), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHvolcite] = ACTIONS(9797), + [anon_sym_BSLASHVolcite] = ACTIONS(9797), + [anon_sym_BSLASHpvolcite] = ACTIONS(9797), + [anon_sym_BSLASHPvolcite] = ACTIONS(9797), + [anon_sym_BSLASHfvolcite] = ACTIONS(9797), + [anon_sym_BSLASHftvolcite] = ACTIONS(9797), + [anon_sym_BSLASHsvolcite] = ACTIONS(9797), + [anon_sym_BSLASHSvolcite] = ACTIONS(9797), + [anon_sym_BSLASHtvolcite] = ACTIONS(9797), + [anon_sym_BSLASHTvolcite] = ACTIONS(9797), + [anon_sym_BSLASHavolcite] = ACTIONS(9797), + [anon_sym_BSLASHAvolcite] = ACTIONS(9797), + [anon_sym_BSLASHnotecite] = ACTIONS(9797), + [anon_sym_BSLASHpnotecite] = ACTIONS(9797), + [anon_sym_BSLASHPnotecite] = ACTIONS(9797), + [anon_sym_BSLASHfnotecite] = ACTIONS(9797), + [anon_sym_BSLASHusepackage] = ACTIONS(9801), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9801), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9803), + [anon_sym_BSLASHinclude] = ACTIONS(9805), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9805), + [anon_sym_BSLASHinput] = ACTIONS(9807), + [anon_sym_BSLASHsubfile] = ACTIONS(9807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9809), + [anon_sym_BSLASHbibliography] = ACTIONS(9811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9813), + [anon_sym_BSLASHincludesvg] = ACTIONS(9815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9819), + [anon_sym_BSLASHimport] = ACTIONS(9821), + [anon_sym_BSLASHsubimport] = ACTIONS(9821), + [anon_sym_BSLASHinputfrom] = ACTIONS(9821), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9821), + [anon_sym_BSLASHincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHlabel] = ACTIONS(9823), + [anon_sym_BSLASHref] = ACTIONS(9825), + [anon_sym_BSLASHvref] = ACTIONS(9825), + [anon_sym_BSLASHVref] = ACTIONS(9825), + [anon_sym_BSLASHautoref] = ACTIONS(9825), + [anon_sym_BSLASHpageref] = ACTIONS(9825), + [anon_sym_BSLASHcref] = ACTIONS(9825), + [anon_sym_BSLASHCref] = ACTIONS(9825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnameCref] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHlabelcref] = ACTIONS(9825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9825), + [anon_sym_BSLASHeqref] = ACTIONS(9829), + [anon_sym_BSLASHcrefrange] = ACTIONS(9831), + [anon_sym_BSLASHCrefrange] = ACTIONS(9831), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHnewlabel] = ACTIONS(9835), + [anon_sym_BSLASHnewcommand] = ACTIONS(9837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9839), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9843), + [anon_sym_BSLASHgls] = ACTIONS(9845), + [anon_sym_BSLASHGls] = ACTIONS(9845), + [anon_sym_BSLASHGLS] = ACTIONS(9845), + [anon_sym_BSLASHglspl] = ACTIONS(9845), + [anon_sym_BSLASHGlspl] = ACTIONS(9845), + [anon_sym_BSLASHGLSpl] = ACTIONS(9845), + [anon_sym_BSLASHglsdisp] = ACTIONS(9845), + [anon_sym_BSLASHglslink] = ACTIONS(9845), + [anon_sym_BSLASHglstext] = ACTIONS(9845), + [anon_sym_BSLASHGlstext] = ACTIONS(9845), + [anon_sym_BSLASHGLStext] = ACTIONS(9845), + [anon_sym_BSLASHglsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9845), + [anon_sym_BSLASHglsplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSplural] = ACTIONS(9845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHglsname] = ACTIONS(9845), + [anon_sym_BSLASHGlsname] = ACTIONS(9845), + [anon_sym_BSLASHGLSname] = ACTIONS(9845), + [anon_sym_BSLASHglssymbol] = ACTIONS(9845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9845), + [anon_sym_BSLASHglsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9845), + [anon_sym_BSLASHglsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9845), + [anon_sym_BSLASHglsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9845), + [anon_sym_BSLASHglsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9845), + [anon_sym_BSLASHglsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9845), + [anon_sym_BSLASHnewacronym] = ACTIONS(9847), + [anon_sym_BSLASHacrshort] = ACTIONS(9849), + [anon_sym_BSLASHAcrshort] = ACTIONS(9849), + [anon_sym_BSLASHACRshort] = ACTIONS(9849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9849), + [anon_sym_BSLASHacrlong] = ACTIONS(9849), + [anon_sym_BSLASHAcrlong] = ACTIONS(9849), + [anon_sym_BSLASHACRlong] = ACTIONS(9849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9849), + [anon_sym_BSLASHacrfull] = ACTIONS(9849), + [anon_sym_BSLASHAcrfull] = ACTIONS(9849), + [anon_sym_BSLASHACRfull] = ACTIONS(9849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9849), + [anon_sym_BSLASHacs] = ACTIONS(9849), + [anon_sym_BSLASHAcs] = ACTIONS(9849), + [anon_sym_BSLASHacsp] = ACTIONS(9849), + [anon_sym_BSLASHAcsp] = ACTIONS(9849), + [anon_sym_BSLASHacl] = ACTIONS(9849), + [anon_sym_BSLASHAcl] = ACTIONS(9849), + [anon_sym_BSLASHaclp] = ACTIONS(9849), + [anon_sym_BSLASHAclp] = ACTIONS(9849), + [anon_sym_BSLASHacf] = ACTIONS(9849), + [anon_sym_BSLASHAcf] = ACTIONS(9849), + [anon_sym_BSLASHacfp] = ACTIONS(9849), + [anon_sym_BSLASHAcfp] = ACTIONS(9849), + [anon_sym_BSLASHac] = ACTIONS(9849), + [anon_sym_BSLASHAc] = ACTIONS(9849), + [anon_sym_BSLASHacp] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9851), + [anon_sym_BSLASHcolor] = ACTIONS(9853), + [anon_sym_BSLASHcolorbox] = ACTIONS(9853), + [anon_sym_BSLASHtextcolor] = ACTIONS(9853), + [anon_sym_BSLASHpagecolor] = ACTIONS(9853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9855), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9859), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9861), + }, + [427] = { + [sym__simple_content] = STATE(430), + [sym_enum_item] = STATE(430), + [sym_brace_group] = STATE(430), + [sym_mixed_group] = STATE(430), + [sym_text] = STATE(430), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(430), + [sym_inline_formula] = STATE(430), + [sym_begin] = STATE(112), + [sym_environment] = STATE(430), + [sym_caption] = STATE(430), + [sym_citation] = STATE(430), + [sym_package_include] = STATE(430), + [sym_class_include] = STATE(430), + [sym_latex_include] = STATE(430), + [sym_latex_input] = STATE(430), + [sym_biblatex_include] = STATE(430), + [sym_bibtex_include] = STATE(430), + [sym_graphics_include] = STATE(430), + [sym_svg_include] = STATE(430), + [sym_inkscape_include] = STATE(430), + [sym_verbatim_include] = STATE(430), + [sym_import] = STATE(430), + [sym_label_definition] = STATE(430), + [sym_label_reference] = STATE(430), + [sym_equation_label_reference] = STATE(430), + [sym_label_reference_range] = STATE(430), + [sym_label_number] = STATE(430), + [sym_command_definition] = STATE(430), + [sym_math_operator] = STATE(430), + [sym_glossary_entry_definition] = STATE(430), + [sym_glossary_entry_reference] = STATE(430), + [sym_acronym_definition] = STATE(430), + [sym_acronym_reference] = STATE(430), + [sym_theorem_definition] = STATE(430), + [sym_color_reference] = STATE(430), + [sym_color_definition] = STATE(430), + [sym_color_set_definition] = STATE(430), + [sym_pgf_library_import] = STATE(430), + [sym_tikz_library_import] = STATE(430), + [sym_generic_command] = STATE(430), + [aux_sym_subparagraph_repeat1] = STATE(430), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(7652), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(5168), + [aux_sym_paragraph_token1] = ACTIONS(5168), + [aux_sym_subparagraph_token1] = ACTIONS(5168), + [anon_sym_BSLASHitem] = ACTIONS(7660), + [anon_sym_LBRACK] = ACTIONS(7662), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(7662), + [anon_sym_COMMA] = ACTIONS(7666), + [anon_sym_EQ] = ACTIONS(7666), + [sym_word] = ACTIONS(7666), + [sym_param] = ACTIONS(10134), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7670), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7670), + [anon_sym_DOLLAR] = ACTIONS(7672), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7674), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7676), + [anon_sym_BSLASHcite] = ACTIONS(7678), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCite] = ACTIONS(7678), + [anon_sym_BSLASHnocite] = ACTIONS(7678), + [anon_sym_BSLASHcitet] = ACTIONS(7678), + [anon_sym_BSLASHcitep] = ACTIONS(7678), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteauthor] = ACTIONS(7678), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7678), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitetitle] = ACTIONS(7678), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteyear] = ACTIONS(7678), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitedate] = ACTIONS(7678), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteurl] = ACTIONS(7678), + [anon_sym_BSLASHfullcite] = ACTIONS(7678), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7678), + [anon_sym_BSLASHcitealt] = ACTIONS(7678), + [anon_sym_BSLASHcitealp] = ACTIONS(7678), + [anon_sym_BSLASHcitetext] = ACTIONS(7678), + [anon_sym_BSLASHparencite] = ACTIONS(7678), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHParencite] = ACTIONS(7678), + [anon_sym_BSLASHfootcite] = ACTIONS(7678), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7678), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7678), + [anon_sym_BSLASHtextcite] = ACTIONS(7678), + [anon_sym_BSLASHTextcite] = ACTIONS(7678), + [anon_sym_BSLASHsmartcite] = ACTIONS(7678), + [anon_sym_BSLASHSmartcite] = ACTIONS(7678), + [anon_sym_BSLASHsupercite] = ACTIONS(7678), + [anon_sym_BSLASHautocite] = ACTIONS(7678), + [anon_sym_BSLASHAutocite] = ACTIONS(7678), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHvolcite] = ACTIONS(7678), + [anon_sym_BSLASHVolcite] = ACTIONS(7678), + [anon_sym_BSLASHpvolcite] = ACTIONS(7678), + [anon_sym_BSLASHPvolcite] = ACTIONS(7678), + [anon_sym_BSLASHfvolcite] = ACTIONS(7678), + [anon_sym_BSLASHftvolcite] = ACTIONS(7678), + [anon_sym_BSLASHsvolcite] = ACTIONS(7678), + [anon_sym_BSLASHSvolcite] = ACTIONS(7678), + [anon_sym_BSLASHtvolcite] = ACTIONS(7678), + [anon_sym_BSLASHTvolcite] = ACTIONS(7678), + [anon_sym_BSLASHavolcite] = ACTIONS(7678), + [anon_sym_BSLASHAvolcite] = ACTIONS(7678), + [anon_sym_BSLASHnotecite] = ACTIONS(7678), + [anon_sym_BSLASHpnotecite] = ACTIONS(7678), + [anon_sym_BSLASHPnotecite] = ACTIONS(7678), + [anon_sym_BSLASHfnotecite] = ACTIONS(7678), + [anon_sym_BSLASHusepackage] = ACTIONS(7682), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7684), + [anon_sym_BSLASHinclude] = ACTIONS(7686), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7686), + [anon_sym_BSLASHinput] = ACTIONS(7688), + [anon_sym_BSLASHsubfile] = ACTIONS(7688), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7690), + [anon_sym_BSLASHbibliography] = ACTIONS(7692), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7694), + [anon_sym_BSLASHincludesvg] = ACTIONS(7696), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7698), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7700), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7700), + [anon_sym_BSLASHimport] = ACTIONS(7702), + [anon_sym_BSLASHsubimport] = ACTIONS(7702), + [anon_sym_BSLASHinputfrom] = ACTIONS(7702), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7702), + [anon_sym_BSLASHincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHlabel] = ACTIONS(7704), + [anon_sym_BSLASHref] = ACTIONS(7706), + [anon_sym_BSLASHvref] = ACTIONS(7706), + [anon_sym_BSLASHVref] = ACTIONS(7706), + [anon_sym_BSLASHautoref] = ACTIONS(7706), + [anon_sym_BSLASHpageref] = ACTIONS(7706), + [anon_sym_BSLASHcref] = ACTIONS(7706), + [anon_sym_BSLASHCref] = ACTIONS(7706), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnameCref] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHlabelcref] = ACTIONS(7706), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7706), + [anon_sym_BSLASHeqref] = ACTIONS(7710), + [anon_sym_BSLASHcrefrange] = ACTIONS(7712), + [anon_sym_BSLASHCrefrange] = ACTIONS(7712), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHnewlabel] = ACTIONS(7716), + [anon_sym_BSLASHnewcommand] = ACTIONS(7718), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7720), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7722), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7724), + [anon_sym_BSLASHgls] = ACTIONS(7726), + [anon_sym_BSLASHGls] = ACTIONS(7726), + [anon_sym_BSLASHGLS] = ACTIONS(7726), + [anon_sym_BSLASHglspl] = ACTIONS(7726), + [anon_sym_BSLASHGlspl] = ACTIONS(7726), + [anon_sym_BSLASHGLSpl] = ACTIONS(7726), + [anon_sym_BSLASHglsdisp] = ACTIONS(7726), + [anon_sym_BSLASHglslink] = ACTIONS(7726), + [anon_sym_BSLASHglstext] = ACTIONS(7726), + [anon_sym_BSLASHGlstext] = ACTIONS(7726), + [anon_sym_BSLASHGLStext] = ACTIONS(7726), + [anon_sym_BSLASHglsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7726), + [anon_sym_BSLASHglsplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSplural] = ACTIONS(7726), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHglsname] = ACTIONS(7726), + [anon_sym_BSLASHGlsname] = ACTIONS(7726), + [anon_sym_BSLASHGLSname] = ACTIONS(7726), + [anon_sym_BSLASHglssymbol] = ACTIONS(7726), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7726), + [anon_sym_BSLASHglsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7726), + [anon_sym_BSLASHglsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7726), + [anon_sym_BSLASHglsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7726), + [anon_sym_BSLASHglsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7726), + [anon_sym_BSLASHglsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7726), + [anon_sym_BSLASHnewacronym] = ACTIONS(7728), + [anon_sym_BSLASHacrshort] = ACTIONS(7730), + [anon_sym_BSLASHAcrshort] = ACTIONS(7730), + [anon_sym_BSLASHACRshort] = ACTIONS(7730), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7730), + [anon_sym_BSLASHacrlong] = ACTIONS(7730), + [anon_sym_BSLASHAcrlong] = ACTIONS(7730), + [anon_sym_BSLASHACRlong] = ACTIONS(7730), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7730), + [anon_sym_BSLASHacrfull] = ACTIONS(7730), + [anon_sym_BSLASHAcrfull] = ACTIONS(7730), + [anon_sym_BSLASHACRfull] = ACTIONS(7730), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7730), + [anon_sym_BSLASHacs] = ACTIONS(7730), + [anon_sym_BSLASHAcs] = ACTIONS(7730), + [anon_sym_BSLASHacsp] = ACTIONS(7730), + [anon_sym_BSLASHAcsp] = ACTIONS(7730), + [anon_sym_BSLASHacl] = ACTIONS(7730), + [anon_sym_BSLASHAcl] = ACTIONS(7730), + [anon_sym_BSLASHaclp] = ACTIONS(7730), + [anon_sym_BSLASHAclp] = ACTIONS(7730), + [anon_sym_BSLASHacf] = ACTIONS(7730), + [anon_sym_BSLASHAcf] = ACTIONS(7730), + [anon_sym_BSLASHacfp] = ACTIONS(7730), + [anon_sym_BSLASHAcfp] = ACTIONS(7730), + [anon_sym_BSLASHac] = ACTIONS(7730), + [anon_sym_BSLASHAc] = ACTIONS(7730), + [anon_sym_BSLASHacp] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7732), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7732), + [anon_sym_BSLASHcolor] = ACTIONS(7734), + [anon_sym_BSLASHcolorbox] = ACTIONS(7734), + [anon_sym_BSLASHtextcolor] = ACTIONS(7734), + [anon_sym_BSLASHpagecolor] = ACTIONS(7734), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7736), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7738), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7740), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7742), + }, + [428] = { + [sym__simple_content] = STATE(428), + [sym_brace_group] = STATE(428), + [sym_mixed_group] = STATE(428), + [sym_text] = STATE(428), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(428), + [sym_inline_formula] = STATE(428), + [sym_begin] = STATE(105), + [sym_environment] = STATE(428), + [sym_caption] = STATE(428), + [sym_citation] = STATE(428), + [sym_package_include] = STATE(428), + [sym_class_include] = STATE(428), + [sym_latex_include] = STATE(428), + [sym_latex_input] = STATE(428), + [sym_biblatex_include] = STATE(428), + [sym_bibtex_include] = STATE(428), + [sym_graphics_include] = STATE(428), + [sym_svg_include] = STATE(428), + [sym_inkscape_include] = STATE(428), + [sym_verbatim_include] = STATE(428), + [sym_import] = STATE(428), + [sym_label_definition] = STATE(428), + [sym_label_reference] = STATE(428), + [sym_equation_label_reference] = STATE(428), + [sym_label_reference_range] = STATE(428), + [sym_label_number] = STATE(428), + [sym_command_definition] = STATE(428), + [sym_math_operator] = STATE(428), + [sym_glossary_entry_definition] = STATE(428), + [sym_glossary_entry_reference] = STATE(428), + [sym_acronym_definition] = STATE(428), + [sym_acronym_reference] = STATE(428), + [sym_theorem_definition] = STATE(428), + [sym_color_reference] = STATE(428), + [sym_color_definition] = STATE(428), + [sym_color_set_definition] = STATE(428), + [sym_pgf_library_import] = STATE(428), + [sym_tikz_library_import] = STATE(428), + [sym_generic_command] = STATE(428), + [aux_sym_enum_item_repeat1] = STATE(428), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(10136), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(6045), + [aux_sym_subsubsection_token1] = ACTIONS(6045), + [aux_sym_paragraph_token1] = ACTIONS(6045), + [aux_sym_subparagraph_token1] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(10139), + [anon_sym_RBRACK] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(10142), + [anon_sym_RBRACE] = ACTIONS(6040), + [anon_sym_LPAREN] = ACTIONS(10139), + [anon_sym_COMMA] = ACTIONS(10145), + [anon_sym_EQ] = ACTIONS(10145), + [sym_word] = ACTIONS(10145), + [sym_param] = ACTIONS(10148), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10151), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10151), + [anon_sym_DOLLAR] = ACTIONS(10154), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10157), + [anon_sym_BSLASHbegin] = ACTIONS(6068), + [anon_sym_BSLASHcaption] = ACTIONS(10160), + [anon_sym_BSLASHcite] = ACTIONS(10163), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10166), + [anon_sym_BSLASHCite] = ACTIONS(10163), + [anon_sym_BSLASHnocite] = ACTIONS(10163), + [anon_sym_BSLASHcitet] = ACTIONS(10163), + [anon_sym_BSLASHcitep] = ACTIONS(10163), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10166), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10166), + [anon_sym_BSLASHciteauthor] = ACTIONS(10163), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10166), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10163), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10166), + [anon_sym_BSLASHcitetitle] = ACTIONS(10163), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10166), + [anon_sym_BSLASHciteyear] = ACTIONS(10163), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10166), + [anon_sym_BSLASHcitedate] = ACTIONS(10163), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10166), + [anon_sym_BSLASHciteurl] = ACTIONS(10163), + [anon_sym_BSLASHfullcite] = ACTIONS(10163), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10163), + [anon_sym_BSLASHcitealt] = ACTIONS(10163), + [anon_sym_BSLASHcitealp] = ACTIONS(10163), + [anon_sym_BSLASHcitetext] = ACTIONS(10163), + [anon_sym_BSLASHparencite] = ACTIONS(10163), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10166), + [anon_sym_BSLASHParencite] = ACTIONS(10163), + [anon_sym_BSLASHfootcite] = ACTIONS(10163), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10163), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10163), + [anon_sym_BSLASHtextcite] = ACTIONS(10163), + [anon_sym_BSLASHTextcite] = ACTIONS(10163), + [anon_sym_BSLASHsmartcite] = ACTIONS(10163), + [anon_sym_BSLASHSmartcite] = ACTIONS(10163), + [anon_sym_BSLASHsupercite] = ACTIONS(10163), + [anon_sym_BSLASHautocite] = ACTIONS(10163), + [anon_sym_BSLASHAutocite] = ACTIONS(10163), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10166), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10166), + [anon_sym_BSLASHvolcite] = ACTIONS(10163), + [anon_sym_BSLASHVolcite] = ACTIONS(10163), + [anon_sym_BSLASHpvolcite] = ACTIONS(10163), + [anon_sym_BSLASHPvolcite] = ACTIONS(10163), + [anon_sym_BSLASHfvolcite] = ACTIONS(10163), + [anon_sym_BSLASHftvolcite] = ACTIONS(10163), + [anon_sym_BSLASHsvolcite] = ACTIONS(10163), + [anon_sym_BSLASHSvolcite] = ACTIONS(10163), + [anon_sym_BSLASHtvolcite] = ACTIONS(10163), + [anon_sym_BSLASHTvolcite] = ACTIONS(10163), + [anon_sym_BSLASHavolcite] = ACTIONS(10163), + [anon_sym_BSLASHAvolcite] = ACTIONS(10163), + [anon_sym_BSLASHnotecite] = ACTIONS(10163), + [anon_sym_BSLASHpnotecite] = ACTIONS(10163), + [anon_sym_BSLASHPnotecite] = ACTIONS(10163), + [anon_sym_BSLASHfnotecite] = ACTIONS(10163), + [anon_sym_BSLASHusepackage] = ACTIONS(10169), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10169), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10172), + [anon_sym_BSLASHinclude] = ACTIONS(10175), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10175), + [anon_sym_BSLASHinput] = ACTIONS(10178), + [anon_sym_BSLASHsubfile] = ACTIONS(10178), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10181), + [anon_sym_BSLASHbibliography] = ACTIONS(10184), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10187), + [anon_sym_BSLASHincludesvg] = ACTIONS(10190), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10196), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10196), + [anon_sym_BSLASHimport] = ACTIONS(10199), + [anon_sym_BSLASHsubimport] = ACTIONS(10199), + [anon_sym_BSLASHinputfrom] = ACTIONS(10199), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10199), + [anon_sym_BSLASHincludefrom] = ACTIONS(10199), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10199), + [anon_sym_BSLASHlabel] = ACTIONS(10202), + [anon_sym_BSLASHref] = ACTIONS(10205), + [anon_sym_BSLASHvref] = ACTIONS(10205), + [anon_sym_BSLASHVref] = ACTIONS(10205), + [anon_sym_BSLASHautoref] = ACTIONS(10205), + [anon_sym_BSLASHpageref] = ACTIONS(10205), + [anon_sym_BSLASHcref] = ACTIONS(10205), + [anon_sym_BSLASHCref] = ACTIONS(10205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10208), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10208), + [anon_sym_BSLASHnamecref] = ACTIONS(10205), + [anon_sym_BSLASHnameCref] = ACTIONS(10205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10205), + [anon_sym_BSLASHlabelcref] = ACTIONS(10205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10205), + [anon_sym_BSLASHeqref] = ACTIONS(10211), + [anon_sym_BSLASHcrefrange] = ACTIONS(10214), + [anon_sym_BSLASHCrefrange] = ACTIONS(10214), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10217), + [anon_sym_BSLASHnewlabel] = ACTIONS(10220), + [anon_sym_BSLASHnewcommand] = ACTIONS(10223), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10223), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10223), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10226), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10232), + [anon_sym_BSLASHgls] = ACTIONS(10235), + [anon_sym_BSLASHGls] = ACTIONS(10235), + [anon_sym_BSLASHGLS] = ACTIONS(10235), + [anon_sym_BSLASHglspl] = ACTIONS(10235), + [anon_sym_BSLASHGlspl] = ACTIONS(10235), + [anon_sym_BSLASHGLSpl] = ACTIONS(10235), + [anon_sym_BSLASHglsdisp] = ACTIONS(10235), + [anon_sym_BSLASHglslink] = ACTIONS(10235), + [anon_sym_BSLASHglstext] = ACTIONS(10235), + [anon_sym_BSLASHGlstext] = ACTIONS(10235), + [anon_sym_BSLASHGLStext] = ACTIONS(10235), + [anon_sym_BSLASHglsfirst] = ACTIONS(10235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10235), + [anon_sym_BSLASHglsplural] = ACTIONS(10235), + [anon_sym_BSLASHGlsplural] = ACTIONS(10235), + [anon_sym_BSLASHGLSplural] = ACTIONS(10235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10235), + [anon_sym_BSLASHglsname] = ACTIONS(10235), + [anon_sym_BSLASHGlsname] = ACTIONS(10235), + [anon_sym_BSLASHGLSname] = ACTIONS(10235), + [anon_sym_BSLASHglssymbol] = ACTIONS(10235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10235), + [anon_sym_BSLASHglsdesc] = ACTIONS(10235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10235), + [anon_sym_BSLASHglsuseri] = ACTIONS(10235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10235), + [anon_sym_BSLASHglsuserii] = ACTIONS(10235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10235), + [anon_sym_BSLASHglsuserv] = ACTIONS(10235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10235), + [anon_sym_BSLASHglsuservi] = ACTIONS(10235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10235), + [anon_sym_BSLASHnewacronym] = ACTIONS(10238), + [anon_sym_BSLASHacrshort] = ACTIONS(10241), + [anon_sym_BSLASHAcrshort] = ACTIONS(10241), + [anon_sym_BSLASHACRshort] = ACTIONS(10241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10241), + [anon_sym_BSLASHacrlong] = ACTIONS(10241), + [anon_sym_BSLASHAcrlong] = ACTIONS(10241), + [anon_sym_BSLASHACRlong] = ACTIONS(10241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10241), + [anon_sym_BSLASHacrfull] = ACTIONS(10241), + [anon_sym_BSLASHAcrfull] = ACTIONS(10241), + [anon_sym_BSLASHACRfull] = ACTIONS(10241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10241), + [anon_sym_BSLASHacs] = ACTIONS(10241), + [anon_sym_BSLASHAcs] = ACTIONS(10241), + [anon_sym_BSLASHacsp] = ACTIONS(10241), + [anon_sym_BSLASHAcsp] = ACTIONS(10241), + [anon_sym_BSLASHacl] = ACTIONS(10241), + [anon_sym_BSLASHAcl] = ACTIONS(10241), + [anon_sym_BSLASHaclp] = ACTIONS(10241), + [anon_sym_BSLASHAclp] = ACTIONS(10241), + [anon_sym_BSLASHacf] = ACTIONS(10241), + [anon_sym_BSLASHAcf] = ACTIONS(10241), + [anon_sym_BSLASHacfp] = ACTIONS(10241), + [anon_sym_BSLASHAcfp] = ACTIONS(10241), + [anon_sym_BSLASHac] = ACTIONS(10241), + [anon_sym_BSLASHAc] = ACTIONS(10241), + [anon_sym_BSLASHacp] = ACTIONS(10241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10244), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10244), + [anon_sym_BSLASHcolor] = ACTIONS(10247), + [anon_sym_BSLASHcolorbox] = ACTIONS(10247), + [anon_sym_BSLASHtextcolor] = ACTIONS(10247), + [anon_sym_BSLASHpagecolor] = ACTIONS(10247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10250), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10256), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10259), + }, + [429] = { + [sym__simple_content] = STATE(428), + [sym_brace_group] = STATE(428), + [sym_mixed_group] = STATE(428), + [sym_text] = STATE(428), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(428), + [sym_inline_formula] = STATE(428), + [sym_begin] = STATE(105), + [sym_environment] = STATE(428), + [sym_caption] = STATE(428), + [sym_citation] = STATE(428), + [sym_package_include] = STATE(428), + [sym_class_include] = STATE(428), + [sym_latex_include] = STATE(428), + [sym_latex_input] = STATE(428), + [sym_biblatex_include] = STATE(428), + [sym_bibtex_include] = STATE(428), + [sym_graphics_include] = STATE(428), + [sym_svg_include] = STATE(428), + [sym_inkscape_include] = STATE(428), + [sym_verbatim_include] = STATE(428), + [sym_import] = STATE(428), + [sym_label_definition] = STATE(428), + [sym_label_reference] = STATE(428), + [sym_equation_label_reference] = STATE(428), + [sym_label_reference_range] = STATE(428), + [sym_label_number] = STATE(428), + [sym_command_definition] = STATE(428), + [sym_math_operator] = STATE(428), + [sym_glossary_entry_definition] = STATE(428), + [sym_glossary_entry_reference] = STATE(428), + [sym_acronym_definition] = STATE(428), + [sym_acronym_reference] = STATE(428), + [sym_theorem_definition] = STATE(428), + [sym_color_reference] = STATE(428), + [sym_color_definition] = STATE(428), + [sym_color_set_definition] = STATE(428), + [sym_pgf_library_import] = STATE(428), + [sym_tikz_library_import] = STATE(428), + [sym_generic_command] = STATE(428), + [aux_sym_enum_item_repeat1] = STATE(428), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(6177), + [aux_sym_subsubsection_token1] = ACTIONS(6177), + [aux_sym_paragraph_token1] = ACTIONS(6177), + [aux_sym_subparagraph_token1] = ACTIONS(6177), + [anon_sym_BSLASHitem] = ACTIONS(6177), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(6175), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(10128), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [430] = { + [sym__simple_content] = STATE(430), + [sym_enum_item] = STATE(430), + [sym_brace_group] = STATE(430), + [sym_mixed_group] = STATE(430), + [sym_text] = STATE(430), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(430), + [sym_inline_formula] = STATE(430), + [sym_begin] = STATE(112), + [sym_environment] = STATE(430), + [sym_caption] = STATE(430), + [sym_citation] = STATE(430), + [sym_package_include] = STATE(430), + [sym_class_include] = STATE(430), + [sym_latex_include] = STATE(430), + [sym_latex_input] = STATE(430), + [sym_biblatex_include] = STATE(430), + [sym_bibtex_include] = STATE(430), + [sym_graphics_include] = STATE(430), + [sym_svg_include] = STATE(430), + [sym_inkscape_include] = STATE(430), + [sym_verbatim_include] = STATE(430), + [sym_import] = STATE(430), + [sym_label_definition] = STATE(430), + [sym_label_reference] = STATE(430), + [sym_equation_label_reference] = STATE(430), + [sym_label_reference_range] = STATE(430), + [sym_label_number] = STATE(430), + [sym_command_definition] = STATE(430), + [sym_math_operator] = STATE(430), + [sym_glossary_entry_definition] = STATE(430), + [sym_glossary_entry_reference] = STATE(430), + [sym_acronym_definition] = STATE(430), + [sym_acronym_reference] = STATE(430), + [sym_theorem_definition] = STATE(430), + [sym_color_reference] = STATE(430), + [sym_color_definition] = STATE(430), + [sym_color_set_definition] = STATE(430), + [sym_pgf_library_import] = STATE(430), + [sym_tikz_library_import] = STATE(430), + [sym_generic_command] = STATE(430), + [aux_sym_subparagraph_repeat1] = STATE(430), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(10262), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(5453), + [aux_sym_paragraph_token1] = ACTIONS(5453), + [aux_sym_subparagraph_token1] = ACTIONS(5453), + [anon_sym_BSLASHitem] = ACTIONS(10265), + [anon_sym_LBRACK] = ACTIONS(10268), + [anon_sym_RBRACK] = ACTIONS(5448), + [anon_sym_LBRACE] = ACTIONS(10271), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(10268), + [anon_sym_COMMA] = ACTIONS(10274), + [anon_sym_EQ] = ACTIONS(10274), + [sym_word] = ACTIONS(10274), + [sym_param] = ACTIONS(10277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10280), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10280), + [anon_sym_DOLLAR] = ACTIONS(10283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10286), + [anon_sym_BSLASHbegin] = ACTIONS(5479), + [anon_sym_BSLASHcaption] = ACTIONS(10289), + [anon_sym_BSLASHcite] = ACTIONS(10292), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10295), + [anon_sym_BSLASHCite] = ACTIONS(10292), + [anon_sym_BSLASHnocite] = ACTIONS(10292), + [anon_sym_BSLASHcitet] = ACTIONS(10292), + [anon_sym_BSLASHcitep] = ACTIONS(10292), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10295), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10295), + [anon_sym_BSLASHciteauthor] = ACTIONS(10292), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10295), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10292), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10295), + [anon_sym_BSLASHcitetitle] = ACTIONS(10292), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10295), + [anon_sym_BSLASHciteyear] = ACTIONS(10292), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10295), + [anon_sym_BSLASHcitedate] = ACTIONS(10292), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10295), + [anon_sym_BSLASHciteurl] = ACTIONS(10292), + [anon_sym_BSLASHfullcite] = ACTIONS(10292), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10292), + [anon_sym_BSLASHcitealt] = ACTIONS(10292), + [anon_sym_BSLASHcitealp] = ACTIONS(10292), + [anon_sym_BSLASHcitetext] = ACTIONS(10292), + [anon_sym_BSLASHparencite] = ACTIONS(10292), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10295), + [anon_sym_BSLASHParencite] = ACTIONS(10292), + [anon_sym_BSLASHfootcite] = ACTIONS(10292), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10292), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10292), + [anon_sym_BSLASHtextcite] = ACTIONS(10292), + [anon_sym_BSLASHTextcite] = ACTIONS(10292), + [anon_sym_BSLASHsmartcite] = ACTIONS(10292), + [anon_sym_BSLASHSmartcite] = ACTIONS(10292), + [anon_sym_BSLASHsupercite] = ACTIONS(10292), + [anon_sym_BSLASHautocite] = ACTIONS(10292), + [anon_sym_BSLASHAutocite] = ACTIONS(10292), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10295), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10295), + [anon_sym_BSLASHvolcite] = ACTIONS(10292), + [anon_sym_BSLASHVolcite] = ACTIONS(10292), + [anon_sym_BSLASHpvolcite] = ACTIONS(10292), + [anon_sym_BSLASHPvolcite] = ACTIONS(10292), + [anon_sym_BSLASHfvolcite] = ACTIONS(10292), + [anon_sym_BSLASHftvolcite] = ACTIONS(10292), + [anon_sym_BSLASHsvolcite] = ACTIONS(10292), + [anon_sym_BSLASHSvolcite] = ACTIONS(10292), + [anon_sym_BSLASHtvolcite] = ACTIONS(10292), + [anon_sym_BSLASHTvolcite] = ACTIONS(10292), + [anon_sym_BSLASHavolcite] = ACTIONS(10292), + [anon_sym_BSLASHAvolcite] = ACTIONS(10292), + [anon_sym_BSLASHnotecite] = ACTIONS(10292), + [anon_sym_BSLASHpnotecite] = ACTIONS(10292), + [anon_sym_BSLASHPnotecite] = ACTIONS(10292), + [anon_sym_BSLASHfnotecite] = ACTIONS(10292), + [anon_sym_BSLASHusepackage] = ACTIONS(10298), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10298), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10301), + [anon_sym_BSLASHinclude] = ACTIONS(10304), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10304), + [anon_sym_BSLASHinput] = ACTIONS(10307), + [anon_sym_BSLASHsubfile] = ACTIONS(10307), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10310), + [anon_sym_BSLASHbibliography] = ACTIONS(10313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10316), + [anon_sym_BSLASHincludesvg] = ACTIONS(10319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10322), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10325), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10325), + [anon_sym_BSLASHimport] = ACTIONS(10328), + [anon_sym_BSLASHsubimport] = ACTIONS(10328), + [anon_sym_BSLASHinputfrom] = ACTIONS(10328), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10328), + [anon_sym_BSLASHincludefrom] = ACTIONS(10328), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10328), + [anon_sym_BSLASHlabel] = ACTIONS(10331), + [anon_sym_BSLASHref] = ACTIONS(10334), + [anon_sym_BSLASHvref] = ACTIONS(10334), + [anon_sym_BSLASHVref] = ACTIONS(10334), + [anon_sym_BSLASHautoref] = ACTIONS(10334), + [anon_sym_BSLASHpageref] = ACTIONS(10334), + [anon_sym_BSLASHcref] = ACTIONS(10334), + [anon_sym_BSLASHCref] = ACTIONS(10334), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10337), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10337), + [anon_sym_BSLASHnamecref] = ACTIONS(10334), + [anon_sym_BSLASHnameCref] = ACTIONS(10334), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10334), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10334), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10334), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10334), + [anon_sym_BSLASHlabelcref] = ACTIONS(10334), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10334), + [anon_sym_BSLASHeqref] = ACTIONS(10340), + [anon_sym_BSLASHcrefrange] = ACTIONS(10343), + [anon_sym_BSLASHCrefrange] = ACTIONS(10343), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10346), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10346), + [anon_sym_BSLASHnewlabel] = ACTIONS(10349), + [anon_sym_BSLASHnewcommand] = ACTIONS(10352), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10352), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10352), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10355), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10358), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10361), + [anon_sym_BSLASHgls] = ACTIONS(10364), + [anon_sym_BSLASHGls] = ACTIONS(10364), + [anon_sym_BSLASHGLS] = ACTIONS(10364), + [anon_sym_BSLASHglspl] = ACTIONS(10364), + [anon_sym_BSLASHGlspl] = ACTIONS(10364), + [anon_sym_BSLASHGLSpl] = ACTIONS(10364), + [anon_sym_BSLASHglsdisp] = ACTIONS(10364), + [anon_sym_BSLASHglslink] = ACTIONS(10364), + [anon_sym_BSLASHglstext] = ACTIONS(10364), + [anon_sym_BSLASHGlstext] = ACTIONS(10364), + [anon_sym_BSLASHGLStext] = ACTIONS(10364), + [anon_sym_BSLASHglsfirst] = ACTIONS(10364), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10364), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10364), + [anon_sym_BSLASHglsplural] = ACTIONS(10364), + [anon_sym_BSLASHGlsplural] = ACTIONS(10364), + [anon_sym_BSLASHGLSplural] = ACTIONS(10364), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10364), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10364), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10364), + [anon_sym_BSLASHglsname] = ACTIONS(10364), + [anon_sym_BSLASHGlsname] = ACTIONS(10364), + [anon_sym_BSLASHGLSname] = ACTIONS(10364), + [anon_sym_BSLASHglssymbol] = ACTIONS(10364), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10364), + [anon_sym_BSLASHglsdesc] = ACTIONS(10364), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10364), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10364), + [anon_sym_BSLASHglsuseri] = ACTIONS(10364), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10364), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10364), + [anon_sym_BSLASHglsuserii] = ACTIONS(10364), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10364), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10364), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10364), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10364), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10364), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10364), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10364), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10364), + [anon_sym_BSLASHglsuserv] = ACTIONS(10364), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10364), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10364), + [anon_sym_BSLASHglsuservi] = ACTIONS(10364), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10364), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10364), + [anon_sym_BSLASHnewacronym] = ACTIONS(10367), + [anon_sym_BSLASHacrshort] = ACTIONS(10370), + [anon_sym_BSLASHAcrshort] = ACTIONS(10370), + [anon_sym_BSLASHACRshort] = ACTIONS(10370), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10370), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10370), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10370), + [anon_sym_BSLASHacrlong] = ACTIONS(10370), + [anon_sym_BSLASHAcrlong] = ACTIONS(10370), + [anon_sym_BSLASHACRlong] = ACTIONS(10370), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10370), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10370), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10370), + [anon_sym_BSLASHacrfull] = ACTIONS(10370), + [anon_sym_BSLASHAcrfull] = ACTIONS(10370), + [anon_sym_BSLASHACRfull] = ACTIONS(10370), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10370), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10370), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10370), + [anon_sym_BSLASHacs] = ACTIONS(10370), + [anon_sym_BSLASHAcs] = ACTIONS(10370), + [anon_sym_BSLASHacsp] = ACTIONS(10370), + [anon_sym_BSLASHAcsp] = ACTIONS(10370), + [anon_sym_BSLASHacl] = ACTIONS(10370), + [anon_sym_BSLASHAcl] = ACTIONS(10370), + [anon_sym_BSLASHaclp] = ACTIONS(10370), + [anon_sym_BSLASHAclp] = ACTIONS(10370), + [anon_sym_BSLASHacf] = ACTIONS(10370), + [anon_sym_BSLASHAcf] = ACTIONS(10370), + [anon_sym_BSLASHacfp] = ACTIONS(10370), + [anon_sym_BSLASHAcfp] = ACTIONS(10370), + [anon_sym_BSLASHac] = ACTIONS(10370), + [anon_sym_BSLASHAc] = ACTIONS(10370), + [anon_sym_BSLASHacp] = ACTIONS(10370), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10370), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10370), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10370), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10370), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10370), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10370), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10370), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10370), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10370), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10370), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10373), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10373), + [anon_sym_BSLASHcolor] = ACTIONS(10376), + [anon_sym_BSLASHcolorbox] = ACTIONS(10376), + [anon_sym_BSLASHtextcolor] = ACTIONS(10376), + [anon_sym_BSLASHpagecolor] = ACTIONS(10376), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10379), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10382), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10385), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10388), + }, + [431] = { + [sym__simple_content] = STATE(424), + [sym_brace_group] = STATE(424), + [sym_mixed_group] = STATE(424), + [sym_text] = STATE(424), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(424), + [sym_inline_formula] = STATE(424), + [sym_begin] = STATE(105), + [sym_environment] = STATE(424), + [sym_caption] = STATE(424), + [sym_citation] = STATE(424), + [sym_package_include] = STATE(424), + [sym_class_include] = STATE(424), + [sym_latex_include] = STATE(424), + [sym_latex_input] = STATE(424), + [sym_biblatex_include] = STATE(424), + [sym_bibtex_include] = STATE(424), + [sym_graphics_include] = STATE(424), + [sym_svg_include] = STATE(424), + [sym_inkscape_include] = STATE(424), + [sym_verbatim_include] = STATE(424), + [sym_import] = STATE(424), + [sym_label_definition] = STATE(424), + [sym_label_reference] = STATE(424), + [sym_equation_label_reference] = STATE(424), + [sym_label_reference_range] = STATE(424), + [sym_label_number] = STATE(424), + [sym_command_definition] = STATE(424), + [sym_math_operator] = STATE(424), + [sym_glossary_entry_definition] = STATE(424), + [sym_glossary_entry_reference] = STATE(424), + [sym_acronym_definition] = STATE(424), + [sym_acronym_reference] = STATE(424), + [sym_theorem_definition] = STATE(424), + [sym_color_reference] = STATE(424), + [sym_color_definition] = STATE(424), + [sym_color_set_definition] = STATE(424), + [sym_pgf_library_import] = STATE(424), + [sym_tikz_library_import] = STATE(424), + [sym_generic_command] = STATE(424), + [aux_sym_enum_item_repeat1] = STATE(424), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(6034), + [aux_sym_subsubsection_token1] = ACTIONS(6034), + [aux_sym_paragraph_token1] = ACTIONS(6034), + [aux_sym_subparagraph_token1] = ACTIONS(6034), + [anon_sym_BSLASHitem] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(10391), + [anon_sym_RBRACK] = ACTIONS(6032), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(10393), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [432] = { + [sym__simple_content] = STATE(429), + [sym_brace_group] = STATE(429), + [sym_mixed_group] = STATE(429), + [sym_text] = STATE(429), + [sym__text_fragment] = STATE(931), + [sym_displayed_equation] = STATE(429), + [sym_inline_formula] = STATE(429), + [sym_begin] = STATE(105), + [sym_environment] = STATE(429), + [sym_caption] = STATE(429), + [sym_citation] = STATE(429), + [sym_package_include] = STATE(429), + [sym_class_include] = STATE(429), + [sym_latex_include] = STATE(429), + [sym_latex_input] = STATE(429), + [sym_biblatex_include] = STATE(429), + [sym_bibtex_include] = STATE(429), + [sym_graphics_include] = STATE(429), + [sym_svg_include] = STATE(429), + [sym_inkscape_include] = STATE(429), + [sym_verbatim_include] = STATE(429), + [sym_import] = STATE(429), + [sym_label_definition] = STATE(429), + [sym_label_reference] = STATE(429), + [sym_equation_label_reference] = STATE(429), + [sym_label_reference_range] = STATE(429), + [sym_label_number] = STATE(429), + [sym_command_definition] = STATE(429), + [sym_math_operator] = STATE(429), + [sym_glossary_entry_definition] = STATE(429), + [sym_glossary_entry_reference] = STATE(429), + [sym_acronym_definition] = STATE(429), + [sym_acronym_reference] = STATE(429), + [sym_theorem_definition] = STATE(429), + [sym_color_reference] = STATE(429), + [sym_color_definition] = STATE(429), + [sym_color_set_definition] = STATE(429), + [sym_pgf_library_import] = STATE(429), + [sym_tikz_library_import] = STATE(429), + [sym_generic_command] = STATE(429), + [aux_sym_enum_item_repeat1] = STATE(429), + [aux_sym_text_repeat1] = STATE(931), + [sym_generic_command_name] = ACTIONS(6314), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(5606), + [aux_sym_subsubsection_token1] = ACTIONS(5606), + [aux_sym_paragraph_token1] = ACTIONS(5606), + [aux_sym_subparagraph_token1] = ACTIONS(5606), + [anon_sym_BSLASHitem] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(6326), + [anon_sym_RBRACK] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_LPAREN] = ACTIONS(6326), + [anon_sym_COMMA] = ACTIONS(6330), + [anon_sym_EQ] = ACTIONS(6330), + [sym_word] = ACTIONS(6330), + [sym_param] = ACTIONS(10395), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(6334), + [anon_sym_BSLASH_LBRACK] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_BSLASH_LPAREN] = ACTIONS(6338), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(6340), + [anon_sym_BSLASHcite] = ACTIONS(6342), + [anon_sym_BSLASHcite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCite] = ACTIONS(6342), + [anon_sym_BSLASHnocite] = ACTIONS(6342), + [anon_sym_BSLASHcitet] = ACTIONS(6342), + [anon_sym_BSLASHcitep] = ACTIONS(6342), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteauthor] = ACTIONS(6342), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHCiteauthor] = ACTIONS(6342), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitetitle] = ACTIONS(6342), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteyear] = ACTIONS(6342), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(6344), + [anon_sym_BSLASHcitedate] = ACTIONS(6342), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(6344), + [anon_sym_BSLASHciteurl] = ACTIONS(6342), + [anon_sym_BSLASHfullcite] = ACTIONS(6342), + [anon_sym_BSLASHciteyearpar] = ACTIONS(6342), + [anon_sym_BSLASHcitealt] = ACTIONS(6342), + [anon_sym_BSLASHcitealp] = ACTIONS(6342), + [anon_sym_BSLASHcitetext] = ACTIONS(6342), + [anon_sym_BSLASHparencite] = ACTIONS(6342), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHParencite] = ACTIONS(6342), + [anon_sym_BSLASHfootcite] = ACTIONS(6342), + [anon_sym_BSLASHfootfullcite] = ACTIONS(6342), + [anon_sym_BSLASHfootcitetext] = ACTIONS(6342), + [anon_sym_BSLASHtextcite] = ACTIONS(6342), + [anon_sym_BSLASHTextcite] = ACTIONS(6342), + [anon_sym_BSLASHsmartcite] = ACTIONS(6342), + [anon_sym_BSLASHSmartcite] = ACTIONS(6342), + [anon_sym_BSLASHsupercite] = ACTIONS(6342), + [anon_sym_BSLASHautocite] = ACTIONS(6342), + [anon_sym_BSLASHAutocite] = ACTIONS(6342), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(6344), + [anon_sym_BSLASHvolcite] = ACTIONS(6342), + [anon_sym_BSLASHVolcite] = ACTIONS(6342), + [anon_sym_BSLASHpvolcite] = ACTIONS(6342), + [anon_sym_BSLASHPvolcite] = ACTIONS(6342), + [anon_sym_BSLASHfvolcite] = ACTIONS(6342), + [anon_sym_BSLASHftvolcite] = ACTIONS(6342), + [anon_sym_BSLASHsvolcite] = ACTIONS(6342), + [anon_sym_BSLASHSvolcite] = ACTIONS(6342), + [anon_sym_BSLASHtvolcite] = ACTIONS(6342), + [anon_sym_BSLASHTvolcite] = ACTIONS(6342), + [anon_sym_BSLASHavolcite] = ACTIONS(6342), + [anon_sym_BSLASHAvolcite] = ACTIONS(6342), + [anon_sym_BSLASHnotecite] = ACTIONS(6342), + [anon_sym_BSLASHpnotecite] = ACTIONS(6342), + [anon_sym_BSLASHPnotecite] = ACTIONS(6342), + [anon_sym_BSLASHfnotecite] = ACTIONS(6342), + [anon_sym_BSLASHusepackage] = ACTIONS(6346), + [anon_sym_BSLASHRequirePackage] = ACTIONS(6346), + [anon_sym_BSLASHdocumentclass] = ACTIONS(6348), + [anon_sym_BSLASHinclude] = ACTIONS(6350), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(6350), + [anon_sym_BSLASHinput] = ACTIONS(6352), + [anon_sym_BSLASHsubfile] = ACTIONS(6352), + [anon_sym_BSLASHaddbibresource] = ACTIONS(6354), + [anon_sym_BSLASHbibliography] = ACTIONS(6356), + [anon_sym_BSLASHincludegraphics] = ACTIONS(6358), + [anon_sym_BSLASHincludesvg] = ACTIONS(6360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(6362), + [anon_sym_BSLASHverbatiminput] = ACTIONS(6364), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(6364), + [anon_sym_BSLASHimport] = ACTIONS(6366), + [anon_sym_BSLASHsubimport] = ACTIONS(6366), + [anon_sym_BSLASHinputfrom] = ACTIONS(6366), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(6366), + [anon_sym_BSLASHincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(6366), + [anon_sym_BSLASHlabel] = ACTIONS(6368), + [anon_sym_BSLASHref] = ACTIONS(6370), + [anon_sym_BSLASHvref] = ACTIONS(6370), + [anon_sym_BSLASHVref] = ACTIONS(6370), + [anon_sym_BSLASHautoref] = ACTIONS(6370), + [anon_sym_BSLASHpageref] = ACTIONS(6370), + [anon_sym_BSLASHcref] = ACTIONS(6370), + [anon_sym_BSLASHCref] = ACTIONS(6370), + [anon_sym_BSLASHcref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHCref_STAR] = ACTIONS(6372), + [anon_sym_BSLASHnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnameCref] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecref] = ACTIONS(6370), + [anon_sym_BSLASHnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHnameCrefs] = ACTIONS(6370), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(6370), + [anon_sym_BSLASHlabelcref] = ACTIONS(6370), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(6370), + [anon_sym_BSLASHeqref] = ACTIONS(6374), + [anon_sym_BSLASHcrefrange] = ACTIONS(6376), + [anon_sym_BSLASHCrefrange] = ACTIONS(6376), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(6378), + [anon_sym_BSLASHnewlabel] = ACTIONS(6380), + [anon_sym_BSLASHnewcommand] = ACTIONS(6382), + [anon_sym_BSLASHrenewcommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(6382), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(6384), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(6386), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(6388), + [anon_sym_BSLASHgls] = ACTIONS(6390), + [anon_sym_BSLASHGls] = ACTIONS(6390), + [anon_sym_BSLASHGLS] = ACTIONS(6390), + [anon_sym_BSLASHglspl] = ACTIONS(6390), + [anon_sym_BSLASHGlspl] = ACTIONS(6390), + [anon_sym_BSLASHGLSpl] = ACTIONS(6390), + [anon_sym_BSLASHglsdisp] = ACTIONS(6390), + [anon_sym_BSLASHglslink] = ACTIONS(6390), + [anon_sym_BSLASHglstext] = ACTIONS(6390), + [anon_sym_BSLASHGlstext] = ACTIONS(6390), + [anon_sym_BSLASHGLStext] = ACTIONS(6390), + [anon_sym_BSLASHglsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(6390), + [anon_sym_BSLASHglsplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSplural] = ACTIONS(6390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(6390), + [anon_sym_BSLASHglsname] = ACTIONS(6390), + [anon_sym_BSLASHGlsname] = ACTIONS(6390), + [anon_sym_BSLASHGLSname] = ACTIONS(6390), + [anon_sym_BSLASHglssymbol] = ACTIONS(6390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(6390), + [anon_sym_BSLASHglsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(6390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(6390), + [anon_sym_BSLASHglsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(6390), + [anon_sym_BSLASHglsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(6390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(6390), + [anon_sym_BSLASHglsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(6390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(6390), + [anon_sym_BSLASHglsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(6390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(6390), + [anon_sym_BSLASHnewacronym] = ACTIONS(6392), + [anon_sym_BSLASHacrshort] = ACTIONS(6394), + [anon_sym_BSLASHAcrshort] = ACTIONS(6394), + [anon_sym_BSLASHACRshort] = ACTIONS(6394), + [anon_sym_BSLASHacrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(6394), + [anon_sym_BSLASHACRshortpl] = ACTIONS(6394), + [anon_sym_BSLASHacrlong] = ACTIONS(6394), + [anon_sym_BSLASHAcrlong] = ACTIONS(6394), + [anon_sym_BSLASHACRlong] = ACTIONS(6394), + [anon_sym_BSLASHacrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(6394), + [anon_sym_BSLASHACRlongpl] = ACTIONS(6394), + [anon_sym_BSLASHacrfull] = ACTIONS(6394), + [anon_sym_BSLASHAcrfull] = ACTIONS(6394), + [anon_sym_BSLASHACRfull] = ACTIONS(6394), + [anon_sym_BSLASHacrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(6394), + [anon_sym_BSLASHACRfullpl] = ACTIONS(6394), + [anon_sym_BSLASHacs] = ACTIONS(6394), + [anon_sym_BSLASHAcs] = ACTIONS(6394), + [anon_sym_BSLASHacsp] = ACTIONS(6394), + [anon_sym_BSLASHAcsp] = ACTIONS(6394), + [anon_sym_BSLASHacl] = ACTIONS(6394), + [anon_sym_BSLASHAcl] = ACTIONS(6394), + [anon_sym_BSLASHaclp] = ACTIONS(6394), + [anon_sym_BSLASHAclp] = ACTIONS(6394), + [anon_sym_BSLASHacf] = ACTIONS(6394), + [anon_sym_BSLASHAcf] = ACTIONS(6394), + [anon_sym_BSLASHacfp] = ACTIONS(6394), + [anon_sym_BSLASHAcfp] = ACTIONS(6394), + [anon_sym_BSLASHac] = ACTIONS(6394), + [anon_sym_BSLASHAc] = ACTIONS(6394), + [anon_sym_BSLASHacp] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(6394), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(6394), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(6394), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(6394), + [anon_sym_BSLASHnewtheorem] = ACTIONS(6396), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(6396), + [anon_sym_BSLASHcolor] = ACTIONS(6398), + [anon_sym_BSLASHcolorbox] = ACTIONS(6398), + [anon_sym_BSLASHtextcolor] = ACTIONS(6398), + [anon_sym_BSLASHpagecolor] = ACTIONS(6398), + [anon_sym_BSLASHdefinecolor] = ACTIONS(6400), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(6402), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(6404), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(6406), + }, + [433] = { + [sym__simple_content] = STATE(434), + [sym_subparagraph] = STATE(434), + [sym_enum_item] = STATE(434), + [sym_brace_group] = STATE(434), + [sym_mixed_group] = STATE(434), + [sym_text] = STATE(434), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(434), + [sym_inline_formula] = STATE(434), + [sym_begin] = STATE(99), + [sym_environment] = STATE(434), + [sym_caption] = STATE(434), + [sym_citation] = STATE(434), + [sym_package_include] = STATE(434), + [sym_class_include] = STATE(434), + [sym_latex_include] = STATE(434), + [sym_latex_input] = STATE(434), + [sym_biblatex_include] = STATE(434), + [sym_bibtex_include] = STATE(434), + [sym_graphics_include] = STATE(434), + [sym_svg_include] = STATE(434), + [sym_inkscape_include] = STATE(434), + [sym_verbatim_include] = STATE(434), + [sym_import] = STATE(434), + [sym_label_definition] = STATE(434), + [sym_label_reference] = STATE(434), + [sym_equation_label_reference] = STATE(434), + [sym_label_reference_range] = STATE(434), + [sym_label_number] = STATE(434), + [sym_command_definition] = STATE(434), + [sym_math_operator] = STATE(434), + [sym_glossary_entry_definition] = STATE(434), + [sym_glossary_entry_reference] = STATE(434), + [sym_acronym_definition] = STATE(434), + [sym_acronym_reference] = STATE(434), + [sym_theorem_definition] = STATE(434), + [sym_color_reference] = STATE(434), + [sym_color_definition] = STATE(434), + [sym_color_set_definition] = STATE(434), + [sym_pgf_library_import] = STATE(434), + [sym_tikz_library_import] = STATE(434), + [sym_generic_command] = STATE(434), + [aux_sym_paragraph_repeat1] = STATE(434), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(9773), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(4156), + [aux_sym_subparagraph_token1] = ACTIONS(9777), + [anon_sym_BSLASHitem] = ACTIONS(9779), + [anon_sym_LBRACK] = ACTIONS(9781), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(9783), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(9781), + [anon_sym_COMMA] = ACTIONS(9785), + [anon_sym_EQ] = ACTIONS(9785), + [sym_word] = ACTIONS(9785), + [sym_param] = ACTIONS(10397), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9789), + [anon_sym_DOLLAR] = ACTIONS(9791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9793), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(9795), + [anon_sym_BSLASHcite] = ACTIONS(9797), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCite] = ACTIONS(9797), + [anon_sym_BSLASHnocite] = ACTIONS(9797), + [anon_sym_BSLASHcitet] = ACTIONS(9797), + [anon_sym_BSLASHcitep] = ACTIONS(9797), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteauthor] = ACTIONS(9797), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9797), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitetitle] = ACTIONS(9797), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteyear] = ACTIONS(9797), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitedate] = ACTIONS(9797), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteurl] = ACTIONS(9797), + [anon_sym_BSLASHfullcite] = ACTIONS(9797), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9797), + [anon_sym_BSLASHcitealt] = ACTIONS(9797), + [anon_sym_BSLASHcitealp] = ACTIONS(9797), + [anon_sym_BSLASHcitetext] = ACTIONS(9797), + [anon_sym_BSLASHparencite] = ACTIONS(9797), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHParencite] = ACTIONS(9797), + [anon_sym_BSLASHfootcite] = ACTIONS(9797), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9797), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9797), + [anon_sym_BSLASHtextcite] = ACTIONS(9797), + [anon_sym_BSLASHTextcite] = ACTIONS(9797), + [anon_sym_BSLASHsmartcite] = ACTIONS(9797), + [anon_sym_BSLASHSmartcite] = ACTIONS(9797), + [anon_sym_BSLASHsupercite] = ACTIONS(9797), + [anon_sym_BSLASHautocite] = ACTIONS(9797), + [anon_sym_BSLASHAutocite] = ACTIONS(9797), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHvolcite] = ACTIONS(9797), + [anon_sym_BSLASHVolcite] = ACTIONS(9797), + [anon_sym_BSLASHpvolcite] = ACTIONS(9797), + [anon_sym_BSLASHPvolcite] = ACTIONS(9797), + [anon_sym_BSLASHfvolcite] = ACTIONS(9797), + [anon_sym_BSLASHftvolcite] = ACTIONS(9797), + [anon_sym_BSLASHsvolcite] = ACTIONS(9797), + [anon_sym_BSLASHSvolcite] = ACTIONS(9797), + [anon_sym_BSLASHtvolcite] = ACTIONS(9797), + [anon_sym_BSLASHTvolcite] = ACTIONS(9797), + [anon_sym_BSLASHavolcite] = ACTIONS(9797), + [anon_sym_BSLASHAvolcite] = ACTIONS(9797), + [anon_sym_BSLASHnotecite] = ACTIONS(9797), + [anon_sym_BSLASHpnotecite] = ACTIONS(9797), + [anon_sym_BSLASHPnotecite] = ACTIONS(9797), + [anon_sym_BSLASHfnotecite] = ACTIONS(9797), + [anon_sym_BSLASHusepackage] = ACTIONS(9801), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9801), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9803), + [anon_sym_BSLASHinclude] = ACTIONS(9805), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9805), + [anon_sym_BSLASHinput] = ACTIONS(9807), + [anon_sym_BSLASHsubfile] = ACTIONS(9807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9809), + [anon_sym_BSLASHbibliography] = ACTIONS(9811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9813), + [anon_sym_BSLASHincludesvg] = ACTIONS(9815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9819), + [anon_sym_BSLASHimport] = ACTIONS(9821), + [anon_sym_BSLASHsubimport] = ACTIONS(9821), + [anon_sym_BSLASHinputfrom] = ACTIONS(9821), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9821), + [anon_sym_BSLASHincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHlabel] = ACTIONS(9823), + [anon_sym_BSLASHref] = ACTIONS(9825), + [anon_sym_BSLASHvref] = ACTIONS(9825), + [anon_sym_BSLASHVref] = ACTIONS(9825), + [anon_sym_BSLASHautoref] = ACTIONS(9825), + [anon_sym_BSLASHpageref] = ACTIONS(9825), + [anon_sym_BSLASHcref] = ACTIONS(9825), + [anon_sym_BSLASHCref] = ACTIONS(9825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnameCref] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHlabelcref] = ACTIONS(9825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9825), + [anon_sym_BSLASHeqref] = ACTIONS(9829), + [anon_sym_BSLASHcrefrange] = ACTIONS(9831), + [anon_sym_BSLASHCrefrange] = ACTIONS(9831), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHnewlabel] = ACTIONS(9835), + [anon_sym_BSLASHnewcommand] = ACTIONS(9837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9839), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9843), + [anon_sym_BSLASHgls] = ACTIONS(9845), + [anon_sym_BSLASHGls] = ACTIONS(9845), + [anon_sym_BSLASHGLS] = ACTIONS(9845), + [anon_sym_BSLASHglspl] = ACTIONS(9845), + [anon_sym_BSLASHGlspl] = ACTIONS(9845), + [anon_sym_BSLASHGLSpl] = ACTIONS(9845), + [anon_sym_BSLASHglsdisp] = ACTIONS(9845), + [anon_sym_BSLASHglslink] = ACTIONS(9845), + [anon_sym_BSLASHglstext] = ACTIONS(9845), + [anon_sym_BSLASHGlstext] = ACTIONS(9845), + [anon_sym_BSLASHGLStext] = ACTIONS(9845), + [anon_sym_BSLASHglsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9845), + [anon_sym_BSLASHglsplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSplural] = ACTIONS(9845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHglsname] = ACTIONS(9845), + [anon_sym_BSLASHGlsname] = ACTIONS(9845), + [anon_sym_BSLASHGLSname] = ACTIONS(9845), + [anon_sym_BSLASHglssymbol] = ACTIONS(9845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9845), + [anon_sym_BSLASHglsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9845), + [anon_sym_BSLASHglsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9845), + [anon_sym_BSLASHglsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9845), + [anon_sym_BSLASHglsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9845), + [anon_sym_BSLASHglsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9845), + [anon_sym_BSLASHnewacronym] = ACTIONS(9847), + [anon_sym_BSLASHacrshort] = ACTIONS(9849), + [anon_sym_BSLASHAcrshort] = ACTIONS(9849), + [anon_sym_BSLASHACRshort] = ACTIONS(9849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9849), + [anon_sym_BSLASHacrlong] = ACTIONS(9849), + [anon_sym_BSLASHAcrlong] = ACTIONS(9849), + [anon_sym_BSLASHACRlong] = ACTIONS(9849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9849), + [anon_sym_BSLASHacrfull] = ACTIONS(9849), + [anon_sym_BSLASHAcrfull] = ACTIONS(9849), + [anon_sym_BSLASHACRfull] = ACTIONS(9849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9849), + [anon_sym_BSLASHacs] = ACTIONS(9849), + [anon_sym_BSLASHAcs] = ACTIONS(9849), + [anon_sym_BSLASHacsp] = ACTIONS(9849), + [anon_sym_BSLASHAcsp] = ACTIONS(9849), + [anon_sym_BSLASHacl] = ACTIONS(9849), + [anon_sym_BSLASHAcl] = ACTIONS(9849), + [anon_sym_BSLASHaclp] = ACTIONS(9849), + [anon_sym_BSLASHAclp] = ACTIONS(9849), + [anon_sym_BSLASHacf] = ACTIONS(9849), + [anon_sym_BSLASHAcf] = ACTIONS(9849), + [anon_sym_BSLASHacfp] = ACTIONS(9849), + [anon_sym_BSLASHAcfp] = ACTIONS(9849), + [anon_sym_BSLASHac] = ACTIONS(9849), + [anon_sym_BSLASHAc] = ACTIONS(9849), + [anon_sym_BSLASHacp] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9851), + [anon_sym_BSLASHcolor] = ACTIONS(9853), + [anon_sym_BSLASHcolorbox] = ACTIONS(9853), + [anon_sym_BSLASHtextcolor] = ACTIONS(9853), + [anon_sym_BSLASHpagecolor] = ACTIONS(9853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9855), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9859), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9861), + }, + [434] = { + [sym__simple_content] = STATE(434), + [sym_subparagraph] = STATE(434), + [sym_enum_item] = STATE(434), + [sym_brace_group] = STATE(434), + [sym_mixed_group] = STATE(434), + [sym_text] = STATE(434), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(434), + [sym_inline_formula] = STATE(434), + [sym_begin] = STATE(99), + [sym_environment] = STATE(434), + [sym_caption] = STATE(434), + [sym_citation] = STATE(434), + [sym_package_include] = STATE(434), + [sym_class_include] = STATE(434), + [sym_latex_include] = STATE(434), + [sym_latex_input] = STATE(434), + [sym_biblatex_include] = STATE(434), + [sym_bibtex_include] = STATE(434), + [sym_graphics_include] = STATE(434), + [sym_svg_include] = STATE(434), + [sym_inkscape_include] = STATE(434), + [sym_verbatim_include] = STATE(434), + [sym_import] = STATE(434), + [sym_label_definition] = STATE(434), + [sym_label_reference] = STATE(434), + [sym_equation_label_reference] = STATE(434), + [sym_label_reference_range] = STATE(434), + [sym_label_number] = STATE(434), + [sym_command_definition] = STATE(434), + [sym_math_operator] = STATE(434), + [sym_glossary_entry_definition] = STATE(434), + [sym_glossary_entry_reference] = STATE(434), + [sym_acronym_definition] = STATE(434), + [sym_acronym_reference] = STATE(434), + [sym_theorem_definition] = STATE(434), + [sym_color_reference] = STATE(434), + [sym_color_definition] = STATE(434), + [sym_color_set_definition] = STATE(434), + [sym_pgf_library_import] = STATE(434), + [sym_tikz_library_import] = STATE(434), + [sym_generic_command] = STATE(434), + [aux_sym_paragraph_repeat1] = STATE(434), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(10399), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(4165), + [aux_sym_subparagraph_token1] = ACTIONS(10402), + [anon_sym_BSLASHitem] = ACTIONS(10405), + [anon_sym_LBRACK] = ACTIONS(10408), + [anon_sym_RBRACK] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(10411), + [anon_sym_RBRACE] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(10408), + [anon_sym_COMMA] = ACTIONS(10414), + [anon_sym_EQ] = ACTIONS(10414), + [sym_word] = ACTIONS(10414), + [sym_param] = ACTIONS(10417), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10420), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10420), + [anon_sym_DOLLAR] = ACTIONS(10423), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10426), + [anon_sym_BSLASHbegin] = ACTIONS(4194), + [anon_sym_BSLASHcaption] = ACTIONS(10429), + [anon_sym_BSLASHcite] = ACTIONS(10432), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10435), + [anon_sym_BSLASHCite] = ACTIONS(10432), + [anon_sym_BSLASHnocite] = ACTIONS(10432), + [anon_sym_BSLASHcitet] = ACTIONS(10432), + [anon_sym_BSLASHcitep] = ACTIONS(10432), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10435), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10435), + [anon_sym_BSLASHciteauthor] = ACTIONS(10432), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10435), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10432), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10435), + [anon_sym_BSLASHcitetitle] = ACTIONS(10432), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10435), + [anon_sym_BSLASHciteyear] = ACTIONS(10432), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10435), + [anon_sym_BSLASHcitedate] = ACTIONS(10432), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10435), + [anon_sym_BSLASHciteurl] = ACTIONS(10432), + [anon_sym_BSLASHfullcite] = ACTIONS(10432), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10432), + [anon_sym_BSLASHcitealt] = ACTIONS(10432), + [anon_sym_BSLASHcitealp] = ACTIONS(10432), + [anon_sym_BSLASHcitetext] = ACTIONS(10432), + [anon_sym_BSLASHparencite] = ACTIONS(10432), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10435), + [anon_sym_BSLASHParencite] = ACTIONS(10432), + [anon_sym_BSLASHfootcite] = ACTIONS(10432), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10432), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10432), + [anon_sym_BSLASHtextcite] = ACTIONS(10432), + [anon_sym_BSLASHTextcite] = ACTIONS(10432), + [anon_sym_BSLASHsmartcite] = ACTIONS(10432), + [anon_sym_BSLASHSmartcite] = ACTIONS(10432), + [anon_sym_BSLASHsupercite] = ACTIONS(10432), + [anon_sym_BSLASHautocite] = ACTIONS(10432), + [anon_sym_BSLASHAutocite] = ACTIONS(10432), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10435), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10435), + [anon_sym_BSLASHvolcite] = ACTIONS(10432), + [anon_sym_BSLASHVolcite] = ACTIONS(10432), + [anon_sym_BSLASHpvolcite] = ACTIONS(10432), + [anon_sym_BSLASHPvolcite] = ACTIONS(10432), + [anon_sym_BSLASHfvolcite] = ACTIONS(10432), + [anon_sym_BSLASHftvolcite] = ACTIONS(10432), + [anon_sym_BSLASHsvolcite] = ACTIONS(10432), + [anon_sym_BSLASHSvolcite] = ACTIONS(10432), + [anon_sym_BSLASHtvolcite] = ACTIONS(10432), + [anon_sym_BSLASHTvolcite] = ACTIONS(10432), + [anon_sym_BSLASHavolcite] = ACTIONS(10432), + [anon_sym_BSLASHAvolcite] = ACTIONS(10432), + [anon_sym_BSLASHnotecite] = ACTIONS(10432), + [anon_sym_BSLASHpnotecite] = ACTIONS(10432), + [anon_sym_BSLASHPnotecite] = ACTIONS(10432), + [anon_sym_BSLASHfnotecite] = ACTIONS(10432), + [anon_sym_BSLASHusepackage] = ACTIONS(10438), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10438), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10441), + [anon_sym_BSLASHinclude] = ACTIONS(10444), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10444), + [anon_sym_BSLASHinput] = ACTIONS(10447), + [anon_sym_BSLASHsubfile] = ACTIONS(10447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10450), + [anon_sym_BSLASHbibliography] = ACTIONS(10453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10456), + [anon_sym_BSLASHincludesvg] = ACTIONS(10459), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10462), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10465), + [anon_sym_BSLASHimport] = ACTIONS(10468), + [anon_sym_BSLASHsubimport] = ACTIONS(10468), + [anon_sym_BSLASHinputfrom] = ACTIONS(10468), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10468), + [anon_sym_BSLASHincludefrom] = ACTIONS(10468), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10468), + [anon_sym_BSLASHlabel] = ACTIONS(10471), + [anon_sym_BSLASHref] = ACTIONS(10474), + [anon_sym_BSLASHvref] = ACTIONS(10474), + [anon_sym_BSLASHVref] = ACTIONS(10474), + [anon_sym_BSLASHautoref] = ACTIONS(10474), + [anon_sym_BSLASHpageref] = ACTIONS(10474), + [anon_sym_BSLASHcref] = ACTIONS(10474), + [anon_sym_BSLASHCref] = ACTIONS(10474), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10477), + [anon_sym_BSLASHnamecref] = ACTIONS(10474), + [anon_sym_BSLASHnameCref] = ACTIONS(10474), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10474), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10474), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10474), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10474), + [anon_sym_BSLASHlabelcref] = ACTIONS(10474), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10474), + [anon_sym_BSLASHeqref] = ACTIONS(10480), + [anon_sym_BSLASHcrefrange] = ACTIONS(10483), + [anon_sym_BSLASHCrefrange] = ACTIONS(10483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10486), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10486), + [anon_sym_BSLASHnewlabel] = ACTIONS(10489), + [anon_sym_BSLASHnewcommand] = ACTIONS(10492), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10492), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10492), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10495), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10498), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10501), + [anon_sym_BSLASHgls] = ACTIONS(10504), + [anon_sym_BSLASHGls] = ACTIONS(10504), + [anon_sym_BSLASHGLS] = ACTIONS(10504), + [anon_sym_BSLASHglspl] = ACTIONS(10504), + [anon_sym_BSLASHGlspl] = ACTIONS(10504), + [anon_sym_BSLASHGLSpl] = ACTIONS(10504), + [anon_sym_BSLASHglsdisp] = ACTIONS(10504), + [anon_sym_BSLASHglslink] = ACTIONS(10504), + [anon_sym_BSLASHglstext] = ACTIONS(10504), + [anon_sym_BSLASHGlstext] = ACTIONS(10504), + [anon_sym_BSLASHGLStext] = ACTIONS(10504), + [anon_sym_BSLASHglsfirst] = ACTIONS(10504), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10504), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10504), + [anon_sym_BSLASHglsplural] = ACTIONS(10504), + [anon_sym_BSLASHGlsplural] = ACTIONS(10504), + [anon_sym_BSLASHGLSplural] = ACTIONS(10504), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10504), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10504), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10504), + [anon_sym_BSLASHglsname] = ACTIONS(10504), + [anon_sym_BSLASHGlsname] = ACTIONS(10504), + [anon_sym_BSLASHGLSname] = ACTIONS(10504), + [anon_sym_BSLASHglssymbol] = ACTIONS(10504), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10504), + [anon_sym_BSLASHglsdesc] = ACTIONS(10504), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10504), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10504), + [anon_sym_BSLASHglsuseri] = ACTIONS(10504), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10504), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10504), + [anon_sym_BSLASHglsuserii] = ACTIONS(10504), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10504), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10504), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10504), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10504), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10504), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10504), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10504), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10504), + [anon_sym_BSLASHglsuserv] = ACTIONS(10504), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10504), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10504), + [anon_sym_BSLASHglsuservi] = ACTIONS(10504), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10504), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10504), + [anon_sym_BSLASHnewacronym] = ACTIONS(10507), + [anon_sym_BSLASHacrshort] = ACTIONS(10510), + [anon_sym_BSLASHAcrshort] = ACTIONS(10510), + [anon_sym_BSLASHACRshort] = ACTIONS(10510), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10510), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10510), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10510), + [anon_sym_BSLASHacrlong] = ACTIONS(10510), + [anon_sym_BSLASHAcrlong] = ACTIONS(10510), + [anon_sym_BSLASHACRlong] = ACTIONS(10510), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10510), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10510), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10510), + [anon_sym_BSLASHacrfull] = ACTIONS(10510), + [anon_sym_BSLASHAcrfull] = ACTIONS(10510), + [anon_sym_BSLASHACRfull] = ACTIONS(10510), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10510), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10510), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10510), + [anon_sym_BSLASHacs] = ACTIONS(10510), + [anon_sym_BSLASHAcs] = ACTIONS(10510), + [anon_sym_BSLASHacsp] = ACTIONS(10510), + [anon_sym_BSLASHAcsp] = ACTIONS(10510), + [anon_sym_BSLASHacl] = ACTIONS(10510), + [anon_sym_BSLASHAcl] = ACTIONS(10510), + [anon_sym_BSLASHaclp] = ACTIONS(10510), + [anon_sym_BSLASHAclp] = ACTIONS(10510), + [anon_sym_BSLASHacf] = ACTIONS(10510), + [anon_sym_BSLASHAcf] = ACTIONS(10510), + [anon_sym_BSLASHacfp] = ACTIONS(10510), + [anon_sym_BSLASHAcfp] = ACTIONS(10510), + [anon_sym_BSLASHac] = ACTIONS(10510), + [anon_sym_BSLASHAc] = ACTIONS(10510), + [anon_sym_BSLASHacp] = ACTIONS(10510), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10510), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10510), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10510), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10510), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10510), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10510), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10510), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10510), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10510), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10510), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10513), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10513), + [anon_sym_BSLASHcolor] = ACTIONS(10516), + [anon_sym_BSLASHcolorbox] = ACTIONS(10516), + [anon_sym_BSLASHtextcolor] = ACTIONS(10516), + [anon_sym_BSLASHpagecolor] = ACTIONS(10516), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10519), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10522), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10525), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10528), + }, + [435] = { + [sym__simple_content] = STATE(435), + [sym_subparagraph] = STATE(435), + [sym_enum_item] = STATE(435), + [sym_brace_group] = STATE(435), + [sym_mixed_group] = STATE(435), + [sym_text] = STATE(435), + [sym__text_fragment] = STATE(1388), + [sym_displayed_equation] = STATE(435), + [sym_inline_formula] = STATE(435), + [sym_begin] = STATE(83), + [sym_environment] = STATE(435), + [sym_caption] = STATE(435), + [sym_citation] = STATE(435), + [sym_package_include] = STATE(435), + [sym_class_include] = STATE(435), + [sym_latex_include] = STATE(435), + [sym_latex_input] = STATE(435), + [sym_biblatex_include] = STATE(435), + [sym_bibtex_include] = STATE(435), + [sym_graphics_include] = STATE(435), + [sym_svg_include] = STATE(435), + [sym_inkscape_include] = STATE(435), + [sym_verbatim_include] = STATE(435), + [sym_import] = STATE(435), + [sym_label_definition] = STATE(435), + [sym_label_reference] = STATE(435), + [sym_equation_label_reference] = STATE(435), + [sym_label_reference_range] = STATE(435), + [sym_label_number] = STATE(435), + [sym_command_definition] = STATE(435), + [sym_math_operator] = STATE(435), + [sym_glossary_entry_definition] = STATE(435), + [sym_glossary_entry_reference] = STATE(435), + [sym_acronym_definition] = STATE(435), + [sym_acronym_reference] = STATE(435), + [sym_theorem_definition] = STATE(435), + [sym_color_reference] = STATE(435), + [sym_color_definition] = STATE(435), + [sym_color_set_definition] = STATE(435), + [sym_pgf_library_import] = STATE(435), + [sym_tikz_library_import] = STATE(435), + [sym_generic_command] = STATE(435), + [aux_sym_paragraph_repeat1] = STATE(435), + [aux_sym_text_repeat1] = STATE(1388), + [sym_generic_command_name] = ACTIONS(10531), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(10534), + [anon_sym_BSLASHitem] = ACTIONS(10537), + [anon_sym_LBRACK] = ACTIONS(10540), + [anon_sym_RBRACK] = ACTIONS(4160), + [anon_sym_LBRACE] = ACTIONS(10543), + [anon_sym_RBRACE] = ACTIONS(4160), + [anon_sym_LPAREN] = ACTIONS(10540), + [anon_sym_COMMA] = ACTIONS(10546), + [anon_sym_EQ] = ACTIONS(10546), + [sym_word] = ACTIONS(10546), + [sym_param] = ACTIONS(10549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10552), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10552), + [anon_sym_DOLLAR] = ACTIONS(10555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10558), + [anon_sym_BSLASHbegin] = ACTIONS(4194), + [anon_sym_BSLASHcaption] = ACTIONS(10561), + [anon_sym_BSLASHcite] = ACTIONS(10564), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10567), + [anon_sym_BSLASHCite] = ACTIONS(10564), + [anon_sym_BSLASHnocite] = ACTIONS(10564), + [anon_sym_BSLASHcitet] = ACTIONS(10564), + [anon_sym_BSLASHcitep] = ACTIONS(10564), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10567), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10567), + [anon_sym_BSLASHciteauthor] = ACTIONS(10564), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10567), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10564), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10567), + [anon_sym_BSLASHcitetitle] = ACTIONS(10564), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10567), + [anon_sym_BSLASHciteyear] = ACTIONS(10564), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10567), + [anon_sym_BSLASHcitedate] = ACTIONS(10564), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10567), + [anon_sym_BSLASHciteurl] = ACTIONS(10564), + [anon_sym_BSLASHfullcite] = ACTIONS(10564), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10564), + [anon_sym_BSLASHcitealt] = ACTIONS(10564), + [anon_sym_BSLASHcitealp] = ACTIONS(10564), + [anon_sym_BSLASHcitetext] = ACTIONS(10564), + [anon_sym_BSLASHparencite] = ACTIONS(10564), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10567), + [anon_sym_BSLASHParencite] = ACTIONS(10564), + [anon_sym_BSLASHfootcite] = ACTIONS(10564), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10564), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10564), + [anon_sym_BSLASHtextcite] = ACTIONS(10564), + [anon_sym_BSLASHTextcite] = ACTIONS(10564), + [anon_sym_BSLASHsmartcite] = ACTIONS(10564), + [anon_sym_BSLASHSmartcite] = ACTIONS(10564), + [anon_sym_BSLASHsupercite] = ACTIONS(10564), + [anon_sym_BSLASHautocite] = ACTIONS(10564), + [anon_sym_BSLASHAutocite] = ACTIONS(10564), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10567), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10567), + [anon_sym_BSLASHvolcite] = ACTIONS(10564), + [anon_sym_BSLASHVolcite] = ACTIONS(10564), + [anon_sym_BSLASHpvolcite] = ACTIONS(10564), + [anon_sym_BSLASHPvolcite] = ACTIONS(10564), + [anon_sym_BSLASHfvolcite] = ACTIONS(10564), + [anon_sym_BSLASHftvolcite] = ACTIONS(10564), + [anon_sym_BSLASHsvolcite] = ACTIONS(10564), + [anon_sym_BSLASHSvolcite] = ACTIONS(10564), + [anon_sym_BSLASHtvolcite] = ACTIONS(10564), + [anon_sym_BSLASHTvolcite] = ACTIONS(10564), + [anon_sym_BSLASHavolcite] = ACTIONS(10564), + [anon_sym_BSLASHAvolcite] = ACTIONS(10564), + [anon_sym_BSLASHnotecite] = ACTIONS(10564), + [anon_sym_BSLASHpnotecite] = ACTIONS(10564), + [anon_sym_BSLASHPnotecite] = ACTIONS(10564), + [anon_sym_BSLASHfnotecite] = ACTIONS(10564), + [anon_sym_BSLASHusepackage] = ACTIONS(10570), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10570), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10573), + [anon_sym_BSLASHinclude] = ACTIONS(10576), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10576), + [anon_sym_BSLASHinput] = ACTIONS(10579), + [anon_sym_BSLASHsubfile] = ACTIONS(10579), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10582), + [anon_sym_BSLASHbibliography] = ACTIONS(10585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10588), + [anon_sym_BSLASHincludesvg] = ACTIONS(10591), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10594), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10597), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10597), + [anon_sym_BSLASHimport] = ACTIONS(10600), + [anon_sym_BSLASHsubimport] = ACTIONS(10600), + [anon_sym_BSLASHinputfrom] = ACTIONS(10600), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10600), + [anon_sym_BSLASHincludefrom] = ACTIONS(10600), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10600), + [anon_sym_BSLASHlabel] = ACTIONS(10603), + [anon_sym_BSLASHref] = ACTIONS(10606), + [anon_sym_BSLASHvref] = ACTIONS(10606), + [anon_sym_BSLASHVref] = ACTIONS(10606), + [anon_sym_BSLASHautoref] = ACTIONS(10606), + [anon_sym_BSLASHpageref] = ACTIONS(10606), + [anon_sym_BSLASHcref] = ACTIONS(10606), + [anon_sym_BSLASHCref] = ACTIONS(10606), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10609), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10609), + [anon_sym_BSLASHnamecref] = ACTIONS(10606), + [anon_sym_BSLASHnameCref] = ACTIONS(10606), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10606), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10606), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10606), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10606), + [anon_sym_BSLASHlabelcref] = ACTIONS(10606), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10606), + [anon_sym_BSLASHeqref] = ACTIONS(10612), + [anon_sym_BSLASHcrefrange] = ACTIONS(10615), + [anon_sym_BSLASHCrefrange] = ACTIONS(10615), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10618), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10618), + [anon_sym_BSLASHnewlabel] = ACTIONS(10621), + [anon_sym_BSLASHnewcommand] = ACTIONS(10624), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10624), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10624), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10627), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10630), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10633), + [anon_sym_BSLASHgls] = ACTIONS(10636), + [anon_sym_BSLASHGls] = ACTIONS(10636), + [anon_sym_BSLASHGLS] = ACTIONS(10636), + [anon_sym_BSLASHglspl] = ACTIONS(10636), + [anon_sym_BSLASHGlspl] = ACTIONS(10636), + [anon_sym_BSLASHGLSpl] = ACTIONS(10636), + [anon_sym_BSLASHglsdisp] = ACTIONS(10636), + [anon_sym_BSLASHglslink] = ACTIONS(10636), + [anon_sym_BSLASHglstext] = ACTIONS(10636), + [anon_sym_BSLASHGlstext] = ACTIONS(10636), + [anon_sym_BSLASHGLStext] = ACTIONS(10636), + [anon_sym_BSLASHglsfirst] = ACTIONS(10636), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10636), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10636), + [anon_sym_BSLASHglsplural] = ACTIONS(10636), + [anon_sym_BSLASHGlsplural] = ACTIONS(10636), + [anon_sym_BSLASHGLSplural] = ACTIONS(10636), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10636), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10636), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10636), + [anon_sym_BSLASHglsname] = ACTIONS(10636), + [anon_sym_BSLASHGlsname] = ACTIONS(10636), + [anon_sym_BSLASHGLSname] = ACTIONS(10636), + [anon_sym_BSLASHglssymbol] = ACTIONS(10636), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10636), + [anon_sym_BSLASHglsdesc] = ACTIONS(10636), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10636), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10636), + [anon_sym_BSLASHglsuseri] = ACTIONS(10636), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10636), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10636), + [anon_sym_BSLASHglsuserii] = ACTIONS(10636), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10636), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10636), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10636), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10636), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10636), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10636), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10636), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10636), + [anon_sym_BSLASHglsuserv] = ACTIONS(10636), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10636), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10636), + [anon_sym_BSLASHglsuservi] = ACTIONS(10636), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10636), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10636), + [anon_sym_BSLASHnewacronym] = ACTIONS(10639), + [anon_sym_BSLASHacrshort] = ACTIONS(10642), + [anon_sym_BSLASHAcrshort] = ACTIONS(10642), + [anon_sym_BSLASHACRshort] = ACTIONS(10642), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10642), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10642), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10642), + [anon_sym_BSLASHacrlong] = ACTIONS(10642), + [anon_sym_BSLASHAcrlong] = ACTIONS(10642), + [anon_sym_BSLASHACRlong] = ACTIONS(10642), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10642), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10642), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10642), + [anon_sym_BSLASHacrfull] = ACTIONS(10642), + [anon_sym_BSLASHAcrfull] = ACTIONS(10642), + [anon_sym_BSLASHACRfull] = ACTIONS(10642), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10642), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10642), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10642), + [anon_sym_BSLASHacs] = ACTIONS(10642), + [anon_sym_BSLASHAcs] = ACTIONS(10642), + [anon_sym_BSLASHacsp] = ACTIONS(10642), + [anon_sym_BSLASHAcsp] = ACTIONS(10642), + [anon_sym_BSLASHacl] = ACTIONS(10642), + [anon_sym_BSLASHAcl] = ACTIONS(10642), + [anon_sym_BSLASHaclp] = ACTIONS(10642), + [anon_sym_BSLASHAclp] = ACTIONS(10642), + [anon_sym_BSLASHacf] = ACTIONS(10642), + [anon_sym_BSLASHAcf] = ACTIONS(10642), + [anon_sym_BSLASHacfp] = ACTIONS(10642), + [anon_sym_BSLASHAcfp] = ACTIONS(10642), + [anon_sym_BSLASHac] = ACTIONS(10642), + [anon_sym_BSLASHAc] = ACTIONS(10642), + [anon_sym_BSLASHacp] = ACTIONS(10642), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10642), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10642), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10642), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10642), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10642), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10642), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10642), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10642), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10642), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10642), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10645), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10645), + [anon_sym_BSLASHcolor] = ACTIONS(10648), + [anon_sym_BSLASHcolorbox] = ACTIONS(10648), + [anon_sym_BSLASHtextcolor] = ACTIONS(10648), + [anon_sym_BSLASHpagecolor] = ACTIONS(10648), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10651), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10654), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10657), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10660), + }, + [436] = { + [sym__simple_content] = STATE(437), + [sym_subparagraph] = STATE(437), + [sym_enum_item] = STATE(437), + [sym_brace_group] = STATE(437), + [sym_mixed_group] = STATE(437), + [sym_text] = STATE(437), + [sym__text_fragment] = STATE(1388), + [sym_displayed_equation] = STATE(437), + [sym_inline_formula] = STATE(437), + [sym_begin] = STATE(83), + [sym_environment] = STATE(437), + [sym_caption] = STATE(437), + [sym_citation] = STATE(437), + [sym_package_include] = STATE(437), + [sym_class_include] = STATE(437), + [sym_latex_include] = STATE(437), + [sym_latex_input] = STATE(437), + [sym_biblatex_include] = STATE(437), + [sym_bibtex_include] = STATE(437), + [sym_graphics_include] = STATE(437), + [sym_svg_include] = STATE(437), + [sym_inkscape_include] = STATE(437), + [sym_verbatim_include] = STATE(437), + [sym_import] = STATE(437), + [sym_label_definition] = STATE(437), + [sym_label_reference] = STATE(437), + [sym_equation_label_reference] = STATE(437), + [sym_label_reference_range] = STATE(437), + [sym_label_number] = STATE(437), + [sym_command_definition] = STATE(437), + [sym_math_operator] = STATE(437), + [sym_glossary_entry_definition] = STATE(437), + [sym_glossary_entry_reference] = STATE(437), + [sym_acronym_definition] = STATE(437), + [sym_acronym_reference] = STATE(437), + [sym_theorem_definition] = STATE(437), + [sym_color_reference] = STATE(437), + [sym_color_definition] = STATE(437), + [sym_color_set_definition] = STATE(437), + [sym_pgf_library_import] = STATE(437), + [sym_tikz_library_import] = STATE(437), + [sym_generic_command] = STATE(437), + [aux_sym_paragraph_repeat1] = STATE(437), + [aux_sym_text_repeat1] = STATE(1388), + [sym_generic_command_name] = ACTIONS(10663), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(10665), + [anon_sym_BSLASHitem] = ACTIONS(10667), + [anon_sym_LBRACK] = ACTIONS(10669), + [anon_sym_RBRACK] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(10671), + [anon_sym_RBRACE] = ACTIONS(4052), + [anon_sym_LPAREN] = ACTIONS(10669), + [anon_sym_COMMA] = ACTIONS(10673), + [anon_sym_EQ] = ACTIONS(10673), + [sym_word] = ACTIONS(10673), + [sym_param] = ACTIONS(10675), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10677), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10677), + [anon_sym_DOLLAR] = ACTIONS(10679), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10681), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(10683), + [anon_sym_BSLASHcite] = ACTIONS(10685), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCite] = ACTIONS(10685), + [anon_sym_BSLASHnocite] = ACTIONS(10685), + [anon_sym_BSLASHcitet] = ACTIONS(10685), + [anon_sym_BSLASHcitep] = ACTIONS(10685), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteauthor] = ACTIONS(10685), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10685), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitetitle] = ACTIONS(10685), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteyear] = ACTIONS(10685), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitedate] = ACTIONS(10685), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteurl] = ACTIONS(10685), + [anon_sym_BSLASHfullcite] = ACTIONS(10685), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10685), + [anon_sym_BSLASHcitealt] = ACTIONS(10685), + [anon_sym_BSLASHcitealp] = ACTIONS(10685), + [anon_sym_BSLASHcitetext] = ACTIONS(10685), + [anon_sym_BSLASHparencite] = ACTIONS(10685), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHParencite] = ACTIONS(10685), + [anon_sym_BSLASHfootcite] = ACTIONS(10685), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10685), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10685), + [anon_sym_BSLASHtextcite] = ACTIONS(10685), + [anon_sym_BSLASHTextcite] = ACTIONS(10685), + [anon_sym_BSLASHsmartcite] = ACTIONS(10685), + [anon_sym_BSLASHSmartcite] = ACTIONS(10685), + [anon_sym_BSLASHsupercite] = ACTIONS(10685), + [anon_sym_BSLASHautocite] = ACTIONS(10685), + [anon_sym_BSLASHAutocite] = ACTIONS(10685), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHvolcite] = ACTIONS(10685), + [anon_sym_BSLASHVolcite] = ACTIONS(10685), + [anon_sym_BSLASHpvolcite] = ACTIONS(10685), + [anon_sym_BSLASHPvolcite] = ACTIONS(10685), + [anon_sym_BSLASHfvolcite] = ACTIONS(10685), + [anon_sym_BSLASHftvolcite] = ACTIONS(10685), + [anon_sym_BSLASHsvolcite] = ACTIONS(10685), + [anon_sym_BSLASHSvolcite] = ACTIONS(10685), + [anon_sym_BSLASHtvolcite] = ACTIONS(10685), + [anon_sym_BSLASHTvolcite] = ACTIONS(10685), + [anon_sym_BSLASHavolcite] = ACTIONS(10685), + [anon_sym_BSLASHAvolcite] = ACTIONS(10685), + [anon_sym_BSLASHnotecite] = ACTIONS(10685), + [anon_sym_BSLASHpnotecite] = ACTIONS(10685), + [anon_sym_BSLASHPnotecite] = ACTIONS(10685), + [anon_sym_BSLASHfnotecite] = ACTIONS(10685), + [anon_sym_BSLASHusepackage] = ACTIONS(10689), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10689), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10691), + [anon_sym_BSLASHinclude] = ACTIONS(10693), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10693), + [anon_sym_BSLASHinput] = ACTIONS(10695), + [anon_sym_BSLASHsubfile] = ACTIONS(10695), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10697), + [anon_sym_BSLASHbibliography] = ACTIONS(10699), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10701), + [anon_sym_BSLASHincludesvg] = ACTIONS(10703), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10705), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10707), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10707), + [anon_sym_BSLASHimport] = ACTIONS(10709), + [anon_sym_BSLASHsubimport] = ACTIONS(10709), + [anon_sym_BSLASHinputfrom] = ACTIONS(10709), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10709), + [anon_sym_BSLASHincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHlabel] = ACTIONS(10711), + [anon_sym_BSLASHref] = ACTIONS(10713), + [anon_sym_BSLASHvref] = ACTIONS(10713), + [anon_sym_BSLASHVref] = ACTIONS(10713), + [anon_sym_BSLASHautoref] = ACTIONS(10713), + [anon_sym_BSLASHpageref] = ACTIONS(10713), + [anon_sym_BSLASHcref] = ACTIONS(10713), + [anon_sym_BSLASHCref] = ACTIONS(10713), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnameCref] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHlabelcref] = ACTIONS(10713), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10713), + [anon_sym_BSLASHeqref] = ACTIONS(10717), + [anon_sym_BSLASHcrefrange] = ACTIONS(10719), + [anon_sym_BSLASHCrefrange] = ACTIONS(10719), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHnewlabel] = ACTIONS(10723), + [anon_sym_BSLASHnewcommand] = ACTIONS(10725), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10727), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10729), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10731), + [anon_sym_BSLASHgls] = ACTIONS(10733), + [anon_sym_BSLASHGls] = ACTIONS(10733), + [anon_sym_BSLASHGLS] = ACTIONS(10733), + [anon_sym_BSLASHglspl] = ACTIONS(10733), + [anon_sym_BSLASHGlspl] = ACTIONS(10733), + [anon_sym_BSLASHGLSpl] = ACTIONS(10733), + [anon_sym_BSLASHglsdisp] = ACTIONS(10733), + [anon_sym_BSLASHglslink] = ACTIONS(10733), + [anon_sym_BSLASHglstext] = ACTIONS(10733), + [anon_sym_BSLASHGlstext] = ACTIONS(10733), + [anon_sym_BSLASHGLStext] = ACTIONS(10733), + [anon_sym_BSLASHglsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10733), + [anon_sym_BSLASHglsplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSplural] = ACTIONS(10733), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHglsname] = ACTIONS(10733), + [anon_sym_BSLASHGlsname] = ACTIONS(10733), + [anon_sym_BSLASHGLSname] = ACTIONS(10733), + [anon_sym_BSLASHglssymbol] = ACTIONS(10733), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10733), + [anon_sym_BSLASHglsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10733), + [anon_sym_BSLASHglsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10733), + [anon_sym_BSLASHglsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10733), + [anon_sym_BSLASHglsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10733), + [anon_sym_BSLASHglsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10733), + [anon_sym_BSLASHnewacronym] = ACTIONS(10735), + [anon_sym_BSLASHacrshort] = ACTIONS(10737), + [anon_sym_BSLASHAcrshort] = ACTIONS(10737), + [anon_sym_BSLASHACRshort] = ACTIONS(10737), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10737), + [anon_sym_BSLASHacrlong] = ACTIONS(10737), + [anon_sym_BSLASHAcrlong] = ACTIONS(10737), + [anon_sym_BSLASHACRlong] = ACTIONS(10737), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10737), + [anon_sym_BSLASHacrfull] = ACTIONS(10737), + [anon_sym_BSLASHAcrfull] = ACTIONS(10737), + [anon_sym_BSLASHACRfull] = ACTIONS(10737), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10737), + [anon_sym_BSLASHacs] = ACTIONS(10737), + [anon_sym_BSLASHAcs] = ACTIONS(10737), + [anon_sym_BSLASHacsp] = ACTIONS(10737), + [anon_sym_BSLASHAcsp] = ACTIONS(10737), + [anon_sym_BSLASHacl] = ACTIONS(10737), + [anon_sym_BSLASHAcl] = ACTIONS(10737), + [anon_sym_BSLASHaclp] = ACTIONS(10737), + [anon_sym_BSLASHAclp] = ACTIONS(10737), + [anon_sym_BSLASHacf] = ACTIONS(10737), + [anon_sym_BSLASHAcf] = ACTIONS(10737), + [anon_sym_BSLASHacfp] = ACTIONS(10737), + [anon_sym_BSLASHAcfp] = ACTIONS(10737), + [anon_sym_BSLASHac] = ACTIONS(10737), + [anon_sym_BSLASHAc] = ACTIONS(10737), + [anon_sym_BSLASHacp] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10739), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10739), + [anon_sym_BSLASHcolor] = ACTIONS(10741), + [anon_sym_BSLASHcolorbox] = ACTIONS(10741), + [anon_sym_BSLASHtextcolor] = ACTIONS(10741), + [anon_sym_BSLASHpagecolor] = ACTIONS(10741), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10743), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10745), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10747), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10749), + }, + [437] = { + [sym__simple_content] = STATE(435), + [sym_subparagraph] = STATE(435), + [sym_enum_item] = STATE(435), + [sym_brace_group] = STATE(435), + [sym_mixed_group] = STATE(435), + [sym_text] = STATE(435), + [sym__text_fragment] = STATE(1388), + [sym_displayed_equation] = STATE(435), + [sym_inline_formula] = STATE(435), + [sym_begin] = STATE(83), + [sym_environment] = STATE(435), + [sym_caption] = STATE(435), + [sym_citation] = STATE(435), + [sym_package_include] = STATE(435), + [sym_class_include] = STATE(435), + [sym_latex_include] = STATE(435), + [sym_latex_input] = STATE(435), + [sym_biblatex_include] = STATE(435), + [sym_bibtex_include] = STATE(435), + [sym_graphics_include] = STATE(435), + [sym_svg_include] = STATE(435), + [sym_inkscape_include] = STATE(435), + [sym_verbatim_include] = STATE(435), + [sym_import] = STATE(435), + [sym_label_definition] = STATE(435), + [sym_label_reference] = STATE(435), + [sym_equation_label_reference] = STATE(435), + [sym_label_reference_range] = STATE(435), + [sym_label_number] = STATE(435), + [sym_command_definition] = STATE(435), + [sym_math_operator] = STATE(435), + [sym_glossary_entry_definition] = STATE(435), + [sym_glossary_entry_reference] = STATE(435), + [sym_acronym_definition] = STATE(435), + [sym_acronym_reference] = STATE(435), + [sym_theorem_definition] = STATE(435), + [sym_color_reference] = STATE(435), + [sym_color_definition] = STATE(435), + [sym_color_set_definition] = STATE(435), + [sym_pgf_library_import] = STATE(435), + [sym_tikz_library_import] = STATE(435), + [sym_generic_command] = STATE(435), + [aux_sym_paragraph_repeat1] = STATE(435), + [aux_sym_text_repeat1] = STATE(1388), + [sym_generic_command_name] = ACTIONS(10663), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(10665), + [anon_sym_BSLASHitem] = ACTIONS(10667), + [anon_sym_LBRACK] = ACTIONS(10669), + [anon_sym_RBRACK] = ACTIONS(4154), + [anon_sym_LBRACE] = ACTIONS(10671), + [anon_sym_RBRACE] = ACTIONS(4154), + [anon_sym_LPAREN] = ACTIONS(10669), + [anon_sym_COMMA] = ACTIONS(10673), + [anon_sym_EQ] = ACTIONS(10673), + [sym_word] = ACTIONS(10673), + [sym_param] = ACTIONS(10751), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10677), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10677), + [anon_sym_DOLLAR] = ACTIONS(10679), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10681), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(10683), + [anon_sym_BSLASHcite] = ACTIONS(10685), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCite] = ACTIONS(10685), + [anon_sym_BSLASHnocite] = ACTIONS(10685), + [anon_sym_BSLASHcitet] = ACTIONS(10685), + [anon_sym_BSLASHcitep] = ACTIONS(10685), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteauthor] = ACTIONS(10685), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10685), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitetitle] = ACTIONS(10685), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteyear] = ACTIONS(10685), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitedate] = ACTIONS(10685), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteurl] = ACTIONS(10685), + [anon_sym_BSLASHfullcite] = ACTIONS(10685), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10685), + [anon_sym_BSLASHcitealt] = ACTIONS(10685), + [anon_sym_BSLASHcitealp] = ACTIONS(10685), + [anon_sym_BSLASHcitetext] = ACTIONS(10685), + [anon_sym_BSLASHparencite] = ACTIONS(10685), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHParencite] = ACTIONS(10685), + [anon_sym_BSLASHfootcite] = ACTIONS(10685), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10685), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10685), + [anon_sym_BSLASHtextcite] = ACTIONS(10685), + [anon_sym_BSLASHTextcite] = ACTIONS(10685), + [anon_sym_BSLASHsmartcite] = ACTIONS(10685), + [anon_sym_BSLASHSmartcite] = ACTIONS(10685), + [anon_sym_BSLASHsupercite] = ACTIONS(10685), + [anon_sym_BSLASHautocite] = ACTIONS(10685), + [anon_sym_BSLASHAutocite] = ACTIONS(10685), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHvolcite] = ACTIONS(10685), + [anon_sym_BSLASHVolcite] = ACTIONS(10685), + [anon_sym_BSLASHpvolcite] = ACTIONS(10685), + [anon_sym_BSLASHPvolcite] = ACTIONS(10685), + [anon_sym_BSLASHfvolcite] = ACTIONS(10685), + [anon_sym_BSLASHftvolcite] = ACTIONS(10685), + [anon_sym_BSLASHsvolcite] = ACTIONS(10685), + [anon_sym_BSLASHSvolcite] = ACTIONS(10685), + [anon_sym_BSLASHtvolcite] = ACTIONS(10685), + [anon_sym_BSLASHTvolcite] = ACTIONS(10685), + [anon_sym_BSLASHavolcite] = ACTIONS(10685), + [anon_sym_BSLASHAvolcite] = ACTIONS(10685), + [anon_sym_BSLASHnotecite] = ACTIONS(10685), + [anon_sym_BSLASHpnotecite] = ACTIONS(10685), + [anon_sym_BSLASHPnotecite] = ACTIONS(10685), + [anon_sym_BSLASHfnotecite] = ACTIONS(10685), + [anon_sym_BSLASHusepackage] = ACTIONS(10689), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10689), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10691), + [anon_sym_BSLASHinclude] = ACTIONS(10693), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10693), + [anon_sym_BSLASHinput] = ACTIONS(10695), + [anon_sym_BSLASHsubfile] = ACTIONS(10695), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10697), + [anon_sym_BSLASHbibliography] = ACTIONS(10699), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10701), + [anon_sym_BSLASHincludesvg] = ACTIONS(10703), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10705), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10707), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10707), + [anon_sym_BSLASHimport] = ACTIONS(10709), + [anon_sym_BSLASHsubimport] = ACTIONS(10709), + [anon_sym_BSLASHinputfrom] = ACTIONS(10709), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10709), + [anon_sym_BSLASHincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHlabel] = ACTIONS(10711), + [anon_sym_BSLASHref] = ACTIONS(10713), + [anon_sym_BSLASHvref] = ACTIONS(10713), + [anon_sym_BSLASHVref] = ACTIONS(10713), + [anon_sym_BSLASHautoref] = ACTIONS(10713), + [anon_sym_BSLASHpageref] = ACTIONS(10713), + [anon_sym_BSLASHcref] = ACTIONS(10713), + [anon_sym_BSLASHCref] = ACTIONS(10713), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnameCref] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHlabelcref] = ACTIONS(10713), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10713), + [anon_sym_BSLASHeqref] = ACTIONS(10717), + [anon_sym_BSLASHcrefrange] = ACTIONS(10719), + [anon_sym_BSLASHCrefrange] = ACTIONS(10719), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHnewlabel] = ACTIONS(10723), + [anon_sym_BSLASHnewcommand] = ACTIONS(10725), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10727), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10729), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10731), + [anon_sym_BSLASHgls] = ACTIONS(10733), + [anon_sym_BSLASHGls] = ACTIONS(10733), + [anon_sym_BSLASHGLS] = ACTIONS(10733), + [anon_sym_BSLASHglspl] = ACTIONS(10733), + [anon_sym_BSLASHGlspl] = ACTIONS(10733), + [anon_sym_BSLASHGLSpl] = ACTIONS(10733), + [anon_sym_BSLASHglsdisp] = ACTIONS(10733), + [anon_sym_BSLASHglslink] = ACTIONS(10733), + [anon_sym_BSLASHglstext] = ACTIONS(10733), + [anon_sym_BSLASHGlstext] = ACTIONS(10733), + [anon_sym_BSLASHGLStext] = ACTIONS(10733), + [anon_sym_BSLASHglsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10733), + [anon_sym_BSLASHglsplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSplural] = ACTIONS(10733), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHglsname] = ACTIONS(10733), + [anon_sym_BSLASHGlsname] = ACTIONS(10733), + [anon_sym_BSLASHGLSname] = ACTIONS(10733), + [anon_sym_BSLASHglssymbol] = ACTIONS(10733), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10733), + [anon_sym_BSLASHglsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10733), + [anon_sym_BSLASHglsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10733), + [anon_sym_BSLASHglsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10733), + [anon_sym_BSLASHglsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10733), + [anon_sym_BSLASHglsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10733), + [anon_sym_BSLASHnewacronym] = ACTIONS(10735), + [anon_sym_BSLASHacrshort] = ACTIONS(10737), + [anon_sym_BSLASHAcrshort] = ACTIONS(10737), + [anon_sym_BSLASHACRshort] = ACTIONS(10737), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10737), + [anon_sym_BSLASHacrlong] = ACTIONS(10737), + [anon_sym_BSLASHAcrlong] = ACTIONS(10737), + [anon_sym_BSLASHACRlong] = ACTIONS(10737), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10737), + [anon_sym_BSLASHacrfull] = ACTIONS(10737), + [anon_sym_BSLASHAcrfull] = ACTIONS(10737), + [anon_sym_BSLASHACRfull] = ACTIONS(10737), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10737), + [anon_sym_BSLASHacs] = ACTIONS(10737), + [anon_sym_BSLASHAcs] = ACTIONS(10737), + [anon_sym_BSLASHacsp] = ACTIONS(10737), + [anon_sym_BSLASHAcsp] = ACTIONS(10737), + [anon_sym_BSLASHacl] = ACTIONS(10737), + [anon_sym_BSLASHAcl] = ACTIONS(10737), + [anon_sym_BSLASHaclp] = ACTIONS(10737), + [anon_sym_BSLASHAclp] = ACTIONS(10737), + [anon_sym_BSLASHacf] = ACTIONS(10737), + [anon_sym_BSLASHAcf] = ACTIONS(10737), + [anon_sym_BSLASHacfp] = ACTIONS(10737), + [anon_sym_BSLASHAcfp] = ACTIONS(10737), + [anon_sym_BSLASHac] = ACTIONS(10737), + [anon_sym_BSLASHAc] = ACTIONS(10737), + [anon_sym_BSLASHacp] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10739), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10739), + [anon_sym_BSLASHcolor] = ACTIONS(10741), + [anon_sym_BSLASHcolorbox] = ACTIONS(10741), + [anon_sym_BSLASHtextcolor] = ACTIONS(10741), + [anon_sym_BSLASHpagecolor] = ACTIONS(10741), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10743), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10745), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10747), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10749), + }, + [438] = { + [sym__simple_content] = STATE(439), + [sym_enum_item] = STATE(439), + [sym_brace_group] = STATE(439), + [sym_mixed_group] = STATE(439), + [sym_text] = STATE(439), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(439), + [sym_inline_formula] = STATE(439), + [sym_begin] = STATE(99), + [sym_environment] = STATE(439), + [sym_caption] = STATE(439), + [sym_citation] = STATE(439), + [sym_package_include] = STATE(439), + [sym_class_include] = STATE(439), + [sym_latex_include] = STATE(439), + [sym_latex_input] = STATE(439), + [sym_biblatex_include] = STATE(439), + [sym_bibtex_include] = STATE(439), + [sym_graphics_include] = STATE(439), + [sym_svg_include] = STATE(439), + [sym_inkscape_include] = STATE(439), + [sym_verbatim_include] = STATE(439), + [sym_import] = STATE(439), + [sym_label_definition] = STATE(439), + [sym_label_reference] = STATE(439), + [sym_equation_label_reference] = STATE(439), + [sym_label_reference_range] = STATE(439), + [sym_label_number] = STATE(439), + [sym_command_definition] = STATE(439), + [sym_math_operator] = STATE(439), + [sym_glossary_entry_definition] = STATE(439), + [sym_glossary_entry_reference] = STATE(439), + [sym_acronym_definition] = STATE(439), + [sym_acronym_reference] = STATE(439), + [sym_theorem_definition] = STATE(439), + [sym_color_reference] = STATE(439), + [sym_color_definition] = STATE(439), + [sym_color_set_definition] = STATE(439), + [sym_pgf_library_import] = STATE(439), + [sym_tikz_library_import] = STATE(439), + [sym_generic_command] = STATE(439), + [aux_sym_subparagraph_repeat1] = STATE(439), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(9773), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(4879), + [aux_sym_subparagraph_token1] = ACTIONS(4879), + [anon_sym_BSLASHitem] = ACTIONS(9779), + [anon_sym_LBRACK] = ACTIONS(9781), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(9783), + [anon_sym_RBRACE] = ACTIONS(4877), + [anon_sym_LPAREN] = ACTIONS(9781), + [anon_sym_COMMA] = ACTIONS(9785), + [anon_sym_EQ] = ACTIONS(9785), + [sym_word] = ACTIONS(9785), + [sym_param] = ACTIONS(10753), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9789), + [anon_sym_DOLLAR] = ACTIONS(9791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9793), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(9795), + [anon_sym_BSLASHcite] = ACTIONS(9797), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCite] = ACTIONS(9797), + [anon_sym_BSLASHnocite] = ACTIONS(9797), + [anon_sym_BSLASHcitet] = ACTIONS(9797), + [anon_sym_BSLASHcitep] = ACTIONS(9797), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteauthor] = ACTIONS(9797), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9797), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitetitle] = ACTIONS(9797), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteyear] = ACTIONS(9797), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitedate] = ACTIONS(9797), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteurl] = ACTIONS(9797), + [anon_sym_BSLASHfullcite] = ACTIONS(9797), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9797), + [anon_sym_BSLASHcitealt] = ACTIONS(9797), + [anon_sym_BSLASHcitealp] = ACTIONS(9797), + [anon_sym_BSLASHcitetext] = ACTIONS(9797), + [anon_sym_BSLASHparencite] = ACTIONS(9797), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHParencite] = ACTIONS(9797), + [anon_sym_BSLASHfootcite] = ACTIONS(9797), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9797), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9797), + [anon_sym_BSLASHtextcite] = ACTIONS(9797), + [anon_sym_BSLASHTextcite] = ACTIONS(9797), + [anon_sym_BSLASHsmartcite] = ACTIONS(9797), + [anon_sym_BSLASHSmartcite] = ACTIONS(9797), + [anon_sym_BSLASHsupercite] = ACTIONS(9797), + [anon_sym_BSLASHautocite] = ACTIONS(9797), + [anon_sym_BSLASHAutocite] = ACTIONS(9797), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHvolcite] = ACTIONS(9797), + [anon_sym_BSLASHVolcite] = ACTIONS(9797), + [anon_sym_BSLASHpvolcite] = ACTIONS(9797), + [anon_sym_BSLASHPvolcite] = ACTIONS(9797), + [anon_sym_BSLASHfvolcite] = ACTIONS(9797), + [anon_sym_BSLASHftvolcite] = ACTIONS(9797), + [anon_sym_BSLASHsvolcite] = ACTIONS(9797), + [anon_sym_BSLASHSvolcite] = ACTIONS(9797), + [anon_sym_BSLASHtvolcite] = ACTIONS(9797), + [anon_sym_BSLASHTvolcite] = ACTIONS(9797), + [anon_sym_BSLASHavolcite] = ACTIONS(9797), + [anon_sym_BSLASHAvolcite] = ACTIONS(9797), + [anon_sym_BSLASHnotecite] = ACTIONS(9797), + [anon_sym_BSLASHpnotecite] = ACTIONS(9797), + [anon_sym_BSLASHPnotecite] = ACTIONS(9797), + [anon_sym_BSLASHfnotecite] = ACTIONS(9797), + [anon_sym_BSLASHusepackage] = ACTIONS(9801), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9801), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9803), + [anon_sym_BSLASHinclude] = ACTIONS(9805), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9805), + [anon_sym_BSLASHinput] = ACTIONS(9807), + [anon_sym_BSLASHsubfile] = ACTIONS(9807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9809), + [anon_sym_BSLASHbibliography] = ACTIONS(9811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9813), + [anon_sym_BSLASHincludesvg] = ACTIONS(9815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9819), + [anon_sym_BSLASHimport] = ACTIONS(9821), + [anon_sym_BSLASHsubimport] = ACTIONS(9821), + [anon_sym_BSLASHinputfrom] = ACTIONS(9821), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9821), + [anon_sym_BSLASHincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHlabel] = ACTIONS(9823), + [anon_sym_BSLASHref] = ACTIONS(9825), + [anon_sym_BSLASHvref] = ACTIONS(9825), + [anon_sym_BSLASHVref] = ACTIONS(9825), + [anon_sym_BSLASHautoref] = ACTIONS(9825), + [anon_sym_BSLASHpageref] = ACTIONS(9825), + [anon_sym_BSLASHcref] = ACTIONS(9825), + [anon_sym_BSLASHCref] = ACTIONS(9825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnameCref] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHlabelcref] = ACTIONS(9825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9825), + [anon_sym_BSLASHeqref] = ACTIONS(9829), + [anon_sym_BSLASHcrefrange] = ACTIONS(9831), + [anon_sym_BSLASHCrefrange] = ACTIONS(9831), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHnewlabel] = ACTIONS(9835), + [anon_sym_BSLASHnewcommand] = ACTIONS(9837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9839), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9843), + [anon_sym_BSLASHgls] = ACTIONS(9845), + [anon_sym_BSLASHGls] = ACTIONS(9845), + [anon_sym_BSLASHGLS] = ACTIONS(9845), + [anon_sym_BSLASHglspl] = ACTIONS(9845), + [anon_sym_BSLASHGlspl] = ACTIONS(9845), + [anon_sym_BSLASHGLSpl] = ACTIONS(9845), + [anon_sym_BSLASHglsdisp] = ACTIONS(9845), + [anon_sym_BSLASHglslink] = ACTIONS(9845), + [anon_sym_BSLASHglstext] = ACTIONS(9845), + [anon_sym_BSLASHGlstext] = ACTIONS(9845), + [anon_sym_BSLASHGLStext] = ACTIONS(9845), + [anon_sym_BSLASHglsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9845), + [anon_sym_BSLASHglsplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSplural] = ACTIONS(9845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHglsname] = ACTIONS(9845), + [anon_sym_BSLASHGlsname] = ACTIONS(9845), + [anon_sym_BSLASHGLSname] = ACTIONS(9845), + [anon_sym_BSLASHglssymbol] = ACTIONS(9845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9845), + [anon_sym_BSLASHglsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9845), + [anon_sym_BSLASHglsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9845), + [anon_sym_BSLASHglsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9845), + [anon_sym_BSLASHglsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9845), + [anon_sym_BSLASHglsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9845), + [anon_sym_BSLASHnewacronym] = ACTIONS(9847), + [anon_sym_BSLASHacrshort] = ACTIONS(9849), + [anon_sym_BSLASHAcrshort] = ACTIONS(9849), + [anon_sym_BSLASHACRshort] = ACTIONS(9849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9849), + [anon_sym_BSLASHacrlong] = ACTIONS(9849), + [anon_sym_BSLASHAcrlong] = ACTIONS(9849), + [anon_sym_BSLASHACRlong] = ACTIONS(9849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9849), + [anon_sym_BSLASHacrfull] = ACTIONS(9849), + [anon_sym_BSLASHAcrfull] = ACTIONS(9849), + [anon_sym_BSLASHACRfull] = ACTIONS(9849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9849), + [anon_sym_BSLASHacs] = ACTIONS(9849), + [anon_sym_BSLASHAcs] = ACTIONS(9849), + [anon_sym_BSLASHacsp] = ACTIONS(9849), + [anon_sym_BSLASHAcsp] = ACTIONS(9849), + [anon_sym_BSLASHacl] = ACTIONS(9849), + [anon_sym_BSLASHAcl] = ACTIONS(9849), + [anon_sym_BSLASHaclp] = ACTIONS(9849), + [anon_sym_BSLASHAclp] = ACTIONS(9849), + [anon_sym_BSLASHacf] = ACTIONS(9849), + [anon_sym_BSLASHAcf] = ACTIONS(9849), + [anon_sym_BSLASHacfp] = ACTIONS(9849), + [anon_sym_BSLASHAcfp] = ACTIONS(9849), + [anon_sym_BSLASHac] = ACTIONS(9849), + [anon_sym_BSLASHAc] = ACTIONS(9849), + [anon_sym_BSLASHacp] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9851), + [anon_sym_BSLASHcolor] = ACTIONS(9853), + [anon_sym_BSLASHcolorbox] = ACTIONS(9853), + [anon_sym_BSLASHtextcolor] = ACTIONS(9853), + [anon_sym_BSLASHpagecolor] = ACTIONS(9853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9855), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9859), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9861), + }, + [439] = { + [sym__simple_content] = STATE(444), + [sym_enum_item] = STATE(444), + [sym_brace_group] = STATE(444), + [sym_mixed_group] = STATE(444), + [sym_text] = STATE(444), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(444), + [sym_inline_formula] = STATE(444), + [sym_begin] = STATE(99), + [sym_environment] = STATE(444), + [sym_caption] = STATE(444), + [sym_citation] = STATE(444), + [sym_package_include] = STATE(444), + [sym_class_include] = STATE(444), + [sym_latex_include] = STATE(444), + [sym_latex_input] = STATE(444), + [sym_biblatex_include] = STATE(444), + [sym_bibtex_include] = STATE(444), + [sym_graphics_include] = STATE(444), + [sym_svg_include] = STATE(444), + [sym_inkscape_include] = STATE(444), + [sym_verbatim_include] = STATE(444), + [sym_import] = STATE(444), + [sym_label_definition] = STATE(444), + [sym_label_reference] = STATE(444), + [sym_equation_label_reference] = STATE(444), + [sym_label_reference_range] = STATE(444), + [sym_label_number] = STATE(444), + [sym_command_definition] = STATE(444), + [sym_math_operator] = STATE(444), + [sym_glossary_entry_definition] = STATE(444), + [sym_glossary_entry_reference] = STATE(444), + [sym_acronym_definition] = STATE(444), + [sym_acronym_reference] = STATE(444), + [sym_theorem_definition] = STATE(444), + [sym_color_reference] = STATE(444), + [sym_color_definition] = STATE(444), + [sym_color_set_definition] = STATE(444), + [sym_pgf_library_import] = STATE(444), + [sym_tikz_library_import] = STATE(444), + [sym_generic_command] = STATE(444), + [aux_sym_subparagraph_repeat1] = STATE(444), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(9773), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(5168), + [aux_sym_subparagraph_token1] = ACTIONS(5168), + [anon_sym_BSLASHitem] = ACTIONS(9779), + [anon_sym_LBRACK] = ACTIONS(9781), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(9783), + [anon_sym_RBRACE] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(9781), + [anon_sym_COMMA] = ACTIONS(9785), + [anon_sym_EQ] = ACTIONS(9785), + [sym_word] = ACTIONS(9785), + [sym_param] = ACTIONS(10755), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9789), + [anon_sym_DOLLAR] = ACTIONS(9791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9793), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(9795), + [anon_sym_BSLASHcite] = ACTIONS(9797), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCite] = ACTIONS(9797), + [anon_sym_BSLASHnocite] = ACTIONS(9797), + [anon_sym_BSLASHcitet] = ACTIONS(9797), + [anon_sym_BSLASHcitep] = ACTIONS(9797), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteauthor] = ACTIONS(9797), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9797), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitetitle] = ACTIONS(9797), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteyear] = ACTIONS(9797), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitedate] = ACTIONS(9797), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteurl] = ACTIONS(9797), + [anon_sym_BSLASHfullcite] = ACTIONS(9797), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9797), + [anon_sym_BSLASHcitealt] = ACTIONS(9797), + [anon_sym_BSLASHcitealp] = ACTIONS(9797), + [anon_sym_BSLASHcitetext] = ACTIONS(9797), + [anon_sym_BSLASHparencite] = ACTIONS(9797), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHParencite] = ACTIONS(9797), + [anon_sym_BSLASHfootcite] = ACTIONS(9797), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9797), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9797), + [anon_sym_BSLASHtextcite] = ACTIONS(9797), + [anon_sym_BSLASHTextcite] = ACTIONS(9797), + [anon_sym_BSLASHsmartcite] = ACTIONS(9797), + [anon_sym_BSLASHSmartcite] = ACTIONS(9797), + [anon_sym_BSLASHsupercite] = ACTIONS(9797), + [anon_sym_BSLASHautocite] = ACTIONS(9797), + [anon_sym_BSLASHAutocite] = ACTIONS(9797), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHvolcite] = ACTIONS(9797), + [anon_sym_BSLASHVolcite] = ACTIONS(9797), + [anon_sym_BSLASHpvolcite] = ACTIONS(9797), + [anon_sym_BSLASHPvolcite] = ACTIONS(9797), + [anon_sym_BSLASHfvolcite] = ACTIONS(9797), + [anon_sym_BSLASHftvolcite] = ACTIONS(9797), + [anon_sym_BSLASHsvolcite] = ACTIONS(9797), + [anon_sym_BSLASHSvolcite] = ACTIONS(9797), + [anon_sym_BSLASHtvolcite] = ACTIONS(9797), + [anon_sym_BSLASHTvolcite] = ACTIONS(9797), + [anon_sym_BSLASHavolcite] = ACTIONS(9797), + [anon_sym_BSLASHAvolcite] = ACTIONS(9797), + [anon_sym_BSLASHnotecite] = ACTIONS(9797), + [anon_sym_BSLASHpnotecite] = ACTIONS(9797), + [anon_sym_BSLASHPnotecite] = ACTIONS(9797), + [anon_sym_BSLASHfnotecite] = ACTIONS(9797), + [anon_sym_BSLASHusepackage] = ACTIONS(9801), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9801), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9803), + [anon_sym_BSLASHinclude] = ACTIONS(9805), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9805), + [anon_sym_BSLASHinput] = ACTIONS(9807), + [anon_sym_BSLASHsubfile] = ACTIONS(9807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9809), + [anon_sym_BSLASHbibliography] = ACTIONS(9811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9813), + [anon_sym_BSLASHincludesvg] = ACTIONS(9815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9819), + [anon_sym_BSLASHimport] = ACTIONS(9821), + [anon_sym_BSLASHsubimport] = ACTIONS(9821), + [anon_sym_BSLASHinputfrom] = ACTIONS(9821), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9821), + [anon_sym_BSLASHincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHlabel] = ACTIONS(9823), + [anon_sym_BSLASHref] = ACTIONS(9825), + [anon_sym_BSLASHvref] = ACTIONS(9825), + [anon_sym_BSLASHVref] = ACTIONS(9825), + [anon_sym_BSLASHautoref] = ACTIONS(9825), + [anon_sym_BSLASHpageref] = ACTIONS(9825), + [anon_sym_BSLASHcref] = ACTIONS(9825), + [anon_sym_BSLASHCref] = ACTIONS(9825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnameCref] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHlabelcref] = ACTIONS(9825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9825), + [anon_sym_BSLASHeqref] = ACTIONS(9829), + [anon_sym_BSLASHcrefrange] = ACTIONS(9831), + [anon_sym_BSLASHCrefrange] = ACTIONS(9831), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHnewlabel] = ACTIONS(9835), + [anon_sym_BSLASHnewcommand] = ACTIONS(9837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9839), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9843), + [anon_sym_BSLASHgls] = ACTIONS(9845), + [anon_sym_BSLASHGls] = ACTIONS(9845), + [anon_sym_BSLASHGLS] = ACTIONS(9845), + [anon_sym_BSLASHglspl] = ACTIONS(9845), + [anon_sym_BSLASHGlspl] = ACTIONS(9845), + [anon_sym_BSLASHGLSpl] = ACTIONS(9845), + [anon_sym_BSLASHglsdisp] = ACTIONS(9845), + [anon_sym_BSLASHglslink] = ACTIONS(9845), + [anon_sym_BSLASHglstext] = ACTIONS(9845), + [anon_sym_BSLASHGlstext] = ACTIONS(9845), + [anon_sym_BSLASHGLStext] = ACTIONS(9845), + [anon_sym_BSLASHglsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9845), + [anon_sym_BSLASHglsplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSplural] = ACTIONS(9845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHglsname] = ACTIONS(9845), + [anon_sym_BSLASHGlsname] = ACTIONS(9845), + [anon_sym_BSLASHGLSname] = ACTIONS(9845), + [anon_sym_BSLASHglssymbol] = ACTIONS(9845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9845), + [anon_sym_BSLASHglsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9845), + [anon_sym_BSLASHglsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9845), + [anon_sym_BSLASHglsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9845), + [anon_sym_BSLASHglsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9845), + [anon_sym_BSLASHglsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9845), + [anon_sym_BSLASHnewacronym] = ACTIONS(9847), + [anon_sym_BSLASHacrshort] = ACTIONS(9849), + [anon_sym_BSLASHAcrshort] = ACTIONS(9849), + [anon_sym_BSLASHACRshort] = ACTIONS(9849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9849), + [anon_sym_BSLASHacrlong] = ACTIONS(9849), + [anon_sym_BSLASHAcrlong] = ACTIONS(9849), + [anon_sym_BSLASHACRlong] = ACTIONS(9849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9849), + [anon_sym_BSLASHacrfull] = ACTIONS(9849), + [anon_sym_BSLASHAcrfull] = ACTIONS(9849), + [anon_sym_BSLASHACRfull] = ACTIONS(9849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9849), + [anon_sym_BSLASHacs] = ACTIONS(9849), + [anon_sym_BSLASHAcs] = ACTIONS(9849), + [anon_sym_BSLASHacsp] = ACTIONS(9849), + [anon_sym_BSLASHAcsp] = ACTIONS(9849), + [anon_sym_BSLASHacl] = ACTIONS(9849), + [anon_sym_BSLASHAcl] = ACTIONS(9849), + [anon_sym_BSLASHaclp] = ACTIONS(9849), + [anon_sym_BSLASHAclp] = ACTIONS(9849), + [anon_sym_BSLASHacf] = ACTIONS(9849), + [anon_sym_BSLASHAcf] = ACTIONS(9849), + [anon_sym_BSLASHacfp] = ACTIONS(9849), + [anon_sym_BSLASHAcfp] = ACTIONS(9849), + [anon_sym_BSLASHac] = ACTIONS(9849), + [anon_sym_BSLASHAc] = ACTIONS(9849), + [anon_sym_BSLASHacp] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9851), + [anon_sym_BSLASHcolor] = ACTIONS(9853), + [anon_sym_BSLASHcolorbox] = ACTIONS(9853), + [anon_sym_BSLASHtextcolor] = ACTIONS(9853), + [anon_sym_BSLASHpagecolor] = ACTIONS(9853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9855), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9859), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9861), + }, + [440] = { + [sym__simple_content] = STATE(442), + [sym_brace_group] = STATE(442), + [sym_mixed_group] = STATE(442), + [sym_text] = STATE(442), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(442), + [sym_inline_formula] = STATE(442), + [sym_begin] = STATE(112), + [sym_environment] = STATE(442), + [sym_caption] = STATE(442), + [sym_citation] = STATE(442), + [sym_package_include] = STATE(442), + [sym_class_include] = STATE(442), + [sym_latex_include] = STATE(442), + [sym_latex_input] = STATE(442), + [sym_biblatex_include] = STATE(442), + [sym_bibtex_include] = STATE(442), + [sym_graphics_include] = STATE(442), + [sym_svg_include] = STATE(442), + [sym_inkscape_include] = STATE(442), + [sym_verbatim_include] = STATE(442), + [sym_import] = STATE(442), + [sym_label_definition] = STATE(442), + [sym_label_reference] = STATE(442), + [sym_equation_label_reference] = STATE(442), + [sym_label_reference_range] = STATE(442), + [sym_label_number] = STATE(442), + [sym_command_definition] = STATE(442), + [sym_math_operator] = STATE(442), + [sym_glossary_entry_definition] = STATE(442), + [sym_glossary_entry_reference] = STATE(442), + [sym_acronym_definition] = STATE(442), + [sym_acronym_reference] = STATE(442), + [sym_theorem_definition] = STATE(442), + [sym_color_reference] = STATE(442), + [sym_color_definition] = STATE(442), + [sym_color_set_definition] = STATE(442), + [sym_pgf_library_import] = STATE(442), + [sym_tikz_library_import] = STATE(442), + [sym_generic_command] = STATE(442), + [aux_sym_enum_item_repeat1] = STATE(442), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(7652), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(5606), + [aux_sym_paragraph_token1] = ACTIONS(5606), + [aux_sym_subparagraph_token1] = ACTIONS(5606), + [anon_sym_BSLASHitem] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(7662), + [anon_sym_RBRACK] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_LPAREN] = ACTIONS(7662), + [anon_sym_COMMA] = ACTIONS(7666), + [anon_sym_EQ] = ACTIONS(7666), + [sym_word] = ACTIONS(7666), + [sym_param] = ACTIONS(10757), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7670), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7670), + [anon_sym_DOLLAR] = ACTIONS(7672), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7674), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7676), + [anon_sym_BSLASHcite] = ACTIONS(7678), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCite] = ACTIONS(7678), + [anon_sym_BSLASHnocite] = ACTIONS(7678), + [anon_sym_BSLASHcitet] = ACTIONS(7678), + [anon_sym_BSLASHcitep] = ACTIONS(7678), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteauthor] = ACTIONS(7678), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7678), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitetitle] = ACTIONS(7678), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteyear] = ACTIONS(7678), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitedate] = ACTIONS(7678), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteurl] = ACTIONS(7678), + [anon_sym_BSLASHfullcite] = ACTIONS(7678), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7678), + [anon_sym_BSLASHcitealt] = ACTIONS(7678), + [anon_sym_BSLASHcitealp] = ACTIONS(7678), + [anon_sym_BSLASHcitetext] = ACTIONS(7678), + [anon_sym_BSLASHparencite] = ACTIONS(7678), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHParencite] = ACTIONS(7678), + [anon_sym_BSLASHfootcite] = ACTIONS(7678), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7678), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7678), + [anon_sym_BSLASHtextcite] = ACTIONS(7678), + [anon_sym_BSLASHTextcite] = ACTIONS(7678), + [anon_sym_BSLASHsmartcite] = ACTIONS(7678), + [anon_sym_BSLASHSmartcite] = ACTIONS(7678), + [anon_sym_BSLASHsupercite] = ACTIONS(7678), + [anon_sym_BSLASHautocite] = ACTIONS(7678), + [anon_sym_BSLASHAutocite] = ACTIONS(7678), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHvolcite] = ACTIONS(7678), + [anon_sym_BSLASHVolcite] = ACTIONS(7678), + [anon_sym_BSLASHpvolcite] = ACTIONS(7678), + [anon_sym_BSLASHPvolcite] = ACTIONS(7678), + [anon_sym_BSLASHfvolcite] = ACTIONS(7678), + [anon_sym_BSLASHftvolcite] = ACTIONS(7678), + [anon_sym_BSLASHsvolcite] = ACTIONS(7678), + [anon_sym_BSLASHSvolcite] = ACTIONS(7678), + [anon_sym_BSLASHtvolcite] = ACTIONS(7678), + [anon_sym_BSLASHTvolcite] = ACTIONS(7678), + [anon_sym_BSLASHavolcite] = ACTIONS(7678), + [anon_sym_BSLASHAvolcite] = ACTIONS(7678), + [anon_sym_BSLASHnotecite] = ACTIONS(7678), + [anon_sym_BSLASHpnotecite] = ACTIONS(7678), + [anon_sym_BSLASHPnotecite] = ACTIONS(7678), + [anon_sym_BSLASHfnotecite] = ACTIONS(7678), + [anon_sym_BSLASHusepackage] = ACTIONS(7682), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7684), + [anon_sym_BSLASHinclude] = ACTIONS(7686), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7686), + [anon_sym_BSLASHinput] = ACTIONS(7688), + [anon_sym_BSLASHsubfile] = ACTIONS(7688), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7690), + [anon_sym_BSLASHbibliography] = ACTIONS(7692), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7694), + [anon_sym_BSLASHincludesvg] = ACTIONS(7696), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7698), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7700), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7700), + [anon_sym_BSLASHimport] = ACTIONS(7702), + [anon_sym_BSLASHsubimport] = ACTIONS(7702), + [anon_sym_BSLASHinputfrom] = ACTIONS(7702), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7702), + [anon_sym_BSLASHincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHlabel] = ACTIONS(7704), + [anon_sym_BSLASHref] = ACTIONS(7706), + [anon_sym_BSLASHvref] = ACTIONS(7706), + [anon_sym_BSLASHVref] = ACTIONS(7706), + [anon_sym_BSLASHautoref] = ACTIONS(7706), + [anon_sym_BSLASHpageref] = ACTIONS(7706), + [anon_sym_BSLASHcref] = ACTIONS(7706), + [anon_sym_BSLASHCref] = ACTIONS(7706), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnameCref] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHlabelcref] = ACTIONS(7706), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7706), + [anon_sym_BSLASHeqref] = ACTIONS(7710), + [anon_sym_BSLASHcrefrange] = ACTIONS(7712), + [anon_sym_BSLASHCrefrange] = ACTIONS(7712), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHnewlabel] = ACTIONS(7716), + [anon_sym_BSLASHnewcommand] = ACTIONS(7718), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7720), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7722), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7724), + [anon_sym_BSLASHgls] = ACTIONS(7726), + [anon_sym_BSLASHGls] = ACTIONS(7726), + [anon_sym_BSLASHGLS] = ACTIONS(7726), + [anon_sym_BSLASHglspl] = ACTIONS(7726), + [anon_sym_BSLASHGlspl] = ACTIONS(7726), + [anon_sym_BSLASHGLSpl] = ACTIONS(7726), + [anon_sym_BSLASHglsdisp] = ACTIONS(7726), + [anon_sym_BSLASHglslink] = ACTIONS(7726), + [anon_sym_BSLASHglstext] = ACTIONS(7726), + [anon_sym_BSLASHGlstext] = ACTIONS(7726), + [anon_sym_BSLASHGLStext] = ACTIONS(7726), + [anon_sym_BSLASHglsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7726), + [anon_sym_BSLASHglsplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSplural] = ACTIONS(7726), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHglsname] = ACTIONS(7726), + [anon_sym_BSLASHGlsname] = ACTIONS(7726), + [anon_sym_BSLASHGLSname] = ACTIONS(7726), + [anon_sym_BSLASHglssymbol] = ACTIONS(7726), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7726), + [anon_sym_BSLASHglsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7726), + [anon_sym_BSLASHglsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7726), + [anon_sym_BSLASHglsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7726), + [anon_sym_BSLASHglsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7726), + [anon_sym_BSLASHglsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7726), + [anon_sym_BSLASHnewacronym] = ACTIONS(7728), + [anon_sym_BSLASHacrshort] = ACTIONS(7730), + [anon_sym_BSLASHAcrshort] = ACTIONS(7730), + [anon_sym_BSLASHACRshort] = ACTIONS(7730), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7730), + [anon_sym_BSLASHacrlong] = ACTIONS(7730), + [anon_sym_BSLASHAcrlong] = ACTIONS(7730), + [anon_sym_BSLASHACRlong] = ACTIONS(7730), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7730), + [anon_sym_BSLASHacrfull] = ACTIONS(7730), + [anon_sym_BSLASHAcrfull] = ACTIONS(7730), + [anon_sym_BSLASHACRfull] = ACTIONS(7730), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7730), + [anon_sym_BSLASHacs] = ACTIONS(7730), + [anon_sym_BSLASHAcs] = ACTIONS(7730), + [anon_sym_BSLASHacsp] = ACTIONS(7730), + [anon_sym_BSLASHAcsp] = ACTIONS(7730), + [anon_sym_BSLASHacl] = ACTIONS(7730), + [anon_sym_BSLASHAcl] = ACTIONS(7730), + [anon_sym_BSLASHaclp] = ACTIONS(7730), + [anon_sym_BSLASHAclp] = ACTIONS(7730), + [anon_sym_BSLASHacf] = ACTIONS(7730), + [anon_sym_BSLASHAcf] = ACTIONS(7730), + [anon_sym_BSLASHacfp] = ACTIONS(7730), + [anon_sym_BSLASHAcfp] = ACTIONS(7730), + [anon_sym_BSLASHac] = ACTIONS(7730), + [anon_sym_BSLASHAc] = ACTIONS(7730), + [anon_sym_BSLASHacp] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7732), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7732), + [anon_sym_BSLASHcolor] = ACTIONS(7734), + [anon_sym_BSLASHcolorbox] = ACTIONS(7734), + [anon_sym_BSLASHtextcolor] = ACTIONS(7734), + [anon_sym_BSLASHpagecolor] = ACTIONS(7734), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7736), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7738), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7740), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7742), + }, + [441] = { + [sym__simple_content] = STATE(441), + [sym_brace_group] = STATE(441), + [sym_mixed_group] = STATE(441), + [sym_text] = STATE(441), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(441), + [sym_inline_formula] = STATE(441), + [sym_begin] = STATE(112), + [sym_environment] = STATE(441), + [sym_caption] = STATE(441), + [sym_citation] = STATE(441), + [sym_package_include] = STATE(441), + [sym_class_include] = STATE(441), + [sym_latex_include] = STATE(441), + [sym_latex_input] = STATE(441), + [sym_biblatex_include] = STATE(441), + [sym_bibtex_include] = STATE(441), + [sym_graphics_include] = STATE(441), + [sym_svg_include] = STATE(441), + [sym_inkscape_include] = STATE(441), + [sym_verbatim_include] = STATE(441), + [sym_import] = STATE(441), + [sym_label_definition] = STATE(441), + [sym_label_reference] = STATE(441), + [sym_equation_label_reference] = STATE(441), + [sym_label_reference_range] = STATE(441), + [sym_label_number] = STATE(441), + [sym_command_definition] = STATE(441), + [sym_math_operator] = STATE(441), + [sym_glossary_entry_definition] = STATE(441), + [sym_glossary_entry_reference] = STATE(441), + [sym_acronym_definition] = STATE(441), + [sym_acronym_reference] = STATE(441), + [sym_theorem_definition] = STATE(441), + [sym_color_reference] = STATE(441), + [sym_color_definition] = STATE(441), + [sym_color_set_definition] = STATE(441), + [sym_pgf_library_import] = STATE(441), + [sym_tikz_library_import] = STATE(441), + [sym_generic_command] = STATE(441), + [aux_sym_enum_item_repeat1] = STATE(441), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(10759), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(6045), + [aux_sym_paragraph_token1] = ACTIONS(6045), + [aux_sym_subparagraph_token1] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(10762), + [anon_sym_RBRACK] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(10765), + [anon_sym_RBRACE] = ACTIONS(6040), + [anon_sym_LPAREN] = ACTIONS(10762), + [anon_sym_COMMA] = ACTIONS(10768), + [anon_sym_EQ] = ACTIONS(10768), + [sym_word] = ACTIONS(10768), + [sym_param] = ACTIONS(10771), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10774), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10774), + [anon_sym_DOLLAR] = ACTIONS(10777), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10780), + [anon_sym_BSLASHbegin] = ACTIONS(6068), + [anon_sym_BSLASHcaption] = ACTIONS(10783), + [anon_sym_BSLASHcite] = ACTIONS(10786), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10789), + [anon_sym_BSLASHCite] = ACTIONS(10786), + [anon_sym_BSLASHnocite] = ACTIONS(10786), + [anon_sym_BSLASHcitet] = ACTIONS(10786), + [anon_sym_BSLASHcitep] = ACTIONS(10786), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10789), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10789), + [anon_sym_BSLASHciteauthor] = ACTIONS(10786), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10789), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10786), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10789), + [anon_sym_BSLASHcitetitle] = ACTIONS(10786), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10789), + [anon_sym_BSLASHciteyear] = ACTIONS(10786), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10789), + [anon_sym_BSLASHcitedate] = ACTIONS(10786), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10789), + [anon_sym_BSLASHciteurl] = ACTIONS(10786), + [anon_sym_BSLASHfullcite] = ACTIONS(10786), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10786), + [anon_sym_BSLASHcitealt] = ACTIONS(10786), + [anon_sym_BSLASHcitealp] = ACTIONS(10786), + [anon_sym_BSLASHcitetext] = ACTIONS(10786), + [anon_sym_BSLASHparencite] = ACTIONS(10786), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10789), + [anon_sym_BSLASHParencite] = ACTIONS(10786), + [anon_sym_BSLASHfootcite] = ACTIONS(10786), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10786), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10786), + [anon_sym_BSLASHtextcite] = ACTIONS(10786), + [anon_sym_BSLASHTextcite] = ACTIONS(10786), + [anon_sym_BSLASHsmartcite] = ACTIONS(10786), + [anon_sym_BSLASHSmartcite] = ACTIONS(10786), + [anon_sym_BSLASHsupercite] = ACTIONS(10786), + [anon_sym_BSLASHautocite] = ACTIONS(10786), + [anon_sym_BSLASHAutocite] = ACTIONS(10786), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10789), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10789), + [anon_sym_BSLASHvolcite] = ACTIONS(10786), + [anon_sym_BSLASHVolcite] = ACTIONS(10786), + [anon_sym_BSLASHpvolcite] = ACTIONS(10786), + [anon_sym_BSLASHPvolcite] = ACTIONS(10786), + [anon_sym_BSLASHfvolcite] = ACTIONS(10786), + [anon_sym_BSLASHftvolcite] = ACTIONS(10786), + [anon_sym_BSLASHsvolcite] = ACTIONS(10786), + [anon_sym_BSLASHSvolcite] = ACTIONS(10786), + [anon_sym_BSLASHtvolcite] = ACTIONS(10786), + [anon_sym_BSLASHTvolcite] = ACTIONS(10786), + [anon_sym_BSLASHavolcite] = ACTIONS(10786), + [anon_sym_BSLASHAvolcite] = ACTIONS(10786), + [anon_sym_BSLASHnotecite] = ACTIONS(10786), + [anon_sym_BSLASHpnotecite] = ACTIONS(10786), + [anon_sym_BSLASHPnotecite] = ACTIONS(10786), + [anon_sym_BSLASHfnotecite] = ACTIONS(10786), + [anon_sym_BSLASHusepackage] = ACTIONS(10792), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10792), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10795), + [anon_sym_BSLASHinclude] = ACTIONS(10798), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10798), + [anon_sym_BSLASHinput] = ACTIONS(10801), + [anon_sym_BSLASHsubfile] = ACTIONS(10801), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10804), + [anon_sym_BSLASHbibliography] = ACTIONS(10807), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10810), + [anon_sym_BSLASHincludesvg] = ACTIONS(10813), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10816), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10819), + [anon_sym_BSLASHimport] = ACTIONS(10822), + [anon_sym_BSLASHsubimport] = ACTIONS(10822), + [anon_sym_BSLASHinputfrom] = ACTIONS(10822), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10822), + [anon_sym_BSLASHincludefrom] = ACTIONS(10822), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10822), + [anon_sym_BSLASHlabel] = ACTIONS(10825), + [anon_sym_BSLASHref] = ACTIONS(10828), + [anon_sym_BSLASHvref] = ACTIONS(10828), + [anon_sym_BSLASHVref] = ACTIONS(10828), + [anon_sym_BSLASHautoref] = ACTIONS(10828), + [anon_sym_BSLASHpageref] = ACTIONS(10828), + [anon_sym_BSLASHcref] = ACTIONS(10828), + [anon_sym_BSLASHCref] = ACTIONS(10828), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10831), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10831), + [anon_sym_BSLASHnamecref] = ACTIONS(10828), + [anon_sym_BSLASHnameCref] = ACTIONS(10828), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10828), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10828), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10828), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10828), + [anon_sym_BSLASHlabelcref] = ACTIONS(10828), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10828), + [anon_sym_BSLASHeqref] = ACTIONS(10834), + [anon_sym_BSLASHcrefrange] = ACTIONS(10837), + [anon_sym_BSLASHCrefrange] = ACTIONS(10837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10840), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10840), + [anon_sym_BSLASHnewlabel] = ACTIONS(10843), + [anon_sym_BSLASHnewcommand] = ACTIONS(10846), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10846), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10846), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10852), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10855), + [anon_sym_BSLASHgls] = ACTIONS(10858), + [anon_sym_BSLASHGls] = ACTIONS(10858), + [anon_sym_BSLASHGLS] = ACTIONS(10858), + [anon_sym_BSLASHglspl] = ACTIONS(10858), + [anon_sym_BSLASHGlspl] = ACTIONS(10858), + [anon_sym_BSLASHGLSpl] = ACTIONS(10858), + [anon_sym_BSLASHglsdisp] = ACTIONS(10858), + [anon_sym_BSLASHglslink] = ACTIONS(10858), + [anon_sym_BSLASHglstext] = ACTIONS(10858), + [anon_sym_BSLASHGlstext] = ACTIONS(10858), + [anon_sym_BSLASHGLStext] = ACTIONS(10858), + [anon_sym_BSLASHglsfirst] = ACTIONS(10858), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10858), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10858), + [anon_sym_BSLASHglsplural] = ACTIONS(10858), + [anon_sym_BSLASHGlsplural] = ACTIONS(10858), + [anon_sym_BSLASHGLSplural] = ACTIONS(10858), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10858), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10858), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10858), + [anon_sym_BSLASHglsname] = ACTIONS(10858), + [anon_sym_BSLASHGlsname] = ACTIONS(10858), + [anon_sym_BSLASHGLSname] = ACTIONS(10858), + [anon_sym_BSLASHglssymbol] = ACTIONS(10858), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10858), + [anon_sym_BSLASHglsdesc] = ACTIONS(10858), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10858), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10858), + [anon_sym_BSLASHglsuseri] = ACTIONS(10858), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10858), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10858), + [anon_sym_BSLASHglsuserii] = ACTIONS(10858), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10858), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10858), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10858), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10858), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10858), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10858), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10858), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10858), + [anon_sym_BSLASHglsuserv] = ACTIONS(10858), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10858), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10858), + [anon_sym_BSLASHglsuservi] = ACTIONS(10858), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10858), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10858), + [anon_sym_BSLASHnewacronym] = ACTIONS(10861), + [anon_sym_BSLASHacrshort] = ACTIONS(10864), + [anon_sym_BSLASHAcrshort] = ACTIONS(10864), + [anon_sym_BSLASHACRshort] = ACTIONS(10864), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10864), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10864), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10864), + [anon_sym_BSLASHacrlong] = ACTIONS(10864), + [anon_sym_BSLASHAcrlong] = ACTIONS(10864), + [anon_sym_BSLASHACRlong] = ACTIONS(10864), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10864), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10864), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10864), + [anon_sym_BSLASHacrfull] = ACTIONS(10864), + [anon_sym_BSLASHAcrfull] = ACTIONS(10864), + [anon_sym_BSLASHACRfull] = ACTIONS(10864), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10864), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10864), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10864), + [anon_sym_BSLASHacs] = ACTIONS(10864), + [anon_sym_BSLASHAcs] = ACTIONS(10864), + [anon_sym_BSLASHacsp] = ACTIONS(10864), + [anon_sym_BSLASHAcsp] = ACTIONS(10864), + [anon_sym_BSLASHacl] = ACTIONS(10864), + [anon_sym_BSLASHAcl] = ACTIONS(10864), + [anon_sym_BSLASHaclp] = ACTIONS(10864), + [anon_sym_BSLASHAclp] = ACTIONS(10864), + [anon_sym_BSLASHacf] = ACTIONS(10864), + [anon_sym_BSLASHAcf] = ACTIONS(10864), + [anon_sym_BSLASHacfp] = ACTIONS(10864), + [anon_sym_BSLASHAcfp] = ACTIONS(10864), + [anon_sym_BSLASHac] = ACTIONS(10864), + [anon_sym_BSLASHAc] = ACTIONS(10864), + [anon_sym_BSLASHacp] = ACTIONS(10864), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10864), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10864), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10864), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10864), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10864), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10864), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10864), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10864), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10864), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10864), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10867), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10867), + [anon_sym_BSLASHcolor] = ACTIONS(10870), + [anon_sym_BSLASHcolorbox] = ACTIONS(10870), + [anon_sym_BSLASHtextcolor] = ACTIONS(10870), + [anon_sym_BSLASHpagecolor] = ACTIONS(10870), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10873), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10876), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10879), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10882), + }, + [442] = { + [sym__simple_content] = STATE(441), + [sym_brace_group] = STATE(441), + [sym_mixed_group] = STATE(441), + [sym_text] = STATE(441), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(441), + [sym_inline_formula] = STATE(441), + [sym_begin] = STATE(112), + [sym_environment] = STATE(441), + [sym_caption] = STATE(441), + [sym_citation] = STATE(441), + [sym_package_include] = STATE(441), + [sym_class_include] = STATE(441), + [sym_latex_include] = STATE(441), + [sym_latex_input] = STATE(441), + [sym_biblatex_include] = STATE(441), + [sym_bibtex_include] = STATE(441), + [sym_graphics_include] = STATE(441), + [sym_svg_include] = STATE(441), + [sym_inkscape_include] = STATE(441), + [sym_verbatim_include] = STATE(441), + [sym_import] = STATE(441), + [sym_label_definition] = STATE(441), + [sym_label_reference] = STATE(441), + [sym_equation_label_reference] = STATE(441), + [sym_label_reference_range] = STATE(441), + [sym_label_number] = STATE(441), + [sym_command_definition] = STATE(441), + [sym_math_operator] = STATE(441), + [sym_glossary_entry_definition] = STATE(441), + [sym_glossary_entry_reference] = STATE(441), + [sym_acronym_definition] = STATE(441), + [sym_acronym_reference] = STATE(441), + [sym_theorem_definition] = STATE(441), + [sym_color_reference] = STATE(441), + [sym_color_definition] = STATE(441), + [sym_color_set_definition] = STATE(441), + [sym_pgf_library_import] = STATE(441), + [sym_tikz_library_import] = STATE(441), + [sym_generic_command] = STATE(441), + [aux_sym_enum_item_repeat1] = STATE(441), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(7652), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(6177), + [aux_sym_paragraph_token1] = ACTIONS(6177), + [aux_sym_subparagraph_token1] = ACTIONS(6177), + [anon_sym_BSLASHitem] = ACTIONS(6177), + [anon_sym_LBRACK] = ACTIONS(7662), + [anon_sym_RBRACK] = ACTIONS(6175), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(7662), + [anon_sym_COMMA] = ACTIONS(7666), + [anon_sym_EQ] = ACTIONS(7666), + [sym_word] = ACTIONS(7666), + [sym_param] = ACTIONS(10885), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7670), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7670), + [anon_sym_DOLLAR] = ACTIONS(7672), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7674), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7676), + [anon_sym_BSLASHcite] = ACTIONS(7678), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCite] = ACTIONS(7678), + [anon_sym_BSLASHnocite] = ACTIONS(7678), + [anon_sym_BSLASHcitet] = ACTIONS(7678), + [anon_sym_BSLASHcitep] = ACTIONS(7678), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteauthor] = ACTIONS(7678), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7678), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitetitle] = ACTIONS(7678), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteyear] = ACTIONS(7678), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitedate] = ACTIONS(7678), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteurl] = ACTIONS(7678), + [anon_sym_BSLASHfullcite] = ACTIONS(7678), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7678), + [anon_sym_BSLASHcitealt] = ACTIONS(7678), + [anon_sym_BSLASHcitealp] = ACTIONS(7678), + [anon_sym_BSLASHcitetext] = ACTIONS(7678), + [anon_sym_BSLASHparencite] = ACTIONS(7678), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHParencite] = ACTIONS(7678), + [anon_sym_BSLASHfootcite] = ACTIONS(7678), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7678), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7678), + [anon_sym_BSLASHtextcite] = ACTIONS(7678), + [anon_sym_BSLASHTextcite] = ACTIONS(7678), + [anon_sym_BSLASHsmartcite] = ACTIONS(7678), + [anon_sym_BSLASHSmartcite] = ACTIONS(7678), + [anon_sym_BSLASHsupercite] = ACTIONS(7678), + [anon_sym_BSLASHautocite] = ACTIONS(7678), + [anon_sym_BSLASHAutocite] = ACTIONS(7678), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHvolcite] = ACTIONS(7678), + [anon_sym_BSLASHVolcite] = ACTIONS(7678), + [anon_sym_BSLASHpvolcite] = ACTIONS(7678), + [anon_sym_BSLASHPvolcite] = ACTIONS(7678), + [anon_sym_BSLASHfvolcite] = ACTIONS(7678), + [anon_sym_BSLASHftvolcite] = ACTIONS(7678), + [anon_sym_BSLASHsvolcite] = ACTIONS(7678), + [anon_sym_BSLASHSvolcite] = ACTIONS(7678), + [anon_sym_BSLASHtvolcite] = ACTIONS(7678), + [anon_sym_BSLASHTvolcite] = ACTIONS(7678), + [anon_sym_BSLASHavolcite] = ACTIONS(7678), + [anon_sym_BSLASHAvolcite] = ACTIONS(7678), + [anon_sym_BSLASHnotecite] = ACTIONS(7678), + [anon_sym_BSLASHpnotecite] = ACTIONS(7678), + [anon_sym_BSLASHPnotecite] = ACTIONS(7678), + [anon_sym_BSLASHfnotecite] = ACTIONS(7678), + [anon_sym_BSLASHusepackage] = ACTIONS(7682), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7684), + [anon_sym_BSLASHinclude] = ACTIONS(7686), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7686), + [anon_sym_BSLASHinput] = ACTIONS(7688), + [anon_sym_BSLASHsubfile] = ACTIONS(7688), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7690), + [anon_sym_BSLASHbibliography] = ACTIONS(7692), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7694), + [anon_sym_BSLASHincludesvg] = ACTIONS(7696), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7698), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7700), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7700), + [anon_sym_BSLASHimport] = ACTIONS(7702), + [anon_sym_BSLASHsubimport] = ACTIONS(7702), + [anon_sym_BSLASHinputfrom] = ACTIONS(7702), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7702), + [anon_sym_BSLASHincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHlabel] = ACTIONS(7704), + [anon_sym_BSLASHref] = ACTIONS(7706), + [anon_sym_BSLASHvref] = ACTIONS(7706), + [anon_sym_BSLASHVref] = ACTIONS(7706), + [anon_sym_BSLASHautoref] = ACTIONS(7706), + [anon_sym_BSLASHpageref] = ACTIONS(7706), + [anon_sym_BSLASHcref] = ACTIONS(7706), + [anon_sym_BSLASHCref] = ACTIONS(7706), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnameCref] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHlabelcref] = ACTIONS(7706), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7706), + [anon_sym_BSLASHeqref] = ACTIONS(7710), + [anon_sym_BSLASHcrefrange] = ACTIONS(7712), + [anon_sym_BSLASHCrefrange] = ACTIONS(7712), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHnewlabel] = ACTIONS(7716), + [anon_sym_BSLASHnewcommand] = ACTIONS(7718), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7720), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7722), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7724), + [anon_sym_BSLASHgls] = ACTIONS(7726), + [anon_sym_BSLASHGls] = ACTIONS(7726), + [anon_sym_BSLASHGLS] = ACTIONS(7726), + [anon_sym_BSLASHglspl] = ACTIONS(7726), + [anon_sym_BSLASHGlspl] = ACTIONS(7726), + [anon_sym_BSLASHGLSpl] = ACTIONS(7726), + [anon_sym_BSLASHglsdisp] = ACTIONS(7726), + [anon_sym_BSLASHglslink] = ACTIONS(7726), + [anon_sym_BSLASHglstext] = ACTIONS(7726), + [anon_sym_BSLASHGlstext] = ACTIONS(7726), + [anon_sym_BSLASHGLStext] = ACTIONS(7726), + [anon_sym_BSLASHglsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7726), + [anon_sym_BSLASHglsplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSplural] = ACTIONS(7726), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHglsname] = ACTIONS(7726), + [anon_sym_BSLASHGlsname] = ACTIONS(7726), + [anon_sym_BSLASHGLSname] = ACTIONS(7726), + [anon_sym_BSLASHglssymbol] = ACTIONS(7726), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7726), + [anon_sym_BSLASHglsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7726), + [anon_sym_BSLASHglsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7726), + [anon_sym_BSLASHglsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7726), + [anon_sym_BSLASHglsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7726), + [anon_sym_BSLASHglsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7726), + [anon_sym_BSLASHnewacronym] = ACTIONS(7728), + [anon_sym_BSLASHacrshort] = ACTIONS(7730), + [anon_sym_BSLASHAcrshort] = ACTIONS(7730), + [anon_sym_BSLASHACRshort] = ACTIONS(7730), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7730), + [anon_sym_BSLASHacrlong] = ACTIONS(7730), + [anon_sym_BSLASHAcrlong] = ACTIONS(7730), + [anon_sym_BSLASHACRlong] = ACTIONS(7730), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7730), + [anon_sym_BSLASHacrfull] = ACTIONS(7730), + [anon_sym_BSLASHAcrfull] = ACTIONS(7730), + [anon_sym_BSLASHACRfull] = ACTIONS(7730), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7730), + [anon_sym_BSLASHacs] = ACTIONS(7730), + [anon_sym_BSLASHAcs] = ACTIONS(7730), + [anon_sym_BSLASHacsp] = ACTIONS(7730), + [anon_sym_BSLASHAcsp] = ACTIONS(7730), + [anon_sym_BSLASHacl] = ACTIONS(7730), + [anon_sym_BSLASHAcl] = ACTIONS(7730), + [anon_sym_BSLASHaclp] = ACTIONS(7730), + [anon_sym_BSLASHAclp] = ACTIONS(7730), + [anon_sym_BSLASHacf] = ACTIONS(7730), + [anon_sym_BSLASHAcf] = ACTIONS(7730), + [anon_sym_BSLASHacfp] = ACTIONS(7730), + [anon_sym_BSLASHAcfp] = ACTIONS(7730), + [anon_sym_BSLASHac] = ACTIONS(7730), + [anon_sym_BSLASHAc] = ACTIONS(7730), + [anon_sym_BSLASHacp] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7732), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7732), + [anon_sym_BSLASHcolor] = ACTIONS(7734), + [anon_sym_BSLASHcolorbox] = ACTIONS(7734), + [anon_sym_BSLASHtextcolor] = ACTIONS(7734), + [anon_sym_BSLASHpagecolor] = ACTIONS(7734), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7736), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7738), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7740), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7742), + }, + [443] = { + [sym__simple_content] = STATE(441), + [sym_brace_group] = STATE(441), + [sym_mixed_group] = STATE(441), + [sym_text] = STATE(441), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(441), + [sym_inline_formula] = STATE(441), + [sym_begin] = STATE(112), + [sym_environment] = STATE(441), + [sym_caption] = STATE(441), + [sym_citation] = STATE(441), + [sym_package_include] = STATE(441), + [sym_class_include] = STATE(441), + [sym_latex_include] = STATE(441), + [sym_latex_input] = STATE(441), + [sym_biblatex_include] = STATE(441), + [sym_bibtex_include] = STATE(441), + [sym_graphics_include] = STATE(441), + [sym_svg_include] = STATE(441), + [sym_inkscape_include] = STATE(441), + [sym_verbatim_include] = STATE(441), + [sym_import] = STATE(441), + [sym_label_definition] = STATE(441), + [sym_label_reference] = STATE(441), + [sym_equation_label_reference] = STATE(441), + [sym_label_reference_range] = STATE(441), + [sym_label_number] = STATE(441), + [sym_command_definition] = STATE(441), + [sym_math_operator] = STATE(441), + [sym_glossary_entry_definition] = STATE(441), + [sym_glossary_entry_reference] = STATE(441), + [sym_acronym_definition] = STATE(441), + [sym_acronym_reference] = STATE(441), + [sym_theorem_definition] = STATE(441), + [sym_color_reference] = STATE(441), + [sym_color_definition] = STATE(441), + [sym_color_set_definition] = STATE(441), + [sym_pgf_library_import] = STATE(441), + [sym_tikz_library_import] = STATE(441), + [sym_generic_command] = STATE(441), + [aux_sym_enum_item_repeat1] = STATE(441), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(7652), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(5600), + [aux_sym_paragraph_token1] = ACTIONS(5600), + [aux_sym_subparagraph_token1] = ACTIONS(5600), + [anon_sym_BSLASHitem] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(7662), + [anon_sym_RBRACK] = ACTIONS(5598), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(7662), + [anon_sym_COMMA] = ACTIONS(7666), + [anon_sym_EQ] = ACTIONS(7666), + [sym_word] = ACTIONS(7666), + [sym_param] = ACTIONS(10885), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7670), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7670), + [anon_sym_DOLLAR] = ACTIONS(7672), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7674), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7676), + [anon_sym_BSLASHcite] = ACTIONS(7678), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCite] = ACTIONS(7678), + [anon_sym_BSLASHnocite] = ACTIONS(7678), + [anon_sym_BSLASHcitet] = ACTIONS(7678), + [anon_sym_BSLASHcitep] = ACTIONS(7678), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteauthor] = ACTIONS(7678), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7678), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitetitle] = ACTIONS(7678), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteyear] = ACTIONS(7678), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitedate] = ACTIONS(7678), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteurl] = ACTIONS(7678), + [anon_sym_BSLASHfullcite] = ACTIONS(7678), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7678), + [anon_sym_BSLASHcitealt] = ACTIONS(7678), + [anon_sym_BSLASHcitealp] = ACTIONS(7678), + [anon_sym_BSLASHcitetext] = ACTIONS(7678), + [anon_sym_BSLASHparencite] = ACTIONS(7678), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHParencite] = ACTIONS(7678), + [anon_sym_BSLASHfootcite] = ACTIONS(7678), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7678), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7678), + [anon_sym_BSLASHtextcite] = ACTIONS(7678), + [anon_sym_BSLASHTextcite] = ACTIONS(7678), + [anon_sym_BSLASHsmartcite] = ACTIONS(7678), + [anon_sym_BSLASHSmartcite] = ACTIONS(7678), + [anon_sym_BSLASHsupercite] = ACTIONS(7678), + [anon_sym_BSLASHautocite] = ACTIONS(7678), + [anon_sym_BSLASHAutocite] = ACTIONS(7678), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHvolcite] = ACTIONS(7678), + [anon_sym_BSLASHVolcite] = ACTIONS(7678), + [anon_sym_BSLASHpvolcite] = ACTIONS(7678), + [anon_sym_BSLASHPvolcite] = ACTIONS(7678), + [anon_sym_BSLASHfvolcite] = ACTIONS(7678), + [anon_sym_BSLASHftvolcite] = ACTIONS(7678), + [anon_sym_BSLASHsvolcite] = ACTIONS(7678), + [anon_sym_BSLASHSvolcite] = ACTIONS(7678), + [anon_sym_BSLASHtvolcite] = ACTIONS(7678), + [anon_sym_BSLASHTvolcite] = ACTIONS(7678), + [anon_sym_BSLASHavolcite] = ACTIONS(7678), + [anon_sym_BSLASHAvolcite] = ACTIONS(7678), + [anon_sym_BSLASHnotecite] = ACTIONS(7678), + [anon_sym_BSLASHpnotecite] = ACTIONS(7678), + [anon_sym_BSLASHPnotecite] = ACTIONS(7678), + [anon_sym_BSLASHfnotecite] = ACTIONS(7678), + [anon_sym_BSLASHusepackage] = ACTIONS(7682), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7684), + [anon_sym_BSLASHinclude] = ACTIONS(7686), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7686), + [anon_sym_BSLASHinput] = ACTIONS(7688), + [anon_sym_BSLASHsubfile] = ACTIONS(7688), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7690), + [anon_sym_BSLASHbibliography] = ACTIONS(7692), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7694), + [anon_sym_BSLASHincludesvg] = ACTIONS(7696), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7698), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7700), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7700), + [anon_sym_BSLASHimport] = ACTIONS(7702), + [anon_sym_BSLASHsubimport] = ACTIONS(7702), + [anon_sym_BSLASHinputfrom] = ACTIONS(7702), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7702), + [anon_sym_BSLASHincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHlabel] = ACTIONS(7704), + [anon_sym_BSLASHref] = ACTIONS(7706), + [anon_sym_BSLASHvref] = ACTIONS(7706), + [anon_sym_BSLASHVref] = ACTIONS(7706), + [anon_sym_BSLASHautoref] = ACTIONS(7706), + [anon_sym_BSLASHpageref] = ACTIONS(7706), + [anon_sym_BSLASHcref] = ACTIONS(7706), + [anon_sym_BSLASHCref] = ACTIONS(7706), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnameCref] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHlabelcref] = ACTIONS(7706), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7706), + [anon_sym_BSLASHeqref] = ACTIONS(7710), + [anon_sym_BSLASHcrefrange] = ACTIONS(7712), + [anon_sym_BSLASHCrefrange] = ACTIONS(7712), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHnewlabel] = ACTIONS(7716), + [anon_sym_BSLASHnewcommand] = ACTIONS(7718), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7720), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7722), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7724), + [anon_sym_BSLASHgls] = ACTIONS(7726), + [anon_sym_BSLASHGls] = ACTIONS(7726), + [anon_sym_BSLASHGLS] = ACTIONS(7726), + [anon_sym_BSLASHglspl] = ACTIONS(7726), + [anon_sym_BSLASHGlspl] = ACTIONS(7726), + [anon_sym_BSLASHGLSpl] = ACTIONS(7726), + [anon_sym_BSLASHglsdisp] = ACTIONS(7726), + [anon_sym_BSLASHglslink] = ACTIONS(7726), + [anon_sym_BSLASHglstext] = ACTIONS(7726), + [anon_sym_BSLASHGlstext] = ACTIONS(7726), + [anon_sym_BSLASHGLStext] = ACTIONS(7726), + [anon_sym_BSLASHglsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7726), + [anon_sym_BSLASHglsplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSplural] = ACTIONS(7726), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHglsname] = ACTIONS(7726), + [anon_sym_BSLASHGlsname] = ACTIONS(7726), + [anon_sym_BSLASHGLSname] = ACTIONS(7726), + [anon_sym_BSLASHglssymbol] = ACTIONS(7726), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7726), + [anon_sym_BSLASHglsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7726), + [anon_sym_BSLASHglsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7726), + [anon_sym_BSLASHglsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7726), + [anon_sym_BSLASHglsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7726), + [anon_sym_BSLASHglsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7726), + [anon_sym_BSLASHnewacronym] = ACTIONS(7728), + [anon_sym_BSLASHacrshort] = ACTIONS(7730), + [anon_sym_BSLASHAcrshort] = ACTIONS(7730), + [anon_sym_BSLASHACRshort] = ACTIONS(7730), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7730), + [anon_sym_BSLASHacrlong] = ACTIONS(7730), + [anon_sym_BSLASHAcrlong] = ACTIONS(7730), + [anon_sym_BSLASHACRlong] = ACTIONS(7730), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7730), + [anon_sym_BSLASHacrfull] = ACTIONS(7730), + [anon_sym_BSLASHAcrfull] = ACTIONS(7730), + [anon_sym_BSLASHACRfull] = ACTIONS(7730), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7730), + [anon_sym_BSLASHacs] = ACTIONS(7730), + [anon_sym_BSLASHAcs] = ACTIONS(7730), + [anon_sym_BSLASHacsp] = ACTIONS(7730), + [anon_sym_BSLASHAcsp] = ACTIONS(7730), + [anon_sym_BSLASHacl] = ACTIONS(7730), + [anon_sym_BSLASHAcl] = ACTIONS(7730), + [anon_sym_BSLASHaclp] = ACTIONS(7730), + [anon_sym_BSLASHAclp] = ACTIONS(7730), + [anon_sym_BSLASHacf] = ACTIONS(7730), + [anon_sym_BSLASHAcf] = ACTIONS(7730), + [anon_sym_BSLASHacfp] = ACTIONS(7730), + [anon_sym_BSLASHAcfp] = ACTIONS(7730), + [anon_sym_BSLASHac] = ACTIONS(7730), + [anon_sym_BSLASHAc] = ACTIONS(7730), + [anon_sym_BSLASHacp] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7732), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7732), + [anon_sym_BSLASHcolor] = ACTIONS(7734), + [anon_sym_BSLASHcolorbox] = ACTIONS(7734), + [anon_sym_BSLASHtextcolor] = ACTIONS(7734), + [anon_sym_BSLASHpagecolor] = ACTIONS(7734), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7736), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7738), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7740), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7742), + }, + [444] = { + [sym__simple_content] = STATE(444), + [sym_enum_item] = STATE(444), + [sym_brace_group] = STATE(444), + [sym_mixed_group] = STATE(444), + [sym_text] = STATE(444), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(444), + [sym_inline_formula] = STATE(444), + [sym_begin] = STATE(99), + [sym_environment] = STATE(444), + [sym_caption] = STATE(444), + [sym_citation] = STATE(444), + [sym_package_include] = STATE(444), + [sym_class_include] = STATE(444), + [sym_latex_include] = STATE(444), + [sym_latex_input] = STATE(444), + [sym_biblatex_include] = STATE(444), + [sym_bibtex_include] = STATE(444), + [sym_graphics_include] = STATE(444), + [sym_svg_include] = STATE(444), + [sym_inkscape_include] = STATE(444), + [sym_verbatim_include] = STATE(444), + [sym_import] = STATE(444), + [sym_label_definition] = STATE(444), + [sym_label_reference] = STATE(444), + [sym_equation_label_reference] = STATE(444), + [sym_label_reference_range] = STATE(444), + [sym_label_number] = STATE(444), + [sym_command_definition] = STATE(444), + [sym_math_operator] = STATE(444), + [sym_glossary_entry_definition] = STATE(444), + [sym_glossary_entry_reference] = STATE(444), + [sym_acronym_definition] = STATE(444), + [sym_acronym_reference] = STATE(444), + [sym_theorem_definition] = STATE(444), + [sym_color_reference] = STATE(444), + [sym_color_definition] = STATE(444), + [sym_color_set_definition] = STATE(444), + [sym_pgf_library_import] = STATE(444), + [sym_tikz_library_import] = STATE(444), + [sym_generic_command] = STATE(444), + [aux_sym_subparagraph_repeat1] = STATE(444), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(10887), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(5453), + [aux_sym_subparagraph_token1] = ACTIONS(5453), + [anon_sym_BSLASHitem] = ACTIONS(10890), + [anon_sym_LBRACK] = ACTIONS(10893), + [anon_sym_RBRACK] = ACTIONS(5448), + [anon_sym_LBRACE] = ACTIONS(10896), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(10893), + [anon_sym_COMMA] = ACTIONS(10899), + [anon_sym_EQ] = ACTIONS(10899), + [sym_word] = ACTIONS(10899), + [sym_param] = ACTIONS(10902), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10905), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10905), + [anon_sym_DOLLAR] = ACTIONS(10908), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10911), + [anon_sym_BSLASHbegin] = ACTIONS(5479), + [anon_sym_BSLASHcaption] = ACTIONS(10914), + [anon_sym_BSLASHcite] = ACTIONS(10917), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10920), + [anon_sym_BSLASHCite] = ACTIONS(10917), + [anon_sym_BSLASHnocite] = ACTIONS(10917), + [anon_sym_BSLASHcitet] = ACTIONS(10917), + [anon_sym_BSLASHcitep] = ACTIONS(10917), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10920), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10920), + [anon_sym_BSLASHciteauthor] = ACTIONS(10917), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10920), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10917), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10920), + [anon_sym_BSLASHcitetitle] = ACTIONS(10917), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10920), + [anon_sym_BSLASHciteyear] = ACTIONS(10917), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10920), + [anon_sym_BSLASHcitedate] = ACTIONS(10917), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10920), + [anon_sym_BSLASHciteurl] = ACTIONS(10917), + [anon_sym_BSLASHfullcite] = ACTIONS(10917), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10917), + [anon_sym_BSLASHcitealt] = ACTIONS(10917), + [anon_sym_BSLASHcitealp] = ACTIONS(10917), + [anon_sym_BSLASHcitetext] = ACTIONS(10917), + [anon_sym_BSLASHparencite] = ACTIONS(10917), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10920), + [anon_sym_BSLASHParencite] = ACTIONS(10917), + [anon_sym_BSLASHfootcite] = ACTIONS(10917), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10917), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10917), + [anon_sym_BSLASHtextcite] = ACTIONS(10917), + [anon_sym_BSLASHTextcite] = ACTIONS(10917), + [anon_sym_BSLASHsmartcite] = ACTIONS(10917), + [anon_sym_BSLASHSmartcite] = ACTIONS(10917), + [anon_sym_BSLASHsupercite] = ACTIONS(10917), + [anon_sym_BSLASHautocite] = ACTIONS(10917), + [anon_sym_BSLASHAutocite] = ACTIONS(10917), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10920), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10920), + [anon_sym_BSLASHvolcite] = ACTIONS(10917), + [anon_sym_BSLASHVolcite] = ACTIONS(10917), + [anon_sym_BSLASHpvolcite] = ACTIONS(10917), + [anon_sym_BSLASHPvolcite] = ACTIONS(10917), + [anon_sym_BSLASHfvolcite] = ACTIONS(10917), + [anon_sym_BSLASHftvolcite] = ACTIONS(10917), + [anon_sym_BSLASHsvolcite] = ACTIONS(10917), + [anon_sym_BSLASHSvolcite] = ACTIONS(10917), + [anon_sym_BSLASHtvolcite] = ACTIONS(10917), + [anon_sym_BSLASHTvolcite] = ACTIONS(10917), + [anon_sym_BSLASHavolcite] = ACTIONS(10917), + [anon_sym_BSLASHAvolcite] = ACTIONS(10917), + [anon_sym_BSLASHnotecite] = ACTIONS(10917), + [anon_sym_BSLASHpnotecite] = ACTIONS(10917), + [anon_sym_BSLASHPnotecite] = ACTIONS(10917), + [anon_sym_BSLASHfnotecite] = ACTIONS(10917), + [anon_sym_BSLASHusepackage] = ACTIONS(10923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10926), + [anon_sym_BSLASHinclude] = ACTIONS(10929), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10929), + [anon_sym_BSLASHinput] = ACTIONS(10932), + [anon_sym_BSLASHsubfile] = ACTIONS(10932), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10935), + [anon_sym_BSLASHbibliography] = ACTIONS(10938), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10941), + [anon_sym_BSLASHincludesvg] = ACTIONS(10944), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10950), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10950), + [anon_sym_BSLASHimport] = ACTIONS(10953), + [anon_sym_BSLASHsubimport] = ACTIONS(10953), + [anon_sym_BSLASHinputfrom] = ACTIONS(10953), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10953), + [anon_sym_BSLASHincludefrom] = ACTIONS(10953), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10953), + [anon_sym_BSLASHlabel] = ACTIONS(10956), + [anon_sym_BSLASHref] = ACTIONS(10959), + [anon_sym_BSLASHvref] = ACTIONS(10959), + [anon_sym_BSLASHVref] = ACTIONS(10959), + [anon_sym_BSLASHautoref] = ACTIONS(10959), + [anon_sym_BSLASHpageref] = ACTIONS(10959), + [anon_sym_BSLASHcref] = ACTIONS(10959), + [anon_sym_BSLASHCref] = ACTIONS(10959), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10962), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10962), + [anon_sym_BSLASHnamecref] = ACTIONS(10959), + [anon_sym_BSLASHnameCref] = ACTIONS(10959), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10959), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10959), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10959), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10959), + [anon_sym_BSLASHlabelcref] = ACTIONS(10959), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10959), + [anon_sym_BSLASHeqref] = ACTIONS(10965), + [anon_sym_BSLASHcrefrange] = ACTIONS(10968), + [anon_sym_BSLASHCrefrange] = ACTIONS(10968), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10971), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10971), + [anon_sym_BSLASHnewlabel] = ACTIONS(10974), + [anon_sym_BSLASHnewcommand] = ACTIONS(10977), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10977), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10977), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10980), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10986), + [anon_sym_BSLASHgls] = ACTIONS(10989), + [anon_sym_BSLASHGls] = ACTIONS(10989), + [anon_sym_BSLASHGLS] = ACTIONS(10989), + [anon_sym_BSLASHglspl] = ACTIONS(10989), + [anon_sym_BSLASHGlspl] = ACTIONS(10989), + [anon_sym_BSLASHGLSpl] = ACTIONS(10989), + [anon_sym_BSLASHglsdisp] = ACTIONS(10989), + [anon_sym_BSLASHglslink] = ACTIONS(10989), + [anon_sym_BSLASHglstext] = ACTIONS(10989), + [anon_sym_BSLASHGlstext] = ACTIONS(10989), + [anon_sym_BSLASHGLStext] = ACTIONS(10989), + [anon_sym_BSLASHglsfirst] = ACTIONS(10989), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10989), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10989), + [anon_sym_BSLASHglsplural] = ACTIONS(10989), + [anon_sym_BSLASHGlsplural] = ACTIONS(10989), + [anon_sym_BSLASHGLSplural] = ACTIONS(10989), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10989), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10989), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10989), + [anon_sym_BSLASHglsname] = ACTIONS(10989), + [anon_sym_BSLASHGlsname] = ACTIONS(10989), + [anon_sym_BSLASHGLSname] = ACTIONS(10989), + [anon_sym_BSLASHglssymbol] = ACTIONS(10989), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10989), + [anon_sym_BSLASHglsdesc] = ACTIONS(10989), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10989), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10989), + [anon_sym_BSLASHglsuseri] = ACTIONS(10989), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10989), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10989), + [anon_sym_BSLASHglsuserii] = ACTIONS(10989), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10989), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10989), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10989), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10989), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10989), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10989), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10989), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10989), + [anon_sym_BSLASHglsuserv] = ACTIONS(10989), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10989), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10989), + [anon_sym_BSLASHglsuservi] = ACTIONS(10989), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10989), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10989), + [anon_sym_BSLASHnewacronym] = ACTIONS(10992), + [anon_sym_BSLASHacrshort] = ACTIONS(10995), + [anon_sym_BSLASHAcrshort] = ACTIONS(10995), + [anon_sym_BSLASHACRshort] = ACTIONS(10995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10995), + [anon_sym_BSLASHacrlong] = ACTIONS(10995), + [anon_sym_BSLASHAcrlong] = ACTIONS(10995), + [anon_sym_BSLASHACRlong] = ACTIONS(10995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10995), + [anon_sym_BSLASHacrfull] = ACTIONS(10995), + [anon_sym_BSLASHAcrfull] = ACTIONS(10995), + [anon_sym_BSLASHACRfull] = ACTIONS(10995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10995), + [anon_sym_BSLASHacs] = ACTIONS(10995), + [anon_sym_BSLASHAcs] = ACTIONS(10995), + [anon_sym_BSLASHacsp] = ACTIONS(10995), + [anon_sym_BSLASHAcsp] = ACTIONS(10995), + [anon_sym_BSLASHacl] = ACTIONS(10995), + [anon_sym_BSLASHAcl] = ACTIONS(10995), + [anon_sym_BSLASHaclp] = ACTIONS(10995), + [anon_sym_BSLASHAclp] = ACTIONS(10995), + [anon_sym_BSLASHacf] = ACTIONS(10995), + [anon_sym_BSLASHAcf] = ACTIONS(10995), + [anon_sym_BSLASHacfp] = ACTIONS(10995), + [anon_sym_BSLASHAcfp] = ACTIONS(10995), + [anon_sym_BSLASHac] = ACTIONS(10995), + [anon_sym_BSLASHAc] = ACTIONS(10995), + [anon_sym_BSLASHacp] = ACTIONS(10995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10998), + [anon_sym_BSLASHcolor] = ACTIONS(11001), + [anon_sym_BSLASHcolorbox] = ACTIONS(11001), + [anon_sym_BSLASHtextcolor] = ACTIONS(11001), + [anon_sym_BSLASHpagecolor] = ACTIONS(11001), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11004), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11010), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11013), + }, + [445] = { + [sym__simple_content] = STATE(443), + [sym_brace_group] = STATE(443), + [sym_mixed_group] = STATE(443), + [sym_text] = STATE(443), + [sym__text_fragment] = STATE(1143), + [sym_displayed_equation] = STATE(443), + [sym_inline_formula] = STATE(443), + [sym_begin] = STATE(112), + [sym_environment] = STATE(443), + [sym_caption] = STATE(443), + [sym_citation] = STATE(443), + [sym_package_include] = STATE(443), + [sym_class_include] = STATE(443), + [sym_latex_include] = STATE(443), + [sym_latex_input] = STATE(443), + [sym_biblatex_include] = STATE(443), + [sym_bibtex_include] = STATE(443), + [sym_graphics_include] = STATE(443), + [sym_svg_include] = STATE(443), + [sym_inkscape_include] = STATE(443), + [sym_verbatim_include] = STATE(443), + [sym_import] = STATE(443), + [sym_label_definition] = STATE(443), + [sym_label_reference] = STATE(443), + [sym_equation_label_reference] = STATE(443), + [sym_label_reference_range] = STATE(443), + [sym_label_number] = STATE(443), + [sym_command_definition] = STATE(443), + [sym_math_operator] = STATE(443), + [sym_glossary_entry_definition] = STATE(443), + [sym_glossary_entry_reference] = STATE(443), + [sym_acronym_definition] = STATE(443), + [sym_acronym_reference] = STATE(443), + [sym_theorem_definition] = STATE(443), + [sym_color_reference] = STATE(443), + [sym_color_definition] = STATE(443), + [sym_color_set_definition] = STATE(443), + [sym_pgf_library_import] = STATE(443), + [sym_tikz_library_import] = STATE(443), + [sym_generic_command] = STATE(443), + [aux_sym_enum_item_repeat1] = STATE(443), + [aux_sym_text_repeat1] = STATE(1143), + [sym_generic_command_name] = ACTIONS(7652), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(6034), + [aux_sym_paragraph_token1] = ACTIONS(6034), + [aux_sym_subparagraph_token1] = ACTIONS(6034), + [anon_sym_BSLASHitem] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(11016), + [anon_sym_RBRACK] = ACTIONS(6032), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(7662), + [anon_sym_COMMA] = ACTIONS(7666), + [anon_sym_EQ] = ACTIONS(7666), + [sym_word] = ACTIONS(7666), + [sym_param] = ACTIONS(11018), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(7670), + [anon_sym_BSLASH_LBRACK] = ACTIONS(7670), + [anon_sym_DOLLAR] = ACTIONS(7672), + [anon_sym_BSLASH_LPAREN] = ACTIONS(7674), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(7676), + [anon_sym_BSLASHcite] = ACTIONS(7678), + [anon_sym_BSLASHcite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCite] = ACTIONS(7678), + [anon_sym_BSLASHnocite] = ACTIONS(7678), + [anon_sym_BSLASHcitet] = ACTIONS(7678), + [anon_sym_BSLASHcitep] = ACTIONS(7678), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteauthor] = ACTIONS(7678), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHCiteauthor] = ACTIONS(7678), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitetitle] = ACTIONS(7678), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteyear] = ACTIONS(7678), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(7680), + [anon_sym_BSLASHcitedate] = ACTIONS(7678), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(7680), + [anon_sym_BSLASHciteurl] = ACTIONS(7678), + [anon_sym_BSLASHfullcite] = ACTIONS(7678), + [anon_sym_BSLASHciteyearpar] = ACTIONS(7678), + [anon_sym_BSLASHcitealt] = ACTIONS(7678), + [anon_sym_BSLASHcitealp] = ACTIONS(7678), + [anon_sym_BSLASHcitetext] = ACTIONS(7678), + [anon_sym_BSLASHparencite] = ACTIONS(7678), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHParencite] = ACTIONS(7678), + [anon_sym_BSLASHfootcite] = ACTIONS(7678), + [anon_sym_BSLASHfootfullcite] = ACTIONS(7678), + [anon_sym_BSLASHfootcitetext] = ACTIONS(7678), + [anon_sym_BSLASHtextcite] = ACTIONS(7678), + [anon_sym_BSLASHTextcite] = ACTIONS(7678), + [anon_sym_BSLASHsmartcite] = ACTIONS(7678), + [anon_sym_BSLASHSmartcite] = ACTIONS(7678), + [anon_sym_BSLASHsupercite] = ACTIONS(7678), + [anon_sym_BSLASHautocite] = ACTIONS(7678), + [anon_sym_BSLASHAutocite] = ACTIONS(7678), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(7680), + [anon_sym_BSLASHvolcite] = ACTIONS(7678), + [anon_sym_BSLASHVolcite] = ACTIONS(7678), + [anon_sym_BSLASHpvolcite] = ACTIONS(7678), + [anon_sym_BSLASHPvolcite] = ACTIONS(7678), + [anon_sym_BSLASHfvolcite] = ACTIONS(7678), + [anon_sym_BSLASHftvolcite] = ACTIONS(7678), + [anon_sym_BSLASHsvolcite] = ACTIONS(7678), + [anon_sym_BSLASHSvolcite] = ACTIONS(7678), + [anon_sym_BSLASHtvolcite] = ACTIONS(7678), + [anon_sym_BSLASHTvolcite] = ACTIONS(7678), + [anon_sym_BSLASHavolcite] = ACTIONS(7678), + [anon_sym_BSLASHAvolcite] = ACTIONS(7678), + [anon_sym_BSLASHnotecite] = ACTIONS(7678), + [anon_sym_BSLASHpnotecite] = ACTIONS(7678), + [anon_sym_BSLASHPnotecite] = ACTIONS(7678), + [anon_sym_BSLASHfnotecite] = ACTIONS(7678), + [anon_sym_BSLASHusepackage] = ACTIONS(7682), + [anon_sym_BSLASHRequirePackage] = ACTIONS(7682), + [anon_sym_BSLASHdocumentclass] = ACTIONS(7684), + [anon_sym_BSLASHinclude] = ACTIONS(7686), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(7686), + [anon_sym_BSLASHinput] = ACTIONS(7688), + [anon_sym_BSLASHsubfile] = ACTIONS(7688), + [anon_sym_BSLASHaddbibresource] = ACTIONS(7690), + [anon_sym_BSLASHbibliography] = ACTIONS(7692), + [anon_sym_BSLASHincludegraphics] = ACTIONS(7694), + [anon_sym_BSLASHincludesvg] = ACTIONS(7696), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(7698), + [anon_sym_BSLASHverbatiminput] = ACTIONS(7700), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(7700), + [anon_sym_BSLASHimport] = ACTIONS(7702), + [anon_sym_BSLASHsubimport] = ACTIONS(7702), + [anon_sym_BSLASHinputfrom] = ACTIONS(7702), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(7702), + [anon_sym_BSLASHincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(7702), + [anon_sym_BSLASHlabel] = ACTIONS(7704), + [anon_sym_BSLASHref] = ACTIONS(7706), + [anon_sym_BSLASHvref] = ACTIONS(7706), + [anon_sym_BSLASHVref] = ACTIONS(7706), + [anon_sym_BSLASHautoref] = ACTIONS(7706), + [anon_sym_BSLASHpageref] = ACTIONS(7706), + [anon_sym_BSLASHcref] = ACTIONS(7706), + [anon_sym_BSLASHCref] = ACTIONS(7706), + [anon_sym_BSLASHcref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHCref_STAR] = ACTIONS(7708), + [anon_sym_BSLASHnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnameCref] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecref] = ACTIONS(7706), + [anon_sym_BSLASHnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHnameCrefs] = ACTIONS(7706), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(7706), + [anon_sym_BSLASHlabelcref] = ACTIONS(7706), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(7706), + [anon_sym_BSLASHeqref] = ACTIONS(7710), + [anon_sym_BSLASHcrefrange] = ACTIONS(7712), + [anon_sym_BSLASHCrefrange] = ACTIONS(7712), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(7714), + [anon_sym_BSLASHnewlabel] = ACTIONS(7716), + [anon_sym_BSLASHnewcommand] = ACTIONS(7718), + [anon_sym_BSLASHrenewcommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(7718), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(7720), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(7722), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(7724), + [anon_sym_BSLASHgls] = ACTIONS(7726), + [anon_sym_BSLASHGls] = ACTIONS(7726), + [anon_sym_BSLASHGLS] = ACTIONS(7726), + [anon_sym_BSLASHglspl] = ACTIONS(7726), + [anon_sym_BSLASHGlspl] = ACTIONS(7726), + [anon_sym_BSLASHGLSpl] = ACTIONS(7726), + [anon_sym_BSLASHglsdisp] = ACTIONS(7726), + [anon_sym_BSLASHglslink] = ACTIONS(7726), + [anon_sym_BSLASHglstext] = ACTIONS(7726), + [anon_sym_BSLASHGlstext] = ACTIONS(7726), + [anon_sym_BSLASHGLStext] = ACTIONS(7726), + [anon_sym_BSLASHglsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirst] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirst] = ACTIONS(7726), + [anon_sym_BSLASHglsplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSplural] = ACTIONS(7726), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(7726), + [anon_sym_BSLASHglsname] = ACTIONS(7726), + [anon_sym_BSLASHGlsname] = ACTIONS(7726), + [anon_sym_BSLASHGLSname] = ACTIONS(7726), + [anon_sym_BSLASHglssymbol] = ACTIONS(7726), + [anon_sym_BSLASHGlssymbol] = ACTIONS(7726), + [anon_sym_BSLASHglsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGlsdesc] = ACTIONS(7726), + [anon_sym_BSLASHGLSdesc] = ACTIONS(7726), + [anon_sym_BSLASHglsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseri] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseri] = ACTIONS(7726), + [anon_sym_BSLASHglsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(7726), + [anon_sym_BSLASHglsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(7726), + [anon_sym_BSLASHglsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGlsuserv] = ACTIONS(7726), + [anon_sym_BSLASHGLSuserv] = ACTIONS(7726), + [anon_sym_BSLASHglsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGlsuservi] = ACTIONS(7726), + [anon_sym_BSLASHGLSuservi] = ACTIONS(7726), + [anon_sym_BSLASHnewacronym] = ACTIONS(7728), + [anon_sym_BSLASHacrshort] = ACTIONS(7730), + [anon_sym_BSLASHAcrshort] = ACTIONS(7730), + [anon_sym_BSLASHACRshort] = ACTIONS(7730), + [anon_sym_BSLASHacrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(7730), + [anon_sym_BSLASHACRshortpl] = ACTIONS(7730), + [anon_sym_BSLASHacrlong] = ACTIONS(7730), + [anon_sym_BSLASHAcrlong] = ACTIONS(7730), + [anon_sym_BSLASHACRlong] = ACTIONS(7730), + [anon_sym_BSLASHacrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(7730), + [anon_sym_BSLASHACRlongpl] = ACTIONS(7730), + [anon_sym_BSLASHacrfull] = ACTIONS(7730), + [anon_sym_BSLASHAcrfull] = ACTIONS(7730), + [anon_sym_BSLASHACRfull] = ACTIONS(7730), + [anon_sym_BSLASHacrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(7730), + [anon_sym_BSLASHACRfullpl] = ACTIONS(7730), + [anon_sym_BSLASHacs] = ACTIONS(7730), + [anon_sym_BSLASHAcs] = ACTIONS(7730), + [anon_sym_BSLASHacsp] = ACTIONS(7730), + [anon_sym_BSLASHAcsp] = ACTIONS(7730), + [anon_sym_BSLASHacl] = ACTIONS(7730), + [anon_sym_BSLASHAcl] = ACTIONS(7730), + [anon_sym_BSLASHaclp] = ACTIONS(7730), + [anon_sym_BSLASHAclp] = ACTIONS(7730), + [anon_sym_BSLASHacf] = ACTIONS(7730), + [anon_sym_BSLASHAcf] = ACTIONS(7730), + [anon_sym_BSLASHacfp] = ACTIONS(7730), + [anon_sym_BSLASHAcfp] = ACTIONS(7730), + [anon_sym_BSLASHac] = ACTIONS(7730), + [anon_sym_BSLASHAc] = ACTIONS(7730), + [anon_sym_BSLASHacp] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(7730), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(7730), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(7730), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(7730), + [anon_sym_BSLASHnewtheorem] = ACTIONS(7732), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(7732), + [anon_sym_BSLASHcolor] = ACTIONS(7734), + [anon_sym_BSLASHcolorbox] = ACTIONS(7734), + [anon_sym_BSLASHtextcolor] = ACTIONS(7734), + [anon_sym_BSLASHpagecolor] = ACTIONS(7734), + [anon_sym_BSLASHdefinecolor] = ACTIONS(7736), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(7738), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(7740), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(7742), + }, + [446] = { + [sym__simple_content] = STATE(447), + [sym_enum_item] = STATE(447), + [sym_brace_group] = STATE(447), + [sym_mixed_group] = STATE(447), + [sym_text] = STATE(447), + [sym__text_fragment] = STATE(1388), + [sym_displayed_equation] = STATE(447), + [sym_inline_formula] = STATE(447), + [sym_begin] = STATE(83), + [sym_environment] = STATE(447), + [sym_caption] = STATE(447), + [sym_citation] = STATE(447), + [sym_package_include] = STATE(447), + [sym_class_include] = STATE(447), + [sym_latex_include] = STATE(447), + [sym_latex_input] = STATE(447), + [sym_biblatex_include] = STATE(447), + [sym_bibtex_include] = STATE(447), + [sym_graphics_include] = STATE(447), + [sym_svg_include] = STATE(447), + [sym_inkscape_include] = STATE(447), + [sym_verbatim_include] = STATE(447), + [sym_import] = STATE(447), + [sym_label_definition] = STATE(447), + [sym_label_reference] = STATE(447), + [sym_equation_label_reference] = STATE(447), + [sym_label_reference_range] = STATE(447), + [sym_label_number] = STATE(447), + [sym_command_definition] = STATE(447), + [sym_math_operator] = STATE(447), + [sym_glossary_entry_definition] = STATE(447), + [sym_glossary_entry_reference] = STATE(447), + [sym_acronym_definition] = STATE(447), + [sym_acronym_reference] = STATE(447), + [sym_theorem_definition] = STATE(447), + [sym_color_reference] = STATE(447), + [sym_color_definition] = STATE(447), + [sym_color_set_definition] = STATE(447), + [sym_pgf_library_import] = STATE(447), + [sym_tikz_library_import] = STATE(447), + [sym_generic_command] = STATE(447), + [aux_sym_subparagraph_repeat1] = STATE(447), + [aux_sym_text_repeat1] = STATE(1388), + [sym_generic_command_name] = ACTIONS(10663), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(4879), + [anon_sym_BSLASHitem] = ACTIONS(10667), + [anon_sym_LBRACK] = ACTIONS(10669), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(10671), + [anon_sym_RBRACE] = ACTIONS(4877), + [anon_sym_LPAREN] = ACTIONS(10669), + [anon_sym_COMMA] = ACTIONS(10673), + [anon_sym_EQ] = ACTIONS(10673), + [sym_word] = ACTIONS(10673), + [sym_param] = ACTIONS(11020), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10677), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10677), + [anon_sym_DOLLAR] = ACTIONS(10679), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10681), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(10683), + [anon_sym_BSLASHcite] = ACTIONS(10685), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCite] = ACTIONS(10685), + [anon_sym_BSLASHnocite] = ACTIONS(10685), + [anon_sym_BSLASHcitet] = ACTIONS(10685), + [anon_sym_BSLASHcitep] = ACTIONS(10685), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteauthor] = ACTIONS(10685), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10685), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitetitle] = ACTIONS(10685), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteyear] = ACTIONS(10685), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitedate] = ACTIONS(10685), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteurl] = ACTIONS(10685), + [anon_sym_BSLASHfullcite] = ACTIONS(10685), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10685), + [anon_sym_BSLASHcitealt] = ACTIONS(10685), + [anon_sym_BSLASHcitealp] = ACTIONS(10685), + [anon_sym_BSLASHcitetext] = ACTIONS(10685), + [anon_sym_BSLASHparencite] = ACTIONS(10685), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHParencite] = ACTIONS(10685), + [anon_sym_BSLASHfootcite] = ACTIONS(10685), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10685), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10685), + [anon_sym_BSLASHtextcite] = ACTIONS(10685), + [anon_sym_BSLASHTextcite] = ACTIONS(10685), + [anon_sym_BSLASHsmartcite] = ACTIONS(10685), + [anon_sym_BSLASHSmartcite] = ACTIONS(10685), + [anon_sym_BSLASHsupercite] = ACTIONS(10685), + [anon_sym_BSLASHautocite] = ACTIONS(10685), + [anon_sym_BSLASHAutocite] = ACTIONS(10685), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHvolcite] = ACTIONS(10685), + [anon_sym_BSLASHVolcite] = ACTIONS(10685), + [anon_sym_BSLASHpvolcite] = ACTIONS(10685), + [anon_sym_BSLASHPvolcite] = ACTIONS(10685), + [anon_sym_BSLASHfvolcite] = ACTIONS(10685), + [anon_sym_BSLASHftvolcite] = ACTIONS(10685), + [anon_sym_BSLASHsvolcite] = ACTIONS(10685), + [anon_sym_BSLASHSvolcite] = ACTIONS(10685), + [anon_sym_BSLASHtvolcite] = ACTIONS(10685), + [anon_sym_BSLASHTvolcite] = ACTIONS(10685), + [anon_sym_BSLASHavolcite] = ACTIONS(10685), + [anon_sym_BSLASHAvolcite] = ACTIONS(10685), + [anon_sym_BSLASHnotecite] = ACTIONS(10685), + [anon_sym_BSLASHpnotecite] = ACTIONS(10685), + [anon_sym_BSLASHPnotecite] = ACTIONS(10685), + [anon_sym_BSLASHfnotecite] = ACTIONS(10685), + [anon_sym_BSLASHusepackage] = ACTIONS(10689), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10689), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10691), + [anon_sym_BSLASHinclude] = ACTIONS(10693), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10693), + [anon_sym_BSLASHinput] = ACTIONS(10695), + [anon_sym_BSLASHsubfile] = ACTIONS(10695), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10697), + [anon_sym_BSLASHbibliography] = ACTIONS(10699), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10701), + [anon_sym_BSLASHincludesvg] = ACTIONS(10703), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10705), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10707), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10707), + [anon_sym_BSLASHimport] = ACTIONS(10709), + [anon_sym_BSLASHsubimport] = ACTIONS(10709), + [anon_sym_BSLASHinputfrom] = ACTIONS(10709), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10709), + [anon_sym_BSLASHincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHlabel] = ACTIONS(10711), + [anon_sym_BSLASHref] = ACTIONS(10713), + [anon_sym_BSLASHvref] = ACTIONS(10713), + [anon_sym_BSLASHVref] = ACTIONS(10713), + [anon_sym_BSLASHautoref] = ACTIONS(10713), + [anon_sym_BSLASHpageref] = ACTIONS(10713), + [anon_sym_BSLASHcref] = ACTIONS(10713), + [anon_sym_BSLASHCref] = ACTIONS(10713), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnameCref] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHlabelcref] = ACTIONS(10713), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10713), + [anon_sym_BSLASHeqref] = ACTIONS(10717), + [anon_sym_BSLASHcrefrange] = ACTIONS(10719), + [anon_sym_BSLASHCrefrange] = ACTIONS(10719), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHnewlabel] = ACTIONS(10723), + [anon_sym_BSLASHnewcommand] = ACTIONS(10725), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10727), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10729), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10731), + [anon_sym_BSLASHgls] = ACTIONS(10733), + [anon_sym_BSLASHGls] = ACTIONS(10733), + [anon_sym_BSLASHGLS] = ACTIONS(10733), + [anon_sym_BSLASHglspl] = ACTIONS(10733), + [anon_sym_BSLASHGlspl] = ACTIONS(10733), + [anon_sym_BSLASHGLSpl] = ACTIONS(10733), + [anon_sym_BSLASHglsdisp] = ACTIONS(10733), + [anon_sym_BSLASHglslink] = ACTIONS(10733), + [anon_sym_BSLASHglstext] = ACTIONS(10733), + [anon_sym_BSLASHGlstext] = ACTIONS(10733), + [anon_sym_BSLASHGLStext] = ACTIONS(10733), + [anon_sym_BSLASHglsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10733), + [anon_sym_BSLASHglsplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSplural] = ACTIONS(10733), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHglsname] = ACTIONS(10733), + [anon_sym_BSLASHGlsname] = ACTIONS(10733), + [anon_sym_BSLASHGLSname] = ACTIONS(10733), + [anon_sym_BSLASHglssymbol] = ACTIONS(10733), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10733), + [anon_sym_BSLASHglsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10733), + [anon_sym_BSLASHglsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10733), + [anon_sym_BSLASHglsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10733), + [anon_sym_BSLASHglsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10733), + [anon_sym_BSLASHglsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10733), + [anon_sym_BSLASHnewacronym] = ACTIONS(10735), + [anon_sym_BSLASHacrshort] = ACTIONS(10737), + [anon_sym_BSLASHAcrshort] = ACTIONS(10737), + [anon_sym_BSLASHACRshort] = ACTIONS(10737), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10737), + [anon_sym_BSLASHacrlong] = ACTIONS(10737), + [anon_sym_BSLASHAcrlong] = ACTIONS(10737), + [anon_sym_BSLASHACRlong] = ACTIONS(10737), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10737), + [anon_sym_BSLASHacrfull] = ACTIONS(10737), + [anon_sym_BSLASHAcrfull] = ACTIONS(10737), + [anon_sym_BSLASHACRfull] = ACTIONS(10737), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10737), + [anon_sym_BSLASHacs] = ACTIONS(10737), + [anon_sym_BSLASHAcs] = ACTIONS(10737), + [anon_sym_BSLASHacsp] = ACTIONS(10737), + [anon_sym_BSLASHAcsp] = ACTIONS(10737), + [anon_sym_BSLASHacl] = ACTIONS(10737), + [anon_sym_BSLASHAcl] = ACTIONS(10737), + [anon_sym_BSLASHaclp] = ACTIONS(10737), + [anon_sym_BSLASHAclp] = ACTIONS(10737), + [anon_sym_BSLASHacf] = ACTIONS(10737), + [anon_sym_BSLASHAcf] = ACTIONS(10737), + [anon_sym_BSLASHacfp] = ACTIONS(10737), + [anon_sym_BSLASHAcfp] = ACTIONS(10737), + [anon_sym_BSLASHac] = ACTIONS(10737), + [anon_sym_BSLASHAc] = ACTIONS(10737), + [anon_sym_BSLASHacp] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10739), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10739), + [anon_sym_BSLASHcolor] = ACTIONS(10741), + [anon_sym_BSLASHcolorbox] = ACTIONS(10741), + [anon_sym_BSLASHtextcolor] = ACTIONS(10741), + [anon_sym_BSLASHpagecolor] = ACTIONS(10741), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10743), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10745), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10747), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10749), + }, + [447] = { + [sym__simple_content] = STATE(453), + [sym_enum_item] = STATE(453), + [sym_brace_group] = STATE(453), + [sym_mixed_group] = STATE(453), + [sym_text] = STATE(453), + [sym__text_fragment] = STATE(1388), + [sym_displayed_equation] = STATE(453), + [sym_inline_formula] = STATE(453), + [sym_begin] = STATE(83), + [sym_environment] = STATE(453), + [sym_caption] = STATE(453), + [sym_citation] = STATE(453), + [sym_package_include] = STATE(453), + [sym_class_include] = STATE(453), + [sym_latex_include] = STATE(453), + [sym_latex_input] = STATE(453), + [sym_biblatex_include] = STATE(453), + [sym_bibtex_include] = STATE(453), + [sym_graphics_include] = STATE(453), + [sym_svg_include] = STATE(453), + [sym_inkscape_include] = STATE(453), + [sym_verbatim_include] = STATE(453), + [sym_import] = STATE(453), + [sym_label_definition] = STATE(453), + [sym_label_reference] = STATE(453), + [sym_equation_label_reference] = STATE(453), + [sym_label_reference_range] = STATE(453), + [sym_label_number] = STATE(453), + [sym_command_definition] = STATE(453), + [sym_math_operator] = STATE(453), + [sym_glossary_entry_definition] = STATE(453), + [sym_glossary_entry_reference] = STATE(453), + [sym_acronym_definition] = STATE(453), + [sym_acronym_reference] = STATE(453), + [sym_theorem_definition] = STATE(453), + [sym_color_reference] = STATE(453), + [sym_color_definition] = STATE(453), + [sym_color_set_definition] = STATE(453), + [sym_pgf_library_import] = STATE(453), + [sym_tikz_library_import] = STATE(453), + [sym_generic_command] = STATE(453), + [aux_sym_subparagraph_repeat1] = STATE(453), + [aux_sym_text_repeat1] = STATE(1388), + [sym_generic_command_name] = ACTIONS(10663), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(5168), + [anon_sym_BSLASHitem] = ACTIONS(10667), + [anon_sym_LBRACK] = ACTIONS(10669), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(10671), + [anon_sym_RBRACE] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(10669), + [anon_sym_COMMA] = ACTIONS(10673), + [anon_sym_EQ] = ACTIONS(10673), + [sym_word] = ACTIONS(10673), + [sym_param] = ACTIONS(11022), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10677), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10677), + [anon_sym_DOLLAR] = ACTIONS(10679), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10681), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(10683), + [anon_sym_BSLASHcite] = ACTIONS(10685), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCite] = ACTIONS(10685), + [anon_sym_BSLASHnocite] = ACTIONS(10685), + [anon_sym_BSLASHcitet] = ACTIONS(10685), + [anon_sym_BSLASHcitep] = ACTIONS(10685), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteauthor] = ACTIONS(10685), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10685), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitetitle] = ACTIONS(10685), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteyear] = ACTIONS(10685), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitedate] = ACTIONS(10685), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteurl] = ACTIONS(10685), + [anon_sym_BSLASHfullcite] = ACTIONS(10685), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10685), + [anon_sym_BSLASHcitealt] = ACTIONS(10685), + [anon_sym_BSLASHcitealp] = ACTIONS(10685), + [anon_sym_BSLASHcitetext] = ACTIONS(10685), + [anon_sym_BSLASHparencite] = ACTIONS(10685), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHParencite] = ACTIONS(10685), + [anon_sym_BSLASHfootcite] = ACTIONS(10685), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10685), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10685), + [anon_sym_BSLASHtextcite] = ACTIONS(10685), + [anon_sym_BSLASHTextcite] = ACTIONS(10685), + [anon_sym_BSLASHsmartcite] = ACTIONS(10685), + [anon_sym_BSLASHSmartcite] = ACTIONS(10685), + [anon_sym_BSLASHsupercite] = ACTIONS(10685), + [anon_sym_BSLASHautocite] = ACTIONS(10685), + [anon_sym_BSLASHAutocite] = ACTIONS(10685), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHvolcite] = ACTIONS(10685), + [anon_sym_BSLASHVolcite] = ACTIONS(10685), + [anon_sym_BSLASHpvolcite] = ACTIONS(10685), + [anon_sym_BSLASHPvolcite] = ACTIONS(10685), + [anon_sym_BSLASHfvolcite] = ACTIONS(10685), + [anon_sym_BSLASHftvolcite] = ACTIONS(10685), + [anon_sym_BSLASHsvolcite] = ACTIONS(10685), + [anon_sym_BSLASHSvolcite] = ACTIONS(10685), + [anon_sym_BSLASHtvolcite] = ACTIONS(10685), + [anon_sym_BSLASHTvolcite] = ACTIONS(10685), + [anon_sym_BSLASHavolcite] = ACTIONS(10685), + [anon_sym_BSLASHAvolcite] = ACTIONS(10685), + [anon_sym_BSLASHnotecite] = ACTIONS(10685), + [anon_sym_BSLASHpnotecite] = ACTIONS(10685), + [anon_sym_BSLASHPnotecite] = ACTIONS(10685), + [anon_sym_BSLASHfnotecite] = ACTIONS(10685), + [anon_sym_BSLASHusepackage] = ACTIONS(10689), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10689), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10691), + [anon_sym_BSLASHinclude] = ACTIONS(10693), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10693), + [anon_sym_BSLASHinput] = ACTIONS(10695), + [anon_sym_BSLASHsubfile] = ACTIONS(10695), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10697), + [anon_sym_BSLASHbibliography] = ACTIONS(10699), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10701), + [anon_sym_BSLASHincludesvg] = ACTIONS(10703), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10705), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10707), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10707), + [anon_sym_BSLASHimport] = ACTIONS(10709), + [anon_sym_BSLASHsubimport] = ACTIONS(10709), + [anon_sym_BSLASHinputfrom] = ACTIONS(10709), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10709), + [anon_sym_BSLASHincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHlabel] = ACTIONS(10711), + [anon_sym_BSLASHref] = ACTIONS(10713), + [anon_sym_BSLASHvref] = ACTIONS(10713), + [anon_sym_BSLASHVref] = ACTIONS(10713), + [anon_sym_BSLASHautoref] = ACTIONS(10713), + [anon_sym_BSLASHpageref] = ACTIONS(10713), + [anon_sym_BSLASHcref] = ACTIONS(10713), + [anon_sym_BSLASHCref] = ACTIONS(10713), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnameCref] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHlabelcref] = ACTIONS(10713), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10713), + [anon_sym_BSLASHeqref] = ACTIONS(10717), + [anon_sym_BSLASHcrefrange] = ACTIONS(10719), + [anon_sym_BSLASHCrefrange] = ACTIONS(10719), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHnewlabel] = ACTIONS(10723), + [anon_sym_BSLASHnewcommand] = ACTIONS(10725), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10727), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10729), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10731), + [anon_sym_BSLASHgls] = ACTIONS(10733), + [anon_sym_BSLASHGls] = ACTIONS(10733), + [anon_sym_BSLASHGLS] = ACTIONS(10733), + [anon_sym_BSLASHglspl] = ACTIONS(10733), + [anon_sym_BSLASHGlspl] = ACTIONS(10733), + [anon_sym_BSLASHGLSpl] = ACTIONS(10733), + [anon_sym_BSLASHglsdisp] = ACTIONS(10733), + [anon_sym_BSLASHglslink] = ACTIONS(10733), + [anon_sym_BSLASHglstext] = ACTIONS(10733), + [anon_sym_BSLASHGlstext] = ACTIONS(10733), + [anon_sym_BSLASHGLStext] = ACTIONS(10733), + [anon_sym_BSLASHglsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10733), + [anon_sym_BSLASHglsplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSplural] = ACTIONS(10733), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHglsname] = ACTIONS(10733), + [anon_sym_BSLASHGlsname] = ACTIONS(10733), + [anon_sym_BSLASHGLSname] = ACTIONS(10733), + [anon_sym_BSLASHglssymbol] = ACTIONS(10733), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10733), + [anon_sym_BSLASHglsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10733), + [anon_sym_BSLASHglsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10733), + [anon_sym_BSLASHglsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10733), + [anon_sym_BSLASHglsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10733), + [anon_sym_BSLASHglsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10733), + [anon_sym_BSLASHnewacronym] = ACTIONS(10735), + [anon_sym_BSLASHacrshort] = ACTIONS(10737), + [anon_sym_BSLASHAcrshort] = ACTIONS(10737), + [anon_sym_BSLASHACRshort] = ACTIONS(10737), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10737), + [anon_sym_BSLASHacrlong] = ACTIONS(10737), + [anon_sym_BSLASHAcrlong] = ACTIONS(10737), + [anon_sym_BSLASHACRlong] = ACTIONS(10737), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10737), + [anon_sym_BSLASHacrfull] = ACTIONS(10737), + [anon_sym_BSLASHAcrfull] = ACTIONS(10737), + [anon_sym_BSLASHACRfull] = ACTIONS(10737), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10737), + [anon_sym_BSLASHacs] = ACTIONS(10737), + [anon_sym_BSLASHAcs] = ACTIONS(10737), + [anon_sym_BSLASHacsp] = ACTIONS(10737), + [anon_sym_BSLASHAcsp] = ACTIONS(10737), + [anon_sym_BSLASHacl] = ACTIONS(10737), + [anon_sym_BSLASHAcl] = ACTIONS(10737), + [anon_sym_BSLASHaclp] = ACTIONS(10737), + [anon_sym_BSLASHAclp] = ACTIONS(10737), + [anon_sym_BSLASHacf] = ACTIONS(10737), + [anon_sym_BSLASHAcf] = ACTIONS(10737), + [anon_sym_BSLASHacfp] = ACTIONS(10737), + [anon_sym_BSLASHAcfp] = ACTIONS(10737), + [anon_sym_BSLASHac] = ACTIONS(10737), + [anon_sym_BSLASHAc] = ACTIONS(10737), + [anon_sym_BSLASHacp] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10739), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10739), + [anon_sym_BSLASHcolor] = ACTIONS(10741), + [anon_sym_BSLASHcolorbox] = ACTIONS(10741), + [anon_sym_BSLASHtextcolor] = ACTIONS(10741), + [anon_sym_BSLASHpagecolor] = ACTIONS(10741), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10743), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10745), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10747), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10749), + }, + [448] = { + [sym__simple_content] = STATE(452), + [sym_brace_group] = STATE(452), + [sym_mixed_group] = STATE(452), + [sym_text] = STATE(452), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(452), + [sym_inline_formula] = STATE(452), + [sym_begin] = STATE(99), + [sym_environment] = STATE(452), + [sym_caption] = STATE(452), + [sym_citation] = STATE(452), + [sym_package_include] = STATE(452), + [sym_class_include] = STATE(452), + [sym_latex_include] = STATE(452), + [sym_latex_input] = STATE(452), + [sym_biblatex_include] = STATE(452), + [sym_bibtex_include] = STATE(452), + [sym_graphics_include] = STATE(452), + [sym_svg_include] = STATE(452), + [sym_inkscape_include] = STATE(452), + [sym_verbatim_include] = STATE(452), + [sym_import] = STATE(452), + [sym_label_definition] = STATE(452), + [sym_label_reference] = STATE(452), + [sym_equation_label_reference] = STATE(452), + [sym_label_reference_range] = STATE(452), + [sym_label_number] = STATE(452), + [sym_command_definition] = STATE(452), + [sym_math_operator] = STATE(452), + [sym_glossary_entry_definition] = STATE(452), + [sym_glossary_entry_reference] = STATE(452), + [sym_acronym_definition] = STATE(452), + [sym_acronym_reference] = STATE(452), + [sym_theorem_definition] = STATE(452), + [sym_color_reference] = STATE(452), + [sym_color_definition] = STATE(452), + [sym_color_set_definition] = STATE(452), + [sym_pgf_library_import] = STATE(452), + [sym_tikz_library_import] = STATE(452), + [sym_generic_command] = STATE(452), + [aux_sym_enum_item_repeat1] = STATE(452), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(9773), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(5600), + [aux_sym_subparagraph_token1] = ACTIONS(5600), + [anon_sym_BSLASHitem] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(9781), + [anon_sym_RBRACK] = ACTIONS(5598), + [anon_sym_LBRACE] = ACTIONS(9783), + [anon_sym_RBRACE] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(9781), + [anon_sym_COMMA] = ACTIONS(9785), + [anon_sym_EQ] = ACTIONS(9785), + [sym_word] = ACTIONS(9785), + [sym_param] = ACTIONS(11024), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9789), + [anon_sym_DOLLAR] = ACTIONS(9791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9793), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(9795), + [anon_sym_BSLASHcite] = ACTIONS(9797), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCite] = ACTIONS(9797), + [anon_sym_BSLASHnocite] = ACTIONS(9797), + [anon_sym_BSLASHcitet] = ACTIONS(9797), + [anon_sym_BSLASHcitep] = ACTIONS(9797), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteauthor] = ACTIONS(9797), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9797), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitetitle] = ACTIONS(9797), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteyear] = ACTIONS(9797), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitedate] = ACTIONS(9797), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteurl] = ACTIONS(9797), + [anon_sym_BSLASHfullcite] = ACTIONS(9797), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9797), + [anon_sym_BSLASHcitealt] = ACTIONS(9797), + [anon_sym_BSLASHcitealp] = ACTIONS(9797), + [anon_sym_BSLASHcitetext] = ACTIONS(9797), + [anon_sym_BSLASHparencite] = ACTIONS(9797), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHParencite] = ACTIONS(9797), + [anon_sym_BSLASHfootcite] = ACTIONS(9797), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9797), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9797), + [anon_sym_BSLASHtextcite] = ACTIONS(9797), + [anon_sym_BSLASHTextcite] = ACTIONS(9797), + [anon_sym_BSLASHsmartcite] = ACTIONS(9797), + [anon_sym_BSLASHSmartcite] = ACTIONS(9797), + [anon_sym_BSLASHsupercite] = ACTIONS(9797), + [anon_sym_BSLASHautocite] = ACTIONS(9797), + [anon_sym_BSLASHAutocite] = ACTIONS(9797), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHvolcite] = ACTIONS(9797), + [anon_sym_BSLASHVolcite] = ACTIONS(9797), + [anon_sym_BSLASHpvolcite] = ACTIONS(9797), + [anon_sym_BSLASHPvolcite] = ACTIONS(9797), + [anon_sym_BSLASHfvolcite] = ACTIONS(9797), + [anon_sym_BSLASHftvolcite] = ACTIONS(9797), + [anon_sym_BSLASHsvolcite] = ACTIONS(9797), + [anon_sym_BSLASHSvolcite] = ACTIONS(9797), + [anon_sym_BSLASHtvolcite] = ACTIONS(9797), + [anon_sym_BSLASHTvolcite] = ACTIONS(9797), + [anon_sym_BSLASHavolcite] = ACTIONS(9797), + [anon_sym_BSLASHAvolcite] = ACTIONS(9797), + [anon_sym_BSLASHnotecite] = ACTIONS(9797), + [anon_sym_BSLASHpnotecite] = ACTIONS(9797), + [anon_sym_BSLASHPnotecite] = ACTIONS(9797), + [anon_sym_BSLASHfnotecite] = ACTIONS(9797), + [anon_sym_BSLASHusepackage] = ACTIONS(9801), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9801), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9803), + [anon_sym_BSLASHinclude] = ACTIONS(9805), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9805), + [anon_sym_BSLASHinput] = ACTIONS(9807), + [anon_sym_BSLASHsubfile] = ACTIONS(9807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9809), + [anon_sym_BSLASHbibliography] = ACTIONS(9811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9813), + [anon_sym_BSLASHincludesvg] = ACTIONS(9815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9819), + [anon_sym_BSLASHimport] = ACTIONS(9821), + [anon_sym_BSLASHsubimport] = ACTIONS(9821), + [anon_sym_BSLASHinputfrom] = ACTIONS(9821), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9821), + [anon_sym_BSLASHincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHlabel] = ACTIONS(9823), + [anon_sym_BSLASHref] = ACTIONS(9825), + [anon_sym_BSLASHvref] = ACTIONS(9825), + [anon_sym_BSLASHVref] = ACTIONS(9825), + [anon_sym_BSLASHautoref] = ACTIONS(9825), + [anon_sym_BSLASHpageref] = ACTIONS(9825), + [anon_sym_BSLASHcref] = ACTIONS(9825), + [anon_sym_BSLASHCref] = ACTIONS(9825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnameCref] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHlabelcref] = ACTIONS(9825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9825), + [anon_sym_BSLASHeqref] = ACTIONS(9829), + [anon_sym_BSLASHcrefrange] = ACTIONS(9831), + [anon_sym_BSLASHCrefrange] = ACTIONS(9831), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHnewlabel] = ACTIONS(9835), + [anon_sym_BSLASHnewcommand] = ACTIONS(9837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9839), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9843), + [anon_sym_BSLASHgls] = ACTIONS(9845), + [anon_sym_BSLASHGls] = ACTIONS(9845), + [anon_sym_BSLASHGLS] = ACTIONS(9845), + [anon_sym_BSLASHglspl] = ACTIONS(9845), + [anon_sym_BSLASHGlspl] = ACTIONS(9845), + [anon_sym_BSLASHGLSpl] = ACTIONS(9845), + [anon_sym_BSLASHglsdisp] = ACTIONS(9845), + [anon_sym_BSLASHglslink] = ACTIONS(9845), + [anon_sym_BSLASHglstext] = ACTIONS(9845), + [anon_sym_BSLASHGlstext] = ACTIONS(9845), + [anon_sym_BSLASHGLStext] = ACTIONS(9845), + [anon_sym_BSLASHglsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9845), + [anon_sym_BSLASHglsplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSplural] = ACTIONS(9845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHglsname] = ACTIONS(9845), + [anon_sym_BSLASHGlsname] = ACTIONS(9845), + [anon_sym_BSLASHGLSname] = ACTIONS(9845), + [anon_sym_BSLASHglssymbol] = ACTIONS(9845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9845), + [anon_sym_BSLASHglsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9845), + [anon_sym_BSLASHglsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9845), + [anon_sym_BSLASHglsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9845), + [anon_sym_BSLASHglsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9845), + [anon_sym_BSLASHglsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9845), + [anon_sym_BSLASHnewacronym] = ACTIONS(9847), + [anon_sym_BSLASHacrshort] = ACTIONS(9849), + [anon_sym_BSLASHAcrshort] = ACTIONS(9849), + [anon_sym_BSLASHACRshort] = ACTIONS(9849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9849), + [anon_sym_BSLASHacrlong] = ACTIONS(9849), + [anon_sym_BSLASHAcrlong] = ACTIONS(9849), + [anon_sym_BSLASHACRlong] = ACTIONS(9849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9849), + [anon_sym_BSLASHacrfull] = ACTIONS(9849), + [anon_sym_BSLASHAcrfull] = ACTIONS(9849), + [anon_sym_BSLASHACRfull] = ACTIONS(9849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9849), + [anon_sym_BSLASHacs] = ACTIONS(9849), + [anon_sym_BSLASHAcs] = ACTIONS(9849), + [anon_sym_BSLASHacsp] = ACTIONS(9849), + [anon_sym_BSLASHAcsp] = ACTIONS(9849), + [anon_sym_BSLASHacl] = ACTIONS(9849), + [anon_sym_BSLASHAcl] = ACTIONS(9849), + [anon_sym_BSLASHaclp] = ACTIONS(9849), + [anon_sym_BSLASHAclp] = ACTIONS(9849), + [anon_sym_BSLASHacf] = ACTIONS(9849), + [anon_sym_BSLASHAcf] = ACTIONS(9849), + [anon_sym_BSLASHacfp] = ACTIONS(9849), + [anon_sym_BSLASHAcfp] = ACTIONS(9849), + [anon_sym_BSLASHac] = ACTIONS(9849), + [anon_sym_BSLASHAc] = ACTIONS(9849), + [anon_sym_BSLASHacp] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9851), + [anon_sym_BSLASHcolor] = ACTIONS(9853), + [anon_sym_BSLASHcolorbox] = ACTIONS(9853), + [anon_sym_BSLASHtextcolor] = ACTIONS(9853), + [anon_sym_BSLASHpagecolor] = ACTIONS(9853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9855), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9859), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9861), + }, + [449] = { + [sym__simple_content] = STATE(450), + [sym_brace_group] = STATE(450), + [sym_mixed_group] = STATE(450), + [sym_text] = STATE(450), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(450), + [sym_inline_formula] = STATE(450), + [sym_begin] = STATE(99), + [sym_environment] = STATE(450), + [sym_caption] = STATE(450), + [sym_citation] = STATE(450), + [sym_package_include] = STATE(450), + [sym_class_include] = STATE(450), + [sym_latex_include] = STATE(450), + [sym_latex_input] = STATE(450), + [sym_biblatex_include] = STATE(450), + [sym_bibtex_include] = STATE(450), + [sym_graphics_include] = STATE(450), + [sym_svg_include] = STATE(450), + [sym_inkscape_include] = STATE(450), + [sym_verbatim_include] = STATE(450), + [sym_import] = STATE(450), + [sym_label_definition] = STATE(450), + [sym_label_reference] = STATE(450), + [sym_equation_label_reference] = STATE(450), + [sym_label_reference_range] = STATE(450), + [sym_label_number] = STATE(450), + [sym_command_definition] = STATE(450), + [sym_math_operator] = STATE(450), + [sym_glossary_entry_definition] = STATE(450), + [sym_glossary_entry_reference] = STATE(450), + [sym_acronym_definition] = STATE(450), + [sym_acronym_reference] = STATE(450), + [sym_theorem_definition] = STATE(450), + [sym_color_reference] = STATE(450), + [sym_color_definition] = STATE(450), + [sym_color_set_definition] = STATE(450), + [sym_pgf_library_import] = STATE(450), + [sym_tikz_library_import] = STATE(450), + [sym_generic_command] = STATE(450), + [aux_sym_enum_item_repeat1] = STATE(450), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(9773), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(5606), + [aux_sym_subparagraph_token1] = ACTIONS(5606), + [anon_sym_BSLASHitem] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(9781), + [anon_sym_RBRACK] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(9783), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_LPAREN] = ACTIONS(9781), + [anon_sym_COMMA] = ACTIONS(9785), + [anon_sym_EQ] = ACTIONS(9785), + [sym_word] = ACTIONS(9785), + [sym_param] = ACTIONS(11026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9789), + [anon_sym_DOLLAR] = ACTIONS(9791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9793), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(9795), + [anon_sym_BSLASHcite] = ACTIONS(9797), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCite] = ACTIONS(9797), + [anon_sym_BSLASHnocite] = ACTIONS(9797), + [anon_sym_BSLASHcitet] = ACTIONS(9797), + [anon_sym_BSLASHcitep] = ACTIONS(9797), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteauthor] = ACTIONS(9797), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9797), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitetitle] = ACTIONS(9797), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteyear] = ACTIONS(9797), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitedate] = ACTIONS(9797), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteurl] = ACTIONS(9797), + [anon_sym_BSLASHfullcite] = ACTIONS(9797), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9797), + [anon_sym_BSLASHcitealt] = ACTIONS(9797), + [anon_sym_BSLASHcitealp] = ACTIONS(9797), + [anon_sym_BSLASHcitetext] = ACTIONS(9797), + [anon_sym_BSLASHparencite] = ACTIONS(9797), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHParencite] = ACTIONS(9797), + [anon_sym_BSLASHfootcite] = ACTIONS(9797), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9797), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9797), + [anon_sym_BSLASHtextcite] = ACTIONS(9797), + [anon_sym_BSLASHTextcite] = ACTIONS(9797), + [anon_sym_BSLASHsmartcite] = ACTIONS(9797), + [anon_sym_BSLASHSmartcite] = ACTIONS(9797), + [anon_sym_BSLASHsupercite] = ACTIONS(9797), + [anon_sym_BSLASHautocite] = ACTIONS(9797), + [anon_sym_BSLASHAutocite] = ACTIONS(9797), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHvolcite] = ACTIONS(9797), + [anon_sym_BSLASHVolcite] = ACTIONS(9797), + [anon_sym_BSLASHpvolcite] = ACTIONS(9797), + [anon_sym_BSLASHPvolcite] = ACTIONS(9797), + [anon_sym_BSLASHfvolcite] = ACTIONS(9797), + [anon_sym_BSLASHftvolcite] = ACTIONS(9797), + [anon_sym_BSLASHsvolcite] = ACTIONS(9797), + [anon_sym_BSLASHSvolcite] = ACTIONS(9797), + [anon_sym_BSLASHtvolcite] = ACTIONS(9797), + [anon_sym_BSLASHTvolcite] = ACTIONS(9797), + [anon_sym_BSLASHavolcite] = ACTIONS(9797), + [anon_sym_BSLASHAvolcite] = ACTIONS(9797), + [anon_sym_BSLASHnotecite] = ACTIONS(9797), + [anon_sym_BSLASHpnotecite] = ACTIONS(9797), + [anon_sym_BSLASHPnotecite] = ACTIONS(9797), + [anon_sym_BSLASHfnotecite] = ACTIONS(9797), + [anon_sym_BSLASHusepackage] = ACTIONS(9801), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9801), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9803), + [anon_sym_BSLASHinclude] = ACTIONS(9805), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9805), + [anon_sym_BSLASHinput] = ACTIONS(9807), + [anon_sym_BSLASHsubfile] = ACTIONS(9807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9809), + [anon_sym_BSLASHbibliography] = ACTIONS(9811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9813), + [anon_sym_BSLASHincludesvg] = ACTIONS(9815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9819), + [anon_sym_BSLASHimport] = ACTIONS(9821), + [anon_sym_BSLASHsubimport] = ACTIONS(9821), + [anon_sym_BSLASHinputfrom] = ACTIONS(9821), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9821), + [anon_sym_BSLASHincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHlabel] = ACTIONS(9823), + [anon_sym_BSLASHref] = ACTIONS(9825), + [anon_sym_BSLASHvref] = ACTIONS(9825), + [anon_sym_BSLASHVref] = ACTIONS(9825), + [anon_sym_BSLASHautoref] = ACTIONS(9825), + [anon_sym_BSLASHpageref] = ACTIONS(9825), + [anon_sym_BSLASHcref] = ACTIONS(9825), + [anon_sym_BSLASHCref] = ACTIONS(9825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnameCref] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHlabelcref] = ACTIONS(9825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9825), + [anon_sym_BSLASHeqref] = ACTIONS(9829), + [anon_sym_BSLASHcrefrange] = ACTIONS(9831), + [anon_sym_BSLASHCrefrange] = ACTIONS(9831), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHnewlabel] = ACTIONS(9835), + [anon_sym_BSLASHnewcommand] = ACTIONS(9837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9839), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9843), + [anon_sym_BSLASHgls] = ACTIONS(9845), + [anon_sym_BSLASHGls] = ACTIONS(9845), + [anon_sym_BSLASHGLS] = ACTIONS(9845), + [anon_sym_BSLASHglspl] = ACTIONS(9845), + [anon_sym_BSLASHGlspl] = ACTIONS(9845), + [anon_sym_BSLASHGLSpl] = ACTIONS(9845), + [anon_sym_BSLASHglsdisp] = ACTIONS(9845), + [anon_sym_BSLASHglslink] = ACTIONS(9845), + [anon_sym_BSLASHglstext] = ACTIONS(9845), + [anon_sym_BSLASHGlstext] = ACTIONS(9845), + [anon_sym_BSLASHGLStext] = ACTIONS(9845), + [anon_sym_BSLASHglsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9845), + [anon_sym_BSLASHglsplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSplural] = ACTIONS(9845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHglsname] = ACTIONS(9845), + [anon_sym_BSLASHGlsname] = ACTIONS(9845), + [anon_sym_BSLASHGLSname] = ACTIONS(9845), + [anon_sym_BSLASHglssymbol] = ACTIONS(9845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9845), + [anon_sym_BSLASHglsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9845), + [anon_sym_BSLASHglsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9845), + [anon_sym_BSLASHglsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9845), + [anon_sym_BSLASHglsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9845), + [anon_sym_BSLASHglsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9845), + [anon_sym_BSLASHnewacronym] = ACTIONS(9847), + [anon_sym_BSLASHacrshort] = ACTIONS(9849), + [anon_sym_BSLASHAcrshort] = ACTIONS(9849), + [anon_sym_BSLASHACRshort] = ACTIONS(9849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9849), + [anon_sym_BSLASHacrlong] = ACTIONS(9849), + [anon_sym_BSLASHAcrlong] = ACTIONS(9849), + [anon_sym_BSLASHACRlong] = ACTIONS(9849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9849), + [anon_sym_BSLASHacrfull] = ACTIONS(9849), + [anon_sym_BSLASHAcrfull] = ACTIONS(9849), + [anon_sym_BSLASHACRfull] = ACTIONS(9849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9849), + [anon_sym_BSLASHacs] = ACTIONS(9849), + [anon_sym_BSLASHAcs] = ACTIONS(9849), + [anon_sym_BSLASHacsp] = ACTIONS(9849), + [anon_sym_BSLASHAcsp] = ACTIONS(9849), + [anon_sym_BSLASHacl] = ACTIONS(9849), + [anon_sym_BSLASHAcl] = ACTIONS(9849), + [anon_sym_BSLASHaclp] = ACTIONS(9849), + [anon_sym_BSLASHAclp] = ACTIONS(9849), + [anon_sym_BSLASHacf] = ACTIONS(9849), + [anon_sym_BSLASHAcf] = ACTIONS(9849), + [anon_sym_BSLASHacfp] = ACTIONS(9849), + [anon_sym_BSLASHAcfp] = ACTIONS(9849), + [anon_sym_BSLASHac] = ACTIONS(9849), + [anon_sym_BSLASHAc] = ACTIONS(9849), + [anon_sym_BSLASHacp] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9851), + [anon_sym_BSLASHcolor] = ACTIONS(9853), + [anon_sym_BSLASHcolorbox] = ACTIONS(9853), + [anon_sym_BSLASHtextcolor] = ACTIONS(9853), + [anon_sym_BSLASHpagecolor] = ACTIONS(9853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9855), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9859), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9861), + }, + [450] = { + [sym__simple_content] = STATE(452), + [sym_brace_group] = STATE(452), + [sym_mixed_group] = STATE(452), + [sym_text] = STATE(452), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(452), + [sym_inline_formula] = STATE(452), + [sym_begin] = STATE(99), + [sym_environment] = STATE(452), + [sym_caption] = STATE(452), + [sym_citation] = STATE(452), + [sym_package_include] = STATE(452), + [sym_class_include] = STATE(452), + [sym_latex_include] = STATE(452), + [sym_latex_input] = STATE(452), + [sym_biblatex_include] = STATE(452), + [sym_bibtex_include] = STATE(452), + [sym_graphics_include] = STATE(452), + [sym_svg_include] = STATE(452), + [sym_inkscape_include] = STATE(452), + [sym_verbatim_include] = STATE(452), + [sym_import] = STATE(452), + [sym_label_definition] = STATE(452), + [sym_label_reference] = STATE(452), + [sym_equation_label_reference] = STATE(452), + [sym_label_reference_range] = STATE(452), + [sym_label_number] = STATE(452), + [sym_command_definition] = STATE(452), + [sym_math_operator] = STATE(452), + [sym_glossary_entry_definition] = STATE(452), + [sym_glossary_entry_reference] = STATE(452), + [sym_acronym_definition] = STATE(452), + [sym_acronym_reference] = STATE(452), + [sym_theorem_definition] = STATE(452), + [sym_color_reference] = STATE(452), + [sym_color_definition] = STATE(452), + [sym_color_set_definition] = STATE(452), + [sym_pgf_library_import] = STATE(452), + [sym_tikz_library_import] = STATE(452), + [sym_generic_command] = STATE(452), + [aux_sym_enum_item_repeat1] = STATE(452), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(9773), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(6177), + [aux_sym_subparagraph_token1] = ACTIONS(6177), + [anon_sym_BSLASHitem] = ACTIONS(6177), + [anon_sym_LBRACK] = ACTIONS(9781), + [anon_sym_RBRACK] = ACTIONS(6175), + [anon_sym_LBRACE] = ACTIONS(9783), + [anon_sym_RBRACE] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(9781), + [anon_sym_COMMA] = ACTIONS(9785), + [anon_sym_EQ] = ACTIONS(9785), + [sym_word] = ACTIONS(9785), + [sym_param] = ACTIONS(11024), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9789), + [anon_sym_DOLLAR] = ACTIONS(9791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9793), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(9795), + [anon_sym_BSLASHcite] = ACTIONS(9797), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCite] = ACTIONS(9797), + [anon_sym_BSLASHnocite] = ACTIONS(9797), + [anon_sym_BSLASHcitet] = ACTIONS(9797), + [anon_sym_BSLASHcitep] = ACTIONS(9797), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteauthor] = ACTIONS(9797), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9797), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitetitle] = ACTIONS(9797), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteyear] = ACTIONS(9797), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitedate] = ACTIONS(9797), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteurl] = ACTIONS(9797), + [anon_sym_BSLASHfullcite] = ACTIONS(9797), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9797), + [anon_sym_BSLASHcitealt] = ACTIONS(9797), + [anon_sym_BSLASHcitealp] = ACTIONS(9797), + [anon_sym_BSLASHcitetext] = ACTIONS(9797), + [anon_sym_BSLASHparencite] = ACTIONS(9797), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHParencite] = ACTIONS(9797), + [anon_sym_BSLASHfootcite] = ACTIONS(9797), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9797), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9797), + [anon_sym_BSLASHtextcite] = ACTIONS(9797), + [anon_sym_BSLASHTextcite] = ACTIONS(9797), + [anon_sym_BSLASHsmartcite] = ACTIONS(9797), + [anon_sym_BSLASHSmartcite] = ACTIONS(9797), + [anon_sym_BSLASHsupercite] = ACTIONS(9797), + [anon_sym_BSLASHautocite] = ACTIONS(9797), + [anon_sym_BSLASHAutocite] = ACTIONS(9797), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHvolcite] = ACTIONS(9797), + [anon_sym_BSLASHVolcite] = ACTIONS(9797), + [anon_sym_BSLASHpvolcite] = ACTIONS(9797), + [anon_sym_BSLASHPvolcite] = ACTIONS(9797), + [anon_sym_BSLASHfvolcite] = ACTIONS(9797), + [anon_sym_BSLASHftvolcite] = ACTIONS(9797), + [anon_sym_BSLASHsvolcite] = ACTIONS(9797), + [anon_sym_BSLASHSvolcite] = ACTIONS(9797), + [anon_sym_BSLASHtvolcite] = ACTIONS(9797), + [anon_sym_BSLASHTvolcite] = ACTIONS(9797), + [anon_sym_BSLASHavolcite] = ACTIONS(9797), + [anon_sym_BSLASHAvolcite] = ACTIONS(9797), + [anon_sym_BSLASHnotecite] = ACTIONS(9797), + [anon_sym_BSLASHpnotecite] = ACTIONS(9797), + [anon_sym_BSLASHPnotecite] = ACTIONS(9797), + [anon_sym_BSLASHfnotecite] = ACTIONS(9797), + [anon_sym_BSLASHusepackage] = ACTIONS(9801), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9801), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9803), + [anon_sym_BSLASHinclude] = ACTIONS(9805), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9805), + [anon_sym_BSLASHinput] = ACTIONS(9807), + [anon_sym_BSLASHsubfile] = ACTIONS(9807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9809), + [anon_sym_BSLASHbibliography] = ACTIONS(9811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9813), + [anon_sym_BSLASHincludesvg] = ACTIONS(9815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9819), + [anon_sym_BSLASHimport] = ACTIONS(9821), + [anon_sym_BSLASHsubimport] = ACTIONS(9821), + [anon_sym_BSLASHinputfrom] = ACTIONS(9821), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9821), + [anon_sym_BSLASHincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHlabel] = ACTIONS(9823), + [anon_sym_BSLASHref] = ACTIONS(9825), + [anon_sym_BSLASHvref] = ACTIONS(9825), + [anon_sym_BSLASHVref] = ACTIONS(9825), + [anon_sym_BSLASHautoref] = ACTIONS(9825), + [anon_sym_BSLASHpageref] = ACTIONS(9825), + [anon_sym_BSLASHcref] = ACTIONS(9825), + [anon_sym_BSLASHCref] = ACTIONS(9825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnameCref] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHlabelcref] = ACTIONS(9825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9825), + [anon_sym_BSLASHeqref] = ACTIONS(9829), + [anon_sym_BSLASHcrefrange] = ACTIONS(9831), + [anon_sym_BSLASHCrefrange] = ACTIONS(9831), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHnewlabel] = ACTIONS(9835), + [anon_sym_BSLASHnewcommand] = ACTIONS(9837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9839), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9843), + [anon_sym_BSLASHgls] = ACTIONS(9845), + [anon_sym_BSLASHGls] = ACTIONS(9845), + [anon_sym_BSLASHGLS] = ACTIONS(9845), + [anon_sym_BSLASHglspl] = ACTIONS(9845), + [anon_sym_BSLASHGlspl] = ACTIONS(9845), + [anon_sym_BSLASHGLSpl] = ACTIONS(9845), + [anon_sym_BSLASHglsdisp] = ACTIONS(9845), + [anon_sym_BSLASHglslink] = ACTIONS(9845), + [anon_sym_BSLASHglstext] = ACTIONS(9845), + [anon_sym_BSLASHGlstext] = ACTIONS(9845), + [anon_sym_BSLASHGLStext] = ACTIONS(9845), + [anon_sym_BSLASHglsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9845), + [anon_sym_BSLASHglsplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSplural] = ACTIONS(9845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHglsname] = ACTIONS(9845), + [anon_sym_BSLASHGlsname] = ACTIONS(9845), + [anon_sym_BSLASHGLSname] = ACTIONS(9845), + [anon_sym_BSLASHglssymbol] = ACTIONS(9845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9845), + [anon_sym_BSLASHglsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9845), + [anon_sym_BSLASHglsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9845), + [anon_sym_BSLASHglsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9845), + [anon_sym_BSLASHglsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9845), + [anon_sym_BSLASHglsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9845), + [anon_sym_BSLASHnewacronym] = ACTIONS(9847), + [anon_sym_BSLASHacrshort] = ACTIONS(9849), + [anon_sym_BSLASHAcrshort] = ACTIONS(9849), + [anon_sym_BSLASHACRshort] = ACTIONS(9849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9849), + [anon_sym_BSLASHacrlong] = ACTIONS(9849), + [anon_sym_BSLASHAcrlong] = ACTIONS(9849), + [anon_sym_BSLASHACRlong] = ACTIONS(9849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9849), + [anon_sym_BSLASHacrfull] = ACTIONS(9849), + [anon_sym_BSLASHAcrfull] = ACTIONS(9849), + [anon_sym_BSLASHACRfull] = ACTIONS(9849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9849), + [anon_sym_BSLASHacs] = ACTIONS(9849), + [anon_sym_BSLASHAcs] = ACTIONS(9849), + [anon_sym_BSLASHacsp] = ACTIONS(9849), + [anon_sym_BSLASHAcsp] = ACTIONS(9849), + [anon_sym_BSLASHacl] = ACTIONS(9849), + [anon_sym_BSLASHAcl] = ACTIONS(9849), + [anon_sym_BSLASHaclp] = ACTIONS(9849), + [anon_sym_BSLASHAclp] = ACTIONS(9849), + [anon_sym_BSLASHacf] = ACTIONS(9849), + [anon_sym_BSLASHAcf] = ACTIONS(9849), + [anon_sym_BSLASHacfp] = ACTIONS(9849), + [anon_sym_BSLASHAcfp] = ACTIONS(9849), + [anon_sym_BSLASHac] = ACTIONS(9849), + [anon_sym_BSLASHAc] = ACTIONS(9849), + [anon_sym_BSLASHacp] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9851), + [anon_sym_BSLASHcolor] = ACTIONS(9853), + [anon_sym_BSLASHcolorbox] = ACTIONS(9853), + [anon_sym_BSLASHtextcolor] = ACTIONS(9853), + [anon_sym_BSLASHpagecolor] = ACTIONS(9853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9855), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9859), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9861), + }, + [451] = { + [sym__simple_content] = STATE(448), + [sym_brace_group] = STATE(448), + [sym_mixed_group] = STATE(448), + [sym_text] = STATE(448), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(448), + [sym_inline_formula] = STATE(448), + [sym_begin] = STATE(99), + [sym_environment] = STATE(448), + [sym_caption] = STATE(448), + [sym_citation] = STATE(448), + [sym_package_include] = STATE(448), + [sym_class_include] = STATE(448), + [sym_latex_include] = STATE(448), + [sym_latex_input] = STATE(448), + [sym_biblatex_include] = STATE(448), + [sym_bibtex_include] = STATE(448), + [sym_graphics_include] = STATE(448), + [sym_svg_include] = STATE(448), + [sym_inkscape_include] = STATE(448), + [sym_verbatim_include] = STATE(448), + [sym_import] = STATE(448), + [sym_label_definition] = STATE(448), + [sym_label_reference] = STATE(448), + [sym_equation_label_reference] = STATE(448), + [sym_label_reference_range] = STATE(448), + [sym_label_number] = STATE(448), + [sym_command_definition] = STATE(448), + [sym_math_operator] = STATE(448), + [sym_glossary_entry_definition] = STATE(448), + [sym_glossary_entry_reference] = STATE(448), + [sym_acronym_definition] = STATE(448), + [sym_acronym_reference] = STATE(448), + [sym_theorem_definition] = STATE(448), + [sym_color_reference] = STATE(448), + [sym_color_definition] = STATE(448), + [sym_color_set_definition] = STATE(448), + [sym_pgf_library_import] = STATE(448), + [sym_tikz_library_import] = STATE(448), + [sym_generic_command] = STATE(448), + [aux_sym_enum_item_repeat1] = STATE(448), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(9773), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(6034), + [aux_sym_subparagraph_token1] = ACTIONS(6034), + [anon_sym_BSLASHitem] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(11028), + [anon_sym_RBRACK] = ACTIONS(6032), + [anon_sym_LBRACE] = ACTIONS(9783), + [anon_sym_RBRACE] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(9781), + [anon_sym_COMMA] = ACTIONS(9785), + [anon_sym_EQ] = ACTIONS(9785), + [sym_word] = ACTIONS(9785), + [sym_param] = ACTIONS(11030), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(9789), + [anon_sym_BSLASH_LBRACK] = ACTIONS(9789), + [anon_sym_DOLLAR] = ACTIONS(9791), + [anon_sym_BSLASH_LPAREN] = ACTIONS(9793), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(9795), + [anon_sym_BSLASHcite] = ACTIONS(9797), + [anon_sym_BSLASHcite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCite] = ACTIONS(9797), + [anon_sym_BSLASHnocite] = ACTIONS(9797), + [anon_sym_BSLASHcitet] = ACTIONS(9797), + [anon_sym_BSLASHcitep] = ACTIONS(9797), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteauthor] = ACTIONS(9797), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHCiteauthor] = ACTIONS(9797), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitetitle] = ACTIONS(9797), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteyear] = ACTIONS(9797), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(9799), + [anon_sym_BSLASHcitedate] = ACTIONS(9797), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(9799), + [anon_sym_BSLASHciteurl] = ACTIONS(9797), + [anon_sym_BSLASHfullcite] = ACTIONS(9797), + [anon_sym_BSLASHciteyearpar] = ACTIONS(9797), + [anon_sym_BSLASHcitealt] = ACTIONS(9797), + [anon_sym_BSLASHcitealp] = ACTIONS(9797), + [anon_sym_BSLASHcitetext] = ACTIONS(9797), + [anon_sym_BSLASHparencite] = ACTIONS(9797), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHParencite] = ACTIONS(9797), + [anon_sym_BSLASHfootcite] = ACTIONS(9797), + [anon_sym_BSLASHfootfullcite] = ACTIONS(9797), + [anon_sym_BSLASHfootcitetext] = ACTIONS(9797), + [anon_sym_BSLASHtextcite] = ACTIONS(9797), + [anon_sym_BSLASHTextcite] = ACTIONS(9797), + [anon_sym_BSLASHsmartcite] = ACTIONS(9797), + [anon_sym_BSLASHSmartcite] = ACTIONS(9797), + [anon_sym_BSLASHsupercite] = ACTIONS(9797), + [anon_sym_BSLASHautocite] = ACTIONS(9797), + [anon_sym_BSLASHAutocite] = ACTIONS(9797), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(9799), + [anon_sym_BSLASHvolcite] = ACTIONS(9797), + [anon_sym_BSLASHVolcite] = ACTIONS(9797), + [anon_sym_BSLASHpvolcite] = ACTIONS(9797), + [anon_sym_BSLASHPvolcite] = ACTIONS(9797), + [anon_sym_BSLASHfvolcite] = ACTIONS(9797), + [anon_sym_BSLASHftvolcite] = ACTIONS(9797), + [anon_sym_BSLASHsvolcite] = ACTIONS(9797), + [anon_sym_BSLASHSvolcite] = ACTIONS(9797), + [anon_sym_BSLASHtvolcite] = ACTIONS(9797), + [anon_sym_BSLASHTvolcite] = ACTIONS(9797), + [anon_sym_BSLASHavolcite] = ACTIONS(9797), + [anon_sym_BSLASHAvolcite] = ACTIONS(9797), + [anon_sym_BSLASHnotecite] = ACTIONS(9797), + [anon_sym_BSLASHpnotecite] = ACTIONS(9797), + [anon_sym_BSLASHPnotecite] = ACTIONS(9797), + [anon_sym_BSLASHfnotecite] = ACTIONS(9797), + [anon_sym_BSLASHusepackage] = ACTIONS(9801), + [anon_sym_BSLASHRequirePackage] = ACTIONS(9801), + [anon_sym_BSLASHdocumentclass] = ACTIONS(9803), + [anon_sym_BSLASHinclude] = ACTIONS(9805), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(9805), + [anon_sym_BSLASHinput] = ACTIONS(9807), + [anon_sym_BSLASHsubfile] = ACTIONS(9807), + [anon_sym_BSLASHaddbibresource] = ACTIONS(9809), + [anon_sym_BSLASHbibliography] = ACTIONS(9811), + [anon_sym_BSLASHincludegraphics] = ACTIONS(9813), + [anon_sym_BSLASHincludesvg] = ACTIONS(9815), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(9817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(9819), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(9819), + [anon_sym_BSLASHimport] = ACTIONS(9821), + [anon_sym_BSLASHsubimport] = ACTIONS(9821), + [anon_sym_BSLASHinputfrom] = ACTIONS(9821), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(9821), + [anon_sym_BSLASHincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(9821), + [anon_sym_BSLASHlabel] = ACTIONS(9823), + [anon_sym_BSLASHref] = ACTIONS(9825), + [anon_sym_BSLASHvref] = ACTIONS(9825), + [anon_sym_BSLASHVref] = ACTIONS(9825), + [anon_sym_BSLASHautoref] = ACTIONS(9825), + [anon_sym_BSLASHpageref] = ACTIONS(9825), + [anon_sym_BSLASHcref] = ACTIONS(9825), + [anon_sym_BSLASHCref] = ACTIONS(9825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(9827), + [anon_sym_BSLASHnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnameCref] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(9825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(9825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(9825), + [anon_sym_BSLASHlabelcref] = ACTIONS(9825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(9825), + [anon_sym_BSLASHeqref] = ACTIONS(9829), + [anon_sym_BSLASHcrefrange] = ACTIONS(9831), + [anon_sym_BSLASHCrefrange] = ACTIONS(9831), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(9833), + [anon_sym_BSLASHnewlabel] = ACTIONS(9835), + [anon_sym_BSLASHnewcommand] = ACTIONS(9837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(9837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(9839), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(9841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(9843), + [anon_sym_BSLASHgls] = ACTIONS(9845), + [anon_sym_BSLASHGls] = ACTIONS(9845), + [anon_sym_BSLASHGLS] = ACTIONS(9845), + [anon_sym_BSLASHglspl] = ACTIONS(9845), + [anon_sym_BSLASHGlspl] = ACTIONS(9845), + [anon_sym_BSLASHGLSpl] = ACTIONS(9845), + [anon_sym_BSLASHglsdisp] = ACTIONS(9845), + [anon_sym_BSLASHglslink] = ACTIONS(9845), + [anon_sym_BSLASHglstext] = ACTIONS(9845), + [anon_sym_BSLASHGlstext] = ACTIONS(9845), + [anon_sym_BSLASHGLStext] = ACTIONS(9845), + [anon_sym_BSLASHglsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(9845), + [anon_sym_BSLASHglsplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSplural] = ACTIONS(9845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(9845), + [anon_sym_BSLASHglsname] = ACTIONS(9845), + [anon_sym_BSLASHGlsname] = ACTIONS(9845), + [anon_sym_BSLASHGLSname] = ACTIONS(9845), + [anon_sym_BSLASHglssymbol] = ACTIONS(9845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(9845), + [anon_sym_BSLASHglsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(9845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(9845), + [anon_sym_BSLASHglsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(9845), + [anon_sym_BSLASHglsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(9845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(9845), + [anon_sym_BSLASHglsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(9845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(9845), + [anon_sym_BSLASHglsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(9845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(9845), + [anon_sym_BSLASHnewacronym] = ACTIONS(9847), + [anon_sym_BSLASHacrshort] = ACTIONS(9849), + [anon_sym_BSLASHAcrshort] = ACTIONS(9849), + [anon_sym_BSLASHACRshort] = ACTIONS(9849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(9849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(9849), + [anon_sym_BSLASHacrlong] = ACTIONS(9849), + [anon_sym_BSLASHAcrlong] = ACTIONS(9849), + [anon_sym_BSLASHACRlong] = ACTIONS(9849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(9849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(9849), + [anon_sym_BSLASHacrfull] = ACTIONS(9849), + [anon_sym_BSLASHAcrfull] = ACTIONS(9849), + [anon_sym_BSLASHACRfull] = ACTIONS(9849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(9849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(9849), + [anon_sym_BSLASHacs] = ACTIONS(9849), + [anon_sym_BSLASHAcs] = ACTIONS(9849), + [anon_sym_BSLASHacsp] = ACTIONS(9849), + [anon_sym_BSLASHAcsp] = ACTIONS(9849), + [anon_sym_BSLASHacl] = ACTIONS(9849), + [anon_sym_BSLASHAcl] = ACTIONS(9849), + [anon_sym_BSLASHaclp] = ACTIONS(9849), + [anon_sym_BSLASHAclp] = ACTIONS(9849), + [anon_sym_BSLASHacf] = ACTIONS(9849), + [anon_sym_BSLASHAcf] = ACTIONS(9849), + [anon_sym_BSLASHacfp] = ACTIONS(9849), + [anon_sym_BSLASHAcfp] = ACTIONS(9849), + [anon_sym_BSLASHac] = ACTIONS(9849), + [anon_sym_BSLASHAc] = ACTIONS(9849), + [anon_sym_BSLASHacp] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(9849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(9849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(9849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(9849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(9851), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(9851), + [anon_sym_BSLASHcolor] = ACTIONS(9853), + [anon_sym_BSLASHcolorbox] = ACTIONS(9853), + [anon_sym_BSLASHtextcolor] = ACTIONS(9853), + [anon_sym_BSLASHpagecolor] = ACTIONS(9853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(9855), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(9857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(9859), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(9861), + }, + [452] = { + [sym__simple_content] = STATE(452), + [sym_brace_group] = STATE(452), + [sym_mixed_group] = STATE(452), + [sym_text] = STATE(452), + [sym__text_fragment] = STATE(1264), + [sym_displayed_equation] = STATE(452), + [sym_inline_formula] = STATE(452), + [sym_begin] = STATE(99), + [sym_environment] = STATE(452), + [sym_caption] = STATE(452), + [sym_citation] = STATE(452), + [sym_package_include] = STATE(452), + [sym_class_include] = STATE(452), + [sym_latex_include] = STATE(452), + [sym_latex_input] = STATE(452), + [sym_biblatex_include] = STATE(452), + [sym_bibtex_include] = STATE(452), + [sym_graphics_include] = STATE(452), + [sym_svg_include] = STATE(452), + [sym_inkscape_include] = STATE(452), + [sym_verbatim_include] = STATE(452), + [sym_import] = STATE(452), + [sym_label_definition] = STATE(452), + [sym_label_reference] = STATE(452), + [sym_equation_label_reference] = STATE(452), + [sym_label_reference_range] = STATE(452), + [sym_label_number] = STATE(452), + [sym_command_definition] = STATE(452), + [sym_math_operator] = STATE(452), + [sym_glossary_entry_definition] = STATE(452), + [sym_glossary_entry_reference] = STATE(452), + [sym_acronym_definition] = STATE(452), + [sym_acronym_reference] = STATE(452), + [sym_theorem_definition] = STATE(452), + [sym_color_reference] = STATE(452), + [sym_color_definition] = STATE(452), + [sym_color_set_definition] = STATE(452), + [sym_pgf_library_import] = STATE(452), + [sym_tikz_library_import] = STATE(452), + [sym_generic_command] = STATE(452), + [aux_sym_enum_item_repeat1] = STATE(452), + [aux_sym_text_repeat1] = STATE(1264), + [sym_generic_command_name] = ACTIONS(11032), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(6045), + [aux_sym_subparagraph_token1] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(11035), + [anon_sym_RBRACK] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(11038), + [anon_sym_RBRACE] = ACTIONS(6040), + [anon_sym_LPAREN] = ACTIONS(11035), + [anon_sym_COMMA] = ACTIONS(11041), + [anon_sym_EQ] = ACTIONS(11041), + [sym_word] = ACTIONS(11041), + [sym_param] = ACTIONS(11044), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11047), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11047), + [anon_sym_DOLLAR] = ACTIONS(11050), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11053), + [anon_sym_BSLASHbegin] = ACTIONS(6068), + [anon_sym_BSLASHcaption] = ACTIONS(11056), + [anon_sym_BSLASHcite] = ACTIONS(11059), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11062), + [anon_sym_BSLASHCite] = ACTIONS(11059), + [anon_sym_BSLASHnocite] = ACTIONS(11059), + [anon_sym_BSLASHcitet] = ACTIONS(11059), + [anon_sym_BSLASHcitep] = ACTIONS(11059), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11062), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11062), + [anon_sym_BSLASHciteauthor] = ACTIONS(11059), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11062), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11059), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11062), + [anon_sym_BSLASHcitetitle] = ACTIONS(11059), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11062), + [anon_sym_BSLASHciteyear] = ACTIONS(11059), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11062), + [anon_sym_BSLASHcitedate] = ACTIONS(11059), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11062), + [anon_sym_BSLASHciteurl] = ACTIONS(11059), + [anon_sym_BSLASHfullcite] = ACTIONS(11059), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11059), + [anon_sym_BSLASHcitealt] = ACTIONS(11059), + [anon_sym_BSLASHcitealp] = ACTIONS(11059), + [anon_sym_BSLASHcitetext] = ACTIONS(11059), + [anon_sym_BSLASHparencite] = ACTIONS(11059), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11062), + [anon_sym_BSLASHParencite] = ACTIONS(11059), + [anon_sym_BSLASHfootcite] = ACTIONS(11059), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11059), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11059), + [anon_sym_BSLASHtextcite] = ACTIONS(11059), + [anon_sym_BSLASHTextcite] = ACTIONS(11059), + [anon_sym_BSLASHsmartcite] = ACTIONS(11059), + [anon_sym_BSLASHSmartcite] = ACTIONS(11059), + [anon_sym_BSLASHsupercite] = ACTIONS(11059), + [anon_sym_BSLASHautocite] = ACTIONS(11059), + [anon_sym_BSLASHAutocite] = ACTIONS(11059), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11062), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11062), + [anon_sym_BSLASHvolcite] = ACTIONS(11059), + [anon_sym_BSLASHVolcite] = ACTIONS(11059), + [anon_sym_BSLASHpvolcite] = ACTIONS(11059), + [anon_sym_BSLASHPvolcite] = ACTIONS(11059), + [anon_sym_BSLASHfvolcite] = ACTIONS(11059), + [anon_sym_BSLASHftvolcite] = ACTIONS(11059), + [anon_sym_BSLASHsvolcite] = ACTIONS(11059), + [anon_sym_BSLASHSvolcite] = ACTIONS(11059), + [anon_sym_BSLASHtvolcite] = ACTIONS(11059), + [anon_sym_BSLASHTvolcite] = ACTIONS(11059), + [anon_sym_BSLASHavolcite] = ACTIONS(11059), + [anon_sym_BSLASHAvolcite] = ACTIONS(11059), + [anon_sym_BSLASHnotecite] = ACTIONS(11059), + [anon_sym_BSLASHpnotecite] = ACTIONS(11059), + [anon_sym_BSLASHPnotecite] = ACTIONS(11059), + [anon_sym_BSLASHfnotecite] = ACTIONS(11059), + [anon_sym_BSLASHusepackage] = ACTIONS(11065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11068), + [anon_sym_BSLASHinclude] = ACTIONS(11071), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11071), + [anon_sym_BSLASHinput] = ACTIONS(11074), + [anon_sym_BSLASHsubfile] = ACTIONS(11074), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11077), + [anon_sym_BSLASHbibliography] = ACTIONS(11080), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11083), + [anon_sym_BSLASHincludesvg] = ACTIONS(11086), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11092), + [anon_sym_BSLASHimport] = ACTIONS(11095), + [anon_sym_BSLASHsubimport] = ACTIONS(11095), + [anon_sym_BSLASHinputfrom] = ACTIONS(11095), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11095), + [anon_sym_BSLASHincludefrom] = ACTIONS(11095), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11095), + [anon_sym_BSLASHlabel] = ACTIONS(11098), + [anon_sym_BSLASHref] = ACTIONS(11101), + [anon_sym_BSLASHvref] = ACTIONS(11101), + [anon_sym_BSLASHVref] = ACTIONS(11101), + [anon_sym_BSLASHautoref] = ACTIONS(11101), + [anon_sym_BSLASHpageref] = ACTIONS(11101), + [anon_sym_BSLASHcref] = ACTIONS(11101), + [anon_sym_BSLASHCref] = ACTIONS(11101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11104), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11104), + [anon_sym_BSLASHnamecref] = ACTIONS(11101), + [anon_sym_BSLASHnameCref] = ACTIONS(11101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11101), + [anon_sym_BSLASHlabelcref] = ACTIONS(11101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11101), + [anon_sym_BSLASHeqref] = ACTIONS(11107), + [anon_sym_BSLASHcrefrange] = ACTIONS(11110), + [anon_sym_BSLASHCrefrange] = ACTIONS(11110), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11113), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11113), + [anon_sym_BSLASHnewlabel] = ACTIONS(11116), + [anon_sym_BSLASHnewcommand] = ACTIONS(11119), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11119), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11119), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11122), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11128), + [anon_sym_BSLASHgls] = ACTIONS(11131), + [anon_sym_BSLASHGls] = ACTIONS(11131), + [anon_sym_BSLASHGLS] = ACTIONS(11131), + [anon_sym_BSLASHglspl] = ACTIONS(11131), + [anon_sym_BSLASHGlspl] = ACTIONS(11131), + [anon_sym_BSLASHGLSpl] = ACTIONS(11131), + [anon_sym_BSLASHglsdisp] = ACTIONS(11131), + [anon_sym_BSLASHglslink] = ACTIONS(11131), + [anon_sym_BSLASHglstext] = ACTIONS(11131), + [anon_sym_BSLASHGlstext] = ACTIONS(11131), + [anon_sym_BSLASHGLStext] = ACTIONS(11131), + [anon_sym_BSLASHglsfirst] = ACTIONS(11131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11131), + [anon_sym_BSLASHglsplural] = ACTIONS(11131), + [anon_sym_BSLASHGlsplural] = ACTIONS(11131), + [anon_sym_BSLASHGLSplural] = ACTIONS(11131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11131), + [anon_sym_BSLASHglsname] = ACTIONS(11131), + [anon_sym_BSLASHGlsname] = ACTIONS(11131), + [anon_sym_BSLASHGLSname] = ACTIONS(11131), + [anon_sym_BSLASHglssymbol] = ACTIONS(11131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11131), + [anon_sym_BSLASHglsdesc] = ACTIONS(11131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11131), + [anon_sym_BSLASHglsuseri] = ACTIONS(11131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11131), + [anon_sym_BSLASHglsuserii] = ACTIONS(11131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11131), + [anon_sym_BSLASHglsuserv] = ACTIONS(11131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11131), + [anon_sym_BSLASHglsuservi] = ACTIONS(11131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11131), + [anon_sym_BSLASHnewacronym] = ACTIONS(11134), + [anon_sym_BSLASHacrshort] = ACTIONS(11137), + [anon_sym_BSLASHAcrshort] = ACTIONS(11137), + [anon_sym_BSLASHACRshort] = ACTIONS(11137), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11137), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11137), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11137), + [anon_sym_BSLASHacrlong] = ACTIONS(11137), + [anon_sym_BSLASHAcrlong] = ACTIONS(11137), + [anon_sym_BSLASHACRlong] = ACTIONS(11137), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11137), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11137), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11137), + [anon_sym_BSLASHacrfull] = ACTIONS(11137), + [anon_sym_BSLASHAcrfull] = ACTIONS(11137), + [anon_sym_BSLASHACRfull] = ACTIONS(11137), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11137), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11137), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11137), + [anon_sym_BSLASHacs] = ACTIONS(11137), + [anon_sym_BSLASHAcs] = ACTIONS(11137), + [anon_sym_BSLASHacsp] = ACTIONS(11137), + [anon_sym_BSLASHAcsp] = ACTIONS(11137), + [anon_sym_BSLASHacl] = ACTIONS(11137), + [anon_sym_BSLASHAcl] = ACTIONS(11137), + [anon_sym_BSLASHaclp] = ACTIONS(11137), + [anon_sym_BSLASHAclp] = ACTIONS(11137), + [anon_sym_BSLASHacf] = ACTIONS(11137), + [anon_sym_BSLASHAcf] = ACTIONS(11137), + [anon_sym_BSLASHacfp] = ACTIONS(11137), + [anon_sym_BSLASHAcfp] = ACTIONS(11137), + [anon_sym_BSLASHac] = ACTIONS(11137), + [anon_sym_BSLASHAc] = ACTIONS(11137), + [anon_sym_BSLASHacp] = ACTIONS(11137), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11137), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11137), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11137), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11137), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11137), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11137), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11137), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11137), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11137), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11137), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11140), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11140), + [anon_sym_BSLASHcolor] = ACTIONS(11143), + [anon_sym_BSLASHcolorbox] = ACTIONS(11143), + [anon_sym_BSLASHtextcolor] = ACTIONS(11143), + [anon_sym_BSLASHpagecolor] = ACTIONS(11143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11146), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11155), + }, + [453] = { + [sym__simple_content] = STATE(453), + [sym_enum_item] = STATE(453), + [sym_brace_group] = STATE(453), + [sym_mixed_group] = STATE(453), + [sym_text] = STATE(453), + [sym__text_fragment] = STATE(1388), + [sym_displayed_equation] = STATE(453), + [sym_inline_formula] = STATE(453), + [sym_begin] = STATE(83), + [sym_environment] = STATE(453), + [sym_caption] = STATE(453), + [sym_citation] = STATE(453), + [sym_package_include] = STATE(453), + [sym_class_include] = STATE(453), + [sym_latex_include] = STATE(453), + [sym_latex_input] = STATE(453), + [sym_biblatex_include] = STATE(453), + [sym_bibtex_include] = STATE(453), + [sym_graphics_include] = STATE(453), + [sym_svg_include] = STATE(453), + [sym_inkscape_include] = STATE(453), + [sym_verbatim_include] = STATE(453), + [sym_import] = STATE(453), + [sym_label_definition] = STATE(453), + [sym_label_reference] = STATE(453), + [sym_equation_label_reference] = STATE(453), + [sym_label_reference_range] = STATE(453), + [sym_label_number] = STATE(453), + [sym_command_definition] = STATE(453), + [sym_math_operator] = STATE(453), + [sym_glossary_entry_definition] = STATE(453), + [sym_glossary_entry_reference] = STATE(453), + [sym_acronym_definition] = STATE(453), + [sym_acronym_reference] = STATE(453), + [sym_theorem_definition] = STATE(453), + [sym_color_reference] = STATE(453), + [sym_color_definition] = STATE(453), + [sym_color_set_definition] = STATE(453), + [sym_pgf_library_import] = STATE(453), + [sym_tikz_library_import] = STATE(453), + [sym_generic_command] = STATE(453), + [aux_sym_subparagraph_repeat1] = STATE(453), + [aux_sym_text_repeat1] = STATE(1388), + [sym_generic_command_name] = ACTIONS(11158), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(5453), + [anon_sym_BSLASHitem] = ACTIONS(11161), + [anon_sym_LBRACK] = ACTIONS(11164), + [anon_sym_RBRACK] = ACTIONS(5448), + [anon_sym_LBRACE] = ACTIONS(11167), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(11164), + [anon_sym_COMMA] = ACTIONS(11170), + [anon_sym_EQ] = ACTIONS(11170), + [sym_word] = ACTIONS(11170), + [sym_param] = ACTIONS(11173), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11176), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11176), + [anon_sym_DOLLAR] = ACTIONS(11179), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11182), + [anon_sym_BSLASHbegin] = ACTIONS(5479), + [anon_sym_BSLASHcaption] = ACTIONS(11185), + [anon_sym_BSLASHcite] = ACTIONS(11188), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11191), + [anon_sym_BSLASHCite] = ACTIONS(11188), + [anon_sym_BSLASHnocite] = ACTIONS(11188), + [anon_sym_BSLASHcitet] = ACTIONS(11188), + [anon_sym_BSLASHcitep] = ACTIONS(11188), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11191), + [anon_sym_BSLASHciteauthor] = ACTIONS(11188), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11188), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11191), + [anon_sym_BSLASHcitetitle] = ACTIONS(11188), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11191), + [anon_sym_BSLASHciteyear] = ACTIONS(11188), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11191), + [anon_sym_BSLASHcitedate] = ACTIONS(11188), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11191), + [anon_sym_BSLASHciteurl] = ACTIONS(11188), + [anon_sym_BSLASHfullcite] = ACTIONS(11188), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11188), + [anon_sym_BSLASHcitealt] = ACTIONS(11188), + [anon_sym_BSLASHcitealp] = ACTIONS(11188), + [anon_sym_BSLASHcitetext] = ACTIONS(11188), + [anon_sym_BSLASHparencite] = ACTIONS(11188), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11191), + [anon_sym_BSLASHParencite] = ACTIONS(11188), + [anon_sym_BSLASHfootcite] = ACTIONS(11188), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11188), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11188), + [anon_sym_BSLASHtextcite] = ACTIONS(11188), + [anon_sym_BSLASHTextcite] = ACTIONS(11188), + [anon_sym_BSLASHsmartcite] = ACTIONS(11188), + [anon_sym_BSLASHSmartcite] = ACTIONS(11188), + [anon_sym_BSLASHsupercite] = ACTIONS(11188), + [anon_sym_BSLASHautocite] = ACTIONS(11188), + [anon_sym_BSLASHAutocite] = ACTIONS(11188), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11191), + [anon_sym_BSLASHvolcite] = ACTIONS(11188), + [anon_sym_BSLASHVolcite] = ACTIONS(11188), + [anon_sym_BSLASHpvolcite] = ACTIONS(11188), + [anon_sym_BSLASHPvolcite] = ACTIONS(11188), + [anon_sym_BSLASHfvolcite] = ACTIONS(11188), + [anon_sym_BSLASHftvolcite] = ACTIONS(11188), + [anon_sym_BSLASHsvolcite] = ACTIONS(11188), + [anon_sym_BSLASHSvolcite] = ACTIONS(11188), + [anon_sym_BSLASHtvolcite] = ACTIONS(11188), + [anon_sym_BSLASHTvolcite] = ACTIONS(11188), + [anon_sym_BSLASHavolcite] = ACTIONS(11188), + [anon_sym_BSLASHAvolcite] = ACTIONS(11188), + [anon_sym_BSLASHnotecite] = ACTIONS(11188), + [anon_sym_BSLASHpnotecite] = ACTIONS(11188), + [anon_sym_BSLASHPnotecite] = ACTIONS(11188), + [anon_sym_BSLASHfnotecite] = ACTIONS(11188), + [anon_sym_BSLASHusepackage] = ACTIONS(11194), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11194), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11197), + [anon_sym_BSLASHinclude] = ACTIONS(11200), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11200), + [anon_sym_BSLASHinput] = ACTIONS(11203), + [anon_sym_BSLASHsubfile] = ACTIONS(11203), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11206), + [anon_sym_BSLASHbibliography] = ACTIONS(11209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11212), + [anon_sym_BSLASHincludesvg] = ACTIONS(11215), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11218), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11221), + [anon_sym_BSLASHimport] = ACTIONS(11224), + [anon_sym_BSLASHsubimport] = ACTIONS(11224), + [anon_sym_BSLASHinputfrom] = ACTIONS(11224), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11224), + [anon_sym_BSLASHincludefrom] = ACTIONS(11224), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11224), + [anon_sym_BSLASHlabel] = ACTIONS(11227), + [anon_sym_BSLASHref] = ACTIONS(11230), + [anon_sym_BSLASHvref] = ACTIONS(11230), + [anon_sym_BSLASHVref] = ACTIONS(11230), + [anon_sym_BSLASHautoref] = ACTIONS(11230), + [anon_sym_BSLASHpageref] = ACTIONS(11230), + [anon_sym_BSLASHcref] = ACTIONS(11230), + [anon_sym_BSLASHCref] = ACTIONS(11230), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11233), + [anon_sym_BSLASHnamecref] = ACTIONS(11230), + [anon_sym_BSLASHnameCref] = ACTIONS(11230), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11230), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11230), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11230), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11230), + [anon_sym_BSLASHlabelcref] = ACTIONS(11230), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11230), + [anon_sym_BSLASHeqref] = ACTIONS(11236), + [anon_sym_BSLASHcrefrange] = ACTIONS(11239), + [anon_sym_BSLASHCrefrange] = ACTIONS(11239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11242), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11242), + [anon_sym_BSLASHnewlabel] = ACTIONS(11245), + [anon_sym_BSLASHnewcommand] = ACTIONS(11248), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11248), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11248), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11251), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11254), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11257), + [anon_sym_BSLASHgls] = ACTIONS(11260), + [anon_sym_BSLASHGls] = ACTIONS(11260), + [anon_sym_BSLASHGLS] = ACTIONS(11260), + [anon_sym_BSLASHglspl] = ACTIONS(11260), + [anon_sym_BSLASHGlspl] = ACTIONS(11260), + [anon_sym_BSLASHGLSpl] = ACTIONS(11260), + [anon_sym_BSLASHglsdisp] = ACTIONS(11260), + [anon_sym_BSLASHglslink] = ACTIONS(11260), + [anon_sym_BSLASHglstext] = ACTIONS(11260), + [anon_sym_BSLASHGlstext] = ACTIONS(11260), + [anon_sym_BSLASHGLStext] = ACTIONS(11260), + [anon_sym_BSLASHglsfirst] = ACTIONS(11260), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11260), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11260), + [anon_sym_BSLASHglsplural] = ACTIONS(11260), + [anon_sym_BSLASHGlsplural] = ACTIONS(11260), + [anon_sym_BSLASHGLSplural] = ACTIONS(11260), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11260), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11260), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11260), + [anon_sym_BSLASHglsname] = ACTIONS(11260), + [anon_sym_BSLASHGlsname] = ACTIONS(11260), + [anon_sym_BSLASHGLSname] = ACTIONS(11260), + [anon_sym_BSLASHglssymbol] = ACTIONS(11260), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11260), + [anon_sym_BSLASHglsdesc] = ACTIONS(11260), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11260), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11260), + [anon_sym_BSLASHglsuseri] = ACTIONS(11260), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11260), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11260), + [anon_sym_BSLASHglsuserii] = ACTIONS(11260), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11260), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11260), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11260), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11260), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11260), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11260), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11260), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11260), + [anon_sym_BSLASHglsuserv] = ACTIONS(11260), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11260), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11260), + [anon_sym_BSLASHglsuservi] = ACTIONS(11260), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11260), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11260), + [anon_sym_BSLASHnewacronym] = ACTIONS(11263), + [anon_sym_BSLASHacrshort] = ACTIONS(11266), + [anon_sym_BSLASHAcrshort] = ACTIONS(11266), + [anon_sym_BSLASHACRshort] = ACTIONS(11266), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11266), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11266), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11266), + [anon_sym_BSLASHacrlong] = ACTIONS(11266), + [anon_sym_BSLASHAcrlong] = ACTIONS(11266), + [anon_sym_BSLASHACRlong] = ACTIONS(11266), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11266), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11266), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11266), + [anon_sym_BSLASHacrfull] = ACTIONS(11266), + [anon_sym_BSLASHAcrfull] = ACTIONS(11266), + [anon_sym_BSLASHACRfull] = ACTIONS(11266), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11266), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11266), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11266), + [anon_sym_BSLASHacs] = ACTIONS(11266), + [anon_sym_BSLASHAcs] = ACTIONS(11266), + [anon_sym_BSLASHacsp] = ACTIONS(11266), + [anon_sym_BSLASHAcsp] = ACTIONS(11266), + [anon_sym_BSLASHacl] = ACTIONS(11266), + [anon_sym_BSLASHAcl] = ACTIONS(11266), + [anon_sym_BSLASHaclp] = ACTIONS(11266), + [anon_sym_BSLASHAclp] = ACTIONS(11266), + [anon_sym_BSLASHacf] = ACTIONS(11266), + [anon_sym_BSLASHAcf] = ACTIONS(11266), + [anon_sym_BSLASHacfp] = ACTIONS(11266), + [anon_sym_BSLASHAcfp] = ACTIONS(11266), + [anon_sym_BSLASHac] = ACTIONS(11266), + [anon_sym_BSLASHAc] = ACTIONS(11266), + [anon_sym_BSLASHacp] = ACTIONS(11266), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11266), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11266), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11266), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11266), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11266), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11266), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11266), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11266), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11266), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11266), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11269), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11269), + [anon_sym_BSLASHcolor] = ACTIONS(11272), + [anon_sym_BSLASHcolorbox] = ACTIONS(11272), + [anon_sym_BSLASHtextcolor] = ACTIONS(11272), + [anon_sym_BSLASHpagecolor] = ACTIONS(11272), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11275), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11278), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11281), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11284), + }, + [454] = { + [sym__simple_content] = STATE(458), + [sym_brace_group] = STATE(458), + [sym_mixed_group] = STATE(458), + [sym_text] = STATE(458), + [sym__text_fragment] = STATE(1388), + [sym_displayed_equation] = STATE(458), + [sym_inline_formula] = STATE(458), + [sym_begin] = STATE(83), + [sym_environment] = STATE(458), + [sym_caption] = STATE(458), + [sym_citation] = STATE(458), + [sym_package_include] = STATE(458), + [sym_class_include] = STATE(458), + [sym_latex_include] = STATE(458), + [sym_latex_input] = STATE(458), + [sym_biblatex_include] = STATE(458), + [sym_bibtex_include] = STATE(458), + [sym_graphics_include] = STATE(458), + [sym_svg_include] = STATE(458), + [sym_inkscape_include] = STATE(458), + [sym_verbatim_include] = STATE(458), + [sym_import] = STATE(458), + [sym_label_definition] = STATE(458), + [sym_label_reference] = STATE(458), + [sym_equation_label_reference] = STATE(458), + [sym_label_reference_range] = STATE(458), + [sym_label_number] = STATE(458), + [sym_command_definition] = STATE(458), + [sym_math_operator] = STATE(458), + [sym_glossary_entry_definition] = STATE(458), + [sym_glossary_entry_reference] = STATE(458), + [sym_acronym_definition] = STATE(458), + [sym_acronym_reference] = STATE(458), + [sym_theorem_definition] = STATE(458), + [sym_color_reference] = STATE(458), + [sym_color_definition] = STATE(458), + [sym_color_set_definition] = STATE(458), + [sym_pgf_library_import] = STATE(458), + [sym_tikz_library_import] = STATE(458), + [sym_generic_command] = STATE(458), + [aux_sym_enum_item_repeat1] = STATE(458), + [aux_sym_text_repeat1] = STATE(1388), + [sym_generic_command_name] = ACTIONS(10663), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(6177), + [anon_sym_BSLASHitem] = ACTIONS(6177), + [anon_sym_LBRACK] = ACTIONS(10669), + [anon_sym_RBRACK] = ACTIONS(6175), + [anon_sym_LBRACE] = ACTIONS(10671), + [anon_sym_RBRACE] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(10669), + [anon_sym_COMMA] = ACTIONS(10673), + [anon_sym_EQ] = ACTIONS(10673), + [sym_word] = ACTIONS(10673), + [sym_param] = ACTIONS(11287), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10677), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10677), + [anon_sym_DOLLAR] = ACTIONS(10679), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10681), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(10683), + [anon_sym_BSLASHcite] = ACTIONS(10685), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCite] = ACTIONS(10685), + [anon_sym_BSLASHnocite] = ACTIONS(10685), + [anon_sym_BSLASHcitet] = ACTIONS(10685), + [anon_sym_BSLASHcitep] = ACTIONS(10685), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteauthor] = ACTIONS(10685), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10685), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitetitle] = ACTIONS(10685), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteyear] = ACTIONS(10685), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitedate] = ACTIONS(10685), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteurl] = ACTIONS(10685), + [anon_sym_BSLASHfullcite] = ACTIONS(10685), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10685), + [anon_sym_BSLASHcitealt] = ACTIONS(10685), + [anon_sym_BSLASHcitealp] = ACTIONS(10685), + [anon_sym_BSLASHcitetext] = ACTIONS(10685), + [anon_sym_BSLASHparencite] = ACTIONS(10685), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHParencite] = ACTIONS(10685), + [anon_sym_BSLASHfootcite] = ACTIONS(10685), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10685), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10685), + [anon_sym_BSLASHtextcite] = ACTIONS(10685), + [anon_sym_BSLASHTextcite] = ACTIONS(10685), + [anon_sym_BSLASHsmartcite] = ACTIONS(10685), + [anon_sym_BSLASHSmartcite] = ACTIONS(10685), + [anon_sym_BSLASHsupercite] = ACTIONS(10685), + [anon_sym_BSLASHautocite] = ACTIONS(10685), + [anon_sym_BSLASHAutocite] = ACTIONS(10685), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHvolcite] = ACTIONS(10685), + [anon_sym_BSLASHVolcite] = ACTIONS(10685), + [anon_sym_BSLASHpvolcite] = ACTIONS(10685), + [anon_sym_BSLASHPvolcite] = ACTIONS(10685), + [anon_sym_BSLASHfvolcite] = ACTIONS(10685), + [anon_sym_BSLASHftvolcite] = ACTIONS(10685), + [anon_sym_BSLASHsvolcite] = ACTIONS(10685), + [anon_sym_BSLASHSvolcite] = ACTIONS(10685), + [anon_sym_BSLASHtvolcite] = ACTIONS(10685), + [anon_sym_BSLASHTvolcite] = ACTIONS(10685), + [anon_sym_BSLASHavolcite] = ACTIONS(10685), + [anon_sym_BSLASHAvolcite] = ACTIONS(10685), + [anon_sym_BSLASHnotecite] = ACTIONS(10685), + [anon_sym_BSLASHpnotecite] = ACTIONS(10685), + [anon_sym_BSLASHPnotecite] = ACTIONS(10685), + [anon_sym_BSLASHfnotecite] = ACTIONS(10685), + [anon_sym_BSLASHusepackage] = ACTIONS(10689), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10689), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10691), + [anon_sym_BSLASHinclude] = ACTIONS(10693), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10693), + [anon_sym_BSLASHinput] = ACTIONS(10695), + [anon_sym_BSLASHsubfile] = ACTIONS(10695), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10697), + [anon_sym_BSLASHbibliography] = ACTIONS(10699), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10701), + [anon_sym_BSLASHincludesvg] = ACTIONS(10703), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10705), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10707), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10707), + [anon_sym_BSLASHimport] = ACTIONS(10709), + [anon_sym_BSLASHsubimport] = ACTIONS(10709), + [anon_sym_BSLASHinputfrom] = ACTIONS(10709), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10709), + [anon_sym_BSLASHincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHlabel] = ACTIONS(10711), + [anon_sym_BSLASHref] = ACTIONS(10713), + [anon_sym_BSLASHvref] = ACTIONS(10713), + [anon_sym_BSLASHVref] = ACTIONS(10713), + [anon_sym_BSLASHautoref] = ACTIONS(10713), + [anon_sym_BSLASHpageref] = ACTIONS(10713), + [anon_sym_BSLASHcref] = ACTIONS(10713), + [anon_sym_BSLASHCref] = ACTIONS(10713), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnameCref] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHlabelcref] = ACTIONS(10713), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10713), + [anon_sym_BSLASHeqref] = ACTIONS(10717), + [anon_sym_BSLASHcrefrange] = ACTIONS(10719), + [anon_sym_BSLASHCrefrange] = ACTIONS(10719), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHnewlabel] = ACTIONS(10723), + [anon_sym_BSLASHnewcommand] = ACTIONS(10725), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10727), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10729), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10731), + [anon_sym_BSLASHgls] = ACTIONS(10733), + [anon_sym_BSLASHGls] = ACTIONS(10733), + [anon_sym_BSLASHGLS] = ACTIONS(10733), + [anon_sym_BSLASHglspl] = ACTIONS(10733), + [anon_sym_BSLASHGlspl] = ACTIONS(10733), + [anon_sym_BSLASHGLSpl] = ACTIONS(10733), + [anon_sym_BSLASHglsdisp] = ACTIONS(10733), + [anon_sym_BSLASHglslink] = ACTIONS(10733), + [anon_sym_BSLASHglstext] = ACTIONS(10733), + [anon_sym_BSLASHGlstext] = ACTIONS(10733), + [anon_sym_BSLASHGLStext] = ACTIONS(10733), + [anon_sym_BSLASHglsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10733), + [anon_sym_BSLASHglsplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSplural] = ACTIONS(10733), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHglsname] = ACTIONS(10733), + [anon_sym_BSLASHGlsname] = ACTIONS(10733), + [anon_sym_BSLASHGLSname] = ACTIONS(10733), + [anon_sym_BSLASHglssymbol] = ACTIONS(10733), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10733), + [anon_sym_BSLASHglsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10733), + [anon_sym_BSLASHglsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10733), + [anon_sym_BSLASHglsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10733), + [anon_sym_BSLASHglsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10733), + [anon_sym_BSLASHglsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10733), + [anon_sym_BSLASHnewacronym] = ACTIONS(10735), + [anon_sym_BSLASHacrshort] = ACTIONS(10737), + [anon_sym_BSLASHAcrshort] = ACTIONS(10737), + [anon_sym_BSLASHACRshort] = ACTIONS(10737), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10737), + [anon_sym_BSLASHacrlong] = ACTIONS(10737), + [anon_sym_BSLASHAcrlong] = ACTIONS(10737), + [anon_sym_BSLASHACRlong] = ACTIONS(10737), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10737), + [anon_sym_BSLASHacrfull] = ACTIONS(10737), + [anon_sym_BSLASHAcrfull] = ACTIONS(10737), + [anon_sym_BSLASHACRfull] = ACTIONS(10737), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10737), + [anon_sym_BSLASHacs] = ACTIONS(10737), + [anon_sym_BSLASHAcs] = ACTIONS(10737), + [anon_sym_BSLASHacsp] = ACTIONS(10737), + [anon_sym_BSLASHAcsp] = ACTIONS(10737), + [anon_sym_BSLASHacl] = ACTIONS(10737), + [anon_sym_BSLASHAcl] = ACTIONS(10737), + [anon_sym_BSLASHaclp] = ACTIONS(10737), + [anon_sym_BSLASHAclp] = ACTIONS(10737), + [anon_sym_BSLASHacf] = ACTIONS(10737), + [anon_sym_BSLASHAcf] = ACTIONS(10737), + [anon_sym_BSLASHacfp] = ACTIONS(10737), + [anon_sym_BSLASHAcfp] = ACTIONS(10737), + [anon_sym_BSLASHac] = ACTIONS(10737), + [anon_sym_BSLASHAc] = ACTIONS(10737), + [anon_sym_BSLASHacp] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10739), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10739), + [anon_sym_BSLASHcolor] = ACTIONS(10741), + [anon_sym_BSLASHcolorbox] = ACTIONS(10741), + [anon_sym_BSLASHtextcolor] = ACTIONS(10741), + [anon_sym_BSLASHpagecolor] = ACTIONS(10741), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10743), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10745), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10747), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10749), + }, + [455] = { + [sym__simple_content] = STATE(454), + [sym_brace_group] = STATE(454), + [sym_mixed_group] = STATE(454), + [sym_text] = STATE(454), + [sym__text_fragment] = STATE(1388), + [sym_displayed_equation] = STATE(454), + [sym_inline_formula] = STATE(454), + [sym_begin] = STATE(83), + [sym_environment] = STATE(454), + [sym_caption] = STATE(454), + [sym_citation] = STATE(454), + [sym_package_include] = STATE(454), + [sym_class_include] = STATE(454), + [sym_latex_include] = STATE(454), + [sym_latex_input] = STATE(454), + [sym_biblatex_include] = STATE(454), + [sym_bibtex_include] = STATE(454), + [sym_graphics_include] = STATE(454), + [sym_svg_include] = STATE(454), + [sym_inkscape_include] = STATE(454), + [sym_verbatim_include] = STATE(454), + [sym_import] = STATE(454), + [sym_label_definition] = STATE(454), + [sym_label_reference] = STATE(454), + [sym_equation_label_reference] = STATE(454), + [sym_label_reference_range] = STATE(454), + [sym_label_number] = STATE(454), + [sym_command_definition] = STATE(454), + [sym_math_operator] = STATE(454), + [sym_glossary_entry_definition] = STATE(454), + [sym_glossary_entry_reference] = STATE(454), + [sym_acronym_definition] = STATE(454), + [sym_acronym_reference] = STATE(454), + [sym_theorem_definition] = STATE(454), + [sym_color_reference] = STATE(454), + [sym_color_definition] = STATE(454), + [sym_color_set_definition] = STATE(454), + [sym_pgf_library_import] = STATE(454), + [sym_tikz_library_import] = STATE(454), + [sym_generic_command] = STATE(454), + [aux_sym_enum_item_repeat1] = STATE(454), + [aux_sym_text_repeat1] = STATE(1388), + [sym_generic_command_name] = ACTIONS(10663), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(5606), + [anon_sym_BSLASHitem] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(10669), + [anon_sym_RBRACK] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(10671), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_LPAREN] = ACTIONS(10669), + [anon_sym_COMMA] = ACTIONS(10673), + [anon_sym_EQ] = ACTIONS(10673), + [sym_word] = ACTIONS(10673), + [sym_param] = ACTIONS(11289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10677), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10677), + [anon_sym_DOLLAR] = ACTIONS(10679), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10681), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(10683), + [anon_sym_BSLASHcite] = ACTIONS(10685), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCite] = ACTIONS(10685), + [anon_sym_BSLASHnocite] = ACTIONS(10685), + [anon_sym_BSLASHcitet] = ACTIONS(10685), + [anon_sym_BSLASHcitep] = ACTIONS(10685), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteauthor] = ACTIONS(10685), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10685), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitetitle] = ACTIONS(10685), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteyear] = ACTIONS(10685), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitedate] = ACTIONS(10685), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteurl] = ACTIONS(10685), + [anon_sym_BSLASHfullcite] = ACTIONS(10685), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10685), + [anon_sym_BSLASHcitealt] = ACTIONS(10685), + [anon_sym_BSLASHcitealp] = ACTIONS(10685), + [anon_sym_BSLASHcitetext] = ACTIONS(10685), + [anon_sym_BSLASHparencite] = ACTIONS(10685), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHParencite] = ACTIONS(10685), + [anon_sym_BSLASHfootcite] = ACTIONS(10685), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10685), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10685), + [anon_sym_BSLASHtextcite] = ACTIONS(10685), + [anon_sym_BSLASHTextcite] = ACTIONS(10685), + [anon_sym_BSLASHsmartcite] = ACTIONS(10685), + [anon_sym_BSLASHSmartcite] = ACTIONS(10685), + [anon_sym_BSLASHsupercite] = ACTIONS(10685), + [anon_sym_BSLASHautocite] = ACTIONS(10685), + [anon_sym_BSLASHAutocite] = ACTIONS(10685), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHvolcite] = ACTIONS(10685), + [anon_sym_BSLASHVolcite] = ACTIONS(10685), + [anon_sym_BSLASHpvolcite] = ACTIONS(10685), + [anon_sym_BSLASHPvolcite] = ACTIONS(10685), + [anon_sym_BSLASHfvolcite] = ACTIONS(10685), + [anon_sym_BSLASHftvolcite] = ACTIONS(10685), + [anon_sym_BSLASHsvolcite] = ACTIONS(10685), + [anon_sym_BSLASHSvolcite] = ACTIONS(10685), + [anon_sym_BSLASHtvolcite] = ACTIONS(10685), + [anon_sym_BSLASHTvolcite] = ACTIONS(10685), + [anon_sym_BSLASHavolcite] = ACTIONS(10685), + [anon_sym_BSLASHAvolcite] = ACTIONS(10685), + [anon_sym_BSLASHnotecite] = ACTIONS(10685), + [anon_sym_BSLASHpnotecite] = ACTIONS(10685), + [anon_sym_BSLASHPnotecite] = ACTIONS(10685), + [anon_sym_BSLASHfnotecite] = ACTIONS(10685), + [anon_sym_BSLASHusepackage] = ACTIONS(10689), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10689), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10691), + [anon_sym_BSLASHinclude] = ACTIONS(10693), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10693), + [anon_sym_BSLASHinput] = ACTIONS(10695), + [anon_sym_BSLASHsubfile] = ACTIONS(10695), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10697), + [anon_sym_BSLASHbibliography] = ACTIONS(10699), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10701), + [anon_sym_BSLASHincludesvg] = ACTIONS(10703), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10705), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10707), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10707), + [anon_sym_BSLASHimport] = ACTIONS(10709), + [anon_sym_BSLASHsubimport] = ACTIONS(10709), + [anon_sym_BSLASHinputfrom] = ACTIONS(10709), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10709), + [anon_sym_BSLASHincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHlabel] = ACTIONS(10711), + [anon_sym_BSLASHref] = ACTIONS(10713), + [anon_sym_BSLASHvref] = ACTIONS(10713), + [anon_sym_BSLASHVref] = ACTIONS(10713), + [anon_sym_BSLASHautoref] = ACTIONS(10713), + [anon_sym_BSLASHpageref] = ACTIONS(10713), + [anon_sym_BSLASHcref] = ACTIONS(10713), + [anon_sym_BSLASHCref] = ACTIONS(10713), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnameCref] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHlabelcref] = ACTIONS(10713), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10713), + [anon_sym_BSLASHeqref] = ACTIONS(10717), + [anon_sym_BSLASHcrefrange] = ACTIONS(10719), + [anon_sym_BSLASHCrefrange] = ACTIONS(10719), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHnewlabel] = ACTIONS(10723), + [anon_sym_BSLASHnewcommand] = ACTIONS(10725), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10727), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10729), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10731), + [anon_sym_BSLASHgls] = ACTIONS(10733), + [anon_sym_BSLASHGls] = ACTIONS(10733), + [anon_sym_BSLASHGLS] = ACTIONS(10733), + [anon_sym_BSLASHglspl] = ACTIONS(10733), + [anon_sym_BSLASHGlspl] = ACTIONS(10733), + [anon_sym_BSLASHGLSpl] = ACTIONS(10733), + [anon_sym_BSLASHglsdisp] = ACTIONS(10733), + [anon_sym_BSLASHglslink] = ACTIONS(10733), + [anon_sym_BSLASHglstext] = ACTIONS(10733), + [anon_sym_BSLASHGlstext] = ACTIONS(10733), + [anon_sym_BSLASHGLStext] = ACTIONS(10733), + [anon_sym_BSLASHglsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10733), + [anon_sym_BSLASHglsplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSplural] = ACTIONS(10733), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHglsname] = ACTIONS(10733), + [anon_sym_BSLASHGlsname] = ACTIONS(10733), + [anon_sym_BSLASHGLSname] = ACTIONS(10733), + [anon_sym_BSLASHglssymbol] = ACTIONS(10733), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10733), + [anon_sym_BSLASHglsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10733), + [anon_sym_BSLASHglsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10733), + [anon_sym_BSLASHglsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10733), + [anon_sym_BSLASHglsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10733), + [anon_sym_BSLASHglsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10733), + [anon_sym_BSLASHnewacronym] = ACTIONS(10735), + [anon_sym_BSLASHacrshort] = ACTIONS(10737), + [anon_sym_BSLASHAcrshort] = ACTIONS(10737), + [anon_sym_BSLASHACRshort] = ACTIONS(10737), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10737), + [anon_sym_BSLASHacrlong] = ACTIONS(10737), + [anon_sym_BSLASHAcrlong] = ACTIONS(10737), + [anon_sym_BSLASHACRlong] = ACTIONS(10737), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10737), + [anon_sym_BSLASHacrfull] = ACTIONS(10737), + [anon_sym_BSLASHAcrfull] = ACTIONS(10737), + [anon_sym_BSLASHACRfull] = ACTIONS(10737), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10737), + [anon_sym_BSLASHacs] = ACTIONS(10737), + [anon_sym_BSLASHAcs] = ACTIONS(10737), + [anon_sym_BSLASHacsp] = ACTIONS(10737), + [anon_sym_BSLASHAcsp] = ACTIONS(10737), + [anon_sym_BSLASHacl] = ACTIONS(10737), + [anon_sym_BSLASHAcl] = ACTIONS(10737), + [anon_sym_BSLASHaclp] = ACTIONS(10737), + [anon_sym_BSLASHAclp] = ACTIONS(10737), + [anon_sym_BSLASHacf] = ACTIONS(10737), + [anon_sym_BSLASHAcf] = ACTIONS(10737), + [anon_sym_BSLASHacfp] = ACTIONS(10737), + [anon_sym_BSLASHAcfp] = ACTIONS(10737), + [anon_sym_BSLASHac] = ACTIONS(10737), + [anon_sym_BSLASHAc] = ACTIONS(10737), + [anon_sym_BSLASHacp] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10739), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10739), + [anon_sym_BSLASHcolor] = ACTIONS(10741), + [anon_sym_BSLASHcolorbox] = ACTIONS(10741), + [anon_sym_BSLASHtextcolor] = ACTIONS(10741), + [anon_sym_BSLASHpagecolor] = ACTIONS(10741), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10743), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10745), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10747), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10749), + }, + [456] = { + [sym__simple_content] = STATE(460), + [sym_enum_item] = STATE(460), + [sym_brace_group] = STATE(460), + [sym_mixed_group] = STATE(460), + [sym_text] = STATE(460), + [sym__text_fragment] = STATE(1513), + [sym_displayed_equation] = STATE(460), + [sym_inline_formula] = STATE(460), + [sym_begin] = STATE(44), + [sym_environment] = STATE(460), + [sym_caption] = STATE(460), + [sym_citation] = STATE(460), + [sym_package_include] = STATE(460), + [sym_class_include] = STATE(460), + [sym_latex_include] = STATE(460), + [sym_latex_input] = STATE(460), + [sym_biblatex_include] = STATE(460), + [sym_bibtex_include] = STATE(460), + [sym_graphics_include] = STATE(460), + [sym_svg_include] = STATE(460), + [sym_inkscape_include] = STATE(460), + [sym_verbatim_include] = STATE(460), + [sym_import] = STATE(460), + [sym_label_definition] = STATE(460), + [sym_label_reference] = STATE(460), + [sym_equation_label_reference] = STATE(460), + [sym_label_reference_range] = STATE(460), + [sym_label_number] = STATE(460), + [sym_command_definition] = STATE(460), + [sym_math_operator] = STATE(460), + [sym_glossary_entry_definition] = STATE(460), + [sym_glossary_entry_reference] = STATE(460), + [sym_acronym_definition] = STATE(460), + [sym_acronym_reference] = STATE(460), + [sym_theorem_definition] = STATE(460), + [sym_color_reference] = STATE(460), + [sym_color_definition] = STATE(460), + [sym_color_set_definition] = STATE(460), + [sym_pgf_library_import] = STATE(460), + [sym_tikz_library_import] = STATE(460), + [sym_generic_command] = STATE(460), + [aux_sym_subparagraph_repeat1] = STATE(460), + [aux_sym_text_repeat1] = STATE(1513), + [sym_generic_command_name] = ACTIONS(11291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(11293), + [anon_sym_LBRACK] = ACTIONS(11295), + [anon_sym_RBRACK] = ACTIONS(5166), + [anon_sym_LBRACE] = ACTIONS(11297), + [anon_sym_RBRACE] = ACTIONS(5166), + [anon_sym_LPAREN] = ACTIONS(11295), + [anon_sym_COMMA] = ACTIONS(11299), + [anon_sym_EQ] = ACTIONS(11299), + [sym_word] = ACTIONS(11299), + [sym_param] = ACTIONS(11301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11303), + [anon_sym_DOLLAR] = ACTIONS(11305), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11307), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(11309), + [anon_sym_BSLASHcite] = ACTIONS(11311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHCite] = ACTIONS(11311), + [anon_sym_BSLASHnocite] = ACTIONS(11311), + [anon_sym_BSLASHcitet] = ACTIONS(11311), + [anon_sym_BSLASHcitep] = ACTIONS(11311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteauthor] = ACTIONS(11311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitetitle] = ACTIONS(11311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteyear] = ACTIONS(11311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitedate] = ACTIONS(11311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteurl] = ACTIONS(11311), + [anon_sym_BSLASHfullcite] = ACTIONS(11311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11311), + [anon_sym_BSLASHcitealt] = ACTIONS(11311), + [anon_sym_BSLASHcitealp] = ACTIONS(11311), + [anon_sym_BSLASHcitetext] = ACTIONS(11311), + [anon_sym_BSLASHparencite] = ACTIONS(11311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHParencite] = ACTIONS(11311), + [anon_sym_BSLASHfootcite] = ACTIONS(11311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11311), + [anon_sym_BSLASHtextcite] = ACTIONS(11311), + [anon_sym_BSLASHTextcite] = ACTIONS(11311), + [anon_sym_BSLASHsmartcite] = ACTIONS(11311), + [anon_sym_BSLASHSmartcite] = ACTIONS(11311), + [anon_sym_BSLASHsupercite] = ACTIONS(11311), + [anon_sym_BSLASHautocite] = ACTIONS(11311), + [anon_sym_BSLASHAutocite] = ACTIONS(11311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHvolcite] = ACTIONS(11311), + [anon_sym_BSLASHVolcite] = ACTIONS(11311), + [anon_sym_BSLASHpvolcite] = ACTIONS(11311), + [anon_sym_BSLASHPvolcite] = ACTIONS(11311), + [anon_sym_BSLASHfvolcite] = ACTIONS(11311), + [anon_sym_BSLASHftvolcite] = ACTIONS(11311), + [anon_sym_BSLASHsvolcite] = ACTIONS(11311), + [anon_sym_BSLASHSvolcite] = ACTIONS(11311), + [anon_sym_BSLASHtvolcite] = ACTIONS(11311), + [anon_sym_BSLASHTvolcite] = ACTIONS(11311), + [anon_sym_BSLASHavolcite] = ACTIONS(11311), + [anon_sym_BSLASHAvolcite] = ACTIONS(11311), + [anon_sym_BSLASHnotecite] = ACTIONS(11311), + [anon_sym_BSLASHpnotecite] = ACTIONS(11311), + [anon_sym_BSLASHPnotecite] = ACTIONS(11311), + [anon_sym_BSLASHfnotecite] = ACTIONS(11311), + [anon_sym_BSLASHusepackage] = ACTIONS(11315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11317), + [anon_sym_BSLASHinclude] = ACTIONS(11319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11319), + [anon_sym_BSLASHinput] = ACTIONS(11321), + [anon_sym_BSLASHsubfile] = ACTIONS(11321), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11323), + [anon_sym_BSLASHbibliography] = ACTIONS(11325), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11327), + [anon_sym_BSLASHincludesvg] = ACTIONS(11329), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11333), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11333), + [anon_sym_BSLASHimport] = ACTIONS(11335), + [anon_sym_BSLASHsubimport] = ACTIONS(11335), + [anon_sym_BSLASHinputfrom] = ACTIONS(11335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11335), + [anon_sym_BSLASHincludefrom] = ACTIONS(11335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11335), + [anon_sym_BSLASHlabel] = ACTIONS(11337), + [anon_sym_BSLASHref] = ACTIONS(11339), + [anon_sym_BSLASHvref] = ACTIONS(11339), + [anon_sym_BSLASHVref] = ACTIONS(11339), + [anon_sym_BSLASHautoref] = ACTIONS(11339), + [anon_sym_BSLASHpageref] = ACTIONS(11339), + [anon_sym_BSLASHcref] = ACTIONS(11339), + [anon_sym_BSLASHCref] = ACTIONS(11339), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11341), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11341), + [anon_sym_BSLASHnamecref] = ACTIONS(11339), + [anon_sym_BSLASHnameCref] = ACTIONS(11339), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11339), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11339), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11339), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11339), + [anon_sym_BSLASHlabelcref] = ACTIONS(11339), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11339), + [anon_sym_BSLASHeqref] = ACTIONS(11343), + [anon_sym_BSLASHcrefrange] = ACTIONS(11345), + [anon_sym_BSLASHCrefrange] = ACTIONS(11345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11347), + [anon_sym_BSLASHnewlabel] = ACTIONS(11349), + [anon_sym_BSLASHnewcommand] = ACTIONS(11351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11357), + [anon_sym_BSLASHgls] = ACTIONS(11359), + [anon_sym_BSLASHGls] = ACTIONS(11359), + [anon_sym_BSLASHGLS] = ACTIONS(11359), + [anon_sym_BSLASHglspl] = ACTIONS(11359), + [anon_sym_BSLASHGlspl] = ACTIONS(11359), + [anon_sym_BSLASHGLSpl] = ACTIONS(11359), + [anon_sym_BSLASHglsdisp] = ACTIONS(11359), + [anon_sym_BSLASHglslink] = ACTIONS(11359), + [anon_sym_BSLASHglstext] = ACTIONS(11359), + [anon_sym_BSLASHGlstext] = ACTIONS(11359), + [anon_sym_BSLASHGLStext] = ACTIONS(11359), + [anon_sym_BSLASHglsfirst] = ACTIONS(11359), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11359), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11359), + [anon_sym_BSLASHglsplural] = ACTIONS(11359), + [anon_sym_BSLASHGlsplural] = ACTIONS(11359), + [anon_sym_BSLASHGLSplural] = ACTIONS(11359), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHglsname] = ACTIONS(11359), + [anon_sym_BSLASHGlsname] = ACTIONS(11359), + [anon_sym_BSLASHGLSname] = ACTIONS(11359), + [anon_sym_BSLASHglssymbol] = ACTIONS(11359), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11359), + [anon_sym_BSLASHglsdesc] = ACTIONS(11359), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11359), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11359), + [anon_sym_BSLASHglsuseri] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11359), + [anon_sym_BSLASHglsuserii] = ACTIONS(11359), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11359), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11359), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11359), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11359), + [anon_sym_BSLASHglsuserv] = ACTIONS(11359), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11359), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11359), + [anon_sym_BSLASHglsuservi] = ACTIONS(11359), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11359), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11359), + [anon_sym_BSLASHnewacronym] = ACTIONS(11361), + [anon_sym_BSLASHacrshort] = ACTIONS(11363), + [anon_sym_BSLASHAcrshort] = ACTIONS(11363), + [anon_sym_BSLASHACRshort] = ACTIONS(11363), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11363), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11363), + [anon_sym_BSLASHacrlong] = ACTIONS(11363), + [anon_sym_BSLASHAcrlong] = ACTIONS(11363), + [anon_sym_BSLASHACRlong] = ACTIONS(11363), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11363), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11363), + [anon_sym_BSLASHacrfull] = ACTIONS(11363), + [anon_sym_BSLASHAcrfull] = ACTIONS(11363), + [anon_sym_BSLASHACRfull] = ACTIONS(11363), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11363), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11363), + [anon_sym_BSLASHacs] = ACTIONS(11363), + [anon_sym_BSLASHAcs] = ACTIONS(11363), + [anon_sym_BSLASHacsp] = ACTIONS(11363), + [anon_sym_BSLASHAcsp] = ACTIONS(11363), + [anon_sym_BSLASHacl] = ACTIONS(11363), + [anon_sym_BSLASHAcl] = ACTIONS(11363), + [anon_sym_BSLASHaclp] = ACTIONS(11363), + [anon_sym_BSLASHAclp] = ACTIONS(11363), + [anon_sym_BSLASHacf] = ACTIONS(11363), + [anon_sym_BSLASHAcf] = ACTIONS(11363), + [anon_sym_BSLASHacfp] = ACTIONS(11363), + [anon_sym_BSLASHAcfp] = ACTIONS(11363), + [anon_sym_BSLASHac] = ACTIONS(11363), + [anon_sym_BSLASHAc] = ACTIONS(11363), + [anon_sym_BSLASHacp] = ACTIONS(11363), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11363), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11363), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11363), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11363), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11363), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11363), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11365), + [anon_sym_BSLASHcolor] = ACTIONS(11367), + [anon_sym_BSLASHcolorbox] = ACTIONS(11367), + [anon_sym_BSLASHtextcolor] = ACTIONS(11367), + [anon_sym_BSLASHpagecolor] = ACTIONS(11367), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11371), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11375), + }, + [457] = { + [sym__simple_content] = STATE(459), + [sym_brace_group] = STATE(459), + [sym_mixed_group] = STATE(459), + [sym_text] = STATE(459), + [sym__text_fragment] = STATE(1388), + [sym_displayed_equation] = STATE(459), + [sym_inline_formula] = STATE(459), + [sym_begin] = STATE(83), + [sym_environment] = STATE(459), + [sym_caption] = STATE(459), + [sym_citation] = STATE(459), + [sym_package_include] = STATE(459), + [sym_class_include] = STATE(459), + [sym_latex_include] = STATE(459), + [sym_latex_input] = STATE(459), + [sym_biblatex_include] = STATE(459), + [sym_bibtex_include] = STATE(459), + [sym_graphics_include] = STATE(459), + [sym_svg_include] = STATE(459), + [sym_inkscape_include] = STATE(459), + [sym_verbatim_include] = STATE(459), + [sym_import] = STATE(459), + [sym_label_definition] = STATE(459), + [sym_label_reference] = STATE(459), + [sym_equation_label_reference] = STATE(459), + [sym_label_reference_range] = STATE(459), + [sym_label_number] = STATE(459), + [sym_command_definition] = STATE(459), + [sym_math_operator] = STATE(459), + [sym_glossary_entry_definition] = STATE(459), + [sym_glossary_entry_reference] = STATE(459), + [sym_acronym_definition] = STATE(459), + [sym_acronym_reference] = STATE(459), + [sym_theorem_definition] = STATE(459), + [sym_color_reference] = STATE(459), + [sym_color_definition] = STATE(459), + [sym_color_set_definition] = STATE(459), + [sym_pgf_library_import] = STATE(459), + [sym_tikz_library_import] = STATE(459), + [sym_generic_command] = STATE(459), + [aux_sym_enum_item_repeat1] = STATE(459), + [aux_sym_text_repeat1] = STATE(1388), + [sym_generic_command_name] = ACTIONS(10663), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(6034), + [anon_sym_BSLASHitem] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(11377), + [anon_sym_RBRACK] = ACTIONS(6032), + [anon_sym_LBRACE] = ACTIONS(10671), + [anon_sym_RBRACE] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(10669), + [anon_sym_COMMA] = ACTIONS(10673), + [anon_sym_EQ] = ACTIONS(10673), + [sym_word] = ACTIONS(10673), + [sym_param] = ACTIONS(11379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10677), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10677), + [anon_sym_DOLLAR] = ACTIONS(10679), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10681), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(10683), + [anon_sym_BSLASHcite] = ACTIONS(10685), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCite] = ACTIONS(10685), + [anon_sym_BSLASHnocite] = ACTIONS(10685), + [anon_sym_BSLASHcitet] = ACTIONS(10685), + [anon_sym_BSLASHcitep] = ACTIONS(10685), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteauthor] = ACTIONS(10685), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10685), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitetitle] = ACTIONS(10685), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteyear] = ACTIONS(10685), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitedate] = ACTIONS(10685), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteurl] = ACTIONS(10685), + [anon_sym_BSLASHfullcite] = ACTIONS(10685), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10685), + [anon_sym_BSLASHcitealt] = ACTIONS(10685), + [anon_sym_BSLASHcitealp] = ACTIONS(10685), + [anon_sym_BSLASHcitetext] = ACTIONS(10685), + [anon_sym_BSLASHparencite] = ACTIONS(10685), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHParencite] = ACTIONS(10685), + [anon_sym_BSLASHfootcite] = ACTIONS(10685), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10685), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10685), + [anon_sym_BSLASHtextcite] = ACTIONS(10685), + [anon_sym_BSLASHTextcite] = ACTIONS(10685), + [anon_sym_BSLASHsmartcite] = ACTIONS(10685), + [anon_sym_BSLASHSmartcite] = ACTIONS(10685), + [anon_sym_BSLASHsupercite] = ACTIONS(10685), + [anon_sym_BSLASHautocite] = ACTIONS(10685), + [anon_sym_BSLASHAutocite] = ACTIONS(10685), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHvolcite] = ACTIONS(10685), + [anon_sym_BSLASHVolcite] = ACTIONS(10685), + [anon_sym_BSLASHpvolcite] = ACTIONS(10685), + [anon_sym_BSLASHPvolcite] = ACTIONS(10685), + [anon_sym_BSLASHfvolcite] = ACTIONS(10685), + [anon_sym_BSLASHftvolcite] = ACTIONS(10685), + [anon_sym_BSLASHsvolcite] = ACTIONS(10685), + [anon_sym_BSLASHSvolcite] = ACTIONS(10685), + [anon_sym_BSLASHtvolcite] = ACTIONS(10685), + [anon_sym_BSLASHTvolcite] = ACTIONS(10685), + [anon_sym_BSLASHavolcite] = ACTIONS(10685), + [anon_sym_BSLASHAvolcite] = ACTIONS(10685), + [anon_sym_BSLASHnotecite] = ACTIONS(10685), + [anon_sym_BSLASHpnotecite] = ACTIONS(10685), + [anon_sym_BSLASHPnotecite] = ACTIONS(10685), + [anon_sym_BSLASHfnotecite] = ACTIONS(10685), + [anon_sym_BSLASHusepackage] = ACTIONS(10689), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10689), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10691), + [anon_sym_BSLASHinclude] = ACTIONS(10693), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10693), + [anon_sym_BSLASHinput] = ACTIONS(10695), + [anon_sym_BSLASHsubfile] = ACTIONS(10695), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10697), + [anon_sym_BSLASHbibliography] = ACTIONS(10699), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10701), + [anon_sym_BSLASHincludesvg] = ACTIONS(10703), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10705), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10707), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10707), + [anon_sym_BSLASHimport] = ACTIONS(10709), + [anon_sym_BSLASHsubimport] = ACTIONS(10709), + [anon_sym_BSLASHinputfrom] = ACTIONS(10709), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10709), + [anon_sym_BSLASHincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHlabel] = ACTIONS(10711), + [anon_sym_BSLASHref] = ACTIONS(10713), + [anon_sym_BSLASHvref] = ACTIONS(10713), + [anon_sym_BSLASHVref] = ACTIONS(10713), + [anon_sym_BSLASHautoref] = ACTIONS(10713), + [anon_sym_BSLASHpageref] = ACTIONS(10713), + [anon_sym_BSLASHcref] = ACTIONS(10713), + [anon_sym_BSLASHCref] = ACTIONS(10713), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnameCref] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHlabelcref] = ACTIONS(10713), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10713), + [anon_sym_BSLASHeqref] = ACTIONS(10717), + [anon_sym_BSLASHcrefrange] = ACTIONS(10719), + [anon_sym_BSLASHCrefrange] = ACTIONS(10719), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHnewlabel] = ACTIONS(10723), + [anon_sym_BSLASHnewcommand] = ACTIONS(10725), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10727), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10729), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10731), + [anon_sym_BSLASHgls] = ACTIONS(10733), + [anon_sym_BSLASHGls] = ACTIONS(10733), + [anon_sym_BSLASHGLS] = ACTIONS(10733), + [anon_sym_BSLASHglspl] = ACTIONS(10733), + [anon_sym_BSLASHGlspl] = ACTIONS(10733), + [anon_sym_BSLASHGLSpl] = ACTIONS(10733), + [anon_sym_BSLASHglsdisp] = ACTIONS(10733), + [anon_sym_BSLASHglslink] = ACTIONS(10733), + [anon_sym_BSLASHglstext] = ACTIONS(10733), + [anon_sym_BSLASHGlstext] = ACTIONS(10733), + [anon_sym_BSLASHGLStext] = ACTIONS(10733), + [anon_sym_BSLASHglsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10733), + [anon_sym_BSLASHglsplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSplural] = ACTIONS(10733), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHglsname] = ACTIONS(10733), + [anon_sym_BSLASHGlsname] = ACTIONS(10733), + [anon_sym_BSLASHGLSname] = ACTIONS(10733), + [anon_sym_BSLASHglssymbol] = ACTIONS(10733), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10733), + [anon_sym_BSLASHglsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10733), + [anon_sym_BSLASHglsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10733), + [anon_sym_BSLASHglsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10733), + [anon_sym_BSLASHglsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10733), + [anon_sym_BSLASHglsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10733), + [anon_sym_BSLASHnewacronym] = ACTIONS(10735), + [anon_sym_BSLASHacrshort] = ACTIONS(10737), + [anon_sym_BSLASHAcrshort] = ACTIONS(10737), + [anon_sym_BSLASHACRshort] = ACTIONS(10737), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10737), + [anon_sym_BSLASHacrlong] = ACTIONS(10737), + [anon_sym_BSLASHAcrlong] = ACTIONS(10737), + [anon_sym_BSLASHACRlong] = ACTIONS(10737), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10737), + [anon_sym_BSLASHacrfull] = ACTIONS(10737), + [anon_sym_BSLASHAcrfull] = ACTIONS(10737), + [anon_sym_BSLASHACRfull] = ACTIONS(10737), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10737), + [anon_sym_BSLASHacs] = ACTIONS(10737), + [anon_sym_BSLASHAcs] = ACTIONS(10737), + [anon_sym_BSLASHacsp] = ACTIONS(10737), + [anon_sym_BSLASHAcsp] = ACTIONS(10737), + [anon_sym_BSLASHacl] = ACTIONS(10737), + [anon_sym_BSLASHAcl] = ACTIONS(10737), + [anon_sym_BSLASHaclp] = ACTIONS(10737), + [anon_sym_BSLASHAclp] = ACTIONS(10737), + [anon_sym_BSLASHacf] = ACTIONS(10737), + [anon_sym_BSLASHAcf] = ACTIONS(10737), + [anon_sym_BSLASHacfp] = ACTIONS(10737), + [anon_sym_BSLASHAcfp] = ACTIONS(10737), + [anon_sym_BSLASHac] = ACTIONS(10737), + [anon_sym_BSLASHAc] = ACTIONS(10737), + [anon_sym_BSLASHacp] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10739), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10739), + [anon_sym_BSLASHcolor] = ACTIONS(10741), + [anon_sym_BSLASHcolorbox] = ACTIONS(10741), + [anon_sym_BSLASHtextcolor] = ACTIONS(10741), + [anon_sym_BSLASHpagecolor] = ACTIONS(10741), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10743), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10745), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10747), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10749), + }, + [458] = { + [sym__simple_content] = STATE(458), + [sym_brace_group] = STATE(458), + [sym_mixed_group] = STATE(458), + [sym_text] = STATE(458), + [sym__text_fragment] = STATE(1388), + [sym_displayed_equation] = STATE(458), + [sym_inline_formula] = STATE(458), + [sym_begin] = STATE(83), + [sym_environment] = STATE(458), + [sym_caption] = STATE(458), + [sym_citation] = STATE(458), + [sym_package_include] = STATE(458), + [sym_class_include] = STATE(458), + [sym_latex_include] = STATE(458), + [sym_latex_input] = STATE(458), + [sym_biblatex_include] = STATE(458), + [sym_bibtex_include] = STATE(458), + [sym_graphics_include] = STATE(458), + [sym_svg_include] = STATE(458), + [sym_inkscape_include] = STATE(458), + [sym_verbatim_include] = STATE(458), + [sym_import] = STATE(458), + [sym_label_definition] = STATE(458), + [sym_label_reference] = STATE(458), + [sym_equation_label_reference] = STATE(458), + [sym_label_reference_range] = STATE(458), + [sym_label_number] = STATE(458), + [sym_command_definition] = STATE(458), + [sym_math_operator] = STATE(458), + [sym_glossary_entry_definition] = STATE(458), + [sym_glossary_entry_reference] = STATE(458), + [sym_acronym_definition] = STATE(458), + [sym_acronym_reference] = STATE(458), + [sym_theorem_definition] = STATE(458), + [sym_color_reference] = STATE(458), + [sym_color_definition] = STATE(458), + [sym_color_set_definition] = STATE(458), + [sym_pgf_library_import] = STATE(458), + [sym_tikz_library_import] = STATE(458), + [sym_generic_command] = STATE(458), + [aux_sym_enum_item_repeat1] = STATE(458), + [aux_sym_text_repeat1] = STATE(1388), + [sym_generic_command_name] = ACTIONS(11381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(6045), + [anon_sym_BSLASHitem] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(11384), + [anon_sym_RBRACK] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(11387), + [anon_sym_RBRACE] = ACTIONS(6040), + [anon_sym_LPAREN] = ACTIONS(11384), + [anon_sym_COMMA] = ACTIONS(11390), + [anon_sym_EQ] = ACTIONS(11390), + [sym_word] = ACTIONS(11390), + [sym_param] = ACTIONS(11393), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11396), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11396), + [anon_sym_DOLLAR] = ACTIONS(11399), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11402), + [anon_sym_BSLASHbegin] = ACTIONS(6068), + [anon_sym_BSLASHcaption] = ACTIONS(11405), + [anon_sym_BSLASHcite] = ACTIONS(11408), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11411), + [anon_sym_BSLASHCite] = ACTIONS(11408), + [anon_sym_BSLASHnocite] = ACTIONS(11408), + [anon_sym_BSLASHcitet] = ACTIONS(11408), + [anon_sym_BSLASHcitep] = ACTIONS(11408), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11411), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11411), + [anon_sym_BSLASHciteauthor] = ACTIONS(11408), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11411), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11408), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11411), + [anon_sym_BSLASHcitetitle] = ACTIONS(11408), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11411), + [anon_sym_BSLASHciteyear] = ACTIONS(11408), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11411), + [anon_sym_BSLASHcitedate] = ACTIONS(11408), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11411), + [anon_sym_BSLASHciteurl] = ACTIONS(11408), + [anon_sym_BSLASHfullcite] = ACTIONS(11408), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11408), + [anon_sym_BSLASHcitealt] = ACTIONS(11408), + [anon_sym_BSLASHcitealp] = ACTIONS(11408), + [anon_sym_BSLASHcitetext] = ACTIONS(11408), + [anon_sym_BSLASHparencite] = ACTIONS(11408), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11411), + [anon_sym_BSLASHParencite] = ACTIONS(11408), + [anon_sym_BSLASHfootcite] = ACTIONS(11408), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11408), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11408), + [anon_sym_BSLASHtextcite] = ACTIONS(11408), + [anon_sym_BSLASHTextcite] = ACTIONS(11408), + [anon_sym_BSLASHsmartcite] = ACTIONS(11408), + [anon_sym_BSLASHSmartcite] = ACTIONS(11408), + [anon_sym_BSLASHsupercite] = ACTIONS(11408), + [anon_sym_BSLASHautocite] = ACTIONS(11408), + [anon_sym_BSLASHAutocite] = ACTIONS(11408), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11411), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11411), + [anon_sym_BSLASHvolcite] = ACTIONS(11408), + [anon_sym_BSLASHVolcite] = ACTIONS(11408), + [anon_sym_BSLASHpvolcite] = ACTIONS(11408), + [anon_sym_BSLASHPvolcite] = ACTIONS(11408), + [anon_sym_BSLASHfvolcite] = ACTIONS(11408), + [anon_sym_BSLASHftvolcite] = ACTIONS(11408), + [anon_sym_BSLASHsvolcite] = ACTIONS(11408), + [anon_sym_BSLASHSvolcite] = ACTIONS(11408), + [anon_sym_BSLASHtvolcite] = ACTIONS(11408), + [anon_sym_BSLASHTvolcite] = ACTIONS(11408), + [anon_sym_BSLASHavolcite] = ACTIONS(11408), + [anon_sym_BSLASHAvolcite] = ACTIONS(11408), + [anon_sym_BSLASHnotecite] = ACTIONS(11408), + [anon_sym_BSLASHpnotecite] = ACTIONS(11408), + [anon_sym_BSLASHPnotecite] = ACTIONS(11408), + [anon_sym_BSLASHfnotecite] = ACTIONS(11408), + [anon_sym_BSLASHusepackage] = ACTIONS(11414), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11414), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11417), + [anon_sym_BSLASHinclude] = ACTIONS(11420), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11420), + [anon_sym_BSLASHinput] = ACTIONS(11423), + [anon_sym_BSLASHsubfile] = ACTIONS(11423), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11426), + [anon_sym_BSLASHbibliography] = ACTIONS(11429), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11432), + [anon_sym_BSLASHincludesvg] = ACTIONS(11435), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11438), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11441), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11441), + [anon_sym_BSLASHimport] = ACTIONS(11444), + [anon_sym_BSLASHsubimport] = ACTIONS(11444), + [anon_sym_BSLASHinputfrom] = ACTIONS(11444), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11444), + [anon_sym_BSLASHincludefrom] = ACTIONS(11444), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11444), + [anon_sym_BSLASHlabel] = ACTIONS(11447), + [anon_sym_BSLASHref] = ACTIONS(11450), + [anon_sym_BSLASHvref] = ACTIONS(11450), + [anon_sym_BSLASHVref] = ACTIONS(11450), + [anon_sym_BSLASHautoref] = ACTIONS(11450), + [anon_sym_BSLASHpageref] = ACTIONS(11450), + [anon_sym_BSLASHcref] = ACTIONS(11450), + [anon_sym_BSLASHCref] = ACTIONS(11450), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11453), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11453), + [anon_sym_BSLASHnamecref] = ACTIONS(11450), + [anon_sym_BSLASHnameCref] = ACTIONS(11450), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11450), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11450), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11450), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11450), + [anon_sym_BSLASHlabelcref] = ACTIONS(11450), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11450), + [anon_sym_BSLASHeqref] = ACTIONS(11456), + [anon_sym_BSLASHcrefrange] = ACTIONS(11459), + [anon_sym_BSLASHCrefrange] = ACTIONS(11459), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11462), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11462), + [anon_sym_BSLASHnewlabel] = ACTIONS(11465), + [anon_sym_BSLASHnewcommand] = ACTIONS(11468), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11468), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11468), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11474), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11477), + [anon_sym_BSLASHgls] = ACTIONS(11480), + [anon_sym_BSLASHGls] = ACTIONS(11480), + [anon_sym_BSLASHGLS] = ACTIONS(11480), + [anon_sym_BSLASHglspl] = ACTIONS(11480), + [anon_sym_BSLASHGlspl] = ACTIONS(11480), + [anon_sym_BSLASHGLSpl] = ACTIONS(11480), + [anon_sym_BSLASHglsdisp] = ACTIONS(11480), + [anon_sym_BSLASHglslink] = ACTIONS(11480), + [anon_sym_BSLASHglstext] = ACTIONS(11480), + [anon_sym_BSLASHGlstext] = ACTIONS(11480), + [anon_sym_BSLASHGLStext] = ACTIONS(11480), + [anon_sym_BSLASHglsfirst] = ACTIONS(11480), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11480), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11480), + [anon_sym_BSLASHglsplural] = ACTIONS(11480), + [anon_sym_BSLASHGlsplural] = ACTIONS(11480), + [anon_sym_BSLASHGLSplural] = ACTIONS(11480), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11480), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11480), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11480), + [anon_sym_BSLASHglsname] = ACTIONS(11480), + [anon_sym_BSLASHGlsname] = ACTIONS(11480), + [anon_sym_BSLASHGLSname] = ACTIONS(11480), + [anon_sym_BSLASHglssymbol] = ACTIONS(11480), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11480), + [anon_sym_BSLASHglsdesc] = ACTIONS(11480), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11480), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11480), + [anon_sym_BSLASHglsuseri] = ACTIONS(11480), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11480), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11480), + [anon_sym_BSLASHglsuserii] = ACTIONS(11480), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11480), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11480), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11480), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11480), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11480), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11480), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11480), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11480), + [anon_sym_BSLASHglsuserv] = ACTIONS(11480), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11480), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11480), + [anon_sym_BSLASHglsuservi] = ACTIONS(11480), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11480), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11480), + [anon_sym_BSLASHnewacronym] = ACTIONS(11483), + [anon_sym_BSLASHacrshort] = ACTIONS(11486), + [anon_sym_BSLASHAcrshort] = ACTIONS(11486), + [anon_sym_BSLASHACRshort] = ACTIONS(11486), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11486), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11486), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11486), + [anon_sym_BSLASHacrlong] = ACTIONS(11486), + [anon_sym_BSLASHAcrlong] = ACTIONS(11486), + [anon_sym_BSLASHACRlong] = ACTIONS(11486), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11486), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11486), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11486), + [anon_sym_BSLASHacrfull] = ACTIONS(11486), + [anon_sym_BSLASHAcrfull] = ACTIONS(11486), + [anon_sym_BSLASHACRfull] = ACTIONS(11486), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11486), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11486), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11486), + [anon_sym_BSLASHacs] = ACTIONS(11486), + [anon_sym_BSLASHAcs] = ACTIONS(11486), + [anon_sym_BSLASHacsp] = ACTIONS(11486), + [anon_sym_BSLASHAcsp] = ACTIONS(11486), + [anon_sym_BSLASHacl] = ACTIONS(11486), + [anon_sym_BSLASHAcl] = ACTIONS(11486), + [anon_sym_BSLASHaclp] = ACTIONS(11486), + [anon_sym_BSLASHAclp] = ACTIONS(11486), + [anon_sym_BSLASHacf] = ACTIONS(11486), + [anon_sym_BSLASHAcf] = ACTIONS(11486), + [anon_sym_BSLASHacfp] = ACTIONS(11486), + [anon_sym_BSLASHAcfp] = ACTIONS(11486), + [anon_sym_BSLASHac] = ACTIONS(11486), + [anon_sym_BSLASHAc] = ACTIONS(11486), + [anon_sym_BSLASHacp] = ACTIONS(11486), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11486), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11486), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11486), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11486), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11486), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11486), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11486), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11486), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11486), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11486), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11489), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11489), + [anon_sym_BSLASHcolor] = ACTIONS(11492), + [anon_sym_BSLASHcolorbox] = ACTIONS(11492), + [anon_sym_BSLASHtextcolor] = ACTIONS(11492), + [anon_sym_BSLASHpagecolor] = ACTIONS(11492), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11495), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11498), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11501), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11504), + }, + [459] = { + [sym__simple_content] = STATE(458), + [sym_brace_group] = STATE(458), + [sym_mixed_group] = STATE(458), + [sym_text] = STATE(458), + [sym__text_fragment] = STATE(1388), + [sym_displayed_equation] = STATE(458), + [sym_inline_formula] = STATE(458), + [sym_begin] = STATE(83), + [sym_environment] = STATE(458), + [sym_caption] = STATE(458), + [sym_citation] = STATE(458), + [sym_package_include] = STATE(458), + [sym_class_include] = STATE(458), + [sym_latex_include] = STATE(458), + [sym_latex_input] = STATE(458), + [sym_biblatex_include] = STATE(458), + [sym_bibtex_include] = STATE(458), + [sym_graphics_include] = STATE(458), + [sym_svg_include] = STATE(458), + [sym_inkscape_include] = STATE(458), + [sym_verbatim_include] = STATE(458), + [sym_import] = STATE(458), + [sym_label_definition] = STATE(458), + [sym_label_reference] = STATE(458), + [sym_equation_label_reference] = STATE(458), + [sym_label_reference_range] = STATE(458), + [sym_label_number] = STATE(458), + [sym_command_definition] = STATE(458), + [sym_math_operator] = STATE(458), + [sym_glossary_entry_definition] = STATE(458), + [sym_glossary_entry_reference] = STATE(458), + [sym_acronym_definition] = STATE(458), + [sym_acronym_reference] = STATE(458), + [sym_theorem_definition] = STATE(458), + [sym_color_reference] = STATE(458), + [sym_color_definition] = STATE(458), + [sym_color_set_definition] = STATE(458), + [sym_pgf_library_import] = STATE(458), + [sym_tikz_library_import] = STATE(458), + [sym_generic_command] = STATE(458), + [aux_sym_enum_item_repeat1] = STATE(458), + [aux_sym_text_repeat1] = STATE(1388), + [sym_generic_command_name] = ACTIONS(10663), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(5600), + [anon_sym_BSLASHitem] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(10669), + [anon_sym_RBRACK] = ACTIONS(5598), + [anon_sym_LBRACE] = ACTIONS(10671), + [anon_sym_RBRACE] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(10669), + [anon_sym_COMMA] = ACTIONS(10673), + [anon_sym_EQ] = ACTIONS(10673), + [sym_word] = ACTIONS(10673), + [sym_param] = ACTIONS(11287), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(10677), + [anon_sym_BSLASH_LBRACK] = ACTIONS(10677), + [anon_sym_DOLLAR] = ACTIONS(10679), + [anon_sym_BSLASH_LPAREN] = ACTIONS(10681), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(10683), + [anon_sym_BSLASHcite] = ACTIONS(10685), + [anon_sym_BSLASHcite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCite] = ACTIONS(10685), + [anon_sym_BSLASHnocite] = ACTIONS(10685), + [anon_sym_BSLASHcitet] = ACTIONS(10685), + [anon_sym_BSLASHcitep] = ACTIONS(10685), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteauthor] = ACTIONS(10685), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHCiteauthor] = ACTIONS(10685), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitetitle] = ACTIONS(10685), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteyear] = ACTIONS(10685), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(10687), + [anon_sym_BSLASHcitedate] = ACTIONS(10685), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(10687), + [anon_sym_BSLASHciteurl] = ACTIONS(10685), + [anon_sym_BSLASHfullcite] = ACTIONS(10685), + [anon_sym_BSLASHciteyearpar] = ACTIONS(10685), + [anon_sym_BSLASHcitealt] = ACTIONS(10685), + [anon_sym_BSLASHcitealp] = ACTIONS(10685), + [anon_sym_BSLASHcitetext] = ACTIONS(10685), + [anon_sym_BSLASHparencite] = ACTIONS(10685), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHParencite] = ACTIONS(10685), + [anon_sym_BSLASHfootcite] = ACTIONS(10685), + [anon_sym_BSLASHfootfullcite] = ACTIONS(10685), + [anon_sym_BSLASHfootcitetext] = ACTIONS(10685), + [anon_sym_BSLASHtextcite] = ACTIONS(10685), + [anon_sym_BSLASHTextcite] = ACTIONS(10685), + [anon_sym_BSLASHsmartcite] = ACTIONS(10685), + [anon_sym_BSLASHSmartcite] = ACTIONS(10685), + [anon_sym_BSLASHsupercite] = ACTIONS(10685), + [anon_sym_BSLASHautocite] = ACTIONS(10685), + [anon_sym_BSLASHAutocite] = ACTIONS(10685), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(10687), + [anon_sym_BSLASHvolcite] = ACTIONS(10685), + [anon_sym_BSLASHVolcite] = ACTIONS(10685), + [anon_sym_BSLASHpvolcite] = ACTIONS(10685), + [anon_sym_BSLASHPvolcite] = ACTIONS(10685), + [anon_sym_BSLASHfvolcite] = ACTIONS(10685), + [anon_sym_BSLASHftvolcite] = ACTIONS(10685), + [anon_sym_BSLASHsvolcite] = ACTIONS(10685), + [anon_sym_BSLASHSvolcite] = ACTIONS(10685), + [anon_sym_BSLASHtvolcite] = ACTIONS(10685), + [anon_sym_BSLASHTvolcite] = ACTIONS(10685), + [anon_sym_BSLASHavolcite] = ACTIONS(10685), + [anon_sym_BSLASHAvolcite] = ACTIONS(10685), + [anon_sym_BSLASHnotecite] = ACTIONS(10685), + [anon_sym_BSLASHpnotecite] = ACTIONS(10685), + [anon_sym_BSLASHPnotecite] = ACTIONS(10685), + [anon_sym_BSLASHfnotecite] = ACTIONS(10685), + [anon_sym_BSLASHusepackage] = ACTIONS(10689), + [anon_sym_BSLASHRequirePackage] = ACTIONS(10689), + [anon_sym_BSLASHdocumentclass] = ACTIONS(10691), + [anon_sym_BSLASHinclude] = ACTIONS(10693), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(10693), + [anon_sym_BSLASHinput] = ACTIONS(10695), + [anon_sym_BSLASHsubfile] = ACTIONS(10695), + [anon_sym_BSLASHaddbibresource] = ACTIONS(10697), + [anon_sym_BSLASHbibliography] = ACTIONS(10699), + [anon_sym_BSLASHincludegraphics] = ACTIONS(10701), + [anon_sym_BSLASHincludesvg] = ACTIONS(10703), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(10705), + [anon_sym_BSLASHverbatiminput] = ACTIONS(10707), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(10707), + [anon_sym_BSLASHimport] = ACTIONS(10709), + [anon_sym_BSLASHsubimport] = ACTIONS(10709), + [anon_sym_BSLASHinputfrom] = ACTIONS(10709), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(10709), + [anon_sym_BSLASHincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(10709), + [anon_sym_BSLASHlabel] = ACTIONS(10711), + [anon_sym_BSLASHref] = ACTIONS(10713), + [anon_sym_BSLASHvref] = ACTIONS(10713), + [anon_sym_BSLASHVref] = ACTIONS(10713), + [anon_sym_BSLASHautoref] = ACTIONS(10713), + [anon_sym_BSLASHpageref] = ACTIONS(10713), + [anon_sym_BSLASHcref] = ACTIONS(10713), + [anon_sym_BSLASHCref] = ACTIONS(10713), + [anon_sym_BSLASHcref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHCref_STAR] = ACTIONS(10715), + [anon_sym_BSLASHnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnameCref] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecref] = ACTIONS(10713), + [anon_sym_BSLASHnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHnameCrefs] = ACTIONS(10713), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(10713), + [anon_sym_BSLASHlabelcref] = ACTIONS(10713), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(10713), + [anon_sym_BSLASHeqref] = ACTIONS(10717), + [anon_sym_BSLASHcrefrange] = ACTIONS(10719), + [anon_sym_BSLASHCrefrange] = ACTIONS(10719), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(10721), + [anon_sym_BSLASHnewlabel] = ACTIONS(10723), + [anon_sym_BSLASHnewcommand] = ACTIONS(10725), + [anon_sym_BSLASHrenewcommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(10725), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(10727), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(10729), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(10731), + [anon_sym_BSLASHgls] = ACTIONS(10733), + [anon_sym_BSLASHGls] = ACTIONS(10733), + [anon_sym_BSLASHGLS] = ACTIONS(10733), + [anon_sym_BSLASHglspl] = ACTIONS(10733), + [anon_sym_BSLASHGlspl] = ACTIONS(10733), + [anon_sym_BSLASHGLSpl] = ACTIONS(10733), + [anon_sym_BSLASHglsdisp] = ACTIONS(10733), + [anon_sym_BSLASHglslink] = ACTIONS(10733), + [anon_sym_BSLASHglstext] = ACTIONS(10733), + [anon_sym_BSLASHGlstext] = ACTIONS(10733), + [anon_sym_BSLASHGLStext] = ACTIONS(10733), + [anon_sym_BSLASHglsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirst] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirst] = ACTIONS(10733), + [anon_sym_BSLASHglsplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSplural] = ACTIONS(10733), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(10733), + [anon_sym_BSLASHglsname] = ACTIONS(10733), + [anon_sym_BSLASHGlsname] = ACTIONS(10733), + [anon_sym_BSLASHGLSname] = ACTIONS(10733), + [anon_sym_BSLASHglssymbol] = ACTIONS(10733), + [anon_sym_BSLASHGlssymbol] = ACTIONS(10733), + [anon_sym_BSLASHglsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGlsdesc] = ACTIONS(10733), + [anon_sym_BSLASHGLSdesc] = ACTIONS(10733), + [anon_sym_BSLASHglsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseri] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseri] = ACTIONS(10733), + [anon_sym_BSLASHglsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(10733), + [anon_sym_BSLASHglsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(10733), + [anon_sym_BSLASHglsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGlsuserv] = ACTIONS(10733), + [anon_sym_BSLASHGLSuserv] = ACTIONS(10733), + [anon_sym_BSLASHglsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGlsuservi] = ACTIONS(10733), + [anon_sym_BSLASHGLSuservi] = ACTIONS(10733), + [anon_sym_BSLASHnewacronym] = ACTIONS(10735), + [anon_sym_BSLASHacrshort] = ACTIONS(10737), + [anon_sym_BSLASHAcrshort] = ACTIONS(10737), + [anon_sym_BSLASHACRshort] = ACTIONS(10737), + [anon_sym_BSLASHacrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(10737), + [anon_sym_BSLASHACRshortpl] = ACTIONS(10737), + [anon_sym_BSLASHacrlong] = ACTIONS(10737), + [anon_sym_BSLASHAcrlong] = ACTIONS(10737), + [anon_sym_BSLASHACRlong] = ACTIONS(10737), + [anon_sym_BSLASHacrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(10737), + [anon_sym_BSLASHACRlongpl] = ACTIONS(10737), + [anon_sym_BSLASHacrfull] = ACTIONS(10737), + [anon_sym_BSLASHAcrfull] = ACTIONS(10737), + [anon_sym_BSLASHACRfull] = ACTIONS(10737), + [anon_sym_BSLASHacrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(10737), + [anon_sym_BSLASHACRfullpl] = ACTIONS(10737), + [anon_sym_BSLASHacs] = ACTIONS(10737), + [anon_sym_BSLASHAcs] = ACTIONS(10737), + [anon_sym_BSLASHacsp] = ACTIONS(10737), + [anon_sym_BSLASHAcsp] = ACTIONS(10737), + [anon_sym_BSLASHacl] = ACTIONS(10737), + [anon_sym_BSLASHAcl] = ACTIONS(10737), + [anon_sym_BSLASHaclp] = ACTIONS(10737), + [anon_sym_BSLASHAclp] = ACTIONS(10737), + [anon_sym_BSLASHacf] = ACTIONS(10737), + [anon_sym_BSLASHAcf] = ACTIONS(10737), + [anon_sym_BSLASHacfp] = ACTIONS(10737), + [anon_sym_BSLASHAcfp] = ACTIONS(10737), + [anon_sym_BSLASHac] = ACTIONS(10737), + [anon_sym_BSLASHAc] = ACTIONS(10737), + [anon_sym_BSLASHacp] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(10737), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(10737), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(10737), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(10737), + [anon_sym_BSLASHnewtheorem] = ACTIONS(10739), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(10739), + [anon_sym_BSLASHcolor] = ACTIONS(10741), + [anon_sym_BSLASHcolorbox] = ACTIONS(10741), + [anon_sym_BSLASHtextcolor] = ACTIONS(10741), + [anon_sym_BSLASHpagecolor] = ACTIONS(10741), + [anon_sym_BSLASHdefinecolor] = ACTIONS(10743), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(10745), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(10747), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(10749), + }, + [460] = { + [sym__simple_content] = STATE(460), + [sym_enum_item] = STATE(460), + [sym_brace_group] = STATE(460), + [sym_mixed_group] = STATE(460), + [sym_text] = STATE(460), + [sym__text_fragment] = STATE(1513), + [sym_displayed_equation] = STATE(460), + [sym_inline_formula] = STATE(460), + [sym_begin] = STATE(44), + [sym_environment] = STATE(460), + [sym_caption] = STATE(460), + [sym_citation] = STATE(460), + [sym_package_include] = STATE(460), + [sym_class_include] = STATE(460), + [sym_latex_include] = STATE(460), + [sym_latex_input] = STATE(460), + [sym_biblatex_include] = STATE(460), + [sym_bibtex_include] = STATE(460), + [sym_graphics_include] = STATE(460), + [sym_svg_include] = STATE(460), + [sym_inkscape_include] = STATE(460), + [sym_verbatim_include] = STATE(460), + [sym_import] = STATE(460), + [sym_label_definition] = STATE(460), + [sym_label_reference] = STATE(460), + [sym_equation_label_reference] = STATE(460), + [sym_label_reference_range] = STATE(460), + [sym_label_number] = STATE(460), + [sym_command_definition] = STATE(460), + [sym_math_operator] = STATE(460), + [sym_glossary_entry_definition] = STATE(460), + [sym_glossary_entry_reference] = STATE(460), + [sym_acronym_definition] = STATE(460), + [sym_acronym_reference] = STATE(460), + [sym_theorem_definition] = STATE(460), + [sym_color_reference] = STATE(460), + [sym_color_definition] = STATE(460), + [sym_color_set_definition] = STATE(460), + [sym_pgf_library_import] = STATE(460), + [sym_tikz_library_import] = STATE(460), + [sym_generic_command] = STATE(460), + [aux_sym_subparagraph_repeat1] = STATE(460), + [aux_sym_text_repeat1] = STATE(1513), + [sym_generic_command_name] = ACTIONS(11507), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(11510), + [anon_sym_LBRACK] = ACTIONS(11513), + [anon_sym_RBRACK] = ACTIONS(5448), + [anon_sym_LBRACE] = ACTIONS(11516), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_LPAREN] = ACTIONS(11513), + [anon_sym_COMMA] = ACTIONS(11519), + [anon_sym_EQ] = ACTIONS(11519), + [sym_word] = ACTIONS(11519), + [sym_param] = ACTIONS(11522), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11525), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11525), + [anon_sym_DOLLAR] = ACTIONS(11528), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11531), + [anon_sym_BSLASHbegin] = ACTIONS(5479), + [anon_sym_BSLASHcaption] = ACTIONS(11534), + [anon_sym_BSLASHcite] = ACTIONS(11537), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11540), + [anon_sym_BSLASHCite] = ACTIONS(11537), + [anon_sym_BSLASHnocite] = ACTIONS(11537), + [anon_sym_BSLASHcitet] = ACTIONS(11537), + [anon_sym_BSLASHcitep] = ACTIONS(11537), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11540), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11540), + [anon_sym_BSLASHciteauthor] = ACTIONS(11537), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11540), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11537), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11540), + [anon_sym_BSLASHcitetitle] = ACTIONS(11537), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11540), + [anon_sym_BSLASHciteyear] = ACTIONS(11537), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11540), + [anon_sym_BSLASHcitedate] = ACTIONS(11537), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11540), + [anon_sym_BSLASHciteurl] = ACTIONS(11537), + [anon_sym_BSLASHfullcite] = ACTIONS(11537), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11537), + [anon_sym_BSLASHcitealt] = ACTIONS(11537), + [anon_sym_BSLASHcitealp] = ACTIONS(11537), + [anon_sym_BSLASHcitetext] = ACTIONS(11537), + [anon_sym_BSLASHparencite] = ACTIONS(11537), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11540), + [anon_sym_BSLASHParencite] = ACTIONS(11537), + [anon_sym_BSLASHfootcite] = ACTIONS(11537), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11537), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11537), + [anon_sym_BSLASHtextcite] = ACTIONS(11537), + [anon_sym_BSLASHTextcite] = ACTIONS(11537), + [anon_sym_BSLASHsmartcite] = ACTIONS(11537), + [anon_sym_BSLASHSmartcite] = ACTIONS(11537), + [anon_sym_BSLASHsupercite] = ACTIONS(11537), + [anon_sym_BSLASHautocite] = ACTIONS(11537), + [anon_sym_BSLASHAutocite] = ACTIONS(11537), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11540), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11540), + [anon_sym_BSLASHvolcite] = ACTIONS(11537), + [anon_sym_BSLASHVolcite] = ACTIONS(11537), + [anon_sym_BSLASHpvolcite] = ACTIONS(11537), + [anon_sym_BSLASHPvolcite] = ACTIONS(11537), + [anon_sym_BSLASHfvolcite] = ACTIONS(11537), + [anon_sym_BSLASHftvolcite] = ACTIONS(11537), + [anon_sym_BSLASHsvolcite] = ACTIONS(11537), + [anon_sym_BSLASHSvolcite] = ACTIONS(11537), + [anon_sym_BSLASHtvolcite] = ACTIONS(11537), + [anon_sym_BSLASHTvolcite] = ACTIONS(11537), + [anon_sym_BSLASHavolcite] = ACTIONS(11537), + [anon_sym_BSLASHAvolcite] = ACTIONS(11537), + [anon_sym_BSLASHnotecite] = ACTIONS(11537), + [anon_sym_BSLASHpnotecite] = ACTIONS(11537), + [anon_sym_BSLASHPnotecite] = ACTIONS(11537), + [anon_sym_BSLASHfnotecite] = ACTIONS(11537), + [anon_sym_BSLASHusepackage] = ACTIONS(11543), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11543), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11546), + [anon_sym_BSLASHinclude] = ACTIONS(11549), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11549), + [anon_sym_BSLASHinput] = ACTIONS(11552), + [anon_sym_BSLASHsubfile] = ACTIONS(11552), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11555), + [anon_sym_BSLASHbibliography] = ACTIONS(11558), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11561), + [anon_sym_BSLASHincludesvg] = ACTIONS(11564), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11567), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11570), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11570), + [anon_sym_BSLASHimport] = ACTIONS(11573), + [anon_sym_BSLASHsubimport] = ACTIONS(11573), + [anon_sym_BSLASHinputfrom] = ACTIONS(11573), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11573), + [anon_sym_BSLASHincludefrom] = ACTIONS(11573), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11573), + [anon_sym_BSLASHlabel] = ACTIONS(11576), + [anon_sym_BSLASHref] = ACTIONS(11579), + [anon_sym_BSLASHvref] = ACTIONS(11579), + [anon_sym_BSLASHVref] = ACTIONS(11579), + [anon_sym_BSLASHautoref] = ACTIONS(11579), + [anon_sym_BSLASHpageref] = ACTIONS(11579), + [anon_sym_BSLASHcref] = ACTIONS(11579), + [anon_sym_BSLASHCref] = ACTIONS(11579), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11582), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11582), + [anon_sym_BSLASHnamecref] = ACTIONS(11579), + [anon_sym_BSLASHnameCref] = ACTIONS(11579), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11579), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11579), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11579), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11579), + [anon_sym_BSLASHlabelcref] = ACTIONS(11579), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11579), + [anon_sym_BSLASHeqref] = ACTIONS(11585), + [anon_sym_BSLASHcrefrange] = ACTIONS(11588), + [anon_sym_BSLASHCrefrange] = ACTIONS(11588), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11591), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11591), + [anon_sym_BSLASHnewlabel] = ACTIONS(11594), + [anon_sym_BSLASHnewcommand] = ACTIONS(11597), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11597), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11597), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11600), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11603), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11606), + [anon_sym_BSLASHgls] = ACTIONS(11609), + [anon_sym_BSLASHGls] = ACTIONS(11609), + [anon_sym_BSLASHGLS] = ACTIONS(11609), + [anon_sym_BSLASHglspl] = ACTIONS(11609), + [anon_sym_BSLASHGlspl] = ACTIONS(11609), + [anon_sym_BSLASHGLSpl] = ACTIONS(11609), + [anon_sym_BSLASHglsdisp] = ACTIONS(11609), + [anon_sym_BSLASHglslink] = ACTIONS(11609), + [anon_sym_BSLASHglstext] = ACTIONS(11609), + [anon_sym_BSLASHGlstext] = ACTIONS(11609), + [anon_sym_BSLASHGLStext] = ACTIONS(11609), + [anon_sym_BSLASHglsfirst] = ACTIONS(11609), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11609), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11609), + [anon_sym_BSLASHglsplural] = ACTIONS(11609), + [anon_sym_BSLASHGlsplural] = ACTIONS(11609), + [anon_sym_BSLASHGLSplural] = ACTIONS(11609), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11609), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11609), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11609), + [anon_sym_BSLASHglsname] = ACTIONS(11609), + [anon_sym_BSLASHGlsname] = ACTIONS(11609), + [anon_sym_BSLASHGLSname] = ACTIONS(11609), + [anon_sym_BSLASHglssymbol] = ACTIONS(11609), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11609), + [anon_sym_BSLASHglsdesc] = ACTIONS(11609), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11609), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11609), + [anon_sym_BSLASHglsuseri] = ACTIONS(11609), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11609), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11609), + [anon_sym_BSLASHglsuserii] = ACTIONS(11609), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11609), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11609), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11609), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11609), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11609), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11609), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11609), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11609), + [anon_sym_BSLASHglsuserv] = ACTIONS(11609), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11609), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11609), + [anon_sym_BSLASHglsuservi] = ACTIONS(11609), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11609), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11609), + [anon_sym_BSLASHnewacronym] = ACTIONS(11612), + [anon_sym_BSLASHacrshort] = ACTIONS(11615), + [anon_sym_BSLASHAcrshort] = ACTIONS(11615), + [anon_sym_BSLASHACRshort] = ACTIONS(11615), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11615), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11615), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11615), + [anon_sym_BSLASHacrlong] = ACTIONS(11615), + [anon_sym_BSLASHAcrlong] = ACTIONS(11615), + [anon_sym_BSLASHACRlong] = ACTIONS(11615), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11615), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11615), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11615), + [anon_sym_BSLASHacrfull] = ACTIONS(11615), + [anon_sym_BSLASHAcrfull] = ACTIONS(11615), + [anon_sym_BSLASHACRfull] = ACTIONS(11615), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11615), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11615), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11615), + [anon_sym_BSLASHacs] = ACTIONS(11615), + [anon_sym_BSLASHAcs] = ACTIONS(11615), + [anon_sym_BSLASHacsp] = ACTIONS(11615), + [anon_sym_BSLASHAcsp] = ACTIONS(11615), + [anon_sym_BSLASHacl] = ACTIONS(11615), + [anon_sym_BSLASHAcl] = ACTIONS(11615), + [anon_sym_BSLASHaclp] = ACTIONS(11615), + [anon_sym_BSLASHAclp] = ACTIONS(11615), + [anon_sym_BSLASHacf] = ACTIONS(11615), + [anon_sym_BSLASHAcf] = ACTIONS(11615), + [anon_sym_BSLASHacfp] = ACTIONS(11615), + [anon_sym_BSLASHAcfp] = ACTIONS(11615), + [anon_sym_BSLASHac] = ACTIONS(11615), + [anon_sym_BSLASHAc] = ACTIONS(11615), + [anon_sym_BSLASHacp] = ACTIONS(11615), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11615), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11615), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11615), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11615), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11615), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11615), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11615), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11615), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11615), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11615), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11618), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11618), + [anon_sym_BSLASHcolor] = ACTIONS(11621), + [anon_sym_BSLASHcolorbox] = ACTIONS(11621), + [anon_sym_BSLASHtextcolor] = ACTIONS(11621), + [anon_sym_BSLASHpagecolor] = ACTIONS(11621), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11624), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11627), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11630), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11633), + }, + [461] = { + [sym__simple_content] = STATE(456), + [sym_enum_item] = STATE(456), + [sym_brace_group] = STATE(456), + [sym_mixed_group] = STATE(456), + [sym_text] = STATE(456), + [sym__text_fragment] = STATE(1513), + [sym_displayed_equation] = STATE(456), + [sym_inline_formula] = STATE(456), + [sym_begin] = STATE(44), + [sym_environment] = STATE(456), + [sym_caption] = STATE(456), + [sym_citation] = STATE(456), + [sym_package_include] = STATE(456), + [sym_class_include] = STATE(456), + [sym_latex_include] = STATE(456), + [sym_latex_input] = STATE(456), + [sym_biblatex_include] = STATE(456), + [sym_bibtex_include] = STATE(456), + [sym_graphics_include] = STATE(456), + [sym_svg_include] = STATE(456), + [sym_inkscape_include] = STATE(456), + [sym_verbatim_include] = STATE(456), + [sym_import] = STATE(456), + [sym_label_definition] = STATE(456), + [sym_label_reference] = STATE(456), + [sym_equation_label_reference] = STATE(456), + [sym_label_reference_range] = STATE(456), + [sym_label_number] = STATE(456), + [sym_command_definition] = STATE(456), + [sym_math_operator] = STATE(456), + [sym_glossary_entry_definition] = STATE(456), + [sym_glossary_entry_reference] = STATE(456), + [sym_acronym_definition] = STATE(456), + [sym_acronym_reference] = STATE(456), + [sym_theorem_definition] = STATE(456), + [sym_color_reference] = STATE(456), + [sym_color_definition] = STATE(456), + [sym_color_set_definition] = STATE(456), + [sym_pgf_library_import] = STATE(456), + [sym_tikz_library_import] = STATE(456), + [sym_generic_command] = STATE(456), + [aux_sym_subparagraph_repeat1] = STATE(456), + [aux_sym_text_repeat1] = STATE(1513), + [sym_generic_command_name] = ACTIONS(11291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(11293), + [anon_sym_LBRACK] = ACTIONS(11295), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(11297), + [anon_sym_RBRACE] = ACTIONS(4877), + [anon_sym_LPAREN] = ACTIONS(11295), + [anon_sym_COMMA] = ACTIONS(11299), + [anon_sym_EQ] = ACTIONS(11299), + [sym_word] = ACTIONS(11299), + [sym_param] = ACTIONS(11636), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11303), + [anon_sym_DOLLAR] = ACTIONS(11305), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11307), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(11309), + [anon_sym_BSLASHcite] = ACTIONS(11311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHCite] = ACTIONS(11311), + [anon_sym_BSLASHnocite] = ACTIONS(11311), + [anon_sym_BSLASHcitet] = ACTIONS(11311), + [anon_sym_BSLASHcitep] = ACTIONS(11311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteauthor] = ACTIONS(11311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitetitle] = ACTIONS(11311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteyear] = ACTIONS(11311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitedate] = ACTIONS(11311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteurl] = ACTIONS(11311), + [anon_sym_BSLASHfullcite] = ACTIONS(11311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11311), + [anon_sym_BSLASHcitealt] = ACTIONS(11311), + [anon_sym_BSLASHcitealp] = ACTIONS(11311), + [anon_sym_BSLASHcitetext] = ACTIONS(11311), + [anon_sym_BSLASHparencite] = ACTIONS(11311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHParencite] = ACTIONS(11311), + [anon_sym_BSLASHfootcite] = ACTIONS(11311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11311), + [anon_sym_BSLASHtextcite] = ACTIONS(11311), + [anon_sym_BSLASHTextcite] = ACTIONS(11311), + [anon_sym_BSLASHsmartcite] = ACTIONS(11311), + [anon_sym_BSLASHSmartcite] = ACTIONS(11311), + [anon_sym_BSLASHsupercite] = ACTIONS(11311), + [anon_sym_BSLASHautocite] = ACTIONS(11311), + [anon_sym_BSLASHAutocite] = ACTIONS(11311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHvolcite] = ACTIONS(11311), + [anon_sym_BSLASHVolcite] = ACTIONS(11311), + [anon_sym_BSLASHpvolcite] = ACTIONS(11311), + [anon_sym_BSLASHPvolcite] = ACTIONS(11311), + [anon_sym_BSLASHfvolcite] = ACTIONS(11311), + [anon_sym_BSLASHftvolcite] = ACTIONS(11311), + [anon_sym_BSLASHsvolcite] = ACTIONS(11311), + [anon_sym_BSLASHSvolcite] = ACTIONS(11311), + [anon_sym_BSLASHtvolcite] = ACTIONS(11311), + [anon_sym_BSLASHTvolcite] = ACTIONS(11311), + [anon_sym_BSLASHavolcite] = ACTIONS(11311), + [anon_sym_BSLASHAvolcite] = ACTIONS(11311), + [anon_sym_BSLASHnotecite] = ACTIONS(11311), + [anon_sym_BSLASHpnotecite] = ACTIONS(11311), + [anon_sym_BSLASHPnotecite] = ACTIONS(11311), + [anon_sym_BSLASHfnotecite] = ACTIONS(11311), + [anon_sym_BSLASHusepackage] = ACTIONS(11315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11317), + [anon_sym_BSLASHinclude] = ACTIONS(11319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11319), + [anon_sym_BSLASHinput] = ACTIONS(11321), + [anon_sym_BSLASHsubfile] = ACTIONS(11321), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11323), + [anon_sym_BSLASHbibliography] = ACTIONS(11325), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11327), + [anon_sym_BSLASHincludesvg] = ACTIONS(11329), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11333), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11333), + [anon_sym_BSLASHimport] = ACTIONS(11335), + [anon_sym_BSLASHsubimport] = ACTIONS(11335), + [anon_sym_BSLASHinputfrom] = ACTIONS(11335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11335), + [anon_sym_BSLASHincludefrom] = ACTIONS(11335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11335), + [anon_sym_BSLASHlabel] = ACTIONS(11337), + [anon_sym_BSLASHref] = ACTIONS(11339), + [anon_sym_BSLASHvref] = ACTIONS(11339), + [anon_sym_BSLASHVref] = ACTIONS(11339), + [anon_sym_BSLASHautoref] = ACTIONS(11339), + [anon_sym_BSLASHpageref] = ACTIONS(11339), + [anon_sym_BSLASHcref] = ACTIONS(11339), + [anon_sym_BSLASHCref] = ACTIONS(11339), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11341), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11341), + [anon_sym_BSLASHnamecref] = ACTIONS(11339), + [anon_sym_BSLASHnameCref] = ACTIONS(11339), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11339), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11339), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11339), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11339), + [anon_sym_BSLASHlabelcref] = ACTIONS(11339), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11339), + [anon_sym_BSLASHeqref] = ACTIONS(11343), + [anon_sym_BSLASHcrefrange] = ACTIONS(11345), + [anon_sym_BSLASHCrefrange] = ACTIONS(11345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11347), + [anon_sym_BSLASHnewlabel] = ACTIONS(11349), + [anon_sym_BSLASHnewcommand] = ACTIONS(11351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11357), + [anon_sym_BSLASHgls] = ACTIONS(11359), + [anon_sym_BSLASHGls] = ACTIONS(11359), + [anon_sym_BSLASHGLS] = ACTIONS(11359), + [anon_sym_BSLASHglspl] = ACTIONS(11359), + [anon_sym_BSLASHGlspl] = ACTIONS(11359), + [anon_sym_BSLASHGLSpl] = ACTIONS(11359), + [anon_sym_BSLASHglsdisp] = ACTIONS(11359), + [anon_sym_BSLASHglslink] = ACTIONS(11359), + [anon_sym_BSLASHglstext] = ACTIONS(11359), + [anon_sym_BSLASHGlstext] = ACTIONS(11359), + [anon_sym_BSLASHGLStext] = ACTIONS(11359), + [anon_sym_BSLASHglsfirst] = ACTIONS(11359), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11359), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11359), + [anon_sym_BSLASHglsplural] = ACTIONS(11359), + [anon_sym_BSLASHGlsplural] = ACTIONS(11359), + [anon_sym_BSLASHGLSplural] = ACTIONS(11359), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHglsname] = ACTIONS(11359), + [anon_sym_BSLASHGlsname] = ACTIONS(11359), + [anon_sym_BSLASHGLSname] = ACTIONS(11359), + [anon_sym_BSLASHglssymbol] = ACTIONS(11359), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11359), + [anon_sym_BSLASHglsdesc] = ACTIONS(11359), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11359), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11359), + [anon_sym_BSLASHglsuseri] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11359), + [anon_sym_BSLASHglsuserii] = ACTIONS(11359), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11359), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11359), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11359), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11359), + [anon_sym_BSLASHglsuserv] = ACTIONS(11359), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11359), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11359), + [anon_sym_BSLASHglsuservi] = ACTIONS(11359), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11359), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11359), + [anon_sym_BSLASHnewacronym] = ACTIONS(11361), + [anon_sym_BSLASHacrshort] = ACTIONS(11363), + [anon_sym_BSLASHAcrshort] = ACTIONS(11363), + [anon_sym_BSLASHACRshort] = ACTIONS(11363), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11363), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11363), + [anon_sym_BSLASHacrlong] = ACTIONS(11363), + [anon_sym_BSLASHAcrlong] = ACTIONS(11363), + [anon_sym_BSLASHACRlong] = ACTIONS(11363), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11363), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11363), + [anon_sym_BSLASHacrfull] = ACTIONS(11363), + [anon_sym_BSLASHAcrfull] = ACTIONS(11363), + [anon_sym_BSLASHACRfull] = ACTIONS(11363), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11363), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11363), + [anon_sym_BSLASHacs] = ACTIONS(11363), + [anon_sym_BSLASHAcs] = ACTIONS(11363), + [anon_sym_BSLASHacsp] = ACTIONS(11363), + [anon_sym_BSLASHAcsp] = ACTIONS(11363), + [anon_sym_BSLASHacl] = ACTIONS(11363), + [anon_sym_BSLASHAcl] = ACTIONS(11363), + [anon_sym_BSLASHaclp] = ACTIONS(11363), + [anon_sym_BSLASHAclp] = ACTIONS(11363), + [anon_sym_BSLASHacf] = ACTIONS(11363), + [anon_sym_BSLASHAcf] = ACTIONS(11363), + [anon_sym_BSLASHacfp] = ACTIONS(11363), + [anon_sym_BSLASHAcfp] = ACTIONS(11363), + [anon_sym_BSLASHac] = ACTIONS(11363), + [anon_sym_BSLASHAc] = ACTIONS(11363), + [anon_sym_BSLASHacp] = ACTIONS(11363), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11363), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11363), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11363), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11363), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11363), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11363), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11365), + [anon_sym_BSLASHcolor] = ACTIONS(11367), + [anon_sym_BSLASHcolorbox] = ACTIONS(11367), + [anon_sym_BSLASHtextcolor] = ACTIONS(11367), + [anon_sym_BSLASHpagecolor] = ACTIONS(11367), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11371), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11375), + }, + [462] = { + [sym__simple_content] = STATE(466), + [sym_brace_group] = STATE(466), + [sym_mixed_group] = STATE(466), + [sym_text] = STATE(466), + [sym__text_fragment] = STATE(1513), + [sym_displayed_equation] = STATE(466), + [sym_inline_formula] = STATE(466), + [sym_begin] = STATE(44), + [sym_environment] = STATE(466), + [sym_caption] = STATE(466), + [sym_citation] = STATE(466), + [sym_package_include] = STATE(466), + [sym_class_include] = STATE(466), + [sym_latex_include] = STATE(466), + [sym_latex_input] = STATE(466), + [sym_biblatex_include] = STATE(466), + [sym_bibtex_include] = STATE(466), + [sym_graphics_include] = STATE(466), + [sym_svg_include] = STATE(466), + [sym_inkscape_include] = STATE(466), + [sym_verbatim_include] = STATE(466), + [sym_import] = STATE(466), + [sym_label_definition] = STATE(466), + [sym_label_reference] = STATE(466), + [sym_equation_label_reference] = STATE(466), + [sym_label_reference_range] = STATE(466), + [sym_label_number] = STATE(466), + [sym_command_definition] = STATE(466), + [sym_math_operator] = STATE(466), + [sym_glossary_entry_definition] = STATE(466), + [sym_glossary_entry_reference] = STATE(466), + [sym_acronym_definition] = STATE(466), + [sym_acronym_reference] = STATE(466), + [sym_theorem_definition] = STATE(466), + [sym_color_reference] = STATE(466), + [sym_color_definition] = STATE(466), + [sym_color_set_definition] = STATE(466), + [sym_pgf_library_import] = STATE(466), + [sym_tikz_library_import] = STATE(466), + [sym_generic_command] = STATE(466), + [aux_sym_enum_item_repeat1] = STATE(466), + [aux_sym_text_repeat1] = STATE(1513), + [sym_generic_command_name] = ACTIONS(11291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(5606), + [anon_sym_LBRACK] = ACTIONS(11295), + [anon_sym_RBRACK] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(11297), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_LPAREN] = ACTIONS(11295), + [anon_sym_COMMA] = ACTIONS(11299), + [anon_sym_EQ] = ACTIONS(11299), + [sym_word] = ACTIONS(11299), + [sym_param] = ACTIONS(11638), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11303), + [anon_sym_DOLLAR] = ACTIONS(11305), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11307), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(11309), + [anon_sym_BSLASHcite] = ACTIONS(11311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHCite] = ACTIONS(11311), + [anon_sym_BSLASHnocite] = ACTIONS(11311), + [anon_sym_BSLASHcitet] = ACTIONS(11311), + [anon_sym_BSLASHcitep] = ACTIONS(11311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteauthor] = ACTIONS(11311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitetitle] = ACTIONS(11311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteyear] = ACTIONS(11311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitedate] = ACTIONS(11311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteurl] = ACTIONS(11311), + [anon_sym_BSLASHfullcite] = ACTIONS(11311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11311), + [anon_sym_BSLASHcitealt] = ACTIONS(11311), + [anon_sym_BSLASHcitealp] = ACTIONS(11311), + [anon_sym_BSLASHcitetext] = ACTIONS(11311), + [anon_sym_BSLASHparencite] = ACTIONS(11311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHParencite] = ACTIONS(11311), + [anon_sym_BSLASHfootcite] = ACTIONS(11311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11311), + [anon_sym_BSLASHtextcite] = ACTIONS(11311), + [anon_sym_BSLASHTextcite] = ACTIONS(11311), + [anon_sym_BSLASHsmartcite] = ACTIONS(11311), + [anon_sym_BSLASHSmartcite] = ACTIONS(11311), + [anon_sym_BSLASHsupercite] = ACTIONS(11311), + [anon_sym_BSLASHautocite] = ACTIONS(11311), + [anon_sym_BSLASHAutocite] = ACTIONS(11311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHvolcite] = ACTIONS(11311), + [anon_sym_BSLASHVolcite] = ACTIONS(11311), + [anon_sym_BSLASHpvolcite] = ACTIONS(11311), + [anon_sym_BSLASHPvolcite] = ACTIONS(11311), + [anon_sym_BSLASHfvolcite] = ACTIONS(11311), + [anon_sym_BSLASHftvolcite] = ACTIONS(11311), + [anon_sym_BSLASHsvolcite] = ACTIONS(11311), + [anon_sym_BSLASHSvolcite] = ACTIONS(11311), + [anon_sym_BSLASHtvolcite] = ACTIONS(11311), + [anon_sym_BSLASHTvolcite] = ACTIONS(11311), + [anon_sym_BSLASHavolcite] = ACTIONS(11311), + [anon_sym_BSLASHAvolcite] = ACTIONS(11311), + [anon_sym_BSLASHnotecite] = ACTIONS(11311), + [anon_sym_BSLASHpnotecite] = ACTIONS(11311), + [anon_sym_BSLASHPnotecite] = ACTIONS(11311), + [anon_sym_BSLASHfnotecite] = ACTIONS(11311), + [anon_sym_BSLASHusepackage] = ACTIONS(11315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11317), + [anon_sym_BSLASHinclude] = ACTIONS(11319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11319), + [anon_sym_BSLASHinput] = ACTIONS(11321), + [anon_sym_BSLASHsubfile] = ACTIONS(11321), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11323), + [anon_sym_BSLASHbibliography] = ACTIONS(11325), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11327), + [anon_sym_BSLASHincludesvg] = ACTIONS(11329), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11333), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11333), + [anon_sym_BSLASHimport] = ACTIONS(11335), + [anon_sym_BSLASHsubimport] = ACTIONS(11335), + [anon_sym_BSLASHinputfrom] = ACTIONS(11335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11335), + [anon_sym_BSLASHincludefrom] = ACTIONS(11335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11335), + [anon_sym_BSLASHlabel] = ACTIONS(11337), + [anon_sym_BSLASHref] = ACTIONS(11339), + [anon_sym_BSLASHvref] = ACTIONS(11339), + [anon_sym_BSLASHVref] = ACTIONS(11339), + [anon_sym_BSLASHautoref] = ACTIONS(11339), + [anon_sym_BSLASHpageref] = ACTIONS(11339), + [anon_sym_BSLASHcref] = ACTIONS(11339), + [anon_sym_BSLASHCref] = ACTIONS(11339), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11341), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11341), + [anon_sym_BSLASHnamecref] = ACTIONS(11339), + [anon_sym_BSLASHnameCref] = ACTIONS(11339), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11339), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11339), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11339), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11339), + [anon_sym_BSLASHlabelcref] = ACTIONS(11339), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11339), + [anon_sym_BSLASHeqref] = ACTIONS(11343), + [anon_sym_BSLASHcrefrange] = ACTIONS(11345), + [anon_sym_BSLASHCrefrange] = ACTIONS(11345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11347), + [anon_sym_BSLASHnewlabel] = ACTIONS(11349), + [anon_sym_BSLASHnewcommand] = ACTIONS(11351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11357), + [anon_sym_BSLASHgls] = ACTIONS(11359), + [anon_sym_BSLASHGls] = ACTIONS(11359), + [anon_sym_BSLASHGLS] = ACTIONS(11359), + [anon_sym_BSLASHglspl] = ACTIONS(11359), + [anon_sym_BSLASHGlspl] = ACTIONS(11359), + [anon_sym_BSLASHGLSpl] = ACTIONS(11359), + [anon_sym_BSLASHglsdisp] = ACTIONS(11359), + [anon_sym_BSLASHglslink] = ACTIONS(11359), + [anon_sym_BSLASHglstext] = ACTIONS(11359), + [anon_sym_BSLASHGlstext] = ACTIONS(11359), + [anon_sym_BSLASHGLStext] = ACTIONS(11359), + [anon_sym_BSLASHglsfirst] = ACTIONS(11359), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11359), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11359), + [anon_sym_BSLASHglsplural] = ACTIONS(11359), + [anon_sym_BSLASHGlsplural] = ACTIONS(11359), + [anon_sym_BSLASHGLSplural] = ACTIONS(11359), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHglsname] = ACTIONS(11359), + [anon_sym_BSLASHGlsname] = ACTIONS(11359), + [anon_sym_BSLASHGLSname] = ACTIONS(11359), + [anon_sym_BSLASHglssymbol] = ACTIONS(11359), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11359), + [anon_sym_BSLASHglsdesc] = ACTIONS(11359), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11359), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11359), + [anon_sym_BSLASHglsuseri] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11359), + [anon_sym_BSLASHglsuserii] = ACTIONS(11359), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11359), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11359), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11359), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11359), + [anon_sym_BSLASHglsuserv] = ACTIONS(11359), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11359), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11359), + [anon_sym_BSLASHglsuservi] = ACTIONS(11359), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11359), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11359), + [anon_sym_BSLASHnewacronym] = ACTIONS(11361), + [anon_sym_BSLASHacrshort] = ACTIONS(11363), + [anon_sym_BSLASHAcrshort] = ACTIONS(11363), + [anon_sym_BSLASHACRshort] = ACTIONS(11363), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11363), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11363), + [anon_sym_BSLASHacrlong] = ACTIONS(11363), + [anon_sym_BSLASHAcrlong] = ACTIONS(11363), + [anon_sym_BSLASHACRlong] = ACTIONS(11363), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11363), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11363), + [anon_sym_BSLASHacrfull] = ACTIONS(11363), + [anon_sym_BSLASHAcrfull] = ACTIONS(11363), + [anon_sym_BSLASHACRfull] = ACTIONS(11363), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11363), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11363), + [anon_sym_BSLASHacs] = ACTIONS(11363), + [anon_sym_BSLASHAcs] = ACTIONS(11363), + [anon_sym_BSLASHacsp] = ACTIONS(11363), + [anon_sym_BSLASHAcsp] = ACTIONS(11363), + [anon_sym_BSLASHacl] = ACTIONS(11363), + [anon_sym_BSLASHAcl] = ACTIONS(11363), + [anon_sym_BSLASHaclp] = ACTIONS(11363), + [anon_sym_BSLASHAclp] = ACTIONS(11363), + [anon_sym_BSLASHacf] = ACTIONS(11363), + [anon_sym_BSLASHAcf] = ACTIONS(11363), + [anon_sym_BSLASHacfp] = ACTIONS(11363), + [anon_sym_BSLASHAcfp] = ACTIONS(11363), + [anon_sym_BSLASHac] = ACTIONS(11363), + [anon_sym_BSLASHAc] = ACTIONS(11363), + [anon_sym_BSLASHacp] = ACTIONS(11363), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11363), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11363), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11363), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11363), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11363), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11363), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11365), + [anon_sym_BSLASHcolor] = ACTIONS(11367), + [anon_sym_BSLASHcolorbox] = ACTIONS(11367), + [anon_sym_BSLASHtextcolor] = ACTIONS(11367), + [anon_sym_BSLASHpagecolor] = ACTIONS(11367), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11371), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11375), + }, + [463] = { + [sym__simple_content] = STATE(465), + [sym_brace_group] = STATE(465), + [sym_mixed_group] = STATE(465), + [sym_text] = STATE(465), + [sym__text_fragment] = STATE(1513), + [sym_displayed_equation] = STATE(465), + [sym_inline_formula] = STATE(465), + [sym_begin] = STATE(44), + [sym_environment] = STATE(465), + [sym_caption] = STATE(465), + [sym_citation] = STATE(465), + [sym_package_include] = STATE(465), + [sym_class_include] = STATE(465), + [sym_latex_include] = STATE(465), + [sym_latex_input] = STATE(465), + [sym_biblatex_include] = STATE(465), + [sym_bibtex_include] = STATE(465), + [sym_graphics_include] = STATE(465), + [sym_svg_include] = STATE(465), + [sym_inkscape_include] = STATE(465), + [sym_verbatim_include] = STATE(465), + [sym_import] = STATE(465), + [sym_label_definition] = STATE(465), + [sym_label_reference] = STATE(465), + [sym_equation_label_reference] = STATE(465), + [sym_label_reference_range] = STATE(465), + [sym_label_number] = STATE(465), + [sym_command_definition] = STATE(465), + [sym_math_operator] = STATE(465), + [sym_glossary_entry_definition] = STATE(465), + [sym_glossary_entry_reference] = STATE(465), + [sym_acronym_definition] = STATE(465), + [sym_acronym_reference] = STATE(465), + [sym_theorem_definition] = STATE(465), + [sym_color_reference] = STATE(465), + [sym_color_definition] = STATE(465), + [sym_color_set_definition] = STATE(465), + [sym_pgf_library_import] = STATE(465), + [sym_tikz_library_import] = STATE(465), + [sym_generic_command] = STATE(465), + [aux_sym_enum_item_repeat1] = STATE(465), + [aux_sym_text_repeat1] = STATE(1513), + [sym_generic_command_name] = ACTIONS(11291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(11640), + [anon_sym_RBRACK] = ACTIONS(6032), + [anon_sym_LBRACE] = ACTIONS(11297), + [anon_sym_RBRACE] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(11295), + [anon_sym_COMMA] = ACTIONS(11299), + [anon_sym_EQ] = ACTIONS(11299), + [sym_word] = ACTIONS(11299), + [sym_param] = ACTIONS(11642), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11303), + [anon_sym_DOLLAR] = ACTIONS(11305), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11307), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(11309), + [anon_sym_BSLASHcite] = ACTIONS(11311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHCite] = ACTIONS(11311), + [anon_sym_BSLASHnocite] = ACTIONS(11311), + [anon_sym_BSLASHcitet] = ACTIONS(11311), + [anon_sym_BSLASHcitep] = ACTIONS(11311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteauthor] = ACTIONS(11311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitetitle] = ACTIONS(11311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteyear] = ACTIONS(11311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitedate] = ACTIONS(11311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteurl] = ACTIONS(11311), + [anon_sym_BSLASHfullcite] = ACTIONS(11311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11311), + [anon_sym_BSLASHcitealt] = ACTIONS(11311), + [anon_sym_BSLASHcitealp] = ACTIONS(11311), + [anon_sym_BSLASHcitetext] = ACTIONS(11311), + [anon_sym_BSLASHparencite] = ACTIONS(11311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHParencite] = ACTIONS(11311), + [anon_sym_BSLASHfootcite] = ACTIONS(11311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11311), + [anon_sym_BSLASHtextcite] = ACTIONS(11311), + [anon_sym_BSLASHTextcite] = ACTIONS(11311), + [anon_sym_BSLASHsmartcite] = ACTIONS(11311), + [anon_sym_BSLASHSmartcite] = ACTIONS(11311), + [anon_sym_BSLASHsupercite] = ACTIONS(11311), + [anon_sym_BSLASHautocite] = ACTIONS(11311), + [anon_sym_BSLASHAutocite] = ACTIONS(11311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHvolcite] = ACTIONS(11311), + [anon_sym_BSLASHVolcite] = ACTIONS(11311), + [anon_sym_BSLASHpvolcite] = ACTIONS(11311), + [anon_sym_BSLASHPvolcite] = ACTIONS(11311), + [anon_sym_BSLASHfvolcite] = ACTIONS(11311), + [anon_sym_BSLASHftvolcite] = ACTIONS(11311), + [anon_sym_BSLASHsvolcite] = ACTIONS(11311), + [anon_sym_BSLASHSvolcite] = ACTIONS(11311), + [anon_sym_BSLASHtvolcite] = ACTIONS(11311), + [anon_sym_BSLASHTvolcite] = ACTIONS(11311), + [anon_sym_BSLASHavolcite] = ACTIONS(11311), + [anon_sym_BSLASHAvolcite] = ACTIONS(11311), + [anon_sym_BSLASHnotecite] = ACTIONS(11311), + [anon_sym_BSLASHpnotecite] = ACTIONS(11311), + [anon_sym_BSLASHPnotecite] = ACTIONS(11311), + [anon_sym_BSLASHfnotecite] = ACTIONS(11311), + [anon_sym_BSLASHusepackage] = ACTIONS(11315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11317), + [anon_sym_BSLASHinclude] = ACTIONS(11319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11319), + [anon_sym_BSLASHinput] = ACTIONS(11321), + [anon_sym_BSLASHsubfile] = ACTIONS(11321), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11323), + [anon_sym_BSLASHbibliography] = ACTIONS(11325), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11327), + [anon_sym_BSLASHincludesvg] = ACTIONS(11329), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11333), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11333), + [anon_sym_BSLASHimport] = ACTIONS(11335), + [anon_sym_BSLASHsubimport] = ACTIONS(11335), + [anon_sym_BSLASHinputfrom] = ACTIONS(11335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11335), + [anon_sym_BSLASHincludefrom] = ACTIONS(11335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11335), + [anon_sym_BSLASHlabel] = ACTIONS(11337), + [anon_sym_BSLASHref] = ACTIONS(11339), + [anon_sym_BSLASHvref] = ACTIONS(11339), + [anon_sym_BSLASHVref] = ACTIONS(11339), + [anon_sym_BSLASHautoref] = ACTIONS(11339), + [anon_sym_BSLASHpageref] = ACTIONS(11339), + [anon_sym_BSLASHcref] = ACTIONS(11339), + [anon_sym_BSLASHCref] = ACTIONS(11339), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11341), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11341), + [anon_sym_BSLASHnamecref] = ACTIONS(11339), + [anon_sym_BSLASHnameCref] = ACTIONS(11339), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11339), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11339), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11339), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11339), + [anon_sym_BSLASHlabelcref] = ACTIONS(11339), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11339), + [anon_sym_BSLASHeqref] = ACTIONS(11343), + [anon_sym_BSLASHcrefrange] = ACTIONS(11345), + [anon_sym_BSLASHCrefrange] = ACTIONS(11345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11347), + [anon_sym_BSLASHnewlabel] = ACTIONS(11349), + [anon_sym_BSLASHnewcommand] = ACTIONS(11351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11357), + [anon_sym_BSLASHgls] = ACTIONS(11359), + [anon_sym_BSLASHGls] = ACTIONS(11359), + [anon_sym_BSLASHGLS] = ACTIONS(11359), + [anon_sym_BSLASHglspl] = ACTIONS(11359), + [anon_sym_BSLASHGlspl] = ACTIONS(11359), + [anon_sym_BSLASHGLSpl] = ACTIONS(11359), + [anon_sym_BSLASHglsdisp] = ACTIONS(11359), + [anon_sym_BSLASHglslink] = ACTIONS(11359), + [anon_sym_BSLASHglstext] = ACTIONS(11359), + [anon_sym_BSLASHGlstext] = ACTIONS(11359), + [anon_sym_BSLASHGLStext] = ACTIONS(11359), + [anon_sym_BSLASHglsfirst] = ACTIONS(11359), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11359), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11359), + [anon_sym_BSLASHglsplural] = ACTIONS(11359), + [anon_sym_BSLASHGlsplural] = ACTIONS(11359), + [anon_sym_BSLASHGLSplural] = ACTIONS(11359), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHglsname] = ACTIONS(11359), + [anon_sym_BSLASHGlsname] = ACTIONS(11359), + [anon_sym_BSLASHGLSname] = ACTIONS(11359), + [anon_sym_BSLASHglssymbol] = ACTIONS(11359), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11359), + [anon_sym_BSLASHglsdesc] = ACTIONS(11359), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11359), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11359), + [anon_sym_BSLASHglsuseri] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11359), + [anon_sym_BSLASHglsuserii] = ACTIONS(11359), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11359), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11359), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11359), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11359), + [anon_sym_BSLASHglsuserv] = ACTIONS(11359), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11359), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11359), + [anon_sym_BSLASHglsuservi] = ACTIONS(11359), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11359), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11359), + [anon_sym_BSLASHnewacronym] = ACTIONS(11361), + [anon_sym_BSLASHacrshort] = ACTIONS(11363), + [anon_sym_BSLASHAcrshort] = ACTIONS(11363), + [anon_sym_BSLASHACRshort] = ACTIONS(11363), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11363), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11363), + [anon_sym_BSLASHacrlong] = ACTIONS(11363), + [anon_sym_BSLASHAcrlong] = ACTIONS(11363), + [anon_sym_BSLASHACRlong] = ACTIONS(11363), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11363), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11363), + [anon_sym_BSLASHacrfull] = ACTIONS(11363), + [anon_sym_BSLASHAcrfull] = ACTIONS(11363), + [anon_sym_BSLASHACRfull] = ACTIONS(11363), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11363), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11363), + [anon_sym_BSLASHacs] = ACTIONS(11363), + [anon_sym_BSLASHAcs] = ACTIONS(11363), + [anon_sym_BSLASHacsp] = ACTIONS(11363), + [anon_sym_BSLASHAcsp] = ACTIONS(11363), + [anon_sym_BSLASHacl] = ACTIONS(11363), + [anon_sym_BSLASHAcl] = ACTIONS(11363), + [anon_sym_BSLASHaclp] = ACTIONS(11363), + [anon_sym_BSLASHAclp] = ACTIONS(11363), + [anon_sym_BSLASHacf] = ACTIONS(11363), + [anon_sym_BSLASHAcf] = ACTIONS(11363), + [anon_sym_BSLASHacfp] = ACTIONS(11363), + [anon_sym_BSLASHAcfp] = ACTIONS(11363), + [anon_sym_BSLASHac] = ACTIONS(11363), + [anon_sym_BSLASHAc] = ACTIONS(11363), + [anon_sym_BSLASHacp] = ACTIONS(11363), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11363), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11363), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11363), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11363), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11363), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11363), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11365), + [anon_sym_BSLASHcolor] = ACTIONS(11367), + [anon_sym_BSLASHcolorbox] = ACTIONS(11367), + [anon_sym_BSLASHtextcolor] = ACTIONS(11367), + [anon_sym_BSLASHpagecolor] = ACTIONS(11367), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11371), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11375), + }, + [464] = { + [sym__simple_content] = STATE(464), + [sym_brace_group] = STATE(464), + [sym_mixed_group] = STATE(464), + [sym_text] = STATE(464), + [sym__text_fragment] = STATE(1513), + [sym_displayed_equation] = STATE(464), + [sym_inline_formula] = STATE(464), + [sym_begin] = STATE(44), + [sym_environment] = STATE(464), + [sym_caption] = STATE(464), + [sym_citation] = STATE(464), + [sym_package_include] = STATE(464), + [sym_class_include] = STATE(464), + [sym_latex_include] = STATE(464), + [sym_latex_input] = STATE(464), + [sym_biblatex_include] = STATE(464), + [sym_bibtex_include] = STATE(464), + [sym_graphics_include] = STATE(464), + [sym_svg_include] = STATE(464), + [sym_inkscape_include] = STATE(464), + [sym_verbatim_include] = STATE(464), + [sym_import] = STATE(464), + [sym_label_definition] = STATE(464), + [sym_label_reference] = STATE(464), + [sym_equation_label_reference] = STATE(464), + [sym_label_reference_range] = STATE(464), + [sym_label_number] = STATE(464), + [sym_command_definition] = STATE(464), + [sym_math_operator] = STATE(464), + [sym_glossary_entry_definition] = STATE(464), + [sym_glossary_entry_reference] = STATE(464), + [sym_acronym_definition] = STATE(464), + [sym_acronym_reference] = STATE(464), + [sym_theorem_definition] = STATE(464), + [sym_color_reference] = STATE(464), + [sym_color_definition] = STATE(464), + [sym_color_set_definition] = STATE(464), + [sym_pgf_library_import] = STATE(464), + [sym_tikz_library_import] = STATE(464), + [sym_generic_command] = STATE(464), + [aux_sym_enum_item_repeat1] = STATE(464), + [aux_sym_text_repeat1] = STATE(1513), + [sym_generic_command_name] = ACTIONS(11644), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(6045), + [anon_sym_LBRACK] = ACTIONS(11647), + [anon_sym_RBRACK] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(11650), + [anon_sym_RBRACE] = ACTIONS(6040), + [anon_sym_LPAREN] = ACTIONS(11647), + [anon_sym_COMMA] = ACTIONS(11653), + [anon_sym_EQ] = ACTIONS(11653), + [sym_word] = ACTIONS(11653), + [sym_param] = ACTIONS(11656), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11659), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11659), + [anon_sym_DOLLAR] = ACTIONS(11662), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11665), + [anon_sym_BSLASHbegin] = ACTIONS(6068), + [anon_sym_BSLASHcaption] = ACTIONS(11668), + [anon_sym_BSLASHcite] = ACTIONS(11671), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11674), + [anon_sym_BSLASHCite] = ACTIONS(11671), + [anon_sym_BSLASHnocite] = ACTIONS(11671), + [anon_sym_BSLASHcitet] = ACTIONS(11671), + [anon_sym_BSLASHcitep] = ACTIONS(11671), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11674), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11674), + [anon_sym_BSLASHciteauthor] = ACTIONS(11671), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11674), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11671), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11674), + [anon_sym_BSLASHcitetitle] = ACTIONS(11671), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11674), + [anon_sym_BSLASHciteyear] = ACTIONS(11671), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11674), + [anon_sym_BSLASHcitedate] = ACTIONS(11671), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11674), + [anon_sym_BSLASHciteurl] = ACTIONS(11671), + [anon_sym_BSLASHfullcite] = ACTIONS(11671), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11671), + [anon_sym_BSLASHcitealt] = ACTIONS(11671), + [anon_sym_BSLASHcitealp] = ACTIONS(11671), + [anon_sym_BSLASHcitetext] = ACTIONS(11671), + [anon_sym_BSLASHparencite] = ACTIONS(11671), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11674), + [anon_sym_BSLASHParencite] = ACTIONS(11671), + [anon_sym_BSLASHfootcite] = ACTIONS(11671), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11671), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11671), + [anon_sym_BSLASHtextcite] = ACTIONS(11671), + [anon_sym_BSLASHTextcite] = ACTIONS(11671), + [anon_sym_BSLASHsmartcite] = ACTIONS(11671), + [anon_sym_BSLASHSmartcite] = ACTIONS(11671), + [anon_sym_BSLASHsupercite] = ACTIONS(11671), + [anon_sym_BSLASHautocite] = ACTIONS(11671), + [anon_sym_BSLASHAutocite] = ACTIONS(11671), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11674), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11674), + [anon_sym_BSLASHvolcite] = ACTIONS(11671), + [anon_sym_BSLASHVolcite] = ACTIONS(11671), + [anon_sym_BSLASHpvolcite] = ACTIONS(11671), + [anon_sym_BSLASHPvolcite] = ACTIONS(11671), + [anon_sym_BSLASHfvolcite] = ACTIONS(11671), + [anon_sym_BSLASHftvolcite] = ACTIONS(11671), + [anon_sym_BSLASHsvolcite] = ACTIONS(11671), + [anon_sym_BSLASHSvolcite] = ACTIONS(11671), + [anon_sym_BSLASHtvolcite] = ACTIONS(11671), + [anon_sym_BSLASHTvolcite] = ACTIONS(11671), + [anon_sym_BSLASHavolcite] = ACTIONS(11671), + [anon_sym_BSLASHAvolcite] = ACTIONS(11671), + [anon_sym_BSLASHnotecite] = ACTIONS(11671), + [anon_sym_BSLASHpnotecite] = ACTIONS(11671), + [anon_sym_BSLASHPnotecite] = ACTIONS(11671), + [anon_sym_BSLASHfnotecite] = ACTIONS(11671), + [anon_sym_BSLASHusepackage] = ACTIONS(11677), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11677), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11680), + [anon_sym_BSLASHinclude] = ACTIONS(11683), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11683), + [anon_sym_BSLASHinput] = ACTIONS(11686), + [anon_sym_BSLASHsubfile] = ACTIONS(11686), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11689), + [anon_sym_BSLASHbibliography] = ACTIONS(11692), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11695), + [anon_sym_BSLASHincludesvg] = ACTIONS(11698), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11701), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11704), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11704), + [anon_sym_BSLASHimport] = ACTIONS(11707), + [anon_sym_BSLASHsubimport] = ACTIONS(11707), + [anon_sym_BSLASHinputfrom] = ACTIONS(11707), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11707), + [anon_sym_BSLASHincludefrom] = ACTIONS(11707), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11707), + [anon_sym_BSLASHlabel] = ACTIONS(11710), + [anon_sym_BSLASHref] = ACTIONS(11713), + [anon_sym_BSLASHvref] = ACTIONS(11713), + [anon_sym_BSLASHVref] = ACTIONS(11713), + [anon_sym_BSLASHautoref] = ACTIONS(11713), + [anon_sym_BSLASHpageref] = ACTIONS(11713), + [anon_sym_BSLASHcref] = ACTIONS(11713), + [anon_sym_BSLASHCref] = ACTIONS(11713), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11716), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11716), + [anon_sym_BSLASHnamecref] = ACTIONS(11713), + [anon_sym_BSLASHnameCref] = ACTIONS(11713), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11713), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11713), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11713), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11713), + [anon_sym_BSLASHlabelcref] = ACTIONS(11713), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11713), + [anon_sym_BSLASHeqref] = ACTIONS(11719), + [anon_sym_BSLASHcrefrange] = ACTIONS(11722), + [anon_sym_BSLASHCrefrange] = ACTIONS(11722), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11725), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11725), + [anon_sym_BSLASHnewlabel] = ACTIONS(11728), + [anon_sym_BSLASHnewcommand] = ACTIONS(11731), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11731), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11731), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11734), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11737), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11740), + [anon_sym_BSLASHgls] = ACTIONS(11743), + [anon_sym_BSLASHGls] = ACTIONS(11743), + [anon_sym_BSLASHGLS] = ACTIONS(11743), + [anon_sym_BSLASHglspl] = ACTIONS(11743), + [anon_sym_BSLASHGlspl] = ACTIONS(11743), + [anon_sym_BSLASHGLSpl] = ACTIONS(11743), + [anon_sym_BSLASHglsdisp] = ACTIONS(11743), + [anon_sym_BSLASHglslink] = ACTIONS(11743), + [anon_sym_BSLASHglstext] = ACTIONS(11743), + [anon_sym_BSLASHGlstext] = ACTIONS(11743), + [anon_sym_BSLASHGLStext] = ACTIONS(11743), + [anon_sym_BSLASHglsfirst] = ACTIONS(11743), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11743), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11743), + [anon_sym_BSLASHglsplural] = ACTIONS(11743), + [anon_sym_BSLASHGlsplural] = ACTIONS(11743), + [anon_sym_BSLASHGLSplural] = ACTIONS(11743), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11743), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11743), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11743), + [anon_sym_BSLASHglsname] = ACTIONS(11743), + [anon_sym_BSLASHGlsname] = ACTIONS(11743), + [anon_sym_BSLASHGLSname] = ACTIONS(11743), + [anon_sym_BSLASHglssymbol] = ACTIONS(11743), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11743), + [anon_sym_BSLASHglsdesc] = ACTIONS(11743), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11743), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11743), + [anon_sym_BSLASHglsuseri] = ACTIONS(11743), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11743), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11743), + [anon_sym_BSLASHglsuserii] = ACTIONS(11743), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11743), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11743), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11743), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11743), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11743), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11743), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11743), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11743), + [anon_sym_BSLASHglsuserv] = ACTIONS(11743), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11743), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11743), + [anon_sym_BSLASHglsuservi] = ACTIONS(11743), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11743), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11743), + [anon_sym_BSLASHnewacronym] = ACTIONS(11746), + [anon_sym_BSLASHacrshort] = ACTIONS(11749), + [anon_sym_BSLASHAcrshort] = ACTIONS(11749), + [anon_sym_BSLASHACRshort] = ACTIONS(11749), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11749), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11749), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11749), + [anon_sym_BSLASHacrlong] = ACTIONS(11749), + [anon_sym_BSLASHAcrlong] = ACTIONS(11749), + [anon_sym_BSLASHACRlong] = ACTIONS(11749), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11749), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11749), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11749), + [anon_sym_BSLASHacrfull] = ACTIONS(11749), + [anon_sym_BSLASHAcrfull] = ACTIONS(11749), + [anon_sym_BSLASHACRfull] = ACTIONS(11749), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11749), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11749), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11749), + [anon_sym_BSLASHacs] = ACTIONS(11749), + [anon_sym_BSLASHAcs] = ACTIONS(11749), + [anon_sym_BSLASHacsp] = ACTIONS(11749), + [anon_sym_BSLASHAcsp] = ACTIONS(11749), + [anon_sym_BSLASHacl] = ACTIONS(11749), + [anon_sym_BSLASHAcl] = ACTIONS(11749), + [anon_sym_BSLASHaclp] = ACTIONS(11749), + [anon_sym_BSLASHAclp] = ACTIONS(11749), + [anon_sym_BSLASHacf] = ACTIONS(11749), + [anon_sym_BSLASHAcf] = ACTIONS(11749), + [anon_sym_BSLASHacfp] = ACTIONS(11749), + [anon_sym_BSLASHAcfp] = ACTIONS(11749), + [anon_sym_BSLASHac] = ACTIONS(11749), + [anon_sym_BSLASHAc] = ACTIONS(11749), + [anon_sym_BSLASHacp] = ACTIONS(11749), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11749), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11749), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11749), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11749), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11749), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11749), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11749), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11749), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11749), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11749), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11752), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11752), + [anon_sym_BSLASHcolor] = ACTIONS(11755), + [anon_sym_BSLASHcolorbox] = ACTIONS(11755), + [anon_sym_BSLASHtextcolor] = ACTIONS(11755), + [anon_sym_BSLASHpagecolor] = ACTIONS(11755), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11758), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11761), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11764), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11767), + }, + [465] = { + [sym__simple_content] = STATE(464), + [sym_brace_group] = STATE(464), + [sym_mixed_group] = STATE(464), + [sym_text] = STATE(464), + [sym__text_fragment] = STATE(1513), + [sym_displayed_equation] = STATE(464), + [sym_inline_formula] = STATE(464), + [sym_begin] = STATE(44), + [sym_environment] = STATE(464), + [sym_caption] = STATE(464), + [sym_citation] = STATE(464), + [sym_package_include] = STATE(464), + [sym_class_include] = STATE(464), + [sym_latex_include] = STATE(464), + [sym_latex_input] = STATE(464), + [sym_biblatex_include] = STATE(464), + [sym_bibtex_include] = STATE(464), + [sym_graphics_include] = STATE(464), + [sym_svg_include] = STATE(464), + [sym_inkscape_include] = STATE(464), + [sym_verbatim_include] = STATE(464), + [sym_import] = STATE(464), + [sym_label_definition] = STATE(464), + [sym_label_reference] = STATE(464), + [sym_equation_label_reference] = STATE(464), + [sym_label_reference_range] = STATE(464), + [sym_label_number] = STATE(464), + [sym_command_definition] = STATE(464), + [sym_math_operator] = STATE(464), + [sym_glossary_entry_definition] = STATE(464), + [sym_glossary_entry_reference] = STATE(464), + [sym_acronym_definition] = STATE(464), + [sym_acronym_reference] = STATE(464), + [sym_theorem_definition] = STATE(464), + [sym_color_reference] = STATE(464), + [sym_color_definition] = STATE(464), + [sym_color_set_definition] = STATE(464), + [sym_pgf_library_import] = STATE(464), + [sym_tikz_library_import] = STATE(464), + [sym_generic_command] = STATE(464), + [aux_sym_enum_item_repeat1] = STATE(464), + [aux_sym_text_repeat1] = STATE(1513), + [sym_generic_command_name] = ACTIONS(11291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(5600), + [anon_sym_LBRACK] = ACTIONS(11295), + [anon_sym_RBRACK] = ACTIONS(5598), + [anon_sym_LBRACE] = ACTIONS(11297), + [anon_sym_RBRACE] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(11295), + [anon_sym_COMMA] = ACTIONS(11299), + [anon_sym_EQ] = ACTIONS(11299), + [sym_word] = ACTIONS(11299), + [sym_param] = ACTIONS(11770), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11303), + [anon_sym_DOLLAR] = ACTIONS(11305), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11307), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(11309), + [anon_sym_BSLASHcite] = ACTIONS(11311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHCite] = ACTIONS(11311), + [anon_sym_BSLASHnocite] = ACTIONS(11311), + [anon_sym_BSLASHcitet] = ACTIONS(11311), + [anon_sym_BSLASHcitep] = ACTIONS(11311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteauthor] = ACTIONS(11311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitetitle] = ACTIONS(11311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteyear] = ACTIONS(11311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitedate] = ACTIONS(11311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteurl] = ACTIONS(11311), + [anon_sym_BSLASHfullcite] = ACTIONS(11311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11311), + [anon_sym_BSLASHcitealt] = ACTIONS(11311), + [anon_sym_BSLASHcitealp] = ACTIONS(11311), + [anon_sym_BSLASHcitetext] = ACTIONS(11311), + [anon_sym_BSLASHparencite] = ACTIONS(11311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHParencite] = ACTIONS(11311), + [anon_sym_BSLASHfootcite] = ACTIONS(11311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11311), + [anon_sym_BSLASHtextcite] = ACTIONS(11311), + [anon_sym_BSLASHTextcite] = ACTIONS(11311), + [anon_sym_BSLASHsmartcite] = ACTIONS(11311), + [anon_sym_BSLASHSmartcite] = ACTIONS(11311), + [anon_sym_BSLASHsupercite] = ACTIONS(11311), + [anon_sym_BSLASHautocite] = ACTIONS(11311), + [anon_sym_BSLASHAutocite] = ACTIONS(11311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHvolcite] = ACTIONS(11311), + [anon_sym_BSLASHVolcite] = ACTIONS(11311), + [anon_sym_BSLASHpvolcite] = ACTIONS(11311), + [anon_sym_BSLASHPvolcite] = ACTIONS(11311), + [anon_sym_BSLASHfvolcite] = ACTIONS(11311), + [anon_sym_BSLASHftvolcite] = ACTIONS(11311), + [anon_sym_BSLASHsvolcite] = ACTIONS(11311), + [anon_sym_BSLASHSvolcite] = ACTIONS(11311), + [anon_sym_BSLASHtvolcite] = ACTIONS(11311), + [anon_sym_BSLASHTvolcite] = ACTIONS(11311), + [anon_sym_BSLASHavolcite] = ACTIONS(11311), + [anon_sym_BSLASHAvolcite] = ACTIONS(11311), + [anon_sym_BSLASHnotecite] = ACTIONS(11311), + [anon_sym_BSLASHpnotecite] = ACTIONS(11311), + [anon_sym_BSLASHPnotecite] = ACTIONS(11311), + [anon_sym_BSLASHfnotecite] = ACTIONS(11311), + [anon_sym_BSLASHusepackage] = ACTIONS(11315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11317), + [anon_sym_BSLASHinclude] = ACTIONS(11319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11319), + [anon_sym_BSLASHinput] = ACTIONS(11321), + [anon_sym_BSLASHsubfile] = ACTIONS(11321), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11323), + [anon_sym_BSLASHbibliography] = ACTIONS(11325), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11327), + [anon_sym_BSLASHincludesvg] = ACTIONS(11329), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11333), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11333), + [anon_sym_BSLASHimport] = ACTIONS(11335), + [anon_sym_BSLASHsubimport] = ACTIONS(11335), + [anon_sym_BSLASHinputfrom] = ACTIONS(11335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11335), + [anon_sym_BSLASHincludefrom] = ACTIONS(11335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11335), + [anon_sym_BSLASHlabel] = ACTIONS(11337), + [anon_sym_BSLASHref] = ACTIONS(11339), + [anon_sym_BSLASHvref] = ACTIONS(11339), + [anon_sym_BSLASHVref] = ACTIONS(11339), + [anon_sym_BSLASHautoref] = ACTIONS(11339), + [anon_sym_BSLASHpageref] = ACTIONS(11339), + [anon_sym_BSLASHcref] = ACTIONS(11339), + [anon_sym_BSLASHCref] = ACTIONS(11339), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11341), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11341), + [anon_sym_BSLASHnamecref] = ACTIONS(11339), + [anon_sym_BSLASHnameCref] = ACTIONS(11339), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11339), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11339), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11339), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11339), + [anon_sym_BSLASHlabelcref] = ACTIONS(11339), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11339), + [anon_sym_BSLASHeqref] = ACTIONS(11343), + [anon_sym_BSLASHcrefrange] = ACTIONS(11345), + [anon_sym_BSLASHCrefrange] = ACTIONS(11345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11347), + [anon_sym_BSLASHnewlabel] = ACTIONS(11349), + [anon_sym_BSLASHnewcommand] = ACTIONS(11351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11357), + [anon_sym_BSLASHgls] = ACTIONS(11359), + [anon_sym_BSLASHGls] = ACTIONS(11359), + [anon_sym_BSLASHGLS] = ACTIONS(11359), + [anon_sym_BSLASHglspl] = ACTIONS(11359), + [anon_sym_BSLASHGlspl] = ACTIONS(11359), + [anon_sym_BSLASHGLSpl] = ACTIONS(11359), + [anon_sym_BSLASHglsdisp] = ACTIONS(11359), + [anon_sym_BSLASHglslink] = ACTIONS(11359), + [anon_sym_BSLASHglstext] = ACTIONS(11359), + [anon_sym_BSLASHGlstext] = ACTIONS(11359), + [anon_sym_BSLASHGLStext] = ACTIONS(11359), + [anon_sym_BSLASHglsfirst] = ACTIONS(11359), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11359), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11359), + [anon_sym_BSLASHglsplural] = ACTIONS(11359), + [anon_sym_BSLASHGlsplural] = ACTIONS(11359), + [anon_sym_BSLASHGLSplural] = ACTIONS(11359), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHglsname] = ACTIONS(11359), + [anon_sym_BSLASHGlsname] = ACTIONS(11359), + [anon_sym_BSLASHGLSname] = ACTIONS(11359), + [anon_sym_BSLASHglssymbol] = ACTIONS(11359), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11359), + [anon_sym_BSLASHglsdesc] = ACTIONS(11359), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11359), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11359), + [anon_sym_BSLASHglsuseri] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11359), + [anon_sym_BSLASHglsuserii] = ACTIONS(11359), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11359), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11359), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11359), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11359), + [anon_sym_BSLASHglsuserv] = ACTIONS(11359), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11359), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11359), + [anon_sym_BSLASHglsuservi] = ACTIONS(11359), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11359), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11359), + [anon_sym_BSLASHnewacronym] = ACTIONS(11361), + [anon_sym_BSLASHacrshort] = ACTIONS(11363), + [anon_sym_BSLASHAcrshort] = ACTIONS(11363), + [anon_sym_BSLASHACRshort] = ACTIONS(11363), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11363), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11363), + [anon_sym_BSLASHacrlong] = ACTIONS(11363), + [anon_sym_BSLASHAcrlong] = ACTIONS(11363), + [anon_sym_BSLASHACRlong] = ACTIONS(11363), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11363), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11363), + [anon_sym_BSLASHacrfull] = ACTIONS(11363), + [anon_sym_BSLASHAcrfull] = ACTIONS(11363), + [anon_sym_BSLASHACRfull] = ACTIONS(11363), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11363), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11363), + [anon_sym_BSLASHacs] = ACTIONS(11363), + [anon_sym_BSLASHAcs] = ACTIONS(11363), + [anon_sym_BSLASHacsp] = ACTIONS(11363), + [anon_sym_BSLASHAcsp] = ACTIONS(11363), + [anon_sym_BSLASHacl] = ACTIONS(11363), + [anon_sym_BSLASHAcl] = ACTIONS(11363), + [anon_sym_BSLASHaclp] = ACTIONS(11363), + [anon_sym_BSLASHAclp] = ACTIONS(11363), + [anon_sym_BSLASHacf] = ACTIONS(11363), + [anon_sym_BSLASHAcf] = ACTIONS(11363), + [anon_sym_BSLASHacfp] = ACTIONS(11363), + [anon_sym_BSLASHAcfp] = ACTIONS(11363), + [anon_sym_BSLASHac] = ACTIONS(11363), + [anon_sym_BSLASHAc] = ACTIONS(11363), + [anon_sym_BSLASHacp] = ACTIONS(11363), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11363), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11363), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11363), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11363), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11363), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11363), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11365), + [anon_sym_BSLASHcolor] = ACTIONS(11367), + [anon_sym_BSLASHcolorbox] = ACTIONS(11367), + [anon_sym_BSLASHtextcolor] = ACTIONS(11367), + [anon_sym_BSLASHpagecolor] = ACTIONS(11367), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11371), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11375), + }, + [466] = { + [sym__simple_content] = STATE(464), + [sym_brace_group] = STATE(464), + [sym_mixed_group] = STATE(464), + [sym_text] = STATE(464), + [sym__text_fragment] = STATE(1513), + [sym_displayed_equation] = STATE(464), + [sym_inline_formula] = STATE(464), + [sym_begin] = STATE(44), + [sym_environment] = STATE(464), + [sym_caption] = STATE(464), + [sym_citation] = STATE(464), + [sym_package_include] = STATE(464), + [sym_class_include] = STATE(464), + [sym_latex_include] = STATE(464), + [sym_latex_input] = STATE(464), + [sym_biblatex_include] = STATE(464), + [sym_bibtex_include] = STATE(464), + [sym_graphics_include] = STATE(464), + [sym_svg_include] = STATE(464), + [sym_inkscape_include] = STATE(464), + [sym_verbatim_include] = STATE(464), + [sym_import] = STATE(464), + [sym_label_definition] = STATE(464), + [sym_label_reference] = STATE(464), + [sym_equation_label_reference] = STATE(464), + [sym_label_reference_range] = STATE(464), + [sym_label_number] = STATE(464), + [sym_command_definition] = STATE(464), + [sym_math_operator] = STATE(464), + [sym_glossary_entry_definition] = STATE(464), + [sym_glossary_entry_reference] = STATE(464), + [sym_acronym_definition] = STATE(464), + [sym_acronym_reference] = STATE(464), + [sym_theorem_definition] = STATE(464), + [sym_color_reference] = STATE(464), + [sym_color_definition] = STATE(464), + [sym_color_set_definition] = STATE(464), + [sym_pgf_library_import] = STATE(464), + [sym_tikz_library_import] = STATE(464), + [sym_generic_command] = STATE(464), + [aux_sym_enum_item_repeat1] = STATE(464), + [aux_sym_text_repeat1] = STATE(1513), + [sym_generic_command_name] = ACTIONS(11291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(6177), + [anon_sym_LBRACK] = ACTIONS(11295), + [anon_sym_RBRACK] = ACTIONS(6175), + [anon_sym_LBRACE] = ACTIONS(11297), + [anon_sym_RBRACE] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(11295), + [anon_sym_COMMA] = ACTIONS(11299), + [anon_sym_EQ] = ACTIONS(11299), + [sym_word] = ACTIONS(11299), + [sym_param] = ACTIONS(11770), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11303), + [anon_sym_DOLLAR] = ACTIONS(11305), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11307), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(11309), + [anon_sym_BSLASHcite] = ACTIONS(11311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHCite] = ACTIONS(11311), + [anon_sym_BSLASHnocite] = ACTIONS(11311), + [anon_sym_BSLASHcitet] = ACTIONS(11311), + [anon_sym_BSLASHcitep] = ACTIONS(11311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteauthor] = ACTIONS(11311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitetitle] = ACTIONS(11311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteyear] = ACTIONS(11311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11313), + [anon_sym_BSLASHcitedate] = ACTIONS(11311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11313), + [anon_sym_BSLASHciteurl] = ACTIONS(11311), + [anon_sym_BSLASHfullcite] = ACTIONS(11311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11311), + [anon_sym_BSLASHcitealt] = ACTIONS(11311), + [anon_sym_BSLASHcitealp] = ACTIONS(11311), + [anon_sym_BSLASHcitetext] = ACTIONS(11311), + [anon_sym_BSLASHparencite] = ACTIONS(11311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHParencite] = ACTIONS(11311), + [anon_sym_BSLASHfootcite] = ACTIONS(11311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11311), + [anon_sym_BSLASHtextcite] = ACTIONS(11311), + [anon_sym_BSLASHTextcite] = ACTIONS(11311), + [anon_sym_BSLASHsmartcite] = ACTIONS(11311), + [anon_sym_BSLASHSmartcite] = ACTIONS(11311), + [anon_sym_BSLASHsupercite] = ACTIONS(11311), + [anon_sym_BSLASHautocite] = ACTIONS(11311), + [anon_sym_BSLASHAutocite] = ACTIONS(11311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11313), + [anon_sym_BSLASHvolcite] = ACTIONS(11311), + [anon_sym_BSLASHVolcite] = ACTIONS(11311), + [anon_sym_BSLASHpvolcite] = ACTIONS(11311), + [anon_sym_BSLASHPvolcite] = ACTIONS(11311), + [anon_sym_BSLASHfvolcite] = ACTIONS(11311), + [anon_sym_BSLASHftvolcite] = ACTIONS(11311), + [anon_sym_BSLASHsvolcite] = ACTIONS(11311), + [anon_sym_BSLASHSvolcite] = ACTIONS(11311), + [anon_sym_BSLASHtvolcite] = ACTIONS(11311), + [anon_sym_BSLASHTvolcite] = ACTIONS(11311), + [anon_sym_BSLASHavolcite] = ACTIONS(11311), + [anon_sym_BSLASHAvolcite] = ACTIONS(11311), + [anon_sym_BSLASHnotecite] = ACTIONS(11311), + [anon_sym_BSLASHpnotecite] = ACTIONS(11311), + [anon_sym_BSLASHPnotecite] = ACTIONS(11311), + [anon_sym_BSLASHfnotecite] = ACTIONS(11311), + [anon_sym_BSLASHusepackage] = ACTIONS(11315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11317), + [anon_sym_BSLASHinclude] = ACTIONS(11319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11319), + [anon_sym_BSLASHinput] = ACTIONS(11321), + [anon_sym_BSLASHsubfile] = ACTIONS(11321), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11323), + [anon_sym_BSLASHbibliography] = ACTIONS(11325), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11327), + [anon_sym_BSLASHincludesvg] = ACTIONS(11329), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11333), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11333), + [anon_sym_BSLASHimport] = ACTIONS(11335), + [anon_sym_BSLASHsubimport] = ACTIONS(11335), + [anon_sym_BSLASHinputfrom] = ACTIONS(11335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11335), + [anon_sym_BSLASHincludefrom] = ACTIONS(11335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11335), + [anon_sym_BSLASHlabel] = ACTIONS(11337), + [anon_sym_BSLASHref] = ACTIONS(11339), + [anon_sym_BSLASHvref] = ACTIONS(11339), + [anon_sym_BSLASHVref] = ACTIONS(11339), + [anon_sym_BSLASHautoref] = ACTIONS(11339), + [anon_sym_BSLASHpageref] = ACTIONS(11339), + [anon_sym_BSLASHcref] = ACTIONS(11339), + [anon_sym_BSLASHCref] = ACTIONS(11339), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11341), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11341), + [anon_sym_BSLASHnamecref] = ACTIONS(11339), + [anon_sym_BSLASHnameCref] = ACTIONS(11339), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11339), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11339), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11339), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11339), + [anon_sym_BSLASHlabelcref] = ACTIONS(11339), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11339), + [anon_sym_BSLASHeqref] = ACTIONS(11343), + [anon_sym_BSLASHcrefrange] = ACTIONS(11345), + [anon_sym_BSLASHCrefrange] = ACTIONS(11345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11347), + [anon_sym_BSLASHnewlabel] = ACTIONS(11349), + [anon_sym_BSLASHnewcommand] = ACTIONS(11351), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11351), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11351), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11357), + [anon_sym_BSLASHgls] = ACTIONS(11359), + [anon_sym_BSLASHGls] = ACTIONS(11359), + [anon_sym_BSLASHGLS] = ACTIONS(11359), + [anon_sym_BSLASHglspl] = ACTIONS(11359), + [anon_sym_BSLASHGlspl] = ACTIONS(11359), + [anon_sym_BSLASHGLSpl] = ACTIONS(11359), + [anon_sym_BSLASHglsdisp] = ACTIONS(11359), + [anon_sym_BSLASHglslink] = ACTIONS(11359), + [anon_sym_BSLASHglstext] = ACTIONS(11359), + [anon_sym_BSLASHGlstext] = ACTIONS(11359), + [anon_sym_BSLASHGLStext] = ACTIONS(11359), + [anon_sym_BSLASHglsfirst] = ACTIONS(11359), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11359), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11359), + [anon_sym_BSLASHglsplural] = ACTIONS(11359), + [anon_sym_BSLASHGlsplural] = ACTIONS(11359), + [anon_sym_BSLASHGLSplural] = ACTIONS(11359), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11359), + [anon_sym_BSLASHglsname] = ACTIONS(11359), + [anon_sym_BSLASHGlsname] = ACTIONS(11359), + [anon_sym_BSLASHGLSname] = ACTIONS(11359), + [anon_sym_BSLASHglssymbol] = ACTIONS(11359), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11359), + [anon_sym_BSLASHglsdesc] = ACTIONS(11359), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11359), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11359), + [anon_sym_BSLASHglsuseri] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11359), + [anon_sym_BSLASHglsuserii] = ACTIONS(11359), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11359), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11359), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11359), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11359), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11359), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11359), + [anon_sym_BSLASHglsuserv] = ACTIONS(11359), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11359), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11359), + [anon_sym_BSLASHglsuservi] = ACTIONS(11359), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11359), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11359), + [anon_sym_BSLASHnewacronym] = ACTIONS(11361), + [anon_sym_BSLASHacrshort] = ACTIONS(11363), + [anon_sym_BSLASHAcrshort] = ACTIONS(11363), + [anon_sym_BSLASHACRshort] = ACTIONS(11363), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11363), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11363), + [anon_sym_BSLASHacrlong] = ACTIONS(11363), + [anon_sym_BSLASHAcrlong] = ACTIONS(11363), + [anon_sym_BSLASHACRlong] = ACTIONS(11363), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11363), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11363), + [anon_sym_BSLASHacrfull] = ACTIONS(11363), + [anon_sym_BSLASHAcrfull] = ACTIONS(11363), + [anon_sym_BSLASHACRfull] = ACTIONS(11363), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11363), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11363), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11363), + [anon_sym_BSLASHacs] = ACTIONS(11363), + [anon_sym_BSLASHAcs] = ACTIONS(11363), + [anon_sym_BSLASHacsp] = ACTIONS(11363), + [anon_sym_BSLASHAcsp] = ACTIONS(11363), + [anon_sym_BSLASHacl] = ACTIONS(11363), + [anon_sym_BSLASHAcl] = ACTIONS(11363), + [anon_sym_BSLASHaclp] = ACTIONS(11363), + [anon_sym_BSLASHAclp] = ACTIONS(11363), + [anon_sym_BSLASHacf] = ACTIONS(11363), + [anon_sym_BSLASHAcf] = ACTIONS(11363), + [anon_sym_BSLASHacfp] = ACTIONS(11363), + [anon_sym_BSLASHAcfp] = ACTIONS(11363), + [anon_sym_BSLASHac] = ACTIONS(11363), + [anon_sym_BSLASHAc] = ACTIONS(11363), + [anon_sym_BSLASHacp] = ACTIONS(11363), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11363), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11363), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11363), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11363), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11363), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11363), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11363), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11365), + [anon_sym_BSLASHcolor] = ACTIONS(11367), + [anon_sym_BSLASHcolorbox] = ACTIONS(11367), + [anon_sym_BSLASHtextcolor] = ACTIONS(11367), + [anon_sym_BSLASHpagecolor] = ACTIONS(11367), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11371), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11375), + }, + [467] = { + [sym__simple_content] = STATE(469), + [sym_brace_group] = STATE(469), + [sym_mixed_group] = STATE(469), + [sym_text] = STATE(469), + [sym__text_fragment] = STATE(1752), + [sym_displayed_equation] = STATE(469), + [sym_inline_formula] = STATE(469), + [sym_begin] = STATE(78), + [sym_environment] = STATE(469), + [sym_caption] = STATE(469), + [sym_citation] = STATE(469), + [sym_package_include] = STATE(469), + [sym_class_include] = STATE(469), + [sym_latex_include] = STATE(469), + [sym_latex_input] = STATE(469), + [sym_biblatex_include] = STATE(469), + [sym_bibtex_include] = STATE(469), + [sym_graphics_include] = STATE(469), + [sym_svg_include] = STATE(469), + [sym_inkscape_include] = STATE(469), + [sym_verbatim_include] = STATE(469), + [sym_import] = STATE(469), + [sym_label_definition] = STATE(469), + [sym_label_reference] = STATE(469), + [sym_equation_label_reference] = STATE(469), + [sym_label_reference_range] = STATE(469), + [sym_label_number] = STATE(469), + [sym_command_definition] = STATE(469), + [sym_math_operator] = STATE(469), + [sym_glossary_entry_definition] = STATE(469), + [sym_glossary_entry_reference] = STATE(469), + [sym_acronym_definition] = STATE(469), + [sym_acronym_reference] = STATE(469), + [sym_theorem_definition] = STATE(469), + [sym_color_reference] = STATE(469), + [sym_color_definition] = STATE(469), + [sym_color_set_definition] = STATE(469), + [sym_pgf_library_import] = STATE(469), + [sym_tikz_library_import] = STATE(469), + [sym_generic_command] = STATE(469), + [aux_sym_enum_item_repeat1] = STATE(469), + [aux_sym_text_repeat1] = STATE(1752), + [sym_generic_command_name] = ACTIONS(11772), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(11774), + [anon_sym_RBRACK] = ACTIONS(5598), + [anon_sym_LBRACE] = ACTIONS(11776), + [anon_sym_RBRACE] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(11774), + [anon_sym_COMMA] = ACTIONS(11778), + [anon_sym_EQ] = ACTIONS(11778), + [sym_word] = ACTIONS(11778), + [sym_param] = ACTIONS(11780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11782), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11782), + [anon_sym_DOLLAR] = ACTIONS(11784), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11786), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(11788), + [anon_sym_BSLASHcite] = ACTIONS(11790), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHCite] = ACTIONS(11790), + [anon_sym_BSLASHnocite] = ACTIONS(11790), + [anon_sym_BSLASHcitet] = ACTIONS(11790), + [anon_sym_BSLASHcitep] = ACTIONS(11790), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11792), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11792), + [anon_sym_BSLASHciteauthor] = ACTIONS(11790), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11792), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11790), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11792), + [anon_sym_BSLASHcitetitle] = ACTIONS(11790), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11792), + [anon_sym_BSLASHciteyear] = ACTIONS(11790), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11792), + [anon_sym_BSLASHcitedate] = ACTIONS(11790), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11792), + [anon_sym_BSLASHciteurl] = ACTIONS(11790), + [anon_sym_BSLASHfullcite] = ACTIONS(11790), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11790), + [anon_sym_BSLASHcitealt] = ACTIONS(11790), + [anon_sym_BSLASHcitealp] = ACTIONS(11790), + [anon_sym_BSLASHcitetext] = ACTIONS(11790), + [anon_sym_BSLASHparencite] = ACTIONS(11790), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHParencite] = ACTIONS(11790), + [anon_sym_BSLASHfootcite] = ACTIONS(11790), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11790), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11790), + [anon_sym_BSLASHtextcite] = ACTIONS(11790), + [anon_sym_BSLASHTextcite] = ACTIONS(11790), + [anon_sym_BSLASHsmartcite] = ACTIONS(11790), + [anon_sym_BSLASHSmartcite] = ACTIONS(11790), + [anon_sym_BSLASHsupercite] = ACTIONS(11790), + [anon_sym_BSLASHautocite] = ACTIONS(11790), + [anon_sym_BSLASHAutocite] = ACTIONS(11790), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHvolcite] = ACTIONS(11790), + [anon_sym_BSLASHVolcite] = ACTIONS(11790), + [anon_sym_BSLASHpvolcite] = ACTIONS(11790), + [anon_sym_BSLASHPvolcite] = ACTIONS(11790), + [anon_sym_BSLASHfvolcite] = ACTIONS(11790), + [anon_sym_BSLASHftvolcite] = ACTIONS(11790), + [anon_sym_BSLASHsvolcite] = ACTIONS(11790), + [anon_sym_BSLASHSvolcite] = ACTIONS(11790), + [anon_sym_BSLASHtvolcite] = ACTIONS(11790), + [anon_sym_BSLASHTvolcite] = ACTIONS(11790), + [anon_sym_BSLASHavolcite] = ACTIONS(11790), + [anon_sym_BSLASHAvolcite] = ACTIONS(11790), + [anon_sym_BSLASHnotecite] = ACTIONS(11790), + [anon_sym_BSLASHpnotecite] = ACTIONS(11790), + [anon_sym_BSLASHPnotecite] = ACTIONS(11790), + [anon_sym_BSLASHfnotecite] = ACTIONS(11790), + [anon_sym_BSLASHusepackage] = ACTIONS(11794), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11794), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11796), + [anon_sym_BSLASHinclude] = ACTIONS(11798), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11798), + [anon_sym_BSLASHinput] = ACTIONS(11800), + [anon_sym_BSLASHsubfile] = ACTIONS(11800), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11802), + [anon_sym_BSLASHbibliography] = ACTIONS(11804), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11806), + [anon_sym_BSLASHincludesvg] = ACTIONS(11808), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11810), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11812), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11812), + [anon_sym_BSLASHimport] = ACTIONS(11814), + [anon_sym_BSLASHsubimport] = ACTIONS(11814), + [anon_sym_BSLASHinputfrom] = ACTIONS(11814), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11814), + [anon_sym_BSLASHincludefrom] = ACTIONS(11814), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11814), + [anon_sym_BSLASHlabel] = ACTIONS(11816), + [anon_sym_BSLASHref] = ACTIONS(11818), + [anon_sym_BSLASHvref] = ACTIONS(11818), + [anon_sym_BSLASHVref] = ACTIONS(11818), + [anon_sym_BSLASHautoref] = ACTIONS(11818), + [anon_sym_BSLASHpageref] = ACTIONS(11818), + [anon_sym_BSLASHcref] = ACTIONS(11818), + [anon_sym_BSLASHCref] = ACTIONS(11818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11820), + [anon_sym_BSLASHnamecref] = ACTIONS(11818), + [anon_sym_BSLASHnameCref] = ACTIONS(11818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11818), + [anon_sym_BSLASHlabelcref] = ACTIONS(11818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11818), + [anon_sym_BSLASHeqref] = ACTIONS(11822), + [anon_sym_BSLASHcrefrange] = ACTIONS(11824), + [anon_sym_BSLASHCrefrange] = ACTIONS(11824), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11826), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11826), + [anon_sym_BSLASHnewlabel] = ACTIONS(11828), + [anon_sym_BSLASHnewcommand] = ACTIONS(11830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11832), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11834), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11836), + [anon_sym_BSLASHgls] = ACTIONS(11838), + [anon_sym_BSLASHGls] = ACTIONS(11838), + [anon_sym_BSLASHGLS] = ACTIONS(11838), + [anon_sym_BSLASHglspl] = ACTIONS(11838), + [anon_sym_BSLASHGlspl] = ACTIONS(11838), + [anon_sym_BSLASHGLSpl] = ACTIONS(11838), + [anon_sym_BSLASHglsdisp] = ACTIONS(11838), + [anon_sym_BSLASHglslink] = ACTIONS(11838), + [anon_sym_BSLASHglstext] = ACTIONS(11838), + [anon_sym_BSLASHGlstext] = ACTIONS(11838), + [anon_sym_BSLASHGLStext] = ACTIONS(11838), + [anon_sym_BSLASHglsfirst] = ACTIONS(11838), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11838), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11838), + [anon_sym_BSLASHglsplural] = ACTIONS(11838), + [anon_sym_BSLASHGlsplural] = ACTIONS(11838), + [anon_sym_BSLASHGLSplural] = ACTIONS(11838), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11838), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11838), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11838), + [anon_sym_BSLASHglsname] = ACTIONS(11838), + [anon_sym_BSLASHGlsname] = ACTIONS(11838), + [anon_sym_BSLASHGLSname] = ACTIONS(11838), + [anon_sym_BSLASHglssymbol] = ACTIONS(11838), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11838), + [anon_sym_BSLASHglsdesc] = ACTIONS(11838), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11838), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11838), + [anon_sym_BSLASHglsuseri] = ACTIONS(11838), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11838), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11838), + [anon_sym_BSLASHglsuserii] = ACTIONS(11838), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11838), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11838), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11838), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11838), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11838), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11838), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11838), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11838), + [anon_sym_BSLASHglsuserv] = ACTIONS(11838), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11838), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11838), + [anon_sym_BSLASHglsuservi] = ACTIONS(11838), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11838), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11838), + [anon_sym_BSLASHnewacronym] = ACTIONS(11840), + [anon_sym_BSLASHacrshort] = ACTIONS(11842), + [anon_sym_BSLASHAcrshort] = ACTIONS(11842), + [anon_sym_BSLASHACRshort] = ACTIONS(11842), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11842), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11842), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11842), + [anon_sym_BSLASHacrlong] = ACTIONS(11842), + [anon_sym_BSLASHAcrlong] = ACTIONS(11842), + [anon_sym_BSLASHACRlong] = ACTIONS(11842), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11842), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11842), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11842), + [anon_sym_BSLASHacrfull] = ACTIONS(11842), + [anon_sym_BSLASHAcrfull] = ACTIONS(11842), + [anon_sym_BSLASHACRfull] = ACTIONS(11842), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11842), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11842), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11842), + [anon_sym_BSLASHacs] = ACTIONS(11842), + [anon_sym_BSLASHAcs] = ACTIONS(11842), + [anon_sym_BSLASHacsp] = ACTIONS(11842), + [anon_sym_BSLASHAcsp] = ACTIONS(11842), + [anon_sym_BSLASHacl] = ACTIONS(11842), + [anon_sym_BSLASHAcl] = ACTIONS(11842), + [anon_sym_BSLASHaclp] = ACTIONS(11842), + [anon_sym_BSLASHAclp] = ACTIONS(11842), + [anon_sym_BSLASHacf] = ACTIONS(11842), + [anon_sym_BSLASHAcf] = ACTIONS(11842), + [anon_sym_BSLASHacfp] = ACTIONS(11842), + [anon_sym_BSLASHAcfp] = ACTIONS(11842), + [anon_sym_BSLASHac] = ACTIONS(11842), + [anon_sym_BSLASHAc] = ACTIONS(11842), + [anon_sym_BSLASHacp] = ACTIONS(11842), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11842), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11842), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11842), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11842), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11842), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11842), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11842), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11842), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11842), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11842), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11844), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11844), + [anon_sym_BSLASHcolor] = ACTIONS(11846), + [anon_sym_BSLASHcolorbox] = ACTIONS(11846), + [anon_sym_BSLASHtextcolor] = ACTIONS(11846), + [anon_sym_BSLASHpagecolor] = ACTIONS(11846), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11848), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11850), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11852), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11854), + }, + [468] = { + [sym__simple_content] = STATE(471), + [sym_brace_group] = STATE(471), + [sym_mixed_group] = STATE(471), + [sym_text] = STATE(471), + [sym__text_fragment] = STATE(1752), + [sym_displayed_equation] = STATE(471), + [sym_inline_formula] = STATE(471), + [sym_begin] = STATE(78), + [sym_environment] = STATE(471), + [sym_caption] = STATE(471), + [sym_citation] = STATE(471), + [sym_package_include] = STATE(471), + [sym_class_include] = STATE(471), + [sym_latex_include] = STATE(471), + [sym_latex_input] = STATE(471), + [sym_biblatex_include] = STATE(471), + [sym_bibtex_include] = STATE(471), + [sym_graphics_include] = STATE(471), + [sym_svg_include] = STATE(471), + [sym_inkscape_include] = STATE(471), + [sym_verbatim_include] = STATE(471), + [sym_import] = STATE(471), + [sym_label_definition] = STATE(471), + [sym_label_reference] = STATE(471), + [sym_equation_label_reference] = STATE(471), + [sym_label_reference_range] = STATE(471), + [sym_label_number] = STATE(471), + [sym_command_definition] = STATE(471), + [sym_math_operator] = STATE(471), + [sym_glossary_entry_definition] = STATE(471), + [sym_glossary_entry_reference] = STATE(471), + [sym_acronym_definition] = STATE(471), + [sym_acronym_reference] = STATE(471), + [sym_theorem_definition] = STATE(471), + [sym_color_reference] = STATE(471), + [sym_color_definition] = STATE(471), + [sym_color_set_definition] = STATE(471), + [sym_pgf_library_import] = STATE(471), + [sym_tikz_library_import] = STATE(471), + [sym_generic_command] = STATE(471), + [aux_sym_enum_item_repeat1] = STATE(471), + [aux_sym_text_repeat1] = STATE(1752), + [sym_generic_command_name] = ACTIONS(11772), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(11774), + [anon_sym_RBRACK] = ACTIONS(5604), + [anon_sym_LBRACE] = ACTIONS(11776), + [anon_sym_RBRACE] = ACTIONS(5604), + [anon_sym_LPAREN] = ACTIONS(11774), + [anon_sym_COMMA] = ACTIONS(11778), + [anon_sym_EQ] = ACTIONS(11778), + [sym_word] = ACTIONS(11778), + [sym_param] = ACTIONS(11856), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11782), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11782), + [anon_sym_DOLLAR] = ACTIONS(11784), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11786), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(11788), + [anon_sym_BSLASHcite] = ACTIONS(11790), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHCite] = ACTIONS(11790), + [anon_sym_BSLASHnocite] = ACTIONS(11790), + [anon_sym_BSLASHcitet] = ACTIONS(11790), + [anon_sym_BSLASHcitep] = ACTIONS(11790), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11792), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11792), + [anon_sym_BSLASHciteauthor] = ACTIONS(11790), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11792), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11790), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11792), + [anon_sym_BSLASHcitetitle] = ACTIONS(11790), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11792), + [anon_sym_BSLASHciteyear] = ACTIONS(11790), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11792), + [anon_sym_BSLASHcitedate] = ACTIONS(11790), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11792), + [anon_sym_BSLASHciteurl] = ACTIONS(11790), + [anon_sym_BSLASHfullcite] = ACTIONS(11790), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11790), + [anon_sym_BSLASHcitealt] = ACTIONS(11790), + [anon_sym_BSLASHcitealp] = ACTIONS(11790), + [anon_sym_BSLASHcitetext] = ACTIONS(11790), + [anon_sym_BSLASHparencite] = ACTIONS(11790), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHParencite] = ACTIONS(11790), + [anon_sym_BSLASHfootcite] = ACTIONS(11790), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11790), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11790), + [anon_sym_BSLASHtextcite] = ACTIONS(11790), + [anon_sym_BSLASHTextcite] = ACTIONS(11790), + [anon_sym_BSLASHsmartcite] = ACTIONS(11790), + [anon_sym_BSLASHSmartcite] = ACTIONS(11790), + [anon_sym_BSLASHsupercite] = ACTIONS(11790), + [anon_sym_BSLASHautocite] = ACTIONS(11790), + [anon_sym_BSLASHAutocite] = ACTIONS(11790), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHvolcite] = ACTIONS(11790), + [anon_sym_BSLASHVolcite] = ACTIONS(11790), + [anon_sym_BSLASHpvolcite] = ACTIONS(11790), + [anon_sym_BSLASHPvolcite] = ACTIONS(11790), + [anon_sym_BSLASHfvolcite] = ACTIONS(11790), + [anon_sym_BSLASHftvolcite] = ACTIONS(11790), + [anon_sym_BSLASHsvolcite] = ACTIONS(11790), + [anon_sym_BSLASHSvolcite] = ACTIONS(11790), + [anon_sym_BSLASHtvolcite] = ACTIONS(11790), + [anon_sym_BSLASHTvolcite] = ACTIONS(11790), + [anon_sym_BSLASHavolcite] = ACTIONS(11790), + [anon_sym_BSLASHAvolcite] = ACTIONS(11790), + [anon_sym_BSLASHnotecite] = ACTIONS(11790), + [anon_sym_BSLASHpnotecite] = ACTIONS(11790), + [anon_sym_BSLASHPnotecite] = ACTIONS(11790), + [anon_sym_BSLASHfnotecite] = ACTIONS(11790), + [anon_sym_BSLASHusepackage] = ACTIONS(11794), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11794), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11796), + [anon_sym_BSLASHinclude] = ACTIONS(11798), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11798), + [anon_sym_BSLASHinput] = ACTIONS(11800), + [anon_sym_BSLASHsubfile] = ACTIONS(11800), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11802), + [anon_sym_BSLASHbibliography] = ACTIONS(11804), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11806), + [anon_sym_BSLASHincludesvg] = ACTIONS(11808), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11810), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11812), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11812), + [anon_sym_BSLASHimport] = ACTIONS(11814), + [anon_sym_BSLASHsubimport] = ACTIONS(11814), + [anon_sym_BSLASHinputfrom] = ACTIONS(11814), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11814), + [anon_sym_BSLASHincludefrom] = ACTIONS(11814), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11814), + [anon_sym_BSLASHlabel] = ACTIONS(11816), + [anon_sym_BSLASHref] = ACTIONS(11818), + [anon_sym_BSLASHvref] = ACTIONS(11818), + [anon_sym_BSLASHVref] = ACTIONS(11818), + [anon_sym_BSLASHautoref] = ACTIONS(11818), + [anon_sym_BSLASHpageref] = ACTIONS(11818), + [anon_sym_BSLASHcref] = ACTIONS(11818), + [anon_sym_BSLASHCref] = ACTIONS(11818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11820), + [anon_sym_BSLASHnamecref] = ACTIONS(11818), + [anon_sym_BSLASHnameCref] = ACTIONS(11818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11818), + [anon_sym_BSLASHlabelcref] = ACTIONS(11818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11818), + [anon_sym_BSLASHeqref] = ACTIONS(11822), + [anon_sym_BSLASHcrefrange] = ACTIONS(11824), + [anon_sym_BSLASHCrefrange] = ACTIONS(11824), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11826), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11826), + [anon_sym_BSLASHnewlabel] = ACTIONS(11828), + [anon_sym_BSLASHnewcommand] = ACTIONS(11830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11832), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11834), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11836), + [anon_sym_BSLASHgls] = ACTIONS(11838), + [anon_sym_BSLASHGls] = ACTIONS(11838), + [anon_sym_BSLASHGLS] = ACTIONS(11838), + [anon_sym_BSLASHglspl] = ACTIONS(11838), + [anon_sym_BSLASHGlspl] = ACTIONS(11838), + [anon_sym_BSLASHGLSpl] = ACTIONS(11838), + [anon_sym_BSLASHglsdisp] = ACTIONS(11838), + [anon_sym_BSLASHglslink] = ACTIONS(11838), + [anon_sym_BSLASHglstext] = ACTIONS(11838), + [anon_sym_BSLASHGlstext] = ACTIONS(11838), + [anon_sym_BSLASHGLStext] = ACTIONS(11838), + [anon_sym_BSLASHglsfirst] = ACTIONS(11838), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11838), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11838), + [anon_sym_BSLASHglsplural] = ACTIONS(11838), + [anon_sym_BSLASHGlsplural] = ACTIONS(11838), + [anon_sym_BSLASHGLSplural] = ACTIONS(11838), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11838), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11838), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11838), + [anon_sym_BSLASHglsname] = ACTIONS(11838), + [anon_sym_BSLASHGlsname] = ACTIONS(11838), + [anon_sym_BSLASHGLSname] = ACTIONS(11838), + [anon_sym_BSLASHglssymbol] = ACTIONS(11838), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11838), + [anon_sym_BSLASHglsdesc] = ACTIONS(11838), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11838), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11838), + [anon_sym_BSLASHglsuseri] = ACTIONS(11838), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11838), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11838), + [anon_sym_BSLASHglsuserii] = ACTIONS(11838), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11838), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11838), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11838), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11838), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11838), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11838), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11838), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11838), + [anon_sym_BSLASHglsuserv] = ACTIONS(11838), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11838), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11838), + [anon_sym_BSLASHglsuservi] = ACTIONS(11838), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11838), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11838), + [anon_sym_BSLASHnewacronym] = ACTIONS(11840), + [anon_sym_BSLASHacrshort] = ACTIONS(11842), + [anon_sym_BSLASHAcrshort] = ACTIONS(11842), + [anon_sym_BSLASHACRshort] = ACTIONS(11842), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11842), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11842), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11842), + [anon_sym_BSLASHacrlong] = ACTIONS(11842), + [anon_sym_BSLASHAcrlong] = ACTIONS(11842), + [anon_sym_BSLASHACRlong] = ACTIONS(11842), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11842), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11842), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11842), + [anon_sym_BSLASHacrfull] = ACTIONS(11842), + [anon_sym_BSLASHAcrfull] = ACTIONS(11842), + [anon_sym_BSLASHACRfull] = ACTIONS(11842), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11842), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11842), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11842), + [anon_sym_BSLASHacs] = ACTIONS(11842), + [anon_sym_BSLASHAcs] = ACTIONS(11842), + [anon_sym_BSLASHacsp] = ACTIONS(11842), + [anon_sym_BSLASHAcsp] = ACTIONS(11842), + [anon_sym_BSLASHacl] = ACTIONS(11842), + [anon_sym_BSLASHAcl] = ACTIONS(11842), + [anon_sym_BSLASHaclp] = ACTIONS(11842), + [anon_sym_BSLASHAclp] = ACTIONS(11842), + [anon_sym_BSLASHacf] = ACTIONS(11842), + [anon_sym_BSLASHAcf] = ACTIONS(11842), + [anon_sym_BSLASHacfp] = ACTIONS(11842), + [anon_sym_BSLASHAcfp] = ACTIONS(11842), + [anon_sym_BSLASHac] = ACTIONS(11842), + [anon_sym_BSLASHAc] = ACTIONS(11842), + [anon_sym_BSLASHacp] = ACTIONS(11842), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11842), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11842), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11842), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11842), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11842), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11842), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11842), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11842), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11842), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11842), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11844), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11844), + [anon_sym_BSLASHcolor] = ACTIONS(11846), + [anon_sym_BSLASHcolorbox] = ACTIONS(11846), + [anon_sym_BSLASHtextcolor] = ACTIONS(11846), + [anon_sym_BSLASHpagecolor] = ACTIONS(11846), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11848), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11850), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11852), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11854), + }, + [469] = { + [sym__simple_content] = STATE(469), + [sym_brace_group] = STATE(469), + [sym_mixed_group] = STATE(469), + [sym_text] = STATE(469), + [sym__text_fragment] = STATE(1752), + [sym_displayed_equation] = STATE(469), + [sym_inline_formula] = STATE(469), + [sym_begin] = STATE(78), + [sym_environment] = STATE(469), + [sym_caption] = STATE(469), + [sym_citation] = STATE(469), + [sym_package_include] = STATE(469), + [sym_class_include] = STATE(469), + [sym_latex_include] = STATE(469), + [sym_latex_input] = STATE(469), + [sym_biblatex_include] = STATE(469), + [sym_bibtex_include] = STATE(469), + [sym_graphics_include] = STATE(469), + [sym_svg_include] = STATE(469), + [sym_inkscape_include] = STATE(469), + [sym_verbatim_include] = STATE(469), + [sym_import] = STATE(469), + [sym_label_definition] = STATE(469), + [sym_label_reference] = STATE(469), + [sym_equation_label_reference] = STATE(469), + [sym_label_reference_range] = STATE(469), + [sym_label_number] = STATE(469), + [sym_command_definition] = STATE(469), + [sym_math_operator] = STATE(469), + [sym_glossary_entry_definition] = STATE(469), + [sym_glossary_entry_reference] = STATE(469), + [sym_acronym_definition] = STATE(469), + [sym_acronym_reference] = STATE(469), + [sym_theorem_definition] = STATE(469), + [sym_color_reference] = STATE(469), + [sym_color_definition] = STATE(469), + [sym_color_set_definition] = STATE(469), + [sym_pgf_library_import] = STATE(469), + [sym_tikz_library_import] = STATE(469), + [sym_generic_command] = STATE(469), + [aux_sym_enum_item_repeat1] = STATE(469), + [aux_sym_text_repeat1] = STATE(1752), + [sym_generic_command_name] = ACTIONS(11858), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(11861), + [anon_sym_RBRACK] = ACTIONS(6040), + [anon_sym_LBRACE] = ACTIONS(11864), + [anon_sym_RBRACE] = ACTIONS(6040), + [anon_sym_LPAREN] = ACTIONS(11861), + [anon_sym_COMMA] = ACTIONS(11867), + [anon_sym_EQ] = ACTIONS(11867), + [sym_word] = ACTIONS(11867), + [sym_param] = ACTIONS(11870), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11873), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11873), + [anon_sym_DOLLAR] = ACTIONS(11876), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11879), + [anon_sym_BSLASHbegin] = ACTIONS(6068), + [anon_sym_BSLASHcaption] = ACTIONS(11882), + [anon_sym_BSLASHcite] = ACTIONS(11885), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11888), + [anon_sym_BSLASHCite] = ACTIONS(11885), + [anon_sym_BSLASHnocite] = ACTIONS(11885), + [anon_sym_BSLASHcitet] = ACTIONS(11885), + [anon_sym_BSLASHcitep] = ACTIONS(11885), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11888), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11888), + [anon_sym_BSLASHciteauthor] = ACTIONS(11885), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11888), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11885), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11888), + [anon_sym_BSLASHcitetitle] = ACTIONS(11885), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11888), + [anon_sym_BSLASHciteyear] = ACTIONS(11885), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11888), + [anon_sym_BSLASHcitedate] = ACTIONS(11885), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11888), + [anon_sym_BSLASHciteurl] = ACTIONS(11885), + [anon_sym_BSLASHfullcite] = ACTIONS(11885), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11885), + [anon_sym_BSLASHcitealt] = ACTIONS(11885), + [anon_sym_BSLASHcitealp] = ACTIONS(11885), + [anon_sym_BSLASHcitetext] = ACTIONS(11885), + [anon_sym_BSLASHparencite] = ACTIONS(11885), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11888), + [anon_sym_BSLASHParencite] = ACTIONS(11885), + [anon_sym_BSLASHfootcite] = ACTIONS(11885), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11885), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11885), + [anon_sym_BSLASHtextcite] = ACTIONS(11885), + [anon_sym_BSLASHTextcite] = ACTIONS(11885), + [anon_sym_BSLASHsmartcite] = ACTIONS(11885), + [anon_sym_BSLASHSmartcite] = ACTIONS(11885), + [anon_sym_BSLASHsupercite] = ACTIONS(11885), + [anon_sym_BSLASHautocite] = ACTIONS(11885), + [anon_sym_BSLASHAutocite] = ACTIONS(11885), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11888), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11888), + [anon_sym_BSLASHvolcite] = ACTIONS(11885), + [anon_sym_BSLASHVolcite] = ACTIONS(11885), + [anon_sym_BSLASHpvolcite] = ACTIONS(11885), + [anon_sym_BSLASHPvolcite] = ACTIONS(11885), + [anon_sym_BSLASHfvolcite] = ACTIONS(11885), + [anon_sym_BSLASHftvolcite] = ACTIONS(11885), + [anon_sym_BSLASHsvolcite] = ACTIONS(11885), + [anon_sym_BSLASHSvolcite] = ACTIONS(11885), + [anon_sym_BSLASHtvolcite] = ACTIONS(11885), + [anon_sym_BSLASHTvolcite] = ACTIONS(11885), + [anon_sym_BSLASHavolcite] = ACTIONS(11885), + [anon_sym_BSLASHAvolcite] = ACTIONS(11885), + [anon_sym_BSLASHnotecite] = ACTIONS(11885), + [anon_sym_BSLASHpnotecite] = ACTIONS(11885), + [anon_sym_BSLASHPnotecite] = ACTIONS(11885), + [anon_sym_BSLASHfnotecite] = ACTIONS(11885), + [anon_sym_BSLASHusepackage] = ACTIONS(11891), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11891), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11894), + [anon_sym_BSLASHinclude] = ACTIONS(11897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11897), + [anon_sym_BSLASHinput] = ACTIONS(11900), + [anon_sym_BSLASHsubfile] = ACTIONS(11900), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11903), + [anon_sym_BSLASHbibliography] = ACTIONS(11906), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11909), + [anon_sym_BSLASHincludesvg] = ACTIONS(11912), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11915), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11918), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11918), + [anon_sym_BSLASHimport] = ACTIONS(11921), + [anon_sym_BSLASHsubimport] = ACTIONS(11921), + [anon_sym_BSLASHinputfrom] = ACTIONS(11921), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11921), + [anon_sym_BSLASHincludefrom] = ACTIONS(11921), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11921), + [anon_sym_BSLASHlabel] = ACTIONS(11924), + [anon_sym_BSLASHref] = ACTIONS(11927), + [anon_sym_BSLASHvref] = ACTIONS(11927), + [anon_sym_BSLASHVref] = ACTIONS(11927), + [anon_sym_BSLASHautoref] = ACTIONS(11927), + [anon_sym_BSLASHpageref] = ACTIONS(11927), + [anon_sym_BSLASHcref] = ACTIONS(11927), + [anon_sym_BSLASHCref] = ACTIONS(11927), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11930), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11930), + [anon_sym_BSLASHnamecref] = ACTIONS(11927), + [anon_sym_BSLASHnameCref] = ACTIONS(11927), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11927), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11927), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11927), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11927), + [anon_sym_BSLASHlabelcref] = ACTIONS(11927), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11927), + [anon_sym_BSLASHeqref] = ACTIONS(11933), + [anon_sym_BSLASHcrefrange] = ACTIONS(11936), + [anon_sym_BSLASHCrefrange] = ACTIONS(11936), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11939), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11939), + [anon_sym_BSLASHnewlabel] = ACTIONS(11942), + [anon_sym_BSLASHnewcommand] = ACTIONS(11945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11948), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11951), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11954), + [anon_sym_BSLASHgls] = ACTIONS(11957), + [anon_sym_BSLASHGls] = ACTIONS(11957), + [anon_sym_BSLASHGLS] = ACTIONS(11957), + [anon_sym_BSLASHglspl] = ACTIONS(11957), + [anon_sym_BSLASHGlspl] = ACTIONS(11957), + [anon_sym_BSLASHGLSpl] = ACTIONS(11957), + [anon_sym_BSLASHglsdisp] = ACTIONS(11957), + [anon_sym_BSLASHglslink] = ACTIONS(11957), + [anon_sym_BSLASHglstext] = ACTIONS(11957), + [anon_sym_BSLASHGlstext] = ACTIONS(11957), + [anon_sym_BSLASHGLStext] = ACTIONS(11957), + [anon_sym_BSLASHglsfirst] = ACTIONS(11957), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11957), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11957), + [anon_sym_BSLASHglsplural] = ACTIONS(11957), + [anon_sym_BSLASHGlsplural] = ACTIONS(11957), + [anon_sym_BSLASHGLSplural] = ACTIONS(11957), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11957), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11957), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11957), + [anon_sym_BSLASHglsname] = ACTIONS(11957), + [anon_sym_BSLASHGlsname] = ACTIONS(11957), + [anon_sym_BSLASHGLSname] = ACTIONS(11957), + [anon_sym_BSLASHglssymbol] = ACTIONS(11957), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11957), + [anon_sym_BSLASHglsdesc] = ACTIONS(11957), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11957), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11957), + [anon_sym_BSLASHglsuseri] = ACTIONS(11957), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11957), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11957), + [anon_sym_BSLASHglsuserii] = ACTIONS(11957), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11957), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11957), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11957), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11957), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11957), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11957), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11957), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11957), + [anon_sym_BSLASHglsuserv] = ACTIONS(11957), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11957), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11957), + [anon_sym_BSLASHglsuservi] = ACTIONS(11957), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11957), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11957), + [anon_sym_BSLASHnewacronym] = ACTIONS(11960), + [anon_sym_BSLASHacrshort] = ACTIONS(11963), + [anon_sym_BSLASHAcrshort] = ACTIONS(11963), + [anon_sym_BSLASHACRshort] = ACTIONS(11963), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11963), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11963), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11963), + [anon_sym_BSLASHacrlong] = ACTIONS(11963), + [anon_sym_BSLASHAcrlong] = ACTIONS(11963), + [anon_sym_BSLASHACRlong] = ACTIONS(11963), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11963), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11963), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11963), + [anon_sym_BSLASHacrfull] = ACTIONS(11963), + [anon_sym_BSLASHAcrfull] = ACTIONS(11963), + [anon_sym_BSLASHACRfull] = ACTIONS(11963), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11963), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11963), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11963), + [anon_sym_BSLASHacs] = ACTIONS(11963), + [anon_sym_BSLASHAcs] = ACTIONS(11963), + [anon_sym_BSLASHacsp] = ACTIONS(11963), + [anon_sym_BSLASHAcsp] = ACTIONS(11963), + [anon_sym_BSLASHacl] = ACTIONS(11963), + [anon_sym_BSLASHAcl] = ACTIONS(11963), + [anon_sym_BSLASHaclp] = ACTIONS(11963), + [anon_sym_BSLASHAclp] = ACTIONS(11963), + [anon_sym_BSLASHacf] = ACTIONS(11963), + [anon_sym_BSLASHAcf] = ACTIONS(11963), + [anon_sym_BSLASHacfp] = ACTIONS(11963), + [anon_sym_BSLASHAcfp] = ACTIONS(11963), + [anon_sym_BSLASHac] = ACTIONS(11963), + [anon_sym_BSLASHAc] = ACTIONS(11963), + [anon_sym_BSLASHacp] = ACTIONS(11963), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11963), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11963), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11963), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11963), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11963), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11963), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11963), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11963), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11963), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11963), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11966), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11966), + [anon_sym_BSLASHcolor] = ACTIONS(11969), + [anon_sym_BSLASHcolorbox] = ACTIONS(11969), + [anon_sym_BSLASHtextcolor] = ACTIONS(11969), + [anon_sym_BSLASHpagecolor] = ACTIONS(11969), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11972), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11975), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11978), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11981), + }, + [470] = { + [sym__simple_content] = STATE(467), + [sym_brace_group] = STATE(467), + [sym_mixed_group] = STATE(467), + [sym_text] = STATE(467), + [sym__text_fragment] = STATE(1752), + [sym_displayed_equation] = STATE(467), + [sym_inline_formula] = STATE(467), + [sym_begin] = STATE(78), + [sym_environment] = STATE(467), + [sym_caption] = STATE(467), + [sym_citation] = STATE(467), + [sym_package_include] = STATE(467), + [sym_class_include] = STATE(467), + [sym_latex_include] = STATE(467), + [sym_latex_input] = STATE(467), + [sym_biblatex_include] = STATE(467), + [sym_bibtex_include] = STATE(467), + [sym_graphics_include] = STATE(467), + [sym_svg_include] = STATE(467), + [sym_inkscape_include] = STATE(467), + [sym_verbatim_include] = STATE(467), + [sym_import] = STATE(467), + [sym_label_definition] = STATE(467), + [sym_label_reference] = STATE(467), + [sym_equation_label_reference] = STATE(467), + [sym_label_reference_range] = STATE(467), + [sym_label_number] = STATE(467), + [sym_command_definition] = STATE(467), + [sym_math_operator] = STATE(467), + [sym_glossary_entry_definition] = STATE(467), + [sym_glossary_entry_reference] = STATE(467), + [sym_acronym_definition] = STATE(467), + [sym_acronym_reference] = STATE(467), + [sym_theorem_definition] = STATE(467), + [sym_color_reference] = STATE(467), + [sym_color_definition] = STATE(467), + [sym_color_set_definition] = STATE(467), + [sym_pgf_library_import] = STATE(467), + [sym_tikz_library_import] = STATE(467), + [sym_generic_command] = STATE(467), + [aux_sym_enum_item_repeat1] = STATE(467), + [aux_sym_text_repeat1] = STATE(1752), + [sym_generic_command_name] = ACTIONS(11772), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(11984), + [anon_sym_RBRACK] = ACTIONS(6032), + [anon_sym_LBRACE] = ACTIONS(11776), + [anon_sym_RBRACE] = ACTIONS(6032), + [anon_sym_LPAREN] = ACTIONS(11774), + [anon_sym_COMMA] = ACTIONS(11778), + [anon_sym_EQ] = ACTIONS(11778), + [sym_word] = ACTIONS(11778), + [sym_param] = ACTIONS(11986), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11782), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11782), + [anon_sym_DOLLAR] = ACTIONS(11784), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11786), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(11788), + [anon_sym_BSLASHcite] = ACTIONS(11790), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHCite] = ACTIONS(11790), + [anon_sym_BSLASHnocite] = ACTIONS(11790), + [anon_sym_BSLASHcitet] = ACTIONS(11790), + [anon_sym_BSLASHcitep] = ACTIONS(11790), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11792), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11792), + [anon_sym_BSLASHciteauthor] = ACTIONS(11790), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11792), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11790), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11792), + [anon_sym_BSLASHcitetitle] = ACTIONS(11790), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11792), + [anon_sym_BSLASHciteyear] = ACTIONS(11790), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11792), + [anon_sym_BSLASHcitedate] = ACTIONS(11790), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11792), + [anon_sym_BSLASHciteurl] = ACTIONS(11790), + [anon_sym_BSLASHfullcite] = ACTIONS(11790), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11790), + [anon_sym_BSLASHcitealt] = ACTIONS(11790), + [anon_sym_BSLASHcitealp] = ACTIONS(11790), + [anon_sym_BSLASHcitetext] = ACTIONS(11790), + [anon_sym_BSLASHparencite] = ACTIONS(11790), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHParencite] = ACTIONS(11790), + [anon_sym_BSLASHfootcite] = ACTIONS(11790), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11790), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11790), + [anon_sym_BSLASHtextcite] = ACTIONS(11790), + [anon_sym_BSLASHTextcite] = ACTIONS(11790), + [anon_sym_BSLASHsmartcite] = ACTIONS(11790), + [anon_sym_BSLASHSmartcite] = ACTIONS(11790), + [anon_sym_BSLASHsupercite] = ACTIONS(11790), + [anon_sym_BSLASHautocite] = ACTIONS(11790), + [anon_sym_BSLASHAutocite] = ACTIONS(11790), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHvolcite] = ACTIONS(11790), + [anon_sym_BSLASHVolcite] = ACTIONS(11790), + [anon_sym_BSLASHpvolcite] = ACTIONS(11790), + [anon_sym_BSLASHPvolcite] = ACTIONS(11790), + [anon_sym_BSLASHfvolcite] = ACTIONS(11790), + [anon_sym_BSLASHftvolcite] = ACTIONS(11790), + [anon_sym_BSLASHsvolcite] = ACTIONS(11790), + [anon_sym_BSLASHSvolcite] = ACTIONS(11790), + [anon_sym_BSLASHtvolcite] = ACTIONS(11790), + [anon_sym_BSLASHTvolcite] = ACTIONS(11790), + [anon_sym_BSLASHavolcite] = ACTIONS(11790), + [anon_sym_BSLASHAvolcite] = ACTIONS(11790), + [anon_sym_BSLASHnotecite] = ACTIONS(11790), + [anon_sym_BSLASHpnotecite] = ACTIONS(11790), + [anon_sym_BSLASHPnotecite] = ACTIONS(11790), + [anon_sym_BSLASHfnotecite] = ACTIONS(11790), + [anon_sym_BSLASHusepackage] = ACTIONS(11794), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11794), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11796), + [anon_sym_BSLASHinclude] = ACTIONS(11798), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11798), + [anon_sym_BSLASHinput] = ACTIONS(11800), + [anon_sym_BSLASHsubfile] = ACTIONS(11800), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11802), + [anon_sym_BSLASHbibliography] = ACTIONS(11804), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11806), + [anon_sym_BSLASHincludesvg] = ACTIONS(11808), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11810), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11812), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11812), + [anon_sym_BSLASHimport] = ACTIONS(11814), + [anon_sym_BSLASHsubimport] = ACTIONS(11814), + [anon_sym_BSLASHinputfrom] = ACTIONS(11814), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11814), + [anon_sym_BSLASHincludefrom] = ACTIONS(11814), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11814), + [anon_sym_BSLASHlabel] = ACTIONS(11816), + [anon_sym_BSLASHref] = ACTIONS(11818), + [anon_sym_BSLASHvref] = ACTIONS(11818), + [anon_sym_BSLASHVref] = ACTIONS(11818), + [anon_sym_BSLASHautoref] = ACTIONS(11818), + [anon_sym_BSLASHpageref] = ACTIONS(11818), + [anon_sym_BSLASHcref] = ACTIONS(11818), + [anon_sym_BSLASHCref] = ACTIONS(11818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11820), + [anon_sym_BSLASHnamecref] = ACTIONS(11818), + [anon_sym_BSLASHnameCref] = ACTIONS(11818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11818), + [anon_sym_BSLASHlabelcref] = ACTIONS(11818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11818), + [anon_sym_BSLASHeqref] = ACTIONS(11822), + [anon_sym_BSLASHcrefrange] = ACTIONS(11824), + [anon_sym_BSLASHCrefrange] = ACTIONS(11824), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11826), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11826), + [anon_sym_BSLASHnewlabel] = ACTIONS(11828), + [anon_sym_BSLASHnewcommand] = ACTIONS(11830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11832), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11834), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11836), + [anon_sym_BSLASHgls] = ACTIONS(11838), + [anon_sym_BSLASHGls] = ACTIONS(11838), + [anon_sym_BSLASHGLS] = ACTIONS(11838), + [anon_sym_BSLASHglspl] = ACTIONS(11838), + [anon_sym_BSLASHGlspl] = ACTIONS(11838), + [anon_sym_BSLASHGLSpl] = ACTIONS(11838), + [anon_sym_BSLASHglsdisp] = ACTIONS(11838), + [anon_sym_BSLASHglslink] = ACTIONS(11838), + [anon_sym_BSLASHglstext] = ACTIONS(11838), + [anon_sym_BSLASHGlstext] = ACTIONS(11838), + [anon_sym_BSLASHGLStext] = ACTIONS(11838), + [anon_sym_BSLASHglsfirst] = ACTIONS(11838), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11838), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11838), + [anon_sym_BSLASHglsplural] = ACTIONS(11838), + [anon_sym_BSLASHGlsplural] = ACTIONS(11838), + [anon_sym_BSLASHGLSplural] = ACTIONS(11838), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11838), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11838), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11838), + [anon_sym_BSLASHglsname] = ACTIONS(11838), + [anon_sym_BSLASHGlsname] = ACTIONS(11838), + [anon_sym_BSLASHGLSname] = ACTIONS(11838), + [anon_sym_BSLASHglssymbol] = ACTIONS(11838), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11838), + [anon_sym_BSLASHglsdesc] = ACTIONS(11838), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11838), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11838), + [anon_sym_BSLASHglsuseri] = ACTIONS(11838), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11838), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11838), + [anon_sym_BSLASHglsuserii] = ACTIONS(11838), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11838), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11838), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11838), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11838), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11838), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11838), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11838), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11838), + [anon_sym_BSLASHglsuserv] = ACTIONS(11838), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11838), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11838), + [anon_sym_BSLASHglsuservi] = ACTIONS(11838), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11838), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11838), + [anon_sym_BSLASHnewacronym] = ACTIONS(11840), + [anon_sym_BSLASHacrshort] = ACTIONS(11842), + [anon_sym_BSLASHAcrshort] = ACTIONS(11842), + [anon_sym_BSLASHACRshort] = ACTIONS(11842), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11842), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11842), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11842), + [anon_sym_BSLASHacrlong] = ACTIONS(11842), + [anon_sym_BSLASHAcrlong] = ACTIONS(11842), + [anon_sym_BSLASHACRlong] = ACTIONS(11842), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11842), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11842), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11842), + [anon_sym_BSLASHacrfull] = ACTIONS(11842), + [anon_sym_BSLASHAcrfull] = ACTIONS(11842), + [anon_sym_BSLASHACRfull] = ACTIONS(11842), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11842), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11842), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11842), + [anon_sym_BSLASHacs] = ACTIONS(11842), + [anon_sym_BSLASHAcs] = ACTIONS(11842), + [anon_sym_BSLASHacsp] = ACTIONS(11842), + [anon_sym_BSLASHAcsp] = ACTIONS(11842), + [anon_sym_BSLASHacl] = ACTIONS(11842), + [anon_sym_BSLASHAcl] = ACTIONS(11842), + [anon_sym_BSLASHaclp] = ACTIONS(11842), + [anon_sym_BSLASHAclp] = ACTIONS(11842), + [anon_sym_BSLASHacf] = ACTIONS(11842), + [anon_sym_BSLASHAcf] = ACTIONS(11842), + [anon_sym_BSLASHacfp] = ACTIONS(11842), + [anon_sym_BSLASHAcfp] = ACTIONS(11842), + [anon_sym_BSLASHac] = ACTIONS(11842), + [anon_sym_BSLASHAc] = ACTIONS(11842), + [anon_sym_BSLASHacp] = ACTIONS(11842), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11842), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11842), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11842), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11842), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11842), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11842), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11842), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11842), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11842), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11842), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11844), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11844), + [anon_sym_BSLASHcolor] = ACTIONS(11846), + [anon_sym_BSLASHcolorbox] = ACTIONS(11846), + [anon_sym_BSLASHtextcolor] = ACTIONS(11846), + [anon_sym_BSLASHpagecolor] = ACTIONS(11846), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11848), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11850), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11852), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11854), + }, + [471] = { + [sym__simple_content] = STATE(469), + [sym_brace_group] = STATE(469), + [sym_mixed_group] = STATE(469), + [sym_text] = STATE(469), + [sym__text_fragment] = STATE(1752), + [sym_displayed_equation] = STATE(469), + [sym_inline_formula] = STATE(469), + [sym_begin] = STATE(78), + [sym_environment] = STATE(469), + [sym_caption] = STATE(469), + [sym_citation] = STATE(469), + [sym_package_include] = STATE(469), + [sym_class_include] = STATE(469), + [sym_latex_include] = STATE(469), + [sym_latex_input] = STATE(469), + [sym_biblatex_include] = STATE(469), + [sym_bibtex_include] = STATE(469), + [sym_graphics_include] = STATE(469), + [sym_svg_include] = STATE(469), + [sym_inkscape_include] = STATE(469), + [sym_verbatim_include] = STATE(469), + [sym_import] = STATE(469), + [sym_label_definition] = STATE(469), + [sym_label_reference] = STATE(469), + [sym_equation_label_reference] = STATE(469), + [sym_label_reference_range] = STATE(469), + [sym_label_number] = STATE(469), + [sym_command_definition] = STATE(469), + [sym_math_operator] = STATE(469), + [sym_glossary_entry_definition] = STATE(469), + [sym_glossary_entry_reference] = STATE(469), + [sym_acronym_definition] = STATE(469), + [sym_acronym_reference] = STATE(469), + [sym_theorem_definition] = STATE(469), + [sym_color_reference] = STATE(469), + [sym_color_definition] = STATE(469), + [sym_color_set_definition] = STATE(469), + [sym_pgf_library_import] = STATE(469), + [sym_tikz_library_import] = STATE(469), + [sym_generic_command] = STATE(469), + [aux_sym_enum_item_repeat1] = STATE(469), + [aux_sym_text_repeat1] = STATE(1752), + [sym_generic_command_name] = ACTIONS(11772), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(11774), + [anon_sym_RBRACK] = ACTIONS(6175), + [anon_sym_LBRACE] = ACTIONS(11776), + [anon_sym_RBRACE] = ACTIONS(6175), + [anon_sym_LPAREN] = ACTIONS(11774), + [anon_sym_COMMA] = ACTIONS(11778), + [anon_sym_EQ] = ACTIONS(11778), + [sym_word] = ACTIONS(11778), + [sym_param] = ACTIONS(11780), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11782), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11782), + [anon_sym_DOLLAR] = ACTIONS(11784), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11786), + [anon_sym_BSLASHbegin] = ACTIONS(39), + [anon_sym_BSLASHcaption] = ACTIONS(11788), + [anon_sym_BSLASHcite] = ACTIONS(11790), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHCite] = ACTIONS(11790), + [anon_sym_BSLASHnocite] = ACTIONS(11790), + [anon_sym_BSLASHcitet] = ACTIONS(11790), + [anon_sym_BSLASHcitep] = ACTIONS(11790), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11792), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11792), + [anon_sym_BSLASHciteauthor] = ACTIONS(11790), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11792), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11790), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11792), + [anon_sym_BSLASHcitetitle] = ACTIONS(11790), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11792), + [anon_sym_BSLASHciteyear] = ACTIONS(11790), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11792), + [anon_sym_BSLASHcitedate] = ACTIONS(11790), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11792), + [anon_sym_BSLASHciteurl] = ACTIONS(11790), + [anon_sym_BSLASHfullcite] = ACTIONS(11790), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11790), + [anon_sym_BSLASHcitealt] = ACTIONS(11790), + [anon_sym_BSLASHcitealp] = ACTIONS(11790), + [anon_sym_BSLASHcitetext] = ACTIONS(11790), + [anon_sym_BSLASHparencite] = ACTIONS(11790), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHParencite] = ACTIONS(11790), + [anon_sym_BSLASHfootcite] = ACTIONS(11790), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11790), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11790), + [anon_sym_BSLASHtextcite] = ACTIONS(11790), + [anon_sym_BSLASHTextcite] = ACTIONS(11790), + [anon_sym_BSLASHsmartcite] = ACTIONS(11790), + [anon_sym_BSLASHSmartcite] = ACTIONS(11790), + [anon_sym_BSLASHsupercite] = ACTIONS(11790), + [anon_sym_BSLASHautocite] = ACTIONS(11790), + [anon_sym_BSLASHAutocite] = ACTIONS(11790), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11792), + [anon_sym_BSLASHvolcite] = ACTIONS(11790), + [anon_sym_BSLASHVolcite] = ACTIONS(11790), + [anon_sym_BSLASHpvolcite] = ACTIONS(11790), + [anon_sym_BSLASHPvolcite] = ACTIONS(11790), + [anon_sym_BSLASHfvolcite] = ACTIONS(11790), + [anon_sym_BSLASHftvolcite] = ACTIONS(11790), + [anon_sym_BSLASHsvolcite] = ACTIONS(11790), + [anon_sym_BSLASHSvolcite] = ACTIONS(11790), + [anon_sym_BSLASHtvolcite] = ACTIONS(11790), + [anon_sym_BSLASHTvolcite] = ACTIONS(11790), + [anon_sym_BSLASHavolcite] = ACTIONS(11790), + [anon_sym_BSLASHAvolcite] = ACTIONS(11790), + [anon_sym_BSLASHnotecite] = ACTIONS(11790), + [anon_sym_BSLASHpnotecite] = ACTIONS(11790), + [anon_sym_BSLASHPnotecite] = ACTIONS(11790), + [anon_sym_BSLASHfnotecite] = ACTIONS(11790), + [anon_sym_BSLASHusepackage] = ACTIONS(11794), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11794), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11796), + [anon_sym_BSLASHinclude] = ACTIONS(11798), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11798), + [anon_sym_BSLASHinput] = ACTIONS(11800), + [anon_sym_BSLASHsubfile] = ACTIONS(11800), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11802), + [anon_sym_BSLASHbibliography] = ACTIONS(11804), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11806), + [anon_sym_BSLASHincludesvg] = ACTIONS(11808), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11810), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11812), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11812), + [anon_sym_BSLASHimport] = ACTIONS(11814), + [anon_sym_BSLASHsubimport] = ACTIONS(11814), + [anon_sym_BSLASHinputfrom] = ACTIONS(11814), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11814), + [anon_sym_BSLASHincludefrom] = ACTIONS(11814), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11814), + [anon_sym_BSLASHlabel] = ACTIONS(11816), + [anon_sym_BSLASHref] = ACTIONS(11818), + [anon_sym_BSLASHvref] = ACTIONS(11818), + [anon_sym_BSLASHVref] = ACTIONS(11818), + [anon_sym_BSLASHautoref] = ACTIONS(11818), + [anon_sym_BSLASHpageref] = ACTIONS(11818), + [anon_sym_BSLASHcref] = ACTIONS(11818), + [anon_sym_BSLASHCref] = ACTIONS(11818), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11820), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11820), + [anon_sym_BSLASHnamecref] = ACTIONS(11818), + [anon_sym_BSLASHnameCref] = ACTIONS(11818), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11818), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11818), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11818), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11818), + [anon_sym_BSLASHlabelcref] = ACTIONS(11818), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11818), + [anon_sym_BSLASHeqref] = ACTIONS(11822), + [anon_sym_BSLASHcrefrange] = ACTIONS(11824), + [anon_sym_BSLASHCrefrange] = ACTIONS(11824), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11826), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11826), + [anon_sym_BSLASHnewlabel] = ACTIONS(11828), + [anon_sym_BSLASHnewcommand] = ACTIONS(11830), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11830), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11830), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11832), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11834), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11836), + [anon_sym_BSLASHgls] = ACTIONS(11838), + [anon_sym_BSLASHGls] = ACTIONS(11838), + [anon_sym_BSLASHGLS] = ACTIONS(11838), + [anon_sym_BSLASHglspl] = ACTIONS(11838), + [anon_sym_BSLASHGlspl] = ACTIONS(11838), + [anon_sym_BSLASHGLSpl] = ACTIONS(11838), + [anon_sym_BSLASHglsdisp] = ACTIONS(11838), + [anon_sym_BSLASHglslink] = ACTIONS(11838), + [anon_sym_BSLASHglstext] = ACTIONS(11838), + [anon_sym_BSLASHGlstext] = ACTIONS(11838), + [anon_sym_BSLASHGLStext] = ACTIONS(11838), + [anon_sym_BSLASHglsfirst] = ACTIONS(11838), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11838), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11838), + [anon_sym_BSLASHglsplural] = ACTIONS(11838), + [anon_sym_BSLASHGlsplural] = ACTIONS(11838), + [anon_sym_BSLASHGLSplural] = ACTIONS(11838), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11838), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11838), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11838), + [anon_sym_BSLASHglsname] = ACTIONS(11838), + [anon_sym_BSLASHGlsname] = ACTIONS(11838), + [anon_sym_BSLASHGLSname] = ACTIONS(11838), + [anon_sym_BSLASHglssymbol] = ACTIONS(11838), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11838), + [anon_sym_BSLASHglsdesc] = ACTIONS(11838), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11838), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11838), + [anon_sym_BSLASHglsuseri] = ACTIONS(11838), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11838), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11838), + [anon_sym_BSLASHglsuserii] = ACTIONS(11838), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11838), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11838), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11838), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11838), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11838), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11838), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11838), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11838), + [anon_sym_BSLASHglsuserv] = ACTIONS(11838), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11838), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11838), + [anon_sym_BSLASHglsuservi] = ACTIONS(11838), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11838), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11838), + [anon_sym_BSLASHnewacronym] = ACTIONS(11840), + [anon_sym_BSLASHacrshort] = ACTIONS(11842), + [anon_sym_BSLASHAcrshort] = ACTIONS(11842), + [anon_sym_BSLASHACRshort] = ACTIONS(11842), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11842), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11842), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11842), + [anon_sym_BSLASHacrlong] = ACTIONS(11842), + [anon_sym_BSLASHAcrlong] = ACTIONS(11842), + [anon_sym_BSLASHACRlong] = ACTIONS(11842), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11842), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11842), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11842), + [anon_sym_BSLASHacrfull] = ACTIONS(11842), + [anon_sym_BSLASHAcrfull] = ACTIONS(11842), + [anon_sym_BSLASHACRfull] = ACTIONS(11842), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11842), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11842), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11842), + [anon_sym_BSLASHacs] = ACTIONS(11842), + [anon_sym_BSLASHAcs] = ACTIONS(11842), + [anon_sym_BSLASHacsp] = ACTIONS(11842), + [anon_sym_BSLASHAcsp] = ACTIONS(11842), + [anon_sym_BSLASHacl] = ACTIONS(11842), + [anon_sym_BSLASHAcl] = ACTIONS(11842), + [anon_sym_BSLASHaclp] = ACTIONS(11842), + [anon_sym_BSLASHAclp] = ACTIONS(11842), + [anon_sym_BSLASHacf] = ACTIONS(11842), + [anon_sym_BSLASHAcf] = ACTIONS(11842), + [anon_sym_BSLASHacfp] = ACTIONS(11842), + [anon_sym_BSLASHAcfp] = ACTIONS(11842), + [anon_sym_BSLASHac] = ACTIONS(11842), + [anon_sym_BSLASHAc] = ACTIONS(11842), + [anon_sym_BSLASHacp] = ACTIONS(11842), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11842), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11842), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11842), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11842), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11842), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11842), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11842), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11842), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11842), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11842), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11844), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11844), + [anon_sym_BSLASHcolor] = ACTIONS(11846), + [anon_sym_BSLASHcolorbox] = ACTIONS(11846), + [anon_sym_BSLASHtextcolor] = ACTIONS(11846), + [anon_sym_BSLASHpagecolor] = ACTIONS(11846), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11848), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11850), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11852), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11854), + }, + [472] = { + [sym_brace_group] = STATE(473), + [sym_bracket_group] = STATE(473), + [sym_paren_group] = STATE(473), + [aux_sym_generic_command_repeat1] = STATE(473), + [ts_builtin_sym_end] = ACTIONS(11988), + [sym_generic_command_name] = ACTIONS(11990), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(11990), + [aux_sym_chapter_token1] = ACTIONS(11990), + [aux_sym_section_token1] = ACTIONS(11990), + [aux_sym_subsection_token1] = ACTIONS(11990), + [aux_sym_subsubsection_token1] = ACTIONS(11990), + [aux_sym_paragraph_token1] = ACTIONS(11990), + [aux_sym_subparagraph_token1] = ACTIONS(11990), + [anon_sym_BSLASHitem] = ACTIONS(11990), + [anon_sym_LBRACK] = ACTIONS(11992), + [anon_sym_RBRACK] = ACTIONS(11988), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(11988), + [anon_sym_LPAREN] = ACTIONS(11994), + [anon_sym_RPAREN] = ACTIONS(11988), + [anon_sym_COMMA] = ACTIONS(11988), + [anon_sym_EQ] = ACTIONS(11988), + [sym_word] = ACTIONS(11988), + [sym_param] = ACTIONS(11988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11988), + [anon_sym_DOLLAR] = ACTIONS(11990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11988), + [anon_sym_BSLASHbegin] = ACTIONS(11990), + [anon_sym_BSLASHcaption] = ACTIONS(11990), + [anon_sym_BSLASHcite] = ACTIONS(11990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCite] = ACTIONS(11990), + [anon_sym_BSLASHnocite] = ACTIONS(11990), + [anon_sym_BSLASHcitet] = ACTIONS(11990), + [anon_sym_BSLASHcitep] = ACTIONS(11990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteauthor] = ACTIONS(11990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitetitle] = ACTIONS(11990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteyear] = ACTIONS(11990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitedate] = ACTIONS(11990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteurl] = ACTIONS(11990), + [anon_sym_BSLASHfullcite] = ACTIONS(11990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11990), + [anon_sym_BSLASHcitealt] = ACTIONS(11990), + [anon_sym_BSLASHcitealp] = ACTIONS(11990), + [anon_sym_BSLASHcitetext] = ACTIONS(11990), + [anon_sym_BSLASHparencite] = ACTIONS(11990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHParencite] = ACTIONS(11990), + [anon_sym_BSLASHfootcite] = ACTIONS(11990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11990), + [anon_sym_BSLASHtextcite] = ACTIONS(11990), + [anon_sym_BSLASHTextcite] = ACTIONS(11990), + [anon_sym_BSLASHsmartcite] = ACTIONS(11990), + [anon_sym_BSLASHSmartcite] = ACTIONS(11990), + [anon_sym_BSLASHsupercite] = ACTIONS(11990), + [anon_sym_BSLASHautocite] = ACTIONS(11990), + [anon_sym_BSLASHAutocite] = ACTIONS(11990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHvolcite] = ACTIONS(11990), + [anon_sym_BSLASHVolcite] = ACTIONS(11990), + [anon_sym_BSLASHpvolcite] = ACTIONS(11990), + [anon_sym_BSLASHPvolcite] = ACTIONS(11990), + [anon_sym_BSLASHfvolcite] = ACTIONS(11990), + [anon_sym_BSLASHftvolcite] = ACTIONS(11990), + [anon_sym_BSLASHsvolcite] = ACTIONS(11990), + [anon_sym_BSLASHSvolcite] = ACTIONS(11990), + [anon_sym_BSLASHtvolcite] = ACTIONS(11990), + [anon_sym_BSLASHTvolcite] = ACTIONS(11990), + [anon_sym_BSLASHavolcite] = ACTIONS(11990), + [anon_sym_BSLASHAvolcite] = ACTIONS(11990), + [anon_sym_BSLASHnotecite] = ACTIONS(11990), + [anon_sym_BSLASHpnotecite] = ACTIONS(11990), + [anon_sym_BSLASHPnotecite] = ACTIONS(11990), + [anon_sym_BSLASHfnotecite] = ACTIONS(11990), + [anon_sym_BSLASHusepackage] = ACTIONS(11990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11990), + [anon_sym_BSLASHinclude] = ACTIONS(11990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11990), + [anon_sym_BSLASHinput] = ACTIONS(11990), + [anon_sym_BSLASHsubfile] = ACTIONS(11990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11990), + [anon_sym_BSLASHbibliography] = ACTIONS(11990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11990), + [anon_sym_BSLASHincludesvg] = ACTIONS(11990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11990), + [anon_sym_BSLASHimport] = ACTIONS(11990), + [anon_sym_BSLASHsubimport] = ACTIONS(11990), + [anon_sym_BSLASHinputfrom] = ACTIONS(11990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11990), + [anon_sym_BSLASHincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHlabel] = ACTIONS(11990), + [anon_sym_BSLASHref] = ACTIONS(11990), + [anon_sym_BSLASHvref] = ACTIONS(11990), + [anon_sym_BSLASHVref] = ACTIONS(11990), + [anon_sym_BSLASHautoref] = ACTIONS(11990), + [anon_sym_BSLASHpageref] = ACTIONS(11990), + [anon_sym_BSLASHcref] = ACTIONS(11990), + [anon_sym_BSLASHCref] = ACTIONS(11990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnameCref] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHlabelcref] = ACTIONS(11990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11990), + [anon_sym_BSLASHeqref] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange] = ACTIONS(11990), + [anon_sym_BSLASHCrefrange] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewlabel] = ACTIONS(11990), + [anon_sym_BSLASHnewcommand] = ACTIONS(11990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11990), + [anon_sym_BSLASHgls] = ACTIONS(11990), + [anon_sym_BSLASHGls] = ACTIONS(11990), + [anon_sym_BSLASHGLS] = ACTIONS(11990), + [anon_sym_BSLASHglspl] = ACTIONS(11990), + [anon_sym_BSLASHGlspl] = ACTIONS(11990), + [anon_sym_BSLASHGLSpl] = ACTIONS(11990), + [anon_sym_BSLASHglsdisp] = ACTIONS(11990), + [anon_sym_BSLASHglslink] = ACTIONS(11990), + [anon_sym_BSLASHglstext] = ACTIONS(11990), + [anon_sym_BSLASHGlstext] = ACTIONS(11990), + [anon_sym_BSLASHGLStext] = ACTIONS(11990), + [anon_sym_BSLASHglsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11990), + [anon_sym_BSLASHglsplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSplural] = ACTIONS(11990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHglsname] = ACTIONS(11990), + [anon_sym_BSLASHGlsname] = ACTIONS(11990), + [anon_sym_BSLASHGLSname] = ACTIONS(11990), + [anon_sym_BSLASHglssymbol] = ACTIONS(11990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11990), + [anon_sym_BSLASHglsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11990), + [anon_sym_BSLASHglsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11990), + [anon_sym_BSLASHglsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11990), + [anon_sym_BSLASHglsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11990), + [anon_sym_BSLASHglsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11990), + [anon_sym_BSLASHnewacronym] = ACTIONS(11990), + [anon_sym_BSLASHacrshort] = ACTIONS(11990), + [anon_sym_BSLASHAcrshort] = ACTIONS(11990), + [anon_sym_BSLASHACRshort] = ACTIONS(11990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11990), + [anon_sym_BSLASHacrlong] = ACTIONS(11990), + [anon_sym_BSLASHAcrlong] = ACTIONS(11990), + [anon_sym_BSLASHACRlong] = ACTIONS(11990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11990), + [anon_sym_BSLASHacrfull] = ACTIONS(11990), + [anon_sym_BSLASHAcrfull] = ACTIONS(11990), + [anon_sym_BSLASHACRfull] = ACTIONS(11990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11990), + [anon_sym_BSLASHacs] = ACTIONS(11990), + [anon_sym_BSLASHAcs] = ACTIONS(11990), + [anon_sym_BSLASHacsp] = ACTIONS(11990), + [anon_sym_BSLASHAcsp] = ACTIONS(11990), + [anon_sym_BSLASHacl] = ACTIONS(11990), + [anon_sym_BSLASHAcl] = ACTIONS(11990), + [anon_sym_BSLASHaclp] = ACTIONS(11990), + [anon_sym_BSLASHAclp] = ACTIONS(11990), + [anon_sym_BSLASHacf] = ACTIONS(11990), + [anon_sym_BSLASHAcf] = ACTIONS(11990), + [anon_sym_BSLASHacfp] = ACTIONS(11990), + [anon_sym_BSLASHAcfp] = ACTIONS(11990), + [anon_sym_BSLASHac] = ACTIONS(11990), + [anon_sym_BSLASHAc] = ACTIONS(11990), + [anon_sym_BSLASHacp] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11990), + [anon_sym_BSLASHcolor] = ACTIONS(11990), + [anon_sym_BSLASHcolorbox] = ACTIONS(11990), + [anon_sym_BSLASHtextcolor] = ACTIONS(11990), + [anon_sym_BSLASHpagecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11990), + }, + [473] = { + [sym_brace_group] = STATE(474), + [sym_bracket_group] = STATE(474), + [sym_paren_group] = STATE(474), + [aux_sym_generic_command_repeat1] = STATE(474), + [ts_builtin_sym_end] = ACTIONS(11996), + [sym_generic_command_name] = ACTIONS(11998), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(11998), + [aux_sym_chapter_token1] = ACTIONS(11998), + [aux_sym_section_token1] = ACTIONS(11998), + [aux_sym_subsection_token1] = ACTIONS(11998), + [aux_sym_subsubsection_token1] = ACTIONS(11998), + [aux_sym_paragraph_token1] = ACTIONS(11998), + [aux_sym_subparagraph_token1] = ACTIONS(11998), + [anon_sym_BSLASHitem] = ACTIONS(11998), + [anon_sym_LBRACK] = ACTIONS(11992), + [anon_sym_RBRACK] = ACTIONS(11996), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(11996), + [anon_sym_LPAREN] = ACTIONS(11994), + [anon_sym_RPAREN] = ACTIONS(11996), + [anon_sym_COMMA] = ACTIONS(11996), + [anon_sym_EQ] = ACTIONS(11996), + [sym_word] = ACTIONS(11996), + [sym_param] = ACTIONS(11996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11996), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11996), + [anon_sym_DOLLAR] = ACTIONS(11998), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11996), + [anon_sym_BSLASHbegin] = ACTIONS(11998), + [anon_sym_BSLASHcaption] = ACTIONS(11998), + [anon_sym_BSLASHcite] = ACTIONS(11998), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCite] = ACTIONS(11998), + [anon_sym_BSLASHnocite] = ACTIONS(11998), + [anon_sym_BSLASHcitet] = ACTIONS(11998), + [anon_sym_BSLASHcitep] = ACTIONS(11998), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteauthor] = ACTIONS(11998), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11998), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitetitle] = ACTIONS(11998), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteyear] = ACTIONS(11998), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitedate] = ACTIONS(11998), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteurl] = ACTIONS(11998), + [anon_sym_BSLASHfullcite] = ACTIONS(11998), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11998), + [anon_sym_BSLASHcitealt] = ACTIONS(11998), + [anon_sym_BSLASHcitealp] = ACTIONS(11998), + [anon_sym_BSLASHcitetext] = ACTIONS(11998), + [anon_sym_BSLASHparencite] = ACTIONS(11998), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHParencite] = ACTIONS(11998), + [anon_sym_BSLASHfootcite] = ACTIONS(11998), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11998), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11998), + [anon_sym_BSLASHtextcite] = ACTIONS(11998), + [anon_sym_BSLASHTextcite] = ACTIONS(11998), + [anon_sym_BSLASHsmartcite] = ACTIONS(11998), + [anon_sym_BSLASHSmartcite] = ACTIONS(11998), + [anon_sym_BSLASHsupercite] = ACTIONS(11998), + [anon_sym_BSLASHautocite] = ACTIONS(11998), + [anon_sym_BSLASHAutocite] = ACTIONS(11998), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHvolcite] = ACTIONS(11998), + [anon_sym_BSLASHVolcite] = ACTIONS(11998), + [anon_sym_BSLASHpvolcite] = ACTIONS(11998), + [anon_sym_BSLASHPvolcite] = ACTIONS(11998), + [anon_sym_BSLASHfvolcite] = ACTIONS(11998), + [anon_sym_BSLASHftvolcite] = ACTIONS(11998), + [anon_sym_BSLASHsvolcite] = ACTIONS(11998), + [anon_sym_BSLASHSvolcite] = ACTIONS(11998), + [anon_sym_BSLASHtvolcite] = ACTIONS(11998), + [anon_sym_BSLASHTvolcite] = ACTIONS(11998), + [anon_sym_BSLASHavolcite] = ACTIONS(11998), + [anon_sym_BSLASHAvolcite] = ACTIONS(11998), + [anon_sym_BSLASHnotecite] = ACTIONS(11998), + [anon_sym_BSLASHpnotecite] = ACTIONS(11998), + [anon_sym_BSLASHPnotecite] = ACTIONS(11998), + [anon_sym_BSLASHfnotecite] = ACTIONS(11998), + [anon_sym_BSLASHusepackage] = ACTIONS(11998), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11998), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11998), + [anon_sym_BSLASHinclude] = ACTIONS(11998), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11998), + [anon_sym_BSLASHinput] = ACTIONS(11998), + [anon_sym_BSLASHsubfile] = ACTIONS(11998), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11998), + [anon_sym_BSLASHbibliography] = ACTIONS(11998), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11998), + [anon_sym_BSLASHincludesvg] = ACTIONS(11998), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11998), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11998), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11998), + [anon_sym_BSLASHimport] = ACTIONS(11998), + [anon_sym_BSLASHsubimport] = ACTIONS(11998), + [anon_sym_BSLASHinputfrom] = ACTIONS(11998), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11998), + [anon_sym_BSLASHincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHlabel] = ACTIONS(11998), + [anon_sym_BSLASHref] = ACTIONS(11998), + [anon_sym_BSLASHvref] = ACTIONS(11998), + [anon_sym_BSLASHVref] = ACTIONS(11998), + [anon_sym_BSLASHautoref] = ACTIONS(11998), + [anon_sym_BSLASHpageref] = ACTIONS(11998), + [anon_sym_BSLASHcref] = ACTIONS(11998), + [anon_sym_BSLASHCref] = ACTIONS(11998), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnameCref] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHlabelcref] = ACTIONS(11998), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11998), + [anon_sym_BSLASHeqref] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange] = ACTIONS(11998), + [anon_sym_BSLASHCrefrange] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewlabel] = ACTIONS(11998), + [anon_sym_BSLASHnewcommand] = ACTIONS(11998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11998), + [anon_sym_BSLASHgls] = ACTIONS(11998), + [anon_sym_BSLASHGls] = ACTIONS(11998), + [anon_sym_BSLASHGLS] = ACTIONS(11998), + [anon_sym_BSLASHglspl] = ACTIONS(11998), + [anon_sym_BSLASHGlspl] = ACTIONS(11998), + [anon_sym_BSLASHGLSpl] = ACTIONS(11998), + [anon_sym_BSLASHglsdisp] = ACTIONS(11998), + [anon_sym_BSLASHglslink] = ACTIONS(11998), + [anon_sym_BSLASHglstext] = ACTIONS(11998), + [anon_sym_BSLASHGlstext] = ACTIONS(11998), + [anon_sym_BSLASHGLStext] = ACTIONS(11998), + [anon_sym_BSLASHglsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11998), + [anon_sym_BSLASHglsplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSplural] = ACTIONS(11998), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHglsname] = ACTIONS(11998), + [anon_sym_BSLASHGlsname] = ACTIONS(11998), + [anon_sym_BSLASHGLSname] = ACTIONS(11998), + [anon_sym_BSLASHglssymbol] = ACTIONS(11998), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11998), + [anon_sym_BSLASHglsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11998), + [anon_sym_BSLASHglsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11998), + [anon_sym_BSLASHglsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11998), + [anon_sym_BSLASHglsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11998), + [anon_sym_BSLASHglsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11998), + [anon_sym_BSLASHnewacronym] = ACTIONS(11998), + [anon_sym_BSLASHacrshort] = ACTIONS(11998), + [anon_sym_BSLASHAcrshort] = ACTIONS(11998), + [anon_sym_BSLASHACRshort] = ACTIONS(11998), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11998), + [anon_sym_BSLASHacrlong] = ACTIONS(11998), + [anon_sym_BSLASHAcrlong] = ACTIONS(11998), + [anon_sym_BSLASHACRlong] = ACTIONS(11998), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11998), + [anon_sym_BSLASHacrfull] = ACTIONS(11998), + [anon_sym_BSLASHAcrfull] = ACTIONS(11998), + [anon_sym_BSLASHACRfull] = ACTIONS(11998), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11998), + [anon_sym_BSLASHacs] = ACTIONS(11998), + [anon_sym_BSLASHAcs] = ACTIONS(11998), + [anon_sym_BSLASHacsp] = ACTIONS(11998), + [anon_sym_BSLASHAcsp] = ACTIONS(11998), + [anon_sym_BSLASHacl] = ACTIONS(11998), + [anon_sym_BSLASHAcl] = ACTIONS(11998), + [anon_sym_BSLASHaclp] = ACTIONS(11998), + [anon_sym_BSLASHAclp] = ACTIONS(11998), + [anon_sym_BSLASHacf] = ACTIONS(11998), + [anon_sym_BSLASHAcf] = ACTIONS(11998), + [anon_sym_BSLASHacfp] = ACTIONS(11998), + [anon_sym_BSLASHAcfp] = ACTIONS(11998), + [anon_sym_BSLASHac] = ACTIONS(11998), + [anon_sym_BSLASHAc] = ACTIONS(11998), + [anon_sym_BSLASHacp] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11998), + [anon_sym_BSLASHcolor] = ACTIONS(11998), + [anon_sym_BSLASHcolorbox] = ACTIONS(11998), + [anon_sym_BSLASHtextcolor] = ACTIONS(11998), + [anon_sym_BSLASHpagecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11998), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11998), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11998), + }, + [474] = { + [sym_brace_group] = STATE(474), + [sym_bracket_group] = STATE(474), + [sym_paren_group] = STATE(474), + [aux_sym_generic_command_repeat1] = STATE(474), + [ts_builtin_sym_end] = ACTIONS(12000), + [sym_generic_command_name] = ACTIONS(12002), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12002), + [aux_sym_chapter_token1] = ACTIONS(12002), + [aux_sym_section_token1] = ACTIONS(12002), + [aux_sym_subsection_token1] = ACTIONS(12002), + [aux_sym_subsubsection_token1] = ACTIONS(12002), + [aux_sym_paragraph_token1] = ACTIONS(12002), + [aux_sym_subparagraph_token1] = ACTIONS(12002), + [anon_sym_BSLASHitem] = ACTIONS(12002), + [anon_sym_LBRACK] = ACTIONS(12004), + [anon_sym_RBRACK] = ACTIONS(12000), + [anon_sym_LBRACE] = ACTIONS(12007), + [anon_sym_RBRACE] = ACTIONS(12000), + [anon_sym_LPAREN] = ACTIONS(12010), + [anon_sym_RPAREN] = ACTIONS(12000), + [anon_sym_COMMA] = ACTIONS(12000), + [anon_sym_EQ] = ACTIONS(12000), + [sym_word] = ACTIONS(12000), + [sym_param] = ACTIONS(12000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12000), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12000), + [anon_sym_DOLLAR] = ACTIONS(12002), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12000), + [anon_sym_BSLASHbegin] = ACTIONS(12002), + [anon_sym_BSLASHcaption] = ACTIONS(12002), + [anon_sym_BSLASHcite] = ACTIONS(12002), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCite] = ACTIONS(12002), + [anon_sym_BSLASHnocite] = ACTIONS(12002), + [anon_sym_BSLASHcitet] = ACTIONS(12002), + [anon_sym_BSLASHcitep] = ACTIONS(12002), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteauthor] = ACTIONS(12002), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12002), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitetitle] = ACTIONS(12002), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteyear] = ACTIONS(12002), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitedate] = ACTIONS(12002), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteurl] = ACTIONS(12002), + [anon_sym_BSLASHfullcite] = ACTIONS(12002), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12002), + [anon_sym_BSLASHcitealt] = ACTIONS(12002), + [anon_sym_BSLASHcitealp] = ACTIONS(12002), + [anon_sym_BSLASHcitetext] = ACTIONS(12002), + [anon_sym_BSLASHparencite] = ACTIONS(12002), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHParencite] = ACTIONS(12002), + [anon_sym_BSLASHfootcite] = ACTIONS(12002), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12002), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12002), + [anon_sym_BSLASHtextcite] = ACTIONS(12002), + [anon_sym_BSLASHTextcite] = ACTIONS(12002), + [anon_sym_BSLASHsmartcite] = ACTIONS(12002), + [anon_sym_BSLASHSmartcite] = ACTIONS(12002), + [anon_sym_BSLASHsupercite] = ACTIONS(12002), + [anon_sym_BSLASHautocite] = ACTIONS(12002), + [anon_sym_BSLASHAutocite] = ACTIONS(12002), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHvolcite] = ACTIONS(12002), + [anon_sym_BSLASHVolcite] = ACTIONS(12002), + [anon_sym_BSLASHpvolcite] = ACTIONS(12002), + [anon_sym_BSLASHPvolcite] = ACTIONS(12002), + [anon_sym_BSLASHfvolcite] = ACTIONS(12002), + [anon_sym_BSLASHftvolcite] = ACTIONS(12002), + [anon_sym_BSLASHsvolcite] = ACTIONS(12002), + [anon_sym_BSLASHSvolcite] = ACTIONS(12002), + [anon_sym_BSLASHtvolcite] = ACTIONS(12002), + [anon_sym_BSLASHTvolcite] = ACTIONS(12002), + [anon_sym_BSLASHavolcite] = ACTIONS(12002), + [anon_sym_BSLASHAvolcite] = ACTIONS(12002), + [anon_sym_BSLASHnotecite] = ACTIONS(12002), + [anon_sym_BSLASHpnotecite] = ACTIONS(12002), + [anon_sym_BSLASHPnotecite] = ACTIONS(12002), + [anon_sym_BSLASHfnotecite] = ACTIONS(12002), + [anon_sym_BSLASHusepackage] = ACTIONS(12002), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12002), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12002), + [anon_sym_BSLASHinclude] = ACTIONS(12002), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12002), + [anon_sym_BSLASHinput] = ACTIONS(12002), + [anon_sym_BSLASHsubfile] = ACTIONS(12002), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12002), + [anon_sym_BSLASHbibliography] = ACTIONS(12002), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12002), + [anon_sym_BSLASHincludesvg] = ACTIONS(12002), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12002), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12002), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12002), + [anon_sym_BSLASHimport] = ACTIONS(12002), + [anon_sym_BSLASHsubimport] = ACTIONS(12002), + [anon_sym_BSLASHinputfrom] = ACTIONS(12002), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12002), + [anon_sym_BSLASHincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHlabel] = ACTIONS(12002), + [anon_sym_BSLASHref] = ACTIONS(12002), + [anon_sym_BSLASHvref] = ACTIONS(12002), + [anon_sym_BSLASHVref] = ACTIONS(12002), + [anon_sym_BSLASHautoref] = ACTIONS(12002), + [anon_sym_BSLASHpageref] = ACTIONS(12002), + [anon_sym_BSLASHcref] = ACTIONS(12002), + [anon_sym_BSLASHCref] = ACTIONS(12002), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnameCref] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHlabelcref] = ACTIONS(12002), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12002), + [anon_sym_BSLASHeqref] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange] = ACTIONS(12002), + [anon_sym_BSLASHCrefrange] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewlabel] = ACTIONS(12002), + [anon_sym_BSLASHnewcommand] = ACTIONS(12002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12002), + [anon_sym_BSLASHgls] = ACTIONS(12002), + [anon_sym_BSLASHGls] = ACTIONS(12002), + [anon_sym_BSLASHGLS] = ACTIONS(12002), + [anon_sym_BSLASHglspl] = ACTIONS(12002), + [anon_sym_BSLASHGlspl] = ACTIONS(12002), + [anon_sym_BSLASHGLSpl] = ACTIONS(12002), + [anon_sym_BSLASHglsdisp] = ACTIONS(12002), + [anon_sym_BSLASHglslink] = ACTIONS(12002), + [anon_sym_BSLASHglstext] = ACTIONS(12002), + [anon_sym_BSLASHGlstext] = ACTIONS(12002), + [anon_sym_BSLASHGLStext] = ACTIONS(12002), + [anon_sym_BSLASHglsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12002), + [anon_sym_BSLASHglsplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSplural] = ACTIONS(12002), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHglsname] = ACTIONS(12002), + [anon_sym_BSLASHGlsname] = ACTIONS(12002), + [anon_sym_BSLASHGLSname] = ACTIONS(12002), + [anon_sym_BSLASHglssymbol] = ACTIONS(12002), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12002), + [anon_sym_BSLASHglsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12002), + [anon_sym_BSLASHglsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12002), + [anon_sym_BSLASHglsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12002), + [anon_sym_BSLASHglsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12002), + [anon_sym_BSLASHglsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12002), + [anon_sym_BSLASHnewacronym] = ACTIONS(12002), + [anon_sym_BSLASHacrshort] = ACTIONS(12002), + [anon_sym_BSLASHAcrshort] = ACTIONS(12002), + [anon_sym_BSLASHACRshort] = ACTIONS(12002), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12002), + [anon_sym_BSLASHacrlong] = ACTIONS(12002), + [anon_sym_BSLASHAcrlong] = ACTIONS(12002), + [anon_sym_BSLASHACRlong] = ACTIONS(12002), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12002), + [anon_sym_BSLASHacrfull] = ACTIONS(12002), + [anon_sym_BSLASHAcrfull] = ACTIONS(12002), + [anon_sym_BSLASHACRfull] = ACTIONS(12002), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12002), + [anon_sym_BSLASHacs] = ACTIONS(12002), + [anon_sym_BSLASHAcs] = ACTIONS(12002), + [anon_sym_BSLASHacsp] = ACTIONS(12002), + [anon_sym_BSLASHAcsp] = ACTIONS(12002), + [anon_sym_BSLASHacl] = ACTIONS(12002), + [anon_sym_BSLASHAcl] = ACTIONS(12002), + [anon_sym_BSLASHaclp] = ACTIONS(12002), + [anon_sym_BSLASHAclp] = ACTIONS(12002), + [anon_sym_BSLASHacf] = ACTIONS(12002), + [anon_sym_BSLASHAcf] = ACTIONS(12002), + [anon_sym_BSLASHacfp] = ACTIONS(12002), + [anon_sym_BSLASHAcfp] = ACTIONS(12002), + [anon_sym_BSLASHac] = ACTIONS(12002), + [anon_sym_BSLASHAc] = ACTIONS(12002), + [anon_sym_BSLASHacp] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12002), + [anon_sym_BSLASHcolor] = ACTIONS(12002), + [anon_sym_BSLASHcolorbox] = ACTIONS(12002), + [anon_sym_BSLASHtextcolor] = ACTIONS(12002), + [anon_sym_BSLASHpagecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12002), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12002), + }, + [475] = { + [sym__text_fragment] = STATE(476), + [aux_sym_text_repeat1] = STATE(476), + [ts_builtin_sym_end] = ACTIONS(12013), + [sym_generic_command_name] = ACTIONS(12015), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12015), + [aux_sym_chapter_token1] = ACTIONS(12015), + [aux_sym_section_token1] = ACTIONS(12015), + [aux_sym_subsection_token1] = ACTIONS(12015), + [aux_sym_subsubsection_token1] = ACTIONS(12015), + [aux_sym_paragraph_token1] = ACTIONS(12015), + [aux_sym_subparagraph_token1] = ACTIONS(12015), + [anon_sym_BSLASHitem] = ACTIONS(12015), + [anon_sym_LBRACK] = ACTIONS(12013), + [anon_sym_RBRACK] = ACTIONS(12013), + [anon_sym_LBRACE] = ACTIONS(12013), + [anon_sym_RBRACE] = ACTIONS(12013), + [anon_sym_LPAREN] = ACTIONS(12013), + [anon_sym_RPAREN] = ACTIONS(12013), + [anon_sym_COMMA] = ACTIONS(12017), + [anon_sym_EQ] = ACTIONS(12017), + [sym_word] = ACTIONS(12017), + [sym_param] = ACTIONS(12013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12013), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12013), + [anon_sym_DOLLAR] = ACTIONS(12015), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12013), + [anon_sym_BSLASHbegin] = ACTIONS(12015), + [anon_sym_BSLASHcaption] = ACTIONS(12015), + [anon_sym_BSLASHcite] = ACTIONS(12015), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCite] = ACTIONS(12015), + [anon_sym_BSLASHnocite] = ACTIONS(12015), + [anon_sym_BSLASHcitet] = ACTIONS(12015), + [anon_sym_BSLASHcitep] = ACTIONS(12015), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteauthor] = ACTIONS(12015), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12015), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitetitle] = ACTIONS(12015), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteyear] = ACTIONS(12015), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitedate] = ACTIONS(12015), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteurl] = ACTIONS(12015), + [anon_sym_BSLASHfullcite] = ACTIONS(12015), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12015), + [anon_sym_BSLASHcitealt] = ACTIONS(12015), + [anon_sym_BSLASHcitealp] = ACTIONS(12015), + [anon_sym_BSLASHcitetext] = ACTIONS(12015), + [anon_sym_BSLASHparencite] = ACTIONS(12015), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHParencite] = ACTIONS(12015), + [anon_sym_BSLASHfootcite] = ACTIONS(12015), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12015), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12015), + [anon_sym_BSLASHtextcite] = ACTIONS(12015), + [anon_sym_BSLASHTextcite] = ACTIONS(12015), + [anon_sym_BSLASHsmartcite] = ACTIONS(12015), + [anon_sym_BSLASHSmartcite] = ACTIONS(12015), + [anon_sym_BSLASHsupercite] = ACTIONS(12015), + [anon_sym_BSLASHautocite] = ACTIONS(12015), + [anon_sym_BSLASHAutocite] = ACTIONS(12015), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHvolcite] = ACTIONS(12015), + [anon_sym_BSLASHVolcite] = ACTIONS(12015), + [anon_sym_BSLASHpvolcite] = ACTIONS(12015), + [anon_sym_BSLASHPvolcite] = ACTIONS(12015), + [anon_sym_BSLASHfvolcite] = ACTIONS(12015), + [anon_sym_BSLASHftvolcite] = ACTIONS(12015), + [anon_sym_BSLASHsvolcite] = ACTIONS(12015), + [anon_sym_BSLASHSvolcite] = ACTIONS(12015), + [anon_sym_BSLASHtvolcite] = ACTIONS(12015), + [anon_sym_BSLASHTvolcite] = ACTIONS(12015), + [anon_sym_BSLASHavolcite] = ACTIONS(12015), + [anon_sym_BSLASHAvolcite] = ACTIONS(12015), + [anon_sym_BSLASHnotecite] = ACTIONS(12015), + [anon_sym_BSLASHpnotecite] = ACTIONS(12015), + [anon_sym_BSLASHPnotecite] = ACTIONS(12015), + [anon_sym_BSLASHfnotecite] = ACTIONS(12015), + [anon_sym_BSLASHusepackage] = ACTIONS(12015), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12015), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12015), + [anon_sym_BSLASHinclude] = ACTIONS(12015), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12015), + [anon_sym_BSLASHinput] = ACTIONS(12015), + [anon_sym_BSLASHsubfile] = ACTIONS(12015), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12015), + [anon_sym_BSLASHbibliography] = ACTIONS(12015), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12015), + [anon_sym_BSLASHincludesvg] = ACTIONS(12015), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12015), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12015), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12015), + [anon_sym_BSLASHimport] = ACTIONS(12015), + [anon_sym_BSLASHsubimport] = ACTIONS(12015), + [anon_sym_BSLASHinputfrom] = ACTIONS(12015), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12015), + [anon_sym_BSLASHincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHlabel] = ACTIONS(12015), + [anon_sym_BSLASHref] = ACTIONS(12015), + [anon_sym_BSLASHvref] = ACTIONS(12015), + [anon_sym_BSLASHVref] = ACTIONS(12015), + [anon_sym_BSLASHautoref] = ACTIONS(12015), + [anon_sym_BSLASHpageref] = ACTIONS(12015), + [anon_sym_BSLASHcref] = ACTIONS(12015), + [anon_sym_BSLASHCref] = ACTIONS(12015), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnameCref] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHlabelcref] = ACTIONS(12015), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12015), + [anon_sym_BSLASHeqref] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange] = ACTIONS(12015), + [anon_sym_BSLASHCrefrange] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewlabel] = ACTIONS(12015), + [anon_sym_BSLASHnewcommand] = ACTIONS(12015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12015), + [anon_sym_BSLASHgls] = ACTIONS(12015), + [anon_sym_BSLASHGls] = ACTIONS(12015), + [anon_sym_BSLASHGLS] = ACTIONS(12015), + [anon_sym_BSLASHglspl] = ACTIONS(12015), + [anon_sym_BSLASHGlspl] = ACTIONS(12015), + [anon_sym_BSLASHGLSpl] = ACTIONS(12015), + [anon_sym_BSLASHglsdisp] = ACTIONS(12015), + [anon_sym_BSLASHglslink] = ACTIONS(12015), + [anon_sym_BSLASHglstext] = ACTIONS(12015), + [anon_sym_BSLASHGlstext] = ACTIONS(12015), + [anon_sym_BSLASHGLStext] = ACTIONS(12015), + [anon_sym_BSLASHglsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12015), + [anon_sym_BSLASHglsplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSplural] = ACTIONS(12015), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHglsname] = ACTIONS(12015), + [anon_sym_BSLASHGlsname] = ACTIONS(12015), + [anon_sym_BSLASHGLSname] = ACTIONS(12015), + [anon_sym_BSLASHglssymbol] = ACTIONS(12015), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12015), + [anon_sym_BSLASHglsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12015), + [anon_sym_BSLASHglsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12015), + [anon_sym_BSLASHglsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12015), + [anon_sym_BSLASHglsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12015), + [anon_sym_BSLASHglsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12015), + [anon_sym_BSLASHnewacronym] = ACTIONS(12015), + [anon_sym_BSLASHacrshort] = ACTIONS(12015), + [anon_sym_BSLASHAcrshort] = ACTIONS(12015), + [anon_sym_BSLASHACRshort] = ACTIONS(12015), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12015), + [anon_sym_BSLASHacrlong] = ACTIONS(12015), + [anon_sym_BSLASHAcrlong] = ACTIONS(12015), + [anon_sym_BSLASHACRlong] = ACTIONS(12015), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12015), + [anon_sym_BSLASHacrfull] = ACTIONS(12015), + [anon_sym_BSLASHAcrfull] = ACTIONS(12015), + [anon_sym_BSLASHACRfull] = ACTIONS(12015), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12015), + [anon_sym_BSLASHacs] = ACTIONS(12015), + [anon_sym_BSLASHAcs] = ACTIONS(12015), + [anon_sym_BSLASHacsp] = ACTIONS(12015), + [anon_sym_BSLASHAcsp] = ACTIONS(12015), + [anon_sym_BSLASHacl] = ACTIONS(12015), + [anon_sym_BSLASHAcl] = ACTIONS(12015), + [anon_sym_BSLASHaclp] = ACTIONS(12015), + [anon_sym_BSLASHAclp] = ACTIONS(12015), + [anon_sym_BSLASHacf] = ACTIONS(12015), + [anon_sym_BSLASHAcf] = ACTIONS(12015), + [anon_sym_BSLASHacfp] = ACTIONS(12015), + [anon_sym_BSLASHAcfp] = ACTIONS(12015), + [anon_sym_BSLASHac] = ACTIONS(12015), + [anon_sym_BSLASHAc] = ACTIONS(12015), + [anon_sym_BSLASHacp] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12015), + [anon_sym_BSLASHcolor] = ACTIONS(12015), + [anon_sym_BSLASHcolorbox] = ACTIONS(12015), + [anon_sym_BSLASHtextcolor] = ACTIONS(12015), + [anon_sym_BSLASHpagecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12015), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12015), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12015), + }, + [476] = { + [sym__text_fragment] = STATE(476), + [aux_sym_text_repeat1] = STATE(476), + [ts_builtin_sym_end] = ACTIONS(12019), + [sym_generic_command_name] = ACTIONS(12021), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12021), + [aux_sym_chapter_token1] = ACTIONS(12021), + [aux_sym_section_token1] = ACTIONS(12021), + [aux_sym_subsection_token1] = ACTIONS(12021), + [aux_sym_subsubsection_token1] = ACTIONS(12021), + [aux_sym_paragraph_token1] = ACTIONS(12021), + [aux_sym_subparagraph_token1] = ACTIONS(12021), + [anon_sym_BSLASHitem] = ACTIONS(12021), + [anon_sym_LBRACK] = ACTIONS(12019), + [anon_sym_RBRACK] = ACTIONS(12019), + [anon_sym_LBRACE] = ACTIONS(12019), + [anon_sym_RBRACE] = ACTIONS(12019), + [anon_sym_LPAREN] = ACTIONS(12019), + [anon_sym_RPAREN] = ACTIONS(12019), + [anon_sym_COMMA] = ACTIONS(12023), + [anon_sym_EQ] = ACTIONS(12023), + [sym_word] = ACTIONS(12023), + [sym_param] = ACTIONS(12019), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12019), + [anon_sym_DOLLAR] = ACTIONS(12021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12019), + [anon_sym_BSLASHbegin] = ACTIONS(12021), + [anon_sym_BSLASHcaption] = ACTIONS(12021), + [anon_sym_BSLASHcite] = ACTIONS(12021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCite] = ACTIONS(12021), + [anon_sym_BSLASHnocite] = ACTIONS(12021), + [anon_sym_BSLASHcitet] = ACTIONS(12021), + [anon_sym_BSLASHcitep] = ACTIONS(12021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteauthor] = ACTIONS(12021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitetitle] = ACTIONS(12021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteyear] = ACTIONS(12021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitedate] = ACTIONS(12021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteurl] = ACTIONS(12021), + [anon_sym_BSLASHfullcite] = ACTIONS(12021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12021), + [anon_sym_BSLASHcitealt] = ACTIONS(12021), + [anon_sym_BSLASHcitealp] = ACTIONS(12021), + [anon_sym_BSLASHcitetext] = ACTIONS(12021), + [anon_sym_BSLASHparencite] = ACTIONS(12021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHParencite] = ACTIONS(12021), + [anon_sym_BSLASHfootcite] = ACTIONS(12021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12021), + [anon_sym_BSLASHtextcite] = ACTIONS(12021), + [anon_sym_BSLASHTextcite] = ACTIONS(12021), + [anon_sym_BSLASHsmartcite] = ACTIONS(12021), + [anon_sym_BSLASHSmartcite] = ACTIONS(12021), + [anon_sym_BSLASHsupercite] = ACTIONS(12021), + [anon_sym_BSLASHautocite] = ACTIONS(12021), + [anon_sym_BSLASHAutocite] = ACTIONS(12021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHvolcite] = ACTIONS(12021), + [anon_sym_BSLASHVolcite] = ACTIONS(12021), + [anon_sym_BSLASHpvolcite] = ACTIONS(12021), + [anon_sym_BSLASHPvolcite] = ACTIONS(12021), + [anon_sym_BSLASHfvolcite] = ACTIONS(12021), + [anon_sym_BSLASHftvolcite] = ACTIONS(12021), + [anon_sym_BSLASHsvolcite] = ACTIONS(12021), + [anon_sym_BSLASHSvolcite] = ACTIONS(12021), + [anon_sym_BSLASHtvolcite] = ACTIONS(12021), + [anon_sym_BSLASHTvolcite] = ACTIONS(12021), + [anon_sym_BSLASHavolcite] = ACTIONS(12021), + [anon_sym_BSLASHAvolcite] = ACTIONS(12021), + [anon_sym_BSLASHnotecite] = ACTIONS(12021), + [anon_sym_BSLASHpnotecite] = ACTIONS(12021), + [anon_sym_BSLASHPnotecite] = ACTIONS(12021), + [anon_sym_BSLASHfnotecite] = ACTIONS(12021), + [anon_sym_BSLASHusepackage] = ACTIONS(12021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12021), + [anon_sym_BSLASHinclude] = ACTIONS(12021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12021), + [anon_sym_BSLASHinput] = ACTIONS(12021), + [anon_sym_BSLASHsubfile] = ACTIONS(12021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12021), + [anon_sym_BSLASHbibliography] = ACTIONS(12021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12021), + [anon_sym_BSLASHincludesvg] = ACTIONS(12021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12021), + [anon_sym_BSLASHimport] = ACTIONS(12021), + [anon_sym_BSLASHsubimport] = ACTIONS(12021), + [anon_sym_BSLASHinputfrom] = ACTIONS(12021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12021), + [anon_sym_BSLASHincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHlabel] = ACTIONS(12021), + [anon_sym_BSLASHref] = ACTIONS(12021), + [anon_sym_BSLASHvref] = ACTIONS(12021), + [anon_sym_BSLASHVref] = ACTIONS(12021), + [anon_sym_BSLASHautoref] = ACTIONS(12021), + [anon_sym_BSLASHpageref] = ACTIONS(12021), + [anon_sym_BSLASHcref] = ACTIONS(12021), + [anon_sym_BSLASHCref] = ACTIONS(12021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnameCref] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHlabelcref] = ACTIONS(12021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12021), + [anon_sym_BSLASHeqref] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange] = ACTIONS(12021), + [anon_sym_BSLASHCrefrange] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewlabel] = ACTIONS(12021), + [anon_sym_BSLASHnewcommand] = ACTIONS(12021), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12021), + [anon_sym_BSLASHgls] = ACTIONS(12021), + [anon_sym_BSLASHGls] = ACTIONS(12021), + [anon_sym_BSLASHGLS] = ACTIONS(12021), + [anon_sym_BSLASHglspl] = ACTIONS(12021), + [anon_sym_BSLASHGlspl] = ACTIONS(12021), + [anon_sym_BSLASHGLSpl] = ACTIONS(12021), + [anon_sym_BSLASHglsdisp] = ACTIONS(12021), + [anon_sym_BSLASHglslink] = ACTIONS(12021), + [anon_sym_BSLASHglstext] = ACTIONS(12021), + [anon_sym_BSLASHGlstext] = ACTIONS(12021), + [anon_sym_BSLASHGLStext] = ACTIONS(12021), + [anon_sym_BSLASHglsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12021), + [anon_sym_BSLASHglsplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSplural] = ACTIONS(12021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHglsname] = ACTIONS(12021), + [anon_sym_BSLASHGlsname] = ACTIONS(12021), + [anon_sym_BSLASHGLSname] = ACTIONS(12021), + [anon_sym_BSLASHglssymbol] = ACTIONS(12021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12021), + [anon_sym_BSLASHglsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12021), + [anon_sym_BSLASHglsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12021), + [anon_sym_BSLASHglsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12021), + [anon_sym_BSLASHglsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12021), + [anon_sym_BSLASHglsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12021), + [anon_sym_BSLASHnewacronym] = ACTIONS(12021), + [anon_sym_BSLASHacrshort] = ACTIONS(12021), + [anon_sym_BSLASHAcrshort] = ACTIONS(12021), + [anon_sym_BSLASHACRshort] = ACTIONS(12021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12021), + [anon_sym_BSLASHacrlong] = ACTIONS(12021), + [anon_sym_BSLASHAcrlong] = ACTIONS(12021), + [anon_sym_BSLASHACRlong] = ACTIONS(12021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12021), + [anon_sym_BSLASHacrfull] = ACTIONS(12021), + [anon_sym_BSLASHAcrfull] = ACTIONS(12021), + [anon_sym_BSLASHACRfull] = ACTIONS(12021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12021), + [anon_sym_BSLASHacs] = ACTIONS(12021), + [anon_sym_BSLASHAcs] = ACTIONS(12021), + [anon_sym_BSLASHacsp] = ACTIONS(12021), + [anon_sym_BSLASHAcsp] = ACTIONS(12021), + [anon_sym_BSLASHacl] = ACTIONS(12021), + [anon_sym_BSLASHAcl] = ACTIONS(12021), + [anon_sym_BSLASHaclp] = ACTIONS(12021), + [anon_sym_BSLASHAclp] = ACTIONS(12021), + [anon_sym_BSLASHacf] = ACTIONS(12021), + [anon_sym_BSLASHAcf] = ACTIONS(12021), + [anon_sym_BSLASHacfp] = ACTIONS(12021), + [anon_sym_BSLASHAcfp] = ACTIONS(12021), + [anon_sym_BSLASHac] = ACTIONS(12021), + [anon_sym_BSLASHAc] = ACTIONS(12021), + [anon_sym_BSLASHacp] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12021), + [anon_sym_BSLASHcolor] = ACTIONS(12021), + [anon_sym_BSLASHcolorbox] = ACTIONS(12021), + [anon_sym_BSLASHtextcolor] = ACTIONS(12021), + [anon_sym_BSLASHpagecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12021), + }, + [477] = { + [sym_brace_group] = STATE(2876), + [ts_builtin_sym_end] = ACTIONS(12026), + [sym_generic_command_name] = ACTIONS(12028), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12028), + [aux_sym_chapter_token1] = ACTIONS(12028), + [aux_sym_section_token1] = ACTIONS(12028), + [aux_sym_subsection_token1] = ACTIONS(12028), + [aux_sym_subsubsection_token1] = ACTIONS(12028), + [aux_sym_paragraph_token1] = ACTIONS(12028), + [aux_sym_subparagraph_token1] = ACTIONS(12028), + [anon_sym_BSLASHitem] = ACTIONS(12028), + [anon_sym_LBRACK] = ACTIONS(12026), + [anon_sym_RBRACK] = ACTIONS(12026), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12026), + [anon_sym_LPAREN] = ACTIONS(12026), + [anon_sym_RPAREN] = ACTIONS(12026), + [anon_sym_COMMA] = ACTIONS(12026), + [anon_sym_EQ] = ACTIONS(12026), + [sym_word] = ACTIONS(12026), + [sym_param] = ACTIONS(12026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12026), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12026), + [anon_sym_DOLLAR] = ACTIONS(12028), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12026), + [anon_sym_BSLASHbegin] = ACTIONS(12028), + [anon_sym_BSLASHcaption] = ACTIONS(12028), + [anon_sym_BSLASHcite] = ACTIONS(12028), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCite] = ACTIONS(12028), + [anon_sym_BSLASHnocite] = ACTIONS(12028), + [anon_sym_BSLASHcitet] = ACTIONS(12028), + [anon_sym_BSLASHcitep] = ACTIONS(12028), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteauthor] = ACTIONS(12028), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12028), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitetitle] = ACTIONS(12028), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteyear] = ACTIONS(12028), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitedate] = ACTIONS(12028), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteurl] = ACTIONS(12028), + [anon_sym_BSLASHfullcite] = ACTIONS(12028), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12028), + [anon_sym_BSLASHcitealt] = ACTIONS(12028), + [anon_sym_BSLASHcitealp] = ACTIONS(12028), + [anon_sym_BSLASHcitetext] = ACTIONS(12028), + [anon_sym_BSLASHparencite] = ACTIONS(12028), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHParencite] = ACTIONS(12028), + [anon_sym_BSLASHfootcite] = ACTIONS(12028), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12028), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12028), + [anon_sym_BSLASHtextcite] = ACTIONS(12028), + [anon_sym_BSLASHTextcite] = ACTIONS(12028), + [anon_sym_BSLASHsmartcite] = ACTIONS(12028), + [anon_sym_BSLASHSmartcite] = ACTIONS(12028), + [anon_sym_BSLASHsupercite] = ACTIONS(12028), + [anon_sym_BSLASHautocite] = ACTIONS(12028), + [anon_sym_BSLASHAutocite] = ACTIONS(12028), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHvolcite] = ACTIONS(12028), + [anon_sym_BSLASHVolcite] = ACTIONS(12028), + [anon_sym_BSLASHpvolcite] = ACTIONS(12028), + [anon_sym_BSLASHPvolcite] = ACTIONS(12028), + [anon_sym_BSLASHfvolcite] = ACTIONS(12028), + [anon_sym_BSLASHftvolcite] = ACTIONS(12028), + [anon_sym_BSLASHsvolcite] = ACTIONS(12028), + [anon_sym_BSLASHSvolcite] = ACTIONS(12028), + [anon_sym_BSLASHtvolcite] = ACTIONS(12028), + [anon_sym_BSLASHTvolcite] = ACTIONS(12028), + [anon_sym_BSLASHavolcite] = ACTIONS(12028), + [anon_sym_BSLASHAvolcite] = ACTIONS(12028), + [anon_sym_BSLASHnotecite] = ACTIONS(12028), + [anon_sym_BSLASHpnotecite] = ACTIONS(12028), + [anon_sym_BSLASHPnotecite] = ACTIONS(12028), + [anon_sym_BSLASHfnotecite] = ACTIONS(12028), + [anon_sym_BSLASHusepackage] = ACTIONS(12028), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12028), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12028), + [anon_sym_BSLASHinclude] = ACTIONS(12028), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12028), + [anon_sym_BSLASHinput] = ACTIONS(12028), + [anon_sym_BSLASHsubfile] = ACTIONS(12028), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12028), + [anon_sym_BSLASHbibliography] = ACTIONS(12028), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12028), + [anon_sym_BSLASHincludesvg] = ACTIONS(12028), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12028), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12028), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12028), + [anon_sym_BSLASHimport] = ACTIONS(12028), + [anon_sym_BSLASHsubimport] = ACTIONS(12028), + [anon_sym_BSLASHinputfrom] = ACTIONS(12028), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12028), + [anon_sym_BSLASHincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHlabel] = ACTIONS(12028), + [anon_sym_BSLASHref] = ACTIONS(12028), + [anon_sym_BSLASHvref] = ACTIONS(12028), + [anon_sym_BSLASHVref] = ACTIONS(12028), + [anon_sym_BSLASHautoref] = ACTIONS(12028), + [anon_sym_BSLASHpageref] = ACTIONS(12028), + [anon_sym_BSLASHcref] = ACTIONS(12028), + [anon_sym_BSLASHCref] = ACTIONS(12028), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnameCref] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHlabelcref] = ACTIONS(12028), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12028), + [anon_sym_BSLASHeqref] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange] = ACTIONS(12028), + [anon_sym_BSLASHCrefrange] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewlabel] = ACTIONS(12028), + [anon_sym_BSLASHnewcommand] = ACTIONS(12028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12028), + [anon_sym_BSLASHgls] = ACTIONS(12028), + [anon_sym_BSLASHGls] = ACTIONS(12028), + [anon_sym_BSLASHGLS] = ACTIONS(12028), + [anon_sym_BSLASHglspl] = ACTIONS(12028), + [anon_sym_BSLASHGlspl] = ACTIONS(12028), + [anon_sym_BSLASHGLSpl] = ACTIONS(12028), + [anon_sym_BSLASHglsdisp] = ACTIONS(12028), + [anon_sym_BSLASHglslink] = ACTIONS(12028), + [anon_sym_BSLASHglstext] = ACTIONS(12028), + [anon_sym_BSLASHGlstext] = ACTIONS(12028), + [anon_sym_BSLASHGLStext] = ACTIONS(12028), + [anon_sym_BSLASHglsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12028), + [anon_sym_BSLASHglsplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSplural] = ACTIONS(12028), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHglsname] = ACTIONS(12028), + [anon_sym_BSLASHGlsname] = ACTIONS(12028), + [anon_sym_BSLASHGLSname] = ACTIONS(12028), + [anon_sym_BSLASHglssymbol] = ACTIONS(12028), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12028), + [anon_sym_BSLASHglsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12028), + [anon_sym_BSLASHglsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12028), + [anon_sym_BSLASHglsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12028), + [anon_sym_BSLASHglsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12028), + [anon_sym_BSLASHglsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12028), + [anon_sym_BSLASHnewacronym] = ACTIONS(12028), + [anon_sym_BSLASHacrshort] = ACTIONS(12028), + [anon_sym_BSLASHAcrshort] = ACTIONS(12028), + [anon_sym_BSLASHACRshort] = ACTIONS(12028), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12028), + [anon_sym_BSLASHacrlong] = ACTIONS(12028), + [anon_sym_BSLASHAcrlong] = ACTIONS(12028), + [anon_sym_BSLASHACRlong] = ACTIONS(12028), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12028), + [anon_sym_BSLASHacrfull] = ACTIONS(12028), + [anon_sym_BSLASHAcrfull] = ACTIONS(12028), + [anon_sym_BSLASHACRfull] = ACTIONS(12028), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12028), + [anon_sym_BSLASHacs] = ACTIONS(12028), + [anon_sym_BSLASHAcs] = ACTIONS(12028), + [anon_sym_BSLASHacsp] = ACTIONS(12028), + [anon_sym_BSLASHAcsp] = ACTIONS(12028), + [anon_sym_BSLASHacl] = ACTIONS(12028), + [anon_sym_BSLASHAcl] = ACTIONS(12028), + [anon_sym_BSLASHaclp] = ACTIONS(12028), + [anon_sym_BSLASHAclp] = ACTIONS(12028), + [anon_sym_BSLASHacf] = ACTIONS(12028), + [anon_sym_BSLASHAcf] = ACTIONS(12028), + [anon_sym_BSLASHacfp] = ACTIONS(12028), + [anon_sym_BSLASHAcfp] = ACTIONS(12028), + [anon_sym_BSLASHac] = ACTIONS(12028), + [anon_sym_BSLASHAc] = ACTIONS(12028), + [anon_sym_BSLASHacp] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12028), + [anon_sym_BSLASHcolor] = ACTIONS(12028), + [anon_sym_BSLASHcolorbox] = ACTIONS(12028), + [anon_sym_BSLASHtextcolor] = ACTIONS(12028), + [anon_sym_BSLASHpagecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12028), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12028), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12028), + }, + [478] = { + [sym_brace_group] = STATE(478), + [sym_bracket_group] = STATE(478), + [sym_paren_group] = STATE(478), + [aux_sym_generic_command_repeat1] = STATE(478), + [sym_generic_command_name] = ACTIONS(12002), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12002), + [aux_sym_section_token1] = ACTIONS(12002), + [aux_sym_subsection_token1] = ACTIONS(12002), + [aux_sym_subsubsection_token1] = ACTIONS(12002), + [aux_sym_paragraph_token1] = ACTIONS(12002), + [aux_sym_subparagraph_token1] = ACTIONS(12002), + [anon_sym_BSLASHitem] = ACTIONS(12002), + [anon_sym_LBRACK] = ACTIONS(12030), + [anon_sym_RBRACK] = ACTIONS(12000), + [anon_sym_LBRACE] = ACTIONS(12033), + [anon_sym_RBRACE] = ACTIONS(12000), + [anon_sym_LPAREN] = ACTIONS(12036), + [anon_sym_COMMA] = ACTIONS(12000), + [anon_sym_EQ] = ACTIONS(12000), + [sym_word] = ACTIONS(12000), + [sym_param] = ACTIONS(12000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12000), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12000), + [anon_sym_DOLLAR] = ACTIONS(12002), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12000), + [anon_sym_BSLASHbegin] = ACTIONS(12002), + [anon_sym_BSLASHcaption] = ACTIONS(12002), + [anon_sym_BSLASHcite] = ACTIONS(12002), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCite] = ACTIONS(12002), + [anon_sym_BSLASHnocite] = ACTIONS(12002), + [anon_sym_BSLASHcitet] = ACTIONS(12002), + [anon_sym_BSLASHcitep] = ACTIONS(12002), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteauthor] = ACTIONS(12002), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12002), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitetitle] = ACTIONS(12002), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteyear] = ACTIONS(12002), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitedate] = ACTIONS(12002), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteurl] = ACTIONS(12002), + [anon_sym_BSLASHfullcite] = ACTIONS(12002), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12002), + [anon_sym_BSLASHcitealt] = ACTIONS(12002), + [anon_sym_BSLASHcitealp] = ACTIONS(12002), + [anon_sym_BSLASHcitetext] = ACTIONS(12002), + [anon_sym_BSLASHparencite] = ACTIONS(12002), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHParencite] = ACTIONS(12002), + [anon_sym_BSLASHfootcite] = ACTIONS(12002), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12002), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12002), + [anon_sym_BSLASHtextcite] = ACTIONS(12002), + [anon_sym_BSLASHTextcite] = ACTIONS(12002), + [anon_sym_BSLASHsmartcite] = ACTIONS(12002), + [anon_sym_BSLASHSmartcite] = ACTIONS(12002), + [anon_sym_BSLASHsupercite] = ACTIONS(12002), + [anon_sym_BSLASHautocite] = ACTIONS(12002), + [anon_sym_BSLASHAutocite] = ACTIONS(12002), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHvolcite] = ACTIONS(12002), + [anon_sym_BSLASHVolcite] = ACTIONS(12002), + [anon_sym_BSLASHpvolcite] = ACTIONS(12002), + [anon_sym_BSLASHPvolcite] = ACTIONS(12002), + [anon_sym_BSLASHfvolcite] = ACTIONS(12002), + [anon_sym_BSLASHftvolcite] = ACTIONS(12002), + [anon_sym_BSLASHsvolcite] = ACTIONS(12002), + [anon_sym_BSLASHSvolcite] = ACTIONS(12002), + [anon_sym_BSLASHtvolcite] = ACTIONS(12002), + [anon_sym_BSLASHTvolcite] = ACTIONS(12002), + [anon_sym_BSLASHavolcite] = ACTIONS(12002), + [anon_sym_BSLASHAvolcite] = ACTIONS(12002), + [anon_sym_BSLASHnotecite] = ACTIONS(12002), + [anon_sym_BSLASHpnotecite] = ACTIONS(12002), + [anon_sym_BSLASHPnotecite] = ACTIONS(12002), + [anon_sym_BSLASHfnotecite] = ACTIONS(12002), + [anon_sym_BSLASHusepackage] = ACTIONS(12002), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12002), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12002), + [anon_sym_BSLASHinclude] = ACTIONS(12002), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12002), + [anon_sym_BSLASHinput] = ACTIONS(12002), + [anon_sym_BSLASHsubfile] = ACTIONS(12002), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12002), + [anon_sym_BSLASHbibliography] = ACTIONS(12002), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12002), + [anon_sym_BSLASHincludesvg] = ACTIONS(12002), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12002), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12002), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12002), + [anon_sym_BSLASHimport] = ACTIONS(12002), + [anon_sym_BSLASHsubimport] = ACTIONS(12002), + [anon_sym_BSLASHinputfrom] = ACTIONS(12002), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12002), + [anon_sym_BSLASHincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHlabel] = ACTIONS(12002), + [anon_sym_BSLASHref] = ACTIONS(12002), + [anon_sym_BSLASHvref] = ACTIONS(12002), + [anon_sym_BSLASHVref] = ACTIONS(12002), + [anon_sym_BSLASHautoref] = ACTIONS(12002), + [anon_sym_BSLASHpageref] = ACTIONS(12002), + [anon_sym_BSLASHcref] = ACTIONS(12002), + [anon_sym_BSLASHCref] = ACTIONS(12002), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnameCref] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHlabelcref] = ACTIONS(12002), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12002), + [anon_sym_BSLASHeqref] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange] = ACTIONS(12002), + [anon_sym_BSLASHCrefrange] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewlabel] = ACTIONS(12002), + [anon_sym_BSLASHnewcommand] = ACTIONS(12002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12002), + [anon_sym_BSLASHgls] = ACTIONS(12002), + [anon_sym_BSLASHGls] = ACTIONS(12002), + [anon_sym_BSLASHGLS] = ACTIONS(12002), + [anon_sym_BSLASHglspl] = ACTIONS(12002), + [anon_sym_BSLASHGlspl] = ACTIONS(12002), + [anon_sym_BSLASHGLSpl] = ACTIONS(12002), + [anon_sym_BSLASHglsdisp] = ACTIONS(12002), + [anon_sym_BSLASHglslink] = ACTIONS(12002), + [anon_sym_BSLASHglstext] = ACTIONS(12002), + [anon_sym_BSLASHGlstext] = ACTIONS(12002), + [anon_sym_BSLASHGLStext] = ACTIONS(12002), + [anon_sym_BSLASHglsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12002), + [anon_sym_BSLASHglsplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSplural] = ACTIONS(12002), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHglsname] = ACTIONS(12002), + [anon_sym_BSLASHGlsname] = ACTIONS(12002), + [anon_sym_BSLASHGLSname] = ACTIONS(12002), + [anon_sym_BSLASHglssymbol] = ACTIONS(12002), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12002), + [anon_sym_BSLASHglsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12002), + [anon_sym_BSLASHglsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12002), + [anon_sym_BSLASHglsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12002), + [anon_sym_BSLASHglsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12002), + [anon_sym_BSLASHglsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12002), + [anon_sym_BSLASHnewacronym] = ACTIONS(12002), + [anon_sym_BSLASHacrshort] = ACTIONS(12002), + [anon_sym_BSLASHAcrshort] = ACTIONS(12002), + [anon_sym_BSLASHACRshort] = ACTIONS(12002), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12002), + [anon_sym_BSLASHacrlong] = ACTIONS(12002), + [anon_sym_BSLASHAcrlong] = ACTIONS(12002), + [anon_sym_BSLASHACRlong] = ACTIONS(12002), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12002), + [anon_sym_BSLASHacrfull] = ACTIONS(12002), + [anon_sym_BSLASHAcrfull] = ACTIONS(12002), + [anon_sym_BSLASHACRfull] = ACTIONS(12002), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12002), + [anon_sym_BSLASHacs] = ACTIONS(12002), + [anon_sym_BSLASHAcs] = ACTIONS(12002), + [anon_sym_BSLASHacsp] = ACTIONS(12002), + [anon_sym_BSLASHAcsp] = ACTIONS(12002), + [anon_sym_BSLASHacl] = ACTIONS(12002), + [anon_sym_BSLASHAcl] = ACTIONS(12002), + [anon_sym_BSLASHaclp] = ACTIONS(12002), + [anon_sym_BSLASHAclp] = ACTIONS(12002), + [anon_sym_BSLASHacf] = ACTIONS(12002), + [anon_sym_BSLASHAcf] = ACTIONS(12002), + [anon_sym_BSLASHacfp] = ACTIONS(12002), + [anon_sym_BSLASHAcfp] = ACTIONS(12002), + [anon_sym_BSLASHac] = ACTIONS(12002), + [anon_sym_BSLASHAc] = ACTIONS(12002), + [anon_sym_BSLASHacp] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12002), + [anon_sym_BSLASHcolor] = ACTIONS(12002), + [anon_sym_BSLASHcolorbox] = ACTIONS(12002), + [anon_sym_BSLASHtextcolor] = ACTIONS(12002), + [anon_sym_BSLASHpagecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12002), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12002), + }, + [479] = { + [sym_brace_group] = STATE(479), + [sym_bracket_group] = STATE(479), + [sym_paren_group] = STATE(479), + [aux_sym_generic_command_repeat1] = STATE(479), + [sym_generic_command_name] = ACTIONS(12002), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12002), + [aux_sym_chapter_token1] = ACTIONS(12002), + [aux_sym_section_token1] = ACTIONS(12002), + [aux_sym_subsection_token1] = ACTIONS(12002), + [aux_sym_subsubsection_token1] = ACTIONS(12002), + [aux_sym_paragraph_token1] = ACTIONS(12002), + [aux_sym_subparagraph_token1] = ACTIONS(12002), + [anon_sym_BSLASHitem] = ACTIONS(12002), + [anon_sym_LBRACK] = ACTIONS(12039), + [anon_sym_LBRACE] = ACTIONS(12042), + [anon_sym_LPAREN] = ACTIONS(12045), + [anon_sym_COMMA] = ACTIONS(12000), + [anon_sym_EQ] = ACTIONS(12000), + [sym_word] = ACTIONS(12000), + [sym_param] = ACTIONS(12000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12000), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12000), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12000), + [anon_sym_DOLLAR] = ACTIONS(12002), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12000), + [anon_sym_BSLASHbegin] = ACTIONS(12002), + [anon_sym_BSLASHcaption] = ACTIONS(12002), + [anon_sym_BSLASHcite] = ACTIONS(12002), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCite] = ACTIONS(12002), + [anon_sym_BSLASHnocite] = ACTIONS(12002), + [anon_sym_BSLASHcitet] = ACTIONS(12002), + [anon_sym_BSLASHcitep] = ACTIONS(12002), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteauthor] = ACTIONS(12002), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12002), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitetitle] = ACTIONS(12002), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteyear] = ACTIONS(12002), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitedate] = ACTIONS(12002), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteurl] = ACTIONS(12002), + [anon_sym_BSLASHfullcite] = ACTIONS(12002), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12002), + [anon_sym_BSLASHcitealt] = ACTIONS(12002), + [anon_sym_BSLASHcitealp] = ACTIONS(12002), + [anon_sym_BSLASHcitetext] = ACTIONS(12002), + [anon_sym_BSLASHparencite] = ACTIONS(12002), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHParencite] = ACTIONS(12002), + [anon_sym_BSLASHfootcite] = ACTIONS(12002), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12002), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12002), + [anon_sym_BSLASHtextcite] = ACTIONS(12002), + [anon_sym_BSLASHTextcite] = ACTIONS(12002), + [anon_sym_BSLASHsmartcite] = ACTIONS(12002), + [anon_sym_BSLASHSmartcite] = ACTIONS(12002), + [anon_sym_BSLASHsupercite] = ACTIONS(12002), + [anon_sym_BSLASHautocite] = ACTIONS(12002), + [anon_sym_BSLASHAutocite] = ACTIONS(12002), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHvolcite] = ACTIONS(12002), + [anon_sym_BSLASHVolcite] = ACTIONS(12002), + [anon_sym_BSLASHpvolcite] = ACTIONS(12002), + [anon_sym_BSLASHPvolcite] = ACTIONS(12002), + [anon_sym_BSLASHfvolcite] = ACTIONS(12002), + [anon_sym_BSLASHftvolcite] = ACTIONS(12002), + [anon_sym_BSLASHsvolcite] = ACTIONS(12002), + [anon_sym_BSLASHSvolcite] = ACTIONS(12002), + [anon_sym_BSLASHtvolcite] = ACTIONS(12002), + [anon_sym_BSLASHTvolcite] = ACTIONS(12002), + [anon_sym_BSLASHavolcite] = ACTIONS(12002), + [anon_sym_BSLASHAvolcite] = ACTIONS(12002), + [anon_sym_BSLASHnotecite] = ACTIONS(12002), + [anon_sym_BSLASHpnotecite] = ACTIONS(12002), + [anon_sym_BSLASHPnotecite] = ACTIONS(12002), + [anon_sym_BSLASHfnotecite] = ACTIONS(12002), + [anon_sym_BSLASHusepackage] = ACTIONS(12002), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12002), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12002), + [anon_sym_BSLASHinclude] = ACTIONS(12002), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12002), + [anon_sym_BSLASHinput] = ACTIONS(12002), + [anon_sym_BSLASHsubfile] = ACTIONS(12002), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12002), + [anon_sym_BSLASHbibliography] = ACTIONS(12002), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12002), + [anon_sym_BSLASHincludesvg] = ACTIONS(12002), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12002), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12002), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12002), + [anon_sym_BSLASHimport] = ACTIONS(12002), + [anon_sym_BSLASHsubimport] = ACTIONS(12002), + [anon_sym_BSLASHinputfrom] = ACTIONS(12002), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12002), + [anon_sym_BSLASHincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHlabel] = ACTIONS(12002), + [anon_sym_BSLASHref] = ACTIONS(12002), + [anon_sym_BSLASHvref] = ACTIONS(12002), + [anon_sym_BSLASHVref] = ACTIONS(12002), + [anon_sym_BSLASHautoref] = ACTIONS(12002), + [anon_sym_BSLASHpageref] = ACTIONS(12002), + [anon_sym_BSLASHcref] = ACTIONS(12002), + [anon_sym_BSLASHCref] = ACTIONS(12002), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnameCref] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHlabelcref] = ACTIONS(12002), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12002), + [anon_sym_BSLASHeqref] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange] = ACTIONS(12002), + [anon_sym_BSLASHCrefrange] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewlabel] = ACTIONS(12002), + [anon_sym_BSLASHnewcommand] = ACTIONS(12002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12002), + [anon_sym_BSLASHgls] = ACTIONS(12002), + [anon_sym_BSLASHGls] = ACTIONS(12002), + [anon_sym_BSLASHGLS] = ACTIONS(12002), + [anon_sym_BSLASHglspl] = ACTIONS(12002), + [anon_sym_BSLASHGlspl] = ACTIONS(12002), + [anon_sym_BSLASHGLSpl] = ACTIONS(12002), + [anon_sym_BSLASHglsdisp] = ACTIONS(12002), + [anon_sym_BSLASHglslink] = ACTIONS(12002), + [anon_sym_BSLASHglstext] = ACTIONS(12002), + [anon_sym_BSLASHGlstext] = ACTIONS(12002), + [anon_sym_BSLASHGLStext] = ACTIONS(12002), + [anon_sym_BSLASHglsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12002), + [anon_sym_BSLASHglsplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSplural] = ACTIONS(12002), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHglsname] = ACTIONS(12002), + [anon_sym_BSLASHGlsname] = ACTIONS(12002), + [anon_sym_BSLASHGLSname] = ACTIONS(12002), + [anon_sym_BSLASHglssymbol] = ACTIONS(12002), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12002), + [anon_sym_BSLASHglsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12002), + [anon_sym_BSLASHglsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12002), + [anon_sym_BSLASHglsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12002), + [anon_sym_BSLASHglsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12002), + [anon_sym_BSLASHglsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12002), + [anon_sym_BSLASHnewacronym] = ACTIONS(12002), + [anon_sym_BSLASHacrshort] = ACTIONS(12002), + [anon_sym_BSLASHAcrshort] = ACTIONS(12002), + [anon_sym_BSLASHACRshort] = ACTIONS(12002), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12002), + [anon_sym_BSLASHacrlong] = ACTIONS(12002), + [anon_sym_BSLASHAcrlong] = ACTIONS(12002), + [anon_sym_BSLASHACRlong] = ACTIONS(12002), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12002), + [anon_sym_BSLASHacrfull] = ACTIONS(12002), + [anon_sym_BSLASHAcrfull] = ACTIONS(12002), + [anon_sym_BSLASHACRfull] = ACTIONS(12002), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12002), + [anon_sym_BSLASHacs] = ACTIONS(12002), + [anon_sym_BSLASHAcs] = ACTIONS(12002), + [anon_sym_BSLASHacsp] = ACTIONS(12002), + [anon_sym_BSLASHAcsp] = ACTIONS(12002), + [anon_sym_BSLASHacl] = ACTIONS(12002), + [anon_sym_BSLASHAcl] = ACTIONS(12002), + [anon_sym_BSLASHaclp] = ACTIONS(12002), + [anon_sym_BSLASHAclp] = ACTIONS(12002), + [anon_sym_BSLASHacf] = ACTIONS(12002), + [anon_sym_BSLASHAcf] = ACTIONS(12002), + [anon_sym_BSLASHacfp] = ACTIONS(12002), + [anon_sym_BSLASHAcfp] = ACTIONS(12002), + [anon_sym_BSLASHac] = ACTIONS(12002), + [anon_sym_BSLASHAc] = ACTIONS(12002), + [anon_sym_BSLASHacp] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12002), + [anon_sym_BSLASHcolor] = ACTIONS(12002), + [anon_sym_BSLASHcolorbox] = ACTIONS(12002), + [anon_sym_BSLASHtextcolor] = ACTIONS(12002), + [anon_sym_BSLASHpagecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12002), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12002), + }, + [480] = { + [sym_brace_group] = STATE(494), + [sym_bracket_group] = STATE(494), + [sym_paren_group] = STATE(494), + [aux_sym_generic_command_repeat1] = STATE(494), + [sym_generic_command_name] = ACTIONS(11990), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(11990), + [aux_sym_chapter_token1] = ACTIONS(11990), + [aux_sym_section_token1] = ACTIONS(11990), + [aux_sym_subsection_token1] = ACTIONS(11990), + [aux_sym_subsubsection_token1] = ACTIONS(11990), + [aux_sym_paragraph_token1] = ACTIONS(11990), + [aux_sym_subparagraph_token1] = ACTIONS(11990), + [anon_sym_BSLASHitem] = ACTIONS(11990), + [anon_sym_LBRACK] = ACTIONS(12048), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(12050), + [anon_sym_COMMA] = ACTIONS(11988), + [anon_sym_EQ] = ACTIONS(11988), + [sym_word] = ACTIONS(11988), + [sym_param] = ACTIONS(11988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11988), + [anon_sym_DOLLAR] = ACTIONS(11990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11988), + [anon_sym_BSLASH_RPAREN] = ACTIONS(11988), + [anon_sym_BSLASHbegin] = ACTIONS(11990), + [anon_sym_BSLASHcaption] = ACTIONS(11990), + [anon_sym_BSLASHcite] = ACTIONS(11990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCite] = ACTIONS(11990), + [anon_sym_BSLASHnocite] = ACTIONS(11990), + [anon_sym_BSLASHcitet] = ACTIONS(11990), + [anon_sym_BSLASHcitep] = ACTIONS(11990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteauthor] = ACTIONS(11990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitetitle] = ACTIONS(11990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteyear] = ACTIONS(11990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitedate] = ACTIONS(11990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteurl] = ACTIONS(11990), + [anon_sym_BSLASHfullcite] = ACTIONS(11990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11990), + [anon_sym_BSLASHcitealt] = ACTIONS(11990), + [anon_sym_BSLASHcitealp] = ACTIONS(11990), + [anon_sym_BSLASHcitetext] = ACTIONS(11990), + [anon_sym_BSLASHparencite] = ACTIONS(11990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHParencite] = ACTIONS(11990), + [anon_sym_BSLASHfootcite] = ACTIONS(11990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11990), + [anon_sym_BSLASHtextcite] = ACTIONS(11990), + [anon_sym_BSLASHTextcite] = ACTIONS(11990), + [anon_sym_BSLASHsmartcite] = ACTIONS(11990), + [anon_sym_BSLASHSmartcite] = ACTIONS(11990), + [anon_sym_BSLASHsupercite] = ACTIONS(11990), + [anon_sym_BSLASHautocite] = ACTIONS(11990), + [anon_sym_BSLASHAutocite] = ACTIONS(11990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHvolcite] = ACTIONS(11990), + [anon_sym_BSLASHVolcite] = ACTIONS(11990), + [anon_sym_BSLASHpvolcite] = ACTIONS(11990), + [anon_sym_BSLASHPvolcite] = ACTIONS(11990), + [anon_sym_BSLASHfvolcite] = ACTIONS(11990), + [anon_sym_BSLASHftvolcite] = ACTIONS(11990), + [anon_sym_BSLASHsvolcite] = ACTIONS(11990), + [anon_sym_BSLASHSvolcite] = ACTIONS(11990), + [anon_sym_BSLASHtvolcite] = ACTIONS(11990), + [anon_sym_BSLASHTvolcite] = ACTIONS(11990), + [anon_sym_BSLASHavolcite] = ACTIONS(11990), + [anon_sym_BSLASHAvolcite] = ACTIONS(11990), + [anon_sym_BSLASHnotecite] = ACTIONS(11990), + [anon_sym_BSLASHpnotecite] = ACTIONS(11990), + [anon_sym_BSLASHPnotecite] = ACTIONS(11990), + [anon_sym_BSLASHfnotecite] = ACTIONS(11990), + [anon_sym_BSLASHusepackage] = ACTIONS(11990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11990), + [anon_sym_BSLASHinclude] = ACTIONS(11990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11990), + [anon_sym_BSLASHinput] = ACTIONS(11990), + [anon_sym_BSLASHsubfile] = ACTIONS(11990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11990), + [anon_sym_BSLASHbibliography] = ACTIONS(11990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11990), + [anon_sym_BSLASHincludesvg] = ACTIONS(11990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11990), + [anon_sym_BSLASHimport] = ACTIONS(11990), + [anon_sym_BSLASHsubimport] = ACTIONS(11990), + [anon_sym_BSLASHinputfrom] = ACTIONS(11990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11990), + [anon_sym_BSLASHincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHlabel] = ACTIONS(11990), + [anon_sym_BSLASHref] = ACTIONS(11990), + [anon_sym_BSLASHvref] = ACTIONS(11990), + [anon_sym_BSLASHVref] = ACTIONS(11990), + [anon_sym_BSLASHautoref] = ACTIONS(11990), + [anon_sym_BSLASHpageref] = ACTIONS(11990), + [anon_sym_BSLASHcref] = ACTIONS(11990), + [anon_sym_BSLASHCref] = ACTIONS(11990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnameCref] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHlabelcref] = ACTIONS(11990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11990), + [anon_sym_BSLASHeqref] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange] = ACTIONS(11990), + [anon_sym_BSLASHCrefrange] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewlabel] = ACTIONS(11990), + [anon_sym_BSLASHnewcommand] = ACTIONS(11990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11990), + [anon_sym_BSLASHgls] = ACTIONS(11990), + [anon_sym_BSLASHGls] = ACTIONS(11990), + [anon_sym_BSLASHGLS] = ACTIONS(11990), + [anon_sym_BSLASHglspl] = ACTIONS(11990), + [anon_sym_BSLASHGlspl] = ACTIONS(11990), + [anon_sym_BSLASHGLSpl] = ACTIONS(11990), + [anon_sym_BSLASHglsdisp] = ACTIONS(11990), + [anon_sym_BSLASHglslink] = ACTIONS(11990), + [anon_sym_BSLASHglstext] = ACTIONS(11990), + [anon_sym_BSLASHGlstext] = ACTIONS(11990), + [anon_sym_BSLASHGLStext] = ACTIONS(11990), + [anon_sym_BSLASHglsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11990), + [anon_sym_BSLASHglsplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSplural] = ACTIONS(11990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHglsname] = ACTIONS(11990), + [anon_sym_BSLASHGlsname] = ACTIONS(11990), + [anon_sym_BSLASHGLSname] = ACTIONS(11990), + [anon_sym_BSLASHglssymbol] = ACTIONS(11990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11990), + [anon_sym_BSLASHglsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11990), + [anon_sym_BSLASHglsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11990), + [anon_sym_BSLASHglsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11990), + [anon_sym_BSLASHglsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11990), + [anon_sym_BSLASHglsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11990), + [anon_sym_BSLASHnewacronym] = ACTIONS(11990), + [anon_sym_BSLASHacrshort] = ACTIONS(11990), + [anon_sym_BSLASHAcrshort] = ACTIONS(11990), + [anon_sym_BSLASHACRshort] = ACTIONS(11990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11990), + [anon_sym_BSLASHacrlong] = ACTIONS(11990), + [anon_sym_BSLASHAcrlong] = ACTIONS(11990), + [anon_sym_BSLASHACRlong] = ACTIONS(11990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11990), + [anon_sym_BSLASHacrfull] = ACTIONS(11990), + [anon_sym_BSLASHAcrfull] = ACTIONS(11990), + [anon_sym_BSLASHACRfull] = ACTIONS(11990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11990), + [anon_sym_BSLASHacs] = ACTIONS(11990), + [anon_sym_BSLASHAcs] = ACTIONS(11990), + [anon_sym_BSLASHacsp] = ACTIONS(11990), + [anon_sym_BSLASHAcsp] = ACTIONS(11990), + [anon_sym_BSLASHacl] = ACTIONS(11990), + [anon_sym_BSLASHAcl] = ACTIONS(11990), + [anon_sym_BSLASHaclp] = ACTIONS(11990), + [anon_sym_BSLASHAclp] = ACTIONS(11990), + [anon_sym_BSLASHacf] = ACTIONS(11990), + [anon_sym_BSLASHAcf] = ACTIONS(11990), + [anon_sym_BSLASHacfp] = ACTIONS(11990), + [anon_sym_BSLASHAcfp] = ACTIONS(11990), + [anon_sym_BSLASHac] = ACTIONS(11990), + [anon_sym_BSLASHAc] = ACTIONS(11990), + [anon_sym_BSLASHacp] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11990), + [anon_sym_BSLASHcolor] = ACTIONS(11990), + [anon_sym_BSLASHcolorbox] = ACTIONS(11990), + [anon_sym_BSLASHtextcolor] = ACTIONS(11990), + [anon_sym_BSLASHpagecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11990), + }, + [481] = { + [sym_brace_group] = STATE(2809), + [ts_builtin_sym_end] = ACTIONS(12052), + [sym_generic_command_name] = ACTIONS(12054), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12054), + [aux_sym_chapter_token1] = ACTIONS(12054), + [aux_sym_section_token1] = ACTIONS(12054), + [aux_sym_subsection_token1] = ACTIONS(12054), + [aux_sym_subsubsection_token1] = ACTIONS(12054), + [aux_sym_paragraph_token1] = ACTIONS(12054), + [aux_sym_subparagraph_token1] = ACTIONS(12054), + [anon_sym_BSLASHitem] = ACTIONS(12054), + [anon_sym_LBRACK] = ACTIONS(12052), + [anon_sym_RBRACK] = ACTIONS(12052), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12052), + [anon_sym_LPAREN] = ACTIONS(12052), + [anon_sym_RPAREN] = ACTIONS(12052), + [anon_sym_COMMA] = ACTIONS(12052), + [anon_sym_EQ] = ACTIONS(12052), + [sym_word] = ACTIONS(12052), + [sym_param] = ACTIONS(12052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12052), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12052), + [anon_sym_DOLLAR] = ACTIONS(12054), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12052), + [anon_sym_BSLASHbegin] = ACTIONS(12054), + [anon_sym_BSLASHcaption] = ACTIONS(12054), + [anon_sym_BSLASHcite] = ACTIONS(12054), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCite] = ACTIONS(12054), + [anon_sym_BSLASHnocite] = ACTIONS(12054), + [anon_sym_BSLASHcitet] = ACTIONS(12054), + [anon_sym_BSLASHcitep] = ACTIONS(12054), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteauthor] = ACTIONS(12054), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12054), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitetitle] = ACTIONS(12054), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteyear] = ACTIONS(12054), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitedate] = ACTIONS(12054), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteurl] = ACTIONS(12054), + [anon_sym_BSLASHfullcite] = ACTIONS(12054), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12054), + [anon_sym_BSLASHcitealt] = ACTIONS(12054), + [anon_sym_BSLASHcitealp] = ACTIONS(12054), + [anon_sym_BSLASHcitetext] = ACTIONS(12054), + [anon_sym_BSLASHparencite] = ACTIONS(12054), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHParencite] = ACTIONS(12054), + [anon_sym_BSLASHfootcite] = ACTIONS(12054), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12054), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12054), + [anon_sym_BSLASHtextcite] = ACTIONS(12054), + [anon_sym_BSLASHTextcite] = ACTIONS(12054), + [anon_sym_BSLASHsmartcite] = ACTIONS(12054), + [anon_sym_BSLASHSmartcite] = ACTIONS(12054), + [anon_sym_BSLASHsupercite] = ACTIONS(12054), + [anon_sym_BSLASHautocite] = ACTIONS(12054), + [anon_sym_BSLASHAutocite] = ACTIONS(12054), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHvolcite] = ACTIONS(12054), + [anon_sym_BSLASHVolcite] = ACTIONS(12054), + [anon_sym_BSLASHpvolcite] = ACTIONS(12054), + [anon_sym_BSLASHPvolcite] = ACTIONS(12054), + [anon_sym_BSLASHfvolcite] = ACTIONS(12054), + [anon_sym_BSLASHftvolcite] = ACTIONS(12054), + [anon_sym_BSLASHsvolcite] = ACTIONS(12054), + [anon_sym_BSLASHSvolcite] = ACTIONS(12054), + [anon_sym_BSLASHtvolcite] = ACTIONS(12054), + [anon_sym_BSLASHTvolcite] = ACTIONS(12054), + [anon_sym_BSLASHavolcite] = ACTIONS(12054), + [anon_sym_BSLASHAvolcite] = ACTIONS(12054), + [anon_sym_BSLASHnotecite] = ACTIONS(12054), + [anon_sym_BSLASHpnotecite] = ACTIONS(12054), + [anon_sym_BSLASHPnotecite] = ACTIONS(12054), + [anon_sym_BSLASHfnotecite] = ACTIONS(12054), + [anon_sym_BSLASHusepackage] = ACTIONS(12054), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12054), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12054), + [anon_sym_BSLASHinclude] = ACTIONS(12054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12054), + [anon_sym_BSLASHinput] = ACTIONS(12054), + [anon_sym_BSLASHsubfile] = ACTIONS(12054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12054), + [anon_sym_BSLASHbibliography] = ACTIONS(12054), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12054), + [anon_sym_BSLASHincludesvg] = ACTIONS(12054), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12054), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12054), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12054), + [anon_sym_BSLASHimport] = ACTIONS(12054), + [anon_sym_BSLASHsubimport] = ACTIONS(12054), + [anon_sym_BSLASHinputfrom] = ACTIONS(12054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12054), + [anon_sym_BSLASHincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHlabel] = ACTIONS(12054), + [anon_sym_BSLASHref] = ACTIONS(12054), + [anon_sym_BSLASHvref] = ACTIONS(12054), + [anon_sym_BSLASHVref] = ACTIONS(12054), + [anon_sym_BSLASHautoref] = ACTIONS(12054), + [anon_sym_BSLASHpageref] = ACTIONS(12054), + [anon_sym_BSLASHcref] = ACTIONS(12054), + [anon_sym_BSLASHCref] = ACTIONS(12054), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnameCref] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHlabelcref] = ACTIONS(12054), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12054), + [anon_sym_BSLASHeqref] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange] = ACTIONS(12054), + [anon_sym_BSLASHCrefrange] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewlabel] = ACTIONS(12054), + [anon_sym_BSLASHnewcommand] = ACTIONS(12054), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12054), + [anon_sym_BSLASHgls] = ACTIONS(12054), + [anon_sym_BSLASHGls] = ACTIONS(12054), + [anon_sym_BSLASHGLS] = ACTIONS(12054), + [anon_sym_BSLASHglspl] = ACTIONS(12054), + [anon_sym_BSLASHGlspl] = ACTIONS(12054), + [anon_sym_BSLASHGLSpl] = ACTIONS(12054), + [anon_sym_BSLASHglsdisp] = ACTIONS(12054), + [anon_sym_BSLASHglslink] = ACTIONS(12054), + [anon_sym_BSLASHglstext] = ACTIONS(12054), + [anon_sym_BSLASHGlstext] = ACTIONS(12054), + [anon_sym_BSLASHGLStext] = ACTIONS(12054), + [anon_sym_BSLASHglsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12054), + [anon_sym_BSLASHglsplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSplural] = ACTIONS(12054), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHglsname] = ACTIONS(12054), + [anon_sym_BSLASHGlsname] = ACTIONS(12054), + [anon_sym_BSLASHGLSname] = ACTIONS(12054), + [anon_sym_BSLASHglssymbol] = ACTIONS(12054), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12054), + [anon_sym_BSLASHglsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12054), + [anon_sym_BSLASHglsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12054), + [anon_sym_BSLASHglsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12054), + [anon_sym_BSLASHglsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12054), + [anon_sym_BSLASHglsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12054), + [anon_sym_BSLASHnewacronym] = ACTIONS(12054), + [anon_sym_BSLASHacrshort] = ACTIONS(12054), + [anon_sym_BSLASHAcrshort] = ACTIONS(12054), + [anon_sym_BSLASHACRshort] = ACTIONS(12054), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12054), + [anon_sym_BSLASHacrlong] = ACTIONS(12054), + [anon_sym_BSLASHAcrlong] = ACTIONS(12054), + [anon_sym_BSLASHACRlong] = ACTIONS(12054), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12054), + [anon_sym_BSLASHacrfull] = ACTIONS(12054), + [anon_sym_BSLASHAcrfull] = ACTIONS(12054), + [anon_sym_BSLASHACRfull] = ACTIONS(12054), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12054), + [anon_sym_BSLASHacs] = ACTIONS(12054), + [anon_sym_BSLASHAcs] = ACTIONS(12054), + [anon_sym_BSLASHacsp] = ACTIONS(12054), + [anon_sym_BSLASHAcsp] = ACTIONS(12054), + [anon_sym_BSLASHacl] = ACTIONS(12054), + [anon_sym_BSLASHAcl] = ACTIONS(12054), + [anon_sym_BSLASHaclp] = ACTIONS(12054), + [anon_sym_BSLASHAclp] = ACTIONS(12054), + [anon_sym_BSLASHacf] = ACTIONS(12054), + [anon_sym_BSLASHAcf] = ACTIONS(12054), + [anon_sym_BSLASHacfp] = ACTIONS(12054), + [anon_sym_BSLASHAcfp] = ACTIONS(12054), + [anon_sym_BSLASHac] = ACTIONS(12054), + [anon_sym_BSLASHAc] = ACTIONS(12054), + [anon_sym_BSLASHacp] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12054), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12054), + [anon_sym_BSLASHcolor] = ACTIONS(12054), + [anon_sym_BSLASHcolorbox] = ACTIONS(12054), + [anon_sym_BSLASHtextcolor] = ACTIONS(12054), + [anon_sym_BSLASHpagecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12054), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12054), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12054), + }, + [482] = { + [sym_brace_group] = STATE(3375), + [ts_builtin_sym_end] = ACTIONS(12056), + [sym_generic_command_name] = ACTIONS(12058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12058), + [aux_sym_chapter_token1] = ACTIONS(12058), + [aux_sym_section_token1] = ACTIONS(12058), + [aux_sym_subsection_token1] = ACTIONS(12058), + [aux_sym_subsubsection_token1] = ACTIONS(12058), + [aux_sym_paragraph_token1] = ACTIONS(12058), + [aux_sym_subparagraph_token1] = ACTIONS(12058), + [anon_sym_BSLASHitem] = ACTIONS(12058), + [anon_sym_LBRACK] = ACTIONS(12056), + [anon_sym_RBRACK] = ACTIONS(12056), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12056), + [anon_sym_LPAREN] = ACTIONS(12056), + [anon_sym_RPAREN] = ACTIONS(12056), + [anon_sym_COMMA] = ACTIONS(12056), + [anon_sym_EQ] = ACTIONS(12056), + [sym_word] = ACTIONS(12056), + [sym_param] = ACTIONS(12056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12056), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12056), + [anon_sym_DOLLAR] = ACTIONS(12058), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12056), + [anon_sym_BSLASHbegin] = ACTIONS(12058), + [anon_sym_BSLASHcaption] = ACTIONS(12058), + [anon_sym_BSLASHcite] = ACTIONS(12058), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCite] = ACTIONS(12058), + [anon_sym_BSLASHnocite] = ACTIONS(12058), + [anon_sym_BSLASHcitet] = ACTIONS(12058), + [anon_sym_BSLASHcitep] = ACTIONS(12058), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteauthor] = ACTIONS(12058), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12058), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitetitle] = ACTIONS(12058), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteyear] = ACTIONS(12058), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitedate] = ACTIONS(12058), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteurl] = ACTIONS(12058), + [anon_sym_BSLASHfullcite] = ACTIONS(12058), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12058), + [anon_sym_BSLASHcitealt] = ACTIONS(12058), + [anon_sym_BSLASHcitealp] = ACTIONS(12058), + [anon_sym_BSLASHcitetext] = ACTIONS(12058), + [anon_sym_BSLASHparencite] = ACTIONS(12058), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHParencite] = ACTIONS(12058), + [anon_sym_BSLASHfootcite] = ACTIONS(12058), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12058), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12058), + [anon_sym_BSLASHtextcite] = ACTIONS(12058), + [anon_sym_BSLASHTextcite] = ACTIONS(12058), + [anon_sym_BSLASHsmartcite] = ACTIONS(12058), + [anon_sym_BSLASHSmartcite] = ACTIONS(12058), + [anon_sym_BSLASHsupercite] = ACTIONS(12058), + [anon_sym_BSLASHautocite] = ACTIONS(12058), + [anon_sym_BSLASHAutocite] = ACTIONS(12058), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHvolcite] = ACTIONS(12058), + [anon_sym_BSLASHVolcite] = ACTIONS(12058), + [anon_sym_BSLASHpvolcite] = ACTIONS(12058), + [anon_sym_BSLASHPvolcite] = ACTIONS(12058), + [anon_sym_BSLASHfvolcite] = ACTIONS(12058), + [anon_sym_BSLASHftvolcite] = ACTIONS(12058), + [anon_sym_BSLASHsvolcite] = ACTIONS(12058), + [anon_sym_BSLASHSvolcite] = ACTIONS(12058), + [anon_sym_BSLASHtvolcite] = ACTIONS(12058), + [anon_sym_BSLASHTvolcite] = ACTIONS(12058), + [anon_sym_BSLASHavolcite] = ACTIONS(12058), + [anon_sym_BSLASHAvolcite] = ACTIONS(12058), + [anon_sym_BSLASHnotecite] = ACTIONS(12058), + [anon_sym_BSLASHpnotecite] = ACTIONS(12058), + [anon_sym_BSLASHPnotecite] = ACTIONS(12058), + [anon_sym_BSLASHfnotecite] = ACTIONS(12058), + [anon_sym_BSLASHusepackage] = ACTIONS(12058), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12058), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12058), + [anon_sym_BSLASHinclude] = ACTIONS(12058), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12058), + [anon_sym_BSLASHinput] = ACTIONS(12058), + [anon_sym_BSLASHsubfile] = ACTIONS(12058), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12058), + [anon_sym_BSLASHbibliography] = ACTIONS(12058), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12058), + [anon_sym_BSLASHincludesvg] = ACTIONS(12058), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12058), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12058), + [anon_sym_BSLASHimport] = ACTIONS(12058), + [anon_sym_BSLASHsubimport] = ACTIONS(12058), + [anon_sym_BSLASHinputfrom] = ACTIONS(12058), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12058), + [anon_sym_BSLASHincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHlabel] = ACTIONS(12058), + [anon_sym_BSLASHref] = ACTIONS(12058), + [anon_sym_BSLASHvref] = ACTIONS(12058), + [anon_sym_BSLASHVref] = ACTIONS(12058), + [anon_sym_BSLASHautoref] = ACTIONS(12058), + [anon_sym_BSLASHpageref] = ACTIONS(12058), + [anon_sym_BSLASHcref] = ACTIONS(12058), + [anon_sym_BSLASHCref] = ACTIONS(12058), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnameCref] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHlabelcref] = ACTIONS(12058), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12058), + [anon_sym_BSLASHeqref] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange] = ACTIONS(12058), + [anon_sym_BSLASHCrefrange] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewlabel] = ACTIONS(12058), + [anon_sym_BSLASHnewcommand] = ACTIONS(12058), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12058), + [anon_sym_BSLASHgls] = ACTIONS(12058), + [anon_sym_BSLASHGls] = ACTIONS(12058), + [anon_sym_BSLASHGLS] = ACTIONS(12058), + [anon_sym_BSLASHglspl] = ACTIONS(12058), + [anon_sym_BSLASHGlspl] = ACTIONS(12058), + [anon_sym_BSLASHGLSpl] = ACTIONS(12058), + [anon_sym_BSLASHglsdisp] = ACTIONS(12058), + [anon_sym_BSLASHglslink] = ACTIONS(12058), + [anon_sym_BSLASHglstext] = ACTIONS(12058), + [anon_sym_BSLASHGlstext] = ACTIONS(12058), + [anon_sym_BSLASHGLStext] = ACTIONS(12058), + [anon_sym_BSLASHglsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12058), + [anon_sym_BSLASHglsplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSplural] = ACTIONS(12058), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHglsname] = ACTIONS(12058), + [anon_sym_BSLASHGlsname] = ACTIONS(12058), + [anon_sym_BSLASHGLSname] = ACTIONS(12058), + [anon_sym_BSLASHglssymbol] = ACTIONS(12058), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12058), + [anon_sym_BSLASHglsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12058), + [anon_sym_BSLASHglsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12058), + [anon_sym_BSLASHglsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12058), + [anon_sym_BSLASHglsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12058), + [anon_sym_BSLASHglsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12058), + [anon_sym_BSLASHnewacronym] = ACTIONS(12058), + [anon_sym_BSLASHacrshort] = ACTIONS(12058), + [anon_sym_BSLASHAcrshort] = ACTIONS(12058), + [anon_sym_BSLASHACRshort] = ACTIONS(12058), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12058), + [anon_sym_BSLASHacrlong] = ACTIONS(12058), + [anon_sym_BSLASHAcrlong] = ACTIONS(12058), + [anon_sym_BSLASHACRlong] = ACTIONS(12058), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12058), + [anon_sym_BSLASHacrfull] = ACTIONS(12058), + [anon_sym_BSLASHAcrfull] = ACTIONS(12058), + [anon_sym_BSLASHACRfull] = ACTIONS(12058), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12058), + [anon_sym_BSLASHacs] = ACTIONS(12058), + [anon_sym_BSLASHAcs] = ACTIONS(12058), + [anon_sym_BSLASHacsp] = ACTIONS(12058), + [anon_sym_BSLASHAcsp] = ACTIONS(12058), + [anon_sym_BSLASHacl] = ACTIONS(12058), + [anon_sym_BSLASHAcl] = ACTIONS(12058), + [anon_sym_BSLASHaclp] = ACTIONS(12058), + [anon_sym_BSLASHAclp] = ACTIONS(12058), + [anon_sym_BSLASHacf] = ACTIONS(12058), + [anon_sym_BSLASHAcf] = ACTIONS(12058), + [anon_sym_BSLASHacfp] = ACTIONS(12058), + [anon_sym_BSLASHAcfp] = ACTIONS(12058), + [anon_sym_BSLASHac] = ACTIONS(12058), + [anon_sym_BSLASHAc] = ACTIONS(12058), + [anon_sym_BSLASHacp] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12058), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12058), + [anon_sym_BSLASHcolor] = ACTIONS(12058), + [anon_sym_BSLASHcolorbox] = ACTIONS(12058), + [anon_sym_BSLASHtextcolor] = ACTIONS(12058), + [anon_sym_BSLASHpagecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12058), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12058), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12058), + }, + [483] = { + [sym_brace_group] = STATE(483), + [sym_bracket_group] = STATE(483), + [sym_paren_group] = STATE(483), + [aux_sym_generic_command_repeat1] = STATE(483), + [sym_generic_command_name] = ACTIONS(12002), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12002), + [aux_sym_chapter_token1] = ACTIONS(12002), + [aux_sym_section_token1] = ACTIONS(12002), + [aux_sym_subsection_token1] = ACTIONS(12002), + [aux_sym_subsubsection_token1] = ACTIONS(12002), + [aux_sym_paragraph_token1] = ACTIONS(12002), + [aux_sym_subparagraph_token1] = ACTIONS(12002), + [anon_sym_BSLASHitem] = ACTIONS(12002), + [anon_sym_LBRACK] = ACTIONS(12060), + [anon_sym_LBRACE] = ACTIONS(12063), + [anon_sym_LPAREN] = ACTIONS(12066), + [anon_sym_COMMA] = ACTIONS(12000), + [anon_sym_EQ] = ACTIONS(12000), + [sym_word] = ACTIONS(12000), + [sym_param] = ACTIONS(12000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12000), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12000), + [anon_sym_DOLLAR] = ACTIONS(12002), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12000), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12000), + [anon_sym_BSLASHbegin] = ACTIONS(12002), + [anon_sym_BSLASHcaption] = ACTIONS(12002), + [anon_sym_BSLASHcite] = ACTIONS(12002), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCite] = ACTIONS(12002), + [anon_sym_BSLASHnocite] = ACTIONS(12002), + [anon_sym_BSLASHcitet] = ACTIONS(12002), + [anon_sym_BSLASHcitep] = ACTIONS(12002), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteauthor] = ACTIONS(12002), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12002), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitetitle] = ACTIONS(12002), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteyear] = ACTIONS(12002), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitedate] = ACTIONS(12002), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteurl] = ACTIONS(12002), + [anon_sym_BSLASHfullcite] = ACTIONS(12002), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12002), + [anon_sym_BSLASHcitealt] = ACTIONS(12002), + [anon_sym_BSLASHcitealp] = ACTIONS(12002), + [anon_sym_BSLASHcitetext] = ACTIONS(12002), + [anon_sym_BSLASHparencite] = ACTIONS(12002), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHParencite] = ACTIONS(12002), + [anon_sym_BSLASHfootcite] = ACTIONS(12002), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12002), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12002), + [anon_sym_BSLASHtextcite] = ACTIONS(12002), + [anon_sym_BSLASHTextcite] = ACTIONS(12002), + [anon_sym_BSLASHsmartcite] = ACTIONS(12002), + [anon_sym_BSLASHSmartcite] = ACTIONS(12002), + [anon_sym_BSLASHsupercite] = ACTIONS(12002), + [anon_sym_BSLASHautocite] = ACTIONS(12002), + [anon_sym_BSLASHAutocite] = ACTIONS(12002), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHvolcite] = ACTIONS(12002), + [anon_sym_BSLASHVolcite] = ACTIONS(12002), + [anon_sym_BSLASHpvolcite] = ACTIONS(12002), + [anon_sym_BSLASHPvolcite] = ACTIONS(12002), + [anon_sym_BSLASHfvolcite] = ACTIONS(12002), + [anon_sym_BSLASHftvolcite] = ACTIONS(12002), + [anon_sym_BSLASHsvolcite] = ACTIONS(12002), + [anon_sym_BSLASHSvolcite] = ACTIONS(12002), + [anon_sym_BSLASHtvolcite] = ACTIONS(12002), + [anon_sym_BSLASHTvolcite] = ACTIONS(12002), + [anon_sym_BSLASHavolcite] = ACTIONS(12002), + [anon_sym_BSLASHAvolcite] = ACTIONS(12002), + [anon_sym_BSLASHnotecite] = ACTIONS(12002), + [anon_sym_BSLASHpnotecite] = ACTIONS(12002), + [anon_sym_BSLASHPnotecite] = ACTIONS(12002), + [anon_sym_BSLASHfnotecite] = ACTIONS(12002), + [anon_sym_BSLASHusepackage] = ACTIONS(12002), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12002), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12002), + [anon_sym_BSLASHinclude] = ACTIONS(12002), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12002), + [anon_sym_BSLASHinput] = ACTIONS(12002), + [anon_sym_BSLASHsubfile] = ACTIONS(12002), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12002), + [anon_sym_BSLASHbibliography] = ACTIONS(12002), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12002), + [anon_sym_BSLASHincludesvg] = ACTIONS(12002), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12002), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12002), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12002), + [anon_sym_BSLASHimport] = ACTIONS(12002), + [anon_sym_BSLASHsubimport] = ACTIONS(12002), + [anon_sym_BSLASHinputfrom] = ACTIONS(12002), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12002), + [anon_sym_BSLASHincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHlabel] = ACTIONS(12002), + [anon_sym_BSLASHref] = ACTIONS(12002), + [anon_sym_BSLASHvref] = ACTIONS(12002), + [anon_sym_BSLASHVref] = ACTIONS(12002), + [anon_sym_BSLASHautoref] = ACTIONS(12002), + [anon_sym_BSLASHpageref] = ACTIONS(12002), + [anon_sym_BSLASHcref] = ACTIONS(12002), + [anon_sym_BSLASHCref] = ACTIONS(12002), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnameCref] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHlabelcref] = ACTIONS(12002), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12002), + [anon_sym_BSLASHeqref] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange] = ACTIONS(12002), + [anon_sym_BSLASHCrefrange] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewlabel] = ACTIONS(12002), + [anon_sym_BSLASHnewcommand] = ACTIONS(12002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12002), + [anon_sym_BSLASHgls] = ACTIONS(12002), + [anon_sym_BSLASHGls] = ACTIONS(12002), + [anon_sym_BSLASHGLS] = ACTIONS(12002), + [anon_sym_BSLASHglspl] = ACTIONS(12002), + [anon_sym_BSLASHGlspl] = ACTIONS(12002), + [anon_sym_BSLASHGLSpl] = ACTIONS(12002), + [anon_sym_BSLASHglsdisp] = ACTIONS(12002), + [anon_sym_BSLASHglslink] = ACTIONS(12002), + [anon_sym_BSLASHglstext] = ACTIONS(12002), + [anon_sym_BSLASHGlstext] = ACTIONS(12002), + [anon_sym_BSLASHGLStext] = ACTIONS(12002), + [anon_sym_BSLASHglsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12002), + [anon_sym_BSLASHglsplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSplural] = ACTIONS(12002), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHglsname] = ACTIONS(12002), + [anon_sym_BSLASHGlsname] = ACTIONS(12002), + [anon_sym_BSLASHGLSname] = ACTIONS(12002), + [anon_sym_BSLASHglssymbol] = ACTIONS(12002), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12002), + [anon_sym_BSLASHglsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12002), + [anon_sym_BSLASHglsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12002), + [anon_sym_BSLASHglsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12002), + [anon_sym_BSLASHglsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12002), + [anon_sym_BSLASHglsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12002), + [anon_sym_BSLASHnewacronym] = ACTIONS(12002), + [anon_sym_BSLASHacrshort] = ACTIONS(12002), + [anon_sym_BSLASHAcrshort] = ACTIONS(12002), + [anon_sym_BSLASHACRshort] = ACTIONS(12002), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12002), + [anon_sym_BSLASHacrlong] = ACTIONS(12002), + [anon_sym_BSLASHAcrlong] = ACTIONS(12002), + [anon_sym_BSLASHACRlong] = ACTIONS(12002), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12002), + [anon_sym_BSLASHacrfull] = ACTIONS(12002), + [anon_sym_BSLASHAcrfull] = ACTIONS(12002), + [anon_sym_BSLASHACRfull] = ACTIONS(12002), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12002), + [anon_sym_BSLASHacs] = ACTIONS(12002), + [anon_sym_BSLASHAcs] = ACTIONS(12002), + [anon_sym_BSLASHacsp] = ACTIONS(12002), + [anon_sym_BSLASHAcsp] = ACTIONS(12002), + [anon_sym_BSLASHacl] = ACTIONS(12002), + [anon_sym_BSLASHAcl] = ACTIONS(12002), + [anon_sym_BSLASHaclp] = ACTIONS(12002), + [anon_sym_BSLASHAclp] = ACTIONS(12002), + [anon_sym_BSLASHacf] = ACTIONS(12002), + [anon_sym_BSLASHAcf] = ACTIONS(12002), + [anon_sym_BSLASHacfp] = ACTIONS(12002), + [anon_sym_BSLASHAcfp] = ACTIONS(12002), + [anon_sym_BSLASHac] = ACTIONS(12002), + [anon_sym_BSLASHAc] = ACTIONS(12002), + [anon_sym_BSLASHacp] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12002), + [anon_sym_BSLASHcolor] = ACTIONS(12002), + [anon_sym_BSLASHcolorbox] = ACTIONS(12002), + [anon_sym_BSLASHtextcolor] = ACTIONS(12002), + [anon_sym_BSLASHpagecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12002), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12002), + }, + [484] = { + [sym_brace_group] = STATE(484), + [sym_bracket_group] = STATE(484), + [sym_paren_group] = STATE(484), + [aux_sym_generic_command_repeat1] = STATE(484), + [sym_generic_command_name] = ACTIONS(12002), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12002), + [aux_sym_chapter_token1] = ACTIONS(12002), + [aux_sym_section_token1] = ACTIONS(12002), + [aux_sym_subsection_token1] = ACTIONS(12002), + [aux_sym_subsubsection_token1] = ACTIONS(12002), + [aux_sym_paragraph_token1] = ACTIONS(12002), + [aux_sym_subparagraph_token1] = ACTIONS(12002), + [anon_sym_BSLASHitem] = ACTIONS(12002), + [anon_sym_LBRACK] = ACTIONS(12069), + [anon_sym_LBRACE] = ACTIONS(12072), + [anon_sym_LPAREN] = ACTIONS(12075), + [anon_sym_COMMA] = ACTIONS(12000), + [anon_sym_EQ] = ACTIONS(12000), + [sym_word] = ACTIONS(12000), + [sym_param] = ACTIONS(12000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12000), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12000), + [anon_sym_DOLLAR] = ACTIONS(12002), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12000), + [anon_sym_BSLASHbegin] = ACTIONS(12002), + [anon_sym_BSLASHend] = ACTIONS(12002), + [anon_sym_BSLASHcaption] = ACTIONS(12002), + [anon_sym_BSLASHcite] = ACTIONS(12002), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCite] = ACTIONS(12002), + [anon_sym_BSLASHnocite] = ACTIONS(12002), + [anon_sym_BSLASHcitet] = ACTIONS(12002), + [anon_sym_BSLASHcitep] = ACTIONS(12002), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteauthor] = ACTIONS(12002), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12002), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitetitle] = ACTIONS(12002), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteyear] = ACTIONS(12002), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitedate] = ACTIONS(12002), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteurl] = ACTIONS(12002), + [anon_sym_BSLASHfullcite] = ACTIONS(12002), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12002), + [anon_sym_BSLASHcitealt] = ACTIONS(12002), + [anon_sym_BSLASHcitealp] = ACTIONS(12002), + [anon_sym_BSLASHcitetext] = ACTIONS(12002), + [anon_sym_BSLASHparencite] = ACTIONS(12002), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHParencite] = ACTIONS(12002), + [anon_sym_BSLASHfootcite] = ACTIONS(12002), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12002), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12002), + [anon_sym_BSLASHtextcite] = ACTIONS(12002), + [anon_sym_BSLASHTextcite] = ACTIONS(12002), + [anon_sym_BSLASHsmartcite] = ACTIONS(12002), + [anon_sym_BSLASHSmartcite] = ACTIONS(12002), + [anon_sym_BSLASHsupercite] = ACTIONS(12002), + [anon_sym_BSLASHautocite] = ACTIONS(12002), + [anon_sym_BSLASHAutocite] = ACTIONS(12002), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHvolcite] = ACTIONS(12002), + [anon_sym_BSLASHVolcite] = ACTIONS(12002), + [anon_sym_BSLASHpvolcite] = ACTIONS(12002), + [anon_sym_BSLASHPvolcite] = ACTIONS(12002), + [anon_sym_BSLASHfvolcite] = ACTIONS(12002), + [anon_sym_BSLASHftvolcite] = ACTIONS(12002), + [anon_sym_BSLASHsvolcite] = ACTIONS(12002), + [anon_sym_BSLASHSvolcite] = ACTIONS(12002), + [anon_sym_BSLASHtvolcite] = ACTIONS(12002), + [anon_sym_BSLASHTvolcite] = ACTIONS(12002), + [anon_sym_BSLASHavolcite] = ACTIONS(12002), + [anon_sym_BSLASHAvolcite] = ACTIONS(12002), + [anon_sym_BSLASHnotecite] = ACTIONS(12002), + [anon_sym_BSLASHpnotecite] = ACTIONS(12002), + [anon_sym_BSLASHPnotecite] = ACTIONS(12002), + [anon_sym_BSLASHfnotecite] = ACTIONS(12002), + [anon_sym_BSLASHusepackage] = ACTIONS(12002), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12002), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12002), + [anon_sym_BSLASHinclude] = ACTIONS(12002), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12002), + [anon_sym_BSLASHinput] = ACTIONS(12002), + [anon_sym_BSLASHsubfile] = ACTIONS(12002), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12002), + [anon_sym_BSLASHbibliography] = ACTIONS(12002), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12002), + [anon_sym_BSLASHincludesvg] = ACTIONS(12002), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12002), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12002), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12002), + [anon_sym_BSLASHimport] = ACTIONS(12002), + [anon_sym_BSLASHsubimport] = ACTIONS(12002), + [anon_sym_BSLASHinputfrom] = ACTIONS(12002), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12002), + [anon_sym_BSLASHincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHlabel] = ACTIONS(12002), + [anon_sym_BSLASHref] = ACTIONS(12002), + [anon_sym_BSLASHvref] = ACTIONS(12002), + [anon_sym_BSLASHVref] = ACTIONS(12002), + [anon_sym_BSLASHautoref] = ACTIONS(12002), + [anon_sym_BSLASHpageref] = ACTIONS(12002), + [anon_sym_BSLASHcref] = ACTIONS(12002), + [anon_sym_BSLASHCref] = ACTIONS(12002), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnameCref] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHlabelcref] = ACTIONS(12002), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12002), + [anon_sym_BSLASHeqref] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange] = ACTIONS(12002), + [anon_sym_BSLASHCrefrange] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewlabel] = ACTIONS(12002), + [anon_sym_BSLASHnewcommand] = ACTIONS(12002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12002), + [anon_sym_BSLASHgls] = ACTIONS(12002), + [anon_sym_BSLASHGls] = ACTIONS(12002), + [anon_sym_BSLASHGLS] = ACTIONS(12002), + [anon_sym_BSLASHglspl] = ACTIONS(12002), + [anon_sym_BSLASHGlspl] = ACTIONS(12002), + [anon_sym_BSLASHGLSpl] = ACTIONS(12002), + [anon_sym_BSLASHglsdisp] = ACTIONS(12002), + [anon_sym_BSLASHglslink] = ACTIONS(12002), + [anon_sym_BSLASHglstext] = ACTIONS(12002), + [anon_sym_BSLASHGlstext] = ACTIONS(12002), + [anon_sym_BSLASHGLStext] = ACTIONS(12002), + [anon_sym_BSLASHglsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12002), + [anon_sym_BSLASHglsplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSplural] = ACTIONS(12002), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHglsname] = ACTIONS(12002), + [anon_sym_BSLASHGlsname] = ACTIONS(12002), + [anon_sym_BSLASHGLSname] = ACTIONS(12002), + [anon_sym_BSLASHglssymbol] = ACTIONS(12002), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12002), + [anon_sym_BSLASHglsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12002), + [anon_sym_BSLASHglsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12002), + [anon_sym_BSLASHglsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12002), + [anon_sym_BSLASHglsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12002), + [anon_sym_BSLASHglsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12002), + [anon_sym_BSLASHnewacronym] = ACTIONS(12002), + [anon_sym_BSLASHacrshort] = ACTIONS(12002), + [anon_sym_BSLASHAcrshort] = ACTIONS(12002), + [anon_sym_BSLASHACRshort] = ACTIONS(12002), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12002), + [anon_sym_BSLASHacrlong] = ACTIONS(12002), + [anon_sym_BSLASHAcrlong] = ACTIONS(12002), + [anon_sym_BSLASHACRlong] = ACTIONS(12002), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12002), + [anon_sym_BSLASHacrfull] = ACTIONS(12002), + [anon_sym_BSLASHAcrfull] = ACTIONS(12002), + [anon_sym_BSLASHACRfull] = ACTIONS(12002), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12002), + [anon_sym_BSLASHacs] = ACTIONS(12002), + [anon_sym_BSLASHAcs] = ACTIONS(12002), + [anon_sym_BSLASHacsp] = ACTIONS(12002), + [anon_sym_BSLASHAcsp] = ACTIONS(12002), + [anon_sym_BSLASHacl] = ACTIONS(12002), + [anon_sym_BSLASHAcl] = ACTIONS(12002), + [anon_sym_BSLASHaclp] = ACTIONS(12002), + [anon_sym_BSLASHAclp] = ACTIONS(12002), + [anon_sym_BSLASHacf] = ACTIONS(12002), + [anon_sym_BSLASHAcf] = ACTIONS(12002), + [anon_sym_BSLASHacfp] = ACTIONS(12002), + [anon_sym_BSLASHAcfp] = ACTIONS(12002), + [anon_sym_BSLASHac] = ACTIONS(12002), + [anon_sym_BSLASHAc] = ACTIONS(12002), + [anon_sym_BSLASHacp] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12002), + [anon_sym_BSLASHcolor] = ACTIONS(12002), + [anon_sym_BSLASHcolorbox] = ACTIONS(12002), + [anon_sym_BSLASHtextcolor] = ACTIONS(12002), + [anon_sym_BSLASHpagecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12002), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12002), + }, + [485] = { + [sym_brace_group] = STATE(487), + [sym_bracket_group] = STATE(487), + [sym_paren_group] = STATE(487), + [aux_sym_generic_command_repeat1] = STATE(487), + [sym_generic_command_name] = ACTIONS(11990), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(11990), + [aux_sym_section_token1] = ACTIONS(11990), + [aux_sym_subsection_token1] = ACTIONS(11990), + [aux_sym_subsubsection_token1] = ACTIONS(11990), + [aux_sym_paragraph_token1] = ACTIONS(11990), + [aux_sym_subparagraph_token1] = ACTIONS(11990), + [anon_sym_BSLASHitem] = ACTIONS(11990), + [anon_sym_LBRACK] = ACTIONS(12078), + [anon_sym_RBRACK] = ACTIONS(11988), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(11988), + [anon_sym_LPAREN] = ACTIONS(12080), + [anon_sym_COMMA] = ACTIONS(11988), + [anon_sym_EQ] = ACTIONS(11988), + [sym_word] = ACTIONS(11988), + [sym_param] = ACTIONS(11988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11988), + [anon_sym_DOLLAR] = ACTIONS(11990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11988), + [anon_sym_BSLASHbegin] = ACTIONS(11990), + [anon_sym_BSLASHcaption] = ACTIONS(11990), + [anon_sym_BSLASHcite] = ACTIONS(11990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCite] = ACTIONS(11990), + [anon_sym_BSLASHnocite] = ACTIONS(11990), + [anon_sym_BSLASHcitet] = ACTIONS(11990), + [anon_sym_BSLASHcitep] = ACTIONS(11990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteauthor] = ACTIONS(11990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitetitle] = ACTIONS(11990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteyear] = ACTIONS(11990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitedate] = ACTIONS(11990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteurl] = ACTIONS(11990), + [anon_sym_BSLASHfullcite] = ACTIONS(11990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11990), + [anon_sym_BSLASHcitealt] = ACTIONS(11990), + [anon_sym_BSLASHcitealp] = ACTIONS(11990), + [anon_sym_BSLASHcitetext] = ACTIONS(11990), + [anon_sym_BSLASHparencite] = ACTIONS(11990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHParencite] = ACTIONS(11990), + [anon_sym_BSLASHfootcite] = ACTIONS(11990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11990), + [anon_sym_BSLASHtextcite] = ACTIONS(11990), + [anon_sym_BSLASHTextcite] = ACTIONS(11990), + [anon_sym_BSLASHsmartcite] = ACTIONS(11990), + [anon_sym_BSLASHSmartcite] = ACTIONS(11990), + [anon_sym_BSLASHsupercite] = ACTIONS(11990), + [anon_sym_BSLASHautocite] = ACTIONS(11990), + [anon_sym_BSLASHAutocite] = ACTIONS(11990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHvolcite] = ACTIONS(11990), + [anon_sym_BSLASHVolcite] = ACTIONS(11990), + [anon_sym_BSLASHpvolcite] = ACTIONS(11990), + [anon_sym_BSLASHPvolcite] = ACTIONS(11990), + [anon_sym_BSLASHfvolcite] = ACTIONS(11990), + [anon_sym_BSLASHftvolcite] = ACTIONS(11990), + [anon_sym_BSLASHsvolcite] = ACTIONS(11990), + [anon_sym_BSLASHSvolcite] = ACTIONS(11990), + [anon_sym_BSLASHtvolcite] = ACTIONS(11990), + [anon_sym_BSLASHTvolcite] = ACTIONS(11990), + [anon_sym_BSLASHavolcite] = ACTIONS(11990), + [anon_sym_BSLASHAvolcite] = ACTIONS(11990), + [anon_sym_BSLASHnotecite] = ACTIONS(11990), + [anon_sym_BSLASHpnotecite] = ACTIONS(11990), + [anon_sym_BSLASHPnotecite] = ACTIONS(11990), + [anon_sym_BSLASHfnotecite] = ACTIONS(11990), + [anon_sym_BSLASHusepackage] = ACTIONS(11990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11990), + [anon_sym_BSLASHinclude] = ACTIONS(11990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11990), + [anon_sym_BSLASHinput] = ACTIONS(11990), + [anon_sym_BSLASHsubfile] = ACTIONS(11990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11990), + [anon_sym_BSLASHbibliography] = ACTIONS(11990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11990), + [anon_sym_BSLASHincludesvg] = ACTIONS(11990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11990), + [anon_sym_BSLASHimport] = ACTIONS(11990), + [anon_sym_BSLASHsubimport] = ACTIONS(11990), + [anon_sym_BSLASHinputfrom] = ACTIONS(11990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11990), + [anon_sym_BSLASHincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHlabel] = ACTIONS(11990), + [anon_sym_BSLASHref] = ACTIONS(11990), + [anon_sym_BSLASHvref] = ACTIONS(11990), + [anon_sym_BSLASHVref] = ACTIONS(11990), + [anon_sym_BSLASHautoref] = ACTIONS(11990), + [anon_sym_BSLASHpageref] = ACTIONS(11990), + [anon_sym_BSLASHcref] = ACTIONS(11990), + [anon_sym_BSLASHCref] = ACTIONS(11990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnameCref] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHlabelcref] = ACTIONS(11990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11990), + [anon_sym_BSLASHeqref] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange] = ACTIONS(11990), + [anon_sym_BSLASHCrefrange] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewlabel] = ACTIONS(11990), + [anon_sym_BSLASHnewcommand] = ACTIONS(11990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11990), + [anon_sym_BSLASHgls] = ACTIONS(11990), + [anon_sym_BSLASHGls] = ACTIONS(11990), + [anon_sym_BSLASHGLS] = ACTIONS(11990), + [anon_sym_BSLASHglspl] = ACTIONS(11990), + [anon_sym_BSLASHGlspl] = ACTIONS(11990), + [anon_sym_BSLASHGLSpl] = ACTIONS(11990), + [anon_sym_BSLASHglsdisp] = ACTIONS(11990), + [anon_sym_BSLASHglslink] = ACTIONS(11990), + [anon_sym_BSLASHglstext] = ACTIONS(11990), + [anon_sym_BSLASHGlstext] = ACTIONS(11990), + [anon_sym_BSLASHGLStext] = ACTIONS(11990), + [anon_sym_BSLASHglsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11990), + [anon_sym_BSLASHglsplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSplural] = ACTIONS(11990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHglsname] = ACTIONS(11990), + [anon_sym_BSLASHGlsname] = ACTIONS(11990), + [anon_sym_BSLASHGLSname] = ACTIONS(11990), + [anon_sym_BSLASHglssymbol] = ACTIONS(11990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11990), + [anon_sym_BSLASHglsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11990), + [anon_sym_BSLASHglsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11990), + [anon_sym_BSLASHglsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11990), + [anon_sym_BSLASHglsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11990), + [anon_sym_BSLASHglsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11990), + [anon_sym_BSLASHnewacronym] = ACTIONS(11990), + [anon_sym_BSLASHacrshort] = ACTIONS(11990), + [anon_sym_BSLASHAcrshort] = ACTIONS(11990), + [anon_sym_BSLASHACRshort] = ACTIONS(11990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11990), + [anon_sym_BSLASHacrlong] = ACTIONS(11990), + [anon_sym_BSLASHAcrlong] = ACTIONS(11990), + [anon_sym_BSLASHACRlong] = ACTIONS(11990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11990), + [anon_sym_BSLASHacrfull] = ACTIONS(11990), + [anon_sym_BSLASHAcrfull] = ACTIONS(11990), + [anon_sym_BSLASHACRfull] = ACTIONS(11990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11990), + [anon_sym_BSLASHacs] = ACTIONS(11990), + [anon_sym_BSLASHAcs] = ACTIONS(11990), + [anon_sym_BSLASHacsp] = ACTIONS(11990), + [anon_sym_BSLASHAcsp] = ACTIONS(11990), + [anon_sym_BSLASHacl] = ACTIONS(11990), + [anon_sym_BSLASHAcl] = ACTIONS(11990), + [anon_sym_BSLASHaclp] = ACTIONS(11990), + [anon_sym_BSLASHAclp] = ACTIONS(11990), + [anon_sym_BSLASHacf] = ACTIONS(11990), + [anon_sym_BSLASHAcf] = ACTIONS(11990), + [anon_sym_BSLASHacfp] = ACTIONS(11990), + [anon_sym_BSLASHAcfp] = ACTIONS(11990), + [anon_sym_BSLASHac] = ACTIONS(11990), + [anon_sym_BSLASHAc] = ACTIONS(11990), + [anon_sym_BSLASHacp] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11990), + [anon_sym_BSLASHcolor] = ACTIONS(11990), + [anon_sym_BSLASHcolorbox] = ACTIONS(11990), + [anon_sym_BSLASHtextcolor] = ACTIONS(11990), + [anon_sym_BSLASHpagecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11990), + }, + [486] = { + [sym_brace_group] = STATE(484), + [sym_bracket_group] = STATE(484), + [sym_paren_group] = STATE(484), + [aux_sym_generic_command_repeat1] = STATE(484), + [sym_generic_command_name] = ACTIONS(11998), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(11998), + [aux_sym_chapter_token1] = ACTIONS(11998), + [aux_sym_section_token1] = ACTIONS(11998), + [aux_sym_subsection_token1] = ACTIONS(11998), + [aux_sym_subsubsection_token1] = ACTIONS(11998), + [aux_sym_paragraph_token1] = ACTIONS(11998), + [aux_sym_subparagraph_token1] = ACTIONS(11998), + [anon_sym_BSLASHitem] = ACTIONS(11998), + [anon_sym_LBRACK] = ACTIONS(12082), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(12084), + [anon_sym_COMMA] = ACTIONS(11996), + [anon_sym_EQ] = ACTIONS(11996), + [sym_word] = ACTIONS(11996), + [sym_param] = ACTIONS(11996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11996), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11996), + [anon_sym_DOLLAR] = ACTIONS(11998), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11996), + [anon_sym_BSLASHbegin] = ACTIONS(11998), + [anon_sym_BSLASHend] = ACTIONS(11998), + [anon_sym_BSLASHcaption] = ACTIONS(11998), + [anon_sym_BSLASHcite] = ACTIONS(11998), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCite] = ACTIONS(11998), + [anon_sym_BSLASHnocite] = ACTIONS(11998), + [anon_sym_BSLASHcitet] = ACTIONS(11998), + [anon_sym_BSLASHcitep] = ACTIONS(11998), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteauthor] = ACTIONS(11998), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11998), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitetitle] = ACTIONS(11998), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteyear] = ACTIONS(11998), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitedate] = ACTIONS(11998), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteurl] = ACTIONS(11998), + [anon_sym_BSLASHfullcite] = ACTIONS(11998), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11998), + [anon_sym_BSLASHcitealt] = ACTIONS(11998), + [anon_sym_BSLASHcitealp] = ACTIONS(11998), + [anon_sym_BSLASHcitetext] = ACTIONS(11998), + [anon_sym_BSLASHparencite] = ACTIONS(11998), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHParencite] = ACTIONS(11998), + [anon_sym_BSLASHfootcite] = ACTIONS(11998), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11998), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11998), + [anon_sym_BSLASHtextcite] = ACTIONS(11998), + [anon_sym_BSLASHTextcite] = ACTIONS(11998), + [anon_sym_BSLASHsmartcite] = ACTIONS(11998), + [anon_sym_BSLASHSmartcite] = ACTIONS(11998), + [anon_sym_BSLASHsupercite] = ACTIONS(11998), + [anon_sym_BSLASHautocite] = ACTIONS(11998), + [anon_sym_BSLASHAutocite] = ACTIONS(11998), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHvolcite] = ACTIONS(11998), + [anon_sym_BSLASHVolcite] = ACTIONS(11998), + [anon_sym_BSLASHpvolcite] = ACTIONS(11998), + [anon_sym_BSLASHPvolcite] = ACTIONS(11998), + [anon_sym_BSLASHfvolcite] = ACTIONS(11998), + [anon_sym_BSLASHftvolcite] = ACTIONS(11998), + [anon_sym_BSLASHsvolcite] = ACTIONS(11998), + [anon_sym_BSLASHSvolcite] = ACTIONS(11998), + [anon_sym_BSLASHtvolcite] = ACTIONS(11998), + [anon_sym_BSLASHTvolcite] = ACTIONS(11998), + [anon_sym_BSLASHavolcite] = ACTIONS(11998), + [anon_sym_BSLASHAvolcite] = ACTIONS(11998), + [anon_sym_BSLASHnotecite] = ACTIONS(11998), + [anon_sym_BSLASHpnotecite] = ACTIONS(11998), + [anon_sym_BSLASHPnotecite] = ACTIONS(11998), + [anon_sym_BSLASHfnotecite] = ACTIONS(11998), + [anon_sym_BSLASHusepackage] = ACTIONS(11998), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11998), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11998), + [anon_sym_BSLASHinclude] = ACTIONS(11998), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11998), + [anon_sym_BSLASHinput] = ACTIONS(11998), + [anon_sym_BSLASHsubfile] = ACTIONS(11998), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11998), + [anon_sym_BSLASHbibliography] = ACTIONS(11998), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11998), + [anon_sym_BSLASHincludesvg] = ACTIONS(11998), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11998), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11998), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11998), + [anon_sym_BSLASHimport] = ACTIONS(11998), + [anon_sym_BSLASHsubimport] = ACTIONS(11998), + [anon_sym_BSLASHinputfrom] = ACTIONS(11998), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11998), + [anon_sym_BSLASHincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHlabel] = ACTIONS(11998), + [anon_sym_BSLASHref] = ACTIONS(11998), + [anon_sym_BSLASHvref] = ACTIONS(11998), + [anon_sym_BSLASHVref] = ACTIONS(11998), + [anon_sym_BSLASHautoref] = ACTIONS(11998), + [anon_sym_BSLASHpageref] = ACTIONS(11998), + [anon_sym_BSLASHcref] = ACTIONS(11998), + [anon_sym_BSLASHCref] = ACTIONS(11998), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnameCref] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHlabelcref] = ACTIONS(11998), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11998), + [anon_sym_BSLASHeqref] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange] = ACTIONS(11998), + [anon_sym_BSLASHCrefrange] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewlabel] = ACTIONS(11998), + [anon_sym_BSLASHnewcommand] = ACTIONS(11998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11998), + [anon_sym_BSLASHgls] = ACTIONS(11998), + [anon_sym_BSLASHGls] = ACTIONS(11998), + [anon_sym_BSLASHGLS] = ACTIONS(11998), + [anon_sym_BSLASHglspl] = ACTIONS(11998), + [anon_sym_BSLASHGlspl] = ACTIONS(11998), + [anon_sym_BSLASHGLSpl] = ACTIONS(11998), + [anon_sym_BSLASHglsdisp] = ACTIONS(11998), + [anon_sym_BSLASHglslink] = ACTIONS(11998), + [anon_sym_BSLASHglstext] = ACTIONS(11998), + [anon_sym_BSLASHGlstext] = ACTIONS(11998), + [anon_sym_BSLASHGLStext] = ACTIONS(11998), + [anon_sym_BSLASHglsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11998), + [anon_sym_BSLASHglsplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSplural] = ACTIONS(11998), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHglsname] = ACTIONS(11998), + [anon_sym_BSLASHGlsname] = ACTIONS(11998), + [anon_sym_BSLASHGLSname] = ACTIONS(11998), + [anon_sym_BSLASHglssymbol] = ACTIONS(11998), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11998), + [anon_sym_BSLASHglsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11998), + [anon_sym_BSLASHglsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11998), + [anon_sym_BSLASHglsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11998), + [anon_sym_BSLASHglsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11998), + [anon_sym_BSLASHglsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11998), + [anon_sym_BSLASHnewacronym] = ACTIONS(11998), + [anon_sym_BSLASHacrshort] = ACTIONS(11998), + [anon_sym_BSLASHAcrshort] = ACTIONS(11998), + [anon_sym_BSLASHACRshort] = ACTIONS(11998), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11998), + [anon_sym_BSLASHacrlong] = ACTIONS(11998), + [anon_sym_BSLASHAcrlong] = ACTIONS(11998), + [anon_sym_BSLASHACRlong] = ACTIONS(11998), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11998), + [anon_sym_BSLASHacrfull] = ACTIONS(11998), + [anon_sym_BSLASHAcrfull] = ACTIONS(11998), + [anon_sym_BSLASHACRfull] = ACTIONS(11998), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11998), + [anon_sym_BSLASHacs] = ACTIONS(11998), + [anon_sym_BSLASHAcs] = ACTIONS(11998), + [anon_sym_BSLASHacsp] = ACTIONS(11998), + [anon_sym_BSLASHAcsp] = ACTIONS(11998), + [anon_sym_BSLASHacl] = ACTIONS(11998), + [anon_sym_BSLASHAcl] = ACTIONS(11998), + [anon_sym_BSLASHaclp] = ACTIONS(11998), + [anon_sym_BSLASHAclp] = ACTIONS(11998), + [anon_sym_BSLASHacf] = ACTIONS(11998), + [anon_sym_BSLASHAcf] = ACTIONS(11998), + [anon_sym_BSLASHacfp] = ACTIONS(11998), + [anon_sym_BSLASHAcfp] = ACTIONS(11998), + [anon_sym_BSLASHac] = ACTIONS(11998), + [anon_sym_BSLASHAc] = ACTIONS(11998), + [anon_sym_BSLASHacp] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11998), + [anon_sym_BSLASHcolor] = ACTIONS(11998), + [anon_sym_BSLASHcolorbox] = ACTIONS(11998), + [anon_sym_BSLASHtextcolor] = ACTIONS(11998), + [anon_sym_BSLASHpagecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11998), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11998), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11998), + }, + [487] = { + [sym_brace_group] = STATE(478), + [sym_bracket_group] = STATE(478), + [sym_paren_group] = STATE(478), + [aux_sym_generic_command_repeat1] = STATE(478), + [sym_generic_command_name] = ACTIONS(11998), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(11998), + [aux_sym_section_token1] = ACTIONS(11998), + [aux_sym_subsection_token1] = ACTIONS(11998), + [aux_sym_subsubsection_token1] = ACTIONS(11998), + [aux_sym_paragraph_token1] = ACTIONS(11998), + [aux_sym_subparagraph_token1] = ACTIONS(11998), + [anon_sym_BSLASHitem] = ACTIONS(11998), + [anon_sym_LBRACK] = ACTIONS(12078), + [anon_sym_RBRACK] = ACTIONS(11996), + [anon_sym_LBRACE] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(11996), + [anon_sym_LPAREN] = ACTIONS(12080), + [anon_sym_COMMA] = ACTIONS(11996), + [anon_sym_EQ] = ACTIONS(11996), + [sym_word] = ACTIONS(11996), + [sym_param] = ACTIONS(11996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11996), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11996), + [anon_sym_DOLLAR] = ACTIONS(11998), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11996), + [anon_sym_BSLASHbegin] = ACTIONS(11998), + [anon_sym_BSLASHcaption] = ACTIONS(11998), + [anon_sym_BSLASHcite] = ACTIONS(11998), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCite] = ACTIONS(11998), + [anon_sym_BSLASHnocite] = ACTIONS(11998), + [anon_sym_BSLASHcitet] = ACTIONS(11998), + [anon_sym_BSLASHcitep] = ACTIONS(11998), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteauthor] = ACTIONS(11998), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11998), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitetitle] = ACTIONS(11998), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteyear] = ACTIONS(11998), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitedate] = ACTIONS(11998), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteurl] = ACTIONS(11998), + [anon_sym_BSLASHfullcite] = ACTIONS(11998), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11998), + [anon_sym_BSLASHcitealt] = ACTIONS(11998), + [anon_sym_BSLASHcitealp] = ACTIONS(11998), + [anon_sym_BSLASHcitetext] = ACTIONS(11998), + [anon_sym_BSLASHparencite] = ACTIONS(11998), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHParencite] = ACTIONS(11998), + [anon_sym_BSLASHfootcite] = ACTIONS(11998), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11998), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11998), + [anon_sym_BSLASHtextcite] = ACTIONS(11998), + [anon_sym_BSLASHTextcite] = ACTIONS(11998), + [anon_sym_BSLASHsmartcite] = ACTIONS(11998), + [anon_sym_BSLASHSmartcite] = ACTIONS(11998), + [anon_sym_BSLASHsupercite] = ACTIONS(11998), + [anon_sym_BSLASHautocite] = ACTIONS(11998), + [anon_sym_BSLASHAutocite] = ACTIONS(11998), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHvolcite] = ACTIONS(11998), + [anon_sym_BSLASHVolcite] = ACTIONS(11998), + [anon_sym_BSLASHpvolcite] = ACTIONS(11998), + [anon_sym_BSLASHPvolcite] = ACTIONS(11998), + [anon_sym_BSLASHfvolcite] = ACTIONS(11998), + [anon_sym_BSLASHftvolcite] = ACTIONS(11998), + [anon_sym_BSLASHsvolcite] = ACTIONS(11998), + [anon_sym_BSLASHSvolcite] = ACTIONS(11998), + [anon_sym_BSLASHtvolcite] = ACTIONS(11998), + [anon_sym_BSLASHTvolcite] = ACTIONS(11998), + [anon_sym_BSLASHavolcite] = ACTIONS(11998), + [anon_sym_BSLASHAvolcite] = ACTIONS(11998), + [anon_sym_BSLASHnotecite] = ACTIONS(11998), + [anon_sym_BSLASHpnotecite] = ACTIONS(11998), + [anon_sym_BSLASHPnotecite] = ACTIONS(11998), + [anon_sym_BSLASHfnotecite] = ACTIONS(11998), + [anon_sym_BSLASHusepackage] = ACTIONS(11998), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11998), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11998), + [anon_sym_BSLASHinclude] = ACTIONS(11998), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11998), + [anon_sym_BSLASHinput] = ACTIONS(11998), + [anon_sym_BSLASHsubfile] = ACTIONS(11998), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11998), + [anon_sym_BSLASHbibliography] = ACTIONS(11998), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11998), + [anon_sym_BSLASHincludesvg] = ACTIONS(11998), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11998), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11998), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11998), + [anon_sym_BSLASHimport] = ACTIONS(11998), + [anon_sym_BSLASHsubimport] = ACTIONS(11998), + [anon_sym_BSLASHinputfrom] = ACTIONS(11998), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11998), + [anon_sym_BSLASHincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHlabel] = ACTIONS(11998), + [anon_sym_BSLASHref] = ACTIONS(11998), + [anon_sym_BSLASHvref] = ACTIONS(11998), + [anon_sym_BSLASHVref] = ACTIONS(11998), + [anon_sym_BSLASHautoref] = ACTIONS(11998), + [anon_sym_BSLASHpageref] = ACTIONS(11998), + [anon_sym_BSLASHcref] = ACTIONS(11998), + [anon_sym_BSLASHCref] = ACTIONS(11998), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnameCref] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHlabelcref] = ACTIONS(11998), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11998), + [anon_sym_BSLASHeqref] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange] = ACTIONS(11998), + [anon_sym_BSLASHCrefrange] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewlabel] = ACTIONS(11998), + [anon_sym_BSLASHnewcommand] = ACTIONS(11998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11998), + [anon_sym_BSLASHgls] = ACTIONS(11998), + [anon_sym_BSLASHGls] = ACTIONS(11998), + [anon_sym_BSLASHGLS] = ACTIONS(11998), + [anon_sym_BSLASHglspl] = ACTIONS(11998), + [anon_sym_BSLASHGlspl] = ACTIONS(11998), + [anon_sym_BSLASHGLSpl] = ACTIONS(11998), + [anon_sym_BSLASHglsdisp] = ACTIONS(11998), + [anon_sym_BSLASHglslink] = ACTIONS(11998), + [anon_sym_BSLASHglstext] = ACTIONS(11998), + [anon_sym_BSLASHGlstext] = ACTIONS(11998), + [anon_sym_BSLASHGLStext] = ACTIONS(11998), + [anon_sym_BSLASHglsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11998), + [anon_sym_BSLASHglsplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSplural] = ACTIONS(11998), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHglsname] = ACTIONS(11998), + [anon_sym_BSLASHGlsname] = ACTIONS(11998), + [anon_sym_BSLASHGLSname] = ACTIONS(11998), + [anon_sym_BSLASHglssymbol] = ACTIONS(11998), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11998), + [anon_sym_BSLASHglsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11998), + [anon_sym_BSLASHglsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11998), + [anon_sym_BSLASHglsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11998), + [anon_sym_BSLASHglsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11998), + [anon_sym_BSLASHglsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11998), + [anon_sym_BSLASHnewacronym] = ACTIONS(11998), + [anon_sym_BSLASHacrshort] = ACTIONS(11998), + [anon_sym_BSLASHAcrshort] = ACTIONS(11998), + [anon_sym_BSLASHACRshort] = ACTIONS(11998), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11998), + [anon_sym_BSLASHacrlong] = ACTIONS(11998), + [anon_sym_BSLASHAcrlong] = ACTIONS(11998), + [anon_sym_BSLASHACRlong] = ACTIONS(11998), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11998), + [anon_sym_BSLASHacrfull] = ACTIONS(11998), + [anon_sym_BSLASHAcrfull] = ACTIONS(11998), + [anon_sym_BSLASHACRfull] = ACTIONS(11998), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11998), + [anon_sym_BSLASHacs] = ACTIONS(11998), + [anon_sym_BSLASHAcs] = ACTIONS(11998), + [anon_sym_BSLASHacsp] = ACTIONS(11998), + [anon_sym_BSLASHAcsp] = ACTIONS(11998), + [anon_sym_BSLASHacl] = ACTIONS(11998), + [anon_sym_BSLASHAcl] = ACTIONS(11998), + [anon_sym_BSLASHaclp] = ACTIONS(11998), + [anon_sym_BSLASHAclp] = ACTIONS(11998), + [anon_sym_BSLASHacf] = ACTIONS(11998), + [anon_sym_BSLASHAcf] = ACTIONS(11998), + [anon_sym_BSLASHacfp] = ACTIONS(11998), + [anon_sym_BSLASHAcfp] = ACTIONS(11998), + [anon_sym_BSLASHac] = ACTIONS(11998), + [anon_sym_BSLASHAc] = ACTIONS(11998), + [anon_sym_BSLASHacp] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11998), + [anon_sym_BSLASHcolor] = ACTIONS(11998), + [anon_sym_BSLASHcolorbox] = ACTIONS(11998), + [anon_sym_BSLASHtextcolor] = ACTIONS(11998), + [anon_sym_BSLASHpagecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11998), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11998), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11998), + }, + [488] = { + [sym_brace_group] = STATE(2820), + [ts_builtin_sym_end] = ACTIONS(12086), + [sym_generic_command_name] = ACTIONS(12088), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12088), + [aux_sym_chapter_token1] = ACTIONS(12088), + [aux_sym_section_token1] = ACTIONS(12088), + [aux_sym_subsection_token1] = ACTIONS(12088), + [aux_sym_subsubsection_token1] = ACTIONS(12088), + [aux_sym_paragraph_token1] = ACTIONS(12088), + [aux_sym_subparagraph_token1] = ACTIONS(12088), + [anon_sym_BSLASHitem] = ACTIONS(12088), + [anon_sym_LBRACK] = ACTIONS(12086), + [anon_sym_RBRACK] = ACTIONS(12086), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12086), + [anon_sym_LPAREN] = ACTIONS(12086), + [anon_sym_RPAREN] = ACTIONS(12086), + [anon_sym_COMMA] = ACTIONS(12086), + [anon_sym_EQ] = ACTIONS(12086), + [sym_word] = ACTIONS(12086), + [sym_param] = ACTIONS(12086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12086), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12086), + [anon_sym_DOLLAR] = ACTIONS(12088), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12086), + [anon_sym_BSLASHbegin] = ACTIONS(12088), + [anon_sym_BSLASHcaption] = ACTIONS(12088), + [anon_sym_BSLASHcite] = ACTIONS(12088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCite] = ACTIONS(12088), + [anon_sym_BSLASHnocite] = ACTIONS(12088), + [anon_sym_BSLASHcitet] = ACTIONS(12088), + [anon_sym_BSLASHcitep] = ACTIONS(12088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteauthor] = ACTIONS(12088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitetitle] = ACTIONS(12088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteyear] = ACTIONS(12088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitedate] = ACTIONS(12088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteurl] = ACTIONS(12088), + [anon_sym_BSLASHfullcite] = ACTIONS(12088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12088), + [anon_sym_BSLASHcitealt] = ACTIONS(12088), + [anon_sym_BSLASHcitealp] = ACTIONS(12088), + [anon_sym_BSLASHcitetext] = ACTIONS(12088), + [anon_sym_BSLASHparencite] = ACTIONS(12088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHParencite] = ACTIONS(12088), + [anon_sym_BSLASHfootcite] = ACTIONS(12088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12088), + [anon_sym_BSLASHtextcite] = ACTIONS(12088), + [anon_sym_BSLASHTextcite] = ACTIONS(12088), + [anon_sym_BSLASHsmartcite] = ACTIONS(12088), + [anon_sym_BSLASHSmartcite] = ACTIONS(12088), + [anon_sym_BSLASHsupercite] = ACTIONS(12088), + [anon_sym_BSLASHautocite] = ACTIONS(12088), + [anon_sym_BSLASHAutocite] = ACTIONS(12088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHvolcite] = ACTIONS(12088), + [anon_sym_BSLASHVolcite] = ACTIONS(12088), + [anon_sym_BSLASHpvolcite] = ACTIONS(12088), + [anon_sym_BSLASHPvolcite] = ACTIONS(12088), + [anon_sym_BSLASHfvolcite] = ACTIONS(12088), + [anon_sym_BSLASHftvolcite] = ACTIONS(12088), + [anon_sym_BSLASHsvolcite] = ACTIONS(12088), + [anon_sym_BSLASHSvolcite] = ACTIONS(12088), + [anon_sym_BSLASHtvolcite] = ACTIONS(12088), + [anon_sym_BSLASHTvolcite] = ACTIONS(12088), + [anon_sym_BSLASHavolcite] = ACTIONS(12088), + [anon_sym_BSLASHAvolcite] = ACTIONS(12088), + [anon_sym_BSLASHnotecite] = ACTIONS(12088), + [anon_sym_BSLASHpnotecite] = ACTIONS(12088), + [anon_sym_BSLASHPnotecite] = ACTIONS(12088), + [anon_sym_BSLASHfnotecite] = ACTIONS(12088), + [anon_sym_BSLASHusepackage] = ACTIONS(12088), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12088), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12088), + [anon_sym_BSLASHinclude] = ACTIONS(12088), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12088), + [anon_sym_BSLASHinput] = ACTIONS(12088), + [anon_sym_BSLASHsubfile] = ACTIONS(12088), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12088), + [anon_sym_BSLASHbibliography] = ACTIONS(12088), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12088), + [anon_sym_BSLASHincludesvg] = ACTIONS(12088), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12088), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12088), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12088), + [anon_sym_BSLASHimport] = ACTIONS(12088), + [anon_sym_BSLASHsubimport] = ACTIONS(12088), + [anon_sym_BSLASHinputfrom] = ACTIONS(12088), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12088), + [anon_sym_BSLASHincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHlabel] = ACTIONS(12088), + [anon_sym_BSLASHref] = ACTIONS(12088), + [anon_sym_BSLASHvref] = ACTIONS(12088), + [anon_sym_BSLASHVref] = ACTIONS(12088), + [anon_sym_BSLASHautoref] = ACTIONS(12088), + [anon_sym_BSLASHpageref] = ACTIONS(12088), + [anon_sym_BSLASHcref] = ACTIONS(12088), + [anon_sym_BSLASHCref] = ACTIONS(12088), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnameCref] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHlabelcref] = ACTIONS(12088), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12088), + [anon_sym_BSLASHeqref] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange] = ACTIONS(12088), + [anon_sym_BSLASHCrefrange] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewlabel] = ACTIONS(12088), + [anon_sym_BSLASHnewcommand] = ACTIONS(12088), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12088), + [anon_sym_BSLASHgls] = ACTIONS(12088), + [anon_sym_BSLASHGls] = ACTIONS(12088), + [anon_sym_BSLASHGLS] = ACTIONS(12088), + [anon_sym_BSLASHglspl] = ACTIONS(12088), + [anon_sym_BSLASHGlspl] = ACTIONS(12088), + [anon_sym_BSLASHGLSpl] = ACTIONS(12088), + [anon_sym_BSLASHglsdisp] = ACTIONS(12088), + [anon_sym_BSLASHglslink] = ACTIONS(12088), + [anon_sym_BSLASHglstext] = ACTIONS(12088), + [anon_sym_BSLASHGlstext] = ACTIONS(12088), + [anon_sym_BSLASHGLStext] = ACTIONS(12088), + [anon_sym_BSLASHglsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12088), + [anon_sym_BSLASHglsplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSplural] = ACTIONS(12088), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHglsname] = ACTIONS(12088), + [anon_sym_BSLASHGlsname] = ACTIONS(12088), + [anon_sym_BSLASHGLSname] = ACTIONS(12088), + [anon_sym_BSLASHglssymbol] = ACTIONS(12088), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12088), + [anon_sym_BSLASHglsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12088), + [anon_sym_BSLASHglsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12088), + [anon_sym_BSLASHglsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12088), + [anon_sym_BSLASHglsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12088), + [anon_sym_BSLASHglsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12088), + [anon_sym_BSLASHnewacronym] = ACTIONS(12088), + [anon_sym_BSLASHacrshort] = ACTIONS(12088), + [anon_sym_BSLASHAcrshort] = ACTIONS(12088), + [anon_sym_BSLASHACRshort] = ACTIONS(12088), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12088), + [anon_sym_BSLASHacrlong] = ACTIONS(12088), + [anon_sym_BSLASHAcrlong] = ACTIONS(12088), + [anon_sym_BSLASHACRlong] = ACTIONS(12088), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12088), + [anon_sym_BSLASHacrfull] = ACTIONS(12088), + [anon_sym_BSLASHAcrfull] = ACTIONS(12088), + [anon_sym_BSLASHACRfull] = ACTIONS(12088), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12088), + [anon_sym_BSLASHacs] = ACTIONS(12088), + [anon_sym_BSLASHAcs] = ACTIONS(12088), + [anon_sym_BSLASHacsp] = ACTIONS(12088), + [anon_sym_BSLASHAcsp] = ACTIONS(12088), + [anon_sym_BSLASHacl] = ACTIONS(12088), + [anon_sym_BSLASHAcl] = ACTIONS(12088), + [anon_sym_BSLASHaclp] = ACTIONS(12088), + [anon_sym_BSLASHAclp] = ACTIONS(12088), + [anon_sym_BSLASHacf] = ACTIONS(12088), + [anon_sym_BSLASHAcf] = ACTIONS(12088), + [anon_sym_BSLASHacfp] = ACTIONS(12088), + [anon_sym_BSLASHAcfp] = ACTIONS(12088), + [anon_sym_BSLASHac] = ACTIONS(12088), + [anon_sym_BSLASHAc] = ACTIONS(12088), + [anon_sym_BSLASHacp] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12088), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12088), + [anon_sym_BSLASHcolor] = ACTIONS(12088), + [anon_sym_BSLASHcolorbox] = ACTIONS(12088), + [anon_sym_BSLASHtextcolor] = ACTIONS(12088), + [anon_sym_BSLASHpagecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12088), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12088), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12088), + }, + [489] = { + [sym_brace_group] = STATE(2823), + [ts_builtin_sym_end] = ACTIONS(12090), + [sym_generic_command_name] = ACTIONS(12092), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12092), + [aux_sym_chapter_token1] = ACTIONS(12092), + [aux_sym_section_token1] = ACTIONS(12092), + [aux_sym_subsection_token1] = ACTIONS(12092), + [aux_sym_subsubsection_token1] = ACTIONS(12092), + [aux_sym_paragraph_token1] = ACTIONS(12092), + [aux_sym_subparagraph_token1] = ACTIONS(12092), + [anon_sym_BSLASHitem] = ACTIONS(12092), + [anon_sym_LBRACK] = ACTIONS(12090), + [anon_sym_RBRACK] = ACTIONS(12090), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12090), + [anon_sym_LPAREN] = ACTIONS(12090), + [anon_sym_RPAREN] = ACTIONS(12090), + [anon_sym_COMMA] = ACTIONS(12090), + [anon_sym_EQ] = ACTIONS(12090), + [sym_word] = ACTIONS(12090), + [sym_param] = ACTIONS(12090), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12090), + [anon_sym_DOLLAR] = ACTIONS(12092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12090), + [anon_sym_BSLASHbegin] = ACTIONS(12092), + [anon_sym_BSLASHcaption] = ACTIONS(12092), + [anon_sym_BSLASHcite] = ACTIONS(12092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCite] = ACTIONS(12092), + [anon_sym_BSLASHnocite] = ACTIONS(12092), + [anon_sym_BSLASHcitet] = ACTIONS(12092), + [anon_sym_BSLASHcitep] = ACTIONS(12092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteauthor] = ACTIONS(12092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitetitle] = ACTIONS(12092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteyear] = ACTIONS(12092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitedate] = ACTIONS(12092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteurl] = ACTIONS(12092), + [anon_sym_BSLASHfullcite] = ACTIONS(12092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12092), + [anon_sym_BSLASHcitealt] = ACTIONS(12092), + [anon_sym_BSLASHcitealp] = ACTIONS(12092), + [anon_sym_BSLASHcitetext] = ACTIONS(12092), + [anon_sym_BSLASHparencite] = ACTIONS(12092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHParencite] = ACTIONS(12092), + [anon_sym_BSLASHfootcite] = ACTIONS(12092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12092), + [anon_sym_BSLASHtextcite] = ACTIONS(12092), + [anon_sym_BSLASHTextcite] = ACTIONS(12092), + [anon_sym_BSLASHsmartcite] = ACTIONS(12092), + [anon_sym_BSLASHSmartcite] = ACTIONS(12092), + [anon_sym_BSLASHsupercite] = ACTIONS(12092), + [anon_sym_BSLASHautocite] = ACTIONS(12092), + [anon_sym_BSLASHAutocite] = ACTIONS(12092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHvolcite] = ACTIONS(12092), + [anon_sym_BSLASHVolcite] = ACTIONS(12092), + [anon_sym_BSLASHpvolcite] = ACTIONS(12092), + [anon_sym_BSLASHPvolcite] = ACTIONS(12092), + [anon_sym_BSLASHfvolcite] = ACTIONS(12092), + [anon_sym_BSLASHftvolcite] = ACTIONS(12092), + [anon_sym_BSLASHsvolcite] = ACTIONS(12092), + [anon_sym_BSLASHSvolcite] = ACTIONS(12092), + [anon_sym_BSLASHtvolcite] = ACTIONS(12092), + [anon_sym_BSLASHTvolcite] = ACTIONS(12092), + [anon_sym_BSLASHavolcite] = ACTIONS(12092), + [anon_sym_BSLASHAvolcite] = ACTIONS(12092), + [anon_sym_BSLASHnotecite] = ACTIONS(12092), + [anon_sym_BSLASHpnotecite] = ACTIONS(12092), + [anon_sym_BSLASHPnotecite] = ACTIONS(12092), + [anon_sym_BSLASHfnotecite] = ACTIONS(12092), + [anon_sym_BSLASHusepackage] = ACTIONS(12092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12092), + [anon_sym_BSLASHinclude] = ACTIONS(12092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12092), + [anon_sym_BSLASHinput] = ACTIONS(12092), + [anon_sym_BSLASHsubfile] = ACTIONS(12092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12092), + [anon_sym_BSLASHbibliography] = ACTIONS(12092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12092), + [anon_sym_BSLASHincludesvg] = ACTIONS(12092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12092), + [anon_sym_BSLASHimport] = ACTIONS(12092), + [anon_sym_BSLASHsubimport] = ACTIONS(12092), + [anon_sym_BSLASHinputfrom] = ACTIONS(12092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12092), + [anon_sym_BSLASHincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHlabel] = ACTIONS(12092), + [anon_sym_BSLASHref] = ACTIONS(12092), + [anon_sym_BSLASHvref] = ACTIONS(12092), + [anon_sym_BSLASHVref] = ACTIONS(12092), + [anon_sym_BSLASHautoref] = ACTIONS(12092), + [anon_sym_BSLASHpageref] = ACTIONS(12092), + [anon_sym_BSLASHcref] = ACTIONS(12092), + [anon_sym_BSLASHCref] = ACTIONS(12092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnameCref] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHlabelcref] = ACTIONS(12092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12092), + [anon_sym_BSLASHeqref] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange] = ACTIONS(12092), + [anon_sym_BSLASHCrefrange] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewlabel] = ACTIONS(12092), + [anon_sym_BSLASHnewcommand] = ACTIONS(12092), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12092), + [anon_sym_BSLASHgls] = ACTIONS(12092), + [anon_sym_BSLASHGls] = ACTIONS(12092), + [anon_sym_BSLASHGLS] = ACTIONS(12092), + [anon_sym_BSLASHglspl] = ACTIONS(12092), + [anon_sym_BSLASHGlspl] = ACTIONS(12092), + [anon_sym_BSLASHGLSpl] = ACTIONS(12092), + [anon_sym_BSLASHglsdisp] = ACTIONS(12092), + [anon_sym_BSLASHglslink] = ACTIONS(12092), + [anon_sym_BSLASHglstext] = ACTIONS(12092), + [anon_sym_BSLASHGlstext] = ACTIONS(12092), + [anon_sym_BSLASHGLStext] = ACTIONS(12092), + [anon_sym_BSLASHglsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12092), + [anon_sym_BSLASHglsplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSplural] = ACTIONS(12092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHglsname] = ACTIONS(12092), + [anon_sym_BSLASHGlsname] = ACTIONS(12092), + [anon_sym_BSLASHGLSname] = ACTIONS(12092), + [anon_sym_BSLASHglssymbol] = ACTIONS(12092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12092), + [anon_sym_BSLASHglsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12092), + [anon_sym_BSLASHglsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12092), + [anon_sym_BSLASHglsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12092), + [anon_sym_BSLASHglsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12092), + [anon_sym_BSLASHglsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12092), + [anon_sym_BSLASHnewacronym] = ACTIONS(12092), + [anon_sym_BSLASHacrshort] = ACTIONS(12092), + [anon_sym_BSLASHAcrshort] = ACTIONS(12092), + [anon_sym_BSLASHACRshort] = ACTIONS(12092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12092), + [anon_sym_BSLASHacrlong] = ACTIONS(12092), + [anon_sym_BSLASHAcrlong] = ACTIONS(12092), + [anon_sym_BSLASHACRlong] = ACTIONS(12092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12092), + [anon_sym_BSLASHacrfull] = ACTIONS(12092), + [anon_sym_BSLASHAcrfull] = ACTIONS(12092), + [anon_sym_BSLASHACRfull] = ACTIONS(12092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12092), + [anon_sym_BSLASHacs] = ACTIONS(12092), + [anon_sym_BSLASHAcs] = ACTIONS(12092), + [anon_sym_BSLASHacsp] = ACTIONS(12092), + [anon_sym_BSLASHAcsp] = ACTIONS(12092), + [anon_sym_BSLASHacl] = ACTIONS(12092), + [anon_sym_BSLASHAcl] = ACTIONS(12092), + [anon_sym_BSLASHaclp] = ACTIONS(12092), + [anon_sym_BSLASHAclp] = ACTIONS(12092), + [anon_sym_BSLASHacf] = ACTIONS(12092), + [anon_sym_BSLASHAcf] = ACTIONS(12092), + [anon_sym_BSLASHacfp] = ACTIONS(12092), + [anon_sym_BSLASHAcfp] = ACTIONS(12092), + [anon_sym_BSLASHac] = ACTIONS(12092), + [anon_sym_BSLASHAc] = ACTIONS(12092), + [anon_sym_BSLASHacp] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12092), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12092), + [anon_sym_BSLASHcolor] = ACTIONS(12092), + [anon_sym_BSLASHcolorbox] = ACTIONS(12092), + [anon_sym_BSLASHtextcolor] = ACTIONS(12092), + [anon_sym_BSLASHpagecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12092), + }, + [490] = { + [sym_brace_group] = STATE(491), + [sym_bracket_group] = STATE(491), + [sym_paren_group] = STATE(491), + [aux_sym_generic_command_repeat1] = STATE(491), + [sym_generic_command_name] = ACTIONS(11990), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(11990), + [aux_sym_chapter_token1] = ACTIONS(11990), + [aux_sym_section_token1] = ACTIONS(11990), + [aux_sym_subsection_token1] = ACTIONS(11990), + [aux_sym_subsubsection_token1] = ACTIONS(11990), + [aux_sym_paragraph_token1] = ACTIONS(11990), + [aux_sym_subparagraph_token1] = ACTIONS(11990), + [anon_sym_BSLASHitem] = ACTIONS(11990), + [anon_sym_LBRACK] = ACTIONS(12094), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(12096), + [anon_sym_COMMA] = ACTIONS(11988), + [anon_sym_EQ] = ACTIONS(11988), + [sym_word] = ACTIONS(11988), + [sym_param] = ACTIONS(11988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11988), + [anon_sym_BSLASH_RBRACK] = ACTIONS(11988), + [anon_sym_DOLLAR] = ACTIONS(11990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11988), + [anon_sym_BSLASHbegin] = ACTIONS(11990), + [anon_sym_BSLASHcaption] = ACTIONS(11990), + [anon_sym_BSLASHcite] = ACTIONS(11990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCite] = ACTIONS(11990), + [anon_sym_BSLASHnocite] = ACTIONS(11990), + [anon_sym_BSLASHcitet] = ACTIONS(11990), + [anon_sym_BSLASHcitep] = ACTIONS(11990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteauthor] = ACTIONS(11990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitetitle] = ACTIONS(11990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteyear] = ACTIONS(11990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitedate] = ACTIONS(11990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteurl] = ACTIONS(11990), + [anon_sym_BSLASHfullcite] = ACTIONS(11990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11990), + [anon_sym_BSLASHcitealt] = ACTIONS(11990), + [anon_sym_BSLASHcitealp] = ACTIONS(11990), + [anon_sym_BSLASHcitetext] = ACTIONS(11990), + [anon_sym_BSLASHparencite] = ACTIONS(11990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHParencite] = ACTIONS(11990), + [anon_sym_BSLASHfootcite] = ACTIONS(11990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11990), + [anon_sym_BSLASHtextcite] = ACTIONS(11990), + [anon_sym_BSLASHTextcite] = ACTIONS(11990), + [anon_sym_BSLASHsmartcite] = ACTIONS(11990), + [anon_sym_BSLASHSmartcite] = ACTIONS(11990), + [anon_sym_BSLASHsupercite] = ACTIONS(11990), + [anon_sym_BSLASHautocite] = ACTIONS(11990), + [anon_sym_BSLASHAutocite] = ACTIONS(11990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHvolcite] = ACTIONS(11990), + [anon_sym_BSLASHVolcite] = ACTIONS(11990), + [anon_sym_BSLASHpvolcite] = ACTIONS(11990), + [anon_sym_BSLASHPvolcite] = ACTIONS(11990), + [anon_sym_BSLASHfvolcite] = ACTIONS(11990), + [anon_sym_BSLASHftvolcite] = ACTIONS(11990), + [anon_sym_BSLASHsvolcite] = ACTIONS(11990), + [anon_sym_BSLASHSvolcite] = ACTIONS(11990), + [anon_sym_BSLASHtvolcite] = ACTIONS(11990), + [anon_sym_BSLASHTvolcite] = ACTIONS(11990), + [anon_sym_BSLASHavolcite] = ACTIONS(11990), + [anon_sym_BSLASHAvolcite] = ACTIONS(11990), + [anon_sym_BSLASHnotecite] = ACTIONS(11990), + [anon_sym_BSLASHpnotecite] = ACTIONS(11990), + [anon_sym_BSLASHPnotecite] = ACTIONS(11990), + [anon_sym_BSLASHfnotecite] = ACTIONS(11990), + [anon_sym_BSLASHusepackage] = ACTIONS(11990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11990), + [anon_sym_BSLASHinclude] = ACTIONS(11990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11990), + [anon_sym_BSLASHinput] = ACTIONS(11990), + [anon_sym_BSLASHsubfile] = ACTIONS(11990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11990), + [anon_sym_BSLASHbibliography] = ACTIONS(11990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11990), + [anon_sym_BSLASHincludesvg] = ACTIONS(11990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11990), + [anon_sym_BSLASHimport] = ACTIONS(11990), + [anon_sym_BSLASHsubimport] = ACTIONS(11990), + [anon_sym_BSLASHinputfrom] = ACTIONS(11990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11990), + [anon_sym_BSLASHincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHlabel] = ACTIONS(11990), + [anon_sym_BSLASHref] = ACTIONS(11990), + [anon_sym_BSLASHvref] = ACTIONS(11990), + [anon_sym_BSLASHVref] = ACTIONS(11990), + [anon_sym_BSLASHautoref] = ACTIONS(11990), + [anon_sym_BSLASHpageref] = ACTIONS(11990), + [anon_sym_BSLASHcref] = ACTIONS(11990), + [anon_sym_BSLASHCref] = ACTIONS(11990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnameCref] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHlabelcref] = ACTIONS(11990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11990), + [anon_sym_BSLASHeqref] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange] = ACTIONS(11990), + [anon_sym_BSLASHCrefrange] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewlabel] = ACTIONS(11990), + [anon_sym_BSLASHnewcommand] = ACTIONS(11990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11990), + [anon_sym_BSLASHgls] = ACTIONS(11990), + [anon_sym_BSLASHGls] = ACTIONS(11990), + [anon_sym_BSLASHGLS] = ACTIONS(11990), + [anon_sym_BSLASHglspl] = ACTIONS(11990), + [anon_sym_BSLASHGlspl] = ACTIONS(11990), + [anon_sym_BSLASHGLSpl] = ACTIONS(11990), + [anon_sym_BSLASHglsdisp] = ACTIONS(11990), + [anon_sym_BSLASHglslink] = ACTIONS(11990), + [anon_sym_BSLASHglstext] = ACTIONS(11990), + [anon_sym_BSLASHGlstext] = ACTIONS(11990), + [anon_sym_BSLASHGLStext] = ACTIONS(11990), + [anon_sym_BSLASHglsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11990), + [anon_sym_BSLASHglsplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSplural] = ACTIONS(11990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHglsname] = ACTIONS(11990), + [anon_sym_BSLASHGlsname] = ACTIONS(11990), + [anon_sym_BSLASHGLSname] = ACTIONS(11990), + [anon_sym_BSLASHglssymbol] = ACTIONS(11990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11990), + [anon_sym_BSLASHglsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11990), + [anon_sym_BSLASHglsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11990), + [anon_sym_BSLASHglsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11990), + [anon_sym_BSLASHglsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11990), + [anon_sym_BSLASHglsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11990), + [anon_sym_BSLASHnewacronym] = ACTIONS(11990), + [anon_sym_BSLASHacrshort] = ACTIONS(11990), + [anon_sym_BSLASHAcrshort] = ACTIONS(11990), + [anon_sym_BSLASHACRshort] = ACTIONS(11990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11990), + [anon_sym_BSLASHacrlong] = ACTIONS(11990), + [anon_sym_BSLASHAcrlong] = ACTIONS(11990), + [anon_sym_BSLASHACRlong] = ACTIONS(11990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11990), + [anon_sym_BSLASHacrfull] = ACTIONS(11990), + [anon_sym_BSLASHAcrfull] = ACTIONS(11990), + [anon_sym_BSLASHACRfull] = ACTIONS(11990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11990), + [anon_sym_BSLASHacs] = ACTIONS(11990), + [anon_sym_BSLASHAcs] = ACTIONS(11990), + [anon_sym_BSLASHacsp] = ACTIONS(11990), + [anon_sym_BSLASHAcsp] = ACTIONS(11990), + [anon_sym_BSLASHacl] = ACTIONS(11990), + [anon_sym_BSLASHAcl] = ACTIONS(11990), + [anon_sym_BSLASHaclp] = ACTIONS(11990), + [anon_sym_BSLASHAclp] = ACTIONS(11990), + [anon_sym_BSLASHacf] = ACTIONS(11990), + [anon_sym_BSLASHAcf] = ACTIONS(11990), + [anon_sym_BSLASHacfp] = ACTIONS(11990), + [anon_sym_BSLASHAcfp] = ACTIONS(11990), + [anon_sym_BSLASHac] = ACTIONS(11990), + [anon_sym_BSLASHAc] = ACTIONS(11990), + [anon_sym_BSLASHacp] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11990), + [anon_sym_BSLASHcolor] = ACTIONS(11990), + [anon_sym_BSLASHcolorbox] = ACTIONS(11990), + [anon_sym_BSLASHtextcolor] = ACTIONS(11990), + [anon_sym_BSLASHpagecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11990), + }, + [491] = { + [sym_brace_group] = STATE(479), + [sym_bracket_group] = STATE(479), + [sym_paren_group] = STATE(479), + [aux_sym_generic_command_repeat1] = STATE(479), + [sym_generic_command_name] = ACTIONS(11998), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(11998), + [aux_sym_chapter_token1] = ACTIONS(11998), + [aux_sym_section_token1] = ACTIONS(11998), + [aux_sym_subsection_token1] = ACTIONS(11998), + [aux_sym_subsubsection_token1] = ACTIONS(11998), + [aux_sym_paragraph_token1] = ACTIONS(11998), + [aux_sym_subparagraph_token1] = ACTIONS(11998), + [anon_sym_BSLASHitem] = ACTIONS(11998), + [anon_sym_LBRACK] = ACTIONS(12094), + [anon_sym_LBRACE] = ACTIONS(304), + [anon_sym_LPAREN] = ACTIONS(12096), + [anon_sym_COMMA] = ACTIONS(11996), + [anon_sym_EQ] = ACTIONS(11996), + [sym_word] = ACTIONS(11996), + [sym_param] = ACTIONS(11996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11996), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11996), + [anon_sym_BSLASH_RBRACK] = ACTIONS(11996), + [anon_sym_DOLLAR] = ACTIONS(11998), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11996), + [anon_sym_BSLASHbegin] = ACTIONS(11998), + [anon_sym_BSLASHcaption] = ACTIONS(11998), + [anon_sym_BSLASHcite] = ACTIONS(11998), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCite] = ACTIONS(11998), + [anon_sym_BSLASHnocite] = ACTIONS(11998), + [anon_sym_BSLASHcitet] = ACTIONS(11998), + [anon_sym_BSLASHcitep] = ACTIONS(11998), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteauthor] = ACTIONS(11998), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11998), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitetitle] = ACTIONS(11998), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteyear] = ACTIONS(11998), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitedate] = ACTIONS(11998), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteurl] = ACTIONS(11998), + [anon_sym_BSLASHfullcite] = ACTIONS(11998), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11998), + [anon_sym_BSLASHcitealt] = ACTIONS(11998), + [anon_sym_BSLASHcitealp] = ACTIONS(11998), + [anon_sym_BSLASHcitetext] = ACTIONS(11998), + [anon_sym_BSLASHparencite] = ACTIONS(11998), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHParencite] = ACTIONS(11998), + [anon_sym_BSLASHfootcite] = ACTIONS(11998), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11998), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11998), + [anon_sym_BSLASHtextcite] = ACTIONS(11998), + [anon_sym_BSLASHTextcite] = ACTIONS(11998), + [anon_sym_BSLASHsmartcite] = ACTIONS(11998), + [anon_sym_BSLASHSmartcite] = ACTIONS(11998), + [anon_sym_BSLASHsupercite] = ACTIONS(11998), + [anon_sym_BSLASHautocite] = ACTIONS(11998), + [anon_sym_BSLASHAutocite] = ACTIONS(11998), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHvolcite] = ACTIONS(11998), + [anon_sym_BSLASHVolcite] = ACTIONS(11998), + [anon_sym_BSLASHpvolcite] = ACTIONS(11998), + [anon_sym_BSLASHPvolcite] = ACTIONS(11998), + [anon_sym_BSLASHfvolcite] = ACTIONS(11998), + [anon_sym_BSLASHftvolcite] = ACTIONS(11998), + [anon_sym_BSLASHsvolcite] = ACTIONS(11998), + [anon_sym_BSLASHSvolcite] = ACTIONS(11998), + [anon_sym_BSLASHtvolcite] = ACTIONS(11998), + [anon_sym_BSLASHTvolcite] = ACTIONS(11998), + [anon_sym_BSLASHavolcite] = ACTIONS(11998), + [anon_sym_BSLASHAvolcite] = ACTIONS(11998), + [anon_sym_BSLASHnotecite] = ACTIONS(11998), + [anon_sym_BSLASHpnotecite] = ACTIONS(11998), + [anon_sym_BSLASHPnotecite] = ACTIONS(11998), + [anon_sym_BSLASHfnotecite] = ACTIONS(11998), + [anon_sym_BSLASHusepackage] = ACTIONS(11998), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11998), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11998), + [anon_sym_BSLASHinclude] = ACTIONS(11998), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11998), + [anon_sym_BSLASHinput] = ACTIONS(11998), + [anon_sym_BSLASHsubfile] = ACTIONS(11998), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11998), + [anon_sym_BSLASHbibliography] = ACTIONS(11998), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11998), + [anon_sym_BSLASHincludesvg] = ACTIONS(11998), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11998), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11998), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11998), + [anon_sym_BSLASHimport] = ACTIONS(11998), + [anon_sym_BSLASHsubimport] = ACTIONS(11998), + [anon_sym_BSLASHinputfrom] = ACTIONS(11998), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11998), + [anon_sym_BSLASHincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHlabel] = ACTIONS(11998), + [anon_sym_BSLASHref] = ACTIONS(11998), + [anon_sym_BSLASHvref] = ACTIONS(11998), + [anon_sym_BSLASHVref] = ACTIONS(11998), + [anon_sym_BSLASHautoref] = ACTIONS(11998), + [anon_sym_BSLASHpageref] = ACTIONS(11998), + [anon_sym_BSLASHcref] = ACTIONS(11998), + [anon_sym_BSLASHCref] = ACTIONS(11998), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnameCref] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHlabelcref] = ACTIONS(11998), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11998), + [anon_sym_BSLASHeqref] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange] = ACTIONS(11998), + [anon_sym_BSLASHCrefrange] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewlabel] = ACTIONS(11998), + [anon_sym_BSLASHnewcommand] = ACTIONS(11998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11998), + [anon_sym_BSLASHgls] = ACTIONS(11998), + [anon_sym_BSLASHGls] = ACTIONS(11998), + [anon_sym_BSLASHGLS] = ACTIONS(11998), + [anon_sym_BSLASHglspl] = ACTIONS(11998), + [anon_sym_BSLASHGlspl] = ACTIONS(11998), + [anon_sym_BSLASHGLSpl] = ACTIONS(11998), + [anon_sym_BSLASHglsdisp] = ACTIONS(11998), + [anon_sym_BSLASHglslink] = ACTIONS(11998), + [anon_sym_BSLASHglstext] = ACTIONS(11998), + [anon_sym_BSLASHGlstext] = ACTIONS(11998), + [anon_sym_BSLASHGLStext] = ACTIONS(11998), + [anon_sym_BSLASHglsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11998), + [anon_sym_BSLASHglsplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSplural] = ACTIONS(11998), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHglsname] = ACTIONS(11998), + [anon_sym_BSLASHGlsname] = ACTIONS(11998), + [anon_sym_BSLASHGLSname] = ACTIONS(11998), + [anon_sym_BSLASHglssymbol] = ACTIONS(11998), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11998), + [anon_sym_BSLASHglsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11998), + [anon_sym_BSLASHglsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11998), + [anon_sym_BSLASHglsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11998), + [anon_sym_BSLASHglsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11998), + [anon_sym_BSLASHglsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11998), + [anon_sym_BSLASHnewacronym] = ACTIONS(11998), + [anon_sym_BSLASHacrshort] = ACTIONS(11998), + [anon_sym_BSLASHAcrshort] = ACTIONS(11998), + [anon_sym_BSLASHACRshort] = ACTIONS(11998), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11998), + [anon_sym_BSLASHacrlong] = ACTIONS(11998), + [anon_sym_BSLASHAcrlong] = ACTIONS(11998), + [anon_sym_BSLASHACRlong] = ACTIONS(11998), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11998), + [anon_sym_BSLASHacrfull] = ACTIONS(11998), + [anon_sym_BSLASHAcrfull] = ACTIONS(11998), + [anon_sym_BSLASHACRfull] = ACTIONS(11998), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11998), + [anon_sym_BSLASHacs] = ACTIONS(11998), + [anon_sym_BSLASHAcs] = ACTIONS(11998), + [anon_sym_BSLASHacsp] = ACTIONS(11998), + [anon_sym_BSLASHAcsp] = ACTIONS(11998), + [anon_sym_BSLASHacl] = ACTIONS(11998), + [anon_sym_BSLASHAcl] = ACTIONS(11998), + [anon_sym_BSLASHaclp] = ACTIONS(11998), + [anon_sym_BSLASHAclp] = ACTIONS(11998), + [anon_sym_BSLASHacf] = ACTIONS(11998), + [anon_sym_BSLASHAcf] = ACTIONS(11998), + [anon_sym_BSLASHacfp] = ACTIONS(11998), + [anon_sym_BSLASHAcfp] = ACTIONS(11998), + [anon_sym_BSLASHac] = ACTIONS(11998), + [anon_sym_BSLASHAc] = ACTIONS(11998), + [anon_sym_BSLASHacp] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11998), + [anon_sym_BSLASHcolor] = ACTIONS(11998), + [anon_sym_BSLASHcolorbox] = ACTIONS(11998), + [anon_sym_BSLASHtextcolor] = ACTIONS(11998), + [anon_sym_BSLASHpagecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11998), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11998), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11998), + }, + [492] = { + [sym_brace_group] = STATE(3009), + [ts_builtin_sym_end] = ACTIONS(12098), + [sym_generic_command_name] = ACTIONS(12100), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12100), + [aux_sym_chapter_token1] = ACTIONS(12100), + [aux_sym_section_token1] = ACTIONS(12100), + [aux_sym_subsection_token1] = ACTIONS(12100), + [aux_sym_subsubsection_token1] = ACTIONS(12100), + [aux_sym_paragraph_token1] = ACTIONS(12100), + [aux_sym_subparagraph_token1] = ACTIONS(12100), + [anon_sym_BSLASHitem] = ACTIONS(12100), + [anon_sym_LBRACK] = ACTIONS(12098), + [anon_sym_RBRACK] = ACTIONS(12098), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12098), + [anon_sym_LPAREN] = ACTIONS(12098), + [anon_sym_RPAREN] = ACTIONS(12098), + [anon_sym_COMMA] = ACTIONS(12098), + [anon_sym_EQ] = ACTIONS(12098), + [sym_word] = ACTIONS(12098), + [sym_param] = ACTIONS(12098), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12098), + [anon_sym_DOLLAR] = ACTIONS(12100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12098), + [anon_sym_BSLASHbegin] = ACTIONS(12100), + [anon_sym_BSLASHcaption] = ACTIONS(12100), + [anon_sym_BSLASHcite] = ACTIONS(12100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCite] = ACTIONS(12100), + [anon_sym_BSLASHnocite] = ACTIONS(12100), + [anon_sym_BSLASHcitet] = ACTIONS(12100), + [anon_sym_BSLASHcitep] = ACTIONS(12100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteauthor] = ACTIONS(12100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitetitle] = ACTIONS(12100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteyear] = ACTIONS(12100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitedate] = ACTIONS(12100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteurl] = ACTIONS(12100), + [anon_sym_BSLASHfullcite] = ACTIONS(12100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12100), + [anon_sym_BSLASHcitealt] = ACTIONS(12100), + [anon_sym_BSLASHcitealp] = ACTIONS(12100), + [anon_sym_BSLASHcitetext] = ACTIONS(12100), + [anon_sym_BSLASHparencite] = ACTIONS(12100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHParencite] = ACTIONS(12100), + [anon_sym_BSLASHfootcite] = ACTIONS(12100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12100), + [anon_sym_BSLASHtextcite] = ACTIONS(12100), + [anon_sym_BSLASHTextcite] = ACTIONS(12100), + [anon_sym_BSLASHsmartcite] = ACTIONS(12100), + [anon_sym_BSLASHSmartcite] = ACTIONS(12100), + [anon_sym_BSLASHsupercite] = ACTIONS(12100), + [anon_sym_BSLASHautocite] = ACTIONS(12100), + [anon_sym_BSLASHAutocite] = ACTIONS(12100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHvolcite] = ACTIONS(12100), + [anon_sym_BSLASHVolcite] = ACTIONS(12100), + [anon_sym_BSLASHpvolcite] = ACTIONS(12100), + [anon_sym_BSLASHPvolcite] = ACTIONS(12100), + [anon_sym_BSLASHfvolcite] = ACTIONS(12100), + [anon_sym_BSLASHftvolcite] = ACTIONS(12100), + [anon_sym_BSLASHsvolcite] = ACTIONS(12100), + [anon_sym_BSLASHSvolcite] = ACTIONS(12100), + [anon_sym_BSLASHtvolcite] = ACTIONS(12100), + [anon_sym_BSLASHTvolcite] = ACTIONS(12100), + [anon_sym_BSLASHavolcite] = ACTIONS(12100), + [anon_sym_BSLASHAvolcite] = ACTIONS(12100), + [anon_sym_BSLASHnotecite] = ACTIONS(12100), + [anon_sym_BSLASHpnotecite] = ACTIONS(12100), + [anon_sym_BSLASHPnotecite] = ACTIONS(12100), + [anon_sym_BSLASHfnotecite] = ACTIONS(12100), + [anon_sym_BSLASHusepackage] = ACTIONS(12100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12100), + [anon_sym_BSLASHinclude] = ACTIONS(12100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12100), + [anon_sym_BSLASHinput] = ACTIONS(12100), + [anon_sym_BSLASHsubfile] = ACTIONS(12100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12100), + [anon_sym_BSLASHbibliography] = ACTIONS(12100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12100), + [anon_sym_BSLASHincludesvg] = ACTIONS(12100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12100), + [anon_sym_BSLASHimport] = ACTIONS(12100), + [anon_sym_BSLASHsubimport] = ACTIONS(12100), + [anon_sym_BSLASHinputfrom] = ACTIONS(12100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12100), + [anon_sym_BSLASHincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHlabel] = ACTIONS(12100), + [anon_sym_BSLASHref] = ACTIONS(12100), + [anon_sym_BSLASHvref] = ACTIONS(12100), + [anon_sym_BSLASHVref] = ACTIONS(12100), + [anon_sym_BSLASHautoref] = ACTIONS(12100), + [anon_sym_BSLASHpageref] = ACTIONS(12100), + [anon_sym_BSLASHcref] = ACTIONS(12100), + [anon_sym_BSLASHCref] = ACTIONS(12100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnameCref] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHlabelcref] = ACTIONS(12100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12100), + [anon_sym_BSLASHeqref] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange] = ACTIONS(12100), + [anon_sym_BSLASHCrefrange] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewlabel] = ACTIONS(12100), + [anon_sym_BSLASHnewcommand] = ACTIONS(12100), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12100), + [anon_sym_BSLASHgls] = ACTIONS(12100), + [anon_sym_BSLASHGls] = ACTIONS(12100), + [anon_sym_BSLASHGLS] = ACTIONS(12100), + [anon_sym_BSLASHglspl] = ACTIONS(12100), + [anon_sym_BSLASHGlspl] = ACTIONS(12100), + [anon_sym_BSLASHGLSpl] = ACTIONS(12100), + [anon_sym_BSLASHglsdisp] = ACTIONS(12100), + [anon_sym_BSLASHglslink] = ACTIONS(12100), + [anon_sym_BSLASHglstext] = ACTIONS(12100), + [anon_sym_BSLASHGlstext] = ACTIONS(12100), + [anon_sym_BSLASHGLStext] = ACTIONS(12100), + [anon_sym_BSLASHglsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12100), + [anon_sym_BSLASHglsplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSplural] = ACTIONS(12100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHglsname] = ACTIONS(12100), + [anon_sym_BSLASHGlsname] = ACTIONS(12100), + [anon_sym_BSLASHGLSname] = ACTIONS(12100), + [anon_sym_BSLASHglssymbol] = ACTIONS(12100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12100), + [anon_sym_BSLASHglsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12100), + [anon_sym_BSLASHglsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12100), + [anon_sym_BSLASHglsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12100), + [anon_sym_BSLASHglsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12100), + [anon_sym_BSLASHglsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12100), + [anon_sym_BSLASHnewacronym] = ACTIONS(12100), + [anon_sym_BSLASHacrshort] = ACTIONS(12100), + [anon_sym_BSLASHAcrshort] = ACTIONS(12100), + [anon_sym_BSLASHACRshort] = ACTIONS(12100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12100), + [anon_sym_BSLASHacrlong] = ACTIONS(12100), + [anon_sym_BSLASHAcrlong] = ACTIONS(12100), + [anon_sym_BSLASHACRlong] = ACTIONS(12100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12100), + [anon_sym_BSLASHacrfull] = ACTIONS(12100), + [anon_sym_BSLASHAcrfull] = ACTIONS(12100), + [anon_sym_BSLASHACRfull] = ACTIONS(12100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12100), + [anon_sym_BSLASHacs] = ACTIONS(12100), + [anon_sym_BSLASHAcs] = ACTIONS(12100), + [anon_sym_BSLASHacsp] = ACTIONS(12100), + [anon_sym_BSLASHAcsp] = ACTIONS(12100), + [anon_sym_BSLASHacl] = ACTIONS(12100), + [anon_sym_BSLASHAcl] = ACTIONS(12100), + [anon_sym_BSLASHaclp] = ACTIONS(12100), + [anon_sym_BSLASHAclp] = ACTIONS(12100), + [anon_sym_BSLASHacf] = ACTIONS(12100), + [anon_sym_BSLASHAcf] = ACTIONS(12100), + [anon_sym_BSLASHacfp] = ACTIONS(12100), + [anon_sym_BSLASHAcfp] = ACTIONS(12100), + [anon_sym_BSLASHac] = ACTIONS(12100), + [anon_sym_BSLASHAc] = ACTIONS(12100), + [anon_sym_BSLASHacp] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12100), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12100), + [anon_sym_BSLASHcolor] = ACTIONS(12100), + [anon_sym_BSLASHcolorbox] = ACTIONS(12100), + [anon_sym_BSLASHtextcolor] = ACTIONS(12100), + [anon_sym_BSLASHpagecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12100), + }, + [493] = { + [sym_brace_group] = STATE(486), + [sym_bracket_group] = STATE(486), + [sym_paren_group] = STATE(486), + [aux_sym_generic_command_repeat1] = STATE(486), + [sym_generic_command_name] = ACTIONS(11990), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(11990), + [aux_sym_chapter_token1] = ACTIONS(11990), + [aux_sym_section_token1] = ACTIONS(11990), + [aux_sym_subsection_token1] = ACTIONS(11990), + [aux_sym_subsubsection_token1] = ACTIONS(11990), + [aux_sym_paragraph_token1] = ACTIONS(11990), + [aux_sym_subparagraph_token1] = ACTIONS(11990), + [anon_sym_BSLASHitem] = ACTIONS(11990), + [anon_sym_LBRACK] = ACTIONS(12082), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_LPAREN] = ACTIONS(12084), + [anon_sym_COMMA] = ACTIONS(11988), + [anon_sym_EQ] = ACTIONS(11988), + [sym_word] = ACTIONS(11988), + [sym_param] = ACTIONS(11988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11988), + [anon_sym_DOLLAR] = ACTIONS(11990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11988), + [anon_sym_BSLASHbegin] = ACTIONS(11990), + [anon_sym_BSLASHend] = ACTIONS(11990), + [anon_sym_BSLASHcaption] = ACTIONS(11990), + [anon_sym_BSLASHcite] = ACTIONS(11990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCite] = ACTIONS(11990), + [anon_sym_BSLASHnocite] = ACTIONS(11990), + [anon_sym_BSLASHcitet] = ACTIONS(11990), + [anon_sym_BSLASHcitep] = ACTIONS(11990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteauthor] = ACTIONS(11990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitetitle] = ACTIONS(11990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteyear] = ACTIONS(11990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitedate] = ACTIONS(11990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteurl] = ACTIONS(11990), + [anon_sym_BSLASHfullcite] = ACTIONS(11990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11990), + [anon_sym_BSLASHcitealt] = ACTIONS(11990), + [anon_sym_BSLASHcitealp] = ACTIONS(11990), + [anon_sym_BSLASHcitetext] = ACTIONS(11990), + [anon_sym_BSLASHparencite] = ACTIONS(11990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHParencite] = ACTIONS(11990), + [anon_sym_BSLASHfootcite] = ACTIONS(11990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11990), + [anon_sym_BSLASHtextcite] = ACTIONS(11990), + [anon_sym_BSLASHTextcite] = ACTIONS(11990), + [anon_sym_BSLASHsmartcite] = ACTIONS(11990), + [anon_sym_BSLASHSmartcite] = ACTIONS(11990), + [anon_sym_BSLASHsupercite] = ACTIONS(11990), + [anon_sym_BSLASHautocite] = ACTIONS(11990), + [anon_sym_BSLASHAutocite] = ACTIONS(11990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHvolcite] = ACTIONS(11990), + [anon_sym_BSLASHVolcite] = ACTIONS(11990), + [anon_sym_BSLASHpvolcite] = ACTIONS(11990), + [anon_sym_BSLASHPvolcite] = ACTIONS(11990), + [anon_sym_BSLASHfvolcite] = ACTIONS(11990), + [anon_sym_BSLASHftvolcite] = ACTIONS(11990), + [anon_sym_BSLASHsvolcite] = ACTIONS(11990), + [anon_sym_BSLASHSvolcite] = ACTIONS(11990), + [anon_sym_BSLASHtvolcite] = ACTIONS(11990), + [anon_sym_BSLASHTvolcite] = ACTIONS(11990), + [anon_sym_BSLASHavolcite] = ACTIONS(11990), + [anon_sym_BSLASHAvolcite] = ACTIONS(11990), + [anon_sym_BSLASHnotecite] = ACTIONS(11990), + [anon_sym_BSLASHpnotecite] = ACTIONS(11990), + [anon_sym_BSLASHPnotecite] = ACTIONS(11990), + [anon_sym_BSLASHfnotecite] = ACTIONS(11990), + [anon_sym_BSLASHusepackage] = ACTIONS(11990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11990), + [anon_sym_BSLASHinclude] = ACTIONS(11990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11990), + [anon_sym_BSLASHinput] = ACTIONS(11990), + [anon_sym_BSLASHsubfile] = ACTIONS(11990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11990), + [anon_sym_BSLASHbibliography] = ACTIONS(11990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11990), + [anon_sym_BSLASHincludesvg] = ACTIONS(11990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11990), + [anon_sym_BSLASHimport] = ACTIONS(11990), + [anon_sym_BSLASHsubimport] = ACTIONS(11990), + [anon_sym_BSLASHinputfrom] = ACTIONS(11990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11990), + [anon_sym_BSLASHincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHlabel] = ACTIONS(11990), + [anon_sym_BSLASHref] = ACTIONS(11990), + [anon_sym_BSLASHvref] = ACTIONS(11990), + [anon_sym_BSLASHVref] = ACTIONS(11990), + [anon_sym_BSLASHautoref] = ACTIONS(11990), + [anon_sym_BSLASHpageref] = ACTIONS(11990), + [anon_sym_BSLASHcref] = ACTIONS(11990), + [anon_sym_BSLASHCref] = ACTIONS(11990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnameCref] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHlabelcref] = ACTIONS(11990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11990), + [anon_sym_BSLASHeqref] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange] = ACTIONS(11990), + [anon_sym_BSLASHCrefrange] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewlabel] = ACTIONS(11990), + [anon_sym_BSLASHnewcommand] = ACTIONS(11990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11990), + [anon_sym_BSLASHgls] = ACTIONS(11990), + [anon_sym_BSLASHGls] = ACTIONS(11990), + [anon_sym_BSLASHGLS] = ACTIONS(11990), + [anon_sym_BSLASHglspl] = ACTIONS(11990), + [anon_sym_BSLASHGlspl] = ACTIONS(11990), + [anon_sym_BSLASHGLSpl] = ACTIONS(11990), + [anon_sym_BSLASHglsdisp] = ACTIONS(11990), + [anon_sym_BSLASHglslink] = ACTIONS(11990), + [anon_sym_BSLASHglstext] = ACTIONS(11990), + [anon_sym_BSLASHGlstext] = ACTIONS(11990), + [anon_sym_BSLASHGLStext] = ACTIONS(11990), + [anon_sym_BSLASHglsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11990), + [anon_sym_BSLASHglsplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSplural] = ACTIONS(11990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHglsname] = ACTIONS(11990), + [anon_sym_BSLASHGlsname] = ACTIONS(11990), + [anon_sym_BSLASHGLSname] = ACTIONS(11990), + [anon_sym_BSLASHglssymbol] = ACTIONS(11990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11990), + [anon_sym_BSLASHglsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11990), + [anon_sym_BSLASHglsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11990), + [anon_sym_BSLASHglsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11990), + [anon_sym_BSLASHglsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11990), + [anon_sym_BSLASHglsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11990), + [anon_sym_BSLASHnewacronym] = ACTIONS(11990), + [anon_sym_BSLASHacrshort] = ACTIONS(11990), + [anon_sym_BSLASHAcrshort] = ACTIONS(11990), + [anon_sym_BSLASHACRshort] = ACTIONS(11990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11990), + [anon_sym_BSLASHacrlong] = ACTIONS(11990), + [anon_sym_BSLASHAcrlong] = ACTIONS(11990), + [anon_sym_BSLASHACRlong] = ACTIONS(11990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11990), + [anon_sym_BSLASHacrfull] = ACTIONS(11990), + [anon_sym_BSLASHAcrfull] = ACTIONS(11990), + [anon_sym_BSLASHACRfull] = ACTIONS(11990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11990), + [anon_sym_BSLASHacs] = ACTIONS(11990), + [anon_sym_BSLASHAcs] = ACTIONS(11990), + [anon_sym_BSLASHacsp] = ACTIONS(11990), + [anon_sym_BSLASHAcsp] = ACTIONS(11990), + [anon_sym_BSLASHacl] = ACTIONS(11990), + [anon_sym_BSLASHAcl] = ACTIONS(11990), + [anon_sym_BSLASHaclp] = ACTIONS(11990), + [anon_sym_BSLASHAclp] = ACTIONS(11990), + [anon_sym_BSLASHacf] = ACTIONS(11990), + [anon_sym_BSLASHAcf] = ACTIONS(11990), + [anon_sym_BSLASHacfp] = ACTIONS(11990), + [anon_sym_BSLASHAcfp] = ACTIONS(11990), + [anon_sym_BSLASHac] = ACTIONS(11990), + [anon_sym_BSLASHAc] = ACTIONS(11990), + [anon_sym_BSLASHacp] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11990), + [anon_sym_BSLASHcolor] = ACTIONS(11990), + [anon_sym_BSLASHcolorbox] = ACTIONS(11990), + [anon_sym_BSLASHtextcolor] = ACTIONS(11990), + [anon_sym_BSLASHpagecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11990), + }, + [494] = { + [sym_brace_group] = STATE(483), + [sym_bracket_group] = STATE(483), + [sym_paren_group] = STATE(483), + [aux_sym_generic_command_repeat1] = STATE(483), + [sym_generic_command_name] = ACTIONS(11998), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(11998), + [aux_sym_chapter_token1] = ACTIONS(11998), + [aux_sym_section_token1] = ACTIONS(11998), + [aux_sym_subsection_token1] = ACTIONS(11998), + [aux_sym_subsubsection_token1] = ACTIONS(11998), + [aux_sym_paragraph_token1] = ACTIONS(11998), + [aux_sym_subparagraph_token1] = ACTIONS(11998), + [anon_sym_BSLASHitem] = ACTIONS(11998), + [anon_sym_LBRACK] = ACTIONS(12048), + [anon_sym_LBRACE] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(12050), + [anon_sym_COMMA] = ACTIONS(11996), + [anon_sym_EQ] = ACTIONS(11996), + [sym_word] = ACTIONS(11996), + [sym_param] = ACTIONS(11996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11996), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11996), + [anon_sym_DOLLAR] = ACTIONS(11998), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11996), + [anon_sym_BSLASH_RPAREN] = ACTIONS(11996), + [anon_sym_BSLASHbegin] = ACTIONS(11998), + [anon_sym_BSLASHcaption] = ACTIONS(11998), + [anon_sym_BSLASHcite] = ACTIONS(11998), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCite] = ACTIONS(11998), + [anon_sym_BSLASHnocite] = ACTIONS(11998), + [anon_sym_BSLASHcitet] = ACTIONS(11998), + [anon_sym_BSLASHcitep] = ACTIONS(11998), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteauthor] = ACTIONS(11998), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11998), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitetitle] = ACTIONS(11998), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteyear] = ACTIONS(11998), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitedate] = ACTIONS(11998), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteurl] = ACTIONS(11998), + [anon_sym_BSLASHfullcite] = ACTIONS(11998), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11998), + [anon_sym_BSLASHcitealt] = ACTIONS(11998), + [anon_sym_BSLASHcitealp] = ACTIONS(11998), + [anon_sym_BSLASHcitetext] = ACTIONS(11998), + [anon_sym_BSLASHparencite] = ACTIONS(11998), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHParencite] = ACTIONS(11998), + [anon_sym_BSLASHfootcite] = ACTIONS(11998), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11998), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11998), + [anon_sym_BSLASHtextcite] = ACTIONS(11998), + [anon_sym_BSLASHTextcite] = ACTIONS(11998), + [anon_sym_BSLASHsmartcite] = ACTIONS(11998), + [anon_sym_BSLASHSmartcite] = ACTIONS(11998), + [anon_sym_BSLASHsupercite] = ACTIONS(11998), + [anon_sym_BSLASHautocite] = ACTIONS(11998), + [anon_sym_BSLASHAutocite] = ACTIONS(11998), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHvolcite] = ACTIONS(11998), + [anon_sym_BSLASHVolcite] = ACTIONS(11998), + [anon_sym_BSLASHpvolcite] = ACTIONS(11998), + [anon_sym_BSLASHPvolcite] = ACTIONS(11998), + [anon_sym_BSLASHfvolcite] = ACTIONS(11998), + [anon_sym_BSLASHftvolcite] = ACTIONS(11998), + [anon_sym_BSLASHsvolcite] = ACTIONS(11998), + [anon_sym_BSLASHSvolcite] = ACTIONS(11998), + [anon_sym_BSLASHtvolcite] = ACTIONS(11998), + [anon_sym_BSLASHTvolcite] = ACTIONS(11998), + [anon_sym_BSLASHavolcite] = ACTIONS(11998), + [anon_sym_BSLASHAvolcite] = ACTIONS(11998), + [anon_sym_BSLASHnotecite] = ACTIONS(11998), + [anon_sym_BSLASHpnotecite] = ACTIONS(11998), + [anon_sym_BSLASHPnotecite] = ACTIONS(11998), + [anon_sym_BSLASHfnotecite] = ACTIONS(11998), + [anon_sym_BSLASHusepackage] = ACTIONS(11998), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11998), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11998), + [anon_sym_BSLASHinclude] = ACTIONS(11998), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11998), + [anon_sym_BSLASHinput] = ACTIONS(11998), + [anon_sym_BSLASHsubfile] = ACTIONS(11998), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11998), + [anon_sym_BSLASHbibliography] = ACTIONS(11998), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11998), + [anon_sym_BSLASHincludesvg] = ACTIONS(11998), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11998), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11998), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11998), + [anon_sym_BSLASHimport] = ACTIONS(11998), + [anon_sym_BSLASHsubimport] = ACTIONS(11998), + [anon_sym_BSLASHinputfrom] = ACTIONS(11998), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11998), + [anon_sym_BSLASHincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHlabel] = ACTIONS(11998), + [anon_sym_BSLASHref] = ACTIONS(11998), + [anon_sym_BSLASHvref] = ACTIONS(11998), + [anon_sym_BSLASHVref] = ACTIONS(11998), + [anon_sym_BSLASHautoref] = ACTIONS(11998), + [anon_sym_BSLASHpageref] = ACTIONS(11998), + [anon_sym_BSLASHcref] = ACTIONS(11998), + [anon_sym_BSLASHCref] = ACTIONS(11998), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnameCref] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHlabelcref] = ACTIONS(11998), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11998), + [anon_sym_BSLASHeqref] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange] = ACTIONS(11998), + [anon_sym_BSLASHCrefrange] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewlabel] = ACTIONS(11998), + [anon_sym_BSLASHnewcommand] = ACTIONS(11998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11998), + [anon_sym_BSLASHgls] = ACTIONS(11998), + [anon_sym_BSLASHGls] = ACTIONS(11998), + [anon_sym_BSLASHGLS] = ACTIONS(11998), + [anon_sym_BSLASHglspl] = ACTIONS(11998), + [anon_sym_BSLASHGlspl] = ACTIONS(11998), + [anon_sym_BSLASHGLSpl] = ACTIONS(11998), + [anon_sym_BSLASHglsdisp] = ACTIONS(11998), + [anon_sym_BSLASHglslink] = ACTIONS(11998), + [anon_sym_BSLASHglstext] = ACTIONS(11998), + [anon_sym_BSLASHGlstext] = ACTIONS(11998), + [anon_sym_BSLASHGLStext] = ACTIONS(11998), + [anon_sym_BSLASHglsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11998), + [anon_sym_BSLASHglsplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSplural] = ACTIONS(11998), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHglsname] = ACTIONS(11998), + [anon_sym_BSLASHGlsname] = ACTIONS(11998), + [anon_sym_BSLASHGLSname] = ACTIONS(11998), + [anon_sym_BSLASHglssymbol] = ACTIONS(11998), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11998), + [anon_sym_BSLASHglsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11998), + [anon_sym_BSLASHglsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11998), + [anon_sym_BSLASHglsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11998), + [anon_sym_BSLASHglsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11998), + [anon_sym_BSLASHglsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11998), + [anon_sym_BSLASHnewacronym] = ACTIONS(11998), + [anon_sym_BSLASHacrshort] = ACTIONS(11998), + [anon_sym_BSLASHAcrshort] = ACTIONS(11998), + [anon_sym_BSLASHACRshort] = ACTIONS(11998), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11998), + [anon_sym_BSLASHacrlong] = ACTIONS(11998), + [anon_sym_BSLASHAcrlong] = ACTIONS(11998), + [anon_sym_BSLASHACRlong] = ACTIONS(11998), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11998), + [anon_sym_BSLASHacrfull] = ACTIONS(11998), + [anon_sym_BSLASHAcrfull] = ACTIONS(11998), + [anon_sym_BSLASHACRfull] = ACTIONS(11998), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11998), + [anon_sym_BSLASHacs] = ACTIONS(11998), + [anon_sym_BSLASHAcs] = ACTIONS(11998), + [anon_sym_BSLASHacsp] = ACTIONS(11998), + [anon_sym_BSLASHAcsp] = ACTIONS(11998), + [anon_sym_BSLASHacl] = ACTIONS(11998), + [anon_sym_BSLASHAcl] = ACTIONS(11998), + [anon_sym_BSLASHaclp] = ACTIONS(11998), + [anon_sym_BSLASHAclp] = ACTIONS(11998), + [anon_sym_BSLASHacf] = ACTIONS(11998), + [anon_sym_BSLASHAcf] = ACTIONS(11998), + [anon_sym_BSLASHacfp] = ACTIONS(11998), + [anon_sym_BSLASHAcfp] = ACTIONS(11998), + [anon_sym_BSLASHac] = ACTIONS(11998), + [anon_sym_BSLASHAc] = ACTIONS(11998), + [anon_sym_BSLASHacp] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11998), + [anon_sym_BSLASHcolor] = ACTIONS(11998), + [anon_sym_BSLASHcolorbox] = ACTIONS(11998), + [anon_sym_BSLASHtextcolor] = ACTIONS(11998), + [anon_sym_BSLASHpagecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11998), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11998), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11998), + }, + [495] = { + [ts_builtin_sym_end] = ACTIONS(12102), + [sym_generic_command_name] = ACTIONS(12104), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12104), + [aux_sym_chapter_token1] = ACTIONS(12104), + [aux_sym_section_token1] = ACTIONS(12104), + [aux_sym_subsection_token1] = ACTIONS(12104), + [aux_sym_subsubsection_token1] = ACTIONS(12104), + [aux_sym_paragraph_token1] = ACTIONS(12104), + [aux_sym_subparagraph_token1] = ACTIONS(12104), + [anon_sym_BSLASHitem] = ACTIONS(12104), + [anon_sym_LBRACK] = ACTIONS(12102), + [anon_sym_RBRACK] = ACTIONS(12102), + [anon_sym_LBRACE] = ACTIONS(12102), + [anon_sym_RBRACE] = ACTIONS(12102), + [anon_sym_LPAREN] = ACTIONS(12102), + [anon_sym_RPAREN] = ACTIONS(12102), + [anon_sym_COMMA] = ACTIONS(12102), + [anon_sym_EQ] = ACTIONS(12102), + [sym_word] = ACTIONS(12102), + [sym_param] = ACTIONS(12102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12102), + [anon_sym_DOLLAR] = ACTIONS(12104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12102), + [anon_sym_BSLASHbegin] = ACTIONS(12104), + [anon_sym_BSLASHcaption] = ACTIONS(12104), + [anon_sym_BSLASHcite] = ACTIONS(12104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCite] = ACTIONS(12104), + [anon_sym_BSLASHnocite] = ACTIONS(12104), + [anon_sym_BSLASHcitet] = ACTIONS(12104), + [anon_sym_BSLASHcitep] = ACTIONS(12104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteauthor] = ACTIONS(12104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitetitle] = ACTIONS(12104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteyear] = ACTIONS(12104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitedate] = ACTIONS(12104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteurl] = ACTIONS(12104), + [anon_sym_BSLASHfullcite] = ACTIONS(12104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12104), + [anon_sym_BSLASHcitealt] = ACTIONS(12104), + [anon_sym_BSLASHcitealp] = ACTIONS(12104), + [anon_sym_BSLASHcitetext] = ACTIONS(12104), + [anon_sym_BSLASHparencite] = ACTIONS(12104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHParencite] = ACTIONS(12104), + [anon_sym_BSLASHfootcite] = ACTIONS(12104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12104), + [anon_sym_BSLASHtextcite] = ACTIONS(12104), + [anon_sym_BSLASHTextcite] = ACTIONS(12104), + [anon_sym_BSLASHsmartcite] = ACTIONS(12104), + [anon_sym_BSLASHSmartcite] = ACTIONS(12104), + [anon_sym_BSLASHsupercite] = ACTIONS(12104), + [anon_sym_BSLASHautocite] = ACTIONS(12104), + [anon_sym_BSLASHAutocite] = ACTIONS(12104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHvolcite] = ACTIONS(12104), + [anon_sym_BSLASHVolcite] = ACTIONS(12104), + [anon_sym_BSLASHpvolcite] = ACTIONS(12104), + [anon_sym_BSLASHPvolcite] = ACTIONS(12104), + [anon_sym_BSLASHfvolcite] = ACTIONS(12104), + [anon_sym_BSLASHftvolcite] = ACTIONS(12104), + [anon_sym_BSLASHsvolcite] = ACTIONS(12104), + [anon_sym_BSLASHSvolcite] = ACTIONS(12104), + [anon_sym_BSLASHtvolcite] = ACTIONS(12104), + [anon_sym_BSLASHTvolcite] = ACTIONS(12104), + [anon_sym_BSLASHavolcite] = ACTIONS(12104), + [anon_sym_BSLASHAvolcite] = ACTIONS(12104), + [anon_sym_BSLASHnotecite] = ACTIONS(12104), + [anon_sym_BSLASHpnotecite] = ACTIONS(12104), + [anon_sym_BSLASHPnotecite] = ACTIONS(12104), + [anon_sym_BSLASHfnotecite] = ACTIONS(12104), + [anon_sym_BSLASHusepackage] = ACTIONS(12104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12104), + [anon_sym_BSLASHinclude] = ACTIONS(12104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12104), + [anon_sym_BSLASHinput] = ACTIONS(12104), + [anon_sym_BSLASHsubfile] = ACTIONS(12104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12104), + [anon_sym_BSLASHbibliography] = ACTIONS(12104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12104), + [anon_sym_BSLASHincludesvg] = ACTIONS(12104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12104), + [anon_sym_BSLASHimport] = ACTIONS(12104), + [anon_sym_BSLASHsubimport] = ACTIONS(12104), + [anon_sym_BSLASHinputfrom] = ACTIONS(12104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12104), + [anon_sym_BSLASHincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHlabel] = ACTIONS(12104), + [anon_sym_BSLASHref] = ACTIONS(12104), + [anon_sym_BSLASHvref] = ACTIONS(12104), + [anon_sym_BSLASHVref] = ACTIONS(12104), + [anon_sym_BSLASHautoref] = ACTIONS(12104), + [anon_sym_BSLASHpageref] = ACTIONS(12104), + [anon_sym_BSLASHcref] = ACTIONS(12104), + [anon_sym_BSLASHCref] = ACTIONS(12104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnameCref] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHlabelcref] = ACTIONS(12104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12104), + [anon_sym_BSLASHeqref] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange] = ACTIONS(12104), + [anon_sym_BSLASHCrefrange] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewlabel] = ACTIONS(12104), + [anon_sym_BSLASHnewcommand] = ACTIONS(12104), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12104), + [anon_sym_BSLASHgls] = ACTIONS(12104), + [anon_sym_BSLASHGls] = ACTIONS(12104), + [anon_sym_BSLASHGLS] = ACTIONS(12104), + [anon_sym_BSLASHglspl] = ACTIONS(12104), + [anon_sym_BSLASHGlspl] = ACTIONS(12104), + [anon_sym_BSLASHGLSpl] = ACTIONS(12104), + [anon_sym_BSLASHglsdisp] = ACTIONS(12104), + [anon_sym_BSLASHglslink] = ACTIONS(12104), + [anon_sym_BSLASHglstext] = ACTIONS(12104), + [anon_sym_BSLASHGlstext] = ACTIONS(12104), + [anon_sym_BSLASHGLStext] = ACTIONS(12104), + [anon_sym_BSLASHglsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12104), + [anon_sym_BSLASHglsplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSplural] = ACTIONS(12104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHglsname] = ACTIONS(12104), + [anon_sym_BSLASHGlsname] = ACTIONS(12104), + [anon_sym_BSLASHGLSname] = ACTIONS(12104), + [anon_sym_BSLASHglssymbol] = ACTIONS(12104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12104), + [anon_sym_BSLASHglsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12104), + [anon_sym_BSLASHglsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12104), + [anon_sym_BSLASHglsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12104), + [anon_sym_BSLASHglsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12104), + [anon_sym_BSLASHglsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12104), + [anon_sym_BSLASHnewacronym] = ACTIONS(12104), + [anon_sym_BSLASHacrshort] = ACTIONS(12104), + [anon_sym_BSLASHAcrshort] = ACTIONS(12104), + [anon_sym_BSLASHACRshort] = ACTIONS(12104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12104), + [anon_sym_BSLASHacrlong] = ACTIONS(12104), + [anon_sym_BSLASHAcrlong] = ACTIONS(12104), + [anon_sym_BSLASHACRlong] = ACTIONS(12104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12104), + [anon_sym_BSLASHacrfull] = ACTIONS(12104), + [anon_sym_BSLASHAcrfull] = ACTIONS(12104), + [anon_sym_BSLASHACRfull] = ACTIONS(12104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12104), + [anon_sym_BSLASHacs] = ACTIONS(12104), + [anon_sym_BSLASHAcs] = ACTIONS(12104), + [anon_sym_BSLASHacsp] = ACTIONS(12104), + [anon_sym_BSLASHAcsp] = ACTIONS(12104), + [anon_sym_BSLASHacl] = ACTIONS(12104), + [anon_sym_BSLASHAcl] = ACTIONS(12104), + [anon_sym_BSLASHaclp] = ACTIONS(12104), + [anon_sym_BSLASHAclp] = ACTIONS(12104), + [anon_sym_BSLASHacf] = ACTIONS(12104), + [anon_sym_BSLASHAcf] = ACTIONS(12104), + [anon_sym_BSLASHacfp] = ACTIONS(12104), + [anon_sym_BSLASHAcfp] = ACTIONS(12104), + [anon_sym_BSLASHac] = ACTIONS(12104), + [anon_sym_BSLASHAc] = ACTIONS(12104), + [anon_sym_BSLASHacp] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12104), + [anon_sym_BSLASHcolor] = ACTIONS(12104), + [anon_sym_BSLASHcolorbox] = ACTIONS(12104), + [anon_sym_BSLASHtextcolor] = ACTIONS(12104), + [anon_sym_BSLASHpagecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12104), + }, + [496] = { + [ts_builtin_sym_end] = ACTIONS(12106), + [sym_generic_command_name] = ACTIONS(12108), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12108), + [aux_sym_chapter_token1] = ACTIONS(12108), + [aux_sym_section_token1] = ACTIONS(12108), + [aux_sym_subsection_token1] = ACTIONS(12108), + [aux_sym_subsubsection_token1] = ACTIONS(12108), + [aux_sym_paragraph_token1] = ACTIONS(12108), + [aux_sym_subparagraph_token1] = ACTIONS(12108), + [anon_sym_BSLASHitem] = ACTIONS(12108), + [anon_sym_LBRACK] = ACTIONS(12106), + [anon_sym_RBRACK] = ACTIONS(12106), + [anon_sym_LBRACE] = ACTIONS(12106), + [anon_sym_RBRACE] = ACTIONS(12106), + [anon_sym_LPAREN] = ACTIONS(12106), + [anon_sym_RPAREN] = ACTIONS(12106), + [anon_sym_COMMA] = ACTIONS(12106), + [anon_sym_EQ] = ACTIONS(12106), + [sym_word] = ACTIONS(12106), + [sym_param] = ACTIONS(12106), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12106), + [anon_sym_DOLLAR] = ACTIONS(12108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12106), + [anon_sym_BSLASHbegin] = ACTIONS(12108), + [anon_sym_BSLASHcaption] = ACTIONS(12108), + [anon_sym_BSLASHcite] = ACTIONS(12108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCite] = ACTIONS(12108), + [anon_sym_BSLASHnocite] = ACTIONS(12108), + [anon_sym_BSLASHcitet] = ACTIONS(12108), + [anon_sym_BSLASHcitep] = ACTIONS(12108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteauthor] = ACTIONS(12108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitetitle] = ACTIONS(12108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteyear] = ACTIONS(12108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitedate] = ACTIONS(12108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteurl] = ACTIONS(12108), + [anon_sym_BSLASHfullcite] = ACTIONS(12108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12108), + [anon_sym_BSLASHcitealt] = ACTIONS(12108), + [anon_sym_BSLASHcitealp] = ACTIONS(12108), + [anon_sym_BSLASHcitetext] = ACTIONS(12108), + [anon_sym_BSLASHparencite] = ACTIONS(12108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHParencite] = ACTIONS(12108), + [anon_sym_BSLASHfootcite] = ACTIONS(12108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12108), + [anon_sym_BSLASHtextcite] = ACTIONS(12108), + [anon_sym_BSLASHTextcite] = ACTIONS(12108), + [anon_sym_BSLASHsmartcite] = ACTIONS(12108), + [anon_sym_BSLASHSmartcite] = ACTIONS(12108), + [anon_sym_BSLASHsupercite] = ACTIONS(12108), + [anon_sym_BSLASHautocite] = ACTIONS(12108), + [anon_sym_BSLASHAutocite] = ACTIONS(12108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHvolcite] = ACTIONS(12108), + [anon_sym_BSLASHVolcite] = ACTIONS(12108), + [anon_sym_BSLASHpvolcite] = ACTIONS(12108), + [anon_sym_BSLASHPvolcite] = ACTIONS(12108), + [anon_sym_BSLASHfvolcite] = ACTIONS(12108), + [anon_sym_BSLASHftvolcite] = ACTIONS(12108), + [anon_sym_BSLASHsvolcite] = ACTIONS(12108), + [anon_sym_BSLASHSvolcite] = ACTIONS(12108), + [anon_sym_BSLASHtvolcite] = ACTIONS(12108), + [anon_sym_BSLASHTvolcite] = ACTIONS(12108), + [anon_sym_BSLASHavolcite] = ACTIONS(12108), + [anon_sym_BSLASHAvolcite] = ACTIONS(12108), + [anon_sym_BSLASHnotecite] = ACTIONS(12108), + [anon_sym_BSLASHpnotecite] = ACTIONS(12108), + [anon_sym_BSLASHPnotecite] = ACTIONS(12108), + [anon_sym_BSLASHfnotecite] = ACTIONS(12108), + [anon_sym_BSLASHusepackage] = ACTIONS(12108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12108), + [anon_sym_BSLASHinclude] = ACTIONS(12108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12108), + [anon_sym_BSLASHinput] = ACTIONS(12108), + [anon_sym_BSLASHsubfile] = ACTIONS(12108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12108), + [anon_sym_BSLASHbibliography] = ACTIONS(12108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12108), + [anon_sym_BSLASHincludesvg] = ACTIONS(12108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12108), + [anon_sym_BSLASHimport] = ACTIONS(12108), + [anon_sym_BSLASHsubimport] = ACTIONS(12108), + [anon_sym_BSLASHinputfrom] = ACTIONS(12108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12108), + [anon_sym_BSLASHincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHlabel] = ACTIONS(12108), + [anon_sym_BSLASHref] = ACTIONS(12108), + [anon_sym_BSLASHvref] = ACTIONS(12108), + [anon_sym_BSLASHVref] = ACTIONS(12108), + [anon_sym_BSLASHautoref] = ACTIONS(12108), + [anon_sym_BSLASHpageref] = ACTIONS(12108), + [anon_sym_BSLASHcref] = ACTIONS(12108), + [anon_sym_BSLASHCref] = ACTIONS(12108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnameCref] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHlabelcref] = ACTIONS(12108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12108), + [anon_sym_BSLASHeqref] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange] = ACTIONS(12108), + [anon_sym_BSLASHCrefrange] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewlabel] = ACTIONS(12108), + [anon_sym_BSLASHnewcommand] = ACTIONS(12108), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12108), + [anon_sym_BSLASHgls] = ACTIONS(12108), + [anon_sym_BSLASHGls] = ACTIONS(12108), + [anon_sym_BSLASHGLS] = ACTIONS(12108), + [anon_sym_BSLASHglspl] = ACTIONS(12108), + [anon_sym_BSLASHGlspl] = ACTIONS(12108), + [anon_sym_BSLASHGLSpl] = ACTIONS(12108), + [anon_sym_BSLASHglsdisp] = ACTIONS(12108), + [anon_sym_BSLASHglslink] = ACTIONS(12108), + [anon_sym_BSLASHglstext] = ACTIONS(12108), + [anon_sym_BSLASHGlstext] = ACTIONS(12108), + [anon_sym_BSLASHGLStext] = ACTIONS(12108), + [anon_sym_BSLASHglsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12108), + [anon_sym_BSLASHglsplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSplural] = ACTIONS(12108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHglsname] = ACTIONS(12108), + [anon_sym_BSLASHGlsname] = ACTIONS(12108), + [anon_sym_BSLASHGLSname] = ACTIONS(12108), + [anon_sym_BSLASHglssymbol] = ACTIONS(12108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12108), + [anon_sym_BSLASHglsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12108), + [anon_sym_BSLASHglsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12108), + [anon_sym_BSLASHglsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12108), + [anon_sym_BSLASHglsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12108), + [anon_sym_BSLASHglsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12108), + [anon_sym_BSLASHnewacronym] = ACTIONS(12108), + [anon_sym_BSLASHacrshort] = ACTIONS(12108), + [anon_sym_BSLASHAcrshort] = ACTIONS(12108), + [anon_sym_BSLASHACRshort] = ACTIONS(12108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12108), + [anon_sym_BSLASHacrlong] = ACTIONS(12108), + [anon_sym_BSLASHAcrlong] = ACTIONS(12108), + [anon_sym_BSLASHACRlong] = ACTIONS(12108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12108), + [anon_sym_BSLASHacrfull] = ACTIONS(12108), + [anon_sym_BSLASHAcrfull] = ACTIONS(12108), + [anon_sym_BSLASHACRfull] = ACTIONS(12108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12108), + [anon_sym_BSLASHacs] = ACTIONS(12108), + [anon_sym_BSLASHAcs] = ACTIONS(12108), + [anon_sym_BSLASHacsp] = ACTIONS(12108), + [anon_sym_BSLASHAcsp] = ACTIONS(12108), + [anon_sym_BSLASHacl] = ACTIONS(12108), + [anon_sym_BSLASHAcl] = ACTIONS(12108), + [anon_sym_BSLASHaclp] = ACTIONS(12108), + [anon_sym_BSLASHAclp] = ACTIONS(12108), + [anon_sym_BSLASHacf] = ACTIONS(12108), + [anon_sym_BSLASHAcf] = ACTIONS(12108), + [anon_sym_BSLASHacfp] = ACTIONS(12108), + [anon_sym_BSLASHAcfp] = ACTIONS(12108), + [anon_sym_BSLASHac] = ACTIONS(12108), + [anon_sym_BSLASHAc] = ACTIONS(12108), + [anon_sym_BSLASHacp] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12108), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12108), + [anon_sym_BSLASHcolor] = ACTIONS(12108), + [anon_sym_BSLASHcolorbox] = ACTIONS(12108), + [anon_sym_BSLASHtextcolor] = ACTIONS(12108), + [anon_sym_BSLASHpagecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12108), + }, + [497] = { + [sym_brace_group] = STATE(515), + [sym_bracket_group] = STATE(515), + [sym_paren_group] = STATE(515), + [aux_sym_generic_command_repeat1] = STATE(515), + [sym_generic_command_name] = ACTIONS(11990), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(11990), + [aux_sym_subsection_token1] = ACTIONS(11990), + [aux_sym_subsubsection_token1] = ACTIONS(11990), + [aux_sym_paragraph_token1] = ACTIONS(11990), + [aux_sym_subparagraph_token1] = ACTIONS(11990), + [anon_sym_BSLASHitem] = ACTIONS(11990), + [anon_sym_LBRACK] = ACTIONS(12110), + [anon_sym_RBRACK] = ACTIONS(11988), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(11988), + [anon_sym_LPAREN] = ACTIONS(12112), + [anon_sym_COMMA] = ACTIONS(11988), + [anon_sym_EQ] = ACTIONS(11988), + [sym_word] = ACTIONS(11988), + [sym_param] = ACTIONS(11988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11988), + [anon_sym_DOLLAR] = ACTIONS(11990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11988), + [anon_sym_BSLASHbegin] = ACTIONS(11990), + [anon_sym_BSLASHcaption] = ACTIONS(11990), + [anon_sym_BSLASHcite] = ACTIONS(11990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCite] = ACTIONS(11990), + [anon_sym_BSLASHnocite] = ACTIONS(11990), + [anon_sym_BSLASHcitet] = ACTIONS(11990), + [anon_sym_BSLASHcitep] = ACTIONS(11990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteauthor] = ACTIONS(11990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitetitle] = ACTIONS(11990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteyear] = ACTIONS(11990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitedate] = ACTIONS(11990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteurl] = ACTIONS(11990), + [anon_sym_BSLASHfullcite] = ACTIONS(11990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11990), + [anon_sym_BSLASHcitealt] = ACTIONS(11990), + [anon_sym_BSLASHcitealp] = ACTIONS(11990), + [anon_sym_BSLASHcitetext] = ACTIONS(11990), + [anon_sym_BSLASHparencite] = ACTIONS(11990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHParencite] = ACTIONS(11990), + [anon_sym_BSLASHfootcite] = ACTIONS(11990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11990), + [anon_sym_BSLASHtextcite] = ACTIONS(11990), + [anon_sym_BSLASHTextcite] = ACTIONS(11990), + [anon_sym_BSLASHsmartcite] = ACTIONS(11990), + [anon_sym_BSLASHSmartcite] = ACTIONS(11990), + [anon_sym_BSLASHsupercite] = ACTIONS(11990), + [anon_sym_BSLASHautocite] = ACTIONS(11990), + [anon_sym_BSLASHAutocite] = ACTIONS(11990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHvolcite] = ACTIONS(11990), + [anon_sym_BSLASHVolcite] = ACTIONS(11990), + [anon_sym_BSLASHpvolcite] = ACTIONS(11990), + [anon_sym_BSLASHPvolcite] = ACTIONS(11990), + [anon_sym_BSLASHfvolcite] = ACTIONS(11990), + [anon_sym_BSLASHftvolcite] = ACTIONS(11990), + [anon_sym_BSLASHsvolcite] = ACTIONS(11990), + [anon_sym_BSLASHSvolcite] = ACTIONS(11990), + [anon_sym_BSLASHtvolcite] = ACTIONS(11990), + [anon_sym_BSLASHTvolcite] = ACTIONS(11990), + [anon_sym_BSLASHavolcite] = ACTIONS(11990), + [anon_sym_BSLASHAvolcite] = ACTIONS(11990), + [anon_sym_BSLASHnotecite] = ACTIONS(11990), + [anon_sym_BSLASHpnotecite] = ACTIONS(11990), + [anon_sym_BSLASHPnotecite] = ACTIONS(11990), + [anon_sym_BSLASHfnotecite] = ACTIONS(11990), + [anon_sym_BSLASHusepackage] = ACTIONS(11990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11990), + [anon_sym_BSLASHinclude] = ACTIONS(11990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11990), + [anon_sym_BSLASHinput] = ACTIONS(11990), + [anon_sym_BSLASHsubfile] = ACTIONS(11990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11990), + [anon_sym_BSLASHbibliography] = ACTIONS(11990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11990), + [anon_sym_BSLASHincludesvg] = ACTIONS(11990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11990), + [anon_sym_BSLASHimport] = ACTIONS(11990), + [anon_sym_BSLASHsubimport] = ACTIONS(11990), + [anon_sym_BSLASHinputfrom] = ACTIONS(11990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11990), + [anon_sym_BSLASHincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHlabel] = ACTIONS(11990), + [anon_sym_BSLASHref] = ACTIONS(11990), + [anon_sym_BSLASHvref] = ACTIONS(11990), + [anon_sym_BSLASHVref] = ACTIONS(11990), + [anon_sym_BSLASHautoref] = ACTIONS(11990), + [anon_sym_BSLASHpageref] = ACTIONS(11990), + [anon_sym_BSLASHcref] = ACTIONS(11990), + [anon_sym_BSLASHCref] = ACTIONS(11990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnameCref] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHlabelcref] = ACTIONS(11990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11990), + [anon_sym_BSLASHeqref] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange] = ACTIONS(11990), + [anon_sym_BSLASHCrefrange] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewlabel] = ACTIONS(11990), + [anon_sym_BSLASHnewcommand] = ACTIONS(11990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11990), + [anon_sym_BSLASHgls] = ACTIONS(11990), + [anon_sym_BSLASHGls] = ACTIONS(11990), + [anon_sym_BSLASHGLS] = ACTIONS(11990), + [anon_sym_BSLASHglspl] = ACTIONS(11990), + [anon_sym_BSLASHGlspl] = ACTIONS(11990), + [anon_sym_BSLASHGLSpl] = ACTIONS(11990), + [anon_sym_BSLASHglsdisp] = ACTIONS(11990), + [anon_sym_BSLASHglslink] = ACTIONS(11990), + [anon_sym_BSLASHglstext] = ACTIONS(11990), + [anon_sym_BSLASHGlstext] = ACTIONS(11990), + [anon_sym_BSLASHGLStext] = ACTIONS(11990), + [anon_sym_BSLASHglsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11990), + [anon_sym_BSLASHglsplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSplural] = ACTIONS(11990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHglsname] = ACTIONS(11990), + [anon_sym_BSLASHGlsname] = ACTIONS(11990), + [anon_sym_BSLASHGLSname] = ACTIONS(11990), + [anon_sym_BSLASHglssymbol] = ACTIONS(11990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11990), + [anon_sym_BSLASHglsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11990), + [anon_sym_BSLASHglsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11990), + [anon_sym_BSLASHglsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11990), + [anon_sym_BSLASHglsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11990), + [anon_sym_BSLASHglsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11990), + [anon_sym_BSLASHnewacronym] = ACTIONS(11990), + [anon_sym_BSLASHacrshort] = ACTIONS(11990), + [anon_sym_BSLASHAcrshort] = ACTIONS(11990), + [anon_sym_BSLASHACRshort] = ACTIONS(11990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11990), + [anon_sym_BSLASHacrlong] = ACTIONS(11990), + [anon_sym_BSLASHAcrlong] = ACTIONS(11990), + [anon_sym_BSLASHACRlong] = ACTIONS(11990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11990), + [anon_sym_BSLASHacrfull] = ACTIONS(11990), + [anon_sym_BSLASHAcrfull] = ACTIONS(11990), + [anon_sym_BSLASHACRfull] = ACTIONS(11990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11990), + [anon_sym_BSLASHacs] = ACTIONS(11990), + [anon_sym_BSLASHAcs] = ACTIONS(11990), + [anon_sym_BSLASHacsp] = ACTIONS(11990), + [anon_sym_BSLASHAcsp] = ACTIONS(11990), + [anon_sym_BSLASHacl] = ACTIONS(11990), + [anon_sym_BSLASHAcl] = ACTIONS(11990), + [anon_sym_BSLASHaclp] = ACTIONS(11990), + [anon_sym_BSLASHAclp] = ACTIONS(11990), + [anon_sym_BSLASHacf] = ACTIONS(11990), + [anon_sym_BSLASHAcf] = ACTIONS(11990), + [anon_sym_BSLASHacfp] = ACTIONS(11990), + [anon_sym_BSLASHAcfp] = ACTIONS(11990), + [anon_sym_BSLASHac] = ACTIONS(11990), + [anon_sym_BSLASHAc] = ACTIONS(11990), + [anon_sym_BSLASHacp] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11990), + [anon_sym_BSLASHcolor] = ACTIONS(11990), + [anon_sym_BSLASHcolorbox] = ACTIONS(11990), + [anon_sym_BSLASHtextcolor] = ACTIONS(11990), + [anon_sym_BSLASHpagecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11990), + }, + [498] = { + [ts_builtin_sym_end] = ACTIONS(12114), + [sym_generic_command_name] = ACTIONS(12116), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12116), + [aux_sym_chapter_token1] = ACTIONS(12116), + [aux_sym_section_token1] = ACTIONS(12116), + [aux_sym_subsection_token1] = ACTIONS(12116), + [aux_sym_subsubsection_token1] = ACTIONS(12116), + [aux_sym_paragraph_token1] = ACTIONS(12116), + [aux_sym_subparagraph_token1] = ACTIONS(12116), + [anon_sym_BSLASHitem] = ACTIONS(12116), + [anon_sym_LBRACK] = ACTIONS(12114), + [anon_sym_RBRACK] = ACTIONS(12114), + [anon_sym_LBRACE] = ACTIONS(12114), + [anon_sym_RBRACE] = ACTIONS(12114), + [anon_sym_LPAREN] = ACTIONS(12114), + [anon_sym_RPAREN] = ACTIONS(12114), + [anon_sym_COMMA] = ACTIONS(12114), + [anon_sym_EQ] = ACTIONS(12114), + [sym_word] = ACTIONS(12114), + [sym_param] = ACTIONS(12114), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12114), + [anon_sym_DOLLAR] = ACTIONS(12116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12114), + [anon_sym_BSLASHbegin] = ACTIONS(12116), + [anon_sym_BSLASHcaption] = ACTIONS(12116), + [anon_sym_BSLASHcite] = ACTIONS(12116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCite] = ACTIONS(12116), + [anon_sym_BSLASHnocite] = ACTIONS(12116), + [anon_sym_BSLASHcitet] = ACTIONS(12116), + [anon_sym_BSLASHcitep] = ACTIONS(12116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteauthor] = ACTIONS(12116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitetitle] = ACTIONS(12116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteyear] = ACTIONS(12116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitedate] = ACTIONS(12116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteurl] = ACTIONS(12116), + [anon_sym_BSLASHfullcite] = ACTIONS(12116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12116), + [anon_sym_BSLASHcitealt] = ACTIONS(12116), + [anon_sym_BSLASHcitealp] = ACTIONS(12116), + [anon_sym_BSLASHcitetext] = ACTIONS(12116), + [anon_sym_BSLASHparencite] = ACTIONS(12116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHParencite] = ACTIONS(12116), + [anon_sym_BSLASHfootcite] = ACTIONS(12116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12116), + [anon_sym_BSLASHtextcite] = ACTIONS(12116), + [anon_sym_BSLASHTextcite] = ACTIONS(12116), + [anon_sym_BSLASHsmartcite] = ACTIONS(12116), + [anon_sym_BSLASHSmartcite] = ACTIONS(12116), + [anon_sym_BSLASHsupercite] = ACTIONS(12116), + [anon_sym_BSLASHautocite] = ACTIONS(12116), + [anon_sym_BSLASHAutocite] = ACTIONS(12116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHvolcite] = ACTIONS(12116), + [anon_sym_BSLASHVolcite] = ACTIONS(12116), + [anon_sym_BSLASHpvolcite] = ACTIONS(12116), + [anon_sym_BSLASHPvolcite] = ACTIONS(12116), + [anon_sym_BSLASHfvolcite] = ACTIONS(12116), + [anon_sym_BSLASHftvolcite] = ACTIONS(12116), + [anon_sym_BSLASHsvolcite] = ACTIONS(12116), + [anon_sym_BSLASHSvolcite] = ACTIONS(12116), + [anon_sym_BSLASHtvolcite] = ACTIONS(12116), + [anon_sym_BSLASHTvolcite] = ACTIONS(12116), + [anon_sym_BSLASHavolcite] = ACTIONS(12116), + [anon_sym_BSLASHAvolcite] = ACTIONS(12116), + [anon_sym_BSLASHnotecite] = ACTIONS(12116), + [anon_sym_BSLASHpnotecite] = ACTIONS(12116), + [anon_sym_BSLASHPnotecite] = ACTIONS(12116), + [anon_sym_BSLASHfnotecite] = ACTIONS(12116), + [anon_sym_BSLASHusepackage] = ACTIONS(12116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12116), + [anon_sym_BSLASHinclude] = ACTIONS(12116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12116), + [anon_sym_BSLASHinput] = ACTIONS(12116), + [anon_sym_BSLASHsubfile] = ACTIONS(12116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12116), + [anon_sym_BSLASHbibliography] = ACTIONS(12116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12116), + [anon_sym_BSLASHincludesvg] = ACTIONS(12116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12116), + [anon_sym_BSLASHimport] = ACTIONS(12116), + [anon_sym_BSLASHsubimport] = ACTIONS(12116), + [anon_sym_BSLASHinputfrom] = ACTIONS(12116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12116), + [anon_sym_BSLASHincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHlabel] = ACTIONS(12116), + [anon_sym_BSLASHref] = ACTIONS(12116), + [anon_sym_BSLASHvref] = ACTIONS(12116), + [anon_sym_BSLASHVref] = ACTIONS(12116), + [anon_sym_BSLASHautoref] = ACTIONS(12116), + [anon_sym_BSLASHpageref] = ACTIONS(12116), + [anon_sym_BSLASHcref] = ACTIONS(12116), + [anon_sym_BSLASHCref] = ACTIONS(12116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnameCref] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHlabelcref] = ACTIONS(12116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12116), + [anon_sym_BSLASHeqref] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange] = ACTIONS(12116), + [anon_sym_BSLASHCrefrange] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewlabel] = ACTIONS(12116), + [anon_sym_BSLASHnewcommand] = ACTIONS(12116), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12116), + [anon_sym_BSLASHgls] = ACTIONS(12116), + [anon_sym_BSLASHGls] = ACTIONS(12116), + [anon_sym_BSLASHGLS] = ACTIONS(12116), + [anon_sym_BSLASHglspl] = ACTIONS(12116), + [anon_sym_BSLASHGlspl] = ACTIONS(12116), + [anon_sym_BSLASHGLSpl] = ACTIONS(12116), + [anon_sym_BSLASHglsdisp] = ACTIONS(12116), + [anon_sym_BSLASHglslink] = ACTIONS(12116), + [anon_sym_BSLASHglstext] = ACTIONS(12116), + [anon_sym_BSLASHGlstext] = ACTIONS(12116), + [anon_sym_BSLASHGLStext] = ACTIONS(12116), + [anon_sym_BSLASHglsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12116), + [anon_sym_BSLASHglsplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSplural] = ACTIONS(12116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHglsname] = ACTIONS(12116), + [anon_sym_BSLASHGlsname] = ACTIONS(12116), + [anon_sym_BSLASHGLSname] = ACTIONS(12116), + [anon_sym_BSLASHglssymbol] = ACTIONS(12116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12116), + [anon_sym_BSLASHglsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12116), + [anon_sym_BSLASHglsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12116), + [anon_sym_BSLASHglsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12116), + [anon_sym_BSLASHglsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12116), + [anon_sym_BSLASHglsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12116), + [anon_sym_BSLASHnewacronym] = ACTIONS(12116), + [anon_sym_BSLASHacrshort] = ACTIONS(12116), + [anon_sym_BSLASHAcrshort] = ACTIONS(12116), + [anon_sym_BSLASHACRshort] = ACTIONS(12116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12116), + [anon_sym_BSLASHacrlong] = ACTIONS(12116), + [anon_sym_BSLASHAcrlong] = ACTIONS(12116), + [anon_sym_BSLASHACRlong] = ACTIONS(12116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12116), + [anon_sym_BSLASHacrfull] = ACTIONS(12116), + [anon_sym_BSLASHAcrfull] = ACTIONS(12116), + [anon_sym_BSLASHACRfull] = ACTIONS(12116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12116), + [anon_sym_BSLASHacs] = ACTIONS(12116), + [anon_sym_BSLASHAcs] = ACTIONS(12116), + [anon_sym_BSLASHacsp] = ACTIONS(12116), + [anon_sym_BSLASHAcsp] = ACTIONS(12116), + [anon_sym_BSLASHacl] = ACTIONS(12116), + [anon_sym_BSLASHAcl] = ACTIONS(12116), + [anon_sym_BSLASHaclp] = ACTIONS(12116), + [anon_sym_BSLASHAclp] = ACTIONS(12116), + [anon_sym_BSLASHacf] = ACTIONS(12116), + [anon_sym_BSLASHAcf] = ACTIONS(12116), + [anon_sym_BSLASHacfp] = ACTIONS(12116), + [anon_sym_BSLASHAcfp] = ACTIONS(12116), + [anon_sym_BSLASHac] = ACTIONS(12116), + [anon_sym_BSLASHAc] = ACTIONS(12116), + [anon_sym_BSLASHacp] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12116), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12116), + [anon_sym_BSLASHcolor] = ACTIONS(12116), + [anon_sym_BSLASHcolorbox] = ACTIONS(12116), + [anon_sym_BSLASHtextcolor] = ACTIONS(12116), + [anon_sym_BSLASHpagecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12116), + }, + [499] = { + [ts_builtin_sym_end] = ACTIONS(12118), + [sym_generic_command_name] = ACTIONS(12120), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12120), + [aux_sym_chapter_token1] = ACTIONS(12120), + [aux_sym_section_token1] = ACTIONS(12120), + [aux_sym_subsection_token1] = ACTIONS(12120), + [aux_sym_subsubsection_token1] = ACTIONS(12120), + [aux_sym_paragraph_token1] = ACTIONS(12120), + [aux_sym_subparagraph_token1] = ACTIONS(12120), + [anon_sym_BSLASHitem] = ACTIONS(12120), + [anon_sym_LBRACK] = ACTIONS(12118), + [anon_sym_RBRACK] = ACTIONS(12118), + [anon_sym_LBRACE] = ACTIONS(12118), + [anon_sym_RBRACE] = ACTIONS(12118), + [anon_sym_LPAREN] = ACTIONS(12118), + [anon_sym_RPAREN] = ACTIONS(12118), + [anon_sym_COMMA] = ACTIONS(12118), + [anon_sym_EQ] = ACTIONS(12118), + [sym_word] = ACTIONS(12118), + [sym_param] = ACTIONS(12118), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12118), + [anon_sym_DOLLAR] = ACTIONS(12120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12118), + [anon_sym_BSLASHbegin] = ACTIONS(12120), + [anon_sym_BSLASHcaption] = ACTIONS(12120), + [anon_sym_BSLASHcite] = ACTIONS(12120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCite] = ACTIONS(12120), + [anon_sym_BSLASHnocite] = ACTIONS(12120), + [anon_sym_BSLASHcitet] = ACTIONS(12120), + [anon_sym_BSLASHcitep] = ACTIONS(12120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteauthor] = ACTIONS(12120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitetitle] = ACTIONS(12120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteyear] = ACTIONS(12120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitedate] = ACTIONS(12120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteurl] = ACTIONS(12120), + [anon_sym_BSLASHfullcite] = ACTIONS(12120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12120), + [anon_sym_BSLASHcitealt] = ACTIONS(12120), + [anon_sym_BSLASHcitealp] = ACTIONS(12120), + [anon_sym_BSLASHcitetext] = ACTIONS(12120), + [anon_sym_BSLASHparencite] = ACTIONS(12120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHParencite] = ACTIONS(12120), + [anon_sym_BSLASHfootcite] = ACTIONS(12120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12120), + [anon_sym_BSLASHtextcite] = ACTIONS(12120), + [anon_sym_BSLASHTextcite] = ACTIONS(12120), + [anon_sym_BSLASHsmartcite] = ACTIONS(12120), + [anon_sym_BSLASHSmartcite] = ACTIONS(12120), + [anon_sym_BSLASHsupercite] = ACTIONS(12120), + [anon_sym_BSLASHautocite] = ACTIONS(12120), + [anon_sym_BSLASHAutocite] = ACTIONS(12120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHvolcite] = ACTIONS(12120), + [anon_sym_BSLASHVolcite] = ACTIONS(12120), + [anon_sym_BSLASHpvolcite] = ACTIONS(12120), + [anon_sym_BSLASHPvolcite] = ACTIONS(12120), + [anon_sym_BSLASHfvolcite] = ACTIONS(12120), + [anon_sym_BSLASHftvolcite] = ACTIONS(12120), + [anon_sym_BSLASHsvolcite] = ACTIONS(12120), + [anon_sym_BSLASHSvolcite] = ACTIONS(12120), + [anon_sym_BSLASHtvolcite] = ACTIONS(12120), + [anon_sym_BSLASHTvolcite] = ACTIONS(12120), + [anon_sym_BSLASHavolcite] = ACTIONS(12120), + [anon_sym_BSLASHAvolcite] = ACTIONS(12120), + [anon_sym_BSLASHnotecite] = ACTIONS(12120), + [anon_sym_BSLASHpnotecite] = ACTIONS(12120), + [anon_sym_BSLASHPnotecite] = ACTIONS(12120), + [anon_sym_BSLASHfnotecite] = ACTIONS(12120), + [anon_sym_BSLASHusepackage] = ACTIONS(12120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12120), + [anon_sym_BSLASHinclude] = ACTIONS(12120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12120), + [anon_sym_BSLASHinput] = ACTIONS(12120), + [anon_sym_BSLASHsubfile] = ACTIONS(12120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12120), + [anon_sym_BSLASHbibliography] = ACTIONS(12120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12120), + [anon_sym_BSLASHincludesvg] = ACTIONS(12120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12120), + [anon_sym_BSLASHimport] = ACTIONS(12120), + [anon_sym_BSLASHsubimport] = ACTIONS(12120), + [anon_sym_BSLASHinputfrom] = ACTIONS(12120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12120), + [anon_sym_BSLASHincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHlabel] = ACTIONS(12120), + [anon_sym_BSLASHref] = ACTIONS(12120), + [anon_sym_BSLASHvref] = ACTIONS(12120), + [anon_sym_BSLASHVref] = ACTIONS(12120), + [anon_sym_BSLASHautoref] = ACTIONS(12120), + [anon_sym_BSLASHpageref] = ACTIONS(12120), + [anon_sym_BSLASHcref] = ACTIONS(12120), + [anon_sym_BSLASHCref] = ACTIONS(12120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnameCref] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHlabelcref] = ACTIONS(12120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12120), + [anon_sym_BSLASHeqref] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange] = ACTIONS(12120), + [anon_sym_BSLASHCrefrange] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewlabel] = ACTIONS(12120), + [anon_sym_BSLASHnewcommand] = ACTIONS(12120), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12120), + [anon_sym_BSLASHgls] = ACTIONS(12120), + [anon_sym_BSLASHGls] = ACTIONS(12120), + [anon_sym_BSLASHGLS] = ACTIONS(12120), + [anon_sym_BSLASHglspl] = ACTIONS(12120), + [anon_sym_BSLASHGlspl] = ACTIONS(12120), + [anon_sym_BSLASHGLSpl] = ACTIONS(12120), + [anon_sym_BSLASHglsdisp] = ACTIONS(12120), + [anon_sym_BSLASHglslink] = ACTIONS(12120), + [anon_sym_BSLASHglstext] = ACTIONS(12120), + [anon_sym_BSLASHGlstext] = ACTIONS(12120), + [anon_sym_BSLASHGLStext] = ACTIONS(12120), + [anon_sym_BSLASHglsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12120), + [anon_sym_BSLASHglsplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSplural] = ACTIONS(12120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHglsname] = ACTIONS(12120), + [anon_sym_BSLASHGlsname] = ACTIONS(12120), + [anon_sym_BSLASHGLSname] = ACTIONS(12120), + [anon_sym_BSLASHglssymbol] = ACTIONS(12120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12120), + [anon_sym_BSLASHglsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12120), + [anon_sym_BSLASHglsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12120), + [anon_sym_BSLASHglsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12120), + [anon_sym_BSLASHglsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12120), + [anon_sym_BSLASHglsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12120), + [anon_sym_BSLASHnewacronym] = ACTIONS(12120), + [anon_sym_BSLASHacrshort] = ACTIONS(12120), + [anon_sym_BSLASHAcrshort] = ACTIONS(12120), + [anon_sym_BSLASHACRshort] = ACTIONS(12120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12120), + [anon_sym_BSLASHacrlong] = ACTIONS(12120), + [anon_sym_BSLASHAcrlong] = ACTIONS(12120), + [anon_sym_BSLASHACRlong] = ACTIONS(12120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12120), + [anon_sym_BSLASHacrfull] = ACTIONS(12120), + [anon_sym_BSLASHAcrfull] = ACTIONS(12120), + [anon_sym_BSLASHACRfull] = ACTIONS(12120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12120), + [anon_sym_BSLASHacs] = ACTIONS(12120), + [anon_sym_BSLASHAcs] = ACTIONS(12120), + [anon_sym_BSLASHacsp] = ACTIONS(12120), + [anon_sym_BSLASHAcsp] = ACTIONS(12120), + [anon_sym_BSLASHacl] = ACTIONS(12120), + [anon_sym_BSLASHAcl] = ACTIONS(12120), + [anon_sym_BSLASHaclp] = ACTIONS(12120), + [anon_sym_BSLASHAclp] = ACTIONS(12120), + [anon_sym_BSLASHacf] = ACTIONS(12120), + [anon_sym_BSLASHAcf] = ACTIONS(12120), + [anon_sym_BSLASHacfp] = ACTIONS(12120), + [anon_sym_BSLASHAcfp] = ACTIONS(12120), + [anon_sym_BSLASHac] = ACTIONS(12120), + [anon_sym_BSLASHAc] = ACTIONS(12120), + [anon_sym_BSLASHacp] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12120), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12120), + [anon_sym_BSLASHcolor] = ACTIONS(12120), + [anon_sym_BSLASHcolorbox] = ACTIONS(12120), + [anon_sym_BSLASHtextcolor] = ACTIONS(12120), + [anon_sym_BSLASHpagecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12120), + }, + [500] = { + [ts_builtin_sym_end] = ACTIONS(12122), + [sym_generic_command_name] = ACTIONS(12124), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12124), + [aux_sym_chapter_token1] = ACTIONS(12124), + [aux_sym_section_token1] = ACTIONS(12124), + [aux_sym_subsection_token1] = ACTIONS(12124), + [aux_sym_subsubsection_token1] = ACTIONS(12124), + [aux_sym_paragraph_token1] = ACTIONS(12124), + [aux_sym_subparagraph_token1] = ACTIONS(12124), + [anon_sym_BSLASHitem] = ACTIONS(12124), + [anon_sym_LBRACK] = ACTIONS(12122), + [anon_sym_RBRACK] = ACTIONS(12122), + [anon_sym_LBRACE] = ACTIONS(12122), + [anon_sym_RBRACE] = ACTIONS(12122), + [anon_sym_LPAREN] = ACTIONS(12122), + [anon_sym_RPAREN] = ACTIONS(12122), + [anon_sym_COMMA] = ACTIONS(12122), + [anon_sym_EQ] = ACTIONS(12122), + [sym_word] = ACTIONS(12122), + [sym_param] = ACTIONS(12122), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12122), + [anon_sym_DOLLAR] = ACTIONS(12124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12122), + [anon_sym_BSLASHbegin] = ACTIONS(12124), + [anon_sym_BSLASHcaption] = ACTIONS(12124), + [anon_sym_BSLASHcite] = ACTIONS(12124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCite] = ACTIONS(12124), + [anon_sym_BSLASHnocite] = ACTIONS(12124), + [anon_sym_BSLASHcitet] = ACTIONS(12124), + [anon_sym_BSLASHcitep] = ACTIONS(12124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteauthor] = ACTIONS(12124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitetitle] = ACTIONS(12124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteyear] = ACTIONS(12124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitedate] = ACTIONS(12124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteurl] = ACTIONS(12124), + [anon_sym_BSLASHfullcite] = ACTIONS(12124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12124), + [anon_sym_BSLASHcitealt] = ACTIONS(12124), + [anon_sym_BSLASHcitealp] = ACTIONS(12124), + [anon_sym_BSLASHcitetext] = ACTIONS(12124), + [anon_sym_BSLASHparencite] = ACTIONS(12124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHParencite] = ACTIONS(12124), + [anon_sym_BSLASHfootcite] = ACTIONS(12124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12124), + [anon_sym_BSLASHtextcite] = ACTIONS(12124), + [anon_sym_BSLASHTextcite] = ACTIONS(12124), + [anon_sym_BSLASHsmartcite] = ACTIONS(12124), + [anon_sym_BSLASHSmartcite] = ACTIONS(12124), + [anon_sym_BSLASHsupercite] = ACTIONS(12124), + [anon_sym_BSLASHautocite] = ACTIONS(12124), + [anon_sym_BSLASHAutocite] = ACTIONS(12124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHvolcite] = ACTIONS(12124), + [anon_sym_BSLASHVolcite] = ACTIONS(12124), + [anon_sym_BSLASHpvolcite] = ACTIONS(12124), + [anon_sym_BSLASHPvolcite] = ACTIONS(12124), + [anon_sym_BSLASHfvolcite] = ACTIONS(12124), + [anon_sym_BSLASHftvolcite] = ACTIONS(12124), + [anon_sym_BSLASHsvolcite] = ACTIONS(12124), + [anon_sym_BSLASHSvolcite] = ACTIONS(12124), + [anon_sym_BSLASHtvolcite] = ACTIONS(12124), + [anon_sym_BSLASHTvolcite] = ACTIONS(12124), + [anon_sym_BSLASHavolcite] = ACTIONS(12124), + [anon_sym_BSLASHAvolcite] = ACTIONS(12124), + [anon_sym_BSLASHnotecite] = ACTIONS(12124), + [anon_sym_BSLASHpnotecite] = ACTIONS(12124), + [anon_sym_BSLASHPnotecite] = ACTIONS(12124), + [anon_sym_BSLASHfnotecite] = ACTIONS(12124), + [anon_sym_BSLASHusepackage] = ACTIONS(12124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12124), + [anon_sym_BSLASHinclude] = ACTIONS(12124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12124), + [anon_sym_BSLASHinput] = ACTIONS(12124), + [anon_sym_BSLASHsubfile] = ACTIONS(12124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12124), + [anon_sym_BSLASHbibliography] = ACTIONS(12124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12124), + [anon_sym_BSLASHincludesvg] = ACTIONS(12124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12124), + [anon_sym_BSLASHimport] = ACTIONS(12124), + [anon_sym_BSLASHsubimport] = ACTIONS(12124), + [anon_sym_BSLASHinputfrom] = ACTIONS(12124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12124), + [anon_sym_BSLASHincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHlabel] = ACTIONS(12124), + [anon_sym_BSLASHref] = ACTIONS(12124), + [anon_sym_BSLASHvref] = ACTIONS(12124), + [anon_sym_BSLASHVref] = ACTIONS(12124), + [anon_sym_BSLASHautoref] = ACTIONS(12124), + [anon_sym_BSLASHpageref] = ACTIONS(12124), + [anon_sym_BSLASHcref] = ACTIONS(12124), + [anon_sym_BSLASHCref] = ACTIONS(12124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnameCref] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHlabelcref] = ACTIONS(12124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12124), + [anon_sym_BSLASHeqref] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange] = ACTIONS(12124), + [anon_sym_BSLASHCrefrange] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewlabel] = ACTIONS(12124), + [anon_sym_BSLASHnewcommand] = ACTIONS(12124), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12124), + [anon_sym_BSLASHgls] = ACTIONS(12124), + [anon_sym_BSLASHGls] = ACTIONS(12124), + [anon_sym_BSLASHGLS] = ACTIONS(12124), + [anon_sym_BSLASHglspl] = ACTIONS(12124), + [anon_sym_BSLASHGlspl] = ACTIONS(12124), + [anon_sym_BSLASHGLSpl] = ACTIONS(12124), + [anon_sym_BSLASHglsdisp] = ACTIONS(12124), + [anon_sym_BSLASHglslink] = ACTIONS(12124), + [anon_sym_BSLASHglstext] = ACTIONS(12124), + [anon_sym_BSLASHGlstext] = ACTIONS(12124), + [anon_sym_BSLASHGLStext] = ACTIONS(12124), + [anon_sym_BSLASHglsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12124), + [anon_sym_BSLASHglsplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSplural] = ACTIONS(12124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHglsname] = ACTIONS(12124), + [anon_sym_BSLASHGlsname] = ACTIONS(12124), + [anon_sym_BSLASHGLSname] = ACTIONS(12124), + [anon_sym_BSLASHglssymbol] = ACTIONS(12124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12124), + [anon_sym_BSLASHglsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12124), + [anon_sym_BSLASHglsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12124), + [anon_sym_BSLASHglsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12124), + [anon_sym_BSLASHglsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12124), + [anon_sym_BSLASHglsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12124), + [anon_sym_BSLASHnewacronym] = ACTIONS(12124), + [anon_sym_BSLASHacrshort] = ACTIONS(12124), + [anon_sym_BSLASHAcrshort] = ACTIONS(12124), + [anon_sym_BSLASHACRshort] = ACTIONS(12124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12124), + [anon_sym_BSLASHacrlong] = ACTIONS(12124), + [anon_sym_BSLASHAcrlong] = ACTIONS(12124), + [anon_sym_BSLASHACRlong] = ACTIONS(12124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12124), + [anon_sym_BSLASHacrfull] = ACTIONS(12124), + [anon_sym_BSLASHAcrfull] = ACTIONS(12124), + [anon_sym_BSLASHACRfull] = ACTIONS(12124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12124), + [anon_sym_BSLASHacs] = ACTIONS(12124), + [anon_sym_BSLASHAcs] = ACTIONS(12124), + [anon_sym_BSLASHacsp] = ACTIONS(12124), + [anon_sym_BSLASHAcsp] = ACTIONS(12124), + [anon_sym_BSLASHacl] = ACTIONS(12124), + [anon_sym_BSLASHAcl] = ACTIONS(12124), + [anon_sym_BSLASHaclp] = ACTIONS(12124), + [anon_sym_BSLASHAclp] = ACTIONS(12124), + [anon_sym_BSLASHacf] = ACTIONS(12124), + [anon_sym_BSLASHAcf] = ACTIONS(12124), + [anon_sym_BSLASHacfp] = ACTIONS(12124), + [anon_sym_BSLASHAcfp] = ACTIONS(12124), + [anon_sym_BSLASHac] = ACTIONS(12124), + [anon_sym_BSLASHAc] = ACTIONS(12124), + [anon_sym_BSLASHacp] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12124), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12124), + [anon_sym_BSLASHcolor] = ACTIONS(12124), + [anon_sym_BSLASHcolorbox] = ACTIONS(12124), + [anon_sym_BSLASHtextcolor] = ACTIONS(12124), + [anon_sym_BSLASHpagecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12124), + }, + [501] = { + [ts_builtin_sym_end] = ACTIONS(12126), + [sym_generic_command_name] = ACTIONS(12128), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12128), + [aux_sym_chapter_token1] = ACTIONS(12128), + [aux_sym_section_token1] = ACTIONS(12128), + [aux_sym_subsection_token1] = ACTIONS(12128), + [aux_sym_subsubsection_token1] = ACTIONS(12128), + [aux_sym_paragraph_token1] = ACTIONS(12128), + [aux_sym_subparagraph_token1] = ACTIONS(12128), + [anon_sym_BSLASHitem] = ACTIONS(12128), + [anon_sym_LBRACK] = ACTIONS(12126), + [anon_sym_RBRACK] = ACTIONS(12126), + [anon_sym_LBRACE] = ACTIONS(12126), + [anon_sym_RBRACE] = ACTIONS(12126), + [anon_sym_LPAREN] = ACTIONS(12126), + [anon_sym_RPAREN] = ACTIONS(12126), + [anon_sym_COMMA] = ACTIONS(12126), + [anon_sym_EQ] = ACTIONS(12126), + [sym_word] = ACTIONS(12126), + [sym_param] = ACTIONS(12126), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12126), + [anon_sym_DOLLAR] = ACTIONS(12128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12126), + [anon_sym_BSLASHbegin] = ACTIONS(12128), + [anon_sym_BSLASHcaption] = ACTIONS(12128), + [anon_sym_BSLASHcite] = ACTIONS(12128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCite] = ACTIONS(12128), + [anon_sym_BSLASHnocite] = ACTIONS(12128), + [anon_sym_BSLASHcitet] = ACTIONS(12128), + [anon_sym_BSLASHcitep] = ACTIONS(12128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteauthor] = ACTIONS(12128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitetitle] = ACTIONS(12128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteyear] = ACTIONS(12128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitedate] = ACTIONS(12128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteurl] = ACTIONS(12128), + [anon_sym_BSLASHfullcite] = ACTIONS(12128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12128), + [anon_sym_BSLASHcitealt] = ACTIONS(12128), + [anon_sym_BSLASHcitealp] = ACTIONS(12128), + [anon_sym_BSLASHcitetext] = ACTIONS(12128), + [anon_sym_BSLASHparencite] = ACTIONS(12128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHParencite] = ACTIONS(12128), + [anon_sym_BSLASHfootcite] = ACTIONS(12128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12128), + [anon_sym_BSLASHtextcite] = ACTIONS(12128), + [anon_sym_BSLASHTextcite] = ACTIONS(12128), + [anon_sym_BSLASHsmartcite] = ACTIONS(12128), + [anon_sym_BSLASHSmartcite] = ACTIONS(12128), + [anon_sym_BSLASHsupercite] = ACTIONS(12128), + [anon_sym_BSLASHautocite] = ACTIONS(12128), + [anon_sym_BSLASHAutocite] = ACTIONS(12128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHvolcite] = ACTIONS(12128), + [anon_sym_BSLASHVolcite] = ACTIONS(12128), + [anon_sym_BSLASHpvolcite] = ACTIONS(12128), + [anon_sym_BSLASHPvolcite] = ACTIONS(12128), + [anon_sym_BSLASHfvolcite] = ACTIONS(12128), + [anon_sym_BSLASHftvolcite] = ACTIONS(12128), + [anon_sym_BSLASHsvolcite] = ACTIONS(12128), + [anon_sym_BSLASHSvolcite] = ACTIONS(12128), + [anon_sym_BSLASHtvolcite] = ACTIONS(12128), + [anon_sym_BSLASHTvolcite] = ACTIONS(12128), + [anon_sym_BSLASHavolcite] = ACTIONS(12128), + [anon_sym_BSLASHAvolcite] = ACTIONS(12128), + [anon_sym_BSLASHnotecite] = ACTIONS(12128), + [anon_sym_BSLASHpnotecite] = ACTIONS(12128), + [anon_sym_BSLASHPnotecite] = ACTIONS(12128), + [anon_sym_BSLASHfnotecite] = ACTIONS(12128), + [anon_sym_BSLASHusepackage] = ACTIONS(12128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12128), + [anon_sym_BSLASHinclude] = ACTIONS(12128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12128), + [anon_sym_BSLASHinput] = ACTIONS(12128), + [anon_sym_BSLASHsubfile] = ACTIONS(12128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12128), + [anon_sym_BSLASHbibliography] = ACTIONS(12128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12128), + [anon_sym_BSLASHincludesvg] = ACTIONS(12128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12128), + [anon_sym_BSLASHimport] = ACTIONS(12128), + [anon_sym_BSLASHsubimport] = ACTIONS(12128), + [anon_sym_BSLASHinputfrom] = ACTIONS(12128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12128), + [anon_sym_BSLASHincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHlabel] = ACTIONS(12128), + [anon_sym_BSLASHref] = ACTIONS(12128), + [anon_sym_BSLASHvref] = ACTIONS(12128), + [anon_sym_BSLASHVref] = ACTIONS(12128), + [anon_sym_BSLASHautoref] = ACTIONS(12128), + [anon_sym_BSLASHpageref] = ACTIONS(12128), + [anon_sym_BSLASHcref] = ACTIONS(12128), + [anon_sym_BSLASHCref] = ACTIONS(12128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnameCref] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHlabelcref] = ACTIONS(12128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12128), + [anon_sym_BSLASHeqref] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange] = ACTIONS(12128), + [anon_sym_BSLASHCrefrange] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewlabel] = ACTIONS(12128), + [anon_sym_BSLASHnewcommand] = ACTIONS(12128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12128), + [anon_sym_BSLASHgls] = ACTIONS(12128), + [anon_sym_BSLASHGls] = ACTIONS(12128), + [anon_sym_BSLASHGLS] = ACTIONS(12128), + [anon_sym_BSLASHglspl] = ACTIONS(12128), + [anon_sym_BSLASHGlspl] = ACTIONS(12128), + [anon_sym_BSLASHGLSpl] = ACTIONS(12128), + [anon_sym_BSLASHglsdisp] = ACTIONS(12128), + [anon_sym_BSLASHglslink] = ACTIONS(12128), + [anon_sym_BSLASHglstext] = ACTIONS(12128), + [anon_sym_BSLASHGlstext] = ACTIONS(12128), + [anon_sym_BSLASHGLStext] = ACTIONS(12128), + [anon_sym_BSLASHglsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12128), + [anon_sym_BSLASHglsplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSplural] = ACTIONS(12128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHglsname] = ACTIONS(12128), + [anon_sym_BSLASHGlsname] = ACTIONS(12128), + [anon_sym_BSLASHGLSname] = ACTIONS(12128), + [anon_sym_BSLASHglssymbol] = ACTIONS(12128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12128), + [anon_sym_BSLASHglsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12128), + [anon_sym_BSLASHglsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12128), + [anon_sym_BSLASHglsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12128), + [anon_sym_BSLASHglsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12128), + [anon_sym_BSLASHglsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12128), + [anon_sym_BSLASHnewacronym] = ACTIONS(12128), + [anon_sym_BSLASHacrshort] = ACTIONS(12128), + [anon_sym_BSLASHAcrshort] = ACTIONS(12128), + [anon_sym_BSLASHACRshort] = ACTIONS(12128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12128), + [anon_sym_BSLASHacrlong] = ACTIONS(12128), + [anon_sym_BSLASHAcrlong] = ACTIONS(12128), + [anon_sym_BSLASHACRlong] = ACTIONS(12128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12128), + [anon_sym_BSLASHacrfull] = ACTIONS(12128), + [anon_sym_BSLASHAcrfull] = ACTIONS(12128), + [anon_sym_BSLASHACRfull] = ACTIONS(12128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12128), + [anon_sym_BSLASHacs] = ACTIONS(12128), + [anon_sym_BSLASHAcs] = ACTIONS(12128), + [anon_sym_BSLASHacsp] = ACTIONS(12128), + [anon_sym_BSLASHAcsp] = ACTIONS(12128), + [anon_sym_BSLASHacl] = ACTIONS(12128), + [anon_sym_BSLASHAcl] = ACTIONS(12128), + [anon_sym_BSLASHaclp] = ACTIONS(12128), + [anon_sym_BSLASHAclp] = ACTIONS(12128), + [anon_sym_BSLASHacf] = ACTIONS(12128), + [anon_sym_BSLASHAcf] = ACTIONS(12128), + [anon_sym_BSLASHacfp] = ACTIONS(12128), + [anon_sym_BSLASHAcfp] = ACTIONS(12128), + [anon_sym_BSLASHac] = ACTIONS(12128), + [anon_sym_BSLASHAc] = ACTIONS(12128), + [anon_sym_BSLASHacp] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12128), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12128), + [anon_sym_BSLASHcolor] = ACTIONS(12128), + [anon_sym_BSLASHcolorbox] = ACTIONS(12128), + [anon_sym_BSLASHtextcolor] = ACTIONS(12128), + [anon_sym_BSLASHpagecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12128), + }, + [502] = { + [ts_builtin_sym_end] = ACTIONS(12130), + [sym_generic_command_name] = ACTIONS(12132), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12132), + [aux_sym_chapter_token1] = ACTIONS(12132), + [aux_sym_section_token1] = ACTIONS(12132), + [aux_sym_subsection_token1] = ACTIONS(12132), + [aux_sym_subsubsection_token1] = ACTIONS(12132), + [aux_sym_paragraph_token1] = ACTIONS(12132), + [aux_sym_subparagraph_token1] = ACTIONS(12132), + [anon_sym_BSLASHitem] = ACTIONS(12132), + [anon_sym_LBRACK] = ACTIONS(12130), + [anon_sym_RBRACK] = ACTIONS(12130), + [anon_sym_LBRACE] = ACTIONS(12130), + [anon_sym_RBRACE] = ACTIONS(12130), + [anon_sym_LPAREN] = ACTIONS(12130), + [anon_sym_RPAREN] = ACTIONS(12130), + [anon_sym_COMMA] = ACTIONS(12130), + [anon_sym_EQ] = ACTIONS(12130), + [sym_word] = ACTIONS(12130), + [sym_param] = ACTIONS(12130), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12130), + [anon_sym_DOLLAR] = ACTIONS(12132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12130), + [anon_sym_BSLASHbegin] = ACTIONS(12132), + [anon_sym_BSLASHcaption] = ACTIONS(12132), + [anon_sym_BSLASHcite] = ACTIONS(12132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCite] = ACTIONS(12132), + [anon_sym_BSLASHnocite] = ACTIONS(12132), + [anon_sym_BSLASHcitet] = ACTIONS(12132), + [anon_sym_BSLASHcitep] = ACTIONS(12132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteauthor] = ACTIONS(12132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitetitle] = ACTIONS(12132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteyear] = ACTIONS(12132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitedate] = ACTIONS(12132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteurl] = ACTIONS(12132), + [anon_sym_BSLASHfullcite] = ACTIONS(12132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12132), + [anon_sym_BSLASHcitealt] = ACTIONS(12132), + [anon_sym_BSLASHcitealp] = ACTIONS(12132), + [anon_sym_BSLASHcitetext] = ACTIONS(12132), + [anon_sym_BSLASHparencite] = ACTIONS(12132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHParencite] = ACTIONS(12132), + [anon_sym_BSLASHfootcite] = ACTIONS(12132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12132), + [anon_sym_BSLASHtextcite] = ACTIONS(12132), + [anon_sym_BSLASHTextcite] = ACTIONS(12132), + [anon_sym_BSLASHsmartcite] = ACTIONS(12132), + [anon_sym_BSLASHSmartcite] = ACTIONS(12132), + [anon_sym_BSLASHsupercite] = ACTIONS(12132), + [anon_sym_BSLASHautocite] = ACTIONS(12132), + [anon_sym_BSLASHAutocite] = ACTIONS(12132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHvolcite] = ACTIONS(12132), + [anon_sym_BSLASHVolcite] = ACTIONS(12132), + [anon_sym_BSLASHpvolcite] = ACTIONS(12132), + [anon_sym_BSLASHPvolcite] = ACTIONS(12132), + [anon_sym_BSLASHfvolcite] = ACTIONS(12132), + [anon_sym_BSLASHftvolcite] = ACTIONS(12132), + [anon_sym_BSLASHsvolcite] = ACTIONS(12132), + [anon_sym_BSLASHSvolcite] = ACTIONS(12132), + [anon_sym_BSLASHtvolcite] = ACTIONS(12132), + [anon_sym_BSLASHTvolcite] = ACTIONS(12132), + [anon_sym_BSLASHavolcite] = ACTIONS(12132), + [anon_sym_BSLASHAvolcite] = ACTIONS(12132), + [anon_sym_BSLASHnotecite] = ACTIONS(12132), + [anon_sym_BSLASHpnotecite] = ACTIONS(12132), + [anon_sym_BSLASHPnotecite] = ACTIONS(12132), + [anon_sym_BSLASHfnotecite] = ACTIONS(12132), + [anon_sym_BSLASHusepackage] = ACTIONS(12132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12132), + [anon_sym_BSLASHinclude] = ACTIONS(12132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12132), + [anon_sym_BSLASHinput] = ACTIONS(12132), + [anon_sym_BSLASHsubfile] = ACTIONS(12132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12132), + [anon_sym_BSLASHbibliography] = ACTIONS(12132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12132), + [anon_sym_BSLASHincludesvg] = ACTIONS(12132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12132), + [anon_sym_BSLASHimport] = ACTIONS(12132), + [anon_sym_BSLASHsubimport] = ACTIONS(12132), + [anon_sym_BSLASHinputfrom] = ACTIONS(12132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12132), + [anon_sym_BSLASHincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHlabel] = ACTIONS(12132), + [anon_sym_BSLASHref] = ACTIONS(12132), + [anon_sym_BSLASHvref] = ACTIONS(12132), + [anon_sym_BSLASHVref] = ACTIONS(12132), + [anon_sym_BSLASHautoref] = ACTIONS(12132), + [anon_sym_BSLASHpageref] = ACTIONS(12132), + [anon_sym_BSLASHcref] = ACTIONS(12132), + [anon_sym_BSLASHCref] = ACTIONS(12132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnameCref] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHlabelcref] = ACTIONS(12132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12132), + [anon_sym_BSLASHeqref] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange] = ACTIONS(12132), + [anon_sym_BSLASHCrefrange] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewlabel] = ACTIONS(12132), + [anon_sym_BSLASHnewcommand] = ACTIONS(12132), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12132), + [anon_sym_BSLASHgls] = ACTIONS(12132), + [anon_sym_BSLASHGls] = ACTIONS(12132), + [anon_sym_BSLASHGLS] = ACTIONS(12132), + [anon_sym_BSLASHglspl] = ACTIONS(12132), + [anon_sym_BSLASHGlspl] = ACTIONS(12132), + [anon_sym_BSLASHGLSpl] = ACTIONS(12132), + [anon_sym_BSLASHglsdisp] = ACTIONS(12132), + [anon_sym_BSLASHglslink] = ACTIONS(12132), + [anon_sym_BSLASHglstext] = ACTIONS(12132), + [anon_sym_BSLASHGlstext] = ACTIONS(12132), + [anon_sym_BSLASHGLStext] = ACTIONS(12132), + [anon_sym_BSLASHglsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12132), + [anon_sym_BSLASHglsplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSplural] = ACTIONS(12132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHglsname] = ACTIONS(12132), + [anon_sym_BSLASHGlsname] = ACTIONS(12132), + [anon_sym_BSLASHGLSname] = ACTIONS(12132), + [anon_sym_BSLASHglssymbol] = ACTIONS(12132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12132), + [anon_sym_BSLASHglsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12132), + [anon_sym_BSLASHglsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12132), + [anon_sym_BSLASHglsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12132), + [anon_sym_BSLASHglsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12132), + [anon_sym_BSLASHglsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12132), + [anon_sym_BSLASHnewacronym] = ACTIONS(12132), + [anon_sym_BSLASHacrshort] = ACTIONS(12132), + [anon_sym_BSLASHAcrshort] = ACTIONS(12132), + [anon_sym_BSLASHACRshort] = ACTIONS(12132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12132), + [anon_sym_BSLASHacrlong] = ACTIONS(12132), + [anon_sym_BSLASHAcrlong] = ACTIONS(12132), + [anon_sym_BSLASHACRlong] = ACTIONS(12132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12132), + [anon_sym_BSLASHacrfull] = ACTIONS(12132), + [anon_sym_BSLASHAcrfull] = ACTIONS(12132), + [anon_sym_BSLASHACRfull] = ACTIONS(12132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12132), + [anon_sym_BSLASHacs] = ACTIONS(12132), + [anon_sym_BSLASHAcs] = ACTIONS(12132), + [anon_sym_BSLASHacsp] = ACTIONS(12132), + [anon_sym_BSLASHAcsp] = ACTIONS(12132), + [anon_sym_BSLASHacl] = ACTIONS(12132), + [anon_sym_BSLASHAcl] = ACTIONS(12132), + [anon_sym_BSLASHaclp] = ACTIONS(12132), + [anon_sym_BSLASHAclp] = ACTIONS(12132), + [anon_sym_BSLASHacf] = ACTIONS(12132), + [anon_sym_BSLASHAcf] = ACTIONS(12132), + [anon_sym_BSLASHacfp] = ACTIONS(12132), + [anon_sym_BSLASHAcfp] = ACTIONS(12132), + [anon_sym_BSLASHac] = ACTIONS(12132), + [anon_sym_BSLASHAc] = ACTIONS(12132), + [anon_sym_BSLASHacp] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12132), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12132), + [anon_sym_BSLASHcolor] = ACTIONS(12132), + [anon_sym_BSLASHcolorbox] = ACTIONS(12132), + [anon_sym_BSLASHtextcolor] = ACTIONS(12132), + [anon_sym_BSLASHpagecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12132), + }, + [503] = { + [ts_builtin_sym_end] = ACTIONS(121), + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(123), + [aux_sym_chapter_token1] = ACTIONS(123), + [aux_sym_section_token1] = ACTIONS(123), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_RPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [504] = { + [ts_builtin_sym_end] = ACTIONS(125), + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(127), + [aux_sym_chapter_token1] = ACTIONS(127), + [aux_sym_section_token1] = ACTIONS(127), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_RPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [505] = { + [ts_builtin_sym_end] = ACTIONS(12134), + [sym_generic_command_name] = ACTIONS(12136), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12136), + [aux_sym_chapter_token1] = ACTIONS(12136), + [aux_sym_section_token1] = ACTIONS(12136), + [aux_sym_subsection_token1] = ACTIONS(12136), + [aux_sym_subsubsection_token1] = ACTIONS(12136), + [aux_sym_paragraph_token1] = ACTIONS(12136), + [aux_sym_subparagraph_token1] = ACTIONS(12136), + [anon_sym_BSLASHitem] = ACTIONS(12136), + [anon_sym_LBRACK] = ACTIONS(12134), + [anon_sym_RBRACK] = ACTIONS(12134), + [anon_sym_LBRACE] = ACTIONS(12134), + [anon_sym_RBRACE] = ACTIONS(12134), + [anon_sym_LPAREN] = ACTIONS(12134), + [anon_sym_RPAREN] = ACTIONS(12134), + [anon_sym_COMMA] = ACTIONS(12134), + [anon_sym_EQ] = ACTIONS(12134), + [sym_word] = ACTIONS(12134), + [sym_param] = ACTIONS(12134), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12134), + [anon_sym_DOLLAR] = ACTIONS(12136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12134), + [anon_sym_BSLASHbegin] = ACTIONS(12136), + [anon_sym_BSLASHcaption] = ACTIONS(12136), + [anon_sym_BSLASHcite] = ACTIONS(12136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCite] = ACTIONS(12136), + [anon_sym_BSLASHnocite] = ACTIONS(12136), + [anon_sym_BSLASHcitet] = ACTIONS(12136), + [anon_sym_BSLASHcitep] = ACTIONS(12136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteauthor] = ACTIONS(12136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitetitle] = ACTIONS(12136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteyear] = ACTIONS(12136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitedate] = ACTIONS(12136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteurl] = ACTIONS(12136), + [anon_sym_BSLASHfullcite] = ACTIONS(12136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12136), + [anon_sym_BSLASHcitealt] = ACTIONS(12136), + [anon_sym_BSLASHcitealp] = ACTIONS(12136), + [anon_sym_BSLASHcitetext] = ACTIONS(12136), + [anon_sym_BSLASHparencite] = ACTIONS(12136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHParencite] = ACTIONS(12136), + [anon_sym_BSLASHfootcite] = ACTIONS(12136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12136), + [anon_sym_BSLASHtextcite] = ACTIONS(12136), + [anon_sym_BSLASHTextcite] = ACTIONS(12136), + [anon_sym_BSLASHsmartcite] = ACTIONS(12136), + [anon_sym_BSLASHSmartcite] = ACTIONS(12136), + [anon_sym_BSLASHsupercite] = ACTIONS(12136), + [anon_sym_BSLASHautocite] = ACTIONS(12136), + [anon_sym_BSLASHAutocite] = ACTIONS(12136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHvolcite] = ACTIONS(12136), + [anon_sym_BSLASHVolcite] = ACTIONS(12136), + [anon_sym_BSLASHpvolcite] = ACTIONS(12136), + [anon_sym_BSLASHPvolcite] = ACTIONS(12136), + [anon_sym_BSLASHfvolcite] = ACTIONS(12136), + [anon_sym_BSLASHftvolcite] = ACTIONS(12136), + [anon_sym_BSLASHsvolcite] = ACTIONS(12136), + [anon_sym_BSLASHSvolcite] = ACTIONS(12136), + [anon_sym_BSLASHtvolcite] = ACTIONS(12136), + [anon_sym_BSLASHTvolcite] = ACTIONS(12136), + [anon_sym_BSLASHavolcite] = ACTIONS(12136), + [anon_sym_BSLASHAvolcite] = ACTIONS(12136), + [anon_sym_BSLASHnotecite] = ACTIONS(12136), + [anon_sym_BSLASHpnotecite] = ACTIONS(12136), + [anon_sym_BSLASHPnotecite] = ACTIONS(12136), + [anon_sym_BSLASHfnotecite] = ACTIONS(12136), + [anon_sym_BSLASHusepackage] = ACTIONS(12136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12136), + [anon_sym_BSLASHinclude] = ACTIONS(12136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12136), + [anon_sym_BSLASHinput] = ACTIONS(12136), + [anon_sym_BSLASHsubfile] = ACTIONS(12136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12136), + [anon_sym_BSLASHbibliography] = ACTIONS(12136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12136), + [anon_sym_BSLASHincludesvg] = ACTIONS(12136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12136), + [anon_sym_BSLASHimport] = ACTIONS(12136), + [anon_sym_BSLASHsubimport] = ACTIONS(12136), + [anon_sym_BSLASHinputfrom] = ACTIONS(12136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12136), + [anon_sym_BSLASHincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHlabel] = ACTIONS(12136), + [anon_sym_BSLASHref] = ACTIONS(12136), + [anon_sym_BSLASHvref] = ACTIONS(12136), + [anon_sym_BSLASHVref] = ACTIONS(12136), + [anon_sym_BSLASHautoref] = ACTIONS(12136), + [anon_sym_BSLASHpageref] = ACTIONS(12136), + [anon_sym_BSLASHcref] = ACTIONS(12136), + [anon_sym_BSLASHCref] = ACTIONS(12136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnameCref] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHlabelcref] = ACTIONS(12136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12136), + [anon_sym_BSLASHeqref] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange] = ACTIONS(12136), + [anon_sym_BSLASHCrefrange] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewlabel] = ACTIONS(12136), + [anon_sym_BSLASHnewcommand] = ACTIONS(12136), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12136), + [anon_sym_BSLASHgls] = ACTIONS(12136), + [anon_sym_BSLASHGls] = ACTIONS(12136), + [anon_sym_BSLASHGLS] = ACTIONS(12136), + [anon_sym_BSLASHglspl] = ACTIONS(12136), + [anon_sym_BSLASHGlspl] = ACTIONS(12136), + [anon_sym_BSLASHGLSpl] = ACTIONS(12136), + [anon_sym_BSLASHglsdisp] = ACTIONS(12136), + [anon_sym_BSLASHglslink] = ACTIONS(12136), + [anon_sym_BSLASHglstext] = ACTIONS(12136), + [anon_sym_BSLASHGlstext] = ACTIONS(12136), + [anon_sym_BSLASHGLStext] = ACTIONS(12136), + [anon_sym_BSLASHglsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12136), + [anon_sym_BSLASHglsplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSplural] = ACTIONS(12136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHglsname] = ACTIONS(12136), + [anon_sym_BSLASHGlsname] = ACTIONS(12136), + [anon_sym_BSLASHGLSname] = ACTIONS(12136), + [anon_sym_BSLASHglssymbol] = ACTIONS(12136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12136), + [anon_sym_BSLASHglsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12136), + [anon_sym_BSLASHglsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12136), + [anon_sym_BSLASHglsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12136), + [anon_sym_BSLASHglsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12136), + [anon_sym_BSLASHglsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12136), + [anon_sym_BSLASHnewacronym] = ACTIONS(12136), + [anon_sym_BSLASHacrshort] = ACTIONS(12136), + [anon_sym_BSLASHAcrshort] = ACTIONS(12136), + [anon_sym_BSLASHACRshort] = ACTIONS(12136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12136), + [anon_sym_BSLASHacrlong] = ACTIONS(12136), + [anon_sym_BSLASHAcrlong] = ACTIONS(12136), + [anon_sym_BSLASHACRlong] = ACTIONS(12136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12136), + [anon_sym_BSLASHacrfull] = ACTIONS(12136), + [anon_sym_BSLASHAcrfull] = ACTIONS(12136), + [anon_sym_BSLASHACRfull] = ACTIONS(12136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12136), + [anon_sym_BSLASHacs] = ACTIONS(12136), + [anon_sym_BSLASHAcs] = ACTIONS(12136), + [anon_sym_BSLASHacsp] = ACTIONS(12136), + [anon_sym_BSLASHAcsp] = ACTIONS(12136), + [anon_sym_BSLASHacl] = ACTIONS(12136), + [anon_sym_BSLASHAcl] = ACTIONS(12136), + [anon_sym_BSLASHaclp] = ACTIONS(12136), + [anon_sym_BSLASHAclp] = ACTIONS(12136), + [anon_sym_BSLASHacf] = ACTIONS(12136), + [anon_sym_BSLASHAcf] = ACTIONS(12136), + [anon_sym_BSLASHacfp] = ACTIONS(12136), + [anon_sym_BSLASHAcfp] = ACTIONS(12136), + [anon_sym_BSLASHac] = ACTIONS(12136), + [anon_sym_BSLASHAc] = ACTIONS(12136), + [anon_sym_BSLASHacp] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12136), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12136), + [anon_sym_BSLASHcolor] = ACTIONS(12136), + [anon_sym_BSLASHcolorbox] = ACTIONS(12136), + [anon_sym_BSLASHtextcolor] = ACTIONS(12136), + [anon_sym_BSLASHpagecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12136), + }, + [506] = { + [ts_builtin_sym_end] = ACTIONS(12138), + [sym_generic_command_name] = ACTIONS(12140), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12140), + [aux_sym_chapter_token1] = ACTIONS(12140), + [aux_sym_section_token1] = ACTIONS(12140), + [aux_sym_subsection_token1] = ACTIONS(12140), + [aux_sym_subsubsection_token1] = ACTIONS(12140), + [aux_sym_paragraph_token1] = ACTIONS(12140), + [aux_sym_subparagraph_token1] = ACTIONS(12140), + [anon_sym_BSLASHitem] = ACTIONS(12140), + [anon_sym_LBRACK] = ACTIONS(12138), + [anon_sym_RBRACK] = ACTIONS(12138), + [anon_sym_LBRACE] = ACTIONS(12138), + [anon_sym_RBRACE] = ACTIONS(12138), + [anon_sym_LPAREN] = ACTIONS(12138), + [anon_sym_RPAREN] = ACTIONS(12138), + [anon_sym_COMMA] = ACTIONS(12138), + [anon_sym_EQ] = ACTIONS(12138), + [sym_word] = ACTIONS(12138), + [sym_param] = ACTIONS(12138), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12138), + [anon_sym_DOLLAR] = ACTIONS(12140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12138), + [anon_sym_BSLASHbegin] = ACTIONS(12140), + [anon_sym_BSLASHcaption] = ACTIONS(12140), + [anon_sym_BSLASHcite] = ACTIONS(12140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCite] = ACTIONS(12140), + [anon_sym_BSLASHnocite] = ACTIONS(12140), + [anon_sym_BSLASHcitet] = ACTIONS(12140), + [anon_sym_BSLASHcitep] = ACTIONS(12140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteauthor] = ACTIONS(12140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitetitle] = ACTIONS(12140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteyear] = ACTIONS(12140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitedate] = ACTIONS(12140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteurl] = ACTIONS(12140), + [anon_sym_BSLASHfullcite] = ACTIONS(12140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12140), + [anon_sym_BSLASHcitealt] = ACTIONS(12140), + [anon_sym_BSLASHcitealp] = ACTIONS(12140), + [anon_sym_BSLASHcitetext] = ACTIONS(12140), + [anon_sym_BSLASHparencite] = ACTIONS(12140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHParencite] = ACTIONS(12140), + [anon_sym_BSLASHfootcite] = ACTIONS(12140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12140), + [anon_sym_BSLASHtextcite] = ACTIONS(12140), + [anon_sym_BSLASHTextcite] = ACTIONS(12140), + [anon_sym_BSLASHsmartcite] = ACTIONS(12140), + [anon_sym_BSLASHSmartcite] = ACTIONS(12140), + [anon_sym_BSLASHsupercite] = ACTIONS(12140), + [anon_sym_BSLASHautocite] = ACTIONS(12140), + [anon_sym_BSLASHAutocite] = ACTIONS(12140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHvolcite] = ACTIONS(12140), + [anon_sym_BSLASHVolcite] = ACTIONS(12140), + [anon_sym_BSLASHpvolcite] = ACTIONS(12140), + [anon_sym_BSLASHPvolcite] = ACTIONS(12140), + [anon_sym_BSLASHfvolcite] = ACTIONS(12140), + [anon_sym_BSLASHftvolcite] = ACTIONS(12140), + [anon_sym_BSLASHsvolcite] = ACTIONS(12140), + [anon_sym_BSLASHSvolcite] = ACTIONS(12140), + [anon_sym_BSLASHtvolcite] = ACTIONS(12140), + [anon_sym_BSLASHTvolcite] = ACTIONS(12140), + [anon_sym_BSLASHavolcite] = ACTIONS(12140), + [anon_sym_BSLASHAvolcite] = ACTIONS(12140), + [anon_sym_BSLASHnotecite] = ACTIONS(12140), + [anon_sym_BSLASHpnotecite] = ACTIONS(12140), + [anon_sym_BSLASHPnotecite] = ACTIONS(12140), + [anon_sym_BSLASHfnotecite] = ACTIONS(12140), + [anon_sym_BSLASHusepackage] = ACTIONS(12140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12140), + [anon_sym_BSLASHinclude] = ACTIONS(12140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12140), + [anon_sym_BSLASHinput] = ACTIONS(12140), + [anon_sym_BSLASHsubfile] = ACTIONS(12140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12140), + [anon_sym_BSLASHbibliography] = ACTIONS(12140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12140), + [anon_sym_BSLASHincludesvg] = ACTIONS(12140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12140), + [anon_sym_BSLASHimport] = ACTIONS(12140), + [anon_sym_BSLASHsubimport] = ACTIONS(12140), + [anon_sym_BSLASHinputfrom] = ACTIONS(12140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12140), + [anon_sym_BSLASHincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHlabel] = ACTIONS(12140), + [anon_sym_BSLASHref] = ACTIONS(12140), + [anon_sym_BSLASHvref] = ACTIONS(12140), + [anon_sym_BSLASHVref] = ACTIONS(12140), + [anon_sym_BSLASHautoref] = ACTIONS(12140), + [anon_sym_BSLASHpageref] = ACTIONS(12140), + [anon_sym_BSLASHcref] = ACTIONS(12140), + [anon_sym_BSLASHCref] = ACTIONS(12140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnameCref] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHlabelcref] = ACTIONS(12140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12140), + [anon_sym_BSLASHeqref] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange] = ACTIONS(12140), + [anon_sym_BSLASHCrefrange] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewlabel] = ACTIONS(12140), + [anon_sym_BSLASHnewcommand] = ACTIONS(12140), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12140), + [anon_sym_BSLASHgls] = ACTIONS(12140), + [anon_sym_BSLASHGls] = ACTIONS(12140), + [anon_sym_BSLASHGLS] = ACTIONS(12140), + [anon_sym_BSLASHglspl] = ACTIONS(12140), + [anon_sym_BSLASHGlspl] = ACTIONS(12140), + [anon_sym_BSLASHGLSpl] = ACTIONS(12140), + [anon_sym_BSLASHglsdisp] = ACTIONS(12140), + [anon_sym_BSLASHglslink] = ACTIONS(12140), + [anon_sym_BSLASHglstext] = ACTIONS(12140), + [anon_sym_BSLASHGlstext] = ACTIONS(12140), + [anon_sym_BSLASHGLStext] = ACTIONS(12140), + [anon_sym_BSLASHglsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12140), + [anon_sym_BSLASHglsplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSplural] = ACTIONS(12140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHglsname] = ACTIONS(12140), + [anon_sym_BSLASHGlsname] = ACTIONS(12140), + [anon_sym_BSLASHGLSname] = ACTIONS(12140), + [anon_sym_BSLASHglssymbol] = ACTIONS(12140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12140), + [anon_sym_BSLASHglsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12140), + [anon_sym_BSLASHglsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12140), + [anon_sym_BSLASHglsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12140), + [anon_sym_BSLASHglsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12140), + [anon_sym_BSLASHglsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12140), + [anon_sym_BSLASHnewacronym] = ACTIONS(12140), + [anon_sym_BSLASHacrshort] = ACTIONS(12140), + [anon_sym_BSLASHAcrshort] = ACTIONS(12140), + [anon_sym_BSLASHACRshort] = ACTIONS(12140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12140), + [anon_sym_BSLASHacrlong] = ACTIONS(12140), + [anon_sym_BSLASHAcrlong] = ACTIONS(12140), + [anon_sym_BSLASHACRlong] = ACTIONS(12140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12140), + [anon_sym_BSLASHacrfull] = ACTIONS(12140), + [anon_sym_BSLASHAcrfull] = ACTIONS(12140), + [anon_sym_BSLASHACRfull] = ACTIONS(12140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12140), + [anon_sym_BSLASHacs] = ACTIONS(12140), + [anon_sym_BSLASHAcs] = ACTIONS(12140), + [anon_sym_BSLASHacsp] = ACTIONS(12140), + [anon_sym_BSLASHAcsp] = ACTIONS(12140), + [anon_sym_BSLASHacl] = ACTIONS(12140), + [anon_sym_BSLASHAcl] = ACTIONS(12140), + [anon_sym_BSLASHaclp] = ACTIONS(12140), + [anon_sym_BSLASHAclp] = ACTIONS(12140), + [anon_sym_BSLASHacf] = ACTIONS(12140), + [anon_sym_BSLASHAcf] = ACTIONS(12140), + [anon_sym_BSLASHacfp] = ACTIONS(12140), + [anon_sym_BSLASHAcfp] = ACTIONS(12140), + [anon_sym_BSLASHac] = ACTIONS(12140), + [anon_sym_BSLASHAc] = ACTIONS(12140), + [anon_sym_BSLASHacp] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12140), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12140), + [anon_sym_BSLASHcolor] = ACTIONS(12140), + [anon_sym_BSLASHcolorbox] = ACTIONS(12140), + [anon_sym_BSLASHtextcolor] = ACTIONS(12140), + [anon_sym_BSLASHpagecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12140), + }, + [507] = { + [ts_builtin_sym_end] = ACTIONS(12142), + [sym_generic_command_name] = ACTIONS(12144), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12144), + [aux_sym_chapter_token1] = ACTIONS(12144), + [aux_sym_section_token1] = ACTIONS(12144), + [aux_sym_subsection_token1] = ACTIONS(12144), + [aux_sym_subsubsection_token1] = ACTIONS(12144), + [aux_sym_paragraph_token1] = ACTIONS(12144), + [aux_sym_subparagraph_token1] = ACTIONS(12144), + [anon_sym_BSLASHitem] = ACTIONS(12144), + [anon_sym_LBRACK] = ACTIONS(12142), + [anon_sym_RBRACK] = ACTIONS(12142), + [anon_sym_LBRACE] = ACTIONS(12142), + [anon_sym_RBRACE] = ACTIONS(12142), + [anon_sym_LPAREN] = ACTIONS(12142), + [anon_sym_RPAREN] = ACTIONS(12142), + [anon_sym_COMMA] = ACTIONS(12142), + [anon_sym_EQ] = ACTIONS(12142), + [sym_word] = ACTIONS(12142), + [sym_param] = ACTIONS(12142), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12142), + [anon_sym_DOLLAR] = ACTIONS(12144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12142), + [anon_sym_BSLASHbegin] = ACTIONS(12144), + [anon_sym_BSLASHcaption] = ACTIONS(12144), + [anon_sym_BSLASHcite] = ACTIONS(12144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCite] = ACTIONS(12144), + [anon_sym_BSLASHnocite] = ACTIONS(12144), + [anon_sym_BSLASHcitet] = ACTIONS(12144), + [anon_sym_BSLASHcitep] = ACTIONS(12144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteauthor] = ACTIONS(12144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitetitle] = ACTIONS(12144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteyear] = ACTIONS(12144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitedate] = ACTIONS(12144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteurl] = ACTIONS(12144), + [anon_sym_BSLASHfullcite] = ACTIONS(12144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12144), + [anon_sym_BSLASHcitealt] = ACTIONS(12144), + [anon_sym_BSLASHcitealp] = ACTIONS(12144), + [anon_sym_BSLASHcitetext] = ACTIONS(12144), + [anon_sym_BSLASHparencite] = ACTIONS(12144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHParencite] = ACTIONS(12144), + [anon_sym_BSLASHfootcite] = ACTIONS(12144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12144), + [anon_sym_BSLASHtextcite] = ACTIONS(12144), + [anon_sym_BSLASHTextcite] = ACTIONS(12144), + [anon_sym_BSLASHsmartcite] = ACTIONS(12144), + [anon_sym_BSLASHSmartcite] = ACTIONS(12144), + [anon_sym_BSLASHsupercite] = ACTIONS(12144), + [anon_sym_BSLASHautocite] = ACTIONS(12144), + [anon_sym_BSLASHAutocite] = ACTIONS(12144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHvolcite] = ACTIONS(12144), + [anon_sym_BSLASHVolcite] = ACTIONS(12144), + [anon_sym_BSLASHpvolcite] = ACTIONS(12144), + [anon_sym_BSLASHPvolcite] = ACTIONS(12144), + [anon_sym_BSLASHfvolcite] = ACTIONS(12144), + [anon_sym_BSLASHftvolcite] = ACTIONS(12144), + [anon_sym_BSLASHsvolcite] = ACTIONS(12144), + [anon_sym_BSLASHSvolcite] = ACTIONS(12144), + [anon_sym_BSLASHtvolcite] = ACTIONS(12144), + [anon_sym_BSLASHTvolcite] = ACTIONS(12144), + [anon_sym_BSLASHavolcite] = ACTIONS(12144), + [anon_sym_BSLASHAvolcite] = ACTIONS(12144), + [anon_sym_BSLASHnotecite] = ACTIONS(12144), + [anon_sym_BSLASHpnotecite] = ACTIONS(12144), + [anon_sym_BSLASHPnotecite] = ACTIONS(12144), + [anon_sym_BSLASHfnotecite] = ACTIONS(12144), + [anon_sym_BSLASHusepackage] = ACTIONS(12144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12144), + [anon_sym_BSLASHinclude] = ACTIONS(12144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12144), + [anon_sym_BSLASHinput] = ACTIONS(12144), + [anon_sym_BSLASHsubfile] = ACTIONS(12144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12144), + [anon_sym_BSLASHbibliography] = ACTIONS(12144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12144), + [anon_sym_BSLASHincludesvg] = ACTIONS(12144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12144), + [anon_sym_BSLASHimport] = ACTIONS(12144), + [anon_sym_BSLASHsubimport] = ACTIONS(12144), + [anon_sym_BSLASHinputfrom] = ACTIONS(12144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12144), + [anon_sym_BSLASHincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHlabel] = ACTIONS(12144), + [anon_sym_BSLASHref] = ACTIONS(12144), + [anon_sym_BSLASHvref] = ACTIONS(12144), + [anon_sym_BSLASHVref] = ACTIONS(12144), + [anon_sym_BSLASHautoref] = ACTIONS(12144), + [anon_sym_BSLASHpageref] = ACTIONS(12144), + [anon_sym_BSLASHcref] = ACTIONS(12144), + [anon_sym_BSLASHCref] = ACTIONS(12144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnameCref] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHlabelcref] = ACTIONS(12144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12144), + [anon_sym_BSLASHeqref] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange] = ACTIONS(12144), + [anon_sym_BSLASHCrefrange] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewlabel] = ACTIONS(12144), + [anon_sym_BSLASHnewcommand] = ACTIONS(12144), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12144), + [anon_sym_BSLASHgls] = ACTIONS(12144), + [anon_sym_BSLASHGls] = ACTIONS(12144), + [anon_sym_BSLASHGLS] = ACTIONS(12144), + [anon_sym_BSLASHglspl] = ACTIONS(12144), + [anon_sym_BSLASHGlspl] = ACTIONS(12144), + [anon_sym_BSLASHGLSpl] = ACTIONS(12144), + [anon_sym_BSLASHglsdisp] = ACTIONS(12144), + [anon_sym_BSLASHglslink] = ACTIONS(12144), + [anon_sym_BSLASHglstext] = ACTIONS(12144), + [anon_sym_BSLASHGlstext] = ACTIONS(12144), + [anon_sym_BSLASHGLStext] = ACTIONS(12144), + [anon_sym_BSLASHglsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12144), + [anon_sym_BSLASHglsplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSplural] = ACTIONS(12144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHglsname] = ACTIONS(12144), + [anon_sym_BSLASHGlsname] = ACTIONS(12144), + [anon_sym_BSLASHGLSname] = ACTIONS(12144), + [anon_sym_BSLASHglssymbol] = ACTIONS(12144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12144), + [anon_sym_BSLASHglsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12144), + [anon_sym_BSLASHglsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12144), + [anon_sym_BSLASHglsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12144), + [anon_sym_BSLASHglsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12144), + [anon_sym_BSLASHglsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12144), + [anon_sym_BSLASHnewacronym] = ACTIONS(12144), + [anon_sym_BSLASHacrshort] = ACTIONS(12144), + [anon_sym_BSLASHAcrshort] = ACTIONS(12144), + [anon_sym_BSLASHACRshort] = ACTIONS(12144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12144), + [anon_sym_BSLASHacrlong] = ACTIONS(12144), + [anon_sym_BSLASHAcrlong] = ACTIONS(12144), + [anon_sym_BSLASHACRlong] = ACTIONS(12144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12144), + [anon_sym_BSLASHacrfull] = ACTIONS(12144), + [anon_sym_BSLASHAcrfull] = ACTIONS(12144), + [anon_sym_BSLASHACRfull] = ACTIONS(12144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12144), + [anon_sym_BSLASHacs] = ACTIONS(12144), + [anon_sym_BSLASHAcs] = ACTIONS(12144), + [anon_sym_BSLASHacsp] = ACTIONS(12144), + [anon_sym_BSLASHAcsp] = ACTIONS(12144), + [anon_sym_BSLASHacl] = ACTIONS(12144), + [anon_sym_BSLASHAcl] = ACTIONS(12144), + [anon_sym_BSLASHaclp] = ACTIONS(12144), + [anon_sym_BSLASHAclp] = ACTIONS(12144), + [anon_sym_BSLASHacf] = ACTIONS(12144), + [anon_sym_BSLASHAcf] = ACTIONS(12144), + [anon_sym_BSLASHacfp] = ACTIONS(12144), + [anon_sym_BSLASHAcfp] = ACTIONS(12144), + [anon_sym_BSLASHac] = ACTIONS(12144), + [anon_sym_BSLASHAc] = ACTIONS(12144), + [anon_sym_BSLASHacp] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12144), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12144), + [anon_sym_BSLASHcolor] = ACTIONS(12144), + [anon_sym_BSLASHcolorbox] = ACTIONS(12144), + [anon_sym_BSLASHtextcolor] = ACTIONS(12144), + [anon_sym_BSLASHpagecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12144), + }, + [508] = { + [ts_builtin_sym_end] = ACTIONS(12146), + [sym_generic_command_name] = ACTIONS(12148), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12148), + [aux_sym_chapter_token1] = ACTIONS(12148), + [aux_sym_section_token1] = ACTIONS(12148), + [aux_sym_subsection_token1] = ACTIONS(12148), + [aux_sym_subsubsection_token1] = ACTIONS(12148), + [aux_sym_paragraph_token1] = ACTIONS(12148), + [aux_sym_subparagraph_token1] = ACTIONS(12148), + [anon_sym_BSLASHitem] = ACTIONS(12148), + [anon_sym_LBRACK] = ACTIONS(12146), + [anon_sym_RBRACK] = ACTIONS(12146), + [anon_sym_LBRACE] = ACTIONS(12146), + [anon_sym_RBRACE] = ACTIONS(12146), + [anon_sym_LPAREN] = ACTIONS(12146), + [anon_sym_RPAREN] = ACTIONS(12146), + [anon_sym_COMMA] = ACTIONS(12146), + [anon_sym_EQ] = ACTIONS(12146), + [sym_word] = ACTIONS(12146), + [sym_param] = ACTIONS(12146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12146), + [anon_sym_DOLLAR] = ACTIONS(12148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12146), + [anon_sym_BSLASHbegin] = ACTIONS(12148), + [anon_sym_BSLASHcaption] = ACTIONS(12148), + [anon_sym_BSLASHcite] = ACTIONS(12148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCite] = ACTIONS(12148), + [anon_sym_BSLASHnocite] = ACTIONS(12148), + [anon_sym_BSLASHcitet] = ACTIONS(12148), + [anon_sym_BSLASHcitep] = ACTIONS(12148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteauthor] = ACTIONS(12148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitetitle] = ACTIONS(12148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteyear] = ACTIONS(12148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitedate] = ACTIONS(12148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteurl] = ACTIONS(12148), + [anon_sym_BSLASHfullcite] = ACTIONS(12148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12148), + [anon_sym_BSLASHcitealt] = ACTIONS(12148), + [anon_sym_BSLASHcitealp] = ACTIONS(12148), + [anon_sym_BSLASHcitetext] = ACTIONS(12148), + [anon_sym_BSLASHparencite] = ACTIONS(12148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHParencite] = ACTIONS(12148), + [anon_sym_BSLASHfootcite] = ACTIONS(12148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12148), + [anon_sym_BSLASHtextcite] = ACTIONS(12148), + [anon_sym_BSLASHTextcite] = ACTIONS(12148), + [anon_sym_BSLASHsmartcite] = ACTIONS(12148), + [anon_sym_BSLASHSmartcite] = ACTIONS(12148), + [anon_sym_BSLASHsupercite] = ACTIONS(12148), + [anon_sym_BSLASHautocite] = ACTIONS(12148), + [anon_sym_BSLASHAutocite] = ACTIONS(12148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHvolcite] = ACTIONS(12148), + [anon_sym_BSLASHVolcite] = ACTIONS(12148), + [anon_sym_BSLASHpvolcite] = ACTIONS(12148), + [anon_sym_BSLASHPvolcite] = ACTIONS(12148), + [anon_sym_BSLASHfvolcite] = ACTIONS(12148), + [anon_sym_BSLASHftvolcite] = ACTIONS(12148), + [anon_sym_BSLASHsvolcite] = ACTIONS(12148), + [anon_sym_BSLASHSvolcite] = ACTIONS(12148), + [anon_sym_BSLASHtvolcite] = ACTIONS(12148), + [anon_sym_BSLASHTvolcite] = ACTIONS(12148), + [anon_sym_BSLASHavolcite] = ACTIONS(12148), + [anon_sym_BSLASHAvolcite] = ACTIONS(12148), + [anon_sym_BSLASHnotecite] = ACTIONS(12148), + [anon_sym_BSLASHpnotecite] = ACTIONS(12148), + [anon_sym_BSLASHPnotecite] = ACTIONS(12148), + [anon_sym_BSLASHfnotecite] = ACTIONS(12148), + [anon_sym_BSLASHusepackage] = ACTIONS(12148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12148), + [anon_sym_BSLASHinclude] = ACTIONS(12148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12148), + [anon_sym_BSLASHinput] = ACTIONS(12148), + [anon_sym_BSLASHsubfile] = ACTIONS(12148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12148), + [anon_sym_BSLASHbibliography] = ACTIONS(12148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12148), + [anon_sym_BSLASHincludesvg] = ACTIONS(12148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12148), + [anon_sym_BSLASHimport] = ACTIONS(12148), + [anon_sym_BSLASHsubimport] = ACTIONS(12148), + [anon_sym_BSLASHinputfrom] = ACTIONS(12148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12148), + [anon_sym_BSLASHincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHlabel] = ACTIONS(12148), + [anon_sym_BSLASHref] = ACTIONS(12148), + [anon_sym_BSLASHvref] = ACTIONS(12148), + [anon_sym_BSLASHVref] = ACTIONS(12148), + [anon_sym_BSLASHautoref] = ACTIONS(12148), + [anon_sym_BSLASHpageref] = ACTIONS(12148), + [anon_sym_BSLASHcref] = ACTIONS(12148), + [anon_sym_BSLASHCref] = ACTIONS(12148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnameCref] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHlabelcref] = ACTIONS(12148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12148), + [anon_sym_BSLASHeqref] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange] = ACTIONS(12148), + [anon_sym_BSLASHCrefrange] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewlabel] = ACTIONS(12148), + [anon_sym_BSLASHnewcommand] = ACTIONS(12148), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12148), + [anon_sym_BSLASHgls] = ACTIONS(12148), + [anon_sym_BSLASHGls] = ACTIONS(12148), + [anon_sym_BSLASHGLS] = ACTIONS(12148), + [anon_sym_BSLASHglspl] = ACTIONS(12148), + [anon_sym_BSLASHGlspl] = ACTIONS(12148), + [anon_sym_BSLASHGLSpl] = ACTIONS(12148), + [anon_sym_BSLASHglsdisp] = ACTIONS(12148), + [anon_sym_BSLASHglslink] = ACTIONS(12148), + [anon_sym_BSLASHglstext] = ACTIONS(12148), + [anon_sym_BSLASHGlstext] = ACTIONS(12148), + [anon_sym_BSLASHGLStext] = ACTIONS(12148), + [anon_sym_BSLASHglsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12148), + [anon_sym_BSLASHglsplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSplural] = ACTIONS(12148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHglsname] = ACTIONS(12148), + [anon_sym_BSLASHGlsname] = ACTIONS(12148), + [anon_sym_BSLASHGLSname] = ACTIONS(12148), + [anon_sym_BSLASHglssymbol] = ACTIONS(12148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12148), + [anon_sym_BSLASHglsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12148), + [anon_sym_BSLASHglsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12148), + [anon_sym_BSLASHglsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12148), + [anon_sym_BSLASHglsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12148), + [anon_sym_BSLASHglsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12148), + [anon_sym_BSLASHnewacronym] = ACTIONS(12148), + [anon_sym_BSLASHacrshort] = ACTIONS(12148), + [anon_sym_BSLASHAcrshort] = ACTIONS(12148), + [anon_sym_BSLASHACRshort] = ACTIONS(12148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12148), + [anon_sym_BSLASHacrlong] = ACTIONS(12148), + [anon_sym_BSLASHAcrlong] = ACTIONS(12148), + [anon_sym_BSLASHACRlong] = ACTIONS(12148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12148), + [anon_sym_BSLASHacrfull] = ACTIONS(12148), + [anon_sym_BSLASHAcrfull] = ACTIONS(12148), + [anon_sym_BSLASHACRfull] = ACTIONS(12148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12148), + [anon_sym_BSLASHacs] = ACTIONS(12148), + [anon_sym_BSLASHAcs] = ACTIONS(12148), + [anon_sym_BSLASHacsp] = ACTIONS(12148), + [anon_sym_BSLASHAcsp] = ACTIONS(12148), + [anon_sym_BSLASHacl] = ACTIONS(12148), + [anon_sym_BSLASHAcl] = ACTIONS(12148), + [anon_sym_BSLASHaclp] = ACTIONS(12148), + [anon_sym_BSLASHAclp] = ACTIONS(12148), + [anon_sym_BSLASHacf] = ACTIONS(12148), + [anon_sym_BSLASHAcf] = ACTIONS(12148), + [anon_sym_BSLASHacfp] = ACTIONS(12148), + [anon_sym_BSLASHAcfp] = ACTIONS(12148), + [anon_sym_BSLASHac] = ACTIONS(12148), + [anon_sym_BSLASHAc] = ACTIONS(12148), + [anon_sym_BSLASHacp] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12148), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12148), + [anon_sym_BSLASHcolor] = ACTIONS(12148), + [anon_sym_BSLASHcolorbox] = ACTIONS(12148), + [anon_sym_BSLASHtextcolor] = ACTIONS(12148), + [anon_sym_BSLASHpagecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12148), + }, + [509] = { + [ts_builtin_sym_end] = ACTIONS(12150), + [sym_generic_command_name] = ACTIONS(12152), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12152), + [aux_sym_chapter_token1] = ACTIONS(12152), + [aux_sym_section_token1] = ACTIONS(12152), + [aux_sym_subsection_token1] = ACTIONS(12152), + [aux_sym_subsubsection_token1] = ACTIONS(12152), + [aux_sym_paragraph_token1] = ACTIONS(12152), + [aux_sym_subparagraph_token1] = ACTIONS(12152), + [anon_sym_BSLASHitem] = ACTIONS(12152), + [anon_sym_LBRACK] = ACTIONS(12150), + [anon_sym_RBRACK] = ACTIONS(12150), + [anon_sym_LBRACE] = ACTIONS(12150), + [anon_sym_RBRACE] = ACTIONS(12150), + [anon_sym_LPAREN] = ACTIONS(12150), + [anon_sym_RPAREN] = ACTIONS(12150), + [anon_sym_COMMA] = ACTIONS(12150), + [anon_sym_EQ] = ACTIONS(12150), + [sym_word] = ACTIONS(12150), + [sym_param] = ACTIONS(12150), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12150), + [anon_sym_DOLLAR] = ACTIONS(12152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12150), + [anon_sym_BSLASHbegin] = ACTIONS(12152), + [anon_sym_BSLASHcaption] = ACTIONS(12152), + [anon_sym_BSLASHcite] = ACTIONS(12152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCite] = ACTIONS(12152), + [anon_sym_BSLASHnocite] = ACTIONS(12152), + [anon_sym_BSLASHcitet] = ACTIONS(12152), + [anon_sym_BSLASHcitep] = ACTIONS(12152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteauthor] = ACTIONS(12152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitetitle] = ACTIONS(12152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteyear] = ACTIONS(12152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitedate] = ACTIONS(12152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteurl] = ACTIONS(12152), + [anon_sym_BSLASHfullcite] = ACTIONS(12152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12152), + [anon_sym_BSLASHcitealt] = ACTIONS(12152), + [anon_sym_BSLASHcitealp] = ACTIONS(12152), + [anon_sym_BSLASHcitetext] = ACTIONS(12152), + [anon_sym_BSLASHparencite] = ACTIONS(12152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHParencite] = ACTIONS(12152), + [anon_sym_BSLASHfootcite] = ACTIONS(12152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12152), + [anon_sym_BSLASHtextcite] = ACTIONS(12152), + [anon_sym_BSLASHTextcite] = ACTIONS(12152), + [anon_sym_BSLASHsmartcite] = ACTIONS(12152), + [anon_sym_BSLASHSmartcite] = ACTIONS(12152), + [anon_sym_BSLASHsupercite] = ACTIONS(12152), + [anon_sym_BSLASHautocite] = ACTIONS(12152), + [anon_sym_BSLASHAutocite] = ACTIONS(12152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHvolcite] = ACTIONS(12152), + [anon_sym_BSLASHVolcite] = ACTIONS(12152), + [anon_sym_BSLASHpvolcite] = ACTIONS(12152), + [anon_sym_BSLASHPvolcite] = ACTIONS(12152), + [anon_sym_BSLASHfvolcite] = ACTIONS(12152), + [anon_sym_BSLASHftvolcite] = ACTIONS(12152), + [anon_sym_BSLASHsvolcite] = ACTIONS(12152), + [anon_sym_BSLASHSvolcite] = ACTIONS(12152), + [anon_sym_BSLASHtvolcite] = ACTIONS(12152), + [anon_sym_BSLASHTvolcite] = ACTIONS(12152), + [anon_sym_BSLASHavolcite] = ACTIONS(12152), + [anon_sym_BSLASHAvolcite] = ACTIONS(12152), + [anon_sym_BSLASHnotecite] = ACTIONS(12152), + [anon_sym_BSLASHpnotecite] = ACTIONS(12152), + [anon_sym_BSLASHPnotecite] = ACTIONS(12152), + [anon_sym_BSLASHfnotecite] = ACTIONS(12152), + [anon_sym_BSLASHusepackage] = ACTIONS(12152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12152), + [anon_sym_BSLASHinclude] = ACTIONS(12152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12152), + [anon_sym_BSLASHinput] = ACTIONS(12152), + [anon_sym_BSLASHsubfile] = ACTIONS(12152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12152), + [anon_sym_BSLASHbibliography] = ACTIONS(12152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12152), + [anon_sym_BSLASHincludesvg] = ACTIONS(12152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12152), + [anon_sym_BSLASHimport] = ACTIONS(12152), + [anon_sym_BSLASHsubimport] = ACTIONS(12152), + [anon_sym_BSLASHinputfrom] = ACTIONS(12152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12152), + [anon_sym_BSLASHincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHlabel] = ACTIONS(12152), + [anon_sym_BSLASHref] = ACTIONS(12152), + [anon_sym_BSLASHvref] = ACTIONS(12152), + [anon_sym_BSLASHVref] = ACTIONS(12152), + [anon_sym_BSLASHautoref] = ACTIONS(12152), + [anon_sym_BSLASHpageref] = ACTIONS(12152), + [anon_sym_BSLASHcref] = ACTIONS(12152), + [anon_sym_BSLASHCref] = ACTIONS(12152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnameCref] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHlabelcref] = ACTIONS(12152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12152), + [anon_sym_BSLASHeqref] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange] = ACTIONS(12152), + [anon_sym_BSLASHCrefrange] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewlabel] = ACTIONS(12152), + [anon_sym_BSLASHnewcommand] = ACTIONS(12152), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12152), + [anon_sym_BSLASHgls] = ACTIONS(12152), + [anon_sym_BSLASHGls] = ACTIONS(12152), + [anon_sym_BSLASHGLS] = ACTIONS(12152), + [anon_sym_BSLASHglspl] = ACTIONS(12152), + [anon_sym_BSLASHGlspl] = ACTIONS(12152), + [anon_sym_BSLASHGLSpl] = ACTIONS(12152), + [anon_sym_BSLASHglsdisp] = ACTIONS(12152), + [anon_sym_BSLASHglslink] = ACTIONS(12152), + [anon_sym_BSLASHglstext] = ACTIONS(12152), + [anon_sym_BSLASHGlstext] = ACTIONS(12152), + [anon_sym_BSLASHGLStext] = ACTIONS(12152), + [anon_sym_BSLASHglsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12152), + [anon_sym_BSLASHglsplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSplural] = ACTIONS(12152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHglsname] = ACTIONS(12152), + [anon_sym_BSLASHGlsname] = ACTIONS(12152), + [anon_sym_BSLASHGLSname] = ACTIONS(12152), + [anon_sym_BSLASHglssymbol] = ACTIONS(12152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12152), + [anon_sym_BSLASHglsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12152), + [anon_sym_BSLASHglsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12152), + [anon_sym_BSLASHglsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12152), + [anon_sym_BSLASHglsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12152), + [anon_sym_BSLASHglsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12152), + [anon_sym_BSLASHnewacronym] = ACTIONS(12152), + [anon_sym_BSLASHacrshort] = ACTIONS(12152), + [anon_sym_BSLASHAcrshort] = ACTIONS(12152), + [anon_sym_BSLASHACRshort] = ACTIONS(12152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12152), + [anon_sym_BSLASHacrlong] = ACTIONS(12152), + [anon_sym_BSLASHAcrlong] = ACTIONS(12152), + [anon_sym_BSLASHACRlong] = ACTIONS(12152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12152), + [anon_sym_BSLASHacrfull] = ACTIONS(12152), + [anon_sym_BSLASHAcrfull] = ACTIONS(12152), + [anon_sym_BSLASHACRfull] = ACTIONS(12152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12152), + [anon_sym_BSLASHacs] = ACTIONS(12152), + [anon_sym_BSLASHAcs] = ACTIONS(12152), + [anon_sym_BSLASHacsp] = ACTIONS(12152), + [anon_sym_BSLASHAcsp] = ACTIONS(12152), + [anon_sym_BSLASHacl] = ACTIONS(12152), + [anon_sym_BSLASHAcl] = ACTIONS(12152), + [anon_sym_BSLASHaclp] = ACTIONS(12152), + [anon_sym_BSLASHAclp] = ACTIONS(12152), + [anon_sym_BSLASHacf] = ACTIONS(12152), + [anon_sym_BSLASHAcf] = ACTIONS(12152), + [anon_sym_BSLASHacfp] = ACTIONS(12152), + [anon_sym_BSLASHAcfp] = ACTIONS(12152), + [anon_sym_BSLASHac] = ACTIONS(12152), + [anon_sym_BSLASHAc] = ACTIONS(12152), + [anon_sym_BSLASHacp] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12152), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12152), + [anon_sym_BSLASHcolor] = ACTIONS(12152), + [anon_sym_BSLASHcolorbox] = ACTIONS(12152), + [anon_sym_BSLASHtextcolor] = ACTIONS(12152), + [anon_sym_BSLASHpagecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12152), + }, + [510] = { + [ts_builtin_sym_end] = ACTIONS(12154), + [sym_generic_command_name] = ACTIONS(12156), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12156), + [aux_sym_chapter_token1] = ACTIONS(12156), + [aux_sym_section_token1] = ACTIONS(12156), + [aux_sym_subsection_token1] = ACTIONS(12156), + [aux_sym_subsubsection_token1] = ACTIONS(12156), + [aux_sym_paragraph_token1] = ACTIONS(12156), + [aux_sym_subparagraph_token1] = ACTIONS(12156), + [anon_sym_BSLASHitem] = ACTIONS(12156), + [anon_sym_LBRACK] = ACTIONS(12154), + [anon_sym_RBRACK] = ACTIONS(12154), + [anon_sym_LBRACE] = ACTIONS(12154), + [anon_sym_RBRACE] = ACTIONS(12154), + [anon_sym_LPAREN] = ACTIONS(12154), + [anon_sym_RPAREN] = ACTIONS(12154), + [anon_sym_COMMA] = ACTIONS(12154), + [anon_sym_EQ] = ACTIONS(12154), + [sym_word] = ACTIONS(12154), + [sym_param] = ACTIONS(12154), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12154), + [anon_sym_DOLLAR] = ACTIONS(12156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12154), + [anon_sym_BSLASHbegin] = ACTIONS(12156), + [anon_sym_BSLASHcaption] = ACTIONS(12156), + [anon_sym_BSLASHcite] = ACTIONS(12156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCite] = ACTIONS(12156), + [anon_sym_BSLASHnocite] = ACTIONS(12156), + [anon_sym_BSLASHcitet] = ACTIONS(12156), + [anon_sym_BSLASHcitep] = ACTIONS(12156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteauthor] = ACTIONS(12156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitetitle] = ACTIONS(12156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteyear] = ACTIONS(12156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitedate] = ACTIONS(12156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteurl] = ACTIONS(12156), + [anon_sym_BSLASHfullcite] = ACTIONS(12156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12156), + [anon_sym_BSLASHcitealt] = ACTIONS(12156), + [anon_sym_BSLASHcitealp] = ACTIONS(12156), + [anon_sym_BSLASHcitetext] = ACTIONS(12156), + [anon_sym_BSLASHparencite] = ACTIONS(12156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHParencite] = ACTIONS(12156), + [anon_sym_BSLASHfootcite] = ACTIONS(12156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12156), + [anon_sym_BSLASHtextcite] = ACTIONS(12156), + [anon_sym_BSLASHTextcite] = ACTIONS(12156), + [anon_sym_BSLASHsmartcite] = ACTIONS(12156), + [anon_sym_BSLASHSmartcite] = ACTIONS(12156), + [anon_sym_BSLASHsupercite] = ACTIONS(12156), + [anon_sym_BSLASHautocite] = ACTIONS(12156), + [anon_sym_BSLASHAutocite] = ACTIONS(12156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHvolcite] = ACTIONS(12156), + [anon_sym_BSLASHVolcite] = ACTIONS(12156), + [anon_sym_BSLASHpvolcite] = ACTIONS(12156), + [anon_sym_BSLASHPvolcite] = ACTIONS(12156), + [anon_sym_BSLASHfvolcite] = ACTIONS(12156), + [anon_sym_BSLASHftvolcite] = ACTIONS(12156), + [anon_sym_BSLASHsvolcite] = ACTIONS(12156), + [anon_sym_BSLASHSvolcite] = ACTIONS(12156), + [anon_sym_BSLASHtvolcite] = ACTIONS(12156), + [anon_sym_BSLASHTvolcite] = ACTIONS(12156), + [anon_sym_BSLASHavolcite] = ACTIONS(12156), + [anon_sym_BSLASHAvolcite] = ACTIONS(12156), + [anon_sym_BSLASHnotecite] = ACTIONS(12156), + [anon_sym_BSLASHpnotecite] = ACTIONS(12156), + [anon_sym_BSLASHPnotecite] = ACTIONS(12156), + [anon_sym_BSLASHfnotecite] = ACTIONS(12156), + [anon_sym_BSLASHusepackage] = ACTIONS(12156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12156), + [anon_sym_BSLASHinclude] = ACTIONS(12156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12156), + [anon_sym_BSLASHinput] = ACTIONS(12156), + [anon_sym_BSLASHsubfile] = ACTIONS(12156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12156), + [anon_sym_BSLASHbibliography] = ACTIONS(12156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12156), + [anon_sym_BSLASHincludesvg] = ACTIONS(12156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12156), + [anon_sym_BSLASHimport] = ACTIONS(12156), + [anon_sym_BSLASHsubimport] = ACTIONS(12156), + [anon_sym_BSLASHinputfrom] = ACTIONS(12156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12156), + [anon_sym_BSLASHincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHlabel] = ACTIONS(12156), + [anon_sym_BSLASHref] = ACTIONS(12156), + [anon_sym_BSLASHvref] = ACTIONS(12156), + [anon_sym_BSLASHVref] = ACTIONS(12156), + [anon_sym_BSLASHautoref] = ACTIONS(12156), + [anon_sym_BSLASHpageref] = ACTIONS(12156), + [anon_sym_BSLASHcref] = ACTIONS(12156), + [anon_sym_BSLASHCref] = ACTIONS(12156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnameCref] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHlabelcref] = ACTIONS(12156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12156), + [anon_sym_BSLASHeqref] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange] = ACTIONS(12156), + [anon_sym_BSLASHCrefrange] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewlabel] = ACTIONS(12156), + [anon_sym_BSLASHnewcommand] = ACTIONS(12156), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12156), + [anon_sym_BSLASHgls] = ACTIONS(12156), + [anon_sym_BSLASHGls] = ACTIONS(12156), + [anon_sym_BSLASHGLS] = ACTIONS(12156), + [anon_sym_BSLASHglspl] = ACTIONS(12156), + [anon_sym_BSLASHGlspl] = ACTIONS(12156), + [anon_sym_BSLASHGLSpl] = ACTIONS(12156), + [anon_sym_BSLASHglsdisp] = ACTIONS(12156), + [anon_sym_BSLASHglslink] = ACTIONS(12156), + [anon_sym_BSLASHglstext] = ACTIONS(12156), + [anon_sym_BSLASHGlstext] = ACTIONS(12156), + [anon_sym_BSLASHGLStext] = ACTIONS(12156), + [anon_sym_BSLASHglsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12156), + [anon_sym_BSLASHglsplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSplural] = ACTIONS(12156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHglsname] = ACTIONS(12156), + [anon_sym_BSLASHGlsname] = ACTIONS(12156), + [anon_sym_BSLASHGLSname] = ACTIONS(12156), + [anon_sym_BSLASHglssymbol] = ACTIONS(12156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12156), + [anon_sym_BSLASHglsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12156), + [anon_sym_BSLASHglsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12156), + [anon_sym_BSLASHglsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12156), + [anon_sym_BSLASHglsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12156), + [anon_sym_BSLASHglsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12156), + [anon_sym_BSLASHnewacronym] = ACTIONS(12156), + [anon_sym_BSLASHacrshort] = ACTIONS(12156), + [anon_sym_BSLASHAcrshort] = ACTIONS(12156), + [anon_sym_BSLASHACRshort] = ACTIONS(12156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12156), + [anon_sym_BSLASHacrlong] = ACTIONS(12156), + [anon_sym_BSLASHAcrlong] = ACTIONS(12156), + [anon_sym_BSLASHACRlong] = ACTIONS(12156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12156), + [anon_sym_BSLASHacrfull] = ACTIONS(12156), + [anon_sym_BSLASHAcrfull] = ACTIONS(12156), + [anon_sym_BSLASHACRfull] = ACTIONS(12156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12156), + [anon_sym_BSLASHacs] = ACTIONS(12156), + [anon_sym_BSLASHAcs] = ACTIONS(12156), + [anon_sym_BSLASHacsp] = ACTIONS(12156), + [anon_sym_BSLASHAcsp] = ACTIONS(12156), + [anon_sym_BSLASHacl] = ACTIONS(12156), + [anon_sym_BSLASHAcl] = ACTIONS(12156), + [anon_sym_BSLASHaclp] = ACTIONS(12156), + [anon_sym_BSLASHAclp] = ACTIONS(12156), + [anon_sym_BSLASHacf] = ACTIONS(12156), + [anon_sym_BSLASHAcf] = ACTIONS(12156), + [anon_sym_BSLASHacfp] = ACTIONS(12156), + [anon_sym_BSLASHAcfp] = ACTIONS(12156), + [anon_sym_BSLASHac] = ACTIONS(12156), + [anon_sym_BSLASHAc] = ACTIONS(12156), + [anon_sym_BSLASHacp] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12156), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12156), + [anon_sym_BSLASHcolor] = ACTIONS(12156), + [anon_sym_BSLASHcolorbox] = ACTIONS(12156), + [anon_sym_BSLASHtextcolor] = ACTIONS(12156), + [anon_sym_BSLASHpagecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12156), + }, + [511] = { + [ts_builtin_sym_end] = ACTIONS(12158), + [sym_generic_command_name] = ACTIONS(12160), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12160), + [aux_sym_chapter_token1] = ACTIONS(12160), + [aux_sym_section_token1] = ACTIONS(12160), + [aux_sym_subsection_token1] = ACTIONS(12160), + [aux_sym_subsubsection_token1] = ACTIONS(12160), + [aux_sym_paragraph_token1] = ACTIONS(12160), + [aux_sym_subparagraph_token1] = ACTIONS(12160), + [anon_sym_BSLASHitem] = ACTIONS(12160), + [anon_sym_LBRACK] = ACTIONS(12158), + [anon_sym_RBRACK] = ACTIONS(12158), + [anon_sym_LBRACE] = ACTIONS(12158), + [anon_sym_RBRACE] = ACTIONS(12158), + [anon_sym_LPAREN] = ACTIONS(12158), + [anon_sym_RPAREN] = ACTIONS(12158), + [anon_sym_COMMA] = ACTIONS(12158), + [anon_sym_EQ] = ACTIONS(12158), + [sym_word] = ACTIONS(12158), + [sym_param] = ACTIONS(12158), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12158), + [anon_sym_DOLLAR] = ACTIONS(12160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12158), + [anon_sym_BSLASHbegin] = ACTIONS(12160), + [anon_sym_BSLASHcaption] = ACTIONS(12160), + [anon_sym_BSLASHcite] = ACTIONS(12160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCite] = ACTIONS(12160), + [anon_sym_BSLASHnocite] = ACTIONS(12160), + [anon_sym_BSLASHcitet] = ACTIONS(12160), + [anon_sym_BSLASHcitep] = ACTIONS(12160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteauthor] = ACTIONS(12160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitetitle] = ACTIONS(12160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteyear] = ACTIONS(12160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitedate] = ACTIONS(12160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteurl] = ACTIONS(12160), + [anon_sym_BSLASHfullcite] = ACTIONS(12160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12160), + [anon_sym_BSLASHcitealt] = ACTIONS(12160), + [anon_sym_BSLASHcitealp] = ACTIONS(12160), + [anon_sym_BSLASHcitetext] = ACTIONS(12160), + [anon_sym_BSLASHparencite] = ACTIONS(12160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHParencite] = ACTIONS(12160), + [anon_sym_BSLASHfootcite] = ACTIONS(12160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12160), + [anon_sym_BSLASHtextcite] = ACTIONS(12160), + [anon_sym_BSLASHTextcite] = ACTIONS(12160), + [anon_sym_BSLASHsmartcite] = ACTIONS(12160), + [anon_sym_BSLASHSmartcite] = ACTIONS(12160), + [anon_sym_BSLASHsupercite] = ACTIONS(12160), + [anon_sym_BSLASHautocite] = ACTIONS(12160), + [anon_sym_BSLASHAutocite] = ACTIONS(12160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHvolcite] = ACTIONS(12160), + [anon_sym_BSLASHVolcite] = ACTIONS(12160), + [anon_sym_BSLASHpvolcite] = ACTIONS(12160), + [anon_sym_BSLASHPvolcite] = ACTIONS(12160), + [anon_sym_BSLASHfvolcite] = ACTIONS(12160), + [anon_sym_BSLASHftvolcite] = ACTIONS(12160), + [anon_sym_BSLASHsvolcite] = ACTIONS(12160), + [anon_sym_BSLASHSvolcite] = ACTIONS(12160), + [anon_sym_BSLASHtvolcite] = ACTIONS(12160), + [anon_sym_BSLASHTvolcite] = ACTIONS(12160), + [anon_sym_BSLASHavolcite] = ACTIONS(12160), + [anon_sym_BSLASHAvolcite] = ACTIONS(12160), + [anon_sym_BSLASHnotecite] = ACTIONS(12160), + [anon_sym_BSLASHpnotecite] = ACTIONS(12160), + [anon_sym_BSLASHPnotecite] = ACTIONS(12160), + [anon_sym_BSLASHfnotecite] = ACTIONS(12160), + [anon_sym_BSLASHusepackage] = ACTIONS(12160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12160), + [anon_sym_BSLASHinclude] = ACTIONS(12160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12160), + [anon_sym_BSLASHinput] = ACTIONS(12160), + [anon_sym_BSLASHsubfile] = ACTIONS(12160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12160), + [anon_sym_BSLASHbibliography] = ACTIONS(12160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12160), + [anon_sym_BSLASHincludesvg] = ACTIONS(12160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12160), + [anon_sym_BSLASHimport] = ACTIONS(12160), + [anon_sym_BSLASHsubimport] = ACTIONS(12160), + [anon_sym_BSLASHinputfrom] = ACTIONS(12160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12160), + [anon_sym_BSLASHincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHlabel] = ACTIONS(12160), + [anon_sym_BSLASHref] = ACTIONS(12160), + [anon_sym_BSLASHvref] = ACTIONS(12160), + [anon_sym_BSLASHVref] = ACTIONS(12160), + [anon_sym_BSLASHautoref] = ACTIONS(12160), + [anon_sym_BSLASHpageref] = ACTIONS(12160), + [anon_sym_BSLASHcref] = ACTIONS(12160), + [anon_sym_BSLASHCref] = ACTIONS(12160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnameCref] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHlabelcref] = ACTIONS(12160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12160), + [anon_sym_BSLASHeqref] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange] = ACTIONS(12160), + [anon_sym_BSLASHCrefrange] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewlabel] = ACTIONS(12160), + [anon_sym_BSLASHnewcommand] = ACTIONS(12160), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12160), + [anon_sym_BSLASHgls] = ACTIONS(12160), + [anon_sym_BSLASHGls] = ACTIONS(12160), + [anon_sym_BSLASHGLS] = ACTIONS(12160), + [anon_sym_BSLASHglspl] = ACTIONS(12160), + [anon_sym_BSLASHGlspl] = ACTIONS(12160), + [anon_sym_BSLASHGLSpl] = ACTIONS(12160), + [anon_sym_BSLASHglsdisp] = ACTIONS(12160), + [anon_sym_BSLASHglslink] = ACTIONS(12160), + [anon_sym_BSLASHglstext] = ACTIONS(12160), + [anon_sym_BSLASHGlstext] = ACTIONS(12160), + [anon_sym_BSLASHGLStext] = ACTIONS(12160), + [anon_sym_BSLASHglsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12160), + [anon_sym_BSLASHglsplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSplural] = ACTIONS(12160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHglsname] = ACTIONS(12160), + [anon_sym_BSLASHGlsname] = ACTIONS(12160), + [anon_sym_BSLASHGLSname] = ACTIONS(12160), + [anon_sym_BSLASHglssymbol] = ACTIONS(12160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12160), + [anon_sym_BSLASHglsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12160), + [anon_sym_BSLASHglsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12160), + [anon_sym_BSLASHglsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12160), + [anon_sym_BSLASHglsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12160), + [anon_sym_BSLASHglsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12160), + [anon_sym_BSLASHnewacronym] = ACTIONS(12160), + [anon_sym_BSLASHacrshort] = ACTIONS(12160), + [anon_sym_BSLASHAcrshort] = ACTIONS(12160), + [anon_sym_BSLASHACRshort] = ACTIONS(12160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12160), + [anon_sym_BSLASHacrlong] = ACTIONS(12160), + [anon_sym_BSLASHAcrlong] = ACTIONS(12160), + [anon_sym_BSLASHACRlong] = ACTIONS(12160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12160), + [anon_sym_BSLASHacrfull] = ACTIONS(12160), + [anon_sym_BSLASHAcrfull] = ACTIONS(12160), + [anon_sym_BSLASHACRfull] = ACTIONS(12160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12160), + [anon_sym_BSLASHacs] = ACTIONS(12160), + [anon_sym_BSLASHAcs] = ACTIONS(12160), + [anon_sym_BSLASHacsp] = ACTIONS(12160), + [anon_sym_BSLASHAcsp] = ACTIONS(12160), + [anon_sym_BSLASHacl] = ACTIONS(12160), + [anon_sym_BSLASHAcl] = ACTIONS(12160), + [anon_sym_BSLASHaclp] = ACTIONS(12160), + [anon_sym_BSLASHAclp] = ACTIONS(12160), + [anon_sym_BSLASHacf] = ACTIONS(12160), + [anon_sym_BSLASHAcf] = ACTIONS(12160), + [anon_sym_BSLASHacfp] = ACTIONS(12160), + [anon_sym_BSLASHAcfp] = ACTIONS(12160), + [anon_sym_BSLASHac] = ACTIONS(12160), + [anon_sym_BSLASHAc] = ACTIONS(12160), + [anon_sym_BSLASHacp] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12160), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12160), + [anon_sym_BSLASHcolor] = ACTIONS(12160), + [anon_sym_BSLASHcolorbox] = ACTIONS(12160), + [anon_sym_BSLASHtextcolor] = ACTIONS(12160), + [anon_sym_BSLASHpagecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12160), + }, + [512] = { + [sym_brace_group] = STATE(512), + [sym_bracket_group] = STATE(512), + [sym_paren_group] = STATE(512), + [aux_sym_generic_command_repeat1] = STATE(512), + [sym_generic_command_name] = ACTIONS(12002), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12002), + [aux_sym_subsection_token1] = ACTIONS(12002), + [aux_sym_subsubsection_token1] = ACTIONS(12002), + [aux_sym_paragraph_token1] = ACTIONS(12002), + [aux_sym_subparagraph_token1] = ACTIONS(12002), + [anon_sym_BSLASHitem] = ACTIONS(12002), + [anon_sym_LBRACK] = ACTIONS(12162), + [anon_sym_RBRACK] = ACTIONS(12000), + [anon_sym_LBRACE] = ACTIONS(12165), + [anon_sym_RBRACE] = ACTIONS(12000), + [anon_sym_LPAREN] = ACTIONS(12168), + [anon_sym_COMMA] = ACTIONS(12000), + [anon_sym_EQ] = ACTIONS(12000), + [sym_word] = ACTIONS(12000), + [sym_param] = ACTIONS(12000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12000), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12000), + [anon_sym_DOLLAR] = ACTIONS(12002), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12000), + [anon_sym_BSLASHbegin] = ACTIONS(12002), + [anon_sym_BSLASHcaption] = ACTIONS(12002), + [anon_sym_BSLASHcite] = ACTIONS(12002), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCite] = ACTIONS(12002), + [anon_sym_BSLASHnocite] = ACTIONS(12002), + [anon_sym_BSLASHcitet] = ACTIONS(12002), + [anon_sym_BSLASHcitep] = ACTIONS(12002), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteauthor] = ACTIONS(12002), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12002), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitetitle] = ACTIONS(12002), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteyear] = ACTIONS(12002), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitedate] = ACTIONS(12002), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteurl] = ACTIONS(12002), + [anon_sym_BSLASHfullcite] = ACTIONS(12002), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12002), + [anon_sym_BSLASHcitealt] = ACTIONS(12002), + [anon_sym_BSLASHcitealp] = ACTIONS(12002), + [anon_sym_BSLASHcitetext] = ACTIONS(12002), + [anon_sym_BSLASHparencite] = ACTIONS(12002), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHParencite] = ACTIONS(12002), + [anon_sym_BSLASHfootcite] = ACTIONS(12002), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12002), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12002), + [anon_sym_BSLASHtextcite] = ACTIONS(12002), + [anon_sym_BSLASHTextcite] = ACTIONS(12002), + [anon_sym_BSLASHsmartcite] = ACTIONS(12002), + [anon_sym_BSLASHSmartcite] = ACTIONS(12002), + [anon_sym_BSLASHsupercite] = ACTIONS(12002), + [anon_sym_BSLASHautocite] = ACTIONS(12002), + [anon_sym_BSLASHAutocite] = ACTIONS(12002), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHvolcite] = ACTIONS(12002), + [anon_sym_BSLASHVolcite] = ACTIONS(12002), + [anon_sym_BSLASHpvolcite] = ACTIONS(12002), + [anon_sym_BSLASHPvolcite] = ACTIONS(12002), + [anon_sym_BSLASHfvolcite] = ACTIONS(12002), + [anon_sym_BSLASHftvolcite] = ACTIONS(12002), + [anon_sym_BSLASHsvolcite] = ACTIONS(12002), + [anon_sym_BSLASHSvolcite] = ACTIONS(12002), + [anon_sym_BSLASHtvolcite] = ACTIONS(12002), + [anon_sym_BSLASHTvolcite] = ACTIONS(12002), + [anon_sym_BSLASHavolcite] = ACTIONS(12002), + [anon_sym_BSLASHAvolcite] = ACTIONS(12002), + [anon_sym_BSLASHnotecite] = ACTIONS(12002), + [anon_sym_BSLASHpnotecite] = ACTIONS(12002), + [anon_sym_BSLASHPnotecite] = ACTIONS(12002), + [anon_sym_BSLASHfnotecite] = ACTIONS(12002), + [anon_sym_BSLASHusepackage] = ACTIONS(12002), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12002), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12002), + [anon_sym_BSLASHinclude] = ACTIONS(12002), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12002), + [anon_sym_BSLASHinput] = ACTIONS(12002), + [anon_sym_BSLASHsubfile] = ACTIONS(12002), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12002), + [anon_sym_BSLASHbibliography] = ACTIONS(12002), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12002), + [anon_sym_BSLASHincludesvg] = ACTIONS(12002), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12002), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12002), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12002), + [anon_sym_BSLASHimport] = ACTIONS(12002), + [anon_sym_BSLASHsubimport] = ACTIONS(12002), + [anon_sym_BSLASHinputfrom] = ACTIONS(12002), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12002), + [anon_sym_BSLASHincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHlabel] = ACTIONS(12002), + [anon_sym_BSLASHref] = ACTIONS(12002), + [anon_sym_BSLASHvref] = ACTIONS(12002), + [anon_sym_BSLASHVref] = ACTIONS(12002), + [anon_sym_BSLASHautoref] = ACTIONS(12002), + [anon_sym_BSLASHpageref] = ACTIONS(12002), + [anon_sym_BSLASHcref] = ACTIONS(12002), + [anon_sym_BSLASHCref] = ACTIONS(12002), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnameCref] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHlabelcref] = ACTIONS(12002), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12002), + [anon_sym_BSLASHeqref] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange] = ACTIONS(12002), + [anon_sym_BSLASHCrefrange] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewlabel] = ACTIONS(12002), + [anon_sym_BSLASHnewcommand] = ACTIONS(12002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12002), + [anon_sym_BSLASHgls] = ACTIONS(12002), + [anon_sym_BSLASHGls] = ACTIONS(12002), + [anon_sym_BSLASHGLS] = ACTIONS(12002), + [anon_sym_BSLASHglspl] = ACTIONS(12002), + [anon_sym_BSLASHGlspl] = ACTIONS(12002), + [anon_sym_BSLASHGLSpl] = ACTIONS(12002), + [anon_sym_BSLASHglsdisp] = ACTIONS(12002), + [anon_sym_BSLASHglslink] = ACTIONS(12002), + [anon_sym_BSLASHglstext] = ACTIONS(12002), + [anon_sym_BSLASHGlstext] = ACTIONS(12002), + [anon_sym_BSLASHGLStext] = ACTIONS(12002), + [anon_sym_BSLASHglsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12002), + [anon_sym_BSLASHglsplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSplural] = ACTIONS(12002), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHglsname] = ACTIONS(12002), + [anon_sym_BSLASHGlsname] = ACTIONS(12002), + [anon_sym_BSLASHGLSname] = ACTIONS(12002), + [anon_sym_BSLASHglssymbol] = ACTIONS(12002), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12002), + [anon_sym_BSLASHglsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12002), + [anon_sym_BSLASHglsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12002), + [anon_sym_BSLASHglsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12002), + [anon_sym_BSLASHglsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12002), + [anon_sym_BSLASHglsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12002), + [anon_sym_BSLASHnewacronym] = ACTIONS(12002), + [anon_sym_BSLASHacrshort] = ACTIONS(12002), + [anon_sym_BSLASHAcrshort] = ACTIONS(12002), + [anon_sym_BSLASHACRshort] = ACTIONS(12002), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12002), + [anon_sym_BSLASHacrlong] = ACTIONS(12002), + [anon_sym_BSLASHAcrlong] = ACTIONS(12002), + [anon_sym_BSLASHACRlong] = ACTIONS(12002), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12002), + [anon_sym_BSLASHacrfull] = ACTIONS(12002), + [anon_sym_BSLASHAcrfull] = ACTIONS(12002), + [anon_sym_BSLASHACRfull] = ACTIONS(12002), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12002), + [anon_sym_BSLASHacs] = ACTIONS(12002), + [anon_sym_BSLASHAcs] = ACTIONS(12002), + [anon_sym_BSLASHacsp] = ACTIONS(12002), + [anon_sym_BSLASHAcsp] = ACTIONS(12002), + [anon_sym_BSLASHacl] = ACTIONS(12002), + [anon_sym_BSLASHAcl] = ACTIONS(12002), + [anon_sym_BSLASHaclp] = ACTIONS(12002), + [anon_sym_BSLASHAclp] = ACTIONS(12002), + [anon_sym_BSLASHacf] = ACTIONS(12002), + [anon_sym_BSLASHAcf] = ACTIONS(12002), + [anon_sym_BSLASHacfp] = ACTIONS(12002), + [anon_sym_BSLASHAcfp] = ACTIONS(12002), + [anon_sym_BSLASHac] = ACTIONS(12002), + [anon_sym_BSLASHAc] = ACTIONS(12002), + [anon_sym_BSLASHacp] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12002), + [anon_sym_BSLASHcolor] = ACTIONS(12002), + [anon_sym_BSLASHcolorbox] = ACTIONS(12002), + [anon_sym_BSLASHtextcolor] = ACTIONS(12002), + [anon_sym_BSLASHpagecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12002), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12002), + }, + [513] = { + [ts_builtin_sym_end] = ACTIONS(12171), + [sym_generic_command_name] = ACTIONS(12173), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12173), + [aux_sym_chapter_token1] = ACTIONS(12173), + [aux_sym_section_token1] = ACTIONS(12173), + [aux_sym_subsection_token1] = ACTIONS(12173), + [aux_sym_subsubsection_token1] = ACTIONS(12173), + [aux_sym_paragraph_token1] = ACTIONS(12173), + [aux_sym_subparagraph_token1] = ACTIONS(12173), + [anon_sym_BSLASHitem] = ACTIONS(12173), + [anon_sym_LBRACK] = ACTIONS(12171), + [anon_sym_RBRACK] = ACTIONS(12171), + [anon_sym_LBRACE] = ACTIONS(12171), + [anon_sym_RBRACE] = ACTIONS(12171), + [anon_sym_LPAREN] = ACTIONS(12171), + [anon_sym_RPAREN] = ACTIONS(12171), + [anon_sym_COMMA] = ACTIONS(12171), + [anon_sym_EQ] = ACTIONS(12171), + [sym_word] = ACTIONS(12171), + [sym_param] = ACTIONS(12171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12171), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12171), + [anon_sym_DOLLAR] = ACTIONS(12173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12171), + [anon_sym_BSLASHbegin] = ACTIONS(12173), + [anon_sym_BSLASHcaption] = ACTIONS(12173), + [anon_sym_BSLASHcite] = ACTIONS(12173), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCite] = ACTIONS(12173), + [anon_sym_BSLASHnocite] = ACTIONS(12173), + [anon_sym_BSLASHcitet] = ACTIONS(12173), + [anon_sym_BSLASHcitep] = ACTIONS(12173), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteauthor] = ACTIONS(12173), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12173), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitetitle] = ACTIONS(12173), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteyear] = ACTIONS(12173), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitedate] = ACTIONS(12173), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteurl] = ACTIONS(12173), + [anon_sym_BSLASHfullcite] = ACTIONS(12173), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12173), + [anon_sym_BSLASHcitealt] = ACTIONS(12173), + [anon_sym_BSLASHcitealp] = ACTIONS(12173), + [anon_sym_BSLASHcitetext] = ACTIONS(12173), + [anon_sym_BSLASHparencite] = ACTIONS(12173), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHParencite] = ACTIONS(12173), + [anon_sym_BSLASHfootcite] = ACTIONS(12173), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12173), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12173), + [anon_sym_BSLASHtextcite] = ACTIONS(12173), + [anon_sym_BSLASHTextcite] = ACTIONS(12173), + [anon_sym_BSLASHsmartcite] = ACTIONS(12173), + [anon_sym_BSLASHSmartcite] = ACTIONS(12173), + [anon_sym_BSLASHsupercite] = ACTIONS(12173), + [anon_sym_BSLASHautocite] = ACTIONS(12173), + [anon_sym_BSLASHAutocite] = ACTIONS(12173), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHvolcite] = ACTIONS(12173), + [anon_sym_BSLASHVolcite] = ACTIONS(12173), + [anon_sym_BSLASHpvolcite] = ACTIONS(12173), + [anon_sym_BSLASHPvolcite] = ACTIONS(12173), + [anon_sym_BSLASHfvolcite] = ACTIONS(12173), + [anon_sym_BSLASHftvolcite] = ACTIONS(12173), + [anon_sym_BSLASHsvolcite] = ACTIONS(12173), + [anon_sym_BSLASHSvolcite] = ACTIONS(12173), + [anon_sym_BSLASHtvolcite] = ACTIONS(12173), + [anon_sym_BSLASHTvolcite] = ACTIONS(12173), + [anon_sym_BSLASHavolcite] = ACTIONS(12173), + [anon_sym_BSLASHAvolcite] = ACTIONS(12173), + [anon_sym_BSLASHnotecite] = ACTIONS(12173), + [anon_sym_BSLASHpnotecite] = ACTIONS(12173), + [anon_sym_BSLASHPnotecite] = ACTIONS(12173), + [anon_sym_BSLASHfnotecite] = ACTIONS(12173), + [anon_sym_BSLASHusepackage] = ACTIONS(12173), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12173), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12173), + [anon_sym_BSLASHinclude] = ACTIONS(12173), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12173), + [anon_sym_BSLASHinput] = ACTIONS(12173), + [anon_sym_BSLASHsubfile] = ACTIONS(12173), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12173), + [anon_sym_BSLASHbibliography] = ACTIONS(12173), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12173), + [anon_sym_BSLASHincludesvg] = ACTIONS(12173), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12173), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12173), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12173), + [anon_sym_BSLASHimport] = ACTIONS(12173), + [anon_sym_BSLASHsubimport] = ACTIONS(12173), + [anon_sym_BSLASHinputfrom] = ACTIONS(12173), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12173), + [anon_sym_BSLASHincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHlabel] = ACTIONS(12173), + [anon_sym_BSLASHref] = ACTIONS(12173), + [anon_sym_BSLASHvref] = ACTIONS(12173), + [anon_sym_BSLASHVref] = ACTIONS(12173), + [anon_sym_BSLASHautoref] = ACTIONS(12173), + [anon_sym_BSLASHpageref] = ACTIONS(12173), + [anon_sym_BSLASHcref] = ACTIONS(12173), + [anon_sym_BSLASHCref] = ACTIONS(12173), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnameCref] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHlabelcref] = ACTIONS(12173), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12173), + [anon_sym_BSLASHeqref] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange] = ACTIONS(12173), + [anon_sym_BSLASHCrefrange] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewlabel] = ACTIONS(12173), + [anon_sym_BSLASHnewcommand] = ACTIONS(12173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12173), + [anon_sym_BSLASHgls] = ACTIONS(12173), + [anon_sym_BSLASHGls] = ACTIONS(12173), + [anon_sym_BSLASHGLS] = ACTIONS(12173), + [anon_sym_BSLASHglspl] = ACTIONS(12173), + [anon_sym_BSLASHGlspl] = ACTIONS(12173), + [anon_sym_BSLASHGLSpl] = ACTIONS(12173), + [anon_sym_BSLASHglsdisp] = ACTIONS(12173), + [anon_sym_BSLASHglslink] = ACTIONS(12173), + [anon_sym_BSLASHglstext] = ACTIONS(12173), + [anon_sym_BSLASHGlstext] = ACTIONS(12173), + [anon_sym_BSLASHGLStext] = ACTIONS(12173), + [anon_sym_BSLASHglsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12173), + [anon_sym_BSLASHglsplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSplural] = ACTIONS(12173), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHglsname] = ACTIONS(12173), + [anon_sym_BSLASHGlsname] = ACTIONS(12173), + [anon_sym_BSLASHGLSname] = ACTIONS(12173), + [anon_sym_BSLASHglssymbol] = ACTIONS(12173), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12173), + [anon_sym_BSLASHglsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12173), + [anon_sym_BSLASHglsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12173), + [anon_sym_BSLASHglsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12173), + [anon_sym_BSLASHglsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12173), + [anon_sym_BSLASHglsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12173), + [anon_sym_BSLASHnewacronym] = ACTIONS(12173), + [anon_sym_BSLASHacrshort] = ACTIONS(12173), + [anon_sym_BSLASHAcrshort] = ACTIONS(12173), + [anon_sym_BSLASHACRshort] = ACTIONS(12173), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12173), + [anon_sym_BSLASHacrlong] = ACTIONS(12173), + [anon_sym_BSLASHAcrlong] = ACTIONS(12173), + [anon_sym_BSLASHACRlong] = ACTIONS(12173), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12173), + [anon_sym_BSLASHacrfull] = ACTIONS(12173), + [anon_sym_BSLASHAcrfull] = ACTIONS(12173), + [anon_sym_BSLASHACRfull] = ACTIONS(12173), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12173), + [anon_sym_BSLASHacs] = ACTIONS(12173), + [anon_sym_BSLASHAcs] = ACTIONS(12173), + [anon_sym_BSLASHacsp] = ACTIONS(12173), + [anon_sym_BSLASHAcsp] = ACTIONS(12173), + [anon_sym_BSLASHacl] = ACTIONS(12173), + [anon_sym_BSLASHAcl] = ACTIONS(12173), + [anon_sym_BSLASHaclp] = ACTIONS(12173), + [anon_sym_BSLASHAclp] = ACTIONS(12173), + [anon_sym_BSLASHacf] = ACTIONS(12173), + [anon_sym_BSLASHAcf] = ACTIONS(12173), + [anon_sym_BSLASHacfp] = ACTIONS(12173), + [anon_sym_BSLASHAcfp] = ACTIONS(12173), + [anon_sym_BSLASHac] = ACTIONS(12173), + [anon_sym_BSLASHAc] = ACTIONS(12173), + [anon_sym_BSLASHacp] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12173), + [anon_sym_BSLASHcolor] = ACTIONS(12173), + [anon_sym_BSLASHcolorbox] = ACTIONS(12173), + [anon_sym_BSLASHtextcolor] = ACTIONS(12173), + [anon_sym_BSLASHpagecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12173), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12173), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12173), + }, + [514] = { + [ts_builtin_sym_end] = ACTIONS(12175), + [sym_generic_command_name] = ACTIONS(12177), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12177), + [aux_sym_chapter_token1] = ACTIONS(12177), + [aux_sym_section_token1] = ACTIONS(12177), + [aux_sym_subsection_token1] = ACTIONS(12177), + [aux_sym_subsubsection_token1] = ACTIONS(12177), + [aux_sym_paragraph_token1] = ACTIONS(12177), + [aux_sym_subparagraph_token1] = ACTIONS(12177), + [anon_sym_BSLASHitem] = ACTIONS(12177), + [anon_sym_LBRACK] = ACTIONS(12175), + [anon_sym_RBRACK] = ACTIONS(12175), + [anon_sym_LBRACE] = ACTIONS(12175), + [anon_sym_RBRACE] = ACTIONS(12175), + [anon_sym_LPAREN] = ACTIONS(12175), + [anon_sym_RPAREN] = ACTIONS(12175), + [anon_sym_COMMA] = ACTIONS(12175), + [anon_sym_EQ] = ACTIONS(12175), + [sym_word] = ACTIONS(12175), + [sym_param] = ACTIONS(12175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12175), + [anon_sym_DOLLAR] = ACTIONS(12177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12175), + [anon_sym_BSLASHbegin] = ACTIONS(12177), + [anon_sym_BSLASHcaption] = ACTIONS(12177), + [anon_sym_BSLASHcite] = ACTIONS(12177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCite] = ACTIONS(12177), + [anon_sym_BSLASHnocite] = ACTIONS(12177), + [anon_sym_BSLASHcitet] = ACTIONS(12177), + [anon_sym_BSLASHcitep] = ACTIONS(12177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteauthor] = ACTIONS(12177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitetitle] = ACTIONS(12177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteyear] = ACTIONS(12177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitedate] = ACTIONS(12177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteurl] = ACTIONS(12177), + [anon_sym_BSLASHfullcite] = ACTIONS(12177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12177), + [anon_sym_BSLASHcitealt] = ACTIONS(12177), + [anon_sym_BSLASHcitealp] = ACTIONS(12177), + [anon_sym_BSLASHcitetext] = ACTIONS(12177), + [anon_sym_BSLASHparencite] = ACTIONS(12177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHParencite] = ACTIONS(12177), + [anon_sym_BSLASHfootcite] = ACTIONS(12177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12177), + [anon_sym_BSLASHtextcite] = ACTIONS(12177), + [anon_sym_BSLASHTextcite] = ACTIONS(12177), + [anon_sym_BSLASHsmartcite] = ACTIONS(12177), + [anon_sym_BSLASHSmartcite] = ACTIONS(12177), + [anon_sym_BSLASHsupercite] = ACTIONS(12177), + [anon_sym_BSLASHautocite] = ACTIONS(12177), + [anon_sym_BSLASHAutocite] = ACTIONS(12177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHvolcite] = ACTIONS(12177), + [anon_sym_BSLASHVolcite] = ACTIONS(12177), + [anon_sym_BSLASHpvolcite] = ACTIONS(12177), + [anon_sym_BSLASHPvolcite] = ACTIONS(12177), + [anon_sym_BSLASHfvolcite] = ACTIONS(12177), + [anon_sym_BSLASHftvolcite] = ACTIONS(12177), + [anon_sym_BSLASHsvolcite] = ACTIONS(12177), + [anon_sym_BSLASHSvolcite] = ACTIONS(12177), + [anon_sym_BSLASHtvolcite] = ACTIONS(12177), + [anon_sym_BSLASHTvolcite] = ACTIONS(12177), + [anon_sym_BSLASHavolcite] = ACTIONS(12177), + [anon_sym_BSLASHAvolcite] = ACTIONS(12177), + [anon_sym_BSLASHnotecite] = ACTIONS(12177), + [anon_sym_BSLASHpnotecite] = ACTIONS(12177), + [anon_sym_BSLASHPnotecite] = ACTIONS(12177), + [anon_sym_BSLASHfnotecite] = ACTIONS(12177), + [anon_sym_BSLASHusepackage] = ACTIONS(12177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12177), + [anon_sym_BSLASHinclude] = ACTIONS(12177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12177), + [anon_sym_BSLASHinput] = ACTIONS(12177), + [anon_sym_BSLASHsubfile] = ACTIONS(12177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12177), + [anon_sym_BSLASHbibliography] = ACTIONS(12177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12177), + [anon_sym_BSLASHincludesvg] = ACTIONS(12177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12177), + [anon_sym_BSLASHimport] = ACTIONS(12177), + [anon_sym_BSLASHsubimport] = ACTIONS(12177), + [anon_sym_BSLASHinputfrom] = ACTIONS(12177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12177), + [anon_sym_BSLASHincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHlabel] = ACTIONS(12177), + [anon_sym_BSLASHref] = ACTIONS(12177), + [anon_sym_BSLASHvref] = ACTIONS(12177), + [anon_sym_BSLASHVref] = ACTIONS(12177), + [anon_sym_BSLASHautoref] = ACTIONS(12177), + [anon_sym_BSLASHpageref] = ACTIONS(12177), + [anon_sym_BSLASHcref] = ACTIONS(12177), + [anon_sym_BSLASHCref] = ACTIONS(12177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnameCref] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHlabelcref] = ACTIONS(12177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12177), + [anon_sym_BSLASHeqref] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange] = ACTIONS(12177), + [anon_sym_BSLASHCrefrange] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewlabel] = ACTIONS(12177), + [anon_sym_BSLASHnewcommand] = ACTIONS(12177), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12177), + [anon_sym_BSLASHgls] = ACTIONS(12177), + [anon_sym_BSLASHGls] = ACTIONS(12177), + [anon_sym_BSLASHGLS] = ACTIONS(12177), + [anon_sym_BSLASHglspl] = ACTIONS(12177), + [anon_sym_BSLASHGlspl] = ACTIONS(12177), + [anon_sym_BSLASHGLSpl] = ACTIONS(12177), + [anon_sym_BSLASHglsdisp] = ACTIONS(12177), + [anon_sym_BSLASHglslink] = ACTIONS(12177), + [anon_sym_BSLASHglstext] = ACTIONS(12177), + [anon_sym_BSLASHGlstext] = ACTIONS(12177), + [anon_sym_BSLASHGLStext] = ACTIONS(12177), + [anon_sym_BSLASHglsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12177), + [anon_sym_BSLASHglsplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSplural] = ACTIONS(12177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHglsname] = ACTIONS(12177), + [anon_sym_BSLASHGlsname] = ACTIONS(12177), + [anon_sym_BSLASHGLSname] = ACTIONS(12177), + [anon_sym_BSLASHglssymbol] = ACTIONS(12177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12177), + [anon_sym_BSLASHglsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12177), + [anon_sym_BSLASHglsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12177), + [anon_sym_BSLASHglsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12177), + [anon_sym_BSLASHglsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12177), + [anon_sym_BSLASHglsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12177), + [anon_sym_BSLASHnewacronym] = ACTIONS(12177), + [anon_sym_BSLASHacrshort] = ACTIONS(12177), + [anon_sym_BSLASHAcrshort] = ACTIONS(12177), + [anon_sym_BSLASHACRshort] = ACTIONS(12177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12177), + [anon_sym_BSLASHacrlong] = ACTIONS(12177), + [anon_sym_BSLASHAcrlong] = ACTIONS(12177), + [anon_sym_BSLASHACRlong] = ACTIONS(12177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12177), + [anon_sym_BSLASHacrfull] = ACTIONS(12177), + [anon_sym_BSLASHAcrfull] = ACTIONS(12177), + [anon_sym_BSLASHACRfull] = ACTIONS(12177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12177), + [anon_sym_BSLASHacs] = ACTIONS(12177), + [anon_sym_BSLASHAcs] = ACTIONS(12177), + [anon_sym_BSLASHacsp] = ACTIONS(12177), + [anon_sym_BSLASHAcsp] = ACTIONS(12177), + [anon_sym_BSLASHacl] = ACTIONS(12177), + [anon_sym_BSLASHAcl] = ACTIONS(12177), + [anon_sym_BSLASHaclp] = ACTIONS(12177), + [anon_sym_BSLASHAclp] = ACTIONS(12177), + [anon_sym_BSLASHacf] = ACTIONS(12177), + [anon_sym_BSLASHAcf] = ACTIONS(12177), + [anon_sym_BSLASHacfp] = ACTIONS(12177), + [anon_sym_BSLASHAcfp] = ACTIONS(12177), + [anon_sym_BSLASHac] = ACTIONS(12177), + [anon_sym_BSLASHAc] = ACTIONS(12177), + [anon_sym_BSLASHacp] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12177), + [anon_sym_BSLASHcolor] = ACTIONS(12177), + [anon_sym_BSLASHcolorbox] = ACTIONS(12177), + [anon_sym_BSLASHtextcolor] = ACTIONS(12177), + [anon_sym_BSLASHpagecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12177), + }, + [515] = { + [sym_brace_group] = STATE(512), + [sym_bracket_group] = STATE(512), + [sym_paren_group] = STATE(512), + [aux_sym_generic_command_repeat1] = STATE(512), + [sym_generic_command_name] = ACTIONS(11998), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(11998), + [aux_sym_subsection_token1] = ACTIONS(11998), + [aux_sym_subsubsection_token1] = ACTIONS(11998), + [aux_sym_paragraph_token1] = ACTIONS(11998), + [aux_sym_subparagraph_token1] = ACTIONS(11998), + [anon_sym_BSLASHitem] = ACTIONS(11998), + [anon_sym_LBRACK] = ACTIONS(12110), + [anon_sym_RBRACK] = ACTIONS(11996), + [anon_sym_LBRACE] = ACTIONS(4074), + [anon_sym_RBRACE] = ACTIONS(11996), + [anon_sym_LPAREN] = ACTIONS(12112), + [anon_sym_COMMA] = ACTIONS(11996), + [anon_sym_EQ] = ACTIONS(11996), + [sym_word] = ACTIONS(11996), + [sym_param] = ACTIONS(11996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11996), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11996), + [anon_sym_DOLLAR] = ACTIONS(11998), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11996), + [anon_sym_BSLASHbegin] = ACTIONS(11998), + [anon_sym_BSLASHcaption] = ACTIONS(11998), + [anon_sym_BSLASHcite] = ACTIONS(11998), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCite] = ACTIONS(11998), + [anon_sym_BSLASHnocite] = ACTIONS(11998), + [anon_sym_BSLASHcitet] = ACTIONS(11998), + [anon_sym_BSLASHcitep] = ACTIONS(11998), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteauthor] = ACTIONS(11998), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11998), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitetitle] = ACTIONS(11998), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteyear] = ACTIONS(11998), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitedate] = ACTIONS(11998), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteurl] = ACTIONS(11998), + [anon_sym_BSLASHfullcite] = ACTIONS(11998), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11998), + [anon_sym_BSLASHcitealt] = ACTIONS(11998), + [anon_sym_BSLASHcitealp] = ACTIONS(11998), + [anon_sym_BSLASHcitetext] = ACTIONS(11998), + [anon_sym_BSLASHparencite] = ACTIONS(11998), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHParencite] = ACTIONS(11998), + [anon_sym_BSLASHfootcite] = ACTIONS(11998), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11998), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11998), + [anon_sym_BSLASHtextcite] = ACTIONS(11998), + [anon_sym_BSLASHTextcite] = ACTIONS(11998), + [anon_sym_BSLASHsmartcite] = ACTIONS(11998), + [anon_sym_BSLASHSmartcite] = ACTIONS(11998), + [anon_sym_BSLASHsupercite] = ACTIONS(11998), + [anon_sym_BSLASHautocite] = ACTIONS(11998), + [anon_sym_BSLASHAutocite] = ACTIONS(11998), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHvolcite] = ACTIONS(11998), + [anon_sym_BSLASHVolcite] = ACTIONS(11998), + [anon_sym_BSLASHpvolcite] = ACTIONS(11998), + [anon_sym_BSLASHPvolcite] = ACTIONS(11998), + [anon_sym_BSLASHfvolcite] = ACTIONS(11998), + [anon_sym_BSLASHftvolcite] = ACTIONS(11998), + [anon_sym_BSLASHsvolcite] = ACTIONS(11998), + [anon_sym_BSLASHSvolcite] = ACTIONS(11998), + [anon_sym_BSLASHtvolcite] = ACTIONS(11998), + [anon_sym_BSLASHTvolcite] = ACTIONS(11998), + [anon_sym_BSLASHavolcite] = ACTIONS(11998), + [anon_sym_BSLASHAvolcite] = ACTIONS(11998), + [anon_sym_BSLASHnotecite] = ACTIONS(11998), + [anon_sym_BSLASHpnotecite] = ACTIONS(11998), + [anon_sym_BSLASHPnotecite] = ACTIONS(11998), + [anon_sym_BSLASHfnotecite] = ACTIONS(11998), + [anon_sym_BSLASHusepackage] = ACTIONS(11998), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11998), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11998), + [anon_sym_BSLASHinclude] = ACTIONS(11998), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11998), + [anon_sym_BSLASHinput] = ACTIONS(11998), + [anon_sym_BSLASHsubfile] = ACTIONS(11998), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11998), + [anon_sym_BSLASHbibliography] = ACTIONS(11998), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11998), + [anon_sym_BSLASHincludesvg] = ACTIONS(11998), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11998), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11998), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11998), + [anon_sym_BSLASHimport] = ACTIONS(11998), + [anon_sym_BSLASHsubimport] = ACTIONS(11998), + [anon_sym_BSLASHinputfrom] = ACTIONS(11998), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11998), + [anon_sym_BSLASHincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHlabel] = ACTIONS(11998), + [anon_sym_BSLASHref] = ACTIONS(11998), + [anon_sym_BSLASHvref] = ACTIONS(11998), + [anon_sym_BSLASHVref] = ACTIONS(11998), + [anon_sym_BSLASHautoref] = ACTIONS(11998), + [anon_sym_BSLASHpageref] = ACTIONS(11998), + [anon_sym_BSLASHcref] = ACTIONS(11998), + [anon_sym_BSLASHCref] = ACTIONS(11998), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnameCref] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHlabelcref] = ACTIONS(11998), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11998), + [anon_sym_BSLASHeqref] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange] = ACTIONS(11998), + [anon_sym_BSLASHCrefrange] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewlabel] = ACTIONS(11998), + [anon_sym_BSLASHnewcommand] = ACTIONS(11998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11998), + [anon_sym_BSLASHgls] = ACTIONS(11998), + [anon_sym_BSLASHGls] = ACTIONS(11998), + [anon_sym_BSLASHGLS] = ACTIONS(11998), + [anon_sym_BSLASHglspl] = ACTIONS(11998), + [anon_sym_BSLASHGlspl] = ACTIONS(11998), + [anon_sym_BSLASHGLSpl] = ACTIONS(11998), + [anon_sym_BSLASHglsdisp] = ACTIONS(11998), + [anon_sym_BSLASHglslink] = ACTIONS(11998), + [anon_sym_BSLASHglstext] = ACTIONS(11998), + [anon_sym_BSLASHGlstext] = ACTIONS(11998), + [anon_sym_BSLASHGLStext] = ACTIONS(11998), + [anon_sym_BSLASHglsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11998), + [anon_sym_BSLASHglsplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSplural] = ACTIONS(11998), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHglsname] = ACTIONS(11998), + [anon_sym_BSLASHGlsname] = ACTIONS(11998), + [anon_sym_BSLASHGLSname] = ACTIONS(11998), + [anon_sym_BSLASHglssymbol] = ACTIONS(11998), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11998), + [anon_sym_BSLASHglsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11998), + [anon_sym_BSLASHglsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11998), + [anon_sym_BSLASHglsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11998), + [anon_sym_BSLASHglsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11998), + [anon_sym_BSLASHglsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11998), + [anon_sym_BSLASHnewacronym] = ACTIONS(11998), + [anon_sym_BSLASHacrshort] = ACTIONS(11998), + [anon_sym_BSLASHAcrshort] = ACTIONS(11998), + [anon_sym_BSLASHACRshort] = ACTIONS(11998), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11998), + [anon_sym_BSLASHacrlong] = ACTIONS(11998), + [anon_sym_BSLASHAcrlong] = ACTIONS(11998), + [anon_sym_BSLASHACRlong] = ACTIONS(11998), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11998), + [anon_sym_BSLASHacrfull] = ACTIONS(11998), + [anon_sym_BSLASHAcrfull] = ACTIONS(11998), + [anon_sym_BSLASHACRfull] = ACTIONS(11998), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11998), + [anon_sym_BSLASHacs] = ACTIONS(11998), + [anon_sym_BSLASHAcs] = ACTIONS(11998), + [anon_sym_BSLASHacsp] = ACTIONS(11998), + [anon_sym_BSLASHAcsp] = ACTIONS(11998), + [anon_sym_BSLASHacl] = ACTIONS(11998), + [anon_sym_BSLASHAcl] = ACTIONS(11998), + [anon_sym_BSLASHaclp] = ACTIONS(11998), + [anon_sym_BSLASHAclp] = ACTIONS(11998), + [anon_sym_BSLASHacf] = ACTIONS(11998), + [anon_sym_BSLASHAcf] = ACTIONS(11998), + [anon_sym_BSLASHacfp] = ACTIONS(11998), + [anon_sym_BSLASHAcfp] = ACTIONS(11998), + [anon_sym_BSLASHac] = ACTIONS(11998), + [anon_sym_BSLASHAc] = ACTIONS(11998), + [anon_sym_BSLASHacp] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11998), + [anon_sym_BSLASHcolor] = ACTIONS(11998), + [anon_sym_BSLASHcolorbox] = ACTIONS(11998), + [anon_sym_BSLASHtextcolor] = ACTIONS(11998), + [anon_sym_BSLASHpagecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11998), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11998), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11998), + }, + [516] = { + [ts_builtin_sym_end] = ACTIONS(12179), + [sym_generic_command_name] = ACTIONS(12181), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12181), + [aux_sym_chapter_token1] = ACTIONS(12181), + [aux_sym_section_token1] = ACTIONS(12181), + [aux_sym_subsection_token1] = ACTIONS(12181), + [aux_sym_subsubsection_token1] = ACTIONS(12181), + [aux_sym_paragraph_token1] = ACTIONS(12181), + [aux_sym_subparagraph_token1] = ACTIONS(12181), + [anon_sym_BSLASHitem] = ACTIONS(12181), + [anon_sym_LBRACK] = ACTIONS(12179), + [anon_sym_RBRACK] = ACTIONS(12179), + [anon_sym_LBRACE] = ACTIONS(12179), + [anon_sym_RBRACE] = ACTIONS(12179), + [anon_sym_LPAREN] = ACTIONS(12179), + [anon_sym_RPAREN] = ACTIONS(12179), + [anon_sym_COMMA] = ACTIONS(12179), + [anon_sym_EQ] = ACTIONS(12179), + [sym_word] = ACTIONS(12179), + [sym_param] = ACTIONS(12179), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12179), + [anon_sym_DOLLAR] = ACTIONS(12181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12179), + [anon_sym_BSLASHbegin] = ACTIONS(12181), + [anon_sym_BSLASHcaption] = ACTIONS(12181), + [anon_sym_BSLASHcite] = ACTIONS(12181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCite] = ACTIONS(12181), + [anon_sym_BSLASHnocite] = ACTIONS(12181), + [anon_sym_BSLASHcitet] = ACTIONS(12181), + [anon_sym_BSLASHcitep] = ACTIONS(12181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteauthor] = ACTIONS(12181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitetitle] = ACTIONS(12181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteyear] = ACTIONS(12181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitedate] = ACTIONS(12181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteurl] = ACTIONS(12181), + [anon_sym_BSLASHfullcite] = ACTIONS(12181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12181), + [anon_sym_BSLASHcitealt] = ACTIONS(12181), + [anon_sym_BSLASHcitealp] = ACTIONS(12181), + [anon_sym_BSLASHcitetext] = ACTIONS(12181), + [anon_sym_BSLASHparencite] = ACTIONS(12181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHParencite] = ACTIONS(12181), + [anon_sym_BSLASHfootcite] = ACTIONS(12181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12181), + [anon_sym_BSLASHtextcite] = ACTIONS(12181), + [anon_sym_BSLASHTextcite] = ACTIONS(12181), + [anon_sym_BSLASHsmartcite] = ACTIONS(12181), + [anon_sym_BSLASHSmartcite] = ACTIONS(12181), + [anon_sym_BSLASHsupercite] = ACTIONS(12181), + [anon_sym_BSLASHautocite] = ACTIONS(12181), + [anon_sym_BSLASHAutocite] = ACTIONS(12181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHvolcite] = ACTIONS(12181), + [anon_sym_BSLASHVolcite] = ACTIONS(12181), + [anon_sym_BSLASHpvolcite] = ACTIONS(12181), + [anon_sym_BSLASHPvolcite] = ACTIONS(12181), + [anon_sym_BSLASHfvolcite] = ACTIONS(12181), + [anon_sym_BSLASHftvolcite] = ACTIONS(12181), + [anon_sym_BSLASHsvolcite] = ACTIONS(12181), + [anon_sym_BSLASHSvolcite] = ACTIONS(12181), + [anon_sym_BSLASHtvolcite] = ACTIONS(12181), + [anon_sym_BSLASHTvolcite] = ACTIONS(12181), + [anon_sym_BSLASHavolcite] = ACTIONS(12181), + [anon_sym_BSLASHAvolcite] = ACTIONS(12181), + [anon_sym_BSLASHnotecite] = ACTIONS(12181), + [anon_sym_BSLASHpnotecite] = ACTIONS(12181), + [anon_sym_BSLASHPnotecite] = ACTIONS(12181), + [anon_sym_BSLASHfnotecite] = ACTIONS(12181), + [anon_sym_BSLASHusepackage] = ACTIONS(12181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12181), + [anon_sym_BSLASHinclude] = ACTIONS(12181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12181), + [anon_sym_BSLASHinput] = ACTIONS(12181), + [anon_sym_BSLASHsubfile] = ACTIONS(12181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12181), + [anon_sym_BSLASHbibliography] = ACTIONS(12181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12181), + [anon_sym_BSLASHincludesvg] = ACTIONS(12181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12181), + [anon_sym_BSLASHimport] = ACTIONS(12181), + [anon_sym_BSLASHsubimport] = ACTIONS(12181), + [anon_sym_BSLASHinputfrom] = ACTIONS(12181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12181), + [anon_sym_BSLASHincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHlabel] = ACTIONS(12181), + [anon_sym_BSLASHref] = ACTIONS(12181), + [anon_sym_BSLASHvref] = ACTIONS(12181), + [anon_sym_BSLASHVref] = ACTIONS(12181), + [anon_sym_BSLASHautoref] = ACTIONS(12181), + [anon_sym_BSLASHpageref] = ACTIONS(12181), + [anon_sym_BSLASHcref] = ACTIONS(12181), + [anon_sym_BSLASHCref] = ACTIONS(12181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnameCref] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHlabelcref] = ACTIONS(12181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12181), + [anon_sym_BSLASHeqref] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange] = ACTIONS(12181), + [anon_sym_BSLASHCrefrange] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewlabel] = ACTIONS(12181), + [anon_sym_BSLASHnewcommand] = ACTIONS(12181), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12181), + [anon_sym_BSLASHgls] = ACTIONS(12181), + [anon_sym_BSLASHGls] = ACTIONS(12181), + [anon_sym_BSLASHGLS] = ACTIONS(12181), + [anon_sym_BSLASHglspl] = ACTIONS(12181), + [anon_sym_BSLASHGlspl] = ACTIONS(12181), + [anon_sym_BSLASHGLSpl] = ACTIONS(12181), + [anon_sym_BSLASHglsdisp] = ACTIONS(12181), + [anon_sym_BSLASHglslink] = ACTIONS(12181), + [anon_sym_BSLASHglstext] = ACTIONS(12181), + [anon_sym_BSLASHGlstext] = ACTIONS(12181), + [anon_sym_BSLASHGLStext] = ACTIONS(12181), + [anon_sym_BSLASHglsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12181), + [anon_sym_BSLASHglsplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSplural] = ACTIONS(12181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHglsname] = ACTIONS(12181), + [anon_sym_BSLASHGlsname] = ACTIONS(12181), + [anon_sym_BSLASHGLSname] = ACTIONS(12181), + [anon_sym_BSLASHglssymbol] = ACTIONS(12181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12181), + [anon_sym_BSLASHglsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12181), + [anon_sym_BSLASHglsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12181), + [anon_sym_BSLASHglsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12181), + [anon_sym_BSLASHglsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12181), + [anon_sym_BSLASHglsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12181), + [anon_sym_BSLASHnewacronym] = ACTIONS(12181), + [anon_sym_BSLASHacrshort] = ACTIONS(12181), + [anon_sym_BSLASHAcrshort] = ACTIONS(12181), + [anon_sym_BSLASHACRshort] = ACTIONS(12181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12181), + [anon_sym_BSLASHacrlong] = ACTIONS(12181), + [anon_sym_BSLASHAcrlong] = ACTIONS(12181), + [anon_sym_BSLASHACRlong] = ACTIONS(12181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12181), + [anon_sym_BSLASHacrfull] = ACTIONS(12181), + [anon_sym_BSLASHAcrfull] = ACTIONS(12181), + [anon_sym_BSLASHACRfull] = ACTIONS(12181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12181), + [anon_sym_BSLASHacs] = ACTIONS(12181), + [anon_sym_BSLASHAcs] = ACTIONS(12181), + [anon_sym_BSLASHacsp] = ACTIONS(12181), + [anon_sym_BSLASHAcsp] = ACTIONS(12181), + [anon_sym_BSLASHacl] = ACTIONS(12181), + [anon_sym_BSLASHAcl] = ACTIONS(12181), + [anon_sym_BSLASHaclp] = ACTIONS(12181), + [anon_sym_BSLASHAclp] = ACTIONS(12181), + [anon_sym_BSLASHacf] = ACTIONS(12181), + [anon_sym_BSLASHAcf] = ACTIONS(12181), + [anon_sym_BSLASHacfp] = ACTIONS(12181), + [anon_sym_BSLASHAcfp] = ACTIONS(12181), + [anon_sym_BSLASHac] = ACTIONS(12181), + [anon_sym_BSLASHAc] = ACTIONS(12181), + [anon_sym_BSLASHacp] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12181), + [anon_sym_BSLASHcolor] = ACTIONS(12181), + [anon_sym_BSLASHcolorbox] = ACTIONS(12181), + [anon_sym_BSLASHtextcolor] = ACTIONS(12181), + [anon_sym_BSLASHpagecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12181), + }, + [517] = { + [ts_builtin_sym_end] = ACTIONS(12183), + [sym_generic_command_name] = ACTIONS(12185), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12185), + [aux_sym_chapter_token1] = ACTIONS(12185), + [aux_sym_section_token1] = ACTIONS(12185), + [aux_sym_subsection_token1] = ACTIONS(12185), + [aux_sym_subsubsection_token1] = ACTIONS(12185), + [aux_sym_paragraph_token1] = ACTIONS(12185), + [aux_sym_subparagraph_token1] = ACTIONS(12185), + [anon_sym_BSLASHitem] = ACTIONS(12185), + [anon_sym_LBRACK] = ACTIONS(12183), + [anon_sym_RBRACK] = ACTIONS(12183), + [anon_sym_LBRACE] = ACTIONS(12183), + [anon_sym_RBRACE] = ACTIONS(12183), + [anon_sym_LPAREN] = ACTIONS(12183), + [anon_sym_RPAREN] = ACTIONS(12183), + [anon_sym_COMMA] = ACTIONS(12183), + [anon_sym_EQ] = ACTIONS(12183), + [sym_word] = ACTIONS(12183), + [sym_param] = ACTIONS(12183), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12183), + [anon_sym_DOLLAR] = ACTIONS(12185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12183), + [anon_sym_BSLASHbegin] = ACTIONS(12185), + [anon_sym_BSLASHcaption] = ACTIONS(12185), + [anon_sym_BSLASHcite] = ACTIONS(12185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCite] = ACTIONS(12185), + [anon_sym_BSLASHnocite] = ACTIONS(12185), + [anon_sym_BSLASHcitet] = ACTIONS(12185), + [anon_sym_BSLASHcitep] = ACTIONS(12185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteauthor] = ACTIONS(12185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitetitle] = ACTIONS(12185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteyear] = ACTIONS(12185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitedate] = ACTIONS(12185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteurl] = ACTIONS(12185), + [anon_sym_BSLASHfullcite] = ACTIONS(12185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12185), + [anon_sym_BSLASHcitealt] = ACTIONS(12185), + [anon_sym_BSLASHcitealp] = ACTIONS(12185), + [anon_sym_BSLASHcitetext] = ACTIONS(12185), + [anon_sym_BSLASHparencite] = ACTIONS(12185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHParencite] = ACTIONS(12185), + [anon_sym_BSLASHfootcite] = ACTIONS(12185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12185), + [anon_sym_BSLASHtextcite] = ACTIONS(12185), + [anon_sym_BSLASHTextcite] = ACTIONS(12185), + [anon_sym_BSLASHsmartcite] = ACTIONS(12185), + [anon_sym_BSLASHSmartcite] = ACTIONS(12185), + [anon_sym_BSLASHsupercite] = ACTIONS(12185), + [anon_sym_BSLASHautocite] = ACTIONS(12185), + [anon_sym_BSLASHAutocite] = ACTIONS(12185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHvolcite] = ACTIONS(12185), + [anon_sym_BSLASHVolcite] = ACTIONS(12185), + [anon_sym_BSLASHpvolcite] = ACTIONS(12185), + [anon_sym_BSLASHPvolcite] = ACTIONS(12185), + [anon_sym_BSLASHfvolcite] = ACTIONS(12185), + [anon_sym_BSLASHftvolcite] = ACTIONS(12185), + [anon_sym_BSLASHsvolcite] = ACTIONS(12185), + [anon_sym_BSLASHSvolcite] = ACTIONS(12185), + [anon_sym_BSLASHtvolcite] = ACTIONS(12185), + [anon_sym_BSLASHTvolcite] = ACTIONS(12185), + [anon_sym_BSLASHavolcite] = ACTIONS(12185), + [anon_sym_BSLASHAvolcite] = ACTIONS(12185), + [anon_sym_BSLASHnotecite] = ACTIONS(12185), + [anon_sym_BSLASHpnotecite] = ACTIONS(12185), + [anon_sym_BSLASHPnotecite] = ACTIONS(12185), + [anon_sym_BSLASHfnotecite] = ACTIONS(12185), + [anon_sym_BSLASHusepackage] = ACTIONS(12185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12185), + [anon_sym_BSLASHinclude] = ACTIONS(12185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12185), + [anon_sym_BSLASHinput] = ACTIONS(12185), + [anon_sym_BSLASHsubfile] = ACTIONS(12185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12185), + [anon_sym_BSLASHbibliography] = ACTIONS(12185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12185), + [anon_sym_BSLASHincludesvg] = ACTIONS(12185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12185), + [anon_sym_BSLASHimport] = ACTIONS(12185), + [anon_sym_BSLASHsubimport] = ACTIONS(12185), + [anon_sym_BSLASHinputfrom] = ACTIONS(12185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12185), + [anon_sym_BSLASHincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHlabel] = ACTIONS(12185), + [anon_sym_BSLASHref] = ACTIONS(12185), + [anon_sym_BSLASHvref] = ACTIONS(12185), + [anon_sym_BSLASHVref] = ACTIONS(12185), + [anon_sym_BSLASHautoref] = ACTIONS(12185), + [anon_sym_BSLASHpageref] = ACTIONS(12185), + [anon_sym_BSLASHcref] = ACTIONS(12185), + [anon_sym_BSLASHCref] = ACTIONS(12185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnameCref] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHlabelcref] = ACTIONS(12185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12185), + [anon_sym_BSLASHeqref] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange] = ACTIONS(12185), + [anon_sym_BSLASHCrefrange] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewlabel] = ACTIONS(12185), + [anon_sym_BSLASHnewcommand] = ACTIONS(12185), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12185), + [anon_sym_BSLASHgls] = ACTIONS(12185), + [anon_sym_BSLASHGls] = ACTIONS(12185), + [anon_sym_BSLASHGLS] = ACTIONS(12185), + [anon_sym_BSLASHglspl] = ACTIONS(12185), + [anon_sym_BSLASHGlspl] = ACTIONS(12185), + [anon_sym_BSLASHGLSpl] = ACTIONS(12185), + [anon_sym_BSLASHglsdisp] = ACTIONS(12185), + [anon_sym_BSLASHglslink] = ACTIONS(12185), + [anon_sym_BSLASHglstext] = ACTIONS(12185), + [anon_sym_BSLASHGlstext] = ACTIONS(12185), + [anon_sym_BSLASHGLStext] = ACTIONS(12185), + [anon_sym_BSLASHglsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12185), + [anon_sym_BSLASHglsplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSplural] = ACTIONS(12185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHglsname] = ACTIONS(12185), + [anon_sym_BSLASHGlsname] = ACTIONS(12185), + [anon_sym_BSLASHGLSname] = ACTIONS(12185), + [anon_sym_BSLASHglssymbol] = ACTIONS(12185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12185), + [anon_sym_BSLASHglsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12185), + [anon_sym_BSLASHglsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12185), + [anon_sym_BSLASHglsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12185), + [anon_sym_BSLASHglsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12185), + [anon_sym_BSLASHglsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12185), + [anon_sym_BSLASHnewacronym] = ACTIONS(12185), + [anon_sym_BSLASHacrshort] = ACTIONS(12185), + [anon_sym_BSLASHAcrshort] = ACTIONS(12185), + [anon_sym_BSLASHACRshort] = ACTIONS(12185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12185), + [anon_sym_BSLASHacrlong] = ACTIONS(12185), + [anon_sym_BSLASHAcrlong] = ACTIONS(12185), + [anon_sym_BSLASHACRlong] = ACTIONS(12185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12185), + [anon_sym_BSLASHacrfull] = ACTIONS(12185), + [anon_sym_BSLASHAcrfull] = ACTIONS(12185), + [anon_sym_BSLASHACRfull] = ACTIONS(12185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12185), + [anon_sym_BSLASHacs] = ACTIONS(12185), + [anon_sym_BSLASHAcs] = ACTIONS(12185), + [anon_sym_BSLASHacsp] = ACTIONS(12185), + [anon_sym_BSLASHAcsp] = ACTIONS(12185), + [anon_sym_BSLASHacl] = ACTIONS(12185), + [anon_sym_BSLASHAcl] = ACTIONS(12185), + [anon_sym_BSLASHaclp] = ACTIONS(12185), + [anon_sym_BSLASHAclp] = ACTIONS(12185), + [anon_sym_BSLASHacf] = ACTIONS(12185), + [anon_sym_BSLASHAcf] = ACTIONS(12185), + [anon_sym_BSLASHacfp] = ACTIONS(12185), + [anon_sym_BSLASHAcfp] = ACTIONS(12185), + [anon_sym_BSLASHac] = ACTIONS(12185), + [anon_sym_BSLASHAc] = ACTIONS(12185), + [anon_sym_BSLASHacp] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12185), + [anon_sym_BSLASHcolor] = ACTIONS(12185), + [anon_sym_BSLASHcolorbox] = ACTIONS(12185), + [anon_sym_BSLASHtextcolor] = ACTIONS(12185), + [anon_sym_BSLASHpagecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12185), + }, + [518] = { + [ts_builtin_sym_end] = ACTIONS(12187), + [sym_generic_command_name] = ACTIONS(12189), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12189), + [aux_sym_chapter_token1] = ACTIONS(12189), + [aux_sym_section_token1] = ACTIONS(12189), + [aux_sym_subsection_token1] = ACTIONS(12189), + [aux_sym_subsubsection_token1] = ACTIONS(12189), + [aux_sym_paragraph_token1] = ACTIONS(12189), + [aux_sym_subparagraph_token1] = ACTIONS(12189), + [anon_sym_BSLASHitem] = ACTIONS(12189), + [anon_sym_LBRACK] = ACTIONS(12187), + [anon_sym_RBRACK] = ACTIONS(12187), + [anon_sym_LBRACE] = ACTIONS(12187), + [anon_sym_RBRACE] = ACTIONS(12187), + [anon_sym_LPAREN] = ACTIONS(12187), + [anon_sym_RPAREN] = ACTIONS(12187), + [anon_sym_COMMA] = ACTIONS(12187), + [anon_sym_EQ] = ACTIONS(12187), + [sym_word] = ACTIONS(12187), + [sym_param] = ACTIONS(12187), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12187), + [anon_sym_DOLLAR] = ACTIONS(12189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12187), + [anon_sym_BSLASHbegin] = ACTIONS(12189), + [anon_sym_BSLASHcaption] = ACTIONS(12189), + [anon_sym_BSLASHcite] = ACTIONS(12189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCite] = ACTIONS(12189), + [anon_sym_BSLASHnocite] = ACTIONS(12189), + [anon_sym_BSLASHcitet] = ACTIONS(12189), + [anon_sym_BSLASHcitep] = ACTIONS(12189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteauthor] = ACTIONS(12189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitetitle] = ACTIONS(12189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteyear] = ACTIONS(12189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitedate] = ACTIONS(12189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteurl] = ACTIONS(12189), + [anon_sym_BSLASHfullcite] = ACTIONS(12189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12189), + [anon_sym_BSLASHcitealt] = ACTIONS(12189), + [anon_sym_BSLASHcitealp] = ACTIONS(12189), + [anon_sym_BSLASHcitetext] = ACTIONS(12189), + [anon_sym_BSLASHparencite] = ACTIONS(12189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHParencite] = ACTIONS(12189), + [anon_sym_BSLASHfootcite] = ACTIONS(12189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12189), + [anon_sym_BSLASHtextcite] = ACTIONS(12189), + [anon_sym_BSLASHTextcite] = ACTIONS(12189), + [anon_sym_BSLASHsmartcite] = ACTIONS(12189), + [anon_sym_BSLASHSmartcite] = ACTIONS(12189), + [anon_sym_BSLASHsupercite] = ACTIONS(12189), + [anon_sym_BSLASHautocite] = ACTIONS(12189), + [anon_sym_BSLASHAutocite] = ACTIONS(12189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHvolcite] = ACTIONS(12189), + [anon_sym_BSLASHVolcite] = ACTIONS(12189), + [anon_sym_BSLASHpvolcite] = ACTIONS(12189), + [anon_sym_BSLASHPvolcite] = ACTIONS(12189), + [anon_sym_BSLASHfvolcite] = ACTIONS(12189), + [anon_sym_BSLASHftvolcite] = ACTIONS(12189), + [anon_sym_BSLASHsvolcite] = ACTIONS(12189), + [anon_sym_BSLASHSvolcite] = ACTIONS(12189), + [anon_sym_BSLASHtvolcite] = ACTIONS(12189), + [anon_sym_BSLASHTvolcite] = ACTIONS(12189), + [anon_sym_BSLASHavolcite] = ACTIONS(12189), + [anon_sym_BSLASHAvolcite] = ACTIONS(12189), + [anon_sym_BSLASHnotecite] = ACTIONS(12189), + [anon_sym_BSLASHpnotecite] = ACTIONS(12189), + [anon_sym_BSLASHPnotecite] = ACTIONS(12189), + [anon_sym_BSLASHfnotecite] = ACTIONS(12189), + [anon_sym_BSLASHusepackage] = ACTIONS(12189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12189), + [anon_sym_BSLASHinclude] = ACTIONS(12189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12189), + [anon_sym_BSLASHinput] = ACTIONS(12189), + [anon_sym_BSLASHsubfile] = ACTIONS(12189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12189), + [anon_sym_BSLASHbibliography] = ACTIONS(12189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12189), + [anon_sym_BSLASHincludesvg] = ACTIONS(12189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12189), + [anon_sym_BSLASHimport] = ACTIONS(12189), + [anon_sym_BSLASHsubimport] = ACTIONS(12189), + [anon_sym_BSLASHinputfrom] = ACTIONS(12189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12189), + [anon_sym_BSLASHincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHlabel] = ACTIONS(12189), + [anon_sym_BSLASHref] = ACTIONS(12189), + [anon_sym_BSLASHvref] = ACTIONS(12189), + [anon_sym_BSLASHVref] = ACTIONS(12189), + [anon_sym_BSLASHautoref] = ACTIONS(12189), + [anon_sym_BSLASHpageref] = ACTIONS(12189), + [anon_sym_BSLASHcref] = ACTIONS(12189), + [anon_sym_BSLASHCref] = ACTIONS(12189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnameCref] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHlabelcref] = ACTIONS(12189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12189), + [anon_sym_BSLASHeqref] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange] = ACTIONS(12189), + [anon_sym_BSLASHCrefrange] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewlabel] = ACTIONS(12189), + [anon_sym_BSLASHnewcommand] = ACTIONS(12189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12189), + [anon_sym_BSLASHgls] = ACTIONS(12189), + [anon_sym_BSLASHGls] = ACTIONS(12189), + [anon_sym_BSLASHGLS] = ACTIONS(12189), + [anon_sym_BSLASHglspl] = ACTIONS(12189), + [anon_sym_BSLASHGlspl] = ACTIONS(12189), + [anon_sym_BSLASHGLSpl] = ACTIONS(12189), + [anon_sym_BSLASHglsdisp] = ACTIONS(12189), + [anon_sym_BSLASHglslink] = ACTIONS(12189), + [anon_sym_BSLASHglstext] = ACTIONS(12189), + [anon_sym_BSLASHGlstext] = ACTIONS(12189), + [anon_sym_BSLASHGLStext] = ACTIONS(12189), + [anon_sym_BSLASHglsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12189), + [anon_sym_BSLASHglsplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSplural] = ACTIONS(12189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHglsname] = ACTIONS(12189), + [anon_sym_BSLASHGlsname] = ACTIONS(12189), + [anon_sym_BSLASHGLSname] = ACTIONS(12189), + [anon_sym_BSLASHglssymbol] = ACTIONS(12189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12189), + [anon_sym_BSLASHglsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12189), + [anon_sym_BSLASHglsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12189), + [anon_sym_BSLASHglsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12189), + [anon_sym_BSLASHglsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12189), + [anon_sym_BSLASHglsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12189), + [anon_sym_BSLASHnewacronym] = ACTIONS(12189), + [anon_sym_BSLASHacrshort] = ACTIONS(12189), + [anon_sym_BSLASHAcrshort] = ACTIONS(12189), + [anon_sym_BSLASHACRshort] = ACTIONS(12189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12189), + [anon_sym_BSLASHacrlong] = ACTIONS(12189), + [anon_sym_BSLASHAcrlong] = ACTIONS(12189), + [anon_sym_BSLASHACRlong] = ACTIONS(12189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12189), + [anon_sym_BSLASHacrfull] = ACTIONS(12189), + [anon_sym_BSLASHAcrfull] = ACTIONS(12189), + [anon_sym_BSLASHACRfull] = ACTIONS(12189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12189), + [anon_sym_BSLASHacs] = ACTIONS(12189), + [anon_sym_BSLASHAcs] = ACTIONS(12189), + [anon_sym_BSLASHacsp] = ACTIONS(12189), + [anon_sym_BSLASHAcsp] = ACTIONS(12189), + [anon_sym_BSLASHacl] = ACTIONS(12189), + [anon_sym_BSLASHAcl] = ACTIONS(12189), + [anon_sym_BSLASHaclp] = ACTIONS(12189), + [anon_sym_BSLASHAclp] = ACTIONS(12189), + [anon_sym_BSLASHacf] = ACTIONS(12189), + [anon_sym_BSLASHAcf] = ACTIONS(12189), + [anon_sym_BSLASHacfp] = ACTIONS(12189), + [anon_sym_BSLASHAcfp] = ACTIONS(12189), + [anon_sym_BSLASHac] = ACTIONS(12189), + [anon_sym_BSLASHAc] = ACTIONS(12189), + [anon_sym_BSLASHacp] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12189), + [anon_sym_BSLASHcolor] = ACTIONS(12189), + [anon_sym_BSLASHcolorbox] = ACTIONS(12189), + [anon_sym_BSLASHtextcolor] = ACTIONS(12189), + [anon_sym_BSLASHpagecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12189), + }, + [519] = { + [ts_builtin_sym_end] = ACTIONS(12191), + [sym_generic_command_name] = ACTIONS(12193), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12193), + [aux_sym_chapter_token1] = ACTIONS(12193), + [aux_sym_section_token1] = ACTIONS(12193), + [aux_sym_subsection_token1] = ACTIONS(12193), + [aux_sym_subsubsection_token1] = ACTIONS(12193), + [aux_sym_paragraph_token1] = ACTIONS(12193), + [aux_sym_subparagraph_token1] = ACTIONS(12193), + [anon_sym_BSLASHitem] = ACTIONS(12193), + [anon_sym_LBRACK] = ACTIONS(12191), + [anon_sym_RBRACK] = ACTIONS(12191), + [anon_sym_LBRACE] = ACTIONS(12191), + [anon_sym_RBRACE] = ACTIONS(12191), + [anon_sym_LPAREN] = ACTIONS(12191), + [anon_sym_RPAREN] = ACTIONS(12191), + [anon_sym_COMMA] = ACTIONS(12191), + [anon_sym_EQ] = ACTIONS(12191), + [sym_word] = ACTIONS(12191), + [sym_param] = ACTIONS(12191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12191), + [anon_sym_DOLLAR] = ACTIONS(12193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12191), + [anon_sym_BSLASHbegin] = ACTIONS(12193), + [anon_sym_BSLASHcaption] = ACTIONS(12193), + [anon_sym_BSLASHcite] = ACTIONS(12193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCite] = ACTIONS(12193), + [anon_sym_BSLASHnocite] = ACTIONS(12193), + [anon_sym_BSLASHcitet] = ACTIONS(12193), + [anon_sym_BSLASHcitep] = ACTIONS(12193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteauthor] = ACTIONS(12193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitetitle] = ACTIONS(12193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteyear] = ACTIONS(12193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitedate] = ACTIONS(12193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteurl] = ACTIONS(12193), + [anon_sym_BSLASHfullcite] = ACTIONS(12193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12193), + [anon_sym_BSLASHcitealt] = ACTIONS(12193), + [anon_sym_BSLASHcitealp] = ACTIONS(12193), + [anon_sym_BSLASHcitetext] = ACTIONS(12193), + [anon_sym_BSLASHparencite] = ACTIONS(12193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHParencite] = ACTIONS(12193), + [anon_sym_BSLASHfootcite] = ACTIONS(12193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12193), + [anon_sym_BSLASHtextcite] = ACTIONS(12193), + [anon_sym_BSLASHTextcite] = ACTIONS(12193), + [anon_sym_BSLASHsmartcite] = ACTIONS(12193), + [anon_sym_BSLASHSmartcite] = ACTIONS(12193), + [anon_sym_BSLASHsupercite] = ACTIONS(12193), + [anon_sym_BSLASHautocite] = ACTIONS(12193), + [anon_sym_BSLASHAutocite] = ACTIONS(12193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHvolcite] = ACTIONS(12193), + [anon_sym_BSLASHVolcite] = ACTIONS(12193), + [anon_sym_BSLASHpvolcite] = ACTIONS(12193), + [anon_sym_BSLASHPvolcite] = ACTIONS(12193), + [anon_sym_BSLASHfvolcite] = ACTIONS(12193), + [anon_sym_BSLASHftvolcite] = ACTIONS(12193), + [anon_sym_BSLASHsvolcite] = ACTIONS(12193), + [anon_sym_BSLASHSvolcite] = ACTIONS(12193), + [anon_sym_BSLASHtvolcite] = ACTIONS(12193), + [anon_sym_BSLASHTvolcite] = ACTIONS(12193), + [anon_sym_BSLASHavolcite] = ACTIONS(12193), + [anon_sym_BSLASHAvolcite] = ACTIONS(12193), + [anon_sym_BSLASHnotecite] = ACTIONS(12193), + [anon_sym_BSLASHpnotecite] = ACTIONS(12193), + [anon_sym_BSLASHPnotecite] = ACTIONS(12193), + [anon_sym_BSLASHfnotecite] = ACTIONS(12193), + [anon_sym_BSLASHusepackage] = ACTIONS(12193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12193), + [anon_sym_BSLASHinclude] = ACTIONS(12193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12193), + [anon_sym_BSLASHinput] = ACTIONS(12193), + [anon_sym_BSLASHsubfile] = ACTIONS(12193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12193), + [anon_sym_BSLASHbibliography] = ACTIONS(12193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12193), + [anon_sym_BSLASHincludesvg] = ACTIONS(12193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12193), + [anon_sym_BSLASHimport] = ACTIONS(12193), + [anon_sym_BSLASHsubimport] = ACTIONS(12193), + [anon_sym_BSLASHinputfrom] = ACTIONS(12193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12193), + [anon_sym_BSLASHincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHlabel] = ACTIONS(12193), + [anon_sym_BSLASHref] = ACTIONS(12193), + [anon_sym_BSLASHvref] = ACTIONS(12193), + [anon_sym_BSLASHVref] = ACTIONS(12193), + [anon_sym_BSLASHautoref] = ACTIONS(12193), + [anon_sym_BSLASHpageref] = ACTIONS(12193), + [anon_sym_BSLASHcref] = ACTIONS(12193), + [anon_sym_BSLASHCref] = ACTIONS(12193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnameCref] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHlabelcref] = ACTIONS(12193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12193), + [anon_sym_BSLASHeqref] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange] = ACTIONS(12193), + [anon_sym_BSLASHCrefrange] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewlabel] = ACTIONS(12193), + [anon_sym_BSLASHnewcommand] = ACTIONS(12193), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12193), + [anon_sym_BSLASHgls] = ACTIONS(12193), + [anon_sym_BSLASHGls] = ACTIONS(12193), + [anon_sym_BSLASHGLS] = ACTIONS(12193), + [anon_sym_BSLASHglspl] = ACTIONS(12193), + [anon_sym_BSLASHGlspl] = ACTIONS(12193), + [anon_sym_BSLASHGLSpl] = ACTIONS(12193), + [anon_sym_BSLASHglsdisp] = ACTIONS(12193), + [anon_sym_BSLASHglslink] = ACTIONS(12193), + [anon_sym_BSLASHglstext] = ACTIONS(12193), + [anon_sym_BSLASHGlstext] = ACTIONS(12193), + [anon_sym_BSLASHGLStext] = ACTIONS(12193), + [anon_sym_BSLASHglsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12193), + [anon_sym_BSLASHglsplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSplural] = ACTIONS(12193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHglsname] = ACTIONS(12193), + [anon_sym_BSLASHGlsname] = ACTIONS(12193), + [anon_sym_BSLASHGLSname] = ACTIONS(12193), + [anon_sym_BSLASHglssymbol] = ACTIONS(12193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12193), + [anon_sym_BSLASHglsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12193), + [anon_sym_BSLASHglsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12193), + [anon_sym_BSLASHglsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12193), + [anon_sym_BSLASHglsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12193), + [anon_sym_BSLASHglsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12193), + [anon_sym_BSLASHnewacronym] = ACTIONS(12193), + [anon_sym_BSLASHacrshort] = ACTIONS(12193), + [anon_sym_BSLASHAcrshort] = ACTIONS(12193), + [anon_sym_BSLASHACRshort] = ACTIONS(12193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12193), + [anon_sym_BSLASHacrlong] = ACTIONS(12193), + [anon_sym_BSLASHAcrlong] = ACTIONS(12193), + [anon_sym_BSLASHACRlong] = ACTIONS(12193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12193), + [anon_sym_BSLASHacrfull] = ACTIONS(12193), + [anon_sym_BSLASHAcrfull] = ACTIONS(12193), + [anon_sym_BSLASHACRfull] = ACTIONS(12193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12193), + [anon_sym_BSLASHacs] = ACTIONS(12193), + [anon_sym_BSLASHAcs] = ACTIONS(12193), + [anon_sym_BSLASHacsp] = ACTIONS(12193), + [anon_sym_BSLASHAcsp] = ACTIONS(12193), + [anon_sym_BSLASHacl] = ACTIONS(12193), + [anon_sym_BSLASHAcl] = ACTIONS(12193), + [anon_sym_BSLASHaclp] = ACTIONS(12193), + [anon_sym_BSLASHAclp] = ACTIONS(12193), + [anon_sym_BSLASHacf] = ACTIONS(12193), + [anon_sym_BSLASHAcf] = ACTIONS(12193), + [anon_sym_BSLASHacfp] = ACTIONS(12193), + [anon_sym_BSLASHAcfp] = ACTIONS(12193), + [anon_sym_BSLASHac] = ACTIONS(12193), + [anon_sym_BSLASHAc] = ACTIONS(12193), + [anon_sym_BSLASHacp] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12193), + [anon_sym_BSLASHcolor] = ACTIONS(12193), + [anon_sym_BSLASHcolorbox] = ACTIONS(12193), + [anon_sym_BSLASHtextcolor] = ACTIONS(12193), + [anon_sym_BSLASHpagecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12193), + }, + [520] = { + [ts_builtin_sym_end] = ACTIONS(12195), + [sym_generic_command_name] = ACTIONS(12197), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12197), + [aux_sym_chapter_token1] = ACTIONS(12197), + [aux_sym_section_token1] = ACTIONS(12197), + [aux_sym_subsection_token1] = ACTIONS(12197), + [aux_sym_subsubsection_token1] = ACTIONS(12197), + [aux_sym_paragraph_token1] = ACTIONS(12197), + [aux_sym_subparagraph_token1] = ACTIONS(12197), + [anon_sym_BSLASHitem] = ACTIONS(12197), + [anon_sym_LBRACK] = ACTIONS(12195), + [anon_sym_RBRACK] = ACTIONS(12195), + [anon_sym_LBRACE] = ACTIONS(12195), + [anon_sym_RBRACE] = ACTIONS(12195), + [anon_sym_LPAREN] = ACTIONS(12195), + [anon_sym_RPAREN] = ACTIONS(12195), + [anon_sym_COMMA] = ACTIONS(12195), + [anon_sym_EQ] = ACTIONS(12195), + [sym_word] = ACTIONS(12195), + [sym_param] = ACTIONS(12195), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12195), + [anon_sym_DOLLAR] = ACTIONS(12197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12195), + [anon_sym_BSLASHbegin] = ACTIONS(12197), + [anon_sym_BSLASHcaption] = ACTIONS(12197), + [anon_sym_BSLASHcite] = ACTIONS(12197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCite] = ACTIONS(12197), + [anon_sym_BSLASHnocite] = ACTIONS(12197), + [anon_sym_BSLASHcitet] = ACTIONS(12197), + [anon_sym_BSLASHcitep] = ACTIONS(12197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteauthor] = ACTIONS(12197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitetitle] = ACTIONS(12197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteyear] = ACTIONS(12197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitedate] = ACTIONS(12197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteurl] = ACTIONS(12197), + [anon_sym_BSLASHfullcite] = ACTIONS(12197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12197), + [anon_sym_BSLASHcitealt] = ACTIONS(12197), + [anon_sym_BSLASHcitealp] = ACTIONS(12197), + [anon_sym_BSLASHcitetext] = ACTIONS(12197), + [anon_sym_BSLASHparencite] = ACTIONS(12197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHParencite] = ACTIONS(12197), + [anon_sym_BSLASHfootcite] = ACTIONS(12197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12197), + [anon_sym_BSLASHtextcite] = ACTIONS(12197), + [anon_sym_BSLASHTextcite] = ACTIONS(12197), + [anon_sym_BSLASHsmartcite] = ACTIONS(12197), + [anon_sym_BSLASHSmartcite] = ACTIONS(12197), + [anon_sym_BSLASHsupercite] = ACTIONS(12197), + [anon_sym_BSLASHautocite] = ACTIONS(12197), + [anon_sym_BSLASHAutocite] = ACTIONS(12197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHvolcite] = ACTIONS(12197), + [anon_sym_BSLASHVolcite] = ACTIONS(12197), + [anon_sym_BSLASHpvolcite] = ACTIONS(12197), + [anon_sym_BSLASHPvolcite] = ACTIONS(12197), + [anon_sym_BSLASHfvolcite] = ACTIONS(12197), + [anon_sym_BSLASHftvolcite] = ACTIONS(12197), + [anon_sym_BSLASHsvolcite] = ACTIONS(12197), + [anon_sym_BSLASHSvolcite] = ACTIONS(12197), + [anon_sym_BSLASHtvolcite] = ACTIONS(12197), + [anon_sym_BSLASHTvolcite] = ACTIONS(12197), + [anon_sym_BSLASHavolcite] = ACTIONS(12197), + [anon_sym_BSLASHAvolcite] = ACTIONS(12197), + [anon_sym_BSLASHnotecite] = ACTIONS(12197), + [anon_sym_BSLASHpnotecite] = ACTIONS(12197), + [anon_sym_BSLASHPnotecite] = ACTIONS(12197), + [anon_sym_BSLASHfnotecite] = ACTIONS(12197), + [anon_sym_BSLASHusepackage] = ACTIONS(12197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12197), + [anon_sym_BSLASHinclude] = ACTIONS(12197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12197), + [anon_sym_BSLASHinput] = ACTIONS(12197), + [anon_sym_BSLASHsubfile] = ACTIONS(12197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12197), + [anon_sym_BSLASHbibliography] = ACTIONS(12197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12197), + [anon_sym_BSLASHincludesvg] = ACTIONS(12197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12197), + [anon_sym_BSLASHimport] = ACTIONS(12197), + [anon_sym_BSLASHsubimport] = ACTIONS(12197), + [anon_sym_BSLASHinputfrom] = ACTIONS(12197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12197), + [anon_sym_BSLASHincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHlabel] = ACTIONS(12197), + [anon_sym_BSLASHref] = ACTIONS(12197), + [anon_sym_BSLASHvref] = ACTIONS(12197), + [anon_sym_BSLASHVref] = ACTIONS(12197), + [anon_sym_BSLASHautoref] = ACTIONS(12197), + [anon_sym_BSLASHpageref] = ACTIONS(12197), + [anon_sym_BSLASHcref] = ACTIONS(12197), + [anon_sym_BSLASHCref] = ACTIONS(12197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnameCref] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHlabelcref] = ACTIONS(12197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12197), + [anon_sym_BSLASHeqref] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange] = ACTIONS(12197), + [anon_sym_BSLASHCrefrange] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewlabel] = ACTIONS(12197), + [anon_sym_BSLASHnewcommand] = ACTIONS(12197), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12197), + [anon_sym_BSLASHgls] = ACTIONS(12197), + [anon_sym_BSLASHGls] = ACTIONS(12197), + [anon_sym_BSLASHGLS] = ACTIONS(12197), + [anon_sym_BSLASHglspl] = ACTIONS(12197), + [anon_sym_BSLASHGlspl] = ACTIONS(12197), + [anon_sym_BSLASHGLSpl] = ACTIONS(12197), + [anon_sym_BSLASHglsdisp] = ACTIONS(12197), + [anon_sym_BSLASHglslink] = ACTIONS(12197), + [anon_sym_BSLASHglstext] = ACTIONS(12197), + [anon_sym_BSLASHGlstext] = ACTIONS(12197), + [anon_sym_BSLASHGLStext] = ACTIONS(12197), + [anon_sym_BSLASHglsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12197), + [anon_sym_BSLASHglsplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSplural] = ACTIONS(12197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHglsname] = ACTIONS(12197), + [anon_sym_BSLASHGlsname] = ACTIONS(12197), + [anon_sym_BSLASHGLSname] = ACTIONS(12197), + [anon_sym_BSLASHglssymbol] = ACTIONS(12197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12197), + [anon_sym_BSLASHglsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12197), + [anon_sym_BSLASHglsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12197), + [anon_sym_BSLASHglsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12197), + [anon_sym_BSLASHglsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12197), + [anon_sym_BSLASHglsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12197), + [anon_sym_BSLASHnewacronym] = ACTIONS(12197), + [anon_sym_BSLASHacrshort] = ACTIONS(12197), + [anon_sym_BSLASHAcrshort] = ACTIONS(12197), + [anon_sym_BSLASHACRshort] = ACTIONS(12197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12197), + [anon_sym_BSLASHacrlong] = ACTIONS(12197), + [anon_sym_BSLASHAcrlong] = ACTIONS(12197), + [anon_sym_BSLASHACRlong] = ACTIONS(12197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12197), + [anon_sym_BSLASHacrfull] = ACTIONS(12197), + [anon_sym_BSLASHAcrfull] = ACTIONS(12197), + [anon_sym_BSLASHACRfull] = ACTIONS(12197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12197), + [anon_sym_BSLASHacs] = ACTIONS(12197), + [anon_sym_BSLASHAcs] = ACTIONS(12197), + [anon_sym_BSLASHacsp] = ACTIONS(12197), + [anon_sym_BSLASHAcsp] = ACTIONS(12197), + [anon_sym_BSLASHacl] = ACTIONS(12197), + [anon_sym_BSLASHAcl] = ACTIONS(12197), + [anon_sym_BSLASHaclp] = ACTIONS(12197), + [anon_sym_BSLASHAclp] = ACTIONS(12197), + [anon_sym_BSLASHacf] = ACTIONS(12197), + [anon_sym_BSLASHAcf] = ACTIONS(12197), + [anon_sym_BSLASHacfp] = ACTIONS(12197), + [anon_sym_BSLASHAcfp] = ACTIONS(12197), + [anon_sym_BSLASHac] = ACTIONS(12197), + [anon_sym_BSLASHAc] = ACTIONS(12197), + [anon_sym_BSLASHacp] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12197), + [anon_sym_BSLASHcolor] = ACTIONS(12197), + [anon_sym_BSLASHcolorbox] = ACTIONS(12197), + [anon_sym_BSLASHtextcolor] = ACTIONS(12197), + [anon_sym_BSLASHpagecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12197), + }, + [521] = { + [ts_builtin_sym_end] = ACTIONS(12199), + [sym_generic_command_name] = ACTIONS(12201), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12201), + [aux_sym_chapter_token1] = ACTIONS(12201), + [aux_sym_section_token1] = ACTIONS(12201), + [aux_sym_subsection_token1] = ACTIONS(12201), + [aux_sym_subsubsection_token1] = ACTIONS(12201), + [aux_sym_paragraph_token1] = ACTIONS(12201), + [aux_sym_subparagraph_token1] = ACTIONS(12201), + [anon_sym_BSLASHitem] = ACTIONS(12201), + [anon_sym_LBRACK] = ACTIONS(12199), + [anon_sym_RBRACK] = ACTIONS(12199), + [anon_sym_LBRACE] = ACTIONS(12199), + [anon_sym_RBRACE] = ACTIONS(12199), + [anon_sym_LPAREN] = ACTIONS(12199), + [anon_sym_RPAREN] = ACTIONS(12199), + [anon_sym_COMMA] = ACTIONS(12199), + [anon_sym_EQ] = ACTIONS(12199), + [sym_word] = ACTIONS(12199), + [sym_param] = ACTIONS(12199), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12199), + [anon_sym_DOLLAR] = ACTIONS(12201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12199), + [anon_sym_BSLASHbegin] = ACTIONS(12201), + [anon_sym_BSLASHcaption] = ACTIONS(12201), + [anon_sym_BSLASHcite] = ACTIONS(12201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCite] = ACTIONS(12201), + [anon_sym_BSLASHnocite] = ACTIONS(12201), + [anon_sym_BSLASHcitet] = ACTIONS(12201), + [anon_sym_BSLASHcitep] = ACTIONS(12201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteauthor] = ACTIONS(12201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitetitle] = ACTIONS(12201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteyear] = ACTIONS(12201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitedate] = ACTIONS(12201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteurl] = ACTIONS(12201), + [anon_sym_BSLASHfullcite] = ACTIONS(12201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12201), + [anon_sym_BSLASHcitealt] = ACTIONS(12201), + [anon_sym_BSLASHcitealp] = ACTIONS(12201), + [anon_sym_BSLASHcitetext] = ACTIONS(12201), + [anon_sym_BSLASHparencite] = ACTIONS(12201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHParencite] = ACTIONS(12201), + [anon_sym_BSLASHfootcite] = ACTIONS(12201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12201), + [anon_sym_BSLASHtextcite] = ACTIONS(12201), + [anon_sym_BSLASHTextcite] = ACTIONS(12201), + [anon_sym_BSLASHsmartcite] = ACTIONS(12201), + [anon_sym_BSLASHSmartcite] = ACTIONS(12201), + [anon_sym_BSLASHsupercite] = ACTIONS(12201), + [anon_sym_BSLASHautocite] = ACTIONS(12201), + [anon_sym_BSLASHAutocite] = ACTIONS(12201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHvolcite] = ACTIONS(12201), + [anon_sym_BSLASHVolcite] = ACTIONS(12201), + [anon_sym_BSLASHpvolcite] = ACTIONS(12201), + [anon_sym_BSLASHPvolcite] = ACTIONS(12201), + [anon_sym_BSLASHfvolcite] = ACTIONS(12201), + [anon_sym_BSLASHftvolcite] = ACTIONS(12201), + [anon_sym_BSLASHsvolcite] = ACTIONS(12201), + [anon_sym_BSLASHSvolcite] = ACTIONS(12201), + [anon_sym_BSLASHtvolcite] = ACTIONS(12201), + [anon_sym_BSLASHTvolcite] = ACTIONS(12201), + [anon_sym_BSLASHavolcite] = ACTIONS(12201), + [anon_sym_BSLASHAvolcite] = ACTIONS(12201), + [anon_sym_BSLASHnotecite] = ACTIONS(12201), + [anon_sym_BSLASHpnotecite] = ACTIONS(12201), + [anon_sym_BSLASHPnotecite] = ACTIONS(12201), + [anon_sym_BSLASHfnotecite] = ACTIONS(12201), + [anon_sym_BSLASHusepackage] = ACTIONS(12201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12201), + [anon_sym_BSLASHinclude] = ACTIONS(12201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12201), + [anon_sym_BSLASHinput] = ACTIONS(12201), + [anon_sym_BSLASHsubfile] = ACTIONS(12201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12201), + [anon_sym_BSLASHbibliography] = ACTIONS(12201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12201), + [anon_sym_BSLASHincludesvg] = ACTIONS(12201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12201), + [anon_sym_BSLASHimport] = ACTIONS(12201), + [anon_sym_BSLASHsubimport] = ACTIONS(12201), + [anon_sym_BSLASHinputfrom] = ACTIONS(12201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12201), + [anon_sym_BSLASHincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHlabel] = ACTIONS(12201), + [anon_sym_BSLASHref] = ACTIONS(12201), + [anon_sym_BSLASHvref] = ACTIONS(12201), + [anon_sym_BSLASHVref] = ACTIONS(12201), + [anon_sym_BSLASHautoref] = ACTIONS(12201), + [anon_sym_BSLASHpageref] = ACTIONS(12201), + [anon_sym_BSLASHcref] = ACTIONS(12201), + [anon_sym_BSLASHCref] = ACTIONS(12201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnameCref] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHlabelcref] = ACTIONS(12201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12201), + [anon_sym_BSLASHeqref] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange] = ACTIONS(12201), + [anon_sym_BSLASHCrefrange] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewlabel] = ACTIONS(12201), + [anon_sym_BSLASHnewcommand] = ACTIONS(12201), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12201), + [anon_sym_BSLASHgls] = ACTIONS(12201), + [anon_sym_BSLASHGls] = ACTIONS(12201), + [anon_sym_BSLASHGLS] = ACTIONS(12201), + [anon_sym_BSLASHglspl] = ACTIONS(12201), + [anon_sym_BSLASHGlspl] = ACTIONS(12201), + [anon_sym_BSLASHGLSpl] = ACTIONS(12201), + [anon_sym_BSLASHglsdisp] = ACTIONS(12201), + [anon_sym_BSLASHglslink] = ACTIONS(12201), + [anon_sym_BSLASHglstext] = ACTIONS(12201), + [anon_sym_BSLASHGlstext] = ACTIONS(12201), + [anon_sym_BSLASHGLStext] = ACTIONS(12201), + [anon_sym_BSLASHglsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12201), + [anon_sym_BSLASHglsplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSplural] = ACTIONS(12201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHglsname] = ACTIONS(12201), + [anon_sym_BSLASHGlsname] = ACTIONS(12201), + [anon_sym_BSLASHGLSname] = ACTIONS(12201), + [anon_sym_BSLASHglssymbol] = ACTIONS(12201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12201), + [anon_sym_BSLASHglsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12201), + [anon_sym_BSLASHglsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12201), + [anon_sym_BSLASHglsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12201), + [anon_sym_BSLASHglsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12201), + [anon_sym_BSLASHglsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12201), + [anon_sym_BSLASHnewacronym] = ACTIONS(12201), + [anon_sym_BSLASHacrshort] = ACTIONS(12201), + [anon_sym_BSLASHAcrshort] = ACTIONS(12201), + [anon_sym_BSLASHACRshort] = ACTIONS(12201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12201), + [anon_sym_BSLASHacrlong] = ACTIONS(12201), + [anon_sym_BSLASHAcrlong] = ACTIONS(12201), + [anon_sym_BSLASHACRlong] = ACTIONS(12201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12201), + [anon_sym_BSLASHacrfull] = ACTIONS(12201), + [anon_sym_BSLASHAcrfull] = ACTIONS(12201), + [anon_sym_BSLASHACRfull] = ACTIONS(12201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12201), + [anon_sym_BSLASHacs] = ACTIONS(12201), + [anon_sym_BSLASHAcs] = ACTIONS(12201), + [anon_sym_BSLASHacsp] = ACTIONS(12201), + [anon_sym_BSLASHAcsp] = ACTIONS(12201), + [anon_sym_BSLASHacl] = ACTIONS(12201), + [anon_sym_BSLASHAcl] = ACTIONS(12201), + [anon_sym_BSLASHaclp] = ACTIONS(12201), + [anon_sym_BSLASHAclp] = ACTIONS(12201), + [anon_sym_BSLASHacf] = ACTIONS(12201), + [anon_sym_BSLASHAcf] = ACTIONS(12201), + [anon_sym_BSLASHacfp] = ACTIONS(12201), + [anon_sym_BSLASHAcfp] = ACTIONS(12201), + [anon_sym_BSLASHac] = ACTIONS(12201), + [anon_sym_BSLASHAc] = ACTIONS(12201), + [anon_sym_BSLASHacp] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12201), + [anon_sym_BSLASHcolor] = ACTIONS(12201), + [anon_sym_BSLASHcolorbox] = ACTIONS(12201), + [anon_sym_BSLASHtextcolor] = ACTIONS(12201), + [anon_sym_BSLASHpagecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12201), + }, + [522] = { + [ts_builtin_sym_end] = ACTIONS(12203), + [sym_generic_command_name] = ACTIONS(12205), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12205), + [aux_sym_chapter_token1] = ACTIONS(12205), + [aux_sym_section_token1] = ACTIONS(12205), + [aux_sym_subsection_token1] = ACTIONS(12205), + [aux_sym_subsubsection_token1] = ACTIONS(12205), + [aux_sym_paragraph_token1] = ACTIONS(12205), + [aux_sym_subparagraph_token1] = ACTIONS(12205), + [anon_sym_BSLASHitem] = ACTIONS(12205), + [anon_sym_LBRACK] = ACTIONS(12203), + [anon_sym_RBRACK] = ACTIONS(12203), + [anon_sym_LBRACE] = ACTIONS(12203), + [anon_sym_RBRACE] = ACTIONS(12203), + [anon_sym_LPAREN] = ACTIONS(12203), + [anon_sym_RPAREN] = ACTIONS(12203), + [anon_sym_COMMA] = ACTIONS(12203), + [anon_sym_EQ] = ACTIONS(12203), + [sym_word] = ACTIONS(12203), + [sym_param] = ACTIONS(12203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12203), + [anon_sym_DOLLAR] = ACTIONS(12205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12203), + [anon_sym_BSLASHbegin] = ACTIONS(12205), + [anon_sym_BSLASHcaption] = ACTIONS(12205), + [anon_sym_BSLASHcite] = ACTIONS(12205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCite] = ACTIONS(12205), + [anon_sym_BSLASHnocite] = ACTIONS(12205), + [anon_sym_BSLASHcitet] = ACTIONS(12205), + [anon_sym_BSLASHcitep] = ACTIONS(12205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteauthor] = ACTIONS(12205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitetitle] = ACTIONS(12205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteyear] = ACTIONS(12205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitedate] = ACTIONS(12205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteurl] = ACTIONS(12205), + [anon_sym_BSLASHfullcite] = ACTIONS(12205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12205), + [anon_sym_BSLASHcitealt] = ACTIONS(12205), + [anon_sym_BSLASHcitealp] = ACTIONS(12205), + [anon_sym_BSLASHcitetext] = ACTIONS(12205), + [anon_sym_BSLASHparencite] = ACTIONS(12205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHParencite] = ACTIONS(12205), + [anon_sym_BSLASHfootcite] = ACTIONS(12205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12205), + [anon_sym_BSLASHtextcite] = ACTIONS(12205), + [anon_sym_BSLASHTextcite] = ACTIONS(12205), + [anon_sym_BSLASHsmartcite] = ACTIONS(12205), + [anon_sym_BSLASHSmartcite] = ACTIONS(12205), + [anon_sym_BSLASHsupercite] = ACTIONS(12205), + [anon_sym_BSLASHautocite] = ACTIONS(12205), + [anon_sym_BSLASHAutocite] = ACTIONS(12205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHvolcite] = ACTIONS(12205), + [anon_sym_BSLASHVolcite] = ACTIONS(12205), + [anon_sym_BSLASHpvolcite] = ACTIONS(12205), + [anon_sym_BSLASHPvolcite] = ACTIONS(12205), + [anon_sym_BSLASHfvolcite] = ACTIONS(12205), + [anon_sym_BSLASHftvolcite] = ACTIONS(12205), + [anon_sym_BSLASHsvolcite] = ACTIONS(12205), + [anon_sym_BSLASHSvolcite] = ACTIONS(12205), + [anon_sym_BSLASHtvolcite] = ACTIONS(12205), + [anon_sym_BSLASHTvolcite] = ACTIONS(12205), + [anon_sym_BSLASHavolcite] = ACTIONS(12205), + [anon_sym_BSLASHAvolcite] = ACTIONS(12205), + [anon_sym_BSLASHnotecite] = ACTIONS(12205), + [anon_sym_BSLASHpnotecite] = ACTIONS(12205), + [anon_sym_BSLASHPnotecite] = ACTIONS(12205), + [anon_sym_BSLASHfnotecite] = ACTIONS(12205), + [anon_sym_BSLASHusepackage] = ACTIONS(12205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12205), + [anon_sym_BSLASHinclude] = ACTIONS(12205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12205), + [anon_sym_BSLASHinput] = ACTIONS(12205), + [anon_sym_BSLASHsubfile] = ACTIONS(12205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12205), + [anon_sym_BSLASHbibliography] = ACTIONS(12205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12205), + [anon_sym_BSLASHincludesvg] = ACTIONS(12205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12205), + [anon_sym_BSLASHimport] = ACTIONS(12205), + [anon_sym_BSLASHsubimport] = ACTIONS(12205), + [anon_sym_BSLASHinputfrom] = ACTIONS(12205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12205), + [anon_sym_BSLASHincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHlabel] = ACTIONS(12205), + [anon_sym_BSLASHref] = ACTIONS(12205), + [anon_sym_BSLASHvref] = ACTIONS(12205), + [anon_sym_BSLASHVref] = ACTIONS(12205), + [anon_sym_BSLASHautoref] = ACTIONS(12205), + [anon_sym_BSLASHpageref] = ACTIONS(12205), + [anon_sym_BSLASHcref] = ACTIONS(12205), + [anon_sym_BSLASHCref] = ACTIONS(12205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnameCref] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHlabelcref] = ACTIONS(12205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12205), + [anon_sym_BSLASHeqref] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange] = ACTIONS(12205), + [anon_sym_BSLASHCrefrange] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewlabel] = ACTIONS(12205), + [anon_sym_BSLASHnewcommand] = ACTIONS(12205), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12205), + [anon_sym_BSLASHgls] = ACTIONS(12205), + [anon_sym_BSLASHGls] = ACTIONS(12205), + [anon_sym_BSLASHGLS] = ACTIONS(12205), + [anon_sym_BSLASHglspl] = ACTIONS(12205), + [anon_sym_BSLASHGlspl] = ACTIONS(12205), + [anon_sym_BSLASHGLSpl] = ACTIONS(12205), + [anon_sym_BSLASHglsdisp] = ACTIONS(12205), + [anon_sym_BSLASHglslink] = ACTIONS(12205), + [anon_sym_BSLASHglstext] = ACTIONS(12205), + [anon_sym_BSLASHGlstext] = ACTIONS(12205), + [anon_sym_BSLASHGLStext] = ACTIONS(12205), + [anon_sym_BSLASHglsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12205), + [anon_sym_BSLASHglsplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSplural] = ACTIONS(12205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHglsname] = ACTIONS(12205), + [anon_sym_BSLASHGlsname] = ACTIONS(12205), + [anon_sym_BSLASHGLSname] = ACTIONS(12205), + [anon_sym_BSLASHglssymbol] = ACTIONS(12205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12205), + [anon_sym_BSLASHglsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12205), + [anon_sym_BSLASHglsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12205), + [anon_sym_BSLASHglsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12205), + [anon_sym_BSLASHglsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12205), + [anon_sym_BSLASHglsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12205), + [anon_sym_BSLASHnewacronym] = ACTIONS(12205), + [anon_sym_BSLASHacrshort] = ACTIONS(12205), + [anon_sym_BSLASHAcrshort] = ACTIONS(12205), + [anon_sym_BSLASHACRshort] = ACTIONS(12205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12205), + [anon_sym_BSLASHacrlong] = ACTIONS(12205), + [anon_sym_BSLASHAcrlong] = ACTIONS(12205), + [anon_sym_BSLASHACRlong] = ACTIONS(12205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12205), + [anon_sym_BSLASHacrfull] = ACTIONS(12205), + [anon_sym_BSLASHAcrfull] = ACTIONS(12205), + [anon_sym_BSLASHACRfull] = ACTIONS(12205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12205), + [anon_sym_BSLASHacs] = ACTIONS(12205), + [anon_sym_BSLASHAcs] = ACTIONS(12205), + [anon_sym_BSLASHacsp] = ACTIONS(12205), + [anon_sym_BSLASHAcsp] = ACTIONS(12205), + [anon_sym_BSLASHacl] = ACTIONS(12205), + [anon_sym_BSLASHAcl] = ACTIONS(12205), + [anon_sym_BSLASHaclp] = ACTIONS(12205), + [anon_sym_BSLASHAclp] = ACTIONS(12205), + [anon_sym_BSLASHacf] = ACTIONS(12205), + [anon_sym_BSLASHAcf] = ACTIONS(12205), + [anon_sym_BSLASHacfp] = ACTIONS(12205), + [anon_sym_BSLASHAcfp] = ACTIONS(12205), + [anon_sym_BSLASHac] = ACTIONS(12205), + [anon_sym_BSLASHAc] = ACTIONS(12205), + [anon_sym_BSLASHacp] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12205), + [anon_sym_BSLASHcolor] = ACTIONS(12205), + [anon_sym_BSLASHcolorbox] = ACTIONS(12205), + [anon_sym_BSLASHtextcolor] = ACTIONS(12205), + [anon_sym_BSLASHpagecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12205), + }, + [523] = { + [ts_builtin_sym_end] = ACTIONS(12207), + [sym_generic_command_name] = ACTIONS(12209), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12209), + [aux_sym_chapter_token1] = ACTIONS(12209), + [aux_sym_section_token1] = ACTIONS(12209), + [aux_sym_subsection_token1] = ACTIONS(12209), + [aux_sym_subsubsection_token1] = ACTIONS(12209), + [aux_sym_paragraph_token1] = ACTIONS(12209), + [aux_sym_subparagraph_token1] = ACTIONS(12209), + [anon_sym_BSLASHitem] = ACTIONS(12209), + [anon_sym_LBRACK] = ACTIONS(12207), + [anon_sym_RBRACK] = ACTIONS(12207), + [anon_sym_LBRACE] = ACTIONS(12207), + [anon_sym_RBRACE] = ACTIONS(12207), + [anon_sym_LPAREN] = ACTIONS(12207), + [anon_sym_RPAREN] = ACTIONS(12207), + [anon_sym_COMMA] = ACTIONS(12207), + [anon_sym_EQ] = ACTIONS(12207), + [sym_word] = ACTIONS(12207), + [sym_param] = ACTIONS(12207), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12207), + [anon_sym_DOLLAR] = ACTIONS(12209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12207), + [anon_sym_BSLASHbegin] = ACTIONS(12209), + [anon_sym_BSLASHcaption] = ACTIONS(12209), + [anon_sym_BSLASHcite] = ACTIONS(12209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCite] = ACTIONS(12209), + [anon_sym_BSLASHnocite] = ACTIONS(12209), + [anon_sym_BSLASHcitet] = ACTIONS(12209), + [anon_sym_BSLASHcitep] = ACTIONS(12209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteauthor] = ACTIONS(12209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitetitle] = ACTIONS(12209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteyear] = ACTIONS(12209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitedate] = ACTIONS(12209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteurl] = ACTIONS(12209), + [anon_sym_BSLASHfullcite] = ACTIONS(12209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12209), + [anon_sym_BSLASHcitealt] = ACTIONS(12209), + [anon_sym_BSLASHcitealp] = ACTIONS(12209), + [anon_sym_BSLASHcitetext] = ACTIONS(12209), + [anon_sym_BSLASHparencite] = ACTIONS(12209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHParencite] = ACTIONS(12209), + [anon_sym_BSLASHfootcite] = ACTIONS(12209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12209), + [anon_sym_BSLASHtextcite] = ACTIONS(12209), + [anon_sym_BSLASHTextcite] = ACTIONS(12209), + [anon_sym_BSLASHsmartcite] = ACTIONS(12209), + [anon_sym_BSLASHSmartcite] = ACTIONS(12209), + [anon_sym_BSLASHsupercite] = ACTIONS(12209), + [anon_sym_BSLASHautocite] = ACTIONS(12209), + [anon_sym_BSLASHAutocite] = ACTIONS(12209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHvolcite] = ACTIONS(12209), + [anon_sym_BSLASHVolcite] = ACTIONS(12209), + [anon_sym_BSLASHpvolcite] = ACTIONS(12209), + [anon_sym_BSLASHPvolcite] = ACTIONS(12209), + [anon_sym_BSLASHfvolcite] = ACTIONS(12209), + [anon_sym_BSLASHftvolcite] = ACTIONS(12209), + [anon_sym_BSLASHsvolcite] = ACTIONS(12209), + [anon_sym_BSLASHSvolcite] = ACTIONS(12209), + [anon_sym_BSLASHtvolcite] = ACTIONS(12209), + [anon_sym_BSLASHTvolcite] = ACTIONS(12209), + [anon_sym_BSLASHavolcite] = ACTIONS(12209), + [anon_sym_BSLASHAvolcite] = ACTIONS(12209), + [anon_sym_BSLASHnotecite] = ACTIONS(12209), + [anon_sym_BSLASHpnotecite] = ACTIONS(12209), + [anon_sym_BSLASHPnotecite] = ACTIONS(12209), + [anon_sym_BSLASHfnotecite] = ACTIONS(12209), + [anon_sym_BSLASHusepackage] = ACTIONS(12209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12209), + [anon_sym_BSLASHinclude] = ACTIONS(12209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12209), + [anon_sym_BSLASHinput] = ACTIONS(12209), + [anon_sym_BSLASHsubfile] = ACTIONS(12209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12209), + [anon_sym_BSLASHbibliography] = ACTIONS(12209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12209), + [anon_sym_BSLASHincludesvg] = ACTIONS(12209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12209), + [anon_sym_BSLASHimport] = ACTIONS(12209), + [anon_sym_BSLASHsubimport] = ACTIONS(12209), + [anon_sym_BSLASHinputfrom] = ACTIONS(12209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12209), + [anon_sym_BSLASHincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHlabel] = ACTIONS(12209), + [anon_sym_BSLASHref] = ACTIONS(12209), + [anon_sym_BSLASHvref] = ACTIONS(12209), + [anon_sym_BSLASHVref] = ACTIONS(12209), + [anon_sym_BSLASHautoref] = ACTIONS(12209), + [anon_sym_BSLASHpageref] = ACTIONS(12209), + [anon_sym_BSLASHcref] = ACTIONS(12209), + [anon_sym_BSLASHCref] = ACTIONS(12209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnameCref] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHlabelcref] = ACTIONS(12209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12209), + [anon_sym_BSLASHeqref] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange] = ACTIONS(12209), + [anon_sym_BSLASHCrefrange] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewlabel] = ACTIONS(12209), + [anon_sym_BSLASHnewcommand] = ACTIONS(12209), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12209), + [anon_sym_BSLASHgls] = ACTIONS(12209), + [anon_sym_BSLASHGls] = ACTIONS(12209), + [anon_sym_BSLASHGLS] = ACTIONS(12209), + [anon_sym_BSLASHglspl] = ACTIONS(12209), + [anon_sym_BSLASHGlspl] = ACTIONS(12209), + [anon_sym_BSLASHGLSpl] = ACTIONS(12209), + [anon_sym_BSLASHglsdisp] = ACTIONS(12209), + [anon_sym_BSLASHglslink] = ACTIONS(12209), + [anon_sym_BSLASHglstext] = ACTIONS(12209), + [anon_sym_BSLASHGlstext] = ACTIONS(12209), + [anon_sym_BSLASHGLStext] = ACTIONS(12209), + [anon_sym_BSLASHglsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12209), + [anon_sym_BSLASHglsplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSplural] = ACTIONS(12209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHglsname] = ACTIONS(12209), + [anon_sym_BSLASHGlsname] = ACTIONS(12209), + [anon_sym_BSLASHGLSname] = ACTIONS(12209), + [anon_sym_BSLASHglssymbol] = ACTIONS(12209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12209), + [anon_sym_BSLASHglsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12209), + [anon_sym_BSLASHglsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12209), + [anon_sym_BSLASHglsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12209), + [anon_sym_BSLASHglsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12209), + [anon_sym_BSLASHglsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12209), + [anon_sym_BSLASHnewacronym] = ACTIONS(12209), + [anon_sym_BSLASHacrshort] = ACTIONS(12209), + [anon_sym_BSLASHAcrshort] = ACTIONS(12209), + [anon_sym_BSLASHACRshort] = ACTIONS(12209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12209), + [anon_sym_BSLASHacrlong] = ACTIONS(12209), + [anon_sym_BSLASHAcrlong] = ACTIONS(12209), + [anon_sym_BSLASHACRlong] = ACTIONS(12209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12209), + [anon_sym_BSLASHacrfull] = ACTIONS(12209), + [anon_sym_BSLASHAcrfull] = ACTIONS(12209), + [anon_sym_BSLASHACRfull] = ACTIONS(12209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12209), + [anon_sym_BSLASHacs] = ACTIONS(12209), + [anon_sym_BSLASHAcs] = ACTIONS(12209), + [anon_sym_BSLASHacsp] = ACTIONS(12209), + [anon_sym_BSLASHAcsp] = ACTIONS(12209), + [anon_sym_BSLASHacl] = ACTIONS(12209), + [anon_sym_BSLASHAcl] = ACTIONS(12209), + [anon_sym_BSLASHaclp] = ACTIONS(12209), + [anon_sym_BSLASHAclp] = ACTIONS(12209), + [anon_sym_BSLASHacf] = ACTIONS(12209), + [anon_sym_BSLASHAcf] = ACTIONS(12209), + [anon_sym_BSLASHacfp] = ACTIONS(12209), + [anon_sym_BSLASHAcfp] = ACTIONS(12209), + [anon_sym_BSLASHac] = ACTIONS(12209), + [anon_sym_BSLASHAc] = ACTIONS(12209), + [anon_sym_BSLASHacp] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12209), + [anon_sym_BSLASHcolor] = ACTIONS(12209), + [anon_sym_BSLASHcolorbox] = ACTIONS(12209), + [anon_sym_BSLASHtextcolor] = ACTIONS(12209), + [anon_sym_BSLASHpagecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12209), + }, + [524] = { + [ts_builtin_sym_end] = ACTIONS(12211), + [sym_generic_command_name] = ACTIONS(12213), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12213), + [aux_sym_chapter_token1] = ACTIONS(12213), + [aux_sym_section_token1] = ACTIONS(12213), + [aux_sym_subsection_token1] = ACTIONS(12213), + [aux_sym_subsubsection_token1] = ACTIONS(12213), + [aux_sym_paragraph_token1] = ACTIONS(12213), + [aux_sym_subparagraph_token1] = ACTIONS(12213), + [anon_sym_BSLASHitem] = ACTIONS(12213), + [anon_sym_LBRACK] = ACTIONS(12211), + [anon_sym_RBRACK] = ACTIONS(12211), + [anon_sym_LBRACE] = ACTIONS(12211), + [anon_sym_RBRACE] = ACTIONS(12211), + [anon_sym_LPAREN] = ACTIONS(12211), + [anon_sym_RPAREN] = ACTIONS(12211), + [anon_sym_COMMA] = ACTIONS(12211), + [anon_sym_EQ] = ACTIONS(12211), + [sym_word] = ACTIONS(12211), + [sym_param] = ACTIONS(12211), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12211), + [anon_sym_DOLLAR] = ACTIONS(12213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12211), + [anon_sym_BSLASHbegin] = ACTIONS(12213), + [anon_sym_BSLASHcaption] = ACTIONS(12213), + [anon_sym_BSLASHcite] = ACTIONS(12213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCite] = ACTIONS(12213), + [anon_sym_BSLASHnocite] = ACTIONS(12213), + [anon_sym_BSLASHcitet] = ACTIONS(12213), + [anon_sym_BSLASHcitep] = ACTIONS(12213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteauthor] = ACTIONS(12213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitetitle] = ACTIONS(12213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteyear] = ACTIONS(12213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitedate] = ACTIONS(12213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteurl] = ACTIONS(12213), + [anon_sym_BSLASHfullcite] = ACTIONS(12213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12213), + [anon_sym_BSLASHcitealt] = ACTIONS(12213), + [anon_sym_BSLASHcitealp] = ACTIONS(12213), + [anon_sym_BSLASHcitetext] = ACTIONS(12213), + [anon_sym_BSLASHparencite] = ACTIONS(12213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHParencite] = ACTIONS(12213), + [anon_sym_BSLASHfootcite] = ACTIONS(12213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12213), + [anon_sym_BSLASHtextcite] = ACTIONS(12213), + [anon_sym_BSLASHTextcite] = ACTIONS(12213), + [anon_sym_BSLASHsmartcite] = ACTIONS(12213), + [anon_sym_BSLASHSmartcite] = ACTIONS(12213), + [anon_sym_BSLASHsupercite] = ACTIONS(12213), + [anon_sym_BSLASHautocite] = ACTIONS(12213), + [anon_sym_BSLASHAutocite] = ACTIONS(12213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHvolcite] = ACTIONS(12213), + [anon_sym_BSLASHVolcite] = ACTIONS(12213), + [anon_sym_BSLASHpvolcite] = ACTIONS(12213), + [anon_sym_BSLASHPvolcite] = ACTIONS(12213), + [anon_sym_BSLASHfvolcite] = ACTIONS(12213), + [anon_sym_BSLASHftvolcite] = ACTIONS(12213), + [anon_sym_BSLASHsvolcite] = ACTIONS(12213), + [anon_sym_BSLASHSvolcite] = ACTIONS(12213), + [anon_sym_BSLASHtvolcite] = ACTIONS(12213), + [anon_sym_BSLASHTvolcite] = ACTIONS(12213), + [anon_sym_BSLASHavolcite] = ACTIONS(12213), + [anon_sym_BSLASHAvolcite] = ACTIONS(12213), + [anon_sym_BSLASHnotecite] = ACTIONS(12213), + [anon_sym_BSLASHpnotecite] = ACTIONS(12213), + [anon_sym_BSLASHPnotecite] = ACTIONS(12213), + [anon_sym_BSLASHfnotecite] = ACTIONS(12213), + [anon_sym_BSLASHusepackage] = ACTIONS(12213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12213), + [anon_sym_BSLASHinclude] = ACTIONS(12213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12213), + [anon_sym_BSLASHinput] = ACTIONS(12213), + [anon_sym_BSLASHsubfile] = ACTIONS(12213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12213), + [anon_sym_BSLASHbibliography] = ACTIONS(12213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12213), + [anon_sym_BSLASHincludesvg] = ACTIONS(12213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12213), + [anon_sym_BSLASHimport] = ACTIONS(12213), + [anon_sym_BSLASHsubimport] = ACTIONS(12213), + [anon_sym_BSLASHinputfrom] = ACTIONS(12213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12213), + [anon_sym_BSLASHincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHlabel] = ACTIONS(12213), + [anon_sym_BSLASHref] = ACTIONS(12213), + [anon_sym_BSLASHvref] = ACTIONS(12213), + [anon_sym_BSLASHVref] = ACTIONS(12213), + [anon_sym_BSLASHautoref] = ACTIONS(12213), + [anon_sym_BSLASHpageref] = ACTIONS(12213), + [anon_sym_BSLASHcref] = ACTIONS(12213), + [anon_sym_BSLASHCref] = ACTIONS(12213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnameCref] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHlabelcref] = ACTIONS(12213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12213), + [anon_sym_BSLASHeqref] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange] = ACTIONS(12213), + [anon_sym_BSLASHCrefrange] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewlabel] = ACTIONS(12213), + [anon_sym_BSLASHnewcommand] = ACTIONS(12213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12213), + [anon_sym_BSLASHgls] = ACTIONS(12213), + [anon_sym_BSLASHGls] = ACTIONS(12213), + [anon_sym_BSLASHGLS] = ACTIONS(12213), + [anon_sym_BSLASHglspl] = ACTIONS(12213), + [anon_sym_BSLASHGlspl] = ACTIONS(12213), + [anon_sym_BSLASHGLSpl] = ACTIONS(12213), + [anon_sym_BSLASHglsdisp] = ACTIONS(12213), + [anon_sym_BSLASHglslink] = ACTIONS(12213), + [anon_sym_BSLASHglstext] = ACTIONS(12213), + [anon_sym_BSLASHGlstext] = ACTIONS(12213), + [anon_sym_BSLASHGLStext] = ACTIONS(12213), + [anon_sym_BSLASHglsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12213), + [anon_sym_BSLASHglsplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSplural] = ACTIONS(12213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHglsname] = ACTIONS(12213), + [anon_sym_BSLASHGlsname] = ACTIONS(12213), + [anon_sym_BSLASHGLSname] = ACTIONS(12213), + [anon_sym_BSLASHglssymbol] = ACTIONS(12213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12213), + [anon_sym_BSLASHglsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12213), + [anon_sym_BSLASHglsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12213), + [anon_sym_BSLASHglsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12213), + [anon_sym_BSLASHglsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12213), + [anon_sym_BSLASHglsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12213), + [anon_sym_BSLASHnewacronym] = ACTIONS(12213), + [anon_sym_BSLASHacrshort] = ACTIONS(12213), + [anon_sym_BSLASHAcrshort] = ACTIONS(12213), + [anon_sym_BSLASHACRshort] = ACTIONS(12213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12213), + [anon_sym_BSLASHacrlong] = ACTIONS(12213), + [anon_sym_BSLASHAcrlong] = ACTIONS(12213), + [anon_sym_BSLASHACRlong] = ACTIONS(12213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12213), + [anon_sym_BSLASHacrfull] = ACTIONS(12213), + [anon_sym_BSLASHAcrfull] = ACTIONS(12213), + [anon_sym_BSLASHACRfull] = ACTIONS(12213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12213), + [anon_sym_BSLASHacs] = ACTIONS(12213), + [anon_sym_BSLASHAcs] = ACTIONS(12213), + [anon_sym_BSLASHacsp] = ACTIONS(12213), + [anon_sym_BSLASHAcsp] = ACTIONS(12213), + [anon_sym_BSLASHacl] = ACTIONS(12213), + [anon_sym_BSLASHAcl] = ACTIONS(12213), + [anon_sym_BSLASHaclp] = ACTIONS(12213), + [anon_sym_BSLASHAclp] = ACTIONS(12213), + [anon_sym_BSLASHacf] = ACTIONS(12213), + [anon_sym_BSLASHAcf] = ACTIONS(12213), + [anon_sym_BSLASHacfp] = ACTIONS(12213), + [anon_sym_BSLASHAcfp] = ACTIONS(12213), + [anon_sym_BSLASHac] = ACTIONS(12213), + [anon_sym_BSLASHAc] = ACTIONS(12213), + [anon_sym_BSLASHacp] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12213), + [anon_sym_BSLASHcolor] = ACTIONS(12213), + [anon_sym_BSLASHcolorbox] = ACTIONS(12213), + [anon_sym_BSLASHtextcolor] = ACTIONS(12213), + [anon_sym_BSLASHpagecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12213), + }, + [525] = { + [ts_builtin_sym_end] = ACTIONS(12215), + [sym_generic_command_name] = ACTIONS(12217), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12217), + [aux_sym_chapter_token1] = ACTIONS(12217), + [aux_sym_section_token1] = ACTIONS(12217), + [aux_sym_subsection_token1] = ACTIONS(12217), + [aux_sym_subsubsection_token1] = ACTIONS(12217), + [aux_sym_paragraph_token1] = ACTIONS(12217), + [aux_sym_subparagraph_token1] = ACTIONS(12217), + [anon_sym_BSLASHitem] = ACTIONS(12217), + [anon_sym_LBRACK] = ACTIONS(12215), + [anon_sym_RBRACK] = ACTIONS(12215), + [anon_sym_LBRACE] = ACTIONS(12215), + [anon_sym_RBRACE] = ACTIONS(12215), + [anon_sym_LPAREN] = ACTIONS(12215), + [anon_sym_RPAREN] = ACTIONS(12215), + [anon_sym_COMMA] = ACTIONS(12215), + [anon_sym_EQ] = ACTIONS(12215), + [sym_word] = ACTIONS(12215), + [sym_param] = ACTIONS(12215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12215), + [anon_sym_DOLLAR] = ACTIONS(12217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12215), + [anon_sym_BSLASHbegin] = ACTIONS(12217), + [anon_sym_BSLASHcaption] = ACTIONS(12217), + [anon_sym_BSLASHcite] = ACTIONS(12217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCite] = ACTIONS(12217), + [anon_sym_BSLASHnocite] = ACTIONS(12217), + [anon_sym_BSLASHcitet] = ACTIONS(12217), + [anon_sym_BSLASHcitep] = ACTIONS(12217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteauthor] = ACTIONS(12217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitetitle] = ACTIONS(12217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteyear] = ACTIONS(12217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitedate] = ACTIONS(12217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteurl] = ACTIONS(12217), + [anon_sym_BSLASHfullcite] = ACTIONS(12217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12217), + [anon_sym_BSLASHcitealt] = ACTIONS(12217), + [anon_sym_BSLASHcitealp] = ACTIONS(12217), + [anon_sym_BSLASHcitetext] = ACTIONS(12217), + [anon_sym_BSLASHparencite] = ACTIONS(12217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHParencite] = ACTIONS(12217), + [anon_sym_BSLASHfootcite] = ACTIONS(12217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12217), + [anon_sym_BSLASHtextcite] = ACTIONS(12217), + [anon_sym_BSLASHTextcite] = ACTIONS(12217), + [anon_sym_BSLASHsmartcite] = ACTIONS(12217), + [anon_sym_BSLASHSmartcite] = ACTIONS(12217), + [anon_sym_BSLASHsupercite] = ACTIONS(12217), + [anon_sym_BSLASHautocite] = ACTIONS(12217), + [anon_sym_BSLASHAutocite] = ACTIONS(12217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHvolcite] = ACTIONS(12217), + [anon_sym_BSLASHVolcite] = ACTIONS(12217), + [anon_sym_BSLASHpvolcite] = ACTIONS(12217), + [anon_sym_BSLASHPvolcite] = ACTIONS(12217), + [anon_sym_BSLASHfvolcite] = ACTIONS(12217), + [anon_sym_BSLASHftvolcite] = ACTIONS(12217), + [anon_sym_BSLASHsvolcite] = ACTIONS(12217), + [anon_sym_BSLASHSvolcite] = ACTIONS(12217), + [anon_sym_BSLASHtvolcite] = ACTIONS(12217), + [anon_sym_BSLASHTvolcite] = ACTIONS(12217), + [anon_sym_BSLASHavolcite] = ACTIONS(12217), + [anon_sym_BSLASHAvolcite] = ACTIONS(12217), + [anon_sym_BSLASHnotecite] = ACTIONS(12217), + [anon_sym_BSLASHpnotecite] = ACTIONS(12217), + [anon_sym_BSLASHPnotecite] = ACTIONS(12217), + [anon_sym_BSLASHfnotecite] = ACTIONS(12217), + [anon_sym_BSLASHusepackage] = ACTIONS(12217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12217), + [anon_sym_BSLASHinclude] = ACTIONS(12217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12217), + [anon_sym_BSLASHinput] = ACTIONS(12217), + [anon_sym_BSLASHsubfile] = ACTIONS(12217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12217), + [anon_sym_BSLASHbibliography] = ACTIONS(12217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12217), + [anon_sym_BSLASHincludesvg] = ACTIONS(12217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12217), + [anon_sym_BSLASHimport] = ACTIONS(12217), + [anon_sym_BSLASHsubimport] = ACTIONS(12217), + [anon_sym_BSLASHinputfrom] = ACTIONS(12217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12217), + [anon_sym_BSLASHincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHlabel] = ACTIONS(12217), + [anon_sym_BSLASHref] = ACTIONS(12217), + [anon_sym_BSLASHvref] = ACTIONS(12217), + [anon_sym_BSLASHVref] = ACTIONS(12217), + [anon_sym_BSLASHautoref] = ACTIONS(12217), + [anon_sym_BSLASHpageref] = ACTIONS(12217), + [anon_sym_BSLASHcref] = ACTIONS(12217), + [anon_sym_BSLASHCref] = ACTIONS(12217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnameCref] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHlabelcref] = ACTIONS(12217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12217), + [anon_sym_BSLASHeqref] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange] = ACTIONS(12217), + [anon_sym_BSLASHCrefrange] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewlabel] = ACTIONS(12217), + [anon_sym_BSLASHnewcommand] = ACTIONS(12217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12217), + [anon_sym_BSLASHgls] = ACTIONS(12217), + [anon_sym_BSLASHGls] = ACTIONS(12217), + [anon_sym_BSLASHGLS] = ACTIONS(12217), + [anon_sym_BSLASHglspl] = ACTIONS(12217), + [anon_sym_BSLASHGlspl] = ACTIONS(12217), + [anon_sym_BSLASHGLSpl] = ACTIONS(12217), + [anon_sym_BSLASHglsdisp] = ACTIONS(12217), + [anon_sym_BSLASHglslink] = ACTIONS(12217), + [anon_sym_BSLASHglstext] = ACTIONS(12217), + [anon_sym_BSLASHGlstext] = ACTIONS(12217), + [anon_sym_BSLASHGLStext] = ACTIONS(12217), + [anon_sym_BSLASHglsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12217), + [anon_sym_BSLASHglsplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSplural] = ACTIONS(12217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHglsname] = ACTIONS(12217), + [anon_sym_BSLASHGlsname] = ACTIONS(12217), + [anon_sym_BSLASHGLSname] = ACTIONS(12217), + [anon_sym_BSLASHglssymbol] = ACTIONS(12217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12217), + [anon_sym_BSLASHglsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12217), + [anon_sym_BSLASHglsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12217), + [anon_sym_BSLASHglsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12217), + [anon_sym_BSLASHglsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12217), + [anon_sym_BSLASHglsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12217), + [anon_sym_BSLASHnewacronym] = ACTIONS(12217), + [anon_sym_BSLASHacrshort] = ACTIONS(12217), + [anon_sym_BSLASHAcrshort] = ACTIONS(12217), + [anon_sym_BSLASHACRshort] = ACTIONS(12217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12217), + [anon_sym_BSLASHacrlong] = ACTIONS(12217), + [anon_sym_BSLASHAcrlong] = ACTIONS(12217), + [anon_sym_BSLASHACRlong] = ACTIONS(12217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12217), + [anon_sym_BSLASHacrfull] = ACTIONS(12217), + [anon_sym_BSLASHAcrfull] = ACTIONS(12217), + [anon_sym_BSLASHACRfull] = ACTIONS(12217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12217), + [anon_sym_BSLASHacs] = ACTIONS(12217), + [anon_sym_BSLASHAcs] = ACTIONS(12217), + [anon_sym_BSLASHacsp] = ACTIONS(12217), + [anon_sym_BSLASHAcsp] = ACTIONS(12217), + [anon_sym_BSLASHacl] = ACTIONS(12217), + [anon_sym_BSLASHAcl] = ACTIONS(12217), + [anon_sym_BSLASHaclp] = ACTIONS(12217), + [anon_sym_BSLASHAclp] = ACTIONS(12217), + [anon_sym_BSLASHacf] = ACTIONS(12217), + [anon_sym_BSLASHAcf] = ACTIONS(12217), + [anon_sym_BSLASHacfp] = ACTIONS(12217), + [anon_sym_BSLASHAcfp] = ACTIONS(12217), + [anon_sym_BSLASHac] = ACTIONS(12217), + [anon_sym_BSLASHAc] = ACTIONS(12217), + [anon_sym_BSLASHacp] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12217), + [anon_sym_BSLASHcolor] = ACTIONS(12217), + [anon_sym_BSLASHcolorbox] = ACTIONS(12217), + [anon_sym_BSLASHtextcolor] = ACTIONS(12217), + [anon_sym_BSLASHpagecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12217), + }, + [526] = { + [ts_builtin_sym_end] = ACTIONS(12219), + [sym_generic_command_name] = ACTIONS(12221), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12221), + [aux_sym_chapter_token1] = ACTIONS(12221), + [aux_sym_section_token1] = ACTIONS(12221), + [aux_sym_subsection_token1] = ACTIONS(12221), + [aux_sym_subsubsection_token1] = ACTIONS(12221), + [aux_sym_paragraph_token1] = ACTIONS(12221), + [aux_sym_subparagraph_token1] = ACTIONS(12221), + [anon_sym_BSLASHitem] = ACTIONS(12221), + [anon_sym_LBRACK] = ACTIONS(12219), + [anon_sym_RBRACK] = ACTIONS(12219), + [anon_sym_LBRACE] = ACTIONS(12223), + [anon_sym_RBRACE] = ACTIONS(12219), + [anon_sym_LPAREN] = ACTIONS(12219), + [anon_sym_RPAREN] = ACTIONS(12219), + [anon_sym_COMMA] = ACTIONS(12219), + [anon_sym_EQ] = ACTIONS(12219), + [sym_word] = ACTIONS(12219), + [sym_param] = ACTIONS(12219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12219), + [anon_sym_DOLLAR] = ACTIONS(12221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12219), + [anon_sym_BSLASHbegin] = ACTIONS(12221), + [anon_sym_BSLASHcaption] = ACTIONS(12221), + [anon_sym_BSLASHcite] = ACTIONS(12221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCite] = ACTIONS(12221), + [anon_sym_BSLASHnocite] = ACTIONS(12221), + [anon_sym_BSLASHcitet] = ACTIONS(12221), + [anon_sym_BSLASHcitep] = ACTIONS(12221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteauthor] = ACTIONS(12221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitetitle] = ACTIONS(12221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteyear] = ACTIONS(12221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitedate] = ACTIONS(12221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteurl] = ACTIONS(12221), + [anon_sym_BSLASHfullcite] = ACTIONS(12221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12221), + [anon_sym_BSLASHcitealt] = ACTIONS(12221), + [anon_sym_BSLASHcitealp] = ACTIONS(12221), + [anon_sym_BSLASHcitetext] = ACTIONS(12221), + [anon_sym_BSLASHparencite] = ACTIONS(12221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHParencite] = ACTIONS(12221), + [anon_sym_BSLASHfootcite] = ACTIONS(12221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12221), + [anon_sym_BSLASHtextcite] = ACTIONS(12221), + [anon_sym_BSLASHTextcite] = ACTIONS(12221), + [anon_sym_BSLASHsmartcite] = ACTIONS(12221), + [anon_sym_BSLASHSmartcite] = ACTIONS(12221), + [anon_sym_BSLASHsupercite] = ACTIONS(12221), + [anon_sym_BSLASHautocite] = ACTIONS(12221), + [anon_sym_BSLASHAutocite] = ACTIONS(12221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHvolcite] = ACTIONS(12221), + [anon_sym_BSLASHVolcite] = ACTIONS(12221), + [anon_sym_BSLASHpvolcite] = ACTIONS(12221), + [anon_sym_BSLASHPvolcite] = ACTIONS(12221), + [anon_sym_BSLASHfvolcite] = ACTIONS(12221), + [anon_sym_BSLASHftvolcite] = ACTIONS(12221), + [anon_sym_BSLASHsvolcite] = ACTIONS(12221), + [anon_sym_BSLASHSvolcite] = ACTIONS(12221), + [anon_sym_BSLASHtvolcite] = ACTIONS(12221), + [anon_sym_BSLASHTvolcite] = ACTIONS(12221), + [anon_sym_BSLASHavolcite] = ACTIONS(12221), + [anon_sym_BSLASHAvolcite] = ACTIONS(12221), + [anon_sym_BSLASHnotecite] = ACTIONS(12221), + [anon_sym_BSLASHpnotecite] = ACTIONS(12221), + [anon_sym_BSLASHPnotecite] = ACTIONS(12221), + [anon_sym_BSLASHfnotecite] = ACTIONS(12221), + [anon_sym_BSLASHusepackage] = ACTIONS(12221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12221), + [anon_sym_BSLASHinclude] = ACTIONS(12221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12221), + [anon_sym_BSLASHinput] = ACTIONS(12221), + [anon_sym_BSLASHsubfile] = ACTIONS(12221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12221), + [anon_sym_BSLASHbibliography] = ACTIONS(12221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12221), + [anon_sym_BSLASHincludesvg] = ACTIONS(12221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12221), + [anon_sym_BSLASHimport] = ACTIONS(12221), + [anon_sym_BSLASHsubimport] = ACTIONS(12221), + [anon_sym_BSLASHinputfrom] = ACTIONS(12221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12221), + [anon_sym_BSLASHincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHlabel] = ACTIONS(12221), + [anon_sym_BSLASHref] = ACTIONS(12221), + [anon_sym_BSLASHvref] = ACTIONS(12221), + [anon_sym_BSLASHVref] = ACTIONS(12221), + [anon_sym_BSLASHautoref] = ACTIONS(12221), + [anon_sym_BSLASHpageref] = ACTIONS(12221), + [anon_sym_BSLASHcref] = ACTIONS(12221), + [anon_sym_BSLASHCref] = ACTIONS(12221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnameCref] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHlabelcref] = ACTIONS(12221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12221), + [anon_sym_BSLASHeqref] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange] = ACTIONS(12221), + [anon_sym_BSLASHCrefrange] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewlabel] = ACTIONS(12221), + [anon_sym_BSLASHnewcommand] = ACTIONS(12221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12221), + [anon_sym_BSLASHgls] = ACTIONS(12221), + [anon_sym_BSLASHGls] = ACTIONS(12221), + [anon_sym_BSLASHGLS] = ACTIONS(12221), + [anon_sym_BSLASHglspl] = ACTIONS(12221), + [anon_sym_BSLASHGlspl] = ACTIONS(12221), + [anon_sym_BSLASHGLSpl] = ACTIONS(12221), + [anon_sym_BSLASHglsdisp] = ACTIONS(12221), + [anon_sym_BSLASHglslink] = ACTIONS(12221), + [anon_sym_BSLASHglstext] = ACTIONS(12221), + [anon_sym_BSLASHGlstext] = ACTIONS(12221), + [anon_sym_BSLASHGLStext] = ACTIONS(12221), + [anon_sym_BSLASHglsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12221), + [anon_sym_BSLASHglsplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSplural] = ACTIONS(12221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHglsname] = ACTIONS(12221), + [anon_sym_BSLASHGlsname] = ACTIONS(12221), + [anon_sym_BSLASHGLSname] = ACTIONS(12221), + [anon_sym_BSLASHglssymbol] = ACTIONS(12221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12221), + [anon_sym_BSLASHglsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12221), + [anon_sym_BSLASHglsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12221), + [anon_sym_BSLASHglsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12221), + [anon_sym_BSLASHglsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12221), + [anon_sym_BSLASHglsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12221), + [anon_sym_BSLASHnewacronym] = ACTIONS(12221), + [anon_sym_BSLASHacrshort] = ACTIONS(12221), + [anon_sym_BSLASHAcrshort] = ACTIONS(12221), + [anon_sym_BSLASHACRshort] = ACTIONS(12221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12221), + [anon_sym_BSLASHacrlong] = ACTIONS(12221), + [anon_sym_BSLASHAcrlong] = ACTIONS(12221), + [anon_sym_BSLASHACRlong] = ACTIONS(12221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12221), + [anon_sym_BSLASHacrfull] = ACTIONS(12221), + [anon_sym_BSLASHAcrfull] = ACTIONS(12221), + [anon_sym_BSLASHACRfull] = ACTIONS(12221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12221), + [anon_sym_BSLASHacs] = ACTIONS(12221), + [anon_sym_BSLASHAcs] = ACTIONS(12221), + [anon_sym_BSLASHacsp] = ACTIONS(12221), + [anon_sym_BSLASHAcsp] = ACTIONS(12221), + [anon_sym_BSLASHacl] = ACTIONS(12221), + [anon_sym_BSLASHAcl] = ACTIONS(12221), + [anon_sym_BSLASHaclp] = ACTIONS(12221), + [anon_sym_BSLASHAclp] = ACTIONS(12221), + [anon_sym_BSLASHacf] = ACTIONS(12221), + [anon_sym_BSLASHAcf] = ACTIONS(12221), + [anon_sym_BSLASHacfp] = ACTIONS(12221), + [anon_sym_BSLASHAcfp] = ACTIONS(12221), + [anon_sym_BSLASHac] = ACTIONS(12221), + [anon_sym_BSLASHAc] = ACTIONS(12221), + [anon_sym_BSLASHacp] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12221), + [anon_sym_BSLASHcolor] = ACTIONS(12221), + [anon_sym_BSLASHcolorbox] = ACTIONS(12221), + [anon_sym_BSLASHtextcolor] = ACTIONS(12221), + [anon_sym_BSLASHpagecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12221), + }, + [527] = { + [ts_builtin_sym_end] = ACTIONS(12225), + [sym_generic_command_name] = ACTIONS(12227), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12227), + [aux_sym_chapter_token1] = ACTIONS(12227), + [aux_sym_section_token1] = ACTIONS(12227), + [aux_sym_subsection_token1] = ACTIONS(12227), + [aux_sym_subsubsection_token1] = ACTIONS(12227), + [aux_sym_paragraph_token1] = ACTIONS(12227), + [aux_sym_subparagraph_token1] = ACTIONS(12227), + [anon_sym_BSLASHitem] = ACTIONS(12227), + [anon_sym_LBRACK] = ACTIONS(12225), + [anon_sym_RBRACK] = ACTIONS(12225), + [anon_sym_LBRACE] = ACTIONS(12225), + [anon_sym_RBRACE] = ACTIONS(12225), + [anon_sym_LPAREN] = ACTIONS(12225), + [anon_sym_RPAREN] = ACTIONS(12225), + [anon_sym_COMMA] = ACTIONS(12225), + [anon_sym_EQ] = ACTIONS(12225), + [sym_word] = ACTIONS(12225), + [sym_param] = ACTIONS(12225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12225), + [anon_sym_DOLLAR] = ACTIONS(12227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12225), + [anon_sym_BSLASHbegin] = ACTIONS(12227), + [anon_sym_BSLASHcaption] = ACTIONS(12227), + [anon_sym_BSLASHcite] = ACTIONS(12227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCite] = ACTIONS(12227), + [anon_sym_BSLASHnocite] = ACTIONS(12227), + [anon_sym_BSLASHcitet] = ACTIONS(12227), + [anon_sym_BSLASHcitep] = ACTIONS(12227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteauthor] = ACTIONS(12227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitetitle] = ACTIONS(12227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteyear] = ACTIONS(12227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitedate] = ACTIONS(12227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteurl] = ACTIONS(12227), + [anon_sym_BSLASHfullcite] = ACTIONS(12227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12227), + [anon_sym_BSLASHcitealt] = ACTIONS(12227), + [anon_sym_BSLASHcitealp] = ACTIONS(12227), + [anon_sym_BSLASHcitetext] = ACTIONS(12227), + [anon_sym_BSLASHparencite] = ACTIONS(12227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHParencite] = ACTIONS(12227), + [anon_sym_BSLASHfootcite] = ACTIONS(12227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12227), + [anon_sym_BSLASHtextcite] = ACTIONS(12227), + [anon_sym_BSLASHTextcite] = ACTIONS(12227), + [anon_sym_BSLASHsmartcite] = ACTIONS(12227), + [anon_sym_BSLASHSmartcite] = ACTIONS(12227), + [anon_sym_BSLASHsupercite] = ACTIONS(12227), + [anon_sym_BSLASHautocite] = ACTIONS(12227), + [anon_sym_BSLASHAutocite] = ACTIONS(12227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHvolcite] = ACTIONS(12227), + [anon_sym_BSLASHVolcite] = ACTIONS(12227), + [anon_sym_BSLASHpvolcite] = ACTIONS(12227), + [anon_sym_BSLASHPvolcite] = ACTIONS(12227), + [anon_sym_BSLASHfvolcite] = ACTIONS(12227), + [anon_sym_BSLASHftvolcite] = ACTIONS(12227), + [anon_sym_BSLASHsvolcite] = ACTIONS(12227), + [anon_sym_BSLASHSvolcite] = ACTIONS(12227), + [anon_sym_BSLASHtvolcite] = ACTIONS(12227), + [anon_sym_BSLASHTvolcite] = ACTIONS(12227), + [anon_sym_BSLASHavolcite] = ACTIONS(12227), + [anon_sym_BSLASHAvolcite] = ACTIONS(12227), + [anon_sym_BSLASHnotecite] = ACTIONS(12227), + [anon_sym_BSLASHpnotecite] = ACTIONS(12227), + [anon_sym_BSLASHPnotecite] = ACTIONS(12227), + [anon_sym_BSLASHfnotecite] = ACTIONS(12227), + [anon_sym_BSLASHusepackage] = ACTIONS(12227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12227), + [anon_sym_BSLASHinclude] = ACTIONS(12227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12227), + [anon_sym_BSLASHinput] = ACTIONS(12227), + [anon_sym_BSLASHsubfile] = ACTIONS(12227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12227), + [anon_sym_BSLASHbibliography] = ACTIONS(12227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12227), + [anon_sym_BSLASHincludesvg] = ACTIONS(12227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12227), + [anon_sym_BSLASHimport] = ACTIONS(12227), + [anon_sym_BSLASHsubimport] = ACTIONS(12227), + [anon_sym_BSLASHinputfrom] = ACTIONS(12227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12227), + [anon_sym_BSLASHincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHlabel] = ACTIONS(12227), + [anon_sym_BSLASHref] = ACTIONS(12227), + [anon_sym_BSLASHvref] = ACTIONS(12227), + [anon_sym_BSLASHVref] = ACTIONS(12227), + [anon_sym_BSLASHautoref] = ACTIONS(12227), + [anon_sym_BSLASHpageref] = ACTIONS(12227), + [anon_sym_BSLASHcref] = ACTIONS(12227), + [anon_sym_BSLASHCref] = ACTIONS(12227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnameCref] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHlabelcref] = ACTIONS(12227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12227), + [anon_sym_BSLASHeqref] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange] = ACTIONS(12227), + [anon_sym_BSLASHCrefrange] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewlabel] = ACTIONS(12227), + [anon_sym_BSLASHnewcommand] = ACTIONS(12227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12227), + [anon_sym_BSLASHgls] = ACTIONS(12227), + [anon_sym_BSLASHGls] = ACTIONS(12227), + [anon_sym_BSLASHGLS] = ACTIONS(12227), + [anon_sym_BSLASHglspl] = ACTIONS(12227), + [anon_sym_BSLASHGlspl] = ACTIONS(12227), + [anon_sym_BSLASHGLSpl] = ACTIONS(12227), + [anon_sym_BSLASHglsdisp] = ACTIONS(12227), + [anon_sym_BSLASHglslink] = ACTIONS(12227), + [anon_sym_BSLASHglstext] = ACTIONS(12227), + [anon_sym_BSLASHGlstext] = ACTIONS(12227), + [anon_sym_BSLASHGLStext] = ACTIONS(12227), + [anon_sym_BSLASHglsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12227), + [anon_sym_BSLASHglsplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSplural] = ACTIONS(12227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHglsname] = ACTIONS(12227), + [anon_sym_BSLASHGlsname] = ACTIONS(12227), + [anon_sym_BSLASHGLSname] = ACTIONS(12227), + [anon_sym_BSLASHglssymbol] = ACTIONS(12227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12227), + [anon_sym_BSLASHglsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12227), + [anon_sym_BSLASHglsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12227), + [anon_sym_BSLASHglsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12227), + [anon_sym_BSLASHglsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12227), + [anon_sym_BSLASHglsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12227), + [anon_sym_BSLASHnewacronym] = ACTIONS(12227), + [anon_sym_BSLASHacrshort] = ACTIONS(12227), + [anon_sym_BSLASHAcrshort] = ACTIONS(12227), + [anon_sym_BSLASHACRshort] = ACTIONS(12227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12227), + [anon_sym_BSLASHacrlong] = ACTIONS(12227), + [anon_sym_BSLASHAcrlong] = ACTIONS(12227), + [anon_sym_BSLASHACRlong] = ACTIONS(12227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12227), + [anon_sym_BSLASHacrfull] = ACTIONS(12227), + [anon_sym_BSLASHAcrfull] = ACTIONS(12227), + [anon_sym_BSLASHACRfull] = ACTIONS(12227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12227), + [anon_sym_BSLASHacs] = ACTIONS(12227), + [anon_sym_BSLASHAcs] = ACTIONS(12227), + [anon_sym_BSLASHacsp] = ACTIONS(12227), + [anon_sym_BSLASHAcsp] = ACTIONS(12227), + [anon_sym_BSLASHacl] = ACTIONS(12227), + [anon_sym_BSLASHAcl] = ACTIONS(12227), + [anon_sym_BSLASHaclp] = ACTIONS(12227), + [anon_sym_BSLASHAclp] = ACTIONS(12227), + [anon_sym_BSLASHacf] = ACTIONS(12227), + [anon_sym_BSLASHAcf] = ACTIONS(12227), + [anon_sym_BSLASHacfp] = ACTIONS(12227), + [anon_sym_BSLASHAcfp] = ACTIONS(12227), + [anon_sym_BSLASHac] = ACTIONS(12227), + [anon_sym_BSLASHAc] = ACTIONS(12227), + [anon_sym_BSLASHacp] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12227), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12227), + [anon_sym_BSLASHcolor] = ACTIONS(12227), + [anon_sym_BSLASHcolorbox] = ACTIONS(12227), + [anon_sym_BSLASHtextcolor] = ACTIONS(12227), + [anon_sym_BSLASHpagecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12227), + }, + [528] = { + [ts_builtin_sym_end] = ACTIONS(12229), + [sym_generic_command_name] = ACTIONS(12231), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12231), + [aux_sym_chapter_token1] = ACTIONS(12231), + [aux_sym_section_token1] = ACTIONS(12231), + [aux_sym_subsection_token1] = ACTIONS(12231), + [aux_sym_subsubsection_token1] = ACTIONS(12231), + [aux_sym_paragraph_token1] = ACTIONS(12231), + [aux_sym_subparagraph_token1] = ACTIONS(12231), + [anon_sym_BSLASHitem] = ACTIONS(12231), + [anon_sym_LBRACK] = ACTIONS(12229), + [anon_sym_RBRACK] = ACTIONS(12229), + [anon_sym_LBRACE] = ACTIONS(12229), + [anon_sym_RBRACE] = ACTIONS(12229), + [anon_sym_LPAREN] = ACTIONS(12229), + [anon_sym_RPAREN] = ACTIONS(12229), + [anon_sym_COMMA] = ACTIONS(12229), + [anon_sym_EQ] = ACTIONS(12229), + [sym_word] = ACTIONS(12229), + [sym_param] = ACTIONS(12229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12229), + [anon_sym_DOLLAR] = ACTIONS(12231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12229), + [anon_sym_BSLASHbegin] = ACTIONS(12231), + [anon_sym_BSLASHcaption] = ACTIONS(12231), + [anon_sym_BSLASHcite] = ACTIONS(12231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCite] = ACTIONS(12231), + [anon_sym_BSLASHnocite] = ACTIONS(12231), + [anon_sym_BSLASHcitet] = ACTIONS(12231), + [anon_sym_BSLASHcitep] = ACTIONS(12231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteauthor] = ACTIONS(12231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitetitle] = ACTIONS(12231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteyear] = ACTIONS(12231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitedate] = ACTIONS(12231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteurl] = ACTIONS(12231), + [anon_sym_BSLASHfullcite] = ACTIONS(12231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12231), + [anon_sym_BSLASHcitealt] = ACTIONS(12231), + [anon_sym_BSLASHcitealp] = ACTIONS(12231), + [anon_sym_BSLASHcitetext] = ACTIONS(12231), + [anon_sym_BSLASHparencite] = ACTIONS(12231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHParencite] = ACTIONS(12231), + [anon_sym_BSLASHfootcite] = ACTIONS(12231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12231), + [anon_sym_BSLASHtextcite] = ACTIONS(12231), + [anon_sym_BSLASHTextcite] = ACTIONS(12231), + [anon_sym_BSLASHsmartcite] = ACTIONS(12231), + [anon_sym_BSLASHSmartcite] = ACTIONS(12231), + [anon_sym_BSLASHsupercite] = ACTIONS(12231), + [anon_sym_BSLASHautocite] = ACTIONS(12231), + [anon_sym_BSLASHAutocite] = ACTIONS(12231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHvolcite] = ACTIONS(12231), + [anon_sym_BSLASHVolcite] = ACTIONS(12231), + [anon_sym_BSLASHpvolcite] = ACTIONS(12231), + [anon_sym_BSLASHPvolcite] = ACTIONS(12231), + [anon_sym_BSLASHfvolcite] = ACTIONS(12231), + [anon_sym_BSLASHftvolcite] = ACTIONS(12231), + [anon_sym_BSLASHsvolcite] = ACTIONS(12231), + [anon_sym_BSLASHSvolcite] = ACTIONS(12231), + [anon_sym_BSLASHtvolcite] = ACTIONS(12231), + [anon_sym_BSLASHTvolcite] = ACTIONS(12231), + [anon_sym_BSLASHavolcite] = ACTIONS(12231), + [anon_sym_BSLASHAvolcite] = ACTIONS(12231), + [anon_sym_BSLASHnotecite] = ACTIONS(12231), + [anon_sym_BSLASHpnotecite] = ACTIONS(12231), + [anon_sym_BSLASHPnotecite] = ACTIONS(12231), + [anon_sym_BSLASHfnotecite] = ACTIONS(12231), + [anon_sym_BSLASHusepackage] = ACTIONS(12231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12231), + [anon_sym_BSLASHinclude] = ACTIONS(12231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12231), + [anon_sym_BSLASHinput] = ACTIONS(12231), + [anon_sym_BSLASHsubfile] = ACTIONS(12231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12231), + [anon_sym_BSLASHbibliography] = ACTIONS(12231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12231), + [anon_sym_BSLASHincludesvg] = ACTIONS(12231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12231), + [anon_sym_BSLASHimport] = ACTIONS(12231), + [anon_sym_BSLASHsubimport] = ACTIONS(12231), + [anon_sym_BSLASHinputfrom] = ACTIONS(12231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12231), + [anon_sym_BSLASHincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHlabel] = ACTIONS(12231), + [anon_sym_BSLASHref] = ACTIONS(12231), + [anon_sym_BSLASHvref] = ACTIONS(12231), + [anon_sym_BSLASHVref] = ACTIONS(12231), + [anon_sym_BSLASHautoref] = ACTIONS(12231), + [anon_sym_BSLASHpageref] = ACTIONS(12231), + [anon_sym_BSLASHcref] = ACTIONS(12231), + [anon_sym_BSLASHCref] = ACTIONS(12231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnameCref] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHlabelcref] = ACTIONS(12231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12231), + [anon_sym_BSLASHeqref] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange] = ACTIONS(12231), + [anon_sym_BSLASHCrefrange] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewlabel] = ACTIONS(12231), + [anon_sym_BSLASHnewcommand] = ACTIONS(12231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12231), + [anon_sym_BSLASHgls] = ACTIONS(12231), + [anon_sym_BSLASHGls] = ACTIONS(12231), + [anon_sym_BSLASHGLS] = ACTIONS(12231), + [anon_sym_BSLASHglspl] = ACTIONS(12231), + [anon_sym_BSLASHGlspl] = ACTIONS(12231), + [anon_sym_BSLASHGLSpl] = ACTIONS(12231), + [anon_sym_BSLASHglsdisp] = ACTIONS(12231), + [anon_sym_BSLASHglslink] = ACTIONS(12231), + [anon_sym_BSLASHglstext] = ACTIONS(12231), + [anon_sym_BSLASHGlstext] = ACTIONS(12231), + [anon_sym_BSLASHGLStext] = ACTIONS(12231), + [anon_sym_BSLASHglsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12231), + [anon_sym_BSLASHglsplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSplural] = ACTIONS(12231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHglsname] = ACTIONS(12231), + [anon_sym_BSLASHGlsname] = ACTIONS(12231), + [anon_sym_BSLASHGLSname] = ACTIONS(12231), + [anon_sym_BSLASHglssymbol] = ACTIONS(12231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12231), + [anon_sym_BSLASHglsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12231), + [anon_sym_BSLASHglsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12231), + [anon_sym_BSLASHglsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12231), + [anon_sym_BSLASHglsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12231), + [anon_sym_BSLASHglsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12231), + [anon_sym_BSLASHnewacronym] = ACTIONS(12231), + [anon_sym_BSLASHacrshort] = ACTIONS(12231), + [anon_sym_BSLASHAcrshort] = ACTIONS(12231), + [anon_sym_BSLASHACRshort] = ACTIONS(12231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12231), + [anon_sym_BSLASHacrlong] = ACTIONS(12231), + [anon_sym_BSLASHAcrlong] = ACTIONS(12231), + [anon_sym_BSLASHACRlong] = ACTIONS(12231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12231), + [anon_sym_BSLASHacrfull] = ACTIONS(12231), + [anon_sym_BSLASHAcrfull] = ACTIONS(12231), + [anon_sym_BSLASHACRfull] = ACTIONS(12231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12231), + [anon_sym_BSLASHacs] = ACTIONS(12231), + [anon_sym_BSLASHAcs] = ACTIONS(12231), + [anon_sym_BSLASHacsp] = ACTIONS(12231), + [anon_sym_BSLASHAcsp] = ACTIONS(12231), + [anon_sym_BSLASHacl] = ACTIONS(12231), + [anon_sym_BSLASHAcl] = ACTIONS(12231), + [anon_sym_BSLASHaclp] = ACTIONS(12231), + [anon_sym_BSLASHAclp] = ACTIONS(12231), + [anon_sym_BSLASHacf] = ACTIONS(12231), + [anon_sym_BSLASHAcf] = ACTIONS(12231), + [anon_sym_BSLASHacfp] = ACTIONS(12231), + [anon_sym_BSLASHAcfp] = ACTIONS(12231), + [anon_sym_BSLASHac] = ACTIONS(12231), + [anon_sym_BSLASHAc] = ACTIONS(12231), + [anon_sym_BSLASHacp] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12231), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12231), + [anon_sym_BSLASHcolor] = ACTIONS(12231), + [anon_sym_BSLASHcolorbox] = ACTIONS(12231), + [anon_sym_BSLASHtextcolor] = ACTIONS(12231), + [anon_sym_BSLASHpagecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12231), + }, + [529] = { + [ts_builtin_sym_end] = ACTIONS(12233), + [sym_generic_command_name] = ACTIONS(12235), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12235), + [aux_sym_chapter_token1] = ACTIONS(12235), + [aux_sym_section_token1] = ACTIONS(12235), + [aux_sym_subsection_token1] = ACTIONS(12235), + [aux_sym_subsubsection_token1] = ACTIONS(12235), + [aux_sym_paragraph_token1] = ACTIONS(12235), + [aux_sym_subparagraph_token1] = ACTIONS(12235), + [anon_sym_BSLASHitem] = ACTIONS(12235), + [anon_sym_LBRACK] = ACTIONS(12233), + [anon_sym_RBRACK] = ACTIONS(12233), + [anon_sym_LBRACE] = ACTIONS(12233), + [anon_sym_RBRACE] = ACTIONS(12233), + [anon_sym_LPAREN] = ACTIONS(12233), + [anon_sym_RPAREN] = ACTIONS(12233), + [anon_sym_COMMA] = ACTIONS(12233), + [anon_sym_EQ] = ACTIONS(12233), + [sym_word] = ACTIONS(12233), + [sym_param] = ACTIONS(12233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12233), + [anon_sym_DOLLAR] = ACTIONS(12235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12233), + [anon_sym_BSLASHbegin] = ACTIONS(12235), + [anon_sym_BSLASHcaption] = ACTIONS(12235), + [anon_sym_BSLASHcite] = ACTIONS(12235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCite] = ACTIONS(12235), + [anon_sym_BSLASHnocite] = ACTIONS(12235), + [anon_sym_BSLASHcitet] = ACTIONS(12235), + [anon_sym_BSLASHcitep] = ACTIONS(12235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteauthor] = ACTIONS(12235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitetitle] = ACTIONS(12235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteyear] = ACTIONS(12235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitedate] = ACTIONS(12235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteurl] = ACTIONS(12235), + [anon_sym_BSLASHfullcite] = ACTIONS(12235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12235), + [anon_sym_BSLASHcitealt] = ACTIONS(12235), + [anon_sym_BSLASHcitealp] = ACTIONS(12235), + [anon_sym_BSLASHcitetext] = ACTIONS(12235), + [anon_sym_BSLASHparencite] = ACTIONS(12235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHParencite] = ACTIONS(12235), + [anon_sym_BSLASHfootcite] = ACTIONS(12235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12235), + [anon_sym_BSLASHtextcite] = ACTIONS(12235), + [anon_sym_BSLASHTextcite] = ACTIONS(12235), + [anon_sym_BSLASHsmartcite] = ACTIONS(12235), + [anon_sym_BSLASHSmartcite] = ACTIONS(12235), + [anon_sym_BSLASHsupercite] = ACTIONS(12235), + [anon_sym_BSLASHautocite] = ACTIONS(12235), + [anon_sym_BSLASHAutocite] = ACTIONS(12235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHvolcite] = ACTIONS(12235), + [anon_sym_BSLASHVolcite] = ACTIONS(12235), + [anon_sym_BSLASHpvolcite] = ACTIONS(12235), + [anon_sym_BSLASHPvolcite] = ACTIONS(12235), + [anon_sym_BSLASHfvolcite] = ACTIONS(12235), + [anon_sym_BSLASHftvolcite] = ACTIONS(12235), + [anon_sym_BSLASHsvolcite] = ACTIONS(12235), + [anon_sym_BSLASHSvolcite] = ACTIONS(12235), + [anon_sym_BSLASHtvolcite] = ACTIONS(12235), + [anon_sym_BSLASHTvolcite] = ACTIONS(12235), + [anon_sym_BSLASHavolcite] = ACTIONS(12235), + [anon_sym_BSLASHAvolcite] = ACTIONS(12235), + [anon_sym_BSLASHnotecite] = ACTIONS(12235), + [anon_sym_BSLASHpnotecite] = ACTIONS(12235), + [anon_sym_BSLASHPnotecite] = ACTIONS(12235), + [anon_sym_BSLASHfnotecite] = ACTIONS(12235), + [anon_sym_BSLASHusepackage] = ACTIONS(12235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12235), + [anon_sym_BSLASHinclude] = ACTIONS(12235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12235), + [anon_sym_BSLASHinput] = ACTIONS(12235), + [anon_sym_BSLASHsubfile] = ACTIONS(12235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12235), + [anon_sym_BSLASHbibliography] = ACTIONS(12235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12235), + [anon_sym_BSLASHincludesvg] = ACTIONS(12235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12235), + [anon_sym_BSLASHimport] = ACTIONS(12235), + [anon_sym_BSLASHsubimport] = ACTIONS(12235), + [anon_sym_BSLASHinputfrom] = ACTIONS(12235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12235), + [anon_sym_BSLASHincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHlabel] = ACTIONS(12235), + [anon_sym_BSLASHref] = ACTIONS(12235), + [anon_sym_BSLASHvref] = ACTIONS(12235), + [anon_sym_BSLASHVref] = ACTIONS(12235), + [anon_sym_BSLASHautoref] = ACTIONS(12235), + [anon_sym_BSLASHpageref] = ACTIONS(12235), + [anon_sym_BSLASHcref] = ACTIONS(12235), + [anon_sym_BSLASHCref] = ACTIONS(12235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnameCref] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHlabelcref] = ACTIONS(12235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12235), + [anon_sym_BSLASHeqref] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange] = ACTIONS(12235), + [anon_sym_BSLASHCrefrange] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewlabel] = ACTIONS(12235), + [anon_sym_BSLASHnewcommand] = ACTIONS(12235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12235), + [anon_sym_BSLASHgls] = ACTIONS(12235), + [anon_sym_BSLASHGls] = ACTIONS(12235), + [anon_sym_BSLASHGLS] = ACTIONS(12235), + [anon_sym_BSLASHglspl] = ACTIONS(12235), + [anon_sym_BSLASHGlspl] = ACTIONS(12235), + [anon_sym_BSLASHGLSpl] = ACTIONS(12235), + [anon_sym_BSLASHglsdisp] = ACTIONS(12235), + [anon_sym_BSLASHglslink] = ACTIONS(12235), + [anon_sym_BSLASHglstext] = ACTIONS(12235), + [anon_sym_BSLASHGlstext] = ACTIONS(12235), + [anon_sym_BSLASHGLStext] = ACTIONS(12235), + [anon_sym_BSLASHglsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12235), + [anon_sym_BSLASHglsplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSplural] = ACTIONS(12235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHglsname] = ACTIONS(12235), + [anon_sym_BSLASHGlsname] = ACTIONS(12235), + [anon_sym_BSLASHGLSname] = ACTIONS(12235), + [anon_sym_BSLASHglssymbol] = ACTIONS(12235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12235), + [anon_sym_BSLASHglsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12235), + [anon_sym_BSLASHglsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12235), + [anon_sym_BSLASHglsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12235), + [anon_sym_BSLASHglsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12235), + [anon_sym_BSLASHglsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12235), + [anon_sym_BSLASHnewacronym] = ACTIONS(12235), + [anon_sym_BSLASHacrshort] = ACTIONS(12235), + [anon_sym_BSLASHAcrshort] = ACTIONS(12235), + [anon_sym_BSLASHACRshort] = ACTIONS(12235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12235), + [anon_sym_BSLASHacrlong] = ACTIONS(12235), + [anon_sym_BSLASHAcrlong] = ACTIONS(12235), + [anon_sym_BSLASHACRlong] = ACTIONS(12235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12235), + [anon_sym_BSLASHacrfull] = ACTIONS(12235), + [anon_sym_BSLASHAcrfull] = ACTIONS(12235), + [anon_sym_BSLASHACRfull] = ACTIONS(12235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12235), + [anon_sym_BSLASHacs] = ACTIONS(12235), + [anon_sym_BSLASHAcs] = ACTIONS(12235), + [anon_sym_BSLASHacsp] = ACTIONS(12235), + [anon_sym_BSLASHAcsp] = ACTIONS(12235), + [anon_sym_BSLASHacl] = ACTIONS(12235), + [anon_sym_BSLASHAcl] = ACTIONS(12235), + [anon_sym_BSLASHaclp] = ACTIONS(12235), + [anon_sym_BSLASHAclp] = ACTIONS(12235), + [anon_sym_BSLASHacf] = ACTIONS(12235), + [anon_sym_BSLASHAcf] = ACTIONS(12235), + [anon_sym_BSLASHacfp] = ACTIONS(12235), + [anon_sym_BSLASHAcfp] = ACTIONS(12235), + [anon_sym_BSLASHac] = ACTIONS(12235), + [anon_sym_BSLASHAc] = ACTIONS(12235), + [anon_sym_BSLASHacp] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12235), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12235), + [anon_sym_BSLASHcolor] = ACTIONS(12235), + [anon_sym_BSLASHcolorbox] = ACTIONS(12235), + [anon_sym_BSLASHtextcolor] = ACTIONS(12235), + [anon_sym_BSLASHpagecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12235), + }, + [530] = { + [ts_builtin_sym_end] = ACTIONS(12237), + [sym_generic_command_name] = ACTIONS(12239), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12239), + [aux_sym_chapter_token1] = ACTIONS(12239), + [aux_sym_section_token1] = ACTIONS(12239), + [aux_sym_subsection_token1] = ACTIONS(12239), + [aux_sym_subsubsection_token1] = ACTIONS(12239), + [aux_sym_paragraph_token1] = ACTIONS(12239), + [aux_sym_subparagraph_token1] = ACTIONS(12239), + [anon_sym_BSLASHitem] = ACTIONS(12239), + [anon_sym_LBRACK] = ACTIONS(12237), + [anon_sym_RBRACK] = ACTIONS(12237), + [anon_sym_LBRACE] = ACTIONS(12237), + [anon_sym_RBRACE] = ACTIONS(12237), + [anon_sym_LPAREN] = ACTIONS(12237), + [anon_sym_RPAREN] = ACTIONS(12237), + [anon_sym_COMMA] = ACTIONS(12237), + [anon_sym_EQ] = ACTIONS(12237), + [sym_word] = ACTIONS(12237), + [sym_param] = ACTIONS(12237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12237), + [anon_sym_DOLLAR] = ACTIONS(12239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12237), + [anon_sym_BSLASHbegin] = ACTIONS(12239), + [anon_sym_BSLASHcaption] = ACTIONS(12239), + [anon_sym_BSLASHcite] = ACTIONS(12239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCite] = ACTIONS(12239), + [anon_sym_BSLASHnocite] = ACTIONS(12239), + [anon_sym_BSLASHcitet] = ACTIONS(12239), + [anon_sym_BSLASHcitep] = ACTIONS(12239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteauthor] = ACTIONS(12239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitetitle] = ACTIONS(12239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteyear] = ACTIONS(12239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitedate] = ACTIONS(12239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteurl] = ACTIONS(12239), + [anon_sym_BSLASHfullcite] = ACTIONS(12239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12239), + [anon_sym_BSLASHcitealt] = ACTIONS(12239), + [anon_sym_BSLASHcitealp] = ACTIONS(12239), + [anon_sym_BSLASHcitetext] = ACTIONS(12239), + [anon_sym_BSLASHparencite] = ACTIONS(12239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHParencite] = ACTIONS(12239), + [anon_sym_BSLASHfootcite] = ACTIONS(12239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12239), + [anon_sym_BSLASHtextcite] = ACTIONS(12239), + [anon_sym_BSLASHTextcite] = ACTIONS(12239), + [anon_sym_BSLASHsmartcite] = ACTIONS(12239), + [anon_sym_BSLASHSmartcite] = ACTIONS(12239), + [anon_sym_BSLASHsupercite] = ACTIONS(12239), + [anon_sym_BSLASHautocite] = ACTIONS(12239), + [anon_sym_BSLASHAutocite] = ACTIONS(12239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHvolcite] = ACTIONS(12239), + [anon_sym_BSLASHVolcite] = ACTIONS(12239), + [anon_sym_BSLASHpvolcite] = ACTIONS(12239), + [anon_sym_BSLASHPvolcite] = ACTIONS(12239), + [anon_sym_BSLASHfvolcite] = ACTIONS(12239), + [anon_sym_BSLASHftvolcite] = ACTIONS(12239), + [anon_sym_BSLASHsvolcite] = ACTIONS(12239), + [anon_sym_BSLASHSvolcite] = ACTIONS(12239), + [anon_sym_BSLASHtvolcite] = ACTIONS(12239), + [anon_sym_BSLASHTvolcite] = ACTIONS(12239), + [anon_sym_BSLASHavolcite] = ACTIONS(12239), + [anon_sym_BSLASHAvolcite] = ACTIONS(12239), + [anon_sym_BSLASHnotecite] = ACTIONS(12239), + [anon_sym_BSLASHpnotecite] = ACTIONS(12239), + [anon_sym_BSLASHPnotecite] = ACTIONS(12239), + [anon_sym_BSLASHfnotecite] = ACTIONS(12239), + [anon_sym_BSLASHusepackage] = ACTIONS(12239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12239), + [anon_sym_BSLASHinclude] = ACTIONS(12239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12239), + [anon_sym_BSLASHinput] = ACTIONS(12239), + [anon_sym_BSLASHsubfile] = ACTIONS(12239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12239), + [anon_sym_BSLASHbibliography] = ACTIONS(12239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12239), + [anon_sym_BSLASHincludesvg] = ACTIONS(12239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12239), + [anon_sym_BSLASHimport] = ACTIONS(12239), + [anon_sym_BSLASHsubimport] = ACTIONS(12239), + [anon_sym_BSLASHinputfrom] = ACTIONS(12239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12239), + [anon_sym_BSLASHincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHlabel] = ACTIONS(12239), + [anon_sym_BSLASHref] = ACTIONS(12239), + [anon_sym_BSLASHvref] = ACTIONS(12239), + [anon_sym_BSLASHVref] = ACTIONS(12239), + [anon_sym_BSLASHautoref] = ACTIONS(12239), + [anon_sym_BSLASHpageref] = ACTIONS(12239), + [anon_sym_BSLASHcref] = ACTIONS(12239), + [anon_sym_BSLASHCref] = ACTIONS(12239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnameCref] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHlabelcref] = ACTIONS(12239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12239), + [anon_sym_BSLASHeqref] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange] = ACTIONS(12239), + [anon_sym_BSLASHCrefrange] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewlabel] = ACTIONS(12239), + [anon_sym_BSLASHnewcommand] = ACTIONS(12239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12239), + [anon_sym_BSLASHgls] = ACTIONS(12239), + [anon_sym_BSLASHGls] = ACTIONS(12239), + [anon_sym_BSLASHGLS] = ACTIONS(12239), + [anon_sym_BSLASHglspl] = ACTIONS(12239), + [anon_sym_BSLASHGlspl] = ACTIONS(12239), + [anon_sym_BSLASHGLSpl] = ACTIONS(12239), + [anon_sym_BSLASHglsdisp] = ACTIONS(12239), + [anon_sym_BSLASHglslink] = ACTIONS(12239), + [anon_sym_BSLASHglstext] = ACTIONS(12239), + [anon_sym_BSLASHGlstext] = ACTIONS(12239), + [anon_sym_BSLASHGLStext] = ACTIONS(12239), + [anon_sym_BSLASHglsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12239), + [anon_sym_BSLASHglsplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSplural] = ACTIONS(12239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHglsname] = ACTIONS(12239), + [anon_sym_BSLASHGlsname] = ACTIONS(12239), + [anon_sym_BSLASHGLSname] = ACTIONS(12239), + [anon_sym_BSLASHglssymbol] = ACTIONS(12239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12239), + [anon_sym_BSLASHglsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12239), + [anon_sym_BSLASHglsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12239), + [anon_sym_BSLASHglsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12239), + [anon_sym_BSLASHglsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12239), + [anon_sym_BSLASHglsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12239), + [anon_sym_BSLASHnewacronym] = ACTIONS(12239), + [anon_sym_BSLASHacrshort] = ACTIONS(12239), + [anon_sym_BSLASHAcrshort] = ACTIONS(12239), + [anon_sym_BSLASHACRshort] = ACTIONS(12239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12239), + [anon_sym_BSLASHacrlong] = ACTIONS(12239), + [anon_sym_BSLASHAcrlong] = ACTIONS(12239), + [anon_sym_BSLASHACRlong] = ACTIONS(12239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12239), + [anon_sym_BSLASHacrfull] = ACTIONS(12239), + [anon_sym_BSLASHAcrfull] = ACTIONS(12239), + [anon_sym_BSLASHACRfull] = ACTIONS(12239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12239), + [anon_sym_BSLASHacs] = ACTIONS(12239), + [anon_sym_BSLASHAcs] = ACTIONS(12239), + [anon_sym_BSLASHacsp] = ACTIONS(12239), + [anon_sym_BSLASHAcsp] = ACTIONS(12239), + [anon_sym_BSLASHacl] = ACTIONS(12239), + [anon_sym_BSLASHAcl] = ACTIONS(12239), + [anon_sym_BSLASHaclp] = ACTIONS(12239), + [anon_sym_BSLASHAclp] = ACTIONS(12239), + [anon_sym_BSLASHacf] = ACTIONS(12239), + [anon_sym_BSLASHAcf] = ACTIONS(12239), + [anon_sym_BSLASHacfp] = ACTIONS(12239), + [anon_sym_BSLASHAcfp] = ACTIONS(12239), + [anon_sym_BSLASHac] = ACTIONS(12239), + [anon_sym_BSLASHAc] = ACTIONS(12239), + [anon_sym_BSLASHacp] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12239), + [anon_sym_BSLASHcolor] = ACTIONS(12239), + [anon_sym_BSLASHcolorbox] = ACTIONS(12239), + [anon_sym_BSLASHtextcolor] = ACTIONS(12239), + [anon_sym_BSLASHpagecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12239), + }, + [531] = { + [ts_builtin_sym_end] = ACTIONS(12241), + [sym_generic_command_name] = ACTIONS(12243), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12243), + [aux_sym_chapter_token1] = ACTIONS(12243), + [aux_sym_section_token1] = ACTIONS(12243), + [aux_sym_subsection_token1] = ACTIONS(12243), + [aux_sym_subsubsection_token1] = ACTIONS(12243), + [aux_sym_paragraph_token1] = ACTIONS(12243), + [aux_sym_subparagraph_token1] = ACTIONS(12243), + [anon_sym_BSLASHitem] = ACTIONS(12243), + [anon_sym_LBRACK] = ACTIONS(12241), + [anon_sym_RBRACK] = ACTIONS(12241), + [anon_sym_LBRACE] = ACTIONS(12241), + [anon_sym_RBRACE] = ACTIONS(12241), + [anon_sym_LPAREN] = ACTIONS(12241), + [anon_sym_RPAREN] = ACTIONS(12241), + [anon_sym_COMMA] = ACTIONS(12241), + [anon_sym_EQ] = ACTIONS(12241), + [sym_word] = ACTIONS(12241), + [sym_param] = ACTIONS(12241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12241), + [anon_sym_DOLLAR] = ACTIONS(12243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12241), + [anon_sym_BSLASHbegin] = ACTIONS(12243), + [anon_sym_BSLASHcaption] = ACTIONS(12243), + [anon_sym_BSLASHcite] = ACTIONS(12243), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCite] = ACTIONS(12243), + [anon_sym_BSLASHnocite] = ACTIONS(12243), + [anon_sym_BSLASHcitet] = ACTIONS(12243), + [anon_sym_BSLASHcitep] = ACTIONS(12243), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteauthor] = ACTIONS(12243), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12243), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitetitle] = ACTIONS(12243), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteyear] = ACTIONS(12243), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitedate] = ACTIONS(12243), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteurl] = ACTIONS(12243), + [anon_sym_BSLASHfullcite] = ACTIONS(12243), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12243), + [anon_sym_BSLASHcitealt] = ACTIONS(12243), + [anon_sym_BSLASHcitealp] = ACTIONS(12243), + [anon_sym_BSLASHcitetext] = ACTIONS(12243), + [anon_sym_BSLASHparencite] = ACTIONS(12243), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHParencite] = ACTIONS(12243), + [anon_sym_BSLASHfootcite] = ACTIONS(12243), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12243), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12243), + [anon_sym_BSLASHtextcite] = ACTIONS(12243), + [anon_sym_BSLASHTextcite] = ACTIONS(12243), + [anon_sym_BSLASHsmartcite] = ACTIONS(12243), + [anon_sym_BSLASHSmartcite] = ACTIONS(12243), + [anon_sym_BSLASHsupercite] = ACTIONS(12243), + [anon_sym_BSLASHautocite] = ACTIONS(12243), + [anon_sym_BSLASHAutocite] = ACTIONS(12243), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHvolcite] = ACTIONS(12243), + [anon_sym_BSLASHVolcite] = ACTIONS(12243), + [anon_sym_BSLASHpvolcite] = ACTIONS(12243), + [anon_sym_BSLASHPvolcite] = ACTIONS(12243), + [anon_sym_BSLASHfvolcite] = ACTIONS(12243), + [anon_sym_BSLASHftvolcite] = ACTIONS(12243), + [anon_sym_BSLASHsvolcite] = ACTIONS(12243), + [anon_sym_BSLASHSvolcite] = ACTIONS(12243), + [anon_sym_BSLASHtvolcite] = ACTIONS(12243), + [anon_sym_BSLASHTvolcite] = ACTIONS(12243), + [anon_sym_BSLASHavolcite] = ACTIONS(12243), + [anon_sym_BSLASHAvolcite] = ACTIONS(12243), + [anon_sym_BSLASHnotecite] = ACTIONS(12243), + [anon_sym_BSLASHpnotecite] = ACTIONS(12243), + [anon_sym_BSLASHPnotecite] = ACTIONS(12243), + [anon_sym_BSLASHfnotecite] = ACTIONS(12243), + [anon_sym_BSLASHusepackage] = ACTIONS(12243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12243), + [anon_sym_BSLASHinclude] = ACTIONS(12243), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12243), + [anon_sym_BSLASHinput] = ACTIONS(12243), + [anon_sym_BSLASHsubfile] = ACTIONS(12243), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12243), + [anon_sym_BSLASHbibliography] = ACTIONS(12243), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12243), + [anon_sym_BSLASHincludesvg] = ACTIONS(12243), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12243), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12243), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12243), + [anon_sym_BSLASHimport] = ACTIONS(12243), + [anon_sym_BSLASHsubimport] = ACTIONS(12243), + [anon_sym_BSLASHinputfrom] = ACTIONS(12243), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12243), + [anon_sym_BSLASHincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHlabel] = ACTIONS(12243), + [anon_sym_BSLASHref] = ACTIONS(12243), + [anon_sym_BSLASHvref] = ACTIONS(12243), + [anon_sym_BSLASHVref] = ACTIONS(12243), + [anon_sym_BSLASHautoref] = ACTIONS(12243), + [anon_sym_BSLASHpageref] = ACTIONS(12243), + [anon_sym_BSLASHcref] = ACTIONS(12243), + [anon_sym_BSLASHCref] = ACTIONS(12243), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnameCref] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHlabelcref] = ACTIONS(12243), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12243), + [anon_sym_BSLASHeqref] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange] = ACTIONS(12243), + [anon_sym_BSLASHCrefrange] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewlabel] = ACTIONS(12243), + [anon_sym_BSLASHnewcommand] = ACTIONS(12243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12243), + [anon_sym_BSLASHgls] = ACTIONS(12243), + [anon_sym_BSLASHGls] = ACTIONS(12243), + [anon_sym_BSLASHGLS] = ACTIONS(12243), + [anon_sym_BSLASHglspl] = ACTIONS(12243), + [anon_sym_BSLASHGlspl] = ACTIONS(12243), + [anon_sym_BSLASHGLSpl] = ACTIONS(12243), + [anon_sym_BSLASHglsdisp] = ACTIONS(12243), + [anon_sym_BSLASHglslink] = ACTIONS(12243), + [anon_sym_BSLASHglstext] = ACTIONS(12243), + [anon_sym_BSLASHGlstext] = ACTIONS(12243), + [anon_sym_BSLASHGLStext] = ACTIONS(12243), + [anon_sym_BSLASHglsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12243), + [anon_sym_BSLASHglsplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSplural] = ACTIONS(12243), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHglsname] = ACTIONS(12243), + [anon_sym_BSLASHGlsname] = ACTIONS(12243), + [anon_sym_BSLASHGLSname] = ACTIONS(12243), + [anon_sym_BSLASHglssymbol] = ACTIONS(12243), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12243), + [anon_sym_BSLASHglsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12243), + [anon_sym_BSLASHglsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12243), + [anon_sym_BSLASHglsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12243), + [anon_sym_BSLASHglsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12243), + [anon_sym_BSLASHglsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12243), + [anon_sym_BSLASHnewacronym] = ACTIONS(12243), + [anon_sym_BSLASHacrshort] = ACTIONS(12243), + [anon_sym_BSLASHAcrshort] = ACTIONS(12243), + [anon_sym_BSLASHACRshort] = ACTIONS(12243), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12243), + [anon_sym_BSLASHacrlong] = ACTIONS(12243), + [anon_sym_BSLASHAcrlong] = ACTIONS(12243), + [anon_sym_BSLASHACRlong] = ACTIONS(12243), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12243), + [anon_sym_BSLASHacrfull] = ACTIONS(12243), + [anon_sym_BSLASHAcrfull] = ACTIONS(12243), + [anon_sym_BSLASHACRfull] = ACTIONS(12243), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12243), + [anon_sym_BSLASHacs] = ACTIONS(12243), + [anon_sym_BSLASHAcs] = ACTIONS(12243), + [anon_sym_BSLASHacsp] = ACTIONS(12243), + [anon_sym_BSLASHAcsp] = ACTIONS(12243), + [anon_sym_BSLASHacl] = ACTIONS(12243), + [anon_sym_BSLASHAcl] = ACTIONS(12243), + [anon_sym_BSLASHaclp] = ACTIONS(12243), + [anon_sym_BSLASHAclp] = ACTIONS(12243), + [anon_sym_BSLASHacf] = ACTIONS(12243), + [anon_sym_BSLASHAcf] = ACTIONS(12243), + [anon_sym_BSLASHacfp] = ACTIONS(12243), + [anon_sym_BSLASHAcfp] = ACTIONS(12243), + [anon_sym_BSLASHac] = ACTIONS(12243), + [anon_sym_BSLASHAc] = ACTIONS(12243), + [anon_sym_BSLASHacp] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12243), + [anon_sym_BSLASHcolor] = ACTIONS(12243), + [anon_sym_BSLASHcolorbox] = ACTIONS(12243), + [anon_sym_BSLASHtextcolor] = ACTIONS(12243), + [anon_sym_BSLASHpagecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12243), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12243), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12243), + }, + [532] = { + [ts_builtin_sym_end] = ACTIONS(12245), + [sym_generic_command_name] = ACTIONS(12247), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12247), + [aux_sym_chapter_token1] = ACTIONS(12247), + [aux_sym_section_token1] = ACTIONS(12247), + [aux_sym_subsection_token1] = ACTIONS(12247), + [aux_sym_subsubsection_token1] = ACTIONS(12247), + [aux_sym_paragraph_token1] = ACTIONS(12247), + [aux_sym_subparagraph_token1] = ACTIONS(12247), + [anon_sym_BSLASHitem] = ACTIONS(12247), + [anon_sym_LBRACK] = ACTIONS(12245), + [anon_sym_RBRACK] = ACTIONS(12245), + [anon_sym_LBRACE] = ACTIONS(12245), + [anon_sym_RBRACE] = ACTIONS(12245), + [anon_sym_LPAREN] = ACTIONS(12245), + [anon_sym_RPAREN] = ACTIONS(12245), + [anon_sym_COMMA] = ACTIONS(12245), + [anon_sym_EQ] = ACTIONS(12245), + [sym_word] = ACTIONS(12245), + [sym_param] = ACTIONS(12245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12245), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12245), + [anon_sym_DOLLAR] = ACTIONS(12247), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12245), + [anon_sym_BSLASHbegin] = ACTIONS(12247), + [anon_sym_BSLASHcaption] = ACTIONS(12247), + [anon_sym_BSLASHcite] = ACTIONS(12247), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCite] = ACTIONS(12247), + [anon_sym_BSLASHnocite] = ACTIONS(12247), + [anon_sym_BSLASHcitet] = ACTIONS(12247), + [anon_sym_BSLASHcitep] = ACTIONS(12247), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteauthor] = ACTIONS(12247), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12247), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitetitle] = ACTIONS(12247), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteyear] = ACTIONS(12247), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitedate] = ACTIONS(12247), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteurl] = ACTIONS(12247), + [anon_sym_BSLASHfullcite] = ACTIONS(12247), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12247), + [anon_sym_BSLASHcitealt] = ACTIONS(12247), + [anon_sym_BSLASHcitealp] = ACTIONS(12247), + [anon_sym_BSLASHcitetext] = ACTIONS(12247), + [anon_sym_BSLASHparencite] = ACTIONS(12247), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHParencite] = ACTIONS(12247), + [anon_sym_BSLASHfootcite] = ACTIONS(12247), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12247), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12247), + [anon_sym_BSLASHtextcite] = ACTIONS(12247), + [anon_sym_BSLASHTextcite] = ACTIONS(12247), + [anon_sym_BSLASHsmartcite] = ACTIONS(12247), + [anon_sym_BSLASHSmartcite] = ACTIONS(12247), + [anon_sym_BSLASHsupercite] = ACTIONS(12247), + [anon_sym_BSLASHautocite] = ACTIONS(12247), + [anon_sym_BSLASHAutocite] = ACTIONS(12247), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHvolcite] = ACTIONS(12247), + [anon_sym_BSLASHVolcite] = ACTIONS(12247), + [anon_sym_BSLASHpvolcite] = ACTIONS(12247), + [anon_sym_BSLASHPvolcite] = ACTIONS(12247), + [anon_sym_BSLASHfvolcite] = ACTIONS(12247), + [anon_sym_BSLASHftvolcite] = ACTIONS(12247), + [anon_sym_BSLASHsvolcite] = ACTIONS(12247), + [anon_sym_BSLASHSvolcite] = ACTIONS(12247), + [anon_sym_BSLASHtvolcite] = ACTIONS(12247), + [anon_sym_BSLASHTvolcite] = ACTIONS(12247), + [anon_sym_BSLASHavolcite] = ACTIONS(12247), + [anon_sym_BSLASHAvolcite] = ACTIONS(12247), + [anon_sym_BSLASHnotecite] = ACTIONS(12247), + [anon_sym_BSLASHpnotecite] = ACTIONS(12247), + [anon_sym_BSLASHPnotecite] = ACTIONS(12247), + [anon_sym_BSLASHfnotecite] = ACTIONS(12247), + [anon_sym_BSLASHusepackage] = ACTIONS(12247), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12247), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12247), + [anon_sym_BSLASHinclude] = ACTIONS(12247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12247), + [anon_sym_BSLASHinput] = ACTIONS(12247), + [anon_sym_BSLASHsubfile] = ACTIONS(12247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12247), + [anon_sym_BSLASHbibliography] = ACTIONS(12247), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12247), + [anon_sym_BSLASHincludesvg] = ACTIONS(12247), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12247), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12247), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12247), + [anon_sym_BSLASHimport] = ACTIONS(12247), + [anon_sym_BSLASHsubimport] = ACTIONS(12247), + [anon_sym_BSLASHinputfrom] = ACTIONS(12247), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12247), + [anon_sym_BSLASHincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHlabel] = ACTIONS(12247), + [anon_sym_BSLASHref] = ACTIONS(12247), + [anon_sym_BSLASHvref] = ACTIONS(12247), + [anon_sym_BSLASHVref] = ACTIONS(12247), + [anon_sym_BSLASHautoref] = ACTIONS(12247), + [anon_sym_BSLASHpageref] = ACTIONS(12247), + [anon_sym_BSLASHcref] = ACTIONS(12247), + [anon_sym_BSLASHCref] = ACTIONS(12247), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnameCref] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHlabelcref] = ACTIONS(12247), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12247), + [anon_sym_BSLASHeqref] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange] = ACTIONS(12247), + [anon_sym_BSLASHCrefrange] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewlabel] = ACTIONS(12247), + [anon_sym_BSLASHnewcommand] = ACTIONS(12247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12247), + [anon_sym_BSLASHgls] = ACTIONS(12247), + [anon_sym_BSLASHGls] = ACTIONS(12247), + [anon_sym_BSLASHGLS] = ACTIONS(12247), + [anon_sym_BSLASHglspl] = ACTIONS(12247), + [anon_sym_BSLASHGlspl] = ACTIONS(12247), + [anon_sym_BSLASHGLSpl] = ACTIONS(12247), + [anon_sym_BSLASHglsdisp] = ACTIONS(12247), + [anon_sym_BSLASHglslink] = ACTIONS(12247), + [anon_sym_BSLASHglstext] = ACTIONS(12247), + [anon_sym_BSLASHGlstext] = ACTIONS(12247), + [anon_sym_BSLASHGLStext] = ACTIONS(12247), + [anon_sym_BSLASHglsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12247), + [anon_sym_BSLASHglsplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSplural] = ACTIONS(12247), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHglsname] = ACTIONS(12247), + [anon_sym_BSLASHGlsname] = ACTIONS(12247), + [anon_sym_BSLASHGLSname] = ACTIONS(12247), + [anon_sym_BSLASHglssymbol] = ACTIONS(12247), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12247), + [anon_sym_BSLASHglsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12247), + [anon_sym_BSLASHglsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12247), + [anon_sym_BSLASHglsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12247), + [anon_sym_BSLASHglsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12247), + [anon_sym_BSLASHglsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12247), + [anon_sym_BSLASHnewacronym] = ACTIONS(12247), + [anon_sym_BSLASHacrshort] = ACTIONS(12247), + [anon_sym_BSLASHAcrshort] = ACTIONS(12247), + [anon_sym_BSLASHACRshort] = ACTIONS(12247), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12247), + [anon_sym_BSLASHacrlong] = ACTIONS(12247), + [anon_sym_BSLASHAcrlong] = ACTIONS(12247), + [anon_sym_BSLASHACRlong] = ACTIONS(12247), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12247), + [anon_sym_BSLASHacrfull] = ACTIONS(12247), + [anon_sym_BSLASHAcrfull] = ACTIONS(12247), + [anon_sym_BSLASHACRfull] = ACTIONS(12247), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12247), + [anon_sym_BSLASHacs] = ACTIONS(12247), + [anon_sym_BSLASHAcs] = ACTIONS(12247), + [anon_sym_BSLASHacsp] = ACTIONS(12247), + [anon_sym_BSLASHAcsp] = ACTIONS(12247), + [anon_sym_BSLASHacl] = ACTIONS(12247), + [anon_sym_BSLASHAcl] = ACTIONS(12247), + [anon_sym_BSLASHaclp] = ACTIONS(12247), + [anon_sym_BSLASHAclp] = ACTIONS(12247), + [anon_sym_BSLASHacf] = ACTIONS(12247), + [anon_sym_BSLASHAcf] = ACTIONS(12247), + [anon_sym_BSLASHacfp] = ACTIONS(12247), + [anon_sym_BSLASHAcfp] = ACTIONS(12247), + [anon_sym_BSLASHac] = ACTIONS(12247), + [anon_sym_BSLASHAc] = ACTIONS(12247), + [anon_sym_BSLASHacp] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12247), + [anon_sym_BSLASHcolor] = ACTIONS(12247), + [anon_sym_BSLASHcolorbox] = ACTIONS(12247), + [anon_sym_BSLASHtextcolor] = ACTIONS(12247), + [anon_sym_BSLASHpagecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12247), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12247), + }, + [533] = { + [ts_builtin_sym_end] = ACTIONS(12249), + [sym_generic_command_name] = ACTIONS(12251), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12251), + [aux_sym_chapter_token1] = ACTIONS(12251), + [aux_sym_section_token1] = ACTIONS(12251), + [aux_sym_subsection_token1] = ACTIONS(12251), + [aux_sym_subsubsection_token1] = ACTIONS(12251), + [aux_sym_paragraph_token1] = ACTIONS(12251), + [aux_sym_subparagraph_token1] = ACTIONS(12251), + [anon_sym_BSLASHitem] = ACTIONS(12251), + [anon_sym_LBRACK] = ACTIONS(12249), + [anon_sym_RBRACK] = ACTIONS(12249), + [anon_sym_LBRACE] = ACTIONS(12249), + [anon_sym_RBRACE] = ACTIONS(12249), + [anon_sym_LPAREN] = ACTIONS(12249), + [anon_sym_RPAREN] = ACTIONS(12249), + [anon_sym_COMMA] = ACTIONS(12249), + [anon_sym_EQ] = ACTIONS(12249), + [sym_word] = ACTIONS(12249), + [sym_param] = ACTIONS(12249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12249), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12249), + [anon_sym_DOLLAR] = ACTIONS(12251), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12249), + [anon_sym_BSLASHbegin] = ACTIONS(12251), + [anon_sym_BSLASHcaption] = ACTIONS(12251), + [anon_sym_BSLASHcite] = ACTIONS(12251), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCite] = ACTIONS(12251), + [anon_sym_BSLASHnocite] = ACTIONS(12251), + [anon_sym_BSLASHcitet] = ACTIONS(12251), + [anon_sym_BSLASHcitep] = ACTIONS(12251), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteauthor] = ACTIONS(12251), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12251), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitetitle] = ACTIONS(12251), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteyear] = ACTIONS(12251), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitedate] = ACTIONS(12251), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteurl] = ACTIONS(12251), + [anon_sym_BSLASHfullcite] = ACTIONS(12251), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12251), + [anon_sym_BSLASHcitealt] = ACTIONS(12251), + [anon_sym_BSLASHcitealp] = ACTIONS(12251), + [anon_sym_BSLASHcitetext] = ACTIONS(12251), + [anon_sym_BSLASHparencite] = ACTIONS(12251), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHParencite] = ACTIONS(12251), + [anon_sym_BSLASHfootcite] = ACTIONS(12251), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12251), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12251), + [anon_sym_BSLASHtextcite] = ACTIONS(12251), + [anon_sym_BSLASHTextcite] = ACTIONS(12251), + [anon_sym_BSLASHsmartcite] = ACTIONS(12251), + [anon_sym_BSLASHSmartcite] = ACTIONS(12251), + [anon_sym_BSLASHsupercite] = ACTIONS(12251), + [anon_sym_BSLASHautocite] = ACTIONS(12251), + [anon_sym_BSLASHAutocite] = ACTIONS(12251), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHvolcite] = ACTIONS(12251), + [anon_sym_BSLASHVolcite] = ACTIONS(12251), + [anon_sym_BSLASHpvolcite] = ACTIONS(12251), + [anon_sym_BSLASHPvolcite] = ACTIONS(12251), + [anon_sym_BSLASHfvolcite] = ACTIONS(12251), + [anon_sym_BSLASHftvolcite] = ACTIONS(12251), + [anon_sym_BSLASHsvolcite] = ACTIONS(12251), + [anon_sym_BSLASHSvolcite] = ACTIONS(12251), + [anon_sym_BSLASHtvolcite] = ACTIONS(12251), + [anon_sym_BSLASHTvolcite] = ACTIONS(12251), + [anon_sym_BSLASHavolcite] = ACTIONS(12251), + [anon_sym_BSLASHAvolcite] = ACTIONS(12251), + [anon_sym_BSLASHnotecite] = ACTIONS(12251), + [anon_sym_BSLASHpnotecite] = ACTIONS(12251), + [anon_sym_BSLASHPnotecite] = ACTIONS(12251), + [anon_sym_BSLASHfnotecite] = ACTIONS(12251), + [anon_sym_BSLASHusepackage] = ACTIONS(12251), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12251), + [anon_sym_BSLASHinclude] = ACTIONS(12251), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12251), + [anon_sym_BSLASHinput] = ACTIONS(12251), + [anon_sym_BSLASHsubfile] = ACTIONS(12251), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12251), + [anon_sym_BSLASHbibliography] = ACTIONS(12251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12251), + [anon_sym_BSLASHincludesvg] = ACTIONS(12251), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12251), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12251), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12251), + [anon_sym_BSLASHimport] = ACTIONS(12251), + [anon_sym_BSLASHsubimport] = ACTIONS(12251), + [anon_sym_BSLASHinputfrom] = ACTIONS(12251), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12251), + [anon_sym_BSLASHincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHlabel] = ACTIONS(12251), + [anon_sym_BSLASHref] = ACTIONS(12251), + [anon_sym_BSLASHvref] = ACTIONS(12251), + [anon_sym_BSLASHVref] = ACTIONS(12251), + [anon_sym_BSLASHautoref] = ACTIONS(12251), + [anon_sym_BSLASHpageref] = ACTIONS(12251), + [anon_sym_BSLASHcref] = ACTIONS(12251), + [anon_sym_BSLASHCref] = ACTIONS(12251), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnameCref] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHlabelcref] = ACTIONS(12251), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12251), + [anon_sym_BSLASHeqref] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange] = ACTIONS(12251), + [anon_sym_BSLASHCrefrange] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewlabel] = ACTIONS(12251), + [anon_sym_BSLASHnewcommand] = ACTIONS(12251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12251), + [anon_sym_BSLASHgls] = ACTIONS(12251), + [anon_sym_BSLASHGls] = ACTIONS(12251), + [anon_sym_BSLASHGLS] = ACTIONS(12251), + [anon_sym_BSLASHglspl] = ACTIONS(12251), + [anon_sym_BSLASHGlspl] = ACTIONS(12251), + [anon_sym_BSLASHGLSpl] = ACTIONS(12251), + [anon_sym_BSLASHglsdisp] = ACTIONS(12251), + [anon_sym_BSLASHglslink] = ACTIONS(12251), + [anon_sym_BSLASHglstext] = ACTIONS(12251), + [anon_sym_BSLASHGlstext] = ACTIONS(12251), + [anon_sym_BSLASHGLStext] = ACTIONS(12251), + [anon_sym_BSLASHglsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12251), + [anon_sym_BSLASHglsplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSplural] = ACTIONS(12251), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHglsname] = ACTIONS(12251), + [anon_sym_BSLASHGlsname] = ACTIONS(12251), + [anon_sym_BSLASHGLSname] = ACTIONS(12251), + [anon_sym_BSLASHglssymbol] = ACTIONS(12251), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12251), + [anon_sym_BSLASHglsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12251), + [anon_sym_BSLASHglsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12251), + [anon_sym_BSLASHglsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12251), + [anon_sym_BSLASHglsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12251), + [anon_sym_BSLASHglsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12251), + [anon_sym_BSLASHnewacronym] = ACTIONS(12251), + [anon_sym_BSLASHacrshort] = ACTIONS(12251), + [anon_sym_BSLASHAcrshort] = ACTIONS(12251), + [anon_sym_BSLASHACRshort] = ACTIONS(12251), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12251), + [anon_sym_BSLASHacrlong] = ACTIONS(12251), + [anon_sym_BSLASHAcrlong] = ACTIONS(12251), + [anon_sym_BSLASHACRlong] = ACTIONS(12251), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12251), + [anon_sym_BSLASHacrfull] = ACTIONS(12251), + [anon_sym_BSLASHAcrfull] = ACTIONS(12251), + [anon_sym_BSLASHACRfull] = ACTIONS(12251), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12251), + [anon_sym_BSLASHacs] = ACTIONS(12251), + [anon_sym_BSLASHAcs] = ACTIONS(12251), + [anon_sym_BSLASHacsp] = ACTIONS(12251), + [anon_sym_BSLASHAcsp] = ACTIONS(12251), + [anon_sym_BSLASHacl] = ACTIONS(12251), + [anon_sym_BSLASHAcl] = ACTIONS(12251), + [anon_sym_BSLASHaclp] = ACTIONS(12251), + [anon_sym_BSLASHAclp] = ACTIONS(12251), + [anon_sym_BSLASHacf] = ACTIONS(12251), + [anon_sym_BSLASHAcf] = ACTIONS(12251), + [anon_sym_BSLASHacfp] = ACTIONS(12251), + [anon_sym_BSLASHAcfp] = ACTIONS(12251), + [anon_sym_BSLASHac] = ACTIONS(12251), + [anon_sym_BSLASHAc] = ACTIONS(12251), + [anon_sym_BSLASHacp] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12251), + [anon_sym_BSLASHcolor] = ACTIONS(12251), + [anon_sym_BSLASHcolorbox] = ACTIONS(12251), + [anon_sym_BSLASHtextcolor] = ACTIONS(12251), + [anon_sym_BSLASHpagecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12251), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12251), + }, + [534] = { + [ts_builtin_sym_end] = ACTIONS(12253), + [sym_generic_command_name] = ACTIONS(12255), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12255), + [aux_sym_chapter_token1] = ACTIONS(12255), + [aux_sym_section_token1] = ACTIONS(12255), + [aux_sym_subsection_token1] = ACTIONS(12255), + [aux_sym_subsubsection_token1] = ACTIONS(12255), + [aux_sym_paragraph_token1] = ACTIONS(12255), + [aux_sym_subparagraph_token1] = ACTIONS(12255), + [anon_sym_BSLASHitem] = ACTIONS(12255), + [anon_sym_LBRACK] = ACTIONS(12253), + [anon_sym_RBRACK] = ACTIONS(12253), + [anon_sym_LBRACE] = ACTIONS(12253), + [anon_sym_RBRACE] = ACTIONS(12253), + [anon_sym_LPAREN] = ACTIONS(12253), + [anon_sym_RPAREN] = ACTIONS(12253), + [anon_sym_COMMA] = ACTIONS(12253), + [anon_sym_EQ] = ACTIONS(12253), + [sym_word] = ACTIONS(12253), + [sym_param] = ACTIONS(12253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12253), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12253), + [anon_sym_DOLLAR] = ACTIONS(12255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12253), + [anon_sym_BSLASHbegin] = ACTIONS(12255), + [anon_sym_BSLASHcaption] = ACTIONS(12255), + [anon_sym_BSLASHcite] = ACTIONS(12255), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCite] = ACTIONS(12255), + [anon_sym_BSLASHnocite] = ACTIONS(12255), + [anon_sym_BSLASHcitet] = ACTIONS(12255), + [anon_sym_BSLASHcitep] = ACTIONS(12255), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteauthor] = ACTIONS(12255), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12255), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitetitle] = ACTIONS(12255), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteyear] = ACTIONS(12255), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitedate] = ACTIONS(12255), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteurl] = ACTIONS(12255), + [anon_sym_BSLASHfullcite] = ACTIONS(12255), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12255), + [anon_sym_BSLASHcitealt] = ACTIONS(12255), + [anon_sym_BSLASHcitealp] = ACTIONS(12255), + [anon_sym_BSLASHcitetext] = ACTIONS(12255), + [anon_sym_BSLASHparencite] = ACTIONS(12255), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHParencite] = ACTIONS(12255), + [anon_sym_BSLASHfootcite] = ACTIONS(12255), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12255), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12255), + [anon_sym_BSLASHtextcite] = ACTIONS(12255), + [anon_sym_BSLASHTextcite] = ACTIONS(12255), + [anon_sym_BSLASHsmartcite] = ACTIONS(12255), + [anon_sym_BSLASHSmartcite] = ACTIONS(12255), + [anon_sym_BSLASHsupercite] = ACTIONS(12255), + [anon_sym_BSLASHautocite] = ACTIONS(12255), + [anon_sym_BSLASHAutocite] = ACTIONS(12255), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHvolcite] = ACTIONS(12255), + [anon_sym_BSLASHVolcite] = ACTIONS(12255), + [anon_sym_BSLASHpvolcite] = ACTIONS(12255), + [anon_sym_BSLASHPvolcite] = ACTIONS(12255), + [anon_sym_BSLASHfvolcite] = ACTIONS(12255), + [anon_sym_BSLASHftvolcite] = ACTIONS(12255), + [anon_sym_BSLASHsvolcite] = ACTIONS(12255), + [anon_sym_BSLASHSvolcite] = ACTIONS(12255), + [anon_sym_BSLASHtvolcite] = ACTIONS(12255), + [anon_sym_BSLASHTvolcite] = ACTIONS(12255), + [anon_sym_BSLASHavolcite] = ACTIONS(12255), + [anon_sym_BSLASHAvolcite] = ACTIONS(12255), + [anon_sym_BSLASHnotecite] = ACTIONS(12255), + [anon_sym_BSLASHpnotecite] = ACTIONS(12255), + [anon_sym_BSLASHPnotecite] = ACTIONS(12255), + [anon_sym_BSLASHfnotecite] = ACTIONS(12255), + [anon_sym_BSLASHusepackage] = ACTIONS(12255), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12255), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12255), + [anon_sym_BSLASHinclude] = ACTIONS(12255), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12255), + [anon_sym_BSLASHinput] = ACTIONS(12255), + [anon_sym_BSLASHsubfile] = ACTIONS(12255), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12255), + [anon_sym_BSLASHbibliography] = ACTIONS(12255), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12255), + [anon_sym_BSLASHincludesvg] = ACTIONS(12255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12255), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12255), + [anon_sym_BSLASHimport] = ACTIONS(12255), + [anon_sym_BSLASHsubimport] = ACTIONS(12255), + [anon_sym_BSLASHinputfrom] = ACTIONS(12255), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12255), + [anon_sym_BSLASHincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHlabel] = ACTIONS(12255), + [anon_sym_BSLASHref] = ACTIONS(12255), + [anon_sym_BSLASHvref] = ACTIONS(12255), + [anon_sym_BSLASHVref] = ACTIONS(12255), + [anon_sym_BSLASHautoref] = ACTIONS(12255), + [anon_sym_BSLASHpageref] = ACTIONS(12255), + [anon_sym_BSLASHcref] = ACTIONS(12255), + [anon_sym_BSLASHCref] = ACTIONS(12255), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnameCref] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHlabelcref] = ACTIONS(12255), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12255), + [anon_sym_BSLASHeqref] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange] = ACTIONS(12255), + [anon_sym_BSLASHCrefrange] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewlabel] = ACTIONS(12255), + [anon_sym_BSLASHnewcommand] = ACTIONS(12255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12255), + [anon_sym_BSLASHgls] = ACTIONS(12255), + [anon_sym_BSLASHGls] = ACTIONS(12255), + [anon_sym_BSLASHGLS] = ACTIONS(12255), + [anon_sym_BSLASHglspl] = ACTIONS(12255), + [anon_sym_BSLASHGlspl] = ACTIONS(12255), + [anon_sym_BSLASHGLSpl] = ACTIONS(12255), + [anon_sym_BSLASHglsdisp] = ACTIONS(12255), + [anon_sym_BSLASHglslink] = ACTIONS(12255), + [anon_sym_BSLASHglstext] = ACTIONS(12255), + [anon_sym_BSLASHGlstext] = ACTIONS(12255), + [anon_sym_BSLASHGLStext] = ACTIONS(12255), + [anon_sym_BSLASHglsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12255), + [anon_sym_BSLASHglsplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSplural] = ACTIONS(12255), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHglsname] = ACTIONS(12255), + [anon_sym_BSLASHGlsname] = ACTIONS(12255), + [anon_sym_BSLASHGLSname] = ACTIONS(12255), + [anon_sym_BSLASHglssymbol] = ACTIONS(12255), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12255), + [anon_sym_BSLASHglsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12255), + [anon_sym_BSLASHglsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12255), + [anon_sym_BSLASHglsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12255), + [anon_sym_BSLASHglsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12255), + [anon_sym_BSLASHglsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12255), + [anon_sym_BSLASHnewacronym] = ACTIONS(12255), + [anon_sym_BSLASHacrshort] = ACTIONS(12255), + [anon_sym_BSLASHAcrshort] = ACTIONS(12255), + [anon_sym_BSLASHACRshort] = ACTIONS(12255), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12255), + [anon_sym_BSLASHacrlong] = ACTIONS(12255), + [anon_sym_BSLASHAcrlong] = ACTIONS(12255), + [anon_sym_BSLASHACRlong] = ACTIONS(12255), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12255), + [anon_sym_BSLASHacrfull] = ACTIONS(12255), + [anon_sym_BSLASHAcrfull] = ACTIONS(12255), + [anon_sym_BSLASHACRfull] = ACTIONS(12255), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12255), + [anon_sym_BSLASHacs] = ACTIONS(12255), + [anon_sym_BSLASHAcs] = ACTIONS(12255), + [anon_sym_BSLASHacsp] = ACTIONS(12255), + [anon_sym_BSLASHAcsp] = ACTIONS(12255), + [anon_sym_BSLASHacl] = ACTIONS(12255), + [anon_sym_BSLASHAcl] = ACTIONS(12255), + [anon_sym_BSLASHaclp] = ACTIONS(12255), + [anon_sym_BSLASHAclp] = ACTIONS(12255), + [anon_sym_BSLASHacf] = ACTIONS(12255), + [anon_sym_BSLASHAcf] = ACTIONS(12255), + [anon_sym_BSLASHacfp] = ACTIONS(12255), + [anon_sym_BSLASHAcfp] = ACTIONS(12255), + [anon_sym_BSLASHac] = ACTIONS(12255), + [anon_sym_BSLASHAc] = ACTIONS(12255), + [anon_sym_BSLASHacp] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12255), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12255), + [anon_sym_BSLASHcolor] = ACTIONS(12255), + [anon_sym_BSLASHcolorbox] = ACTIONS(12255), + [anon_sym_BSLASHtextcolor] = ACTIONS(12255), + [anon_sym_BSLASHpagecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12255), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12255), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12255), + }, + [535] = { + [ts_builtin_sym_end] = ACTIONS(12257), + [sym_generic_command_name] = ACTIONS(12259), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12259), + [aux_sym_chapter_token1] = ACTIONS(12259), + [aux_sym_section_token1] = ACTIONS(12259), + [aux_sym_subsection_token1] = ACTIONS(12259), + [aux_sym_subsubsection_token1] = ACTIONS(12259), + [aux_sym_paragraph_token1] = ACTIONS(12259), + [aux_sym_subparagraph_token1] = ACTIONS(12259), + [anon_sym_BSLASHitem] = ACTIONS(12259), + [anon_sym_LBRACK] = ACTIONS(12257), + [anon_sym_RBRACK] = ACTIONS(12257), + [anon_sym_LBRACE] = ACTIONS(12257), + [anon_sym_RBRACE] = ACTIONS(12257), + [anon_sym_LPAREN] = ACTIONS(12257), + [anon_sym_RPAREN] = ACTIONS(12257), + [anon_sym_COMMA] = ACTIONS(12257), + [anon_sym_EQ] = ACTIONS(12257), + [sym_word] = ACTIONS(12257), + [sym_param] = ACTIONS(12257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12257), + [anon_sym_DOLLAR] = ACTIONS(12259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12257), + [anon_sym_BSLASHbegin] = ACTIONS(12259), + [anon_sym_BSLASHcaption] = ACTIONS(12259), + [anon_sym_BSLASHcite] = ACTIONS(12259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCite] = ACTIONS(12259), + [anon_sym_BSLASHnocite] = ACTIONS(12259), + [anon_sym_BSLASHcitet] = ACTIONS(12259), + [anon_sym_BSLASHcitep] = ACTIONS(12259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteauthor] = ACTIONS(12259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitetitle] = ACTIONS(12259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteyear] = ACTIONS(12259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitedate] = ACTIONS(12259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteurl] = ACTIONS(12259), + [anon_sym_BSLASHfullcite] = ACTIONS(12259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12259), + [anon_sym_BSLASHcitealt] = ACTIONS(12259), + [anon_sym_BSLASHcitealp] = ACTIONS(12259), + [anon_sym_BSLASHcitetext] = ACTIONS(12259), + [anon_sym_BSLASHparencite] = ACTIONS(12259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHParencite] = ACTIONS(12259), + [anon_sym_BSLASHfootcite] = ACTIONS(12259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12259), + [anon_sym_BSLASHtextcite] = ACTIONS(12259), + [anon_sym_BSLASHTextcite] = ACTIONS(12259), + [anon_sym_BSLASHsmartcite] = ACTIONS(12259), + [anon_sym_BSLASHSmartcite] = ACTIONS(12259), + [anon_sym_BSLASHsupercite] = ACTIONS(12259), + [anon_sym_BSLASHautocite] = ACTIONS(12259), + [anon_sym_BSLASHAutocite] = ACTIONS(12259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHvolcite] = ACTIONS(12259), + [anon_sym_BSLASHVolcite] = ACTIONS(12259), + [anon_sym_BSLASHpvolcite] = ACTIONS(12259), + [anon_sym_BSLASHPvolcite] = ACTIONS(12259), + [anon_sym_BSLASHfvolcite] = ACTIONS(12259), + [anon_sym_BSLASHftvolcite] = ACTIONS(12259), + [anon_sym_BSLASHsvolcite] = ACTIONS(12259), + [anon_sym_BSLASHSvolcite] = ACTIONS(12259), + [anon_sym_BSLASHtvolcite] = ACTIONS(12259), + [anon_sym_BSLASHTvolcite] = ACTIONS(12259), + [anon_sym_BSLASHavolcite] = ACTIONS(12259), + [anon_sym_BSLASHAvolcite] = ACTIONS(12259), + [anon_sym_BSLASHnotecite] = ACTIONS(12259), + [anon_sym_BSLASHpnotecite] = ACTIONS(12259), + [anon_sym_BSLASHPnotecite] = ACTIONS(12259), + [anon_sym_BSLASHfnotecite] = ACTIONS(12259), + [anon_sym_BSLASHusepackage] = ACTIONS(12259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12259), + [anon_sym_BSLASHinclude] = ACTIONS(12259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12259), + [anon_sym_BSLASHinput] = ACTIONS(12259), + [anon_sym_BSLASHsubfile] = ACTIONS(12259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12259), + [anon_sym_BSLASHbibliography] = ACTIONS(12259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12259), + [anon_sym_BSLASHincludesvg] = ACTIONS(12259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12259), + [anon_sym_BSLASHimport] = ACTIONS(12259), + [anon_sym_BSLASHsubimport] = ACTIONS(12259), + [anon_sym_BSLASHinputfrom] = ACTIONS(12259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12259), + [anon_sym_BSLASHincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHlabel] = ACTIONS(12259), + [anon_sym_BSLASHref] = ACTIONS(12259), + [anon_sym_BSLASHvref] = ACTIONS(12259), + [anon_sym_BSLASHVref] = ACTIONS(12259), + [anon_sym_BSLASHautoref] = ACTIONS(12259), + [anon_sym_BSLASHpageref] = ACTIONS(12259), + [anon_sym_BSLASHcref] = ACTIONS(12259), + [anon_sym_BSLASHCref] = ACTIONS(12259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnameCref] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHlabelcref] = ACTIONS(12259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12259), + [anon_sym_BSLASHeqref] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange] = ACTIONS(12259), + [anon_sym_BSLASHCrefrange] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewlabel] = ACTIONS(12259), + [anon_sym_BSLASHnewcommand] = ACTIONS(12259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12259), + [anon_sym_BSLASHgls] = ACTIONS(12259), + [anon_sym_BSLASHGls] = ACTIONS(12259), + [anon_sym_BSLASHGLS] = ACTIONS(12259), + [anon_sym_BSLASHglspl] = ACTIONS(12259), + [anon_sym_BSLASHGlspl] = ACTIONS(12259), + [anon_sym_BSLASHGLSpl] = ACTIONS(12259), + [anon_sym_BSLASHglsdisp] = ACTIONS(12259), + [anon_sym_BSLASHglslink] = ACTIONS(12259), + [anon_sym_BSLASHglstext] = ACTIONS(12259), + [anon_sym_BSLASHGlstext] = ACTIONS(12259), + [anon_sym_BSLASHGLStext] = ACTIONS(12259), + [anon_sym_BSLASHglsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12259), + [anon_sym_BSLASHglsplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSplural] = ACTIONS(12259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHglsname] = ACTIONS(12259), + [anon_sym_BSLASHGlsname] = ACTIONS(12259), + [anon_sym_BSLASHGLSname] = ACTIONS(12259), + [anon_sym_BSLASHglssymbol] = ACTIONS(12259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12259), + [anon_sym_BSLASHglsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12259), + [anon_sym_BSLASHglsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12259), + [anon_sym_BSLASHglsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12259), + [anon_sym_BSLASHglsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12259), + [anon_sym_BSLASHglsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12259), + [anon_sym_BSLASHnewacronym] = ACTIONS(12259), + [anon_sym_BSLASHacrshort] = ACTIONS(12259), + [anon_sym_BSLASHAcrshort] = ACTIONS(12259), + [anon_sym_BSLASHACRshort] = ACTIONS(12259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12259), + [anon_sym_BSLASHacrlong] = ACTIONS(12259), + [anon_sym_BSLASHAcrlong] = ACTIONS(12259), + [anon_sym_BSLASHACRlong] = ACTIONS(12259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12259), + [anon_sym_BSLASHacrfull] = ACTIONS(12259), + [anon_sym_BSLASHAcrfull] = ACTIONS(12259), + [anon_sym_BSLASHACRfull] = ACTIONS(12259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12259), + [anon_sym_BSLASHacs] = ACTIONS(12259), + [anon_sym_BSLASHAcs] = ACTIONS(12259), + [anon_sym_BSLASHacsp] = ACTIONS(12259), + [anon_sym_BSLASHAcsp] = ACTIONS(12259), + [anon_sym_BSLASHacl] = ACTIONS(12259), + [anon_sym_BSLASHAcl] = ACTIONS(12259), + [anon_sym_BSLASHaclp] = ACTIONS(12259), + [anon_sym_BSLASHAclp] = ACTIONS(12259), + [anon_sym_BSLASHacf] = ACTIONS(12259), + [anon_sym_BSLASHAcf] = ACTIONS(12259), + [anon_sym_BSLASHacfp] = ACTIONS(12259), + [anon_sym_BSLASHAcfp] = ACTIONS(12259), + [anon_sym_BSLASHac] = ACTIONS(12259), + [anon_sym_BSLASHAc] = ACTIONS(12259), + [anon_sym_BSLASHacp] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12259), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12259), + [anon_sym_BSLASHcolor] = ACTIONS(12259), + [anon_sym_BSLASHcolorbox] = ACTIONS(12259), + [anon_sym_BSLASHtextcolor] = ACTIONS(12259), + [anon_sym_BSLASHpagecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12259), + }, + [536] = { + [ts_builtin_sym_end] = ACTIONS(12261), + [sym_generic_command_name] = ACTIONS(12263), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12263), + [aux_sym_chapter_token1] = ACTIONS(12263), + [aux_sym_section_token1] = ACTIONS(12263), + [aux_sym_subsection_token1] = ACTIONS(12263), + [aux_sym_subsubsection_token1] = ACTIONS(12263), + [aux_sym_paragraph_token1] = ACTIONS(12263), + [aux_sym_subparagraph_token1] = ACTIONS(12263), + [anon_sym_BSLASHitem] = ACTIONS(12263), + [anon_sym_LBRACK] = ACTIONS(12261), + [anon_sym_RBRACK] = ACTIONS(12261), + [anon_sym_LBRACE] = ACTIONS(12261), + [anon_sym_RBRACE] = ACTIONS(12261), + [anon_sym_LPAREN] = ACTIONS(12261), + [anon_sym_RPAREN] = ACTIONS(12261), + [anon_sym_COMMA] = ACTIONS(12261), + [anon_sym_EQ] = ACTIONS(12261), + [sym_word] = ACTIONS(12261), + [sym_param] = ACTIONS(12261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12261), + [anon_sym_DOLLAR] = ACTIONS(12263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12261), + [anon_sym_BSLASHbegin] = ACTIONS(12263), + [anon_sym_BSLASHcaption] = ACTIONS(12263), + [anon_sym_BSLASHcite] = ACTIONS(12263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCite] = ACTIONS(12263), + [anon_sym_BSLASHnocite] = ACTIONS(12263), + [anon_sym_BSLASHcitet] = ACTIONS(12263), + [anon_sym_BSLASHcitep] = ACTIONS(12263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteauthor] = ACTIONS(12263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitetitle] = ACTIONS(12263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteyear] = ACTIONS(12263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitedate] = ACTIONS(12263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteurl] = ACTIONS(12263), + [anon_sym_BSLASHfullcite] = ACTIONS(12263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12263), + [anon_sym_BSLASHcitealt] = ACTIONS(12263), + [anon_sym_BSLASHcitealp] = ACTIONS(12263), + [anon_sym_BSLASHcitetext] = ACTIONS(12263), + [anon_sym_BSLASHparencite] = ACTIONS(12263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHParencite] = ACTIONS(12263), + [anon_sym_BSLASHfootcite] = ACTIONS(12263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12263), + [anon_sym_BSLASHtextcite] = ACTIONS(12263), + [anon_sym_BSLASHTextcite] = ACTIONS(12263), + [anon_sym_BSLASHsmartcite] = ACTIONS(12263), + [anon_sym_BSLASHSmartcite] = ACTIONS(12263), + [anon_sym_BSLASHsupercite] = ACTIONS(12263), + [anon_sym_BSLASHautocite] = ACTIONS(12263), + [anon_sym_BSLASHAutocite] = ACTIONS(12263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHvolcite] = ACTIONS(12263), + [anon_sym_BSLASHVolcite] = ACTIONS(12263), + [anon_sym_BSLASHpvolcite] = ACTIONS(12263), + [anon_sym_BSLASHPvolcite] = ACTIONS(12263), + [anon_sym_BSLASHfvolcite] = ACTIONS(12263), + [anon_sym_BSLASHftvolcite] = ACTIONS(12263), + [anon_sym_BSLASHsvolcite] = ACTIONS(12263), + [anon_sym_BSLASHSvolcite] = ACTIONS(12263), + [anon_sym_BSLASHtvolcite] = ACTIONS(12263), + [anon_sym_BSLASHTvolcite] = ACTIONS(12263), + [anon_sym_BSLASHavolcite] = ACTIONS(12263), + [anon_sym_BSLASHAvolcite] = ACTIONS(12263), + [anon_sym_BSLASHnotecite] = ACTIONS(12263), + [anon_sym_BSLASHpnotecite] = ACTIONS(12263), + [anon_sym_BSLASHPnotecite] = ACTIONS(12263), + [anon_sym_BSLASHfnotecite] = ACTIONS(12263), + [anon_sym_BSLASHusepackage] = ACTIONS(12263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12263), + [anon_sym_BSLASHinclude] = ACTIONS(12263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12263), + [anon_sym_BSLASHinput] = ACTIONS(12263), + [anon_sym_BSLASHsubfile] = ACTIONS(12263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12263), + [anon_sym_BSLASHbibliography] = ACTIONS(12263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12263), + [anon_sym_BSLASHincludesvg] = ACTIONS(12263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12263), + [anon_sym_BSLASHimport] = ACTIONS(12263), + [anon_sym_BSLASHsubimport] = ACTIONS(12263), + [anon_sym_BSLASHinputfrom] = ACTIONS(12263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12263), + [anon_sym_BSLASHincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHlabel] = ACTIONS(12263), + [anon_sym_BSLASHref] = ACTIONS(12263), + [anon_sym_BSLASHvref] = ACTIONS(12263), + [anon_sym_BSLASHVref] = ACTIONS(12263), + [anon_sym_BSLASHautoref] = ACTIONS(12263), + [anon_sym_BSLASHpageref] = ACTIONS(12263), + [anon_sym_BSLASHcref] = ACTIONS(12263), + [anon_sym_BSLASHCref] = ACTIONS(12263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnameCref] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHlabelcref] = ACTIONS(12263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12263), + [anon_sym_BSLASHeqref] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange] = ACTIONS(12263), + [anon_sym_BSLASHCrefrange] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewlabel] = ACTIONS(12263), + [anon_sym_BSLASHnewcommand] = ACTIONS(12263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12263), + [anon_sym_BSLASHgls] = ACTIONS(12263), + [anon_sym_BSLASHGls] = ACTIONS(12263), + [anon_sym_BSLASHGLS] = ACTIONS(12263), + [anon_sym_BSLASHglspl] = ACTIONS(12263), + [anon_sym_BSLASHGlspl] = ACTIONS(12263), + [anon_sym_BSLASHGLSpl] = ACTIONS(12263), + [anon_sym_BSLASHglsdisp] = ACTIONS(12263), + [anon_sym_BSLASHglslink] = ACTIONS(12263), + [anon_sym_BSLASHglstext] = ACTIONS(12263), + [anon_sym_BSLASHGlstext] = ACTIONS(12263), + [anon_sym_BSLASHGLStext] = ACTIONS(12263), + [anon_sym_BSLASHglsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12263), + [anon_sym_BSLASHglsplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSplural] = ACTIONS(12263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHglsname] = ACTIONS(12263), + [anon_sym_BSLASHGlsname] = ACTIONS(12263), + [anon_sym_BSLASHGLSname] = ACTIONS(12263), + [anon_sym_BSLASHglssymbol] = ACTIONS(12263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12263), + [anon_sym_BSLASHglsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12263), + [anon_sym_BSLASHglsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12263), + [anon_sym_BSLASHglsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12263), + [anon_sym_BSLASHglsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12263), + [anon_sym_BSLASHglsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12263), + [anon_sym_BSLASHnewacronym] = ACTIONS(12263), + [anon_sym_BSLASHacrshort] = ACTIONS(12263), + [anon_sym_BSLASHAcrshort] = ACTIONS(12263), + [anon_sym_BSLASHACRshort] = ACTIONS(12263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12263), + [anon_sym_BSLASHacrlong] = ACTIONS(12263), + [anon_sym_BSLASHAcrlong] = ACTIONS(12263), + [anon_sym_BSLASHACRlong] = ACTIONS(12263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12263), + [anon_sym_BSLASHacrfull] = ACTIONS(12263), + [anon_sym_BSLASHAcrfull] = ACTIONS(12263), + [anon_sym_BSLASHACRfull] = ACTIONS(12263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12263), + [anon_sym_BSLASHacs] = ACTIONS(12263), + [anon_sym_BSLASHAcs] = ACTIONS(12263), + [anon_sym_BSLASHacsp] = ACTIONS(12263), + [anon_sym_BSLASHAcsp] = ACTIONS(12263), + [anon_sym_BSLASHacl] = ACTIONS(12263), + [anon_sym_BSLASHAcl] = ACTIONS(12263), + [anon_sym_BSLASHaclp] = ACTIONS(12263), + [anon_sym_BSLASHAclp] = ACTIONS(12263), + [anon_sym_BSLASHacf] = ACTIONS(12263), + [anon_sym_BSLASHAcf] = ACTIONS(12263), + [anon_sym_BSLASHacfp] = ACTIONS(12263), + [anon_sym_BSLASHAcfp] = ACTIONS(12263), + [anon_sym_BSLASHac] = ACTIONS(12263), + [anon_sym_BSLASHAc] = ACTIONS(12263), + [anon_sym_BSLASHacp] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12263), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12263), + [anon_sym_BSLASHcolor] = ACTIONS(12263), + [anon_sym_BSLASHcolorbox] = ACTIONS(12263), + [anon_sym_BSLASHtextcolor] = ACTIONS(12263), + [anon_sym_BSLASHpagecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12263), + }, + [537] = { + [ts_builtin_sym_end] = ACTIONS(12265), + [sym_generic_command_name] = ACTIONS(12267), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12267), + [aux_sym_chapter_token1] = ACTIONS(12267), + [aux_sym_section_token1] = ACTIONS(12267), + [aux_sym_subsection_token1] = ACTIONS(12267), + [aux_sym_subsubsection_token1] = ACTIONS(12267), + [aux_sym_paragraph_token1] = ACTIONS(12267), + [aux_sym_subparagraph_token1] = ACTIONS(12267), + [anon_sym_BSLASHitem] = ACTIONS(12267), + [anon_sym_LBRACK] = ACTIONS(12265), + [anon_sym_RBRACK] = ACTIONS(12265), + [anon_sym_LBRACE] = ACTIONS(12265), + [anon_sym_RBRACE] = ACTIONS(12265), + [anon_sym_LPAREN] = ACTIONS(12265), + [anon_sym_RPAREN] = ACTIONS(12265), + [anon_sym_COMMA] = ACTIONS(12265), + [anon_sym_EQ] = ACTIONS(12265), + [sym_word] = ACTIONS(12265), + [sym_param] = ACTIONS(12265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12265), + [anon_sym_DOLLAR] = ACTIONS(12267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12265), + [anon_sym_BSLASHbegin] = ACTIONS(12267), + [anon_sym_BSLASHcaption] = ACTIONS(12267), + [anon_sym_BSLASHcite] = ACTIONS(12267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCite] = ACTIONS(12267), + [anon_sym_BSLASHnocite] = ACTIONS(12267), + [anon_sym_BSLASHcitet] = ACTIONS(12267), + [anon_sym_BSLASHcitep] = ACTIONS(12267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteauthor] = ACTIONS(12267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitetitle] = ACTIONS(12267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteyear] = ACTIONS(12267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitedate] = ACTIONS(12267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteurl] = ACTIONS(12267), + [anon_sym_BSLASHfullcite] = ACTIONS(12267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12267), + [anon_sym_BSLASHcitealt] = ACTIONS(12267), + [anon_sym_BSLASHcitealp] = ACTIONS(12267), + [anon_sym_BSLASHcitetext] = ACTIONS(12267), + [anon_sym_BSLASHparencite] = ACTIONS(12267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHParencite] = ACTIONS(12267), + [anon_sym_BSLASHfootcite] = ACTIONS(12267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12267), + [anon_sym_BSLASHtextcite] = ACTIONS(12267), + [anon_sym_BSLASHTextcite] = ACTIONS(12267), + [anon_sym_BSLASHsmartcite] = ACTIONS(12267), + [anon_sym_BSLASHSmartcite] = ACTIONS(12267), + [anon_sym_BSLASHsupercite] = ACTIONS(12267), + [anon_sym_BSLASHautocite] = ACTIONS(12267), + [anon_sym_BSLASHAutocite] = ACTIONS(12267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHvolcite] = ACTIONS(12267), + [anon_sym_BSLASHVolcite] = ACTIONS(12267), + [anon_sym_BSLASHpvolcite] = ACTIONS(12267), + [anon_sym_BSLASHPvolcite] = ACTIONS(12267), + [anon_sym_BSLASHfvolcite] = ACTIONS(12267), + [anon_sym_BSLASHftvolcite] = ACTIONS(12267), + [anon_sym_BSLASHsvolcite] = ACTIONS(12267), + [anon_sym_BSLASHSvolcite] = ACTIONS(12267), + [anon_sym_BSLASHtvolcite] = ACTIONS(12267), + [anon_sym_BSLASHTvolcite] = ACTIONS(12267), + [anon_sym_BSLASHavolcite] = ACTIONS(12267), + [anon_sym_BSLASHAvolcite] = ACTIONS(12267), + [anon_sym_BSLASHnotecite] = ACTIONS(12267), + [anon_sym_BSLASHpnotecite] = ACTIONS(12267), + [anon_sym_BSLASHPnotecite] = ACTIONS(12267), + [anon_sym_BSLASHfnotecite] = ACTIONS(12267), + [anon_sym_BSLASHusepackage] = ACTIONS(12267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12267), + [anon_sym_BSLASHinclude] = ACTIONS(12267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12267), + [anon_sym_BSLASHinput] = ACTIONS(12267), + [anon_sym_BSLASHsubfile] = ACTIONS(12267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12267), + [anon_sym_BSLASHbibliography] = ACTIONS(12267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12267), + [anon_sym_BSLASHincludesvg] = ACTIONS(12267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12267), + [anon_sym_BSLASHimport] = ACTIONS(12267), + [anon_sym_BSLASHsubimport] = ACTIONS(12267), + [anon_sym_BSLASHinputfrom] = ACTIONS(12267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12267), + [anon_sym_BSLASHincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHlabel] = ACTIONS(12267), + [anon_sym_BSLASHref] = ACTIONS(12267), + [anon_sym_BSLASHvref] = ACTIONS(12267), + [anon_sym_BSLASHVref] = ACTIONS(12267), + [anon_sym_BSLASHautoref] = ACTIONS(12267), + [anon_sym_BSLASHpageref] = ACTIONS(12267), + [anon_sym_BSLASHcref] = ACTIONS(12267), + [anon_sym_BSLASHCref] = ACTIONS(12267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnameCref] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHlabelcref] = ACTIONS(12267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12267), + [anon_sym_BSLASHeqref] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange] = ACTIONS(12267), + [anon_sym_BSLASHCrefrange] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewlabel] = ACTIONS(12267), + [anon_sym_BSLASHnewcommand] = ACTIONS(12267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12267), + [anon_sym_BSLASHgls] = ACTIONS(12267), + [anon_sym_BSLASHGls] = ACTIONS(12267), + [anon_sym_BSLASHGLS] = ACTIONS(12267), + [anon_sym_BSLASHglspl] = ACTIONS(12267), + [anon_sym_BSLASHGlspl] = ACTIONS(12267), + [anon_sym_BSLASHGLSpl] = ACTIONS(12267), + [anon_sym_BSLASHglsdisp] = ACTIONS(12267), + [anon_sym_BSLASHglslink] = ACTIONS(12267), + [anon_sym_BSLASHglstext] = ACTIONS(12267), + [anon_sym_BSLASHGlstext] = ACTIONS(12267), + [anon_sym_BSLASHGLStext] = ACTIONS(12267), + [anon_sym_BSLASHglsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12267), + [anon_sym_BSLASHglsplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSplural] = ACTIONS(12267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHglsname] = ACTIONS(12267), + [anon_sym_BSLASHGlsname] = ACTIONS(12267), + [anon_sym_BSLASHGLSname] = ACTIONS(12267), + [anon_sym_BSLASHglssymbol] = ACTIONS(12267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12267), + [anon_sym_BSLASHglsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12267), + [anon_sym_BSLASHglsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12267), + [anon_sym_BSLASHglsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12267), + [anon_sym_BSLASHglsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12267), + [anon_sym_BSLASHglsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12267), + [anon_sym_BSLASHnewacronym] = ACTIONS(12267), + [anon_sym_BSLASHacrshort] = ACTIONS(12267), + [anon_sym_BSLASHAcrshort] = ACTIONS(12267), + [anon_sym_BSLASHACRshort] = ACTIONS(12267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12267), + [anon_sym_BSLASHacrlong] = ACTIONS(12267), + [anon_sym_BSLASHAcrlong] = ACTIONS(12267), + [anon_sym_BSLASHACRlong] = ACTIONS(12267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12267), + [anon_sym_BSLASHacrfull] = ACTIONS(12267), + [anon_sym_BSLASHAcrfull] = ACTIONS(12267), + [anon_sym_BSLASHACRfull] = ACTIONS(12267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12267), + [anon_sym_BSLASHacs] = ACTIONS(12267), + [anon_sym_BSLASHAcs] = ACTIONS(12267), + [anon_sym_BSLASHacsp] = ACTIONS(12267), + [anon_sym_BSLASHAcsp] = ACTIONS(12267), + [anon_sym_BSLASHacl] = ACTIONS(12267), + [anon_sym_BSLASHAcl] = ACTIONS(12267), + [anon_sym_BSLASHaclp] = ACTIONS(12267), + [anon_sym_BSLASHAclp] = ACTIONS(12267), + [anon_sym_BSLASHacf] = ACTIONS(12267), + [anon_sym_BSLASHAcf] = ACTIONS(12267), + [anon_sym_BSLASHacfp] = ACTIONS(12267), + [anon_sym_BSLASHAcfp] = ACTIONS(12267), + [anon_sym_BSLASHac] = ACTIONS(12267), + [anon_sym_BSLASHAc] = ACTIONS(12267), + [anon_sym_BSLASHacp] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12267), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12267), + [anon_sym_BSLASHcolor] = ACTIONS(12267), + [anon_sym_BSLASHcolorbox] = ACTIONS(12267), + [anon_sym_BSLASHtextcolor] = ACTIONS(12267), + [anon_sym_BSLASHpagecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12267), + }, + [538] = { + [ts_builtin_sym_end] = ACTIONS(12269), + [sym_generic_command_name] = ACTIONS(12271), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12271), + [aux_sym_chapter_token1] = ACTIONS(12271), + [aux_sym_section_token1] = ACTIONS(12271), + [aux_sym_subsection_token1] = ACTIONS(12271), + [aux_sym_subsubsection_token1] = ACTIONS(12271), + [aux_sym_paragraph_token1] = ACTIONS(12271), + [aux_sym_subparagraph_token1] = ACTIONS(12271), + [anon_sym_BSLASHitem] = ACTIONS(12271), + [anon_sym_LBRACK] = ACTIONS(12269), + [anon_sym_RBRACK] = ACTIONS(12269), + [anon_sym_LBRACE] = ACTIONS(12269), + [anon_sym_RBRACE] = ACTIONS(12269), + [anon_sym_LPAREN] = ACTIONS(12269), + [anon_sym_RPAREN] = ACTIONS(12269), + [anon_sym_COMMA] = ACTIONS(12269), + [anon_sym_EQ] = ACTIONS(12269), + [sym_word] = ACTIONS(12269), + [sym_param] = ACTIONS(12269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12269), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12269), + [anon_sym_DOLLAR] = ACTIONS(12271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12269), + [anon_sym_BSLASHbegin] = ACTIONS(12271), + [anon_sym_BSLASHcaption] = ACTIONS(12271), + [anon_sym_BSLASHcite] = ACTIONS(12271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCite] = ACTIONS(12271), + [anon_sym_BSLASHnocite] = ACTIONS(12271), + [anon_sym_BSLASHcitet] = ACTIONS(12271), + [anon_sym_BSLASHcitep] = ACTIONS(12271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteauthor] = ACTIONS(12271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitetitle] = ACTIONS(12271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteyear] = ACTIONS(12271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitedate] = ACTIONS(12271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteurl] = ACTIONS(12271), + [anon_sym_BSLASHfullcite] = ACTIONS(12271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12271), + [anon_sym_BSLASHcitealt] = ACTIONS(12271), + [anon_sym_BSLASHcitealp] = ACTIONS(12271), + [anon_sym_BSLASHcitetext] = ACTIONS(12271), + [anon_sym_BSLASHparencite] = ACTIONS(12271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHParencite] = ACTIONS(12271), + [anon_sym_BSLASHfootcite] = ACTIONS(12271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12271), + [anon_sym_BSLASHtextcite] = ACTIONS(12271), + [anon_sym_BSLASHTextcite] = ACTIONS(12271), + [anon_sym_BSLASHsmartcite] = ACTIONS(12271), + [anon_sym_BSLASHSmartcite] = ACTIONS(12271), + [anon_sym_BSLASHsupercite] = ACTIONS(12271), + [anon_sym_BSLASHautocite] = ACTIONS(12271), + [anon_sym_BSLASHAutocite] = ACTIONS(12271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHvolcite] = ACTIONS(12271), + [anon_sym_BSLASHVolcite] = ACTIONS(12271), + [anon_sym_BSLASHpvolcite] = ACTIONS(12271), + [anon_sym_BSLASHPvolcite] = ACTIONS(12271), + [anon_sym_BSLASHfvolcite] = ACTIONS(12271), + [anon_sym_BSLASHftvolcite] = ACTIONS(12271), + [anon_sym_BSLASHsvolcite] = ACTIONS(12271), + [anon_sym_BSLASHSvolcite] = ACTIONS(12271), + [anon_sym_BSLASHtvolcite] = ACTIONS(12271), + [anon_sym_BSLASHTvolcite] = ACTIONS(12271), + [anon_sym_BSLASHavolcite] = ACTIONS(12271), + [anon_sym_BSLASHAvolcite] = ACTIONS(12271), + [anon_sym_BSLASHnotecite] = ACTIONS(12271), + [anon_sym_BSLASHpnotecite] = ACTIONS(12271), + [anon_sym_BSLASHPnotecite] = ACTIONS(12271), + [anon_sym_BSLASHfnotecite] = ACTIONS(12271), + [anon_sym_BSLASHusepackage] = ACTIONS(12271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12271), + [anon_sym_BSLASHinclude] = ACTIONS(12271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12271), + [anon_sym_BSLASHinput] = ACTIONS(12271), + [anon_sym_BSLASHsubfile] = ACTIONS(12271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12271), + [anon_sym_BSLASHbibliography] = ACTIONS(12271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12271), + [anon_sym_BSLASHincludesvg] = ACTIONS(12271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12271), + [anon_sym_BSLASHimport] = ACTIONS(12271), + [anon_sym_BSLASHsubimport] = ACTIONS(12271), + [anon_sym_BSLASHinputfrom] = ACTIONS(12271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12271), + [anon_sym_BSLASHincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHlabel] = ACTIONS(12271), + [anon_sym_BSLASHref] = ACTIONS(12271), + [anon_sym_BSLASHvref] = ACTIONS(12271), + [anon_sym_BSLASHVref] = ACTIONS(12271), + [anon_sym_BSLASHautoref] = ACTIONS(12271), + [anon_sym_BSLASHpageref] = ACTIONS(12271), + [anon_sym_BSLASHcref] = ACTIONS(12271), + [anon_sym_BSLASHCref] = ACTIONS(12271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnameCref] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHlabelcref] = ACTIONS(12271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12271), + [anon_sym_BSLASHeqref] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange] = ACTIONS(12271), + [anon_sym_BSLASHCrefrange] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewlabel] = ACTIONS(12271), + [anon_sym_BSLASHnewcommand] = ACTIONS(12271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12271), + [anon_sym_BSLASHgls] = ACTIONS(12271), + [anon_sym_BSLASHGls] = ACTIONS(12271), + [anon_sym_BSLASHGLS] = ACTIONS(12271), + [anon_sym_BSLASHglspl] = ACTIONS(12271), + [anon_sym_BSLASHGlspl] = ACTIONS(12271), + [anon_sym_BSLASHGLSpl] = ACTIONS(12271), + [anon_sym_BSLASHglsdisp] = ACTIONS(12271), + [anon_sym_BSLASHglslink] = ACTIONS(12271), + [anon_sym_BSLASHglstext] = ACTIONS(12271), + [anon_sym_BSLASHGlstext] = ACTIONS(12271), + [anon_sym_BSLASHGLStext] = ACTIONS(12271), + [anon_sym_BSLASHglsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12271), + [anon_sym_BSLASHglsplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSplural] = ACTIONS(12271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHglsname] = ACTIONS(12271), + [anon_sym_BSLASHGlsname] = ACTIONS(12271), + [anon_sym_BSLASHGLSname] = ACTIONS(12271), + [anon_sym_BSLASHglssymbol] = ACTIONS(12271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12271), + [anon_sym_BSLASHglsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12271), + [anon_sym_BSLASHglsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12271), + [anon_sym_BSLASHglsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12271), + [anon_sym_BSLASHglsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12271), + [anon_sym_BSLASHglsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12271), + [anon_sym_BSLASHnewacronym] = ACTIONS(12271), + [anon_sym_BSLASHacrshort] = ACTIONS(12271), + [anon_sym_BSLASHAcrshort] = ACTIONS(12271), + [anon_sym_BSLASHACRshort] = ACTIONS(12271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12271), + [anon_sym_BSLASHacrlong] = ACTIONS(12271), + [anon_sym_BSLASHAcrlong] = ACTIONS(12271), + [anon_sym_BSLASHACRlong] = ACTIONS(12271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12271), + [anon_sym_BSLASHacrfull] = ACTIONS(12271), + [anon_sym_BSLASHAcrfull] = ACTIONS(12271), + [anon_sym_BSLASHACRfull] = ACTIONS(12271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12271), + [anon_sym_BSLASHacs] = ACTIONS(12271), + [anon_sym_BSLASHAcs] = ACTIONS(12271), + [anon_sym_BSLASHacsp] = ACTIONS(12271), + [anon_sym_BSLASHAcsp] = ACTIONS(12271), + [anon_sym_BSLASHacl] = ACTIONS(12271), + [anon_sym_BSLASHAcl] = ACTIONS(12271), + [anon_sym_BSLASHaclp] = ACTIONS(12271), + [anon_sym_BSLASHAclp] = ACTIONS(12271), + [anon_sym_BSLASHacf] = ACTIONS(12271), + [anon_sym_BSLASHAcf] = ACTIONS(12271), + [anon_sym_BSLASHacfp] = ACTIONS(12271), + [anon_sym_BSLASHAcfp] = ACTIONS(12271), + [anon_sym_BSLASHac] = ACTIONS(12271), + [anon_sym_BSLASHAc] = ACTIONS(12271), + [anon_sym_BSLASHacp] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12271), + [anon_sym_BSLASHcolor] = ACTIONS(12271), + [anon_sym_BSLASHcolorbox] = ACTIONS(12271), + [anon_sym_BSLASHtextcolor] = ACTIONS(12271), + [anon_sym_BSLASHpagecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12271), + }, + [539] = { + [ts_builtin_sym_end] = ACTIONS(12273), + [sym_generic_command_name] = ACTIONS(12275), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12275), + [aux_sym_chapter_token1] = ACTIONS(12275), + [aux_sym_section_token1] = ACTIONS(12275), + [aux_sym_subsection_token1] = ACTIONS(12275), + [aux_sym_subsubsection_token1] = ACTIONS(12275), + [aux_sym_paragraph_token1] = ACTIONS(12275), + [aux_sym_subparagraph_token1] = ACTIONS(12275), + [anon_sym_BSLASHitem] = ACTIONS(12275), + [anon_sym_LBRACK] = ACTIONS(12273), + [anon_sym_RBRACK] = ACTIONS(12273), + [anon_sym_LBRACE] = ACTIONS(12273), + [anon_sym_RBRACE] = ACTIONS(12273), + [anon_sym_LPAREN] = ACTIONS(12273), + [anon_sym_RPAREN] = ACTIONS(12273), + [anon_sym_COMMA] = ACTIONS(12273), + [anon_sym_EQ] = ACTIONS(12273), + [sym_word] = ACTIONS(12273), + [sym_param] = ACTIONS(12273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12273), + [anon_sym_DOLLAR] = ACTIONS(12275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12273), + [anon_sym_BSLASHbegin] = ACTIONS(12275), + [anon_sym_BSLASHcaption] = ACTIONS(12275), + [anon_sym_BSLASHcite] = ACTIONS(12275), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCite] = ACTIONS(12275), + [anon_sym_BSLASHnocite] = ACTIONS(12275), + [anon_sym_BSLASHcitet] = ACTIONS(12275), + [anon_sym_BSLASHcitep] = ACTIONS(12275), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteauthor] = ACTIONS(12275), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12275), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitetitle] = ACTIONS(12275), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteyear] = ACTIONS(12275), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitedate] = ACTIONS(12275), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteurl] = ACTIONS(12275), + [anon_sym_BSLASHfullcite] = ACTIONS(12275), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12275), + [anon_sym_BSLASHcitealt] = ACTIONS(12275), + [anon_sym_BSLASHcitealp] = ACTIONS(12275), + [anon_sym_BSLASHcitetext] = ACTIONS(12275), + [anon_sym_BSLASHparencite] = ACTIONS(12275), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHParencite] = ACTIONS(12275), + [anon_sym_BSLASHfootcite] = ACTIONS(12275), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12275), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12275), + [anon_sym_BSLASHtextcite] = ACTIONS(12275), + [anon_sym_BSLASHTextcite] = ACTIONS(12275), + [anon_sym_BSLASHsmartcite] = ACTIONS(12275), + [anon_sym_BSLASHSmartcite] = ACTIONS(12275), + [anon_sym_BSLASHsupercite] = ACTIONS(12275), + [anon_sym_BSLASHautocite] = ACTIONS(12275), + [anon_sym_BSLASHAutocite] = ACTIONS(12275), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHvolcite] = ACTIONS(12275), + [anon_sym_BSLASHVolcite] = ACTIONS(12275), + [anon_sym_BSLASHpvolcite] = ACTIONS(12275), + [anon_sym_BSLASHPvolcite] = ACTIONS(12275), + [anon_sym_BSLASHfvolcite] = ACTIONS(12275), + [anon_sym_BSLASHftvolcite] = ACTIONS(12275), + [anon_sym_BSLASHsvolcite] = ACTIONS(12275), + [anon_sym_BSLASHSvolcite] = ACTIONS(12275), + [anon_sym_BSLASHtvolcite] = ACTIONS(12275), + [anon_sym_BSLASHTvolcite] = ACTIONS(12275), + [anon_sym_BSLASHavolcite] = ACTIONS(12275), + [anon_sym_BSLASHAvolcite] = ACTIONS(12275), + [anon_sym_BSLASHnotecite] = ACTIONS(12275), + [anon_sym_BSLASHpnotecite] = ACTIONS(12275), + [anon_sym_BSLASHPnotecite] = ACTIONS(12275), + [anon_sym_BSLASHfnotecite] = ACTIONS(12275), + [anon_sym_BSLASHusepackage] = ACTIONS(12275), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12275), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12275), + [anon_sym_BSLASHinclude] = ACTIONS(12275), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12275), + [anon_sym_BSLASHinput] = ACTIONS(12275), + [anon_sym_BSLASHsubfile] = ACTIONS(12275), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12275), + [anon_sym_BSLASHbibliography] = ACTIONS(12275), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12275), + [anon_sym_BSLASHincludesvg] = ACTIONS(12275), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12275), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12275), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12275), + [anon_sym_BSLASHimport] = ACTIONS(12275), + [anon_sym_BSLASHsubimport] = ACTIONS(12275), + [anon_sym_BSLASHinputfrom] = ACTIONS(12275), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12275), + [anon_sym_BSLASHincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHlabel] = ACTIONS(12275), + [anon_sym_BSLASHref] = ACTIONS(12275), + [anon_sym_BSLASHvref] = ACTIONS(12275), + [anon_sym_BSLASHVref] = ACTIONS(12275), + [anon_sym_BSLASHautoref] = ACTIONS(12275), + [anon_sym_BSLASHpageref] = ACTIONS(12275), + [anon_sym_BSLASHcref] = ACTIONS(12275), + [anon_sym_BSLASHCref] = ACTIONS(12275), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnameCref] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHlabelcref] = ACTIONS(12275), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12275), + [anon_sym_BSLASHeqref] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange] = ACTIONS(12275), + [anon_sym_BSLASHCrefrange] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewlabel] = ACTIONS(12275), + [anon_sym_BSLASHnewcommand] = ACTIONS(12275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12275), + [anon_sym_BSLASHgls] = ACTIONS(12275), + [anon_sym_BSLASHGls] = ACTIONS(12275), + [anon_sym_BSLASHGLS] = ACTIONS(12275), + [anon_sym_BSLASHglspl] = ACTIONS(12275), + [anon_sym_BSLASHGlspl] = ACTIONS(12275), + [anon_sym_BSLASHGLSpl] = ACTIONS(12275), + [anon_sym_BSLASHglsdisp] = ACTIONS(12275), + [anon_sym_BSLASHglslink] = ACTIONS(12275), + [anon_sym_BSLASHglstext] = ACTIONS(12275), + [anon_sym_BSLASHGlstext] = ACTIONS(12275), + [anon_sym_BSLASHGLStext] = ACTIONS(12275), + [anon_sym_BSLASHglsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12275), + [anon_sym_BSLASHglsplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSplural] = ACTIONS(12275), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHglsname] = ACTIONS(12275), + [anon_sym_BSLASHGlsname] = ACTIONS(12275), + [anon_sym_BSLASHGLSname] = ACTIONS(12275), + [anon_sym_BSLASHglssymbol] = ACTIONS(12275), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12275), + [anon_sym_BSLASHglsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12275), + [anon_sym_BSLASHglsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12275), + [anon_sym_BSLASHglsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12275), + [anon_sym_BSLASHglsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12275), + [anon_sym_BSLASHglsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12275), + [anon_sym_BSLASHnewacronym] = ACTIONS(12275), + [anon_sym_BSLASHacrshort] = ACTIONS(12275), + [anon_sym_BSLASHAcrshort] = ACTIONS(12275), + [anon_sym_BSLASHACRshort] = ACTIONS(12275), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12275), + [anon_sym_BSLASHacrlong] = ACTIONS(12275), + [anon_sym_BSLASHAcrlong] = ACTIONS(12275), + [anon_sym_BSLASHACRlong] = ACTIONS(12275), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12275), + [anon_sym_BSLASHacrfull] = ACTIONS(12275), + [anon_sym_BSLASHAcrfull] = ACTIONS(12275), + [anon_sym_BSLASHACRfull] = ACTIONS(12275), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12275), + [anon_sym_BSLASHacs] = ACTIONS(12275), + [anon_sym_BSLASHAcs] = ACTIONS(12275), + [anon_sym_BSLASHacsp] = ACTIONS(12275), + [anon_sym_BSLASHAcsp] = ACTIONS(12275), + [anon_sym_BSLASHacl] = ACTIONS(12275), + [anon_sym_BSLASHAcl] = ACTIONS(12275), + [anon_sym_BSLASHaclp] = ACTIONS(12275), + [anon_sym_BSLASHAclp] = ACTIONS(12275), + [anon_sym_BSLASHacf] = ACTIONS(12275), + [anon_sym_BSLASHAcf] = ACTIONS(12275), + [anon_sym_BSLASHacfp] = ACTIONS(12275), + [anon_sym_BSLASHAcfp] = ACTIONS(12275), + [anon_sym_BSLASHac] = ACTIONS(12275), + [anon_sym_BSLASHAc] = ACTIONS(12275), + [anon_sym_BSLASHacp] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12275), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12275), + [anon_sym_BSLASHcolor] = ACTIONS(12275), + [anon_sym_BSLASHcolorbox] = ACTIONS(12275), + [anon_sym_BSLASHtextcolor] = ACTIONS(12275), + [anon_sym_BSLASHpagecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12275), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12275), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12275), + }, + [540] = { + [ts_builtin_sym_end] = ACTIONS(12277), + [sym_generic_command_name] = ACTIONS(12279), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12279), + [aux_sym_chapter_token1] = ACTIONS(12279), + [aux_sym_section_token1] = ACTIONS(12279), + [aux_sym_subsection_token1] = ACTIONS(12279), + [aux_sym_subsubsection_token1] = ACTIONS(12279), + [aux_sym_paragraph_token1] = ACTIONS(12279), + [aux_sym_subparagraph_token1] = ACTIONS(12279), + [anon_sym_BSLASHitem] = ACTIONS(12279), + [anon_sym_LBRACK] = ACTIONS(12277), + [anon_sym_RBRACK] = ACTIONS(12277), + [anon_sym_LBRACE] = ACTIONS(12277), + [anon_sym_RBRACE] = ACTIONS(12277), + [anon_sym_LPAREN] = ACTIONS(12277), + [anon_sym_RPAREN] = ACTIONS(12277), + [anon_sym_COMMA] = ACTIONS(12277), + [anon_sym_EQ] = ACTIONS(12277), + [sym_word] = ACTIONS(12277), + [sym_param] = ACTIONS(12277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12277), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12277), + [anon_sym_DOLLAR] = ACTIONS(12279), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12277), + [anon_sym_BSLASHbegin] = ACTIONS(12279), + [anon_sym_BSLASHcaption] = ACTIONS(12279), + [anon_sym_BSLASHcite] = ACTIONS(12279), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCite] = ACTIONS(12279), + [anon_sym_BSLASHnocite] = ACTIONS(12279), + [anon_sym_BSLASHcitet] = ACTIONS(12279), + [anon_sym_BSLASHcitep] = ACTIONS(12279), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteauthor] = ACTIONS(12279), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12279), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitetitle] = ACTIONS(12279), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteyear] = ACTIONS(12279), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitedate] = ACTIONS(12279), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteurl] = ACTIONS(12279), + [anon_sym_BSLASHfullcite] = ACTIONS(12279), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12279), + [anon_sym_BSLASHcitealt] = ACTIONS(12279), + [anon_sym_BSLASHcitealp] = ACTIONS(12279), + [anon_sym_BSLASHcitetext] = ACTIONS(12279), + [anon_sym_BSLASHparencite] = ACTIONS(12279), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHParencite] = ACTIONS(12279), + [anon_sym_BSLASHfootcite] = ACTIONS(12279), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12279), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12279), + [anon_sym_BSLASHtextcite] = ACTIONS(12279), + [anon_sym_BSLASHTextcite] = ACTIONS(12279), + [anon_sym_BSLASHsmartcite] = ACTIONS(12279), + [anon_sym_BSLASHSmartcite] = ACTIONS(12279), + [anon_sym_BSLASHsupercite] = ACTIONS(12279), + [anon_sym_BSLASHautocite] = ACTIONS(12279), + [anon_sym_BSLASHAutocite] = ACTIONS(12279), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHvolcite] = ACTIONS(12279), + [anon_sym_BSLASHVolcite] = ACTIONS(12279), + [anon_sym_BSLASHpvolcite] = ACTIONS(12279), + [anon_sym_BSLASHPvolcite] = ACTIONS(12279), + [anon_sym_BSLASHfvolcite] = ACTIONS(12279), + [anon_sym_BSLASHftvolcite] = ACTIONS(12279), + [anon_sym_BSLASHsvolcite] = ACTIONS(12279), + [anon_sym_BSLASHSvolcite] = ACTIONS(12279), + [anon_sym_BSLASHtvolcite] = ACTIONS(12279), + [anon_sym_BSLASHTvolcite] = ACTIONS(12279), + [anon_sym_BSLASHavolcite] = ACTIONS(12279), + [anon_sym_BSLASHAvolcite] = ACTIONS(12279), + [anon_sym_BSLASHnotecite] = ACTIONS(12279), + [anon_sym_BSLASHpnotecite] = ACTIONS(12279), + [anon_sym_BSLASHPnotecite] = ACTIONS(12279), + [anon_sym_BSLASHfnotecite] = ACTIONS(12279), + [anon_sym_BSLASHusepackage] = ACTIONS(12279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12279), + [anon_sym_BSLASHinclude] = ACTIONS(12279), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12279), + [anon_sym_BSLASHinput] = ACTIONS(12279), + [anon_sym_BSLASHsubfile] = ACTIONS(12279), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12279), + [anon_sym_BSLASHbibliography] = ACTIONS(12279), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12279), + [anon_sym_BSLASHincludesvg] = ACTIONS(12279), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12279), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12279), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12279), + [anon_sym_BSLASHimport] = ACTIONS(12279), + [anon_sym_BSLASHsubimport] = ACTIONS(12279), + [anon_sym_BSLASHinputfrom] = ACTIONS(12279), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12279), + [anon_sym_BSLASHincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHlabel] = ACTIONS(12279), + [anon_sym_BSLASHref] = ACTIONS(12279), + [anon_sym_BSLASHvref] = ACTIONS(12279), + [anon_sym_BSLASHVref] = ACTIONS(12279), + [anon_sym_BSLASHautoref] = ACTIONS(12279), + [anon_sym_BSLASHpageref] = ACTIONS(12279), + [anon_sym_BSLASHcref] = ACTIONS(12279), + [anon_sym_BSLASHCref] = ACTIONS(12279), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnameCref] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHlabelcref] = ACTIONS(12279), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12279), + [anon_sym_BSLASHeqref] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange] = ACTIONS(12279), + [anon_sym_BSLASHCrefrange] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewlabel] = ACTIONS(12279), + [anon_sym_BSLASHnewcommand] = ACTIONS(12279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12279), + [anon_sym_BSLASHgls] = ACTIONS(12279), + [anon_sym_BSLASHGls] = ACTIONS(12279), + [anon_sym_BSLASHGLS] = ACTIONS(12279), + [anon_sym_BSLASHglspl] = ACTIONS(12279), + [anon_sym_BSLASHGlspl] = ACTIONS(12279), + [anon_sym_BSLASHGLSpl] = ACTIONS(12279), + [anon_sym_BSLASHglsdisp] = ACTIONS(12279), + [anon_sym_BSLASHglslink] = ACTIONS(12279), + [anon_sym_BSLASHglstext] = ACTIONS(12279), + [anon_sym_BSLASHGlstext] = ACTIONS(12279), + [anon_sym_BSLASHGLStext] = ACTIONS(12279), + [anon_sym_BSLASHglsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12279), + [anon_sym_BSLASHglsplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSplural] = ACTIONS(12279), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHglsname] = ACTIONS(12279), + [anon_sym_BSLASHGlsname] = ACTIONS(12279), + [anon_sym_BSLASHGLSname] = ACTIONS(12279), + [anon_sym_BSLASHglssymbol] = ACTIONS(12279), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12279), + [anon_sym_BSLASHglsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12279), + [anon_sym_BSLASHglsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12279), + [anon_sym_BSLASHglsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12279), + [anon_sym_BSLASHglsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12279), + [anon_sym_BSLASHglsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12279), + [anon_sym_BSLASHnewacronym] = ACTIONS(12279), + [anon_sym_BSLASHacrshort] = ACTIONS(12279), + [anon_sym_BSLASHAcrshort] = ACTIONS(12279), + [anon_sym_BSLASHACRshort] = ACTIONS(12279), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12279), + [anon_sym_BSLASHacrlong] = ACTIONS(12279), + [anon_sym_BSLASHAcrlong] = ACTIONS(12279), + [anon_sym_BSLASHACRlong] = ACTIONS(12279), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12279), + [anon_sym_BSLASHacrfull] = ACTIONS(12279), + [anon_sym_BSLASHAcrfull] = ACTIONS(12279), + [anon_sym_BSLASHACRfull] = ACTIONS(12279), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12279), + [anon_sym_BSLASHacs] = ACTIONS(12279), + [anon_sym_BSLASHAcs] = ACTIONS(12279), + [anon_sym_BSLASHacsp] = ACTIONS(12279), + [anon_sym_BSLASHAcsp] = ACTIONS(12279), + [anon_sym_BSLASHacl] = ACTIONS(12279), + [anon_sym_BSLASHAcl] = ACTIONS(12279), + [anon_sym_BSLASHaclp] = ACTIONS(12279), + [anon_sym_BSLASHAclp] = ACTIONS(12279), + [anon_sym_BSLASHacf] = ACTIONS(12279), + [anon_sym_BSLASHAcf] = ACTIONS(12279), + [anon_sym_BSLASHacfp] = ACTIONS(12279), + [anon_sym_BSLASHAcfp] = ACTIONS(12279), + [anon_sym_BSLASHac] = ACTIONS(12279), + [anon_sym_BSLASHAc] = ACTIONS(12279), + [anon_sym_BSLASHacp] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12279), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12279), + [anon_sym_BSLASHcolor] = ACTIONS(12279), + [anon_sym_BSLASHcolorbox] = ACTIONS(12279), + [anon_sym_BSLASHtextcolor] = ACTIONS(12279), + [anon_sym_BSLASHpagecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12279), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12279), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12279), + }, + [541] = { + [ts_builtin_sym_end] = ACTIONS(12281), + [sym_generic_command_name] = ACTIONS(12283), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12283), + [aux_sym_chapter_token1] = ACTIONS(12283), + [aux_sym_section_token1] = ACTIONS(12283), + [aux_sym_subsection_token1] = ACTIONS(12283), + [aux_sym_subsubsection_token1] = ACTIONS(12283), + [aux_sym_paragraph_token1] = ACTIONS(12283), + [aux_sym_subparagraph_token1] = ACTIONS(12283), + [anon_sym_BSLASHitem] = ACTIONS(12283), + [anon_sym_LBRACK] = ACTIONS(12281), + [anon_sym_RBRACK] = ACTIONS(12281), + [anon_sym_LBRACE] = ACTIONS(12281), + [anon_sym_RBRACE] = ACTIONS(12281), + [anon_sym_LPAREN] = ACTIONS(12281), + [anon_sym_RPAREN] = ACTIONS(12281), + [anon_sym_COMMA] = ACTIONS(12281), + [anon_sym_EQ] = ACTIONS(12281), + [sym_word] = ACTIONS(12281), + [sym_param] = ACTIONS(12281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12281), + [anon_sym_DOLLAR] = ACTIONS(12283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12281), + [anon_sym_BSLASHbegin] = ACTIONS(12283), + [anon_sym_BSLASHcaption] = ACTIONS(12283), + [anon_sym_BSLASHcite] = ACTIONS(12283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCite] = ACTIONS(12283), + [anon_sym_BSLASHnocite] = ACTIONS(12283), + [anon_sym_BSLASHcitet] = ACTIONS(12283), + [anon_sym_BSLASHcitep] = ACTIONS(12283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteauthor] = ACTIONS(12283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitetitle] = ACTIONS(12283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteyear] = ACTIONS(12283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitedate] = ACTIONS(12283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteurl] = ACTIONS(12283), + [anon_sym_BSLASHfullcite] = ACTIONS(12283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12283), + [anon_sym_BSLASHcitealt] = ACTIONS(12283), + [anon_sym_BSLASHcitealp] = ACTIONS(12283), + [anon_sym_BSLASHcitetext] = ACTIONS(12283), + [anon_sym_BSLASHparencite] = ACTIONS(12283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHParencite] = ACTIONS(12283), + [anon_sym_BSLASHfootcite] = ACTIONS(12283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12283), + [anon_sym_BSLASHtextcite] = ACTIONS(12283), + [anon_sym_BSLASHTextcite] = ACTIONS(12283), + [anon_sym_BSLASHsmartcite] = ACTIONS(12283), + [anon_sym_BSLASHSmartcite] = ACTIONS(12283), + [anon_sym_BSLASHsupercite] = ACTIONS(12283), + [anon_sym_BSLASHautocite] = ACTIONS(12283), + [anon_sym_BSLASHAutocite] = ACTIONS(12283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHvolcite] = ACTIONS(12283), + [anon_sym_BSLASHVolcite] = ACTIONS(12283), + [anon_sym_BSLASHpvolcite] = ACTIONS(12283), + [anon_sym_BSLASHPvolcite] = ACTIONS(12283), + [anon_sym_BSLASHfvolcite] = ACTIONS(12283), + [anon_sym_BSLASHftvolcite] = ACTIONS(12283), + [anon_sym_BSLASHsvolcite] = ACTIONS(12283), + [anon_sym_BSLASHSvolcite] = ACTIONS(12283), + [anon_sym_BSLASHtvolcite] = ACTIONS(12283), + [anon_sym_BSLASHTvolcite] = ACTIONS(12283), + [anon_sym_BSLASHavolcite] = ACTIONS(12283), + [anon_sym_BSLASHAvolcite] = ACTIONS(12283), + [anon_sym_BSLASHnotecite] = ACTIONS(12283), + [anon_sym_BSLASHpnotecite] = ACTIONS(12283), + [anon_sym_BSLASHPnotecite] = ACTIONS(12283), + [anon_sym_BSLASHfnotecite] = ACTIONS(12283), + [anon_sym_BSLASHusepackage] = ACTIONS(12283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12283), + [anon_sym_BSLASHinclude] = ACTIONS(12283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12283), + [anon_sym_BSLASHinput] = ACTIONS(12283), + [anon_sym_BSLASHsubfile] = ACTIONS(12283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12283), + [anon_sym_BSLASHbibliography] = ACTIONS(12283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12283), + [anon_sym_BSLASHincludesvg] = ACTIONS(12283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12283), + [anon_sym_BSLASHimport] = ACTIONS(12283), + [anon_sym_BSLASHsubimport] = ACTIONS(12283), + [anon_sym_BSLASHinputfrom] = ACTIONS(12283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12283), + [anon_sym_BSLASHincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHlabel] = ACTIONS(12283), + [anon_sym_BSLASHref] = ACTIONS(12283), + [anon_sym_BSLASHvref] = ACTIONS(12283), + [anon_sym_BSLASHVref] = ACTIONS(12283), + [anon_sym_BSLASHautoref] = ACTIONS(12283), + [anon_sym_BSLASHpageref] = ACTIONS(12283), + [anon_sym_BSLASHcref] = ACTIONS(12283), + [anon_sym_BSLASHCref] = ACTIONS(12283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnameCref] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHlabelcref] = ACTIONS(12283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12283), + [anon_sym_BSLASHeqref] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange] = ACTIONS(12283), + [anon_sym_BSLASHCrefrange] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewlabel] = ACTIONS(12283), + [anon_sym_BSLASHnewcommand] = ACTIONS(12283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12283), + [anon_sym_BSLASHgls] = ACTIONS(12283), + [anon_sym_BSLASHGls] = ACTIONS(12283), + [anon_sym_BSLASHGLS] = ACTIONS(12283), + [anon_sym_BSLASHglspl] = ACTIONS(12283), + [anon_sym_BSLASHGlspl] = ACTIONS(12283), + [anon_sym_BSLASHGLSpl] = ACTIONS(12283), + [anon_sym_BSLASHglsdisp] = ACTIONS(12283), + [anon_sym_BSLASHglslink] = ACTIONS(12283), + [anon_sym_BSLASHglstext] = ACTIONS(12283), + [anon_sym_BSLASHGlstext] = ACTIONS(12283), + [anon_sym_BSLASHGLStext] = ACTIONS(12283), + [anon_sym_BSLASHglsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12283), + [anon_sym_BSLASHglsplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSplural] = ACTIONS(12283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHglsname] = ACTIONS(12283), + [anon_sym_BSLASHGlsname] = ACTIONS(12283), + [anon_sym_BSLASHGLSname] = ACTIONS(12283), + [anon_sym_BSLASHglssymbol] = ACTIONS(12283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12283), + [anon_sym_BSLASHglsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12283), + [anon_sym_BSLASHglsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12283), + [anon_sym_BSLASHglsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12283), + [anon_sym_BSLASHglsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12283), + [anon_sym_BSLASHglsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12283), + [anon_sym_BSLASHnewacronym] = ACTIONS(12283), + [anon_sym_BSLASHacrshort] = ACTIONS(12283), + [anon_sym_BSLASHAcrshort] = ACTIONS(12283), + [anon_sym_BSLASHACRshort] = ACTIONS(12283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12283), + [anon_sym_BSLASHacrlong] = ACTIONS(12283), + [anon_sym_BSLASHAcrlong] = ACTIONS(12283), + [anon_sym_BSLASHACRlong] = ACTIONS(12283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12283), + [anon_sym_BSLASHacrfull] = ACTIONS(12283), + [anon_sym_BSLASHAcrfull] = ACTIONS(12283), + [anon_sym_BSLASHACRfull] = ACTIONS(12283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12283), + [anon_sym_BSLASHacs] = ACTIONS(12283), + [anon_sym_BSLASHAcs] = ACTIONS(12283), + [anon_sym_BSLASHacsp] = ACTIONS(12283), + [anon_sym_BSLASHAcsp] = ACTIONS(12283), + [anon_sym_BSLASHacl] = ACTIONS(12283), + [anon_sym_BSLASHAcl] = ACTIONS(12283), + [anon_sym_BSLASHaclp] = ACTIONS(12283), + [anon_sym_BSLASHAclp] = ACTIONS(12283), + [anon_sym_BSLASHacf] = ACTIONS(12283), + [anon_sym_BSLASHAcf] = ACTIONS(12283), + [anon_sym_BSLASHacfp] = ACTIONS(12283), + [anon_sym_BSLASHAcfp] = ACTIONS(12283), + [anon_sym_BSLASHac] = ACTIONS(12283), + [anon_sym_BSLASHAc] = ACTIONS(12283), + [anon_sym_BSLASHacp] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12283), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12283), + [anon_sym_BSLASHcolor] = ACTIONS(12283), + [anon_sym_BSLASHcolorbox] = ACTIONS(12283), + [anon_sym_BSLASHtextcolor] = ACTIONS(12283), + [anon_sym_BSLASHpagecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12283), + }, + [542] = { + [ts_builtin_sym_end] = ACTIONS(12285), + [sym_generic_command_name] = ACTIONS(12287), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12287), + [aux_sym_chapter_token1] = ACTIONS(12287), + [aux_sym_section_token1] = ACTIONS(12287), + [aux_sym_subsection_token1] = ACTIONS(12287), + [aux_sym_subsubsection_token1] = ACTIONS(12287), + [aux_sym_paragraph_token1] = ACTIONS(12287), + [aux_sym_subparagraph_token1] = ACTIONS(12287), + [anon_sym_BSLASHitem] = ACTIONS(12287), + [anon_sym_LBRACK] = ACTIONS(12285), + [anon_sym_RBRACK] = ACTIONS(12285), + [anon_sym_LBRACE] = ACTIONS(12285), + [anon_sym_RBRACE] = ACTIONS(12285), + [anon_sym_LPAREN] = ACTIONS(12285), + [anon_sym_RPAREN] = ACTIONS(12285), + [anon_sym_COMMA] = ACTIONS(12285), + [anon_sym_EQ] = ACTIONS(12285), + [sym_word] = ACTIONS(12285), + [sym_param] = ACTIONS(12285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12285), + [anon_sym_DOLLAR] = ACTIONS(12287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12285), + [anon_sym_BSLASHbegin] = ACTIONS(12287), + [anon_sym_BSLASHcaption] = ACTIONS(12287), + [anon_sym_BSLASHcite] = ACTIONS(12287), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCite] = ACTIONS(12287), + [anon_sym_BSLASHnocite] = ACTIONS(12287), + [anon_sym_BSLASHcitet] = ACTIONS(12287), + [anon_sym_BSLASHcitep] = ACTIONS(12287), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteauthor] = ACTIONS(12287), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12287), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitetitle] = ACTIONS(12287), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteyear] = ACTIONS(12287), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitedate] = ACTIONS(12287), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteurl] = ACTIONS(12287), + [anon_sym_BSLASHfullcite] = ACTIONS(12287), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12287), + [anon_sym_BSLASHcitealt] = ACTIONS(12287), + [anon_sym_BSLASHcitealp] = ACTIONS(12287), + [anon_sym_BSLASHcitetext] = ACTIONS(12287), + [anon_sym_BSLASHparencite] = ACTIONS(12287), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHParencite] = ACTIONS(12287), + [anon_sym_BSLASHfootcite] = ACTIONS(12287), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12287), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12287), + [anon_sym_BSLASHtextcite] = ACTIONS(12287), + [anon_sym_BSLASHTextcite] = ACTIONS(12287), + [anon_sym_BSLASHsmartcite] = ACTIONS(12287), + [anon_sym_BSLASHSmartcite] = ACTIONS(12287), + [anon_sym_BSLASHsupercite] = ACTIONS(12287), + [anon_sym_BSLASHautocite] = ACTIONS(12287), + [anon_sym_BSLASHAutocite] = ACTIONS(12287), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHvolcite] = ACTIONS(12287), + [anon_sym_BSLASHVolcite] = ACTIONS(12287), + [anon_sym_BSLASHpvolcite] = ACTIONS(12287), + [anon_sym_BSLASHPvolcite] = ACTIONS(12287), + [anon_sym_BSLASHfvolcite] = ACTIONS(12287), + [anon_sym_BSLASHftvolcite] = ACTIONS(12287), + [anon_sym_BSLASHsvolcite] = ACTIONS(12287), + [anon_sym_BSLASHSvolcite] = ACTIONS(12287), + [anon_sym_BSLASHtvolcite] = ACTIONS(12287), + [anon_sym_BSLASHTvolcite] = ACTIONS(12287), + [anon_sym_BSLASHavolcite] = ACTIONS(12287), + [anon_sym_BSLASHAvolcite] = ACTIONS(12287), + [anon_sym_BSLASHnotecite] = ACTIONS(12287), + [anon_sym_BSLASHpnotecite] = ACTIONS(12287), + [anon_sym_BSLASHPnotecite] = ACTIONS(12287), + [anon_sym_BSLASHfnotecite] = ACTIONS(12287), + [anon_sym_BSLASHusepackage] = ACTIONS(12287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12287), + [anon_sym_BSLASHinclude] = ACTIONS(12287), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12287), + [anon_sym_BSLASHinput] = ACTIONS(12287), + [anon_sym_BSLASHsubfile] = ACTIONS(12287), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12287), + [anon_sym_BSLASHbibliography] = ACTIONS(12287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12287), + [anon_sym_BSLASHincludesvg] = ACTIONS(12287), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12287), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12287), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12287), + [anon_sym_BSLASHimport] = ACTIONS(12287), + [anon_sym_BSLASHsubimport] = ACTIONS(12287), + [anon_sym_BSLASHinputfrom] = ACTIONS(12287), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12287), + [anon_sym_BSLASHincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHlabel] = ACTIONS(12287), + [anon_sym_BSLASHref] = ACTIONS(12287), + [anon_sym_BSLASHvref] = ACTIONS(12287), + [anon_sym_BSLASHVref] = ACTIONS(12287), + [anon_sym_BSLASHautoref] = ACTIONS(12287), + [anon_sym_BSLASHpageref] = ACTIONS(12287), + [anon_sym_BSLASHcref] = ACTIONS(12287), + [anon_sym_BSLASHCref] = ACTIONS(12287), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnameCref] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHlabelcref] = ACTIONS(12287), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12287), + [anon_sym_BSLASHeqref] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange] = ACTIONS(12287), + [anon_sym_BSLASHCrefrange] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewlabel] = ACTIONS(12287), + [anon_sym_BSLASHnewcommand] = ACTIONS(12287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12287), + [anon_sym_BSLASHgls] = ACTIONS(12287), + [anon_sym_BSLASHGls] = ACTIONS(12287), + [anon_sym_BSLASHGLS] = ACTIONS(12287), + [anon_sym_BSLASHglspl] = ACTIONS(12287), + [anon_sym_BSLASHGlspl] = ACTIONS(12287), + [anon_sym_BSLASHGLSpl] = ACTIONS(12287), + [anon_sym_BSLASHglsdisp] = ACTIONS(12287), + [anon_sym_BSLASHglslink] = ACTIONS(12287), + [anon_sym_BSLASHglstext] = ACTIONS(12287), + [anon_sym_BSLASHGlstext] = ACTIONS(12287), + [anon_sym_BSLASHGLStext] = ACTIONS(12287), + [anon_sym_BSLASHglsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12287), + [anon_sym_BSLASHglsplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSplural] = ACTIONS(12287), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHglsname] = ACTIONS(12287), + [anon_sym_BSLASHGlsname] = ACTIONS(12287), + [anon_sym_BSLASHGLSname] = ACTIONS(12287), + [anon_sym_BSLASHglssymbol] = ACTIONS(12287), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12287), + [anon_sym_BSLASHglsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12287), + [anon_sym_BSLASHglsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12287), + [anon_sym_BSLASHglsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12287), + [anon_sym_BSLASHglsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12287), + [anon_sym_BSLASHglsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12287), + [anon_sym_BSLASHnewacronym] = ACTIONS(12287), + [anon_sym_BSLASHacrshort] = ACTIONS(12287), + [anon_sym_BSLASHAcrshort] = ACTIONS(12287), + [anon_sym_BSLASHACRshort] = ACTIONS(12287), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12287), + [anon_sym_BSLASHacrlong] = ACTIONS(12287), + [anon_sym_BSLASHAcrlong] = ACTIONS(12287), + [anon_sym_BSLASHACRlong] = ACTIONS(12287), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12287), + [anon_sym_BSLASHacrfull] = ACTIONS(12287), + [anon_sym_BSLASHAcrfull] = ACTIONS(12287), + [anon_sym_BSLASHACRfull] = ACTIONS(12287), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12287), + [anon_sym_BSLASHacs] = ACTIONS(12287), + [anon_sym_BSLASHAcs] = ACTIONS(12287), + [anon_sym_BSLASHacsp] = ACTIONS(12287), + [anon_sym_BSLASHAcsp] = ACTIONS(12287), + [anon_sym_BSLASHacl] = ACTIONS(12287), + [anon_sym_BSLASHAcl] = ACTIONS(12287), + [anon_sym_BSLASHaclp] = ACTIONS(12287), + [anon_sym_BSLASHAclp] = ACTIONS(12287), + [anon_sym_BSLASHacf] = ACTIONS(12287), + [anon_sym_BSLASHAcf] = ACTIONS(12287), + [anon_sym_BSLASHacfp] = ACTIONS(12287), + [anon_sym_BSLASHAcfp] = ACTIONS(12287), + [anon_sym_BSLASHac] = ACTIONS(12287), + [anon_sym_BSLASHAc] = ACTIONS(12287), + [anon_sym_BSLASHacp] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12287), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12287), + [anon_sym_BSLASHcolor] = ACTIONS(12287), + [anon_sym_BSLASHcolorbox] = ACTIONS(12287), + [anon_sym_BSLASHtextcolor] = ACTIONS(12287), + [anon_sym_BSLASHpagecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12287), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12287), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12287), + }, + [543] = { + [ts_builtin_sym_end] = ACTIONS(12289), + [sym_generic_command_name] = ACTIONS(12291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12291), + [aux_sym_chapter_token1] = ACTIONS(12291), + [aux_sym_section_token1] = ACTIONS(12291), + [aux_sym_subsection_token1] = ACTIONS(12291), + [aux_sym_subsubsection_token1] = ACTIONS(12291), + [aux_sym_paragraph_token1] = ACTIONS(12291), + [aux_sym_subparagraph_token1] = ACTIONS(12291), + [anon_sym_BSLASHitem] = ACTIONS(12291), + [anon_sym_LBRACK] = ACTIONS(12289), + [anon_sym_RBRACK] = ACTIONS(12289), + [anon_sym_LBRACE] = ACTIONS(12289), + [anon_sym_RBRACE] = ACTIONS(12289), + [anon_sym_LPAREN] = ACTIONS(12289), + [anon_sym_RPAREN] = ACTIONS(12289), + [anon_sym_COMMA] = ACTIONS(12289), + [anon_sym_EQ] = ACTIONS(12289), + [sym_word] = ACTIONS(12289), + [sym_param] = ACTIONS(12289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12289), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12289), + [anon_sym_DOLLAR] = ACTIONS(12291), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12289), + [anon_sym_BSLASHbegin] = ACTIONS(12291), + [anon_sym_BSLASHcaption] = ACTIONS(12291), + [anon_sym_BSLASHcite] = ACTIONS(12291), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCite] = ACTIONS(12291), + [anon_sym_BSLASHnocite] = ACTIONS(12291), + [anon_sym_BSLASHcitet] = ACTIONS(12291), + [anon_sym_BSLASHcitep] = ACTIONS(12291), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteauthor] = ACTIONS(12291), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12291), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitetitle] = ACTIONS(12291), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteyear] = ACTIONS(12291), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitedate] = ACTIONS(12291), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteurl] = ACTIONS(12291), + [anon_sym_BSLASHfullcite] = ACTIONS(12291), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12291), + [anon_sym_BSLASHcitealt] = ACTIONS(12291), + [anon_sym_BSLASHcitealp] = ACTIONS(12291), + [anon_sym_BSLASHcitetext] = ACTIONS(12291), + [anon_sym_BSLASHparencite] = ACTIONS(12291), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHParencite] = ACTIONS(12291), + [anon_sym_BSLASHfootcite] = ACTIONS(12291), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12291), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12291), + [anon_sym_BSLASHtextcite] = ACTIONS(12291), + [anon_sym_BSLASHTextcite] = ACTIONS(12291), + [anon_sym_BSLASHsmartcite] = ACTIONS(12291), + [anon_sym_BSLASHSmartcite] = ACTIONS(12291), + [anon_sym_BSLASHsupercite] = ACTIONS(12291), + [anon_sym_BSLASHautocite] = ACTIONS(12291), + [anon_sym_BSLASHAutocite] = ACTIONS(12291), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHvolcite] = ACTIONS(12291), + [anon_sym_BSLASHVolcite] = ACTIONS(12291), + [anon_sym_BSLASHpvolcite] = ACTIONS(12291), + [anon_sym_BSLASHPvolcite] = ACTIONS(12291), + [anon_sym_BSLASHfvolcite] = ACTIONS(12291), + [anon_sym_BSLASHftvolcite] = ACTIONS(12291), + [anon_sym_BSLASHsvolcite] = ACTIONS(12291), + [anon_sym_BSLASHSvolcite] = ACTIONS(12291), + [anon_sym_BSLASHtvolcite] = ACTIONS(12291), + [anon_sym_BSLASHTvolcite] = ACTIONS(12291), + [anon_sym_BSLASHavolcite] = ACTIONS(12291), + [anon_sym_BSLASHAvolcite] = ACTIONS(12291), + [anon_sym_BSLASHnotecite] = ACTIONS(12291), + [anon_sym_BSLASHpnotecite] = ACTIONS(12291), + [anon_sym_BSLASHPnotecite] = ACTIONS(12291), + [anon_sym_BSLASHfnotecite] = ACTIONS(12291), + [anon_sym_BSLASHusepackage] = ACTIONS(12291), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12291), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12291), + [anon_sym_BSLASHinclude] = ACTIONS(12291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12291), + [anon_sym_BSLASHinput] = ACTIONS(12291), + [anon_sym_BSLASHsubfile] = ACTIONS(12291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12291), + [anon_sym_BSLASHbibliography] = ACTIONS(12291), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12291), + [anon_sym_BSLASHincludesvg] = ACTIONS(12291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12291), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12291), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12291), + [anon_sym_BSLASHimport] = ACTIONS(12291), + [anon_sym_BSLASHsubimport] = ACTIONS(12291), + [anon_sym_BSLASHinputfrom] = ACTIONS(12291), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12291), + [anon_sym_BSLASHincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHlabel] = ACTIONS(12291), + [anon_sym_BSLASHref] = ACTIONS(12291), + [anon_sym_BSLASHvref] = ACTIONS(12291), + [anon_sym_BSLASHVref] = ACTIONS(12291), + [anon_sym_BSLASHautoref] = ACTIONS(12291), + [anon_sym_BSLASHpageref] = ACTIONS(12291), + [anon_sym_BSLASHcref] = ACTIONS(12291), + [anon_sym_BSLASHCref] = ACTIONS(12291), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnameCref] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHlabelcref] = ACTIONS(12291), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12291), + [anon_sym_BSLASHeqref] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange] = ACTIONS(12291), + [anon_sym_BSLASHCrefrange] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewlabel] = ACTIONS(12291), + [anon_sym_BSLASHnewcommand] = ACTIONS(12291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12291), + [anon_sym_BSLASHgls] = ACTIONS(12291), + [anon_sym_BSLASHGls] = ACTIONS(12291), + [anon_sym_BSLASHGLS] = ACTIONS(12291), + [anon_sym_BSLASHglspl] = ACTIONS(12291), + [anon_sym_BSLASHGlspl] = ACTIONS(12291), + [anon_sym_BSLASHGLSpl] = ACTIONS(12291), + [anon_sym_BSLASHglsdisp] = ACTIONS(12291), + [anon_sym_BSLASHglslink] = ACTIONS(12291), + [anon_sym_BSLASHglstext] = ACTIONS(12291), + [anon_sym_BSLASHGlstext] = ACTIONS(12291), + [anon_sym_BSLASHGLStext] = ACTIONS(12291), + [anon_sym_BSLASHglsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12291), + [anon_sym_BSLASHglsplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSplural] = ACTIONS(12291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHglsname] = ACTIONS(12291), + [anon_sym_BSLASHGlsname] = ACTIONS(12291), + [anon_sym_BSLASHGLSname] = ACTIONS(12291), + [anon_sym_BSLASHglssymbol] = ACTIONS(12291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12291), + [anon_sym_BSLASHglsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12291), + [anon_sym_BSLASHglsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12291), + [anon_sym_BSLASHglsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12291), + [anon_sym_BSLASHglsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12291), + [anon_sym_BSLASHglsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12291), + [anon_sym_BSLASHnewacronym] = ACTIONS(12291), + [anon_sym_BSLASHacrshort] = ACTIONS(12291), + [anon_sym_BSLASHAcrshort] = ACTIONS(12291), + [anon_sym_BSLASHACRshort] = ACTIONS(12291), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12291), + [anon_sym_BSLASHacrlong] = ACTIONS(12291), + [anon_sym_BSLASHAcrlong] = ACTIONS(12291), + [anon_sym_BSLASHACRlong] = ACTIONS(12291), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12291), + [anon_sym_BSLASHacrfull] = ACTIONS(12291), + [anon_sym_BSLASHAcrfull] = ACTIONS(12291), + [anon_sym_BSLASHACRfull] = ACTIONS(12291), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12291), + [anon_sym_BSLASHacs] = ACTIONS(12291), + [anon_sym_BSLASHAcs] = ACTIONS(12291), + [anon_sym_BSLASHacsp] = ACTIONS(12291), + [anon_sym_BSLASHAcsp] = ACTIONS(12291), + [anon_sym_BSLASHacl] = ACTIONS(12291), + [anon_sym_BSLASHAcl] = ACTIONS(12291), + [anon_sym_BSLASHaclp] = ACTIONS(12291), + [anon_sym_BSLASHAclp] = ACTIONS(12291), + [anon_sym_BSLASHacf] = ACTIONS(12291), + [anon_sym_BSLASHAcf] = ACTIONS(12291), + [anon_sym_BSLASHacfp] = ACTIONS(12291), + [anon_sym_BSLASHAcfp] = ACTIONS(12291), + [anon_sym_BSLASHac] = ACTIONS(12291), + [anon_sym_BSLASHAc] = ACTIONS(12291), + [anon_sym_BSLASHacp] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12291), + [anon_sym_BSLASHcolor] = ACTIONS(12291), + [anon_sym_BSLASHcolorbox] = ACTIONS(12291), + [anon_sym_BSLASHtextcolor] = ACTIONS(12291), + [anon_sym_BSLASHpagecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12291), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12291), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12291), + }, + [544] = { + [ts_builtin_sym_end] = ACTIONS(12293), + [sym_generic_command_name] = ACTIONS(12295), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12295), + [aux_sym_chapter_token1] = ACTIONS(12295), + [aux_sym_section_token1] = ACTIONS(12295), + [aux_sym_subsection_token1] = ACTIONS(12295), + [aux_sym_subsubsection_token1] = ACTIONS(12295), + [aux_sym_paragraph_token1] = ACTIONS(12295), + [aux_sym_subparagraph_token1] = ACTIONS(12295), + [anon_sym_BSLASHitem] = ACTIONS(12295), + [anon_sym_LBRACK] = ACTIONS(12293), + [anon_sym_RBRACK] = ACTIONS(12293), + [anon_sym_LBRACE] = ACTIONS(12293), + [anon_sym_RBRACE] = ACTIONS(12293), + [anon_sym_LPAREN] = ACTIONS(12293), + [anon_sym_RPAREN] = ACTIONS(12293), + [anon_sym_COMMA] = ACTIONS(12293), + [anon_sym_EQ] = ACTIONS(12293), + [sym_word] = ACTIONS(12293), + [sym_param] = ACTIONS(12293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12293), + [anon_sym_DOLLAR] = ACTIONS(12295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12293), + [anon_sym_BSLASHbegin] = ACTIONS(12295), + [anon_sym_BSLASHcaption] = ACTIONS(12295), + [anon_sym_BSLASHcite] = ACTIONS(12295), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCite] = ACTIONS(12295), + [anon_sym_BSLASHnocite] = ACTIONS(12295), + [anon_sym_BSLASHcitet] = ACTIONS(12295), + [anon_sym_BSLASHcitep] = ACTIONS(12295), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteauthor] = ACTIONS(12295), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12295), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitetitle] = ACTIONS(12295), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteyear] = ACTIONS(12295), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitedate] = ACTIONS(12295), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteurl] = ACTIONS(12295), + [anon_sym_BSLASHfullcite] = ACTIONS(12295), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12295), + [anon_sym_BSLASHcitealt] = ACTIONS(12295), + [anon_sym_BSLASHcitealp] = ACTIONS(12295), + [anon_sym_BSLASHcitetext] = ACTIONS(12295), + [anon_sym_BSLASHparencite] = ACTIONS(12295), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHParencite] = ACTIONS(12295), + [anon_sym_BSLASHfootcite] = ACTIONS(12295), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12295), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12295), + [anon_sym_BSLASHtextcite] = ACTIONS(12295), + [anon_sym_BSLASHTextcite] = ACTIONS(12295), + [anon_sym_BSLASHsmartcite] = ACTIONS(12295), + [anon_sym_BSLASHSmartcite] = ACTIONS(12295), + [anon_sym_BSLASHsupercite] = ACTIONS(12295), + [anon_sym_BSLASHautocite] = ACTIONS(12295), + [anon_sym_BSLASHAutocite] = ACTIONS(12295), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHvolcite] = ACTIONS(12295), + [anon_sym_BSLASHVolcite] = ACTIONS(12295), + [anon_sym_BSLASHpvolcite] = ACTIONS(12295), + [anon_sym_BSLASHPvolcite] = ACTIONS(12295), + [anon_sym_BSLASHfvolcite] = ACTIONS(12295), + [anon_sym_BSLASHftvolcite] = ACTIONS(12295), + [anon_sym_BSLASHsvolcite] = ACTIONS(12295), + [anon_sym_BSLASHSvolcite] = ACTIONS(12295), + [anon_sym_BSLASHtvolcite] = ACTIONS(12295), + [anon_sym_BSLASHTvolcite] = ACTIONS(12295), + [anon_sym_BSLASHavolcite] = ACTIONS(12295), + [anon_sym_BSLASHAvolcite] = ACTIONS(12295), + [anon_sym_BSLASHnotecite] = ACTIONS(12295), + [anon_sym_BSLASHpnotecite] = ACTIONS(12295), + [anon_sym_BSLASHPnotecite] = ACTIONS(12295), + [anon_sym_BSLASHfnotecite] = ACTIONS(12295), + [anon_sym_BSLASHusepackage] = ACTIONS(12295), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12295), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12295), + [anon_sym_BSLASHinclude] = ACTIONS(12295), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12295), + [anon_sym_BSLASHinput] = ACTIONS(12295), + [anon_sym_BSLASHsubfile] = ACTIONS(12295), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12295), + [anon_sym_BSLASHbibliography] = ACTIONS(12295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12295), + [anon_sym_BSLASHincludesvg] = ACTIONS(12295), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12295), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12295), + [anon_sym_BSLASHimport] = ACTIONS(12295), + [anon_sym_BSLASHsubimport] = ACTIONS(12295), + [anon_sym_BSLASHinputfrom] = ACTIONS(12295), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12295), + [anon_sym_BSLASHincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHlabel] = ACTIONS(12295), + [anon_sym_BSLASHref] = ACTIONS(12295), + [anon_sym_BSLASHvref] = ACTIONS(12295), + [anon_sym_BSLASHVref] = ACTIONS(12295), + [anon_sym_BSLASHautoref] = ACTIONS(12295), + [anon_sym_BSLASHpageref] = ACTIONS(12295), + [anon_sym_BSLASHcref] = ACTIONS(12295), + [anon_sym_BSLASHCref] = ACTIONS(12295), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnameCref] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHlabelcref] = ACTIONS(12295), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12295), + [anon_sym_BSLASHeqref] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange] = ACTIONS(12295), + [anon_sym_BSLASHCrefrange] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewlabel] = ACTIONS(12295), + [anon_sym_BSLASHnewcommand] = ACTIONS(12295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12295), + [anon_sym_BSLASHgls] = ACTIONS(12295), + [anon_sym_BSLASHGls] = ACTIONS(12295), + [anon_sym_BSLASHGLS] = ACTIONS(12295), + [anon_sym_BSLASHglspl] = ACTIONS(12295), + [anon_sym_BSLASHGlspl] = ACTIONS(12295), + [anon_sym_BSLASHGLSpl] = ACTIONS(12295), + [anon_sym_BSLASHglsdisp] = ACTIONS(12295), + [anon_sym_BSLASHglslink] = ACTIONS(12295), + [anon_sym_BSLASHglstext] = ACTIONS(12295), + [anon_sym_BSLASHGlstext] = ACTIONS(12295), + [anon_sym_BSLASHGLStext] = ACTIONS(12295), + [anon_sym_BSLASHglsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12295), + [anon_sym_BSLASHglsplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSplural] = ACTIONS(12295), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHglsname] = ACTIONS(12295), + [anon_sym_BSLASHGlsname] = ACTIONS(12295), + [anon_sym_BSLASHGLSname] = ACTIONS(12295), + [anon_sym_BSLASHglssymbol] = ACTIONS(12295), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12295), + [anon_sym_BSLASHglsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12295), + [anon_sym_BSLASHglsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12295), + [anon_sym_BSLASHglsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12295), + [anon_sym_BSLASHglsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12295), + [anon_sym_BSLASHglsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12295), + [anon_sym_BSLASHnewacronym] = ACTIONS(12295), + [anon_sym_BSLASHacrshort] = ACTIONS(12295), + [anon_sym_BSLASHAcrshort] = ACTIONS(12295), + [anon_sym_BSLASHACRshort] = ACTIONS(12295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12295), + [anon_sym_BSLASHacrlong] = ACTIONS(12295), + [anon_sym_BSLASHAcrlong] = ACTIONS(12295), + [anon_sym_BSLASHACRlong] = ACTIONS(12295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12295), + [anon_sym_BSLASHacrfull] = ACTIONS(12295), + [anon_sym_BSLASHAcrfull] = ACTIONS(12295), + [anon_sym_BSLASHACRfull] = ACTIONS(12295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12295), + [anon_sym_BSLASHacs] = ACTIONS(12295), + [anon_sym_BSLASHAcs] = ACTIONS(12295), + [anon_sym_BSLASHacsp] = ACTIONS(12295), + [anon_sym_BSLASHAcsp] = ACTIONS(12295), + [anon_sym_BSLASHacl] = ACTIONS(12295), + [anon_sym_BSLASHAcl] = ACTIONS(12295), + [anon_sym_BSLASHaclp] = ACTIONS(12295), + [anon_sym_BSLASHAclp] = ACTIONS(12295), + [anon_sym_BSLASHacf] = ACTIONS(12295), + [anon_sym_BSLASHAcf] = ACTIONS(12295), + [anon_sym_BSLASHacfp] = ACTIONS(12295), + [anon_sym_BSLASHAcfp] = ACTIONS(12295), + [anon_sym_BSLASHac] = ACTIONS(12295), + [anon_sym_BSLASHAc] = ACTIONS(12295), + [anon_sym_BSLASHacp] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12295), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12295), + [anon_sym_BSLASHcolor] = ACTIONS(12295), + [anon_sym_BSLASHcolorbox] = ACTIONS(12295), + [anon_sym_BSLASHtextcolor] = ACTIONS(12295), + [anon_sym_BSLASHpagecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12295), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12295), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12295), + }, + [545] = { + [ts_builtin_sym_end] = ACTIONS(12297), + [sym_generic_command_name] = ACTIONS(12299), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12299), + [aux_sym_chapter_token1] = ACTIONS(12299), + [aux_sym_section_token1] = ACTIONS(12299), + [aux_sym_subsection_token1] = ACTIONS(12299), + [aux_sym_subsubsection_token1] = ACTIONS(12299), + [aux_sym_paragraph_token1] = ACTIONS(12299), + [aux_sym_subparagraph_token1] = ACTIONS(12299), + [anon_sym_BSLASHitem] = ACTIONS(12299), + [anon_sym_LBRACK] = ACTIONS(12297), + [anon_sym_RBRACK] = ACTIONS(12297), + [anon_sym_LBRACE] = ACTIONS(12297), + [anon_sym_RBRACE] = ACTIONS(12297), + [anon_sym_LPAREN] = ACTIONS(12297), + [anon_sym_RPAREN] = ACTIONS(12297), + [anon_sym_COMMA] = ACTIONS(12297), + [anon_sym_EQ] = ACTIONS(12297), + [sym_word] = ACTIONS(12297), + [sym_param] = ACTIONS(12297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12297), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12297), + [anon_sym_DOLLAR] = ACTIONS(12299), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12297), + [anon_sym_BSLASHbegin] = ACTIONS(12299), + [anon_sym_BSLASHcaption] = ACTIONS(12299), + [anon_sym_BSLASHcite] = ACTIONS(12299), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCite] = ACTIONS(12299), + [anon_sym_BSLASHnocite] = ACTIONS(12299), + [anon_sym_BSLASHcitet] = ACTIONS(12299), + [anon_sym_BSLASHcitep] = ACTIONS(12299), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteauthor] = ACTIONS(12299), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12299), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitetitle] = ACTIONS(12299), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteyear] = ACTIONS(12299), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitedate] = ACTIONS(12299), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteurl] = ACTIONS(12299), + [anon_sym_BSLASHfullcite] = ACTIONS(12299), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12299), + [anon_sym_BSLASHcitealt] = ACTIONS(12299), + [anon_sym_BSLASHcitealp] = ACTIONS(12299), + [anon_sym_BSLASHcitetext] = ACTIONS(12299), + [anon_sym_BSLASHparencite] = ACTIONS(12299), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHParencite] = ACTIONS(12299), + [anon_sym_BSLASHfootcite] = ACTIONS(12299), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12299), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12299), + [anon_sym_BSLASHtextcite] = ACTIONS(12299), + [anon_sym_BSLASHTextcite] = ACTIONS(12299), + [anon_sym_BSLASHsmartcite] = ACTIONS(12299), + [anon_sym_BSLASHSmartcite] = ACTIONS(12299), + [anon_sym_BSLASHsupercite] = ACTIONS(12299), + [anon_sym_BSLASHautocite] = ACTIONS(12299), + [anon_sym_BSLASHAutocite] = ACTIONS(12299), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHvolcite] = ACTIONS(12299), + [anon_sym_BSLASHVolcite] = ACTIONS(12299), + [anon_sym_BSLASHpvolcite] = ACTIONS(12299), + [anon_sym_BSLASHPvolcite] = ACTIONS(12299), + [anon_sym_BSLASHfvolcite] = ACTIONS(12299), + [anon_sym_BSLASHftvolcite] = ACTIONS(12299), + [anon_sym_BSLASHsvolcite] = ACTIONS(12299), + [anon_sym_BSLASHSvolcite] = ACTIONS(12299), + [anon_sym_BSLASHtvolcite] = ACTIONS(12299), + [anon_sym_BSLASHTvolcite] = ACTIONS(12299), + [anon_sym_BSLASHavolcite] = ACTIONS(12299), + [anon_sym_BSLASHAvolcite] = ACTIONS(12299), + [anon_sym_BSLASHnotecite] = ACTIONS(12299), + [anon_sym_BSLASHpnotecite] = ACTIONS(12299), + [anon_sym_BSLASHPnotecite] = ACTIONS(12299), + [anon_sym_BSLASHfnotecite] = ACTIONS(12299), + [anon_sym_BSLASHusepackage] = ACTIONS(12299), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12299), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12299), + [anon_sym_BSLASHinclude] = ACTIONS(12299), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12299), + [anon_sym_BSLASHinput] = ACTIONS(12299), + [anon_sym_BSLASHsubfile] = ACTIONS(12299), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12299), + [anon_sym_BSLASHbibliography] = ACTIONS(12299), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12299), + [anon_sym_BSLASHincludesvg] = ACTIONS(12299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12299), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12299), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12299), + [anon_sym_BSLASHimport] = ACTIONS(12299), + [anon_sym_BSLASHsubimport] = ACTIONS(12299), + [anon_sym_BSLASHinputfrom] = ACTIONS(12299), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12299), + [anon_sym_BSLASHincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHlabel] = ACTIONS(12299), + [anon_sym_BSLASHref] = ACTIONS(12299), + [anon_sym_BSLASHvref] = ACTIONS(12299), + [anon_sym_BSLASHVref] = ACTIONS(12299), + [anon_sym_BSLASHautoref] = ACTIONS(12299), + [anon_sym_BSLASHpageref] = ACTIONS(12299), + [anon_sym_BSLASHcref] = ACTIONS(12299), + [anon_sym_BSLASHCref] = ACTIONS(12299), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnameCref] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHlabelcref] = ACTIONS(12299), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12299), + [anon_sym_BSLASHeqref] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange] = ACTIONS(12299), + [anon_sym_BSLASHCrefrange] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewlabel] = ACTIONS(12299), + [anon_sym_BSLASHnewcommand] = ACTIONS(12299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12299), + [anon_sym_BSLASHgls] = ACTIONS(12299), + [anon_sym_BSLASHGls] = ACTIONS(12299), + [anon_sym_BSLASHGLS] = ACTIONS(12299), + [anon_sym_BSLASHglspl] = ACTIONS(12299), + [anon_sym_BSLASHGlspl] = ACTIONS(12299), + [anon_sym_BSLASHGLSpl] = ACTIONS(12299), + [anon_sym_BSLASHglsdisp] = ACTIONS(12299), + [anon_sym_BSLASHglslink] = ACTIONS(12299), + [anon_sym_BSLASHglstext] = ACTIONS(12299), + [anon_sym_BSLASHGlstext] = ACTIONS(12299), + [anon_sym_BSLASHGLStext] = ACTIONS(12299), + [anon_sym_BSLASHglsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12299), + [anon_sym_BSLASHglsplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSplural] = ACTIONS(12299), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHglsname] = ACTIONS(12299), + [anon_sym_BSLASHGlsname] = ACTIONS(12299), + [anon_sym_BSLASHGLSname] = ACTIONS(12299), + [anon_sym_BSLASHglssymbol] = ACTIONS(12299), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12299), + [anon_sym_BSLASHglsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12299), + [anon_sym_BSLASHglsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12299), + [anon_sym_BSLASHglsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12299), + [anon_sym_BSLASHglsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12299), + [anon_sym_BSLASHglsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12299), + [anon_sym_BSLASHnewacronym] = ACTIONS(12299), + [anon_sym_BSLASHacrshort] = ACTIONS(12299), + [anon_sym_BSLASHAcrshort] = ACTIONS(12299), + [anon_sym_BSLASHACRshort] = ACTIONS(12299), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12299), + [anon_sym_BSLASHacrlong] = ACTIONS(12299), + [anon_sym_BSLASHAcrlong] = ACTIONS(12299), + [anon_sym_BSLASHACRlong] = ACTIONS(12299), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12299), + [anon_sym_BSLASHacrfull] = ACTIONS(12299), + [anon_sym_BSLASHAcrfull] = ACTIONS(12299), + [anon_sym_BSLASHACRfull] = ACTIONS(12299), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12299), + [anon_sym_BSLASHacs] = ACTIONS(12299), + [anon_sym_BSLASHAcs] = ACTIONS(12299), + [anon_sym_BSLASHacsp] = ACTIONS(12299), + [anon_sym_BSLASHAcsp] = ACTIONS(12299), + [anon_sym_BSLASHacl] = ACTIONS(12299), + [anon_sym_BSLASHAcl] = ACTIONS(12299), + [anon_sym_BSLASHaclp] = ACTIONS(12299), + [anon_sym_BSLASHAclp] = ACTIONS(12299), + [anon_sym_BSLASHacf] = ACTIONS(12299), + [anon_sym_BSLASHAcf] = ACTIONS(12299), + [anon_sym_BSLASHacfp] = ACTIONS(12299), + [anon_sym_BSLASHAcfp] = ACTIONS(12299), + [anon_sym_BSLASHac] = ACTIONS(12299), + [anon_sym_BSLASHAc] = ACTIONS(12299), + [anon_sym_BSLASHacp] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12299), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12299), + [anon_sym_BSLASHcolor] = ACTIONS(12299), + [anon_sym_BSLASHcolorbox] = ACTIONS(12299), + [anon_sym_BSLASHtextcolor] = ACTIONS(12299), + [anon_sym_BSLASHpagecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12299), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12299), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12299), + }, + [546] = { + [ts_builtin_sym_end] = ACTIONS(12301), + [sym_generic_command_name] = ACTIONS(12303), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12303), + [aux_sym_chapter_token1] = ACTIONS(12303), + [aux_sym_section_token1] = ACTIONS(12303), + [aux_sym_subsection_token1] = ACTIONS(12303), + [aux_sym_subsubsection_token1] = ACTIONS(12303), + [aux_sym_paragraph_token1] = ACTIONS(12303), + [aux_sym_subparagraph_token1] = ACTIONS(12303), + [anon_sym_BSLASHitem] = ACTIONS(12303), + [anon_sym_LBRACK] = ACTIONS(12301), + [anon_sym_RBRACK] = ACTIONS(12301), + [anon_sym_LBRACE] = ACTIONS(12301), + [anon_sym_RBRACE] = ACTIONS(12301), + [anon_sym_LPAREN] = ACTIONS(12301), + [anon_sym_RPAREN] = ACTIONS(12301), + [anon_sym_COMMA] = ACTIONS(12301), + [anon_sym_EQ] = ACTIONS(12301), + [sym_word] = ACTIONS(12301), + [sym_param] = ACTIONS(12301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12301), + [anon_sym_DOLLAR] = ACTIONS(12303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12301), + [anon_sym_BSLASHbegin] = ACTIONS(12303), + [anon_sym_BSLASHcaption] = ACTIONS(12303), + [anon_sym_BSLASHcite] = ACTIONS(12303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCite] = ACTIONS(12303), + [anon_sym_BSLASHnocite] = ACTIONS(12303), + [anon_sym_BSLASHcitet] = ACTIONS(12303), + [anon_sym_BSLASHcitep] = ACTIONS(12303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteauthor] = ACTIONS(12303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitetitle] = ACTIONS(12303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteyear] = ACTIONS(12303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitedate] = ACTIONS(12303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteurl] = ACTIONS(12303), + [anon_sym_BSLASHfullcite] = ACTIONS(12303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12303), + [anon_sym_BSLASHcitealt] = ACTIONS(12303), + [anon_sym_BSLASHcitealp] = ACTIONS(12303), + [anon_sym_BSLASHcitetext] = ACTIONS(12303), + [anon_sym_BSLASHparencite] = ACTIONS(12303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHParencite] = ACTIONS(12303), + [anon_sym_BSLASHfootcite] = ACTIONS(12303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12303), + [anon_sym_BSLASHtextcite] = ACTIONS(12303), + [anon_sym_BSLASHTextcite] = ACTIONS(12303), + [anon_sym_BSLASHsmartcite] = ACTIONS(12303), + [anon_sym_BSLASHSmartcite] = ACTIONS(12303), + [anon_sym_BSLASHsupercite] = ACTIONS(12303), + [anon_sym_BSLASHautocite] = ACTIONS(12303), + [anon_sym_BSLASHAutocite] = ACTIONS(12303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHvolcite] = ACTIONS(12303), + [anon_sym_BSLASHVolcite] = ACTIONS(12303), + [anon_sym_BSLASHpvolcite] = ACTIONS(12303), + [anon_sym_BSLASHPvolcite] = ACTIONS(12303), + [anon_sym_BSLASHfvolcite] = ACTIONS(12303), + [anon_sym_BSLASHftvolcite] = ACTIONS(12303), + [anon_sym_BSLASHsvolcite] = ACTIONS(12303), + [anon_sym_BSLASHSvolcite] = ACTIONS(12303), + [anon_sym_BSLASHtvolcite] = ACTIONS(12303), + [anon_sym_BSLASHTvolcite] = ACTIONS(12303), + [anon_sym_BSLASHavolcite] = ACTIONS(12303), + [anon_sym_BSLASHAvolcite] = ACTIONS(12303), + [anon_sym_BSLASHnotecite] = ACTIONS(12303), + [anon_sym_BSLASHpnotecite] = ACTIONS(12303), + [anon_sym_BSLASHPnotecite] = ACTIONS(12303), + [anon_sym_BSLASHfnotecite] = ACTIONS(12303), + [anon_sym_BSLASHusepackage] = ACTIONS(12303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12303), + [anon_sym_BSLASHinclude] = ACTIONS(12303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12303), + [anon_sym_BSLASHinput] = ACTIONS(12303), + [anon_sym_BSLASHsubfile] = ACTIONS(12303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12303), + [anon_sym_BSLASHbibliography] = ACTIONS(12303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12303), + [anon_sym_BSLASHincludesvg] = ACTIONS(12303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12303), + [anon_sym_BSLASHimport] = ACTIONS(12303), + [anon_sym_BSLASHsubimport] = ACTIONS(12303), + [anon_sym_BSLASHinputfrom] = ACTIONS(12303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12303), + [anon_sym_BSLASHincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHlabel] = ACTIONS(12303), + [anon_sym_BSLASHref] = ACTIONS(12303), + [anon_sym_BSLASHvref] = ACTIONS(12303), + [anon_sym_BSLASHVref] = ACTIONS(12303), + [anon_sym_BSLASHautoref] = ACTIONS(12303), + [anon_sym_BSLASHpageref] = ACTIONS(12303), + [anon_sym_BSLASHcref] = ACTIONS(12303), + [anon_sym_BSLASHCref] = ACTIONS(12303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnameCref] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHlabelcref] = ACTIONS(12303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12303), + [anon_sym_BSLASHeqref] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange] = ACTIONS(12303), + [anon_sym_BSLASHCrefrange] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewlabel] = ACTIONS(12303), + [anon_sym_BSLASHnewcommand] = ACTIONS(12303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12303), + [anon_sym_BSLASHgls] = ACTIONS(12303), + [anon_sym_BSLASHGls] = ACTIONS(12303), + [anon_sym_BSLASHGLS] = ACTIONS(12303), + [anon_sym_BSLASHglspl] = ACTIONS(12303), + [anon_sym_BSLASHGlspl] = ACTIONS(12303), + [anon_sym_BSLASHGLSpl] = ACTIONS(12303), + [anon_sym_BSLASHglsdisp] = ACTIONS(12303), + [anon_sym_BSLASHglslink] = ACTIONS(12303), + [anon_sym_BSLASHglstext] = ACTIONS(12303), + [anon_sym_BSLASHGlstext] = ACTIONS(12303), + [anon_sym_BSLASHGLStext] = ACTIONS(12303), + [anon_sym_BSLASHglsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12303), + [anon_sym_BSLASHglsplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSplural] = ACTIONS(12303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHglsname] = ACTIONS(12303), + [anon_sym_BSLASHGlsname] = ACTIONS(12303), + [anon_sym_BSLASHGLSname] = ACTIONS(12303), + [anon_sym_BSLASHglssymbol] = ACTIONS(12303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12303), + [anon_sym_BSLASHglsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12303), + [anon_sym_BSLASHglsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12303), + [anon_sym_BSLASHglsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12303), + [anon_sym_BSLASHglsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12303), + [anon_sym_BSLASHglsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12303), + [anon_sym_BSLASHnewacronym] = ACTIONS(12303), + [anon_sym_BSLASHacrshort] = ACTIONS(12303), + [anon_sym_BSLASHAcrshort] = ACTIONS(12303), + [anon_sym_BSLASHACRshort] = ACTIONS(12303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12303), + [anon_sym_BSLASHacrlong] = ACTIONS(12303), + [anon_sym_BSLASHAcrlong] = ACTIONS(12303), + [anon_sym_BSLASHACRlong] = ACTIONS(12303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12303), + [anon_sym_BSLASHacrfull] = ACTIONS(12303), + [anon_sym_BSLASHAcrfull] = ACTIONS(12303), + [anon_sym_BSLASHACRfull] = ACTIONS(12303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12303), + [anon_sym_BSLASHacs] = ACTIONS(12303), + [anon_sym_BSLASHAcs] = ACTIONS(12303), + [anon_sym_BSLASHacsp] = ACTIONS(12303), + [anon_sym_BSLASHAcsp] = ACTIONS(12303), + [anon_sym_BSLASHacl] = ACTIONS(12303), + [anon_sym_BSLASHAcl] = ACTIONS(12303), + [anon_sym_BSLASHaclp] = ACTIONS(12303), + [anon_sym_BSLASHAclp] = ACTIONS(12303), + [anon_sym_BSLASHacf] = ACTIONS(12303), + [anon_sym_BSLASHAcf] = ACTIONS(12303), + [anon_sym_BSLASHacfp] = ACTIONS(12303), + [anon_sym_BSLASHAcfp] = ACTIONS(12303), + [anon_sym_BSLASHac] = ACTIONS(12303), + [anon_sym_BSLASHAc] = ACTIONS(12303), + [anon_sym_BSLASHacp] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12303), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12303), + [anon_sym_BSLASHcolor] = ACTIONS(12303), + [anon_sym_BSLASHcolorbox] = ACTIONS(12303), + [anon_sym_BSLASHtextcolor] = ACTIONS(12303), + [anon_sym_BSLASHpagecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12303), + }, + [547] = { + [ts_builtin_sym_end] = ACTIONS(12305), + [sym_generic_command_name] = ACTIONS(12307), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12307), + [aux_sym_chapter_token1] = ACTIONS(12307), + [aux_sym_section_token1] = ACTIONS(12307), + [aux_sym_subsection_token1] = ACTIONS(12307), + [aux_sym_subsubsection_token1] = ACTIONS(12307), + [aux_sym_paragraph_token1] = ACTIONS(12307), + [aux_sym_subparagraph_token1] = ACTIONS(12307), + [anon_sym_BSLASHitem] = ACTIONS(12307), + [anon_sym_LBRACK] = ACTIONS(12305), + [anon_sym_RBRACK] = ACTIONS(12305), + [anon_sym_LBRACE] = ACTIONS(12305), + [anon_sym_RBRACE] = ACTIONS(12305), + [anon_sym_LPAREN] = ACTIONS(12305), + [anon_sym_RPAREN] = ACTIONS(12305), + [anon_sym_COMMA] = ACTIONS(12305), + [anon_sym_EQ] = ACTIONS(12305), + [sym_word] = ACTIONS(12305), + [sym_param] = ACTIONS(12305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12305), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12305), + [anon_sym_DOLLAR] = ACTIONS(12307), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12305), + [anon_sym_BSLASHbegin] = ACTIONS(12307), + [anon_sym_BSLASHcaption] = ACTIONS(12307), + [anon_sym_BSLASHcite] = ACTIONS(12307), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCite] = ACTIONS(12307), + [anon_sym_BSLASHnocite] = ACTIONS(12307), + [anon_sym_BSLASHcitet] = ACTIONS(12307), + [anon_sym_BSLASHcitep] = ACTIONS(12307), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteauthor] = ACTIONS(12307), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12307), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitetitle] = ACTIONS(12307), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteyear] = ACTIONS(12307), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitedate] = ACTIONS(12307), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteurl] = ACTIONS(12307), + [anon_sym_BSLASHfullcite] = ACTIONS(12307), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12307), + [anon_sym_BSLASHcitealt] = ACTIONS(12307), + [anon_sym_BSLASHcitealp] = ACTIONS(12307), + [anon_sym_BSLASHcitetext] = ACTIONS(12307), + [anon_sym_BSLASHparencite] = ACTIONS(12307), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHParencite] = ACTIONS(12307), + [anon_sym_BSLASHfootcite] = ACTIONS(12307), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12307), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12307), + [anon_sym_BSLASHtextcite] = ACTIONS(12307), + [anon_sym_BSLASHTextcite] = ACTIONS(12307), + [anon_sym_BSLASHsmartcite] = ACTIONS(12307), + [anon_sym_BSLASHSmartcite] = ACTIONS(12307), + [anon_sym_BSLASHsupercite] = ACTIONS(12307), + [anon_sym_BSLASHautocite] = ACTIONS(12307), + [anon_sym_BSLASHAutocite] = ACTIONS(12307), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHvolcite] = ACTIONS(12307), + [anon_sym_BSLASHVolcite] = ACTIONS(12307), + [anon_sym_BSLASHpvolcite] = ACTIONS(12307), + [anon_sym_BSLASHPvolcite] = ACTIONS(12307), + [anon_sym_BSLASHfvolcite] = ACTIONS(12307), + [anon_sym_BSLASHftvolcite] = ACTIONS(12307), + [anon_sym_BSLASHsvolcite] = ACTIONS(12307), + [anon_sym_BSLASHSvolcite] = ACTIONS(12307), + [anon_sym_BSLASHtvolcite] = ACTIONS(12307), + [anon_sym_BSLASHTvolcite] = ACTIONS(12307), + [anon_sym_BSLASHavolcite] = ACTIONS(12307), + [anon_sym_BSLASHAvolcite] = ACTIONS(12307), + [anon_sym_BSLASHnotecite] = ACTIONS(12307), + [anon_sym_BSLASHpnotecite] = ACTIONS(12307), + [anon_sym_BSLASHPnotecite] = ACTIONS(12307), + [anon_sym_BSLASHfnotecite] = ACTIONS(12307), + [anon_sym_BSLASHusepackage] = ACTIONS(12307), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12307), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12307), + [anon_sym_BSLASHinclude] = ACTIONS(12307), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12307), + [anon_sym_BSLASHinput] = ACTIONS(12307), + [anon_sym_BSLASHsubfile] = ACTIONS(12307), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12307), + [anon_sym_BSLASHbibliography] = ACTIONS(12307), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12307), + [anon_sym_BSLASHincludesvg] = ACTIONS(12307), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12307), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12307), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12307), + [anon_sym_BSLASHimport] = ACTIONS(12307), + [anon_sym_BSLASHsubimport] = ACTIONS(12307), + [anon_sym_BSLASHinputfrom] = ACTIONS(12307), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12307), + [anon_sym_BSLASHincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHlabel] = ACTIONS(12307), + [anon_sym_BSLASHref] = ACTIONS(12307), + [anon_sym_BSLASHvref] = ACTIONS(12307), + [anon_sym_BSLASHVref] = ACTIONS(12307), + [anon_sym_BSLASHautoref] = ACTIONS(12307), + [anon_sym_BSLASHpageref] = ACTIONS(12307), + [anon_sym_BSLASHcref] = ACTIONS(12307), + [anon_sym_BSLASHCref] = ACTIONS(12307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnameCref] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHlabelcref] = ACTIONS(12307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12307), + [anon_sym_BSLASHeqref] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange] = ACTIONS(12307), + [anon_sym_BSLASHCrefrange] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewlabel] = ACTIONS(12307), + [anon_sym_BSLASHnewcommand] = ACTIONS(12307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12307), + [anon_sym_BSLASHgls] = ACTIONS(12307), + [anon_sym_BSLASHGls] = ACTIONS(12307), + [anon_sym_BSLASHGLS] = ACTIONS(12307), + [anon_sym_BSLASHglspl] = ACTIONS(12307), + [anon_sym_BSLASHGlspl] = ACTIONS(12307), + [anon_sym_BSLASHGLSpl] = ACTIONS(12307), + [anon_sym_BSLASHglsdisp] = ACTIONS(12307), + [anon_sym_BSLASHglslink] = ACTIONS(12307), + [anon_sym_BSLASHglstext] = ACTIONS(12307), + [anon_sym_BSLASHGlstext] = ACTIONS(12307), + [anon_sym_BSLASHGLStext] = ACTIONS(12307), + [anon_sym_BSLASHglsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12307), + [anon_sym_BSLASHglsplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSplural] = ACTIONS(12307), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHglsname] = ACTIONS(12307), + [anon_sym_BSLASHGlsname] = ACTIONS(12307), + [anon_sym_BSLASHGLSname] = ACTIONS(12307), + [anon_sym_BSLASHglssymbol] = ACTIONS(12307), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12307), + [anon_sym_BSLASHglsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12307), + [anon_sym_BSLASHglsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12307), + [anon_sym_BSLASHglsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12307), + [anon_sym_BSLASHglsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12307), + [anon_sym_BSLASHglsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12307), + [anon_sym_BSLASHnewacronym] = ACTIONS(12307), + [anon_sym_BSLASHacrshort] = ACTIONS(12307), + [anon_sym_BSLASHAcrshort] = ACTIONS(12307), + [anon_sym_BSLASHACRshort] = ACTIONS(12307), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12307), + [anon_sym_BSLASHacrlong] = ACTIONS(12307), + [anon_sym_BSLASHAcrlong] = ACTIONS(12307), + [anon_sym_BSLASHACRlong] = ACTIONS(12307), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12307), + [anon_sym_BSLASHacrfull] = ACTIONS(12307), + [anon_sym_BSLASHAcrfull] = ACTIONS(12307), + [anon_sym_BSLASHACRfull] = ACTIONS(12307), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12307), + [anon_sym_BSLASHacs] = ACTIONS(12307), + [anon_sym_BSLASHAcs] = ACTIONS(12307), + [anon_sym_BSLASHacsp] = ACTIONS(12307), + [anon_sym_BSLASHAcsp] = ACTIONS(12307), + [anon_sym_BSLASHacl] = ACTIONS(12307), + [anon_sym_BSLASHAcl] = ACTIONS(12307), + [anon_sym_BSLASHaclp] = ACTIONS(12307), + [anon_sym_BSLASHAclp] = ACTIONS(12307), + [anon_sym_BSLASHacf] = ACTIONS(12307), + [anon_sym_BSLASHAcf] = ACTIONS(12307), + [anon_sym_BSLASHacfp] = ACTIONS(12307), + [anon_sym_BSLASHAcfp] = ACTIONS(12307), + [anon_sym_BSLASHac] = ACTIONS(12307), + [anon_sym_BSLASHAc] = ACTIONS(12307), + [anon_sym_BSLASHacp] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12307), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12307), + [anon_sym_BSLASHcolor] = ACTIONS(12307), + [anon_sym_BSLASHcolorbox] = ACTIONS(12307), + [anon_sym_BSLASHtextcolor] = ACTIONS(12307), + [anon_sym_BSLASHpagecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12307), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12307), + }, + [548] = { + [ts_builtin_sym_end] = ACTIONS(12309), + [sym_generic_command_name] = ACTIONS(12311), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12311), + [aux_sym_chapter_token1] = ACTIONS(12311), + [aux_sym_section_token1] = ACTIONS(12311), + [aux_sym_subsection_token1] = ACTIONS(12311), + [aux_sym_subsubsection_token1] = ACTIONS(12311), + [aux_sym_paragraph_token1] = ACTIONS(12311), + [aux_sym_subparagraph_token1] = ACTIONS(12311), + [anon_sym_BSLASHitem] = ACTIONS(12311), + [anon_sym_LBRACK] = ACTIONS(12309), + [anon_sym_RBRACK] = ACTIONS(12309), + [anon_sym_LBRACE] = ACTIONS(12309), + [anon_sym_RBRACE] = ACTIONS(12309), + [anon_sym_LPAREN] = ACTIONS(12309), + [anon_sym_RPAREN] = ACTIONS(12309), + [anon_sym_COMMA] = ACTIONS(12309), + [anon_sym_EQ] = ACTIONS(12309), + [sym_word] = ACTIONS(12309), + [sym_param] = ACTIONS(12309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12309), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12309), + [anon_sym_DOLLAR] = ACTIONS(12311), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12309), + [anon_sym_BSLASHbegin] = ACTIONS(12311), + [anon_sym_BSLASHcaption] = ACTIONS(12311), + [anon_sym_BSLASHcite] = ACTIONS(12311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCite] = ACTIONS(12311), + [anon_sym_BSLASHnocite] = ACTIONS(12311), + [anon_sym_BSLASHcitet] = ACTIONS(12311), + [anon_sym_BSLASHcitep] = ACTIONS(12311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteauthor] = ACTIONS(12311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitetitle] = ACTIONS(12311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteyear] = ACTIONS(12311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitedate] = ACTIONS(12311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteurl] = ACTIONS(12311), + [anon_sym_BSLASHfullcite] = ACTIONS(12311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12311), + [anon_sym_BSLASHcitealt] = ACTIONS(12311), + [anon_sym_BSLASHcitealp] = ACTIONS(12311), + [anon_sym_BSLASHcitetext] = ACTIONS(12311), + [anon_sym_BSLASHparencite] = ACTIONS(12311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHParencite] = ACTIONS(12311), + [anon_sym_BSLASHfootcite] = ACTIONS(12311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12311), + [anon_sym_BSLASHtextcite] = ACTIONS(12311), + [anon_sym_BSLASHTextcite] = ACTIONS(12311), + [anon_sym_BSLASHsmartcite] = ACTIONS(12311), + [anon_sym_BSLASHSmartcite] = ACTIONS(12311), + [anon_sym_BSLASHsupercite] = ACTIONS(12311), + [anon_sym_BSLASHautocite] = ACTIONS(12311), + [anon_sym_BSLASHAutocite] = ACTIONS(12311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHvolcite] = ACTIONS(12311), + [anon_sym_BSLASHVolcite] = ACTIONS(12311), + [anon_sym_BSLASHpvolcite] = ACTIONS(12311), + [anon_sym_BSLASHPvolcite] = ACTIONS(12311), + [anon_sym_BSLASHfvolcite] = ACTIONS(12311), + [anon_sym_BSLASHftvolcite] = ACTIONS(12311), + [anon_sym_BSLASHsvolcite] = ACTIONS(12311), + [anon_sym_BSLASHSvolcite] = ACTIONS(12311), + [anon_sym_BSLASHtvolcite] = ACTIONS(12311), + [anon_sym_BSLASHTvolcite] = ACTIONS(12311), + [anon_sym_BSLASHavolcite] = ACTIONS(12311), + [anon_sym_BSLASHAvolcite] = ACTIONS(12311), + [anon_sym_BSLASHnotecite] = ACTIONS(12311), + [anon_sym_BSLASHpnotecite] = ACTIONS(12311), + [anon_sym_BSLASHPnotecite] = ACTIONS(12311), + [anon_sym_BSLASHfnotecite] = ACTIONS(12311), + [anon_sym_BSLASHusepackage] = ACTIONS(12311), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12311), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12311), + [anon_sym_BSLASHinclude] = ACTIONS(12311), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12311), + [anon_sym_BSLASHinput] = ACTIONS(12311), + [anon_sym_BSLASHsubfile] = ACTIONS(12311), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12311), + [anon_sym_BSLASHbibliography] = ACTIONS(12311), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12311), + [anon_sym_BSLASHincludesvg] = ACTIONS(12311), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12311), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12311), + [anon_sym_BSLASHimport] = ACTIONS(12311), + [anon_sym_BSLASHsubimport] = ACTIONS(12311), + [anon_sym_BSLASHinputfrom] = ACTIONS(12311), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12311), + [anon_sym_BSLASHincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHlabel] = ACTIONS(12311), + [anon_sym_BSLASHref] = ACTIONS(12311), + [anon_sym_BSLASHvref] = ACTIONS(12311), + [anon_sym_BSLASHVref] = ACTIONS(12311), + [anon_sym_BSLASHautoref] = ACTIONS(12311), + [anon_sym_BSLASHpageref] = ACTIONS(12311), + [anon_sym_BSLASHcref] = ACTIONS(12311), + [anon_sym_BSLASHCref] = ACTIONS(12311), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnameCref] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHlabelcref] = ACTIONS(12311), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12311), + [anon_sym_BSLASHeqref] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange] = ACTIONS(12311), + [anon_sym_BSLASHCrefrange] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewlabel] = ACTIONS(12311), + [anon_sym_BSLASHnewcommand] = ACTIONS(12311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12311), + [anon_sym_BSLASHgls] = ACTIONS(12311), + [anon_sym_BSLASHGls] = ACTIONS(12311), + [anon_sym_BSLASHGLS] = ACTIONS(12311), + [anon_sym_BSLASHglspl] = ACTIONS(12311), + [anon_sym_BSLASHGlspl] = ACTIONS(12311), + [anon_sym_BSLASHGLSpl] = ACTIONS(12311), + [anon_sym_BSLASHglsdisp] = ACTIONS(12311), + [anon_sym_BSLASHglslink] = ACTIONS(12311), + [anon_sym_BSLASHglstext] = ACTIONS(12311), + [anon_sym_BSLASHGlstext] = ACTIONS(12311), + [anon_sym_BSLASHGLStext] = ACTIONS(12311), + [anon_sym_BSLASHglsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12311), + [anon_sym_BSLASHglsplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSplural] = ACTIONS(12311), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHglsname] = ACTIONS(12311), + [anon_sym_BSLASHGlsname] = ACTIONS(12311), + [anon_sym_BSLASHGLSname] = ACTIONS(12311), + [anon_sym_BSLASHglssymbol] = ACTIONS(12311), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12311), + [anon_sym_BSLASHglsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12311), + [anon_sym_BSLASHglsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12311), + [anon_sym_BSLASHglsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12311), + [anon_sym_BSLASHglsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12311), + [anon_sym_BSLASHglsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12311), + [anon_sym_BSLASHnewacronym] = ACTIONS(12311), + [anon_sym_BSLASHacrshort] = ACTIONS(12311), + [anon_sym_BSLASHAcrshort] = ACTIONS(12311), + [anon_sym_BSLASHACRshort] = ACTIONS(12311), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12311), + [anon_sym_BSLASHacrlong] = ACTIONS(12311), + [anon_sym_BSLASHAcrlong] = ACTIONS(12311), + [anon_sym_BSLASHACRlong] = ACTIONS(12311), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12311), + [anon_sym_BSLASHacrfull] = ACTIONS(12311), + [anon_sym_BSLASHAcrfull] = ACTIONS(12311), + [anon_sym_BSLASHACRfull] = ACTIONS(12311), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12311), + [anon_sym_BSLASHacs] = ACTIONS(12311), + [anon_sym_BSLASHAcs] = ACTIONS(12311), + [anon_sym_BSLASHacsp] = ACTIONS(12311), + [anon_sym_BSLASHAcsp] = ACTIONS(12311), + [anon_sym_BSLASHacl] = ACTIONS(12311), + [anon_sym_BSLASHAcl] = ACTIONS(12311), + [anon_sym_BSLASHaclp] = ACTIONS(12311), + [anon_sym_BSLASHAclp] = ACTIONS(12311), + [anon_sym_BSLASHacf] = ACTIONS(12311), + [anon_sym_BSLASHAcf] = ACTIONS(12311), + [anon_sym_BSLASHacfp] = ACTIONS(12311), + [anon_sym_BSLASHAcfp] = ACTIONS(12311), + [anon_sym_BSLASHac] = ACTIONS(12311), + [anon_sym_BSLASHAc] = ACTIONS(12311), + [anon_sym_BSLASHacp] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12311), + [anon_sym_BSLASHcolor] = ACTIONS(12311), + [anon_sym_BSLASHcolorbox] = ACTIONS(12311), + [anon_sym_BSLASHtextcolor] = ACTIONS(12311), + [anon_sym_BSLASHpagecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12311), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12311), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12311), + }, + [549] = { + [ts_builtin_sym_end] = ACTIONS(12313), + [sym_generic_command_name] = ACTIONS(12315), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12315), + [aux_sym_chapter_token1] = ACTIONS(12315), + [aux_sym_section_token1] = ACTIONS(12315), + [aux_sym_subsection_token1] = ACTIONS(12315), + [aux_sym_subsubsection_token1] = ACTIONS(12315), + [aux_sym_paragraph_token1] = ACTIONS(12315), + [aux_sym_subparagraph_token1] = ACTIONS(12315), + [anon_sym_BSLASHitem] = ACTIONS(12315), + [anon_sym_LBRACK] = ACTIONS(12313), + [anon_sym_RBRACK] = ACTIONS(12313), + [anon_sym_LBRACE] = ACTIONS(12313), + [anon_sym_RBRACE] = ACTIONS(12313), + [anon_sym_LPAREN] = ACTIONS(12313), + [anon_sym_RPAREN] = ACTIONS(12313), + [anon_sym_COMMA] = ACTIONS(12313), + [anon_sym_EQ] = ACTIONS(12313), + [sym_word] = ACTIONS(12313), + [sym_param] = ACTIONS(12313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12313), + [anon_sym_DOLLAR] = ACTIONS(12315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12313), + [anon_sym_BSLASHbegin] = ACTIONS(12315), + [anon_sym_BSLASHcaption] = ACTIONS(12315), + [anon_sym_BSLASHcite] = ACTIONS(12315), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCite] = ACTIONS(12315), + [anon_sym_BSLASHnocite] = ACTIONS(12315), + [anon_sym_BSLASHcitet] = ACTIONS(12315), + [anon_sym_BSLASHcitep] = ACTIONS(12315), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteauthor] = ACTIONS(12315), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12315), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitetitle] = ACTIONS(12315), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteyear] = ACTIONS(12315), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitedate] = ACTIONS(12315), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteurl] = ACTIONS(12315), + [anon_sym_BSLASHfullcite] = ACTIONS(12315), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12315), + [anon_sym_BSLASHcitealt] = ACTIONS(12315), + [anon_sym_BSLASHcitealp] = ACTIONS(12315), + [anon_sym_BSLASHcitetext] = ACTIONS(12315), + [anon_sym_BSLASHparencite] = ACTIONS(12315), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHParencite] = ACTIONS(12315), + [anon_sym_BSLASHfootcite] = ACTIONS(12315), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12315), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12315), + [anon_sym_BSLASHtextcite] = ACTIONS(12315), + [anon_sym_BSLASHTextcite] = ACTIONS(12315), + [anon_sym_BSLASHsmartcite] = ACTIONS(12315), + [anon_sym_BSLASHSmartcite] = ACTIONS(12315), + [anon_sym_BSLASHsupercite] = ACTIONS(12315), + [anon_sym_BSLASHautocite] = ACTIONS(12315), + [anon_sym_BSLASHAutocite] = ACTIONS(12315), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHvolcite] = ACTIONS(12315), + [anon_sym_BSLASHVolcite] = ACTIONS(12315), + [anon_sym_BSLASHpvolcite] = ACTIONS(12315), + [anon_sym_BSLASHPvolcite] = ACTIONS(12315), + [anon_sym_BSLASHfvolcite] = ACTIONS(12315), + [anon_sym_BSLASHftvolcite] = ACTIONS(12315), + [anon_sym_BSLASHsvolcite] = ACTIONS(12315), + [anon_sym_BSLASHSvolcite] = ACTIONS(12315), + [anon_sym_BSLASHtvolcite] = ACTIONS(12315), + [anon_sym_BSLASHTvolcite] = ACTIONS(12315), + [anon_sym_BSLASHavolcite] = ACTIONS(12315), + [anon_sym_BSLASHAvolcite] = ACTIONS(12315), + [anon_sym_BSLASHnotecite] = ACTIONS(12315), + [anon_sym_BSLASHpnotecite] = ACTIONS(12315), + [anon_sym_BSLASHPnotecite] = ACTIONS(12315), + [anon_sym_BSLASHfnotecite] = ACTIONS(12315), + [anon_sym_BSLASHusepackage] = ACTIONS(12315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12315), + [anon_sym_BSLASHinclude] = ACTIONS(12315), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12315), + [anon_sym_BSLASHinput] = ACTIONS(12315), + [anon_sym_BSLASHsubfile] = ACTIONS(12315), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12315), + [anon_sym_BSLASHbibliography] = ACTIONS(12315), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12315), + [anon_sym_BSLASHincludesvg] = ACTIONS(12315), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12315), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12315), + [anon_sym_BSLASHimport] = ACTIONS(12315), + [anon_sym_BSLASHsubimport] = ACTIONS(12315), + [anon_sym_BSLASHinputfrom] = ACTIONS(12315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12315), + [anon_sym_BSLASHincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHlabel] = ACTIONS(12315), + [anon_sym_BSLASHref] = ACTIONS(12315), + [anon_sym_BSLASHvref] = ACTIONS(12315), + [anon_sym_BSLASHVref] = ACTIONS(12315), + [anon_sym_BSLASHautoref] = ACTIONS(12315), + [anon_sym_BSLASHpageref] = ACTIONS(12315), + [anon_sym_BSLASHcref] = ACTIONS(12315), + [anon_sym_BSLASHCref] = ACTIONS(12315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnameCref] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHlabelcref] = ACTIONS(12315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12315), + [anon_sym_BSLASHeqref] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange] = ACTIONS(12315), + [anon_sym_BSLASHCrefrange] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewlabel] = ACTIONS(12315), + [anon_sym_BSLASHnewcommand] = ACTIONS(12315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12315), + [anon_sym_BSLASHgls] = ACTIONS(12315), + [anon_sym_BSLASHGls] = ACTIONS(12315), + [anon_sym_BSLASHGLS] = ACTIONS(12315), + [anon_sym_BSLASHglspl] = ACTIONS(12315), + [anon_sym_BSLASHGlspl] = ACTIONS(12315), + [anon_sym_BSLASHGLSpl] = ACTIONS(12315), + [anon_sym_BSLASHglsdisp] = ACTIONS(12315), + [anon_sym_BSLASHglslink] = ACTIONS(12315), + [anon_sym_BSLASHglstext] = ACTIONS(12315), + [anon_sym_BSLASHGlstext] = ACTIONS(12315), + [anon_sym_BSLASHGLStext] = ACTIONS(12315), + [anon_sym_BSLASHglsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12315), + [anon_sym_BSLASHglsplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSplural] = ACTIONS(12315), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHglsname] = ACTIONS(12315), + [anon_sym_BSLASHGlsname] = ACTIONS(12315), + [anon_sym_BSLASHGLSname] = ACTIONS(12315), + [anon_sym_BSLASHglssymbol] = ACTIONS(12315), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12315), + [anon_sym_BSLASHglsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12315), + [anon_sym_BSLASHglsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12315), + [anon_sym_BSLASHglsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12315), + [anon_sym_BSLASHglsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12315), + [anon_sym_BSLASHglsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12315), + [anon_sym_BSLASHnewacronym] = ACTIONS(12315), + [anon_sym_BSLASHacrshort] = ACTIONS(12315), + [anon_sym_BSLASHAcrshort] = ACTIONS(12315), + [anon_sym_BSLASHACRshort] = ACTIONS(12315), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12315), + [anon_sym_BSLASHacrlong] = ACTIONS(12315), + [anon_sym_BSLASHAcrlong] = ACTIONS(12315), + [anon_sym_BSLASHACRlong] = ACTIONS(12315), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12315), + [anon_sym_BSLASHacrfull] = ACTIONS(12315), + [anon_sym_BSLASHAcrfull] = ACTIONS(12315), + [anon_sym_BSLASHACRfull] = ACTIONS(12315), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12315), + [anon_sym_BSLASHacs] = ACTIONS(12315), + [anon_sym_BSLASHAcs] = ACTIONS(12315), + [anon_sym_BSLASHacsp] = ACTIONS(12315), + [anon_sym_BSLASHAcsp] = ACTIONS(12315), + [anon_sym_BSLASHacl] = ACTIONS(12315), + [anon_sym_BSLASHAcl] = ACTIONS(12315), + [anon_sym_BSLASHaclp] = ACTIONS(12315), + [anon_sym_BSLASHAclp] = ACTIONS(12315), + [anon_sym_BSLASHacf] = ACTIONS(12315), + [anon_sym_BSLASHAcf] = ACTIONS(12315), + [anon_sym_BSLASHacfp] = ACTIONS(12315), + [anon_sym_BSLASHAcfp] = ACTIONS(12315), + [anon_sym_BSLASHac] = ACTIONS(12315), + [anon_sym_BSLASHAc] = ACTIONS(12315), + [anon_sym_BSLASHacp] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12315), + [anon_sym_BSLASHcolor] = ACTIONS(12315), + [anon_sym_BSLASHcolorbox] = ACTIONS(12315), + [anon_sym_BSLASHtextcolor] = ACTIONS(12315), + [anon_sym_BSLASHpagecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12315), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12315), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12315), + }, + [550] = { + [ts_builtin_sym_end] = ACTIONS(12317), + [sym_generic_command_name] = ACTIONS(12319), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12319), + [aux_sym_chapter_token1] = ACTIONS(12319), + [aux_sym_section_token1] = ACTIONS(12319), + [aux_sym_subsection_token1] = ACTIONS(12319), + [aux_sym_subsubsection_token1] = ACTIONS(12319), + [aux_sym_paragraph_token1] = ACTIONS(12319), + [aux_sym_subparagraph_token1] = ACTIONS(12319), + [anon_sym_BSLASHitem] = ACTIONS(12319), + [anon_sym_LBRACK] = ACTIONS(12317), + [anon_sym_RBRACK] = ACTIONS(12317), + [anon_sym_LBRACE] = ACTIONS(12317), + [anon_sym_RBRACE] = ACTIONS(12317), + [anon_sym_LPAREN] = ACTIONS(12317), + [anon_sym_RPAREN] = ACTIONS(12317), + [anon_sym_COMMA] = ACTIONS(12317), + [anon_sym_EQ] = ACTIONS(12317), + [sym_word] = ACTIONS(12317), + [sym_param] = ACTIONS(12317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12317), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12317), + [anon_sym_DOLLAR] = ACTIONS(12319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12317), + [anon_sym_BSLASHbegin] = ACTIONS(12319), + [anon_sym_BSLASHcaption] = ACTIONS(12319), + [anon_sym_BSLASHcite] = ACTIONS(12319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCite] = ACTIONS(12319), + [anon_sym_BSLASHnocite] = ACTIONS(12319), + [anon_sym_BSLASHcitet] = ACTIONS(12319), + [anon_sym_BSLASHcitep] = ACTIONS(12319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteauthor] = ACTIONS(12319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitetitle] = ACTIONS(12319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteyear] = ACTIONS(12319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitedate] = ACTIONS(12319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteurl] = ACTIONS(12319), + [anon_sym_BSLASHfullcite] = ACTIONS(12319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12319), + [anon_sym_BSLASHcitealt] = ACTIONS(12319), + [anon_sym_BSLASHcitealp] = ACTIONS(12319), + [anon_sym_BSLASHcitetext] = ACTIONS(12319), + [anon_sym_BSLASHparencite] = ACTIONS(12319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHParencite] = ACTIONS(12319), + [anon_sym_BSLASHfootcite] = ACTIONS(12319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12319), + [anon_sym_BSLASHtextcite] = ACTIONS(12319), + [anon_sym_BSLASHTextcite] = ACTIONS(12319), + [anon_sym_BSLASHsmartcite] = ACTIONS(12319), + [anon_sym_BSLASHSmartcite] = ACTIONS(12319), + [anon_sym_BSLASHsupercite] = ACTIONS(12319), + [anon_sym_BSLASHautocite] = ACTIONS(12319), + [anon_sym_BSLASHAutocite] = ACTIONS(12319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHvolcite] = ACTIONS(12319), + [anon_sym_BSLASHVolcite] = ACTIONS(12319), + [anon_sym_BSLASHpvolcite] = ACTIONS(12319), + [anon_sym_BSLASHPvolcite] = ACTIONS(12319), + [anon_sym_BSLASHfvolcite] = ACTIONS(12319), + [anon_sym_BSLASHftvolcite] = ACTIONS(12319), + [anon_sym_BSLASHsvolcite] = ACTIONS(12319), + [anon_sym_BSLASHSvolcite] = ACTIONS(12319), + [anon_sym_BSLASHtvolcite] = ACTIONS(12319), + [anon_sym_BSLASHTvolcite] = ACTIONS(12319), + [anon_sym_BSLASHavolcite] = ACTIONS(12319), + [anon_sym_BSLASHAvolcite] = ACTIONS(12319), + [anon_sym_BSLASHnotecite] = ACTIONS(12319), + [anon_sym_BSLASHpnotecite] = ACTIONS(12319), + [anon_sym_BSLASHPnotecite] = ACTIONS(12319), + [anon_sym_BSLASHfnotecite] = ACTIONS(12319), + [anon_sym_BSLASHusepackage] = ACTIONS(12319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12319), + [anon_sym_BSLASHinclude] = ACTIONS(12319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12319), + [anon_sym_BSLASHinput] = ACTIONS(12319), + [anon_sym_BSLASHsubfile] = ACTIONS(12319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12319), + [anon_sym_BSLASHbibliography] = ACTIONS(12319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12319), + [anon_sym_BSLASHincludesvg] = ACTIONS(12319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12319), + [anon_sym_BSLASHimport] = ACTIONS(12319), + [anon_sym_BSLASHsubimport] = ACTIONS(12319), + [anon_sym_BSLASHinputfrom] = ACTIONS(12319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12319), + [anon_sym_BSLASHincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHlabel] = ACTIONS(12319), + [anon_sym_BSLASHref] = ACTIONS(12319), + [anon_sym_BSLASHvref] = ACTIONS(12319), + [anon_sym_BSLASHVref] = ACTIONS(12319), + [anon_sym_BSLASHautoref] = ACTIONS(12319), + [anon_sym_BSLASHpageref] = ACTIONS(12319), + [anon_sym_BSLASHcref] = ACTIONS(12319), + [anon_sym_BSLASHCref] = ACTIONS(12319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnameCref] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHlabelcref] = ACTIONS(12319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12319), + [anon_sym_BSLASHeqref] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange] = ACTIONS(12319), + [anon_sym_BSLASHCrefrange] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewlabel] = ACTIONS(12319), + [anon_sym_BSLASHnewcommand] = ACTIONS(12319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12319), + [anon_sym_BSLASHgls] = ACTIONS(12319), + [anon_sym_BSLASHGls] = ACTIONS(12319), + [anon_sym_BSLASHGLS] = ACTIONS(12319), + [anon_sym_BSLASHglspl] = ACTIONS(12319), + [anon_sym_BSLASHGlspl] = ACTIONS(12319), + [anon_sym_BSLASHGLSpl] = ACTIONS(12319), + [anon_sym_BSLASHglsdisp] = ACTIONS(12319), + [anon_sym_BSLASHglslink] = ACTIONS(12319), + [anon_sym_BSLASHglstext] = ACTIONS(12319), + [anon_sym_BSLASHGlstext] = ACTIONS(12319), + [anon_sym_BSLASHGLStext] = ACTIONS(12319), + [anon_sym_BSLASHglsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12319), + [anon_sym_BSLASHglsplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSplural] = ACTIONS(12319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHglsname] = ACTIONS(12319), + [anon_sym_BSLASHGlsname] = ACTIONS(12319), + [anon_sym_BSLASHGLSname] = ACTIONS(12319), + [anon_sym_BSLASHglssymbol] = ACTIONS(12319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12319), + [anon_sym_BSLASHglsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12319), + [anon_sym_BSLASHglsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12319), + [anon_sym_BSLASHglsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12319), + [anon_sym_BSLASHglsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12319), + [anon_sym_BSLASHglsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12319), + [anon_sym_BSLASHnewacronym] = ACTIONS(12319), + [anon_sym_BSLASHacrshort] = ACTIONS(12319), + [anon_sym_BSLASHAcrshort] = ACTIONS(12319), + [anon_sym_BSLASHACRshort] = ACTIONS(12319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12319), + [anon_sym_BSLASHacrlong] = ACTIONS(12319), + [anon_sym_BSLASHAcrlong] = ACTIONS(12319), + [anon_sym_BSLASHACRlong] = ACTIONS(12319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12319), + [anon_sym_BSLASHacrfull] = ACTIONS(12319), + [anon_sym_BSLASHAcrfull] = ACTIONS(12319), + [anon_sym_BSLASHACRfull] = ACTIONS(12319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12319), + [anon_sym_BSLASHacs] = ACTIONS(12319), + [anon_sym_BSLASHAcs] = ACTIONS(12319), + [anon_sym_BSLASHacsp] = ACTIONS(12319), + [anon_sym_BSLASHAcsp] = ACTIONS(12319), + [anon_sym_BSLASHacl] = ACTIONS(12319), + [anon_sym_BSLASHAcl] = ACTIONS(12319), + [anon_sym_BSLASHaclp] = ACTIONS(12319), + [anon_sym_BSLASHAclp] = ACTIONS(12319), + [anon_sym_BSLASHacf] = ACTIONS(12319), + [anon_sym_BSLASHAcf] = ACTIONS(12319), + [anon_sym_BSLASHacfp] = ACTIONS(12319), + [anon_sym_BSLASHAcfp] = ACTIONS(12319), + [anon_sym_BSLASHac] = ACTIONS(12319), + [anon_sym_BSLASHAc] = ACTIONS(12319), + [anon_sym_BSLASHacp] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12319), + [anon_sym_BSLASHcolor] = ACTIONS(12319), + [anon_sym_BSLASHcolorbox] = ACTIONS(12319), + [anon_sym_BSLASHtextcolor] = ACTIONS(12319), + [anon_sym_BSLASHpagecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12319), + }, + [551] = { + [ts_builtin_sym_end] = ACTIONS(12321), + [sym_generic_command_name] = ACTIONS(12323), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12323), + [aux_sym_chapter_token1] = ACTIONS(12323), + [aux_sym_section_token1] = ACTIONS(12323), + [aux_sym_subsection_token1] = ACTIONS(12323), + [aux_sym_subsubsection_token1] = ACTIONS(12323), + [aux_sym_paragraph_token1] = ACTIONS(12323), + [aux_sym_subparagraph_token1] = ACTIONS(12323), + [anon_sym_BSLASHitem] = ACTIONS(12323), + [anon_sym_LBRACK] = ACTIONS(12321), + [anon_sym_RBRACK] = ACTIONS(12321), + [anon_sym_LBRACE] = ACTIONS(12321), + [anon_sym_RBRACE] = ACTIONS(12321), + [anon_sym_LPAREN] = ACTIONS(12321), + [anon_sym_RPAREN] = ACTIONS(12321), + [anon_sym_COMMA] = ACTIONS(12321), + [anon_sym_EQ] = ACTIONS(12321), + [sym_word] = ACTIONS(12321), + [sym_param] = ACTIONS(12321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12321), + [anon_sym_DOLLAR] = ACTIONS(12323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12321), + [anon_sym_BSLASHbegin] = ACTIONS(12323), + [anon_sym_BSLASHcaption] = ACTIONS(12323), + [anon_sym_BSLASHcite] = ACTIONS(12323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCite] = ACTIONS(12323), + [anon_sym_BSLASHnocite] = ACTIONS(12323), + [anon_sym_BSLASHcitet] = ACTIONS(12323), + [anon_sym_BSLASHcitep] = ACTIONS(12323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteauthor] = ACTIONS(12323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitetitle] = ACTIONS(12323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteyear] = ACTIONS(12323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitedate] = ACTIONS(12323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteurl] = ACTIONS(12323), + [anon_sym_BSLASHfullcite] = ACTIONS(12323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12323), + [anon_sym_BSLASHcitealt] = ACTIONS(12323), + [anon_sym_BSLASHcitealp] = ACTIONS(12323), + [anon_sym_BSLASHcitetext] = ACTIONS(12323), + [anon_sym_BSLASHparencite] = ACTIONS(12323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHParencite] = ACTIONS(12323), + [anon_sym_BSLASHfootcite] = ACTIONS(12323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12323), + [anon_sym_BSLASHtextcite] = ACTIONS(12323), + [anon_sym_BSLASHTextcite] = ACTIONS(12323), + [anon_sym_BSLASHsmartcite] = ACTIONS(12323), + [anon_sym_BSLASHSmartcite] = ACTIONS(12323), + [anon_sym_BSLASHsupercite] = ACTIONS(12323), + [anon_sym_BSLASHautocite] = ACTIONS(12323), + [anon_sym_BSLASHAutocite] = ACTIONS(12323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHvolcite] = ACTIONS(12323), + [anon_sym_BSLASHVolcite] = ACTIONS(12323), + [anon_sym_BSLASHpvolcite] = ACTIONS(12323), + [anon_sym_BSLASHPvolcite] = ACTIONS(12323), + [anon_sym_BSLASHfvolcite] = ACTIONS(12323), + [anon_sym_BSLASHftvolcite] = ACTIONS(12323), + [anon_sym_BSLASHsvolcite] = ACTIONS(12323), + [anon_sym_BSLASHSvolcite] = ACTIONS(12323), + [anon_sym_BSLASHtvolcite] = ACTIONS(12323), + [anon_sym_BSLASHTvolcite] = ACTIONS(12323), + [anon_sym_BSLASHavolcite] = ACTIONS(12323), + [anon_sym_BSLASHAvolcite] = ACTIONS(12323), + [anon_sym_BSLASHnotecite] = ACTIONS(12323), + [anon_sym_BSLASHpnotecite] = ACTIONS(12323), + [anon_sym_BSLASHPnotecite] = ACTIONS(12323), + [anon_sym_BSLASHfnotecite] = ACTIONS(12323), + [anon_sym_BSLASHusepackage] = ACTIONS(12323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12323), + [anon_sym_BSLASHinclude] = ACTIONS(12323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12323), + [anon_sym_BSLASHinput] = ACTIONS(12323), + [anon_sym_BSLASHsubfile] = ACTIONS(12323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12323), + [anon_sym_BSLASHbibliography] = ACTIONS(12323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12323), + [anon_sym_BSLASHincludesvg] = ACTIONS(12323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12323), + [anon_sym_BSLASHimport] = ACTIONS(12323), + [anon_sym_BSLASHsubimport] = ACTIONS(12323), + [anon_sym_BSLASHinputfrom] = ACTIONS(12323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12323), + [anon_sym_BSLASHincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHlabel] = ACTIONS(12323), + [anon_sym_BSLASHref] = ACTIONS(12323), + [anon_sym_BSLASHvref] = ACTIONS(12323), + [anon_sym_BSLASHVref] = ACTIONS(12323), + [anon_sym_BSLASHautoref] = ACTIONS(12323), + [anon_sym_BSLASHpageref] = ACTIONS(12323), + [anon_sym_BSLASHcref] = ACTIONS(12323), + [anon_sym_BSLASHCref] = ACTIONS(12323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnameCref] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHlabelcref] = ACTIONS(12323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12323), + [anon_sym_BSLASHeqref] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange] = ACTIONS(12323), + [anon_sym_BSLASHCrefrange] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewlabel] = ACTIONS(12323), + [anon_sym_BSLASHnewcommand] = ACTIONS(12323), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12323), + [anon_sym_BSLASHgls] = ACTIONS(12323), + [anon_sym_BSLASHGls] = ACTIONS(12323), + [anon_sym_BSLASHGLS] = ACTIONS(12323), + [anon_sym_BSLASHglspl] = ACTIONS(12323), + [anon_sym_BSLASHGlspl] = ACTIONS(12323), + [anon_sym_BSLASHGLSpl] = ACTIONS(12323), + [anon_sym_BSLASHglsdisp] = ACTIONS(12323), + [anon_sym_BSLASHglslink] = ACTIONS(12323), + [anon_sym_BSLASHglstext] = ACTIONS(12323), + [anon_sym_BSLASHGlstext] = ACTIONS(12323), + [anon_sym_BSLASHGLStext] = ACTIONS(12323), + [anon_sym_BSLASHglsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12323), + [anon_sym_BSLASHglsplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSplural] = ACTIONS(12323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHglsname] = ACTIONS(12323), + [anon_sym_BSLASHGlsname] = ACTIONS(12323), + [anon_sym_BSLASHGLSname] = ACTIONS(12323), + [anon_sym_BSLASHglssymbol] = ACTIONS(12323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12323), + [anon_sym_BSLASHglsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12323), + [anon_sym_BSLASHglsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12323), + [anon_sym_BSLASHglsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12323), + [anon_sym_BSLASHglsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12323), + [anon_sym_BSLASHglsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12323), + [anon_sym_BSLASHnewacronym] = ACTIONS(12323), + [anon_sym_BSLASHacrshort] = ACTIONS(12323), + [anon_sym_BSLASHAcrshort] = ACTIONS(12323), + [anon_sym_BSLASHACRshort] = ACTIONS(12323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12323), + [anon_sym_BSLASHacrlong] = ACTIONS(12323), + [anon_sym_BSLASHAcrlong] = ACTIONS(12323), + [anon_sym_BSLASHACRlong] = ACTIONS(12323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12323), + [anon_sym_BSLASHacrfull] = ACTIONS(12323), + [anon_sym_BSLASHAcrfull] = ACTIONS(12323), + [anon_sym_BSLASHACRfull] = ACTIONS(12323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12323), + [anon_sym_BSLASHacs] = ACTIONS(12323), + [anon_sym_BSLASHAcs] = ACTIONS(12323), + [anon_sym_BSLASHacsp] = ACTIONS(12323), + [anon_sym_BSLASHAcsp] = ACTIONS(12323), + [anon_sym_BSLASHacl] = ACTIONS(12323), + [anon_sym_BSLASHAcl] = ACTIONS(12323), + [anon_sym_BSLASHaclp] = ACTIONS(12323), + [anon_sym_BSLASHAclp] = ACTIONS(12323), + [anon_sym_BSLASHacf] = ACTIONS(12323), + [anon_sym_BSLASHAcf] = ACTIONS(12323), + [anon_sym_BSLASHacfp] = ACTIONS(12323), + [anon_sym_BSLASHAcfp] = ACTIONS(12323), + [anon_sym_BSLASHac] = ACTIONS(12323), + [anon_sym_BSLASHAc] = ACTIONS(12323), + [anon_sym_BSLASHacp] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12323), + [anon_sym_BSLASHcolor] = ACTIONS(12323), + [anon_sym_BSLASHcolorbox] = ACTIONS(12323), + [anon_sym_BSLASHtextcolor] = ACTIONS(12323), + [anon_sym_BSLASHpagecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12323), + }, + [552] = { + [ts_builtin_sym_end] = ACTIONS(12325), + [sym_generic_command_name] = ACTIONS(12327), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12327), + [aux_sym_chapter_token1] = ACTIONS(12327), + [aux_sym_section_token1] = ACTIONS(12327), + [aux_sym_subsection_token1] = ACTIONS(12327), + [aux_sym_subsubsection_token1] = ACTIONS(12327), + [aux_sym_paragraph_token1] = ACTIONS(12327), + [aux_sym_subparagraph_token1] = ACTIONS(12327), + [anon_sym_BSLASHitem] = ACTIONS(12327), + [anon_sym_LBRACK] = ACTIONS(12325), + [anon_sym_RBRACK] = ACTIONS(12325), + [anon_sym_LBRACE] = ACTIONS(12325), + [anon_sym_RBRACE] = ACTIONS(12325), + [anon_sym_LPAREN] = ACTIONS(12325), + [anon_sym_RPAREN] = ACTIONS(12325), + [anon_sym_COMMA] = ACTIONS(12325), + [anon_sym_EQ] = ACTIONS(12325), + [sym_word] = ACTIONS(12325), + [sym_param] = ACTIONS(12325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12325), + [anon_sym_DOLLAR] = ACTIONS(12327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12325), + [anon_sym_BSLASHbegin] = ACTIONS(12327), + [anon_sym_BSLASHcaption] = ACTIONS(12327), + [anon_sym_BSLASHcite] = ACTIONS(12327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCite] = ACTIONS(12327), + [anon_sym_BSLASHnocite] = ACTIONS(12327), + [anon_sym_BSLASHcitet] = ACTIONS(12327), + [anon_sym_BSLASHcitep] = ACTIONS(12327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteauthor] = ACTIONS(12327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitetitle] = ACTIONS(12327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteyear] = ACTIONS(12327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitedate] = ACTIONS(12327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteurl] = ACTIONS(12327), + [anon_sym_BSLASHfullcite] = ACTIONS(12327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12327), + [anon_sym_BSLASHcitealt] = ACTIONS(12327), + [anon_sym_BSLASHcitealp] = ACTIONS(12327), + [anon_sym_BSLASHcitetext] = ACTIONS(12327), + [anon_sym_BSLASHparencite] = ACTIONS(12327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHParencite] = ACTIONS(12327), + [anon_sym_BSLASHfootcite] = ACTIONS(12327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12327), + [anon_sym_BSLASHtextcite] = ACTIONS(12327), + [anon_sym_BSLASHTextcite] = ACTIONS(12327), + [anon_sym_BSLASHsmartcite] = ACTIONS(12327), + [anon_sym_BSLASHSmartcite] = ACTIONS(12327), + [anon_sym_BSLASHsupercite] = ACTIONS(12327), + [anon_sym_BSLASHautocite] = ACTIONS(12327), + [anon_sym_BSLASHAutocite] = ACTIONS(12327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHvolcite] = ACTIONS(12327), + [anon_sym_BSLASHVolcite] = ACTIONS(12327), + [anon_sym_BSLASHpvolcite] = ACTIONS(12327), + [anon_sym_BSLASHPvolcite] = ACTIONS(12327), + [anon_sym_BSLASHfvolcite] = ACTIONS(12327), + [anon_sym_BSLASHftvolcite] = ACTIONS(12327), + [anon_sym_BSLASHsvolcite] = ACTIONS(12327), + [anon_sym_BSLASHSvolcite] = ACTIONS(12327), + [anon_sym_BSLASHtvolcite] = ACTIONS(12327), + [anon_sym_BSLASHTvolcite] = ACTIONS(12327), + [anon_sym_BSLASHavolcite] = ACTIONS(12327), + [anon_sym_BSLASHAvolcite] = ACTIONS(12327), + [anon_sym_BSLASHnotecite] = ACTIONS(12327), + [anon_sym_BSLASHpnotecite] = ACTIONS(12327), + [anon_sym_BSLASHPnotecite] = ACTIONS(12327), + [anon_sym_BSLASHfnotecite] = ACTIONS(12327), + [anon_sym_BSLASHusepackage] = ACTIONS(12327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12327), + [anon_sym_BSLASHinclude] = ACTIONS(12327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12327), + [anon_sym_BSLASHinput] = ACTIONS(12327), + [anon_sym_BSLASHsubfile] = ACTIONS(12327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12327), + [anon_sym_BSLASHbibliography] = ACTIONS(12327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12327), + [anon_sym_BSLASHincludesvg] = ACTIONS(12327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12327), + [anon_sym_BSLASHimport] = ACTIONS(12327), + [anon_sym_BSLASHsubimport] = ACTIONS(12327), + [anon_sym_BSLASHinputfrom] = ACTIONS(12327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12327), + [anon_sym_BSLASHincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHlabel] = ACTIONS(12327), + [anon_sym_BSLASHref] = ACTIONS(12327), + [anon_sym_BSLASHvref] = ACTIONS(12327), + [anon_sym_BSLASHVref] = ACTIONS(12327), + [anon_sym_BSLASHautoref] = ACTIONS(12327), + [anon_sym_BSLASHpageref] = ACTIONS(12327), + [anon_sym_BSLASHcref] = ACTIONS(12327), + [anon_sym_BSLASHCref] = ACTIONS(12327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnameCref] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHlabelcref] = ACTIONS(12327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12327), + [anon_sym_BSLASHeqref] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange] = ACTIONS(12327), + [anon_sym_BSLASHCrefrange] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewlabel] = ACTIONS(12327), + [anon_sym_BSLASHnewcommand] = ACTIONS(12327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12327), + [anon_sym_BSLASHgls] = ACTIONS(12327), + [anon_sym_BSLASHGls] = ACTIONS(12327), + [anon_sym_BSLASHGLS] = ACTIONS(12327), + [anon_sym_BSLASHglspl] = ACTIONS(12327), + [anon_sym_BSLASHGlspl] = ACTIONS(12327), + [anon_sym_BSLASHGLSpl] = ACTIONS(12327), + [anon_sym_BSLASHglsdisp] = ACTIONS(12327), + [anon_sym_BSLASHglslink] = ACTIONS(12327), + [anon_sym_BSLASHglstext] = ACTIONS(12327), + [anon_sym_BSLASHGlstext] = ACTIONS(12327), + [anon_sym_BSLASHGLStext] = ACTIONS(12327), + [anon_sym_BSLASHglsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12327), + [anon_sym_BSLASHglsplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSplural] = ACTIONS(12327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHglsname] = ACTIONS(12327), + [anon_sym_BSLASHGlsname] = ACTIONS(12327), + [anon_sym_BSLASHGLSname] = ACTIONS(12327), + [anon_sym_BSLASHglssymbol] = ACTIONS(12327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12327), + [anon_sym_BSLASHglsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12327), + [anon_sym_BSLASHglsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12327), + [anon_sym_BSLASHglsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12327), + [anon_sym_BSLASHglsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12327), + [anon_sym_BSLASHglsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12327), + [anon_sym_BSLASHnewacronym] = ACTIONS(12327), + [anon_sym_BSLASHacrshort] = ACTIONS(12327), + [anon_sym_BSLASHAcrshort] = ACTIONS(12327), + [anon_sym_BSLASHACRshort] = ACTIONS(12327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12327), + [anon_sym_BSLASHacrlong] = ACTIONS(12327), + [anon_sym_BSLASHAcrlong] = ACTIONS(12327), + [anon_sym_BSLASHACRlong] = ACTIONS(12327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12327), + [anon_sym_BSLASHacrfull] = ACTIONS(12327), + [anon_sym_BSLASHAcrfull] = ACTIONS(12327), + [anon_sym_BSLASHACRfull] = ACTIONS(12327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12327), + [anon_sym_BSLASHacs] = ACTIONS(12327), + [anon_sym_BSLASHAcs] = ACTIONS(12327), + [anon_sym_BSLASHacsp] = ACTIONS(12327), + [anon_sym_BSLASHAcsp] = ACTIONS(12327), + [anon_sym_BSLASHacl] = ACTIONS(12327), + [anon_sym_BSLASHAcl] = ACTIONS(12327), + [anon_sym_BSLASHaclp] = ACTIONS(12327), + [anon_sym_BSLASHAclp] = ACTIONS(12327), + [anon_sym_BSLASHacf] = ACTIONS(12327), + [anon_sym_BSLASHAcf] = ACTIONS(12327), + [anon_sym_BSLASHacfp] = ACTIONS(12327), + [anon_sym_BSLASHAcfp] = ACTIONS(12327), + [anon_sym_BSLASHac] = ACTIONS(12327), + [anon_sym_BSLASHAc] = ACTIONS(12327), + [anon_sym_BSLASHacp] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12327), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12327), + [anon_sym_BSLASHcolor] = ACTIONS(12327), + [anon_sym_BSLASHcolorbox] = ACTIONS(12327), + [anon_sym_BSLASHtextcolor] = ACTIONS(12327), + [anon_sym_BSLASHpagecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12327), + }, + [553] = { + [ts_builtin_sym_end] = ACTIONS(12329), + [sym_generic_command_name] = ACTIONS(12331), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12331), + [aux_sym_chapter_token1] = ACTIONS(12331), + [aux_sym_section_token1] = ACTIONS(12331), + [aux_sym_subsection_token1] = ACTIONS(12331), + [aux_sym_subsubsection_token1] = ACTIONS(12331), + [aux_sym_paragraph_token1] = ACTIONS(12331), + [aux_sym_subparagraph_token1] = ACTIONS(12331), + [anon_sym_BSLASHitem] = ACTIONS(12331), + [anon_sym_LBRACK] = ACTIONS(12329), + [anon_sym_RBRACK] = ACTIONS(12329), + [anon_sym_LBRACE] = ACTIONS(12329), + [anon_sym_RBRACE] = ACTIONS(12329), + [anon_sym_LPAREN] = ACTIONS(12329), + [anon_sym_RPAREN] = ACTIONS(12329), + [anon_sym_COMMA] = ACTIONS(12329), + [anon_sym_EQ] = ACTIONS(12329), + [sym_word] = ACTIONS(12329), + [sym_param] = ACTIONS(12329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12329), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12329), + [anon_sym_DOLLAR] = ACTIONS(12331), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12329), + [anon_sym_BSLASHbegin] = ACTIONS(12331), + [anon_sym_BSLASHcaption] = ACTIONS(12331), + [anon_sym_BSLASHcite] = ACTIONS(12331), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCite] = ACTIONS(12331), + [anon_sym_BSLASHnocite] = ACTIONS(12331), + [anon_sym_BSLASHcitet] = ACTIONS(12331), + [anon_sym_BSLASHcitep] = ACTIONS(12331), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteauthor] = ACTIONS(12331), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12331), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitetitle] = ACTIONS(12331), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteyear] = ACTIONS(12331), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitedate] = ACTIONS(12331), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteurl] = ACTIONS(12331), + [anon_sym_BSLASHfullcite] = ACTIONS(12331), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12331), + [anon_sym_BSLASHcitealt] = ACTIONS(12331), + [anon_sym_BSLASHcitealp] = ACTIONS(12331), + [anon_sym_BSLASHcitetext] = ACTIONS(12331), + [anon_sym_BSLASHparencite] = ACTIONS(12331), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHParencite] = ACTIONS(12331), + [anon_sym_BSLASHfootcite] = ACTIONS(12331), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12331), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12331), + [anon_sym_BSLASHtextcite] = ACTIONS(12331), + [anon_sym_BSLASHTextcite] = ACTIONS(12331), + [anon_sym_BSLASHsmartcite] = ACTIONS(12331), + [anon_sym_BSLASHSmartcite] = ACTIONS(12331), + [anon_sym_BSLASHsupercite] = ACTIONS(12331), + [anon_sym_BSLASHautocite] = ACTIONS(12331), + [anon_sym_BSLASHAutocite] = ACTIONS(12331), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHvolcite] = ACTIONS(12331), + [anon_sym_BSLASHVolcite] = ACTIONS(12331), + [anon_sym_BSLASHpvolcite] = ACTIONS(12331), + [anon_sym_BSLASHPvolcite] = ACTIONS(12331), + [anon_sym_BSLASHfvolcite] = ACTIONS(12331), + [anon_sym_BSLASHftvolcite] = ACTIONS(12331), + [anon_sym_BSLASHsvolcite] = ACTIONS(12331), + [anon_sym_BSLASHSvolcite] = ACTIONS(12331), + [anon_sym_BSLASHtvolcite] = ACTIONS(12331), + [anon_sym_BSLASHTvolcite] = ACTIONS(12331), + [anon_sym_BSLASHavolcite] = ACTIONS(12331), + [anon_sym_BSLASHAvolcite] = ACTIONS(12331), + [anon_sym_BSLASHnotecite] = ACTIONS(12331), + [anon_sym_BSLASHpnotecite] = ACTIONS(12331), + [anon_sym_BSLASHPnotecite] = ACTIONS(12331), + [anon_sym_BSLASHfnotecite] = ACTIONS(12331), + [anon_sym_BSLASHusepackage] = ACTIONS(12331), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12331), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12331), + [anon_sym_BSLASHinclude] = ACTIONS(12331), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12331), + [anon_sym_BSLASHinput] = ACTIONS(12331), + [anon_sym_BSLASHsubfile] = ACTIONS(12331), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12331), + [anon_sym_BSLASHbibliography] = ACTIONS(12331), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12331), + [anon_sym_BSLASHincludesvg] = ACTIONS(12331), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12331), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12331), + [anon_sym_BSLASHimport] = ACTIONS(12331), + [anon_sym_BSLASHsubimport] = ACTIONS(12331), + [anon_sym_BSLASHinputfrom] = ACTIONS(12331), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12331), + [anon_sym_BSLASHincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHlabel] = ACTIONS(12331), + [anon_sym_BSLASHref] = ACTIONS(12331), + [anon_sym_BSLASHvref] = ACTIONS(12331), + [anon_sym_BSLASHVref] = ACTIONS(12331), + [anon_sym_BSLASHautoref] = ACTIONS(12331), + [anon_sym_BSLASHpageref] = ACTIONS(12331), + [anon_sym_BSLASHcref] = ACTIONS(12331), + [anon_sym_BSLASHCref] = ACTIONS(12331), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnameCref] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHlabelcref] = ACTIONS(12331), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12331), + [anon_sym_BSLASHeqref] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange] = ACTIONS(12331), + [anon_sym_BSLASHCrefrange] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewlabel] = ACTIONS(12331), + [anon_sym_BSLASHnewcommand] = ACTIONS(12331), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12331), + [anon_sym_BSLASHgls] = ACTIONS(12331), + [anon_sym_BSLASHGls] = ACTIONS(12331), + [anon_sym_BSLASHGLS] = ACTIONS(12331), + [anon_sym_BSLASHglspl] = ACTIONS(12331), + [anon_sym_BSLASHGlspl] = ACTIONS(12331), + [anon_sym_BSLASHGLSpl] = ACTIONS(12331), + [anon_sym_BSLASHglsdisp] = ACTIONS(12331), + [anon_sym_BSLASHglslink] = ACTIONS(12331), + [anon_sym_BSLASHglstext] = ACTIONS(12331), + [anon_sym_BSLASHGlstext] = ACTIONS(12331), + [anon_sym_BSLASHGLStext] = ACTIONS(12331), + [anon_sym_BSLASHglsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12331), + [anon_sym_BSLASHglsplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSplural] = ACTIONS(12331), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHglsname] = ACTIONS(12331), + [anon_sym_BSLASHGlsname] = ACTIONS(12331), + [anon_sym_BSLASHGLSname] = ACTIONS(12331), + [anon_sym_BSLASHglssymbol] = ACTIONS(12331), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12331), + [anon_sym_BSLASHglsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12331), + [anon_sym_BSLASHglsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12331), + [anon_sym_BSLASHglsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12331), + [anon_sym_BSLASHglsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12331), + [anon_sym_BSLASHglsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12331), + [anon_sym_BSLASHnewacronym] = ACTIONS(12331), + [anon_sym_BSLASHacrshort] = ACTIONS(12331), + [anon_sym_BSLASHAcrshort] = ACTIONS(12331), + [anon_sym_BSLASHACRshort] = ACTIONS(12331), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12331), + [anon_sym_BSLASHacrlong] = ACTIONS(12331), + [anon_sym_BSLASHAcrlong] = ACTIONS(12331), + [anon_sym_BSLASHACRlong] = ACTIONS(12331), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12331), + [anon_sym_BSLASHacrfull] = ACTIONS(12331), + [anon_sym_BSLASHAcrfull] = ACTIONS(12331), + [anon_sym_BSLASHACRfull] = ACTIONS(12331), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12331), + [anon_sym_BSLASHacs] = ACTIONS(12331), + [anon_sym_BSLASHAcs] = ACTIONS(12331), + [anon_sym_BSLASHacsp] = ACTIONS(12331), + [anon_sym_BSLASHAcsp] = ACTIONS(12331), + [anon_sym_BSLASHacl] = ACTIONS(12331), + [anon_sym_BSLASHAcl] = ACTIONS(12331), + [anon_sym_BSLASHaclp] = ACTIONS(12331), + [anon_sym_BSLASHAclp] = ACTIONS(12331), + [anon_sym_BSLASHacf] = ACTIONS(12331), + [anon_sym_BSLASHAcf] = ACTIONS(12331), + [anon_sym_BSLASHacfp] = ACTIONS(12331), + [anon_sym_BSLASHAcfp] = ACTIONS(12331), + [anon_sym_BSLASHac] = ACTIONS(12331), + [anon_sym_BSLASHAc] = ACTIONS(12331), + [anon_sym_BSLASHacp] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12331), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12331), + [anon_sym_BSLASHcolor] = ACTIONS(12331), + [anon_sym_BSLASHcolorbox] = ACTIONS(12331), + [anon_sym_BSLASHtextcolor] = ACTIONS(12331), + [anon_sym_BSLASHpagecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12331), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12331), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12331), + }, + [554] = { + [ts_builtin_sym_end] = ACTIONS(12333), + [sym_generic_command_name] = ACTIONS(12335), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12335), + [aux_sym_chapter_token1] = ACTIONS(12335), + [aux_sym_section_token1] = ACTIONS(12335), + [aux_sym_subsection_token1] = ACTIONS(12335), + [aux_sym_subsubsection_token1] = ACTIONS(12335), + [aux_sym_paragraph_token1] = ACTIONS(12335), + [aux_sym_subparagraph_token1] = ACTIONS(12335), + [anon_sym_BSLASHitem] = ACTIONS(12335), + [anon_sym_LBRACK] = ACTIONS(12337), + [anon_sym_RBRACK] = ACTIONS(12333), + [anon_sym_LBRACE] = ACTIONS(12333), + [anon_sym_RBRACE] = ACTIONS(12333), + [anon_sym_LPAREN] = ACTIONS(12333), + [anon_sym_RPAREN] = ACTIONS(12333), + [anon_sym_COMMA] = ACTIONS(12333), + [anon_sym_EQ] = ACTIONS(12333), + [sym_word] = ACTIONS(12333), + [sym_param] = ACTIONS(12333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12333), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12333), + [anon_sym_DOLLAR] = ACTIONS(12335), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12333), + [anon_sym_BSLASHbegin] = ACTIONS(12335), + [anon_sym_BSLASHcaption] = ACTIONS(12335), + [anon_sym_BSLASHcite] = ACTIONS(12335), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCite] = ACTIONS(12335), + [anon_sym_BSLASHnocite] = ACTIONS(12335), + [anon_sym_BSLASHcitet] = ACTIONS(12335), + [anon_sym_BSLASHcitep] = ACTIONS(12335), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteauthor] = ACTIONS(12335), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12335), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitetitle] = ACTIONS(12335), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteyear] = ACTIONS(12335), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitedate] = ACTIONS(12335), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteurl] = ACTIONS(12335), + [anon_sym_BSLASHfullcite] = ACTIONS(12335), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12335), + [anon_sym_BSLASHcitealt] = ACTIONS(12335), + [anon_sym_BSLASHcitealp] = ACTIONS(12335), + [anon_sym_BSLASHcitetext] = ACTIONS(12335), + [anon_sym_BSLASHparencite] = ACTIONS(12335), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHParencite] = ACTIONS(12335), + [anon_sym_BSLASHfootcite] = ACTIONS(12335), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12335), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12335), + [anon_sym_BSLASHtextcite] = ACTIONS(12335), + [anon_sym_BSLASHTextcite] = ACTIONS(12335), + [anon_sym_BSLASHsmartcite] = ACTIONS(12335), + [anon_sym_BSLASHSmartcite] = ACTIONS(12335), + [anon_sym_BSLASHsupercite] = ACTIONS(12335), + [anon_sym_BSLASHautocite] = ACTIONS(12335), + [anon_sym_BSLASHAutocite] = ACTIONS(12335), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHvolcite] = ACTIONS(12335), + [anon_sym_BSLASHVolcite] = ACTIONS(12335), + [anon_sym_BSLASHpvolcite] = ACTIONS(12335), + [anon_sym_BSLASHPvolcite] = ACTIONS(12335), + [anon_sym_BSLASHfvolcite] = ACTIONS(12335), + [anon_sym_BSLASHftvolcite] = ACTIONS(12335), + [anon_sym_BSLASHsvolcite] = ACTIONS(12335), + [anon_sym_BSLASHSvolcite] = ACTIONS(12335), + [anon_sym_BSLASHtvolcite] = ACTIONS(12335), + [anon_sym_BSLASHTvolcite] = ACTIONS(12335), + [anon_sym_BSLASHavolcite] = ACTIONS(12335), + [anon_sym_BSLASHAvolcite] = ACTIONS(12335), + [anon_sym_BSLASHnotecite] = ACTIONS(12335), + [anon_sym_BSLASHpnotecite] = ACTIONS(12335), + [anon_sym_BSLASHPnotecite] = ACTIONS(12335), + [anon_sym_BSLASHfnotecite] = ACTIONS(12335), + [anon_sym_BSLASHusepackage] = ACTIONS(12335), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12335), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12335), + [anon_sym_BSLASHinclude] = ACTIONS(12335), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12335), + [anon_sym_BSLASHinput] = ACTIONS(12335), + [anon_sym_BSLASHsubfile] = ACTIONS(12335), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12335), + [anon_sym_BSLASHbibliography] = ACTIONS(12335), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12335), + [anon_sym_BSLASHincludesvg] = ACTIONS(12335), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12335), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12335), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12335), + [anon_sym_BSLASHimport] = ACTIONS(12335), + [anon_sym_BSLASHsubimport] = ACTIONS(12335), + [anon_sym_BSLASHinputfrom] = ACTIONS(12335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12335), + [anon_sym_BSLASHincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHlabel] = ACTIONS(12335), + [anon_sym_BSLASHref] = ACTIONS(12335), + [anon_sym_BSLASHvref] = ACTIONS(12335), + [anon_sym_BSLASHVref] = ACTIONS(12335), + [anon_sym_BSLASHautoref] = ACTIONS(12335), + [anon_sym_BSLASHpageref] = ACTIONS(12335), + [anon_sym_BSLASHcref] = ACTIONS(12335), + [anon_sym_BSLASHCref] = ACTIONS(12335), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnameCref] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHlabelcref] = ACTIONS(12335), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12335), + [anon_sym_BSLASHeqref] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange] = ACTIONS(12335), + [anon_sym_BSLASHCrefrange] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewlabel] = ACTIONS(12335), + [anon_sym_BSLASHnewcommand] = ACTIONS(12335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12335), + [anon_sym_BSLASHgls] = ACTIONS(12335), + [anon_sym_BSLASHGls] = ACTIONS(12335), + [anon_sym_BSLASHGLS] = ACTIONS(12335), + [anon_sym_BSLASHglspl] = ACTIONS(12335), + [anon_sym_BSLASHGlspl] = ACTIONS(12335), + [anon_sym_BSLASHGLSpl] = ACTIONS(12335), + [anon_sym_BSLASHglsdisp] = ACTIONS(12335), + [anon_sym_BSLASHglslink] = ACTIONS(12335), + [anon_sym_BSLASHglstext] = ACTIONS(12335), + [anon_sym_BSLASHGlstext] = ACTIONS(12335), + [anon_sym_BSLASHGLStext] = ACTIONS(12335), + [anon_sym_BSLASHglsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12335), + [anon_sym_BSLASHglsplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSplural] = ACTIONS(12335), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHglsname] = ACTIONS(12335), + [anon_sym_BSLASHGlsname] = ACTIONS(12335), + [anon_sym_BSLASHGLSname] = ACTIONS(12335), + [anon_sym_BSLASHglssymbol] = ACTIONS(12335), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12335), + [anon_sym_BSLASHglsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12335), + [anon_sym_BSLASHglsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12335), + [anon_sym_BSLASHglsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12335), + [anon_sym_BSLASHglsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12335), + [anon_sym_BSLASHglsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12335), + [anon_sym_BSLASHnewacronym] = ACTIONS(12335), + [anon_sym_BSLASHacrshort] = ACTIONS(12335), + [anon_sym_BSLASHAcrshort] = ACTIONS(12335), + [anon_sym_BSLASHACRshort] = ACTIONS(12335), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12335), + [anon_sym_BSLASHacrlong] = ACTIONS(12335), + [anon_sym_BSLASHAcrlong] = ACTIONS(12335), + [anon_sym_BSLASHACRlong] = ACTIONS(12335), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12335), + [anon_sym_BSLASHacrfull] = ACTIONS(12335), + [anon_sym_BSLASHAcrfull] = ACTIONS(12335), + [anon_sym_BSLASHACRfull] = ACTIONS(12335), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12335), + [anon_sym_BSLASHacs] = ACTIONS(12335), + [anon_sym_BSLASHAcs] = ACTIONS(12335), + [anon_sym_BSLASHacsp] = ACTIONS(12335), + [anon_sym_BSLASHAcsp] = ACTIONS(12335), + [anon_sym_BSLASHacl] = ACTIONS(12335), + [anon_sym_BSLASHAcl] = ACTIONS(12335), + [anon_sym_BSLASHaclp] = ACTIONS(12335), + [anon_sym_BSLASHAclp] = ACTIONS(12335), + [anon_sym_BSLASHacf] = ACTIONS(12335), + [anon_sym_BSLASHAcf] = ACTIONS(12335), + [anon_sym_BSLASHacfp] = ACTIONS(12335), + [anon_sym_BSLASHAcfp] = ACTIONS(12335), + [anon_sym_BSLASHac] = ACTIONS(12335), + [anon_sym_BSLASHAc] = ACTIONS(12335), + [anon_sym_BSLASHacp] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12335), + [anon_sym_BSLASHcolor] = ACTIONS(12335), + [anon_sym_BSLASHcolorbox] = ACTIONS(12335), + [anon_sym_BSLASHtextcolor] = ACTIONS(12335), + [anon_sym_BSLASHpagecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12335), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12335), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12335), + }, + [555] = { + [ts_builtin_sym_end] = ACTIONS(12339), + [sym_generic_command_name] = ACTIONS(12341), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12341), + [aux_sym_chapter_token1] = ACTIONS(12341), + [aux_sym_section_token1] = ACTIONS(12341), + [aux_sym_subsection_token1] = ACTIONS(12341), + [aux_sym_subsubsection_token1] = ACTIONS(12341), + [aux_sym_paragraph_token1] = ACTIONS(12341), + [aux_sym_subparagraph_token1] = ACTIONS(12341), + [anon_sym_BSLASHitem] = ACTIONS(12341), + [anon_sym_LBRACK] = ACTIONS(12339), + [anon_sym_RBRACK] = ACTIONS(12339), + [anon_sym_LBRACE] = ACTIONS(12339), + [anon_sym_RBRACE] = ACTIONS(12339), + [anon_sym_LPAREN] = ACTIONS(12339), + [anon_sym_RPAREN] = ACTIONS(12339), + [anon_sym_COMMA] = ACTIONS(12339), + [anon_sym_EQ] = ACTIONS(12339), + [sym_word] = ACTIONS(12339), + [sym_param] = ACTIONS(12339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12339), + [anon_sym_DOLLAR] = ACTIONS(12341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12339), + [anon_sym_BSLASHbegin] = ACTIONS(12341), + [anon_sym_BSLASHcaption] = ACTIONS(12341), + [anon_sym_BSLASHcite] = ACTIONS(12341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCite] = ACTIONS(12341), + [anon_sym_BSLASHnocite] = ACTIONS(12341), + [anon_sym_BSLASHcitet] = ACTIONS(12341), + [anon_sym_BSLASHcitep] = ACTIONS(12341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteauthor] = ACTIONS(12341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitetitle] = ACTIONS(12341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteyear] = ACTIONS(12341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitedate] = ACTIONS(12341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteurl] = ACTIONS(12341), + [anon_sym_BSLASHfullcite] = ACTIONS(12341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12341), + [anon_sym_BSLASHcitealt] = ACTIONS(12341), + [anon_sym_BSLASHcitealp] = ACTIONS(12341), + [anon_sym_BSLASHcitetext] = ACTIONS(12341), + [anon_sym_BSLASHparencite] = ACTIONS(12341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHParencite] = ACTIONS(12341), + [anon_sym_BSLASHfootcite] = ACTIONS(12341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12341), + [anon_sym_BSLASHtextcite] = ACTIONS(12341), + [anon_sym_BSLASHTextcite] = ACTIONS(12341), + [anon_sym_BSLASHsmartcite] = ACTIONS(12341), + [anon_sym_BSLASHSmartcite] = ACTIONS(12341), + [anon_sym_BSLASHsupercite] = ACTIONS(12341), + [anon_sym_BSLASHautocite] = ACTIONS(12341), + [anon_sym_BSLASHAutocite] = ACTIONS(12341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHvolcite] = ACTIONS(12341), + [anon_sym_BSLASHVolcite] = ACTIONS(12341), + [anon_sym_BSLASHpvolcite] = ACTIONS(12341), + [anon_sym_BSLASHPvolcite] = ACTIONS(12341), + [anon_sym_BSLASHfvolcite] = ACTIONS(12341), + [anon_sym_BSLASHftvolcite] = ACTIONS(12341), + [anon_sym_BSLASHsvolcite] = ACTIONS(12341), + [anon_sym_BSLASHSvolcite] = ACTIONS(12341), + [anon_sym_BSLASHtvolcite] = ACTIONS(12341), + [anon_sym_BSLASHTvolcite] = ACTIONS(12341), + [anon_sym_BSLASHavolcite] = ACTIONS(12341), + [anon_sym_BSLASHAvolcite] = ACTIONS(12341), + [anon_sym_BSLASHnotecite] = ACTIONS(12341), + [anon_sym_BSLASHpnotecite] = ACTIONS(12341), + [anon_sym_BSLASHPnotecite] = ACTIONS(12341), + [anon_sym_BSLASHfnotecite] = ACTIONS(12341), + [anon_sym_BSLASHusepackage] = ACTIONS(12341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12341), + [anon_sym_BSLASHinclude] = ACTIONS(12341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12341), + [anon_sym_BSLASHinput] = ACTIONS(12341), + [anon_sym_BSLASHsubfile] = ACTIONS(12341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12341), + [anon_sym_BSLASHbibliography] = ACTIONS(12341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12341), + [anon_sym_BSLASHincludesvg] = ACTIONS(12341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12341), + [anon_sym_BSLASHimport] = ACTIONS(12341), + [anon_sym_BSLASHsubimport] = ACTIONS(12341), + [anon_sym_BSLASHinputfrom] = ACTIONS(12341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12341), + [anon_sym_BSLASHincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHlabel] = ACTIONS(12341), + [anon_sym_BSLASHref] = ACTIONS(12341), + [anon_sym_BSLASHvref] = ACTIONS(12341), + [anon_sym_BSLASHVref] = ACTIONS(12341), + [anon_sym_BSLASHautoref] = ACTIONS(12341), + [anon_sym_BSLASHpageref] = ACTIONS(12341), + [anon_sym_BSLASHcref] = ACTIONS(12341), + [anon_sym_BSLASHCref] = ACTIONS(12341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnameCref] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHlabelcref] = ACTIONS(12341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12341), + [anon_sym_BSLASHeqref] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange] = ACTIONS(12341), + [anon_sym_BSLASHCrefrange] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewlabel] = ACTIONS(12341), + [anon_sym_BSLASHnewcommand] = ACTIONS(12341), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12341), + [anon_sym_BSLASHgls] = ACTIONS(12341), + [anon_sym_BSLASHGls] = ACTIONS(12341), + [anon_sym_BSLASHGLS] = ACTIONS(12341), + [anon_sym_BSLASHglspl] = ACTIONS(12341), + [anon_sym_BSLASHGlspl] = ACTIONS(12341), + [anon_sym_BSLASHGLSpl] = ACTIONS(12341), + [anon_sym_BSLASHglsdisp] = ACTIONS(12341), + [anon_sym_BSLASHglslink] = ACTIONS(12341), + [anon_sym_BSLASHglstext] = ACTIONS(12341), + [anon_sym_BSLASHGlstext] = ACTIONS(12341), + [anon_sym_BSLASHGLStext] = ACTIONS(12341), + [anon_sym_BSLASHglsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12341), + [anon_sym_BSLASHglsplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSplural] = ACTIONS(12341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHglsname] = ACTIONS(12341), + [anon_sym_BSLASHGlsname] = ACTIONS(12341), + [anon_sym_BSLASHGLSname] = ACTIONS(12341), + [anon_sym_BSLASHglssymbol] = ACTIONS(12341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12341), + [anon_sym_BSLASHglsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12341), + [anon_sym_BSLASHglsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12341), + [anon_sym_BSLASHglsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12341), + [anon_sym_BSLASHglsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12341), + [anon_sym_BSLASHglsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12341), + [anon_sym_BSLASHnewacronym] = ACTIONS(12341), + [anon_sym_BSLASHacrshort] = ACTIONS(12341), + [anon_sym_BSLASHAcrshort] = ACTIONS(12341), + [anon_sym_BSLASHACRshort] = ACTIONS(12341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12341), + [anon_sym_BSLASHacrlong] = ACTIONS(12341), + [anon_sym_BSLASHAcrlong] = ACTIONS(12341), + [anon_sym_BSLASHACRlong] = ACTIONS(12341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12341), + [anon_sym_BSLASHacrfull] = ACTIONS(12341), + [anon_sym_BSLASHAcrfull] = ACTIONS(12341), + [anon_sym_BSLASHACRfull] = ACTIONS(12341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12341), + [anon_sym_BSLASHacs] = ACTIONS(12341), + [anon_sym_BSLASHAcs] = ACTIONS(12341), + [anon_sym_BSLASHacsp] = ACTIONS(12341), + [anon_sym_BSLASHAcsp] = ACTIONS(12341), + [anon_sym_BSLASHacl] = ACTIONS(12341), + [anon_sym_BSLASHAcl] = ACTIONS(12341), + [anon_sym_BSLASHaclp] = ACTIONS(12341), + [anon_sym_BSLASHAclp] = ACTIONS(12341), + [anon_sym_BSLASHacf] = ACTIONS(12341), + [anon_sym_BSLASHAcf] = ACTIONS(12341), + [anon_sym_BSLASHacfp] = ACTIONS(12341), + [anon_sym_BSLASHAcfp] = ACTIONS(12341), + [anon_sym_BSLASHac] = ACTIONS(12341), + [anon_sym_BSLASHAc] = ACTIONS(12341), + [anon_sym_BSLASHacp] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12341), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12341), + [anon_sym_BSLASHcolor] = ACTIONS(12341), + [anon_sym_BSLASHcolorbox] = ACTIONS(12341), + [anon_sym_BSLASHtextcolor] = ACTIONS(12341), + [anon_sym_BSLASHpagecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12341), + }, + [556] = { + [ts_builtin_sym_end] = ACTIONS(12343), + [sym_generic_command_name] = ACTIONS(12345), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12345), + [aux_sym_chapter_token1] = ACTIONS(12345), + [aux_sym_section_token1] = ACTIONS(12345), + [aux_sym_subsection_token1] = ACTIONS(12345), + [aux_sym_subsubsection_token1] = ACTIONS(12345), + [aux_sym_paragraph_token1] = ACTIONS(12345), + [aux_sym_subparagraph_token1] = ACTIONS(12345), + [anon_sym_BSLASHitem] = ACTIONS(12345), + [anon_sym_LBRACK] = ACTIONS(12343), + [anon_sym_RBRACK] = ACTIONS(12343), + [anon_sym_LBRACE] = ACTIONS(12343), + [anon_sym_RBRACE] = ACTIONS(12343), + [anon_sym_LPAREN] = ACTIONS(12343), + [anon_sym_RPAREN] = ACTIONS(12343), + [anon_sym_COMMA] = ACTIONS(12343), + [anon_sym_EQ] = ACTIONS(12343), + [sym_word] = ACTIONS(12343), + [sym_param] = ACTIONS(12343), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12343), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12343), + [anon_sym_DOLLAR] = ACTIONS(12345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12343), + [anon_sym_BSLASHbegin] = ACTIONS(12345), + [anon_sym_BSLASHcaption] = ACTIONS(12345), + [anon_sym_BSLASHcite] = ACTIONS(12345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCite] = ACTIONS(12345), + [anon_sym_BSLASHnocite] = ACTIONS(12345), + [anon_sym_BSLASHcitet] = ACTIONS(12345), + [anon_sym_BSLASHcitep] = ACTIONS(12345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteauthor] = ACTIONS(12345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitetitle] = ACTIONS(12345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteyear] = ACTIONS(12345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitedate] = ACTIONS(12345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteurl] = ACTIONS(12345), + [anon_sym_BSLASHfullcite] = ACTIONS(12345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12345), + [anon_sym_BSLASHcitealt] = ACTIONS(12345), + [anon_sym_BSLASHcitealp] = ACTIONS(12345), + [anon_sym_BSLASHcitetext] = ACTIONS(12345), + [anon_sym_BSLASHparencite] = ACTIONS(12345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHParencite] = ACTIONS(12345), + [anon_sym_BSLASHfootcite] = ACTIONS(12345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12345), + [anon_sym_BSLASHtextcite] = ACTIONS(12345), + [anon_sym_BSLASHTextcite] = ACTIONS(12345), + [anon_sym_BSLASHsmartcite] = ACTIONS(12345), + [anon_sym_BSLASHSmartcite] = ACTIONS(12345), + [anon_sym_BSLASHsupercite] = ACTIONS(12345), + [anon_sym_BSLASHautocite] = ACTIONS(12345), + [anon_sym_BSLASHAutocite] = ACTIONS(12345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHvolcite] = ACTIONS(12345), + [anon_sym_BSLASHVolcite] = ACTIONS(12345), + [anon_sym_BSLASHpvolcite] = ACTIONS(12345), + [anon_sym_BSLASHPvolcite] = ACTIONS(12345), + [anon_sym_BSLASHfvolcite] = ACTIONS(12345), + [anon_sym_BSLASHftvolcite] = ACTIONS(12345), + [anon_sym_BSLASHsvolcite] = ACTIONS(12345), + [anon_sym_BSLASHSvolcite] = ACTIONS(12345), + [anon_sym_BSLASHtvolcite] = ACTIONS(12345), + [anon_sym_BSLASHTvolcite] = ACTIONS(12345), + [anon_sym_BSLASHavolcite] = ACTIONS(12345), + [anon_sym_BSLASHAvolcite] = ACTIONS(12345), + [anon_sym_BSLASHnotecite] = ACTIONS(12345), + [anon_sym_BSLASHpnotecite] = ACTIONS(12345), + [anon_sym_BSLASHPnotecite] = ACTIONS(12345), + [anon_sym_BSLASHfnotecite] = ACTIONS(12345), + [anon_sym_BSLASHusepackage] = ACTIONS(12345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12345), + [anon_sym_BSLASHinclude] = ACTIONS(12345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12345), + [anon_sym_BSLASHinput] = ACTIONS(12345), + [anon_sym_BSLASHsubfile] = ACTIONS(12345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12345), + [anon_sym_BSLASHbibliography] = ACTIONS(12345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12345), + [anon_sym_BSLASHincludesvg] = ACTIONS(12345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12345), + [anon_sym_BSLASHimport] = ACTIONS(12345), + [anon_sym_BSLASHsubimport] = ACTIONS(12345), + [anon_sym_BSLASHinputfrom] = ACTIONS(12345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12345), + [anon_sym_BSLASHincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHlabel] = ACTIONS(12345), + [anon_sym_BSLASHref] = ACTIONS(12345), + [anon_sym_BSLASHvref] = ACTIONS(12345), + [anon_sym_BSLASHVref] = ACTIONS(12345), + [anon_sym_BSLASHautoref] = ACTIONS(12345), + [anon_sym_BSLASHpageref] = ACTIONS(12345), + [anon_sym_BSLASHcref] = ACTIONS(12345), + [anon_sym_BSLASHCref] = ACTIONS(12345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnameCref] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHlabelcref] = ACTIONS(12345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12345), + [anon_sym_BSLASHeqref] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange] = ACTIONS(12345), + [anon_sym_BSLASHCrefrange] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewlabel] = ACTIONS(12345), + [anon_sym_BSLASHnewcommand] = ACTIONS(12345), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12345), + [anon_sym_BSLASHgls] = ACTIONS(12345), + [anon_sym_BSLASHGls] = ACTIONS(12345), + [anon_sym_BSLASHGLS] = ACTIONS(12345), + [anon_sym_BSLASHglspl] = ACTIONS(12345), + [anon_sym_BSLASHGlspl] = ACTIONS(12345), + [anon_sym_BSLASHGLSpl] = ACTIONS(12345), + [anon_sym_BSLASHglsdisp] = ACTIONS(12345), + [anon_sym_BSLASHglslink] = ACTIONS(12345), + [anon_sym_BSLASHglstext] = ACTIONS(12345), + [anon_sym_BSLASHGlstext] = ACTIONS(12345), + [anon_sym_BSLASHGLStext] = ACTIONS(12345), + [anon_sym_BSLASHglsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12345), + [anon_sym_BSLASHglsplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSplural] = ACTIONS(12345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHglsname] = ACTIONS(12345), + [anon_sym_BSLASHGlsname] = ACTIONS(12345), + [anon_sym_BSLASHGLSname] = ACTIONS(12345), + [anon_sym_BSLASHglssymbol] = ACTIONS(12345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12345), + [anon_sym_BSLASHglsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12345), + [anon_sym_BSLASHglsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12345), + [anon_sym_BSLASHglsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12345), + [anon_sym_BSLASHglsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12345), + [anon_sym_BSLASHglsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12345), + [anon_sym_BSLASHnewacronym] = ACTIONS(12345), + [anon_sym_BSLASHacrshort] = ACTIONS(12345), + [anon_sym_BSLASHAcrshort] = ACTIONS(12345), + [anon_sym_BSLASHACRshort] = ACTIONS(12345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12345), + [anon_sym_BSLASHacrlong] = ACTIONS(12345), + [anon_sym_BSLASHAcrlong] = ACTIONS(12345), + [anon_sym_BSLASHACRlong] = ACTIONS(12345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12345), + [anon_sym_BSLASHacrfull] = ACTIONS(12345), + [anon_sym_BSLASHAcrfull] = ACTIONS(12345), + [anon_sym_BSLASHACRfull] = ACTIONS(12345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12345), + [anon_sym_BSLASHacs] = ACTIONS(12345), + [anon_sym_BSLASHAcs] = ACTIONS(12345), + [anon_sym_BSLASHacsp] = ACTIONS(12345), + [anon_sym_BSLASHAcsp] = ACTIONS(12345), + [anon_sym_BSLASHacl] = ACTIONS(12345), + [anon_sym_BSLASHAcl] = ACTIONS(12345), + [anon_sym_BSLASHaclp] = ACTIONS(12345), + [anon_sym_BSLASHAclp] = ACTIONS(12345), + [anon_sym_BSLASHacf] = ACTIONS(12345), + [anon_sym_BSLASHAcf] = ACTIONS(12345), + [anon_sym_BSLASHacfp] = ACTIONS(12345), + [anon_sym_BSLASHAcfp] = ACTIONS(12345), + [anon_sym_BSLASHac] = ACTIONS(12345), + [anon_sym_BSLASHAc] = ACTIONS(12345), + [anon_sym_BSLASHacp] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12345), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12345), + [anon_sym_BSLASHcolor] = ACTIONS(12345), + [anon_sym_BSLASHcolorbox] = ACTIONS(12345), + [anon_sym_BSLASHtextcolor] = ACTIONS(12345), + [anon_sym_BSLASHpagecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12345), + }, + [557] = { + [ts_builtin_sym_end] = ACTIONS(12347), + [sym_generic_command_name] = ACTIONS(12349), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12349), + [aux_sym_chapter_token1] = ACTIONS(12349), + [aux_sym_section_token1] = ACTIONS(12349), + [aux_sym_subsection_token1] = ACTIONS(12349), + [aux_sym_subsubsection_token1] = ACTIONS(12349), + [aux_sym_paragraph_token1] = ACTIONS(12349), + [aux_sym_subparagraph_token1] = ACTIONS(12349), + [anon_sym_BSLASHitem] = ACTIONS(12349), + [anon_sym_LBRACK] = ACTIONS(12347), + [anon_sym_RBRACK] = ACTIONS(12347), + [anon_sym_LBRACE] = ACTIONS(12347), + [anon_sym_RBRACE] = ACTIONS(12347), + [anon_sym_LPAREN] = ACTIONS(12347), + [anon_sym_RPAREN] = ACTIONS(12347), + [anon_sym_COMMA] = ACTIONS(12347), + [anon_sym_EQ] = ACTIONS(12347), + [sym_word] = ACTIONS(12347), + [sym_param] = ACTIONS(12347), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12347), + [anon_sym_DOLLAR] = ACTIONS(12349), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12347), + [anon_sym_BSLASHbegin] = ACTIONS(12349), + [anon_sym_BSLASHcaption] = ACTIONS(12349), + [anon_sym_BSLASHcite] = ACTIONS(12349), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCite] = ACTIONS(12349), + [anon_sym_BSLASHnocite] = ACTIONS(12349), + [anon_sym_BSLASHcitet] = ACTIONS(12349), + [anon_sym_BSLASHcitep] = ACTIONS(12349), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteauthor] = ACTIONS(12349), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12349), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitetitle] = ACTIONS(12349), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteyear] = ACTIONS(12349), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitedate] = ACTIONS(12349), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteurl] = ACTIONS(12349), + [anon_sym_BSLASHfullcite] = ACTIONS(12349), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12349), + [anon_sym_BSLASHcitealt] = ACTIONS(12349), + [anon_sym_BSLASHcitealp] = ACTIONS(12349), + [anon_sym_BSLASHcitetext] = ACTIONS(12349), + [anon_sym_BSLASHparencite] = ACTIONS(12349), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHParencite] = ACTIONS(12349), + [anon_sym_BSLASHfootcite] = ACTIONS(12349), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12349), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12349), + [anon_sym_BSLASHtextcite] = ACTIONS(12349), + [anon_sym_BSLASHTextcite] = ACTIONS(12349), + [anon_sym_BSLASHsmartcite] = ACTIONS(12349), + [anon_sym_BSLASHSmartcite] = ACTIONS(12349), + [anon_sym_BSLASHsupercite] = ACTIONS(12349), + [anon_sym_BSLASHautocite] = ACTIONS(12349), + [anon_sym_BSLASHAutocite] = ACTIONS(12349), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHvolcite] = ACTIONS(12349), + [anon_sym_BSLASHVolcite] = ACTIONS(12349), + [anon_sym_BSLASHpvolcite] = ACTIONS(12349), + [anon_sym_BSLASHPvolcite] = ACTIONS(12349), + [anon_sym_BSLASHfvolcite] = ACTIONS(12349), + [anon_sym_BSLASHftvolcite] = ACTIONS(12349), + [anon_sym_BSLASHsvolcite] = ACTIONS(12349), + [anon_sym_BSLASHSvolcite] = ACTIONS(12349), + [anon_sym_BSLASHtvolcite] = ACTIONS(12349), + [anon_sym_BSLASHTvolcite] = ACTIONS(12349), + [anon_sym_BSLASHavolcite] = ACTIONS(12349), + [anon_sym_BSLASHAvolcite] = ACTIONS(12349), + [anon_sym_BSLASHnotecite] = ACTIONS(12349), + [anon_sym_BSLASHpnotecite] = ACTIONS(12349), + [anon_sym_BSLASHPnotecite] = ACTIONS(12349), + [anon_sym_BSLASHfnotecite] = ACTIONS(12349), + [anon_sym_BSLASHusepackage] = ACTIONS(12349), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12349), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12349), + [anon_sym_BSLASHinclude] = ACTIONS(12349), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12349), + [anon_sym_BSLASHinput] = ACTIONS(12349), + [anon_sym_BSLASHsubfile] = ACTIONS(12349), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12349), + [anon_sym_BSLASHbibliography] = ACTIONS(12349), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12349), + [anon_sym_BSLASHincludesvg] = ACTIONS(12349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12349), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12349), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12349), + [anon_sym_BSLASHimport] = ACTIONS(12349), + [anon_sym_BSLASHsubimport] = ACTIONS(12349), + [anon_sym_BSLASHinputfrom] = ACTIONS(12349), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12349), + [anon_sym_BSLASHincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHlabel] = ACTIONS(12349), + [anon_sym_BSLASHref] = ACTIONS(12349), + [anon_sym_BSLASHvref] = ACTIONS(12349), + [anon_sym_BSLASHVref] = ACTIONS(12349), + [anon_sym_BSLASHautoref] = ACTIONS(12349), + [anon_sym_BSLASHpageref] = ACTIONS(12349), + [anon_sym_BSLASHcref] = ACTIONS(12349), + [anon_sym_BSLASHCref] = ACTIONS(12349), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnameCref] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHlabelcref] = ACTIONS(12349), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12349), + [anon_sym_BSLASHeqref] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange] = ACTIONS(12349), + [anon_sym_BSLASHCrefrange] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewlabel] = ACTIONS(12349), + [anon_sym_BSLASHnewcommand] = ACTIONS(12349), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12349), + [anon_sym_BSLASHgls] = ACTIONS(12349), + [anon_sym_BSLASHGls] = ACTIONS(12349), + [anon_sym_BSLASHGLS] = ACTIONS(12349), + [anon_sym_BSLASHglspl] = ACTIONS(12349), + [anon_sym_BSLASHGlspl] = ACTIONS(12349), + [anon_sym_BSLASHGLSpl] = ACTIONS(12349), + [anon_sym_BSLASHglsdisp] = ACTIONS(12349), + [anon_sym_BSLASHglslink] = ACTIONS(12349), + [anon_sym_BSLASHglstext] = ACTIONS(12349), + [anon_sym_BSLASHGlstext] = ACTIONS(12349), + [anon_sym_BSLASHGLStext] = ACTIONS(12349), + [anon_sym_BSLASHglsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12349), + [anon_sym_BSLASHglsplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSplural] = ACTIONS(12349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHglsname] = ACTIONS(12349), + [anon_sym_BSLASHGlsname] = ACTIONS(12349), + [anon_sym_BSLASHGLSname] = ACTIONS(12349), + [anon_sym_BSLASHglssymbol] = ACTIONS(12349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12349), + [anon_sym_BSLASHglsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12349), + [anon_sym_BSLASHglsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12349), + [anon_sym_BSLASHglsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12349), + [anon_sym_BSLASHglsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12349), + [anon_sym_BSLASHglsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12349), + [anon_sym_BSLASHnewacronym] = ACTIONS(12349), + [anon_sym_BSLASHacrshort] = ACTIONS(12349), + [anon_sym_BSLASHAcrshort] = ACTIONS(12349), + [anon_sym_BSLASHACRshort] = ACTIONS(12349), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12349), + [anon_sym_BSLASHacrlong] = ACTIONS(12349), + [anon_sym_BSLASHAcrlong] = ACTIONS(12349), + [anon_sym_BSLASHACRlong] = ACTIONS(12349), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12349), + [anon_sym_BSLASHacrfull] = ACTIONS(12349), + [anon_sym_BSLASHAcrfull] = ACTIONS(12349), + [anon_sym_BSLASHACRfull] = ACTIONS(12349), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12349), + [anon_sym_BSLASHacs] = ACTIONS(12349), + [anon_sym_BSLASHAcs] = ACTIONS(12349), + [anon_sym_BSLASHacsp] = ACTIONS(12349), + [anon_sym_BSLASHAcsp] = ACTIONS(12349), + [anon_sym_BSLASHacl] = ACTIONS(12349), + [anon_sym_BSLASHAcl] = ACTIONS(12349), + [anon_sym_BSLASHaclp] = ACTIONS(12349), + [anon_sym_BSLASHAclp] = ACTIONS(12349), + [anon_sym_BSLASHacf] = ACTIONS(12349), + [anon_sym_BSLASHAcf] = ACTIONS(12349), + [anon_sym_BSLASHacfp] = ACTIONS(12349), + [anon_sym_BSLASHAcfp] = ACTIONS(12349), + [anon_sym_BSLASHac] = ACTIONS(12349), + [anon_sym_BSLASHAc] = ACTIONS(12349), + [anon_sym_BSLASHacp] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12349), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12349), + [anon_sym_BSLASHcolor] = ACTIONS(12349), + [anon_sym_BSLASHcolorbox] = ACTIONS(12349), + [anon_sym_BSLASHtextcolor] = ACTIONS(12349), + [anon_sym_BSLASHpagecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12349), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12349), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12349), + }, + [558] = { + [ts_builtin_sym_end] = ACTIONS(12351), + [sym_generic_command_name] = ACTIONS(12353), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12353), + [aux_sym_chapter_token1] = ACTIONS(12353), + [aux_sym_section_token1] = ACTIONS(12353), + [aux_sym_subsection_token1] = ACTIONS(12353), + [aux_sym_subsubsection_token1] = ACTIONS(12353), + [aux_sym_paragraph_token1] = ACTIONS(12353), + [aux_sym_subparagraph_token1] = ACTIONS(12353), + [anon_sym_BSLASHitem] = ACTIONS(12353), + [anon_sym_LBRACK] = ACTIONS(12351), + [anon_sym_RBRACK] = ACTIONS(12351), + [anon_sym_LBRACE] = ACTIONS(12351), + [anon_sym_RBRACE] = ACTIONS(12351), + [anon_sym_LPAREN] = ACTIONS(12351), + [anon_sym_RPAREN] = ACTIONS(12351), + [anon_sym_COMMA] = ACTIONS(12351), + [anon_sym_EQ] = ACTIONS(12351), + [sym_word] = ACTIONS(12351), + [sym_param] = ACTIONS(12351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12351), + [anon_sym_DOLLAR] = ACTIONS(12353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12351), + [anon_sym_BSLASHbegin] = ACTIONS(12353), + [anon_sym_BSLASHcaption] = ACTIONS(12353), + [anon_sym_BSLASHcite] = ACTIONS(12353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCite] = ACTIONS(12353), + [anon_sym_BSLASHnocite] = ACTIONS(12353), + [anon_sym_BSLASHcitet] = ACTIONS(12353), + [anon_sym_BSLASHcitep] = ACTIONS(12353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteauthor] = ACTIONS(12353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitetitle] = ACTIONS(12353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteyear] = ACTIONS(12353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitedate] = ACTIONS(12353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteurl] = ACTIONS(12353), + [anon_sym_BSLASHfullcite] = ACTIONS(12353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12353), + [anon_sym_BSLASHcitealt] = ACTIONS(12353), + [anon_sym_BSLASHcitealp] = ACTIONS(12353), + [anon_sym_BSLASHcitetext] = ACTIONS(12353), + [anon_sym_BSLASHparencite] = ACTIONS(12353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHParencite] = ACTIONS(12353), + [anon_sym_BSLASHfootcite] = ACTIONS(12353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12353), + [anon_sym_BSLASHtextcite] = ACTIONS(12353), + [anon_sym_BSLASHTextcite] = ACTIONS(12353), + [anon_sym_BSLASHsmartcite] = ACTIONS(12353), + [anon_sym_BSLASHSmartcite] = ACTIONS(12353), + [anon_sym_BSLASHsupercite] = ACTIONS(12353), + [anon_sym_BSLASHautocite] = ACTIONS(12353), + [anon_sym_BSLASHAutocite] = ACTIONS(12353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHvolcite] = ACTIONS(12353), + [anon_sym_BSLASHVolcite] = ACTIONS(12353), + [anon_sym_BSLASHpvolcite] = ACTIONS(12353), + [anon_sym_BSLASHPvolcite] = ACTIONS(12353), + [anon_sym_BSLASHfvolcite] = ACTIONS(12353), + [anon_sym_BSLASHftvolcite] = ACTIONS(12353), + [anon_sym_BSLASHsvolcite] = ACTIONS(12353), + [anon_sym_BSLASHSvolcite] = ACTIONS(12353), + [anon_sym_BSLASHtvolcite] = ACTIONS(12353), + [anon_sym_BSLASHTvolcite] = ACTIONS(12353), + [anon_sym_BSLASHavolcite] = ACTIONS(12353), + [anon_sym_BSLASHAvolcite] = ACTIONS(12353), + [anon_sym_BSLASHnotecite] = ACTIONS(12353), + [anon_sym_BSLASHpnotecite] = ACTIONS(12353), + [anon_sym_BSLASHPnotecite] = ACTIONS(12353), + [anon_sym_BSLASHfnotecite] = ACTIONS(12353), + [anon_sym_BSLASHusepackage] = ACTIONS(12353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12353), + [anon_sym_BSLASHinclude] = ACTIONS(12353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12353), + [anon_sym_BSLASHinput] = ACTIONS(12353), + [anon_sym_BSLASHsubfile] = ACTIONS(12353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12353), + [anon_sym_BSLASHbibliography] = ACTIONS(12353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12353), + [anon_sym_BSLASHincludesvg] = ACTIONS(12353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12353), + [anon_sym_BSLASHimport] = ACTIONS(12353), + [anon_sym_BSLASHsubimport] = ACTIONS(12353), + [anon_sym_BSLASHinputfrom] = ACTIONS(12353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12353), + [anon_sym_BSLASHincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHlabel] = ACTIONS(12353), + [anon_sym_BSLASHref] = ACTIONS(12353), + [anon_sym_BSLASHvref] = ACTIONS(12353), + [anon_sym_BSLASHVref] = ACTIONS(12353), + [anon_sym_BSLASHautoref] = ACTIONS(12353), + [anon_sym_BSLASHpageref] = ACTIONS(12353), + [anon_sym_BSLASHcref] = ACTIONS(12353), + [anon_sym_BSLASHCref] = ACTIONS(12353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnameCref] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHlabelcref] = ACTIONS(12353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12353), + [anon_sym_BSLASHeqref] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange] = ACTIONS(12353), + [anon_sym_BSLASHCrefrange] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewlabel] = ACTIONS(12353), + [anon_sym_BSLASHnewcommand] = ACTIONS(12353), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12353), + [anon_sym_BSLASHgls] = ACTIONS(12353), + [anon_sym_BSLASHGls] = ACTIONS(12353), + [anon_sym_BSLASHGLS] = ACTIONS(12353), + [anon_sym_BSLASHglspl] = ACTIONS(12353), + [anon_sym_BSLASHGlspl] = ACTIONS(12353), + [anon_sym_BSLASHGLSpl] = ACTIONS(12353), + [anon_sym_BSLASHglsdisp] = ACTIONS(12353), + [anon_sym_BSLASHglslink] = ACTIONS(12353), + [anon_sym_BSLASHglstext] = ACTIONS(12353), + [anon_sym_BSLASHGlstext] = ACTIONS(12353), + [anon_sym_BSLASHGLStext] = ACTIONS(12353), + [anon_sym_BSLASHglsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12353), + [anon_sym_BSLASHglsplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSplural] = ACTIONS(12353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHglsname] = ACTIONS(12353), + [anon_sym_BSLASHGlsname] = ACTIONS(12353), + [anon_sym_BSLASHGLSname] = ACTIONS(12353), + [anon_sym_BSLASHglssymbol] = ACTIONS(12353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12353), + [anon_sym_BSLASHglsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12353), + [anon_sym_BSLASHglsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12353), + [anon_sym_BSLASHglsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12353), + [anon_sym_BSLASHglsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12353), + [anon_sym_BSLASHglsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12353), + [anon_sym_BSLASHnewacronym] = ACTIONS(12353), + [anon_sym_BSLASHacrshort] = ACTIONS(12353), + [anon_sym_BSLASHAcrshort] = ACTIONS(12353), + [anon_sym_BSLASHACRshort] = ACTIONS(12353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12353), + [anon_sym_BSLASHacrlong] = ACTIONS(12353), + [anon_sym_BSLASHAcrlong] = ACTIONS(12353), + [anon_sym_BSLASHACRlong] = ACTIONS(12353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12353), + [anon_sym_BSLASHacrfull] = ACTIONS(12353), + [anon_sym_BSLASHAcrfull] = ACTIONS(12353), + [anon_sym_BSLASHACRfull] = ACTIONS(12353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12353), + [anon_sym_BSLASHacs] = ACTIONS(12353), + [anon_sym_BSLASHAcs] = ACTIONS(12353), + [anon_sym_BSLASHacsp] = ACTIONS(12353), + [anon_sym_BSLASHAcsp] = ACTIONS(12353), + [anon_sym_BSLASHacl] = ACTIONS(12353), + [anon_sym_BSLASHAcl] = ACTIONS(12353), + [anon_sym_BSLASHaclp] = ACTIONS(12353), + [anon_sym_BSLASHAclp] = ACTIONS(12353), + [anon_sym_BSLASHacf] = ACTIONS(12353), + [anon_sym_BSLASHAcf] = ACTIONS(12353), + [anon_sym_BSLASHacfp] = ACTIONS(12353), + [anon_sym_BSLASHAcfp] = ACTIONS(12353), + [anon_sym_BSLASHac] = ACTIONS(12353), + [anon_sym_BSLASHAc] = ACTIONS(12353), + [anon_sym_BSLASHacp] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12353), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12353), + [anon_sym_BSLASHcolor] = ACTIONS(12353), + [anon_sym_BSLASHcolorbox] = ACTIONS(12353), + [anon_sym_BSLASHtextcolor] = ACTIONS(12353), + [anon_sym_BSLASHpagecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12353), + }, + [559] = { + [ts_builtin_sym_end] = ACTIONS(12355), + [sym_generic_command_name] = ACTIONS(12357), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12357), + [aux_sym_chapter_token1] = ACTIONS(12357), + [aux_sym_section_token1] = ACTIONS(12357), + [aux_sym_subsection_token1] = ACTIONS(12357), + [aux_sym_subsubsection_token1] = ACTIONS(12357), + [aux_sym_paragraph_token1] = ACTIONS(12357), + [aux_sym_subparagraph_token1] = ACTIONS(12357), + [anon_sym_BSLASHitem] = ACTIONS(12357), + [anon_sym_LBRACK] = ACTIONS(12355), + [anon_sym_RBRACK] = ACTIONS(12355), + [anon_sym_LBRACE] = ACTIONS(12355), + [anon_sym_RBRACE] = ACTIONS(12355), + [anon_sym_LPAREN] = ACTIONS(12355), + [anon_sym_RPAREN] = ACTIONS(12355), + [anon_sym_COMMA] = ACTIONS(12355), + [anon_sym_EQ] = ACTIONS(12355), + [sym_word] = ACTIONS(12355), + [sym_param] = ACTIONS(12355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12355), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12355), + [anon_sym_DOLLAR] = ACTIONS(12357), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12355), + [anon_sym_BSLASHbegin] = ACTIONS(12357), + [anon_sym_BSLASHcaption] = ACTIONS(12357), + [anon_sym_BSLASHcite] = ACTIONS(12357), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCite] = ACTIONS(12357), + [anon_sym_BSLASHnocite] = ACTIONS(12357), + [anon_sym_BSLASHcitet] = ACTIONS(12357), + [anon_sym_BSLASHcitep] = ACTIONS(12357), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteauthor] = ACTIONS(12357), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12357), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitetitle] = ACTIONS(12357), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteyear] = ACTIONS(12357), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitedate] = ACTIONS(12357), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteurl] = ACTIONS(12357), + [anon_sym_BSLASHfullcite] = ACTIONS(12357), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12357), + [anon_sym_BSLASHcitealt] = ACTIONS(12357), + [anon_sym_BSLASHcitealp] = ACTIONS(12357), + [anon_sym_BSLASHcitetext] = ACTIONS(12357), + [anon_sym_BSLASHparencite] = ACTIONS(12357), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHParencite] = ACTIONS(12357), + [anon_sym_BSLASHfootcite] = ACTIONS(12357), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12357), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12357), + [anon_sym_BSLASHtextcite] = ACTIONS(12357), + [anon_sym_BSLASHTextcite] = ACTIONS(12357), + [anon_sym_BSLASHsmartcite] = ACTIONS(12357), + [anon_sym_BSLASHSmartcite] = ACTIONS(12357), + [anon_sym_BSLASHsupercite] = ACTIONS(12357), + [anon_sym_BSLASHautocite] = ACTIONS(12357), + [anon_sym_BSLASHAutocite] = ACTIONS(12357), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHvolcite] = ACTIONS(12357), + [anon_sym_BSLASHVolcite] = ACTIONS(12357), + [anon_sym_BSLASHpvolcite] = ACTIONS(12357), + [anon_sym_BSLASHPvolcite] = ACTIONS(12357), + [anon_sym_BSLASHfvolcite] = ACTIONS(12357), + [anon_sym_BSLASHftvolcite] = ACTIONS(12357), + [anon_sym_BSLASHsvolcite] = ACTIONS(12357), + [anon_sym_BSLASHSvolcite] = ACTIONS(12357), + [anon_sym_BSLASHtvolcite] = ACTIONS(12357), + [anon_sym_BSLASHTvolcite] = ACTIONS(12357), + [anon_sym_BSLASHavolcite] = ACTIONS(12357), + [anon_sym_BSLASHAvolcite] = ACTIONS(12357), + [anon_sym_BSLASHnotecite] = ACTIONS(12357), + [anon_sym_BSLASHpnotecite] = ACTIONS(12357), + [anon_sym_BSLASHPnotecite] = ACTIONS(12357), + [anon_sym_BSLASHfnotecite] = ACTIONS(12357), + [anon_sym_BSLASHusepackage] = ACTIONS(12357), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12357), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12357), + [anon_sym_BSLASHinclude] = ACTIONS(12357), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12357), + [anon_sym_BSLASHinput] = ACTIONS(12357), + [anon_sym_BSLASHsubfile] = ACTIONS(12357), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12357), + [anon_sym_BSLASHbibliography] = ACTIONS(12357), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12357), + [anon_sym_BSLASHincludesvg] = ACTIONS(12357), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12357), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12357), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12357), + [anon_sym_BSLASHimport] = ACTIONS(12357), + [anon_sym_BSLASHsubimport] = ACTIONS(12357), + [anon_sym_BSLASHinputfrom] = ACTIONS(12357), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12357), + [anon_sym_BSLASHincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHlabel] = ACTIONS(12357), + [anon_sym_BSLASHref] = ACTIONS(12357), + [anon_sym_BSLASHvref] = ACTIONS(12357), + [anon_sym_BSLASHVref] = ACTIONS(12357), + [anon_sym_BSLASHautoref] = ACTIONS(12357), + [anon_sym_BSLASHpageref] = ACTIONS(12357), + [anon_sym_BSLASHcref] = ACTIONS(12357), + [anon_sym_BSLASHCref] = ACTIONS(12357), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnameCref] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHlabelcref] = ACTIONS(12357), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12357), + [anon_sym_BSLASHeqref] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange] = ACTIONS(12357), + [anon_sym_BSLASHCrefrange] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewlabel] = ACTIONS(12357), + [anon_sym_BSLASHnewcommand] = ACTIONS(12357), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12357), + [anon_sym_BSLASHgls] = ACTIONS(12357), + [anon_sym_BSLASHGls] = ACTIONS(12357), + [anon_sym_BSLASHGLS] = ACTIONS(12357), + [anon_sym_BSLASHglspl] = ACTIONS(12357), + [anon_sym_BSLASHGlspl] = ACTIONS(12357), + [anon_sym_BSLASHGLSpl] = ACTIONS(12357), + [anon_sym_BSLASHglsdisp] = ACTIONS(12357), + [anon_sym_BSLASHglslink] = ACTIONS(12357), + [anon_sym_BSLASHglstext] = ACTIONS(12357), + [anon_sym_BSLASHGlstext] = ACTIONS(12357), + [anon_sym_BSLASHGLStext] = ACTIONS(12357), + [anon_sym_BSLASHglsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12357), + [anon_sym_BSLASHglsplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSplural] = ACTIONS(12357), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHglsname] = ACTIONS(12357), + [anon_sym_BSLASHGlsname] = ACTIONS(12357), + [anon_sym_BSLASHGLSname] = ACTIONS(12357), + [anon_sym_BSLASHglssymbol] = ACTIONS(12357), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12357), + [anon_sym_BSLASHglsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12357), + [anon_sym_BSLASHglsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12357), + [anon_sym_BSLASHglsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12357), + [anon_sym_BSLASHglsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12357), + [anon_sym_BSLASHglsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12357), + [anon_sym_BSLASHnewacronym] = ACTIONS(12357), + [anon_sym_BSLASHacrshort] = ACTIONS(12357), + [anon_sym_BSLASHAcrshort] = ACTIONS(12357), + [anon_sym_BSLASHACRshort] = ACTIONS(12357), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12357), + [anon_sym_BSLASHacrlong] = ACTIONS(12357), + [anon_sym_BSLASHAcrlong] = ACTIONS(12357), + [anon_sym_BSLASHACRlong] = ACTIONS(12357), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12357), + [anon_sym_BSLASHacrfull] = ACTIONS(12357), + [anon_sym_BSLASHAcrfull] = ACTIONS(12357), + [anon_sym_BSLASHACRfull] = ACTIONS(12357), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12357), + [anon_sym_BSLASHacs] = ACTIONS(12357), + [anon_sym_BSLASHAcs] = ACTIONS(12357), + [anon_sym_BSLASHacsp] = ACTIONS(12357), + [anon_sym_BSLASHAcsp] = ACTIONS(12357), + [anon_sym_BSLASHacl] = ACTIONS(12357), + [anon_sym_BSLASHAcl] = ACTIONS(12357), + [anon_sym_BSLASHaclp] = ACTIONS(12357), + [anon_sym_BSLASHAclp] = ACTIONS(12357), + [anon_sym_BSLASHacf] = ACTIONS(12357), + [anon_sym_BSLASHAcf] = ACTIONS(12357), + [anon_sym_BSLASHacfp] = ACTIONS(12357), + [anon_sym_BSLASHAcfp] = ACTIONS(12357), + [anon_sym_BSLASHac] = ACTIONS(12357), + [anon_sym_BSLASHAc] = ACTIONS(12357), + [anon_sym_BSLASHacp] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12357), + [anon_sym_BSLASHcolor] = ACTIONS(12357), + [anon_sym_BSLASHcolorbox] = ACTIONS(12357), + [anon_sym_BSLASHtextcolor] = ACTIONS(12357), + [anon_sym_BSLASHpagecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12357), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12357), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12357), + }, + [560] = { + [ts_builtin_sym_end] = ACTIONS(12359), + [sym_generic_command_name] = ACTIONS(12361), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12361), + [aux_sym_chapter_token1] = ACTIONS(12361), + [aux_sym_section_token1] = ACTIONS(12361), + [aux_sym_subsection_token1] = ACTIONS(12361), + [aux_sym_subsubsection_token1] = ACTIONS(12361), + [aux_sym_paragraph_token1] = ACTIONS(12361), + [aux_sym_subparagraph_token1] = ACTIONS(12361), + [anon_sym_BSLASHitem] = ACTIONS(12361), + [anon_sym_LBRACK] = ACTIONS(12359), + [anon_sym_RBRACK] = ACTIONS(12359), + [anon_sym_LBRACE] = ACTIONS(12359), + [anon_sym_RBRACE] = ACTIONS(12359), + [anon_sym_LPAREN] = ACTIONS(12359), + [anon_sym_RPAREN] = ACTIONS(12359), + [anon_sym_COMMA] = ACTIONS(12359), + [anon_sym_EQ] = ACTIONS(12359), + [sym_word] = ACTIONS(12359), + [sym_param] = ACTIONS(12359), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12359), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12359), + [anon_sym_DOLLAR] = ACTIONS(12361), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12359), + [anon_sym_BSLASHbegin] = ACTIONS(12361), + [anon_sym_BSLASHcaption] = ACTIONS(12361), + [anon_sym_BSLASHcite] = ACTIONS(12361), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCite] = ACTIONS(12361), + [anon_sym_BSLASHnocite] = ACTIONS(12361), + [anon_sym_BSLASHcitet] = ACTIONS(12361), + [anon_sym_BSLASHcitep] = ACTIONS(12361), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteauthor] = ACTIONS(12361), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12361), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitetitle] = ACTIONS(12361), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteyear] = ACTIONS(12361), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitedate] = ACTIONS(12361), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteurl] = ACTIONS(12361), + [anon_sym_BSLASHfullcite] = ACTIONS(12361), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12361), + [anon_sym_BSLASHcitealt] = ACTIONS(12361), + [anon_sym_BSLASHcitealp] = ACTIONS(12361), + [anon_sym_BSLASHcitetext] = ACTIONS(12361), + [anon_sym_BSLASHparencite] = ACTIONS(12361), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHParencite] = ACTIONS(12361), + [anon_sym_BSLASHfootcite] = ACTIONS(12361), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12361), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12361), + [anon_sym_BSLASHtextcite] = ACTIONS(12361), + [anon_sym_BSLASHTextcite] = ACTIONS(12361), + [anon_sym_BSLASHsmartcite] = ACTIONS(12361), + [anon_sym_BSLASHSmartcite] = ACTIONS(12361), + [anon_sym_BSLASHsupercite] = ACTIONS(12361), + [anon_sym_BSLASHautocite] = ACTIONS(12361), + [anon_sym_BSLASHAutocite] = ACTIONS(12361), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHvolcite] = ACTIONS(12361), + [anon_sym_BSLASHVolcite] = ACTIONS(12361), + [anon_sym_BSLASHpvolcite] = ACTIONS(12361), + [anon_sym_BSLASHPvolcite] = ACTIONS(12361), + [anon_sym_BSLASHfvolcite] = ACTIONS(12361), + [anon_sym_BSLASHftvolcite] = ACTIONS(12361), + [anon_sym_BSLASHsvolcite] = ACTIONS(12361), + [anon_sym_BSLASHSvolcite] = ACTIONS(12361), + [anon_sym_BSLASHtvolcite] = ACTIONS(12361), + [anon_sym_BSLASHTvolcite] = ACTIONS(12361), + [anon_sym_BSLASHavolcite] = ACTIONS(12361), + [anon_sym_BSLASHAvolcite] = ACTIONS(12361), + [anon_sym_BSLASHnotecite] = ACTIONS(12361), + [anon_sym_BSLASHpnotecite] = ACTIONS(12361), + [anon_sym_BSLASHPnotecite] = ACTIONS(12361), + [anon_sym_BSLASHfnotecite] = ACTIONS(12361), + [anon_sym_BSLASHusepackage] = ACTIONS(12361), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12361), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12361), + [anon_sym_BSLASHinclude] = ACTIONS(12361), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12361), + [anon_sym_BSLASHinput] = ACTIONS(12361), + [anon_sym_BSLASHsubfile] = ACTIONS(12361), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12361), + [anon_sym_BSLASHbibliography] = ACTIONS(12361), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12361), + [anon_sym_BSLASHincludesvg] = ACTIONS(12361), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12361), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12361), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12361), + [anon_sym_BSLASHimport] = ACTIONS(12361), + [anon_sym_BSLASHsubimport] = ACTIONS(12361), + [anon_sym_BSLASHinputfrom] = ACTIONS(12361), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12361), + [anon_sym_BSLASHincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHlabel] = ACTIONS(12361), + [anon_sym_BSLASHref] = ACTIONS(12361), + [anon_sym_BSLASHvref] = ACTIONS(12361), + [anon_sym_BSLASHVref] = ACTIONS(12361), + [anon_sym_BSLASHautoref] = ACTIONS(12361), + [anon_sym_BSLASHpageref] = ACTIONS(12361), + [anon_sym_BSLASHcref] = ACTIONS(12361), + [anon_sym_BSLASHCref] = ACTIONS(12361), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnameCref] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHlabelcref] = ACTIONS(12361), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12361), + [anon_sym_BSLASHeqref] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange] = ACTIONS(12361), + [anon_sym_BSLASHCrefrange] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewlabel] = ACTIONS(12361), + [anon_sym_BSLASHnewcommand] = ACTIONS(12361), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12361), + [anon_sym_BSLASHgls] = ACTIONS(12361), + [anon_sym_BSLASHGls] = ACTIONS(12361), + [anon_sym_BSLASHGLS] = ACTIONS(12361), + [anon_sym_BSLASHglspl] = ACTIONS(12361), + [anon_sym_BSLASHGlspl] = ACTIONS(12361), + [anon_sym_BSLASHGLSpl] = ACTIONS(12361), + [anon_sym_BSLASHglsdisp] = ACTIONS(12361), + [anon_sym_BSLASHglslink] = ACTIONS(12361), + [anon_sym_BSLASHglstext] = ACTIONS(12361), + [anon_sym_BSLASHGlstext] = ACTIONS(12361), + [anon_sym_BSLASHGLStext] = ACTIONS(12361), + [anon_sym_BSLASHglsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12361), + [anon_sym_BSLASHglsplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSplural] = ACTIONS(12361), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHglsname] = ACTIONS(12361), + [anon_sym_BSLASHGlsname] = ACTIONS(12361), + [anon_sym_BSLASHGLSname] = ACTIONS(12361), + [anon_sym_BSLASHglssymbol] = ACTIONS(12361), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12361), + [anon_sym_BSLASHglsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12361), + [anon_sym_BSLASHglsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12361), + [anon_sym_BSLASHglsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12361), + [anon_sym_BSLASHglsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12361), + [anon_sym_BSLASHglsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12361), + [anon_sym_BSLASHnewacronym] = ACTIONS(12361), + [anon_sym_BSLASHacrshort] = ACTIONS(12361), + [anon_sym_BSLASHAcrshort] = ACTIONS(12361), + [anon_sym_BSLASHACRshort] = ACTIONS(12361), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12361), + [anon_sym_BSLASHacrlong] = ACTIONS(12361), + [anon_sym_BSLASHAcrlong] = ACTIONS(12361), + [anon_sym_BSLASHACRlong] = ACTIONS(12361), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12361), + [anon_sym_BSLASHacrfull] = ACTIONS(12361), + [anon_sym_BSLASHAcrfull] = ACTIONS(12361), + [anon_sym_BSLASHACRfull] = ACTIONS(12361), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12361), + [anon_sym_BSLASHacs] = ACTIONS(12361), + [anon_sym_BSLASHAcs] = ACTIONS(12361), + [anon_sym_BSLASHacsp] = ACTIONS(12361), + [anon_sym_BSLASHAcsp] = ACTIONS(12361), + [anon_sym_BSLASHacl] = ACTIONS(12361), + [anon_sym_BSLASHAcl] = ACTIONS(12361), + [anon_sym_BSLASHaclp] = ACTIONS(12361), + [anon_sym_BSLASHAclp] = ACTIONS(12361), + [anon_sym_BSLASHacf] = ACTIONS(12361), + [anon_sym_BSLASHAcf] = ACTIONS(12361), + [anon_sym_BSLASHacfp] = ACTIONS(12361), + [anon_sym_BSLASHAcfp] = ACTIONS(12361), + [anon_sym_BSLASHac] = ACTIONS(12361), + [anon_sym_BSLASHAc] = ACTIONS(12361), + [anon_sym_BSLASHacp] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12361), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12361), + [anon_sym_BSLASHcolor] = ACTIONS(12361), + [anon_sym_BSLASHcolorbox] = ACTIONS(12361), + [anon_sym_BSLASHtextcolor] = ACTIONS(12361), + [anon_sym_BSLASHpagecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12361), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12361), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12361), + }, + [561] = { + [ts_builtin_sym_end] = ACTIONS(12363), + [sym_generic_command_name] = ACTIONS(12365), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12365), + [aux_sym_chapter_token1] = ACTIONS(12365), + [aux_sym_section_token1] = ACTIONS(12365), + [aux_sym_subsection_token1] = ACTIONS(12365), + [aux_sym_subsubsection_token1] = ACTIONS(12365), + [aux_sym_paragraph_token1] = ACTIONS(12365), + [aux_sym_subparagraph_token1] = ACTIONS(12365), + [anon_sym_BSLASHitem] = ACTIONS(12365), + [anon_sym_LBRACK] = ACTIONS(12363), + [anon_sym_RBRACK] = ACTIONS(12363), + [anon_sym_LBRACE] = ACTIONS(12363), + [anon_sym_RBRACE] = ACTIONS(12363), + [anon_sym_LPAREN] = ACTIONS(12363), + [anon_sym_RPAREN] = ACTIONS(12363), + [anon_sym_COMMA] = ACTIONS(12363), + [anon_sym_EQ] = ACTIONS(12363), + [sym_word] = ACTIONS(12363), + [sym_param] = ACTIONS(12363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12363), + [anon_sym_DOLLAR] = ACTIONS(12365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12363), + [anon_sym_BSLASHbegin] = ACTIONS(12365), + [anon_sym_BSLASHcaption] = ACTIONS(12365), + [anon_sym_BSLASHcite] = ACTIONS(12365), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCite] = ACTIONS(12365), + [anon_sym_BSLASHnocite] = ACTIONS(12365), + [anon_sym_BSLASHcitet] = ACTIONS(12365), + [anon_sym_BSLASHcitep] = ACTIONS(12365), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteauthor] = ACTIONS(12365), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12365), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitetitle] = ACTIONS(12365), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteyear] = ACTIONS(12365), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitedate] = ACTIONS(12365), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteurl] = ACTIONS(12365), + [anon_sym_BSLASHfullcite] = ACTIONS(12365), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12365), + [anon_sym_BSLASHcitealt] = ACTIONS(12365), + [anon_sym_BSLASHcitealp] = ACTIONS(12365), + [anon_sym_BSLASHcitetext] = ACTIONS(12365), + [anon_sym_BSLASHparencite] = ACTIONS(12365), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHParencite] = ACTIONS(12365), + [anon_sym_BSLASHfootcite] = ACTIONS(12365), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12365), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12365), + [anon_sym_BSLASHtextcite] = ACTIONS(12365), + [anon_sym_BSLASHTextcite] = ACTIONS(12365), + [anon_sym_BSLASHsmartcite] = ACTIONS(12365), + [anon_sym_BSLASHSmartcite] = ACTIONS(12365), + [anon_sym_BSLASHsupercite] = ACTIONS(12365), + [anon_sym_BSLASHautocite] = ACTIONS(12365), + [anon_sym_BSLASHAutocite] = ACTIONS(12365), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHvolcite] = ACTIONS(12365), + [anon_sym_BSLASHVolcite] = ACTIONS(12365), + [anon_sym_BSLASHpvolcite] = ACTIONS(12365), + [anon_sym_BSLASHPvolcite] = ACTIONS(12365), + [anon_sym_BSLASHfvolcite] = ACTIONS(12365), + [anon_sym_BSLASHftvolcite] = ACTIONS(12365), + [anon_sym_BSLASHsvolcite] = ACTIONS(12365), + [anon_sym_BSLASHSvolcite] = ACTIONS(12365), + [anon_sym_BSLASHtvolcite] = ACTIONS(12365), + [anon_sym_BSLASHTvolcite] = ACTIONS(12365), + [anon_sym_BSLASHavolcite] = ACTIONS(12365), + [anon_sym_BSLASHAvolcite] = ACTIONS(12365), + [anon_sym_BSLASHnotecite] = ACTIONS(12365), + [anon_sym_BSLASHpnotecite] = ACTIONS(12365), + [anon_sym_BSLASHPnotecite] = ACTIONS(12365), + [anon_sym_BSLASHfnotecite] = ACTIONS(12365), + [anon_sym_BSLASHusepackage] = ACTIONS(12365), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12365), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12365), + [anon_sym_BSLASHinclude] = ACTIONS(12365), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12365), + [anon_sym_BSLASHinput] = ACTIONS(12365), + [anon_sym_BSLASHsubfile] = ACTIONS(12365), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12365), + [anon_sym_BSLASHbibliography] = ACTIONS(12365), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12365), + [anon_sym_BSLASHincludesvg] = ACTIONS(12365), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12365), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12365), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12365), + [anon_sym_BSLASHimport] = ACTIONS(12365), + [anon_sym_BSLASHsubimport] = ACTIONS(12365), + [anon_sym_BSLASHinputfrom] = ACTIONS(12365), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12365), + [anon_sym_BSLASHincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHlabel] = ACTIONS(12365), + [anon_sym_BSLASHref] = ACTIONS(12365), + [anon_sym_BSLASHvref] = ACTIONS(12365), + [anon_sym_BSLASHVref] = ACTIONS(12365), + [anon_sym_BSLASHautoref] = ACTIONS(12365), + [anon_sym_BSLASHpageref] = ACTIONS(12365), + [anon_sym_BSLASHcref] = ACTIONS(12365), + [anon_sym_BSLASHCref] = ACTIONS(12365), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnameCref] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHlabelcref] = ACTIONS(12365), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12365), + [anon_sym_BSLASHeqref] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange] = ACTIONS(12365), + [anon_sym_BSLASHCrefrange] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewlabel] = ACTIONS(12365), + [anon_sym_BSLASHnewcommand] = ACTIONS(12365), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12365), + [anon_sym_BSLASHgls] = ACTIONS(12365), + [anon_sym_BSLASHGls] = ACTIONS(12365), + [anon_sym_BSLASHGLS] = ACTIONS(12365), + [anon_sym_BSLASHglspl] = ACTIONS(12365), + [anon_sym_BSLASHGlspl] = ACTIONS(12365), + [anon_sym_BSLASHGLSpl] = ACTIONS(12365), + [anon_sym_BSLASHglsdisp] = ACTIONS(12365), + [anon_sym_BSLASHglslink] = ACTIONS(12365), + [anon_sym_BSLASHglstext] = ACTIONS(12365), + [anon_sym_BSLASHGlstext] = ACTIONS(12365), + [anon_sym_BSLASHGLStext] = ACTIONS(12365), + [anon_sym_BSLASHglsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12365), + [anon_sym_BSLASHglsplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSplural] = ACTIONS(12365), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHglsname] = ACTIONS(12365), + [anon_sym_BSLASHGlsname] = ACTIONS(12365), + [anon_sym_BSLASHGLSname] = ACTIONS(12365), + [anon_sym_BSLASHglssymbol] = ACTIONS(12365), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12365), + [anon_sym_BSLASHglsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12365), + [anon_sym_BSLASHglsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12365), + [anon_sym_BSLASHglsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12365), + [anon_sym_BSLASHglsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12365), + [anon_sym_BSLASHglsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12365), + [anon_sym_BSLASHnewacronym] = ACTIONS(12365), + [anon_sym_BSLASHacrshort] = ACTIONS(12365), + [anon_sym_BSLASHAcrshort] = ACTIONS(12365), + [anon_sym_BSLASHACRshort] = ACTIONS(12365), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12365), + [anon_sym_BSLASHacrlong] = ACTIONS(12365), + [anon_sym_BSLASHAcrlong] = ACTIONS(12365), + [anon_sym_BSLASHACRlong] = ACTIONS(12365), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12365), + [anon_sym_BSLASHacrfull] = ACTIONS(12365), + [anon_sym_BSLASHAcrfull] = ACTIONS(12365), + [anon_sym_BSLASHACRfull] = ACTIONS(12365), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12365), + [anon_sym_BSLASHacs] = ACTIONS(12365), + [anon_sym_BSLASHAcs] = ACTIONS(12365), + [anon_sym_BSLASHacsp] = ACTIONS(12365), + [anon_sym_BSLASHAcsp] = ACTIONS(12365), + [anon_sym_BSLASHacl] = ACTIONS(12365), + [anon_sym_BSLASHAcl] = ACTIONS(12365), + [anon_sym_BSLASHaclp] = ACTIONS(12365), + [anon_sym_BSLASHAclp] = ACTIONS(12365), + [anon_sym_BSLASHacf] = ACTIONS(12365), + [anon_sym_BSLASHAcf] = ACTIONS(12365), + [anon_sym_BSLASHacfp] = ACTIONS(12365), + [anon_sym_BSLASHAcfp] = ACTIONS(12365), + [anon_sym_BSLASHac] = ACTIONS(12365), + [anon_sym_BSLASHAc] = ACTIONS(12365), + [anon_sym_BSLASHacp] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12365), + [anon_sym_BSLASHcolor] = ACTIONS(12365), + [anon_sym_BSLASHcolorbox] = ACTIONS(12365), + [anon_sym_BSLASHtextcolor] = ACTIONS(12365), + [anon_sym_BSLASHpagecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12365), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12365), + }, + [562] = { + [ts_builtin_sym_end] = ACTIONS(12367), + [sym_generic_command_name] = ACTIONS(12369), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12369), + [aux_sym_chapter_token1] = ACTIONS(12369), + [aux_sym_section_token1] = ACTIONS(12369), + [aux_sym_subsection_token1] = ACTIONS(12369), + [aux_sym_subsubsection_token1] = ACTIONS(12369), + [aux_sym_paragraph_token1] = ACTIONS(12369), + [aux_sym_subparagraph_token1] = ACTIONS(12369), + [anon_sym_BSLASHitem] = ACTIONS(12369), + [anon_sym_LBRACK] = ACTIONS(12367), + [anon_sym_RBRACK] = ACTIONS(12367), + [anon_sym_LBRACE] = ACTIONS(12367), + [anon_sym_RBRACE] = ACTIONS(12367), + [anon_sym_LPAREN] = ACTIONS(12367), + [anon_sym_RPAREN] = ACTIONS(12367), + [anon_sym_COMMA] = ACTIONS(12367), + [anon_sym_EQ] = ACTIONS(12367), + [sym_word] = ACTIONS(12367), + [sym_param] = ACTIONS(12367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12367), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12367), + [anon_sym_DOLLAR] = ACTIONS(12369), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12367), + [anon_sym_BSLASHbegin] = ACTIONS(12369), + [anon_sym_BSLASHcaption] = ACTIONS(12369), + [anon_sym_BSLASHcite] = ACTIONS(12369), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCite] = ACTIONS(12369), + [anon_sym_BSLASHnocite] = ACTIONS(12369), + [anon_sym_BSLASHcitet] = ACTIONS(12369), + [anon_sym_BSLASHcitep] = ACTIONS(12369), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteauthor] = ACTIONS(12369), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12369), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitetitle] = ACTIONS(12369), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteyear] = ACTIONS(12369), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitedate] = ACTIONS(12369), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteurl] = ACTIONS(12369), + [anon_sym_BSLASHfullcite] = ACTIONS(12369), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12369), + [anon_sym_BSLASHcitealt] = ACTIONS(12369), + [anon_sym_BSLASHcitealp] = ACTIONS(12369), + [anon_sym_BSLASHcitetext] = ACTIONS(12369), + [anon_sym_BSLASHparencite] = ACTIONS(12369), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHParencite] = ACTIONS(12369), + [anon_sym_BSLASHfootcite] = ACTIONS(12369), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12369), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12369), + [anon_sym_BSLASHtextcite] = ACTIONS(12369), + [anon_sym_BSLASHTextcite] = ACTIONS(12369), + [anon_sym_BSLASHsmartcite] = ACTIONS(12369), + [anon_sym_BSLASHSmartcite] = ACTIONS(12369), + [anon_sym_BSLASHsupercite] = ACTIONS(12369), + [anon_sym_BSLASHautocite] = ACTIONS(12369), + [anon_sym_BSLASHAutocite] = ACTIONS(12369), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHvolcite] = ACTIONS(12369), + [anon_sym_BSLASHVolcite] = ACTIONS(12369), + [anon_sym_BSLASHpvolcite] = ACTIONS(12369), + [anon_sym_BSLASHPvolcite] = ACTIONS(12369), + [anon_sym_BSLASHfvolcite] = ACTIONS(12369), + [anon_sym_BSLASHftvolcite] = ACTIONS(12369), + [anon_sym_BSLASHsvolcite] = ACTIONS(12369), + [anon_sym_BSLASHSvolcite] = ACTIONS(12369), + [anon_sym_BSLASHtvolcite] = ACTIONS(12369), + [anon_sym_BSLASHTvolcite] = ACTIONS(12369), + [anon_sym_BSLASHavolcite] = ACTIONS(12369), + [anon_sym_BSLASHAvolcite] = ACTIONS(12369), + [anon_sym_BSLASHnotecite] = ACTIONS(12369), + [anon_sym_BSLASHpnotecite] = ACTIONS(12369), + [anon_sym_BSLASHPnotecite] = ACTIONS(12369), + [anon_sym_BSLASHfnotecite] = ACTIONS(12369), + [anon_sym_BSLASHusepackage] = ACTIONS(12369), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12369), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12369), + [anon_sym_BSLASHinclude] = ACTIONS(12369), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12369), + [anon_sym_BSLASHinput] = ACTIONS(12369), + [anon_sym_BSLASHsubfile] = ACTIONS(12369), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12369), + [anon_sym_BSLASHbibliography] = ACTIONS(12369), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12369), + [anon_sym_BSLASHincludesvg] = ACTIONS(12369), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12369), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12369), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12369), + [anon_sym_BSLASHimport] = ACTIONS(12369), + [anon_sym_BSLASHsubimport] = ACTIONS(12369), + [anon_sym_BSLASHinputfrom] = ACTIONS(12369), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12369), + [anon_sym_BSLASHincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHlabel] = ACTIONS(12369), + [anon_sym_BSLASHref] = ACTIONS(12369), + [anon_sym_BSLASHvref] = ACTIONS(12369), + [anon_sym_BSLASHVref] = ACTIONS(12369), + [anon_sym_BSLASHautoref] = ACTIONS(12369), + [anon_sym_BSLASHpageref] = ACTIONS(12369), + [anon_sym_BSLASHcref] = ACTIONS(12369), + [anon_sym_BSLASHCref] = ACTIONS(12369), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnameCref] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHlabelcref] = ACTIONS(12369), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12369), + [anon_sym_BSLASHeqref] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange] = ACTIONS(12369), + [anon_sym_BSLASHCrefrange] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewlabel] = ACTIONS(12369), + [anon_sym_BSLASHnewcommand] = ACTIONS(12369), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12369), + [anon_sym_BSLASHgls] = ACTIONS(12369), + [anon_sym_BSLASHGls] = ACTIONS(12369), + [anon_sym_BSLASHGLS] = ACTIONS(12369), + [anon_sym_BSLASHglspl] = ACTIONS(12369), + [anon_sym_BSLASHGlspl] = ACTIONS(12369), + [anon_sym_BSLASHGLSpl] = ACTIONS(12369), + [anon_sym_BSLASHglsdisp] = ACTIONS(12369), + [anon_sym_BSLASHglslink] = ACTIONS(12369), + [anon_sym_BSLASHglstext] = ACTIONS(12369), + [anon_sym_BSLASHGlstext] = ACTIONS(12369), + [anon_sym_BSLASHGLStext] = ACTIONS(12369), + [anon_sym_BSLASHglsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12369), + [anon_sym_BSLASHglsplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSplural] = ACTIONS(12369), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHglsname] = ACTIONS(12369), + [anon_sym_BSLASHGlsname] = ACTIONS(12369), + [anon_sym_BSLASHGLSname] = ACTIONS(12369), + [anon_sym_BSLASHglssymbol] = ACTIONS(12369), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12369), + [anon_sym_BSLASHglsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12369), + [anon_sym_BSLASHglsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12369), + [anon_sym_BSLASHglsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12369), + [anon_sym_BSLASHglsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12369), + [anon_sym_BSLASHglsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12369), + [anon_sym_BSLASHnewacronym] = ACTIONS(12369), + [anon_sym_BSLASHacrshort] = ACTIONS(12369), + [anon_sym_BSLASHAcrshort] = ACTIONS(12369), + [anon_sym_BSLASHACRshort] = ACTIONS(12369), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12369), + [anon_sym_BSLASHacrlong] = ACTIONS(12369), + [anon_sym_BSLASHAcrlong] = ACTIONS(12369), + [anon_sym_BSLASHACRlong] = ACTIONS(12369), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12369), + [anon_sym_BSLASHacrfull] = ACTIONS(12369), + [anon_sym_BSLASHAcrfull] = ACTIONS(12369), + [anon_sym_BSLASHACRfull] = ACTIONS(12369), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12369), + [anon_sym_BSLASHacs] = ACTIONS(12369), + [anon_sym_BSLASHAcs] = ACTIONS(12369), + [anon_sym_BSLASHacsp] = ACTIONS(12369), + [anon_sym_BSLASHAcsp] = ACTIONS(12369), + [anon_sym_BSLASHacl] = ACTIONS(12369), + [anon_sym_BSLASHAcl] = ACTIONS(12369), + [anon_sym_BSLASHaclp] = ACTIONS(12369), + [anon_sym_BSLASHAclp] = ACTIONS(12369), + [anon_sym_BSLASHacf] = ACTIONS(12369), + [anon_sym_BSLASHAcf] = ACTIONS(12369), + [anon_sym_BSLASHacfp] = ACTIONS(12369), + [anon_sym_BSLASHAcfp] = ACTIONS(12369), + [anon_sym_BSLASHac] = ACTIONS(12369), + [anon_sym_BSLASHAc] = ACTIONS(12369), + [anon_sym_BSLASHacp] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12369), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12369), + [anon_sym_BSLASHcolor] = ACTIONS(12369), + [anon_sym_BSLASHcolorbox] = ACTIONS(12369), + [anon_sym_BSLASHtextcolor] = ACTIONS(12369), + [anon_sym_BSLASHpagecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12369), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12369), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12369), + }, + [563] = { + [ts_builtin_sym_end] = ACTIONS(12371), + [sym_generic_command_name] = ACTIONS(12373), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12373), + [aux_sym_chapter_token1] = ACTIONS(12373), + [aux_sym_section_token1] = ACTIONS(12373), + [aux_sym_subsection_token1] = ACTIONS(12373), + [aux_sym_subsubsection_token1] = ACTIONS(12373), + [aux_sym_paragraph_token1] = ACTIONS(12373), + [aux_sym_subparagraph_token1] = ACTIONS(12373), + [anon_sym_BSLASHitem] = ACTIONS(12373), + [anon_sym_LBRACK] = ACTIONS(12371), + [anon_sym_RBRACK] = ACTIONS(12371), + [anon_sym_LBRACE] = ACTIONS(12371), + [anon_sym_RBRACE] = ACTIONS(12371), + [anon_sym_LPAREN] = ACTIONS(12371), + [anon_sym_RPAREN] = ACTIONS(12371), + [anon_sym_COMMA] = ACTIONS(12371), + [anon_sym_EQ] = ACTIONS(12371), + [sym_word] = ACTIONS(12371), + [sym_param] = ACTIONS(12371), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12371), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12371), + [anon_sym_DOLLAR] = ACTIONS(12373), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12371), + [anon_sym_BSLASHbegin] = ACTIONS(12373), + [anon_sym_BSLASHcaption] = ACTIONS(12373), + [anon_sym_BSLASHcite] = ACTIONS(12373), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCite] = ACTIONS(12373), + [anon_sym_BSLASHnocite] = ACTIONS(12373), + [anon_sym_BSLASHcitet] = ACTIONS(12373), + [anon_sym_BSLASHcitep] = ACTIONS(12373), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteauthor] = ACTIONS(12373), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12373), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitetitle] = ACTIONS(12373), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteyear] = ACTIONS(12373), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitedate] = ACTIONS(12373), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteurl] = ACTIONS(12373), + [anon_sym_BSLASHfullcite] = ACTIONS(12373), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12373), + [anon_sym_BSLASHcitealt] = ACTIONS(12373), + [anon_sym_BSLASHcitealp] = ACTIONS(12373), + [anon_sym_BSLASHcitetext] = ACTIONS(12373), + [anon_sym_BSLASHparencite] = ACTIONS(12373), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHParencite] = ACTIONS(12373), + [anon_sym_BSLASHfootcite] = ACTIONS(12373), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12373), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12373), + [anon_sym_BSLASHtextcite] = ACTIONS(12373), + [anon_sym_BSLASHTextcite] = ACTIONS(12373), + [anon_sym_BSLASHsmartcite] = ACTIONS(12373), + [anon_sym_BSLASHSmartcite] = ACTIONS(12373), + [anon_sym_BSLASHsupercite] = ACTIONS(12373), + [anon_sym_BSLASHautocite] = ACTIONS(12373), + [anon_sym_BSLASHAutocite] = ACTIONS(12373), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHvolcite] = ACTIONS(12373), + [anon_sym_BSLASHVolcite] = ACTIONS(12373), + [anon_sym_BSLASHpvolcite] = ACTIONS(12373), + [anon_sym_BSLASHPvolcite] = ACTIONS(12373), + [anon_sym_BSLASHfvolcite] = ACTIONS(12373), + [anon_sym_BSLASHftvolcite] = ACTIONS(12373), + [anon_sym_BSLASHsvolcite] = ACTIONS(12373), + [anon_sym_BSLASHSvolcite] = ACTIONS(12373), + [anon_sym_BSLASHtvolcite] = ACTIONS(12373), + [anon_sym_BSLASHTvolcite] = ACTIONS(12373), + [anon_sym_BSLASHavolcite] = ACTIONS(12373), + [anon_sym_BSLASHAvolcite] = ACTIONS(12373), + [anon_sym_BSLASHnotecite] = ACTIONS(12373), + [anon_sym_BSLASHpnotecite] = ACTIONS(12373), + [anon_sym_BSLASHPnotecite] = ACTIONS(12373), + [anon_sym_BSLASHfnotecite] = ACTIONS(12373), + [anon_sym_BSLASHusepackage] = ACTIONS(12373), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12373), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12373), + [anon_sym_BSLASHinclude] = ACTIONS(12373), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12373), + [anon_sym_BSLASHinput] = ACTIONS(12373), + [anon_sym_BSLASHsubfile] = ACTIONS(12373), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12373), + [anon_sym_BSLASHbibliography] = ACTIONS(12373), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12373), + [anon_sym_BSLASHincludesvg] = ACTIONS(12373), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12373), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12373), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12373), + [anon_sym_BSLASHimport] = ACTIONS(12373), + [anon_sym_BSLASHsubimport] = ACTIONS(12373), + [anon_sym_BSLASHinputfrom] = ACTIONS(12373), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12373), + [anon_sym_BSLASHincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHlabel] = ACTIONS(12373), + [anon_sym_BSLASHref] = ACTIONS(12373), + [anon_sym_BSLASHvref] = ACTIONS(12373), + [anon_sym_BSLASHVref] = ACTIONS(12373), + [anon_sym_BSLASHautoref] = ACTIONS(12373), + [anon_sym_BSLASHpageref] = ACTIONS(12373), + [anon_sym_BSLASHcref] = ACTIONS(12373), + [anon_sym_BSLASHCref] = ACTIONS(12373), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnameCref] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHlabelcref] = ACTIONS(12373), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12373), + [anon_sym_BSLASHeqref] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange] = ACTIONS(12373), + [anon_sym_BSLASHCrefrange] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewlabel] = ACTIONS(12373), + [anon_sym_BSLASHnewcommand] = ACTIONS(12373), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12373), + [anon_sym_BSLASHgls] = ACTIONS(12373), + [anon_sym_BSLASHGls] = ACTIONS(12373), + [anon_sym_BSLASHGLS] = ACTIONS(12373), + [anon_sym_BSLASHglspl] = ACTIONS(12373), + [anon_sym_BSLASHGlspl] = ACTIONS(12373), + [anon_sym_BSLASHGLSpl] = ACTIONS(12373), + [anon_sym_BSLASHglsdisp] = ACTIONS(12373), + [anon_sym_BSLASHglslink] = ACTIONS(12373), + [anon_sym_BSLASHglstext] = ACTIONS(12373), + [anon_sym_BSLASHGlstext] = ACTIONS(12373), + [anon_sym_BSLASHGLStext] = ACTIONS(12373), + [anon_sym_BSLASHglsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12373), + [anon_sym_BSLASHglsplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSplural] = ACTIONS(12373), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHglsname] = ACTIONS(12373), + [anon_sym_BSLASHGlsname] = ACTIONS(12373), + [anon_sym_BSLASHGLSname] = ACTIONS(12373), + [anon_sym_BSLASHglssymbol] = ACTIONS(12373), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12373), + [anon_sym_BSLASHglsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12373), + [anon_sym_BSLASHglsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12373), + [anon_sym_BSLASHglsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12373), + [anon_sym_BSLASHglsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12373), + [anon_sym_BSLASHglsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12373), + [anon_sym_BSLASHnewacronym] = ACTIONS(12373), + [anon_sym_BSLASHacrshort] = ACTIONS(12373), + [anon_sym_BSLASHAcrshort] = ACTIONS(12373), + [anon_sym_BSLASHACRshort] = ACTIONS(12373), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12373), + [anon_sym_BSLASHacrlong] = ACTIONS(12373), + [anon_sym_BSLASHAcrlong] = ACTIONS(12373), + [anon_sym_BSLASHACRlong] = ACTIONS(12373), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12373), + [anon_sym_BSLASHacrfull] = ACTIONS(12373), + [anon_sym_BSLASHAcrfull] = ACTIONS(12373), + [anon_sym_BSLASHACRfull] = ACTIONS(12373), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12373), + [anon_sym_BSLASHacs] = ACTIONS(12373), + [anon_sym_BSLASHAcs] = ACTIONS(12373), + [anon_sym_BSLASHacsp] = ACTIONS(12373), + [anon_sym_BSLASHAcsp] = ACTIONS(12373), + [anon_sym_BSLASHacl] = ACTIONS(12373), + [anon_sym_BSLASHAcl] = ACTIONS(12373), + [anon_sym_BSLASHaclp] = ACTIONS(12373), + [anon_sym_BSLASHAclp] = ACTIONS(12373), + [anon_sym_BSLASHacf] = ACTIONS(12373), + [anon_sym_BSLASHAcf] = ACTIONS(12373), + [anon_sym_BSLASHacfp] = ACTIONS(12373), + [anon_sym_BSLASHAcfp] = ACTIONS(12373), + [anon_sym_BSLASHac] = ACTIONS(12373), + [anon_sym_BSLASHAc] = ACTIONS(12373), + [anon_sym_BSLASHacp] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12373), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12373), + [anon_sym_BSLASHcolor] = ACTIONS(12373), + [anon_sym_BSLASHcolorbox] = ACTIONS(12373), + [anon_sym_BSLASHtextcolor] = ACTIONS(12373), + [anon_sym_BSLASHpagecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12373), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12373), + }, + [564] = { + [ts_builtin_sym_end] = ACTIONS(12375), + [sym_generic_command_name] = ACTIONS(12377), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12377), + [aux_sym_chapter_token1] = ACTIONS(12377), + [aux_sym_section_token1] = ACTIONS(12377), + [aux_sym_subsection_token1] = ACTIONS(12377), + [aux_sym_subsubsection_token1] = ACTIONS(12377), + [aux_sym_paragraph_token1] = ACTIONS(12377), + [aux_sym_subparagraph_token1] = ACTIONS(12377), + [anon_sym_BSLASHitem] = ACTIONS(12377), + [anon_sym_LBRACK] = ACTIONS(12375), + [anon_sym_RBRACK] = ACTIONS(12375), + [anon_sym_LBRACE] = ACTIONS(12375), + [anon_sym_RBRACE] = ACTIONS(12375), + [anon_sym_LPAREN] = ACTIONS(12375), + [anon_sym_RPAREN] = ACTIONS(12375), + [anon_sym_COMMA] = ACTIONS(12375), + [anon_sym_EQ] = ACTIONS(12375), + [sym_word] = ACTIONS(12375), + [sym_param] = ACTIONS(12375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12375), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12375), + [anon_sym_DOLLAR] = ACTIONS(12377), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12375), + [anon_sym_BSLASHbegin] = ACTIONS(12377), + [anon_sym_BSLASHcaption] = ACTIONS(12377), + [anon_sym_BSLASHcite] = ACTIONS(12377), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCite] = ACTIONS(12377), + [anon_sym_BSLASHnocite] = ACTIONS(12377), + [anon_sym_BSLASHcitet] = ACTIONS(12377), + [anon_sym_BSLASHcitep] = ACTIONS(12377), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteauthor] = ACTIONS(12377), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12377), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitetitle] = ACTIONS(12377), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteyear] = ACTIONS(12377), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitedate] = ACTIONS(12377), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteurl] = ACTIONS(12377), + [anon_sym_BSLASHfullcite] = ACTIONS(12377), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12377), + [anon_sym_BSLASHcitealt] = ACTIONS(12377), + [anon_sym_BSLASHcitealp] = ACTIONS(12377), + [anon_sym_BSLASHcitetext] = ACTIONS(12377), + [anon_sym_BSLASHparencite] = ACTIONS(12377), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHParencite] = ACTIONS(12377), + [anon_sym_BSLASHfootcite] = ACTIONS(12377), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12377), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12377), + [anon_sym_BSLASHtextcite] = ACTIONS(12377), + [anon_sym_BSLASHTextcite] = ACTIONS(12377), + [anon_sym_BSLASHsmartcite] = ACTIONS(12377), + [anon_sym_BSLASHSmartcite] = ACTIONS(12377), + [anon_sym_BSLASHsupercite] = ACTIONS(12377), + [anon_sym_BSLASHautocite] = ACTIONS(12377), + [anon_sym_BSLASHAutocite] = ACTIONS(12377), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHvolcite] = ACTIONS(12377), + [anon_sym_BSLASHVolcite] = ACTIONS(12377), + [anon_sym_BSLASHpvolcite] = ACTIONS(12377), + [anon_sym_BSLASHPvolcite] = ACTIONS(12377), + [anon_sym_BSLASHfvolcite] = ACTIONS(12377), + [anon_sym_BSLASHftvolcite] = ACTIONS(12377), + [anon_sym_BSLASHsvolcite] = ACTIONS(12377), + [anon_sym_BSLASHSvolcite] = ACTIONS(12377), + [anon_sym_BSLASHtvolcite] = ACTIONS(12377), + [anon_sym_BSLASHTvolcite] = ACTIONS(12377), + [anon_sym_BSLASHavolcite] = ACTIONS(12377), + [anon_sym_BSLASHAvolcite] = ACTIONS(12377), + [anon_sym_BSLASHnotecite] = ACTIONS(12377), + [anon_sym_BSLASHpnotecite] = ACTIONS(12377), + [anon_sym_BSLASHPnotecite] = ACTIONS(12377), + [anon_sym_BSLASHfnotecite] = ACTIONS(12377), + [anon_sym_BSLASHusepackage] = ACTIONS(12377), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12377), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12377), + [anon_sym_BSLASHinclude] = ACTIONS(12377), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12377), + [anon_sym_BSLASHinput] = ACTIONS(12377), + [anon_sym_BSLASHsubfile] = ACTIONS(12377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12377), + [anon_sym_BSLASHbibliography] = ACTIONS(12377), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12377), + [anon_sym_BSLASHincludesvg] = ACTIONS(12377), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12377), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12377), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12377), + [anon_sym_BSLASHimport] = ACTIONS(12377), + [anon_sym_BSLASHsubimport] = ACTIONS(12377), + [anon_sym_BSLASHinputfrom] = ACTIONS(12377), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12377), + [anon_sym_BSLASHincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHlabel] = ACTIONS(12377), + [anon_sym_BSLASHref] = ACTIONS(12377), + [anon_sym_BSLASHvref] = ACTIONS(12377), + [anon_sym_BSLASHVref] = ACTIONS(12377), + [anon_sym_BSLASHautoref] = ACTIONS(12377), + [anon_sym_BSLASHpageref] = ACTIONS(12377), + [anon_sym_BSLASHcref] = ACTIONS(12377), + [anon_sym_BSLASHCref] = ACTIONS(12377), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnameCref] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHlabelcref] = ACTIONS(12377), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12377), + [anon_sym_BSLASHeqref] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange] = ACTIONS(12377), + [anon_sym_BSLASHCrefrange] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewlabel] = ACTIONS(12377), + [anon_sym_BSLASHnewcommand] = ACTIONS(12377), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12377), + [anon_sym_BSLASHgls] = ACTIONS(12377), + [anon_sym_BSLASHGls] = ACTIONS(12377), + [anon_sym_BSLASHGLS] = ACTIONS(12377), + [anon_sym_BSLASHglspl] = ACTIONS(12377), + [anon_sym_BSLASHGlspl] = ACTIONS(12377), + [anon_sym_BSLASHGLSpl] = ACTIONS(12377), + [anon_sym_BSLASHglsdisp] = ACTIONS(12377), + [anon_sym_BSLASHglslink] = ACTIONS(12377), + [anon_sym_BSLASHglstext] = ACTIONS(12377), + [anon_sym_BSLASHGlstext] = ACTIONS(12377), + [anon_sym_BSLASHGLStext] = ACTIONS(12377), + [anon_sym_BSLASHglsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12377), + [anon_sym_BSLASHglsplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSplural] = ACTIONS(12377), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHglsname] = ACTIONS(12377), + [anon_sym_BSLASHGlsname] = ACTIONS(12377), + [anon_sym_BSLASHGLSname] = ACTIONS(12377), + [anon_sym_BSLASHglssymbol] = ACTIONS(12377), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12377), + [anon_sym_BSLASHglsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12377), + [anon_sym_BSLASHglsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12377), + [anon_sym_BSLASHglsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12377), + [anon_sym_BSLASHglsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12377), + [anon_sym_BSLASHglsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12377), + [anon_sym_BSLASHnewacronym] = ACTIONS(12377), + [anon_sym_BSLASHacrshort] = ACTIONS(12377), + [anon_sym_BSLASHAcrshort] = ACTIONS(12377), + [anon_sym_BSLASHACRshort] = ACTIONS(12377), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12377), + [anon_sym_BSLASHacrlong] = ACTIONS(12377), + [anon_sym_BSLASHAcrlong] = ACTIONS(12377), + [anon_sym_BSLASHACRlong] = ACTIONS(12377), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12377), + [anon_sym_BSLASHacrfull] = ACTIONS(12377), + [anon_sym_BSLASHAcrfull] = ACTIONS(12377), + [anon_sym_BSLASHACRfull] = ACTIONS(12377), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12377), + [anon_sym_BSLASHacs] = ACTIONS(12377), + [anon_sym_BSLASHAcs] = ACTIONS(12377), + [anon_sym_BSLASHacsp] = ACTIONS(12377), + [anon_sym_BSLASHAcsp] = ACTIONS(12377), + [anon_sym_BSLASHacl] = ACTIONS(12377), + [anon_sym_BSLASHAcl] = ACTIONS(12377), + [anon_sym_BSLASHaclp] = ACTIONS(12377), + [anon_sym_BSLASHAclp] = ACTIONS(12377), + [anon_sym_BSLASHacf] = ACTIONS(12377), + [anon_sym_BSLASHAcf] = ACTIONS(12377), + [anon_sym_BSLASHacfp] = ACTIONS(12377), + [anon_sym_BSLASHAcfp] = ACTIONS(12377), + [anon_sym_BSLASHac] = ACTIONS(12377), + [anon_sym_BSLASHAc] = ACTIONS(12377), + [anon_sym_BSLASHacp] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12377), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12377), + [anon_sym_BSLASHcolor] = ACTIONS(12377), + [anon_sym_BSLASHcolorbox] = ACTIONS(12377), + [anon_sym_BSLASHtextcolor] = ACTIONS(12377), + [anon_sym_BSLASHpagecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12377), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12377), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12377), + }, + [565] = { + [ts_builtin_sym_end] = ACTIONS(12379), + [sym_generic_command_name] = ACTIONS(12381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12381), + [aux_sym_chapter_token1] = ACTIONS(12381), + [aux_sym_section_token1] = ACTIONS(12381), + [aux_sym_subsection_token1] = ACTIONS(12381), + [aux_sym_subsubsection_token1] = ACTIONS(12381), + [aux_sym_paragraph_token1] = ACTIONS(12381), + [aux_sym_subparagraph_token1] = ACTIONS(12381), + [anon_sym_BSLASHitem] = ACTIONS(12381), + [anon_sym_LBRACK] = ACTIONS(12379), + [anon_sym_RBRACK] = ACTIONS(12379), + [anon_sym_LBRACE] = ACTIONS(12379), + [anon_sym_RBRACE] = ACTIONS(12379), + [anon_sym_LPAREN] = ACTIONS(12379), + [anon_sym_RPAREN] = ACTIONS(12379), + [anon_sym_COMMA] = ACTIONS(12379), + [anon_sym_EQ] = ACTIONS(12379), + [sym_word] = ACTIONS(12379), + [sym_param] = ACTIONS(12379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12379), + [anon_sym_DOLLAR] = ACTIONS(12381), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12379), + [anon_sym_BSLASHbegin] = ACTIONS(12381), + [anon_sym_BSLASHcaption] = ACTIONS(12381), + [anon_sym_BSLASHcite] = ACTIONS(12381), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCite] = ACTIONS(12381), + [anon_sym_BSLASHnocite] = ACTIONS(12381), + [anon_sym_BSLASHcitet] = ACTIONS(12381), + [anon_sym_BSLASHcitep] = ACTIONS(12381), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteauthor] = ACTIONS(12381), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12381), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitetitle] = ACTIONS(12381), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteyear] = ACTIONS(12381), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitedate] = ACTIONS(12381), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteurl] = ACTIONS(12381), + [anon_sym_BSLASHfullcite] = ACTIONS(12381), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12381), + [anon_sym_BSLASHcitealt] = ACTIONS(12381), + [anon_sym_BSLASHcitealp] = ACTIONS(12381), + [anon_sym_BSLASHcitetext] = ACTIONS(12381), + [anon_sym_BSLASHparencite] = ACTIONS(12381), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHParencite] = ACTIONS(12381), + [anon_sym_BSLASHfootcite] = ACTIONS(12381), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12381), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12381), + [anon_sym_BSLASHtextcite] = ACTIONS(12381), + [anon_sym_BSLASHTextcite] = ACTIONS(12381), + [anon_sym_BSLASHsmartcite] = ACTIONS(12381), + [anon_sym_BSLASHSmartcite] = ACTIONS(12381), + [anon_sym_BSLASHsupercite] = ACTIONS(12381), + [anon_sym_BSLASHautocite] = ACTIONS(12381), + [anon_sym_BSLASHAutocite] = ACTIONS(12381), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHvolcite] = ACTIONS(12381), + [anon_sym_BSLASHVolcite] = ACTIONS(12381), + [anon_sym_BSLASHpvolcite] = ACTIONS(12381), + [anon_sym_BSLASHPvolcite] = ACTIONS(12381), + [anon_sym_BSLASHfvolcite] = ACTIONS(12381), + [anon_sym_BSLASHftvolcite] = ACTIONS(12381), + [anon_sym_BSLASHsvolcite] = ACTIONS(12381), + [anon_sym_BSLASHSvolcite] = ACTIONS(12381), + [anon_sym_BSLASHtvolcite] = ACTIONS(12381), + [anon_sym_BSLASHTvolcite] = ACTIONS(12381), + [anon_sym_BSLASHavolcite] = ACTIONS(12381), + [anon_sym_BSLASHAvolcite] = ACTIONS(12381), + [anon_sym_BSLASHnotecite] = ACTIONS(12381), + [anon_sym_BSLASHpnotecite] = ACTIONS(12381), + [anon_sym_BSLASHPnotecite] = ACTIONS(12381), + [anon_sym_BSLASHfnotecite] = ACTIONS(12381), + [anon_sym_BSLASHusepackage] = ACTIONS(12381), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12381), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12381), + [anon_sym_BSLASHinclude] = ACTIONS(12381), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12381), + [anon_sym_BSLASHinput] = ACTIONS(12381), + [anon_sym_BSLASHsubfile] = ACTIONS(12381), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12381), + [anon_sym_BSLASHbibliography] = ACTIONS(12381), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12381), + [anon_sym_BSLASHincludesvg] = ACTIONS(12381), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12381), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12381), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12381), + [anon_sym_BSLASHimport] = ACTIONS(12381), + [anon_sym_BSLASHsubimport] = ACTIONS(12381), + [anon_sym_BSLASHinputfrom] = ACTIONS(12381), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12381), + [anon_sym_BSLASHincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHlabel] = ACTIONS(12381), + [anon_sym_BSLASHref] = ACTIONS(12381), + [anon_sym_BSLASHvref] = ACTIONS(12381), + [anon_sym_BSLASHVref] = ACTIONS(12381), + [anon_sym_BSLASHautoref] = ACTIONS(12381), + [anon_sym_BSLASHpageref] = ACTIONS(12381), + [anon_sym_BSLASHcref] = ACTIONS(12381), + [anon_sym_BSLASHCref] = ACTIONS(12381), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnameCref] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHlabelcref] = ACTIONS(12381), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12381), + [anon_sym_BSLASHeqref] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange] = ACTIONS(12381), + [anon_sym_BSLASHCrefrange] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewlabel] = ACTIONS(12381), + [anon_sym_BSLASHnewcommand] = ACTIONS(12381), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12381), + [anon_sym_BSLASHgls] = ACTIONS(12381), + [anon_sym_BSLASHGls] = ACTIONS(12381), + [anon_sym_BSLASHGLS] = ACTIONS(12381), + [anon_sym_BSLASHglspl] = ACTIONS(12381), + [anon_sym_BSLASHGlspl] = ACTIONS(12381), + [anon_sym_BSLASHGLSpl] = ACTIONS(12381), + [anon_sym_BSLASHglsdisp] = ACTIONS(12381), + [anon_sym_BSLASHglslink] = ACTIONS(12381), + [anon_sym_BSLASHglstext] = ACTIONS(12381), + [anon_sym_BSLASHGlstext] = ACTIONS(12381), + [anon_sym_BSLASHGLStext] = ACTIONS(12381), + [anon_sym_BSLASHglsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12381), + [anon_sym_BSLASHglsplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSplural] = ACTIONS(12381), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHglsname] = ACTIONS(12381), + [anon_sym_BSLASHGlsname] = ACTIONS(12381), + [anon_sym_BSLASHGLSname] = ACTIONS(12381), + [anon_sym_BSLASHglssymbol] = ACTIONS(12381), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12381), + [anon_sym_BSLASHglsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12381), + [anon_sym_BSLASHglsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12381), + [anon_sym_BSLASHglsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12381), + [anon_sym_BSLASHglsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12381), + [anon_sym_BSLASHglsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12381), + [anon_sym_BSLASHnewacronym] = ACTIONS(12381), + [anon_sym_BSLASHacrshort] = ACTIONS(12381), + [anon_sym_BSLASHAcrshort] = ACTIONS(12381), + [anon_sym_BSLASHACRshort] = ACTIONS(12381), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12381), + [anon_sym_BSLASHacrlong] = ACTIONS(12381), + [anon_sym_BSLASHAcrlong] = ACTIONS(12381), + [anon_sym_BSLASHACRlong] = ACTIONS(12381), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12381), + [anon_sym_BSLASHacrfull] = ACTIONS(12381), + [anon_sym_BSLASHAcrfull] = ACTIONS(12381), + [anon_sym_BSLASHACRfull] = ACTIONS(12381), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12381), + [anon_sym_BSLASHacs] = ACTIONS(12381), + [anon_sym_BSLASHAcs] = ACTIONS(12381), + [anon_sym_BSLASHacsp] = ACTIONS(12381), + [anon_sym_BSLASHAcsp] = ACTIONS(12381), + [anon_sym_BSLASHacl] = ACTIONS(12381), + [anon_sym_BSLASHAcl] = ACTIONS(12381), + [anon_sym_BSLASHaclp] = ACTIONS(12381), + [anon_sym_BSLASHAclp] = ACTIONS(12381), + [anon_sym_BSLASHacf] = ACTIONS(12381), + [anon_sym_BSLASHAcf] = ACTIONS(12381), + [anon_sym_BSLASHacfp] = ACTIONS(12381), + [anon_sym_BSLASHAcfp] = ACTIONS(12381), + [anon_sym_BSLASHac] = ACTIONS(12381), + [anon_sym_BSLASHAc] = ACTIONS(12381), + [anon_sym_BSLASHacp] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12381), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12381), + [anon_sym_BSLASHcolor] = ACTIONS(12381), + [anon_sym_BSLASHcolorbox] = ACTIONS(12381), + [anon_sym_BSLASHtextcolor] = ACTIONS(12381), + [anon_sym_BSLASHpagecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12381), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12381), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12381), + }, + [566] = { + [ts_builtin_sym_end] = ACTIONS(109), + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(111), + [aux_sym_chapter_token1] = ACTIONS(111), + [aux_sym_section_token1] = ACTIONS(111), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_RPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [567] = { + [ts_builtin_sym_end] = ACTIONS(12383), + [sym_generic_command_name] = ACTIONS(12385), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12385), + [aux_sym_chapter_token1] = ACTIONS(12385), + [aux_sym_section_token1] = ACTIONS(12385), + [aux_sym_subsection_token1] = ACTIONS(12385), + [aux_sym_subsubsection_token1] = ACTIONS(12385), + [aux_sym_paragraph_token1] = ACTIONS(12385), + [aux_sym_subparagraph_token1] = ACTIONS(12385), + [anon_sym_BSLASHitem] = ACTIONS(12385), + [anon_sym_LBRACK] = ACTIONS(12383), + [anon_sym_RBRACK] = ACTIONS(12383), + [anon_sym_LBRACE] = ACTIONS(12383), + [anon_sym_RBRACE] = ACTIONS(12383), + [anon_sym_LPAREN] = ACTIONS(12383), + [anon_sym_RPAREN] = ACTIONS(12383), + [anon_sym_COMMA] = ACTIONS(12383), + [anon_sym_EQ] = ACTIONS(12383), + [sym_word] = ACTIONS(12383), + [sym_param] = ACTIONS(12383), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12383), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12383), + [anon_sym_DOLLAR] = ACTIONS(12385), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12383), + [anon_sym_BSLASHbegin] = ACTIONS(12385), + [anon_sym_BSLASHcaption] = ACTIONS(12385), + [anon_sym_BSLASHcite] = ACTIONS(12385), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCite] = ACTIONS(12385), + [anon_sym_BSLASHnocite] = ACTIONS(12385), + [anon_sym_BSLASHcitet] = ACTIONS(12385), + [anon_sym_BSLASHcitep] = ACTIONS(12385), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteauthor] = ACTIONS(12385), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12385), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitetitle] = ACTIONS(12385), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteyear] = ACTIONS(12385), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitedate] = ACTIONS(12385), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteurl] = ACTIONS(12385), + [anon_sym_BSLASHfullcite] = ACTIONS(12385), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12385), + [anon_sym_BSLASHcitealt] = ACTIONS(12385), + [anon_sym_BSLASHcitealp] = ACTIONS(12385), + [anon_sym_BSLASHcitetext] = ACTIONS(12385), + [anon_sym_BSLASHparencite] = ACTIONS(12385), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHParencite] = ACTIONS(12385), + [anon_sym_BSLASHfootcite] = ACTIONS(12385), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12385), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12385), + [anon_sym_BSLASHtextcite] = ACTIONS(12385), + [anon_sym_BSLASHTextcite] = ACTIONS(12385), + [anon_sym_BSLASHsmartcite] = ACTIONS(12385), + [anon_sym_BSLASHSmartcite] = ACTIONS(12385), + [anon_sym_BSLASHsupercite] = ACTIONS(12385), + [anon_sym_BSLASHautocite] = ACTIONS(12385), + [anon_sym_BSLASHAutocite] = ACTIONS(12385), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHvolcite] = ACTIONS(12385), + [anon_sym_BSLASHVolcite] = ACTIONS(12385), + [anon_sym_BSLASHpvolcite] = ACTIONS(12385), + [anon_sym_BSLASHPvolcite] = ACTIONS(12385), + [anon_sym_BSLASHfvolcite] = ACTIONS(12385), + [anon_sym_BSLASHftvolcite] = ACTIONS(12385), + [anon_sym_BSLASHsvolcite] = ACTIONS(12385), + [anon_sym_BSLASHSvolcite] = ACTIONS(12385), + [anon_sym_BSLASHtvolcite] = ACTIONS(12385), + [anon_sym_BSLASHTvolcite] = ACTIONS(12385), + [anon_sym_BSLASHavolcite] = ACTIONS(12385), + [anon_sym_BSLASHAvolcite] = ACTIONS(12385), + [anon_sym_BSLASHnotecite] = ACTIONS(12385), + [anon_sym_BSLASHpnotecite] = ACTIONS(12385), + [anon_sym_BSLASHPnotecite] = ACTIONS(12385), + [anon_sym_BSLASHfnotecite] = ACTIONS(12385), + [anon_sym_BSLASHusepackage] = ACTIONS(12385), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12385), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12385), + [anon_sym_BSLASHinclude] = ACTIONS(12385), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12385), + [anon_sym_BSLASHinput] = ACTIONS(12385), + [anon_sym_BSLASHsubfile] = ACTIONS(12385), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12385), + [anon_sym_BSLASHbibliography] = ACTIONS(12385), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12385), + [anon_sym_BSLASHincludesvg] = ACTIONS(12385), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12385), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12385), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12385), + [anon_sym_BSLASHimport] = ACTIONS(12385), + [anon_sym_BSLASHsubimport] = ACTIONS(12385), + [anon_sym_BSLASHinputfrom] = ACTIONS(12385), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12385), + [anon_sym_BSLASHincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHlabel] = ACTIONS(12385), + [anon_sym_BSLASHref] = ACTIONS(12385), + [anon_sym_BSLASHvref] = ACTIONS(12385), + [anon_sym_BSLASHVref] = ACTIONS(12385), + [anon_sym_BSLASHautoref] = ACTIONS(12385), + [anon_sym_BSLASHpageref] = ACTIONS(12385), + [anon_sym_BSLASHcref] = ACTIONS(12385), + [anon_sym_BSLASHCref] = ACTIONS(12385), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnameCref] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHlabelcref] = ACTIONS(12385), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12385), + [anon_sym_BSLASHeqref] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange] = ACTIONS(12385), + [anon_sym_BSLASHCrefrange] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewlabel] = ACTIONS(12385), + [anon_sym_BSLASHnewcommand] = ACTIONS(12385), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12385), + [anon_sym_BSLASHgls] = ACTIONS(12385), + [anon_sym_BSLASHGls] = ACTIONS(12385), + [anon_sym_BSLASHGLS] = ACTIONS(12385), + [anon_sym_BSLASHglspl] = ACTIONS(12385), + [anon_sym_BSLASHGlspl] = ACTIONS(12385), + [anon_sym_BSLASHGLSpl] = ACTIONS(12385), + [anon_sym_BSLASHglsdisp] = ACTIONS(12385), + [anon_sym_BSLASHglslink] = ACTIONS(12385), + [anon_sym_BSLASHglstext] = ACTIONS(12385), + [anon_sym_BSLASHGlstext] = ACTIONS(12385), + [anon_sym_BSLASHGLStext] = ACTIONS(12385), + [anon_sym_BSLASHglsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12385), + [anon_sym_BSLASHglsplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSplural] = ACTIONS(12385), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHglsname] = ACTIONS(12385), + [anon_sym_BSLASHGlsname] = ACTIONS(12385), + [anon_sym_BSLASHGLSname] = ACTIONS(12385), + [anon_sym_BSLASHglssymbol] = ACTIONS(12385), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12385), + [anon_sym_BSLASHglsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12385), + [anon_sym_BSLASHglsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12385), + [anon_sym_BSLASHglsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12385), + [anon_sym_BSLASHglsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12385), + [anon_sym_BSLASHglsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12385), + [anon_sym_BSLASHnewacronym] = ACTIONS(12385), + [anon_sym_BSLASHacrshort] = ACTIONS(12385), + [anon_sym_BSLASHAcrshort] = ACTIONS(12385), + [anon_sym_BSLASHACRshort] = ACTIONS(12385), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12385), + [anon_sym_BSLASHacrlong] = ACTIONS(12385), + [anon_sym_BSLASHAcrlong] = ACTIONS(12385), + [anon_sym_BSLASHACRlong] = ACTIONS(12385), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12385), + [anon_sym_BSLASHacrfull] = ACTIONS(12385), + [anon_sym_BSLASHAcrfull] = ACTIONS(12385), + [anon_sym_BSLASHACRfull] = ACTIONS(12385), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12385), + [anon_sym_BSLASHacs] = ACTIONS(12385), + [anon_sym_BSLASHAcs] = ACTIONS(12385), + [anon_sym_BSLASHacsp] = ACTIONS(12385), + [anon_sym_BSLASHAcsp] = ACTIONS(12385), + [anon_sym_BSLASHacl] = ACTIONS(12385), + [anon_sym_BSLASHAcl] = ACTIONS(12385), + [anon_sym_BSLASHaclp] = ACTIONS(12385), + [anon_sym_BSLASHAclp] = ACTIONS(12385), + [anon_sym_BSLASHacf] = ACTIONS(12385), + [anon_sym_BSLASHAcf] = ACTIONS(12385), + [anon_sym_BSLASHacfp] = ACTIONS(12385), + [anon_sym_BSLASHAcfp] = ACTIONS(12385), + [anon_sym_BSLASHac] = ACTIONS(12385), + [anon_sym_BSLASHAc] = ACTIONS(12385), + [anon_sym_BSLASHacp] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12385), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12385), + [anon_sym_BSLASHcolor] = ACTIONS(12385), + [anon_sym_BSLASHcolorbox] = ACTIONS(12385), + [anon_sym_BSLASHtextcolor] = ACTIONS(12385), + [anon_sym_BSLASHpagecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12385), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12385), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12385), + }, + [568] = { + [ts_builtin_sym_end] = ACTIONS(12387), + [sym_generic_command_name] = ACTIONS(12389), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12389), + [aux_sym_chapter_token1] = ACTIONS(12389), + [aux_sym_section_token1] = ACTIONS(12389), + [aux_sym_subsection_token1] = ACTIONS(12389), + [aux_sym_subsubsection_token1] = ACTIONS(12389), + [aux_sym_paragraph_token1] = ACTIONS(12389), + [aux_sym_subparagraph_token1] = ACTIONS(12389), + [anon_sym_BSLASHitem] = ACTIONS(12389), + [anon_sym_LBRACK] = ACTIONS(12387), + [anon_sym_RBRACK] = ACTIONS(12387), + [anon_sym_LBRACE] = ACTIONS(12387), + [anon_sym_RBRACE] = ACTIONS(12387), + [anon_sym_LPAREN] = ACTIONS(12387), + [anon_sym_RPAREN] = ACTIONS(12387), + [anon_sym_COMMA] = ACTIONS(12387), + [anon_sym_EQ] = ACTIONS(12387), + [sym_word] = ACTIONS(12387), + [sym_param] = ACTIONS(12387), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12387), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12387), + [anon_sym_DOLLAR] = ACTIONS(12389), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12387), + [anon_sym_BSLASHbegin] = ACTIONS(12389), + [anon_sym_BSLASHcaption] = ACTIONS(12389), + [anon_sym_BSLASHcite] = ACTIONS(12389), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCite] = ACTIONS(12389), + [anon_sym_BSLASHnocite] = ACTIONS(12389), + [anon_sym_BSLASHcitet] = ACTIONS(12389), + [anon_sym_BSLASHcitep] = ACTIONS(12389), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteauthor] = ACTIONS(12389), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12389), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitetitle] = ACTIONS(12389), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteyear] = ACTIONS(12389), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitedate] = ACTIONS(12389), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteurl] = ACTIONS(12389), + [anon_sym_BSLASHfullcite] = ACTIONS(12389), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12389), + [anon_sym_BSLASHcitealt] = ACTIONS(12389), + [anon_sym_BSLASHcitealp] = ACTIONS(12389), + [anon_sym_BSLASHcitetext] = ACTIONS(12389), + [anon_sym_BSLASHparencite] = ACTIONS(12389), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHParencite] = ACTIONS(12389), + [anon_sym_BSLASHfootcite] = ACTIONS(12389), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12389), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12389), + [anon_sym_BSLASHtextcite] = ACTIONS(12389), + [anon_sym_BSLASHTextcite] = ACTIONS(12389), + [anon_sym_BSLASHsmartcite] = ACTIONS(12389), + [anon_sym_BSLASHSmartcite] = ACTIONS(12389), + [anon_sym_BSLASHsupercite] = ACTIONS(12389), + [anon_sym_BSLASHautocite] = ACTIONS(12389), + [anon_sym_BSLASHAutocite] = ACTIONS(12389), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHvolcite] = ACTIONS(12389), + [anon_sym_BSLASHVolcite] = ACTIONS(12389), + [anon_sym_BSLASHpvolcite] = ACTIONS(12389), + [anon_sym_BSLASHPvolcite] = ACTIONS(12389), + [anon_sym_BSLASHfvolcite] = ACTIONS(12389), + [anon_sym_BSLASHftvolcite] = ACTIONS(12389), + [anon_sym_BSLASHsvolcite] = ACTIONS(12389), + [anon_sym_BSLASHSvolcite] = ACTIONS(12389), + [anon_sym_BSLASHtvolcite] = ACTIONS(12389), + [anon_sym_BSLASHTvolcite] = ACTIONS(12389), + [anon_sym_BSLASHavolcite] = ACTIONS(12389), + [anon_sym_BSLASHAvolcite] = ACTIONS(12389), + [anon_sym_BSLASHnotecite] = ACTIONS(12389), + [anon_sym_BSLASHpnotecite] = ACTIONS(12389), + [anon_sym_BSLASHPnotecite] = ACTIONS(12389), + [anon_sym_BSLASHfnotecite] = ACTIONS(12389), + [anon_sym_BSLASHusepackage] = ACTIONS(12389), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12389), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12389), + [anon_sym_BSLASHinclude] = ACTIONS(12389), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12389), + [anon_sym_BSLASHinput] = ACTIONS(12389), + [anon_sym_BSLASHsubfile] = ACTIONS(12389), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12389), + [anon_sym_BSLASHbibliography] = ACTIONS(12389), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12389), + [anon_sym_BSLASHincludesvg] = ACTIONS(12389), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12389), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12389), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12389), + [anon_sym_BSLASHimport] = ACTIONS(12389), + [anon_sym_BSLASHsubimport] = ACTIONS(12389), + [anon_sym_BSLASHinputfrom] = ACTIONS(12389), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12389), + [anon_sym_BSLASHincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHlabel] = ACTIONS(12389), + [anon_sym_BSLASHref] = ACTIONS(12389), + [anon_sym_BSLASHvref] = ACTIONS(12389), + [anon_sym_BSLASHVref] = ACTIONS(12389), + [anon_sym_BSLASHautoref] = ACTIONS(12389), + [anon_sym_BSLASHpageref] = ACTIONS(12389), + [anon_sym_BSLASHcref] = ACTIONS(12389), + [anon_sym_BSLASHCref] = ACTIONS(12389), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnameCref] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHlabelcref] = ACTIONS(12389), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12389), + [anon_sym_BSLASHeqref] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange] = ACTIONS(12389), + [anon_sym_BSLASHCrefrange] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewlabel] = ACTIONS(12389), + [anon_sym_BSLASHnewcommand] = ACTIONS(12389), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12389), + [anon_sym_BSLASHgls] = ACTIONS(12389), + [anon_sym_BSLASHGls] = ACTIONS(12389), + [anon_sym_BSLASHGLS] = ACTIONS(12389), + [anon_sym_BSLASHglspl] = ACTIONS(12389), + [anon_sym_BSLASHGlspl] = ACTIONS(12389), + [anon_sym_BSLASHGLSpl] = ACTIONS(12389), + [anon_sym_BSLASHglsdisp] = ACTIONS(12389), + [anon_sym_BSLASHglslink] = ACTIONS(12389), + [anon_sym_BSLASHglstext] = ACTIONS(12389), + [anon_sym_BSLASHGlstext] = ACTIONS(12389), + [anon_sym_BSLASHGLStext] = ACTIONS(12389), + [anon_sym_BSLASHglsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12389), + [anon_sym_BSLASHglsplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSplural] = ACTIONS(12389), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHglsname] = ACTIONS(12389), + [anon_sym_BSLASHGlsname] = ACTIONS(12389), + [anon_sym_BSLASHGLSname] = ACTIONS(12389), + [anon_sym_BSLASHglssymbol] = ACTIONS(12389), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12389), + [anon_sym_BSLASHglsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12389), + [anon_sym_BSLASHglsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12389), + [anon_sym_BSLASHglsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12389), + [anon_sym_BSLASHglsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12389), + [anon_sym_BSLASHglsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12389), + [anon_sym_BSLASHnewacronym] = ACTIONS(12389), + [anon_sym_BSLASHacrshort] = ACTIONS(12389), + [anon_sym_BSLASHAcrshort] = ACTIONS(12389), + [anon_sym_BSLASHACRshort] = ACTIONS(12389), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12389), + [anon_sym_BSLASHacrlong] = ACTIONS(12389), + [anon_sym_BSLASHAcrlong] = ACTIONS(12389), + [anon_sym_BSLASHACRlong] = ACTIONS(12389), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12389), + [anon_sym_BSLASHacrfull] = ACTIONS(12389), + [anon_sym_BSLASHAcrfull] = ACTIONS(12389), + [anon_sym_BSLASHACRfull] = ACTIONS(12389), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12389), + [anon_sym_BSLASHacs] = ACTIONS(12389), + [anon_sym_BSLASHAcs] = ACTIONS(12389), + [anon_sym_BSLASHacsp] = ACTIONS(12389), + [anon_sym_BSLASHAcsp] = ACTIONS(12389), + [anon_sym_BSLASHacl] = ACTIONS(12389), + [anon_sym_BSLASHAcl] = ACTIONS(12389), + [anon_sym_BSLASHaclp] = ACTIONS(12389), + [anon_sym_BSLASHAclp] = ACTIONS(12389), + [anon_sym_BSLASHacf] = ACTIONS(12389), + [anon_sym_BSLASHAcf] = ACTIONS(12389), + [anon_sym_BSLASHacfp] = ACTIONS(12389), + [anon_sym_BSLASHAcfp] = ACTIONS(12389), + [anon_sym_BSLASHac] = ACTIONS(12389), + [anon_sym_BSLASHAc] = ACTIONS(12389), + [anon_sym_BSLASHacp] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12389), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12389), + [anon_sym_BSLASHcolor] = ACTIONS(12389), + [anon_sym_BSLASHcolorbox] = ACTIONS(12389), + [anon_sym_BSLASHtextcolor] = ACTIONS(12389), + [anon_sym_BSLASHpagecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12389), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12389), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12389), + }, + [569] = { + [ts_builtin_sym_end] = ACTIONS(12391), + [sym_generic_command_name] = ACTIONS(12393), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12393), + [aux_sym_chapter_token1] = ACTIONS(12393), + [aux_sym_section_token1] = ACTIONS(12393), + [aux_sym_subsection_token1] = ACTIONS(12393), + [aux_sym_subsubsection_token1] = ACTIONS(12393), + [aux_sym_paragraph_token1] = ACTIONS(12393), + [aux_sym_subparagraph_token1] = ACTIONS(12393), + [anon_sym_BSLASHitem] = ACTIONS(12393), + [anon_sym_LBRACK] = ACTIONS(12391), + [anon_sym_RBRACK] = ACTIONS(12391), + [anon_sym_LBRACE] = ACTIONS(12391), + [anon_sym_RBRACE] = ACTIONS(12391), + [anon_sym_LPAREN] = ACTIONS(12391), + [anon_sym_RPAREN] = ACTIONS(12391), + [anon_sym_COMMA] = ACTIONS(12391), + [anon_sym_EQ] = ACTIONS(12391), + [sym_word] = ACTIONS(12391), + [sym_param] = ACTIONS(12391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12391), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12391), + [anon_sym_DOLLAR] = ACTIONS(12393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12391), + [anon_sym_BSLASHbegin] = ACTIONS(12393), + [anon_sym_BSLASHcaption] = ACTIONS(12393), + [anon_sym_BSLASHcite] = ACTIONS(12393), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCite] = ACTIONS(12393), + [anon_sym_BSLASHnocite] = ACTIONS(12393), + [anon_sym_BSLASHcitet] = ACTIONS(12393), + [anon_sym_BSLASHcitep] = ACTIONS(12393), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteauthor] = ACTIONS(12393), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12393), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitetitle] = ACTIONS(12393), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteyear] = ACTIONS(12393), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitedate] = ACTIONS(12393), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteurl] = ACTIONS(12393), + [anon_sym_BSLASHfullcite] = ACTIONS(12393), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12393), + [anon_sym_BSLASHcitealt] = ACTIONS(12393), + [anon_sym_BSLASHcitealp] = ACTIONS(12393), + [anon_sym_BSLASHcitetext] = ACTIONS(12393), + [anon_sym_BSLASHparencite] = ACTIONS(12393), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHParencite] = ACTIONS(12393), + [anon_sym_BSLASHfootcite] = ACTIONS(12393), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12393), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12393), + [anon_sym_BSLASHtextcite] = ACTIONS(12393), + [anon_sym_BSLASHTextcite] = ACTIONS(12393), + [anon_sym_BSLASHsmartcite] = ACTIONS(12393), + [anon_sym_BSLASHSmartcite] = ACTIONS(12393), + [anon_sym_BSLASHsupercite] = ACTIONS(12393), + [anon_sym_BSLASHautocite] = ACTIONS(12393), + [anon_sym_BSLASHAutocite] = ACTIONS(12393), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHvolcite] = ACTIONS(12393), + [anon_sym_BSLASHVolcite] = ACTIONS(12393), + [anon_sym_BSLASHpvolcite] = ACTIONS(12393), + [anon_sym_BSLASHPvolcite] = ACTIONS(12393), + [anon_sym_BSLASHfvolcite] = ACTIONS(12393), + [anon_sym_BSLASHftvolcite] = ACTIONS(12393), + [anon_sym_BSLASHsvolcite] = ACTIONS(12393), + [anon_sym_BSLASHSvolcite] = ACTIONS(12393), + [anon_sym_BSLASHtvolcite] = ACTIONS(12393), + [anon_sym_BSLASHTvolcite] = ACTIONS(12393), + [anon_sym_BSLASHavolcite] = ACTIONS(12393), + [anon_sym_BSLASHAvolcite] = ACTIONS(12393), + [anon_sym_BSLASHnotecite] = ACTIONS(12393), + [anon_sym_BSLASHpnotecite] = ACTIONS(12393), + [anon_sym_BSLASHPnotecite] = ACTIONS(12393), + [anon_sym_BSLASHfnotecite] = ACTIONS(12393), + [anon_sym_BSLASHusepackage] = ACTIONS(12393), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12393), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12393), + [anon_sym_BSLASHinclude] = ACTIONS(12393), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12393), + [anon_sym_BSLASHinput] = ACTIONS(12393), + [anon_sym_BSLASHsubfile] = ACTIONS(12393), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12393), + [anon_sym_BSLASHbibliography] = ACTIONS(12393), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12393), + [anon_sym_BSLASHincludesvg] = ACTIONS(12393), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12393), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12393), + [anon_sym_BSLASHimport] = ACTIONS(12393), + [anon_sym_BSLASHsubimport] = ACTIONS(12393), + [anon_sym_BSLASHinputfrom] = ACTIONS(12393), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12393), + [anon_sym_BSLASHincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHlabel] = ACTIONS(12393), + [anon_sym_BSLASHref] = ACTIONS(12393), + [anon_sym_BSLASHvref] = ACTIONS(12393), + [anon_sym_BSLASHVref] = ACTIONS(12393), + [anon_sym_BSLASHautoref] = ACTIONS(12393), + [anon_sym_BSLASHpageref] = ACTIONS(12393), + [anon_sym_BSLASHcref] = ACTIONS(12393), + [anon_sym_BSLASHCref] = ACTIONS(12393), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnameCref] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHlabelcref] = ACTIONS(12393), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12393), + [anon_sym_BSLASHeqref] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange] = ACTIONS(12393), + [anon_sym_BSLASHCrefrange] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewlabel] = ACTIONS(12393), + [anon_sym_BSLASHnewcommand] = ACTIONS(12393), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12393), + [anon_sym_BSLASHgls] = ACTIONS(12393), + [anon_sym_BSLASHGls] = ACTIONS(12393), + [anon_sym_BSLASHGLS] = ACTIONS(12393), + [anon_sym_BSLASHglspl] = ACTIONS(12393), + [anon_sym_BSLASHGlspl] = ACTIONS(12393), + [anon_sym_BSLASHGLSpl] = ACTIONS(12393), + [anon_sym_BSLASHglsdisp] = ACTIONS(12393), + [anon_sym_BSLASHglslink] = ACTIONS(12393), + [anon_sym_BSLASHglstext] = ACTIONS(12393), + [anon_sym_BSLASHGlstext] = ACTIONS(12393), + [anon_sym_BSLASHGLStext] = ACTIONS(12393), + [anon_sym_BSLASHglsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12393), + [anon_sym_BSLASHglsplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSplural] = ACTIONS(12393), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHglsname] = ACTIONS(12393), + [anon_sym_BSLASHGlsname] = ACTIONS(12393), + [anon_sym_BSLASHGLSname] = ACTIONS(12393), + [anon_sym_BSLASHglssymbol] = ACTIONS(12393), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12393), + [anon_sym_BSLASHglsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12393), + [anon_sym_BSLASHglsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12393), + [anon_sym_BSLASHglsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12393), + [anon_sym_BSLASHglsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12393), + [anon_sym_BSLASHglsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12393), + [anon_sym_BSLASHnewacronym] = ACTIONS(12393), + [anon_sym_BSLASHacrshort] = ACTIONS(12393), + [anon_sym_BSLASHAcrshort] = ACTIONS(12393), + [anon_sym_BSLASHACRshort] = ACTIONS(12393), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12393), + [anon_sym_BSLASHacrlong] = ACTIONS(12393), + [anon_sym_BSLASHAcrlong] = ACTIONS(12393), + [anon_sym_BSLASHACRlong] = ACTIONS(12393), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12393), + [anon_sym_BSLASHacrfull] = ACTIONS(12393), + [anon_sym_BSLASHAcrfull] = ACTIONS(12393), + [anon_sym_BSLASHACRfull] = ACTIONS(12393), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12393), + [anon_sym_BSLASHacs] = ACTIONS(12393), + [anon_sym_BSLASHAcs] = ACTIONS(12393), + [anon_sym_BSLASHacsp] = ACTIONS(12393), + [anon_sym_BSLASHAcsp] = ACTIONS(12393), + [anon_sym_BSLASHacl] = ACTIONS(12393), + [anon_sym_BSLASHAcl] = ACTIONS(12393), + [anon_sym_BSLASHaclp] = ACTIONS(12393), + [anon_sym_BSLASHAclp] = ACTIONS(12393), + [anon_sym_BSLASHacf] = ACTIONS(12393), + [anon_sym_BSLASHAcf] = ACTIONS(12393), + [anon_sym_BSLASHacfp] = ACTIONS(12393), + [anon_sym_BSLASHAcfp] = ACTIONS(12393), + [anon_sym_BSLASHac] = ACTIONS(12393), + [anon_sym_BSLASHAc] = ACTIONS(12393), + [anon_sym_BSLASHacp] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12393), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12393), + [anon_sym_BSLASHcolor] = ACTIONS(12393), + [anon_sym_BSLASHcolorbox] = ACTIONS(12393), + [anon_sym_BSLASHtextcolor] = ACTIONS(12393), + [anon_sym_BSLASHpagecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12393), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12393), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12393), + }, + [570] = { + [ts_builtin_sym_end] = ACTIONS(12395), + [sym_generic_command_name] = ACTIONS(12397), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12397), + [aux_sym_chapter_token1] = ACTIONS(12397), + [aux_sym_section_token1] = ACTIONS(12397), + [aux_sym_subsection_token1] = ACTIONS(12397), + [aux_sym_subsubsection_token1] = ACTIONS(12397), + [aux_sym_paragraph_token1] = ACTIONS(12397), + [aux_sym_subparagraph_token1] = ACTIONS(12397), + [anon_sym_BSLASHitem] = ACTIONS(12397), + [anon_sym_LBRACK] = ACTIONS(12395), + [anon_sym_RBRACK] = ACTIONS(12395), + [anon_sym_LBRACE] = ACTIONS(12395), + [anon_sym_RBRACE] = ACTIONS(12395), + [anon_sym_LPAREN] = ACTIONS(12395), + [anon_sym_RPAREN] = ACTIONS(12395), + [anon_sym_COMMA] = ACTIONS(12395), + [anon_sym_EQ] = ACTIONS(12395), + [sym_word] = ACTIONS(12395), + [sym_param] = ACTIONS(12395), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12395), + [anon_sym_DOLLAR] = ACTIONS(12397), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12395), + [anon_sym_BSLASHbegin] = ACTIONS(12397), + [anon_sym_BSLASHcaption] = ACTIONS(12397), + [anon_sym_BSLASHcite] = ACTIONS(12397), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCite] = ACTIONS(12397), + [anon_sym_BSLASHnocite] = ACTIONS(12397), + [anon_sym_BSLASHcitet] = ACTIONS(12397), + [anon_sym_BSLASHcitep] = ACTIONS(12397), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteauthor] = ACTIONS(12397), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12397), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitetitle] = ACTIONS(12397), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteyear] = ACTIONS(12397), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitedate] = ACTIONS(12397), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteurl] = ACTIONS(12397), + [anon_sym_BSLASHfullcite] = ACTIONS(12397), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12397), + [anon_sym_BSLASHcitealt] = ACTIONS(12397), + [anon_sym_BSLASHcitealp] = ACTIONS(12397), + [anon_sym_BSLASHcitetext] = ACTIONS(12397), + [anon_sym_BSLASHparencite] = ACTIONS(12397), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHParencite] = ACTIONS(12397), + [anon_sym_BSLASHfootcite] = ACTIONS(12397), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12397), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12397), + [anon_sym_BSLASHtextcite] = ACTIONS(12397), + [anon_sym_BSLASHTextcite] = ACTIONS(12397), + [anon_sym_BSLASHsmartcite] = ACTIONS(12397), + [anon_sym_BSLASHSmartcite] = ACTIONS(12397), + [anon_sym_BSLASHsupercite] = ACTIONS(12397), + [anon_sym_BSLASHautocite] = ACTIONS(12397), + [anon_sym_BSLASHAutocite] = ACTIONS(12397), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHvolcite] = ACTIONS(12397), + [anon_sym_BSLASHVolcite] = ACTIONS(12397), + [anon_sym_BSLASHpvolcite] = ACTIONS(12397), + [anon_sym_BSLASHPvolcite] = ACTIONS(12397), + [anon_sym_BSLASHfvolcite] = ACTIONS(12397), + [anon_sym_BSLASHftvolcite] = ACTIONS(12397), + [anon_sym_BSLASHsvolcite] = ACTIONS(12397), + [anon_sym_BSLASHSvolcite] = ACTIONS(12397), + [anon_sym_BSLASHtvolcite] = ACTIONS(12397), + [anon_sym_BSLASHTvolcite] = ACTIONS(12397), + [anon_sym_BSLASHavolcite] = ACTIONS(12397), + [anon_sym_BSLASHAvolcite] = ACTIONS(12397), + [anon_sym_BSLASHnotecite] = ACTIONS(12397), + [anon_sym_BSLASHpnotecite] = ACTIONS(12397), + [anon_sym_BSLASHPnotecite] = ACTIONS(12397), + [anon_sym_BSLASHfnotecite] = ACTIONS(12397), + [anon_sym_BSLASHusepackage] = ACTIONS(12397), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12397), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12397), + [anon_sym_BSLASHinclude] = ACTIONS(12397), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12397), + [anon_sym_BSLASHinput] = ACTIONS(12397), + [anon_sym_BSLASHsubfile] = ACTIONS(12397), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12397), + [anon_sym_BSLASHbibliography] = ACTIONS(12397), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12397), + [anon_sym_BSLASHincludesvg] = ACTIONS(12397), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12397), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12397), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12397), + [anon_sym_BSLASHimport] = ACTIONS(12397), + [anon_sym_BSLASHsubimport] = ACTIONS(12397), + [anon_sym_BSLASHinputfrom] = ACTIONS(12397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12397), + [anon_sym_BSLASHincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHlabel] = ACTIONS(12397), + [anon_sym_BSLASHref] = ACTIONS(12397), + [anon_sym_BSLASHvref] = ACTIONS(12397), + [anon_sym_BSLASHVref] = ACTIONS(12397), + [anon_sym_BSLASHautoref] = ACTIONS(12397), + [anon_sym_BSLASHpageref] = ACTIONS(12397), + [anon_sym_BSLASHcref] = ACTIONS(12397), + [anon_sym_BSLASHCref] = ACTIONS(12397), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnameCref] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHlabelcref] = ACTIONS(12397), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12397), + [anon_sym_BSLASHeqref] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange] = ACTIONS(12397), + [anon_sym_BSLASHCrefrange] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewlabel] = ACTIONS(12397), + [anon_sym_BSLASHnewcommand] = ACTIONS(12397), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12397), + [anon_sym_BSLASHgls] = ACTIONS(12397), + [anon_sym_BSLASHGls] = ACTIONS(12397), + [anon_sym_BSLASHGLS] = ACTIONS(12397), + [anon_sym_BSLASHglspl] = ACTIONS(12397), + [anon_sym_BSLASHGlspl] = ACTIONS(12397), + [anon_sym_BSLASHGLSpl] = ACTIONS(12397), + [anon_sym_BSLASHglsdisp] = ACTIONS(12397), + [anon_sym_BSLASHglslink] = ACTIONS(12397), + [anon_sym_BSLASHglstext] = ACTIONS(12397), + [anon_sym_BSLASHGlstext] = ACTIONS(12397), + [anon_sym_BSLASHGLStext] = ACTIONS(12397), + [anon_sym_BSLASHglsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12397), + [anon_sym_BSLASHglsplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSplural] = ACTIONS(12397), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHglsname] = ACTIONS(12397), + [anon_sym_BSLASHGlsname] = ACTIONS(12397), + [anon_sym_BSLASHGLSname] = ACTIONS(12397), + [anon_sym_BSLASHglssymbol] = ACTIONS(12397), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12397), + [anon_sym_BSLASHglsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12397), + [anon_sym_BSLASHglsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12397), + [anon_sym_BSLASHglsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12397), + [anon_sym_BSLASHglsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12397), + [anon_sym_BSLASHglsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12397), + [anon_sym_BSLASHnewacronym] = ACTIONS(12397), + [anon_sym_BSLASHacrshort] = ACTIONS(12397), + [anon_sym_BSLASHAcrshort] = ACTIONS(12397), + [anon_sym_BSLASHACRshort] = ACTIONS(12397), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12397), + [anon_sym_BSLASHacrlong] = ACTIONS(12397), + [anon_sym_BSLASHAcrlong] = ACTIONS(12397), + [anon_sym_BSLASHACRlong] = ACTIONS(12397), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12397), + [anon_sym_BSLASHacrfull] = ACTIONS(12397), + [anon_sym_BSLASHAcrfull] = ACTIONS(12397), + [anon_sym_BSLASHACRfull] = ACTIONS(12397), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12397), + [anon_sym_BSLASHacs] = ACTIONS(12397), + [anon_sym_BSLASHAcs] = ACTIONS(12397), + [anon_sym_BSLASHacsp] = ACTIONS(12397), + [anon_sym_BSLASHAcsp] = ACTIONS(12397), + [anon_sym_BSLASHacl] = ACTIONS(12397), + [anon_sym_BSLASHAcl] = ACTIONS(12397), + [anon_sym_BSLASHaclp] = ACTIONS(12397), + [anon_sym_BSLASHAclp] = ACTIONS(12397), + [anon_sym_BSLASHacf] = ACTIONS(12397), + [anon_sym_BSLASHAcf] = ACTIONS(12397), + [anon_sym_BSLASHacfp] = ACTIONS(12397), + [anon_sym_BSLASHAcfp] = ACTIONS(12397), + [anon_sym_BSLASHac] = ACTIONS(12397), + [anon_sym_BSLASHAc] = ACTIONS(12397), + [anon_sym_BSLASHacp] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12397), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12397), + [anon_sym_BSLASHcolor] = ACTIONS(12397), + [anon_sym_BSLASHcolorbox] = ACTIONS(12397), + [anon_sym_BSLASHtextcolor] = ACTIONS(12397), + [anon_sym_BSLASHpagecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12397), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12397), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12397), + }, + [571] = { + [ts_builtin_sym_end] = ACTIONS(12399), + [sym_generic_command_name] = ACTIONS(12401), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12401), + [aux_sym_chapter_token1] = ACTIONS(12401), + [aux_sym_section_token1] = ACTIONS(12401), + [aux_sym_subsection_token1] = ACTIONS(12401), + [aux_sym_subsubsection_token1] = ACTIONS(12401), + [aux_sym_paragraph_token1] = ACTIONS(12401), + [aux_sym_subparagraph_token1] = ACTIONS(12401), + [anon_sym_BSLASHitem] = ACTIONS(12401), + [anon_sym_LBRACK] = ACTIONS(12399), + [anon_sym_RBRACK] = ACTIONS(12399), + [anon_sym_LBRACE] = ACTIONS(12399), + [anon_sym_RBRACE] = ACTIONS(12399), + [anon_sym_LPAREN] = ACTIONS(12399), + [anon_sym_RPAREN] = ACTIONS(12399), + [anon_sym_COMMA] = ACTIONS(12399), + [anon_sym_EQ] = ACTIONS(12399), + [sym_word] = ACTIONS(12399), + [sym_param] = ACTIONS(12399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12399), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12399), + [anon_sym_DOLLAR] = ACTIONS(12401), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12399), + [anon_sym_BSLASHbegin] = ACTIONS(12401), + [anon_sym_BSLASHcaption] = ACTIONS(12401), + [anon_sym_BSLASHcite] = ACTIONS(12401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCite] = ACTIONS(12401), + [anon_sym_BSLASHnocite] = ACTIONS(12401), + [anon_sym_BSLASHcitet] = ACTIONS(12401), + [anon_sym_BSLASHcitep] = ACTIONS(12401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteauthor] = ACTIONS(12401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitetitle] = ACTIONS(12401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteyear] = ACTIONS(12401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitedate] = ACTIONS(12401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteurl] = ACTIONS(12401), + [anon_sym_BSLASHfullcite] = ACTIONS(12401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12401), + [anon_sym_BSLASHcitealt] = ACTIONS(12401), + [anon_sym_BSLASHcitealp] = ACTIONS(12401), + [anon_sym_BSLASHcitetext] = ACTIONS(12401), + [anon_sym_BSLASHparencite] = ACTIONS(12401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHParencite] = ACTIONS(12401), + [anon_sym_BSLASHfootcite] = ACTIONS(12401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12401), + [anon_sym_BSLASHtextcite] = ACTIONS(12401), + [anon_sym_BSLASHTextcite] = ACTIONS(12401), + [anon_sym_BSLASHsmartcite] = ACTIONS(12401), + [anon_sym_BSLASHSmartcite] = ACTIONS(12401), + [anon_sym_BSLASHsupercite] = ACTIONS(12401), + [anon_sym_BSLASHautocite] = ACTIONS(12401), + [anon_sym_BSLASHAutocite] = ACTIONS(12401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHvolcite] = ACTIONS(12401), + [anon_sym_BSLASHVolcite] = ACTIONS(12401), + [anon_sym_BSLASHpvolcite] = ACTIONS(12401), + [anon_sym_BSLASHPvolcite] = ACTIONS(12401), + [anon_sym_BSLASHfvolcite] = ACTIONS(12401), + [anon_sym_BSLASHftvolcite] = ACTIONS(12401), + [anon_sym_BSLASHsvolcite] = ACTIONS(12401), + [anon_sym_BSLASHSvolcite] = ACTIONS(12401), + [anon_sym_BSLASHtvolcite] = ACTIONS(12401), + [anon_sym_BSLASHTvolcite] = ACTIONS(12401), + [anon_sym_BSLASHavolcite] = ACTIONS(12401), + [anon_sym_BSLASHAvolcite] = ACTIONS(12401), + [anon_sym_BSLASHnotecite] = ACTIONS(12401), + [anon_sym_BSLASHpnotecite] = ACTIONS(12401), + [anon_sym_BSLASHPnotecite] = ACTIONS(12401), + [anon_sym_BSLASHfnotecite] = ACTIONS(12401), + [anon_sym_BSLASHusepackage] = ACTIONS(12401), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12401), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12401), + [anon_sym_BSLASHinclude] = ACTIONS(12401), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12401), + [anon_sym_BSLASHinput] = ACTIONS(12401), + [anon_sym_BSLASHsubfile] = ACTIONS(12401), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12401), + [anon_sym_BSLASHbibliography] = ACTIONS(12401), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12401), + [anon_sym_BSLASHincludesvg] = ACTIONS(12401), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12401), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12401), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12401), + [anon_sym_BSLASHimport] = ACTIONS(12401), + [anon_sym_BSLASHsubimport] = ACTIONS(12401), + [anon_sym_BSLASHinputfrom] = ACTIONS(12401), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12401), + [anon_sym_BSLASHincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHlabel] = ACTIONS(12401), + [anon_sym_BSLASHref] = ACTIONS(12401), + [anon_sym_BSLASHvref] = ACTIONS(12401), + [anon_sym_BSLASHVref] = ACTIONS(12401), + [anon_sym_BSLASHautoref] = ACTIONS(12401), + [anon_sym_BSLASHpageref] = ACTIONS(12401), + [anon_sym_BSLASHcref] = ACTIONS(12401), + [anon_sym_BSLASHCref] = ACTIONS(12401), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnameCref] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHlabelcref] = ACTIONS(12401), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12401), + [anon_sym_BSLASHeqref] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange] = ACTIONS(12401), + [anon_sym_BSLASHCrefrange] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewlabel] = ACTIONS(12401), + [anon_sym_BSLASHnewcommand] = ACTIONS(12401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12401), + [anon_sym_BSLASHgls] = ACTIONS(12401), + [anon_sym_BSLASHGls] = ACTIONS(12401), + [anon_sym_BSLASHGLS] = ACTIONS(12401), + [anon_sym_BSLASHglspl] = ACTIONS(12401), + [anon_sym_BSLASHGlspl] = ACTIONS(12401), + [anon_sym_BSLASHGLSpl] = ACTIONS(12401), + [anon_sym_BSLASHglsdisp] = ACTIONS(12401), + [anon_sym_BSLASHglslink] = ACTIONS(12401), + [anon_sym_BSLASHglstext] = ACTIONS(12401), + [anon_sym_BSLASHGlstext] = ACTIONS(12401), + [anon_sym_BSLASHGLStext] = ACTIONS(12401), + [anon_sym_BSLASHglsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12401), + [anon_sym_BSLASHglsplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSplural] = ACTIONS(12401), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHglsname] = ACTIONS(12401), + [anon_sym_BSLASHGlsname] = ACTIONS(12401), + [anon_sym_BSLASHGLSname] = ACTIONS(12401), + [anon_sym_BSLASHglssymbol] = ACTIONS(12401), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12401), + [anon_sym_BSLASHglsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12401), + [anon_sym_BSLASHglsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12401), + [anon_sym_BSLASHglsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12401), + [anon_sym_BSLASHglsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12401), + [anon_sym_BSLASHglsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12401), + [anon_sym_BSLASHnewacronym] = ACTIONS(12401), + [anon_sym_BSLASHacrshort] = ACTIONS(12401), + [anon_sym_BSLASHAcrshort] = ACTIONS(12401), + [anon_sym_BSLASHACRshort] = ACTIONS(12401), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12401), + [anon_sym_BSLASHacrlong] = ACTIONS(12401), + [anon_sym_BSLASHAcrlong] = ACTIONS(12401), + [anon_sym_BSLASHACRlong] = ACTIONS(12401), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12401), + [anon_sym_BSLASHacrfull] = ACTIONS(12401), + [anon_sym_BSLASHAcrfull] = ACTIONS(12401), + [anon_sym_BSLASHACRfull] = ACTIONS(12401), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12401), + [anon_sym_BSLASHacs] = ACTIONS(12401), + [anon_sym_BSLASHAcs] = ACTIONS(12401), + [anon_sym_BSLASHacsp] = ACTIONS(12401), + [anon_sym_BSLASHAcsp] = ACTIONS(12401), + [anon_sym_BSLASHacl] = ACTIONS(12401), + [anon_sym_BSLASHAcl] = ACTIONS(12401), + [anon_sym_BSLASHaclp] = ACTIONS(12401), + [anon_sym_BSLASHAclp] = ACTIONS(12401), + [anon_sym_BSLASHacf] = ACTIONS(12401), + [anon_sym_BSLASHAcf] = ACTIONS(12401), + [anon_sym_BSLASHacfp] = ACTIONS(12401), + [anon_sym_BSLASHAcfp] = ACTIONS(12401), + [anon_sym_BSLASHac] = ACTIONS(12401), + [anon_sym_BSLASHAc] = ACTIONS(12401), + [anon_sym_BSLASHacp] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12401), + [anon_sym_BSLASHcolor] = ACTIONS(12401), + [anon_sym_BSLASHcolorbox] = ACTIONS(12401), + [anon_sym_BSLASHtextcolor] = ACTIONS(12401), + [anon_sym_BSLASHpagecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12401), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12401), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12401), + }, + [572] = { + [ts_builtin_sym_end] = ACTIONS(12403), + [sym_generic_command_name] = ACTIONS(12405), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12405), + [aux_sym_chapter_token1] = ACTIONS(12405), + [aux_sym_section_token1] = ACTIONS(12405), + [aux_sym_subsection_token1] = ACTIONS(12405), + [aux_sym_subsubsection_token1] = ACTIONS(12405), + [aux_sym_paragraph_token1] = ACTIONS(12405), + [aux_sym_subparagraph_token1] = ACTIONS(12405), + [anon_sym_BSLASHitem] = ACTIONS(12405), + [anon_sym_LBRACK] = ACTIONS(12403), + [anon_sym_RBRACK] = ACTIONS(12403), + [anon_sym_LBRACE] = ACTIONS(12403), + [anon_sym_RBRACE] = ACTIONS(12403), + [anon_sym_LPAREN] = ACTIONS(12403), + [anon_sym_RPAREN] = ACTIONS(12403), + [anon_sym_COMMA] = ACTIONS(12403), + [anon_sym_EQ] = ACTIONS(12403), + [sym_word] = ACTIONS(12403), + [sym_param] = ACTIONS(12403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12403), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12403), + [anon_sym_DOLLAR] = ACTIONS(12405), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12403), + [anon_sym_BSLASHbegin] = ACTIONS(12405), + [anon_sym_BSLASHcaption] = ACTIONS(12405), + [anon_sym_BSLASHcite] = ACTIONS(12405), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCite] = ACTIONS(12405), + [anon_sym_BSLASHnocite] = ACTIONS(12405), + [anon_sym_BSLASHcitet] = ACTIONS(12405), + [anon_sym_BSLASHcitep] = ACTIONS(12405), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteauthor] = ACTIONS(12405), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12405), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitetitle] = ACTIONS(12405), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteyear] = ACTIONS(12405), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitedate] = ACTIONS(12405), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteurl] = ACTIONS(12405), + [anon_sym_BSLASHfullcite] = ACTIONS(12405), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12405), + [anon_sym_BSLASHcitealt] = ACTIONS(12405), + [anon_sym_BSLASHcitealp] = ACTIONS(12405), + [anon_sym_BSLASHcitetext] = ACTIONS(12405), + [anon_sym_BSLASHparencite] = ACTIONS(12405), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHParencite] = ACTIONS(12405), + [anon_sym_BSLASHfootcite] = ACTIONS(12405), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12405), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12405), + [anon_sym_BSLASHtextcite] = ACTIONS(12405), + [anon_sym_BSLASHTextcite] = ACTIONS(12405), + [anon_sym_BSLASHsmartcite] = ACTIONS(12405), + [anon_sym_BSLASHSmartcite] = ACTIONS(12405), + [anon_sym_BSLASHsupercite] = ACTIONS(12405), + [anon_sym_BSLASHautocite] = ACTIONS(12405), + [anon_sym_BSLASHAutocite] = ACTIONS(12405), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHvolcite] = ACTIONS(12405), + [anon_sym_BSLASHVolcite] = ACTIONS(12405), + [anon_sym_BSLASHpvolcite] = ACTIONS(12405), + [anon_sym_BSLASHPvolcite] = ACTIONS(12405), + [anon_sym_BSLASHfvolcite] = ACTIONS(12405), + [anon_sym_BSLASHftvolcite] = ACTIONS(12405), + [anon_sym_BSLASHsvolcite] = ACTIONS(12405), + [anon_sym_BSLASHSvolcite] = ACTIONS(12405), + [anon_sym_BSLASHtvolcite] = ACTIONS(12405), + [anon_sym_BSLASHTvolcite] = ACTIONS(12405), + [anon_sym_BSLASHavolcite] = ACTIONS(12405), + [anon_sym_BSLASHAvolcite] = ACTIONS(12405), + [anon_sym_BSLASHnotecite] = ACTIONS(12405), + [anon_sym_BSLASHpnotecite] = ACTIONS(12405), + [anon_sym_BSLASHPnotecite] = ACTIONS(12405), + [anon_sym_BSLASHfnotecite] = ACTIONS(12405), + [anon_sym_BSLASHusepackage] = ACTIONS(12405), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12405), + [anon_sym_BSLASHinclude] = ACTIONS(12405), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12405), + [anon_sym_BSLASHinput] = ACTIONS(12405), + [anon_sym_BSLASHsubfile] = ACTIONS(12405), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12405), + [anon_sym_BSLASHbibliography] = ACTIONS(12405), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12405), + [anon_sym_BSLASHincludesvg] = ACTIONS(12405), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12405), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12405), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12405), + [anon_sym_BSLASHimport] = ACTIONS(12405), + [anon_sym_BSLASHsubimport] = ACTIONS(12405), + [anon_sym_BSLASHinputfrom] = ACTIONS(12405), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12405), + [anon_sym_BSLASHincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHlabel] = ACTIONS(12405), + [anon_sym_BSLASHref] = ACTIONS(12405), + [anon_sym_BSLASHvref] = ACTIONS(12405), + [anon_sym_BSLASHVref] = ACTIONS(12405), + [anon_sym_BSLASHautoref] = ACTIONS(12405), + [anon_sym_BSLASHpageref] = ACTIONS(12405), + [anon_sym_BSLASHcref] = ACTIONS(12405), + [anon_sym_BSLASHCref] = ACTIONS(12405), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnameCref] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHlabelcref] = ACTIONS(12405), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12405), + [anon_sym_BSLASHeqref] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange] = ACTIONS(12405), + [anon_sym_BSLASHCrefrange] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewlabel] = ACTIONS(12405), + [anon_sym_BSLASHnewcommand] = ACTIONS(12405), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12405), + [anon_sym_BSLASHgls] = ACTIONS(12405), + [anon_sym_BSLASHGls] = ACTIONS(12405), + [anon_sym_BSLASHGLS] = ACTIONS(12405), + [anon_sym_BSLASHglspl] = ACTIONS(12405), + [anon_sym_BSLASHGlspl] = ACTIONS(12405), + [anon_sym_BSLASHGLSpl] = ACTIONS(12405), + [anon_sym_BSLASHglsdisp] = ACTIONS(12405), + [anon_sym_BSLASHglslink] = ACTIONS(12405), + [anon_sym_BSLASHglstext] = ACTIONS(12405), + [anon_sym_BSLASHGlstext] = ACTIONS(12405), + [anon_sym_BSLASHGLStext] = ACTIONS(12405), + [anon_sym_BSLASHglsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12405), + [anon_sym_BSLASHglsplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSplural] = ACTIONS(12405), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHglsname] = ACTIONS(12405), + [anon_sym_BSLASHGlsname] = ACTIONS(12405), + [anon_sym_BSLASHGLSname] = ACTIONS(12405), + [anon_sym_BSLASHglssymbol] = ACTIONS(12405), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12405), + [anon_sym_BSLASHglsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12405), + [anon_sym_BSLASHglsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12405), + [anon_sym_BSLASHglsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12405), + [anon_sym_BSLASHglsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12405), + [anon_sym_BSLASHglsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12405), + [anon_sym_BSLASHnewacronym] = ACTIONS(12405), + [anon_sym_BSLASHacrshort] = ACTIONS(12405), + [anon_sym_BSLASHAcrshort] = ACTIONS(12405), + [anon_sym_BSLASHACRshort] = ACTIONS(12405), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12405), + [anon_sym_BSLASHacrlong] = ACTIONS(12405), + [anon_sym_BSLASHAcrlong] = ACTIONS(12405), + [anon_sym_BSLASHACRlong] = ACTIONS(12405), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12405), + [anon_sym_BSLASHacrfull] = ACTIONS(12405), + [anon_sym_BSLASHAcrfull] = ACTIONS(12405), + [anon_sym_BSLASHACRfull] = ACTIONS(12405), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12405), + [anon_sym_BSLASHacs] = ACTIONS(12405), + [anon_sym_BSLASHAcs] = ACTIONS(12405), + [anon_sym_BSLASHacsp] = ACTIONS(12405), + [anon_sym_BSLASHAcsp] = ACTIONS(12405), + [anon_sym_BSLASHacl] = ACTIONS(12405), + [anon_sym_BSLASHAcl] = ACTIONS(12405), + [anon_sym_BSLASHaclp] = ACTIONS(12405), + [anon_sym_BSLASHAclp] = ACTIONS(12405), + [anon_sym_BSLASHacf] = ACTIONS(12405), + [anon_sym_BSLASHAcf] = ACTIONS(12405), + [anon_sym_BSLASHacfp] = ACTIONS(12405), + [anon_sym_BSLASHAcfp] = ACTIONS(12405), + [anon_sym_BSLASHac] = ACTIONS(12405), + [anon_sym_BSLASHAc] = ACTIONS(12405), + [anon_sym_BSLASHacp] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12405), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12405), + [anon_sym_BSLASHcolor] = ACTIONS(12405), + [anon_sym_BSLASHcolorbox] = ACTIONS(12405), + [anon_sym_BSLASHtextcolor] = ACTIONS(12405), + [anon_sym_BSLASHpagecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12405), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12405), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12405), + }, + [573] = { + [ts_builtin_sym_end] = ACTIONS(12407), + [sym_generic_command_name] = ACTIONS(12409), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12409), + [aux_sym_chapter_token1] = ACTIONS(12409), + [aux_sym_section_token1] = ACTIONS(12409), + [aux_sym_subsection_token1] = ACTIONS(12409), + [aux_sym_subsubsection_token1] = ACTIONS(12409), + [aux_sym_paragraph_token1] = ACTIONS(12409), + [aux_sym_subparagraph_token1] = ACTIONS(12409), + [anon_sym_BSLASHitem] = ACTIONS(12409), + [anon_sym_LBRACK] = ACTIONS(12407), + [anon_sym_RBRACK] = ACTIONS(12407), + [anon_sym_LBRACE] = ACTIONS(12407), + [anon_sym_RBRACE] = ACTIONS(12407), + [anon_sym_LPAREN] = ACTIONS(12407), + [anon_sym_RPAREN] = ACTIONS(12407), + [anon_sym_COMMA] = ACTIONS(12407), + [anon_sym_EQ] = ACTIONS(12407), + [sym_word] = ACTIONS(12407), + [sym_param] = ACTIONS(12407), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12407), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12407), + [anon_sym_DOLLAR] = ACTIONS(12409), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12407), + [anon_sym_BSLASHbegin] = ACTIONS(12409), + [anon_sym_BSLASHcaption] = ACTIONS(12409), + [anon_sym_BSLASHcite] = ACTIONS(12409), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCite] = ACTIONS(12409), + [anon_sym_BSLASHnocite] = ACTIONS(12409), + [anon_sym_BSLASHcitet] = ACTIONS(12409), + [anon_sym_BSLASHcitep] = ACTIONS(12409), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteauthor] = ACTIONS(12409), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12409), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitetitle] = ACTIONS(12409), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteyear] = ACTIONS(12409), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitedate] = ACTIONS(12409), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteurl] = ACTIONS(12409), + [anon_sym_BSLASHfullcite] = ACTIONS(12409), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12409), + [anon_sym_BSLASHcitealt] = ACTIONS(12409), + [anon_sym_BSLASHcitealp] = ACTIONS(12409), + [anon_sym_BSLASHcitetext] = ACTIONS(12409), + [anon_sym_BSLASHparencite] = ACTIONS(12409), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHParencite] = ACTIONS(12409), + [anon_sym_BSLASHfootcite] = ACTIONS(12409), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12409), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12409), + [anon_sym_BSLASHtextcite] = ACTIONS(12409), + [anon_sym_BSLASHTextcite] = ACTIONS(12409), + [anon_sym_BSLASHsmartcite] = ACTIONS(12409), + [anon_sym_BSLASHSmartcite] = ACTIONS(12409), + [anon_sym_BSLASHsupercite] = ACTIONS(12409), + [anon_sym_BSLASHautocite] = ACTIONS(12409), + [anon_sym_BSLASHAutocite] = ACTIONS(12409), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHvolcite] = ACTIONS(12409), + [anon_sym_BSLASHVolcite] = ACTIONS(12409), + [anon_sym_BSLASHpvolcite] = ACTIONS(12409), + [anon_sym_BSLASHPvolcite] = ACTIONS(12409), + [anon_sym_BSLASHfvolcite] = ACTIONS(12409), + [anon_sym_BSLASHftvolcite] = ACTIONS(12409), + [anon_sym_BSLASHsvolcite] = ACTIONS(12409), + [anon_sym_BSLASHSvolcite] = ACTIONS(12409), + [anon_sym_BSLASHtvolcite] = ACTIONS(12409), + [anon_sym_BSLASHTvolcite] = ACTIONS(12409), + [anon_sym_BSLASHavolcite] = ACTIONS(12409), + [anon_sym_BSLASHAvolcite] = ACTIONS(12409), + [anon_sym_BSLASHnotecite] = ACTIONS(12409), + [anon_sym_BSLASHpnotecite] = ACTIONS(12409), + [anon_sym_BSLASHPnotecite] = ACTIONS(12409), + [anon_sym_BSLASHfnotecite] = ACTIONS(12409), + [anon_sym_BSLASHusepackage] = ACTIONS(12409), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12409), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12409), + [anon_sym_BSLASHinclude] = ACTIONS(12409), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12409), + [anon_sym_BSLASHinput] = ACTIONS(12409), + [anon_sym_BSLASHsubfile] = ACTIONS(12409), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12409), + [anon_sym_BSLASHbibliography] = ACTIONS(12409), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12409), + [anon_sym_BSLASHincludesvg] = ACTIONS(12409), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12409), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12409), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12409), + [anon_sym_BSLASHimport] = ACTIONS(12409), + [anon_sym_BSLASHsubimport] = ACTIONS(12409), + [anon_sym_BSLASHinputfrom] = ACTIONS(12409), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12409), + [anon_sym_BSLASHincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHlabel] = ACTIONS(12409), + [anon_sym_BSLASHref] = ACTIONS(12409), + [anon_sym_BSLASHvref] = ACTIONS(12409), + [anon_sym_BSLASHVref] = ACTIONS(12409), + [anon_sym_BSLASHautoref] = ACTIONS(12409), + [anon_sym_BSLASHpageref] = ACTIONS(12409), + [anon_sym_BSLASHcref] = ACTIONS(12409), + [anon_sym_BSLASHCref] = ACTIONS(12409), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnameCref] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHlabelcref] = ACTIONS(12409), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12409), + [anon_sym_BSLASHeqref] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange] = ACTIONS(12409), + [anon_sym_BSLASHCrefrange] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewlabel] = ACTIONS(12409), + [anon_sym_BSLASHnewcommand] = ACTIONS(12409), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12409), + [anon_sym_BSLASHgls] = ACTIONS(12409), + [anon_sym_BSLASHGls] = ACTIONS(12409), + [anon_sym_BSLASHGLS] = ACTIONS(12409), + [anon_sym_BSLASHglspl] = ACTIONS(12409), + [anon_sym_BSLASHGlspl] = ACTIONS(12409), + [anon_sym_BSLASHGLSpl] = ACTIONS(12409), + [anon_sym_BSLASHglsdisp] = ACTIONS(12409), + [anon_sym_BSLASHglslink] = ACTIONS(12409), + [anon_sym_BSLASHglstext] = ACTIONS(12409), + [anon_sym_BSLASHGlstext] = ACTIONS(12409), + [anon_sym_BSLASHGLStext] = ACTIONS(12409), + [anon_sym_BSLASHglsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12409), + [anon_sym_BSLASHglsplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSplural] = ACTIONS(12409), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHglsname] = ACTIONS(12409), + [anon_sym_BSLASHGlsname] = ACTIONS(12409), + [anon_sym_BSLASHGLSname] = ACTIONS(12409), + [anon_sym_BSLASHglssymbol] = ACTIONS(12409), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12409), + [anon_sym_BSLASHglsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12409), + [anon_sym_BSLASHglsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12409), + [anon_sym_BSLASHglsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12409), + [anon_sym_BSLASHglsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12409), + [anon_sym_BSLASHglsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12409), + [anon_sym_BSLASHnewacronym] = ACTIONS(12409), + [anon_sym_BSLASHacrshort] = ACTIONS(12409), + [anon_sym_BSLASHAcrshort] = ACTIONS(12409), + [anon_sym_BSLASHACRshort] = ACTIONS(12409), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12409), + [anon_sym_BSLASHacrlong] = ACTIONS(12409), + [anon_sym_BSLASHAcrlong] = ACTIONS(12409), + [anon_sym_BSLASHACRlong] = ACTIONS(12409), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12409), + [anon_sym_BSLASHacrfull] = ACTIONS(12409), + [anon_sym_BSLASHAcrfull] = ACTIONS(12409), + [anon_sym_BSLASHACRfull] = ACTIONS(12409), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12409), + [anon_sym_BSLASHacs] = ACTIONS(12409), + [anon_sym_BSLASHAcs] = ACTIONS(12409), + [anon_sym_BSLASHacsp] = ACTIONS(12409), + [anon_sym_BSLASHAcsp] = ACTIONS(12409), + [anon_sym_BSLASHacl] = ACTIONS(12409), + [anon_sym_BSLASHAcl] = ACTIONS(12409), + [anon_sym_BSLASHaclp] = ACTIONS(12409), + [anon_sym_BSLASHAclp] = ACTIONS(12409), + [anon_sym_BSLASHacf] = ACTIONS(12409), + [anon_sym_BSLASHAcf] = ACTIONS(12409), + [anon_sym_BSLASHacfp] = ACTIONS(12409), + [anon_sym_BSLASHAcfp] = ACTIONS(12409), + [anon_sym_BSLASHac] = ACTIONS(12409), + [anon_sym_BSLASHAc] = ACTIONS(12409), + [anon_sym_BSLASHacp] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12409), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12409), + [anon_sym_BSLASHcolor] = ACTIONS(12409), + [anon_sym_BSLASHcolorbox] = ACTIONS(12409), + [anon_sym_BSLASHtextcolor] = ACTIONS(12409), + [anon_sym_BSLASHpagecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12409), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12409), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12409), + }, + [574] = { + [ts_builtin_sym_end] = ACTIONS(12411), + [sym_generic_command_name] = ACTIONS(12413), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12413), + [aux_sym_chapter_token1] = ACTIONS(12413), + [aux_sym_section_token1] = ACTIONS(12413), + [aux_sym_subsection_token1] = ACTIONS(12413), + [aux_sym_subsubsection_token1] = ACTIONS(12413), + [aux_sym_paragraph_token1] = ACTIONS(12413), + [aux_sym_subparagraph_token1] = ACTIONS(12413), + [anon_sym_BSLASHitem] = ACTIONS(12413), + [anon_sym_LBRACK] = ACTIONS(12411), + [anon_sym_RBRACK] = ACTIONS(12411), + [anon_sym_LBRACE] = ACTIONS(12411), + [anon_sym_RBRACE] = ACTIONS(12411), + [anon_sym_LPAREN] = ACTIONS(12411), + [anon_sym_RPAREN] = ACTIONS(12411), + [anon_sym_COMMA] = ACTIONS(12411), + [anon_sym_EQ] = ACTIONS(12411), + [sym_word] = ACTIONS(12411), + [sym_param] = ACTIONS(12411), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12411), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12411), + [anon_sym_DOLLAR] = ACTIONS(12413), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12411), + [anon_sym_BSLASHbegin] = ACTIONS(12413), + [anon_sym_BSLASHcaption] = ACTIONS(12413), + [anon_sym_BSLASHcite] = ACTIONS(12413), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCite] = ACTIONS(12413), + [anon_sym_BSLASHnocite] = ACTIONS(12413), + [anon_sym_BSLASHcitet] = ACTIONS(12413), + [anon_sym_BSLASHcitep] = ACTIONS(12413), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteauthor] = ACTIONS(12413), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12413), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitetitle] = ACTIONS(12413), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteyear] = ACTIONS(12413), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitedate] = ACTIONS(12413), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteurl] = ACTIONS(12413), + [anon_sym_BSLASHfullcite] = ACTIONS(12413), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12413), + [anon_sym_BSLASHcitealt] = ACTIONS(12413), + [anon_sym_BSLASHcitealp] = ACTIONS(12413), + [anon_sym_BSLASHcitetext] = ACTIONS(12413), + [anon_sym_BSLASHparencite] = ACTIONS(12413), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHParencite] = ACTIONS(12413), + [anon_sym_BSLASHfootcite] = ACTIONS(12413), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12413), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12413), + [anon_sym_BSLASHtextcite] = ACTIONS(12413), + [anon_sym_BSLASHTextcite] = ACTIONS(12413), + [anon_sym_BSLASHsmartcite] = ACTIONS(12413), + [anon_sym_BSLASHSmartcite] = ACTIONS(12413), + [anon_sym_BSLASHsupercite] = ACTIONS(12413), + [anon_sym_BSLASHautocite] = ACTIONS(12413), + [anon_sym_BSLASHAutocite] = ACTIONS(12413), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHvolcite] = ACTIONS(12413), + [anon_sym_BSLASHVolcite] = ACTIONS(12413), + [anon_sym_BSLASHpvolcite] = ACTIONS(12413), + [anon_sym_BSLASHPvolcite] = ACTIONS(12413), + [anon_sym_BSLASHfvolcite] = ACTIONS(12413), + [anon_sym_BSLASHftvolcite] = ACTIONS(12413), + [anon_sym_BSLASHsvolcite] = ACTIONS(12413), + [anon_sym_BSLASHSvolcite] = ACTIONS(12413), + [anon_sym_BSLASHtvolcite] = ACTIONS(12413), + [anon_sym_BSLASHTvolcite] = ACTIONS(12413), + [anon_sym_BSLASHavolcite] = ACTIONS(12413), + [anon_sym_BSLASHAvolcite] = ACTIONS(12413), + [anon_sym_BSLASHnotecite] = ACTIONS(12413), + [anon_sym_BSLASHpnotecite] = ACTIONS(12413), + [anon_sym_BSLASHPnotecite] = ACTIONS(12413), + [anon_sym_BSLASHfnotecite] = ACTIONS(12413), + [anon_sym_BSLASHusepackage] = ACTIONS(12413), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12413), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12413), + [anon_sym_BSLASHinclude] = ACTIONS(12413), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12413), + [anon_sym_BSLASHinput] = ACTIONS(12413), + [anon_sym_BSLASHsubfile] = ACTIONS(12413), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12413), + [anon_sym_BSLASHbibliography] = ACTIONS(12413), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12413), + [anon_sym_BSLASHincludesvg] = ACTIONS(12413), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12413), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12413), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12413), + [anon_sym_BSLASHimport] = ACTIONS(12413), + [anon_sym_BSLASHsubimport] = ACTIONS(12413), + [anon_sym_BSLASHinputfrom] = ACTIONS(12413), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12413), + [anon_sym_BSLASHincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHlabel] = ACTIONS(12413), + [anon_sym_BSLASHref] = ACTIONS(12413), + [anon_sym_BSLASHvref] = ACTIONS(12413), + [anon_sym_BSLASHVref] = ACTIONS(12413), + [anon_sym_BSLASHautoref] = ACTIONS(12413), + [anon_sym_BSLASHpageref] = ACTIONS(12413), + [anon_sym_BSLASHcref] = ACTIONS(12413), + [anon_sym_BSLASHCref] = ACTIONS(12413), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnameCref] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHlabelcref] = ACTIONS(12413), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12413), + [anon_sym_BSLASHeqref] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange] = ACTIONS(12413), + [anon_sym_BSLASHCrefrange] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewlabel] = ACTIONS(12413), + [anon_sym_BSLASHnewcommand] = ACTIONS(12413), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12413), + [anon_sym_BSLASHgls] = ACTIONS(12413), + [anon_sym_BSLASHGls] = ACTIONS(12413), + [anon_sym_BSLASHGLS] = ACTIONS(12413), + [anon_sym_BSLASHglspl] = ACTIONS(12413), + [anon_sym_BSLASHGlspl] = ACTIONS(12413), + [anon_sym_BSLASHGLSpl] = ACTIONS(12413), + [anon_sym_BSLASHglsdisp] = ACTIONS(12413), + [anon_sym_BSLASHglslink] = ACTIONS(12413), + [anon_sym_BSLASHglstext] = ACTIONS(12413), + [anon_sym_BSLASHGlstext] = ACTIONS(12413), + [anon_sym_BSLASHGLStext] = ACTIONS(12413), + [anon_sym_BSLASHglsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12413), + [anon_sym_BSLASHglsplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSplural] = ACTIONS(12413), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHglsname] = ACTIONS(12413), + [anon_sym_BSLASHGlsname] = ACTIONS(12413), + [anon_sym_BSLASHGLSname] = ACTIONS(12413), + [anon_sym_BSLASHglssymbol] = ACTIONS(12413), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12413), + [anon_sym_BSLASHglsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12413), + [anon_sym_BSLASHglsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12413), + [anon_sym_BSLASHglsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12413), + [anon_sym_BSLASHglsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12413), + [anon_sym_BSLASHglsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12413), + [anon_sym_BSLASHnewacronym] = ACTIONS(12413), + [anon_sym_BSLASHacrshort] = ACTIONS(12413), + [anon_sym_BSLASHAcrshort] = ACTIONS(12413), + [anon_sym_BSLASHACRshort] = ACTIONS(12413), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12413), + [anon_sym_BSLASHacrlong] = ACTIONS(12413), + [anon_sym_BSLASHAcrlong] = ACTIONS(12413), + [anon_sym_BSLASHACRlong] = ACTIONS(12413), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12413), + [anon_sym_BSLASHacrfull] = ACTIONS(12413), + [anon_sym_BSLASHAcrfull] = ACTIONS(12413), + [anon_sym_BSLASHACRfull] = ACTIONS(12413), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12413), + [anon_sym_BSLASHacs] = ACTIONS(12413), + [anon_sym_BSLASHAcs] = ACTIONS(12413), + [anon_sym_BSLASHacsp] = ACTIONS(12413), + [anon_sym_BSLASHAcsp] = ACTIONS(12413), + [anon_sym_BSLASHacl] = ACTIONS(12413), + [anon_sym_BSLASHAcl] = ACTIONS(12413), + [anon_sym_BSLASHaclp] = ACTIONS(12413), + [anon_sym_BSLASHAclp] = ACTIONS(12413), + [anon_sym_BSLASHacf] = ACTIONS(12413), + [anon_sym_BSLASHAcf] = ACTIONS(12413), + [anon_sym_BSLASHacfp] = ACTIONS(12413), + [anon_sym_BSLASHAcfp] = ACTIONS(12413), + [anon_sym_BSLASHac] = ACTIONS(12413), + [anon_sym_BSLASHAc] = ACTIONS(12413), + [anon_sym_BSLASHacp] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12413), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12413), + [anon_sym_BSLASHcolor] = ACTIONS(12413), + [anon_sym_BSLASHcolorbox] = ACTIONS(12413), + [anon_sym_BSLASHtextcolor] = ACTIONS(12413), + [anon_sym_BSLASHpagecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12413), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12413), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12413), + }, + [575] = { + [ts_builtin_sym_end] = ACTIONS(12415), + [sym_generic_command_name] = ACTIONS(12417), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12417), + [aux_sym_chapter_token1] = ACTIONS(12417), + [aux_sym_section_token1] = ACTIONS(12417), + [aux_sym_subsection_token1] = ACTIONS(12417), + [aux_sym_subsubsection_token1] = ACTIONS(12417), + [aux_sym_paragraph_token1] = ACTIONS(12417), + [aux_sym_subparagraph_token1] = ACTIONS(12417), + [anon_sym_BSLASHitem] = ACTIONS(12417), + [anon_sym_LBRACK] = ACTIONS(12415), + [anon_sym_RBRACK] = ACTIONS(12415), + [anon_sym_LBRACE] = ACTIONS(12415), + [anon_sym_RBRACE] = ACTIONS(12415), + [anon_sym_LPAREN] = ACTIONS(12415), + [anon_sym_RPAREN] = ACTIONS(12415), + [anon_sym_COMMA] = ACTIONS(12415), + [anon_sym_EQ] = ACTIONS(12415), + [sym_word] = ACTIONS(12415), + [sym_param] = ACTIONS(12415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12415), + [anon_sym_DOLLAR] = ACTIONS(12417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12415), + [anon_sym_BSLASHbegin] = ACTIONS(12417), + [anon_sym_BSLASHcaption] = ACTIONS(12417), + [anon_sym_BSLASHcite] = ACTIONS(12417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCite] = ACTIONS(12417), + [anon_sym_BSLASHnocite] = ACTIONS(12417), + [anon_sym_BSLASHcitet] = ACTIONS(12417), + [anon_sym_BSLASHcitep] = ACTIONS(12417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteauthor] = ACTIONS(12417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitetitle] = ACTIONS(12417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteyear] = ACTIONS(12417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitedate] = ACTIONS(12417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteurl] = ACTIONS(12417), + [anon_sym_BSLASHfullcite] = ACTIONS(12417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12417), + [anon_sym_BSLASHcitealt] = ACTIONS(12417), + [anon_sym_BSLASHcitealp] = ACTIONS(12417), + [anon_sym_BSLASHcitetext] = ACTIONS(12417), + [anon_sym_BSLASHparencite] = ACTIONS(12417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHParencite] = ACTIONS(12417), + [anon_sym_BSLASHfootcite] = ACTIONS(12417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12417), + [anon_sym_BSLASHtextcite] = ACTIONS(12417), + [anon_sym_BSLASHTextcite] = ACTIONS(12417), + [anon_sym_BSLASHsmartcite] = ACTIONS(12417), + [anon_sym_BSLASHSmartcite] = ACTIONS(12417), + [anon_sym_BSLASHsupercite] = ACTIONS(12417), + [anon_sym_BSLASHautocite] = ACTIONS(12417), + [anon_sym_BSLASHAutocite] = ACTIONS(12417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHvolcite] = ACTIONS(12417), + [anon_sym_BSLASHVolcite] = ACTIONS(12417), + [anon_sym_BSLASHpvolcite] = ACTIONS(12417), + [anon_sym_BSLASHPvolcite] = ACTIONS(12417), + [anon_sym_BSLASHfvolcite] = ACTIONS(12417), + [anon_sym_BSLASHftvolcite] = ACTIONS(12417), + [anon_sym_BSLASHsvolcite] = ACTIONS(12417), + [anon_sym_BSLASHSvolcite] = ACTIONS(12417), + [anon_sym_BSLASHtvolcite] = ACTIONS(12417), + [anon_sym_BSLASHTvolcite] = ACTIONS(12417), + [anon_sym_BSLASHavolcite] = ACTIONS(12417), + [anon_sym_BSLASHAvolcite] = ACTIONS(12417), + [anon_sym_BSLASHnotecite] = ACTIONS(12417), + [anon_sym_BSLASHpnotecite] = ACTIONS(12417), + [anon_sym_BSLASHPnotecite] = ACTIONS(12417), + [anon_sym_BSLASHfnotecite] = ACTIONS(12417), + [anon_sym_BSLASHusepackage] = ACTIONS(12417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12417), + [anon_sym_BSLASHinclude] = ACTIONS(12417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12417), + [anon_sym_BSLASHinput] = ACTIONS(12417), + [anon_sym_BSLASHsubfile] = ACTIONS(12417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12417), + [anon_sym_BSLASHbibliography] = ACTIONS(12417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12417), + [anon_sym_BSLASHincludesvg] = ACTIONS(12417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12417), + [anon_sym_BSLASHimport] = ACTIONS(12417), + [anon_sym_BSLASHsubimport] = ACTIONS(12417), + [anon_sym_BSLASHinputfrom] = ACTIONS(12417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12417), + [anon_sym_BSLASHincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHlabel] = ACTIONS(12417), + [anon_sym_BSLASHref] = ACTIONS(12417), + [anon_sym_BSLASHvref] = ACTIONS(12417), + [anon_sym_BSLASHVref] = ACTIONS(12417), + [anon_sym_BSLASHautoref] = ACTIONS(12417), + [anon_sym_BSLASHpageref] = ACTIONS(12417), + [anon_sym_BSLASHcref] = ACTIONS(12417), + [anon_sym_BSLASHCref] = ACTIONS(12417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnameCref] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHlabelcref] = ACTIONS(12417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12417), + [anon_sym_BSLASHeqref] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange] = ACTIONS(12417), + [anon_sym_BSLASHCrefrange] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewlabel] = ACTIONS(12417), + [anon_sym_BSLASHnewcommand] = ACTIONS(12417), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12417), + [anon_sym_BSLASHgls] = ACTIONS(12417), + [anon_sym_BSLASHGls] = ACTIONS(12417), + [anon_sym_BSLASHGLS] = ACTIONS(12417), + [anon_sym_BSLASHglspl] = ACTIONS(12417), + [anon_sym_BSLASHGlspl] = ACTIONS(12417), + [anon_sym_BSLASHGLSpl] = ACTIONS(12417), + [anon_sym_BSLASHglsdisp] = ACTIONS(12417), + [anon_sym_BSLASHglslink] = ACTIONS(12417), + [anon_sym_BSLASHglstext] = ACTIONS(12417), + [anon_sym_BSLASHGlstext] = ACTIONS(12417), + [anon_sym_BSLASHGLStext] = ACTIONS(12417), + [anon_sym_BSLASHglsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12417), + [anon_sym_BSLASHglsplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSplural] = ACTIONS(12417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHglsname] = ACTIONS(12417), + [anon_sym_BSLASHGlsname] = ACTIONS(12417), + [anon_sym_BSLASHGLSname] = ACTIONS(12417), + [anon_sym_BSLASHglssymbol] = ACTIONS(12417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12417), + [anon_sym_BSLASHglsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12417), + [anon_sym_BSLASHglsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12417), + [anon_sym_BSLASHglsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12417), + [anon_sym_BSLASHglsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12417), + [anon_sym_BSLASHglsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12417), + [anon_sym_BSLASHnewacronym] = ACTIONS(12417), + [anon_sym_BSLASHacrshort] = ACTIONS(12417), + [anon_sym_BSLASHAcrshort] = ACTIONS(12417), + [anon_sym_BSLASHACRshort] = ACTIONS(12417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12417), + [anon_sym_BSLASHacrlong] = ACTIONS(12417), + [anon_sym_BSLASHAcrlong] = ACTIONS(12417), + [anon_sym_BSLASHACRlong] = ACTIONS(12417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12417), + [anon_sym_BSLASHacrfull] = ACTIONS(12417), + [anon_sym_BSLASHAcrfull] = ACTIONS(12417), + [anon_sym_BSLASHACRfull] = ACTIONS(12417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12417), + [anon_sym_BSLASHacs] = ACTIONS(12417), + [anon_sym_BSLASHAcs] = ACTIONS(12417), + [anon_sym_BSLASHacsp] = ACTIONS(12417), + [anon_sym_BSLASHAcsp] = ACTIONS(12417), + [anon_sym_BSLASHacl] = ACTIONS(12417), + [anon_sym_BSLASHAcl] = ACTIONS(12417), + [anon_sym_BSLASHaclp] = ACTIONS(12417), + [anon_sym_BSLASHAclp] = ACTIONS(12417), + [anon_sym_BSLASHacf] = ACTIONS(12417), + [anon_sym_BSLASHAcf] = ACTIONS(12417), + [anon_sym_BSLASHacfp] = ACTIONS(12417), + [anon_sym_BSLASHAcfp] = ACTIONS(12417), + [anon_sym_BSLASHac] = ACTIONS(12417), + [anon_sym_BSLASHAc] = ACTIONS(12417), + [anon_sym_BSLASHacp] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12417), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12417), + [anon_sym_BSLASHcolor] = ACTIONS(12417), + [anon_sym_BSLASHcolorbox] = ACTIONS(12417), + [anon_sym_BSLASHtextcolor] = ACTIONS(12417), + [anon_sym_BSLASHpagecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12417), + }, + [576] = { + [ts_builtin_sym_end] = ACTIONS(12419), + [sym_generic_command_name] = ACTIONS(12421), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12421), + [aux_sym_chapter_token1] = ACTIONS(12421), + [aux_sym_section_token1] = ACTIONS(12421), + [aux_sym_subsection_token1] = ACTIONS(12421), + [aux_sym_subsubsection_token1] = ACTIONS(12421), + [aux_sym_paragraph_token1] = ACTIONS(12421), + [aux_sym_subparagraph_token1] = ACTIONS(12421), + [anon_sym_BSLASHitem] = ACTIONS(12421), + [anon_sym_LBRACK] = ACTIONS(12419), + [anon_sym_RBRACK] = ACTIONS(12419), + [anon_sym_LBRACE] = ACTIONS(12419), + [anon_sym_RBRACE] = ACTIONS(12419), + [anon_sym_LPAREN] = ACTIONS(12419), + [anon_sym_RPAREN] = ACTIONS(12419), + [anon_sym_COMMA] = ACTIONS(12419), + [anon_sym_EQ] = ACTIONS(12419), + [sym_word] = ACTIONS(12419), + [sym_param] = ACTIONS(12419), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12419), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12419), + [anon_sym_DOLLAR] = ACTIONS(12421), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12419), + [anon_sym_BSLASHbegin] = ACTIONS(12421), + [anon_sym_BSLASHcaption] = ACTIONS(12421), + [anon_sym_BSLASHcite] = ACTIONS(12421), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCite] = ACTIONS(12421), + [anon_sym_BSLASHnocite] = ACTIONS(12421), + [anon_sym_BSLASHcitet] = ACTIONS(12421), + [anon_sym_BSLASHcitep] = ACTIONS(12421), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteauthor] = ACTIONS(12421), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12421), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitetitle] = ACTIONS(12421), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteyear] = ACTIONS(12421), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitedate] = ACTIONS(12421), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteurl] = ACTIONS(12421), + [anon_sym_BSLASHfullcite] = ACTIONS(12421), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12421), + [anon_sym_BSLASHcitealt] = ACTIONS(12421), + [anon_sym_BSLASHcitealp] = ACTIONS(12421), + [anon_sym_BSLASHcitetext] = ACTIONS(12421), + [anon_sym_BSLASHparencite] = ACTIONS(12421), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHParencite] = ACTIONS(12421), + [anon_sym_BSLASHfootcite] = ACTIONS(12421), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12421), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12421), + [anon_sym_BSLASHtextcite] = ACTIONS(12421), + [anon_sym_BSLASHTextcite] = ACTIONS(12421), + [anon_sym_BSLASHsmartcite] = ACTIONS(12421), + [anon_sym_BSLASHSmartcite] = ACTIONS(12421), + [anon_sym_BSLASHsupercite] = ACTIONS(12421), + [anon_sym_BSLASHautocite] = ACTIONS(12421), + [anon_sym_BSLASHAutocite] = ACTIONS(12421), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHvolcite] = ACTIONS(12421), + [anon_sym_BSLASHVolcite] = ACTIONS(12421), + [anon_sym_BSLASHpvolcite] = ACTIONS(12421), + [anon_sym_BSLASHPvolcite] = ACTIONS(12421), + [anon_sym_BSLASHfvolcite] = ACTIONS(12421), + [anon_sym_BSLASHftvolcite] = ACTIONS(12421), + [anon_sym_BSLASHsvolcite] = ACTIONS(12421), + [anon_sym_BSLASHSvolcite] = ACTIONS(12421), + [anon_sym_BSLASHtvolcite] = ACTIONS(12421), + [anon_sym_BSLASHTvolcite] = ACTIONS(12421), + [anon_sym_BSLASHavolcite] = ACTIONS(12421), + [anon_sym_BSLASHAvolcite] = ACTIONS(12421), + [anon_sym_BSLASHnotecite] = ACTIONS(12421), + [anon_sym_BSLASHpnotecite] = ACTIONS(12421), + [anon_sym_BSLASHPnotecite] = ACTIONS(12421), + [anon_sym_BSLASHfnotecite] = ACTIONS(12421), + [anon_sym_BSLASHusepackage] = ACTIONS(12421), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12421), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12421), + [anon_sym_BSLASHinclude] = ACTIONS(12421), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12421), + [anon_sym_BSLASHinput] = ACTIONS(12421), + [anon_sym_BSLASHsubfile] = ACTIONS(12421), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12421), + [anon_sym_BSLASHbibliography] = ACTIONS(12421), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12421), + [anon_sym_BSLASHincludesvg] = ACTIONS(12421), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12421), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12421), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12421), + [anon_sym_BSLASHimport] = ACTIONS(12421), + [anon_sym_BSLASHsubimport] = ACTIONS(12421), + [anon_sym_BSLASHinputfrom] = ACTIONS(12421), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12421), + [anon_sym_BSLASHincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHlabel] = ACTIONS(12421), + [anon_sym_BSLASHref] = ACTIONS(12421), + [anon_sym_BSLASHvref] = ACTIONS(12421), + [anon_sym_BSLASHVref] = ACTIONS(12421), + [anon_sym_BSLASHautoref] = ACTIONS(12421), + [anon_sym_BSLASHpageref] = ACTIONS(12421), + [anon_sym_BSLASHcref] = ACTIONS(12421), + [anon_sym_BSLASHCref] = ACTIONS(12421), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnameCref] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHlabelcref] = ACTIONS(12421), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12421), + [anon_sym_BSLASHeqref] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange] = ACTIONS(12421), + [anon_sym_BSLASHCrefrange] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewlabel] = ACTIONS(12421), + [anon_sym_BSLASHnewcommand] = ACTIONS(12421), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12421), + [anon_sym_BSLASHgls] = ACTIONS(12421), + [anon_sym_BSLASHGls] = ACTIONS(12421), + [anon_sym_BSLASHGLS] = ACTIONS(12421), + [anon_sym_BSLASHglspl] = ACTIONS(12421), + [anon_sym_BSLASHGlspl] = ACTIONS(12421), + [anon_sym_BSLASHGLSpl] = ACTIONS(12421), + [anon_sym_BSLASHglsdisp] = ACTIONS(12421), + [anon_sym_BSLASHglslink] = ACTIONS(12421), + [anon_sym_BSLASHglstext] = ACTIONS(12421), + [anon_sym_BSLASHGlstext] = ACTIONS(12421), + [anon_sym_BSLASHGLStext] = ACTIONS(12421), + [anon_sym_BSLASHglsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12421), + [anon_sym_BSLASHglsplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSplural] = ACTIONS(12421), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHglsname] = ACTIONS(12421), + [anon_sym_BSLASHGlsname] = ACTIONS(12421), + [anon_sym_BSLASHGLSname] = ACTIONS(12421), + [anon_sym_BSLASHglssymbol] = ACTIONS(12421), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12421), + [anon_sym_BSLASHglsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12421), + [anon_sym_BSLASHglsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12421), + [anon_sym_BSLASHglsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12421), + [anon_sym_BSLASHglsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12421), + [anon_sym_BSLASHglsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12421), + [anon_sym_BSLASHnewacronym] = ACTIONS(12421), + [anon_sym_BSLASHacrshort] = ACTIONS(12421), + [anon_sym_BSLASHAcrshort] = ACTIONS(12421), + [anon_sym_BSLASHACRshort] = ACTIONS(12421), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12421), + [anon_sym_BSLASHacrlong] = ACTIONS(12421), + [anon_sym_BSLASHAcrlong] = ACTIONS(12421), + [anon_sym_BSLASHACRlong] = ACTIONS(12421), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12421), + [anon_sym_BSLASHacrfull] = ACTIONS(12421), + [anon_sym_BSLASHAcrfull] = ACTIONS(12421), + [anon_sym_BSLASHACRfull] = ACTIONS(12421), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12421), + [anon_sym_BSLASHacs] = ACTIONS(12421), + [anon_sym_BSLASHAcs] = ACTIONS(12421), + [anon_sym_BSLASHacsp] = ACTIONS(12421), + [anon_sym_BSLASHAcsp] = ACTIONS(12421), + [anon_sym_BSLASHacl] = ACTIONS(12421), + [anon_sym_BSLASHAcl] = ACTIONS(12421), + [anon_sym_BSLASHaclp] = ACTIONS(12421), + [anon_sym_BSLASHAclp] = ACTIONS(12421), + [anon_sym_BSLASHacf] = ACTIONS(12421), + [anon_sym_BSLASHAcf] = ACTIONS(12421), + [anon_sym_BSLASHacfp] = ACTIONS(12421), + [anon_sym_BSLASHAcfp] = ACTIONS(12421), + [anon_sym_BSLASHac] = ACTIONS(12421), + [anon_sym_BSLASHAc] = ACTIONS(12421), + [anon_sym_BSLASHacp] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12421), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12421), + [anon_sym_BSLASHcolor] = ACTIONS(12421), + [anon_sym_BSLASHcolorbox] = ACTIONS(12421), + [anon_sym_BSLASHtextcolor] = ACTIONS(12421), + [anon_sym_BSLASHpagecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12421), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12421), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12421), + }, + [577] = { + [ts_builtin_sym_end] = ACTIONS(12423), + [sym_generic_command_name] = ACTIONS(12425), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12425), + [aux_sym_chapter_token1] = ACTIONS(12425), + [aux_sym_section_token1] = ACTIONS(12425), + [aux_sym_subsection_token1] = ACTIONS(12425), + [aux_sym_subsubsection_token1] = ACTIONS(12425), + [aux_sym_paragraph_token1] = ACTIONS(12425), + [aux_sym_subparagraph_token1] = ACTIONS(12425), + [anon_sym_BSLASHitem] = ACTIONS(12425), + [anon_sym_LBRACK] = ACTIONS(12423), + [anon_sym_RBRACK] = ACTIONS(12423), + [anon_sym_LBRACE] = ACTIONS(12423), + [anon_sym_RBRACE] = ACTIONS(12423), + [anon_sym_LPAREN] = ACTIONS(12423), + [anon_sym_RPAREN] = ACTIONS(12423), + [anon_sym_COMMA] = ACTIONS(12423), + [anon_sym_EQ] = ACTIONS(12423), + [sym_word] = ACTIONS(12423), + [sym_param] = ACTIONS(12423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12423), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12423), + [anon_sym_DOLLAR] = ACTIONS(12425), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12423), + [anon_sym_BSLASHbegin] = ACTIONS(12425), + [anon_sym_BSLASHcaption] = ACTIONS(12425), + [anon_sym_BSLASHcite] = ACTIONS(12425), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCite] = ACTIONS(12425), + [anon_sym_BSLASHnocite] = ACTIONS(12425), + [anon_sym_BSLASHcitet] = ACTIONS(12425), + [anon_sym_BSLASHcitep] = ACTIONS(12425), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteauthor] = ACTIONS(12425), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12425), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitetitle] = ACTIONS(12425), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteyear] = ACTIONS(12425), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitedate] = ACTIONS(12425), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteurl] = ACTIONS(12425), + [anon_sym_BSLASHfullcite] = ACTIONS(12425), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12425), + [anon_sym_BSLASHcitealt] = ACTIONS(12425), + [anon_sym_BSLASHcitealp] = ACTIONS(12425), + [anon_sym_BSLASHcitetext] = ACTIONS(12425), + [anon_sym_BSLASHparencite] = ACTIONS(12425), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHParencite] = ACTIONS(12425), + [anon_sym_BSLASHfootcite] = ACTIONS(12425), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12425), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12425), + [anon_sym_BSLASHtextcite] = ACTIONS(12425), + [anon_sym_BSLASHTextcite] = ACTIONS(12425), + [anon_sym_BSLASHsmartcite] = ACTIONS(12425), + [anon_sym_BSLASHSmartcite] = ACTIONS(12425), + [anon_sym_BSLASHsupercite] = ACTIONS(12425), + [anon_sym_BSLASHautocite] = ACTIONS(12425), + [anon_sym_BSLASHAutocite] = ACTIONS(12425), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHvolcite] = ACTIONS(12425), + [anon_sym_BSLASHVolcite] = ACTIONS(12425), + [anon_sym_BSLASHpvolcite] = ACTIONS(12425), + [anon_sym_BSLASHPvolcite] = ACTIONS(12425), + [anon_sym_BSLASHfvolcite] = ACTIONS(12425), + [anon_sym_BSLASHftvolcite] = ACTIONS(12425), + [anon_sym_BSLASHsvolcite] = ACTIONS(12425), + [anon_sym_BSLASHSvolcite] = ACTIONS(12425), + [anon_sym_BSLASHtvolcite] = ACTIONS(12425), + [anon_sym_BSLASHTvolcite] = ACTIONS(12425), + [anon_sym_BSLASHavolcite] = ACTIONS(12425), + [anon_sym_BSLASHAvolcite] = ACTIONS(12425), + [anon_sym_BSLASHnotecite] = ACTIONS(12425), + [anon_sym_BSLASHpnotecite] = ACTIONS(12425), + [anon_sym_BSLASHPnotecite] = ACTIONS(12425), + [anon_sym_BSLASHfnotecite] = ACTIONS(12425), + [anon_sym_BSLASHusepackage] = ACTIONS(12425), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12425), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12425), + [anon_sym_BSLASHinclude] = ACTIONS(12425), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12425), + [anon_sym_BSLASHinput] = ACTIONS(12425), + [anon_sym_BSLASHsubfile] = ACTIONS(12425), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12425), + [anon_sym_BSLASHbibliography] = ACTIONS(12425), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12425), + [anon_sym_BSLASHincludesvg] = ACTIONS(12425), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12425), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12425), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12425), + [anon_sym_BSLASHimport] = ACTIONS(12425), + [anon_sym_BSLASHsubimport] = ACTIONS(12425), + [anon_sym_BSLASHinputfrom] = ACTIONS(12425), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12425), + [anon_sym_BSLASHincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHlabel] = ACTIONS(12425), + [anon_sym_BSLASHref] = ACTIONS(12425), + [anon_sym_BSLASHvref] = ACTIONS(12425), + [anon_sym_BSLASHVref] = ACTIONS(12425), + [anon_sym_BSLASHautoref] = ACTIONS(12425), + [anon_sym_BSLASHpageref] = ACTIONS(12425), + [anon_sym_BSLASHcref] = ACTIONS(12425), + [anon_sym_BSLASHCref] = ACTIONS(12425), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnameCref] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHlabelcref] = ACTIONS(12425), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12425), + [anon_sym_BSLASHeqref] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange] = ACTIONS(12425), + [anon_sym_BSLASHCrefrange] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewlabel] = ACTIONS(12425), + [anon_sym_BSLASHnewcommand] = ACTIONS(12425), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12425), + [anon_sym_BSLASHgls] = ACTIONS(12425), + [anon_sym_BSLASHGls] = ACTIONS(12425), + [anon_sym_BSLASHGLS] = ACTIONS(12425), + [anon_sym_BSLASHglspl] = ACTIONS(12425), + [anon_sym_BSLASHGlspl] = ACTIONS(12425), + [anon_sym_BSLASHGLSpl] = ACTIONS(12425), + [anon_sym_BSLASHglsdisp] = ACTIONS(12425), + [anon_sym_BSLASHglslink] = ACTIONS(12425), + [anon_sym_BSLASHglstext] = ACTIONS(12425), + [anon_sym_BSLASHGlstext] = ACTIONS(12425), + [anon_sym_BSLASHGLStext] = ACTIONS(12425), + [anon_sym_BSLASHglsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12425), + [anon_sym_BSLASHglsplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSplural] = ACTIONS(12425), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHglsname] = ACTIONS(12425), + [anon_sym_BSLASHGlsname] = ACTIONS(12425), + [anon_sym_BSLASHGLSname] = ACTIONS(12425), + [anon_sym_BSLASHglssymbol] = ACTIONS(12425), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12425), + [anon_sym_BSLASHglsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12425), + [anon_sym_BSLASHglsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12425), + [anon_sym_BSLASHglsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12425), + [anon_sym_BSLASHglsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12425), + [anon_sym_BSLASHglsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12425), + [anon_sym_BSLASHnewacronym] = ACTIONS(12425), + [anon_sym_BSLASHacrshort] = ACTIONS(12425), + [anon_sym_BSLASHAcrshort] = ACTIONS(12425), + [anon_sym_BSLASHACRshort] = ACTIONS(12425), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12425), + [anon_sym_BSLASHacrlong] = ACTIONS(12425), + [anon_sym_BSLASHAcrlong] = ACTIONS(12425), + [anon_sym_BSLASHACRlong] = ACTIONS(12425), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12425), + [anon_sym_BSLASHacrfull] = ACTIONS(12425), + [anon_sym_BSLASHAcrfull] = ACTIONS(12425), + [anon_sym_BSLASHACRfull] = ACTIONS(12425), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12425), + [anon_sym_BSLASHacs] = ACTIONS(12425), + [anon_sym_BSLASHAcs] = ACTIONS(12425), + [anon_sym_BSLASHacsp] = ACTIONS(12425), + [anon_sym_BSLASHAcsp] = ACTIONS(12425), + [anon_sym_BSLASHacl] = ACTIONS(12425), + [anon_sym_BSLASHAcl] = ACTIONS(12425), + [anon_sym_BSLASHaclp] = ACTIONS(12425), + [anon_sym_BSLASHAclp] = ACTIONS(12425), + [anon_sym_BSLASHacf] = ACTIONS(12425), + [anon_sym_BSLASHAcf] = ACTIONS(12425), + [anon_sym_BSLASHacfp] = ACTIONS(12425), + [anon_sym_BSLASHAcfp] = ACTIONS(12425), + [anon_sym_BSLASHac] = ACTIONS(12425), + [anon_sym_BSLASHAc] = ACTIONS(12425), + [anon_sym_BSLASHacp] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12425), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12425), + [anon_sym_BSLASHcolor] = ACTIONS(12425), + [anon_sym_BSLASHcolorbox] = ACTIONS(12425), + [anon_sym_BSLASHtextcolor] = ACTIONS(12425), + [anon_sym_BSLASHpagecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12425), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12425), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12425), + }, + [578] = { + [ts_builtin_sym_end] = ACTIONS(12427), + [sym_generic_command_name] = ACTIONS(12429), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12429), + [aux_sym_chapter_token1] = ACTIONS(12429), + [aux_sym_section_token1] = ACTIONS(12429), + [aux_sym_subsection_token1] = ACTIONS(12429), + [aux_sym_subsubsection_token1] = ACTIONS(12429), + [aux_sym_paragraph_token1] = ACTIONS(12429), + [aux_sym_subparagraph_token1] = ACTIONS(12429), + [anon_sym_BSLASHitem] = ACTIONS(12429), + [anon_sym_LBRACK] = ACTIONS(12427), + [anon_sym_RBRACK] = ACTIONS(12427), + [anon_sym_LBRACE] = ACTIONS(12427), + [anon_sym_RBRACE] = ACTIONS(12427), + [anon_sym_LPAREN] = ACTIONS(12427), + [anon_sym_RPAREN] = ACTIONS(12427), + [anon_sym_COMMA] = ACTIONS(12427), + [anon_sym_EQ] = ACTIONS(12427), + [sym_word] = ACTIONS(12427), + [sym_param] = ACTIONS(12427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12427), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12427), + [anon_sym_DOLLAR] = ACTIONS(12429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12427), + [anon_sym_BSLASHbegin] = ACTIONS(12429), + [anon_sym_BSLASHcaption] = ACTIONS(12429), + [anon_sym_BSLASHcite] = ACTIONS(12429), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCite] = ACTIONS(12429), + [anon_sym_BSLASHnocite] = ACTIONS(12429), + [anon_sym_BSLASHcitet] = ACTIONS(12429), + [anon_sym_BSLASHcitep] = ACTIONS(12429), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteauthor] = ACTIONS(12429), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12429), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitetitle] = ACTIONS(12429), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteyear] = ACTIONS(12429), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitedate] = ACTIONS(12429), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteurl] = ACTIONS(12429), + [anon_sym_BSLASHfullcite] = ACTIONS(12429), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12429), + [anon_sym_BSLASHcitealt] = ACTIONS(12429), + [anon_sym_BSLASHcitealp] = ACTIONS(12429), + [anon_sym_BSLASHcitetext] = ACTIONS(12429), + [anon_sym_BSLASHparencite] = ACTIONS(12429), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHParencite] = ACTIONS(12429), + [anon_sym_BSLASHfootcite] = ACTIONS(12429), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12429), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12429), + [anon_sym_BSLASHtextcite] = ACTIONS(12429), + [anon_sym_BSLASHTextcite] = ACTIONS(12429), + [anon_sym_BSLASHsmartcite] = ACTIONS(12429), + [anon_sym_BSLASHSmartcite] = ACTIONS(12429), + [anon_sym_BSLASHsupercite] = ACTIONS(12429), + [anon_sym_BSLASHautocite] = ACTIONS(12429), + [anon_sym_BSLASHAutocite] = ACTIONS(12429), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHvolcite] = ACTIONS(12429), + [anon_sym_BSLASHVolcite] = ACTIONS(12429), + [anon_sym_BSLASHpvolcite] = ACTIONS(12429), + [anon_sym_BSLASHPvolcite] = ACTIONS(12429), + [anon_sym_BSLASHfvolcite] = ACTIONS(12429), + [anon_sym_BSLASHftvolcite] = ACTIONS(12429), + [anon_sym_BSLASHsvolcite] = ACTIONS(12429), + [anon_sym_BSLASHSvolcite] = ACTIONS(12429), + [anon_sym_BSLASHtvolcite] = ACTIONS(12429), + [anon_sym_BSLASHTvolcite] = ACTIONS(12429), + [anon_sym_BSLASHavolcite] = ACTIONS(12429), + [anon_sym_BSLASHAvolcite] = ACTIONS(12429), + [anon_sym_BSLASHnotecite] = ACTIONS(12429), + [anon_sym_BSLASHpnotecite] = ACTIONS(12429), + [anon_sym_BSLASHPnotecite] = ACTIONS(12429), + [anon_sym_BSLASHfnotecite] = ACTIONS(12429), + [anon_sym_BSLASHusepackage] = ACTIONS(12429), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12429), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12429), + [anon_sym_BSLASHinclude] = ACTIONS(12429), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12429), + [anon_sym_BSLASHinput] = ACTIONS(12429), + [anon_sym_BSLASHsubfile] = ACTIONS(12429), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12429), + [anon_sym_BSLASHbibliography] = ACTIONS(12429), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12429), + [anon_sym_BSLASHincludesvg] = ACTIONS(12429), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12429), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12429), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12429), + [anon_sym_BSLASHimport] = ACTIONS(12429), + [anon_sym_BSLASHsubimport] = ACTIONS(12429), + [anon_sym_BSLASHinputfrom] = ACTIONS(12429), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12429), + [anon_sym_BSLASHincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHlabel] = ACTIONS(12429), + [anon_sym_BSLASHref] = ACTIONS(12429), + [anon_sym_BSLASHvref] = ACTIONS(12429), + [anon_sym_BSLASHVref] = ACTIONS(12429), + [anon_sym_BSLASHautoref] = ACTIONS(12429), + [anon_sym_BSLASHpageref] = ACTIONS(12429), + [anon_sym_BSLASHcref] = ACTIONS(12429), + [anon_sym_BSLASHCref] = ACTIONS(12429), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnameCref] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHlabelcref] = ACTIONS(12429), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12429), + [anon_sym_BSLASHeqref] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange] = ACTIONS(12429), + [anon_sym_BSLASHCrefrange] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewlabel] = ACTIONS(12429), + [anon_sym_BSLASHnewcommand] = ACTIONS(12429), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12429), + [anon_sym_BSLASHgls] = ACTIONS(12429), + [anon_sym_BSLASHGls] = ACTIONS(12429), + [anon_sym_BSLASHGLS] = ACTIONS(12429), + [anon_sym_BSLASHglspl] = ACTIONS(12429), + [anon_sym_BSLASHGlspl] = ACTIONS(12429), + [anon_sym_BSLASHGLSpl] = ACTIONS(12429), + [anon_sym_BSLASHglsdisp] = ACTIONS(12429), + [anon_sym_BSLASHglslink] = ACTIONS(12429), + [anon_sym_BSLASHglstext] = ACTIONS(12429), + [anon_sym_BSLASHGlstext] = ACTIONS(12429), + [anon_sym_BSLASHGLStext] = ACTIONS(12429), + [anon_sym_BSLASHglsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12429), + [anon_sym_BSLASHglsplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSplural] = ACTIONS(12429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHglsname] = ACTIONS(12429), + [anon_sym_BSLASHGlsname] = ACTIONS(12429), + [anon_sym_BSLASHGLSname] = ACTIONS(12429), + [anon_sym_BSLASHglssymbol] = ACTIONS(12429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12429), + [anon_sym_BSLASHglsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12429), + [anon_sym_BSLASHglsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12429), + [anon_sym_BSLASHglsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12429), + [anon_sym_BSLASHglsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12429), + [anon_sym_BSLASHglsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12429), + [anon_sym_BSLASHnewacronym] = ACTIONS(12429), + [anon_sym_BSLASHacrshort] = ACTIONS(12429), + [anon_sym_BSLASHAcrshort] = ACTIONS(12429), + [anon_sym_BSLASHACRshort] = ACTIONS(12429), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12429), + [anon_sym_BSLASHacrlong] = ACTIONS(12429), + [anon_sym_BSLASHAcrlong] = ACTIONS(12429), + [anon_sym_BSLASHACRlong] = ACTIONS(12429), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12429), + [anon_sym_BSLASHacrfull] = ACTIONS(12429), + [anon_sym_BSLASHAcrfull] = ACTIONS(12429), + [anon_sym_BSLASHACRfull] = ACTIONS(12429), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12429), + [anon_sym_BSLASHacs] = ACTIONS(12429), + [anon_sym_BSLASHAcs] = ACTIONS(12429), + [anon_sym_BSLASHacsp] = ACTIONS(12429), + [anon_sym_BSLASHAcsp] = ACTIONS(12429), + [anon_sym_BSLASHacl] = ACTIONS(12429), + [anon_sym_BSLASHAcl] = ACTIONS(12429), + [anon_sym_BSLASHaclp] = ACTIONS(12429), + [anon_sym_BSLASHAclp] = ACTIONS(12429), + [anon_sym_BSLASHacf] = ACTIONS(12429), + [anon_sym_BSLASHAcf] = ACTIONS(12429), + [anon_sym_BSLASHacfp] = ACTIONS(12429), + [anon_sym_BSLASHAcfp] = ACTIONS(12429), + [anon_sym_BSLASHac] = ACTIONS(12429), + [anon_sym_BSLASHAc] = ACTIONS(12429), + [anon_sym_BSLASHacp] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12429), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12429), + [anon_sym_BSLASHcolor] = ACTIONS(12429), + [anon_sym_BSLASHcolorbox] = ACTIONS(12429), + [anon_sym_BSLASHtextcolor] = ACTIONS(12429), + [anon_sym_BSLASHpagecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12429), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12429), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12429), + }, + [579] = { + [ts_builtin_sym_end] = ACTIONS(12431), + [sym_generic_command_name] = ACTIONS(12433), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12433), + [aux_sym_chapter_token1] = ACTIONS(12433), + [aux_sym_section_token1] = ACTIONS(12433), + [aux_sym_subsection_token1] = ACTIONS(12433), + [aux_sym_subsubsection_token1] = ACTIONS(12433), + [aux_sym_paragraph_token1] = ACTIONS(12433), + [aux_sym_subparagraph_token1] = ACTIONS(12433), + [anon_sym_BSLASHitem] = ACTIONS(12433), + [anon_sym_LBRACK] = ACTIONS(12431), + [anon_sym_RBRACK] = ACTIONS(12431), + [anon_sym_LBRACE] = ACTIONS(12431), + [anon_sym_RBRACE] = ACTIONS(12431), + [anon_sym_LPAREN] = ACTIONS(12431), + [anon_sym_RPAREN] = ACTIONS(12431), + [anon_sym_COMMA] = ACTIONS(12431), + [anon_sym_EQ] = ACTIONS(12431), + [sym_word] = ACTIONS(12431), + [sym_param] = ACTIONS(12431), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12431), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12431), + [anon_sym_DOLLAR] = ACTIONS(12433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12431), + [anon_sym_BSLASHbegin] = ACTIONS(12433), + [anon_sym_BSLASHcaption] = ACTIONS(12433), + [anon_sym_BSLASHcite] = ACTIONS(12433), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCite] = ACTIONS(12433), + [anon_sym_BSLASHnocite] = ACTIONS(12433), + [anon_sym_BSLASHcitet] = ACTIONS(12433), + [anon_sym_BSLASHcitep] = ACTIONS(12433), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteauthor] = ACTIONS(12433), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12433), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitetitle] = ACTIONS(12433), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteyear] = ACTIONS(12433), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitedate] = ACTIONS(12433), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteurl] = ACTIONS(12433), + [anon_sym_BSLASHfullcite] = ACTIONS(12433), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12433), + [anon_sym_BSLASHcitealt] = ACTIONS(12433), + [anon_sym_BSLASHcitealp] = ACTIONS(12433), + [anon_sym_BSLASHcitetext] = ACTIONS(12433), + [anon_sym_BSLASHparencite] = ACTIONS(12433), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHParencite] = ACTIONS(12433), + [anon_sym_BSLASHfootcite] = ACTIONS(12433), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12433), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12433), + [anon_sym_BSLASHtextcite] = ACTIONS(12433), + [anon_sym_BSLASHTextcite] = ACTIONS(12433), + [anon_sym_BSLASHsmartcite] = ACTIONS(12433), + [anon_sym_BSLASHSmartcite] = ACTIONS(12433), + [anon_sym_BSLASHsupercite] = ACTIONS(12433), + [anon_sym_BSLASHautocite] = ACTIONS(12433), + [anon_sym_BSLASHAutocite] = ACTIONS(12433), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHvolcite] = ACTIONS(12433), + [anon_sym_BSLASHVolcite] = ACTIONS(12433), + [anon_sym_BSLASHpvolcite] = ACTIONS(12433), + [anon_sym_BSLASHPvolcite] = ACTIONS(12433), + [anon_sym_BSLASHfvolcite] = ACTIONS(12433), + [anon_sym_BSLASHftvolcite] = ACTIONS(12433), + [anon_sym_BSLASHsvolcite] = ACTIONS(12433), + [anon_sym_BSLASHSvolcite] = ACTIONS(12433), + [anon_sym_BSLASHtvolcite] = ACTIONS(12433), + [anon_sym_BSLASHTvolcite] = ACTIONS(12433), + [anon_sym_BSLASHavolcite] = ACTIONS(12433), + [anon_sym_BSLASHAvolcite] = ACTIONS(12433), + [anon_sym_BSLASHnotecite] = ACTIONS(12433), + [anon_sym_BSLASHpnotecite] = ACTIONS(12433), + [anon_sym_BSLASHPnotecite] = ACTIONS(12433), + [anon_sym_BSLASHfnotecite] = ACTIONS(12433), + [anon_sym_BSLASHusepackage] = ACTIONS(12433), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12433), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12433), + [anon_sym_BSLASHinclude] = ACTIONS(12433), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12433), + [anon_sym_BSLASHinput] = ACTIONS(12433), + [anon_sym_BSLASHsubfile] = ACTIONS(12433), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12433), + [anon_sym_BSLASHbibliography] = ACTIONS(12433), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12433), + [anon_sym_BSLASHincludesvg] = ACTIONS(12433), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12433), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12433), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12433), + [anon_sym_BSLASHimport] = ACTIONS(12433), + [anon_sym_BSLASHsubimport] = ACTIONS(12433), + [anon_sym_BSLASHinputfrom] = ACTIONS(12433), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12433), + [anon_sym_BSLASHincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHlabel] = ACTIONS(12433), + [anon_sym_BSLASHref] = ACTIONS(12433), + [anon_sym_BSLASHvref] = ACTIONS(12433), + [anon_sym_BSLASHVref] = ACTIONS(12433), + [anon_sym_BSLASHautoref] = ACTIONS(12433), + [anon_sym_BSLASHpageref] = ACTIONS(12433), + [anon_sym_BSLASHcref] = ACTIONS(12433), + [anon_sym_BSLASHCref] = ACTIONS(12433), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnameCref] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHlabelcref] = ACTIONS(12433), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12433), + [anon_sym_BSLASHeqref] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange] = ACTIONS(12433), + [anon_sym_BSLASHCrefrange] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewlabel] = ACTIONS(12433), + [anon_sym_BSLASHnewcommand] = ACTIONS(12433), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12433), + [anon_sym_BSLASHgls] = ACTIONS(12433), + [anon_sym_BSLASHGls] = ACTIONS(12433), + [anon_sym_BSLASHGLS] = ACTIONS(12433), + [anon_sym_BSLASHglspl] = ACTIONS(12433), + [anon_sym_BSLASHGlspl] = ACTIONS(12433), + [anon_sym_BSLASHGLSpl] = ACTIONS(12433), + [anon_sym_BSLASHglsdisp] = ACTIONS(12433), + [anon_sym_BSLASHglslink] = ACTIONS(12433), + [anon_sym_BSLASHglstext] = ACTIONS(12433), + [anon_sym_BSLASHGlstext] = ACTIONS(12433), + [anon_sym_BSLASHGLStext] = ACTIONS(12433), + [anon_sym_BSLASHglsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12433), + [anon_sym_BSLASHglsplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSplural] = ACTIONS(12433), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHglsname] = ACTIONS(12433), + [anon_sym_BSLASHGlsname] = ACTIONS(12433), + [anon_sym_BSLASHGLSname] = ACTIONS(12433), + [anon_sym_BSLASHglssymbol] = ACTIONS(12433), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12433), + [anon_sym_BSLASHglsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12433), + [anon_sym_BSLASHglsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12433), + [anon_sym_BSLASHglsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12433), + [anon_sym_BSLASHglsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12433), + [anon_sym_BSLASHglsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12433), + [anon_sym_BSLASHnewacronym] = ACTIONS(12433), + [anon_sym_BSLASHacrshort] = ACTIONS(12433), + [anon_sym_BSLASHAcrshort] = ACTIONS(12433), + [anon_sym_BSLASHACRshort] = ACTIONS(12433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12433), + [anon_sym_BSLASHacrlong] = ACTIONS(12433), + [anon_sym_BSLASHAcrlong] = ACTIONS(12433), + [anon_sym_BSLASHACRlong] = ACTIONS(12433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12433), + [anon_sym_BSLASHacrfull] = ACTIONS(12433), + [anon_sym_BSLASHAcrfull] = ACTIONS(12433), + [anon_sym_BSLASHACRfull] = ACTIONS(12433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12433), + [anon_sym_BSLASHacs] = ACTIONS(12433), + [anon_sym_BSLASHAcs] = ACTIONS(12433), + [anon_sym_BSLASHacsp] = ACTIONS(12433), + [anon_sym_BSLASHAcsp] = ACTIONS(12433), + [anon_sym_BSLASHacl] = ACTIONS(12433), + [anon_sym_BSLASHAcl] = ACTIONS(12433), + [anon_sym_BSLASHaclp] = ACTIONS(12433), + [anon_sym_BSLASHAclp] = ACTIONS(12433), + [anon_sym_BSLASHacf] = ACTIONS(12433), + [anon_sym_BSLASHAcf] = ACTIONS(12433), + [anon_sym_BSLASHacfp] = ACTIONS(12433), + [anon_sym_BSLASHAcfp] = ACTIONS(12433), + [anon_sym_BSLASHac] = ACTIONS(12433), + [anon_sym_BSLASHAc] = ACTIONS(12433), + [anon_sym_BSLASHacp] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12433), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12433), + [anon_sym_BSLASHcolor] = ACTIONS(12433), + [anon_sym_BSLASHcolorbox] = ACTIONS(12433), + [anon_sym_BSLASHtextcolor] = ACTIONS(12433), + [anon_sym_BSLASHpagecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12433), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12433), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12433), + }, + [580] = { + [ts_builtin_sym_end] = ACTIONS(12435), + [sym_generic_command_name] = ACTIONS(12437), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12437), + [aux_sym_chapter_token1] = ACTIONS(12437), + [aux_sym_section_token1] = ACTIONS(12437), + [aux_sym_subsection_token1] = ACTIONS(12437), + [aux_sym_subsubsection_token1] = ACTIONS(12437), + [aux_sym_paragraph_token1] = ACTIONS(12437), + [aux_sym_subparagraph_token1] = ACTIONS(12437), + [anon_sym_BSLASHitem] = ACTIONS(12437), + [anon_sym_LBRACK] = ACTIONS(12435), + [anon_sym_RBRACK] = ACTIONS(12435), + [anon_sym_LBRACE] = ACTIONS(12435), + [anon_sym_RBRACE] = ACTIONS(12435), + [anon_sym_LPAREN] = ACTIONS(12435), + [anon_sym_RPAREN] = ACTIONS(12435), + [anon_sym_COMMA] = ACTIONS(12435), + [anon_sym_EQ] = ACTIONS(12435), + [sym_word] = ACTIONS(12435), + [sym_param] = ACTIONS(12435), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12435), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12435), + [anon_sym_DOLLAR] = ACTIONS(12437), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12435), + [anon_sym_BSLASHbegin] = ACTIONS(12437), + [anon_sym_BSLASHcaption] = ACTIONS(12437), + [anon_sym_BSLASHcite] = ACTIONS(12437), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCite] = ACTIONS(12437), + [anon_sym_BSLASHnocite] = ACTIONS(12437), + [anon_sym_BSLASHcitet] = ACTIONS(12437), + [anon_sym_BSLASHcitep] = ACTIONS(12437), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteauthor] = ACTIONS(12437), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12437), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitetitle] = ACTIONS(12437), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteyear] = ACTIONS(12437), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitedate] = ACTIONS(12437), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteurl] = ACTIONS(12437), + [anon_sym_BSLASHfullcite] = ACTIONS(12437), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12437), + [anon_sym_BSLASHcitealt] = ACTIONS(12437), + [anon_sym_BSLASHcitealp] = ACTIONS(12437), + [anon_sym_BSLASHcitetext] = ACTIONS(12437), + [anon_sym_BSLASHparencite] = ACTIONS(12437), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHParencite] = ACTIONS(12437), + [anon_sym_BSLASHfootcite] = ACTIONS(12437), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12437), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12437), + [anon_sym_BSLASHtextcite] = ACTIONS(12437), + [anon_sym_BSLASHTextcite] = ACTIONS(12437), + [anon_sym_BSLASHsmartcite] = ACTIONS(12437), + [anon_sym_BSLASHSmartcite] = ACTIONS(12437), + [anon_sym_BSLASHsupercite] = ACTIONS(12437), + [anon_sym_BSLASHautocite] = ACTIONS(12437), + [anon_sym_BSLASHAutocite] = ACTIONS(12437), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHvolcite] = ACTIONS(12437), + [anon_sym_BSLASHVolcite] = ACTIONS(12437), + [anon_sym_BSLASHpvolcite] = ACTIONS(12437), + [anon_sym_BSLASHPvolcite] = ACTIONS(12437), + [anon_sym_BSLASHfvolcite] = ACTIONS(12437), + [anon_sym_BSLASHftvolcite] = ACTIONS(12437), + [anon_sym_BSLASHsvolcite] = ACTIONS(12437), + [anon_sym_BSLASHSvolcite] = ACTIONS(12437), + [anon_sym_BSLASHtvolcite] = ACTIONS(12437), + [anon_sym_BSLASHTvolcite] = ACTIONS(12437), + [anon_sym_BSLASHavolcite] = ACTIONS(12437), + [anon_sym_BSLASHAvolcite] = ACTIONS(12437), + [anon_sym_BSLASHnotecite] = ACTIONS(12437), + [anon_sym_BSLASHpnotecite] = ACTIONS(12437), + [anon_sym_BSLASHPnotecite] = ACTIONS(12437), + [anon_sym_BSLASHfnotecite] = ACTIONS(12437), + [anon_sym_BSLASHusepackage] = ACTIONS(12437), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12437), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12437), + [anon_sym_BSLASHinclude] = ACTIONS(12437), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12437), + [anon_sym_BSLASHinput] = ACTIONS(12437), + [anon_sym_BSLASHsubfile] = ACTIONS(12437), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12437), + [anon_sym_BSLASHbibliography] = ACTIONS(12437), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12437), + [anon_sym_BSLASHincludesvg] = ACTIONS(12437), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12437), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12437), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12437), + [anon_sym_BSLASHimport] = ACTIONS(12437), + [anon_sym_BSLASHsubimport] = ACTIONS(12437), + [anon_sym_BSLASHinputfrom] = ACTIONS(12437), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12437), + [anon_sym_BSLASHincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHlabel] = ACTIONS(12437), + [anon_sym_BSLASHref] = ACTIONS(12437), + [anon_sym_BSLASHvref] = ACTIONS(12437), + [anon_sym_BSLASHVref] = ACTIONS(12437), + [anon_sym_BSLASHautoref] = ACTIONS(12437), + [anon_sym_BSLASHpageref] = ACTIONS(12437), + [anon_sym_BSLASHcref] = ACTIONS(12437), + [anon_sym_BSLASHCref] = ACTIONS(12437), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnameCref] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHlabelcref] = ACTIONS(12437), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12437), + [anon_sym_BSLASHeqref] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange] = ACTIONS(12437), + [anon_sym_BSLASHCrefrange] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewlabel] = ACTIONS(12437), + [anon_sym_BSLASHnewcommand] = ACTIONS(12437), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12437), + [anon_sym_BSLASHgls] = ACTIONS(12437), + [anon_sym_BSLASHGls] = ACTIONS(12437), + [anon_sym_BSLASHGLS] = ACTIONS(12437), + [anon_sym_BSLASHglspl] = ACTIONS(12437), + [anon_sym_BSLASHGlspl] = ACTIONS(12437), + [anon_sym_BSLASHGLSpl] = ACTIONS(12437), + [anon_sym_BSLASHglsdisp] = ACTIONS(12437), + [anon_sym_BSLASHglslink] = ACTIONS(12437), + [anon_sym_BSLASHglstext] = ACTIONS(12437), + [anon_sym_BSLASHGlstext] = ACTIONS(12437), + [anon_sym_BSLASHGLStext] = ACTIONS(12437), + [anon_sym_BSLASHglsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12437), + [anon_sym_BSLASHglsplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSplural] = ACTIONS(12437), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHglsname] = ACTIONS(12437), + [anon_sym_BSLASHGlsname] = ACTIONS(12437), + [anon_sym_BSLASHGLSname] = ACTIONS(12437), + [anon_sym_BSLASHglssymbol] = ACTIONS(12437), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12437), + [anon_sym_BSLASHglsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12437), + [anon_sym_BSLASHglsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12437), + [anon_sym_BSLASHglsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12437), + [anon_sym_BSLASHglsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12437), + [anon_sym_BSLASHglsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12437), + [anon_sym_BSLASHnewacronym] = ACTIONS(12437), + [anon_sym_BSLASHacrshort] = ACTIONS(12437), + [anon_sym_BSLASHAcrshort] = ACTIONS(12437), + [anon_sym_BSLASHACRshort] = ACTIONS(12437), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12437), + [anon_sym_BSLASHacrlong] = ACTIONS(12437), + [anon_sym_BSLASHAcrlong] = ACTIONS(12437), + [anon_sym_BSLASHACRlong] = ACTIONS(12437), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12437), + [anon_sym_BSLASHacrfull] = ACTIONS(12437), + [anon_sym_BSLASHAcrfull] = ACTIONS(12437), + [anon_sym_BSLASHACRfull] = ACTIONS(12437), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12437), + [anon_sym_BSLASHacs] = ACTIONS(12437), + [anon_sym_BSLASHAcs] = ACTIONS(12437), + [anon_sym_BSLASHacsp] = ACTIONS(12437), + [anon_sym_BSLASHAcsp] = ACTIONS(12437), + [anon_sym_BSLASHacl] = ACTIONS(12437), + [anon_sym_BSLASHAcl] = ACTIONS(12437), + [anon_sym_BSLASHaclp] = ACTIONS(12437), + [anon_sym_BSLASHAclp] = ACTIONS(12437), + [anon_sym_BSLASHacf] = ACTIONS(12437), + [anon_sym_BSLASHAcf] = ACTIONS(12437), + [anon_sym_BSLASHacfp] = ACTIONS(12437), + [anon_sym_BSLASHAcfp] = ACTIONS(12437), + [anon_sym_BSLASHac] = ACTIONS(12437), + [anon_sym_BSLASHAc] = ACTIONS(12437), + [anon_sym_BSLASHacp] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12437), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12437), + [anon_sym_BSLASHcolor] = ACTIONS(12437), + [anon_sym_BSLASHcolorbox] = ACTIONS(12437), + [anon_sym_BSLASHtextcolor] = ACTIONS(12437), + [anon_sym_BSLASHpagecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12437), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12437), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12437), + }, + [581] = { + [ts_builtin_sym_end] = ACTIONS(12439), + [sym_generic_command_name] = ACTIONS(12441), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12441), + [aux_sym_chapter_token1] = ACTIONS(12441), + [aux_sym_section_token1] = ACTIONS(12441), + [aux_sym_subsection_token1] = ACTIONS(12441), + [aux_sym_subsubsection_token1] = ACTIONS(12441), + [aux_sym_paragraph_token1] = ACTIONS(12441), + [aux_sym_subparagraph_token1] = ACTIONS(12441), + [anon_sym_BSLASHitem] = ACTIONS(12441), + [anon_sym_LBRACK] = ACTIONS(12439), + [anon_sym_RBRACK] = ACTIONS(12439), + [anon_sym_LBRACE] = ACTIONS(12439), + [anon_sym_RBRACE] = ACTIONS(12439), + [anon_sym_LPAREN] = ACTIONS(12439), + [anon_sym_RPAREN] = ACTIONS(12439), + [anon_sym_COMMA] = ACTIONS(12439), + [anon_sym_EQ] = ACTIONS(12439), + [sym_word] = ACTIONS(12439), + [sym_param] = ACTIONS(12439), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12439), + [anon_sym_DOLLAR] = ACTIONS(12441), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12439), + [anon_sym_BSLASHbegin] = ACTIONS(12441), + [anon_sym_BSLASHcaption] = ACTIONS(12441), + [anon_sym_BSLASHcite] = ACTIONS(12441), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCite] = ACTIONS(12441), + [anon_sym_BSLASHnocite] = ACTIONS(12441), + [anon_sym_BSLASHcitet] = ACTIONS(12441), + [anon_sym_BSLASHcitep] = ACTIONS(12441), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteauthor] = ACTIONS(12441), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12441), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitetitle] = ACTIONS(12441), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteyear] = ACTIONS(12441), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitedate] = ACTIONS(12441), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteurl] = ACTIONS(12441), + [anon_sym_BSLASHfullcite] = ACTIONS(12441), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12441), + [anon_sym_BSLASHcitealt] = ACTIONS(12441), + [anon_sym_BSLASHcitealp] = ACTIONS(12441), + [anon_sym_BSLASHcitetext] = ACTIONS(12441), + [anon_sym_BSLASHparencite] = ACTIONS(12441), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHParencite] = ACTIONS(12441), + [anon_sym_BSLASHfootcite] = ACTIONS(12441), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12441), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12441), + [anon_sym_BSLASHtextcite] = ACTIONS(12441), + [anon_sym_BSLASHTextcite] = ACTIONS(12441), + [anon_sym_BSLASHsmartcite] = ACTIONS(12441), + [anon_sym_BSLASHSmartcite] = ACTIONS(12441), + [anon_sym_BSLASHsupercite] = ACTIONS(12441), + [anon_sym_BSLASHautocite] = ACTIONS(12441), + [anon_sym_BSLASHAutocite] = ACTIONS(12441), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHvolcite] = ACTIONS(12441), + [anon_sym_BSLASHVolcite] = ACTIONS(12441), + [anon_sym_BSLASHpvolcite] = ACTIONS(12441), + [anon_sym_BSLASHPvolcite] = ACTIONS(12441), + [anon_sym_BSLASHfvolcite] = ACTIONS(12441), + [anon_sym_BSLASHftvolcite] = ACTIONS(12441), + [anon_sym_BSLASHsvolcite] = ACTIONS(12441), + [anon_sym_BSLASHSvolcite] = ACTIONS(12441), + [anon_sym_BSLASHtvolcite] = ACTIONS(12441), + [anon_sym_BSLASHTvolcite] = ACTIONS(12441), + [anon_sym_BSLASHavolcite] = ACTIONS(12441), + [anon_sym_BSLASHAvolcite] = ACTIONS(12441), + [anon_sym_BSLASHnotecite] = ACTIONS(12441), + [anon_sym_BSLASHpnotecite] = ACTIONS(12441), + [anon_sym_BSLASHPnotecite] = ACTIONS(12441), + [anon_sym_BSLASHfnotecite] = ACTIONS(12441), + [anon_sym_BSLASHusepackage] = ACTIONS(12441), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12441), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12441), + [anon_sym_BSLASHinclude] = ACTIONS(12441), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12441), + [anon_sym_BSLASHinput] = ACTIONS(12441), + [anon_sym_BSLASHsubfile] = ACTIONS(12441), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12441), + [anon_sym_BSLASHbibliography] = ACTIONS(12441), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12441), + [anon_sym_BSLASHincludesvg] = ACTIONS(12441), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12441), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12441), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12441), + [anon_sym_BSLASHimport] = ACTIONS(12441), + [anon_sym_BSLASHsubimport] = ACTIONS(12441), + [anon_sym_BSLASHinputfrom] = ACTIONS(12441), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12441), + [anon_sym_BSLASHincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHlabel] = ACTIONS(12441), + [anon_sym_BSLASHref] = ACTIONS(12441), + [anon_sym_BSLASHvref] = ACTIONS(12441), + [anon_sym_BSLASHVref] = ACTIONS(12441), + [anon_sym_BSLASHautoref] = ACTIONS(12441), + [anon_sym_BSLASHpageref] = ACTIONS(12441), + [anon_sym_BSLASHcref] = ACTIONS(12441), + [anon_sym_BSLASHCref] = ACTIONS(12441), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnameCref] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHlabelcref] = ACTIONS(12441), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12441), + [anon_sym_BSLASHeqref] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange] = ACTIONS(12441), + [anon_sym_BSLASHCrefrange] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewlabel] = ACTIONS(12441), + [anon_sym_BSLASHnewcommand] = ACTIONS(12441), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12441), + [anon_sym_BSLASHgls] = ACTIONS(12441), + [anon_sym_BSLASHGls] = ACTIONS(12441), + [anon_sym_BSLASHGLS] = ACTIONS(12441), + [anon_sym_BSLASHglspl] = ACTIONS(12441), + [anon_sym_BSLASHGlspl] = ACTIONS(12441), + [anon_sym_BSLASHGLSpl] = ACTIONS(12441), + [anon_sym_BSLASHglsdisp] = ACTIONS(12441), + [anon_sym_BSLASHglslink] = ACTIONS(12441), + [anon_sym_BSLASHglstext] = ACTIONS(12441), + [anon_sym_BSLASHGlstext] = ACTIONS(12441), + [anon_sym_BSLASHGLStext] = ACTIONS(12441), + [anon_sym_BSLASHglsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12441), + [anon_sym_BSLASHglsplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSplural] = ACTIONS(12441), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHglsname] = ACTIONS(12441), + [anon_sym_BSLASHGlsname] = ACTIONS(12441), + [anon_sym_BSLASHGLSname] = ACTIONS(12441), + [anon_sym_BSLASHglssymbol] = ACTIONS(12441), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12441), + [anon_sym_BSLASHglsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12441), + [anon_sym_BSLASHglsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12441), + [anon_sym_BSLASHglsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12441), + [anon_sym_BSLASHglsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12441), + [anon_sym_BSLASHglsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12441), + [anon_sym_BSLASHnewacronym] = ACTIONS(12441), + [anon_sym_BSLASHacrshort] = ACTIONS(12441), + [anon_sym_BSLASHAcrshort] = ACTIONS(12441), + [anon_sym_BSLASHACRshort] = ACTIONS(12441), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12441), + [anon_sym_BSLASHacrlong] = ACTIONS(12441), + [anon_sym_BSLASHAcrlong] = ACTIONS(12441), + [anon_sym_BSLASHACRlong] = ACTIONS(12441), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12441), + [anon_sym_BSLASHacrfull] = ACTIONS(12441), + [anon_sym_BSLASHAcrfull] = ACTIONS(12441), + [anon_sym_BSLASHACRfull] = ACTIONS(12441), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12441), + [anon_sym_BSLASHacs] = ACTIONS(12441), + [anon_sym_BSLASHAcs] = ACTIONS(12441), + [anon_sym_BSLASHacsp] = ACTIONS(12441), + [anon_sym_BSLASHAcsp] = ACTIONS(12441), + [anon_sym_BSLASHacl] = ACTIONS(12441), + [anon_sym_BSLASHAcl] = ACTIONS(12441), + [anon_sym_BSLASHaclp] = ACTIONS(12441), + [anon_sym_BSLASHAclp] = ACTIONS(12441), + [anon_sym_BSLASHacf] = ACTIONS(12441), + [anon_sym_BSLASHAcf] = ACTIONS(12441), + [anon_sym_BSLASHacfp] = ACTIONS(12441), + [anon_sym_BSLASHAcfp] = ACTIONS(12441), + [anon_sym_BSLASHac] = ACTIONS(12441), + [anon_sym_BSLASHAc] = ACTIONS(12441), + [anon_sym_BSLASHacp] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12441), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12441), + [anon_sym_BSLASHcolor] = ACTIONS(12441), + [anon_sym_BSLASHcolorbox] = ACTIONS(12441), + [anon_sym_BSLASHtextcolor] = ACTIONS(12441), + [anon_sym_BSLASHpagecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12441), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12441), + }, + [582] = { + [ts_builtin_sym_end] = ACTIONS(12443), + [sym_generic_command_name] = ACTIONS(12445), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12445), + [aux_sym_chapter_token1] = ACTIONS(12445), + [aux_sym_section_token1] = ACTIONS(12445), + [aux_sym_subsection_token1] = ACTIONS(12445), + [aux_sym_subsubsection_token1] = ACTIONS(12445), + [aux_sym_paragraph_token1] = ACTIONS(12445), + [aux_sym_subparagraph_token1] = ACTIONS(12445), + [anon_sym_BSLASHitem] = ACTIONS(12445), + [anon_sym_LBRACK] = ACTIONS(12443), + [anon_sym_RBRACK] = ACTIONS(12443), + [anon_sym_LBRACE] = ACTIONS(12443), + [anon_sym_RBRACE] = ACTIONS(12443), + [anon_sym_LPAREN] = ACTIONS(12443), + [anon_sym_RPAREN] = ACTIONS(12443), + [anon_sym_COMMA] = ACTIONS(12443), + [anon_sym_EQ] = ACTIONS(12443), + [sym_word] = ACTIONS(12443), + [sym_param] = ACTIONS(12443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12443), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12443), + [anon_sym_DOLLAR] = ACTIONS(12445), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12443), + [anon_sym_BSLASHbegin] = ACTIONS(12445), + [anon_sym_BSLASHcaption] = ACTIONS(12445), + [anon_sym_BSLASHcite] = ACTIONS(12445), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCite] = ACTIONS(12445), + [anon_sym_BSLASHnocite] = ACTIONS(12445), + [anon_sym_BSLASHcitet] = ACTIONS(12445), + [anon_sym_BSLASHcitep] = ACTIONS(12445), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteauthor] = ACTIONS(12445), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12445), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitetitle] = ACTIONS(12445), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteyear] = ACTIONS(12445), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitedate] = ACTIONS(12445), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteurl] = ACTIONS(12445), + [anon_sym_BSLASHfullcite] = ACTIONS(12445), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12445), + [anon_sym_BSLASHcitealt] = ACTIONS(12445), + [anon_sym_BSLASHcitealp] = ACTIONS(12445), + [anon_sym_BSLASHcitetext] = ACTIONS(12445), + [anon_sym_BSLASHparencite] = ACTIONS(12445), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHParencite] = ACTIONS(12445), + [anon_sym_BSLASHfootcite] = ACTIONS(12445), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12445), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12445), + [anon_sym_BSLASHtextcite] = ACTIONS(12445), + [anon_sym_BSLASHTextcite] = ACTIONS(12445), + [anon_sym_BSLASHsmartcite] = ACTIONS(12445), + [anon_sym_BSLASHSmartcite] = ACTIONS(12445), + [anon_sym_BSLASHsupercite] = ACTIONS(12445), + [anon_sym_BSLASHautocite] = ACTIONS(12445), + [anon_sym_BSLASHAutocite] = ACTIONS(12445), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHvolcite] = ACTIONS(12445), + [anon_sym_BSLASHVolcite] = ACTIONS(12445), + [anon_sym_BSLASHpvolcite] = ACTIONS(12445), + [anon_sym_BSLASHPvolcite] = ACTIONS(12445), + [anon_sym_BSLASHfvolcite] = ACTIONS(12445), + [anon_sym_BSLASHftvolcite] = ACTIONS(12445), + [anon_sym_BSLASHsvolcite] = ACTIONS(12445), + [anon_sym_BSLASHSvolcite] = ACTIONS(12445), + [anon_sym_BSLASHtvolcite] = ACTIONS(12445), + [anon_sym_BSLASHTvolcite] = ACTIONS(12445), + [anon_sym_BSLASHavolcite] = ACTIONS(12445), + [anon_sym_BSLASHAvolcite] = ACTIONS(12445), + [anon_sym_BSLASHnotecite] = ACTIONS(12445), + [anon_sym_BSLASHpnotecite] = ACTIONS(12445), + [anon_sym_BSLASHPnotecite] = ACTIONS(12445), + [anon_sym_BSLASHfnotecite] = ACTIONS(12445), + [anon_sym_BSLASHusepackage] = ACTIONS(12445), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12445), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12445), + [anon_sym_BSLASHinclude] = ACTIONS(12445), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12445), + [anon_sym_BSLASHinput] = ACTIONS(12445), + [anon_sym_BSLASHsubfile] = ACTIONS(12445), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12445), + [anon_sym_BSLASHbibliography] = ACTIONS(12445), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12445), + [anon_sym_BSLASHincludesvg] = ACTIONS(12445), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12445), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12445), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12445), + [anon_sym_BSLASHimport] = ACTIONS(12445), + [anon_sym_BSLASHsubimport] = ACTIONS(12445), + [anon_sym_BSLASHinputfrom] = ACTIONS(12445), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12445), + [anon_sym_BSLASHincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHlabel] = ACTIONS(12445), + [anon_sym_BSLASHref] = ACTIONS(12445), + [anon_sym_BSLASHvref] = ACTIONS(12445), + [anon_sym_BSLASHVref] = ACTIONS(12445), + [anon_sym_BSLASHautoref] = ACTIONS(12445), + [anon_sym_BSLASHpageref] = ACTIONS(12445), + [anon_sym_BSLASHcref] = ACTIONS(12445), + [anon_sym_BSLASHCref] = ACTIONS(12445), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnameCref] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHlabelcref] = ACTIONS(12445), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12445), + [anon_sym_BSLASHeqref] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange] = ACTIONS(12445), + [anon_sym_BSLASHCrefrange] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewlabel] = ACTIONS(12445), + [anon_sym_BSLASHnewcommand] = ACTIONS(12445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12445), + [anon_sym_BSLASHgls] = ACTIONS(12445), + [anon_sym_BSLASHGls] = ACTIONS(12445), + [anon_sym_BSLASHGLS] = ACTIONS(12445), + [anon_sym_BSLASHglspl] = ACTIONS(12445), + [anon_sym_BSLASHGlspl] = ACTIONS(12445), + [anon_sym_BSLASHGLSpl] = ACTIONS(12445), + [anon_sym_BSLASHglsdisp] = ACTIONS(12445), + [anon_sym_BSLASHglslink] = ACTIONS(12445), + [anon_sym_BSLASHglstext] = ACTIONS(12445), + [anon_sym_BSLASHGlstext] = ACTIONS(12445), + [anon_sym_BSLASHGLStext] = ACTIONS(12445), + [anon_sym_BSLASHglsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12445), + [anon_sym_BSLASHglsplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSplural] = ACTIONS(12445), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHglsname] = ACTIONS(12445), + [anon_sym_BSLASHGlsname] = ACTIONS(12445), + [anon_sym_BSLASHGLSname] = ACTIONS(12445), + [anon_sym_BSLASHglssymbol] = ACTIONS(12445), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12445), + [anon_sym_BSLASHglsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12445), + [anon_sym_BSLASHglsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12445), + [anon_sym_BSLASHglsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12445), + [anon_sym_BSLASHglsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12445), + [anon_sym_BSLASHglsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12445), + [anon_sym_BSLASHnewacronym] = ACTIONS(12445), + [anon_sym_BSLASHacrshort] = ACTIONS(12445), + [anon_sym_BSLASHAcrshort] = ACTIONS(12445), + [anon_sym_BSLASHACRshort] = ACTIONS(12445), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12445), + [anon_sym_BSLASHacrlong] = ACTIONS(12445), + [anon_sym_BSLASHAcrlong] = ACTIONS(12445), + [anon_sym_BSLASHACRlong] = ACTIONS(12445), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12445), + [anon_sym_BSLASHacrfull] = ACTIONS(12445), + [anon_sym_BSLASHAcrfull] = ACTIONS(12445), + [anon_sym_BSLASHACRfull] = ACTIONS(12445), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12445), + [anon_sym_BSLASHacs] = ACTIONS(12445), + [anon_sym_BSLASHAcs] = ACTIONS(12445), + [anon_sym_BSLASHacsp] = ACTIONS(12445), + [anon_sym_BSLASHAcsp] = ACTIONS(12445), + [anon_sym_BSLASHacl] = ACTIONS(12445), + [anon_sym_BSLASHAcl] = ACTIONS(12445), + [anon_sym_BSLASHaclp] = ACTIONS(12445), + [anon_sym_BSLASHAclp] = ACTIONS(12445), + [anon_sym_BSLASHacf] = ACTIONS(12445), + [anon_sym_BSLASHAcf] = ACTIONS(12445), + [anon_sym_BSLASHacfp] = ACTIONS(12445), + [anon_sym_BSLASHAcfp] = ACTIONS(12445), + [anon_sym_BSLASHac] = ACTIONS(12445), + [anon_sym_BSLASHAc] = ACTIONS(12445), + [anon_sym_BSLASHacp] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12445), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12445), + [anon_sym_BSLASHcolor] = ACTIONS(12445), + [anon_sym_BSLASHcolorbox] = ACTIONS(12445), + [anon_sym_BSLASHtextcolor] = ACTIONS(12445), + [anon_sym_BSLASHpagecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12445), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12445), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12445), + }, + [583] = { + [ts_builtin_sym_end] = ACTIONS(12447), + [sym_generic_command_name] = ACTIONS(12449), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12449), + [aux_sym_chapter_token1] = ACTIONS(12449), + [aux_sym_section_token1] = ACTIONS(12449), + [aux_sym_subsection_token1] = ACTIONS(12449), + [aux_sym_subsubsection_token1] = ACTIONS(12449), + [aux_sym_paragraph_token1] = ACTIONS(12449), + [aux_sym_subparagraph_token1] = ACTIONS(12449), + [anon_sym_BSLASHitem] = ACTIONS(12449), + [anon_sym_LBRACK] = ACTIONS(12447), + [anon_sym_RBRACK] = ACTIONS(12447), + [anon_sym_LBRACE] = ACTIONS(12447), + [anon_sym_RBRACE] = ACTIONS(12447), + [anon_sym_LPAREN] = ACTIONS(12447), + [anon_sym_RPAREN] = ACTIONS(12447), + [anon_sym_COMMA] = ACTIONS(12447), + [anon_sym_EQ] = ACTIONS(12447), + [sym_word] = ACTIONS(12447), + [sym_param] = ACTIONS(12447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12447), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12447), + [anon_sym_DOLLAR] = ACTIONS(12449), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12447), + [anon_sym_BSLASHbegin] = ACTIONS(12449), + [anon_sym_BSLASHcaption] = ACTIONS(12449), + [anon_sym_BSLASHcite] = ACTIONS(12449), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCite] = ACTIONS(12449), + [anon_sym_BSLASHnocite] = ACTIONS(12449), + [anon_sym_BSLASHcitet] = ACTIONS(12449), + [anon_sym_BSLASHcitep] = ACTIONS(12449), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteauthor] = ACTIONS(12449), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12449), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitetitle] = ACTIONS(12449), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteyear] = ACTIONS(12449), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitedate] = ACTIONS(12449), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteurl] = ACTIONS(12449), + [anon_sym_BSLASHfullcite] = ACTIONS(12449), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12449), + [anon_sym_BSLASHcitealt] = ACTIONS(12449), + [anon_sym_BSLASHcitealp] = ACTIONS(12449), + [anon_sym_BSLASHcitetext] = ACTIONS(12449), + [anon_sym_BSLASHparencite] = ACTIONS(12449), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHParencite] = ACTIONS(12449), + [anon_sym_BSLASHfootcite] = ACTIONS(12449), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12449), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12449), + [anon_sym_BSLASHtextcite] = ACTIONS(12449), + [anon_sym_BSLASHTextcite] = ACTIONS(12449), + [anon_sym_BSLASHsmartcite] = ACTIONS(12449), + [anon_sym_BSLASHSmartcite] = ACTIONS(12449), + [anon_sym_BSLASHsupercite] = ACTIONS(12449), + [anon_sym_BSLASHautocite] = ACTIONS(12449), + [anon_sym_BSLASHAutocite] = ACTIONS(12449), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHvolcite] = ACTIONS(12449), + [anon_sym_BSLASHVolcite] = ACTIONS(12449), + [anon_sym_BSLASHpvolcite] = ACTIONS(12449), + [anon_sym_BSLASHPvolcite] = ACTIONS(12449), + [anon_sym_BSLASHfvolcite] = ACTIONS(12449), + [anon_sym_BSLASHftvolcite] = ACTIONS(12449), + [anon_sym_BSLASHsvolcite] = ACTIONS(12449), + [anon_sym_BSLASHSvolcite] = ACTIONS(12449), + [anon_sym_BSLASHtvolcite] = ACTIONS(12449), + [anon_sym_BSLASHTvolcite] = ACTIONS(12449), + [anon_sym_BSLASHavolcite] = ACTIONS(12449), + [anon_sym_BSLASHAvolcite] = ACTIONS(12449), + [anon_sym_BSLASHnotecite] = ACTIONS(12449), + [anon_sym_BSLASHpnotecite] = ACTIONS(12449), + [anon_sym_BSLASHPnotecite] = ACTIONS(12449), + [anon_sym_BSLASHfnotecite] = ACTIONS(12449), + [anon_sym_BSLASHusepackage] = ACTIONS(12449), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12449), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12449), + [anon_sym_BSLASHinclude] = ACTIONS(12449), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12449), + [anon_sym_BSLASHinput] = ACTIONS(12449), + [anon_sym_BSLASHsubfile] = ACTIONS(12449), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12449), + [anon_sym_BSLASHbibliography] = ACTIONS(12449), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12449), + [anon_sym_BSLASHincludesvg] = ACTIONS(12449), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12449), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12449), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12449), + [anon_sym_BSLASHimport] = ACTIONS(12449), + [anon_sym_BSLASHsubimport] = ACTIONS(12449), + [anon_sym_BSLASHinputfrom] = ACTIONS(12449), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12449), + [anon_sym_BSLASHincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHlabel] = ACTIONS(12449), + [anon_sym_BSLASHref] = ACTIONS(12449), + [anon_sym_BSLASHvref] = ACTIONS(12449), + [anon_sym_BSLASHVref] = ACTIONS(12449), + [anon_sym_BSLASHautoref] = ACTIONS(12449), + [anon_sym_BSLASHpageref] = ACTIONS(12449), + [anon_sym_BSLASHcref] = ACTIONS(12449), + [anon_sym_BSLASHCref] = ACTIONS(12449), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnameCref] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHlabelcref] = ACTIONS(12449), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12449), + [anon_sym_BSLASHeqref] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange] = ACTIONS(12449), + [anon_sym_BSLASHCrefrange] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewlabel] = ACTIONS(12449), + [anon_sym_BSLASHnewcommand] = ACTIONS(12449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12449), + [anon_sym_BSLASHgls] = ACTIONS(12449), + [anon_sym_BSLASHGls] = ACTIONS(12449), + [anon_sym_BSLASHGLS] = ACTIONS(12449), + [anon_sym_BSLASHglspl] = ACTIONS(12449), + [anon_sym_BSLASHGlspl] = ACTIONS(12449), + [anon_sym_BSLASHGLSpl] = ACTIONS(12449), + [anon_sym_BSLASHglsdisp] = ACTIONS(12449), + [anon_sym_BSLASHglslink] = ACTIONS(12449), + [anon_sym_BSLASHglstext] = ACTIONS(12449), + [anon_sym_BSLASHGlstext] = ACTIONS(12449), + [anon_sym_BSLASHGLStext] = ACTIONS(12449), + [anon_sym_BSLASHglsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12449), + [anon_sym_BSLASHglsplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSplural] = ACTIONS(12449), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHglsname] = ACTIONS(12449), + [anon_sym_BSLASHGlsname] = ACTIONS(12449), + [anon_sym_BSLASHGLSname] = ACTIONS(12449), + [anon_sym_BSLASHglssymbol] = ACTIONS(12449), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12449), + [anon_sym_BSLASHglsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12449), + [anon_sym_BSLASHglsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12449), + [anon_sym_BSLASHglsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12449), + [anon_sym_BSLASHglsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12449), + [anon_sym_BSLASHglsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12449), + [anon_sym_BSLASHnewacronym] = ACTIONS(12449), + [anon_sym_BSLASHacrshort] = ACTIONS(12449), + [anon_sym_BSLASHAcrshort] = ACTIONS(12449), + [anon_sym_BSLASHACRshort] = ACTIONS(12449), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12449), + [anon_sym_BSLASHacrlong] = ACTIONS(12449), + [anon_sym_BSLASHAcrlong] = ACTIONS(12449), + [anon_sym_BSLASHACRlong] = ACTIONS(12449), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12449), + [anon_sym_BSLASHacrfull] = ACTIONS(12449), + [anon_sym_BSLASHAcrfull] = ACTIONS(12449), + [anon_sym_BSLASHACRfull] = ACTIONS(12449), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12449), + [anon_sym_BSLASHacs] = ACTIONS(12449), + [anon_sym_BSLASHAcs] = ACTIONS(12449), + [anon_sym_BSLASHacsp] = ACTIONS(12449), + [anon_sym_BSLASHAcsp] = ACTIONS(12449), + [anon_sym_BSLASHacl] = ACTIONS(12449), + [anon_sym_BSLASHAcl] = ACTIONS(12449), + [anon_sym_BSLASHaclp] = ACTIONS(12449), + [anon_sym_BSLASHAclp] = ACTIONS(12449), + [anon_sym_BSLASHacf] = ACTIONS(12449), + [anon_sym_BSLASHAcf] = ACTIONS(12449), + [anon_sym_BSLASHacfp] = ACTIONS(12449), + [anon_sym_BSLASHAcfp] = ACTIONS(12449), + [anon_sym_BSLASHac] = ACTIONS(12449), + [anon_sym_BSLASHAc] = ACTIONS(12449), + [anon_sym_BSLASHacp] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12449), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12449), + [anon_sym_BSLASHcolor] = ACTIONS(12449), + [anon_sym_BSLASHcolorbox] = ACTIONS(12449), + [anon_sym_BSLASHtextcolor] = ACTIONS(12449), + [anon_sym_BSLASHpagecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12449), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12449), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12449), + }, + [584] = { + [ts_builtin_sym_end] = ACTIONS(12451), + [sym_generic_command_name] = ACTIONS(12453), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12453), + [aux_sym_chapter_token1] = ACTIONS(12453), + [aux_sym_section_token1] = ACTIONS(12453), + [aux_sym_subsection_token1] = ACTIONS(12453), + [aux_sym_subsubsection_token1] = ACTIONS(12453), + [aux_sym_paragraph_token1] = ACTIONS(12453), + [aux_sym_subparagraph_token1] = ACTIONS(12453), + [anon_sym_BSLASHitem] = ACTIONS(12453), + [anon_sym_LBRACK] = ACTIONS(12451), + [anon_sym_RBRACK] = ACTIONS(12451), + [anon_sym_LBRACE] = ACTIONS(12451), + [anon_sym_RBRACE] = ACTIONS(12451), + [anon_sym_LPAREN] = ACTIONS(12451), + [anon_sym_RPAREN] = ACTIONS(12451), + [anon_sym_COMMA] = ACTIONS(12451), + [anon_sym_EQ] = ACTIONS(12451), + [sym_word] = ACTIONS(12451), + [sym_param] = ACTIONS(12451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12451), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12451), + [anon_sym_DOLLAR] = ACTIONS(12453), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12451), + [anon_sym_BSLASHbegin] = ACTIONS(12453), + [anon_sym_BSLASHcaption] = ACTIONS(12453), + [anon_sym_BSLASHcite] = ACTIONS(12453), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCite] = ACTIONS(12453), + [anon_sym_BSLASHnocite] = ACTIONS(12453), + [anon_sym_BSLASHcitet] = ACTIONS(12453), + [anon_sym_BSLASHcitep] = ACTIONS(12453), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteauthor] = ACTIONS(12453), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12453), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitetitle] = ACTIONS(12453), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteyear] = ACTIONS(12453), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitedate] = ACTIONS(12453), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteurl] = ACTIONS(12453), + [anon_sym_BSLASHfullcite] = ACTIONS(12453), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12453), + [anon_sym_BSLASHcitealt] = ACTIONS(12453), + [anon_sym_BSLASHcitealp] = ACTIONS(12453), + [anon_sym_BSLASHcitetext] = ACTIONS(12453), + [anon_sym_BSLASHparencite] = ACTIONS(12453), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHParencite] = ACTIONS(12453), + [anon_sym_BSLASHfootcite] = ACTIONS(12453), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12453), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12453), + [anon_sym_BSLASHtextcite] = ACTIONS(12453), + [anon_sym_BSLASHTextcite] = ACTIONS(12453), + [anon_sym_BSLASHsmartcite] = ACTIONS(12453), + [anon_sym_BSLASHSmartcite] = ACTIONS(12453), + [anon_sym_BSLASHsupercite] = ACTIONS(12453), + [anon_sym_BSLASHautocite] = ACTIONS(12453), + [anon_sym_BSLASHAutocite] = ACTIONS(12453), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHvolcite] = ACTIONS(12453), + [anon_sym_BSLASHVolcite] = ACTIONS(12453), + [anon_sym_BSLASHpvolcite] = ACTIONS(12453), + [anon_sym_BSLASHPvolcite] = ACTIONS(12453), + [anon_sym_BSLASHfvolcite] = ACTIONS(12453), + [anon_sym_BSLASHftvolcite] = ACTIONS(12453), + [anon_sym_BSLASHsvolcite] = ACTIONS(12453), + [anon_sym_BSLASHSvolcite] = ACTIONS(12453), + [anon_sym_BSLASHtvolcite] = ACTIONS(12453), + [anon_sym_BSLASHTvolcite] = ACTIONS(12453), + [anon_sym_BSLASHavolcite] = ACTIONS(12453), + [anon_sym_BSLASHAvolcite] = ACTIONS(12453), + [anon_sym_BSLASHnotecite] = ACTIONS(12453), + [anon_sym_BSLASHpnotecite] = ACTIONS(12453), + [anon_sym_BSLASHPnotecite] = ACTIONS(12453), + [anon_sym_BSLASHfnotecite] = ACTIONS(12453), + [anon_sym_BSLASHusepackage] = ACTIONS(12453), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12453), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12453), + [anon_sym_BSLASHinclude] = ACTIONS(12453), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12453), + [anon_sym_BSLASHinput] = ACTIONS(12453), + [anon_sym_BSLASHsubfile] = ACTIONS(12453), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12453), + [anon_sym_BSLASHbibliography] = ACTIONS(12453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12453), + [anon_sym_BSLASHincludesvg] = ACTIONS(12453), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12453), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12453), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12453), + [anon_sym_BSLASHimport] = ACTIONS(12453), + [anon_sym_BSLASHsubimport] = ACTIONS(12453), + [anon_sym_BSLASHinputfrom] = ACTIONS(12453), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12453), + [anon_sym_BSLASHincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHlabel] = ACTIONS(12453), + [anon_sym_BSLASHref] = ACTIONS(12453), + [anon_sym_BSLASHvref] = ACTIONS(12453), + [anon_sym_BSLASHVref] = ACTIONS(12453), + [anon_sym_BSLASHautoref] = ACTIONS(12453), + [anon_sym_BSLASHpageref] = ACTIONS(12453), + [anon_sym_BSLASHcref] = ACTIONS(12453), + [anon_sym_BSLASHCref] = ACTIONS(12453), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnameCref] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHlabelcref] = ACTIONS(12453), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12453), + [anon_sym_BSLASHeqref] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange] = ACTIONS(12453), + [anon_sym_BSLASHCrefrange] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewlabel] = ACTIONS(12453), + [anon_sym_BSLASHnewcommand] = ACTIONS(12453), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12453), + [anon_sym_BSLASHgls] = ACTIONS(12453), + [anon_sym_BSLASHGls] = ACTIONS(12453), + [anon_sym_BSLASHGLS] = ACTIONS(12453), + [anon_sym_BSLASHglspl] = ACTIONS(12453), + [anon_sym_BSLASHGlspl] = ACTIONS(12453), + [anon_sym_BSLASHGLSpl] = ACTIONS(12453), + [anon_sym_BSLASHglsdisp] = ACTIONS(12453), + [anon_sym_BSLASHglslink] = ACTIONS(12453), + [anon_sym_BSLASHglstext] = ACTIONS(12453), + [anon_sym_BSLASHGlstext] = ACTIONS(12453), + [anon_sym_BSLASHGLStext] = ACTIONS(12453), + [anon_sym_BSLASHglsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12453), + [anon_sym_BSLASHglsplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSplural] = ACTIONS(12453), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHglsname] = ACTIONS(12453), + [anon_sym_BSLASHGlsname] = ACTIONS(12453), + [anon_sym_BSLASHGLSname] = ACTIONS(12453), + [anon_sym_BSLASHglssymbol] = ACTIONS(12453), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12453), + [anon_sym_BSLASHglsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12453), + [anon_sym_BSLASHglsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12453), + [anon_sym_BSLASHglsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12453), + [anon_sym_BSLASHglsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12453), + [anon_sym_BSLASHglsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12453), + [anon_sym_BSLASHnewacronym] = ACTIONS(12453), + [anon_sym_BSLASHacrshort] = ACTIONS(12453), + [anon_sym_BSLASHAcrshort] = ACTIONS(12453), + [anon_sym_BSLASHACRshort] = ACTIONS(12453), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12453), + [anon_sym_BSLASHacrlong] = ACTIONS(12453), + [anon_sym_BSLASHAcrlong] = ACTIONS(12453), + [anon_sym_BSLASHACRlong] = ACTIONS(12453), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12453), + [anon_sym_BSLASHacrfull] = ACTIONS(12453), + [anon_sym_BSLASHAcrfull] = ACTIONS(12453), + [anon_sym_BSLASHACRfull] = ACTIONS(12453), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12453), + [anon_sym_BSLASHacs] = ACTIONS(12453), + [anon_sym_BSLASHAcs] = ACTIONS(12453), + [anon_sym_BSLASHacsp] = ACTIONS(12453), + [anon_sym_BSLASHAcsp] = ACTIONS(12453), + [anon_sym_BSLASHacl] = ACTIONS(12453), + [anon_sym_BSLASHAcl] = ACTIONS(12453), + [anon_sym_BSLASHaclp] = ACTIONS(12453), + [anon_sym_BSLASHAclp] = ACTIONS(12453), + [anon_sym_BSLASHacf] = ACTIONS(12453), + [anon_sym_BSLASHAcf] = ACTIONS(12453), + [anon_sym_BSLASHacfp] = ACTIONS(12453), + [anon_sym_BSLASHAcfp] = ACTIONS(12453), + [anon_sym_BSLASHac] = ACTIONS(12453), + [anon_sym_BSLASHAc] = ACTIONS(12453), + [anon_sym_BSLASHacp] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12453), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12453), + [anon_sym_BSLASHcolor] = ACTIONS(12453), + [anon_sym_BSLASHcolorbox] = ACTIONS(12453), + [anon_sym_BSLASHtextcolor] = ACTIONS(12453), + [anon_sym_BSLASHpagecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12453), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12453), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12453), + }, + [585] = { + [ts_builtin_sym_end] = ACTIONS(115), + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(117), + [aux_sym_chapter_token1] = ACTIONS(117), + [aux_sym_section_token1] = ACTIONS(117), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_RPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [586] = { + [ts_builtin_sym_end] = ACTIONS(12455), + [sym_generic_command_name] = ACTIONS(12457), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12457), + [aux_sym_chapter_token1] = ACTIONS(12457), + [aux_sym_section_token1] = ACTIONS(12457), + [aux_sym_subsection_token1] = ACTIONS(12457), + [aux_sym_subsubsection_token1] = ACTIONS(12457), + [aux_sym_paragraph_token1] = ACTIONS(12457), + [aux_sym_subparagraph_token1] = ACTIONS(12457), + [anon_sym_BSLASHitem] = ACTIONS(12457), + [anon_sym_LBRACK] = ACTIONS(12455), + [anon_sym_RBRACK] = ACTIONS(12455), + [anon_sym_LBRACE] = ACTIONS(12455), + [anon_sym_RBRACE] = ACTIONS(12455), + [anon_sym_LPAREN] = ACTIONS(12455), + [anon_sym_RPAREN] = ACTIONS(12455), + [anon_sym_COMMA] = ACTIONS(12455), + [anon_sym_EQ] = ACTIONS(12455), + [sym_word] = ACTIONS(12455), + [sym_param] = ACTIONS(12455), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12455), + [anon_sym_DOLLAR] = ACTIONS(12457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12455), + [anon_sym_BSLASHbegin] = ACTIONS(12457), + [anon_sym_BSLASHcaption] = ACTIONS(12457), + [anon_sym_BSLASHcite] = ACTIONS(12457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCite] = ACTIONS(12457), + [anon_sym_BSLASHnocite] = ACTIONS(12457), + [anon_sym_BSLASHcitet] = ACTIONS(12457), + [anon_sym_BSLASHcitep] = ACTIONS(12457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteauthor] = ACTIONS(12457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitetitle] = ACTIONS(12457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteyear] = ACTIONS(12457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitedate] = ACTIONS(12457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteurl] = ACTIONS(12457), + [anon_sym_BSLASHfullcite] = ACTIONS(12457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12457), + [anon_sym_BSLASHcitealt] = ACTIONS(12457), + [anon_sym_BSLASHcitealp] = ACTIONS(12457), + [anon_sym_BSLASHcitetext] = ACTIONS(12457), + [anon_sym_BSLASHparencite] = ACTIONS(12457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHParencite] = ACTIONS(12457), + [anon_sym_BSLASHfootcite] = ACTIONS(12457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12457), + [anon_sym_BSLASHtextcite] = ACTIONS(12457), + [anon_sym_BSLASHTextcite] = ACTIONS(12457), + [anon_sym_BSLASHsmartcite] = ACTIONS(12457), + [anon_sym_BSLASHSmartcite] = ACTIONS(12457), + [anon_sym_BSLASHsupercite] = ACTIONS(12457), + [anon_sym_BSLASHautocite] = ACTIONS(12457), + [anon_sym_BSLASHAutocite] = ACTIONS(12457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHvolcite] = ACTIONS(12457), + [anon_sym_BSLASHVolcite] = ACTIONS(12457), + [anon_sym_BSLASHpvolcite] = ACTIONS(12457), + [anon_sym_BSLASHPvolcite] = ACTIONS(12457), + [anon_sym_BSLASHfvolcite] = ACTIONS(12457), + [anon_sym_BSLASHftvolcite] = ACTIONS(12457), + [anon_sym_BSLASHsvolcite] = ACTIONS(12457), + [anon_sym_BSLASHSvolcite] = ACTIONS(12457), + [anon_sym_BSLASHtvolcite] = ACTIONS(12457), + [anon_sym_BSLASHTvolcite] = ACTIONS(12457), + [anon_sym_BSLASHavolcite] = ACTIONS(12457), + [anon_sym_BSLASHAvolcite] = ACTIONS(12457), + [anon_sym_BSLASHnotecite] = ACTIONS(12457), + [anon_sym_BSLASHpnotecite] = ACTIONS(12457), + [anon_sym_BSLASHPnotecite] = ACTIONS(12457), + [anon_sym_BSLASHfnotecite] = ACTIONS(12457), + [anon_sym_BSLASHusepackage] = ACTIONS(12457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12457), + [anon_sym_BSLASHinclude] = ACTIONS(12457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12457), + [anon_sym_BSLASHinput] = ACTIONS(12457), + [anon_sym_BSLASHsubfile] = ACTIONS(12457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12457), + [anon_sym_BSLASHbibliography] = ACTIONS(12457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12457), + [anon_sym_BSLASHincludesvg] = ACTIONS(12457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12457), + [anon_sym_BSLASHimport] = ACTIONS(12457), + [anon_sym_BSLASHsubimport] = ACTIONS(12457), + [anon_sym_BSLASHinputfrom] = ACTIONS(12457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12457), + [anon_sym_BSLASHincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHlabel] = ACTIONS(12457), + [anon_sym_BSLASHref] = ACTIONS(12457), + [anon_sym_BSLASHvref] = ACTIONS(12457), + [anon_sym_BSLASHVref] = ACTIONS(12457), + [anon_sym_BSLASHautoref] = ACTIONS(12457), + [anon_sym_BSLASHpageref] = ACTIONS(12457), + [anon_sym_BSLASHcref] = ACTIONS(12457), + [anon_sym_BSLASHCref] = ACTIONS(12457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnameCref] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHlabelcref] = ACTIONS(12457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12457), + [anon_sym_BSLASHeqref] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange] = ACTIONS(12457), + [anon_sym_BSLASHCrefrange] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewlabel] = ACTIONS(12457), + [anon_sym_BSLASHnewcommand] = ACTIONS(12457), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12457), + [anon_sym_BSLASHgls] = ACTIONS(12457), + [anon_sym_BSLASHGls] = ACTIONS(12457), + [anon_sym_BSLASHGLS] = ACTIONS(12457), + [anon_sym_BSLASHglspl] = ACTIONS(12457), + [anon_sym_BSLASHGlspl] = ACTIONS(12457), + [anon_sym_BSLASHGLSpl] = ACTIONS(12457), + [anon_sym_BSLASHglsdisp] = ACTIONS(12457), + [anon_sym_BSLASHglslink] = ACTIONS(12457), + [anon_sym_BSLASHglstext] = ACTIONS(12457), + [anon_sym_BSLASHGlstext] = ACTIONS(12457), + [anon_sym_BSLASHGLStext] = ACTIONS(12457), + [anon_sym_BSLASHglsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12457), + [anon_sym_BSLASHglsplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSplural] = ACTIONS(12457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHglsname] = ACTIONS(12457), + [anon_sym_BSLASHGlsname] = ACTIONS(12457), + [anon_sym_BSLASHGLSname] = ACTIONS(12457), + [anon_sym_BSLASHglssymbol] = ACTIONS(12457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12457), + [anon_sym_BSLASHglsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12457), + [anon_sym_BSLASHglsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12457), + [anon_sym_BSLASHglsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12457), + [anon_sym_BSLASHglsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12457), + [anon_sym_BSLASHglsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12457), + [anon_sym_BSLASHnewacronym] = ACTIONS(12457), + [anon_sym_BSLASHacrshort] = ACTIONS(12457), + [anon_sym_BSLASHAcrshort] = ACTIONS(12457), + [anon_sym_BSLASHACRshort] = ACTIONS(12457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12457), + [anon_sym_BSLASHacrlong] = ACTIONS(12457), + [anon_sym_BSLASHAcrlong] = ACTIONS(12457), + [anon_sym_BSLASHACRlong] = ACTIONS(12457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12457), + [anon_sym_BSLASHacrfull] = ACTIONS(12457), + [anon_sym_BSLASHAcrfull] = ACTIONS(12457), + [anon_sym_BSLASHACRfull] = ACTIONS(12457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12457), + [anon_sym_BSLASHacs] = ACTIONS(12457), + [anon_sym_BSLASHAcs] = ACTIONS(12457), + [anon_sym_BSLASHacsp] = ACTIONS(12457), + [anon_sym_BSLASHAcsp] = ACTIONS(12457), + [anon_sym_BSLASHacl] = ACTIONS(12457), + [anon_sym_BSLASHAcl] = ACTIONS(12457), + [anon_sym_BSLASHaclp] = ACTIONS(12457), + [anon_sym_BSLASHAclp] = ACTIONS(12457), + [anon_sym_BSLASHacf] = ACTIONS(12457), + [anon_sym_BSLASHAcf] = ACTIONS(12457), + [anon_sym_BSLASHacfp] = ACTIONS(12457), + [anon_sym_BSLASHAcfp] = ACTIONS(12457), + [anon_sym_BSLASHac] = ACTIONS(12457), + [anon_sym_BSLASHAc] = ACTIONS(12457), + [anon_sym_BSLASHacp] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12457), + [anon_sym_BSLASHcolor] = ACTIONS(12457), + [anon_sym_BSLASHcolorbox] = ACTIONS(12457), + [anon_sym_BSLASHtextcolor] = ACTIONS(12457), + [anon_sym_BSLASHpagecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12457), + }, + [587] = { + [ts_builtin_sym_end] = ACTIONS(12459), + [sym_generic_command_name] = ACTIONS(12461), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12461), + [aux_sym_chapter_token1] = ACTIONS(12461), + [aux_sym_section_token1] = ACTIONS(12461), + [aux_sym_subsection_token1] = ACTIONS(12461), + [aux_sym_subsubsection_token1] = ACTIONS(12461), + [aux_sym_paragraph_token1] = ACTIONS(12461), + [aux_sym_subparagraph_token1] = ACTIONS(12461), + [anon_sym_BSLASHitem] = ACTIONS(12461), + [anon_sym_LBRACK] = ACTIONS(12459), + [anon_sym_RBRACK] = ACTIONS(12459), + [anon_sym_LBRACE] = ACTIONS(12459), + [anon_sym_RBRACE] = ACTIONS(12459), + [anon_sym_LPAREN] = ACTIONS(12459), + [anon_sym_RPAREN] = ACTIONS(12459), + [anon_sym_COMMA] = ACTIONS(12459), + [anon_sym_EQ] = ACTIONS(12459), + [sym_word] = ACTIONS(12459), + [sym_param] = ACTIONS(12459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12459), + [anon_sym_DOLLAR] = ACTIONS(12461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12459), + [anon_sym_BSLASHbegin] = ACTIONS(12461), + [anon_sym_BSLASHcaption] = ACTIONS(12461), + [anon_sym_BSLASHcite] = ACTIONS(12461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCite] = ACTIONS(12461), + [anon_sym_BSLASHnocite] = ACTIONS(12461), + [anon_sym_BSLASHcitet] = ACTIONS(12461), + [anon_sym_BSLASHcitep] = ACTIONS(12461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteauthor] = ACTIONS(12461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitetitle] = ACTIONS(12461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteyear] = ACTIONS(12461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitedate] = ACTIONS(12461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteurl] = ACTIONS(12461), + [anon_sym_BSLASHfullcite] = ACTIONS(12461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12461), + [anon_sym_BSLASHcitealt] = ACTIONS(12461), + [anon_sym_BSLASHcitealp] = ACTIONS(12461), + [anon_sym_BSLASHcitetext] = ACTIONS(12461), + [anon_sym_BSLASHparencite] = ACTIONS(12461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHParencite] = ACTIONS(12461), + [anon_sym_BSLASHfootcite] = ACTIONS(12461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12461), + [anon_sym_BSLASHtextcite] = ACTIONS(12461), + [anon_sym_BSLASHTextcite] = ACTIONS(12461), + [anon_sym_BSLASHsmartcite] = ACTIONS(12461), + [anon_sym_BSLASHSmartcite] = ACTIONS(12461), + [anon_sym_BSLASHsupercite] = ACTIONS(12461), + [anon_sym_BSLASHautocite] = ACTIONS(12461), + [anon_sym_BSLASHAutocite] = ACTIONS(12461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHvolcite] = ACTIONS(12461), + [anon_sym_BSLASHVolcite] = ACTIONS(12461), + [anon_sym_BSLASHpvolcite] = ACTIONS(12461), + [anon_sym_BSLASHPvolcite] = ACTIONS(12461), + [anon_sym_BSLASHfvolcite] = ACTIONS(12461), + [anon_sym_BSLASHftvolcite] = ACTIONS(12461), + [anon_sym_BSLASHsvolcite] = ACTIONS(12461), + [anon_sym_BSLASHSvolcite] = ACTIONS(12461), + [anon_sym_BSLASHtvolcite] = ACTIONS(12461), + [anon_sym_BSLASHTvolcite] = ACTIONS(12461), + [anon_sym_BSLASHavolcite] = ACTIONS(12461), + [anon_sym_BSLASHAvolcite] = ACTIONS(12461), + [anon_sym_BSLASHnotecite] = ACTIONS(12461), + [anon_sym_BSLASHpnotecite] = ACTIONS(12461), + [anon_sym_BSLASHPnotecite] = ACTIONS(12461), + [anon_sym_BSLASHfnotecite] = ACTIONS(12461), + [anon_sym_BSLASHusepackage] = ACTIONS(12461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12461), + [anon_sym_BSLASHinclude] = ACTIONS(12461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12461), + [anon_sym_BSLASHinput] = ACTIONS(12461), + [anon_sym_BSLASHsubfile] = ACTIONS(12461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12461), + [anon_sym_BSLASHbibliography] = ACTIONS(12461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12461), + [anon_sym_BSLASHincludesvg] = ACTIONS(12461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12461), + [anon_sym_BSLASHimport] = ACTIONS(12461), + [anon_sym_BSLASHsubimport] = ACTIONS(12461), + [anon_sym_BSLASHinputfrom] = ACTIONS(12461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12461), + [anon_sym_BSLASHincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHlabel] = ACTIONS(12461), + [anon_sym_BSLASHref] = ACTIONS(12461), + [anon_sym_BSLASHvref] = ACTIONS(12461), + [anon_sym_BSLASHVref] = ACTIONS(12461), + [anon_sym_BSLASHautoref] = ACTIONS(12461), + [anon_sym_BSLASHpageref] = ACTIONS(12461), + [anon_sym_BSLASHcref] = ACTIONS(12461), + [anon_sym_BSLASHCref] = ACTIONS(12461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnameCref] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHlabelcref] = ACTIONS(12461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12461), + [anon_sym_BSLASHeqref] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange] = ACTIONS(12461), + [anon_sym_BSLASHCrefrange] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewlabel] = ACTIONS(12461), + [anon_sym_BSLASHnewcommand] = ACTIONS(12461), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12461), + [anon_sym_BSLASHgls] = ACTIONS(12461), + [anon_sym_BSLASHGls] = ACTIONS(12461), + [anon_sym_BSLASHGLS] = ACTIONS(12461), + [anon_sym_BSLASHglspl] = ACTIONS(12461), + [anon_sym_BSLASHGlspl] = ACTIONS(12461), + [anon_sym_BSLASHGLSpl] = ACTIONS(12461), + [anon_sym_BSLASHglsdisp] = ACTIONS(12461), + [anon_sym_BSLASHglslink] = ACTIONS(12461), + [anon_sym_BSLASHglstext] = ACTIONS(12461), + [anon_sym_BSLASHGlstext] = ACTIONS(12461), + [anon_sym_BSLASHGLStext] = ACTIONS(12461), + [anon_sym_BSLASHglsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12461), + [anon_sym_BSLASHglsplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSplural] = ACTIONS(12461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHglsname] = ACTIONS(12461), + [anon_sym_BSLASHGlsname] = ACTIONS(12461), + [anon_sym_BSLASHGLSname] = ACTIONS(12461), + [anon_sym_BSLASHglssymbol] = ACTIONS(12461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12461), + [anon_sym_BSLASHglsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12461), + [anon_sym_BSLASHglsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12461), + [anon_sym_BSLASHglsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12461), + [anon_sym_BSLASHglsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12461), + [anon_sym_BSLASHglsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12461), + [anon_sym_BSLASHnewacronym] = ACTIONS(12461), + [anon_sym_BSLASHacrshort] = ACTIONS(12461), + [anon_sym_BSLASHAcrshort] = ACTIONS(12461), + [anon_sym_BSLASHACRshort] = ACTIONS(12461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12461), + [anon_sym_BSLASHacrlong] = ACTIONS(12461), + [anon_sym_BSLASHAcrlong] = ACTIONS(12461), + [anon_sym_BSLASHACRlong] = ACTIONS(12461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12461), + [anon_sym_BSLASHacrfull] = ACTIONS(12461), + [anon_sym_BSLASHAcrfull] = ACTIONS(12461), + [anon_sym_BSLASHACRfull] = ACTIONS(12461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12461), + [anon_sym_BSLASHacs] = ACTIONS(12461), + [anon_sym_BSLASHAcs] = ACTIONS(12461), + [anon_sym_BSLASHacsp] = ACTIONS(12461), + [anon_sym_BSLASHAcsp] = ACTIONS(12461), + [anon_sym_BSLASHacl] = ACTIONS(12461), + [anon_sym_BSLASHAcl] = ACTIONS(12461), + [anon_sym_BSLASHaclp] = ACTIONS(12461), + [anon_sym_BSLASHAclp] = ACTIONS(12461), + [anon_sym_BSLASHacf] = ACTIONS(12461), + [anon_sym_BSLASHAcf] = ACTIONS(12461), + [anon_sym_BSLASHacfp] = ACTIONS(12461), + [anon_sym_BSLASHAcfp] = ACTIONS(12461), + [anon_sym_BSLASHac] = ACTIONS(12461), + [anon_sym_BSLASHAc] = ACTIONS(12461), + [anon_sym_BSLASHacp] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12461), + [anon_sym_BSLASHcolor] = ACTIONS(12461), + [anon_sym_BSLASHcolorbox] = ACTIONS(12461), + [anon_sym_BSLASHtextcolor] = ACTIONS(12461), + [anon_sym_BSLASHpagecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12461), + }, + [588] = { + [ts_builtin_sym_end] = ACTIONS(12463), + [sym_generic_command_name] = ACTIONS(12465), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12465), + [aux_sym_chapter_token1] = ACTIONS(12465), + [aux_sym_section_token1] = ACTIONS(12465), + [aux_sym_subsection_token1] = ACTIONS(12465), + [aux_sym_subsubsection_token1] = ACTIONS(12465), + [aux_sym_paragraph_token1] = ACTIONS(12465), + [aux_sym_subparagraph_token1] = ACTIONS(12465), + [anon_sym_BSLASHitem] = ACTIONS(12465), + [anon_sym_LBRACK] = ACTIONS(12463), + [anon_sym_RBRACK] = ACTIONS(12463), + [anon_sym_LBRACE] = ACTIONS(12463), + [anon_sym_RBRACE] = ACTIONS(12463), + [anon_sym_LPAREN] = ACTIONS(12463), + [anon_sym_RPAREN] = ACTIONS(12463), + [anon_sym_COMMA] = ACTIONS(12463), + [anon_sym_EQ] = ACTIONS(12463), + [sym_word] = ACTIONS(12463), + [sym_param] = ACTIONS(12463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12463), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12463), + [anon_sym_DOLLAR] = ACTIONS(12465), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12463), + [anon_sym_BSLASHbegin] = ACTIONS(12465), + [anon_sym_BSLASHcaption] = ACTIONS(12465), + [anon_sym_BSLASHcite] = ACTIONS(12465), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCite] = ACTIONS(12465), + [anon_sym_BSLASHnocite] = ACTIONS(12465), + [anon_sym_BSLASHcitet] = ACTIONS(12465), + [anon_sym_BSLASHcitep] = ACTIONS(12465), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteauthor] = ACTIONS(12465), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12465), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitetitle] = ACTIONS(12465), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteyear] = ACTIONS(12465), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitedate] = ACTIONS(12465), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteurl] = ACTIONS(12465), + [anon_sym_BSLASHfullcite] = ACTIONS(12465), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12465), + [anon_sym_BSLASHcitealt] = ACTIONS(12465), + [anon_sym_BSLASHcitealp] = ACTIONS(12465), + [anon_sym_BSLASHcitetext] = ACTIONS(12465), + [anon_sym_BSLASHparencite] = ACTIONS(12465), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHParencite] = ACTIONS(12465), + [anon_sym_BSLASHfootcite] = ACTIONS(12465), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12465), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12465), + [anon_sym_BSLASHtextcite] = ACTIONS(12465), + [anon_sym_BSLASHTextcite] = ACTIONS(12465), + [anon_sym_BSLASHsmartcite] = ACTIONS(12465), + [anon_sym_BSLASHSmartcite] = ACTIONS(12465), + [anon_sym_BSLASHsupercite] = ACTIONS(12465), + [anon_sym_BSLASHautocite] = ACTIONS(12465), + [anon_sym_BSLASHAutocite] = ACTIONS(12465), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHvolcite] = ACTIONS(12465), + [anon_sym_BSLASHVolcite] = ACTIONS(12465), + [anon_sym_BSLASHpvolcite] = ACTIONS(12465), + [anon_sym_BSLASHPvolcite] = ACTIONS(12465), + [anon_sym_BSLASHfvolcite] = ACTIONS(12465), + [anon_sym_BSLASHftvolcite] = ACTIONS(12465), + [anon_sym_BSLASHsvolcite] = ACTIONS(12465), + [anon_sym_BSLASHSvolcite] = ACTIONS(12465), + [anon_sym_BSLASHtvolcite] = ACTIONS(12465), + [anon_sym_BSLASHTvolcite] = ACTIONS(12465), + [anon_sym_BSLASHavolcite] = ACTIONS(12465), + [anon_sym_BSLASHAvolcite] = ACTIONS(12465), + [anon_sym_BSLASHnotecite] = ACTIONS(12465), + [anon_sym_BSLASHpnotecite] = ACTIONS(12465), + [anon_sym_BSLASHPnotecite] = ACTIONS(12465), + [anon_sym_BSLASHfnotecite] = ACTIONS(12465), + [anon_sym_BSLASHusepackage] = ACTIONS(12465), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12465), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12465), + [anon_sym_BSLASHinclude] = ACTIONS(12465), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12465), + [anon_sym_BSLASHinput] = ACTIONS(12465), + [anon_sym_BSLASHsubfile] = ACTIONS(12465), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12465), + [anon_sym_BSLASHbibliography] = ACTIONS(12465), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12465), + [anon_sym_BSLASHincludesvg] = ACTIONS(12465), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12465), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12465), + [anon_sym_BSLASHimport] = ACTIONS(12465), + [anon_sym_BSLASHsubimport] = ACTIONS(12465), + [anon_sym_BSLASHinputfrom] = ACTIONS(12465), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12465), + [anon_sym_BSLASHincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHlabel] = ACTIONS(12465), + [anon_sym_BSLASHref] = ACTIONS(12465), + [anon_sym_BSLASHvref] = ACTIONS(12465), + [anon_sym_BSLASHVref] = ACTIONS(12465), + [anon_sym_BSLASHautoref] = ACTIONS(12465), + [anon_sym_BSLASHpageref] = ACTIONS(12465), + [anon_sym_BSLASHcref] = ACTIONS(12465), + [anon_sym_BSLASHCref] = ACTIONS(12465), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnameCref] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHlabelcref] = ACTIONS(12465), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12465), + [anon_sym_BSLASHeqref] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange] = ACTIONS(12465), + [anon_sym_BSLASHCrefrange] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewlabel] = ACTIONS(12465), + [anon_sym_BSLASHnewcommand] = ACTIONS(12465), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12465), + [anon_sym_BSLASHgls] = ACTIONS(12465), + [anon_sym_BSLASHGls] = ACTIONS(12465), + [anon_sym_BSLASHGLS] = ACTIONS(12465), + [anon_sym_BSLASHglspl] = ACTIONS(12465), + [anon_sym_BSLASHGlspl] = ACTIONS(12465), + [anon_sym_BSLASHGLSpl] = ACTIONS(12465), + [anon_sym_BSLASHglsdisp] = ACTIONS(12465), + [anon_sym_BSLASHglslink] = ACTIONS(12465), + [anon_sym_BSLASHglstext] = ACTIONS(12465), + [anon_sym_BSLASHGlstext] = ACTIONS(12465), + [anon_sym_BSLASHGLStext] = ACTIONS(12465), + [anon_sym_BSLASHglsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12465), + [anon_sym_BSLASHglsplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSplural] = ACTIONS(12465), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHglsname] = ACTIONS(12465), + [anon_sym_BSLASHGlsname] = ACTIONS(12465), + [anon_sym_BSLASHGLSname] = ACTIONS(12465), + [anon_sym_BSLASHglssymbol] = ACTIONS(12465), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12465), + [anon_sym_BSLASHglsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12465), + [anon_sym_BSLASHglsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12465), + [anon_sym_BSLASHglsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12465), + [anon_sym_BSLASHglsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12465), + [anon_sym_BSLASHglsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12465), + [anon_sym_BSLASHnewacronym] = ACTIONS(12465), + [anon_sym_BSLASHacrshort] = ACTIONS(12465), + [anon_sym_BSLASHAcrshort] = ACTIONS(12465), + [anon_sym_BSLASHACRshort] = ACTIONS(12465), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12465), + [anon_sym_BSLASHacrlong] = ACTIONS(12465), + [anon_sym_BSLASHAcrlong] = ACTIONS(12465), + [anon_sym_BSLASHACRlong] = ACTIONS(12465), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12465), + [anon_sym_BSLASHacrfull] = ACTIONS(12465), + [anon_sym_BSLASHAcrfull] = ACTIONS(12465), + [anon_sym_BSLASHACRfull] = ACTIONS(12465), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12465), + [anon_sym_BSLASHacs] = ACTIONS(12465), + [anon_sym_BSLASHAcs] = ACTIONS(12465), + [anon_sym_BSLASHacsp] = ACTIONS(12465), + [anon_sym_BSLASHAcsp] = ACTIONS(12465), + [anon_sym_BSLASHacl] = ACTIONS(12465), + [anon_sym_BSLASHAcl] = ACTIONS(12465), + [anon_sym_BSLASHaclp] = ACTIONS(12465), + [anon_sym_BSLASHAclp] = ACTIONS(12465), + [anon_sym_BSLASHacf] = ACTIONS(12465), + [anon_sym_BSLASHAcf] = ACTIONS(12465), + [anon_sym_BSLASHacfp] = ACTIONS(12465), + [anon_sym_BSLASHAcfp] = ACTIONS(12465), + [anon_sym_BSLASHac] = ACTIONS(12465), + [anon_sym_BSLASHAc] = ACTIONS(12465), + [anon_sym_BSLASHacp] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12465), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12465), + [anon_sym_BSLASHcolor] = ACTIONS(12465), + [anon_sym_BSLASHcolorbox] = ACTIONS(12465), + [anon_sym_BSLASHtextcolor] = ACTIONS(12465), + [anon_sym_BSLASHpagecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12465), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12465), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12465), + }, + [589] = { + [ts_builtin_sym_end] = ACTIONS(12467), + [sym_generic_command_name] = ACTIONS(12469), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12469), + [aux_sym_chapter_token1] = ACTIONS(12469), + [aux_sym_section_token1] = ACTIONS(12469), + [aux_sym_subsection_token1] = ACTIONS(12469), + [aux_sym_subsubsection_token1] = ACTIONS(12469), + [aux_sym_paragraph_token1] = ACTIONS(12469), + [aux_sym_subparagraph_token1] = ACTIONS(12469), + [anon_sym_BSLASHitem] = ACTIONS(12469), + [anon_sym_LBRACK] = ACTIONS(12467), + [anon_sym_RBRACK] = ACTIONS(12467), + [anon_sym_LBRACE] = ACTIONS(12467), + [anon_sym_RBRACE] = ACTIONS(12467), + [anon_sym_LPAREN] = ACTIONS(12467), + [anon_sym_RPAREN] = ACTIONS(12467), + [anon_sym_COMMA] = ACTIONS(12467), + [anon_sym_EQ] = ACTIONS(12467), + [sym_word] = ACTIONS(12467), + [sym_param] = ACTIONS(12467), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12467), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12467), + [anon_sym_DOLLAR] = ACTIONS(12469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12467), + [anon_sym_BSLASHbegin] = ACTIONS(12469), + [anon_sym_BSLASHcaption] = ACTIONS(12469), + [anon_sym_BSLASHcite] = ACTIONS(12469), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCite] = ACTIONS(12469), + [anon_sym_BSLASHnocite] = ACTIONS(12469), + [anon_sym_BSLASHcitet] = ACTIONS(12469), + [anon_sym_BSLASHcitep] = ACTIONS(12469), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteauthor] = ACTIONS(12469), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12469), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitetitle] = ACTIONS(12469), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteyear] = ACTIONS(12469), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitedate] = ACTIONS(12469), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteurl] = ACTIONS(12469), + [anon_sym_BSLASHfullcite] = ACTIONS(12469), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12469), + [anon_sym_BSLASHcitealt] = ACTIONS(12469), + [anon_sym_BSLASHcitealp] = ACTIONS(12469), + [anon_sym_BSLASHcitetext] = ACTIONS(12469), + [anon_sym_BSLASHparencite] = ACTIONS(12469), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHParencite] = ACTIONS(12469), + [anon_sym_BSLASHfootcite] = ACTIONS(12469), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12469), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12469), + [anon_sym_BSLASHtextcite] = ACTIONS(12469), + [anon_sym_BSLASHTextcite] = ACTIONS(12469), + [anon_sym_BSLASHsmartcite] = ACTIONS(12469), + [anon_sym_BSLASHSmartcite] = ACTIONS(12469), + [anon_sym_BSLASHsupercite] = ACTIONS(12469), + [anon_sym_BSLASHautocite] = ACTIONS(12469), + [anon_sym_BSLASHAutocite] = ACTIONS(12469), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHvolcite] = ACTIONS(12469), + [anon_sym_BSLASHVolcite] = ACTIONS(12469), + [anon_sym_BSLASHpvolcite] = ACTIONS(12469), + [anon_sym_BSLASHPvolcite] = ACTIONS(12469), + [anon_sym_BSLASHfvolcite] = ACTIONS(12469), + [anon_sym_BSLASHftvolcite] = ACTIONS(12469), + [anon_sym_BSLASHsvolcite] = ACTIONS(12469), + [anon_sym_BSLASHSvolcite] = ACTIONS(12469), + [anon_sym_BSLASHtvolcite] = ACTIONS(12469), + [anon_sym_BSLASHTvolcite] = ACTIONS(12469), + [anon_sym_BSLASHavolcite] = ACTIONS(12469), + [anon_sym_BSLASHAvolcite] = ACTIONS(12469), + [anon_sym_BSLASHnotecite] = ACTIONS(12469), + [anon_sym_BSLASHpnotecite] = ACTIONS(12469), + [anon_sym_BSLASHPnotecite] = ACTIONS(12469), + [anon_sym_BSLASHfnotecite] = ACTIONS(12469), + [anon_sym_BSLASHusepackage] = ACTIONS(12469), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12469), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12469), + [anon_sym_BSLASHinclude] = ACTIONS(12469), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12469), + [anon_sym_BSLASHinput] = ACTIONS(12469), + [anon_sym_BSLASHsubfile] = ACTIONS(12469), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12469), + [anon_sym_BSLASHbibliography] = ACTIONS(12469), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12469), + [anon_sym_BSLASHincludesvg] = ACTIONS(12469), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12469), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12469), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12469), + [anon_sym_BSLASHimport] = ACTIONS(12469), + [anon_sym_BSLASHsubimport] = ACTIONS(12469), + [anon_sym_BSLASHinputfrom] = ACTIONS(12469), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12469), + [anon_sym_BSLASHincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHlabel] = ACTIONS(12469), + [anon_sym_BSLASHref] = ACTIONS(12469), + [anon_sym_BSLASHvref] = ACTIONS(12469), + [anon_sym_BSLASHVref] = ACTIONS(12469), + [anon_sym_BSLASHautoref] = ACTIONS(12469), + [anon_sym_BSLASHpageref] = ACTIONS(12469), + [anon_sym_BSLASHcref] = ACTIONS(12469), + [anon_sym_BSLASHCref] = ACTIONS(12469), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnameCref] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHlabelcref] = ACTIONS(12469), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12469), + [anon_sym_BSLASHeqref] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange] = ACTIONS(12469), + [anon_sym_BSLASHCrefrange] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewlabel] = ACTIONS(12469), + [anon_sym_BSLASHnewcommand] = ACTIONS(12469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12469), + [anon_sym_BSLASHgls] = ACTIONS(12469), + [anon_sym_BSLASHGls] = ACTIONS(12469), + [anon_sym_BSLASHGLS] = ACTIONS(12469), + [anon_sym_BSLASHglspl] = ACTIONS(12469), + [anon_sym_BSLASHGlspl] = ACTIONS(12469), + [anon_sym_BSLASHGLSpl] = ACTIONS(12469), + [anon_sym_BSLASHglsdisp] = ACTIONS(12469), + [anon_sym_BSLASHglslink] = ACTIONS(12469), + [anon_sym_BSLASHglstext] = ACTIONS(12469), + [anon_sym_BSLASHGlstext] = ACTIONS(12469), + [anon_sym_BSLASHGLStext] = ACTIONS(12469), + [anon_sym_BSLASHglsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12469), + [anon_sym_BSLASHglsplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSplural] = ACTIONS(12469), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHglsname] = ACTIONS(12469), + [anon_sym_BSLASHGlsname] = ACTIONS(12469), + [anon_sym_BSLASHGLSname] = ACTIONS(12469), + [anon_sym_BSLASHglssymbol] = ACTIONS(12469), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12469), + [anon_sym_BSLASHglsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12469), + [anon_sym_BSLASHglsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12469), + [anon_sym_BSLASHglsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12469), + [anon_sym_BSLASHglsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12469), + [anon_sym_BSLASHglsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12469), + [anon_sym_BSLASHnewacronym] = ACTIONS(12469), + [anon_sym_BSLASHacrshort] = ACTIONS(12469), + [anon_sym_BSLASHAcrshort] = ACTIONS(12469), + [anon_sym_BSLASHACRshort] = ACTIONS(12469), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12469), + [anon_sym_BSLASHacrlong] = ACTIONS(12469), + [anon_sym_BSLASHAcrlong] = ACTIONS(12469), + [anon_sym_BSLASHACRlong] = ACTIONS(12469), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12469), + [anon_sym_BSLASHacrfull] = ACTIONS(12469), + [anon_sym_BSLASHAcrfull] = ACTIONS(12469), + [anon_sym_BSLASHACRfull] = ACTIONS(12469), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12469), + [anon_sym_BSLASHacs] = ACTIONS(12469), + [anon_sym_BSLASHAcs] = ACTIONS(12469), + [anon_sym_BSLASHacsp] = ACTIONS(12469), + [anon_sym_BSLASHAcsp] = ACTIONS(12469), + [anon_sym_BSLASHacl] = ACTIONS(12469), + [anon_sym_BSLASHAcl] = ACTIONS(12469), + [anon_sym_BSLASHaclp] = ACTIONS(12469), + [anon_sym_BSLASHAclp] = ACTIONS(12469), + [anon_sym_BSLASHacf] = ACTIONS(12469), + [anon_sym_BSLASHAcf] = ACTIONS(12469), + [anon_sym_BSLASHacfp] = ACTIONS(12469), + [anon_sym_BSLASHAcfp] = ACTIONS(12469), + [anon_sym_BSLASHac] = ACTIONS(12469), + [anon_sym_BSLASHAc] = ACTIONS(12469), + [anon_sym_BSLASHacp] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12469), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12469), + [anon_sym_BSLASHcolor] = ACTIONS(12469), + [anon_sym_BSLASHcolorbox] = ACTIONS(12469), + [anon_sym_BSLASHtextcolor] = ACTIONS(12469), + [anon_sym_BSLASHpagecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12469), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12469), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12469), + }, + [590] = { + [ts_builtin_sym_end] = ACTIONS(12471), + [sym_generic_command_name] = ACTIONS(12473), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12473), + [aux_sym_chapter_token1] = ACTIONS(12473), + [aux_sym_section_token1] = ACTIONS(12473), + [aux_sym_subsection_token1] = ACTIONS(12473), + [aux_sym_subsubsection_token1] = ACTIONS(12473), + [aux_sym_paragraph_token1] = ACTIONS(12473), + [aux_sym_subparagraph_token1] = ACTIONS(12473), + [anon_sym_BSLASHitem] = ACTIONS(12473), + [anon_sym_LBRACK] = ACTIONS(12471), + [anon_sym_RBRACK] = ACTIONS(12471), + [anon_sym_LBRACE] = ACTIONS(12471), + [anon_sym_RBRACE] = ACTIONS(12471), + [anon_sym_LPAREN] = ACTIONS(12471), + [anon_sym_RPAREN] = ACTIONS(12471), + [anon_sym_COMMA] = ACTIONS(12471), + [anon_sym_EQ] = ACTIONS(12471), + [sym_word] = ACTIONS(12471), + [sym_param] = ACTIONS(12471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12471), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12471), + [anon_sym_DOLLAR] = ACTIONS(12473), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12471), + [anon_sym_BSLASHbegin] = ACTIONS(12473), + [anon_sym_BSLASHcaption] = ACTIONS(12473), + [anon_sym_BSLASHcite] = ACTIONS(12473), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCite] = ACTIONS(12473), + [anon_sym_BSLASHnocite] = ACTIONS(12473), + [anon_sym_BSLASHcitet] = ACTIONS(12473), + [anon_sym_BSLASHcitep] = ACTIONS(12473), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteauthor] = ACTIONS(12473), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12473), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitetitle] = ACTIONS(12473), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteyear] = ACTIONS(12473), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitedate] = ACTIONS(12473), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteurl] = ACTIONS(12473), + [anon_sym_BSLASHfullcite] = ACTIONS(12473), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12473), + [anon_sym_BSLASHcitealt] = ACTIONS(12473), + [anon_sym_BSLASHcitealp] = ACTIONS(12473), + [anon_sym_BSLASHcitetext] = ACTIONS(12473), + [anon_sym_BSLASHparencite] = ACTIONS(12473), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHParencite] = ACTIONS(12473), + [anon_sym_BSLASHfootcite] = ACTIONS(12473), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12473), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12473), + [anon_sym_BSLASHtextcite] = ACTIONS(12473), + [anon_sym_BSLASHTextcite] = ACTIONS(12473), + [anon_sym_BSLASHsmartcite] = ACTIONS(12473), + [anon_sym_BSLASHSmartcite] = ACTIONS(12473), + [anon_sym_BSLASHsupercite] = ACTIONS(12473), + [anon_sym_BSLASHautocite] = ACTIONS(12473), + [anon_sym_BSLASHAutocite] = ACTIONS(12473), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHvolcite] = ACTIONS(12473), + [anon_sym_BSLASHVolcite] = ACTIONS(12473), + [anon_sym_BSLASHpvolcite] = ACTIONS(12473), + [anon_sym_BSLASHPvolcite] = ACTIONS(12473), + [anon_sym_BSLASHfvolcite] = ACTIONS(12473), + [anon_sym_BSLASHftvolcite] = ACTIONS(12473), + [anon_sym_BSLASHsvolcite] = ACTIONS(12473), + [anon_sym_BSLASHSvolcite] = ACTIONS(12473), + [anon_sym_BSLASHtvolcite] = ACTIONS(12473), + [anon_sym_BSLASHTvolcite] = ACTIONS(12473), + [anon_sym_BSLASHavolcite] = ACTIONS(12473), + [anon_sym_BSLASHAvolcite] = ACTIONS(12473), + [anon_sym_BSLASHnotecite] = ACTIONS(12473), + [anon_sym_BSLASHpnotecite] = ACTIONS(12473), + [anon_sym_BSLASHPnotecite] = ACTIONS(12473), + [anon_sym_BSLASHfnotecite] = ACTIONS(12473), + [anon_sym_BSLASHusepackage] = ACTIONS(12473), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12473), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12473), + [anon_sym_BSLASHinclude] = ACTIONS(12473), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12473), + [anon_sym_BSLASHinput] = ACTIONS(12473), + [anon_sym_BSLASHsubfile] = ACTIONS(12473), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12473), + [anon_sym_BSLASHbibliography] = ACTIONS(12473), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12473), + [anon_sym_BSLASHincludesvg] = ACTIONS(12473), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12473), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12473), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12473), + [anon_sym_BSLASHimport] = ACTIONS(12473), + [anon_sym_BSLASHsubimport] = ACTIONS(12473), + [anon_sym_BSLASHinputfrom] = ACTIONS(12473), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12473), + [anon_sym_BSLASHincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHlabel] = ACTIONS(12473), + [anon_sym_BSLASHref] = ACTIONS(12473), + [anon_sym_BSLASHvref] = ACTIONS(12473), + [anon_sym_BSLASHVref] = ACTIONS(12473), + [anon_sym_BSLASHautoref] = ACTIONS(12473), + [anon_sym_BSLASHpageref] = ACTIONS(12473), + [anon_sym_BSLASHcref] = ACTIONS(12473), + [anon_sym_BSLASHCref] = ACTIONS(12473), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnameCref] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHlabelcref] = ACTIONS(12473), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12473), + [anon_sym_BSLASHeqref] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange] = ACTIONS(12473), + [anon_sym_BSLASHCrefrange] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewlabel] = ACTIONS(12473), + [anon_sym_BSLASHnewcommand] = ACTIONS(12473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12473), + [anon_sym_BSLASHgls] = ACTIONS(12473), + [anon_sym_BSLASHGls] = ACTIONS(12473), + [anon_sym_BSLASHGLS] = ACTIONS(12473), + [anon_sym_BSLASHglspl] = ACTIONS(12473), + [anon_sym_BSLASHGlspl] = ACTIONS(12473), + [anon_sym_BSLASHGLSpl] = ACTIONS(12473), + [anon_sym_BSLASHglsdisp] = ACTIONS(12473), + [anon_sym_BSLASHglslink] = ACTIONS(12473), + [anon_sym_BSLASHglstext] = ACTIONS(12473), + [anon_sym_BSLASHGlstext] = ACTIONS(12473), + [anon_sym_BSLASHGLStext] = ACTIONS(12473), + [anon_sym_BSLASHglsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12473), + [anon_sym_BSLASHglsplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSplural] = ACTIONS(12473), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHglsname] = ACTIONS(12473), + [anon_sym_BSLASHGlsname] = ACTIONS(12473), + [anon_sym_BSLASHGLSname] = ACTIONS(12473), + [anon_sym_BSLASHglssymbol] = ACTIONS(12473), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12473), + [anon_sym_BSLASHglsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12473), + [anon_sym_BSLASHglsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12473), + [anon_sym_BSLASHglsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12473), + [anon_sym_BSLASHglsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12473), + [anon_sym_BSLASHglsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12473), + [anon_sym_BSLASHnewacronym] = ACTIONS(12473), + [anon_sym_BSLASHacrshort] = ACTIONS(12473), + [anon_sym_BSLASHAcrshort] = ACTIONS(12473), + [anon_sym_BSLASHACRshort] = ACTIONS(12473), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12473), + [anon_sym_BSLASHacrlong] = ACTIONS(12473), + [anon_sym_BSLASHAcrlong] = ACTIONS(12473), + [anon_sym_BSLASHACRlong] = ACTIONS(12473), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12473), + [anon_sym_BSLASHacrfull] = ACTIONS(12473), + [anon_sym_BSLASHAcrfull] = ACTIONS(12473), + [anon_sym_BSLASHACRfull] = ACTIONS(12473), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12473), + [anon_sym_BSLASHacs] = ACTIONS(12473), + [anon_sym_BSLASHAcs] = ACTIONS(12473), + [anon_sym_BSLASHacsp] = ACTIONS(12473), + [anon_sym_BSLASHAcsp] = ACTIONS(12473), + [anon_sym_BSLASHacl] = ACTIONS(12473), + [anon_sym_BSLASHAcl] = ACTIONS(12473), + [anon_sym_BSLASHaclp] = ACTIONS(12473), + [anon_sym_BSLASHAclp] = ACTIONS(12473), + [anon_sym_BSLASHacf] = ACTIONS(12473), + [anon_sym_BSLASHAcf] = ACTIONS(12473), + [anon_sym_BSLASHacfp] = ACTIONS(12473), + [anon_sym_BSLASHAcfp] = ACTIONS(12473), + [anon_sym_BSLASHac] = ACTIONS(12473), + [anon_sym_BSLASHAc] = ACTIONS(12473), + [anon_sym_BSLASHacp] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12473), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12473), + [anon_sym_BSLASHcolor] = ACTIONS(12473), + [anon_sym_BSLASHcolorbox] = ACTIONS(12473), + [anon_sym_BSLASHtextcolor] = ACTIONS(12473), + [anon_sym_BSLASHpagecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12473), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12473), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12473), + }, + [591] = { + [ts_builtin_sym_end] = ACTIONS(12475), + [sym_generic_command_name] = ACTIONS(12477), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12477), + [aux_sym_chapter_token1] = ACTIONS(12477), + [aux_sym_section_token1] = ACTIONS(12477), + [aux_sym_subsection_token1] = ACTIONS(12477), + [aux_sym_subsubsection_token1] = ACTIONS(12477), + [aux_sym_paragraph_token1] = ACTIONS(12477), + [aux_sym_subparagraph_token1] = ACTIONS(12477), + [anon_sym_BSLASHitem] = ACTIONS(12477), + [anon_sym_LBRACK] = ACTIONS(12475), + [anon_sym_RBRACK] = ACTIONS(12475), + [anon_sym_LBRACE] = ACTIONS(12475), + [anon_sym_RBRACE] = ACTIONS(12475), + [anon_sym_LPAREN] = ACTIONS(12475), + [anon_sym_RPAREN] = ACTIONS(12475), + [anon_sym_COMMA] = ACTIONS(12475), + [anon_sym_EQ] = ACTIONS(12475), + [sym_word] = ACTIONS(12475), + [sym_param] = ACTIONS(12475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12475), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12475), + [anon_sym_DOLLAR] = ACTIONS(12477), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12475), + [anon_sym_BSLASHbegin] = ACTIONS(12477), + [anon_sym_BSLASHcaption] = ACTIONS(12477), + [anon_sym_BSLASHcite] = ACTIONS(12477), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCite] = ACTIONS(12477), + [anon_sym_BSLASHnocite] = ACTIONS(12477), + [anon_sym_BSLASHcitet] = ACTIONS(12477), + [anon_sym_BSLASHcitep] = ACTIONS(12477), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteauthor] = ACTIONS(12477), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12477), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitetitle] = ACTIONS(12477), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteyear] = ACTIONS(12477), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitedate] = ACTIONS(12477), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteurl] = ACTIONS(12477), + [anon_sym_BSLASHfullcite] = ACTIONS(12477), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12477), + [anon_sym_BSLASHcitealt] = ACTIONS(12477), + [anon_sym_BSLASHcitealp] = ACTIONS(12477), + [anon_sym_BSLASHcitetext] = ACTIONS(12477), + [anon_sym_BSLASHparencite] = ACTIONS(12477), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHParencite] = ACTIONS(12477), + [anon_sym_BSLASHfootcite] = ACTIONS(12477), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12477), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12477), + [anon_sym_BSLASHtextcite] = ACTIONS(12477), + [anon_sym_BSLASHTextcite] = ACTIONS(12477), + [anon_sym_BSLASHsmartcite] = ACTIONS(12477), + [anon_sym_BSLASHSmartcite] = ACTIONS(12477), + [anon_sym_BSLASHsupercite] = ACTIONS(12477), + [anon_sym_BSLASHautocite] = ACTIONS(12477), + [anon_sym_BSLASHAutocite] = ACTIONS(12477), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHvolcite] = ACTIONS(12477), + [anon_sym_BSLASHVolcite] = ACTIONS(12477), + [anon_sym_BSLASHpvolcite] = ACTIONS(12477), + [anon_sym_BSLASHPvolcite] = ACTIONS(12477), + [anon_sym_BSLASHfvolcite] = ACTIONS(12477), + [anon_sym_BSLASHftvolcite] = ACTIONS(12477), + [anon_sym_BSLASHsvolcite] = ACTIONS(12477), + [anon_sym_BSLASHSvolcite] = ACTIONS(12477), + [anon_sym_BSLASHtvolcite] = ACTIONS(12477), + [anon_sym_BSLASHTvolcite] = ACTIONS(12477), + [anon_sym_BSLASHavolcite] = ACTIONS(12477), + [anon_sym_BSLASHAvolcite] = ACTIONS(12477), + [anon_sym_BSLASHnotecite] = ACTIONS(12477), + [anon_sym_BSLASHpnotecite] = ACTIONS(12477), + [anon_sym_BSLASHPnotecite] = ACTIONS(12477), + [anon_sym_BSLASHfnotecite] = ACTIONS(12477), + [anon_sym_BSLASHusepackage] = ACTIONS(12477), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12477), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12477), + [anon_sym_BSLASHinclude] = ACTIONS(12477), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12477), + [anon_sym_BSLASHinput] = ACTIONS(12477), + [anon_sym_BSLASHsubfile] = ACTIONS(12477), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12477), + [anon_sym_BSLASHbibliography] = ACTIONS(12477), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12477), + [anon_sym_BSLASHincludesvg] = ACTIONS(12477), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12477), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12477), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12477), + [anon_sym_BSLASHimport] = ACTIONS(12477), + [anon_sym_BSLASHsubimport] = ACTIONS(12477), + [anon_sym_BSLASHinputfrom] = ACTIONS(12477), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12477), + [anon_sym_BSLASHincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHlabel] = ACTIONS(12477), + [anon_sym_BSLASHref] = ACTIONS(12477), + [anon_sym_BSLASHvref] = ACTIONS(12477), + [anon_sym_BSLASHVref] = ACTIONS(12477), + [anon_sym_BSLASHautoref] = ACTIONS(12477), + [anon_sym_BSLASHpageref] = ACTIONS(12477), + [anon_sym_BSLASHcref] = ACTIONS(12477), + [anon_sym_BSLASHCref] = ACTIONS(12477), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnameCref] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHlabelcref] = ACTIONS(12477), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12477), + [anon_sym_BSLASHeqref] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange] = ACTIONS(12477), + [anon_sym_BSLASHCrefrange] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewlabel] = ACTIONS(12477), + [anon_sym_BSLASHnewcommand] = ACTIONS(12477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12477), + [anon_sym_BSLASHgls] = ACTIONS(12477), + [anon_sym_BSLASHGls] = ACTIONS(12477), + [anon_sym_BSLASHGLS] = ACTIONS(12477), + [anon_sym_BSLASHglspl] = ACTIONS(12477), + [anon_sym_BSLASHGlspl] = ACTIONS(12477), + [anon_sym_BSLASHGLSpl] = ACTIONS(12477), + [anon_sym_BSLASHglsdisp] = ACTIONS(12477), + [anon_sym_BSLASHglslink] = ACTIONS(12477), + [anon_sym_BSLASHglstext] = ACTIONS(12477), + [anon_sym_BSLASHGlstext] = ACTIONS(12477), + [anon_sym_BSLASHGLStext] = ACTIONS(12477), + [anon_sym_BSLASHglsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12477), + [anon_sym_BSLASHglsplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSplural] = ACTIONS(12477), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHglsname] = ACTIONS(12477), + [anon_sym_BSLASHGlsname] = ACTIONS(12477), + [anon_sym_BSLASHGLSname] = ACTIONS(12477), + [anon_sym_BSLASHglssymbol] = ACTIONS(12477), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12477), + [anon_sym_BSLASHglsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12477), + [anon_sym_BSLASHglsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12477), + [anon_sym_BSLASHglsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12477), + [anon_sym_BSLASHglsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12477), + [anon_sym_BSLASHglsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12477), + [anon_sym_BSLASHnewacronym] = ACTIONS(12477), + [anon_sym_BSLASHacrshort] = ACTIONS(12477), + [anon_sym_BSLASHAcrshort] = ACTIONS(12477), + [anon_sym_BSLASHACRshort] = ACTIONS(12477), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12477), + [anon_sym_BSLASHacrlong] = ACTIONS(12477), + [anon_sym_BSLASHAcrlong] = ACTIONS(12477), + [anon_sym_BSLASHACRlong] = ACTIONS(12477), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12477), + [anon_sym_BSLASHacrfull] = ACTIONS(12477), + [anon_sym_BSLASHAcrfull] = ACTIONS(12477), + [anon_sym_BSLASHACRfull] = ACTIONS(12477), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12477), + [anon_sym_BSLASHacs] = ACTIONS(12477), + [anon_sym_BSLASHAcs] = ACTIONS(12477), + [anon_sym_BSLASHacsp] = ACTIONS(12477), + [anon_sym_BSLASHAcsp] = ACTIONS(12477), + [anon_sym_BSLASHacl] = ACTIONS(12477), + [anon_sym_BSLASHAcl] = ACTIONS(12477), + [anon_sym_BSLASHaclp] = ACTIONS(12477), + [anon_sym_BSLASHAclp] = ACTIONS(12477), + [anon_sym_BSLASHacf] = ACTIONS(12477), + [anon_sym_BSLASHAcf] = ACTIONS(12477), + [anon_sym_BSLASHacfp] = ACTIONS(12477), + [anon_sym_BSLASHAcfp] = ACTIONS(12477), + [anon_sym_BSLASHac] = ACTIONS(12477), + [anon_sym_BSLASHAc] = ACTIONS(12477), + [anon_sym_BSLASHacp] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12477), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12477), + [anon_sym_BSLASHcolor] = ACTIONS(12477), + [anon_sym_BSLASHcolorbox] = ACTIONS(12477), + [anon_sym_BSLASHtextcolor] = ACTIONS(12477), + [anon_sym_BSLASHpagecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12477), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12477), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12477), + }, + [592] = { + [ts_builtin_sym_end] = ACTIONS(12479), + [sym_generic_command_name] = ACTIONS(12481), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12481), + [aux_sym_chapter_token1] = ACTIONS(12481), + [aux_sym_section_token1] = ACTIONS(12481), + [aux_sym_subsection_token1] = ACTIONS(12481), + [aux_sym_subsubsection_token1] = ACTIONS(12481), + [aux_sym_paragraph_token1] = ACTIONS(12481), + [aux_sym_subparagraph_token1] = ACTIONS(12481), + [anon_sym_BSLASHitem] = ACTIONS(12481), + [anon_sym_LBRACK] = ACTIONS(12479), + [anon_sym_RBRACK] = ACTIONS(12479), + [anon_sym_LBRACE] = ACTIONS(12479), + [anon_sym_RBRACE] = ACTIONS(12479), + [anon_sym_LPAREN] = ACTIONS(12479), + [anon_sym_RPAREN] = ACTIONS(12479), + [anon_sym_COMMA] = ACTIONS(12479), + [anon_sym_EQ] = ACTIONS(12479), + [sym_word] = ACTIONS(12479), + [sym_param] = ACTIONS(12479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12479), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12479), + [anon_sym_DOLLAR] = ACTIONS(12481), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12479), + [anon_sym_BSLASHbegin] = ACTIONS(12481), + [anon_sym_BSLASHcaption] = ACTIONS(12481), + [anon_sym_BSLASHcite] = ACTIONS(12481), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCite] = ACTIONS(12481), + [anon_sym_BSLASHnocite] = ACTIONS(12481), + [anon_sym_BSLASHcitet] = ACTIONS(12481), + [anon_sym_BSLASHcitep] = ACTIONS(12481), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteauthor] = ACTIONS(12481), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12481), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitetitle] = ACTIONS(12481), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteyear] = ACTIONS(12481), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitedate] = ACTIONS(12481), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteurl] = ACTIONS(12481), + [anon_sym_BSLASHfullcite] = ACTIONS(12481), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12481), + [anon_sym_BSLASHcitealt] = ACTIONS(12481), + [anon_sym_BSLASHcitealp] = ACTIONS(12481), + [anon_sym_BSLASHcitetext] = ACTIONS(12481), + [anon_sym_BSLASHparencite] = ACTIONS(12481), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHParencite] = ACTIONS(12481), + [anon_sym_BSLASHfootcite] = ACTIONS(12481), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12481), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12481), + [anon_sym_BSLASHtextcite] = ACTIONS(12481), + [anon_sym_BSLASHTextcite] = ACTIONS(12481), + [anon_sym_BSLASHsmartcite] = ACTIONS(12481), + [anon_sym_BSLASHSmartcite] = ACTIONS(12481), + [anon_sym_BSLASHsupercite] = ACTIONS(12481), + [anon_sym_BSLASHautocite] = ACTIONS(12481), + [anon_sym_BSLASHAutocite] = ACTIONS(12481), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHvolcite] = ACTIONS(12481), + [anon_sym_BSLASHVolcite] = ACTIONS(12481), + [anon_sym_BSLASHpvolcite] = ACTIONS(12481), + [anon_sym_BSLASHPvolcite] = ACTIONS(12481), + [anon_sym_BSLASHfvolcite] = ACTIONS(12481), + [anon_sym_BSLASHftvolcite] = ACTIONS(12481), + [anon_sym_BSLASHsvolcite] = ACTIONS(12481), + [anon_sym_BSLASHSvolcite] = ACTIONS(12481), + [anon_sym_BSLASHtvolcite] = ACTIONS(12481), + [anon_sym_BSLASHTvolcite] = ACTIONS(12481), + [anon_sym_BSLASHavolcite] = ACTIONS(12481), + [anon_sym_BSLASHAvolcite] = ACTIONS(12481), + [anon_sym_BSLASHnotecite] = ACTIONS(12481), + [anon_sym_BSLASHpnotecite] = ACTIONS(12481), + [anon_sym_BSLASHPnotecite] = ACTIONS(12481), + [anon_sym_BSLASHfnotecite] = ACTIONS(12481), + [anon_sym_BSLASHusepackage] = ACTIONS(12481), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12481), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12481), + [anon_sym_BSLASHinclude] = ACTIONS(12481), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12481), + [anon_sym_BSLASHinput] = ACTIONS(12481), + [anon_sym_BSLASHsubfile] = ACTIONS(12481), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12481), + [anon_sym_BSLASHbibliography] = ACTIONS(12481), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12481), + [anon_sym_BSLASHincludesvg] = ACTIONS(12481), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12481), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12481), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12481), + [anon_sym_BSLASHimport] = ACTIONS(12481), + [anon_sym_BSLASHsubimport] = ACTIONS(12481), + [anon_sym_BSLASHinputfrom] = ACTIONS(12481), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12481), + [anon_sym_BSLASHincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHlabel] = ACTIONS(12481), + [anon_sym_BSLASHref] = ACTIONS(12481), + [anon_sym_BSLASHvref] = ACTIONS(12481), + [anon_sym_BSLASHVref] = ACTIONS(12481), + [anon_sym_BSLASHautoref] = ACTIONS(12481), + [anon_sym_BSLASHpageref] = ACTIONS(12481), + [anon_sym_BSLASHcref] = ACTIONS(12481), + [anon_sym_BSLASHCref] = ACTIONS(12481), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnameCref] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHlabelcref] = ACTIONS(12481), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12481), + [anon_sym_BSLASHeqref] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange] = ACTIONS(12481), + [anon_sym_BSLASHCrefrange] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewlabel] = ACTIONS(12481), + [anon_sym_BSLASHnewcommand] = ACTIONS(12481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12481), + [anon_sym_BSLASHgls] = ACTIONS(12481), + [anon_sym_BSLASHGls] = ACTIONS(12481), + [anon_sym_BSLASHGLS] = ACTIONS(12481), + [anon_sym_BSLASHglspl] = ACTIONS(12481), + [anon_sym_BSLASHGlspl] = ACTIONS(12481), + [anon_sym_BSLASHGLSpl] = ACTIONS(12481), + [anon_sym_BSLASHglsdisp] = ACTIONS(12481), + [anon_sym_BSLASHglslink] = ACTIONS(12481), + [anon_sym_BSLASHglstext] = ACTIONS(12481), + [anon_sym_BSLASHGlstext] = ACTIONS(12481), + [anon_sym_BSLASHGLStext] = ACTIONS(12481), + [anon_sym_BSLASHglsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12481), + [anon_sym_BSLASHglsplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSplural] = ACTIONS(12481), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHglsname] = ACTIONS(12481), + [anon_sym_BSLASHGlsname] = ACTIONS(12481), + [anon_sym_BSLASHGLSname] = ACTIONS(12481), + [anon_sym_BSLASHglssymbol] = ACTIONS(12481), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12481), + [anon_sym_BSLASHglsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12481), + [anon_sym_BSLASHglsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12481), + [anon_sym_BSLASHglsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12481), + [anon_sym_BSLASHglsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12481), + [anon_sym_BSLASHglsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12481), + [anon_sym_BSLASHnewacronym] = ACTIONS(12481), + [anon_sym_BSLASHacrshort] = ACTIONS(12481), + [anon_sym_BSLASHAcrshort] = ACTIONS(12481), + [anon_sym_BSLASHACRshort] = ACTIONS(12481), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12481), + [anon_sym_BSLASHacrlong] = ACTIONS(12481), + [anon_sym_BSLASHAcrlong] = ACTIONS(12481), + [anon_sym_BSLASHACRlong] = ACTIONS(12481), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12481), + [anon_sym_BSLASHacrfull] = ACTIONS(12481), + [anon_sym_BSLASHAcrfull] = ACTIONS(12481), + [anon_sym_BSLASHACRfull] = ACTIONS(12481), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12481), + [anon_sym_BSLASHacs] = ACTIONS(12481), + [anon_sym_BSLASHAcs] = ACTIONS(12481), + [anon_sym_BSLASHacsp] = ACTIONS(12481), + [anon_sym_BSLASHAcsp] = ACTIONS(12481), + [anon_sym_BSLASHacl] = ACTIONS(12481), + [anon_sym_BSLASHAcl] = ACTIONS(12481), + [anon_sym_BSLASHaclp] = ACTIONS(12481), + [anon_sym_BSLASHAclp] = ACTIONS(12481), + [anon_sym_BSLASHacf] = ACTIONS(12481), + [anon_sym_BSLASHAcf] = ACTIONS(12481), + [anon_sym_BSLASHacfp] = ACTIONS(12481), + [anon_sym_BSLASHAcfp] = ACTIONS(12481), + [anon_sym_BSLASHac] = ACTIONS(12481), + [anon_sym_BSLASHAc] = ACTIONS(12481), + [anon_sym_BSLASHacp] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12481), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12481), + [anon_sym_BSLASHcolor] = ACTIONS(12481), + [anon_sym_BSLASHcolorbox] = ACTIONS(12481), + [anon_sym_BSLASHtextcolor] = ACTIONS(12481), + [anon_sym_BSLASHpagecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12481), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12481), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12481), + }, + [593] = { + [ts_builtin_sym_end] = ACTIONS(12483), + [sym_generic_command_name] = ACTIONS(12485), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12485), + [aux_sym_chapter_token1] = ACTIONS(12485), + [aux_sym_section_token1] = ACTIONS(12485), + [aux_sym_subsection_token1] = ACTIONS(12485), + [aux_sym_subsubsection_token1] = ACTIONS(12485), + [aux_sym_paragraph_token1] = ACTIONS(12485), + [aux_sym_subparagraph_token1] = ACTIONS(12485), + [anon_sym_BSLASHitem] = ACTIONS(12485), + [anon_sym_LBRACK] = ACTIONS(12483), + [anon_sym_RBRACK] = ACTIONS(12483), + [anon_sym_LBRACE] = ACTIONS(12483), + [anon_sym_RBRACE] = ACTIONS(12483), + [anon_sym_LPAREN] = ACTIONS(12483), + [anon_sym_RPAREN] = ACTIONS(12483), + [anon_sym_COMMA] = ACTIONS(12483), + [anon_sym_EQ] = ACTIONS(12483), + [sym_word] = ACTIONS(12483), + [sym_param] = ACTIONS(12483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12483), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12483), + [anon_sym_DOLLAR] = ACTIONS(12485), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12483), + [anon_sym_BSLASHbegin] = ACTIONS(12485), + [anon_sym_BSLASHcaption] = ACTIONS(12485), + [anon_sym_BSLASHcite] = ACTIONS(12485), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCite] = ACTIONS(12485), + [anon_sym_BSLASHnocite] = ACTIONS(12485), + [anon_sym_BSLASHcitet] = ACTIONS(12485), + [anon_sym_BSLASHcitep] = ACTIONS(12485), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteauthor] = ACTIONS(12485), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12485), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitetitle] = ACTIONS(12485), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteyear] = ACTIONS(12485), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitedate] = ACTIONS(12485), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteurl] = ACTIONS(12485), + [anon_sym_BSLASHfullcite] = ACTIONS(12485), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12485), + [anon_sym_BSLASHcitealt] = ACTIONS(12485), + [anon_sym_BSLASHcitealp] = ACTIONS(12485), + [anon_sym_BSLASHcitetext] = ACTIONS(12485), + [anon_sym_BSLASHparencite] = ACTIONS(12485), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHParencite] = ACTIONS(12485), + [anon_sym_BSLASHfootcite] = ACTIONS(12485), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12485), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12485), + [anon_sym_BSLASHtextcite] = ACTIONS(12485), + [anon_sym_BSLASHTextcite] = ACTIONS(12485), + [anon_sym_BSLASHsmartcite] = ACTIONS(12485), + [anon_sym_BSLASHSmartcite] = ACTIONS(12485), + [anon_sym_BSLASHsupercite] = ACTIONS(12485), + [anon_sym_BSLASHautocite] = ACTIONS(12485), + [anon_sym_BSLASHAutocite] = ACTIONS(12485), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHvolcite] = ACTIONS(12485), + [anon_sym_BSLASHVolcite] = ACTIONS(12485), + [anon_sym_BSLASHpvolcite] = ACTIONS(12485), + [anon_sym_BSLASHPvolcite] = ACTIONS(12485), + [anon_sym_BSLASHfvolcite] = ACTIONS(12485), + [anon_sym_BSLASHftvolcite] = ACTIONS(12485), + [anon_sym_BSLASHsvolcite] = ACTIONS(12485), + [anon_sym_BSLASHSvolcite] = ACTIONS(12485), + [anon_sym_BSLASHtvolcite] = ACTIONS(12485), + [anon_sym_BSLASHTvolcite] = ACTIONS(12485), + [anon_sym_BSLASHavolcite] = ACTIONS(12485), + [anon_sym_BSLASHAvolcite] = ACTIONS(12485), + [anon_sym_BSLASHnotecite] = ACTIONS(12485), + [anon_sym_BSLASHpnotecite] = ACTIONS(12485), + [anon_sym_BSLASHPnotecite] = ACTIONS(12485), + [anon_sym_BSLASHfnotecite] = ACTIONS(12485), + [anon_sym_BSLASHusepackage] = ACTIONS(12485), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12485), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12485), + [anon_sym_BSLASHinclude] = ACTIONS(12485), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12485), + [anon_sym_BSLASHinput] = ACTIONS(12485), + [anon_sym_BSLASHsubfile] = ACTIONS(12485), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12485), + [anon_sym_BSLASHbibliography] = ACTIONS(12485), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12485), + [anon_sym_BSLASHincludesvg] = ACTIONS(12485), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12485), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12485), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12485), + [anon_sym_BSLASHimport] = ACTIONS(12485), + [anon_sym_BSLASHsubimport] = ACTIONS(12485), + [anon_sym_BSLASHinputfrom] = ACTIONS(12485), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12485), + [anon_sym_BSLASHincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHlabel] = ACTIONS(12485), + [anon_sym_BSLASHref] = ACTIONS(12485), + [anon_sym_BSLASHvref] = ACTIONS(12485), + [anon_sym_BSLASHVref] = ACTIONS(12485), + [anon_sym_BSLASHautoref] = ACTIONS(12485), + [anon_sym_BSLASHpageref] = ACTIONS(12485), + [anon_sym_BSLASHcref] = ACTIONS(12485), + [anon_sym_BSLASHCref] = ACTIONS(12485), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnameCref] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHlabelcref] = ACTIONS(12485), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12485), + [anon_sym_BSLASHeqref] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange] = ACTIONS(12485), + [anon_sym_BSLASHCrefrange] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewlabel] = ACTIONS(12485), + [anon_sym_BSLASHnewcommand] = ACTIONS(12485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12485), + [anon_sym_BSLASHgls] = ACTIONS(12485), + [anon_sym_BSLASHGls] = ACTIONS(12485), + [anon_sym_BSLASHGLS] = ACTIONS(12485), + [anon_sym_BSLASHglspl] = ACTIONS(12485), + [anon_sym_BSLASHGlspl] = ACTIONS(12485), + [anon_sym_BSLASHGLSpl] = ACTIONS(12485), + [anon_sym_BSLASHglsdisp] = ACTIONS(12485), + [anon_sym_BSLASHglslink] = ACTIONS(12485), + [anon_sym_BSLASHglstext] = ACTIONS(12485), + [anon_sym_BSLASHGlstext] = ACTIONS(12485), + [anon_sym_BSLASHGLStext] = ACTIONS(12485), + [anon_sym_BSLASHglsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12485), + [anon_sym_BSLASHglsplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSplural] = ACTIONS(12485), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHglsname] = ACTIONS(12485), + [anon_sym_BSLASHGlsname] = ACTIONS(12485), + [anon_sym_BSLASHGLSname] = ACTIONS(12485), + [anon_sym_BSLASHglssymbol] = ACTIONS(12485), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12485), + [anon_sym_BSLASHglsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12485), + [anon_sym_BSLASHglsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12485), + [anon_sym_BSLASHglsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12485), + [anon_sym_BSLASHglsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12485), + [anon_sym_BSLASHglsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12485), + [anon_sym_BSLASHnewacronym] = ACTIONS(12485), + [anon_sym_BSLASHacrshort] = ACTIONS(12485), + [anon_sym_BSLASHAcrshort] = ACTIONS(12485), + [anon_sym_BSLASHACRshort] = ACTIONS(12485), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12485), + [anon_sym_BSLASHacrlong] = ACTIONS(12485), + [anon_sym_BSLASHAcrlong] = ACTIONS(12485), + [anon_sym_BSLASHACRlong] = ACTIONS(12485), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12485), + [anon_sym_BSLASHacrfull] = ACTIONS(12485), + [anon_sym_BSLASHAcrfull] = ACTIONS(12485), + [anon_sym_BSLASHACRfull] = ACTIONS(12485), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12485), + [anon_sym_BSLASHacs] = ACTIONS(12485), + [anon_sym_BSLASHAcs] = ACTIONS(12485), + [anon_sym_BSLASHacsp] = ACTIONS(12485), + [anon_sym_BSLASHAcsp] = ACTIONS(12485), + [anon_sym_BSLASHacl] = ACTIONS(12485), + [anon_sym_BSLASHAcl] = ACTIONS(12485), + [anon_sym_BSLASHaclp] = ACTIONS(12485), + [anon_sym_BSLASHAclp] = ACTIONS(12485), + [anon_sym_BSLASHacf] = ACTIONS(12485), + [anon_sym_BSLASHAcf] = ACTIONS(12485), + [anon_sym_BSLASHacfp] = ACTIONS(12485), + [anon_sym_BSLASHAcfp] = ACTIONS(12485), + [anon_sym_BSLASHac] = ACTIONS(12485), + [anon_sym_BSLASHAc] = ACTIONS(12485), + [anon_sym_BSLASHacp] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12485), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12485), + [anon_sym_BSLASHcolor] = ACTIONS(12485), + [anon_sym_BSLASHcolorbox] = ACTIONS(12485), + [anon_sym_BSLASHtextcolor] = ACTIONS(12485), + [anon_sym_BSLASHpagecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12485), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12485), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12485), + }, + [594] = { + [ts_builtin_sym_end] = ACTIONS(12487), + [sym_generic_command_name] = ACTIONS(12489), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12489), + [aux_sym_chapter_token1] = ACTIONS(12489), + [aux_sym_section_token1] = ACTIONS(12489), + [aux_sym_subsection_token1] = ACTIONS(12489), + [aux_sym_subsubsection_token1] = ACTIONS(12489), + [aux_sym_paragraph_token1] = ACTIONS(12489), + [aux_sym_subparagraph_token1] = ACTIONS(12489), + [anon_sym_BSLASHitem] = ACTIONS(12489), + [anon_sym_LBRACK] = ACTIONS(12487), + [anon_sym_RBRACK] = ACTIONS(12487), + [anon_sym_LBRACE] = ACTIONS(12487), + [anon_sym_RBRACE] = ACTIONS(12487), + [anon_sym_LPAREN] = ACTIONS(12487), + [anon_sym_RPAREN] = ACTIONS(12487), + [anon_sym_COMMA] = ACTIONS(12487), + [anon_sym_EQ] = ACTIONS(12487), + [sym_word] = ACTIONS(12487), + [sym_param] = ACTIONS(12487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12487), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12487), + [anon_sym_DOLLAR] = ACTIONS(12489), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12487), + [anon_sym_BSLASHbegin] = ACTIONS(12489), + [anon_sym_BSLASHcaption] = ACTIONS(12489), + [anon_sym_BSLASHcite] = ACTIONS(12489), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCite] = ACTIONS(12489), + [anon_sym_BSLASHnocite] = ACTIONS(12489), + [anon_sym_BSLASHcitet] = ACTIONS(12489), + [anon_sym_BSLASHcitep] = ACTIONS(12489), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteauthor] = ACTIONS(12489), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12489), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitetitle] = ACTIONS(12489), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteyear] = ACTIONS(12489), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitedate] = ACTIONS(12489), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteurl] = ACTIONS(12489), + [anon_sym_BSLASHfullcite] = ACTIONS(12489), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12489), + [anon_sym_BSLASHcitealt] = ACTIONS(12489), + [anon_sym_BSLASHcitealp] = ACTIONS(12489), + [anon_sym_BSLASHcitetext] = ACTIONS(12489), + [anon_sym_BSLASHparencite] = ACTIONS(12489), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHParencite] = ACTIONS(12489), + [anon_sym_BSLASHfootcite] = ACTIONS(12489), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12489), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12489), + [anon_sym_BSLASHtextcite] = ACTIONS(12489), + [anon_sym_BSLASHTextcite] = ACTIONS(12489), + [anon_sym_BSLASHsmartcite] = ACTIONS(12489), + [anon_sym_BSLASHSmartcite] = ACTIONS(12489), + [anon_sym_BSLASHsupercite] = ACTIONS(12489), + [anon_sym_BSLASHautocite] = ACTIONS(12489), + [anon_sym_BSLASHAutocite] = ACTIONS(12489), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHvolcite] = ACTIONS(12489), + [anon_sym_BSLASHVolcite] = ACTIONS(12489), + [anon_sym_BSLASHpvolcite] = ACTIONS(12489), + [anon_sym_BSLASHPvolcite] = ACTIONS(12489), + [anon_sym_BSLASHfvolcite] = ACTIONS(12489), + [anon_sym_BSLASHftvolcite] = ACTIONS(12489), + [anon_sym_BSLASHsvolcite] = ACTIONS(12489), + [anon_sym_BSLASHSvolcite] = ACTIONS(12489), + [anon_sym_BSLASHtvolcite] = ACTIONS(12489), + [anon_sym_BSLASHTvolcite] = ACTIONS(12489), + [anon_sym_BSLASHavolcite] = ACTIONS(12489), + [anon_sym_BSLASHAvolcite] = ACTIONS(12489), + [anon_sym_BSLASHnotecite] = ACTIONS(12489), + [anon_sym_BSLASHpnotecite] = ACTIONS(12489), + [anon_sym_BSLASHPnotecite] = ACTIONS(12489), + [anon_sym_BSLASHfnotecite] = ACTIONS(12489), + [anon_sym_BSLASHusepackage] = ACTIONS(12489), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12489), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12489), + [anon_sym_BSLASHinclude] = ACTIONS(12489), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12489), + [anon_sym_BSLASHinput] = ACTIONS(12489), + [anon_sym_BSLASHsubfile] = ACTIONS(12489), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12489), + [anon_sym_BSLASHbibliography] = ACTIONS(12489), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12489), + [anon_sym_BSLASHincludesvg] = ACTIONS(12489), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12489), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12489), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12489), + [anon_sym_BSLASHimport] = ACTIONS(12489), + [anon_sym_BSLASHsubimport] = ACTIONS(12489), + [anon_sym_BSLASHinputfrom] = ACTIONS(12489), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12489), + [anon_sym_BSLASHincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHlabel] = ACTIONS(12489), + [anon_sym_BSLASHref] = ACTIONS(12489), + [anon_sym_BSLASHvref] = ACTIONS(12489), + [anon_sym_BSLASHVref] = ACTIONS(12489), + [anon_sym_BSLASHautoref] = ACTIONS(12489), + [anon_sym_BSLASHpageref] = ACTIONS(12489), + [anon_sym_BSLASHcref] = ACTIONS(12489), + [anon_sym_BSLASHCref] = ACTIONS(12489), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnameCref] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHlabelcref] = ACTIONS(12489), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12489), + [anon_sym_BSLASHeqref] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange] = ACTIONS(12489), + [anon_sym_BSLASHCrefrange] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewlabel] = ACTIONS(12489), + [anon_sym_BSLASHnewcommand] = ACTIONS(12489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12489), + [anon_sym_BSLASHgls] = ACTIONS(12489), + [anon_sym_BSLASHGls] = ACTIONS(12489), + [anon_sym_BSLASHGLS] = ACTIONS(12489), + [anon_sym_BSLASHglspl] = ACTIONS(12489), + [anon_sym_BSLASHGlspl] = ACTIONS(12489), + [anon_sym_BSLASHGLSpl] = ACTIONS(12489), + [anon_sym_BSLASHglsdisp] = ACTIONS(12489), + [anon_sym_BSLASHglslink] = ACTIONS(12489), + [anon_sym_BSLASHglstext] = ACTIONS(12489), + [anon_sym_BSLASHGlstext] = ACTIONS(12489), + [anon_sym_BSLASHGLStext] = ACTIONS(12489), + [anon_sym_BSLASHglsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12489), + [anon_sym_BSLASHglsplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSplural] = ACTIONS(12489), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHglsname] = ACTIONS(12489), + [anon_sym_BSLASHGlsname] = ACTIONS(12489), + [anon_sym_BSLASHGLSname] = ACTIONS(12489), + [anon_sym_BSLASHglssymbol] = ACTIONS(12489), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12489), + [anon_sym_BSLASHglsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12489), + [anon_sym_BSLASHglsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12489), + [anon_sym_BSLASHglsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12489), + [anon_sym_BSLASHglsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12489), + [anon_sym_BSLASHglsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12489), + [anon_sym_BSLASHnewacronym] = ACTIONS(12489), + [anon_sym_BSLASHacrshort] = ACTIONS(12489), + [anon_sym_BSLASHAcrshort] = ACTIONS(12489), + [anon_sym_BSLASHACRshort] = ACTIONS(12489), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12489), + [anon_sym_BSLASHacrlong] = ACTIONS(12489), + [anon_sym_BSLASHAcrlong] = ACTIONS(12489), + [anon_sym_BSLASHACRlong] = ACTIONS(12489), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12489), + [anon_sym_BSLASHacrfull] = ACTIONS(12489), + [anon_sym_BSLASHAcrfull] = ACTIONS(12489), + [anon_sym_BSLASHACRfull] = ACTIONS(12489), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12489), + [anon_sym_BSLASHacs] = ACTIONS(12489), + [anon_sym_BSLASHAcs] = ACTIONS(12489), + [anon_sym_BSLASHacsp] = ACTIONS(12489), + [anon_sym_BSLASHAcsp] = ACTIONS(12489), + [anon_sym_BSLASHacl] = ACTIONS(12489), + [anon_sym_BSLASHAcl] = ACTIONS(12489), + [anon_sym_BSLASHaclp] = ACTIONS(12489), + [anon_sym_BSLASHAclp] = ACTIONS(12489), + [anon_sym_BSLASHacf] = ACTIONS(12489), + [anon_sym_BSLASHAcf] = ACTIONS(12489), + [anon_sym_BSLASHacfp] = ACTIONS(12489), + [anon_sym_BSLASHAcfp] = ACTIONS(12489), + [anon_sym_BSLASHac] = ACTIONS(12489), + [anon_sym_BSLASHAc] = ACTIONS(12489), + [anon_sym_BSLASHacp] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12489), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12489), + [anon_sym_BSLASHcolor] = ACTIONS(12489), + [anon_sym_BSLASHcolorbox] = ACTIONS(12489), + [anon_sym_BSLASHtextcolor] = ACTIONS(12489), + [anon_sym_BSLASHpagecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12489), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12489), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12489), + }, + [595] = { + [ts_builtin_sym_end] = ACTIONS(12491), + [sym_generic_command_name] = ACTIONS(12493), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12493), + [aux_sym_chapter_token1] = ACTIONS(12493), + [aux_sym_section_token1] = ACTIONS(12493), + [aux_sym_subsection_token1] = ACTIONS(12493), + [aux_sym_subsubsection_token1] = ACTIONS(12493), + [aux_sym_paragraph_token1] = ACTIONS(12493), + [aux_sym_subparagraph_token1] = ACTIONS(12493), + [anon_sym_BSLASHitem] = ACTIONS(12493), + [anon_sym_LBRACK] = ACTIONS(12491), + [anon_sym_RBRACK] = ACTIONS(12491), + [anon_sym_LBRACE] = ACTIONS(12491), + [anon_sym_RBRACE] = ACTIONS(12491), + [anon_sym_LPAREN] = ACTIONS(12491), + [anon_sym_RPAREN] = ACTIONS(12491), + [anon_sym_COMMA] = ACTIONS(12491), + [anon_sym_EQ] = ACTIONS(12491), + [sym_word] = ACTIONS(12491), + [sym_param] = ACTIONS(12491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12491), + [anon_sym_DOLLAR] = ACTIONS(12493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12491), + [anon_sym_BSLASHbegin] = ACTIONS(12493), + [anon_sym_BSLASHcaption] = ACTIONS(12493), + [anon_sym_BSLASHcite] = ACTIONS(12493), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCite] = ACTIONS(12493), + [anon_sym_BSLASHnocite] = ACTIONS(12493), + [anon_sym_BSLASHcitet] = ACTIONS(12493), + [anon_sym_BSLASHcitep] = ACTIONS(12493), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteauthor] = ACTIONS(12493), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12493), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitetitle] = ACTIONS(12493), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteyear] = ACTIONS(12493), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitedate] = ACTIONS(12493), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteurl] = ACTIONS(12493), + [anon_sym_BSLASHfullcite] = ACTIONS(12493), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12493), + [anon_sym_BSLASHcitealt] = ACTIONS(12493), + [anon_sym_BSLASHcitealp] = ACTIONS(12493), + [anon_sym_BSLASHcitetext] = ACTIONS(12493), + [anon_sym_BSLASHparencite] = ACTIONS(12493), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHParencite] = ACTIONS(12493), + [anon_sym_BSLASHfootcite] = ACTIONS(12493), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12493), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12493), + [anon_sym_BSLASHtextcite] = ACTIONS(12493), + [anon_sym_BSLASHTextcite] = ACTIONS(12493), + [anon_sym_BSLASHsmartcite] = ACTIONS(12493), + [anon_sym_BSLASHSmartcite] = ACTIONS(12493), + [anon_sym_BSLASHsupercite] = ACTIONS(12493), + [anon_sym_BSLASHautocite] = ACTIONS(12493), + [anon_sym_BSLASHAutocite] = ACTIONS(12493), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHvolcite] = ACTIONS(12493), + [anon_sym_BSLASHVolcite] = ACTIONS(12493), + [anon_sym_BSLASHpvolcite] = ACTIONS(12493), + [anon_sym_BSLASHPvolcite] = ACTIONS(12493), + [anon_sym_BSLASHfvolcite] = ACTIONS(12493), + [anon_sym_BSLASHftvolcite] = ACTIONS(12493), + [anon_sym_BSLASHsvolcite] = ACTIONS(12493), + [anon_sym_BSLASHSvolcite] = ACTIONS(12493), + [anon_sym_BSLASHtvolcite] = ACTIONS(12493), + [anon_sym_BSLASHTvolcite] = ACTIONS(12493), + [anon_sym_BSLASHavolcite] = ACTIONS(12493), + [anon_sym_BSLASHAvolcite] = ACTIONS(12493), + [anon_sym_BSLASHnotecite] = ACTIONS(12493), + [anon_sym_BSLASHpnotecite] = ACTIONS(12493), + [anon_sym_BSLASHPnotecite] = ACTIONS(12493), + [anon_sym_BSLASHfnotecite] = ACTIONS(12493), + [anon_sym_BSLASHusepackage] = ACTIONS(12493), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12493), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12493), + [anon_sym_BSLASHinclude] = ACTIONS(12493), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12493), + [anon_sym_BSLASHinput] = ACTIONS(12493), + [anon_sym_BSLASHsubfile] = ACTIONS(12493), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12493), + [anon_sym_BSLASHbibliography] = ACTIONS(12493), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12493), + [anon_sym_BSLASHincludesvg] = ACTIONS(12493), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12493), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12493), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12493), + [anon_sym_BSLASHimport] = ACTIONS(12493), + [anon_sym_BSLASHsubimport] = ACTIONS(12493), + [anon_sym_BSLASHinputfrom] = ACTIONS(12493), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12493), + [anon_sym_BSLASHincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHlabel] = ACTIONS(12493), + [anon_sym_BSLASHref] = ACTIONS(12493), + [anon_sym_BSLASHvref] = ACTIONS(12493), + [anon_sym_BSLASHVref] = ACTIONS(12493), + [anon_sym_BSLASHautoref] = ACTIONS(12493), + [anon_sym_BSLASHpageref] = ACTIONS(12493), + [anon_sym_BSLASHcref] = ACTIONS(12493), + [anon_sym_BSLASHCref] = ACTIONS(12493), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnameCref] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHlabelcref] = ACTIONS(12493), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12493), + [anon_sym_BSLASHeqref] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange] = ACTIONS(12493), + [anon_sym_BSLASHCrefrange] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewlabel] = ACTIONS(12493), + [anon_sym_BSLASHnewcommand] = ACTIONS(12493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12493), + [anon_sym_BSLASHgls] = ACTIONS(12493), + [anon_sym_BSLASHGls] = ACTIONS(12493), + [anon_sym_BSLASHGLS] = ACTIONS(12493), + [anon_sym_BSLASHglspl] = ACTIONS(12493), + [anon_sym_BSLASHGlspl] = ACTIONS(12493), + [anon_sym_BSLASHGLSpl] = ACTIONS(12493), + [anon_sym_BSLASHglsdisp] = ACTIONS(12493), + [anon_sym_BSLASHglslink] = ACTIONS(12493), + [anon_sym_BSLASHglstext] = ACTIONS(12493), + [anon_sym_BSLASHGlstext] = ACTIONS(12493), + [anon_sym_BSLASHGLStext] = ACTIONS(12493), + [anon_sym_BSLASHglsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12493), + [anon_sym_BSLASHglsplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSplural] = ACTIONS(12493), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHglsname] = ACTIONS(12493), + [anon_sym_BSLASHGlsname] = ACTIONS(12493), + [anon_sym_BSLASHGLSname] = ACTIONS(12493), + [anon_sym_BSLASHglssymbol] = ACTIONS(12493), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12493), + [anon_sym_BSLASHglsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12493), + [anon_sym_BSLASHglsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12493), + [anon_sym_BSLASHglsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12493), + [anon_sym_BSLASHglsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12493), + [anon_sym_BSLASHglsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12493), + [anon_sym_BSLASHnewacronym] = ACTIONS(12493), + [anon_sym_BSLASHacrshort] = ACTIONS(12493), + [anon_sym_BSLASHAcrshort] = ACTIONS(12493), + [anon_sym_BSLASHACRshort] = ACTIONS(12493), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12493), + [anon_sym_BSLASHacrlong] = ACTIONS(12493), + [anon_sym_BSLASHAcrlong] = ACTIONS(12493), + [anon_sym_BSLASHACRlong] = ACTIONS(12493), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12493), + [anon_sym_BSLASHacrfull] = ACTIONS(12493), + [anon_sym_BSLASHAcrfull] = ACTIONS(12493), + [anon_sym_BSLASHACRfull] = ACTIONS(12493), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12493), + [anon_sym_BSLASHacs] = ACTIONS(12493), + [anon_sym_BSLASHAcs] = ACTIONS(12493), + [anon_sym_BSLASHacsp] = ACTIONS(12493), + [anon_sym_BSLASHAcsp] = ACTIONS(12493), + [anon_sym_BSLASHacl] = ACTIONS(12493), + [anon_sym_BSLASHAcl] = ACTIONS(12493), + [anon_sym_BSLASHaclp] = ACTIONS(12493), + [anon_sym_BSLASHAclp] = ACTIONS(12493), + [anon_sym_BSLASHacf] = ACTIONS(12493), + [anon_sym_BSLASHAcf] = ACTIONS(12493), + [anon_sym_BSLASHacfp] = ACTIONS(12493), + [anon_sym_BSLASHAcfp] = ACTIONS(12493), + [anon_sym_BSLASHac] = ACTIONS(12493), + [anon_sym_BSLASHAc] = ACTIONS(12493), + [anon_sym_BSLASHacp] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12493), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12493), + [anon_sym_BSLASHcolor] = ACTIONS(12493), + [anon_sym_BSLASHcolorbox] = ACTIONS(12493), + [anon_sym_BSLASHtextcolor] = ACTIONS(12493), + [anon_sym_BSLASHpagecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12493), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12493), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12493), + }, + [596] = { + [ts_builtin_sym_end] = ACTIONS(12495), + [sym_generic_command_name] = ACTIONS(12497), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12497), + [aux_sym_chapter_token1] = ACTIONS(12497), + [aux_sym_section_token1] = ACTIONS(12497), + [aux_sym_subsection_token1] = ACTIONS(12497), + [aux_sym_subsubsection_token1] = ACTIONS(12497), + [aux_sym_paragraph_token1] = ACTIONS(12497), + [aux_sym_subparagraph_token1] = ACTIONS(12497), + [anon_sym_BSLASHitem] = ACTIONS(12497), + [anon_sym_LBRACK] = ACTIONS(12495), + [anon_sym_RBRACK] = ACTIONS(12495), + [anon_sym_LBRACE] = ACTIONS(12495), + [anon_sym_RBRACE] = ACTIONS(12495), + [anon_sym_LPAREN] = ACTIONS(12495), + [anon_sym_RPAREN] = ACTIONS(12495), + [anon_sym_COMMA] = ACTIONS(12495), + [anon_sym_EQ] = ACTIONS(12495), + [sym_word] = ACTIONS(12495), + [sym_param] = ACTIONS(12495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12495), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12495), + [anon_sym_DOLLAR] = ACTIONS(12497), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12495), + [anon_sym_BSLASHbegin] = ACTIONS(12497), + [anon_sym_BSLASHcaption] = ACTIONS(12497), + [anon_sym_BSLASHcite] = ACTIONS(12497), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCite] = ACTIONS(12497), + [anon_sym_BSLASHnocite] = ACTIONS(12497), + [anon_sym_BSLASHcitet] = ACTIONS(12497), + [anon_sym_BSLASHcitep] = ACTIONS(12497), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteauthor] = ACTIONS(12497), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12497), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitetitle] = ACTIONS(12497), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteyear] = ACTIONS(12497), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitedate] = ACTIONS(12497), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteurl] = ACTIONS(12497), + [anon_sym_BSLASHfullcite] = ACTIONS(12497), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12497), + [anon_sym_BSLASHcitealt] = ACTIONS(12497), + [anon_sym_BSLASHcitealp] = ACTIONS(12497), + [anon_sym_BSLASHcitetext] = ACTIONS(12497), + [anon_sym_BSLASHparencite] = ACTIONS(12497), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHParencite] = ACTIONS(12497), + [anon_sym_BSLASHfootcite] = ACTIONS(12497), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12497), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12497), + [anon_sym_BSLASHtextcite] = ACTIONS(12497), + [anon_sym_BSLASHTextcite] = ACTIONS(12497), + [anon_sym_BSLASHsmartcite] = ACTIONS(12497), + [anon_sym_BSLASHSmartcite] = ACTIONS(12497), + [anon_sym_BSLASHsupercite] = ACTIONS(12497), + [anon_sym_BSLASHautocite] = ACTIONS(12497), + [anon_sym_BSLASHAutocite] = ACTIONS(12497), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHvolcite] = ACTIONS(12497), + [anon_sym_BSLASHVolcite] = ACTIONS(12497), + [anon_sym_BSLASHpvolcite] = ACTIONS(12497), + [anon_sym_BSLASHPvolcite] = ACTIONS(12497), + [anon_sym_BSLASHfvolcite] = ACTIONS(12497), + [anon_sym_BSLASHftvolcite] = ACTIONS(12497), + [anon_sym_BSLASHsvolcite] = ACTIONS(12497), + [anon_sym_BSLASHSvolcite] = ACTIONS(12497), + [anon_sym_BSLASHtvolcite] = ACTIONS(12497), + [anon_sym_BSLASHTvolcite] = ACTIONS(12497), + [anon_sym_BSLASHavolcite] = ACTIONS(12497), + [anon_sym_BSLASHAvolcite] = ACTIONS(12497), + [anon_sym_BSLASHnotecite] = ACTIONS(12497), + [anon_sym_BSLASHpnotecite] = ACTIONS(12497), + [anon_sym_BSLASHPnotecite] = ACTIONS(12497), + [anon_sym_BSLASHfnotecite] = ACTIONS(12497), + [anon_sym_BSLASHusepackage] = ACTIONS(12497), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12497), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12497), + [anon_sym_BSLASHinclude] = ACTIONS(12497), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12497), + [anon_sym_BSLASHinput] = ACTIONS(12497), + [anon_sym_BSLASHsubfile] = ACTIONS(12497), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12497), + [anon_sym_BSLASHbibliography] = ACTIONS(12497), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12497), + [anon_sym_BSLASHincludesvg] = ACTIONS(12497), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12497), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12497), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12497), + [anon_sym_BSLASHimport] = ACTIONS(12497), + [anon_sym_BSLASHsubimport] = ACTIONS(12497), + [anon_sym_BSLASHinputfrom] = ACTIONS(12497), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12497), + [anon_sym_BSLASHincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHlabel] = ACTIONS(12497), + [anon_sym_BSLASHref] = ACTIONS(12497), + [anon_sym_BSLASHvref] = ACTIONS(12497), + [anon_sym_BSLASHVref] = ACTIONS(12497), + [anon_sym_BSLASHautoref] = ACTIONS(12497), + [anon_sym_BSLASHpageref] = ACTIONS(12497), + [anon_sym_BSLASHcref] = ACTIONS(12497), + [anon_sym_BSLASHCref] = ACTIONS(12497), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnameCref] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHlabelcref] = ACTIONS(12497), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12497), + [anon_sym_BSLASHeqref] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange] = ACTIONS(12497), + [anon_sym_BSLASHCrefrange] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewlabel] = ACTIONS(12497), + [anon_sym_BSLASHnewcommand] = ACTIONS(12497), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12497), + [anon_sym_BSLASHgls] = ACTIONS(12497), + [anon_sym_BSLASHGls] = ACTIONS(12497), + [anon_sym_BSLASHGLS] = ACTIONS(12497), + [anon_sym_BSLASHglspl] = ACTIONS(12497), + [anon_sym_BSLASHGlspl] = ACTIONS(12497), + [anon_sym_BSLASHGLSpl] = ACTIONS(12497), + [anon_sym_BSLASHglsdisp] = ACTIONS(12497), + [anon_sym_BSLASHglslink] = ACTIONS(12497), + [anon_sym_BSLASHglstext] = ACTIONS(12497), + [anon_sym_BSLASHGlstext] = ACTIONS(12497), + [anon_sym_BSLASHGLStext] = ACTIONS(12497), + [anon_sym_BSLASHglsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12497), + [anon_sym_BSLASHglsplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSplural] = ACTIONS(12497), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHglsname] = ACTIONS(12497), + [anon_sym_BSLASHGlsname] = ACTIONS(12497), + [anon_sym_BSLASHGLSname] = ACTIONS(12497), + [anon_sym_BSLASHglssymbol] = ACTIONS(12497), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12497), + [anon_sym_BSLASHglsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12497), + [anon_sym_BSLASHglsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12497), + [anon_sym_BSLASHglsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12497), + [anon_sym_BSLASHglsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12497), + [anon_sym_BSLASHglsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12497), + [anon_sym_BSLASHnewacronym] = ACTIONS(12497), + [anon_sym_BSLASHacrshort] = ACTIONS(12497), + [anon_sym_BSLASHAcrshort] = ACTIONS(12497), + [anon_sym_BSLASHACRshort] = ACTIONS(12497), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12497), + [anon_sym_BSLASHacrlong] = ACTIONS(12497), + [anon_sym_BSLASHAcrlong] = ACTIONS(12497), + [anon_sym_BSLASHACRlong] = ACTIONS(12497), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12497), + [anon_sym_BSLASHacrfull] = ACTIONS(12497), + [anon_sym_BSLASHAcrfull] = ACTIONS(12497), + [anon_sym_BSLASHACRfull] = ACTIONS(12497), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12497), + [anon_sym_BSLASHacs] = ACTIONS(12497), + [anon_sym_BSLASHAcs] = ACTIONS(12497), + [anon_sym_BSLASHacsp] = ACTIONS(12497), + [anon_sym_BSLASHAcsp] = ACTIONS(12497), + [anon_sym_BSLASHacl] = ACTIONS(12497), + [anon_sym_BSLASHAcl] = ACTIONS(12497), + [anon_sym_BSLASHaclp] = ACTIONS(12497), + [anon_sym_BSLASHAclp] = ACTIONS(12497), + [anon_sym_BSLASHacf] = ACTIONS(12497), + [anon_sym_BSLASHAcf] = ACTIONS(12497), + [anon_sym_BSLASHacfp] = ACTIONS(12497), + [anon_sym_BSLASHAcfp] = ACTIONS(12497), + [anon_sym_BSLASHac] = ACTIONS(12497), + [anon_sym_BSLASHAc] = ACTIONS(12497), + [anon_sym_BSLASHacp] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12497), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12497), + [anon_sym_BSLASHcolor] = ACTIONS(12497), + [anon_sym_BSLASHcolorbox] = ACTIONS(12497), + [anon_sym_BSLASHtextcolor] = ACTIONS(12497), + [anon_sym_BSLASHpagecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12497), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12497), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12497), + }, + [597] = { + [ts_builtin_sym_end] = ACTIONS(12499), + [sym_generic_command_name] = ACTIONS(12501), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12501), + [aux_sym_chapter_token1] = ACTIONS(12501), + [aux_sym_section_token1] = ACTIONS(12501), + [aux_sym_subsection_token1] = ACTIONS(12501), + [aux_sym_subsubsection_token1] = ACTIONS(12501), + [aux_sym_paragraph_token1] = ACTIONS(12501), + [aux_sym_subparagraph_token1] = ACTIONS(12501), + [anon_sym_BSLASHitem] = ACTIONS(12501), + [anon_sym_LBRACK] = ACTIONS(12499), + [anon_sym_RBRACK] = ACTIONS(12499), + [anon_sym_LBRACE] = ACTIONS(12499), + [anon_sym_RBRACE] = ACTIONS(12499), + [anon_sym_LPAREN] = ACTIONS(12499), + [anon_sym_RPAREN] = ACTIONS(12499), + [anon_sym_COMMA] = ACTIONS(12499), + [anon_sym_EQ] = ACTIONS(12499), + [sym_word] = ACTIONS(12499), + [sym_param] = ACTIONS(12499), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12499), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12499), + [anon_sym_DOLLAR] = ACTIONS(12501), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12499), + [anon_sym_BSLASHbegin] = ACTIONS(12501), + [anon_sym_BSLASHcaption] = ACTIONS(12501), + [anon_sym_BSLASHcite] = ACTIONS(12501), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCite] = ACTIONS(12501), + [anon_sym_BSLASHnocite] = ACTIONS(12501), + [anon_sym_BSLASHcitet] = ACTIONS(12501), + [anon_sym_BSLASHcitep] = ACTIONS(12501), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteauthor] = ACTIONS(12501), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12501), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitetitle] = ACTIONS(12501), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteyear] = ACTIONS(12501), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitedate] = ACTIONS(12501), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteurl] = ACTIONS(12501), + [anon_sym_BSLASHfullcite] = ACTIONS(12501), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12501), + [anon_sym_BSLASHcitealt] = ACTIONS(12501), + [anon_sym_BSLASHcitealp] = ACTIONS(12501), + [anon_sym_BSLASHcitetext] = ACTIONS(12501), + [anon_sym_BSLASHparencite] = ACTIONS(12501), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHParencite] = ACTIONS(12501), + [anon_sym_BSLASHfootcite] = ACTIONS(12501), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12501), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12501), + [anon_sym_BSLASHtextcite] = ACTIONS(12501), + [anon_sym_BSLASHTextcite] = ACTIONS(12501), + [anon_sym_BSLASHsmartcite] = ACTIONS(12501), + [anon_sym_BSLASHSmartcite] = ACTIONS(12501), + [anon_sym_BSLASHsupercite] = ACTIONS(12501), + [anon_sym_BSLASHautocite] = ACTIONS(12501), + [anon_sym_BSLASHAutocite] = ACTIONS(12501), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHvolcite] = ACTIONS(12501), + [anon_sym_BSLASHVolcite] = ACTIONS(12501), + [anon_sym_BSLASHpvolcite] = ACTIONS(12501), + [anon_sym_BSLASHPvolcite] = ACTIONS(12501), + [anon_sym_BSLASHfvolcite] = ACTIONS(12501), + [anon_sym_BSLASHftvolcite] = ACTIONS(12501), + [anon_sym_BSLASHsvolcite] = ACTIONS(12501), + [anon_sym_BSLASHSvolcite] = ACTIONS(12501), + [anon_sym_BSLASHtvolcite] = ACTIONS(12501), + [anon_sym_BSLASHTvolcite] = ACTIONS(12501), + [anon_sym_BSLASHavolcite] = ACTIONS(12501), + [anon_sym_BSLASHAvolcite] = ACTIONS(12501), + [anon_sym_BSLASHnotecite] = ACTIONS(12501), + [anon_sym_BSLASHpnotecite] = ACTIONS(12501), + [anon_sym_BSLASHPnotecite] = ACTIONS(12501), + [anon_sym_BSLASHfnotecite] = ACTIONS(12501), + [anon_sym_BSLASHusepackage] = ACTIONS(12501), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12501), + [anon_sym_BSLASHinclude] = ACTIONS(12501), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12501), + [anon_sym_BSLASHinput] = ACTIONS(12501), + [anon_sym_BSLASHsubfile] = ACTIONS(12501), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12501), + [anon_sym_BSLASHbibliography] = ACTIONS(12501), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12501), + [anon_sym_BSLASHincludesvg] = ACTIONS(12501), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12501), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12501), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12501), + [anon_sym_BSLASHimport] = ACTIONS(12501), + [anon_sym_BSLASHsubimport] = ACTIONS(12501), + [anon_sym_BSLASHinputfrom] = ACTIONS(12501), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12501), + [anon_sym_BSLASHincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHlabel] = ACTIONS(12501), + [anon_sym_BSLASHref] = ACTIONS(12501), + [anon_sym_BSLASHvref] = ACTIONS(12501), + [anon_sym_BSLASHVref] = ACTIONS(12501), + [anon_sym_BSLASHautoref] = ACTIONS(12501), + [anon_sym_BSLASHpageref] = ACTIONS(12501), + [anon_sym_BSLASHcref] = ACTIONS(12501), + [anon_sym_BSLASHCref] = ACTIONS(12501), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnameCref] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHlabelcref] = ACTIONS(12501), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12501), + [anon_sym_BSLASHeqref] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange] = ACTIONS(12501), + [anon_sym_BSLASHCrefrange] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewlabel] = ACTIONS(12501), + [anon_sym_BSLASHnewcommand] = ACTIONS(12501), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12501), + [anon_sym_BSLASHgls] = ACTIONS(12501), + [anon_sym_BSLASHGls] = ACTIONS(12501), + [anon_sym_BSLASHGLS] = ACTIONS(12501), + [anon_sym_BSLASHglspl] = ACTIONS(12501), + [anon_sym_BSLASHGlspl] = ACTIONS(12501), + [anon_sym_BSLASHGLSpl] = ACTIONS(12501), + [anon_sym_BSLASHglsdisp] = ACTIONS(12501), + [anon_sym_BSLASHglslink] = ACTIONS(12501), + [anon_sym_BSLASHglstext] = ACTIONS(12501), + [anon_sym_BSLASHGlstext] = ACTIONS(12501), + [anon_sym_BSLASHGLStext] = ACTIONS(12501), + [anon_sym_BSLASHglsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12501), + [anon_sym_BSLASHglsplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSplural] = ACTIONS(12501), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHglsname] = ACTIONS(12501), + [anon_sym_BSLASHGlsname] = ACTIONS(12501), + [anon_sym_BSLASHGLSname] = ACTIONS(12501), + [anon_sym_BSLASHglssymbol] = ACTIONS(12501), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12501), + [anon_sym_BSLASHglsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12501), + [anon_sym_BSLASHglsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12501), + [anon_sym_BSLASHglsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12501), + [anon_sym_BSLASHglsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12501), + [anon_sym_BSLASHglsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12501), + [anon_sym_BSLASHnewacronym] = ACTIONS(12501), + [anon_sym_BSLASHacrshort] = ACTIONS(12501), + [anon_sym_BSLASHAcrshort] = ACTIONS(12501), + [anon_sym_BSLASHACRshort] = ACTIONS(12501), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12501), + [anon_sym_BSLASHacrlong] = ACTIONS(12501), + [anon_sym_BSLASHAcrlong] = ACTIONS(12501), + [anon_sym_BSLASHACRlong] = ACTIONS(12501), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12501), + [anon_sym_BSLASHacrfull] = ACTIONS(12501), + [anon_sym_BSLASHAcrfull] = ACTIONS(12501), + [anon_sym_BSLASHACRfull] = ACTIONS(12501), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12501), + [anon_sym_BSLASHacs] = ACTIONS(12501), + [anon_sym_BSLASHAcs] = ACTIONS(12501), + [anon_sym_BSLASHacsp] = ACTIONS(12501), + [anon_sym_BSLASHAcsp] = ACTIONS(12501), + [anon_sym_BSLASHacl] = ACTIONS(12501), + [anon_sym_BSLASHAcl] = ACTIONS(12501), + [anon_sym_BSLASHaclp] = ACTIONS(12501), + [anon_sym_BSLASHAclp] = ACTIONS(12501), + [anon_sym_BSLASHacf] = ACTIONS(12501), + [anon_sym_BSLASHAcf] = ACTIONS(12501), + [anon_sym_BSLASHacfp] = ACTIONS(12501), + [anon_sym_BSLASHAcfp] = ACTIONS(12501), + [anon_sym_BSLASHac] = ACTIONS(12501), + [anon_sym_BSLASHAc] = ACTIONS(12501), + [anon_sym_BSLASHacp] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12501), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12501), + [anon_sym_BSLASHcolor] = ACTIONS(12501), + [anon_sym_BSLASHcolorbox] = ACTIONS(12501), + [anon_sym_BSLASHtextcolor] = ACTIONS(12501), + [anon_sym_BSLASHpagecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12501), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12501), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12501), + }, + [598] = { + [ts_builtin_sym_end] = ACTIONS(12503), + [sym_generic_command_name] = ACTIONS(12505), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12505), + [aux_sym_chapter_token1] = ACTIONS(12505), + [aux_sym_section_token1] = ACTIONS(12505), + [aux_sym_subsection_token1] = ACTIONS(12505), + [aux_sym_subsubsection_token1] = ACTIONS(12505), + [aux_sym_paragraph_token1] = ACTIONS(12505), + [aux_sym_subparagraph_token1] = ACTIONS(12505), + [anon_sym_BSLASHitem] = ACTIONS(12505), + [anon_sym_LBRACK] = ACTIONS(12503), + [anon_sym_RBRACK] = ACTIONS(12503), + [anon_sym_LBRACE] = ACTIONS(12503), + [anon_sym_RBRACE] = ACTIONS(12503), + [anon_sym_LPAREN] = ACTIONS(12503), + [anon_sym_RPAREN] = ACTIONS(12503), + [anon_sym_COMMA] = ACTIONS(12503), + [anon_sym_EQ] = ACTIONS(12503), + [sym_word] = ACTIONS(12503), + [sym_param] = ACTIONS(12503), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12503), + [anon_sym_DOLLAR] = ACTIONS(12505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12503), + [anon_sym_BSLASHbegin] = ACTIONS(12505), + [anon_sym_BSLASHcaption] = ACTIONS(12505), + [anon_sym_BSLASHcite] = ACTIONS(12505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCite] = ACTIONS(12505), + [anon_sym_BSLASHnocite] = ACTIONS(12505), + [anon_sym_BSLASHcitet] = ACTIONS(12505), + [anon_sym_BSLASHcitep] = ACTIONS(12505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteauthor] = ACTIONS(12505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitetitle] = ACTIONS(12505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteyear] = ACTIONS(12505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitedate] = ACTIONS(12505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteurl] = ACTIONS(12505), + [anon_sym_BSLASHfullcite] = ACTIONS(12505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12505), + [anon_sym_BSLASHcitealt] = ACTIONS(12505), + [anon_sym_BSLASHcitealp] = ACTIONS(12505), + [anon_sym_BSLASHcitetext] = ACTIONS(12505), + [anon_sym_BSLASHparencite] = ACTIONS(12505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHParencite] = ACTIONS(12505), + [anon_sym_BSLASHfootcite] = ACTIONS(12505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12505), + [anon_sym_BSLASHtextcite] = ACTIONS(12505), + [anon_sym_BSLASHTextcite] = ACTIONS(12505), + [anon_sym_BSLASHsmartcite] = ACTIONS(12505), + [anon_sym_BSLASHSmartcite] = ACTIONS(12505), + [anon_sym_BSLASHsupercite] = ACTIONS(12505), + [anon_sym_BSLASHautocite] = ACTIONS(12505), + [anon_sym_BSLASHAutocite] = ACTIONS(12505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHvolcite] = ACTIONS(12505), + [anon_sym_BSLASHVolcite] = ACTIONS(12505), + [anon_sym_BSLASHpvolcite] = ACTIONS(12505), + [anon_sym_BSLASHPvolcite] = ACTIONS(12505), + [anon_sym_BSLASHfvolcite] = ACTIONS(12505), + [anon_sym_BSLASHftvolcite] = ACTIONS(12505), + [anon_sym_BSLASHsvolcite] = ACTIONS(12505), + [anon_sym_BSLASHSvolcite] = ACTIONS(12505), + [anon_sym_BSLASHtvolcite] = ACTIONS(12505), + [anon_sym_BSLASHTvolcite] = ACTIONS(12505), + [anon_sym_BSLASHavolcite] = ACTIONS(12505), + [anon_sym_BSLASHAvolcite] = ACTIONS(12505), + [anon_sym_BSLASHnotecite] = ACTIONS(12505), + [anon_sym_BSLASHpnotecite] = ACTIONS(12505), + [anon_sym_BSLASHPnotecite] = ACTIONS(12505), + [anon_sym_BSLASHfnotecite] = ACTIONS(12505), + [anon_sym_BSLASHusepackage] = ACTIONS(12505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12505), + [anon_sym_BSLASHinclude] = ACTIONS(12505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12505), + [anon_sym_BSLASHinput] = ACTIONS(12505), + [anon_sym_BSLASHsubfile] = ACTIONS(12505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12505), + [anon_sym_BSLASHbibliography] = ACTIONS(12505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12505), + [anon_sym_BSLASHincludesvg] = ACTIONS(12505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12505), + [anon_sym_BSLASHimport] = ACTIONS(12505), + [anon_sym_BSLASHsubimport] = ACTIONS(12505), + [anon_sym_BSLASHinputfrom] = ACTIONS(12505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12505), + [anon_sym_BSLASHincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHlabel] = ACTIONS(12505), + [anon_sym_BSLASHref] = ACTIONS(12505), + [anon_sym_BSLASHvref] = ACTIONS(12505), + [anon_sym_BSLASHVref] = ACTIONS(12505), + [anon_sym_BSLASHautoref] = ACTIONS(12505), + [anon_sym_BSLASHpageref] = ACTIONS(12505), + [anon_sym_BSLASHcref] = ACTIONS(12505), + [anon_sym_BSLASHCref] = ACTIONS(12505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnameCref] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHlabelcref] = ACTIONS(12505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12505), + [anon_sym_BSLASHeqref] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange] = ACTIONS(12505), + [anon_sym_BSLASHCrefrange] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewlabel] = ACTIONS(12505), + [anon_sym_BSLASHnewcommand] = ACTIONS(12505), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12505), + [anon_sym_BSLASHgls] = ACTIONS(12505), + [anon_sym_BSLASHGls] = ACTIONS(12505), + [anon_sym_BSLASHGLS] = ACTIONS(12505), + [anon_sym_BSLASHglspl] = ACTIONS(12505), + [anon_sym_BSLASHGlspl] = ACTIONS(12505), + [anon_sym_BSLASHGLSpl] = ACTIONS(12505), + [anon_sym_BSLASHglsdisp] = ACTIONS(12505), + [anon_sym_BSLASHglslink] = ACTIONS(12505), + [anon_sym_BSLASHglstext] = ACTIONS(12505), + [anon_sym_BSLASHGlstext] = ACTIONS(12505), + [anon_sym_BSLASHGLStext] = ACTIONS(12505), + [anon_sym_BSLASHglsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12505), + [anon_sym_BSLASHglsplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSplural] = ACTIONS(12505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHglsname] = ACTIONS(12505), + [anon_sym_BSLASHGlsname] = ACTIONS(12505), + [anon_sym_BSLASHGLSname] = ACTIONS(12505), + [anon_sym_BSLASHglssymbol] = ACTIONS(12505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12505), + [anon_sym_BSLASHglsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12505), + [anon_sym_BSLASHglsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12505), + [anon_sym_BSLASHglsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12505), + [anon_sym_BSLASHglsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12505), + [anon_sym_BSLASHglsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12505), + [anon_sym_BSLASHnewacronym] = ACTIONS(12505), + [anon_sym_BSLASHacrshort] = ACTIONS(12505), + [anon_sym_BSLASHAcrshort] = ACTIONS(12505), + [anon_sym_BSLASHACRshort] = ACTIONS(12505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12505), + [anon_sym_BSLASHacrlong] = ACTIONS(12505), + [anon_sym_BSLASHAcrlong] = ACTIONS(12505), + [anon_sym_BSLASHACRlong] = ACTIONS(12505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12505), + [anon_sym_BSLASHacrfull] = ACTIONS(12505), + [anon_sym_BSLASHAcrfull] = ACTIONS(12505), + [anon_sym_BSLASHACRfull] = ACTIONS(12505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12505), + [anon_sym_BSLASHacs] = ACTIONS(12505), + [anon_sym_BSLASHAcs] = ACTIONS(12505), + [anon_sym_BSLASHacsp] = ACTIONS(12505), + [anon_sym_BSLASHAcsp] = ACTIONS(12505), + [anon_sym_BSLASHacl] = ACTIONS(12505), + [anon_sym_BSLASHAcl] = ACTIONS(12505), + [anon_sym_BSLASHaclp] = ACTIONS(12505), + [anon_sym_BSLASHAclp] = ACTIONS(12505), + [anon_sym_BSLASHacf] = ACTIONS(12505), + [anon_sym_BSLASHAcf] = ACTIONS(12505), + [anon_sym_BSLASHacfp] = ACTIONS(12505), + [anon_sym_BSLASHAcfp] = ACTIONS(12505), + [anon_sym_BSLASHac] = ACTIONS(12505), + [anon_sym_BSLASHAc] = ACTIONS(12505), + [anon_sym_BSLASHacp] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12505), + [anon_sym_BSLASHcolor] = ACTIONS(12505), + [anon_sym_BSLASHcolorbox] = ACTIONS(12505), + [anon_sym_BSLASHtextcolor] = ACTIONS(12505), + [anon_sym_BSLASHpagecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12505), + }, + [599] = { + [ts_builtin_sym_end] = ACTIONS(12507), + [sym_generic_command_name] = ACTIONS(12509), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12509), + [aux_sym_chapter_token1] = ACTIONS(12509), + [aux_sym_section_token1] = ACTIONS(12509), + [aux_sym_subsection_token1] = ACTIONS(12509), + [aux_sym_subsubsection_token1] = ACTIONS(12509), + [aux_sym_paragraph_token1] = ACTIONS(12509), + [aux_sym_subparagraph_token1] = ACTIONS(12509), + [anon_sym_BSLASHitem] = ACTIONS(12509), + [anon_sym_LBRACK] = ACTIONS(12507), + [anon_sym_RBRACK] = ACTIONS(12507), + [anon_sym_LBRACE] = ACTIONS(12507), + [anon_sym_RBRACE] = ACTIONS(12507), + [anon_sym_LPAREN] = ACTIONS(12507), + [anon_sym_RPAREN] = ACTIONS(12507), + [anon_sym_COMMA] = ACTIONS(12507), + [anon_sym_EQ] = ACTIONS(12507), + [sym_word] = ACTIONS(12507), + [sym_param] = ACTIONS(12507), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12507), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12507), + [anon_sym_DOLLAR] = ACTIONS(12509), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12507), + [anon_sym_BSLASHbegin] = ACTIONS(12509), + [anon_sym_BSLASHcaption] = ACTIONS(12509), + [anon_sym_BSLASHcite] = ACTIONS(12509), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCite] = ACTIONS(12509), + [anon_sym_BSLASHnocite] = ACTIONS(12509), + [anon_sym_BSLASHcitet] = ACTIONS(12509), + [anon_sym_BSLASHcitep] = ACTIONS(12509), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteauthor] = ACTIONS(12509), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12509), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitetitle] = ACTIONS(12509), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteyear] = ACTIONS(12509), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitedate] = ACTIONS(12509), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteurl] = ACTIONS(12509), + [anon_sym_BSLASHfullcite] = ACTIONS(12509), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12509), + [anon_sym_BSLASHcitealt] = ACTIONS(12509), + [anon_sym_BSLASHcitealp] = ACTIONS(12509), + [anon_sym_BSLASHcitetext] = ACTIONS(12509), + [anon_sym_BSLASHparencite] = ACTIONS(12509), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHParencite] = ACTIONS(12509), + [anon_sym_BSLASHfootcite] = ACTIONS(12509), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12509), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12509), + [anon_sym_BSLASHtextcite] = ACTIONS(12509), + [anon_sym_BSLASHTextcite] = ACTIONS(12509), + [anon_sym_BSLASHsmartcite] = ACTIONS(12509), + [anon_sym_BSLASHSmartcite] = ACTIONS(12509), + [anon_sym_BSLASHsupercite] = ACTIONS(12509), + [anon_sym_BSLASHautocite] = ACTIONS(12509), + [anon_sym_BSLASHAutocite] = ACTIONS(12509), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHvolcite] = ACTIONS(12509), + [anon_sym_BSLASHVolcite] = ACTIONS(12509), + [anon_sym_BSLASHpvolcite] = ACTIONS(12509), + [anon_sym_BSLASHPvolcite] = ACTIONS(12509), + [anon_sym_BSLASHfvolcite] = ACTIONS(12509), + [anon_sym_BSLASHftvolcite] = ACTIONS(12509), + [anon_sym_BSLASHsvolcite] = ACTIONS(12509), + [anon_sym_BSLASHSvolcite] = ACTIONS(12509), + [anon_sym_BSLASHtvolcite] = ACTIONS(12509), + [anon_sym_BSLASHTvolcite] = ACTIONS(12509), + [anon_sym_BSLASHavolcite] = ACTIONS(12509), + [anon_sym_BSLASHAvolcite] = ACTIONS(12509), + [anon_sym_BSLASHnotecite] = ACTIONS(12509), + [anon_sym_BSLASHpnotecite] = ACTIONS(12509), + [anon_sym_BSLASHPnotecite] = ACTIONS(12509), + [anon_sym_BSLASHfnotecite] = ACTIONS(12509), + [anon_sym_BSLASHusepackage] = ACTIONS(12509), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12509), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12509), + [anon_sym_BSLASHinclude] = ACTIONS(12509), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12509), + [anon_sym_BSLASHinput] = ACTIONS(12509), + [anon_sym_BSLASHsubfile] = ACTIONS(12509), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12509), + [anon_sym_BSLASHbibliography] = ACTIONS(12509), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12509), + [anon_sym_BSLASHincludesvg] = ACTIONS(12509), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12509), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12509), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12509), + [anon_sym_BSLASHimport] = ACTIONS(12509), + [anon_sym_BSLASHsubimport] = ACTIONS(12509), + [anon_sym_BSLASHinputfrom] = ACTIONS(12509), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12509), + [anon_sym_BSLASHincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHlabel] = ACTIONS(12509), + [anon_sym_BSLASHref] = ACTIONS(12509), + [anon_sym_BSLASHvref] = ACTIONS(12509), + [anon_sym_BSLASHVref] = ACTIONS(12509), + [anon_sym_BSLASHautoref] = ACTIONS(12509), + [anon_sym_BSLASHpageref] = ACTIONS(12509), + [anon_sym_BSLASHcref] = ACTIONS(12509), + [anon_sym_BSLASHCref] = ACTIONS(12509), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnameCref] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHlabelcref] = ACTIONS(12509), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12509), + [anon_sym_BSLASHeqref] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange] = ACTIONS(12509), + [anon_sym_BSLASHCrefrange] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewlabel] = ACTIONS(12509), + [anon_sym_BSLASHnewcommand] = ACTIONS(12509), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12509), + [anon_sym_BSLASHgls] = ACTIONS(12509), + [anon_sym_BSLASHGls] = ACTIONS(12509), + [anon_sym_BSLASHGLS] = ACTIONS(12509), + [anon_sym_BSLASHglspl] = ACTIONS(12509), + [anon_sym_BSLASHGlspl] = ACTIONS(12509), + [anon_sym_BSLASHGLSpl] = ACTIONS(12509), + [anon_sym_BSLASHglsdisp] = ACTIONS(12509), + [anon_sym_BSLASHglslink] = ACTIONS(12509), + [anon_sym_BSLASHglstext] = ACTIONS(12509), + [anon_sym_BSLASHGlstext] = ACTIONS(12509), + [anon_sym_BSLASHGLStext] = ACTIONS(12509), + [anon_sym_BSLASHglsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12509), + [anon_sym_BSLASHglsplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSplural] = ACTIONS(12509), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHglsname] = ACTIONS(12509), + [anon_sym_BSLASHGlsname] = ACTIONS(12509), + [anon_sym_BSLASHGLSname] = ACTIONS(12509), + [anon_sym_BSLASHglssymbol] = ACTIONS(12509), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12509), + [anon_sym_BSLASHglsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12509), + [anon_sym_BSLASHglsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12509), + [anon_sym_BSLASHglsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12509), + [anon_sym_BSLASHglsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12509), + [anon_sym_BSLASHglsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12509), + [anon_sym_BSLASHnewacronym] = ACTIONS(12509), + [anon_sym_BSLASHacrshort] = ACTIONS(12509), + [anon_sym_BSLASHAcrshort] = ACTIONS(12509), + [anon_sym_BSLASHACRshort] = ACTIONS(12509), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12509), + [anon_sym_BSLASHacrlong] = ACTIONS(12509), + [anon_sym_BSLASHAcrlong] = ACTIONS(12509), + [anon_sym_BSLASHACRlong] = ACTIONS(12509), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12509), + [anon_sym_BSLASHacrfull] = ACTIONS(12509), + [anon_sym_BSLASHAcrfull] = ACTIONS(12509), + [anon_sym_BSLASHACRfull] = ACTIONS(12509), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12509), + [anon_sym_BSLASHacs] = ACTIONS(12509), + [anon_sym_BSLASHAcs] = ACTIONS(12509), + [anon_sym_BSLASHacsp] = ACTIONS(12509), + [anon_sym_BSLASHAcsp] = ACTIONS(12509), + [anon_sym_BSLASHacl] = ACTIONS(12509), + [anon_sym_BSLASHAcl] = ACTIONS(12509), + [anon_sym_BSLASHaclp] = ACTIONS(12509), + [anon_sym_BSLASHAclp] = ACTIONS(12509), + [anon_sym_BSLASHacf] = ACTIONS(12509), + [anon_sym_BSLASHAcf] = ACTIONS(12509), + [anon_sym_BSLASHacfp] = ACTIONS(12509), + [anon_sym_BSLASHAcfp] = ACTIONS(12509), + [anon_sym_BSLASHac] = ACTIONS(12509), + [anon_sym_BSLASHAc] = ACTIONS(12509), + [anon_sym_BSLASHacp] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12509), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12509), + [anon_sym_BSLASHcolor] = ACTIONS(12509), + [anon_sym_BSLASHcolorbox] = ACTIONS(12509), + [anon_sym_BSLASHtextcolor] = ACTIONS(12509), + [anon_sym_BSLASHpagecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12509), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12509), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12509), + }, + [600] = { + [ts_builtin_sym_end] = ACTIONS(12511), + [sym_generic_command_name] = ACTIONS(12513), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12513), + [aux_sym_chapter_token1] = ACTIONS(12513), + [aux_sym_section_token1] = ACTIONS(12513), + [aux_sym_subsection_token1] = ACTIONS(12513), + [aux_sym_subsubsection_token1] = ACTIONS(12513), + [aux_sym_paragraph_token1] = ACTIONS(12513), + [aux_sym_subparagraph_token1] = ACTIONS(12513), + [anon_sym_BSLASHitem] = ACTIONS(12513), + [anon_sym_LBRACK] = ACTIONS(12511), + [anon_sym_RBRACK] = ACTIONS(12511), + [anon_sym_LBRACE] = ACTIONS(12515), + [anon_sym_RBRACE] = ACTIONS(12511), + [anon_sym_LPAREN] = ACTIONS(12511), + [anon_sym_RPAREN] = ACTIONS(12511), + [anon_sym_COMMA] = ACTIONS(12511), + [anon_sym_EQ] = ACTIONS(12511), + [sym_word] = ACTIONS(12511), + [sym_param] = ACTIONS(12511), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12511), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12511), + [anon_sym_DOLLAR] = ACTIONS(12513), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12511), + [anon_sym_BSLASHbegin] = ACTIONS(12513), + [anon_sym_BSLASHcaption] = ACTIONS(12513), + [anon_sym_BSLASHcite] = ACTIONS(12513), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCite] = ACTIONS(12513), + [anon_sym_BSLASHnocite] = ACTIONS(12513), + [anon_sym_BSLASHcitet] = ACTIONS(12513), + [anon_sym_BSLASHcitep] = ACTIONS(12513), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteauthor] = ACTIONS(12513), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12513), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitetitle] = ACTIONS(12513), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteyear] = ACTIONS(12513), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitedate] = ACTIONS(12513), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteurl] = ACTIONS(12513), + [anon_sym_BSLASHfullcite] = ACTIONS(12513), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12513), + [anon_sym_BSLASHcitealt] = ACTIONS(12513), + [anon_sym_BSLASHcitealp] = ACTIONS(12513), + [anon_sym_BSLASHcitetext] = ACTIONS(12513), + [anon_sym_BSLASHparencite] = ACTIONS(12513), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHParencite] = ACTIONS(12513), + [anon_sym_BSLASHfootcite] = ACTIONS(12513), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12513), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12513), + [anon_sym_BSLASHtextcite] = ACTIONS(12513), + [anon_sym_BSLASHTextcite] = ACTIONS(12513), + [anon_sym_BSLASHsmartcite] = ACTIONS(12513), + [anon_sym_BSLASHSmartcite] = ACTIONS(12513), + [anon_sym_BSLASHsupercite] = ACTIONS(12513), + [anon_sym_BSLASHautocite] = ACTIONS(12513), + [anon_sym_BSLASHAutocite] = ACTIONS(12513), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHvolcite] = ACTIONS(12513), + [anon_sym_BSLASHVolcite] = ACTIONS(12513), + [anon_sym_BSLASHpvolcite] = ACTIONS(12513), + [anon_sym_BSLASHPvolcite] = ACTIONS(12513), + [anon_sym_BSLASHfvolcite] = ACTIONS(12513), + [anon_sym_BSLASHftvolcite] = ACTIONS(12513), + [anon_sym_BSLASHsvolcite] = ACTIONS(12513), + [anon_sym_BSLASHSvolcite] = ACTIONS(12513), + [anon_sym_BSLASHtvolcite] = ACTIONS(12513), + [anon_sym_BSLASHTvolcite] = ACTIONS(12513), + [anon_sym_BSLASHavolcite] = ACTIONS(12513), + [anon_sym_BSLASHAvolcite] = ACTIONS(12513), + [anon_sym_BSLASHnotecite] = ACTIONS(12513), + [anon_sym_BSLASHpnotecite] = ACTIONS(12513), + [anon_sym_BSLASHPnotecite] = ACTIONS(12513), + [anon_sym_BSLASHfnotecite] = ACTIONS(12513), + [anon_sym_BSLASHusepackage] = ACTIONS(12513), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12513), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12513), + [anon_sym_BSLASHinclude] = ACTIONS(12513), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12513), + [anon_sym_BSLASHinput] = ACTIONS(12513), + [anon_sym_BSLASHsubfile] = ACTIONS(12513), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12513), + [anon_sym_BSLASHbibliography] = ACTIONS(12513), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12513), + [anon_sym_BSLASHincludesvg] = ACTIONS(12513), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12513), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12513), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12513), + [anon_sym_BSLASHimport] = ACTIONS(12513), + [anon_sym_BSLASHsubimport] = ACTIONS(12513), + [anon_sym_BSLASHinputfrom] = ACTIONS(12513), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12513), + [anon_sym_BSLASHincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHlabel] = ACTIONS(12513), + [anon_sym_BSLASHref] = ACTIONS(12513), + [anon_sym_BSLASHvref] = ACTIONS(12513), + [anon_sym_BSLASHVref] = ACTIONS(12513), + [anon_sym_BSLASHautoref] = ACTIONS(12513), + [anon_sym_BSLASHpageref] = ACTIONS(12513), + [anon_sym_BSLASHcref] = ACTIONS(12513), + [anon_sym_BSLASHCref] = ACTIONS(12513), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnameCref] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHlabelcref] = ACTIONS(12513), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12513), + [anon_sym_BSLASHeqref] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange] = ACTIONS(12513), + [anon_sym_BSLASHCrefrange] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewlabel] = ACTIONS(12513), + [anon_sym_BSLASHnewcommand] = ACTIONS(12513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12513), + [anon_sym_BSLASHgls] = ACTIONS(12513), + [anon_sym_BSLASHGls] = ACTIONS(12513), + [anon_sym_BSLASHGLS] = ACTIONS(12513), + [anon_sym_BSLASHglspl] = ACTIONS(12513), + [anon_sym_BSLASHGlspl] = ACTIONS(12513), + [anon_sym_BSLASHGLSpl] = ACTIONS(12513), + [anon_sym_BSLASHglsdisp] = ACTIONS(12513), + [anon_sym_BSLASHglslink] = ACTIONS(12513), + [anon_sym_BSLASHglstext] = ACTIONS(12513), + [anon_sym_BSLASHGlstext] = ACTIONS(12513), + [anon_sym_BSLASHGLStext] = ACTIONS(12513), + [anon_sym_BSLASHglsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12513), + [anon_sym_BSLASHglsplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSplural] = ACTIONS(12513), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHglsname] = ACTIONS(12513), + [anon_sym_BSLASHGlsname] = ACTIONS(12513), + [anon_sym_BSLASHGLSname] = ACTIONS(12513), + [anon_sym_BSLASHglssymbol] = ACTIONS(12513), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12513), + [anon_sym_BSLASHglsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12513), + [anon_sym_BSLASHglsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12513), + [anon_sym_BSLASHglsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12513), + [anon_sym_BSLASHglsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12513), + [anon_sym_BSLASHglsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12513), + [anon_sym_BSLASHnewacronym] = ACTIONS(12513), + [anon_sym_BSLASHacrshort] = ACTIONS(12513), + [anon_sym_BSLASHAcrshort] = ACTIONS(12513), + [anon_sym_BSLASHACRshort] = ACTIONS(12513), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12513), + [anon_sym_BSLASHacrlong] = ACTIONS(12513), + [anon_sym_BSLASHAcrlong] = ACTIONS(12513), + [anon_sym_BSLASHACRlong] = ACTIONS(12513), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12513), + [anon_sym_BSLASHacrfull] = ACTIONS(12513), + [anon_sym_BSLASHAcrfull] = ACTIONS(12513), + [anon_sym_BSLASHACRfull] = ACTIONS(12513), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12513), + [anon_sym_BSLASHacs] = ACTIONS(12513), + [anon_sym_BSLASHAcs] = ACTIONS(12513), + [anon_sym_BSLASHacsp] = ACTIONS(12513), + [anon_sym_BSLASHAcsp] = ACTIONS(12513), + [anon_sym_BSLASHacl] = ACTIONS(12513), + [anon_sym_BSLASHAcl] = ACTIONS(12513), + [anon_sym_BSLASHaclp] = ACTIONS(12513), + [anon_sym_BSLASHAclp] = ACTIONS(12513), + [anon_sym_BSLASHacf] = ACTIONS(12513), + [anon_sym_BSLASHAcf] = ACTIONS(12513), + [anon_sym_BSLASHacfp] = ACTIONS(12513), + [anon_sym_BSLASHAcfp] = ACTIONS(12513), + [anon_sym_BSLASHac] = ACTIONS(12513), + [anon_sym_BSLASHAc] = ACTIONS(12513), + [anon_sym_BSLASHacp] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12513), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12513), + [anon_sym_BSLASHcolor] = ACTIONS(12513), + [anon_sym_BSLASHcolorbox] = ACTIONS(12513), + [anon_sym_BSLASHtextcolor] = ACTIONS(12513), + [anon_sym_BSLASHpagecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12513), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12513), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12513), + }, + [601] = { + [ts_builtin_sym_end] = ACTIONS(12517), + [sym_generic_command_name] = ACTIONS(12519), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12519), + [aux_sym_chapter_token1] = ACTIONS(12519), + [aux_sym_section_token1] = ACTIONS(12519), + [aux_sym_subsection_token1] = ACTIONS(12519), + [aux_sym_subsubsection_token1] = ACTIONS(12519), + [aux_sym_paragraph_token1] = ACTIONS(12519), + [aux_sym_subparagraph_token1] = ACTIONS(12519), + [anon_sym_BSLASHitem] = ACTIONS(12519), + [anon_sym_LBRACK] = ACTIONS(12517), + [anon_sym_RBRACK] = ACTIONS(12517), + [anon_sym_LBRACE] = ACTIONS(12517), + [anon_sym_RBRACE] = ACTIONS(12517), + [anon_sym_LPAREN] = ACTIONS(12517), + [anon_sym_RPAREN] = ACTIONS(12517), + [anon_sym_COMMA] = ACTIONS(12517), + [anon_sym_EQ] = ACTIONS(12517), + [sym_word] = ACTIONS(12517), + [sym_param] = ACTIONS(12517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12517), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12517), + [anon_sym_DOLLAR] = ACTIONS(12519), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12517), + [anon_sym_BSLASHbegin] = ACTIONS(12519), + [anon_sym_BSLASHcaption] = ACTIONS(12519), + [anon_sym_BSLASHcite] = ACTIONS(12519), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCite] = ACTIONS(12519), + [anon_sym_BSLASHnocite] = ACTIONS(12519), + [anon_sym_BSLASHcitet] = ACTIONS(12519), + [anon_sym_BSLASHcitep] = ACTIONS(12519), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteauthor] = ACTIONS(12519), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12519), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitetitle] = ACTIONS(12519), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteyear] = ACTIONS(12519), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitedate] = ACTIONS(12519), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteurl] = ACTIONS(12519), + [anon_sym_BSLASHfullcite] = ACTIONS(12519), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12519), + [anon_sym_BSLASHcitealt] = ACTIONS(12519), + [anon_sym_BSLASHcitealp] = ACTIONS(12519), + [anon_sym_BSLASHcitetext] = ACTIONS(12519), + [anon_sym_BSLASHparencite] = ACTIONS(12519), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHParencite] = ACTIONS(12519), + [anon_sym_BSLASHfootcite] = ACTIONS(12519), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12519), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12519), + [anon_sym_BSLASHtextcite] = ACTIONS(12519), + [anon_sym_BSLASHTextcite] = ACTIONS(12519), + [anon_sym_BSLASHsmartcite] = ACTIONS(12519), + [anon_sym_BSLASHSmartcite] = ACTIONS(12519), + [anon_sym_BSLASHsupercite] = ACTIONS(12519), + [anon_sym_BSLASHautocite] = ACTIONS(12519), + [anon_sym_BSLASHAutocite] = ACTIONS(12519), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHvolcite] = ACTIONS(12519), + [anon_sym_BSLASHVolcite] = ACTIONS(12519), + [anon_sym_BSLASHpvolcite] = ACTIONS(12519), + [anon_sym_BSLASHPvolcite] = ACTIONS(12519), + [anon_sym_BSLASHfvolcite] = ACTIONS(12519), + [anon_sym_BSLASHftvolcite] = ACTIONS(12519), + [anon_sym_BSLASHsvolcite] = ACTIONS(12519), + [anon_sym_BSLASHSvolcite] = ACTIONS(12519), + [anon_sym_BSLASHtvolcite] = ACTIONS(12519), + [anon_sym_BSLASHTvolcite] = ACTIONS(12519), + [anon_sym_BSLASHavolcite] = ACTIONS(12519), + [anon_sym_BSLASHAvolcite] = ACTIONS(12519), + [anon_sym_BSLASHnotecite] = ACTIONS(12519), + [anon_sym_BSLASHpnotecite] = ACTIONS(12519), + [anon_sym_BSLASHPnotecite] = ACTIONS(12519), + [anon_sym_BSLASHfnotecite] = ACTIONS(12519), + [anon_sym_BSLASHusepackage] = ACTIONS(12519), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12519), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12519), + [anon_sym_BSLASHinclude] = ACTIONS(12519), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12519), + [anon_sym_BSLASHinput] = ACTIONS(12519), + [anon_sym_BSLASHsubfile] = ACTIONS(12519), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12519), + [anon_sym_BSLASHbibliography] = ACTIONS(12519), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12519), + [anon_sym_BSLASHincludesvg] = ACTIONS(12519), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12519), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12519), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12519), + [anon_sym_BSLASHimport] = ACTIONS(12519), + [anon_sym_BSLASHsubimport] = ACTIONS(12519), + [anon_sym_BSLASHinputfrom] = ACTIONS(12519), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12519), + [anon_sym_BSLASHincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHlabel] = ACTIONS(12519), + [anon_sym_BSLASHref] = ACTIONS(12519), + [anon_sym_BSLASHvref] = ACTIONS(12519), + [anon_sym_BSLASHVref] = ACTIONS(12519), + [anon_sym_BSLASHautoref] = ACTIONS(12519), + [anon_sym_BSLASHpageref] = ACTIONS(12519), + [anon_sym_BSLASHcref] = ACTIONS(12519), + [anon_sym_BSLASHCref] = ACTIONS(12519), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnameCref] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHlabelcref] = ACTIONS(12519), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12519), + [anon_sym_BSLASHeqref] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange] = ACTIONS(12519), + [anon_sym_BSLASHCrefrange] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewlabel] = ACTIONS(12519), + [anon_sym_BSLASHnewcommand] = ACTIONS(12519), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12519), + [anon_sym_BSLASHgls] = ACTIONS(12519), + [anon_sym_BSLASHGls] = ACTIONS(12519), + [anon_sym_BSLASHGLS] = ACTIONS(12519), + [anon_sym_BSLASHglspl] = ACTIONS(12519), + [anon_sym_BSLASHGlspl] = ACTIONS(12519), + [anon_sym_BSLASHGLSpl] = ACTIONS(12519), + [anon_sym_BSLASHglsdisp] = ACTIONS(12519), + [anon_sym_BSLASHglslink] = ACTIONS(12519), + [anon_sym_BSLASHglstext] = ACTIONS(12519), + [anon_sym_BSLASHGlstext] = ACTIONS(12519), + [anon_sym_BSLASHGLStext] = ACTIONS(12519), + [anon_sym_BSLASHglsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12519), + [anon_sym_BSLASHglsplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSplural] = ACTIONS(12519), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHglsname] = ACTIONS(12519), + [anon_sym_BSLASHGlsname] = ACTIONS(12519), + [anon_sym_BSLASHGLSname] = ACTIONS(12519), + [anon_sym_BSLASHglssymbol] = ACTIONS(12519), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12519), + [anon_sym_BSLASHglsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12519), + [anon_sym_BSLASHglsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12519), + [anon_sym_BSLASHglsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12519), + [anon_sym_BSLASHglsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12519), + [anon_sym_BSLASHglsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12519), + [anon_sym_BSLASHnewacronym] = ACTIONS(12519), + [anon_sym_BSLASHacrshort] = ACTIONS(12519), + [anon_sym_BSLASHAcrshort] = ACTIONS(12519), + [anon_sym_BSLASHACRshort] = ACTIONS(12519), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12519), + [anon_sym_BSLASHacrlong] = ACTIONS(12519), + [anon_sym_BSLASHAcrlong] = ACTIONS(12519), + [anon_sym_BSLASHACRlong] = ACTIONS(12519), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12519), + [anon_sym_BSLASHacrfull] = ACTIONS(12519), + [anon_sym_BSLASHAcrfull] = ACTIONS(12519), + [anon_sym_BSLASHACRfull] = ACTIONS(12519), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12519), + [anon_sym_BSLASHacs] = ACTIONS(12519), + [anon_sym_BSLASHAcs] = ACTIONS(12519), + [anon_sym_BSLASHacsp] = ACTIONS(12519), + [anon_sym_BSLASHAcsp] = ACTIONS(12519), + [anon_sym_BSLASHacl] = ACTIONS(12519), + [anon_sym_BSLASHAcl] = ACTIONS(12519), + [anon_sym_BSLASHaclp] = ACTIONS(12519), + [anon_sym_BSLASHAclp] = ACTIONS(12519), + [anon_sym_BSLASHacf] = ACTIONS(12519), + [anon_sym_BSLASHAcf] = ACTIONS(12519), + [anon_sym_BSLASHacfp] = ACTIONS(12519), + [anon_sym_BSLASHAcfp] = ACTIONS(12519), + [anon_sym_BSLASHac] = ACTIONS(12519), + [anon_sym_BSLASHAc] = ACTIONS(12519), + [anon_sym_BSLASHacp] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12519), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12519), + [anon_sym_BSLASHcolor] = ACTIONS(12519), + [anon_sym_BSLASHcolorbox] = ACTIONS(12519), + [anon_sym_BSLASHtextcolor] = ACTIONS(12519), + [anon_sym_BSLASHpagecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12519), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12519), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12519), + }, + [602] = { + [ts_builtin_sym_end] = ACTIONS(12521), + [sym_generic_command_name] = ACTIONS(12523), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12523), + [aux_sym_chapter_token1] = ACTIONS(12523), + [aux_sym_section_token1] = ACTIONS(12523), + [aux_sym_subsection_token1] = ACTIONS(12523), + [aux_sym_subsubsection_token1] = ACTIONS(12523), + [aux_sym_paragraph_token1] = ACTIONS(12523), + [aux_sym_subparagraph_token1] = ACTIONS(12523), + [anon_sym_BSLASHitem] = ACTIONS(12523), + [anon_sym_LBRACK] = ACTIONS(12521), + [anon_sym_RBRACK] = ACTIONS(12521), + [anon_sym_LBRACE] = ACTIONS(12521), + [anon_sym_RBRACE] = ACTIONS(12521), + [anon_sym_LPAREN] = ACTIONS(12521), + [anon_sym_RPAREN] = ACTIONS(12521), + [anon_sym_COMMA] = ACTIONS(12521), + [anon_sym_EQ] = ACTIONS(12521), + [sym_word] = ACTIONS(12521), + [sym_param] = ACTIONS(12521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12521), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12521), + [anon_sym_DOLLAR] = ACTIONS(12523), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12521), + [anon_sym_BSLASHbegin] = ACTIONS(12523), + [anon_sym_BSLASHcaption] = ACTIONS(12523), + [anon_sym_BSLASHcite] = ACTIONS(12523), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCite] = ACTIONS(12523), + [anon_sym_BSLASHnocite] = ACTIONS(12523), + [anon_sym_BSLASHcitet] = ACTIONS(12523), + [anon_sym_BSLASHcitep] = ACTIONS(12523), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteauthor] = ACTIONS(12523), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12523), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitetitle] = ACTIONS(12523), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteyear] = ACTIONS(12523), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitedate] = ACTIONS(12523), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteurl] = ACTIONS(12523), + [anon_sym_BSLASHfullcite] = ACTIONS(12523), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12523), + [anon_sym_BSLASHcitealt] = ACTIONS(12523), + [anon_sym_BSLASHcitealp] = ACTIONS(12523), + [anon_sym_BSLASHcitetext] = ACTIONS(12523), + [anon_sym_BSLASHparencite] = ACTIONS(12523), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHParencite] = ACTIONS(12523), + [anon_sym_BSLASHfootcite] = ACTIONS(12523), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12523), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12523), + [anon_sym_BSLASHtextcite] = ACTIONS(12523), + [anon_sym_BSLASHTextcite] = ACTIONS(12523), + [anon_sym_BSLASHsmartcite] = ACTIONS(12523), + [anon_sym_BSLASHSmartcite] = ACTIONS(12523), + [anon_sym_BSLASHsupercite] = ACTIONS(12523), + [anon_sym_BSLASHautocite] = ACTIONS(12523), + [anon_sym_BSLASHAutocite] = ACTIONS(12523), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHvolcite] = ACTIONS(12523), + [anon_sym_BSLASHVolcite] = ACTIONS(12523), + [anon_sym_BSLASHpvolcite] = ACTIONS(12523), + [anon_sym_BSLASHPvolcite] = ACTIONS(12523), + [anon_sym_BSLASHfvolcite] = ACTIONS(12523), + [anon_sym_BSLASHftvolcite] = ACTIONS(12523), + [anon_sym_BSLASHsvolcite] = ACTIONS(12523), + [anon_sym_BSLASHSvolcite] = ACTIONS(12523), + [anon_sym_BSLASHtvolcite] = ACTIONS(12523), + [anon_sym_BSLASHTvolcite] = ACTIONS(12523), + [anon_sym_BSLASHavolcite] = ACTIONS(12523), + [anon_sym_BSLASHAvolcite] = ACTIONS(12523), + [anon_sym_BSLASHnotecite] = ACTIONS(12523), + [anon_sym_BSLASHpnotecite] = ACTIONS(12523), + [anon_sym_BSLASHPnotecite] = ACTIONS(12523), + [anon_sym_BSLASHfnotecite] = ACTIONS(12523), + [anon_sym_BSLASHusepackage] = ACTIONS(12523), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12523), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12523), + [anon_sym_BSLASHinclude] = ACTIONS(12523), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12523), + [anon_sym_BSLASHinput] = ACTIONS(12523), + [anon_sym_BSLASHsubfile] = ACTIONS(12523), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12523), + [anon_sym_BSLASHbibliography] = ACTIONS(12523), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12523), + [anon_sym_BSLASHincludesvg] = ACTIONS(12523), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12523), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12523), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12523), + [anon_sym_BSLASHimport] = ACTIONS(12523), + [anon_sym_BSLASHsubimport] = ACTIONS(12523), + [anon_sym_BSLASHinputfrom] = ACTIONS(12523), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12523), + [anon_sym_BSLASHincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHlabel] = ACTIONS(12523), + [anon_sym_BSLASHref] = ACTIONS(12523), + [anon_sym_BSLASHvref] = ACTIONS(12523), + [anon_sym_BSLASHVref] = ACTIONS(12523), + [anon_sym_BSLASHautoref] = ACTIONS(12523), + [anon_sym_BSLASHpageref] = ACTIONS(12523), + [anon_sym_BSLASHcref] = ACTIONS(12523), + [anon_sym_BSLASHCref] = ACTIONS(12523), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnameCref] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHlabelcref] = ACTIONS(12523), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12523), + [anon_sym_BSLASHeqref] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange] = ACTIONS(12523), + [anon_sym_BSLASHCrefrange] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewlabel] = ACTIONS(12523), + [anon_sym_BSLASHnewcommand] = ACTIONS(12523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12523), + [anon_sym_BSLASHgls] = ACTIONS(12523), + [anon_sym_BSLASHGls] = ACTIONS(12523), + [anon_sym_BSLASHGLS] = ACTIONS(12523), + [anon_sym_BSLASHglspl] = ACTIONS(12523), + [anon_sym_BSLASHGlspl] = ACTIONS(12523), + [anon_sym_BSLASHGLSpl] = ACTIONS(12523), + [anon_sym_BSLASHglsdisp] = ACTIONS(12523), + [anon_sym_BSLASHglslink] = ACTIONS(12523), + [anon_sym_BSLASHglstext] = ACTIONS(12523), + [anon_sym_BSLASHGlstext] = ACTIONS(12523), + [anon_sym_BSLASHGLStext] = ACTIONS(12523), + [anon_sym_BSLASHglsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12523), + [anon_sym_BSLASHglsplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSplural] = ACTIONS(12523), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHglsname] = ACTIONS(12523), + [anon_sym_BSLASHGlsname] = ACTIONS(12523), + [anon_sym_BSLASHGLSname] = ACTIONS(12523), + [anon_sym_BSLASHglssymbol] = ACTIONS(12523), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12523), + [anon_sym_BSLASHglsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12523), + [anon_sym_BSLASHglsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12523), + [anon_sym_BSLASHglsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12523), + [anon_sym_BSLASHglsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12523), + [anon_sym_BSLASHglsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12523), + [anon_sym_BSLASHnewacronym] = ACTIONS(12523), + [anon_sym_BSLASHacrshort] = ACTIONS(12523), + [anon_sym_BSLASHAcrshort] = ACTIONS(12523), + [anon_sym_BSLASHACRshort] = ACTIONS(12523), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12523), + [anon_sym_BSLASHacrlong] = ACTIONS(12523), + [anon_sym_BSLASHAcrlong] = ACTIONS(12523), + [anon_sym_BSLASHACRlong] = ACTIONS(12523), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12523), + [anon_sym_BSLASHacrfull] = ACTIONS(12523), + [anon_sym_BSLASHAcrfull] = ACTIONS(12523), + [anon_sym_BSLASHACRfull] = ACTIONS(12523), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12523), + [anon_sym_BSLASHacs] = ACTIONS(12523), + [anon_sym_BSLASHAcs] = ACTIONS(12523), + [anon_sym_BSLASHacsp] = ACTIONS(12523), + [anon_sym_BSLASHAcsp] = ACTIONS(12523), + [anon_sym_BSLASHacl] = ACTIONS(12523), + [anon_sym_BSLASHAcl] = ACTIONS(12523), + [anon_sym_BSLASHaclp] = ACTIONS(12523), + [anon_sym_BSLASHAclp] = ACTIONS(12523), + [anon_sym_BSLASHacf] = ACTIONS(12523), + [anon_sym_BSLASHAcf] = ACTIONS(12523), + [anon_sym_BSLASHacfp] = ACTIONS(12523), + [anon_sym_BSLASHAcfp] = ACTIONS(12523), + [anon_sym_BSLASHac] = ACTIONS(12523), + [anon_sym_BSLASHAc] = ACTIONS(12523), + [anon_sym_BSLASHacp] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12523), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12523), + [anon_sym_BSLASHcolor] = ACTIONS(12523), + [anon_sym_BSLASHcolorbox] = ACTIONS(12523), + [anon_sym_BSLASHtextcolor] = ACTIONS(12523), + [anon_sym_BSLASHpagecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12523), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12523), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12523), + }, + [603] = { + [ts_builtin_sym_end] = ACTIONS(12525), + [sym_generic_command_name] = ACTIONS(12527), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12527), + [aux_sym_chapter_token1] = ACTIONS(12527), + [aux_sym_section_token1] = ACTIONS(12527), + [aux_sym_subsection_token1] = ACTIONS(12527), + [aux_sym_subsubsection_token1] = ACTIONS(12527), + [aux_sym_paragraph_token1] = ACTIONS(12527), + [aux_sym_subparagraph_token1] = ACTIONS(12527), + [anon_sym_BSLASHitem] = ACTIONS(12527), + [anon_sym_LBRACK] = ACTIONS(12525), + [anon_sym_RBRACK] = ACTIONS(12525), + [anon_sym_LBRACE] = ACTIONS(12525), + [anon_sym_RBRACE] = ACTIONS(12525), + [anon_sym_LPAREN] = ACTIONS(12525), + [anon_sym_RPAREN] = ACTIONS(12525), + [anon_sym_COMMA] = ACTIONS(12525), + [anon_sym_EQ] = ACTIONS(12525), + [sym_word] = ACTIONS(12525), + [sym_param] = ACTIONS(12525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12525), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12525), + [anon_sym_DOLLAR] = ACTIONS(12527), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12525), + [anon_sym_BSLASHbegin] = ACTIONS(12527), + [anon_sym_BSLASHcaption] = ACTIONS(12527), + [anon_sym_BSLASHcite] = ACTIONS(12527), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCite] = ACTIONS(12527), + [anon_sym_BSLASHnocite] = ACTIONS(12527), + [anon_sym_BSLASHcitet] = ACTIONS(12527), + [anon_sym_BSLASHcitep] = ACTIONS(12527), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteauthor] = ACTIONS(12527), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12527), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitetitle] = ACTIONS(12527), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteyear] = ACTIONS(12527), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitedate] = ACTIONS(12527), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteurl] = ACTIONS(12527), + [anon_sym_BSLASHfullcite] = ACTIONS(12527), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12527), + [anon_sym_BSLASHcitealt] = ACTIONS(12527), + [anon_sym_BSLASHcitealp] = ACTIONS(12527), + [anon_sym_BSLASHcitetext] = ACTIONS(12527), + [anon_sym_BSLASHparencite] = ACTIONS(12527), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHParencite] = ACTIONS(12527), + [anon_sym_BSLASHfootcite] = ACTIONS(12527), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12527), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12527), + [anon_sym_BSLASHtextcite] = ACTIONS(12527), + [anon_sym_BSLASHTextcite] = ACTIONS(12527), + [anon_sym_BSLASHsmartcite] = ACTIONS(12527), + [anon_sym_BSLASHSmartcite] = ACTIONS(12527), + [anon_sym_BSLASHsupercite] = ACTIONS(12527), + [anon_sym_BSLASHautocite] = ACTIONS(12527), + [anon_sym_BSLASHAutocite] = ACTIONS(12527), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHvolcite] = ACTIONS(12527), + [anon_sym_BSLASHVolcite] = ACTIONS(12527), + [anon_sym_BSLASHpvolcite] = ACTIONS(12527), + [anon_sym_BSLASHPvolcite] = ACTIONS(12527), + [anon_sym_BSLASHfvolcite] = ACTIONS(12527), + [anon_sym_BSLASHftvolcite] = ACTIONS(12527), + [anon_sym_BSLASHsvolcite] = ACTIONS(12527), + [anon_sym_BSLASHSvolcite] = ACTIONS(12527), + [anon_sym_BSLASHtvolcite] = ACTIONS(12527), + [anon_sym_BSLASHTvolcite] = ACTIONS(12527), + [anon_sym_BSLASHavolcite] = ACTIONS(12527), + [anon_sym_BSLASHAvolcite] = ACTIONS(12527), + [anon_sym_BSLASHnotecite] = ACTIONS(12527), + [anon_sym_BSLASHpnotecite] = ACTIONS(12527), + [anon_sym_BSLASHPnotecite] = ACTIONS(12527), + [anon_sym_BSLASHfnotecite] = ACTIONS(12527), + [anon_sym_BSLASHusepackage] = ACTIONS(12527), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12527), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12527), + [anon_sym_BSLASHinclude] = ACTIONS(12527), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12527), + [anon_sym_BSLASHinput] = ACTIONS(12527), + [anon_sym_BSLASHsubfile] = ACTIONS(12527), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12527), + [anon_sym_BSLASHbibliography] = ACTIONS(12527), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12527), + [anon_sym_BSLASHincludesvg] = ACTIONS(12527), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12527), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12527), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12527), + [anon_sym_BSLASHimport] = ACTIONS(12527), + [anon_sym_BSLASHsubimport] = ACTIONS(12527), + [anon_sym_BSLASHinputfrom] = ACTIONS(12527), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12527), + [anon_sym_BSLASHincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHlabel] = ACTIONS(12527), + [anon_sym_BSLASHref] = ACTIONS(12527), + [anon_sym_BSLASHvref] = ACTIONS(12527), + [anon_sym_BSLASHVref] = ACTIONS(12527), + [anon_sym_BSLASHautoref] = ACTIONS(12527), + [anon_sym_BSLASHpageref] = ACTIONS(12527), + [anon_sym_BSLASHcref] = ACTIONS(12527), + [anon_sym_BSLASHCref] = ACTIONS(12527), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnameCref] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHlabelcref] = ACTIONS(12527), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12527), + [anon_sym_BSLASHeqref] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange] = ACTIONS(12527), + [anon_sym_BSLASHCrefrange] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewlabel] = ACTIONS(12527), + [anon_sym_BSLASHnewcommand] = ACTIONS(12527), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12527), + [anon_sym_BSLASHgls] = ACTIONS(12527), + [anon_sym_BSLASHGls] = ACTIONS(12527), + [anon_sym_BSLASHGLS] = ACTIONS(12527), + [anon_sym_BSLASHglspl] = ACTIONS(12527), + [anon_sym_BSLASHGlspl] = ACTIONS(12527), + [anon_sym_BSLASHGLSpl] = ACTIONS(12527), + [anon_sym_BSLASHglsdisp] = ACTIONS(12527), + [anon_sym_BSLASHglslink] = ACTIONS(12527), + [anon_sym_BSLASHglstext] = ACTIONS(12527), + [anon_sym_BSLASHGlstext] = ACTIONS(12527), + [anon_sym_BSLASHGLStext] = ACTIONS(12527), + [anon_sym_BSLASHglsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12527), + [anon_sym_BSLASHglsplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSplural] = ACTIONS(12527), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHglsname] = ACTIONS(12527), + [anon_sym_BSLASHGlsname] = ACTIONS(12527), + [anon_sym_BSLASHGLSname] = ACTIONS(12527), + [anon_sym_BSLASHglssymbol] = ACTIONS(12527), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12527), + [anon_sym_BSLASHglsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12527), + [anon_sym_BSLASHglsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12527), + [anon_sym_BSLASHglsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12527), + [anon_sym_BSLASHglsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12527), + [anon_sym_BSLASHglsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12527), + [anon_sym_BSLASHnewacronym] = ACTIONS(12527), + [anon_sym_BSLASHacrshort] = ACTIONS(12527), + [anon_sym_BSLASHAcrshort] = ACTIONS(12527), + [anon_sym_BSLASHACRshort] = ACTIONS(12527), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12527), + [anon_sym_BSLASHacrlong] = ACTIONS(12527), + [anon_sym_BSLASHAcrlong] = ACTIONS(12527), + [anon_sym_BSLASHACRlong] = ACTIONS(12527), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12527), + [anon_sym_BSLASHacrfull] = ACTIONS(12527), + [anon_sym_BSLASHAcrfull] = ACTIONS(12527), + [anon_sym_BSLASHACRfull] = ACTIONS(12527), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12527), + [anon_sym_BSLASHacs] = ACTIONS(12527), + [anon_sym_BSLASHAcs] = ACTIONS(12527), + [anon_sym_BSLASHacsp] = ACTIONS(12527), + [anon_sym_BSLASHAcsp] = ACTIONS(12527), + [anon_sym_BSLASHacl] = ACTIONS(12527), + [anon_sym_BSLASHAcl] = ACTIONS(12527), + [anon_sym_BSLASHaclp] = ACTIONS(12527), + [anon_sym_BSLASHAclp] = ACTIONS(12527), + [anon_sym_BSLASHacf] = ACTIONS(12527), + [anon_sym_BSLASHAcf] = ACTIONS(12527), + [anon_sym_BSLASHacfp] = ACTIONS(12527), + [anon_sym_BSLASHAcfp] = ACTIONS(12527), + [anon_sym_BSLASHac] = ACTIONS(12527), + [anon_sym_BSLASHAc] = ACTIONS(12527), + [anon_sym_BSLASHacp] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12527), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12527), + [anon_sym_BSLASHcolor] = ACTIONS(12527), + [anon_sym_BSLASHcolorbox] = ACTIONS(12527), + [anon_sym_BSLASHtextcolor] = ACTIONS(12527), + [anon_sym_BSLASHpagecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12527), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12527), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12527), + }, + [604] = { + [ts_builtin_sym_end] = ACTIONS(12529), + [sym_generic_command_name] = ACTIONS(12531), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12531), + [aux_sym_chapter_token1] = ACTIONS(12531), + [aux_sym_section_token1] = ACTIONS(12531), + [aux_sym_subsection_token1] = ACTIONS(12531), + [aux_sym_subsubsection_token1] = ACTIONS(12531), + [aux_sym_paragraph_token1] = ACTIONS(12531), + [aux_sym_subparagraph_token1] = ACTIONS(12531), + [anon_sym_BSLASHitem] = ACTIONS(12531), + [anon_sym_LBRACK] = ACTIONS(12529), + [anon_sym_RBRACK] = ACTIONS(12529), + [anon_sym_LBRACE] = ACTIONS(12529), + [anon_sym_RBRACE] = ACTIONS(12529), + [anon_sym_LPAREN] = ACTIONS(12529), + [anon_sym_RPAREN] = ACTIONS(12529), + [anon_sym_COMMA] = ACTIONS(12529), + [anon_sym_EQ] = ACTIONS(12529), + [sym_word] = ACTIONS(12529), + [sym_param] = ACTIONS(12529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12529), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12529), + [anon_sym_DOLLAR] = ACTIONS(12531), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12529), + [anon_sym_BSLASHbegin] = ACTIONS(12531), + [anon_sym_BSLASHcaption] = ACTIONS(12531), + [anon_sym_BSLASHcite] = ACTIONS(12531), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCite] = ACTIONS(12531), + [anon_sym_BSLASHnocite] = ACTIONS(12531), + [anon_sym_BSLASHcitet] = ACTIONS(12531), + [anon_sym_BSLASHcitep] = ACTIONS(12531), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteauthor] = ACTIONS(12531), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12531), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitetitle] = ACTIONS(12531), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteyear] = ACTIONS(12531), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitedate] = ACTIONS(12531), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteurl] = ACTIONS(12531), + [anon_sym_BSLASHfullcite] = ACTIONS(12531), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12531), + [anon_sym_BSLASHcitealt] = ACTIONS(12531), + [anon_sym_BSLASHcitealp] = ACTIONS(12531), + [anon_sym_BSLASHcitetext] = ACTIONS(12531), + [anon_sym_BSLASHparencite] = ACTIONS(12531), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHParencite] = ACTIONS(12531), + [anon_sym_BSLASHfootcite] = ACTIONS(12531), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12531), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12531), + [anon_sym_BSLASHtextcite] = ACTIONS(12531), + [anon_sym_BSLASHTextcite] = ACTIONS(12531), + [anon_sym_BSLASHsmartcite] = ACTIONS(12531), + [anon_sym_BSLASHSmartcite] = ACTIONS(12531), + [anon_sym_BSLASHsupercite] = ACTIONS(12531), + [anon_sym_BSLASHautocite] = ACTIONS(12531), + [anon_sym_BSLASHAutocite] = ACTIONS(12531), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHvolcite] = ACTIONS(12531), + [anon_sym_BSLASHVolcite] = ACTIONS(12531), + [anon_sym_BSLASHpvolcite] = ACTIONS(12531), + [anon_sym_BSLASHPvolcite] = ACTIONS(12531), + [anon_sym_BSLASHfvolcite] = ACTIONS(12531), + [anon_sym_BSLASHftvolcite] = ACTIONS(12531), + [anon_sym_BSLASHsvolcite] = ACTIONS(12531), + [anon_sym_BSLASHSvolcite] = ACTIONS(12531), + [anon_sym_BSLASHtvolcite] = ACTIONS(12531), + [anon_sym_BSLASHTvolcite] = ACTIONS(12531), + [anon_sym_BSLASHavolcite] = ACTIONS(12531), + [anon_sym_BSLASHAvolcite] = ACTIONS(12531), + [anon_sym_BSLASHnotecite] = ACTIONS(12531), + [anon_sym_BSLASHpnotecite] = ACTIONS(12531), + [anon_sym_BSLASHPnotecite] = ACTIONS(12531), + [anon_sym_BSLASHfnotecite] = ACTIONS(12531), + [anon_sym_BSLASHusepackage] = ACTIONS(12531), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12531), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12531), + [anon_sym_BSLASHinclude] = ACTIONS(12531), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12531), + [anon_sym_BSLASHinput] = ACTIONS(12531), + [anon_sym_BSLASHsubfile] = ACTIONS(12531), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12531), + [anon_sym_BSLASHbibliography] = ACTIONS(12531), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12531), + [anon_sym_BSLASHincludesvg] = ACTIONS(12531), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12531), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12531), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12531), + [anon_sym_BSLASHimport] = ACTIONS(12531), + [anon_sym_BSLASHsubimport] = ACTIONS(12531), + [anon_sym_BSLASHinputfrom] = ACTIONS(12531), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12531), + [anon_sym_BSLASHincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHlabel] = ACTIONS(12531), + [anon_sym_BSLASHref] = ACTIONS(12531), + [anon_sym_BSLASHvref] = ACTIONS(12531), + [anon_sym_BSLASHVref] = ACTIONS(12531), + [anon_sym_BSLASHautoref] = ACTIONS(12531), + [anon_sym_BSLASHpageref] = ACTIONS(12531), + [anon_sym_BSLASHcref] = ACTIONS(12531), + [anon_sym_BSLASHCref] = ACTIONS(12531), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnameCref] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHlabelcref] = ACTIONS(12531), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12531), + [anon_sym_BSLASHeqref] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange] = ACTIONS(12531), + [anon_sym_BSLASHCrefrange] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewlabel] = ACTIONS(12531), + [anon_sym_BSLASHnewcommand] = ACTIONS(12531), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12531), + [anon_sym_BSLASHgls] = ACTIONS(12531), + [anon_sym_BSLASHGls] = ACTIONS(12531), + [anon_sym_BSLASHGLS] = ACTIONS(12531), + [anon_sym_BSLASHglspl] = ACTIONS(12531), + [anon_sym_BSLASHGlspl] = ACTIONS(12531), + [anon_sym_BSLASHGLSpl] = ACTIONS(12531), + [anon_sym_BSLASHglsdisp] = ACTIONS(12531), + [anon_sym_BSLASHglslink] = ACTIONS(12531), + [anon_sym_BSLASHglstext] = ACTIONS(12531), + [anon_sym_BSLASHGlstext] = ACTIONS(12531), + [anon_sym_BSLASHGLStext] = ACTIONS(12531), + [anon_sym_BSLASHglsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12531), + [anon_sym_BSLASHglsplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSplural] = ACTIONS(12531), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHglsname] = ACTIONS(12531), + [anon_sym_BSLASHGlsname] = ACTIONS(12531), + [anon_sym_BSLASHGLSname] = ACTIONS(12531), + [anon_sym_BSLASHglssymbol] = ACTIONS(12531), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12531), + [anon_sym_BSLASHglsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12531), + [anon_sym_BSLASHglsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12531), + [anon_sym_BSLASHglsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12531), + [anon_sym_BSLASHglsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12531), + [anon_sym_BSLASHglsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12531), + [anon_sym_BSLASHnewacronym] = ACTIONS(12531), + [anon_sym_BSLASHacrshort] = ACTIONS(12531), + [anon_sym_BSLASHAcrshort] = ACTIONS(12531), + [anon_sym_BSLASHACRshort] = ACTIONS(12531), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12531), + [anon_sym_BSLASHacrlong] = ACTIONS(12531), + [anon_sym_BSLASHAcrlong] = ACTIONS(12531), + [anon_sym_BSLASHACRlong] = ACTIONS(12531), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12531), + [anon_sym_BSLASHacrfull] = ACTIONS(12531), + [anon_sym_BSLASHAcrfull] = ACTIONS(12531), + [anon_sym_BSLASHACRfull] = ACTIONS(12531), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12531), + [anon_sym_BSLASHacs] = ACTIONS(12531), + [anon_sym_BSLASHAcs] = ACTIONS(12531), + [anon_sym_BSLASHacsp] = ACTIONS(12531), + [anon_sym_BSLASHAcsp] = ACTIONS(12531), + [anon_sym_BSLASHacl] = ACTIONS(12531), + [anon_sym_BSLASHAcl] = ACTIONS(12531), + [anon_sym_BSLASHaclp] = ACTIONS(12531), + [anon_sym_BSLASHAclp] = ACTIONS(12531), + [anon_sym_BSLASHacf] = ACTIONS(12531), + [anon_sym_BSLASHAcf] = ACTIONS(12531), + [anon_sym_BSLASHacfp] = ACTIONS(12531), + [anon_sym_BSLASHAcfp] = ACTIONS(12531), + [anon_sym_BSLASHac] = ACTIONS(12531), + [anon_sym_BSLASHAc] = ACTIONS(12531), + [anon_sym_BSLASHacp] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12531), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12531), + [anon_sym_BSLASHcolor] = ACTIONS(12531), + [anon_sym_BSLASHcolorbox] = ACTIONS(12531), + [anon_sym_BSLASHtextcolor] = ACTIONS(12531), + [anon_sym_BSLASHpagecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12531), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12531), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12531), + }, + [605] = { + [ts_builtin_sym_end] = ACTIONS(12533), + [sym_generic_command_name] = ACTIONS(12535), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12535), + [aux_sym_chapter_token1] = ACTIONS(12535), + [aux_sym_section_token1] = ACTIONS(12535), + [aux_sym_subsection_token1] = ACTIONS(12535), + [aux_sym_subsubsection_token1] = ACTIONS(12535), + [aux_sym_paragraph_token1] = ACTIONS(12535), + [aux_sym_subparagraph_token1] = ACTIONS(12535), + [anon_sym_BSLASHitem] = ACTIONS(12535), + [anon_sym_LBRACK] = ACTIONS(12533), + [anon_sym_RBRACK] = ACTIONS(12533), + [anon_sym_LBRACE] = ACTIONS(12533), + [anon_sym_RBRACE] = ACTIONS(12533), + [anon_sym_LPAREN] = ACTIONS(12533), + [anon_sym_RPAREN] = ACTIONS(12533), + [anon_sym_COMMA] = ACTIONS(12533), + [anon_sym_EQ] = ACTIONS(12533), + [sym_word] = ACTIONS(12533), + [sym_param] = ACTIONS(12533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12533), + [anon_sym_DOLLAR] = ACTIONS(12535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12533), + [anon_sym_BSLASHbegin] = ACTIONS(12535), + [anon_sym_BSLASHcaption] = ACTIONS(12535), + [anon_sym_BSLASHcite] = ACTIONS(12535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCite] = ACTIONS(12535), + [anon_sym_BSLASHnocite] = ACTIONS(12535), + [anon_sym_BSLASHcitet] = ACTIONS(12535), + [anon_sym_BSLASHcitep] = ACTIONS(12535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteauthor] = ACTIONS(12535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitetitle] = ACTIONS(12535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteyear] = ACTIONS(12535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitedate] = ACTIONS(12535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteurl] = ACTIONS(12535), + [anon_sym_BSLASHfullcite] = ACTIONS(12535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12535), + [anon_sym_BSLASHcitealt] = ACTIONS(12535), + [anon_sym_BSLASHcitealp] = ACTIONS(12535), + [anon_sym_BSLASHcitetext] = ACTIONS(12535), + [anon_sym_BSLASHparencite] = ACTIONS(12535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHParencite] = ACTIONS(12535), + [anon_sym_BSLASHfootcite] = ACTIONS(12535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12535), + [anon_sym_BSLASHtextcite] = ACTIONS(12535), + [anon_sym_BSLASHTextcite] = ACTIONS(12535), + [anon_sym_BSLASHsmartcite] = ACTIONS(12535), + [anon_sym_BSLASHSmartcite] = ACTIONS(12535), + [anon_sym_BSLASHsupercite] = ACTIONS(12535), + [anon_sym_BSLASHautocite] = ACTIONS(12535), + [anon_sym_BSLASHAutocite] = ACTIONS(12535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHvolcite] = ACTIONS(12535), + [anon_sym_BSLASHVolcite] = ACTIONS(12535), + [anon_sym_BSLASHpvolcite] = ACTIONS(12535), + [anon_sym_BSLASHPvolcite] = ACTIONS(12535), + [anon_sym_BSLASHfvolcite] = ACTIONS(12535), + [anon_sym_BSLASHftvolcite] = ACTIONS(12535), + [anon_sym_BSLASHsvolcite] = ACTIONS(12535), + [anon_sym_BSLASHSvolcite] = ACTIONS(12535), + [anon_sym_BSLASHtvolcite] = ACTIONS(12535), + [anon_sym_BSLASHTvolcite] = ACTIONS(12535), + [anon_sym_BSLASHavolcite] = ACTIONS(12535), + [anon_sym_BSLASHAvolcite] = ACTIONS(12535), + [anon_sym_BSLASHnotecite] = ACTIONS(12535), + [anon_sym_BSLASHpnotecite] = ACTIONS(12535), + [anon_sym_BSLASHPnotecite] = ACTIONS(12535), + [anon_sym_BSLASHfnotecite] = ACTIONS(12535), + [anon_sym_BSLASHusepackage] = ACTIONS(12535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12535), + [anon_sym_BSLASHinclude] = ACTIONS(12535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12535), + [anon_sym_BSLASHinput] = ACTIONS(12535), + [anon_sym_BSLASHsubfile] = ACTIONS(12535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12535), + [anon_sym_BSLASHbibliography] = ACTIONS(12535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12535), + [anon_sym_BSLASHincludesvg] = ACTIONS(12535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12535), + [anon_sym_BSLASHimport] = ACTIONS(12535), + [anon_sym_BSLASHsubimport] = ACTIONS(12535), + [anon_sym_BSLASHinputfrom] = ACTIONS(12535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12535), + [anon_sym_BSLASHincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHlabel] = ACTIONS(12535), + [anon_sym_BSLASHref] = ACTIONS(12535), + [anon_sym_BSLASHvref] = ACTIONS(12535), + [anon_sym_BSLASHVref] = ACTIONS(12535), + [anon_sym_BSLASHautoref] = ACTIONS(12535), + [anon_sym_BSLASHpageref] = ACTIONS(12535), + [anon_sym_BSLASHcref] = ACTIONS(12535), + [anon_sym_BSLASHCref] = ACTIONS(12535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnameCref] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHlabelcref] = ACTIONS(12535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12535), + [anon_sym_BSLASHeqref] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange] = ACTIONS(12535), + [anon_sym_BSLASHCrefrange] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewlabel] = ACTIONS(12535), + [anon_sym_BSLASHnewcommand] = ACTIONS(12535), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12535), + [anon_sym_BSLASHgls] = ACTIONS(12535), + [anon_sym_BSLASHGls] = ACTIONS(12535), + [anon_sym_BSLASHGLS] = ACTIONS(12535), + [anon_sym_BSLASHglspl] = ACTIONS(12535), + [anon_sym_BSLASHGlspl] = ACTIONS(12535), + [anon_sym_BSLASHGLSpl] = ACTIONS(12535), + [anon_sym_BSLASHglsdisp] = ACTIONS(12535), + [anon_sym_BSLASHglslink] = ACTIONS(12535), + [anon_sym_BSLASHglstext] = ACTIONS(12535), + [anon_sym_BSLASHGlstext] = ACTIONS(12535), + [anon_sym_BSLASHGLStext] = ACTIONS(12535), + [anon_sym_BSLASHglsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12535), + [anon_sym_BSLASHglsplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSplural] = ACTIONS(12535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHglsname] = ACTIONS(12535), + [anon_sym_BSLASHGlsname] = ACTIONS(12535), + [anon_sym_BSLASHGLSname] = ACTIONS(12535), + [anon_sym_BSLASHglssymbol] = ACTIONS(12535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12535), + [anon_sym_BSLASHglsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12535), + [anon_sym_BSLASHglsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12535), + [anon_sym_BSLASHglsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12535), + [anon_sym_BSLASHglsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12535), + [anon_sym_BSLASHglsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12535), + [anon_sym_BSLASHnewacronym] = ACTIONS(12535), + [anon_sym_BSLASHacrshort] = ACTIONS(12535), + [anon_sym_BSLASHAcrshort] = ACTIONS(12535), + [anon_sym_BSLASHACRshort] = ACTIONS(12535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12535), + [anon_sym_BSLASHacrlong] = ACTIONS(12535), + [anon_sym_BSLASHAcrlong] = ACTIONS(12535), + [anon_sym_BSLASHACRlong] = ACTIONS(12535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12535), + [anon_sym_BSLASHacrfull] = ACTIONS(12535), + [anon_sym_BSLASHAcrfull] = ACTIONS(12535), + [anon_sym_BSLASHACRfull] = ACTIONS(12535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12535), + [anon_sym_BSLASHacs] = ACTIONS(12535), + [anon_sym_BSLASHAcs] = ACTIONS(12535), + [anon_sym_BSLASHacsp] = ACTIONS(12535), + [anon_sym_BSLASHAcsp] = ACTIONS(12535), + [anon_sym_BSLASHacl] = ACTIONS(12535), + [anon_sym_BSLASHAcl] = ACTIONS(12535), + [anon_sym_BSLASHaclp] = ACTIONS(12535), + [anon_sym_BSLASHAclp] = ACTIONS(12535), + [anon_sym_BSLASHacf] = ACTIONS(12535), + [anon_sym_BSLASHAcf] = ACTIONS(12535), + [anon_sym_BSLASHacfp] = ACTIONS(12535), + [anon_sym_BSLASHAcfp] = ACTIONS(12535), + [anon_sym_BSLASHac] = ACTIONS(12535), + [anon_sym_BSLASHAc] = ACTIONS(12535), + [anon_sym_BSLASHacp] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12535), + [anon_sym_BSLASHcolor] = ACTIONS(12535), + [anon_sym_BSLASHcolorbox] = ACTIONS(12535), + [anon_sym_BSLASHtextcolor] = ACTIONS(12535), + [anon_sym_BSLASHpagecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12535), + }, + [606] = { + [ts_builtin_sym_end] = ACTIONS(12537), + [sym_generic_command_name] = ACTIONS(12539), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12539), + [aux_sym_chapter_token1] = ACTIONS(12539), + [aux_sym_section_token1] = ACTIONS(12539), + [aux_sym_subsection_token1] = ACTIONS(12539), + [aux_sym_subsubsection_token1] = ACTIONS(12539), + [aux_sym_paragraph_token1] = ACTIONS(12539), + [aux_sym_subparagraph_token1] = ACTIONS(12539), + [anon_sym_BSLASHitem] = ACTIONS(12539), + [anon_sym_LBRACK] = ACTIONS(12537), + [anon_sym_RBRACK] = ACTIONS(12537), + [anon_sym_LBRACE] = ACTIONS(12537), + [anon_sym_RBRACE] = ACTIONS(12537), + [anon_sym_LPAREN] = ACTIONS(12537), + [anon_sym_RPAREN] = ACTIONS(12537), + [anon_sym_COMMA] = ACTIONS(12537), + [anon_sym_EQ] = ACTIONS(12537), + [sym_word] = ACTIONS(12537), + [sym_param] = ACTIONS(12537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12537), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12537), + [anon_sym_DOLLAR] = ACTIONS(12539), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12537), + [anon_sym_BSLASHbegin] = ACTIONS(12539), + [anon_sym_BSLASHcaption] = ACTIONS(12539), + [anon_sym_BSLASHcite] = ACTIONS(12539), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCite] = ACTIONS(12539), + [anon_sym_BSLASHnocite] = ACTIONS(12539), + [anon_sym_BSLASHcitet] = ACTIONS(12539), + [anon_sym_BSLASHcitep] = ACTIONS(12539), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteauthor] = ACTIONS(12539), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12539), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitetitle] = ACTIONS(12539), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteyear] = ACTIONS(12539), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitedate] = ACTIONS(12539), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteurl] = ACTIONS(12539), + [anon_sym_BSLASHfullcite] = ACTIONS(12539), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12539), + [anon_sym_BSLASHcitealt] = ACTIONS(12539), + [anon_sym_BSLASHcitealp] = ACTIONS(12539), + [anon_sym_BSLASHcitetext] = ACTIONS(12539), + [anon_sym_BSLASHparencite] = ACTIONS(12539), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHParencite] = ACTIONS(12539), + [anon_sym_BSLASHfootcite] = ACTIONS(12539), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12539), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12539), + [anon_sym_BSLASHtextcite] = ACTIONS(12539), + [anon_sym_BSLASHTextcite] = ACTIONS(12539), + [anon_sym_BSLASHsmartcite] = ACTIONS(12539), + [anon_sym_BSLASHSmartcite] = ACTIONS(12539), + [anon_sym_BSLASHsupercite] = ACTIONS(12539), + [anon_sym_BSLASHautocite] = ACTIONS(12539), + [anon_sym_BSLASHAutocite] = ACTIONS(12539), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHvolcite] = ACTIONS(12539), + [anon_sym_BSLASHVolcite] = ACTIONS(12539), + [anon_sym_BSLASHpvolcite] = ACTIONS(12539), + [anon_sym_BSLASHPvolcite] = ACTIONS(12539), + [anon_sym_BSLASHfvolcite] = ACTIONS(12539), + [anon_sym_BSLASHftvolcite] = ACTIONS(12539), + [anon_sym_BSLASHsvolcite] = ACTIONS(12539), + [anon_sym_BSLASHSvolcite] = ACTIONS(12539), + [anon_sym_BSLASHtvolcite] = ACTIONS(12539), + [anon_sym_BSLASHTvolcite] = ACTIONS(12539), + [anon_sym_BSLASHavolcite] = ACTIONS(12539), + [anon_sym_BSLASHAvolcite] = ACTIONS(12539), + [anon_sym_BSLASHnotecite] = ACTIONS(12539), + [anon_sym_BSLASHpnotecite] = ACTIONS(12539), + [anon_sym_BSLASHPnotecite] = ACTIONS(12539), + [anon_sym_BSLASHfnotecite] = ACTIONS(12539), + [anon_sym_BSLASHusepackage] = ACTIONS(12539), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12539), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12539), + [anon_sym_BSLASHinclude] = ACTIONS(12539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12539), + [anon_sym_BSLASHinput] = ACTIONS(12539), + [anon_sym_BSLASHsubfile] = ACTIONS(12539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12539), + [anon_sym_BSLASHbibliography] = ACTIONS(12539), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12539), + [anon_sym_BSLASHincludesvg] = ACTIONS(12539), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12539), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12539), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12539), + [anon_sym_BSLASHimport] = ACTIONS(12539), + [anon_sym_BSLASHsubimport] = ACTIONS(12539), + [anon_sym_BSLASHinputfrom] = ACTIONS(12539), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12539), + [anon_sym_BSLASHincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHlabel] = ACTIONS(12539), + [anon_sym_BSLASHref] = ACTIONS(12539), + [anon_sym_BSLASHvref] = ACTIONS(12539), + [anon_sym_BSLASHVref] = ACTIONS(12539), + [anon_sym_BSLASHautoref] = ACTIONS(12539), + [anon_sym_BSLASHpageref] = ACTIONS(12539), + [anon_sym_BSLASHcref] = ACTIONS(12539), + [anon_sym_BSLASHCref] = ACTIONS(12539), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnameCref] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHlabelcref] = ACTIONS(12539), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12539), + [anon_sym_BSLASHeqref] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange] = ACTIONS(12539), + [anon_sym_BSLASHCrefrange] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewlabel] = ACTIONS(12539), + [anon_sym_BSLASHnewcommand] = ACTIONS(12539), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12539), + [anon_sym_BSLASHgls] = ACTIONS(12539), + [anon_sym_BSLASHGls] = ACTIONS(12539), + [anon_sym_BSLASHGLS] = ACTIONS(12539), + [anon_sym_BSLASHglspl] = ACTIONS(12539), + [anon_sym_BSLASHGlspl] = ACTIONS(12539), + [anon_sym_BSLASHGLSpl] = ACTIONS(12539), + [anon_sym_BSLASHglsdisp] = ACTIONS(12539), + [anon_sym_BSLASHglslink] = ACTIONS(12539), + [anon_sym_BSLASHglstext] = ACTIONS(12539), + [anon_sym_BSLASHGlstext] = ACTIONS(12539), + [anon_sym_BSLASHGLStext] = ACTIONS(12539), + [anon_sym_BSLASHglsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12539), + [anon_sym_BSLASHglsplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSplural] = ACTIONS(12539), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHglsname] = ACTIONS(12539), + [anon_sym_BSLASHGlsname] = ACTIONS(12539), + [anon_sym_BSLASHGLSname] = ACTIONS(12539), + [anon_sym_BSLASHglssymbol] = ACTIONS(12539), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12539), + [anon_sym_BSLASHglsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12539), + [anon_sym_BSLASHglsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12539), + [anon_sym_BSLASHglsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12539), + [anon_sym_BSLASHglsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12539), + [anon_sym_BSLASHglsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12539), + [anon_sym_BSLASHnewacronym] = ACTIONS(12539), + [anon_sym_BSLASHacrshort] = ACTIONS(12539), + [anon_sym_BSLASHAcrshort] = ACTIONS(12539), + [anon_sym_BSLASHACRshort] = ACTIONS(12539), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12539), + [anon_sym_BSLASHacrlong] = ACTIONS(12539), + [anon_sym_BSLASHAcrlong] = ACTIONS(12539), + [anon_sym_BSLASHACRlong] = ACTIONS(12539), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12539), + [anon_sym_BSLASHacrfull] = ACTIONS(12539), + [anon_sym_BSLASHAcrfull] = ACTIONS(12539), + [anon_sym_BSLASHACRfull] = ACTIONS(12539), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12539), + [anon_sym_BSLASHacs] = ACTIONS(12539), + [anon_sym_BSLASHAcs] = ACTIONS(12539), + [anon_sym_BSLASHacsp] = ACTIONS(12539), + [anon_sym_BSLASHAcsp] = ACTIONS(12539), + [anon_sym_BSLASHacl] = ACTIONS(12539), + [anon_sym_BSLASHAcl] = ACTIONS(12539), + [anon_sym_BSLASHaclp] = ACTIONS(12539), + [anon_sym_BSLASHAclp] = ACTIONS(12539), + [anon_sym_BSLASHacf] = ACTIONS(12539), + [anon_sym_BSLASHAcf] = ACTIONS(12539), + [anon_sym_BSLASHacfp] = ACTIONS(12539), + [anon_sym_BSLASHAcfp] = ACTIONS(12539), + [anon_sym_BSLASHac] = ACTIONS(12539), + [anon_sym_BSLASHAc] = ACTIONS(12539), + [anon_sym_BSLASHacp] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12539), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12539), + [anon_sym_BSLASHcolor] = ACTIONS(12539), + [anon_sym_BSLASHcolorbox] = ACTIONS(12539), + [anon_sym_BSLASHtextcolor] = ACTIONS(12539), + [anon_sym_BSLASHpagecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12539), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12539), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12539), + }, + [607] = { + [ts_builtin_sym_end] = ACTIONS(12541), + [sym_generic_command_name] = ACTIONS(12543), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12543), + [aux_sym_chapter_token1] = ACTIONS(12543), + [aux_sym_section_token1] = ACTIONS(12543), + [aux_sym_subsection_token1] = ACTIONS(12543), + [aux_sym_subsubsection_token1] = ACTIONS(12543), + [aux_sym_paragraph_token1] = ACTIONS(12543), + [aux_sym_subparagraph_token1] = ACTIONS(12543), + [anon_sym_BSLASHitem] = ACTIONS(12543), + [anon_sym_LBRACK] = ACTIONS(12541), + [anon_sym_RBRACK] = ACTIONS(12541), + [anon_sym_LBRACE] = ACTIONS(12541), + [anon_sym_RBRACE] = ACTIONS(12541), + [anon_sym_LPAREN] = ACTIONS(12541), + [anon_sym_RPAREN] = ACTIONS(12541), + [anon_sym_COMMA] = ACTIONS(12541), + [anon_sym_EQ] = ACTIONS(12541), + [sym_word] = ACTIONS(12541), + [sym_param] = ACTIONS(12541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12541), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12541), + [anon_sym_DOLLAR] = ACTIONS(12543), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12541), + [anon_sym_BSLASHbegin] = ACTIONS(12543), + [anon_sym_BSLASHcaption] = ACTIONS(12543), + [anon_sym_BSLASHcite] = ACTIONS(12543), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCite] = ACTIONS(12543), + [anon_sym_BSLASHnocite] = ACTIONS(12543), + [anon_sym_BSLASHcitet] = ACTIONS(12543), + [anon_sym_BSLASHcitep] = ACTIONS(12543), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteauthor] = ACTIONS(12543), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12543), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitetitle] = ACTIONS(12543), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteyear] = ACTIONS(12543), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitedate] = ACTIONS(12543), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteurl] = ACTIONS(12543), + [anon_sym_BSLASHfullcite] = ACTIONS(12543), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12543), + [anon_sym_BSLASHcitealt] = ACTIONS(12543), + [anon_sym_BSLASHcitealp] = ACTIONS(12543), + [anon_sym_BSLASHcitetext] = ACTIONS(12543), + [anon_sym_BSLASHparencite] = ACTIONS(12543), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHParencite] = ACTIONS(12543), + [anon_sym_BSLASHfootcite] = ACTIONS(12543), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12543), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12543), + [anon_sym_BSLASHtextcite] = ACTIONS(12543), + [anon_sym_BSLASHTextcite] = ACTIONS(12543), + [anon_sym_BSLASHsmartcite] = ACTIONS(12543), + [anon_sym_BSLASHSmartcite] = ACTIONS(12543), + [anon_sym_BSLASHsupercite] = ACTIONS(12543), + [anon_sym_BSLASHautocite] = ACTIONS(12543), + [anon_sym_BSLASHAutocite] = ACTIONS(12543), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHvolcite] = ACTIONS(12543), + [anon_sym_BSLASHVolcite] = ACTIONS(12543), + [anon_sym_BSLASHpvolcite] = ACTIONS(12543), + [anon_sym_BSLASHPvolcite] = ACTIONS(12543), + [anon_sym_BSLASHfvolcite] = ACTIONS(12543), + [anon_sym_BSLASHftvolcite] = ACTIONS(12543), + [anon_sym_BSLASHsvolcite] = ACTIONS(12543), + [anon_sym_BSLASHSvolcite] = ACTIONS(12543), + [anon_sym_BSLASHtvolcite] = ACTIONS(12543), + [anon_sym_BSLASHTvolcite] = ACTIONS(12543), + [anon_sym_BSLASHavolcite] = ACTIONS(12543), + [anon_sym_BSLASHAvolcite] = ACTIONS(12543), + [anon_sym_BSLASHnotecite] = ACTIONS(12543), + [anon_sym_BSLASHpnotecite] = ACTIONS(12543), + [anon_sym_BSLASHPnotecite] = ACTIONS(12543), + [anon_sym_BSLASHfnotecite] = ACTIONS(12543), + [anon_sym_BSLASHusepackage] = ACTIONS(12543), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12543), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12543), + [anon_sym_BSLASHinclude] = ACTIONS(12543), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12543), + [anon_sym_BSLASHinput] = ACTIONS(12543), + [anon_sym_BSLASHsubfile] = ACTIONS(12543), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12543), + [anon_sym_BSLASHbibliography] = ACTIONS(12543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12543), + [anon_sym_BSLASHincludesvg] = ACTIONS(12543), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12543), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12543), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12543), + [anon_sym_BSLASHimport] = ACTIONS(12543), + [anon_sym_BSLASHsubimport] = ACTIONS(12543), + [anon_sym_BSLASHinputfrom] = ACTIONS(12543), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12543), + [anon_sym_BSLASHincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHlabel] = ACTIONS(12543), + [anon_sym_BSLASHref] = ACTIONS(12543), + [anon_sym_BSLASHvref] = ACTIONS(12543), + [anon_sym_BSLASHVref] = ACTIONS(12543), + [anon_sym_BSLASHautoref] = ACTIONS(12543), + [anon_sym_BSLASHpageref] = ACTIONS(12543), + [anon_sym_BSLASHcref] = ACTIONS(12543), + [anon_sym_BSLASHCref] = ACTIONS(12543), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnameCref] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHlabelcref] = ACTIONS(12543), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12543), + [anon_sym_BSLASHeqref] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange] = ACTIONS(12543), + [anon_sym_BSLASHCrefrange] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewlabel] = ACTIONS(12543), + [anon_sym_BSLASHnewcommand] = ACTIONS(12543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12543), + [anon_sym_BSLASHgls] = ACTIONS(12543), + [anon_sym_BSLASHGls] = ACTIONS(12543), + [anon_sym_BSLASHGLS] = ACTIONS(12543), + [anon_sym_BSLASHglspl] = ACTIONS(12543), + [anon_sym_BSLASHGlspl] = ACTIONS(12543), + [anon_sym_BSLASHGLSpl] = ACTIONS(12543), + [anon_sym_BSLASHglsdisp] = ACTIONS(12543), + [anon_sym_BSLASHglslink] = ACTIONS(12543), + [anon_sym_BSLASHglstext] = ACTIONS(12543), + [anon_sym_BSLASHGlstext] = ACTIONS(12543), + [anon_sym_BSLASHGLStext] = ACTIONS(12543), + [anon_sym_BSLASHglsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12543), + [anon_sym_BSLASHglsplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSplural] = ACTIONS(12543), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHglsname] = ACTIONS(12543), + [anon_sym_BSLASHGlsname] = ACTIONS(12543), + [anon_sym_BSLASHGLSname] = ACTIONS(12543), + [anon_sym_BSLASHglssymbol] = ACTIONS(12543), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12543), + [anon_sym_BSLASHglsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12543), + [anon_sym_BSLASHglsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12543), + [anon_sym_BSLASHglsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12543), + [anon_sym_BSLASHglsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12543), + [anon_sym_BSLASHglsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12543), + [anon_sym_BSLASHnewacronym] = ACTIONS(12543), + [anon_sym_BSLASHacrshort] = ACTIONS(12543), + [anon_sym_BSLASHAcrshort] = ACTIONS(12543), + [anon_sym_BSLASHACRshort] = ACTIONS(12543), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12543), + [anon_sym_BSLASHacrlong] = ACTIONS(12543), + [anon_sym_BSLASHAcrlong] = ACTIONS(12543), + [anon_sym_BSLASHACRlong] = ACTIONS(12543), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12543), + [anon_sym_BSLASHacrfull] = ACTIONS(12543), + [anon_sym_BSLASHAcrfull] = ACTIONS(12543), + [anon_sym_BSLASHACRfull] = ACTIONS(12543), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12543), + [anon_sym_BSLASHacs] = ACTIONS(12543), + [anon_sym_BSLASHAcs] = ACTIONS(12543), + [anon_sym_BSLASHacsp] = ACTIONS(12543), + [anon_sym_BSLASHAcsp] = ACTIONS(12543), + [anon_sym_BSLASHacl] = ACTIONS(12543), + [anon_sym_BSLASHAcl] = ACTIONS(12543), + [anon_sym_BSLASHaclp] = ACTIONS(12543), + [anon_sym_BSLASHAclp] = ACTIONS(12543), + [anon_sym_BSLASHacf] = ACTIONS(12543), + [anon_sym_BSLASHAcf] = ACTIONS(12543), + [anon_sym_BSLASHacfp] = ACTIONS(12543), + [anon_sym_BSLASHAcfp] = ACTIONS(12543), + [anon_sym_BSLASHac] = ACTIONS(12543), + [anon_sym_BSLASHAc] = ACTIONS(12543), + [anon_sym_BSLASHacp] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12543), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12543), + [anon_sym_BSLASHcolor] = ACTIONS(12543), + [anon_sym_BSLASHcolorbox] = ACTIONS(12543), + [anon_sym_BSLASHtextcolor] = ACTIONS(12543), + [anon_sym_BSLASHpagecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12543), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12543), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12543), + }, + [608] = { + [ts_builtin_sym_end] = ACTIONS(12545), + [sym_generic_command_name] = ACTIONS(12547), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12547), + [aux_sym_chapter_token1] = ACTIONS(12547), + [aux_sym_section_token1] = ACTIONS(12547), + [aux_sym_subsection_token1] = ACTIONS(12547), + [aux_sym_subsubsection_token1] = ACTIONS(12547), + [aux_sym_paragraph_token1] = ACTIONS(12547), + [aux_sym_subparagraph_token1] = ACTIONS(12547), + [anon_sym_BSLASHitem] = ACTIONS(12547), + [anon_sym_LBRACK] = ACTIONS(12545), + [anon_sym_RBRACK] = ACTIONS(12545), + [anon_sym_LBRACE] = ACTIONS(12545), + [anon_sym_RBRACE] = ACTIONS(12545), + [anon_sym_LPAREN] = ACTIONS(12545), + [anon_sym_RPAREN] = ACTIONS(12545), + [anon_sym_COMMA] = ACTIONS(12545), + [anon_sym_EQ] = ACTIONS(12545), + [sym_word] = ACTIONS(12545), + [sym_param] = ACTIONS(12545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12545), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12545), + [anon_sym_DOLLAR] = ACTIONS(12547), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12545), + [anon_sym_BSLASHbegin] = ACTIONS(12547), + [anon_sym_BSLASHcaption] = ACTIONS(12547), + [anon_sym_BSLASHcite] = ACTIONS(12547), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCite] = ACTIONS(12547), + [anon_sym_BSLASHnocite] = ACTIONS(12547), + [anon_sym_BSLASHcitet] = ACTIONS(12547), + [anon_sym_BSLASHcitep] = ACTIONS(12547), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteauthor] = ACTIONS(12547), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12547), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitetitle] = ACTIONS(12547), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteyear] = ACTIONS(12547), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitedate] = ACTIONS(12547), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteurl] = ACTIONS(12547), + [anon_sym_BSLASHfullcite] = ACTIONS(12547), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12547), + [anon_sym_BSLASHcitealt] = ACTIONS(12547), + [anon_sym_BSLASHcitealp] = ACTIONS(12547), + [anon_sym_BSLASHcitetext] = ACTIONS(12547), + [anon_sym_BSLASHparencite] = ACTIONS(12547), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHParencite] = ACTIONS(12547), + [anon_sym_BSLASHfootcite] = ACTIONS(12547), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12547), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12547), + [anon_sym_BSLASHtextcite] = ACTIONS(12547), + [anon_sym_BSLASHTextcite] = ACTIONS(12547), + [anon_sym_BSLASHsmartcite] = ACTIONS(12547), + [anon_sym_BSLASHSmartcite] = ACTIONS(12547), + [anon_sym_BSLASHsupercite] = ACTIONS(12547), + [anon_sym_BSLASHautocite] = ACTIONS(12547), + [anon_sym_BSLASHAutocite] = ACTIONS(12547), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHvolcite] = ACTIONS(12547), + [anon_sym_BSLASHVolcite] = ACTIONS(12547), + [anon_sym_BSLASHpvolcite] = ACTIONS(12547), + [anon_sym_BSLASHPvolcite] = ACTIONS(12547), + [anon_sym_BSLASHfvolcite] = ACTIONS(12547), + [anon_sym_BSLASHftvolcite] = ACTIONS(12547), + [anon_sym_BSLASHsvolcite] = ACTIONS(12547), + [anon_sym_BSLASHSvolcite] = ACTIONS(12547), + [anon_sym_BSLASHtvolcite] = ACTIONS(12547), + [anon_sym_BSLASHTvolcite] = ACTIONS(12547), + [anon_sym_BSLASHavolcite] = ACTIONS(12547), + [anon_sym_BSLASHAvolcite] = ACTIONS(12547), + [anon_sym_BSLASHnotecite] = ACTIONS(12547), + [anon_sym_BSLASHpnotecite] = ACTIONS(12547), + [anon_sym_BSLASHPnotecite] = ACTIONS(12547), + [anon_sym_BSLASHfnotecite] = ACTIONS(12547), + [anon_sym_BSLASHusepackage] = ACTIONS(12547), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12547), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12547), + [anon_sym_BSLASHinclude] = ACTIONS(12547), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12547), + [anon_sym_BSLASHinput] = ACTIONS(12547), + [anon_sym_BSLASHsubfile] = ACTIONS(12547), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12547), + [anon_sym_BSLASHbibliography] = ACTIONS(12547), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12547), + [anon_sym_BSLASHincludesvg] = ACTIONS(12547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12547), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12547), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12547), + [anon_sym_BSLASHimport] = ACTIONS(12547), + [anon_sym_BSLASHsubimport] = ACTIONS(12547), + [anon_sym_BSLASHinputfrom] = ACTIONS(12547), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12547), + [anon_sym_BSLASHincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHlabel] = ACTIONS(12547), + [anon_sym_BSLASHref] = ACTIONS(12547), + [anon_sym_BSLASHvref] = ACTIONS(12547), + [anon_sym_BSLASHVref] = ACTIONS(12547), + [anon_sym_BSLASHautoref] = ACTIONS(12547), + [anon_sym_BSLASHpageref] = ACTIONS(12547), + [anon_sym_BSLASHcref] = ACTIONS(12547), + [anon_sym_BSLASHCref] = ACTIONS(12547), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnameCref] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHlabelcref] = ACTIONS(12547), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12547), + [anon_sym_BSLASHeqref] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange] = ACTIONS(12547), + [anon_sym_BSLASHCrefrange] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewlabel] = ACTIONS(12547), + [anon_sym_BSLASHnewcommand] = ACTIONS(12547), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12547), + [anon_sym_BSLASHgls] = ACTIONS(12547), + [anon_sym_BSLASHGls] = ACTIONS(12547), + [anon_sym_BSLASHGLS] = ACTIONS(12547), + [anon_sym_BSLASHglspl] = ACTIONS(12547), + [anon_sym_BSLASHGlspl] = ACTIONS(12547), + [anon_sym_BSLASHGLSpl] = ACTIONS(12547), + [anon_sym_BSLASHglsdisp] = ACTIONS(12547), + [anon_sym_BSLASHglslink] = ACTIONS(12547), + [anon_sym_BSLASHglstext] = ACTIONS(12547), + [anon_sym_BSLASHGlstext] = ACTIONS(12547), + [anon_sym_BSLASHGLStext] = ACTIONS(12547), + [anon_sym_BSLASHglsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12547), + [anon_sym_BSLASHglsplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSplural] = ACTIONS(12547), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHglsname] = ACTIONS(12547), + [anon_sym_BSLASHGlsname] = ACTIONS(12547), + [anon_sym_BSLASHGLSname] = ACTIONS(12547), + [anon_sym_BSLASHglssymbol] = ACTIONS(12547), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12547), + [anon_sym_BSLASHglsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12547), + [anon_sym_BSLASHglsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12547), + [anon_sym_BSLASHglsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12547), + [anon_sym_BSLASHglsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12547), + [anon_sym_BSLASHglsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12547), + [anon_sym_BSLASHnewacronym] = ACTIONS(12547), + [anon_sym_BSLASHacrshort] = ACTIONS(12547), + [anon_sym_BSLASHAcrshort] = ACTIONS(12547), + [anon_sym_BSLASHACRshort] = ACTIONS(12547), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12547), + [anon_sym_BSLASHacrlong] = ACTIONS(12547), + [anon_sym_BSLASHAcrlong] = ACTIONS(12547), + [anon_sym_BSLASHACRlong] = ACTIONS(12547), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12547), + [anon_sym_BSLASHacrfull] = ACTIONS(12547), + [anon_sym_BSLASHAcrfull] = ACTIONS(12547), + [anon_sym_BSLASHACRfull] = ACTIONS(12547), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12547), + [anon_sym_BSLASHacs] = ACTIONS(12547), + [anon_sym_BSLASHAcs] = ACTIONS(12547), + [anon_sym_BSLASHacsp] = ACTIONS(12547), + [anon_sym_BSLASHAcsp] = ACTIONS(12547), + [anon_sym_BSLASHacl] = ACTIONS(12547), + [anon_sym_BSLASHAcl] = ACTIONS(12547), + [anon_sym_BSLASHaclp] = ACTIONS(12547), + [anon_sym_BSLASHAclp] = ACTIONS(12547), + [anon_sym_BSLASHacf] = ACTIONS(12547), + [anon_sym_BSLASHAcf] = ACTIONS(12547), + [anon_sym_BSLASHacfp] = ACTIONS(12547), + [anon_sym_BSLASHAcfp] = ACTIONS(12547), + [anon_sym_BSLASHac] = ACTIONS(12547), + [anon_sym_BSLASHAc] = ACTIONS(12547), + [anon_sym_BSLASHacp] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12547), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12547), + [anon_sym_BSLASHcolor] = ACTIONS(12547), + [anon_sym_BSLASHcolorbox] = ACTIONS(12547), + [anon_sym_BSLASHtextcolor] = ACTIONS(12547), + [anon_sym_BSLASHpagecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12547), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12547), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12547), + }, + [609] = { + [ts_builtin_sym_end] = ACTIONS(12549), + [sym_generic_command_name] = ACTIONS(12551), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12551), + [aux_sym_chapter_token1] = ACTIONS(12551), + [aux_sym_section_token1] = ACTIONS(12551), + [aux_sym_subsection_token1] = ACTIONS(12551), + [aux_sym_subsubsection_token1] = ACTIONS(12551), + [aux_sym_paragraph_token1] = ACTIONS(12551), + [aux_sym_subparagraph_token1] = ACTIONS(12551), + [anon_sym_BSLASHitem] = ACTIONS(12551), + [anon_sym_LBRACK] = ACTIONS(12549), + [anon_sym_RBRACK] = ACTIONS(12549), + [anon_sym_LBRACE] = ACTIONS(12549), + [anon_sym_RBRACE] = ACTIONS(12549), + [anon_sym_LPAREN] = ACTIONS(12549), + [anon_sym_RPAREN] = ACTIONS(12549), + [anon_sym_COMMA] = ACTIONS(12549), + [anon_sym_EQ] = ACTIONS(12549), + [sym_word] = ACTIONS(12549), + [sym_param] = ACTIONS(12549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12549), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12549), + [anon_sym_DOLLAR] = ACTIONS(12551), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12549), + [anon_sym_BSLASHbegin] = ACTIONS(12551), + [anon_sym_BSLASHcaption] = ACTIONS(12551), + [anon_sym_BSLASHcite] = ACTIONS(12551), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCite] = ACTIONS(12551), + [anon_sym_BSLASHnocite] = ACTIONS(12551), + [anon_sym_BSLASHcitet] = ACTIONS(12551), + [anon_sym_BSLASHcitep] = ACTIONS(12551), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteauthor] = ACTIONS(12551), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12551), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitetitle] = ACTIONS(12551), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteyear] = ACTIONS(12551), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitedate] = ACTIONS(12551), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteurl] = ACTIONS(12551), + [anon_sym_BSLASHfullcite] = ACTIONS(12551), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12551), + [anon_sym_BSLASHcitealt] = ACTIONS(12551), + [anon_sym_BSLASHcitealp] = ACTIONS(12551), + [anon_sym_BSLASHcitetext] = ACTIONS(12551), + [anon_sym_BSLASHparencite] = ACTIONS(12551), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHParencite] = ACTIONS(12551), + [anon_sym_BSLASHfootcite] = ACTIONS(12551), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12551), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12551), + [anon_sym_BSLASHtextcite] = ACTIONS(12551), + [anon_sym_BSLASHTextcite] = ACTIONS(12551), + [anon_sym_BSLASHsmartcite] = ACTIONS(12551), + [anon_sym_BSLASHSmartcite] = ACTIONS(12551), + [anon_sym_BSLASHsupercite] = ACTIONS(12551), + [anon_sym_BSLASHautocite] = ACTIONS(12551), + [anon_sym_BSLASHAutocite] = ACTIONS(12551), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHvolcite] = ACTIONS(12551), + [anon_sym_BSLASHVolcite] = ACTIONS(12551), + [anon_sym_BSLASHpvolcite] = ACTIONS(12551), + [anon_sym_BSLASHPvolcite] = ACTIONS(12551), + [anon_sym_BSLASHfvolcite] = ACTIONS(12551), + [anon_sym_BSLASHftvolcite] = ACTIONS(12551), + [anon_sym_BSLASHsvolcite] = ACTIONS(12551), + [anon_sym_BSLASHSvolcite] = ACTIONS(12551), + [anon_sym_BSLASHtvolcite] = ACTIONS(12551), + [anon_sym_BSLASHTvolcite] = ACTIONS(12551), + [anon_sym_BSLASHavolcite] = ACTIONS(12551), + [anon_sym_BSLASHAvolcite] = ACTIONS(12551), + [anon_sym_BSLASHnotecite] = ACTIONS(12551), + [anon_sym_BSLASHpnotecite] = ACTIONS(12551), + [anon_sym_BSLASHPnotecite] = ACTIONS(12551), + [anon_sym_BSLASHfnotecite] = ACTIONS(12551), + [anon_sym_BSLASHusepackage] = ACTIONS(12551), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12551), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12551), + [anon_sym_BSLASHinclude] = ACTIONS(12551), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12551), + [anon_sym_BSLASHinput] = ACTIONS(12551), + [anon_sym_BSLASHsubfile] = ACTIONS(12551), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12551), + [anon_sym_BSLASHbibliography] = ACTIONS(12551), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12551), + [anon_sym_BSLASHincludesvg] = ACTIONS(12551), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12551), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12551), + [anon_sym_BSLASHimport] = ACTIONS(12551), + [anon_sym_BSLASHsubimport] = ACTIONS(12551), + [anon_sym_BSLASHinputfrom] = ACTIONS(12551), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12551), + [anon_sym_BSLASHincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHlabel] = ACTIONS(12551), + [anon_sym_BSLASHref] = ACTIONS(12551), + [anon_sym_BSLASHvref] = ACTIONS(12551), + [anon_sym_BSLASHVref] = ACTIONS(12551), + [anon_sym_BSLASHautoref] = ACTIONS(12551), + [anon_sym_BSLASHpageref] = ACTIONS(12551), + [anon_sym_BSLASHcref] = ACTIONS(12551), + [anon_sym_BSLASHCref] = ACTIONS(12551), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnameCref] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHlabelcref] = ACTIONS(12551), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12551), + [anon_sym_BSLASHeqref] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange] = ACTIONS(12551), + [anon_sym_BSLASHCrefrange] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewlabel] = ACTIONS(12551), + [anon_sym_BSLASHnewcommand] = ACTIONS(12551), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12551), + [anon_sym_BSLASHgls] = ACTIONS(12551), + [anon_sym_BSLASHGls] = ACTIONS(12551), + [anon_sym_BSLASHGLS] = ACTIONS(12551), + [anon_sym_BSLASHglspl] = ACTIONS(12551), + [anon_sym_BSLASHGlspl] = ACTIONS(12551), + [anon_sym_BSLASHGLSpl] = ACTIONS(12551), + [anon_sym_BSLASHglsdisp] = ACTIONS(12551), + [anon_sym_BSLASHglslink] = ACTIONS(12551), + [anon_sym_BSLASHglstext] = ACTIONS(12551), + [anon_sym_BSLASHGlstext] = ACTIONS(12551), + [anon_sym_BSLASHGLStext] = ACTIONS(12551), + [anon_sym_BSLASHglsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12551), + [anon_sym_BSLASHglsplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSplural] = ACTIONS(12551), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHglsname] = ACTIONS(12551), + [anon_sym_BSLASHGlsname] = ACTIONS(12551), + [anon_sym_BSLASHGLSname] = ACTIONS(12551), + [anon_sym_BSLASHglssymbol] = ACTIONS(12551), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12551), + [anon_sym_BSLASHglsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12551), + [anon_sym_BSLASHglsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12551), + [anon_sym_BSLASHglsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12551), + [anon_sym_BSLASHglsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12551), + [anon_sym_BSLASHglsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12551), + [anon_sym_BSLASHnewacronym] = ACTIONS(12551), + [anon_sym_BSLASHacrshort] = ACTIONS(12551), + [anon_sym_BSLASHAcrshort] = ACTIONS(12551), + [anon_sym_BSLASHACRshort] = ACTIONS(12551), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12551), + [anon_sym_BSLASHacrlong] = ACTIONS(12551), + [anon_sym_BSLASHAcrlong] = ACTIONS(12551), + [anon_sym_BSLASHACRlong] = ACTIONS(12551), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12551), + [anon_sym_BSLASHacrfull] = ACTIONS(12551), + [anon_sym_BSLASHAcrfull] = ACTIONS(12551), + [anon_sym_BSLASHACRfull] = ACTIONS(12551), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12551), + [anon_sym_BSLASHacs] = ACTIONS(12551), + [anon_sym_BSLASHAcs] = ACTIONS(12551), + [anon_sym_BSLASHacsp] = ACTIONS(12551), + [anon_sym_BSLASHAcsp] = ACTIONS(12551), + [anon_sym_BSLASHacl] = ACTIONS(12551), + [anon_sym_BSLASHAcl] = ACTIONS(12551), + [anon_sym_BSLASHaclp] = ACTIONS(12551), + [anon_sym_BSLASHAclp] = ACTIONS(12551), + [anon_sym_BSLASHacf] = ACTIONS(12551), + [anon_sym_BSLASHAcf] = ACTIONS(12551), + [anon_sym_BSLASHacfp] = ACTIONS(12551), + [anon_sym_BSLASHAcfp] = ACTIONS(12551), + [anon_sym_BSLASHac] = ACTIONS(12551), + [anon_sym_BSLASHAc] = ACTIONS(12551), + [anon_sym_BSLASHacp] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12551), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12551), + [anon_sym_BSLASHcolor] = ACTIONS(12551), + [anon_sym_BSLASHcolorbox] = ACTIONS(12551), + [anon_sym_BSLASHtextcolor] = ACTIONS(12551), + [anon_sym_BSLASHpagecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12551), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12551), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12551), + }, + [610] = { + [ts_builtin_sym_end] = ACTIONS(12553), + [sym_generic_command_name] = ACTIONS(12555), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12555), + [aux_sym_chapter_token1] = ACTIONS(12555), + [aux_sym_section_token1] = ACTIONS(12555), + [aux_sym_subsection_token1] = ACTIONS(12555), + [aux_sym_subsubsection_token1] = ACTIONS(12555), + [aux_sym_paragraph_token1] = ACTIONS(12555), + [aux_sym_subparagraph_token1] = ACTIONS(12555), + [anon_sym_BSLASHitem] = ACTIONS(12555), + [anon_sym_LBRACK] = ACTIONS(12553), + [anon_sym_RBRACK] = ACTIONS(12553), + [anon_sym_LBRACE] = ACTIONS(12553), + [anon_sym_RBRACE] = ACTIONS(12553), + [anon_sym_LPAREN] = ACTIONS(12553), + [anon_sym_RPAREN] = ACTIONS(12553), + [anon_sym_COMMA] = ACTIONS(12553), + [anon_sym_EQ] = ACTIONS(12553), + [sym_word] = ACTIONS(12553), + [sym_param] = ACTIONS(12553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12553), + [anon_sym_DOLLAR] = ACTIONS(12555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12553), + [anon_sym_BSLASHbegin] = ACTIONS(12555), + [anon_sym_BSLASHcaption] = ACTIONS(12555), + [anon_sym_BSLASHcite] = ACTIONS(12555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCite] = ACTIONS(12555), + [anon_sym_BSLASHnocite] = ACTIONS(12555), + [anon_sym_BSLASHcitet] = ACTIONS(12555), + [anon_sym_BSLASHcitep] = ACTIONS(12555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteauthor] = ACTIONS(12555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitetitle] = ACTIONS(12555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteyear] = ACTIONS(12555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitedate] = ACTIONS(12555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteurl] = ACTIONS(12555), + [anon_sym_BSLASHfullcite] = ACTIONS(12555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12555), + [anon_sym_BSLASHcitealt] = ACTIONS(12555), + [anon_sym_BSLASHcitealp] = ACTIONS(12555), + [anon_sym_BSLASHcitetext] = ACTIONS(12555), + [anon_sym_BSLASHparencite] = ACTIONS(12555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHParencite] = ACTIONS(12555), + [anon_sym_BSLASHfootcite] = ACTIONS(12555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12555), + [anon_sym_BSLASHtextcite] = ACTIONS(12555), + [anon_sym_BSLASHTextcite] = ACTIONS(12555), + [anon_sym_BSLASHsmartcite] = ACTIONS(12555), + [anon_sym_BSLASHSmartcite] = ACTIONS(12555), + [anon_sym_BSLASHsupercite] = ACTIONS(12555), + [anon_sym_BSLASHautocite] = ACTIONS(12555), + [anon_sym_BSLASHAutocite] = ACTIONS(12555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHvolcite] = ACTIONS(12555), + [anon_sym_BSLASHVolcite] = ACTIONS(12555), + [anon_sym_BSLASHpvolcite] = ACTIONS(12555), + [anon_sym_BSLASHPvolcite] = ACTIONS(12555), + [anon_sym_BSLASHfvolcite] = ACTIONS(12555), + [anon_sym_BSLASHftvolcite] = ACTIONS(12555), + [anon_sym_BSLASHsvolcite] = ACTIONS(12555), + [anon_sym_BSLASHSvolcite] = ACTIONS(12555), + [anon_sym_BSLASHtvolcite] = ACTIONS(12555), + [anon_sym_BSLASHTvolcite] = ACTIONS(12555), + [anon_sym_BSLASHavolcite] = ACTIONS(12555), + [anon_sym_BSLASHAvolcite] = ACTIONS(12555), + [anon_sym_BSLASHnotecite] = ACTIONS(12555), + [anon_sym_BSLASHpnotecite] = ACTIONS(12555), + [anon_sym_BSLASHPnotecite] = ACTIONS(12555), + [anon_sym_BSLASHfnotecite] = ACTIONS(12555), + [anon_sym_BSLASHusepackage] = ACTIONS(12555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12555), + [anon_sym_BSLASHinclude] = ACTIONS(12555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12555), + [anon_sym_BSLASHinput] = ACTIONS(12555), + [anon_sym_BSLASHsubfile] = ACTIONS(12555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12555), + [anon_sym_BSLASHbibliography] = ACTIONS(12555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12555), + [anon_sym_BSLASHincludesvg] = ACTIONS(12555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12555), + [anon_sym_BSLASHimport] = ACTIONS(12555), + [anon_sym_BSLASHsubimport] = ACTIONS(12555), + [anon_sym_BSLASHinputfrom] = ACTIONS(12555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12555), + [anon_sym_BSLASHincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHlabel] = ACTIONS(12555), + [anon_sym_BSLASHref] = ACTIONS(12555), + [anon_sym_BSLASHvref] = ACTIONS(12555), + [anon_sym_BSLASHVref] = ACTIONS(12555), + [anon_sym_BSLASHautoref] = ACTIONS(12555), + [anon_sym_BSLASHpageref] = ACTIONS(12555), + [anon_sym_BSLASHcref] = ACTIONS(12555), + [anon_sym_BSLASHCref] = ACTIONS(12555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnameCref] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHlabelcref] = ACTIONS(12555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12555), + [anon_sym_BSLASHeqref] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange] = ACTIONS(12555), + [anon_sym_BSLASHCrefrange] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewlabel] = ACTIONS(12555), + [anon_sym_BSLASHnewcommand] = ACTIONS(12555), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12555), + [anon_sym_BSLASHgls] = ACTIONS(12555), + [anon_sym_BSLASHGls] = ACTIONS(12555), + [anon_sym_BSLASHGLS] = ACTIONS(12555), + [anon_sym_BSLASHglspl] = ACTIONS(12555), + [anon_sym_BSLASHGlspl] = ACTIONS(12555), + [anon_sym_BSLASHGLSpl] = ACTIONS(12555), + [anon_sym_BSLASHglsdisp] = ACTIONS(12555), + [anon_sym_BSLASHglslink] = ACTIONS(12555), + [anon_sym_BSLASHglstext] = ACTIONS(12555), + [anon_sym_BSLASHGlstext] = ACTIONS(12555), + [anon_sym_BSLASHGLStext] = ACTIONS(12555), + [anon_sym_BSLASHglsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12555), + [anon_sym_BSLASHglsplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSplural] = ACTIONS(12555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHglsname] = ACTIONS(12555), + [anon_sym_BSLASHGlsname] = ACTIONS(12555), + [anon_sym_BSLASHGLSname] = ACTIONS(12555), + [anon_sym_BSLASHglssymbol] = ACTIONS(12555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12555), + [anon_sym_BSLASHglsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12555), + [anon_sym_BSLASHglsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12555), + [anon_sym_BSLASHglsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12555), + [anon_sym_BSLASHglsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12555), + [anon_sym_BSLASHglsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12555), + [anon_sym_BSLASHnewacronym] = ACTIONS(12555), + [anon_sym_BSLASHacrshort] = ACTIONS(12555), + [anon_sym_BSLASHAcrshort] = ACTIONS(12555), + [anon_sym_BSLASHACRshort] = ACTIONS(12555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12555), + [anon_sym_BSLASHacrlong] = ACTIONS(12555), + [anon_sym_BSLASHAcrlong] = ACTIONS(12555), + [anon_sym_BSLASHACRlong] = ACTIONS(12555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12555), + [anon_sym_BSLASHacrfull] = ACTIONS(12555), + [anon_sym_BSLASHAcrfull] = ACTIONS(12555), + [anon_sym_BSLASHACRfull] = ACTIONS(12555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12555), + [anon_sym_BSLASHacs] = ACTIONS(12555), + [anon_sym_BSLASHAcs] = ACTIONS(12555), + [anon_sym_BSLASHacsp] = ACTIONS(12555), + [anon_sym_BSLASHAcsp] = ACTIONS(12555), + [anon_sym_BSLASHacl] = ACTIONS(12555), + [anon_sym_BSLASHAcl] = ACTIONS(12555), + [anon_sym_BSLASHaclp] = ACTIONS(12555), + [anon_sym_BSLASHAclp] = ACTIONS(12555), + [anon_sym_BSLASHacf] = ACTIONS(12555), + [anon_sym_BSLASHAcf] = ACTIONS(12555), + [anon_sym_BSLASHacfp] = ACTIONS(12555), + [anon_sym_BSLASHAcfp] = ACTIONS(12555), + [anon_sym_BSLASHac] = ACTIONS(12555), + [anon_sym_BSLASHAc] = ACTIONS(12555), + [anon_sym_BSLASHacp] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12555), + [anon_sym_BSLASHcolor] = ACTIONS(12555), + [anon_sym_BSLASHcolorbox] = ACTIONS(12555), + [anon_sym_BSLASHtextcolor] = ACTIONS(12555), + [anon_sym_BSLASHpagecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12555), + }, + [611] = { + [ts_builtin_sym_end] = ACTIONS(12557), + [sym_generic_command_name] = ACTIONS(12559), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12559), + [aux_sym_chapter_token1] = ACTIONS(12559), + [aux_sym_section_token1] = ACTIONS(12559), + [aux_sym_subsection_token1] = ACTIONS(12559), + [aux_sym_subsubsection_token1] = ACTIONS(12559), + [aux_sym_paragraph_token1] = ACTIONS(12559), + [aux_sym_subparagraph_token1] = ACTIONS(12559), + [anon_sym_BSLASHitem] = ACTIONS(12559), + [anon_sym_LBRACK] = ACTIONS(12557), + [anon_sym_RBRACK] = ACTIONS(12557), + [anon_sym_LBRACE] = ACTIONS(12557), + [anon_sym_RBRACE] = ACTIONS(12557), + [anon_sym_LPAREN] = ACTIONS(12557), + [anon_sym_RPAREN] = ACTIONS(12557), + [anon_sym_COMMA] = ACTIONS(12557), + [anon_sym_EQ] = ACTIONS(12557), + [sym_word] = ACTIONS(12557), + [sym_param] = ACTIONS(12557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12557), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12557), + [anon_sym_DOLLAR] = ACTIONS(12559), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12557), + [anon_sym_BSLASHbegin] = ACTIONS(12559), + [anon_sym_BSLASHcaption] = ACTIONS(12559), + [anon_sym_BSLASHcite] = ACTIONS(12559), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCite] = ACTIONS(12559), + [anon_sym_BSLASHnocite] = ACTIONS(12559), + [anon_sym_BSLASHcitet] = ACTIONS(12559), + [anon_sym_BSLASHcitep] = ACTIONS(12559), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteauthor] = ACTIONS(12559), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12559), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitetitle] = ACTIONS(12559), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteyear] = ACTIONS(12559), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitedate] = ACTIONS(12559), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteurl] = ACTIONS(12559), + [anon_sym_BSLASHfullcite] = ACTIONS(12559), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12559), + [anon_sym_BSLASHcitealt] = ACTIONS(12559), + [anon_sym_BSLASHcitealp] = ACTIONS(12559), + [anon_sym_BSLASHcitetext] = ACTIONS(12559), + [anon_sym_BSLASHparencite] = ACTIONS(12559), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHParencite] = ACTIONS(12559), + [anon_sym_BSLASHfootcite] = ACTIONS(12559), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12559), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12559), + [anon_sym_BSLASHtextcite] = ACTIONS(12559), + [anon_sym_BSLASHTextcite] = ACTIONS(12559), + [anon_sym_BSLASHsmartcite] = ACTIONS(12559), + [anon_sym_BSLASHSmartcite] = ACTIONS(12559), + [anon_sym_BSLASHsupercite] = ACTIONS(12559), + [anon_sym_BSLASHautocite] = ACTIONS(12559), + [anon_sym_BSLASHAutocite] = ACTIONS(12559), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHvolcite] = ACTIONS(12559), + [anon_sym_BSLASHVolcite] = ACTIONS(12559), + [anon_sym_BSLASHpvolcite] = ACTIONS(12559), + [anon_sym_BSLASHPvolcite] = ACTIONS(12559), + [anon_sym_BSLASHfvolcite] = ACTIONS(12559), + [anon_sym_BSLASHftvolcite] = ACTIONS(12559), + [anon_sym_BSLASHsvolcite] = ACTIONS(12559), + [anon_sym_BSLASHSvolcite] = ACTIONS(12559), + [anon_sym_BSLASHtvolcite] = ACTIONS(12559), + [anon_sym_BSLASHTvolcite] = ACTIONS(12559), + [anon_sym_BSLASHavolcite] = ACTIONS(12559), + [anon_sym_BSLASHAvolcite] = ACTIONS(12559), + [anon_sym_BSLASHnotecite] = ACTIONS(12559), + [anon_sym_BSLASHpnotecite] = ACTIONS(12559), + [anon_sym_BSLASHPnotecite] = ACTIONS(12559), + [anon_sym_BSLASHfnotecite] = ACTIONS(12559), + [anon_sym_BSLASHusepackage] = ACTIONS(12559), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12559), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12559), + [anon_sym_BSLASHinclude] = ACTIONS(12559), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12559), + [anon_sym_BSLASHinput] = ACTIONS(12559), + [anon_sym_BSLASHsubfile] = ACTIONS(12559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12559), + [anon_sym_BSLASHbibliography] = ACTIONS(12559), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12559), + [anon_sym_BSLASHincludesvg] = ACTIONS(12559), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12559), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12559), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12559), + [anon_sym_BSLASHimport] = ACTIONS(12559), + [anon_sym_BSLASHsubimport] = ACTIONS(12559), + [anon_sym_BSLASHinputfrom] = ACTIONS(12559), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12559), + [anon_sym_BSLASHincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHlabel] = ACTIONS(12559), + [anon_sym_BSLASHref] = ACTIONS(12559), + [anon_sym_BSLASHvref] = ACTIONS(12559), + [anon_sym_BSLASHVref] = ACTIONS(12559), + [anon_sym_BSLASHautoref] = ACTIONS(12559), + [anon_sym_BSLASHpageref] = ACTIONS(12559), + [anon_sym_BSLASHcref] = ACTIONS(12559), + [anon_sym_BSLASHCref] = ACTIONS(12559), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnameCref] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHlabelcref] = ACTIONS(12559), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12559), + [anon_sym_BSLASHeqref] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange] = ACTIONS(12559), + [anon_sym_BSLASHCrefrange] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewlabel] = ACTIONS(12559), + [anon_sym_BSLASHnewcommand] = ACTIONS(12559), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12559), + [anon_sym_BSLASHgls] = ACTIONS(12559), + [anon_sym_BSLASHGls] = ACTIONS(12559), + [anon_sym_BSLASHGLS] = ACTIONS(12559), + [anon_sym_BSLASHglspl] = ACTIONS(12559), + [anon_sym_BSLASHGlspl] = ACTIONS(12559), + [anon_sym_BSLASHGLSpl] = ACTIONS(12559), + [anon_sym_BSLASHglsdisp] = ACTIONS(12559), + [anon_sym_BSLASHglslink] = ACTIONS(12559), + [anon_sym_BSLASHglstext] = ACTIONS(12559), + [anon_sym_BSLASHGlstext] = ACTIONS(12559), + [anon_sym_BSLASHGLStext] = ACTIONS(12559), + [anon_sym_BSLASHglsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12559), + [anon_sym_BSLASHglsplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSplural] = ACTIONS(12559), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHglsname] = ACTIONS(12559), + [anon_sym_BSLASHGlsname] = ACTIONS(12559), + [anon_sym_BSLASHGLSname] = ACTIONS(12559), + [anon_sym_BSLASHglssymbol] = ACTIONS(12559), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12559), + [anon_sym_BSLASHglsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12559), + [anon_sym_BSLASHglsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12559), + [anon_sym_BSLASHglsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12559), + [anon_sym_BSLASHglsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12559), + [anon_sym_BSLASHglsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12559), + [anon_sym_BSLASHnewacronym] = ACTIONS(12559), + [anon_sym_BSLASHacrshort] = ACTIONS(12559), + [anon_sym_BSLASHAcrshort] = ACTIONS(12559), + [anon_sym_BSLASHACRshort] = ACTIONS(12559), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12559), + [anon_sym_BSLASHacrlong] = ACTIONS(12559), + [anon_sym_BSLASHAcrlong] = ACTIONS(12559), + [anon_sym_BSLASHACRlong] = ACTIONS(12559), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12559), + [anon_sym_BSLASHacrfull] = ACTIONS(12559), + [anon_sym_BSLASHAcrfull] = ACTIONS(12559), + [anon_sym_BSLASHACRfull] = ACTIONS(12559), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12559), + [anon_sym_BSLASHacs] = ACTIONS(12559), + [anon_sym_BSLASHAcs] = ACTIONS(12559), + [anon_sym_BSLASHacsp] = ACTIONS(12559), + [anon_sym_BSLASHAcsp] = ACTIONS(12559), + [anon_sym_BSLASHacl] = ACTIONS(12559), + [anon_sym_BSLASHAcl] = ACTIONS(12559), + [anon_sym_BSLASHaclp] = ACTIONS(12559), + [anon_sym_BSLASHAclp] = ACTIONS(12559), + [anon_sym_BSLASHacf] = ACTIONS(12559), + [anon_sym_BSLASHAcf] = ACTIONS(12559), + [anon_sym_BSLASHacfp] = ACTIONS(12559), + [anon_sym_BSLASHAcfp] = ACTIONS(12559), + [anon_sym_BSLASHac] = ACTIONS(12559), + [anon_sym_BSLASHAc] = ACTIONS(12559), + [anon_sym_BSLASHacp] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12559), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12559), + [anon_sym_BSLASHcolor] = ACTIONS(12559), + [anon_sym_BSLASHcolorbox] = ACTIONS(12559), + [anon_sym_BSLASHtextcolor] = ACTIONS(12559), + [anon_sym_BSLASHpagecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12559), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12559), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12559), + }, + [612] = { + [sym_bracket_group] = STATE(622), + [aux_sym_begin_repeat1] = STATE(622), + [sym_generic_command_name] = ACTIONS(12561), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12561), + [aux_sym_chapter_token1] = ACTIONS(12561), + [aux_sym_section_token1] = ACTIONS(12561), + [aux_sym_subsection_token1] = ACTIONS(12561), + [aux_sym_subsubsection_token1] = ACTIONS(12561), + [aux_sym_paragraph_token1] = ACTIONS(12561), + [aux_sym_subparagraph_token1] = ACTIONS(12561), + [anon_sym_BSLASHitem] = ACTIONS(12561), + [anon_sym_LBRACK] = ACTIONS(12082), + [anon_sym_LBRACE] = ACTIONS(12563), + [anon_sym_LPAREN] = ACTIONS(12563), + [anon_sym_COMMA] = ACTIONS(12563), + [anon_sym_EQ] = ACTIONS(12563), + [sym_word] = ACTIONS(12563), + [sym_param] = ACTIONS(12563), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12563), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12563), + [anon_sym_DOLLAR] = ACTIONS(12561), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12563), + [anon_sym_BSLASHbegin] = ACTIONS(12561), + [anon_sym_BSLASHend] = ACTIONS(12561), + [anon_sym_BSLASHcaption] = ACTIONS(12561), + [anon_sym_BSLASHcite] = ACTIONS(12561), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12563), + [anon_sym_BSLASHCite] = ACTIONS(12561), + [anon_sym_BSLASHnocite] = ACTIONS(12561), + [anon_sym_BSLASHcitet] = ACTIONS(12561), + [anon_sym_BSLASHcitep] = ACTIONS(12561), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12563), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12563), + [anon_sym_BSLASHciteauthor] = ACTIONS(12561), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12563), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12561), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12563), + [anon_sym_BSLASHcitetitle] = ACTIONS(12561), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12563), + [anon_sym_BSLASHciteyear] = ACTIONS(12561), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12563), + [anon_sym_BSLASHcitedate] = ACTIONS(12561), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12563), + [anon_sym_BSLASHciteurl] = ACTIONS(12561), + [anon_sym_BSLASHfullcite] = ACTIONS(12561), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12561), + [anon_sym_BSLASHcitealt] = ACTIONS(12561), + [anon_sym_BSLASHcitealp] = ACTIONS(12561), + [anon_sym_BSLASHcitetext] = ACTIONS(12561), + [anon_sym_BSLASHparencite] = ACTIONS(12561), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12563), + [anon_sym_BSLASHParencite] = ACTIONS(12561), + [anon_sym_BSLASHfootcite] = ACTIONS(12561), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12561), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12561), + [anon_sym_BSLASHtextcite] = ACTIONS(12561), + [anon_sym_BSLASHTextcite] = ACTIONS(12561), + [anon_sym_BSLASHsmartcite] = ACTIONS(12561), + [anon_sym_BSLASHSmartcite] = ACTIONS(12561), + [anon_sym_BSLASHsupercite] = ACTIONS(12561), + [anon_sym_BSLASHautocite] = ACTIONS(12561), + [anon_sym_BSLASHAutocite] = ACTIONS(12561), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12563), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12563), + [anon_sym_BSLASHvolcite] = ACTIONS(12561), + [anon_sym_BSLASHVolcite] = ACTIONS(12561), + [anon_sym_BSLASHpvolcite] = ACTIONS(12561), + [anon_sym_BSLASHPvolcite] = ACTIONS(12561), + [anon_sym_BSLASHfvolcite] = ACTIONS(12561), + [anon_sym_BSLASHftvolcite] = ACTIONS(12561), + [anon_sym_BSLASHsvolcite] = ACTIONS(12561), + [anon_sym_BSLASHSvolcite] = ACTIONS(12561), + [anon_sym_BSLASHtvolcite] = ACTIONS(12561), + [anon_sym_BSLASHTvolcite] = ACTIONS(12561), + [anon_sym_BSLASHavolcite] = ACTIONS(12561), + [anon_sym_BSLASHAvolcite] = ACTIONS(12561), + [anon_sym_BSLASHnotecite] = ACTIONS(12561), + [anon_sym_BSLASHpnotecite] = ACTIONS(12561), + [anon_sym_BSLASHPnotecite] = ACTIONS(12561), + [anon_sym_BSLASHfnotecite] = ACTIONS(12561), + [anon_sym_BSLASHusepackage] = ACTIONS(12561), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12561), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12561), + [anon_sym_BSLASHinclude] = ACTIONS(12561), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12561), + [anon_sym_BSLASHinput] = ACTIONS(12561), + [anon_sym_BSLASHsubfile] = ACTIONS(12561), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12561), + [anon_sym_BSLASHbibliography] = ACTIONS(12561), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12561), + [anon_sym_BSLASHincludesvg] = ACTIONS(12561), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12561), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12561), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12561), + [anon_sym_BSLASHimport] = ACTIONS(12561), + [anon_sym_BSLASHsubimport] = ACTIONS(12561), + [anon_sym_BSLASHinputfrom] = ACTIONS(12561), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12561), + [anon_sym_BSLASHincludefrom] = ACTIONS(12561), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12561), + [anon_sym_BSLASHlabel] = ACTIONS(12561), + [anon_sym_BSLASHref] = ACTIONS(12561), + [anon_sym_BSLASHvref] = ACTIONS(12561), + [anon_sym_BSLASHVref] = ACTIONS(12561), + [anon_sym_BSLASHautoref] = ACTIONS(12561), + [anon_sym_BSLASHpageref] = ACTIONS(12561), + [anon_sym_BSLASHcref] = ACTIONS(12561), + [anon_sym_BSLASHCref] = ACTIONS(12561), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12563), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12563), + [anon_sym_BSLASHnamecref] = ACTIONS(12561), + [anon_sym_BSLASHnameCref] = ACTIONS(12561), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12561), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12561), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12561), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12561), + [anon_sym_BSLASHlabelcref] = ACTIONS(12561), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12561), + [anon_sym_BSLASHeqref] = ACTIONS(12561), + [anon_sym_BSLASHcrefrange] = ACTIONS(12561), + [anon_sym_BSLASHCrefrange] = ACTIONS(12561), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12563), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12563), + [anon_sym_BSLASHnewlabel] = ACTIONS(12561), + [anon_sym_BSLASHnewcommand] = ACTIONS(12561), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12561), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12561), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12561), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12563), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12561), + [anon_sym_BSLASHgls] = ACTIONS(12561), + [anon_sym_BSLASHGls] = ACTIONS(12561), + [anon_sym_BSLASHGLS] = ACTIONS(12561), + [anon_sym_BSLASHglspl] = ACTIONS(12561), + [anon_sym_BSLASHGlspl] = ACTIONS(12561), + [anon_sym_BSLASHGLSpl] = ACTIONS(12561), + [anon_sym_BSLASHglsdisp] = ACTIONS(12561), + [anon_sym_BSLASHglslink] = ACTIONS(12561), + [anon_sym_BSLASHglstext] = ACTIONS(12561), + [anon_sym_BSLASHGlstext] = ACTIONS(12561), + [anon_sym_BSLASHGLStext] = ACTIONS(12561), + [anon_sym_BSLASHglsfirst] = ACTIONS(12561), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12561), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12561), + [anon_sym_BSLASHglsplural] = ACTIONS(12561), + [anon_sym_BSLASHGlsplural] = ACTIONS(12561), + [anon_sym_BSLASHGLSplural] = ACTIONS(12561), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12561), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12561), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12561), + [anon_sym_BSLASHglsname] = ACTIONS(12561), + [anon_sym_BSLASHGlsname] = ACTIONS(12561), + [anon_sym_BSLASHGLSname] = ACTIONS(12561), + [anon_sym_BSLASHglssymbol] = ACTIONS(12561), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12561), + [anon_sym_BSLASHglsdesc] = ACTIONS(12561), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12561), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12561), + [anon_sym_BSLASHglsuseri] = ACTIONS(12561), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12561), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12561), + [anon_sym_BSLASHglsuserii] = ACTIONS(12561), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12561), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12561), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12561), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12561), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12561), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12561), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12561), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12561), + [anon_sym_BSLASHglsuserv] = ACTIONS(12561), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12561), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12561), + [anon_sym_BSLASHglsuservi] = ACTIONS(12561), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12561), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12561), + [anon_sym_BSLASHnewacronym] = ACTIONS(12561), + [anon_sym_BSLASHacrshort] = ACTIONS(12561), + [anon_sym_BSLASHAcrshort] = ACTIONS(12561), + [anon_sym_BSLASHACRshort] = ACTIONS(12561), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12561), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12561), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12561), + [anon_sym_BSLASHacrlong] = ACTIONS(12561), + [anon_sym_BSLASHAcrlong] = ACTIONS(12561), + [anon_sym_BSLASHACRlong] = ACTIONS(12561), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12561), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12561), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12561), + [anon_sym_BSLASHacrfull] = ACTIONS(12561), + [anon_sym_BSLASHAcrfull] = ACTIONS(12561), + [anon_sym_BSLASHACRfull] = ACTIONS(12561), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12561), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12561), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12561), + [anon_sym_BSLASHacs] = ACTIONS(12561), + [anon_sym_BSLASHAcs] = ACTIONS(12561), + [anon_sym_BSLASHacsp] = ACTIONS(12561), + [anon_sym_BSLASHAcsp] = ACTIONS(12561), + [anon_sym_BSLASHacl] = ACTIONS(12561), + [anon_sym_BSLASHAcl] = ACTIONS(12561), + [anon_sym_BSLASHaclp] = ACTIONS(12561), + [anon_sym_BSLASHAclp] = ACTIONS(12561), + [anon_sym_BSLASHacf] = ACTIONS(12561), + [anon_sym_BSLASHAcf] = ACTIONS(12561), + [anon_sym_BSLASHacfp] = ACTIONS(12561), + [anon_sym_BSLASHAcfp] = ACTIONS(12561), + [anon_sym_BSLASHac] = ACTIONS(12561), + [anon_sym_BSLASHAc] = ACTIONS(12561), + [anon_sym_BSLASHacp] = ACTIONS(12561), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12561), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12561), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12561), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12561), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12561), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12561), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12561), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12561), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12561), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12561), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12561), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12561), + [anon_sym_BSLASHcolor] = ACTIONS(12561), + [anon_sym_BSLASHcolorbox] = ACTIONS(12561), + [anon_sym_BSLASHtextcolor] = ACTIONS(12561), + [anon_sym_BSLASHpagecolor] = ACTIONS(12561), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12561), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12561), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12561), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12561), + }, + [613] = { + [sym_brace_group] = STATE(624), + [sym_bracket_group] = STATE(624), + [sym_paren_group] = STATE(624), + [aux_sym_generic_command_repeat1] = STATE(624), + [sym_generic_command_name] = ACTIONS(11990), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(11990), + [aux_sym_subsubsection_token1] = ACTIONS(11990), + [aux_sym_paragraph_token1] = ACTIONS(11990), + [aux_sym_subparagraph_token1] = ACTIONS(11990), + [anon_sym_BSLASHitem] = ACTIONS(11990), + [anon_sym_LBRACK] = ACTIONS(12565), + [anon_sym_RBRACK] = ACTIONS(11988), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(11988), + [anon_sym_LPAREN] = ACTIONS(12567), + [anon_sym_COMMA] = ACTIONS(11988), + [anon_sym_EQ] = ACTIONS(11988), + [sym_word] = ACTIONS(11988), + [sym_param] = ACTIONS(11988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11988), + [anon_sym_DOLLAR] = ACTIONS(11990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11988), + [anon_sym_BSLASHbegin] = ACTIONS(11990), + [anon_sym_BSLASHcaption] = ACTIONS(11990), + [anon_sym_BSLASHcite] = ACTIONS(11990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCite] = ACTIONS(11990), + [anon_sym_BSLASHnocite] = ACTIONS(11990), + [anon_sym_BSLASHcitet] = ACTIONS(11990), + [anon_sym_BSLASHcitep] = ACTIONS(11990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteauthor] = ACTIONS(11990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitetitle] = ACTIONS(11990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteyear] = ACTIONS(11990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitedate] = ACTIONS(11990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteurl] = ACTIONS(11990), + [anon_sym_BSLASHfullcite] = ACTIONS(11990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11990), + [anon_sym_BSLASHcitealt] = ACTIONS(11990), + [anon_sym_BSLASHcitealp] = ACTIONS(11990), + [anon_sym_BSLASHcitetext] = ACTIONS(11990), + [anon_sym_BSLASHparencite] = ACTIONS(11990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHParencite] = ACTIONS(11990), + [anon_sym_BSLASHfootcite] = ACTIONS(11990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11990), + [anon_sym_BSLASHtextcite] = ACTIONS(11990), + [anon_sym_BSLASHTextcite] = ACTIONS(11990), + [anon_sym_BSLASHsmartcite] = ACTIONS(11990), + [anon_sym_BSLASHSmartcite] = ACTIONS(11990), + [anon_sym_BSLASHsupercite] = ACTIONS(11990), + [anon_sym_BSLASHautocite] = ACTIONS(11990), + [anon_sym_BSLASHAutocite] = ACTIONS(11990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHvolcite] = ACTIONS(11990), + [anon_sym_BSLASHVolcite] = ACTIONS(11990), + [anon_sym_BSLASHpvolcite] = ACTIONS(11990), + [anon_sym_BSLASHPvolcite] = ACTIONS(11990), + [anon_sym_BSLASHfvolcite] = ACTIONS(11990), + [anon_sym_BSLASHftvolcite] = ACTIONS(11990), + [anon_sym_BSLASHsvolcite] = ACTIONS(11990), + [anon_sym_BSLASHSvolcite] = ACTIONS(11990), + [anon_sym_BSLASHtvolcite] = ACTIONS(11990), + [anon_sym_BSLASHTvolcite] = ACTIONS(11990), + [anon_sym_BSLASHavolcite] = ACTIONS(11990), + [anon_sym_BSLASHAvolcite] = ACTIONS(11990), + [anon_sym_BSLASHnotecite] = ACTIONS(11990), + [anon_sym_BSLASHpnotecite] = ACTIONS(11990), + [anon_sym_BSLASHPnotecite] = ACTIONS(11990), + [anon_sym_BSLASHfnotecite] = ACTIONS(11990), + [anon_sym_BSLASHusepackage] = ACTIONS(11990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11990), + [anon_sym_BSLASHinclude] = ACTIONS(11990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11990), + [anon_sym_BSLASHinput] = ACTIONS(11990), + [anon_sym_BSLASHsubfile] = ACTIONS(11990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11990), + [anon_sym_BSLASHbibliography] = ACTIONS(11990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11990), + [anon_sym_BSLASHincludesvg] = ACTIONS(11990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11990), + [anon_sym_BSLASHimport] = ACTIONS(11990), + [anon_sym_BSLASHsubimport] = ACTIONS(11990), + [anon_sym_BSLASHinputfrom] = ACTIONS(11990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11990), + [anon_sym_BSLASHincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHlabel] = ACTIONS(11990), + [anon_sym_BSLASHref] = ACTIONS(11990), + [anon_sym_BSLASHvref] = ACTIONS(11990), + [anon_sym_BSLASHVref] = ACTIONS(11990), + [anon_sym_BSLASHautoref] = ACTIONS(11990), + [anon_sym_BSLASHpageref] = ACTIONS(11990), + [anon_sym_BSLASHcref] = ACTIONS(11990), + [anon_sym_BSLASHCref] = ACTIONS(11990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnameCref] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHlabelcref] = ACTIONS(11990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11990), + [anon_sym_BSLASHeqref] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange] = ACTIONS(11990), + [anon_sym_BSLASHCrefrange] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewlabel] = ACTIONS(11990), + [anon_sym_BSLASHnewcommand] = ACTIONS(11990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11990), + [anon_sym_BSLASHgls] = ACTIONS(11990), + [anon_sym_BSLASHGls] = ACTIONS(11990), + [anon_sym_BSLASHGLS] = ACTIONS(11990), + [anon_sym_BSLASHglspl] = ACTIONS(11990), + [anon_sym_BSLASHGlspl] = ACTIONS(11990), + [anon_sym_BSLASHGLSpl] = ACTIONS(11990), + [anon_sym_BSLASHglsdisp] = ACTIONS(11990), + [anon_sym_BSLASHglslink] = ACTIONS(11990), + [anon_sym_BSLASHglstext] = ACTIONS(11990), + [anon_sym_BSLASHGlstext] = ACTIONS(11990), + [anon_sym_BSLASHGLStext] = ACTIONS(11990), + [anon_sym_BSLASHglsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11990), + [anon_sym_BSLASHglsplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSplural] = ACTIONS(11990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHglsname] = ACTIONS(11990), + [anon_sym_BSLASHGlsname] = ACTIONS(11990), + [anon_sym_BSLASHGLSname] = ACTIONS(11990), + [anon_sym_BSLASHglssymbol] = ACTIONS(11990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11990), + [anon_sym_BSLASHglsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11990), + [anon_sym_BSLASHglsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11990), + [anon_sym_BSLASHglsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11990), + [anon_sym_BSLASHglsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11990), + [anon_sym_BSLASHglsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11990), + [anon_sym_BSLASHnewacronym] = ACTIONS(11990), + [anon_sym_BSLASHacrshort] = ACTIONS(11990), + [anon_sym_BSLASHAcrshort] = ACTIONS(11990), + [anon_sym_BSLASHACRshort] = ACTIONS(11990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11990), + [anon_sym_BSLASHacrlong] = ACTIONS(11990), + [anon_sym_BSLASHAcrlong] = ACTIONS(11990), + [anon_sym_BSLASHACRlong] = ACTIONS(11990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11990), + [anon_sym_BSLASHacrfull] = ACTIONS(11990), + [anon_sym_BSLASHAcrfull] = ACTIONS(11990), + [anon_sym_BSLASHACRfull] = ACTIONS(11990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11990), + [anon_sym_BSLASHacs] = ACTIONS(11990), + [anon_sym_BSLASHAcs] = ACTIONS(11990), + [anon_sym_BSLASHacsp] = ACTIONS(11990), + [anon_sym_BSLASHAcsp] = ACTIONS(11990), + [anon_sym_BSLASHacl] = ACTIONS(11990), + [anon_sym_BSLASHAcl] = ACTIONS(11990), + [anon_sym_BSLASHaclp] = ACTIONS(11990), + [anon_sym_BSLASHAclp] = ACTIONS(11990), + [anon_sym_BSLASHacf] = ACTIONS(11990), + [anon_sym_BSLASHAcf] = ACTIONS(11990), + [anon_sym_BSLASHacfp] = ACTIONS(11990), + [anon_sym_BSLASHAcfp] = ACTIONS(11990), + [anon_sym_BSLASHac] = ACTIONS(11990), + [anon_sym_BSLASHAc] = ACTIONS(11990), + [anon_sym_BSLASHacp] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11990), + [anon_sym_BSLASHcolor] = ACTIONS(11990), + [anon_sym_BSLASHcolorbox] = ACTIONS(11990), + [anon_sym_BSLASHtextcolor] = ACTIONS(11990), + [anon_sym_BSLASHpagecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11990), + }, + [614] = { + [sym__text_fragment] = STATE(618), + [aux_sym_text_repeat1] = STATE(618), + [sym_generic_command_name] = ACTIONS(12015), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12015), + [aux_sym_chapter_token1] = ACTIONS(12015), + [aux_sym_section_token1] = ACTIONS(12015), + [aux_sym_subsection_token1] = ACTIONS(12015), + [aux_sym_subsubsection_token1] = ACTIONS(12015), + [aux_sym_paragraph_token1] = ACTIONS(12015), + [aux_sym_subparagraph_token1] = ACTIONS(12015), + [anon_sym_BSLASHitem] = ACTIONS(12015), + [anon_sym_LBRACK] = ACTIONS(12013), + [anon_sym_LBRACE] = ACTIONS(12013), + [anon_sym_LPAREN] = ACTIONS(12013), + [anon_sym_COMMA] = ACTIONS(12569), + [anon_sym_EQ] = ACTIONS(12569), + [sym_word] = ACTIONS(12569), + [sym_param] = ACTIONS(12013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12013), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12013), + [anon_sym_DOLLAR] = ACTIONS(12015), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12013), + [anon_sym_BSLASHbegin] = ACTIONS(12015), + [anon_sym_BSLASHend] = ACTIONS(12015), + [anon_sym_BSLASHcaption] = ACTIONS(12015), + [anon_sym_BSLASHcite] = ACTIONS(12015), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCite] = ACTIONS(12015), + [anon_sym_BSLASHnocite] = ACTIONS(12015), + [anon_sym_BSLASHcitet] = ACTIONS(12015), + [anon_sym_BSLASHcitep] = ACTIONS(12015), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteauthor] = ACTIONS(12015), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12015), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitetitle] = ACTIONS(12015), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteyear] = ACTIONS(12015), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitedate] = ACTIONS(12015), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteurl] = ACTIONS(12015), + [anon_sym_BSLASHfullcite] = ACTIONS(12015), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12015), + [anon_sym_BSLASHcitealt] = ACTIONS(12015), + [anon_sym_BSLASHcitealp] = ACTIONS(12015), + [anon_sym_BSLASHcitetext] = ACTIONS(12015), + [anon_sym_BSLASHparencite] = ACTIONS(12015), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHParencite] = ACTIONS(12015), + [anon_sym_BSLASHfootcite] = ACTIONS(12015), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12015), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12015), + [anon_sym_BSLASHtextcite] = ACTIONS(12015), + [anon_sym_BSLASHTextcite] = ACTIONS(12015), + [anon_sym_BSLASHsmartcite] = ACTIONS(12015), + [anon_sym_BSLASHSmartcite] = ACTIONS(12015), + [anon_sym_BSLASHsupercite] = ACTIONS(12015), + [anon_sym_BSLASHautocite] = ACTIONS(12015), + [anon_sym_BSLASHAutocite] = ACTIONS(12015), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHvolcite] = ACTIONS(12015), + [anon_sym_BSLASHVolcite] = ACTIONS(12015), + [anon_sym_BSLASHpvolcite] = ACTIONS(12015), + [anon_sym_BSLASHPvolcite] = ACTIONS(12015), + [anon_sym_BSLASHfvolcite] = ACTIONS(12015), + [anon_sym_BSLASHftvolcite] = ACTIONS(12015), + [anon_sym_BSLASHsvolcite] = ACTIONS(12015), + [anon_sym_BSLASHSvolcite] = ACTIONS(12015), + [anon_sym_BSLASHtvolcite] = ACTIONS(12015), + [anon_sym_BSLASHTvolcite] = ACTIONS(12015), + [anon_sym_BSLASHavolcite] = ACTIONS(12015), + [anon_sym_BSLASHAvolcite] = ACTIONS(12015), + [anon_sym_BSLASHnotecite] = ACTIONS(12015), + [anon_sym_BSLASHpnotecite] = ACTIONS(12015), + [anon_sym_BSLASHPnotecite] = ACTIONS(12015), + [anon_sym_BSLASHfnotecite] = ACTIONS(12015), + [anon_sym_BSLASHusepackage] = ACTIONS(12015), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12015), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12015), + [anon_sym_BSLASHinclude] = ACTIONS(12015), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12015), + [anon_sym_BSLASHinput] = ACTIONS(12015), + [anon_sym_BSLASHsubfile] = ACTIONS(12015), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12015), + [anon_sym_BSLASHbibliography] = ACTIONS(12015), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12015), + [anon_sym_BSLASHincludesvg] = ACTIONS(12015), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12015), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12015), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12015), + [anon_sym_BSLASHimport] = ACTIONS(12015), + [anon_sym_BSLASHsubimport] = ACTIONS(12015), + [anon_sym_BSLASHinputfrom] = ACTIONS(12015), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12015), + [anon_sym_BSLASHincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHlabel] = ACTIONS(12015), + [anon_sym_BSLASHref] = ACTIONS(12015), + [anon_sym_BSLASHvref] = ACTIONS(12015), + [anon_sym_BSLASHVref] = ACTIONS(12015), + [anon_sym_BSLASHautoref] = ACTIONS(12015), + [anon_sym_BSLASHpageref] = ACTIONS(12015), + [anon_sym_BSLASHcref] = ACTIONS(12015), + [anon_sym_BSLASHCref] = ACTIONS(12015), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnameCref] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHlabelcref] = ACTIONS(12015), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12015), + [anon_sym_BSLASHeqref] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange] = ACTIONS(12015), + [anon_sym_BSLASHCrefrange] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewlabel] = ACTIONS(12015), + [anon_sym_BSLASHnewcommand] = ACTIONS(12015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12015), + [anon_sym_BSLASHgls] = ACTIONS(12015), + [anon_sym_BSLASHGls] = ACTIONS(12015), + [anon_sym_BSLASHGLS] = ACTIONS(12015), + [anon_sym_BSLASHglspl] = ACTIONS(12015), + [anon_sym_BSLASHGlspl] = ACTIONS(12015), + [anon_sym_BSLASHGLSpl] = ACTIONS(12015), + [anon_sym_BSLASHglsdisp] = ACTIONS(12015), + [anon_sym_BSLASHglslink] = ACTIONS(12015), + [anon_sym_BSLASHglstext] = ACTIONS(12015), + [anon_sym_BSLASHGlstext] = ACTIONS(12015), + [anon_sym_BSLASHGLStext] = ACTIONS(12015), + [anon_sym_BSLASHglsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12015), + [anon_sym_BSLASHglsplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSplural] = ACTIONS(12015), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHglsname] = ACTIONS(12015), + [anon_sym_BSLASHGlsname] = ACTIONS(12015), + [anon_sym_BSLASHGLSname] = ACTIONS(12015), + [anon_sym_BSLASHglssymbol] = ACTIONS(12015), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12015), + [anon_sym_BSLASHglsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12015), + [anon_sym_BSLASHglsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12015), + [anon_sym_BSLASHglsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12015), + [anon_sym_BSLASHglsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12015), + [anon_sym_BSLASHglsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12015), + [anon_sym_BSLASHnewacronym] = ACTIONS(12015), + [anon_sym_BSLASHacrshort] = ACTIONS(12015), + [anon_sym_BSLASHAcrshort] = ACTIONS(12015), + [anon_sym_BSLASHACRshort] = ACTIONS(12015), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12015), + [anon_sym_BSLASHacrlong] = ACTIONS(12015), + [anon_sym_BSLASHAcrlong] = ACTIONS(12015), + [anon_sym_BSLASHACRlong] = ACTIONS(12015), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12015), + [anon_sym_BSLASHacrfull] = ACTIONS(12015), + [anon_sym_BSLASHAcrfull] = ACTIONS(12015), + [anon_sym_BSLASHACRfull] = ACTIONS(12015), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12015), + [anon_sym_BSLASHacs] = ACTIONS(12015), + [anon_sym_BSLASHAcs] = ACTIONS(12015), + [anon_sym_BSLASHacsp] = ACTIONS(12015), + [anon_sym_BSLASHAcsp] = ACTIONS(12015), + [anon_sym_BSLASHacl] = ACTIONS(12015), + [anon_sym_BSLASHAcl] = ACTIONS(12015), + [anon_sym_BSLASHaclp] = ACTIONS(12015), + [anon_sym_BSLASHAclp] = ACTIONS(12015), + [anon_sym_BSLASHacf] = ACTIONS(12015), + [anon_sym_BSLASHAcf] = ACTIONS(12015), + [anon_sym_BSLASHacfp] = ACTIONS(12015), + [anon_sym_BSLASHAcfp] = ACTIONS(12015), + [anon_sym_BSLASHac] = ACTIONS(12015), + [anon_sym_BSLASHAc] = ACTIONS(12015), + [anon_sym_BSLASHacp] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12015), + [anon_sym_BSLASHcolor] = ACTIONS(12015), + [anon_sym_BSLASHcolorbox] = ACTIONS(12015), + [anon_sym_BSLASHtextcolor] = ACTIONS(12015), + [anon_sym_BSLASHpagecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12015), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12015), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12015), + }, + [615] = { + [sym__text_fragment] = STATE(615), + [aux_sym_text_repeat1] = STATE(615), + [sym_generic_command_name] = ACTIONS(12021), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12021), + [aux_sym_chapter_token1] = ACTIONS(12021), + [aux_sym_section_token1] = ACTIONS(12021), + [aux_sym_subsection_token1] = ACTIONS(12021), + [aux_sym_subsubsection_token1] = ACTIONS(12021), + [aux_sym_paragraph_token1] = ACTIONS(12021), + [aux_sym_subparagraph_token1] = ACTIONS(12021), + [anon_sym_BSLASHitem] = ACTIONS(12021), + [anon_sym_LBRACK] = ACTIONS(12019), + [anon_sym_LBRACE] = ACTIONS(12019), + [anon_sym_LPAREN] = ACTIONS(12019), + [anon_sym_COMMA] = ACTIONS(12571), + [anon_sym_EQ] = ACTIONS(12571), + [sym_word] = ACTIONS(12571), + [sym_param] = ACTIONS(12019), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12019), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12019), + [anon_sym_DOLLAR] = ACTIONS(12021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12019), + [anon_sym_BSLASHbegin] = ACTIONS(12021), + [anon_sym_BSLASHcaption] = ACTIONS(12021), + [anon_sym_BSLASHcite] = ACTIONS(12021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCite] = ACTIONS(12021), + [anon_sym_BSLASHnocite] = ACTIONS(12021), + [anon_sym_BSLASHcitet] = ACTIONS(12021), + [anon_sym_BSLASHcitep] = ACTIONS(12021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteauthor] = ACTIONS(12021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitetitle] = ACTIONS(12021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteyear] = ACTIONS(12021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitedate] = ACTIONS(12021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteurl] = ACTIONS(12021), + [anon_sym_BSLASHfullcite] = ACTIONS(12021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12021), + [anon_sym_BSLASHcitealt] = ACTIONS(12021), + [anon_sym_BSLASHcitealp] = ACTIONS(12021), + [anon_sym_BSLASHcitetext] = ACTIONS(12021), + [anon_sym_BSLASHparencite] = ACTIONS(12021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHParencite] = ACTIONS(12021), + [anon_sym_BSLASHfootcite] = ACTIONS(12021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12021), + [anon_sym_BSLASHtextcite] = ACTIONS(12021), + [anon_sym_BSLASHTextcite] = ACTIONS(12021), + [anon_sym_BSLASHsmartcite] = ACTIONS(12021), + [anon_sym_BSLASHSmartcite] = ACTIONS(12021), + [anon_sym_BSLASHsupercite] = ACTIONS(12021), + [anon_sym_BSLASHautocite] = ACTIONS(12021), + [anon_sym_BSLASHAutocite] = ACTIONS(12021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHvolcite] = ACTIONS(12021), + [anon_sym_BSLASHVolcite] = ACTIONS(12021), + [anon_sym_BSLASHpvolcite] = ACTIONS(12021), + [anon_sym_BSLASHPvolcite] = ACTIONS(12021), + [anon_sym_BSLASHfvolcite] = ACTIONS(12021), + [anon_sym_BSLASHftvolcite] = ACTIONS(12021), + [anon_sym_BSLASHsvolcite] = ACTIONS(12021), + [anon_sym_BSLASHSvolcite] = ACTIONS(12021), + [anon_sym_BSLASHtvolcite] = ACTIONS(12021), + [anon_sym_BSLASHTvolcite] = ACTIONS(12021), + [anon_sym_BSLASHavolcite] = ACTIONS(12021), + [anon_sym_BSLASHAvolcite] = ACTIONS(12021), + [anon_sym_BSLASHnotecite] = ACTIONS(12021), + [anon_sym_BSLASHpnotecite] = ACTIONS(12021), + [anon_sym_BSLASHPnotecite] = ACTIONS(12021), + [anon_sym_BSLASHfnotecite] = ACTIONS(12021), + [anon_sym_BSLASHusepackage] = ACTIONS(12021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12021), + [anon_sym_BSLASHinclude] = ACTIONS(12021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12021), + [anon_sym_BSLASHinput] = ACTIONS(12021), + [anon_sym_BSLASHsubfile] = ACTIONS(12021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12021), + [anon_sym_BSLASHbibliography] = ACTIONS(12021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12021), + [anon_sym_BSLASHincludesvg] = ACTIONS(12021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12021), + [anon_sym_BSLASHimport] = ACTIONS(12021), + [anon_sym_BSLASHsubimport] = ACTIONS(12021), + [anon_sym_BSLASHinputfrom] = ACTIONS(12021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12021), + [anon_sym_BSLASHincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHlabel] = ACTIONS(12021), + [anon_sym_BSLASHref] = ACTIONS(12021), + [anon_sym_BSLASHvref] = ACTIONS(12021), + [anon_sym_BSLASHVref] = ACTIONS(12021), + [anon_sym_BSLASHautoref] = ACTIONS(12021), + [anon_sym_BSLASHpageref] = ACTIONS(12021), + [anon_sym_BSLASHcref] = ACTIONS(12021), + [anon_sym_BSLASHCref] = ACTIONS(12021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnameCref] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHlabelcref] = ACTIONS(12021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12021), + [anon_sym_BSLASHeqref] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange] = ACTIONS(12021), + [anon_sym_BSLASHCrefrange] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewlabel] = ACTIONS(12021), + [anon_sym_BSLASHnewcommand] = ACTIONS(12021), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12021), + [anon_sym_BSLASHgls] = ACTIONS(12021), + [anon_sym_BSLASHGls] = ACTIONS(12021), + [anon_sym_BSLASHGLS] = ACTIONS(12021), + [anon_sym_BSLASHglspl] = ACTIONS(12021), + [anon_sym_BSLASHGlspl] = ACTIONS(12021), + [anon_sym_BSLASHGLSpl] = ACTIONS(12021), + [anon_sym_BSLASHglsdisp] = ACTIONS(12021), + [anon_sym_BSLASHglslink] = ACTIONS(12021), + [anon_sym_BSLASHglstext] = ACTIONS(12021), + [anon_sym_BSLASHGlstext] = ACTIONS(12021), + [anon_sym_BSLASHGLStext] = ACTIONS(12021), + [anon_sym_BSLASHglsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12021), + [anon_sym_BSLASHglsplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSplural] = ACTIONS(12021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHglsname] = ACTIONS(12021), + [anon_sym_BSLASHGlsname] = ACTIONS(12021), + [anon_sym_BSLASHGLSname] = ACTIONS(12021), + [anon_sym_BSLASHglssymbol] = ACTIONS(12021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12021), + [anon_sym_BSLASHglsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12021), + [anon_sym_BSLASHglsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12021), + [anon_sym_BSLASHglsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12021), + [anon_sym_BSLASHglsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12021), + [anon_sym_BSLASHglsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12021), + [anon_sym_BSLASHnewacronym] = ACTIONS(12021), + [anon_sym_BSLASHacrshort] = ACTIONS(12021), + [anon_sym_BSLASHAcrshort] = ACTIONS(12021), + [anon_sym_BSLASHACRshort] = ACTIONS(12021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12021), + [anon_sym_BSLASHacrlong] = ACTIONS(12021), + [anon_sym_BSLASHAcrlong] = ACTIONS(12021), + [anon_sym_BSLASHACRlong] = ACTIONS(12021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12021), + [anon_sym_BSLASHacrfull] = ACTIONS(12021), + [anon_sym_BSLASHAcrfull] = ACTIONS(12021), + [anon_sym_BSLASHACRfull] = ACTIONS(12021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12021), + [anon_sym_BSLASHacs] = ACTIONS(12021), + [anon_sym_BSLASHAcs] = ACTIONS(12021), + [anon_sym_BSLASHacsp] = ACTIONS(12021), + [anon_sym_BSLASHAcsp] = ACTIONS(12021), + [anon_sym_BSLASHacl] = ACTIONS(12021), + [anon_sym_BSLASHAcl] = ACTIONS(12021), + [anon_sym_BSLASHaclp] = ACTIONS(12021), + [anon_sym_BSLASHAclp] = ACTIONS(12021), + [anon_sym_BSLASHacf] = ACTIONS(12021), + [anon_sym_BSLASHAcf] = ACTIONS(12021), + [anon_sym_BSLASHacfp] = ACTIONS(12021), + [anon_sym_BSLASHAcfp] = ACTIONS(12021), + [anon_sym_BSLASHac] = ACTIONS(12021), + [anon_sym_BSLASHAc] = ACTIONS(12021), + [anon_sym_BSLASHacp] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12021), + [anon_sym_BSLASHcolor] = ACTIONS(12021), + [anon_sym_BSLASHcolorbox] = ACTIONS(12021), + [anon_sym_BSLASHtextcolor] = ACTIONS(12021), + [anon_sym_BSLASHpagecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12021), + }, + [616] = { + [sym__text_fragment] = STATE(616), + [aux_sym_text_repeat1] = STATE(616), + [sym_generic_command_name] = ACTIONS(12021), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12021), + [aux_sym_section_token1] = ACTIONS(12021), + [aux_sym_subsection_token1] = ACTIONS(12021), + [aux_sym_subsubsection_token1] = ACTIONS(12021), + [aux_sym_paragraph_token1] = ACTIONS(12021), + [aux_sym_subparagraph_token1] = ACTIONS(12021), + [anon_sym_BSLASHitem] = ACTIONS(12021), + [anon_sym_LBRACK] = ACTIONS(12019), + [anon_sym_RBRACK] = ACTIONS(12019), + [anon_sym_LBRACE] = ACTIONS(12019), + [anon_sym_RBRACE] = ACTIONS(12019), + [anon_sym_LPAREN] = ACTIONS(12019), + [anon_sym_COMMA] = ACTIONS(12574), + [anon_sym_EQ] = ACTIONS(12574), + [sym_word] = ACTIONS(12574), + [sym_param] = ACTIONS(12019), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12019), + [anon_sym_DOLLAR] = ACTIONS(12021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12019), + [anon_sym_BSLASHbegin] = ACTIONS(12021), + [anon_sym_BSLASHcaption] = ACTIONS(12021), + [anon_sym_BSLASHcite] = ACTIONS(12021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCite] = ACTIONS(12021), + [anon_sym_BSLASHnocite] = ACTIONS(12021), + [anon_sym_BSLASHcitet] = ACTIONS(12021), + [anon_sym_BSLASHcitep] = ACTIONS(12021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteauthor] = ACTIONS(12021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitetitle] = ACTIONS(12021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteyear] = ACTIONS(12021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitedate] = ACTIONS(12021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteurl] = ACTIONS(12021), + [anon_sym_BSLASHfullcite] = ACTIONS(12021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12021), + [anon_sym_BSLASHcitealt] = ACTIONS(12021), + [anon_sym_BSLASHcitealp] = ACTIONS(12021), + [anon_sym_BSLASHcitetext] = ACTIONS(12021), + [anon_sym_BSLASHparencite] = ACTIONS(12021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHParencite] = ACTIONS(12021), + [anon_sym_BSLASHfootcite] = ACTIONS(12021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12021), + [anon_sym_BSLASHtextcite] = ACTIONS(12021), + [anon_sym_BSLASHTextcite] = ACTIONS(12021), + [anon_sym_BSLASHsmartcite] = ACTIONS(12021), + [anon_sym_BSLASHSmartcite] = ACTIONS(12021), + [anon_sym_BSLASHsupercite] = ACTIONS(12021), + [anon_sym_BSLASHautocite] = ACTIONS(12021), + [anon_sym_BSLASHAutocite] = ACTIONS(12021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHvolcite] = ACTIONS(12021), + [anon_sym_BSLASHVolcite] = ACTIONS(12021), + [anon_sym_BSLASHpvolcite] = ACTIONS(12021), + [anon_sym_BSLASHPvolcite] = ACTIONS(12021), + [anon_sym_BSLASHfvolcite] = ACTIONS(12021), + [anon_sym_BSLASHftvolcite] = ACTIONS(12021), + [anon_sym_BSLASHsvolcite] = ACTIONS(12021), + [anon_sym_BSLASHSvolcite] = ACTIONS(12021), + [anon_sym_BSLASHtvolcite] = ACTIONS(12021), + [anon_sym_BSLASHTvolcite] = ACTIONS(12021), + [anon_sym_BSLASHavolcite] = ACTIONS(12021), + [anon_sym_BSLASHAvolcite] = ACTIONS(12021), + [anon_sym_BSLASHnotecite] = ACTIONS(12021), + [anon_sym_BSLASHpnotecite] = ACTIONS(12021), + [anon_sym_BSLASHPnotecite] = ACTIONS(12021), + [anon_sym_BSLASHfnotecite] = ACTIONS(12021), + [anon_sym_BSLASHusepackage] = ACTIONS(12021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12021), + [anon_sym_BSLASHinclude] = ACTIONS(12021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12021), + [anon_sym_BSLASHinput] = ACTIONS(12021), + [anon_sym_BSLASHsubfile] = ACTIONS(12021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12021), + [anon_sym_BSLASHbibliography] = ACTIONS(12021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12021), + [anon_sym_BSLASHincludesvg] = ACTIONS(12021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12021), + [anon_sym_BSLASHimport] = ACTIONS(12021), + [anon_sym_BSLASHsubimport] = ACTIONS(12021), + [anon_sym_BSLASHinputfrom] = ACTIONS(12021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12021), + [anon_sym_BSLASHincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHlabel] = ACTIONS(12021), + [anon_sym_BSLASHref] = ACTIONS(12021), + [anon_sym_BSLASHvref] = ACTIONS(12021), + [anon_sym_BSLASHVref] = ACTIONS(12021), + [anon_sym_BSLASHautoref] = ACTIONS(12021), + [anon_sym_BSLASHpageref] = ACTIONS(12021), + [anon_sym_BSLASHcref] = ACTIONS(12021), + [anon_sym_BSLASHCref] = ACTIONS(12021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnameCref] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHlabelcref] = ACTIONS(12021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12021), + [anon_sym_BSLASHeqref] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange] = ACTIONS(12021), + [anon_sym_BSLASHCrefrange] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewlabel] = ACTIONS(12021), + [anon_sym_BSLASHnewcommand] = ACTIONS(12021), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12021), + [anon_sym_BSLASHgls] = ACTIONS(12021), + [anon_sym_BSLASHGls] = ACTIONS(12021), + [anon_sym_BSLASHGLS] = ACTIONS(12021), + [anon_sym_BSLASHglspl] = ACTIONS(12021), + [anon_sym_BSLASHGlspl] = ACTIONS(12021), + [anon_sym_BSLASHGLSpl] = ACTIONS(12021), + [anon_sym_BSLASHglsdisp] = ACTIONS(12021), + [anon_sym_BSLASHglslink] = ACTIONS(12021), + [anon_sym_BSLASHglstext] = ACTIONS(12021), + [anon_sym_BSLASHGlstext] = ACTIONS(12021), + [anon_sym_BSLASHGLStext] = ACTIONS(12021), + [anon_sym_BSLASHglsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12021), + [anon_sym_BSLASHglsplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSplural] = ACTIONS(12021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHglsname] = ACTIONS(12021), + [anon_sym_BSLASHGlsname] = ACTIONS(12021), + [anon_sym_BSLASHGLSname] = ACTIONS(12021), + [anon_sym_BSLASHglssymbol] = ACTIONS(12021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12021), + [anon_sym_BSLASHglsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12021), + [anon_sym_BSLASHglsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12021), + [anon_sym_BSLASHglsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12021), + [anon_sym_BSLASHglsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12021), + [anon_sym_BSLASHglsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12021), + [anon_sym_BSLASHnewacronym] = ACTIONS(12021), + [anon_sym_BSLASHacrshort] = ACTIONS(12021), + [anon_sym_BSLASHAcrshort] = ACTIONS(12021), + [anon_sym_BSLASHACRshort] = ACTIONS(12021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12021), + [anon_sym_BSLASHacrlong] = ACTIONS(12021), + [anon_sym_BSLASHAcrlong] = ACTIONS(12021), + [anon_sym_BSLASHACRlong] = ACTIONS(12021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12021), + [anon_sym_BSLASHacrfull] = ACTIONS(12021), + [anon_sym_BSLASHAcrfull] = ACTIONS(12021), + [anon_sym_BSLASHACRfull] = ACTIONS(12021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12021), + [anon_sym_BSLASHacs] = ACTIONS(12021), + [anon_sym_BSLASHAcs] = ACTIONS(12021), + [anon_sym_BSLASHacsp] = ACTIONS(12021), + [anon_sym_BSLASHAcsp] = ACTIONS(12021), + [anon_sym_BSLASHacl] = ACTIONS(12021), + [anon_sym_BSLASHAcl] = ACTIONS(12021), + [anon_sym_BSLASHaclp] = ACTIONS(12021), + [anon_sym_BSLASHAclp] = ACTIONS(12021), + [anon_sym_BSLASHacf] = ACTIONS(12021), + [anon_sym_BSLASHAcf] = ACTIONS(12021), + [anon_sym_BSLASHacfp] = ACTIONS(12021), + [anon_sym_BSLASHAcfp] = ACTIONS(12021), + [anon_sym_BSLASHac] = ACTIONS(12021), + [anon_sym_BSLASHAc] = ACTIONS(12021), + [anon_sym_BSLASHacp] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12021), + [anon_sym_BSLASHcolor] = ACTIONS(12021), + [anon_sym_BSLASHcolorbox] = ACTIONS(12021), + [anon_sym_BSLASHtextcolor] = ACTIONS(12021), + [anon_sym_BSLASHpagecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12021), + }, + [617] = { + [sym__text_fragment] = STATE(615), + [aux_sym_text_repeat1] = STATE(615), + [sym_generic_command_name] = ACTIONS(12015), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12015), + [aux_sym_chapter_token1] = ACTIONS(12015), + [aux_sym_section_token1] = ACTIONS(12015), + [aux_sym_subsection_token1] = ACTIONS(12015), + [aux_sym_subsubsection_token1] = ACTIONS(12015), + [aux_sym_paragraph_token1] = ACTIONS(12015), + [aux_sym_subparagraph_token1] = ACTIONS(12015), + [anon_sym_BSLASHitem] = ACTIONS(12015), + [anon_sym_LBRACK] = ACTIONS(12013), + [anon_sym_LBRACE] = ACTIONS(12013), + [anon_sym_LPAREN] = ACTIONS(12013), + [anon_sym_COMMA] = ACTIONS(12577), + [anon_sym_EQ] = ACTIONS(12577), + [sym_word] = ACTIONS(12577), + [sym_param] = ACTIONS(12013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12013), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12013), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12013), + [anon_sym_DOLLAR] = ACTIONS(12015), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12013), + [anon_sym_BSLASHbegin] = ACTIONS(12015), + [anon_sym_BSLASHcaption] = ACTIONS(12015), + [anon_sym_BSLASHcite] = ACTIONS(12015), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCite] = ACTIONS(12015), + [anon_sym_BSLASHnocite] = ACTIONS(12015), + [anon_sym_BSLASHcitet] = ACTIONS(12015), + [anon_sym_BSLASHcitep] = ACTIONS(12015), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteauthor] = ACTIONS(12015), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12015), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitetitle] = ACTIONS(12015), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteyear] = ACTIONS(12015), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitedate] = ACTIONS(12015), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteurl] = ACTIONS(12015), + [anon_sym_BSLASHfullcite] = ACTIONS(12015), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12015), + [anon_sym_BSLASHcitealt] = ACTIONS(12015), + [anon_sym_BSLASHcitealp] = ACTIONS(12015), + [anon_sym_BSLASHcitetext] = ACTIONS(12015), + [anon_sym_BSLASHparencite] = ACTIONS(12015), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHParencite] = ACTIONS(12015), + [anon_sym_BSLASHfootcite] = ACTIONS(12015), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12015), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12015), + [anon_sym_BSLASHtextcite] = ACTIONS(12015), + [anon_sym_BSLASHTextcite] = ACTIONS(12015), + [anon_sym_BSLASHsmartcite] = ACTIONS(12015), + [anon_sym_BSLASHSmartcite] = ACTIONS(12015), + [anon_sym_BSLASHsupercite] = ACTIONS(12015), + [anon_sym_BSLASHautocite] = ACTIONS(12015), + [anon_sym_BSLASHAutocite] = ACTIONS(12015), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHvolcite] = ACTIONS(12015), + [anon_sym_BSLASHVolcite] = ACTIONS(12015), + [anon_sym_BSLASHpvolcite] = ACTIONS(12015), + [anon_sym_BSLASHPvolcite] = ACTIONS(12015), + [anon_sym_BSLASHfvolcite] = ACTIONS(12015), + [anon_sym_BSLASHftvolcite] = ACTIONS(12015), + [anon_sym_BSLASHsvolcite] = ACTIONS(12015), + [anon_sym_BSLASHSvolcite] = ACTIONS(12015), + [anon_sym_BSLASHtvolcite] = ACTIONS(12015), + [anon_sym_BSLASHTvolcite] = ACTIONS(12015), + [anon_sym_BSLASHavolcite] = ACTIONS(12015), + [anon_sym_BSLASHAvolcite] = ACTIONS(12015), + [anon_sym_BSLASHnotecite] = ACTIONS(12015), + [anon_sym_BSLASHpnotecite] = ACTIONS(12015), + [anon_sym_BSLASHPnotecite] = ACTIONS(12015), + [anon_sym_BSLASHfnotecite] = ACTIONS(12015), + [anon_sym_BSLASHusepackage] = ACTIONS(12015), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12015), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12015), + [anon_sym_BSLASHinclude] = ACTIONS(12015), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12015), + [anon_sym_BSLASHinput] = ACTIONS(12015), + [anon_sym_BSLASHsubfile] = ACTIONS(12015), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12015), + [anon_sym_BSLASHbibliography] = ACTIONS(12015), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12015), + [anon_sym_BSLASHincludesvg] = ACTIONS(12015), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12015), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12015), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12015), + [anon_sym_BSLASHimport] = ACTIONS(12015), + [anon_sym_BSLASHsubimport] = ACTIONS(12015), + [anon_sym_BSLASHinputfrom] = ACTIONS(12015), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12015), + [anon_sym_BSLASHincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHlabel] = ACTIONS(12015), + [anon_sym_BSLASHref] = ACTIONS(12015), + [anon_sym_BSLASHvref] = ACTIONS(12015), + [anon_sym_BSLASHVref] = ACTIONS(12015), + [anon_sym_BSLASHautoref] = ACTIONS(12015), + [anon_sym_BSLASHpageref] = ACTIONS(12015), + [anon_sym_BSLASHcref] = ACTIONS(12015), + [anon_sym_BSLASHCref] = ACTIONS(12015), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnameCref] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHlabelcref] = ACTIONS(12015), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12015), + [anon_sym_BSLASHeqref] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange] = ACTIONS(12015), + [anon_sym_BSLASHCrefrange] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewlabel] = ACTIONS(12015), + [anon_sym_BSLASHnewcommand] = ACTIONS(12015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12015), + [anon_sym_BSLASHgls] = ACTIONS(12015), + [anon_sym_BSLASHGls] = ACTIONS(12015), + [anon_sym_BSLASHGLS] = ACTIONS(12015), + [anon_sym_BSLASHglspl] = ACTIONS(12015), + [anon_sym_BSLASHGlspl] = ACTIONS(12015), + [anon_sym_BSLASHGLSpl] = ACTIONS(12015), + [anon_sym_BSLASHglsdisp] = ACTIONS(12015), + [anon_sym_BSLASHglslink] = ACTIONS(12015), + [anon_sym_BSLASHglstext] = ACTIONS(12015), + [anon_sym_BSLASHGlstext] = ACTIONS(12015), + [anon_sym_BSLASHGLStext] = ACTIONS(12015), + [anon_sym_BSLASHglsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12015), + [anon_sym_BSLASHglsplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSplural] = ACTIONS(12015), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHglsname] = ACTIONS(12015), + [anon_sym_BSLASHGlsname] = ACTIONS(12015), + [anon_sym_BSLASHGLSname] = ACTIONS(12015), + [anon_sym_BSLASHglssymbol] = ACTIONS(12015), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12015), + [anon_sym_BSLASHglsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12015), + [anon_sym_BSLASHglsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12015), + [anon_sym_BSLASHglsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12015), + [anon_sym_BSLASHglsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12015), + [anon_sym_BSLASHglsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12015), + [anon_sym_BSLASHnewacronym] = ACTIONS(12015), + [anon_sym_BSLASHacrshort] = ACTIONS(12015), + [anon_sym_BSLASHAcrshort] = ACTIONS(12015), + [anon_sym_BSLASHACRshort] = ACTIONS(12015), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12015), + [anon_sym_BSLASHacrlong] = ACTIONS(12015), + [anon_sym_BSLASHAcrlong] = ACTIONS(12015), + [anon_sym_BSLASHACRlong] = ACTIONS(12015), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12015), + [anon_sym_BSLASHacrfull] = ACTIONS(12015), + [anon_sym_BSLASHAcrfull] = ACTIONS(12015), + [anon_sym_BSLASHACRfull] = ACTIONS(12015), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12015), + [anon_sym_BSLASHacs] = ACTIONS(12015), + [anon_sym_BSLASHAcs] = ACTIONS(12015), + [anon_sym_BSLASHacsp] = ACTIONS(12015), + [anon_sym_BSLASHAcsp] = ACTIONS(12015), + [anon_sym_BSLASHacl] = ACTIONS(12015), + [anon_sym_BSLASHAcl] = ACTIONS(12015), + [anon_sym_BSLASHaclp] = ACTIONS(12015), + [anon_sym_BSLASHAclp] = ACTIONS(12015), + [anon_sym_BSLASHacf] = ACTIONS(12015), + [anon_sym_BSLASHAcf] = ACTIONS(12015), + [anon_sym_BSLASHacfp] = ACTIONS(12015), + [anon_sym_BSLASHAcfp] = ACTIONS(12015), + [anon_sym_BSLASHac] = ACTIONS(12015), + [anon_sym_BSLASHAc] = ACTIONS(12015), + [anon_sym_BSLASHacp] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12015), + [anon_sym_BSLASHcolor] = ACTIONS(12015), + [anon_sym_BSLASHcolorbox] = ACTIONS(12015), + [anon_sym_BSLASHtextcolor] = ACTIONS(12015), + [anon_sym_BSLASHpagecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12015), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12015), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12015), + }, + [618] = { + [sym__text_fragment] = STATE(618), + [aux_sym_text_repeat1] = STATE(618), + [sym_generic_command_name] = ACTIONS(12021), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12021), + [aux_sym_chapter_token1] = ACTIONS(12021), + [aux_sym_section_token1] = ACTIONS(12021), + [aux_sym_subsection_token1] = ACTIONS(12021), + [aux_sym_subsubsection_token1] = ACTIONS(12021), + [aux_sym_paragraph_token1] = ACTIONS(12021), + [aux_sym_subparagraph_token1] = ACTIONS(12021), + [anon_sym_BSLASHitem] = ACTIONS(12021), + [anon_sym_LBRACK] = ACTIONS(12019), + [anon_sym_LBRACE] = ACTIONS(12019), + [anon_sym_LPAREN] = ACTIONS(12019), + [anon_sym_COMMA] = ACTIONS(12579), + [anon_sym_EQ] = ACTIONS(12579), + [sym_word] = ACTIONS(12579), + [sym_param] = ACTIONS(12019), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12019), + [anon_sym_DOLLAR] = ACTIONS(12021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12019), + [anon_sym_BSLASHbegin] = ACTIONS(12021), + [anon_sym_BSLASHend] = ACTIONS(12021), + [anon_sym_BSLASHcaption] = ACTIONS(12021), + [anon_sym_BSLASHcite] = ACTIONS(12021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCite] = ACTIONS(12021), + [anon_sym_BSLASHnocite] = ACTIONS(12021), + [anon_sym_BSLASHcitet] = ACTIONS(12021), + [anon_sym_BSLASHcitep] = ACTIONS(12021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteauthor] = ACTIONS(12021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitetitle] = ACTIONS(12021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteyear] = ACTIONS(12021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitedate] = ACTIONS(12021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteurl] = ACTIONS(12021), + [anon_sym_BSLASHfullcite] = ACTIONS(12021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12021), + [anon_sym_BSLASHcitealt] = ACTIONS(12021), + [anon_sym_BSLASHcitealp] = ACTIONS(12021), + [anon_sym_BSLASHcitetext] = ACTIONS(12021), + [anon_sym_BSLASHparencite] = ACTIONS(12021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHParencite] = ACTIONS(12021), + [anon_sym_BSLASHfootcite] = ACTIONS(12021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12021), + [anon_sym_BSLASHtextcite] = ACTIONS(12021), + [anon_sym_BSLASHTextcite] = ACTIONS(12021), + [anon_sym_BSLASHsmartcite] = ACTIONS(12021), + [anon_sym_BSLASHSmartcite] = ACTIONS(12021), + [anon_sym_BSLASHsupercite] = ACTIONS(12021), + [anon_sym_BSLASHautocite] = ACTIONS(12021), + [anon_sym_BSLASHAutocite] = ACTIONS(12021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHvolcite] = ACTIONS(12021), + [anon_sym_BSLASHVolcite] = ACTIONS(12021), + [anon_sym_BSLASHpvolcite] = ACTIONS(12021), + [anon_sym_BSLASHPvolcite] = ACTIONS(12021), + [anon_sym_BSLASHfvolcite] = ACTIONS(12021), + [anon_sym_BSLASHftvolcite] = ACTIONS(12021), + [anon_sym_BSLASHsvolcite] = ACTIONS(12021), + [anon_sym_BSLASHSvolcite] = ACTIONS(12021), + [anon_sym_BSLASHtvolcite] = ACTIONS(12021), + [anon_sym_BSLASHTvolcite] = ACTIONS(12021), + [anon_sym_BSLASHavolcite] = ACTIONS(12021), + [anon_sym_BSLASHAvolcite] = ACTIONS(12021), + [anon_sym_BSLASHnotecite] = ACTIONS(12021), + [anon_sym_BSLASHpnotecite] = ACTIONS(12021), + [anon_sym_BSLASHPnotecite] = ACTIONS(12021), + [anon_sym_BSLASHfnotecite] = ACTIONS(12021), + [anon_sym_BSLASHusepackage] = ACTIONS(12021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12021), + [anon_sym_BSLASHinclude] = ACTIONS(12021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12021), + [anon_sym_BSLASHinput] = ACTIONS(12021), + [anon_sym_BSLASHsubfile] = ACTIONS(12021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12021), + [anon_sym_BSLASHbibliography] = ACTIONS(12021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12021), + [anon_sym_BSLASHincludesvg] = ACTIONS(12021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12021), + [anon_sym_BSLASHimport] = ACTIONS(12021), + [anon_sym_BSLASHsubimport] = ACTIONS(12021), + [anon_sym_BSLASHinputfrom] = ACTIONS(12021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12021), + [anon_sym_BSLASHincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHlabel] = ACTIONS(12021), + [anon_sym_BSLASHref] = ACTIONS(12021), + [anon_sym_BSLASHvref] = ACTIONS(12021), + [anon_sym_BSLASHVref] = ACTIONS(12021), + [anon_sym_BSLASHautoref] = ACTIONS(12021), + [anon_sym_BSLASHpageref] = ACTIONS(12021), + [anon_sym_BSLASHcref] = ACTIONS(12021), + [anon_sym_BSLASHCref] = ACTIONS(12021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnameCref] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHlabelcref] = ACTIONS(12021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12021), + [anon_sym_BSLASHeqref] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange] = ACTIONS(12021), + [anon_sym_BSLASHCrefrange] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewlabel] = ACTIONS(12021), + [anon_sym_BSLASHnewcommand] = ACTIONS(12021), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12021), + [anon_sym_BSLASHgls] = ACTIONS(12021), + [anon_sym_BSLASHGls] = ACTIONS(12021), + [anon_sym_BSLASHGLS] = ACTIONS(12021), + [anon_sym_BSLASHglspl] = ACTIONS(12021), + [anon_sym_BSLASHGlspl] = ACTIONS(12021), + [anon_sym_BSLASHGLSpl] = ACTIONS(12021), + [anon_sym_BSLASHglsdisp] = ACTIONS(12021), + [anon_sym_BSLASHglslink] = ACTIONS(12021), + [anon_sym_BSLASHglstext] = ACTIONS(12021), + [anon_sym_BSLASHGlstext] = ACTIONS(12021), + [anon_sym_BSLASHGLStext] = ACTIONS(12021), + [anon_sym_BSLASHglsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12021), + [anon_sym_BSLASHglsplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSplural] = ACTIONS(12021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHglsname] = ACTIONS(12021), + [anon_sym_BSLASHGlsname] = ACTIONS(12021), + [anon_sym_BSLASHGLSname] = ACTIONS(12021), + [anon_sym_BSLASHglssymbol] = ACTIONS(12021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12021), + [anon_sym_BSLASHglsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12021), + [anon_sym_BSLASHglsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12021), + [anon_sym_BSLASHglsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12021), + [anon_sym_BSLASHglsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12021), + [anon_sym_BSLASHglsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12021), + [anon_sym_BSLASHnewacronym] = ACTIONS(12021), + [anon_sym_BSLASHacrshort] = ACTIONS(12021), + [anon_sym_BSLASHAcrshort] = ACTIONS(12021), + [anon_sym_BSLASHACRshort] = ACTIONS(12021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12021), + [anon_sym_BSLASHacrlong] = ACTIONS(12021), + [anon_sym_BSLASHAcrlong] = ACTIONS(12021), + [anon_sym_BSLASHACRlong] = ACTIONS(12021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12021), + [anon_sym_BSLASHacrfull] = ACTIONS(12021), + [anon_sym_BSLASHAcrfull] = ACTIONS(12021), + [anon_sym_BSLASHACRfull] = ACTIONS(12021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12021), + [anon_sym_BSLASHacs] = ACTIONS(12021), + [anon_sym_BSLASHAcs] = ACTIONS(12021), + [anon_sym_BSLASHacsp] = ACTIONS(12021), + [anon_sym_BSLASHAcsp] = ACTIONS(12021), + [anon_sym_BSLASHacl] = ACTIONS(12021), + [anon_sym_BSLASHAcl] = ACTIONS(12021), + [anon_sym_BSLASHaclp] = ACTIONS(12021), + [anon_sym_BSLASHAclp] = ACTIONS(12021), + [anon_sym_BSLASHacf] = ACTIONS(12021), + [anon_sym_BSLASHAcf] = ACTIONS(12021), + [anon_sym_BSLASHacfp] = ACTIONS(12021), + [anon_sym_BSLASHAcfp] = ACTIONS(12021), + [anon_sym_BSLASHac] = ACTIONS(12021), + [anon_sym_BSLASHAc] = ACTIONS(12021), + [anon_sym_BSLASHacp] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12021), + [anon_sym_BSLASHcolor] = ACTIONS(12021), + [anon_sym_BSLASHcolorbox] = ACTIONS(12021), + [anon_sym_BSLASHtextcolor] = ACTIONS(12021), + [anon_sym_BSLASHpagecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12021), + }, + [619] = { + [sym__text_fragment] = STATE(616), + [aux_sym_text_repeat1] = STATE(616), + [sym_generic_command_name] = ACTIONS(12015), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12015), + [aux_sym_section_token1] = ACTIONS(12015), + [aux_sym_subsection_token1] = ACTIONS(12015), + [aux_sym_subsubsection_token1] = ACTIONS(12015), + [aux_sym_paragraph_token1] = ACTIONS(12015), + [aux_sym_subparagraph_token1] = ACTIONS(12015), + [anon_sym_BSLASHitem] = ACTIONS(12015), + [anon_sym_LBRACK] = ACTIONS(12013), + [anon_sym_RBRACK] = ACTIONS(12013), + [anon_sym_LBRACE] = ACTIONS(12013), + [anon_sym_RBRACE] = ACTIONS(12013), + [anon_sym_LPAREN] = ACTIONS(12013), + [anon_sym_COMMA] = ACTIONS(12582), + [anon_sym_EQ] = ACTIONS(12582), + [sym_word] = ACTIONS(12582), + [sym_param] = ACTIONS(12013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12013), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12013), + [anon_sym_DOLLAR] = ACTIONS(12015), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12013), + [anon_sym_BSLASHbegin] = ACTIONS(12015), + [anon_sym_BSLASHcaption] = ACTIONS(12015), + [anon_sym_BSLASHcite] = ACTIONS(12015), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCite] = ACTIONS(12015), + [anon_sym_BSLASHnocite] = ACTIONS(12015), + [anon_sym_BSLASHcitet] = ACTIONS(12015), + [anon_sym_BSLASHcitep] = ACTIONS(12015), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteauthor] = ACTIONS(12015), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12015), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitetitle] = ACTIONS(12015), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteyear] = ACTIONS(12015), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitedate] = ACTIONS(12015), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteurl] = ACTIONS(12015), + [anon_sym_BSLASHfullcite] = ACTIONS(12015), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12015), + [anon_sym_BSLASHcitealt] = ACTIONS(12015), + [anon_sym_BSLASHcitealp] = ACTIONS(12015), + [anon_sym_BSLASHcitetext] = ACTIONS(12015), + [anon_sym_BSLASHparencite] = ACTIONS(12015), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHParencite] = ACTIONS(12015), + [anon_sym_BSLASHfootcite] = ACTIONS(12015), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12015), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12015), + [anon_sym_BSLASHtextcite] = ACTIONS(12015), + [anon_sym_BSLASHTextcite] = ACTIONS(12015), + [anon_sym_BSLASHsmartcite] = ACTIONS(12015), + [anon_sym_BSLASHSmartcite] = ACTIONS(12015), + [anon_sym_BSLASHsupercite] = ACTIONS(12015), + [anon_sym_BSLASHautocite] = ACTIONS(12015), + [anon_sym_BSLASHAutocite] = ACTIONS(12015), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHvolcite] = ACTIONS(12015), + [anon_sym_BSLASHVolcite] = ACTIONS(12015), + [anon_sym_BSLASHpvolcite] = ACTIONS(12015), + [anon_sym_BSLASHPvolcite] = ACTIONS(12015), + [anon_sym_BSLASHfvolcite] = ACTIONS(12015), + [anon_sym_BSLASHftvolcite] = ACTIONS(12015), + [anon_sym_BSLASHsvolcite] = ACTIONS(12015), + [anon_sym_BSLASHSvolcite] = ACTIONS(12015), + [anon_sym_BSLASHtvolcite] = ACTIONS(12015), + [anon_sym_BSLASHTvolcite] = ACTIONS(12015), + [anon_sym_BSLASHavolcite] = ACTIONS(12015), + [anon_sym_BSLASHAvolcite] = ACTIONS(12015), + [anon_sym_BSLASHnotecite] = ACTIONS(12015), + [anon_sym_BSLASHpnotecite] = ACTIONS(12015), + [anon_sym_BSLASHPnotecite] = ACTIONS(12015), + [anon_sym_BSLASHfnotecite] = ACTIONS(12015), + [anon_sym_BSLASHusepackage] = ACTIONS(12015), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12015), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12015), + [anon_sym_BSLASHinclude] = ACTIONS(12015), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12015), + [anon_sym_BSLASHinput] = ACTIONS(12015), + [anon_sym_BSLASHsubfile] = ACTIONS(12015), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12015), + [anon_sym_BSLASHbibliography] = ACTIONS(12015), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12015), + [anon_sym_BSLASHincludesvg] = ACTIONS(12015), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12015), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12015), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12015), + [anon_sym_BSLASHimport] = ACTIONS(12015), + [anon_sym_BSLASHsubimport] = ACTIONS(12015), + [anon_sym_BSLASHinputfrom] = ACTIONS(12015), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12015), + [anon_sym_BSLASHincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHlabel] = ACTIONS(12015), + [anon_sym_BSLASHref] = ACTIONS(12015), + [anon_sym_BSLASHvref] = ACTIONS(12015), + [anon_sym_BSLASHVref] = ACTIONS(12015), + [anon_sym_BSLASHautoref] = ACTIONS(12015), + [anon_sym_BSLASHpageref] = ACTIONS(12015), + [anon_sym_BSLASHcref] = ACTIONS(12015), + [anon_sym_BSLASHCref] = ACTIONS(12015), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnameCref] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHlabelcref] = ACTIONS(12015), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12015), + [anon_sym_BSLASHeqref] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange] = ACTIONS(12015), + [anon_sym_BSLASHCrefrange] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewlabel] = ACTIONS(12015), + [anon_sym_BSLASHnewcommand] = ACTIONS(12015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12015), + [anon_sym_BSLASHgls] = ACTIONS(12015), + [anon_sym_BSLASHGls] = ACTIONS(12015), + [anon_sym_BSLASHGLS] = ACTIONS(12015), + [anon_sym_BSLASHglspl] = ACTIONS(12015), + [anon_sym_BSLASHGlspl] = ACTIONS(12015), + [anon_sym_BSLASHGLSpl] = ACTIONS(12015), + [anon_sym_BSLASHglsdisp] = ACTIONS(12015), + [anon_sym_BSLASHglslink] = ACTIONS(12015), + [anon_sym_BSLASHglstext] = ACTIONS(12015), + [anon_sym_BSLASHGlstext] = ACTIONS(12015), + [anon_sym_BSLASHGLStext] = ACTIONS(12015), + [anon_sym_BSLASHglsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12015), + [anon_sym_BSLASHglsplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSplural] = ACTIONS(12015), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHglsname] = ACTIONS(12015), + [anon_sym_BSLASHGlsname] = ACTIONS(12015), + [anon_sym_BSLASHGLSname] = ACTIONS(12015), + [anon_sym_BSLASHglssymbol] = ACTIONS(12015), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12015), + [anon_sym_BSLASHglsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12015), + [anon_sym_BSLASHglsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12015), + [anon_sym_BSLASHglsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12015), + [anon_sym_BSLASHglsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12015), + [anon_sym_BSLASHglsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12015), + [anon_sym_BSLASHnewacronym] = ACTIONS(12015), + [anon_sym_BSLASHacrshort] = ACTIONS(12015), + [anon_sym_BSLASHAcrshort] = ACTIONS(12015), + [anon_sym_BSLASHACRshort] = ACTIONS(12015), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12015), + [anon_sym_BSLASHacrlong] = ACTIONS(12015), + [anon_sym_BSLASHAcrlong] = ACTIONS(12015), + [anon_sym_BSLASHACRlong] = ACTIONS(12015), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12015), + [anon_sym_BSLASHacrfull] = ACTIONS(12015), + [anon_sym_BSLASHAcrfull] = ACTIONS(12015), + [anon_sym_BSLASHACRfull] = ACTIONS(12015), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12015), + [anon_sym_BSLASHacs] = ACTIONS(12015), + [anon_sym_BSLASHAcs] = ACTIONS(12015), + [anon_sym_BSLASHacsp] = ACTIONS(12015), + [anon_sym_BSLASHAcsp] = ACTIONS(12015), + [anon_sym_BSLASHacl] = ACTIONS(12015), + [anon_sym_BSLASHAcl] = ACTIONS(12015), + [anon_sym_BSLASHaclp] = ACTIONS(12015), + [anon_sym_BSLASHAclp] = ACTIONS(12015), + [anon_sym_BSLASHacf] = ACTIONS(12015), + [anon_sym_BSLASHAcf] = ACTIONS(12015), + [anon_sym_BSLASHacfp] = ACTIONS(12015), + [anon_sym_BSLASHAcfp] = ACTIONS(12015), + [anon_sym_BSLASHac] = ACTIONS(12015), + [anon_sym_BSLASHAc] = ACTIONS(12015), + [anon_sym_BSLASHacp] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12015), + [anon_sym_BSLASHcolor] = ACTIONS(12015), + [anon_sym_BSLASHcolorbox] = ACTIONS(12015), + [anon_sym_BSLASHtextcolor] = ACTIONS(12015), + [anon_sym_BSLASHpagecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12015), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12015), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12015), + }, + [620] = { + [sym_brace_group] = STATE(620), + [sym_bracket_group] = STATE(620), + [sym_paren_group] = STATE(620), + [aux_sym_generic_command_repeat1] = STATE(620), + [sym_generic_command_name] = ACTIONS(12002), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12002), + [aux_sym_subsubsection_token1] = ACTIONS(12002), + [aux_sym_paragraph_token1] = ACTIONS(12002), + [aux_sym_subparagraph_token1] = ACTIONS(12002), + [anon_sym_BSLASHitem] = ACTIONS(12002), + [anon_sym_LBRACK] = ACTIONS(12584), + [anon_sym_RBRACK] = ACTIONS(12000), + [anon_sym_LBRACE] = ACTIONS(12587), + [anon_sym_RBRACE] = ACTIONS(12000), + [anon_sym_LPAREN] = ACTIONS(12590), + [anon_sym_COMMA] = ACTIONS(12000), + [anon_sym_EQ] = ACTIONS(12000), + [sym_word] = ACTIONS(12000), + [sym_param] = ACTIONS(12000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12000), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12000), + [anon_sym_DOLLAR] = ACTIONS(12002), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12000), + [anon_sym_BSLASHbegin] = ACTIONS(12002), + [anon_sym_BSLASHcaption] = ACTIONS(12002), + [anon_sym_BSLASHcite] = ACTIONS(12002), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCite] = ACTIONS(12002), + [anon_sym_BSLASHnocite] = ACTIONS(12002), + [anon_sym_BSLASHcitet] = ACTIONS(12002), + [anon_sym_BSLASHcitep] = ACTIONS(12002), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteauthor] = ACTIONS(12002), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12002), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitetitle] = ACTIONS(12002), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteyear] = ACTIONS(12002), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitedate] = ACTIONS(12002), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteurl] = ACTIONS(12002), + [anon_sym_BSLASHfullcite] = ACTIONS(12002), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12002), + [anon_sym_BSLASHcitealt] = ACTIONS(12002), + [anon_sym_BSLASHcitealp] = ACTIONS(12002), + [anon_sym_BSLASHcitetext] = ACTIONS(12002), + [anon_sym_BSLASHparencite] = ACTIONS(12002), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHParencite] = ACTIONS(12002), + [anon_sym_BSLASHfootcite] = ACTIONS(12002), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12002), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12002), + [anon_sym_BSLASHtextcite] = ACTIONS(12002), + [anon_sym_BSLASHTextcite] = ACTIONS(12002), + [anon_sym_BSLASHsmartcite] = ACTIONS(12002), + [anon_sym_BSLASHSmartcite] = ACTIONS(12002), + [anon_sym_BSLASHsupercite] = ACTIONS(12002), + [anon_sym_BSLASHautocite] = ACTIONS(12002), + [anon_sym_BSLASHAutocite] = ACTIONS(12002), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHvolcite] = ACTIONS(12002), + [anon_sym_BSLASHVolcite] = ACTIONS(12002), + [anon_sym_BSLASHpvolcite] = ACTIONS(12002), + [anon_sym_BSLASHPvolcite] = ACTIONS(12002), + [anon_sym_BSLASHfvolcite] = ACTIONS(12002), + [anon_sym_BSLASHftvolcite] = ACTIONS(12002), + [anon_sym_BSLASHsvolcite] = ACTIONS(12002), + [anon_sym_BSLASHSvolcite] = ACTIONS(12002), + [anon_sym_BSLASHtvolcite] = ACTIONS(12002), + [anon_sym_BSLASHTvolcite] = ACTIONS(12002), + [anon_sym_BSLASHavolcite] = ACTIONS(12002), + [anon_sym_BSLASHAvolcite] = ACTIONS(12002), + [anon_sym_BSLASHnotecite] = ACTIONS(12002), + [anon_sym_BSLASHpnotecite] = ACTIONS(12002), + [anon_sym_BSLASHPnotecite] = ACTIONS(12002), + [anon_sym_BSLASHfnotecite] = ACTIONS(12002), + [anon_sym_BSLASHusepackage] = ACTIONS(12002), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12002), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12002), + [anon_sym_BSLASHinclude] = ACTIONS(12002), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12002), + [anon_sym_BSLASHinput] = ACTIONS(12002), + [anon_sym_BSLASHsubfile] = ACTIONS(12002), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12002), + [anon_sym_BSLASHbibliography] = ACTIONS(12002), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12002), + [anon_sym_BSLASHincludesvg] = ACTIONS(12002), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12002), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12002), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12002), + [anon_sym_BSLASHimport] = ACTIONS(12002), + [anon_sym_BSLASHsubimport] = ACTIONS(12002), + [anon_sym_BSLASHinputfrom] = ACTIONS(12002), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12002), + [anon_sym_BSLASHincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHlabel] = ACTIONS(12002), + [anon_sym_BSLASHref] = ACTIONS(12002), + [anon_sym_BSLASHvref] = ACTIONS(12002), + [anon_sym_BSLASHVref] = ACTIONS(12002), + [anon_sym_BSLASHautoref] = ACTIONS(12002), + [anon_sym_BSLASHpageref] = ACTIONS(12002), + [anon_sym_BSLASHcref] = ACTIONS(12002), + [anon_sym_BSLASHCref] = ACTIONS(12002), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnameCref] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHlabelcref] = ACTIONS(12002), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12002), + [anon_sym_BSLASHeqref] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange] = ACTIONS(12002), + [anon_sym_BSLASHCrefrange] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewlabel] = ACTIONS(12002), + [anon_sym_BSLASHnewcommand] = ACTIONS(12002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12002), + [anon_sym_BSLASHgls] = ACTIONS(12002), + [anon_sym_BSLASHGls] = ACTIONS(12002), + [anon_sym_BSLASHGLS] = ACTIONS(12002), + [anon_sym_BSLASHglspl] = ACTIONS(12002), + [anon_sym_BSLASHGlspl] = ACTIONS(12002), + [anon_sym_BSLASHGLSpl] = ACTIONS(12002), + [anon_sym_BSLASHglsdisp] = ACTIONS(12002), + [anon_sym_BSLASHglslink] = ACTIONS(12002), + [anon_sym_BSLASHglstext] = ACTIONS(12002), + [anon_sym_BSLASHGlstext] = ACTIONS(12002), + [anon_sym_BSLASHGLStext] = ACTIONS(12002), + [anon_sym_BSLASHglsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12002), + [anon_sym_BSLASHglsplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSplural] = ACTIONS(12002), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHglsname] = ACTIONS(12002), + [anon_sym_BSLASHGlsname] = ACTIONS(12002), + [anon_sym_BSLASHGLSname] = ACTIONS(12002), + [anon_sym_BSLASHglssymbol] = ACTIONS(12002), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12002), + [anon_sym_BSLASHglsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12002), + [anon_sym_BSLASHglsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12002), + [anon_sym_BSLASHglsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12002), + [anon_sym_BSLASHglsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12002), + [anon_sym_BSLASHglsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12002), + [anon_sym_BSLASHnewacronym] = ACTIONS(12002), + [anon_sym_BSLASHacrshort] = ACTIONS(12002), + [anon_sym_BSLASHAcrshort] = ACTIONS(12002), + [anon_sym_BSLASHACRshort] = ACTIONS(12002), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12002), + [anon_sym_BSLASHacrlong] = ACTIONS(12002), + [anon_sym_BSLASHAcrlong] = ACTIONS(12002), + [anon_sym_BSLASHACRlong] = ACTIONS(12002), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12002), + [anon_sym_BSLASHacrfull] = ACTIONS(12002), + [anon_sym_BSLASHAcrfull] = ACTIONS(12002), + [anon_sym_BSLASHACRfull] = ACTIONS(12002), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12002), + [anon_sym_BSLASHacs] = ACTIONS(12002), + [anon_sym_BSLASHAcs] = ACTIONS(12002), + [anon_sym_BSLASHacsp] = ACTIONS(12002), + [anon_sym_BSLASHAcsp] = ACTIONS(12002), + [anon_sym_BSLASHacl] = ACTIONS(12002), + [anon_sym_BSLASHAcl] = ACTIONS(12002), + [anon_sym_BSLASHaclp] = ACTIONS(12002), + [anon_sym_BSLASHAclp] = ACTIONS(12002), + [anon_sym_BSLASHacf] = ACTIONS(12002), + [anon_sym_BSLASHAcf] = ACTIONS(12002), + [anon_sym_BSLASHacfp] = ACTIONS(12002), + [anon_sym_BSLASHAcfp] = ACTIONS(12002), + [anon_sym_BSLASHac] = ACTIONS(12002), + [anon_sym_BSLASHAc] = ACTIONS(12002), + [anon_sym_BSLASHacp] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12002), + [anon_sym_BSLASHcolor] = ACTIONS(12002), + [anon_sym_BSLASHcolorbox] = ACTIONS(12002), + [anon_sym_BSLASHtextcolor] = ACTIONS(12002), + [anon_sym_BSLASHpagecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12002), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12002), + }, + [621] = { + [sym__text_fragment] = STATE(621), + [aux_sym_text_repeat1] = STATE(621), + [sym_generic_command_name] = ACTIONS(12021), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12021), + [aux_sym_chapter_token1] = ACTIONS(12021), + [aux_sym_section_token1] = ACTIONS(12021), + [aux_sym_subsection_token1] = ACTIONS(12021), + [aux_sym_subsubsection_token1] = ACTIONS(12021), + [aux_sym_paragraph_token1] = ACTIONS(12021), + [aux_sym_subparagraph_token1] = ACTIONS(12021), + [anon_sym_BSLASHitem] = ACTIONS(12021), + [anon_sym_LBRACK] = ACTIONS(12019), + [anon_sym_LBRACE] = ACTIONS(12019), + [anon_sym_LPAREN] = ACTIONS(12019), + [anon_sym_COMMA] = ACTIONS(12593), + [anon_sym_EQ] = ACTIONS(12593), + [sym_word] = ACTIONS(12593), + [sym_param] = ACTIONS(12019), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12019), + [anon_sym_DOLLAR] = ACTIONS(12021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12019), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12019), + [anon_sym_BSLASHbegin] = ACTIONS(12021), + [anon_sym_BSLASHcaption] = ACTIONS(12021), + [anon_sym_BSLASHcite] = ACTIONS(12021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCite] = ACTIONS(12021), + [anon_sym_BSLASHnocite] = ACTIONS(12021), + [anon_sym_BSLASHcitet] = ACTIONS(12021), + [anon_sym_BSLASHcitep] = ACTIONS(12021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteauthor] = ACTIONS(12021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitetitle] = ACTIONS(12021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteyear] = ACTIONS(12021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitedate] = ACTIONS(12021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteurl] = ACTIONS(12021), + [anon_sym_BSLASHfullcite] = ACTIONS(12021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12021), + [anon_sym_BSLASHcitealt] = ACTIONS(12021), + [anon_sym_BSLASHcitealp] = ACTIONS(12021), + [anon_sym_BSLASHcitetext] = ACTIONS(12021), + [anon_sym_BSLASHparencite] = ACTIONS(12021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHParencite] = ACTIONS(12021), + [anon_sym_BSLASHfootcite] = ACTIONS(12021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12021), + [anon_sym_BSLASHtextcite] = ACTIONS(12021), + [anon_sym_BSLASHTextcite] = ACTIONS(12021), + [anon_sym_BSLASHsmartcite] = ACTIONS(12021), + [anon_sym_BSLASHSmartcite] = ACTIONS(12021), + [anon_sym_BSLASHsupercite] = ACTIONS(12021), + [anon_sym_BSLASHautocite] = ACTIONS(12021), + [anon_sym_BSLASHAutocite] = ACTIONS(12021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHvolcite] = ACTIONS(12021), + [anon_sym_BSLASHVolcite] = ACTIONS(12021), + [anon_sym_BSLASHpvolcite] = ACTIONS(12021), + [anon_sym_BSLASHPvolcite] = ACTIONS(12021), + [anon_sym_BSLASHfvolcite] = ACTIONS(12021), + [anon_sym_BSLASHftvolcite] = ACTIONS(12021), + [anon_sym_BSLASHsvolcite] = ACTIONS(12021), + [anon_sym_BSLASHSvolcite] = ACTIONS(12021), + [anon_sym_BSLASHtvolcite] = ACTIONS(12021), + [anon_sym_BSLASHTvolcite] = ACTIONS(12021), + [anon_sym_BSLASHavolcite] = ACTIONS(12021), + [anon_sym_BSLASHAvolcite] = ACTIONS(12021), + [anon_sym_BSLASHnotecite] = ACTIONS(12021), + [anon_sym_BSLASHpnotecite] = ACTIONS(12021), + [anon_sym_BSLASHPnotecite] = ACTIONS(12021), + [anon_sym_BSLASHfnotecite] = ACTIONS(12021), + [anon_sym_BSLASHusepackage] = ACTIONS(12021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12021), + [anon_sym_BSLASHinclude] = ACTIONS(12021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12021), + [anon_sym_BSLASHinput] = ACTIONS(12021), + [anon_sym_BSLASHsubfile] = ACTIONS(12021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12021), + [anon_sym_BSLASHbibliography] = ACTIONS(12021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12021), + [anon_sym_BSLASHincludesvg] = ACTIONS(12021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12021), + [anon_sym_BSLASHimport] = ACTIONS(12021), + [anon_sym_BSLASHsubimport] = ACTIONS(12021), + [anon_sym_BSLASHinputfrom] = ACTIONS(12021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12021), + [anon_sym_BSLASHincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHlabel] = ACTIONS(12021), + [anon_sym_BSLASHref] = ACTIONS(12021), + [anon_sym_BSLASHvref] = ACTIONS(12021), + [anon_sym_BSLASHVref] = ACTIONS(12021), + [anon_sym_BSLASHautoref] = ACTIONS(12021), + [anon_sym_BSLASHpageref] = ACTIONS(12021), + [anon_sym_BSLASHcref] = ACTIONS(12021), + [anon_sym_BSLASHCref] = ACTIONS(12021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnameCref] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHlabelcref] = ACTIONS(12021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12021), + [anon_sym_BSLASHeqref] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange] = ACTIONS(12021), + [anon_sym_BSLASHCrefrange] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewlabel] = ACTIONS(12021), + [anon_sym_BSLASHnewcommand] = ACTIONS(12021), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12021), + [anon_sym_BSLASHgls] = ACTIONS(12021), + [anon_sym_BSLASHGls] = ACTIONS(12021), + [anon_sym_BSLASHGLS] = ACTIONS(12021), + [anon_sym_BSLASHglspl] = ACTIONS(12021), + [anon_sym_BSLASHGlspl] = ACTIONS(12021), + [anon_sym_BSLASHGLSpl] = ACTIONS(12021), + [anon_sym_BSLASHglsdisp] = ACTIONS(12021), + [anon_sym_BSLASHglslink] = ACTIONS(12021), + [anon_sym_BSLASHglstext] = ACTIONS(12021), + [anon_sym_BSLASHGlstext] = ACTIONS(12021), + [anon_sym_BSLASHGLStext] = ACTIONS(12021), + [anon_sym_BSLASHglsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12021), + [anon_sym_BSLASHglsplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSplural] = ACTIONS(12021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHglsname] = ACTIONS(12021), + [anon_sym_BSLASHGlsname] = ACTIONS(12021), + [anon_sym_BSLASHGLSname] = ACTIONS(12021), + [anon_sym_BSLASHglssymbol] = ACTIONS(12021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12021), + [anon_sym_BSLASHglsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12021), + [anon_sym_BSLASHglsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12021), + [anon_sym_BSLASHglsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12021), + [anon_sym_BSLASHglsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12021), + [anon_sym_BSLASHglsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12021), + [anon_sym_BSLASHnewacronym] = ACTIONS(12021), + [anon_sym_BSLASHacrshort] = ACTIONS(12021), + [anon_sym_BSLASHAcrshort] = ACTIONS(12021), + [anon_sym_BSLASHACRshort] = ACTIONS(12021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12021), + [anon_sym_BSLASHacrlong] = ACTIONS(12021), + [anon_sym_BSLASHAcrlong] = ACTIONS(12021), + [anon_sym_BSLASHACRlong] = ACTIONS(12021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12021), + [anon_sym_BSLASHacrfull] = ACTIONS(12021), + [anon_sym_BSLASHAcrfull] = ACTIONS(12021), + [anon_sym_BSLASHACRfull] = ACTIONS(12021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12021), + [anon_sym_BSLASHacs] = ACTIONS(12021), + [anon_sym_BSLASHAcs] = ACTIONS(12021), + [anon_sym_BSLASHacsp] = ACTIONS(12021), + [anon_sym_BSLASHAcsp] = ACTIONS(12021), + [anon_sym_BSLASHacl] = ACTIONS(12021), + [anon_sym_BSLASHAcl] = ACTIONS(12021), + [anon_sym_BSLASHaclp] = ACTIONS(12021), + [anon_sym_BSLASHAclp] = ACTIONS(12021), + [anon_sym_BSLASHacf] = ACTIONS(12021), + [anon_sym_BSLASHAcf] = ACTIONS(12021), + [anon_sym_BSLASHacfp] = ACTIONS(12021), + [anon_sym_BSLASHAcfp] = ACTIONS(12021), + [anon_sym_BSLASHac] = ACTIONS(12021), + [anon_sym_BSLASHAc] = ACTIONS(12021), + [anon_sym_BSLASHacp] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12021), + [anon_sym_BSLASHcolor] = ACTIONS(12021), + [anon_sym_BSLASHcolorbox] = ACTIONS(12021), + [anon_sym_BSLASHtextcolor] = ACTIONS(12021), + [anon_sym_BSLASHpagecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12021), + }, + [622] = { + [sym_bracket_group] = STATE(623), + [aux_sym_begin_repeat1] = STATE(623), + [sym_generic_command_name] = ACTIONS(12596), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12596), + [aux_sym_chapter_token1] = ACTIONS(12596), + [aux_sym_section_token1] = ACTIONS(12596), + [aux_sym_subsection_token1] = ACTIONS(12596), + [aux_sym_subsubsection_token1] = ACTIONS(12596), + [aux_sym_paragraph_token1] = ACTIONS(12596), + [aux_sym_subparagraph_token1] = ACTIONS(12596), + [anon_sym_BSLASHitem] = ACTIONS(12596), + [anon_sym_LBRACK] = ACTIONS(12082), + [anon_sym_LBRACE] = ACTIONS(12598), + [anon_sym_LPAREN] = ACTIONS(12598), + [anon_sym_COMMA] = ACTIONS(12598), + [anon_sym_EQ] = ACTIONS(12598), + [sym_word] = ACTIONS(12598), + [sym_param] = ACTIONS(12598), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12598), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12598), + [anon_sym_DOLLAR] = ACTIONS(12596), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12598), + [anon_sym_BSLASHbegin] = ACTIONS(12596), + [anon_sym_BSLASHend] = ACTIONS(12596), + [anon_sym_BSLASHcaption] = ACTIONS(12596), + [anon_sym_BSLASHcite] = ACTIONS(12596), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12598), + [anon_sym_BSLASHCite] = ACTIONS(12596), + [anon_sym_BSLASHnocite] = ACTIONS(12596), + [anon_sym_BSLASHcitet] = ACTIONS(12596), + [anon_sym_BSLASHcitep] = ACTIONS(12596), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12598), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12598), + [anon_sym_BSLASHciteauthor] = ACTIONS(12596), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12598), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12596), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12598), + [anon_sym_BSLASHcitetitle] = ACTIONS(12596), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12598), + [anon_sym_BSLASHciteyear] = ACTIONS(12596), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12598), + [anon_sym_BSLASHcitedate] = ACTIONS(12596), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12598), + [anon_sym_BSLASHciteurl] = ACTIONS(12596), + [anon_sym_BSLASHfullcite] = ACTIONS(12596), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12596), + [anon_sym_BSLASHcitealt] = ACTIONS(12596), + [anon_sym_BSLASHcitealp] = ACTIONS(12596), + [anon_sym_BSLASHcitetext] = ACTIONS(12596), + [anon_sym_BSLASHparencite] = ACTIONS(12596), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12598), + [anon_sym_BSLASHParencite] = ACTIONS(12596), + [anon_sym_BSLASHfootcite] = ACTIONS(12596), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12596), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12596), + [anon_sym_BSLASHtextcite] = ACTIONS(12596), + [anon_sym_BSLASHTextcite] = ACTIONS(12596), + [anon_sym_BSLASHsmartcite] = ACTIONS(12596), + [anon_sym_BSLASHSmartcite] = ACTIONS(12596), + [anon_sym_BSLASHsupercite] = ACTIONS(12596), + [anon_sym_BSLASHautocite] = ACTIONS(12596), + [anon_sym_BSLASHAutocite] = ACTIONS(12596), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12598), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12598), + [anon_sym_BSLASHvolcite] = ACTIONS(12596), + [anon_sym_BSLASHVolcite] = ACTIONS(12596), + [anon_sym_BSLASHpvolcite] = ACTIONS(12596), + [anon_sym_BSLASHPvolcite] = ACTIONS(12596), + [anon_sym_BSLASHfvolcite] = ACTIONS(12596), + [anon_sym_BSLASHftvolcite] = ACTIONS(12596), + [anon_sym_BSLASHsvolcite] = ACTIONS(12596), + [anon_sym_BSLASHSvolcite] = ACTIONS(12596), + [anon_sym_BSLASHtvolcite] = ACTIONS(12596), + [anon_sym_BSLASHTvolcite] = ACTIONS(12596), + [anon_sym_BSLASHavolcite] = ACTIONS(12596), + [anon_sym_BSLASHAvolcite] = ACTIONS(12596), + [anon_sym_BSLASHnotecite] = ACTIONS(12596), + [anon_sym_BSLASHpnotecite] = ACTIONS(12596), + [anon_sym_BSLASHPnotecite] = ACTIONS(12596), + [anon_sym_BSLASHfnotecite] = ACTIONS(12596), + [anon_sym_BSLASHusepackage] = ACTIONS(12596), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12596), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12596), + [anon_sym_BSLASHinclude] = ACTIONS(12596), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12596), + [anon_sym_BSLASHinput] = ACTIONS(12596), + [anon_sym_BSLASHsubfile] = ACTIONS(12596), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12596), + [anon_sym_BSLASHbibliography] = ACTIONS(12596), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12596), + [anon_sym_BSLASHincludesvg] = ACTIONS(12596), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12596), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12596), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12596), + [anon_sym_BSLASHimport] = ACTIONS(12596), + [anon_sym_BSLASHsubimport] = ACTIONS(12596), + [anon_sym_BSLASHinputfrom] = ACTIONS(12596), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12596), + [anon_sym_BSLASHincludefrom] = ACTIONS(12596), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12596), + [anon_sym_BSLASHlabel] = ACTIONS(12596), + [anon_sym_BSLASHref] = ACTIONS(12596), + [anon_sym_BSLASHvref] = ACTIONS(12596), + [anon_sym_BSLASHVref] = ACTIONS(12596), + [anon_sym_BSLASHautoref] = ACTIONS(12596), + [anon_sym_BSLASHpageref] = ACTIONS(12596), + [anon_sym_BSLASHcref] = ACTIONS(12596), + [anon_sym_BSLASHCref] = ACTIONS(12596), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12598), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12598), + [anon_sym_BSLASHnamecref] = ACTIONS(12596), + [anon_sym_BSLASHnameCref] = ACTIONS(12596), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12596), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12596), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12596), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12596), + [anon_sym_BSLASHlabelcref] = ACTIONS(12596), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12596), + [anon_sym_BSLASHeqref] = ACTIONS(12596), + [anon_sym_BSLASHcrefrange] = ACTIONS(12596), + [anon_sym_BSLASHCrefrange] = ACTIONS(12596), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12598), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12598), + [anon_sym_BSLASHnewlabel] = ACTIONS(12596), + [anon_sym_BSLASHnewcommand] = ACTIONS(12596), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12596), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12596), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12596), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12598), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12596), + [anon_sym_BSLASHgls] = ACTIONS(12596), + [anon_sym_BSLASHGls] = ACTIONS(12596), + [anon_sym_BSLASHGLS] = ACTIONS(12596), + [anon_sym_BSLASHglspl] = ACTIONS(12596), + [anon_sym_BSLASHGlspl] = ACTIONS(12596), + [anon_sym_BSLASHGLSpl] = ACTIONS(12596), + [anon_sym_BSLASHglsdisp] = ACTIONS(12596), + [anon_sym_BSLASHglslink] = ACTIONS(12596), + [anon_sym_BSLASHglstext] = ACTIONS(12596), + [anon_sym_BSLASHGlstext] = ACTIONS(12596), + [anon_sym_BSLASHGLStext] = ACTIONS(12596), + [anon_sym_BSLASHglsfirst] = ACTIONS(12596), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12596), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12596), + [anon_sym_BSLASHglsplural] = ACTIONS(12596), + [anon_sym_BSLASHGlsplural] = ACTIONS(12596), + [anon_sym_BSLASHGLSplural] = ACTIONS(12596), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12596), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12596), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12596), + [anon_sym_BSLASHglsname] = ACTIONS(12596), + [anon_sym_BSLASHGlsname] = ACTIONS(12596), + [anon_sym_BSLASHGLSname] = ACTIONS(12596), + [anon_sym_BSLASHglssymbol] = ACTIONS(12596), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12596), + [anon_sym_BSLASHglsdesc] = ACTIONS(12596), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12596), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12596), + [anon_sym_BSLASHglsuseri] = ACTIONS(12596), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12596), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12596), + [anon_sym_BSLASHglsuserii] = ACTIONS(12596), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12596), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12596), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12596), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12596), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12596), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12596), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12596), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12596), + [anon_sym_BSLASHglsuserv] = ACTIONS(12596), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12596), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12596), + [anon_sym_BSLASHglsuservi] = ACTIONS(12596), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12596), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12596), + [anon_sym_BSLASHnewacronym] = ACTIONS(12596), + [anon_sym_BSLASHacrshort] = ACTIONS(12596), + [anon_sym_BSLASHAcrshort] = ACTIONS(12596), + [anon_sym_BSLASHACRshort] = ACTIONS(12596), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12596), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12596), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12596), + [anon_sym_BSLASHacrlong] = ACTIONS(12596), + [anon_sym_BSLASHAcrlong] = ACTIONS(12596), + [anon_sym_BSLASHACRlong] = ACTIONS(12596), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12596), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12596), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12596), + [anon_sym_BSLASHacrfull] = ACTIONS(12596), + [anon_sym_BSLASHAcrfull] = ACTIONS(12596), + [anon_sym_BSLASHACRfull] = ACTIONS(12596), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12596), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12596), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12596), + [anon_sym_BSLASHacs] = ACTIONS(12596), + [anon_sym_BSLASHAcs] = ACTIONS(12596), + [anon_sym_BSLASHacsp] = ACTIONS(12596), + [anon_sym_BSLASHAcsp] = ACTIONS(12596), + [anon_sym_BSLASHacl] = ACTIONS(12596), + [anon_sym_BSLASHAcl] = ACTIONS(12596), + [anon_sym_BSLASHaclp] = ACTIONS(12596), + [anon_sym_BSLASHAclp] = ACTIONS(12596), + [anon_sym_BSLASHacf] = ACTIONS(12596), + [anon_sym_BSLASHAcf] = ACTIONS(12596), + [anon_sym_BSLASHacfp] = ACTIONS(12596), + [anon_sym_BSLASHAcfp] = ACTIONS(12596), + [anon_sym_BSLASHac] = ACTIONS(12596), + [anon_sym_BSLASHAc] = ACTIONS(12596), + [anon_sym_BSLASHacp] = ACTIONS(12596), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12596), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12596), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12596), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12596), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12596), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12596), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12596), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12596), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12596), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12596), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12596), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12596), + [anon_sym_BSLASHcolor] = ACTIONS(12596), + [anon_sym_BSLASHcolorbox] = ACTIONS(12596), + [anon_sym_BSLASHtextcolor] = ACTIONS(12596), + [anon_sym_BSLASHpagecolor] = ACTIONS(12596), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12596), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12596), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12596), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12596), + }, + [623] = { + [sym_bracket_group] = STATE(623), + [aux_sym_begin_repeat1] = STATE(623), + [sym_generic_command_name] = ACTIONS(12600), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12600), + [aux_sym_chapter_token1] = ACTIONS(12600), + [aux_sym_section_token1] = ACTIONS(12600), + [aux_sym_subsection_token1] = ACTIONS(12600), + [aux_sym_subsubsection_token1] = ACTIONS(12600), + [aux_sym_paragraph_token1] = ACTIONS(12600), + [aux_sym_subparagraph_token1] = ACTIONS(12600), + [anon_sym_BSLASHitem] = ACTIONS(12600), + [anon_sym_LBRACK] = ACTIONS(12602), + [anon_sym_LBRACE] = ACTIONS(12605), + [anon_sym_LPAREN] = ACTIONS(12605), + [anon_sym_COMMA] = ACTIONS(12605), + [anon_sym_EQ] = ACTIONS(12605), + [sym_word] = ACTIONS(12605), + [sym_param] = ACTIONS(12605), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12605), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12605), + [anon_sym_DOLLAR] = ACTIONS(12600), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12605), + [anon_sym_BSLASHbegin] = ACTIONS(12600), + [anon_sym_BSLASHend] = ACTIONS(12600), + [anon_sym_BSLASHcaption] = ACTIONS(12600), + [anon_sym_BSLASHcite] = ACTIONS(12600), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12605), + [anon_sym_BSLASHCite] = ACTIONS(12600), + [anon_sym_BSLASHnocite] = ACTIONS(12600), + [anon_sym_BSLASHcitet] = ACTIONS(12600), + [anon_sym_BSLASHcitep] = ACTIONS(12600), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12605), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12605), + [anon_sym_BSLASHciteauthor] = ACTIONS(12600), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12605), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12600), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12605), + [anon_sym_BSLASHcitetitle] = ACTIONS(12600), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12605), + [anon_sym_BSLASHciteyear] = ACTIONS(12600), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12605), + [anon_sym_BSLASHcitedate] = ACTIONS(12600), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12605), + [anon_sym_BSLASHciteurl] = ACTIONS(12600), + [anon_sym_BSLASHfullcite] = ACTIONS(12600), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12600), + [anon_sym_BSLASHcitealt] = ACTIONS(12600), + [anon_sym_BSLASHcitealp] = ACTIONS(12600), + [anon_sym_BSLASHcitetext] = ACTIONS(12600), + [anon_sym_BSLASHparencite] = ACTIONS(12600), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12605), + [anon_sym_BSLASHParencite] = ACTIONS(12600), + [anon_sym_BSLASHfootcite] = ACTIONS(12600), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12600), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12600), + [anon_sym_BSLASHtextcite] = ACTIONS(12600), + [anon_sym_BSLASHTextcite] = ACTIONS(12600), + [anon_sym_BSLASHsmartcite] = ACTIONS(12600), + [anon_sym_BSLASHSmartcite] = ACTIONS(12600), + [anon_sym_BSLASHsupercite] = ACTIONS(12600), + [anon_sym_BSLASHautocite] = ACTIONS(12600), + [anon_sym_BSLASHAutocite] = ACTIONS(12600), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12605), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12605), + [anon_sym_BSLASHvolcite] = ACTIONS(12600), + [anon_sym_BSLASHVolcite] = ACTIONS(12600), + [anon_sym_BSLASHpvolcite] = ACTIONS(12600), + [anon_sym_BSLASHPvolcite] = ACTIONS(12600), + [anon_sym_BSLASHfvolcite] = ACTIONS(12600), + [anon_sym_BSLASHftvolcite] = ACTIONS(12600), + [anon_sym_BSLASHsvolcite] = ACTIONS(12600), + [anon_sym_BSLASHSvolcite] = ACTIONS(12600), + [anon_sym_BSLASHtvolcite] = ACTIONS(12600), + [anon_sym_BSLASHTvolcite] = ACTIONS(12600), + [anon_sym_BSLASHavolcite] = ACTIONS(12600), + [anon_sym_BSLASHAvolcite] = ACTIONS(12600), + [anon_sym_BSLASHnotecite] = ACTIONS(12600), + [anon_sym_BSLASHpnotecite] = ACTIONS(12600), + [anon_sym_BSLASHPnotecite] = ACTIONS(12600), + [anon_sym_BSLASHfnotecite] = ACTIONS(12600), + [anon_sym_BSLASHusepackage] = ACTIONS(12600), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12600), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12600), + [anon_sym_BSLASHinclude] = ACTIONS(12600), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12600), + [anon_sym_BSLASHinput] = ACTIONS(12600), + [anon_sym_BSLASHsubfile] = ACTIONS(12600), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12600), + [anon_sym_BSLASHbibliography] = ACTIONS(12600), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12600), + [anon_sym_BSLASHincludesvg] = ACTIONS(12600), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12600), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12600), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12600), + [anon_sym_BSLASHimport] = ACTIONS(12600), + [anon_sym_BSLASHsubimport] = ACTIONS(12600), + [anon_sym_BSLASHinputfrom] = ACTIONS(12600), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12600), + [anon_sym_BSLASHincludefrom] = ACTIONS(12600), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12600), + [anon_sym_BSLASHlabel] = ACTIONS(12600), + [anon_sym_BSLASHref] = ACTIONS(12600), + [anon_sym_BSLASHvref] = ACTIONS(12600), + [anon_sym_BSLASHVref] = ACTIONS(12600), + [anon_sym_BSLASHautoref] = ACTIONS(12600), + [anon_sym_BSLASHpageref] = ACTIONS(12600), + [anon_sym_BSLASHcref] = ACTIONS(12600), + [anon_sym_BSLASHCref] = ACTIONS(12600), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12605), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12605), + [anon_sym_BSLASHnamecref] = ACTIONS(12600), + [anon_sym_BSLASHnameCref] = ACTIONS(12600), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12600), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12600), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12600), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12600), + [anon_sym_BSLASHlabelcref] = ACTIONS(12600), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12600), + [anon_sym_BSLASHeqref] = ACTIONS(12600), + [anon_sym_BSLASHcrefrange] = ACTIONS(12600), + [anon_sym_BSLASHCrefrange] = ACTIONS(12600), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12605), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12605), + [anon_sym_BSLASHnewlabel] = ACTIONS(12600), + [anon_sym_BSLASHnewcommand] = ACTIONS(12600), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12600), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12600), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12600), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12605), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12600), + [anon_sym_BSLASHgls] = ACTIONS(12600), + [anon_sym_BSLASHGls] = ACTIONS(12600), + [anon_sym_BSLASHGLS] = ACTIONS(12600), + [anon_sym_BSLASHglspl] = ACTIONS(12600), + [anon_sym_BSLASHGlspl] = ACTIONS(12600), + [anon_sym_BSLASHGLSpl] = ACTIONS(12600), + [anon_sym_BSLASHglsdisp] = ACTIONS(12600), + [anon_sym_BSLASHglslink] = ACTIONS(12600), + [anon_sym_BSLASHglstext] = ACTIONS(12600), + [anon_sym_BSLASHGlstext] = ACTIONS(12600), + [anon_sym_BSLASHGLStext] = ACTIONS(12600), + [anon_sym_BSLASHglsfirst] = ACTIONS(12600), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12600), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12600), + [anon_sym_BSLASHglsplural] = ACTIONS(12600), + [anon_sym_BSLASHGlsplural] = ACTIONS(12600), + [anon_sym_BSLASHGLSplural] = ACTIONS(12600), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12600), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12600), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12600), + [anon_sym_BSLASHglsname] = ACTIONS(12600), + [anon_sym_BSLASHGlsname] = ACTIONS(12600), + [anon_sym_BSLASHGLSname] = ACTIONS(12600), + [anon_sym_BSLASHglssymbol] = ACTIONS(12600), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12600), + [anon_sym_BSLASHglsdesc] = ACTIONS(12600), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12600), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12600), + [anon_sym_BSLASHglsuseri] = ACTIONS(12600), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12600), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12600), + [anon_sym_BSLASHglsuserii] = ACTIONS(12600), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12600), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12600), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12600), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12600), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12600), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12600), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12600), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12600), + [anon_sym_BSLASHglsuserv] = ACTIONS(12600), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12600), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12600), + [anon_sym_BSLASHglsuservi] = ACTIONS(12600), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12600), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12600), + [anon_sym_BSLASHnewacronym] = ACTIONS(12600), + [anon_sym_BSLASHacrshort] = ACTIONS(12600), + [anon_sym_BSLASHAcrshort] = ACTIONS(12600), + [anon_sym_BSLASHACRshort] = ACTIONS(12600), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12600), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12600), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12600), + [anon_sym_BSLASHacrlong] = ACTIONS(12600), + [anon_sym_BSLASHAcrlong] = ACTIONS(12600), + [anon_sym_BSLASHACRlong] = ACTIONS(12600), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12600), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12600), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12600), + [anon_sym_BSLASHacrfull] = ACTIONS(12600), + [anon_sym_BSLASHAcrfull] = ACTIONS(12600), + [anon_sym_BSLASHACRfull] = ACTIONS(12600), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12600), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12600), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12600), + [anon_sym_BSLASHacs] = ACTIONS(12600), + [anon_sym_BSLASHAcs] = ACTIONS(12600), + [anon_sym_BSLASHacsp] = ACTIONS(12600), + [anon_sym_BSLASHAcsp] = ACTIONS(12600), + [anon_sym_BSLASHacl] = ACTIONS(12600), + [anon_sym_BSLASHAcl] = ACTIONS(12600), + [anon_sym_BSLASHaclp] = ACTIONS(12600), + [anon_sym_BSLASHAclp] = ACTIONS(12600), + [anon_sym_BSLASHacf] = ACTIONS(12600), + [anon_sym_BSLASHAcf] = ACTIONS(12600), + [anon_sym_BSLASHacfp] = ACTIONS(12600), + [anon_sym_BSLASHAcfp] = ACTIONS(12600), + [anon_sym_BSLASHac] = ACTIONS(12600), + [anon_sym_BSLASHAc] = ACTIONS(12600), + [anon_sym_BSLASHacp] = ACTIONS(12600), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12600), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12600), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12600), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12600), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12600), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12600), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12600), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12600), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12600), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12600), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12600), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12600), + [anon_sym_BSLASHcolor] = ACTIONS(12600), + [anon_sym_BSLASHcolorbox] = ACTIONS(12600), + [anon_sym_BSLASHtextcolor] = ACTIONS(12600), + [anon_sym_BSLASHpagecolor] = ACTIONS(12600), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12600), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12600), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12600), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12600), + }, + [624] = { + [sym_brace_group] = STATE(620), + [sym_bracket_group] = STATE(620), + [sym_paren_group] = STATE(620), + [aux_sym_generic_command_repeat1] = STATE(620), + [sym_generic_command_name] = ACTIONS(11998), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(11998), + [aux_sym_subsubsection_token1] = ACTIONS(11998), + [aux_sym_paragraph_token1] = ACTIONS(11998), + [aux_sym_subparagraph_token1] = ACTIONS(11998), + [anon_sym_BSLASHitem] = ACTIONS(11998), + [anon_sym_LBRACK] = ACTIONS(12565), + [anon_sym_RBRACK] = ACTIONS(11996), + [anon_sym_LBRACE] = ACTIONS(6328), + [anon_sym_RBRACE] = ACTIONS(11996), + [anon_sym_LPAREN] = ACTIONS(12567), + [anon_sym_COMMA] = ACTIONS(11996), + [anon_sym_EQ] = ACTIONS(11996), + [sym_word] = ACTIONS(11996), + [sym_param] = ACTIONS(11996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11996), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11996), + [anon_sym_DOLLAR] = ACTIONS(11998), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11996), + [anon_sym_BSLASHbegin] = ACTIONS(11998), + [anon_sym_BSLASHcaption] = ACTIONS(11998), + [anon_sym_BSLASHcite] = ACTIONS(11998), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCite] = ACTIONS(11998), + [anon_sym_BSLASHnocite] = ACTIONS(11998), + [anon_sym_BSLASHcitet] = ACTIONS(11998), + [anon_sym_BSLASHcitep] = ACTIONS(11998), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteauthor] = ACTIONS(11998), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11998), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitetitle] = ACTIONS(11998), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteyear] = ACTIONS(11998), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitedate] = ACTIONS(11998), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteurl] = ACTIONS(11998), + [anon_sym_BSLASHfullcite] = ACTIONS(11998), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11998), + [anon_sym_BSLASHcitealt] = ACTIONS(11998), + [anon_sym_BSLASHcitealp] = ACTIONS(11998), + [anon_sym_BSLASHcitetext] = ACTIONS(11998), + [anon_sym_BSLASHparencite] = ACTIONS(11998), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHParencite] = ACTIONS(11998), + [anon_sym_BSLASHfootcite] = ACTIONS(11998), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11998), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11998), + [anon_sym_BSLASHtextcite] = ACTIONS(11998), + [anon_sym_BSLASHTextcite] = ACTIONS(11998), + [anon_sym_BSLASHsmartcite] = ACTIONS(11998), + [anon_sym_BSLASHSmartcite] = ACTIONS(11998), + [anon_sym_BSLASHsupercite] = ACTIONS(11998), + [anon_sym_BSLASHautocite] = ACTIONS(11998), + [anon_sym_BSLASHAutocite] = ACTIONS(11998), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHvolcite] = ACTIONS(11998), + [anon_sym_BSLASHVolcite] = ACTIONS(11998), + [anon_sym_BSLASHpvolcite] = ACTIONS(11998), + [anon_sym_BSLASHPvolcite] = ACTIONS(11998), + [anon_sym_BSLASHfvolcite] = ACTIONS(11998), + [anon_sym_BSLASHftvolcite] = ACTIONS(11998), + [anon_sym_BSLASHsvolcite] = ACTIONS(11998), + [anon_sym_BSLASHSvolcite] = ACTIONS(11998), + [anon_sym_BSLASHtvolcite] = ACTIONS(11998), + [anon_sym_BSLASHTvolcite] = ACTIONS(11998), + [anon_sym_BSLASHavolcite] = ACTIONS(11998), + [anon_sym_BSLASHAvolcite] = ACTIONS(11998), + [anon_sym_BSLASHnotecite] = ACTIONS(11998), + [anon_sym_BSLASHpnotecite] = ACTIONS(11998), + [anon_sym_BSLASHPnotecite] = ACTIONS(11998), + [anon_sym_BSLASHfnotecite] = ACTIONS(11998), + [anon_sym_BSLASHusepackage] = ACTIONS(11998), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11998), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11998), + [anon_sym_BSLASHinclude] = ACTIONS(11998), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11998), + [anon_sym_BSLASHinput] = ACTIONS(11998), + [anon_sym_BSLASHsubfile] = ACTIONS(11998), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11998), + [anon_sym_BSLASHbibliography] = ACTIONS(11998), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11998), + [anon_sym_BSLASHincludesvg] = ACTIONS(11998), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11998), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11998), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11998), + [anon_sym_BSLASHimport] = ACTIONS(11998), + [anon_sym_BSLASHsubimport] = ACTIONS(11998), + [anon_sym_BSLASHinputfrom] = ACTIONS(11998), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11998), + [anon_sym_BSLASHincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHlabel] = ACTIONS(11998), + [anon_sym_BSLASHref] = ACTIONS(11998), + [anon_sym_BSLASHvref] = ACTIONS(11998), + [anon_sym_BSLASHVref] = ACTIONS(11998), + [anon_sym_BSLASHautoref] = ACTIONS(11998), + [anon_sym_BSLASHpageref] = ACTIONS(11998), + [anon_sym_BSLASHcref] = ACTIONS(11998), + [anon_sym_BSLASHCref] = ACTIONS(11998), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnameCref] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHlabelcref] = ACTIONS(11998), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11998), + [anon_sym_BSLASHeqref] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange] = ACTIONS(11998), + [anon_sym_BSLASHCrefrange] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewlabel] = ACTIONS(11998), + [anon_sym_BSLASHnewcommand] = ACTIONS(11998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11998), + [anon_sym_BSLASHgls] = ACTIONS(11998), + [anon_sym_BSLASHGls] = ACTIONS(11998), + [anon_sym_BSLASHGLS] = ACTIONS(11998), + [anon_sym_BSLASHglspl] = ACTIONS(11998), + [anon_sym_BSLASHGlspl] = ACTIONS(11998), + [anon_sym_BSLASHGLSpl] = ACTIONS(11998), + [anon_sym_BSLASHglsdisp] = ACTIONS(11998), + [anon_sym_BSLASHglslink] = ACTIONS(11998), + [anon_sym_BSLASHglstext] = ACTIONS(11998), + [anon_sym_BSLASHGlstext] = ACTIONS(11998), + [anon_sym_BSLASHGLStext] = ACTIONS(11998), + [anon_sym_BSLASHglsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11998), + [anon_sym_BSLASHglsplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSplural] = ACTIONS(11998), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHglsname] = ACTIONS(11998), + [anon_sym_BSLASHGlsname] = ACTIONS(11998), + [anon_sym_BSLASHGLSname] = ACTIONS(11998), + [anon_sym_BSLASHglssymbol] = ACTIONS(11998), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11998), + [anon_sym_BSLASHglsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11998), + [anon_sym_BSLASHglsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11998), + [anon_sym_BSLASHglsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11998), + [anon_sym_BSLASHglsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11998), + [anon_sym_BSLASHglsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11998), + [anon_sym_BSLASHnewacronym] = ACTIONS(11998), + [anon_sym_BSLASHacrshort] = ACTIONS(11998), + [anon_sym_BSLASHAcrshort] = ACTIONS(11998), + [anon_sym_BSLASHACRshort] = ACTIONS(11998), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11998), + [anon_sym_BSLASHacrlong] = ACTIONS(11998), + [anon_sym_BSLASHAcrlong] = ACTIONS(11998), + [anon_sym_BSLASHACRlong] = ACTIONS(11998), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11998), + [anon_sym_BSLASHacrfull] = ACTIONS(11998), + [anon_sym_BSLASHAcrfull] = ACTIONS(11998), + [anon_sym_BSLASHACRfull] = ACTIONS(11998), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11998), + [anon_sym_BSLASHacs] = ACTIONS(11998), + [anon_sym_BSLASHAcs] = ACTIONS(11998), + [anon_sym_BSLASHacsp] = ACTIONS(11998), + [anon_sym_BSLASHAcsp] = ACTIONS(11998), + [anon_sym_BSLASHacl] = ACTIONS(11998), + [anon_sym_BSLASHAcl] = ACTIONS(11998), + [anon_sym_BSLASHaclp] = ACTIONS(11998), + [anon_sym_BSLASHAclp] = ACTIONS(11998), + [anon_sym_BSLASHacf] = ACTIONS(11998), + [anon_sym_BSLASHAcf] = ACTIONS(11998), + [anon_sym_BSLASHacfp] = ACTIONS(11998), + [anon_sym_BSLASHAcfp] = ACTIONS(11998), + [anon_sym_BSLASHac] = ACTIONS(11998), + [anon_sym_BSLASHAc] = ACTIONS(11998), + [anon_sym_BSLASHacp] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11998), + [anon_sym_BSLASHcolor] = ACTIONS(11998), + [anon_sym_BSLASHcolorbox] = ACTIONS(11998), + [anon_sym_BSLASHtextcolor] = ACTIONS(11998), + [anon_sym_BSLASHpagecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11998), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11998), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11998), + }, + [625] = { + [sym__text_fragment] = STATE(621), + [aux_sym_text_repeat1] = STATE(621), + [sym_generic_command_name] = ACTIONS(12015), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12015), + [aux_sym_chapter_token1] = ACTIONS(12015), + [aux_sym_section_token1] = ACTIONS(12015), + [aux_sym_subsection_token1] = ACTIONS(12015), + [aux_sym_subsubsection_token1] = ACTIONS(12015), + [aux_sym_paragraph_token1] = ACTIONS(12015), + [aux_sym_subparagraph_token1] = ACTIONS(12015), + [anon_sym_BSLASHitem] = ACTIONS(12015), + [anon_sym_LBRACK] = ACTIONS(12013), + [anon_sym_LBRACE] = ACTIONS(12013), + [anon_sym_LPAREN] = ACTIONS(12013), + [anon_sym_COMMA] = ACTIONS(12607), + [anon_sym_EQ] = ACTIONS(12607), + [sym_word] = ACTIONS(12607), + [sym_param] = ACTIONS(12013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12013), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12013), + [anon_sym_DOLLAR] = ACTIONS(12015), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12013), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12013), + [anon_sym_BSLASHbegin] = ACTIONS(12015), + [anon_sym_BSLASHcaption] = ACTIONS(12015), + [anon_sym_BSLASHcite] = ACTIONS(12015), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCite] = ACTIONS(12015), + [anon_sym_BSLASHnocite] = ACTIONS(12015), + [anon_sym_BSLASHcitet] = ACTIONS(12015), + [anon_sym_BSLASHcitep] = ACTIONS(12015), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteauthor] = ACTIONS(12015), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12015), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitetitle] = ACTIONS(12015), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteyear] = ACTIONS(12015), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitedate] = ACTIONS(12015), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteurl] = ACTIONS(12015), + [anon_sym_BSLASHfullcite] = ACTIONS(12015), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12015), + [anon_sym_BSLASHcitealt] = ACTIONS(12015), + [anon_sym_BSLASHcitealp] = ACTIONS(12015), + [anon_sym_BSLASHcitetext] = ACTIONS(12015), + [anon_sym_BSLASHparencite] = ACTIONS(12015), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHParencite] = ACTIONS(12015), + [anon_sym_BSLASHfootcite] = ACTIONS(12015), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12015), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12015), + [anon_sym_BSLASHtextcite] = ACTIONS(12015), + [anon_sym_BSLASHTextcite] = ACTIONS(12015), + [anon_sym_BSLASHsmartcite] = ACTIONS(12015), + [anon_sym_BSLASHSmartcite] = ACTIONS(12015), + [anon_sym_BSLASHsupercite] = ACTIONS(12015), + [anon_sym_BSLASHautocite] = ACTIONS(12015), + [anon_sym_BSLASHAutocite] = ACTIONS(12015), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHvolcite] = ACTIONS(12015), + [anon_sym_BSLASHVolcite] = ACTIONS(12015), + [anon_sym_BSLASHpvolcite] = ACTIONS(12015), + [anon_sym_BSLASHPvolcite] = ACTIONS(12015), + [anon_sym_BSLASHfvolcite] = ACTIONS(12015), + [anon_sym_BSLASHftvolcite] = ACTIONS(12015), + [anon_sym_BSLASHsvolcite] = ACTIONS(12015), + [anon_sym_BSLASHSvolcite] = ACTIONS(12015), + [anon_sym_BSLASHtvolcite] = ACTIONS(12015), + [anon_sym_BSLASHTvolcite] = ACTIONS(12015), + [anon_sym_BSLASHavolcite] = ACTIONS(12015), + [anon_sym_BSLASHAvolcite] = ACTIONS(12015), + [anon_sym_BSLASHnotecite] = ACTIONS(12015), + [anon_sym_BSLASHpnotecite] = ACTIONS(12015), + [anon_sym_BSLASHPnotecite] = ACTIONS(12015), + [anon_sym_BSLASHfnotecite] = ACTIONS(12015), + [anon_sym_BSLASHusepackage] = ACTIONS(12015), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12015), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12015), + [anon_sym_BSLASHinclude] = ACTIONS(12015), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12015), + [anon_sym_BSLASHinput] = ACTIONS(12015), + [anon_sym_BSLASHsubfile] = ACTIONS(12015), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12015), + [anon_sym_BSLASHbibliography] = ACTIONS(12015), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12015), + [anon_sym_BSLASHincludesvg] = ACTIONS(12015), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12015), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12015), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12015), + [anon_sym_BSLASHimport] = ACTIONS(12015), + [anon_sym_BSLASHsubimport] = ACTIONS(12015), + [anon_sym_BSLASHinputfrom] = ACTIONS(12015), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12015), + [anon_sym_BSLASHincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHlabel] = ACTIONS(12015), + [anon_sym_BSLASHref] = ACTIONS(12015), + [anon_sym_BSLASHvref] = ACTIONS(12015), + [anon_sym_BSLASHVref] = ACTIONS(12015), + [anon_sym_BSLASHautoref] = ACTIONS(12015), + [anon_sym_BSLASHpageref] = ACTIONS(12015), + [anon_sym_BSLASHcref] = ACTIONS(12015), + [anon_sym_BSLASHCref] = ACTIONS(12015), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnameCref] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHlabelcref] = ACTIONS(12015), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12015), + [anon_sym_BSLASHeqref] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange] = ACTIONS(12015), + [anon_sym_BSLASHCrefrange] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewlabel] = ACTIONS(12015), + [anon_sym_BSLASHnewcommand] = ACTIONS(12015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12015), + [anon_sym_BSLASHgls] = ACTIONS(12015), + [anon_sym_BSLASHGls] = ACTIONS(12015), + [anon_sym_BSLASHGLS] = ACTIONS(12015), + [anon_sym_BSLASHglspl] = ACTIONS(12015), + [anon_sym_BSLASHGlspl] = ACTIONS(12015), + [anon_sym_BSLASHGLSpl] = ACTIONS(12015), + [anon_sym_BSLASHglsdisp] = ACTIONS(12015), + [anon_sym_BSLASHglslink] = ACTIONS(12015), + [anon_sym_BSLASHglstext] = ACTIONS(12015), + [anon_sym_BSLASHGlstext] = ACTIONS(12015), + [anon_sym_BSLASHGLStext] = ACTIONS(12015), + [anon_sym_BSLASHglsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12015), + [anon_sym_BSLASHglsplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSplural] = ACTIONS(12015), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHglsname] = ACTIONS(12015), + [anon_sym_BSLASHGlsname] = ACTIONS(12015), + [anon_sym_BSLASHGLSname] = ACTIONS(12015), + [anon_sym_BSLASHglssymbol] = ACTIONS(12015), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12015), + [anon_sym_BSLASHglsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12015), + [anon_sym_BSLASHglsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12015), + [anon_sym_BSLASHglsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12015), + [anon_sym_BSLASHglsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12015), + [anon_sym_BSLASHglsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12015), + [anon_sym_BSLASHnewacronym] = ACTIONS(12015), + [anon_sym_BSLASHacrshort] = ACTIONS(12015), + [anon_sym_BSLASHAcrshort] = ACTIONS(12015), + [anon_sym_BSLASHACRshort] = ACTIONS(12015), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12015), + [anon_sym_BSLASHacrlong] = ACTIONS(12015), + [anon_sym_BSLASHAcrlong] = ACTIONS(12015), + [anon_sym_BSLASHACRlong] = ACTIONS(12015), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12015), + [anon_sym_BSLASHacrfull] = ACTIONS(12015), + [anon_sym_BSLASHAcrfull] = ACTIONS(12015), + [anon_sym_BSLASHACRfull] = ACTIONS(12015), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12015), + [anon_sym_BSLASHacs] = ACTIONS(12015), + [anon_sym_BSLASHAcs] = ACTIONS(12015), + [anon_sym_BSLASHacsp] = ACTIONS(12015), + [anon_sym_BSLASHAcsp] = ACTIONS(12015), + [anon_sym_BSLASHacl] = ACTIONS(12015), + [anon_sym_BSLASHAcl] = ACTIONS(12015), + [anon_sym_BSLASHaclp] = ACTIONS(12015), + [anon_sym_BSLASHAclp] = ACTIONS(12015), + [anon_sym_BSLASHacf] = ACTIONS(12015), + [anon_sym_BSLASHAcf] = ACTIONS(12015), + [anon_sym_BSLASHacfp] = ACTIONS(12015), + [anon_sym_BSLASHAcfp] = ACTIONS(12015), + [anon_sym_BSLASHac] = ACTIONS(12015), + [anon_sym_BSLASHAc] = ACTIONS(12015), + [anon_sym_BSLASHacp] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12015), + [anon_sym_BSLASHcolor] = ACTIONS(12015), + [anon_sym_BSLASHcolorbox] = ACTIONS(12015), + [anon_sym_BSLASHtextcolor] = ACTIONS(12015), + [anon_sym_BSLASHpagecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12015), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12015), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12015), + }, + [626] = { + [sym_brace_group] = STATE(629), + [sym_bracket_group] = STATE(629), + [sym_paren_group] = STATE(629), + [aux_sym_generic_command_repeat1] = STATE(629), + [sym_generic_command_name] = ACTIONS(11998), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(11998), + [aux_sym_paragraph_token1] = ACTIONS(11998), + [aux_sym_subparagraph_token1] = ACTIONS(11998), + [anon_sym_BSLASHitem] = ACTIONS(11998), + [anon_sym_LBRACK] = ACTIONS(12609), + [anon_sym_RBRACK] = ACTIONS(11996), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(11996), + [anon_sym_LPAREN] = ACTIONS(12611), + [anon_sym_COMMA] = ACTIONS(11996), + [anon_sym_EQ] = ACTIONS(11996), + [sym_word] = ACTIONS(11996), + [sym_param] = ACTIONS(11996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11996), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11996), + [anon_sym_DOLLAR] = ACTIONS(11998), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11996), + [anon_sym_BSLASHbegin] = ACTIONS(11998), + [anon_sym_BSLASHcaption] = ACTIONS(11998), + [anon_sym_BSLASHcite] = ACTIONS(11998), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCite] = ACTIONS(11998), + [anon_sym_BSLASHnocite] = ACTIONS(11998), + [anon_sym_BSLASHcitet] = ACTIONS(11998), + [anon_sym_BSLASHcitep] = ACTIONS(11998), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteauthor] = ACTIONS(11998), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11998), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitetitle] = ACTIONS(11998), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteyear] = ACTIONS(11998), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitedate] = ACTIONS(11998), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteurl] = ACTIONS(11998), + [anon_sym_BSLASHfullcite] = ACTIONS(11998), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11998), + [anon_sym_BSLASHcitealt] = ACTIONS(11998), + [anon_sym_BSLASHcitealp] = ACTIONS(11998), + [anon_sym_BSLASHcitetext] = ACTIONS(11998), + [anon_sym_BSLASHparencite] = ACTIONS(11998), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHParencite] = ACTIONS(11998), + [anon_sym_BSLASHfootcite] = ACTIONS(11998), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11998), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11998), + [anon_sym_BSLASHtextcite] = ACTIONS(11998), + [anon_sym_BSLASHTextcite] = ACTIONS(11998), + [anon_sym_BSLASHsmartcite] = ACTIONS(11998), + [anon_sym_BSLASHSmartcite] = ACTIONS(11998), + [anon_sym_BSLASHsupercite] = ACTIONS(11998), + [anon_sym_BSLASHautocite] = ACTIONS(11998), + [anon_sym_BSLASHAutocite] = ACTIONS(11998), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHvolcite] = ACTIONS(11998), + [anon_sym_BSLASHVolcite] = ACTIONS(11998), + [anon_sym_BSLASHpvolcite] = ACTIONS(11998), + [anon_sym_BSLASHPvolcite] = ACTIONS(11998), + [anon_sym_BSLASHfvolcite] = ACTIONS(11998), + [anon_sym_BSLASHftvolcite] = ACTIONS(11998), + [anon_sym_BSLASHsvolcite] = ACTIONS(11998), + [anon_sym_BSLASHSvolcite] = ACTIONS(11998), + [anon_sym_BSLASHtvolcite] = ACTIONS(11998), + [anon_sym_BSLASHTvolcite] = ACTIONS(11998), + [anon_sym_BSLASHavolcite] = ACTIONS(11998), + [anon_sym_BSLASHAvolcite] = ACTIONS(11998), + [anon_sym_BSLASHnotecite] = ACTIONS(11998), + [anon_sym_BSLASHpnotecite] = ACTIONS(11998), + [anon_sym_BSLASHPnotecite] = ACTIONS(11998), + [anon_sym_BSLASHfnotecite] = ACTIONS(11998), + [anon_sym_BSLASHusepackage] = ACTIONS(11998), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11998), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11998), + [anon_sym_BSLASHinclude] = ACTIONS(11998), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11998), + [anon_sym_BSLASHinput] = ACTIONS(11998), + [anon_sym_BSLASHsubfile] = ACTIONS(11998), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11998), + [anon_sym_BSLASHbibliography] = ACTIONS(11998), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11998), + [anon_sym_BSLASHincludesvg] = ACTIONS(11998), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11998), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11998), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11998), + [anon_sym_BSLASHimport] = ACTIONS(11998), + [anon_sym_BSLASHsubimport] = ACTIONS(11998), + [anon_sym_BSLASHinputfrom] = ACTIONS(11998), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11998), + [anon_sym_BSLASHincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHlabel] = ACTIONS(11998), + [anon_sym_BSLASHref] = ACTIONS(11998), + [anon_sym_BSLASHvref] = ACTIONS(11998), + [anon_sym_BSLASHVref] = ACTIONS(11998), + [anon_sym_BSLASHautoref] = ACTIONS(11998), + [anon_sym_BSLASHpageref] = ACTIONS(11998), + [anon_sym_BSLASHcref] = ACTIONS(11998), + [anon_sym_BSLASHCref] = ACTIONS(11998), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnameCref] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHlabelcref] = ACTIONS(11998), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11998), + [anon_sym_BSLASHeqref] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange] = ACTIONS(11998), + [anon_sym_BSLASHCrefrange] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewlabel] = ACTIONS(11998), + [anon_sym_BSLASHnewcommand] = ACTIONS(11998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11998), + [anon_sym_BSLASHgls] = ACTIONS(11998), + [anon_sym_BSLASHGls] = ACTIONS(11998), + [anon_sym_BSLASHGLS] = ACTIONS(11998), + [anon_sym_BSLASHglspl] = ACTIONS(11998), + [anon_sym_BSLASHGlspl] = ACTIONS(11998), + [anon_sym_BSLASHGLSpl] = ACTIONS(11998), + [anon_sym_BSLASHglsdisp] = ACTIONS(11998), + [anon_sym_BSLASHglslink] = ACTIONS(11998), + [anon_sym_BSLASHglstext] = ACTIONS(11998), + [anon_sym_BSLASHGlstext] = ACTIONS(11998), + [anon_sym_BSLASHGLStext] = ACTIONS(11998), + [anon_sym_BSLASHglsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11998), + [anon_sym_BSLASHglsplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSplural] = ACTIONS(11998), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHglsname] = ACTIONS(11998), + [anon_sym_BSLASHGlsname] = ACTIONS(11998), + [anon_sym_BSLASHGLSname] = ACTIONS(11998), + [anon_sym_BSLASHglssymbol] = ACTIONS(11998), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11998), + [anon_sym_BSLASHglsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11998), + [anon_sym_BSLASHglsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11998), + [anon_sym_BSLASHglsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11998), + [anon_sym_BSLASHglsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11998), + [anon_sym_BSLASHglsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11998), + [anon_sym_BSLASHnewacronym] = ACTIONS(11998), + [anon_sym_BSLASHacrshort] = ACTIONS(11998), + [anon_sym_BSLASHAcrshort] = ACTIONS(11998), + [anon_sym_BSLASHACRshort] = ACTIONS(11998), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11998), + [anon_sym_BSLASHacrlong] = ACTIONS(11998), + [anon_sym_BSLASHAcrlong] = ACTIONS(11998), + [anon_sym_BSLASHACRlong] = ACTIONS(11998), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11998), + [anon_sym_BSLASHacrfull] = ACTIONS(11998), + [anon_sym_BSLASHAcrfull] = ACTIONS(11998), + [anon_sym_BSLASHACRfull] = ACTIONS(11998), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11998), + [anon_sym_BSLASHacs] = ACTIONS(11998), + [anon_sym_BSLASHAcs] = ACTIONS(11998), + [anon_sym_BSLASHacsp] = ACTIONS(11998), + [anon_sym_BSLASHAcsp] = ACTIONS(11998), + [anon_sym_BSLASHacl] = ACTIONS(11998), + [anon_sym_BSLASHAcl] = ACTIONS(11998), + [anon_sym_BSLASHaclp] = ACTIONS(11998), + [anon_sym_BSLASHAclp] = ACTIONS(11998), + [anon_sym_BSLASHacf] = ACTIONS(11998), + [anon_sym_BSLASHAcf] = ACTIONS(11998), + [anon_sym_BSLASHacfp] = ACTIONS(11998), + [anon_sym_BSLASHAcfp] = ACTIONS(11998), + [anon_sym_BSLASHac] = ACTIONS(11998), + [anon_sym_BSLASHAc] = ACTIONS(11998), + [anon_sym_BSLASHacp] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11998), + [anon_sym_BSLASHcolor] = ACTIONS(11998), + [anon_sym_BSLASHcolorbox] = ACTIONS(11998), + [anon_sym_BSLASHtextcolor] = ACTIONS(11998), + [anon_sym_BSLASHpagecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11998), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11998), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11998), + }, + [627] = { + [sym_generic_command_name] = ACTIONS(12613), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12613), + [aux_sym_chapter_token1] = ACTIONS(12613), + [aux_sym_section_token1] = ACTIONS(12613), + [aux_sym_subsection_token1] = ACTIONS(12613), + [aux_sym_subsubsection_token1] = ACTIONS(12613), + [aux_sym_paragraph_token1] = ACTIONS(12613), + [aux_sym_subparagraph_token1] = ACTIONS(12613), + [anon_sym_BSLASHitem] = ACTIONS(12613), + [anon_sym_LBRACK] = ACTIONS(12615), + [anon_sym_RBRACK] = ACTIONS(12617), + [anon_sym_LBRACE] = ACTIONS(12615), + [anon_sym_LPAREN] = ACTIONS(12615), + [anon_sym_RPAREN] = ACTIONS(12615), + [anon_sym_COMMA] = ACTIONS(12615), + [anon_sym_EQ] = ACTIONS(12615), + [sym_word] = ACTIONS(12615), + [sym_param] = ACTIONS(12615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12615), + [anon_sym_DOLLAR] = ACTIONS(12613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12615), + [anon_sym_BSLASHbegin] = ACTIONS(12613), + [anon_sym_BSLASHcaption] = ACTIONS(12613), + [anon_sym_BSLASHcite] = ACTIONS(12613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCite] = ACTIONS(12613), + [anon_sym_BSLASHnocite] = ACTIONS(12613), + [anon_sym_BSLASHcitet] = ACTIONS(12613), + [anon_sym_BSLASHcitep] = ACTIONS(12613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteauthor] = ACTIONS(12613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitetitle] = ACTIONS(12613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteyear] = ACTIONS(12613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitedate] = ACTIONS(12613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteurl] = ACTIONS(12613), + [anon_sym_BSLASHfullcite] = ACTIONS(12613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12613), + [anon_sym_BSLASHcitealt] = ACTIONS(12613), + [anon_sym_BSLASHcitealp] = ACTIONS(12613), + [anon_sym_BSLASHcitetext] = ACTIONS(12613), + [anon_sym_BSLASHparencite] = ACTIONS(12613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHParencite] = ACTIONS(12613), + [anon_sym_BSLASHfootcite] = ACTIONS(12613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12613), + [anon_sym_BSLASHtextcite] = ACTIONS(12613), + [anon_sym_BSLASHTextcite] = ACTIONS(12613), + [anon_sym_BSLASHsmartcite] = ACTIONS(12613), + [anon_sym_BSLASHSmartcite] = ACTIONS(12613), + [anon_sym_BSLASHsupercite] = ACTIONS(12613), + [anon_sym_BSLASHautocite] = ACTIONS(12613), + [anon_sym_BSLASHAutocite] = ACTIONS(12613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHvolcite] = ACTIONS(12613), + [anon_sym_BSLASHVolcite] = ACTIONS(12613), + [anon_sym_BSLASHpvolcite] = ACTIONS(12613), + [anon_sym_BSLASHPvolcite] = ACTIONS(12613), + [anon_sym_BSLASHfvolcite] = ACTIONS(12613), + [anon_sym_BSLASHftvolcite] = ACTIONS(12613), + [anon_sym_BSLASHsvolcite] = ACTIONS(12613), + [anon_sym_BSLASHSvolcite] = ACTIONS(12613), + [anon_sym_BSLASHtvolcite] = ACTIONS(12613), + [anon_sym_BSLASHTvolcite] = ACTIONS(12613), + [anon_sym_BSLASHavolcite] = ACTIONS(12613), + [anon_sym_BSLASHAvolcite] = ACTIONS(12613), + [anon_sym_BSLASHnotecite] = ACTIONS(12613), + [anon_sym_BSLASHpnotecite] = ACTIONS(12613), + [anon_sym_BSLASHPnotecite] = ACTIONS(12613), + [anon_sym_BSLASHfnotecite] = ACTIONS(12613), + [anon_sym_BSLASHusepackage] = ACTIONS(12613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12613), + [anon_sym_BSLASHinclude] = ACTIONS(12613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12613), + [anon_sym_BSLASHinput] = ACTIONS(12613), + [anon_sym_BSLASHsubfile] = ACTIONS(12613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12613), + [anon_sym_BSLASHbibliography] = ACTIONS(12613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12613), + [anon_sym_BSLASHincludesvg] = ACTIONS(12613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12613), + [anon_sym_BSLASHimport] = ACTIONS(12613), + [anon_sym_BSLASHsubimport] = ACTIONS(12613), + [anon_sym_BSLASHinputfrom] = ACTIONS(12613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12613), + [anon_sym_BSLASHincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHlabel] = ACTIONS(12613), + [anon_sym_BSLASHref] = ACTIONS(12613), + [anon_sym_BSLASHvref] = ACTIONS(12613), + [anon_sym_BSLASHVref] = ACTIONS(12613), + [anon_sym_BSLASHautoref] = ACTIONS(12613), + [anon_sym_BSLASHpageref] = ACTIONS(12613), + [anon_sym_BSLASHcref] = ACTIONS(12613), + [anon_sym_BSLASHCref] = ACTIONS(12613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnameCref] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHlabelcref] = ACTIONS(12613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12613), + [anon_sym_BSLASHeqref] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange] = ACTIONS(12613), + [anon_sym_BSLASHCrefrange] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewlabel] = ACTIONS(12613), + [anon_sym_BSLASHnewcommand] = ACTIONS(12613), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12613), + [anon_sym_BSLASHgls] = ACTIONS(12613), + [anon_sym_BSLASHGls] = ACTIONS(12613), + [anon_sym_BSLASHGLS] = ACTIONS(12613), + [anon_sym_BSLASHglspl] = ACTIONS(12613), + [anon_sym_BSLASHGlspl] = ACTIONS(12613), + [anon_sym_BSLASHGLSpl] = ACTIONS(12613), + [anon_sym_BSLASHglsdisp] = ACTIONS(12613), + [anon_sym_BSLASHglslink] = ACTIONS(12613), + [anon_sym_BSLASHglstext] = ACTIONS(12613), + [anon_sym_BSLASHGlstext] = ACTIONS(12613), + [anon_sym_BSLASHGLStext] = ACTIONS(12613), + [anon_sym_BSLASHglsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12613), + [anon_sym_BSLASHglsplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSplural] = ACTIONS(12613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHglsname] = ACTIONS(12613), + [anon_sym_BSLASHGlsname] = ACTIONS(12613), + [anon_sym_BSLASHGLSname] = ACTIONS(12613), + [anon_sym_BSLASHglssymbol] = ACTIONS(12613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12613), + [anon_sym_BSLASHglsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12613), + [anon_sym_BSLASHglsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12613), + [anon_sym_BSLASHglsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12613), + [anon_sym_BSLASHglsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12613), + [anon_sym_BSLASHglsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12613), + [anon_sym_BSLASHnewacronym] = ACTIONS(12613), + [anon_sym_BSLASHacrshort] = ACTIONS(12613), + [anon_sym_BSLASHAcrshort] = ACTIONS(12613), + [anon_sym_BSLASHACRshort] = ACTIONS(12613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12613), + [anon_sym_BSLASHacrlong] = ACTIONS(12613), + [anon_sym_BSLASHAcrlong] = ACTIONS(12613), + [anon_sym_BSLASHACRlong] = ACTIONS(12613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12613), + [anon_sym_BSLASHacrfull] = ACTIONS(12613), + [anon_sym_BSLASHAcrfull] = ACTIONS(12613), + [anon_sym_BSLASHACRfull] = ACTIONS(12613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12613), + [anon_sym_BSLASHacs] = ACTIONS(12613), + [anon_sym_BSLASHAcs] = ACTIONS(12613), + [anon_sym_BSLASHacsp] = ACTIONS(12613), + [anon_sym_BSLASHAcsp] = ACTIONS(12613), + [anon_sym_BSLASHacl] = ACTIONS(12613), + [anon_sym_BSLASHAcl] = ACTIONS(12613), + [anon_sym_BSLASHaclp] = ACTIONS(12613), + [anon_sym_BSLASHAclp] = ACTIONS(12613), + [anon_sym_BSLASHacf] = ACTIONS(12613), + [anon_sym_BSLASHAcf] = ACTIONS(12613), + [anon_sym_BSLASHacfp] = ACTIONS(12613), + [anon_sym_BSLASHAcfp] = ACTIONS(12613), + [anon_sym_BSLASHac] = ACTIONS(12613), + [anon_sym_BSLASHAc] = ACTIONS(12613), + [anon_sym_BSLASHacp] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12613), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12613), + [anon_sym_BSLASHcolor] = ACTIONS(12613), + [anon_sym_BSLASHcolorbox] = ACTIONS(12613), + [anon_sym_BSLASHtextcolor] = ACTIONS(12613), + [anon_sym_BSLASHpagecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12613), + }, + [628] = { + [sym_brace_group] = STATE(3318), + [sym_generic_command_name] = ACTIONS(12058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12058), + [aux_sym_chapter_token1] = ACTIONS(12058), + [aux_sym_section_token1] = ACTIONS(12058), + [aux_sym_subsection_token1] = ACTIONS(12058), + [aux_sym_subsubsection_token1] = ACTIONS(12058), + [aux_sym_paragraph_token1] = ACTIONS(12058), + [aux_sym_subparagraph_token1] = ACTIONS(12058), + [anon_sym_BSLASHitem] = ACTIONS(12058), + [anon_sym_LBRACK] = ACTIONS(12056), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12056), + [anon_sym_COMMA] = ACTIONS(12056), + [anon_sym_EQ] = ACTIONS(12056), + [sym_word] = ACTIONS(12056), + [sym_param] = ACTIONS(12056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12056), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12056), + [anon_sym_DOLLAR] = ACTIONS(12058), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12056), + [anon_sym_BSLASHbegin] = ACTIONS(12058), + [anon_sym_BSLASHend] = ACTIONS(12058), + [anon_sym_BSLASHcaption] = ACTIONS(12058), + [anon_sym_BSLASHcite] = ACTIONS(12058), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCite] = ACTIONS(12058), + [anon_sym_BSLASHnocite] = ACTIONS(12058), + [anon_sym_BSLASHcitet] = ACTIONS(12058), + [anon_sym_BSLASHcitep] = ACTIONS(12058), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteauthor] = ACTIONS(12058), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12058), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitetitle] = ACTIONS(12058), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteyear] = ACTIONS(12058), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitedate] = ACTIONS(12058), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteurl] = ACTIONS(12058), + [anon_sym_BSLASHfullcite] = ACTIONS(12058), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12058), + [anon_sym_BSLASHcitealt] = ACTIONS(12058), + [anon_sym_BSLASHcitealp] = ACTIONS(12058), + [anon_sym_BSLASHcitetext] = ACTIONS(12058), + [anon_sym_BSLASHparencite] = ACTIONS(12058), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHParencite] = ACTIONS(12058), + [anon_sym_BSLASHfootcite] = ACTIONS(12058), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12058), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12058), + [anon_sym_BSLASHtextcite] = ACTIONS(12058), + [anon_sym_BSLASHTextcite] = ACTIONS(12058), + [anon_sym_BSLASHsmartcite] = ACTIONS(12058), + [anon_sym_BSLASHSmartcite] = ACTIONS(12058), + [anon_sym_BSLASHsupercite] = ACTIONS(12058), + [anon_sym_BSLASHautocite] = ACTIONS(12058), + [anon_sym_BSLASHAutocite] = ACTIONS(12058), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHvolcite] = ACTIONS(12058), + [anon_sym_BSLASHVolcite] = ACTIONS(12058), + [anon_sym_BSLASHpvolcite] = ACTIONS(12058), + [anon_sym_BSLASHPvolcite] = ACTIONS(12058), + [anon_sym_BSLASHfvolcite] = ACTIONS(12058), + [anon_sym_BSLASHftvolcite] = ACTIONS(12058), + [anon_sym_BSLASHsvolcite] = ACTIONS(12058), + [anon_sym_BSLASHSvolcite] = ACTIONS(12058), + [anon_sym_BSLASHtvolcite] = ACTIONS(12058), + [anon_sym_BSLASHTvolcite] = ACTIONS(12058), + [anon_sym_BSLASHavolcite] = ACTIONS(12058), + [anon_sym_BSLASHAvolcite] = ACTIONS(12058), + [anon_sym_BSLASHnotecite] = ACTIONS(12058), + [anon_sym_BSLASHpnotecite] = ACTIONS(12058), + [anon_sym_BSLASHPnotecite] = ACTIONS(12058), + [anon_sym_BSLASHfnotecite] = ACTIONS(12058), + [anon_sym_BSLASHusepackage] = ACTIONS(12058), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12058), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12058), + [anon_sym_BSLASHinclude] = ACTIONS(12058), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12058), + [anon_sym_BSLASHinput] = ACTIONS(12058), + [anon_sym_BSLASHsubfile] = ACTIONS(12058), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12058), + [anon_sym_BSLASHbibliography] = ACTIONS(12058), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12058), + [anon_sym_BSLASHincludesvg] = ACTIONS(12058), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12058), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12058), + [anon_sym_BSLASHimport] = ACTIONS(12058), + [anon_sym_BSLASHsubimport] = ACTIONS(12058), + [anon_sym_BSLASHinputfrom] = ACTIONS(12058), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12058), + [anon_sym_BSLASHincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHlabel] = ACTIONS(12058), + [anon_sym_BSLASHref] = ACTIONS(12058), + [anon_sym_BSLASHvref] = ACTIONS(12058), + [anon_sym_BSLASHVref] = ACTIONS(12058), + [anon_sym_BSLASHautoref] = ACTIONS(12058), + [anon_sym_BSLASHpageref] = ACTIONS(12058), + [anon_sym_BSLASHcref] = ACTIONS(12058), + [anon_sym_BSLASHCref] = ACTIONS(12058), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnameCref] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHlabelcref] = ACTIONS(12058), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12058), + [anon_sym_BSLASHeqref] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange] = ACTIONS(12058), + [anon_sym_BSLASHCrefrange] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewlabel] = ACTIONS(12058), + [anon_sym_BSLASHnewcommand] = ACTIONS(12058), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12058), + [anon_sym_BSLASHgls] = ACTIONS(12058), + [anon_sym_BSLASHGls] = ACTIONS(12058), + [anon_sym_BSLASHGLS] = ACTIONS(12058), + [anon_sym_BSLASHglspl] = ACTIONS(12058), + [anon_sym_BSLASHGlspl] = ACTIONS(12058), + [anon_sym_BSLASHGLSpl] = ACTIONS(12058), + [anon_sym_BSLASHglsdisp] = ACTIONS(12058), + [anon_sym_BSLASHglslink] = ACTIONS(12058), + [anon_sym_BSLASHglstext] = ACTIONS(12058), + [anon_sym_BSLASHGlstext] = ACTIONS(12058), + [anon_sym_BSLASHGLStext] = ACTIONS(12058), + [anon_sym_BSLASHglsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12058), + [anon_sym_BSLASHglsplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSplural] = ACTIONS(12058), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHglsname] = ACTIONS(12058), + [anon_sym_BSLASHGlsname] = ACTIONS(12058), + [anon_sym_BSLASHGLSname] = ACTIONS(12058), + [anon_sym_BSLASHglssymbol] = ACTIONS(12058), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12058), + [anon_sym_BSLASHglsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12058), + [anon_sym_BSLASHglsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12058), + [anon_sym_BSLASHglsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12058), + [anon_sym_BSLASHglsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12058), + [anon_sym_BSLASHglsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12058), + [anon_sym_BSLASHnewacronym] = ACTIONS(12058), + [anon_sym_BSLASHacrshort] = ACTIONS(12058), + [anon_sym_BSLASHAcrshort] = ACTIONS(12058), + [anon_sym_BSLASHACRshort] = ACTIONS(12058), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12058), + [anon_sym_BSLASHacrlong] = ACTIONS(12058), + [anon_sym_BSLASHAcrlong] = ACTIONS(12058), + [anon_sym_BSLASHACRlong] = ACTIONS(12058), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12058), + [anon_sym_BSLASHacrfull] = ACTIONS(12058), + [anon_sym_BSLASHAcrfull] = ACTIONS(12058), + [anon_sym_BSLASHACRfull] = ACTIONS(12058), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12058), + [anon_sym_BSLASHacs] = ACTIONS(12058), + [anon_sym_BSLASHAcs] = ACTIONS(12058), + [anon_sym_BSLASHacsp] = ACTIONS(12058), + [anon_sym_BSLASHAcsp] = ACTIONS(12058), + [anon_sym_BSLASHacl] = ACTIONS(12058), + [anon_sym_BSLASHAcl] = ACTIONS(12058), + [anon_sym_BSLASHaclp] = ACTIONS(12058), + [anon_sym_BSLASHAclp] = ACTIONS(12058), + [anon_sym_BSLASHacf] = ACTIONS(12058), + [anon_sym_BSLASHAcf] = ACTIONS(12058), + [anon_sym_BSLASHacfp] = ACTIONS(12058), + [anon_sym_BSLASHAcfp] = ACTIONS(12058), + [anon_sym_BSLASHac] = ACTIONS(12058), + [anon_sym_BSLASHAc] = ACTIONS(12058), + [anon_sym_BSLASHacp] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12058), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12058), + [anon_sym_BSLASHcolor] = ACTIONS(12058), + [anon_sym_BSLASHcolorbox] = ACTIONS(12058), + [anon_sym_BSLASHtextcolor] = ACTIONS(12058), + [anon_sym_BSLASHpagecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12058), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12058), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12058), + }, + [629] = { + [sym_brace_group] = STATE(629), + [sym_bracket_group] = STATE(629), + [sym_paren_group] = STATE(629), + [aux_sym_generic_command_repeat1] = STATE(629), + [sym_generic_command_name] = ACTIONS(12002), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12002), + [aux_sym_paragraph_token1] = ACTIONS(12002), + [aux_sym_subparagraph_token1] = ACTIONS(12002), + [anon_sym_BSLASHitem] = ACTIONS(12002), + [anon_sym_LBRACK] = ACTIONS(12619), + [anon_sym_RBRACK] = ACTIONS(12000), + [anon_sym_LBRACE] = ACTIONS(12622), + [anon_sym_RBRACE] = ACTIONS(12000), + [anon_sym_LPAREN] = ACTIONS(12625), + [anon_sym_COMMA] = ACTIONS(12000), + [anon_sym_EQ] = ACTIONS(12000), + [sym_word] = ACTIONS(12000), + [sym_param] = ACTIONS(12000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12000), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12000), + [anon_sym_DOLLAR] = ACTIONS(12002), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12000), + [anon_sym_BSLASHbegin] = ACTIONS(12002), + [anon_sym_BSLASHcaption] = ACTIONS(12002), + [anon_sym_BSLASHcite] = ACTIONS(12002), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCite] = ACTIONS(12002), + [anon_sym_BSLASHnocite] = ACTIONS(12002), + [anon_sym_BSLASHcitet] = ACTIONS(12002), + [anon_sym_BSLASHcitep] = ACTIONS(12002), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteauthor] = ACTIONS(12002), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12002), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitetitle] = ACTIONS(12002), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteyear] = ACTIONS(12002), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitedate] = ACTIONS(12002), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteurl] = ACTIONS(12002), + [anon_sym_BSLASHfullcite] = ACTIONS(12002), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12002), + [anon_sym_BSLASHcitealt] = ACTIONS(12002), + [anon_sym_BSLASHcitealp] = ACTIONS(12002), + [anon_sym_BSLASHcitetext] = ACTIONS(12002), + [anon_sym_BSLASHparencite] = ACTIONS(12002), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHParencite] = ACTIONS(12002), + [anon_sym_BSLASHfootcite] = ACTIONS(12002), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12002), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12002), + [anon_sym_BSLASHtextcite] = ACTIONS(12002), + [anon_sym_BSLASHTextcite] = ACTIONS(12002), + [anon_sym_BSLASHsmartcite] = ACTIONS(12002), + [anon_sym_BSLASHSmartcite] = ACTIONS(12002), + [anon_sym_BSLASHsupercite] = ACTIONS(12002), + [anon_sym_BSLASHautocite] = ACTIONS(12002), + [anon_sym_BSLASHAutocite] = ACTIONS(12002), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHvolcite] = ACTIONS(12002), + [anon_sym_BSLASHVolcite] = ACTIONS(12002), + [anon_sym_BSLASHpvolcite] = ACTIONS(12002), + [anon_sym_BSLASHPvolcite] = ACTIONS(12002), + [anon_sym_BSLASHfvolcite] = ACTIONS(12002), + [anon_sym_BSLASHftvolcite] = ACTIONS(12002), + [anon_sym_BSLASHsvolcite] = ACTIONS(12002), + [anon_sym_BSLASHSvolcite] = ACTIONS(12002), + [anon_sym_BSLASHtvolcite] = ACTIONS(12002), + [anon_sym_BSLASHTvolcite] = ACTIONS(12002), + [anon_sym_BSLASHavolcite] = ACTIONS(12002), + [anon_sym_BSLASHAvolcite] = ACTIONS(12002), + [anon_sym_BSLASHnotecite] = ACTIONS(12002), + [anon_sym_BSLASHpnotecite] = ACTIONS(12002), + [anon_sym_BSLASHPnotecite] = ACTIONS(12002), + [anon_sym_BSLASHfnotecite] = ACTIONS(12002), + [anon_sym_BSLASHusepackage] = ACTIONS(12002), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12002), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12002), + [anon_sym_BSLASHinclude] = ACTIONS(12002), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12002), + [anon_sym_BSLASHinput] = ACTIONS(12002), + [anon_sym_BSLASHsubfile] = ACTIONS(12002), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12002), + [anon_sym_BSLASHbibliography] = ACTIONS(12002), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12002), + [anon_sym_BSLASHincludesvg] = ACTIONS(12002), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12002), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12002), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12002), + [anon_sym_BSLASHimport] = ACTIONS(12002), + [anon_sym_BSLASHsubimport] = ACTIONS(12002), + [anon_sym_BSLASHinputfrom] = ACTIONS(12002), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12002), + [anon_sym_BSLASHincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHlabel] = ACTIONS(12002), + [anon_sym_BSLASHref] = ACTIONS(12002), + [anon_sym_BSLASHvref] = ACTIONS(12002), + [anon_sym_BSLASHVref] = ACTIONS(12002), + [anon_sym_BSLASHautoref] = ACTIONS(12002), + [anon_sym_BSLASHpageref] = ACTIONS(12002), + [anon_sym_BSLASHcref] = ACTIONS(12002), + [anon_sym_BSLASHCref] = ACTIONS(12002), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnameCref] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHlabelcref] = ACTIONS(12002), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12002), + [anon_sym_BSLASHeqref] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange] = ACTIONS(12002), + [anon_sym_BSLASHCrefrange] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewlabel] = ACTIONS(12002), + [anon_sym_BSLASHnewcommand] = ACTIONS(12002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12002), + [anon_sym_BSLASHgls] = ACTIONS(12002), + [anon_sym_BSLASHGls] = ACTIONS(12002), + [anon_sym_BSLASHGLS] = ACTIONS(12002), + [anon_sym_BSLASHglspl] = ACTIONS(12002), + [anon_sym_BSLASHGlspl] = ACTIONS(12002), + [anon_sym_BSLASHGLSpl] = ACTIONS(12002), + [anon_sym_BSLASHglsdisp] = ACTIONS(12002), + [anon_sym_BSLASHglslink] = ACTIONS(12002), + [anon_sym_BSLASHglstext] = ACTIONS(12002), + [anon_sym_BSLASHGlstext] = ACTIONS(12002), + [anon_sym_BSLASHGLStext] = ACTIONS(12002), + [anon_sym_BSLASHglsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12002), + [anon_sym_BSLASHglsplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSplural] = ACTIONS(12002), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHglsname] = ACTIONS(12002), + [anon_sym_BSLASHGlsname] = ACTIONS(12002), + [anon_sym_BSLASHGLSname] = ACTIONS(12002), + [anon_sym_BSLASHglssymbol] = ACTIONS(12002), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12002), + [anon_sym_BSLASHglsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12002), + [anon_sym_BSLASHglsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12002), + [anon_sym_BSLASHglsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12002), + [anon_sym_BSLASHglsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12002), + [anon_sym_BSLASHglsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12002), + [anon_sym_BSLASHnewacronym] = ACTIONS(12002), + [anon_sym_BSLASHacrshort] = ACTIONS(12002), + [anon_sym_BSLASHAcrshort] = ACTIONS(12002), + [anon_sym_BSLASHACRshort] = ACTIONS(12002), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12002), + [anon_sym_BSLASHacrlong] = ACTIONS(12002), + [anon_sym_BSLASHAcrlong] = ACTIONS(12002), + [anon_sym_BSLASHACRlong] = ACTIONS(12002), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12002), + [anon_sym_BSLASHacrfull] = ACTIONS(12002), + [anon_sym_BSLASHAcrfull] = ACTIONS(12002), + [anon_sym_BSLASHACRfull] = ACTIONS(12002), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12002), + [anon_sym_BSLASHacs] = ACTIONS(12002), + [anon_sym_BSLASHAcs] = ACTIONS(12002), + [anon_sym_BSLASHacsp] = ACTIONS(12002), + [anon_sym_BSLASHAcsp] = ACTIONS(12002), + [anon_sym_BSLASHacl] = ACTIONS(12002), + [anon_sym_BSLASHAcl] = ACTIONS(12002), + [anon_sym_BSLASHaclp] = ACTIONS(12002), + [anon_sym_BSLASHAclp] = ACTIONS(12002), + [anon_sym_BSLASHacf] = ACTIONS(12002), + [anon_sym_BSLASHAcf] = ACTIONS(12002), + [anon_sym_BSLASHacfp] = ACTIONS(12002), + [anon_sym_BSLASHAcfp] = ACTIONS(12002), + [anon_sym_BSLASHac] = ACTIONS(12002), + [anon_sym_BSLASHAc] = ACTIONS(12002), + [anon_sym_BSLASHacp] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12002), + [anon_sym_BSLASHcolor] = ACTIONS(12002), + [anon_sym_BSLASHcolorbox] = ACTIONS(12002), + [anon_sym_BSLASHtextcolor] = ACTIONS(12002), + [anon_sym_BSLASHpagecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12002), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12002), + }, + [630] = { + [sym_generic_command_name] = ACTIONS(12613), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12613), + [aux_sym_chapter_token1] = ACTIONS(12613), + [aux_sym_section_token1] = ACTIONS(12613), + [aux_sym_subsection_token1] = ACTIONS(12613), + [aux_sym_subsubsection_token1] = ACTIONS(12613), + [aux_sym_paragraph_token1] = ACTIONS(12613), + [aux_sym_subparagraph_token1] = ACTIONS(12613), + [anon_sym_BSLASHitem] = ACTIONS(12613), + [anon_sym_LBRACK] = ACTIONS(12615), + [anon_sym_RBRACK] = ACTIONS(12628), + [anon_sym_LBRACE] = ACTIONS(12615), + [anon_sym_LPAREN] = ACTIONS(12615), + [anon_sym_RPAREN] = ACTIONS(12615), + [anon_sym_COMMA] = ACTIONS(12615), + [anon_sym_EQ] = ACTIONS(12615), + [sym_word] = ACTIONS(12615), + [sym_param] = ACTIONS(12615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12615), + [anon_sym_DOLLAR] = ACTIONS(12613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12615), + [anon_sym_BSLASHbegin] = ACTIONS(12613), + [anon_sym_BSLASHcaption] = ACTIONS(12613), + [anon_sym_BSLASHcite] = ACTIONS(12613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCite] = ACTIONS(12613), + [anon_sym_BSLASHnocite] = ACTIONS(12613), + [anon_sym_BSLASHcitet] = ACTIONS(12613), + [anon_sym_BSLASHcitep] = ACTIONS(12613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteauthor] = ACTIONS(12613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitetitle] = ACTIONS(12613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteyear] = ACTIONS(12613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitedate] = ACTIONS(12613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteurl] = ACTIONS(12613), + [anon_sym_BSLASHfullcite] = ACTIONS(12613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12613), + [anon_sym_BSLASHcitealt] = ACTIONS(12613), + [anon_sym_BSLASHcitealp] = ACTIONS(12613), + [anon_sym_BSLASHcitetext] = ACTIONS(12613), + [anon_sym_BSLASHparencite] = ACTIONS(12613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHParencite] = ACTIONS(12613), + [anon_sym_BSLASHfootcite] = ACTIONS(12613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12613), + [anon_sym_BSLASHtextcite] = ACTIONS(12613), + [anon_sym_BSLASHTextcite] = ACTIONS(12613), + [anon_sym_BSLASHsmartcite] = ACTIONS(12613), + [anon_sym_BSLASHSmartcite] = ACTIONS(12613), + [anon_sym_BSLASHsupercite] = ACTIONS(12613), + [anon_sym_BSLASHautocite] = ACTIONS(12613), + [anon_sym_BSLASHAutocite] = ACTIONS(12613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHvolcite] = ACTIONS(12613), + [anon_sym_BSLASHVolcite] = ACTIONS(12613), + [anon_sym_BSLASHpvolcite] = ACTIONS(12613), + [anon_sym_BSLASHPvolcite] = ACTIONS(12613), + [anon_sym_BSLASHfvolcite] = ACTIONS(12613), + [anon_sym_BSLASHftvolcite] = ACTIONS(12613), + [anon_sym_BSLASHsvolcite] = ACTIONS(12613), + [anon_sym_BSLASHSvolcite] = ACTIONS(12613), + [anon_sym_BSLASHtvolcite] = ACTIONS(12613), + [anon_sym_BSLASHTvolcite] = ACTIONS(12613), + [anon_sym_BSLASHavolcite] = ACTIONS(12613), + [anon_sym_BSLASHAvolcite] = ACTIONS(12613), + [anon_sym_BSLASHnotecite] = ACTIONS(12613), + [anon_sym_BSLASHpnotecite] = ACTIONS(12613), + [anon_sym_BSLASHPnotecite] = ACTIONS(12613), + [anon_sym_BSLASHfnotecite] = ACTIONS(12613), + [anon_sym_BSLASHusepackage] = ACTIONS(12613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12613), + [anon_sym_BSLASHinclude] = ACTIONS(12613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12613), + [anon_sym_BSLASHinput] = ACTIONS(12613), + [anon_sym_BSLASHsubfile] = ACTIONS(12613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12613), + [anon_sym_BSLASHbibliography] = ACTIONS(12613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12613), + [anon_sym_BSLASHincludesvg] = ACTIONS(12613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12613), + [anon_sym_BSLASHimport] = ACTIONS(12613), + [anon_sym_BSLASHsubimport] = ACTIONS(12613), + [anon_sym_BSLASHinputfrom] = ACTIONS(12613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12613), + [anon_sym_BSLASHincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHlabel] = ACTIONS(12613), + [anon_sym_BSLASHref] = ACTIONS(12613), + [anon_sym_BSLASHvref] = ACTIONS(12613), + [anon_sym_BSLASHVref] = ACTIONS(12613), + [anon_sym_BSLASHautoref] = ACTIONS(12613), + [anon_sym_BSLASHpageref] = ACTIONS(12613), + [anon_sym_BSLASHcref] = ACTIONS(12613), + [anon_sym_BSLASHCref] = ACTIONS(12613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnameCref] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHlabelcref] = ACTIONS(12613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12613), + [anon_sym_BSLASHeqref] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange] = ACTIONS(12613), + [anon_sym_BSLASHCrefrange] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewlabel] = ACTIONS(12613), + [anon_sym_BSLASHnewcommand] = ACTIONS(12613), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12613), + [anon_sym_BSLASHgls] = ACTIONS(12613), + [anon_sym_BSLASHGls] = ACTIONS(12613), + [anon_sym_BSLASHGLS] = ACTIONS(12613), + [anon_sym_BSLASHglspl] = ACTIONS(12613), + [anon_sym_BSLASHGlspl] = ACTIONS(12613), + [anon_sym_BSLASHGLSpl] = ACTIONS(12613), + [anon_sym_BSLASHglsdisp] = ACTIONS(12613), + [anon_sym_BSLASHglslink] = ACTIONS(12613), + [anon_sym_BSLASHglstext] = ACTIONS(12613), + [anon_sym_BSLASHGlstext] = ACTIONS(12613), + [anon_sym_BSLASHGLStext] = ACTIONS(12613), + [anon_sym_BSLASHglsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12613), + [anon_sym_BSLASHglsplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSplural] = ACTIONS(12613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHglsname] = ACTIONS(12613), + [anon_sym_BSLASHGlsname] = ACTIONS(12613), + [anon_sym_BSLASHGLSname] = ACTIONS(12613), + [anon_sym_BSLASHglssymbol] = ACTIONS(12613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12613), + [anon_sym_BSLASHglsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12613), + [anon_sym_BSLASHglsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12613), + [anon_sym_BSLASHglsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12613), + [anon_sym_BSLASHglsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12613), + [anon_sym_BSLASHglsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12613), + [anon_sym_BSLASHnewacronym] = ACTIONS(12613), + [anon_sym_BSLASHacrshort] = ACTIONS(12613), + [anon_sym_BSLASHAcrshort] = ACTIONS(12613), + [anon_sym_BSLASHACRshort] = ACTIONS(12613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12613), + [anon_sym_BSLASHacrlong] = ACTIONS(12613), + [anon_sym_BSLASHAcrlong] = ACTIONS(12613), + [anon_sym_BSLASHACRlong] = ACTIONS(12613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12613), + [anon_sym_BSLASHacrfull] = ACTIONS(12613), + [anon_sym_BSLASHAcrfull] = ACTIONS(12613), + [anon_sym_BSLASHACRfull] = ACTIONS(12613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12613), + [anon_sym_BSLASHacs] = ACTIONS(12613), + [anon_sym_BSLASHAcs] = ACTIONS(12613), + [anon_sym_BSLASHacsp] = ACTIONS(12613), + [anon_sym_BSLASHAcsp] = ACTIONS(12613), + [anon_sym_BSLASHacl] = ACTIONS(12613), + [anon_sym_BSLASHAcl] = ACTIONS(12613), + [anon_sym_BSLASHaclp] = ACTIONS(12613), + [anon_sym_BSLASHAclp] = ACTIONS(12613), + [anon_sym_BSLASHacf] = ACTIONS(12613), + [anon_sym_BSLASHAcf] = ACTIONS(12613), + [anon_sym_BSLASHacfp] = ACTIONS(12613), + [anon_sym_BSLASHAcfp] = ACTIONS(12613), + [anon_sym_BSLASHac] = ACTIONS(12613), + [anon_sym_BSLASHAc] = ACTIONS(12613), + [anon_sym_BSLASHacp] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12613), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12613), + [anon_sym_BSLASHcolor] = ACTIONS(12613), + [anon_sym_BSLASHcolorbox] = ACTIONS(12613), + [anon_sym_BSLASHtextcolor] = ACTIONS(12613), + [anon_sym_BSLASHpagecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12613), + }, + [631] = { + [sym_brace_group] = STATE(3411), + [sym_generic_command_name] = ACTIONS(12054), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12054), + [aux_sym_chapter_token1] = ACTIONS(12054), + [aux_sym_section_token1] = ACTIONS(12054), + [aux_sym_subsection_token1] = ACTIONS(12054), + [aux_sym_subsubsection_token1] = ACTIONS(12054), + [aux_sym_paragraph_token1] = ACTIONS(12054), + [aux_sym_subparagraph_token1] = ACTIONS(12054), + [anon_sym_BSLASHitem] = ACTIONS(12054), + [anon_sym_LBRACK] = ACTIONS(12052), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12052), + [anon_sym_COMMA] = ACTIONS(12052), + [anon_sym_EQ] = ACTIONS(12052), + [sym_word] = ACTIONS(12052), + [sym_param] = ACTIONS(12052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12052), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12052), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12052), + [anon_sym_DOLLAR] = ACTIONS(12054), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12052), + [anon_sym_BSLASHbegin] = ACTIONS(12054), + [anon_sym_BSLASHcaption] = ACTIONS(12054), + [anon_sym_BSLASHcite] = ACTIONS(12054), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCite] = ACTIONS(12054), + [anon_sym_BSLASHnocite] = ACTIONS(12054), + [anon_sym_BSLASHcitet] = ACTIONS(12054), + [anon_sym_BSLASHcitep] = ACTIONS(12054), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteauthor] = ACTIONS(12054), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12054), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitetitle] = ACTIONS(12054), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteyear] = ACTIONS(12054), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitedate] = ACTIONS(12054), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteurl] = ACTIONS(12054), + [anon_sym_BSLASHfullcite] = ACTIONS(12054), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12054), + [anon_sym_BSLASHcitealt] = ACTIONS(12054), + [anon_sym_BSLASHcitealp] = ACTIONS(12054), + [anon_sym_BSLASHcitetext] = ACTIONS(12054), + [anon_sym_BSLASHparencite] = ACTIONS(12054), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHParencite] = ACTIONS(12054), + [anon_sym_BSLASHfootcite] = ACTIONS(12054), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12054), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12054), + [anon_sym_BSLASHtextcite] = ACTIONS(12054), + [anon_sym_BSLASHTextcite] = ACTIONS(12054), + [anon_sym_BSLASHsmartcite] = ACTIONS(12054), + [anon_sym_BSLASHSmartcite] = ACTIONS(12054), + [anon_sym_BSLASHsupercite] = ACTIONS(12054), + [anon_sym_BSLASHautocite] = ACTIONS(12054), + [anon_sym_BSLASHAutocite] = ACTIONS(12054), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHvolcite] = ACTIONS(12054), + [anon_sym_BSLASHVolcite] = ACTIONS(12054), + [anon_sym_BSLASHpvolcite] = ACTIONS(12054), + [anon_sym_BSLASHPvolcite] = ACTIONS(12054), + [anon_sym_BSLASHfvolcite] = ACTIONS(12054), + [anon_sym_BSLASHftvolcite] = ACTIONS(12054), + [anon_sym_BSLASHsvolcite] = ACTIONS(12054), + [anon_sym_BSLASHSvolcite] = ACTIONS(12054), + [anon_sym_BSLASHtvolcite] = ACTIONS(12054), + [anon_sym_BSLASHTvolcite] = ACTIONS(12054), + [anon_sym_BSLASHavolcite] = ACTIONS(12054), + [anon_sym_BSLASHAvolcite] = ACTIONS(12054), + [anon_sym_BSLASHnotecite] = ACTIONS(12054), + [anon_sym_BSLASHpnotecite] = ACTIONS(12054), + [anon_sym_BSLASHPnotecite] = ACTIONS(12054), + [anon_sym_BSLASHfnotecite] = ACTIONS(12054), + [anon_sym_BSLASHusepackage] = ACTIONS(12054), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12054), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12054), + [anon_sym_BSLASHinclude] = ACTIONS(12054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12054), + [anon_sym_BSLASHinput] = ACTIONS(12054), + [anon_sym_BSLASHsubfile] = ACTIONS(12054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12054), + [anon_sym_BSLASHbibliography] = ACTIONS(12054), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12054), + [anon_sym_BSLASHincludesvg] = ACTIONS(12054), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12054), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12054), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12054), + [anon_sym_BSLASHimport] = ACTIONS(12054), + [anon_sym_BSLASHsubimport] = ACTIONS(12054), + [anon_sym_BSLASHinputfrom] = ACTIONS(12054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12054), + [anon_sym_BSLASHincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHlabel] = ACTIONS(12054), + [anon_sym_BSLASHref] = ACTIONS(12054), + [anon_sym_BSLASHvref] = ACTIONS(12054), + [anon_sym_BSLASHVref] = ACTIONS(12054), + [anon_sym_BSLASHautoref] = ACTIONS(12054), + [anon_sym_BSLASHpageref] = ACTIONS(12054), + [anon_sym_BSLASHcref] = ACTIONS(12054), + [anon_sym_BSLASHCref] = ACTIONS(12054), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnameCref] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHlabelcref] = ACTIONS(12054), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12054), + [anon_sym_BSLASHeqref] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange] = ACTIONS(12054), + [anon_sym_BSLASHCrefrange] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewlabel] = ACTIONS(12054), + [anon_sym_BSLASHnewcommand] = ACTIONS(12054), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12054), + [anon_sym_BSLASHgls] = ACTIONS(12054), + [anon_sym_BSLASHGls] = ACTIONS(12054), + [anon_sym_BSLASHGLS] = ACTIONS(12054), + [anon_sym_BSLASHglspl] = ACTIONS(12054), + [anon_sym_BSLASHGlspl] = ACTIONS(12054), + [anon_sym_BSLASHGLSpl] = ACTIONS(12054), + [anon_sym_BSLASHglsdisp] = ACTIONS(12054), + [anon_sym_BSLASHglslink] = ACTIONS(12054), + [anon_sym_BSLASHglstext] = ACTIONS(12054), + [anon_sym_BSLASHGlstext] = ACTIONS(12054), + [anon_sym_BSLASHGLStext] = ACTIONS(12054), + [anon_sym_BSLASHglsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12054), + [anon_sym_BSLASHglsplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSplural] = ACTIONS(12054), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHglsname] = ACTIONS(12054), + [anon_sym_BSLASHGlsname] = ACTIONS(12054), + [anon_sym_BSLASHGLSname] = ACTIONS(12054), + [anon_sym_BSLASHglssymbol] = ACTIONS(12054), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12054), + [anon_sym_BSLASHglsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12054), + [anon_sym_BSLASHglsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12054), + [anon_sym_BSLASHglsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12054), + [anon_sym_BSLASHglsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12054), + [anon_sym_BSLASHglsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12054), + [anon_sym_BSLASHnewacronym] = ACTIONS(12054), + [anon_sym_BSLASHacrshort] = ACTIONS(12054), + [anon_sym_BSLASHAcrshort] = ACTIONS(12054), + [anon_sym_BSLASHACRshort] = ACTIONS(12054), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12054), + [anon_sym_BSLASHacrlong] = ACTIONS(12054), + [anon_sym_BSLASHAcrlong] = ACTIONS(12054), + [anon_sym_BSLASHACRlong] = ACTIONS(12054), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12054), + [anon_sym_BSLASHacrfull] = ACTIONS(12054), + [anon_sym_BSLASHAcrfull] = ACTIONS(12054), + [anon_sym_BSLASHACRfull] = ACTIONS(12054), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12054), + [anon_sym_BSLASHacs] = ACTIONS(12054), + [anon_sym_BSLASHAcs] = ACTIONS(12054), + [anon_sym_BSLASHacsp] = ACTIONS(12054), + [anon_sym_BSLASHAcsp] = ACTIONS(12054), + [anon_sym_BSLASHacl] = ACTIONS(12054), + [anon_sym_BSLASHAcl] = ACTIONS(12054), + [anon_sym_BSLASHaclp] = ACTIONS(12054), + [anon_sym_BSLASHAclp] = ACTIONS(12054), + [anon_sym_BSLASHacf] = ACTIONS(12054), + [anon_sym_BSLASHAcf] = ACTIONS(12054), + [anon_sym_BSLASHacfp] = ACTIONS(12054), + [anon_sym_BSLASHAcfp] = ACTIONS(12054), + [anon_sym_BSLASHac] = ACTIONS(12054), + [anon_sym_BSLASHAc] = ACTIONS(12054), + [anon_sym_BSLASHacp] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12054), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12054), + [anon_sym_BSLASHcolor] = ACTIONS(12054), + [anon_sym_BSLASHcolorbox] = ACTIONS(12054), + [anon_sym_BSLASHtextcolor] = ACTIONS(12054), + [anon_sym_BSLASHpagecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12054), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12054), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12054), + }, + [632] = { + [sym_brace_group] = STATE(3412), + [sym_generic_command_name] = ACTIONS(12088), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12088), + [aux_sym_chapter_token1] = ACTIONS(12088), + [aux_sym_section_token1] = ACTIONS(12088), + [aux_sym_subsection_token1] = ACTIONS(12088), + [aux_sym_subsubsection_token1] = ACTIONS(12088), + [aux_sym_paragraph_token1] = ACTIONS(12088), + [aux_sym_subparagraph_token1] = ACTIONS(12088), + [anon_sym_BSLASHitem] = ACTIONS(12088), + [anon_sym_LBRACK] = ACTIONS(12086), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12086), + [anon_sym_COMMA] = ACTIONS(12086), + [anon_sym_EQ] = ACTIONS(12086), + [sym_word] = ACTIONS(12086), + [sym_param] = ACTIONS(12086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12086), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12086), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12086), + [anon_sym_DOLLAR] = ACTIONS(12088), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12086), + [anon_sym_BSLASHbegin] = ACTIONS(12088), + [anon_sym_BSLASHcaption] = ACTIONS(12088), + [anon_sym_BSLASHcite] = ACTIONS(12088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCite] = ACTIONS(12088), + [anon_sym_BSLASHnocite] = ACTIONS(12088), + [anon_sym_BSLASHcitet] = ACTIONS(12088), + [anon_sym_BSLASHcitep] = ACTIONS(12088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteauthor] = ACTIONS(12088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitetitle] = ACTIONS(12088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteyear] = ACTIONS(12088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitedate] = ACTIONS(12088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteurl] = ACTIONS(12088), + [anon_sym_BSLASHfullcite] = ACTIONS(12088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12088), + [anon_sym_BSLASHcitealt] = ACTIONS(12088), + [anon_sym_BSLASHcitealp] = ACTIONS(12088), + [anon_sym_BSLASHcitetext] = ACTIONS(12088), + [anon_sym_BSLASHparencite] = ACTIONS(12088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHParencite] = ACTIONS(12088), + [anon_sym_BSLASHfootcite] = ACTIONS(12088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12088), + [anon_sym_BSLASHtextcite] = ACTIONS(12088), + [anon_sym_BSLASHTextcite] = ACTIONS(12088), + [anon_sym_BSLASHsmartcite] = ACTIONS(12088), + [anon_sym_BSLASHSmartcite] = ACTIONS(12088), + [anon_sym_BSLASHsupercite] = ACTIONS(12088), + [anon_sym_BSLASHautocite] = ACTIONS(12088), + [anon_sym_BSLASHAutocite] = ACTIONS(12088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHvolcite] = ACTIONS(12088), + [anon_sym_BSLASHVolcite] = ACTIONS(12088), + [anon_sym_BSLASHpvolcite] = ACTIONS(12088), + [anon_sym_BSLASHPvolcite] = ACTIONS(12088), + [anon_sym_BSLASHfvolcite] = ACTIONS(12088), + [anon_sym_BSLASHftvolcite] = ACTIONS(12088), + [anon_sym_BSLASHsvolcite] = ACTIONS(12088), + [anon_sym_BSLASHSvolcite] = ACTIONS(12088), + [anon_sym_BSLASHtvolcite] = ACTIONS(12088), + [anon_sym_BSLASHTvolcite] = ACTIONS(12088), + [anon_sym_BSLASHavolcite] = ACTIONS(12088), + [anon_sym_BSLASHAvolcite] = ACTIONS(12088), + [anon_sym_BSLASHnotecite] = ACTIONS(12088), + [anon_sym_BSLASHpnotecite] = ACTIONS(12088), + [anon_sym_BSLASHPnotecite] = ACTIONS(12088), + [anon_sym_BSLASHfnotecite] = ACTIONS(12088), + [anon_sym_BSLASHusepackage] = ACTIONS(12088), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12088), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12088), + [anon_sym_BSLASHinclude] = ACTIONS(12088), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12088), + [anon_sym_BSLASHinput] = ACTIONS(12088), + [anon_sym_BSLASHsubfile] = ACTIONS(12088), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12088), + [anon_sym_BSLASHbibliography] = ACTIONS(12088), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12088), + [anon_sym_BSLASHincludesvg] = ACTIONS(12088), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12088), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12088), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12088), + [anon_sym_BSLASHimport] = ACTIONS(12088), + [anon_sym_BSLASHsubimport] = ACTIONS(12088), + [anon_sym_BSLASHinputfrom] = ACTIONS(12088), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12088), + [anon_sym_BSLASHincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHlabel] = ACTIONS(12088), + [anon_sym_BSLASHref] = ACTIONS(12088), + [anon_sym_BSLASHvref] = ACTIONS(12088), + [anon_sym_BSLASHVref] = ACTIONS(12088), + [anon_sym_BSLASHautoref] = ACTIONS(12088), + [anon_sym_BSLASHpageref] = ACTIONS(12088), + [anon_sym_BSLASHcref] = ACTIONS(12088), + [anon_sym_BSLASHCref] = ACTIONS(12088), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnameCref] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHlabelcref] = ACTIONS(12088), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12088), + [anon_sym_BSLASHeqref] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange] = ACTIONS(12088), + [anon_sym_BSLASHCrefrange] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewlabel] = ACTIONS(12088), + [anon_sym_BSLASHnewcommand] = ACTIONS(12088), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12088), + [anon_sym_BSLASHgls] = ACTIONS(12088), + [anon_sym_BSLASHGls] = ACTIONS(12088), + [anon_sym_BSLASHGLS] = ACTIONS(12088), + [anon_sym_BSLASHglspl] = ACTIONS(12088), + [anon_sym_BSLASHGlspl] = ACTIONS(12088), + [anon_sym_BSLASHGLSpl] = ACTIONS(12088), + [anon_sym_BSLASHglsdisp] = ACTIONS(12088), + [anon_sym_BSLASHglslink] = ACTIONS(12088), + [anon_sym_BSLASHglstext] = ACTIONS(12088), + [anon_sym_BSLASHGlstext] = ACTIONS(12088), + [anon_sym_BSLASHGLStext] = ACTIONS(12088), + [anon_sym_BSLASHglsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12088), + [anon_sym_BSLASHglsplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSplural] = ACTIONS(12088), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHglsname] = ACTIONS(12088), + [anon_sym_BSLASHGlsname] = ACTIONS(12088), + [anon_sym_BSLASHGLSname] = ACTIONS(12088), + [anon_sym_BSLASHglssymbol] = ACTIONS(12088), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12088), + [anon_sym_BSLASHglsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12088), + [anon_sym_BSLASHglsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12088), + [anon_sym_BSLASHglsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12088), + [anon_sym_BSLASHglsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12088), + [anon_sym_BSLASHglsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12088), + [anon_sym_BSLASHnewacronym] = ACTIONS(12088), + [anon_sym_BSLASHacrshort] = ACTIONS(12088), + [anon_sym_BSLASHAcrshort] = ACTIONS(12088), + [anon_sym_BSLASHACRshort] = ACTIONS(12088), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12088), + [anon_sym_BSLASHacrlong] = ACTIONS(12088), + [anon_sym_BSLASHAcrlong] = ACTIONS(12088), + [anon_sym_BSLASHACRlong] = ACTIONS(12088), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12088), + [anon_sym_BSLASHacrfull] = ACTIONS(12088), + [anon_sym_BSLASHAcrfull] = ACTIONS(12088), + [anon_sym_BSLASHACRfull] = ACTIONS(12088), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12088), + [anon_sym_BSLASHacs] = ACTIONS(12088), + [anon_sym_BSLASHAcs] = ACTIONS(12088), + [anon_sym_BSLASHacsp] = ACTIONS(12088), + [anon_sym_BSLASHAcsp] = ACTIONS(12088), + [anon_sym_BSLASHacl] = ACTIONS(12088), + [anon_sym_BSLASHAcl] = ACTIONS(12088), + [anon_sym_BSLASHaclp] = ACTIONS(12088), + [anon_sym_BSLASHAclp] = ACTIONS(12088), + [anon_sym_BSLASHacf] = ACTIONS(12088), + [anon_sym_BSLASHAcf] = ACTIONS(12088), + [anon_sym_BSLASHacfp] = ACTIONS(12088), + [anon_sym_BSLASHAcfp] = ACTIONS(12088), + [anon_sym_BSLASHac] = ACTIONS(12088), + [anon_sym_BSLASHAc] = ACTIONS(12088), + [anon_sym_BSLASHacp] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12088), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12088), + [anon_sym_BSLASHcolor] = ACTIONS(12088), + [anon_sym_BSLASHcolorbox] = ACTIONS(12088), + [anon_sym_BSLASHtextcolor] = ACTIONS(12088), + [anon_sym_BSLASHpagecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12088), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12088), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12088), + }, + [633] = { + [sym_generic_command_name] = ACTIONS(12613), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12613), + [aux_sym_chapter_token1] = ACTIONS(12613), + [aux_sym_section_token1] = ACTIONS(12613), + [aux_sym_subsection_token1] = ACTIONS(12613), + [aux_sym_subsubsection_token1] = ACTIONS(12613), + [aux_sym_paragraph_token1] = ACTIONS(12613), + [aux_sym_subparagraph_token1] = ACTIONS(12613), + [anon_sym_BSLASHitem] = ACTIONS(12613), + [anon_sym_LBRACK] = ACTIONS(12615), + [anon_sym_RBRACK] = ACTIONS(12630), + [anon_sym_LBRACE] = ACTIONS(12615), + [anon_sym_LPAREN] = ACTIONS(12615), + [anon_sym_RPAREN] = ACTIONS(12615), + [anon_sym_COMMA] = ACTIONS(12615), + [anon_sym_EQ] = ACTIONS(12615), + [sym_word] = ACTIONS(12615), + [sym_param] = ACTIONS(12615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12615), + [anon_sym_DOLLAR] = ACTIONS(12613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12615), + [anon_sym_BSLASHbegin] = ACTIONS(12613), + [anon_sym_BSLASHcaption] = ACTIONS(12613), + [anon_sym_BSLASHcite] = ACTIONS(12613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCite] = ACTIONS(12613), + [anon_sym_BSLASHnocite] = ACTIONS(12613), + [anon_sym_BSLASHcitet] = ACTIONS(12613), + [anon_sym_BSLASHcitep] = ACTIONS(12613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteauthor] = ACTIONS(12613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitetitle] = ACTIONS(12613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteyear] = ACTIONS(12613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitedate] = ACTIONS(12613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteurl] = ACTIONS(12613), + [anon_sym_BSLASHfullcite] = ACTIONS(12613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12613), + [anon_sym_BSLASHcitealt] = ACTIONS(12613), + [anon_sym_BSLASHcitealp] = ACTIONS(12613), + [anon_sym_BSLASHcitetext] = ACTIONS(12613), + [anon_sym_BSLASHparencite] = ACTIONS(12613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHParencite] = ACTIONS(12613), + [anon_sym_BSLASHfootcite] = ACTIONS(12613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12613), + [anon_sym_BSLASHtextcite] = ACTIONS(12613), + [anon_sym_BSLASHTextcite] = ACTIONS(12613), + [anon_sym_BSLASHsmartcite] = ACTIONS(12613), + [anon_sym_BSLASHSmartcite] = ACTIONS(12613), + [anon_sym_BSLASHsupercite] = ACTIONS(12613), + [anon_sym_BSLASHautocite] = ACTIONS(12613), + [anon_sym_BSLASHAutocite] = ACTIONS(12613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHvolcite] = ACTIONS(12613), + [anon_sym_BSLASHVolcite] = ACTIONS(12613), + [anon_sym_BSLASHpvolcite] = ACTIONS(12613), + [anon_sym_BSLASHPvolcite] = ACTIONS(12613), + [anon_sym_BSLASHfvolcite] = ACTIONS(12613), + [anon_sym_BSLASHftvolcite] = ACTIONS(12613), + [anon_sym_BSLASHsvolcite] = ACTIONS(12613), + [anon_sym_BSLASHSvolcite] = ACTIONS(12613), + [anon_sym_BSLASHtvolcite] = ACTIONS(12613), + [anon_sym_BSLASHTvolcite] = ACTIONS(12613), + [anon_sym_BSLASHavolcite] = ACTIONS(12613), + [anon_sym_BSLASHAvolcite] = ACTIONS(12613), + [anon_sym_BSLASHnotecite] = ACTIONS(12613), + [anon_sym_BSLASHpnotecite] = ACTIONS(12613), + [anon_sym_BSLASHPnotecite] = ACTIONS(12613), + [anon_sym_BSLASHfnotecite] = ACTIONS(12613), + [anon_sym_BSLASHusepackage] = ACTIONS(12613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12613), + [anon_sym_BSLASHinclude] = ACTIONS(12613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12613), + [anon_sym_BSLASHinput] = ACTIONS(12613), + [anon_sym_BSLASHsubfile] = ACTIONS(12613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12613), + [anon_sym_BSLASHbibliography] = ACTIONS(12613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12613), + [anon_sym_BSLASHincludesvg] = ACTIONS(12613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12613), + [anon_sym_BSLASHimport] = ACTIONS(12613), + [anon_sym_BSLASHsubimport] = ACTIONS(12613), + [anon_sym_BSLASHinputfrom] = ACTIONS(12613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12613), + [anon_sym_BSLASHincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHlabel] = ACTIONS(12613), + [anon_sym_BSLASHref] = ACTIONS(12613), + [anon_sym_BSLASHvref] = ACTIONS(12613), + [anon_sym_BSLASHVref] = ACTIONS(12613), + [anon_sym_BSLASHautoref] = ACTIONS(12613), + [anon_sym_BSLASHpageref] = ACTIONS(12613), + [anon_sym_BSLASHcref] = ACTIONS(12613), + [anon_sym_BSLASHCref] = ACTIONS(12613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnameCref] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHlabelcref] = ACTIONS(12613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12613), + [anon_sym_BSLASHeqref] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange] = ACTIONS(12613), + [anon_sym_BSLASHCrefrange] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewlabel] = ACTIONS(12613), + [anon_sym_BSLASHnewcommand] = ACTIONS(12613), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12613), + [anon_sym_BSLASHgls] = ACTIONS(12613), + [anon_sym_BSLASHGls] = ACTIONS(12613), + [anon_sym_BSLASHGLS] = ACTIONS(12613), + [anon_sym_BSLASHglspl] = ACTIONS(12613), + [anon_sym_BSLASHGlspl] = ACTIONS(12613), + [anon_sym_BSLASHGLSpl] = ACTIONS(12613), + [anon_sym_BSLASHglsdisp] = ACTIONS(12613), + [anon_sym_BSLASHglslink] = ACTIONS(12613), + [anon_sym_BSLASHglstext] = ACTIONS(12613), + [anon_sym_BSLASHGlstext] = ACTIONS(12613), + [anon_sym_BSLASHGLStext] = ACTIONS(12613), + [anon_sym_BSLASHglsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12613), + [anon_sym_BSLASHglsplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSplural] = ACTIONS(12613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHglsname] = ACTIONS(12613), + [anon_sym_BSLASHGlsname] = ACTIONS(12613), + [anon_sym_BSLASHGLSname] = ACTIONS(12613), + [anon_sym_BSLASHglssymbol] = ACTIONS(12613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12613), + [anon_sym_BSLASHglsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12613), + [anon_sym_BSLASHglsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12613), + [anon_sym_BSLASHglsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12613), + [anon_sym_BSLASHglsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12613), + [anon_sym_BSLASHglsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12613), + [anon_sym_BSLASHnewacronym] = ACTIONS(12613), + [anon_sym_BSLASHacrshort] = ACTIONS(12613), + [anon_sym_BSLASHAcrshort] = ACTIONS(12613), + [anon_sym_BSLASHACRshort] = ACTIONS(12613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12613), + [anon_sym_BSLASHacrlong] = ACTIONS(12613), + [anon_sym_BSLASHAcrlong] = ACTIONS(12613), + [anon_sym_BSLASHACRlong] = ACTIONS(12613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12613), + [anon_sym_BSLASHacrfull] = ACTIONS(12613), + [anon_sym_BSLASHAcrfull] = ACTIONS(12613), + [anon_sym_BSLASHACRfull] = ACTIONS(12613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12613), + [anon_sym_BSLASHacs] = ACTIONS(12613), + [anon_sym_BSLASHAcs] = ACTIONS(12613), + [anon_sym_BSLASHacsp] = ACTIONS(12613), + [anon_sym_BSLASHAcsp] = ACTIONS(12613), + [anon_sym_BSLASHacl] = ACTIONS(12613), + [anon_sym_BSLASHAcl] = ACTIONS(12613), + [anon_sym_BSLASHaclp] = ACTIONS(12613), + [anon_sym_BSLASHAclp] = ACTIONS(12613), + [anon_sym_BSLASHacf] = ACTIONS(12613), + [anon_sym_BSLASHAcf] = ACTIONS(12613), + [anon_sym_BSLASHacfp] = ACTIONS(12613), + [anon_sym_BSLASHAcfp] = ACTIONS(12613), + [anon_sym_BSLASHac] = ACTIONS(12613), + [anon_sym_BSLASHAc] = ACTIONS(12613), + [anon_sym_BSLASHacp] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12613), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12613), + [anon_sym_BSLASHcolor] = ACTIONS(12613), + [anon_sym_BSLASHcolorbox] = ACTIONS(12613), + [anon_sym_BSLASHtextcolor] = ACTIONS(12613), + [anon_sym_BSLASHpagecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12613), + }, + [634] = { + [sym_generic_command_name] = ACTIONS(12613), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12613), + [aux_sym_chapter_token1] = ACTIONS(12613), + [aux_sym_section_token1] = ACTIONS(12613), + [aux_sym_subsection_token1] = ACTIONS(12613), + [aux_sym_subsubsection_token1] = ACTIONS(12613), + [aux_sym_paragraph_token1] = ACTIONS(12613), + [aux_sym_subparagraph_token1] = ACTIONS(12613), + [anon_sym_BSLASHitem] = ACTIONS(12613), + [anon_sym_LBRACK] = ACTIONS(12615), + [anon_sym_RBRACK] = ACTIONS(12632), + [anon_sym_LBRACE] = ACTIONS(12615), + [anon_sym_LPAREN] = ACTIONS(12615), + [anon_sym_RPAREN] = ACTIONS(12615), + [anon_sym_COMMA] = ACTIONS(12615), + [anon_sym_EQ] = ACTIONS(12615), + [sym_word] = ACTIONS(12615), + [sym_param] = ACTIONS(12615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12615), + [anon_sym_DOLLAR] = ACTIONS(12613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12615), + [anon_sym_BSLASHbegin] = ACTIONS(12613), + [anon_sym_BSLASHcaption] = ACTIONS(12613), + [anon_sym_BSLASHcite] = ACTIONS(12613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCite] = ACTIONS(12613), + [anon_sym_BSLASHnocite] = ACTIONS(12613), + [anon_sym_BSLASHcitet] = ACTIONS(12613), + [anon_sym_BSLASHcitep] = ACTIONS(12613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteauthor] = ACTIONS(12613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitetitle] = ACTIONS(12613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteyear] = ACTIONS(12613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitedate] = ACTIONS(12613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteurl] = ACTIONS(12613), + [anon_sym_BSLASHfullcite] = ACTIONS(12613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12613), + [anon_sym_BSLASHcitealt] = ACTIONS(12613), + [anon_sym_BSLASHcitealp] = ACTIONS(12613), + [anon_sym_BSLASHcitetext] = ACTIONS(12613), + [anon_sym_BSLASHparencite] = ACTIONS(12613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHParencite] = ACTIONS(12613), + [anon_sym_BSLASHfootcite] = ACTIONS(12613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12613), + [anon_sym_BSLASHtextcite] = ACTIONS(12613), + [anon_sym_BSLASHTextcite] = ACTIONS(12613), + [anon_sym_BSLASHsmartcite] = ACTIONS(12613), + [anon_sym_BSLASHSmartcite] = ACTIONS(12613), + [anon_sym_BSLASHsupercite] = ACTIONS(12613), + [anon_sym_BSLASHautocite] = ACTIONS(12613), + [anon_sym_BSLASHAutocite] = ACTIONS(12613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHvolcite] = ACTIONS(12613), + [anon_sym_BSLASHVolcite] = ACTIONS(12613), + [anon_sym_BSLASHpvolcite] = ACTIONS(12613), + [anon_sym_BSLASHPvolcite] = ACTIONS(12613), + [anon_sym_BSLASHfvolcite] = ACTIONS(12613), + [anon_sym_BSLASHftvolcite] = ACTIONS(12613), + [anon_sym_BSLASHsvolcite] = ACTIONS(12613), + [anon_sym_BSLASHSvolcite] = ACTIONS(12613), + [anon_sym_BSLASHtvolcite] = ACTIONS(12613), + [anon_sym_BSLASHTvolcite] = ACTIONS(12613), + [anon_sym_BSLASHavolcite] = ACTIONS(12613), + [anon_sym_BSLASHAvolcite] = ACTIONS(12613), + [anon_sym_BSLASHnotecite] = ACTIONS(12613), + [anon_sym_BSLASHpnotecite] = ACTIONS(12613), + [anon_sym_BSLASHPnotecite] = ACTIONS(12613), + [anon_sym_BSLASHfnotecite] = ACTIONS(12613), + [anon_sym_BSLASHusepackage] = ACTIONS(12613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12613), + [anon_sym_BSLASHinclude] = ACTIONS(12613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12613), + [anon_sym_BSLASHinput] = ACTIONS(12613), + [anon_sym_BSLASHsubfile] = ACTIONS(12613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12613), + [anon_sym_BSLASHbibliography] = ACTIONS(12613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12613), + [anon_sym_BSLASHincludesvg] = ACTIONS(12613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12613), + [anon_sym_BSLASHimport] = ACTIONS(12613), + [anon_sym_BSLASHsubimport] = ACTIONS(12613), + [anon_sym_BSLASHinputfrom] = ACTIONS(12613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12613), + [anon_sym_BSLASHincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHlabel] = ACTIONS(12613), + [anon_sym_BSLASHref] = ACTIONS(12613), + [anon_sym_BSLASHvref] = ACTIONS(12613), + [anon_sym_BSLASHVref] = ACTIONS(12613), + [anon_sym_BSLASHautoref] = ACTIONS(12613), + [anon_sym_BSLASHpageref] = ACTIONS(12613), + [anon_sym_BSLASHcref] = ACTIONS(12613), + [anon_sym_BSLASHCref] = ACTIONS(12613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnameCref] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHlabelcref] = ACTIONS(12613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12613), + [anon_sym_BSLASHeqref] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange] = ACTIONS(12613), + [anon_sym_BSLASHCrefrange] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewlabel] = ACTIONS(12613), + [anon_sym_BSLASHnewcommand] = ACTIONS(12613), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12613), + [anon_sym_BSLASHgls] = ACTIONS(12613), + [anon_sym_BSLASHGls] = ACTIONS(12613), + [anon_sym_BSLASHGLS] = ACTIONS(12613), + [anon_sym_BSLASHglspl] = ACTIONS(12613), + [anon_sym_BSLASHGlspl] = ACTIONS(12613), + [anon_sym_BSLASHGLSpl] = ACTIONS(12613), + [anon_sym_BSLASHglsdisp] = ACTIONS(12613), + [anon_sym_BSLASHglslink] = ACTIONS(12613), + [anon_sym_BSLASHglstext] = ACTIONS(12613), + [anon_sym_BSLASHGlstext] = ACTIONS(12613), + [anon_sym_BSLASHGLStext] = ACTIONS(12613), + [anon_sym_BSLASHglsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12613), + [anon_sym_BSLASHglsplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSplural] = ACTIONS(12613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHglsname] = ACTIONS(12613), + [anon_sym_BSLASHGlsname] = ACTIONS(12613), + [anon_sym_BSLASHGLSname] = ACTIONS(12613), + [anon_sym_BSLASHglssymbol] = ACTIONS(12613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12613), + [anon_sym_BSLASHglsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12613), + [anon_sym_BSLASHglsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12613), + [anon_sym_BSLASHglsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12613), + [anon_sym_BSLASHglsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12613), + [anon_sym_BSLASHglsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12613), + [anon_sym_BSLASHnewacronym] = ACTIONS(12613), + [anon_sym_BSLASHacrshort] = ACTIONS(12613), + [anon_sym_BSLASHAcrshort] = ACTIONS(12613), + [anon_sym_BSLASHACRshort] = ACTIONS(12613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12613), + [anon_sym_BSLASHacrlong] = ACTIONS(12613), + [anon_sym_BSLASHAcrlong] = ACTIONS(12613), + [anon_sym_BSLASHACRlong] = ACTIONS(12613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12613), + [anon_sym_BSLASHacrfull] = ACTIONS(12613), + [anon_sym_BSLASHAcrfull] = ACTIONS(12613), + [anon_sym_BSLASHACRfull] = ACTIONS(12613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12613), + [anon_sym_BSLASHacs] = ACTIONS(12613), + [anon_sym_BSLASHAcs] = ACTIONS(12613), + [anon_sym_BSLASHacsp] = ACTIONS(12613), + [anon_sym_BSLASHAcsp] = ACTIONS(12613), + [anon_sym_BSLASHacl] = ACTIONS(12613), + [anon_sym_BSLASHAcl] = ACTIONS(12613), + [anon_sym_BSLASHaclp] = ACTIONS(12613), + [anon_sym_BSLASHAclp] = ACTIONS(12613), + [anon_sym_BSLASHacf] = ACTIONS(12613), + [anon_sym_BSLASHAcf] = ACTIONS(12613), + [anon_sym_BSLASHacfp] = ACTIONS(12613), + [anon_sym_BSLASHAcfp] = ACTIONS(12613), + [anon_sym_BSLASHac] = ACTIONS(12613), + [anon_sym_BSLASHAc] = ACTIONS(12613), + [anon_sym_BSLASHacp] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12613), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12613), + [anon_sym_BSLASHcolor] = ACTIONS(12613), + [anon_sym_BSLASHcolorbox] = ACTIONS(12613), + [anon_sym_BSLASHtextcolor] = ACTIONS(12613), + [anon_sym_BSLASHpagecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12613), + }, + [635] = { + [sym_brace_group] = STATE(3419), + [sym_generic_command_name] = ACTIONS(12092), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12092), + [aux_sym_chapter_token1] = ACTIONS(12092), + [aux_sym_section_token1] = ACTIONS(12092), + [aux_sym_subsection_token1] = ACTIONS(12092), + [aux_sym_subsubsection_token1] = ACTIONS(12092), + [aux_sym_paragraph_token1] = ACTIONS(12092), + [aux_sym_subparagraph_token1] = ACTIONS(12092), + [anon_sym_BSLASHitem] = ACTIONS(12092), + [anon_sym_LBRACK] = ACTIONS(12090), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12090), + [anon_sym_COMMA] = ACTIONS(12090), + [anon_sym_EQ] = ACTIONS(12090), + [sym_word] = ACTIONS(12090), + [sym_param] = ACTIONS(12090), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12090), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12090), + [anon_sym_DOLLAR] = ACTIONS(12092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12090), + [anon_sym_BSLASHbegin] = ACTIONS(12092), + [anon_sym_BSLASHcaption] = ACTIONS(12092), + [anon_sym_BSLASHcite] = ACTIONS(12092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCite] = ACTIONS(12092), + [anon_sym_BSLASHnocite] = ACTIONS(12092), + [anon_sym_BSLASHcitet] = ACTIONS(12092), + [anon_sym_BSLASHcitep] = ACTIONS(12092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteauthor] = ACTIONS(12092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitetitle] = ACTIONS(12092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteyear] = ACTIONS(12092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitedate] = ACTIONS(12092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteurl] = ACTIONS(12092), + [anon_sym_BSLASHfullcite] = ACTIONS(12092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12092), + [anon_sym_BSLASHcitealt] = ACTIONS(12092), + [anon_sym_BSLASHcitealp] = ACTIONS(12092), + [anon_sym_BSLASHcitetext] = ACTIONS(12092), + [anon_sym_BSLASHparencite] = ACTIONS(12092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHParencite] = ACTIONS(12092), + [anon_sym_BSLASHfootcite] = ACTIONS(12092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12092), + [anon_sym_BSLASHtextcite] = ACTIONS(12092), + [anon_sym_BSLASHTextcite] = ACTIONS(12092), + [anon_sym_BSLASHsmartcite] = ACTIONS(12092), + [anon_sym_BSLASHSmartcite] = ACTIONS(12092), + [anon_sym_BSLASHsupercite] = ACTIONS(12092), + [anon_sym_BSLASHautocite] = ACTIONS(12092), + [anon_sym_BSLASHAutocite] = ACTIONS(12092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHvolcite] = ACTIONS(12092), + [anon_sym_BSLASHVolcite] = ACTIONS(12092), + [anon_sym_BSLASHpvolcite] = ACTIONS(12092), + [anon_sym_BSLASHPvolcite] = ACTIONS(12092), + [anon_sym_BSLASHfvolcite] = ACTIONS(12092), + [anon_sym_BSLASHftvolcite] = ACTIONS(12092), + [anon_sym_BSLASHsvolcite] = ACTIONS(12092), + [anon_sym_BSLASHSvolcite] = ACTIONS(12092), + [anon_sym_BSLASHtvolcite] = ACTIONS(12092), + [anon_sym_BSLASHTvolcite] = ACTIONS(12092), + [anon_sym_BSLASHavolcite] = ACTIONS(12092), + [anon_sym_BSLASHAvolcite] = ACTIONS(12092), + [anon_sym_BSLASHnotecite] = ACTIONS(12092), + [anon_sym_BSLASHpnotecite] = ACTIONS(12092), + [anon_sym_BSLASHPnotecite] = ACTIONS(12092), + [anon_sym_BSLASHfnotecite] = ACTIONS(12092), + [anon_sym_BSLASHusepackage] = ACTIONS(12092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12092), + [anon_sym_BSLASHinclude] = ACTIONS(12092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12092), + [anon_sym_BSLASHinput] = ACTIONS(12092), + [anon_sym_BSLASHsubfile] = ACTIONS(12092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12092), + [anon_sym_BSLASHbibliography] = ACTIONS(12092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12092), + [anon_sym_BSLASHincludesvg] = ACTIONS(12092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12092), + [anon_sym_BSLASHimport] = ACTIONS(12092), + [anon_sym_BSLASHsubimport] = ACTIONS(12092), + [anon_sym_BSLASHinputfrom] = ACTIONS(12092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12092), + [anon_sym_BSLASHincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHlabel] = ACTIONS(12092), + [anon_sym_BSLASHref] = ACTIONS(12092), + [anon_sym_BSLASHvref] = ACTIONS(12092), + [anon_sym_BSLASHVref] = ACTIONS(12092), + [anon_sym_BSLASHautoref] = ACTIONS(12092), + [anon_sym_BSLASHpageref] = ACTIONS(12092), + [anon_sym_BSLASHcref] = ACTIONS(12092), + [anon_sym_BSLASHCref] = ACTIONS(12092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnameCref] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHlabelcref] = ACTIONS(12092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12092), + [anon_sym_BSLASHeqref] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange] = ACTIONS(12092), + [anon_sym_BSLASHCrefrange] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewlabel] = ACTIONS(12092), + [anon_sym_BSLASHnewcommand] = ACTIONS(12092), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12092), + [anon_sym_BSLASHgls] = ACTIONS(12092), + [anon_sym_BSLASHGls] = ACTIONS(12092), + [anon_sym_BSLASHGLS] = ACTIONS(12092), + [anon_sym_BSLASHglspl] = ACTIONS(12092), + [anon_sym_BSLASHGlspl] = ACTIONS(12092), + [anon_sym_BSLASHGLSpl] = ACTIONS(12092), + [anon_sym_BSLASHglsdisp] = ACTIONS(12092), + [anon_sym_BSLASHglslink] = ACTIONS(12092), + [anon_sym_BSLASHglstext] = ACTIONS(12092), + [anon_sym_BSLASHGlstext] = ACTIONS(12092), + [anon_sym_BSLASHGLStext] = ACTIONS(12092), + [anon_sym_BSLASHglsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12092), + [anon_sym_BSLASHglsplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSplural] = ACTIONS(12092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHglsname] = ACTIONS(12092), + [anon_sym_BSLASHGlsname] = ACTIONS(12092), + [anon_sym_BSLASHGLSname] = ACTIONS(12092), + [anon_sym_BSLASHglssymbol] = ACTIONS(12092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12092), + [anon_sym_BSLASHglsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12092), + [anon_sym_BSLASHglsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12092), + [anon_sym_BSLASHglsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12092), + [anon_sym_BSLASHglsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12092), + [anon_sym_BSLASHglsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12092), + [anon_sym_BSLASHnewacronym] = ACTIONS(12092), + [anon_sym_BSLASHacrshort] = ACTIONS(12092), + [anon_sym_BSLASHAcrshort] = ACTIONS(12092), + [anon_sym_BSLASHACRshort] = ACTIONS(12092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12092), + [anon_sym_BSLASHacrlong] = ACTIONS(12092), + [anon_sym_BSLASHAcrlong] = ACTIONS(12092), + [anon_sym_BSLASHACRlong] = ACTIONS(12092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12092), + [anon_sym_BSLASHacrfull] = ACTIONS(12092), + [anon_sym_BSLASHAcrfull] = ACTIONS(12092), + [anon_sym_BSLASHACRfull] = ACTIONS(12092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12092), + [anon_sym_BSLASHacs] = ACTIONS(12092), + [anon_sym_BSLASHAcs] = ACTIONS(12092), + [anon_sym_BSLASHacsp] = ACTIONS(12092), + [anon_sym_BSLASHAcsp] = ACTIONS(12092), + [anon_sym_BSLASHacl] = ACTIONS(12092), + [anon_sym_BSLASHAcl] = ACTIONS(12092), + [anon_sym_BSLASHaclp] = ACTIONS(12092), + [anon_sym_BSLASHAclp] = ACTIONS(12092), + [anon_sym_BSLASHacf] = ACTIONS(12092), + [anon_sym_BSLASHAcf] = ACTIONS(12092), + [anon_sym_BSLASHacfp] = ACTIONS(12092), + [anon_sym_BSLASHAcfp] = ACTIONS(12092), + [anon_sym_BSLASHac] = ACTIONS(12092), + [anon_sym_BSLASHAc] = ACTIONS(12092), + [anon_sym_BSLASHacp] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12092), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12092), + [anon_sym_BSLASHcolor] = ACTIONS(12092), + [anon_sym_BSLASHcolorbox] = ACTIONS(12092), + [anon_sym_BSLASHtextcolor] = ACTIONS(12092), + [anon_sym_BSLASHpagecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12092), + }, + [636] = { + [sym_generic_command_name] = ACTIONS(12613), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12613), + [aux_sym_chapter_token1] = ACTIONS(12613), + [aux_sym_section_token1] = ACTIONS(12613), + [aux_sym_subsection_token1] = ACTIONS(12613), + [aux_sym_subsubsection_token1] = ACTIONS(12613), + [aux_sym_paragraph_token1] = ACTIONS(12613), + [aux_sym_subparagraph_token1] = ACTIONS(12613), + [anon_sym_BSLASHitem] = ACTIONS(12613), + [anon_sym_LBRACK] = ACTIONS(12615), + [anon_sym_RBRACK] = ACTIONS(12634), + [anon_sym_LBRACE] = ACTIONS(12615), + [anon_sym_LPAREN] = ACTIONS(12615), + [anon_sym_RPAREN] = ACTIONS(12615), + [anon_sym_COMMA] = ACTIONS(12615), + [anon_sym_EQ] = ACTIONS(12615), + [sym_word] = ACTIONS(12615), + [sym_param] = ACTIONS(12615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12615), + [anon_sym_DOLLAR] = ACTIONS(12613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12615), + [anon_sym_BSLASHbegin] = ACTIONS(12613), + [anon_sym_BSLASHcaption] = ACTIONS(12613), + [anon_sym_BSLASHcite] = ACTIONS(12613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCite] = ACTIONS(12613), + [anon_sym_BSLASHnocite] = ACTIONS(12613), + [anon_sym_BSLASHcitet] = ACTIONS(12613), + [anon_sym_BSLASHcitep] = ACTIONS(12613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteauthor] = ACTIONS(12613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitetitle] = ACTIONS(12613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteyear] = ACTIONS(12613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitedate] = ACTIONS(12613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteurl] = ACTIONS(12613), + [anon_sym_BSLASHfullcite] = ACTIONS(12613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12613), + [anon_sym_BSLASHcitealt] = ACTIONS(12613), + [anon_sym_BSLASHcitealp] = ACTIONS(12613), + [anon_sym_BSLASHcitetext] = ACTIONS(12613), + [anon_sym_BSLASHparencite] = ACTIONS(12613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHParencite] = ACTIONS(12613), + [anon_sym_BSLASHfootcite] = ACTIONS(12613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12613), + [anon_sym_BSLASHtextcite] = ACTIONS(12613), + [anon_sym_BSLASHTextcite] = ACTIONS(12613), + [anon_sym_BSLASHsmartcite] = ACTIONS(12613), + [anon_sym_BSLASHSmartcite] = ACTIONS(12613), + [anon_sym_BSLASHsupercite] = ACTIONS(12613), + [anon_sym_BSLASHautocite] = ACTIONS(12613), + [anon_sym_BSLASHAutocite] = ACTIONS(12613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHvolcite] = ACTIONS(12613), + [anon_sym_BSLASHVolcite] = ACTIONS(12613), + [anon_sym_BSLASHpvolcite] = ACTIONS(12613), + [anon_sym_BSLASHPvolcite] = ACTIONS(12613), + [anon_sym_BSLASHfvolcite] = ACTIONS(12613), + [anon_sym_BSLASHftvolcite] = ACTIONS(12613), + [anon_sym_BSLASHsvolcite] = ACTIONS(12613), + [anon_sym_BSLASHSvolcite] = ACTIONS(12613), + [anon_sym_BSLASHtvolcite] = ACTIONS(12613), + [anon_sym_BSLASHTvolcite] = ACTIONS(12613), + [anon_sym_BSLASHavolcite] = ACTIONS(12613), + [anon_sym_BSLASHAvolcite] = ACTIONS(12613), + [anon_sym_BSLASHnotecite] = ACTIONS(12613), + [anon_sym_BSLASHpnotecite] = ACTIONS(12613), + [anon_sym_BSLASHPnotecite] = ACTIONS(12613), + [anon_sym_BSLASHfnotecite] = ACTIONS(12613), + [anon_sym_BSLASHusepackage] = ACTIONS(12613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12613), + [anon_sym_BSLASHinclude] = ACTIONS(12613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12613), + [anon_sym_BSLASHinput] = ACTIONS(12613), + [anon_sym_BSLASHsubfile] = ACTIONS(12613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12613), + [anon_sym_BSLASHbibliography] = ACTIONS(12613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12613), + [anon_sym_BSLASHincludesvg] = ACTIONS(12613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12613), + [anon_sym_BSLASHimport] = ACTIONS(12613), + [anon_sym_BSLASHsubimport] = ACTIONS(12613), + [anon_sym_BSLASHinputfrom] = ACTIONS(12613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12613), + [anon_sym_BSLASHincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHlabel] = ACTIONS(12613), + [anon_sym_BSLASHref] = ACTIONS(12613), + [anon_sym_BSLASHvref] = ACTIONS(12613), + [anon_sym_BSLASHVref] = ACTIONS(12613), + [anon_sym_BSLASHautoref] = ACTIONS(12613), + [anon_sym_BSLASHpageref] = ACTIONS(12613), + [anon_sym_BSLASHcref] = ACTIONS(12613), + [anon_sym_BSLASHCref] = ACTIONS(12613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnameCref] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHlabelcref] = ACTIONS(12613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12613), + [anon_sym_BSLASHeqref] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange] = ACTIONS(12613), + [anon_sym_BSLASHCrefrange] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewlabel] = ACTIONS(12613), + [anon_sym_BSLASHnewcommand] = ACTIONS(12613), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12613), + [anon_sym_BSLASHgls] = ACTIONS(12613), + [anon_sym_BSLASHGls] = ACTIONS(12613), + [anon_sym_BSLASHGLS] = ACTIONS(12613), + [anon_sym_BSLASHglspl] = ACTIONS(12613), + [anon_sym_BSLASHGlspl] = ACTIONS(12613), + [anon_sym_BSLASHGLSpl] = ACTIONS(12613), + [anon_sym_BSLASHglsdisp] = ACTIONS(12613), + [anon_sym_BSLASHglslink] = ACTIONS(12613), + [anon_sym_BSLASHglstext] = ACTIONS(12613), + [anon_sym_BSLASHGlstext] = ACTIONS(12613), + [anon_sym_BSLASHGLStext] = ACTIONS(12613), + [anon_sym_BSLASHglsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12613), + [anon_sym_BSLASHglsplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSplural] = ACTIONS(12613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHglsname] = ACTIONS(12613), + [anon_sym_BSLASHGlsname] = ACTIONS(12613), + [anon_sym_BSLASHGLSname] = ACTIONS(12613), + [anon_sym_BSLASHglssymbol] = ACTIONS(12613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12613), + [anon_sym_BSLASHglsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12613), + [anon_sym_BSLASHglsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12613), + [anon_sym_BSLASHglsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12613), + [anon_sym_BSLASHglsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12613), + [anon_sym_BSLASHglsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12613), + [anon_sym_BSLASHnewacronym] = ACTIONS(12613), + [anon_sym_BSLASHacrshort] = ACTIONS(12613), + [anon_sym_BSLASHAcrshort] = ACTIONS(12613), + [anon_sym_BSLASHACRshort] = ACTIONS(12613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12613), + [anon_sym_BSLASHacrlong] = ACTIONS(12613), + [anon_sym_BSLASHAcrlong] = ACTIONS(12613), + [anon_sym_BSLASHACRlong] = ACTIONS(12613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12613), + [anon_sym_BSLASHacrfull] = ACTIONS(12613), + [anon_sym_BSLASHAcrfull] = ACTIONS(12613), + [anon_sym_BSLASHACRfull] = ACTIONS(12613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12613), + [anon_sym_BSLASHacs] = ACTIONS(12613), + [anon_sym_BSLASHAcs] = ACTIONS(12613), + [anon_sym_BSLASHacsp] = ACTIONS(12613), + [anon_sym_BSLASHAcsp] = ACTIONS(12613), + [anon_sym_BSLASHacl] = ACTIONS(12613), + [anon_sym_BSLASHAcl] = ACTIONS(12613), + [anon_sym_BSLASHaclp] = ACTIONS(12613), + [anon_sym_BSLASHAclp] = ACTIONS(12613), + [anon_sym_BSLASHacf] = ACTIONS(12613), + [anon_sym_BSLASHAcf] = ACTIONS(12613), + [anon_sym_BSLASHacfp] = ACTIONS(12613), + [anon_sym_BSLASHAcfp] = ACTIONS(12613), + [anon_sym_BSLASHac] = ACTIONS(12613), + [anon_sym_BSLASHAc] = ACTIONS(12613), + [anon_sym_BSLASHacp] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12613), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12613), + [anon_sym_BSLASHcolor] = ACTIONS(12613), + [anon_sym_BSLASHcolorbox] = ACTIONS(12613), + [anon_sym_BSLASHtextcolor] = ACTIONS(12613), + [anon_sym_BSLASHpagecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12613), + }, + [637] = { + [sym_brace_group] = STATE(3311), + [sym_generic_command_name] = ACTIONS(12092), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12092), + [aux_sym_chapter_token1] = ACTIONS(12092), + [aux_sym_section_token1] = ACTIONS(12092), + [aux_sym_subsection_token1] = ACTIONS(12092), + [aux_sym_subsubsection_token1] = ACTIONS(12092), + [aux_sym_paragraph_token1] = ACTIONS(12092), + [aux_sym_subparagraph_token1] = ACTIONS(12092), + [anon_sym_BSLASHitem] = ACTIONS(12092), + [anon_sym_LBRACK] = ACTIONS(12090), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12090), + [anon_sym_COMMA] = ACTIONS(12090), + [anon_sym_EQ] = ACTIONS(12090), + [sym_word] = ACTIONS(12090), + [sym_param] = ACTIONS(12090), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12090), + [anon_sym_DOLLAR] = ACTIONS(12092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12090), + [anon_sym_BSLASHbegin] = ACTIONS(12092), + [anon_sym_BSLASHend] = ACTIONS(12092), + [anon_sym_BSLASHcaption] = ACTIONS(12092), + [anon_sym_BSLASHcite] = ACTIONS(12092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCite] = ACTIONS(12092), + [anon_sym_BSLASHnocite] = ACTIONS(12092), + [anon_sym_BSLASHcitet] = ACTIONS(12092), + [anon_sym_BSLASHcitep] = ACTIONS(12092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteauthor] = ACTIONS(12092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitetitle] = ACTIONS(12092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteyear] = ACTIONS(12092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitedate] = ACTIONS(12092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteurl] = ACTIONS(12092), + [anon_sym_BSLASHfullcite] = ACTIONS(12092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12092), + [anon_sym_BSLASHcitealt] = ACTIONS(12092), + [anon_sym_BSLASHcitealp] = ACTIONS(12092), + [anon_sym_BSLASHcitetext] = ACTIONS(12092), + [anon_sym_BSLASHparencite] = ACTIONS(12092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHParencite] = ACTIONS(12092), + [anon_sym_BSLASHfootcite] = ACTIONS(12092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12092), + [anon_sym_BSLASHtextcite] = ACTIONS(12092), + [anon_sym_BSLASHTextcite] = ACTIONS(12092), + [anon_sym_BSLASHsmartcite] = ACTIONS(12092), + [anon_sym_BSLASHSmartcite] = ACTIONS(12092), + [anon_sym_BSLASHsupercite] = ACTIONS(12092), + [anon_sym_BSLASHautocite] = ACTIONS(12092), + [anon_sym_BSLASHAutocite] = ACTIONS(12092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHvolcite] = ACTIONS(12092), + [anon_sym_BSLASHVolcite] = ACTIONS(12092), + [anon_sym_BSLASHpvolcite] = ACTIONS(12092), + [anon_sym_BSLASHPvolcite] = ACTIONS(12092), + [anon_sym_BSLASHfvolcite] = ACTIONS(12092), + [anon_sym_BSLASHftvolcite] = ACTIONS(12092), + [anon_sym_BSLASHsvolcite] = ACTIONS(12092), + [anon_sym_BSLASHSvolcite] = ACTIONS(12092), + [anon_sym_BSLASHtvolcite] = ACTIONS(12092), + [anon_sym_BSLASHTvolcite] = ACTIONS(12092), + [anon_sym_BSLASHavolcite] = ACTIONS(12092), + [anon_sym_BSLASHAvolcite] = ACTIONS(12092), + [anon_sym_BSLASHnotecite] = ACTIONS(12092), + [anon_sym_BSLASHpnotecite] = ACTIONS(12092), + [anon_sym_BSLASHPnotecite] = ACTIONS(12092), + [anon_sym_BSLASHfnotecite] = ACTIONS(12092), + [anon_sym_BSLASHusepackage] = ACTIONS(12092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12092), + [anon_sym_BSLASHinclude] = ACTIONS(12092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12092), + [anon_sym_BSLASHinput] = ACTIONS(12092), + [anon_sym_BSLASHsubfile] = ACTIONS(12092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12092), + [anon_sym_BSLASHbibliography] = ACTIONS(12092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12092), + [anon_sym_BSLASHincludesvg] = ACTIONS(12092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12092), + [anon_sym_BSLASHimport] = ACTIONS(12092), + [anon_sym_BSLASHsubimport] = ACTIONS(12092), + [anon_sym_BSLASHinputfrom] = ACTIONS(12092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12092), + [anon_sym_BSLASHincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHlabel] = ACTIONS(12092), + [anon_sym_BSLASHref] = ACTIONS(12092), + [anon_sym_BSLASHvref] = ACTIONS(12092), + [anon_sym_BSLASHVref] = ACTIONS(12092), + [anon_sym_BSLASHautoref] = ACTIONS(12092), + [anon_sym_BSLASHpageref] = ACTIONS(12092), + [anon_sym_BSLASHcref] = ACTIONS(12092), + [anon_sym_BSLASHCref] = ACTIONS(12092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnameCref] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHlabelcref] = ACTIONS(12092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12092), + [anon_sym_BSLASHeqref] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange] = ACTIONS(12092), + [anon_sym_BSLASHCrefrange] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewlabel] = ACTIONS(12092), + [anon_sym_BSLASHnewcommand] = ACTIONS(12092), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12092), + [anon_sym_BSLASHgls] = ACTIONS(12092), + [anon_sym_BSLASHGls] = ACTIONS(12092), + [anon_sym_BSLASHGLS] = ACTIONS(12092), + [anon_sym_BSLASHglspl] = ACTIONS(12092), + [anon_sym_BSLASHGlspl] = ACTIONS(12092), + [anon_sym_BSLASHGLSpl] = ACTIONS(12092), + [anon_sym_BSLASHglsdisp] = ACTIONS(12092), + [anon_sym_BSLASHglslink] = ACTIONS(12092), + [anon_sym_BSLASHglstext] = ACTIONS(12092), + [anon_sym_BSLASHGlstext] = ACTIONS(12092), + [anon_sym_BSLASHGLStext] = ACTIONS(12092), + [anon_sym_BSLASHglsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12092), + [anon_sym_BSLASHglsplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSplural] = ACTIONS(12092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHglsname] = ACTIONS(12092), + [anon_sym_BSLASHGlsname] = ACTIONS(12092), + [anon_sym_BSLASHGLSname] = ACTIONS(12092), + [anon_sym_BSLASHglssymbol] = ACTIONS(12092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12092), + [anon_sym_BSLASHglsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12092), + [anon_sym_BSLASHglsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12092), + [anon_sym_BSLASHglsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12092), + [anon_sym_BSLASHglsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12092), + [anon_sym_BSLASHglsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12092), + [anon_sym_BSLASHnewacronym] = ACTIONS(12092), + [anon_sym_BSLASHacrshort] = ACTIONS(12092), + [anon_sym_BSLASHAcrshort] = ACTIONS(12092), + [anon_sym_BSLASHACRshort] = ACTIONS(12092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12092), + [anon_sym_BSLASHacrlong] = ACTIONS(12092), + [anon_sym_BSLASHAcrlong] = ACTIONS(12092), + [anon_sym_BSLASHACRlong] = ACTIONS(12092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12092), + [anon_sym_BSLASHacrfull] = ACTIONS(12092), + [anon_sym_BSLASHAcrfull] = ACTIONS(12092), + [anon_sym_BSLASHACRfull] = ACTIONS(12092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12092), + [anon_sym_BSLASHacs] = ACTIONS(12092), + [anon_sym_BSLASHAcs] = ACTIONS(12092), + [anon_sym_BSLASHacsp] = ACTIONS(12092), + [anon_sym_BSLASHAcsp] = ACTIONS(12092), + [anon_sym_BSLASHacl] = ACTIONS(12092), + [anon_sym_BSLASHAcl] = ACTIONS(12092), + [anon_sym_BSLASHaclp] = ACTIONS(12092), + [anon_sym_BSLASHAclp] = ACTIONS(12092), + [anon_sym_BSLASHacf] = ACTIONS(12092), + [anon_sym_BSLASHAcf] = ACTIONS(12092), + [anon_sym_BSLASHacfp] = ACTIONS(12092), + [anon_sym_BSLASHAcfp] = ACTIONS(12092), + [anon_sym_BSLASHac] = ACTIONS(12092), + [anon_sym_BSLASHAc] = ACTIONS(12092), + [anon_sym_BSLASHacp] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12092), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12092), + [anon_sym_BSLASHcolor] = ACTIONS(12092), + [anon_sym_BSLASHcolorbox] = ACTIONS(12092), + [anon_sym_BSLASHtextcolor] = ACTIONS(12092), + [anon_sym_BSLASHpagecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12092), + }, + [638] = { + [sym_generic_command_name] = ACTIONS(12613), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12613), + [aux_sym_chapter_token1] = ACTIONS(12613), + [aux_sym_section_token1] = ACTIONS(12613), + [aux_sym_subsection_token1] = ACTIONS(12613), + [aux_sym_subsubsection_token1] = ACTIONS(12613), + [aux_sym_paragraph_token1] = ACTIONS(12613), + [aux_sym_subparagraph_token1] = ACTIONS(12613), + [anon_sym_BSLASHitem] = ACTIONS(12613), + [anon_sym_LBRACK] = ACTIONS(12615), + [anon_sym_RBRACK] = ACTIONS(12636), + [anon_sym_LBRACE] = ACTIONS(12615), + [anon_sym_LPAREN] = ACTIONS(12615), + [anon_sym_RPAREN] = ACTIONS(12615), + [anon_sym_COMMA] = ACTIONS(12615), + [anon_sym_EQ] = ACTIONS(12615), + [sym_word] = ACTIONS(12615), + [sym_param] = ACTIONS(12615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12615), + [anon_sym_DOLLAR] = ACTIONS(12613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12615), + [anon_sym_BSLASHbegin] = ACTIONS(12613), + [anon_sym_BSLASHcaption] = ACTIONS(12613), + [anon_sym_BSLASHcite] = ACTIONS(12613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCite] = ACTIONS(12613), + [anon_sym_BSLASHnocite] = ACTIONS(12613), + [anon_sym_BSLASHcitet] = ACTIONS(12613), + [anon_sym_BSLASHcitep] = ACTIONS(12613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteauthor] = ACTIONS(12613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitetitle] = ACTIONS(12613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteyear] = ACTIONS(12613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitedate] = ACTIONS(12613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteurl] = ACTIONS(12613), + [anon_sym_BSLASHfullcite] = ACTIONS(12613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12613), + [anon_sym_BSLASHcitealt] = ACTIONS(12613), + [anon_sym_BSLASHcitealp] = ACTIONS(12613), + [anon_sym_BSLASHcitetext] = ACTIONS(12613), + [anon_sym_BSLASHparencite] = ACTIONS(12613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHParencite] = ACTIONS(12613), + [anon_sym_BSLASHfootcite] = ACTIONS(12613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12613), + [anon_sym_BSLASHtextcite] = ACTIONS(12613), + [anon_sym_BSLASHTextcite] = ACTIONS(12613), + [anon_sym_BSLASHsmartcite] = ACTIONS(12613), + [anon_sym_BSLASHSmartcite] = ACTIONS(12613), + [anon_sym_BSLASHsupercite] = ACTIONS(12613), + [anon_sym_BSLASHautocite] = ACTIONS(12613), + [anon_sym_BSLASHAutocite] = ACTIONS(12613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHvolcite] = ACTIONS(12613), + [anon_sym_BSLASHVolcite] = ACTIONS(12613), + [anon_sym_BSLASHpvolcite] = ACTIONS(12613), + [anon_sym_BSLASHPvolcite] = ACTIONS(12613), + [anon_sym_BSLASHfvolcite] = ACTIONS(12613), + [anon_sym_BSLASHftvolcite] = ACTIONS(12613), + [anon_sym_BSLASHsvolcite] = ACTIONS(12613), + [anon_sym_BSLASHSvolcite] = ACTIONS(12613), + [anon_sym_BSLASHtvolcite] = ACTIONS(12613), + [anon_sym_BSLASHTvolcite] = ACTIONS(12613), + [anon_sym_BSLASHavolcite] = ACTIONS(12613), + [anon_sym_BSLASHAvolcite] = ACTIONS(12613), + [anon_sym_BSLASHnotecite] = ACTIONS(12613), + [anon_sym_BSLASHpnotecite] = ACTIONS(12613), + [anon_sym_BSLASHPnotecite] = ACTIONS(12613), + [anon_sym_BSLASHfnotecite] = ACTIONS(12613), + [anon_sym_BSLASHusepackage] = ACTIONS(12613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12613), + [anon_sym_BSLASHinclude] = ACTIONS(12613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12613), + [anon_sym_BSLASHinput] = ACTIONS(12613), + [anon_sym_BSLASHsubfile] = ACTIONS(12613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12613), + [anon_sym_BSLASHbibliography] = ACTIONS(12613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12613), + [anon_sym_BSLASHincludesvg] = ACTIONS(12613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12613), + [anon_sym_BSLASHimport] = ACTIONS(12613), + [anon_sym_BSLASHsubimport] = ACTIONS(12613), + [anon_sym_BSLASHinputfrom] = ACTIONS(12613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12613), + [anon_sym_BSLASHincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHlabel] = ACTIONS(12613), + [anon_sym_BSLASHref] = ACTIONS(12613), + [anon_sym_BSLASHvref] = ACTIONS(12613), + [anon_sym_BSLASHVref] = ACTIONS(12613), + [anon_sym_BSLASHautoref] = ACTIONS(12613), + [anon_sym_BSLASHpageref] = ACTIONS(12613), + [anon_sym_BSLASHcref] = ACTIONS(12613), + [anon_sym_BSLASHCref] = ACTIONS(12613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnameCref] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHlabelcref] = ACTIONS(12613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12613), + [anon_sym_BSLASHeqref] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange] = ACTIONS(12613), + [anon_sym_BSLASHCrefrange] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewlabel] = ACTIONS(12613), + [anon_sym_BSLASHnewcommand] = ACTIONS(12613), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12613), + [anon_sym_BSLASHgls] = ACTIONS(12613), + [anon_sym_BSLASHGls] = ACTIONS(12613), + [anon_sym_BSLASHGLS] = ACTIONS(12613), + [anon_sym_BSLASHglspl] = ACTIONS(12613), + [anon_sym_BSLASHGlspl] = ACTIONS(12613), + [anon_sym_BSLASHGLSpl] = ACTIONS(12613), + [anon_sym_BSLASHglsdisp] = ACTIONS(12613), + [anon_sym_BSLASHglslink] = ACTIONS(12613), + [anon_sym_BSLASHglstext] = ACTIONS(12613), + [anon_sym_BSLASHGlstext] = ACTIONS(12613), + [anon_sym_BSLASHGLStext] = ACTIONS(12613), + [anon_sym_BSLASHglsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12613), + [anon_sym_BSLASHglsplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSplural] = ACTIONS(12613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHglsname] = ACTIONS(12613), + [anon_sym_BSLASHGlsname] = ACTIONS(12613), + [anon_sym_BSLASHGLSname] = ACTIONS(12613), + [anon_sym_BSLASHglssymbol] = ACTIONS(12613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12613), + [anon_sym_BSLASHglsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12613), + [anon_sym_BSLASHglsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12613), + [anon_sym_BSLASHglsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12613), + [anon_sym_BSLASHglsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12613), + [anon_sym_BSLASHglsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12613), + [anon_sym_BSLASHnewacronym] = ACTIONS(12613), + [anon_sym_BSLASHacrshort] = ACTIONS(12613), + [anon_sym_BSLASHAcrshort] = ACTIONS(12613), + [anon_sym_BSLASHACRshort] = ACTIONS(12613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12613), + [anon_sym_BSLASHacrlong] = ACTIONS(12613), + [anon_sym_BSLASHAcrlong] = ACTIONS(12613), + [anon_sym_BSLASHACRlong] = ACTIONS(12613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12613), + [anon_sym_BSLASHacrfull] = ACTIONS(12613), + [anon_sym_BSLASHAcrfull] = ACTIONS(12613), + [anon_sym_BSLASHACRfull] = ACTIONS(12613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12613), + [anon_sym_BSLASHacs] = ACTIONS(12613), + [anon_sym_BSLASHAcs] = ACTIONS(12613), + [anon_sym_BSLASHacsp] = ACTIONS(12613), + [anon_sym_BSLASHAcsp] = ACTIONS(12613), + [anon_sym_BSLASHacl] = ACTIONS(12613), + [anon_sym_BSLASHAcl] = ACTIONS(12613), + [anon_sym_BSLASHaclp] = ACTIONS(12613), + [anon_sym_BSLASHAclp] = ACTIONS(12613), + [anon_sym_BSLASHacf] = ACTIONS(12613), + [anon_sym_BSLASHAcf] = ACTIONS(12613), + [anon_sym_BSLASHacfp] = ACTIONS(12613), + [anon_sym_BSLASHAcfp] = ACTIONS(12613), + [anon_sym_BSLASHac] = ACTIONS(12613), + [anon_sym_BSLASHAc] = ACTIONS(12613), + [anon_sym_BSLASHacp] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12613), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12613), + [anon_sym_BSLASHcolor] = ACTIONS(12613), + [anon_sym_BSLASHcolorbox] = ACTIONS(12613), + [anon_sym_BSLASHtextcolor] = ACTIONS(12613), + [anon_sym_BSLASHpagecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12613), + }, + [639] = { + [sym_brace_group] = STATE(3315), + [sym_generic_command_name] = ACTIONS(12028), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12028), + [aux_sym_chapter_token1] = ACTIONS(12028), + [aux_sym_section_token1] = ACTIONS(12028), + [aux_sym_subsection_token1] = ACTIONS(12028), + [aux_sym_subsubsection_token1] = ACTIONS(12028), + [aux_sym_paragraph_token1] = ACTIONS(12028), + [aux_sym_subparagraph_token1] = ACTIONS(12028), + [anon_sym_BSLASHitem] = ACTIONS(12028), + [anon_sym_LBRACK] = ACTIONS(12026), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12026), + [anon_sym_COMMA] = ACTIONS(12026), + [anon_sym_EQ] = ACTIONS(12026), + [sym_word] = ACTIONS(12026), + [sym_param] = ACTIONS(12026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12026), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12026), + [anon_sym_DOLLAR] = ACTIONS(12028), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12026), + [anon_sym_BSLASHbegin] = ACTIONS(12028), + [anon_sym_BSLASHend] = ACTIONS(12028), + [anon_sym_BSLASHcaption] = ACTIONS(12028), + [anon_sym_BSLASHcite] = ACTIONS(12028), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCite] = ACTIONS(12028), + [anon_sym_BSLASHnocite] = ACTIONS(12028), + [anon_sym_BSLASHcitet] = ACTIONS(12028), + [anon_sym_BSLASHcitep] = ACTIONS(12028), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteauthor] = ACTIONS(12028), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12028), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitetitle] = ACTIONS(12028), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteyear] = ACTIONS(12028), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitedate] = ACTIONS(12028), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteurl] = ACTIONS(12028), + [anon_sym_BSLASHfullcite] = ACTIONS(12028), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12028), + [anon_sym_BSLASHcitealt] = ACTIONS(12028), + [anon_sym_BSLASHcitealp] = ACTIONS(12028), + [anon_sym_BSLASHcitetext] = ACTIONS(12028), + [anon_sym_BSLASHparencite] = ACTIONS(12028), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHParencite] = ACTIONS(12028), + [anon_sym_BSLASHfootcite] = ACTIONS(12028), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12028), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12028), + [anon_sym_BSLASHtextcite] = ACTIONS(12028), + [anon_sym_BSLASHTextcite] = ACTIONS(12028), + [anon_sym_BSLASHsmartcite] = ACTIONS(12028), + [anon_sym_BSLASHSmartcite] = ACTIONS(12028), + [anon_sym_BSLASHsupercite] = ACTIONS(12028), + [anon_sym_BSLASHautocite] = ACTIONS(12028), + [anon_sym_BSLASHAutocite] = ACTIONS(12028), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHvolcite] = ACTIONS(12028), + [anon_sym_BSLASHVolcite] = ACTIONS(12028), + [anon_sym_BSLASHpvolcite] = ACTIONS(12028), + [anon_sym_BSLASHPvolcite] = ACTIONS(12028), + [anon_sym_BSLASHfvolcite] = ACTIONS(12028), + [anon_sym_BSLASHftvolcite] = ACTIONS(12028), + [anon_sym_BSLASHsvolcite] = ACTIONS(12028), + [anon_sym_BSLASHSvolcite] = ACTIONS(12028), + [anon_sym_BSLASHtvolcite] = ACTIONS(12028), + [anon_sym_BSLASHTvolcite] = ACTIONS(12028), + [anon_sym_BSLASHavolcite] = ACTIONS(12028), + [anon_sym_BSLASHAvolcite] = ACTIONS(12028), + [anon_sym_BSLASHnotecite] = ACTIONS(12028), + [anon_sym_BSLASHpnotecite] = ACTIONS(12028), + [anon_sym_BSLASHPnotecite] = ACTIONS(12028), + [anon_sym_BSLASHfnotecite] = ACTIONS(12028), + [anon_sym_BSLASHusepackage] = ACTIONS(12028), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12028), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12028), + [anon_sym_BSLASHinclude] = ACTIONS(12028), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12028), + [anon_sym_BSLASHinput] = ACTIONS(12028), + [anon_sym_BSLASHsubfile] = ACTIONS(12028), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12028), + [anon_sym_BSLASHbibliography] = ACTIONS(12028), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12028), + [anon_sym_BSLASHincludesvg] = ACTIONS(12028), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12028), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12028), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12028), + [anon_sym_BSLASHimport] = ACTIONS(12028), + [anon_sym_BSLASHsubimport] = ACTIONS(12028), + [anon_sym_BSLASHinputfrom] = ACTIONS(12028), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12028), + [anon_sym_BSLASHincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHlabel] = ACTIONS(12028), + [anon_sym_BSLASHref] = ACTIONS(12028), + [anon_sym_BSLASHvref] = ACTIONS(12028), + [anon_sym_BSLASHVref] = ACTIONS(12028), + [anon_sym_BSLASHautoref] = ACTIONS(12028), + [anon_sym_BSLASHpageref] = ACTIONS(12028), + [anon_sym_BSLASHcref] = ACTIONS(12028), + [anon_sym_BSLASHCref] = ACTIONS(12028), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnameCref] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHlabelcref] = ACTIONS(12028), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12028), + [anon_sym_BSLASHeqref] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange] = ACTIONS(12028), + [anon_sym_BSLASHCrefrange] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewlabel] = ACTIONS(12028), + [anon_sym_BSLASHnewcommand] = ACTIONS(12028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12028), + [anon_sym_BSLASHgls] = ACTIONS(12028), + [anon_sym_BSLASHGls] = ACTIONS(12028), + [anon_sym_BSLASHGLS] = ACTIONS(12028), + [anon_sym_BSLASHglspl] = ACTIONS(12028), + [anon_sym_BSLASHGlspl] = ACTIONS(12028), + [anon_sym_BSLASHGLSpl] = ACTIONS(12028), + [anon_sym_BSLASHglsdisp] = ACTIONS(12028), + [anon_sym_BSLASHglslink] = ACTIONS(12028), + [anon_sym_BSLASHglstext] = ACTIONS(12028), + [anon_sym_BSLASHGlstext] = ACTIONS(12028), + [anon_sym_BSLASHGLStext] = ACTIONS(12028), + [anon_sym_BSLASHglsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12028), + [anon_sym_BSLASHglsplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSplural] = ACTIONS(12028), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHglsname] = ACTIONS(12028), + [anon_sym_BSLASHGlsname] = ACTIONS(12028), + [anon_sym_BSLASHGLSname] = ACTIONS(12028), + [anon_sym_BSLASHglssymbol] = ACTIONS(12028), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12028), + [anon_sym_BSLASHglsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12028), + [anon_sym_BSLASHglsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12028), + [anon_sym_BSLASHglsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12028), + [anon_sym_BSLASHglsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12028), + [anon_sym_BSLASHglsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12028), + [anon_sym_BSLASHnewacronym] = ACTIONS(12028), + [anon_sym_BSLASHacrshort] = ACTIONS(12028), + [anon_sym_BSLASHAcrshort] = ACTIONS(12028), + [anon_sym_BSLASHACRshort] = ACTIONS(12028), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12028), + [anon_sym_BSLASHacrlong] = ACTIONS(12028), + [anon_sym_BSLASHAcrlong] = ACTIONS(12028), + [anon_sym_BSLASHACRlong] = ACTIONS(12028), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12028), + [anon_sym_BSLASHacrfull] = ACTIONS(12028), + [anon_sym_BSLASHAcrfull] = ACTIONS(12028), + [anon_sym_BSLASHACRfull] = ACTIONS(12028), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12028), + [anon_sym_BSLASHacs] = ACTIONS(12028), + [anon_sym_BSLASHAcs] = ACTIONS(12028), + [anon_sym_BSLASHacsp] = ACTIONS(12028), + [anon_sym_BSLASHAcsp] = ACTIONS(12028), + [anon_sym_BSLASHacl] = ACTIONS(12028), + [anon_sym_BSLASHAcl] = ACTIONS(12028), + [anon_sym_BSLASHaclp] = ACTIONS(12028), + [anon_sym_BSLASHAclp] = ACTIONS(12028), + [anon_sym_BSLASHacf] = ACTIONS(12028), + [anon_sym_BSLASHAcf] = ACTIONS(12028), + [anon_sym_BSLASHacfp] = ACTIONS(12028), + [anon_sym_BSLASHAcfp] = ACTIONS(12028), + [anon_sym_BSLASHac] = ACTIONS(12028), + [anon_sym_BSLASHAc] = ACTIONS(12028), + [anon_sym_BSLASHacp] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12028), + [anon_sym_BSLASHcolor] = ACTIONS(12028), + [anon_sym_BSLASHcolorbox] = ACTIONS(12028), + [anon_sym_BSLASHtextcolor] = ACTIONS(12028), + [anon_sym_BSLASHpagecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12028), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12028), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12028), + }, + [640] = { + [sym_brace_group] = STATE(626), + [sym_bracket_group] = STATE(626), + [sym_paren_group] = STATE(626), + [aux_sym_generic_command_repeat1] = STATE(626), + [sym_generic_command_name] = ACTIONS(11990), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(11990), + [aux_sym_paragraph_token1] = ACTIONS(11990), + [aux_sym_subparagraph_token1] = ACTIONS(11990), + [anon_sym_BSLASHitem] = ACTIONS(11990), + [anon_sym_LBRACK] = ACTIONS(12609), + [anon_sym_RBRACK] = ACTIONS(11988), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(11988), + [anon_sym_LPAREN] = ACTIONS(12611), + [anon_sym_COMMA] = ACTIONS(11988), + [anon_sym_EQ] = ACTIONS(11988), + [sym_word] = ACTIONS(11988), + [sym_param] = ACTIONS(11988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11988), + [anon_sym_DOLLAR] = ACTIONS(11990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11988), + [anon_sym_BSLASHbegin] = ACTIONS(11990), + [anon_sym_BSLASHcaption] = ACTIONS(11990), + [anon_sym_BSLASHcite] = ACTIONS(11990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCite] = ACTIONS(11990), + [anon_sym_BSLASHnocite] = ACTIONS(11990), + [anon_sym_BSLASHcitet] = ACTIONS(11990), + [anon_sym_BSLASHcitep] = ACTIONS(11990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteauthor] = ACTIONS(11990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitetitle] = ACTIONS(11990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteyear] = ACTIONS(11990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitedate] = ACTIONS(11990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteurl] = ACTIONS(11990), + [anon_sym_BSLASHfullcite] = ACTIONS(11990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11990), + [anon_sym_BSLASHcitealt] = ACTIONS(11990), + [anon_sym_BSLASHcitealp] = ACTIONS(11990), + [anon_sym_BSLASHcitetext] = ACTIONS(11990), + [anon_sym_BSLASHparencite] = ACTIONS(11990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHParencite] = ACTIONS(11990), + [anon_sym_BSLASHfootcite] = ACTIONS(11990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11990), + [anon_sym_BSLASHtextcite] = ACTIONS(11990), + [anon_sym_BSLASHTextcite] = ACTIONS(11990), + [anon_sym_BSLASHsmartcite] = ACTIONS(11990), + [anon_sym_BSLASHSmartcite] = ACTIONS(11990), + [anon_sym_BSLASHsupercite] = ACTIONS(11990), + [anon_sym_BSLASHautocite] = ACTIONS(11990), + [anon_sym_BSLASHAutocite] = ACTIONS(11990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHvolcite] = ACTIONS(11990), + [anon_sym_BSLASHVolcite] = ACTIONS(11990), + [anon_sym_BSLASHpvolcite] = ACTIONS(11990), + [anon_sym_BSLASHPvolcite] = ACTIONS(11990), + [anon_sym_BSLASHfvolcite] = ACTIONS(11990), + [anon_sym_BSLASHftvolcite] = ACTIONS(11990), + [anon_sym_BSLASHsvolcite] = ACTIONS(11990), + [anon_sym_BSLASHSvolcite] = ACTIONS(11990), + [anon_sym_BSLASHtvolcite] = ACTIONS(11990), + [anon_sym_BSLASHTvolcite] = ACTIONS(11990), + [anon_sym_BSLASHavolcite] = ACTIONS(11990), + [anon_sym_BSLASHAvolcite] = ACTIONS(11990), + [anon_sym_BSLASHnotecite] = ACTIONS(11990), + [anon_sym_BSLASHpnotecite] = ACTIONS(11990), + [anon_sym_BSLASHPnotecite] = ACTIONS(11990), + [anon_sym_BSLASHfnotecite] = ACTIONS(11990), + [anon_sym_BSLASHusepackage] = ACTIONS(11990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11990), + [anon_sym_BSLASHinclude] = ACTIONS(11990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11990), + [anon_sym_BSLASHinput] = ACTIONS(11990), + [anon_sym_BSLASHsubfile] = ACTIONS(11990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11990), + [anon_sym_BSLASHbibliography] = ACTIONS(11990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11990), + [anon_sym_BSLASHincludesvg] = ACTIONS(11990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11990), + [anon_sym_BSLASHimport] = ACTIONS(11990), + [anon_sym_BSLASHsubimport] = ACTIONS(11990), + [anon_sym_BSLASHinputfrom] = ACTIONS(11990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11990), + [anon_sym_BSLASHincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHlabel] = ACTIONS(11990), + [anon_sym_BSLASHref] = ACTIONS(11990), + [anon_sym_BSLASHvref] = ACTIONS(11990), + [anon_sym_BSLASHVref] = ACTIONS(11990), + [anon_sym_BSLASHautoref] = ACTIONS(11990), + [anon_sym_BSLASHpageref] = ACTIONS(11990), + [anon_sym_BSLASHcref] = ACTIONS(11990), + [anon_sym_BSLASHCref] = ACTIONS(11990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnameCref] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHlabelcref] = ACTIONS(11990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11990), + [anon_sym_BSLASHeqref] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange] = ACTIONS(11990), + [anon_sym_BSLASHCrefrange] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewlabel] = ACTIONS(11990), + [anon_sym_BSLASHnewcommand] = ACTIONS(11990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11990), + [anon_sym_BSLASHgls] = ACTIONS(11990), + [anon_sym_BSLASHGls] = ACTIONS(11990), + [anon_sym_BSLASHGLS] = ACTIONS(11990), + [anon_sym_BSLASHglspl] = ACTIONS(11990), + [anon_sym_BSLASHGlspl] = ACTIONS(11990), + [anon_sym_BSLASHGLSpl] = ACTIONS(11990), + [anon_sym_BSLASHglsdisp] = ACTIONS(11990), + [anon_sym_BSLASHglslink] = ACTIONS(11990), + [anon_sym_BSLASHglstext] = ACTIONS(11990), + [anon_sym_BSLASHGlstext] = ACTIONS(11990), + [anon_sym_BSLASHGLStext] = ACTIONS(11990), + [anon_sym_BSLASHglsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11990), + [anon_sym_BSLASHglsplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSplural] = ACTIONS(11990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHglsname] = ACTIONS(11990), + [anon_sym_BSLASHGlsname] = ACTIONS(11990), + [anon_sym_BSLASHGLSname] = ACTIONS(11990), + [anon_sym_BSLASHglssymbol] = ACTIONS(11990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11990), + [anon_sym_BSLASHglsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11990), + [anon_sym_BSLASHglsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11990), + [anon_sym_BSLASHglsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11990), + [anon_sym_BSLASHglsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11990), + [anon_sym_BSLASHglsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11990), + [anon_sym_BSLASHnewacronym] = ACTIONS(11990), + [anon_sym_BSLASHacrshort] = ACTIONS(11990), + [anon_sym_BSLASHAcrshort] = ACTIONS(11990), + [anon_sym_BSLASHACRshort] = ACTIONS(11990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11990), + [anon_sym_BSLASHacrlong] = ACTIONS(11990), + [anon_sym_BSLASHAcrlong] = ACTIONS(11990), + [anon_sym_BSLASHACRlong] = ACTIONS(11990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11990), + [anon_sym_BSLASHacrfull] = ACTIONS(11990), + [anon_sym_BSLASHAcrfull] = ACTIONS(11990), + [anon_sym_BSLASHACRfull] = ACTIONS(11990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11990), + [anon_sym_BSLASHacs] = ACTIONS(11990), + [anon_sym_BSLASHAcs] = ACTIONS(11990), + [anon_sym_BSLASHacsp] = ACTIONS(11990), + [anon_sym_BSLASHAcsp] = ACTIONS(11990), + [anon_sym_BSLASHacl] = ACTIONS(11990), + [anon_sym_BSLASHAcl] = ACTIONS(11990), + [anon_sym_BSLASHaclp] = ACTIONS(11990), + [anon_sym_BSLASHAclp] = ACTIONS(11990), + [anon_sym_BSLASHacf] = ACTIONS(11990), + [anon_sym_BSLASHAcf] = ACTIONS(11990), + [anon_sym_BSLASHacfp] = ACTIONS(11990), + [anon_sym_BSLASHAcfp] = ACTIONS(11990), + [anon_sym_BSLASHac] = ACTIONS(11990), + [anon_sym_BSLASHAc] = ACTIONS(11990), + [anon_sym_BSLASHacp] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11990), + [anon_sym_BSLASHcolor] = ACTIONS(11990), + [anon_sym_BSLASHcolorbox] = ACTIONS(11990), + [anon_sym_BSLASHtextcolor] = ACTIONS(11990), + [anon_sym_BSLASHpagecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11990), + }, + [641] = { + [sym_brace_group] = STATE(3420), + [sym_generic_command_name] = ACTIONS(12028), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12028), + [aux_sym_chapter_token1] = ACTIONS(12028), + [aux_sym_section_token1] = ACTIONS(12028), + [aux_sym_subsection_token1] = ACTIONS(12028), + [aux_sym_subsubsection_token1] = ACTIONS(12028), + [aux_sym_paragraph_token1] = ACTIONS(12028), + [aux_sym_subparagraph_token1] = ACTIONS(12028), + [anon_sym_BSLASHitem] = ACTIONS(12028), + [anon_sym_LBRACK] = ACTIONS(12026), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12026), + [anon_sym_COMMA] = ACTIONS(12026), + [anon_sym_EQ] = ACTIONS(12026), + [sym_word] = ACTIONS(12026), + [sym_param] = ACTIONS(12026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12026), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12026), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12026), + [anon_sym_DOLLAR] = ACTIONS(12028), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12026), + [anon_sym_BSLASHbegin] = ACTIONS(12028), + [anon_sym_BSLASHcaption] = ACTIONS(12028), + [anon_sym_BSLASHcite] = ACTIONS(12028), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCite] = ACTIONS(12028), + [anon_sym_BSLASHnocite] = ACTIONS(12028), + [anon_sym_BSLASHcitet] = ACTIONS(12028), + [anon_sym_BSLASHcitep] = ACTIONS(12028), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteauthor] = ACTIONS(12028), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12028), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitetitle] = ACTIONS(12028), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteyear] = ACTIONS(12028), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitedate] = ACTIONS(12028), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteurl] = ACTIONS(12028), + [anon_sym_BSLASHfullcite] = ACTIONS(12028), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12028), + [anon_sym_BSLASHcitealt] = ACTIONS(12028), + [anon_sym_BSLASHcitealp] = ACTIONS(12028), + [anon_sym_BSLASHcitetext] = ACTIONS(12028), + [anon_sym_BSLASHparencite] = ACTIONS(12028), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHParencite] = ACTIONS(12028), + [anon_sym_BSLASHfootcite] = ACTIONS(12028), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12028), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12028), + [anon_sym_BSLASHtextcite] = ACTIONS(12028), + [anon_sym_BSLASHTextcite] = ACTIONS(12028), + [anon_sym_BSLASHsmartcite] = ACTIONS(12028), + [anon_sym_BSLASHSmartcite] = ACTIONS(12028), + [anon_sym_BSLASHsupercite] = ACTIONS(12028), + [anon_sym_BSLASHautocite] = ACTIONS(12028), + [anon_sym_BSLASHAutocite] = ACTIONS(12028), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHvolcite] = ACTIONS(12028), + [anon_sym_BSLASHVolcite] = ACTIONS(12028), + [anon_sym_BSLASHpvolcite] = ACTIONS(12028), + [anon_sym_BSLASHPvolcite] = ACTIONS(12028), + [anon_sym_BSLASHfvolcite] = ACTIONS(12028), + [anon_sym_BSLASHftvolcite] = ACTIONS(12028), + [anon_sym_BSLASHsvolcite] = ACTIONS(12028), + [anon_sym_BSLASHSvolcite] = ACTIONS(12028), + [anon_sym_BSLASHtvolcite] = ACTIONS(12028), + [anon_sym_BSLASHTvolcite] = ACTIONS(12028), + [anon_sym_BSLASHavolcite] = ACTIONS(12028), + [anon_sym_BSLASHAvolcite] = ACTIONS(12028), + [anon_sym_BSLASHnotecite] = ACTIONS(12028), + [anon_sym_BSLASHpnotecite] = ACTIONS(12028), + [anon_sym_BSLASHPnotecite] = ACTIONS(12028), + [anon_sym_BSLASHfnotecite] = ACTIONS(12028), + [anon_sym_BSLASHusepackage] = ACTIONS(12028), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12028), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12028), + [anon_sym_BSLASHinclude] = ACTIONS(12028), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12028), + [anon_sym_BSLASHinput] = ACTIONS(12028), + [anon_sym_BSLASHsubfile] = ACTIONS(12028), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12028), + [anon_sym_BSLASHbibliography] = ACTIONS(12028), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12028), + [anon_sym_BSLASHincludesvg] = ACTIONS(12028), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12028), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12028), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12028), + [anon_sym_BSLASHimport] = ACTIONS(12028), + [anon_sym_BSLASHsubimport] = ACTIONS(12028), + [anon_sym_BSLASHinputfrom] = ACTIONS(12028), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12028), + [anon_sym_BSLASHincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHlabel] = ACTIONS(12028), + [anon_sym_BSLASHref] = ACTIONS(12028), + [anon_sym_BSLASHvref] = ACTIONS(12028), + [anon_sym_BSLASHVref] = ACTIONS(12028), + [anon_sym_BSLASHautoref] = ACTIONS(12028), + [anon_sym_BSLASHpageref] = ACTIONS(12028), + [anon_sym_BSLASHcref] = ACTIONS(12028), + [anon_sym_BSLASHCref] = ACTIONS(12028), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnameCref] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHlabelcref] = ACTIONS(12028), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12028), + [anon_sym_BSLASHeqref] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange] = ACTIONS(12028), + [anon_sym_BSLASHCrefrange] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewlabel] = ACTIONS(12028), + [anon_sym_BSLASHnewcommand] = ACTIONS(12028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12028), + [anon_sym_BSLASHgls] = ACTIONS(12028), + [anon_sym_BSLASHGls] = ACTIONS(12028), + [anon_sym_BSLASHGLS] = ACTIONS(12028), + [anon_sym_BSLASHglspl] = ACTIONS(12028), + [anon_sym_BSLASHGlspl] = ACTIONS(12028), + [anon_sym_BSLASHGLSpl] = ACTIONS(12028), + [anon_sym_BSLASHglsdisp] = ACTIONS(12028), + [anon_sym_BSLASHglslink] = ACTIONS(12028), + [anon_sym_BSLASHglstext] = ACTIONS(12028), + [anon_sym_BSLASHGlstext] = ACTIONS(12028), + [anon_sym_BSLASHGLStext] = ACTIONS(12028), + [anon_sym_BSLASHglsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12028), + [anon_sym_BSLASHglsplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSplural] = ACTIONS(12028), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHglsname] = ACTIONS(12028), + [anon_sym_BSLASHGlsname] = ACTIONS(12028), + [anon_sym_BSLASHGLSname] = ACTIONS(12028), + [anon_sym_BSLASHglssymbol] = ACTIONS(12028), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12028), + [anon_sym_BSLASHglsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12028), + [anon_sym_BSLASHglsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12028), + [anon_sym_BSLASHglsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12028), + [anon_sym_BSLASHglsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12028), + [anon_sym_BSLASHglsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12028), + [anon_sym_BSLASHnewacronym] = ACTIONS(12028), + [anon_sym_BSLASHacrshort] = ACTIONS(12028), + [anon_sym_BSLASHAcrshort] = ACTIONS(12028), + [anon_sym_BSLASHACRshort] = ACTIONS(12028), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12028), + [anon_sym_BSLASHacrlong] = ACTIONS(12028), + [anon_sym_BSLASHAcrlong] = ACTIONS(12028), + [anon_sym_BSLASHACRlong] = ACTIONS(12028), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12028), + [anon_sym_BSLASHacrfull] = ACTIONS(12028), + [anon_sym_BSLASHAcrfull] = ACTIONS(12028), + [anon_sym_BSLASHACRfull] = ACTIONS(12028), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12028), + [anon_sym_BSLASHacs] = ACTIONS(12028), + [anon_sym_BSLASHAcs] = ACTIONS(12028), + [anon_sym_BSLASHacsp] = ACTIONS(12028), + [anon_sym_BSLASHAcsp] = ACTIONS(12028), + [anon_sym_BSLASHacl] = ACTIONS(12028), + [anon_sym_BSLASHAcl] = ACTIONS(12028), + [anon_sym_BSLASHaclp] = ACTIONS(12028), + [anon_sym_BSLASHAclp] = ACTIONS(12028), + [anon_sym_BSLASHacf] = ACTIONS(12028), + [anon_sym_BSLASHAcf] = ACTIONS(12028), + [anon_sym_BSLASHacfp] = ACTIONS(12028), + [anon_sym_BSLASHAcfp] = ACTIONS(12028), + [anon_sym_BSLASHac] = ACTIONS(12028), + [anon_sym_BSLASHAc] = ACTIONS(12028), + [anon_sym_BSLASHacp] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12028), + [anon_sym_BSLASHcolor] = ACTIONS(12028), + [anon_sym_BSLASHcolorbox] = ACTIONS(12028), + [anon_sym_BSLASHtextcolor] = ACTIONS(12028), + [anon_sym_BSLASHpagecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12028), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12028), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12028), + }, + [642] = { + [sym_brace_group] = STATE(3378), + [sym_generic_command_name] = ACTIONS(12058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12058), + [aux_sym_chapter_token1] = ACTIONS(12058), + [aux_sym_section_token1] = ACTIONS(12058), + [aux_sym_subsection_token1] = ACTIONS(12058), + [aux_sym_subsubsection_token1] = ACTIONS(12058), + [aux_sym_paragraph_token1] = ACTIONS(12058), + [aux_sym_subparagraph_token1] = ACTIONS(12058), + [anon_sym_BSLASHitem] = ACTIONS(12058), + [anon_sym_LBRACK] = ACTIONS(12056), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12056), + [anon_sym_COMMA] = ACTIONS(12056), + [anon_sym_EQ] = ACTIONS(12056), + [sym_word] = ACTIONS(12056), + [sym_param] = ACTIONS(12056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12056), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12056), + [anon_sym_DOLLAR] = ACTIONS(12058), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12056), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12056), + [anon_sym_BSLASHbegin] = ACTIONS(12058), + [anon_sym_BSLASHcaption] = ACTIONS(12058), + [anon_sym_BSLASHcite] = ACTIONS(12058), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCite] = ACTIONS(12058), + [anon_sym_BSLASHnocite] = ACTIONS(12058), + [anon_sym_BSLASHcitet] = ACTIONS(12058), + [anon_sym_BSLASHcitep] = ACTIONS(12058), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteauthor] = ACTIONS(12058), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12058), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitetitle] = ACTIONS(12058), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteyear] = ACTIONS(12058), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitedate] = ACTIONS(12058), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteurl] = ACTIONS(12058), + [anon_sym_BSLASHfullcite] = ACTIONS(12058), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12058), + [anon_sym_BSLASHcitealt] = ACTIONS(12058), + [anon_sym_BSLASHcitealp] = ACTIONS(12058), + [anon_sym_BSLASHcitetext] = ACTIONS(12058), + [anon_sym_BSLASHparencite] = ACTIONS(12058), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHParencite] = ACTIONS(12058), + [anon_sym_BSLASHfootcite] = ACTIONS(12058), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12058), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12058), + [anon_sym_BSLASHtextcite] = ACTIONS(12058), + [anon_sym_BSLASHTextcite] = ACTIONS(12058), + [anon_sym_BSLASHsmartcite] = ACTIONS(12058), + [anon_sym_BSLASHSmartcite] = ACTIONS(12058), + [anon_sym_BSLASHsupercite] = ACTIONS(12058), + [anon_sym_BSLASHautocite] = ACTIONS(12058), + [anon_sym_BSLASHAutocite] = ACTIONS(12058), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHvolcite] = ACTIONS(12058), + [anon_sym_BSLASHVolcite] = ACTIONS(12058), + [anon_sym_BSLASHpvolcite] = ACTIONS(12058), + [anon_sym_BSLASHPvolcite] = ACTIONS(12058), + [anon_sym_BSLASHfvolcite] = ACTIONS(12058), + [anon_sym_BSLASHftvolcite] = ACTIONS(12058), + [anon_sym_BSLASHsvolcite] = ACTIONS(12058), + [anon_sym_BSLASHSvolcite] = ACTIONS(12058), + [anon_sym_BSLASHtvolcite] = ACTIONS(12058), + [anon_sym_BSLASHTvolcite] = ACTIONS(12058), + [anon_sym_BSLASHavolcite] = ACTIONS(12058), + [anon_sym_BSLASHAvolcite] = ACTIONS(12058), + [anon_sym_BSLASHnotecite] = ACTIONS(12058), + [anon_sym_BSLASHpnotecite] = ACTIONS(12058), + [anon_sym_BSLASHPnotecite] = ACTIONS(12058), + [anon_sym_BSLASHfnotecite] = ACTIONS(12058), + [anon_sym_BSLASHusepackage] = ACTIONS(12058), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12058), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12058), + [anon_sym_BSLASHinclude] = ACTIONS(12058), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12058), + [anon_sym_BSLASHinput] = ACTIONS(12058), + [anon_sym_BSLASHsubfile] = ACTIONS(12058), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12058), + [anon_sym_BSLASHbibliography] = ACTIONS(12058), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12058), + [anon_sym_BSLASHincludesvg] = ACTIONS(12058), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12058), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12058), + [anon_sym_BSLASHimport] = ACTIONS(12058), + [anon_sym_BSLASHsubimport] = ACTIONS(12058), + [anon_sym_BSLASHinputfrom] = ACTIONS(12058), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12058), + [anon_sym_BSLASHincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHlabel] = ACTIONS(12058), + [anon_sym_BSLASHref] = ACTIONS(12058), + [anon_sym_BSLASHvref] = ACTIONS(12058), + [anon_sym_BSLASHVref] = ACTIONS(12058), + [anon_sym_BSLASHautoref] = ACTIONS(12058), + [anon_sym_BSLASHpageref] = ACTIONS(12058), + [anon_sym_BSLASHcref] = ACTIONS(12058), + [anon_sym_BSLASHCref] = ACTIONS(12058), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnameCref] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHlabelcref] = ACTIONS(12058), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12058), + [anon_sym_BSLASHeqref] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange] = ACTIONS(12058), + [anon_sym_BSLASHCrefrange] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewlabel] = ACTIONS(12058), + [anon_sym_BSLASHnewcommand] = ACTIONS(12058), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12058), + [anon_sym_BSLASHgls] = ACTIONS(12058), + [anon_sym_BSLASHGls] = ACTIONS(12058), + [anon_sym_BSLASHGLS] = ACTIONS(12058), + [anon_sym_BSLASHglspl] = ACTIONS(12058), + [anon_sym_BSLASHGlspl] = ACTIONS(12058), + [anon_sym_BSLASHGLSpl] = ACTIONS(12058), + [anon_sym_BSLASHglsdisp] = ACTIONS(12058), + [anon_sym_BSLASHglslink] = ACTIONS(12058), + [anon_sym_BSLASHglstext] = ACTIONS(12058), + [anon_sym_BSLASHGlstext] = ACTIONS(12058), + [anon_sym_BSLASHGLStext] = ACTIONS(12058), + [anon_sym_BSLASHglsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12058), + [anon_sym_BSLASHglsplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSplural] = ACTIONS(12058), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHglsname] = ACTIONS(12058), + [anon_sym_BSLASHGlsname] = ACTIONS(12058), + [anon_sym_BSLASHGLSname] = ACTIONS(12058), + [anon_sym_BSLASHglssymbol] = ACTIONS(12058), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12058), + [anon_sym_BSLASHglsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12058), + [anon_sym_BSLASHglsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12058), + [anon_sym_BSLASHglsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12058), + [anon_sym_BSLASHglsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12058), + [anon_sym_BSLASHglsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12058), + [anon_sym_BSLASHnewacronym] = ACTIONS(12058), + [anon_sym_BSLASHacrshort] = ACTIONS(12058), + [anon_sym_BSLASHAcrshort] = ACTIONS(12058), + [anon_sym_BSLASHACRshort] = ACTIONS(12058), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12058), + [anon_sym_BSLASHacrlong] = ACTIONS(12058), + [anon_sym_BSLASHAcrlong] = ACTIONS(12058), + [anon_sym_BSLASHACRlong] = ACTIONS(12058), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12058), + [anon_sym_BSLASHacrfull] = ACTIONS(12058), + [anon_sym_BSLASHAcrfull] = ACTIONS(12058), + [anon_sym_BSLASHACRfull] = ACTIONS(12058), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12058), + [anon_sym_BSLASHacs] = ACTIONS(12058), + [anon_sym_BSLASHAcs] = ACTIONS(12058), + [anon_sym_BSLASHacsp] = ACTIONS(12058), + [anon_sym_BSLASHAcsp] = ACTIONS(12058), + [anon_sym_BSLASHacl] = ACTIONS(12058), + [anon_sym_BSLASHAcl] = ACTIONS(12058), + [anon_sym_BSLASHaclp] = ACTIONS(12058), + [anon_sym_BSLASHAclp] = ACTIONS(12058), + [anon_sym_BSLASHacf] = ACTIONS(12058), + [anon_sym_BSLASHAcf] = ACTIONS(12058), + [anon_sym_BSLASHacfp] = ACTIONS(12058), + [anon_sym_BSLASHAcfp] = ACTIONS(12058), + [anon_sym_BSLASHac] = ACTIONS(12058), + [anon_sym_BSLASHAc] = ACTIONS(12058), + [anon_sym_BSLASHacp] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12058), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12058), + [anon_sym_BSLASHcolor] = ACTIONS(12058), + [anon_sym_BSLASHcolorbox] = ACTIONS(12058), + [anon_sym_BSLASHtextcolor] = ACTIONS(12058), + [anon_sym_BSLASHpagecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12058), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12058), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12058), + }, + [643] = { + [sym_generic_command_name] = ACTIONS(12613), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12613), + [aux_sym_chapter_token1] = ACTIONS(12613), + [aux_sym_section_token1] = ACTIONS(12613), + [aux_sym_subsection_token1] = ACTIONS(12613), + [aux_sym_subsubsection_token1] = ACTIONS(12613), + [aux_sym_paragraph_token1] = ACTIONS(12613), + [aux_sym_subparagraph_token1] = ACTIONS(12613), + [anon_sym_BSLASHitem] = ACTIONS(12613), + [anon_sym_LBRACK] = ACTIONS(12615), + [anon_sym_RBRACK] = ACTIONS(12638), + [anon_sym_LBRACE] = ACTIONS(12615), + [anon_sym_LPAREN] = ACTIONS(12615), + [anon_sym_RPAREN] = ACTIONS(12615), + [anon_sym_COMMA] = ACTIONS(12615), + [anon_sym_EQ] = ACTIONS(12615), + [sym_word] = ACTIONS(12615), + [sym_param] = ACTIONS(12615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12615), + [anon_sym_DOLLAR] = ACTIONS(12613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12615), + [anon_sym_BSLASHbegin] = ACTIONS(12613), + [anon_sym_BSLASHcaption] = ACTIONS(12613), + [anon_sym_BSLASHcite] = ACTIONS(12613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCite] = ACTIONS(12613), + [anon_sym_BSLASHnocite] = ACTIONS(12613), + [anon_sym_BSLASHcitet] = ACTIONS(12613), + [anon_sym_BSLASHcitep] = ACTIONS(12613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteauthor] = ACTIONS(12613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitetitle] = ACTIONS(12613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteyear] = ACTIONS(12613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitedate] = ACTIONS(12613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteurl] = ACTIONS(12613), + [anon_sym_BSLASHfullcite] = ACTIONS(12613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12613), + [anon_sym_BSLASHcitealt] = ACTIONS(12613), + [anon_sym_BSLASHcitealp] = ACTIONS(12613), + [anon_sym_BSLASHcitetext] = ACTIONS(12613), + [anon_sym_BSLASHparencite] = ACTIONS(12613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHParencite] = ACTIONS(12613), + [anon_sym_BSLASHfootcite] = ACTIONS(12613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12613), + [anon_sym_BSLASHtextcite] = ACTIONS(12613), + [anon_sym_BSLASHTextcite] = ACTIONS(12613), + [anon_sym_BSLASHsmartcite] = ACTIONS(12613), + [anon_sym_BSLASHSmartcite] = ACTIONS(12613), + [anon_sym_BSLASHsupercite] = ACTIONS(12613), + [anon_sym_BSLASHautocite] = ACTIONS(12613), + [anon_sym_BSLASHAutocite] = ACTIONS(12613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHvolcite] = ACTIONS(12613), + [anon_sym_BSLASHVolcite] = ACTIONS(12613), + [anon_sym_BSLASHpvolcite] = ACTIONS(12613), + [anon_sym_BSLASHPvolcite] = ACTIONS(12613), + [anon_sym_BSLASHfvolcite] = ACTIONS(12613), + [anon_sym_BSLASHftvolcite] = ACTIONS(12613), + [anon_sym_BSLASHsvolcite] = ACTIONS(12613), + [anon_sym_BSLASHSvolcite] = ACTIONS(12613), + [anon_sym_BSLASHtvolcite] = ACTIONS(12613), + [anon_sym_BSLASHTvolcite] = ACTIONS(12613), + [anon_sym_BSLASHavolcite] = ACTIONS(12613), + [anon_sym_BSLASHAvolcite] = ACTIONS(12613), + [anon_sym_BSLASHnotecite] = ACTIONS(12613), + [anon_sym_BSLASHpnotecite] = ACTIONS(12613), + [anon_sym_BSLASHPnotecite] = ACTIONS(12613), + [anon_sym_BSLASHfnotecite] = ACTIONS(12613), + [anon_sym_BSLASHusepackage] = ACTIONS(12613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12613), + [anon_sym_BSLASHinclude] = ACTIONS(12613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12613), + [anon_sym_BSLASHinput] = ACTIONS(12613), + [anon_sym_BSLASHsubfile] = ACTIONS(12613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12613), + [anon_sym_BSLASHbibliography] = ACTIONS(12613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12613), + [anon_sym_BSLASHincludesvg] = ACTIONS(12613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12613), + [anon_sym_BSLASHimport] = ACTIONS(12613), + [anon_sym_BSLASHsubimport] = ACTIONS(12613), + [anon_sym_BSLASHinputfrom] = ACTIONS(12613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12613), + [anon_sym_BSLASHincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHlabel] = ACTIONS(12613), + [anon_sym_BSLASHref] = ACTIONS(12613), + [anon_sym_BSLASHvref] = ACTIONS(12613), + [anon_sym_BSLASHVref] = ACTIONS(12613), + [anon_sym_BSLASHautoref] = ACTIONS(12613), + [anon_sym_BSLASHpageref] = ACTIONS(12613), + [anon_sym_BSLASHcref] = ACTIONS(12613), + [anon_sym_BSLASHCref] = ACTIONS(12613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnameCref] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHlabelcref] = ACTIONS(12613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12613), + [anon_sym_BSLASHeqref] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange] = ACTIONS(12613), + [anon_sym_BSLASHCrefrange] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewlabel] = ACTIONS(12613), + [anon_sym_BSLASHnewcommand] = ACTIONS(12613), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12613), + [anon_sym_BSLASHgls] = ACTIONS(12613), + [anon_sym_BSLASHGls] = ACTIONS(12613), + [anon_sym_BSLASHGLS] = ACTIONS(12613), + [anon_sym_BSLASHglspl] = ACTIONS(12613), + [anon_sym_BSLASHGlspl] = ACTIONS(12613), + [anon_sym_BSLASHGLSpl] = ACTIONS(12613), + [anon_sym_BSLASHglsdisp] = ACTIONS(12613), + [anon_sym_BSLASHglslink] = ACTIONS(12613), + [anon_sym_BSLASHglstext] = ACTIONS(12613), + [anon_sym_BSLASHGlstext] = ACTIONS(12613), + [anon_sym_BSLASHGLStext] = ACTIONS(12613), + [anon_sym_BSLASHglsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12613), + [anon_sym_BSLASHglsplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSplural] = ACTIONS(12613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHglsname] = ACTIONS(12613), + [anon_sym_BSLASHGlsname] = ACTIONS(12613), + [anon_sym_BSLASHGLSname] = ACTIONS(12613), + [anon_sym_BSLASHglssymbol] = ACTIONS(12613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12613), + [anon_sym_BSLASHglsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12613), + [anon_sym_BSLASHglsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12613), + [anon_sym_BSLASHglsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12613), + [anon_sym_BSLASHglsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12613), + [anon_sym_BSLASHglsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12613), + [anon_sym_BSLASHnewacronym] = ACTIONS(12613), + [anon_sym_BSLASHacrshort] = ACTIONS(12613), + [anon_sym_BSLASHAcrshort] = ACTIONS(12613), + [anon_sym_BSLASHACRshort] = ACTIONS(12613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12613), + [anon_sym_BSLASHacrlong] = ACTIONS(12613), + [anon_sym_BSLASHAcrlong] = ACTIONS(12613), + [anon_sym_BSLASHACRlong] = ACTIONS(12613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12613), + [anon_sym_BSLASHacrfull] = ACTIONS(12613), + [anon_sym_BSLASHAcrfull] = ACTIONS(12613), + [anon_sym_BSLASHACRfull] = ACTIONS(12613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12613), + [anon_sym_BSLASHacs] = ACTIONS(12613), + [anon_sym_BSLASHAcs] = ACTIONS(12613), + [anon_sym_BSLASHacsp] = ACTIONS(12613), + [anon_sym_BSLASHAcsp] = ACTIONS(12613), + [anon_sym_BSLASHacl] = ACTIONS(12613), + [anon_sym_BSLASHAcl] = ACTIONS(12613), + [anon_sym_BSLASHaclp] = ACTIONS(12613), + [anon_sym_BSLASHAclp] = ACTIONS(12613), + [anon_sym_BSLASHacf] = ACTIONS(12613), + [anon_sym_BSLASHAcf] = ACTIONS(12613), + [anon_sym_BSLASHacfp] = ACTIONS(12613), + [anon_sym_BSLASHAcfp] = ACTIONS(12613), + [anon_sym_BSLASHac] = ACTIONS(12613), + [anon_sym_BSLASHAc] = ACTIONS(12613), + [anon_sym_BSLASHacp] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12613), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12613), + [anon_sym_BSLASHcolor] = ACTIONS(12613), + [anon_sym_BSLASHcolorbox] = ACTIONS(12613), + [anon_sym_BSLASHtextcolor] = ACTIONS(12613), + [anon_sym_BSLASHpagecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12613), + }, + [644] = { + [sym__text_fragment] = STATE(644), + [aux_sym_text_repeat1] = STATE(644), + [sym_generic_command_name] = ACTIONS(12021), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12021), + [aux_sym_subsection_token1] = ACTIONS(12021), + [aux_sym_subsubsection_token1] = ACTIONS(12021), + [aux_sym_paragraph_token1] = ACTIONS(12021), + [aux_sym_subparagraph_token1] = ACTIONS(12021), + [anon_sym_BSLASHitem] = ACTIONS(12021), + [anon_sym_LBRACK] = ACTIONS(12019), + [anon_sym_RBRACK] = ACTIONS(12019), + [anon_sym_LBRACE] = ACTIONS(12019), + [anon_sym_RBRACE] = ACTIONS(12019), + [anon_sym_LPAREN] = ACTIONS(12019), + [anon_sym_COMMA] = ACTIONS(12640), + [anon_sym_EQ] = ACTIONS(12640), + [sym_word] = ACTIONS(12640), + [sym_param] = ACTIONS(12019), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12019), + [anon_sym_DOLLAR] = ACTIONS(12021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12019), + [anon_sym_BSLASHbegin] = ACTIONS(12021), + [anon_sym_BSLASHcaption] = ACTIONS(12021), + [anon_sym_BSLASHcite] = ACTIONS(12021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCite] = ACTIONS(12021), + [anon_sym_BSLASHnocite] = ACTIONS(12021), + [anon_sym_BSLASHcitet] = ACTIONS(12021), + [anon_sym_BSLASHcitep] = ACTIONS(12021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteauthor] = ACTIONS(12021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitetitle] = ACTIONS(12021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteyear] = ACTIONS(12021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitedate] = ACTIONS(12021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteurl] = ACTIONS(12021), + [anon_sym_BSLASHfullcite] = ACTIONS(12021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12021), + [anon_sym_BSLASHcitealt] = ACTIONS(12021), + [anon_sym_BSLASHcitealp] = ACTIONS(12021), + [anon_sym_BSLASHcitetext] = ACTIONS(12021), + [anon_sym_BSLASHparencite] = ACTIONS(12021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHParencite] = ACTIONS(12021), + [anon_sym_BSLASHfootcite] = ACTIONS(12021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12021), + [anon_sym_BSLASHtextcite] = ACTIONS(12021), + [anon_sym_BSLASHTextcite] = ACTIONS(12021), + [anon_sym_BSLASHsmartcite] = ACTIONS(12021), + [anon_sym_BSLASHSmartcite] = ACTIONS(12021), + [anon_sym_BSLASHsupercite] = ACTIONS(12021), + [anon_sym_BSLASHautocite] = ACTIONS(12021), + [anon_sym_BSLASHAutocite] = ACTIONS(12021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHvolcite] = ACTIONS(12021), + [anon_sym_BSLASHVolcite] = ACTIONS(12021), + [anon_sym_BSLASHpvolcite] = ACTIONS(12021), + [anon_sym_BSLASHPvolcite] = ACTIONS(12021), + [anon_sym_BSLASHfvolcite] = ACTIONS(12021), + [anon_sym_BSLASHftvolcite] = ACTIONS(12021), + [anon_sym_BSLASHsvolcite] = ACTIONS(12021), + [anon_sym_BSLASHSvolcite] = ACTIONS(12021), + [anon_sym_BSLASHtvolcite] = ACTIONS(12021), + [anon_sym_BSLASHTvolcite] = ACTIONS(12021), + [anon_sym_BSLASHavolcite] = ACTIONS(12021), + [anon_sym_BSLASHAvolcite] = ACTIONS(12021), + [anon_sym_BSLASHnotecite] = ACTIONS(12021), + [anon_sym_BSLASHpnotecite] = ACTIONS(12021), + [anon_sym_BSLASHPnotecite] = ACTIONS(12021), + [anon_sym_BSLASHfnotecite] = ACTIONS(12021), + [anon_sym_BSLASHusepackage] = ACTIONS(12021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12021), + [anon_sym_BSLASHinclude] = ACTIONS(12021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12021), + [anon_sym_BSLASHinput] = ACTIONS(12021), + [anon_sym_BSLASHsubfile] = ACTIONS(12021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12021), + [anon_sym_BSLASHbibliography] = ACTIONS(12021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12021), + [anon_sym_BSLASHincludesvg] = ACTIONS(12021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12021), + [anon_sym_BSLASHimport] = ACTIONS(12021), + [anon_sym_BSLASHsubimport] = ACTIONS(12021), + [anon_sym_BSLASHinputfrom] = ACTIONS(12021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12021), + [anon_sym_BSLASHincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHlabel] = ACTIONS(12021), + [anon_sym_BSLASHref] = ACTIONS(12021), + [anon_sym_BSLASHvref] = ACTIONS(12021), + [anon_sym_BSLASHVref] = ACTIONS(12021), + [anon_sym_BSLASHautoref] = ACTIONS(12021), + [anon_sym_BSLASHpageref] = ACTIONS(12021), + [anon_sym_BSLASHcref] = ACTIONS(12021), + [anon_sym_BSLASHCref] = ACTIONS(12021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnameCref] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHlabelcref] = ACTIONS(12021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12021), + [anon_sym_BSLASHeqref] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange] = ACTIONS(12021), + [anon_sym_BSLASHCrefrange] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewlabel] = ACTIONS(12021), + [anon_sym_BSLASHnewcommand] = ACTIONS(12021), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12021), + [anon_sym_BSLASHgls] = ACTIONS(12021), + [anon_sym_BSLASHGls] = ACTIONS(12021), + [anon_sym_BSLASHGLS] = ACTIONS(12021), + [anon_sym_BSLASHglspl] = ACTIONS(12021), + [anon_sym_BSLASHGlspl] = ACTIONS(12021), + [anon_sym_BSLASHGLSpl] = ACTIONS(12021), + [anon_sym_BSLASHglsdisp] = ACTIONS(12021), + [anon_sym_BSLASHglslink] = ACTIONS(12021), + [anon_sym_BSLASHglstext] = ACTIONS(12021), + [anon_sym_BSLASHGlstext] = ACTIONS(12021), + [anon_sym_BSLASHGLStext] = ACTIONS(12021), + [anon_sym_BSLASHglsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12021), + [anon_sym_BSLASHglsplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSplural] = ACTIONS(12021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHglsname] = ACTIONS(12021), + [anon_sym_BSLASHGlsname] = ACTIONS(12021), + [anon_sym_BSLASHGLSname] = ACTIONS(12021), + [anon_sym_BSLASHglssymbol] = ACTIONS(12021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12021), + [anon_sym_BSLASHglsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12021), + [anon_sym_BSLASHglsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12021), + [anon_sym_BSLASHglsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12021), + [anon_sym_BSLASHglsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12021), + [anon_sym_BSLASHglsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12021), + [anon_sym_BSLASHnewacronym] = ACTIONS(12021), + [anon_sym_BSLASHacrshort] = ACTIONS(12021), + [anon_sym_BSLASHAcrshort] = ACTIONS(12021), + [anon_sym_BSLASHACRshort] = ACTIONS(12021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12021), + [anon_sym_BSLASHacrlong] = ACTIONS(12021), + [anon_sym_BSLASHAcrlong] = ACTIONS(12021), + [anon_sym_BSLASHACRlong] = ACTIONS(12021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12021), + [anon_sym_BSLASHacrfull] = ACTIONS(12021), + [anon_sym_BSLASHAcrfull] = ACTIONS(12021), + [anon_sym_BSLASHACRfull] = ACTIONS(12021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12021), + [anon_sym_BSLASHacs] = ACTIONS(12021), + [anon_sym_BSLASHAcs] = ACTIONS(12021), + [anon_sym_BSLASHacsp] = ACTIONS(12021), + [anon_sym_BSLASHAcsp] = ACTIONS(12021), + [anon_sym_BSLASHacl] = ACTIONS(12021), + [anon_sym_BSLASHAcl] = ACTIONS(12021), + [anon_sym_BSLASHaclp] = ACTIONS(12021), + [anon_sym_BSLASHAclp] = ACTIONS(12021), + [anon_sym_BSLASHacf] = ACTIONS(12021), + [anon_sym_BSLASHAcf] = ACTIONS(12021), + [anon_sym_BSLASHacfp] = ACTIONS(12021), + [anon_sym_BSLASHAcfp] = ACTIONS(12021), + [anon_sym_BSLASHac] = ACTIONS(12021), + [anon_sym_BSLASHAc] = ACTIONS(12021), + [anon_sym_BSLASHacp] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12021), + [anon_sym_BSLASHcolor] = ACTIONS(12021), + [anon_sym_BSLASHcolorbox] = ACTIONS(12021), + [anon_sym_BSLASHtextcolor] = ACTIONS(12021), + [anon_sym_BSLASHpagecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12021), + }, + [645] = { + [sym__text_fragment] = STATE(644), + [aux_sym_text_repeat1] = STATE(644), + [sym_generic_command_name] = ACTIONS(12015), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12015), + [aux_sym_subsection_token1] = ACTIONS(12015), + [aux_sym_subsubsection_token1] = ACTIONS(12015), + [aux_sym_paragraph_token1] = ACTIONS(12015), + [aux_sym_subparagraph_token1] = ACTIONS(12015), + [anon_sym_BSLASHitem] = ACTIONS(12015), + [anon_sym_LBRACK] = ACTIONS(12013), + [anon_sym_RBRACK] = ACTIONS(12013), + [anon_sym_LBRACE] = ACTIONS(12013), + [anon_sym_RBRACE] = ACTIONS(12013), + [anon_sym_LPAREN] = ACTIONS(12013), + [anon_sym_COMMA] = ACTIONS(12643), + [anon_sym_EQ] = ACTIONS(12643), + [sym_word] = ACTIONS(12643), + [sym_param] = ACTIONS(12013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12013), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12013), + [anon_sym_DOLLAR] = ACTIONS(12015), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12013), + [anon_sym_BSLASHbegin] = ACTIONS(12015), + [anon_sym_BSLASHcaption] = ACTIONS(12015), + [anon_sym_BSLASHcite] = ACTIONS(12015), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCite] = ACTIONS(12015), + [anon_sym_BSLASHnocite] = ACTIONS(12015), + [anon_sym_BSLASHcitet] = ACTIONS(12015), + [anon_sym_BSLASHcitep] = ACTIONS(12015), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteauthor] = ACTIONS(12015), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12015), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitetitle] = ACTIONS(12015), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteyear] = ACTIONS(12015), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitedate] = ACTIONS(12015), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteurl] = ACTIONS(12015), + [anon_sym_BSLASHfullcite] = ACTIONS(12015), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12015), + [anon_sym_BSLASHcitealt] = ACTIONS(12015), + [anon_sym_BSLASHcitealp] = ACTIONS(12015), + [anon_sym_BSLASHcitetext] = ACTIONS(12015), + [anon_sym_BSLASHparencite] = ACTIONS(12015), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHParencite] = ACTIONS(12015), + [anon_sym_BSLASHfootcite] = ACTIONS(12015), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12015), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12015), + [anon_sym_BSLASHtextcite] = ACTIONS(12015), + [anon_sym_BSLASHTextcite] = ACTIONS(12015), + [anon_sym_BSLASHsmartcite] = ACTIONS(12015), + [anon_sym_BSLASHSmartcite] = ACTIONS(12015), + [anon_sym_BSLASHsupercite] = ACTIONS(12015), + [anon_sym_BSLASHautocite] = ACTIONS(12015), + [anon_sym_BSLASHAutocite] = ACTIONS(12015), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHvolcite] = ACTIONS(12015), + [anon_sym_BSLASHVolcite] = ACTIONS(12015), + [anon_sym_BSLASHpvolcite] = ACTIONS(12015), + [anon_sym_BSLASHPvolcite] = ACTIONS(12015), + [anon_sym_BSLASHfvolcite] = ACTIONS(12015), + [anon_sym_BSLASHftvolcite] = ACTIONS(12015), + [anon_sym_BSLASHsvolcite] = ACTIONS(12015), + [anon_sym_BSLASHSvolcite] = ACTIONS(12015), + [anon_sym_BSLASHtvolcite] = ACTIONS(12015), + [anon_sym_BSLASHTvolcite] = ACTIONS(12015), + [anon_sym_BSLASHavolcite] = ACTIONS(12015), + [anon_sym_BSLASHAvolcite] = ACTIONS(12015), + [anon_sym_BSLASHnotecite] = ACTIONS(12015), + [anon_sym_BSLASHpnotecite] = ACTIONS(12015), + [anon_sym_BSLASHPnotecite] = ACTIONS(12015), + [anon_sym_BSLASHfnotecite] = ACTIONS(12015), + [anon_sym_BSLASHusepackage] = ACTIONS(12015), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12015), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12015), + [anon_sym_BSLASHinclude] = ACTIONS(12015), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12015), + [anon_sym_BSLASHinput] = ACTIONS(12015), + [anon_sym_BSLASHsubfile] = ACTIONS(12015), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12015), + [anon_sym_BSLASHbibliography] = ACTIONS(12015), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12015), + [anon_sym_BSLASHincludesvg] = ACTIONS(12015), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12015), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12015), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12015), + [anon_sym_BSLASHimport] = ACTIONS(12015), + [anon_sym_BSLASHsubimport] = ACTIONS(12015), + [anon_sym_BSLASHinputfrom] = ACTIONS(12015), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12015), + [anon_sym_BSLASHincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHlabel] = ACTIONS(12015), + [anon_sym_BSLASHref] = ACTIONS(12015), + [anon_sym_BSLASHvref] = ACTIONS(12015), + [anon_sym_BSLASHVref] = ACTIONS(12015), + [anon_sym_BSLASHautoref] = ACTIONS(12015), + [anon_sym_BSLASHpageref] = ACTIONS(12015), + [anon_sym_BSLASHcref] = ACTIONS(12015), + [anon_sym_BSLASHCref] = ACTIONS(12015), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnameCref] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHlabelcref] = ACTIONS(12015), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12015), + [anon_sym_BSLASHeqref] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange] = ACTIONS(12015), + [anon_sym_BSLASHCrefrange] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewlabel] = ACTIONS(12015), + [anon_sym_BSLASHnewcommand] = ACTIONS(12015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12015), + [anon_sym_BSLASHgls] = ACTIONS(12015), + [anon_sym_BSLASHGls] = ACTIONS(12015), + [anon_sym_BSLASHGLS] = ACTIONS(12015), + [anon_sym_BSLASHglspl] = ACTIONS(12015), + [anon_sym_BSLASHGlspl] = ACTIONS(12015), + [anon_sym_BSLASHGLSpl] = ACTIONS(12015), + [anon_sym_BSLASHglsdisp] = ACTIONS(12015), + [anon_sym_BSLASHglslink] = ACTIONS(12015), + [anon_sym_BSLASHglstext] = ACTIONS(12015), + [anon_sym_BSLASHGlstext] = ACTIONS(12015), + [anon_sym_BSLASHGLStext] = ACTIONS(12015), + [anon_sym_BSLASHglsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12015), + [anon_sym_BSLASHglsplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSplural] = ACTIONS(12015), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHglsname] = ACTIONS(12015), + [anon_sym_BSLASHGlsname] = ACTIONS(12015), + [anon_sym_BSLASHGLSname] = ACTIONS(12015), + [anon_sym_BSLASHglssymbol] = ACTIONS(12015), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12015), + [anon_sym_BSLASHglsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12015), + [anon_sym_BSLASHglsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12015), + [anon_sym_BSLASHglsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12015), + [anon_sym_BSLASHglsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12015), + [anon_sym_BSLASHglsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12015), + [anon_sym_BSLASHnewacronym] = ACTIONS(12015), + [anon_sym_BSLASHacrshort] = ACTIONS(12015), + [anon_sym_BSLASHAcrshort] = ACTIONS(12015), + [anon_sym_BSLASHACRshort] = ACTIONS(12015), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12015), + [anon_sym_BSLASHacrlong] = ACTIONS(12015), + [anon_sym_BSLASHAcrlong] = ACTIONS(12015), + [anon_sym_BSLASHACRlong] = ACTIONS(12015), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12015), + [anon_sym_BSLASHacrfull] = ACTIONS(12015), + [anon_sym_BSLASHAcrfull] = ACTIONS(12015), + [anon_sym_BSLASHACRfull] = ACTIONS(12015), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12015), + [anon_sym_BSLASHacs] = ACTIONS(12015), + [anon_sym_BSLASHAcs] = ACTIONS(12015), + [anon_sym_BSLASHacsp] = ACTIONS(12015), + [anon_sym_BSLASHAcsp] = ACTIONS(12015), + [anon_sym_BSLASHacl] = ACTIONS(12015), + [anon_sym_BSLASHAcl] = ACTIONS(12015), + [anon_sym_BSLASHaclp] = ACTIONS(12015), + [anon_sym_BSLASHAclp] = ACTIONS(12015), + [anon_sym_BSLASHacf] = ACTIONS(12015), + [anon_sym_BSLASHAcf] = ACTIONS(12015), + [anon_sym_BSLASHacfp] = ACTIONS(12015), + [anon_sym_BSLASHAcfp] = ACTIONS(12015), + [anon_sym_BSLASHac] = ACTIONS(12015), + [anon_sym_BSLASHAc] = ACTIONS(12015), + [anon_sym_BSLASHacp] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12015), + [anon_sym_BSLASHcolor] = ACTIONS(12015), + [anon_sym_BSLASHcolorbox] = ACTIONS(12015), + [anon_sym_BSLASHtextcolor] = ACTIONS(12015), + [anon_sym_BSLASHpagecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12015), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12015), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12015), + }, + [646] = { + [sym_generic_command_name] = ACTIONS(12613), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12613), + [aux_sym_chapter_token1] = ACTIONS(12613), + [aux_sym_section_token1] = ACTIONS(12613), + [aux_sym_subsection_token1] = ACTIONS(12613), + [aux_sym_subsubsection_token1] = ACTIONS(12613), + [aux_sym_paragraph_token1] = ACTIONS(12613), + [aux_sym_subparagraph_token1] = ACTIONS(12613), + [anon_sym_BSLASHitem] = ACTIONS(12613), + [anon_sym_LBRACK] = ACTIONS(12615), + [anon_sym_RBRACK] = ACTIONS(12645), + [anon_sym_LBRACE] = ACTIONS(12615), + [anon_sym_LPAREN] = ACTIONS(12615), + [anon_sym_RPAREN] = ACTIONS(12615), + [anon_sym_COMMA] = ACTIONS(12615), + [anon_sym_EQ] = ACTIONS(12615), + [sym_word] = ACTIONS(12615), + [sym_param] = ACTIONS(12615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12615), + [anon_sym_DOLLAR] = ACTIONS(12613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12615), + [anon_sym_BSLASHbegin] = ACTIONS(12613), + [anon_sym_BSLASHcaption] = ACTIONS(12613), + [anon_sym_BSLASHcite] = ACTIONS(12613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCite] = ACTIONS(12613), + [anon_sym_BSLASHnocite] = ACTIONS(12613), + [anon_sym_BSLASHcitet] = ACTIONS(12613), + [anon_sym_BSLASHcitep] = ACTIONS(12613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteauthor] = ACTIONS(12613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitetitle] = ACTIONS(12613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteyear] = ACTIONS(12613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitedate] = ACTIONS(12613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteurl] = ACTIONS(12613), + [anon_sym_BSLASHfullcite] = ACTIONS(12613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12613), + [anon_sym_BSLASHcitealt] = ACTIONS(12613), + [anon_sym_BSLASHcitealp] = ACTIONS(12613), + [anon_sym_BSLASHcitetext] = ACTIONS(12613), + [anon_sym_BSLASHparencite] = ACTIONS(12613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHParencite] = ACTIONS(12613), + [anon_sym_BSLASHfootcite] = ACTIONS(12613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12613), + [anon_sym_BSLASHtextcite] = ACTIONS(12613), + [anon_sym_BSLASHTextcite] = ACTIONS(12613), + [anon_sym_BSLASHsmartcite] = ACTIONS(12613), + [anon_sym_BSLASHSmartcite] = ACTIONS(12613), + [anon_sym_BSLASHsupercite] = ACTIONS(12613), + [anon_sym_BSLASHautocite] = ACTIONS(12613), + [anon_sym_BSLASHAutocite] = ACTIONS(12613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHvolcite] = ACTIONS(12613), + [anon_sym_BSLASHVolcite] = ACTIONS(12613), + [anon_sym_BSLASHpvolcite] = ACTIONS(12613), + [anon_sym_BSLASHPvolcite] = ACTIONS(12613), + [anon_sym_BSLASHfvolcite] = ACTIONS(12613), + [anon_sym_BSLASHftvolcite] = ACTIONS(12613), + [anon_sym_BSLASHsvolcite] = ACTIONS(12613), + [anon_sym_BSLASHSvolcite] = ACTIONS(12613), + [anon_sym_BSLASHtvolcite] = ACTIONS(12613), + [anon_sym_BSLASHTvolcite] = ACTIONS(12613), + [anon_sym_BSLASHavolcite] = ACTIONS(12613), + [anon_sym_BSLASHAvolcite] = ACTIONS(12613), + [anon_sym_BSLASHnotecite] = ACTIONS(12613), + [anon_sym_BSLASHpnotecite] = ACTIONS(12613), + [anon_sym_BSLASHPnotecite] = ACTIONS(12613), + [anon_sym_BSLASHfnotecite] = ACTIONS(12613), + [anon_sym_BSLASHusepackage] = ACTIONS(12613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12613), + [anon_sym_BSLASHinclude] = ACTIONS(12613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12613), + [anon_sym_BSLASHinput] = ACTIONS(12613), + [anon_sym_BSLASHsubfile] = ACTIONS(12613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12613), + [anon_sym_BSLASHbibliography] = ACTIONS(12613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12613), + [anon_sym_BSLASHincludesvg] = ACTIONS(12613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12613), + [anon_sym_BSLASHimport] = ACTIONS(12613), + [anon_sym_BSLASHsubimport] = ACTIONS(12613), + [anon_sym_BSLASHinputfrom] = ACTIONS(12613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12613), + [anon_sym_BSLASHincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHlabel] = ACTIONS(12613), + [anon_sym_BSLASHref] = ACTIONS(12613), + [anon_sym_BSLASHvref] = ACTIONS(12613), + [anon_sym_BSLASHVref] = ACTIONS(12613), + [anon_sym_BSLASHautoref] = ACTIONS(12613), + [anon_sym_BSLASHpageref] = ACTIONS(12613), + [anon_sym_BSLASHcref] = ACTIONS(12613), + [anon_sym_BSLASHCref] = ACTIONS(12613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnameCref] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHlabelcref] = ACTIONS(12613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12613), + [anon_sym_BSLASHeqref] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange] = ACTIONS(12613), + [anon_sym_BSLASHCrefrange] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewlabel] = ACTIONS(12613), + [anon_sym_BSLASHnewcommand] = ACTIONS(12613), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12613), + [anon_sym_BSLASHgls] = ACTIONS(12613), + [anon_sym_BSLASHGls] = ACTIONS(12613), + [anon_sym_BSLASHGLS] = ACTIONS(12613), + [anon_sym_BSLASHglspl] = ACTIONS(12613), + [anon_sym_BSLASHGlspl] = ACTIONS(12613), + [anon_sym_BSLASHGLSpl] = ACTIONS(12613), + [anon_sym_BSLASHglsdisp] = ACTIONS(12613), + [anon_sym_BSLASHglslink] = ACTIONS(12613), + [anon_sym_BSLASHglstext] = ACTIONS(12613), + [anon_sym_BSLASHGlstext] = ACTIONS(12613), + [anon_sym_BSLASHGLStext] = ACTIONS(12613), + [anon_sym_BSLASHglsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12613), + [anon_sym_BSLASHglsplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSplural] = ACTIONS(12613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHglsname] = ACTIONS(12613), + [anon_sym_BSLASHGlsname] = ACTIONS(12613), + [anon_sym_BSLASHGLSname] = ACTIONS(12613), + [anon_sym_BSLASHglssymbol] = ACTIONS(12613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12613), + [anon_sym_BSLASHglsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12613), + [anon_sym_BSLASHglsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12613), + [anon_sym_BSLASHglsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12613), + [anon_sym_BSLASHglsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12613), + [anon_sym_BSLASHglsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12613), + [anon_sym_BSLASHnewacronym] = ACTIONS(12613), + [anon_sym_BSLASHacrshort] = ACTIONS(12613), + [anon_sym_BSLASHAcrshort] = ACTIONS(12613), + [anon_sym_BSLASHACRshort] = ACTIONS(12613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12613), + [anon_sym_BSLASHacrlong] = ACTIONS(12613), + [anon_sym_BSLASHAcrlong] = ACTIONS(12613), + [anon_sym_BSLASHACRlong] = ACTIONS(12613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12613), + [anon_sym_BSLASHacrfull] = ACTIONS(12613), + [anon_sym_BSLASHAcrfull] = ACTIONS(12613), + [anon_sym_BSLASHACRfull] = ACTIONS(12613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12613), + [anon_sym_BSLASHacs] = ACTIONS(12613), + [anon_sym_BSLASHAcs] = ACTIONS(12613), + [anon_sym_BSLASHacsp] = ACTIONS(12613), + [anon_sym_BSLASHAcsp] = ACTIONS(12613), + [anon_sym_BSLASHacl] = ACTIONS(12613), + [anon_sym_BSLASHAcl] = ACTIONS(12613), + [anon_sym_BSLASHaclp] = ACTIONS(12613), + [anon_sym_BSLASHAclp] = ACTIONS(12613), + [anon_sym_BSLASHacf] = ACTIONS(12613), + [anon_sym_BSLASHAcf] = ACTIONS(12613), + [anon_sym_BSLASHacfp] = ACTIONS(12613), + [anon_sym_BSLASHAcfp] = ACTIONS(12613), + [anon_sym_BSLASHac] = ACTIONS(12613), + [anon_sym_BSLASHAc] = ACTIONS(12613), + [anon_sym_BSLASHacp] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12613), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12613), + [anon_sym_BSLASHcolor] = ACTIONS(12613), + [anon_sym_BSLASHcolorbox] = ACTIONS(12613), + [anon_sym_BSLASHtextcolor] = ACTIONS(12613), + [anon_sym_BSLASHpagecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12613), + }, + [647] = { + [sym_generic_command_name] = ACTIONS(12613), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12613), + [aux_sym_chapter_token1] = ACTIONS(12613), + [aux_sym_section_token1] = ACTIONS(12613), + [aux_sym_subsection_token1] = ACTIONS(12613), + [aux_sym_subsubsection_token1] = ACTIONS(12613), + [aux_sym_paragraph_token1] = ACTIONS(12613), + [aux_sym_subparagraph_token1] = ACTIONS(12613), + [anon_sym_BSLASHitem] = ACTIONS(12613), + [anon_sym_LBRACK] = ACTIONS(12615), + [anon_sym_RBRACK] = ACTIONS(12647), + [anon_sym_LBRACE] = ACTIONS(12615), + [anon_sym_LPAREN] = ACTIONS(12615), + [anon_sym_RPAREN] = ACTIONS(12615), + [anon_sym_COMMA] = ACTIONS(12615), + [anon_sym_EQ] = ACTIONS(12615), + [sym_word] = ACTIONS(12615), + [sym_param] = ACTIONS(12615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12615), + [anon_sym_DOLLAR] = ACTIONS(12613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12615), + [anon_sym_BSLASHbegin] = ACTIONS(12613), + [anon_sym_BSLASHcaption] = ACTIONS(12613), + [anon_sym_BSLASHcite] = ACTIONS(12613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCite] = ACTIONS(12613), + [anon_sym_BSLASHnocite] = ACTIONS(12613), + [anon_sym_BSLASHcitet] = ACTIONS(12613), + [anon_sym_BSLASHcitep] = ACTIONS(12613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteauthor] = ACTIONS(12613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitetitle] = ACTIONS(12613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteyear] = ACTIONS(12613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitedate] = ACTIONS(12613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteurl] = ACTIONS(12613), + [anon_sym_BSLASHfullcite] = ACTIONS(12613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12613), + [anon_sym_BSLASHcitealt] = ACTIONS(12613), + [anon_sym_BSLASHcitealp] = ACTIONS(12613), + [anon_sym_BSLASHcitetext] = ACTIONS(12613), + [anon_sym_BSLASHparencite] = ACTIONS(12613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHParencite] = ACTIONS(12613), + [anon_sym_BSLASHfootcite] = ACTIONS(12613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12613), + [anon_sym_BSLASHtextcite] = ACTIONS(12613), + [anon_sym_BSLASHTextcite] = ACTIONS(12613), + [anon_sym_BSLASHsmartcite] = ACTIONS(12613), + [anon_sym_BSLASHSmartcite] = ACTIONS(12613), + [anon_sym_BSLASHsupercite] = ACTIONS(12613), + [anon_sym_BSLASHautocite] = ACTIONS(12613), + [anon_sym_BSLASHAutocite] = ACTIONS(12613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHvolcite] = ACTIONS(12613), + [anon_sym_BSLASHVolcite] = ACTIONS(12613), + [anon_sym_BSLASHpvolcite] = ACTIONS(12613), + [anon_sym_BSLASHPvolcite] = ACTIONS(12613), + [anon_sym_BSLASHfvolcite] = ACTIONS(12613), + [anon_sym_BSLASHftvolcite] = ACTIONS(12613), + [anon_sym_BSLASHsvolcite] = ACTIONS(12613), + [anon_sym_BSLASHSvolcite] = ACTIONS(12613), + [anon_sym_BSLASHtvolcite] = ACTIONS(12613), + [anon_sym_BSLASHTvolcite] = ACTIONS(12613), + [anon_sym_BSLASHavolcite] = ACTIONS(12613), + [anon_sym_BSLASHAvolcite] = ACTIONS(12613), + [anon_sym_BSLASHnotecite] = ACTIONS(12613), + [anon_sym_BSLASHpnotecite] = ACTIONS(12613), + [anon_sym_BSLASHPnotecite] = ACTIONS(12613), + [anon_sym_BSLASHfnotecite] = ACTIONS(12613), + [anon_sym_BSLASHusepackage] = ACTIONS(12613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12613), + [anon_sym_BSLASHinclude] = ACTIONS(12613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12613), + [anon_sym_BSLASHinput] = ACTIONS(12613), + [anon_sym_BSLASHsubfile] = ACTIONS(12613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12613), + [anon_sym_BSLASHbibliography] = ACTIONS(12613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12613), + [anon_sym_BSLASHincludesvg] = ACTIONS(12613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12613), + [anon_sym_BSLASHimport] = ACTIONS(12613), + [anon_sym_BSLASHsubimport] = ACTIONS(12613), + [anon_sym_BSLASHinputfrom] = ACTIONS(12613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12613), + [anon_sym_BSLASHincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHlabel] = ACTIONS(12613), + [anon_sym_BSLASHref] = ACTIONS(12613), + [anon_sym_BSLASHvref] = ACTIONS(12613), + [anon_sym_BSLASHVref] = ACTIONS(12613), + [anon_sym_BSLASHautoref] = ACTIONS(12613), + [anon_sym_BSLASHpageref] = ACTIONS(12613), + [anon_sym_BSLASHcref] = ACTIONS(12613), + [anon_sym_BSLASHCref] = ACTIONS(12613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnameCref] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHlabelcref] = ACTIONS(12613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12613), + [anon_sym_BSLASHeqref] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange] = ACTIONS(12613), + [anon_sym_BSLASHCrefrange] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewlabel] = ACTIONS(12613), + [anon_sym_BSLASHnewcommand] = ACTIONS(12613), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12613), + [anon_sym_BSLASHgls] = ACTIONS(12613), + [anon_sym_BSLASHGls] = ACTIONS(12613), + [anon_sym_BSLASHGLS] = ACTIONS(12613), + [anon_sym_BSLASHglspl] = ACTIONS(12613), + [anon_sym_BSLASHGlspl] = ACTIONS(12613), + [anon_sym_BSLASHGLSpl] = ACTIONS(12613), + [anon_sym_BSLASHglsdisp] = ACTIONS(12613), + [anon_sym_BSLASHglslink] = ACTIONS(12613), + [anon_sym_BSLASHglstext] = ACTIONS(12613), + [anon_sym_BSLASHGlstext] = ACTIONS(12613), + [anon_sym_BSLASHGLStext] = ACTIONS(12613), + [anon_sym_BSLASHglsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12613), + [anon_sym_BSLASHglsplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSplural] = ACTIONS(12613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHglsname] = ACTIONS(12613), + [anon_sym_BSLASHGlsname] = ACTIONS(12613), + [anon_sym_BSLASHGLSname] = ACTIONS(12613), + [anon_sym_BSLASHglssymbol] = ACTIONS(12613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12613), + [anon_sym_BSLASHglsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12613), + [anon_sym_BSLASHglsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12613), + [anon_sym_BSLASHglsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12613), + [anon_sym_BSLASHglsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12613), + [anon_sym_BSLASHglsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12613), + [anon_sym_BSLASHnewacronym] = ACTIONS(12613), + [anon_sym_BSLASHacrshort] = ACTIONS(12613), + [anon_sym_BSLASHAcrshort] = ACTIONS(12613), + [anon_sym_BSLASHACRshort] = ACTIONS(12613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12613), + [anon_sym_BSLASHacrlong] = ACTIONS(12613), + [anon_sym_BSLASHAcrlong] = ACTIONS(12613), + [anon_sym_BSLASHACRlong] = ACTIONS(12613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12613), + [anon_sym_BSLASHacrfull] = ACTIONS(12613), + [anon_sym_BSLASHAcrfull] = ACTIONS(12613), + [anon_sym_BSLASHACRfull] = ACTIONS(12613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12613), + [anon_sym_BSLASHacs] = ACTIONS(12613), + [anon_sym_BSLASHAcs] = ACTIONS(12613), + [anon_sym_BSLASHacsp] = ACTIONS(12613), + [anon_sym_BSLASHAcsp] = ACTIONS(12613), + [anon_sym_BSLASHacl] = ACTIONS(12613), + [anon_sym_BSLASHAcl] = ACTIONS(12613), + [anon_sym_BSLASHaclp] = ACTIONS(12613), + [anon_sym_BSLASHAclp] = ACTIONS(12613), + [anon_sym_BSLASHacf] = ACTIONS(12613), + [anon_sym_BSLASHAcf] = ACTIONS(12613), + [anon_sym_BSLASHacfp] = ACTIONS(12613), + [anon_sym_BSLASHAcfp] = ACTIONS(12613), + [anon_sym_BSLASHac] = ACTIONS(12613), + [anon_sym_BSLASHAc] = ACTIONS(12613), + [anon_sym_BSLASHacp] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12613), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12613), + [anon_sym_BSLASHcolor] = ACTIONS(12613), + [anon_sym_BSLASHcolorbox] = ACTIONS(12613), + [anon_sym_BSLASHtextcolor] = ACTIONS(12613), + [anon_sym_BSLASHpagecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12613), + }, + [648] = { + [sym_brace_group] = STATE(3230), + [sym_generic_command_name] = ACTIONS(12100), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12100), + [aux_sym_section_token1] = ACTIONS(12100), + [aux_sym_subsection_token1] = ACTIONS(12100), + [aux_sym_subsubsection_token1] = ACTIONS(12100), + [aux_sym_paragraph_token1] = ACTIONS(12100), + [aux_sym_subparagraph_token1] = ACTIONS(12100), + [anon_sym_BSLASHitem] = ACTIONS(12100), + [anon_sym_LBRACK] = ACTIONS(12098), + [anon_sym_RBRACK] = ACTIONS(12098), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12098), + [anon_sym_LPAREN] = ACTIONS(12098), + [anon_sym_COMMA] = ACTIONS(12098), + [anon_sym_EQ] = ACTIONS(12098), + [sym_word] = ACTIONS(12098), + [sym_param] = ACTIONS(12098), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12098), + [anon_sym_DOLLAR] = ACTIONS(12100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12098), + [anon_sym_BSLASHbegin] = ACTIONS(12100), + [anon_sym_BSLASHcaption] = ACTIONS(12100), + [anon_sym_BSLASHcite] = ACTIONS(12100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCite] = ACTIONS(12100), + [anon_sym_BSLASHnocite] = ACTIONS(12100), + [anon_sym_BSLASHcitet] = ACTIONS(12100), + [anon_sym_BSLASHcitep] = ACTIONS(12100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteauthor] = ACTIONS(12100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitetitle] = ACTIONS(12100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteyear] = ACTIONS(12100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitedate] = ACTIONS(12100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteurl] = ACTIONS(12100), + [anon_sym_BSLASHfullcite] = ACTIONS(12100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12100), + [anon_sym_BSLASHcitealt] = ACTIONS(12100), + [anon_sym_BSLASHcitealp] = ACTIONS(12100), + [anon_sym_BSLASHcitetext] = ACTIONS(12100), + [anon_sym_BSLASHparencite] = ACTIONS(12100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHParencite] = ACTIONS(12100), + [anon_sym_BSLASHfootcite] = ACTIONS(12100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12100), + [anon_sym_BSLASHtextcite] = ACTIONS(12100), + [anon_sym_BSLASHTextcite] = ACTIONS(12100), + [anon_sym_BSLASHsmartcite] = ACTIONS(12100), + [anon_sym_BSLASHSmartcite] = ACTIONS(12100), + [anon_sym_BSLASHsupercite] = ACTIONS(12100), + [anon_sym_BSLASHautocite] = ACTIONS(12100), + [anon_sym_BSLASHAutocite] = ACTIONS(12100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHvolcite] = ACTIONS(12100), + [anon_sym_BSLASHVolcite] = ACTIONS(12100), + [anon_sym_BSLASHpvolcite] = ACTIONS(12100), + [anon_sym_BSLASHPvolcite] = ACTIONS(12100), + [anon_sym_BSLASHfvolcite] = ACTIONS(12100), + [anon_sym_BSLASHftvolcite] = ACTIONS(12100), + [anon_sym_BSLASHsvolcite] = ACTIONS(12100), + [anon_sym_BSLASHSvolcite] = ACTIONS(12100), + [anon_sym_BSLASHtvolcite] = ACTIONS(12100), + [anon_sym_BSLASHTvolcite] = ACTIONS(12100), + [anon_sym_BSLASHavolcite] = ACTIONS(12100), + [anon_sym_BSLASHAvolcite] = ACTIONS(12100), + [anon_sym_BSLASHnotecite] = ACTIONS(12100), + [anon_sym_BSLASHpnotecite] = ACTIONS(12100), + [anon_sym_BSLASHPnotecite] = ACTIONS(12100), + [anon_sym_BSLASHfnotecite] = ACTIONS(12100), + [anon_sym_BSLASHusepackage] = ACTIONS(12100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12100), + [anon_sym_BSLASHinclude] = ACTIONS(12100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12100), + [anon_sym_BSLASHinput] = ACTIONS(12100), + [anon_sym_BSLASHsubfile] = ACTIONS(12100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12100), + [anon_sym_BSLASHbibliography] = ACTIONS(12100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12100), + [anon_sym_BSLASHincludesvg] = ACTIONS(12100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12100), + [anon_sym_BSLASHimport] = ACTIONS(12100), + [anon_sym_BSLASHsubimport] = ACTIONS(12100), + [anon_sym_BSLASHinputfrom] = ACTIONS(12100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12100), + [anon_sym_BSLASHincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHlabel] = ACTIONS(12100), + [anon_sym_BSLASHref] = ACTIONS(12100), + [anon_sym_BSLASHvref] = ACTIONS(12100), + [anon_sym_BSLASHVref] = ACTIONS(12100), + [anon_sym_BSLASHautoref] = ACTIONS(12100), + [anon_sym_BSLASHpageref] = ACTIONS(12100), + [anon_sym_BSLASHcref] = ACTIONS(12100), + [anon_sym_BSLASHCref] = ACTIONS(12100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnameCref] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHlabelcref] = ACTIONS(12100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12100), + [anon_sym_BSLASHeqref] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange] = ACTIONS(12100), + [anon_sym_BSLASHCrefrange] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewlabel] = ACTIONS(12100), + [anon_sym_BSLASHnewcommand] = ACTIONS(12100), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12100), + [anon_sym_BSLASHgls] = ACTIONS(12100), + [anon_sym_BSLASHGls] = ACTIONS(12100), + [anon_sym_BSLASHGLS] = ACTIONS(12100), + [anon_sym_BSLASHglspl] = ACTIONS(12100), + [anon_sym_BSLASHGlspl] = ACTIONS(12100), + [anon_sym_BSLASHGLSpl] = ACTIONS(12100), + [anon_sym_BSLASHglsdisp] = ACTIONS(12100), + [anon_sym_BSLASHglslink] = ACTIONS(12100), + [anon_sym_BSLASHglstext] = ACTIONS(12100), + [anon_sym_BSLASHGlstext] = ACTIONS(12100), + [anon_sym_BSLASHGLStext] = ACTIONS(12100), + [anon_sym_BSLASHglsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12100), + [anon_sym_BSLASHglsplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSplural] = ACTIONS(12100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHglsname] = ACTIONS(12100), + [anon_sym_BSLASHGlsname] = ACTIONS(12100), + [anon_sym_BSLASHGLSname] = ACTIONS(12100), + [anon_sym_BSLASHglssymbol] = ACTIONS(12100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12100), + [anon_sym_BSLASHglsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12100), + [anon_sym_BSLASHglsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12100), + [anon_sym_BSLASHglsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12100), + [anon_sym_BSLASHglsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12100), + [anon_sym_BSLASHglsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12100), + [anon_sym_BSLASHnewacronym] = ACTIONS(12100), + [anon_sym_BSLASHacrshort] = ACTIONS(12100), + [anon_sym_BSLASHAcrshort] = ACTIONS(12100), + [anon_sym_BSLASHACRshort] = ACTIONS(12100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12100), + [anon_sym_BSLASHacrlong] = ACTIONS(12100), + [anon_sym_BSLASHAcrlong] = ACTIONS(12100), + [anon_sym_BSLASHACRlong] = ACTIONS(12100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12100), + [anon_sym_BSLASHacrfull] = ACTIONS(12100), + [anon_sym_BSLASHAcrfull] = ACTIONS(12100), + [anon_sym_BSLASHACRfull] = ACTIONS(12100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12100), + [anon_sym_BSLASHacs] = ACTIONS(12100), + [anon_sym_BSLASHAcs] = ACTIONS(12100), + [anon_sym_BSLASHacsp] = ACTIONS(12100), + [anon_sym_BSLASHAcsp] = ACTIONS(12100), + [anon_sym_BSLASHacl] = ACTIONS(12100), + [anon_sym_BSLASHAcl] = ACTIONS(12100), + [anon_sym_BSLASHaclp] = ACTIONS(12100), + [anon_sym_BSLASHAclp] = ACTIONS(12100), + [anon_sym_BSLASHacf] = ACTIONS(12100), + [anon_sym_BSLASHAcf] = ACTIONS(12100), + [anon_sym_BSLASHacfp] = ACTIONS(12100), + [anon_sym_BSLASHAcfp] = ACTIONS(12100), + [anon_sym_BSLASHac] = ACTIONS(12100), + [anon_sym_BSLASHAc] = ACTIONS(12100), + [anon_sym_BSLASHacp] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12100), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12100), + [anon_sym_BSLASHcolor] = ACTIONS(12100), + [anon_sym_BSLASHcolorbox] = ACTIONS(12100), + [anon_sym_BSLASHtextcolor] = ACTIONS(12100), + [anon_sym_BSLASHpagecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12100), + }, + [649] = { + [sym_generic_command_name] = ACTIONS(12613), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12613), + [aux_sym_chapter_token1] = ACTIONS(12613), + [aux_sym_section_token1] = ACTIONS(12613), + [aux_sym_subsection_token1] = ACTIONS(12613), + [aux_sym_subsubsection_token1] = ACTIONS(12613), + [aux_sym_paragraph_token1] = ACTIONS(12613), + [aux_sym_subparagraph_token1] = ACTIONS(12613), + [anon_sym_BSLASHitem] = ACTIONS(12613), + [anon_sym_LBRACK] = ACTIONS(12615), + [anon_sym_RBRACK] = ACTIONS(12649), + [anon_sym_LBRACE] = ACTIONS(12615), + [anon_sym_LPAREN] = ACTIONS(12615), + [anon_sym_RPAREN] = ACTIONS(12615), + [anon_sym_COMMA] = ACTIONS(12615), + [anon_sym_EQ] = ACTIONS(12615), + [sym_word] = ACTIONS(12615), + [sym_param] = ACTIONS(12615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12615), + [anon_sym_DOLLAR] = ACTIONS(12613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12615), + [anon_sym_BSLASHbegin] = ACTIONS(12613), + [anon_sym_BSLASHcaption] = ACTIONS(12613), + [anon_sym_BSLASHcite] = ACTIONS(12613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCite] = ACTIONS(12613), + [anon_sym_BSLASHnocite] = ACTIONS(12613), + [anon_sym_BSLASHcitet] = ACTIONS(12613), + [anon_sym_BSLASHcitep] = ACTIONS(12613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteauthor] = ACTIONS(12613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitetitle] = ACTIONS(12613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteyear] = ACTIONS(12613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitedate] = ACTIONS(12613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteurl] = ACTIONS(12613), + [anon_sym_BSLASHfullcite] = ACTIONS(12613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12613), + [anon_sym_BSLASHcitealt] = ACTIONS(12613), + [anon_sym_BSLASHcitealp] = ACTIONS(12613), + [anon_sym_BSLASHcitetext] = ACTIONS(12613), + [anon_sym_BSLASHparencite] = ACTIONS(12613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHParencite] = ACTIONS(12613), + [anon_sym_BSLASHfootcite] = ACTIONS(12613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12613), + [anon_sym_BSLASHtextcite] = ACTIONS(12613), + [anon_sym_BSLASHTextcite] = ACTIONS(12613), + [anon_sym_BSLASHsmartcite] = ACTIONS(12613), + [anon_sym_BSLASHSmartcite] = ACTIONS(12613), + [anon_sym_BSLASHsupercite] = ACTIONS(12613), + [anon_sym_BSLASHautocite] = ACTIONS(12613), + [anon_sym_BSLASHAutocite] = ACTIONS(12613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHvolcite] = ACTIONS(12613), + [anon_sym_BSLASHVolcite] = ACTIONS(12613), + [anon_sym_BSLASHpvolcite] = ACTIONS(12613), + [anon_sym_BSLASHPvolcite] = ACTIONS(12613), + [anon_sym_BSLASHfvolcite] = ACTIONS(12613), + [anon_sym_BSLASHftvolcite] = ACTIONS(12613), + [anon_sym_BSLASHsvolcite] = ACTIONS(12613), + [anon_sym_BSLASHSvolcite] = ACTIONS(12613), + [anon_sym_BSLASHtvolcite] = ACTIONS(12613), + [anon_sym_BSLASHTvolcite] = ACTIONS(12613), + [anon_sym_BSLASHavolcite] = ACTIONS(12613), + [anon_sym_BSLASHAvolcite] = ACTIONS(12613), + [anon_sym_BSLASHnotecite] = ACTIONS(12613), + [anon_sym_BSLASHpnotecite] = ACTIONS(12613), + [anon_sym_BSLASHPnotecite] = ACTIONS(12613), + [anon_sym_BSLASHfnotecite] = ACTIONS(12613), + [anon_sym_BSLASHusepackage] = ACTIONS(12613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12613), + [anon_sym_BSLASHinclude] = ACTIONS(12613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12613), + [anon_sym_BSLASHinput] = ACTIONS(12613), + [anon_sym_BSLASHsubfile] = ACTIONS(12613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12613), + [anon_sym_BSLASHbibliography] = ACTIONS(12613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12613), + [anon_sym_BSLASHincludesvg] = ACTIONS(12613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12613), + [anon_sym_BSLASHimport] = ACTIONS(12613), + [anon_sym_BSLASHsubimport] = ACTIONS(12613), + [anon_sym_BSLASHinputfrom] = ACTIONS(12613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12613), + [anon_sym_BSLASHincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHlabel] = ACTIONS(12613), + [anon_sym_BSLASHref] = ACTIONS(12613), + [anon_sym_BSLASHvref] = ACTIONS(12613), + [anon_sym_BSLASHVref] = ACTIONS(12613), + [anon_sym_BSLASHautoref] = ACTIONS(12613), + [anon_sym_BSLASHpageref] = ACTIONS(12613), + [anon_sym_BSLASHcref] = ACTIONS(12613), + [anon_sym_BSLASHCref] = ACTIONS(12613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnameCref] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHlabelcref] = ACTIONS(12613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12613), + [anon_sym_BSLASHeqref] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange] = ACTIONS(12613), + [anon_sym_BSLASHCrefrange] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewlabel] = ACTIONS(12613), + [anon_sym_BSLASHnewcommand] = ACTIONS(12613), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12613), + [anon_sym_BSLASHgls] = ACTIONS(12613), + [anon_sym_BSLASHGls] = ACTIONS(12613), + [anon_sym_BSLASHGLS] = ACTIONS(12613), + [anon_sym_BSLASHglspl] = ACTIONS(12613), + [anon_sym_BSLASHGlspl] = ACTIONS(12613), + [anon_sym_BSLASHGLSpl] = ACTIONS(12613), + [anon_sym_BSLASHglsdisp] = ACTIONS(12613), + [anon_sym_BSLASHglslink] = ACTIONS(12613), + [anon_sym_BSLASHglstext] = ACTIONS(12613), + [anon_sym_BSLASHGlstext] = ACTIONS(12613), + [anon_sym_BSLASHGLStext] = ACTIONS(12613), + [anon_sym_BSLASHglsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12613), + [anon_sym_BSLASHglsplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSplural] = ACTIONS(12613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHglsname] = ACTIONS(12613), + [anon_sym_BSLASHGlsname] = ACTIONS(12613), + [anon_sym_BSLASHGLSname] = ACTIONS(12613), + [anon_sym_BSLASHglssymbol] = ACTIONS(12613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12613), + [anon_sym_BSLASHglsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12613), + [anon_sym_BSLASHglsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12613), + [anon_sym_BSLASHglsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12613), + [anon_sym_BSLASHglsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12613), + [anon_sym_BSLASHglsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12613), + [anon_sym_BSLASHnewacronym] = ACTIONS(12613), + [anon_sym_BSLASHacrshort] = ACTIONS(12613), + [anon_sym_BSLASHAcrshort] = ACTIONS(12613), + [anon_sym_BSLASHACRshort] = ACTIONS(12613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12613), + [anon_sym_BSLASHacrlong] = ACTIONS(12613), + [anon_sym_BSLASHAcrlong] = ACTIONS(12613), + [anon_sym_BSLASHACRlong] = ACTIONS(12613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12613), + [anon_sym_BSLASHacrfull] = ACTIONS(12613), + [anon_sym_BSLASHAcrfull] = ACTIONS(12613), + [anon_sym_BSLASHACRfull] = ACTIONS(12613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12613), + [anon_sym_BSLASHacs] = ACTIONS(12613), + [anon_sym_BSLASHAcs] = ACTIONS(12613), + [anon_sym_BSLASHacsp] = ACTIONS(12613), + [anon_sym_BSLASHAcsp] = ACTIONS(12613), + [anon_sym_BSLASHacl] = ACTIONS(12613), + [anon_sym_BSLASHAcl] = ACTIONS(12613), + [anon_sym_BSLASHaclp] = ACTIONS(12613), + [anon_sym_BSLASHAclp] = ACTIONS(12613), + [anon_sym_BSLASHacf] = ACTIONS(12613), + [anon_sym_BSLASHAcf] = ACTIONS(12613), + [anon_sym_BSLASHacfp] = ACTIONS(12613), + [anon_sym_BSLASHAcfp] = ACTIONS(12613), + [anon_sym_BSLASHac] = ACTIONS(12613), + [anon_sym_BSLASHAc] = ACTIONS(12613), + [anon_sym_BSLASHacp] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12613), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12613), + [anon_sym_BSLASHcolor] = ACTIONS(12613), + [anon_sym_BSLASHcolorbox] = ACTIONS(12613), + [anon_sym_BSLASHtextcolor] = ACTIONS(12613), + [anon_sym_BSLASHpagecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12613), + }, + [650] = { + [sym_brace_group] = STATE(3423), + [sym_generic_command_name] = ACTIONS(12100), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12100), + [aux_sym_chapter_token1] = ACTIONS(12100), + [aux_sym_section_token1] = ACTIONS(12100), + [aux_sym_subsection_token1] = ACTIONS(12100), + [aux_sym_subsubsection_token1] = ACTIONS(12100), + [aux_sym_paragraph_token1] = ACTIONS(12100), + [aux_sym_subparagraph_token1] = ACTIONS(12100), + [anon_sym_BSLASHitem] = ACTIONS(12100), + [anon_sym_LBRACK] = ACTIONS(12098), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12098), + [anon_sym_COMMA] = ACTIONS(12098), + [anon_sym_EQ] = ACTIONS(12098), + [sym_word] = ACTIONS(12098), + [sym_param] = ACTIONS(12098), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12098), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12098), + [anon_sym_DOLLAR] = ACTIONS(12100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12098), + [anon_sym_BSLASHbegin] = ACTIONS(12100), + [anon_sym_BSLASHcaption] = ACTIONS(12100), + [anon_sym_BSLASHcite] = ACTIONS(12100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCite] = ACTIONS(12100), + [anon_sym_BSLASHnocite] = ACTIONS(12100), + [anon_sym_BSLASHcitet] = ACTIONS(12100), + [anon_sym_BSLASHcitep] = ACTIONS(12100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteauthor] = ACTIONS(12100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitetitle] = ACTIONS(12100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteyear] = ACTIONS(12100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitedate] = ACTIONS(12100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteurl] = ACTIONS(12100), + [anon_sym_BSLASHfullcite] = ACTIONS(12100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12100), + [anon_sym_BSLASHcitealt] = ACTIONS(12100), + [anon_sym_BSLASHcitealp] = ACTIONS(12100), + [anon_sym_BSLASHcitetext] = ACTIONS(12100), + [anon_sym_BSLASHparencite] = ACTIONS(12100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHParencite] = ACTIONS(12100), + [anon_sym_BSLASHfootcite] = ACTIONS(12100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12100), + [anon_sym_BSLASHtextcite] = ACTIONS(12100), + [anon_sym_BSLASHTextcite] = ACTIONS(12100), + [anon_sym_BSLASHsmartcite] = ACTIONS(12100), + [anon_sym_BSLASHSmartcite] = ACTIONS(12100), + [anon_sym_BSLASHsupercite] = ACTIONS(12100), + [anon_sym_BSLASHautocite] = ACTIONS(12100), + [anon_sym_BSLASHAutocite] = ACTIONS(12100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHvolcite] = ACTIONS(12100), + [anon_sym_BSLASHVolcite] = ACTIONS(12100), + [anon_sym_BSLASHpvolcite] = ACTIONS(12100), + [anon_sym_BSLASHPvolcite] = ACTIONS(12100), + [anon_sym_BSLASHfvolcite] = ACTIONS(12100), + [anon_sym_BSLASHftvolcite] = ACTIONS(12100), + [anon_sym_BSLASHsvolcite] = ACTIONS(12100), + [anon_sym_BSLASHSvolcite] = ACTIONS(12100), + [anon_sym_BSLASHtvolcite] = ACTIONS(12100), + [anon_sym_BSLASHTvolcite] = ACTIONS(12100), + [anon_sym_BSLASHavolcite] = ACTIONS(12100), + [anon_sym_BSLASHAvolcite] = ACTIONS(12100), + [anon_sym_BSLASHnotecite] = ACTIONS(12100), + [anon_sym_BSLASHpnotecite] = ACTIONS(12100), + [anon_sym_BSLASHPnotecite] = ACTIONS(12100), + [anon_sym_BSLASHfnotecite] = ACTIONS(12100), + [anon_sym_BSLASHusepackage] = ACTIONS(12100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12100), + [anon_sym_BSLASHinclude] = ACTIONS(12100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12100), + [anon_sym_BSLASHinput] = ACTIONS(12100), + [anon_sym_BSLASHsubfile] = ACTIONS(12100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12100), + [anon_sym_BSLASHbibliography] = ACTIONS(12100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12100), + [anon_sym_BSLASHincludesvg] = ACTIONS(12100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12100), + [anon_sym_BSLASHimport] = ACTIONS(12100), + [anon_sym_BSLASHsubimport] = ACTIONS(12100), + [anon_sym_BSLASHinputfrom] = ACTIONS(12100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12100), + [anon_sym_BSLASHincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHlabel] = ACTIONS(12100), + [anon_sym_BSLASHref] = ACTIONS(12100), + [anon_sym_BSLASHvref] = ACTIONS(12100), + [anon_sym_BSLASHVref] = ACTIONS(12100), + [anon_sym_BSLASHautoref] = ACTIONS(12100), + [anon_sym_BSLASHpageref] = ACTIONS(12100), + [anon_sym_BSLASHcref] = ACTIONS(12100), + [anon_sym_BSLASHCref] = ACTIONS(12100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnameCref] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHlabelcref] = ACTIONS(12100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12100), + [anon_sym_BSLASHeqref] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange] = ACTIONS(12100), + [anon_sym_BSLASHCrefrange] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewlabel] = ACTIONS(12100), + [anon_sym_BSLASHnewcommand] = ACTIONS(12100), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12100), + [anon_sym_BSLASHgls] = ACTIONS(12100), + [anon_sym_BSLASHGls] = ACTIONS(12100), + [anon_sym_BSLASHGLS] = ACTIONS(12100), + [anon_sym_BSLASHglspl] = ACTIONS(12100), + [anon_sym_BSLASHGlspl] = ACTIONS(12100), + [anon_sym_BSLASHGLSpl] = ACTIONS(12100), + [anon_sym_BSLASHglsdisp] = ACTIONS(12100), + [anon_sym_BSLASHglslink] = ACTIONS(12100), + [anon_sym_BSLASHglstext] = ACTIONS(12100), + [anon_sym_BSLASHGlstext] = ACTIONS(12100), + [anon_sym_BSLASHGLStext] = ACTIONS(12100), + [anon_sym_BSLASHglsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12100), + [anon_sym_BSLASHglsplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSplural] = ACTIONS(12100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHglsname] = ACTIONS(12100), + [anon_sym_BSLASHGlsname] = ACTIONS(12100), + [anon_sym_BSLASHGLSname] = ACTIONS(12100), + [anon_sym_BSLASHglssymbol] = ACTIONS(12100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12100), + [anon_sym_BSLASHglsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12100), + [anon_sym_BSLASHglsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12100), + [anon_sym_BSLASHglsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12100), + [anon_sym_BSLASHglsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12100), + [anon_sym_BSLASHglsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12100), + [anon_sym_BSLASHnewacronym] = ACTIONS(12100), + [anon_sym_BSLASHacrshort] = ACTIONS(12100), + [anon_sym_BSLASHAcrshort] = ACTIONS(12100), + [anon_sym_BSLASHACRshort] = ACTIONS(12100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12100), + [anon_sym_BSLASHacrlong] = ACTIONS(12100), + [anon_sym_BSLASHAcrlong] = ACTIONS(12100), + [anon_sym_BSLASHACRlong] = ACTIONS(12100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12100), + [anon_sym_BSLASHacrfull] = ACTIONS(12100), + [anon_sym_BSLASHAcrfull] = ACTIONS(12100), + [anon_sym_BSLASHACRfull] = ACTIONS(12100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12100), + [anon_sym_BSLASHacs] = ACTIONS(12100), + [anon_sym_BSLASHAcs] = ACTIONS(12100), + [anon_sym_BSLASHacsp] = ACTIONS(12100), + [anon_sym_BSLASHAcsp] = ACTIONS(12100), + [anon_sym_BSLASHacl] = ACTIONS(12100), + [anon_sym_BSLASHAcl] = ACTIONS(12100), + [anon_sym_BSLASHaclp] = ACTIONS(12100), + [anon_sym_BSLASHAclp] = ACTIONS(12100), + [anon_sym_BSLASHacf] = ACTIONS(12100), + [anon_sym_BSLASHAcf] = ACTIONS(12100), + [anon_sym_BSLASHacfp] = ACTIONS(12100), + [anon_sym_BSLASHAcfp] = ACTIONS(12100), + [anon_sym_BSLASHac] = ACTIONS(12100), + [anon_sym_BSLASHAc] = ACTIONS(12100), + [anon_sym_BSLASHacp] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12100), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12100), + [anon_sym_BSLASHcolor] = ACTIONS(12100), + [anon_sym_BSLASHcolorbox] = ACTIONS(12100), + [anon_sym_BSLASHtextcolor] = ACTIONS(12100), + [anon_sym_BSLASHpagecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12100), + }, + [651] = { + [sym_brace_group] = STATE(3228), + [sym_generic_command_name] = ACTIONS(12028), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12028), + [aux_sym_section_token1] = ACTIONS(12028), + [aux_sym_subsection_token1] = ACTIONS(12028), + [aux_sym_subsubsection_token1] = ACTIONS(12028), + [aux_sym_paragraph_token1] = ACTIONS(12028), + [aux_sym_subparagraph_token1] = ACTIONS(12028), + [anon_sym_BSLASHitem] = ACTIONS(12028), + [anon_sym_LBRACK] = ACTIONS(12026), + [anon_sym_RBRACK] = ACTIONS(12026), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12026), + [anon_sym_LPAREN] = ACTIONS(12026), + [anon_sym_COMMA] = ACTIONS(12026), + [anon_sym_EQ] = ACTIONS(12026), + [sym_word] = ACTIONS(12026), + [sym_param] = ACTIONS(12026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12026), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12026), + [anon_sym_DOLLAR] = ACTIONS(12028), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12026), + [anon_sym_BSLASHbegin] = ACTIONS(12028), + [anon_sym_BSLASHcaption] = ACTIONS(12028), + [anon_sym_BSLASHcite] = ACTIONS(12028), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCite] = ACTIONS(12028), + [anon_sym_BSLASHnocite] = ACTIONS(12028), + [anon_sym_BSLASHcitet] = ACTIONS(12028), + [anon_sym_BSLASHcitep] = ACTIONS(12028), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteauthor] = ACTIONS(12028), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12028), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitetitle] = ACTIONS(12028), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteyear] = ACTIONS(12028), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitedate] = ACTIONS(12028), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteurl] = ACTIONS(12028), + [anon_sym_BSLASHfullcite] = ACTIONS(12028), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12028), + [anon_sym_BSLASHcitealt] = ACTIONS(12028), + [anon_sym_BSLASHcitealp] = ACTIONS(12028), + [anon_sym_BSLASHcitetext] = ACTIONS(12028), + [anon_sym_BSLASHparencite] = ACTIONS(12028), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHParencite] = ACTIONS(12028), + [anon_sym_BSLASHfootcite] = ACTIONS(12028), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12028), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12028), + [anon_sym_BSLASHtextcite] = ACTIONS(12028), + [anon_sym_BSLASHTextcite] = ACTIONS(12028), + [anon_sym_BSLASHsmartcite] = ACTIONS(12028), + [anon_sym_BSLASHSmartcite] = ACTIONS(12028), + [anon_sym_BSLASHsupercite] = ACTIONS(12028), + [anon_sym_BSLASHautocite] = ACTIONS(12028), + [anon_sym_BSLASHAutocite] = ACTIONS(12028), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHvolcite] = ACTIONS(12028), + [anon_sym_BSLASHVolcite] = ACTIONS(12028), + [anon_sym_BSLASHpvolcite] = ACTIONS(12028), + [anon_sym_BSLASHPvolcite] = ACTIONS(12028), + [anon_sym_BSLASHfvolcite] = ACTIONS(12028), + [anon_sym_BSLASHftvolcite] = ACTIONS(12028), + [anon_sym_BSLASHsvolcite] = ACTIONS(12028), + [anon_sym_BSLASHSvolcite] = ACTIONS(12028), + [anon_sym_BSLASHtvolcite] = ACTIONS(12028), + [anon_sym_BSLASHTvolcite] = ACTIONS(12028), + [anon_sym_BSLASHavolcite] = ACTIONS(12028), + [anon_sym_BSLASHAvolcite] = ACTIONS(12028), + [anon_sym_BSLASHnotecite] = ACTIONS(12028), + [anon_sym_BSLASHpnotecite] = ACTIONS(12028), + [anon_sym_BSLASHPnotecite] = ACTIONS(12028), + [anon_sym_BSLASHfnotecite] = ACTIONS(12028), + [anon_sym_BSLASHusepackage] = ACTIONS(12028), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12028), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12028), + [anon_sym_BSLASHinclude] = ACTIONS(12028), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12028), + [anon_sym_BSLASHinput] = ACTIONS(12028), + [anon_sym_BSLASHsubfile] = ACTIONS(12028), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12028), + [anon_sym_BSLASHbibliography] = ACTIONS(12028), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12028), + [anon_sym_BSLASHincludesvg] = ACTIONS(12028), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12028), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12028), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12028), + [anon_sym_BSLASHimport] = ACTIONS(12028), + [anon_sym_BSLASHsubimport] = ACTIONS(12028), + [anon_sym_BSLASHinputfrom] = ACTIONS(12028), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12028), + [anon_sym_BSLASHincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHlabel] = ACTIONS(12028), + [anon_sym_BSLASHref] = ACTIONS(12028), + [anon_sym_BSLASHvref] = ACTIONS(12028), + [anon_sym_BSLASHVref] = ACTIONS(12028), + [anon_sym_BSLASHautoref] = ACTIONS(12028), + [anon_sym_BSLASHpageref] = ACTIONS(12028), + [anon_sym_BSLASHcref] = ACTIONS(12028), + [anon_sym_BSLASHCref] = ACTIONS(12028), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnameCref] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHlabelcref] = ACTIONS(12028), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12028), + [anon_sym_BSLASHeqref] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange] = ACTIONS(12028), + [anon_sym_BSLASHCrefrange] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewlabel] = ACTIONS(12028), + [anon_sym_BSLASHnewcommand] = ACTIONS(12028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12028), + [anon_sym_BSLASHgls] = ACTIONS(12028), + [anon_sym_BSLASHGls] = ACTIONS(12028), + [anon_sym_BSLASHGLS] = ACTIONS(12028), + [anon_sym_BSLASHglspl] = ACTIONS(12028), + [anon_sym_BSLASHGlspl] = ACTIONS(12028), + [anon_sym_BSLASHGLSpl] = ACTIONS(12028), + [anon_sym_BSLASHglsdisp] = ACTIONS(12028), + [anon_sym_BSLASHglslink] = ACTIONS(12028), + [anon_sym_BSLASHglstext] = ACTIONS(12028), + [anon_sym_BSLASHGlstext] = ACTIONS(12028), + [anon_sym_BSLASHGLStext] = ACTIONS(12028), + [anon_sym_BSLASHglsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12028), + [anon_sym_BSLASHglsplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSplural] = ACTIONS(12028), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHglsname] = ACTIONS(12028), + [anon_sym_BSLASHGlsname] = ACTIONS(12028), + [anon_sym_BSLASHGLSname] = ACTIONS(12028), + [anon_sym_BSLASHglssymbol] = ACTIONS(12028), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12028), + [anon_sym_BSLASHglsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12028), + [anon_sym_BSLASHglsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12028), + [anon_sym_BSLASHglsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12028), + [anon_sym_BSLASHglsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12028), + [anon_sym_BSLASHglsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12028), + [anon_sym_BSLASHnewacronym] = ACTIONS(12028), + [anon_sym_BSLASHacrshort] = ACTIONS(12028), + [anon_sym_BSLASHAcrshort] = ACTIONS(12028), + [anon_sym_BSLASHACRshort] = ACTIONS(12028), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12028), + [anon_sym_BSLASHacrlong] = ACTIONS(12028), + [anon_sym_BSLASHAcrlong] = ACTIONS(12028), + [anon_sym_BSLASHACRlong] = ACTIONS(12028), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12028), + [anon_sym_BSLASHacrfull] = ACTIONS(12028), + [anon_sym_BSLASHAcrfull] = ACTIONS(12028), + [anon_sym_BSLASHACRfull] = ACTIONS(12028), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12028), + [anon_sym_BSLASHacs] = ACTIONS(12028), + [anon_sym_BSLASHAcs] = ACTIONS(12028), + [anon_sym_BSLASHacsp] = ACTIONS(12028), + [anon_sym_BSLASHAcsp] = ACTIONS(12028), + [anon_sym_BSLASHacl] = ACTIONS(12028), + [anon_sym_BSLASHAcl] = ACTIONS(12028), + [anon_sym_BSLASHaclp] = ACTIONS(12028), + [anon_sym_BSLASHAclp] = ACTIONS(12028), + [anon_sym_BSLASHacf] = ACTIONS(12028), + [anon_sym_BSLASHAcf] = ACTIONS(12028), + [anon_sym_BSLASHacfp] = ACTIONS(12028), + [anon_sym_BSLASHAcfp] = ACTIONS(12028), + [anon_sym_BSLASHac] = ACTIONS(12028), + [anon_sym_BSLASHAc] = ACTIONS(12028), + [anon_sym_BSLASHacp] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12028), + [anon_sym_BSLASHcolor] = ACTIONS(12028), + [anon_sym_BSLASHcolorbox] = ACTIONS(12028), + [anon_sym_BSLASHtextcolor] = ACTIONS(12028), + [anon_sym_BSLASHpagecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12028), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12028), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12028), + }, + [652] = { + [sym_brace_group] = STATE(3223), + [sym_generic_command_name] = ACTIONS(12092), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12092), + [aux_sym_section_token1] = ACTIONS(12092), + [aux_sym_subsection_token1] = ACTIONS(12092), + [aux_sym_subsubsection_token1] = ACTIONS(12092), + [aux_sym_paragraph_token1] = ACTIONS(12092), + [aux_sym_subparagraph_token1] = ACTIONS(12092), + [anon_sym_BSLASHitem] = ACTIONS(12092), + [anon_sym_LBRACK] = ACTIONS(12090), + [anon_sym_RBRACK] = ACTIONS(12090), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12090), + [anon_sym_LPAREN] = ACTIONS(12090), + [anon_sym_COMMA] = ACTIONS(12090), + [anon_sym_EQ] = ACTIONS(12090), + [sym_word] = ACTIONS(12090), + [sym_param] = ACTIONS(12090), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12090), + [anon_sym_DOLLAR] = ACTIONS(12092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12090), + [anon_sym_BSLASHbegin] = ACTIONS(12092), + [anon_sym_BSLASHcaption] = ACTIONS(12092), + [anon_sym_BSLASHcite] = ACTIONS(12092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCite] = ACTIONS(12092), + [anon_sym_BSLASHnocite] = ACTIONS(12092), + [anon_sym_BSLASHcitet] = ACTIONS(12092), + [anon_sym_BSLASHcitep] = ACTIONS(12092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteauthor] = ACTIONS(12092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitetitle] = ACTIONS(12092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteyear] = ACTIONS(12092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitedate] = ACTIONS(12092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteurl] = ACTIONS(12092), + [anon_sym_BSLASHfullcite] = ACTIONS(12092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12092), + [anon_sym_BSLASHcitealt] = ACTIONS(12092), + [anon_sym_BSLASHcitealp] = ACTIONS(12092), + [anon_sym_BSLASHcitetext] = ACTIONS(12092), + [anon_sym_BSLASHparencite] = ACTIONS(12092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHParencite] = ACTIONS(12092), + [anon_sym_BSLASHfootcite] = ACTIONS(12092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12092), + [anon_sym_BSLASHtextcite] = ACTIONS(12092), + [anon_sym_BSLASHTextcite] = ACTIONS(12092), + [anon_sym_BSLASHsmartcite] = ACTIONS(12092), + [anon_sym_BSLASHSmartcite] = ACTIONS(12092), + [anon_sym_BSLASHsupercite] = ACTIONS(12092), + [anon_sym_BSLASHautocite] = ACTIONS(12092), + [anon_sym_BSLASHAutocite] = ACTIONS(12092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHvolcite] = ACTIONS(12092), + [anon_sym_BSLASHVolcite] = ACTIONS(12092), + [anon_sym_BSLASHpvolcite] = ACTIONS(12092), + [anon_sym_BSLASHPvolcite] = ACTIONS(12092), + [anon_sym_BSLASHfvolcite] = ACTIONS(12092), + [anon_sym_BSLASHftvolcite] = ACTIONS(12092), + [anon_sym_BSLASHsvolcite] = ACTIONS(12092), + [anon_sym_BSLASHSvolcite] = ACTIONS(12092), + [anon_sym_BSLASHtvolcite] = ACTIONS(12092), + [anon_sym_BSLASHTvolcite] = ACTIONS(12092), + [anon_sym_BSLASHavolcite] = ACTIONS(12092), + [anon_sym_BSLASHAvolcite] = ACTIONS(12092), + [anon_sym_BSLASHnotecite] = ACTIONS(12092), + [anon_sym_BSLASHpnotecite] = ACTIONS(12092), + [anon_sym_BSLASHPnotecite] = ACTIONS(12092), + [anon_sym_BSLASHfnotecite] = ACTIONS(12092), + [anon_sym_BSLASHusepackage] = ACTIONS(12092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12092), + [anon_sym_BSLASHinclude] = ACTIONS(12092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12092), + [anon_sym_BSLASHinput] = ACTIONS(12092), + [anon_sym_BSLASHsubfile] = ACTIONS(12092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12092), + [anon_sym_BSLASHbibliography] = ACTIONS(12092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12092), + [anon_sym_BSLASHincludesvg] = ACTIONS(12092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12092), + [anon_sym_BSLASHimport] = ACTIONS(12092), + [anon_sym_BSLASHsubimport] = ACTIONS(12092), + [anon_sym_BSLASHinputfrom] = ACTIONS(12092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12092), + [anon_sym_BSLASHincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHlabel] = ACTIONS(12092), + [anon_sym_BSLASHref] = ACTIONS(12092), + [anon_sym_BSLASHvref] = ACTIONS(12092), + [anon_sym_BSLASHVref] = ACTIONS(12092), + [anon_sym_BSLASHautoref] = ACTIONS(12092), + [anon_sym_BSLASHpageref] = ACTIONS(12092), + [anon_sym_BSLASHcref] = ACTIONS(12092), + [anon_sym_BSLASHCref] = ACTIONS(12092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnameCref] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHlabelcref] = ACTIONS(12092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12092), + [anon_sym_BSLASHeqref] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange] = ACTIONS(12092), + [anon_sym_BSLASHCrefrange] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewlabel] = ACTIONS(12092), + [anon_sym_BSLASHnewcommand] = ACTIONS(12092), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12092), + [anon_sym_BSLASHgls] = ACTIONS(12092), + [anon_sym_BSLASHGls] = ACTIONS(12092), + [anon_sym_BSLASHGLS] = ACTIONS(12092), + [anon_sym_BSLASHglspl] = ACTIONS(12092), + [anon_sym_BSLASHGlspl] = ACTIONS(12092), + [anon_sym_BSLASHGLSpl] = ACTIONS(12092), + [anon_sym_BSLASHglsdisp] = ACTIONS(12092), + [anon_sym_BSLASHglslink] = ACTIONS(12092), + [anon_sym_BSLASHglstext] = ACTIONS(12092), + [anon_sym_BSLASHGlstext] = ACTIONS(12092), + [anon_sym_BSLASHGLStext] = ACTIONS(12092), + [anon_sym_BSLASHglsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12092), + [anon_sym_BSLASHglsplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSplural] = ACTIONS(12092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHglsname] = ACTIONS(12092), + [anon_sym_BSLASHGlsname] = ACTIONS(12092), + [anon_sym_BSLASHGLSname] = ACTIONS(12092), + [anon_sym_BSLASHglssymbol] = ACTIONS(12092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12092), + [anon_sym_BSLASHglsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12092), + [anon_sym_BSLASHglsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12092), + [anon_sym_BSLASHglsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12092), + [anon_sym_BSLASHglsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12092), + [anon_sym_BSLASHglsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12092), + [anon_sym_BSLASHnewacronym] = ACTIONS(12092), + [anon_sym_BSLASHacrshort] = ACTIONS(12092), + [anon_sym_BSLASHAcrshort] = ACTIONS(12092), + [anon_sym_BSLASHACRshort] = ACTIONS(12092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12092), + [anon_sym_BSLASHacrlong] = ACTIONS(12092), + [anon_sym_BSLASHAcrlong] = ACTIONS(12092), + [anon_sym_BSLASHACRlong] = ACTIONS(12092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12092), + [anon_sym_BSLASHacrfull] = ACTIONS(12092), + [anon_sym_BSLASHAcrfull] = ACTIONS(12092), + [anon_sym_BSLASHACRfull] = ACTIONS(12092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12092), + [anon_sym_BSLASHacs] = ACTIONS(12092), + [anon_sym_BSLASHAcs] = ACTIONS(12092), + [anon_sym_BSLASHacsp] = ACTIONS(12092), + [anon_sym_BSLASHAcsp] = ACTIONS(12092), + [anon_sym_BSLASHacl] = ACTIONS(12092), + [anon_sym_BSLASHAcl] = ACTIONS(12092), + [anon_sym_BSLASHaclp] = ACTIONS(12092), + [anon_sym_BSLASHAclp] = ACTIONS(12092), + [anon_sym_BSLASHacf] = ACTIONS(12092), + [anon_sym_BSLASHAcf] = ACTIONS(12092), + [anon_sym_BSLASHacfp] = ACTIONS(12092), + [anon_sym_BSLASHAcfp] = ACTIONS(12092), + [anon_sym_BSLASHac] = ACTIONS(12092), + [anon_sym_BSLASHAc] = ACTIONS(12092), + [anon_sym_BSLASHacp] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12092), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12092), + [anon_sym_BSLASHcolor] = ACTIONS(12092), + [anon_sym_BSLASHcolorbox] = ACTIONS(12092), + [anon_sym_BSLASHtextcolor] = ACTIONS(12092), + [anon_sym_BSLASHpagecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12092), + }, + [653] = { + [sym_brace_group] = STATE(3222), + [sym_generic_command_name] = ACTIONS(12088), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12088), + [aux_sym_section_token1] = ACTIONS(12088), + [aux_sym_subsection_token1] = ACTIONS(12088), + [aux_sym_subsubsection_token1] = ACTIONS(12088), + [aux_sym_paragraph_token1] = ACTIONS(12088), + [aux_sym_subparagraph_token1] = ACTIONS(12088), + [anon_sym_BSLASHitem] = ACTIONS(12088), + [anon_sym_LBRACK] = ACTIONS(12086), + [anon_sym_RBRACK] = ACTIONS(12086), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12086), + [anon_sym_LPAREN] = ACTIONS(12086), + [anon_sym_COMMA] = ACTIONS(12086), + [anon_sym_EQ] = ACTIONS(12086), + [sym_word] = ACTIONS(12086), + [sym_param] = ACTIONS(12086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12086), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12086), + [anon_sym_DOLLAR] = ACTIONS(12088), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12086), + [anon_sym_BSLASHbegin] = ACTIONS(12088), + [anon_sym_BSLASHcaption] = ACTIONS(12088), + [anon_sym_BSLASHcite] = ACTIONS(12088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCite] = ACTIONS(12088), + [anon_sym_BSLASHnocite] = ACTIONS(12088), + [anon_sym_BSLASHcitet] = ACTIONS(12088), + [anon_sym_BSLASHcitep] = ACTIONS(12088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteauthor] = ACTIONS(12088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitetitle] = ACTIONS(12088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteyear] = ACTIONS(12088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitedate] = ACTIONS(12088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteurl] = ACTIONS(12088), + [anon_sym_BSLASHfullcite] = ACTIONS(12088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12088), + [anon_sym_BSLASHcitealt] = ACTIONS(12088), + [anon_sym_BSLASHcitealp] = ACTIONS(12088), + [anon_sym_BSLASHcitetext] = ACTIONS(12088), + [anon_sym_BSLASHparencite] = ACTIONS(12088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHParencite] = ACTIONS(12088), + [anon_sym_BSLASHfootcite] = ACTIONS(12088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12088), + [anon_sym_BSLASHtextcite] = ACTIONS(12088), + [anon_sym_BSLASHTextcite] = ACTIONS(12088), + [anon_sym_BSLASHsmartcite] = ACTIONS(12088), + [anon_sym_BSLASHSmartcite] = ACTIONS(12088), + [anon_sym_BSLASHsupercite] = ACTIONS(12088), + [anon_sym_BSLASHautocite] = ACTIONS(12088), + [anon_sym_BSLASHAutocite] = ACTIONS(12088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHvolcite] = ACTIONS(12088), + [anon_sym_BSLASHVolcite] = ACTIONS(12088), + [anon_sym_BSLASHpvolcite] = ACTIONS(12088), + [anon_sym_BSLASHPvolcite] = ACTIONS(12088), + [anon_sym_BSLASHfvolcite] = ACTIONS(12088), + [anon_sym_BSLASHftvolcite] = ACTIONS(12088), + [anon_sym_BSLASHsvolcite] = ACTIONS(12088), + [anon_sym_BSLASHSvolcite] = ACTIONS(12088), + [anon_sym_BSLASHtvolcite] = ACTIONS(12088), + [anon_sym_BSLASHTvolcite] = ACTIONS(12088), + [anon_sym_BSLASHavolcite] = ACTIONS(12088), + [anon_sym_BSLASHAvolcite] = ACTIONS(12088), + [anon_sym_BSLASHnotecite] = ACTIONS(12088), + [anon_sym_BSLASHpnotecite] = ACTIONS(12088), + [anon_sym_BSLASHPnotecite] = ACTIONS(12088), + [anon_sym_BSLASHfnotecite] = ACTIONS(12088), + [anon_sym_BSLASHusepackage] = ACTIONS(12088), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12088), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12088), + [anon_sym_BSLASHinclude] = ACTIONS(12088), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12088), + [anon_sym_BSLASHinput] = ACTIONS(12088), + [anon_sym_BSLASHsubfile] = ACTIONS(12088), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12088), + [anon_sym_BSLASHbibliography] = ACTIONS(12088), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12088), + [anon_sym_BSLASHincludesvg] = ACTIONS(12088), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12088), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12088), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12088), + [anon_sym_BSLASHimport] = ACTIONS(12088), + [anon_sym_BSLASHsubimport] = ACTIONS(12088), + [anon_sym_BSLASHinputfrom] = ACTIONS(12088), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12088), + [anon_sym_BSLASHincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHlabel] = ACTIONS(12088), + [anon_sym_BSLASHref] = ACTIONS(12088), + [anon_sym_BSLASHvref] = ACTIONS(12088), + [anon_sym_BSLASHVref] = ACTIONS(12088), + [anon_sym_BSLASHautoref] = ACTIONS(12088), + [anon_sym_BSLASHpageref] = ACTIONS(12088), + [anon_sym_BSLASHcref] = ACTIONS(12088), + [anon_sym_BSLASHCref] = ACTIONS(12088), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnameCref] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHlabelcref] = ACTIONS(12088), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12088), + [anon_sym_BSLASHeqref] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange] = ACTIONS(12088), + [anon_sym_BSLASHCrefrange] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewlabel] = ACTIONS(12088), + [anon_sym_BSLASHnewcommand] = ACTIONS(12088), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12088), + [anon_sym_BSLASHgls] = ACTIONS(12088), + [anon_sym_BSLASHGls] = ACTIONS(12088), + [anon_sym_BSLASHGLS] = ACTIONS(12088), + [anon_sym_BSLASHglspl] = ACTIONS(12088), + [anon_sym_BSLASHGlspl] = ACTIONS(12088), + [anon_sym_BSLASHGLSpl] = ACTIONS(12088), + [anon_sym_BSLASHglsdisp] = ACTIONS(12088), + [anon_sym_BSLASHglslink] = ACTIONS(12088), + [anon_sym_BSLASHglstext] = ACTIONS(12088), + [anon_sym_BSLASHGlstext] = ACTIONS(12088), + [anon_sym_BSLASHGLStext] = ACTIONS(12088), + [anon_sym_BSLASHglsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12088), + [anon_sym_BSLASHglsplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSplural] = ACTIONS(12088), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHglsname] = ACTIONS(12088), + [anon_sym_BSLASHGlsname] = ACTIONS(12088), + [anon_sym_BSLASHGLSname] = ACTIONS(12088), + [anon_sym_BSLASHglssymbol] = ACTIONS(12088), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12088), + [anon_sym_BSLASHglsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12088), + [anon_sym_BSLASHglsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12088), + [anon_sym_BSLASHglsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12088), + [anon_sym_BSLASHglsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12088), + [anon_sym_BSLASHglsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12088), + [anon_sym_BSLASHnewacronym] = ACTIONS(12088), + [anon_sym_BSLASHacrshort] = ACTIONS(12088), + [anon_sym_BSLASHAcrshort] = ACTIONS(12088), + [anon_sym_BSLASHACRshort] = ACTIONS(12088), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12088), + [anon_sym_BSLASHacrlong] = ACTIONS(12088), + [anon_sym_BSLASHAcrlong] = ACTIONS(12088), + [anon_sym_BSLASHACRlong] = ACTIONS(12088), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12088), + [anon_sym_BSLASHacrfull] = ACTIONS(12088), + [anon_sym_BSLASHAcrfull] = ACTIONS(12088), + [anon_sym_BSLASHACRfull] = ACTIONS(12088), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12088), + [anon_sym_BSLASHacs] = ACTIONS(12088), + [anon_sym_BSLASHAcs] = ACTIONS(12088), + [anon_sym_BSLASHacsp] = ACTIONS(12088), + [anon_sym_BSLASHAcsp] = ACTIONS(12088), + [anon_sym_BSLASHacl] = ACTIONS(12088), + [anon_sym_BSLASHAcl] = ACTIONS(12088), + [anon_sym_BSLASHaclp] = ACTIONS(12088), + [anon_sym_BSLASHAclp] = ACTIONS(12088), + [anon_sym_BSLASHacf] = ACTIONS(12088), + [anon_sym_BSLASHAcf] = ACTIONS(12088), + [anon_sym_BSLASHacfp] = ACTIONS(12088), + [anon_sym_BSLASHAcfp] = ACTIONS(12088), + [anon_sym_BSLASHac] = ACTIONS(12088), + [anon_sym_BSLASHAc] = ACTIONS(12088), + [anon_sym_BSLASHacp] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12088), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12088), + [anon_sym_BSLASHcolor] = ACTIONS(12088), + [anon_sym_BSLASHcolorbox] = ACTIONS(12088), + [anon_sym_BSLASHtextcolor] = ACTIONS(12088), + [anon_sym_BSLASHpagecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12088), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12088), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12088), + }, + [654] = { + [sym_brace_group] = STATE(3201), + [sym_generic_command_name] = ACTIONS(12054), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12054), + [aux_sym_section_token1] = ACTIONS(12054), + [aux_sym_subsection_token1] = ACTIONS(12054), + [aux_sym_subsubsection_token1] = ACTIONS(12054), + [aux_sym_paragraph_token1] = ACTIONS(12054), + [aux_sym_subparagraph_token1] = ACTIONS(12054), + [anon_sym_BSLASHitem] = ACTIONS(12054), + [anon_sym_LBRACK] = ACTIONS(12052), + [anon_sym_RBRACK] = ACTIONS(12052), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12052), + [anon_sym_LPAREN] = ACTIONS(12052), + [anon_sym_COMMA] = ACTIONS(12052), + [anon_sym_EQ] = ACTIONS(12052), + [sym_word] = ACTIONS(12052), + [sym_param] = ACTIONS(12052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12052), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12052), + [anon_sym_DOLLAR] = ACTIONS(12054), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12052), + [anon_sym_BSLASHbegin] = ACTIONS(12054), + [anon_sym_BSLASHcaption] = ACTIONS(12054), + [anon_sym_BSLASHcite] = ACTIONS(12054), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCite] = ACTIONS(12054), + [anon_sym_BSLASHnocite] = ACTIONS(12054), + [anon_sym_BSLASHcitet] = ACTIONS(12054), + [anon_sym_BSLASHcitep] = ACTIONS(12054), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteauthor] = ACTIONS(12054), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12054), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitetitle] = ACTIONS(12054), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteyear] = ACTIONS(12054), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitedate] = ACTIONS(12054), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteurl] = ACTIONS(12054), + [anon_sym_BSLASHfullcite] = ACTIONS(12054), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12054), + [anon_sym_BSLASHcitealt] = ACTIONS(12054), + [anon_sym_BSLASHcitealp] = ACTIONS(12054), + [anon_sym_BSLASHcitetext] = ACTIONS(12054), + [anon_sym_BSLASHparencite] = ACTIONS(12054), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHParencite] = ACTIONS(12054), + [anon_sym_BSLASHfootcite] = ACTIONS(12054), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12054), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12054), + [anon_sym_BSLASHtextcite] = ACTIONS(12054), + [anon_sym_BSLASHTextcite] = ACTIONS(12054), + [anon_sym_BSLASHsmartcite] = ACTIONS(12054), + [anon_sym_BSLASHSmartcite] = ACTIONS(12054), + [anon_sym_BSLASHsupercite] = ACTIONS(12054), + [anon_sym_BSLASHautocite] = ACTIONS(12054), + [anon_sym_BSLASHAutocite] = ACTIONS(12054), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHvolcite] = ACTIONS(12054), + [anon_sym_BSLASHVolcite] = ACTIONS(12054), + [anon_sym_BSLASHpvolcite] = ACTIONS(12054), + [anon_sym_BSLASHPvolcite] = ACTIONS(12054), + [anon_sym_BSLASHfvolcite] = ACTIONS(12054), + [anon_sym_BSLASHftvolcite] = ACTIONS(12054), + [anon_sym_BSLASHsvolcite] = ACTIONS(12054), + [anon_sym_BSLASHSvolcite] = ACTIONS(12054), + [anon_sym_BSLASHtvolcite] = ACTIONS(12054), + [anon_sym_BSLASHTvolcite] = ACTIONS(12054), + [anon_sym_BSLASHavolcite] = ACTIONS(12054), + [anon_sym_BSLASHAvolcite] = ACTIONS(12054), + [anon_sym_BSLASHnotecite] = ACTIONS(12054), + [anon_sym_BSLASHpnotecite] = ACTIONS(12054), + [anon_sym_BSLASHPnotecite] = ACTIONS(12054), + [anon_sym_BSLASHfnotecite] = ACTIONS(12054), + [anon_sym_BSLASHusepackage] = ACTIONS(12054), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12054), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12054), + [anon_sym_BSLASHinclude] = ACTIONS(12054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12054), + [anon_sym_BSLASHinput] = ACTIONS(12054), + [anon_sym_BSLASHsubfile] = ACTIONS(12054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12054), + [anon_sym_BSLASHbibliography] = ACTIONS(12054), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12054), + [anon_sym_BSLASHincludesvg] = ACTIONS(12054), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12054), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12054), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12054), + [anon_sym_BSLASHimport] = ACTIONS(12054), + [anon_sym_BSLASHsubimport] = ACTIONS(12054), + [anon_sym_BSLASHinputfrom] = ACTIONS(12054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12054), + [anon_sym_BSLASHincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHlabel] = ACTIONS(12054), + [anon_sym_BSLASHref] = ACTIONS(12054), + [anon_sym_BSLASHvref] = ACTIONS(12054), + [anon_sym_BSLASHVref] = ACTIONS(12054), + [anon_sym_BSLASHautoref] = ACTIONS(12054), + [anon_sym_BSLASHpageref] = ACTIONS(12054), + [anon_sym_BSLASHcref] = ACTIONS(12054), + [anon_sym_BSLASHCref] = ACTIONS(12054), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnameCref] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHlabelcref] = ACTIONS(12054), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12054), + [anon_sym_BSLASHeqref] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange] = ACTIONS(12054), + [anon_sym_BSLASHCrefrange] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewlabel] = ACTIONS(12054), + [anon_sym_BSLASHnewcommand] = ACTIONS(12054), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12054), + [anon_sym_BSLASHgls] = ACTIONS(12054), + [anon_sym_BSLASHGls] = ACTIONS(12054), + [anon_sym_BSLASHGLS] = ACTIONS(12054), + [anon_sym_BSLASHglspl] = ACTIONS(12054), + [anon_sym_BSLASHGlspl] = ACTIONS(12054), + [anon_sym_BSLASHGLSpl] = ACTIONS(12054), + [anon_sym_BSLASHglsdisp] = ACTIONS(12054), + [anon_sym_BSLASHglslink] = ACTIONS(12054), + [anon_sym_BSLASHglstext] = ACTIONS(12054), + [anon_sym_BSLASHGlstext] = ACTIONS(12054), + [anon_sym_BSLASHGLStext] = ACTIONS(12054), + [anon_sym_BSLASHglsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12054), + [anon_sym_BSLASHglsplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSplural] = ACTIONS(12054), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHglsname] = ACTIONS(12054), + [anon_sym_BSLASHGlsname] = ACTIONS(12054), + [anon_sym_BSLASHGLSname] = ACTIONS(12054), + [anon_sym_BSLASHglssymbol] = ACTIONS(12054), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12054), + [anon_sym_BSLASHglsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12054), + [anon_sym_BSLASHglsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12054), + [anon_sym_BSLASHglsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12054), + [anon_sym_BSLASHglsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12054), + [anon_sym_BSLASHglsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12054), + [anon_sym_BSLASHnewacronym] = ACTIONS(12054), + [anon_sym_BSLASHacrshort] = ACTIONS(12054), + [anon_sym_BSLASHAcrshort] = ACTIONS(12054), + [anon_sym_BSLASHACRshort] = ACTIONS(12054), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12054), + [anon_sym_BSLASHacrlong] = ACTIONS(12054), + [anon_sym_BSLASHAcrlong] = ACTIONS(12054), + [anon_sym_BSLASHACRlong] = ACTIONS(12054), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12054), + [anon_sym_BSLASHacrfull] = ACTIONS(12054), + [anon_sym_BSLASHAcrfull] = ACTIONS(12054), + [anon_sym_BSLASHACRfull] = ACTIONS(12054), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12054), + [anon_sym_BSLASHacs] = ACTIONS(12054), + [anon_sym_BSLASHAcs] = ACTIONS(12054), + [anon_sym_BSLASHacsp] = ACTIONS(12054), + [anon_sym_BSLASHAcsp] = ACTIONS(12054), + [anon_sym_BSLASHacl] = ACTIONS(12054), + [anon_sym_BSLASHAcl] = ACTIONS(12054), + [anon_sym_BSLASHaclp] = ACTIONS(12054), + [anon_sym_BSLASHAclp] = ACTIONS(12054), + [anon_sym_BSLASHacf] = ACTIONS(12054), + [anon_sym_BSLASHAcf] = ACTIONS(12054), + [anon_sym_BSLASHacfp] = ACTIONS(12054), + [anon_sym_BSLASHAcfp] = ACTIONS(12054), + [anon_sym_BSLASHac] = ACTIONS(12054), + [anon_sym_BSLASHAc] = ACTIONS(12054), + [anon_sym_BSLASHacp] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12054), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12054), + [anon_sym_BSLASHcolor] = ACTIONS(12054), + [anon_sym_BSLASHcolorbox] = ACTIONS(12054), + [anon_sym_BSLASHtextcolor] = ACTIONS(12054), + [anon_sym_BSLASHpagecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12054), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12054), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12054), + }, + [655] = { + [sym_brace_group] = STATE(3429), + [sym_generic_command_name] = ACTIONS(12058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12058), + [aux_sym_chapter_token1] = ACTIONS(12058), + [aux_sym_section_token1] = ACTIONS(12058), + [aux_sym_subsection_token1] = ACTIONS(12058), + [aux_sym_subsubsection_token1] = ACTIONS(12058), + [aux_sym_paragraph_token1] = ACTIONS(12058), + [aux_sym_subparagraph_token1] = ACTIONS(12058), + [anon_sym_BSLASHitem] = ACTIONS(12058), + [anon_sym_LBRACK] = ACTIONS(12056), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12056), + [anon_sym_COMMA] = ACTIONS(12056), + [anon_sym_EQ] = ACTIONS(12056), + [sym_word] = ACTIONS(12056), + [sym_param] = ACTIONS(12056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12056), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12056), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12056), + [anon_sym_DOLLAR] = ACTIONS(12058), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12056), + [anon_sym_BSLASHbegin] = ACTIONS(12058), + [anon_sym_BSLASHcaption] = ACTIONS(12058), + [anon_sym_BSLASHcite] = ACTIONS(12058), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCite] = ACTIONS(12058), + [anon_sym_BSLASHnocite] = ACTIONS(12058), + [anon_sym_BSLASHcitet] = ACTIONS(12058), + [anon_sym_BSLASHcitep] = ACTIONS(12058), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteauthor] = ACTIONS(12058), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12058), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitetitle] = ACTIONS(12058), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteyear] = ACTIONS(12058), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitedate] = ACTIONS(12058), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteurl] = ACTIONS(12058), + [anon_sym_BSLASHfullcite] = ACTIONS(12058), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12058), + [anon_sym_BSLASHcitealt] = ACTIONS(12058), + [anon_sym_BSLASHcitealp] = ACTIONS(12058), + [anon_sym_BSLASHcitetext] = ACTIONS(12058), + [anon_sym_BSLASHparencite] = ACTIONS(12058), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHParencite] = ACTIONS(12058), + [anon_sym_BSLASHfootcite] = ACTIONS(12058), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12058), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12058), + [anon_sym_BSLASHtextcite] = ACTIONS(12058), + [anon_sym_BSLASHTextcite] = ACTIONS(12058), + [anon_sym_BSLASHsmartcite] = ACTIONS(12058), + [anon_sym_BSLASHSmartcite] = ACTIONS(12058), + [anon_sym_BSLASHsupercite] = ACTIONS(12058), + [anon_sym_BSLASHautocite] = ACTIONS(12058), + [anon_sym_BSLASHAutocite] = ACTIONS(12058), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHvolcite] = ACTIONS(12058), + [anon_sym_BSLASHVolcite] = ACTIONS(12058), + [anon_sym_BSLASHpvolcite] = ACTIONS(12058), + [anon_sym_BSLASHPvolcite] = ACTIONS(12058), + [anon_sym_BSLASHfvolcite] = ACTIONS(12058), + [anon_sym_BSLASHftvolcite] = ACTIONS(12058), + [anon_sym_BSLASHsvolcite] = ACTIONS(12058), + [anon_sym_BSLASHSvolcite] = ACTIONS(12058), + [anon_sym_BSLASHtvolcite] = ACTIONS(12058), + [anon_sym_BSLASHTvolcite] = ACTIONS(12058), + [anon_sym_BSLASHavolcite] = ACTIONS(12058), + [anon_sym_BSLASHAvolcite] = ACTIONS(12058), + [anon_sym_BSLASHnotecite] = ACTIONS(12058), + [anon_sym_BSLASHpnotecite] = ACTIONS(12058), + [anon_sym_BSLASHPnotecite] = ACTIONS(12058), + [anon_sym_BSLASHfnotecite] = ACTIONS(12058), + [anon_sym_BSLASHusepackage] = ACTIONS(12058), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12058), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12058), + [anon_sym_BSLASHinclude] = ACTIONS(12058), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12058), + [anon_sym_BSLASHinput] = ACTIONS(12058), + [anon_sym_BSLASHsubfile] = ACTIONS(12058), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12058), + [anon_sym_BSLASHbibliography] = ACTIONS(12058), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12058), + [anon_sym_BSLASHincludesvg] = ACTIONS(12058), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12058), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12058), + [anon_sym_BSLASHimport] = ACTIONS(12058), + [anon_sym_BSLASHsubimport] = ACTIONS(12058), + [anon_sym_BSLASHinputfrom] = ACTIONS(12058), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12058), + [anon_sym_BSLASHincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHlabel] = ACTIONS(12058), + [anon_sym_BSLASHref] = ACTIONS(12058), + [anon_sym_BSLASHvref] = ACTIONS(12058), + [anon_sym_BSLASHVref] = ACTIONS(12058), + [anon_sym_BSLASHautoref] = ACTIONS(12058), + [anon_sym_BSLASHpageref] = ACTIONS(12058), + [anon_sym_BSLASHcref] = ACTIONS(12058), + [anon_sym_BSLASHCref] = ACTIONS(12058), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnameCref] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHlabelcref] = ACTIONS(12058), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12058), + [anon_sym_BSLASHeqref] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange] = ACTIONS(12058), + [anon_sym_BSLASHCrefrange] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewlabel] = ACTIONS(12058), + [anon_sym_BSLASHnewcommand] = ACTIONS(12058), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12058), + [anon_sym_BSLASHgls] = ACTIONS(12058), + [anon_sym_BSLASHGls] = ACTIONS(12058), + [anon_sym_BSLASHGLS] = ACTIONS(12058), + [anon_sym_BSLASHglspl] = ACTIONS(12058), + [anon_sym_BSLASHGlspl] = ACTIONS(12058), + [anon_sym_BSLASHGLSpl] = ACTIONS(12058), + [anon_sym_BSLASHglsdisp] = ACTIONS(12058), + [anon_sym_BSLASHglslink] = ACTIONS(12058), + [anon_sym_BSLASHglstext] = ACTIONS(12058), + [anon_sym_BSLASHGlstext] = ACTIONS(12058), + [anon_sym_BSLASHGLStext] = ACTIONS(12058), + [anon_sym_BSLASHglsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12058), + [anon_sym_BSLASHglsplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSplural] = ACTIONS(12058), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHglsname] = ACTIONS(12058), + [anon_sym_BSLASHGlsname] = ACTIONS(12058), + [anon_sym_BSLASHGLSname] = ACTIONS(12058), + [anon_sym_BSLASHglssymbol] = ACTIONS(12058), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12058), + [anon_sym_BSLASHglsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12058), + [anon_sym_BSLASHglsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12058), + [anon_sym_BSLASHglsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12058), + [anon_sym_BSLASHglsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12058), + [anon_sym_BSLASHglsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12058), + [anon_sym_BSLASHnewacronym] = ACTIONS(12058), + [anon_sym_BSLASHacrshort] = ACTIONS(12058), + [anon_sym_BSLASHAcrshort] = ACTIONS(12058), + [anon_sym_BSLASHACRshort] = ACTIONS(12058), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12058), + [anon_sym_BSLASHacrlong] = ACTIONS(12058), + [anon_sym_BSLASHAcrlong] = ACTIONS(12058), + [anon_sym_BSLASHACRlong] = ACTIONS(12058), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12058), + [anon_sym_BSLASHacrfull] = ACTIONS(12058), + [anon_sym_BSLASHAcrfull] = ACTIONS(12058), + [anon_sym_BSLASHACRfull] = ACTIONS(12058), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12058), + [anon_sym_BSLASHacs] = ACTIONS(12058), + [anon_sym_BSLASHAcs] = ACTIONS(12058), + [anon_sym_BSLASHacsp] = ACTIONS(12058), + [anon_sym_BSLASHAcsp] = ACTIONS(12058), + [anon_sym_BSLASHacl] = ACTIONS(12058), + [anon_sym_BSLASHAcl] = ACTIONS(12058), + [anon_sym_BSLASHaclp] = ACTIONS(12058), + [anon_sym_BSLASHAclp] = ACTIONS(12058), + [anon_sym_BSLASHacf] = ACTIONS(12058), + [anon_sym_BSLASHAcf] = ACTIONS(12058), + [anon_sym_BSLASHacfp] = ACTIONS(12058), + [anon_sym_BSLASHAcfp] = ACTIONS(12058), + [anon_sym_BSLASHac] = ACTIONS(12058), + [anon_sym_BSLASHAc] = ACTIONS(12058), + [anon_sym_BSLASHacp] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12058), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12058), + [anon_sym_BSLASHcolor] = ACTIONS(12058), + [anon_sym_BSLASHcolorbox] = ACTIONS(12058), + [anon_sym_BSLASHtextcolor] = ACTIONS(12058), + [anon_sym_BSLASHpagecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12058), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12058), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12058), + }, + [656] = { + [sym_brace_group] = STATE(3237), + [sym_generic_command_name] = ACTIONS(12058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12058), + [aux_sym_section_token1] = ACTIONS(12058), + [aux_sym_subsection_token1] = ACTIONS(12058), + [aux_sym_subsubsection_token1] = ACTIONS(12058), + [aux_sym_paragraph_token1] = ACTIONS(12058), + [aux_sym_subparagraph_token1] = ACTIONS(12058), + [anon_sym_BSLASHitem] = ACTIONS(12058), + [anon_sym_LBRACK] = ACTIONS(12056), + [anon_sym_RBRACK] = ACTIONS(12056), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12056), + [anon_sym_LPAREN] = ACTIONS(12056), + [anon_sym_COMMA] = ACTIONS(12056), + [anon_sym_EQ] = ACTIONS(12056), + [sym_word] = ACTIONS(12056), + [sym_param] = ACTIONS(12056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12056), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12056), + [anon_sym_DOLLAR] = ACTIONS(12058), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12056), + [anon_sym_BSLASHbegin] = ACTIONS(12058), + [anon_sym_BSLASHcaption] = ACTIONS(12058), + [anon_sym_BSLASHcite] = ACTIONS(12058), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCite] = ACTIONS(12058), + [anon_sym_BSLASHnocite] = ACTIONS(12058), + [anon_sym_BSLASHcitet] = ACTIONS(12058), + [anon_sym_BSLASHcitep] = ACTIONS(12058), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteauthor] = ACTIONS(12058), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12058), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitetitle] = ACTIONS(12058), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteyear] = ACTIONS(12058), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitedate] = ACTIONS(12058), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteurl] = ACTIONS(12058), + [anon_sym_BSLASHfullcite] = ACTIONS(12058), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12058), + [anon_sym_BSLASHcitealt] = ACTIONS(12058), + [anon_sym_BSLASHcitealp] = ACTIONS(12058), + [anon_sym_BSLASHcitetext] = ACTIONS(12058), + [anon_sym_BSLASHparencite] = ACTIONS(12058), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHParencite] = ACTIONS(12058), + [anon_sym_BSLASHfootcite] = ACTIONS(12058), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12058), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12058), + [anon_sym_BSLASHtextcite] = ACTIONS(12058), + [anon_sym_BSLASHTextcite] = ACTIONS(12058), + [anon_sym_BSLASHsmartcite] = ACTIONS(12058), + [anon_sym_BSLASHSmartcite] = ACTIONS(12058), + [anon_sym_BSLASHsupercite] = ACTIONS(12058), + [anon_sym_BSLASHautocite] = ACTIONS(12058), + [anon_sym_BSLASHAutocite] = ACTIONS(12058), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHvolcite] = ACTIONS(12058), + [anon_sym_BSLASHVolcite] = ACTIONS(12058), + [anon_sym_BSLASHpvolcite] = ACTIONS(12058), + [anon_sym_BSLASHPvolcite] = ACTIONS(12058), + [anon_sym_BSLASHfvolcite] = ACTIONS(12058), + [anon_sym_BSLASHftvolcite] = ACTIONS(12058), + [anon_sym_BSLASHsvolcite] = ACTIONS(12058), + [anon_sym_BSLASHSvolcite] = ACTIONS(12058), + [anon_sym_BSLASHtvolcite] = ACTIONS(12058), + [anon_sym_BSLASHTvolcite] = ACTIONS(12058), + [anon_sym_BSLASHavolcite] = ACTIONS(12058), + [anon_sym_BSLASHAvolcite] = ACTIONS(12058), + [anon_sym_BSLASHnotecite] = ACTIONS(12058), + [anon_sym_BSLASHpnotecite] = ACTIONS(12058), + [anon_sym_BSLASHPnotecite] = ACTIONS(12058), + [anon_sym_BSLASHfnotecite] = ACTIONS(12058), + [anon_sym_BSLASHusepackage] = ACTIONS(12058), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12058), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12058), + [anon_sym_BSLASHinclude] = ACTIONS(12058), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12058), + [anon_sym_BSLASHinput] = ACTIONS(12058), + [anon_sym_BSLASHsubfile] = ACTIONS(12058), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12058), + [anon_sym_BSLASHbibliography] = ACTIONS(12058), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12058), + [anon_sym_BSLASHincludesvg] = ACTIONS(12058), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12058), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12058), + [anon_sym_BSLASHimport] = ACTIONS(12058), + [anon_sym_BSLASHsubimport] = ACTIONS(12058), + [anon_sym_BSLASHinputfrom] = ACTIONS(12058), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12058), + [anon_sym_BSLASHincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHlabel] = ACTIONS(12058), + [anon_sym_BSLASHref] = ACTIONS(12058), + [anon_sym_BSLASHvref] = ACTIONS(12058), + [anon_sym_BSLASHVref] = ACTIONS(12058), + [anon_sym_BSLASHautoref] = ACTIONS(12058), + [anon_sym_BSLASHpageref] = ACTIONS(12058), + [anon_sym_BSLASHcref] = ACTIONS(12058), + [anon_sym_BSLASHCref] = ACTIONS(12058), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnameCref] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHlabelcref] = ACTIONS(12058), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12058), + [anon_sym_BSLASHeqref] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange] = ACTIONS(12058), + [anon_sym_BSLASHCrefrange] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewlabel] = ACTIONS(12058), + [anon_sym_BSLASHnewcommand] = ACTIONS(12058), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12058), + [anon_sym_BSLASHgls] = ACTIONS(12058), + [anon_sym_BSLASHGls] = ACTIONS(12058), + [anon_sym_BSLASHGLS] = ACTIONS(12058), + [anon_sym_BSLASHglspl] = ACTIONS(12058), + [anon_sym_BSLASHGlspl] = ACTIONS(12058), + [anon_sym_BSLASHGLSpl] = ACTIONS(12058), + [anon_sym_BSLASHglsdisp] = ACTIONS(12058), + [anon_sym_BSLASHglslink] = ACTIONS(12058), + [anon_sym_BSLASHglstext] = ACTIONS(12058), + [anon_sym_BSLASHGlstext] = ACTIONS(12058), + [anon_sym_BSLASHGLStext] = ACTIONS(12058), + [anon_sym_BSLASHglsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12058), + [anon_sym_BSLASHglsplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSplural] = ACTIONS(12058), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHglsname] = ACTIONS(12058), + [anon_sym_BSLASHGlsname] = ACTIONS(12058), + [anon_sym_BSLASHGLSname] = ACTIONS(12058), + [anon_sym_BSLASHglssymbol] = ACTIONS(12058), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12058), + [anon_sym_BSLASHglsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12058), + [anon_sym_BSLASHglsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12058), + [anon_sym_BSLASHglsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12058), + [anon_sym_BSLASHglsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12058), + [anon_sym_BSLASHglsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12058), + [anon_sym_BSLASHnewacronym] = ACTIONS(12058), + [anon_sym_BSLASHacrshort] = ACTIONS(12058), + [anon_sym_BSLASHAcrshort] = ACTIONS(12058), + [anon_sym_BSLASHACRshort] = ACTIONS(12058), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12058), + [anon_sym_BSLASHacrlong] = ACTIONS(12058), + [anon_sym_BSLASHAcrlong] = ACTIONS(12058), + [anon_sym_BSLASHACRlong] = ACTIONS(12058), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12058), + [anon_sym_BSLASHacrfull] = ACTIONS(12058), + [anon_sym_BSLASHAcrfull] = ACTIONS(12058), + [anon_sym_BSLASHACRfull] = ACTIONS(12058), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12058), + [anon_sym_BSLASHacs] = ACTIONS(12058), + [anon_sym_BSLASHAcs] = ACTIONS(12058), + [anon_sym_BSLASHacsp] = ACTIONS(12058), + [anon_sym_BSLASHAcsp] = ACTIONS(12058), + [anon_sym_BSLASHacl] = ACTIONS(12058), + [anon_sym_BSLASHAcl] = ACTIONS(12058), + [anon_sym_BSLASHaclp] = ACTIONS(12058), + [anon_sym_BSLASHAclp] = ACTIONS(12058), + [anon_sym_BSLASHacf] = ACTIONS(12058), + [anon_sym_BSLASHAcf] = ACTIONS(12058), + [anon_sym_BSLASHacfp] = ACTIONS(12058), + [anon_sym_BSLASHAcfp] = ACTIONS(12058), + [anon_sym_BSLASHac] = ACTIONS(12058), + [anon_sym_BSLASHAc] = ACTIONS(12058), + [anon_sym_BSLASHacp] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12058), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12058), + [anon_sym_BSLASHcolor] = ACTIONS(12058), + [anon_sym_BSLASHcolorbox] = ACTIONS(12058), + [anon_sym_BSLASHtextcolor] = ACTIONS(12058), + [anon_sym_BSLASHpagecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12058), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12058), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12058), + }, + [657] = { + [sym_brace_group] = STATE(3307), + [sym_generic_command_name] = ACTIONS(12054), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12054), + [aux_sym_chapter_token1] = ACTIONS(12054), + [aux_sym_section_token1] = ACTIONS(12054), + [aux_sym_subsection_token1] = ACTIONS(12054), + [aux_sym_subsubsection_token1] = ACTIONS(12054), + [aux_sym_paragraph_token1] = ACTIONS(12054), + [aux_sym_subparagraph_token1] = ACTIONS(12054), + [anon_sym_BSLASHitem] = ACTIONS(12054), + [anon_sym_LBRACK] = ACTIONS(12052), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12052), + [anon_sym_COMMA] = ACTIONS(12052), + [anon_sym_EQ] = ACTIONS(12052), + [sym_word] = ACTIONS(12052), + [sym_param] = ACTIONS(12052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12052), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12052), + [anon_sym_DOLLAR] = ACTIONS(12054), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12052), + [anon_sym_BSLASHbegin] = ACTIONS(12054), + [anon_sym_BSLASHend] = ACTIONS(12054), + [anon_sym_BSLASHcaption] = ACTIONS(12054), + [anon_sym_BSLASHcite] = ACTIONS(12054), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCite] = ACTIONS(12054), + [anon_sym_BSLASHnocite] = ACTIONS(12054), + [anon_sym_BSLASHcitet] = ACTIONS(12054), + [anon_sym_BSLASHcitep] = ACTIONS(12054), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteauthor] = ACTIONS(12054), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12054), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitetitle] = ACTIONS(12054), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteyear] = ACTIONS(12054), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitedate] = ACTIONS(12054), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteurl] = ACTIONS(12054), + [anon_sym_BSLASHfullcite] = ACTIONS(12054), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12054), + [anon_sym_BSLASHcitealt] = ACTIONS(12054), + [anon_sym_BSLASHcitealp] = ACTIONS(12054), + [anon_sym_BSLASHcitetext] = ACTIONS(12054), + [anon_sym_BSLASHparencite] = ACTIONS(12054), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHParencite] = ACTIONS(12054), + [anon_sym_BSLASHfootcite] = ACTIONS(12054), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12054), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12054), + [anon_sym_BSLASHtextcite] = ACTIONS(12054), + [anon_sym_BSLASHTextcite] = ACTIONS(12054), + [anon_sym_BSLASHsmartcite] = ACTIONS(12054), + [anon_sym_BSLASHSmartcite] = ACTIONS(12054), + [anon_sym_BSLASHsupercite] = ACTIONS(12054), + [anon_sym_BSLASHautocite] = ACTIONS(12054), + [anon_sym_BSLASHAutocite] = ACTIONS(12054), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHvolcite] = ACTIONS(12054), + [anon_sym_BSLASHVolcite] = ACTIONS(12054), + [anon_sym_BSLASHpvolcite] = ACTIONS(12054), + [anon_sym_BSLASHPvolcite] = ACTIONS(12054), + [anon_sym_BSLASHfvolcite] = ACTIONS(12054), + [anon_sym_BSLASHftvolcite] = ACTIONS(12054), + [anon_sym_BSLASHsvolcite] = ACTIONS(12054), + [anon_sym_BSLASHSvolcite] = ACTIONS(12054), + [anon_sym_BSLASHtvolcite] = ACTIONS(12054), + [anon_sym_BSLASHTvolcite] = ACTIONS(12054), + [anon_sym_BSLASHavolcite] = ACTIONS(12054), + [anon_sym_BSLASHAvolcite] = ACTIONS(12054), + [anon_sym_BSLASHnotecite] = ACTIONS(12054), + [anon_sym_BSLASHpnotecite] = ACTIONS(12054), + [anon_sym_BSLASHPnotecite] = ACTIONS(12054), + [anon_sym_BSLASHfnotecite] = ACTIONS(12054), + [anon_sym_BSLASHusepackage] = ACTIONS(12054), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12054), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12054), + [anon_sym_BSLASHinclude] = ACTIONS(12054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12054), + [anon_sym_BSLASHinput] = ACTIONS(12054), + [anon_sym_BSLASHsubfile] = ACTIONS(12054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12054), + [anon_sym_BSLASHbibliography] = ACTIONS(12054), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12054), + [anon_sym_BSLASHincludesvg] = ACTIONS(12054), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12054), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12054), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12054), + [anon_sym_BSLASHimport] = ACTIONS(12054), + [anon_sym_BSLASHsubimport] = ACTIONS(12054), + [anon_sym_BSLASHinputfrom] = ACTIONS(12054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12054), + [anon_sym_BSLASHincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHlabel] = ACTIONS(12054), + [anon_sym_BSLASHref] = ACTIONS(12054), + [anon_sym_BSLASHvref] = ACTIONS(12054), + [anon_sym_BSLASHVref] = ACTIONS(12054), + [anon_sym_BSLASHautoref] = ACTIONS(12054), + [anon_sym_BSLASHpageref] = ACTIONS(12054), + [anon_sym_BSLASHcref] = ACTIONS(12054), + [anon_sym_BSLASHCref] = ACTIONS(12054), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnameCref] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHlabelcref] = ACTIONS(12054), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12054), + [anon_sym_BSLASHeqref] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange] = ACTIONS(12054), + [anon_sym_BSLASHCrefrange] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewlabel] = ACTIONS(12054), + [anon_sym_BSLASHnewcommand] = ACTIONS(12054), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12054), + [anon_sym_BSLASHgls] = ACTIONS(12054), + [anon_sym_BSLASHGls] = ACTIONS(12054), + [anon_sym_BSLASHGLS] = ACTIONS(12054), + [anon_sym_BSLASHglspl] = ACTIONS(12054), + [anon_sym_BSLASHGlspl] = ACTIONS(12054), + [anon_sym_BSLASHGLSpl] = ACTIONS(12054), + [anon_sym_BSLASHglsdisp] = ACTIONS(12054), + [anon_sym_BSLASHglslink] = ACTIONS(12054), + [anon_sym_BSLASHglstext] = ACTIONS(12054), + [anon_sym_BSLASHGlstext] = ACTIONS(12054), + [anon_sym_BSLASHGLStext] = ACTIONS(12054), + [anon_sym_BSLASHglsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12054), + [anon_sym_BSLASHglsplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSplural] = ACTIONS(12054), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHglsname] = ACTIONS(12054), + [anon_sym_BSLASHGlsname] = ACTIONS(12054), + [anon_sym_BSLASHGLSname] = ACTIONS(12054), + [anon_sym_BSLASHglssymbol] = ACTIONS(12054), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12054), + [anon_sym_BSLASHglsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12054), + [anon_sym_BSLASHglsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12054), + [anon_sym_BSLASHglsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12054), + [anon_sym_BSLASHglsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12054), + [anon_sym_BSLASHglsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12054), + [anon_sym_BSLASHnewacronym] = ACTIONS(12054), + [anon_sym_BSLASHacrshort] = ACTIONS(12054), + [anon_sym_BSLASHAcrshort] = ACTIONS(12054), + [anon_sym_BSLASHACRshort] = ACTIONS(12054), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12054), + [anon_sym_BSLASHacrlong] = ACTIONS(12054), + [anon_sym_BSLASHAcrlong] = ACTIONS(12054), + [anon_sym_BSLASHACRlong] = ACTIONS(12054), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12054), + [anon_sym_BSLASHacrfull] = ACTIONS(12054), + [anon_sym_BSLASHAcrfull] = ACTIONS(12054), + [anon_sym_BSLASHACRfull] = ACTIONS(12054), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12054), + [anon_sym_BSLASHacs] = ACTIONS(12054), + [anon_sym_BSLASHAcs] = ACTIONS(12054), + [anon_sym_BSLASHacsp] = ACTIONS(12054), + [anon_sym_BSLASHAcsp] = ACTIONS(12054), + [anon_sym_BSLASHacl] = ACTIONS(12054), + [anon_sym_BSLASHAcl] = ACTIONS(12054), + [anon_sym_BSLASHaclp] = ACTIONS(12054), + [anon_sym_BSLASHAclp] = ACTIONS(12054), + [anon_sym_BSLASHacf] = ACTIONS(12054), + [anon_sym_BSLASHAcf] = ACTIONS(12054), + [anon_sym_BSLASHacfp] = ACTIONS(12054), + [anon_sym_BSLASHAcfp] = ACTIONS(12054), + [anon_sym_BSLASHac] = ACTIONS(12054), + [anon_sym_BSLASHAc] = ACTIONS(12054), + [anon_sym_BSLASHacp] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12054), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12054), + [anon_sym_BSLASHcolor] = ACTIONS(12054), + [anon_sym_BSLASHcolorbox] = ACTIONS(12054), + [anon_sym_BSLASHtextcolor] = ACTIONS(12054), + [anon_sym_BSLASHpagecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12054), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12054), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12054), + }, + [658] = { + [sym_brace_group] = STATE(3308), + [sym_generic_command_name] = ACTIONS(12088), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12088), + [aux_sym_chapter_token1] = ACTIONS(12088), + [aux_sym_section_token1] = ACTIONS(12088), + [aux_sym_subsection_token1] = ACTIONS(12088), + [aux_sym_subsubsection_token1] = ACTIONS(12088), + [aux_sym_paragraph_token1] = ACTIONS(12088), + [aux_sym_subparagraph_token1] = ACTIONS(12088), + [anon_sym_BSLASHitem] = ACTIONS(12088), + [anon_sym_LBRACK] = ACTIONS(12086), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12086), + [anon_sym_COMMA] = ACTIONS(12086), + [anon_sym_EQ] = ACTIONS(12086), + [sym_word] = ACTIONS(12086), + [sym_param] = ACTIONS(12086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12086), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12086), + [anon_sym_DOLLAR] = ACTIONS(12088), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12086), + [anon_sym_BSLASHbegin] = ACTIONS(12088), + [anon_sym_BSLASHend] = ACTIONS(12088), + [anon_sym_BSLASHcaption] = ACTIONS(12088), + [anon_sym_BSLASHcite] = ACTIONS(12088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCite] = ACTIONS(12088), + [anon_sym_BSLASHnocite] = ACTIONS(12088), + [anon_sym_BSLASHcitet] = ACTIONS(12088), + [anon_sym_BSLASHcitep] = ACTIONS(12088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteauthor] = ACTIONS(12088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitetitle] = ACTIONS(12088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteyear] = ACTIONS(12088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitedate] = ACTIONS(12088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteurl] = ACTIONS(12088), + [anon_sym_BSLASHfullcite] = ACTIONS(12088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12088), + [anon_sym_BSLASHcitealt] = ACTIONS(12088), + [anon_sym_BSLASHcitealp] = ACTIONS(12088), + [anon_sym_BSLASHcitetext] = ACTIONS(12088), + [anon_sym_BSLASHparencite] = ACTIONS(12088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHParencite] = ACTIONS(12088), + [anon_sym_BSLASHfootcite] = ACTIONS(12088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12088), + [anon_sym_BSLASHtextcite] = ACTIONS(12088), + [anon_sym_BSLASHTextcite] = ACTIONS(12088), + [anon_sym_BSLASHsmartcite] = ACTIONS(12088), + [anon_sym_BSLASHSmartcite] = ACTIONS(12088), + [anon_sym_BSLASHsupercite] = ACTIONS(12088), + [anon_sym_BSLASHautocite] = ACTIONS(12088), + [anon_sym_BSLASHAutocite] = ACTIONS(12088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHvolcite] = ACTIONS(12088), + [anon_sym_BSLASHVolcite] = ACTIONS(12088), + [anon_sym_BSLASHpvolcite] = ACTIONS(12088), + [anon_sym_BSLASHPvolcite] = ACTIONS(12088), + [anon_sym_BSLASHfvolcite] = ACTIONS(12088), + [anon_sym_BSLASHftvolcite] = ACTIONS(12088), + [anon_sym_BSLASHsvolcite] = ACTIONS(12088), + [anon_sym_BSLASHSvolcite] = ACTIONS(12088), + [anon_sym_BSLASHtvolcite] = ACTIONS(12088), + [anon_sym_BSLASHTvolcite] = ACTIONS(12088), + [anon_sym_BSLASHavolcite] = ACTIONS(12088), + [anon_sym_BSLASHAvolcite] = ACTIONS(12088), + [anon_sym_BSLASHnotecite] = ACTIONS(12088), + [anon_sym_BSLASHpnotecite] = ACTIONS(12088), + [anon_sym_BSLASHPnotecite] = ACTIONS(12088), + [anon_sym_BSLASHfnotecite] = ACTIONS(12088), + [anon_sym_BSLASHusepackage] = ACTIONS(12088), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12088), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12088), + [anon_sym_BSLASHinclude] = ACTIONS(12088), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12088), + [anon_sym_BSLASHinput] = ACTIONS(12088), + [anon_sym_BSLASHsubfile] = ACTIONS(12088), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12088), + [anon_sym_BSLASHbibliography] = ACTIONS(12088), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12088), + [anon_sym_BSLASHincludesvg] = ACTIONS(12088), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12088), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12088), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12088), + [anon_sym_BSLASHimport] = ACTIONS(12088), + [anon_sym_BSLASHsubimport] = ACTIONS(12088), + [anon_sym_BSLASHinputfrom] = ACTIONS(12088), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12088), + [anon_sym_BSLASHincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHlabel] = ACTIONS(12088), + [anon_sym_BSLASHref] = ACTIONS(12088), + [anon_sym_BSLASHvref] = ACTIONS(12088), + [anon_sym_BSLASHVref] = ACTIONS(12088), + [anon_sym_BSLASHautoref] = ACTIONS(12088), + [anon_sym_BSLASHpageref] = ACTIONS(12088), + [anon_sym_BSLASHcref] = ACTIONS(12088), + [anon_sym_BSLASHCref] = ACTIONS(12088), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnameCref] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHlabelcref] = ACTIONS(12088), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12088), + [anon_sym_BSLASHeqref] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange] = ACTIONS(12088), + [anon_sym_BSLASHCrefrange] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewlabel] = ACTIONS(12088), + [anon_sym_BSLASHnewcommand] = ACTIONS(12088), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12088), + [anon_sym_BSLASHgls] = ACTIONS(12088), + [anon_sym_BSLASHGls] = ACTIONS(12088), + [anon_sym_BSLASHGLS] = ACTIONS(12088), + [anon_sym_BSLASHglspl] = ACTIONS(12088), + [anon_sym_BSLASHGlspl] = ACTIONS(12088), + [anon_sym_BSLASHGLSpl] = ACTIONS(12088), + [anon_sym_BSLASHglsdisp] = ACTIONS(12088), + [anon_sym_BSLASHglslink] = ACTIONS(12088), + [anon_sym_BSLASHglstext] = ACTIONS(12088), + [anon_sym_BSLASHGlstext] = ACTIONS(12088), + [anon_sym_BSLASHGLStext] = ACTIONS(12088), + [anon_sym_BSLASHglsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12088), + [anon_sym_BSLASHglsplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSplural] = ACTIONS(12088), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHglsname] = ACTIONS(12088), + [anon_sym_BSLASHGlsname] = ACTIONS(12088), + [anon_sym_BSLASHGLSname] = ACTIONS(12088), + [anon_sym_BSLASHglssymbol] = ACTIONS(12088), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12088), + [anon_sym_BSLASHglsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12088), + [anon_sym_BSLASHglsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12088), + [anon_sym_BSLASHglsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12088), + [anon_sym_BSLASHglsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12088), + [anon_sym_BSLASHglsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12088), + [anon_sym_BSLASHnewacronym] = ACTIONS(12088), + [anon_sym_BSLASHacrshort] = ACTIONS(12088), + [anon_sym_BSLASHAcrshort] = ACTIONS(12088), + [anon_sym_BSLASHACRshort] = ACTIONS(12088), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12088), + [anon_sym_BSLASHacrlong] = ACTIONS(12088), + [anon_sym_BSLASHAcrlong] = ACTIONS(12088), + [anon_sym_BSLASHACRlong] = ACTIONS(12088), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12088), + [anon_sym_BSLASHacrfull] = ACTIONS(12088), + [anon_sym_BSLASHAcrfull] = ACTIONS(12088), + [anon_sym_BSLASHACRfull] = ACTIONS(12088), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12088), + [anon_sym_BSLASHacs] = ACTIONS(12088), + [anon_sym_BSLASHAcs] = ACTIONS(12088), + [anon_sym_BSLASHacsp] = ACTIONS(12088), + [anon_sym_BSLASHAcsp] = ACTIONS(12088), + [anon_sym_BSLASHacl] = ACTIONS(12088), + [anon_sym_BSLASHAcl] = ACTIONS(12088), + [anon_sym_BSLASHaclp] = ACTIONS(12088), + [anon_sym_BSLASHAclp] = ACTIONS(12088), + [anon_sym_BSLASHacf] = ACTIONS(12088), + [anon_sym_BSLASHAcf] = ACTIONS(12088), + [anon_sym_BSLASHacfp] = ACTIONS(12088), + [anon_sym_BSLASHAcfp] = ACTIONS(12088), + [anon_sym_BSLASHac] = ACTIONS(12088), + [anon_sym_BSLASHAc] = ACTIONS(12088), + [anon_sym_BSLASHacp] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12088), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12088), + [anon_sym_BSLASHcolor] = ACTIONS(12088), + [anon_sym_BSLASHcolorbox] = ACTIONS(12088), + [anon_sym_BSLASHtextcolor] = ACTIONS(12088), + [anon_sym_BSLASHpagecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12088), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12088), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12088), + }, + [659] = { + [sym_brace_group] = STATE(3316), + [sym_generic_command_name] = ACTIONS(12100), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12100), + [aux_sym_chapter_token1] = ACTIONS(12100), + [aux_sym_section_token1] = ACTIONS(12100), + [aux_sym_subsection_token1] = ACTIONS(12100), + [aux_sym_subsubsection_token1] = ACTIONS(12100), + [aux_sym_paragraph_token1] = ACTIONS(12100), + [aux_sym_subparagraph_token1] = ACTIONS(12100), + [anon_sym_BSLASHitem] = ACTIONS(12100), + [anon_sym_LBRACK] = ACTIONS(12098), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12098), + [anon_sym_COMMA] = ACTIONS(12098), + [anon_sym_EQ] = ACTIONS(12098), + [sym_word] = ACTIONS(12098), + [sym_param] = ACTIONS(12098), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12098), + [anon_sym_DOLLAR] = ACTIONS(12100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12098), + [anon_sym_BSLASHbegin] = ACTIONS(12100), + [anon_sym_BSLASHend] = ACTIONS(12100), + [anon_sym_BSLASHcaption] = ACTIONS(12100), + [anon_sym_BSLASHcite] = ACTIONS(12100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCite] = ACTIONS(12100), + [anon_sym_BSLASHnocite] = ACTIONS(12100), + [anon_sym_BSLASHcitet] = ACTIONS(12100), + [anon_sym_BSLASHcitep] = ACTIONS(12100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteauthor] = ACTIONS(12100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitetitle] = ACTIONS(12100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteyear] = ACTIONS(12100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitedate] = ACTIONS(12100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteurl] = ACTIONS(12100), + [anon_sym_BSLASHfullcite] = ACTIONS(12100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12100), + [anon_sym_BSLASHcitealt] = ACTIONS(12100), + [anon_sym_BSLASHcitealp] = ACTIONS(12100), + [anon_sym_BSLASHcitetext] = ACTIONS(12100), + [anon_sym_BSLASHparencite] = ACTIONS(12100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHParencite] = ACTIONS(12100), + [anon_sym_BSLASHfootcite] = ACTIONS(12100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12100), + [anon_sym_BSLASHtextcite] = ACTIONS(12100), + [anon_sym_BSLASHTextcite] = ACTIONS(12100), + [anon_sym_BSLASHsmartcite] = ACTIONS(12100), + [anon_sym_BSLASHSmartcite] = ACTIONS(12100), + [anon_sym_BSLASHsupercite] = ACTIONS(12100), + [anon_sym_BSLASHautocite] = ACTIONS(12100), + [anon_sym_BSLASHAutocite] = ACTIONS(12100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHvolcite] = ACTIONS(12100), + [anon_sym_BSLASHVolcite] = ACTIONS(12100), + [anon_sym_BSLASHpvolcite] = ACTIONS(12100), + [anon_sym_BSLASHPvolcite] = ACTIONS(12100), + [anon_sym_BSLASHfvolcite] = ACTIONS(12100), + [anon_sym_BSLASHftvolcite] = ACTIONS(12100), + [anon_sym_BSLASHsvolcite] = ACTIONS(12100), + [anon_sym_BSLASHSvolcite] = ACTIONS(12100), + [anon_sym_BSLASHtvolcite] = ACTIONS(12100), + [anon_sym_BSLASHTvolcite] = ACTIONS(12100), + [anon_sym_BSLASHavolcite] = ACTIONS(12100), + [anon_sym_BSLASHAvolcite] = ACTIONS(12100), + [anon_sym_BSLASHnotecite] = ACTIONS(12100), + [anon_sym_BSLASHpnotecite] = ACTIONS(12100), + [anon_sym_BSLASHPnotecite] = ACTIONS(12100), + [anon_sym_BSLASHfnotecite] = ACTIONS(12100), + [anon_sym_BSLASHusepackage] = ACTIONS(12100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12100), + [anon_sym_BSLASHinclude] = ACTIONS(12100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12100), + [anon_sym_BSLASHinput] = ACTIONS(12100), + [anon_sym_BSLASHsubfile] = ACTIONS(12100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12100), + [anon_sym_BSLASHbibliography] = ACTIONS(12100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12100), + [anon_sym_BSLASHincludesvg] = ACTIONS(12100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12100), + [anon_sym_BSLASHimport] = ACTIONS(12100), + [anon_sym_BSLASHsubimport] = ACTIONS(12100), + [anon_sym_BSLASHinputfrom] = ACTIONS(12100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12100), + [anon_sym_BSLASHincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHlabel] = ACTIONS(12100), + [anon_sym_BSLASHref] = ACTIONS(12100), + [anon_sym_BSLASHvref] = ACTIONS(12100), + [anon_sym_BSLASHVref] = ACTIONS(12100), + [anon_sym_BSLASHautoref] = ACTIONS(12100), + [anon_sym_BSLASHpageref] = ACTIONS(12100), + [anon_sym_BSLASHcref] = ACTIONS(12100), + [anon_sym_BSLASHCref] = ACTIONS(12100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnameCref] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHlabelcref] = ACTIONS(12100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12100), + [anon_sym_BSLASHeqref] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange] = ACTIONS(12100), + [anon_sym_BSLASHCrefrange] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewlabel] = ACTIONS(12100), + [anon_sym_BSLASHnewcommand] = ACTIONS(12100), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12100), + [anon_sym_BSLASHgls] = ACTIONS(12100), + [anon_sym_BSLASHGls] = ACTIONS(12100), + [anon_sym_BSLASHGLS] = ACTIONS(12100), + [anon_sym_BSLASHglspl] = ACTIONS(12100), + [anon_sym_BSLASHGlspl] = ACTIONS(12100), + [anon_sym_BSLASHGLSpl] = ACTIONS(12100), + [anon_sym_BSLASHglsdisp] = ACTIONS(12100), + [anon_sym_BSLASHglslink] = ACTIONS(12100), + [anon_sym_BSLASHglstext] = ACTIONS(12100), + [anon_sym_BSLASHGlstext] = ACTIONS(12100), + [anon_sym_BSLASHGLStext] = ACTIONS(12100), + [anon_sym_BSLASHglsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12100), + [anon_sym_BSLASHglsplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSplural] = ACTIONS(12100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHglsname] = ACTIONS(12100), + [anon_sym_BSLASHGlsname] = ACTIONS(12100), + [anon_sym_BSLASHGLSname] = ACTIONS(12100), + [anon_sym_BSLASHglssymbol] = ACTIONS(12100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12100), + [anon_sym_BSLASHglsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12100), + [anon_sym_BSLASHglsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12100), + [anon_sym_BSLASHglsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12100), + [anon_sym_BSLASHglsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12100), + [anon_sym_BSLASHglsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12100), + [anon_sym_BSLASHnewacronym] = ACTIONS(12100), + [anon_sym_BSLASHacrshort] = ACTIONS(12100), + [anon_sym_BSLASHAcrshort] = ACTIONS(12100), + [anon_sym_BSLASHACRshort] = ACTIONS(12100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12100), + [anon_sym_BSLASHacrlong] = ACTIONS(12100), + [anon_sym_BSLASHAcrlong] = ACTIONS(12100), + [anon_sym_BSLASHACRlong] = ACTIONS(12100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12100), + [anon_sym_BSLASHacrfull] = ACTIONS(12100), + [anon_sym_BSLASHAcrfull] = ACTIONS(12100), + [anon_sym_BSLASHACRfull] = ACTIONS(12100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12100), + [anon_sym_BSLASHacs] = ACTIONS(12100), + [anon_sym_BSLASHAcs] = ACTIONS(12100), + [anon_sym_BSLASHacsp] = ACTIONS(12100), + [anon_sym_BSLASHAcsp] = ACTIONS(12100), + [anon_sym_BSLASHacl] = ACTIONS(12100), + [anon_sym_BSLASHAcl] = ACTIONS(12100), + [anon_sym_BSLASHaclp] = ACTIONS(12100), + [anon_sym_BSLASHAclp] = ACTIONS(12100), + [anon_sym_BSLASHacf] = ACTIONS(12100), + [anon_sym_BSLASHAcf] = ACTIONS(12100), + [anon_sym_BSLASHacfp] = ACTIONS(12100), + [anon_sym_BSLASHAcfp] = ACTIONS(12100), + [anon_sym_BSLASHac] = ACTIONS(12100), + [anon_sym_BSLASHAc] = ACTIONS(12100), + [anon_sym_BSLASHacp] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12100), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12100), + [anon_sym_BSLASHcolor] = ACTIONS(12100), + [anon_sym_BSLASHcolorbox] = ACTIONS(12100), + [anon_sym_BSLASHtextcolor] = ACTIONS(12100), + [anon_sym_BSLASHpagecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12100), + }, + [660] = { + [sym_generic_command_name] = ACTIONS(12613), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12613), + [aux_sym_chapter_token1] = ACTIONS(12613), + [aux_sym_section_token1] = ACTIONS(12613), + [aux_sym_subsection_token1] = ACTIONS(12613), + [aux_sym_subsubsection_token1] = ACTIONS(12613), + [aux_sym_paragraph_token1] = ACTIONS(12613), + [aux_sym_subparagraph_token1] = ACTIONS(12613), + [anon_sym_BSLASHitem] = ACTIONS(12613), + [anon_sym_LBRACK] = ACTIONS(12615), + [anon_sym_RBRACK] = ACTIONS(12651), + [anon_sym_LBRACE] = ACTIONS(12615), + [anon_sym_LPAREN] = ACTIONS(12615), + [anon_sym_RPAREN] = ACTIONS(12615), + [anon_sym_COMMA] = ACTIONS(12615), + [anon_sym_EQ] = ACTIONS(12615), + [sym_word] = ACTIONS(12615), + [sym_param] = ACTIONS(12615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12615), + [anon_sym_DOLLAR] = ACTIONS(12613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12615), + [anon_sym_BSLASHbegin] = ACTIONS(12613), + [anon_sym_BSLASHcaption] = ACTIONS(12613), + [anon_sym_BSLASHcite] = ACTIONS(12613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCite] = ACTIONS(12613), + [anon_sym_BSLASHnocite] = ACTIONS(12613), + [anon_sym_BSLASHcitet] = ACTIONS(12613), + [anon_sym_BSLASHcitep] = ACTIONS(12613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteauthor] = ACTIONS(12613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitetitle] = ACTIONS(12613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteyear] = ACTIONS(12613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitedate] = ACTIONS(12613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteurl] = ACTIONS(12613), + [anon_sym_BSLASHfullcite] = ACTIONS(12613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12613), + [anon_sym_BSLASHcitealt] = ACTIONS(12613), + [anon_sym_BSLASHcitealp] = ACTIONS(12613), + [anon_sym_BSLASHcitetext] = ACTIONS(12613), + [anon_sym_BSLASHparencite] = ACTIONS(12613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHParencite] = ACTIONS(12613), + [anon_sym_BSLASHfootcite] = ACTIONS(12613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12613), + [anon_sym_BSLASHtextcite] = ACTIONS(12613), + [anon_sym_BSLASHTextcite] = ACTIONS(12613), + [anon_sym_BSLASHsmartcite] = ACTIONS(12613), + [anon_sym_BSLASHSmartcite] = ACTIONS(12613), + [anon_sym_BSLASHsupercite] = ACTIONS(12613), + [anon_sym_BSLASHautocite] = ACTIONS(12613), + [anon_sym_BSLASHAutocite] = ACTIONS(12613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHvolcite] = ACTIONS(12613), + [anon_sym_BSLASHVolcite] = ACTIONS(12613), + [anon_sym_BSLASHpvolcite] = ACTIONS(12613), + [anon_sym_BSLASHPvolcite] = ACTIONS(12613), + [anon_sym_BSLASHfvolcite] = ACTIONS(12613), + [anon_sym_BSLASHftvolcite] = ACTIONS(12613), + [anon_sym_BSLASHsvolcite] = ACTIONS(12613), + [anon_sym_BSLASHSvolcite] = ACTIONS(12613), + [anon_sym_BSLASHtvolcite] = ACTIONS(12613), + [anon_sym_BSLASHTvolcite] = ACTIONS(12613), + [anon_sym_BSLASHavolcite] = ACTIONS(12613), + [anon_sym_BSLASHAvolcite] = ACTIONS(12613), + [anon_sym_BSLASHnotecite] = ACTIONS(12613), + [anon_sym_BSLASHpnotecite] = ACTIONS(12613), + [anon_sym_BSLASHPnotecite] = ACTIONS(12613), + [anon_sym_BSLASHfnotecite] = ACTIONS(12613), + [anon_sym_BSLASHusepackage] = ACTIONS(12613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12613), + [anon_sym_BSLASHinclude] = ACTIONS(12613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12613), + [anon_sym_BSLASHinput] = ACTIONS(12613), + [anon_sym_BSLASHsubfile] = ACTIONS(12613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12613), + [anon_sym_BSLASHbibliography] = ACTIONS(12613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12613), + [anon_sym_BSLASHincludesvg] = ACTIONS(12613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12613), + [anon_sym_BSLASHimport] = ACTIONS(12613), + [anon_sym_BSLASHsubimport] = ACTIONS(12613), + [anon_sym_BSLASHinputfrom] = ACTIONS(12613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12613), + [anon_sym_BSLASHincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHlabel] = ACTIONS(12613), + [anon_sym_BSLASHref] = ACTIONS(12613), + [anon_sym_BSLASHvref] = ACTIONS(12613), + [anon_sym_BSLASHVref] = ACTIONS(12613), + [anon_sym_BSLASHautoref] = ACTIONS(12613), + [anon_sym_BSLASHpageref] = ACTIONS(12613), + [anon_sym_BSLASHcref] = ACTIONS(12613), + [anon_sym_BSLASHCref] = ACTIONS(12613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnameCref] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHlabelcref] = ACTIONS(12613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12613), + [anon_sym_BSLASHeqref] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange] = ACTIONS(12613), + [anon_sym_BSLASHCrefrange] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewlabel] = ACTIONS(12613), + [anon_sym_BSLASHnewcommand] = ACTIONS(12613), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12613), + [anon_sym_BSLASHgls] = ACTIONS(12613), + [anon_sym_BSLASHGls] = ACTIONS(12613), + [anon_sym_BSLASHGLS] = ACTIONS(12613), + [anon_sym_BSLASHglspl] = ACTIONS(12613), + [anon_sym_BSLASHGlspl] = ACTIONS(12613), + [anon_sym_BSLASHGLSpl] = ACTIONS(12613), + [anon_sym_BSLASHglsdisp] = ACTIONS(12613), + [anon_sym_BSLASHglslink] = ACTIONS(12613), + [anon_sym_BSLASHglstext] = ACTIONS(12613), + [anon_sym_BSLASHGlstext] = ACTIONS(12613), + [anon_sym_BSLASHGLStext] = ACTIONS(12613), + [anon_sym_BSLASHglsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12613), + [anon_sym_BSLASHglsplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSplural] = ACTIONS(12613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHglsname] = ACTIONS(12613), + [anon_sym_BSLASHGlsname] = ACTIONS(12613), + [anon_sym_BSLASHGLSname] = ACTIONS(12613), + [anon_sym_BSLASHglssymbol] = ACTIONS(12613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12613), + [anon_sym_BSLASHglsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12613), + [anon_sym_BSLASHglsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12613), + [anon_sym_BSLASHglsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12613), + [anon_sym_BSLASHglsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12613), + [anon_sym_BSLASHglsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12613), + [anon_sym_BSLASHnewacronym] = ACTIONS(12613), + [anon_sym_BSLASHacrshort] = ACTIONS(12613), + [anon_sym_BSLASHAcrshort] = ACTIONS(12613), + [anon_sym_BSLASHACRshort] = ACTIONS(12613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12613), + [anon_sym_BSLASHacrlong] = ACTIONS(12613), + [anon_sym_BSLASHAcrlong] = ACTIONS(12613), + [anon_sym_BSLASHACRlong] = ACTIONS(12613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12613), + [anon_sym_BSLASHacrfull] = ACTIONS(12613), + [anon_sym_BSLASHAcrfull] = ACTIONS(12613), + [anon_sym_BSLASHACRfull] = ACTIONS(12613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12613), + [anon_sym_BSLASHacs] = ACTIONS(12613), + [anon_sym_BSLASHAcs] = ACTIONS(12613), + [anon_sym_BSLASHacsp] = ACTIONS(12613), + [anon_sym_BSLASHAcsp] = ACTIONS(12613), + [anon_sym_BSLASHacl] = ACTIONS(12613), + [anon_sym_BSLASHAcl] = ACTIONS(12613), + [anon_sym_BSLASHaclp] = ACTIONS(12613), + [anon_sym_BSLASHAclp] = ACTIONS(12613), + [anon_sym_BSLASHacf] = ACTIONS(12613), + [anon_sym_BSLASHAcf] = ACTIONS(12613), + [anon_sym_BSLASHacfp] = ACTIONS(12613), + [anon_sym_BSLASHAcfp] = ACTIONS(12613), + [anon_sym_BSLASHac] = ACTIONS(12613), + [anon_sym_BSLASHAc] = ACTIONS(12613), + [anon_sym_BSLASHacp] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12613), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12613), + [anon_sym_BSLASHcolor] = ACTIONS(12613), + [anon_sym_BSLASHcolorbox] = ACTIONS(12613), + [anon_sym_BSLASHtextcolor] = ACTIONS(12613), + [anon_sym_BSLASHpagecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12613), + }, + [661] = { + [sym_generic_command_name] = ACTIONS(12613), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12613), + [aux_sym_chapter_token1] = ACTIONS(12613), + [aux_sym_section_token1] = ACTIONS(12613), + [aux_sym_subsection_token1] = ACTIONS(12613), + [aux_sym_subsubsection_token1] = ACTIONS(12613), + [aux_sym_paragraph_token1] = ACTIONS(12613), + [aux_sym_subparagraph_token1] = ACTIONS(12613), + [anon_sym_BSLASHitem] = ACTIONS(12613), + [anon_sym_LBRACK] = ACTIONS(12615), + [anon_sym_RBRACK] = ACTIONS(12653), + [anon_sym_LBRACE] = ACTIONS(12615), + [anon_sym_LPAREN] = ACTIONS(12615), + [anon_sym_RPAREN] = ACTIONS(12615), + [anon_sym_COMMA] = ACTIONS(12615), + [anon_sym_EQ] = ACTIONS(12615), + [sym_word] = ACTIONS(12615), + [sym_param] = ACTIONS(12615), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12615), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12615), + [anon_sym_DOLLAR] = ACTIONS(12613), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12615), + [anon_sym_BSLASHbegin] = ACTIONS(12613), + [anon_sym_BSLASHcaption] = ACTIONS(12613), + [anon_sym_BSLASHcite] = ACTIONS(12613), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCite] = ACTIONS(12613), + [anon_sym_BSLASHnocite] = ACTIONS(12613), + [anon_sym_BSLASHcitet] = ACTIONS(12613), + [anon_sym_BSLASHcitep] = ACTIONS(12613), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteauthor] = ACTIONS(12613), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12613), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitetitle] = ACTIONS(12613), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteyear] = ACTIONS(12613), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12615), + [anon_sym_BSLASHcitedate] = ACTIONS(12613), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12615), + [anon_sym_BSLASHciteurl] = ACTIONS(12613), + [anon_sym_BSLASHfullcite] = ACTIONS(12613), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12613), + [anon_sym_BSLASHcitealt] = ACTIONS(12613), + [anon_sym_BSLASHcitealp] = ACTIONS(12613), + [anon_sym_BSLASHcitetext] = ACTIONS(12613), + [anon_sym_BSLASHparencite] = ACTIONS(12613), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHParencite] = ACTIONS(12613), + [anon_sym_BSLASHfootcite] = ACTIONS(12613), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12613), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12613), + [anon_sym_BSLASHtextcite] = ACTIONS(12613), + [anon_sym_BSLASHTextcite] = ACTIONS(12613), + [anon_sym_BSLASHsmartcite] = ACTIONS(12613), + [anon_sym_BSLASHSmartcite] = ACTIONS(12613), + [anon_sym_BSLASHsupercite] = ACTIONS(12613), + [anon_sym_BSLASHautocite] = ACTIONS(12613), + [anon_sym_BSLASHAutocite] = ACTIONS(12613), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12615), + [anon_sym_BSLASHvolcite] = ACTIONS(12613), + [anon_sym_BSLASHVolcite] = ACTIONS(12613), + [anon_sym_BSLASHpvolcite] = ACTIONS(12613), + [anon_sym_BSLASHPvolcite] = ACTIONS(12613), + [anon_sym_BSLASHfvolcite] = ACTIONS(12613), + [anon_sym_BSLASHftvolcite] = ACTIONS(12613), + [anon_sym_BSLASHsvolcite] = ACTIONS(12613), + [anon_sym_BSLASHSvolcite] = ACTIONS(12613), + [anon_sym_BSLASHtvolcite] = ACTIONS(12613), + [anon_sym_BSLASHTvolcite] = ACTIONS(12613), + [anon_sym_BSLASHavolcite] = ACTIONS(12613), + [anon_sym_BSLASHAvolcite] = ACTIONS(12613), + [anon_sym_BSLASHnotecite] = ACTIONS(12613), + [anon_sym_BSLASHpnotecite] = ACTIONS(12613), + [anon_sym_BSLASHPnotecite] = ACTIONS(12613), + [anon_sym_BSLASHfnotecite] = ACTIONS(12613), + [anon_sym_BSLASHusepackage] = ACTIONS(12613), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12613), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12613), + [anon_sym_BSLASHinclude] = ACTIONS(12613), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12613), + [anon_sym_BSLASHinput] = ACTIONS(12613), + [anon_sym_BSLASHsubfile] = ACTIONS(12613), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12613), + [anon_sym_BSLASHbibliography] = ACTIONS(12613), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12613), + [anon_sym_BSLASHincludesvg] = ACTIONS(12613), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12613), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12613), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12613), + [anon_sym_BSLASHimport] = ACTIONS(12613), + [anon_sym_BSLASHsubimport] = ACTIONS(12613), + [anon_sym_BSLASHinputfrom] = ACTIONS(12613), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12613), + [anon_sym_BSLASHincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12613), + [anon_sym_BSLASHlabel] = ACTIONS(12613), + [anon_sym_BSLASHref] = ACTIONS(12613), + [anon_sym_BSLASHvref] = ACTIONS(12613), + [anon_sym_BSLASHVref] = ACTIONS(12613), + [anon_sym_BSLASHautoref] = ACTIONS(12613), + [anon_sym_BSLASHpageref] = ACTIONS(12613), + [anon_sym_BSLASHcref] = ACTIONS(12613), + [anon_sym_BSLASHCref] = ACTIONS(12613), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnameCref] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12613), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12613), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12613), + [anon_sym_BSLASHlabelcref] = ACTIONS(12613), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12613), + [anon_sym_BSLASHeqref] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange] = ACTIONS(12613), + [anon_sym_BSLASHCrefrange] = ACTIONS(12613), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewlabel] = ACTIONS(12613), + [anon_sym_BSLASHnewcommand] = ACTIONS(12613), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12613), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12615), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12613), + [anon_sym_BSLASHgls] = ACTIONS(12613), + [anon_sym_BSLASHGls] = ACTIONS(12613), + [anon_sym_BSLASHGLS] = ACTIONS(12613), + [anon_sym_BSLASHglspl] = ACTIONS(12613), + [anon_sym_BSLASHGlspl] = ACTIONS(12613), + [anon_sym_BSLASHGLSpl] = ACTIONS(12613), + [anon_sym_BSLASHglsdisp] = ACTIONS(12613), + [anon_sym_BSLASHglslink] = ACTIONS(12613), + [anon_sym_BSLASHglstext] = ACTIONS(12613), + [anon_sym_BSLASHGlstext] = ACTIONS(12613), + [anon_sym_BSLASHGLStext] = ACTIONS(12613), + [anon_sym_BSLASHglsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12613), + [anon_sym_BSLASHglsplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSplural] = ACTIONS(12613), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12613), + [anon_sym_BSLASHglsname] = ACTIONS(12613), + [anon_sym_BSLASHGlsname] = ACTIONS(12613), + [anon_sym_BSLASHGLSname] = ACTIONS(12613), + [anon_sym_BSLASHglssymbol] = ACTIONS(12613), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12613), + [anon_sym_BSLASHglsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12613), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12613), + [anon_sym_BSLASHglsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12613), + [anon_sym_BSLASHglsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12613), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12613), + [anon_sym_BSLASHglsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12613), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12613), + [anon_sym_BSLASHglsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12613), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12613), + [anon_sym_BSLASHnewacronym] = ACTIONS(12613), + [anon_sym_BSLASHacrshort] = ACTIONS(12613), + [anon_sym_BSLASHAcrshort] = ACTIONS(12613), + [anon_sym_BSLASHACRshort] = ACTIONS(12613), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12613), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12613), + [anon_sym_BSLASHacrlong] = ACTIONS(12613), + [anon_sym_BSLASHAcrlong] = ACTIONS(12613), + [anon_sym_BSLASHACRlong] = ACTIONS(12613), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12613), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12613), + [anon_sym_BSLASHacrfull] = ACTIONS(12613), + [anon_sym_BSLASHAcrfull] = ACTIONS(12613), + [anon_sym_BSLASHACRfull] = ACTIONS(12613), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12613), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12613), + [anon_sym_BSLASHacs] = ACTIONS(12613), + [anon_sym_BSLASHAcs] = ACTIONS(12613), + [anon_sym_BSLASHacsp] = ACTIONS(12613), + [anon_sym_BSLASHAcsp] = ACTIONS(12613), + [anon_sym_BSLASHacl] = ACTIONS(12613), + [anon_sym_BSLASHAcl] = ACTIONS(12613), + [anon_sym_BSLASHaclp] = ACTIONS(12613), + [anon_sym_BSLASHAclp] = ACTIONS(12613), + [anon_sym_BSLASHacf] = ACTIONS(12613), + [anon_sym_BSLASHAcf] = ACTIONS(12613), + [anon_sym_BSLASHacfp] = ACTIONS(12613), + [anon_sym_BSLASHAcfp] = ACTIONS(12613), + [anon_sym_BSLASHac] = ACTIONS(12613), + [anon_sym_BSLASHAc] = ACTIONS(12613), + [anon_sym_BSLASHacp] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12613), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12613), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12613), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12613), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12613), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12613), + [anon_sym_BSLASHcolor] = ACTIONS(12613), + [anon_sym_BSLASHcolorbox] = ACTIONS(12613), + [anon_sym_BSLASHtextcolor] = ACTIONS(12613), + [anon_sym_BSLASHpagecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12613), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12613), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12613), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12613), + }, + [662] = { + [sym_brace_group] = STATE(3367), + [sym_generic_command_name] = ACTIONS(12088), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12088), + [aux_sym_chapter_token1] = ACTIONS(12088), + [aux_sym_section_token1] = ACTIONS(12088), + [aux_sym_subsection_token1] = ACTIONS(12088), + [aux_sym_subsubsection_token1] = ACTIONS(12088), + [aux_sym_paragraph_token1] = ACTIONS(12088), + [aux_sym_subparagraph_token1] = ACTIONS(12088), + [anon_sym_BSLASHitem] = ACTIONS(12088), + [anon_sym_LBRACK] = ACTIONS(12086), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12086), + [anon_sym_COMMA] = ACTIONS(12086), + [anon_sym_EQ] = ACTIONS(12086), + [sym_word] = ACTIONS(12086), + [sym_param] = ACTIONS(12086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12086), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12086), + [anon_sym_DOLLAR] = ACTIONS(12088), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12086), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12086), + [anon_sym_BSLASHbegin] = ACTIONS(12088), + [anon_sym_BSLASHcaption] = ACTIONS(12088), + [anon_sym_BSLASHcite] = ACTIONS(12088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCite] = ACTIONS(12088), + [anon_sym_BSLASHnocite] = ACTIONS(12088), + [anon_sym_BSLASHcitet] = ACTIONS(12088), + [anon_sym_BSLASHcitep] = ACTIONS(12088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteauthor] = ACTIONS(12088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitetitle] = ACTIONS(12088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteyear] = ACTIONS(12088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitedate] = ACTIONS(12088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteurl] = ACTIONS(12088), + [anon_sym_BSLASHfullcite] = ACTIONS(12088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12088), + [anon_sym_BSLASHcitealt] = ACTIONS(12088), + [anon_sym_BSLASHcitealp] = ACTIONS(12088), + [anon_sym_BSLASHcitetext] = ACTIONS(12088), + [anon_sym_BSLASHparencite] = ACTIONS(12088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHParencite] = ACTIONS(12088), + [anon_sym_BSLASHfootcite] = ACTIONS(12088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12088), + [anon_sym_BSLASHtextcite] = ACTIONS(12088), + [anon_sym_BSLASHTextcite] = ACTIONS(12088), + [anon_sym_BSLASHsmartcite] = ACTIONS(12088), + [anon_sym_BSLASHSmartcite] = ACTIONS(12088), + [anon_sym_BSLASHsupercite] = ACTIONS(12088), + [anon_sym_BSLASHautocite] = ACTIONS(12088), + [anon_sym_BSLASHAutocite] = ACTIONS(12088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHvolcite] = ACTIONS(12088), + [anon_sym_BSLASHVolcite] = ACTIONS(12088), + [anon_sym_BSLASHpvolcite] = ACTIONS(12088), + [anon_sym_BSLASHPvolcite] = ACTIONS(12088), + [anon_sym_BSLASHfvolcite] = ACTIONS(12088), + [anon_sym_BSLASHftvolcite] = ACTIONS(12088), + [anon_sym_BSLASHsvolcite] = ACTIONS(12088), + [anon_sym_BSLASHSvolcite] = ACTIONS(12088), + [anon_sym_BSLASHtvolcite] = ACTIONS(12088), + [anon_sym_BSLASHTvolcite] = ACTIONS(12088), + [anon_sym_BSLASHavolcite] = ACTIONS(12088), + [anon_sym_BSLASHAvolcite] = ACTIONS(12088), + [anon_sym_BSLASHnotecite] = ACTIONS(12088), + [anon_sym_BSLASHpnotecite] = ACTIONS(12088), + [anon_sym_BSLASHPnotecite] = ACTIONS(12088), + [anon_sym_BSLASHfnotecite] = ACTIONS(12088), + [anon_sym_BSLASHusepackage] = ACTIONS(12088), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12088), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12088), + [anon_sym_BSLASHinclude] = ACTIONS(12088), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12088), + [anon_sym_BSLASHinput] = ACTIONS(12088), + [anon_sym_BSLASHsubfile] = ACTIONS(12088), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12088), + [anon_sym_BSLASHbibliography] = ACTIONS(12088), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12088), + [anon_sym_BSLASHincludesvg] = ACTIONS(12088), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12088), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12088), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12088), + [anon_sym_BSLASHimport] = ACTIONS(12088), + [anon_sym_BSLASHsubimport] = ACTIONS(12088), + [anon_sym_BSLASHinputfrom] = ACTIONS(12088), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12088), + [anon_sym_BSLASHincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHlabel] = ACTIONS(12088), + [anon_sym_BSLASHref] = ACTIONS(12088), + [anon_sym_BSLASHvref] = ACTIONS(12088), + [anon_sym_BSLASHVref] = ACTIONS(12088), + [anon_sym_BSLASHautoref] = ACTIONS(12088), + [anon_sym_BSLASHpageref] = ACTIONS(12088), + [anon_sym_BSLASHcref] = ACTIONS(12088), + [anon_sym_BSLASHCref] = ACTIONS(12088), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnameCref] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHlabelcref] = ACTIONS(12088), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12088), + [anon_sym_BSLASHeqref] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange] = ACTIONS(12088), + [anon_sym_BSLASHCrefrange] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewlabel] = ACTIONS(12088), + [anon_sym_BSLASHnewcommand] = ACTIONS(12088), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12088), + [anon_sym_BSLASHgls] = ACTIONS(12088), + [anon_sym_BSLASHGls] = ACTIONS(12088), + [anon_sym_BSLASHGLS] = ACTIONS(12088), + [anon_sym_BSLASHglspl] = ACTIONS(12088), + [anon_sym_BSLASHGlspl] = ACTIONS(12088), + [anon_sym_BSLASHGLSpl] = ACTIONS(12088), + [anon_sym_BSLASHglsdisp] = ACTIONS(12088), + [anon_sym_BSLASHglslink] = ACTIONS(12088), + [anon_sym_BSLASHglstext] = ACTIONS(12088), + [anon_sym_BSLASHGlstext] = ACTIONS(12088), + [anon_sym_BSLASHGLStext] = ACTIONS(12088), + [anon_sym_BSLASHglsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12088), + [anon_sym_BSLASHglsplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSplural] = ACTIONS(12088), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHglsname] = ACTIONS(12088), + [anon_sym_BSLASHGlsname] = ACTIONS(12088), + [anon_sym_BSLASHGLSname] = ACTIONS(12088), + [anon_sym_BSLASHglssymbol] = ACTIONS(12088), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12088), + [anon_sym_BSLASHglsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12088), + [anon_sym_BSLASHglsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12088), + [anon_sym_BSLASHglsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12088), + [anon_sym_BSLASHglsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12088), + [anon_sym_BSLASHglsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12088), + [anon_sym_BSLASHnewacronym] = ACTIONS(12088), + [anon_sym_BSLASHacrshort] = ACTIONS(12088), + [anon_sym_BSLASHAcrshort] = ACTIONS(12088), + [anon_sym_BSLASHACRshort] = ACTIONS(12088), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12088), + [anon_sym_BSLASHacrlong] = ACTIONS(12088), + [anon_sym_BSLASHAcrlong] = ACTIONS(12088), + [anon_sym_BSLASHACRlong] = ACTIONS(12088), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12088), + [anon_sym_BSLASHacrfull] = ACTIONS(12088), + [anon_sym_BSLASHAcrfull] = ACTIONS(12088), + [anon_sym_BSLASHACRfull] = ACTIONS(12088), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12088), + [anon_sym_BSLASHacs] = ACTIONS(12088), + [anon_sym_BSLASHAcs] = ACTIONS(12088), + [anon_sym_BSLASHacsp] = ACTIONS(12088), + [anon_sym_BSLASHAcsp] = ACTIONS(12088), + [anon_sym_BSLASHacl] = ACTIONS(12088), + [anon_sym_BSLASHAcl] = ACTIONS(12088), + [anon_sym_BSLASHaclp] = ACTIONS(12088), + [anon_sym_BSLASHAclp] = ACTIONS(12088), + [anon_sym_BSLASHacf] = ACTIONS(12088), + [anon_sym_BSLASHAcf] = ACTIONS(12088), + [anon_sym_BSLASHacfp] = ACTIONS(12088), + [anon_sym_BSLASHAcfp] = ACTIONS(12088), + [anon_sym_BSLASHac] = ACTIONS(12088), + [anon_sym_BSLASHAc] = ACTIONS(12088), + [anon_sym_BSLASHacp] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12088), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12088), + [anon_sym_BSLASHcolor] = ACTIONS(12088), + [anon_sym_BSLASHcolorbox] = ACTIONS(12088), + [anon_sym_BSLASHtextcolor] = ACTIONS(12088), + [anon_sym_BSLASHpagecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12088), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12088), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12088), + }, + [663] = { + [sym_brace_group] = STATE(3374), + [sym_generic_command_name] = ACTIONS(12100), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12100), + [aux_sym_chapter_token1] = ACTIONS(12100), + [aux_sym_section_token1] = ACTIONS(12100), + [aux_sym_subsection_token1] = ACTIONS(12100), + [aux_sym_subsubsection_token1] = ACTIONS(12100), + [aux_sym_paragraph_token1] = ACTIONS(12100), + [aux_sym_subparagraph_token1] = ACTIONS(12100), + [anon_sym_BSLASHitem] = ACTIONS(12100), + [anon_sym_LBRACK] = ACTIONS(12098), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12098), + [anon_sym_COMMA] = ACTIONS(12098), + [anon_sym_EQ] = ACTIONS(12098), + [sym_word] = ACTIONS(12098), + [sym_param] = ACTIONS(12098), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12098), + [anon_sym_DOLLAR] = ACTIONS(12100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12098), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12098), + [anon_sym_BSLASHbegin] = ACTIONS(12100), + [anon_sym_BSLASHcaption] = ACTIONS(12100), + [anon_sym_BSLASHcite] = ACTIONS(12100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCite] = ACTIONS(12100), + [anon_sym_BSLASHnocite] = ACTIONS(12100), + [anon_sym_BSLASHcitet] = ACTIONS(12100), + [anon_sym_BSLASHcitep] = ACTIONS(12100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteauthor] = ACTIONS(12100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitetitle] = ACTIONS(12100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteyear] = ACTIONS(12100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitedate] = ACTIONS(12100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteurl] = ACTIONS(12100), + [anon_sym_BSLASHfullcite] = ACTIONS(12100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12100), + [anon_sym_BSLASHcitealt] = ACTIONS(12100), + [anon_sym_BSLASHcitealp] = ACTIONS(12100), + [anon_sym_BSLASHcitetext] = ACTIONS(12100), + [anon_sym_BSLASHparencite] = ACTIONS(12100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHParencite] = ACTIONS(12100), + [anon_sym_BSLASHfootcite] = ACTIONS(12100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12100), + [anon_sym_BSLASHtextcite] = ACTIONS(12100), + [anon_sym_BSLASHTextcite] = ACTIONS(12100), + [anon_sym_BSLASHsmartcite] = ACTIONS(12100), + [anon_sym_BSLASHSmartcite] = ACTIONS(12100), + [anon_sym_BSLASHsupercite] = ACTIONS(12100), + [anon_sym_BSLASHautocite] = ACTIONS(12100), + [anon_sym_BSLASHAutocite] = ACTIONS(12100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHvolcite] = ACTIONS(12100), + [anon_sym_BSLASHVolcite] = ACTIONS(12100), + [anon_sym_BSLASHpvolcite] = ACTIONS(12100), + [anon_sym_BSLASHPvolcite] = ACTIONS(12100), + [anon_sym_BSLASHfvolcite] = ACTIONS(12100), + [anon_sym_BSLASHftvolcite] = ACTIONS(12100), + [anon_sym_BSLASHsvolcite] = ACTIONS(12100), + [anon_sym_BSLASHSvolcite] = ACTIONS(12100), + [anon_sym_BSLASHtvolcite] = ACTIONS(12100), + [anon_sym_BSLASHTvolcite] = ACTIONS(12100), + [anon_sym_BSLASHavolcite] = ACTIONS(12100), + [anon_sym_BSLASHAvolcite] = ACTIONS(12100), + [anon_sym_BSLASHnotecite] = ACTIONS(12100), + [anon_sym_BSLASHpnotecite] = ACTIONS(12100), + [anon_sym_BSLASHPnotecite] = ACTIONS(12100), + [anon_sym_BSLASHfnotecite] = ACTIONS(12100), + [anon_sym_BSLASHusepackage] = ACTIONS(12100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12100), + [anon_sym_BSLASHinclude] = ACTIONS(12100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12100), + [anon_sym_BSLASHinput] = ACTIONS(12100), + [anon_sym_BSLASHsubfile] = ACTIONS(12100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12100), + [anon_sym_BSLASHbibliography] = ACTIONS(12100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12100), + [anon_sym_BSLASHincludesvg] = ACTIONS(12100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12100), + [anon_sym_BSLASHimport] = ACTIONS(12100), + [anon_sym_BSLASHsubimport] = ACTIONS(12100), + [anon_sym_BSLASHinputfrom] = ACTIONS(12100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12100), + [anon_sym_BSLASHincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHlabel] = ACTIONS(12100), + [anon_sym_BSLASHref] = ACTIONS(12100), + [anon_sym_BSLASHvref] = ACTIONS(12100), + [anon_sym_BSLASHVref] = ACTIONS(12100), + [anon_sym_BSLASHautoref] = ACTIONS(12100), + [anon_sym_BSLASHpageref] = ACTIONS(12100), + [anon_sym_BSLASHcref] = ACTIONS(12100), + [anon_sym_BSLASHCref] = ACTIONS(12100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnameCref] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHlabelcref] = ACTIONS(12100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12100), + [anon_sym_BSLASHeqref] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange] = ACTIONS(12100), + [anon_sym_BSLASHCrefrange] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewlabel] = ACTIONS(12100), + [anon_sym_BSLASHnewcommand] = ACTIONS(12100), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12100), + [anon_sym_BSLASHgls] = ACTIONS(12100), + [anon_sym_BSLASHGls] = ACTIONS(12100), + [anon_sym_BSLASHGLS] = ACTIONS(12100), + [anon_sym_BSLASHglspl] = ACTIONS(12100), + [anon_sym_BSLASHGlspl] = ACTIONS(12100), + [anon_sym_BSLASHGLSpl] = ACTIONS(12100), + [anon_sym_BSLASHglsdisp] = ACTIONS(12100), + [anon_sym_BSLASHglslink] = ACTIONS(12100), + [anon_sym_BSLASHglstext] = ACTIONS(12100), + [anon_sym_BSLASHGlstext] = ACTIONS(12100), + [anon_sym_BSLASHGLStext] = ACTIONS(12100), + [anon_sym_BSLASHglsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12100), + [anon_sym_BSLASHglsplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSplural] = ACTIONS(12100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHglsname] = ACTIONS(12100), + [anon_sym_BSLASHGlsname] = ACTIONS(12100), + [anon_sym_BSLASHGLSname] = ACTIONS(12100), + [anon_sym_BSLASHglssymbol] = ACTIONS(12100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12100), + [anon_sym_BSLASHglsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12100), + [anon_sym_BSLASHglsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12100), + [anon_sym_BSLASHglsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12100), + [anon_sym_BSLASHglsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12100), + [anon_sym_BSLASHglsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12100), + [anon_sym_BSLASHnewacronym] = ACTIONS(12100), + [anon_sym_BSLASHacrshort] = ACTIONS(12100), + [anon_sym_BSLASHAcrshort] = ACTIONS(12100), + [anon_sym_BSLASHACRshort] = ACTIONS(12100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12100), + [anon_sym_BSLASHacrlong] = ACTIONS(12100), + [anon_sym_BSLASHAcrlong] = ACTIONS(12100), + [anon_sym_BSLASHACRlong] = ACTIONS(12100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12100), + [anon_sym_BSLASHacrfull] = ACTIONS(12100), + [anon_sym_BSLASHAcrfull] = ACTIONS(12100), + [anon_sym_BSLASHACRfull] = ACTIONS(12100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12100), + [anon_sym_BSLASHacs] = ACTIONS(12100), + [anon_sym_BSLASHAcs] = ACTIONS(12100), + [anon_sym_BSLASHacsp] = ACTIONS(12100), + [anon_sym_BSLASHAcsp] = ACTIONS(12100), + [anon_sym_BSLASHacl] = ACTIONS(12100), + [anon_sym_BSLASHAcl] = ACTIONS(12100), + [anon_sym_BSLASHaclp] = ACTIONS(12100), + [anon_sym_BSLASHAclp] = ACTIONS(12100), + [anon_sym_BSLASHacf] = ACTIONS(12100), + [anon_sym_BSLASHAcf] = ACTIONS(12100), + [anon_sym_BSLASHacfp] = ACTIONS(12100), + [anon_sym_BSLASHAcfp] = ACTIONS(12100), + [anon_sym_BSLASHac] = ACTIONS(12100), + [anon_sym_BSLASHAc] = ACTIONS(12100), + [anon_sym_BSLASHacp] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12100), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12100), + [anon_sym_BSLASHcolor] = ACTIONS(12100), + [anon_sym_BSLASHcolorbox] = ACTIONS(12100), + [anon_sym_BSLASHtextcolor] = ACTIONS(12100), + [anon_sym_BSLASHpagecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12100), + }, + [664] = { + [sym_brace_group] = STATE(3369), + [sym_generic_command_name] = ACTIONS(12092), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12092), + [aux_sym_chapter_token1] = ACTIONS(12092), + [aux_sym_section_token1] = ACTIONS(12092), + [aux_sym_subsection_token1] = ACTIONS(12092), + [aux_sym_subsubsection_token1] = ACTIONS(12092), + [aux_sym_paragraph_token1] = ACTIONS(12092), + [aux_sym_subparagraph_token1] = ACTIONS(12092), + [anon_sym_BSLASHitem] = ACTIONS(12092), + [anon_sym_LBRACK] = ACTIONS(12090), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12090), + [anon_sym_COMMA] = ACTIONS(12090), + [anon_sym_EQ] = ACTIONS(12090), + [sym_word] = ACTIONS(12090), + [sym_param] = ACTIONS(12090), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12090), + [anon_sym_DOLLAR] = ACTIONS(12092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12090), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12090), + [anon_sym_BSLASHbegin] = ACTIONS(12092), + [anon_sym_BSLASHcaption] = ACTIONS(12092), + [anon_sym_BSLASHcite] = ACTIONS(12092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCite] = ACTIONS(12092), + [anon_sym_BSLASHnocite] = ACTIONS(12092), + [anon_sym_BSLASHcitet] = ACTIONS(12092), + [anon_sym_BSLASHcitep] = ACTIONS(12092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteauthor] = ACTIONS(12092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitetitle] = ACTIONS(12092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteyear] = ACTIONS(12092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitedate] = ACTIONS(12092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteurl] = ACTIONS(12092), + [anon_sym_BSLASHfullcite] = ACTIONS(12092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12092), + [anon_sym_BSLASHcitealt] = ACTIONS(12092), + [anon_sym_BSLASHcitealp] = ACTIONS(12092), + [anon_sym_BSLASHcitetext] = ACTIONS(12092), + [anon_sym_BSLASHparencite] = ACTIONS(12092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHParencite] = ACTIONS(12092), + [anon_sym_BSLASHfootcite] = ACTIONS(12092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12092), + [anon_sym_BSLASHtextcite] = ACTIONS(12092), + [anon_sym_BSLASHTextcite] = ACTIONS(12092), + [anon_sym_BSLASHsmartcite] = ACTIONS(12092), + [anon_sym_BSLASHSmartcite] = ACTIONS(12092), + [anon_sym_BSLASHsupercite] = ACTIONS(12092), + [anon_sym_BSLASHautocite] = ACTIONS(12092), + [anon_sym_BSLASHAutocite] = ACTIONS(12092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHvolcite] = ACTIONS(12092), + [anon_sym_BSLASHVolcite] = ACTIONS(12092), + [anon_sym_BSLASHpvolcite] = ACTIONS(12092), + [anon_sym_BSLASHPvolcite] = ACTIONS(12092), + [anon_sym_BSLASHfvolcite] = ACTIONS(12092), + [anon_sym_BSLASHftvolcite] = ACTIONS(12092), + [anon_sym_BSLASHsvolcite] = ACTIONS(12092), + [anon_sym_BSLASHSvolcite] = ACTIONS(12092), + [anon_sym_BSLASHtvolcite] = ACTIONS(12092), + [anon_sym_BSLASHTvolcite] = ACTIONS(12092), + [anon_sym_BSLASHavolcite] = ACTIONS(12092), + [anon_sym_BSLASHAvolcite] = ACTIONS(12092), + [anon_sym_BSLASHnotecite] = ACTIONS(12092), + [anon_sym_BSLASHpnotecite] = ACTIONS(12092), + [anon_sym_BSLASHPnotecite] = ACTIONS(12092), + [anon_sym_BSLASHfnotecite] = ACTIONS(12092), + [anon_sym_BSLASHusepackage] = ACTIONS(12092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12092), + [anon_sym_BSLASHinclude] = ACTIONS(12092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12092), + [anon_sym_BSLASHinput] = ACTIONS(12092), + [anon_sym_BSLASHsubfile] = ACTIONS(12092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12092), + [anon_sym_BSLASHbibliography] = ACTIONS(12092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12092), + [anon_sym_BSLASHincludesvg] = ACTIONS(12092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12092), + [anon_sym_BSLASHimport] = ACTIONS(12092), + [anon_sym_BSLASHsubimport] = ACTIONS(12092), + [anon_sym_BSLASHinputfrom] = ACTIONS(12092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12092), + [anon_sym_BSLASHincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHlabel] = ACTIONS(12092), + [anon_sym_BSLASHref] = ACTIONS(12092), + [anon_sym_BSLASHvref] = ACTIONS(12092), + [anon_sym_BSLASHVref] = ACTIONS(12092), + [anon_sym_BSLASHautoref] = ACTIONS(12092), + [anon_sym_BSLASHpageref] = ACTIONS(12092), + [anon_sym_BSLASHcref] = ACTIONS(12092), + [anon_sym_BSLASHCref] = ACTIONS(12092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnameCref] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHlabelcref] = ACTIONS(12092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12092), + [anon_sym_BSLASHeqref] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange] = ACTIONS(12092), + [anon_sym_BSLASHCrefrange] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewlabel] = ACTIONS(12092), + [anon_sym_BSLASHnewcommand] = ACTIONS(12092), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12092), + [anon_sym_BSLASHgls] = ACTIONS(12092), + [anon_sym_BSLASHGls] = ACTIONS(12092), + [anon_sym_BSLASHGLS] = ACTIONS(12092), + [anon_sym_BSLASHglspl] = ACTIONS(12092), + [anon_sym_BSLASHGlspl] = ACTIONS(12092), + [anon_sym_BSLASHGLSpl] = ACTIONS(12092), + [anon_sym_BSLASHglsdisp] = ACTIONS(12092), + [anon_sym_BSLASHglslink] = ACTIONS(12092), + [anon_sym_BSLASHglstext] = ACTIONS(12092), + [anon_sym_BSLASHGlstext] = ACTIONS(12092), + [anon_sym_BSLASHGLStext] = ACTIONS(12092), + [anon_sym_BSLASHglsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12092), + [anon_sym_BSLASHglsplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSplural] = ACTIONS(12092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHglsname] = ACTIONS(12092), + [anon_sym_BSLASHGlsname] = ACTIONS(12092), + [anon_sym_BSLASHGLSname] = ACTIONS(12092), + [anon_sym_BSLASHglssymbol] = ACTIONS(12092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12092), + [anon_sym_BSLASHglsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12092), + [anon_sym_BSLASHglsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12092), + [anon_sym_BSLASHglsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12092), + [anon_sym_BSLASHglsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12092), + [anon_sym_BSLASHglsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12092), + [anon_sym_BSLASHnewacronym] = ACTIONS(12092), + [anon_sym_BSLASHacrshort] = ACTIONS(12092), + [anon_sym_BSLASHAcrshort] = ACTIONS(12092), + [anon_sym_BSLASHACRshort] = ACTIONS(12092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12092), + [anon_sym_BSLASHacrlong] = ACTIONS(12092), + [anon_sym_BSLASHAcrlong] = ACTIONS(12092), + [anon_sym_BSLASHACRlong] = ACTIONS(12092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12092), + [anon_sym_BSLASHacrfull] = ACTIONS(12092), + [anon_sym_BSLASHAcrfull] = ACTIONS(12092), + [anon_sym_BSLASHACRfull] = ACTIONS(12092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12092), + [anon_sym_BSLASHacs] = ACTIONS(12092), + [anon_sym_BSLASHAcs] = ACTIONS(12092), + [anon_sym_BSLASHacsp] = ACTIONS(12092), + [anon_sym_BSLASHAcsp] = ACTIONS(12092), + [anon_sym_BSLASHacl] = ACTIONS(12092), + [anon_sym_BSLASHAcl] = ACTIONS(12092), + [anon_sym_BSLASHaclp] = ACTIONS(12092), + [anon_sym_BSLASHAclp] = ACTIONS(12092), + [anon_sym_BSLASHacf] = ACTIONS(12092), + [anon_sym_BSLASHAcf] = ACTIONS(12092), + [anon_sym_BSLASHacfp] = ACTIONS(12092), + [anon_sym_BSLASHAcfp] = ACTIONS(12092), + [anon_sym_BSLASHac] = ACTIONS(12092), + [anon_sym_BSLASHAc] = ACTIONS(12092), + [anon_sym_BSLASHacp] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12092), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12092), + [anon_sym_BSLASHcolor] = ACTIONS(12092), + [anon_sym_BSLASHcolorbox] = ACTIONS(12092), + [anon_sym_BSLASHtextcolor] = ACTIONS(12092), + [anon_sym_BSLASHpagecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12092), + }, + [665] = { + [sym_brace_group] = STATE(3364), + [sym_generic_command_name] = ACTIONS(12054), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12054), + [aux_sym_chapter_token1] = ACTIONS(12054), + [aux_sym_section_token1] = ACTIONS(12054), + [aux_sym_subsection_token1] = ACTIONS(12054), + [aux_sym_subsubsection_token1] = ACTIONS(12054), + [aux_sym_paragraph_token1] = ACTIONS(12054), + [aux_sym_subparagraph_token1] = ACTIONS(12054), + [anon_sym_BSLASHitem] = ACTIONS(12054), + [anon_sym_LBRACK] = ACTIONS(12052), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12052), + [anon_sym_COMMA] = ACTIONS(12052), + [anon_sym_EQ] = ACTIONS(12052), + [sym_word] = ACTIONS(12052), + [sym_param] = ACTIONS(12052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12052), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12052), + [anon_sym_DOLLAR] = ACTIONS(12054), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12052), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12052), + [anon_sym_BSLASHbegin] = ACTIONS(12054), + [anon_sym_BSLASHcaption] = ACTIONS(12054), + [anon_sym_BSLASHcite] = ACTIONS(12054), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCite] = ACTIONS(12054), + [anon_sym_BSLASHnocite] = ACTIONS(12054), + [anon_sym_BSLASHcitet] = ACTIONS(12054), + [anon_sym_BSLASHcitep] = ACTIONS(12054), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteauthor] = ACTIONS(12054), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12054), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitetitle] = ACTIONS(12054), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteyear] = ACTIONS(12054), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitedate] = ACTIONS(12054), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteurl] = ACTIONS(12054), + [anon_sym_BSLASHfullcite] = ACTIONS(12054), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12054), + [anon_sym_BSLASHcitealt] = ACTIONS(12054), + [anon_sym_BSLASHcitealp] = ACTIONS(12054), + [anon_sym_BSLASHcitetext] = ACTIONS(12054), + [anon_sym_BSLASHparencite] = ACTIONS(12054), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHParencite] = ACTIONS(12054), + [anon_sym_BSLASHfootcite] = ACTIONS(12054), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12054), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12054), + [anon_sym_BSLASHtextcite] = ACTIONS(12054), + [anon_sym_BSLASHTextcite] = ACTIONS(12054), + [anon_sym_BSLASHsmartcite] = ACTIONS(12054), + [anon_sym_BSLASHSmartcite] = ACTIONS(12054), + [anon_sym_BSLASHsupercite] = ACTIONS(12054), + [anon_sym_BSLASHautocite] = ACTIONS(12054), + [anon_sym_BSLASHAutocite] = ACTIONS(12054), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHvolcite] = ACTIONS(12054), + [anon_sym_BSLASHVolcite] = ACTIONS(12054), + [anon_sym_BSLASHpvolcite] = ACTIONS(12054), + [anon_sym_BSLASHPvolcite] = ACTIONS(12054), + [anon_sym_BSLASHfvolcite] = ACTIONS(12054), + [anon_sym_BSLASHftvolcite] = ACTIONS(12054), + [anon_sym_BSLASHsvolcite] = ACTIONS(12054), + [anon_sym_BSLASHSvolcite] = ACTIONS(12054), + [anon_sym_BSLASHtvolcite] = ACTIONS(12054), + [anon_sym_BSLASHTvolcite] = ACTIONS(12054), + [anon_sym_BSLASHavolcite] = ACTIONS(12054), + [anon_sym_BSLASHAvolcite] = ACTIONS(12054), + [anon_sym_BSLASHnotecite] = ACTIONS(12054), + [anon_sym_BSLASHpnotecite] = ACTIONS(12054), + [anon_sym_BSLASHPnotecite] = ACTIONS(12054), + [anon_sym_BSLASHfnotecite] = ACTIONS(12054), + [anon_sym_BSLASHusepackage] = ACTIONS(12054), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12054), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12054), + [anon_sym_BSLASHinclude] = ACTIONS(12054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12054), + [anon_sym_BSLASHinput] = ACTIONS(12054), + [anon_sym_BSLASHsubfile] = ACTIONS(12054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12054), + [anon_sym_BSLASHbibliography] = ACTIONS(12054), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12054), + [anon_sym_BSLASHincludesvg] = ACTIONS(12054), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12054), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12054), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12054), + [anon_sym_BSLASHimport] = ACTIONS(12054), + [anon_sym_BSLASHsubimport] = ACTIONS(12054), + [anon_sym_BSLASHinputfrom] = ACTIONS(12054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12054), + [anon_sym_BSLASHincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHlabel] = ACTIONS(12054), + [anon_sym_BSLASHref] = ACTIONS(12054), + [anon_sym_BSLASHvref] = ACTIONS(12054), + [anon_sym_BSLASHVref] = ACTIONS(12054), + [anon_sym_BSLASHautoref] = ACTIONS(12054), + [anon_sym_BSLASHpageref] = ACTIONS(12054), + [anon_sym_BSLASHcref] = ACTIONS(12054), + [anon_sym_BSLASHCref] = ACTIONS(12054), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnameCref] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHlabelcref] = ACTIONS(12054), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12054), + [anon_sym_BSLASHeqref] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange] = ACTIONS(12054), + [anon_sym_BSLASHCrefrange] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewlabel] = ACTIONS(12054), + [anon_sym_BSLASHnewcommand] = ACTIONS(12054), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12054), + [anon_sym_BSLASHgls] = ACTIONS(12054), + [anon_sym_BSLASHGls] = ACTIONS(12054), + [anon_sym_BSLASHGLS] = ACTIONS(12054), + [anon_sym_BSLASHglspl] = ACTIONS(12054), + [anon_sym_BSLASHGlspl] = ACTIONS(12054), + [anon_sym_BSLASHGLSpl] = ACTIONS(12054), + [anon_sym_BSLASHglsdisp] = ACTIONS(12054), + [anon_sym_BSLASHglslink] = ACTIONS(12054), + [anon_sym_BSLASHglstext] = ACTIONS(12054), + [anon_sym_BSLASHGlstext] = ACTIONS(12054), + [anon_sym_BSLASHGLStext] = ACTIONS(12054), + [anon_sym_BSLASHglsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12054), + [anon_sym_BSLASHglsplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSplural] = ACTIONS(12054), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHglsname] = ACTIONS(12054), + [anon_sym_BSLASHGlsname] = ACTIONS(12054), + [anon_sym_BSLASHGLSname] = ACTIONS(12054), + [anon_sym_BSLASHglssymbol] = ACTIONS(12054), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12054), + [anon_sym_BSLASHglsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12054), + [anon_sym_BSLASHglsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12054), + [anon_sym_BSLASHglsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12054), + [anon_sym_BSLASHglsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12054), + [anon_sym_BSLASHglsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12054), + [anon_sym_BSLASHnewacronym] = ACTIONS(12054), + [anon_sym_BSLASHacrshort] = ACTIONS(12054), + [anon_sym_BSLASHAcrshort] = ACTIONS(12054), + [anon_sym_BSLASHACRshort] = ACTIONS(12054), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12054), + [anon_sym_BSLASHacrlong] = ACTIONS(12054), + [anon_sym_BSLASHAcrlong] = ACTIONS(12054), + [anon_sym_BSLASHACRlong] = ACTIONS(12054), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12054), + [anon_sym_BSLASHacrfull] = ACTIONS(12054), + [anon_sym_BSLASHAcrfull] = ACTIONS(12054), + [anon_sym_BSLASHACRfull] = ACTIONS(12054), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12054), + [anon_sym_BSLASHacs] = ACTIONS(12054), + [anon_sym_BSLASHAcs] = ACTIONS(12054), + [anon_sym_BSLASHacsp] = ACTIONS(12054), + [anon_sym_BSLASHAcsp] = ACTIONS(12054), + [anon_sym_BSLASHacl] = ACTIONS(12054), + [anon_sym_BSLASHAcl] = ACTIONS(12054), + [anon_sym_BSLASHaclp] = ACTIONS(12054), + [anon_sym_BSLASHAclp] = ACTIONS(12054), + [anon_sym_BSLASHacf] = ACTIONS(12054), + [anon_sym_BSLASHAcf] = ACTIONS(12054), + [anon_sym_BSLASHacfp] = ACTIONS(12054), + [anon_sym_BSLASHAcfp] = ACTIONS(12054), + [anon_sym_BSLASHac] = ACTIONS(12054), + [anon_sym_BSLASHAc] = ACTIONS(12054), + [anon_sym_BSLASHacp] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12054), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12054), + [anon_sym_BSLASHcolor] = ACTIONS(12054), + [anon_sym_BSLASHcolorbox] = ACTIONS(12054), + [anon_sym_BSLASHtextcolor] = ACTIONS(12054), + [anon_sym_BSLASHpagecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12054), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12054), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12054), + }, + [666] = { + [sym_brace_group] = STATE(3370), + [sym_generic_command_name] = ACTIONS(12028), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12028), + [aux_sym_chapter_token1] = ACTIONS(12028), + [aux_sym_section_token1] = ACTIONS(12028), + [aux_sym_subsection_token1] = ACTIONS(12028), + [aux_sym_subsubsection_token1] = ACTIONS(12028), + [aux_sym_paragraph_token1] = ACTIONS(12028), + [aux_sym_subparagraph_token1] = ACTIONS(12028), + [anon_sym_BSLASHitem] = ACTIONS(12028), + [anon_sym_LBRACK] = ACTIONS(12026), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(12026), + [anon_sym_COMMA] = ACTIONS(12026), + [anon_sym_EQ] = ACTIONS(12026), + [sym_word] = ACTIONS(12026), + [sym_param] = ACTIONS(12026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12026), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12026), + [anon_sym_DOLLAR] = ACTIONS(12028), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12026), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12026), + [anon_sym_BSLASHbegin] = ACTIONS(12028), + [anon_sym_BSLASHcaption] = ACTIONS(12028), + [anon_sym_BSLASHcite] = ACTIONS(12028), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCite] = ACTIONS(12028), + [anon_sym_BSLASHnocite] = ACTIONS(12028), + [anon_sym_BSLASHcitet] = ACTIONS(12028), + [anon_sym_BSLASHcitep] = ACTIONS(12028), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteauthor] = ACTIONS(12028), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12028), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitetitle] = ACTIONS(12028), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteyear] = ACTIONS(12028), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitedate] = ACTIONS(12028), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteurl] = ACTIONS(12028), + [anon_sym_BSLASHfullcite] = ACTIONS(12028), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12028), + [anon_sym_BSLASHcitealt] = ACTIONS(12028), + [anon_sym_BSLASHcitealp] = ACTIONS(12028), + [anon_sym_BSLASHcitetext] = ACTIONS(12028), + [anon_sym_BSLASHparencite] = ACTIONS(12028), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHParencite] = ACTIONS(12028), + [anon_sym_BSLASHfootcite] = ACTIONS(12028), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12028), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12028), + [anon_sym_BSLASHtextcite] = ACTIONS(12028), + [anon_sym_BSLASHTextcite] = ACTIONS(12028), + [anon_sym_BSLASHsmartcite] = ACTIONS(12028), + [anon_sym_BSLASHSmartcite] = ACTIONS(12028), + [anon_sym_BSLASHsupercite] = ACTIONS(12028), + [anon_sym_BSLASHautocite] = ACTIONS(12028), + [anon_sym_BSLASHAutocite] = ACTIONS(12028), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHvolcite] = ACTIONS(12028), + [anon_sym_BSLASHVolcite] = ACTIONS(12028), + [anon_sym_BSLASHpvolcite] = ACTIONS(12028), + [anon_sym_BSLASHPvolcite] = ACTIONS(12028), + [anon_sym_BSLASHfvolcite] = ACTIONS(12028), + [anon_sym_BSLASHftvolcite] = ACTIONS(12028), + [anon_sym_BSLASHsvolcite] = ACTIONS(12028), + [anon_sym_BSLASHSvolcite] = ACTIONS(12028), + [anon_sym_BSLASHtvolcite] = ACTIONS(12028), + [anon_sym_BSLASHTvolcite] = ACTIONS(12028), + [anon_sym_BSLASHavolcite] = ACTIONS(12028), + [anon_sym_BSLASHAvolcite] = ACTIONS(12028), + [anon_sym_BSLASHnotecite] = ACTIONS(12028), + [anon_sym_BSLASHpnotecite] = ACTIONS(12028), + [anon_sym_BSLASHPnotecite] = ACTIONS(12028), + [anon_sym_BSLASHfnotecite] = ACTIONS(12028), + [anon_sym_BSLASHusepackage] = ACTIONS(12028), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12028), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12028), + [anon_sym_BSLASHinclude] = ACTIONS(12028), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12028), + [anon_sym_BSLASHinput] = ACTIONS(12028), + [anon_sym_BSLASHsubfile] = ACTIONS(12028), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12028), + [anon_sym_BSLASHbibliography] = ACTIONS(12028), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12028), + [anon_sym_BSLASHincludesvg] = ACTIONS(12028), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12028), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12028), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12028), + [anon_sym_BSLASHimport] = ACTIONS(12028), + [anon_sym_BSLASHsubimport] = ACTIONS(12028), + [anon_sym_BSLASHinputfrom] = ACTIONS(12028), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12028), + [anon_sym_BSLASHincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHlabel] = ACTIONS(12028), + [anon_sym_BSLASHref] = ACTIONS(12028), + [anon_sym_BSLASHvref] = ACTIONS(12028), + [anon_sym_BSLASHVref] = ACTIONS(12028), + [anon_sym_BSLASHautoref] = ACTIONS(12028), + [anon_sym_BSLASHpageref] = ACTIONS(12028), + [anon_sym_BSLASHcref] = ACTIONS(12028), + [anon_sym_BSLASHCref] = ACTIONS(12028), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnameCref] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHlabelcref] = ACTIONS(12028), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12028), + [anon_sym_BSLASHeqref] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange] = ACTIONS(12028), + [anon_sym_BSLASHCrefrange] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewlabel] = ACTIONS(12028), + [anon_sym_BSLASHnewcommand] = ACTIONS(12028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12028), + [anon_sym_BSLASHgls] = ACTIONS(12028), + [anon_sym_BSLASHGls] = ACTIONS(12028), + [anon_sym_BSLASHGLS] = ACTIONS(12028), + [anon_sym_BSLASHglspl] = ACTIONS(12028), + [anon_sym_BSLASHGlspl] = ACTIONS(12028), + [anon_sym_BSLASHGLSpl] = ACTIONS(12028), + [anon_sym_BSLASHglsdisp] = ACTIONS(12028), + [anon_sym_BSLASHglslink] = ACTIONS(12028), + [anon_sym_BSLASHglstext] = ACTIONS(12028), + [anon_sym_BSLASHGlstext] = ACTIONS(12028), + [anon_sym_BSLASHGLStext] = ACTIONS(12028), + [anon_sym_BSLASHglsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12028), + [anon_sym_BSLASHglsplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSplural] = ACTIONS(12028), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHglsname] = ACTIONS(12028), + [anon_sym_BSLASHGlsname] = ACTIONS(12028), + [anon_sym_BSLASHGLSname] = ACTIONS(12028), + [anon_sym_BSLASHglssymbol] = ACTIONS(12028), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12028), + [anon_sym_BSLASHglsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12028), + [anon_sym_BSLASHglsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12028), + [anon_sym_BSLASHglsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12028), + [anon_sym_BSLASHglsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12028), + [anon_sym_BSLASHglsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12028), + [anon_sym_BSLASHnewacronym] = ACTIONS(12028), + [anon_sym_BSLASHacrshort] = ACTIONS(12028), + [anon_sym_BSLASHAcrshort] = ACTIONS(12028), + [anon_sym_BSLASHACRshort] = ACTIONS(12028), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12028), + [anon_sym_BSLASHacrlong] = ACTIONS(12028), + [anon_sym_BSLASHAcrlong] = ACTIONS(12028), + [anon_sym_BSLASHACRlong] = ACTIONS(12028), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12028), + [anon_sym_BSLASHacrfull] = ACTIONS(12028), + [anon_sym_BSLASHAcrfull] = ACTIONS(12028), + [anon_sym_BSLASHACRfull] = ACTIONS(12028), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12028), + [anon_sym_BSLASHacs] = ACTIONS(12028), + [anon_sym_BSLASHAcs] = ACTIONS(12028), + [anon_sym_BSLASHacsp] = ACTIONS(12028), + [anon_sym_BSLASHAcsp] = ACTIONS(12028), + [anon_sym_BSLASHacl] = ACTIONS(12028), + [anon_sym_BSLASHAcl] = ACTIONS(12028), + [anon_sym_BSLASHaclp] = ACTIONS(12028), + [anon_sym_BSLASHAclp] = ACTIONS(12028), + [anon_sym_BSLASHacf] = ACTIONS(12028), + [anon_sym_BSLASHAcf] = ACTIONS(12028), + [anon_sym_BSLASHacfp] = ACTIONS(12028), + [anon_sym_BSLASHAcfp] = ACTIONS(12028), + [anon_sym_BSLASHac] = ACTIONS(12028), + [anon_sym_BSLASHAc] = ACTIONS(12028), + [anon_sym_BSLASHacp] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12028), + [anon_sym_BSLASHcolor] = ACTIONS(12028), + [anon_sym_BSLASHcolorbox] = ACTIONS(12028), + [anon_sym_BSLASHtextcolor] = ACTIONS(12028), + [anon_sym_BSLASHpagecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12028), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12028), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12028), + }, + [667] = { + [sym_generic_command_name] = ACTIONS(12353), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12353), + [aux_sym_chapter_token1] = ACTIONS(12353), + [aux_sym_section_token1] = ACTIONS(12353), + [aux_sym_subsection_token1] = ACTIONS(12353), + [aux_sym_subsubsection_token1] = ACTIONS(12353), + [aux_sym_paragraph_token1] = ACTIONS(12353), + [aux_sym_subparagraph_token1] = ACTIONS(12353), + [anon_sym_BSLASHitem] = ACTIONS(12353), + [anon_sym_LBRACK] = ACTIONS(12351), + [anon_sym_LBRACE] = ACTIONS(12351), + [anon_sym_LPAREN] = ACTIONS(12351), + [anon_sym_COMMA] = ACTIONS(12351), + [anon_sym_EQ] = ACTIONS(12351), + [sym_word] = ACTIONS(12351), + [sym_param] = ACTIONS(12351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12351), + [anon_sym_DOLLAR] = ACTIONS(12353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12351), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12351), + [anon_sym_BSLASHbegin] = ACTIONS(12353), + [anon_sym_BSLASHcaption] = ACTIONS(12353), + [anon_sym_BSLASHcite] = ACTIONS(12353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCite] = ACTIONS(12353), + [anon_sym_BSLASHnocite] = ACTIONS(12353), + [anon_sym_BSLASHcitet] = ACTIONS(12353), + [anon_sym_BSLASHcitep] = ACTIONS(12353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteauthor] = ACTIONS(12353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitetitle] = ACTIONS(12353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteyear] = ACTIONS(12353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitedate] = ACTIONS(12353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteurl] = ACTIONS(12353), + [anon_sym_BSLASHfullcite] = ACTIONS(12353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12353), + [anon_sym_BSLASHcitealt] = ACTIONS(12353), + [anon_sym_BSLASHcitealp] = ACTIONS(12353), + [anon_sym_BSLASHcitetext] = ACTIONS(12353), + [anon_sym_BSLASHparencite] = ACTIONS(12353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHParencite] = ACTIONS(12353), + [anon_sym_BSLASHfootcite] = ACTIONS(12353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12353), + [anon_sym_BSLASHtextcite] = ACTIONS(12353), + [anon_sym_BSLASHTextcite] = ACTIONS(12353), + [anon_sym_BSLASHsmartcite] = ACTIONS(12353), + [anon_sym_BSLASHSmartcite] = ACTIONS(12353), + [anon_sym_BSLASHsupercite] = ACTIONS(12353), + [anon_sym_BSLASHautocite] = ACTIONS(12353), + [anon_sym_BSLASHAutocite] = ACTIONS(12353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHvolcite] = ACTIONS(12353), + [anon_sym_BSLASHVolcite] = ACTIONS(12353), + [anon_sym_BSLASHpvolcite] = ACTIONS(12353), + [anon_sym_BSLASHPvolcite] = ACTIONS(12353), + [anon_sym_BSLASHfvolcite] = ACTIONS(12353), + [anon_sym_BSLASHftvolcite] = ACTIONS(12353), + [anon_sym_BSLASHsvolcite] = ACTIONS(12353), + [anon_sym_BSLASHSvolcite] = ACTIONS(12353), + [anon_sym_BSLASHtvolcite] = ACTIONS(12353), + [anon_sym_BSLASHTvolcite] = ACTIONS(12353), + [anon_sym_BSLASHavolcite] = ACTIONS(12353), + [anon_sym_BSLASHAvolcite] = ACTIONS(12353), + [anon_sym_BSLASHnotecite] = ACTIONS(12353), + [anon_sym_BSLASHpnotecite] = ACTIONS(12353), + [anon_sym_BSLASHPnotecite] = ACTIONS(12353), + [anon_sym_BSLASHfnotecite] = ACTIONS(12353), + [anon_sym_BSLASHusepackage] = ACTIONS(12353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12353), + [anon_sym_BSLASHinclude] = ACTIONS(12353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12353), + [anon_sym_BSLASHinput] = ACTIONS(12353), + [anon_sym_BSLASHsubfile] = ACTIONS(12353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12353), + [anon_sym_BSLASHbibliography] = ACTIONS(12353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12353), + [anon_sym_BSLASHincludesvg] = ACTIONS(12353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12353), + [anon_sym_BSLASHimport] = ACTIONS(12353), + [anon_sym_BSLASHsubimport] = ACTIONS(12353), + [anon_sym_BSLASHinputfrom] = ACTIONS(12353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12353), + [anon_sym_BSLASHincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHlabel] = ACTIONS(12353), + [anon_sym_BSLASHref] = ACTIONS(12353), + [anon_sym_BSLASHvref] = ACTIONS(12353), + [anon_sym_BSLASHVref] = ACTIONS(12353), + [anon_sym_BSLASHautoref] = ACTIONS(12353), + [anon_sym_BSLASHpageref] = ACTIONS(12353), + [anon_sym_BSLASHcref] = ACTIONS(12353), + [anon_sym_BSLASHCref] = ACTIONS(12353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnameCref] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHlabelcref] = ACTIONS(12353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12353), + [anon_sym_BSLASHeqref] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange] = ACTIONS(12353), + [anon_sym_BSLASHCrefrange] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewlabel] = ACTIONS(12353), + [anon_sym_BSLASHnewcommand] = ACTIONS(12353), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12353), + [anon_sym_BSLASHgls] = ACTIONS(12353), + [anon_sym_BSLASHGls] = ACTIONS(12353), + [anon_sym_BSLASHGLS] = ACTIONS(12353), + [anon_sym_BSLASHglspl] = ACTIONS(12353), + [anon_sym_BSLASHGlspl] = ACTIONS(12353), + [anon_sym_BSLASHGLSpl] = ACTIONS(12353), + [anon_sym_BSLASHglsdisp] = ACTIONS(12353), + [anon_sym_BSLASHglslink] = ACTIONS(12353), + [anon_sym_BSLASHglstext] = ACTIONS(12353), + [anon_sym_BSLASHGlstext] = ACTIONS(12353), + [anon_sym_BSLASHGLStext] = ACTIONS(12353), + [anon_sym_BSLASHglsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12353), + [anon_sym_BSLASHglsplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSplural] = ACTIONS(12353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHglsname] = ACTIONS(12353), + [anon_sym_BSLASHGlsname] = ACTIONS(12353), + [anon_sym_BSLASHGLSname] = ACTIONS(12353), + [anon_sym_BSLASHglssymbol] = ACTIONS(12353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12353), + [anon_sym_BSLASHglsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12353), + [anon_sym_BSLASHglsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12353), + [anon_sym_BSLASHglsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12353), + [anon_sym_BSLASHglsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12353), + [anon_sym_BSLASHglsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12353), + [anon_sym_BSLASHnewacronym] = ACTIONS(12353), + [anon_sym_BSLASHacrshort] = ACTIONS(12353), + [anon_sym_BSLASHAcrshort] = ACTIONS(12353), + [anon_sym_BSLASHACRshort] = ACTIONS(12353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12353), + [anon_sym_BSLASHacrlong] = ACTIONS(12353), + [anon_sym_BSLASHAcrlong] = ACTIONS(12353), + [anon_sym_BSLASHACRlong] = ACTIONS(12353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12353), + [anon_sym_BSLASHacrfull] = ACTIONS(12353), + [anon_sym_BSLASHAcrfull] = ACTIONS(12353), + [anon_sym_BSLASHACRfull] = ACTIONS(12353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12353), + [anon_sym_BSLASHacs] = ACTIONS(12353), + [anon_sym_BSLASHAcs] = ACTIONS(12353), + [anon_sym_BSLASHacsp] = ACTIONS(12353), + [anon_sym_BSLASHAcsp] = ACTIONS(12353), + [anon_sym_BSLASHacl] = ACTIONS(12353), + [anon_sym_BSLASHAcl] = ACTIONS(12353), + [anon_sym_BSLASHaclp] = ACTIONS(12353), + [anon_sym_BSLASHAclp] = ACTIONS(12353), + [anon_sym_BSLASHacf] = ACTIONS(12353), + [anon_sym_BSLASHAcf] = ACTIONS(12353), + [anon_sym_BSLASHacfp] = ACTIONS(12353), + [anon_sym_BSLASHAcfp] = ACTIONS(12353), + [anon_sym_BSLASHac] = ACTIONS(12353), + [anon_sym_BSLASHAc] = ACTIONS(12353), + [anon_sym_BSLASHacp] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12353), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12353), + [anon_sym_BSLASHcolor] = ACTIONS(12353), + [anon_sym_BSLASHcolorbox] = ACTIONS(12353), + [anon_sym_BSLASHtextcolor] = ACTIONS(12353), + [anon_sym_BSLASHpagecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12353), + }, + [668] = { + [sym_generic_command_name] = ACTIONS(12181), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12181), + [aux_sym_chapter_token1] = ACTIONS(12181), + [aux_sym_section_token1] = ACTIONS(12181), + [aux_sym_subsection_token1] = ACTIONS(12181), + [aux_sym_subsubsection_token1] = ACTIONS(12181), + [aux_sym_paragraph_token1] = ACTIONS(12181), + [aux_sym_subparagraph_token1] = ACTIONS(12181), + [anon_sym_BSLASHitem] = ACTIONS(12181), + [anon_sym_LBRACK] = ACTIONS(12179), + [anon_sym_LBRACE] = ACTIONS(12179), + [anon_sym_LPAREN] = ACTIONS(12179), + [anon_sym_COMMA] = ACTIONS(12179), + [anon_sym_EQ] = ACTIONS(12179), + [sym_word] = ACTIONS(12179), + [sym_param] = ACTIONS(12179), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12179), + [anon_sym_DOLLAR] = ACTIONS(12181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12179), + [anon_sym_BSLASHbegin] = ACTIONS(12181), + [anon_sym_BSLASHcaption] = ACTIONS(12181), + [anon_sym_BSLASHcite] = ACTIONS(12181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCite] = ACTIONS(12181), + [anon_sym_BSLASHnocite] = ACTIONS(12181), + [anon_sym_BSLASHcitet] = ACTIONS(12181), + [anon_sym_BSLASHcitep] = ACTIONS(12181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteauthor] = ACTIONS(12181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitetitle] = ACTIONS(12181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteyear] = ACTIONS(12181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitedate] = ACTIONS(12181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteurl] = ACTIONS(12181), + [anon_sym_BSLASHfullcite] = ACTIONS(12181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12181), + [anon_sym_BSLASHcitealt] = ACTIONS(12181), + [anon_sym_BSLASHcitealp] = ACTIONS(12181), + [anon_sym_BSLASHcitetext] = ACTIONS(12181), + [anon_sym_BSLASHparencite] = ACTIONS(12181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHParencite] = ACTIONS(12181), + [anon_sym_BSLASHfootcite] = ACTIONS(12181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12181), + [anon_sym_BSLASHtextcite] = ACTIONS(12181), + [anon_sym_BSLASHTextcite] = ACTIONS(12181), + [anon_sym_BSLASHsmartcite] = ACTIONS(12181), + [anon_sym_BSLASHSmartcite] = ACTIONS(12181), + [anon_sym_BSLASHsupercite] = ACTIONS(12181), + [anon_sym_BSLASHautocite] = ACTIONS(12181), + [anon_sym_BSLASHAutocite] = ACTIONS(12181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHvolcite] = ACTIONS(12181), + [anon_sym_BSLASHVolcite] = ACTIONS(12181), + [anon_sym_BSLASHpvolcite] = ACTIONS(12181), + [anon_sym_BSLASHPvolcite] = ACTIONS(12181), + [anon_sym_BSLASHfvolcite] = ACTIONS(12181), + [anon_sym_BSLASHftvolcite] = ACTIONS(12181), + [anon_sym_BSLASHsvolcite] = ACTIONS(12181), + [anon_sym_BSLASHSvolcite] = ACTIONS(12181), + [anon_sym_BSLASHtvolcite] = ACTIONS(12181), + [anon_sym_BSLASHTvolcite] = ACTIONS(12181), + [anon_sym_BSLASHavolcite] = ACTIONS(12181), + [anon_sym_BSLASHAvolcite] = ACTIONS(12181), + [anon_sym_BSLASHnotecite] = ACTIONS(12181), + [anon_sym_BSLASHpnotecite] = ACTIONS(12181), + [anon_sym_BSLASHPnotecite] = ACTIONS(12181), + [anon_sym_BSLASHfnotecite] = ACTIONS(12181), + [anon_sym_BSLASHusepackage] = ACTIONS(12181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12181), + [anon_sym_BSLASHinclude] = ACTIONS(12181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12181), + [anon_sym_BSLASHinput] = ACTIONS(12181), + [anon_sym_BSLASHsubfile] = ACTIONS(12181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12181), + [anon_sym_BSLASHbibliography] = ACTIONS(12181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12181), + [anon_sym_BSLASHincludesvg] = ACTIONS(12181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12181), + [anon_sym_BSLASHimport] = ACTIONS(12181), + [anon_sym_BSLASHsubimport] = ACTIONS(12181), + [anon_sym_BSLASHinputfrom] = ACTIONS(12181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12181), + [anon_sym_BSLASHincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHlabel] = ACTIONS(12181), + [anon_sym_BSLASHref] = ACTIONS(12181), + [anon_sym_BSLASHvref] = ACTIONS(12181), + [anon_sym_BSLASHVref] = ACTIONS(12181), + [anon_sym_BSLASHautoref] = ACTIONS(12181), + [anon_sym_BSLASHpageref] = ACTIONS(12181), + [anon_sym_BSLASHcref] = ACTIONS(12181), + [anon_sym_BSLASHCref] = ACTIONS(12181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnameCref] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHlabelcref] = ACTIONS(12181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12181), + [anon_sym_BSLASHeqref] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange] = ACTIONS(12181), + [anon_sym_BSLASHCrefrange] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewlabel] = ACTIONS(12181), + [anon_sym_BSLASHnewcommand] = ACTIONS(12181), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12181), + [anon_sym_BSLASHgls] = ACTIONS(12181), + [anon_sym_BSLASHGls] = ACTIONS(12181), + [anon_sym_BSLASHGLS] = ACTIONS(12181), + [anon_sym_BSLASHglspl] = ACTIONS(12181), + [anon_sym_BSLASHGlspl] = ACTIONS(12181), + [anon_sym_BSLASHGLSpl] = ACTIONS(12181), + [anon_sym_BSLASHglsdisp] = ACTIONS(12181), + [anon_sym_BSLASHglslink] = ACTIONS(12181), + [anon_sym_BSLASHglstext] = ACTIONS(12181), + [anon_sym_BSLASHGlstext] = ACTIONS(12181), + [anon_sym_BSLASHGLStext] = ACTIONS(12181), + [anon_sym_BSLASHglsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12181), + [anon_sym_BSLASHglsplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSplural] = ACTIONS(12181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHglsname] = ACTIONS(12181), + [anon_sym_BSLASHGlsname] = ACTIONS(12181), + [anon_sym_BSLASHGLSname] = ACTIONS(12181), + [anon_sym_BSLASHglssymbol] = ACTIONS(12181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12181), + [anon_sym_BSLASHglsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12181), + [anon_sym_BSLASHglsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12181), + [anon_sym_BSLASHglsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12181), + [anon_sym_BSLASHglsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12181), + [anon_sym_BSLASHglsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12181), + [anon_sym_BSLASHnewacronym] = ACTIONS(12181), + [anon_sym_BSLASHacrshort] = ACTIONS(12181), + [anon_sym_BSLASHAcrshort] = ACTIONS(12181), + [anon_sym_BSLASHACRshort] = ACTIONS(12181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12181), + [anon_sym_BSLASHacrlong] = ACTIONS(12181), + [anon_sym_BSLASHAcrlong] = ACTIONS(12181), + [anon_sym_BSLASHACRlong] = ACTIONS(12181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12181), + [anon_sym_BSLASHacrfull] = ACTIONS(12181), + [anon_sym_BSLASHAcrfull] = ACTIONS(12181), + [anon_sym_BSLASHACRfull] = ACTIONS(12181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12181), + [anon_sym_BSLASHacs] = ACTIONS(12181), + [anon_sym_BSLASHAcs] = ACTIONS(12181), + [anon_sym_BSLASHacsp] = ACTIONS(12181), + [anon_sym_BSLASHAcsp] = ACTIONS(12181), + [anon_sym_BSLASHacl] = ACTIONS(12181), + [anon_sym_BSLASHAcl] = ACTIONS(12181), + [anon_sym_BSLASHaclp] = ACTIONS(12181), + [anon_sym_BSLASHAclp] = ACTIONS(12181), + [anon_sym_BSLASHacf] = ACTIONS(12181), + [anon_sym_BSLASHAcf] = ACTIONS(12181), + [anon_sym_BSLASHacfp] = ACTIONS(12181), + [anon_sym_BSLASHAcfp] = ACTIONS(12181), + [anon_sym_BSLASHac] = ACTIONS(12181), + [anon_sym_BSLASHAc] = ACTIONS(12181), + [anon_sym_BSLASHacp] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12181), + [anon_sym_BSLASHcolor] = ACTIONS(12181), + [anon_sym_BSLASHcolorbox] = ACTIONS(12181), + [anon_sym_BSLASHtextcolor] = ACTIONS(12181), + [anon_sym_BSLASHpagecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12181), + }, + [669] = { + [sym_generic_command_name] = ACTIONS(12493), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12493), + [aux_sym_chapter_token1] = ACTIONS(12493), + [aux_sym_section_token1] = ACTIONS(12493), + [aux_sym_subsection_token1] = ACTIONS(12493), + [aux_sym_subsubsection_token1] = ACTIONS(12493), + [aux_sym_paragraph_token1] = ACTIONS(12493), + [aux_sym_subparagraph_token1] = ACTIONS(12493), + [anon_sym_BSLASHitem] = ACTIONS(12493), + [anon_sym_LBRACK] = ACTIONS(12491), + [anon_sym_LBRACE] = ACTIONS(12491), + [anon_sym_LPAREN] = ACTIONS(12491), + [anon_sym_COMMA] = ACTIONS(12491), + [anon_sym_EQ] = ACTIONS(12491), + [sym_word] = ACTIONS(12491), + [sym_param] = ACTIONS(12491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12491), + [anon_sym_DOLLAR] = ACTIONS(12493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12491), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12491), + [anon_sym_BSLASHbegin] = ACTIONS(12493), + [anon_sym_BSLASHcaption] = ACTIONS(12493), + [anon_sym_BSLASHcite] = ACTIONS(12493), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCite] = ACTIONS(12493), + [anon_sym_BSLASHnocite] = ACTIONS(12493), + [anon_sym_BSLASHcitet] = ACTIONS(12493), + [anon_sym_BSLASHcitep] = ACTIONS(12493), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteauthor] = ACTIONS(12493), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12493), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitetitle] = ACTIONS(12493), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteyear] = ACTIONS(12493), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitedate] = ACTIONS(12493), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteurl] = ACTIONS(12493), + [anon_sym_BSLASHfullcite] = ACTIONS(12493), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12493), + [anon_sym_BSLASHcitealt] = ACTIONS(12493), + [anon_sym_BSLASHcitealp] = ACTIONS(12493), + [anon_sym_BSLASHcitetext] = ACTIONS(12493), + [anon_sym_BSLASHparencite] = ACTIONS(12493), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHParencite] = ACTIONS(12493), + [anon_sym_BSLASHfootcite] = ACTIONS(12493), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12493), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12493), + [anon_sym_BSLASHtextcite] = ACTIONS(12493), + [anon_sym_BSLASHTextcite] = ACTIONS(12493), + [anon_sym_BSLASHsmartcite] = ACTIONS(12493), + [anon_sym_BSLASHSmartcite] = ACTIONS(12493), + [anon_sym_BSLASHsupercite] = ACTIONS(12493), + [anon_sym_BSLASHautocite] = ACTIONS(12493), + [anon_sym_BSLASHAutocite] = ACTIONS(12493), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHvolcite] = ACTIONS(12493), + [anon_sym_BSLASHVolcite] = ACTIONS(12493), + [anon_sym_BSLASHpvolcite] = ACTIONS(12493), + [anon_sym_BSLASHPvolcite] = ACTIONS(12493), + [anon_sym_BSLASHfvolcite] = ACTIONS(12493), + [anon_sym_BSLASHftvolcite] = ACTIONS(12493), + [anon_sym_BSLASHsvolcite] = ACTIONS(12493), + [anon_sym_BSLASHSvolcite] = ACTIONS(12493), + [anon_sym_BSLASHtvolcite] = ACTIONS(12493), + [anon_sym_BSLASHTvolcite] = ACTIONS(12493), + [anon_sym_BSLASHavolcite] = ACTIONS(12493), + [anon_sym_BSLASHAvolcite] = ACTIONS(12493), + [anon_sym_BSLASHnotecite] = ACTIONS(12493), + [anon_sym_BSLASHpnotecite] = ACTIONS(12493), + [anon_sym_BSLASHPnotecite] = ACTIONS(12493), + [anon_sym_BSLASHfnotecite] = ACTIONS(12493), + [anon_sym_BSLASHusepackage] = ACTIONS(12493), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12493), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12493), + [anon_sym_BSLASHinclude] = ACTIONS(12493), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12493), + [anon_sym_BSLASHinput] = ACTIONS(12493), + [anon_sym_BSLASHsubfile] = ACTIONS(12493), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12493), + [anon_sym_BSLASHbibliography] = ACTIONS(12493), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12493), + [anon_sym_BSLASHincludesvg] = ACTIONS(12493), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12493), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12493), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12493), + [anon_sym_BSLASHimport] = ACTIONS(12493), + [anon_sym_BSLASHsubimport] = ACTIONS(12493), + [anon_sym_BSLASHinputfrom] = ACTIONS(12493), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12493), + [anon_sym_BSLASHincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHlabel] = ACTIONS(12493), + [anon_sym_BSLASHref] = ACTIONS(12493), + [anon_sym_BSLASHvref] = ACTIONS(12493), + [anon_sym_BSLASHVref] = ACTIONS(12493), + [anon_sym_BSLASHautoref] = ACTIONS(12493), + [anon_sym_BSLASHpageref] = ACTIONS(12493), + [anon_sym_BSLASHcref] = ACTIONS(12493), + [anon_sym_BSLASHCref] = ACTIONS(12493), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnameCref] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHlabelcref] = ACTIONS(12493), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12493), + [anon_sym_BSLASHeqref] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange] = ACTIONS(12493), + [anon_sym_BSLASHCrefrange] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewlabel] = ACTIONS(12493), + [anon_sym_BSLASHnewcommand] = ACTIONS(12493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12493), + [anon_sym_BSLASHgls] = ACTIONS(12493), + [anon_sym_BSLASHGls] = ACTIONS(12493), + [anon_sym_BSLASHGLS] = ACTIONS(12493), + [anon_sym_BSLASHglspl] = ACTIONS(12493), + [anon_sym_BSLASHGlspl] = ACTIONS(12493), + [anon_sym_BSLASHGLSpl] = ACTIONS(12493), + [anon_sym_BSLASHglsdisp] = ACTIONS(12493), + [anon_sym_BSLASHglslink] = ACTIONS(12493), + [anon_sym_BSLASHglstext] = ACTIONS(12493), + [anon_sym_BSLASHGlstext] = ACTIONS(12493), + [anon_sym_BSLASHGLStext] = ACTIONS(12493), + [anon_sym_BSLASHglsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12493), + [anon_sym_BSLASHglsplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSplural] = ACTIONS(12493), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHglsname] = ACTIONS(12493), + [anon_sym_BSLASHGlsname] = ACTIONS(12493), + [anon_sym_BSLASHGLSname] = ACTIONS(12493), + [anon_sym_BSLASHglssymbol] = ACTIONS(12493), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12493), + [anon_sym_BSLASHglsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12493), + [anon_sym_BSLASHglsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12493), + [anon_sym_BSLASHglsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12493), + [anon_sym_BSLASHglsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12493), + [anon_sym_BSLASHglsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12493), + [anon_sym_BSLASHnewacronym] = ACTIONS(12493), + [anon_sym_BSLASHacrshort] = ACTIONS(12493), + [anon_sym_BSLASHAcrshort] = ACTIONS(12493), + [anon_sym_BSLASHACRshort] = ACTIONS(12493), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12493), + [anon_sym_BSLASHacrlong] = ACTIONS(12493), + [anon_sym_BSLASHAcrlong] = ACTIONS(12493), + [anon_sym_BSLASHACRlong] = ACTIONS(12493), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12493), + [anon_sym_BSLASHacrfull] = ACTIONS(12493), + [anon_sym_BSLASHAcrfull] = ACTIONS(12493), + [anon_sym_BSLASHACRfull] = ACTIONS(12493), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12493), + [anon_sym_BSLASHacs] = ACTIONS(12493), + [anon_sym_BSLASHAcs] = ACTIONS(12493), + [anon_sym_BSLASHacsp] = ACTIONS(12493), + [anon_sym_BSLASHAcsp] = ACTIONS(12493), + [anon_sym_BSLASHacl] = ACTIONS(12493), + [anon_sym_BSLASHAcl] = ACTIONS(12493), + [anon_sym_BSLASHaclp] = ACTIONS(12493), + [anon_sym_BSLASHAclp] = ACTIONS(12493), + [anon_sym_BSLASHacf] = ACTIONS(12493), + [anon_sym_BSLASHAcf] = ACTIONS(12493), + [anon_sym_BSLASHacfp] = ACTIONS(12493), + [anon_sym_BSLASHAcfp] = ACTIONS(12493), + [anon_sym_BSLASHac] = ACTIONS(12493), + [anon_sym_BSLASHAc] = ACTIONS(12493), + [anon_sym_BSLASHacp] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12493), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12493), + [anon_sym_BSLASHcolor] = ACTIONS(12493), + [anon_sym_BSLASHcolorbox] = ACTIONS(12493), + [anon_sym_BSLASHtextcolor] = ACTIONS(12493), + [anon_sym_BSLASHpagecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12493), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12493), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12493), + }, + [670] = { + [sym_generic_command_name] = ACTIONS(12481), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12481), + [aux_sym_chapter_token1] = ACTIONS(12481), + [aux_sym_section_token1] = ACTIONS(12481), + [aux_sym_subsection_token1] = ACTIONS(12481), + [aux_sym_subsubsection_token1] = ACTIONS(12481), + [aux_sym_paragraph_token1] = ACTIONS(12481), + [aux_sym_subparagraph_token1] = ACTIONS(12481), + [anon_sym_BSLASHitem] = ACTIONS(12481), + [anon_sym_LBRACK] = ACTIONS(12479), + [anon_sym_LBRACE] = ACTIONS(12479), + [anon_sym_LPAREN] = ACTIONS(12479), + [anon_sym_COMMA] = ACTIONS(12479), + [anon_sym_EQ] = ACTIONS(12479), + [sym_word] = ACTIONS(12479), + [sym_param] = ACTIONS(12479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12479), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12479), + [anon_sym_DOLLAR] = ACTIONS(12481), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12479), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12479), + [anon_sym_BSLASHbegin] = ACTIONS(12481), + [anon_sym_BSLASHcaption] = ACTIONS(12481), + [anon_sym_BSLASHcite] = ACTIONS(12481), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCite] = ACTIONS(12481), + [anon_sym_BSLASHnocite] = ACTIONS(12481), + [anon_sym_BSLASHcitet] = ACTIONS(12481), + [anon_sym_BSLASHcitep] = ACTIONS(12481), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteauthor] = ACTIONS(12481), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12481), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitetitle] = ACTIONS(12481), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteyear] = ACTIONS(12481), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitedate] = ACTIONS(12481), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteurl] = ACTIONS(12481), + [anon_sym_BSLASHfullcite] = ACTIONS(12481), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12481), + [anon_sym_BSLASHcitealt] = ACTIONS(12481), + [anon_sym_BSLASHcitealp] = ACTIONS(12481), + [anon_sym_BSLASHcitetext] = ACTIONS(12481), + [anon_sym_BSLASHparencite] = ACTIONS(12481), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHParencite] = ACTIONS(12481), + [anon_sym_BSLASHfootcite] = ACTIONS(12481), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12481), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12481), + [anon_sym_BSLASHtextcite] = ACTIONS(12481), + [anon_sym_BSLASHTextcite] = ACTIONS(12481), + [anon_sym_BSLASHsmartcite] = ACTIONS(12481), + [anon_sym_BSLASHSmartcite] = ACTIONS(12481), + [anon_sym_BSLASHsupercite] = ACTIONS(12481), + [anon_sym_BSLASHautocite] = ACTIONS(12481), + [anon_sym_BSLASHAutocite] = ACTIONS(12481), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHvolcite] = ACTIONS(12481), + [anon_sym_BSLASHVolcite] = ACTIONS(12481), + [anon_sym_BSLASHpvolcite] = ACTIONS(12481), + [anon_sym_BSLASHPvolcite] = ACTIONS(12481), + [anon_sym_BSLASHfvolcite] = ACTIONS(12481), + [anon_sym_BSLASHftvolcite] = ACTIONS(12481), + [anon_sym_BSLASHsvolcite] = ACTIONS(12481), + [anon_sym_BSLASHSvolcite] = ACTIONS(12481), + [anon_sym_BSLASHtvolcite] = ACTIONS(12481), + [anon_sym_BSLASHTvolcite] = ACTIONS(12481), + [anon_sym_BSLASHavolcite] = ACTIONS(12481), + [anon_sym_BSLASHAvolcite] = ACTIONS(12481), + [anon_sym_BSLASHnotecite] = ACTIONS(12481), + [anon_sym_BSLASHpnotecite] = ACTIONS(12481), + [anon_sym_BSLASHPnotecite] = ACTIONS(12481), + [anon_sym_BSLASHfnotecite] = ACTIONS(12481), + [anon_sym_BSLASHusepackage] = ACTIONS(12481), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12481), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12481), + [anon_sym_BSLASHinclude] = ACTIONS(12481), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12481), + [anon_sym_BSLASHinput] = ACTIONS(12481), + [anon_sym_BSLASHsubfile] = ACTIONS(12481), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12481), + [anon_sym_BSLASHbibliography] = ACTIONS(12481), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12481), + [anon_sym_BSLASHincludesvg] = ACTIONS(12481), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12481), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12481), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12481), + [anon_sym_BSLASHimport] = ACTIONS(12481), + [anon_sym_BSLASHsubimport] = ACTIONS(12481), + [anon_sym_BSLASHinputfrom] = ACTIONS(12481), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12481), + [anon_sym_BSLASHincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHlabel] = ACTIONS(12481), + [anon_sym_BSLASHref] = ACTIONS(12481), + [anon_sym_BSLASHvref] = ACTIONS(12481), + [anon_sym_BSLASHVref] = ACTIONS(12481), + [anon_sym_BSLASHautoref] = ACTIONS(12481), + [anon_sym_BSLASHpageref] = ACTIONS(12481), + [anon_sym_BSLASHcref] = ACTIONS(12481), + [anon_sym_BSLASHCref] = ACTIONS(12481), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnameCref] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHlabelcref] = ACTIONS(12481), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12481), + [anon_sym_BSLASHeqref] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange] = ACTIONS(12481), + [anon_sym_BSLASHCrefrange] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewlabel] = ACTIONS(12481), + [anon_sym_BSLASHnewcommand] = ACTIONS(12481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12481), + [anon_sym_BSLASHgls] = ACTIONS(12481), + [anon_sym_BSLASHGls] = ACTIONS(12481), + [anon_sym_BSLASHGLS] = ACTIONS(12481), + [anon_sym_BSLASHglspl] = ACTIONS(12481), + [anon_sym_BSLASHGlspl] = ACTIONS(12481), + [anon_sym_BSLASHGLSpl] = ACTIONS(12481), + [anon_sym_BSLASHglsdisp] = ACTIONS(12481), + [anon_sym_BSLASHglslink] = ACTIONS(12481), + [anon_sym_BSLASHglstext] = ACTIONS(12481), + [anon_sym_BSLASHGlstext] = ACTIONS(12481), + [anon_sym_BSLASHGLStext] = ACTIONS(12481), + [anon_sym_BSLASHglsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12481), + [anon_sym_BSLASHglsplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSplural] = ACTIONS(12481), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHglsname] = ACTIONS(12481), + [anon_sym_BSLASHGlsname] = ACTIONS(12481), + [anon_sym_BSLASHGLSname] = ACTIONS(12481), + [anon_sym_BSLASHglssymbol] = ACTIONS(12481), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12481), + [anon_sym_BSLASHglsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12481), + [anon_sym_BSLASHglsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12481), + [anon_sym_BSLASHglsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12481), + [anon_sym_BSLASHglsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12481), + [anon_sym_BSLASHglsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12481), + [anon_sym_BSLASHnewacronym] = ACTIONS(12481), + [anon_sym_BSLASHacrshort] = ACTIONS(12481), + [anon_sym_BSLASHAcrshort] = ACTIONS(12481), + [anon_sym_BSLASHACRshort] = ACTIONS(12481), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12481), + [anon_sym_BSLASHacrlong] = ACTIONS(12481), + [anon_sym_BSLASHAcrlong] = ACTIONS(12481), + [anon_sym_BSLASHACRlong] = ACTIONS(12481), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12481), + [anon_sym_BSLASHacrfull] = ACTIONS(12481), + [anon_sym_BSLASHAcrfull] = ACTIONS(12481), + [anon_sym_BSLASHACRfull] = ACTIONS(12481), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12481), + [anon_sym_BSLASHacs] = ACTIONS(12481), + [anon_sym_BSLASHAcs] = ACTIONS(12481), + [anon_sym_BSLASHacsp] = ACTIONS(12481), + [anon_sym_BSLASHAcsp] = ACTIONS(12481), + [anon_sym_BSLASHacl] = ACTIONS(12481), + [anon_sym_BSLASHAcl] = ACTIONS(12481), + [anon_sym_BSLASHaclp] = ACTIONS(12481), + [anon_sym_BSLASHAclp] = ACTIONS(12481), + [anon_sym_BSLASHacf] = ACTIONS(12481), + [anon_sym_BSLASHAcf] = ACTIONS(12481), + [anon_sym_BSLASHacfp] = ACTIONS(12481), + [anon_sym_BSLASHAcfp] = ACTIONS(12481), + [anon_sym_BSLASHac] = ACTIONS(12481), + [anon_sym_BSLASHAc] = ACTIONS(12481), + [anon_sym_BSLASHacp] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12481), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12481), + [anon_sym_BSLASHcolor] = ACTIONS(12481), + [anon_sym_BSLASHcolorbox] = ACTIONS(12481), + [anon_sym_BSLASHtextcolor] = ACTIONS(12481), + [anon_sym_BSLASHpagecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12481), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12481), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12481), + }, + [671] = { + [sym_generic_command_name] = ACTIONS(12477), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12477), + [aux_sym_chapter_token1] = ACTIONS(12477), + [aux_sym_section_token1] = ACTIONS(12477), + [aux_sym_subsection_token1] = ACTIONS(12477), + [aux_sym_subsubsection_token1] = ACTIONS(12477), + [aux_sym_paragraph_token1] = ACTIONS(12477), + [aux_sym_subparagraph_token1] = ACTIONS(12477), + [anon_sym_BSLASHitem] = ACTIONS(12477), + [anon_sym_LBRACK] = ACTIONS(12475), + [anon_sym_LBRACE] = ACTIONS(12475), + [anon_sym_LPAREN] = ACTIONS(12475), + [anon_sym_COMMA] = ACTIONS(12475), + [anon_sym_EQ] = ACTIONS(12475), + [sym_word] = ACTIONS(12475), + [sym_param] = ACTIONS(12475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12475), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12475), + [anon_sym_DOLLAR] = ACTIONS(12477), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12475), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12475), + [anon_sym_BSLASHbegin] = ACTIONS(12477), + [anon_sym_BSLASHcaption] = ACTIONS(12477), + [anon_sym_BSLASHcite] = ACTIONS(12477), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCite] = ACTIONS(12477), + [anon_sym_BSLASHnocite] = ACTIONS(12477), + [anon_sym_BSLASHcitet] = ACTIONS(12477), + [anon_sym_BSLASHcitep] = ACTIONS(12477), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteauthor] = ACTIONS(12477), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12477), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitetitle] = ACTIONS(12477), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteyear] = ACTIONS(12477), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitedate] = ACTIONS(12477), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteurl] = ACTIONS(12477), + [anon_sym_BSLASHfullcite] = ACTIONS(12477), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12477), + [anon_sym_BSLASHcitealt] = ACTIONS(12477), + [anon_sym_BSLASHcitealp] = ACTIONS(12477), + [anon_sym_BSLASHcitetext] = ACTIONS(12477), + [anon_sym_BSLASHparencite] = ACTIONS(12477), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHParencite] = ACTIONS(12477), + [anon_sym_BSLASHfootcite] = ACTIONS(12477), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12477), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12477), + [anon_sym_BSLASHtextcite] = ACTIONS(12477), + [anon_sym_BSLASHTextcite] = ACTIONS(12477), + [anon_sym_BSLASHsmartcite] = ACTIONS(12477), + [anon_sym_BSLASHSmartcite] = ACTIONS(12477), + [anon_sym_BSLASHsupercite] = ACTIONS(12477), + [anon_sym_BSLASHautocite] = ACTIONS(12477), + [anon_sym_BSLASHAutocite] = ACTIONS(12477), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHvolcite] = ACTIONS(12477), + [anon_sym_BSLASHVolcite] = ACTIONS(12477), + [anon_sym_BSLASHpvolcite] = ACTIONS(12477), + [anon_sym_BSLASHPvolcite] = ACTIONS(12477), + [anon_sym_BSLASHfvolcite] = ACTIONS(12477), + [anon_sym_BSLASHftvolcite] = ACTIONS(12477), + [anon_sym_BSLASHsvolcite] = ACTIONS(12477), + [anon_sym_BSLASHSvolcite] = ACTIONS(12477), + [anon_sym_BSLASHtvolcite] = ACTIONS(12477), + [anon_sym_BSLASHTvolcite] = ACTIONS(12477), + [anon_sym_BSLASHavolcite] = ACTIONS(12477), + [anon_sym_BSLASHAvolcite] = ACTIONS(12477), + [anon_sym_BSLASHnotecite] = ACTIONS(12477), + [anon_sym_BSLASHpnotecite] = ACTIONS(12477), + [anon_sym_BSLASHPnotecite] = ACTIONS(12477), + [anon_sym_BSLASHfnotecite] = ACTIONS(12477), + [anon_sym_BSLASHusepackage] = ACTIONS(12477), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12477), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12477), + [anon_sym_BSLASHinclude] = ACTIONS(12477), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12477), + [anon_sym_BSLASHinput] = ACTIONS(12477), + [anon_sym_BSLASHsubfile] = ACTIONS(12477), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12477), + [anon_sym_BSLASHbibliography] = ACTIONS(12477), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12477), + [anon_sym_BSLASHincludesvg] = ACTIONS(12477), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12477), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12477), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12477), + [anon_sym_BSLASHimport] = ACTIONS(12477), + [anon_sym_BSLASHsubimport] = ACTIONS(12477), + [anon_sym_BSLASHinputfrom] = ACTIONS(12477), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12477), + [anon_sym_BSLASHincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHlabel] = ACTIONS(12477), + [anon_sym_BSLASHref] = ACTIONS(12477), + [anon_sym_BSLASHvref] = ACTIONS(12477), + [anon_sym_BSLASHVref] = ACTIONS(12477), + [anon_sym_BSLASHautoref] = ACTIONS(12477), + [anon_sym_BSLASHpageref] = ACTIONS(12477), + [anon_sym_BSLASHcref] = ACTIONS(12477), + [anon_sym_BSLASHCref] = ACTIONS(12477), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnameCref] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHlabelcref] = ACTIONS(12477), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12477), + [anon_sym_BSLASHeqref] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange] = ACTIONS(12477), + [anon_sym_BSLASHCrefrange] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewlabel] = ACTIONS(12477), + [anon_sym_BSLASHnewcommand] = ACTIONS(12477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12477), + [anon_sym_BSLASHgls] = ACTIONS(12477), + [anon_sym_BSLASHGls] = ACTIONS(12477), + [anon_sym_BSLASHGLS] = ACTIONS(12477), + [anon_sym_BSLASHglspl] = ACTIONS(12477), + [anon_sym_BSLASHGlspl] = ACTIONS(12477), + [anon_sym_BSLASHGLSpl] = ACTIONS(12477), + [anon_sym_BSLASHglsdisp] = ACTIONS(12477), + [anon_sym_BSLASHglslink] = ACTIONS(12477), + [anon_sym_BSLASHglstext] = ACTIONS(12477), + [anon_sym_BSLASHGlstext] = ACTIONS(12477), + [anon_sym_BSLASHGLStext] = ACTIONS(12477), + [anon_sym_BSLASHglsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12477), + [anon_sym_BSLASHglsplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSplural] = ACTIONS(12477), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHglsname] = ACTIONS(12477), + [anon_sym_BSLASHGlsname] = ACTIONS(12477), + [anon_sym_BSLASHGLSname] = ACTIONS(12477), + [anon_sym_BSLASHglssymbol] = ACTIONS(12477), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12477), + [anon_sym_BSLASHglsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12477), + [anon_sym_BSLASHglsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12477), + [anon_sym_BSLASHglsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12477), + [anon_sym_BSLASHglsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12477), + [anon_sym_BSLASHglsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12477), + [anon_sym_BSLASHnewacronym] = ACTIONS(12477), + [anon_sym_BSLASHacrshort] = ACTIONS(12477), + [anon_sym_BSLASHAcrshort] = ACTIONS(12477), + [anon_sym_BSLASHACRshort] = ACTIONS(12477), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12477), + [anon_sym_BSLASHacrlong] = ACTIONS(12477), + [anon_sym_BSLASHAcrlong] = ACTIONS(12477), + [anon_sym_BSLASHACRlong] = ACTIONS(12477), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12477), + [anon_sym_BSLASHacrfull] = ACTIONS(12477), + [anon_sym_BSLASHAcrfull] = ACTIONS(12477), + [anon_sym_BSLASHACRfull] = ACTIONS(12477), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12477), + [anon_sym_BSLASHacs] = ACTIONS(12477), + [anon_sym_BSLASHAcs] = ACTIONS(12477), + [anon_sym_BSLASHacsp] = ACTIONS(12477), + [anon_sym_BSLASHAcsp] = ACTIONS(12477), + [anon_sym_BSLASHacl] = ACTIONS(12477), + [anon_sym_BSLASHAcl] = ACTIONS(12477), + [anon_sym_BSLASHaclp] = ACTIONS(12477), + [anon_sym_BSLASHAclp] = ACTIONS(12477), + [anon_sym_BSLASHacf] = ACTIONS(12477), + [anon_sym_BSLASHAcf] = ACTIONS(12477), + [anon_sym_BSLASHacfp] = ACTIONS(12477), + [anon_sym_BSLASHAcfp] = ACTIONS(12477), + [anon_sym_BSLASHac] = ACTIONS(12477), + [anon_sym_BSLASHAc] = ACTIONS(12477), + [anon_sym_BSLASHacp] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12477), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12477), + [anon_sym_BSLASHcolor] = ACTIONS(12477), + [anon_sym_BSLASHcolorbox] = ACTIONS(12477), + [anon_sym_BSLASHtextcolor] = ACTIONS(12477), + [anon_sym_BSLASHpagecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12477), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12477), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12477), + }, + [672] = { + [sym_generic_command_name] = ACTIONS(12469), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12469), + [aux_sym_chapter_token1] = ACTIONS(12469), + [aux_sym_section_token1] = ACTIONS(12469), + [aux_sym_subsection_token1] = ACTIONS(12469), + [aux_sym_subsubsection_token1] = ACTIONS(12469), + [aux_sym_paragraph_token1] = ACTIONS(12469), + [aux_sym_subparagraph_token1] = ACTIONS(12469), + [anon_sym_BSLASHitem] = ACTIONS(12469), + [anon_sym_LBRACK] = ACTIONS(12467), + [anon_sym_LBRACE] = ACTIONS(12467), + [anon_sym_LPAREN] = ACTIONS(12467), + [anon_sym_COMMA] = ACTIONS(12467), + [anon_sym_EQ] = ACTIONS(12467), + [sym_word] = ACTIONS(12467), + [sym_param] = ACTIONS(12467), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12467), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12467), + [anon_sym_DOLLAR] = ACTIONS(12469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12467), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12467), + [anon_sym_BSLASHbegin] = ACTIONS(12469), + [anon_sym_BSLASHcaption] = ACTIONS(12469), + [anon_sym_BSLASHcite] = ACTIONS(12469), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCite] = ACTIONS(12469), + [anon_sym_BSLASHnocite] = ACTIONS(12469), + [anon_sym_BSLASHcitet] = ACTIONS(12469), + [anon_sym_BSLASHcitep] = ACTIONS(12469), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteauthor] = ACTIONS(12469), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12469), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitetitle] = ACTIONS(12469), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteyear] = ACTIONS(12469), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitedate] = ACTIONS(12469), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteurl] = ACTIONS(12469), + [anon_sym_BSLASHfullcite] = ACTIONS(12469), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12469), + [anon_sym_BSLASHcitealt] = ACTIONS(12469), + [anon_sym_BSLASHcitealp] = ACTIONS(12469), + [anon_sym_BSLASHcitetext] = ACTIONS(12469), + [anon_sym_BSLASHparencite] = ACTIONS(12469), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHParencite] = ACTIONS(12469), + [anon_sym_BSLASHfootcite] = ACTIONS(12469), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12469), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12469), + [anon_sym_BSLASHtextcite] = ACTIONS(12469), + [anon_sym_BSLASHTextcite] = ACTIONS(12469), + [anon_sym_BSLASHsmartcite] = ACTIONS(12469), + [anon_sym_BSLASHSmartcite] = ACTIONS(12469), + [anon_sym_BSLASHsupercite] = ACTIONS(12469), + [anon_sym_BSLASHautocite] = ACTIONS(12469), + [anon_sym_BSLASHAutocite] = ACTIONS(12469), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHvolcite] = ACTIONS(12469), + [anon_sym_BSLASHVolcite] = ACTIONS(12469), + [anon_sym_BSLASHpvolcite] = ACTIONS(12469), + [anon_sym_BSLASHPvolcite] = ACTIONS(12469), + [anon_sym_BSLASHfvolcite] = ACTIONS(12469), + [anon_sym_BSLASHftvolcite] = ACTIONS(12469), + [anon_sym_BSLASHsvolcite] = ACTIONS(12469), + [anon_sym_BSLASHSvolcite] = ACTIONS(12469), + [anon_sym_BSLASHtvolcite] = ACTIONS(12469), + [anon_sym_BSLASHTvolcite] = ACTIONS(12469), + [anon_sym_BSLASHavolcite] = ACTIONS(12469), + [anon_sym_BSLASHAvolcite] = ACTIONS(12469), + [anon_sym_BSLASHnotecite] = ACTIONS(12469), + [anon_sym_BSLASHpnotecite] = ACTIONS(12469), + [anon_sym_BSLASHPnotecite] = ACTIONS(12469), + [anon_sym_BSLASHfnotecite] = ACTIONS(12469), + [anon_sym_BSLASHusepackage] = ACTIONS(12469), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12469), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12469), + [anon_sym_BSLASHinclude] = ACTIONS(12469), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12469), + [anon_sym_BSLASHinput] = ACTIONS(12469), + [anon_sym_BSLASHsubfile] = ACTIONS(12469), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12469), + [anon_sym_BSLASHbibliography] = ACTIONS(12469), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12469), + [anon_sym_BSLASHincludesvg] = ACTIONS(12469), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12469), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12469), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12469), + [anon_sym_BSLASHimport] = ACTIONS(12469), + [anon_sym_BSLASHsubimport] = ACTIONS(12469), + [anon_sym_BSLASHinputfrom] = ACTIONS(12469), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12469), + [anon_sym_BSLASHincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHlabel] = ACTIONS(12469), + [anon_sym_BSLASHref] = ACTIONS(12469), + [anon_sym_BSLASHvref] = ACTIONS(12469), + [anon_sym_BSLASHVref] = ACTIONS(12469), + [anon_sym_BSLASHautoref] = ACTIONS(12469), + [anon_sym_BSLASHpageref] = ACTIONS(12469), + [anon_sym_BSLASHcref] = ACTIONS(12469), + [anon_sym_BSLASHCref] = ACTIONS(12469), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnameCref] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHlabelcref] = ACTIONS(12469), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12469), + [anon_sym_BSLASHeqref] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange] = ACTIONS(12469), + [anon_sym_BSLASHCrefrange] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewlabel] = ACTIONS(12469), + [anon_sym_BSLASHnewcommand] = ACTIONS(12469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12469), + [anon_sym_BSLASHgls] = ACTIONS(12469), + [anon_sym_BSLASHGls] = ACTIONS(12469), + [anon_sym_BSLASHGLS] = ACTIONS(12469), + [anon_sym_BSLASHglspl] = ACTIONS(12469), + [anon_sym_BSLASHGlspl] = ACTIONS(12469), + [anon_sym_BSLASHGLSpl] = ACTIONS(12469), + [anon_sym_BSLASHglsdisp] = ACTIONS(12469), + [anon_sym_BSLASHglslink] = ACTIONS(12469), + [anon_sym_BSLASHglstext] = ACTIONS(12469), + [anon_sym_BSLASHGlstext] = ACTIONS(12469), + [anon_sym_BSLASHGLStext] = ACTIONS(12469), + [anon_sym_BSLASHglsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12469), + [anon_sym_BSLASHglsplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSplural] = ACTIONS(12469), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHglsname] = ACTIONS(12469), + [anon_sym_BSLASHGlsname] = ACTIONS(12469), + [anon_sym_BSLASHGLSname] = ACTIONS(12469), + [anon_sym_BSLASHglssymbol] = ACTIONS(12469), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12469), + [anon_sym_BSLASHglsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12469), + [anon_sym_BSLASHglsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12469), + [anon_sym_BSLASHglsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12469), + [anon_sym_BSLASHglsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12469), + [anon_sym_BSLASHglsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12469), + [anon_sym_BSLASHnewacronym] = ACTIONS(12469), + [anon_sym_BSLASHacrshort] = ACTIONS(12469), + [anon_sym_BSLASHAcrshort] = ACTIONS(12469), + [anon_sym_BSLASHACRshort] = ACTIONS(12469), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12469), + [anon_sym_BSLASHacrlong] = ACTIONS(12469), + [anon_sym_BSLASHAcrlong] = ACTIONS(12469), + [anon_sym_BSLASHACRlong] = ACTIONS(12469), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12469), + [anon_sym_BSLASHacrfull] = ACTIONS(12469), + [anon_sym_BSLASHAcrfull] = ACTIONS(12469), + [anon_sym_BSLASHACRfull] = ACTIONS(12469), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12469), + [anon_sym_BSLASHacs] = ACTIONS(12469), + [anon_sym_BSLASHAcs] = ACTIONS(12469), + [anon_sym_BSLASHacsp] = ACTIONS(12469), + [anon_sym_BSLASHAcsp] = ACTIONS(12469), + [anon_sym_BSLASHacl] = ACTIONS(12469), + [anon_sym_BSLASHAcl] = ACTIONS(12469), + [anon_sym_BSLASHaclp] = ACTIONS(12469), + [anon_sym_BSLASHAclp] = ACTIONS(12469), + [anon_sym_BSLASHacf] = ACTIONS(12469), + [anon_sym_BSLASHAcf] = ACTIONS(12469), + [anon_sym_BSLASHacfp] = ACTIONS(12469), + [anon_sym_BSLASHAcfp] = ACTIONS(12469), + [anon_sym_BSLASHac] = ACTIONS(12469), + [anon_sym_BSLASHAc] = ACTIONS(12469), + [anon_sym_BSLASHacp] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12469), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12469), + [anon_sym_BSLASHcolor] = ACTIONS(12469), + [anon_sym_BSLASHcolorbox] = ACTIONS(12469), + [anon_sym_BSLASHtextcolor] = ACTIONS(12469), + [anon_sym_BSLASHpagecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12469), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12469), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12469), + }, + [673] = { + [sym_generic_command_name] = ACTIONS(12465), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12465), + [aux_sym_chapter_token1] = ACTIONS(12465), + [aux_sym_section_token1] = ACTIONS(12465), + [aux_sym_subsection_token1] = ACTIONS(12465), + [aux_sym_subsubsection_token1] = ACTIONS(12465), + [aux_sym_paragraph_token1] = ACTIONS(12465), + [aux_sym_subparagraph_token1] = ACTIONS(12465), + [anon_sym_BSLASHitem] = ACTIONS(12465), + [anon_sym_LBRACK] = ACTIONS(12463), + [anon_sym_LBRACE] = ACTIONS(12463), + [anon_sym_LPAREN] = ACTIONS(12463), + [anon_sym_COMMA] = ACTIONS(12463), + [anon_sym_EQ] = ACTIONS(12463), + [sym_word] = ACTIONS(12463), + [sym_param] = ACTIONS(12463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12463), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12463), + [anon_sym_DOLLAR] = ACTIONS(12465), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12463), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12463), + [anon_sym_BSLASHbegin] = ACTIONS(12465), + [anon_sym_BSLASHcaption] = ACTIONS(12465), + [anon_sym_BSLASHcite] = ACTIONS(12465), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCite] = ACTIONS(12465), + [anon_sym_BSLASHnocite] = ACTIONS(12465), + [anon_sym_BSLASHcitet] = ACTIONS(12465), + [anon_sym_BSLASHcitep] = ACTIONS(12465), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteauthor] = ACTIONS(12465), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12465), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitetitle] = ACTIONS(12465), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteyear] = ACTIONS(12465), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitedate] = ACTIONS(12465), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteurl] = ACTIONS(12465), + [anon_sym_BSLASHfullcite] = ACTIONS(12465), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12465), + [anon_sym_BSLASHcitealt] = ACTIONS(12465), + [anon_sym_BSLASHcitealp] = ACTIONS(12465), + [anon_sym_BSLASHcitetext] = ACTIONS(12465), + [anon_sym_BSLASHparencite] = ACTIONS(12465), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHParencite] = ACTIONS(12465), + [anon_sym_BSLASHfootcite] = ACTIONS(12465), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12465), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12465), + [anon_sym_BSLASHtextcite] = ACTIONS(12465), + [anon_sym_BSLASHTextcite] = ACTIONS(12465), + [anon_sym_BSLASHsmartcite] = ACTIONS(12465), + [anon_sym_BSLASHSmartcite] = ACTIONS(12465), + [anon_sym_BSLASHsupercite] = ACTIONS(12465), + [anon_sym_BSLASHautocite] = ACTIONS(12465), + [anon_sym_BSLASHAutocite] = ACTIONS(12465), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHvolcite] = ACTIONS(12465), + [anon_sym_BSLASHVolcite] = ACTIONS(12465), + [anon_sym_BSLASHpvolcite] = ACTIONS(12465), + [anon_sym_BSLASHPvolcite] = ACTIONS(12465), + [anon_sym_BSLASHfvolcite] = ACTIONS(12465), + [anon_sym_BSLASHftvolcite] = ACTIONS(12465), + [anon_sym_BSLASHsvolcite] = ACTIONS(12465), + [anon_sym_BSLASHSvolcite] = ACTIONS(12465), + [anon_sym_BSLASHtvolcite] = ACTIONS(12465), + [anon_sym_BSLASHTvolcite] = ACTIONS(12465), + [anon_sym_BSLASHavolcite] = ACTIONS(12465), + [anon_sym_BSLASHAvolcite] = ACTIONS(12465), + [anon_sym_BSLASHnotecite] = ACTIONS(12465), + [anon_sym_BSLASHpnotecite] = ACTIONS(12465), + [anon_sym_BSLASHPnotecite] = ACTIONS(12465), + [anon_sym_BSLASHfnotecite] = ACTIONS(12465), + [anon_sym_BSLASHusepackage] = ACTIONS(12465), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12465), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12465), + [anon_sym_BSLASHinclude] = ACTIONS(12465), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12465), + [anon_sym_BSLASHinput] = ACTIONS(12465), + [anon_sym_BSLASHsubfile] = ACTIONS(12465), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12465), + [anon_sym_BSLASHbibliography] = ACTIONS(12465), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12465), + [anon_sym_BSLASHincludesvg] = ACTIONS(12465), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12465), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12465), + [anon_sym_BSLASHimport] = ACTIONS(12465), + [anon_sym_BSLASHsubimport] = ACTIONS(12465), + [anon_sym_BSLASHinputfrom] = ACTIONS(12465), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12465), + [anon_sym_BSLASHincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHlabel] = ACTIONS(12465), + [anon_sym_BSLASHref] = ACTIONS(12465), + [anon_sym_BSLASHvref] = ACTIONS(12465), + [anon_sym_BSLASHVref] = ACTIONS(12465), + [anon_sym_BSLASHautoref] = ACTIONS(12465), + [anon_sym_BSLASHpageref] = ACTIONS(12465), + [anon_sym_BSLASHcref] = ACTIONS(12465), + [anon_sym_BSLASHCref] = ACTIONS(12465), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnameCref] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHlabelcref] = ACTIONS(12465), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12465), + [anon_sym_BSLASHeqref] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange] = ACTIONS(12465), + [anon_sym_BSLASHCrefrange] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewlabel] = ACTIONS(12465), + [anon_sym_BSLASHnewcommand] = ACTIONS(12465), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12465), + [anon_sym_BSLASHgls] = ACTIONS(12465), + [anon_sym_BSLASHGls] = ACTIONS(12465), + [anon_sym_BSLASHGLS] = ACTIONS(12465), + [anon_sym_BSLASHglspl] = ACTIONS(12465), + [anon_sym_BSLASHGlspl] = ACTIONS(12465), + [anon_sym_BSLASHGLSpl] = ACTIONS(12465), + [anon_sym_BSLASHglsdisp] = ACTIONS(12465), + [anon_sym_BSLASHglslink] = ACTIONS(12465), + [anon_sym_BSLASHglstext] = ACTIONS(12465), + [anon_sym_BSLASHGlstext] = ACTIONS(12465), + [anon_sym_BSLASHGLStext] = ACTIONS(12465), + [anon_sym_BSLASHglsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12465), + [anon_sym_BSLASHglsplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSplural] = ACTIONS(12465), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHglsname] = ACTIONS(12465), + [anon_sym_BSLASHGlsname] = ACTIONS(12465), + [anon_sym_BSLASHGLSname] = ACTIONS(12465), + [anon_sym_BSLASHglssymbol] = ACTIONS(12465), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12465), + [anon_sym_BSLASHglsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12465), + [anon_sym_BSLASHglsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12465), + [anon_sym_BSLASHglsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12465), + [anon_sym_BSLASHglsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12465), + [anon_sym_BSLASHglsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12465), + [anon_sym_BSLASHnewacronym] = ACTIONS(12465), + [anon_sym_BSLASHacrshort] = ACTIONS(12465), + [anon_sym_BSLASHAcrshort] = ACTIONS(12465), + [anon_sym_BSLASHACRshort] = ACTIONS(12465), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12465), + [anon_sym_BSLASHacrlong] = ACTIONS(12465), + [anon_sym_BSLASHAcrlong] = ACTIONS(12465), + [anon_sym_BSLASHACRlong] = ACTIONS(12465), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12465), + [anon_sym_BSLASHacrfull] = ACTIONS(12465), + [anon_sym_BSLASHAcrfull] = ACTIONS(12465), + [anon_sym_BSLASHACRfull] = ACTIONS(12465), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12465), + [anon_sym_BSLASHacs] = ACTIONS(12465), + [anon_sym_BSLASHAcs] = ACTIONS(12465), + [anon_sym_BSLASHacsp] = ACTIONS(12465), + [anon_sym_BSLASHAcsp] = ACTIONS(12465), + [anon_sym_BSLASHacl] = ACTIONS(12465), + [anon_sym_BSLASHAcl] = ACTIONS(12465), + [anon_sym_BSLASHaclp] = ACTIONS(12465), + [anon_sym_BSLASHAclp] = ACTIONS(12465), + [anon_sym_BSLASHacf] = ACTIONS(12465), + [anon_sym_BSLASHAcf] = ACTIONS(12465), + [anon_sym_BSLASHacfp] = ACTIONS(12465), + [anon_sym_BSLASHAcfp] = ACTIONS(12465), + [anon_sym_BSLASHac] = ACTIONS(12465), + [anon_sym_BSLASHAc] = ACTIONS(12465), + [anon_sym_BSLASHacp] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12465), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12465), + [anon_sym_BSLASHcolor] = ACTIONS(12465), + [anon_sym_BSLASHcolorbox] = ACTIONS(12465), + [anon_sym_BSLASHtextcolor] = ACTIONS(12465), + [anon_sym_BSLASHpagecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12465), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12465), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12465), + }, + [674] = { + [sym_generic_command_name] = ACTIONS(12461), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12461), + [aux_sym_chapter_token1] = ACTIONS(12461), + [aux_sym_section_token1] = ACTIONS(12461), + [aux_sym_subsection_token1] = ACTIONS(12461), + [aux_sym_subsubsection_token1] = ACTIONS(12461), + [aux_sym_paragraph_token1] = ACTIONS(12461), + [aux_sym_subparagraph_token1] = ACTIONS(12461), + [anon_sym_BSLASHitem] = ACTIONS(12461), + [anon_sym_LBRACK] = ACTIONS(12459), + [anon_sym_LBRACE] = ACTIONS(12459), + [anon_sym_LPAREN] = ACTIONS(12459), + [anon_sym_COMMA] = ACTIONS(12459), + [anon_sym_EQ] = ACTIONS(12459), + [sym_word] = ACTIONS(12459), + [sym_param] = ACTIONS(12459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12459), + [anon_sym_DOLLAR] = ACTIONS(12461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12459), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12459), + [anon_sym_BSLASHbegin] = ACTIONS(12461), + [anon_sym_BSLASHcaption] = ACTIONS(12461), + [anon_sym_BSLASHcite] = ACTIONS(12461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCite] = ACTIONS(12461), + [anon_sym_BSLASHnocite] = ACTIONS(12461), + [anon_sym_BSLASHcitet] = ACTIONS(12461), + [anon_sym_BSLASHcitep] = ACTIONS(12461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteauthor] = ACTIONS(12461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitetitle] = ACTIONS(12461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteyear] = ACTIONS(12461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitedate] = ACTIONS(12461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteurl] = ACTIONS(12461), + [anon_sym_BSLASHfullcite] = ACTIONS(12461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12461), + [anon_sym_BSLASHcitealt] = ACTIONS(12461), + [anon_sym_BSLASHcitealp] = ACTIONS(12461), + [anon_sym_BSLASHcitetext] = ACTIONS(12461), + [anon_sym_BSLASHparencite] = ACTIONS(12461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHParencite] = ACTIONS(12461), + [anon_sym_BSLASHfootcite] = ACTIONS(12461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12461), + [anon_sym_BSLASHtextcite] = ACTIONS(12461), + [anon_sym_BSLASHTextcite] = ACTIONS(12461), + [anon_sym_BSLASHsmartcite] = ACTIONS(12461), + [anon_sym_BSLASHSmartcite] = ACTIONS(12461), + [anon_sym_BSLASHsupercite] = ACTIONS(12461), + [anon_sym_BSLASHautocite] = ACTIONS(12461), + [anon_sym_BSLASHAutocite] = ACTIONS(12461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHvolcite] = ACTIONS(12461), + [anon_sym_BSLASHVolcite] = ACTIONS(12461), + [anon_sym_BSLASHpvolcite] = ACTIONS(12461), + [anon_sym_BSLASHPvolcite] = ACTIONS(12461), + [anon_sym_BSLASHfvolcite] = ACTIONS(12461), + [anon_sym_BSLASHftvolcite] = ACTIONS(12461), + [anon_sym_BSLASHsvolcite] = ACTIONS(12461), + [anon_sym_BSLASHSvolcite] = ACTIONS(12461), + [anon_sym_BSLASHtvolcite] = ACTIONS(12461), + [anon_sym_BSLASHTvolcite] = ACTIONS(12461), + [anon_sym_BSLASHavolcite] = ACTIONS(12461), + [anon_sym_BSLASHAvolcite] = ACTIONS(12461), + [anon_sym_BSLASHnotecite] = ACTIONS(12461), + [anon_sym_BSLASHpnotecite] = ACTIONS(12461), + [anon_sym_BSLASHPnotecite] = ACTIONS(12461), + [anon_sym_BSLASHfnotecite] = ACTIONS(12461), + [anon_sym_BSLASHusepackage] = ACTIONS(12461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12461), + [anon_sym_BSLASHinclude] = ACTIONS(12461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12461), + [anon_sym_BSLASHinput] = ACTIONS(12461), + [anon_sym_BSLASHsubfile] = ACTIONS(12461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12461), + [anon_sym_BSLASHbibliography] = ACTIONS(12461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12461), + [anon_sym_BSLASHincludesvg] = ACTIONS(12461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12461), + [anon_sym_BSLASHimport] = ACTIONS(12461), + [anon_sym_BSLASHsubimport] = ACTIONS(12461), + [anon_sym_BSLASHinputfrom] = ACTIONS(12461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12461), + [anon_sym_BSLASHincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHlabel] = ACTIONS(12461), + [anon_sym_BSLASHref] = ACTIONS(12461), + [anon_sym_BSLASHvref] = ACTIONS(12461), + [anon_sym_BSLASHVref] = ACTIONS(12461), + [anon_sym_BSLASHautoref] = ACTIONS(12461), + [anon_sym_BSLASHpageref] = ACTIONS(12461), + [anon_sym_BSLASHcref] = ACTIONS(12461), + [anon_sym_BSLASHCref] = ACTIONS(12461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnameCref] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHlabelcref] = ACTIONS(12461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12461), + [anon_sym_BSLASHeqref] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange] = ACTIONS(12461), + [anon_sym_BSLASHCrefrange] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewlabel] = ACTIONS(12461), + [anon_sym_BSLASHnewcommand] = ACTIONS(12461), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12461), + [anon_sym_BSLASHgls] = ACTIONS(12461), + [anon_sym_BSLASHGls] = ACTIONS(12461), + [anon_sym_BSLASHGLS] = ACTIONS(12461), + [anon_sym_BSLASHglspl] = ACTIONS(12461), + [anon_sym_BSLASHGlspl] = ACTIONS(12461), + [anon_sym_BSLASHGLSpl] = ACTIONS(12461), + [anon_sym_BSLASHglsdisp] = ACTIONS(12461), + [anon_sym_BSLASHglslink] = ACTIONS(12461), + [anon_sym_BSLASHglstext] = ACTIONS(12461), + [anon_sym_BSLASHGlstext] = ACTIONS(12461), + [anon_sym_BSLASHGLStext] = ACTIONS(12461), + [anon_sym_BSLASHglsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12461), + [anon_sym_BSLASHglsplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSplural] = ACTIONS(12461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHglsname] = ACTIONS(12461), + [anon_sym_BSLASHGlsname] = ACTIONS(12461), + [anon_sym_BSLASHGLSname] = ACTIONS(12461), + [anon_sym_BSLASHglssymbol] = ACTIONS(12461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12461), + [anon_sym_BSLASHglsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12461), + [anon_sym_BSLASHglsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12461), + [anon_sym_BSLASHglsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12461), + [anon_sym_BSLASHglsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12461), + [anon_sym_BSLASHglsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12461), + [anon_sym_BSLASHnewacronym] = ACTIONS(12461), + [anon_sym_BSLASHacrshort] = ACTIONS(12461), + [anon_sym_BSLASHAcrshort] = ACTIONS(12461), + [anon_sym_BSLASHACRshort] = ACTIONS(12461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12461), + [anon_sym_BSLASHacrlong] = ACTIONS(12461), + [anon_sym_BSLASHAcrlong] = ACTIONS(12461), + [anon_sym_BSLASHACRlong] = ACTIONS(12461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12461), + [anon_sym_BSLASHacrfull] = ACTIONS(12461), + [anon_sym_BSLASHAcrfull] = ACTIONS(12461), + [anon_sym_BSLASHACRfull] = ACTIONS(12461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12461), + [anon_sym_BSLASHacs] = ACTIONS(12461), + [anon_sym_BSLASHAcs] = ACTIONS(12461), + [anon_sym_BSLASHacsp] = ACTIONS(12461), + [anon_sym_BSLASHAcsp] = ACTIONS(12461), + [anon_sym_BSLASHacl] = ACTIONS(12461), + [anon_sym_BSLASHAcl] = ACTIONS(12461), + [anon_sym_BSLASHaclp] = ACTIONS(12461), + [anon_sym_BSLASHAclp] = ACTIONS(12461), + [anon_sym_BSLASHacf] = ACTIONS(12461), + [anon_sym_BSLASHAcf] = ACTIONS(12461), + [anon_sym_BSLASHacfp] = ACTIONS(12461), + [anon_sym_BSLASHAcfp] = ACTIONS(12461), + [anon_sym_BSLASHac] = ACTIONS(12461), + [anon_sym_BSLASHAc] = ACTIONS(12461), + [anon_sym_BSLASHacp] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12461), + [anon_sym_BSLASHcolor] = ACTIONS(12461), + [anon_sym_BSLASHcolorbox] = ACTIONS(12461), + [anon_sym_BSLASHtextcolor] = ACTIONS(12461), + [anon_sym_BSLASHpagecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12461), + }, + [675] = { + [sym_generic_command_name] = ACTIONS(12453), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12453), + [aux_sym_chapter_token1] = ACTIONS(12453), + [aux_sym_section_token1] = ACTIONS(12453), + [aux_sym_subsection_token1] = ACTIONS(12453), + [aux_sym_subsubsection_token1] = ACTIONS(12453), + [aux_sym_paragraph_token1] = ACTIONS(12453), + [aux_sym_subparagraph_token1] = ACTIONS(12453), + [anon_sym_BSLASHitem] = ACTIONS(12453), + [anon_sym_LBRACK] = ACTIONS(12451), + [anon_sym_LBRACE] = ACTIONS(12451), + [anon_sym_LPAREN] = ACTIONS(12451), + [anon_sym_COMMA] = ACTIONS(12451), + [anon_sym_EQ] = ACTIONS(12451), + [sym_word] = ACTIONS(12451), + [sym_param] = ACTIONS(12451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12451), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12451), + [anon_sym_DOLLAR] = ACTIONS(12453), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12451), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12451), + [anon_sym_BSLASHbegin] = ACTIONS(12453), + [anon_sym_BSLASHcaption] = ACTIONS(12453), + [anon_sym_BSLASHcite] = ACTIONS(12453), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCite] = ACTIONS(12453), + [anon_sym_BSLASHnocite] = ACTIONS(12453), + [anon_sym_BSLASHcitet] = ACTIONS(12453), + [anon_sym_BSLASHcitep] = ACTIONS(12453), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteauthor] = ACTIONS(12453), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12453), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitetitle] = ACTIONS(12453), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteyear] = ACTIONS(12453), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitedate] = ACTIONS(12453), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteurl] = ACTIONS(12453), + [anon_sym_BSLASHfullcite] = ACTIONS(12453), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12453), + [anon_sym_BSLASHcitealt] = ACTIONS(12453), + [anon_sym_BSLASHcitealp] = ACTIONS(12453), + [anon_sym_BSLASHcitetext] = ACTIONS(12453), + [anon_sym_BSLASHparencite] = ACTIONS(12453), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHParencite] = ACTIONS(12453), + [anon_sym_BSLASHfootcite] = ACTIONS(12453), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12453), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12453), + [anon_sym_BSLASHtextcite] = ACTIONS(12453), + [anon_sym_BSLASHTextcite] = ACTIONS(12453), + [anon_sym_BSLASHsmartcite] = ACTIONS(12453), + [anon_sym_BSLASHSmartcite] = ACTIONS(12453), + [anon_sym_BSLASHsupercite] = ACTIONS(12453), + [anon_sym_BSLASHautocite] = ACTIONS(12453), + [anon_sym_BSLASHAutocite] = ACTIONS(12453), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHvolcite] = ACTIONS(12453), + [anon_sym_BSLASHVolcite] = ACTIONS(12453), + [anon_sym_BSLASHpvolcite] = ACTIONS(12453), + [anon_sym_BSLASHPvolcite] = ACTIONS(12453), + [anon_sym_BSLASHfvolcite] = ACTIONS(12453), + [anon_sym_BSLASHftvolcite] = ACTIONS(12453), + [anon_sym_BSLASHsvolcite] = ACTIONS(12453), + [anon_sym_BSLASHSvolcite] = ACTIONS(12453), + [anon_sym_BSLASHtvolcite] = ACTIONS(12453), + [anon_sym_BSLASHTvolcite] = ACTIONS(12453), + [anon_sym_BSLASHavolcite] = ACTIONS(12453), + [anon_sym_BSLASHAvolcite] = ACTIONS(12453), + [anon_sym_BSLASHnotecite] = ACTIONS(12453), + [anon_sym_BSLASHpnotecite] = ACTIONS(12453), + [anon_sym_BSLASHPnotecite] = ACTIONS(12453), + [anon_sym_BSLASHfnotecite] = ACTIONS(12453), + [anon_sym_BSLASHusepackage] = ACTIONS(12453), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12453), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12453), + [anon_sym_BSLASHinclude] = ACTIONS(12453), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12453), + [anon_sym_BSLASHinput] = ACTIONS(12453), + [anon_sym_BSLASHsubfile] = ACTIONS(12453), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12453), + [anon_sym_BSLASHbibliography] = ACTIONS(12453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12453), + [anon_sym_BSLASHincludesvg] = ACTIONS(12453), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12453), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12453), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12453), + [anon_sym_BSLASHimport] = ACTIONS(12453), + [anon_sym_BSLASHsubimport] = ACTIONS(12453), + [anon_sym_BSLASHinputfrom] = ACTIONS(12453), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12453), + [anon_sym_BSLASHincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHlabel] = ACTIONS(12453), + [anon_sym_BSLASHref] = ACTIONS(12453), + [anon_sym_BSLASHvref] = ACTIONS(12453), + [anon_sym_BSLASHVref] = ACTIONS(12453), + [anon_sym_BSLASHautoref] = ACTIONS(12453), + [anon_sym_BSLASHpageref] = ACTIONS(12453), + [anon_sym_BSLASHcref] = ACTIONS(12453), + [anon_sym_BSLASHCref] = ACTIONS(12453), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnameCref] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHlabelcref] = ACTIONS(12453), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12453), + [anon_sym_BSLASHeqref] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange] = ACTIONS(12453), + [anon_sym_BSLASHCrefrange] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewlabel] = ACTIONS(12453), + [anon_sym_BSLASHnewcommand] = ACTIONS(12453), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12453), + [anon_sym_BSLASHgls] = ACTIONS(12453), + [anon_sym_BSLASHGls] = ACTIONS(12453), + [anon_sym_BSLASHGLS] = ACTIONS(12453), + [anon_sym_BSLASHglspl] = ACTIONS(12453), + [anon_sym_BSLASHGlspl] = ACTIONS(12453), + [anon_sym_BSLASHGLSpl] = ACTIONS(12453), + [anon_sym_BSLASHglsdisp] = ACTIONS(12453), + [anon_sym_BSLASHglslink] = ACTIONS(12453), + [anon_sym_BSLASHglstext] = ACTIONS(12453), + [anon_sym_BSLASHGlstext] = ACTIONS(12453), + [anon_sym_BSLASHGLStext] = ACTIONS(12453), + [anon_sym_BSLASHglsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12453), + [anon_sym_BSLASHglsplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSplural] = ACTIONS(12453), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHglsname] = ACTIONS(12453), + [anon_sym_BSLASHGlsname] = ACTIONS(12453), + [anon_sym_BSLASHGLSname] = ACTIONS(12453), + [anon_sym_BSLASHglssymbol] = ACTIONS(12453), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12453), + [anon_sym_BSLASHglsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12453), + [anon_sym_BSLASHglsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12453), + [anon_sym_BSLASHglsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12453), + [anon_sym_BSLASHglsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12453), + [anon_sym_BSLASHglsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12453), + [anon_sym_BSLASHnewacronym] = ACTIONS(12453), + [anon_sym_BSLASHacrshort] = ACTIONS(12453), + [anon_sym_BSLASHAcrshort] = ACTIONS(12453), + [anon_sym_BSLASHACRshort] = ACTIONS(12453), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12453), + [anon_sym_BSLASHacrlong] = ACTIONS(12453), + [anon_sym_BSLASHAcrlong] = ACTIONS(12453), + [anon_sym_BSLASHACRlong] = ACTIONS(12453), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12453), + [anon_sym_BSLASHacrfull] = ACTIONS(12453), + [anon_sym_BSLASHAcrfull] = ACTIONS(12453), + [anon_sym_BSLASHACRfull] = ACTIONS(12453), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12453), + [anon_sym_BSLASHacs] = ACTIONS(12453), + [anon_sym_BSLASHAcs] = ACTIONS(12453), + [anon_sym_BSLASHacsp] = ACTIONS(12453), + [anon_sym_BSLASHAcsp] = ACTIONS(12453), + [anon_sym_BSLASHacl] = ACTIONS(12453), + [anon_sym_BSLASHAcl] = ACTIONS(12453), + [anon_sym_BSLASHaclp] = ACTIONS(12453), + [anon_sym_BSLASHAclp] = ACTIONS(12453), + [anon_sym_BSLASHacf] = ACTIONS(12453), + [anon_sym_BSLASHAcf] = ACTIONS(12453), + [anon_sym_BSLASHacfp] = ACTIONS(12453), + [anon_sym_BSLASHAcfp] = ACTIONS(12453), + [anon_sym_BSLASHac] = ACTIONS(12453), + [anon_sym_BSLASHAc] = ACTIONS(12453), + [anon_sym_BSLASHacp] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12453), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12453), + [anon_sym_BSLASHcolor] = ACTIONS(12453), + [anon_sym_BSLASHcolorbox] = ACTIONS(12453), + [anon_sym_BSLASHtextcolor] = ACTIONS(12453), + [anon_sym_BSLASHpagecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12453), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12453), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12453), + }, + [676] = { + [sym_generic_command_name] = ACTIONS(12449), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12449), + [aux_sym_chapter_token1] = ACTIONS(12449), + [aux_sym_section_token1] = ACTIONS(12449), + [aux_sym_subsection_token1] = ACTIONS(12449), + [aux_sym_subsubsection_token1] = ACTIONS(12449), + [aux_sym_paragraph_token1] = ACTIONS(12449), + [aux_sym_subparagraph_token1] = ACTIONS(12449), + [anon_sym_BSLASHitem] = ACTIONS(12449), + [anon_sym_LBRACK] = ACTIONS(12447), + [anon_sym_LBRACE] = ACTIONS(12447), + [anon_sym_LPAREN] = ACTIONS(12447), + [anon_sym_COMMA] = ACTIONS(12447), + [anon_sym_EQ] = ACTIONS(12447), + [sym_word] = ACTIONS(12447), + [sym_param] = ACTIONS(12447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12447), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12447), + [anon_sym_DOLLAR] = ACTIONS(12449), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12447), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12447), + [anon_sym_BSLASHbegin] = ACTIONS(12449), + [anon_sym_BSLASHcaption] = ACTIONS(12449), + [anon_sym_BSLASHcite] = ACTIONS(12449), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCite] = ACTIONS(12449), + [anon_sym_BSLASHnocite] = ACTIONS(12449), + [anon_sym_BSLASHcitet] = ACTIONS(12449), + [anon_sym_BSLASHcitep] = ACTIONS(12449), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteauthor] = ACTIONS(12449), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12449), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitetitle] = ACTIONS(12449), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteyear] = ACTIONS(12449), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitedate] = ACTIONS(12449), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteurl] = ACTIONS(12449), + [anon_sym_BSLASHfullcite] = ACTIONS(12449), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12449), + [anon_sym_BSLASHcitealt] = ACTIONS(12449), + [anon_sym_BSLASHcitealp] = ACTIONS(12449), + [anon_sym_BSLASHcitetext] = ACTIONS(12449), + [anon_sym_BSLASHparencite] = ACTIONS(12449), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHParencite] = ACTIONS(12449), + [anon_sym_BSLASHfootcite] = ACTIONS(12449), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12449), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12449), + [anon_sym_BSLASHtextcite] = ACTIONS(12449), + [anon_sym_BSLASHTextcite] = ACTIONS(12449), + [anon_sym_BSLASHsmartcite] = ACTIONS(12449), + [anon_sym_BSLASHSmartcite] = ACTIONS(12449), + [anon_sym_BSLASHsupercite] = ACTIONS(12449), + [anon_sym_BSLASHautocite] = ACTIONS(12449), + [anon_sym_BSLASHAutocite] = ACTIONS(12449), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHvolcite] = ACTIONS(12449), + [anon_sym_BSLASHVolcite] = ACTIONS(12449), + [anon_sym_BSLASHpvolcite] = ACTIONS(12449), + [anon_sym_BSLASHPvolcite] = ACTIONS(12449), + [anon_sym_BSLASHfvolcite] = ACTIONS(12449), + [anon_sym_BSLASHftvolcite] = ACTIONS(12449), + [anon_sym_BSLASHsvolcite] = ACTIONS(12449), + [anon_sym_BSLASHSvolcite] = ACTIONS(12449), + [anon_sym_BSLASHtvolcite] = ACTIONS(12449), + [anon_sym_BSLASHTvolcite] = ACTIONS(12449), + [anon_sym_BSLASHavolcite] = ACTIONS(12449), + [anon_sym_BSLASHAvolcite] = ACTIONS(12449), + [anon_sym_BSLASHnotecite] = ACTIONS(12449), + [anon_sym_BSLASHpnotecite] = ACTIONS(12449), + [anon_sym_BSLASHPnotecite] = ACTIONS(12449), + [anon_sym_BSLASHfnotecite] = ACTIONS(12449), + [anon_sym_BSLASHusepackage] = ACTIONS(12449), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12449), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12449), + [anon_sym_BSLASHinclude] = ACTIONS(12449), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12449), + [anon_sym_BSLASHinput] = ACTIONS(12449), + [anon_sym_BSLASHsubfile] = ACTIONS(12449), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12449), + [anon_sym_BSLASHbibliography] = ACTIONS(12449), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12449), + [anon_sym_BSLASHincludesvg] = ACTIONS(12449), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12449), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12449), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12449), + [anon_sym_BSLASHimport] = ACTIONS(12449), + [anon_sym_BSLASHsubimport] = ACTIONS(12449), + [anon_sym_BSLASHinputfrom] = ACTIONS(12449), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12449), + [anon_sym_BSLASHincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHlabel] = ACTIONS(12449), + [anon_sym_BSLASHref] = ACTIONS(12449), + [anon_sym_BSLASHvref] = ACTIONS(12449), + [anon_sym_BSLASHVref] = ACTIONS(12449), + [anon_sym_BSLASHautoref] = ACTIONS(12449), + [anon_sym_BSLASHpageref] = ACTIONS(12449), + [anon_sym_BSLASHcref] = ACTIONS(12449), + [anon_sym_BSLASHCref] = ACTIONS(12449), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnameCref] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHlabelcref] = ACTIONS(12449), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12449), + [anon_sym_BSLASHeqref] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange] = ACTIONS(12449), + [anon_sym_BSLASHCrefrange] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewlabel] = ACTIONS(12449), + [anon_sym_BSLASHnewcommand] = ACTIONS(12449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12449), + [anon_sym_BSLASHgls] = ACTIONS(12449), + [anon_sym_BSLASHGls] = ACTIONS(12449), + [anon_sym_BSLASHGLS] = ACTIONS(12449), + [anon_sym_BSLASHglspl] = ACTIONS(12449), + [anon_sym_BSLASHGlspl] = ACTIONS(12449), + [anon_sym_BSLASHGLSpl] = ACTIONS(12449), + [anon_sym_BSLASHglsdisp] = ACTIONS(12449), + [anon_sym_BSLASHglslink] = ACTIONS(12449), + [anon_sym_BSLASHglstext] = ACTIONS(12449), + [anon_sym_BSLASHGlstext] = ACTIONS(12449), + [anon_sym_BSLASHGLStext] = ACTIONS(12449), + [anon_sym_BSLASHglsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12449), + [anon_sym_BSLASHglsplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSplural] = ACTIONS(12449), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHglsname] = ACTIONS(12449), + [anon_sym_BSLASHGlsname] = ACTIONS(12449), + [anon_sym_BSLASHGLSname] = ACTIONS(12449), + [anon_sym_BSLASHglssymbol] = ACTIONS(12449), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12449), + [anon_sym_BSLASHglsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12449), + [anon_sym_BSLASHglsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12449), + [anon_sym_BSLASHglsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12449), + [anon_sym_BSLASHglsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12449), + [anon_sym_BSLASHglsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12449), + [anon_sym_BSLASHnewacronym] = ACTIONS(12449), + [anon_sym_BSLASHacrshort] = ACTIONS(12449), + [anon_sym_BSLASHAcrshort] = ACTIONS(12449), + [anon_sym_BSLASHACRshort] = ACTIONS(12449), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12449), + [anon_sym_BSLASHacrlong] = ACTIONS(12449), + [anon_sym_BSLASHAcrlong] = ACTIONS(12449), + [anon_sym_BSLASHACRlong] = ACTIONS(12449), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12449), + [anon_sym_BSLASHacrfull] = ACTIONS(12449), + [anon_sym_BSLASHAcrfull] = ACTIONS(12449), + [anon_sym_BSLASHACRfull] = ACTIONS(12449), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12449), + [anon_sym_BSLASHacs] = ACTIONS(12449), + [anon_sym_BSLASHAcs] = ACTIONS(12449), + [anon_sym_BSLASHacsp] = ACTIONS(12449), + [anon_sym_BSLASHAcsp] = ACTIONS(12449), + [anon_sym_BSLASHacl] = ACTIONS(12449), + [anon_sym_BSLASHAcl] = ACTIONS(12449), + [anon_sym_BSLASHaclp] = ACTIONS(12449), + [anon_sym_BSLASHAclp] = ACTIONS(12449), + [anon_sym_BSLASHacf] = ACTIONS(12449), + [anon_sym_BSLASHAcf] = ACTIONS(12449), + [anon_sym_BSLASHacfp] = ACTIONS(12449), + [anon_sym_BSLASHAcfp] = ACTIONS(12449), + [anon_sym_BSLASHac] = ACTIONS(12449), + [anon_sym_BSLASHAc] = ACTIONS(12449), + [anon_sym_BSLASHacp] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12449), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12449), + [anon_sym_BSLASHcolor] = ACTIONS(12449), + [anon_sym_BSLASHcolorbox] = ACTIONS(12449), + [anon_sym_BSLASHtextcolor] = ACTIONS(12449), + [anon_sym_BSLASHpagecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12449), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12449), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12449), + }, + [677] = { + [sym_generic_command_name] = ACTIONS(12445), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12445), + [aux_sym_chapter_token1] = ACTIONS(12445), + [aux_sym_section_token1] = ACTIONS(12445), + [aux_sym_subsection_token1] = ACTIONS(12445), + [aux_sym_subsubsection_token1] = ACTIONS(12445), + [aux_sym_paragraph_token1] = ACTIONS(12445), + [aux_sym_subparagraph_token1] = ACTIONS(12445), + [anon_sym_BSLASHitem] = ACTIONS(12445), + [anon_sym_LBRACK] = ACTIONS(12443), + [anon_sym_LBRACE] = ACTIONS(12443), + [anon_sym_LPAREN] = ACTIONS(12443), + [anon_sym_COMMA] = ACTIONS(12443), + [anon_sym_EQ] = ACTIONS(12443), + [sym_word] = ACTIONS(12443), + [sym_param] = ACTIONS(12443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12443), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12443), + [anon_sym_DOLLAR] = ACTIONS(12445), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12443), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12443), + [anon_sym_BSLASHbegin] = ACTIONS(12445), + [anon_sym_BSLASHcaption] = ACTIONS(12445), + [anon_sym_BSLASHcite] = ACTIONS(12445), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCite] = ACTIONS(12445), + [anon_sym_BSLASHnocite] = ACTIONS(12445), + [anon_sym_BSLASHcitet] = ACTIONS(12445), + [anon_sym_BSLASHcitep] = ACTIONS(12445), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteauthor] = ACTIONS(12445), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12445), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitetitle] = ACTIONS(12445), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteyear] = ACTIONS(12445), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitedate] = ACTIONS(12445), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteurl] = ACTIONS(12445), + [anon_sym_BSLASHfullcite] = ACTIONS(12445), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12445), + [anon_sym_BSLASHcitealt] = ACTIONS(12445), + [anon_sym_BSLASHcitealp] = ACTIONS(12445), + [anon_sym_BSLASHcitetext] = ACTIONS(12445), + [anon_sym_BSLASHparencite] = ACTIONS(12445), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHParencite] = ACTIONS(12445), + [anon_sym_BSLASHfootcite] = ACTIONS(12445), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12445), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12445), + [anon_sym_BSLASHtextcite] = ACTIONS(12445), + [anon_sym_BSLASHTextcite] = ACTIONS(12445), + [anon_sym_BSLASHsmartcite] = ACTIONS(12445), + [anon_sym_BSLASHSmartcite] = ACTIONS(12445), + [anon_sym_BSLASHsupercite] = ACTIONS(12445), + [anon_sym_BSLASHautocite] = ACTIONS(12445), + [anon_sym_BSLASHAutocite] = ACTIONS(12445), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHvolcite] = ACTIONS(12445), + [anon_sym_BSLASHVolcite] = ACTIONS(12445), + [anon_sym_BSLASHpvolcite] = ACTIONS(12445), + [anon_sym_BSLASHPvolcite] = ACTIONS(12445), + [anon_sym_BSLASHfvolcite] = ACTIONS(12445), + [anon_sym_BSLASHftvolcite] = ACTIONS(12445), + [anon_sym_BSLASHsvolcite] = ACTIONS(12445), + [anon_sym_BSLASHSvolcite] = ACTIONS(12445), + [anon_sym_BSLASHtvolcite] = ACTIONS(12445), + [anon_sym_BSLASHTvolcite] = ACTIONS(12445), + [anon_sym_BSLASHavolcite] = ACTIONS(12445), + [anon_sym_BSLASHAvolcite] = ACTIONS(12445), + [anon_sym_BSLASHnotecite] = ACTIONS(12445), + [anon_sym_BSLASHpnotecite] = ACTIONS(12445), + [anon_sym_BSLASHPnotecite] = ACTIONS(12445), + [anon_sym_BSLASHfnotecite] = ACTIONS(12445), + [anon_sym_BSLASHusepackage] = ACTIONS(12445), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12445), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12445), + [anon_sym_BSLASHinclude] = ACTIONS(12445), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12445), + [anon_sym_BSLASHinput] = ACTIONS(12445), + [anon_sym_BSLASHsubfile] = ACTIONS(12445), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12445), + [anon_sym_BSLASHbibliography] = ACTIONS(12445), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12445), + [anon_sym_BSLASHincludesvg] = ACTIONS(12445), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12445), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12445), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12445), + [anon_sym_BSLASHimport] = ACTIONS(12445), + [anon_sym_BSLASHsubimport] = ACTIONS(12445), + [anon_sym_BSLASHinputfrom] = ACTIONS(12445), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12445), + [anon_sym_BSLASHincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHlabel] = ACTIONS(12445), + [anon_sym_BSLASHref] = ACTIONS(12445), + [anon_sym_BSLASHvref] = ACTIONS(12445), + [anon_sym_BSLASHVref] = ACTIONS(12445), + [anon_sym_BSLASHautoref] = ACTIONS(12445), + [anon_sym_BSLASHpageref] = ACTIONS(12445), + [anon_sym_BSLASHcref] = ACTIONS(12445), + [anon_sym_BSLASHCref] = ACTIONS(12445), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnameCref] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHlabelcref] = ACTIONS(12445), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12445), + [anon_sym_BSLASHeqref] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange] = ACTIONS(12445), + [anon_sym_BSLASHCrefrange] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewlabel] = ACTIONS(12445), + [anon_sym_BSLASHnewcommand] = ACTIONS(12445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12445), + [anon_sym_BSLASHgls] = ACTIONS(12445), + [anon_sym_BSLASHGls] = ACTIONS(12445), + [anon_sym_BSLASHGLS] = ACTIONS(12445), + [anon_sym_BSLASHglspl] = ACTIONS(12445), + [anon_sym_BSLASHGlspl] = ACTIONS(12445), + [anon_sym_BSLASHGLSpl] = ACTIONS(12445), + [anon_sym_BSLASHglsdisp] = ACTIONS(12445), + [anon_sym_BSLASHglslink] = ACTIONS(12445), + [anon_sym_BSLASHglstext] = ACTIONS(12445), + [anon_sym_BSLASHGlstext] = ACTIONS(12445), + [anon_sym_BSLASHGLStext] = ACTIONS(12445), + [anon_sym_BSLASHglsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12445), + [anon_sym_BSLASHglsplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSplural] = ACTIONS(12445), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHglsname] = ACTIONS(12445), + [anon_sym_BSLASHGlsname] = ACTIONS(12445), + [anon_sym_BSLASHGLSname] = ACTIONS(12445), + [anon_sym_BSLASHglssymbol] = ACTIONS(12445), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12445), + [anon_sym_BSLASHglsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12445), + [anon_sym_BSLASHglsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12445), + [anon_sym_BSLASHglsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12445), + [anon_sym_BSLASHglsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12445), + [anon_sym_BSLASHglsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12445), + [anon_sym_BSLASHnewacronym] = ACTIONS(12445), + [anon_sym_BSLASHacrshort] = ACTIONS(12445), + [anon_sym_BSLASHAcrshort] = ACTIONS(12445), + [anon_sym_BSLASHACRshort] = ACTIONS(12445), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12445), + [anon_sym_BSLASHacrlong] = ACTIONS(12445), + [anon_sym_BSLASHAcrlong] = ACTIONS(12445), + [anon_sym_BSLASHACRlong] = ACTIONS(12445), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12445), + [anon_sym_BSLASHacrfull] = ACTIONS(12445), + [anon_sym_BSLASHAcrfull] = ACTIONS(12445), + [anon_sym_BSLASHACRfull] = ACTIONS(12445), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12445), + [anon_sym_BSLASHacs] = ACTIONS(12445), + [anon_sym_BSLASHAcs] = ACTIONS(12445), + [anon_sym_BSLASHacsp] = ACTIONS(12445), + [anon_sym_BSLASHAcsp] = ACTIONS(12445), + [anon_sym_BSLASHacl] = ACTIONS(12445), + [anon_sym_BSLASHAcl] = ACTIONS(12445), + [anon_sym_BSLASHaclp] = ACTIONS(12445), + [anon_sym_BSLASHAclp] = ACTIONS(12445), + [anon_sym_BSLASHacf] = ACTIONS(12445), + [anon_sym_BSLASHAcf] = ACTIONS(12445), + [anon_sym_BSLASHacfp] = ACTIONS(12445), + [anon_sym_BSLASHAcfp] = ACTIONS(12445), + [anon_sym_BSLASHac] = ACTIONS(12445), + [anon_sym_BSLASHAc] = ACTIONS(12445), + [anon_sym_BSLASHacp] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12445), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12445), + [anon_sym_BSLASHcolor] = ACTIONS(12445), + [anon_sym_BSLASHcolorbox] = ACTIONS(12445), + [anon_sym_BSLASHtextcolor] = ACTIONS(12445), + [anon_sym_BSLASHpagecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12445), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12445), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12445), + }, + [678] = { + [sym_generic_command_name] = ACTIONS(12441), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12441), + [aux_sym_chapter_token1] = ACTIONS(12441), + [aux_sym_section_token1] = ACTIONS(12441), + [aux_sym_subsection_token1] = ACTIONS(12441), + [aux_sym_subsubsection_token1] = ACTIONS(12441), + [aux_sym_paragraph_token1] = ACTIONS(12441), + [aux_sym_subparagraph_token1] = ACTIONS(12441), + [anon_sym_BSLASHitem] = ACTIONS(12441), + [anon_sym_LBRACK] = ACTIONS(12439), + [anon_sym_LBRACE] = ACTIONS(12439), + [anon_sym_LPAREN] = ACTIONS(12439), + [anon_sym_COMMA] = ACTIONS(12439), + [anon_sym_EQ] = ACTIONS(12439), + [sym_word] = ACTIONS(12439), + [sym_param] = ACTIONS(12439), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12439), + [anon_sym_DOLLAR] = ACTIONS(12441), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12439), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12439), + [anon_sym_BSLASHbegin] = ACTIONS(12441), + [anon_sym_BSLASHcaption] = ACTIONS(12441), + [anon_sym_BSLASHcite] = ACTIONS(12441), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCite] = ACTIONS(12441), + [anon_sym_BSLASHnocite] = ACTIONS(12441), + [anon_sym_BSLASHcitet] = ACTIONS(12441), + [anon_sym_BSLASHcitep] = ACTIONS(12441), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteauthor] = ACTIONS(12441), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12441), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitetitle] = ACTIONS(12441), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteyear] = ACTIONS(12441), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitedate] = ACTIONS(12441), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteurl] = ACTIONS(12441), + [anon_sym_BSLASHfullcite] = ACTIONS(12441), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12441), + [anon_sym_BSLASHcitealt] = ACTIONS(12441), + [anon_sym_BSLASHcitealp] = ACTIONS(12441), + [anon_sym_BSLASHcitetext] = ACTIONS(12441), + [anon_sym_BSLASHparencite] = ACTIONS(12441), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHParencite] = ACTIONS(12441), + [anon_sym_BSLASHfootcite] = ACTIONS(12441), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12441), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12441), + [anon_sym_BSLASHtextcite] = ACTIONS(12441), + [anon_sym_BSLASHTextcite] = ACTIONS(12441), + [anon_sym_BSLASHsmartcite] = ACTIONS(12441), + [anon_sym_BSLASHSmartcite] = ACTIONS(12441), + [anon_sym_BSLASHsupercite] = ACTIONS(12441), + [anon_sym_BSLASHautocite] = ACTIONS(12441), + [anon_sym_BSLASHAutocite] = ACTIONS(12441), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHvolcite] = ACTIONS(12441), + [anon_sym_BSLASHVolcite] = ACTIONS(12441), + [anon_sym_BSLASHpvolcite] = ACTIONS(12441), + [anon_sym_BSLASHPvolcite] = ACTIONS(12441), + [anon_sym_BSLASHfvolcite] = ACTIONS(12441), + [anon_sym_BSLASHftvolcite] = ACTIONS(12441), + [anon_sym_BSLASHsvolcite] = ACTIONS(12441), + [anon_sym_BSLASHSvolcite] = ACTIONS(12441), + [anon_sym_BSLASHtvolcite] = ACTIONS(12441), + [anon_sym_BSLASHTvolcite] = ACTIONS(12441), + [anon_sym_BSLASHavolcite] = ACTIONS(12441), + [anon_sym_BSLASHAvolcite] = ACTIONS(12441), + [anon_sym_BSLASHnotecite] = ACTIONS(12441), + [anon_sym_BSLASHpnotecite] = ACTIONS(12441), + [anon_sym_BSLASHPnotecite] = ACTIONS(12441), + [anon_sym_BSLASHfnotecite] = ACTIONS(12441), + [anon_sym_BSLASHusepackage] = ACTIONS(12441), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12441), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12441), + [anon_sym_BSLASHinclude] = ACTIONS(12441), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12441), + [anon_sym_BSLASHinput] = ACTIONS(12441), + [anon_sym_BSLASHsubfile] = ACTIONS(12441), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12441), + [anon_sym_BSLASHbibliography] = ACTIONS(12441), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12441), + [anon_sym_BSLASHincludesvg] = ACTIONS(12441), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12441), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12441), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12441), + [anon_sym_BSLASHimport] = ACTIONS(12441), + [anon_sym_BSLASHsubimport] = ACTIONS(12441), + [anon_sym_BSLASHinputfrom] = ACTIONS(12441), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12441), + [anon_sym_BSLASHincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHlabel] = ACTIONS(12441), + [anon_sym_BSLASHref] = ACTIONS(12441), + [anon_sym_BSLASHvref] = ACTIONS(12441), + [anon_sym_BSLASHVref] = ACTIONS(12441), + [anon_sym_BSLASHautoref] = ACTIONS(12441), + [anon_sym_BSLASHpageref] = ACTIONS(12441), + [anon_sym_BSLASHcref] = ACTIONS(12441), + [anon_sym_BSLASHCref] = ACTIONS(12441), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnameCref] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHlabelcref] = ACTIONS(12441), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12441), + [anon_sym_BSLASHeqref] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange] = ACTIONS(12441), + [anon_sym_BSLASHCrefrange] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewlabel] = ACTIONS(12441), + [anon_sym_BSLASHnewcommand] = ACTIONS(12441), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12441), + [anon_sym_BSLASHgls] = ACTIONS(12441), + [anon_sym_BSLASHGls] = ACTIONS(12441), + [anon_sym_BSLASHGLS] = ACTIONS(12441), + [anon_sym_BSLASHglspl] = ACTIONS(12441), + [anon_sym_BSLASHGlspl] = ACTIONS(12441), + [anon_sym_BSLASHGLSpl] = ACTIONS(12441), + [anon_sym_BSLASHglsdisp] = ACTIONS(12441), + [anon_sym_BSLASHglslink] = ACTIONS(12441), + [anon_sym_BSLASHglstext] = ACTIONS(12441), + [anon_sym_BSLASHGlstext] = ACTIONS(12441), + [anon_sym_BSLASHGLStext] = ACTIONS(12441), + [anon_sym_BSLASHglsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12441), + [anon_sym_BSLASHglsplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSplural] = ACTIONS(12441), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHglsname] = ACTIONS(12441), + [anon_sym_BSLASHGlsname] = ACTIONS(12441), + [anon_sym_BSLASHGLSname] = ACTIONS(12441), + [anon_sym_BSLASHglssymbol] = ACTIONS(12441), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12441), + [anon_sym_BSLASHglsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12441), + [anon_sym_BSLASHglsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12441), + [anon_sym_BSLASHglsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12441), + [anon_sym_BSLASHglsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12441), + [anon_sym_BSLASHglsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12441), + [anon_sym_BSLASHnewacronym] = ACTIONS(12441), + [anon_sym_BSLASHacrshort] = ACTIONS(12441), + [anon_sym_BSLASHAcrshort] = ACTIONS(12441), + [anon_sym_BSLASHACRshort] = ACTIONS(12441), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12441), + [anon_sym_BSLASHacrlong] = ACTIONS(12441), + [anon_sym_BSLASHAcrlong] = ACTIONS(12441), + [anon_sym_BSLASHACRlong] = ACTIONS(12441), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12441), + [anon_sym_BSLASHacrfull] = ACTIONS(12441), + [anon_sym_BSLASHAcrfull] = ACTIONS(12441), + [anon_sym_BSLASHACRfull] = ACTIONS(12441), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12441), + [anon_sym_BSLASHacs] = ACTIONS(12441), + [anon_sym_BSLASHAcs] = ACTIONS(12441), + [anon_sym_BSLASHacsp] = ACTIONS(12441), + [anon_sym_BSLASHAcsp] = ACTIONS(12441), + [anon_sym_BSLASHacl] = ACTIONS(12441), + [anon_sym_BSLASHAcl] = ACTIONS(12441), + [anon_sym_BSLASHaclp] = ACTIONS(12441), + [anon_sym_BSLASHAclp] = ACTIONS(12441), + [anon_sym_BSLASHacf] = ACTIONS(12441), + [anon_sym_BSLASHAcf] = ACTIONS(12441), + [anon_sym_BSLASHacfp] = ACTIONS(12441), + [anon_sym_BSLASHAcfp] = ACTIONS(12441), + [anon_sym_BSLASHac] = ACTIONS(12441), + [anon_sym_BSLASHAc] = ACTIONS(12441), + [anon_sym_BSLASHacp] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12441), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12441), + [anon_sym_BSLASHcolor] = ACTIONS(12441), + [anon_sym_BSLASHcolorbox] = ACTIONS(12441), + [anon_sym_BSLASHtextcolor] = ACTIONS(12441), + [anon_sym_BSLASHpagecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12441), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12441), + }, + [679] = { + [sym_generic_command_name] = ACTIONS(12227), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12227), + [aux_sym_chapter_token1] = ACTIONS(12227), + [aux_sym_section_token1] = ACTIONS(12227), + [aux_sym_subsection_token1] = ACTIONS(12227), + [aux_sym_subsubsection_token1] = ACTIONS(12227), + [aux_sym_paragraph_token1] = ACTIONS(12227), + [aux_sym_subparagraph_token1] = ACTIONS(12227), + [anon_sym_BSLASHitem] = ACTIONS(12227), + [anon_sym_LBRACK] = ACTIONS(12225), + [anon_sym_LBRACE] = ACTIONS(12225), + [anon_sym_LPAREN] = ACTIONS(12225), + [anon_sym_COMMA] = ACTIONS(12225), + [anon_sym_EQ] = ACTIONS(12225), + [sym_word] = ACTIONS(12225), + [sym_param] = ACTIONS(12225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12225), + [anon_sym_DOLLAR] = ACTIONS(12227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12225), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12225), + [anon_sym_BSLASHbegin] = ACTIONS(12227), + [anon_sym_BSLASHcaption] = ACTIONS(12227), + [anon_sym_BSLASHcite] = ACTIONS(12227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCite] = ACTIONS(12227), + [anon_sym_BSLASHnocite] = ACTIONS(12227), + [anon_sym_BSLASHcitet] = ACTIONS(12227), + [anon_sym_BSLASHcitep] = ACTIONS(12227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteauthor] = ACTIONS(12227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitetitle] = ACTIONS(12227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteyear] = ACTIONS(12227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitedate] = ACTIONS(12227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteurl] = ACTIONS(12227), + [anon_sym_BSLASHfullcite] = ACTIONS(12227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12227), + [anon_sym_BSLASHcitealt] = ACTIONS(12227), + [anon_sym_BSLASHcitealp] = ACTIONS(12227), + [anon_sym_BSLASHcitetext] = ACTIONS(12227), + [anon_sym_BSLASHparencite] = ACTIONS(12227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHParencite] = ACTIONS(12227), + [anon_sym_BSLASHfootcite] = ACTIONS(12227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12227), + [anon_sym_BSLASHtextcite] = ACTIONS(12227), + [anon_sym_BSLASHTextcite] = ACTIONS(12227), + [anon_sym_BSLASHsmartcite] = ACTIONS(12227), + [anon_sym_BSLASHSmartcite] = ACTIONS(12227), + [anon_sym_BSLASHsupercite] = ACTIONS(12227), + [anon_sym_BSLASHautocite] = ACTIONS(12227), + [anon_sym_BSLASHAutocite] = ACTIONS(12227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHvolcite] = ACTIONS(12227), + [anon_sym_BSLASHVolcite] = ACTIONS(12227), + [anon_sym_BSLASHpvolcite] = ACTIONS(12227), + [anon_sym_BSLASHPvolcite] = ACTIONS(12227), + [anon_sym_BSLASHfvolcite] = ACTIONS(12227), + [anon_sym_BSLASHftvolcite] = ACTIONS(12227), + [anon_sym_BSLASHsvolcite] = ACTIONS(12227), + [anon_sym_BSLASHSvolcite] = ACTIONS(12227), + [anon_sym_BSLASHtvolcite] = ACTIONS(12227), + [anon_sym_BSLASHTvolcite] = ACTIONS(12227), + [anon_sym_BSLASHavolcite] = ACTIONS(12227), + [anon_sym_BSLASHAvolcite] = ACTIONS(12227), + [anon_sym_BSLASHnotecite] = ACTIONS(12227), + [anon_sym_BSLASHpnotecite] = ACTIONS(12227), + [anon_sym_BSLASHPnotecite] = ACTIONS(12227), + [anon_sym_BSLASHfnotecite] = ACTIONS(12227), + [anon_sym_BSLASHusepackage] = ACTIONS(12227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12227), + [anon_sym_BSLASHinclude] = ACTIONS(12227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12227), + [anon_sym_BSLASHinput] = ACTIONS(12227), + [anon_sym_BSLASHsubfile] = ACTIONS(12227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12227), + [anon_sym_BSLASHbibliography] = ACTIONS(12227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12227), + [anon_sym_BSLASHincludesvg] = ACTIONS(12227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12227), + [anon_sym_BSLASHimport] = ACTIONS(12227), + [anon_sym_BSLASHsubimport] = ACTIONS(12227), + [anon_sym_BSLASHinputfrom] = ACTIONS(12227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12227), + [anon_sym_BSLASHincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHlabel] = ACTIONS(12227), + [anon_sym_BSLASHref] = ACTIONS(12227), + [anon_sym_BSLASHvref] = ACTIONS(12227), + [anon_sym_BSLASHVref] = ACTIONS(12227), + [anon_sym_BSLASHautoref] = ACTIONS(12227), + [anon_sym_BSLASHpageref] = ACTIONS(12227), + [anon_sym_BSLASHcref] = ACTIONS(12227), + [anon_sym_BSLASHCref] = ACTIONS(12227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnameCref] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHlabelcref] = ACTIONS(12227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12227), + [anon_sym_BSLASHeqref] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange] = ACTIONS(12227), + [anon_sym_BSLASHCrefrange] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewlabel] = ACTIONS(12227), + [anon_sym_BSLASHnewcommand] = ACTIONS(12227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12227), + [anon_sym_BSLASHgls] = ACTIONS(12227), + [anon_sym_BSLASHGls] = ACTIONS(12227), + [anon_sym_BSLASHGLS] = ACTIONS(12227), + [anon_sym_BSLASHglspl] = ACTIONS(12227), + [anon_sym_BSLASHGlspl] = ACTIONS(12227), + [anon_sym_BSLASHGLSpl] = ACTIONS(12227), + [anon_sym_BSLASHglsdisp] = ACTIONS(12227), + [anon_sym_BSLASHglslink] = ACTIONS(12227), + [anon_sym_BSLASHglstext] = ACTIONS(12227), + [anon_sym_BSLASHGlstext] = ACTIONS(12227), + [anon_sym_BSLASHGLStext] = ACTIONS(12227), + [anon_sym_BSLASHglsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12227), + [anon_sym_BSLASHglsplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSplural] = ACTIONS(12227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHglsname] = ACTIONS(12227), + [anon_sym_BSLASHGlsname] = ACTIONS(12227), + [anon_sym_BSLASHGLSname] = ACTIONS(12227), + [anon_sym_BSLASHglssymbol] = ACTIONS(12227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12227), + [anon_sym_BSLASHglsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12227), + [anon_sym_BSLASHglsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12227), + [anon_sym_BSLASHglsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12227), + [anon_sym_BSLASHglsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12227), + [anon_sym_BSLASHglsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12227), + [anon_sym_BSLASHnewacronym] = ACTIONS(12227), + [anon_sym_BSLASHacrshort] = ACTIONS(12227), + [anon_sym_BSLASHAcrshort] = ACTIONS(12227), + [anon_sym_BSLASHACRshort] = ACTIONS(12227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12227), + [anon_sym_BSLASHacrlong] = ACTIONS(12227), + [anon_sym_BSLASHAcrlong] = ACTIONS(12227), + [anon_sym_BSLASHACRlong] = ACTIONS(12227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12227), + [anon_sym_BSLASHacrfull] = ACTIONS(12227), + [anon_sym_BSLASHAcrfull] = ACTIONS(12227), + [anon_sym_BSLASHACRfull] = ACTIONS(12227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12227), + [anon_sym_BSLASHacs] = ACTIONS(12227), + [anon_sym_BSLASHAcs] = ACTIONS(12227), + [anon_sym_BSLASHacsp] = ACTIONS(12227), + [anon_sym_BSLASHAcsp] = ACTIONS(12227), + [anon_sym_BSLASHacl] = ACTIONS(12227), + [anon_sym_BSLASHAcl] = ACTIONS(12227), + [anon_sym_BSLASHaclp] = ACTIONS(12227), + [anon_sym_BSLASHAclp] = ACTIONS(12227), + [anon_sym_BSLASHacf] = ACTIONS(12227), + [anon_sym_BSLASHAcf] = ACTIONS(12227), + [anon_sym_BSLASHacfp] = ACTIONS(12227), + [anon_sym_BSLASHAcfp] = ACTIONS(12227), + [anon_sym_BSLASHac] = ACTIONS(12227), + [anon_sym_BSLASHAc] = ACTIONS(12227), + [anon_sym_BSLASHacp] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12227), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12227), + [anon_sym_BSLASHcolor] = ACTIONS(12227), + [anon_sym_BSLASHcolorbox] = ACTIONS(12227), + [anon_sym_BSLASHtextcolor] = ACTIONS(12227), + [anon_sym_BSLASHpagecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12227), + }, + [680] = { + [sym_generic_command_name] = ACTIONS(12433), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12433), + [aux_sym_chapter_token1] = ACTIONS(12433), + [aux_sym_section_token1] = ACTIONS(12433), + [aux_sym_subsection_token1] = ACTIONS(12433), + [aux_sym_subsubsection_token1] = ACTIONS(12433), + [aux_sym_paragraph_token1] = ACTIONS(12433), + [aux_sym_subparagraph_token1] = ACTIONS(12433), + [anon_sym_BSLASHitem] = ACTIONS(12433), + [anon_sym_LBRACK] = ACTIONS(12431), + [anon_sym_LBRACE] = ACTIONS(12431), + [anon_sym_LPAREN] = ACTIONS(12431), + [anon_sym_COMMA] = ACTIONS(12431), + [anon_sym_EQ] = ACTIONS(12431), + [sym_word] = ACTIONS(12431), + [sym_param] = ACTIONS(12431), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12431), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12431), + [anon_sym_DOLLAR] = ACTIONS(12433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12431), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12431), + [anon_sym_BSLASHbegin] = ACTIONS(12433), + [anon_sym_BSLASHcaption] = ACTIONS(12433), + [anon_sym_BSLASHcite] = ACTIONS(12433), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCite] = ACTIONS(12433), + [anon_sym_BSLASHnocite] = ACTIONS(12433), + [anon_sym_BSLASHcitet] = ACTIONS(12433), + [anon_sym_BSLASHcitep] = ACTIONS(12433), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteauthor] = ACTIONS(12433), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12433), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitetitle] = ACTIONS(12433), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteyear] = ACTIONS(12433), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitedate] = ACTIONS(12433), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteurl] = ACTIONS(12433), + [anon_sym_BSLASHfullcite] = ACTIONS(12433), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12433), + [anon_sym_BSLASHcitealt] = ACTIONS(12433), + [anon_sym_BSLASHcitealp] = ACTIONS(12433), + [anon_sym_BSLASHcitetext] = ACTIONS(12433), + [anon_sym_BSLASHparencite] = ACTIONS(12433), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHParencite] = ACTIONS(12433), + [anon_sym_BSLASHfootcite] = ACTIONS(12433), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12433), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12433), + [anon_sym_BSLASHtextcite] = ACTIONS(12433), + [anon_sym_BSLASHTextcite] = ACTIONS(12433), + [anon_sym_BSLASHsmartcite] = ACTIONS(12433), + [anon_sym_BSLASHSmartcite] = ACTIONS(12433), + [anon_sym_BSLASHsupercite] = ACTIONS(12433), + [anon_sym_BSLASHautocite] = ACTIONS(12433), + [anon_sym_BSLASHAutocite] = ACTIONS(12433), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHvolcite] = ACTIONS(12433), + [anon_sym_BSLASHVolcite] = ACTIONS(12433), + [anon_sym_BSLASHpvolcite] = ACTIONS(12433), + [anon_sym_BSLASHPvolcite] = ACTIONS(12433), + [anon_sym_BSLASHfvolcite] = ACTIONS(12433), + [anon_sym_BSLASHftvolcite] = ACTIONS(12433), + [anon_sym_BSLASHsvolcite] = ACTIONS(12433), + [anon_sym_BSLASHSvolcite] = ACTIONS(12433), + [anon_sym_BSLASHtvolcite] = ACTIONS(12433), + [anon_sym_BSLASHTvolcite] = ACTIONS(12433), + [anon_sym_BSLASHavolcite] = ACTIONS(12433), + [anon_sym_BSLASHAvolcite] = ACTIONS(12433), + [anon_sym_BSLASHnotecite] = ACTIONS(12433), + [anon_sym_BSLASHpnotecite] = ACTIONS(12433), + [anon_sym_BSLASHPnotecite] = ACTIONS(12433), + [anon_sym_BSLASHfnotecite] = ACTIONS(12433), + [anon_sym_BSLASHusepackage] = ACTIONS(12433), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12433), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12433), + [anon_sym_BSLASHinclude] = ACTIONS(12433), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12433), + [anon_sym_BSLASHinput] = ACTIONS(12433), + [anon_sym_BSLASHsubfile] = ACTIONS(12433), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12433), + [anon_sym_BSLASHbibliography] = ACTIONS(12433), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12433), + [anon_sym_BSLASHincludesvg] = ACTIONS(12433), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12433), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12433), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12433), + [anon_sym_BSLASHimport] = ACTIONS(12433), + [anon_sym_BSLASHsubimport] = ACTIONS(12433), + [anon_sym_BSLASHinputfrom] = ACTIONS(12433), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12433), + [anon_sym_BSLASHincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHlabel] = ACTIONS(12433), + [anon_sym_BSLASHref] = ACTIONS(12433), + [anon_sym_BSLASHvref] = ACTIONS(12433), + [anon_sym_BSLASHVref] = ACTIONS(12433), + [anon_sym_BSLASHautoref] = ACTIONS(12433), + [anon_sym_BSLASHpageref] = ACTIONS(12433), + [anon_sym_BSLASHcref] = ACTIONS(12433), + [anon_sym_BSLASHCref] = ACTIONS(12433), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnameCref] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHlabelcref] = ACTIONS(12433), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12433), + [anon_sym_BSLASHeqref] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange] = ACTIONS(12433), + [anon_sym_BSLASHCrefrange] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewlabel] = ACTIONS(12433), + [anon_sym_BSLASHnewcommand] = ACTIONS(12433), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12433), + [anon_sym_BSLASHgls] = ACTIONS(12433), + [anon_sym_BSLASHGls] = ACTIONS(12433), + [anon_sym_BSLASHGLS] = ACTIONS(12433), + [anon_sym_BSLASHglspl] = ACTIONS(12433), + [anon_sym_BSLASHGlspl] = ACTIONS(12433), + [anon_sym_BSLASHGLSpl] = ACTIONS(12433), + [anon_sym_BSLASHglsdisp] = ACTIONS(12433), + [anon_sym_BSLASHglslink] = ACTIONS(12433), + [anon_sym_BSLASHglstext] = ACTIONS(12433), + [anon_sym_BSLASHGlstext] = ACTIONS(12433), + [anon_sym_BSLASHGLStext] = ACTIONS(12433), + [anon_sym_BSLASHglsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12433), + [anon_sym_BSLASHglsplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSplural] = ACTIONS(12433), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHglsname] = ACTIONS(12433), + [anon_sym_BSLASHGlsname] = ACTIONS(12433), + [anon_sym_BSLASHGLSname] = ACTIONS(12433), + [anon_sym_BSLASHglssymbol] = ACTIONS(12433), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12433), + [anon_sym_BSLASHglsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12433), + [anon_sym_BSLASHglsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12433), + [anon_sym_BSLASHglsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12433), + [anon_sym_BSLASHglsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12433), + [anon_sym_BSLASHglsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12433), + [anon_sym_BSLASHnewacronym] = ACTIONS(12433), + [anon_sym_BSLASHacrshort] = ACTIONS(12433), + [anon_sym_BSLASHAcrshort] = ACTIONS(12433), + [anon_sym_BSLASHACRshort] = ACTIONS(12433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12433), + [anon_sym_BSLASHacrlong] = ACTIONS(12433), + [anon_sym_BSLASHAcrlong] = ACTIONS(12433), + [anon_sym_BSLASHACRlong] = ACTIONS(12433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12433), + [anon_sym_BSLASHacrfull] = ACTIONS(12433), + [anon_sym_BSLASHAcrfull] = ACTIONS(12433), + [anon_sym_BSLASHACRfull] = ACTIONS(12433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12433), + [anon_sym_BSLASHacs] = ACTIONS(12433), + [anon_sym_BSLASHAcs] = ACTIONS(12433), + [anon_sym_BSLASHacsp] = ACTIONS(12433), + [anon_sym_BSLASHAcsp] = ACTIONS(12433), + [anon_sym_BSLASHacl] = ACTIONS(12433), + [anon_sym_BSLASHAcl] = ACTIONS(12433), + [anon_sym_BSLASHaclp] = ACTIONS(12433), + [anon_sym_BSLASHAclp] = ACTIONS(12433), + [anon_sym_BSLASHacf] = ACTIONS(12433), + [anon_sym_BSLASHAcf] = ACTIONS(12433), + [anon_sym_BSLASHacfp] = ACTIONS(12433), + [anon_sym_BSLASHAcfp] = ACTIONS(12433), + [anon_sym_BSLASHac] = ACTIONS(12433), + [anon_sym_BSLASHAc] = ACTIONS(12433), + [anon_sym_BSLASHacp] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12433), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12433), + [anon_sym_BSLASHcolor] = ACTIONS(12433), + [anon_sym_BSLASHcolorbox] = ACTIONS(12433), + [anon_sym_BSLASHtextcolor] = ACTIONS(12433), + [anon_sym_BSLASHpagecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12433), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12433), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12433), + }, + [681] = { + [sym_generic_command_name] = ACTIONS(12429), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12429), + [aux_sym_chapter_token1] = ACTIONS(12429), + [aux_sym_section_token1] = ACTIONS(12429), + [aux_sym_subsection_token1] = ACTIONS(12429), + [aux_sym_subsubsection_token1] = ACTIONS(12429), + [aux_sym_paragraph_token1] = ACTIONS(12429), + [aux_sym_subparagraph_token1] = ACTIONS(12429), + [anon_sym_BSLASHitem] = ACTIONS(12429), + [anon_sym_LBRACK] = ACTIONS(12427), + [anon_sym_LBRACE] = ACTIONS(12427), + [anon_sym_LPAREN] = ACTIONS(12427), + [anon_sym_COMMA] = ACTIONS(12427), + [anon_sym_EQ] = ACTIONS(12427), + [sym_word] = ACTIONS(12427), + [sym_param] = ACTIONS(12427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12427), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12427), + [anon_sym_DOLLAR] = ACTIONS(12429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12427), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12427), + [anon_sym_BSLASHbegin] = ACTIONS(12429), + [anon_sym_BSLASHcaption] = ACTIONS(12429), + [anon_sym_BSLASHcite] = ACTIONS(12429), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCite] = ACTIONS(12429), + [anon_sym_BSLASHnocite] = ACTIONS(12429), + [anon_sym_BSLASHcitet] = ACTIONS(12429), + [anon_sym_BSLASHcitep] = ACTIONS(12429), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteauthor] = ACTIONS(12429), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12429), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitetitle] = ACTIONS(12429), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteyear] = ACTIONS(12429), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitedate] = ACTIONS(12429), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteurl] = ACTIONS(12429), + [anon_sym_BSLASHfullcite] = ACTIONS(12429), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12429), + [anon_sym_BSLASHcitealt] = ACTIONS(12429), + [anon_sym_BSLASHcitealp] = ACTIONS(12429), + [anon_sym_BSLASHcitetext] = ACTIONS(12429), + [anon_sym_BSLASHparencite] = ACTIONS(12429), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHParencite] = ACTIONS(12429), + [anon_sym_BSLASHfootcite] = ACTIONS(12429), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12429), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12429), + [anon_sym_BSLASHtextcite] = ACTIONS(12429), + [anon_sym_BSLASHTextcite] = ACTIONS(12429), + [anon_sym_BSLASHsmartcite] = ACTIONS(12429), + [anon_sym_BSLASHSmartcite] = ACTIONS(12429), + [anon_sym_BSLASHsupercite] = ACTIONS(12429), + [anon_sym_BSLASHautocite] = ACTIONS(12429), + [anon_sym_BSLASHAutocite] = ACTIONS(12429), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHvolcite] = ACTIONS(12429), + [anon_sym_BSLASHVolcite] = ACTIONS(12429), + [anon_sym_BSLASHpvolcite] = ACTIONS(12429), + [anon_sym_BSLASHPvolcite] = ACTIONS(12429), + [anon_sym_BSLASHfvolcite] = ACTIONS(12429), + [anon_sym_BSLASHftvolcite] = ACTIONS(12429), + [anon_sym_BSLASHsvolcite] = ACTIONS(12429), + [anon_sym_BSLASHSvolcite] = ACTIONS(12429), + [anon_sym_BSLASHtvolcite] = ACTIONS(12429), + [anon_sym_BSLASHTvolcite] = ACTIONS(12429), + [anon_sym_BSLASHavolcite] = ACTIONS(12429), + [anon_sym_BSLASHAvolcite] = ACTIONS(12429), + [anon_sym_BSLASHnotecite] = ACTIONS(12429), + [anon_sym_BSLASHpnotecite] = ACTIONS(12429), + [anon_sym_BSLASHPnotecite] = ACTIONS(12429), + [anon_sym_BSLASHfnotecite] = ACTIONS(12429), + [anon_sym_BSLASHusepackage] = ACTIONS(12429), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12429), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12429), + [anon_sym_BSLASHinclude] = ACTIONS(12429), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12429), + [anon_sym_BSLASHinput] = ACTIONS(12429), + [anon_sym_BSLASHsubfile] = ACTIONS(12429), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12429), + [anon_sym_BSLASHbibliography] = ACTIONS(12429), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12429), + [anon_sym_BSLASHincludesvg] = ACTIONS(12429), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12429), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12429), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12429), + [anon_sym_BSLASHimport] = ACTIONS(12429), + [anon_sym_BSLASHsubimport] = ACTIONS(12429), + [anon_sym_BSLASHinputfrom] = ACTIONS(12429), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12429), + [anon_sym_BSLASHincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHlabel] = ACTIONS(12429), + [anon_sym_BSLASHref] = ACTIONS(12429), + [anon_sym_BSLASHvref] = ACTIONS(12429), + [anon_sym_BSLASHVref] = ACTIONS(12429), + [anon_sym_BSLASHautoref] = ACTIONS(12429), + [anon_sym_BSLASHpageref] = ACTIONS(12429), + [anon_sym_BSLASHcref] = ACTIONS(12429), + [anon_sym_BSLASHCref] = ACTIONS(12429), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnameCref] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHlabelcref] = ACTIONS(12429), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12429), + [anon_sym_BSLASHeqref] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange] = ACTIONS(12429), + [anon_sym_BSLASHCrefrange] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewlabel] = ACTIONS(12429), + [anon_sym_BSLASHnewcommand] = ACTIONS(12429), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12429), + [anon_sym_BSLASHgls] = ACTIONS(12429), + [anon_sym_BSLASHGls] = ACTIONS(12429), + [anon_sym_BSLASHGLS] = ACTIONS(12429), + [anon_sym_BSLASHglspl] = ACTIONS(12429), + [anon_sym_BSLASHGlspl] = ACTIONS(12429), + [anon_sym_BSLASHGLSpl] = ACTIONS(12429), + [anon_sym_BSLASHglsdisp] = ACTIONS(12429), + [anon_sym_BSLASHglslink] = ACTIONS(12429), + [anon_sym_BSLASHglstext] = ACTIONS(12429), + [anon_sym_BSLASHGlstext] = ACTIONS(12429), + [anon_sym_BSLASHGLStext] = ACTIONS(12429), + [anon_sym_BSLASHglsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12429), + [anon_sym_BSLASHglsplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSplural] = ACTIONS(12429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHglsname] = ACTIONS(12429), + [anon_sym_BSLASHGlsname] = ACTIONS(12429), + [anon_sym_BSLASHGLSname] = ACTIONS(12429), + [anon_sym_BSLASHglssymbol] = ACTIONS(12429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12429), + [anon_sym_BSLASHglsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12429), + [anon_sym_BSLASHglsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12429), + [anon_sym_BSLASHglsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12429), + [anon_sym_BSLASHglsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12429), + [anon_sym_BSLASHglsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12429), + [anon_sym_BSLASHnewacronym] = ACTIONS(12429), + [anon_sym_BSLASHacrshort] = ACTIONS(12429), + [anon_sym_BSLASHAcrshort] = ACTIONS(12429), + [anon_sym_BSLASHACRshort] = ACTIONS(12429), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12429), + [anon_sym_BSLASHacrlong] = ACTIONS(12429), + [anon_sym_BSLASHAcrlong] = ACTIONS(12429), + [anon_sym_BSLASHACRlong] = ACTIONS(12429), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12429), + [anon_sym_BSLASHacrfull] = ACTIONS(12429), + [anon_sym_BSLASHAcrfull] = ACTIONS(12429), + [anon_sym_BSLASHACRfull] = ACTIONS(12429), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12429), + [anon_sym_BSLASHacs] = ACTIONS(12429), + [anon_sym_BSLASHAcs] = ACTIONS(12429), + [anon_sym_BSLASHacsp] = ACTIONS(12429), + [anon_sym_BSLASHAcsp] = ACTIONS(12429), + [anon_sym_BSLASHacl] = ACTIONS(12429), + [anon_sym_BSLASHAcl] = ACTIONS(12429), + [anon_sym_BSLASHaclp] = ACTIONS(12429), + [anon_sym_BSLASHAclp] = ACTIONS(12429), + [anon_sym_BSLASHacf] = ACTIONS(12429), + [anon_sym_BSLASHAcf] = ACTIONS(12429), + [anon_sym_BSLASHacfp] = ACTIONS(12429), + [anon_sym_BSLASHAcfp] = ACTIONS(12429), + [anon_sym_BSLASHac] = ACTIONS(12429), + [anon_sym_BSLASHAc] = ACTIONS(12429), + [anon_sym_BSLASHacp] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12429), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12429), + [anon_sym_BSLASHcolor] = ACTIONS(12429), + [anon_sym_BSLASHcolorbox] = ACTIONS(12429), + [anon_sym_BSLASHtextcolor] = ACTIONS(12429), + [anon_sym_BSLASHpagecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12429), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12429), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12429), + }, + [682] = { + [sym_generic_command_name] = ACTIONS(12425), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12425), + [aux_sym_chapter_token1] = ACTIONS(12425), + [aux_sym_section_token1] = ACTIONS(12425), + [aux_sym_subsection_token1] = ACTIONS(12425), + [aux_sym_subsubsection_token1] = ACTIONS(12425), + [aux_sym_paragraph_token1] = ACTIONS(12425), + [aux_sym_subparagraph_token1] = ACTIONS(12425), + [anon_sym_BSLASHitem] = ACTIONS(12425), + [anon_sym_LBRACK] = ACTIONS(12423), + [anon_sym_LBRACE] = ACTIONS(12423), + [anon_sym_LPAREN] = ACTIONS(12423), + [anon_sym_COMMA] = ACTIONS(12423), + [anon_sym_EQ] = ACTIONS(12423), + [sym_word] = ACTIONS(12423), + [sym_param] = ACTIONS(12423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12423), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12423), + [anon_sym_DOLLAR] = ACTIONS(12425), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12423), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12423), + [anon_sym_BSLASHbegin] = ACTIONS(12425), + [anon_sym_BSLASHcaption] = ACTIONS(12425), + [anon_sym_BSLASHcite] = ACTIONS(12425), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCite] = ACTIONS(12425), + [anon_sym_BSLASHnocite] = ACTIONS(12425), + [anon_sym_BSLASHcitet] = ACTIONS(12425), + [anon_sym_BSLASHcitep] = ACTIONS(12425), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteauthor] = ACTIONS(12425), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12425), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitetitle] = ACTIONS(12425), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteyear] = ACTIONS(12425), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitedate] = ACTIONS(12425), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteurl] = ACTIONS(12425), + [anon_sym_BSLASHfullcite] = ACTIONS(12425), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12425), + [anon_sym_BSLASHcitealt] = ACTIONS(12425), + [anon_sym_BSLASHcitealp] = ACTIONS(12425), + [anon_sym_BSLASHcitetext] = ACTIONS(12425), + [anon_sym_BSLASHparencite] = ACTIONS(12425), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHParencite] = ACTIONS(12425), + [anon_sym_BSLASHfootcite] = ACTIONS(12425), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12425), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12425), + [anon_sym_BSLASHtextcite] = ACTIONS(12425), + [anon_sym_BSLASHTextcite] = ACTIONS(12425), + [anon_sym_BSLASHsmartcite] = ACTIONS(12425), + [anon_sym_BSLASHSmartcite] = ACTIONS(12425), + [anon_sym_BSLASHsupercite] = ACTIONS(12425), + [anon_sym_BSLASHautocite] = ACTIONS(12425), + [anon_sym_BSLASHAutocite] = ACTIONS(12425), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHvolcite] = ACTIONS(12425), + [anon_sym_BSLASHVolcite] = ACTIONS(12425), + [anon_sym_BSLASHpvolcite] = ACTIONS(12425), + [anon_sym_BSLASHPvolcite] = ACTIONS(12425), + [anon_sym_BSLASHfvolcite] = ACTIONS(12425), + [anon_sym_BSLASHftvolcite] = ACTIONS(12425), + [anon_sym_BSLASHsvolcite] = ACTIONS(12425), + [anon_sym_BSLASHSvolcite] = ACTIONS(12425), + [anon_sym_BSLASHtvolcite] = ACTIONS(12425), + [anon_sym_BSLASHTvolcite] = ACTIONS(12425), + [anon_sym_BSLASHavolcite] = ACTIONS(12425), + [anon_sym_BSLASHAvolcite] = ACTIONS(12425), + [anon_sym_BSLASHnotecite] = ACTIONS(12425), + [anon_sym_BSLASHpnotecite] = ACTIONS(12425), + [anon_sym_BSLASHPnotecite] = ACTIONS(12425), + [anon_sym_BSLASHfnotecite] = ACTIONS(12425), + [anon_sym_BSLASHusepackage] = ACTIONS(12425), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12425), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12425), + [anon_sym_BSLASHinclude] = ACTIONS(12425), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12425), + [anon_sym_BSLASHinput] = ACTIONS(12425), + [anon_sym_BSLASHsubfile] = ACTIONS(12425), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12425), + [anon_sym_BSLASHbibliography] = ACTIONS(12425), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12425), + [anon_sym_BSLASHincludesvg] = ACTIONS(12425), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12425), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12425), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12425), + [anon_sym_BSLASHimport] = ACTIONS(12425), + [anon_sym_BSLASHsubimport] = ACTIONS(12425), + [anon_sym_BSLASHinputfrom] = ACTIONS(12425), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12425), + [anon_sym_BSLASHincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHlabel] = ACTIONS(12425), + [anon_sym_BSLASHref] = ACTIONS(12425), + [anon_sym_BSLASHvref] = ACTIONS(12425), + [anon_sym_BSLASHVref] = ACTIONS(12425), + [anon_sym_BSLASHautoref] = ACTIONS(12425), + [anon_sym_BSLASHpageref] = ACTIONS(12425), + [anon_sym_BSLASHcref] = ACTIONS(12425), + [anon_sym_BSLASHCref] = ACTIONS(12425), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnameCref] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHlabelcref] = ACTIONS(12425), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12425), + [anon_sym_BSLASHeqref] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange] = ACTIONS(12425), + [anon_sym_BSLASHCrefrange] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewlabel] = ACTIONS(12425), + [anon_sym_BSLASHnewcommand] = ACTIONS(12425), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12425), + [anon_sym_BSLASHgls] = ACTIONS(12425), + [anon_sym_BSLASHGls] = ACTIONS(12425), + [anon_sym_BSLASHGLS] = ACTIONS(12425), + [anon_sym_BSLASHglspl] = ACTIONS(12425), + [anon_sym_BSLASHGlspl] = ACTIONS(12425), + [anon_sym_BSLASHGLSpl] = ACTIONS(12425), + [anon_sym_BSLASHglsdisp] = ACTIONS(12425), + [anon_sym_BSLASHglslink] = ACTIONS(12425), + [anon_sym_BSLASHglstext] = ACTIONS(12425), + [anon_sym_BSLASHGlstext] = ACTIONS(12425), + [anon_sym_BSLASHGLStext] = ACTIONS(12425), + [anon_sym_BSLASHglsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12425), + [anon_sym_BSLASHglsplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSplural] = ACTIONS(12425), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHglsname] = ACTIONS(12425), + [anon_sym_BSLASHGlsname] = ACTIONS(12425), + [anon_sym_BSLASHGLSname] = ACTIONS(12425), + [anon_sym_BSLASHglssymbol] = ACTIONS(12425), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12425), + [anon_sym_BSLASHglsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12425), + [anon_sym_BSLASHglsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12425), + [anon_sym_BSLASHglsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12425), + [anon_sym_BSLASHglsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12425), + [anon_sym_BSLASHglsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12425), + [anon_sym_BSLASHnewacronym] = ACTIONS(12425), + [anon_sym_BSLASHacrshort] = ACTIONS(12425), + [anon_sym_BSLASHAcrshort] = ACTIONS(12425), + [anon_sym_BSLASHACRshort] = ACTIONS(12425), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12425), + [anon_sym_BSLASHacrlong] = ACTIONS(12425), + [anon_sym_BSLASHAcrlong] = ACTIONS(12425), + [anon_sym_BSLASHACRlong] = ACTIONS(12425), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12425), + [anon_sym_BSLASHacrfull] = ACTIONS(12425), + [anon_sym_BSLASHAcrfull] = ACTIONS(12425), + [anon_sym_BSLASHACRfull] = ACTIONS(12425), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12425), + [anon_sym_BSLASHacs] = ACTIONS(12425), + [anon_sym_BSLASHAcs] = ACTIONS(12425), + [anon_sym_BSLASHacsp] = ACTIONS(12425), + [anon_sym_BSLASHAcsp] = ACTIONS(12425), + [anon_sym_BSLASHacl] = ACTIONS(12425), + [anon_sym_BSLASHAcl] = ACTIONS(12425), + [anon_sym_BSLASHaclp] = ACTIONS(12425), + [anon_sym_BSLASHAclp] = ACTIONS(12425), + [anon_sym_BSLASHacf] = ACTIONS(12425), + [anon_sym_BSLASHAcf] = ACTIONS(12425), + [anon_sym_BSLASHacfp] = ACTIONS(12425), + [anon_sym_BSLASHAcfp] = ACTIONS(12425), + [anon_sym_BSLASHac] = ACTIONS(12425), + [anon_sym_BSLASHAc] = ACTIONS(12425), + [anon_sym_BSLASHacp] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12425), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12425), + [anon_sym_BSLASHcolor] = ACTIONS(12425), + [anon_sym_BSLASHcolorbox] = ACTIONS(12425), + [anon_sym_BSLASHtextcolor] = ACTIONS(12425), + [anon_sym_BSLASHpagecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12425), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12425), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12425), + }, + [683] = { + [sym_generic_command_name] = ACTIONS(12421), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12421), + [aux_sym_chapter_token1] = ACTIONS(12421), + [aux_sym_section_token1] = ACTIONS(12421), + [aux_sym_subsection_token1] = ACTIONS(12421), + [aux_sym_subsubsection_token1] = ACTIONS(12421), + [aux_sym_paragraph_token1] = ACTIONS(12421), + [aux_sym_subparagraph_token1] = ACTIONS(12421), + [anon_sym_BSLASHitem] = ACTIONS(12421), + [anon_sym_LBRACK] = ACTIONS(12419), + [anon_sym_LBRACE] = ACTIONS(12419), + [anon_sym_LPAREN] = ACTIONS(12419), + [anon_sym_COMMA] = ACTIONS(12419), + [anon_sym_EQ] = ACTIONS(12419), + [sym_word] = ACTIONS(12419), + [sym_param] = ACTIONS(12419), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12419), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12419), + [anon_sym_DOLLAR] = ACTIONS(12421), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12419), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12419), + [anon_sym_BSLASHbegin] = ACTIONS(12421), + [anon_sym_BSLASHcaption] = ACTIONS(12421), + [anon_sym_BSLASHcite] = ACTIONS(12421), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCite] = ACTIONS(12421), + [anon_sym_BSLASHnocite] = ACTIONS(12421), + [anon_sym_BSLASHcitet] = ACTIONS(12421), + [anon_sym_BSLASHcitep] = ACTIONS(12421), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteauthor] = ACTIONS(12421), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12421), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitetitle] = ACTIONS(12421), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteyear] = ACTIONS(12421), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitedate] = ACTIONS(12421), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteurl] = ACTIONS(12421), + [anon_sym_BSLASHfullcite] = ACTIONS(12421), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12421), + [anon_sym_BSLASHcitealt] = ACTIONS(12421), + [anon_sym_BSLASHcitealp] = ACTIONS(12421), + [anon_sym_BSLASHcitetext] = ACTIONS(12421), + [anon_sym_BSLASHparencite] = ACTIONS(12421), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHParencite] = ACTIONS(12421), + [anon_sym_BSLASHfootcite] = ACTIONS(12421), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12421), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12421), + [anon_sym_BSLASHtextcite] = ACTIONS(12421), + [anon_sym_BSLASHTextcite] = ACTIONS(12421), + [anon_sym_BSLASHsmartcite] = ACTIONS(12421), + [anon_sym_BSLASHSmartcite] = ACTIONS(12421), + [anon_sym_BSLASHsupercite] = ACTIONS(12421), + [anon_sym_BSLASHautocite] = ACTIONS(12421), + [anon_sym_BSLASHAutocite] = ACTIONS(12421), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHvolcite] = ACTIONS(12421), + [anon_sym_BSLASHVolcite] = ACTIONS(12421), + [anon_sym_BSLASHpvolcite] = ACTIONS(12421), + [anon_sym_BSLASHPvolcite] = ACTIONS(12421), + [anon_sym_BSLASHfvolcite] = ACTIONS(12421), + [anon_sym_BSLASHftvolcite] = ACTIONS(12421), + [anon_sym_BSLASHsvolcite] = ACTIONS(12421), + [anon_sym_BSLASHSvolcite] = ACTIONS(12421), + [anon_sym_BSLASHtvolcite] = ACTIONS(12421), + [anon_sym_BSLASHTvolcite] = ACTIONS(12421), + [anon_sym_BSLASHavolcite] = ACTIONS(12421), + [anon_sym_BSLASHAvolcite] = ACTIONS(12421), + [anon_sym_BSLASHnotecite] = ACTIONS(12421), + [anon_sym_BSLASHpnotecite] = ACTIONS(12421), + [anon_sym_BSLASHPnotecite] = ACTIONS(12421), + [anon_sym_BSLASHfnotecite] = ACTIONS(12421), + [anon_sym_BSLASHusepackage] = ACTIONS(12421), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12421), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12421), + [anon_sym_BSLASHinclude] = ACTIONS(12421), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12421), + [anon_sym_BSLASHinput] = ACTIONS(12421), + [anon_sym_BSLASHsubfile] = ACTIONS(12421), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12421), + [anon_sym_BSLASHbibliography] = ACTIONS(12421), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12421), + [anon_sym_BSLASHincludesvg] = ACTIONS(12421), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12421), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12421), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12421), + [anon_sym_BSLASHimport] = ACTIONS(12421), + [anon_sym_BSLASHsubimport] = ACTIONS(12421), + [anon_sym_BSLASHinputfrom] = ACTIONS(12421), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12421), + [anon_sym_BSLASHincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHlabel] = ACTIONS(12421), + [anon_sym_BSLASHref] = ACTIONS(12421), + [anon_sym_BSLASHvref] = ACTIONS(12421), + [anon_sym_BSLASHVref] = ACTIONS(12421), + [anon_sym_BSLASHautoref] = ACTIONS(12421), + [anon_sym_BSLASHpageref] = ACTIONS(12421), + [anon_sym_BSLASHcref] = ACTIONS(12421), + [anon_sym_BSLASHCref] = ACTIONS(12421), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnameCref] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHlabelcref] = ACTIONS(12421), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12421), + [anon_sym_BSLASHeqref] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange] = ACTIONS(12421), + [anon_sym_BSLASHCrefrange] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewlabel] = ACTIONS(12421), + [anon_sym_BSLASHnewcommand] = ACTIONS(12421), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12421), + [anon_sym_BSLASHgls] = ACTIONS(12421), + [anon_sym_BSLASHGls] = ACTIONS(12421), + [anon_sym_BSLASHGLS] = ACTIONS(12421), + [anon_sym_BSLASHglspl] = ACTIONS(12421), + [anon_sym_BSLASHGlspl] = ACTIONS(12421), + [anon_sym_BSLASHGLSpl] = ACTIONS(12421), + [anon_sym_BSLASHglsdisp] = ACTIONS(12421), + [anon_sym_BSLASHglslink] = ACTIONS(12421), + [anon_sym_BSLASHglstext] = ACTIONS(12421), + [anon_sym_BSLASHGlstext] = ACTIONS(12421), + [anon_sym_BSLASHGLStext] = ACTIONS(12421), + [anon_sym_BSLASHglsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12421), + [anon_sym_BSLASHglsplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSplural] = ACTIONS(12421), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHglsname] = ACTIONS(12421), + [anon_sym_BSLASHGlsname] = ACTIONS(12421), + [anon_sym_BSLASHGLSname] = ACTIONS(12421), + [anon_sym_BSLASHglssymbol] = ACTIONS(12421), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12421), + [anon_sym_BSLASHglsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12421), + [anon_sym_BSLASHglsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12421), + [anon_sym_BSLASHglsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12421), + [anon_sym_BSLASHglsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12421), + [anon_sym_BSLASHglsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12421), + [anon_sym_BSLASHnewacronym] = ACTIONS(12421), + [anon_sym_BSLASHacrshort] = ACTIONS(12421), + [anon_sym_BSLASHAcrshort] = ACTIONS(12421), + [anon_sym_BSLASHACRshort] = ACTIONS(12421), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12421), + [anon_sym_BSLASHacrlong] = ACTIONS(12421), + [anon_sym_BSLASHAcrlong] = ACTIONS(12421), + [anon_sym_BSLASHACRlong] = ACTIONS(12421), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12421), + [anon_sym_BSLASHacrfull] = ACTIONS(12421), + [anon_sym_BSLASHAcrfull] = ACTIONS(12421), + [anon_sym_BSLASHACRfull] = ACTIONS(12421), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12421), + [anon_sym_BSLASHacs] = ACTIONS(12421), + [anon_sym_BSLASHAcs] = ACTIONS(12421), + [anon_sym_BSLASHacsp] = ACTIONS(12421), + [anon_sym_BSLASHAcsp] = ACTIONS(12421), + [anon_sym_BSLASHacl] = ACTIONS(12421), + [anon_sym_BSLASHAcl] = ACTIONS(12421), + [anon_sym_BSLASHaclp] = ACTIONS(12421), + [anon_sym_BSLASHAclp] = ACTIONS(12421), + [anon_sym_BSLASHacf] = ACTIONS(12421), + [anon_sym_BSLASHAcf] = ACTIONS(12421), + [anon_sym_BSLASHacfp] = ACTIONS(12421), + [anon_sym_BSLASHAcfp] = ACTIONS(12421), + [anon_sym_BSLASHac] = ACTIONS(12421), + [anon_sym_BSLASHAc] = ACTIONS(12421), + [anon_sym_BSLASHacp] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12421), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12421), + [anon_sym_BSLASHcolor] = ACTIONS(12421), + [anon_sym_BSLASHcolorbox] = ACTIONS(12421), + [anon_sym_BSLASHtextcolor] = ACTIONS(12421), + [anon_sym_BSLASHpagecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12421), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12421), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12421), + }, + [684] = { + [sym_generic_command_name] = ACTIONS(12413), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12413), + [aux_sym_chapter_token1] = ACTIONS(12413), + [aux_sym_section_token1] = ACTIONS(12413), + [aux_sym_subsection_token1] = ACTIONS(12413), + [aux_sym_subsubsection_token1] = ACTIONS(12413), + [aux_sym_paragraph_token1] = ACTIONS(12413), + [aux_sym_subparagraph_token1] = ACTIONS(12413), + [anon_sym_BSLASHitem] = ACTIONS(12413), + [anon_sym_LBRACK] = ACTIONS(12411), + [anon_sym_LBRACE] = ACTIONS(12411), + [anon_sym_LPAREN] = ACTIONS(12411), + [anon_sym_COMMA] = ACTIONS(12411), + [anon_sym_EQ] = ACTIONS(12411), + [sym_word] = ACTIONS(12411), + [sym_param] = ACTIONS(12411), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12411), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12411), + [anon_sym_DOLLAR] = ACTIONS(12413), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12411), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12411), + [anon_sym_BSLASHbegin] = ACTIONS(12413), + [anon_sym_BSLASHcaption] = ACTIONS(12413), + [anon_sym_BSLASHcite] = ACTIONS(12413), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCite] = ACTIONS(12413), + [anon_sym_BSLASHnocite] = ACTIONS(12413), + [anon_sym_BSLASHcitet] = ACTIONS(12413), + [anon_sym_BSLASHcitep] = ACTIONS(12413), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteauthor] = ACTIONS(12413), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12413), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitetitle] = ACTIONS(12413), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteyear] = ACTIONS(12413), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitedate] = ACTIONS(12413), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteurl] = ACTIONS(12413), + [anon_sym_BSLASHfullcite] = ACTIONS(12413), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12413), + [anon_sym_BSLASHcitealt] = ACTIONS(12413), + [anon_sym_BSLASHcitealp] = ACTIONS(12413), + [anon_sym_BSLASHcitetext] = ACTIONS(12413), + [anon_sym_BSLASHparencite] = ACTIONS(12413), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHParencite] = ACTIONS(12413), + [anon_sym_BSLASHfootcite] = ACTIONS(12413), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12413), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12413), + [anon_sym_BSLASHtextcite] = ACTIONS(12413), + [anon_sym_BSLASHTextcite] = ACTIONS(12413), + [anon_sym_BSLASHsmartcite] = ACTIONS(12413), + [anon_sym_BSLASHSmartcite] = ACTIONS(12413), + [anon_sym_BSLASHsupercite] = ACTIONS(12413), + [anon_sym_BSLASHautocite] = ACTIONS(12413), + [anon_sym_BSLASHAutocite] = ACTIONS(12413), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHvolcite] = ACTIONS(12413), + [anon_sym_BSLASHVolcite] = ACTIONS(12413), + [anon_sym_BSLASHpvolcite] = ACTIONS(12413), + [anon_sym_BSLASHPvolcite] = ACTIONS(12413), + [anon_sym_BSLASHfvolcite] = ACTIONS(12413), + [anon_sym_BSLASHftvolcite] = ACTIONS(12413), + [anon_sym_BSLASHsvolcite] = ACTIONS(12413), + [anon_sym_BSLASHSvolcite] = ACTIONS(12413), + [anon_sym_BSLASHtvolcite] = ACTIONS(12413), + [anon_sym_BSLASHTvolcite] = ACTIONS(12413), + [anon_sym_BSLASHavolcite] = ACTIONS(12413), + [anon_sym_BSLASHAvolcite] = ACTIONS(12413), + [anon_sym_BSLASHnotecite] = ACTIONS(12413), + [anon_sym_BSLASHpnotecite] = ACTIONS(12413), + [anon_sym_BSLASHPnotecite] = ACTIONS(12413), + [anon_sym_BSLASHfnotecite] = ACTIONS(12413), + [anon_sym_BSLASHusepackage] = ACTIONS(12413), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12413), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12413), + [anon_sym_BSLASHinclude] = ACTIONS(12413), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12413), + [anon_sym_BSLASHinput] = ACTIONS(12413), + [anon_sym_BSLASHsubfile] = ACTIONS(12413), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12413), + [anon_sym_BSLASHbibliography] = ACTIONS(12413), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12413), + [anon_sym_BSLASHincludesvg] = ACTIONS(12413), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12413), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12413), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12413), + [anon_sym_BSLASHimport] = ACTIONS(12413), + [anon_sym_BSLASHsubimport] = ACTIONS(12413), + [anon_sym_BSLASHinputfrom] = ACTIONS(12413), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12413), + [anon_sym_BSLASHincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHlabel] = ACTIONS(12413), + [anon_sym_BSLASHref] = ACTIONS(12413), + [anon_sym_BSLASHvref] = ACTIONS(12413), + [anon_sym_BSLASHVref] = ACTIONS(12413), + [anon_sym_BSLASHautoref] = ACTIONS(12413), + [anon_sym_BSLASHpageref] = ACTIONS(12413), + [anon_sym_BSLASHcref] = ACTIONS(12413), + [anon_sym_BSLASHCref] = ACTIONS(12413), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnameCref] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHlabelcref] = ACTIONS(12413), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12413), + [anon_sym_BSLASHeqref] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange] = ACTIONS(12413), + [anon_sym_BSLASHCrefrange] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewlabel] = ACTIONS(12413), + [anon_sym_BSLASHnewcommand] = ACTIONS(12413), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12413), + [anon_sym_BSLASHgls] = ACTIONS(12413), + [anon_sym_BSLASHGls] = ACTIONS(12413), + [anon_sym_BSLASHGLS] = ACTIONS(12413), + [anon_sym_BSLASHglspl] = ACTIONS(12413), + [anon_sym_BSLASHGlspl] = ACTIONS(12413), + [anon_sym_BSLASHGLSpl] = ACTIONS(12413), + [anon_sym_BSLASHglsdisp] = ACTIONS(12413), + [anon_sym_BSLASHglslink] = ACTIONS(12413), + [anon_sym_BSLASHglstext] = ACTIONS(12413), + [anon_sym_BSLASHGlstext] = ACTIONS(12413), + [anon_sym_BSLASHGLStext] = ACTIONS(12413), + [anon_sym_BSLASHglsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12413), + [anon_sym_BSLASHglsplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSplural] = ACTIONS(12413), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHglsname] = ACTIONS(12413), + [anon_sym_BSLASHGlsname] = ACTIONS(12413), + [anon_sym_BSLASHGLSname] = ACTIONS(12413), + [anon_sym_BSLASHglssymbol] = ACTIONS(12413), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12413), + [anon_sym_BSLASHglsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12413), + [anon_sym_BSLASHglsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12413), + [anon_sym_BSLASHglsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12413), + [anon_sym_BSLASHglsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12413), + [anon_sym_BSLASHglsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12413), + [anon_sym_BSLASHnewacronym] = ACTIONS(12413), + [anon_sym_BSLASHacrshort] = ACTIONS(12413), + [anon_sym_BSLASHAcrshort] = ACTIONS(12413), + [anon_sym_BSLASHACRshort] = ACTIONS(12413), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12413), + [anon_sym_BSLASHacrlong] = ACTIONS(12413), + [anon_sym_BSLASHAcrlong] = ACTIONS(12413), + [anon_sym_BSLASHACRlong] = ACTIONS(12413), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12413), + [anon_sym_BSLASHacrfull] = ACTIONS(12413), + [anon_sym_BSLASHAcrfull] = ACTIONS(12413), + [anon_sym_BSLASHACRfull] = ACTIONS(12413), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12413), + [anon_sym_BSLASHacs] = ACTIONS(12413), + [anon_sym_BSLASHAcs] = ACTIONS(12413), + [anon_sym_BSLASHacsp] = ACTIONS(12413), + [anon_sym_BSLASHAcsp] = ACTIONS(12413), + [anon_sym_BSLASHacl] = ACTIONS(12413), + [anon_sym_BSLASHAcl] = ACTIONS(12413), + [anon_sym_BSLASHaclp] = ACTIONS(12413), + [anon_sym_BSLASHAclp] = ACTIONS(12413), + [anon_sym_BSLASHacf] = ACTIONS(12413), + [anon_sym_BSLASHAcf] = ACTIONS(12413), + [anon_sym_BSLASHacfp] = ACTIONS(12413), + [anon_sym_BSLASHAcfp] = ACTIONS(12413), + [anon_sym_BSLASHac] = ACTIONS(12413), + [anon_sym_BSLASHAc] = ACTIONS(12413), + [anon_sym_BSLASHacp] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12413), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12413), + [anon_sym_BSLASHcolor] = ACTIONS(12413), + [anon_sym_BSLASHcolorbox] = ACTIONS(12413), + [anon_sym_BSLASHtextcolor] = ACTIONS(12413), + [anon_sym_BSLASHpagecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12413), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12413), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12413), + }, + [685] = { + [sym_generic_command_name] = ACTIONS(12409), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12409), + [aux_sym_chapter_token1] = ACTIONS(12409), + [aux_sym_section_token1] = ACTIONS(12409), + [aux_sym_subsection_token1] = ACTIONS(12409), + [aux_sym_subsubsection_token1] = ACTIONS(12409), + [aux_sym_paragraph_token1] = ACTIONS(12409), + [aux_sym_subparagraph_token1] = ACTIONS(12409), + [anon_sym_BSLASHitem] = ACTIONS(12409), + [anon_sym_LBRACK] = ACTIONS(12407), + [anon_sym_LBRACE] = ACTIONS(12407), + [anon_sym_LPAREN] = ACTIONS(12407), + [anon_sym_COMMA] = ACTIONS(12407), + [anon_sym_EQ] = ACTIONS(12407), + [sym_word] = ACTIONS(12407), + [sym_param] = ACTIONS(12407), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12407), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12407), + [anon_sym_DOLLAR] = ACTIONS(12409), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12407), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12407), + [anon_sym_BSLASHbegin] = ACTIONS(12409), + [anon_sym_BSLASHcaption] = ACTIONS(12409), + [anon_sym_BSLASHcite] = ACTIONS(12409), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCite] = ACTIONS(12409), + [anon_sym_BSLASHnocite] = ACTIONS(12409), + [anon_sym_BSLASHcitet] = ACTIONS(12409), + [anon_sym_BSLASHcitep] = ACTIONS(12409), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteauthor] = ACTIONS(12409), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12409), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitetitle] = ACTIONS(12409), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteyear] = ACTIONS(12409), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitedate] = ACTIONS(12409), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteurl] = ACTIONS(12409), + [anon_sym_BSLASHfullcite] = ACTIONS(12409), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12409), + [anon_sym_BSLASHcitealt] = ACTIONS(12409), + [anon_sym_BSLASHcitealp] = ACTIONS(12409), + [anon_sym_BSLASHcitetext] = ACTIONS(12409), + [anon_sym_BSLASHparencite] = ACTIONS(12409), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHParencite] = ACTIONS(12409), + [anon_sym_BSLASHfootcite] = ACTIONS(12409), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12409), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12409), + [anon_sym_BSLASHtextcite] = ACTIONS(12409), + [anon_sym_BSLASHTextcite] = ACTIONS(12409), + [anon_sym_BSLASHsmartcite] = ACTIONS(12409), + [anon_sym_BSLASHSmartcite] = ACTIONS(12409), + [anon_sym_BSLASHsupercite] = ACTIONS(12409), + [anon_sym_BSLASHautocite] = ACTIONS(12409), + [anon_sym_BSLASHAutocite] = ACTIONS(12409), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHvolcite] = ACTIONS(12409), + [anon_sym_BSLASHVolcite] = ACTIONS(12409), + [anon_sym_BSLASHpvolcite] = ACTIONS(12409), + [anon_sym_BSLASHPvolcite] = ACTIONS(12409), + [anon_sym_BSLASHfvolcite] = ACTIONS(12409), + [anon_sym_BSLASHftvolcite] = ACTIONS(12409), + [anon_sym_BSLASHsvolcite] = ACTIONS(12409), + [anon_sym_BSLASHSvolcite] = ACTIONS(12409), + [anon_sym_BSLASHtvolcite] = ACTIONS(12409), + [anon_sym_BSLASHTvolcite] = ACTIONS(12409), + [anon_sym_BSLASHavolcite] = ACTIONS(12409), + [anon_sym_BSLASHAvolcite] = ACTIONS(12409), + [anon_sym_BSLASHnotecite] = ACTIONS(12409), + [anon_sym_BSLASHpnotecite] = ACTIONS(12409), + [anon_sym_BSLASHPnotecite] = ACTIONS(12409), + [anon_sym_BSLASHfnotecite] = ACTIONS(12409), + [anon_sym_BSLASHusepackage] = ACTIONS(12409), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12409), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12409), + [anon_sym_BSLASHinclude] = ACTIONS(12409), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12409), + [anon_sym_BSLASHinput] = ACTIONS(12409), + [anon_sym_BSLASHsubfile] = ACTIONS(12409), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12409), + [anon_sym_BSLASHbibliography] = ACTIONS(12409), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12409), + [anon_sym_BSLASHincludesvg] = ACTIONS(12409), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12409), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12409), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12409), + [anon_sym_BSLASHimport] = ACTIONS(12409), + [anon_sym_BSLASHsubimport] = ACTIONS(12409), + [anon_sym_BSLASHinputfrom] = ACTIONS(12409), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12409), + [anon_sym_BSLASHincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHlabel] = ACTIONS(12409), + [anon_sym_BSLASHref] = ACTIONS(12409), + [anon_sym_BSLASHvref] = ACTIONS(12409), + [anon_sym_BSLASHVref] = ACTIONS(12409), + [anon_sym_BSLASHautoref] = ACTIONS(12409), + [anon_sym_BSLASHpageref] = ACTIONS(12409), + [anon_sym_BSLASHcref] = ACTIONS(12409), + [anon_sym_BSLASHCref] = ACTIONS(12409), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnameCref] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHlabelcref] = ACTIONS(12409), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12409), + [anon_sym_BSLASHeqref] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange] = ACTIONS(12409), + [anon_sym_BSLASHCrefrange] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewlabel] = ACTIONS(12409), + [anon_sym_BSLASHnewcommand] = ACTIONS(12409), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12409), + [anon_sym_BSLASHgls] = ACTIONS(12409), + [anon_sym_BSLASHGls] = ACTIONS(12409), + [anon_sym_BSLASHGLS] = ACTIONS(12409), + [anon_sym_BSLASHglspl] = ACTIONS(12409), + [anon_sym_BSLASHGlspl] = ACTIONS(12409), + [anon_sym_BSLASHGLSpl] = ACTIONS(12409), + [anon_sym_BSLASHglsdisp] = ACTIONS(12409), + [anon_sym_BSLASHglslink] = ACTIONS(12409), + [anon_sym_BSLASHglstext] = ACTIONS(12409), + [anon_sym_BSLASHGlstext] = ACTIONS(12409), + [anon_sym_BSLASHGLStext] = ACTIONS(12409), + [anon_sym_BSLASHglsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12409), + [anon_sym_BSLASHglsplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSplural] = ACTIONS(12409), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHglsname] = ACTIONS(12409), + [anon_sym_BSLASHGlsname] = ACTIONS(12409), + [anon_sym_BSLASHGLSname] = ACTIONS(12409), + [anon_sym_BSLASHglssymbol] = ACTIONS(12409), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12409), + [anon_sym_BSLASHglsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12409), + [anon_sym_BSLASHglsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12409), + [anon_sym_BSLASHglsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12409), + [anon_sym_BSLASHglsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12409), + [anon_sym_BSLASHglsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12409), + [anon_sym_BSLASHnewacronym] = ACTIONS(12409), + [anon_sym_BSLASHacrshort] = ACTIONS(12409), + [anon_sym_BSLASHAcrshort] = ACTIONS(12409), + [anon_sym_BSLASHACRshort] = ACTIONS(12409), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12409), + [anon_sym_BSLASHacrlong] = ACTIONS(12409), + [anon_sym_BSLASHAcrlong] = ACTIONS(12409), + [anon_sym_BSLASHACRlong] = ACTIONS(12409), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12409), + [anon_sym_BSLASHacrfull] = ACTIONS(12409), + [anon_sym_BSLASHAcrfull] = ACTIONS(12409), + [anon_sym_BSLASHACRfull] = ACTIONS(12409), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12409), + [anon_sym_BSLASHacs] = ACTIONS(12409), + [anon_sym_BSLASHAcs] = ACTIONS(12409), + [anon_sym_BSLASHacsp] = ACTIONS(12409), + [anon_sym_BSLASHAcsp] = ACTIONS(12409), + [anon_sym_BSLASHacl] = ACTIONS(12409), + [anon_sym_BSLASHAcl] = ACTIONS(12409), + [anon_sym_BSLASHaclp] = ACTIONS(12409), + [anon_sym_BSLASHAclp] = ACTIONS(12409), + [anon_sym_BSLASHacf] = ACTIONS(12409), + [anon_sym_BSLASHAcf] = ACTIONS(12409), + [anon_sym_BSLASHacfp] = ACTIONS(12409), + [anon_sym_BSLASHAcfp] = ACTIONS(12409), + [anon_sym_BSLASHac] = ACTIONS(12409), + [anon_sym_BSLASHAc] = ACTIONS(12409), + [anon_sym_BSLASHacp] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12409), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12409), + [anon_sym_BSLASHcolor] = ACTIONS(12409), + [anon_sym_BSLASHcolorbox] = ACTIONS(12409), + [anon_sym_BSLASHtextcolor] = ACTIONS(12409), + [anon_sym_BSLASHpagecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12409), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12409), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12409), + }, + [686] = { + [sym_generic_command_name] = ACTIONS(12405), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12405), + [aux_sym_chapter_token1] = ACTIONS(12405), + [aux_sym_section_token1] = ACTIONS(12405), + [aux_sym_subsection_token1] = ACTIONS(12405), + [aux_sym_subsubsection_token1] = ACTIONS(12405), + [aux_sym_paragraph_token1] = ACTIONS(12405), + [aux_sym_subparagraph_token1] = ACTIONS(12405), + [anon_sym_BSLASHitem] = ACTIONS(12405), + [anon_sym_LBRACK] = ACTIONS(12403), + [anon_sym_LBRACE] = ACTIONS(12403), + [anon_sym_LPAREN] = ACTIONS(12403), + [anon_sym_COMMA] = ACTIONS(12403), + [anon_sym_EQ] = ACTIONS(12403), + [sym_word] = ACTIONS(12403), + [sym_param] = ACTIONS(12403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12403), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12403), + [anon_sym_DOLLAR] = ACTIONS(12405), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12403), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12403), + [anon_sym_BSLASHbegin] = ACTIONS(12405), + [anon_sym_BSLASHcaption] = ACTIONS(12405), + [anon_sym_BSLASHcite] = ACTIONS(12405), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCite] = ACTIONS(12405), + [anon_sym_BSLASHnocite] = ACTIONS(12405), + [anon_sym_BSLASHcitet] = ACTIONS(12405), + [anon_sym_BSLASHcitep] = ACTIONS(12405), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteauthor] = ACTIONS(12405), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12405), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitetitle] = ACTIONS(12405), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteyear] = ACTIONS(12405), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitedate] = ACTIONS(12405), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteurl] = ACTIONS(12405), + [anon_sym_BSLASHfullcite] = ACTIONS(12405), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12405), + [anon_sym_BSLASHcitealt] = ACTIONS(12405), + [anon_sym_BSLASHcitealp] = ACTIONS(12405), + [anon_sym_BSLASHcitetext] = ACTIONS(12405), + [anon_sym_BSLASHparencite] = ACTIONS(12405), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHParencite] = ACTIONS(12405), + [anon_sym_BSLASHfootcite] = ACTIONS(12405), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12405), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12405), + [anon_sym_BSLASHtextcite] = ACTIONS(12405), + [anon_sym_BSLASHTextcite] = ACTIONS(12405), + [anon_sym_BSLASHsmartcite] = ACTIONS(12405), + [anon_sym_BSLASHSmartcite] = ACTIONS(12405), + [anon_sym_BSLASHsupercite] = ACTIONS(12405), + [anon_sym_BSLASHautocite] = ACTIONS(12405), + [anon_sym_BSLASHAutocite] = ACTIONS(12405), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHvolcite] = ACTIONS(12405), + [anon_sym_BSLASHVolcite] = ACTIONS(12405), + [anon_sym_BSLASHpvolcite] = ACTIONS(12405), + [anon_sym_BSLASHPvolcite] = ACTIONS(12405), + [anon_sym_BSLASHfvolcite] = ACTIONS(12405), + [anon_sym_BSLASHftvolcite] = ACTIONS(12405), + [anon_sym_BSLASHsvolcite] = ACTIONS(12405), + [anon_sym_BSLASHSvolcite] = ACTIONS(12405), + [anon_sym_BSLASHtvolcite] = ACTIONS(12405), + [anon_sym_BSLASHTvolcite] = ACTIONS(12405), + [anon_sym_BSLASHavolcite] = ACTIONS(12405), + [anon_sym_BSLASHAvolcite] = ACTIONS(12405), + [anon_sym_BSLASHnotecite] = ACTIONS(12405), + [anon_sym_BSLASHpnotecite] = ACTIONS(12405), + [anon_sym_BSLASHPnotecite] = ACTIONS(12405), + [anon_sym_BSLASHfnotecite] = ACTIONS(12405), + [anon_sym_BSLASHusepackage] = ACTIONS(12405), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12405), + [anon_sym_BSLASHinclude] = ACTIONS(12405), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12405), + [anon_sym_BSLASHinput] = ACTIONS(12405), + [anon_sym_BSLASHsubfile] = ACTIONS(12405), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12405), + [anon_sym_BSLASHbibliography] = ACTIONS(12405), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12405), + [anon_sym_BSLASHincludesvg] = ACTIONS(12405), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12405), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12405), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12405), + [anon_sym_BSLASHimport] = ACTIONS(12405), + [anon_sym_BSLASHsubimport] = ACTIONS(12405), + [anon_sym_BSLASHinputfrom] = ACTIONS(12405), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12405), + [anon_sym_BSLASHincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHlabel] = ACTIONS(12405), + [anon_sym_BSLASHref] = ACTIONS(12405), + [anon_sym_BSLASHvref] = ACTIONS(12405), + [anon_sym_BSLASHVref] = ACTIONS(12405), + [anon_sym_BSLASHautoref] = ACTIONS(12405), + [anon_sym_BSLASHpageref] = ACTIONS(12405), + [anon_sym_BSLASHcref] = ACTIONS(12405), + [anon_sym_BSLASHCref] = ACTIONS(12405), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnameCref] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHlabelcref] = ACTIONS(12405), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12405), + [anon_sym_BSLASHeqref] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange] = ACTIONS(12405), + [anon_sym_BSLASHCrefrange] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewlabel] = ACTIONS(12405), + [anon_sym_BSLASHnewcommand] = ACTIONS(12405), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12405), + [anon_sym_BSLASHgls] = ACTIONS(12405), + [anon_sym_BSLASHGls] = ACTIONS(12405), + [anon_sym_BSLASHGLS] = ACTIONS(12405), + [anon_sym_BSLASHglspl] = ACTIONS(12405), + [anon_sym_BSLASHGlspl] = ACTIONS(12405), + [anon_sym_BSLASHGLSpl] = ACTIONS(12405), + [anon_sym_BSLASHglsdisp] = ACTIONS(12405), + [anon_sym_BSLASHglslink] = ACTIONS(12405), + [anon_sym_BSLASHglstext] = ACTIONS(12405), + [anon_sym_BSLASHGlstext] = ACTIONS(12405), + [anon_sym_BSLASHGLStext] = ACTIONS(12405), + [anon_sym_BSLASHglsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12405), + [anon_sym_BSLASHglsplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSplural] = ACTIONS(12405), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHglsname] = ACTIONS(12405), + [anon_sym_BSLASHGlsname] = ACTIONS(12405), + [anon_sym_BSLASHGLSname] = ACTIONS(12405), + [anon_sym_BSLASHglssymbol] = ACTIONS(12405), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12405), + [anon_sym_BSLASHglsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12405), + [anon_sym_BSLASHglsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12405), + [anon_sym_BSLASHglsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12405), + [anon_sym_BSLASHglsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12405), + [anon_sym_BSLASHglsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12405), + [anon_sym_BSLASHnewacronym] = ACTIONS(12405), + [anon_sym_BSLASHacrshort] = ACTIONS(12405), + [anon_sym_BSLASHAcrshort] = ACTIONS(12405), + [anon_sym_BSLASHACRshort] = ACTIONS(12405), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12405), + [anon_sym_BSLASHacrlong] = ACTIONS(12405), + [anon_sym_BSLASHAcrlong] = ACTIONS(12405), + [anon_sym_BSLASHACRlong] = ACTIONS(12405), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12405), + [anon_sym_BSLASHacrfull] = ACTIONS(12405), + [anon_sym_BSLASHAcrfull] = ACTIONS(12405), + [anon_sym_BSLASHACRfull] = ACTIONS(12405), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12405), + [anon_sym_BSLASHacs] = ACTIONS(12405), + [anon_sym_BSLASHAcs] = ACTIONS(12405), + [anon_sym_BSLASHacsp] = ACTIONS(12405), + [anon_sym_BSLASHAcsp] = ACTIONS(12405), + [anon_sym_BSLASHacl] = ACTIONS(12405), + [anon_sym_BSLASHAcl] = ACTIONS(12405), + [anon_sym_BSLASHaclp] = ACTIONS(12405), + [anon_sym_BSLASHAclp] = ACTIONS(12405), + [anon_sym_BSLASHacf] = ACTIONS(12405), + [anon_sym_BSLASHAcf] = ACTIONS(12405), + [anon_sym_BSLASHacfp] = ACTIONS(12405), + [anon_sym_BSLASHAcfp] = ACTIONS(12405), + [anon_sym_BSLASHac] = ACTIONS(12405), + [anon_sym_BSLASHAc] = ACTIONS(12405), + [anon_sym_BSLASHacp] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12405), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12405), + [anon_sym_BSLASHcolor] = ACTIONS(12405), + [anon_sym_BSLASHcolorbox] = ACTIONS(12405), + [anon_sym_BSLASHtextcolor] = ACTIONS(12405), + [anon_sym_BSLASHpagecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12405), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12405), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12405), + }, + [687] = { + [sym_generic_command_name] = ACTIONS(12401), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12401), + [aux_sym_chapter_token1] = ACTIONS(12401), + [aux_sym_section_token1] = ACTIONS(12401), + [aux_sym_subsection_token1] = ACTIONS(12401), + [aux_sym_subsubsection_token1] = ACTIONS(12401), + [aux_sym_paragraph_token1] = ACTIONS(12401), + [aux_sym_subparagraph_token1] = ACTIONS(12401), + [anon_sym_BSLASHitem] = ACTIONS(12401), + [anon_sym_LBRACK] = ACTIONS(12399), + [anon_sym_LBRACE] = ACTIONS(12399), + [anon_sym_LPAREN] = ACTIONS(12399), + [anon_sym_COMMA] = ACTIONS(12399), + [anon_sym_EQ] = ACTIONS(12399), + [sym_word] = ACTIONS(12399), + [sym_param] = ACTIONS(12399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12399), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12399), + [anon_sym_DOLLAR] = ACTIONS(12401), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12399), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12399), + [anon_sym_BSLASHbegin] = ACTIONS(12401), + [anon_sym_BSLASHcaption] = ACTIONS(12401), + [anon_sym_BSLASHcite] = ACTIONS(12401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCite] = ACTIONS(12401), + [anon_sym_BSLASHnocite] = ACTIONS(12401), + [anon_sym_BSLASHcitet] = ACTIONS(12401), + [anon_sym_BSLASHcitep] = ACTIONS(12401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteauthor] = ACTIONS(12401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitetitle] = ACTIONS(12401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteyear] = ACTIONS(12401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitedate] = ACTIONS(12401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteurl] = ACTIONS(12401), + [anon_sym_BSLASHfullcite] = ACTIONS(12401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12401), + [anon_sym_BSLASHcitealt] = ACTIONS(12401), + [anon_sym_BSLASHcitealp] = ACTIONS(12401), + [anon_sym_BSLASHcitetext] = ACTIONS(12401), + [anon_sym_BSLASHparencite] = ACTIONS(12401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHParencite] = ACTIONS(12401), + [anon_sym_BSLASHfootcite] = ACTIONS(12401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12401), + [anon_sym_BSLASHtextcite] = ACTIONS(12401), + [anon_sym_BSLASHTextcite] = ACTIONS(12401), + [anon_sym_BSLASHsmartcite] = ACTIONS(12401), + [anon_sym_BSLASHSmartcite] = ACTIONS(12401), + [anon_sym_BSLASHsupercite] = ACTIONS(12401), + [anon_sym_BSLASHautocite] = ACTIONS(12401), + [anon_sym_BSLASHAutocite] = ACTIONS(12401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHvolcite] = ACTIONS(12401), + [anon_sym_BSLASHVolcite] = ACTIONS(12401), + [anon_sym_BSLASHpvolcite] = ACTIONS(12401), + [anon_sym_BSLASHPvolcite] = ACTIONS(12401), + [anon_sym_BSLASHfvolcite] = ACTIONS(12401), + [anon_sym_BSLASHftvolcite] = ACTIONS(12401), + [anon_sym_BSLASHsvolcite] = ACTIONS(12401), + [anon_sym_BSLASHSvolcite] = ACTIONS(12401), + [anon_sym_BSLASHtvolcite] = ACTIONS(12401), + [anon_sym_BSLASHTvolcite] = ACTIONS(12401), + [anon_sym_BSLASHavolcite] = ACTIONS(12401), + [anon_sym_BSLASHAvolcite] = ACTIONS(12401), + [anon_sym_BSLASHnotecite] = ACTIONS(12401), + [anon_sym_BSLASHpnotecite] = ACTIONS(12401), + [anon_sym_BSLASHPnotecite] = ACTIONS(12401), + [anon_sym_BSLASHfnotecite] = ACTIONS(12401), + [anon_sym_BSLASHusepackage] = ACTIONS(12401), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12401), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12401), + [anon_sym_BSLASHinclude] = ACTIONS(12401), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12401), + [anon_sym_BSLASHinput] = ACTIONS(12401), + [anon_sym_BSLASHsubfile] = ACTIONS(12401), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12401), + [anon_sym_BSLASHbibliography] = ACTIONS(12401), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12401), + [anon_sym_BSLASHincludesvg] = ACTIONS(12401), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12401), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12401), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12401), + [anon_sym_BSLASHimport] = ACTIONS(12401), + [anon_sym_BSLASHsubimport] = ACTIONS(12401), + [anon_sym_BSLASHinputfrom] = ACTIONS(12401), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12401), + [anon_sym_BSLASHincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHlabel] = ACTIONS(12401), + [anon_sym_BSLASHref] = ACTIONS(12401), + [anon_sym_BSLASHvref] = ACTIONS(12401), + [anon_sym_BSLASHVref] = ACTIONS(12401), + [anon_sym_BSLASHautoref] = ACTIONS(12401), + [anon_sym_BSLASHpageref] = ACTIONS(12401), + [anon_sym_BSLASHcref] = ACTIONS(12401), + [anon_sym_BSLASHCref] = ACTIONS(12401), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnameCref] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHlabelcref] = ACTIONS(12401), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12401), + [anon_sym_BSLASHeqref] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange] = ACTIONS(12401), + [anon_sym_BSLASHCrefrange] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewlabel] = ACTIONS(12401), + [anon_sym_BSLASHnewcommand] = ACTIONS(12401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12401), + [anon_sym_BSLASHgls] = ACTIONS(12401), + [anon_sym_BSLASHGls] = ACTIONS(12401), + [anon_sym_BSLASHGLS] = ACTIONS(12401), + [anon_sym_BSLASHglspl] = ACTIONS(12401), + [anon_sym_BSLASHGlspl] = ACTIONS(12401), + [anon_sym_BSLASHGLSpl] = ACTIONS(12401), + [anon_sym_BSLASHglsdisp] = ACTIONS(12401), + [anon_sym_BSLASHglslink] = ACTIONS(12401), + [anon_sym_BSLASHglstext] = ACTIONS(12401), + [anon_sym_BSLASHGlstext] = ACTIONS(12401), + [anon_sym_BSLASHGLStext] = ACTIONS(12401), + [anon_sym_BSLASHglsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12401), + [anon_sym_BSLASHglsplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSplural] = ACTIONS(12401), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHglsname] = ACTIONS(12401), + [anon_sym_BSLASHGlsname] = ACTIONS(12401), + [anon_sym_BSLASHGLSname] = ACTIONS(12401), + [anon_sym_BSLASHglssymbol] = ACTIONS(12401), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12401), + [anon_sym_BSLASHglsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12401), + [anon_sym_BSLASHglsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12401), + [anon_sym_BSLASHglsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12401), + [anon_sym_BSLASHglsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12401), + [anon_sym_BSLASHglsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12401), + [anon_sym_BSLASHnewacronym] = ACTIONS(12401), + [anon_sym_BSLASHacrshort] = ACTIONS(12401), + [anon_sym_BSLASHAcrshort] = ACTIONS(12401), + [anon_sym_BSLASHACRshort] = ACTIONS(12401), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12401), + [anon_sym_BSLASHacrlong] = ACTIONS(12401), + [anon_sym_BSLASHAcrlong] = ACTIONS(12401), + [anon_sym_BSLASHACRlong] = ACTIONS(12401), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12401), + [anon_sym_BSLASHacrfull] = ACTIONS(12401), + [anon_sym_BSLASHAcrfull] = ACTIONS(12401), + [anon_sym_BSLASHACRfull] = ACTIONS(12401), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12401), + [anon_sym_BSLASHacs] = ACTIONS(12401), + [anon_sym_BSLASHAcs] = ACTIONS(12401), + [anon_sym_BSLASHacsp] = ACTIONS(12401), + [anon_sym_BSLASHAcsp] = ACTIONS(12401), + [anon_sym_BSLASHacl] = ACTIONS(12401), + [anon_sym_BSLASHAcl] = ACTIONS(12401), + [anon_sym_BSLASHaclp] = ACTIONS(12401), + [anon_sym_BSLASHAclp] = ACTIONS(12401), + [anon_sym_BSLASHacf] = ACTIONS(12401), + [anon_sym_BSLASHAcf] = ACTIONS(12401), + [anon_sym_BSLASHacfp] = ACTIONS(12401), + [anon_sym_BSLASHAcfp] = ACTIONS(12401), + [anon_sym_BSLASHac] = ACTIONS(12401), + [anon_sym_BSLASHAc] = ACTIONS(12401), + [anon_sym_BSLASHacp] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12401), + [anon_sym_BSLASHcolor] = ACTIONS(12401), + [anon_sym_BSLASHcolorbox] = ACTIONS(12401), + [anon_sym_BSLASHtextcolor] = ACTIONS(12401), + [anon_sym_BSLASHpagecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12401), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12401), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12401), + }, + [688] = { + [sym_generic_command_name] = ACTIONS(12397), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12397), + [aux_sym_chapter_token1] = ACTIONS(12397), + [aux_sym_section_token1] = ACTIONS(12397), + [aux_sym_subsection_token1] = ACTIONS(12397), + [aux_sym_subsubsection_token1] = ACTIONS(12397), + [aux_sym_paragraph_token1] = ACTIONS(12397), + [aux_sym_subparagraph_token1] = ACTIONS(12397), + [anon_sym_BSLASHitem] = ACTIONS(12397), + [anon_sym_LBRACK] = ACTIONS(12395), + [anon_sym_LBRACE] = ACTIONS(12395), + [anon_sym_LPAREN] = ACTIONS(12395), + [anon_sym_COMMA] = ACTIONS(12395), + [anon_sym_EQ] = ACTIONS(12395), + [sym_word] = ACTIONS(12395), + [sym_param] = ACTIONS(12395), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12395), + [anon_sym_DOLLAR] = ACTIONS(12397), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12395), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12395), + [anon_sym_BSLASHbegin] = ACTIONS(12397), + [anon_sym_BSLASHcaption] = ACTIONS(12397), + [anon_sym_BSLASHcite] = ACTIONS(12397), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCite] = ACTIONS(12397), + [anon_sym_BSLASHnocite] = ACTIONS(12397), + [anon_sym_BSLASHcitet] = ACTIONS(12397), + [anon_sym_BSLASHcitep] = ACTIONS(12397), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteauthor] = ACTIONS(12397), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12397), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitetitle] = ACTIONS(12397), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteyear] = ACTIONS(12397), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitedate] = ACTIONS(12397), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteurl] = ACTIONS(12397), + [anon_sym_BSLASHfullcite] = ACTIONS(12397), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12397), + [anon_sym_BSLASHcitealt] = ACTIONS(12397), + [anon_sym_BSLASHcitealp] = ACTIONS(12397), + [anon_sym_BSLASHcitetext] = ACTIONS(12397), + [anon_sym_BSLASHparencite] = ACTIONS(12397), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHParencite] = ACTIONS(12397), + [anon_sym_BSLASHfootcite] = ACTIONS(12397), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12397), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12397), + [anon_sym_BSLASHtextcite] = ACTIONS(12397), + [anon_sym_BSLASHTextcite] = ACTIONS(12397), + [anon_sym_BSLASHsmartcite] = ACTIONS(12397), + [anon_sym_BSLASHSmartcite] = ACTIONS(12397), + [anon_sym_BSLASHsupercite] = ACTIONS(12397), + [anon_sym_BSLASHautocite] = ACTIONS(12397), + [anon_sym_BSLASHAutocite] = ACTIONS(12397), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHvolcite] = ACTIONS(12397), + [anon_sym_BSLASHVolcite] = ACTIONS(12397), + [anon_sym_BSLASHpvolcite] = ACTIONS(12397), + [anon_sym_BSLASHPvolcite] = ACTIONS(12397), + [anon_sym_BSLASHfvolcite] = ACTIONS(12397), + [anon_sym_BSLASHftvolcite] = ACTIONS(12397), + [anon_sym_BSLASHsvolcite] = ACTIONS(12397), + [anon_sym_BSLASHSvolcite] = ACTIONS(12397), + [anon_sym_BSLASHtvolcite] = ACTIONS(12397), + [anon_sym_BSLASHTvolcite] = ACTIONS(12397), + [anon_sym_BSLASHavolcite] = ACTIONS(12397), + [anon_sym_BSLASHAvolcite] = ACTIONS(12397), + [anon_sym_BSLASHnotecite] = ACTIONS(12397), + [anon_sym_BSLASHpnotecite] = ACTIONS(12397), + [anon_sym_BSLASHPnotecite] = ACTIONS(12397), + [anon_sym_BSLASHfnotecite] = ACTIONS(12397), + [anon_sym_BSLASHusepackage] = ACTIONS(12397), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12397), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12397), + [anon_sym_BSLASHinclude] = ACTIONS(12397), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12397), + [anon_sym_BSLASHinput] = ACTIONS(12397), + [anon_sym_BSLASHsubfile] = ACTIONS(12397), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12397), + [anon_sym_BSLASHbibliography] = ACTIONS(12397), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12397), + [anon_sym_BSLASHincludesvg] = ACTIONS(12397), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12397), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12397), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12397), + [anon_sym_BSLASHimport] = ACTIONS(12397), + [anon_sym_BSLASHsubimport] = ACTIONS(12397), + [anon_sym_BSLASHinputfrom] = ACTIONS(12397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12397), + [anon_sym_BSLASHincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHlabel] = ACTIONS(12397), + [anon_sym_BSLASHref] = ACTIONS(12397), + [anon_sym_BSLASHvref] = ACTIONS(12397), + [anon_sym_BSLASHVref] = ACTIONS(12397), + [anon_sym_BSLASHautoref] = ACTIONS(12397), + [anon_sym_BSLASHpageref] = ACTIONS(12397), + [anon_sym_BSLASHcref] = ACTIONS(12397), + [anon_sym_BSLASHCref] = ACTIONS(12397), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnameCref] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHlabelcref] = ACTIONS(12397), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12397), + [anon_sym_BSLASHeqref] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange] = ACTIONS(12397), + [anon_sym_BSLASHCrefrange] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewlabel] = ACTIONS(12397), + [anon_sym_BSLASHnewcommand] = ACTIONS(12397), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12397), + [anon_sym_BSLASHgls] = ACTIONS(12397), + [anon_sym_BSLASHGls] = ACTIONS(12397), + [anon_sym_BSLASHGLS] = ACTIONS(12397), + [anon_sym_BSLASHglspl] = ACTIONS(12397), + [anon_sym_BSLASHGlspl] = ACTIONS(12397), + [anon_sym_BSLASHGLSpl] = ACTIONS(12397), + [anon_sym_BSLASHglsdisp] = ACTIONS(12397), + [anon_sym_BSLASHglslink] = ACTIONS(12397), + [anon_sym_BSLASHglstext] = ACTIONS(12397), + [anon_sym_BSLASHGlstext] = ACTIONS(12397), + [anon_sym_BSLASHGLStext] = ACTIONS(12397), + [anon_sym_BSLASHglsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12397), + [anon_sym_BSLASHglsplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSplural] = ACTIONS(12397), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHglsname] = ACTIONS(12397), + [anon_sym_BSLASHGlsname] = ACTIONS(12397), + [anon_sym_BSLASHGLSname] = ACTIONS(12397), + [anon_sym_BSLASHglssymbol] = ACTIONS(12397), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12397), + [anon_sym_BSLASHglsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12397), + [anon_sym_BSLASHglsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12397), + [anon_sym_BSLASHglsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12397), + [anon_sym_BSLASHglsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12397), + [anon_sym_BSLASHglsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12397), + [anon_sym_BSLASHnewacronym] = ACTIONS(12397), + [anon_sym_BSLASHacrshort] = ACTIONS(12397), + [anon_sym_BSLASHAcrshort] = ACTIONS(12397), + [anon_sym_BSLASHACRshort] = ACTIONS(12397), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12397), + [anon_sym_BSLASHacrlong] = ACTIONS(12397), + [anon_sym_BSLASHAcrlong] = ACTIONS(12397), + [anon_sym_BSLASHACRlong] = ACTIONS(12397), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12397), + [anon_sym_BSLASHacrfull] = ACTIONS(12397), + [anon_sym_BSLASHAcrfull] = ACTIONS(12397), + [anon_sym_BSLASHACRfull] = ACTIONS(12397), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12397), + [anon_sym_BSLASHacs] = ACTIONS(12397), + [anon_sym_BSLASHAcs] = ACTIONS(12397), + [anon_sym_BSLASHacsp] = ACTIONS(12397), + [anon_sym_BSLASHAcsp] = ACTIONS(12397), + [anon_sym_BSLASHacl] = ACTIONS(12397), + [anon_sym_BSLASHAcl] = ACTIONS(12397), + [anon_sym_BSLASHaclp] = ACTIONS(12397), + [anon_sym_BSLASHAclp] = ACTIONS(12397), + [anon_sym_BSLASHacf] = ACTIONS(12397), + [anon_sym_BSLASHAcf] = ACTIONS(12397), + [anon_sym_BSLASHacfp] = ACTIONS(12397), + [anon_sym_BSLASHAcfp] = ACTIONS(12397), + [anon_sym_BSLASHac] = ACTIONS(12397), + [anon_sym_BSLASHAc] = ACTIONS(12397), + [anon_sym_BSLASHacp] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12397), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12397), + [anon_sym_BSLASHcolor] = ACTIONS(12397), + [anon_sym_BSLASHcolorbox] = ACTIONS(12397), + [anon_sym_BSLASHtextcolor] = ACTIONS(12397), + [anon_sym_BSLASHpagecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12397), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12397), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12397), + }, + [689] = { + [sym_generic_command_name] = ACTIONS(12393), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12393), + [aux_sym_chapter_token1] = ACTIONS(12393), + [aux_sym_section_token1] = ACTIONS(12393), + [aux_sym_subsection_token1] = ACTIONS(12393), + [aux_sym_subsubsection_token1] = ACTIONS(12393), + [aux_sym_paragraph_token1] = ACTIONS(12393), + [aux_sym_subparagraph_token1] = ACTIONS(12393), + [anon_sym_BSLASHitem] = ACTIONS(12393), + [anon_sym_LBRACK] = ACTIONS(12391), + [anon_sym_LBRACE] = ACTIONS(12391), + [anon_sym_LPAREN] = ACTIONS(12391), + [anon_sym_COMMA] = ACTIONS(12391), + [anon_sym_EQ] = ACTIONS(12391), + [sym_word] = ACTIONS(12391), + [sym_param] = ACTIONS(12391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12391), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12391), + [anon_sym_DOLLAR] = ACTIONS(12393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12391), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12391), + [anon_sym_BSLASHbegin] = ACTIONS(12393), + [anon_sym_BSLASHcaption] = ACTIONS(12393), + [anon_sym_BSLASHcite] = ACTIONS(12393), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCite] = ACTIONS(12393), + [anon_sym_BSLASHnocite] = ACTIONS(12393), + [anon_sym_BSLASHcitet] = ACTIONS(12393), + [anon_sym_BSLASHcitep] = ACTIONS(12393), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteauthor] = ACTIONS(12393), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12393), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitetitle] = ACTIONS(12393), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteyear] = ACTIONS(12393), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitedate] = ACTIONS(12393), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteurl] = ACTIONS(12393), + [anon_sym_BSLASHfullcite] = ACTIONS(12393), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12393), + [anon_sym_BSLASHcitealt] = ACTIONS(12393), + [anon_sym_BSLASHcitealp] = ACTIONS(12393), + [anon_sym_BSLASHcitetext] = ACTIONS(12393), + [anon_sym_BSLASHparencite] = ACTIONS(12393), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHParencite] = ACTIONS(12393), + [anon_sym_BSLASHfootcite] = ACTIONS(12393), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12393), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12393), + [anon_sym_BSLASHtextcite] = ACTIONS(12393), + [anon_sym_BSLASHTextcite] = ACTIONS(12393), + [anon_sym_BSLASHsmartcite] = ACTIONS(12393), + [anon_sym_BSLASHSmartcite] = ACTIONS(12393), + [anon_sym_BSLASHsupercite] = ACTIONS(12393), + [anon_sym_BSLASHautocite] = ACTIONS(12393), + [anon_sym_BSLASHAutocite] = ACTIONS(12393), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHvolcite] = ACTIONS(12393), + [anon_sym_BSLASHVolcite] = ACTIONS(12393), + [anon_sym_BSLASHpvolcite] = ACTIONS(12393), + [anon_sym_BSLASHPvolcite] = ACTIONS(12393), + [anon_sym_BSLASHfvolcite] = ACTIONS(12393), + [anon_sym_BSLASHftvolcite] = ACTIONS(12393), + [anon_sym_BSLASHsvolcite] = ACTIONS(12393), + [anon_sym_BSLASHSvolcite] = ACTIONS(12393), + [anon_sym_BSLASHtvolcite] = ACTIONS(12393), + [anon_sym_BSLASHTvolcite] = ACTIONS(12393), + [anon_sym_BSLASHavolcite] = ACTIONS(12393), + [anon_sym_BSLASHAvolcite] = ACTIONS(12393), + [anon_sym_BSLASHnotecite] = ACTIONS(12393), + [anon_sym_BSLASHpnotecite] = ACTIONS(12393), + [anon_sym_BSLASHPnotecite] = ACTIONS(12393), + [anon_sym_BSLASHfnotecite] = ACTIONS(12393), + [anon_sym_BSLASHusepackage] = ACTIONS(12393), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12393), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12393), + [anon_sym_BSLASHinclude] = ACTIONS(12393), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12393), + [anon_sym_BSLASHinput] = ACTIONS(12393), + [anon_sym_BSLASHsubfile] = ACTIONS(12393), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12393), + [anon_sym_BSLASHbibliography] = ACTIONS(12393), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12393), + [anon_sym_BSLASHincludesvg] = ACTIONS(12393), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12393), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12393), + [anon_sym_BSLASHimport] = ACTIONS(12393), + [anon_sym_BSLASHsubimport] = ACTIONS(12393), + [anon_sym_BSLASHinputfrom] = ACTIONS(12393), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12393), + [anon_sym_BSLASHincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHlabel] = ACTIONS(12393), + [anon_sym_BSLASHref] = ACTIONS(12393), + [anon_sym_BSLASHvref] = ACTIONS(12393), + [anon_sym_BSLASHVref] = ACTIONS(12393), + [anon_sym_BSLASHautoref] = ACTIONS(12393), + [anon_sym_BSLASHpageref] = ACTIONS(12393), + [anon_sym_BSLASHcref] = ACTIONS(12393), + [anon_sym_BSLASHCref] = ACTIONS(12393), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnameCref] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHlabelcref] = ACTIONS(12393), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12393), + [anon_sym_BSLASHeqref] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange] = ACTIONS(12393), + [anon_sym_BSLASHCrefrange] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewlabel] = ACTIONS(12393), + [anon_sym_BSLASHnewcommand] = ACTIONS(12393), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12393), + [anon_sym_BSLASHgls] = ACTIONS(12393), + [anon_sym_BSLASHGls] = ACTIONS(12393), + [anon_sym_BSLASHGLS] = ACTIONS(12393), + [anon_sym_BSLASHglspl] = ACTIONS(12393), + [anon_sym_BSLASHGlspl] = ACTIONS(12393), + [anon_sym_BSLASHGLSpl] = ACTIONS(12393), + [anon_sym_BSLASHglsdisp] = ACTIONS(12393), + [anon_sym_BSLASHglslink] = ACTIONS(12393), + [anon_sym_BSLASHglstext] = ACTIONS(12393), + [anon_sym_BSLASHGlstext] = ACTIONS(12393), + [anon_sym_BSLASHGLStext] = ACTIONS(12393), + [anon_sym_BSLASHglsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12393), + [anon_sym_BSLASHglsplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSplural] = ACTIONS(12393), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHglsname] = ACTIONS(12393), + [anon_sym_BSLASHGlsname] = ACTIONS(12393), + [anon_sym_BSLASHGLSname] = ACTIONS(12393), + [anon_sym_BSLASHglssymbol] = ACTIONS(12393), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12393), + [anon_sym_BSLASHglsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12393), + [anon_sym_BSLASHglsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12393), + [anon_sym_BSLASHglsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12393), + [anon_sym_BSLASHglsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12393), + [anon_sym_BSLASHglsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12393), + [anon_sym_BSLASHnewacronym] = ACTIONS(12393), + [anon_sym_BSLASHacrshort] = ACTIONS(12393), + [anon_sym_BSLASHAcrshort] = ACTIONS(12393), + [anon_sym_BSLASHACRshort] = ACTIONS(12393), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12393), + [anon_sym_BSLASHacrlong] = ACTIONS(12393), + [anon_sym_BSLASHAcrlong] = ACTIONS(12393), + [anon_sym_BSLASHACRlong] = ACTIONS(12393), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12393), + [anon_sym_BSLASHacrfull] = ACTIONS(12393), + [anon_sym_BSLASHAcrfull] = ACTIONS(12393), + [anon_sym_BSLASHACRfull] = ACTIONS(12393), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12393), + [anon_sym_BSLASHacs] = ACTIONS(12393), + [anon_sym_BSLASHAcs] = ACTIONS(12393), + [anon_sym_BSLASHacsp] = ACTIONS(12393), + [anon_sym_BSLASHAcsp] = ACTIONS(12393), + [anon_sym_BSLASHacl] = ACTIONS(12393), + [anon_sym_BSLASHAcl] = ACTIONS(12393), + [anon_sym_BSLASHaclp] = ACTIONS(12393), + [anon_sym_BSLASHAclp] = ACTIONS(12393), + [anon_sym_BSLASHacf] = ACTIONS(12393), + [anon_sym_BSLASHAcf] = ACTIONS(12393), + [anon_sym_BSLASHacfp] = ACTIONS(12393), + [anon_sym_BSLASHAcfp] = ACTIONS(12393), + [anon_sym_BSLASHac] = ACTIONS(12393), + [anon_sym_BSLASHAc] = ACTIONS(12393), + [anon_sym_BSLASHacp] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12393), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12393), + [anon_sym_BSLASHcolor] = ACTIONS(12393), + [anon_sym_BSLASHcolorbox] = ACTIONS(12393), + [anon_sym_BSLASHtextcolor] = ACTIONS(12393), + [anon_sym_BSLASHpagecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12393), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12393), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12393), + }, + [690] = { + [sym_generic_command_name] = ACTIONS(12381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12381), + [aux_sym_chapter_token1] = ACTIONS(12381), + [aux_sym_section_token1] = ACTIONS(12381), + [aux_sym_subsection_token1] = ACTIONS(12381), + [aux_sym_subsubsection_token1] = ACTIONS(12381), + [aux_sym_paragraph_token1] = ACTIONS(12381), + [aux_sym_subparagraph_token1] = ACTIONS(12381), + [anon_sym_BSLASHitem] = ACTIONS(12381), + [anon_sym_LBRACK] = ACTIONS(12379), + [anon_sym_LBRACE] = ACTIONS(12379), + [anon_sym_LPAREN] = ACTIONS(12379), + [anon_sym_COMMA] = ACTIONS(12379), + [anon_sym_EQ] = ACTIONS(12379), + [sym_word] = ACTIONS(12379), + [sym_param] = ACTIONS(12379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12379), + [anon_sym_DOLLAR] = ACTIONS(12381), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12379), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12379), + [anon_sym_BSLASHbegin] = ACTIONS(12381), + [anon_sym_BSLASHcaption] = ACTIONS(12381), + [anon_sym_BSLASHcite] = ACTIONS(12381), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCite] = ACTIONS(12381), + [anon_sym_BSLASHnocite] = ACTIONS(12381), + [anon_sym_BSLASHcitet] = ACTIONS(12381), + [anon_sym_BSLASHcitep] = ACTIONS(12381), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteauthor] = ACTIONS(12381), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12381), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitetitle] = ACTIONS(12381), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteyear] = ACTIONS(12381), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitedate] = ACTIONS(12381), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteurl] = ACTIONS(12381), + [anon_sym_BSLASHfullcite] = ACTIONS(12381), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12381), + [anon_sym_BSLASHcitealt] = ACTIONS(12381), + [anon_sym_BSLASHcitealp] = ACTIONS(12381), + [anon_sym_BSLASHcitetext] = ACTIONS(12381), + [anon_sym_BSLASHparencite] = ACTIONS(12381), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHParencite] = ACTIONS(12381), + [anon_sym_BSLASHfootcite] = ACTIONS(12381), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12381), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12381), + [anon_sym_BSLASHtextcite] = ACTIONS(12381), + [anon_sym_BSLASHTextcite] = ACTIONS(12381), + [anon_sym_BSLASHsmartcite] = ACTIONS(12381), + [anon_sym_BSLASHSmartcite] = ACTIONS(12381), + [anon_sym_BSLASHsupercite] = ACTIONS(12381), + [anon_sym_BSLASHautocite] = ACTIONS(12381), + [anon_sym_BSLASHAutocite] = ACTIONS(12381), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHvolcite] = ACTIONS(12381), + [anon_sym_BSLASHVolcite] = ACTIONS(12381), + [anon_sym_BSLASHpvolcite] = ACTIONS(12381), + [anon_sym_BSLASHPvolcite] = ACTIONS(12381), + [anon_sym_BSLASHfvolcite] = ACTIONS(12381), + [anon_sym_BSLASHftvolcite] = ACTIONS(12381), + [anon_sym_BSLASHsvolcite] = ACTIONS(12381), + [anon_sym_BSLASHSvolcite] = ACTIONS(12381), + [anon_sym_BSLASHtvolcite] = ACTIONS(12381), + [anon_sym_BSLASHTvolcite] = ACTIONS(12381), + [anon_sym_BSLASHavolcite] = ACTIONS(12381), + [anon_sym_BSLASHAvolcite] = ACTIONS(12381), + [anon_sym_BSLASHnotecite] = ACTIONS(12381), + [anon_sym_BSLASHpnotecite] = ACTIONS(12381), + [anon_sym_BSLASHPnotecite] = ACTIONS(12381), + [anon_sym_BSLASHfnotecite] = ACTIONS(12381), + [anon_sym_BSLASHusepackage] = ACTIONS(12381), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12381), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12381), + [anon_sym_BSLASHinclude] = ACTIONS(12381), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12381), + [anon_sym_BSLASHinput] = ACTIONS(12381), + [anon_sym_BSLASHsubfile] = ACTIONS(12381), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12381), + [anon_sym_BSLASHbibliography] = ACTIONS(12381), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12381), + [anon_sym_BSLASHincludesvg] = ACTIONS(12381), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12381), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12381), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12381), + [anon_sym_BSLASHimport] = ACTIONS(12381), + [anon_sym_BSLASHsubimport] = ACTIONS(12381), + [anon_sym_BSLASHinputfrom] = ACTIONS(12381), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12381), + [anon_sym_BSLASHincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHlabel] = ACTIONS(12381), + [anon_sym_BSLASHref] = ACTIONS(12381), + [anon_sym_BSLASHvref] = ACTIONS(12381), + [anon_sym_BSLASHVref] = ACTIONS(12381), + [anon_sym_BSLASHautoref] = ACTIONS(12381), + [anon_sym_BSLASHpageref] = ACTIONS(12381), + [anon_sym_BSLASHcref] = ACTIONS(12381), + [anon_sym_BSLASHCref] = ACTIONS(12381), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnameCref] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHlabelcref] = ACTIONS(12381), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12381), + [anon_sym_BSLASHeqref] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange] = ACTIONS(12381), + [anon_sym_BSLASHCrefrange] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewlabel] = ACTIONS(12381), + [anon_sym_BSLASHnewcommand] = ACTIONS(12381), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12381), + [anon_sym_BSLASHgls] = ACTIONS(12381), + [anon_sym_BSLASHGls] = ACTIONS(12381), + [anon_sym_BSLASHGLS] = ACTIONS(12381), + [anon_sym_BSLASHglspl] = ACTIONS(12381), + [anon_sym_BSLASHGlspl] = ACTIONS(12381), + [anon_sym_BSLASHGLSpl] = ACTIONS(12381), + [anon_sym_BSLASHglsdisp] = ACTIONS(12381), + [anon_sym_BSLASHglslink] = ACTIONS(12381), + [anon_sym_BSLASHglstext] = ACTIONS(12381), + [anon_sym_BSLASHGlstext] = ACTIONS(12381), + [anon_sym_BSLASHGLStext] = ACTIONS(12381), + [anon_sym_BSLASHglsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12381), + [anon_sym_BSLASHglsplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSplural] = ACTIONS(12381), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHglsname] = ACTIONS(12381), + [anon_sym_BSLASHGlsname] = ACTIONS(12381), + [anon_sym_BSLASHGLSname] = ACTIONS(12381), + [anon_sym_BSLASHglssymbol] = ACTIONS(12381), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12381), + [anon_sym_BSLASHglsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12381), + [anon_sym_BSLASHglsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12381), + [anon_sym_BSLASHglsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12381), + [anon_sym_BSLASHglsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12381), + [anon_sym_BSLASHglsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12381), + [anon_sym_BSLASHnewacronym] = ACTIONS(12381), + [anon_sym_BSLASHacrshort] = ACTIONS(12381), + [anon_sym_BSLASHAcrshort] = ACTIONS(12381), + [anon_sym_BSLASHACRshort] = ACTIONS(12381), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12381), + [anon_sym_BSLASHacrlong] = ACTIONS(12381), + [anon_sym_BSLASHAcrlong] = ACTIONS(12381), + [anon_sym_BSLASHACRlong] = ACTIONS(12381), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12381), + [anon_sym_BSLASHacrfull] = ACTIONS(12381), + [anon_sym_BSLASHAcrfull] = ACTIONS(12381), + [anon_sym_BSLASHACRfull] = ACTIONS(12381), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12381), + [anon_sym_BSLASHacs] = ACTIONS(12381), + [anon_sym_BSLASHAcs] = ACTIONS(12381), + [anon_sym_BSLASHacsp] = ACTIONS(12381), + [anon_sym_BSLASHAcsp] = ACTIONS(12381), + [anon_sym_BSLASHacl] = ACTIONS(12381), + [anon_sym_BSLASHAcl] = ACTIONS(12381), + [anon_sym_BSLASHaclp] = ACTIONS(12381), + [anon_sym_BSLASHAclp] = ACTIONS(12381), + [anon_sym_BSLASHacf] = ACTIONS(12381), + [anon_sym_BSLASHAcf] = ACTIONS(12381), + [anon_sym_BSLASHacfp] = ACTIONS(12381), + [anon_sym_BSLASHAcfp] = ACTIONS(12381), + [anon_sym_BSLASHac] = ACTIONS(12381), + [anon_sym_BSLASHAc] = ACTIONS(12381), + [anon_sym_BSLASHacp] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12381), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12381), + [anon_sym_BSLASHcolor] = ACTIONS(12381), + [anon_sym_BSLASHcolorbox] = ACTIONS(12381), + [anon_sym_BSLASHtextcolor] = ACTIONS(12381), + [anon_sym_BSLASHpagecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12381), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12381), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12381), + }, + [691] = { + [sym_generic_command_name] = ACTIONS(12377), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12377), + [aux_sym_chapter_token1] = ACTIONS(12377), + [aux_sym_section_token1] = ACTIONS(12377), + [aux_sym_subsection_token1] = ACTIONS(12377), + [aux_sym_subsubsection_token1] = ACTIONS(12377), + [aux_sym_paragraph_token1] = ACTIONS(12377), + [aux_sym_subparagraph_token1] = ACTIONS(12377), + [anon_sym_BSLASHitem] = ACTIONS(12377), + [anon_sym_LBRACK] = ACTIONS(12375), + [anon_sym_LBRACE] = ACTIONS(12375), + [anon_sym_LPAREN] = ACTIONS(12375), + [anon_sym_COMMA] = ACTIONS(12375), + [anon_sym_EQ] = ACTIONS(12375), + [sym_word] = ACTIONS(12375), + [sym_param] = ACTIONS(12375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12375), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12375), + [anon_sym_DOLLAR] = ACTIONS(12377), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12375), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12375), + [anon_sym_BSLASHbegin] = ACTIONS(12377), + [anon_sym_BSLASHcaption] = ACTIONS(12377), + [anon_sym_BSLASHcite] = ACTIONS(12377), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCite] = ACTIONS(12377), + [anon_sym_BSLASHnocite] = ACTIONS(12377), + [anon_sym_BSLASHcitet] = ACTIONS(12377), + [anon_sym_BSLASHcitep] = ACTIONS(12377), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteauthor] = ACTIONS(12377), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12377), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitetitle] = ACTIONS(12377), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteyear] = ACTIONS(12377), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitedate] = ACTIONS(12377), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteurl] = ACTIONS(12377), + [anon_sym_BSLASHfullcite] = ACTIONS(12377), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12377), + [anon_sym_BSLASHcitealt] = ACTIONS(12377), + [anon_sym_BSLASHcitealp] = ACTIONS(12377), + [anon_sym_BSLASHcitetext] = ACTIONS(12377), + [anon_sym_BSLASHparencite] = ACTIONS(12377), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHParencite] = ACTIONS(12377), + [anon_sym_BSLASHfootcite] = ACTIONS(12377), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12377), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12377), + [anon_sym_BSLASHtextcite] = ACTIONS(12377), + [anon_sym_BSLASHTextcite] = ACTIONS(12377), + [anon_sym_BSLASHsmartcite] = ACTIONS(12377), + [anon_sym_BSLASHSmartcite] = ACTIONS(12377), + [anon_sym_BSLASHsupercite] = ACTIONS(12377), + [anon_sym_BSLASHautocite] = ACTIONS(12377), + [anon_sym_BSLASHAutocite] = ACTIONS(12377), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHvolcite] = ACTIONS(12377), + [anon_sym_BSLASHVolcite] = ACTIONS(12377), + [anon_sym_BSLASHpvolcite] = ACTIONS(12377), + [anon_sym_BSLASHPvolcite] = ACTIONS(12377), + [anon_sym_BSLASHfvolcite] = ACTIONS(12377), + [anon_sym_BSLASHftvolcite] = ACTIONS(12377), + [anon_sym_BSLASHsvolcite] = ACTIONS(12377), + [anon_sym_BSLASHSvolcite] = ACTIONS(12377), + [anon_sym_BSLASHtvolcite] = ACTIONS(12377), + [anon_sym_BSLASHTvolcite] = ACTIONS(12377), + [anon_sym_BSLASHavolcite] = ACTIONS(12377), + [anon_sym_BSLASHAvolcite] = ACTIONS(12377), + [anon_sym_BSLASHnotecite] = ACTIONS(12377), + [anon_sym_BSLASHpnotecite] = ACTIONS(12377), + [anon_sym_BSLASHPnotecite] = ACTIONS(12377), + [anon_sym_BSLASHfnotecite] = ACTIONS(12377), + [anon_sym_BSLASHusepackage] = ACTIONS(12377), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12377), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12377), + [anon_sym_BSLASHinclude] = ACTIONS(12377), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12377), + [anon_sym_BSLASHinput] = ACTIONS(12377), + [anon_sym_BSLASHsubfile] = ACTIONS(12377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12377), + [anon_sym_BSLASHbibliography] = ACTIONS(12377), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12377), + [anon_sym_BSLASHincludesvg] = ACTIONS(12377), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12377), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12377), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12377), + [anon_sym_BSLASHimport] = ACTIONS(12377), + [anon_sym_BSLASHsubimport] = ACTIONS(12377), + [anon_sym_BSLASHinputfrom] = ACTIONS(12377), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12377), + [anon_sym_BSLASHincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHlabel] = ACTIONS(12377), + [anon_sym_BSLASHref] = ACTIONS(12377), + [anon_sym_BSLASHvref] = ACTIONS(12377), + [anon_sym_BSLASHVref] = ACTIONS(12377), + [anon_sym_BSLASHautoref] = ACTIONS(12377), + [anon_sym_BSLASHpageref] = ACTIONS(12377), + [anon_sym_BSLASHcref] = ACTIONS(12377), + [anon_sym_BSLASHCref] = ACTIONS(12377), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnameCref] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHlabelcref] = ACTIONS(12377), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12377), + [anon_sym_BSLASHeqref] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange] = ACTIONS(12377), + [anon_sym_BSLASHCrefrange] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewlabel] = ACTIONS(12377), + [anon_sym_BSLASHnewcommand] = ACTIONS(12377), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12377), + [anon_sym_BSLASHgls] = ACTIONS(12377), + [anon_sym_BSLASHGls] = ACTIONS(12377), + [anon_sym_BSLASHGLS] = ACTIONS(12377), + [anon_sym_BSLASHglspl] = ACTIONS(12377), + [anon_sym_BSLASHGlspl] = ACTIONS(12377), + [anon_sym_BSLASHGLSpl] = ACTIONS(12377), + [anon_sym_BSLASHglsdisp] = ACTIONS(12377), + [anon_sym_BSLASHglslink] = ACTIONS(12377), + [anon_sym_BSLASHglstext] = ACTIONS(12377), + [anon_sym_BSLASHGlstext] = ACTIONS(12377), + [anon_sym_BSLASHGLStext] = ACTIONS(12377), + [anon_sym_BSLASHglsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12377), + [anon_sym_BSLASHglsplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSplural] = ACTIONS(12377), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHglsname] = ACTIONS(12377), + [anon_sym_BSLASHGlsname] = ACTIONS(12377), + [anon_sym_BSLASHGLSname] = ACTIONS(12377), + [anon_sym_BSLASHglssymbol] = ACTIONS(12377), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12377), + [anon_sym_BSLASHglsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12377), + [anon_sym_BSLASHglsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12377), + [anon_sym_BSLASHglsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12377), + [anon_sym_BSLASHglsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12377), + [anon_sym_BSLASHglsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12377), + [anon_sym_BSLASHnewacronym] = ACTIONS(12377), + [anon_sym_BSLASHacrshort] = ACTIONS(12377), + [anon_sym_BSLASHAcrshort] = ACTIONS(12377), + [anon_sym_BSLASHACRshort] = ACTIONS(12377), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12377), + [anon_sym_BSLASHacrlong] = ACTIONS(12377), + [anon_sym_BSLASHAcrlong] = ACTIONS(12377), + [anon_sym_BSLASHACRlong] = ACTIONS(12377), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12377), + [anon_sym_BSLASHacrfull] = ACTIONS(12377), + [anon_sym_BSLASHAcrfull] = ACTIONS(12377), + [anon_sym_BSLASHACRfull] = ACTIONS(12377), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12377), + [anon_sym_BSLASHacs] = ACTIONS(12377), + [anon_sym_BSLASHAcs] = ACTIONS(12377), + [anon_sym_BSLASHacsp] = ACTIONS(12377), + [anon_sym_BSLASHAcsp] = ACTIONS(12377), + [anon_sym_BSLASHacl] = ACTIONS(12377), + [anon_sym_BSLASHAcl] = ACTIONS(12377), + [anon_sym_BSLASHaclp] = ACTIONS(12377), + [anon_sym_BSLASHAclp] = ACTIONS(12377), + [anon_sym_BSLASHacf] = ACTIONS(12377), + [anon_sym_BSLASHAcf] = ACTIONS(12377), + [anon_sym_BSLASHacfp] = ACTIONS(12377), + [anon_sym_BSLASHAcfp] = ACTIONS(12377), + [anon_sym_BSLASHac] = ACTIONS(12377), + [anon_sym_BSLASHAc] = ACTIONS(12377), + [anon_sym_BSLASHacp] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12377), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12377), + [anon_sym_BSLASHcolor] = ACTIONS(12377), + [anon_sym_BSLASHcolorbox] = ACTIONS(12377), + [anon_sym_BSLASHtextcolor] = ACTIONS(12377), + [anon_sym_BSLASHpagecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12377), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12377), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12377), + }, + [692] = { + [sym_generic_command_name] = ACTIONS(12373), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12373), + [aux_sym_chapter_token1] = ACTIONS(12373), + [aux_sym_section_token1] = ACTIONS(12373), + [aux_sym_subsection_token1] = ACTIONS(12373), + [aux_sym_subsubsection_token1] = ACTIONS(12373), + [aux_sym_paragraph_token1] = ACTIONS(12373), + [aux_sym_subparagraph_token1] = ACTIONS(12373), + [anon_sym_BSLASHitem] = ACTIONS(12373), + [anon_sym_LBRACK] = ACTIONS(12371), + [anon_sym_LBRACE] = ACTIONS(12371), + [anon_sym_LPAREN] = ACTIONS(12371), + [anon_sym_COMMA] = ACTIONS(12371), + [anon_sym_EQ] = ACTIONS(12371), + [sym_word] = ACTIONS(12371), + [sym_param] = ACTIONS(12371), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12371), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12371), + [anon_sym_DOLLAR] = ACTIONS(12373), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12371), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12371), + [anon_sym_BSLASHbegin] = ACTIONS(12373), + [anon_sym_BSLASHcaption] = ACTIONS(12373), + [anon_sym_BSLASHcite] = ACTIONS(12373), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCite] = ACTIONS(12373), + [anon_sym_BSLASHnocite] = ACTIONS(12373), + [anon_sym_BSLASHcitet] = ACTIONS(12373), + [anon_sym_BSLASHcitep] = ACTIONS(12373), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteauthor] = ACTIONS(12373), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12373), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitetitle] = ACTIONS(12373), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteyear] = ACTIONS(12373), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitedate] = ACTIONS(12373), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteurl] = ACTIONS(12373), + [anon_sym_BSLASHfullcite] = ACTIONS(12373), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12373), + [anon_sym_BSLASHcitealt] = ACTIONS(12373), + [anon_sym_BSLASHcitealp] = ACTIONS(12373), + [anon_sym_BSLASHcitetext] = ACTIONS(12373), + [anon_sym_BSLASHparencite] = ACTIONS(12373), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHParencite] = ACTIONS(12373), + [anon_sym_BSLASHfootcite] = ACTIONS(12373), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12373), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12373), + [anon_sym_BSLASHtextcite] = ACTIONS(12373), + [anon_sym_BSLASHTextcite] = ACTIONS(12373), + [anon_sym_BSLASHsmartcite] = ACTIONS(12373), + [anon_sym_BSLASHSmartcite] = ACTIONS(12373), + [anon_sym_BSLASHsupercite] = ACTIONS(12373), + [anon_sym_BSLASHautocite] = ACTIONS(12373), + [anon_sym_BSLASHAutocite] = ACTIONS(12373), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHvolcite] = ACTIONS(12373), + [anon_sym_BSLASHVolcite] = ACTIONS(12373), + [anon_sym_BSLASHpvolcite] = ACTIONS(12373), + [anon_sym_BSLASHPvolcite] = ACTIONS(12373), + [anon_sym_BSLASHfvolcite] = ACTIONS(12373), + [anon_sym_BSLASHftvolcite] = ACTIONS(12373), + [anon_sym_BSLASHsvolcite] = ACTIONS(12373), + [anon_sym_BSLASHSvolcite] = ACTIONS(12373), + [anon_sym_BSLASHtvolcite] = ACTIONS(12373), + [anon_sym_BSLASHTvolcite] = ACTIONS(12373), + [anon_sym_BSLASHavolcite] = ACTIONS(12373), + [anon_sym_BSLASHAvolcite] = ACTIONS(12373), + [anon_sym_BSLASHnotecite] = ACTIONS(12373), + [anon_sym_BSLASHpnotecite] = ACTIONS(12373), + [anon_sym_BSLASHPnotecite] = ACTIONS(12373), + [anon_sym_BSLASHfnotecite] = ACTIONS(12373), + [anon_sym_BSLASHusepackage] = ACTIONS(12373), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12373), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12373), + [anon_sym_BSLASHinclude] = ACTIONS(12373), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12373), + [anon_sym_BSLASHinput] = ACTIONS(12373), + [anon_sym_BSLASHsubfile] = ACTIONS(12373), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12373), + [anon_sym_BSLASHbibliography] = ACTIONS(12373), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12373), + [anon_sym_BSLASHincludesvg] = ACTIONS(12373), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12373), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12373), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12373), + [anon_sym_BSLASHimport] = ACTIONS(12373), + [anon_sym_BSLASHsubimport] = ACTIONS(12373), + [anon_sym_BSLASHinputfrom] = ACTIONS(12373), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12373), + [anon_sym_BSLASHincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHlabel] = ACTIONS(12373), + [anon_sym_BSLASHref] = ACTIONS(12373), + [anon_sym_BSLASHvref] = ACTIONS(12373), + [anon_sym_BSLASHVref] = ACTIONS(12373), + [anon_sym_BSLASHautoref] = ACTIONS(12373), + [anon_sym_BSLASHpageref] = ACTIONS(12373), + [anon_sym_BSLASHcref] = ACTIONS(12373), + [anon_sym_BSLASHCref] = ACTIONS(12373), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnameCref] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHlabelcref] = ACTIONS(12373), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12373), + [anon_sym_BSLASHeqref] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange] = ACTIONS(12373), + [anon_sym_BSLASHCrefrange] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewlabel] = ACTIONS(12373), + [anon_sym_BSLASHnewcommand] = ACTIONS(12373), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12373), + [anon_sym_BSLASHgls] = ACTIONS(12373), + [anon_sym_BSLASHGls] = ACTIONS(12373), + [anon_sym_BSLASHGLS] = ACTIONS(12373), + [anon_sym_BSLASHglspl] = ACTIONS(12373), + [anon_sym_BSLASHGlspl] = ACTIONS(12373), + [anon_sym_BSLASHGLSpl] = ACTIONS(12373), + [anon_sym_BSLASHglsdisp] = ACTIONS(12373), + [anon_sym_BSLASHglslink] = ACTIONS(12373), + [anon_sym_BSLASHglstext] = ACTIONS(12373), + [anon_sym_BSLASHGlstext] = ACTIONS(12373), + [anon_sym_BSLASHGLStext] = ACTIONS(12373), + [anon_sym_BSLASHglsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12373), + [anon_sym_BSLASHglsplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSplural] = ACTIONS(12373), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHglsname] = ACTIONS(12373), + [anon_sym_BSLASHGlsname] = ACTIONS(12373), + [anon_sym_BSLASHGLSname] = ACTIONS(12373), + [anon_sym_BSLASHglssymbol] = ACTIONS(12373), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12373), + [anon_sym_BSLASHglsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12373), + [anon_sym_BSLASHglsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12373), + [anon_sym_BSLASHglsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12373), + [anon_sym_BSLASHglsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12373), + [anon_sym_BSLASHglsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12373), + [anon_sym_BSLASHnewacronym] = ACTIONS(12373), + [anon_sym_BSLASHacrshort] = ACTIONS(12373), + [anon_sym_BSLASHAcrshort] = ACTIONS(12373), + [anon_sym_BSLASHACRshort] = ACTIONS(12373), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12373), + [anon_sym_BSLASHacrlong] = ACTIONS(12373), + [anon_sym_BSLASHAcrlong] = ACTIONS(12373), + [anon_sym_BSLASHACRlong] = ACTIONS(12373), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12373), + [anon_sym_BSLASHacrfull] = ACTIONS(12373), + [anon_sym_BSLASHAcrfull] = ACTIONS(12373), + [anon_sym_BSLASHACRfull] = ACTIONS(12373), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12373), + [anon_sym_BSLASHacs] = ACTIONS(12373), + [anon_sym_BSLASHAcs] = ACTIONS(12373), + [anon_sym_BSLASHacsp] = ACTIONS(12373), + [anon_sym_BSLASHAcsp] = ACTIONS(12373), + [anon_sym_BSLASHacl] = ACTIONS(12373), + [anon_sym_BSLASHAcl] = ACTIONS(12373), + [anon_sym_BSLASHaclp] = ACTIONS(12373), + [anon_sym_BSLASHAclp] = ACTIONS(12373), + [anon_sym_BSLASHacf] = ACTIONS(12373), + [anon_sym_BSLASHAcf] = ACTIONS(12373), + [anon_sym_BSLASHacfp] = ACTIONS(12373), + [anon_sym_BSLASHAcfp] = ACTIONS(12373), + [anon_sym_BSLASHac] = ACTIONS(12373), + [anon_sym_BSLASHAc] = ACTIONS(12373), + [anon_sym_BSLASHacp] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12373), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12373), + [anon_sym_BSLASHcolor] = ACTIONS(12373), + [anon_sym_BSLASHcolorbox] = ACTIONS(12373), + [anon_sym_BSLASHtextcolor] = ACTIONS(12373), + [anon_sym_BSLASHpagecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12373), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12373), + }, + [693] = { + [sym_generic_command_name] = ACTIONS(12369), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12369), + [aux_sym_chapter_token1] = ACTIONS(12369), + [aux_sym_section_token1] = ACTIONS(12369), + [aux_sym_subsection_token1] = ACTIONS(12369), + [aux_sym_subsubsection_token1] = ACTIONS(12369), + [aux_sym_paragraph_token1] = ACTIONS(12369), + [aux_sym_subparagraph_token1] = ACTIONS(12369), + [anon_sym_BSLASHitem] = ACTIONS(12369), + [anon_sym_LBRACK] = ACTIONS(12367), + [anon_sym_LBRACE] = ACTIONS(12367), + [anon_sym_LPAREN] = ACTIONS(12367), + [anon_sym_COMMA] = ACTIONS(12367), + [anon_sym_EQ] = ACTIONS(12367), + [sym_word] = ACTIONS(12367), + [sym_param] = ACTIONS(12367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12367), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12367), + [anon_sym_DOLLAR] = ACTIONS(12369), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12367), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12367), + [anon_sym_BSLASHbegin] = ACTIONS(12369), + [anon_sym_BSLASHcaption] = ACTIONS(12369), + [anon_sym_BSLASHcite] = ACTIONS(12369), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCite] = ACTIONS(12369), + [anon_sym_BSLASHnocite] = ACTIONS(12369), + [anon_sym_BSLASHcitet] = ACTIONS(12369), + [anon_sym_BSLASHcitep] = ACTIONS(12369), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteauthor] = ACTIONS(12369), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12369), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitetitle] = ACTIONS(12369), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteyear] = ACTIONS(12369), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitedate] = ACTIONS(12369), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteurl] = ACTIONS(12369), + [anon_sym_BSLASHfullcite] = ACTIONS(12369), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12369), + [anon_sym_BSLASHcitealt] = ACTIONS(12369), + [anon_sym_BSLASHcitealp] = ACTIONS(12369), + [anon_sym_BSLASHcitetext] = ACTIONS(12369), + [anon_sym_BSLASHparencite] = ACTIONS(12369), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHParencite] = ACTIONS(12369), + [anon_sym_BSLASHfootcite] = ACTIONS(12369), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12369), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12369), + [anon_sym_BSLASHtextcite] = ACTIONS(12369), + [anon_sym_BSLASHTextcite] = ACTIONS(12369), + [anon_sym_BSLASHsmartcite] = ACTIONS(12369), + [anon_sym_BSLASHSmartcite] = ACTIONS(12369), + [anon_sym_BSLASHsupercite] = ACTIONS(12369), + [anon_sym_BSLASHautocite] = ACTIONS(12369), + [anon_sym_BSLASHAutocite] = ACTIONS(12369), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHvolcite] = ACTIONS(12369), + [anon_sym_BSLASHVolcite] = ACTIONS(12369), + [anon_sym_BSLASHpvolcite] = ACTIONS(12369), + [anon_sym_BSLASHPvolcite] = ACTIONS(12369), + [anon_sym_BSLASHfvolcite] = ACTIONS(12369), + [anon_sym_BSLASHftvolcite] = ACTIONS(12369), + [anon_sym_BSLASHsvolcite] = ACTIONS(12369), + [anon_sym_BSLASHSvolcite] = ACTIONS(12369), + [anon_sym_BSLASHtvolcite] = ACTIONS(12369), + [anon_sym_BSLASHTvolcite] = ACTIONS(12369), + [anon_sym_BSLASHavolcite] = ACTIONS(12369), + [anon_sym_BSLASHAvolcite] = ACTIONS(12369), + [anon_sym_BSLASHnotecite] = ACTIONS(12369), + [anon_sym_BSLASHpnotecite] = ACTIONS(12369), + [anon_sym_BSLASHPnotecite] = ACTIONS(12369), + [anon_sym_BSLASHfnotecite] = ACTIONS(12369), + [anon_sym_BSLASHusepackage] = ACTIONS(12369), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12369), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12369), + [anon_sym_BSLASHinclude] = ACTIONS(12369), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12369), + [anon_sym_BSLASHinput] = ACTIONS(12369), + [anon_sym_BSLASHsubfile] = ACTIONS(12369), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12369), + [anon_sym_BSLASHbibliography] = ACTIONS(12369), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12369), + [anon_sym_BSLASHincludesvg] = ACTIONS(12369), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12369), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12369), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12369), + [anon_sym_BSLASHimport] = ACTIONS(12369), + [anon_sym_BSLASHsubimport] = ACTIONS(12369), + [anon_sym_BSLASHinputfrom] = ACTIONS(12369), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12369), + [anon_sym_BSLASHincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHlabel] = ACTIONS(12369), + [anon_sym_BSLASHref] = ACTIONS(12369), + [anon_sym_BSLASHvref] = ACTIONS(12369), + [anon_sym_BSLASHVref] = ACTIONS(12369), + [anon_sym_BSLASHautoref] = ACTIONS(12369), + [anon_sym_BSLASHpageref] = ACTIONS(12369), + [anon_sym_BSLASHcref] = ACTIONS(12369), + [anon_sym_BSLASHCref] = ACTIONS(12369), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnameCref] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHlabelcref] = ACTIONS(12369), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12369), + [anon_sym_BSLASHeqref] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange] = ACTIONS(12369), + [anon_sym_BSLASHCrefrange] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewlabel] = ACTIONS(12369), + [anon_sym_BSLASHnewcommand] = ACTIONS(12369), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12369), + [anon_sym_BSLASHgls] = ACTIONS(12369), + [anon_sym_BSLASHGls] = ACTIONS(12369), + [anon_sym_BSLASHGLS] = ACTIONS(12369), + [anon_sym_BSLASHglspl] = ACTIONS(12369), + [anon_sym_BSLASHGlspl] = ACTIONS(12369), + [anon_sym_BSLASHGLSpl] = ACTIONS(12369), + [anon_sym_BSLASHglsdisp] = ACTIONS(12369), + [anon_sym_BSLASHglslink] = ACTIONS(12369), + [anon_sym_BSLASHglstext] = ACTIONS(12369), + [anon_sym_BSLASHGlstext] = ACTIONS(12369), + [anon_sym_BSLASHGLStext] = ACTIONS(12369), + [anon_sym_BSLASHglsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12369), + [anon_sym_BSLASHglsplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSplural] = ACTIONS(12369), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHglsname] = ACTIONS(12369), + [anon_sym_BSLASHGlsname] = ACTIONS(12369), + [anon_sym_BSLASHGLSname] = ACTIONS(12369), + [anon_sym_BSLASHglssymbol] = ACTIONS(12369), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12369), + [anon_sym_BSLASHglsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12369), + [anon_sym_BSLASHglsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12369), + [anon_sym_BSLASHglsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12369), + [anon_sym_BSLASHglsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12369), + [anon_sym_BSLASHglsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12369), + [anon_sym_BSLASHnewacronym] = ACTIONS(12369), + [anon_sym_BSLASHacrshort] = ACTIONS(12369), + [anon_sym_BSLASHAcrshort] = ACTIONS(12369), + [anon_sym_BSLASHACRshort] = ACTIONS(12369), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12369), + [anon_sym_BSLASHacrlong] = ACTIONS(12369), + [anon_sym_BSLASHAcrlong] = ACTIONS(12369), + [anon_sym_BSLASHACRlong] = ACTIONS(12369), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12369), + [anon_sym_BSLASHacrfull] = ACTIONS(12369), + [anon_sym_BSLASHAcrfull] = ACTIONS(12369), + [anon_sym_BSLASHACRfull] = ACTIONS(12369), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12369), + [anon_sym_BSLASHacs] = ACTIONS(12369), + [anon_sym_BSLASHAcs] = ACTIONS(12369), + [anon_sym_BSLASHacsp] = ACTIONS(12369), + [anon_sym_BSLASHAcsp] = ACTIONS(12369), + [anon_sym_BSLASHacl] = ACTIONS(12369), + [anon_sym_BSLASHAcl] = ACTIONS(12369), + [anon_sym_BSLASHaclp] = ACTIONS(12369), + [anon_sym_BSLASHAclp] = ACTIONS(12369), + [anon_sym_BSLASHacf] = ACTIONS(12369), + [anon_sym_BSLASHAcf] = ACTIONS(12369), + [anon_sym_BSLASHacfp] = ACTIONS(12369), + [anon_sym_BSLASHAcfp] = ACTIONS(12369), + [anon_sym_BSLASHac] = ACTIONS(12369), + [anon_sym_BSLASHAc] = ACTIONS(12369), + [anon_sym_BSLASHacp] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12369), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12369), + [anon_sym_BSLASHcolor] = ACTIONS(12369), + [anon_sym_BSLASHcolorbox] = ACTIONS(12369), + [anon_sym_BSLASHtextcolor] = ACTIONS(12369), + [anon_sym_BSLASHpagecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12369), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12369), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12369), + }, + [694] = { + [sym_generic_command_name] = ACTIONS(12361), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12361), + [aux_sym_chapter_token1] = ACTIONS(12361), + [aux_sym_section_token1] = ACTIONS(12361), + [aux_sym_subsection_token1] = ACTIONS(12361), + [aux_sym_subsubsection_token1] = ACTIONS(12361), + [aux_sym_paragraph_token1] = ACTIONS(12361), + [aux_sym_subparagraph_token1] = ACTIONS(12361), + [anon_sym_BSLASHitem] = ACTIONS(12361), + [anon_sym_LBRACK] = ACTIONS(12359), + [anon_sym_LBRACE] = ACTIONS(12359), + [anon_sym_LPAREN] = ACTIONS(12359), + [anon_sym_COMMA] = ACTIONS(12359), + [anon_sym_EQ] = ACTIONS(12359), + [sym_word] = ACTIONS(12359), + [sym_param] = ACTIONS(12359), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12359), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12359), + [anon_sym_DOLLAR] = ACTIONS(12361), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12359), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12359), + [anon_sym_BSLASHbegin] = ACTIONS(12361), + [anon_sym_BSLASHcaption] = ACTIONS(12361), + [anon_sym_BSLASHcite] = ACTIONS(12361), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCite] = ACTIONS(12361), + [anon_sym_BSLASHnocite] = ACTIONS(12361), + [anon_sym_BSLASHcitet] = ACTIONS(12361), + [anon_sym_BSLASHcitep] = ACTIONS(12361), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteauthor] = ACTIONS(12361), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12361), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitetitle] = ACTIONS(12361), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteyear] = ACTIONS(12361), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitedate] = ACTIONS(12361), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteurl] = ACTIONS(12361), + [anon_sym_BSLASHfullcite] = ACTIONS(12361), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12361), + [anon_sym_BSLASHcitealt] = ACTIONS(12361), + [anon_sym_BSLASHcitealp] = ACTIONS(12361), + [anon_sym_BSLASHcitetext] = ACTIONS(12361), + [anon_sym_BSLASHparencite] = ACTIONS(12361), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHParencite] = ACTIONS(12361), + [anon_sym_BSLASHfootcite] = ACTIONS(12361), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12361), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12361), + [anon_sym_BSLASHtextcite] = ACTIONS(12361), + [anon_sym_BSLASHTextcite] = ACTIONS(12361), + [anon_sym_BSLASHsmartcite] = ACTIONS(12361), + [anon_sym_BSLASHSmartcite] = ACTIONS(12361), + [anon_sym_BSLASHsupercite] = ACTIONS(12361), + [anon_sym_BSLASHautocite] = ACTIONS(12361), + [anon_sym_BSLASHAutocite] = ACTIONS(12361), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHvolcite] = ACTIONS(12361), + [anon_sym_BSLASHVolcite] = ACTIONS(12361), + [anon_sym_BSLASHpvolcite] = ACTIONS(12361), + [anon_sym_BSLASHPvolcite] = ACTIONS(12361), + [anon_sym_BSLASHfvolcite] = ACTIONS(12361), + [anon_sym_BSLASHftvolcite] = ACTIONS(12361), + [anon_sym_BSLASHsvolcite] = ACTIONS(12361), + [anon_sym_BSLASHSvolcite] = ACTIONS(12361), + [anon_sym_BSLASHtvolcite] = ACTIONS(12361), + [anon_sym_BSLASHTvolcite] = ACTIONS(12361), + [anon_sym_BSLASHavolcite] = ACTIONS(12361), + [anon_sym_BSLASHAvolcite] = ACTIONS(12361), + [anon_sym_BSLASHnotecite] = ACTIONS(12361), + [anon_sym_BSLASHpnotecite] = ACTIONS(12361), + [anon_sym_BSLASHPnotecite] = ACTIONS(12361), + [anon_sym_BSLASHfnotecite] = ACTIONS(12361), + [anon_sym_BSLASHusepackage] = ACTIONS(12361), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12361), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12361), + [anon_sym_BSLASHinclude] = ACTIONS(12361), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12361), + [anon_sym_BSLASHinput] = ACTIONS(12361), + [anon_sym_BSLASHsubfile] = ACTIONS(12361), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12361), + [anon_sym_BSLASHbibliography] = ACTIONS(12361), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12361), + [anon_sym_BSLASHincludesvg] = ACTIONS(12361), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12361), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12361), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12361), + [anon_sym_BSLASHimport] = ACTIONS(12361), + [anon_sym_BSLASHsubimport] = ACTIONS(12361), + [anon_sym_BSLASHinputfrom] = ACTIONS(12361), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12361), + [anon_sym_BSLASHincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHlabel] = ACTIONS(12361), + [anon_sym_BSLASHref] = ACTIONS(12361), + [anon_sym_BSLASHvref] = ACTIONS(12361), + [anon_sym_BSLASHVref] = ACTIONS(12361), + [anon_sym_BSLASHautoref] = ACTIONS(12361), + [anon_sym_BSLASHpageref] = ACTIONS(12361), + [anon_sym_BSLASHcref] = ACTIONS(12361), + [anon_sym_BSLASHCref] = ACTIONS(12361), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnameCref] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHlabelcref] = ACTIONS(12361), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12361), + [anon_sym_BSLASHeqref] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange] = ACTIONS(12361), + [anon_sym_BSLASHCrefrange] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewlabel] = ACTIONS(12361), + [anon_sym_BSLASHnewcommand] = ACTIONS(12361), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12361), + [anon_sym_BSLASHgls] = ACTIONS(12361), + [anon_sym_BSLASHGls] = ACTIONS(12361), + [anon_sym_BSLASHGLS] = ACTIONS(12361), + [anon_sym_BSLASHglspl] = ACTIONS(12361), + [anon_sym_BSLASHGlspl] = ACTIONS(12361), + [anon_sym_BSLASHGLSpl] = ACTIONS(12361), + [anon_sym_BSLASHglsdisp] = ACTIONS(12361), + [anon_sym_BSLASHglslink] = ACTIONS(12361), + [anon_sym_BSLASHglstext] = ACTIONS(12361), + [anon_sym_BSLASHGlstext] = ACTIONS(12361), + [anon_sym_BSLASHGLStext] = ACTIONS(12361), + [anon_sym_BSLASHglsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12361), + [anon_sym_BSLASHglsplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSplural] = ACTIONS(12361), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHglsname] = ACTIONS(12361), + [anon_sym_BSLASHGlsname] = ACTIONS(12361), + [anon_sym_BSLASHGLSname] = ACTIONS(12361), + [anon_sym_BSLASHglssymbol] = ACTIONS(12361), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12361), + [anon_sym_BSLASHglsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12361), + [anon_sym_BSLASHglsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12361), + [anon_sym_BSLASHglsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12361), + [anon_sym_BSLASHglsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12361), + [anon_sym_BSLASHglsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12361), + [anon_sym_BSLASHnewacronym] = ACTIONS(12361), + [anon_sym_BSLASHacrshort] = ACTIONS(12361), + [anon_sym_BSLASHAcrshort] = ACTIONS(12361), + [anon_sym_BSLASHACRshort] = ACTIONS(12361), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12361), + [anon_sym_BSLASHacrlong] = ACTIONS(12361), + [anon_sym_BSLASHAcrlong] = ACTIONS(12361), + [anon_sym_BSLASHACRlong] = ACTIONS(12361), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12361), + [anon_sym_BSLASHacrfull] = ACTIONS(12361), + [anon_sym_BSLASHAcrfull] = ACTIONS(12361), + [anon_sym_BSLASHACRfull] = ACTIONS(12361), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12361), + [anon_sym_BSLASHacs] = ACTIONS(12361), + [anon_sym_BSLASHAcs] = ACTIONS(12361), + [anon_sym_BSLASHacsp] = ACTIONS(12361), + [anon_sym_BSLASHAcsp] = ACTIONS(12361), + [anon_sym_BSLASHacl] = ACTIONS(12361), + [anon_sym_BSLASHAcl] = ACTIONS(12361), + [anon_sym_BSLASHaclp] = ACTIONS(12361), + [anon_sym_BSLASHAclp] = ACTIONS(12361), + [anon_sym_BSLASHacf] = ACTIONS(12361), + [anon_sym_BSLASHAcf] = ACTIONS(12361), + [anon_sym_BSLASHacfp] = ACTIONS(12361), + [anon_sym_BSLASHAcfp] = ACTIONS(12361), + [anon_sym_BSLASHac] = ACTIONS(12361), + [anon_sym_BSLASHAc] = ACTIONS(12361), + [anon_sym_BSLASHacp] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12361), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12361), + [anon_sym_BSLASHcolor] = ACTIONS(12361), + [anon_sym_BSLASHcolorbox] = ACTIONS(12361), + [anon_sym_BSLASHtextcolor] = ACTIONS(12361), + [anon_sym_BSLASHpagecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12361), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12361), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12361), + }, + [695] = { + [sym_generic_command_name] = ACTIONS(12357), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12357), + [aux_sym_chapter_token1] = ACTIONS(12357), + [aux_sym_section_token1] = ACTIONS(12357), + [aux_sym_subsection_token1] = ACTIONS(12357), + [aux_sym_subsubsection_token1] = ACTIONS(12357), + [aux_sym_paragraph_token1] = ACTIONS(12357), + [aux_sym_subparagraph_token1] = ACTIONS(12357), + [anon_sym_BSLASHitem] = ACTIONS(12357), + [anon_sym_LBRACK] = ACTIONS(12355), + [anon_sym_LBRACE] = ACTIONS(12355), + [anon_sym_LPAREN] = ACTIONS(12355), + [anon_sym_COMMA] = ACTIONS(12355), + [anon_sym_EQ] = ACTIONS(12355), + [sym_word] = ACTIONS(12355), + [sym_param] = ACTIONS(12355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12355), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12355), + [anon_sym_DOLLAR] = ACTIONS(12357), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12355), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12355), + [anon_sym_BSLASHbegin] = ACTIONS(12357), + [anon_sym_BSLASHcaption] = ACTIONS(12357), + [anon_sym_BSLASHcite] = ACTIONS(12357), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCite] = ACTIONS(12357), + [anon_sym_BSLASHnocite] = ACTIONS(12357), + [anon_sym_BSLASHcitet] = ACTIONS(12357), + [anon_sym_BSLASHcitep] = ACTIONS(12357), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteauthor] = ACTIONS(12357), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12357), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitetitle] = ACTIONS(12357), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteyear] = ACTIONS(12357), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitedate] = ACTIONS(12357), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteurl] = ACTIONS(12357), + [anon_sym_BSLASHfullcite] = ACTIONS(12357), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12357), + [anon_sym_BSLASHcitealt] = ACTIONS(12357), + [anon_sym_BSLASHcitealp] = ACTIONS(12357), + [anon_sym_BSLASHcitetext] = ACTIONS(12357), + [anon_sym_BSLASHparencite] = ACTIONS(12357), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHParencite] = ACTIONS(12357), + [anon_sym_BSLASHfootcite] = ACTIONS(12357), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12357), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12357), + [anon_sym_BSLASHtextcite] = ACTIONS(12357), + [anon_sym_BSLASHTextcite] = ACTIONS(12357), + [anon_sym_BSLASHsmartcite] = ACTIONS(12357), + [anon_sym_BSLASHSmartcite] = ACTIONS(12357), + [anon_sym_BSLASHsupercite] = ACTIONS(12357), + [anon_sym_BSLASHautocite] = ACTIONS(12357), + [anon_sym_BSLASHAutocite] = ACTIONS(12357), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHvolcite] = ACTIONS(12357), + [anon_sym_BSLASHVolcite] = ACTIONS(12357), + [anon_sym_BSLASHpvolcite] = ACTIONS(12357), + [anon_sym_BSLASHPvolcite] = ACTIONS(12357), + [anon_sym_BSLASHfvolcite] = ACTIONS(12357), + [anon_sym_BSLASHftvolcite] = ACTIONS(12357), + [anon_sym_BSLASHsvolcite] = ACTIONS(12357), + [anon_sym_BSLASHSvolcite] = ACTIONS(12357), + [anon_sym_BSLASHtvolcite] = ACTIONS(12357), + [anon_sym_BSLASHTvolcite] = ACTIONS(12357), + [anon_sym_BSLASHavolcite] = ACTIONS(12357), + [anon_sym_BSLASHAvolcite] = ACTIONS(12357), + [anon_sym_BSLASHnotecite] = ACTIONS(12357), + [anon_sym_BSLASHpnotecite] = ACTIONS(12357), + [anon_sym_BSLASHPnotecite] = ACTIONS(12357), + [anon_sym_BSLASHfnotecite] = ACTIONS(12357), + [anon_sym_BSLASHusepackage] = ACTIONS(12357), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12357), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12357), + [anon_sym_BSLASHinclude] = ACTIONS(12357), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12357), + [anon_sym_BSLASHinput] = ACTIONS(12357), + [anon_sym_BSLASHsubfile] = ACTIONS(12357), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12357), + [anon_sym_BSLASHbibliography] = ACTIONS(12357), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12357), + [anon_sym_BSLASHincludesvg] = ACTIONS(12357), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12357), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12357), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12357), + [anon_sym_BSLASHimport] = ACTIONS(12357), + [anon_sym_BSLASHsubimport] = ACTIONS(12357), + [anon_sym_BSLASHinputfrom] = ACTIONS(12357), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12357), + [anon_sym_BSLASHincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHlabel] = ACTIONS(12357), + [anon_sym_BSLASHref] = ACTIONS(12357), + [anon_sym_BSLASHvref] = ACTIONS(12357), + [anon_sym_BSLASHVref] = ACTIONS(12357), + [anon_sym_BSLASHautoref] = ACTIONS(12357), + [anon_sym_BSLASHpageref] = ACTIONS(12357), + [anon_sym_BSLASHcref] = ACTIONS(12357), + [anon_sym_BSLASHCref] = ACTIONS(12357), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnameCref] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHlabelcref] = ACTIONS(12357), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12357), + [anon_sym_BSLASHeqref] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange] = ACTIONS(12357), + [anon_sym_BSLASHCrefrange] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewlabel] = ACTIONS(12357), + [anon_sym_BSLASHnewcommand] = ACTIONS(12357), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12357), + [anon_sym_BSLASHgls] = ACTIONS(12357), + [anon_sym_BSLASHGls] = ACTIONS(12357), + [anon_sym_BSLASHGLS] = ACTIONS(12357), + [anon_sym_BSLASHglspl] = ACTIONS(12357), + [anon_sym_BSLASHGlspl] = ACTIONS(12357), + [anon_sym_BSLASHGLSpl] = ACTIONS(12357), + [anon_sym_BSLASHglsdisp] = ACTIONS(12357), + [anon_sym_BSLASHglslink] = ACTIONS(12357), + [anon_sym_BSLASHglstext] = ACTIONS(12357), + [anon_sym_BSLASHGlstext] = ACTIONS(12357), + [anon_sym_BSLASHGLStext] = ACTIONS(12357), + [anon_sym_BSLASHglsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12357), + [anon_sym_BSLASHglsplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSplural] = ACTIONS(12357), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHglsname] = ACTIONS(12357), + [anon_sym_BSLASHGlsname] = ACTIONS(12357), + [anon_sym_BSLASHGLSname] = ACTIONS(12357), + [anon_sym_BSLASHglssymbol] = ACTIONS(12357), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12357), + [anon_sym_BSLASHglsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12357), + [anon_sym_BSLASHglsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12357), + [anon_sym_BSLASHglsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12357), + [anon_sym_BSLASHglsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12357), + [anon_sym_BSLASHglsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12357), + [anon_sym_BSLASHnewacronym] = ACTIONS(12357), + [anon_sym_BSLASHacrshort] = ACTIONS(12357), + [anon_sym_BSLASHAcrshort] = ACTIONS(12357), + [anon_sym_BSLASHACRshort] = ACTIONS(12357), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12357), + [anon_sym_BSLASHacrlong] = ACTIONS(12357), + [anon_sym_BSLASHAcrlong] = ACTIONS(12357), + [anon_sym_BSLASHACRlong] = ACTIONS(12357), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12357), + [anon_sym_BSLASHacrfull] = ACTIONS(12357), + [anon_sym_BSLASHAcrfull] = ACTIONS(12357), + [anon_sym_BSLASHACRfull] = ACTIONS(12357), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12357), + [anon_sym_BSLASHacs] = ACTIONS(12357), + [anon_sym_BSLASHAcs] = ACTIONS(12357), + [anon_sym_BSLASHacsp] = ACTIONS(12357), + [anon_sym_BSLASHAcsp] = ACTIONS(12357), + [anon_sym_BSLASHacl] = ACTIONS(12357), + [anon_sym_BSLASHAcl] = ACTIONS(12357), + [anon_sym_BSLASHaclp] = ACTIONS(12357), + [anon_sym_BSLASHAclp] = ACTIONS(12357), + [anon_sym_BSLASHacf] = ACTIONS(12357), + [anon_sym_BSLASHAcf] = ACTIONS(12357), + [anon_sym_BSLASHacfp] = ACTIONS(12357), + [anon_sym_BSLASHAcfp] = ACTIONS(12357), + [anon_sym_BSLASHac] = ACTIONS(12357), + [anon_sym_BSLASHAc] = ACTIONS(12357), + [anon_sym_BSLASHacp] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12357), + [anon_sym_BSLASHcolor] = ACTIONS(12357), + [anon_sym_BSLASHcolorbox] = ACTIONS(12357), + [anon_sym_BSLASHtextcolor] = ACTIONS(12357), + [anon_sym_BSLASHpagecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12357), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12357), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12357), + }, + [696] = { + [sym__text_fragment] = STATE(696), + [aux_sym_text_repeat1] = STATE(696), + [sym_generic_command_name] = ACTIONS(12021), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12021), + [aux_sym_subsubsection_token1] = ACTIONS(12021), + [aux_sym_paragraph_token1] = ACTIONS(12021), + [aux_sym_subparagraph_token1] = ACTIONS(12021), + [anon_sym_BSLASHitem] = ACTIONS(12021), + [anon_sym_LBRACK] = ACTIONS(12019), + [anon_sym_RBRACK] = ACTIONS(12019), + [anon_sym_LBRACE] = ACTIONS(12019), + [anon_sym_RBRACE] = ACTIONS(12019), + [anon_sym_LPAREN] = ACTIONS(12019), + [anon_sym_COMMA] = ACTIONS(12655), + [anon_sym_EQ] = ACTIONS(12655), + [sym_word] = ACTIONS(12655), + [sym_param] = ACTIONS(12019), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12019), + [anon_sym_DOLLAR] = ACTIONS(12021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12019), + [anon_sym_BSLASHbegin] = ACTIONS(12021), + [anon_sym_BSLASHcaption] = ACTIONS(12021), + [anon_sym_BSLASHcite] = ACTIONS(12021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCite] = ACTIONS(12021), + [anon_sym_BSLASHnocite] = ACTIONS(12021), + [anon_sym_BSLASHcitet] = ACTIONS(12021), + [anon_sym_BSLASHcitep] = ACTIONS(12021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteauthor] = ACTIONS(12021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitetitle] = ACTIONS(12021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteyear] = ACTIONS(12021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitedate] = ACTIONS(12021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteurl] = ACTIONS(12021), + [anon_sym_BSLASHfullcite] = ACTIONS(12021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12021), + [anon_sym_BSLASHcitealt] = ACTIONS(12021), + [anon_sym_BSLASHcitealp] = ACTIONS(12021), + [anon_sym_BSLASHcitetext] = ACTIONS(12021), + [anon_sym_BSLASHparencite] = ACTIONS(12021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHParencite] = ACTIONS(12021), + [anon_sym_BSLASHfootcite] = ACTIONS(12021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12021), + [anon_sym_BSLASHtextcite] = ACTIONS(12021), + [anon_sym_BSLASHTextcite] = ACTIONS(12021), + [anon_sym_BSLASHsmartcite] = ACTIONS(12021), + [anon_sym_BSLASHSmartcite] = ACTIONS(12021), + [anon_sym_BSLASHsupercite] = ACTIONS(12021), + [anon_sym_BSLASHautocite] = ACTIONS(12021), + [anon_sym_BSLASHAutocite] = ACTIONS(12021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHvolcite] = ACTIONS(12021), + [anon_sym_BSLASHVolcite] = ACTIONS(12021), + [anon_sym_BSLASHpvolcite] = ACTIONS(12021), + [anon_sym_BSLASHPvolcite] = ACTIONS(12021), + [anon_sym_BSLASHfvolcite] = ACTIONS(12021), + [anon_sym_BSLASHftvolcite] = ACTIONS(12021), + [anon_sym_BSLASHsvolcite] = ACTIONS(12021), + [anon_sym_BSLASHSvolcite] = ACTIONS(12021), + [anon_sym_BSLASHtvolcite] = ACTIONS(12021), + [anon_sym_BSLASHTvolcite] = ACTIONS(12021), + [anon_sym_BSLASHavolcite] = ACTIONS(12021), + [anon_sym_BSLASHAvolcite] = ACTIONS(12021), + [anon_sym_BSLASHnotecite] = ACTIONS(12021), + [anon_sym_BSLASHpnotecite] = ACTIONS(12021), + [anon_sym_BSLASHPnotecite] = ACTIONS(12021), + [anon_sym_BSLASHfnotecite] = ACTIONS(12021), + [anon_sym_BSLASHusepackage] = ACTIONS(12021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12021), + [anon_sym_BSLASHinclude] = ACTIONS(12021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12021), + [anon_sym_BSLASHinput] = ACTIONS(12021), + [anon_sym_BSLASHsubfile] = ACTIONS(12021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12021), + [anon_sym_BSLASHbibliography] = ACTIONS(12021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12021), + [anon_sym_BSLASHincludesvg] = ACTIONS(12021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12021), + [anon_sym_BSLASHimport] = ACTIONS(12021), + [anon_sym_BSLASHsubimport] = ACTIONS(12021), + [anon_sym_BSLASHinputfrom] = ACTIONS(12021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12021), + [anon_sym_BSLASHincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHlabel] = ACTIONS(12021), + [anon_sym_BSLASHref] = ACTIONS(12021), + [anon_sym_BSLASHvref] = ACTIONS(12021), + [anon_sym_BSLASHVref] = ACTIONS(12021), + [anon_sym_BSLASHautoref] = ACTIONS(12021), + [anon_sym_BSLASHpageref] = ACTIONS(12021), + [anon_sym_BSLASHcref] = ACTIONS(12021), + [anon_sym_BSLASHCref] = ACTIONS(12021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnameCref] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHlabelcref] = ACTIONS(12021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12021), + [anon_sym_BSLASHeqref] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange] = ACTIONS(12021), + [anon_sym_BSLASHCrefrange] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewlabel] = ACTIONS(12021), + [anon_sym_BSLASHnewcommand] = ACTIONS(12021), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12021), + [anon_sym_BSLASHgls] = ACTIONS(12021), + [anon_sym_BSLASHGls] = ACTIONS(12021), + [anon_sym_BSLASHGLS] = ACTIONS(12021), + [anon_sym_BSLASHglspl] = ACTIONS(12021), + [anon_sym_BSLASHGlspl] = ACTIONS(12021), + [anon_sym_BSLASHGLSpl] = ACTIONS(12021), + [anon_sym_BSLASHglsdisp] = ACTIONS(12021), + [anon_sym_BSLASHglslink] = ACTIONS(12021), + [anon_sym_BSLASHglstext] = ACTIONS(12021), + [anon_sym_BSLASHGlstext] = ACTIONS(12021), + [anon_sym_BSLASHGLStext] = ACTIONS(12021), + [anon_sym_BSLASHglsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12021), + [anon_sym_BSLASHglsplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSplural] = ACTIONS(12021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHglsname] = ACTIONS(12021), + [anon_sym_BSLASHGlsname] = ACTIONS(12021), + [anon_sym_BSLASHGLSname] = ACTIONS(12021), + [anon_sym_BSLASHglssymbol] = ACTIONS(12021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12021), + [anon_sym_BSLASHglsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12021), + [anon_sym_BSLASHglsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12021), + [anon_sym_BSLASHglsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12021), + [anon_sym_BSLASHglsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12021), + [anon_sym_BSLASHglsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12021), + [anon_sym_BSLASHnewacronym] = ACTIONS(12021), + [anon_sym_BSLASHacrshort] = ACTIONS(12021), + [anon_sym_BSLASHAcrshort] = ACTIONS(12021), + [anon_sym_BSLASHACRshort] = ACTIONS(12021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12021), + [anon_sym_BSLASHacrlong] = ACTIONS(12021), + [anon_sym_BSLASHAcrlong] = ACTIONS(12021), + [anon_sym_BSLASHACRlong] = ACTIONS(12021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12021), + [anon_sym_BSLASHacrfull] = ACTIONS(12021), + [anon_sym_BSLASHAcrfull] = ACTIONS(12021), + [anon_sym_BSLASHACRfull] = ACTIONS(12021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12021), + [anon_sym_BSLASHacs] = ACTIONS(12021), + [anon_sym_BSLASHAcs] = ACTIONS(12021), + [anon_sym_BSLASHacsp] = ACTIONS(12021), + [anon_sym_BSLASHAcsp] = ACTIONS(12021), + [anon_sym_BSLASHacl] = ACTIONS(12021), + [anon_sym_BSLASHAcl] = ACTIONS(12021), + [anon_sym_BSLASHaclp] = ACTIONS(12021), + [anon_sym_BSLASHAclp] = ACTIONS(12021), + [anon_sym_BSLASHacf] = ACTIONS(12021), + [anon_sym_BSLASHAcf] = ACTIONS(12021), + [anon_sym_BSLASHacfp] = ACTIONS(12021), + [anon_sym_BSLASHAcfp] = ACTIONS(12021), + [anon_sym_BSLASHac] = ACTIONS(12021), + [anon_sym_BSLASHAc] = ACTIONS(12021), + [anon_sym_BSLASHacp] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12021), + [anon_sym_BSLASHcolor] = ACTIONS(12021), + [anon_sym_BSLASHcolorbox] = ACTIONS(12021), + [anon_sym_BSLASHtextcolor] = ACTIONS(12021), + [anon_sym_BSLASHpagecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12021), + }, + [697] = { + [sym_generic_command_name] = ACTIONS(12341), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12341), + [aux_sym_chapter_token1] = ACTIONS(12341), + [aux_sym_section_token1] = ACTIONS(12341), + [aux_sym_subsection_token1] = ACTIONS(12341), + [aux_sym_subsubsection_token1] = ACTIONS(12341), + [aux_sym_paragraph_token1] = ACTIONS(12341), + [aux_sym_subparagraph_token1] = ACTIONS(12341), + [anon_sym_BSLASHitem] = ACTIONS(12341), + [anon_sym_LBRACK] = ACTIONS(12339), + [anon_sym_LBRACE] = ACTIONS(12339), + [anon_sym_LPAREN] = ACTIONS(12339), + [anon_sym_COMMA] = ACTIONS(12339), + [anon_sym_EQ] = ACTIONS(12339), + [sym_word] = ACTIONS(12339), + [sym_param] = ACTIONS(12339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12339), + [anon_sym_DOLLAR] = ACTIONS(12341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12339), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12339), + [anon_sym_BSLASHbegin] = ACTIONS(12341), + [anon_sym_BSLASHcaption] = ACTIONS(12341), + [anon_sym_BSLASHcite] = ACTIONS(12341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCite] = ACTIONS(12341), + [anon_sym_BSLASHnocite] = ACTIONS(12341), + [anon_sym_BSLASHcitet] = ACTIONS(12341), + [anon_sym_BSLASHcitep] = ACTIONS(12341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteauthor] = ACTIONS(12341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitetitle] = ACTIONS(12341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteyear] = ACTIONS(12341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitedate] = ACTIONS(12341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteurl] = ACTIONS(12341), + [anon_sym_BSLASHfullcite] = ACTIONS(12341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12341), + [anon_sym_BSLASHcitealt] = ACTIONS(12341), + [anon_sym_BSLASHcitealp] = ACTIONS(12341), + [anon_sym_BSLASHcitetext] = ACTIONS(12341), + [anon_sym_BSLASHparencite] = ACTIONS(12341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHParencite] = ACTIONS(12341), + [anon_sym_BSLASHfootcite] = ACTIONS(12341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12341), + [anon_sym_BSLASHtextcite] = ACTIONS(12341), + [anon_sym_BSLASHTextcite] = ACTIONS(12341), + [anon_sym_BSLASHsmartcite] = ACTIONS(12341), + [anon_sym_BSLASHSmartcite] = ACTIONS(12341), + [anon_sym_BSLASHsupercite] = ACTIONS(12341), + [anon_sym_BSLASHautocite] = ACTIONS(12341), + [anon_sym_BSLASHAutocite] = ACTIONS(12341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHvolcite] = ACTIONS(12341), + [anon_sym_BSLASHVolcite] = ACTIONS(12341), + [anon_sym_BSLASHpvolcite] = ACTIONS(12341), + [anon_sym_BSLASHPvolcite] = ACTIONS(12341), + [anon_sym_BSLASHfvolcite] = ACTIONS(12341), + [anon_sym_BSLASHftvolcite] = ACTIONS(12341), + [anon_sym_BSLASHsvolcite] = ACTIONS(12341), + [anon_sym_BSLASHSvolcite] = ACTIONS(12341), + [anon_sym_BSLASHtvolcite] = ACTIONS(12341), + [anon_sym_BSLASHTvolcite] = ACTIONS(12341), + [anon_sym_BSLASHavolcite] = ACTIONS(12341), + [anon_sym_BSLASHAvolcite] = ACTIONS(12341), + [anon_sym_BSLASHnotecite] = ACTIONS(12341), + [anon_sym_BSLASHpnotecite] = ACTIONS(12341), + [anon_sym_BSLASHPnotecite] = ACTIONS(12341), + [anon_sym_BSLASHfnotecite] = ACTIONS(12341), + [anon_sym_BSLASHusepackage] = ACTIONS(12341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12341), + [anon_sym_BSLASHinclude] = ACTIONS(12341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12341), + [anon_sym_BSLASHinput] = ACTIONS(12341), + [anon_sym_BSLASHsubfile] = ACTIONS(12341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12341), + [anon_sym_BSLASHbibliography] = ACTIONS(12341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12341), + [anon_sym_BSLASHincludesvg] = ACTIONS(12341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12341), + [anon_sym_BSLASHimport] = ACTIONS(12341), + [anon_sym_BSLASHsubimport] = ACTIONS(12341), + [anon_sym_BSLASHinputfrom] = ACTIONS(12341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12341), + [anon_sym_BSLASHincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHlabel] = ACTIONS(12341), + [anon_sym_BSLASHref] = ACTIONS(12341), + [anon_sym_BSLASHvref] = ACTIONS(12341), + [anon_sym_BSLASHVref] = ACTIONS(12341), + [anon_sym_BSLASHautoref] = ACTIONS(12341), + [anon_sym_BSLASHpageref] = ACTIONS(12341), + [anon_sym_BSLASHcref] = ACTIONS(12341), + [anon_sym_BSLASHCref] = ACTIONS(12341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnameCref] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHlabelcref] = ACTIONS(12341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12341), + [anon_sym_BSLASHeqref] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange] = ACTIONS(12341), + [anon_sym_BSLASHCrefrange] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewlabel] = ACTIONS(12341), + [anon_sym_BSLASHnewcommand] = ACTIONS(12341), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12341), + [anon_sym_BSLASHgls] = ACTIONS(12341), + [anon_sym_BSLASHGls] = ACTIONS(12341), + [anon_sym_BSLASHGLS] = ACTIONS(12341), + [anon_sym_BSLASHglspl] = ACTIONS(12341), + [anon_sym_BSLASHGlspl] = ACTIONS(12341), + [anon_sym_BSLASHGLSpl] = ACTIONS(12341), + [anon_sym_BSLASHglsdisp] = ACTIONS(12341), + [anon_sym_BSLASHglslink] = ACTIONS(12341), + [anon_sym_BSLASHglstext] = ACTIONS(12341), + [anon_sym_BSLASHGlstext] = ACTIONS(12341), + [anon_sym_BSLASHGLStext] = ACTIONS(12341), + [anon_sym_BSLASHglsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12341), + [anon_sym_BSLASHglsplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSplural] = ACTIONS(12341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHglsname] = ACTIONS(12341), + [anon_sym_BSLASHGlsname] = ACTIONS(12341), + [anon_sym_BSLASHGLSname] = ACTIONS(12341), + [anon_sym_BSLASHglssymbol] = ACTIONS(12341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12341), + [anon_sym_BSLASHglsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12341), + [anon_sym_BSLASHglsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12341), + [anon_sym_BSLASHglsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12341), + [anon_sym_BSLASHglsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12341), + [anon_sym_BSLASHglsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12341), + [anon_sym_BSLASHnewacronym] = ACTIONS(12341), + [anon_sym_BSLASHacrshort] = ACTIONS(12341), + [anon_sym_BSLASHAcrshort] = ACTIONS(12341), + [anon_sym_BSLASHACRshort] = ACTIONS(12341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12341), + [anon_sym_BSLASHacrlong] = ACTIONS(12341), + [anon_sym_BSLASHAcrlong] = ACTIONS(12341), + [anon_sym_BSLASHACRlong] = ACTIONS(12341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12341), + [anon_sym_BSLASHacrfull] = ACTIONS(12341), + [anon_sym_BSLASHAcrfull] = ACTIONS(12341), + [anon_sym_BSLASHACRfull] = ACTIONS(12341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12341), + [anon_sym_BSLASHacs] = ACTIONS(12341), + [anon_sym_BSLASHAcs] = ACTIONS(12341), + [anon_sym_BSLASHacsp] = ACTIONS(12341), + [anon_sym_BSLASHAcsp] = ACTIONS(12341), + [anon_sym_BSLASHacl] = ACTIONS(12341), + [anon_sym_BSLASHAcl] = ACTIONS(12341), + [anon_sym_BSLASHaclp] = ACTIONS(12341), + [anon_sym_BSLASHAclp] = ACTIONS(12341), + [anon_sym_BSLASHacf] = ACTIONS(12341), + [anon_sym_BSLASHAcf] = ACTIONS(12341), + [anon_sym_BSLASHacfp] = ACTIONS(12341), + [anon_sym_BSLASHAcfp] = ACTIONS(12341), + [anon_sym_BSLASHac] = ACTIONS(12341), + [anon_sym_BSLASHAc] = ACTIONS(12341), + [anon_sym_BSLASHacp] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12341), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12341), + [anon_sym_BSLASHcolor] = ACTIONS(12341), + [anon_sym_BSLASHcolorbox] = ACTIONS(12341), + [anon_sym_BSLASHtextcolor] = ACTIONS(12341), + [anon_sym_BSLASHpagecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12341), + }, + [698] = { + [sym_generic_command_name] = ACTIONS(12335), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12335), + [aux_sym_chapter_token1] = ACTIONS(12335), + [aux_sym_section_token1] = ACTIONS(12335), + [aux_sym_subsection_token1] = ACTIONS(12335), + [aux_sym_subsubsection_token1] = ACTIONS(12335), + [aux_sym_paragraph_token1] = ACTIONS(12335), + [aux_sym_subparagraph_token1] = ACTIONS(12335), + [anon_sym_BSLASHitem] = ACTIONS(12335), + [anon_sym_LBRACK] = ACTIONS(12658), + [anon_sym_LBRACE] = ACTIONS(12333), + [anon_sym_LPAREN] = ACTIONS(12333), + [anon_sym_COMMA] = ACTIONS(12333), + [anon_sym_EQ] = ACTIONS(12333), + [sym_word] = ACTIONS(12333), + [sym_param] = ACTIONS(12333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12333), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12333), + [anon_sym_DOLLAR] = ACTIONS(12335), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12333), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12333), + [anon_sym_BSLASHbegin] = ACTIONS(12335), + [anon_sym_BSLASHcaption] = ACTIONS(12335), + [anon_sym_BSLASHcite] = ACTIONS(12335), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCite] = ACTIONS(12335), + [anon_sym_BSLASHnocite] = ACTIONS(12335), + [anon_sym_BSLASHcitet] = ACTIONS(12335), + [anon_sym_BSLASHcitep] = ACTIONS(12335), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteauthor] = ACTIONS(12335), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12335), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitetitle] = ACTIONS(12335), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteyear] = ACTIONS(12335), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitedate] = ACTIONS(12335), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteurl] = ACTIONS(12335), + [anon_sym_BSLASHfullcite] = ACTIONS(12335), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12335), + [anon_sym_BSLASHcitealt] = ACTIONS(12335), + [anon_sym_BSLASHcitealp] = ACTIONS(12335), + [anon_sym_BSLASHcitetext] = ACTIONS(12335), + [anon_sym_BSLASHparencite] = ACTIONS(12335), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHParencite] = ACTIONS(12335), + [anon_sym_BSLASHfootcite] = ACTIONS(12335), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12335), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12335), + [anon_sym_BSLASHtextcite] = ACTIONS(12335), + [anon_sym_BSLASHTextcite] = ACTIONS(12335), + [anon_sym_BSLASHsmartcite] = ACTIONS(12335), + [anon_sym_BSLASHSmartcite] = ACTIONS(12335), + [anon_sym_BSLASHsupercite] = ACTIONS(12335), + [anon_sym_BSLASHautocite] = ACTIONS(12335), + [anon_sym_BSLASHAutocite] = ACTIONS(12335), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHvolcite] = ACTIONS(12335), + [anon_sym_BSLASHVolcite] = ACTIONS(12335), + [anon_sym_BSLASHpvolcite] = ACTIONS(12335), + [anon_sym_BSLASHPvolcite] = ACTIONS(12335), + [anon_sym_BSLASHfvolcite] = ACTIONS(12335), + [anon_sym_BSLASHftvolcite] = ACTIONS(12335), + [anon_sym_BSLASHsvolcite] = ACTIONS(12335), + [anon_sym_BSLASHSvolcite] = ACTIONS(12335), + [anon_sym_BSLASHtvolcite] = ACTIONS(12335), + [anon_sym_BSLASHTvolcite] = ACTIONS(12335), + [anon_sym_BSLASHavolcite] = ACTIONS(12335), + [anon_sym_BSLASHAvolcite] = ACTIONS(12335), + [anon_sym_BSLASHnotecite] = ACTIONS(12335), + [anon_sym_BSLASHpnotecite] = ACTIONS(12335), + [anon_sym_BSLASHPnotecite] = ACTIONS(12335), + [anon_sym_BSLASHfnotecite] = ACTIONS(12335), + [anon_sym_BSLASHusepackage] = ACTIONS(12335), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12335), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12335), + [anon_sym_BSLASHinclude] = ACTIONS(12335), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12335), + [anon_sym_BSLASHinput] = ACTIONS(12335), + [anon_sym_BSLASHsubfile] = ACTIONS(12335), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12335), + [anon_sym_BSLASHbibliography] = ACTIONS(12335), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12335), + [anon_sym_BSLASHincludesvg] = ACTIONS(12335), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12335), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12335), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12335), + [anon_sym_BSLASHimport] = ACTIONS(12335), + [anon_sym_BSLASHsubimport] = ACTIONS(12335), + [anon_sym_BSLASHinputfrom] = ACTIONS(12335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12335), + [anon_sym_BSLASHincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHlabel] = ACTIONS(12335), + [anon_sym_BSLASHref] = ACTIONS(12335), + [anon_sym_BSLASHvref] = ACTIONS(12335), + [anon_sym_BSLASHVref] = ACTIONS(12335), + [anon_sym_BSLASHautoref] = ACTIONS(12335), + [anon_sym_BSLASHpageref] = ACTIONS(12335), + [anon_sym_BSLASHcref] = ACTIONS(12335), + [anon_sym_BSLASHCref] = ACTIONS(12335), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnameCref] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHlabelcref] = ACTIONS(12335), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12335), + [anon_sym_BSLASHeqref] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange] = ACTIONS(12335), + [anon_sym_BSLASHCrefrange] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewlabel] = ACTIONS(12335), + [anon_sym_BSLASHnewcommand] = ACTIONS(12335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12335), + [anon_sym_BSLASHgls] = ACTIONS(12335), + [anon_sym_BSLASHGls] = ACTIONS(12335), + [anon_sym_BSLASHGLS] = ACTIONS(12335), + [anon_sym_BSLASHglspl] = ACTIONS(12335), + [anon_sym_BSLASHGlspl] = ACTIONS(12335), + [anon_sym_BSLASHGLSpl] = ACTIONS(12335), + [anon_sym_BSLASHglsdisp] = ACTIONS(12335), + [anon_sym_BSLASHglslink] = ACTIONS(12335), + [anon_sym_BSLASHglstext] = ACTIONS(12335), + [anon_sym_BSLASHGlstext] = ACTIONS(12335), + [anon_sym_BSLASHGLStext] = ACTIONS(12335), + [anon_sym_BSLASHglsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12335), + [anon_sym_BSLASHglsplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSplural] = ACTIONS(12335), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHglsname] = ACTIONS(12335), + [anon_sym_BSLASHGlsname] = ACTIONS(12335), + [anon_sym_BSLASHGLSname] = ACTIONS(12335), + [anon_sym_BSLASHglssymbol] = ACTIONS(12335), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12335), + [anon_sym_BSLASHglsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12335), + [anon_sym_BSLASHglsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12335), + [anon_sym_BSLASHglsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12335), + [anon_sym_BSLASHglsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12335), + [anon_sym_BSLASHglsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12335), + [anon_sym_BSLASHnewacronym] = ACTIONS(12335), + [anon_sym_BSLASHacrshort] = ACTIONS(12335), + [anon_sym_BSLASHAcrshort] = ACTIONS(12335), + [anon_sym_BSLASHACRshort] = ACTIONS(12335), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12335), + [anon_sym_BSLASHacrlong] = ACTIONS(12335), + [anon_sym_BSLASHAcrlong] = ACTIONS(12335), + [anon_sym_BSLASHACRlong] = ACTIONS(12335), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12335), + [anon_sym_BSLASHacrfull] = ACTIONS(12335), + [anon_sym_BSLASHAcrfull] = ACTIONS(12335), + [anon_sym_BSLASHACRfull] = ACTIONS(12335), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12335), + [anon_sym_BSLASHacs] = ACTIONS(12335), + [anon_sym_BSLASHAcs] = ACTIONS(12335), + [anon_sym_BSLASHacsp] = ACTIONS(12335), + [anon_sym_BSLASHAcsp] = ACTIONS(12335), + [anon_sym_BSLASHacl] = ACTIONS(12335), + [anon_sym_BSLASHAcl] = ACTIONS(12335), + [anon_sym_BSLASHaclp] = ACTIONS(12335), + [anon_sym_BSLASHAclp] = ACTIONS(12335), + [anon_sym_BSLASHacf] = ACTIONS(12335), + [anon_sym_BSLASHAcf] = ACTIONS(12335), + [anon_sym_BSLASHacfp] = ACTIONS(12335), + [anon_sym_BSLASHAcfp] = ACTIONS(12335), + [anon_sym_BSLASHac] = ACTIONS(12335), + [anon_sym_BSLASHAc] = ACTIONS(12335), + [anon_sym_BSLASHacp] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12335), + [anon_sym_BSLASHcolor] = ACTIONS(12335), + [anon_sym_BSLASHcolorbox] = ACTIONS(12335), + [anon_sym_BSLASHtextcolor] = ACTIONS(12335), + [anon_sym_BSLASHpagecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12335), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12335), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12335), + }, + [699] = { + [sym_generic_command_name] = ACTIONS(12315), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12315), + [aux_sym_chapter_token1] = ACTIONS(12315), + [aux_sym_section_token1] = ACTIONS(12315), + [aux_sym_subsection_token1] = ACTIONS(12315), + [aux_sym_subsubsection_token1] = ACTIONS(12315), + [aux_sym_paragraph_token1] = ACTIONS(12315), + [aux_sym_subparagraph_token1] = ACTIONS(12315), + [anon_sym_BSLASHitem] = ACTIONS(12315), + [anon_sym_LBRACK] = ACTIONS(12313), + [anon_sym_LBRACE] = ACTIONS(12313), + [anon_sym_LPAREN] = ACTIONS(12313), + [anon_sym_COMMA] = ACTIONS(12313), + [anon_sym_EQ] = ACTIONS(12313), + [sym_word] = ACTIONS(12313), + [sym_param] = ACTIONS(12313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12313), + [anon_sym_DOLLAR] = ACTIONS(12315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12313), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12313), + [anon_sym_BSLASHbegin] = ACTIONS(12315), + [anon_sym_BSLASHcaption] = ACTIONS(12315), + [anon_sym_BSLASHcite] = ACTIONS(12315), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCite] = ACTIONS(12315), + [anon_sym_BSLASHnocite] = ACTIONS(12315), + [anon_sym_BSLASHcitet] = ACTIONS(12315), + [anon_sym_BSLASHcitep] = ACTIONS(12315), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteauthor] = ACTIONS(12315), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12315), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitetitle] = ACTIONS(12315), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteyear] = ACTIONS(12315), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitedate] = ACTIONS(12315), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteurl] = ACTIONS(12315), + [anon_sym_BSLASHfullcite] = ACTIONS(12315), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12315), + [anon_sym_BSLASHcitealt] = ACTIONS(12315), + [anon_sym_BSLASHcitealp] = ACTIONS(12315), + [anon_sym_BSLASHcitetext] = ACTIONS(12315), + [anon_sym_BSLASHparencite] = ACTIONS(12315), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHParencite] = ACTIONS(12315), + [anon_sym_BSLASHfootcite] = ACTIONS(12315), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12315), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12315), + [anon_sym_BSLASHtextcite] = ACTIONS(12315), + [anon_sym_BSLASHTextcite] = ACTIONS(12315), + [anon_sym_BSLASHsmartcite] = ACTIONS(12315), + [anon_sym_BSLASHSmartcite] = ACTIONS(12315), + [anon_sym_BSLASHsupercite] = ACTIONS(12315), + [anon_sym_BSLASHautocite] = ACTIONS(12315), + [anon_sym_BSLASHAutocite] = ACTIONS(12315), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHvolcite] = ACTIONS(12315), + [anon_sym_BSLASHVolcite] = ACTIONS(12315), + [anon_sym_BSLASHpvolcite] = ACTIONS(12315), + [anon_sym_BSLASHPvolcite] = ACTIONS(12315), + [anon_sym_BSLASHfvolcite] = ACTIONS(12315), + [anon_sym_BSLASHftvolcite] = ACTIONS(12315), + [anon_sym_BSLASHsvolcite] = ACTIONS(12315), + [anon_sym_BSLASHSvolcite] = ACTIONS(12315), + [anon_sym_BSLASHtvolcite] = ACTIONS(12315), + [anon_sym_BSLASHTvolcite] = ACTIONS(12315), + [anon_sym_BSLASHavolcite] = ACTIONS(12315), + [anon_sym_BSLASHAvolcite] = ACTIONS(12315), + [anon_sym_BSLASHnotecite] = ACTIONS(12315), + [anon_sym_BSLASHpnotecite] = ACTIONS(12315), + [anon_sym_BSLASHPnotecite] = ACTIONS(12315), + [anon_sym_BSLASHfnotecite] = ACTIONS(12315), + [anon_sym_BSLASHusepackage] = ACTIONS(12315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12315), + [anon_sym_BSLASHinclude] = ACTIONS(12315), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12315), + [anon_sym_BSLASHinput] = ACTIONS(12315), + [anon_sym_BSLASHsubfile] = ACTIONS(12315), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12315), + [anon_sym_BSLASHbibliography] = ACTIONS(12315), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12315), + [anon_sym_BSLASHincludesvg] = ACTIONS(12315), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12315), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12315), + [anon_sym_BSLASHimport] = ACTIONS(12315), + [anon_sym_BSLASHsubimport] = ACTIONS(12315), + [anon_sym_BSLASHinputfrom] = ACTIONS(12315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12315), + [anon_sym_BSLASHincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHlabel] = ACTIONS(12315), + [anon_sym_BSLASHref] = ACTIONS(12315), + [anon_sym_BSLASHvref] = ACTIONS(12315), + [anon_sym_BSLASHVref] = ACTIONS(12315), + [anon_sym_BSLASHautoref] = ACTIONS(12315), + [anon_sym_BSLASHpageref] = ACTIONS(12315), + [anon_sym_BSLASHcref] = ACTIONS(12315), + [anon_sym_BSLASHCref] = ACTIONS(12315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnameCref] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHlabelcref] = ACTIONS(12315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12315), + [anon_sym_BSLASHeqref] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange] = ACTIONS(12315), + [anon_sym_BSLASHCrefrange] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewlabel] = ACTIONS(12315), + [anon_sym_BSLASHnewcommand] = ACTIONS(12315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12315), + [anon_sym_BSLASHgls] = ACTIONS(12315), + [anon_sym_BSLASHGls] = ACTIONS(12315), + [anon_sym_BSLASHGLS] = ACTIONS(12315), + [anon_sym_BSLASHglspl] = ACTIONS(12315), + [anon_sym_BSLASHGlspl] = ACTIONS(12315), + [anon_sym_BSLASHGLSpl] = ACTIONS(12315), + [anon_sym_BSLASHglsdisp] = ACTIONS(12315), + [anon_sym_BSLASHglslink] = ACTIONS(12315), + [anon_sym_BSLASHglstext] = ACTIONS(12315), + [anon_sym_BSLASHGlstext] = ACTIONS(12315), + [anon_sym_BSLASHGLStext] = ACTIONS(12315), + [anon_sym_BSLASHglsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12315), + [anon_sym_BSLASHglsplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSplural] = ACTIONS(12315), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHglsname] = ACTIONS(12315), + [anon_sym_BSLASHGlsname] = ACTIONS(12315), + [anon_sym_BSLASHGLSname] = ACTIONS(12315), + [anon_sym_BSLASHglssymbol] = ACTIONS(12315), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12315), + [anon_sym_BSLASHglsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12315), + [anon_sym_BSLASHglsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12315), + [anon_sym_BSLASHglsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12315), + [anon_sym_BSLASHglsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12315), + [anon_sym_BSLASHglsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12315), + [anon_sym_BSLASHnewacronym] = ACTIONS(12315), + [anon_sym_BSLASHacrshort] = ACTIONS(12315), + [anon_sym_BSLASHAcrshort] = ACTIONS(12315), + [anon_sym_BSLASHACRshort] = ACTIONS(12315), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12315), + [anon_sym_BSLASHacrlong] = ACTIONS(12315), + [anon_sym_BSLASHAcrlong] = ACTIONS(12315), + [anon_sym_BSLASHACRlong] = ACTIONS(12315), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12315), + [anon_sym_BSLASHacrfull] = ACTIONS(12315), + [anon_sym_BSLASHAcrfull] = ACTIONS(12315), + [anon_sym_BSLASHACRfull] = ACTIONS(12315), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12315), + [anon_sym_BSLASHacs] = ACTIONS(12315), + [anon_sym_BSLASHAcs] = ACTIONS(12315), + [anon_sym_BSLASHacsp] = ACTIONS(12315), + [anon_sym_BSLASHAcsp] = ACTIONS(12315), + [anon_sym_BSLASHacl] = ACTIONS(12315), + [anon_sym_BSLASHAcl] = ACTIONS(12315), + [anon_sym_BSLASHaclp] = ACTIONS(12315), + [anon_sym_BSLASHAclp] = ACTIONS(12315), + [anon_sym_BSLASHacf] = ACTIONS(12315), + [anon_sym_BSLASHAcf] = ACTIONS(12315), + [anon_sym_BSLASHacfp] = ACTIONS(12315), + [anon_sym_BSLASHAcfp] = ACTIONS(12315), + [anon_sym_BSLASHac] = ACTIONS(12315), + [anon_sym_BSLASHAc] = ACTIONS(12315), + [anon_sym_BSLASHacp] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12315), + [anon_sym_BSLASHcolor] = ACTIONS(12315), + [anon_sym_BSLASHcolorbox] = ACTIONS(12315), + [anon_sym_BSLASHtextcolor] = ACTIONS(12315), + [anon_sym_BSLASHpagecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12315), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12315), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12315), + }, + [700] = { + [sym_generic_command_name] = ACTIONS(12307), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12307), + [aux_sym_chapter_token1] = ACTIONS(12307), + [aux_sym_section_token1] = ACTIONS(12307), + [aux_sym_subsection_token1] = ACTIONS(12307), + [aux_sym_subsubsection_token1] = ACTIONS(12307), + [aux_sym_paragraph_token1] = ACTIONS(12307), + [aux_sym_subparagraph_token1] = ACTIONS(12307), + [anon_sym_BSLASHitem] = ACTIONS(12307), + [anon_sym_LBRACK] = ACTIONS(12305), + [anon_sym_LBRACE] = ACTIONS(12305), + [anon_sym_LPAREN] = ACTIONS(12305), + [anon_sym_COMMA] = ACTIONS(12305), + [anon_sym_EQ] = ACTIONS(12305), + [sym_word] = ACTIONS(12305), + [sym_param] = ACTIONS(12305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12305), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12305), + [anon_sym_DOLLAR] = ACTIONS(12307), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12305), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12305), + [anon_sym_BSLASHbegin] = ACTIONS(12307), + [anon_sym_BSLASHcaption] = ACTIONS(12307), + [anon_sym_BSLASHcite] = ACTIONS(12307), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCite] = ACTIONS(12307), + [anon_sym_BSLASHnocite] = ACTIONS(12307), + [anon_sym_BSLASHcitet] = ACTIONS(12307), + [anon_sym_BSLASHcitep] = ACTIONS(12307), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteauthor] = ACTIONS(12307), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12307), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitetitle] = ACTIONS(12307), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteyear] = ACTIONS(12307), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitedate] = ACTIONS(12307), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteurl] = ACTIONS(12307), + [anon_sym_BSLASHfullcite] = ACTIONS(12307), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12307), + [anon_sym_BSLASHcitealt] = ACTIONS(12307), + [anon_sym_BSLASHcitealp] = ACTIONS(12307), + [anon_sym_BSLASHcitetext] = ACTIONS(12307), + [anon_sym_BSLASHparencite] = ACTIONS(12307), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHParencite] = ACTIONS(12307), + [anon_sym_BSLASHfootcite] = ACTIONS(12307), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12307), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12307), + [anon_sym_BSLASHtextcite] = ACTIONS(12307), + [anon_sym_BSLASHTextcite] = ACTIONS(12307), + [anon_sym_BSLASHsmartcite] = ACTIONS(12307), + [anon_sym_BSLASHSmartcite] = ACTIONS(12307), + [anon_sym_BSLASHsupercite] = ACTIONS(12307), + [anon_sym_BSLASHautocite] = ACTIONS(12307), + [anon_sym_BSLASHAutocite] = ACTIONS(12307), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHvolcite] = ACTIONS(12307), + [anon_sym_BSLASHVolcite] = ACTIONS(12307), + [anon_sym_BSLASHpvolcite] = ACTIONS(12307), + [anon_sym_BSLASHPvolcite] = ACTIONS(12307), + [anon_sym_BSLASHfvolcite] = ACTIONS(12307), + [anon_sym_BSLASHftvolcite] = ACTIONS(12307), + [anon_sym_BSLASHsvolcite] = ACTIONS(12307), + [anon_sym_BSLASHSvolcite] = ACTIONS(12307), + [anon_sym_BSLASHtvolcite] = ACTIONS(12307), + [anon_sym_BSLASHTvolcite] = ACTIONS(12307), + [anon_sym_BSLASHavolcite] = ACTIONS(12307), + [anon_sym_BSLASHAvolcite] = ACTIONS(12307), + [anon_sym_BSLASHnotecite] = ACTIONS(12307), + [anon_sym_BSLASHpnotecite] = ACTIONS(12307), + [anon_sym_BSLASHPnotecite] = ACTIONS(12307), + [anon_sym_BSLASHfnotecite] = ACTIONS(12307), + [anon_sym_BSLASHusepackage] = ACTIONS(12307), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12307), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12307), + [anon_sym_BSLASHinclude] = ACTIONS(12307), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12307), + [anon_sym_BSLASHinput] = ACTIONS(12307), + [anon_sym_BSLASHsubfile] = ACTIONS(12307), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12307), + [anon_sym_BSLASHbibliography] = ACTIONS(12307), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12307), + [anon_sym_BSLASHincludesvg] = ACTIONS(12307), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12307), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12307), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12307), + [anon_sym_BSLASHimport] = ACTIONS(12307), + [anon_sym_BSLASHsubimport] = ACTIONS(12307), + [anon_sym_BSLASHinputfrom] = ACTIONS(12307), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12307), + [anon_sym_BSLASHincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHlabel] = ACTIONS(12307), + [anon_sym_BSLASHref] = ACTIONS(12307), + [anon_sym_BSLASHvref] = ACTIONS(12307), + [anon_sym_BSLASHVref] = ACTIONS(12307), + [anon_sym_BSLASHautoref] = ACTIONS(12307), + [anon_sym_BSLASHpageref] = ACTIONS(12307), + [anon_sym_BSLASHcref] = ACTIONS(12307), + [anon_sym_BSLASHCref] = ACTIONS(12307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnameCref] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHlabelcref] = ACTIONS(12307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12307), + [anon_sym_BSLASHeqref] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange] = ACTIONS(12307), + [anon_sym_BSLASHCrefrange] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewlabel] = ACTIONS(12307), + [anon_sym_BSLASHnewcommand] = ACTIONS(12307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12307), + [anon_sym_BSLASHgls] = ACTIONS(12307), + [anon_sym_BSLASHGls] = ACTIONS(12307), + [anon_sym_BSLASHGLS] = ACTIONS(12307), + [anon_sym_BSLASHglspl] = ACTIONS(12307), + [anon_sym_BSLASHGlspl] = ACTIONS(12307), + [anon_sym_BSLASHGLSpl] = ACTIONS(12307), + [anon_sym_BSLASHglsdisp] = ACTIONS(12307), + [anon_sym_BSLASHglslink] = ACTIONS(12307), + [anon_sym_BSLASHglstext] = ACTIONS(12307), + [anon_sym_BSLASHGlstext] = ACTIONS(12307), + [anon_sym_BSLASHGLStext] = ACTIONS(12307), + [anon_sym_BSLASHglsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12307), + [anon_sym_BSLASHglsplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSplural] = ACTIONS(12307), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHglsname] = ACTIONS(12307), + [anon_sym_BSLASHGlsname] = ACTIONS(12307), + [anon_sym_BSLASHGLSname] = ACTIONS(12307), + [anon_sym_BSLASHglssymbol] = ACTIONS(12307), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12307), + [anon_sym_BSLASHglsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12307), + [anon_sym_BSLASHglsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12307), + [anon_sym_BSLASHglsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12307), + [anon_sym_BSLASHglsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12307), + [anon_sym_BSLASHglsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12307), + [anon_sym_BSLASHnewacronym] = ACTIONS(12307), + [anon_sym_BSLASHacrshort] = ACTIONS(12307), + [anon_sym_BSLASHAcrshort] = ACTIONS(12307), + [anon_sym_BSLASHACRshort] = ACTIONS(12307), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12307), + [anon_sym_BSLASHacrlong] = ACTIONS(12307), + [anon_sym_BSLASHAcrlong] = ACTIONS(12307), + [anon_sym_BSLASHACRlong] = ACTIONS(12307), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12307), + [anon_sym_BSLASHacrfull] = ACTIONS(12307), + [anon_sym_BSLASHAcrfull] = ACTIONS(12307), + [anon_sym_BSLASHACRfull] = ACTIONS(12307), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12307), + [anon_sym_BSLASHacs] = ACTIONS(12307), + [anon_sym_BSLASHAcs] = ACTIONS(12307), + [anon_sym_BSLASHacsp] = ACTIONS(12307), + [anon_sym_BSLASHAcsp] = ACTIONS(12307), + [anon_sym_BSLASHacl] = ACTIONS(12307), + [anon_sym_BSLASHAcl] = ACTIONS(12307), + [anon_sym_BSLASHaclp] = ACTIONS(12307), + [anon_sym_BSLASHAclp] = ACTIONS(12307), + [anon_sym_BSLASHacf] = ACTIONS(12307), + [anon_sym_BSLASHAcf] = ACTIONS(12307), + [anon_sym_BSLASHacfp] = ACTIONS(12307), + [anon_sym_BSLASHAcfp] = ACTIONS(12307), + [anon_sym_BSLASHac] = ACTIONS(12307), + [anon_sym_BSLASHAc] = ACTIONS(12307), + [anon_sym_BSLASHacp] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12307), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12307), + [anon_sym_BSLASHcolor] = ACTIONS(12307), + [anon_sym_BSLASHcolorbox] = ACTIONS(12307), + [anon_sym_BSLASHtextcolor] = ACTIONS(12307), + [anon_sym_BSLASHpagecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12307), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12307), + }, + [701] = { + [sym_generic_command_name] = ACTIONS(12303), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12303), + [aux_sym_chapter_token1] = ACTIONS(12303), + [aux_sym_section_token1] = ACTIONS(12303), + [aux_sym_subsection_token1] = ACTIONS(12303), + [aux_sym_subsubsection_token1] = ACTIONS(12303), + [aux_sym_paragraph_token1] = ACTIONS(12303), + [aux_sym_subparagraph_token1] = ACTIONS(12303), + [anon_sym_BSLASHitem] = ACTIONS(12303), + [anon_sym_LBRACK] = ACTIONS(12301), + [anon_sym_LBRACE] = ACTIONS(12301), + [anon_sym_LPAREN] = ACTIONS(12301), + [anon_sym_COMMA] = ACTIONS(12301), + [anon_sym_EQ] = ACTIONS(12301), + [sym_word] = ACTIONS(12301), + [sym_param] = ACTIONS(12301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12301), + [anon_sym_DOLLAR] = ACTIONS(12303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12301), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12301), + [anon_sym_BSLASHbegin] = ACTIONS(12303), + [anon_sym_BSLASHcaption] = ACTIONS(12303), + [anon_sym_BSLASHcite] = ACTIONS(12303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCite] = ACTIONS(12303), + [anon_sym_BSLASHnocite] = ACTIONS(12303), + [anon_sym_BSLASHcitet] = ACTIONS(12303), + [anon_sym_BSLASHcitep] = ACTIONS(12303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteauthor] = ACTIONS(12303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitetitle] = ACTIONS(12303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteyear] = ACTIONS(12303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitedate] = ACTIONS(12303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteurl] = ACTIONS(12303), + [anon_sym_BSLASHfullcite] = ACTIONS(12303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12303), + [anon_sym_BSLASHcitealt] = ACTIONS(12303), + [anon_sym_BSLASHcitealp] = ACTIONS(12303), + [anon_sym_BSLASHcitetext] = ACTIONS(12303), + [anon_sym_BSLASHparencite] = ACTIONS(12303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHParencite] = ACTIONS(12303), + [anon_sym_BSLASHfootcite] = ACTIONS(12303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12303), + [anon_sym_BSLASHtextcite] = ACTIONS(12303), + [anon_sym_BSLASHTextcite] = ACTIONS(12303), + [anon_sym_BSLASHsmartcite] = ACTIONS(12303), + [anon_sym_BSLASHSmartcite] = ACTIONS(12303), + [anon_sym_BSLASHsupercite] = ACTIONS(12303), + [anon_sym_BSLASHautocite] = ACTIONS(12303), + [anon_sym_BSLASHAutocite] = ACTIONS(12303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHvolcite] = ACTIONS(12303), + [anon_sym_BSLASHVolcite] = ACTIONS(12303), + [anon_sym_BSLASHpvolcite] = ACTIONS(12303), + [anon_sym_BSLASHPvolcite] = ACTIONS(12303), + [anon_sym_BSLASHfvolcite] = ACTIONS(12303), + [anon_sym_BSLASHftvolcite] = ACTIONS(12303), + [anon_sym_BSLASHsvolcite] = ACTIONS(12303), + [anon_sym_BSLASHSvolcite] = ACTIONS(12303), + [anon_sym_BSLASHtvolcite] = ACTIONS(12303), + [anon_sym_BSLASHTvolcite] = ACTIONS(12303), + [anon_sym_BSLASHavolcite] = ACTIONS(12303), + [anon_sym_BSLASHAvolcite] = ACTIONS(12303), + [anon_sym_BSLASHnotecite] = ACTIONS(12303), + [anon_sym_BSLASHpnotecite] = ACTIONS(12303), + [anon_sym_BSLASHPnotecite] = ACTIONS(12303), + [anon_sym_BSLASHfnotecite] = ACTIONS(12303), + [anon_sym_BSLASHusepackage] = ACTIONS(12303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12303), + [anon_sym_BSLASHinclude] = ACTIONS(12303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12303), + [anon_sym_BSLASHinput] = ACTIONS(12303), + [anon_sym_BSLASHsubfile] = ACTIONS(12303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12303), + [anon_sym_BSLASHbibliography] = ACTIONS(12303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12303), + [anon_sym_BSLASHincludesvg] = ACTIONS(12303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12303), + [anon_sym_BSLASHimport] = ACTIONS(12303), + [anon_sym_BSLASHsubimport] = ACTIONS(12303), + [anon_sym_BSLASHinputfrom] = ACTIONS(12303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12303), + [anon_sym_BSLASHincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHlabel] = ACTIONS(12303), + [anon_sym_BSLASHref] = ACTIONS(12303), + [anon_sym_BSLASHvref] = ACTIONS(12303), + [anon_sym_BSLASHVref] = ACTIONS(12303), + [anon_sym_BSLASHautoref] = ACTIONS(12303), + [anon_sym_BSLASHpageref] = ACTIONS(12303), + [anon_sym_BSLASHcref] = ACTIONS(12303), + [anon_sym_BSLASHCref] = ACTIONS(12303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnameCref] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHlabelcref] = ACTIONS(12303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12303), + [anon_sym_BSLASHeqref] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange] = ACTIONS(12303), + [anon_sym_BSLASHCrefrange] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewlabel] = ACTIONS(12303), + [anon_sym_BSLASHnewcommand] = ACTIONS(12303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12303), + [anon_sym_BSLASHgls] = ACTIONS(12303), + [anon_sym_BSLASHGls] = ACTIONS(12303), + [anon_sym_BSLASHGLS] = ACTIONS(12303), + [anon_sym_BSLASHglspl] = ACTIONS(12303), + [anon_sym_BSLASHGlspl] = ACTIONS(12303), + [anon_sym_BSLASHGLSpl] = ACTIONS(12303), + [anon_sym_BSLASHglsdisp] = ACTIONS(12303), + [anon_sym_BSLASHglslink] = ACTIONS(12303), + [anon_sym_BSLASHglstext] = ACTIONS(12303), + [anon_sym_BSLASHGlstext] = ACTIONS(12303), + [anon_sym_BSLASHGLStext] = ACTIONS(12303), + [anon_sym_BSLASHglsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12303), + [anon_sym_BSLASHglsplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSplural] = ACTIONS(12303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHglsname] = ACTIONS(12303), + [anon_sym_BSLASHGlsname] = ACTIONS(12303), + [anon_sym_BSLASHGLSname] = ACTIONS(12303), + [anon_sym_BSLASHglssymbol] = ACTIONS(12303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12303), + [anon_sym_BSLASHglsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12303), + [anon_sym_BSLASHglsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12303), + [anon_sym_BSLASHglsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12303), + [anon_sym_BSLASHglsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12303), + [anon_sym_BSLASHglsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12303), + [anon_sym_BSLASHnewacronym] = ACTIONS(12303), + [anon_sym_BSLASHacrshort] = ACTIONS(12303), + [anon_sym_BSLASHAcrshort] = ACTIONS(12303), + [anon_sym_BSLASHACRshort] = ACTIONS(12303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12303), + [anon_sym_BSLASHacrlong] = ACTIONS(12303), + [anon_sym_BSLASHAcrlong] = ACTIONS(12303), + [anon_sym_BSLASHACRlong] = ACTIONS(12303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12303), + [anon_sym_BSLASHacrfull] = ACTIONS(12303), + [anon_sym_BSLASHAcrfull] = ACTIONS(12303), + [anon_sym_BSLASHACRfull] = ACTIONS(12303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12303), + [anon_sym_BSLASHacs] = ACTIONS(12303), + [anon_sym_BSLASHAcs] = ACTIONS(12303), + [anon_sym_BSLASHacsp] = ACTIONS(12303), + [anon_sym_BSLASHAcsp] = ACTIONS(12303), + [anon_sym_BSLASHacl] = ACTIONS(12303), + [anon_sym_BSLASHAcl] = ACTIONS(12303), + [anon_sym_BSLASHaclp] = ACTIONS(12303), + [anon_sym_BSLASHAclp] = ACTIONS(12303), + [anon_sym_BSLASHacf] = ACTIONS(12303), + [anon_sym_BSLASHAcf] = ACTIONS(12303), + [anon_sym_BSLASHacfp] = ACTIONS(12303), + [anon_sym_BSLASHAcfp] = ACTIONS(12303), + [anon_sym_BSLASHac] = ACTIONS(12303), + [anon_sym_BSLASHAc] = ACTIONS(12303), + [anon_sym_BSLASHacp] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12303), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12303), + [anon_sym_BSLASHcolor] = ACTIONS(12303), + [anon_sym_BSLASHcolorbox] = ACTIONS(12303), + [anon_sym_BSLASHtextcolor] = ACTIONS(12303), + [anon_sym_BSLASHpagecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12303), + }, + [702] = { + [sym_generic_command_name] = ACTIONS(12295), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12295), + [aux_sym_chapter_token1] = ACTIONS(12295), + [aux_sym_section_token1] = ACTIONS(12295), + [aux_sym_subsection_token1] = ACTIONS(12295), + [aux_sym_subsubsection_token1] = ACTIONS(12295), + [aux_sym_paragraph_token1] = ACTIONS(12295), + [aux_sym_subparagraph_token1] = ACTIONS(12295), + [anon_sym_BSLASHitem] = ACTIONS(12295), + [anon_sym_LBRACK] = ACTIONS(12293), + [anon_sym_LBRACE] = ACTIONS(12293), + [anon_sym_LPAREN] = ACTIONS(12293), + [anon_sym_COMMA] = ACTIONS(12293), + [anon_sym_EQ] = ACTIONS(12293), + [sym_word] = ACTIONS(12293), + [sym_param] = ACTIONS(12293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12293), + [anon_sym_DOLLAR] = ACTIONS(12295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12293), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12293), + [anon_sym_BSLASHbegin] = ACTIONS(12295), + [anon_sym_BSLASHcaption] = ACTIONS(12295), + [anon_sym_BSLASHcite] = ACTIONS(12295), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCite] = ACTIONS(12295), + [anon_sym_BSLASHnocite] = ACTIONS(12295), + [anon_sym_BSLASHcitet] = ACTIONS(12295), + [anon_sym_BSLASHcitep] = ACTIONS(12295), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteauthor] = ACTIONS(12295), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12295), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitetitle] = ACTIONS(12295), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteyear] = ACTIONS(12295), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitedate] = ACTIONS(12295), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteurl] = ACTIONS(12295), + [anon_sym_BSLASHfullcite] = ACTIONS(12295), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12295), + [anon_sym_BSLASHcitealt] = ACTIONS(12295), + [anon_sym_BSLASHcitealp] = ACTIONS(12295), + [anon_sym_BSLASHcitetext] = ACTIONS(12295), + [anon_sym_BSLASHparencite] = ACTIONS(12295), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHParencite] = ACTIONS(12295), + [anon_sym_BSLASHfootcite] = ACTIONS(12295), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12295), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12295), + [anon_sym_BSLASHtextcite] = ACTIONS(12295), + [anon_sym_BSLASHTextcite] = ACTIONS(12295), + [anon_sym_BSLASHsmartcite] = ACTIONS(12295), + [anon_sym_BSLASHSmartcite] = ACTIONS(12295), + [anon_sym_BSLASHsupercite] = ACTIONS(12295), + [anon_sym_BSLASHautocite] = ACTIONS(12295), + [anon_sym_BSLASHAutocite] = ACTIONS(12295), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHvolcite] = ACTIONS(12295), + [anon_sym_BSLASHVolcite] = ACTIONS(12295), + [anon_sym_BSLASHpvolcite] = ACTIONS(12295), + [anon_sym_BSLASHPvolcite] = ACTIONS(12295), + [anon_sym_BSLASHfvolcite] = ACTIONS(12295), + [anon_sym_BSLASHftvolcite] = ACTIONS(12295), + [anon_sym_BSLASHsvolcite] = ACTIONS(12295), + [anon_sym_BSLASHSvolcite] = ACTIONS(12295), + [anon_sym_BSLASHtvolcite] = ACTIONS(12295), + [anon_sym_BSLASHTvolcite] = ACTIONS(12295), + [anon_sym_BSLASHavolcite] = ACTIONS(12295), + [anon_sym_BSLASHAvolcite] = ACTIONS(12295), + [anon_sym_BSLASHnotecite] = ACTIONS(12295), + [anon_sym_BSLASHpnotecite] = ACTIONS(12295), + [anon_sym_BSLASHPnotecite] = ACTIONS(12295), + [anon_sym_BSLASHfnotecite] = ACTIONS(12295), + [anon_sym_BSLASHusepackage] = ACTIONS(12295), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12295), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12295), + [anon_sym_BSLASHinclude] = ACTIONS(12295), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12295), + [anon_sym_BSLASHinput] = ACTIONS(12295), + [anon_sym_BSLASHsubfile] = ACTIONS(12295), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12295), + [anon_sym_BSLASHbibliography] = ACTIONS(12295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12295), + [anon_sym_BSLASHincludesvg] = ACTIONS(12295), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12295), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12295), + [anon_sym_BSLASHimport] = ACTIONS(12295), + [anon_sym_BSLASHsubimport] = ACTIONS(12295), + [anon_sym_BSLASHinputfrom] = ACTIONS(12295), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12295), + [anon_sym_BSLASHincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHlabel] = ACTIONS(12295), + [anon_sym_BSLASHref] = ACTIONS(12295), + [anon_sym_BSLASHvref] = ACTIONS(12295), + [anon_sym_BSLASHVref] = ACTIONS(12295), + [anon_sym_BSLASHautoref] = ACTIONS(12295), + [anon_sym_BSLASHpageref] = ACTIONS(12295), + [anon_sym_BSLASHcref] = ACTIONS(12295), + [anon_sym_BSLASHCref] = ACTIONS(12295), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnameCref] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHlabelcref] = ACTIONS(12295), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12295), + [anon_sym_BSLASHeqref] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange] = ACTIONS(12295), + [anon_sym_BSLASHCrefrange] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewlabel] = ACTIONS(12295), + [anon_sym_BSLASHnewcommand] = ACTIONS(12295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12295), + [anon_sym_BSLASHgls] = ACTIONS(12295), + [anon_sym_BSLASHGls] = ACTIONS(12295), + [anon_sym_BSLASHGLS] = ACTIONS(12295), + [anon_sym_BSLASHglspl] = ACTIONS(12295), + [anon_sym_BSLASHGlspl] = ACTIONS(12295), + [anon_sym_BSLASHGLSpl] = ACTIONS(12295), + [anon_sym_BSLASHglsdisp] = ACTIONS(12295), + [anon_sym_BSLASHglslink] = ACTIONS(12295), + [anon_sym_BSLASHglstext] = ACTIONS(12295), + [anon_sym_BSLASHGlstext] = ACTIONS(12295), + [anon_sym_BSLASHGLStext] = ACTIONS(12295), + [anon_sym_BSLASHglsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12295), + [anon_sym_BSLASHglsplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSplural] = ACTIONS(12295), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHglsname] = ACTIONS(12295), + [anon_sym_BSLASHGlsname] = ACTIONS(12295), + [anon_sym_BSLASHGLSname] = ACTIONS(12295), + [anon_sym_BSLASHglssymbol] = ACTIONS(12295), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12295), + [anon_sym_BSLASHglsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12295), + [anon_sym_BSLASHglsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12295), + [anon_sym_BSLASHglsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12295), + [anon_sym_BSLASHglsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12295), + [anon_sym_BSLASHglsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12295), + [anon_sym_BSLASHnewacronym] = ACTIONS(12295), + [anon_sym_BSLASHacrshort] = ACTIONS(12295), + [anon_sym_BSLASHAcrshort] = ACTIONS(12295), + [anon_sym_BSLASHACRshort] = ACTIONS(12295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12295), + [anon_sym_BSLASHacrlong] = ACTIONS(12295), + [anon_sym_BSLASHAcrlong] = ACTIONS(12295), + [anon_sym_BSLASHACRlong] = ACTIONS(12295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12295), + [anon_sym_BSLASHacrfull] = ACTIONS(12295), + [anon_sym_BSLASHAcrfull] = ACTIONS(12295), + [anon_sym_BSLASHACRfull] = ACTIONS(12295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12295), + [anon_sym_BSLASHacs] = ACTIONS(12295), + [anon_sym_BSLASHAcs] = ACTIONS(12295), + [anon_sym_BSLASHacsp] = ACTIONS(12295), + [anon_sym_BSLASHAcsp] = ACTIONS(12295), + [anon_sym_BSLASHacl] = ACTIONS(12295), + [anon_sym_BSLASHAcl] = ACTIONS(12295), + [anon_sym_BSLASHaclp] = ACTIONS(12295), + [anon_sym_BSLASHAclp] = ACTIONS(12295), + [anon_sym_BSLASHacf] = ACTIONS(12295), + [anon_sym_BSLASHAcf] = ACTIONS(12295), + [anon_sym_BSLASHacfp] = ACTIONS(12295), + [anon_sym_BSLASHAcfp] = ACTIONS(12295), + [anon_sym_BSLASHac] = ACTIONS(12295), + [anon_sym_BSLASHAc] = ACTIONS(12295), + [anon_sym_BSLASHacp] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12295), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12295), + [anon_sym_BSLASHcolor] = ACTIONS(12295), + [anon_sym_BSLASHcolorbox] = ACTIONS(12295), + [anon_sym_BSLASHtextcolor] = ACTIONS(12295), + [anon_sym_BSLASHpagecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12295), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12295), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12295), + }, + [703] = { + [sym_generic_command_name] = ACTIONS(12291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12291), + [aux_sym_chapter_token1] = ACTIONS(12291), + [aux_sym_section_token1] = ACTIONS(12291), + [aux_sym_subsection_token1] = ACTIONS(12291), + [aux_sym_subsubsection_token1] = ACTIONS(12291), + [aux_sym_paragraph_token1] = ACTIONS(12291), + [aux_sym_subparagraph_token1] = ACTIONS(12291), + [anon_sym_BSLASHitem] = ACTIONS(12291), + [anon_sym_LBRACK] = ACTIONS(12289), + [anon_sym_LBRACE] = ACTIONS(12289), + [anon_sym_LPAREN] = ACTIONS(12289), + [anon_sym_COMMA] = ACTIONS(12289), + [anon_sym_EQ] = ACTIONS(12289), + [sym_word] = ACTIONS(12289), + [sym_param] = ACTIONS(12289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12289), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12289), + [anon_sym_DOLLAR] = ACTIONS(12291), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12289), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12289), + [anon_sym_BSLASHbegin] = ACTIONS(12291), + [anon_sym_BSLASHcaption] = ACTIONS(12291), + [anon_sym_BSLASHcite] = ACTIONS(12291), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCite] = ACTIONS(12291), + [anon_sym_BSLASHnocite] = ACTIONS(12291), + [anon_sym_BSLASHcitet] = ACTIONS(12291), + [anon_sym_BSLASHcitep] = ACTIONS(12291), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteauthor] = ACTIONS(12291), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12291), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitetitle] = ACTIONS(12291), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteyear] = ACTIONS(12291), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitedate] = ACTIONS(12291), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteurl] = ACTIONS(12291), + [anon_sym_BSLASHfullcite] = ACTIONS(12291), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12291), + [anon_sym_BSLASHcitealt] = ACTIONS(12291), + [anon_sym_BSLASHcitealp] = ACTIONS(12291), + [anon_sym_BSLASHcitetext] = ACTIONS(12291), + [anon_sym_BSLASHparencite] = ACTIONS(12291), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHParencite] = ACTIONS(12291), + [anon_sym_BSLASHfootcite] = ACTIONS(12291), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12291), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12291), + [anon_sym_BSLASHtextcite] = ACTIONS(12291), + [anon_sym_BSLASHTextcite] = ACTIONS(12291), + [anon_sym_BSLASHsmartcite] = ACTIONS(12291), + [anon_sym_BSLASHSmartcite] = ACTIONS(12291), + [anon_sym_BSLASHsupercite] = ACTIONS(12291), + [anon_sym_BSLASHautocite] = ACTIONS(12291), + [anon_sym_BSLASHAutocite] = ACTIONS(12291), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHvolcite] = ACTIONS(12291), + [anon_sym_BSLASHVolcite] = ACTIONS(12291), + [anon_sym_BSLASHpvolcite] = ACTIONS(12291), + [anon_sym_BSLASHPvolcite] = ACTIONS(12291), + [anon_sym_BSLASHfvolcite] = ACTIONS(12291), + [anon_sym_BSLASHftvolcite] = ACTIONS(12291), + [anon_sym_BSLASHsvolcite] = ACTIONS(12291), + [anon_sym_BSLASHSvolcite] = ACTIONS(12291), + [anon_sym_BSLASHtvolcite] = ACTIONS(12291), + [anon_sym_BSLASHTvolcite] = ACTIONS(12291), + [anon_sym_BSLASHavolcite] = ACTIONS(12291), + [anon_sym_BSLASHAvolcite] = ACTIONS(12291), + [anon_sym_BSLASHnotecite] = ACTIONS(12291), + [anon_sym_BSLASHpnotecite] = ACTIONS(12291), + [anon_sym_BSLASHPnotecite] = ACTIONS(12291), + [anon_sym_BSLASHfnotecite] = ACTIONS(12291), + [anon_sym_BSLASHusepackage] = ACTIONS(12291), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12291), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12291), + [anon_sym_BSLASHinclude] = ACTIONS(12291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12291), + [anon_sym_BSLASHinput] = ACTIONS(12291), + [anon_sym_BSLASHsubfile] = ACTIONS(12291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12291), + [anon_sym_BSLASHbibliography] = ACTIONS(12291), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12291), + [anon_sym_BSLASHincludesvg] = ACTIONS(12291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12291), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12291), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12291), + [anon_sym_BSLASHimport] = ACTIONS(12291), + [anon_sym_BSLASHsubimport] = ACTIONS(12291), + [anon_sym_BSLASHinputfrom] = ACTIONS(12291), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12291), + [anon_sym_BSLASHincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHlabel] = ACTIONS(12291), + [anon_sym_BSLASHref] = ACTIONS(12291), + [anon_sym_BSLASHvref] = ACTIONS(12291), + [anon_sym_BSLASHVref] = ACTIONS(12291), + [anon_sym_BSLASHautoref] = ACTIONS(12291), + [anon_sym_BSLASHpageref] = ACTIONS(12291), + [anon_sym_BSLASHcref] = ACTIONS(12291), + [anon_sym_BSLASHCref] = ACTIONS(12291), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnameCref] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHlabelcref] = ACTIONS(12291), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12291), + [anon_sym_BSLASHeqref] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange] = ACTIONS(12291), + [anon_sym_BSLASHCrefrange] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewlabel] = ACTIONS(12291), + [anon_sym_BSLASHnewcommand] = ACTIONS(12291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12291), + [anon_sym_BSLASHgls] = ACTIONS(12291), + [anon_sym_BSLASHGls] = ACTIONS(12291), + [anon_sym_BSLASHGLS] = ACTIONS(12291), + [anon_sym_BSLASHglspl] = ACTIONS(12291), + [anon_sym_BSLASHGlspl] = ACTIONS(12291), + [anon_sym_BSLASHGLSpl] = ACTIONS(12291), + [anon_sym_BSLASHglsdisp] = ACTIONS(12291), + [anon_sym_BSLASHglslink] = ACTIONS(12291), + [anon_sym_BSLASHglstext] = ACTIONS(12291), + [anon_sym_BSLASHGlstext] = ACTIONS(12291), + [anon_sym_BSLASHGLStext] = ACTIONS(12291), + [anon_sym_BSLASHglsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12291), + [anon_sym_BSLASHglsplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSplural] = ACTIONS(12291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHglsname] = ACTIONS(12291), + [anon_sym_BSLASHGlsname] = ACTIONS(12291), + [anon_sym_BSLASHGLSname] = ACTIONS(12291), + [anon_sym_BSLASHglssymbol] = ACTIONS(12291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12291), + [anon_sym_BSLASHglsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12291), + [anon_sym_BSLASHglsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12291), + [anon_sym_BSLASHglsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12291), + [anon_sym_BSLASHglsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12291), + [anon_sym_BSLASHglsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12291), + [anon_sym_BSLASHnewacronym] = ACTIONS(12291), + [anon_sym_BSLASHacrshort] = ACTIONS(12291), + [anon_sym_BSLASHAcrshort] = ACTIONS(12291), + [anon_sym_BSLASHACRshort] = ACTIONS(12291), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12291), + [anon_sym_BSLASHacrlong] = ACTIONS(12291), + [anon_sym_BSLASHAcrlong] = ACTIONS(12291), + [anon_sym_BSLASHACRlong] = ACTIONS(12291), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12291), + [anon_sym_BSLASHacrfull] = ACTIONS(12291), + [anon_sym_BSLASHAcrfull] = ACTIONS(12291), + [anon_sym_BSLASHACRfull] = ACTIONS(12291), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12291), + [anon_sym_BSLASHacs] = ACTIONS(12291), + [anon_sym_BSLASHAcs] = ACTIONS(12291), + [anon_sym_BSLASHacsp] = ACTIONS(12291), + [anon_sym_BSLASHAcsp] = ACTIONS(12291), + [anon_sym_BSLASHacl] = ACTIONS(12291), + [anon_sym_BSLASHAcl] = ACTIONS(12291), + [anon_sym_BSLASHaclp] = ACTIONS(12291), + [anon_sym_BSLASHAclp] = ACTIONS(12291), + [anon_sym_BSLASHacf] = ACTIONS(12291), + [anon_sym_BSLASHAcf] = ACTIONS(12291), + [anon_sym_BSLASHacfp] = ACTIONS(12291), + [anon_sym_BSLASHAcfp] = ACTIONS(12291), + [anon_sym_BSLASHac] = ACTIONS(12291), + [anon_sym_BSLASHAc] = ACTIONS(12291), + [anon_sym_BSLASHacp] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12291), + [anon_sym_BSLASHcolor] = ACTIONS(12291), + [anon_sym_BSLASHcolorbox] = ACTIONS(12291), + [anon_sym_BSLASHtextcolor] = ACTIONS(12291), + [anon_sym_BSLASHpagecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12291), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12291), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12291), + }, + [704] = { + [sym_generic_command_name] = ACTIONS(12287), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12287), + [aux_sym_chapter_token1] = ACTIONS(12287), + [aux_sym_section_token1] = ACTIONS(12287), + [aux_sym_subsection_token1] = ACTIONS(12287), + [aux_sym_subsubsection_token1] = ACTIONS(12287), + [aux_sym_paragraph_token1] = ACTIONS(12287), + [aux_sym_subparagraph_token1] = ACTIONS(12287), + [anon_sym_BSLASHitem] = ACTIONS(12287), + [anon_sym_LBRACK] = ACTIONS(12285), + [anon_sym_LBRACE] = ACTIONS(12285), + [anon_sym_LPAREN] = ACTIONS(12285), + [anon_sym_COMMA] = ACTIONS(12285), + [anon_sym_EQ] = ACTIONS(12285), + [sym_word] = ACTIONS(12285), + [sym_param] = ACTIONS(12285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12285), + [anon_sym_DOLLAR] = ACTIONS(12287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12285), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12285), + [anon_sym_BSLASHbegin] = ACTIONS(12287), + [anon_sym_BSLASHcaption] = ACTIONS(12287), + [anon_sym_BSLASHcite] = ACTIONS(12287), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCite] = ACTIONS(12287), + [anon_sym_BSLASHnocite] = ACTIONS(12287), + [anon_sym_BSLASHcitet] = ACTIONS(12287), + [anon_sym_BSLASHcitep] = ACTIONS(12287), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteauthor] = ACTIONS(12287), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12287), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitetitle] = ACTIONS(12287), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteyear] = ACTIONS(12287), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitedate] = ACTIONS(12287), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteurl] = ACTIONS(12287), + [anon_sym_BSLASHfullcite] = ACTIONS(12287), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12287), + [anon_sym_BSLASHcitealt] = ACTIONS(12287), + [anon_sym_BSLASHcitealp] = ACTIONS(12287), + [anon_sym_BSLASHcitetext] = ACTIONS(12287), + [anon_sym_BSLASHparencite] = ACTIONS(12287), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHParencite] = ACTIONS(12287), + [anon_sym_BSLASHfootcite] = ACTIONS(12287), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12287), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12287), + [anon_sym_BSLASHtextcite] = ACTIONS(12287), + [anon_sym_BSLASHTextcite] = ACTIONS(12287), + [anon_sym_BSLASHsmartcite] = ACTIONS(12287), + [anon_sym_BSLASHSmartcite] = ACTIONS(12287), + [anon_sym_BSLASHsupercite] = ACTIONS(12287), + [anon_sym_BSLASHautocite] = ACTIONS(12287), + [anon_sym_BSLASHAutocite] = ACTIONS(12287), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHvolcite] = ACTIONS(12287), + [anon_sym_BSLASHVolcite] = ACTIONS(12287), + [anon_sym_BSLASHpvolcite] = ACTIONS(12287), + [anon_sym_BSLASHPvolcite] = ACTIONS(12287), + [anon_sym_BSLASHfvolcite] = ACTIONS(12287), + [anon_sym_BSLASHftvolcite] = ACTIONS(12287), + [anon_sym_BSLASHsvolcite] = ACTIONS(12287), + [anon_sym_BSLASHSvolcite] = ACTIONS(12287), + [anon_sym_BSLASHtvolcite] = ACTIONS(12287), + [anon_sym_BSLASHTvolcite] = ACTIONS(12287), + [anon_sym_BSLASHavolcite] = ACTIONS(12287), + [anon_sym_BSLASHAvolcite] = ACTIONS(12287), + [anon_sym_BSLASHnotecite] = ACTIONS(12287), + [anon_sym_BSLASHpnotecite] = ACTIONS(12287), + [anon_sym_BSLASHPnotecite] = ACTIONS(12287), + [anon_sym_BSLASHfnotecite] = ACTIONS(12287), + [anon_sym_BSLASHusepackage] = ACTIONS(12287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12287), + [anon_sym_BSLASHinclude] = ACTIONS(12287), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12287), + [anon_sym_BSLASHinput] = ACTIONS(12287), + [anon_sym_BSLASHsubfile] = ACTIONS(12287), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12287), + [anon_sym_BSLASHbibliography] = ACTIONS(12287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12287), + [anon_sym_BSLASHincludesvg] = ACTIONS(12287), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12287), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12287), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12287), + [anon_sym_BSLASHimport] = ACTIONS(12287), + [anon_sym_BSLASHsubimport] = ACTIONS(12287), + [anon_sym_BSLASHinputfrom] = ACTIONS(12287), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12287), + [anon_sym_BSLASHincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHlabel] = ACTIONS(12287), + [anon_sym_BSLASHref] = ACTIONS(12287), + [anon_sym_BSLASHvref] = ACTIONS(12287), + [anon_sym_BSLASHVref] = ACTIONS(12287), + [anon_sym_BSLASHautoref] = ACTIONS(12287), + [anon_sym_BSLASHpageref] = ACTIONS(12287), + [anon_sym_BSLASHcref] = ACTIONS(12287), + [anon_sym_BSLASHCref] = ACTIONS(12287), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnameCref] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHlabelcref] = ACTIONS(12287), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12287), + [anon_sym_BSLASHeqref] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange] = ACTIONS(12287), + [anon_sym_BSLASHCrefrange] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewlabel] = ACTIONS(12287), + [anon_sym_BSLASHnewcommand] = ACTIONS(12287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12287), + [anon_sym_BSLASHgls] = ACTIONS(12287), + [anon_sym_BSLASHGls] = ACTIONS(12287), + [anon_sym_BSLASHGLS] = ACTIONS(12287), + [anon_sym_BSLASHglspl] = ACTIONS(12287), + [anon_sym_BSLASHGlspl] = ACTIONS(12287), + [anon_sym_BSLASHGLSpl] = ACTIONS(12287), + [anon_sym_BSLASHglsdisp] = ACTIONS(12287), + [anon_sym_BSLASHglslink] = ACTIONS(12287), + [anon_sym_BSLASHglstext] = ACTIONS(12287), + [anon_sym_BSLASHGlstext] = ACTIONS(12287), + [anon_sym_BSLASHGLStext] = ACTIONS(12287), + [anon_sym_BSLASHglsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12287), + [anon_sym_BSLASHglsplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSplural] = ACTIONS(12287), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHglsname] = ACTIONS(12287), + [anon_sym_BSLASHGlsname] = ACTIONS(12287), + [anon_sym_BSLASHGLSname] = ACTIONS(12287), + [anon_sym_BSLASHglssymbol] = ACTIONS(12287), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12287), + [anon_sym_BSLASHglsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12287), + [anon_sym_BSLASHglsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12287), + [anon_sym_BSLASHglsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12287), + [anon_sym_BSLASHglsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12287), + [anon_sym_BSLASHglsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12287), + [anon_sym_BSLASHnewacronym] = ACTIONS(12287), + [anon_sym_BSLASHacrshort] = ACTIONS(12287), + [anon_sym_BSLASHAcrshort] = ACTIONS(12287), + [anon_sym_BSLASHACRshort] = ACTIONS(12287), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12287), + [anon_sym_BSLASHacrlong] = ACTIONS(12287), + [anon_sym_BSLASHAcrlong] = ACTIONS(12287), + [anon_sym_BSLASHACRlong] = ACTIONS(12287), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12287), + [anon_sym_BSLASHacrfull] = ACTIONS(12287), + [anon_sym_BSLASHAcrfull] = ACTIONS(12287), + [anon_sym_BSLASHACRfull] = ACTIONS(12287), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12287), + [anon_sym_BSLASHacs] = ACTIONS(12287), + [anon_sym_BSLASHAcs] = ACTIONS(12287), + [anon_sym_BSLASHacsp] = ACTIONS(12287), + [anon_sym_BSLASHAcsp] = ACTIONS(12287), + [anon_sym_BSLASHacl] = ACTIONS(12287), + [anon_sym_BSLASHAcl] = ACTIONS(12287), + [anon_sym_BSLASHaclp] = ACTIONS(12287), + [anon_sym_BSLASHAclp] = ACTIONS(12287), + [anon_sym_BSLASHacf] = ACTIONS(12287), + [anon_sym_BSLASHAcf] = ACTIONS(12287), + [anon_sym_BSLASHacfp] = ACTIONS(12287), + [anon_sym_BSLASHAcfp] = ACTIONS(12287), + [anon_sym_BSLASHac] = ACTIONS(12287), + [anon_sym_BSLASHAc] = ACTIONS(12287), + [anon_sym_BSLASHacp] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12287), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12287), + [anon_sym_BSLASHcolor] = ACTIONS(12287), + [anon_sym_BSLASHcolorbox] = ACTIONS(12287), + [anon_sym_BSLASHtextcolor] = ACTIONS(12287), + [anon_sym_BSLASHpagecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12287), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12287), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12287), + }, + [705] = { + [sym_generic_command_name] = ACTIONS(12279), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12279), + [aux_sym_chapter_token1] = ACTIONS(12279), + [aux_sym_section_token1] = ACTIONS(12279), + [aux_sym_subsection_token1] = ACTIONS(12279), + [aux_sym_subsubsection_token1] = ACTIONS(12279), + [aux_sym_paragraph_token1] = ACTIONS(12279), + [aux_sym_subparagraph_token1] = ACTIONS(12279), + [anon_sym_BSLASHitem] = ACTIONS(12279), + [anon_sym_LBRACK] = ACTIONS(12277), + [anon_sym_LBRACE] = ACTIONS(12277), + [anon_sym_LPAREN] = ACTIONS(12277), + [anon_sym_COMMA] = ACTIONS(12277), + [anon_sym_EQ] = ACTIONS(12277), + [sym_word] = ACTIONS(12277), + [sym_param] = ACTIONS(12277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12277), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12277), + [anon_sym_DOLLAR] = ACTIONS(12279), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12277), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12277), + [anon_sym_BSLASHbegin] = ACTIONS(12279), + [anon_sym_BSLASHcaption] = ACTIONS(12279), + [anon_sym_BSLASHcite] = ACTIONS(12279), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCite] = ACTIONS(12279), + [anon_sym_BSLASHnocite] = ACTIONS(12279), + [anon_sym_BSLASHcitet] = ACTIONS(12279), + [anon_sym_BSLASHcitep] = ACTIONS(12279), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteauthor] = ACTIONS(12279), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12279), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitetitle] = ACTIONS(12279), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteyear] = ACTIONS(12279), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitedate] = ACTIONS(12279), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteurl] = ACTIONS(12279), + [anon_sym_BSLASHfullcite] = ACTIONS(12279), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12279), + [anon_sym_BSLASHcitealt] = ACTIONS(12279), + [anon_sym_BSLASHcitealp] = ACTIONS(12279), + [anon_sym_BSLASHcitetext] = ACTIONS(12279), + [anon_sym_BSLASHparencite] = ACTIONS(12279), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHParencite] = ACTIONS(12279), + [anon_sym_BSLASHfootcite] = ACTIONS(12279), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12279), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12279), + [anon_sym_BSLASHtextcite] = ACTIONS(12279), + [anon_sym_BSLASHTextcite] = ACTIONS(12279), + [anon_sym_BSLASHsmartcite] = ACTIONS(12279), + [anon_sym_BSLASHSmartcite] = ACTIONS(12279), + [anon_sym_BSLASHsupercite] = ACTIONS(12279), + [anon_sym_BSLASHautocite] = ACTIONS(12279), + [anon_sym_BSLASHAutocite] = ACTIONS(12279), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHvolcite] = ACTIONS(12279), + [anon_sym_BSLASHVolcite] = ACTIONS(12279), + [anon_sym_BSLASHpvolcite] = ACTIONS(12279), + [anon_sym_BSLASHPvolcite] = ACTIONS(12279), + [anon_sym_BSLASHfvolcite] = ACTIONS(12279), + [anon_sym_BSLASHftvolcite] = ACTIONS(12279), + [anon_sym_BSLASHsvolcite] = ACTIONS(12279), + [anon_sym_BSLASHSvolcite] = ACTIONS(12279), + [anon_sym_BSLASHtvolcite] = ACTIONS(12279), + [anon_sym_BSLASHTvolcite] = ACTIONS(12279), + [anon_sym_BSLASHavolcite] = ACTIONS(12279), + [anon_sym_BSLASHAvolcite] = ACTIONS(12279), + [anon_sym_BSLASHnotecite] = ACTIONS(12279), + [anon_sym_BSLASHpnotecite] = ACTIONS(12279), + [anon_sym_BSLASHPnotecite] = ACTIONS(12279), + [anon_sym_BSLASHfnotecite] = ACTIONS(12279), + [anon_sym_BSLASHusepackage] = ACTIONS(12279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12279), + [anon_sym_BSLASHinclude] = ACTIONS(12279), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12279), + [anon_sym_BSLASHinput] = ACTIONS(12279), + [anon_sym_BSLASHsubfile] = ACTIONS(12279), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12279), + [anon_sym_BSLASHbibliography] = ACTIONS(12279), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12279), + [anon_sym_BSLASHincludesvg] = ACTIONS(12279), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12279), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12279), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12279), + [anon_sym_BSLASHimport] = ACTIONS(12279), + [anon_sym_BSLASHsubimport] = ACTIONS(12279), + [anon_sym_BSLASHinputfrom] = ACTIONS(12279), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12279), + [anon_sym_BSLASHincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHlabel] = ACTIONS(12279), + [anon_sym_BSLASHref] = ACTIONS(12279), + [anon_sym_BSLASHvref] = ACTIONS(12279), + [anon_sym_BSLASHVref] = ACTIONS(12279), + [anon_sym_BSLASHautoref] = ACTIONS(12279), + [anon_sym_BSLASHpageref] = ACTIONS(12279), + [anon_sym_BSLASHcref] = ACTIONS(12279), + [anon_sym_BSLASHCref] = ACTIONS(12279), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnameCref] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHlabelcref] = ACTIONS(12279), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12279), + [anon_sym_BSLASHeqref] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange] = ACTIONS(12279), + [anon_sym_BSLASHCrefrange] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewlabel] = ACTIONS(12279), + [anon_sym_BSLASHnewcommand] = ACTIONS(12279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12279), + [anon_sym_BSLASHgls] = ACTIONS(12279), + [anon_sym_BSLASHGls] = ACTIONS(12279), + [anon_sym_BSLASHGLS] = ACTIONS(12279), + [anon_sym_BSLASHglspl] = ACTIONS(12279), + [anon_sym_BSLASHGlspl] = ACTIONS(12279), + [anon_sym_BSLASHGLSpl] = ACTIONS(12279), + [anon_sym_BSLASHglsdisp] = ACTIONS(12279), + [anon_sym_BSLASHglslink] = ACTIONS(12279), + [anon_sym_BSLASHglstext] = ACTIONS(12279), + [anon_sym_BSLASHGlstext] = ACTIONS(12279), + [anon_sym_BSLASHGLStext] = ACTIONS(12279), + [anon_sym_BSLASHglsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12279), + [anon_sym_BSLASHglsplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSplural] = ACTIONS(12279), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHglsname] = ACTIONS(12279), + [anon_sym_BSLASHGlsname] = ACTIONS(12279), + [anon_sym_BSLASHGLSname] = ACTIONS(12279), + [anon_sym_BSLASHglssymbol] = ACTIONS(12279), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12279), + [anon_sym_BSLASHglsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12279), + [anon_sym_BSLASHglsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12279), + [anon_sym_BSLASHglsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12279), + [anon_sym_BSLASHglsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12279), + [anon_sym_BSLASHglsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12279), + [anon_sym_BSLASHnewacronym] = ACTIONS(12279), + [anon_sym_BSLASHacrshort] = ACTIONS(12279), + [anon_sym_BSLASHAcrshort] = ACTIONS(12279), + [anon_sym_BSLASHACRshort] = ACTIONS(12279), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12279), + [anon_sym_BSLASHacrlong] = ACTIONS(12279), + [anon_sym_BSLASHAcrlong] = ACTIONS(12279), + [anon_sym_BSLASHACRlong] = ACTIONS(12279), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12279), + [anon_sym_BSLASHacrfull] = ACTIONS(12279), + [anon_sym_BSLASHAcrfull] = ACTIONS(12279), + [anon_sym_BSLASHACRfull] = ACTIONS(12279), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12279), + [anon_sym_BSLASHacs] = ACTIONS(12279), + [anon_sym_BSLASHAcs] = ACTIONS(12279), + [anon_sym_BSLASHacsp] = ACTIONS(12279), + [anon_sym_BSLASHAcsp] = ACTIONS(12279), + [anon_sym_BSLASHacl] = ACTIONS(12279), + [anon_sym_BSLASHAcl] = ACTIONS(12279), + [anon_sym_BSLASHaclp] = ACTIONS(12279), + [anon_sym_BSLASHAclp] = ACTIONS(12279), + [anon_sym_BSLASHacf] = ACTIONS(12279), + [anon_sym_BSLASHAcf] = ACTIONS(12279), + [anon_sym_BSLASHacfp] = ACTIONS(12279), + [anon_sym_BSLASHAcfp] = ACTIONS(12279), + [anon_sym_BSLASHac] = ACTIONS(12279), + [anon_sym_BSLASHAc] = ACTIONS(12279), + [anon_sym_BSLASHacp] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12279), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12279), + [anon_sym_BSLASHcolor] = ACTIONS(12279), + [anon_sym_BSLASHcolorbox] = ACTIONS(12279), + [anon_sym_BSLASHtextcolor] = ACTIONS(12279), + [anon_sym_BSLASHpagecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12279), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12279), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12279), + }, + [706] = { + [sym_generic_command_name] = ACTIONS(12271), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12271), + [aux_sym_chapter_token1] = ACTIONS(12271), + [aux_sym_section_token1] = ACTIONS(12271), + [aux_sym_subsection_token1] = ACTIONS(12271), + [aux_sym_subsubsection_token1] = ACTIONS(12271), + [aux_sym_paragraph_token1] = ACTIONS(12271), + [aux_sym_subparagraph_token1] = ACTIONS(12271), + [anon_sym_BSLASHitem] = ACTIONS(12271), + [anon_sym_LBRACK] = ACTIONS(12269), + [anon_sym_LBRACE] = ACTIONS(12269), + [anon_sym_LPAREN] = ACTIONS(12269), + [anon_sym_COMMA] = ACTIONS(12269), + [anon_sym_EQ] = ACTIONS(12269), + [sym_word] = ACTIONS(12269), + [sym_param] = ACTIONS(12269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12269), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12269), + [anon_sym_DOLLAR] = ACTIONS(12271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12269), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12269), + [anon_sym_BSLASHbegin] = ACTIONS(12271), + [anon_sym_BSLASHcaption] = ACTIONS(12271), + [anon_sym_BSLASHcite] = ACTIONS(12271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCite] = ACTIONS(12271), + [anon_sym_BSLASHnocite] = ACTIONS(12271), + [anon_sym_BSLASHcitet] = ACTIONS(12271), + [anon_sym_BSLASHcitep] = ACTIONS(12271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteauthor] = ACTIONS(12271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitetitle] = ACTIONS(12271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteyear] = ACTIONS(12271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitedate] = ACTIONS(12271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteurl] = ACTIONS(12271), + [anon_sym_BSLASHfullcite] = ACTIONS(12271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12271), + [anon_sym_BSLASHcitealt] = ACTIONS(12271), + [anon_sym_BSLASHcitealp] = ACTIONS(12271), + [anon_sym_BSLASHcitetext] = ACTIONS(12271), + [anon_sym_BSLASHparencite] = ACTIONS(12271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHParencite] = ACTIONS(12271), + [anon_sym_BSLASHfootcite] = ACTIONS(12271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12271), + [anon_sym_BSLASHtextcite] = ACTIONS(12271), + [anon_sym_BSLASHTextcite] = ACTIONS(12271), + [anon_sym_BSLASHsmartcite] = ACTIONS(12271), + [anon_sym_BSLASHSmartcite] = ACTIONS(12271), + [anon_sym_BSLASHsupercite] = ACTIONS(12271), + [anon_sym_BSLASHautocite] = ACTIONS(12271), + [anon_sym_BSLASHAutocite] = ACTIONS(12271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHvolcite] = ACTIONS(12271), + [anon_sym_BSLASHVolcite] = ACTIONS(12271), + [anon_sym_BSLASHpvolcite] = ACTIONS(12271), + [anon_sym_BSLASHPvolcite] = ACTIONS(12271), + [anon_sym_BSLASHfvolcite] = ACTIONS(12271), + [anon_sym_BSLASHftvolcite] = ACTIONS(12271), + [anon_sym_BSLASHsvolcite] = ACTIONS(12271), + [anon_sym_BSLASHSvolcite] = ACTIONS(12271), + [anon_sym_BSLASHtvolcite] = ACTIONS(12271), + [anon_sym_BSLASHTvolcite] = ACTIONS(12271), + [anon_sym_BSLASHavolcite] = ACTIONS(12271), + [anon_sym_BSLASHAvolcite] = ACTIONS(12271), + [anon_sym_BSLASHnotecite] = ACTIONS(12271), + [anon_sym_BSLASHpnotecite] = ACTIONS(12271), + [anon_sym_BSLASHPnotecite] = ACTIONS(12271), + [anon_sym_BSLASHfnotecite] = ACTIONS(12271), + [anon_sym_BSLASHusepackage] = ACTIONS(12271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12271), + [anon_sym_BSLASHinclude] = ACTIONS(12271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12271), + [anon_sym_BSLASHinput] = ACTIONS(12271), + [anon_sym_BSLASHsubfile] = ACTIONS(12271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12271), + [anon_sym_BSLASHbibliography] = ACTIONS(12271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12271), + [anon_sym_BSLASHincludesvg] = ACTIONS(12271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12271), + [anon_sym_BSLASHimport] = ACTIONS(12271), + [anon_sym_BSLASHsubimport] = ACTIONS(12271), + [anon_sym_BSLASHinputfrom] = ACTIONS(12271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12271), + [anon_sym_BSLASHincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHlabel] = ACTIONS(12271), + [anon_sym_BSLASHref] = ACTIONS(12271), + [anon_sym_BSLASHvref] = ACTIONS(12271), + [anon_sym_BSLASHVref] = ACTIONS(12271), + [anon_sym_BSLASHautoref] = ACTIONS(12271), + [anon_sym_BSLASHpageref] = ACTIONS(12271), + [anon_sym_BSLASHcref] = ACTIONS(12271), + [anon_sym_BSLASHCref] = ACTIONS(12271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnameCref] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHlabelcref] = ACTIONS(12271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12271), + [anon_sym_BSLASHeqref] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange] = ACTIONS(12271), + [anon_sym_BSLASHCrefrange] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewlabel] = ACTIONS(12271), + [anon_sym_BSLASHnewcommand] = ACTIONS(12271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12271), + [anon_sym_BSLASHgls] = ACTIONS(12271), + [anon_sym_BSLASHGls] = ACTIONS(12271), + [anon_sym_BSLASHGLS] = ACTIONS(12271), + [anon_sym_BSLASHglspl] = ACTIONS(12271), + [anon_sym_BSLASHGlspl] = ACTIONS(12271), + [anon_sym_BSLASHGLSpl] = ACTIONS(12271), + [anon_sym_BSLASHglsdisp] = ACTIONS(12271), + [anon_sym_BSLASHglslink] = ACTIONS(12271), + [anon_sym_BSLASHglstext] = ACTIONS(12271), + [anon_sym_BSLASHGlstext] = ACTIONS(12271), + [anon_sym_BSLASHGLStext] = ACTIONS(12271), + [anon_sym_BSLASHglsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12271), + [anon_sym_BSLASHglsplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSplural] = ACTIONS(12271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHglsname] = ACTIONS(12271), + [anon_sym_BSLASHGlsname] = ACTIONS(12271), + [anon_sym_BSLASHGLSname] = ACTIONS(12271), + [anon_sym_BSLASHglssymbol] = ACTIONS(12271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12271), + [anon_sym_BSLASHglsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12271), + [anon_sym_BSLASHglsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12271), + [anon_sym_BSLASHglsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12271), + [anon_sym_BSLASHglsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12271), + [anon_sym_BSLASHglsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12271), + [anon_sym_BSLASHnewacronym] = ACTIONS(12271), + [anon_sym_BSLASHacrshort] = ACTIONS(12271), + [anon_sym_BSLASHAcrshort] = ACTIONS(12271), + [anon_sym_BSLASHACRshort] = ACTIONS(12271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12271), + [anon_sym_BSLASHacrlong] = ACTIONS(12271), + [anon_sym_BSLASHAcrlong] = ACTIONS(12271), + [anon_sym_BSLASHACRlong] = ACTIONS(12271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12271), + [anon_sym_BSLASHacrfull] = ACTIONS(12271), + [anon_sym_BSLASHAcrfull] = ACTIONS(12271), + [anon_sym_BSLASHACRfull] = ACTIONS(12271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12271), + [anon_sym_BSLASHacs] = ACTIONS(12271), + [anon_sym_BSLASHAcs] = ACTIONS(12271), + [anon_sym_BSLASHacsp] = ACTIONS(12271), + [anon_sym_BSLASHAcsp] = ACTIONS(12271), + [anon_sym_BSLASHacl] = ACTIONS(12271), + [anon_sym_BSLASHAcl] = ACTIONS(12271), + [anon_sym_BSLASHaclp] = ACTIONS(12271), + [anon_sym_BSLASHAclp] = ACTIONS(12271), + [anon_sym_BSLASHacf] = ACTIONS(12271), + [anon_sym_BSLASHAcf] = ACTIONS(12271), + [anon_sym_BSLASHacfp] = ACTIONS(12271), + [anon_sym_BSLASHAcfp] = ACTIONS(12271), + [anon_sym_BSLASHac] = ACTIONS(12271), + [anon_sym_BSLASHAc] = ACTIONS(12271), + [anon_sym_BSLASHacp] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12271), + [anon_sym_BSLASHcolor] = ACTIONS(12271), + [anon_sym_BSLASHcolorbox] = ACTIONS(12271), + [anon_sym_BSLASHtextcolor] = ACTIONS(12271), + [anon_sym_BSLASHpagecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12271), + }, + [707] = { + [sym_generic_command_name] = ACTIONS(12267), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12267), + [aux_sym_chapter_token1] = ACTIONS(12267), + [aux_sym_section_token1] = ACTIONS(12267), + [aux_sym_subsection_token1] = ACTIONS(12267), + [aux_sym_subsubsection_token1] = ACTIONS(12267), + [aux_sym_paragraph_token1] = ACTIONS(12267), + [aux_sym_subparagraph_token1] = ACTIONS(12267), + [anon_sym_BSLASHitem] = ACTIONS(12267), + [anon_sym_LBRACK] = ACTIONS(12265), + [anon_sym_LBRACE] = ACTIONS(12265), + [anon_sym_LPAREN] = ACTIONS(12265), + [anon_sym_COMMA] = ACTIONS(12265), + [anon_sym_EQ] = ACTIONS(12265), + [sym_word] = ACTIONS(12265), + [sym_param] = ACTIONS(12265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12265), + [anon_sym_DOLLAR] = ACTIONS(12267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12265), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12265), + [anon_sym_BSLASHbegin] = ACTIONS(12267), + [anon_sym_BSLASHcaption] = ACTIONS(12267), + [anon_sym_BSLASHcite] = ACTIONS(12267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCite] = ACTIONS(12267), + [anon_sym_BSLASHnocite] = ACTIONS(12267), + [anon_sym_BSLASHcitet] = ACTIONS(12267), + [anon_sym_BSLASHcitep] = ACTIONS(12267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteauthor] = ACTIONS(12267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitetitle] = ACTIONS(12267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteyear] = ACTIONS(12267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitedate] = ACTIONS(12267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteurl] = ACTIONS(12267), + [anon_sym_BSLASHfullcite] = ACTIONS(12267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12267), + [anon_sym_BSLASHcitealt] = ACTIONS(12267), + [anon_sym_BSLASHcitealp] = ACTIONS(12267), + [anon_sym_BSLASHcitetext] = ACTIONS(12267), + [anon_sym_BSLASHparencite] = ACTIONS(12267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHParencite] = ACTIONS(12267), + [anon_sym_BSLASHfootcite] = ACTIONS(12267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12267), + [anon_sym_BSLASHtextcite] = ACTIONS(12267), + [anon_sym_BSLASHTextcite] = ACTIONS(12267), + [anon_sym_BSLASHsmartcite] = ACTIONS(12267), + [anon_sym_BSLASHSmartcite] = ACTIONS(12267), + [anon_sym_BSLASHsupercite] = ACTIONS(12267), + [anon_sym_BSLASHautocite] = ACTIONS(12267), + [anon_sym_BSLASHAutocite] = ACTIONS(12267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHvolcite] = ACTIONS(12267), + [anon_sym_BSLASHVolcite] = ACTIONS(12267), + [anon_sym_BSLASHpvolcite] = ACTIONS(12267), + [anon_sym_BSLASHPvolcite] = ACTIONS(12267), + [anon_sym_BSLASHfvolcite] = ACTIONS(12267), + [anon_sym_BSLASHftvolcite] = ACTIONS(12267), + [anon_sym_BSLASHsvolcite] = ACTIONS(12267), + [anon_sym_BSLASHSvolcite] = ACTIONS(12267), + [anon_sym_BSLASHtvolcite] = ACTIONS(12267), + [anon_sym_BSLASHTvolcite] = ACTIONS(12267), + [anon_sym_BSLASHavolcite] = ACTIONS(12267), + [anon_sym_BSLASHAvolcite] = ACTIONS(12267), + [anon_sym_BSLASHnotecite] = ACTIONS(12267), + [anon_sym_BSLASHpnotecite] = ACTIONS(12267), + [anon_sym_BSLASHPnotecite] = ACTIONS(12267), + [anon_sym_BSLASHfnotecite] = ACTIONS(12267), + [anon_sym_BSLASHusepackage] = ACTIONS(12267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12267), + [anon_sym_BSLASHinclude] = ACTIONS(12267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12267), + [anon_sym_BSLASHinput] = ACTIONS(12267), + [anon_sym_BSLASHsubfile] = ACTIONS(12267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12267), + [anon_sym_BSLASHbibliography] = ACTIONS(12267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12267), + [anon_sym_BSLASHincludesvg] = ACTIONS(12267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12267), + [anon_sym_BSLASHimport] = ACTIONS(12267), + [anon_sym_BSLASHsubimport] = ACTIONS(12267), + [anon_sym_BSLASHinputfrom] = ACTIONS(12267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12267), + [anon_sym_BSLASHincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHlabel] = ACTIONS(12267), + [anon_sym_BSLASHref] = ACTIONS(12267), + [anon_sym_BSLASHvref] = ACTIONS(12267), + [anon_sym_BSLASHVref] = ACTIONS(12267), + [anon_sym_BSLASHautoref] = ACTIONS(12267), + [anon_sym_BSLASHpageref] = ACTIONS(12267), + [anon_sym_BSLASHcref] = ACTIONS(12267), + [anon_sym_BSLASHCref] = ACTIONS(12267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnameCref] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHlabelcref] = ACTIONS(12267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12267), + [anon_sym_BSLASHeqref] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange] = ACTIONS(12267), + [anon_sym_BSLASHCrefrange] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewlabel] = ACTIONS(12267), + [anon_sym_BSLASHnewcommand] = ACTIONS(12267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12267), + [anon_sym_BSLASHgls] = ACTIONS(12267), + [anon_sym_BSLASHGls] = ACTIONS(12267), + [anon_sym_BSLASHGLS] = ACTIONS(12267), + [anon_sym_BSLASHglspl] = ACTIONS(12267), + [anon_sym_BSLASHGlspl] = ACTIONS(12267), + [anon_sym_BSLASHGLSpl] = ACTIONS(12267), + [anon_sym_BSLASHglsdisp] = ACTIONS(12267), + [anon_sym_BSLASHglslink] = ACTIONS(12267), + [anon_sym_BSLASHglstext] = ACTIONS(12267), + [anon_sym_BSLASHGlstext] = ACTIONS(12267), + [anon_sym_BSLASHGLStext] = ACTIONS(12267), + [anon_sym_BSLASHglsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12267), + [anon_sym_BSLASHglsplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSplural] = ACTIONS(12267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHglsname] = ACTIONS(12267), + [anon_sym_BSLASHGlsname] = ACTIONS(12267), + [anon_sym_BSLASHGLSname] = ACTIONS(12267), + [anon_sym_BSLASHglssymbol] = ACTIONS(12267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12267), + [anon_sym_BSLASHglsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12267), + [anon_sym_BSLASHglsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12267), + [anon_sym_BSLASHglsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12267), + [anon_sym_BSLASHglsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12267), + [anon_sym_BSLASHglsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12267), + [anon_sym_BSLASHnewacronym] = ACTIONS(12267), + [anon_sym_BSLASHacrshort] = ACTIONS(12267), + [anon_sym_BSLASHAcrshort] = ACTIONS(12267), + [anon_sym_BSLASHACRshort] = ACTIONS(12267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12267), + [anon_sym_BSLASHacrlong] = ACTIONS(12267), + [anon_sym_BSLASHAcrlong] = ACTIONS(12267), + [anon_sym_BSLASHACRlong] = ACTIONS(12267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12267), + [anon_sym_BSLASHacrfull] = ACTIONS(12267), + [anon_sym_BSLASHAcrfull] = ACTIONS(12267), + [anon_sym_BSLASHACRfull] = ACTIONS(12267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12267), + [anon_sym_BSLASHacs] = ACTIONS(12267), + [anon_sym_BSLASHAcs] = ACTIONS(12267), + [anon_sym_BSLASHacsp] = ACTIONS(12267), + [anon_sym_BSLASHAcsp] = ACTIONS(12267), + [anon_sym_BSLASHacl] = ACTIONS(12267), + [anon_sym_BSLASHAcl] = ACTIONS(12267), + [anon_sym_BSLASHaclp] = ACTIONS(12267), + [anon_sym_BSLASHAclp] = ACTIONS(12267), + [anon_sym_BSLASHacf] = ACTIONS(12267), + [anon_sym_BSLASHAcf] = ACTIONS(12267), + [anon_sym_BSLASHacfp] = ACTIONS(12267), + [anon_sym_BSLASHAcfp] = ACTIONS(12267), + [anon_sym_BSLASHac] = ACTIONS(12267), + [anon_sym_BSLASHAc] = ACTIONS(12267), + [anon_sym_BSLASHacp] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12267), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12267), + [anon_sym_BSLASHcolor] = ACTIONS(12267), + [anon_sym_BSLASHcolorbox] = ACTIONS(12267), + [anon_sym_BSLASHtextcolor] = ACTIONS(12267), + [anon_sym_BSLASHpagecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12267), + }, + [708] = { + [sym_generic_command_name] = ACTIONS(12319), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12319), + [aux_sym_chapter_token1] = ACTIONS(12319), + [aux_sym_section_token1] = ACTIONS(12319), + [aux_sym_subsection_token1] = ACTIONS(12319), + [aux_sym_subsubsection_token1] = ACTIONS(12319), + [aux_sym_paragraph_token1] = ACTIONS(12319), + [aux_sym_subparagraph_token1] = ACTIONS(12319), + [anon_sym_BSLASHitem] = ACTIONS(12319), + [anon_sym_LBRACK] = ACTIONS(12317), + [anon_sym_LBRACE] = ACTIONS(12317), + [anon_sym_LPAREN] = ACTIONS(12317), + [anon_sym_COMMA] = ACTIONS(12317), + [anon_sym_EQ] = ACTIONS(12317), + [sym_word] = ACTIONS(12317), + [sym_param] = ACTIONS(12317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12317), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12317), + [anon_sym_DOLLAR] = ACTIONS(12319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12317), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12317), + [anon_sym_BSLASHbegin] = ACTIONS(12319), + [anon_sym_BSLASHcaption] = ACTIONS(12319), + [anon_sym_BSLASHcite] = ACTIONS(12319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCite] = ACTIONS(12319), + [anon_sym_BSLASHnocite] = ACTIONS(12319), + [anon_sym_BSLASHcitet] = ACTIONS(12319), + [anon_sym_BSLASHcitep] = ACTIONS(12319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteauthor] = ACTIONS(12319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitetitle] = ACTIONS(12319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteyear] = ACTIONS(12319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitedate] = ACTIONS(12319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteurl] = ACTIONS(12319), + [anon_sym_BSLASHfullcite] = ACTIONS(12319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12319), + [anon_sym_BSLASHcitealt] = ACTIONS(12319), + [anon_sym_BSLASHcitealp] = ACTIONS(12319), + [anon_sym_BSLASHcitetext] = ACTIONS(12319), + [anon_sym_BSLASHparencite] = ACTIONS(12319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHParencite] = ACTIONS(12319), + [anon_sym_BSLASHfootcite] = ACTIONS(12319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12319), + [anon_sym_BSLASHtextcite] = ACTIONS(12319), + [anon_sym_BSLASHTextcite] = ACTIONS(12319), + [anon_sym_BSLASHsmartcite] = ACTIONS(12319), + [anon_sym_BSLASHSmartcite] = ACTIONS(12319), + [anon_sym_BSLASHsupercite] = ACTIONS(12319), + [anon_sym_BSLASHautocite] = ACTIONS(12319), + [anon_sym_BSLASHAutocite] = ACTIONS(12319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHvolcite] = ACTIONS(12319), + [anon_sym_BSLASHVolcite] = ACTIONS(12319), + [anon_sym_BSLASHpvolcite] = ACTIONS(12319), + [anon_sym_BSLASHPvolcite] = ACTIONS(12319), + [anon_sym_BSLASHfvolcite] = ACTIONS(12319), + [anon_sym_BSLASHftvolcite] = ACTIONS(12319), + [anon_sym_BSLASHsvolcite] = ACTIONS(12319), + [anon_sym_BSLASHSvolcite] = ACTIONS(12319), + [anon_sym_BSLASHtvolcite] = ACTIONS(12319), + [anon_sym_BSLASHTvolcite] = ACTIONS(12319), + [anon_sym_BSLASHavolcite] = ACTIONS(12319), + [anon_sym_BSLASHAvolcite] = ACTIONS(12319), + [anon_sym_BSLASHnotecite] = ACTIONS(12319), + [anon_sym_BSLASHpnotecite] = ACTIONS(12319), + [anon_sym_BSLASHPnotecite] = ACTIONS(12319), + [anon_sym_BSLASHfnotecite] = ACTIONS(12319), + [anon_sym_BSLASHusepackage] = ACTIONS(12319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12319), + [anon_sym_BSLASHinclude] = ACTIONS(12319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12319), + [anon_sym_BSLASHinput] = ACTIONS(12319), + [anon_sym_BSLASHsubfile] = ACTIONS(12319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12319), + [anon_sym_BSLASHbibliography] = ACTIONS(12319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12319), + [anon_sym_BSLASHincludesvg] = ACTIONS(12319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12319), + [anon_sym_BSLASHimport] = ACTIONS(12319), + [anon_sym_BSLASHsubimport] = ACTIONS(12319), + [anon_sym_BSLASHinputfrom] = ACTIONS(12319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12319), + [anon_sym_BSLASHincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHlabel] = ACTIONS(12319), + [anon_sym_BSLASHref] = ACTIONS(12319), + [anon_sym_BSLASHvref] = ACTIONS(12319), + [anon_sym_BSLASHVref] = ACTIONS(12319), + [anon_sym_BSLASHautoref] = ACTIONS(12319), + [anon_sym_BSLASHpageref] = ACTIONS(12319), + [anon_sym_BSLASHcref] = ACTIONS(12319), + [anon_sym_BSLASHCref] = ACTIONS(12319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnameCref] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHlabelcref] = ACTIONS(12319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12319), + [anon_sym_BSLASHeqref] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange] = ACTIONS(12319), + [anon_sym_BSLASHCrefrange] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewlabel] = ACTIONS(12319), + [anon_sym_BSLASHnewcommand] = ACTIONS(12319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12319), + [anon_sym_BSLASHgls] = ACTIONS(12319), + [anon_sym_BSLASHGls] = ACTIONS(12319), + [anon_sym_BSLASHGLS] = ACTIONS(12319), + [anon_sym_BSLASHglspl] = ACTIONS(12319), + [anon_sym_BSLASHGlspl] = ACTIONS(12319), + [anon_sym_BSLASHGLSpl] = ACTIONS(12319), + [anon_sym_BSLASHglsdisp] = ACTIONS(12319), + [anon_sym_BSLASHglslink] = ACTIONS(12319), + [anon_sym_BSLASHglstext] = ACTIONS(12319), + [anon_sym_BSLASHGlstext] = ACTIONS(12319), + [anon_sym_BSLASHGLStext] = ACTIONS(12319), + [anon_sym_BSLASHglsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12319), + [anon_sym_BSLASHglsplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSplural] = ACTIONS(12319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHglsname] = ACTIONS(12319), + [anon_sym_BSLASHGlsname] = ACTIONS(12319), + [anon_sym_BSLASHGLSname] = ACTIONS(12319), + [anon_sym_BSLASHglssymbol] = ACTIONS(12319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12319), + [anon_sym_BSLASHglsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12319), + [anon_sym_BSLASHglsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12319), + [anon_sym_BSLASHglsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12319), + [anon_sym_BSLASHglsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12319), + [anon_sym_BSLASHglsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12319), + [anon_sym_BSLASHnewacronym] = ACTIONS(12319), + [anon_sym_BSLASHacrshort] = ACTIONS(12319), + [anon_sym_BSLASHAcrshort] = ACTIONS(12319), + [anon_sym_BSLASHACRshort] = ACTIONS(12319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12319), + [anon_sym_BSLASHacrlong] = ACTIONS(12319), + [anon_sym_BSLASHAcrlong] = ACTIONS(12319), + [anon_sym_BSLASHACRlong] = ACTIONS(12319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12319), + [anon_sym_BSLASHacrfull] = ACTIONS(12319), + [anon_sym_BSLASHAcrfull] = ACTIONS(12319), + [anon_sym_BSLASHACRfull] = ACTIONS(12319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12319), + [anon_sym_BSLASHacs] = ACTIONS(12319), + [anon_sym_BSLASHAcs] = ACTIONS(12319), + [anon_sym_BSLASHacsp] = ACTIONS(12319), + [anon_sym_BSLASHAcsp] = ACTIONS(12319), + [anon_sym_BSLASHacl] = ACTIONS(12319), + [anon_sym_BSLASHAcl] = ACTIONS(12319), + [anon_sym_BSLASHaclp] = ACTIONS(12319), + [anon_sym_BSLASHAclp] = ACTIONS(12319), + [anon_sym_BSLASHacf] = ACTIONS(12319), + [anon_sym_BSLASHAcf] = ACTIONS(12319), + [anon_sym_BSLASHacfp] = ACTIONS(12319), + [anon_sym_BSLASHAcfp] = ACTIONS(12319), + [anon_sym_BSLASHac] = ACTIONS(12319), + [anon_sym_BSLASHAc] = ACTIONS(12319), + [anon_sym_BSLASHacp] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12319), + [anon_sym_BSLASHcolor] = ACTIONS(12319), + [anon_sym_BSLASHcolorbox] = ACTIONS(12319), + [anon_sym_BSLASHtextcolor] = ACTIONS(12319), + [anon_sym_BSLASHpagecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12319), + }, + [709] = { + [sym_generic_command_name] = ACTIONS(12263), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12263), + [aux_sym_chapter_token1] = ACTIONS(12263), + [aux_sym_section_token1] = ACTIONS(12263), + [aux_sym_subsection_token1] = ACTIONS(12263), + [aux_sym_subsubsection_token1] = ACTIONS(12263), + [aux_sym_paragraph_token1] = ACTIONS(12263), + [aux_sym_subparagraph_token1] = ACTIONS(12263), + [anon_sym_BSLASHitem] = ACTIONS(12263), + [anon_sym_LBRACK] = ACTIONS(12261), + [anon_sym_LBRACE] = ACTIONS(12261), + [anon_sym_LPAREN] = ACTIONS(12261), + [anon_sym_COMMA] = ACTIONS(12261), + [anon_sym_EQ] = ACTIONS(12261), + [sym_word] = ACTIONS(12261), + [sym_param] = ACTIONS(12261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12261), + [anon_sym_DOLLAR] = ACTIONS(12263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12261), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12261), + [anon_sym_BSLASHbegin] = ACTIONS(12263), + [anon_sym_BSLASHcaption] = ACTIONS(12263), + [anon_sym_BSLASHcite] = ACTIONS(12263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCite] = ACTIONS(12263), + [anon_sym_BSLASHnocite] = ACTIONS(12263), + [anon_sym_BSLASHcitet] = ACTIONS(12263), + [anon_sym_BSLASHcitep] = ACTIONS(12263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteauthor] = ACTIONS(12263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitetitle] = ACTIONS(12263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteyear] = ACTIONS(12263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitedate] = ACTIONS(12263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteurl] = ACTIONS(12263), + [anon_sym_BSLASHfullcite] = ACTIONS(12263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12263), + [anon_sym_BSLASHcitealt] = ACTIONS(12263), + [anon_sym_BSLASHcitealp] = ACTIONS(12263), + [anon_sym_BSLASHcitetext] = ACTIONS(12263), + [anon_sym_BSLASHparencite] = ACTIONS(12263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHParencite] = ACTIONS(12263), + [anon_sym_BSLASHfootcite] = ACTIONS(12263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12263), + [anon_sym_BSLASHtextcite] = ACTIONS(12263), + [anon_sym_BSLASHTextcite] = ACTIONS(12263), + [anon_sym_BSLASHsmartcite] = ACTIONS(12263), + [anon_sym_BSLASHSmartcite] = ACTIONS(12263), + [anon_sym_BSLASHsupercite] = ACTIONS(12263), + [anon_sym_BSLASHautocite] = ACTIONS(12263), + [anon_sym_BSLASHAutocite] = ACTIONS(12263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHvolcite] = ACTIONS(12263), + [anon_sym_BSLASHVolcite] = ACTIONS(12263), + [anon_sym_BSLASHpvolcite] = ACTIONS(12263), + [anon_sym_BSLASHPvolcite] = ACTIONS(12263), + [anon_sym_BSLASHfvolcite] = ACTIONS(12263), + [anon_sym_BSLASHftvolcite] = ACTIONS(12263), + [anon_sym_BSLASHsvolcite] = ACTIONS(12263), + [anon_sym_BSLASHSvolcite] = ACTIONS(12263), + [anon_sym_BSLASHtvolcite] = ACTIONS(12263), + [anon_sym_BSLASHTvolcite] = ACTIONS(12263), + [anon_sym_BSLASHavolcite] = ACTIONS(12263), + [anon_sym_BSLASHAvolcite] = ACTIONS(12263), + [anon_sym_BSLASHnotecite] = ACTIONS(12263), + [anon_sym_BSLASHpnotecite] = ACTIONS(12263), + [anon_sym_BSLASHPnotecite] = ACTIONS(12263), + [anon_sym_BSLASHfnotecite] = ACTIONS(12263), + [anon_sym_BSLASHusepackage] = ACTIONS(12263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12263), + [anon_sym_BSLASHinclude] = ACTIONS(12263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12263), + [anon_sym_BSLASHinput] = ACTIONS(12263), + [anon_sym_BSLASHsubfile] = ACTIONS(12263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12263), + [anon_sym_BSLASHbibliography] = ACTIONS(12263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12263), + [anon_sym_BSLASHincludesvg] = ACTIONS(12263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12263), + [anon_sym_BSLASHimport] = ACTIONS(12263), + [anon_sym_BSLASHsubimport] = ACTIONS(12263), + [anon_sym_BSLASHinputfrom] = ACTIONS(12263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12263), + [anon_sym_BSLASHincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHlabel] = ACTIONS(12263), + [anon_sym_BSLASHref] = ACTIONS(12263), + [anon_sym_BSLASHvref] = ACTIONS(12263), + [anon_sym_BSLASHVref] = ACTIONS(12263), + [anon_sym_BSLASHautoref] = ACTIONS(12263), + [anon_sym_BSLASHpageref] = ACTIONS(12263), + [anon_sym_BSLASHcref] = ACTIONS(12263), + [anon_sym_BSLASHCref] = ACTIONS(12263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnameCref] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHlabelcref] = ACTIONS(12263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12263), + [anon_sym_BSLASHeqref] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange] = ACTIONS(12263), + [anon_sym_BSLASHCrefrange] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewlabel] = ACTIONS(12263), + [anon_sym_BSLASHnewcommand] = ACTIONS(12263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12263), + [anon_sym_BSLASHgls] = ACTIONS(12263), + [anon_sym_BSLASHGls] = ACTIONS(12263), + [anon_sym_BSLASHGLS] = ACTIONS(12263), + [anon_sym_BSLASHglspl] = ACTIONS(12263), + [anon_sym_BSLASHGlspl] = ACTIONS(12263), + [anon_sym_BSLASHGLSpl] = ACTIONS(12263), + [anon_sym_BSLASHglsdisp] = ACTIONS(12263), + [anon_sym_BSLASHglslink] = ACTIONS(12263), + [anon_sym_BSLASHglstext] = ACTIONS(12263), + [anon_sym_BSLASHGlstext] = ACTIONS(12263), + [anon_sym_BSLASHGLStext] = ACTIONS(12263), + [anon_sym_BSLASHglsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12263), + [anon_sym_BSLASHglsplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSplural] = ACTIONS(12263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHglsname] = ACTIONS(12263), + [anon_sym_BSLASHGlsname] = ACTIONS(12263), + [anon_sym_BSLASHGLSname] = ACTIONS(12263), + [anon_sym_BSLASHglssymbol] = ACTIONS(12263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12263), + [anon_sym_BSLASHglsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12263), + [anon_sym_BSLASHglsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12263), + [anon_sym_BSLASHglsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12263), + [anon_sym_BSLASHglsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12263), + [anon_sym_BSLASHglsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12263), + [anon_sym_BSLASHnewacronym] = ACTIONS(12263), + [anon_sym_BSLASHacrshort] = ACTIONS(12263), + [anon_sym_BSLASHAcrshort] = ACTIONS(12263), + [anon_sym_BSLASHACRshort] = ACTIONS(12263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12263), + [anon_sym_BSLASHacrlong] = ACTIONS(12263), + [anon_sym_BSLASHAcrlong] = ACTIONS(12263), + [anon_sym_BSLASHACRlong] = ACTIONS(12263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12263), + [anon_sym_BSLASHacrfull] = ACTIONS(12263), + [anon_sym_BSLASHAcrfull] = ACTIONS(12263), + [anon_sym_BSLASHACRfull] = ACTIONS(12263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12263), + [anon_sym_BSLASHacs] = ACTIONS(12263), + [anon_sym_BSLASHAcs] = ACTIONS(12263), + [anon_sym_BSLASHacsp] = ACTIONS(12263), + [anon_sym_BSLASHAcsp] = ACTIONS(12263), + [anon_sym_BSLASHacl] = ACTIONS(12263), + [anon_sym_BSLASHAcl] = ACTIONS(12263), + [anon_sym_BSLASHaclp] = ACTIONS(12263), + [anon_sym_BSLASHAclp] = ACTIONS(12263), + [anon_sym_BSLASHacf] = ACTIONS(12263), + [anon_sym_BSLASHAcf] = ACTIONS(12263), + [anon_sym_BSLASHacfp] = ACTIONS(12263), + [anon_sym_BSLASHAcfp] = ACTIONS(12263), + [anon_sym_BSLASHac] = ACTIONS(12263), + [anon_sym_BSLASHAc] = ACTIONS(12263), + [anon_sym_BSLASHacp] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12263), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12263), + [anon_sym_BSLASHcolor] = ACTIONS(12263), + [anon_sym_BSLASHcolorbox] = ACTIONS(12263), + [anon_sym_BSLASHtextcolor] = ACTIONS(12263), + [anon_sym_BSLASHpagecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12263), + }, + [710] = { + [sym_generic_command_name] = ACTIONS(12259), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12259), + [aux_sym_chapter_token1] = ACTIONS(12259), + [aux_sym_section_token1] = ACTIONS(12259), + [aux_sym_subsection_token1] = ACTIONS(12259), + [aux_sym_subsubsection_token1] = ACTIONS(12259), + [aux_sym_paragraph_token1] = ACTIONS(12259), + [aux_sym_subparagraph_token1] = ACTIONS(12259), + [anon_sym_BSLASHitem] = ACTIONS(12259), + [anon_sym_LBRACK] = ACTIONS(12257), + [anon_sym_LBRACE] = ACTIONS(12257), + [anon_sym_LPAREN] = ACTIONS(12257), + [anon_sym_COMMA] = ACTIONS(12257), + [anon_sym_EQ] = ACTIONS(12257), + [sym_word] = ACTIONS(12257), + [sym_param] = ACTIONS(12257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12257), + [anon_sym_DOLLAR] = ACTIONS(12259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12257), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12257), + [anon_sym_BSLASHbegin] = ACTIONS(12259), + [anon_sym_BSLASHcaption] = ACTIONS(12259), + [anon_sym_BSLASHcite] = ACTIONS(12259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCite] = ACTIONS(12259), + [anon_sym_BSLASHnocite] = ACTIONS(12259), + [anon_sym_BSLASHcitet] = ACTIONS(12259), + [anon_sym_BSLASHcitep] = ACTIONS(12259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteauthor] = ACTIONS(12259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitetitle] = ACTIONS(12259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteyear] = ACTIONS(12259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitedate] = ACTIONS(12259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteurl] = ACTIONS(12259), + [anon_sym_BSLASHfullcite] = ACTIONS(12259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12259), + [anon_sym_BSLASHcitealt] = ACTIONS(12259), + [anon_sym_BSLASHcitealp] = ACTIONS(12259), + [anon_sym_BSLASHcitetext] = ACTIONS(12259), + [anon_sym_BSLASHparencite] = ACTIONS(12259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHParencite] = ACTIONS(12259), + [anon_sym_BSLASHfootcite] = ACTIONS(12259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12259), + [anon_sym_BSLASHtextcite] = ACTIONS(12259), + [anon_sym_BSLASHTextcite] = ACTIONS(12259), + [anon_sym_BSLASHsmartcite] = ACTIONS(12259), + [anon_sym_BSLASHSmartcite] = ACTIONS(12259), + [anon_sym_BSLASHsupercite] = ACTIONS(12259), + [anon_sym_BSLASHautocite] = ACTIONS(12259), + [anon_sym_BSLASHAutocite] = ACTIONS(12259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHvolcite] = ACTIONS(12259), + [anon_sym_BSLASHVolcite] = ACTIONS(12259), + [anon_sym_BSLASHpvolcite] = ACTIONS(12259), + [anon_sym_BSLASHPvolcite] = ACTIONS(12259), + [anon_sym_BSLASHfvolcite] = ACTIONS(12259), + [anon_sym_BSLASHftvolcite] = ACTIONS(12259), + [anon_sym_BSLASHsvolcite] = ACTIONS(12259), + [anon_sym_BSLASHSvolcite] = ACTIONS(12259), + [anon_sym_BSLASHtvolcite] = ACTIONS(12259), + [anon_sym_BSLASHTvolcite] = ACTIONS(12259), + [anon_sym_BSLASHavolcite] = ACTIONS(12259), + [anon_sym_BSLASHAvolcite] = ACTIONS(12259), + [anon_sym_BSLASHnotecite] = ACTIONS(12259), + [anon_sym_BSLASHpnotecite] = ACTIONS(12259), + [anon_sym_BSLASHPnotecite] = ACTIONS(12259), + [anon_sym_BSLASHfnotecite] = ACTIONS(12259), + [anon_sym_BSLASHusepackage] = ACTIONS(12259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12259), + [anon_sym_BSLASHinclude] = ACTIONS(12259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12259), + [anon_sym_BSLASHinput] = ACTIONS(12259), + [anon_sym_BSLASHsubfile] = ACTIONS(12259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12259), + [anon_sym_BSLASHbibliography] = ACTIONS(12259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12259), + [anon_sym_BSLASHincludesvg] = ACTIONS(12259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12259), + [anon_sym_BSLASHimport] = ACTIONS(12259), + [anon_sym_BSLASHsubimport] = ACTIONS(12259), + [anon_sym_BSLASHinputfrom] = ACTIONS(12259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12259), + [anon_sym_BSLASHincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHlabel] = ACTIONS(12259), + [anon_sym_BSLASHref] = ACTIONS(12259), + [anon_sym_BSLASHvref] = ACTIONS(12259), + [anon_sym_BSLASHVref] = ACTIONS(12259), + [anon_sym_BSLASHautoref] = ACTIONS(12259), + [anon_sym_BSLASHpageref] = ACTIONS(12259), + [anon_sym_BSLASHcref] = ACTIONS(12259), + [anon_sym_BSLASHCref] = ACTIONS(12259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnameCref] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHlabelcref] = ACTIONS(12259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12259), + [anon_sym_BSLASHeqref] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange] = ACTIONS(12259), + [anon_sym_BSLASHCrefrange] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewlabel] = ACTIONS(12259), + [anon_sym_BSLASHnewcommand] = ACTIONS(12259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12259), + [anon_sym_BSLASHgls] = ACTIONS(12259), + [anon_sym_BSLASHGls] = ACTIONS(12259), + [anon_sym_BSLASHGLS] = ACTIONS(12259), + [anon_sym_BSLASHglspl] = ACTIONS(12259), + [anon_sym_BSLASHGlspl] = ACTIONS(12259), + [anon_sym_BSLASHGLSpl] = ACTIONS(12259), + [anon_sym_BSLASHglsdisp] = ACTIONS(12259), + [anon_sym_BSLASHglslink] = ACTIONS(12259), + [anon_sym_BSLASHglstext] = ACTIONS(12259), + [anon_sym_BSLASHGlstext] = ACTIONS(12259), + [anon_sym_BSLASHGLStext] = ACTIONS(12259), + [anon_sym_BSLASHglsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12259), + [anon_sym_BSLASHglsplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSplural] = ACTIONS(12259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHglsname] = ACTIONS(12259), + [anon_sym_BSLASHGlsname] = ACTIONS(12259), + [anon_sym_BSLASHGLSname] = ACTIONS(12259), + [anon_sym_BSLASHglssymbol] = ACTIONS(12259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12259), + [anon_sym_BSLASHglsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12259), + [anon_sym_BSLASHglsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12259), + [anon_sym_BSLASHglsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12259), + [anon_sym_BSLASHglsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12259), + [anon_sym_BSLASHglsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12259), + [anon_sym_BSLASHnewacronym] = ACTIONS(12259), + [anon_sym_BSLASHacrshort] = ACTIONS(12259), + [anon_sym_BSLASHAcrshort] = ACTIONS(12259), + [anon_sym_BSLASHACRshort] = ACTIONS(12259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12259), + [anon_sym_BSLASHacrlong] = ACTIONS(12259), + [anon_sym_BSLASHAcrlong] = ACTIONS(12259), + [anon_sym_BSLASHACRlong] = ACTIONS(12259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12259), + [anon_sym_BSLASHacrfull] = ACTIONS(12259), + [anon_sym_BSLASHAcrfull] = ACTIONS(12259), + [anon_sym_BSLASHACRfull] = ACTIONS(12259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12259), + [anon_sym_BSLASHacs] = ACTIONS(12259), + [anon_sym_BSLASHAcs] = ACTIONS(12259), + [anon_sym_BSLASHacsp] = ACTIONS(12259), + [anon_sym_BSLASHAcsp] = ACTIONS(12259), + [anon_sym_BSLASHacl] = ACTIONS(12259), + [anon_sym_BSLASHAcl] = ACTIONS(12259), + [anon_sym_BSLASHaclp] = ACTIONS(12259), + [anon_sym_BSLASHAclp] = ACTIONS(12259), + [anon_sym_BSLASHacf] = ACTIONS(12259), + [anon_sym_BSLASHAcf] = ACTIONS(12259), + [anon_sym_BSLASHacfp] = ACTIONS(12259), + [anon_sym_BSLASHAcfp] = ACTIONS(12259), + [anon_sym_BSLASHac] = ACTIONS(12259), + [anon_sym_BSLASHAc] = ACTIONS(12259), + [anon_sym_BSLASHacp] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12259), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12259), + [anon_sym_BSLASHcolor] = ACTIONS(12259), + [anon_sym_BSLASHcolorbox] = ACTIONS(12259), + [anon_sym_BSLASHtextcolor] = ACTIONS(12259), + [anon_sym_BSLASHpagecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12259), + }, + [711] = { + [sym_generic_command_name] = ACTIONS(12251), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12251), + [aux_sym_chapter_token1] = ACTIONS(12251), + [aux_sym_section_token1] = ACTIONS(12251), + [aux_sym_subsection_token1] = ACTIONS(12251), + [aux_sym_subsubsection_token1] = ACTIONS(12251), + [aux_sym_paragraph_token1] = ACTIONS(12251), + [aux_sym_subparagraph_token1] = ACTIONS(12251), + [anon_sym_BSLASHitem] = ACTIONS(12251), + [anon_sym_LBRACK] = ACTIONS(12249), + [anon_sym_LBRACE] = ACTIONS(12249), + [anon_sym_LPAREN] = ACTIONS(12249), + [anon_sym_COMMA] = ACTIONS(12249), + [anon_sym_EQ] = ACTIONS(12249), + [sym_word] = ACTIONS(12249), + [sym_param] = ACTIONS(12249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12249), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12249), + [anon_sym_DOLLAR] = ACTIONS(12251), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12249), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12249), + [anon_sym_BSLASHbegin] = ACTIONS(12251), + [anon_sym_BSLASHcaption] = ACTIONS(12251), + [anon_sym_BSLASHcite] = ACTIONS(12251), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCite] = ACTIONS(12251), + [anon_sym_BSLASHnocite] = ACTIONS(12251), + [anon_sym_BSLASHcitet] = ACTIONS(12251), + [anon_sym_BSLASHcitep] = ACTIONS(12251), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteauthor] = ACTIONS(12251), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12251), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitetitle] = ACTIONS(12251), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteyear] = ACTIONS(12251), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitedate] = ACTIONS(12251), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteurl] = ACTIONS(12251), + [anon_sym_BSLASHfullcite] = ACTIONS(12251), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12251), + [anon_sym_BSLASHcitealt] = ACTIONS(12251), + [anon_sym_BSLASHcitealp] = ACTIONS(12251), + [anon_sym_BSLASHcitetext] = ACTIONS(12251), + [anon_sym_BSLASHparencite] = ACTIONS(12251), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHParencite] = ACTIONS(12251), + [anon_sym_BSLASHfootcite] = ACTIONS(12251), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12251), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12251), + [anon_sym_BSLASHtextcite] = ACTIONS(12251), + [anon_sym_BSLASHTextcite] = ACTIONS(12251), + [anon_sym_BSLASHsmartcite] = ACTIONS(12251), + [anon_sym_BSLASHSmartcite] = ACTIONS(12251), + [anon_sym_BSLASHsupercite] = ACTIONS(12251), + [anon_sym_BSLASHautocite] = ACTIONS(12251), + [anon_sym_BSLASHAutocite] = ACTIONS(12251), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHvolcite] = ACTIONS(12251), + [anon_sym_BSLASHVolcite] = ACTIONS(12251), + [anon_sym_BSLASHpvolcite] = ACTIONS(12251), + [anon_sym_BSLASHPvolcite] = ACTIONS(12251), + [anon_sym_BSLASHfvolcite] = ACTIONS(12251), + [anon_sym_BSLASHftvolcite] = ACTIONS(12251), + [anon_sym_BSLASHsvolcite] = ACTIONS(12251), + [anon_sym_BSLASHSvolcite] = ACTIONS(12251), + [anon_sym_BSLASHtvolcite] = ACTIONS(12251), + [anon_sym_BSLASHTvolcite] = ACTIONS(12251), + [anon_sym_BSLASHavolcite] = ACTIONS(12251), + [anon_sym_BSLASHAvolcite] = ACTIONS(12251), + [anon_sym_BSLASHnotecite] = ACTIONS(12251), + [anon_sym_BSLASHpnotecite] = ACTIONS(12251), + [anon_sym_BSLASHPnotecite] = ACTIONS(12251), + [anon_sym_BSLASHfnotecite] = ACTIONS(12251), + [anon_sym_BSLASHusepackage] = ACTIONS(12251), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12251), + [anon_sym_BSLASHinclude] = ACTIONS(12251), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12251), + [anon_sym_BSLASHinput] = ACTIONS(12251), + [anon_sym_BSLASHsubfile] = ACTIONS(12251), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12251), + [anon_sym_BSLASHbibliography] = ACTIONS(12251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12251), + [anon_sym_BSLASHincludesvg] = ACTIONS(12251), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12251), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12251), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12251), + [anon_sym_BSLASHimport] = ACTIONS(12251), + [anon_sym_BSLASHsubimport] = ACTIONS(12251), + [anon_sym_BSLASHinputfrom] = ACTIONS(12251), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12251), + [anon_sym_BSLASHincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHlabel] = ACTIONS(12251), + [anon_sym_BSLASHref] = ACTIONS(12251), + [anon_sym_BSLASHvref] = ACTIONS(12251), + [anon_sym_BSLASHVref] = ACTIONS(12251), + [anon_sym_BSLASHautoref] = ACTIONS(12251), + [anon_sym_BSLASHpageref] = ACTIONS(12251), + [anon_sym_BSLASHcref] = ACTIONS(12251), + [anon_sym_BSLASHCref] = ACTIONS(12251), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnameCref] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHlabelcref] = ACTIONS(12251), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12251), + [anon_sym_BSLASHeqref] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange] = ACTIONS(12251), + [anon_sym_BSLASHCrefrange] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewlabel] = ACTIONS(12251), + [anon_sym_BSLASHnewcommand] = ACTIONS(12251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12251), + [anon_sym_BSLASHgls] = ACTIONS(12251), + [anon_sym_BSLASHGls] = ACTIONS(12251), + [anon_sym_BSLASHGLS] = ACTIONS(12251), + [anon_sym_BSLASHglspl] = ACTIONS(12251), + [anon_sym_BSLASHGlspl] = ACTIONS(12251), + [anon_sym_BSLASHGLSpl] = ACTIONS(12251), + [anon_sym_BSLASHglsdisp] = ACTIONS(12251), + [anon_sym_BSLASHglslink] = ACTIONS(12251), + [anon_sym_BSLASHglstext] = ACTIONS(12251), + [anon_sym_BSLASHGlstext] = ACTIONS(12251), + [anon_sym_BSLASHGLStext] = ACTIONS(12251), + [anon_sym_BSLASHglsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12251), + [anon_sym_BSLASHglsplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSplural] = ACTIONS(12251), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHglsname] = ACTIONS(12251), + [anon_sym_BSLASHGlsname] = ACTIONS(12251), + [anon_sym_BSLASHGLSname] = ACTIONS(12251), + [anon_sym_BSLASHglssymbol] = ACTIONS(12251), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12251), + [anon_sym_BSLASHglsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12251), + [anon_sym_BSLASHglsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12251), + [anon_sym_BSLASHglsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12251), + [anon_sym_BSLASHglsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12251), + [anon_sym_BSLASHglsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12251), + [anon_sym_BSLASHnewacronym] = ACTIONS(12251), + [anon_sym_BSLASHacrshort] = ACTIONS(12251), + [anon_sym_BSLASHAcrshort] = ACTIONS(12251), + [anon_sym_BSLASHACRshort] = ACTIONS(12251), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12251), + [anon_sym_BSLASHacrlong] = ACTIONS(12251), + [anon_sym_BSLASHAcrlong] = ACTIONS(12251), + [anon_sym_BSLASHACRlong] = ACTIONS(12251), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12251), + [anon_sym_BSLASHacrfull] = ACTIONS(12251), + [anon_sym_BSLASHAcrfull] = ACTIONS(12251), + [anon_sym_BSLASHACRfull] = ACTIONS(12251), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12251), + [anon_sym_BSLASHacs] = ACTIONS(12251), + [anon_sym_BSLASHAcs] = ACTIONS(12251), + [anon_sym_BSLASHacsp] = ACTIONS(12251), + [anon_sym_BSLASHAcsp] = ACTIONS(12251), + [anon_sym_BSLASHacl] = ACTIONS(12251), + [anon_sym_BSLASHAcl] = ACTIONS(12251), + [anon_sym_BSLASHaclp] = ACTIONS(12251), + [anon_sym_BSLASHAclp] = ACTIONS(12251), + [anon_sym_BSLASHacf] = ACTIONS(12251), + [anon_sym_BSLASHAcf] = ACTIONS(12251), + [anon_sym_BSLASHacfp] = ACTIONS(12251), + [anon_sym_BSLASHAcfp] = ACTIONS(12251), + [anon_sym_BSLASHac] = ACTIONS(12251), + [anon_sym_BSLASHAc] = ACTIONS(12251), + [anon_sym_BSLASHacp] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12251), + [anon_sym_BSLASHcolor] = ACTIONS(12251), + [anon_sym_BSLASHcolorbox] = ACTIONS(12251), + [anon_sym_BSLASHtextcolor] = ACTIONS(12251), + [anon_sym_BSLASHpagecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12251), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12251), + }, + [712] = { + [sym_generic_command_name] = ACTIONS(12189), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12189), + [aux_sym_chapter_token1] = ACTIONS(12189), + [aux_sym_section_token1] = ACTIONS(12189), + [aux_sym_subsection_token1] = ACTIONS(12189), + [aux_sym_subsubsection_token1] = ACTIONS(12189), + [aux_sym_paragraph_token1] = ACTIONS(12189), + [aux_sym_subparagraph_token1] = ACTIONS(12189), + [anon_sym_BSLASHitem] = ACTIONS(12189), + [anon_sym_LBRACK] = ACTIONS(12187), + [anon_sym_LBRACE] = ACTIONS(12187), + [anon_sym_LPAREN] = ACTIONS(12187), + [anon_sym_COMMA] = ACTIONS(12187), + [anon_sym_EQ] = ACTIONS(12187), + [sym_word] = ACTIONS(12187), + [sym_param] = ACTIONS(12187), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12187), + [anon_sym_DOLLAR] = ACTIONS(12189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12187), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12187), + [anon_sym_BSLASHbegin] = ACTIONS(12189), + [anon_sym_BSLASHcaption] = ACTIONS(12189), + [anon_sym_BSLASHcite] = ACTIONS(12189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCite] = ACTIONS(12189), + [anon_sym_BSLASHnocite] = ACTIONS(12189), + [anon_sym_BSLASHcitet] = ACTIONS(12189), + [anon_sym_BSLASHcitep] = ACTIONS(12189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteauthor] = ACTIONS(12189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitetitle] = ACTIONS(12189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteyear] = ACTIONS(12189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitedate] = ACTIONS(12189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteurl] = ACTIONS(12189), + [anon_sym_BSLASHfullcite] = ACTIONS(12189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12189), + [anon_sym_BSLASHcitealt] = ACTIONS(12189), + [anon_sym_BSLASHcitealp] = ACTIONS(12189), + [anon_sym_BSLASHcitetext] = ACTIONS(12189), + [anon_sym_BSLASHparencite] = ACTIONS(12189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHParencite] = ACTIONS(12189), + [anon_sym_BSLASHfootcite] = ACTIONS(12189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12189), + [anon_sym_BSLASHtextcite] = ACTIONS(12189), + [anon_sym_BSLASHTextcite] = ACTIONS(12189), + [anon_sym_BSLASHsmartcite] = ACTIONS(12189), + [anon_sym_BSLASHSmartcite] = ACTIONS(12189), + [anon_sym_BSLASHsupercite] = ACTIONS(12189), + [anon_sym_BSLASHautocite] = ACTIONS(12189), + [anon_sym_BSLASHAutocite] = ACTIONS(12189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHvolcite] = ACTIONS(12189), + [anon_sym_BSLASHVolcite] = ACTIONS(12189), + [anon_sym_BSLASHpvolcite] = ACTIONS(12189), + [anon_sym_BSLASHPvolcite] = ACTIONS(12189), + [anon_sym_BSLASHfvolcite] = ACTIONS(12189), + [anon_sym_BSLASHftvolcite] = ACTIONS(12189), + [anon_sym_BSLASHsvolcite] = ACTIONS(12189), + [anon_sym_BSLASHSvolcite] = ACTIONS(12189), + [anon_sym_BSLASHtvolcite] = ACTIONS(12189), + [anon_sym_BSLASHTvolcite] = ACTIONS(12189), + [anon_sym_BSLASHavolcite] = ACTIONS(12189), + [anon_sym_BSLASHAvolcite] = ACTIONS(12189), + [anon_sym_BSLASHnotecite] = ACTIONS(12189), + [anon_sym_BSLASHpnotecite] = ACTIONS(12189), + [anon_sym_BSLASHPnotecite] = ACTIONS(12189), + [anon_sym_BSLASHfnotecite] = ACTIONS(12189), + [anon_sym_BSLASHusepackage] = ACTIONS(12189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12189), + [anon_sym_BSLASHinclude] = ACTIONS(12189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12189), + [anon_sym_BSLASHinput] = ACTIONS(12189), + [anon_sym_BSLASHsubfile] = ACTIONS(12189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12189), + [anon_sym_BSLASHbibliography] = ACTIONS(12189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12189), + [anon_sym_BSLASHincludesvg] = ACTIONS(12189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12189), + [anon_sym_BSLASHimport] = ACTIONS(12189), + [anon_sym_BSLASHsubimport] = ACTIONS(12189), + [anon_sym_BSLASHinputfrom] = ACTIONS(12189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12189), + [anon_sym_BSLASHincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHlabel] = ACTIONS(12189), + [anon_sym_BSLASHref] = ACTIONS(12189), + [anon_sym_BSLASHvref] = ACTIONS(12189), + [anon_sym_BSLASHVref] = ACTIONS(12189), + [anon_sym_BSLASHautoref] = ACTIONS(12189), + [anon_sym_BSLASHpageref] = ACTIONS(12189), + [anon_sym_BSLASHcref] = ACTIONS(12189), + [anon_sym_BSLASHCref] = ACTIONS(12189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnameCref] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHlabelcref] = ACTIONS(12189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12189), + [anon_sym_BSLASHeqref] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange] = ACTIONS(12189), + [anon_sym_BSLASHCrefrange] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewlabel] = ACTIONS(12189), + [anon_sym_BSLASHnewcommand] = ACTIONS(12189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12189), + [anon_sym_BSLASHgls] = ACTIONS(12189), + [anon_sym_BSLASHGls] = ACTIONS(12189), + [anon_sym_BSLASHGLS] = ACTIONS(12189), + [anon_sym_BSLASHglspl] = ACTIONS(12189), + [anon_sym_BSLASHGlspl] = ACTIONS(12189), + [anon_sym_BSLASHGLSpl] = ACTIONS(12189), + [anon_sym_BSLASHglsdisp] = ACTIONS(12189), + [anon_sym_BSLASHglslink] = ACTIONS(12189), + [anon_sym_BSLASHglstext] = ACTIONS(12189), + [anon_sym_BSLASHGlstext] = ACTIONS(12189), + [anon_sym_BSLASHGLStext] = ACTIONS(12189), + [anon_sym_BSLASHglsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12189), + [anon_sym_BSLASHglsplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSplural] = ACTIONS(12189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHglsname] = ACTIONS(12189), + [anon_sym_BSLASHGlsname] = ACTIONS(12189), + [anon_sym_BSLASHGLSname] = ACTIONS(12189), + [anon_sym_BSLASHglssymbol] = ACTIONS(12189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12189), + [anon_sym_BSLASHglsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12189), + [anon_sym_BSLASHglsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12189), + [anon_sym_BSLASHglsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12189), + [anon_sym_BSLASHglsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12189), + [anon_sym_BSLASHglsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12189), + [anon_sym_BSLASHnewacronym] = ACTIONS(12189), + [anon_sym_BSLASHacrshort] = ACTIONS(12189), + [anon_sym_BSLASHAcrshort] = ACTIONS(12189), + [anon_sym_BSLASHACRshort] = ACTIONS(12189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12189), + [anon_sym_BSLASHacrlong] = ACTIONS(12189), + [anon_sym_BSLASHAcrlong] = ACTIONS(12189), + [anon_sym_BSLASHACRlong] = ACTIONS(12189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12189), + [anon_sym_BSLASHacrfull] = ACTIONS(12189), + [anon_sym_BSLASHAcrfull] = ACTIONS(12189), + [anon_sym_BSLASHACRfull] = ACTIONS(12189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12189), + [anon_sym_BSLASHacs] = ACTIONS(12189), + [anon_sym_BSLASHAcs] = ACTIONS(12189), + [anon_sym_BSLASHacsp] = ACTIONS(12189), + [anon_sym_BSLASHAcsp] = ACTIONS(12189), + [anon_sym_BSLASHacl] = ACTIONS(12189), + [anon_sym_BSLASHAcl] = ACTIONS(12189), + [anon_sym_BSLASHaclp] = ACTIONS(12189), + [anon_sym_BSLASHAclp] = ACTIONS(12189), + [anon_sym_BSLASHacf] = ACTIONS(12189), + [anon_sym_BSLASHAcf] = ACTIONS(12189), + [anon_sym_BSLASHacfp] = ACTIONS(12189), + [anon_sym_BSLASHAcfp] = ACTIONS(12189), + [anon_sym_BSLASHac] = ACTIONS(12189), + [anon_sym_BSLASHAc] = ACTIONS(12189), + [anon_sym_BSLASHacp] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12189), + [anon_sym_BSLASHcolor] = ACTIONS(12189), + [anon_sym_BSLASHcolorbox] = ACTIONS(12189), + [anon_sym_BSLASHtextcolor] = ACTIONS(12189), + [anon_sym_BSLASHpagecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12189), + }, + [713] = { + [sym_generic_command_name] = ACTIONS(12247), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12247), + [aux_sym_chapter_token1] = ACTIONS(12247), + [aux_sym_section_token1] = ACTIONS(12247), + [aux_sym_subsection_token1] = ACTIONS(12247), + [aux_sym_subsubsection_token1] = ACTIONS(12247), + [aux_sym_paragraph_token1] = ACTIONS(12247), + [aux_sym_subparagraph_token1] = ACTIONS(12247), + [anon_sym_BSLASHitem] = ACTIONS(12247), + [anon_sym_LBRACK] = ACTIONS(12245), + [anon_sym_LBRACE] = ACTIONS(12245), + [anon_sym_LPAREN] = ACTIONS(12245), + [anon_sym_COMMA] = ACTIONS(12245), + [anon_sym_EQ] = ACTIONS(12245), + [sym_word] = ACTIONS(12245), + [sym_param] = ACTIONS(12245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12245), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12245), + [anon_sym_DOLLAR] = ACTIONS(12247), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12245), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12245), + [anon_sym_BSLASHbegin] = ACTIONS(12247), + [anon_sym_BSLASHcaption] = ACTIONS(12247), + [anon_sym_BSLASHcite] = ACTIONS(12247), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCite] = ACTIONS(12247), + [anon_sym_BSLASHnocite] = ACTIONS(12247), + [anon_sym_BSLASHcitet] = ACTIONS(12247), + [anon_sym_BSLASHcitep] = ACTIONS(12247), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteauthor] = ACTIONS(12247), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12247), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitetitle] = ACTIONS(12247), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteyear] = ACTIONS(12247), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitedate] = ACTIONS(12247), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteurl] = ACTIONS(12247), + [anon_sym_BSLASHfullcite] = ACTIONS(12247), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12247), + [anon_sym_BSLASHcitealt] = ACTIONS(12247), + [anon_sym_BSLASHcitealp] = ACTIONS(12247), + [anon_sym_BSLASHcitetext] = ACTIONS(12247), + [anon_sym_BSLASHparencite] = ACTIONS(12247), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHParencite] = ACTIONS(12247), + [anon_sym_BSLASHfootcite] = ACTIONS(12247), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12247), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12247), + [anon_sym_BSLASHtextcite] = ACTIONS(12247), + [anon_sym_BSLASHTextcite] = ACTIONS(12247), + [anon_sym_BSLASHsmartcite] = ACTIONS(12247), + [anon_sym_BSLASHSmartcite] = ACTIONS(12247), + [anon_sym_BSLASHsupercite] = ACTIONS(12247), + [anon_sym_BSLASHautocite] = ACTIONS(12247), + [anon_sym_BSLASHAutocite] = ACTIONS(12247), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHvolcite] = ACTIONS(12247), + [anon_sym_BSLASHVolcite] = ACTIONS(12247), + [anon_sym_BSLASHpvolcite] = ACTIONS(12247), + [anon_sym_BSLASHPvolcite] = ACTIONS(12247), + [anon_sym_BSLASHfvolcite] = ACTIONS(12247), + [anon_sym_BSLASHftvolcite] = ACTIONS(12247), + [anon_sym_BSLASHsvolcite] = ACTIONS(12247), + [anon_sym_BSLASHSvolcite] = ACTIONS(12247), + [anon_sym_BSLASHtvolcite] = ACTIONS(12247), + [anon_sym_BSLASHTvolcite] = ACTIONS(12247), + [anon_sym_BSLASHavolcite] = ACTIONS(12247), + [anon_sym_BSLASHAvolcite] = ACTIONS(12247), + [anon_sym_BSLASHnotecite] = ACTIONS(12247), + [anon_sym_BSLASHpnotecite] = ACTIONS(12247), + [anon_sym_BSLASHPnotecite] = ACTIONS(12247), + [anon_sym_BSLASHfnotecite] = ACTIONS(12247), + [anon_sym_BSLASHusepackage] = ACTIONS(12247), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12247), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12247), + [anon_sym_BSLASHinclude] = ACTIONS(12247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12247), + [anon_sym_BSLASHinput] = ACTIONS(12247), + [anon_sym_BSLASHsubfile] = ACTIONS(12247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12247), + [anon_sym_BSLASHbibliography] = ACTIONS(12247), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12247), + [anon_sym_BSLASHincludesvg] = ACTIONS(12247), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12247), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12247), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12247), + [anon_sym_BSLASHimport] = ACTIONS(12247), + [anon_sym_BSLASHsubimport] = ACTIONS(12247), + [anon_sym_BSLASHinputfrom] = ACTIONS(12247), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12247), + [anon_sym_BSLASHincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHlabel] = ACTIONS(12247), + [anon_sym_BSLASHref] = ACTIONS(12247), + [anon_sym_BSLASHvref] = ACTIONS(12247), + [anon_sym_BSLASHVref] = ACTIONS(12247), + [anon_sym_BSLASHautoref] = ACTIONS(12247), + [anon_sym_BSLASHpageref] = ACTIONS(12247), + [anon_sym_BSLASHcref] = ACTIONS(12247), + [anon_sym_BSLASHCref] = ACTIONS(12247), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnameCref] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHlabelcref] = ACTIONS(12247), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12247), + [anon_sym_BSLASHeqref] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange] = ACTIONS(12247), + [anon_sym_BSLASHCrefrange] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewlabel] = ACTIONS(12247), + [anon_sym_BSLASHnewcommand] = ACTIONS(12247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12247), + [anon_sym_BSLASHgls] = ACTIONS(12247), + [anon_sym_BSLASHGls] = ACTIONS(12247), + [anon_sym_BSLASHGLS] = ACTIONS(12247), + [anon_sym_BSLASHglspl] = ACTIONS(12247), + [anon_sym_BSLASHGlspl] = ACTIONS(12247), + [anon_sym_BSLASHGLSpl] = ACTIONS(12247), + [anon_sym_BSLASHglsdisp] = ACTIONS(12247), + [anon_sym_BSLASHglslink] = ACTIONS(12247), + [anon_sym_BSLASHglstext] = ACTIONS(12247), + [anon_sym_BSLASHGlstext] = ACTIONS(12247), + [anon_sym_BSLASHGLStext] = ACTIONS(12247), + [anon_sym_BSLASHglsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12247), + [anon_sym_BSLASHglsplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSplural] = ACTIONS(12247), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHglsname] = ACTIONS(12247), + [anon_sym_BSLASHGlsname] = ACTIONS(12247), + [anon_sym_BSLASHGLSname] = ACTIONS(12247), + [anon_sym_BSLASHglssymbol] = ACTIONS(12247), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12247), + [anon_sym_BSLASHglsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12247), + [anon_sym_BSLASHglsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12247), + [anon_sym_BSLASHglsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12247), + [anon_sym_BSLASHglsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12247), + [anon_sym_BSLASHglsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12247), + [anon_sym_BSLASHnewacronym] = ACTIONS(12247), + [anon_sym_BSLASHacrshort] = ACTIONS(12247), + [anon_sym_BSLASHAcrshort] = ACTIONS(12247), + [anon_sym_BSLASHACRshort] = ACTIONS(12247), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12247), + [anon_sym_BSLASHacrlong] = ACTIONS(12247), + [anon_sym_BSLASHAcrlong] = ACTIONS(12247), + [anon_sym_BSLASHACRlong] = ACTIONS(12247), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12247), + [anon_sym_BSLASHacrfull] = ACTIONS(12247), + [anon_sym_BSLASHAcrfull] = ACTIONS(12247), + [anon_sym_BSLASHACRfull] = ACTIONS(12247), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12247), + [anon_sym_BSLASHacs] = ACTIONS(12247), + [anon_sym_BSLASHAcs] = ACTIONS(12247), + [anon_sym_BSLASHacsp] = ACTIONS(12247), + [anon_sym_BSLASHAcsp] = ACTIONS(12247), + [anon_sym_BSLASHacl] = ACTIONS(12247), + [anon_sym_BSLASHAcl] = ACTIONS(12247), + [anon_sym_BSLASHaclp] = ACTIONS(12247), + [anon_sym_BSLASHAclp] = ACTIONS(12247), + [anon_sym_BSLASHacf] = ACTIONS(12247), + [anon_sym_BSLASHAcf] = ACTIONS(12247), + [anon_sym_BSLASHacfp] = ACTIONS(12247), + [anon_sym_BSLASHAcfp] = ACTIONS(12247), + [anon_sym_BSLASHac] = ACTIONS(12247), + [anon_sym_BSLASHAc] = ACTIONS(12247), + [anon_sym_BSLASHacp] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12247), + [anon_sym_BSLASHcolor] = ACTIONS(12247), + [anon_sym_BSLASHcolorbox] = ACTIONS(12247), + [anon_sym_BSLASHtextcolor] = ACTIONS(12247), + [anon_sym_BSLASHpagecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12247), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12247), + }, + [714] = { + [sym_generic_command_name] = ACTIONS(12243), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12243), + [aux_sym_chapter_token1] = ACTIONS(12243), + [aux_sym_section_token1] = ACTIONS(12243), + [aux_sym_subsection_token1] = ACTIONS(12243), + [aux_sym_subsubsection_token1] = ACTIONS(12243), + [aux_sym_paragraph_token1] = ACTIONS(12243), + [aux_sym_subparagraph_token1] = ACTIONS(12243), + [anon_sym_BSLASHitem] = ACTIONS(12243), + [anon_sym_LBRACK] = ACTIONS(12241), + [anon_sym_LBRACE] = ACTIONS(12241), + [anon_sym_LPAREN] = ACTIONS(12241), + [anon_sym_COMMA] = ACTIONS(12241), + [anon_sym_EQ] = ACTIONS(12241), + [sym_word] = ACTIONS(12241), + [sym_param] = ACTIONS(12241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12241), + [anon_sym_DOLLAR] = ACTIONS(12243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12241), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12241), + [anon_sym_BSLASHbegin] = ACTIONS(12243), + [anon_sym_BSLASHcaption] = ACTIONS(12243), + [anon_sym_BSLASHcite] = ACTIONS(12243), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCite] = ACTIONS(12243), + [anon_sym_BSLASHnocite] = ACTIONS(12243), + [anon_sym_BSLASHcitet] = ACTIONS(12243), + [anon_sym_BSLASHcitep] = ACTIONS(12243), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteauthor] = ACTIONS(12243), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12243), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitetitle] = ACTIONS(12243), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteyear] = ACTIONS(12243), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitedate] = ACTIONS(12243), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteurl] = ACTIONS(12243), + [anon_sym_BSLASHfullcite] = ACTIONS(12243), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12243), + [anon_sym_BSLASHcitealt] = ACTIONS(12243), + [anon_sym_BSLASHcitealp] = ACTIONS(12243), + [anon_sym_BSLASHcitetext] = ACTIONS(12243), + [anon_sym_BSLASHparencite] = ACTIONS(12243), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHParencite] = ACTIONS(12243), + [anon_sym_BSLASHfootcite] = ACTIONS(12243), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12243), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12243), + [anon_sym_BSLASHtextcite] = ACTIONS(12243), + [anon_sym_BSLASHTextcite] = ACTIONS(12243), + [anon_sym_BSLASHsmartcite] = ACTIONS(12243), + [anon_sym_BSLASHSmartcite] = ACTIONS(12243), + [anon_sym_BSLASHsupercite] = ACTIONS(12243), + [anon_sym_BSLASHautocite] = ACTIONS(12243), + [anon_sym_BSLASHAutocite] = ACTIONS(12243), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHvolcite] = ACTIONS(12243), + [anon_sym_BSLASHVolcite] = ACTIONS(12243), + [anon_sym_BSLASHpvolcite] = ACTIONS(12243), + [anon_sym_BSLASHPvolcite] = ACTIONS(12243), + [anon_sym_BSLASHfvolcite] = ACTIONS(12243), + [anon_sym_BSLASHftvolcite] = ACTIONS(12243), + [anon_sym_BSLASHsvolcite] = ACTIONS(12243), + [anon_sym_BSLASHSvolcite] = ACTIONS(12243), + [anon_sym_BSLASHtvolcite] = ACTIONS(12243), + [anon_sym_BSLASHTvolcite] = ACTIONS(12243), + [anon_sym_BSLASHavolcite] = ACTIONS(12243), + [anon_sym_BSLASHAvolcite] = ACTIONS(12243), + [anon_sym_BSLASHnotecite] = ACTIONS(12243), + [anon_sym_BSLASHpnotecite] = ACTIONS(12243), + [anon_sym_BSLASHPnotecite] = ACTIONS(12243), + [anon_sym_BSLASHfnotecite] = ACTIONS(12243), + [anon_sym_BSLASHusepackage] = ACTIONS(12243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12243), + [anon_sym_BSLASHinclude] = ACTIONS(12243), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12243), + [anon_sym_BSLASHinput] = ACTIONS(12243), + [anon_sym_BSLASHsubfile] = ACTIONS(12243), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12243), + [anon_sym_BSLASHbibliography] = ACTIONS(12243), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12243), + [anon_sym_BSLASHincludesvg] = ACTIONS(12243), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12243), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12243), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12243), + [anon_sym_BSLASHimport] = ACTIONS(12243), + [anon_sym_BSLASHsubimport] = ACTIONS(12243), + [anon_sym_BSLASHinputfrom] = ACTIONS(12243), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12243), + [anon_sym_BSLASHincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHlabel] = ACTIONS(12243), + [anon_sym_BSLASHref] = ACTIONS(12243), + [anon_sym_BSLASHvref] = ACTIONS(12243), + [anon_sym_BSLASHVref] = ACTIONS(12243), + [anon_sym_BSLASHautoref] = ACTIONS(12243), + [anon_sym_BSLASHpageref] = ACTIONS(12243), + [anon_sym_BSLASHcref] = ACTIONS(12243), + [anon_sym_BSLASHCref] = ACTIONS(12243), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnameCref] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHlabelcref] = ACTIONS(12243), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12243), + [anon_sym_BSLASHeqref] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange] = ACTIONS(12243), + [anon_sym_BSLASHCrefrange] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewlabel] = ACTIONS(12243), + [anon_sym_BSLASHnewcommand] = ACTIONS(12243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12243), + [anon_sym_BSLASHgls] = ACTIONS(12243), + [anon_sym_BSLASHGls] = ACTIONS(12243), + [anon_sym_BSLASHGLS] = ACTIONS(12243), + [anon_sym_BSLASHglspl] = ACTIONS(12243), + [anon_sym_BSLASHGlspl] = ACTIONS(12243), + [anon_sym_BSLASHGLSpl] = ACTIONS(12243), + [anon_sym_BSLASHglsdisp] = ACTIONS(12243), + [anon_sym_BSLASHglslink] = ACTIONS(12243), + [anon_sym_BSLASHglstext] = ACTIONS(12243), + [anon_sym_BSLASHGlstext] = ACTIONS(12243), + [anon_sym_BSLASHGLStext] = ACTIONS(12243), + [anon_sym_BSLASHglsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12243), + [anon_sym_BSLASHglsplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSplural] = ACTIONS(12243), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHglsname] = ACTIONS(12243), + [anon_sym_BSLASHGlsname] = ACTIONS(12243), + [anon_sym_BSLASHGLSname] = ACTIONS(12243), + [anon_sym_BSLASHglssymbol] = ACTIONS(12243), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12243), + [anon_sym_BSLASHglsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12243), + [anon_sym_BSLASHglsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12243), + [anon_sym_BSLASHglsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12243), + [anon_sym_BSLASHglsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12243), + [anon_sym_BSLASHglsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12243), + [anon_sym_BSLASHnewacronym] = ACTIONS(12243), + [anon_sym_BSLASHacrshort] = ACTIONS(12243), + [anon_sym_BSLASHAcrshort] = ACTIONS(12243), + [anon_sym_BSLASHACRshort] = ACTIONS(12243), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12243), + [anon_sym_BSLASHacrlong] = ACTIONS(12243), + [anon_sym_BSLASHAcrlong] = ACTIONS(12243), + [anon_sym_BSLASHACRlong] = ACTIONS(12243), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12243), + [anon_sym_BSLASHacrfull] = ACTIONS(12243), + [anon_sym_BSLASHAcrfull] = ACTIONS(12243), + [anon_sym_BSLASHACRfull] = ACTIONS(12243), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12243), + [anon_sym_BSLASHacs] = ACTIONS(12243), + [anon_sym_BSLASHAcs] = ACTIONS(12243), + [anon_sym_BSLASHacsp] = ACTIONS(12243), + [anon_sym_BSLASHAcsp] = ACTIONS(12243), + [anon_sym_BSLASHacl] = ACTIONS(12243), + [anon_sym_BSLASHAcl] = ACTIONS(12243), + [anon_sym_BSLASHaclp] = ACTIONS(12243), + [anon_sym_BSLASHAclp] = ACTIONS(12243), + [anon_sym_BSLASHacf] = ACTIONS(12243), + [anon_sym_BSLASHAcf] = ACTIONS(12243), + [anon_sym_BSLASHacfp] = ACTIONS(12243), + [anon_sym_BSLASHAcfp] = ACTIONS(12243), + [anon_sym_BSLASHac] = ACTIONS(12243), + [anon_sym_BSLASHAc] = ACTIONS(12243), + [anon_sym_BSLASHacp] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12243), + [anon_sym_BSLASHcolor] = ACTIONS(12243), + [anon_sym_BSLASHcolorbox] = ACTIONS(12243), + [anon_sym_BSLASHtextcolor] = ACTIONS(12243), + [anon_sym_BSLASHpagecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12243), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12243), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12243), + }, + [715] = { + [sym_generic_command_name] = ACTIONS(12239), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12239), + [aux_sym_chapter_token1] = ACTIONS(12239), + [aux_sym_section_token1] = ACTIONS(12239), + [aux_sym_subsection_token1] = ACTIONS(12239), + [aux_sym_subsubsection_token1] = ACTIONS(12239), + [aux_sym_paragraph_token1] = ACTIONS(12239), + [aux_sym_subparagraph_token1] = ACTIONS(12239), + [anon_sym_BSLASHitem] = ACTIONS(12239), + [anon_sym_LBRACK] = ACTIONS(12237), + [anon_sym_LBRACE] = ACTIONS(12237), + [anon_sym_LPAREN] = ACTIONS(12237), + [anon_sym_COMMA] = ACTIONS(12237), + [anon_sym_EQ] = ACTIONS(12237), + [sym_word] = ACTIONS(12237), + [sym_param] = ACTIONS(12237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12237), + [anon_sym_DOLLAR] = ACTIONS(12239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12237), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12237), + [anon_sym_BSLASHbegin] = ACTIONS(12239), + [anon_sym_BSLASHcaption] = ACTIONS(12239), + [anon_sym_BSLASHcite] = ACTIONS(12239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCite] = ACTIONS(12239), + [anon_sym_BSLASHnocite] = ACTIONS(12239), + [anon_sym_BSLASHcitet] = ACTIONS(12239), + [anon_sym_BSLASHcitep] = ACTIONS(12239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteauthor] = ACTIONS(12239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitetitle] = ACTIONS(12239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteyear] = ACTIONS(12239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitedate] = ACTIONS(12239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteurl] = ACTIONS(12239), + [anon_sym_BSLASHfullcite] = ACTIONS(12239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12239), + [anon_sym_BSLASHcitealt] = ACTIONS(12239), + [anon_sym_BSLASHcitealp] = ACTIONS(12239), + [anon_sym_BSLASHcitetext] = ACTIONS(12239), + [anon_sym_BSLASHparencite] = ACTIONS(12239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHParencite] = ACTIONS(12239), + [anon_sym_BSLASHfootcite] = ACTIONS(12239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12239), + [anon_sym_BSLASHtextcite] = ACTIONS(12239), + [anon_sym_BSLASHTextcite] = ACTIONS(12239), + [anon_sym_BSLASHsmartcite] = ACTIONS(12239), + [anon_sym_BSLASHSmartcite] = ACTIONS(12239), + [anon_sym_BSLASHsupercite] = ACTIONS(12239), + [anon_sym_BSLASHautocite] = ACTIONS(12239), + [anon_sym_BSLASHAutocite] = ACTIONS(12239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHvolcite] = ACTIONS(12239), + [anon_sym_BSLASHVolcite] = ACTIONS(12239), + [anon_sym_BSLASHpvolcite] = ACTIONS(12239), + [anon_sym_BSLASHPvolcite] = ACTIONS(12239), + [anon_sym_BSLASHfvolcite] = ACTIONS(12239), + [anon_sym_BSLASHftvolcite] = ACTIONS(12239), + [anon_sym_BSLASHsvolcite] = ACTIONS(12239), + [anon_sym_BSLASHSvolcite] = ACTIONS(12239), + [anon_sym_BSLASHtvolcite] = ACTIONS(12239), + [anon_sym_BSLASHTvolcite] = ACTIONS(12239), + [anon_sym_BSLASHavolcite] = ACTIONS(12239), + [anon_sym_BSLASHAvolcite] = ACTIONS(12239), + [anon_sym_BSLASHnotecite] = ACTIONS(12239), + [anon_sym_BSLASHpnotecite] = ACTIONS(12239), + [anon_sym_BSLASHPnotecite] = ACTIONS(12239), + [anon_sym_BSLASHfnotecite] = ACTIONS(12239), + [anon_sym_BSLASHusepackage] = ACTIONS(12239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12239), + [anon_sym_BSLASHinclude] = ACTIONS(12239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12239), + [anon_sym_BSLASHinput] = ACTIONS(12239), + [anon_sym_BSLASHsubfile] = ACTIONS(12239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12239), + [anon_sym_BSLASHbibliography] = ACTIONS(12239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12239), + [anon_sym_BSLASHincludesvg] = ACTIONS(12239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12239), + [anon_sym_BSLASHimport] = ACTIONS(12239), + [anon_sym_BSLASHsubimport] = ACTIONS(12239), + [anon_sym_BSLASHinputfrom] = ACTIONS(12239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12239), + [anon_sym_BSLASHincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHlabel] = ACTIONS(12239), + [anon_sym_BSLASHref] = ACTIONS(12239), + [anon_sym_BSLASHvref] = ACTIONS(12239), + [anon_sym_BSLASHVref] = ACTIONS(12239), + [anon_sym_BSLASHautoref] = ACTIONS(12239), + [anon_sym_BSLASHpageref] = ACTIONS(12239), + [anon_sym_BSLASHcref] = ACTIONS(12239), + [anon_sym_BSLASHCref] = ACTIONS(12239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnameCref] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHlabelcref] = ACTIONS(12239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12239), + [anon_sym_BSLASHeqref] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange] = ACTIONS(12239), + [anon_sym_BSLASHCrefrange] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewlabel] = ACTIONS(12239), + [anon_sym_BSLASHnewcommand] = ACTIONS(12239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12239), + [anon_sym_BSLASHgls] = ACTIONS(12239), + [anon_sym_BSLASHGls] = ACTIONS(12239), + [anon_sym_BSLASHGLS] = ACTIONS(12239), + [anon_sym_BSLASHglspl] = ACTIONS(12239), + [anon_sym_BSLASHGlspl] = ACTIONS(12239), + [anon_sym_BSLASHGLSpl] = ACTIONS(12239), + [anon_sym_BSLASHglsdisp] = ACTIONS(12239), + [anon_sym_BSLASHglslink] = ACTIONS(12239), + [anon_sym_BSLASHglstext] = ACTIONS(12239), + [anon_sym_BSLASHGlstext] = ACTIONS(12239), + [anon_sym_BSLASHGLStext] = ACTIONS(12239), + [anon_sym_BSLASHglsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12239), + [anon_sym_BSLASHglsplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSplural] = ACTIONS(12239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHglsname] = ACTIONS(12239), + [anon_sym_BSLASHGlsname] = ACTIONS(12239), + [anon_sym_BSLASHGLSname] = ACTIONS(12239), + [anon_sym_BSLASHglssymbol] = ACTIONS(12239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12239), + [anon_sym_BSLASHglsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12239), + [anon_sym_BSLASHglsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12239), + [anon_sym_BSLASHglsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12239), + [anon_sym_BSLASHglsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12239), + [anon_sym_BSLASHglsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12239), + [anon_sym_BSLASHnewacronym] = ACTIONS(12239), + [anon_sym_BSLASHacrshort] = ACTIONS(12239), + [anon_sym_BSLASHAcrshort] = ACTIONS(12239), + [anon_sym_BSLASHACRshort] = ACTIONS(12239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12239), + [anon_sym_BSLASHacrlong] = ACTIONS(12239), + [anon_sym_BSLASHAcrlong] = ACTIONS(12239), + [anon_sym_BSLASHACRlong] = ACTIONS(12239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12239), + [anon_sym_BSLASHacrfull] = ACTIONS(12239), + [anon_sym_BSLASHAcrfull] = ACTIONS(12239), + [anon_sym_BSLASHACRfull] = ACTIONS(12239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12239), + [anon_sym_BSLASHacs] = ACTIONS(12239), + [anon_sym_BSLASHAcs] = ACTIONS(12239), + [anon_sym_BSLASHacsp] = ACTIONS(12239), + [anon_sym_BSLASHAcsp] = ACTIONS(12239), + [anon_sym_BSLASHacl] = ACTIONS(12239), + [anon_sym_BSLASHAcl] = ACTIONS(12239), + [anon_sym_BSLASHaclp] = ACTIONS(12239), + [anon_sym_BSLASHAclp] = ACTIONS(12239), + [anon_sym_BSLASHacf] = ACTIONS(12239), + [anon_sym_BSLASHAcf] = ACTIONS(12239), + [anon_sym_BSLASHacfp] = ACTIONS(12239), + [anon_sym_BSLASHAcfp] = ACTIONS(12239), + [anon_sym_BSLASHac] = ACTIONS(12239), + [anon_sym_BSLASHAc] = ACTIONS(12239), + [anon_sym_BSLASHacp] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12239), + [anon_sym_BSLASHcolor] = ACTIONS(12239), + [anon_sym_BSLASHcolorbox] = ACTIONS(12239), + [anon_sym_BSLASHtextcolor] = ACTIONS(12239), + [anon_sym_BSLASHpagecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12239), + }, + [716] = { + [sym_generic_command_name] = ACTIONS(12235), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12235), + [aux_sym_chapter_token1] = ACTIONS(12235), + [aux_sym_section_token1] = ACTIONS(12235), + [aux_sym_subsection_token1] = ACTIONS(12235), + [aux_sym_subsubsection_token1] = ACTIONS(12235), + [aux_sym_paragraph_token1] = ACTIONS(12235), + [aux_sym_subparagraph_token1] = ACTIONS(12235), + [anon_sym_BSLASHitem] = ACTIONS(12235), + [anon_sym_LBRACK] = ACTIONS(12233), + [anon_sym_LBRACE] = ACTIONS(12233), + [anon_sym_LPAREN] = ACTIONS(12233), + [anon_sym_COMMA] = ACTIONS(12233), + [anon_sym_EQ] = ACTIONS(12233), + [sym_word] = ACTIONS(12233), + [sym_param] = ACTIONS(12233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12233), + [anon_sym_DOLLAR] = ACTIONS(12235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12233), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12233), + [anon_sym_BSLASHbegin] = ACTIONS(12235), + [anon_sym_BSLASHcaption] = ACTIONS(12235), + [anon_sym_BSLASHcite] = ACTIONS(12235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCite] = ACTIONS(12235), + [anon_sym_BSLASHnocite] = ACTIONS(12235), + [anon_sym_BSLASHcitet] = ACTIONS(12235), + [anon_sym_BSLASHcitep] = ACTIONS(12235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteauthor] = ACTIONS(12235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitetitle] = ACTIONS(12235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteyear] = ACTIONS(12235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitedate] = ACTIONS(12235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteurl] = ACTIONS(12235), + [anon_sym_BSLASHfullcite] = ACTIONS(12235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12235), + [anon_sym_BSLASHcitealt] = ACTIONS(12235), + [anon_sym_BSLASHcitealp] = ACTIONS(12235), + [anon_sym_BSLASHcitetext] = ACTIONS(12235), + [anon_sym_BSLASHparencite] = ACTIONS(12235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHParencite] = ACTIONS(12235), + [anon_sym_BSLASHfootcite] = ACTIONS(12235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12235), + [anon_sym_BSLASHtextcite] = ACTIONS(12235), + [anon_sym_BSLASHTextcite] = ACTIONS(12235), + [anon_sym_BSLASHsmartcite] = ACTIONS(12235), + [anon_sym_BSLASHSmartcite] = ACTIONS(12235), + [anon_sym_BSLASHsupercite] = ACTIONS(12235), + [anon_sym_BSLASHautocite] = ACTIONS(12235), + [anon_sym_BSLASHAutocite] = ACTIONS(12235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHvolcite] = ACTIONS(12235), + [anon_sym_BSLASHVolcite] = ACTIONS(12235), + [anon_sym_BSLASHpvolcite] = ACTIONS(12235), + [anon_sym_BSLASHPvolcite] = ACTIONS(12235), + [anon_sym_BSLASHfvolcite] = ACTIONS(12235), + [anon_sym_BSLASHftvolcite] = ACTIONS(12235), + [anon_sym_BSLASHsvolcite] = ACTIONS(12235), + [anon_sym_BSLASHSvolcite] = ACTIONS(12235), + [anon_sym_BSLASHtvolcite] = ACTIONS(12235), + [anon_sym_BSLASHTvolcite] = ACTIONS(12235), + [anon_sym_BSLASHavolcite] = ACTIONS(12235), + [anon_sym_BSLASHAvolcite] = ACTIONS(12235), + [anon_sym_BSLASHnotecite] = ACTIONS(12235), + [anon_sym_BSLASHpnotecite] = ACTIONS(12235), + [anon_sym_BSLASHPnotecite] = ACTIONS(12235), + [anon_sym_BSLASHfnotecite] = ACTIONS(12235), + [anon_sym_BSLASHusepackage] = ACTIONS(12235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12235), + [anon_sym_BSLASHinclude] = ACTIONS(12235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12235), + [anon_sym_BSLASHinput] = ACTIONS(12235), + [anon_sym_BSLASHsubfile] = ACTIONS(12235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12235), + [anon_sym_BSLASHbibliography] = ACTIONS(12235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12235), + [anon_sym_BSLASHincludesvg] = ACTIONS(12235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12235), + [anon_sym_BSLASHimport] = ACTIONS(12235), + [anon_sym_BSLASHsubimport] = ACTIONS(12235), + [anon_sym_BSLASHinputfrom] = ACTIONS(12235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12235), + [anon_sym_BSLASHincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHlabel] = ACTIONS(12235), + [anon_sym_BSLASHref] = ACTIONS(12235), + [anon_sym_BSLASHvref] = ACTIONS(12235), + [anon_sym_BSLASHVref] = ACTIONS(12235), + [anon_sym_BSLASHautoref] = ACTIONS(12235), + [anon_sym_BSLASHpageref] = ACTIONS(12235), + [anon_sym_BSLASHcref] = ACTIONS(12235), + [anon_sym_BSLASHCref] = ACTIONS(12235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnameCref] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHlabelcref] = ACTIONS(12235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12235), + [anon_sym_BSLASHeqref] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange] = ACTIONS(12235), + [anon_sym_BSLASHCrefrange] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewlabel] = ACTIONS(12235), + [anon_sym_BSLASHnewcommand] = ACTIONS(12235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12235), + [anon_sym_BSLASHgls] = ACTIONS(12235), + [anon_sym_BSLASHGls] = ACTIONS(12235), + [anon_sym_BSLASHGLS] = ACTIONS(12235), + [anon_sym_BSLASHglspl] = ACTIONS(12235), + [anon_sym_BSLASHGlspl] = ACTIONS(12235), + [anon_sym_BSLASHGLSpl] = ACTIONS(12235), + [anon_sym_BSLASHglsdisp] = ACTIONS(12235), + [anon_sym_BSLASHglslink] = ACTIONS(12235), + [anon_sym_BSLASHglstext] = ACTIONS(12235), + [anon_sym_BSLASHGlstext] = ACTIONS(12235), + [anon_sym_BSLASHGLStext] = ACTIONS(12235), + [anon_sym_BSLASHglsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12235), + [anon_sym_BSLASHglsplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSplural] = ACTIONS(12235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHglsname] = ACTIONS(12235), + [anon_sym_BSLASHGlsname] = ACTIONS(12235), + [anon_sym_BSLASHGLSname] = ACTIONS(12235), + [anon_sym_BSLASHglssymbol] = ACTIONS(12235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12235), + [anon_sym_BSLASHglsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12235), + [anon_sym_BSLASHglsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12235), + [anon_sym_BSLASHglsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12235), + [anon_sym_BSLASHglsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12235), + [anon_sym_BSLASHglsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12235), + [anon_sym_BSLASHnewacronym] = ACTIONS(12235), + [anon_sym_BSLASHacrshort] = ACTIONS(12235), + [anon_sym_BSLASHAcrshort] = ACTIONS(12235), + [anon_sym_BSLASHACRshort] = ACTIONS(12235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12235), + [anon_sym_BSLASHacrlong] = ACTIONS(12235), + [anon_sym_BSLASHAcrlong] = ACTIONS(12235), + [anon_sym_BSLASHACRlong] = ACTIONS(12235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12235), + [anon_sym_BSLASHacrfull] = ACTIONS(12235), + [anon_sym_BSLASHAcrfull] = ACTIONS(12235), + [anon_sym_BSLASHACRfull] = ACTIONS(12235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12235), + [anon_sym_BSLASHacs] = ACTIONS(12235), + [anon_sym_BSLASHAcs] = ACTIONS(12235), + [anon_sym_BSLASHacsp] = ACTIONS(12235), + [anon_sym_BSLASHAcsp] = ACTIONS(12235), + [anon_sym_BSLASHacl] = ACTIONS(12235), + [anon_sym_BSLASHAcl] = ACTIONS(12235), + [anon_sym_BSLASHaclp] = ACTIONS(12235), + [anon_sym_BSLASHAclp] = ACTIONS(12235), + [anon_sym_BSLASHacf] = ACTIONS(12235), + [anon_sym_BSLASHAcf] = ACTIONS(12235), + [anon_sym_BSLASHacfp] = ACTIONS(12235), + [anon_sym_BSLASHAcfp] = ACTIONS(12235), + [anon_sym_BSLASHac] = ACTIONS(12235), + [anon_sym_BSLASHAc] = ACTIONS(12235), + [anon_sym_BSLASHacp] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12235), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12235), + [anon_sym_BSLASHcolor] = ACTIONS(12235), + [anon_sym_BSLASHcolorbox] = ACTIONS(12235), + [anon_sym_BSLASHtextcolor] = ACTIONS(12235), + [anon_sym_BSLASHpagecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12235), + }, + [717] = { + [sym_generic_command_name] = ACTIONS(12108), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12108), + [aux_sym_chapter_token1] = ACTIONS(12108), + [aux_sym_section_token1] = ACTIONS(12108), + [aux_sym_subsection_token1] = ACTIONS(12108), + [aux_sym_subsubsection_token1] = ACTIONS(12108), + [aux_sym_paragraph_token1] = ACTIONS(12108), + [aux_sym_subparagraph_token1] = ACTIONS(12108), + [anon_sym_BSLASHitem] = ACTIONS(12108), + [anon_sym_LBRACK] = ACTIONS(12106), + [anon_sym_LBRACE] = ACTIONS(12106), + [anon_sym_LPAREN] = ACTIONS(12106), + [anon_sym_COMMA] = ACTIONS(12106), + [anon_sym_EQ] = ACTIONS(12106), + [sym_word] = ACTIONS(12106), + [sym_param] = ACTIONS(12106), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12106), + [anon_sym_DOLLAR] = ACTIONS(12108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12106), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12106), + [anon_sym_BSLASHbegin] = ACTIONS(12108), + [anon_sym_BSLASHcaption] = ACTIONS(12108), + [anon_sym_BSLASHcite] = ACTIONS(12108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCite] = ACTIONS(12108), + [anon_sym_BSLASHnocite] = ACTIONS(12108), + [anon_sym_BSLASHcitet] = ACTIONS(12108), + [anon_sym_BSLASHcitep] = ACTIONS(12108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteauthor] = ACTIONS(12108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitetitle] = ACTIONS(12108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteyear] = ACTIONS(12108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitedate] = ACTIONS(12108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteurl] = ACTIONS(12108), + [anon_sym_BSLASHfullcite] = ACTIONS(12108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12108), + [anon_sym_BSLASHcitealt] = ACTIONS(12108), + [anon_sym_BSLASHcitealp] = ACTIONS(12108), + [anon_sym_BSLASHcitetext] = ACTIONS(12108), + [anon_sym_BSLASHparencite] = ACTIONS(12108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHParencite] = ACTIONS(12108), + [anon_sym_BSLASHfootcite] = ACTIONS(12108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12108), + [anon_sym_BSLASHtextcite] = ACTIONS(12108), + [anon_sym_BSLASHTextcite] = ACTIONS(12108), + [anon_sym_BSLASHsmartcite] = ACTIONS(12108), + [anon_sym_BSLASHSmartcite] = ACTIONS(12108), + [anon_sym_BSLASHsupercite] = ACTIONS(12108), + [anon_sym_BSLASHautocite] = ACTIONS(12108), + [anon_sym_BSLASHAutocite] = ACTIONS(12108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHvolcite] = ACTIONS(12108), + [anon_sym_BSLASHVolcite] = ACTIONS(12108), + [anon_sym_BSLASHpvolcite] = ACTIONS(12108), + [anon_sym_BSLASHPvolcite] = ACTIONS(12108), + [anon_sym_BSLASHfvolcite] = ACTIONS(12108), + [anon_sym_BSLASHftvolcite] = ACTIONS(12108), + [anon_sym_BSLASHsvolcite] = ACTIONS(12108), + [anon_sym_BSLASHSvolcite] = ACTIONS(12108), + [anon_sym_BSLASHtvolcite] = ACTIONS(12108), + [anon_sym_BSLASHTvolcite] = ACTIONS(12108), + [anon_sym_BSLASHavolcite] = ACTIONS(12108), + [anon_sym_BSLASHAvolcite] = ACTIONS(12108), + [anon_sym_BSLASHnotecite] = ACTIONS(12108), + [anon_sym_BSLASHpnotecite] = ACTIONS(12108), + [anon_sym_BSLASHPnotecite] = ACTIONS(12108), + [anon_sym_BSLASHfnotecite] = ACTIONS(12108), + [anon_sym_BSLASHusepackage] = ACTIONS(12108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12108), + [anon_sym_BSLASHinclude] = ACTIONS(12108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12108), + [anon_sym_BSLASHinput] = ACTIONS(12108), + [anon_sym_BSLASHsubfile] = ACTIONS(12108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12108), + [anon_sym_BSLASHbibliography] = ACTIONS(12108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12108), + [anon_sym_BSLASHincludesvg] = ACTIONS(12108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12108), + [anon_sym_BSLASHimport] = ACTIONS(12108), + [anon_sym_BSLASHsubimport] = ACTIONS(12108), + [anon_sym_BSLASHinputfrom] = ACTIONS(12108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12108), + [anon_sym_BSLASHincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHlabel] = ACTIONS(12108), + [anon_sym_BSLASHref] = ACTIONS(12108), + [anon_sym_BSLASHvref] = ACTIONS(12108), + [anon_sym_BSLASHVref] = ACTIONS(12108), + [anon_sym_BSLASHautoref] = ACTIONS(12108), + [anon_sym_BSLASHpageref] = ACTIONS(12108), + [anon_sym_BSLASHcref] = ACTIONS(12108), + [anon_sym_BSLASHCref] = ACTIONS(12108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnameCref] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHlabelcref] = ACTIONS(12108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12108), + [anon_sym_BSLASHeqref] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange] = ACTIONS(12108), + [anon_sym_BSLASHCrefrange] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewlabel] = ACTIONS(12108), + [anon_sym_BSLASHnewcommand] = ACTIONS(12108), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12108), + [anon_sym_BSLASHgls] = ACTIONS(12108), + [anon_sym_BSLASHGls] = ACTIONS(12108), + [anon_sym_BSLASHGLS] = ACTIONS(12108), + [anon_sym_BSLASHglspl] = ACTIONS(12108), + [anon_sym_BSLASHGlspl] = ACTIONS(12108), + [anon_sym_BSLASHGLSpl] = ACTIONS(12108), + [anon_sym_BSLASHglsdisp] = ACTIONS(12108), + [anon_sym_BSLASHglslink] = ACTIONS(12108), + [anon_sym_BSLASHglstext] = ACTIONS(12108), + [anon_sym_BSLASHGlstext] = ACTIONS(12108), + [anon_sym_BSLASHGLStext] = ACTIONS(12108), + [anon_sym_BSLASHglsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12108), + [anon_sym_BSLASHglsplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSplural] = ACTIONS(12108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHglsname] = ACTIONS(12108), + [anon_sym_BSLASHGlsname] = ACTIONS(12108), + [anon_sym_BSLASHGLSname] = ACTIONS(12108), + [anon_sym_BSLASHglssymbol] = ACTIONS(12108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12108), + [anon_sym_BSLASHglsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12108), + [anon_sym_BSLASHglsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12108), + [anon_sym_BSLASHglsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12108), + [anon_sym_BSLASHglsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12108), + [anon_sym_BSLASHglsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12108), + [anon_sym_BSLASHnewacronym] = ACTIONS(12108), + [anon_sym_BSLASHacrshort] = ACTIONS(12108), + [anon_sym_BSLASHAcrshort] = ACTIONS(12108), + [anon_sym_BSLASHACRshort] = ACTIONS(12108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12108), + [anon_sym_BSLASHacrlong] = ACTIONS(12108), + [anon_sym_BSLASHAcrlong] = ACTIONS(12108), + [anon_sym_BSLASHACRlong] = ACTIONS(12108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12108), + [anon_sym_BSLASHacrfull] = ACTIONS(12108), + [anon_sym_BSLASHAcrfull] = ACTIONS(12108), + [anon_sym_BSLASHACRfull] = ACTIONS(12108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12108), + [anon_sym_BSLASHacs] = ACTIONS(12108), + [anon_sym_BSLASHAcs] = ACTIONS(12108), + [anon_sym_BSLASHacsp] = ACTIONS(12108), + [anon_sym_BSLASHAcsp] = ACTIONS(12108), + [anon_sym_BSLASHacl] = ACTIONS(12108), + [anon_sym_BSLASHAcl] = ACTIONS(12108), + [anon_sym_BSLASHaclp] = ACTIONS(12108), + [anon_sym_BSLASHAclp] = ACTIONS(12108), + [anon_sym_BSLASHacf] = ACTIONS(12108), + [anon_sym_BSLASHAcf] = ACTIONS(12108), + [anon_sym_BSLASHacfp] = ACTIONS(12108), + [anon_sym_BSLASHAcfp] = ACTIONS(12108), + [anon_sym_BSLASHac] = ACTIONS(12108), + [anon_sym_BSLASHAc] = ACTIONS(12108), + [anon_sym_BSLASHacp] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12108), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12108), + [anon_sym_BSLASHcolor] = ACTIONS(12108), + [anon_sym_BSLASHcolorbox] = ACTIONS(12108), + [anon_sym_BSLASHtextcolor] = ACTIONS(12108), + [anon_sym_BSLASHpagecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12108), + }, + [718] = { + [sym_generic_command_name] = ACTIONS(12221), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12221), + [aux_sym_chapter_token1] = ACTIONS(12221), + [aux_sym_section_token1] = ACTIONS(12221), + [aux_sym_subsection_token1] = ACTIONS(12221), + [aux_sym_subsubsection_token1] = ACTIONS(12221), + [aux_sym_paragraph_token1] = ACTIONS(12221), + [aux_sym_subparagraph_token1] = ACTIONS(12221), + [anon_sym_BSLASHitem] = ACTIONS(12221), + [anon_sym_LBRACK] = ACTIONS(12219), + [anon_sym_LBRACE] = ACTIONS(12660), + [anon_sym_LPAREN] = ACTIONS(12219), + [anon_sym_COMMA] = ACTIONS(12219), + [anon_sym_EQ] = ACTIONS(12219), + [sym_word] = ACTIONS(12219), + [sym_param] = ACTIONS(12219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12219), + [anon_sym_DOLLAR] = ACTIONS(12221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12219), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12219), + [anon_sym_BSLASHbegin] = ACTIONS(12221), + [anon_sym_BSLASHcaption] = ACTIONS(12221), + [anon_sym_BSLASHcite] = ACTIONS(12221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCite] = ACTIONS(12221), + [anon_sym_BSLASHnocite] = ACTIONS(12221), + [anon_sym_BSLASHcitet] = ACTIONS(12221), + [anon_sym_BSLASHcitep] = ACTIONS(12221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteauthor] = ACTIONS(12221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitetitle] = ACTIONS(12221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteyear] = ACTIONS(12221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitedate] = ACTIONS(12221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteurl] = ACTIONS(12221), + [anon_sym_BSLASHfullcite] = ACTIONS(12221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12221), + [anon_sym_BSLASHcitealt] = ACTIONS(12221), + [anon_sym_BSLASHcitealp] = ACTIONS(12221), + [anon_sym_BSLASHcitetext] = ACTIONS(12221), + [anon_sym_BSLASHparencite] = ACTIONS(12221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHParencite] = ACTIONS(12221), + [anon_sym_BSLASHfootcite] = ACTIONS(12221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12221), + [anon_sym_BSLASHtextcite] = ACTIONS(12221), + [anon_sym_BSLASHTextcite] = ACTIONS(12221), + [anon_sym_BSLASHsmartcite] = ACTIONS(12221), + [anon_sym_BSLASHSmartcite] = ACTIONS(12221), + [anon_sym_BSLASHsupercite] = ACTIONS(12221), + [anon_sym_BSLASHautocite] = ACTIONS(12221), + [anon_sym_BSLASHAutocite] = ACTIONS(12221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHvolcite] = ACTIONS(12221), + [anon_sym_BSLASHVolcite] = ACTIONS(12221), + [anon_sym_BSLASHpvolcite] = ACTIONS(12221), + [anon_sym_BSLASHPvolcite] = ACTIONS(12221), + [anon_sym_BSLASHfvolcite] = ACTIONS(12221), + [anon_sym_BSLASHftvolcite] = ACTIONS(12221), + [anon_sym_BSLASHsvolcite] = ACTIONS(12221), + [anon_sym_BSLASHSvolcite] = ACTIONS(12221), + [anon_sym_BSLASHtvolcite] = ACTIONS(12221), + [anon_sym_BSLASHTvolcite] = ACTIONS(12221), + [anon_sym_BSLASHavolcite] = ACTIONS(12221), + [anon_sym_BSLASHAvolcite] = ACTIONS(12221), + [anon_sym_BSLASHnotecite] = ACTIONS(12221), + [anon_sym_BSLASHpnotecite] = ACTIONS(12221), + [anon_sym_BSLASHPnotecite] = ACTIONS(12221), + [anon_sym_BSLASHfnotecite] = ACTIONS(12221), + [anon_sym_BSLASHusepackage] = ACTIONS(12221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12221), + [anon_sym_BSLASHinclude] = ACTIONS(12221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12221), + [anon_sym_BSLASHinput] = ACTIONS(12221), + [anon_sym_BSLASHsubfile] = ACTIONS(12221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12221), + [anon_sym_BSLASHbibliography] = ACTIONS(12221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12221), + [anon_sym_BSLASHincludesvg] = ACTIONS(12221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12221), + [anon_sym_BSLASHimport] = ACTIONS(12221), + [anon_sym_BSLASHsubimport] = ACTIONS(12221), + [anon_sym_BSLASHinputfrom] = ACTIONS(12221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12221), + [anon_sym_BSLASHincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHlabel] = ACTIONS(12221), + [anon_sym_BSLASHref] = ACTIONS(12221), + [anon_sym_BSLASHvref] = ACTIONS(12221), + [anon_sym_BSLASHVref] = ACTIONS(12221), + [anon_sym_BSLASHautoref] = ACTIONS(12221), + [anon_sym_BSLASHpageref] = ACTIONS(12221), + [anon_sym_BSLASHcref] = ACTIONS(12221), + [anon_sym_BSLASHCref] = ACTIONS(12221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnameCref] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHlabelcref] = ACTIONS(12221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12221), + [anon_sym_BSLASHeqref] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange] = ACTIONS(12221), + [anon_sym_BSLASHCrefrange] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewlabel] = ACTIONS(12221), + [anon_sym_BSLASHnewcommand] = ACTIONS(12221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12221), + [anon_sym_BSLASHgls] = ACTIONS(12221), + [anon_sym_BSLASHGls] = ACTIONS(12221), + [anon_sym_BSLASHGLS] = ACTIONS(12221), + [anon_sym_BSLASHglspl] = ACTIONS(12221), + [anon_sym_BSLASHGlspl] = ACTIONS(12221), + [anon_sym_BSLASHGLSpl] = ACTIONS(12221), + [anon_sym_BSLASHglsdisp] = ACTIONS(12221), + [anon_sym_BSLASHglslink] = ACTIONS(12221), + [anon_sym_BSLASHglstext] = ACTIONS(12221), + [anon_sym_BSLASHGlstext] = ACTIONS(12221), + [anon_sym_BSLASHGLStext] = ACTIONS(12221), + [anon_sym_BSLASHglsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12221), + [anon_sym_BSLASHglsplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSplural] = ACTIONS(12221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHglsname] = ACTIONS(12221), + [anon_sym_BSLASHGlsname] = ACTIONS(12221), + [anon_sym_BSLASHGLSname] = ACTIONS(12221), + [anon_sym_BSLASHglssymbol] = ACTIONS(12221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12221), + [anon_sym_BSLASHglsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12221), + [anon_sym_BSLASHglsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12221), + [anon_sym_BSLASHglsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12221), + [anon_sym_BSLASHglsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12221), + [anon_sym_BSLASHglsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12221), + [anon_sym_BSLASHnewacronym] = ACTIONS(12221), + [anon_sym_BSLASHacrshort] = ACTIONS(12221), + [anon_sym_BSLASHAcrshort] = ACTIONS(12221), + [anon_sym_BSLASHACRshort] = ACTIONS(12221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12221), + [anon_sym_BSLASHacrlong] = ACTIONS(12221), + [anon_sym_BSLASHAcrlong] = ACTIONS(12221), + [anon_sym_BSLASHACRlong] = ACTIONS(12221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12221), + [anon_sym_BSLASHacrfull] = ACTIONS(12221), + [anon_sym_BSLASHAcrfull] = ACTIONS(12221), + [anon_sym_BSLASHACRfull] = ACTIONS(12221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12221), + [anon_sym_BSLASHacs] = ACTIONS(12221), + [anon_sym_BSLASHAcs] = ACTIONS(12221), + [anon_sym_BSLASHacsp] = ACTIONS(12221), + [anon_sym_BSLASHAcsp] = ACTIONS(12221), + [anon_sym_BSLASHacl] = ACTIONS(12221), + [anon_sym_BSLASHAcl] = ACTIONS(12221), + [anon_sym_BSLASHaclp] = ACTIONS(12221), + [anon_sym_BSLASHAclp] = ACTIONS(12221), + [anon_sym_BSLASHacf] = ACTIONS(12221), + [anon_sym_BSLASHAcf] = ACTIONS(12221), + [anon_sym_BSLASHacfp] = ACTIONS(12221), + [anon_sym_BSLASHAcfp] = ACTIONS(12221), + [anon_sym_BSLASHac] = ACTIONS(12221), + [anon_sym_BSLASHAc] = ACTIONS(12221), + [anon_sym_BSLASHacp] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12221), + [anon_sym_BSLASHcolor] = ACTIONS(12221), + [anon_sym_BSLASHcolorbox] = ACTIONS(12221), + [anon_sym_BSLASHtextcolor] = ACTIONS(12221), + [anon_sym_BSLASHpagecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12221), + }, + [719] = { + [sym_generic_command_name] = ACTIONS(12217), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12217), + [aux_sym_chapter_token1] = ACTIONS(12217), + [aux_sym_section_token1] = ACTIONS(12217), + [aux_sym_subsection_token1] = ACTIONS(12217), + [aux_sym_subsubsection_token1] = ACTIONS(12217), + [aux_sym_paragraph_token1] = ACTIONS(12217), + [aux_sym_subparagraph_token1] = ACTIONS(12217), + [anon_sym_BSLASHitem] = ACTIONS(12217), + [anon_sym_LBRACK] = ACTIONS(12215), + [anon_sym_LBRACE] = ACTIONS(12215), + [anon_sym_LPAREN] = ACTIONS(12215), + [anon_sym_COMMA] = ACTIONS(12215), + [anon_sym_EQ] = ACTIONS(12215), + [sym_word] = ACTIONS(12215), + [sym_param] = ACTIONS(12215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12215), + [anon_sym_DOLLAR] = ACTIONS(12217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12215), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12215), + [anon_sym_BSLASHbegin] = ACTIONS(12217), + [anon_sym_BSLASHcaption] = ACTIONS(12217), + [anon_sym_BSLASHcite] = ACTIONS(12217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCite] = ACTIONS(12217), + [anon_sym_BSLASHnocite] = ACTIONS(12217), + [anon_sym_BSLASHcitet] = ACTIONS(12217), + [anon_sym_BSLASHcitep] = ACTIONS(12217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteauthor] = ACTIONS(12217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitetitle] = ACTIONS(12217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteyear] = ACTIONS(12217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitedate] = ACTIONS(12217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteurl] = ACTIONS(12217), + [anon_sym_BSLASHfullcite] = ACTIONS(12217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12217), + [anon_sym_BSLASHcitealt] = ACTIONS(12217), + [anon_sym_BSLASHcitealp] = ACTIONS(12217), + [anon_sym_BSLASHcitetext] = ACTIONS(12217), + [anon_sym_BSLASHparencite] = ACTIONS(12217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHParencite] = ACTIONS(12217), + [anon_sym_BSLASHfootcite] = ACTIONS(12217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12217), + [anon_sym_BSLASHtextcite] = ACTIONS(12217), + [anon_sym_BSLASHTextcite] = ACTIONS(12217), + [anon_sym_BSLASHsmartcite] = ACTIONS(12217), + [anon_sym_BSLASHSmartcite] = ACTIONS(12217), + [anon_sym_BSLASHsupercite] = ACTIONS(12217), + [anon_sym_BSLASHautocite] = ACTIONS(12217), + [anon_sym_BSLASHAutocite] = ACTIONS(12217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHvolcite] = ACTIONS(12217), + [anon_sym_BSLASHVolcite] = ACTIONS(12217), + [anon_sym_BSLASHpvolcite] = ACTIONS(12217), + [anon_sym_BSLASHPvolcite] = ACTIONS(12217), + [anon_sym_BSLASHfvolcite] = ACTIONS(12217), + [anon_sym_BSLASHftvolcite] = ACTIONS(12217), + [anon_sym_BSLASHsvolcite] = ACTIONS(12217), + [anon_sym_BSLASHSvolcite] = ACTIONS(12217), + [anon_sym_BSLASHtvolcite] = ACTIONS(12217), + [anon_sym_BSLASHTvolcite] = ACTIONS(12217), + [anon_sym_BSLASHavolcite] = ACTIONS(12217), + [anon_sym_BSLASHAvolcite] = ACTIONS(12217), + [anon_sym_BSLASHnotecite] = ACTIONS(12217), + [anon_sym_BSLASHpnotecite] = ACTIONS(12217), + [anon_sym_BSLASHPnotecite] = ACTIONS(12217), + [anon_sym_BSLASHfnotecite] = ACTIONS(12217), + [anon_sym_BSLASHusepackage] = ACTIONS(12217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12217), + [anon_sym_BSLASHinclude] = ACTIONS(12217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12217), + [anon_sym_BSLASHinput] = ACTIONS(12217), + [anon_sym_BSLASHsubfile] = ACTIONS(12217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12217), + [anon_sym_BSLASHbibliography] = ACTIONS(12217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12217), + [anon_sym_BSLASHincludesvg] = ACTIONS(12217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12217), + [anon_sym_BSLASHimport] = ACTIONS(12217), + [anon_sym_BSLASHsubimport] = ACTIONS(12217), + [anon_sym_BSLASHinputfrom] = ACTIONS(12217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12217), + [anon_sym_BSLASHincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHlabel] = ACTIONS(12217), + [anon_sym_BSLASHref] = ACTIONS(12217), + [anon_sym_BSLASHvref] = ACTIONS(12217), + [anon_sym_BSLASHVref] = ACTIONS(12217), + [anon_sym_BSLASHautoref] = ACTIONS(12217), + [anon_sym_BSLASHpageref] = ACTIONS(12217), + [anon_sym_BSLASHcref] = ACTIONS(12217), + [anon_sym_BSLASHCref] = ACTIONS(12217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnameCref] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHlabelcref] = ACTIONS(12217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12217), + [anon_sym_BSLASHeqref] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange] = ACTIONS(12217), + [anon_sym_BSLASHCrefrange] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewlabel] = ACTIONS(12217), + [anon_sym_BSLASHnewcommand] = ACTIONS(12217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12217), + [anon_sym_BSLASHgls] = ACTIONS(12217), + [anon_sym_BSLASHGls] = ACTIONS(12217), + [anon_sym_BSLASHGLS] = ACTIONS(12217), + [anon_sym_BSLASHglspl] = ACTIONS(12217), + [anon_sym_BSLASHGlspl] = ACTIONS(12217), + [anon_sym_BSLASHGLSpl] = ACTIONS(12217), + [anon_sym_BSLASHglsdisp] = ACTIONS(12217), + [anon_sym_BSLASHglslink] = ACTIONS(12217), + [anon_sym_BSLASHglstext] = ACTIONS(12217), + [anon_sym_BSLASHGlstext] = ACTIONS(12217), + [anon_sym_BSLASHGLStext] = ACTIONS(12217), + [anon_sym_BSLASHglsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12217), + [anon_sym_BSLASHglsplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSplural] = ACTIONS(12217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHglsname] = ACTIONS(12217), + [anon_sym_BSLASHGlsname] = ACTIONS(12217), + [anon_sym_BSLASHGLSname] = ACTIONS(12217), + [anon_sym_BSLASHglssymbol] = ACTIONS(12217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12217), + [anon_sym_BSLASHglsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12217), + [anon_sym_BSLASHglsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12217), + [anon_sym_BSLASHglsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12217), + [anon_sym_BSLASHglsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12217), + [anon_sym_BSLASHglsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12217), + [anon_sym_BSLASHnewacronym] = ACTIONS(12217), + [anon_sym_BSLASHacrshort] = ACTIONS(12217), + [anon_sym_BSLASHAcrshort] = ACTIONS(12217), + [anon_sym_BSLASHACRshort] = ACTIONS(12217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12217), + [anon_sym_BSLASHacrlong] = ACTIONS(12217), + [anon_sym_BSLASHAcrlong] = ACTIONS(12217), + [anon_sym_BSLASHACRlong] = ACTIONS(12217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12217), + [anon_sym_BSLASHacrfull] = ACTIONS(12217), + [anon_sym_BSLASHAcrfull] = ACTIONS(12217), + [anon_sym_BSLASHACRfull] = ACTIONS(12217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12217), + [anon_sym_BSLASHacs] = ACTIONS(12217), + [anon_sym_BSLASHAcs] = ACTIONS(12217), + [anon_sym_BSLASHacsp] = ACTIONS(12217), + [anon_sym_BSLASHAcsp] = ACTIONS(12217), + [anon_sym_BSLASHacl] = ACTIONS(12217), + [anon_sym_BSLASHAcl] = ACTIONS(12217), + [anon_sym_BSLASHaclp] = ACTIONS(12217), + [anon_sym_BSLASHAclp] = ACTIONS(12217), + [anon_sym_BSLASHacf] = ACTIONS(12217), + [anon_sym_BSLASHAcf] = ACTIONS(12217), + [anon_sym_BSLASHacfp] = ACTIONS(12217), + [anon_sym_BSLASHAcfp] = ACTIONS(12217), + [anon_sym_BSLASHac] = ACTIONS(12217), + [anon_sym_BSLASHAc] = ACTIONS(12217), + [anon_sym_BSLASHacp] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12217), + [anon_sym_BSLASHcolor] = ACTIONS(12217), + [anon_sym_BSLASHcolorbox] = ACTIONS(12217), + [anon_sym_BSLASHtextcolor] = ACTIONS(12217), + [anon_sym_BSLASHpagecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12217), + }, + [720] = { + [sym_generic_command_name] = ACTIONS(12213), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12213), + [aux_sym_chapter_token1] = ACTIONS(12213), + [aux_sym_section_token1] = ACTIONS(12213), + [aux_sym_subsection_token1] = ACTIONS(12213), + [aux_sym_subsubsection_token1] = ACTIONS(12213), + [aux_sym_paragraph_token1] = ACTIONS(12213), + [aux_sym_subparagraph_token1] = ACTIONS(12213), + [anon_sym_BSLASHitem] = ACTIONS(12213), + [anon_sym_LBRACK] = ACTIONS(12211), + [anon_sym_LBRACE] = ACTIONS(12211), + [anon_sym_LPAREN] = ACTIONS(12211), + [anon_sym_COMMA] = ACTIONS(12211), + [anon_sym_EQ] = ACTIONS(12211), + [sym_word] = ACTIONS(12211), + [sym_param] = ACTIONS(12211), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12211), + [anon_sym_DOLLAR] = ACTIONS(12213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12211), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12211), + [anon_sym_BSLASHbegin] = ACTIONS(12213), + [anon_sym_BSLASHcaption] = ACTIONS(12213), + [anon_sym_BSLASHcite] = ACTIONS(12213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCite] = ACTIONS(12213), + [anon_sym_BSLASHnocite] = ACTIONS(12213), + [anon_sym_BSLASHcitet] = ACTIONS(12213), + [anon_sym_BSLASHcitep] = ACTIONS(12213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteauthor] = ACTIONS(12213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitetitle] = ACTIONS(12213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteyear] = ACTIONS(12213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitedate] = ACTIONS(12213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteurl] = ACTIONS(12213), + [anon_sym_BSLASHfullcite] = ACTIONS(12213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12213), + [anon_sym_BSLASHcitealt] = ACTIONS(12213), + [anon_sym_BSLASHcitealp] = ACTIONS(12213), + [anon_sym_BSLASHcitetext] = ACTIONS(12213), + [anon_sym_BSLASHparencite] = ACTIONS(12213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHParencite] = ACTIONS(12213), + [anon_sym_BSLASHfootcite] = ACTIONS(12213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12213), + [anon_sym_BSLASHtextcite] = ACTIONS(12213), + [anon_sym_BSLASHTextcite] = ACTIONS(12213), + [anon_sym_BSLASHsmartcite] = ACTIONS(12213), + [anon_sym_BSLASHSmartcite] = ACTIONS(12213), + [anon_sym_BSLASHsupercite] = ACTIONS(12213), + [anon_sym_BSLASHautocite] = ACTIONS(12213), + [anon_sym_BSLASHAutocite] = ACTIONS(12213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHvolcite] = ACTIONS(12213), + [anon_sym_BSLASHVolcite] = ACTIONS(12213), + [anon_sym_BSLASHpvolcite] = ACTIONS(12213), + [anon_sym_BSLASHPvolcite] = ACTIONS(12213), + [anon_sym_BSLASHfvolcite] = ACTIONS(12213), + [anon_sym_BSLASHftvolcite] = ACTIONS(12213), + [anon_sym_BSLASHsvolcite] = ACTIONS(12213), + [anon_sym_BSLASHSvolcite] = ACTIONS(12213), + [anon_sym_BSLASHtvolcite] = ACTIONS(12213), + [anon_sym_BSLASHTvolcite] = ACTIONS(12213), + [anon_sym_BSLASHavolcite] = ACTIONS(12213), + [anon_sym_BSLASHAvolcite] = ACTIONS(12213), + [anon_sym_BSLASHnotecite] = ACTIONS(12213), + [anon_sym_BSLASHpnotecite] = ACTIONS(12213), + [anon_sym_BSLASHPnotecite] = ACTIONS(12213), + [anon_sym_BSLASHfnotecite] = ACTIONS(12213), + [anon_sym_BSLASHusepackage] = ACTIONS(12213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12213), + [anon_sym_BSLASHinclude] = ACTIONS(12213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12213), + [anon_sym_BSLASHinput] = ACTIONS(12213), + [anon_sym_BSLASHsubfile] = ACTIONS(12213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12213), + [anon_sym_BSLASHbibliography] = ACTIONS(12213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12213), + [anon_sym_BSLASHincludesvg] = ACTIONS(12213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12213), + [anon_sym_BSLASHimport] = ACTIONS(12213), + [anon_sym_BSLASHsubimport] = ACTIONS(12213), + [anon_sym_BSLASHinputfrom] = ACTIONS(12213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12213), + [anon_sym_BSLASHincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHlabel] = ACTIONS(12213), + [anon_sym_BSLASHref] = ACTIONS(12213), + [anon_sym_BSLASHvref] = ACTIONS(12213), + [anon_sym_BSLASHVref] = ACTIONS(12213), + [anon_sym_BSLASHautoref] = ACTIONS(12213), + [anon_sym_BSLASHpageref] = ACTIONS(12213), + [anon_sym_BSLASHcref] = ACTIONS(12213), + [anon_sym_BSLASHCref] = ACTIONS(12213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnameCref] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHlabelcref] = ACTIONS(12213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12213), + [anon_sym_BSLASHeqref] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange] = ACTIONS(12213), + [anon_sym_BSLASHCrefrange] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewlabel] = ACTIONS(12213), + [anon_sym_BSLASHnewcommand] = ACTIONS(12213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12213), + [anon_sym_BSLASHgls] = ACTIONS(12213), + [anon_sym_BSLASHGls] = ACTIONS(12213), + [anon_sym_BSLASHGLS] = ACTIONS(12213), + [anon_sym_BSLASHglspl] = ACTIONS(12213), + [anon_sym_BSLASHGlspl] = ACTIONS(12213), + [anon_sym_BSLASHGLSpl] = ACTIONS(12213), + [anon_sym_BSLASHglsdisp] = ACTIONS(12213), + [anon_sym_BSLASHglslink] = ACTIONS(12213), + [anon_sym_BSLASHglstext] = ACTIONS(12213), + [anon_sym_BSLASHGlstext] = ACTIONS(12213), + [anon_sym_BSLASHGLStext] = ACTIONS(12213), + [anon_sym_BSLASHglsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12213), + [anon_sym_BSLASHglsplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSplural] = ACTIONS(12213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHglsname] = ACTIONS(12213), + [anon_sym_BSLASHGlsname] = ACTIONS(12213), + [anon_sym_BSLASHGLSname] = ACTIONS(12213), + [anon_sym_BSLASHglssymbol] = ACTIONS(12213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12213), + [anon_sym_BSLASHglsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12213), + [anon_sym_BSLASHglsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12213), + [anon_sym_BSLASHglsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12213), + [anon_sym_BSLASHglsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12213), + [anon_sym_BSLASHglsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12213), + [anon_sym_BSLASHnewacronym] = ACTIONS(12213), + [anon_sym_BSLASHacrshort] = ACTIONS(12213), + [anon_sym_BSLASHAcrshort] = ACTIONS(12213), + [anon_sym_BSLASHACRshort] = ACTIONS(12213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12213), + [anon_sym_BSLASHacrlong] = ACTIONS(12213), + [anon_sym_BSLASHAcrlong] = ACTIONS(12213), + [anon_sym_BSLASHACRlong] = ACTIONS(12213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12213), + [anon_sym_BSLASHacrfull] = ACTIONS(12213), + [anon_sym_BSLASHAcrfull] = ACTIONS(12213), + [anon_sym_BSLASHACRfull] = ACTIONS(12213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12213), + [anon_sym_BSLASHacs] = ACTIONS(12213), + [anon_sym_BSLASHAcs] = ACTIONS(12213), + [anon_sym_BSLASHacsp] = ACTIONS(12213), + [anon_sym_BSLASHAcsp] = ACTIONS(12213), + [anon_sym_BSLASHacl] = ACTIONS(12213), + [anon_sym_BSLASHAcl] = ACTIONS(12213), + [anon_sym_BSLASHaclp] = ACTIONS(12213), + [anon_sym_BSLASHAclp] = ACTIONS(12213), + [anon_sym_BSLASHacf] = ACTIONS(12213), + [anon_sym_BSLASHAcf] = ACTIONS(12213), + [anon_sym_BSLASHacfp] = ACTIONS(12213), + [anon_sym_BSLASHAcfp] = ACTIONS(12213), + [anon_sym_BSLASHac] = ACTIONS(12213), + [anon_sym_BSLASHAc] = ACTIONS(12213), + [anon_sym_BSLASHacp] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12213), + [anon_sym_BSLASHcolor] = ACTIONS(12213), + [anon_sym_BSLASHcolorbox] = ACTIONS(12213), + [anon_sym_BSLASHtextcolor] = ACTIONS(12213), + [anon_sym_BSLASHpagecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12213), + }, + [721] = { + [sym_generic_command_name] = ACTIONS(12205), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12205), + [aux_sym_chapter_token1] = ACTIONS(12205), + [aux_sym_section_token1] = ACTIONS(12205), + [aux_sym_subsection_token1] = ACTIONS(12205), + [aux_sym_subsubsection_token1] = ACTIONS(12205), + [aux_sym_paragraph_token1] = ACTIONS(12205), + [aux_sym_subparagraph_token1] = ACTIONS(12205), + [anon_sym_BSLASHitem] = ACTIONS(12205), + [anon_sym_LBRACK] = ACTIONS(12203), + [anon_sym_LBRACE] = ACTIONS(12203), + [anon_sym_LPAREN] = ACTIONS(12203), + [anon_sym_COMMA] = ACTIONS(12203), + [anon_sym_EQ] = ACTIONS(12203), + [sym_word] = ACTIONS(12203), + [sym_param] = ACTIONS(12203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12203), + [anon_sym_DOLLAR] = ACTIONS(12205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12203), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12203), + [anon_sym_BSLASHbegin] = ACTIONS(12205), + [anon_sym_BSLASHcaption] = ACTIONS(12205), + [anon_sym_BSLASHcite] = ACTIONS(12205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCite] = ACTIONS(12205), + [anon_sym_BSLASHnocite] = ACTIONS(12205), + [anon_sym_BSLASHcitet] = ACTIONS(12205), + [anon_sym_BSLASHcitep] = ACTIONS(12205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteauthor] = ACTIONS(12205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitetitle] = ACTIONS(12205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteyear] = ACTIONS(12205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitedate] = ACTIONS(12205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteurl] = ACTIONS(12205), + [anon_sym_BSLASHfullcite] = ACTIONS(12205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12205), + [anon_sym_BSLASHcitealt] = ACTIONS(12205), + [anon_sym_BSLASHcitealp] = ACTIONS(12205), + [anon_sym_BSLASHcitetext] = ACTIONS(12205), + [anon_sym_BSLASHparencite] = ACTIONS(12205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHParencite] = ACTIONS(12205), + [anon_sym_BSLASHfootcite] = ACTIONS(12205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12205), + [anon_sym_BSLASHtextcite] = ACTIONS(12205), + [anon_sym_BSLASHTextcite] = ACTIONS(12205), + [anon_sym_BSLASHsmartcite] = ACTIONS(12205), + [anon_sym_BSLASHSmartcite] = ACTIONS(12205), + [anon_sym_BSLASHsupercite] = ACTIONS(12205), + [anon_sym_BSLASHautocite] = ACTIONS(12205), + [anon_sym_BSLASHAutocite] = ACTIONS(12205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHvolcite] = ACTIONS(12205), + [anon_sym_BSLASHVolcite] = ACTIONS(12205), + [anon_sym_BSLASHpvolcite] = ACTIONS(12205), + [anon_sym_BSLASHPvolcite] = ACTIONS(12205), + [anon_sym_BSLASHfvolcite] = ACTIONS(12205), + [anon_sym_BSLASHftvolcite] = ACTIONS(12205), + [anon_sym_BSLASHsvolcite] = ACTIONS(12205), + [anon_sym_BSLASHSvolcite] = ACTIONS(12205), + [anon_sym_BSLASHtvolcite] = ACTIONS(12205), + [anon_sym_BSLASHTvolcite] = ACTIONS(12205), + [anon_sym_BSLASHavolcite] = ACTIONS(12205), + [anon_sym_BSLASHAvolcite] = ACTIONS(12205), + [anon_sym_BSLASHnotecite] = ACTIONS(12205), + [anon_sym_BSLASHpnotecite] = ACTIONS(12205), + [anon_sym_BSLASHPnotecite] = ACTIONS(12205), + [anon_sym_BSLASHfnotecite] = ACTIONS(12205), + [anon_sym_BSLASHusepackage] = ACTIONS(12205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12205), + [anon_sym_BSLASHinclude] = ACTIONS(12205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12205), + [anon_sym_BSLASHinput] = ACTIONS(12205), + [anon_sym_BSLASHsubfile] = ACTIONS(12205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12205), + [anon_sym_BSLASHbibliography] = ACTIONS(12205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12205), + [anon_sym_BSLASHincludesvg] = ACTIONS(12205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12205), + [anon_sym_BSLASHimport] = ACTIONS(12205), + [anon_sym_BSLASHsubimport] = ACTIONS(12205), + [anon_sym_BSLASHinputfrom] = ACTIONS(12205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12205), + [anon_sym_BSLASHincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHlabel] = ACTIONS(12205), + [anon_sym_BSLASHref] = ACTIONS(12205), + [anon_sym_BSLASHvref] = ACTIONS(12205), + [anon_sym_BSLASHVref] = ACTIONS(12205), + [anon_sym_BSLASHautoref] = ACTIONS(12205), + [anon_sym_BSLASHpageref] = ACTIONS(12205), + [anon_sym_BSLASHcref] = ACTIONS(12205), + [anon_sym_BSLASHCref] = ACTIONS(12205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnameCref] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHlabelcref] = ACTIONS(12205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12205), + [anon_sym_BSLASHeqref] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange] = ACTIONS(12205), + [anon_sym_BSLASHCrefrange] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewlabel] = ACTIONS(12205), + [anon_sym_BSLASHnewcommand] = ACTIONS(12205), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12205), + [anon_sym_BSLASHgls] = ACTIONS(12205), + [anon_sym_BSLASHGls] = ACTIONS(12205), + [anon_sym_BSLASHGLS] = ACTIONS(12205), + [anon_sym_BSLASHglspl] = ACTIONS(12205), + [anon_sym_BSLASHGlspl] = ACTIONS(12205), + [anon_sym_BSLASHGLSpl] = ACTIONS(12205), + [anon_sym_BSLASHglsdisp] = ACTIONS(12205), + [anon_sym_BSLASHglslink] = ACTIONS(12205), + [anon_sym_BSLASHglstext] = ACTIONS(12205), + [anon_sym_BSLASHGlstext] = ACTIONS(12205), + [anon_sym_BSLASHGLStext] = ACTIONS(12205), + [anon_sym_BSLASHglsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12205), + [anon_sym_BSLASHglsplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSplural] = ACTIONS(12205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHglsname] = ACTIONS(12205), + [anon_sym_BSLASHGlsname] = ACTIONS(12205), + [anon_sym_BSLASHGLSname] = ACTIONS(12205), + [anon_sym_BSLASHglssymbol] = ACTIONS(12205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12205), + [anon_sym_BSLASHglsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12205), + [anon_sym_BSLASHglsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12205), + [anon_sym_BSLASHglsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12205), + [anon_sym_BSLASHglsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12205), + [anon_sym_BSLASHglsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12205), + [anon_sym_BSLASHnewacronym] = ACTIONS(12205), + [anon_sym_BSLASHacrshort] = ACTIONS(12205), + [anon_sym_BSLASHAcrshort] = ACTIONS(12205), + [anon_sym_BSLASHACRshort] = ACTIONS(12205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12205), + [anon_sym_BSLASHacrlong] = ACTIONS(12205), + [anon_sym_BSLASHAcrlong] = ACTIONS(12205), + [anon_sym_BSLASHACRlong] = ACTIONS(12205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12205), + [anon_sym_BSLASHacrfull] = ACTIONS(12205), + [anon_sym_BSLASHAcrfull] = ACTIONS(12205), + [anon_sym_BSLASHACRfull] = ACTIONS(12205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12205), + [anon_sym_BSLASHacs] = ACTIONS(12205), + [anon_sym_BSLASHAcs] = ACTIONS(12205), + [anon_sym_BSLASHacsp] = ACTIONS(12205), + [anon_sym_BSLASHAcsp] = ACTIONS(12205), + [anon_sym_BSLASHacl] = ACTIONS(12205), + [anon_sym_BSLASHAcl] = ACTIONS(12205), + [anon_sym_BSLASHaclp] = ACTIONS(12205), + [anon_sym_BSLASHAclp] = ACTIONS(12205), + [anon_sym_BSLASHacf] = ACTIONS(12205), + [anon_sym_BSLASHAcf] = ACTIONS(12205), + [anon_sym_BSLASHacfp] = ACTIONS(12205), + [anon_sym_BSLASHAcfp] = ACTIONS(12205), + [anon_sym_BSLASHac] = ACTIONS(12205), + [anon_sym_BSLASHAc] = ACTIONS(12205), + [anon_sym_BSLASHacp] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12205), + [anon_sym_BSLASHcolor] = ACTIONS(12205), + [anon_sym_BSLASHcolorbox] = ACTIONS(12205), + [anon_sym_BSLASHtextcolor] = ACTIONS(12205), + [anon_sym_BSLASHpagecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12205), + }, + [722] = { + [sym_generic_command_name] = ACTIONS(12201), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12201), + [aux_sym_chapter_token1] = ACTIONS(12201), + [aux_sym_section_token1] = ACTIONS(12201), + [aux_sym_subsection_token1] = ACTIONS(12201), + [aux_sym_subsubsection_token1] = ACTIONS(12201), + [aux_sym_paragraph_token1] = ACTIONS(12201), + [aux_sym_subparagraph_token1] = ACTIONS(12201), + [anon_sym_BSLASHitem] = ACTIONS(12201), + [anon_sym_LBRACK] = ACTIONS(12199), + [anon_sym_LBRACE] = ACTIONS(12199), + [anon_sym_LPAREN] = ACTIONS(12199), + [anon_sym_COMMA] = ACTIONS(12199), + [anon_sym_EQ] = ACTIONS(12199), + [sym_word] = ACTIONS(12199), + [sym_param] = ACTIONS(12199), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12199), + [anon_sym_DOLLAR] = ACTIONS(12201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12199), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12199), + [anon_sym_BSLASHbegin] = ACTIONS(12201), + [anon_sym_BSLASHcaption] = ACTIONS(12201), + [anon_sym_BSLASHcite] = ACTIONS(12201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCite] = ACTIONS(12201), + [anon_sym_BSLASHnocite] = ACTIONS(12201), + [anon_sym_BSLASHcitet] = ACTIONS(12201), + [anon_sym_BSLASHcitep] = ACTIONS(12201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteauthor] = ACTIONS(12201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitetitle] = ACTIONS(12201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteyear] = ACTIONS(12201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitedate] = ACTIONS(12201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteurl] = ACTIONS(12201), + [anon_sym_BSLASHfullcite] = ACTIONS(12201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12201), + [anon_sym_BSLASHcitealt] = ACTIONS(12201), + [anon_sym_BSLASHcitealp] = ACTIONS(12201), + [anon_sym_BSLASHcitetext] = ACTIONS(12201), + [anon_sym_BSLASHparencite] = ACTIONS(12201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHParencite] = ACTIONS(12201), + [anon_sym_BSLASHfootcite] = ACTIONS(12201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12201), + [anon_sym_BSLASHtextcite] = ACTIONS(12201), + [anon_sym_BSLASHTextcite] = ACTIONS(12201), + [anon_sym_BSLASHsmartcite] = ACTIONS(12201), + [anon_sym_BSLASHSmartcite] = ACTIONS(12201), + [anon_sym_BSLASHsupercite] = ACTIONS(12201), + [anon_sym_BSLASHautocite] = ACTIONS(12201), + [anon_sym_BSLASHAutocite] = ACTIONS(12201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHvolcite] = ACTIONS(12201), + [anon_sym_BSLASHVolcite] = ACTIONS(12201), + [anon_sym_BSLASHpvolcite] = ACTIONS(12201), + [anon_sym_BSLASHPvolcite] = ACTIONS(12201), + [anon_sym_BSLASHfvolcite] = ACTIONS(12201), + [anon_sym_BSLASHftvolcite] = ACTIONS(12201), + [anon_sym_BSLASHsvolcite] = ACTIONS(12201), + [anon_sym_BSLASHSvolcite] = ACTIONS(12201), + [anon_sym_BSLASHtvolcite] = ACTIONS(12201), + [anon_sym_BSLASHTvolcite] = ACTIONS(12201), + [anon_sym_BSLASHavolcite] = ACTIONS(12201), + [anon_sym_BSLASHAvolcite] = ACTIONS(12201), + [anon_sym_BSLASHnotecite] = ACTIONS(12201), + [anon_sym_BSLASHpnotecite] = ACTIONS(12201), + [anon_sym_BSLASHPnotecite] = ACTIONS(12201), + [anon_sym_BSLASHfnotecite] = ACTIONS(12201), + [anon_sym_BSLASHusepackage] = ACTIONS(12201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12201), + [anon_sym_BSLASHinclude] = ACTIONS(12201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12201), + [anon_sym_BSLASHinput] = ACTIONS(12201), + [anon_sym_BSLASHsubfile] = ACTIONS(12201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12201), + [anon_sym_BSLASHbibliography] = ACTIONS(12201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12201), + [anon_sym_BSLASHincludesvg] = ACTIONS(12201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12201), + [anon_sym_BSLASHimport] = ACTIONS(12201), + [anon_sym_BSLASHsubimport] = ACTIONS(12201), + [anon_sym_BSLASHinputfrom] = ACTIONS(12201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12201), + [anon_sym_BSLASHincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHlabel] = ACTIONS(12201), + [anon_sym_BSLASHref] = ACTIONS(12201), + [anon_sym_BSLASHvref] = ACTIONS(12201), + [anon_sym_BSLASHVref] = ACTIONS(12201), + [anon_sym_BSLASHautoref] = ACTIONS(12201), + [anon_sym_BSLASHpageref] = ACTIONS(12201), + [anon_sym_BSLASHcref] = ACTIONS(12201), + [anon_sym_BSLASHCref] = ACTIONS(12201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnameCref] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHlabelcref] = ACTIONS(12201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12201), + [anon_sym_BSLASHeqref] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange] = ACTIONS(12201), + [anon_sym_BSLASHCrefrange] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewlabel] = ACTIONS(12201), + [anon_sym_BSLASHnewcommand] = ACTIONS(12201), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12201), + [anon_sym_BSLASHgls] = ACTIONS(12201), + [anon_sym_BSLASHGls] = ACTIONS(12201), + [anon_sym_BSLASHGLS] = ACTIONS(12201), + [anon_sym_BSLASHglspl] = ACTIONS(12201), + [anon_sym_BSLASHGlspl] = ACTIONS(12201), + [anon_sym_BSLASHGLSpl] = ACTIONS(12201), + [anon_sym_BSLASHglsdisp] = ACTIONS(12201), + [anon_sym_BSLASHglslink] = ACTIONS(12201), + [anon_sym_BSLASHglstext] = ACTIONS(12201), + [anon_sym_BSLASHGlstext] = ACTIONS(12201), + [anon_sym_BSLASHGLStext] = ACTIONS(12201), + [anon_sym_BSLASHglsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12201), + [anon_sym_BSLASHglsplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSplural] = ACTIONS(12201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHglsname] = ACTIONS(12201), + [anon_sym_BSLASHGlsname] = ACTIONS(12201), + [anon_sym_BSLASHGLSname] = ACTIONS(12201), + [anon_sym_BSLASHglssymbol] = ACTIONS(12201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12201), + [anon_sym_BSLASHglsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12201), + [anon_sym_BSLASHglsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12201), + [anon_sym_BSLASHglsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12201), + [anon_sym_BSLASHglsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12201), + [anon_sym_BSLASHglsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12201), + [anon_sym_BSLASHnewacronym] = ACTIONS(12201), + [anon_sym_BSLASHacrshort] = ACTIONS(12201), + [anon_sym_BSLASHAcrshort] = ACTIONS(12201), + [anon_sym_BSLASHACRshort] = ACTIONS(12201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12201), + [anon_sym_BSLASHacrlong] = ACTIONS(12201), + [anon_sym_BSLASHAcrlong] = ACTIONS(12201), + [anon_sym_BSLASHACRlong] = ACTIONS(12201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12201), + [anon_sym_BSLASHacrfull] = ACTIONS(12201), + [anon_sym_BSLASHAcrfull] = ACTIONS(12201), + [anon_sym_BSLASHACRfull] = ACTIONS(12201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12201), + [anon_sym_BSLASHacs] = ACTIONS(12201), + [anon_sym_BSLASHAcs] = ACTIONS(12201), + [anon_sym_BSLASHacsp] = ACTIONS(12201), + [anon_sym_BSLASHAcsp] = ACTIONS(12201), + [anon_sym_BSLASHacl] = ACTIONS(12201), + [anon_sym_BSLASHAcl] = ACTIONS(12201), + [anon_sym_BSLASHaclp] = ACTIONS(12201), + [anon_sym_BSLASHAclp] = ACTIONS(12201), + [anon_sym_BSLASHacf] = ACTIONS(12201), + [anon_sym_BSLASHAcf] = ACTIONS(12201), + [anon_sym_BSLASHacfp] = ACTIONS(12201), + [anon_sym_BSLASHAcfp] = ACTIONS(12201), + [anon_sym_BSLASHac] = ACTIONS(12201), + [anon_sym_BSLASHAc] = ACTIONS(12201), + [anon_sym_BSLASHacp] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12201), + [anon_sym_BSLASHcolor] = ACTIONS(12201), + [anon_sym_BSLASHcolorbox] = ACTIONS(12201), + [anon_sym_BSLASHtextcolor] = ACTIONS(12201), + [anon_sym_BSLASHpagecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12201), + }, + [723] = { + [sym_generic_command_name] = ACTIONS(12193), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12193), + [aux_sym_chapter_token1] = ACTIONS(12193), + [aux_sym_section_token1] = ACTIONS(12193), + [aux_sym_subsection_token1] = ACTIONS(12193), + [aux_sym_subsubsection_token1] = ACTIONS(12193), + [aux_sym_paragraph_token1] = ACTIONS(12193), + [aux_sym_subparagraph_token1] = ACTIONS(12193), + [anon_sym_BSLASHitem] = ACTIONS(12193), + [anon_sym_LBRACK] = ACTIONS(12191), + [anon_sym_LBRACE] = ACTIONS(12191), + [anon_sym_LPAREN] = ACTIONS(12191), + [anon_sym_COMMA] = ACTIONS(12191), + [anon_sym_EQ] = ACTIONS(12191), + [sym_word] = ACTIONS(12191), + [sym_param] = ACTIONS(12191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12191), + [anon_sym_DOLLAR] = ACTIONS(12193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12191), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12191), + [anon_sym_BSLASHbegin] = ACTIONS(12193), + [anon_sym_BSLASHcaption] = ACTIONS(12193), + [anon_sym_BSLASHcite] = ACTIONS(12193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCite] = ACTIONS(12193), + [anon_sym_BSLASHnocite] = ACTIONS(12193), + [anon_sym_BSLASHcitet] = ACTIONS(12193), + [anon_sym_BSLASHcitep] = ACTIONS(12193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteauthor] = ACTIONS(12193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitetitle] = ACTIONS(12193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteyear] = ACTIONS(12193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitedate] = ACTIONS(12193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteurl] = ACTIONS(12193), + [anon_sym_BSLASHfullcite] = ACTIONS(12193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12193), + [anon_sym_BSLASHcitealt] = ACTIONS(12193), + [anon_sym_BSLASHcitealp] = ACTIONS(12193), + [anon_sym_BSLASHcitetext] = ACTIONS(12193), + [anon_sym_BSLASHparencite] = ACTIONS(12193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHParencite] = ACTIONS(12193), + [anon_sym_BSLASHfootcite] = ACTIONS(12193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12193), + [anon_sym_BSLASHtextcite] = ACTIONS(12193), + [anon_sym_BSLASHTextcite] = ACTIONS(12193), + [anon_sym_BSLASHsmartcite] = ACTIONS(12193), + [anon_sym_BSLASHSmartcite] = ACTIONS(12193), + [anon_sym_BSLASHsupercite] = ACTIONS(12193), + [anon_sym_BSLASHautocite] = ACTIONS(12193), + [anon_sym_BSLASHAutocite] = ACTIONS(12193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHvolcite] = ACTIONS(12193), + [anon_sym_BSLASHVolcite] = ACTIONS(12193), + [anon_sym_BSLASHpvolcite] = ACTIONS(12193), + [anon_sym_BSLASHPvolcite] = ACTIONS(12193), + [anon_sym_BSLASHfvolcite] = ACTIONS(12193), + [anon_sym_BSLASHftvolcite] = ACTIONS(12193), + [anon_sym_BSLASHsvolcite] = ACTIONS(12193), + [anon_sym_BSLASHSvolcite] = ACTIONS(12193), + [anon_sym_BSLASHtvolcite] = ACTIONS(12193), + [anon_sym_BSLASHTvolcite] = ACTIONS(12193), + [anon_sym_BSLASHavolcite] = ACTIONS(12193), + [anon_sym_BSLASHAvolcite] = ACTIONS(12193), + [anon_sym_BSLASHnotecite] = ACTIONS(12193), + [anon_sym_BSLASHpnotecite] = ACTIONS(12193), + [anon_sym_BSLASHPnotecite] = ACTIONS(12193), + [anon_sym_BSLASHfnotecite] = ACTIONS(12193), + [anon_sym_BSLASHusepackage] = ACTIONS(12193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12193), + [anon_sym_BSLASHinclude] = ACTIONS(12193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12193), + [anon_sym_BSLASHinput] = ACTIONS(12193), + [anon_sym_BSLASHsubfile] = ACTIONS(12193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12193), + [anon_sym_BSLASHbibliography] = ACTIONS(12193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12193), + [anon_sym_BSLASHincludesvg] = ACTIONS(12193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12193), + [anon_sym_BSLASHimport] = ACTIONS(12193), + [anon_sym_BSLASHsubimport] = ACTIONS(12193), + [anon_sym_BSLASHinputfrom] = ACTIONS(12193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12193), + [anon_sym_BSLASHincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHlabel] = ACTIONS(12193), + [anon_sym_BSLASHref] = ACTIONS(12193), + [anon_sym_BSLASHvref] = ACTIONS(12193), + [anon_sym_BSLASHVref] = ACTIONS(12193), + [anon_sym_BSLASHautoref] = ACTIONS(12193), + [anon_sym_BSLASHpageref] = ACTIONS(12193), + [anon_sym_BSLASHcref] = ACTIONS(12193), + [anon_sym_BSLASHCref] = ACTIONS(12193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnameCref] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHlabelcref] = ACTIONS(12193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12193), + [anon_sym_BSLASHeqref] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange] = ACTIONS(12193), + [anon_sym_BSLASHCrefrange] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewlabel] = ACTIONS(12193), + [anon_sym_BSLASHnewcommand] = ACTIONS(12193), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12193), + [anon_sym_BSLASHgls] = ACTIONS(12193), + [anon_sym_BSLASHGls] = ACTIONS(12193), + [anon_sym_BSLASHGLS] = ACTIONS(12193), + [anon_sym_BSLASHglspl] = ACTIONS(12193), + [anon_sym_BSLASHGlspl] = ACTIONS(12193), + [anon_sym_BSLASHGLSpl] = ACTIONS(12193), + [anon_sym_BSLASHglsdisp] = ACTIONS(12193), + [anon_sym_BSLASHglslink] = ACTIONS(12193), + [anon_sym_BSLASHglstext] = ACTIONS(12193), + [anon_sym_BSLASHGlstext] = ACTIONS(12193), + [anon_sym_BSLASHGLStext] = ACTIONS(12193), + [anon_sym_BSLASHglsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12193), + [anon_sym_BSLASHglsplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSplural] = ACTIONS(12193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHglsname] = ACTIONS(12193), + [anon_sym_BSLASHGlsname] = ACTIONS(12193), + [anon_sym_BSLASHGLSname] = ACTIONS(12193), + [anon_sym_BSLASHglssymbol] = ACTIONS(12193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12193), + [anon_sym_BSLASHglsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12193), + [anon_sym_BSLASHglsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12193), + [anon_sym_BSLASHglsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12193), + [anon_sym_BSLASHglsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12193), + [anon_sym_BSLASHglsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12193), + [anon_sym_BSLASHnewacronym] = ACTIONS(12193), + [anon_sym_BSLASHacrshort] = ACTIONS(12193), + [anon_sym_BSLASHAcrshort] = ACTIONS(12193), + [anon_sym_BSLASHACRshort] = ACTIONS(12193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12193), + [anon_sym_BSLASHacrlong] = ACTIONS(12193), + [anon_sym_BSLASHAcrlong] = ACTIONS(12193), + [anon_sym_BSLASHACRlong] = ACTIONS(12193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12193), + [anon_sym_BSLASHacrfull] = ACTIONS(12193), + [anon_sym_BSLASHAcrfull] = ACTIONS(12193), + [anon_sym_BSLASHACRfull] = ACTIONS(12193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12193), + [anon_sym_BSLASHacs] = ACTIONS(12193), + [anon_sym_BSLASHAcs] = ACTIONS(12193), + [anon_sym_BSLASHacsp] = ACTIONS(12193), + [anon_sym_BSLASHAcsp] = ACTIONS(12193), + [anon_sym_BSLASHacl] = ACTIONS(12193), + [anon_sym_BSLASHAcl] = ACTIONS(12193), + [anon_sym_BSLASHaclp] = ACTIONS(12193), + [anon_sym_BSLASHAclp] = ACTIONS(12193), + [anon_sym_BSLASHacf] = ACTIONS(12193), + [anon_sym_BSLASHAcf] = ACTIONS(12193), + [anon_sym_BSLASHacfp] = ACTIONS(12193), + [anon_sym_BSLASHAcfp] = ACTIONS(12193), + [anon_sym_BSLASHac] = ACTIONS(12193), + [anon_sym_BSLASHAc] = ACTIONS(12193), + [anon_sym_BSLASHacp] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12193), + [anon_sym_BSLASHcolor] = ACTIONS(12193), + [anon_sym_BSLASHcolorbox] = ACTIONS(12193), + [anon_sym_BSLASHtextcolor] = ACTIONS(12193), + [anon_sym_BSLASHpagecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12193), + }, + [724] = { + [sym_generic_command_name] = ACTIONS(12116), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12116), + [aux_sym_chapter_token1] = ACTIONS(12116), + [aux_sym_section_token1] = ACTIONS(12116), + [aux_sym_subsection_token1] = ACTIONS(12116), + [aux_sym_subsubsection_token1] = ACTIONS(12116), + [aux_sym_paragraph_token1] = ACTIONS(12116), + [aux_sym_subparagraph_token1] = ACTIONS(12116), + [anon_sym_BSLASHitem] = ACTIONS(12116), + [anon_sym_LBRACK] = ACTIONS(12114), + [anon_sym_LBRACE] = ACTIONS(12114), + [anon_sym_LPAREN] = ACTIONS(12114), + [anon_sym_COMMA] = ACTIONS(12114), + [anon_sym_EQ] = ACTIONS(12114), + [sym_word] = ACTIONS(12114), + [sym_param] = ACTIONS(12114), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12114), + [anon_sym_DOLLAR] = ACTIONS(12116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12114), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12114), + [anon_sym_BSLASHbegin] = ACTIONS(12116), + [anon_sym_BSLASHcaption] = ACTIONS(12116), + [anon_sym_BSLASHcite] = ACTIONS(12116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCite] = ACTIONS(12116), + [anon_sym_BSLASHnocite] = ACTIONS(12116), + [anon_sym_BSLASHcitet] = ACTIONS(12116), + [anon_sym_BSLASHcitep] = ACTIONS(12116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteauthor] = ACTIONS(12116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitetitle] = ACTIONS(12116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteyear] = ACTIONS(12116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitedate] = ACTIONS(12116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteurl] = ACTIONS(12116), + [anon_sym_BSLASHfullcite] = ACTIONS(12116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12116), + [anon_sym_BSLASHcitealt] = ACTIONS(12116), + [anon_sym_BSLASHcitealp] = ACTIONS(12116), + [anon_sym_BSLASHcitetext] = ACTIONS(12116), + [anon_sym_BSLASHparencite] = ACTIONS(12116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHParencite] = ACTIONS(12116), + [anon_sym_BSLASHfootcite] = ACTIONS(12116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12116), + [anon_sym_BSLASHtextcite] = ACTIONS(12116), + [anon_sym_BSLASHTextcite] = ACTIONS(12116), + [anon_sym_BSLASHsmartcite] = ACTIONS(12116), + [anon_sym_BSLASHSmartcite] = ACTIONS(12116), + [anon_sym_BSLASHsupercite] = ACTIONS(12116), + [anon_sym_BSLASHautocite] = ACTIONS(12116), + [anon_sym_BSLASHAutocite] = ACTIONS(12116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHvolcite] = ACTIONS(12116), + [anon_sym_BSLASHVolcite] = ACTIONS(12116), + [anon_sym_BSLASHpvolcite] = ACTIONS(12116), + [anon_sym_BSLASHPvolcite] = ACTIONS(12116), + [anon_sym_BSLASHfvolcite] = ACTIONS(12116), + [anon_sym_BSLASHftvolcite] = ACTIONS(12116), + [anon_sym_BSLASHsvolcite] = ACTIONS(12116), + [anon_sym_BSLASHSvolcite] = ACTIONS(12116), + [anon_sym_BSLASHtvolcite] = ACTIONS(12116), + [anon_sym_BSLASHTvolcite] = ACTIONS(12116), + [anon_sym_BSLASHavolcite] = ACTIONS(12116), + [anon_sym_BSLASHAvolcite] = ACTIONS(12116), + [anon_sym_BSLASHnotecite] = ACTIONS(12116), + [anon_sym_BSLASHpnotecite] = ACTIONS(12116), + [anon_sym_BSLASHPnotecite] = ACTIONS(12116), + [anon_sym_BSLASHfnotecite] = ACTIONS(12116), + [anon_sym_BSLASHusepackage] = ACTIONS(12116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12116), + [anon_sym_BSLASHinclude] = ACTIONS(12116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12116), + [anon_sym_BSLASHinput] = ACTIONS(12116), + [anon_sym_BSLASHsubfile] = ACTIONS(12116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12116), + [anon_sym_BSLASHbibliography] = ACTIONS(12116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12116), + [anon_sym_BSLASHincludesvg] = ACTIONS(12116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12116), + [anon_sym_BSLASHimport] = ACTIONS(12116), + [anon_sym_BSLASHsubimport] = ACTIONS(12116), + [anon_sym_BSLASHinputfrom] = ACTIONS(12116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12116), + [anon_sym_BSLASHincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHlabel] = ACTIONS(12116), + [anon_sym_BSLASHref] = ACTIONS(12116), + [anon_sym_BSLASHvref] = ACTIONS(12116), + [anon_sym_BSLASHVref] = ACTIONS(12116), + [anon_sym_BSLASHautoref] = ACTIONS(12116), + [anon_sym_BSLASHpageref] = ACTIONS(12116), + [anon_sym_BSLASHcref] = ACTIONS(12116), + [anon_sym_BSLASHCref] = ACTIONS(12116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnameCref] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHlabelcref] = ACTIONS(12116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12116), + [anon_sym_BSLASHeqref] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange] = ACTIONS(12116), + [anon_sym_BSLASHCrefrange] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewlabel] = ACTIONS(12116), + [anon_sym_BSLASHnewcommand] = ACTIONS(12116), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12116), + [anon_sym_BSLASHgls] = ACTIONS(12116), + [anon_sym_BSLASHGls] = ACTIONS(12116), + [anon_sym_BSLASHGLS] = ACTIONS(12116), + [anon_sym_BSLASHglspl] = ACTIONS(12116), + [anon_sym_BSLASHGlspl] = ACTIONS(12116), + [anon_sym_BSLASHGLSpl] = ACTIONS(12116), + [anon_sym_BSLASHglsdisp] = ACTIONS(12116), + [anon_sym_BSLASHglslink] = ACTIONS(12116), + [anon_sym_BSLASHglstext] = ACTIONS(12116), + [anon_sym_BSLASHGlstext] = ACTIONS(12116), + [anon_sym_BSLASHGLStext] = ACTIONS(12116), + [anon_sym_BSLASHglsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12116), + [anon_sym_BSLASHglsplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSplural] = ACTIONS(12116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHglsname] = ACTIONS(12116), + [anon_sym_BSLASHGlsname] = ACTIONS(12116), + [anon_sym_BSLASHGLSname] = ACTIONS(12116), + [anon_sym_BSLASHglssymbol] = ACTIONS(12116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12116), + [anon_sym_BSLASHglsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12116), + [anon_sym_BSLASHglsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12116), + [anon_sym_BSLASHglsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12116), + [anon_sym_BSLASHglsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12116), + [anon_sym_BSLASHglsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12116), + [anon_sym_BSLASHnewacronym] = ACTIONS(12116), + [anon_sym_BSLASHacrshort] = ACTIONS(12116), + [anon_sym_BSLASHAcrshort] = ACTIONS(12116), + [anon_sym_BSLASHACRshort] = ACTIONS(12116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12116), + [anon_sym_BSLASHacrlong] = ACTIONS(12116), + [anon_sym_BSLASHAcrlong] = ACTIONS(12116), + [anon_sym_BSLASHACRlong] = ACTIONS(12116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12116), + [anon_sym_BSLASHacrfull] = ACTIONS(12116), + [anon_sym_BSLASHAcrfull] = ACTIONS(12116), + [anon_sym_BSLASHACRfull] = ACTIONS(12116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12116), + [anon_sym_BSLASHacs] = ACTIONS(12116), + [anon_sym_BSLASHAcs] = ACTIONS(12116), + [anon_sym_BSLASHacsp] = ACTIONS(12116), + [anon_sym_BSLASHAcsp] = ACTIONS(12116), + [anon_sym_BSLASHacl] = ACTIONS(12116), + [anon_sym_BSLASHAcl] = ACTIONS(12116), + [anon_sym_BSLASHaclp] = ACTIONS(12116), + [anon_sym_BSLASHAclp] = ACTIONS(12116), + [anon_sym_BSLASHacf] = ACTIONS(12116), + [anon_sym_BSLASHAcf] = ACTIONS(12116), + [anon_sym_BSLASHacfp] = ACTIONS(12116), + [anon_sym_BSLASHAcfp] = ACTIONS(12116), + [anon_sym_BSLASHac] = ACTIONS(12116), + [anon_sym_BSLASHAc] = ACTIONS(12116), + [anon_sym_BSLASHacp] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12116), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12116), + [anon_sym_BSLASHcolor] = ACTIONS(12116), + [anon_sym_BSLASHcolorbox] = ACTIONS(12116), + [anon_sym_BSLASHtextcolor] = ACTIONS(12116), + [anon_sym_BSLASHpagecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12116), + }, + [725] = { + [sym_generic_command_name] = ACTIONS(12120), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12120), + [aux_sym_chapter_token1] = ACTIONS(12120), + [aux_sym_section_token1] = ACTIONS(12120), + [aux_sym_subsection_token1] = ACTIONS(12120), + [aux_sym_subsubsection_token1] = ACTIONS(12120), + [aux_sym_paragraph_token1] = ACTIONS(12120), + [aux_sym_subparagraph_token1] = ACTIONS(12120), + [anon_sym_BSLASHitem] = ACTIONS(12120), + [anon_sym_LBRACK] = ACTIONS(12118), + [anon_sym_LBRACE] = ACTIONS(12118), + [anon_sym_LPAREN] = ACTIONS(12118), + [anon_sym_COMMA] = ACTIONS(12118), + [anon_sym_EQ] = ACTIONS(12118), + [sym_word] = ACTIONS(12118), + [sym_param] = ACTIONS(12118), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12118), + [anon_sym_DOLLAR] = ACTIONS(12120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12118), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12118), + [anon_sym_BSLASHbegin] = ACTIONS(12120), + [anon_sym_BSLASHcaption] = ACTIONS(12120), + [anon_sym_BSLASHcite] = ACTIONS(12120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCite] = ACTIONS(12120), + [anon_sym_BSLASHnocite] = ACTIONS(12120), + [anon_sym_BSLASHcitet] = ACTIONS(12120), + [anon_sym_BSLASHcitep] = ACTIONS(12120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteauthor] = ACTIONS(12120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitetitle] = ACTIONS(12120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteyear] = ACTIONS(12120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitedate] = ACTIONS(12120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteurl] = ACTIONS(12120), + [anon_sym_BSLASHfullcite] = ACTIONS(12120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12120), + [anon_sym_BSLASHcitealt] = ACTIONS(12120), + [anon_sym_BSLASHcitealp] = ACTIONS(12120), + [anon_sym_BSLASHcitetext] = ACTIONS(12120), + [anon_sym_BSLASHparencite] = ACTIONS(12120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHParencite] = ACTIONS(12120), + [anon_sym_BSLASHfootcite] = ACTIONS(12120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12120), + [anon_sym_BSLASHtextcite] = ACTIONS(12120), + [anon_sym_BSLASHTextcite] = ACTIONS(12120), + [anon_sym_BSLASHsmartcite] = ACTIONS(12120), + [anon_sym_BSLASHSmartcite] = ACTIONS(12120), + [anon_sym_BSLASHsupercite] = ACTIONS(12120), + [anon_sym_BSLASHautocite] = ACTIONS(12120), + [anon_sym_BSLASHAutocite] = ACTIONS(12120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHvolcite] = ACTIONS(12120), + [anon_sym_BSLASHVolcite] = ACTIONS(12120), + [anon_sym_BSLASHpvolcite] = ACTIONS(12120), + [anon_sym_BSLASHPvolcite] = ACTIONS(12120), + [anon_sym_BSLASHfvolcite] = ACTIONS(12120), + [anon_sym_BSLASHftvolcite] = ACTIONS(12120), + [anon_sym_BSLASHsvolcite] = ACTIONS(12120), + [anon_sym_BSLASHSvolcite] = ACTIONS(12120), + [anon_sym_BSLASHtvolcite] = ACTIONS(12120), + [anon_sym_BSLASHTvolcite] = ACTIONS(12120), + [anon_sym_BSLASHavolcite] = ACTIONS(12120), + [anon_sym_BSLASHAvolcite] = ACTIONS(12120), + [anon_sym_BSLASHnotecite] = ACTIONS(12120), + [anon_sym_BSLASHpnotecite] = ACTIONS(12120), + [anon_sym_BSLASHPnotecite] = ACTIONS(12120), + [anon_sym_BSLASHfnotecite] = ACTIONS(12120), + [anon_sym_BSLASHusepackage] = ACTIONS(12120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12120), + [anon_sym_BSLASHinclude] = ACTIONS(12120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12120), + [anon_sym_BSLASHinput] = ACTIONS(12120), + [anon_sym_BSLASHsubfile] = ACTIONS(12120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12120), + [anon_sym_BSLASHbibliography] = ACTIONS(12120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12120), + [anon_sym_BSLASHincludesvg] = ACTIONS(12120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12120), + [anon_sym_BSLASHimport] = ACTIONS(12120), + [anon_sym_BSLASHsubimport] = ACTIONS(12120), + [anon_sym_BSLASHinputfrom] = ACTIONS(12120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12120), + [anon_sym_BSLASHincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHlabel] = ACTIONS(12120), + [anon_sym_BSLASHref] = ACTIONS(12120), + [anon_sym_BSLASHvref] = ACTIONS(12120), + [anon_sym_BSLASHVref] = ACTIONS(12120), + [anon_sym_BSLASHautoref] = ACTIONS(12120), + [anon_sym_BSLASHpageref] = ACTIONS(12120), + [anon_sym_BSLASHcref] = ACTIONS(12120), + [anon_sym_BSLASHCref] = ACTIONS(12120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnameCref] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHlabelcref] = ACTIONS(12120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12120), + [anon_sym_BSLASHeqref] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange] = ACTIONS(12120), + [anon_sym_BSLASHCrefrange] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewlabel] = ACTIONS(12120), + [anon_sym_BSLASHnewcommand] = ACTIONS(12120), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12120), + [anon_sym_BSLASHgls] = ACTIONS(12120), + [anon_sym_BSLASHGls] = ACTIONS(12120), + [anon_sym_BSLASHGLS] = ACTIONS(12120), + [anon_sym_BSLASHglspl] = ACTIONS(12120), + [anon_sym_BSLASHGlspl] = ACTIONS(12120), + [anon_sym_BSLASHGLSpl] = ACTIONS(12120), + [anon_sym_BSLASHglsdisp] = ACTIONS(12120), + [anon_sym_BSLASHglslink] = ACTIONS(12120), + [anon_sym_BSLASHglstext] = ACTIONS(12120), + [anon_sym_BSLASHGlstext] = ACTIONS(12120), + [anon_sym_BSLASHGLStext] = ACTIONS(12120), + [anon_sym_BSLASHglsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12120), + [anon_sym_BSLASHglsplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSplural] = ACTIONS(12120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHglsname] = ACTIONS(12120), + [anon_sym_BSLASHGlsname] = ACTIONS(12120), + [anon_sym_BSLASHGLSname] = ACTIONS(12120), + [anon_sym_BSLASHglssymbol] = ACTIONS(12120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12120), + [anon_sym_BSLASHglsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12120), + [anon_sym_BSLASHglsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12120), + [anon_sym_BSLASHglsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12120), + [anon_sym_BSLASHglsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12120), + [anon_sym_BSLASHglsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12120), + [anon_sym_BSLASHnewacronym] = ACTIONS(12120), + [anon_sym_BSLASHacrshort] = ACTIONS(12120), + [anon_sym_BSLASHAcrshort] = ACTIONS(12120), + [anon_sym_BSLASHACRshort] = ACTIONS(12120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12120), + [anon_sym_BSLASHacrlong] = ACTIONS(12120), + [anon_sym_BSLASHAcrlong] = ACTIONS(12120), + [anon_sym_BSLASHACRlong] = ACTIONS(12120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12120), + [anon_sym_BSLASHacrfull] = ACTIONS(12120), + [anon_sym_BSLASHAcrfull] = ACTIONS(12120), + [anon_sym_BSLASHACRfull] = ACTIONS(12120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12120), + [anon_sym_BSLASHacs] = ACTIONS(12120), + [anon_sym_BSLASHAcs] = ACTIONS(12120), + [anon_sym_BSLASHacsp] = ACTIONS(12120), + [anon_sym_BSLASHAcsp] = ACTIONS(12120), + [anon_sym_BSLASHacl] = ACTIONS(12120), + [anon_sym_BSLASHAcl] = ACTIONS(12120), + [anon_sym_BSLASHaclp] = ACTIONS(12120), + [anon_sym_BSLASHAclp] = ACTIONS(12120), + [anon_sym_BSLASHacf] = ACTIONS(12120), + [anon_sym_BSLASHAcf] = ACTIONS(12120), + [anon_sym_BSLASHacfp] = ACTIONS(12120), + [anon_sym_BSLASHAcfp] = ACTIONS(12120), + [anon_sym_BSLASHac] = ACTIONS(12120), + [anon_sym_BSLASHAc] = ACTIONS(12120), + [anon_sym_BSLASHacp] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12120), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12120), + [anon_sym_BSLASHcolor] = ACTIONS(12120), + [anon_sym_BSLASHcolorbox] = ACTIONS(12120), + [anon_sym_BSLASHtextcolor] = ACTIONS(12120), + [anon_sym_BSLASHpagecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12120), + }, + [726] = { + [sym_generic_command_name] = ACTIONS(12181), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12181), + [aux_sym_chapter_token1] = ACTIONS(12181), + [aux_sym_section_token1] = ACTIONS(12181), + [aux_sym_subsection_token1] = ACTIONS(12181), + [aux_sym_subsubsection_token1] = ACTIONS(12181), + [aux_sym_paragraph_token1] = ACTIONS(12181), + [aux_sym_subparagraph_token1] = ACTIONS(12181), + [anon_sym_BSLASHitem] = ACTIONS(12181), + [anon_sym_LBRACK] = ACTIONS(12179), + [anon_sym_LBRACE] = ACTIONS(12179), + [anon_sym_LPAREN] = ACTIONS(12179), + [anon_sym_COMMA] = ACTIONS(12179), + [anon_sym_EQ] = ACTIONS(12179), + [sym_word] = ACTIONS(12179), + [sym_param] = ACTIONS(12179), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12179), + [anon_sym_DOLLAR] = ACTIONS(12181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12179), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12179), + [anon_sym_BSLASHbegin] = ACTIONS(12181), + [anon_sym_BSLASHcaption] = ACTIONS(12181), + [anon_sym_BSLASHcite] = ACTIONS(12181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCite] = ACTIONS(12181), + [anon_sym_BSLASHnocite] = ACTIONS(12181), + [anon_sym_BSLASHcitet] = ACTIONS(12181), + [anon_sym_BSLASHcitep] = ACTIONS(12181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteauthor] = ACTIONS(12181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitetitle] = ACTIONS(12181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteyear] = ACTIONS(12181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitedate] = ACTIONS(12181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteurl] = ACTIONS(12181), + [anon_sym_BSLASHfullcite] = ACTIONS(12181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12181), + [anon_sym_BSLASHcitealt] = ACTIONS(12181), + [anon_sym_BSLASHcitealp] = ACTIONS(12181), + [anon_sym_BSLASHcitetext] = ACTIONS(12181), + [anon_sym_BSLASHparencite] = ACTIONS(12181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHParencite] = ACTIONS(12181), + [anon_sym_BSLASHfootcite] = ACTIONS(12181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12181), + [anon_sym_BSLASHtextcite] = ACTIONS(12181), + [anon_sym_BSLASHTextcite] = ACTIONS(12181), + [anon_sym_BSLASHsmartcite] = ACTIONS(12181), + [anon_sym_BSLASHSmartcite] = ACTIONS(12181), + [anon_sym_BSLASHsupercite] = ACTIONS(12181), + [anon_sym_BSLASHautocite] = ACTIONS(12181), + [anon_sym_BSLASHAutocite] = ACTIONS(12181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHvolcite] = ACTIONS(12181), + [anon_sym_BSLASHVolcite] = ACTIONS(12181), + [anon_sym_BSLASHpvolcite] = ACTIONS(12181), + [anon_sym_BSLASHPvolcite] = ACTIONS(12181), + [anon_sym_BSLASHfvolcite] = ACTIONS(12181), + [anon_sym_BSLASHftvolcite] = ACTIONS(12181), + [anon_sym_BSLASHsvolcite] = ACTIONS(12181), + [anon_sym_BSLASHSvolcite] = ACTIONS(12181), + [anon_sym_BSLASHtvolcite] = ACTIONS(12181), + [anon_sym_BSLASHTvolcite] = ACTIONS(12181), + [anon_sym_BSLASHavolcite] = ACTIONS(12181), + [anon_sym_BSLASHAvolcite] = ACTIONS(12181), + [anon_sym_BSLASHnotecite] = ACTIONS(12181), + [anon_sym_BSLASHpnotecite] = ACTIONS(12181), + [anon_sym_BSLASHPnotecite] = ACTIONS(12181), + [anon_sym_BSLASHfnotecite] = ACTIONS(12181), + [anon_sym_BSLASHusepackage] = ACTIONS(12181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12181), + [anon_sym_BSLASHinclude] = ACTIONS(12181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12181), + [anon_sym_BSLASHinput] = ACTIONS(12181), + [anon_sym_BSLASHsubfile] = ACTIONS(12181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12181), + [anon_sym_BSLASHbibliography] = ACTIONS(12181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12181), + [anon_sym_BSLASHincludesvg] = ACTIONS(12181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12181), + [anon_sym_BSLASHimport] = ACTIONS(12181), + [anon_sym_BSLASHsubimport] = ACTIONS(12181), + [anon_sym_BSLASHinputfrom] = ACTIONS(12181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12181), + [anon_sym_BSLASHincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHlabel] = ACTIONS(12181), + [anon_sym_BSLASHref] = ACTIONS(12181), + [anon_sym_BSLASHvref] = ACTIONS(12181), + [anon_sym_BSLASHVref] = ACTIONS(12181), + [anon_sym_BSLASHautoref] = ACTIONS(12181), + [anon_sym_BSLASHpageref] = ACTIONS(12181), + [anon_sym_BSLASHcref] = ACTIONS(12181), + [anon_sym_BSLASHCref] = ACTIONS(12181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnameCref] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHlabelcref] = ACTIONS(12181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12181), + [anon_sym_BSLASHeqref] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange] = ACTIONS(12181), + [anon_sym_BSLASHCrefrange] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewlabel] = ACTIONS(12181), + [anon_sym_BSLASHnewcommand] = ACTIONS(12181), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12181), + [anon_sym_BSLASHgls] = ACTIONS(12181), + [anon_sym_BSLASHGls] = ACTIONS(12181), + [anon_sym_BSLASHGLS] = ACTIONS(12181), + [anon_sym_BSLASHglspl] = ACTIONS(12181), + [anon_sym_BSLASHGlspl] = ACTIONS(12181), + [anon_sym_BSLASHGLSpl] = ACTIONS(12181), + [anon_sym_BSLASHglsdisp] = ACTIONS(12181), + [anon_sym_BSLASHglslink] = ACTIONS(12181), + [anon_sym_BSLASHglstext] = ACTIONS(12181), + [anon_sym_BSLASHGlstext] = ACTIONS(12181), + [anon_sym_BSLASHGLStext] = ACTIONS(12181), + [anon_sym_BSLASHglsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12181), + [anon_sym_BSLASHglsplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSplural] = ACTIONS(12181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHglsname] = ACTIONS(12181), + [anon_sym_BSLASHGlsname] = ACTIONS(12181), + [anon_sym_BSLASHGLSname] = ACTIONS(12181), + [anon_sym_BSLASHglssymbol] = ACTIONS(12181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12181), + [anon_sym_BSLASHglsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12181), + [anon_sym_BSLASHglsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12181), + [anon_sym_BSLASHglsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12181), + [anon_sym_BSLASHglsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12181), + [anon_sym_BSLASHglsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12181), + [anon_sym_BSLASHnewacronym] = ACTIONS(12181), + [anon_sym_BSLASHacrshort] = ACTIONS(12181), + [anon_sym_BSLASHAcrshort] = ACTIONS(12181), + [anon_sym_BSLASHACRshort] = ACTIONS(12181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12181), + [anon_sym_BSLASHacrlong] = ACTIONS(12181), + [anon_sym_BSLASHAcrlong] = ACTIONS(12181), + [anon_sym_BSLASHACRlong] = ACTIONS(12181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12181), + [anon_sym_BSLASHacrfull] = ACTIONS(12181), + [anon_sym_BSLASHAcrfull] = ACTIONS(12181), + [anon_sym_BSLASHACRfull] = ACTIONS(12181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12181), + [anon_sym_BSLASHacs] = ACTIONS(12181), + [anon_sym_BSLASHAcs] = ACTIONS(12181), + [anon_sym_BSLASHacsp] = ACTIONS(12181), + [anon_sym_BSLASHAcsp] = ACTIONS(12181), + [anon_sym_BSLASHacl] = ACTIONS(12181), + [anon_sym_BSLASHAcl] = ACTIONS(12181), + [anon_sym_BSLASHaclp] = ACTIONS(12181), + [anon_sym_BSLASHAclp] = ACTIONS(12181), + [anon_sym_BSLASHacf] = ACTIONS(12181), + [anon_sym_BSLASHAcf] = ACTIONS(12181), + [anon_sym_BSLASHacfp] = ACTIONS(12181), + [anon_sym_BSLASHAcfp] = ACTIONS(12181), + [anon_sym_BSLASHac] = ACTIONS(12181), + [anon_sym_BSLASHAc] = ACTIONS(12181), + [anon_sym_BSLASHacp] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12181), + [anon_sym_BSLASHcolor] = ACTIONS(12181), + [anon_sym_BSLASHcolorbox] = ACTIONS(12181), + [anon_sym_BSLASHtextcolor] = ACTIONS(12181), + [anon_sym_BSLASHpagecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12181), + }, + [727] = { + [sym_generic_command_name] = ACTIONS(12185), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12185), + [aux_sym_chapter_token1] = ACTIONS(12185), + [aux_sym_section_token1] = ACTIONS(12185), + [aux_sym_subsection_token1] = ACTIONS(12185), + [aux_sym_subsubsection_token1] = ACTIONS(12185), + [aux_sym_paragraph_token1] = ACTIONS(12185), + [aux_sym_subparagraph_token1] = ACTIONS(12185), + [anon_sym_BSLASHitem] = ACTIONS(12185), + [anon_sym_LBRACK] = ACTIONS(12183), + [anon_sym_LBRACE] = ACTIONS(12183), + [anon_sym_LPAREN] = ACTIONS(12183), + [anon_sym_COMMA] = ACTIONS(12183), + [anon_sym_EQ] = ACTIONS(12183), + [sym_word] = ACTIONS(12183), + [sym_param] = ACTIONS(12183), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12183), + [anon_sym_DOLLAR] = ACTIONS(12185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12183), + [anon_sym_BSLASHbegin] = ACTIONS(12185), + [anon_sym_BSLASHcaption] = ACTIONS(12185), + [anon_sym_BSLASHcite] = ACTIONS(12185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCite] = ACTIONS(12185), + [anon_sym_BSLASHnocite] = ACTIONS(12185), + [anon_sym_BSLASHcitet] = ACTIONS(12185), + [anon_sym_BSLASHcitep] = ACTIONS(12185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteauthor] = ACTIONS(12185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitetitle] = ACTIONS(12185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteyear] = ACTIONS(12185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitedate] = ACTIONS(12185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteurl] = ACTIONS(12185), + [anon_sym_BSLASHfullcite] = ACTIONS(12185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12185), + [anon_sym_BSLASHcitealt] = ACTIONS(12185), + [anon_sym_BSLASHcitealp] = ACTIONS(12185), + [anon_sym_BSLASHcitetext] = ACTIONS(12185), + [anon_sym_BSLASHparencite] = ACTIONS(12185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHParencite] = ACTIONS(12185), + [anon_sym_BSLASHfootcite] = ACTIONS(12185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12185), + [anon_sym_BSLASHtextcite] = ACTIONS(12185), + [anon_sym_BSLASHTextcite] = ACTIONS(12185), + [anon_sym_BSLASHsmartcite] = ACTIONS(12185), + [anon_sym_BSLASHSmartcite] = ACTIONS(12185), + [anon_sym_BSLASHsupercite] = ACTIONS(12185), + [anon_sym_BSLASHautocite] = ACTIONS(12185), + [anon_sym_BSLASHAutocite] = ACTIONS(12185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHvolcite] = ACTIONS(12185), + [anon_sym_BSLASHVolcite] = ACTIONS(12185), + [anon_sym_BSLASHpvolcite] = ACTIONS(12185), + [anon_sym_BSLASHPvolcite] = ACTIONS(12185), + [anon_sym_BSLASHfvolcite] = ACTIONS(12185), + [anon_sym_BSLASHftvolcite] = ACTIONS(12185), + [anon_sym_BSLASHsvolcite] = ACTIONS(12185), + [anon_sym_BSLASHSvolcite] = ACTIONS(12185), + [anon_sym_BSLASHtvolcite] = ACTIONS(12185), + [anon_sym_BSLASHTvolcite] = ACTIONS(12185), + [anon_sym_BSLASHavolcite] = ACTIONS(12185), + [anon_sym_BSLASHAvolcite] = ACTIONS(12185), + [anon_sym_BSLASHnotecite] = ACTIONS(12185), + [anon_sym_BSLASHpnotecite] = ACTIONS(12185), + [anon_sym_BSLASHPnotecite] = ACTIONS(12185), + [anon_sym_BSLASHfnotecite] = ACTIONS(12185), + [anon_sym_BSLASHusepackage] = ACTIONS(12185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12185), + [anon_sym_BSLASHinclude] = ACTIONS(12185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12185), + [anon_sym_BSLASHinput] = ACTIONS(12185), + [anon_sym_BSLASHsubfile] = ACTIONS(12185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12185), + [anon_sym_BSLASHbibliography] = ACTIONS(12185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12185), + [anon_sym_BSLASHincludesvg] = ACTIONS(12185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12185), + [anon_sym_BSLASHimport] = ACTIONS(12185), + [anon_sym_BSLASHsubimport] = ACTIONS(12185), + [anon_sym_BSLASHinputfrom] = ACTIONS(12185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12185), + [anon_sym_BSLASHincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHlabel] = ACTIONS(12185), + [anon_sym_BSLASHref] = ACTIONS(12185), + [anon_sym_BSLASHvref] = ACTIONS(12185), + [anon_sym_BSLASHVref] = ACTIONS(12185), + [anon_sym_BSLASHautoref] = ACTIONS(12185), + [anon_sym_BSLASHpageref] = ACTIONS(12185), + [anon_sym_BSLASHcref] = ACTIONS(12185), + [anon_sym_BSLASHCref] = ACTIONS(12185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnameCref] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHlabelcref] = ACTIONS(12185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12185), + [anon_sym_BSLASHeqref] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange] = ACTIONS(12185), + [anon_sym_BSLASHCrefrange] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewlabel] = ACTIONS(12185), + [anon_sym_BSLASHnewcommand] = ACTIONS(12185), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12185), + [anon_sym_BSLASHgls] = ACTIONS(12185), + [anon_sym_BSLASHGls] = ACTIONS(12185), + [anon_sym_BSLASHGLS] = ACTIONS(12185), + [anon_sym_BSLASHglspl] = ACTIONS(12185), + [anon_sym_BSLASHGlspl] = ACTIONS(12185), + [anon_sym_BSLASHGLSpl] = ACTIONS(12185), + [anon_sym_BSLASHglsdisp] = ACTIONS(12185), + [anon_sym_BSLASHglslink] = ACTIONS(12185), + [anon_sym_BSLASHglstext] = ACTIONS(12185), + [anon_sym_BSLASHGlstext] = ACTIONS(12185), + [anon_sym_BSLASHGLStext] = ACTIONS(12185), + [anon_sym_BSLASHglsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12185), + [anon_sym_BSLASHglsplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSplural] = ACTIONS(12185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHglsname] = ACTIONS(12185), + [anon_sym_BSLASHGlsname] = ACTIONS(12185), + [anon_sym_BSLASHGLSname] = ACTIONS(12185), + [anon_sym_BSLASHglssymbol] = ACTIONS(12185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12185), + [anon_sym_BSLASHglsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12185), + [anon_sym_BSLASHglsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12185), + [anon_sym_BSLASHglsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12185), + [anon_sym_BSLASHglsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12185), + [anon_sym_BSLASHglsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12185), + [anon_sym_BSLASHnewacronym] = ACTIONS(12185), + [anon_sym_BSLASHacrshort] = ACTIONS(12185), + [anon_sym_BSLASHAcrshort] = ACTIONS(12185), + [anon_sym_BSLASHACRshort] = ACTIONS(12185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12185), + [anon_sym_BSLASHacrlong] = ACTIONS(12185), + [anon_sym_BSLASHAcrlong] = ACTIONS(12185), + [anon_sym_BSLASHACRlong] = ACTIONS(12185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12185), + [anon_sym_BSLASHacrfull] = ACTIONS(12185), + [anon_sym_BSLASHAcrfull] = ACTIONS(12185), + [anon_sym_BSLASHACRfull] = ACTIONS(12185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12185), + [anon_sym_BSLASHacs] = ACTIONS(12185), + [anon_sym_BSLASHAcs] = ACTIONS(12185), + [anon_sym_BSLASHacsp] = ACTIONS(12185), + [anon_sym_BSLASHAcsp] = ACTIONS(12185), + [anon_sym_BSLASHacl] = ACTIONS(12185), + [anon_sym_BSLASHAcl] = ACTIONS(12185), + [anon_sym_BSLASHaclp] = ACTIONS(12185), + [anon_sym_BSLASHAclp] = ACTIONS(12185), + [anon_sym_BSLASHacf] = ACTIONS(12185), + [anon_sym_BSLASHAcf] = ACTIONS(12185), + [anon_sym_BSLASHacfp] = ACTIONS(12185), + [anon_sym_BSLASHAcfp] = ACTIONS(12185), + [anon_sym_BSLASHac] = ACTIONS(12185), + [anon_sym_BSLASHAc] = ACTIONS(12185), + [anon_sym_BSLASHacp] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12185), + [anon_sym_BSLASHcolor] = ACTIONS(12185), + [anon_sym_BSLASHcolorbox] = ACTIONS(12185), + [anon_sym_BSLASHtextcolor] = ACTIONS(12185), + [anon_sym_BSLASHpagecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12185), + }, + [728] = { + [sym_generic_command_name] = ACTIONS(12437), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12437), + [aux_sym_chapter_token1] = ACTIONS(12437), + [aux_sym_section_token1] = ACTIONS(12437), + [aux_sym_subsection_token1] = ACTIONS(12437), + [aux_sym_subsubsection_token1] = ACTIONS(12437), + [aux_sym_paragraph_token1] = ACTIONS(12437), + [aux_sym_subparagraph_token1] = ACTIONS(12437), + [anon_sym_BSLASHitem] = ACTIONS(12437), + [anon_sym_LBRACK] = ACTIONS(12435), + [anon_sym_LBRACE] = ACTIONS(12435), + [anon_sym_LPAREN] = ACTIONS(12435), + [anon_sym_COMMA] = ACTIONS(12435), + [anon_sym_EQ] = ACTIONS(12435), + [sym_word] = ACTIONS(12435), + [sym_param] = ACTIONS(12435), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12435), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12435), + [anon_sym_DOLLAR] = ACTIONS(12437), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12435), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12435), + [anon_sym_BSLASHbegin] = ACTIONS(12437), + [anon_sym_BSLASHcaption] = ACTIONS(12437), + [anon_sym_BSLASHcite] = ACTIONS(12437), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCite] = ACTIONS(12437), + [anon_sym_BSLASHnocite] = ACTIONS(12437), + [anon_sym_BSLASHcitet] = ACTIONS(12437), + [anon_sym_BSLASHcitep] = ACTIONS(12437), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteauthor] = ACTIONS(12437), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12437), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitetitle] = ACTIONS(12437), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteyear] = ACTIONS(12437), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitedate] = ACTIONS(12437), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteurl] = ACTIONS(12437), + [anon_sym_BSLASHfullcite] = ACTIONS(12437), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12437), + [anon_sym_BSLASHcitealt] = ACTIONS(12437), + [anon_sym_BSLASHcitealp] = ACTIONS(12437), + [anon_sym_BSLASHcitetext] = ACTIONS(12437), + [anon_sym_BSLASHparencite] = ACTIONS(12437), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHParencite] = ACTIONS(12437), + [anon_sym_BSLASHfootcite] = ACTIONS(12437), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12437), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12437), + [anon_sym_BSLASHtextcite] = ACTIONS(12437), + [anon_sym_BSLASHTextcite] = ACTIONS(12437), + [anon_sym_BSLASHsmartcite] = ACTIONS(12437), + [anon_sym_BSLASHSmartcite] = ACTIONS(12437), + [anon_sym_BSLASHsupercite] = ACTIONS(12437), + [anon_sym_BSLASHautocite] = ACTIONS(12437), + [anon_sym_BSLASHAutocite] = ACTIONS(12437), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHvolcite] = ACTIONS(12437), + [anon_sym_BSLASHVolcite] = ACTIONS(12437), + [anon_sym_BSLASHpvolcite] = ACTIONS(12437), + [anon_sym_BSLASHPvolcite] = ACTIONS(12437), + [anon_sym_BSLASHfvolcite] = ACTIONS(12437), + [anon_sym_BSLASHftvolcite] = ACTIONS(12437), + [anon_sym_BSLASHsvolcite] = ACTIONS(12437), + [anon_sym_BSLASHSvolcite] = ACTIONS(12437), + [anon_sym_BSLASHtvolcite] = ACTIONS(12437), + [anon_sym_BSLASHTvolcite] = ACTIONS(12437), + [anon_sym_BSLASHavolcite] = ACTIONS(12437), + [anon_sym_BSLASHAvolcite] = ACTIONS(12437), + [anon_sym_BSLASHnotecite] = ACTIONS(12437), + [anon_sym_BSLASHpnotecite] = ACTIONS(12437), + [anon_sym_BSLASHPnotecite] = ACTIONS(12437), + [anon_sym_BSLASHfnotecite] = ACTIONS(12437), + [anon_sym_BSLASHusepackage] = ACTIONS(12437), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12437), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12437), + [anon_sym_BSLASHinclude] = ACTIONS(12437), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12437), + [anon_sym_BSLASHinput] = ACTIONS(12437), + [anon_sym_BSLASHsubfile] = ACTIONS(12437), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12437), + [anon_sym_BSLASHbibliography] = ACTIONS(12437), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12437), + [anon_sym_BSLASHincludesvg] = ACTIONS(12437), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12437), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12437), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12437), + [anon_sym_BSLASHimport] = ACTIONS(12437), + [anon_sym_BSLASHsubimport] = ACTIONS(12437), + [anon_sym_BSLASHinputfrom] = ACTIONS(12437), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12437), + [anon_sym_BSLASHincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHlabel] = ACTIONS(12437), + [anon_sym_BSLASHref] = ACTIONS(12437), + [anon_sym_BSLASHvref] = ACTIONS(12437), + [anon_sym_BSLASHVref] = ACTIONS(12437), + [anon_sym_BSLASHautoref] = ACTIONS(12437), + [anon_sym_BSLASHpageref] = ACTIONS(12437), + [anon_sym_BSLASHcref] = ACTIONS(12437), + [anon_sym_BSLASHCref] = ACTIONS(12437), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnameCref] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHlabelcref] = ACTIONS(12437), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12437), + [anon_sym_BSLASHeqref] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange] = ACTIONS(12437), + [anon_sym_BSLASHCrefrange] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewlabel] = ACTIONS(12437), + [anon_sym_BSLASHnewcommand] = ACTIONS(12437), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12437), + [anon_sym_BSLASHgls] = ACTIONS(12437), + [anon_sym_BSLASHGls] = ACTIONS(12437), + [anon_sym_BSLASHGLS] = ACTIONS(12437), + [anon_sym_BSLASHglspl] = ACTIONS(12437), + [anon_sym_BSLASHGlspl] = ACTIONS(12437), + [anon_sym_BSLASHGLSpl] = ACTIONS(12437), + [anon_sym_BSLASHglsdisp] = ACTIONS(12437), + [anon_sym_BSLASHglslink] = ACTIONS(12437), + [anon_sym_BSLASHglstext] = ACTIONS(12437), + [anon_sym_BSLASHGlstext] = ACTIONS(12437), + [anon_sym_BSLASHGLStext] = ACTIONS(12437), + [anon_sym_BSLASHglsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12437), + [anon_sym_BSLASHglsplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSplural] = ACTIONS(12437), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHglsname] = ACTIONS(12437), + [anon_sym_BSLASHGlsname] = ACTIONS(12437), + [anon_sym_BSLASHGLSname] = ACTIONS(12437), + [anon_sym_BSLASHglssymbol] = ACTIONS(12437), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12437), + [anon_sym_BSLASHglsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12437), + [anon_sym_BSLASHglsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12437), + [anon_sym_BSLASHglsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12437), + [anon_sym_BSLASHglsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12437), + [anon_sym_BSLASHglsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12437), + [anon_sym_BSLASHnewacronym] = ACTIONS(12437), + [anon_sym_BSLASHacrshort] = ACTIONS(12437), + [anon_sym_BSLASHAcrshort] = ACTIONS(12437), + [anon_sym_BSLASHACRshort] = ACTIONS(12437), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12437), + [anon_sym_BSLASHacrlong] = ACTIONS(12437), + [anon_sym_BSLASHAcrlong] = ACTIONS(12437), + [anon_sym_BSLASHACRlong] = ACTIONS(12437), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12437), + [anon_sym_BSLASHacrfull] = ACTIONS(12437), + [anon_sym_BSLASHAcrfull] = ACTIONS(12437), + [anon_sym_BSLASHACRfull] = ACTIONS(12437), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12437), + [anon_sym_BSLASHacs] = ACTIONS(12437), + [anon_sym_BSLASHAcs] = ACTIONS(12437), + [anon_sym_BSLASHacsp] = ACTIONS(12437), + [anon_sym_BSLASHAcsp] = ACTIONS(12437), + [anon_sym_BSLASHacl] = ACTIONS(12437), + [anon_sym_BSLASHAcl] = ACTIONS(12437), + [anon_sym_BSLASHaclp] = ACTIONS(12437), + [anon_sym_BSLASHAclp] = ACTIONS(12437), + [anon_sym_BSLASHacf] = ACTIONS(12437), + [anon_sym_BSLASHAcf] = ACTIONS(12437), + [anon_sym_BSLASHacfp] = ACTIONS(12437), + [anon_sym_BSLASHAcfp] = ACTIONS(12437), + [anon_sym_BSLASHac] = ACTIONS(12437), + [anon_sym_BSLASHAc] = ACTIONS(12437), + [anon_sym_BSLASHacp] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12437), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12437), + [anon_sym_BSLASHcolor] = ACTIONS(12437), + [anon_sym_BSLASHcolorbox] = ACTIONS(12437), + [anon_sym_BSLASHtextcolor] = ACTIONS(12437), + [anon_sym_BSLASHpagecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12437), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12437), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12437), + }, + [729] = { + [sym_generic_command_name] = ACTIONS(12489), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12489), + [aux_sym_chapter_token1] = ACTIONS(12489), + [aux_sym_section_token1] = ACTIONS(12489), + [aux_sym_subsection_token1] = ACTIONS(12489), + [aux_sym_subsubsection_token1] = ACTIONS(12489), + [aux_sym_paragraph_token1] = ACTIONS(12489), + [aux_sym_subparagraph_token1] = ACTIONS(12489), + [anon_sym_BSLASHitem] = ACTIONS(12489), + [anon_sym_LBRACK] = ACTIONS(12487), + [anon_sym_LBRACE] = ACTIONS(12487), + [anon_sym_LPAREN] = ACTIONS(12487), + [anon_sym_COMMA] = ACTIONS(12487), + [anon_sym_EQ] = ACTIONS(12487), + [sym_word] = ACTIONS(12487), + [sym_param] = ACTIONS(12487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12487), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12487), + [anon_sym_DOLLAR] = ACTIONS(12489), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12487), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12487), + [anon_sym_BSLASHbegin] = ACTIONS(12489), + [anon_sym_BSLASHcaption] = ACTIONS(12489), + [anon_sym_BSLASHcite] = ACTIONS(12489), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCite] = ACTIONS(12489), + [anon_sym_BSLASHnocite] = ACTIONS(12489), + [anon_sym_BSLASHcitet] = ACTIONS(12489), + [anon_sym_BSLASHcitep] = ACTIONS(12489), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteauthor] = ACTIONS(12489), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12489), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitetitle] = ACTIONS(12489), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteyear] = ACTIONS(12489), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitedate] = ACTIONS(12489), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteurl] = ACTIONS(12489), + [anon_sym_BSLASHfullcite] = ACTIONS(12489), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12489), + [anon_sym_BSLASHcitealt] = ACTIONS(12489), + [anon_sym_BSLASHcitealp] = ACTIONS(12489), + [anon_sym_BSLASHcitetext] = ACTIONS(12489), + [anon_sym_BSLASHparencite] = ACTIONS(12489), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHParencite] = ACTIONS(12489), + [anon_sym_BSLASHfootcite] = ACTIONS(12489), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12489), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12489), + [anon_sym_BSLASHtextcite] = ACTIONS(12489), + [anon_sym_BSLASHTextcite] = ACTIONS(12489), + [anon_sym_BSLASHsmartcite] = ACTIONS(12489), + [anon_sym_BSLASHSmartcite] = ACTIONS(12489), + [anon_sym_BSLASHsupercite] = ACTIONS(12489), + [anon_sym_BSLASHautocite] = ACTIONS(12489), + [anon_sym_BSLASHAutocite] = ACTIONS(12489), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHvolcite] = ACTIONS(12489), + [anon_sym_BSLASHVolcite] = ACTIONS(12489), + [anon_sym_BSLASHpvolcite] = ACTIONS(12489), + [anon_sym_BSLASHPvolcite] = ACTIONS(12489), + [anon_sym_BSLASHfvolcite] = ACTIONS(12489), + [anon_sym_BSLASHftvolcite] = ACTIONS(12489), + [anon_sym_BSLASHsvolcite] = ACTIONS(12489), + [anon_sym_BSLASHSvolcite] = ACTIONS(12489), + [anon_sym_BSLASHtvolcite] = ACTIONS(12489), + [anon_sym_BSLASHTvolcite] = ACTIONS(12489), + [anon_sym_BSLASHavolcite] = ACTIONS(12489), + [anon_sym_BSLASHAvolcite] = ACTIONS(12489), + [anon_sym_BSLASHnotecite] = ACTIONS(12489), + [anon_sym_BSLASHpnotecite] = ACTIONS(12489), + [anon_sym_BSLASHPnotecite] = ACTIONS(12489), + [anon_sym_BSLASHfnotecite] = ACTIONS(12489), + [anon_sym_BSLASHusepackage] = ACTIONS(12489), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12489), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12489), + [anon_sym_BSLASHinclude] = ACTIONS(12489), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12489), + [anon_sym_BSLASHinput] = ACTIONS(12489), + [anon_sym_BSLASHsubfile] = ACTIONS(12489), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12489), + [anon_sym_BSLASHbibliography] = ACTIONS(12489), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12489), + [anon_sym_BSLASHincludesvg] = ACTIONS(12489), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12489), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12489), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12489), + [anon_sym_BSLASHimport] = ACTIONS(12489), + [anon_sym_BSLASHsubimport] = ACTIONS(12489), + [anon_sym_BSLASHinputfrom] = ACTIONS(12489), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12489), + [anon_sym_BSLASHincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHlabel] = ACTIONS(12489), + [anon_sym_BSLASHref] = ACTIONS(12489), + [anon_sym_BSLASHvref] = ACTIONS(12489), + [anon_sym_BSLASHVref] = ACTIONS(12489), + [anon_sym_BSLASHautoref] = ACTIONS(12489), + [anon_sym_BSLASHpageref] = ACTIONS(12489), + [anon_sym_BSLASHcref] = ACTIONS(12489), + [anon_sym_BSLASHCref] = ACTIONS(12489), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnameCref] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHlabelcref] = ACTIONS(12489), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12489), + [anon_sym_BSLASHeqref] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange] = ACTIONS(12489), + [anon_sym_BSLASHCrefrange] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewlabel] = ACTIONS(12489), + [anon_sym_BSLASHnewcommand] = ACTIONS(12489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12489), + [anon_sym_BSLASHgls] = ACTIONS(12489), + [anon_sym_BSLASHGls] = ACTIONS(12489), + [anon_sym_BSLASHGLS] = ACTIONS(12489), + [anon_sym_BSLASHglspl] = ACTIONS(12489), + [anon_sym_BSLASHGlspl] = ACTIONS(12489), + [anon_sym_BSLASHGLSpl] = ACTIONS(12489), + [anon_sym_BSLASHglsdisp] = ACTIONS(12489), + [anon_sym_BSLASHglslink] = ACTIONS(12489), + [anon_sym_BSLASHglstext] = ACTIONS(12489), + [anon_sym_BSLASHGlstext] = ACTIONS(12489), + [anon_sym_BSLASHGLStext] = ACTIONS(12489), + [anon_sym_BSLASHglsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12489), + [anon_sym_BSLASHglsplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSplural] = ACTIONS(12489), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHglsname] = ACTIONS(12489), + [anon_sym_BSLASHGlsname] = ACTIONS(12489), + [anon_sym_BSLASHGLSname] = ACTIONS(12489), + [anon_sym_BSLASHglssymbol] = ACTIONS(12489), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12489), + [anon_sym_BSLASHglsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12489), + [anon_sym_BSLASHglsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12489), + [anon_sym_BSLASHglsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12489), + [anon_sym_BSLASHglsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12489), + [anon_sym_BSLASHglsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12489), + [anon_sym_BSLASHnewacronym] = ACTIONS(12489), + [anon_sym_BSLASHacrshort] = ACTIONS(12489), + [anon_sym_BSLASHAcrshort] = ACTIONS(12489), + [anon_sym_BSLASHACRshort] = ACTIONS(12489), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12489), + [anon_sym_BSLASHacrlong] = ACTIONS(12489), + [anon_sym_BSLASHAcrlong] = ACTIONS(12489), + [anon_sym_BSLASHACRlong] = ACTIONS(12489), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12489), + [anon_sym_BSLASHacrfull] = ACTIONS(12489), + [anon_sym_BSLASHAcrfull] = ACTIONS(12489), + [anon_sym_BSLASHACRfull] = ACTIONS(12489), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12489), + [anon_sym_BSLASHacs] = ACTIONS(12489), + [anon_sym_BSLASHAcs] = ACTIONS(12489), + [anon_sym_BSLASHacsp] = ACTIONS(12489), + [anon_sym_BSLASHAcsp] = ACTIONS(12489), + [anon_sym_BSLASHacl] = ACTIONS(12489), + [anon_sym_BSLASHAcl] = ACTIONS(12489), + [anon_sym_BSLASHaclp] = ACTIONS(12489), + [anon_sym_BSLASHAclp] = ACTIONS(12489), + [anon_sym_BSLASHacf] = ACTIONS(12489), + [anon_sym_BSLASHAcf] = ACTIONS(12489), + [anon_sym_BSLASHacfp] = ACTIONS(12489), + [anon_sym_BSLASHAcfp] = ACTIONS(12489), + [anon_sym_BSLASHac] = ACTIONS(12489), + [anon_sym_BSLASHAc] = ACTIONS(12489), + [anon_sym_BSLASHacp] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12489), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12489), + [anon_sym_BSLASHcolor] = ACTIONS(12489), + [anon_sym_BSLASHcolorbox] = ACTIONS(12489), + [anon_sym_BSLASHtextcolor] = ACTIONS(12489), + [anon_sym_BSLASHpagecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12489), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12489), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12489), + }, + [730] = { + [sym_generic_command_name] = ACTIONS(12501), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12501), + [aux_sym_chapter_token1] = ACTIONS(12501), + [aux_sym_section_token1] = ACTIONS(12501), + [aux_sym_subsection_token1] = ACTIONS(12501), + [aux_sym_subsubsection_token1] = ACTIONS(12501), + [aux_sym_paragraph_token1] = ACTIONS(12501), + [aux_sym_subparagraph_token1] = ACTIONS(12501), + [anon_sym_BSLASHitem] = ACTIONS(12501), + [anon_sym_LBRACK] = ACTIONS(12499), + [anon_sym_LBRACE] = ACTIONS(12499), + [anon_sym_LPAREN] = ACTIONS(12499), + [anon_sym_COMMA] = ACTIONS(12499), + [anon_sym_EQ] = ACTIONS(12499), + [sym_word] = ACTIONS(12499), + [sym_param] = ACTIONS(12499), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12499), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12499), + [anon_sym_DOLLAR] = ACTIONS(12501), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12499), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12499), + [anon_sym_BSLASHbegin] = ACTIONS(12501), + [anon_sym_BSLASHcaption] = ACTIONS(12501), + [anon_sym_BSLASHcite] = ACTIONS(12501), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCite] = ACTIONS(12501), + [anon_sym_BSLASHnocite] = ACTIONS(12501), + [anon_sym_BSLASHcitet] = ACTIONS(12501), + [anon_sym_BSLASHcitep] = ACTIONS(12501), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteauthor] = ACTIONS(12501), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12501), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitetitle] = ACTIONS(12501), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteyear] = ACTIONS(12501), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitedate] = ACTIONS(12501), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteurl] = ACTIONS(12501), + [anon_sym_BSLASHfullcite] = ACTIONS(12501), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12501), + [anon_sym_BSLASHcitealt] = ACTIONS(12501), + [anon_sym_BSLASHcitealp] = ACTIONS(12501), + [anon_sym_BSLASHcitetext] = ACTIONS(12501), + [anon_sym_BSLASHparencite] = ACTIONS(12501), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHParencite] = ACTIONS(12501), + [anon_sym_BSLASHfootcite] = ACTIONS(12501), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12501), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12501), + [anon_sym_BSLASHtextcite] = ACTIONS(12501), + [anon_sym_BSLASHTextcite] = ACTIONS(12501), + [anon_sym_BSLASHsmartcite] = ACTIONS(12501), + [anon_sym_BSLASHSmartcite] = ACTIONS(12501), + [anon_sym_BSLASHsupercite] = ACTIONS(12501), + [anon_sym_BSLASHautocite] = ACTIONS(12501), + [anon_sym_BSLASHAutocite] = ACTIONS(12501), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHvolcite] = ACTIONS(12501), + [anon_sym_BSLASHVolcite] = ACTIONS(12501), + [anon_sym_BSLASHpvolcite] = ACTIONS(12501), + [anon_sym_BSLASHPvolcite] = ACTIONS(12501), + [anon_sym_BSLASHfvolcite] = ACTIONS(12501), + [anon_sym_BSLASHftvolcite] = ACTIONS(12501), + [anon_sym_BSLASHsvolcite] = ACTIONS(12501), + [anon_sym_BSLASHSvolcite] = ACTIONS(12501), + [anon_sym_BSLASHtvolcite] = ACTIONS(12501), + [anon_sym_BSLASHTvolcite] = ACTIONS(12501), + [anon_sym_BSLASHavolcite] = ACTIONS(12501), + [anon_sym_BSLASHAvolcite] = ACTIONS(12501), + [anon_sym_BSLASHnotecite] = ACTIONS(12501), + [anon_sym_BSLASHpnotecite] = ACTIONS(12501), + [anon_sym_BSLASHPnotecite] = ACTIONS(12501), + [anon_sym_BSLASHfnotecite] = ACTIONS(12501), + [anon_sym_BSLASHusepackage] = ACTIONS(12501), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12501), + [anon_sym_BSLASHinclude] = ACTIONS(12501), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12501), + [anon_sym_BSLASHinput] = ACTIONS(12501), + [anon_sym_BSLASHsubfile] = ACTIONS(12501), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12501), + [anon_sym_BSLASHbibliography] = ACTIONS(12501), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12501), + [anon_sym_BSLASHincludesvg] = ACTIONS(12501), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12501), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12501), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12501), + [anon_sym_BSLASHimport] = ACTIONS(12501), + [anon_sym_BSLASHsubimport] = ACTIONS(12501), + [anon_sym_BSLASHinputfrom] = ACTIONS(12501), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12501), + [anon_sym_BSLASHincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHlabel] = ACTIONS(12501), + [anon_sym_BSLASHref] = ACTIONS(12501), + [anon_sym_BSLASHvref] = ACTIONS(12501), + [anon_sym_BSLASHVref] = ACTIONS(12501), + [anon_sym_BSLASHautoref] = ACTIONS(12501), + [anon_sym_BSLASHpageref] = ACTIONS(12501), + [anon_sym_BSLASHcref] = ACTIONS(12501), + [anon_sym_BSLASHCref] = ACTIONS(12501), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnameCref] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHlabelcref] = ACTIONS(12501), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12501), + [anon_sym_BSLASHeqref] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange] = ACTIONS(12501), + [anon_sym_BSLASHCrefrange] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewlabel] = ACTIONS(12501), + [anon_sym_BSLASHnewcommand] = ACTIONS(12501), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12501), + [anon_sym_BSLASHgls] = ACTIONS(12501), + [anon_sym_BSLASHGls] = ACTIONS(12501), + [anon_sym_BSLASHGLS] = ACTIONS(12501), + [anon_sym_BSLASHglspl] = ACTIONS(12501), + [anon_sym_BSLASHGlspl] = ACTIONS(12501), + [anon_sym_BSLASHGLSpl] = ACTIONS(12501), + [anon_sym_BSLASHglsdisp] = ACTIONS(12501), + [anon_sym_BSLASHglslink] = ACTIONS(12501), + [anon_sym_BSLASHglstext] = ACTIONS(12501), + [anon_sym_BSLASHGlstext] = ACTIONS(12501), + [anon_sym_BSLASHGLStext] = ACTIONS(12501), + [anon_sym_BSLASHglsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12501), + [anon_sym_BSLASHglsplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSplural] = ACTIONS(12501), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHglsname] = ACTIONS(12501), + [anon_sym_BSLASHGlsname] = ACTIONS(12501), + [anon_sym_BSLASHGLSname] = ACTIONS(12501), + [anon_sym_BSLASHglssymbol] = ACTIONS(12501), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12501), + [anon_sym_BSLASHglsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12501), + [anon_sym_BSLASHglsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12501), + [anon_sym_BSLASHglsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12501), + [anon_sym_BSLASHglsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12501), + [anon_sym_BSLASHglsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12501), + [anon_sym_BSLASHnewacronym] = ACTIONS(12501), + [anon_sym_BSLASHacrshort] = ACTIONS(12501), + [anon_sym_BSLASHAcrshort] = ACTIONS(12501), + [anon_sym_BSLASHACRshort] = ACTIONS(12501), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12501), + [anon_sym_BSLASHacrlong] = ACTIONS(12501), + [anon_sym_BSLASHAcrlong] = ACTIONS(12501), + [anon_sym_BSLASHACRlong] = ACTIONS(12501), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12501), + [anon_sym_BSLASHacrfull] = ACTIONS(12501), + [anon_sym_BSLASHAcrfull] = ACTIONS(12501), + [anon_sym_BSLASHACRfull] = ACTIONS(12501), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12501), + [anon_sym_BSLASHacs] = ACTIONS(12501), + [anon_sym_BSLASHAcs] = ACTIONS(12501), + [anon_sym_BSLASHacsp] = ACTIONS(12501), + [anon_sym_BSLASHAcsp] = ACTIONS(12501), + [anon_sym_BSLASHacl] = ACTIONS(12501), + [anon_sym_BSLASHAcl] = ACTIONS(12501), + [anon_sym_BSLASHaclp] = ACTIONS(12501), + [anon_sym_BSLASHAclp] = ACTIONS(12501), + [anon_sym_BSLASHacf] = ACTIONS(12501), + [anon_sym_BSLASHAcf] = ACTIONS(12501), + [anon_sym_BSLASHacfp] = ACTIONS(12501), + [anon_sym_BSLASHAcfp] = ACTIONS(12501), + [anon_sym_BSLASHac] = ACTIONS(12501), + [anon_sym_BSLASHAc] = ACTIONS(12501), + [anon_sym_BSLASHacp] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12501), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12501), + [anon_sym_BSLASHcolor] = ACTIONS(12501), + [anon_sym_BSLASHcolorbox] = ACTIONS(12501), + [anon_sym_BSLASHtextcolor] = ACTIONS(12501), + [anon_sym_BSLASHpagecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12501), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12501), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12501), + }, + [731] = { + [sym_generic_command_name] = ACTIONS(12509), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12509), + [aux_sym_chapter_token1] = ACTIONS(12509), + [aux_sym_section_token1] = ACTIONS(12509), + [aux_sym_subsection_token1] = ACTIONS(12509), + [aux_sym_subsubsection_token1] = ACTIONS(12509), + [aux_sym_paragraph_token1] = ACTIONS(12509), + [aux_sym_subparagraph_token1] = ACTIONS(12509), + [anon_sym_BSLASHitem] = ACTIONS(12509), + [anon_sym_LBRACK] = ACTIONS(12507), + [anon_sym_LBRACE] = ACTIONS(12507), + [anon_sym_LPAREN] = ACTIONS(12507), + [anon_sym_COMMA] = ACTIONS(12507), + [anon_sym_EQ] = ACTIONS(12507), + [sym_word] = ACTIONS(12507), + [sym_param] = ACTIONS(12507), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12507), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12507), + [anon_sym_DOLLAR] = ACTIONS(12509), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12507), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12507), + [anon_sym_BSLASHbegin] = ACTIONS(12509), + [anon_sym_BSLASHcaption] = ACTIONS(12509), + [anon_sym_BSLASHcite] = ACTIONS(12509), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCite] = ACTIONS(12509), + [anon_sym_BSLASHnocite] = ACTIONS(12509), + [anon_sym_BSLASHcitet] = ACTIONS(12509), + [anon_sym_BSLASHcitep] = ACTIONS(12509), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteauthor] = ACTIONS(12509), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12509), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitetitle] = ACTIONS(12509), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteyear] = ACTIONS(12509), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitedate] = ACTIONS(12509), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteurl] = ACTIONS(12509), + [anon_sym_BSLASHfullcite] = ACTIONS(12509), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12509), + [anon_sym_BSLASHcitealt] = ACTIONS(12509), + [anon_sym_BSLASHcitealp] = ACTIONS(12509), + [anon_sym_BSLASHcitetext] = ACTIONS(12509), + [anon_sym_BSLASHparencite] = ACTIONS(12509), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHParencite] = ACTIONS(12509), + [anon_sym_BSLASHfootcite] = ACTIONS(12509), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12509), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12509), + [anon_sym_BSLASHtextcite] = ACTIONS(12509), + [anon_sym_BSLASHTextcite] = ACTIONS(12509), + [anon_sym_BSLASHsmartcite] = ACTIONS(12509), + [anon_sym_BSLASHSmartcite] = ACTIONS(12509), + [anon_sym_BSLASHsupercite] = ACTIONS(12509), + [anon_sym_BSLASHautocite] = ACTIONS(12509), + [anon_sym_BSLASHAutocite] = ACTIONS(12509), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHvolcite] = ACTIONS(12509), + [anon_sym_BSLASHVolcite] = ACTIONS(12509), + [anon_sym_BSLASHpvolcite] = ACTIONS(12509), + [anon_sym_BSLASHPvolcite] = ACTIONS(12509), + [anon_sym_BSLASHfvolcite] = ACTIONS(12509), + [anon_sym_BSLASHftvolcite] = ACTIONS(12509), + [anon_sym_BSLASHsvolcite] = ACTIONS(12509), + [anon_sym_BSLASHSvolcite] = ACTIONS(12509), + [anon_sym_BSLASHtvolcite] = ACTIONS(12509), + [anon_sym_BSLASHTvolcite] = ACTIONS(12509), + [anon_sym_BSLASHavolcite] = ACTIONS(12509), + [anon_sym_BSLASHAvolcite] = ACTIONS(12509), + [anon_sym_BSLASHnotecite] = ACTIONS(12509), + [anon_sym_BSLASHpnotecite] = ACTIONS(12509), + [anon_sym_BSLASHPnotecite] = ACTIONS(12509), + [anon_sym_BSLASHfnotecite] = ACTIONS(12509), + [anon_sym_BSLASHusepackage] = ACTIONS(12509), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12509), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12509), + [anon_sym_BSLASHinclude] = ACTIONS(12509), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12509), + [anon_sym_BSLASHinput] = ACTIONS(12509), + [anon_sym_BSLASHsubfile] = ACTIONS(12509), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12509), + [anon_sym_BSLASHbibliography] = ACTIONS(12509), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12509), + [anon_sym_BSLASHincludesvg] = ACTIONS(12509), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12509), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12509), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12509), + [anon_sym_BSLASHimport] = ACTIONS(12509), + [anon_sym_BSLASHsubimport] = ACTIONS(12509), + [anon_sym_BSLASHinputfrom] = ACTIONS(12509), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12509), + [anon_sym_BSLASHincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHlabel] = ACTIONS(12509), + [anon_sym_BSLASHref] = ACTIONS(12509), + [anon_sym_BSLASHvref] = ACTIONS(12509), + [anon_sym_BSLASHVref] = ACTIONS(12509), + [anon_sym_BSLASHautoref] = ACTIONS(12509), + [anon_sym_BSLASHpageref] = ACTIONS(12509), + [anon_sym_BSLASHcref] = ACTIONS(12509), + [anon_sym_BSLASHCref] = ACTIONS(12509), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnameCref] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHlabelcref] = ACTIONS(12509), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12509), + [anon_sym_BSLASHeqref] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange] = ACTIONS(12509), + [anon_sym_BSLASHCrefrange] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewlabel] = ACTIONS(12509), + [anon_sym_BSLASHnewcommand] = ACTIONS(12509), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12509), + [anon_sym_BSLASHgls] = ACTIONS(12509), + [anon_sym_BSLASHGls] = ACTIONS(12509), + [anon_sym_BSLASHGLS] = ACTIONS(12509), + [anon_sym_BSLASHglspl] = ACTIONS(12509), + [anon_sym_BSLASHGlspl] = ACTIONS(12509), + [anon_sym_BSLASHGLSpl] = ACTIONS(12509), + [anon_sym_BSLASHglsdisp] = ACTIONS(12509), + [anon_sym_BSLASHglslink] = ACTIONS(12509), + [anon_sym_BSLASHglstext] = ACTIONS(12509), + [anon_sym_BSLASHGlstext] = ACTIONS(12509), + [anon_sym_BSLASHGLStext] = ACTIONS(12509), + [anon_sym_BSLASHglsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12509), + [anon_sym_BSLASHglsplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSplural] = ACTIONS(12509), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHglsname] = ACTIONS(12509), + [anon_sym_BSLASHGlsname] = ACTIONS(12509), + [anon_sym_BSLASHGLSname] = ACTIONS(12509), + [anon_sym_BSLASHglssymbol] = ACTIONS(12509), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12509), + [anon_sym_BSLASHglsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12509), + [anon_sym_BSLASHglsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12509), + [anon_sym_BSLASHglsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12509), + [anon_sym_BSLASHglsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12509), + [anon_sym_BSLASHglsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12509), + [anon_sym_BSLASHnewacronym] = ACTIONS(12509), + [anon_sym_BSLASHacrshort] = ACTIONS(12509), + [anon_sym_BSLASHAcrshort] = ACTIONS(12509), + [anon_sym_BSLASHACRshort] = ACTIONS(12509), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12509), + [anon_sym_BSLASHacrlong] = ACTIONS(12509), + [anon_sym_BSLASHAcrlong] = ACTIONS(12509), + [anon_sym_BSLASHACRlong] = ACTIONS(12509), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12509), + [anon_sym_BSLASHacrfull] = ACTIONS(12509), + [anon_sym_BSLASHAcrfull] = ACTIONS(12509), + [anon_sym_BSLASHACRfull] = ACTIONS(12509), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12509), + [anon_sym_BSLASHacs] = ACTIONS(12509), + [anon_sym_BSLASHAcs] = ACTIONS(12509), + [anon_sym_BSLASHacsp] = ACTIONS(12509), + [anon_sym_BSLASHAcsp] = ACTIONS(12509), + [anon_sym_BSLASHacl] = ACTIONS(12509), + [anon_sym_BSLASHAcl] = ACTIONS(12509), + [anon_sym_BSLASHaclp] = ACTIONS(12509), + [anon_sym_BSLASHAclp] = ACTIONS(12509), + [anon_sym_BSLASHacf] = ACTIONS(12509), + [anon_sym_BSLASHAcf] = ACTIONS(12509), + [anon_sym_BSLASHacfp] = ACTIONS(12509), + [anon_sym_BSLASHAcfp] = ACTIONS(12509), + [anon_sym_BSLASHac] = ACTIONS(12509), + [anon_sym_BSLASHAc] = ACTIONS(12509), + [anon_sym_BSLASHacp] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12509), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12509), + [anon_sym_BSLASHcolor] = ACTIONS(12509), + [anon_sym_BSLASHcolorbox] = ACTIONS(12509), + [anon_sym_BSLASHtextcolor] = ACTIONS(12509), + [anon_sym_BSLASHpagecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12509), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12509), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12509), + }, + [732] = { + [sym_generic_command_name] = ACTIONS(12513), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12513), + [aux_sym_chapter_token1] = ACTIONS(12513), + [aux_sym_section_token1] = ACTIONS(12513), + [aux_sym_subsection_token1] = ACTIONS(12513), + [aux_sym_subsubsection_token1] = ACTIONS(12513), + [aux_sym_paragraph_token1] = ACTIONS(12513), + [aux_sym_subparagraph_token1] = ACTIONS(12513), + [anon_sym_BSLASHitem] = ACTIONS(12513), + [anon_sym_LBRACK] = ACTIONS(12511), + [anon_sym_LBRACE] = ACTIONS(12662), + [anon_sym_LPAREN] = ACTIONS(12511), + [anon_sym_COMMA] = ACTIONS(12511), + [anon_sym_EQ] = ACTIONS(12511), + [sym_word] = ACTIONS(12511), + [sym_param] = ACTIONS(12511), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12511), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12511), + [anon_sym_DOLLAR] = ACTIONS(12513), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12511), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12511), + [anon_sym_BSLASHbegin] = ACTIONS(12513), + [anon_sym_BSLASHcaption] = ACTIONS(12513), + [anon_sym_BSLASHcite] = ACTIONS(12513), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCite] = ACTIONS(12513), + [anon_sym_BSLASHnocite] = ACTIONS(12513), + [anon_sym_BSLASHcitet] = ACTIONS(12513), + [anon_sym_BSLASHcitep] = ACTIONS(12513), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteauthor] = ACTIONS(12513), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12513), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitetitle] = ACTIONS(12513), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteyear] = ACTIONS(12513), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitedate] = ACTIONS(12513), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteurl] = ACTIONS(12513), + [anon_sym_BSLASHfullcite] = ACTIONS(12513), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12513), + [anon_sym_BSLASHcitealt] = ACTIONS(12513), + [anon_sym_BSLASHcitealp] = ACTIONS(12513), + [anon_sym_BSLASHcitetext] = ACTIONS(12513), + [anon_sym_BSLASHparencite] = ACTIONS(12513), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHParencite] = ACTIONS(12513), + [anon_sym_BSLASHfootcite] = ACTIONS(12513), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12513), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12513), + [anon_sym_BSLASHtextcite] = ACTIONS(12513), + [anon_sym_BSLASHTextcite] = ACTIONS(12513), + [anon_sym_BSLASHsmartcite] = ACTIONS(12513), + [anon_sym_BSLASHSmartcite] = ACTIONS(12513), + [anon_sym_BSLASHsupercite] = ACTIONS(12513), + [anon_sym_BSLASHautocite] = ACTIONS(12513), + [anon_sym_BSLASHAutocite] = ACTIONS(12513), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHvolcite] = ACTIONS(12513), + [anon_sym_BSLASHVolcite] = ACTIONS(12513), + [anon_sym_BSLASHpvolcite] = ACTIONS(12513), + [anon_sym_BSLASHPvolcite] = ACTIONS(12513), + [anon_sym_BSLASHfvolcite] = ACTIONS(12513), + [anon_sym_BSLASHftvolcite] = ACTIONS(12513), + [anon_sym_BSLASHsvolcite] = ACTIONS(12513), + [anon_sym_BSLASHSvolcite] = ACTIONS(12513), + [anon_sym_BSLASHtvolcite] = ACTIONS(12513), + [anon_sym_BSLASHTvolcite] = ACTIONS(12513), + [anon_sym_BSLASHavolcite] = ACTIONS(12513), + [anon_sym_BSLASHAvolcite] = ACTIONS(12513), + [anon_sym_BSLASHnotecite] = ACTIONS(12513), + [anon_sym_BSLASHpnotecite] = ACTIONS(12513), + [anon_sym_BSLASHPnotecite] = ACTIONS(12513), + [anon_sym_BSLASHfnotecite] = ACTIONS(12513), + [anon_sym_BSLASHusepackage] = ACTIONS(12513), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12513), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12513), + [anon_sym_BSLASHinclude] = ACTIONS(12513), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12513), + [anon_sym_BSLASHinput] = ACTIONS(12513), + [anon_sym_BSLASHsubfile] = ACTIONS(12513), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12513), + [anon_sym_BSLASHbibliography] = ACTIONS(12513), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12513), + [anon_sym_BSLASHincludesvg] = ACTIONS(12513), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12513), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12513), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12513), + [anon_sym_BSLASHimport] = ACTIONS(12513), + [anon_sym_BSLASHsubimport] = ACTIONS(12513), + [anon_sym_BSLASHinputfrom] = ACTIONS(12513), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12513), + [anon_sym_BSLASHincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHlabel] = ACTIONS(12513), + [anon_sym_BSLASHref] = ACTIONS(12513), + [anon_sym_BSLASHvref] = ACTIONS(12513), + [anon_sym_BSLASHVref] = ACTIONS(12513), + [anon_sym_BSLASHautoref] = ACTIONS(12513), + [anon_sym_BSLASHpageref] = ACTIONS(12513), + [anon_sym_BSLASHcref] = ACTIONS(12513), + [anon_sym_BSLASHCref] = ACTIONS(12513), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnameCref] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHlabelcref] = ACTIONS(12513), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12513), + [anon_sym_BSLASHeqref] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange] = ACTIONS(12513), + [anon_sym_BSLASHCrefrange] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewlabel] = ACTIONS(12513), + [anon_sym_BSLASHnewcommand] = ACTIONS(12513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12513), + [anon_sym_BSLASHgls] = ACTIONS(12513), + [anon_sym_BSLASHGls] = ACTIONS(12513), + [anon_sym_BSLASHGLS] = ACTIONS(12513), + [anon_sym_BSLASHglspl] = ACTIONS(12513), + [anon_sym_BSLASHGlspl] = ACTIONS(12513), + [anon_sym_BSLASHGLSpl] = ACTIONS(12513), + [anon_sym_BSLASHglsdisp] = ACTIONS(12513), + [anon_sym_BSLASHglslink] = ACTIONS(12513), + [anon_sym_BSLASHglstext] = ACTIONS(12513), + [anon_sym_BSLASHGlstext] = ACTIONS(12513), + [anon_sym_BSLASHGLStext] = ACTIONS(12513), + [anon_sym_BSLASHglsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12513), + [anon_sym_BSLASHglsplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSplural] = ACTIONS(12513), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHglsname] = ACTIONS(12513), + [anon_sym_BSLASHGlsname] = ACTIONS(12513), + [anon_sym_BSLASHGLSname] = ACTIONS(12513), + [anon_sym_BSLASHglssymbol] = ACTIONS(12513), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12513), + [anon_sym_BSLASHglsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12513), + [anon_sym_BSLASHglsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12513), + [anon_sym_BSLASHglsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12513), + [anon_sym_BSLASHglsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12513), + [anon_sym_BSLASHglsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12513), + [anon_sym_BSLASHnewacronym] = ACTIONS(12513), + [anon_sym_BSLASHacrshort] = ACTIONS(12513), + [anon_sym_BSLASHAcrshort] = ACTIONS(12513), + [anon_sym_BSLASHACRshort] = ACTIONS(12513), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12513), + [anon_sym_BSLASHacrlong] = ACTIONS(12513), + [anon_sym_BSLASHAcrlong] = ACTIONS(12513), + [anon_sym_BSLASHACRlong] = ACTIONS(12513), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12513), + [anon_sym_BSLASHacrfull] = ACTIONS(12513), + [anon_sym_BSLASHAcrfull] = ACTIONS(12513), + [anon_sym_BSLASHACRfull] = ACTIONS(12513), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12513), + [anon_sym_BSLASHacs] = ACTIONS(12513), + [anon_sym_BSLASHAcs] = ACTIONS(12513), + [anon_sym_BSLASHacsp] = ACTIONS(12513), + [anon_sym_BSLASHAcsp] = ACTIONS(12513), + [anon_sym_BSLASHacl] = ACTIONS(12513), + [anon_sym_BSLASHAcl] = ACTIONS(12513), + [anon_sym_BSLASHaclp] = ACTIONS(12513), + [anon_sym_BSLASHAclp] = ACTIONS(12513), + [anon_sym_BSLASHacf] = ACTIONS(12513), + [anon_sym_BSLASHAcf] = ACTIONS(12513), + [anon_sym_BSLASHacfp] = ACTIONS(12513), + [anon_sym_BSLASHAcfp] = ACTIONS(12513), + [anon_sym_BSLASHac] = ACTIONS(12513), + [anon_sym_BSLASHAc] = ACTIONS(12513), + [anon_sym_BSLASHacp] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12513), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12513), + [anon_sym_BSLASHcolor] = ACTIONS(12513), + [anon_sym_BSLASHcolorbox] = ACTIONS(12513), + [anon_sym_BSLASHtextcolor] = ACTIONS(12513), + [anon_sym_BSLASHpagecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12513), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12513), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12513), + }, + [733] = { + [sym_generic_command_name] = ACTIONS(12519), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12519), + [aux_sym_chapter_token1] = ACTIONS(12519), + [aux_sym_section_token1] = ACTIONS(12519), + [aux_sym_subsection_token1] = ACTIONS(12519), + [aux_sym_subsubsection_token1] = ACTIONS(12519), + [aux_sym_paragraph_token1] = ACTIONS(12519), + [aux_sym_subparagraph_token1] = ACTIONS(12519), + [anon_sym_BSLASHitem] = ACTIONS(12519), + [anon_sym_LBRACK] = ACTIONS(12517), + [anon_sym_LBRACE] = ACTIONS(12517), + [anon_sym_LPAREN] = ACTIONS(12517), + [anon_sym_COMMA] = ACTIONS(12517), + [anon_sym_EQ] = ACTIONS(12517), + [sym_word] = ACTIONS(12517), + [sym_param] = ACTIONS(12517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12517), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12517), + [anon_sym_DOLLAR] = ACTIONS(12519), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12517), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12517), + [anon_sym_BSLASHbegin] = ACTIONS(12519), + [anon_sym_BSLASHcaption] = ACTIONS(12519), + [anon_sym_BSLASHcite] = ACTIONS(12519), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCite] = ACTIONS(12519), + [anon_sym_BSLASHnocite] = ACTIONS(12519), + [anon_sym_BSLASHcitet] = ACTIONS(12519), + [anon_sym_BSLASHcitep] = ACTIONS(12519), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteauthor] = ACTIONS(12519), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12519), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitetitle] = ACTIONS(12519), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteyear] = ACTIONS(12519), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitedate] = ACTIONS(12519), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteurl] = ACTIONS(12519), + [anon_sym_BSLASHfullcite] = ACTIONS(12519), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12519), + [anon_sym_BSLASHcitealt] = ACTIONS(12519), + [anon_sym_BSLASHcitealp] = ACTIONS(12519), + [anon_sym_BSLASHcitetext] = ACTIONS(12519), + [anon_sym_BSLASHparencite] = ACTIONS(12519), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHParencite] = ACTIONS(12519), + [anon_sym_BSLASHfootcite] = ACTIONS(12519), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12519), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12519), + [anon_sym_BSLASHtextcite] = ACTIONS(12519), + [anon_sym_BSLASHTextcite] = ACTIONS(12519), + [anon_sym_BSLASHsmartcite] = ACTIONS(12519), + [anon_sym_BSLASHSmartcite] = ACTIONS(12519), + [anon_sym_BSLASHsupercite] = ACTIONS(12519), + [anon_sym_BSLASHautocite] = ACTIONS(12519), + [anon_sym_BSLASHAutocite] = ACTIONS(12519), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHvolcite] = ACTIONS(12519), + [anon_sym_BSLASHVolcite] = ACTIONS(12519), + [anon_sym_BSLASHpvolcite] = ACTIONS(12519), + [anon_sym_BSLASHPvolcite] = ACTIONS(12519), + [anon_sym_BSLASHfvolcite] = ACTIONS(12519), + [anon_sym_BSLASHftvolcite] = ACTIONS(12519), + [anon_sym_BSLASHsvolcite] = ACTIONS(12519), + [anon_sym_BSLASHSvolcite] = ACTIONS(12519), + [anon_sym_BSLASHtvolcite] = ACTIONS(12519), + [anon_sym_BSLASHTvolcite] = ACTIONS(12519), + [anon_sym_BSLASHavolcite] = ACTIONS(12519), + [anon_sym_BSLASHAvolcite] = ACTIONS(12519), + [anon_sym_BSLASHnotecite] = ACTIONS(12519), + [anon_sym_BSLASHpnotecite] = ACTIONS(12519), + [anon_sym_BSLASHPnotecite] = ACTIONS(12519), + [anon_sym_BSLASHfnotecite] = ACTIONS(12519), + [anon_sym_BSLASHusepackage] = ACTIONS(12519), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12519), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12519), + [anon_sym_BSLASHinclude] = ACTIONS(12519), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12519), + [anon_sym_BSLASHinput] = ACTIONS(12519), + [anon_sym_BSLASHsubfile] = ACTIONS(12519), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12519), + [anon_sym_BSLASHbibliography] = ACTIONS(12519), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12519), + [anon_sym_BSLASHincludesvg] = ACTIONS(12519), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12519), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12519), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12519), + [anon_sym_BSLASHimport] = ACTIONS(12519), + [anon_sym_BSLASHsubimport] = ACTIONS(12519), + [anon_sym_BSLASHinputfrom] = ACTIONS(12519), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12519), + [anon_sym_BSLASHincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHlabel] = ACTIONS(12519), + [anon_sym_BSLASHref] = ACTIONS(12519), + [anon_sym_BSLASHvref] = ACTIONS(12519), + [anon_sym_BSLASHVref] = ACTIONS(12519), + [anon_sym_BSLASHautoref] = ACTIONS(12519), + [anon_sym_BSLASHpageref] = ACTIONS(12519), + [anon_sym_BSLASHcref] = ACTIONS(12519), + [anon_sym_BSLASHCref] = ACTIONS(12519), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnameCref] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHlabelcref] = ACTIONS(12519), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12519), + [anon_sym_BSLASHeqref] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange] = ACTIONS(12519), + [anon_sym_BSLASHCrefrange] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewlabel] = ACTIONS(12519), + [anon_sym_BSLASHnewcommand] = ACTIONS(12519), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12519), + [anon_sym_BSLASHgls] = ACTIONS(12519), + [anon_sym_BSLASHGls] = ACTIONS(12519), + [anon_sym_BSLASHGLS] = ACTIONS(12519), + [anon_sym_BSLASHglspl] = ACTIONS(12519), + [anon_sym_BSLASHGlspl] = ACTIONS(12519), + [anon_sym_BSLASHGLSpl] = ACTIONS(12519), + [anon_sym_BSLASHglsdisp] = ACTIONS(12519), + [anon_sym_BSLASHglslink] = ACTIONS(12519), + [anon_sym_BSLASHglstext] = ACTIONS(12519), + [anon_sym_BSLASHGlstext] = ACTIONS(12519), + [anon_sym_BSLASHGLStext] = ACTIONS(12519), + [anon_sym_BSLASHglsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12519), + [anon_sym_BSLASHglsplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSplural] = ACTIONS(12519), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHglsname] = ACTIONS(12519), + [anon_sym_BSLASHGlsname] = ACTIONS(12519), + [anon_sym_BSLASHGLSname] = ACTIONS(12519), + [anon_sym_BSLASHglssymbol] = ACTIONS(12519), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12519), + [anon_sym_BSLASHglsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12519), + [anon_sym_BSLASHglsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12519), + [anon_sym_BSLASHglsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12519), + [anon_sym_BSLASHglsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12519), + [anon_sym_BSLASHglsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12519), + [anon_sym_BSLASHnewacronym] = ACTIONS(12519), + [anon_sym_BSLASHacrshort] = ACTIONS(12519), + [anon_sym_BSLASHAcrshort] = ACTIONS(12519), + [anon_sym_BSLASHACRshort] = ACTIONS(12519), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12519), + [anon_sym_BSLASHacrlong] = ACTIONS(12519), + [anon_sym_BSLASHAcrlong] = ACTIONS(12519), + [anon_sym_BSLASHACRlong] = ACTIONS(12519), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12519), + [anon_sym_BSLASHacrfull] = ACTIONS(12519), + [anon_sym_BSLASHAcrfull] = ACTIONS(12519), + [anon_sym_BSLASHACRfull] = ACTIONS(12519), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12519), + [anon_sym_BSLASHacs] = ACTIONS(12519), + [anon_sym_BSLASHAcs] = ACTIONS(12519), + [anon_sym_BSLASHacsp] = ACTIONS(12519), + [anon_sym_BSLASHAcsp] = ACTIONS(12519), + [anon_sym_BSLASHacl] = ACTIONS(12519), + [anon_sym_BSLASHAcl] = ACTIONS(12519), + [anon_sym_BSLASHaclp] = ACTIONS(12519), + [anon_sym_BSLASHAclp] = ACTIONS(12519), + [anon_sym_BSLASHacf] = ACTIONS(12519), + [anon_sym_BSLASHAcf] = ACTIONS(12519), + [anon_sym_BSLASHacfp] = ACTIONS(12519), + [anon_sym_BSLASHAcfp] = ACTIONS(12519), + [anon_sym_BSLASHac] = ACTIONS(12519), + [anon_sym_BSLASHAc] = ACTIONS(12519), + [anon_sym_BSLASHacp] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12519), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12519), + [anon_sym_BSLASHcolor] = ACTIONS(12519), + [anon_sym_BSLASHcolorbox] = ACTIONS(12519), + [anon_sym_BSLASHtextcolor] = ACTIONS(12519), + [anon_sym_BSLASHpagecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12519), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12519), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12519), + }, + [734] = { + [sym_generic_command_name] = ACTIONS(12523), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12523), + [aux_sym_chapter_token1] = ACTIONS(12523), + [aux_sym_section_token1] = ACTIONS(12523), + [aux_sym_subsection_token1] = ACTIONS(12523), + [aux_sym_subsubsection_token1] = ACTIONS(12523), + [aux_sym_paragraph_token1] = ACTIONS(12523), + [aux_sym_subparagraph_token1] = ACTIONS(12523), + [anon_sym_BSLASHitem] = ACTIONS(12523), + [anon_sym_LBRACK] = ACTIONS(12521), + [anon_sym_LBRACE] = ACTIONS(12521), + [anon_sym_LPAREN] = ACTIONS(12521), + [anon_sym_COMMA] = ACTIONS(12521), + [anon_sym_EQ] = ACTIONS(12521), + [sym_word] = ACTIONS(12521), + [sym_param] = ACTIONS(12521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12521), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12521), + [anon_sym_DOLLAR] = ACTIONS(12523), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12521), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12521), + [anon_sym_BSLASHbegin] = ACTIONS(12523), + [anon_sym_BSLASHcaption] = ACTIONS(12523), + [anon_sym_BSLASHcite] = ACTIONS(12523), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCite] = ACTIONS(12523), + [anon_sym_BSLASHnocite] = ACTIONS(12523), + [anon_sym_BSLASHcitet] = ACTIONS(12523), + [anon_sym_BSLASHcitep] = ACTIONS(12523), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteauthor] = ACTIONS(12523), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12523), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitetitle] = ACTIONS(12523), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteyear] = ACTIONS(12523), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitedate] = ACTIONS(12523), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteurl] = ACTIONS(12523), + [anon_sym_BSLASHfullcite] = ACTIONS(12523), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12523), + [anon_sym_BSLASHcitealt] = ACTIONS(12523), + [anon_sym_BSLASHcitealp] = ACTIONS(12523), + [anon_sym_BSLASHcitetext] = ACTIONS(12523), + [anon_sym_BSLASHparencite] = ACTIONS(12523), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHParencite] = ACTIONS(12523), + [anon_sym_BSLASHfootcite] = ACTIONS(12523), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12523), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12523), + [anon_sym_BSLASHtextcite] = ACTIONS(12523), + [anon_sym_BSLASHTextcite] = ACTIONS(12523), + [anon_sym_BSLASHsmartcite] = ACTIONS(12523), + [anon_sym_BSLASHSmartcite] = ACTIONS(12523), + [anon_sym_BSLASHsupercite] = ACTIONS(12523), + [anon_sym_BSLASHautocite] = ACTIONS(12523), + [anon_sym_BSLASHAutocite] = ACTIONS(12523), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHvolcite] = ACTIONS(12523), + [anon_sym_BSLASHVolcite] = ACTIONS(12523), + [anon_sym_BSLASHpvolcite] = ACTIONS(12523), + [anon_sym_BSLASHPvolcite] = ACTIONS(12523), + [anon_sym_BSLASHfvolcite] = ACTIONS(12523), + [anon_sym_BSLASHftvolcite] = ACTIONS(12523), + [anon_sym_BSLASHsvolcite] = ACTIONS(12523), + [anon_sym_BSLASHSvolcite] = ACTIONS(12523), + [anon_sym_BSLASHtvolcite] = ACTIONS(12523), + [anon_sym_BSLASHTvolcite] = ACTIONS(12523), + [anon_sym_BSLASHavolcite] = ACTIONS(12523), + [anon_sym_BSLASHAvolcite] = ACTIONS(12523), + [anon_sym_BSLASHnotecite] = ACTIONS(12523), + [anon_sym_BSLASHpnotecite] = ACTIONS(12523), + [anon_sym_BSLASHPnotecite] = ACTIONS(12523), + [anon_sym_BSLASHfnotecite] = ACTIONS(12523), + [anon_sym_BSLASHusepackage] = ACTIONS(12523), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12523), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12523), + [anon_sym_BSLASHinclude] = ACTIONS(12523), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12523), + [anon_sym_BSLASHinput] = ACTIONS(12523), + [anon_sym_BSLASHsubfile] = ACTIONS(12523), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12523), + [anon_sym_BSLASHbibliography] = ACTIONS(12523), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12523), + [anon_sym_BSLASHincludesvg] = ACTIONS(12523), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12523), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12523), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12523), + [anon_sym_BSLASHimport] = ACTIONS(12523), + [anon_sym_BSLASHsubimport] = ACTIONS(12523), + [anon_sym_BSLASHinputfrom] = ACTIONS(12523), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12523), + [anon_sym_BSLASHincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHlabel] = ACTIONS(12523), + [anon_sym_BSLASHref] = ACTIONS(12523), + [anon_sym_BSLASHvref] = ACTIONS(12523), + [anon_sym_BSLASHVref] = ACTIONS(12523), + [anon_sym_BSLASHautoref] = ACTIONS(12523), + [anon_sym_BSLASHpageref] = ACTIONS(12523), + [anon_sym_BSLASHcref] = ACTIONS(12523), + [anon_sym_BSLASHCref] = ACTIONS(12523), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnameCref] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHlabelcref] = ACTIONS(12523), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12523), + [anon_sym_BSLASHeqref] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange] = ACTIONS(12523), + [anon_sym_BSLASHCrefrange] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewlabel] = ACTIONS(12523), + [anon_sym_BSLASHnewcommand] = ACTIONS(12523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12523), + [anon_sym_BSLASHgls] = ACTIONS(12523), + [anon_sym_BSLASHGls] = ACTIONS(12523), + [anon_sym_BSLASHGLS] = ACTIONS(12523), + [anon_sym_BSLASHglspl] = ACTIONS(12523), + [anon_sym_BSLASHGlspl] = ACTIONS(12523), + [anon_sym_BSLASHGLSpl] = ACTIONS(12523), + [anon_sym_BSLASHglsdisp] = ACTIONS(12523), + [anon_sym_BSLASHglslink] = ACTIONS(12523), + [anon_sym_BSLASHglstext] = ACTIONS(12523), + [anon_sym_BSLASHGlstext] = ACTIONS(12523), + [anon_sym_BSLASHGLStext] = ACTIONS(12523), + [anon_sym_BSLASHglsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12523), + [anon_sym_BSLASHglsplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSplural] = ACTIONS(12523), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHglsname] = ACTIONS(12523), + [anon_sym_BSLASHGlsname] = ACTIONS(12523), + [anon_sym_BSLASHGLSname] = ACTIONS(12523), + [anon_sym_BSLASHglssymbol] = ACTIONS(12523), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12523), + [anon_sym_BSLASHglsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12523), + [anon_sym_BSLASHglsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12523), + [anon_sym_BSLASHglsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12523), + [anon_sym_BSLASHglsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12523), + [anon_sym_BSLASHglsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12523), + [anon_sym_BSLASHnewacronym] = ACTIONS(12523), + [anon_sym_BSLASHacrshort] = ACTIONS(12523), + [anon_sym_BSLASHAcrshort] = ACTIONS(12523), + [anon_sym_BSLASHACRshort] = ACTIONS(12523), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12523), + [anon_sym_BSLASHacrlong] = ACTIONS(12523), + [anon_sym_BSLASHAcrlong] = ACTIONS(12523), + [anon_sym_BSLASHACRlong] = ACTIONS(12523), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12523), + [anon_sym_BSLASHacrfull] = ACTIONS(12523), + [anon_sym_BSLASHAcrfull] = ACTIONS(12523), + [anon_sym_BSLASHACRfull] = ACTIONS(12523), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12523), + [anon_sym_BSLASHacs] = ACTIONS(12523), + [anon_sym_BSLASHAcs] = ACTIONS(12523), + [anon_sym_BSLASHacsp] = ACTIONS(12523), + [anon_sym_BSLASHAcsp] = ACTIONS(12523), + [anon_sym_BSLASHacl] = ACTIONS(12523), + [anon_sym_BSLASHAcl] = ACTIONS(12523), + [anon_sym_BSLASHaclp] = ACTIONS(12523), + [anon_sym_BSLASHAclp] = ACTIONS(12523), + [anon_sym_BSLASHacf] = ACTIONS(12523), + [anon_sym_BSLASHAcf] = ACTIONS(12523), + [anon_sym_BSLASHacfp] = ACTIONS(12523), + [anon_sym_BSLASHAcfp] = ACTIONS(12523), + [anon_sym_BSLASHac] = ACTIONS(12523), + [anon_sym_BSLASHAc] = ACTIONS(12523), + [anon_sym_BSLASHacp] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12523), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12523), + [anon_sym_BSLASHcolor] = ACTIONS(12523), + [anon_sym_BSLASHcolorbox] = ACTIONS(12523), + [anon_sym_BSLASHtextcolor] = ACTIONS(12523), + [anon_sym_BSLASHpagecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12523), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12523), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12523), + }, + [735] = { + [sym_generic_command_name] = ACTIONS(12527), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12527), + [aux_sym_chapter_token1] = ACTIONS(12527), + [aux_sym_section_token1] = ACTIONS(12527), + [aux_sym_subsection_token1] = ACTIONS(12527), + [aux_sym_subsubsection_token1] = ACTIONS(12527), + [aux_sym_paragraph_token1] = ACTIONS(12527), + [aux_sym_subparagraph_token1] = ACTIONS(12527), + [anon_sym_BSLASHitem] = ACTIONS(12527), + [anon_sym_LBRACK] = ACTIONS(12525), + [anon_sym_LBRACE] = ACTIONS(12525), + [anon_sym_LPAREN] = ACTIONS(12525), + [anon_sym_COMMA] = ACTIONS(12525), + [anon_sym_EQ] = ACTIONS(12525), + [sym_word] = ACTIONS(12525), + [sym_param] = ACTIONS(12525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12525), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12525), + [anon_sym_DOLLAR] = ACTIONS(12527), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12525), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12525), + [anon_sym_BSLASHbegin] = ACTIONS(12527), + [anon_sym_BSLASHcaption] = ACTIONS(12527), + [anon_sym_BSLASHcite] = ACTIONS(12527), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCite] = ACTIONS(12527), + [anon_sym_BSLASHnocite] = ACTIONS(12527), + [anon_sym_BSLASHcitet] = ACTIONS(12527), + [anon_sym_BSLASHcitep] = ACTIONS(12527), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteauthor] = ACTIONS(12527), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12527), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitetitle] = ACTIONS(12527), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteyear] = ACTIONS(12527), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitedate] = ACTIONS(12527), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteurl] = ACTIONS(12527), + [anon_sym_BSLASHfullcite] = ACTIONS(12527), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12527), + [anon_sym_BSLASHcitealt] = ACTIONS(12527), + [anon_sym_BSLASHcitealp] = ACTIONS(12527), + [anon_sym_BSLASHcitetext] = ACTIONS(12527), + [anon_sym_BSLASHparencite] = ACTIONS(12527), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHParencite] = ACTIONS(12527), + [anon_sym_BSLASHfootcite] = ACTIONS(12527), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12527), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12527), + [anon_sym_BSLASHtextcite] = ACTIONS(12527), + [anon_sym_BSLASHTextcite] = ACTIONS(12527), + [anon_sym_BSLASHsmartcite] = ACTIONS(12527), + [anon_sym_BSLASHSmartcite] = ACTIONS(12527), + [anon_sym_BSLASHsupercite] = ACTIONS(12527), + [anon_sym_BSLASHautocite] = ACTIONS(12527), + [anon_sym_BSLASHAutocite] = ACTIONS(12527), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHvolcite] = ACTIONS(12527), + [anon_sym_BSLASHVolcite] = ACTIONS(12527), + [anon_sym_BSLASHpvolcite] = ACTIONS(12527), + [anon_sym_BSLASHPvolcite] = ACTIONS(12527), + [anon_sym_BSLASHfvolcite] = ACTIONS(12527), + [anon_sym_BSLASHftvolcite] = ACTIONS(12527), + [anon_sym_BSLASHsvolcite] = ACTIONS(12527), + [anon_sym_BSLASHSvolcite] = ACTIONS(12527), + [anon_sym_BSLASHtvolcite] = ACTIONS(12527), + [anon_sym_BSLASHTvolcite] = ACTIONS(12527), + [anon_sym_BSLASHavolcite] = ACTIONS(12527), + [anon_sym_BSLASHAvolcite] = ACTIONS(12527), + [anon_sym_BSLASHnotecite] = ACTIONS(12527), + [anon_sym_BSLASHpnotecite] = ACTIONS(12527), + [anon_sym_BSLASHPnotecite] = ACTIONS(12527), + [anon_sym_BSLASHfnotecite] = ACTIONS(12527), + [anon_sym_BSLASHusepackage] = ACTIONS(12527), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12527), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12527), + [anon_sym_BSLASHinclude] = ACTIONS(12527), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12527), + [anon_sym_BSLASHinput] = ACTIONS(12527), + [anon_sym_BSLASHsubfile] = ACTIONS(12527), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12527), + [anon_sym_BSLASHbibliography] = ACTIONS(12527), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12527), + [anon_sym_BSLASHincludesvg] = ACTIONS(12527), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12527), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12527), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12527), + [anon_sym_BSLASHimport] = ACTIONS(12527), + [anon_sym_BSLASHsubimport] = ACTIONS(12527), + [anon_sym_BSLASHinputfrom] = ACTIONS(12527), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12527), + [anon_sym_BSLASHincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHlabel] = ACTIONS(12527), + [anon_sym_BSLASHref] = ACTIONS(12527), + [anon_sym_BSLASHvref] = ACTIONS(12527), + [anon_sym_BSLASHVref] = ACTIONS(12527), + [anon_sym_BSLASHautoref] = ACTIONS(12527), + [anon_sym_BSLASHpageref] = ACTIONS(12527), + [anon_sym_BSLASHcref] = ACTIONS(12527), + [anon_sym_BSLASHCref] = ACTIONS(12527), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnameCref] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHlabelcref] = ACTIONS(12527), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12527), + [anon_sym_BSLASHeqref] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange] = ACTIONS(12527), + [anon_sym_BSLASHCrefrange] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewlabel] = ACTIONS(12527), + [anon_sym_BSLASHnewcommand] = ACTIONS(12527), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12527), + [anon_sym_BSLASHgls] = ACTIONS(12527), + [anon_sym_BSLASHGls] = ACTIONS(12527), + [anon_sym_BSLASHGLS] = ACTIONS(12527), + [anon_sym_BSLASHglspl] = ACTIONS(12527), + [anon_sym_BSLASHGlspl] = ACTIONS(12527), + [anon_sym_BSLASHGLSpl] = ACTIONS(12527), + [anon_sym_BSLASHglsdisp] = ACTIONS(12527), + [anon_sym_BSLASHglslink] = ACTIONS(12527), + [anon_sym_BSLASHglstext] = ACTIONS(12527), + [anon_sym_BSLASHGlstext] = ACTIONS(12527), + [anon_sym_BSLASHGLStext] = ACTIONS(12527), + [anon_sym_BSLASHglsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12527), + [anon_sym_BSLASHglsplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSplural] = ACTIONS(12527), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHglsname] = ACTIONS(12527), + [anon_sym_BSLASHGlsname] = ACTIONS(12527), + [anon_sym_BSLASHGLSname] = ACTIONS(12527), + [anon_sym_BSLASHglssymbol] = ACTIONS(12527), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12527), + [anon_sym_BSLASHglsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12527), + [anon_sym_BSLASHglsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12527), + [anon_sym_BSLASHglsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12527), + [anon_sym_BSLASHglsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12527), + [anon_sym_BSLASHglsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12527), + [anon_sym_BSLASHnewacronym] = ACTIONS(12527), + [anon_sym_BSLASHacrshort] = ACTIONS(12527), + [anon_sym_BSLASHAcrshort] = ACTIONS(12527), + [anon_sym_BSLASHACRshort] = ACTIONS(12527), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12527), + [anon_sym_BSLASHacrlong] = ACTIONS(12527), + [anon_sym_BSLASHAcrlong] = ACTIONS(12527), + [anon_sym_BSLASHACRlong] = ACTIONS(12527), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12527), + [anon_sym_BSLASHacrfull] = ACTIONS(12527), + [anon_sym_BSLASHAcrfull] = ACTIONS(12527), + [anon_sym_BSLASHACRfull] = ACTIONS(12527), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12527), + [anon_sym_BSLASHacs] = ACTIONS(12527), + [anon_sym_BSLASHAcs] = ACTIONS(12527), + [anon_sym_BSLASHacsp] = ACTIONS(12527), + [anon_sym_BSLASHAcsp] = ACTIONS(12527), + [anon_sym_BSLASHacl] = ACTIONS(12527), + [anon_sym_BSLASHAcl] = ACTIONS(12527), + [anon_sym_BSLASHaclp] = ACTIONS(12527), + [anon_sym_BSLASHAclp] = ACTIONS(12527), + [anon_sym_BSLASHacf] = ACTIONS(12527), + [anon_sym_BSLASHAcf] = ACTIONS(12527), + [anon_sym_BSLASHacfp] = ACTIONS(12527), + [anon_sym_BSLASHAcfp] = ACTIONS(12527), + [anon_sym_BSLASHac] = ACTIONS(12527), + [anon_sym_BSLASHAc] = ACTIONS(12527), + [anon_sym_BSLASHacp] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12527), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12527), + [anon_sym_BSLASHcolor] = ACTIONS(12527), + [anon_sym_BSLASHcolorbox] = ACTIONS(12527), + [anon_sym_BSLASHtextcolor] = ACTIONS(12527), + [anon_sym_BSLASHpagecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12527), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12527), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12527), + }, + [736] = { + [sym_generic_command_name] = ACTIONS(12531), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12531), + [aux_sym_chapter_token1] = ACTIONS(12531), + [aux_sym_section_token1] = ACTIONS(12531), + [aux_sym_subsection_token1] = ACTIONS(12531), + [aux_sym_subsubsection_token1] = ACTIONS(12531), + [aux_sym_paragraph_token1] = ACTIONS(12531), + [aux_sym_subparagraph_token1] = ACTIONS(12531), + [anon_sym_BSLASHitem] = ACTIONS(12531), + [anon_sym_LBRACK] = ACTIONS(12529), + [anon_sym_LBRACE] = ACTIONS(12529), + [anon_sym_LPAREN] = ACTIONS(12529), + [anon_sym_COMMA] = ACTIONS(12529), + [anon_sym_EQ] = ACTIONS(12529), + [sym_word] = ACTIONS(12529), + [sym_param] = ACTIONS(12529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12529), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12529), + [anon_sym_DOLLAR] = ACTIONS(12531), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12529), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12529), + [anon_sym_BSLASHbegin] = ACTIONS(12531), + [anon_sym_BSLASHcaption] = ACTIONS(12531), + [anon_sym_BSLASHcite] = ACTIONS(12531), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCite] = ACTIONS(12531), + [anon_sym_BSLASHnocite] = ACTIONS(12531), + [anon_sym_BSLASHcitet] = ACTIONS(12531), + [anon_sym_BSLASHcitep] = ACTIONS(12531), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteauthor] = ACTIONS(12531), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12531), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitetitle] = ACTIONS(12531), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteyear] = ACTIONS(12531), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitedate] = ACTIONS(12531), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteurl] = ACTIONS(12531), + [anon_sym_BSLASHfullcite] = ACTIONS(12531), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12531), + [anon_sym_BSLASHcitealt] = ACTIONS(12531), + [anon_sym_BSLASHcitealp] = ACTIONS(12531), + [anon_sym_BSLASHcitetext] = ACTIONS(12531), + [anon_sym_BSLASHparencite] = ACTIONS(12531), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHParencite] = ACTIONS(12531), + [anon_sym_BSLASHfootcite] = ACTIONS(12531), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12531), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12531), + [anon_sym_BSLASHtextcite] = ACTIONS(12531), + [anon_sym_BSLASHTextcite] = ACTIONS(12531), + [anon_sym_BSLASHsmartcite] = ACTIONS(12531), + [anon_sym_BSLASHSmartcite] = ACTIONS(12531), + [anon_sym_BSLASHsupercite] = ACTIONS(12531), + [anon_sym_BSLASHautocite] = ACTIONS(12531), + [anon_sym_BSLASHAutocite] = ACTIONS(12531), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHvolcite] = ACTIONS(12531), + [anon_sym_BSLASHVolcite] = ACTIONS(12531), + [anon_sym_BSLASHpvolcite] = ACTIONS(12531), + [anon_sym_BSLASHPvolcite] = ACTIONS(12531), + [anon_sym_BSLASHfvolcite] = ACTIONS(12531), + [anon_sym_BSLASHftvolcite] = ACTIONS(12531), + [anon_sym_BSLASHsvolcite] = ACTIONS(12531), + [anon_sym_BSLASHSvolcite] = ACTIONS(12531), + [anon_sym_BSLASHtvolcite] = ACTIONS(12531), + [anon_sym_BSLASHTvolcite] = ACTIONS(12531), + [anon_sym_BSLASHavolcite] = ACTIONS(12531), + [anon_sym_BSLASHAvolcite] = ACTIONS(12531), + [anon_sym_BSLASHnotecite] = ACTIONS(12531), + [anon_sym_BSLASHpnotecite] = ACTIONS(12531), + [anon_sym_BSLASHPnotecite] = ACTIONS(12531), + [anon_sym_BSLASHfnotecite] = ACTIONS(12531), + [anon_sym_BSLASHusepackage] = ACTIONS(12531), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12531), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12531), + [anon_sym_BSLASHinclude] = ACTIONS(12531), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12531), + [anon_sym_BSLASHinput] = ACTIONS(12531), + [anon_sym_BSLASHsubfile] = ACTIONS(12531), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12531), + [anon_sym_BSLASHbibliography] = ACTIONS(12531), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12531), + [anon_sym_BSLASHincludesvg] = ACTIONS(12531), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12531), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12531), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12531), + [anon_sym_BSLASHimport] = ACTIONS(12531), + [anon_sym_BSLASHsubimport] = ACTIONS(12531), + [anon_sym_BSLASHinputfrom] = ACTIONS(12531), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12531), + [anon_sym_BSLASHincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHlabel] = ACTIONS(12531), + [anon_sym_BSLASHref] = ACTIONS(12531), + [anon_sym_BSLASHvref] = ACTIONS(12531), + [anon_sym_BSLASHVref] = ACTIONS(12531), + [anon_sym_BSLASHautoref] = ACTIONS(12531), + [anon_sym_BSLASHpageref] = ACTIONS(12531), + [anon_sym_BSLASHcref] = ACTIONS(12531), + [anon_sym_BSLASHCref] = ACTIONS(12531), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnameCref] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHlabelcref] = ACTIONS(12531), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12531), + [anon_sym_BSLASHeqref] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange] = ACTIONS(12531), + [anon_sym_BSLASHCrefrange] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewlabel] = ACTIONS(12531), + [anon_sym_BSLASHnewcommand] = ACTIONS(12531), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12531), + [anon_sym_BSLASHgls] = ACTIONS(12531), + [anon_sym_BSLASHGls] = ACTIONS(12531), + [anon_sym_BSLASHGLS] = ACTIONS(12531), + [anon_sym_BSLASHglspl] = ACTIONS(12531), + [anon_sym_BSLASHGlspl] = ACTIONS(12531), + [anon_sym_BSLASHGLSpl] = ACTIONS(12531), + [anon_sym_BSLASHglsdisp] = ACTIONS(12531), + [anon_sym_BSLASHglslink] = ACTIONS(12531), + [anon_sym_BSLASHglstext] = ACTIONS(12531), + [anon_sym_BSLASHGlstext] = ACTIONS(12531), + [anon_sym_BSLASHGLStext] = ACTIONS(12531), + [anon_sym_BSLASHglsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12531), + [anon_sym_BSLASHglsplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSplural] = ACTIONS(12531), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHglsname] = ACTIONS(12531), + [anon_sym_BSLASHGlsname] = ACTIONS(12531), + [anon_sym_BSLASHGLSname] = ACTIONS(12531), + [anon_sym_BSLASHglssymbol] = ACTIONS(12531), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12531), + [anon_sym_BSLASHglsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12531), + [anon_sym_BSLASHglsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12531), + [anon_sym_BSLASHglsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12531), + [anon_sym_BSLASHglsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12531), + [anon_sym_BSLASHglsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12531), + [anon_sym_BSLASHnewacronym] = ACTIONS(12531), + [anon_sym_BSLASHacrshort] = ACTIONS(12531), + [anon_sym_BSLASHAcrshort] = ACTIONS(12531), + [anon_sym_BSLASHACRshort] = ACTIONS(12531), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12531), + [anon_sym_BSLASHacrlong] = ACTIONS(12531), + [anon_sym_BSLASHAcrlong] = ACTIONS(12531), + [anon_sym_BSLASHACRlong] = ACTIONS(12531), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12531), + [anon_sym_BSLASHacrfull] = ACTIONS(12531), + [anon_sym_BSLASHAcrfull] = ACTIONS(12531), + [anon_sym_BSLASHACRfull] = ACTIONS(12531), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12531), + [anon_sym_BSLASHacs] = ACTIONS(12531), + [anon_sym_BSLASHAcs] = ACTIONS(12531), + [anon_sym_BSLASHacsp] = ACTIONS(12531), + [anon_sym_BSLASHAcsp] = ACTIONS(12531), + [anon_sym_BSLASHacl] = ACTIONS(12531), + [anon_sym_BSLASHAcl] = ACTIONS(12531), + [anon_sym_BSLASHaclp] = ACTIONS(12531), + [anon_sym_BSLASHAclp] = ACTIONS(12531), + [anon_sym_BSLASHacf] = ACTIONS(12531), + [anon_sym_BSLASHAcf] = ACTIONS(12531), + [anon_sym_BSLASHacfp] = ACTIONS(12531), + [anon_sym_BSLASHAcfp] = ACTIONS(12531), + [anon_sym_BSLASHac] = ACTIONS(12531), + [anon_sym_BSLASHAc] = ACTIONS(12531), + [anon_sym_BSLASHacp] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12531), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12531), + [anon_sym_BSLASHcolor] = ACTIONS(12531), + [anon_sym_BSLASHcolorbox] = ACTIONS(12531), + [anon_sym_BSLASHtextcolor] = ACTIONS(12531), + [anon_sym_BSLASHpagecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12531), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12531), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12531), + }, + [737] = { + [sym_generic_command_name] = ACTIONS(12539), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12539), + [aux_sym_chapter_token1] = ACTIONS(12539), + [aux_sym_section_token1] = ACTIONS(12539), + [aux_sym_subsection_token1] = ACTIONS(12539), + [aux_sym_subsubsection_token1] = ACTIONS(12539), + [aux_sym_paragraph_token1] = ACTIONS(12539), + [aux_sym_subparagraph_token1] = ACTIONS(12539), + [anon_sym_BSLASHitem] = ACTIONS(12539), + [anon_sym_LBRACK] = ACTIONS(12537), + [anon_sym_LBRACE] = ACTIONS(12537), + [anon_sym_LPAREN] = ACTIONS(12537), + [anon_sym_COMMA] = ACTIONS(12537), + [anon_sym_EQ] = ACTIONS(12537), + [sym_word] = ACTIONS(12537), + [sym_param] = ACTIONS(12537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12537), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12537), + [anon_sym_DOLLAR] = ACTIONS(12539), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12537), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12537), + [anon_sym_BSLASHbegin] = ACTIONS(12539), + [anon_sym_BSLASHcaption] = ACTIONS(12539), + [anon_sym_BSLASHcite] = ACTIONS(12539), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCite] = ACTIONS(12539), + [anon_sym_BSLASHnocite] = ACTIONS(12539), + [anon_sym_BSLASHcitet] = ACTIONS(12539), + [anon_sym_BSLASHcitep] = ACTIONS(12539), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteauthor] = ACTIONS(12539), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12539), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitetitle] = ACTIONS(12539), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteyear] = ACTIONS(12539), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitedate] = ACTIONS(12539), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteurl] = ACTIONS(12539), + [anon_sym_BSLASHfullcite] = ACTIONS(12539), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12539), + [anon_sym_BSLASHcitealt] = ACTIONS(12539), + [anon_sym_BSLASHcitealp] = ACTIONS(12539), + [anon_sym_BSLASHcitetext] = ACTIONS(12539), + [anon_sym_BSLASHparencite] = ACTIONS(12539), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHParencite] = ACTIONS(12539), + [anon_sym_BSLASHfootcite] = ACTIONS(12539), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12539), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12539), + [anon_sym_BSLASHtextcite] = ACTIONS(12539), + [anon_sym_BSLASHTextcite] = ACTIONS(12539), + [anon_sym_BSLASHsmartcite] = ACTIONS(12539), + [anon_sym_BSLASHSmartcite] = ACTIONS(12539), + [anon_sym_BSLASHsupercite] = ACTIONS(12539), + [anon_sym_BSLASHautocite] = ACTIONS(12539), + [anon_sym_BSLASHAutocite] = ACTIONS(12539), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHvolcite] = ACTIONS(12539), + [anon_sym_BSLASHVolcite] = ACTIONS(12539), + [anon_sym_BSLASHpvolcite] = ACTIONS(12539), + [anon_sym_BSLASHPvolcite] = ACTIONS(12539), + [anon_sym_BSLASHfvolcite] = ACTIONS(12539), + [anon_sym_BSLASHftvolcite] = ACTIONS(12539), + [anon_sym_BSLASHsvolcite] = ACTIONS(12539), + [anon_sym_BSLASHSvolcite] = ACTIONS(12539), + [anon_sym_BSLASHtvolcite] = ACTIONS(12539), + [anon_sym_BSLASHTvolcite] = ACTIONS(12539), + [anon_sym_BSLASHavolcite] = ACTIONS(12539), + [anon_sym_BSLASHAvolcite] = ACTIONS(12539), + [anon_sym_BSLASHnotecite] = ACTIONS(12539), + [anon_sym_BSLASHpnotecite] = ACTIONS(12539), + [anon_sym_BSLASHPnotecite] = ACTIONS(12539), + [anon_sym_BSLASHfnotecite] = ACTIONS(12539), + [anon_sym_BSLASHusepackage] = ACTIONS(12539), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12539), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12539), + [anon_sym_BSLASHinclude] = ACTIONS(12539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12539), + [anon_sym_BSLASHinput] = ACTIONS(12539), + [anon_sym_BSLASHsubfile] = ACTIONS(12539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12539), + [anon_sym_BSLASHbibliography] = ACTIONS(12539), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12539), + [anon_sym_BSLASHincludesvg] = ACTIONS(12539), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12539), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12539), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12539), + [anon_sym_BSLASHimport] = ACTIONS(12539), + [anon_sym_BSLASHsubimport] = ACTIONS(12539), + [anon_sym_BSLASHinputfrom] = ACTIONS(12539), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12539), + [anon_sym_BSLASHincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHlabel] = ACTIONS(12539), + [anon_sym_BSLASHref] = ACTIONS(12539), + [anon_sym_BSLASHvref] = ACTIONS(12539), + [anon_sym_BSLASHVref] = ACTIONS(12539), + [anon_sym_BSLASHautoref] = ACTIONS(12539), + [anon_sym_BSLASHpageref] = ACTIONS(12539), + [anon_sym_BSLASHcref] = ACTIONS(12539), + [anon_sym_BSLASHCref] = ACTIONS(12539), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnameCref] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHlabelcref] = ACTIONS(12539), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12539), + [anon_sym_BSLASHeqref] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange] = ACTIONS(12539), + [anon_sym_BSLASHCrefrange] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewlabel] = ACTIONS(12539), + [anon_sym_BSLASHnewcommand] = ACTIONS(12539), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12539), + [anon_sym_BSLASHgls] = ACTIONS(12539), + [anon_sym_BSLASHGls] = ACTIONS(12539), + [anon_sym_BSLASHGLS] = ACTIONS(12539), + [anon_sym_BSLASHglspl] = ACTIONS(12539), + [anon_sym_BSLASHGlspl] = ACTIONS(12539), + [anon_sym_BSLASHGLSpl] = ACTIONS(12539), + [anon_sym_BSLASHglsdisp] = ACTIONS(12539), + [anon_sym_BSLASHglslink] = ACTIONS(12539), + [anon_sym_BSLASHglstext] = ACTIONS(12539), + [anon_sym_BSLASHGlstext] = ACTIONS(12539), + [anon_sym_BSLASHGLStext] = ACTIONS(12539), + [anon_sym_BSLASHglsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12539), + [anon_sym_BSLASHglsplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSplural] = ACTIONS(12539), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHglsname] = ACTIONS(12539), + [anon_sym_BSLASHGlsname] = ACTIONS(12539), + [anon_sym_BSLASHGLSname] = ACTIONS(12539), + [anon_sym_BSLASHglssymbol] = ACTIONS(12539), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12539), + [anon_sym_BSLASHglsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12539), + [anon_sym_BSLASHglsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12539), + [anon_sym_BSLASHglsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12539), + [anon_sym_BSLASHglsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12539), + [anon_sym_BSLASHglsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12539), + [anon_sym_BSLASHnewacronym] = ACTIONS(12539), + [anon_sym_BSLASHacrshort] = ACTIONS(12539), + [anon_sym_BSLASHAcrshort] = ACTIONS(12539), + [anon_sym_BSLASHACRshort] = ACTIONS(12539), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12539), + [anon_sym_BSLASHacrlong] = ACTIONS(12539), + [anon_sym_BSLASHAcrlong] = ACTIONS(12539), + [anon_sym_BSLASHACRlong] = ACTIONS(12539), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12539), + [anon_sym_BSLASHacrfull] = ACTIONS(12539), + [anon_sym_BSLASHAcrfull] = ACTIONS(12539), + [anon_sym_BSLASHACRfull] = ACTIONS(12539), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12539), + [anon_sym_BSLASHacs] = ACTIONS(12539), + [anon_sym_BSLASHAcs] = ACTIONS(12539), + [anon_sym_BSLASHacsp] = ACTIONS(12539), + [anon_sym_BSLASHAcsp] = ACTIONS(12539), + [anon_sym_BSLASHacl] = ACTIONS(12539), + [anon_sym_BSLASHAcl] = ACTIONS(12539), + [anon_sym_BSLASHaclp] = ACTIONS(12539), + [anon_sym_BSLASHAclp] = ACTIONS(12539), + [anon_sym_BSLASHacf] = ACTIONS(12539), + [anon_sym_BSLASHAcf] = ACTIONS(12539), + [anon_sym_BSLASHacfp] = ACTIONS(12539), + [anon_sym_BSLASHAcfp] = ACTIONS(12539), + [anon_sym_BSLASHac] = ACTIONS(12539), + [anon_sym_BSLASHAc] = ACTIONS(12539), + [anon_sym_BSLASHacp] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12539), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12539), + [anon_sym_BSLASHcolor] = ACTIONS(12539), + [anon_sym_BSLASHcolorbox] = ACTIONS(12539), + [anon_sym_BSLASHtextcolor] = ACTIONS(12539), + [anon_sym_BSLASHpagecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12539), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12539), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12539), + }, + [738] = { + [sym_generic_command_name] = ACTIONS(12543), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12543), + [aux_sym_chapter_token1] = ACTIONS(12543), + [aux_sym_section_token1] = ACTIONS(12543), + [aux_sym_subsection_token1] = ACTIONS(12543), + [aux_sym_subsubsection_token1] = ACTIONS(12543), + [aux_sym_paragraph_token1] = ACTIONS(12543), + [aux_sym_subparagraph_token1] = ACTIONS(12543), + [anon_sym_BSLASHitem] = ACTIONS(12543), + [anon_sym_LBRACK] = ACTIONS(12541), + [anon_sym_LBRACE] = ACTIONS(12541), + [anon_sym_LPAREN] = ACTIONS(12541), + [anon_sym_COMMA] = ACTIONS(12541), + [anon_sym_EQ] = ACTIONS(12541), + [sym_word] = ACTIONS(12541), + [sym_param] = ACTIONS(12541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12541), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12541), + [anon_sym_DOLLAR] = ACTIONS(12543), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12541), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12541), + [anon_sym_BSLASHbegin] = ACTIONS(12543), + [anon_sym_BSLASHcaption] = ACTIONS(12543), + [anon_sym_BSLASHcite] = ACTIONS(12543), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCite] = ACTIONS(12543), + [anon_sym_BSLASHnocite] = ACTIONS(12543), + [anon_sym_BSLASHcitet] = ACTIONS(12543), + [anon_sym_BSLASHcitep] = ACTIONS(12543), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteauthor] = ACTIONS(12543), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12543), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitetitle] = ACTIONS(12543), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteyear] = ACTIONS(12543), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitedate] = ACTIONS(12543), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteurl] = ACTIONS(12543), + [anon_sym_BSLASHfullcite] = ACTIONS(12543), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12543), + [anon_sym_BSLASHcitealt] = ACTIONS(12543), + [anon_sym_BSLASHcitealp] = ACTIONS(12543), + [anon_sym_BSLASHcitetext] = ACTIONS(12543), + [anon_sym_BSLASHparencite] = ACTIONS(12543), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHParencite] = ACTIONS(12543), + [anon_sym_BSLASHfootcite] = ACTIONS(12543), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12543), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12543), + [anon_sym_BSLASHtextcite] = ACTIONS(12543), + [anon_sym_BSLASHTextcite] = ACTIONS(12543), + [anon_sym_BSLASHsmartcite] = ACTIONS(12543), + [anon_sym_BSLASHSmartcite] = ACTIONS(12543), + [anon_sym_BSLASHsupercite] = ACTIONS(12543), + [anon_sym_BSLASHautocite] = ACTIONS(12543), + [anon_sym_BSLASHAutocite] = ACTIONS(12543), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHvolcite] = ACTIONS(12543), + [anon_sym_BSLASHVolcite] = ACTIONS(12543), + [anon_sym_BSLASHpvolcite] = ACTIONS(12543), + [anon_sym_BSLASHPvolcite] = ACTIONS(12543), + [anon_sym_BSLASHfvolcite] = ACTIONS(12543), + [anon_sym_BSLASHftvolcite] = ACTIONS(12543), + [anon_sym_BSLASHsvolcite] = ACTIONS(12543), + [anon_sym_BSLASHSvolcite] = ACTIONS(12543), + [anon_sym_BSLASHtvolcite] = ACTIONS(12543), + [anon_sym_BSLASHTvolcite] = ACTIONS(12543), + [anon_sym_BSLASHavolcite] = ACTIONS(12543), + [anon_sym_BSLASHAvolcite] = ACTIONS(12543), + [anon_sym_BSLASHnotecite] = ACTIONS(12543), + [anon_sym_BSLASHpnotecite] = ACTIONS(12543), + [anon_sym_BSLASHPnotecite] = ACTIONS(12543), + [anon_sym_BSLASHfnotecite] = ACTIONS(12543), + [anon_sym_BSLASHusepackage] = ACTIONS(12543), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12543), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12543), + [anon_sym_BSLASHinclude] = ACTIONS(12543), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12543), + [anon_sym_BSLASHinput] = ACTIONS(12543), + [anon_sym_BSLASHsubfile] = ACTIONS(12543), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12543), + [anon_sym_BSLASHbibliography] = ACTIONS(12543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12543), + [anon_sym_BSLASHincludesvg] = ACTIONS(12543), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12543), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12543), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12543), + [anon_sym_BSLASHimport] = ACTIONS(12543), + [anon_sym_BSLASHsubimport] = ACTIONS(12543), + [anon_sym_BSLASHinputfrom] = ACTIONS(12543), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12543), + [anon_sym_BSLASHincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHlabel] = ACTIONS(12543), + [anon_sym_BSLASHref] = ACTIONS(12543), + [anon_sym_BSLASHvref] = ACTIONS(12543), + [anon_sym_BSLASHVref] = ACTIONS(12543), + [anon_sym_BSLASHautoref] = ACTIONS(12543), + [anon_sym_BSLASHpageref] = ACTIONS(12543), + [anon_sym_BSLASHcref] = ACTIONS(12543), + [anon_sym_BSLASHCref] = ACTIONS(12543), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnameCref] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHlabelcref] = ACTIONS(12543), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12543), + [anon_sym_BSLASHeqref] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange] = ACTIONS(12543), + [anon_sym_BSLASHCrefrange] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewlabel] = ACTIONS(12543), + [anon_sym_BSLASHnewcommand] = ACTIONS(12543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12543), + [anon_sym_BSLASHgls] = ACTIONS(12543), + [anon_sym_BSLASHGls] = ACTIONS(12543), + [anon_sym_BSLASHGLS] = ACTIONS(12543), + [anon_sym_BSLASHglspl] = ACTIONS(12543), + [anon_sym_BSLASHGlspl] = ACTIONS(12543), + [anon_sym_BSLASHGLSpl] = ACTIONS(12543), + [anon_sym_BSLASHglsdisp] = ACTIONS(12543), + [anon_sym_BSLASHglslink] = ACTIONS(12543), + [anon_sym_BSLASHglstext] = ACTIONS(12543), + [anon_sym_BSLASHGlstext] = ACTIONS(12543), + [anon_sym_BSLASHGLStext] = ACTIONS(12543), + [anon_sym_BSLASHglsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12543), + [anon_sym_BSLASHglsplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSplural] = ACTIONS(12543), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHglsname] = ACTIONS(12543), + [anon_sym_BSLASHGlsname] = ACTIONS(12543), + [anon_sym_BSLASHGLSname] = ACTIONS(12543), + [anon_sym_BSLASHglssymbol] = ACTIONS(12543), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12543), + [anon_sym_BSLASHglsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12543), + [anon_sym_BSLASHglsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12543), + [anon_sym_BSLASHglsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12543), + [anon_sym_BSLASHglsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12543), + [anon_sym_BSLASHglsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12543), + [anon_sym_BSLASHnewacronym] = ACTIONS(12543), + [anon_sym_BSLASHacrshort] = ACTIONS(12543), + [anon_sym_BSLASHAcrshort] = ACTIONS(12543), + [anon_sym_BSLASHACRshort] = ACTIONS(12543), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12543), + [anon_sym_BSLASHacrlong] = ACTIONS(12543), + [anon_sym_BSLASHAcrlong] = ACTIONS(12543), + [anon_sym_BSLASHACRlong] = ACTIONS(12543), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12543), + [anon_sym_BSLASHacrfull] = ACTIONS(12543), + [anon_sym_BSLASHAcrfull] = ACTIONS(12543), + [anon_sym_BSLASHACRfull] = ACTIONS(12543), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12543), + [anon_sym_BSLASHacs] = ACTIONS(12543), + [anon_sym_BSLASHAcs] = ACTIONS(12543), + [anon_sym_BSLASHacsp] = ACTIONS(12543), + [anon_sym_BSLASHAcsp] = ACTIONS(12543), + [anon_sym_BSLASHacl] = ACTIONS(12543), + [anon_sym_BSLASHAcl] = ACTIONS(12543), + [anon_sym_BSLASHaclp] = ACTIONS(12543), + [anon_sym_BSLASHAclp] = ACTIONS(12543), + [anon_sym_BSLASHacf] = ACTIONS(12543), + [anon_sym_BSLASHAcf] = ACTIONS(12543), + [anon_sym_BSLASHacfp] = ACTIONS(12543), + [anon_sym_BSLASHAcfp] = ACTIONS(12543), + [anon_sym_BSLASHac] = ACTIONS(12543), + [anon_sym_BSLASHAc] = ACTIONS(12543), + [anon_sym_BSLASHacp] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12543), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12543), + [anon_sym_BSLASHcolor] = ACTIONS(12543), + [anon_sym_BSLASHcolorbox] = ACTIONS(12543), + [anon_sym_BSLASHtextcolor] = ACTIONS(12543), + [anon_sym_BSLASHpagecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12543), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12543), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12543), + }, + [739] = { + [sym_generic_command_name] = ACTIONS(12104), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12104), + [aux_sym_chapter_token1] = ACTIONS(12104), + [aux_sym_section_token1] = ACTIONS(12104), + [aux_sym_subsection_token1] = ACTIONS(12104), + [aux_sym_subsubsection_token1] = ACTIONS(12104), + [aux_sym_paragraph_token1] = ACTIONS(12104), + [aux_sym_subparagraph_token1] = ACTIONS(12104), + [anon_sym_BSLASHitem] = ACTIONS(12104), + [anon_sym_LBRACK] = ACTIONS(12102), + [anon_sym_LBRACE] = ACTIONS(12102), + [anon_sym_LPAREN] = ACTIONS(12102), + [anon_sym_COMMA] = ACTIONS(12102), + [anon_sym_EQ] = ACTIONS(12102), + [sym_word] = ACTIONS(12102), + [sym_param] = ACTIONS(12102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12102), + [anon_sym_DOLLAR] = ACTIONS(12104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12102), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12102), + [anon_sym_BSLASHbegin] = ACTIONS(12104), + [anon_sym_BSLASHcaption] = ACTIONS(12104), + [anon_sym_BSLASHcite] = ACTIONS(12104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCite] = ACTIONS(12104), + [anon_sym_BSLASHnocite] = ACTIONS(12104), + [anon_sym_BSLASHcitet] = ACTIONS(12104), + [anon_sym_BSLASHcitep] = ACTIONS(12104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteauthor] = ACTIONS(12104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitetitle] = ACTIONS(12104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteyear] = ACTIONS(12104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitedate] = ACTIONS(12104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteurl] = ACTIONS(12104), + [anon_sym_BSLASHfullcite] = ACTIONS(12104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12104), + [anon_sym_BSLASHcitealt] = ACTIONS(12104), + [anon_sym_BSLASHcitealp] = ACTIONS(12104), + [anon_sym_BSLASHcitetext] = ACTIONS(12104), + [anon_sym_BSLASHparencite] = ACTIONS(12104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHParencite] = ACTIONS(12104), + [anon_sym_BSLASHfootcite] = ACTIONS(12104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12104), + [anon_sym_BSLASHtextcite] = ACTIONS(12104), + [anon_sym_BSLASHTextcite] = ACTIONS(12104), + [anon_sym_BSLASHsmartcite] = ACTIONS(12104), + [anon_sym_BSLASHSmartcite] = ACTIONS(12104), + [anon_sym_BSLASHsupercite] = ACTIONS(12104), + [anon_sym_BSLASHautocite] = ACTIONS(12104), + [anon_sym_BSLASHAutocite] = ACTIONS(12104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHvolcite] = ACTIONS(12104), + [anon_sym_BSLASHVolcite] = ACTIONS(12104), + [anon_sym_BSLASHpvolcite] = ACTIONS(12104), + [anon_sym_BSLASHPvolcite] = ACTIONS(12104), + [anon_sym_BSLASHfvolcite] = ACTIONS(12104), + [anon_sym_BSLASHftvolcite] = ACTIONS(12104), + [anon_sym_BSLASHsvolcite] = ACTIONS(12104), + [anon_sym_BSLASHSvolcite] = ACTIONS(12104), + [anon_sym_BSLASHtvolcite] = ACTIONS(12104), + [anon_sym_BSLASHTvolcite] = ACTIONS(12104), + [anon_sym_BSLASHavolcite] = ACTIONS(12104), + [anon_sym_BSLASHAvolcite] = ACTIONS(12104), + [anon_sym_BSLASHnotecite] = ACTIONS(12104), + [anon_sym_BSLASHpnotecite] = ACTIONS(12104), + [anon_sym_BSLASHPnotecite] = ACTIONS(12104), + [anon_sym_BSLASHfnotecite] = ACTIONS(12104), + [anon_sym_BSLASHusepackage] = ACTIONS(12104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12104), + [anon_sym_BSLASHinclude] = ACTIONS(12104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12104), + [anon_sym_BSLASHinput] = ACTIONS(12104), + [anon_sym_BSLASHsubfile] = ACTIONS(12104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12104), + [anon_sym_BSLASHbibliography] = ACTIONS(12104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12104), + [anon_sym_BSLASHincludesvg] = ACTIONS(12104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12104), + [anon_sym_BSLASHimport] = ACTIONS(12104), + [anon_sym_BSLASHsubimport] = ACTIONS(12104), + [anon_sym_BSLASHinputfrom] = ACTIONS(12104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12104), + [anon_sym_BSLASHincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHlabel] = ACTIONS(12104), + [anon_sym_BSLASHref] = ACTIONS(12104), + [anon_sym_BSLASHvref] = ACTIONS(12104), + [anon_sym_BSLASHVref] = ACTIONS(12104), + [anon_sym_BSLASHautoref] = ACTIONS(12104), + [anon_sym_BSLASHpageref] = ACTIONS(12104), + [anon_sym_BSLASHcref] = ACTIONS(12104), + [anon_sym_BSLASHCref] = ACTIONS(12104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnameCref] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHlabelcref] = ACTIONS(12104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12104), + [anon_sym_BSLASHeqref] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange] = ACTIONS(12104), + [anon_sym_BSLASHCrefrange] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewlabel] = ACTIONS(12104), + [anon_sym_BSLASHnewcommand] = ACTIONS(12104), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12104), + [anon_sym_BSLASHgls] = ACTIONS(12104), + [anon_sym_BSLASHGls] = ACTIONS(12104), + [anon_sym_BSLASHGLS] = ACTIONS(12104), + [anon_sym_BSLASHglspl] = ACTIONS(12104), + [anon_sym_BSLASHGlspl] = ACTIONS(12104), + [anon_sym_BSLASHGLSpl] = ACTIONS(12104), + [anon_sym_BSLASHglsdisp] = ACTIONS(12104), + [anon_sym_BSLASHglslink] = ACTIONS(12104), + [anon_sym_BSLASHglstext] = ACTIONS(12104), + [anon_sym_BSLASHGlstext] = ACTIONS(12104), + [anon_sym_BSLASHGLStext] = ACTIONS(12104), + [anon_sym_BSLASHglsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12104), + [anon_sym_BSLASHglsplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSplural] = ACTIONS(12104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHglsname] = ACTIONS(12104), + [anon_sym_BSLASHGlsname] = ACTIONS(12104), + [anon_sym_BSLASHGLSname] = ACTIONS(12104), + [anon_sym_BSLASHglssymbol] = ACTIONS(12104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12104), + [anon_sym_BSLASHglsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12104), + [anon_sym_BSLASHglsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12104), + [anon_sym_BSLASHglsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12104), + [anon_sym_BSLASHglsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12104), + [anon_sym_BSLASHglsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12104), + [anon_sym_BSLASHnewacronym] = ACTIONS(12104), + [anon_sym_BSLASHacrshort] = ACTIONS(12104), + [anon_sym_BSLASHAcrshort] = ACTIONS(12104), + [anon_sym_BSLASHACRshort] = ACTIONS(12104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12104), + [anon_sym_BSLASHacrlong] = ACTIONS(12104), + [anon_sym_BSLASHAcrlong] = ACTIONS(12104), + [anon_sym_BSLASHACRlong] = ACTIONS(12104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12104), + [anon_sym_BSLASHacrfull] = ACTIONS(12104), + [anon_sym_BSLASHAcrfull] = ACTIONS(12104), + [anon_sym_BSLASHACRfull] = ACTIONS(12104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12104), + [anon_sym_BSLASHacs] = ACTIONS(12104), + [anon_sym_BSLASHAcs] = ACTIONS(12104), + [anon_sym_BSLASHacsp] = ACTIONS(12104), + [anon_sym_BSLASHAcsp] = ACTIONS(12104), + [anon_sym_BSLASHacl] = ACTIONS(12104), + [anon_sym_BSLASHAcl] = ACTIONS(12104), + [anon_sym_BSLASHaclp] = ACTIONS(12104), + [anon_sym_BSLASHAclp] = ACTIONS(12104), + [anon_sym_BSLASHacf] = ACTIONS(12104), + [anon_sym_BSLASHAcf] = ACTIONS(12104), + [anon_sym_BSLASHacfp] = ACTIONS(12104), + [anon_sym_BSLASHAcfp] = ACTIONS(12104), + [anon_sym_BSLASHac] = ACTIONS(12104), + [anon_sym_BSLASHAc] = ACTIONS(12104), + [anon_sym_BSLASHacp] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12104), + [anon_sym_BSLASHcolor] = ACTIONS(12104), + [anon_sym_BSLASHcolorbox] = ACTIONS(12104), + [anon_sym_BSLASHtextcolor] = ACTIONS(12104), + [anon_sym_BSLASHpagecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12104), + }, + [740] = { + [sym_generic_command_name] = ACTIONS(12323), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12323), + [aux_sym_chapter_token1] = ACTIONS(12323), + [aux_sym_section_token1] = ACTIONS(12323), + [aux_sym_subsection_token1] = ACTIONS(12323), + [aux_sym_subsubsection_token1] = ACTIONS(12323), + [aux_sym_paragraph_token1] = ACTIONS(12323), + [aux_sym_subparagraph_token1] = ACTIONS(12323), + [anon_sym_BSLASHitem] = ACTIONS(12323), + [anon_sym_LBRACK] = ACTIONS(12321), + [anon_sym_LBRACE] = ACTIONS(12321), + [anon_sym_LPAREN] = ACTIONS(12321), + [anon_sym_COMMA] = ACTIONS(12321), + [anon_sym_EQ] = ACTIONS(12321), + [sym_word] = ACTIONS(12321), + [sym_param] = ACTIONS(12321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12321), + [anon_sym_DOLLAR] = ACTIONS(12323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12321), + [anon_sym_BSLASHbegin] = ACTIONS(12323), + [anon_sym_BSLASHend] = ACTIONS(12323), + [anon_sym_BSLASHcaption] = ACTIONS(12323), + [anon_sym_BSLASHcite] = ACTIONS(12323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCite] = ACTIONS(12323), + [anon_sym_BSLASHnocite] = ACTIONS(12323), + [anon_sym_BSLASHcitet] = ACTIONS(12323), + [anon_sym_BSLASHcitep] = ACTIONS(12323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteauthor] = ACTIONS(12323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitetitle] = ACTIONS(12323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteyear] = ACTIONS(12323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitedate] = ACTIONS(12323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteurl] = ACTIONS(12323), + [anon_sym_BSLASHfullcite] = ACTIONS(12323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12323), + [anon_sym_BSLASHcitealt] = ACTIONS(12323), + [anon_sym_BSLASHcitealp] = ACTIONS(12323), + [anon_sym_BSLASHcitetext] = ACTIONS(12323), + [anon_sym_BSLASHparencite] = ACTIONS(12323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHParencite] = ACTIONS(12323), + [anon_sym_BSLASHfootcite] = ACTIONS(12323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12323), + [anon_sym_BSLASHtextcite] = ACTIONS(12323), + [anon_sym_BSLASHTextcite] = ACTIONS(12323), + [anon_sym_BSLASHsmartcite] = ACTIONS(12323), + [anon_sym_BSLASHSmartcite] = ACTIONS(12323), + [anon_sym_BSLASHsupercite] = ACTIONS(12323), + [anon_sym_BSLASHautocite] = ACTIONS(12323), + [anon_sym_BSLASHAutocite] = ACTIONS(12323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHvolcite] = ACTIONS(12323), + [anon_sym_BSLASHVolcite] = ACTIONS(12323), + [anon_sym_BSLASHpvolcite] = ACTIONS(12323), + [anon_sym_BSLASHPvolcite] = ACTIONS(12323), + [anon_sym_BSLASHfvolcite] = ACTIONS(12323), + [anon_sym_BSLASHftvolcite] = ACTIONS(12323), + [anon_sym_BSLASHsvolcite] = ACTIONS(12323), + [anon_sym_BSLASHSvolcite] = ACTIONS(12323), + [anon_sym_BSLASHtvolcite] = ACTIONS(12323), + [anon_sym_BSLASHTvolcite] = ACTIONS(12323), + [anon_sym_BSLASHavolcite] = ACTIONS(12323), + [anon_sym_BSLASHAvolcite] = ACTIONS(12323), + [anon_sym_BSLASHnotecite] = ACTIONS(12323), + [anon_sym_BSLASHpnotecite] = ACTIONS(12323), + [anon_sym_BSLASHPnotecite] = ACTIONS(12323), + [anon_sym_BSLASHfnotecite] = ACTIONS(12323), + [anon_sym_BSLASHusepackage] = ACTIONS(12323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12323), + [anon_sym_BSLASHinclude] = ACTIONS(12323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12323), + [anon_sym_BSLASHinput] = ACTIONS(12323), + [anon_sym_BSLASHsubfile] = ACTIONS(12323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12323), + [anon_sym_BSLASHbibliography] = ACTIONS(12323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12323), + [anon_sym_BSLASHincludesvg] = ACTIONS(12323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12323), + [anon_sym_BSLASHimport] = ACTIONS(12323), + [anon_sym_BSLASHsubimport] = ACTIONS(12323), + [anon_sym_BSLASHinputfrom] = ACTIONS(12323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12323), + [anon_sym_BSLASHincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHlabel] = ACTIONS(12323), + [anon_sym_BSLASHref] = ACTIONS(12323), + [anon_sym_BSLASHvref] = ACTIONS(12323), + [anon_sym_BSLASHVref] = ACTIONS(12323), + [anon_sym_BSLASHautoref] = ACTIONS(12323), + [anon_sym_BSLASHpageref] = ACTIONS(12323), + [anon_sym_BSLASHcref] = ACTIONS(12323), + [anon_sym_BSLASHCref] = ACTIONS(12323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnameCref] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHlabelcref] = ACTIONS(12323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12323), + [anon_sym_BSLASHeqref] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange] = ACTIONS(12323), + [anon_sym_BSLASHCrefrange] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewlabel] = ACTIONS(12323), + [anon_sym_BSLASHnewcommand] = ACTIONS(12323), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12323), + [anon_sym_BSLASHgls] = ACTIONS(12323), + [anon_sym_BSLASHGls] = ACTIONS(12323), + [anon_sym_BSLASHGLS] = ACTIONS(12323), + [anon_sym_BSLASHglspl] = ACTIONS(12323), + [anon_sym_BSLASHGlspl] = ACTIONS(12323), + [anon_sym_BSLASHGLSpl] = ACTIONS(12323), + [anon_sym_BSLASHglsdisp] = ACTIONS(12323), + [anon_sym_BSLASHglslink] = ACTIONS(12323), + [anon_sym_BSLASHglstext] = ACTIONS(12323), + [anon_sym_BSLASHGlstext] = ACTIONS(12323), + [anon_sym_BSLASHGLStext] = ACTIONS(12323), + [anon_sym_BSLASHglsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12323), + [anon_sym_BSLASHglsplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSplural] = ACTIONS(12323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHglsname] = ACTIONS(12323), + [anon_sym_BSLASHGlsname] = ACTIONS(12323), + [anon_sym_BSLASHGLSname] = ACTIONS(12323), + [anon_sym_BSLASHglssymbol] = ACTIONS(12323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12323), + [anon_sym_BSLASHglsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12323), + [anon_sym_BSLASHglsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12323), + [anon_sym_BSLASHglsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12323), + [anon_sym_BSLASHglsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12323), + [anon_sym_BSLASHglsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12323), + [anon_sym_BSLASHnewacronym] = ACTIONS(12323), + [anon_sym_BSLASHacrshort] = ACTIONS(12323), + [anon_sym_BSLASHAcrshort] = ACTIONS(12323), + [anon_sym_BSLASHACRshort] = ACTIONS(12323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12323), + [anon_sym_BSLASHacrlong] = ACTIONS(12323), + [anon_sym_BSLASHAcrlong] = ACTIONS(12323), + [anon_sym_BSLASHACRlong] = ACTIONS(12323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12323), + [anon_sym_BSLASHacrfull] = ACTIONS(12323), + [anon_sym_BSLASHAcrfull] = ACTIONS(12323), + [anon_sym_BSLASHACRfull] = ACTIONS(12323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12323), + [anon_sym_BSLASHacs] = ACTIONS(12323), + [anon_sym_BSLASHAcs] = ACTIONS(12323), + [anon_sym_BSLASHacsp] = ACTIONS(12323), + [anon_sym_BSLASHAcsp] = ACTIONS(12323), + [anon_sym_BSLASHacl] = ACTIONS(12323), + [anon_sym_BSLASHAcl] = ACTIONS(12323), + [anon_sym_BSLASHaclp] = ACTIONS(12323), + [anon_sym_BSLASHAclp] = ACTIONS(12323), + [anon_sym_BSLASHacf] = ACTIONS(12323), + [anon_sym_BSLASHAcf] = ACTIONS(12323), + [anon_sym_BSLASHacfp] = ACTIONS(12323), + [anon_sym_BSLASHAcfp] = ACTIONS(12323), + [anon_sym_BSLASHac] = ACTIONS(12323), + [anon_sym_BSLASHAc] = ACTIONS(12323), + [anon_sym_BSLASHacp] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12323), + [anon_sym_BSLASHcolor] = ACTIONS(12323), + [anon_sym_BSLASHcolorbox] = ACTIONS(12323), + [anon_sym_BSLASHtextcolor] = ACTIONS(12323), + [anon_sym_BSLASHpagecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12323), + }, + [741] = { + [sym_generic_command_name] = ACTIONS(12349), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12349), + [aux_sym_chapter_token1] = ACTIONS(12349), + [aux_sym_section_token1] = ACTIONS(12349), + [aux_sym_subsection_token1] = ACTIONS(12349), + [aux_sym_subsubsection_token1] = ACTIONS(12349), + [aux_sym_paragraph_token1] = ACTIONS(12349), + [aux_sym_subparagraph_token1] = ACTIONS(12349), + [anon_sym_BSLASHitem] = ACTIONS(12349), + [anon_sym_LBRACK] = ACTIONS(12347), + [anon_sym_LBRACE] = ACTIONS(12347), + [anon_sym_LPAREN] = ACTIONS(12347), + [anon_sym_COMMA] = ACTIONS(12347), + [anon_sym_EQ] = ACTIONS(12347), + [sym_word] = ACTIONS(12347), + [sym_param] = ACTIONS(12347), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12347), + [anon_sym_DOLLAR] = ACTIONS(12349), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12347), + [anon_sym_BSLASHbegin] = ACTIONS(12349), + [anon_sym_BSLASHend] = ACTIONS(12349), + [anon_sym_BSLASHcaption] = ACTIONS(12349), + [anon_sym_BSLASHcite] = ACTIONS(12349), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCite] = ACTIONS(12349), + [anon_sym_BSLASHnocite] = ACTIONS(12349), + [anon_sym_BSLASHcitet] = ACTIONS(12349), + [anon_sym_BSLASHcitep] = ACTIONS(12349), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteauthor] = ACTIONS(12349), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12349), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitetitle] = ACTIONS(12349), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteyear] = ACTIONS(12349), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitedate] = ACTIONS(12349), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteurl] = ACTIONS(12349), + [anon_sym_BSLASHfullcite] = ACTIONS(12349), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12349), + [anon_sym_BSLASHcitealt] = ACTIONS(12349), + [anon_sym_BSLASHcitealp] = ACTIONS(12349), + [anon_sym_BSLASHcitetext] = ACTIONS(12349), + [anon_sym_BSLASHparencite] = ACTIONS(12349), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHParencite] = ACTIONS(12349), + [anon_sym_BSLASHfootcite] = ACTIONS(12349), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12349), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12349), + [anon_sym_BSLASHtextcite] = ACTIONS(12349), + [anon_sym_BSLASHTextcite] = ACTIONS(12349), + [anon_sym_BSLASHsmartcite] = ACTIONS(12349), + [anon_sym_BSLASHSmartcite] = ACTIONS(12349), + [anon_sym_BSLASHsupercite] = ACTIONS(12349), + [anon_sym_BSLASHautocite] = ACTIONS(12349), + [anon_sym_BSLASHAutocite] = ACTIONS(12349), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHvolcite] = ACTIONS(12349), + [anon_sym_BSLASHVolcite] = ACTIONS(12349), + [anon_sym_BSLASHpvolcite] = ACTIONS(12349), + [anon_sym_BSLASHPvolcite] = ACTIONS(12349), + [anon_sym_BSLASHfvolcite] = ACTIONS(12349), + [anon_sym_BSLASHftvolcite] = ACTIONS(12349), + [anon_sym_BSLASHsvolcite] = ACTIONS(12349), + [anon_sym_BSLASHSvolcite] = ACTIONS(12349), + [anon_sym_BSLASHtvolcite] = ACTIONS(12349), + [anon_sym_BSLASHTvolcite] = ACTIONS(12349), + [anon_sym_BSLASHavolcite] = ACTIONS(12349), + [anon_sym_BSLASHAvolcite] = ACTIONS(12349), + [anon_sym_BSLASHnotecite] = ACTIONS(12349), + [anon_sym_BSLASHpnotecite] = ACTIONS(12349), + [anon_sym_BSLASHPnotecite] = ACTIONS(12349), + [anon_sym_BSLASHfnotecite] = ACTIONS(12349), + [anon_sym_BSLASHusepackage] = ACTIONS(12349), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12349), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12349), + [anon_sym_BSLASHinclude] = ACTIONS(12349), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12349), + [anon_sym_BSLASHinput] = ACTIONS(12349), + [anon_sym_BSLASHsubfile] = ACTIONS(12349), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12349), + [anon_sym_BSLASHbibliography] = ACTIONS(12349), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12349), + [anon_sym_BSLASHincludesvg] = ACTIONS(12349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12349), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12349), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12349), + [anon_sym_BSLASHimport] = ACTIONS(12349), + [anon_sym_BSLASHsubimport] = ACTIONS(12349), + [anon_sym_BSLASHinputfrom] = ACTIONS(12349), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12349), + [anon_sym_BSLASHincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHlabel] = ACTIONS(12349), + [anon_sym_BSLASHref] = ACTIONS(12349), + [anon_sym_BSLASHvref] = ACTIONS(12349), + [anon_sym_BSLASHVref] = ACTIONS(12349), + [anon_sym_BSLASHautoref] = ACTIONS(12349), + [anon_sym_BSLASHpageref] = ACTIONS(12349), + [anon_sym_BSLASHcref] = ACTIONS(12349), + [anon_sym_BSLASHCref] = ACTIONS(12349), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnameCref] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHlabelcref] = ACTIONS(12349), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12349), + [anon_sym_BSLASHeqref] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange] = ACTIONS(12349), + [anon_sym_BSLASHCrefrange] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewlabel] = ACTIONS(12349), + [anon_sym_BSLASHnewcommand] = ACTIONS(12349), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12349), + [anon_sym_BSLASHgls] = ACTIONS(12349), + [anon_sym_BSLASHGls] = ACTIONS(12349), + [anon_sym_BSLASHGLS] = ACTIONS(12349), + [anon_sym_BSLASHglspl] = ACTIONS(12349), + [anon_sym_BSLASHGlspl] = ACTIONS(12349), + [anon_sym_BSLASHGLSpl] = ACTIONS(12349), + [anon_sym_BSLASHglsdisp] = ACTIONS(12349), + [anon_sym_BSLASHglslink] = ACTIONS(12349), + [anon_sym_BSLASHglstext] = ACTIONS(12349), + [anon_sym_BSLASHGlstext] = ACTIONS(12349), + [anon_sym_BSLASHGLStext] = ACTIONS(12349), + [anon_sym_BSLASHglsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12349), + [anon_sym_BSLASHglsplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSplural] = ACTIONS(12349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHglsname] = ACTIONS(12349), + [anon_sym_BSLASHGlsname] = ACTIONS(12349), + [anon_sym_BSLASHGLSname] = ACTIONS(12349), + [anon_sym_BSLASHglssymbol] = ACTIONS(12349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12349), + [anon_sym_BSLASHglsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12349), + [anon_sym_BSLASHglsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12349), + [anon_sym_BSLASHglsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12349), + [anon_sym_BSLASHglsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12349), + [anon_sym_BSLASHglsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12349), + [anon_sym_BSLASHnewacronym] = ACTIONS(12349), + [anon_sym_BSLASHacrshort] = ACTIONS(12349), + [anon_sym_BSLASHAcrshort] = ACTIONS(12349), + [anon_sym_BSLASHACRshort] = ACTIONS(12349), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12349), + [anon_sym_BSLASHacrlong] = ACTIONS(12349), + [anon_sym_BSLASHAcrlong] = ACTIONS(12349), + [anon_sym_BSLASHACRlong] = ACTIONS(12349), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12349), + [anon_sym_BSLASHacrfull] = ACTIONS(12349), + [anon_sym_BSLASHAcrfull] = ACTIONS(12349), + [anon_sym_BSLASHACRfull] = ACTIONS(12349), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12349), + [anon_sym_BSLASHacs] = ACTIONS(12349), + [anon_sym_BSLASHAcs] = ACTIONS(12349), + [anon_sym_BSLASHacsp] = ACTIONS(12349), + [anon_sym_BSLASHAcsp] = ACTIONS(12349), + [anon_sym_BSLASHacl] = ACTIONS(12349), + [anon_sym_BSLASHAcl] = ACTIONS(12349), + [anon_sym_BSLASHaclp] = ACTIONS(12349), + [anon_sym_BSLASHAclp] = ACTIONS(12349), + [anon_sym_BSLASHacf] = ACTIONS(12349), + [anon_sym_BSLASHAcf] = ACTIONS(12349), + [anon_sym_BSLASHacfp] = ACTIONS(12349), + [anon_sym_BSLASHAcfp] = ACTIONS(12349), + [anon_sym_BSLASHac] = ACTIONS(12349), + [anon_sym_BSLASHAc] = ACTIONS(12349), + [anon_sym_BSLASHacp] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12349), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12349), + [anon_sym_BSLASHcolor] = ACTIONS(12349), + [anon_sym_BSLASHcolorbox] = ACTIONS(12349), + [anon_sym_BSLASHtextcolor] = ACTIONS(12349), + [anon_sym_BSLASHpagecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12349), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12349), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12349), + }, + [742] = { + [sym_generic_command_name] = ACTIONS(12547), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12547), + [aux_sym_chapter_token1] = ACTIONS(12547), + [aux_sym_section_token1] = ACTIONS(12547), + [aux_sym_subsection_token1] = ACTIONS(12547), + [aux_sym_subsubsection_token1] = ACTIONS(12547), + [aux_sym_paragraph_token1] = ACTIONS(12547), + [aux_sym_subparagraph_token1] = ACTIONS(12547), + [anon_sym_BSLASHitem] = ACTIONS(12547), + [anon_sym_LBRACK] = ACTIONS(12545), + [anon_sym_LBRACE] = ACTIONS(12545), + [anon_sym_LPAREN] = ACTIONS(12545), + [anon_sym_COMMA] = ACTIONS(12545), + [anon_sym_EQ] = ACTIONS(12545), + [sym_word] = ACTIONS(12545), + [sym_param] = ACTIONS(12545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12545), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12545), + [anon_sym_DOLLAR] = ACTIONS(12547), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12545), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12545), + [anon_sym_BSLASHbegin] = ACTIONS(12547), + [anon_sym_BSLASHcaption] = ACTIONS(12547), + [anon_sym_BSLASHcite] = ACTIONS(12547), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCite] = ACTIONS(12547), + [anon_sym_BSLASHnocite] = ACTIONS(12547), + [anon_sym_BSLASHcitet] = ACTIONS(12547), + [anon_sym_BSLASHcitep] = ACTIONS(12547), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteauthor] = ACTIONS(12547), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12547), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitetitle] = ACTIONS(12547), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteyear] = ACTIONS(12547), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitedate] = ACTIONS(12547), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteurl] = ACTIONS(12547), + [anon_sym_BSLASHfullcite] = ACTIONS(12547), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12547), + [anon_sym_BSLASHcitealt] = ACTIONS(12547), + [anon_sym_BSLASHcitealp] = ACTIONS(12547), + [anon_sym_BSLASHcitetext] = ACTIONS(12547), + [anon_sym_BSLASHparencite] = ACTIONS(12547), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHParencite] = ACTIONS(12547), + [anon_sym_BSLASHfootcite] = ACTIONS(12547), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12547), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12547), + [anon_sym_BSLASHtextcite] = ACTIONS(12547), + [anon_sym_BSLASHTextcite] = ACTIONS(12547), + [anon_sym_BSLASHsmartcite] = ACTIONS(12547), + [anon_sym_BSLASHSmartcite] = ACTIONS(12547), + [anon_sym_BSLASHsupercite] = ACTIONS(12547), + [anon_sym_BSLASHautocite] = ACTIONS(12547), + [anon_sym_BSLASHAutocite] = ACTIONS(12547), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHvolcite] = ACTIONS(12547), + [anon_sym_BSLASHVolcite] = ACTIONS(12547), + [anon_sym_BSLASHpvolcite] = ACTIONS(12547), + [anon_sym_BSLASHPvolcite] = ACTIONS(12547), + [anon_sym_BSLASHfvolcite] = ACTIONS(12547), + [anon_sym_BSLASHftvolcite] = ACTIONS(12547), + [anon_sym_BSLASHsvolcite] = ACTIONS(12547), + [anon_sym_BSLASHSvolcite] = ACTIONS(12547), + [anon_sym_BSLASHtvolcite] = ACTIONS(12547), + [anon_sym_BSLASHTvolcite] = ACTIONS(12547), + [anon_sym_BSLASHavolcite] = ACTIONS(12547), + [anon_sym_BSLASHAvolcite] = ACTIONS(12547), + [anon_sym_BSLASHnotecite] = ACTIONS(12547), + [anon_sym_BSLASHpnotecite] = ACTIONS(12547), + [anon_sym_BSLASHPnotecite] = ACTIONS(12547), + [anon_sym_BSLASHfnotecite] = ACTIONS(12547), + [anon_sym_BSLASHusepackage] = ACTIONS(12547), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12547), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12547), + [anon_sym_BSLASHinclude] = ACTIONS(12547), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12547), + [anon_sym_BSLASHinput] = ACTIONS(12547), + [anon_sym_BSLASHsubfile] = ACTIONS(12547), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12547), + [anon_sym_BSLASHbibliography] = ACTIONS(12547), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12547), + [anon_sym_BSLASHincludesvg] = ACTIONS(12547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12547), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12547), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12547), + [anon_sym_BSLASHimport] = ACTIONS(12547), + [anon_sym_BSLASHsubimport] = ACTIONS(12547), + [anon_sym_BSLASHinputfrom] = ACTIONS(12547), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12547), + [anon_sym_BSLASHincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHlabel] = ACTIONS(12547), + [anon_sym_BSLASHref] = ACTIONS(12547), + [anon_sym_BSLASHvref] = ACTIONS(12547), + [anon_sym_BSLASHVref] = ACTIONS(12547), + [anon_sym_BSLASHautoref] = ACTIONS(12547), + [anon_sym_BSLASHpageref] = ACTIONS(12547), + [anon_sym_BSLASHcref] = ACTIONS(12547), + [anon_sym_BSLASHCref] = ACTIONS(12547), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnameCref] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHlabelcref] = ACTIONS(12547), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12547), + [anon_sym_BSLASHeqref] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange] = ACTIONS(12547), + [anon_sym_BSLASHCrefrange] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewlabel] = ACTIONS(12547), + [anon_sym_BSLASHnewcommand] = ACTIONS(12547), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12547), + [anon_sym_BSLASHgls] = ACTIONS(12547), + [anon_sym_BSLASHGls] = ACTIONS(12547), + [anon_sym_BSLASHGLS] = ACTIONS(12547), + [anon_sym_BSLASHglspl] = ACTIONS(12547), + [anon_sym_BSLASHGlspl] = ACTIONS(12547), + [anon_sym_BSLASHGLSpl] = ACTIONS(12547), + [anon_sym_BSLASHglsdisp] = ACTIONS(12547), + [anon_sym_BSLASHglslink] = ACTIONS(12547), + [anon_sym_BSLASHglstext] = ACTIONS(12547), + [anon_sym_BSLASHGlstext] = ACTIONS(12547), + [anon_sym_BSLASHGLStext] = ACTIONS(12547), + [anon_sym_BSLASHglsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12547), + [anon_sym_BSLASHglsplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSplural] = ACTIONS(12547), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHglsname] = ACTIONS(12547), + [anon_sym_BSLASHGlsname] = ACTIONS(12547), + [anon_sym_BSLASHGLSname] = ACTIONS(12547), + [anon_sym_BSLASHglssymbol] = ACTIONS(12547), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12547), + [anon_sym_BSLASHglsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12547), + [anon_sym_BSLASHglsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12547), + [anon_sym_BSLASHglsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12547), + [anon_sym_BSLASHglsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12547), + [anon_sym_BSLASHglsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12547), + [anon_sym_BSLASHnewacronym] = ACTIONS(12547), + [anon_sym_BSLASHacrshort] = ACTIONS(12547), + [anon_sym_BSLASHAcrshort] = ACTIONS(12547), + [anon_sym_BSLASHACRshort] = ACTIONS(12547), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12547), + [anon_sym_BSLASHacrlong] = ACTIONS(12547), + [anon_sym_BSLASHAcrlong] = ACTIONS(12547), + [anon_sym_BSLASHACRlong] = ACTIONS(12547), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12547), + [anon_sym_BSLASHacrfull] = ACTIONS(12547), + [anon_sym_BSLASHAcrfull] = ACTIONS(12547), + [anon_sym_BSLASHACRfull] = ACTIONS(12547), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12547), + [anon_sym_BSLASHacs] = ACTIONS(12547), + [anon_sym_BSLASHAcs] = ACTIONS(12547), + [anon_sym_BSLASHacsp] = ACTIONS(12547), + [anon_sym_BSLASHAcsp] = ACTIONS(12547), + [anon_sym_BSLASHacl] = ACTIONS(12547), + [anon_sym_BSLASHAcl] = ACTIONS(12547), + [anon_sym_BSLASHaclp] = ACTIONS(12547), + [anon_sym_BSLASHAclp] = ACTIONS(12547), + [anon_sym_BSLASHacf] = ACTIONS(12547), + [anon_sym_BSLASHAcf] = ACTIONS(12547), + [anon_sym_BSLASHacfp] = ACTIONS(12547), + [anon_sym_BSLASHAcfp] = ACTIONS(12547), + [anon_sym_BSLASHac] = ACTIONS(12547), + [anon_sym_BSLASHAc] = ACTIONS(12547), + [anon_sym_BSLASHacp] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12547), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12547), + [anon_sym_BSLASHcolor] = ACTIONS(12547), + [anon_sym_BSLASHcolorbox] = ACTIONS(12547), + [anon_sym_BSLASHtextcolor] = ACTIONS(12547), + [anon_sym_BSLASHpagecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12547), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12547), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12547), + }, + [743] = { + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(111), + [aux_sym_chapter_token1] = ACTIONS(111), + [aux_sym_section_token1] = ACTIONS(111), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHend] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [744] = { + [sym_generic_command_name] = ACTIONS(12255), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12255), + [aux_sym_chapter_token1] = ACTIONS(12255), + [aux_sym_section_token1] = ACTIONS(12255), + [aux_sym_subsection_token1] = ACTIONS(12255), + [aux_sym_subsubsection_token1] = ACTIONS(12255), + [aux_sym_paragraph_token1] = ACTIONS(12255), + [aux_sym_subparagraph_token1] = ACTIONS(12255), + [anon_sym_BSLASHitem] = ACTIONS(12255), + [anon_sym_LBRACK] = ACTIONS(12253), + [anon_sym_LBRACE] = ACTIONS(12253), + [anon_sym_LPAREN] = ACTIONS(12253), + [anon_sym_COMMA] = ACTIONS(12253), + [anon_sym_EQ] = ACTIONS(12253), + [sym_word] = ACTIONS(12253), + [sym_param] = ACTIONS(12253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12253), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12253), + [anon_sym_DOLLAR] = ACTIONS(12255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12253), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12253), + [anon_sym_BSLASHbegin] = ACTIONS(12255), + [anon_sym_BSLASHcaption] = ACTIONS(12255), + [anon_sym_BSLASHcite] = ACTIONS(12255), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCite] = ACTIONS(12255), + [anon_sym_BSLASHnocite] = ACTIONS(12255), + [anon_sym_BSLASHcitet] = ACTIONS(12255), + [anon_sym_BSLASHcitep] = ACTIONS(12255), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteauthor] = ACTIONS(12255), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12255), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitetitle] = ACTIONS(12255), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteyear] = ACTIONS(12255), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitedate] = ACTIONS(12255), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteurl] = ACTIONS(12255), + [anon_sym_BSLASHfullcite] = ACTIONS(12255), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12255), + [anon_sym_BSLASHcitealt] = ACTIONS(12255), + [anon_sym_BSLASHcitealp] = ACTIONS(12255), + [anon_sym_BSLASHcitetext] = ACTIONS(12255), + [anon_sym_BSLASHparencite] = ACTIONS(12255), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHParencite] = ACTIONS(12255), + [anon_sym_BSLASHfootcite] = ACTIONS(12255), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12255), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12255), + [anon_sym_BSLASHtextcite] = ACTIONS(12255), + [anon_sym_BSLASHTextcite] = ACTIONS(12255), + [anon_sym_BSLASHsmartcite] = ACTIONS(12255), + [anon_sym_BSLASHSmartcite] = ACTIONS(12255), + [anon_sym_BSLASHsupercite] = ACTIONS(12255), + [anon_sym_BSLASHautocite] = ACTIONS(12255), + [anon_sym_BSLASHAutocite] = ACTIONS(12255), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHvolcite] = ACTIONS(12255), + [anon_sym_BSLASHVolcite] = ACTIONS(12255), + [anon_sym_BSLASHpvolcite] = ACTIONS(12255), + [anon_sym_BSLASHPvolcite] = ACTIONS(12255), + [anon_sym_BSLASHfvolcite] = ACTIONS(12255), + [anon_sym_BSLASHftvolcite] = ACTIONS(12255), + [anon_sym_BSLASHsvolcite] = ACTIONS(12255), + [anon_sym_BSLASHSvolcite] = ACTIONS(12255), + [anon_sym_BSLASHtvolcite] = ACTIONS(12255), + [anon_sym_BSLASHTvolcite] = ACTIONS(12255), + [anon_sym_BSLASHavolcite] = ACTIONS(12255), + [anon_sym_BSLASHAvolcite] = ACTIONS(12255), + [anon_sym_BSLASHnotecite] = ACTIONS(12255), + [anon_sym_BSLASHpnotecite] = ACTIONS(12255), + [anon_sym_BSLASHPnotecite] = ACTIONS(12255), + [anon_sym_BSLASHfnotecite] = ACTIONS(12255), + [anon_sym_BSLASHusepackage] = ACTIONS(12255), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12255), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12255), + [anon_sym_BSLASHinclude] = ACTIONS(12255), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12255), + [anon_sym_BSLASHinput] = ACTIONS(12255), + [anon_sym_BSLASHsubfile] = ACTIONS(12255), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12255), + [anon_sym_BSLASHbibliography] = ACTIONS(12255), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12255), + [anon_sym_BSLASHincludesvg] = ACTIONS(12255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12255), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12255), + [anon_sym_BSLASHimport] = ACTIONS(12255), + [anon_sym_BSLASHsubimport] = ACTIONS(12255), + [anon_sym_BSLASHinputfrom] = ACTIONS(12255), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12255), + [anon_sym_BSLASHincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHlabel] = ACTIONS(12255), + [anon_sym_BSLASHref] = ACTIONS(12255), + [anon_sym_BSLASHvref] = ACTIONS(12255), + [anon_sym_BSLASHVref] = ACTIONS(12255), + [anon_sym_BSLASHautoref] = ACTIONS(12255), + [anon_sym_BSLASHpageref] = ACTIONS(12255), + [anon_sym_BSLASHcref] = ACTIONS(12255), + [anon_sym_BSLASHCref] = ACTIONS(12255), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnameCref] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHlabelcref] = ACTIONS(12255), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12255), + [anon_sym_BSLASHeqref] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange] = ACTIONS(12255), + [anon_sym_BSLASHCrefrange] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewlabel] = ACTIONS(12255), + [anon_sym_BSLASHnewcommand] = ACTIONS(12255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12255), + [anon_sym_BSLASHgls] = ACTIONS(12255), + [anon_sym_BSLASHGls] = ACTIONS(12255), + [anon_sym_BSLASHGLS] = ACTIONS(12255), + [anon_sym_BSLASHglspl] = ACTIONS(12255), + [anon_sym_BSLASHGlspl] = ACTIONS(12255), + [anon_sym_BSLASHGLSpl] = ACTIONS(12255), + [anon_sym_BSLASHglsdisp] = ACTIONS(12255), + [anon_sym_BSLASHglslink] = ACTIONS(12255), + [anon_sym_BSLASHglstext] = ACTIONS(12255), + [anon_sym_BSLASHGlstext] = ACTIONS(12255), + [anon_sym_BSLASHGLStext] = ACTIONS(12255), + [anon_sym_BSLASHglsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12255), + [anon_sym_BSLASHglsplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSplural] = ACTIONS(12255), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHglsname] = ACTIONS(12255), + [anon_sym_BSLASHGlsname] = ACTIONS(12255), + [anon_sym_BSLASHGLSname] = ACTIONS(12255), + [anon_sym_BSLASHglssymbol] = ACTIONS(12255), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12255), + [anon_sym_BSLASHglsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12255), + [anon_sym_BSLASHglsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12255), + [anon_sym_BSLASHglsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12255), + [anon_sym_BSLASHglsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12255), + [anon_sym_BSLASHglsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12255), + [anon_sym_BSLASHnewacronym] = ACTIONS(12255), + [anon_sym_BSLASHacrshort] = ACTIONS(12255), + [anon_sym_BSLASHAcrshort] = ACTIONS(12255), + [anon_sym_BSLASHACRshort] = ACTIONS(12255), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12255), + [anon_sym_BSLASHacrlong] = ACTIONS(12255), + [anon_sym_BSLASHAcrlong] = ACTIONS(12255), + [anon_sym_BSLASHACRlong] = ACTIONS(12255), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12255), + [anon_sym_BSLASHacrfull] = ACTIONS(12255), + [anon_sym_BSLASHAcrfull] = ACTIONS(12255), + [anon_sym_BSLASHACRfull] = ACTIONS(12255), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12255), + [anon_sym_BSLASHacs] = ACTIONS(12255), + [anon_sym_BSLASHAcs] = ACTIONS(12255), + [anon_sym_BSLASHacsp] = ACTIONS(12255), + [anon_sym_BSLASHAcsp] = ACTIONS(12255), + [anon_sym_BSLASHacl] = ACTIONS(12255), + [anon_sym_BSLASHAcl] = ACTIONS(12255), + [anon_sym_BSLASHaclp] = ACTIONS(12255), + [anon_sym_BSLASHAclp] = ACTIONS(12255), + [anon_sym_BSLASHacf] = ACTIONS(12255), + [anon_sym_BSLASHAcf] = ACTIONS(12255), + [anon_sym_BSLASHacfp] = ACTIONS(12255), + [anon_sym_BSLASHAcfp] = ACTIONS(12255), + [anon_sym_BSLASHac] = ACTIONS(12255), + [anon_sym_BSLASHAc] = ACTIONS(12255), + [anon_sym_BSLASHacp] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12255), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12255), + [anon_sym_BSLASHcolor] = ACTIONS(12255), + [anon_sym_BSLASHcolorbox] = ACTIONS(12255), + [anon_sym_BSLASHtextcolor] = ACTIONS(12255), + [anon_sym_BSLASHpagecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12255), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12255), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12255), + }, + [745] = { + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(117), + [aux_sym_chapter_token1] = ACTIONS(117), + [aux_sym_section_token1] = ACTIONS(117), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHend] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [746] = { + [sym_generic_command_name] = ACTIONS(12485), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12485), + [aux_sym_chapter_token1] = ACTIONS(12485), + [aux_sym_section_token1] = ACTIONS(12485), + [aux_sym_subsection_token1] = ACTIONS(12485), + [aux_sym_subsubsection_token1] = ACTIONS(12485), + [aux_sym_paragraph_token1] = ACTIONS(12485), + [aux_sym_subparagraph_token1] = ACTIONS(12485), + [anon_sym_BSLASHitem] = ACTIONS(12485), + [anon_sym_LBRACK] = ACTIONS(12483), + [anon_sym_LBRACE] = ACTIONS(12483), + [anon_sym_LPAREN] = ACTIONS(12483), + [anon_sym_COMMA] = ACTIONS(12483), + [anon_sym_EQ] = ACTIONS(12483), + [sym_word] = ACTIONS(12483), + [sym_param] = ACTIONS(12483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12483), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12483), + [anon_sym_DOLLAR] = ACTIONS(12485), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12483), + [anon_sym_BSLASHbegin] = ACTIONS(12485), + [anon_sym_BSLASHend] = ACTIONS(12485), + [anon_sym_BSLASHcaption] = ACTIONS(12485), + [anon_sym_BSLASHcite] = ACTIONS(12485), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCite] = ACTIONS(12485), + [anon_sym_BSLASHnocite] = ACTIONS(12485), + [anon_sym_BSLASHcitet] = ACTIONS(12485), + [anon_sym_BSLASHcitep] = ACTIONS(12485), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteauthor] = ACTIONS(12485), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12485), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitetitle] = ACTIONS(12485), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteyear] = ACTIONS(12485), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitedate] = ACTIONS(12485), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteurl] = ACTIONS(12485), + [anon_sym_BSLASHfullcite] = ACTIONS(12485), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12485), + [anon_sym_BSLASHcitealt] = ACTIONS(12485), + [anon_sym_BSLASHcitealp] = ACTIONS(12485), + [anon_sym_BSLASHcitetext] = ACTIONS(12485), + [anon_sym_BSLASHparencite] = ACTIONS(12485), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHParencite] = ACTIONS(12485), + [anon_sym_BSLASHfootcite] = ACTIONS(12485), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12485), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12485), + [anon_sym_BSLASHtextcite] = ACTIONS(12485), + [anon_sym_BSLASHTextcite] = ACTIONS(12485), + [anon_sym_BSLASHsmartcite] = ACTIONS(12485), + [anon_sym_BSLASHSmartcite] = ACTIONS(12485), + [anon_sym_BSLASHsupercite] = ACTIONS(12485), + [anon_sym_BSLASHautocite] = ACTIONS(12485), + [anon_sym_BSLASHAutocite] = ACTIONS(12485), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHvolcite] = ACTIONS(12485), + [anon_sym_BSLASHVolcite] = ACTIONS(12485), + [anon_sym_BSLASHpvolcite] = ACTIONS(12485), + [anon_sym_BSLASHPvolcite] = ACTIONS(12485), + [anon_sym_BSLASHfvolcite] = ACTIONS(12485), + [anon_sym_BSLASHftvolcite] = ACTIONS(12485), + [anon_sym_BSLASHsvolcite] = ACTIONS(12485), + [anon_sym_BSLASHSvolcite] = ACTIONS(12485), + [anon_sym_BSLASHtvolcite] = ACTIONS(12485), + [anon_sym_BSLASHTvolcite] = ACTIONS(12485), + [anon_sym_BSLASHavolcite] = ACTIONS(12485), + [anon_sym_BSLASHAvolcite] = ACTIONS(12485), + [anon_sym_BSLASHnotecite] = ACTIONS(12485), + [anon_sym_BSLASHpnotecite] = ACTIONS(12485), + [anon_sym_BSLASHPnotecite] = ACTIONS(12485), + [anon_sym_BSLASHfnotecite] = ACTIONS(12485), + [anon_sym_BSLASHusepackage] = ACTIONS(12485), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12485), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12485), + [anon_sym_BSLASHinclude] = ACTIONS(12485), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12485), + [anon_sym_BSLASHinput] = ACTIONS(12485), + [anon_sym_BSLASHsubfile] = ACTIONS(12485), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12485), + [anon_sym_BSLASHbibliography] = ACTIONS(12485), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12485), + [anon_sym_BSLASHincludesvg] = ACTIONS(12485), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12485), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12485), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12485), + [anon_sym_BSLASHimport] = ACTIONS(12485), + [anon_sym_BSLASHsubimport] = ACTIONS(12485), + [anon_sym_BSLASHinputfrom] = ACTIONS(12485), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12485), + [anon_sym_BSLASHincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHlabel] = ACTIONS(12485), + [anon_sym_BSLASHref] = ACTIONS(12485), + [anon_sym_BSLASHvref] = ACTIONS(12485), + [anon_sym_BSLASHVref] = ACTIONS(12485), + [anon_sym_BSLASHautoref] = ACTIONS(12485), + [anon_sym_BSLASHpageref] = ACTIONS(12485), + [anon_sym_BSLASHcref] = ACTIONS(12485), + [anon_sym_BSLASHCref] = ACTIONS(12485), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnameCref] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHlabelcref] = ACTIONS(12485), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12485), + [anon_sym_BSLASHeqref] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange] = ACTIONS(12485), + [anon_sym_BSLASHCrefrange] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewlabel] = ACTIONS(12485), + [anon_sym_BSLASHnewcommand] = ACTIONS(12485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12485), + [anon_sym_BSLASHgls] = ACTIONS(12485), + [anon_sym_BSLASHGls] = ACTIONS(12485), + [anon_sym_BSLASHGLS] = ACTIONS(12485), + [anon_sym_BSLASHglspl] = ACTIONS(12485), + [anon_sym_BSLASHGlspl] = ACTIONS(12485), + [anon_sym_BSLASHGLSpl] = ACTIONS(12485), + [anon_sym_BSLASHglsdisp] = ACTIONS(12485), + [anon_sym_BSLASHglslink] = ACTIONS(12485), + [anon_sym_BSLASHglstext] = ACTIONS(12485), + [anon_sym_BSLASHGlstext] = ACTIONS(12485), + [anon_sym_BSLASHGLStext] = ACTIONS(12485), + [anon_sym_BSLASHglsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12485), + [anon_sym_BSLASHglsplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSplural] = ACTIONS(12485), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHglsname] = ACTIONS(12485), + [anon_sym_BSLASHGlsname] = ACTIONS(12485), + [anon_sym_BSLASHGLSname] = ACTIONS(12485), + [anon_sym_BSLASHglssymbol] = ACTIONS(12485), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12485), + [anon_sym_BSLASHglsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12485), + [anon_sym_BSLASHglsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12485), + [anon_sym_BSLASHglsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12485), + [anon_sym_BSLASHglsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12485), + [anon_sym_BSLASHglsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12485), + [anon_sym_BSLASHnewacronym] = ACTIONS(12485), + [anon_sym_BSLASHacrshort] = ACTIONS(12485), + [anon_sym_BSLASHAcrshort] = ACTIONS(12485), + [anon_sym_BSLASHACRshort] = ACTIONS(12485), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12485), + [anon_sym_BSLASHacrlong] = ACTIONS(12485), + [anon_sym_BSLASHAcrlong] = ACTIONS(12485), + [anon_sym_BSLASHACRlong] = ACTIONS(12485), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12485), + [anon_sym_BSLASHacrfull] = ACTIONS(12485), + [anon_sym_BSLASHAcrfull] = ACTIONS(12485), + [anon_sym_BSLASHACRfull] = ACTIONS(12485), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12485), + [anon_sym_BSLASHacs] = ACTIONS(12485), + [anon_sym_BSLASHAcs] = ACTIONS(12485), + [anon_sym_BSLASHacsp] = ACTIONS(12485), + [anon_sym_BSLASHAcsp] = ACTIONS(12485), + [anon_sym_BSLASHacl] = ACTIONS(12485), + [anon_sym_BSLASHAcl] = ACTIONS(12485), + [anon_sym_BSLASHaclp] = ACTIONS(12485), + [anon_sym_BSLASHAclp] = ACTIONS(12485), + [anon_sym_BSLASHacf] = ACTIONS(12485), + [anon_sym_BSLASHAcf] = ACTIONS(12485), + [anon_sym_BSLASHacfp] = ACTIONS(12485), + [anon_sym_BSLASHAcfp] = ACTIONS(12485), + [anon_sym_BSLASHac] = ACTIONS(12485), + [anon_sym_BSLASHAc] = ACTIONS(12485), + [anon_sym_BSLASHacp] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12485), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12485), + [anon_sym_BSLASHcolor] = ACTIONS(12485), + [anon_sym_BSLASHcolorbox] = ACTIONS(12485), + [anon_sym_BSLASHtextcolor] = ACTIONS(12485), + [anon_sym_BSLASHpagecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12485), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12485), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12485), + }, + [747] = { + [sym_generic_command_name] = ACTIONS(12559), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12559), + [aux_sym_chapter_token1] = ACTIONS(12559), + [aux_sym_section_token1] = ACTIONS(12559), + [aux_sym_subsection_token1] = ACTIONS(12559), + [aux_sym_subsubsection_token1] = ACTIONS(12559), + [aux_sym_paragraph_token1] = ACTIONS(12559), + [aux_sym_subparagraph_token1] = ACTIONS(12559), + [anon_sym_BSLASHitem] = ACTIONS(12559), + [anon_sym_LBRACK] = ACTIONS(12557), + [anon_sym_LBRACE] = ACTIONS(12557), + [anon_sym_LPAREN] = ACTIONS(12557), + [anon_sym_COMMA] = ACTIONS(12557), + [anon_sym_EQ] = ACTIONS(12557), + [sym_word] = ACTIONS(12557), + [sym_param] = ACTIONS(12557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12557), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12557), + [anon_sym_DOLLAR] = ACTIONS(12559), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12557), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12557), + [anon_sym_BSLASHbegin] = ACTIONS(12559), + [anon_sym_BSLASHcaption] = ACTIONS(12559), + [anon_sym_BSLASHcite] = ACTIONS(12559), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCite] = ACTIONS(12559), + [anon_sym_BSLASHnocite] = ACTIONS(12559), + [anon_sym_BSLASHcitet] = ACTIONS(12559), + [anon_sym_BSLASHcitep] = ACTIONS(12559), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteauthor] = ACTIONS(12559), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12559), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitetitle] = ACTIONS(12559), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteyear] = ACTIONS(12559), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitedate] = ACTIONS(12559), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteurl] = ACTIONS(12559), + [anon_sym_BSLASHfullcite] = ACTIONS(12559), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12559), + [anon_sym_BSLASHcitealt] = ACTIONS(12559), + [anon_sym_BSLASHcitealp] = ACTIONS(12559), + [anon_sym_BSLASHcitetext] = ACTIONS(12559), + [anon_sym_BSLASHparencite] = ACTIONS(12559), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHParencite] = ACTIONS(12559), + [anon_sym_BSLASHfootcite] = ACTIONS(12559), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12559), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12559), + [anon_sym_BSLASHtextcite] = ACTIONS(12559), + [anon_sym_BSLASHTextcite] = ACTIONS(12559), + [anon_sym_BSLASHsmartcite] = ACTIONS(12559), + [anon_sym_BSLASHSmartcite] = ACTIONS(12559), + [anon_sym_BSLASHsupercite] = ACTIONS(12559), + [anon_sym_BSLASHautocite] = ACTIONS(12559), + [anon_sym_BSLASHAutocite] = ACTIONS(12559), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHvolcite] = ACTIONS(12559), + [anon_sym_BSLASHVolcite] = ACTIONS(12559), + [anon_sym_BSLASHpvolcite] = ACTIONS(12559), + [anon_sym_BSLASHPvolcite] = ACTIONS(12559), + [anon_sym_BSLASHfvolcite] = ACTIONS(12559), + [anon_sym_BSLASHftvolcite] = ACTIONS(12559), + [anon_sym_BSLASHsvolcite] = ACTIONS(12559), + [anon_sym_BSLASHSvolcite] = ACTIONS(12559), + [anon_sym_BSLASHtvolcite] = ACTIONS(12559), + [anon_sym_BSLASHTvolcite] = ACTIONS(12559), + [anon_sym_BSLASHavolcite] = ACTIONS(12559), + [anon_sym_BSLASHAvolcite] = ACTIONS(12559), + [anon_sym_BSLASHnotecite] = ACTIONS(12559), + [anon_sym_BSLASHpnotecite] = ACTIONS(12559), + [anon_sym_BSLASHPnotecite] = ACTIONS(12559), + [anon_sym_BSLASHfnotecite] = ACTIONS(12559), + [anon_sym_BSLASHusepackage] = ACTIONS(12559), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12559), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12559), + [anon_sym_BSLASHinclude] = ACTIONS(12559), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12559), + [anon_sym_BSLASHinput] = ACTIONS(12559), + [anon_sym_BSLASHsubfile] = ACTIONS(12559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12559), + [anon_sym_BSLASHbibliography] = ACTIONS(12559), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12559), + [anon_sym_BSLASHincludesvg] = ACTIONS(12559), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12559), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12559), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12559), + [anon_sym_BSLASHimport] = ACTIONS(12559), + [anon_sym_BSLASHsubimport] = ACTIONS(12559), + [anon_sym_BSLASHinputfrom] = ACTIONS(12559), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12559), + [anon_sym_BSLASHincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHlabel] = ACTIONS(12559), + [anon_sym_BSLASHref] = ACTIONS(12559), + [anon_sym_BSLASHvref] = ACTIONS(12559), + [anon_sym_BSLASHVref] = ACTIONS(12559), + [anon_sym_BSLASHautoref] = ACTIONS(12559), + [anon_sym_BSLASHpageref] = ACTIONS(12559), + [anon_sym_BSLASHcref] = ACTIONS(12559), + [anon_sym_BSLASHCref] = ACTIONS(12559), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnameCref] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHlabelcref] = ACTIONS(12559), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12559), + [anon_sym_BSLASHeqref] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange] = ACTIONS(12559), + [anon_sym_BSLASHCrefrange] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewlabel] = ACTIONS(12559), + [anon_sym_BSLASHnewcommand] = ACTIONS(12559), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12559), + [anon_sym_BSLASHgls] = ACTIONS(12559), + [anon_sym_BSLASHGls] = ACTIONS(12559), + [anon_sym_BSLASHGLS] = ACTIONS(12559), + [anon_sym_BSLASHglspl] = ACTIONS(12559), + [anon_sym_BSLASHGlspl] = ACTIONS(12559), + [anon_sym_BSLASHGLSpl] = ACTIONS(12559), + [anon_sym_BSLASHglsdisp] = ACTIONS(12559), + [anon_sym_BSLASHglslink] = ACTIONS(12559), + [anon_sym_BSLASHglstext] = ACTIONS(12559), + [anon_sym_BSLASHGlstext] = ACTIONS(12559), + [anon_sym_BSLASHGLStext] = ACTIONS(12559), + [anon_sym_BSLASHglsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12559), + [anon_sym_BSLASHglsplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSplural] = ACTIONS(12559), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHglsname] = ACTIONS(12559), + [anon_sym_BSLASHGlsname] = ACTIONS(12559), + [anon_sym_BSLASHGLSname] = ACTIONS(12559), + [anon_sym_BSLASHglssymbol] = ACTIONS(12559), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12559), + [anon_sym_BSLASHglsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12559), + [anon_sym_BSLASHglsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12559), + [anon_sym_BSLASHglsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12559), + [anon_sym_BSLASHglsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12559), + [anon_sym_BSLASHglsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12559), + [anon_sym_BSLASHnewacronym] = ACTIONS(12559), + [anon_sym_BSLASHacrshort] = ACTIONS(12559), + [anon_sym_BSLASHAcrshort] = ACTIONS(12559), + [anon_sym_BSLASHACRshort] = ACTIONS(12559), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12559), + [anon_sym_BSLASHacrlong] = ACTIONS(12559), + [anon_sym_BSLASHAcrlong] = ACTIONS(12559), + [anon_sym_BSLASHACRlong] = ACTIONS(12559), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12559), + [anon_sym_BSLASHacrfull] = ACTIONS(12559), + [anon_sym_BSLASHAcrfull] = ACTIONS(12559), + [anon_sym_BSLASHACRfull] = ACTIONS(12559), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12559), + [anon_sym_BSLASHacs] = ACTIONS(12559), + [anon_sym_BSLASHAcs] = ACTIONS(12559), + [anon_sym_BSLASHacsp] = ACTIONS(12559), + [anon_sym_BSLASHAcsp] = ACTIONS(12559), + [anon_sym_BSLASHacl] = ACTIONS(12559), + [anon_sym_BSLASHAcl] = ACTIONS(12559), + [anon_sym_BSLASHaclp] = ACTIONS(12559), + [anon_sym_BSLASHAclp] = ACTIONS(12559), + [anon_sym_BSLASHacf] = ACTIONS(12559), + [anon_sym_BSLASHAcf] = ACTIONS(12559), + [anon_sym_BSLASHacfp] = ACTIONS(12559), + [anon_sym_BSLASHAcfp] = ACTIONS(12559), + [anon_sym_BSLASHac] = ACTIONS(12559), + [anon_sym_BSLASHAc] = ACTIONS(12559), + [anon_sym_BSLASHacp] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12559), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12559), + [anon_sym_BSLASHcolor] = ACTIONS(12559), + [anon_sym_BSLASHcolorbox] = ACTIONS(12559), + [anon_sym_BSLASHtextcolor] = ACTIONS(12559), + [anon_sym_BSLASHpagecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12559), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12559), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12559), + }, + [748] = { + [sym_generic_command_name] = ACTIONS(12124), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12124), + [aux_sym_chapter_token1] = ACTIONS(12124), + [aux_sym_section_token1] = ACTIONS(12124), + [aux_sym_subsection_token1] = ACTIONS(12124), + [aux_sym_subsubsection_token1] = ACTIONS(12124), + [aux_sym_paragraph_token1] = ACTIONS(12124), + [aux_sym_subparagraph_token1] = ACTIONS(12124), + [anon_sym_BSLASHitem] = ACTIONS(12124), + [anon_sym_LBRACK] = ACTIONS(12122), + [anon_sym_LBRACE] = ACTIONS(12122), + [anon_sym_LPAREN] = ACTIONS(12122), + [anon_sym_COMMA] = ACTIONS(12122), + [anon_sym_EQ] = ACTIONS(12122), + [sym_word] = ACTIONS(12122), + [sym_param] = ACTIONS(12122), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12122), + [anon_sym_DOLLAR] = ACTIONS(12124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12122), + [anon_sym_BSLASHbegin] = ACTIONS(12124), + [anon_sym_BSLASHend] = ACTIONS(12124), + [anon_sym_BSLASHcaption] = ACTIONS(12124), + [anon_sym_BSLASHcite] = ACTIONS(12124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCite] = ACTIONS(12124), + [anon_sym_BSLASHnocite] = ACTIONS(12124), + [anon_sym_BSLASHcitet] = ACTIONS(12124), + [anon_sym_BSLASHcitep] = ACTIONS(12124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteauthor] = ACTIONS(12124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitetitle] = ACTIONS(12124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteyear] = ACTIONS(12124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitedate] = ACTIONS(12124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteurl] = ACTIONS(12124), + [anon_sym_BSLASHfullcite] = ACTIONS(12124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12124), + [anon_sym_BSLASHcitealt] = ACTIONS(12124), + [anon_sym_BSLASHcitealp] = ACTIONS(12124), + [anon_sym_BSLASHcitetext] = ACTIONS(12124), + [anon_sym_BSLASHparencite] = ACTIONS(12124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHParencite] = ACTIONS(12124), + [anon_sym_BSLASHfootcite] = ACTIONS(12124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12124), + [anon_sym_BSLASHtextcite] = ACTIONS(12124), + [anon_sym_BSLASHTextcite] = ACTIONS(12124), + [anon_sym_BSLASHsmartcite] = ACTIONS(12124), + [anon_sym_BSLASHSmartcite] = ACTIONS(12124), + [anon_sym_BSLASHsupercite] = ACTIONS(12124), + [anon_sym_BSLASHautocite] = ACTIONS(12124), + [anon_sym_BSLASHAutocite] = ACTIONS(12124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHvolcite] = ACTIONS(12124), + [anon_sym_BSLASHVolcite] = ACTIONS(12124), + [anon_sym_BSLASHpvolcite] = ACTIONS(12124), + [anon_sym_BSLASHPvolcite] = ACTIONS(12124), + [anon_sym_BSLASHfvolcite] = ACTIONS(12124), + [anon_sym_BSLASHftvolcite] = ACTIONS(12124), + [anon_sym_BSLASHsvolcite] = ACTIONS(12124), + [anon_sym_BSLASHSvolcite] = ACTIONS(12124), + [anon_sym_BSLASHtvolcite] = ACTIONS(12124), + [anon_sym_BSLASHTvolcite] = ACTIONS(12124), + [anon_sym_BSLASHavolcite] = ACTIONS(12124), + [anon_sym_BSLASHAvolcite] = ACTIONS(12124), + [anon_sym_BSLASHnotecite] = ACTIONS(12124), + [anon_sym_BSLASHpnotecite] = ACTIONS(12124), + [anon_sym_BSLASHPnotecite] = ACTIONS(12124), + [anon_sym_BSLASHfnotecite] = ACTIONS(12124), + [anon_sym_BSLASHusepackage] = ACTIONS(12124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12124), + [anon_sym_BSLASHinclude] = ACTIONS(12124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12124), + [anon_sym_BSLASHinput] = ACTIONS(12124), + [anon_sym_BSLASHsubfile] = ACTIONS(12124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12124), + [anon_sym_BSLASHbibliography] = ACTIONS(12124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12124), + [anon_sym_BSLASHincludesvg] = ACTIONS(12124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12124), + [anon_sym_BSLASHimport] = ACTIONS(12124), + [anon_sym_BSLASHsubimport] = ACTIONS(12124), + [anon_sym_BSLASHinputfrom] = ACTIONS(12124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12124), + [anon_sym_BSLASHincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHlabel] = ACTIONS(12124), + [anon_sym_BSLASHref] = ACTIONS(12124), + [anon_sym_BSLASHvref] = ACTIONS(12124), + [anon_sym_BSLASHVref] = ACTIONS(12124), + [anon_sym_BSLASHautoref] = ACTIONS(12124), + [anon_sym_BSLASHpageref] = ACTIONS(12124), + [anon_sym_BSLASHcref] = ACTIONS(12124), + [anon_sym_BSLASHCref] = ACTIONS(12124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnameCref] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHlabelcref] = ACTIONS(12124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12124), + [anon_sym_BSLASHeqref] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange] = ACTIONS(12124), + [anon_sym_BSLASHCrefrange] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewlabel] = ACTIONS(12124), + [anon_sym_BSLASHnewcommand] = ACTIONS(12124), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12124), + [anon_sym_BSLASHgls] = ACTIONS(12124), + [anon_sym_BSLASHGls] = ACTIONS(12124), + [anon_sym_BSLASHGLS] = ACTIONS(12124), + [anon_sym_BSLASHglspl] = ACTIONS(12124), + [anon_sym_BSLASHGlspl] = ACTIONS(12124), + [anon_sym_BSLASHGLSpl] = ACTIONS(12124), + [anon_sym_BSLASHglsdisp] = ACTIONS(12124), + [anon_sym_BSLASHglslink] = ACTIONS(12124), + [anon_sym_BSLASHglstext] = ACTIONS(12124), + [anon_sym_BSLASHGlstext] = ACTIONS(12124), + [anon_sym_BSLASHGLStext] = ACTIONS(12124), + [anon_sym_BSLASHglsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12124), + [anon_sym_BSLASHglsplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSplural] = ACTIONS(12124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHglsname] = ACTIONS(12124), + [anon_sym_BSLASHGlsname] = ACTIONS(12124), + [anon_sym_BSLASHGLSname] = ACTIONS(12124), + [anon_sym_BSLASHglssymbol] = ACTIONS(12124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12124), + [anon_sym_BSLASHglsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12124), + [anon_sym_BSLASHglsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12124), + [anon_sym_BSLASHglsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12124), + [anon_sym_BSLASHglsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12124), + [anon_sym_BSLASHglsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12124), + [anon_sym_BSLASHnewacronym] = ACTIONS(12124), + [anon_sym_BSLASHacrshort] = ACTIONS(12124), + [anon_sym_BSLASHAcrshort] = ACTIONS(12124), + [anon_sym_BSLASHACRshort] = ACTIONS(12124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12124), + [anon_sym_BSLASHacrlong] = ACTIONS(12124), + [anon_sym_BSLASHAcrlong] = ACTIONS(12124), + [anon_sym_BSLASHACRlong] = ACTIONS(12124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12124), + [anon_sym_BSLASHacrfull] = ACTIONS(12124), + [anon_sym_BSLASHAcrfull] = ACTIONS(12124), + [anon_sym_BSLASHACRfull] = ACTIONS(12124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12124), + [anon_sym_BSLASHacs] = ACTIONS(12124), + [anon_sym_BSLASHAcs] = ACTIONS(12124), + [anon_sym_BSLASHacsp] = ACTIONS(12124), + [anon_sym_BSLASHAcsp] = ACTIONS(12124), + [anon_sym_BSLASHacl] = ACTIONS(12124), + [anon_sym_BSLASHAcl] = ACTIONS(12124), + [anon_sym_BSLASHaclp] = ACTIONS(12124), + [anon_sym_BSLASHAclp] = ACTIONS(12124), + [anon_sym_BSLASHacf] = ACTIONS(12124), + [anon_sym_BSLASHAcf] = ACTIONS(12124), + [anon_sym_BSLASHacfp] = ACTIONS(12124), + [anon_sym_BSLASHAcfp] = ACTIONS(12124), + [anon_sym_BSLASHac] = ACTIONS(12124), + [anon_sym_BSLASHAc] = ACTIONS(12124), + [anon_sym_BSLASHacp] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12124), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12124), + [anon_sym_BSLASHcolor] = ACTIONS(12124), + [anon_sym_BSLASHcolorbox] = ACTIONS(12124), + [anon_sym_BSLASHtextcolor] = ACTIONS(12124), + [anon_sym_BSLASHpagecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12124), + }, + [749] = { + [sym_generic_command_name] = ACTIONS(12555), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12555), + [aux_sym_chapter_token1] = ACTIONS(12555), + [aux_sym_section_token1] = ACTIONS(12555), + [aux_sym_subsection_token1] = ACTIONS(12555), + [aux_sym_subsubsection_token1] = ACTIONS(12555), + [aux_sym_paragraph_token1] = ACTIONS(12555), + [aux_sym_subparagraph_token1] = ACTIONS(12555), + [anon_sym_BSLASHitem] = ACTIONS(12555), + [anon_sym_LBRACK] = ACTIONS(12553), + [anon_sym_LBRACE] = ACTIONS(12553), + [anon_sym_LPAREN] = ACTIONS(12553), + [anon_sym_COMMA] = ACTIONS(12553), + [anon_sym_EQ] = ACTIONS(12553), + [sym_word] = ACTIONS(12553), + [sym_param] = ACTIONS(12553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12553), + [anon_sym_DOLLAR] = ACTIONS(12555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12553), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12553), + [anon_sym_BSLASHbegin] = ACTIONS(12555), + [anon_sym_BSLASHcaption] = ACTIONS(12555), + [anon_sym_BSLASHcite] = ACTIONS(12555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCite] = ACTIONS(12555), + [anon_sym_BSLASHnocite] = ACTIONS(12555), + [anon_sym_BSLASHcitet] = ACTIONS(12555), + [anon_sym_BSLASHcitep] = ACTIONS(12555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteauthor] = ACTIONS(12555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitetitle] = ACTIONS(12555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteyear] = ACTIONS(12555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitedate] = ACTIONS(12555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteurl] = ACTIONS(12555), + [anon_sym_BSLASHfullcite] = ACTIONS(12555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12555), + [anon_sym_BSLASHcitealt] = ACTIONS(12555), + [anon_sym_BSLASHcitealp] = ACTIONS(12555), + [anon_sym_BSLASHcitetext] = ACTIONS(12555), + [anon_sym_BSLASHparencite] = ACTIONS(12555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHParencite] = ACTIONS(12555), + [anon_sym_BSLASHfootcite] = ACTIONS(12555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12555), + [anon_sym_BSLASHtextcite] = ACTIONS(12555), + [anon_sym_BSLASHTextcite] = ACTIONS(12555), + [anon_sym_BSLASHsmartcite] = ACTIONS(12555), + [anon_sym_BSLASHSmartcite] = ACTIONS(12555), + [anon_sym_BSLASHsupercite] = ACTIONS(12555), + [anon_sym_BSLASHautocite] = ACTIONS(12555), + [anon_sym_BSLASHAutocite] = ACTIONS(12555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHvolcite] = ACTIONS(12555), + [anon_sym_BSLASHVolcite] = ACTIONS(12555), + [anon_sym_BSLASHpvolcite] = ACTIONS(12555), + [anon_sym_BSLASHPvolcite] = ACTIONS(12555), + [anon_sym_BSLASHfvolcite] = ACTIONS(12555), + [anon_sym_BSLASHftvolcite] = ACTIONS(12555), + [anon_sym_BSLASHsvolcite] = ACTIONS(12555), + [anon_sym_BSLASHSvolcite] = ACTIONS(12555), + [anon_sym_BSLASHtvolcite] = ACTIONS(12555), + [anon_sym_BSLASHTvolcite] = ACTIONS(12555), + [anon_sym_BSLASHavolcite] = ACTIONS(12555), + [anon_sym_BSLASHAvolcite] = ACTIONS(12555), + [anon_sym_BSLASHnotecite] = ACTIONS(12555), + [anon_sym_BSLASHpnotecite] = ACTIONS(12555), + [anon_sym_BSLASHPnotecite] = ACTIONS(12555), + [anon_sym_BSLASHfnotecite] = ACTIONS(12555), + [anon_sym_BSLASHusepackage] = ACTIONS(12555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12555), + [anon_sym_BSLASHinclude] = ACTIONS(12555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12555), + [anon_sym_BSLASHinput] = ACTIONS(12555), + [anon_sym_BSLASHsubfile] = ACTIONS(12555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12555), + [anon_sym_BSLASHbibliography] = ACTIONS(12555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12555), + [anon_sym_BSLASHincludesvg] = ACTIONS(12555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12555), + [anon_sym_BSLASHimport] = ACTIONS(12555), + [anon_sym_BSLASHsubimport] = ACTIONS(12555), + [anon_sym_BSLASHinputfrom] = ACTIONS(12555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12555), + [anon_sym_BSLASHincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHlabel] = ACTIONS(12555), + [anon_sym_BSLASHref] = ACTIONS(12555), + [anon_sym_BSLASHvref] = ACTIONS(12555), + [anon_sym_BSLASHVref] = ACTIONS(12555), + [anon_sym_BSLASHautoref] = ACTIONS(12555), + [anon_sym_BSLASHpageref] = ACTIONS(12555), + [anon_sym_BSLASHcref] = ACTIONS(12555), + [anon_sym_BSLASHCref] = ACTIONS(12555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnameCref] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHlabelcref] = ACTIONS(12555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12555), + [anon_sym_BSLASHeqref] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange] = ACTIONS(12555), + [anon_sym_BSLASHCrefrange] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewlabel] = ACTIONS(12555), + [anon_sym_BSLASHnewcommand] = ACTIONS(12555), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12555), + [anon_sym_BSLASHgls] = ACTIONS(12555), + [anon_sym_BSLASHGls] = ACTIONS(12555), + [anon_sym_BSLASHGLS] = ACTIONS(12555), + [anon_sym_BSLASHglspl] = ACTIONS(12555), + [anon_sym_BSLASHGlspl] = ACTIONS(12555), + [anon_sym_BSLASHGLSpl] = ACTIONS(12555), + [anon_sym_BSLASHglsdisp] = ACTIONS(12555), + [anon_sym_BSLASHglslink] = ACTIONS(12555), + [anon_sym_BSLASHglstext] = ACTIONS(12555), + [anon_sym_BSLASHGlstext] = ACTIONS(12555), + [anon_sym_BSLASHGLStext] = ACTIONS(12555), + [anon_sym_BSLASHglsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12555), + [anon_sym_BSLASHglsplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSplural] = ACTIONS(12555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHglsname] = ACTIONS(12555), + [anon_sym_BSLASHGlsname] = ACTIONS(12555), + [anon_sym_BSLASHGLSname] = ACTIONS(12555), + [anon_sym_BSLASHglssymbol] = ACTIONS(12555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12555), + [anon_sym_BSLASHglsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12555), + [anon_sym_BSLASHglsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12555), + [anon_sym_BSLASHglsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12555), + [anon_sym_BSLASHglsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12555), + [anon_sym_BSLASHglsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12555), + [anon_sym_BSLASHnewacronym] = ACTIONS(12555), + [anon_sym_BSLASHacrshort] = ACTIONS(12555), + [anon_sym_BSLASHAcrshort] = ACTIONS(12555), + [anon_sym_BSLASHACRshort] = ACTIONS(12555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12555), + [anon_sym_BSLASHacrlong] = ACTIONS(12555), + [anon_sym_BSLASHAcrlong] = ACTIONS(12555), + [anon_sym_BSLASHACRlong] = ACTIONS(12555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12555), + [anon_sym_BSLASHacrfull] = ACTIONS(12555), + [anon_sym_BSLASHAcrfull] = ACTIONS(12555), + [anon_sym_BSLASHACRfull] = ACTIONS(12555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12555), + [anon_sym_BSLASHacs] = ACTIONS(12555), + [anon_sym_BSLASHAcs] = ACTIONS(12555), + [anon_sym_BSLASHacsp] = ACTIONS(12555), + [anon_sym_BSLASHAcsp] = ACTIONS(12555), + [anon_sym_BSLASHacl] = ACTIONS(12555), + [anon_sym_BSLASHAcl] = ACTIONS(12555), + [anon_sym_BSLASHaclp] = ACTIONS(12555), + [anon_sym_BSLASHAclp] = ACTIONS(12555), + [anon_sym_BSLASHacf] = ACTIONS(12555), + [anon_sym_BSLASHAcf] = ACTIONS(12555), + [anon_sym_BSLASHacfp] = ACTIONS(12555), + [anon_sym_BSLASHAcfp] = ACTIONS(12555), + [anon_sym_BSLASHac] = ACTIONS(12555), + [anon_sym_BSLASHAc] = ACTIONS(12555), + [anon_sym_BSLASHacp] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12555), + [anon_sym_BSLASHcolor] = ACTIONS(12555), + [anon_sym_BSLASHcolorbox] = ACTIONS(12555), + [anon_sym_BSLASHtextcolor] = ACTIONS(12555), + [anon_sym_BSLASHpagecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12555), + }, + [750] = { + [sym_generic_command_name] = ACTIONS(12551), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12551), + [aux_sym_chapter_token1] = ACTIONS(12551), + [aux_sym_section_token1] = ACTIONS(12551), + [aux_sym_subsection_token1] = ACTIONS(12551), + [aux_sym_subsubsection_token1] = ACTIONS(12551), + [aux_sym_paragraph_token1] = ACTIONS(12551), + [aux_sym_subparagraph_token1] = ACTIONS(12551), + [anon_sym_BSLASHitem] = ACTIONS(12551), + [anon_sym_LBRACK] = ACTIONS(12549), + [anon_sym_LBRACE] = ACTIONS(12549), + [anon_sym_LPAREN] = ACTIONS(12549), + [anon_sym_COMMA] = ACTIONS(12549), + [anon_sym_EQ] = ACTIONS(12549), + [sym_word] = ACTIONS(12549), + [sym_param] = ACTIONS(12549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12549), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12549), + [anon_sym_DOLLAR] = ACTIONS(12551), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12549), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12549), + [anon_sym_BSLASHbegin] = ACTIONS(12551), + [anon_sym_BSLASHcaption] = ACTIONS(12551), + [anon_sym_BSLASHcite] = ACTIONS(12551), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCite] = ACTIONS(12551), + [anon_sym_BSLASHnocite] = ACTIONS(12551), + [anon_sym_BSLASHcitet] = ACTIONS(12551), + [anon_sym_BSLASHcitep] = ACTIONS(12551), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteauthor] = ACTIONS(12551), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12551), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitetitle] = ACTIONS(12551), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteyear] = ACTIONS(12551), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitedate] = ACTIONS(12551), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteurl] = ACTIONS(12551), + [anon_sym_BSLASHfullcite] = ACTIONS(12551), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12551), + [anon_sym_BSLASHcitealt] = ACTIONS(12551), + [anon_sym_BSLASHcitealp] = ACTIONS(12551), + [anon_sym_BSLASHcitetext] = ACTIONS(12551), + [anon_sym_BSLASHparencite] = ACTIONS(12551), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHParencite] = ACTIONS(12551), + [anon_sym_BSLASHfootcite] = ACTIONS(12551), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12551), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12551), + [anon_sym_BSLASHtextcite] = ACTIONS(12551), + [anon_sym_BSLASHTextcite] = ACTIONS(12551), + [anon_sym_BSLASHsmartcite] = ACTIONS(12551), + [anon_sym_BSLASHSmartcite] = ACTIONS(12551), + [anon_sym_BSLASHsupercite] = ACTIONS(12551), + [anon_sym_BSLASHautocite] = ACTIONS(12551), + [anon_sym_BSLASHAutocite] = ACTIONS(12551), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHvolcite] = ACTIONS(12551), + [anon_sym_BSLASHVolcite] = ACTIONS(12551), + [anon_sym_BSLASHpvolcite] = ACTIONS(12551), + [anon_sym_BSLASHPvolcite] = ACTIONS(12551), + [anon_sym_BSLASHfvolcite] = ACTIONS(12551), + [anon_sym_BSLASHftvolcite] = ACTIONS(12551), + [anon_sym_BSLASHsvolcite] = ACTIONS(12551), + [anon_sym_BSLASHSvolcite] = ACTIONS(12551), + [anon_sym_BSLASHtvolcite] = ACTIONS(12551), + [anon_sym_BSLASHTvolcite] = ACTIONS(12551), + [anon_sym_BSLASHavolcite] = ACTIONS(12551), + [anon_sym_BSLASHAvolcite] = ACTIONS(12551), + [anon_sym_BSLASHnotecite] = ACTIONS(12551), + [anon_sym_BSLASHpnotecite] = ACTIONS(12551), + [anon_sym_BSLASHPnotecite] = ACTIONS(12551), + [anon_sym_BSLASHfnotecite] = ACTIONS(12551), + [anon_sym_BSLASHusepackage] = ACTIONS(12551), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12551), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12551), + [anon_sym_BSLASHinclude] = ACTIONS(12551), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12551), + [anon_sym_BSLASHinput] = ACTIONS(12551), + [anon_sym_BSLASHsubfile] = ACTIONS(12551), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12551), + [anon_sym_BSLASHbibliography] = ACTIONS(12551), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12551), + [anon_sym_BSLASHincludesvg] = ACTIONS(12551), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12551), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12551), + [anon_sym_BSLASHimport] = ACTIONS(12551), + [anon_sym_BSLASHsubimport] = ACTIONS(12551), + [anon_sym_BSLASHinputfrom] = ACTIONS(12551), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12551), + [anon_sym_BSLASHincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHlabel] = ACTIONS(12551), + [anon_sym_BSLASHref] = ACTIONS(12551), + [anon_sym_BSLASHvref] = ACTIONS(12551), + [anon_sym_BSLASHVref] = ACTIONS(12551), + [anon_sym_BSLASHautoref] = ACTIONS(12551), + [anon_sym_BSLASHpageref] = ACTIONS(12551), + [anon_sym_BSLASHcref] = ACTIONS(12551), + [anon_sym_BSLASHCref] = ACTIONS(12551), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnameCref] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHlabelcref] = ACTIONS(12551), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12551), + [anon_sym_BSLASHeqref] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange] = ACTIONS(12551), + [anon_sym_BSLASHCrefrange] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewlabel] = ACTIONS(12551), + [anon_sym_BSLASHnewcommand] = ACTIONS(12551), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12551), + [anon_sym_BSLASHgls] = ACTIONS(12551), + [anon_sym_BSLASHGls] = ACTIONS(12551), + [anon_sym_BSLASHGLS] = ACTIONS(12551), + [anon_sym_BSLASHglspl] = ACTIONS(12551), + [anon_sym_BSLASHGlspl] = ACTIONS(12551), + [anon_sym_BSLASHGLSpl] = ACTIONS(12551), + [anon_sym_BSLASHglsdisp] = ACTIONS(12551), + [anon_sym_BSLASHglslink] = ACTIONS(12551), + [anon_sym_BSLASHglstext] = ACTIONS(12551), + [anon_sym_BSLASHGlstext] = ACTIONS(12551), + [anon_sym_BSLASHGLStext] = ACTIONS(12551), + [anon_sym_BSLASHglsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12551), + [anon_sym_BSLASHglsplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSplural] = ACTIONS(12551), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHglsname] = ACTIONS(12551), + [anon_sym_BSLASHGlsname] = ACTIONS(12551), + [anon_sym_BSLASHGLSname] = ACTIONS(12551), + [anon_sym_BSLASHglssymbol] = ACTIONS(12551), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12551), + [anon_sym_BSLASHglsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12551), + [anon_sym_BSLASHglsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12551), + [anon_sym_BSLASHglsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12551), + [anon_sym_BSLASHglsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12551), + [anon_sym_BSLASHglsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12551), + [anon_sym_BSLASHnewacronym] = ACTIONS(12551), + [anon_sym_BSLASHacrshort] = ACTIONS(12551), + [anon_sym_BSLASHAcrshort] = ACTIONS(12551), + [anon_sym_BSLASHACRshort] = ACTIONS(12551), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12551), + [anon_sym_BSLASHacrlong] = ACTIONS(12551), + [anon_sym_BSLASHAcrlong] = ACTIONS(12551), + [anon_sym_BSLASHACRlong] = ACTIONS(12551), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12551), + [anon_sym_BSLASHacrfull] = ACTIONS(12551), + [anon_sym_BSLASHAcrfull] = ACTIONS(12551), + [anon_sym_BSLASHACRfull] = ACTIONS(12551), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12551), + [anon_sym_BSLASHacs] = ACTIONS(12551), + [anon_sym_BSLASHAcs] = ACTIONS(12551), + [anon_sym_BSLASHacsp] = ACTIONS(12551), + [anon_sym_BSLASHAcsp] = ACTIONS(12551), + [anon_sym_BSLASHacl] = ACTIONS(12551), + [anon_sym_BSLASHAcl] = ACTIONS(12551), + [anon_sym_BSLASHaclp] = ACTIONS(12551), + [anon_sym_BSLASHAclp] = ACTIONS(12551), + [anon_sym_BSLASHacf] = ACTIONS(12551), + [anon_sym_BSLASHAcf] = ACTIONS(12551), + [anon_sym_BSLASHacfp] = ACTIONS(12551), + [anon_sym_BSLASHAcfp] = ACTIONS(12551), + [anon_sym_BSLASHac] = ACTIONS(12551), + [anon_sym_BSLASHAc] = ACTIONS(12551), + [anon_sym_BSLASHacp] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12551), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12551), + [anon_sym_BSLASHcolor] = ACTIONS(12551), + [anon_sym_BSLASHcolorbox] = ACTIONS(12551), + [anon_sym_BSLASHtextcolor] = ACTIONS(12551), + [anon_sym_BSLASHpagecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12551), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12551), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12551), + }, + [751] = { + [sym_generic_command_name] = ACTIONS(12535), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12535), + [aux_sym_chapter_token1] = ACTIONS(12535), + [aux_sym_section_token1] = ACTIONS(12535), + [aux_sym_subsection_token1] = ACTIONS(12535), + [aux_sym_subsubsection_token1] = ACTIONS(12535), + [aux_sym_paragraph_token1] = ACTIONS(12535), + [aux_sym_subparagraph_token1] = ACTIONS(12535), + [anon_sym_BSLASHitem] = ACTIONS(12535), + [anon_sym_LBRACK] = ACTIONS(12533), + [anon_sym_LBRACE] = ACTIONS(12533), + [anon_sym_LPAREN] = ACTIONS(12533), + [anon_sym_COMMA] = ACTIONS(12533), + [anon_sym_EQ] = ACTIONS(12533), + [sym_word] = ACTIONS(12533), + [sym_param] = ACTIONS(12533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12533), + [anon_sym_DOLLAR] = ACTIONS(12535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12533), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12533), + [anon_sym_BSLASHbegin] = ACTIONS(12535), + [anon_sym_BSLASHcaption] = ACTIONS(12535), + [anon_sym_BSLASHcite] = ACTIONS(12535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCite] = ACTIONS(12535), + [anon_sym_BSLASHnocite] = ACTIONS(12535), + [anon_sym_BSLASHcitet] = ACTIONS(12535), + [anon_sym_BSLASHcitep] = ACTIONS(12535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteauthor] = ACTIONS(12535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitetitle] = ACTIONS(12535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteyear] = ACTIONS(12535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitedate] = ACTIONS(12535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteurl] = ACTIONS(12535), + [anon_sym_BSLASHfullcite] = ACTIONS(12535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12535), + [anon_sym_BSLASHcitealt] = ACTIONS(12535), + [anon_sym_BSLASHcitealp] = ACTIONS(12535), + [anon_sym_BSLASHcitetext] = ACTIONS(12535), + [anon_sym_BSLASHparencite] = ACTIONS(12535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHParencite] = ACTIONS(12535), + [anon_sym_BSLASHfootcite] = ACTIONS(12535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12535), + [anon_sym_BSLASHtextcite] = ACTIONS(12535), + [anon_sym_BSLASHTextcite] = ACTIONS(12535), + [anon_sym_BSLASHsmartcite] = ACTIONS(12535), + [anon_sym_BSLASHSmartcite] = ACTIONS(12535), + [anon_sym_BSLASHsupercite] = ACTIONS(12535), + [anon_sym_BSLASHautocite] = ACTIONS(12535), + [anon_sym_BSLASHAutocite] = ACTIONS(12535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHvolcite] = ACTIONS(12535), + [anon_sym_BSLASHVolcite] = ACTIONS(12535), + [anon_sym_BSLASHpvolcite] = ACTIONS(12535), + [anon_sym_BSLASHPvolcite] = ACTIONS(12535), + [anon_sym_BSLASHfvolcite] = ACTIONS(12535), + [anon_sym_BSLASHftvolcite] = ACTIONS(12535), + [anon_sym_BSLASHsvolcite] = ACTIONS(12535), + [anon_sym_BSLASHSvolcite] = ACTIONS(12535), + [anon_sym_BSLASHtvolcite] = ACTIONS(12535), + [anon_sym_BSLASHTvolcite] = ACTIONS(12535), + [anon_sym_BSLASHavolcite] = ACTIONS(12535), + [anon_sym_BSLASHAvolcite] = ACTIONS(12535), + [anon_sym_BSLASHnotecite] = ACTIONS(12535), + [anon_sym_BSLASHpnotecite] = ACTIONS(12535), + [anon_sym_BSLASHPnotecite] = ACTIONS(12535), + [anon_sym_BSLASHfnotecite] = ACTIONS(12535), + [anon_sym_BSLASHusepackage] = ACTIONS(12535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12535), + [anon_sym_BSLASHinclude] = ACTIONS(12535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12535), + [anon_sym_BSLASHinput] = ACTIONS(12535), + [anon_sym_BSLASHsubfile] = ACTIONS(12535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12535), + [anon_sym_BSLASHbibliography] = ACTIONS(12535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12535), + [anon_sym_BSLASHincludesvg] = ACTIONS(12535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12535), + [anon_sym_BSLASHimport] = ACTIONS(12535), + [anon_sym_BSLASHsubimport] = ACTIONS(12535), + [anon_sym_BSLASHinputfrom] = ACTIONS(12535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12535), + [anon_sym_BSLASHincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHlabel] = ACTIONS(12535), + [anon_sym_BSLASHref] = ACTIONS(12535), + [anon_sym_BSLASHvref] = ACTIONS(12535), + [anon_sym_BSLASHVref] = ACTIONS(12535), + [anon_sym_BSLASHautoref] = ACTIONS(12535), + [anon_sym_BSLASHpageref] = ACTIONS(12535), + [anon_sym_BSLASHcref] = ACTIONS(12535), + [anon_sym_BSLASHCref] = ACTIONS(12535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnameCref] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHlabelcref] = ACTIONS(12535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12535), + [anon_sym_BSLASHeqref] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange] = ACTIONS(12535), + [anon_sym_BSLASHCrefrange] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewlabel] = ACTIONS(12535), + [anon_sym_BSLASHnewcommand] = ACTIONS(12535), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12535), + [anon_sym_BSLASHgls] = ACTIONS(12535), + [anon_sym_BSLASHGls] = ACTIONS(12535), + [anon_sym_BSLASHGLS] = ACTIONS(12535), + [anon_sym_BSLASHglspl] = ACTIONS(12535), + [anon_sym_BSLASHGlspl] = ACTIONS(12535), + [anon_sym_BSLASHGLSpl] = ACTIONS(12535), + [anon_sym_BSLASHglsdisp] = ACTIONS(12535), + [anon_sym_BSLASHglslink] = ACTIONS(12535), + [anon_sym_BSLASHglstext] = ACTIONS(12535), + [anon_sym_BSLASHGlstext] = ACTIONS(12535), + [anon_sym_BSLASHGLStext] = ACTIONS(12535), + [anon_sym_BSLASHglsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12535), + [anon_sym_BSLASHglsplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSplural] = ACTIONS(12535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHglsname] = ACTIONS(12535), + [anon_sym_BSLASHGlsname] = ACTIONS(12535), + [anon_sym_BSLASHGLSname] = ACTIONS(12535), + [anon_sym_BSLASHglssymbol] = ACTIONS(12535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12535), + [anon_sym_BSLASHglsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12535), + [anon_sym_BSLASHglsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12535), + [anon_sym_BSLASHglsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12535), + [anon_sym_BSLASHglsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12535), + [anon_sym_BSLASHglsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12535), + [anon_sym_BSLASHnewacronym] = ACTIONS(12535), + [anon_sym_BSLASHacrshort] = ACTIONS(12535), + [anon_sym_BSLASHAcrshort] = ACTIONS(12535), + [anon_sym_BSLASHACRshort] = ACTIONS(12535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12535), + [anon_sym_BSLASHacrlong] = ACTIONS(12535), + [anon_sym_BSLASHAcrlong] = ACTIONS(12535), + [anon_sym_BSLASHACRlong] = ACTIONS(12535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12535), + [anon_sym_BSLASHacrfull] = ACTIONS(12535), + [anon_sym_BSLASHAcrfull] = ACTIONS(12535), + [anon_sym_BSLASHACRfull] = ACTIONS(12535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12535), + [anon_sym_BSLASHacs] = ACTIONS(12535), + [anon_sym_BSLASHAcs] = ACTIONS(12535), + [anon_sym_BSLASHacsp] = ACTIONS(12535), + [anon_sym_BSLASHAcsp] = ACTIONS(12535), + [anon_sym_BSLASHacl] = ACTIONS(12535), + [anon_sym_BSLASHAcl] = ACTIONS(12535), + [anon_sym_BSLASHaclp] = ACTIONS(12535), + [anon_sym_BSLASHAclp] = ACTIONS(12535), + [anon_sym_BSLASHacf] = ACTIONS(12535), + [anon_sym_BSLASHAcf] = ACTIONS(12535), + [anon_sym_BSLASHacfp] = ACTIONS(12535), + [anon_sym_BSLASHAcfp] = ACTIONS(12535), + [anon_sym_BSLASHac] = ACTIONS(12535), + [anon_sym_BSLASHAc] = ACTIONS(12535), + [anon_sym_BSLASHacp] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12535), + [anon_sym_BSLASHcolor] = ACTIONS(12535), + [anon_sym_BSLASHcolorbox] = ACTIONS(12535), + [anon_sym_BSLASHtextcolor] = ACTIONS(12535), + [anon_sym_BSLASHpagecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12535), + }, + [752] = { + [sym_generic_command_name] = ACTIONS(12505), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12505), + [aux_sym_chapter_token1] = ACTIONS(12505), + [aux_sym_section_token1] = ACTIONS(12505), + [aux_sym_subsection_token1] = ACTIONS(12505), + [aux_sym_subsubsection_token1] = ACTIONS(12505), + [aux_sym_paragraph_token1] = ACTIONS(12505), + [aux_sym_subparagraph_token1] = ACTIONS(12505), + [anon_sym_BSLASHitem] = ACTIONS(12505), + [anon_sym_LBRACK] = ACTIONS(12503), + [anon_sym_LBRACE] = ACTIONS(12503), + [anon_sym_LPAREN] = ACTIONS(12503), + [anon_sym_COMMA] = ACTIONS(12503), + [anon_sym_EQ] = ACTIONS(12503), + [sym_word] = ACTIONS(12503), + [sym_param] = ACTIONS(12503), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12503), + [anon_sym_DOLLAR] = ACTIONS(12505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12503), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12503), + [anon_sym_BSLASHbegin] = ACTIONS(12505), + [anon_sym_BSLASHcaption] = ACTIONS(12505), + [anon_sym_BSLASHcite] = ACTIONS(12505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCite] = ACTIONS(12505), + [anon_sym_BSLASHnocite] = ACTIONS(12505), + [anon_sym_BSLASHcitet] = ACTIONS(12505), + [anon_sym_BSLASHcitep] = ACTIONS(12505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteauthor] = ACTIONS(12505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitetitle] = ACTIONS(12505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteyear] = ACTIONS(12505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitedate] = ACTIONS(12505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteurl] = ACTIONS(12505), + [anon_sym_BSLASHfullcite] = ACTIONS(12505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12505), + [anon_sym_BSLASHcitealt] = ACTIONS(12505), + [anon_sym_BSLASHcitealp] = ACTIONS(12505), + [anon_sym_BSLASHcitetext] = ACTIONS(12505), + [anon_sym_BSLASHparencite] = ACTIONS(12505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHParencite] = ACTIONS(12505), + [anon_sym_BSLASHfootcite] = ACTIONS(12505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12505), + [anon_sym_BSLASHtextcite] = ACTIONS(12505), + [anon_sym_BSLASHTextcite] = ACTIONS(12505), + [anon_sym_BSLASHsmartcite] = ACTIONS(12505), + [anon_sym_BSLASHSmartcite] = ACTIONS(12505), + [anon_sym_BSLASHsupercite] = ACTIONS(12505), + [anon_sym_BSLASHautocite] = ACTIONS(12505), + [anon_sym_BSLASHAutocite] = ACTIONS(12505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHvolcite] = ACTIONS(12505), + [anon_sym_BSLASHVolcite] = ACTIONS(12505), + [anon_sym_BSLASHpvolcite] = ACTIONS(12505), + [anon_sym_BSLASHPvolcite] = ACTIONS(12505), + [anon_sym_BSLASHfvolcite] = ACTIONS(12505), + [anon_sym_BSLASHftvolcite] = ACTIONS(12505), + [anon_sym_BSLASHsvolcite] = ACTIONS(12505), + [anon_sym_BSLASHSvolcite] = ACTIONS(12505), + [anon_sym_BSLASHtvolcite] = ACTIONS(12505), + [anon_sym_BSLASHTvolcite] = ACTIONS(12505), + [anon_sym_BSLASHavolcite] = ACTIONS(12505), + [anon_sym_BSLASHAvolcite] = ACTIONS(12505), + [anon_sym_BSLASHnotecite] = ACTIONS(12505), + [anon_sym_BSLASHpnotecite] = ACTIONS(12505), + [anon_sym_BSLASHPnotecite] = ACTIONS(12505), + [anon_sym_BSLASHfnotecite] = ACTIONS(12505), + [anon_sym_BSLASHusepackage] = ACTIONS(12505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12505), + [anon_sym_BSLASHinclude] = ACTIONS(12505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12505), + [anon_sym_BSLASHinput] = ACTIONS(12505), + [anon_sym_BSLASHsubfile] = ACTIONS(12505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12505), + [anon_sym_BSLASHbibliography] = ACTIONS(12505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12505), + [anon_sym_BSLASHincludesvg] = ACTIONS(12505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12505), + [anon_sym_BSLASHimport] = ACTIONS(12505), + [anon_sym_BSLASHsubimport] = ACTIONS(12505), + [anon_sym_BSLASHinputfrom] = ACTIONS(12505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12505), + [anon_sym_BSLASHincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHlabel] = ACTIONS(12505), + [anon_sym_BSLASHref] = ACTIONS(12505), + [anon_sym_BSLASHvref] = ACTIONS(12505), + [anon_sym_BSLASHVref] = ACTIONS(12505), + [anon_sym_BSLASHautoref] = ACTIONS(12505), + [anon_sym_BSLASHpageref] = ACTIONS(12505), + [anon_sym_BSLASHcref] = ACTIONS(12505), + [anon_sym_BSLASHCref] = ACTIONS(12505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnameCref] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHlabelcref] = ACTIONS(12505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12505), + [anon_sym_BSLASHeqref] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange] = ACTIONS(12505), + [anon_sym_BSLASHCrefrange] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewlabel] = ACTIONS(12505), + [anon_sym_BSLASHnewcommand] = ACTIONS(12505), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12505), + [anon_sym_BSLASHgls] = ACTIONS(12505), + [anon_sym_BSLASHGls] = ACTIONS(12505), + [anon_sym_BSLASHGLS] = ACTIONS(12505), + [anon_sym_BSLASHglspl] = ACTIONS(12505), + [anon_sym_BSLASHGlspl] = ACTIONS(12505), + [anon_sym_BSLASHGLSpl] = ACTIONS(12505), + [anon_sym_BSLASHglsdisp] = ACTIONS(12505), + [anon_sym_BSLASHglslink] = ACTIONS(12505), + [anon_sym_BSLASHglstext] = ACTIONS(12505), + [anon_sym_BSLASHGlstext] = ACTIONS(12505), + [anon_sym_BSLASHGLStext] = ACTIONS(12505), + [anon_sym_BSLASHglsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12505), + [anon_sym_BSLASHglsplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSplural] = ACTIONS(12505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHglsname] = ACTIONS(12505), + [anon_sym_BSLASHGlsname] = ACTIONS(12505), + [anon_sym_BSLASHGLSname] = ACTIONS(12505), + [anon_sym_BSLASHglssymbol] = ACTIONS(12505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12505), + [anon_sym_BSLASHglsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12505), + [anon_sym_BSLASHglsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12505), + [anon_sym_BSLASHglsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12505), + [anon_sym_BSLASHglsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12505), + [anon_sym_BSLASHglsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12505), + [anon_sym_BSLASHnewacronym] = ACTIONS(12505), + [anon_sym_BSLASHacrshort] = ACTIONS(12505), + [anon_sym_BSLASHAcrshort] = ACTIONS(12505), + [anon_sym_BSLASHACRshort] = ACTIONS(12505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12505), + [anon_sym_BSLASHacrlong] = ACTIONS(12505), + [anon_sym_BSLASHAcrlong] = ACTIONS(12505), + [anon_sym_BSLASHACRlong] = ACTIONS(12505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12505), + [anon_sym_BSLASHacrfull] = ACTIONS(12505), + [anon_sym_BSLASHAcrfull] = ACTIONS(12505), + [anon_sym_BSLASHACRfull] = ACTIONS(12505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12505), + [anon_sym_BSLASHacs] = ACTIONS(12505), + [anon_sym_BSLASHAcs] = ACTIONS(12505), + [anon_sym_BSLASHacsp] = ACTIONS(12505), + [anon_sym_BSLASHAcsp] = ACTIONS(12505), + [anon_sym_BSLASHacl] = ACTIONS(12505), + [anon_sym_BSLASHAcl] = ACTIONS(12505), + [anon_sym_BSLASHaclp] = ACTIONS(12505), + [anon_sym_BSLASHAclp] = ACTIONS(12505), + [anon_sym_BSLASHacf] = ACTIONS(12505), + [anon_sym_BSLASHAcf] = ACTIONS(12505), + [anon_sym_BSLASHacfp] = ACTIONS(12505), + [anon_sym_BSLASHAcfp] = ACTIONS(12505), + [anon_sym_BSLASHac] = ACTIONS(12505), + [anon_sym_BSLASHAc] = ACTIONS(12505), + [anon_sym_BSLASHacp] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12505), + [anon_sym_BSLASHcolor] = ACTIONS(12505), + [anon_sym_BSLASHcolorbox] = ACTIONS(12505), + [anon_sym_BSLASHtextcolor] = ACTIONS(12505), + [anon_sym_BSLASHpagecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12505), + }, + [753] = { + [sym_generic_command_name] = ACTIONS(12152), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12152), + [aux_sym_chapter_token1] = ACTIONS(12152), + [aux_sym_section_token1] = ACTIONS(12152), + [aux_sym_subsection_token1] = ACTIONS(12152), + [aux_sym_subsubsection_token1] = ACTIONS(12152), + [aux_sym_paragraph_token1] = ACTIONS(12152), + [aux_sym_subparagraph_token1] = ACTIONS(12152), + [anon_sym_BSLASHitem] = ACTIONS(12152), + [anon_sym_LBRACK] = ACTIONS(12150), + [anon_sym_LBRACE] = ACTIONS(12150), + [anon_sym_LPAREN] = ACTIONS(12150), + [anon_sym_COMMA] = ACTIONS(12150), + [anon_sym_EQ] = ACTIONS(12150), + [sym_word] = ACTIONS(12150), + [sym_param] = ACTIONS(12150), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12150), + [anon_sym_DOLLAR] = ACTIONS(12152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12150), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12150), + [anon_sym_BSLASHbegin] = ACTIONS(12152), + [anon_sym_BSLASHcaption] = ACTIONS(12152), + [anon_sym_BSLASHcite] = ACTIONS(12152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCite] = ACTIONS(12152), + [anon_sym_BSLASHnocite] = ACTIONS(12152), + [anon_sym_BSLASHcitet] = ACTIONS(12152), + [anon_sym_BSLASHcitep] = ACTIONS(12152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteauthor] = ACTIONS(12152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitetitle] = ACTIONS(12152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteyear] = ACTIONS(12152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitedate] = ACTIONS(12152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteurl] = ACTIONS(12152), + [anon_sym_BSLASHfullcite] = ACTIONS(12152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12152), + [anon_sym_BSLASHcitealt] = ACTIONS(12152), + [anon_sym_BSLASHcitealp] = ACTIONS(12152), + [anon_sym_BSLASHcitetext] = ACTIONS(12152), + [anon_sym_BSLASHparencite] = ACTIONS(12152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHParencite] = ACTIONS(12152), + [anon_sym_BSLASHfootcite] = ACTIONS(12152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12152), + [anon_sym_BSLASHtextcite] = ACTIONS(12152), + [anon_sym_BSLASHTextcite] = ACTIONS(12152), + [anon_sym_BSLASHsmartcite] = ACTIONS(12152), + [anon_sym_BSLASHSmartcite] = ACTIONS(12152), + [anon_sym_BSLASHsupercite] = ACTIONS(12152), + [anon_sym_BSLASHautocite] = ACTIONS(12152), + [anon_sym_BSLASHAutocite] = ACTIONS(12152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHvolcite] = ACTIONS(12152), + [anon_sym_BSLASHVolcite] = ACTIONS(12152), + [anon_sym_BSLASHpvolcite] = ACTIONS(12152), + [anon_sym_BSLASHPvolcite] = ACTIONS(12152), + [anon_sym_BSLASHfvolcite] = ACTIONS(12152), + [anon_sym_BSLASHftvolcite] = ACTIONS(12152), + [anon_sym_BSLASHsvolcite] = ACTIONS(12152), + [anon_sym_BSLASHSvolcite] = ACTIONS(12152), + [anon_sym_BSLASHtvolcite] = ACTIONS(12152), + [anon_sym_BSLASHTvolcite] = ACTIONS(12152), + [anon_sym_BSLASHavolcite] = ACTIONS(12152), + [anon_sym_BSLASHAvolcite] = ACTIONS(12152), + [anon_sym_BSLASHnotecite] = ACTIONS(12152), + [anon_sym_BSLASHpnotecite] = ACTIONS(12152), + [anon_sym_BSLASHPnotecite] = ACTIONS(12152), + [anon_sym_BSLASHfnotecite] = ACTIONS(12152), + [anon_sym_BSLASHusepackage] = ACTIONS(12152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12152), + [anon_sym_BSLASHinclude] = ACTIONS(12152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12152), + [anon_sym_BSLASHinput] = ACTIONS(12152), + [anon_sym_BSLASHsubfile] = ACTIONS(12152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12152), + [anon_sym_BSLASHbibliography] = ACTIONS(12152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12152), + [anon_sym_BSLASHincludesvg] = ACTIONS(12152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12152), + [anon_sym_BSLASHimport] = ACTIONS(12152), + [anon_sym_BSLASHsubimport] = ACTIONS(12152), + [anon_sym_BSLASHinputfrom] = ACTIONS(12152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12152), + [anon_sym_BSLASHincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHlabel] = ACTIONS(12152), + [anon_sym_BSLASHref] = ACTIONS(12152), + [anon_sym_BSLASHvref] = ACTIONS(12152), + [anon_sym_BSLASHVref] = ACTIONS(12152), + [anon_sym_BSLASHautoref] = ACTIONS(12152), + [anon_sym_BSLASHpageref] = ACTIONS(12152), + [anon_sym_BSLASHcref] = ACTIONS(12152), + [anon_sym_BSLASHCref] = ACTIONS(12152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnameCref] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHlabelcref] = ACTIONS(12152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12152), + [anon_sym_BSLASHeqref] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange] = ACTIONS(12152), + [anon_sym_BSLASHCrefrange] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewlabel] = ACTIONS(12152), + [anon_sym_BSLASHnewcommand] = ACTIONS(12152), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12152), + [anon_sym_BSLASHgls] = ACTIONS(12152), + [anon_sym_BSLASHGls] = ACTIONS(12152), + [anon_sym_BSLASHGLS] = ACTIONS(12152), + [anon_sym_BSLASHglspl] = ACTIONS(12152), + [anon_sym_BSLASHGlspl] = ACTIONS(12152), + [anon_sym_BSLASHGLSpl] = ACTIONS(12152), + [anon_sym_BSLASHglsdisp] = ACTIONS(12152), + [anon_sym_BSLASHglslink] = ACTIONS(12152), + [anon_sym_BSLASHglstext] = ACTIONS(12152), + [anon_sym_BSLASHGlstext] = ACTIONS(12152), + [anon_sym_BSLASHGLStext] = ACTIONS(12152), + [anon_sym_BSLASHglsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12152), + [anon_sym_BSLASHglsplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSplural] = ACTIONS(12152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHglsname] = ACTIONS(12152), + [anon_sym_BSLASHGlsname] = ACTIONS(12152), + [anon_sym_BSLASHGLSname] = ACTIONS(12152), + [anon_sym_BSLASHglssymbol] = ACTIONS(12152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12152), + [anon_sym_BSLASHglsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12152), + [anon_sym_BSLASHglsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12152), + [anon_sym_BSLASHglsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12152), + [anon_sym_BSLASHglsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12152), + [anon_sym_BSLASHglsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12152), + [anon_sym_BSLASHnewacronym] = ACTIONS(12152), + [anon_sym_BSLASHacrshort] = ACTIONS(12152), + [anon_sym_BSLASHAcrshort] = ACTIONS(12152), + [anon_sym_BSLASHACRshort] = ACTIONS(12152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12152), + [anon_sym_BSLASHacrlong] = ACTIONS(12152), + [anon_sym_BSLASHAcrlong] = ACTIONS(12152), + [anon_sym_BSLASHACRlong] = ACTIONS(12152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12152), + [anon_sym_BSLASHacrfull] = ACTIONS(12152), + [anon_sym_BSLASHAcrfull] = ACTIONS(12152), + [anon_sym_BSLASHACRfull] = ACTIONS(12152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12152), + [anon_sym_BSLASHacs] = ACTIONS(12152), + [anon_sym_BSLASHAcs] = ACTIONS(12152), + [anon_sym_BSLASHacsp] = ACTIONS(12152), + [anon_sym_BSLASHAcsp] = ACTIONS(12152), + [anon_sym_BSLASHacl] = ACTIONS(12152), + [anon_sym_BSLASHAcl] = ACTIONS(12152), + [anon_sym_BSLASHaclp] = ACTIONS(12152), + [anon_sym_BSLASHAclp] = ACTIONS(12152), + [anon_sym_BSLASHacf] = ACTIONS(12152), + [anon_sym_BSLASHAcf] = ACTIONS(12152), + [anon_sym_BSLASHacfp] = ACTIONS(12152), + [anon_sym_BSLASHAcfp] = ACTIONS(12152), + [anon_sym_BSLASHac] = ACTIONS(12152), + [anon_sym_BSLASHAc] = ACTIONS(12152), + [anon_sym_BSLASHacp] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12152), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12152), + [anon_sym_BSLASHcolor] = ACTIONS(12152), + [anon_sym_BSLASHcolorbox] = ACTIONS(12152), + [anon_sym_BSLASHtextcolor] = ACTIONS(12152), + [anon_sym_BSLASHpagecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12152), + }, + [754] = { + [sym_generic_command_name] = ACTIONS(12473), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12473), + [aux_sym_chapter_token1] = ACTIONS(12473), + [aux_sym_section_token1] = ACTIONS(12473), + [aux_sym_subsection_token1] = ACTIONS(12473), + [aux_sym_subsubsection_token1] = ACTIONS(12473), + [aux_sym_paragraph_token1] = ACTIONS(12473), + [aux_sym_subparagraph_token1] = ACTIONS(12473), + [anon_sym_BSLASHitem] = ACTIONS(12473), + [anon_sym_LBRACK] = ACTIONS(12471), + [anon_sym_LBRACE] = ACTIONS(12471), + [anon_sym_LPAREN] = ACTIONS(12471), + [anon_sym_COMMA] = ACTIONS(12471), + [anon_sym_EQ] = ACTIONS(12471), + [sym_word] = ACTIONS(12471), + [sym_param] = ACTIONS(12471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12471), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12471), + [anon_sym_DOLLAR] = ACTIONS(12473), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12471), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12471), + [anon_sym_BSLASHbegin] = ACTIONS(12473), + [anon_sym_BSLASHcaption] = ACTIONS(12473), + [anon_sym_BSLASHcite] = ACTIONS(12473), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCite] = ACTIONS(12473), + [anon_sym_BSLASHnocite] = ACTIONS(12473), + [anon_sym_BSLASHcitet] = ACTIONS(12473), + [anon_sym_BSLASHcitep] = ACTIONS(12473), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteauthor] = ACTIONS(12473), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12473), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitetitle] = ACTIONS(12473), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteyear] = ACTIONS(12473), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitedate] = ACTIONS(12473), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteurl] = ACTIONS(12473), + [anon_sym_BSLASHfullcite] = ACTIONS(12473), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12473), + [anon_sym_BSLASHcitealt] = ACTIONS(12473), + [anon_sym_BSLASHcitealp] = ACTIONS(12473), + [anon_sym_BSLASHcitetext] = ACTIONS(12473), + [anon_sym_BSLASHparencite] = ACTIONS(12473), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHParencite] = ACTIONS(12473), + [anon_sym_BSLASHfootcite] = ACTIONS(12473), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12473), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12473), + [anon_sym_BSLASHtextcite] = ACTIONS(12473), + [anon_sym_BSLASHTextcite] = ACTIONS(12473), + [anon_sym_BSLASHsmartcite] = ACTIONS(12473), + [anon_sym_BSLASHSmartcite] = ACTIONS(12473), + [anon_sym_BSLASHsupercite] = ACTIONS(12473), + [anon_sym_BSLASHautocite] = ACTIONS(12473), + [anon_sym_BSLASHAutocite] = ACTIONS(12473), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHvolcite] = ACTIONS(12473), + [anon_sym_BSLASHVolcite] = ACTIONS(12473), + [anon_sym_BSLASHpvolcite] = ACTIONS(12473), + [anon_sym_BSLASHPvolcite] = ACTIONS(12473), + [anon_sym_BSLASHfvolcite] = ACTIONS(12473), + [anon_sym_BSLASHftvolcite] = ACTIONS(12473), + [anon_sym_BSLASHsvolcite] = ACTIONS(12473), + [anon_sym_BSLASHSvolcite] = ACTIONS(12473), + [anon_sym_BSLASHtvolcite] = ACTIONS(12473), + [anon_sym_BSLASHTvolcite] = ACTIONS(12473), + [anon_sym_BSLASHavolcite] = ACTIONS(12473), + [anon_sym_BSLASHAvolcite] = ACTIONS(12473), + [anon_sym_BSLASHnotecite] = ACTIONS(12473), + [anon_sym_BSLASHpnotecite] = ACTIONS(12473), + [anon_sym_BSLASHPnotecite] = ACTIONS(12473), + [anon_sym_BSLASHfnotecite] = ACTIONS(12473), + [anon_sym_BSLASHusepackage] = ACTIONS(12473), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12473), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12473), + [anon_sym_BSLASHinclude] = ACTIONS(12473), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12473), + [anon_sym_BSLASHinput] = ACTIONS(12473), + [anon_sym_BSLASHsubfile] = ACTIONS(12473), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12473), + [anon_sym_BSLASHbibliography] = ACTIONS(12473), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12473), + [anon_sym_BSLASHincludesvg] = ACTIONS(12473), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12473), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12473), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12473), + [anon_sym_BSLASHimport] = ACTIONS(12473), + [anon_sym_BSLASHsubimport] = ACTIONS(12473), + [anon_sym_BSLASHinputfrom] = ACTIONS(12473), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12473), + [anon_sym_BSLASHincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHlabel] = ACTIONS(12473), + [anon_sym_BSLASHref] = ACTIONS(12473), + [anon_sym_BSLASHvref] = ACTIONS(12473), + [anon_sym_BSLASHVref] = ACTIONS(12473), + [anon_sym_BSLASHautoref] = ACTIONS(12473), + [anon_sym_BSLASHpageref] = ACTIONS(12473), + [anon_sym_BSLASHcref] = ACTIONS(12473), + [anon_sym_BSLASHCref] = ACTIONS(12473), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnameCref] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHlabelcref] = ACTIONS(12473), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12473), + [anon_sym_BSLASHeqref] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange] = ACTIONS(12473), + [anon_sym_BSLASHCrefrange] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewlabel] = ACTIONS(12473), + [anon_sym_BSLASHnewcommand] = ACTIONS(12473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12473), + [anon_sym_BSLASHgls] = ACTIONS(12473), + [anon_sym_BSLASHGls] = ACTIONS(12473), + [anon_sym_BSLASHGLS] = ACTIONS(12473), + [anon_sym_BSLASHglspl] = ACTIONS(12473), + [anon_sym_BSLASHGlspl] = ACTIONS(12473), + [anon_sym_BSLASHGLSpl] = ACTIONS(12473), + [anon_sym_BSLASHglsdisp] = ACTIONS(12473), + [anon_sym_BSLASHglslink] = ACTIONS(12473), + [anon_sym_BSLASHglstext] = ACTIONS(12473), + [anon_sym_BSLASHGlstext] = ACTIONS(12473), + [anon_sym_BSLASHGLStext] = ACTIONS(12473), + [anon_sym_BSLASHglsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12473), + [anon_sym_BSLASHglsplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSplural] = ACTIONS(12473), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHglsname] = ACTIONS(12473), + [anon_sym_BSLASHGlsname] = ACTIONS(12473), + [anon_sym_BSLASHGLSname] = ACTIONS(12473), + [anon_sym_BSLASHglssymbol] = ACTIONS(12473), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12473), + [anon_sym_BSLASHglsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12473), + [anon_sym_BSLASHglsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12473), + [anon_sym_BSLASHglsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12473), + [anon_sym_BSLASHglsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12473), + [anon_sym_BSLASHglsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12473), + [anon_sym_BSLASHnewacronym] = ACTIONS(12473), + [anon_sym_BSLASHacrshort] = ACTIONS(12473), + [anon_sym_BSLASHAcrshort] = ACTIONS(12473), + [anon_sym_BSLASHACRshort] = ACTIONS(12473), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12473), + [anon_sym_BSLASHacrlong] = ACTIONS(12473), + [anon_sym_BSLASHAcrlong] = ACTIONS(12473), + [anon_sym_BSLASHACRlong] = ACTIONS(12473), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12473), + [anon_sym_BSLASHacrfull] = ACTIONS(12473), + [anon_sym_BSLASHAcrfull] = ACTIONS(12473), + [anon_sym_BSLASHACRfull] = ACTIONS(12473), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12473), + [anon_sym_BSLASHacs] = ACTIONS(12473), + [anon_sym_BSLASHAcs] = ACTIONS(12473), + [anon_sym_BSLASHacsp] = ACTIONS(12473), + [anon_sym_BSLASHAcsp] = ACTIONS(12473), + [anon_sym_BSLASHacl] = ACTIONS(12473), + [anon_sym_BSLASHAcl] = ACTIONS(12473), + [anon_sym_BSLASHaclp] = ACTIONS(12473), + [anon_sym_BSLASHAclp] = ACTIONS(12473), + [anon_sym_BSLASHacf] = ACTIONS(12473), + [anon_sym_BSLASHAcf] = ACTIONS(12473), + [anon_sym_BSLASHacfp] = ACTIONS(12473), + [anon_sym_BSLASHAcfp] = ACTIONS(12473), + [anon_sym_BSLASHac] = ACTIONS(12473), + [anon_sym_BSLASHAc] = ACTIONS(12473), + [anon_sym_BSLASHacp] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12473), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12473), + [anon_sym_BSLASHcolor] = ACTIONS(12473), + [anon_sym_BSLASHcolorbox] = ACTIONS(12473), + [anon_sym_BSLASHtextcolor] = ACTIONS(12473), + [anon_sym_BSLASHpagecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12473), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12473), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12473), + }, + [755] = { + [sym_generic_command_name] = ACTIONS(12457), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12457), + [aux_sym_chapter_token1] = ACTIONS(12457), + [aux_sym_section_token1] = ACTIONS(12457), + [aux_sym_subsection_token1] = ACTIONS(12457), + [aux_sym_subsubsection_token1] = ACTIONS(12457), + [aux_sym_paragraph_token1] = ACTIONS(12457), + [aux_sym_subparagraph_token1] = ACTIONS(12457), + [anon_sym_BSLASHitem] = ACTIONS(12457), + [anon_sym_LBRACK] = ACTIONS(12455), + [anon_sym_LBRACE] = ACTIONS(12455), + [anon_sym_LPAREN] = ACTIONS(12455), + [anon_sym_COMMA] = ACTIONS(12455), + [anon_sym_EQ] = ACTIONS(12455), + [sym_word] = ACTIONS(12455), + [sym_param] = ACTIONS(12455), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12455), + [anon_sym_DOLLAR] = ACTIONS(12457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12455), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12455), + [anon_sym_BSLASHbegin] = ACTIONS(12457), + [anon_sym_BSLASHcaption] = ACTIONS(12457), + [anon_sym_BSLASHcite] = ACTIONS(12457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCite] = ACTIONS(12457), + [anon_sym_BSLASHnocite] = ACTIONS(12457), + [anon_sym_BSLASHcitet] = ACTIONS(12457), + [anon_sym_BSLASHcitep] = ACTIONS(12457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteauthor] = ACTIONS(12457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitetitle] = ACTIONS(12457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteyear] = ACTIONS(12457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitedate] = ACTIONS(12457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteurl] = ACTIONS(12457), + [anon_sym_BSLASHfullcite] = ACTIONS(12457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12457), + [anon_sym_BSLASHcitealt] = ACTIONS(12457), + [anon_sym_BSLASHcitealp] = ACTIONS(12457), + [anon_sym_BSLASHcitetext] = ACTIONS(12457), + [anon_sym_BSLASHparencite] = ACTIONS(12457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHParencite] = ACTIONS(12457), + [anon_sym_BSLASHfootcite] = ACTIONS(12457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12457), + [anon_sym_BSLASHtextcite] = ACTIONS(12457), + [anon_sym_BSLASHTextcite] = ACTIONS(12457), + [anon_sym_BSLASHsmartcite] = ACTIONS(12457), + [anon_sym_BSLASHSmartcite] = ACTIONS(12457), + [anon_sym_BSLASHsupercite] = ACTIONS(12457), + [anon_sym_BSLASHautocite] = ACTIONS(12457), + [anon_sym_BSLASHAutocite] = ACTIONS(12457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHvolcite] = ACTIONS(12457), + [anon_sym_BSLASHVolcite] = ACTIONS(12457), + [anon_sym_BSLASHpvolcite] = ACTIONS(12457), + [anon_sym_BSLASHPvolcite] = ACTIONS(12457), + [anon_sym_BSLASHfvolcite] = ACTIONS(12457), + [anon_sym_BSLASHftvolcite] = ACTIONS(12457), + [anon_sym_BSLASHsvolcite] = ACTIONS(12457), + [anon_sym_BSLASHSvolcite] = ACTIONS(12457), + [anon_sym_BSLASHtvolcite] = ACTIONS(12457), + [anon_sym_BSLASHTvolcite] = ACTIONS(12457), + [anon_sym_BSLASHavolcite] = ACTIONS(12457), + [anon_sym_BSLASHAvolcite] = ACTIONS(12457), + [anon_sym_BSLASHnotecite] = ACTIONS(12457), + [anon_sym_BSLASHpnotecite] = ACTIONS(12457), + [anon_sym_BSLASHPnotecite] = ACTIONS(12457), + [anon_sym_BSLASHfnotecite] = ACTIONS(12457), + [anon_sym_BSLASHusepackage] = ACTIONS(12457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12457), + [anon_sym_BSLASHinclude] = ACTIONS(12457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12457), + [anon_sym_BSLASHinput] = ACTIONS(12457), + [anon_sym_BSLASHsubfile] = ACTIONS(12457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12457), + [anon_sym_BSLASHbibliography] = ACTIONS(12457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12457), + [anon_sym_BSLASHincludesvg] = ACTIONS(12457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12457), + [anon_sym_BSLASHimport] = ACTIONS(12457), + [anon_sym_BSLASHsubimport] = ACTIONS(12457), + [anon_sym_BSLASHinputfrom] = ACTIONS(12457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12457), + [anon_sym_BSLASHincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHlabel] = ACTIONS(12457), + [anon_sym_BSLASHref] = ACTIONS(12457), + [anon_sym_BSLASHvref] = ACTIONS(12457), + [anon_sym_BSLASHVref] = ACTIONS(12457), + [anon_sym_BSLASHautoref] = ACTIONS(12457), + [anon_sym_BSLASHpageref] = ACTIONS(12457), + [anon_sym_BSLASHcref] = ACTIONS(12457), + [anon_sym_BSLASHCref] = ACTIONS(12457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnameCref] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHlabelcref] = ACTIONS(12457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12457), + [anon_sym_BSLASHeqref] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange] = ACTIONS(12457), + [anon_sym_BSLASHCrefrange] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewlabel] = ACTIONS(12457), + [anon_sym_BSLASHnewcommand] = ACTIONS(12457), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12457), + [anon_sym_BSLASHgls] = ACTIONS(12457), + [anon_sym_BSLASHGls] = ACTIONS(12457), + [anon_sym_BSLASHGLS] = ACTIONS(12457), + [anon_sym_BSLASHglspl] = ACTIONS(12457), + [anon_sym_BSLASHGlspl] = ACTIONS(12457), + [anon_sym_BSLASHGLSpl] = ACTIONS(12457), + [anon_sym_BSLASHglsdisp] = ACTIONS(12457), + [anon_sym_BSLASHglslink] = ACTIONS(12457), + [anon_sym_BSLASHglstext] = ACTIONS(12457), + [anon_sym_BSLASHGlstext] = ACTIONS(12457), + [anon_sym_BSLASHGLStext] = ACTIONS(12457), + [anon_sym_BSLASHglsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12457), + [anon_sym_BSLASHglsplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSplural] = ACTIONS(12457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHglsname] = ACTIONS(12457), + [anon_sym_BSLASHGlsname] = ACTIONS(12457), + [anon_sym_BSLASHGLSname] = ACTIONS(12457), + [anon_sym_BSLASHglssymbol] = ACTIONS(12457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12457), + [anon_sym_BSLASHglsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12457), + [anon_sym_BSLASHglsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12457), + [anon_sym_BSLASHglsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12457), + [anon_sym_BSLASHglsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12457), + [anon_sym_BSLASHglsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12457), + [anon_sym_BSLASHnewacronym] = ACTIONS(12457), + [anon_sym_BSLASHacrshort] = ACTIONS(12457), + [anon_sym_BSLASHAcrshort] = ACTIONS(12457), + [anon_sym_BSLASHACRshort] = ACTIONS(12457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12457), + [anon_sym_BSLASHacrlong] = ACTIONS(12457), + [anon_sym_BSLASHAcrlong] = ACTIONS(12457), + [anon_sym_BSLASHACRlong] = ACTIONS(12457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12457), + [anon_sym_BSLASHacrfull] = ACTIONS(12457), + [anon_sym_BSLASHAcrfull] = ACTIONS(12457), + [anon_sym_BSLASHACRfull] = ACTIONS(12457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12457), + [anon_sym_BSLASHacs] = ACTIONS(12457), + [anon_sym_BSLASHAcs] = ACTIONS(12457), + [anon_sym_BSLASHacsp] = ACTIONS(12457), + [anon_sym_BSLASHAcsp] = ACTIONS(12457), + [anon_sym_BSLASHacl] = ACTIONS(12457), + [anon_sym_BSLASHAcl] = ACTIONS(12457), + [anon_sym_BSLASHaclp] = ACTIONS(12457), + [anon_sym_BSLASHAclp] = ACTIONS(12457), + [anon_sym_BSLASHacf] = ACTIONS(12457), + [anon_sym_BSLASHAcf] = ACTIONS(12457), + [anon_sym_BSLASHacfp] = ACTIONS(12457), + [anon_sym_BSLASHAcfp] = ACTIONS(12457), + [anon_sym_BSLASHac] = ACTIONS(12457), + [anon_sym_BSLASHAc] = ACTIONS(12457), + [anon_sym_BSLASHacp] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12457), + [anon_sym_BSLASHcolor] = ACTIONS(12457), + [anon_sym_BSLASHcolorbox] = ACTIONS(12457), + [anon_sym_BSLASHtextcolor] = ACTIONS(12457), + [anon_sym_BSLASHpagecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12457), + }, + [756] = { + [sym_generic_command_name] = ACTIONS(12417), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12417), + [aux_sym_chapter_token1] = ACTIONS(12417), + [aux_sym_section_token1] = ACTIONS(12417), + [aux_sym_subsection_token1] = ACTIONS(12417), + [aux_sym_subsubsection_token1] = ACTIONS(12417), + [aux_sym_paragraph_token1] = ACTIONS(12417), + [aux_sym_subparagraph_token1] = ACTIONS(12417), + [anon_sym_BSLASHitem] = ACTIONS(12417), + [anon_sym_LBRACK] = ACTIONS(12415), + [anon_sym_LBRACE] = ACTIONS(12415), + [anon_sym_LPAREN] = ACTIONS(12415), + [anon_sym_COMMA] = ACTIONS(12415), + [anon_sym_EQ] = ACTIONS(12415), + [sym_word] = ACTIONS(12415), + [sym_param] = ACTIONS(12415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12415), + [anon_sym_DOLLAR] = ACTIONS(12417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12415), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12415), + [anon_sym_BSLASHbegin] = ACTIONS(12417), + [anon_sym_BSLASHcaption] = ACTIONS(12417), + [anon_sym_BSLASHcite] = ACTIONS(12417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCite] = ACTIONS(12417), + [anon_sym_BSLASHnocite] = ACTIONS(12417), + [anon_sym_BSLASHcitet] = ACTIONS(12417), + [anon_sym_BSLASHcitep] = ACTIONS(12417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteauthor] = ACTIONS(12417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitetitle] = ACTIONS(12417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteyear] = ACTIONS(12417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitedate] = ACTIONS(12417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteurl] = ACTIONS(12417), + [anon_sym_BSLASHfullcite] = ACTIONS(12417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12417), + [anon_sym_BSLASHcitealt] = ACTIONS(12417), + [anon_sym_BSLASHcitealp] = ACTIONS(12417), + [anon_sym_BSLASHcitetext] = ACTIONS(12417), + [anon_sym_BSLASHparencite] = ACTIONS(12417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHParencite] = ACTIONS(12417), + [anon_sym_BSLASHfootcite] = ACTIONS(12417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12417), + [anon_sym_BSLASHtextcite] = ACTIONS(12417), + [anon_sym_BSLASHTextcite] = ACTIONS(12417), + [anon_sym_BSLASHsmartcite] = ACTIONS(12417), + [anon_sym_BSLASHSmartcite] = ACTIONS(12417), + [anon_sym_BSLASHsupercite] = ACTIONS(12417), + [anon_sym_BSLASHautocite] = ACTIONS(12417), + [anon_sym_BSLASHAutocite] = ACTIONS(12417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHvolcite] = ACTIONS(12417), + [anon_sym_BSLASHVolcite] = ACTIONS(12417), + [anon_sym_BSLASHpvolcite] = ACTIONS(12417), + [anon_sym_BSLASHPvolcite] = ACTIONS(12417), + [anon_sym_BSLASHfvolcite] = ACTIONS(12417), + [anon_sym_BSLASHftvolcite] = ACTIONS(12417), + [anon_sym_BSLASHsvolcite] = ACTIONS(12417), + [anon_sym_BSLASHSvolcite] = ACTIONS(12417), + [anon_sym_BSLASHtvolcite] = ACTIONS(12417), + [anon_sym_BSLASHTvolcite] = ACTIONS(12417), + [anon_sym_BSLASHavolcite] = ACTIONS(12417), + [anon_sym_BSLASHAvolcite] = ACTIONS(12417), + [anon_sym_BSLASHnotecite] = ACTIONS(12417), + [anon_sym_BSLASHpnotecite] = ACTIONS(12417), + [anon_sym_BSLASHPnotecite] = ACTIONS(12417), + [anon_sym_BSLASHfnotecite] = ACTIONS(12417), + [anon_sym_BSLASHusepackage] = ACTIONS(12417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12417), + [anon_sym_BSLASHinclude] = ACTIONS(12417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12417), + [anon_sym_BSLASHinput] = ACTIONS(12417), + [anon_sym_BSLASHsubfile] = ACTIONS(12417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12417), + [anon_sym_BSLASHbibliography] = ACTIONS(12417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12417), + [anon_sym_BSLASHincludesvg] = ACTIONS(12417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12417), + [anon_sym_BSLASHimport] = ACTIONS(12417), + [anon_sym_BSLASHsubimport] = ACTIONS(12417), + [anon_sym_BSLASHinputfrom] = ACTIONS(12417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12417), + [anon_sym_BSLASHincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHlabel] = ACTIONS(12417), + [anon_sym_BSLASHref] = ACTIONS(12417), + [anon_sym_BSLASHvref] = ACTIONS(12417), + [anon_sym_BSLASHVref] = ACTIONS(12417), + [anon_sym_BSLASHautoref] = ACTIONS(12417), + [anon_sym_BSLASHpageref] = ACTIONS(12417), + [anon_sym_BSLASHcref] = ACTIONS(12417), + [anon_sym_BSLASHCref] = ACTIONS(12417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnameCref] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHlabelcref] = ACTIONS(12417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12417), + [anon_sym_BSLASHeqref] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange] = ACTIONS(12417), + [anon_sym_BSLASHCrefrange] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewlabel] = ACTIONS(12417), + [anon_sym_BSLASHnewcommand] = ACTIONS(12417), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12417), + [anon_sym_BSLASHgls] = ACTIONS(12417), + [anon_sym_BSLASHGls] = ACTIONS(12417), + [anon_sym_BSLASHGLS] = ACTIONS(12417), + [anon_sym_BSLASHglspl] = ACTIONS(12417), + [anon_sym_BSLASHGlspl] = ACTIONS(12417), + [anon_sym_BSLASHGLSpl] = ACTIONS(12417), + [anon_sym_BSLASHglsdisp] = ACTIONS(12417), + [anon_sym_BSLASHglslink] = ACTIONS(12417), + [anon_sym_BSLASHglstext] = ACTIONS(12417), + [anon_sym_BSLASHGlstext] = ACTIONS(12417), + [anon_sym_BSLASHGLStext] = ACTIONS(12417), + [anon_sym_BSLASHglsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12417), + [anon_sym_BSLASHglsplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSplural] = ACTIONS(12417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHglsname] = ACTIONS(12417), + [anon_sym_BSLASHGlsname] = ACTIONS(12417), + [anon_sym_BSLASHGLSname] = ACTIONS(12417), + [anon_sym_BSLASHglssymbol] = ACTIONS(12417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12417), + [anon_sym_BSLASHglsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12417), + [anon_sym_BSLASHglsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12417), + [anon_sym_BSLASHglsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12417), + [anon_sym_BSLASHglsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12417), + [anon_sym_BSLASHglsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12417), + [anon_sym_BSLASHnewacronym] = ACTIONS(12417), + [anon_sym_BSLASHacrshort] = ACTIONS(12417), + [anon_sym_BSLASHAcrshort] = ACTIONS(12417), + [anon_sym_BSLASHACRshort] = ACTIONS(12417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12417), + [anon_sym_BSLASHacrlong] = ACTIONS(12417), + [anon_sym_BSLASHAcrlong] = ACTIONS(12417), + [anon_sym_BSLASHACRlong] = ACTIONS(12417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12417), + [anon_sym_BSLASHacrfull] = ACTIONS(12417), + [anon_sym_BSLASHAcrfull] = ACTIONS(12417), + [anon_sym_BSLASHACRfull] = ACTIONS(12417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12417), + [anon_sym_BSLASHacs] = ACTIONS(12417), + [anon_sym_BSLASHAcs] = ACTIONS(12417), + [anon_sym_BSLASHacsp] = ACTIONS(12417), + [anon_sym_BSLASHAcsp] = ACTIONS(12417), + [anon_sym_BSLASHacl] = ACTIONS(12417), + [anon_sym_BSLASHAcl] = ACTIONS(12417), + [anon_sym_BSLASHaclp] = ACTIONS(12417), + [anon_sym_BSLASHAclp] = ACTIONS(12417), + [anon_sym_BSLASHacf] = ACTIONS(12417), + [anon_sym_BSLASHAcf] = ACTIONS(12417), + [anon_sym_BSLASHacfp] = ACTIONS(12417), + [anon_sym_BSLASHAcfp] = ACTIONS(12417), + [anon_sym_BSLASHac] = ACTIONS(12417), + [anon_sym_BSLASHAc] = ACTIONS(12417), + [anon_sym_BSLASHacp] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12417), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12417), + [anon_sym_BSLASHcolor] = ACTIONS(12417), + [anon_sym_BSLASHcolorbox] = ACTIONS(12417), + [anon_sym_BSLASHtextcolor] = ACTIONS(12417), + [anon_sym_BSLASHpagecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12417), + }, + [757] = { + [sym_generic_command_name] = ACTIONS(12389), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12389), + [aux_sym_chapter_token1] = ACTIONS(12389), + [aux_sym_section_token1] = ACTIONS(12389), + [aux_sym_subsection_token1] = ACTIONS(12389), + [aux_sym_subsubsection_token1] = ACTIONS(12389), + [aux_sym_paragraph_token1] = ACTIONS(12389), + [aux_sym_subparagraph_token1] = ACTIONS(12389), + [anon_sym_BSLASHitem] = ACTIONS(12389), + [anon_sym_LBRACK] = ACTIONS(12387), + [anon_sym_LBRACE] = ACTIONS(12387), + [anon_sym_LPAREN] = ACTIONS(12387), + [anon_sym_COMMA] = ACTIONS(12387), + [anon_sym_EQ] = ACTIONS(12387), + [sym_word] = ACTIONS(12387), + [sym_param] = ACTIONS(12387), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12387), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12387), + [anon_sym_DOLLAR] = ACTIONS(12389), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12387), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12387), + [anon_sym_BSLASHbegin] = ACTIONS(12389), + [anon_sym_BSLASHcaption] = ACTIONS(12389), + [anon_sym_BSLASHcite] = ACTIONS(12389), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCite] = ACTIONS(12389), + [anon_sym_BSLASHnocite] = ACTIONS(12389), + [anon_sym_BSLASHcitet] = ACTIONS(12389), + [anon_sym_BSLASHcitep] = ACTIONS(12389), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteauthor] = ACTIONS(12389), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12389), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitetitle] = ACTIONS(12389), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteyear] = ACTIONS(12389), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitedate] = ACTIONS(12389), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteurl] = ACTIONS(12389), + [anon_sym_BSLASHfullcite] = ACTIONS(12389), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12389), + [anon_sym_BSLASHcitealt] = ACTIONS(12389), + [anon_sym_BSLASHcitealp] = ACTIONS(12389), + [anon_sym_BSLASHcitetext] = ACTIONS(12389), + [anon_sym_BSLASHparencite] = ACTIONS(12389), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHParencite] = ACTIONS(12389), + [anon_sym_BSLASHfootcite] = ACTIONS(12389), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12389), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12389), + [anon_sym_BSLASHtextcite] = ACTIONS(12389), + [anon_sym_BSLASHTextcite] = ACTIONS(12389), + [anon_sym_BSLASHsmartcite] = ACTIONS(12389), + [anon_sym_BSLASHSmartcite] = ACTIONS(12389), + [anon_sym_BSLASHsupercite] = ACTIONS(12389), + [anon_sym_BSLASHautocite] = ACTIONS(12389), + [anon_sym_BSLASHAutocite] = ACTIONS(12389), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHvolcite] = ACTIONS(12389), + [anon_sym_BSLASHVolcite] = ACTIONS(12389), + [anon_sym_BSLASHpvolcite] = ACTIONS(12389), + [anon_sym_BSLASHPvolcite] = ACTIONS(12389), + [anon_sym_BSLASHfvolcite] = ACTIONS(12389), + [anon_sym_BSLASHftvolcite] = ACTIONS(12389), + [anon_sym_BSLASHsvolcite] = ACTIONS(12389), + [anon_sym_BSLASHSvolcite] = ACTIONS(12389), + [anon_sym_BSLASHtvolcite] = ACTIONS(12389), + [anon_sym_BSLASHTvolcite] = ACTIONS(12389), + [anon_sym_BSLASHavolcite] = ACTIONS(12389), + [anon_sym_BSLASHAvolcite] = ACTIONS(12389), + [anon_sym_BSLASHnotecite] = ACTIONS(12389), + [anon_sym_BSLASHpnotecite] = ACTIONS(12389), + [anon_sym_BSLASHPnotecite] = ACTIONS(12389), + [anon_sym_BSLASHfnotecite] = ACTIONS(12389), + [anon_sym_BSLASHusepackage] = ACTIONS(12389), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12389), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12389), + [anon_sym_BSLASHinclude] = ACTIONS(12389), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12389), + [anon_sym_BSLASHinput] = ACTIONS(12389), + [anon_sym_BSLASHsubfile] = ACTIONS(12389), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12389), + [anon_sym_BSLASHbibliography] = ACTIONS(12389), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12389), + [anon_sym_BSLASHincludesvg] = ACTIONS(12389), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12389), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12389), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12389), + [anon_sym_BSLASHimport] = ACTIONS(12389), + [anon_sym_BSLASHsubimport] = ACTIONS(12389), + [anon_sym_BSLASHinputfrom] = ACTIONS(12389), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12389), + [anon_sym_BSLASHincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHlabel] = ACTIONS(12389), + [anon_sym_BSLASHref] = ACTIONS(12389), + [anon_sym_BSLASHvref] = ACTIONS(12389), + [anon_sym_BSLASHVref] = ACTIONS(12389), + [anon_sym_BSLASHautoref] = ACTIONS(12389), + [anon_sym_BSLASHpageref] = ACTIONS(12389), + [anon_sym_BSLASHcref] = ACTIONS(12389), + [anon_sym_BSLASHCref] = ACTIONS(12389), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnameCref] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHlabelcref] = ACTIONS(12389), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12389), + [anon_sym_BSLASHeqref] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange] = ACTIONS(12389), + [anon_sym_BSLASHCrefrange] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewlabel] = ACTIONS(12389), + [anon_sym_BSLASHnewcommand] = ACTIONS(12389), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12389), + [anon_sym_BSLASHgls] = ACTIONS(12389), + [anon_sym_BSLASHGls] = ACTIONS(12389), + [anon_sym_BSLASHGLS] = ACTIONS(12389), + [anon_sym_BSLASHglspl] = ACTIONS(12389), + [anon_sym_BSLASHGlspl] = ACTIONS(12389), + [anon_sym_BSLASHGLSpl] = ACTIONS(12389), + [anon_sym_BSLASHglsdisp] = ACTIONS(12389), + [anon_sym_BSLASHglslink] = ACTIONS(12389), + [anon_sym_BSLASHglstext] = ACTIONS(12389), + [anon_sym_BSLASHGlstext] = ACTIONS(12389), + [anon_sym_BSLASHGLStext] = ACTIONS(12389), + [anon_sym_BSLASHglsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12389), + [anon_sym_BSLASHglsplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSplural] = ACTIONS(12389), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHglsname] = ACTIONS(12389), + [anon_sym_BSLASHGlsname] = ACTIONS(12389), + [anon_sym_BSLASHGLSname] = ACTIONS(12389), + [anon_sym_BSLASHglssymbol] = ACTIONS(12389), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12389), + [anon_sym_BSLASHglsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12389), + [anon_sym_BSLASHglsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12389), + [anon_sym_BSLASHglsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12389), + [anon_sym_BSLASHglsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12389), + [anon_sym_BSLASHglsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12389), + [anon_sym_BSLASHnewacronym] = ACTIONS(12389), + [anon_sym_BSLASHacrshort] = ACTIONS(12389), + [anon_sym_BSLASHAcrshort] = ACTIONS(12389), + [anon_sym_BSLASHACRshort] = ACTIONS(12389), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12389), + [anon_sym_BSLASHacrlong] = ACTIONS(12389), + [anon_sym_BSLASHAcrlong] = ACTIONS(12389), + [anon_sym_BSLASHACRlong] = ACTIONS(12389), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12389), + [anon_sym_BSLASHacrfull] = ACTIONS(12389), + [anon_sym_BSLASHAcrfull] = ACTIONS(12389), + [anon_sym_BSLASHACRfull] = ACTIONS(12389), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12389), + [anon_sym_BSLASHacs] = ACTIONS(12389), + [anon_sym_BSLASHAcs] = ACTIONS(12389), + [anon_sym_BSLASHacsp] = ACTIONS(12389), + [anon_sym_BSLASHAcsp] = ACTIONS(12389), + [anon_sym_BSLASHacl] = ACTIONS(12389), + [anon_sym_BSLASHAcl] = ACTIONS(12389), + [anon_sym_BSLASHaclp] = ACTIONS(12389), + [anon_sym_BSLASHAclp] = ACTIONS(12389), + [anon_sym_BSLASHacf] = ACTIONS(12389), + [anon_sym_BSLASHAcf] = ACTIONS(12389), + [anon_sym_BSLASHacfp] = ACTIONS(12389), + [anon_sym_BSLASHAcfp] = ACTIONS(12389), + [anon_sym_BSLASHac] = ACTIONS(12389), + [anon_sym_BSLASHAc] = ACTIONS(12389), + [anon_sym_BSLASHacp] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12389), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12389), + [anon_sym_BSLASHcolor] = ACTIONS(12389), + [anon_sym_BSLASHcolorbox] = ACTIONS(12389), + [anon_sym_BSLASHtextcolor] = ACTIONS(12389), + [anon_sym_BSLASHpagecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12389), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12389), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12389), + }, + [758] = { + [sym_generic_command_name] = ACTIONS(12385), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12385), + [aux_sym_chapter_token1] = ACTIONS(12385), + [aux_sym_section_token1] = ACTIONS(12385), + [aux_sym_subsection_token1] = ACTIONS(12385), + [aux_sym_subsubsection_token1] = ACTIONS(12385), + [aux_sym_paragraph_token1] = ACTIONS(12385), + [aux_sym_subparagraph_token1] = ACTIONS(12385), + [anon_sym_BSLASHitem] = ACTIONS(12385), + [anon_sym_LBRACK] = ACTIONS(12383), + [anon_sym_LBRACE] = ACTIONS(12383), + [anon_sym_LPAREN] = ACTIONS(12383), + [anon_sym_COMMA] = ACTIONS(12383), + [anon_sym_EQ] = ACTIONS(12383), + [sym_word] = ACTIONS(12383), + [sym_param] = ACTIONS(12383), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12383), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12383), + [anon_sym_DOLLAR] = ACTIONS(12385), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12383), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12383), + [anon_sym_BSLASHbegin] = ACTIONS(12385), + [anon_sym_BSLASHcaption] = ACTIONS(12385), + [anon_sym_BSLASHcite] = ACTIONS(12385), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCite] = ACTIONS(12385), + [anon_sym_BSLASHnocite] = ACTIONS(12385), + [anon_sym_BSLASHcitet] = ACTIONS(12385), + [anon_sym_BSLASHcitep] = ACTIONS(12385), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteauthor] = ACTIONS(12385), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12385), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitetitle] = ACTIONS(12385), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteyear] = ACTIONS(12385), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitedate] = ACTIONS(12385), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteurl] = ACTIONS(12385), + [anon_sym_BSLASHfullcite] = ACTIONS(12385), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12385), + [anon_sym_BSLASHcitealt] = ACTIONS(12385), + [anon_sym_BSLASHcitealp] = ACTIONS(12385), + [anon_sym_BSLASHcitetext] = ACTIONS(12385), + [anon_sym_BSLASHparencite] = ACTIONS(12385), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHParencite] = ACTIONS(12385), + [anon_sym_BSLASHfootcite] = ACTIONS(12385), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12385), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12385), + [anon_sym_BSLASHtextcite] = ACTIONS(12385), + [anon_sym_BSLASHTextcite] = ACTIONS(12385), + [anon_sym_BSLASHsmartcite] = ACTIONS(12385), + [anon_sym_BSLASHSmartcite] = ACTIONS(12385), + [anon_sym_BSLASHsupercite] = ACTIONS(12385), + [anon_sym_BSLASHautocite] = ACTIONS(12385), + [anon_sym_BSLASHAutocite] = ACTIONS(12385), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHvolcite] = ACTIONS(12385), + [anon_sym_BSLASHVolcite] = ACTIONS(12385), + [anon_sym_BSLASHpvolcite] = ACTIONS(12385), + [anon_sym_BSLASHPvolcite] = ACTIONS(12385), + [anon_sym_BSLASHfvolcite] = ACTIONS(12385), + [anon_sym_BSLASHftvolcite] = ACTIONS(12385), + [anon_sym_BSLASHsvolcite] = ACTIONS(12385), + [anon_sym_BSLASHSvolcite] = ACTIONS(12385), + [anon_sym_BSLASHtvolcite] = ACTIONS(12385), + [anon_sym_BSLASHTvolcite] = ACTIONS(12385), + [anon_sym_BSLASHavolcite] = ACTIONS(12385), + [anon_sym_BSLASHAvolcite] = ACTIONS(12385), + [anon_sym_BSLASHnotecite] = ACTIONS(12385), + [anon_sym_BSLASHpnotecite] = ACTIONS(12385), + [anon_sym_BSLASHPnotecite] = ACTIONS(12385), + [anon_sym_BSLASHfnotecite] = ACTIONS(12385), + [anon_sym_BSLASHusepackage] = ACTIONS(12385), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12385), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12385), + [anon_sym_BSLASHinclude] = ACTIONS(12385), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12385), + [anon_sym_BSLASHinput] = ACTIONS(12385), + [anon_sym_BSLASHsubfile] = ACTIONS(12385), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12385), + [anon_sym_BSLASHbibliography] = ACTIONS(12385), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12385), + [anon_sym_BSLASHincludesvg] = ACTIONS(12385), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12385), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12385), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12385), + [anon_sym_BSLASHimport] = ACTIONS(12385), + [anon_sym_BSLASHsubimport] = ACTIONS(12385), + [anon_sym_BSLASHinputfrom] = ACTIONS(12385), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12385), + [anon_sym_BSLASHincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHlabel] = ACTIONS(12385), + [anon_sym_BSLASHref] = ACTIONS(12385), + [anon_sym_BSLASHvref] = ACTIONS(12385), + [anon_sym_BSLASHVref] = ACTIONS(12385), + [anon_sym_BSLASHautoref] = ACTIONS(12385), + [anon_sym_BSLASHpageref] = ACTIONS(12385), + [anon_sym_BSLASHcref] = ACTIONS(12385), + [anon_sym_BSLASHCref] = ACTIONS(12385), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnameCref] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHlabelcref] = ACTIONS(12385), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12385), + [anon_sym_BSLASHeqref] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange] = ACTIONS(12385), + [anon_sym_BSLASHCrefrange] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewlabel] = ACTIONS(12385), + [anon_sym_BSLASHnewcommand] = ACTIONS(12385), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12385), + [anon_sym_BSLASHgls] = ACTIONS(12385), + [anon_sym_BSLASHGls] = ACTIONS(12385), + [anon_sym_BSLASHGLS] = ACTIONS(12385), + [anon_sym_BSLASHglspl] = ACTIONS(12385), + [anon_sym_BSLASHGlspl] = ACTIONS(12385), + [anon_sym_BSLASHGLSpl] = ACTIONS(12385), + [anon_sym_BSLASHglsdisp] = ACTIONS(12385), + [anon_sym_BSLASHglslink] = ACTIONS(12385), + [anon_sym_BSLASHglstext] = ACTIONS(12385), + [anon_sym_BSLASHGlstext] = ACTIONS(12385), + [anon_sym_BSLASHGLStext] = ACTIONS(12385), + [anon_sym_BSLASHglsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12385), + [anon_sym_BSLASHglsplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSplural] = ACTIONS(12385), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHglsname] = ACTIONS(12385), + [anon_sym_BSLASHGlsname] = ACTIONS(12385), + [anon_sym_BSLASHGLSname] = ACTIONS(12385), + [anon_sym_BSLASHglssymbol] = ACTIONS(12385), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12385), + [anon_sym_BSLASHglsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12385), + [anon_sym_BSLASHglsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12385), + [anon_sym_BSLASHglsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12385), + [anon_sym_BSLASHglsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12385), + [anon_sym_BSLASHglsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12385), + [anon_sym_BSLASHnewacronym] = ACTIONS(12385), + [anon_sym_BSLASHacrshort] = ACTIONS(12385), + [anon_sym_BSLASHAcrshort] = ACTIONS(12385), + [anon_sym_BSLASHACRshort] = ACTIONS(12385), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12385), + [anon_sym_BSLASHacrlong] = ACTIONS(12385), + [anon_sym_BSLASHAcrlong] = ACTIONS(12385), + [anon_sym_BSLASHACRlong] = ACTIONS(12385), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12385), + [anon_sym_BSLASHacrfull] = ACTIONS(12385), + [anon_sym_BSLASHAcrfull] = ACTIONS(12385), + [anon_sym_BSLASHACRfull] = ACTIONS(12385), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12385), + [anon_sym_BSLASHacs] = ACTIONS(12385), + [anon_sym_BSLASHAcs] = ACTIONS(12385), + [anon_sym_BSLASHacsp] = ACTIONS(12385), + [anon_sym_BSLASHAcsp] = ACTIONS(12385), + [anon_sym_BSLASHacl] = ACTIONS(12385), + [anon_sym_BSLASHAcl] = ACTIONS(12385), + [anon_sym_BSLASHaclp] = ACTIONS(12385), + [anon_sym_BSLASHAclp] = ACTIONS(12385), + [anon_sym_BSLASHacf] = ACTIONS(12385), + [anon_sym_BSLASHAcf] = ACTIONS(12385), + [anon_sym_BSLASHacfp] = ACTIONS(12385), + [anon_sym_BSLASHAcfp] = ACTIONS(12385), + [anon_sym_BSLASHac] = ACTIONS(12385), + [anon_sym_BSLASHAc] = ACTIONS(12385), + [anon_sym_BSLASHacp] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12385), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12385), + [anon_sym_BSLASHcolor] = ACTIONS(12385), + [anon_sym_BSLASHcolorbox] = ACTIONS(12385), + [anon_sym_BSLASHtextcolor] = ACTIONS(12385), + [anon_sym_BSLASHpagecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12385), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12385), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12385), + }, + [759] = { + [sym_generic_command_name] = ACTIONS(12128), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12128), + [aux_sym_chapter_token1] = ACTIONS(12128), + [aux_sym_section_token1] = ACTIONS(12128), + [aux_sym_subsection_token1] = ACTIONS(12128), + [aux_sym_subsubsection_token1] = ACTIONS(12128), + [aux_sym_paragraph_token1] = ACTIONS(12128), + [aux_sym_subparagraph_token1] = ACTIONS(12128), + [anon_sym_BSLASHitem] = ACTIONS(12128), + [anon_sym_LBRACK] = ACTIONS(12126), + [anon_sym_LBRACE] = ACTIONS(12126), + [anon_sym_LPAREN] = ACTIONS(12126), + [anon_sym_COMMA] = ACTIONS(12126), + [anon_sym_EQ] = ACTIONS(12126), + [sym_word] = ACTIONS(12126), + [sym_param] = ACTIONS(12126), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12126), + [anon_sym_DOLLAR] = ACTIONS(12128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12126), + [anon_sym_BSLASHbegin] = ACTIONS(12128), + [anon_sym_BSLASHend] = ACTIONS(12128), + [anon_sym_BSLASHcaption] = ACTIONS(12128), + [anon_sym_BSLASHcite] = ACTIONS(12128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCite] = ACTIONS(12128), + [anon_sym_BSLASHnocite] = ACTIONS(12128), + [anon_sym_BSLASHcitet] = ACTIONS(12128), + [anon_sym_BSLASHcitep] = ACTIONS(12128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteauthor] = ACTIONS(12128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitetitle] = ACTIONS(12128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteyear] = ACTIONS(12128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitedate] = ACTIONS(12128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteurl] = ACTIONS(12128), + [anon_sym_BSLASHfullcite] = ACTIONS(12128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12128), + [anon_sym_BSLASHcitealt] = ACTIONS(12128), + [anon_sym_BSLASHcitealp] = ACTIONS(12128), + [anon_sym_BSLASHcitetext] = ACTIONS(12128), + [anon_sym_BSLASHparencite] = ACTIONS(12128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHParencite] = ACTIONS(12128), + [anon_sym_BSLASHfootcite] = ACTIONS(12128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12128), + [anon_sym_BSLASHtextcite] = ACTIONS(12128), + [anon_sym_BSLASHTextcite] = ACTIONS(12128), + [anon_sym_BSLASHsmartcite] = ACTIONS(12128), + [anon_sym_BSLASHSmartcite] = ACTIONS(12128), + [anon_sym_BSLASHsupercite] = ACTIONS(12128), + [anon_sym_BSLASHautocite] = ACTIONS(12128), + [anon_sym_BSLASHAutocite] = ACTIONS(12128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHvolcite] = ACTIONS(12128), + [anon_sym_BSLASHVolcite] = ACTIONS(12128), + [anon_sym_BSLASHpvolcite] = ACTIONS(12128), + [anon_sym_BSLASHPvolcite] = ACTIONS(12128), + [anon_sym_BSLASHfvolcite] = ACTIONS(12128), + [anon_sym_BSLASHftvolcite] = ACTIONS(12128), + [anon_sym_BSLASHsvolcite] = ACTIONS(12128), + [anon_sym_BSLASHSvolcite] = ACTIONS(12128), + [anon_sym_BSLASHtvolcite] = ACTIONS(12128), + [anon_sym_BSLASHTvolcite] = ACTIONS(12128), + [anon_sym_BSLASHavolcite] = ACTIONS(12128), + [anon_sym_BSLASHAvolcite] = ACTIONS(12128), + [anon_sym_BSLASHnotecite] = ACTIONS(12128), + [anon_sym_BSLASHpnotecite] = ACTIONS(12128), + [anon_sym_BSLASHPnotecite] = ACTIONS(12128), + [anon_sym_BSLASHfnotecite] = ACTIONS(12128), + [anon_sym_BSLASHusepackage] = ACTIONS(12128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12128), + [anon_sym_BSLASHinclude] = ACTIONS(12128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12128), + [anon_sym_BSLASHinput] = ACTIONS(12128), + [anon_sym_BSLASHsubfile] = ACTIONS(12128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12128), + [anon_sym_BSLASHbibliography] = ACTIONS(12128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12128), + [anon_sym_BSLASHincludesvg] = ACTIONS(12128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12128), + [anon_sym_BSLASHimport] = ACTIONS(12128), + [anon_sym_BSLASHsubimport] = ACTIONS(12128), + [anon_sym_BSLASHinputfrom] = ACTIONS(12128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12128), + [anon_sym_BSLASHincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHlabel] = ACTIONS(12128), + [anon_sym_BSLASHref] = ACTIONS(12128), + [anon_sym_BSLASHvref] = ACTIONS(12128), + [anon_sym_BSLASHVref] = ACTIONS(12128), + [anon_sym_BSLASHautoref] = ACTIONS(12128), + [anon_sym_BSLASHpageref] = ACTIONS(12128), + [anon_sym_BSLASHcref] = ACTIONS(12128), + [anon_sym_BSLASHCref] = ACTIONS(12128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnameCref] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHlabelcref] = ACTIONS(12128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12128), + [anon_sym_BSLASHeqref] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange] = ACTIONS(12128), + [anon_sym_BSLASHCrefrange] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewlabel] = ACTIONS(12128), + [anon_sym_BSLASHnewcommand] = ACTIONS(12128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12128), + [anon_sym_BSLASHgls] = ACTIONS(12128), + [anon_sym_BSLASHGls] = ACTIONS(12128), + [anon_sym_BSLASHGLS] = ACTIONS(12128), + [anon_sym_BSLASHglspl] = ACTIONS(12128), + [anon_sym_BSLASHGlspl] = ACTIONS(12128), + [anon_sym_BSLASHGLSpl] = ACTIONS(12128), + [anon_sym_BSLASHglsdisp] = ACTIONS(12128), + [anon_sym_BSLASHglslink] = ACTIONS(12128), + [anon_sym_BSLASHglstext] = ACTIONS(12128), + [anon_sym_BSLASHGlstext] = ACTIONS(12128), + [anon_sym_BSLASHGLStext] = ACTIONS(12128), + [anon_sym_BSLASHglsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12128), + [anon_sym_BSLASHglsplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSplural] = ACTIONS(12128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHglsname] = ACTIONS(12128), + [anon_sym_BSLASHGlsname] = ACTIONS(12128), + [anon_sym_BSLASHGLSname] = ACTIONS(12128), + [anon_sym_BSLASHglssymbol] = ACTIONS(12128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12128), + [anon_sym_BSLASHglsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12128), + [anon_sym_BSLASHglsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12128), + [anon_sym_BSLASHglsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12128), + [anon_sym_BSLASHglsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12128), + [anon_sym_BSLASHglsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12128), + [anon_sym_BSLASHnewacronym] = ACTIONS(12128), + [anon_sym_BSLASHacrshort] = ACTIONS(12128), + [anon_sym_BSLASHAcrshort] = ACTIONS(12128), + [anon_sym_BSLASHACRshort] = ACTIONS(12128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12128), + [anon_sym_BSLASHacrlong] = ACTIONS(12128), + [anon_sym_BSLASHAcrlong] = ACTIONS(12128), + [anon_sym_BSLASHACRlong] = ACTIONS(12128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12128), + [anon_sym_BSLASHacrfull] = ACTIONS(12128), + [anon_sym_BSLASHAcrfull] = ACTIONS(12128), + [anon_sym_BSLASHACRfull] = ACTIONS(12128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12128), + [anon_sym_BSLASHacs] = ACTIONS(12128), + [anon_sym_BSLASHAcs] = ACTIONS(12128), + [anon_sym_BSLASHacsp] = ACTIONS(12128), + [anon_sym_BSLASHAcsp] = ACTIONS(12128), + [anon_sym_BSLASHacl] = ACTIONS(12128), + [anon_sym_BSLASHAcl] = ACTIONS(12128), + [anon_sym_BSLASHaclp] = ACTIONS(12128), + [anon_sym_BSLASHAclp] = ACTIONS(12128), + [anon_sym_BSLASHacf] = ACTIONS(12128), + [anon_sym_BSLASHAcf] = ACTIONS(12128), + [anon_sym_BSLASHacfp] = ACTIONS(12128), + [anon_sym_BSLASHAcfp] = ACTIONS(12128), + [anon_sym_BSLASHac] = ACTIONS(12128), + [anon_sym_BSLASHAc] = ACTIONS(12128), + [anon_sym_BSLASHacp] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12128), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12128), + [anon_sym_BSLASHcolor] = ACTIONS(12128), + [anon_sym_BSLASHcolorbox] = ACTIONS(12128), + [anon_sym_BSLASHtextcolor] = ACTIONS(12128), + [anon_sym_BSLASHpagecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12128), + }, + [760] = { + [sym_generic_command_name] = ACTIONS(12132), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12132), + [aux_sym_chapter_token1] = ACTIONS(12132), + [aux_sym_section_token1] = ACTIONS(12132), + [aux_sym_subsection_token1] = ACTIONS(12132), + [aux_sym_subsubsection_token1] = ACTIONS(12132), + [aux_sym_paragraph_token1] = ACTIONS(12132), + [aux_sym_subparagraph_token1] = ACTIONS(12132), + [anon_sym_BSLASHitem] = ACTIONS(12132), + [anon_sym_LBRACK] = ACTIONS(12130), + [anon_sym_LBRACE] = ACTIONS(12130), + [anon_sym_LPAREN] = ACTIONS(12130), + [anon_sym_COMMA] = ACTIONS(12130), + [anon_sym_EQ] = ACTIONS(12130), + [sym_word] = ACTIONS(12130), + [sym_param] = ACTIONS(12130), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12130), + [anon_sym_DOLLAR] = ACTIONS(12132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12130), + [anon_sym_BSLASHbegin] = ACTIONS(12132), + [anon_sym_BSLASHend] = ACTIONS(12132), + [anon_sym_BSLASHcaption] = ACTIONS(12132), + [anon_sym_BSLASHcite] = ACTIONS(12132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCite] = ACTIONS(12132), + [anon_sym_BSLASHnocite] = ACTIONS(12132), + [anon_sym_BSLASHcitet] = ACTIONS(12132), + [anon_sym_BSLASHcitep] = ACTIONS(12132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteauthor] = ACTIONS(12132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitetitle] = ACTIONS(12132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteyear] = ACTIONS(12132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitedate] = ACTIONS(12132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteurl] = ACTIONS(12132), + [anon_sym_BSLASHfullcite] = ACTIONS(12132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12132), + [anon_sym_BSLASHcitealt] = ACTIONS(12132), + [anon_sym_BSLASHcitealp] = ACTIONS(12132), + [anon_sym_BSLASHcitetext] = ACTIONS(12132), + [anon_sym_BSLASHparencite] = ACTIONS(12132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHParencite] = ACTIONS(12132), + [anon_sym_BSLASHfootcite] = ACTIONS(12132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12132), + [anon_sym_BSLASHtextcite] = ACTIONS(12132), + [anon_sym_BSLASHTextcite] = ACTIONS(12132), + [anon_sym_BSLASHsmartcite] = ACTIONS(12132), + [anon_sym_BSLASHSmartcite] = ACTIONS(12132), + [anon_sym_BSLASHsupercite] = ACTIONS(12132), + [anon_sym_BSLASHautocite] = ACTIONS(12132), + [anon_sym_BSLASHAutocite] = ACTIONS(12132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHvolcite] = ACTIONS(12132), + [anon_sym_BSLASHVolcite] = ACTIONS(12132), + [anon_sym_BSLASHpvolcite] = ACTIONS(12132), + [anon_sym_BSLASHPvolcite] = ACTIONS(12132), + [anon_sym_BSLASHfvolcite] = ACTIONS(12132), + [anon_sym_BSLASHftvolcite] = ACTIONS(12132), + [anon_sym_BSLASHsvolcite] = ACTIONS(12132), + [anon_sym_BSLASHSvolcite] = ACTIONS(12132), + [anon_sym_BSLASHtvolcite] = ACTIONS(12132), + [anon_sym_BSLASHTvolcite] = ACTIONS(12132), + [anon_sym_BSLASHavolcite] = ACTIONS(12132), + [anon_sym_BSLASHAvolcite] = ACTIONS(12132), + [anon_sym_BSLASHnotecite] = ACTIONS(12132), + [anon_sym_BSLASHpnotecite] = ACTIONS(12132), + [anon_sym_BSLASHPnotecite] = ACTIONS(12132), + [anon_sym_BSLASHfnotecite] = ACTIONS(12132), + [anon_sym_BSLASHusepackage] = ACTIONS(12132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12132), + [anon_sym_BSLASHinclude] = ACTIONS(12132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12132), + [anon_sym_BSLASHinput] = ACTIONS(12132), + [anon_sym_BSLASHsubfile] = ACTIONS(12132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12132), + [anon_sym_BSLASHbibliography] = ACTIONS(12132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12132), + [anon_sym_BSLASHincludesvg] = ACTIONS(12132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12132), + [anon_sym_BSLASHimport] = ACTIONS(12132), + [anon_sym_BSLASHsubimport] = ACTIONS(12132), + [anon_sym_BSLASHinputfrom] = ACTIONS(12132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12132), + [anon_sym_BSLASHincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHlabel] = ACTIONS(12132), + [anon_sym_BSLASHref] = ACTIONS(12132), + [anon_sym_BSLASHvref] = ACTIONS(12132), + [anon_sym_BSLASHVref] = ACTIONS(12132), + [anon_sym_BSLASHautoref] = ACTIONS(12132), + [anon_sym_BSLASHpageref] = ACTIONS(12132), + [anon_sym_BSLASHcref] = ACTIONS(12132), + [anon_sym_BSLASHCref] = ACTIONS(12132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnameCref] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHlabelcref] = ACTIONS(12132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12132), + [anon_sym_BSLASHeqref] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange] = ACTIONS(12132), + [anon_sym_BSLASHCrefrange] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewlabel] = ACTIONS(12132), + [anon_sym_BSLASHnewcommand] = ACTIONS(12132), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12132), + [anon_sym_BSLASHgls] = ACTIONS(12132), + [anon_sym_BSLASHGls] = ACTIONS(12132), + [anon_sym_BSLASHGLS] = ACTIONS(12132), + [anon_sym_BSLASHglspl] = ACTIONS(12132), + [anon_sym_BSLASHGlspl] = ACTIONS(12132), + [anon_sym_BSLASHGLSpl] = ACTIONS(12132), + [anon_sym_BSLASHglsdisp] = ACTIONS(12132), + [anon_sym_BSLASHglslink] = ACTIONS(12132), + [anon_sym_BSLASHglstext] = ACTIONS(12132), + [anon_sym_BSLASHGlstext] = ACTIONS(12132), + [anon_sym_BSLASHGLStext] = ACTIONS(12132), + [anon_sym_BSLASHglsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12132), + [anon_sym_BSLASHglsplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSplural] = ACTIONS(12132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHglsname] = ACTIONS(12132), + [anon_sym_BSLASHGlsname] = ACTIONS(12132), + [anon_sym_BSLASHGLSname] = ACTIONS(12132), + [anon_sym_BSLASHglssymbol] = ACTIONS(12132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12132), + [anon_sym_BSLASHglsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12132), + [anon_sym_BSLASHglsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12132), + [anon_sym_BSLASHglsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12132), + [anon_sym_BSLASHglsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12132), + [anon_sym_BSLASHglsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12132), + [anon_sym_BSLASHnewacronym] = ACTIONS(12132), + [anon_sym_BSLASHacrshort] = ACTIONS(12132), + [anon_sym_BSLASHAcrshort] = ACTIONS(12132), + [anon_sym_BSLASHACRshort] = ACTIONS(12132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12132), + [anon_sym_BSLASHacrlong] = ACTIONS(12132), + [anon_sym_BSLASHAcrlong] = ACTIONS(12132), + [anon_sym_BSLASHACRlong] = ACTIONS(12132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12132), + [anon_sym_BSLASHacrfull] = ACTIONS(12132), + [anon_sym_BSLASHAcrfull] = ACTIONS(12132), + [anon_sym_BSLASHACRfull] = ACTIONS(12132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12132), + [anon_sym_BSLASHacs] = ACTIONS(12132), + [anon_sym_BSLASHAcs] = ACTIONS(12132), + [anon_sym_BSLASHacsp] = ACTIONS(12132), + [anon_sym_BSLASHAcsp] = ACTIONS(12132), + [anon_sym_BSLASHacl] = ACTIONS(12132), + [anon_sym_BSLASHAcl] = ACTIONS(12132), + [anon_sym_BSLASHaclp] = ACTIONS(12132), + [anon_sym_BSLASHAclp] = ACTIONS(12132), + [anon_sym_BSLASHacf] = ACTIONS(12132), + [anon_sym_BSLASHAcf] = ACTIONS(12132), + [anon_sym_BSLASHacfp] = ACTIONS(12132), + [anon_sym_BSLASHAcfp] = ACTIONS(12132), + [anon_sym_BSLASHac] = ACTIONS(12132), + [anon_sym_BSLASHAc] = ACTIONS(12132), + [anon_sym_BSLASHacp] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12132), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12132), + [anon_sym_BSLASHcolor] = ACTIONS(12132), + [anon_sym_BSLASHcolorbox] = ACTIONS(12132), + [anon_sym_BSLASHtextcolor] = ACTIONS(12132), + [anon_sym_BSLASHpagecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12132), + }, + [761] = { + [sym_generic_command_name] = ACTIONS(12365), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12365), + [aux_sym_chapter_token1] = ACTIONS(12365), + [aux_sym_section_token1] = ACTIONS(12365), + [aux_sym_subsection_token1] = ACTIONS(12365), + [aux_sym_subsubsection_token1] = ACTIONS(12365), + [aux_sym_paragraph_token1] = ACTIONS(12365), + [aux_sym_subparagraph_token1] = ACTIONS(12365), + [anon_sym_BSLASHitem] = ACTIONS(12365), + [anon_sym_LBRACK] = ACTIONS(12363), + [anon_sym_LBRACE] = ACTIONS(12363), + [anon_sym_LPAREN] = ACTIONS(12363), + [anon_sym_COMMA] = ACTIONS(12363), + [anon_sym_EQ] = ACTIONS(12363), + [sym_word] = ACTIONS(12363), + [sym_param] = ACTIONS(12363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12363), + [anon_sym_DOLLAR] = ACTIONS(12365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12363), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12363), + [anon_sym_BSLASHbegin] = ACTIONS(12365), + [anon_sym_BSLASHcaption] = ACTIONS(12365), + [anon_sym_BSLASHcite] = ACTIONS(12365), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCite] = ACTIONS(12365), + [anon_sym_BSLASHnocite] = ACTIONS(12365), + [anon_sym_BSLASHcitet] = ACTIONS(12365), + [anon_sym_BSLASHcitep] = ACTIONS(12365), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteauthor] = ACTIONS(12365), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12365), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitetitle] = ACTIONS(12365), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteyear] = ACTIONS(12365), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitedate] = ACTIONS(12365), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteurl] = ACTIONS(12365), + [anon_sym_BSLASHfullcite] = ACTIONS(12365), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12365), + [anon_sym_BSLASHcitealt] = ACTIONS(12365), + [anon_sym_BSLASHcitealp] = ACTIONS(12365), + [anon_sym_BSLASHcitetext] = ACTIONS(12365), + [anon_sym_BSLASHparencite] = ACTIONS(12365), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHParencite] = ACTIONS(12365), + [anon_sym_BSLASHfootcite] = ACTIONS(12365), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12365), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12365), + [anon_sym_BSLASHtextcite] = ACTIONS(12365), + [anon_sym_BSLASHTextcite] = ACTIONS(12365), + [anon_sym_BSLASHsmartcite] = ACTIONS(12365), + [anon_sym_BSLASHSmartcite] = ACTIONS(12365), + [anon_sym_BSLASHsupercite] = ACTIONS(12365), + [anon_sym_BSLASHautocite] = ACTIONS(12365), + [anon_sym_BSLASHAutocite] = ACTIONS(12365), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHvolcite] = ACTIONS(12365), + [anon_sym_BSLASHVolcite] = ACTIONS(12365), + [anon_sym_BSLASHpvolcite] = ACTIONS(12365), + [anon_sym_BSLASHPvolcite] = ACTIONS(12365), + [anon_sym_BSLASHfvolcite] = ACTIONS(12365), + [anon_sym_BSLASHftvolcite] = ACTIONS(12365), + [anon_sym_BSLASHsvolcite] = ACTIONS(12365), + [anon_sym_BSLASHSvolcite] = ACTIONS(12365), + [anon_sym_BSLASHtvolcite] = ACTIONS(12365), + [anon_sym_BSLASHTvolcite] = ACTIONS(12365), + [anon_sym_BSLASHavolcite] = ACTIONS(12365), + [anon_sym_BSLASHAvolcite] = ACTIONS(12365), + [anon_sym_BSLASHnotecite] = ACTIONS(12365), + [anon_sym_BSLASHpnotecite] = ACTIONS(12365), + [anon_sym_BSLASHPnotecite] = ACTIONS(12365), + [anon_sym_BSLASHfnotecite] = ACTIONS(12365), + [anon_sym_BSLASHusepackage] = ACTIONS(12365), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12365), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12365), + [anon_sym_BSLASHinclude] = ACTIONS(12365), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12365), + [anon_sym_BSLASHinput] = ACTIONS(12365), + [anon_sym_BSLASHsubfile] = ACTIONS(12365), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12365), + [anon_sym_BSLASHbibliography] = ACTIONS(12365), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12365), + [anon_sym_BSLASHincludesvg] = ACTIONS(12365), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12365), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12365), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12365), + [anon_sym_BSLASHimport] = ACTIONS(12365), + [anon_sym_BSLASHsubimport] = ACTIONS(12365), + [anon_sym_BSLASHinputfrom] = ACTIONS(12365), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12365), + [anon_sym_BSLASHincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHlabel] = ACTIONS(12365), + [anon_sym_BSLASHref] = ACTIONS(12365), + [anon_sym_BSLASHvref] = ACTIONS(12365), + [anon_sym_BSLASHVref] = ACTIONS(12365), + [anon_sym_BSLASHautoref] = ACTIONS(12365), + [anon_sym_BSLASHpageref] = ACTIONS(12365), + [anon_sym_BSLASHcref] = ACTIONS(12365), + [anon_sym_BSLASHCref] = ACTIONS(12365), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnameCref] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHlabelcref] = ACTIONS(12365), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12365), + [anon_sym_BSLASHeqref] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange] = ACTIONS(12365), + [anon_sym_BSLASHCrefrange] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewlabel] = ACTIONS(12365), + [anon_sym_BSLASHnewcommand] = ACTIONS(12365), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12365), + [anon_sym_BSLASHgls] = ACTIONS(12365), + [anon_sym_BSLASHGls] = ACTIONS(12365), + [anon_sym_BSLASHGLS] = ACTIONS(12365), + [anon_sym_BSLASHglspl] = ACTIONS(12365), + [anon_sym_BSLASHGlspl] = ACTIONS(12365), + [anon_sym_BSLASHGLSpl] = ACTIONS(12365), + [anon_sym_BSLASHglsdisp] = ACTIONS(12365), + [anon_sym_BSLASHglslink] = ACTIONS(12365), + [anon_sym_BSLASHglstext] = ACTIONS(12365), + [anon_sym_BSLASHGlstext] = ACTIONS(12365), + [anon_sym_BSLASHGLStext] = ACTIONS(12365), + [anon_sym_BSLASHglsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12365), + [anon_sym_BSLASHglsplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSplural] = ACTIONS(12365), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHglsname] = ACTIONS(12365), + [anon_sym_BSLASHGlsname] = ACTIONS(12365), + [anon_sym_BSLASHGLSname] = ACTIONS(12365), + [anon_sym_BSLASHglssymbol] = ACTIONS(12365), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12365), + [anon_sym_BSLASHglsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12365), + [anon_sym_BSLASHglsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12365), + [anon_sym_BSLASHglsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12365), + [anon_sym_BSLASHglsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12365), + [anon_sym_BSLASHglsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12365), + [anon_sym_BSLASHnewacronym] = ACTIONS(12365), + [anon_sym_BSLASHacrshort] = ACTIONS(12365), + [anon_sym_BSLASHAcrshort] = ACTIONS(12365), + [anon_sym_BSLASHACRshort] = ACTIONS(12365), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12365), + [anon_sym_BSLASHacrlong] = ACTIONS(12365), + [anon_sym_BSLASHAcrlong] = ACTIONS(12365), + [anon_sym_BSLASHACRlong] = ACTIONS(12365), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12365), + [anon_sym_BSLASHacrfull] = ACTIONS(12365), + [anon_sym_BSLASHAcrfull] = ACTIONS(12365), + [anon_sym_BSLASHACRfull] = ACTIONS(12365), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12365), + [anon_sym_BSLASHacs] = ACTIONS(12365), + [anon_sym_BSLASHAcs] = ACTIONS(12365), + [anon_sym_BSLASHacsp] = ACTIONS(12365), + [anon_sym_BSLASHAcsp] = ACTIONS(12365), + [anon_sym_BSLASHacl] = ACTIONS(12365), + [anon_sym_BSLASHAcl] = ACTIONS(12365), + [anon_sym_BSLASHaclp] = ACTIONS(12365), + [anon_sym_BSLASHAclp] = ACTIONS(12365), + [anon_sym_BSLASHacf] = ACTIONS(12365), + [anon_sym_BSLASHAcf] = ACTIONS(12365), + [anon_sym_BSLASHacfp] = ACTIONS(12365), + [anon_sym_BSLASHAcfp] = ACTIONS(12365), + [anon_sym_BSLASHac] = ACTIONS(12365), + [anon_sym_BSLASHAc] = ACTIONS(12365), + [anon_sym_BSLASHacp] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12365), + [anon_sym_BSLASHcolor] = ACTIONS(12365), + [anon_sym_BSLASHcolorbox] = ACTIONS(12365), + [anon_sym_BSLASHtextcolor] = ACTIONS(12365), + [anon_sym_BSLASHpagecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12365), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12365), + }, + [762] = { + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(123), + [aux_sym_chapter_token1] = ACTIONS(123), + [aux_sym_section_token1] = ACTIONS(123), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHend] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [763] = { + [sym_generic_command_name] = ACTIONS(12231), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12231), + [aux_sym_chapter_token1] = ACTIONS(12231), + [aux_sym_section_token1] = ACTIONS(12231), + [aux_sym_subsection_token1] = ACTIONS(12231), + [aux_sym_subsubsection_token1] = ACTIONS(12231), + [aux_sym_paragraph_token1] = ACTIONS(12231), + [aux_sym_subparagraph_token1] = ACTIONS(12231), + [anon_sym_BSLASHitem] = ACTIONS(12231), + [anon_sym_LBRACK] = ACTIONS(12229), + [anon_sym_LBRACE] = ACTIONS(12229), + [anon_sym_LPAREN] = ACTIONS(12229), + [anon_sym_COMMA] = ACTIONS(12229), + [anon_sym_EQ] = ACTIONS(12229), + [sym_word] = ACTIONS(12229), + [sym_param] = ACTIONS(12229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12229), + [anon_sym_DOLLAR] = ACTIONS(12231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12229), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12229), + [anon_sym_BSLASHbegin] = ACTIONS(12231), + [anon_sym_BSLASHcaption] = ACTIONS(12231), + [anon_sym_BSLASHcite] = ACTIONS(12231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCite] = ACTIONS(12231), + [anon_sym_BSLASHnocite] = ACTIONS(12231), + [anon_sym_BSLASHcitet] = ACTIONS(12231), + [anon_sym_BSLASHcitep] = ACTIONS(12231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteauthor] = ACTIONS(12231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitetitle] = ACTIONS(12231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteyear] = ACTIONS(12231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitedate] = ACTIONS(12231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteurl] = ACTIONS(12231), + [anon_sym_BSLASHfullcite] = ACTIONS(12231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12231), + [anon_sym_BSLASHcitealt] = ACTIONS(12231), + [anon_sym_BSLASHcitealp] = ACTIONS(12231), + [anon_sym_BSLASHcitetext] = ACTIONS(12231), + [anon_sym_BSLASHparencite] = ACTIONS(12231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHParencite] = ACTIONS(12231), + [anon_sym_BSLASHfootcite] = ACTIONS(12231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12231), + [anon_sym_BSLASHtextcite] = ACTIONS(12231), + [anon_sym_BSLASHTextcite] = ACTIONS(12231), + [anon_sym_BSLASHsmartcite] = ACTIONS(12231), + [anon_sym_BSLASHSmartcite] = ACTIONS(12231), + [anon_sym_BSLASHsupercite] = ACTIONS(12231), + [anon_sym_BSLASHautocite] = ACTIONS(12231), + [anon_sym_BSLASHAutocite] = ACTIONS(12231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHvolcite] = ACTIONS(12231), + [anon_sym_BSLASHVolcite] = ACTIONS(12231), + [anon_sym_BSLASHpvolcite] = ACTIONS(12231), + [anon_sym_BSLASHPvolcite] = ACTIONS(12231), + [anon_sym_BSLASHfvolcite] = ACTIONS(12231), + [anon_sym_BSLASHftvolcite] = ACTIONS(12231), + [anon_sym_BSLASHsvolcite] = ACTIONS(12231), + [anon_sym_BSLASHSvolcite] = ACTIONS(12231), + [anon_sym_BSLASHtvolcite] = ACTIONS(12231), + [anon_sym_BSLASHTvolcite] = ACTIONS(12231), + [anon_sym_BSLASHavolcite] = ACTIONS(12231), + [anon_sym_BSLASHAvolcite] = ACTIONS(12231), + [anon_sym_BSLASHnotecite] = ACTIONS(12231), + [anon_sym_BSLASHpnotecite] = ACTIONS(12231), + [anon_sym_BSLASHPnotecite] = ACTIONS(12231), + [anon_sym_BSLASHfnotecite] = ACTIONS(12231), + [anon_sym_BSLASHusepackage] = ACTIONS(12231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12231), + [anon_sym_BSLASHinclude] = ACTIONS(12231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12231), + [anon_sym_BSLASHinput] = ACTIONS(12231), + [anon_sym_BSLASHsubfile] = ACTIONS(12231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12231), + [anon_sym_BSLASHbibliography] = ACTIONS(12231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12231), + [anon_sym_BSLASHincludesvg] = ACTIONS(12231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12231), + [anon_sym_BSLASHimport] = ACTIONS(12231), + [anon_sym_BSLASHsubimport] = ACTIONS(12231), + [anon_sym_BSLASHinputfrom] = ACTIONS(12231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12231), + [anon_sym_BSLASHincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHlabel] = ACTIONS(12231), + [anon_sym_BSLASHref] = ACTIONS(12231), + [anon_sym_BSLASHvref] = ACTIONS(12231), + [anon_sym_BSLASHVref] = ACTIONS(12231), + [anon_sym_BSLASHautoref] = ACTIONS(12231), + [anon_sym_BSLASHpageref] = ACTIONS(12231), + [anon_sym_BSLASHcref] = ACTIONS(12231), + [anon_sym_BSLASHCref] = ACTIONS(12231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnameCref] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHlabelcref] = ACTIONS(12231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12231), + [anon_sym_BSLASHeqref] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange] = ACTIONS(12231), + [anon_sym_BSLASHCrefrange] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewlabel] = ACTIONS(12231), + [anon_sym_BSLASHnewcommand] = ACTIONS(12231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12231), + [anon_sym_BSLASHgls] = ACTIONS(12231), + [anon_sym_BSLASHGls] = ACTIONS(12231), + [anon_sym_BSLASHGLS] = ACTIONS(12231), + [anon_sym_BSLASHglspl] = ACTIONS(12231), + [anon_sym_BSLASHGlspl] = ACTIONS(12231), + [anon_sym_BSLASHGLSpl] = ACTIONS(12231), + [anon_sym_BSLASHglsdisp] = ACTIONS(12231), + [anon_sym_BSLASHglslink] = ACTIONS(12231), + [anon_sym_BSLASHglstext] = ACTIONS(12231), + [anon_sym_BSLASHGlstext] = ACTIONS(12231), + [anon_sym_BSLASHGLStext] = ACTIONS(12231), + [anon_sym_BSLASHglsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12231), + [anon_sym_BSLASHglsplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSplural] = ACTIONS(12231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHglsname] = ACTIONS(12231), + [anon_sym_BSLASHGlsname] = ACTIONS(12231), + [anon_sym_BSLASHGLSname] = ACTIONS(12231), + [anon_sym_BSLASHglssymbol] = ACTIONS(12231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12231), + [anon_sym_BSLASHglsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12231), + [anon_sym_BSLASHglsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12231), + [anon_sym_BSLASHglsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12231), + [anon_sym_BSLASHglsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12231), + [anon_sym_BSLASHglsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12231), + [anon_sym_BSLASHnewacronym] = ACTIONS(12231), + [anon_sym_BSLASHacrshort] = ACTIONS(12231), + [anon_sym_BSLASHAcrshort] = ACTIONS(12231), + [anon_sym_BSLASHACRshort] = ACTIONS(12231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12231), + [anon_sym_BSLASHacrlong] = ACTIONS(12231), + [anon_sym_BSLASHAcrlong] = ACTIONS(12231), + [anon_sym_BSLASHACRlong] = ACTIONS(12231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12231), + [anon_sym_BSLASHacrfull] = ACTIONS(12231), + [anon_sym_BSLASHAcrfull] = ACTIONS(12231), + [anon_sym_BSLASHACRfull] = ACTIONS(12231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12231), + [anon_sym_BSLASHacs] = ACTIONS(12231), + [anon_sym_BSLASHAcs] = ACTIONS(12231), + [anon_sym_BSLASHacsp] = ACTIONS(12231), + [anon_sym_BSLASHAcsp] = ACTIONS(12231), + [anon_sym_BSLASHacl] = ACTIONS(12231), + [anon_sym_BSLASHAcl] = ACTIONS(12231), + [anon_sym_BSLASHaclp] = ACTIONS(12231), + [anon_sym_BSLASHAclp] = ACTIONS(12231), + [anon_sym_BSLASHacf] = ACTIONS(12231), + [anon_sym_BSLASHAcf] = ACTIONS(12231), + [anon_sym_BSLASHacfp] = ACTIONS(12231), + [anon_sym_BSLASHAcfp] = ACTIONS(12231), + [anon_sym_BSLASHac] = ACTIONS(12231), + [anon_sym_BSLASHAc] = ACTIONS(12231), + [anon_sym_BSLASHacp] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12231), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12231), + [anon_sym_BSLASHcolor] = ACTIONS(12231), + [anon_sym_BSLASHcolorbox] = ACTIONS(12231), + [anon_sym_BSLASHtextcolor] = ACTIONS(12231), + [anon_sym_BSLASHpagecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12231), + }, + [764] = { + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(127), + [aux_sym_chapter_token1] = ACTIONS(127), + [aux_sym_section_token1] = ACTIONS(127), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHend] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [765] = { + [sym_generic_command_name] = ACTIONS(12136), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12136), + [aux_sym_chapter_token1] = ACTIONS(12136), + [aux_sym_section_token1] = ACTIONS(12136), + [aux_sym_subsection_token1] = ACTIONS(12136), + [aux_sym_subsubsection_token1] = ACTIONS(12136), + [aux_sym_paragraph_token1] = ACTIONS(12136), + [aux_sym_subparagraph_token1] = ACTIONS(12136), + [anon_sym_BSLASHitem] = ACTIONS(12136), + [anon_sym_LBRACK] = ACTIONS(12134), + [anon_sym_LBRACE] = ACTIONS(12134), + [anon_sym_LPAREN] = ACTIONS(12134), + [anon_sym_COMMA] = ACTIONS(12134), + [anon_sym_EQ] = ACTIONS(12134), + [sym_word] = ACTIONS(12134), + [sym_param] = ACTIONS(12134), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12134), + [anon_sym_DOLLAR] = ACTIONS(12136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12134), + [anon_sym_BSLASHbegin] = ACTIONS(12136), + [anon_sym_BSLASHend] = ACTIONS(12136), + [anon_sym_BSLASHcaption] = ACTIONS(12136), + [anon_sym_BSLASHcite] = ACTIONS(12136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCite] = ACTIONS(12136), + [anon_sym_BSLASHnocite] = ACTIONS(12136), + [anon_sym_BSLASHcitet] = ACTIONS(12136), + [anon_sym_BSLASHcitep] = ACTIONS(12136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteauthor] = ACTIONS(12136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitetitle] = ACTIONS(12136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteyear] = ACTIONS(12136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitedate] = ACTIONS(12136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteurl] = ACTIONS(12136), + [anon_sym_BSLASHfullcite] = ACTIONS(12136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12136), + [anon_sym_BSLASHcitealt] = ACTIONS(12136), + [anon_sym_BSLASHcitealp] = ACTIONS(12136), + [anon_sym_BSLASHcitetext] = ACTIONS(12136), + [anon_sym_BSLASHparencite] = ACTIONS(12136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHParencite] = ACTIONS(12136), + [anon_sym_BSLASHfootcite] = ACTIONS(12136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12136), + [anon_sym_BSLASHtextcite] = ACTIONS(12136), + [anon_sym_BSLASHTextcite] = ACTIONS(12136), + [anon_sym_BSLASHsmartcite] = ACTIONS(12136), + [anon_sym_BSLASHSmartcite] = ACTIONS(12136), + [anon_sym_BSLASHsupercite] = ACTIONS(12136), + [anon_sym_BSLASHautocite] = ACTIONS(12136), + [anon_sym_BSLASHAutocite] = ACTIONS(12136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHvolcite] = ACTIONS(12136), + [anon_sym_BSLASHVolcite] = ACTIONS(12136), + [anon_sym_BSLASHpvolcite] = ACTIONS(12136), + [anon_sym_BSLASHPvolcite] = ACTIONS(12136), + [anon_sym_BSLASHfvolcite] = ACTIONS(12136), + [anon_sym_BSLASHftvolcite] = ACTIONS(12136), + [anon_sym_BSLASHsvolcite] = ACTIONS(12136), + [anon_sym_BSLASHSvolcite] = ACTIONS(12136), + [anon_sym_BSLASHtvolcite] = ACTIONS(12136), + [anon_sym_BSLASHTvolcite] = ACTIONS(12136), + [anon_sym_BSLASHavolcite] = ACTIONS(12136), + [anon_sym_BSLASHAvolcite] = ACTIONS(12136), + [anon_sym_BSLASHnotecite] = ACTIONS(12136), + [anon_sym_BSLASHpnotecite] = ACTIONS(12136), + [anon_sym_BSLASHPnotecite] = ACTIONS(12136), + [anon_sym_BSLASHfnotecite] = ACTIONS(12136), + [anon_sym_BSLASHusepackage] = ACTIONS(12136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12136), + [anon_sym_BSLASHinclude] = ACTIONS(12136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12136), + [anon_sym_BSLASHinput] = ACTIONS(12136), + [anon_sym_BSLASHsubfile] = ACTIONS(12136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12136), + [anon_sym_BSLASHbibliography] = ACTIONS(12136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12136), + [anon_sym_BSLASHincludesvg] = ACTIONS(12136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12136), + [anon_sym_BSLASHimport] = ACTIONS(12136), + [anon_sym_BSLASHsubimport] = ACTIONS(12136), + [anon_sym_BSLASHinputfrom] = ACTIONS(12136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12136), + [anon_sym_BSLASHincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHlabel] = ACTIONS(12136), + [anon_sym_BSLASHref] = ACTIONS(12136), + [anon_sym_BSLASHvref] = ACTIONS(12136), + [anon_sym_BSLASHVref] = ACTIONS(12136), + [anon_sym_BSLASHautoref] = ACTIONS(12136), + [anon_sym_BSLASHpageref] = ACTIONS(12136), + [anon_sym_BSLASHcref] = ACTIONS(12136), + [anon_sym_BSLASHCref] = ACTIONS(12136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnameCref] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHlabelcref] = ACTIONS(12136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12136), + [anon_sym_BSLASHeqref] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange] = ACTIONS(12136), + [anon_sym_BSLASHCrefrange] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewlabel] = ACTIONS(12136), + [anon_sym_BSLASHnewcommand] = ACTIONS(12136), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12136), + [anon_sym_BSLASHgls] = ACTIONS(12136), + [anon_sym_BSLASHGls] = ACTIONS(12136), + [anon_sym_BSLASHGLS] = ACTIONS(12136), + [anon_sym_BSLASHglspl] = ACTIONS(12136), + [anon_sym_BSLASHGlspl] = ACTIONS(12136), + [anon_sym_BSLASHGLSpl] = ACTIONS(12136), + [anon_sym_BSLASHglsdisp] = ACTIONS(12136), + [anon_sym_BSLASHglslink] = ACTIONS(12136), + [anon_sym_BSLASHglstext] = ACTIONS(12136), + [anon_sym_BSLASHGlstext] = ACTIONS(12136), + [anon_sym_BSLASHGLStext] = ACTIONS(12136), + [anon_sym_BSLASHglsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12136), + [anon_sym_BSLASHglsplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSplural] = ACTIONS(12136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHglsname] = ACTIONS(12136), + [anon_sym_BSLASHGlsname] = ACTIONS(12136), + [anon_sym_BSLASHGLSname] = ACTIONS(12136), + [anon_sym_BSLASHglssymbol] = ACTIONS(12136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12136), + [anon_sym_BSLASHglsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12136), + [anon_sym_BSLASHglsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12136), + [anon_sym_BSLASHglsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12136), + [anon_sym_BSLASHglsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12136), + [anon_sym_BSLASHglsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12136), + [anon_sym_BSLASHnewacronym] = ACTIONS(12136), + [anon_sym_BSLASHacrshort] = ACTIONS(12136), + [anon_sym_BSLASHAcrshort] = ACTIONS(12136), + [anon_sym_BSLASHACRshort] = ACTIONS(12136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12136), + [anon_sym_BSLASHacrlong] = ACTIONS(12136), + [anon_sym_BSLASHAcrlong] = ACTIONS(12136), + [anon_sym_BSLASHACRlong] = ACTIONS(12136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12136), + [anon_sym_BSLASHacrfull] = ACTIONS(12136), + [anon_sym_BSLASHAcrfull] = ACTIONS(12136), + [anon_sym_BSLASHACRfull] = ACTIONS(12136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12136), + [anon_sym_BSLASHacs] = ACTIONS(12136), + [anon_sym_BSLASHAcs] = ACTIONS(12136), + [anon_sym_BSLASHacsp] = ACTIONS(12136), + [anon_sym_BSLASHAcsp] = ACTIONS(12136), + [anon_sym_BSLASHacl] = ACTIONS(12136), + [anon_sym_BSLASHAcl] = ACTIONS(12136), + [anon_sym_BSLASHaclp] = ACTIONS(12136), + [anon_sym_BSLASHAclp] = ACTIONS(12136), + [anon_sym_BSLASHacf] = ACTIONS(12136), + [anon_sym_BSLASHAcf] = ACTIONS(12136), + [anon_sym_BSLASHacfp] = ACTIONS(12136), + [anon_sym_BSLASHAcfp] = ACTIONS(12136), + [anon_sym_BSLASHac] = ACTIONS(12136), + [anon_sym_BSLASHAc] = ACTIONS(12136), + [anon_sym_BSLASHacp] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12136), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12136), + [anon_sym_BSLASHcolor] = ACTIONS(12136), + [anon_sym_BSLASHcolorbox] = ACTIONS(12136), + [anon_sym_BSLASHtextcolor] = ACTIONS(12136), + [anon_sym_BSLASHpagecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12136), + }, + [766] = { + [sym_generic_command_name] = ACTIONS(12140), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12140), + [aux_sym_chapter_token1] = ACTIONS(12140), + [aux_sym_section_token1] = ACTIONS(12140), + [aux_sym_subsection_token1] = ACTIONS(12140), + [aux_sym_subsubsection_token1] = ACTIONS(12140), + [aux_sym_paragraph_token1] = ACTIONS(12140), + [aux_sym_subparagraph_token1] = ACTIONS(12140), + [anon_sym_BSLASHitem] = ACTIONS(12140), + [anon_sym_LBRACK] = ACTIONS(12138), + [anon_sym_LBRACE] = ACTIONS(12138), + [anon_sym_LPAREN] = ACTIONS(12138), + [anon_sym_COMMA] = ACTIONS(12138), + [anon_sym_EQ] = ACTIONS(12138), + [sym_word] = ACTIONS(12138), + [sym_param] = ACTIONS(12138), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12138), + [anon_sym_DOLLAR] = ACTIONS(12140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12138), + [anon_sym_BSLASHbegin] = ACTIONS(12140), + [anon_sym_BSLASHend] = ACTIONS(12140), + [anon_sym_BSLASHcaption] = ACTIONS(12140), + [anon_sym_BSLASHcite] = ACTIONS(12140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCite] = ACTIONS(12140), + [anon_sym_BSLASHnocite] = ACTIONS(12140), + [anon_sym_BSLASHcitet] = ACTIONS(12140), + [anon_sym_BSLASHcitep] = ACTIONS(12140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteauthor] = ACTIONS(12140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitetitle] = ACTIONS(12140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteyear] = ACTIONS(12140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitedate] = ACTIONS(12140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteurl] = ACTIONS(12140), + [anon_sym_BSLASHfullcite] = ACTIONS(12140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12140), + [anon_sym_BSLASHcitealt] = ACTIONS(12140), + [anon_sym_BSLASHcitealp] = ACTIONS(12140), + [anon_sym_BSLASHcitetext] = ACTIONS(12140), + [anon_sym_BSLASHparencite] = ACTIONS(12140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHParencite] = ACTIONS(12140), + [anon_sym_BSLASHfootcite] = ACTIONS(12140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12140), + [anon_sym_BSLASHtextcite] = ACTIONS(12140), + [anon_sym_BSLASHTextcite] = ACTIONS(12140), + [anon_sym_BSLASHsmartcite] = ACTIONS(12140), + [anon_sym_BSLASHSmartcite] = ACTIONS(12140), + [anon_sym_BSLASHsupercite] = ACTIONS(12140), + [anon_sym_BSLASHautocite] = ACTIONS(12140), + [anon_sym_BSLASHAutocite] = ACTIONS(12140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHvolcite] = ACTIONS(12140), + [anon_sym_BSLASHVolcite] = ACTIONS(12140), + [anon_sym_BSLASHpvolcite] = ACTIONS(12140), + [anon_sym_BSLASHPvolcite] = ACTIONS(12140), + [anon_sym_BSLASHfvolcite] = ACTIONS(12140), + [anon_sym_BSLASHftvolcite] = ACTIONS(12140), + [anon_sym_BSLASHsvolcite] = ACTIONS(12140), + [anon_sym_BSLASHSvolcite] = ACTIONS(12140), + [anon_sym_BSLASHtvolcite] = ACTIONS(12140), + [anon_sym_BSLASHTvolcite] = ACTIONS(12140), + [anon_sym_BSLASHavolcite] = ACTIONS(12140), + [anon_sym_BSLASHAvolcite] = ACTIONS(12140), + [anon_sym_BSLASHnotecite] = ACTIONS(12140), + [anon_sym_BSLASHpnotecite] = ACTIONS(12140), + [anon_sym_BSLASHPnotecite] = ACTIONS(12140), + [anon_sym_BSLASHfnotecite] = ACTIONS(12140), + [anon_sym_BSLASHusepackage] = ACTIONS(12140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12140), + [anon_sym_BSLASHinclude] = ACTIONS(12140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12140), + [anon_sym_BSLASHinput] = ACTIONS(12140), + [anon_sym_BSLASHsubfile] = ACTIONS(12140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12140), + [anon_sym_BSLASHbibliography] = ACTIONS(12140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12140), + [anon_sym_BSLASHincludesvg] = ACTIONS(12140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12140), + [anon_sym_BSLASHimport] = ACTIONS(12140), + [anon_sym_BSLASHsubimport] = ACTIONS(12140), + [anon_sym_BSLASHinputfrom] = ACTIONS(12140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12140), + [anon_sym_BSLASHincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHlabel] = ACTIONS(12140), + [anon_sym_BSLASHref] = ACTIONS(12140), + [anon_sym_BSLASHvref] = ACTIONS(12140), + [anon_sym_BSLASHVref] = ACTIONS(12140), + [anon_sym_BSLASHautoref] = ACTIONS(12140), + [anon_sym_BSLASHpageref] = ACTIONS(12140), + [anon_sym_BSLASHcref] = ACTIONS(12140), + [anon_sym_BSLASHCref] = ACTIONS(12140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnameCref] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHlabelcref] = ACTIONS(12140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12140), + [anon_sym_BSLASHeqref] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange] = ACTIONS(12140), + [anon_sym_BSLASHCrefrange] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewlabel] = ACTIONS(12140), + [anon_sym_BSLASHnewcommand] = ACTIONS(12140), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12140), + [anon_sym_BSLASHgls] = ACTIONS(12140), + [anon_sym_BSLASHGls] = ACTIONS(12140), + [anon_sym_BSLASHGLS] = ACTIONS(12140), + [anon_sym_BSLASHglspl] = ACTIONS(12140), + [anon_sym_BSLASHGlspl] = ACTIONS(12140), + [anon_sym_BSLASHGLSpl] = ACTIONS(12140), + [anon_sym_BSLASHglsdisp] = ACTIONS(12140), + [anon_sym_BSLASHglslink] = ACTIONS(12140), + [anon_sym_BSLASHglstext] = ACTIONS(12140), + [anon_sym_BSLASHGlstext] = ACTIONS(12140), + [anon_sym_BSLASHGLStext] = ACTIONS(12140), + [anon_sym_BSLASHglsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12140), + [anon_sym_BSLASHglsplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSplural] = ACTIONS(12140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHglsname] = ACTIONS(12140), + [anon_sym_BSLASHGlsname] = ACTIONS(12140), + [anon_sym_BSLASHGLSname] = ACTIONS(12140), + [anon_sym_BSLASHglssymbol] = ACTIONS(12140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12140), + [anon_sym_BSLASHglsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12140), + [anon_sym_BSLASHglsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12140), + [anon_sym_BSLASHglsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12140), + [anon_sym_BSLASHglsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12140), + [anon_sym_BSLASHglsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12140), + [anon_sym_BSLASHnewacronym] = ACTIONS(12140), + [anon_sym_BSLASHacrshort] = ACTIONS(12140), + [anon_sym_BSLASHAcrshort] = ACTIONS(12140), + [anon_sym_BSLASHACRshort] = ACTIONS(12140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12140), + [anon_sym_BSLASHacrlong] = ACTIONS(12140), + [anon_sym_BSLASHAcrlong] = ACTIONS(12140), + [anon_sym_BSLASHACRlong] = ACTIONS(12140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12140), + [anon_sym_BSLASHacrfull] = ACTIONS(12140), + [anon_sym_BSLASHAcrfull] = ACTIONS(12140), + [anon_sym_BSLASHACRfull] = ACTIONS(12140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12140), + [anon_sym_BSLASHacs] = ACTIONS(12140), + [anon_sym_BSLASHAcs] = ACTIONS(12140), + [anon_sym_BSLASHacsp] = ACTIONS(12140), + [anon_sym_BSLASHAcsp] = ACTIONS(12140), + [anon_sym_BSLASHacl] = ACTIONS(12140), + [anon_sym_BSLASHAcl] = ACTIONS(12140), + [anon_sym_BSLASHaclp] = ACTIONS(12140), + [anon_sym_BSLASHAclp] = ACTIONS(12140), + [anon_sym_BSLASHacf] = ACTIONS(12140), + [anon_sym_BSLASHAcf] = ACTIONS(12140), + [anon_sym_BSLASHacfp] = ACTIONS(12140), + [anon_sym_BSLASHAcfp] = ACTIONS(12140), + [anon_sym_BSLASHac] = ACTIONS(12140), + [anon_sym_BSLASHAc] = ACTIONS(12140), + [anon_sym_BSLASHacp] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12140), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12140), + [anon_sym_BSLASHcolor] = ACTIONS(12140), + [anon_sym_BSLASHcolorbox] = ACTIONS(12140), + [anon_sym_BSLASHtextcolor] = ACTIONS(12140), + [anon_sym_BSLASHpagecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12140), + }, + [767] = { + [sym_generic_command_name] = ACTIONS(12144), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12144), + [aux_sym_chapter_token1] = ACTIONS(12144), + [aux_sym_section_token1] = ACTIONS(12144), + [aux_sym_subsection_token1] = ACTIONS(12144), + [aux_sym_subsubsection_token1] = ACTIONS(12144), + [aux_sym_paragraph_token1] = ACTIONS(12144), + [aux_sym_subparagraph_token1] = ACTIONS(12144), + [anon_sym_BSLASHitem] = ACTIONS(12144), + [anon_sym_LBRACK] = ACTIONS(12142), + [anon_sym_LBRACE] = ACTIONS(12142), + [anon_sym_LPAREN] = ACTIONS(12142), + [anon_sym_COMMA] = ACTIONS(12142), + [anon_sym_EQ] = ACTIONS(12142), + [sym_word] = ACTIONS(12142), + [sym_param] = ACTIONS(12142), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12142), + [anon_sym_DOLLAR] = ACTIONS(12144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12142), + [anon_sym_BSLASHbegin] = ACTIONS(12144), + [anon_sym_BSLASHend] = ACTIONS(12144), + [anon_sym_BSLASHcaption] = ACTIONS(12144), + [anon_sym_BSLASHcite] = ACTIONS(12144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCite] = ACTIONS(12144), + [anon_sym_BSLASHnocite] = ACTIONS(12144), + [anon_sym_BSLASHcitet] = ACTIONS(12144), + [anon_sym_BSLASHcitep] = ACTIONS(12144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteauthor] = ACTIONS(12144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitetitle] = ACTIONS(12144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteyear] = ACTIONS(12144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitedate] = ACTIONS(12144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteurl] = ACTIONS(12144), + [anon_sym_BSLASHfullcite] = ACTIONS(12144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12144), + [anon_sym_BSLASHcitealt] = ACTIONS(12144), + [anon_sym_BSLASHcitealp] = ACTIONS(12144), + [anon_sym_BSLASHcitetext] = ACTIONS(12144), + [anon_sym_BSLASHparencite] = ACTIONS(12144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHParencite] = ACTIONS(12144), + [anon_sym_BSLASHfootcite] = ACTIONS(12144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12144), + [anon_sym_BSLASHtextcite] = ACTIONS(12144), + [anon_sym_BSLASHTextcite] = ACTIONS(12144), + [anon_sym_BSLASHsmartcite] = ACTIONS(12144), + [anon_sym_BSLASHSmartcite] = ACTIONS(12144), + [anon_sym_BSLASHsupercite] = ACTIONS(12144), + [anon_sym_BSLASHautocite] = ACTIONS(12144), + [anon_sym_BSLASHAutocite] = ACTIONS(12144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHvolcite] = ACTIONS(12144), + [anon_sym_BSLASHVolcite] = ACTIONS(12144), + [anon_sym_BSLASHpvolcite] = ACTIONS(12144), + [anon_sym_BSLASHPvolcite] = ACTIONS(12144), + [anon_sym_BSLASHfvolcite] = ACTIONS(12144), + [anon_sym_BSLASHftvolcite] = ACTIONS(12144), + [anon_sym_BSLASHsvolcite] = ACTIONS(12144), + [anon_sym_BSLASHSvolcite] = ACTIONS(12144), + [anon_sym_BSLASHtvolcite] = ACTIONS(12144), + [anon_sym_BSLASHTvolcite] = ACTIONS(12144), + [anon_sym_BSLASHavolcite] = ACTIONS(12144), + [anon_sym_BSLASHAvolcite] = ACTIONS(12144), + [anon_sym_BSLASHnotecite] = ACTIONS(12144), + [anon_sym_BSLASHpnotecite] = ACTIONS(12144), + [anon_sym_BSLASHPnotecite] = ACTIONS(12144), + [anon_sym_BSLASHfnotecite] = ACTIONS(12144), + [anon_sym_BSLASHusepackage] = ACTIONS(12144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12144), + [anon_sym_BSLASHinclude] = ACTIONS(12144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12144), + [anon_sym_BSLASHinput] = ACTIONS(12144), + [anon_sym_BSLASHsubfile] = ACTIONS(12144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12144), + [anon_sym_BSLASHbibliography] = ACTIONS(12144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12144), + [anon_sym_BSLASHincludesvg] = ACTIONS(12144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12144), + [anon_sym_BSLASHimport] = ACTIONS(12144), + [anon_sym_BSLASHsubimport] = ACTIONS(12144), + [anon_sym_BSLASHinputfrom] = ACTIONS(12144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12144), + [anon_sym_BSLASHincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHlabel] = ACTIONS(12144), + [anon_sym_BSLASHref] = ACTIONS(12144), + [anon_sym_BSLASHvref] = ACTIONS(12144), + [anon_sym_BSLASHVref] = ACTIONS(12144), + [anon_sym_BSLASHautoref] = ACTIONS(12144), + [anon_sym_BSLASHpageref] = ACTIONS(12144), + [anon_sym_BSLASHcref] = ACTIONS(12144), + [anon_sym_BSLASHCref] = ACTIONS(12144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnameCref] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHlabelcref] = ACTIONS(12144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12144), + [anon_sym_BSLASHeqref] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange] = ACTIONS(12144), + [anon_sym_BSLASHCrefrange] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewlabel] = ACTIONS(12144), + [anon_sym_BSLASHnewcommand] = ACTIONS(12144), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12144), + [anon_sym_BSLASHgls] = ACTIONS(12144), + [anon_sym_BSLASHGls] = ACTIONS(12144), + [anon_sym_BSLASHGLS] = ACTIONS(12144), + [anon_sym_BSLASHglspl] = ACTIONS(12144), + [anon_sym_BSLASHGlspl] = ACTIONS(12144), + [anon_sym_BSLASHGLSpl] = ACTIONS(12144), + [anon_sym_BSLASHglsdisp] = ACTIONS(12144), + [anon_sym_BSLASHglslink] = ACTIONS(12144), + [anon_sym_BSLASHglstext] = ACTIONS(12144), + [anon_sym_BSLASHGlstext] = ACTIONS(12144), + [anon_sym_BSLASHGLStext] = ACTIONS(12144), + [anon_sym_BSLASHglsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12144), + [anon_sym_BSLASHglsplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSplural] = ACTIONS(12144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHglsname] = ACTIONS(12144), + [anon_sym_BSLASHGlsname] = ACTIONS(12144), + [anon_sym_BSLASHGLSname] = ACTIONS(12144), + [anon_sym_BSLASHglssymbol] = ACTIONS(12144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12144), + [anon_sym_BSLASHglsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12144), + [anon_sym_BSLASHglsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12144), + [anon_sym_BSLASHglsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12144), + [anon_sym_BSLASHglsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12144), + [anon_sym_BSLASHglsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12144), + [anon_sym_BSLASHnewacronym] = ACTIONS(12144), + [anon_sym_BSLASHacrshort] = ACTIONS(12144), + [anon_sym_BSLASHAcrshort] = ACTIONS(12144), + [anon_sym_BSLASHACRshort] = ACTIONS(12144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12144), + [anon_sym_BSLASHacrlong] = ACTIONS(12144), + [anon_sym_BSLASHAcrlong] = ACTIONS(12144), + [anon_sym_BSLASHACRlong] = ACTIONS(12144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12144), + [anon_sym_BSLASHacrfull] = ACTIONS(12144), + [anon_sym_BSLASHAcrfull] = ACTIONS(12144), + [anon_sym_BSLASHACRfull] = ACTIONS(12144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12144), + [anon_sym_BSLASHacs] = ACTIONS(12144), + [anon_sym_BSLASHAcs] = ACTIONS(12144), + [anon_sym_BSLASHacsp] = ACTIONS(12144), + [anon_sym_BSLASHAcsp] = ACTIONS(12144), + [anon_sym_BSLASHacl] = ACTIONS(12144), + [anon_sym_BSLASHAcl] = ACTIONS(12144), + [anon_sym_BSLASHaclp] = ACTIONS(12144), + [anon_sym_BSLASHAclp] = ACTIONS(12144), + [anon_sym_BSLASHacf] = ACTIONS(12144), + [anon_sym_BSLASHAcf] = ACTIONS(12144), + [anon_sym_BSLASHacfp] = ACTIONS(12144), + [anon_sym_BSLASHAcfp] = ACTIONS(12144), + [anon_sym_BSLASHac] = ACTIONS(12144), + [anon_sym_BSLASHAc] = ACTIONS(12144), + [anon_sym_BSLASHacp] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12144), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12144), + [anon_sym_BSLASHcolor] = ACTIONS(12144), + [anon_sym_BSLASHcolorbox] = ACTIONS(12144), + [anon_sym_BSLASHtextcolor] = ACTIONS(12144), + [anon_sym_BSLASHpagecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12144), + }, + [768] = { + [sym_generic_command_name] = ACTIONS(12148), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12148), + [aux_sym_chapter_token1] = ACTIONS(12148), + [aux_sym_section_token1] = ACTIONS(12148), + [aux_sym_subsection_token1] = ACTIONS(12148), + [aux_sym_subsubsection_token1] = ACTIONS(12148), + [aux_sym_paragraph_token1] = ACTIONS(12148), + [aux_sym_subparagraph_token1] = ACTIONS(12148), + [anon_sym_BSLASHitem] = ACTIONS(12148), + [anon_sym_LBRACK] = ACTIONS(12146), + [anon_sym_LBRACE] = ACTIONS(12146), + [anon_sym_LPAREN] = ACTIONS(12146), + [anon_sym_COMMA] = ACTIONS(12146), + [anon_sym_EQ] = ACTIONS(12146), + [sym_word] = ACTIONS(12146), + [sym_param] = ACTIONS(12146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12146), + [anon_sym_DOLLAR] = ACTIONS(12148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12146), + [anon_sym_BSLASHbegin] = ACTIONS(12148), + [anon_sym_BSLASHend] = ACTIONS(12148), + [anon_sym_BSLASHcaption] = ACTIONS(12148), + [anon_sym_BSLASHcite] = ACTIONS(12148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCite] = ACTIONS(12148), + [anon_sym_BSLASHnocite] = ACTIONS(12148), + [anon_sym_BSLASHcitet] = ACTIONS(12148), + [anon_sym_BSLASHcitep] = ACTIONS(12148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteauthor] = ACTIONS(12148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitetitle] = ACTIONS(12148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteyear] = ACTIONS(12148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitedate] = ACTIONS(12148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteurl] = ACTIONS(12148), + [anon_sym_BSLASHfullcite] = ACTIONS(12148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12148), + [anon_sym_BSLASHcitealt] = ACTIONS(12148), + [anon_sym_BSLASHcitealp] = ACTIONS(12148), + [anon_sym_BSLASHcitetext] = ACTIONS(12148), + [anon_sym_BSLASHparencite] = ACTIONS(12148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHParencite] = ACTIONS(12148), + [anon_sym_BSLASHfootcite] = ACTIONS(12148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12148), + [anon_sym_BSLASHtextcite] = ACTIONS(12148), + [anon_sym_BSLASHTextcite] = ACTIONS(12148), + [anon_sym_BSLASHsmartcite] = ACTIONS(12148), + [anon_sym_BSLASHSmartcite] = ACTIONS(12148), + [anon_sym_BSLASHsupercite] = ACTIONS(12148), + [anon_sym_BSLASHautocite] = ACTIONS(12148), + [anon_sym_BSLASHAutocite] = ACTIONS(12148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHvolcite] = ACTIONS(12148), + [anon_sym_BSLASHVolcite] = ACTIONS(12148), + [anon_sym_BSLASHpvolcite] = ACTIONS(12148), + [anon_sym_BSLASHPvolcite] = ACTIONS(12148), + [anon_sym_BSLASHfvolcite] = ACTIONS(12148), + [anon_sym_BSLASHftvolcite] = ACTIONS(12148), + [anon_sym_BSLASHsvolcite] = ACTIONS(12148), + [anon_sym_BSLASHSvolcite] = ACTIONS(12148), + [anon_sym_BSLASHtvolcite] = ACTIONS(12148), + [anon_sym_BSLASHTvolcite] = ACTIONS(12148), + [anon_sym_BSLASHavolcite] = ACTIONS(12148), + [anon_sym_BSLASHAvolcite] = ACTIONS(12148), + [anon_sym_BSLASHnotecite] = ACTIONS(12148), + [anon_sym_BSLASHpnotecite] = ACTIONS(12148), + [anon_sym_BSLASHPnotecite] = ACTIONS(12148), + [anon_sym_BSLASHfnotecite] = ACTIONS(12148), + [anon_sym_BSLASHusepackage] = ACTIONS(12148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12148), + [anon_sym_BSLASHinclude] = ACTIONS(12148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12148), + [anon_sym_BSLASHinput] = ACTIONS(12148), + [anon_sym_BSLASHsubfile] = ACTIONS(12148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12148), + [anon_sym_BSLASHbibliography] = ACTIONS(12148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12148), + [anon_sym_BSLASHincludesvg] = ACTIONS(12148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12148), + [anon_sym_BSLASHimport] = ACTIONS(12148), + [anon_sym_BSLASHsubimport] = ACTIONS(12148), + [anon_sym_BSLASHinputfrom] = ACTIONS(12148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12148), + [anon_sym_BSLASHincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHlabel] = ACTIONS(12148), + [anon_sym_BSLASHref] = ACTIONS(12148), + [anon_sym_BSLASHvref] = ACTIONS(12148), + [anon_sym_BSLASHVref] = ACTIONS(12148), + [anon_sym_BSLASHautoref] = ACTIONS(12148), + [anon_sym_BSLASHpageref] = ACTIONS(12148), + [anon_sym_BSLASHcref] = ACTIONS(12148), + [anon_sym_BSLASHCref] = ACTIONS(12148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnameCref] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHlabelcref] = ACTIONS(12148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12148), + [anon_sym_BSLASHeqref] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange] = ACTIONS(12148), + [anon_sym_BSLASHCrefrange] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewlabel] = ACTIONS(12148), + [anon_sym_BSLASHnewcommand] = ACTIONS(12148), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12148), + [anon_sym_BSLASHgls] = ACTIONS(12148), + [anon_sym_BSLASHGls] = ACTIONS(12148), + [anon_sym_BSLASHGLS] = ACTIONS(12148), + [anon_sym_BSLASHglspl] = ACTIONS(12148), + [anon_sym_BSLASHGlspl] = ACTIONS(12148), + [anon_sym_BSLASHGLSpl] = ACTIONS(12148), + [anon_sym_BSLASHglsdisp] = ACTIONS(12148), + [anon_sym_BSLASHglslink] = ACTIONS(12148), + [anon_sym_BSLASHglstext] = ACTIONS(12148), + [anon_sym_BSLASHGlstext] = ACTIONS(12148), + [anon_sym_BSLASHGLStext] = ACTIONS(12148), + [anon_sym_BSLASHglsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12148), + [anon_sym_BSLASHglsplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSplural] = ACTIONS(12148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHglsname] = ACTIONS(12148), + [anon_sym_BSLASHGlsname] = ACTIONS(12148), + [anon_sym_BSLASHGLSname] = ACTIONS(12148), + [anon_sym_BSLASHglssymbol] = ACTIONS(12148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12148), + [anon_sym_BSLASHglsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12148), + [anon_sym_BSLASHglsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12148), + [anon_sym_BSLASHglsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12148), + [anon_sym_BSLASHglsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12148), + [anon_sym_BSLASHglsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12148), + [anon_sym_BSLASHnewacronym] = ACTIONS(12148), + [anon_sym_BSLASHacrshort] = ACTIONS(12148), + [anon_sym_BSLASHAcrshort] = ACTIONS(12148), + [anon_sym_BSLASHACRshort] = ACTIONS(12148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12148), + [anon_sym_BSLASHacrlong] = ACTIONS(12148), + [anon_sym_BSLASHAcrlong] = ACTIONS(12148), + [anon_sym_BSLASHACRlong] = ACTIONS(12148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12148), + [anon_sym_BSLASHacrfull] = ACTIONS(12148), + [anon_sym_BSLASHAcrfull] = ACTIONS(12148), + [anon_sym_BSLASHACRfull] = ACTIONS(12148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12148), + [anon_sym_BSLASHacs] = ACTIONS(12148), + [anon_sym_BSLASHAcs] = ACTIONS(12148), + [anon_sym_BSLASHacsp] = ACTIONS(12148), + [anon_sym_BSLASHAcsp] = ACTIONS(12148), + [anon_sym_BSLASHacl] = ACTIONS(12148), + [anon_sym_BSLASHAcl] = ACTIONS(12148), + [anon_sym_BSLASHaclp] = ACTIONS(12148), + [anon_sym_BSLASHAclp] = ACTIONS(12148), + [anon_sym_BSLASHacf] = ACTIONS(12148), + [anon_sym_BSLASHAcf] = ACTIONS(12148), + [anon_sym_BSLASHacfp] = ACTIONS(12148), + [anon_sym_BSLASHAcfp] = ACTIONS(12148), + [anon_sym_BSLASHac] = ACTIONS(12148), + [anon_sym_BSLASHAc] = ACTIONS(12148), + [anon_sym_BSLASHacp] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12148), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12148), + [anon_sym_BSLASHcolor] = ACTIONS(12148), + [anon_sym_BSLASHcolorbox] = ACTIONS(12148), + [anon_sym_BSLASHtextcolor] = ACTIONS(12148), + [anon_sym_BSLASHpagecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12148), + }, + [769] = { + [sym_generic_command_name] = ACTIONS(12152), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12152), + [aux_sym_chapter_token1] = ACTIONS(12152), + [aux_sym_section_token1] = ACTIONS(12152), + [aux_sym_subsection_token1] = ACTIONS(12152), + [aux_sym_subsubsection_token1] = ACTIONS(12152), + [aux_sym_paragraph_token1] = ACTIONS(12152), + [aux_sym_subparagraph_token1] = ACTIONS(12152), + [anon_sym_BSLASHitem] = ACTIONS(12152), + [anon_sym_LBRACK] = ACTIONS(12150), + [anon_sym_LBRACE] = ACTIONS(12150), + [anon_sym_LPAREN] = ACTIONS(12150), + [anon_sym_COMMA] = ACTIONS(12150), + [anon_sym_EQ] = ACTIONS(12150), + [sym_word] = ACTIONS(12150), + [sym_param] = ACTIONS(12150), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12150), + [anon_sym_DOLLAR] = ACTIONS(12152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12150), + [anon_sym_BSLASHbegin] = ACTIONS(12152), + [anon_sym_BSLASHend] = ACTIONS(12152), + [anon_sym_BSLASHcaption] = ACTIONS(12152), + [anon_sym_BSLASHcite] = ACTIONS(12152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCite] = ACTIONS(12152), + [anon_sym_BSLASHnocite] = ACTIONS(12152), + [anon_sym_BSLASHcitet] = ACTIONS(12152), + [anon_sym_BSLASHcitep] = ACTIONS(12152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteauthor] = ACTIONS(12152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitetitle] = ACTIONS(12152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteyear] = ACTIONS(12152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitedate] = ACTIONS(12152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteurl] = ACTIONS(12152), + [anon_sym_BSLASHfullcite] = ACTIONS(12152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12152), + [anon_sym_BSLASHcitealt] = ACTIONS(12152), + [anon_sym_BSLASHcitealp] = ACTIONS(12152), + [anon_sym_BSLASHcitetext] = ACTIONS(12152), + [anon_sym_BSLASHparencite] = ACTIONS(12152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHParencite] = ACTIONS(12152), + [anon_sym_BSLASHfootcite] = ACTIONS(12152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12152), + [anon_sym_BSLASHtextcite] = ACTIONS(12152), + [anon_sym_BSLASHTextcite] = ACTIONS(12152), + [anon_sym_BSLASHsmartcite] = ACTIONS(12152), + [anon_sym_BSLASHSmartcite] = ACTIONS(12152), + [anon_sym_BSLASHsupercite] = ACTIONS(12152), + [anon_sym_BSLASHautocite] = ACTIONS(12152), + [anon_sym_BSLASHAutocite] = ACTIONS(12152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHvolcite] = ACTIONS(12152), + [anon_sym_BSLASHVolcite] = ACTIONS(12152), + [anon_sym_BSLASHpvolcite] = ACTIONS(12152), + [anon_sym_BSLASHPvolcite] = ACTIONS(12152), + [anon_sym_BSLASHfvolcite] = ACTIONS(12152), + [anon_sym_BSLASHftvolcite] = ACTIONS(12152), + [anon_sym_BSLASHsvolcite] = ACTIONS(12152), + [anon_sym_BSLASHSvolcite] = ACTIONS(12152), + [anon_sym_BSLASHtvolcite] = ACTIONS(12152), + [anon_sym_BSLASHTvolcite] = ACTIONS(12152), + [anon_sym_BSLASHavolcite] = ACTIONS(12152), + [anon_sym_BSLASHAvolcite] = ACTIONS(12152), + [anon_sym_BSLASHnotecite] = ACTIONS(12152), + [anon_sym_BSLASHpnotecite] = ACTIONS(12152), + [anon_sym_BSLASHPnotecite] = ACTIONS(12152), + [anon_sym_BSLASHfnotecite] = ACTIONS(12152), + [anon_sym_BSLASHusepackage] = ACTIONS(12152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12152), + [anon_sym_BSLASHinclude] = ACTIONS(12152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12152), + [anon_sym_BSLASHinput] = ACTIONS(12152), + [anon_sym_BSLASHsubfile] = ACTIONS(12152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12152), + [anon_sym_BSLASHbibliography] = ACTIONS(12152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12152), + [anon_sym_BSLASHincludesvg] = ACTIONS(12152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12152), + [anon_sym_BSLASHimport] = ACTIONS(12152), + [anon_sym_BSLASHsubimport] = ACTIONS(12152), + [anon_sym_BSLASHinputfrom] = ACTIONS(12152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12152), + [anon_sym_BSLASHincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHlabel] = ACTIONS(12152), + [anon_sym_BSLASHref] = ACTIONS(12152), + [anon_sym_BSLASHvref] = ACTIONS(12152), + [anon_sym_BSLASHVref] = ACTIONS(12152), + [anon_sym_BSLASHautoref] = ACTIONS(12152), + [anon_sym_BSLASHpageref] = ACTIONS(12152), + [anon_sym_BSLASHcref] = ACTIONS(12152), + [anon_sym_BSLASHCref] = ACTIONS(12152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnameCref] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHlabelcref] = ACTIONS(12152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12152), + [anon_sym_BSLASHeqref] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange] = ACTIONS(12152), + [anon_sym_BSLASHCrefrange] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewlabel] = ACTIONS(12152), + [anon_sym_BSLASHnewcommand] = ACTIONS(12152), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12152), + [anon_sym_BSLASHgls] = ACTIONS(12152), + [anon_sym_BSLASHGls] = ACTIONS(12152), + [anon_sym_BSLASHGLS] = ACTIONS(12152), + [anon_sym_BSLASHglspl] = ACTIONS(12152), + [anon_sym_BSLASHGlspl] = ACTIONS(12152), + [anon_sym_BSLASHGLSpl] = ACTIONS(12152), + [anon_sym_BSLASHglsdisp] = ACTIONS(12152), + [anon_sym_BSLASHglslink] = ACTIONS(12152), + [anon_sym_BSLASHglstext] = ACTIONS(12152), + [anon_sym_BSLASHGlstext] = ACTIONS(12152), + [anon_sym_BSLASHGLStext] = ACTIONS(12152), + [anon_sym_BSLASHglsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12152), + [anon_sym_BSLASHglsplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSplural] = ACTIONS(12152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHglsname] = ACTIONS(12152), + [anon_sym_BSLASHGlsname] = ACTIONS(12152), + [anon_sym_BSLASHGLSname] = ACTIONS(12152), + [anon_sym_BSLASHglssymbol] = ACTIONS(12152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12152), + [anon_sym_BSLASHglsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12152), + [anon_sym_BSLASHglsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12152), + [anon_sym_BSLASHglsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12152), + [anon_sym_BSLASHglsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12152), + [anon_sym_BSLASHglsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12152), + [anon_sym_BSLASHnewacronym] = ACTIONS(12152), + [anon_sym_BSLASHacrshort] = ACTIONS(12152), + [anon_sym_BSLASHAcrshort] = ACTIONS(12152), + [anon_sym_BSLASHACRshort] = ACTIONS(12152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12152), + [anon_sym_BSLASHacrlong] = ACTIONS(12152), + [anon_sym_BSLASHAcrlong] = ACTIONS(12152), + [anon_sym_BSLASHACRlong] = ACTIONS(12152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12152), + [anon_sym_BSLASHacrfull] = ACTIONS(12152), + [anon_sym_BSLASHAcrfull] = ACTIONS(12152), + [anon_sym_BSLASHACRfull] = ACTIONS(12152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12152), + [anon_sym_BSLASHacs] = ACTIONS(12152), + [anon_sym_BSLASHAcs] = ACTIONS(12152), + [anon_sym_BSLASHacsp] = ACTIONS(12152), + [anon_sym_BSLASHAcsp] = ACTIONS(12152), + [anon_sym_BSLASHacl] = ACTIONS(12152), + [anon_sym_BSLASHAcl] = ACTIONS(12152), + [anon_sym_BSLASHaclp] = ACTIONS(12152), + [anon_sym_BSLASHAclp] = ACTIONS(12152), + [anon_sym_BSLASHacf] = ACTIONS(12152), + [anon_sym_BSLASHAcf] = ACTIONS(12152), + [anon_sym_BSLASHacfp] = ACTIONS(12152), + [anon_sym_BSLASHAcfp] = ACTIONS(12152), + [anon_sym_BSLASHac] = ACTIONS(12152), + [anon_sym_BSLASHAc] = ACTIONS(12152), + [anon_sym_BSLASHacp] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12152), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12152), + [anon_sym_BSLASHcolor] = ACTIONS(12152), + [anon_sym_BSLASHcolorbox] = ACTIONS(12152), + [anon_sym_BSLASHtextcolor] = ACTIONS(12152), + [anon_sym_BSLASHpagecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12152), + }, + [770] = { + [sym_generic_command_name] = ACTIONS(12156), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12156), + [aux_sym_chapter_token1] = ACTIONS(12156), + [aux_sym_section_token1] = ACTIONS(12156), + [aux_sym_subsection_token1] = ACTIONS(12156), + [aux_sym_subsubsection_token1] = ACTIONS(12156), + [aux_sym_paragraph_token1] = ACTIONS(12156), + [aux_sym_subparagraph_token1] = ACTIONS(12156), + [anon_sym_BSLASHitem] = ACTIONS(12156), + [anon_sym_LBRACK] = ACTIONS(12154), + [anon_sym_LBRACE] = ACTIONS(12154), + [anon_sym_LPAREN] = ACTIONS(12154), + [anon_sym_COMMA] = ACTIONS(12154), + [anon_sym_EQ] = ACTIONS(12154), + [sym_word] = ACTIONS(12154), + [sym_param] = ACTIONS(12154), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12154), + [anon_sym_DOLLAR] = ACTIONS(12156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12154), + [anon_sym_BSLASHbegin] = ACTIONS(12156), + [anon_sym_BSLASHend] = ACTIONS(12156), + [anon_sym_BSLASHcaption] = ACTIONS(12156), + [anon_sym_BSLASHcite] = ACTIONS(12156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCite] = ACTIONS(12156), + [anon_sym_BSLASHnocite] = ACTIONS(12156), + [anon_sym_BSLASHcitet] = ACTIONS(12156), + [anon_sym_BSLASHcitep] = ACTIONS(12156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteauthor] = ACTIONS(12156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitetitle] = ACTIONS(12156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteyear] = ACTIONS(12156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitedate] = ACTIONS(12156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteurl] = ACTIONS(12156), + [anon_sym_BSLASHfullcite] = ACTIONS(12156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12156), + [anon_sym_BSLASHcitealt] = ACTIONS(12156), + [anon_sym_BSLASHcitealp] = ACTIONS(12156), + [anon_sym_BSLASHcitetext] = ACTIONS(12156), + [anon_sym_BSLASHparencite] = ACTIONS(12156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHParencite] = ACTIONS(12156), + [anon_sym_BSLASHfootcite] = ACTIONS(12156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12156), + [anon_sym_BSLASHtextcite] = ACTIONS(12156), + [anon_sym_BSLASHTextcite] = ACTIONS(12156), + [anon_sym_BSLASHsmartcite] = ACTIONS(12156), + [anon_sym_BSLASHSmartcite] = ACTIONS(12156), + [anon_sym_BSLASHsupercite] = ACTIONS(12156), + [anon_sym_BSLASHautocite] = ACTIONS(12156), + [anon_sym_BSLASHAutocite] = ACTIONS(12156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHvolcite] = ACTIONS(12156), + [anon_sym_BSLASHVolcite] = ACTIONS(12156), + [anon_sym_BSLASHpvolcite] = ACTIONS(12156), + [anon_sym_BSLASHPvolcite] = ACTIONS(12156), + [anon_sym_BSLASHfvolcite] = ACTIONS(12156), + [anon_sym_BSLASHftvolcite] = ACTIONS(12156), + [anon_sym_BSLASHsvolcite] = ACTIONS(12156), + [anon_sym_BSLASHSvolcite] = ACTIONS(12156), + [anon_sym_BSLASHtvolcite] = ACTIONS(12156), + [anon_sym_BSLASHTvolcite] = ACTIONS(12156), + [anon_sym_BSLASHavolcite] = ACTIONS(12156), + [anon_sym_BSLASHAvolcite] = ACTIONS(12156), + [anon_sym_BSLASHnotecite] = ACTIONS(12156), + [anon_sym_BSLASHpnotecite] = ACTIONS(12156), + [anon_sym_BSLASHPnotecite] = ACTIONS(12156), + [anon_sym_BSLASHfnotecite] = ACTIONS(12156), + [anon_sym_BSLASHusepackage] = ACTIONS(12156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12156), + [anon_sym_BSLASHinclude] = ACTIONS(12156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12156), + [anon_sym_BSLASHinput] = ACTIONS(12156), + [anon_sym_BSLASHsubfile] = ACTIONS(12156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12156), + [anon_sym_BSLASHbibliography] = ACTIONS(12156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12156), + [anon_sym_BSLASHincludesvg] = ACTIONS(12156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12156), + [anon_sym_BSLASHimport] = ACTIONS(12156), + [anon_sym_BSLASHsubimport] = ACTIONS(12156), + [anon_sym_BSLASHinputfrom] = ACTIONS(12156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12156), + [anon_sym_BSLASHincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHlabel] = ACTIONS(12156), + [anon_sym_BSLASHref] = ACTIONS(12156), + [anon_sym_BSLASHvref] = ACTIONS(12156), + [anon_sym_BSLASHVref] = ACTIONS(12156), + [anon_sym_BSLASHautoref] = ACTIONS(12156), + [anon_sym_BSLASHpageref] = ACTIONS(12156), + [anon_sym_BSLASHcref] = ACTIONS(12156), + [anon_sym_BSLASHCref] = ACTIONS(12156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnameCref] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHlabelcref] = ACTIONS(12156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12156), + [anon_sym_BSLASHeqref] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange] = ACTIONS(12156), + [anon_sym_BSLASHCrefrange] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewlabel] = ACTIONS(12156), + [anon_sym_BSLASHnewcommand] = ACTIONS(12156), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12156), + [anon_sym_BSLASHgls] = ACTIONS(12156), + [anon_sym_BSLASHGls] = ACTIONS(12156), + [anon_sym_BSLASHGLS] = ACTIONS(12156), + [anon_sym_BSLASHglspl] = ACTIONS(12156), + [anon_sym_BSLASHGlspl] = ACTIONS(12156), + [anon_sym_BSLASHGLSpl] = ACTIONS(12156), + [anon_sym_BSLASHglsdisp] = ACTIONS(12156), + [anon_sym_BSLASHglslink] = ACTIONS(12156), + [anon_sym_BSLASHglstext] = ACTIONS(12156), + [anon_sym_BSLASHGlstext] = ACTIONS(12156), + [anon_sym_BSLASHGLStext] = ACTIONS(12156), + [anon_sym_BSLASHglsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12156), + [anon_sym_BSLASHglsplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSplural] = ACTIONS(12156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHglsname] = ACTIONS(12156), + [anon_sym_BSLASHGlsname] = ACTIONS(12156), + [anon_sym_BSLASHGLSname] = ACTIONS(12156), + [anon_sym_BSLASHglssymbol] = ACTIONS(12156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12156), + [anon_sym_BSLASHglsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12156), + [anon_sym_BSLASHglsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12156), + [anon_sym_BSLASHglsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12156), + [anon_sym_BSLASHglsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12156), + [anon_sym_BSLASHglsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12156), + [anon_sym_BSLASHnewacronym] = ACTIONS(12156), + [anon_sym_BSLASHacrshort] = ACTIONS(12156), + [anon_sym_BSLASHAcrshort] = ACTIONS(12156), + [anon_sym_BSLASHACRshort] = ACTIONS(12156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12156), + [anon_sym_BSLASHacrlong] = ACTIONS(12156), + [anon_sym_BSLASHAcrlong] = ACTIONS(12156), + [anon_sym_BSLASHACRlong] = ACTIONS(12156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12156), + [anon_sym_BSLASHacrfull] = ACTIONS(12156), + [anon_sym_BSLASHAcrfull] = ACTIONS(12156), + [anon_sym_BSLASHACRfull] = ACTIONS(12156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12156), + [anon_sym_BSLASHacs] = ACTIONS(12156), + [anon_sym_BSLASHAcs] = ACTIONS(12156), + [anon_sym_BSLASHacsp] = ACTIONS(12156), + [anon_sym_BSLASHAcsp] = ACTIONS(12156), + [anon_sym_BSLASHacl] = ACTIONS(12156), + [anon_sym_BSLASHAcl] = ACTIONS(12156), + [anon_sym_BSLASHaclp] = ACTIONS(12156), + [anon_sym_BSLASHAclp] = ACTIONS(12156), + [anon_sym_BSLASHacf] = ACTIONS(12156), + [anon_sym_BSLASHAcf] = ACTIONS(12156), + [anon_sym_BSLASHacfp] = ACTIONS(12156), + [anon_sym_BSLASHAcfp] = ACTIONS(12156), + [anon_sym_BSLASHac] = ACTIONS(12156), + [anon_sym_BSLASHAc] = ACTIONS(12156), + [anon_sym_BSLASHacp] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12156), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12156), + [anon_sym_BSLASHcolor] = ACTIONS(12156), + [anon_sym_BSLASHcolorbox] = ACTIONS(12156), + [anon_sym_BSLASHtextcolor] = ACTIONS(12156), + [anon_sym_BSLASHpagecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12156), + }, + [771] = { + [sym_generic_command_name] = ACTIONS(12160), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12160), + [aux_sym_chapter_token1] = ACTIONS(12160), + [aux_sym_section_token1] = ACTIONS(12160), + [aux_sym_subsection_token1] = ACTIONS(12160), + [aux_sym_subsubsection_token1] = ACTIONS(12160), + [aux_sym_paragraph_token1] = ACTIONS(12160), + [aux_sym_subparagraph_token1] = ACTIONS(12160), + [anon_sym_BSLASHitem] = ACTIONS(12160), + [anon_sym_LBRACK] = ACTIONS(12158), + [anon_sym_LBRACE] = ACTIONS(12158), + [anon_sym_LPAREN] = ACTIONS(12158), + [anon_sym_COMMA] = ACTIONS(12158), + [anon_sym_EQ] = ACTIONS(12158), + [sym_word] = ACTIONS(12158), + [sym_param] = ACTIONS(12158), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12158), + [anon_sym_DOLLAR] = ACTIONS(12160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12158), + [anon_sym_BSLASHbegin] = ACTIONS(12160), + [anon_sym_BSLASHend] = ACTIONS(12160), + [anon_sym_BSLASHcaption] = ACTIONS(12160), + [anon_sym_BSLASHcite] = ACTIONS(12160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCite] = ACTIONS(12160), + [anon_sym_BSLASHnocite] = ACTIONS(12160), + [anon_sym_BSLASHcitet] = ACTIONS(12160), + [anon_sym_BSLASHcitep] = ACTIONS(12160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteauthor] = ACTIONS(12160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitetitle] = ACTIONS(12160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteyear] = ACTIONS(12160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitedate] = ACTIONS(12160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteurl] = ACTIONS(12160), + [anon_sym_BSLASHfullcite] = ACTIONS(12160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12160), + [anon_sym_BSLASHcitealt] = ACTIONS(12160), + [anon_sym_BSLASHcitealp] = ACTIONS(12160), + [anon_sym_BSLASHcitetext] = ACTIONS(12160), + [anon_sym_BSLASHparencite] = ACTIONS(12160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHParencite] = ACTIONS(12160), + [anon_sym_BSLASHfootcite] = ACTIONS(12160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12160), + [anon_sym_BSLASHtextcite] = ACTIONS(12160), + [anon_sym_BSLASHTextcite] = ACTIONS(12160), + [anon_sym_BSLASHsmartcite] = ACTIONS(12160), + [anon_sym_BSLASHSmartcite] = ACTIONS(12160), + [anon_sym_BSLASHsupercite] = ACTIONS(12160), + [anon_sym_BSLASHautocite] = ACTIONS(12160), + [anon_sym_BSLASHAutocite] = ACTIONS(12160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHvolcite] = ACTIONS(12160), + [anon_sym_BSLASHVolcite] = ACTIONS(12160), + [anon_sym_BSLASHpvolcite] = ACTIONS(12160), + [anon_sym_BSLASHPvolcite] = ACTIONS(12160), + [anon_sym_BSLASHfvolcite] = ACTIONS(12160), + [anon_sym_BSLASHftvolcite] = ACTIONS(12160), + [anon_sym_BSLASHsvolcite] = ACTIONS(12160), + [anon_sym_BSLASHSvolcite] = ACTIONS(12160), + [anon_sym_BSLASHtvolcite] = ACTIONS(12160), + [anon_sym_BSLASHTvolcite] = ACTIONS(12160), + [anon_sym_BSLASHavolcite] = ACTIONS(12160), + [anon_sym_BSLASHAvolcite] = ACTIONS(12160), + [anon_sym_BSLASHnotecite] = ACTIONS(12160), + [anon_sym_BSLASHpnotecite] = ACTIONS(12160), + [anon_sym_BSLASHPnotecite] = ACTIONS(12160), + [anon_sym_BSLASHfnotecite] = ACTIONS(12160), + [anon_sym_BSLASHusepackage] = ACTIONS(12160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12160), + [anon_sym_BSLASHinclude] = ACTIONS(12160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12160), + [anon_sym_BSLASHinput] = ACTIONS(12160), + [anon_sym_BSLASHsubfile] = ACTIONS(12160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12160), + [anon_sym_BSLASHbibliography] = ACTIONS(12160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12160), + [anon_sym_BSLASHincludesvg] = ACTIONS(12160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12160), + [anon_sym_BSLASHimport] = ACTIONS(12160), + [anon_sym_BSLASHsubimport] = ACTIONS(12160), + [anon_sym_BSLASHinputfrom] = ACTIONS(12160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12160), + [anon_sym_BSLASHincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHlabel] = ACTIONS(12160), + [anon_sym_BSLASHref] = ACTIONS(12160), + [anon_sym_BSLASHvref] = ACTIONS(12160), + [anon_sym_BSLASHVref] = ACTIONS(12160), + [anon_sym_BSLASHautoref] = ACTIONS(12160), + [anon_sym_BSLASHpageref] = ACTIONS(12160), + [anon_sym_BSLASHcref] = ACTIONS(12160), + [anon_sym_BSLASHCref] = ACTIONS(12160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnameCref] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHlabelcref] = ACTIONS(12160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12160), + [anon_sym_BSLASHeqref] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange] = ACTIONS(12160), + [anon_sym_BSLASHCrefrange] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewlabel] = ACTIONS(12160), + [anon_sym_BSLASHnewcommand] = ACTIONS(12160), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12160), + [anon_sym_BSLASHgls] = ACTIONS(12160), + [anon_sym_BSLASHGls] = ACTIONS(12160), + [anon_sym_BSLASHGLS] = ACTIONS(12160), + [anon_sym_BSLASHglspl] = ACTIONS(12160), + [anon_sym_BSLASHGlspl] = ACTIONS(12160), + [anon_sym_BSLASHGLSpl] = ACTIONS(12160), + [anon_sym_BSLASHglsdisp] = ACTIONS(12160), + [anon_sym_BSLASHglslink] = ACTIONS(12160), + [anon_sym_BSLASHglstext] = ACTIONS(12160), + [anon_sym_BSLASHGlstext] = ACTIONS(12160), + [anon_sym_BSLASHGLStext] = ACTIONS(12160), + [anon_sym_BSLASHglsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12160), + [anon_sym_BSLASHglsplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSplural] = ACTIONS(12160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHglsname] = ACTIONS(12160), + [anon_sym_BSLASHGlsname] = ACTIONS(12160), + [anon_sym_BSLASHGLSname] = ACTIONS(12160), + [anon_sym_BSLASHglssymbol] = ACTIONS(12160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12160), + [anon_sym_BSLASHglsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12160), + [anon_sym_BSLASHglsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12160), + [anon_sym_BSLASHglsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12160), + [anon_sym_BSLASHglsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12160), + [anon_sym_BSLASHglsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12160), + [anon_sym_BSLASHnewacronym] = ACTIONS(12160), + [anon_sym_BSLASHacrshort] = ACTIONS(12160), + [anon_sym_BSLASHAcrshort] = ACTIONS(12160), + [anon_sym_BSLASHACRshort] = ACTIONS(12160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12160), + [anon_sym_BSLASHacrlong] = ACTIONS(12160), + [anon_sym_BSLASHAcrlong] = ACTIONS(12160), + [anon_sym_BSLASHACRlong] = ACTIONS(12160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12160), + [anon_sym_BSLASHacrfull] = ACTIONS(12160), + [anon_sym_BSLASHAcrfull] = ACTIONS(12160), + [anon_sym_BSLASHACRfull] = ACTIONS(12160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12160), + [anon_sym_BSLASHacs] = ACTIONS(12160), + [anon_sym_BSLASHAcs] = ACTIONS(12160), + [anon_sym_BSLASHacsp] = ACTIONS(12160), + [anon_sym_BSLASHAcsp] = ACTIONS(12160), + [anon_sym_BSLASHacl] = ACTIONS(12160), + [anon_sym_BSLASHAcl] = ACTIONS(12160), + [anon_sym_BSLASHaclp] = ACTIONS(12160), + [anon_sym_BSLASHAclp] = ACTIONS(12160), + [anon_sym_BSLASHacf] = ACTIONS(12160), + [anon_sym_BSLASHAcf] = ACTIONS(12160), + [anon_sym_BSLASHacfp] = ACTIONS(12160), + [anon_sym_BSLASHAcfp] = ACTIONS(12160), + [anon_sym_BSLASHac] = ACTIONS(12160), + [anon_sym_BSLASHAc] = ACTIONS(12160), + [anon_sym_BSLASHacp] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12160), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12160), + [anon_sym_BSLASHcolor] = ACTIONS(12160), + [anon_sym_BSLASHcolorbox] = ACTIONS(12160), + [anon_sym_BSLASHtextcolor] = ACTIONS(12160), + [anon_sym_BSLASHpagecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12160), + }, + [772] = { + [sym_generic_command_name] = ACTIONS(12173), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12173), + [aux_sym_chapter_token1] = ACTIONS(12173), + [aux_sym_section_token1] = ACTIONS(12173), + [aux_sym_subsection_token1] = ACTIONS(12173), + [aux_sym_subsubsection_token1] = ACTIONS(12173), + [aux_sym_paragraph_token1] = ACTIONS(12173), + [aux_sym_subparagraph_token1] = ACTIONS(12173), + [anon_sym_BSLASHitem] = ACTIONS(12173), + [anon_sym_LBRACK] = ACTIONS(12171), + [anon_sym_LBRACE] = ACTIONS(12171), + [anon_sym_LPAREN] = ACTIONS(12171), + [anon_sym_COMMA] = ACTIONS(12171), + [anon_sym_EQ] = ACTIONS(12171), + [sym_word] = ACTIONS(12171), + [sym_param] = ACTIONS(12171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12171), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12171), + [anon_sym_DOLLAR] = ACTIONS(12173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12171), + [anon_sym_BSLASHbegin] = ACTIONS(12173), + [anon_sym_BSLASHend] = ACTIONS(12173), + [anon_sym_BSLASHcaption] = ACTIONS(12173), + [anon_sym_BSLASHcite] = ACTIONS(12173), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCite] = ACTIONS(12173), + [anon_sym_BSLASHnocite] = ACTIONS(12173), + [anon_sym_BSLASHcitet] = ACTIONS(12173), + [anon_sym_BSLASHcitep] = ACTIONS(12173), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteauthor] = ACTIONS(12173), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12173), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitetitle] = ACTIONS(12173), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteyear] = ACTIONS(12173), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitedate] = ACTIONS(12173), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteurl] = ACTIONS(12173), + [anon_sym_BSLASHfullcite] = ACTIONS(12173), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12173), + [anon_sym_BSLASHcitealt] = ACTIONS(12173), + [anon_sym_BSLASHcitealp] = ACTIONS(12173), + [anon_sym_BSLASHcitetext] = ACTIONS(12173), + [anon_sym_BSLASHparencite] = ACTIONS(12173), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHParencite] = ACTIONS(12173), + [anon_sym_BSLASHfootcite] = ACTIONS(12173), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12173), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12173), + [anon_sym_BSLASHtextcite] = ACTIONS(12173), + [anon_sym_BSLASHTextcite] = ACTIONS(12173), + [anon_sym_BSLASHsmartcite] = ACTIONS(12173), + [anon_sym_BSLASHSmartcite] = ACTIONS(12173), + [anon_sym_BSLASHsupercite] = ACTIONS(12173), + [anon_sym_BSLASHautocite] = ACTIONS(12173), + [anon_sym_BSLASHAutocite] = ACTIONS(12173), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHvolcite] = ACTIONS(12173), + [anon_sym_BSLASHVolcite] = ACTIONS(12173), + [anon_sym_BSLASHpvolcite] = ACTIONS(12173), + [anon_sym_BSLASHPvolcite] = ACTIONS(12173), + [anon_sym_BSLASHfvolcite] = ACTIONS(12173), + [anon_sym_BSLASHftvolcite] = ACTIONS(12173), + [anon_sym_BSLASHsvolcite] = ACTIONS(12173), + [anon_sym_BSLASHSvolcite] = ACTIONS(12173), + [anon_sym_BSLASHtvolcite] = ACTIONS(12173), + [anon_sym_BSLASHTvolcite] = ACTIONS(12173), + [anon_sym_BSLASHavolcite] = ACTIONS(12173), + [anon_sym_BSLASHAvolcite] = ACTIONS(12173), + [anon_sym_BSLASHnotecite] = ACTIONS(12173), + [anon_sym_BSLASHpnotecite] = ACTIONS(12173), + [anon_sym_BSLASHPnotecite] = ACTIONS(12173), + [anon_sym_BSLASHfnotecite] = ACTIONS(12173), + [anon_sym_BSLASHusepackage] = ACTIONS(12173), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12173), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12173), + [anon_sym_BSLASHinclude] = ACTIONS(12173), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12173), + [anon_sym_BSLASHinput] = ACTIONS(12173), + [anon_sym_BSLASHsubfile] = ACTIONS(12173), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12173), + [anon_sym_BSLASHbibliography] = ACTIONS(12173), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12173), + [anon_sym_BSLASHincludesvg] = ACTIONS(12173), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12173), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12173), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12173), + [anon_sym_BSLASHimport] = ACTIONS(12173), + [anon_sym_BSLASHsubimport] = ACTIONS(12173), + [anon_sym_BSLASHinputfrom] = ACTIONS(12173), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12173), + [anon_sym_BSLASHincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHlabel] = ACTIONS(12173), + [anon_sym_BSLASHref] = ACTIONS(12173), + [anon_sym_BSLASHvref] = ACTIONS(12173), + [anon_sym_BSLASHVref] = ACTIONS(12173), + [anon_sym_BSLASHautoref] = ACTIONS(12173), + [anon_sym_BSLASHpageref] = ACTIONS(12173), + [anon_sym_BSLASHcref] = ACTIONS(12173), + [anon_sym_BSLASHCref] = ACTIONS(12173), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnameCref] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHlabelcref] = ACTIONS(12173), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12173), + [anon_sym_BSLASHeqref] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange] = ACTIONS(12173), + [anon_sym_BSLASHCrefrange] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewlabel] = ACTIONS(12173), + [anon_sym_BSLASHnewcommand] = ACTIONS(12173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12173), + [anon_sym_BSLASHgls] = ACTIONS(12173), + [anon_sym_BSLASHGls] = ACTIONS(12173), + [anon_sym_BSLASHGLS] = ACTIONS(12173), + [anon_sym_BSLASHglspl] = ACTIONS(12173), + [anon_sym_BSLASHGlspl] = ACTIONS(12173), + [anon_sym_BSLASHGLSpl] = ACTIONS(12173), + [anon_sym_BSLASHglsdisp] = ACTIONS(12173), + [anon_sym_BSLASHglslink] = ACTIONS(12173), + [anon_sym_BSLASHglstext] = ACTIONS(12173), + [anon_sym_BSLASHGlstext] = ACTIONS(12173), + [anon_sym_BSLASHGLStext] = ACTIONS(12173), + [anon_sym_BSLASHglsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12173), + [anon_sym_BSLASHglsplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSplural] = ACTIONS(12173), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHglsname] = ACTIONS(12173), + [anon_sym_BSLASHGlsname] = ACTIONS(12173), + [anon_sym_BSLASHGLSname] = ACTIONS(12173), + [anon_sym_BSLASHglssymbol] = ACTIONS(12173), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12173), + [anon_sym_BSLASHglsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12173), + [anon_sym_BSLASHglsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12173), + [anon_sym_BSLASHglsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12173), + [anon_sym_BSLASHglsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12173), + [anon_sym_BSLASHglsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12173), + [anon_sym_BSLASHnewacronym] = ACTIONS(12173), + [anon_sym_BSLASHacrshort] = ACTIONS(12173), + [anon_sym_BSLASHAcrshort] = ACTIONS(12173), + [anon_sym_BSLASHACRshort] = ACTIONS(12173), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12173), + [anon_sym_BSLASHacrlong] = ACTIONS(12173), + [anon_sym_BSLASHAcrlong] = ACTIONS(12173), + [anon_sym_BSLASHACRlong] = ACTIONS(12173), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12173), + [anon_sym_BSLASHacrfull] = ACTIONS(12173), + [anon_sym_BSLASHAcrfull] = ACTIONS(12173), + [anon_sym_BSLASHACRfull] = ACTIONS(12173), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12173), + [anon_sym_BSLASHacs] = ACTIONS(12173), + [anon_sym_BSLASHAcs] = ACTIONS(12173), + [anon_sym_BSLASHacsp] = ACTIONS(12173), + [anon_sym_BSLASHAcsp] = ACTIONS(12173), + [anon_sym_BSLASHacl] = ACTIONS(12173), + [anon_sym_BSLASHAcl] = ACTIONS(12173), + [anon_sym_BSLASHaclp] = ACTIONS(12173), + [anon_sym_BSLASHAclp] = ACTIONS(12173), + [anon_sym_BSLASHacf] = ACTIONS(12173), + [anon_sym_BSLASHAcf] = ACTIONS(12173), + [anon_sym_BSLASHacfp] = ACTIONS(12173), + [anon_sym_BSLASHAcfp] = ACTIONS(12173), + [anon_sym_BSLASHac] = ACTIONS(12173), + [anon_sym_BSLASHAc] = ACTIONS(12173), + [anon_sym_BSLASHacp] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12173), + [anon_sym_BSLASHcolor] = ACTIONS(12173), + [anon_sym_BSLASHcolorbox] = ACTIONS(12173), + [anon_sym_BSLASHtextcolor] = ACTIONS(12173), + [anon_sym_BSLASHpagecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12173), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12173), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12173), + }, + [773] = { + [sym_generic_command_name] = ACTIONS(12177), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12177), + [aux_sym_chapter_token1] = ACTIONS(12177), + [aux_sym_section_token1] = ACTIONS(12177), + [aux_sym_subsection_token1] = ACTIONS(12177), + [aux_sym_subsubsection_token1] = ACTIONS(12177), + [aux_sym_paragraph_token1] = ACTIONS(12177), + [aux_sym_subparagraph_token1] = ACTIONS(12177), + [anon_sym_BSLASHitem] = ACTIONS(12177), + [anon_sym_LBRACK] = ACTIONS(12175), + [anon_sym_LBRACE] = ACTIONS(12175), + [anon_sym_LPAREN] = ACTIONS(12175), + [anon_sym_COMMA] = ACTIONS(12175), + [anon_sym_EQ] = ACTIONS(12175), + [sym_word] = ACTIONS(12175), + [sym_param] = ACTIONS(12175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12175), + [anon_sym_DOLLAR] = ACTIONS(12177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12175), + [anon_sym_BSLASHbegin] = ACTIONS(12177), + [anon_sym_BSLASHend] = ACTIONS(12177), + [anon_sym_BSLASHcaption] = ACTIONS(12177), + [anon_sym_BSLASHcite] = ACTIONS(12177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCite] = ACTIONS(12177), + [anon_sym_BSLASHnocite] = ACTIONS(12177), + [anon_sym_BSLASHcitet] = ACTIONS(12177), + [anon_sym_BSLASHcitep] = ACTIONS(12177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteauthor] = ACTIONS(12177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitetitle] = ACTIONS(12177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteyear] = ACTIONS(12177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitedate] = ACTIONS(12177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteurl] = ACTIONS(12177), + [anon_sym_BSLASHfullcite] = ACTIONS(12177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12177), + [anon_sym_BSLASHcitealt] = ACTIONS(12177), + [anon_sym_BSLASHcitealp] = ACTIONS(12177), + [anon_sym_BSLASHcitetext] = ACTIONS(12177), + [anon_sym_BSLASHparencite] = ACTIONS(12177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHParencite] = ACTIONS(12177), + [anon_sym_BSLASHfootcite] = ACTIONS(12177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12177), + [anon_sym_BSLASHtextcite] = ACTIONS(12177), + [anon_sym_BSLASHTextcite] = ACTIONS(12177), + [anon_sym_BSLASHsmartcite] = ACTIONS(12177), + [anon_sym_BSLASHSmartcite] = ACTIONS(12177), + [anon_sym_BSLASHsupercite] = ACTIONS(12177), + [anon_sym_BSLASHautocite] = ACTIONS(12177), + [anon_sym_BSLASHAutocite] = ACTIONS(12177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHvolcite] = ACTIONS(12177), + [anon_sym_BSLASHVolcite] = ACTIONS(12177), + [anon_sym_BSLASHpvolcite] = ACTIONS(12177), + [anon_sym_BSLASHPvolcite] = ACTIONS(12177), + [anon_sym_BSLASHfvolcite] = ACTIONS(12177), + [anon_sym_BSLASHftvolcite] = ACTIONS(12177), + [anon_sym_BSLASHsvolcite] = ACTIONS(12177), + [anon_sym_BSLASHSvolcite] = ACTIONS(12177), + [anon_sym_BSLASHtvolcite] = ACTIONS(12177), + [anon_sym_BSLASHTvolcite] = ACTIONS(12177), + [anon_sym_BSLASHavolcite] = ACTIONS(12177), + [anon_sym_BSLASHAvolcite] = ACTIONS(12177), + [anon_sym_BSLASHnotecite] = ACTIONS(12177), + [anon_sym_BSLASHpnotecite] = ACTIONS(12177), + [anon_sym_BSLASHPnotecite] = ACTIONS(12177), + [anon_sym_BSLASHfnotecite] = ACTIONS(12177), + [anon_sym_BSLASHusepackage] = ACTIONS(12177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12177), + [anon_sym_BSLASHinclude] = ACTIONS(12177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12177), + [anon_sym_BSLASHinput] = ACTIONS(12177), + [anon_sym_BSLASHsubfile] = ACTIONS(12177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12177), + [anon_sym_BSLASHbibliography] = ACTIONS(12177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12177), + [anon_sym_BSLASHincludesvg] = ACTIONS(12177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12177), + [anon_sym_BSLASHimport] = ACTIONS(12177), + [anon_sym_BSLASHsubimport] = ACTIONS(12177), + [anon_sym_BSLASHinputfrom] = ACTIONS(12177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12177), + [anon_sym_BSLASHincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHlabel] = ACTIONS(12177), + [anon_sym_BSLASHref] = ACTIONS(12177), + [anon_sym_BSLASHvref] = ACTIONS(12177), + [anon_sym_BSLASHVref] = ACTIONS(12177), + [anon_sym_BSLASHautoref] = ACTIONS(12177), + [anon_sym_BSLASHpageref] = ACTIONS(12177), + [anon_sym_BSLASHcref] = ACTIONS(12177), + [anon_sym_BSLASHCref] = ACTIONS(12177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnameCref] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHlabelcref] = ACTIONS(12177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12177), + [anon_sym_BSLASHeqref] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange] = ACTIONS(12177), + [anon_sym_BSLASHCrefrange] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewlabel] = ACTIONS(12177), + [anon_sym_BSLASHnewcommand] = ACTIONS(12177), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12177), + [anon_sym_BSLASHgls] = ACTIONS(12177), + [anon_sym_BSLASHGls] = ACTIONS(12177), + [anon_sym_BSLASHGLS] = ACTIONS(12177), + [anon_sym_BSLASHglspl] = ACTIONS(12177), + [anon_sym_BSLASHGlspl] = ACTIONS(12177), + [anon_sym_BSLASHGLSpl] = ACTIONS(12177), + [anon_sym_BSLASHglsdisp] = ACTIONS(12177), + [anon_sym_BSLASHglslink] = ACTIONS(12177), + [anon_sym_BSLASHglstext] = ACTIONS(12177), + [anon_sym_BSLASHGlstext] = ACTIONS(12177), + [anon_sym_BSLASHGLStext] = ACTIONS(12177), + [anon_sym_BSLASHglsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12177), + [anon_sym_BSLASHglsplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSplural] = ACTIONS(12177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHglsname] = ACTIONS(12177), + [anon_sym_BSLASHGlsname] = ACTIONS(12177), + [anon_sym_BSLASHGLSname] = ACTIONS(12177), + [anon_sym_BSLASHglssymbol] = ACTIONS(12177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12177), + [anon_sym_BSLASHglsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12177), + [anon_sym_BSLASHglsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12177), + [anon_sym_BSLASHglsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12177), + [anon_sym_BSLASHglsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12177), + [anon_sym_BSLASHglsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12177), + [anon_sym_BSLASHnewacronym] = ACTIONS(12177), + [anon_sym_BSLASHacrshort] = ACTIONS(12177), + [anon_sym_BSLASHAcrshort] = ACTIONS(12177), + [anon_sym_BSLASHACRshort] = ACTIONS(12177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12177), + [anon_sym_BSLASHacrlong] = ACTIONS(12177), + [anon_sym_BSLASHAcrlong] = ACTIONS(12177), + [anon_sym_BSLASHACRlong] = ACTIONS(12177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12177), + [anon_sym_BSLASHacrfull] = ACTIONS(12177), + [anon_sym_BSLASHAcrfull] = ACTIONS(12177), + [anon_sym_BSLASHACRfull] = ACTIONS(12177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12177), + [anon_sym_BSLASHacs] = ACTIONS(12177), + [anon_sym_BSLASHAcs] = ACTIONS(12177), + [anon_sym_BSLASHacsp] = ACTIONS(12177), + [anon_sym_BSLASHAcsp] = ACTIONS(12177), + [anon_sym_BSLASHacl] = ACTIONS(12177), + [anon_sym_BSLASHAcl] = ACTIONS(12177), + [anon_sym_BSLASHaclp] = ACTIONS(12177), + [anon_sym_BSLASHAclp] = ACTIONS(12177), + [anon_sym_BSLASHacf] = ACTIONS(12177), + [anon_sym_BSLASHAcf] = ACTIONS(12177), + [anon_sym_BSLASHacfp] = ACTIONS(12177), + [anon_sym_BSLASHAcfp] = ACTIONS(12177), + [anon_sym_BSLASHac] = ACTIONS(12177), + [anon_sym_BSLASHAc] = ACTIONS(12177), + [anon_sym_BSLASHacp] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12177), + [anon_sym_BSLASHcolor] = ACTIONS(12177), + [anon_sym_BSLASHcolorbox] = ACTIONS(12177), + [anon_sym_BSLASHtextcolor] = ACTIONS(12177), + [anon_sym_BSLASHpagecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12177), + }, + [774] = { + [sym_generic_command_name] = ACTIONS(12197), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12197), + [aux_sym_chapter_token1] = ACTIONS(12197), + [aux_sym_section_token1] = ACTIONS(12197), + [aux_sym_subsection_token1] = ACTIONS(12197), + [aux_sym_subsubsection_token1] = ACTIONS(12197), + [aux_sym_paragraph_token1] = ACTIONS(12197), + [aux_sym_subparagraph_token1] = ACTIONS(12197), + [anon_sym_BSLASHitem] = ACTIONS(12197), + [anon_sym_LBRACK] = ACTIONS(12195), + [anon_sym_LBRACE] = ACTIONS(12195), + [anon_sym_LPAREN] = ACTIONS(12195), + [anon_sym_COMMA] = ACTIONS(12195), + [anon_sym_EQ] = ACTIONS(12195), + [sym_word] = ACTIONS(12195), + [sym_param] = ACTIONS(12195), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12195), + [anon_sym_DOLLAR] = ACTIONS(12197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12195), + [anon_sym_BSLASHbegin] = ACTIONS(12197), + [anon_sym_BSLASHend] = ACTIONS(12197), + [anon_sym_BSLASHcaption] = ACTIONS(12197), + [anon_sym_BSLASHcite] = ACTIONS(12197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCite] = ACTIONS(12197), + [anon_sym_BSLASHnocite] = ACTIONS(12197), + [anon_sym_BSLASHcitet] = ACTIONS(12197), + [anon_sym_BSLASHcitep] = ACTIONS(12197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteauthor] = ACTIONS(12197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitetitle] = ACTIONS(12197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteyear] = ACTIONS(12197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitedate] = ACTIONS(12197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteurl] = ACTIONS(12197), + [anon_sym_BSLASHfullcite] = ACTIONS(12197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12197), + [anon_sym_BSLASHcitealt] = ACTIONS(12197), + [anon_sym_BSLASHcitealp] = ACTIONS(12197), + [anon_sym_BSLASHcitetext] = ACTIONS(12197), + [anon_sym_BSLASHparencite] = ACTIONS(12197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHParencite] = ACTIONS(12197), + [anon_sym_BSLASHfootcite] = ACTIONS(12197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12197), + [anon_sym_BSLASHtextcite] = ACTIONS(12197), + [anon_sym_BSLASHTextcite] = ACTIONS(12197), + [anon_sym_BSLASHsmartcite] = ACTIONS(12197), + [anon_sym_BSLASHSmartcite] = ACTIONS(12197), + [anon_sym_BSLASHsupercite] = ACTIONS(12197), + [anon_sym_BSLASHautocite] = ACTIONS(12197), + [anon_sym_BSLASHAutocite] = ACTIONS(12197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHvolcite] = ACTIONS(12197), + [anon_sym_BSLASHVolcite] = ACTIONS(12197), + [anon_sym_BSLASHpvolcite] = ACTIONS(12197), + [anon_sym_BSLASHPvolcite] = ACTIONS(12197), + [anon_sym_BSLASHfvolcite] = ACTIONS(12197), + [anon_sym_BSLASHftvolcite] = ACTIONS(12197), + [anon_sym_BSLASHsvolcite] = ACTIONS(12197), + [anon_sym_BSLASHSvolcite] = ACTIONS(12197), + [anon_sym_BSLASHtvolcite] = ACTIONS(12197), + [anon_sym_BSLASHTvolcite] = ACTIONS(12197), + [anon_sym_BSLASHavolcite] = ACTIONS(12197), + [anon_sym_BSLASHAvolcite] = ACTIONS(12197), + [anon_sym_BSLASHnotecite] = ACTIONS(12197), + [anon_sym_BSLASHpnotecite] = ACTIONS(12197), + [anon_sym_BSLASHPnotecite] = ACTIONS(12197), + [anon_sym_BSLASHfnotecite] = ACTIONS(12197), + [anon_sym_BSLASHusepackage] = ACTIONS(12197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12197), + [anon_sym_BSLASHinclude] = ACTIONS(12197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12197), + [anon_sym_BSLASHinput] = ACTIONS(12197), + [anon_sym_BSLASHsubfile] = ACTIONS(12197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12197), + [anon_sym_BSLASHbibliography] = ACTIONS(12197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12197), + [anon_sym_BSLASHincludesvg] = ACTIONS(12197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12197), + [anon_sym_BSLASHimport] = ACTIONS(12197), + [anon_sym_BSLASHsubimport] = ACTIONS(12197), + [anon_sym_BSLASHinputfrom] = ACTIONS(12197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12197), + [anon_sym_BSLASHincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHlabel] = ACTIONS(12197), + [anon_sym_BSLASHref] = ACTIONS(12197), + [anon_sym_BSLASHvref] = ACTIONS(12197), + [anon_sym_BSLASHVref] = ACTIONS(12197), + [anon_sym_BSLASHautoref] = ACTIONS(12197), + [anon_sym_BSLASHpageref] = ACTIONS(12197), + [anon_sym_BSLASHcref] = ACTIONS(12197), + [anon_sym_BSLASHCref] = ACTIONS(12197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnameCref] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHlabelcref] = ACTIONS(12197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12197), + [anon_sym_BSLASHeqref] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange] = ACTIONS(12197), + [anon_sym_BSLASHCrefrange] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewlabel] = ACTIONS(12197), + [anon_sym_BSLASHnewcommand] = ACTIONS(12197), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12197), + [anon_sym_BSLASHgls] = ACTIONS(12197), + [anon_sym_BSLASHGls] = ACTIONS(12197), + [anon_sym_BSLASHGLS] = ACTIONS(12197), + [anon_sym_BSLASHglspl] = ACTIONS(12197), + [anon_sym_BSLASHGlspl] = ACTIONS(12197), + [anon_sym_BSLASHGLSpl] = ACTIONS(12197), + [anon_sym_BSLASHglsdisp] = ACTIONS(12197), + [anon_sym_BSLASHglslink] = ACTIONS(12197), + [anon_sym_BSLASHglstext] = ACTIONS(12197), + [anon_sym_BSLASHGlstext] = ACTIONS(12197), + [anon_sym_BSLASHGLStext] = ACTIONS(12197), + [anon_sym_BSLASHglsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12197), + [anon_sym_BSLASHglsplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSplural] = ACTIONS(12197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHglsname] = ACTIONS(12197), + [anon_sym_BSLASHGlsname] = ACTIONS(12197), + [anon_sym_BSLASHGLSname] = ACTIONS(12197), + [anon_sym_BSLASHglssymbol] = ACTIONS(12197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12197), + [anon_sym_BSLASHglsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12197), + [anon_sym_BSLASHglsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12197), + [anon_sym_BSLASHglsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12197), + [anon_sym_BSLASHglsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12197), + [anon_sym_BSLASHglsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12197), + [anon_sym_BSLASHnewacronym] = ACTIONS(12197), + [anon_sym_BSLASHacrshort] = ACTIONS(12197), + [anon_sym_BSLASHAcrshort] = ACTIONS(12197), + [anon_sym_BSLASHACRshort] = ACTIONS(12197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12197), + [anon_sym_BSLASHacrlong] = ACTIONS(12197), + [anon_sym_BSLASHAcrlong] = ACTIONS(12197), + [anon_sym_BSLASHACRlong] = ACTIONS(12197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12197), + [anon_sym_BSLASHacrfull] = ACTIONS(12197), + [anon_sym_BSLASHAcrfull] = ACTIONS(12197), + [anon_sym_BSLASHACRfull] = ACTIONS(12197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12197), + [anon_sym_BSLASHacs] = ACTIONS(12197), + [anon_sym_BSLASHAcs] = ACTIONS(12197), + [anon_sym_BSLASHacsp] = ACTIONS(12197), + [anon_sym_BSLASHAcsp] = ACTIONS(12197), + [anon_sym_BSLASHacl] = ACTIONS(12197), + [anon_sym_BSLASHAcl] = ACTIONS(12197), + [anon_sym_BSLASHaclp] = ACTIONS(12197), + [anon_sym_BSLASHAclp] = ACTIONS(12197), + [anon_sym_BSLASHacf] = ACTIONS(12197), + [anon_sym_BSLASHAcf] = ACTIONS(12197), + [anon_sym_BSLASHacfp] = ACTIONS(12197), + [anon_sym_BSLASHAcfp] = ACTIONS(12197), + [anon_sym_BSLASHac] = ACTIONS(12197), + [anon_sym_BSLASHAc] = ACTIONS(12197), + [anon_sym_BSLASHacp] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12197), + [anon_sym_BSLASHcolor] = ACTIONS(12197), + [anon_sym_BSLASHcolorbox] = ACTIONS(12197), + [anon_sym_BSLASHtextcolor] = ACTIONS(12197), + [anon_sym_BSLASHpagecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12197), + }, + [775] = { + [sym_generic_command_name] = ACTIONS(12209), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12209), + [aux_sym_chapter_token1] = ACTIONS(12209), + [aux_sym_section_token1] = ACTIONS(12209), + [aux_sym_subsection_token1] = ACTIONS(12209), + [aux_sym_subsubsection_token1] = ACTIONS(12209), + [aux_sym_paragraph_token1] = ACTIONS(12209), + [aux_sym_subparagraph_token1] = ACTIONS(12209), + [anon_sym_BSLASHitem] = ACTIONS(12209), + [anon_sym_LBRACK] = ACTIONS(12207), + [anon_sym_LBRACE] = ACTIONS(12207), + [anon_sym_LPAREN] = ACTIONS(12207), + [anon_sym_COMMA] = ACTIONS(12207), + [anon_sym_EQ] = ACTIONS(12207), + [sym_word] = ACTIONS(12207), + [sym_param] = ACTIONS(12207), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12207), + [anon_sym_DOLLAR] = ACTIONS(12209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12207), + [anon_sym_BSLASHbegin] = ACTIONS(12209), + [anon_sym_BSLASHend] = ACTIONS(12209), + [anon_sym_BSLASHcaption] = ACTIONS(12209), + [anon_sym_BSLASHcite] = ACTIONS(12209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCite] = ACTIONS(12209), + [anon_sym_BSLASHnocite] = ACTIONS(12209), + [anon_sym_BSLASHcitet] = ACTIONS(12209), + [anon_sym_BSLASHcitep] = ACTIONS(12209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteauthor] = ACTIONS(12209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitetitle] = ACTIONS(12209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteyear] = ACTIONS(12209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitedate] = ACTIONS(12209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteurl] = ACTIONS(12209), + [anon_sym_BSLASHfullcite] = ACTIONS(12209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12209), + [anon_sym_BSLASHcitealt] = ACTIONS(12209), + [anon_sym_BSLASHcitealp] = ACTIONS(12209), + [anon_sym_BSLASHcitetext] = ACTIONS(12209), + [anon_sym_BSLASHparencite] = ACTIONS(12209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHParencite] = ACTIONS(12209), + [anon_sym_BSLASHfootcite] = ACTIONS(12209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12209), + [anon_sym_BSLASHtextcite] = ACTIONS(12209), + [anon_sym_BSLASHTextcite] = ACTIONS(12209), + [anon_sym_BSLASHsmartcite] = ACTIONS(12209), + [anon_sym_BSLASHSmartcite] = ACTIONS(12209), + [anon_sym_BSLASHsupercite] = ACTIONS(12209), + [anon_sym_BSLASHautocite] = ACTIONS(12209), + [anon_sym_BSLASHAutocite] = ACTIONS(12209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHvolcite] = ACTIONS(12209), + [anon_sym_BSLASHVolcite] = ACTIONS(12209), + [anon_sym_BSLASHpvolcite] = ACTIONS(12209), + [anon_sym_BSLASHPvolcite] = ACTIONS(12209), + [anon_sym_BSLASHfvolcite] = ACTIONS(12209), + [anon_sym_BSLASHftvolcite] = ACTIONS(12209), + [anon_sym_BSLASHsvolcite] = ACTIONS(12209), + [anon_sym_BSLASHSvolcite] = ACTIONS(12209), + [anon_sym_BSLASHtvolcite] = ACTIONS(12209), + [anon_sym_BSLASHTvolcite] = ACTIONS(12209), + [anon_sym_BSLASHavolcite] = ACTIONS(12209), + [anon_sym_BSLASHAvolcite] = ACTIONS(12209), + [anon_sym_BSLASHnotecite] = ACTIONS(12209), + [anon_sym_BSLASHpnotecite] = ACTIONS(12209), + [anon_sym_BSLASHPnotecite] = ACTIONS(12209), + [anon_sym_BSLASHfnotecite] = ACTIONS(12209), + [anon_sym_BSLASHusepackage] = ACTIONS(12209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12209), + [anon_sym_BSLASHinclude] = ACTIONS(12209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12209), + [anon_sym_BSLASHinput] = ACTIONS(12209), + [anon_sym_BSLASHsubfile] = ACTIONS(12209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12209), + [anon_sym_BSLASHbibliography] = ACTIONS(12209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12209), + [anon_sym_BSLASHincludesvg] = ACTIONS(12209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12209), + [anon_sym_BSLASHimport] = ACTIONS(12209), + [anon_sym_BSLASHsubimport] = ACTIONS(12209), + [anon_sym_BSLASHinputfrom] = ACTIONS(12209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12209), + [anon_sym_BSLASHincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHlabel] = ACTIONS(12209), + [anon_sym_BSLASHref] = ACTIONS(12209), + [anon_sym_BSLASHvref] = ACTIONS(12209), + [anon_sym_BSLASHVref] = ACTIONS(12209), + [anon_sym_BSLASHautoref] = ACTIONS(12209), + [anon_sym_BSLASHpageref] = ACTIONS(12209), + [anon_sym_BSLASHcref] = ACTIONS(12209), + [anon_sym_BSLASHCref] = ACTIONS(12209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnameCref] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHlabelcref] = ACTIONS(12209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12209), + [anon_sym_BSLASHeqref] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange] = ACTIONS(12209), + [anon_sym_BSLASHCrefrange] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewlabel] = ACTIONS(12209), + [anon_sym_BSLASHnewcommand] = ACTIONS(12209), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12209), + [anon_sym_BSLASHgls] = ACTIONS(12209), + [anon_sym_BSLASHGls] = ACTIONS(12209), + [anon_sym_BSLASHGLS] = ACTIONS(12209), + [anon_sym_BSLASHglspl] = ACTIONS(12209), + [anon_sym_BSLASHGlspl] = ACTIONS(12209), + [anon_sym_BSLASHGLSpl] = ACTIONS(12209), + [anon_sym_BSLASHglsdisp] = ACTIONS(12209), + [anon_sym_BSLASHglslink] = ACTIONS(12209), + [anon_sym_BSLASHglstext] = ACTIONS(12209), + [anon_sym_BSLASHGlstext] = ACTIONS(12209), + [anon_sym_BSLASHGLStext] = ACTIONS(12209), + [anon_sym_BSLASHglsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12209), + [anon_sym_BSLASHglsplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSplural] = ACTIONS(12209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHglsname] = ACTIONS(12209), + [anon_sym_BSLASHGlsname] = ACTIONS(12209), + [anon_sym_BSLASHGLSname] = ACTIONS(12209), + [anon_sym_BSLASHglssymbol] = ACTIONS(12209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12209), + [anon_sym_BSLASHglsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12209), + [anon_sym_BSLASHglsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12209), + [anon_sym_BSLASHglsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12209), + [anon_sym_BSLASHglsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12209), + [anon_sym_BSLASHglsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12209), + [anon_sym_BSLASHnewacronym] = ACTIONS(12209), + [anon_sym_BSLASHacrshort] = ACTIONS(12209), + [anon_sym_BSLASHAcrshort] = ACTIONS(12209), + [anon_sym_BSLASHACRshort] = ACTIONS(12209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12209), + [anon_sym_BSLASHacrlong] = ACTIONS(12209), + [anon_sym_BSLASHAcrlong] = ACTIONS(12209), + [anon_sym_BSLASHACRlong] = ACTIONS(12209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12209), + [anon_sym_BSLASHacrfull] = ACTIONS(12209), + [anon_sym_BSLASHAcrfull] = ACTIONS(12209), + [anon_sym_BSLASHACRfull] = ACTIONS(12209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12209), + [anon_sym_BSLASHacs] = ACTIONS(12209), + [anon_sym_BSLASHAcs] = ACTIONS(12209), + [anon_sym_BSLASHacsp] = ACTIONS(12209), + [anon_sym_BSLASHAcsp] = ACTIONS(12209), + [anon_sym_BSLASHacl] = ACTIONS(12209), + [anon_sym_BSLASHAcl] = ACTIONS(12209), + [anon_sym_BSLASHaclp] = ACTIONS(12209), + [anon_sym_BSLASHAclp] = ACTIONS(12209), + [anon_sym_BSLASHacf] = ACTIONS(12209), + [anon_sym_BSLASHAcf] = ACTIONS(12209), + [anon_sym_BSLASHacfp] = ACTIONS(12209), + [anon_sym_BSLASHAcfp] = ACTIONS(12209), + [anon_sym_BSLASHac] = ACTIONS(12209), + [anon_sym_BSLASHAc] = ACTIONS(12209), + [anon_sym_BSLASHacp] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12209), + [anon_sym_BSLASHcolor] = ACTIONS(12209), + [anon_sym_BSLASHcolorbox] = ACTIONS(12209), + [anon_sym_BSLASHtextcolor] = ACTIONS(12209), + [anon_sym_BSLASHpagecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12209), + }, + [776] = { + [sym_generic_command_name] = ACTIONS(12275), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12275), + [aux_sym_chapter_token1] = ACTIONS(12275), + [aux_sym_section_token1] = ACTIONS(12275), + [aux_sym_subsection_token1] = ACTIONS(12275), + [aux_sym_subsubsection_token1] = ACTIONS(12275), + [aux_sym_paragraph_token1] = ACTIONS(12275), + [aux_sym_subparagraph_token1] = ACTIONS(12275), + [anon_sym_BSLASHitem] = ACTIONS(12275), + [anon_sym_LBRACK] = ACTIONS(12273), + [anon_sym_LBRACE] = ACTIONS(12273), + [anon_sym_LPAREN] = ACTIONS(12273), + [anon_sym_COMMA] = ACTIONS(12273), + [anon_sym_EQ] = ACTIONS(12273), + [sym_word] = ACTIONS(12273), + [sym_param] = ACTIONS(12273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12273), + [anon_sym_DOLLAR] = ACTIONS(12275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12273), + [anon_sym_BSLASHbegin] = ACTIONS(12275), + [anon_sym_BSLASHend] = ACTIONS(12275), + [anon_sym_BSLASHcaption] = ACTIONS(12275), + [anon_sym_BSLASHcite] = ACTIONS(12275), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCite] = ACTIONS(12275), + [anon_sym_BSLASHnocite] = ACTIONS(12275), + [anon_sym_BSLASHcitet] = ACTIONS(12275), + [anon_sym_BSLASHcitep] = ACTIONS(12275), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteauthor] = ACTIONS(12275), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12275), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitetitle] = ACTIONS(12275), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteyear] = ACTIONS(12275), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitedate] = ACTIONS(12275), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteurl] = ACTIONS(12275), + [anon_sym_BSLASHfullcite] = ACTIONS(12275), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12275), + [anon_sym_BSLASHcitealt] = ACTIONS(12275), + [anon_sym_BSLASHcitealp] = ACTIONS(12275), + [anon_sym_BSLASHcitetext] = ACTIONS(12275), + [anon_sym_BSLASHparencite] = ACTIONS(12275), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHParencite] = ACTIONS(12275), + [anon_sym_BSLASHfootcite] = ACTIONS(12275), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12275), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12275), + [anon_sym_BSLASHtextcite] = ACTIONS(12275), + [anon_sym_BSLASHTextcite] = ACTIONS(12275), + [anon_sym_BSLASHsmartcite] = ACTIONS(12275), + [anon_sym_BSLASHSmartcite] = ACTIONS(12275), + [anon_sym_BSLASHsupercite] = ACTIONS(12275), + [anon_sym_BSLASHautocite] = ACTIONS(12275), + [anon_sym_BSLASHAutocite] = ACTIONS(12275), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHvolcite] = ACTIONS(12275), + [anon_sym_BSLASHVolcite] = ACTIONS(12275), + [anon_sym_BSLASHpvolcite] = ACTIONS(12275), + [anon_sym_BSLASHPvolcite] = ACTIONS(12275), + [anon_sym_BSLASHfvolcite] = ACTIONS(12275), + [anon_sym_BSLASHftvolcite] = ACTIONS(12275), + [anon_sym_BSLASHsvolcite] = ACTIONS(12275), + [anon_sym_BSLASHSvolcite] = ACTIONS(12275), + [anon_sym_BSLASHtvolcite] = ACTIONS(12275), + [anon_sym_BSLASHTvolcite] = ACTIONS(12275), + [anon_sym_BSLASHavolcite] = ACTIONS(12275), + [anon_sym_BSLASHAvolcite] = ACTIONS(12275), + [anon_sym_BSLASHnotecite] = ACTIONS(12275), + [anon_sym_BSLASHpnotecite] = ACTIONS(12275), + [anon_sym_BSLASHPnotecite] = ACTIONS(12275), + [anon_sym_BSLASHfnotecite] = ACTIONS(12275), + [anon_sym_BSLASHusepackage] = ACTIONS(12275), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12275), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12275), + [anon_sym_BSLASHinclude] = ACTIONS(12275), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12275), + [anon_sym_BSLASHinput] = ACTIONS(12275), + [anon_sym_BSLASHsubfile] = ACTIONS(12275), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12275), + [anon_sym_BSLASHbibliography] = ACTIONS(12275), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12275), + [anon_sym_BSLASHincludesvg] = ACTIONS(12275), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12275), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12275), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12275), + [anon_sym_BSLASHimport] = ACTIONS(12275), + [anon_sym_BSLASHsubimport] = ACTIONS(12275), + [anon_sym_BSLASHinputfrom] = ACTIONS(12275), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12275), + [anon_sym_BSLASHincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHlabel] = ACTIONS(12275), + [anon_sym_BSLASHref] = ACTIONS(12275), + [anon_sym_BSLASHvref] = ACTIONS(12275), + [anon_sym_BSLASHVref] = ACTIONS(12275), + [anon_sym_BSLASHautoref] = ACTIONS(12275), + [anon_sym_BSLASHpageref] = ACTIONS(12275), + [anon_sym_BSLASHcref] = ACTIONS(12275), + [anon_sym_BSLASHCref] = ACTIONS(12275), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnameCref] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHlabelcref] = ACTIONS(12275), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12275), + [anon_sym_BSLASHeqref] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange] = ACTIONS(12275), + [anon_sym_BSLASHCrefrange] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewlabel] = ACTIONS(12275), + [anon_sym_BSLASHnewcommand] = ACTIONS(12275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12275), + [anon_sym_BSLASHgls] = ACTIONS(12275), + [anon_sym_BSLASHGls] = ACTIONS(12275), + [anon_sym_BSLASHGLS] = ACTIONS(12275), + [anon_sym_BSLASHglspl] = ACTIONS(12275), + [anon_sym_BSLASHGlspl] = ACTIONS(12275), + [anon_sym_BSLASHGLSpl] = ACTIONS(12275), + [anon_sym_BSLASHglsdisp] = ACTIONS(12275), + [anon_sym_BSLASHglslink] = ACTIONS(12275), + [anon_sym_BSLASHglstext] = ACTIONS(12275), + [anon_sym_BSLASHGlstext] = ACTIONS(12275), + [anon_sym_BSLASHGLStext] = ACTIONS(12275), + [anon_sym_BSLASHglsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12275), + [anon_sym_BSLASHglsplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSplural] = ACTIONS(12275), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHglsname] = ACTIONS(12275), + [anon_sym_BSLASHGlsname] = ACTIONS(12275), + [anon_sym_BSLASHGLSname] = ACTIONS(12275), + [anon_sym_BSLASHglssymbol] = ACTIONS(12275), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12275), + [anon_sym_BSLASHglsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12275), + [anon_sym_BSLASHglsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12275), + [anon_sym_BSLASHglsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12275), + [anon_sym_BSLASHglsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12275), + [anon_sym_BSLASHglsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12275), + [anon_sym_BSLASHnewacronym] = ACTIONS(12275), + [anon_sym_BSLASHacrshort] = ACTIONS(12275), + [anon_sym_BSLASHAcrshort] = ACTIONS(12275), + [anon_sym_BSLASHACRshort] = ACTIONS(12275), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12275), + [anon_sym_BSLASHacrlong] = ACTIONS(12275), + [anon_sym_BSLASHAcrlong] = ACTIONS(12275), + [anon_sym_BSLASHACRlong] = ACTIONS(12275), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12275), + [anon_sym_BSLASHacrfull] = ACTIONS(12275), + [anon_sym_BSLASHAcrfull] = ACTIONS(12275), + [anon_sym_BSLASHACRfull] = ACTIONS(12275), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12275), + [anon_sym_BSLASHacs] = ACTIONS(12275), + [anon_sym_BSLASHAcs] = ACTIONS(12275), + [anon_sym_BSLASHacsp] = ACTIONS(12275), + [anon_sym_BSLASHAcsp] = ACTIONS(12275), + [anon_sym_BSLASHacl] = ACTIONS(12275), + [anon_sym_BSLASHAcl] = ACTIONS(12275), + [anon_sym_BSLASHaclp] = ACTIONS(12275), + [anon_sym_BSLASHAclp] = ACTIONS(12275), + [anon_sym_BSLASHacf] = ACTIONS(12275), + [anon_sym_BSLASHAcf] = ACTIONS(12275), + [anon_sym_BSLASHacfp] = ACTIONS(12275), + [anon_sym_BSLASHAcfp] = ACTIONS(12275), + [anon_sym_BSLASHac] = ACTIONS(12275), + [anon_sym_BSLASHAc] = ACTIONS(12275), + [anon_sym_BSLASHacp] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12275), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12275), + [anon_sym_BSLASHcolor] = ACTIONS(12275), + [anon_sym_BSLASHcolorbox] = ACTIONS(12275), + [anon_sym_BSLASHtextcolor] = ACTIONS(12275), + [anon_sym_BSLASHpagecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12275), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12275), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12275), + }, + [777] = { + [sym_generic_command_name] = ACTIONS(12283), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12283), + [aux_sym_chapter_token1] = ACTIONS(12283), + [aux_sym_section_token1] = ACTIONS(12283), + [aux_sym_subsection_token1] = ACTIONS(12283), + [aux_sym_subsubsection_token1] = ACTIONS(12283), + [aux_sym_paragraph_token1] = ACTIONS(12283), + [aux_sym_subparagraph_token1] = ACTIONS(12283), + [anon_sym_BSLASHitem] = ACTIONS(12283), + [anon_sym_LBRACK] = ACTIONS(12281), + [anon_sym_LBRACE] = ACTIONS(12281), + [anon_sym_LPAREN] = ACTIONS(12281), + [anon_sym_COMMA] = ACTIONS(12281), + [anon_sym_EQ] = ACTIONS(12281), + [sym_word] = ACTIONS(12281), + [sym_param] = ACTIONS(12281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12281), + [anon_sym_DOLLAR] = ACTIONS(12283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12281), + [anon_sym_BSLASHbegin] = ACTIONS(12283), + [anon_sym_BSLASHend] = ACTIONS(12283), + [anon_sym_BSLASHcaption] = ACTIONS(12283), + [anon_sym_BSLASHcite] = ACTIONS(12283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCite] = ACTIONS(12283), + [anon_sym_BSLASHnocite] = ACTIONS(12283), + [anon_sym_BSLASHcitet] = ACTIONS(12283), + [anon_sym_BSLASHcitep] = ACTIONS(12283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteauthor] = ACTIONS(12283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitetitle] = ACTIONS(12283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteyear] = ACTIONS(12283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitedate] = ACTIONS(12283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteurl] = ACTIONS(12283), + [anon_sym_BSLASHfullcite] = ACTIONS(12283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12283), + [anon_sym_BSLASHcitealt] = ACTIONS(12283), + [anon_sym_BSLASHcitealp] = ACTIONS(12283), + [anon_sym_BSLASHcitetext] = ACTIONS(12283), + [anon_sym_BSLASHparencite] = ACTIONS(12283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHParencite] = ACTIONS(12283), + [anon_sym_BSLASHfootcite] = ACTIONS(12283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12283), + [anon_sym_BSLASHtextcite] = ACTIONS(12283), + [anon_sym_BSLASHTextcite] = ACTIONS(12283), + [anon_sym_BSLASHsmartcite] = ACTIONS(12283), + [anon_sym_BSLASHSmartcite] = ACTIONS(12283), + [anon_sym_BSLASHsupercite] = ACTIONS(12283), + [anon_sym_BSLASHautocite] = ACTIONS(12283), + [anon_sym_BSLASHAutocite] = ACTIONS(12283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHvolcite] = ACTIONS(12283), + [anon_sym_BSLASHVolcite] = ACTIONS(12283), + [anon_sym_BSLASHpvolcite] = ACTIONS(12283), + [anon_sym_BSLASHPvolcite] = ACTIONS(12283), + [anon_sym_BSLASHfvolcite] = ACTIONS(12283), + [anon_sym_BSLASHftvolcite] = ACTIONS(12283), + [anon_sym_BSLASHsvolcite] = ACTIONS(12283), + [anon_sym_BSLASHSvolcite] = ACTIONS(12283), + [anon_sym_BSLASHtvolcite] = ACTIONS(12283), + [anon_sym_BSLASHTvolcite] = ACTIONS(12283), + [anon_sym_BSLASHavolcite] = ACTIONS(12283), + [anon_sym_BSLASHAvolcite] = ACTIONS(12283), + [anon_sym_BSLASHnotecite] = ACTIONS(12283), + [anon_sym_BSLASHpnotecite] = ACTIONS(12283), + [anon_sym_BSLASHPnotecite] = ACTIONS(12283), + [anon_sym_BSLASHfnotecite] = ACTIONS(12283), + [anon_sym_BSLASHusepackage] = ACTIONS(12283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12283), + [anon_sym_BSLASHinclude] = ACTIONS(12283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12283), + [anon_sym_BSLASHinput] = ACTIONS(12283), + [anon_sym_BSLASHsubfile] = ACTIONS(12283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12283), + [anon_sym_BSLASHbibliography] = ACTIONS(12283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12283), + [anon_sym_BSLASHincludesvg] = ACTIONS(12283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12283), + [anon_sym_BSLASHimport] = ACTIONS(12283), + [anon_sym_BSLASHsubimport] = ACTIONS(12283), + [anon_sym_BSLASHinputfrom] = ACTIONS(12283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12283), + [anon_sym_BSLASHincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHlabel] = ACTIONS(12283), + [anon_sym_BSLASHref] = ACTIONS(12283), + [anon_sym_BSLASHvref] = ACTIONS(12283), + [anon_sym_BSLASHVref] = ACTIONS(12283), + [anon_sym_BSLASHautoref] = ACTIONS(12283), + [anon_sym_BSLASHpageref] = ACTIONS(12283), + [anon_sym_BSLASHcref] = ACTIONS(12283), + [anon_sym_BSLASHCref] = ACTIONS(12283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnameCref] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHlabelcref] = ACTIONS(12283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12283), + [anon_sym_BSLASHeqref] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange] = ACTIONS(12283), + [anon_sym_BSLASHCrefrange] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewlabel] = ACTIONS(12283), + [anon_sym_BSLASHnewcommand] = ACTIONS(12283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12283), + [anon_sym_BSLASHgls] = ACTIONS(12283), + [anon_sym_BSLASHGls] = ACTIONS(12283), + [anon_sym_BSLASHGLS] = ACTIONS(12283), + [anon_sym_BSLASHglspl] = ACTIONS(12283), + [anon_sym_BSLASHGlspl] = ACTIONS(12283), + [anon_sym_BSLASHGLSpl] = ACTIONS(12283), + [anon_sym_BSLASHglsdisp] = ACTIONS(12283), + [anon_sym_BSLASHglslink] = ACTIONS(12283), + [anon_sym_BSLASHglstext] = ACTIONS(12283), + [anon_sym_BSLASHGlstext] = ACTIONS(12283), + [anon_sym_BSLASHGLStext] = ACTIONS(12283), + [anon_sym_BSLASHglsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12283), + [anon_sym_BSLASHglsplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSplural] = ACTIONS(12283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHglsname] = ACTIONS(12283), + [anon_sym_BSLASHGlsname] = ACTIONS(12283), + [anon_sym_BSLASHGLSname] = ACTIONS(12283), + [anon_sym_BSLASHglssymbol] = ACTIONS(12283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12283), + [anon_sym_BSLASHglsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12283), + [anon_sym_BSLASHglsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12283), + [anon_sym_BSLASHglsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12283), + [anon_sym_BSLASHglsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12283), + [anon_sym_BSLASHglsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12283), + [anon_sym_BSLASHnewacronym] = ACTIONS(12283), + [anon_sym_BSLASHacrshort] = ACTIONS(12283), + [anon_sym_BSLASHAcrshort] = ACTIONS(12283), + [anon_sym_BSLASHACRshort] = ACTIONS(12283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12283), + [anon_sym_BSLASHacrlong] = ACTIONS(12283), + [anon_sym_BSLASHAcrlong] = ACTIONS(12283), + [anon_sym_BSLASHACRlong] = ACTIONS(12283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12283), + [anon_sym_BSLASHacrfull] = ACTIONS(12283), + [anon_sym_BSLASHAcrfull] = ACTIONS(12283), + [anon_sym_BSLASHACRfull] = ACTIONS(12283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12283), + [anon_sym_BSLASHacs] = ACTIONS(12283), + [anon_sym_BSLASHAcs] = ACTIONS(12283), + [anon_sym_BSLASHacsp] = ACTIONS(12283), + [anon_sym_BSLASHAcsp] = ACTIONS(12283), + [anon_sym_BSLASHacl] = ACTIONS(12283), + [anon_sym_BSLASHAcl] = ACTIONS(12283), + [anon_sym_BSLASHaclp] = ACTIONS(12283), + [anon_sym_BSLASHAclp] = ACTIONS(12283), + [anon_sym_BSLASHacf] = ACTIONS(12283), + [anon_sym_BSLASHAcf] = ACTIONS(12283), + [anon_sym_BSLASHacfp] = ACTIONS(12283), + [anon_sym_BSLASHAcfp] = ACTIONS(12283), + [anon_sym_BSLASHac] = ACTIONS(12283), + [anon_sym_BSLASHAc] = ACTIONS(12283), + [anon_sym_BSLASHacp] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12283), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12283), + [anon_sym_BSLASHcolor] = ACTIONS(12283), + [anon_sym_BSLASHcolorbox] = ACTIONS(12283), + [anon_sym_BSLASHtextcolor] = ACTIONS(12283), + [anon_sym_BSLASHpagecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12283), + }, + [778] = { + [sym_generic_command_name] = ACTIONS(12299), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12299), + [aux_sym_chapter_token1] = ACTIONS(12299), + [aux_sym_section_token1] = ACTIONS(12299), + [aux_sym_subsection_token1] = ACTIONS(12299), + [aux_sym_subsubsection_token1] = ACTIONS(12299), + [aux_sym_paragraph_token1] = ACTIONS(12299), + [aux_sym_subparagraph_token1] = ACTIONS(12299), + [anon_sym_BSLASHitem] = ACTIONS(12299), + [anon_sym_LBRACK] = ACTIONS(12297), + [anon_sym_LBRACE] = ACTIONS(12297), + [anon_sym_LPAREN] = ACTIONS(12297), + [anon_sym_COMMA] = ACTIONS(12297), + [anon_sym_EQ] = ACTIONS(12297), + [sym_word] = ACTIONS(12297), + [sym_param] = ACTIONS(12297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12297), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12297), + [anon_sym_DOLLAR] = ACTIONS(12299), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12297), + [anon_sym_BSLASHbegin] = ACTIONS(12299), + [anon_sym_BSLASHend] = ACTIONS(12299), + [anon_sym_BSLASHcaption] = ACTIONS(12299), + [anon_sym_BSLASHcite] = ACTIONS(12299), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCite] = ACTIONS(12299), + [anon_sym_BSLASHnocite] = ACTIONS(12299), + [anon_sym_BSLASHcitet] = ACTIONS(12299), + [anon_sym_BSLASHcitep] = ACTIONS(12299), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteauthor] = ACTIONS(12299), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12299), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitetitle] = ACTIONS(12299), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteyear] = ACTIONS(12299), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitedate] = ACTIONS(12299), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteurl] = ACTIONS(12299), + [anon_sym_BSLASHfullcite] = ACTIONS(12299), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12299), + [anon_sym_BSLASHcitealt] = ACTIONS(12299), + [anon_sym_BSLASHcitealp] = ACTIONS(12299), + [anon_sym_BSLASHcitetext] = ACTIONS(12299), + [anon_sym_BSLASHparencite] = ACTIONS(12299), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHParencite] = ACTIONS(12299), + [anon_sym_BSLASHfootcite] = ACTIONS(12299), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12299), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12299), + [anon_sym_BSLASHtextcite] = ACTIONS(12299), + [anon_sym_BSLASHTextcite] = ACTIONS(12299), + [anon_sym_BSLASHsmartcite] = ACTIONS(12299), + [anon_sym_BSLASHSmartcite] = ACTIONS(12299), + [anon_sym_BSLASHsupercite] = ACTIONS(12299), + [anon_sym_BSLASHautocite] = ACTIONS(12299), + [anon_sym_BSLASHAutocite] = ACTIONS(12299), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHvolcite] = ACTIONS(12299), + [anon_sym_BSLASHVolcite] = ACTIONS(12299), + [anon_sym_BSLASHpvolcite] = ACTIONS(12299), + [anon_sym_BSLASHPvolcite] = ACTIONS(12299), + [anon_sym_BSLASHfvolcite] = ACTIONS(12299), + [anon_sym_BSLASHftvolcite] = ACTIONS(12299), + [anon_sym_BSLASHsvolcite] = ACTIONS(12299), + [anon_sym_BSLASHSvolcite] = ACTIONS(12299), + [anon_sym_BSLASHtvolcite] = ACTIONS(12299), + [anon_sym_BSLASHTvolcite] = ACTIONS(12299), + [anon_sym_BSLASHavolcite] = ACTIONS(12299), + [anon_sym_BSLASHAvolcite] = ACTIONS(12299), + [anon_sym_BSLASHnotecite] = ACTIONS(12299), + [anon_sym_BSLASHpnotecite] = ACTIONS(12299), + [anon_sym_BSLASHPnotecite] = ACTIONS(12299), + [anon_sym_BSLASHfnotecite] = ACTIONS(12299), + [anon_sym_BSLASHusepackage] = ACTIONS(12299), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12299), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12299), + [anon_sym_BSLASHinclude] = ACTIONS(12299), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12299), + [anon_sym_BSLASHinput] = ACTIONS(12299), + [anon_sym_BSLASHsubfile] = ACTIONS(12299), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12299), + [anon_sym_BSLASHbibliography] = ACTIONS(12299), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12299), + [anon_sym_BSLASHincludesvg] = ACTIONS(12299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12299), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12299), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12299), + [anon_sym_BSLASHimport] = ACTIONS(12299), + [anon_sym_BSLASHsubimport] = ACTIONS(12299), + [anon_sym_BSLASHinputfrom] = ACTIONS(12299), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12299), + [anon_sym_BSLASHincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHlabel] = ACTIONS(12299), + [anon_sym_BSLASHref] = ACTIONS(12299), + [anon_sym_BSLASHvref] = ACTIONS(12299), + [anon_sym_BSLASHVref] = ACTIONS(12299), + [anon_sym_BSLASHautoref] = ACTIONS(12299), + [anon_sym_BSLASHpageref] = ACTIONS(12299), + [anon_sym_BSLASHcref] = ACTIONS(12299), + [anon_sym_BSLASHCref] = ACTIONS(12299), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnameCref] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHlabelcref] = ACTIONS(12299), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12299), + [anon_sym_BSLASHeqref] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange] = ACTIONS(12299), + [anon_sym_BSLASHCrefrange] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewlabel] = ACTIONS(12299), + [anon_sym_BSLASHnewcommand] = ACTIONS(12299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12299), + [anon_sym_BSLASHgls] = ACTIONS(12299), + [anon_sym_BSLASHGls] = ACTIONS(12299), + [anon_sym_BSLASHGLS] = ACTIONS(12299), + [anon_sym_BSLASHglspl] = ACTIONS(12299), + [anon_sym_BSLASHGlspl] = ACTIONS(12299), + [anon_sym_BSLASHGLSpl] = ACTIONS(12299), + [anon_sym_BSLASHglsdisp] = ACTIONS(12299), + [anon_sym_BSLASHglslink] = ACTIONS(12299), + [anon_sym_BSLASHglstext] = ACTIONS(12299), + [anon_sym_BSLASHGlstext] = ACTIONS(12299), + [anon_sym_BSLASHGLStext] = ACTIONS(12299), + [anon_sym_BSLASHglsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12299), + [anon_sym_BSLASHglsplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSplural] = ACTIONS(12299), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHglsname] = ACTIONS(12299), + [anon_sym_BSLASHGlsname] = ACTIONS(12299), + [anon_sym_BSLASHGLSname] = ACTIONS(12299), + [anon_sym_BSLASHglssymbol] = ACTIONS(12299), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12299), + [anon_sym_BSLASHglsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12299), + [anon_sym_BSLASHglsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12299), + [anon_sym_BSLASHglsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12299), + [anon_sym_BSLASHglsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12299), + [anon_sym_BSLASHglsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12299), + [anon_sym_BSLASHnewacronym] = ACTIONS(12299), + [anon_sym_BSLASHacrshort] = ACTIONS(12299), + [anon_sym_BSLASHAcrshort] = ACTIONS(12299), + [anon_sym_BSLASHACRshort] = ACTIONS(12299), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12299), + [anon_sym_BSLASHacrlong] = ACTIONS(12299), + [anon_sym_BSLASHAcrlong] = ACTIONS(12299), + [anon_sym_BSLASHACRlong] = ACTIONS(12299), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12299), + [anon_sym_BSLASHacrfull] = ACTIONS(12299), + [anon_sym_BSLASHAcrfull] = ACTIONS(12299), + [anon_sym_BSLASHACRfull] = ACTIONS(12299), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12299), + [anon_sym_BSLASHacs] = ACTIONS(12299), + [anon_sym_BSLASHAcs] = ACTIONS(12299), + [anon_sym_BSLASHacsp] = ACTIONS(12299), + [anon_sym_BSLASHAcsp] = ACTIONS(12299), + [anon_sym_BSLASHacl] = ACTIONS(12299), + [anon_sym_BSLASHAcl] = ACTIONS(12299), + [anon_sym_BSLASHaclp] = ACTIONS(12299), + [anon_sym_BSLASHAclp] = ACTIONS(12299), + [anon_sym_BSLASHacf] = ACTIONS(12299), + [anon_sym_BSLASHAcf] = ACTIONS(12299), + [anon_sym_BSLASHacfp] = ACTIONS(12299), + [anon_sym_BSLASHAcfp] = ACTIONS(12299), + [anon_sym_BSLASHac] = ACTIONS(12299), + [anon_sym_BSLASHAc] = ACTIONS(12299), + [anon_sym_BSLASHacp] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12299), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12299), + [anon_sym_BSLASHcolor] = ACTIONS(12299), + [anon_sym_BSLASHcolorbox] = ACTIONS(12299), + [anon_sym_BSLASHtextcolor] = ACTIONS(12299), + [anon_sym_BSLASHpagecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12299), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12299), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12299), + }, + [779] = { + [sym_generic_command_name] = ACTIONS(12345), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12345), + [aux_sym_chapter_token1] = ACTIONS(12345), + [aux_sym_section_token1] = ACTIONS(12345), + [aux_sym_subsection_token1] = ACTIONS(12345), + [aux_sym_subsubsection_token1] = ACTIONS(12345), + [aux_sym_paragraph_token1] = ACTIONS(12345), + [aux_sym_subparagraph_token1] = ACTIONS(12345), + [anon_sym_BSLASHitem] = ACTIONS(12345), + [anon_sym_LBRACK] = ACTIONS(12343), + [anon_sym_LBRACE] = ACTIONS(12343), + [anon_sym_LPAREN] = ACTIONS(12343), + [anon_sym_COMMA] = ACTIONS(12343), + [anon_sym_EQ] = ACTIONS(12343), + [sym_word] = ACTIONS(12343), + [sym_param] = ACTIONS(12343), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12343), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12343), + [anon_sym_DOLLAR] = ACTIONS(12345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12343), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12343), + [anon_sym_BSLASHbegin] = ACTIONS(12345), + [anon_sym_BSLASHcaption] = ACTIONS(12345), + [anon_sym_BSLASHcite] = ACTIONS(12345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCite] = ACTIONS(12345), + [anon_sym_BSLASHnocite] = ACTIONS(12345), + [anon_sym_BSLASHcitet] = ACTIONS(12345), + [anon_sym_BSLASHcitep] = ACTIONS(12345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteauthor] = ACTIONS(12345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitetitle] = ACTIONS(12345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteyear] = ACTIONS(12345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitedate] = ACTIONS(12345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteurl] = ACTIONS(12345), + [anon_sym_BSLASHfullcite] = ACTIONS(12345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12345), + [anon_sym_BSLASHcitealt] = ACTIONS(12345), + [anon_sym_BSLASHcitealp] = ACTIONS(12345), + [anon_sym_BSLASHcitetext] = ACTIONS(12345), + [anon_sym_BSLASHparencite] = ACTIONS(12345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHParencite] = ACTIONS(12345), + [anon_sym_BSLASHfootcite] = ACTIONS(12345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12345), + [anon_sym_BSLASHtextcite] = ACTIONS(12345), + [anon_sym_BSLASHTextcite] = ACTIONS(12345), + [anon_sym_BSLASHsmartcite] = ACTIONS(12345), + [anon_sym_BSLASHSmartcite] = ACTIONS(12345), + [anon_sym_BSLASHsupercite] = ACTIONS(12345), + [anon_sym_BSLASHautocite] = ACTIONS(12345), + [anon_sym_BSLASHAutocite] = ACTIONS(12345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHvolcite] = ACTIONS(12345), + [anon_sym_BSLASHVolcite] = ACTIONS(12345), + [anon_sym_BSLASHpvolcite] = ACTIONS(12345), + [anon_sym_BSLASHPvolcite] = ACTIONS(12345), + [anon_sym_BSLASHfvolcite] = ACTIONS(12345), + [anon_sym_BSLASHftvolcite] = ACTIONS(12345), + [anon_sym_BSLASHsvolcite] = ACTIONS(12345), + [anon_sym_BSLASHSvolcite] = ACTIONS(12345), + [anon_sym_BSLASHtvolcite] = ACTIONS(12345), + [anon_sym_BSLASHTvolcite] = ACTIONS(12345), + [anon_sym_BSLASHavolcite] = ACTIONS(12345), + [anon_sym_BSLASHAvolcite] = ACTIONS(12345), + [anon_sym_BSLASHnotecite] = ACTIONS(12345), + [anon_sym_BSLASHpnotecite] = ACTIONS(12345), + [anon_sym_BSLASHPnotecite] = ACTIONS(12345), + [anon_sym_BSLASHfnotecite] = ACTIONS(12345), + [anon_sym_BSLASHusepackage] = ACTIONS(12345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12345), + [anon_sym_BSLASHinclude] = ACTIONS(12345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12345), + [anon_sym_BSLASHinput] = ACTIONS(12345), + [anon_sym_BSLASHsubfile] = ACTIONS(12345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12345), + [anon_sym_BSLASHbibliography] = ACTIONS(12345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12345), + [anon_sym_BSLASHincludesvg] = ACTIONS(12345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12345), + [anon_sym_BSLASHimport] = ACTIONS(12345), + [anon_sym_BSLASHsubimport] = ACTIONS(12345), + [anon_sym_BSLASHinputfrom] = ACTIONS(12345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12345), + [anon_sym_BSLASHincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHlabel] = ACTIONS(12345), + [anon_sym_BSLASHref] = ACTIONS(12345), + [anon_sym_BSLASHvref] = ACTIONS(12345), + [anon_sym_BSLASHVref] = ACTIONS(12345), + [anon_sym_BSLASHautoref] = ACTIONS(12345), + [anon_sym_BSLASHpageref] = ACTIONS(12345), + [anon_sym_BSLASHcref] = ACTIONS(12345), + [anon_sym_BSLASHCref] = ACTIONS(12345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnameCref] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHlabelcref] = ACTIONS(12345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12345), + [anon_sym_BSLASHeqref] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange] = ACTIONS(12345), + [anon_sym_BSLASHCrefrange] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewlabel] = ACTIONS(12345), + [anon_sym_BSLASHnewcommand] = ACTIONS(12345), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12345), + [anon_sym_BSLASHgls] = ACTIONS(12345), + [anon_sym_BSLASHGls] = ACTIONS(12345), + [anon_sym_BSLASHGLS] = ACTIONS(12345), + [anon_sym_BSLASHglspl] = ACTIONS(12345), + [anon_sym_BSLASHGlspl] = ACTIONS(12345), + [anon_sym_BSLASHGLSpl] = ACTIONS(12345), + [anon_sym_BSLASHglsdisp] = ACTIONS(12345), + [anon_sym_BSLASHglslink] = ACTIONS(12345), + [anon_sym_BSLASHglstext] = ACTIONS(12345), + [anon_sym_BSLASHGlstext] = ACTIONS(12345), + [anon_sym_BSLASHGLStext] = ACTIONS(12345), + [anon_sym_BSLASHglsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12345), + [anon_sym_BSLASHglsplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSplural] = ACTIONS(12345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHglsname] = ACTIONS(12345), + [anon_sym_BSLASHGlsname] = ACTIONS(12345), + [anon_sym_BSLASHGLSname] = ACTIONS(12345), + [anon_sym_BSLASHglssymbol] = ACTIONS(12345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12345), + [anon_sym_BSLASHglsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12345), + [anon_sym_BSLASHglsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12345), + [anon_sym_BSLASHglsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12345), + [anon_sym_BSLASHglsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12345), + [anon_sym_BSLASHglsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12345), + [anon_sym_BSLASHnewacronym] = ACTIONS(12345), + [anon_sym_BSLASHacrshort] = ACTIONS(12345), + [anon_sym_BSLASHAcrshort] = ACTIONS(12345), + [anon_sym_BSLASHACRshort] = ACTIONS(12345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12345), + [anon_sym_BSLASHacrlong] = ACTIONS(12345), + [anon_sym_BSLASHAcrlong] = ACTIONS(12345), + [anon_sym_BSLASHACRlong] = ACTIONS(12345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12345), + [anon_sym_BSLASHacrfull] = ACTIONS(12345), + [anon_sym_BSLASHAcrfull] = ACTIONS(12345), + [anon_sym_BSLASHACRfull] = ACTIONS(12345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12345), + [anon_sym_BSLASHacs] = ACTIONS(12345), + [anon_sym_BSLASHAcs] = ACTIONS(12345), + [anon_sym_BSLASHacsp] = ACTIONS(12345), + [anon_sym_BSLASHAcsp] = ACTIONS(12345), + [anon_sym_BSLASHacl] = ACTIONS(12345), + [anon_sym_BSLASHAcl] = ACTIONS(12345), + [anon_sym_BSLASHaclp] = ACTIONS(12345), + [anon_sym_BSLASHAclp] = ACTIONS(12345), + [anon_sym_BSLASHacf] = ACTIONS(12345), + [anon_sym_BSLASHAcf] = ACTIONS(12345), + [anon_sym_BSLASHacfp] = ACTIONS(12345), + [anon_sym_BSLASHAcfp] = ACTIONS(12345), + [anon_sym_BSLASHac] = ACTIONS(12345), + [anon_sym_BSLASHAc] = ACTIONS(12345), + [anon_sym_BSLASHacp] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12345), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12345), + [anon_sym_BSLASHcolor] = ACTIONS(12345), + [anon_sym_BSLASHcolorbox] = ACTIONS(12345), + [anon_sym_BSLASHtextcolor] = ACTIONS(12345), + [anon_sym_BSLASHpagecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12345), + }, + [780] = { + [sym_generic_command_name] = ACTIONS(12311), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12311), + [aux_sym_chapter_token1] = ACTIONS(12311), + [aux_sym_section_token1] = ACTIONS(12311), + [aux_sym_subsection_token1] = ACTIONS(12311), + [aux_sym_subsubsection_token1] = ACTIONS(12311), + [aux_sym_paragraph_token1] = ACTIONS(12311), + [aux_sym_subparagraph_token1] = ACTIONS(12311), + [anon_sym_BSLASHitem] = ACTIONS(12311), + [anon_sym_LBRACK] = ACTIONS(12309), + [anon_sym_LBRACE] = ACTIONS(12309), + [anon_sym_LPAREN] = ACTIONS(12309), + [anon_sym_COMMA] = ACTIONS(12309), + [anon_sym_EQ] = ACTIONS(12309), + [sym_word] = ACTIONS(12309), + [sym_param] = ACTIONS(12309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12309), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12309), + [anon_sym_DOLLAR] = ACTIONS(12311), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12309), + [anon_sym_BSLASHbegin] = ACTIONS(12311), + [anon_sym_BSLASHend] = ACTIONS(12311), + [anon_sym_BSLASHcaption] = ACTIONS(12311), + [anon_sym_BSLASHcite] = ACTIONS(12311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCite] = ACTIONS(12311), + [anon_sym_BSLASHnocite] = ACTIONS(12311), + [anon_sym_BSLASHcitet] = ACTIONS(12311), + [anon_sym_BSLASHcitep] = ACTIONS(12311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteauthor] = ACTIONS(12311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitetitle] = ACTIONS(12311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteyear] = ACTIONS(12311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitedate] = ACTIONS(12311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteurl] = ACTIONS(12311), + [anon_sym_BSLASHfullcite] = ACTIONS(12311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12311), + [anon_sym_BSLASHcitealt] = ACTIONS(12311), + [anon_sym_BSLASHcitealp] = ACTIONS(12311), + [anon_sym_BSLASHcitetext] = ACTIONS(12311), + [anon_sym_BSLASHparencite] = ACTIONS(12311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHParencite] = ACTIONS(12311), + [anon_sym_BSLASHfootcite] = ACTIONS(12311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12311), + [anon_sym_BSLASHtextcite] = ACTIONS(12311), + [anon_sym_BSLASHTextcite] = ACTIONS(12311), + [anon_sym_BSLASHsmartcite] = ACTIONS(12311), + [anon_sym_BSLASHSmartcite] = ACTIONS(12311), + [anon_sym_BSLASHsupercite] = ACTIONS(12311), + [anon_sym_BSLASHautocite] = ACTIONS(12311), + [anon_sym_BSLASHAutocite] = ACTIONS(12311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHvolcite] = ACTIONS(12311), + [anon_sym_BSLASHVolcite] = ACTIONS(12311), + [anon_sym_BSLASHpvolcite] = ACTIONS(12311), + [anon_sym_BSLASHPvolcite] = ACTIONS(12311), + [anon_sym_BSLASHfvolcite] = ACTIONS(12311), + [anon_sym_BSLASHftvolcite] = ACTIONS(12311), + [anon_sym_BSLASHsvolcite] = ACTIONS(12311), + [anon_sym_BSLASHSvolcite] = ACTIONS(12311), + [anon_sym_BSLASHtvolcite] = ACTIONS(12311), + [anon_sym_BSLASHTvolcite] = ACTIONS(12311), + [anon_sym_BSLASHavolcite] = ACTIONS(12311), + [anon_sym_BSLASHAvolcite] = ACTIONS(12311), + [anon_sym_BSLASHnotecite] = ACTIONS(12311), + [anon_sym_BSLASHpnotecite] = ACTIONS(12311), + [anon_sym_BSLASHPnotecite] = ACTIONS(12311), + [anon_sym_BSLASHfnotecite] = ACTIONS(12311), + [anon_sym_BSLASHusepackage] = ACTIONS(12311), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12311), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12311), + [anon_sym_BSLASHinclude] = ACTIONS(12311), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12311), + [anon_sym_BSLASHinput] = ACTIONS(12311), + [anon_sym_BSLASHsubfile] = ACTIONS(12311), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12311), + [anon_sym_BSLASHbibliography] = ACTIONS(12311), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12311), + [anon_sym_BSLASHincludesvg] = ACTIONS(12311), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12311), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12311), + [anon_sym_BSLASHimport] = ACTIONS(12311), + [anon_sym_BSLASHsubimport] = ACTIONS(12311), + [anon_sym_BSLASHinputfrom] = ACTIONS(12311), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12311), + [anon_sym_BSLASHincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHlabel] = ACTIONS(12311), + [anon_sym_BSLASHref] = ACTIONS(12311), + [anon_sym_BSLASHvref] = ACTIONS(12311), + [anon_sym_BSLASHVref] = ACTIONS(12311), + [anon_sym_BSLASHautoref] = ACTIONS(12311), + [anon_sym_BSLASHpageref] = ACTIONS(12311), + [anon_sym_BSLASHcref] = ACTIONS(12311), + [anon_sym_BSLASHCref] = ACTIONS(12311), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnameCref] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHlabelcref] = ACTIONS(12311), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12311), + [anon_sym_BSLASHeqref] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange] = ACTIONS(12311), + [anon_sym_BSLASHCrefrange] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewlabel] = ACTIONS(12311), + [anon_sym_BSLASHnewcommand] = ACTIONS(12311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12311), + [anon_sym_BSLASHgls] = ACTIONS(12311), + [anon_sym_BSLASHGls] = ACTIONS(12311), + [anon_sym_BSLASHGLS] = ACTIONS(12311), + [anon_sym_BSLASHglspl] = ACTIONS(12311), + [anon_sym_BSLASHGlspl] = ACTIONS(12311), + [anon_sym_BSLASHGLSpl] = ACTIONS(12311), + [anon_sym_BSLASHglsdisp] = ACTIONS(12311), + [anon_sym_BSLASHglslink] = ACTIONS(12311), + [anon_sym_BSLASHglstext] = ACTIONS(12311), + [anon_sym_BSLASHGlstext] = ACTIONS(12311), + [anon_sym_BSLASHGLStext] = ACTIONS(12311), + [anon_sym_BSLASHglsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12311), + [anon_sym_BSLASHglsplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSplural] = ACTIONS(12311), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHglsname] = ACTIONS(12311), + [anon_sym_BSLASHGlsname] = ACTIONS(12311), + [anon_sym_BSLASHGLSname] = ACTIONS(12311), + [anon_sym_BSLASHglssymbol] = ACTIONS(12311), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12311), + [anon_sym_BSLASHglsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12311), + [anon_sym_BSLASHglsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12311), + [anon_sym_BSLASHglsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12311), + [anon_sym_BSLASHglsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12311), + [anon_sym_BSLASHglsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12311), + [anon_sym_BSLASHnewacronym] = ACTIONS(12311), + [anon_sym_BSLASHacrshort] = ACTIONS(12311), + [anon_sym_BSLASHAcrshort] = ACTIONS(12311), + [anon_sym_BSLASHACRshort] = ACTIONS(12311), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12311), + [anon_sym_BSLASHacrlong] = ACTIONS(12311), + [anon_sym_BSLASHAcrlong] = ACTIONS(12311), + [anon_sym_BSLASHACRlong] = ACTIONS(12311), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12311), + [anon_sym_BSLASHacrfull] = ACTIONS(12311), + [anon_sym_BSLASHAcrfull] = ACTIONS(12311), + [anon_sym_BSLASHACRfull] = ACTIONS(12311), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12311), + [anon_sym_BSLASHacs] = ACTIONS(12311), + [anon_sym_BSLASHAcs] = ACTIONS(12311), + [anon_sym_BSLASHacsp] = ACTIONS(12311), + [anon_sym_BSLASHAcsp] = ACTIONS(12311), + [anon_sym_BSLASHacl] = ACTIONS(12311), + [anon_sym_BSLASHAcl] = ACTIONS(12311), + [anon_sym_BSLASHaclp] = ACTIONS(12311), + [anon_sym_BSLASHAclp] = ACTIONS(12311), + [anon_sym_BSLASHacf] = ACTIONS(12311), + [anon_sym_BSLASHAcf] = ACTIONS(12311), + [anon_sym_BSLASHacfp] = ACTIONS(12311), + [anon_sym_BSLASHAcfp] = ACTIONS(12311), + [anon_sym_BSLASHac] = ACTIONS(12311), + [anon_sym_BSLASHAc] = ACTIONS(12311), + [anon_sym_BSLASHacp] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12311), + [anon_sym_BSLASHcolor] = ACTIONS(12311), + [anon_sym_BSLASHcolorbox] = ACTIONS(12311), + [anon_sym_BSLASHtextcolor] = ACTIONS(12311), + [anon_sym_BSLASHpagecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12311), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12311), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12311), + }, + [781] = { + [sym_generic_command_name] = ACTIONS(12327), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12327), + [aux_sym_chapter_token1] = ACTIONS(12327), + [aux_sym_section_token1] = ACTIONS(12327), + [aux_sym_subsection_token1] = ACTIONS(12327), + [aux_sym_subsubsection_token1] = ACTIONS(12327), + [aux_sym_paragraph_token1] = ACTIONS(12327), + [aux_sym_subparagraph_token1] = ACTIONS(12327), + [anon_sym_BSLASHitem] = ACTIONS(12327), + [anon_sym_LBRACK] = ACTIONS(12325), + [anon_sym_LBRACE] = ACTIONS(12325), + [anon_sym_LPAREN] = ACTIONS(12325), + [anon_sym_COMMA] = ACTIONS(12325), + [anon_sym_EQ] = ACTIONS(12325), + [sym_word] = ACTIONS(12325), + [sym_param] = ACTIONS(12325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12325), + [anon_sym_DOLLAR] = ACTIONS(12327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12325), + [anon_sym_BSLASHbegin] = ACTIONS(12327), + [anon_sym_BSLASHend] = ACTIONS(12327), + [anon_sym_BSLASHcaption] = ACTIONS(12327), + [anon_sym_BSLASHcite] = ACTIONS(12327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCite] = ACTIONS(12327), + [anon_sym_BSLASHnocite] = ACTIONS(12327), + [anon_sym_BSLASHcitet] = ACTIONS(12327), + [anon_sym_BSLASHcitep] = ACTIONS(12327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteauthor] = ACTIONS(12327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitetitle] = ACTIONS(12327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteyear] = ACTIONS(12327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitedate] = ACTIONS(12327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteurl] = ACTIONS(12327), + [anon_sym_BSLASHfullcite] = ACTIONS(12327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12327), + [anon_sym_BSLASHcitealt] = ACTIONS(12327), + [anon_sym_BSLASHcitealp] = ACTIONS(12327), + [anon_sym_BSLASHcitetext] = ACTIONS(12327), + [anon_sym_BSLASHparencite] = ACTIONS(12327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHParencite] = ACTIONS(12327), + [anon_sym_BSLASHfootcite] = ACTIONS(12327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12327), + [anon_sym_BSLASHtextcite] = ACTIONS(12327), + [anon_sym_BSLASHTextcite] = ACTIONS(12327), + [anon_sym_BSLASHsmartcite] = ACTIONS(12327), + [anon_sym_BSLASHSmartcite] = ACTIONS(12327), + [anon_sym_BSLASHsupercite] = ACTIONS(12327), + [anon_sym_BSLASHautocite] = ACTIONS(12327), + [anon_sym_BSLASHAutocite] = ACTIONS(12327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHvolcite] = ACTIONS(12327), + [anon_sym_BSLASHVolcite] = ACTIONS(12327), + [anon_sym_BSLASHpvolcite] = ACTIONS(12327), + [anon_sym_BSLASHPvolcite] = ACTIONS(12327), + [anon_sym_BSLASHfvolcite] = ACTIONS(12327), + [anon_sym_BSLASHftvolcite] = ACTIONS(12327), + [anon_sym_BSLASHsvolcite] = ACTIONS(12327), + [anon_sym_BSLASHSvolcite] = ACTIONS(12327), + [anon_sym_BSLASHtvolcite] = ACTIONS(12327), + [anon_sym_BSLASHTvolcite] = ACTIONS(12327), + [anon_sym_BSLASHavolcite] = ACTIONS(12327), + [anon_sym_BSLASHAvolcite] = ACTIONS(12327), + [anon_sym_BSLASHnotecite] = ACTIONS(12327), + [anon_sym_BSLASHpnotecite] = ACTIONS(12327), + [anon_sym_BSLASHPnotecite] = ACTIONS(12327), + [anon_sym_BSLASHfnotecite] = ACTIONS(12327), + [anon_sym_BSLASHusepackage] = ACTIONS(12327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12327), + [anon_sym_BSLASHinclude] = ACTIONS(12327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12327), + [anon_sym_BSLASHinput] = ACTIONS(12327), + [anon_sym_BSLASHsubfile] = ACTIONS(12327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12327), + [anon_sym_BSLASHbibliography] = ACTIONS(12327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12327), + [anon_sym_BSLASHincludesvg] = ACTIONS(12327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12327), + [anon_sym_BSLASHimport] = ACTIONS(12327), + [anon_sym_BSLASHsubimport] = ACTIONS(12327), + [anon_sym_BSLASHinputfrom] = ACTIONS(12327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12327), + [anon_sym_BSLASHincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHlabel] = ACTIONS(12327), + [anon_sym_BSLASHref] = ACTIONS(12327), + [anon_sym_BSLASHvref] = ACTIONS(12327), + [anon_sym_BSLASHVref] = ACTIONS(12327), + [anon_sym_BSLASHautoref] = ACTIONS(12327), + [anon_sym_BSLASHpageref] = ACTIONS(12327), + [anon_sym_BSLASHcref] = ACTIONS(12327), + [anon_sym_BSLASHCref] = ACTIONS(12327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnameCref] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHlabelcref] = ACTIONS(12327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12327), + [anon_sym_BSLASHeqref] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange] = ACTIONS(12327), + [anon_sym_BSLASHCrefrange] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewlabel] = ACTIONS(12327), + [anon_sym_BSLASHnewcommand] = ACTIONS(12327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12327), + [anon_sym_BSLASHgls] = ACTIONS(12327), + [anon_sym_BSLASHGls] = ACTIONS(12327), + [anon_sym_BSLASHGLS] = ACTIONS(12327), + [anon_sym_BSLASHglspl] = ACTIONS(12327), + [anon_sym_BSLASHGlspl] = ACTIONS(12327), + [anon_sym_BSLASHGLSpl] = ACTIONS(12327), + [anon_sym_BSLASHglsdisp] = ACTIONS(12327), + [anon_sym_BSLASHglslink] = ACTIONS(12327), + [anon_sym_BSLASHglstext] = ACTIONS(12327), + [anon_sym_BSLASHGlstext] = ACTIONS(12327), + [anon_sym_BSLASHGLStext] = ACTIONS(12327), + [anon_sym_BSLASHglsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12327), + [anon_sym_BSLASHglsplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSplural] = ACTIONS(12327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHglsname] = ACTIONS(12327), + [anon_sym_BSLASHGlsname] = ACTIONS(12327), + [anon_sym_BSLASHGLSname] = ACTIONS(12327), + [anon_sym_BSLASHglssymbol] = ACTIONS(12327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12327), + [anon_sym_BSLASHglsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12327), + [anon_sym_BSLASHglsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12327), + [anon_sym_BSLASHglsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12327), + [anon_sym_BSLASHglsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12327), + [anon_sym_BSLASHglsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12327), + [anon_sym_BSLASHnewacronym] = ACTIONS(12327), + [anon_sym_BSLASHacrshort] = ACTIONS(12327), + [anon_sym_BSLASHAcrshort] = ACTIONS(12327), + [anon_sym_BSLASHACRshort] = ACTIONS(12327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12327), + [anon_sym_BSLASHacrlong] = ACTIONS(12327), + [anon_sym_BSLASHAcrlong] = ACTIONS(12327), + [anon_sym_BSLASHACRlong] = ACTIONS(12327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12327), + [anon_sym_BSLASHacrfull] = ACTIONS(12327), + [anon_sym_BSLASHAcrfull] = ACTIONS(12327), + [anon_sym_BSLASHACRfull] = ACTIONS(12327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12327), + [anon_sym_BSLASHacs] = ACTIONS(12327), + [anon_sym_BSLASHAcs] = ACTIONS(12327), + [anon_sym_BSLASHacsp] = ACTIONS(12327), + [anon_sym_BSLASHAcsp] = ACTIONS(12327), + [anon_sym_BSLASHacl] = ACTIONS(12327), + [anon_sym_BSLASHAcl] = ACTIONS(12327), + [anon_sym_BSLASHaclp] = ACTIONS(12327), + [anon_sym_BSLASHAclp] = ACTIONS(12327), + [anon_sym_BSLASHacf] = ACTIONS(12327), + [anon_sym_BSLASHAcf] = ACTIONS(12327), + [anon_sym_BSLASHacfp] = ACTIONS(12327), + [anon_sym_BSLASHAcfp] = ACTIONS(12327), + [anon_sym_BSLASHac] = ACTIONS(12327), + [anon_sym_BSLASHAc] = ACTIONS(12327), + [anon_sym_BSLASHacp] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12327), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12327), + [anon_sym_BSLASHcolor] = ACTIONS(12327), + [anon_sym_BSLASHcolorbox] = ACTIONS(12327), + [anon_sym_BSLASHtextcolor] = ACTIONS(12327), + [anon_sym_BSLASHpagecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12327), + }, + [782] = { + [sym_generic_command_name] = ACTIONS(12331), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12331), + [aux_sym_chapter_token1] = ACTIONS(12331), + [aux_sym_section_token1] = ACTIONS(12331), + [aux_sym_subsection_token1] = ACTIONS(12331), + [aux_sym_subsubsection_token1] = ACTIONS(12331), + [aux_sym_paragraph_token1] = ACTIONS(12331), + [aux_sym_subparagraph_token1] = ACTIONS(12331), + [anon_sym_BSLASHitem] = ACTIONS(12331), + [anon_sym_LBRACK] = ACTIONS(12329), + [anon_sym_LBRACE] = ACTIONS(12329), + [anon_sym_LPAREN] = ACTIONS(12329), + [anon_sym_COMMA] = ACTIONS(12329), + [anon_sym_EQ] = ACTIONS(12329), + [sym_word] = ACTIONS(12329), + [sym_param] = ACTIONS(12329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12329), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12329), + [anon_sym_DOLLAR] = ACTIONS(12331), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12329), + [anon_sym_BSLASHbegin] = ACTIONS(12331), + [anon_sym_BSLASHend] = ACTIONS(12331), + [anon_sym_BSLASHcaption] = ACTIONS(12331), + [anon_sym_BSLASHcite] = ACTIONS(12331), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCite] = ACTIONS(12331), + [anon_sym_BSLASHnocite] = ACTIONS(12331), + [anon_sym_BSLASHcitet] = ACTIONS(12331), + [anon_sym_BSLASHcitep] = ACTIONS(12331), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteauthor] = ACTIONS(12331), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12331), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitetitle] = ACTIONS(12331), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteyear] = ACTIONS(12331), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitedate] = ACTIONS(12331), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteurl] = ACTIONS(12331), + [anon_sym_BSLASHfullcite] = ACTIONS(12331), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12331), + [anon_sym_BSLASHcitealt] = ACTIONS(12331), + [anon_sym_BSLASHcitealp] = ACTIONS(12331), + [anon_sym_BSLASHcitetext] = ACTIONS(12331), + [anon_sym_BSLASHparencite] = ACTIONS(12331), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHParencite] = ACTIONS(12331), + [anon_sym_BSLASHfootcite] = ACTIONS(12331), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12331), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12331), + [anon_sym_BSLASHtextcite] = ACTIONS(12331), + [anon_sym_BSLASHTextcite] = ACTIONS(12331), + [anon_sym_BSLASHsmartcite] = ACTIONS(12331), + [anon_sym_BSLASHSmartcite] = ACTIONS(12331), + [anon_sym_BSLASHsupercite] = ACTIONS(12331), + [anon_sym_BSLASHautocite] = ACTIONS(12331), + [anon_sym_BSLASHAutocite] = ACTIONS(12331), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHvolcite] = ACTIONS(12331), + [anon_sym_BSLASHVolcite] = ACTIONS(12331), + [anon_sym_BSLASHpvolcite] = ACTIONS(12331), + [anon_sym_BSLASHPvolcite] = ACTIONS(12331), + [anon_sym_BSLASHfvolcite] = ACTIONS(12331), + [anon_sym_BSLASHftvolcite] = ACTIONS(12331), + [anon_sym_BSLASHsvolcite] = ACTIONS(12331), + [anon_sym_BSLASHSvolcite] = ACTIONS(12331), + [anon_sym_BSLASHtvolcite] = ACTIONS(12331), + [anon_sym_BSLASHTvolcite] = ACTIONS(12331), + [anon_sym_BSLASHavolcite] = ACTIONS(12331), + [anon_sym_BSLASHAvolcite] = ACTIONS(12331), + [anon_sym_BSLASHnotecite] = ACTIONS(12331), + [anon_sym_BSLASHpnotecite] = ACTIONS(12331), + [anon_sym_BSLASHPnotecite] = ACTIONS(12331), + [anon_sym_BSLASHfnotecite] = ACTIONS(12331), + [anon_sym_BSLASHusepackage] = ACTIONS(12331), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12331), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12331), + [anon_sym_BSLASHinclude] = ACTIONS(12331), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12331), + [anon_sym_BSLASHinput] = ACTIONS(12331), + [anon_sym_BSLASHsubfile] = ACTIONS(12331), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12331), + [anon_sym_BSLASHbibliography] = ACTIONS(12331), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12331), + [anon_sym_BSLASHincludesvg] = ACTIONS(12331), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12331), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12331), + [anon_sym_BSLASHimport] = ACTIONS(12331), + [anon_sym_BSLASHsubimport] = ACTIONS(12331), + [anon_sym_BSLASHinputfrom] = ACTIONS(12331), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12331), + [anon_sym_BSLASHincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHlabel] = ACTIONS(12331), + [anon_sym_BSLASHref] = ACTIONS(12331), + [anon_sym_BSLASHvref] = ACTIONS(12331), + [anon_sym_BSLASHVref] = ACTIONS(12331), + [anon_sym_BSLASHautoref] = ACTIONS(12331), + [anon_sym_BSLASHpageref] = ACTIONS(12331), + [anon_sym_BSLASHcref] = ACTIONS(12331), + [anon_sym_BSLASHCref] = ACTIONS(12331), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnameCref] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHlabelcref] = ACTIONS(12331), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12331), + [anon_sym_BSLASHeqref] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange] = ACTIONS(12331), + [anon_sym_BSLASHCrefrange] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewlabel] = ACTIONS(12331), + [anon_sym_BSLASHnewcommand] = ACTIONS(12331), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12331), + [anon_sym_BSLASHgls] = ACTIONS(12331), + [anon_sym_BSLASHGls] = ACTIONS(12331), + [anon_sym_BSLASHGLS] = ACTIONS(12331), + [anon_sym_BSLASHglspl] = ACTIONS(12331), + [anon_sym_BSLASHGlspl] = ACTIONS(12331), + [anon_sym_BSLASHGLSpl] = ACTIONS(12331), + [anon_sym_BSLASHglsdisp] = ACTIONS(12331), + [anon_sym_BSLASHglslink] = ACTIONS(12331), + [anon_sym_BSLASHglstext] = ACTIONS(12331), + [anon_sym_BSLASHGlstext] = ACTIONS(12331), + [anon_sym_BSLASHGLStext] = ACTIONS(12331), + [anon_sym_BSLASHglsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12331), + [anon_sym_BSLASHglsplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSplural] = ACTIONS(12331), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHglsname] = ACTIONS(12331), + [anon_sym_BSLASHGlsname] = ACTIONS(12331), + [anon_sym_BSLASHGLSname] = ACTIONS(12331), + [anon_sym_BSLASHglssymbol] = ACTIONS(12331), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12331), + [anon_sym_BSLASHglsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12331), + [anon_sym_BSLASHglsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12331), + [anon_sym_BSLASHglsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12331), + [anon_sym_BSLASHglsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12331), + [anon_sym_BSLASHglsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12331), + [anon_sym_BSLASHnewacronym] = ACTIONS(12331), + [anon_sym_BSLASHacrshort] = ACTIONS(12331), + [anon_sym_BSLASHAcrshort] = ACTIONS(12331), + [anon_sym_BSLASHACRshort] = ACTIONS(12331), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12331), + [anon_sym_BSLASHacrlong] = ACTIONS(12331), + [anon_sym_BSLASHAcrlong] = ACTIONS(12331), + [anon_sym_BSLASHACRlong] = ACTIONS(12331), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12331), + [anon_sym_BSLASHacrfull] = ACTIONS(12331), + [anon_sym_BSLASHAcrfull] = ACTIONS(12331), + [anon_sym_BSLASHACRfull] = ACTIONS(12331), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12331), + [anon_sym_BSLASHacs] = ACTIONS(12331), + [anon_sym_BSLASHAcs] = ACTIONS(12331), + [anon_sym_BSLASHacsp] = ACTIONS(12331), + [anon_sym_BSLASHAcsp] = ACTIONS(12331), + [anon_sym_BSLASHacl] = ACTIONS(12331), + [anon_sym_BSLASHAcl] = ACTIONS(12331), + [anon_sym_BSLASHaclp] = ACTIONS(12331), + [anon_sym_BSLASHAclp] = ACTIONS(12331), + [anon_sym_BSLASHacf] = ACTIONS(12331), + [anon_sym_BSLASHAcf] = ACTIONS(12331), + [anon_sym_BSLASHacfp] = ACTIONS(12331), + [anon_sym_BSLASHAcfp] = ACTIONS(12331), + [anon_sym_BSLASHac] = ACTIONS(12331), + [anon_sym_BSLASHAc] = ACTIONS(12331), + [anon_sym_BSLASHacp] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12331), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12331), + [anon_sym_BSLASHcolor] = ACTIONS(12331), + [anon_sym_BSLASHcolorbox] = ACTIONS(12331), + [anon_sym_BSLASHtextcolor] = ACTIONS(12331), + [anon_sym_BSLASHpagecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12331), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12331), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12331), + }, + [783] = { + [sym_generic_command_name] = ACTIONS(12331), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12331), + [aux_sym_chapter_token1] = ACTIONS(12331), + [aux_sym_section_token1] = ACTIONS(12331), + [aux_sym_subsection_token1] = ACTIONS(12331), + [aux_sym_subsubsection_token1] = ACTIONS(12331), + [aux_sym_paragraph_token1] = ACTIONS(12331), + [aux_sym_subparagraph_token1] = ACTIONS(12331), + [anon_sym_BSLASHitem] = ACTIONS(12331), + [anon_sym_LBRACK] = ACTIONS(12329), + [anon_sym_LBRACE] = ACTIONS(12329), + [anon_sym_LPAREN] = ACTIONS(12329), + [anon_sym_COMMA] = ACTIONS(12329), + [anon_sym_EQ] = ACTIONS(12329), + [sym_word] = ACTIONS(12329), + [sym_param] = ACTIONS(12329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12329), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12329), + [anon_sym_DOLLAR] = ACTIONS(12331), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12329), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12329), + [anon_sym_BSLASHbegin] = ACTIONS(12331), + [anon_sym_BSLASHcaption] = ACTIONS(12331), + [anon_sym_BSLASHcite] = ACTIONS(12331), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCite] = ACTIONS(12331), + [anon_sym_BSLASHnocite] = ACTIONS(12331), + [anon_sym_BSLASHcitet] = ACTIONS(12331), + [anon_sym_BSLASHcitep] = ACTIONS(12331), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteauthor] = ACTIONS(12331), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12331), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitetitle] = ACTIONS(12331), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteyear] = ACTIONS(12331), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitedate] = ACTIONS(12331), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteurl] = ACTIONS(12331), + [anon_sym_BSLASHfullcite] = ACTIONS(12331), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12331), + [anon_sym_BSLASHcitealt] = ACTIONS(12331), + [anon_sym_BSLASHcitealp] = ACTIONS(12331), + [anon_sym_BSLASHcitetext] = ACTIONS(12331), + [anon_sym_BSLASHparencite] = ACTIONS(12331), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHParencite] = ACTIONS(12331), + [anon_sym_BSLASHfootcite] = ACTIONS(12331), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12331), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12331), + [anon_sym_BSLASHtextcite] = ACTIONS(12331), + [anon_sym_BSLASHTextcite] = ACTIONS(12331), + [anon_sym_BSLASHsmartcite] = ACTIONS(12331), + [anon_sym_BSLASHSmartcite] = ACTIONS(12331), + [anon_sym_BSLASHsupercite] = ACTIONS(12331), + [anon_sym_BSLASHautocite] = ACTIONS(12331), + [anon_sym_BSLASHAutocite] = ACTIONS(12331), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHvolcite] = ACTIONS(12331), + [anon_sym_BSLASHVolcite] = ACTIONS(12331), + [anon_sym_BSLASHpvolcite] = ACTIONS(12331), + [anon_sym_BSLASHPvolcite] = ACTIONS(12331), + [anon_sym_BSLASHfvolcite] = ACTIONS(12331), + [anon_sym_BSLASHftvolcite] = ACTIONS(12331), + [anon_sym_BSLASHsvolcite] = ACTIONS(12331), + [anon_sym_BSLASHSvolcite] = ACTIONS(12331), + [anon_sym_BSLASHtvolcite] = ACTIONS(12331), + [anon_sym_BSLASHTvolcite] = ACTIONS(12331), + [anon_sym_BSLASHavolcite] = ACTIONS(12331), + [anon_sym_BSLASHAvolcite] = ACTIONS(12331), + [anon_sym_BSLASHnotecite] = ACTIONS(12331), + [anon_sym_BSLASHpnotecite] = ACTIONS(12331), + [anon_sym_BSLASHPnotecite] = ACTIONS(12331), + [anon_sym_BSLASHfnotecite] = ACTIONS(12331), + [anon_sym_BSLASHusepackage] = ACTIONS(12331), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12331), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12331), + [anon_sym_BSLASHinclude] = ACTIONS(12331), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12331), + [anon_sym_BSLASHinput] = ACTIONS(12331), + [anon_sym_BSLASHsubfile] = ACTIONS(12331), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12331), + [anon_sym_BSLASHbibliography] = ACTIONS(12331), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12331), + [anon_sym_BSLASHincludesvg] = ACTIONS(12331), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12331), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12331), + [anon_sym_BSLASHimport] = ACTIONS(12331), + [anon_sym_BSLASHsubimport] = ACTIONS(12331), + [anon_sym_BSLASHinputfrom] = ACTIONS(12331), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12331), + [anon_sym_BSLASHincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHlabel] = ACTIONS(12331), + [anon_sym_BSLASHref] = ACTIONS(12331), + [anon_sym_BSLASHvref] = ACTIONS(12331), + [anon_sym_BSLASHVref] = ACTIONS(12331), + [anon_sym_BSLASHautoref] = ACTIONS(12331), + [anon_sym_BSLASHpageref] = ACTIONS(12331), + [anon_sym_BSLASHcref] = ACTIONS(12331), + [anon_sym_BSLASHCref] = ACTIONS(12331), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnameCref] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHlabelcref] = ACTIONS(12331), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12331), + [anon_sym_BSLASHeqref] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange] = ACTIONS(12331), + [anon_sym_BSLASHCrefrange] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewlabel] = ACTIONS(12331), + [anon_sym_BSLASHnewcommand] = ACTIONS(12331), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12331), + [anon_sym_BSLASHgls] = ACTIONS(12331), + [anon_sym_BSLASHGls] = ACTIONS(12331), + [anon_sym_BSLASHGLS] = ACTIONS(12331), + [anon_sym_BSLASHglspl] = ACTIONS(12331), + [anon_sym_BSLASHGlspl] = ACTIONS(12331), + [anon_sym_BSLASHGLSpl] = ACTIONS(12331), + [anon_sym_BSLASHglsdisp] = ACTIONS(12331), + [anon_sym_BSLASHglslink] = ACTIONS(12331), + [anon_sym_BSLASHglstext] = ACTIONS(12331), + [anon_sym_BSLASHGlstext] = ACTIONS(12331), + [anon_sym_BSLASHGLStext] = ACTIONS(12331), + [anon_sym_BSLASHglsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12331), + [anon_sym_BSLASHglsplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSplural] = ACTIONS(12331), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHglsname] = ACTIONS(12331), + [anon_sym_BSLASHGlsname] = ACTIONS(12331), + [anon_sym_BSLASHGLSname] = ACTIONS(12331), + [anon_sym_BSLASHglssymbol] = ACTIONS(12331), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12331), + [anon_sym_BSLASHglsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12331), + [anon_sym_BSLASHglsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12331), + [anon_sym_BSLASHglsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12331), + [anon_sym_BSLASHglsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12331), + [anon_sym_BSLASHglsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12331), + [anon_sym_BSLASHnewacronym] = ACTIONS(12331), + [anon_sym_BSLASHacrshort] = ACTIONS(12331), + [anon_sym_BSLASHAcrshort] = ACTIONS(12331), + [anon_sym_BSLASHACRshort] = ACTIONS(12331), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12331), + [anon_sym_BSLASHacrlong] = ACTIONS(12331), + [anon_sym_BSLASHAcrlong] = ACTIONS(12331), + [anon_sym_BSLASHACRlong] = ACTIONS(12331), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12331), + [anon_sym_BSLASHacrfull] = ACTIONS(12331), + [anon_sym_BSLASHAcrfull] = ACTIONS(12331), + [anon_sym_BSLASHACRfull] = ACTIONS(12331), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12331), + [anon_sym_BSLASHacs] = ACTIONS(12331), + [anon_sym_BSLASHAcs] = ACTIONS(12331), + [anon_sym_BSLASHacsp] = ACTIONS(12331), + [anon_sym_BSLASHAcsp] = ACTIONS(12331), + [anon_sym_BSLASHacl] = ACTIONS(12331), + [anon_sym_BSLASHAcl] = ACTIONS(12331), + [anon_sym_BSLASHaclp] = ACTIONS(12331), + [anon_sym_BSLASHAclp] = ACTIONS(12331), + [anon_sym_BSLASHacf] = ACTIONS(12331), + [anon_sym_BSLASHAcf] = ACTIONS(12331), + [anon_sym_BSLASHacfp] = ACTIONS(12331), + [anon_sym_BSLASHAcfp] = ACTIONS(12331), + [anon_sym_BSLASHac] = ACTIONS(12331), + [anon_sym_BSLASHAc] = ACTIONS(12331), + [anon_sym_BSLASHacp] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12331), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12331), + [anon_sym_BSLASHcolor] = ACTIONS(12331), + [anon_sym_BSLASHcolorbox] = ACTIONS(12331), + [anon_sym_BSLASHtextcolor] = ACTIONS(12331), + [anon_sym_BSLASHpagecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12331), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12331), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12331), + }, + [784] = { + [sym_generic_command_name] = ACTIONS(12345), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12345), + [aux_sym_chapter_token1] = ACTIONS(12345), + [aux_sym_section_token1] = ACTIONS(12345), + [aux_sym_subsection_token1] = ACTIONS(12345), + [aux_sym_subsubsection_token1] = ACTIONS(12345), + [aux_sym_paragraph_token1] = ACTIONS(12345), + [aux_sym_subparagraph_token1] = ACTIONS(12345), + [anon_sym_BSLASHitem] = ACTIONS(12345), + [anon_sym_LBRACK] = ACTIONS(12343), + [anon_sym_LBRACE] = ACTIONS(12343), + [anon_sym_LPAREN] = ACTIONS(12343), + [anon_sym_COMMA] = ACTIONS(12343), + [anon_sym_EQ] = ACTIONS(12343), + [sym_word] = ACTIONS(12343), + [sym_param] = ACTIONS(12343), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12343), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12343), + [anon_sym_DOLLAR] = ACTIONS(12345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12343), + [anon_sym_BSLASHbegin] = ACTIONS(12345), + [anon_sym_BSLASHend] = ACTIONS(12345), + [anon_sym_BSLASHcaption] = ACTIONS(12345), + [anon_sym_BSLASHcite] = ACTIONS(12345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCite] = ACTIONS(12345), + [anon_sym_BSLASHnocite] = ACTIONS(12345), + [anon_sym_BSLASHcitet] = ACTIONS(12345), + [anon_sym_BSLASHcitep] = ACTIONS(12345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteauthor] = ACTIONS(12345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitetitle] = ACTIONS(12345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteyear] = ACTIONS(12345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitedate] = ACTIONS(12345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteurl] = ACTIONS(12345), + [anon_sym_BSLASHfullcite] = ACTIONS(12345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12345), + [anon_sym_BSLASHcitealt] = ACTIONS(12345), + [anon_sym_BSLASHcitealp] = ACTIONS(12345), + [anon_sym_BSLASHcitetext] = ACTIONS(12345), + [anon_sym_BSLASHparencite] = ACTIONS(12345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHParencite] = ACTIONS(12345), + [anon_sym_BSLASHfootcite] = ACTIONS(12345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12345), + [anon_sym_BSLASHtextcite] = ACTIONS(12345), + [anon_sym_BSLASHTextcite] = ACTIONS(12345), + [anon_sym_BSLASHsmartcite] = ACTIONS(12345), + [anon_sym_BSLASHSmartcite] = ACTIONS(12345), + [anon_sym_BSLASHsupercite] = ACTIONS(12345), + [anon_sym_BSLASHautocite] = ACTIONS(12345), + [anon_sym_BSLASHAutocite] = ACTIONS(12345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHvolcite] = ACTIONS(12345), + [anon_sym_BSLASHVolcite] = ACTIONS(12345), + [anon_sym_BSLASHpvolcite] = ACTIONS(12345), + [anon_sym_BSLASHPvolcite] = ACTIONS(12345), + [anon_sym_BSLASHfvolcite] = ACTIONS(12345), + [anon_sym_BSLASHftvolcite] = ACTIONS(12345), + [anon_sym_BSLASHsvolcite] = ACTIONS(12345), + [anon_sym_BSLASHSvolcite] = ACTIONS(12345), + [anon_sym_BSLASHtvolcite] = ACTIONS(12345), + [anon_sym_BSLASHTvolcite] = ACTIONS(12345), + [anon_sym_BSLASHavolcite] = ACTIONS(12345), + [anon_sym_BSLASHAvolcite] = ACTIONS(12345), + [anon_sym_BSLASHnotecite] = ACTIONS(12345), + [anon_sym_BSLASHpnotecite] = ACTIONS(12345), + [anon_sym_BSLASHPnotecite] = ACTIONS(12345), + [anon_sym_BSLASHfnotecite] = ACTIONS(12345), + [anon_sym_BSLASHusepackage] = ACTIONS(12345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12345), + [anon_sym_BSLASHinclude] = ACTIONS(12345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12345), + [anon_sym_BSLASHinput] = ACTIONS(12345), + [anon_sym_BSLASHsubfile] = ACTIONS(12345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12345), + [anon_sym_BSLASHbibliography] = ACTIONS(12345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12345), + [anon_sym_BSLASHincludesvg] = ACTIONS(12345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12345), + [anon_sym_BSLASHimport] = ACTIONS(12345), + [anon_sym_BSLASHsubimport] = ACTIONS(12345), + [anon_sym_BSLASHinputfrom] = ACTIONS(12345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12345), + [anon_sym_BSLASHincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHlabel] = ACTIONS(12345), + [anon_sym_BSLASHref] = ACTIONS(12345), + [anon_sym_BSLASHvref] = ACTIONS(12345), + [anon_sym_BSLASHVref] = ACTIONS(12345), + [anon_sym_BSLASHautoref] = ACTIONS(12345), + [anon_sym_BSLASHpageref] = ACTIONS(12345), + [anon_sym_BSLASHcref] = ACTIONS(12345), + [anon_sym_BSLASHCref] = ACTIONS(12345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnameCref] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHlabelcref] = ACTIONS(12345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12345), + [anon_sym_BSLASHeqref] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange] = ACTIONS(12345), + [anon_sym_BSLASHCrefrange] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewlabel] = ACTIONS(12345), + [anon_sym_BSLASHnewcommand] = ACTIONS(12345), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12345), + [anon_sym_BSLASHgls] = ACTIONS(12345), + [anon_sym_BSLASHGls] = ACTIONS(12345), + [anon_sym_BSLASHGLS] = ACTIONS(12345), + [anon_sym_BSLASHglspl] = ACTIONS(12345), + [anon_sym_BSLASHGlspl] = ACTIONS(12345), + [anon_sym_BSLASHGLSpl] = ACTIONS(12345), + [anon_sym_BSLASHglsdisp] = ACTIONS(12345), + [anon_sym_BSLASHglslink] = ACTIONS(12345), + [anon_sym_BSLASHglstext] = ACTIONS(12345), + [anon_sym_BSLASHGlstext] = ACTIONS(12345), + [anon_sym_BSLASHGLStext] = ACTIONS(12345), + [anon_sym_BSLASHglsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12345), + [anon_sym_BSLASHglsplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSplural] = ACTIONS(12345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHglsname] = ACTIONS(12345), + [anon_sym_BSLASHGlsname] = ACTIONS(12345), + [anon_sym_BSLASHGLSname] = ACTIONS(12345), + [anon_sym_BSLASHglssymbol] = ACTIONS(12345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12345), + [anon_sym_BSLASHglsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12345), + [anon_sym_BSLASHglsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12345), + [anon_sym_BSLASHglsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12345), + [anon_sym_BSLASHglsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12345), + [anon_sym_BSLASHglsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12345), + [anon_sym_BSLASHnewacronym] = ACTIONS(12345), + [anon_sym_BSLASHacrshort] = ACTIONS(12345), + [anon_sym_BSLASHAcrshort] = ACTIONS(12345), + [anon_sym_BSLASHACRshort] = ACTIONS(12345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12345), + [anon_sym_BSLASHacrlong] = ACTIONS(12345), + [anon_sym_BSLASHAcrlong] = ACTIONS(12345), + [anon_sym_BSLASHACRlong] = ACTIONS(12345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12345), + [anon_sym_BSLASHacrfull] = ACTIONS(12345), + [anon_sym_BSLASHAcrfull] = ACTIONS(12345), + [anon_sym_BSLASHACRfull] = ACTIONS(12345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12345), + [anon_sym_BSLASHacs] = ACTIONS(12345), + [anon_sym_BSLASHAcs] = ACTIONS(12345), + [anon_sym_BSLASHacsp] = ACTIONS(12345), + [anon_sym_BSLASHAcsp] = ACTIONS(12345), + [anon_sym_BSLASHacl] = ACTIONS(12345), + [anon_sym_BSLASHAcl] = ACTIONS(12345), + [anon_sym_BSLASHaclp] = ACTIONS(12345), + [anon_sym_BSLASHAclp] = ACTIONS(12345), + [anon_sym_BSLASHacf] = ACTIONS(12345), + [anon_sym_BSLASHAcf] = ACTIONS(12345), + [anon_sym_BSLASHacfp] = ACTIONS(12345), + [anon_sym_BSLASHAcfp] = ACTIONS(12345), + [anon_sym_BSLASHac] = ACTIONS(12345), + [anon_sym_BSLASHAc] = ACTIONS(12345), + [anon_sym_BSLASHacp] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12345), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12345), + [anon_sym_BSLASHcolor] = ACTIONS(12345), + [anon_sym_BSLASHcolorbox] = ACTIONS(12345), + [anon_sym_BSLASHtextcolor] = ACTIONS(12345), + [anon_sym_BSLASHpagecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12345), + }, + [785] = { + [sym_generic_command_name] = ACTIONS(12327), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12327), + [aux_sym_chapter_token1] = ACTIONS(12327), + [aux_sym_section_token1] = ACTIONS(12327), + [aux_sym_subsection_token1] = ACTIONS(12327), + [aux_sym_subsubsection_token1] = ACTIONS(12327), + [aux_sym_paragraph_token1] = ACTIONS(12327), + [aux_sym_subparagraph_token1] = ACTIONS(12327), + [anon_sym_BSLASHitem] = ACTIONS(12327), + [anon_sym_LBRACK] = ACTIONS(12325), + [anon_sym_LBRACE] = ACTIONS(12325), + [anon_sym_LPAREN] = ACTIONS(12325), + [anon_sym_COMMA] = ACTIONS(12325), + [anon_sym_EQ] = ACTIONS(12325), + [sym_word] = ACTIONS(12325), + [sym_param] = ACTIONS(12325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12325), + [anon_sym_DOLLAR] = ACTIONS(12327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12325), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12325), + [anon_sym_BSLASHbegin] = ACTIONS(12327), + [anon_sym_BSLASHcaption] = ACTIONS(12327), + [anon_sym_BSLASHcite] = ACTIONS(12327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCite] = ACTIONS(12327), + [anon_sym_BSLASHnocite] = ACTIONS(12327), + [anon_sym_BSLASHcitet] = ACTIONS(12327), + [anon_sym_BSLASHcitep] = ACTIONS(12327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteauthor] = ACTIONS(12327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitetitle] = ACTIONS(12327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteyear] = ACTIONS(12327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitedate] = ACTIONS(12327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteurl] = ACTIONS(12327), + [anon_sym_BSLASHfullcite] = ACTIONS(12327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12327), + [anon_sym_BSLASHcitealt] = ACTIONS(12327), + [anon_sym_BSLASHcitealp] = ACTIONS(12327), + [anon_sym_BSLASHcitetext] = ACTIONS(12327), + [anon_sym_BSLASHparencite] = ACTIONS(12327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHParencite] = ACTIONS(12327), + [anon_sym_BSLASHfootcite] = ACTIONS(12327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12327), + [anon_sym_BSLASHtextcite] = ACTIONS(12327), + [anon_sym_BSLASHTextcite] = ACTIONS(12327), + [anon_sym_BSLASHsmartcite] = ACTIONS(12327), + [anon_sym_BSLASHSmartcite] = ACTIONS(12327), + [anon_sym_BSLASHsupercite] = ACTIONS(12327), + [anon_sym_BSLASHautocite] = ACTIONS(12327), + [anon_sym_BSLASHAutocite] = ACTIONS(12327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHvolcite] = ACTIONS(12327), + [anon_sym_BSLASHVolcite] = ACTIONS(12327), + [anon_sym_BSLASHpvolcite] = ACTIONS(12327), + [anon_sym_BSLASHPvolcite] = ACTIONS(12327), + [anon_sym_BSLASHfvolcite] = ACTIONS(12327), + [anon_sym_BSLASHftvolcite] = ACTIONS(12327), + [anon_sym_BSLASHsvolcite] = ACTIONS(12327), + [anon_sym_BSLASHSvolcite] = ACTIONS(12327), + [anon_sym_BSLASHtvolcite] = ACTIONS(12327), + [anon_sym_BSLASHTvolcite] = ACTIONS(12327), + [anon_sym_BSLASHavolcite] = ACTIONS(12327), + [anon_sym_BSLASHAvolcite] = ACTIONS(12327), + [anon_sym_BSLASHnotecite] = ACTIONS(12327), + [anon_sym_BSLASHpnotecite] = ACTIONS(12327), + [anon_sym_BSLASHPnotecite] = ACTIONS(12327), + [anon_sym_BSLASHfnotecite] = ACTIONS(12327), + [anon_sym_BSLASHusepackage] = ACTIONS(12327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12327), + [anon_sym_BSLASHinclude] = ACTIONS(12327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12327), + [anon_sym_BSLASHinput] = ACTIONS(12327), + [anon_sym_BSLASHsubfile] = ACTIONS(12327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12327), + [anon_sym_BSLASHbibliography] = ACTIONS(12327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12327), + [anon_sym_BSLASHincludesvg] = ACTIONS(12327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12327), + [anon_sym_BSLASHimport] = ACTIONS(12327), + [anon_sym_BSLASHsubimport] = ACTIONS(12327), + [anon_sym_BSLASHinputfrom] = ACTIONS(12327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12327), + [anon_sym_BSLASHincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHlabel] = ACTIONS(12327), + [anon_sym_BSLASHref] = ACTIONS(12327), + [anon_sym_BSLASHvref] = ACTIONS(12327), + [anon_sym_BSLASHVref] = ACTIONS(12327), + [anon_sym_BSLASHautoref] = ACTIONS(12327), + [anon_sym_BSLASHpageref] = ACTIONS(12327), + [anon_sym_BSLASHcref] = ACTIONS(12327), + [anon_sym_BSLASHCref] = ACTIONS(12327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnameCref] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHlabelcref] = ACTIONS(12327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12327), + [anon_sym_BSLASHeqref] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange] = ACTIONS(12327), + [anon_sym_BSLASHCrefrange] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewlabel] = ACTIONS(12327), + [anon_sym_BSLASHnewcommand] = ACTIONS(12327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12327), + [anon_sym_BSLASHgls] = ACTIONS(12327), + [anon_sym_BSLASHGls] = ACTIONS(12327), + [anon_sym_BSLASHGLS] = ACTIONS(12327), + [anon_sym_BSLASHglspl] = ACTIONS(12327), + [anon_sym_BSLASHGlspl] = ACTIONS(12327), + [anon_sym_BSLASHGLSpl] = ACTIONS(12327), + [anon_sym_BSLASHglsdisp] = ACTIONS(12327), + [anon_sym_BSLASHglslink] = ACTIONS(12327), + [anon_sym_BSLASHglstext] = ACTIONS(12327), + [anon_sym_BSLASHGlstext] = ACTIONS(12327), + [anon_sym_BSLASHGLStext] = ACTIONS(12327), + [anon_sym_BSLASHglsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12327), + [anon_sym_BSLASHglsplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSplural] = ACTIONS(12327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHglsname] = ACTIONS(12327), + [anon_sym_BSLASHGlsname] = ACTIONS(12327), + [anon_sym_BSLASHGLSname] = ACTIONS(12327), + [anon_sym_BSLASHglssymbol] = ACTIONS(12327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12327), + [anon_sym_BSLASHglsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12327), + [anon_sym_BSLASHglsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12327), + [anon_sym_BSLASHglsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12327), + [anon_sym_BSLASHglsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12327), + [anon_sym_BSLASHglsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12327), + [anon_sym_BSLASHnewacronym] = ACTIONS(12327), + [anon_sym_BSLASHacrshort] = ACTIONS(12327), + [anon_sym_BSLASHAcrshort] = ACTIONS(12327), + [anon_sym_BSLASHACRshort] = ACTIONS(12327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12327), + [anon_sym_BSLASHacrlong] = ACTIONS(12327), + [anon_sym_BSLASHAcrlong] = ACTIONS(12327), + [anon_sym_BSLASHACRlong] = ACTIONS(12327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12327), + [anon_sym_BSLASHacrfull] = ACTIONS(12327), + [anon_sym_BSLASHAcrfull] = ACTIONS(12327), + [anon_sym_BSLASHACRfull] = ACTIONS(12327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12327), + [anon_sym_BSLASHacs] = ACTIONS(12327), + [anon_sym_BSLASHAcs] = ACTIONS(12327), + [anon_sym_BSLASHacsp] = ACTIONS(12327), + [anon_sym_BSLASHAcsp] = ACTIONS(12327), + [anon_sym_BSLASHacl] = ACTIONS(12327), + [anon_sym_BSLASHAcl] = ACTIONS(12327), + [anon_sym_BSLASHaclp] = ACTIONS(12327), + [anon_sym_BSLASHAclp] = ACTIONS(12327), + [anon_sym_BSLASHacf] = ACTIONS(12327), + [anon_sym_BSLASHAcf] = ACTIONS(12327), + [anon_sym_BSLASHacfp] = ACTIONS(12327), + [anon_sym_BSLASHAcfp] = ACTIONS(12327), + [anon_sym_BSLASHac] = ACTIONS(12327), + [anon_sym_BSLASHAc] = ACTIONS(12327), + [anon_sym_BSLASHacp] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12327), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12327), + [anon_sym_BSLASHcolor] = ACTIONS(12327), + [anon_sym_BSLASHcolorbox] = ACTIONS(12327), + [anon_sym_BSLASHtextcolor] = ACTIONS(12327), + [anon_sym_BSLASHpagecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12327), + }, + [786] = { + [sym_generic_command_name] = ACTIONS(12311), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12311), + [aux_sym_chapter_token1] = ACTIONS(12311), + [aux_sym_section_token1] = ACTIONS(12311), + [aux_sym_subsection_token1] = ACTIONS(12311), + [aux_sym_subsubsection_token1] = ACTIONS(12311), + [aux_sym_paragraph_token1] = ACTIONS(12311), + [aux_sym_subparagraph_token1] = ACTIONS(12311), + [anon_sym_BSLASHitem] = ACTIONS(12311), + [anon_sym_LBRACK] = ACTIONS(12309), + [anon_sym_LBRACE] = ACTIONS(12309), + [anon_sym_LPAREN] = ACTIONS(12309), + [anon_sym_COMMA] = ACTIONS(12309), + [anon_sym_EQ] = ACTIONS(12309), + [sym_word] = ACTIONS(12309), + [sym_param] = ACTIONS(12309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12309), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12309), + [anon_sym_DOLLAR] = ACTIONS(12311), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12309), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12309), + [anon_sym_BSLASHbegin] = ACTIONS(12311), + [anon_sym_BSLASHcaption] = ACTIONS(12311), + [anon_sym_BSLASHcite] = ACTIONS(12311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCite] = ACTIONS(12311), + [anon_sym_BSLASHnocite] = ACTIONS(12311), + [anon_sym_BSLASHcitet] = ACTIONS(12311), + [anon_sym_BSLASHcitep] = ACTIONS(12311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteauthor] = ACTIONS(12311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitetitle] = ACTIONS(12311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteyear] = ACTIONS(12311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitedate] = ACTIONS(12311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteurl] = ACTIONS(12311), + [anon_sym_BSLASHfullcite] = ACTIONS(12311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12311), + [anon_sym_BSLASHcitealt] = ACTIONS(12311), + [anon_sym_BSLASHcitealp] = ACTIONS(12311), + [anon_sym_BSLASHcitetext] = ACTIONS(12311), + [anon_sym_BSLASHparencite] = ACTIONS(12311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHParencite] = ACTIONS(12311), + [anon_sym_BSLASHfootcite] = ACTIONS(12311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12311), + [anon_sym_BSLASHtextcite] = ACTIONS(12311), + [anon_sym_BSLASHTextcite] = ACTIONS(12311), + [anon_sym_BSLASHsmartcite] = ACTIONS(12311), + [anon_sym_BSLASHSmartcite] = ACTIONS(12311), + [anon_sym_BSLASHsupercite] = ACTIONS(12311), + [anon_sym_BSLASHautocite] = ACTIONS(12311), + [anon_sym_BSLASHAutocite] = ACTIONS(12311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHvolcite] = ACTIONS(12311), + [anon_sym_BSLASHVolcite] = ACTIONS(12311), + [anon_sym_BSLASHpvolcite] = ACTIONS(12311), + [anon_sym_BSLASHPvolcite] = ACTIONS(12311), + [anon_sym_BSLASHfvolcite] = ACTIONS(12311), + [anon_sym_BSLASHftvolcite] = ACTIONS(12311), + [anon_sym_BSLASHsvolcite] = ACTIONS(12311), + [anon_sym_BSLASHSvolcite] = ACTIONS(12311), + [anon_sym_BSLASHtvolcite] = ACTIONS(12311), + [anon_sym_BSLASHTvolcite] = ACTIONS(12311), + [anon_sym_BSLASHavolcite] = ACTIONS(12311), + [anon_sym_BSLASHAvolcite] = ACTIONS(12311), + [anon_sym_BSLASHnotecite] = ACTIONS(12311), + [anon_sym_BSLASHpnotecite] = ACTIONS(12311), + [anon_sym_BSLASHPnotecite] = ACTIONS(12311), + [anon_sym_BSLASHfnotecite] = ACTIONS(12311), + [anon_sym_BSLASHusepackage] = ACTIONS(12311), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12311), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12311), + [anon_sym_BSLASHinclude] = ACTIONS(12311), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12311), + [anon_sym_BSLASHinput] = ACTIONS(12311), + [anon_sym_BSLASHsubfile] = ACTIONS(12311), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12311), + [anon_sym_BSLASHbibliography] = ACTIONS(12311), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12311), + [anon_sym_BSLASHincludesvg] = ACTIONS(12311), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12311), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12311), + [anon_sym_BSLASHimport] = ACTIONS(12311), + [anon_sym_BSLASHsubimport] = ACTIONS(12311), + [anon_sym_BSLASHinputfrom] = ACTIONS(12311), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12311), + [anon_sym_BSLASHincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHlabel] = ACTIONS(12311), + [anon_sym_BSLASHref] = ACTIONS(12311), + [anon_sym_BSLASHvref] = ACTIONS(12311), + [anon_sym_BSLASHVref] = ACTIONS(12311), + [anon_sym_BSLASHautoref] = ACTIONS(12311), + [anon_sym_BSLASHpageref] = ACTIONS(12311), + [anon_sym_BSLASHcref] = ACTIONS(12311), + [anon_sym_BSLASHCref] = ACTIONS(12311), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnameCref] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHlabelcref] = ACTIONS(12311), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12311), + [anon_sym_BSLASHeqref] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange] = ACTIONS(12311), + [anon_sym_BSLASHCrefrange] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewlabel] = ACTIONS(12311), + [anon_sym_BSLASHnewcommand] = ACTIONS(12311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12311), + [anon_sym_BSLASHgls] = ACTIONS(12311), + [anon_sym_BSLASHGls] = ACTIONS(12311), + [anon_sym_BSLASHGLS] = ACTIONS(12311), + [anon_sym_BSLASHglspl] = ACTIONS(12311), + [anon_sym_BSLASHGlspl] = ACTIONS(12311), + [anon_sym_BSLASHGLSpl] = ACTIONS(12311), + [anon_sym_BSLASHglsdisp] = ACTIONS(12311), + [anon_sym_BSLASHglslink] = ACTIONS(12311), + [anon_sym_BSLASHglstext] = ACTIONS(12311), + [anon_sym_BSLASHGlstext] = ACTIONS(12311), + [anon_sym_BSLASHGLStext] = ACTIONS(12311), + [anon_sym_BSLASHglsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12311), + [anon_sym_BSLASHglsplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSplural] = ACTIONS(12311), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHglsname] = ACTIONS(12311), + [anon_sym_BSLASHGlsname] = ACTIONS(12311), + [anon_sym_BSLASHGLSname] = ACTIONS(12311), + [anon_sym_BSLASHglssymbol] = ACTIONS(12311), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12311), + [anon_sym_BSLASHglsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12311), + [anon_sym_BSLASHglsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12311), + [anon_sym_BSLASHglsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12311), + [anon_sym_BSLASHglsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12311), + [anon_sym_BSLASHglsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12311), + [anon_sym_BSLASHnewacronym] = ACTIONS(12311), + [anon_sym_BSLASHacrshort] = ACTIONS(12311), + [anon_sym_BSLASHAcrshort] = ACTIONS(12311), + [anon_sym_BSLASHACRshort] = ACTIONS(12311), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12311), + [anon_sym_BSLASHacrlong] = ACTIONS(12311), + [anon_sym_BSLASHAcrlong] = ACTIONS(12311), + [anon_sym_BSLASHACRlong] = ACTIONS(12311), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12311), + [anon_sym_BSLASHacrfull] = ACTIONS(12311), + [anon_sym_BSLASHAcrfull] = ACTIONS(12311), + [anon_sym_BSLASHACRfull] = ACTIONS(12311), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12311), + [anon_sym_BSLASHacs] = ACTIONS(12311), + [anon_sym_BSLASHAcs] = ACTIONS(12311), + [anon_sym_BSLASHacsp] = ACTIONS(12311), + [anon_sym_BSLASHAcsp] = ACTIONS(12311), + [anon_sym_BSLASHacl] = ACTIONS(12311), + [anon_sym_BSLASHAcl] = ACTIONS(12311), + [anon_sym_BSLASHaclp] = ACTIONS(12311), + [anon_sym_BSLASHAclp] = ACTIONS(12311), + [anon_sym_BSLASHacf] = ACTIONS(12311), + [anon_sym_BSLASHAcf] = ACTIONS(12311), + [anon_sym_BSLASHacfp] = ACTIONS(12311), + [anon_sym_BSLASHAcfp] = ACTIONS(12311), + [anon_sym_BSLASHac] = ACTIONS(12311), + [anon_sym_BSLASHAc] = ACTIONS(12311), + [anon_sym_BSLASHacp] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12311), + [anon_sym_BSLASHcolor] = ACTIONS(12311), + [anon_sym_BSLASHcolorbox] = ACTIONS(12311), + [anon_sym_BSLASHtextcolor] = ACTIONS(12311), + [anon_sym_BSLASHpagecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12311), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12311), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12311), + }, + [787] = { + [sym_generic_command_name] = ACTIONS(12299), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12299), + [aux_sym_chapter_token1] = ACTIONS(12299), + [aux_sym_section_token1] = ACTIONS(12299), + [aux_sym_subsection_token1] = ACTIONS(12299), + [aux_sym_subsubsection_token1] = ACTIONS(12299), + [aux_sym_paragraph_token1] = ACTIONS(12299), + [aux_sym_subparagraph_token1] = ACTIONS(12299), + [anon_sym_BSLASHitem] = ACTIONS(12299), + [anon_sym_LBRACK] = ACTIONS(12297), + [anon_sym_LBRACE] = ACTIONS(12297), + [anon_sym_LPAREN] = ACTIONS(12297), + [anon_sym_COMMA] = ACTIONS(12297), + [anon_sym_EQ] = ACTIONS(12297), + [sym_word] = ACTIONS(12297), + [sym_param] = ACTIONS(12297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12297), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12297), + [anon_sym_DOLLAR] = ACTIONS(12299), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12297), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12297), + [anon_sym_BSLASHbegin] = ACTIONS(12299), + [anon_sym_BSLASHcaption] = ACTIONS(12299), + [anon_sym_BSLASHcite] = ACTIONS(12299), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCite] = ACTIONS(12299), + [anon_sym_BSLASHnocite] = ACTIONS(12299), + [anon_sym_BSLASHcitet] = ACTIONS(12299), + [anon_sym_BSLASHcitep] = ACTIONS(12299), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteauthor] = ACTIONS(12299), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12299), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitetitle] = ACTIONS(12299), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteyear] = ACTIONS(12299), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitedate] = ACTIONS(12299), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteurl] = ACTIONS(12299), + [anon_sym_BSLASHfullcite] = ACTIONS(12299), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12299), + [anon_sym_BSLASHcitealt] = ACTIONS(12299), + [anon_sym_BSLASHcitealp] = ACTIONS(12299), + [anon_sym_BSLASHcitetext] = ACTIONS(12299), + [anon_sym_BSLASHparencite] = ACTIONS(12299), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHParencite] = ACTIONS(12299), + [anon_sym_BSLASHfootcite] = ACTIONS(12299), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12299), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12299), + [anon_sym_BSLASHtextcite] = ACTIONS(12299), + [anon_sym_BSLASHTextcite] = ACTIONS(12299), + [anon_sym_BSLASHsmartcite] = ACTIONS(12299), + [anon_sym_BSLASHSmartcite] = ACTIONS(12299), + [anon_sym_BSLASHsupercite] = ACTIONS(12299), + [anon_sym_BSLASHautocite] = ACTIONS(12299), + [anon_sym_BSLASHAutocite] = ACTIONS(12299), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHvolcite] = ACTIONS(12299), + [anon_sym_BSLASHVolcite] = ACTIONS(12299), + [anon_sym_BSLASHpvolcite] = ACTIONS(12299), + [anon_sym_BSLASHPvolcite] = ACTIONS(12299), + [anon_sym_BSLASHfvolcite] = ACTIONS(12299), + [anon_sym_BSLASHftvolcite] = ACTIONS(12299), + [anon_sym_BSLASHsvolcite] = ACTIONS(12299), + [anon_sym_BSLASHSvolcite] = ACTIONS(12299), + [anon_sym_BSLASHtvolcite] = ACTIONS(12299), + [anon_sym_BSLASHTvolcite] = ACTIONS(12299), + [anon_sym_BSLASHavolcite] = ACTIONS(12299), + [anon_sym_BSLASHAvolcite] = ACTIONS(12299), + [anon_sym_BSLASHnotecite] = ACTIONS(12299), + [anon_sym_BSLASHpnotecite] = ACTIONS(12299), + [anon_sym_BSLASHPnotecite] = ACTIONS(12299), + [anon_sym_BSLASHfnotecite] = ACTIONS(12299), + [anon_sym_BSLASHusepackage] = ACTIONS(12299), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12299), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12299), + [anon_sym_BSLASHinclude] = ACTIONS(12299), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12299), + [anon_sym_BSLASHinput] = ACTIONS(12299), + [anon_sym_BSLASHsubfile] = ACTIONS(12299), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12299), + [anon_sym_BSLASHbibliography] = ACTIONS(12299), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12299), + [anon_sym_BSLASHincludesvg] = ACTIONS(12299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12299), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12299), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12299), + [anon_sym_BSLASHimport] = ACTIONS(12299), + [anon_sym_BSLASHsubimport] = ACTIONS(12299), + [anon_sym_BSLASHinputfrom] = ACTIONS(12299), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12299), + [anon_sym_BSLASHincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHlabel] = ACTIONS(12299), + [anon_sym_BSLASHref] = ACTIONS(12299), + [anon_sym_BSLASHvref] = ACTIONS(12299), + [anon_sym_BSLASHVref] = ACTIONS(12299), + [anon_sym_BSLASHautoref] = ACTIONS(12299), + [anon_sym_BSLASHpageref] = ACTIONS(12299), + [anon_sym_BSLASHcref] = ACTIONS(12299), + [anon_sym_BSLASHCref] = ACTIONS(12299), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnameCref] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHlabelcref] = ACTIONS(12299), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12299), + [anon_sym_BSLASHeqref] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange] = ACTIONS(12299), + [anon_sym_BSLASHCrefrange] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewlabel] = ACTIONS(12299), + [anon_sym_BSLASHnewcommand] = ACTIONS(12299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12299), + [anon_sym_BSLASHgls] = ACTIONS(12299), + [anon_sym_BSLASHGls] = ACTIONS(12299), + [anon_sym_BSLASHGLS] = ACTIONS(12299), + [anon_sym_BSLASHglspl] = ACTIONS(12299), + [anon_sym_BSLASHGlspl] = ACTIONS(12299), + [anon_sym_BSLASHGLSpl] = ACTIONS(12299), + [anon_sym_BSLASHglsdisp] = ACTIONS(12299), + [anon_sym_BSLASHglslink] = ACTIONS(12299), + [anon_sym_BSLASHglstext] = ACTIONS(12299), + [anon_sym_BSLASHGlstext] = ACTIONS(12299), + [anon_sym_BSLASHGLStext] = ACTIONS(12299), + [anon_sym_BSLASHglsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12299), + [anon_sym_BSLASHglsplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSplural] = ACTIONS(12299), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHglsname] = ACTIONS(12299), + [anon_sym_BSLASHGlsname] = ACTIONS(12299), + [anon_sym_BSLASHGLSname] = ACTIONS(12299), + [anon_sym_BSLASHglssymbol] = ACTIONS(12299), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12299), + [anon_sym_BSLASHglsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12299), + [anon_sym_BSLASHglsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12299), + [anon_sym_BSLASHglsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12299), + [anon_sym_BSLASHglsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12299), + [anon_sym_BSLASHglsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12299), + [anon_sym_BSLASHnewacronym] = ACTIONS(12299), + [anon_sym_BSLASHacrshort] = ACTIONS(12299), + [anon_sym_BSLASHAcrshort] = ACTIONS(12299), + [anon_sym_BSLASHACRshort] = ACTIONS(12299), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12299), + [anon_sym_BSLASHacrlong] = ACTIONS(12299), + [anon_sym_BSLASHAcrlong] = ACTIONS(12299), + [anon_sym_BSLASHACRlong] = ACTIONS(12299), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12299), + [anon_sym_BSLASHacrfull] = ACTIONS(12299), + [anon_sym_BSLASHAcrfull] = ACTIONS(12299), + [anon_sym_BSLASHACRfull] = ACTIONS(12299), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12299), + [anon_sym_BSLASHacs] = ACTIONS(12299), + [anon_sym_BSLASHAcs] = ACTIONS(12299), + [anon_sym_BSLASHacsp] = ACTIONS(12299), + [anon_sym_BSLASHAcsp] = ACTIONS(12299), + [anon_sym_BSLASHacl] = ACTIONS(12299), + [anon_sym_BSLASHAcl] = ACTIONS(12299), + [anon_sym_BSLASHaclp] = ACTIONS(12299), + [anon_sym_BSLASHAclp] = ACTIONS(12299), + [anon_sym_BSLASHacf] = ACTIONS(12299), + [anon_sym_BSLASHAcf] = ACTIONS(12299), + [anon_sym_BSLASHacfp] = ACTIONS(12299), + [anon_sym_BSLASHAcfp] = ACTIONS(12299), + [anon_sym_BSLASHac] = ACTIONS(12299), + [anon_sym_BSLASHAc] = ACTIONS(12299), + [anon_sym_BSLASHacp] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12299), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12299), + [anon_sym_BSLASHcolor] = ACTIONS(12299), + [anon_sym_BSLASHcolorbox] = ACTIONS(12299), + [anon_sym_BSLASHtextcolor] = ACTIONS(12299), + [anon_sym_BSLASHpagecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12299), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12299), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12299), + }, + [788] = { + [sym_generic_command_name] = ACTIONS(12283), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12283), + [aux_sym_chapter_token1] = ACTIONS(12283), + [aux_sym_section_token1] = ACTIONS(12283), + [aux_sym_subsection_token1] = ACTIONS(12283), + [aux_sym_subsubsection_token1] = ACTIONS(12283), + [aux_sym_paragraph_token1] = ACTIONS(12283), + [aux_sym_subparagraph_token1] = ACTIONS(12283), + [anon_sym_BSLASHitem] = ACTIONS(12283), + [anon_sym_LBRACK] = ACTIONS(12281), + [anon_sym_LBRACE] = ACTIONS(12281), + [anon_sym_LPAREN] = ACTIONS(12281), + [anon_sym_COMMA] = ACTIONS(12281), + [anon_sym_EQ] = ACTIONS(12281), + [sym_word] = ACTIONS(12281), + [sym_param] = ACTIONS(12281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12281), + [anon_sym_DOLLAR] = ACTIONS(12283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12281), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12281), + [anon_sym_BSLASHbegin] = ACTIONS(12283), + [anon_sym_BSLASHcaption] = ACTIONS(12283), + [anon_sym_BSLASHcite] = ACTIONS(12283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCite] = ACTIONS(12283), + [anon_sym_BSLASHnocite] = ACTIONS(12283), + [anon_sym_BSLASHcitet] = ACTIONS(12283), + [anon_sym_BSLASHcitep] = ACTIONS(12283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteauthor] = ACTIONS(12283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitetitle] = ACTIONS(12283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteyear] = ACTIONS(12283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitedate] = ACTIONS(12283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteurl] = ACTIONS(12283), + [anon_sym_BSLASHfullcite] = ACTIONS(12283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12283), + [anon_sym_BSLASHcitealt] = ACTIONS(12283), + [anon_sym_BSLASHcitealp] = ACTIONS(12283), + [anon_sym_BSLASHcitetext] = ACTIONS(12283), + [anon_sym_BSLASHparencite] = ACTIONS(12283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHParencite] = ACTIONS(12283), + [anon_sym_BSLASHfootcite] = ACTIONS(12283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12283), + [anon_sym_BSLASHtextcite] = ACTIONS(12283), + [anon_sym_BSLASHTextcite] = ACTIONS(12283), + [anon_sym_BSLASHsmartcite] = ACTIONS(12283), + [anon_sym_BSLASHSmartcite] = ACTIONS(12283), + [anon_sym_BSLASHsupercite] = ACTIONS(12283), + [anon_sym_BSLASHautocite] = ACTIONS(12283), + [anon_sym_BSLASHAutocite] = ACTIONS(12283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHvolcite] = ACTIONS(12283), + [anon_sym_BSLASHVolcite] = ACTIONS(12283), + [anon_sym_BSLASHpvolcite] = ACTIONS(12283), + [anon_sym_BSLASHPvolcite] = ACTIONS(12283), + [anon_sym_BSLASHfvolcite] = ACTIONS(12283), + [anon_sym_BSLASHftvolcite] = ACTIONS(12283), + [anon_sym_BSLASHsvolcite] = ACTIONS(12283), + [anon_sym_BSLASHSvolcite] = ACTIONS(12283), + [anon_sym_BSLASHtvolcite] = ACTIONS(12283), + [anon_sym_BSLASHTvolcite] = ACTIONS(12283), + [anon_sym_BSLASHavolcite] = ACTIONS(12283), + [anon_sym_BSLASHAvolcite] = ACTIONS(12283), + [anon_sym_BSLASHnotecite] = ACTIONS(12283), + [anon_sym_BSLASHpnotecite] = ACTIONS(12283), + [anon_sym_BSLASHPnotecite] = ACTIONS(12283), + [anon_sym_BSLASHfnotecite] = ACTIONS(12283), + [anon_sym_BSLASHusepackage] = ACTIONS(12283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12283), + [anon_sym_BSLASHinclude] = ACTIONS(12283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12283), + [anon_sym_BSLASHinput] = ACTIONS(12283), + [anon_sym_BSLASHsubfile] = ACTIONS(12283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12283), + [anon_sym_BSLASHbibliography] = ACTIONS(12283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12283), + [anon_sym_BSLASHincludesvg] = ACTIONS(12283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12283), + [anon_sym_BSLASHimport] = ACTIONS(12283), + [anon_sym_BSLASHsubimport] = ACTIONS(12283), + [anon_sym_BSLASHinputfrom] = ACTIONS(12283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12283), + [anon_sym_BSLASHincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHlabel] = ACTIONS(12283), + [anon_sym_BSLASHref] = ACTIONS(12283), + [anon_sym_BSLASHvref] = ACTIONS(12283), + [anon_sym_BSLASHVref] = ACTIONS(12283), + [anon_sym_BSLASHautoref] = ACTIONS(12283), + [anon_sym_BSLASHpageref] = ACTIONS(12283), + [anon_sym_BSLASHcref] = ACTIONS(12283), + [anon_sym_BSLASHCref] = ACTIONS(12283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnameCref] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHlabelcref] = ACTIONS(12283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12283), + [anon_sym_BSLASHeqref] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange] = ACTIONS(12283), + [anon_sym_BSLASHCrefrange] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewlabel] = ACTIONS(12283), + [anon_sym_BSLASHnewcommand] = ACTIONS(12283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12283), + [anon_sym_BSLASHgls] = ACTIONS(12283), + [anon_sym_BSLASHGls] = ACTIONS(12283), + [anon_sym_BSLASHGLS] = ACTIONS(12283), + [anon_sym_BSLASHglspl] = ACTIONS(12283), + [anon_sym_BSLASHGlspl] = ACTIONS(12283), + [anon_sym_BSLASHGLSpl] = ACTIONS(12283), + [anon_sym_BSLASHglsdisp] = ACTIONS(12283), + [anon_sym_BSLASHglslink] = ACTIONS(12283), + [anon_sym_BSLASHglstext] = ACTIONS(12283), + [anon_sym_BSLASHGlstext] = ACTIONS(12283), + [anon_sym_BSLASHGLStext] = ACTIONS(12283), + [anon_sym_BSLASHglsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12283), + [anon_sym_BSLASHglsplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSplural] = ACTIONS(12283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHglsname] = ACTIONS(12283), + [anon_sym_BSLASHGlsname] = ACTIONS(12283), + [anon_sym_BSLASHGLSname] = ACTIONS(12283), + [anon_sym_BSLASHglssymbol] = ACTIONS(12283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12283), + [anon_sym_BSLASHglsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12283), + [anon_sym_BSLASHglsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12283), + [anon_sym_BSLASHglsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12283), + [anon_sym_BSLASHglsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12283), + [anon_sym_BSLASHglsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12283), + [anon_sym_BSLASHnewacronym] = ACTIONS(12283), + [anon_sym_BSLASHacrshort] = ACTIONS(12283), + [anon_sym_BSLASHAcrshort] = ACTIONS(12283), + [anon_sym_BSLASHACRshort] = ACTIONS(12283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12283), + [anon_sym_BSLASHacrlong] = ACTIONS(12283), + [anon_sym_BSLASHAcrlong] = ACTIONS(12283), + [anon_sym_BSLASHACRlong] = ACTIONS(12283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12283), + [anon_sym_BSLASHacrfull] = ACTIONS(12283), + [anon_sym_BSLASHAcrfull] = ACTIONS(12283), + [anon_sym_BSLASHACRfull] = ACTIONS(12283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12283), + [anon_sym_BSLASHacs] = ACTIONS(12283), + [anon_sym_BSLASHAcs] = ACTIONS(12283), + [anon_sym_BSLASHacsp] = ACTIONS(12283), + [anon_sym_BSLASHAcsp] = ACTIONS(12283), + [anon_sym_BSLASHacl] = ACTIONS(12283), + [anon_sym_BSLASHAcl] = ACTIONS(12283), + [anon_sym_BSLASHaclp] = ACTIONS(12283), + [anon_sym_BSLASHAclp] = ACTIONS(12283), + [anon_sym_BSLASHacf] = ACTIONS(12283), + [anon_sym_BSLASHAcf] = ACTIONS(12283), + [anon_sym_BSLASHacfp] = ACTIONS(12283), + [anon_sym_BSLASHAcfp] = ACTIONS(12283), + [anon_sym_BSLASHac] = ACTIONS(12283), + [anon_sym_BSLASHAc] = ACTIONS(12283), + [anon_sym_BSLASHacp] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12283), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12283), + [anon_sym_BSLASHcolor] = ACTIONS(12283), + [anon_sym_BSLASHcolorbox] = ACTIONS(12283), + [anon_sym_BSLASHtextcolor] = ACTIONS(12283), + [anon_sym_BSLASHpagecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12283), + }, + [789] = { + [sym_generic_command_name] = ACTIONS(12275), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12275), + [aux_sym_chapter_token1] = ACTIONS(12275), + [aux_sym_section_token1] = ACTIONS(12275), + [aux_sym_subsection_token1] = ACTIONS(12275), + [aux_sym_subsubsection_token1] = ACTIONS(12275), + [aux_sym_paragraph_token1] = ACTIONS(12275), + [aux_sym_subparagraph_token1] = ACTIONS(12275), + [anon_sym_BSLASHitem] = ACTIONS(12275), + [anon_sym_LBRACK] = ACTIONS(12273), + [anon_sym_LBRACE] = ACTIONS(12273), + [anon_sym_LPAREN] = ACTIONS(12273), + [anon_sym_COMMA] = ACTIONS(12273), + [anon_sym_EQ] = ACTIONS(12273), + [sym_word] = ACTIONS(12273), + [sym_param] = ACTIONS(12273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12273), + [anon_sym_DOLLAR] = ACTIONS(12275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12273), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12273), + [anon_sym_BSLASHbegin] = ACTIONS(12275), + [anon_sym_BSLASHcaption] = ACTIONS(12275), + [anon_sym_BSLASHcite] = ACTIONS(12275), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCite] = ACTIONS(12275), + [anon_sym_BSLASHnocite] = ACTIONS(12275), + [anon_sym_BSLASHcitet] = ACTIONS(12275), + [anon_sym_BSLASHcitep] = ACTIONS(12275), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteauthor] = ACTIONS(12275), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12275), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitetitle] = ACTIONS(12275), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteyear] = ACTIONS(12275), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitedate] = ACTIONS(12275), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteurl] = ACTIONS(12275), + [anon_sym_BSLASHfullcite] = ACTIONS(12275), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12275), + [anon_sym_BSLASHcitealt] = ACTIONS(12275), + [anon_sym_BSLASHcitealp] = ACTIONS(12275), + [anon_sym_BSLASHcitetext] = ACTIONS(12275), + [anon_sym_BSLASHparencite] = ACTIONS(12275), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHParencite] = ACTIONS(12275), + [anon_sym_BSLASHfootcite] = ACTIONS(12275), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12275), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12275), + [anon_sym_BSLASHtextcite] = ACTIONS(12275), + [anon_sym_BSLASHTextcite] = ACTIONS(12275), + [anon_sym_BSLASHsmartcite] = ACTIONS(12275), + [anon_sym_BSLASHSmartcite] = ACTIONS(12275), + [anon_sym_BSLASHsupercite] = ACTIONS(12275), + [anon_sym_BSLASHautocite] = ACTIONS(12275), + [anon_sym_BSLASHAutocite] = ACTIONS(12275), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHvolcite] = ACTIONS(12275), + [anon_sym_BSLASHVolcite] = ACTIONS(12275), + [anon_sym_BSLASHpvolcite] = ACTIONS(12275), + [anon_sym_BSLASHPvolcite] = ACTIONS(12275), + [anon_sym_BSLASHfvolcite] = ACTIONS(12275), + [anon_sym_BSLASHftvolcite] = ACTIONS(12275), + [anon_sym_BSLASHsvolcite] = ACTIONS(12275), + [anon_sym_BSLASHSvolcite] = ACTIONS(12275), + [anon_sym_BSLASHtvolcite] = ACTIONS(12275), + [anon_sym_BSLASHTvolcite] = ACTIONS(12275), + [anon_sym_BSLASHavolcite] = ACTIONS(12275), + [anon_sym_BSLASHAvolcite] = ACTIONS(12275), + [anon_sym_BSLASHnotecite] = ACTIONS(12275), + [anon_sym_BSLASHpnotecite] = ACTIONS(12275), + [anon_sym_BSLASHPnotecite] = ACTIONS(12275), + [anon_sym_BSLASHfnotecite] = ACTIONS(12275), + [anon_sym_BSLASHusepackage] = ACTIONS(12275), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12275), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12275), + [anon_sym_BSLASHinclude] = ACTIONS(12275), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12275), + [anon_sym_BSLASHinput] = ACTIONS(12275), + [anon_sym_BSLASHsubfile] = ACTIONS(12275), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12275), + [anon_sym_BSLASHbibliography] = ACTIONS(12275), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12275), + [anon_sym_BSLASHincludesvg] = ACTIONS(12275), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12275), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12275), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12275), + [anon_sym_BSLASHimport] = ACTIONS(12275), + [anon_sym_BSLASHsubimport] = ACTIONS(12275), + [anon_sym_BSLASHinputfrom] = ACTIONS(12275), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12275), + [anon_sym_BSLASHincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHlabel] = ACTIONS(12275), + [anon_sym_BSLASHref] = ACTIONS(12275), + [anon_sym_BSLASHvref] = ACTIONS(12275), + [anon_sym_BSLASHVref] = ACTIONS(12275), + [anon_sym_BSLASHautoref] = ACTIONS(12275), + [anon_sym_BSLASHpageref] = ACTIONS(12275), + [anon_sym_BSLASHcref] = ACTIONS(12275), + [anon_sym_BSLASHCref] = ACTIONS(12275), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnameCref] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHlabelcref] = ACTIONS(12275), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12275), + [anon_sym_BSLASHeqref] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange] = ACTIONS(12275), + [anon_sym_BSLASHCrefrange] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewlabel] = ACTIONS(12275), + [anon_sym_BSLASHnewcommand] = ACTIONS(12275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12275), + [anon_sym_BSLASHgls] = ACTIONS(12275), + [anon_sym_BSLASHGls] = ACTIONS(12275), + [anon_sym_BSLASHGLS] = ACTIONS(12275), + [anon_sym_BSLASHglspl] = ACTIONS(12275), + [anon_sym_BSLASHGlspl] = ACTIONS(12275), + [anon_sym_BSLASHGLSpl] = ACTIONS(12275), + [anon_sym_BSLASHglsdisp] = ACTIONS(12275), + [anon_sym_BSLASHglslink] = ACTIONS(12275), + [anon_sym_BSLASHglstext] = ACTIONS(12275), + [anon_sym_BSLASHGlstext] = ACTIONS(12275), + [anon_sym_BSLASHGLStext] = ACTIONS(12275), + [anon_sym_BSLASHglsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12275), + [anon_sym_BSLASHglsplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSplural] = ACTIONS(12275), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHglsname] = ACTIONS(12275), + [anon_sym_BSLASHGlsname] = ACTIONS(12275), + [anon_sym_BSLASHGLSname] = ACTIONS(12275), + [anon_sym_BSLASHglssymbol] = ACTIONS(12275), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12275), + [anon_sym_BSLASHglsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12275), + [anon_sym_BSLASHglsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12275), + [anon_sym_BSLASHglsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12275), + [anon_sym_BSLASHglsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12275), + [anon_sym_BSLASHglsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12275), + [anon_sym_BSLASHnewacronym] = ACTIONS(12275), + [anon_sym_BSLASHacrshort] = ACTIONS(12275), + [anon_sym_BSLASHAcrshort] = ACTIONS(12275), + [anon_sym_BSLASHACRshort] = ACTIONS(12275), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12275), + [anon_sym_BSLASHacrlong] = ACTIONS(12275), + [anon_sym_BSLASHAcrlong] = ACTIONS(12275), + [anon_sym_BSLASHACRlong] = ACTIONS(12275), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12275), + [anon_sym_BSLASHacrfull] = ACTIONS(12275), + [anon_sym_BSLASHAcrfull] = ACTIONS(12275), + [anon_sym_BSLASHACRfull] = ACTIONS(12275), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12275), + [anon_sym_BSLASHacs] = ACTIONS(12275), + [anon_sym_BSLASHAcs] = ACTIONS(12275), + [anon_sym_BSLASHacsp] = ACTIONS(12275), + [anon_sym_BSLASHAcsp] = ACTIONS(12275), + [anon_sym_BSLASHacl] = ACTIONS(12275), + [anon_sym_BSLASHAcl] = ACTIONS(12275), + [anon_sym_BSLASHaclp] = ACTIONS(12275), + [anon_sym_BSLASHAclp] = ACTIONS(12275), + [anon_sym_BSLASHacf] = ACTIONS(12275), + [anon_sym_BSLASHAcf] = ACTIONS(12275), + [anon_sym_BSLASHacfp] = ACTIONS(12275), + [anon_sym_BSLASHAcfp] = ACTIONS(12275), + [anon_sym_BSLASHac] = ACTIONS(12275), + [anon_sym_BSLASHAc] = ACTIONS(12275), + [anon_sym_BSLASHacp] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12275), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12275), + [anon_sym_BSLASHcolor] = ACTIONS(12275), + [anon_sym_BSLASHcolorbox] = ACTIONS(12275), + [anon_sym_BSLASHtextcolor] = ACTIONS(12275), + [anon_sym_BSLASHpagecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12275), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12275), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12275), + }, + [790] = { + [sym_generic_command_name] = ACTIONS(12209), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12209), + [aux_sym_chapter_token1] = ACTIONS(12209), + [aux_sym_section_token1] = ACTIONS(12209), + [aux_sym_subsection_token1] = ACTIONS(12209), + [aux_sym_subsubsection_token1] = ACTIONS(12209), + [aux_sym_paragraph_token1] = ACTIONS(12209), + [aux_sym_subparagraph_token1] = ACTIONS(12209), + [anon_sym_BSLASHitem] = ACTIONS(12209), + [anon_sym_LBRACK] = ACTIONS(12207), + [anon_sym_LBRACE] = ACTIONS(12207), + [anon_sym_LPAREN] = ACTIONS(12207), + [anon_sym_COMMA] = ACTIONS(12207), + [anon_sym_EQ] = ACTIONS(12207), + [sym_word] = ACTIONS(12207), + [sym_param] = ACTIONS(12207), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12207), + [anon_sym_DOLLAR] = ACTIONS(12209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12207), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12207), + [anon_sym_BSLASHbegin] = ACTIONS(12209), + [anon_sym_BSLASHcaption] = ACTIONS(12209), + [anon_sym_BSLASHcite] = ACTIONS(12209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCite] = ACTIONS(12209), + [anon_sym_BSLASHnocite] = ACTIONS(12209), + [anon_sym_BSLASHcitet] = ACTIONS(12209), + [anon_sym_BSLASHcitep] = ACTIONS(12209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteauthor] = ACTIONS(12209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitetitle] = ACTIONS(12209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteyear] = ACTIONS(12209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitedate] = ACTIONS(12209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteurl] = ACTIONS(12209), + [anon_sym_BSLASHfullcite] = ACTIONS(12209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12209), + [anon_sym_BSLASHcitealt] = ACTIONS(12209), + [anon_sym_BSLASHcitealp] = ACTIONS(12209), + [anon_sym_BSLASHcitetext] = ACTIONS(12209), + [anon_sym_BSLASHparencite] = ACTIONS(12209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHParencite] = ACTIONS(12209), + [anon_sym_BSLASHfootcite] = ACTIONS(12209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12209), + [anon_sym_BSLASHtextcite] = ACTIONS(12209), + [anon_sym_BSLASHTextcite] = ACTIONS(12209), + [anon_sym_BSLASHsmartcite] = ACTIONS(12209), + [anon_sym_BSLASHSmartcite] = ACTIONS(12209), + [anon_sym_BSLASHsupercite] = ACTIONS(12209), + [anon_sym_BSLASHautocite] = ACTIONS(12209), + [anon_sym_BSLASHAutocite] = ACTIONS(12209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHvolcite] = ACTIONS(12209), + [anon_sym_BSLASHVolcite] = ACTIONS(12209), + [anon_sym_BSLASHpvolcite] = ACTIONS(12209), + [anon_sym_BSLASHPvolcite] = ACTIONS(12209), + [anon_sym_BSLASHfvolcite] = ACTIONS(12209), + [anon_sym_BSLASHftvolcite] = ACTIONS(12209), + [anon_sym_BSLASHsvolcite] = ACTIONS(12209), + [anon_sym_BSLASHSvolcite] = ACTIONS(12209), + [anon_sym_BSLASHtvolcite] = ACTIONS(12209), + [anon_sym_BSLASHTvolcite] = ACTIONS(12209), + [anon_sym_BSLASHavolcite] = ACTIONS(12209), + [anon_sym_BSLASHAvolcite] = ACTIONS(12209), + [anon_sym_BSLASHnotecite] = ACTIONS(12209), + [anon_sym_BSLASHpnotecite] = ACTIONS(12209), + [anon_sym_BSLASHPnotecite] = ACTIONS(12209), + [anon_sym_BSLASHfnotecite] = ACTIONS(12209), + [anon_sym_BSLASHusepackage] = ACTIONS(12209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12209), + [anon_sym_BSLASHinclude] = ACTIONS(12209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12209), + [anon_sym_BSLASHinput] = ACTIONS(12209), + [anon_sym_BSLASHsubfile] = ACTIONS(12209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12209), + [anon_sym_BSLASHbibliography] = ACTIONS(12209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12209), + [anon_sym_BSLASHincludesvg] = ACTIONS(12209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12209), + [anon_sym_BSLASHimport] = ACTIONS(12209), + [anon_sym_BSLASHsubimport] = ACTIONS(12209), + [anon_sym_BSLASHinputfrom] = ACTIONS(12209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12209), + [anon_sym_BSLASHincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHlabel] = ACTIONS(12209), + [anon_sym_BSLASHref] = ACTIONS(12209), + [anon_sym_BSLASHvref] = ACTIONS(12209), + [anon_sym_BSLASHVref] = ACTIONS(12209), + [anon_sym_BSLASHautoref] = ACTIONS(12209), + [anon_sym_BSLASHpageref] = ACTIONS(12209), + [anon_sym_BSLASHcref] = ACTIONS(12209), + [anon_sym_BSLASHCref] = ACTIONS(12209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnameCref] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHlabelcref] = ACTIONS(12209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12209), + [anon_sym_BSLASHeqref] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange] = ACTIONS(12209), + [anon_sym_BSLASHCrefrange] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewlabel] = ACTIONS(12209), + [anon_sym_BSLASHnewcommand] = ACTIONS(12209), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12209), + [anon_sym_BSLASHgls] = ACTIONS(12209), + [anon_sym_BSLASHGls] = ACTIONS(12209), + [anon_sym_BSLASHGLS] = ACTIONS(12209), + [anon_sym_BSLASHglspl] = ACTIONS(12209), + [anon_sym_BSLASHGlspl] = ACTIONS(12209), + [anon_sym_BSLASHGLSpl] = ACTIONS(12209), + [anon_sym_BSLASHglsdisp] = ACTIONS(12209), + [anon_sym_BSLASHglslink] = ACTIONS(12209), + [anon_sym_BSLASHglstext] = ACTIONS(12209), + [anon_sym_BSLASHGlstext] = ACTIONS(12209), + [anon_sym_BSLASHGLStext] = ACTIONS(12209), + [anon_sym_BSLASHglsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12209), + [anon_sym_BSLASHglsplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSplural] = ACTIONS(12209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHglsname] = ACTIONS(12209), + [anon_sym_BSLASHGlsname] = ACTIONS(12209), + [anon_sym_BSLASHGLSname] = ACTIONS(12209), + [anon_sym_BSLASHglssymbol] = ACTIONS(12209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12209), + [anon_sym_BSLASHglsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12209), + [anon_sym_BSLASHglsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12209), + [anon_sym_BSLASHglsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12209), + [anon_sym_BSLASHglsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12209), + [anon_sym_BSLASHglsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12209), + [anon_sym_BSLASHnewacronym] = ACTIONS(12209), + [anon_sym_BSLASHacrshort] = ACTIONS(12209), + [anon_sym_BSLASHAcrshort] = ACTIONS(12209), + [anon_sym_BSLASHACRshort] = ACTIONS(12209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12209), + [anon_sym_BSLASHacrlong] = ACTIONS(12209), + [anon_sym_BSLASHAcrlong] = ACTIONS(12209), + [anon_sym_BSLASHACRlong] = ACTIONS(12209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12209), + [anon_sym_BSLASHacrfull] = ACTIONS(12209), + [anon_sym_BSLASHAcrfull] = ACTIONS(12209), + [anon_sym_BSLASHACRfull] = ACTIONS(12209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12209), + [anon_sym_BSLASHacs] = ACTIONS(12209), + [anon_sym_BSLASHAcs] = ACTIONS(12209), + [anon_sym_BSLASHacsp] = ACTIONS(12209), + [anon_sym_BSLASHAcsp] = ACTIONS(12209), + [anon_sym_BSLASHacl] = ACTIONS(12209), + [anon_sym_BSLASHAcl] = ACTIONS(12209), + [anon_sym_BSLASHaclp] = ACTIONS(12209), + [anon_sym_BSLASHAclp] = ACTIONS(12209), + [anon_sym_BSLASHacf] = ACTIONS(12209), + [anon_sym_BSLASHAcf] = ACTIONS(12209), + [anon_sym_BSLASHacfp] = ACTIONS(12209), + [anon_sym_BSLASHAcfp] = ACTIONS(12209), + [anon_sym_BSLASHac] = ACTIONS(12209), + [anon_sym_BSLASHAc] = ACTIONS(12209), + [anon_sym_BSLASHacp] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12209), + [anon_sym_BSLASHcolor] = ACTIONS(12209), + [anon_sym_BSLASHcolorbox] = ACTIONS(12209), + [anon_sym_BSLASHtextcolor] = ACTIONS(12209), + [anon_sym_BSLASHpagecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12209), + }, + [791] = { + [sym_generic_command_name] = ACTIONS(12197), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12197), + [aux_sym_chapter_token1] = ACTIONS(12197), + [aux_sym_section_token1] = ACTIONS(12197), + [aux_sym_subsection_token1] = ACTIONS(12197), + [aux_sym_subsubsection_token1] = ACTIONS(12197), + [aux_sym_paragraph_token1] = ACTIONS(12197), + [aux_sym_subparagraph_token1] = ACTIONS(12197), + [anon_sym_BSLASHitem] = ACTIONS(12197), + [anon_sym_LBRACK] = ACTIONS(12195), + [anon_sym_LBRACE] = ACTIONS(12195), + [anon_sym_LPAREN] = ACTIONS(12195), + [anon_sym_COMMA] = ACTIONS(12195), + [anon_sym_EQ] = ACTIONS(12195), + [sym_word] = ACTIONS(12195), + [sym_param] = ACTIONS(12195), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12195), + [anon_sym_DOLLAR] = ACTIONS(12197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12195), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12195), + [anon_sym_BSLASHbegin] = ACTIONS(12197), + [anon_sym_BSLASHcaption] = ACTIONS(12197), + [anon_sym_BSLASHcite] = ACTIONS(12197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCite] = ACTIONS(12197), + [anon_sym_BSLASHnocite] = ACTIONS(12197), + [anon_sym_BSLASHcitet] = ACTIONS(12197), + [anon_sym_BSLASHcitep] = ACTIONS(12197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteauthor] = ACTIONS(12197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitetitle] = ACTIONS(12197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteyear] = ACTIONS(12197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitedate] = ACTIONS(12197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteurl] = ACTIONS(12197), + [anon_sym_BSLASHfullcite] = ACTIONS(12197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12197), + [anon_sym_BSLASHcitealt] = ACTIONS(12197), + [anon_sym_BSLASHcitealp] = ACTIONS(12197), + [anon_sym_BSLASHcitetext] = ACTIONS(12197), + [anon_sym_BSLASHparencite] = ACTIONS(12197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHParencite] = ACTIONS(12197), + [anon_sym_BSLASHfootcite] = ACTIONS(12197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12197), + [anon_sym_BSLASHtextcite] = ACTIONS(12197), + [anon_sym_BSLASHTextcite] = ACTIONS(12197), + [anon_sym_BSLASHsmartcite] = ACTIONS(12197), + [anon_sym_BSLASHSmartcite] = ACTIONS(12197), + [anon_sym_BSLASHsupercite] = ACTIONS(12197), + [anon_sym_BSLASHautocite] = ACTIONS(12197), + [anon_sym_BSLASHAutocite] = ACTIONS(12197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHvolcite] = ACTIONS(12197), + [anon_sym_BSLASHVolcite] = ACTIONS(12197), + [anon_sym_BSLASHpvolcite] = ACTIONS(12197), + [anon_sym_BSLASHPvolcite] = ACTIONS(12197), + [anon_sym_BSLASHfvolcite] = ACTIONS(12197), + [anon_sym_BSLASHftvolcite] = ACTIONS(12197), + [anon_sym_BSLASHsvolcite] = ACTIONS(12197), + [anon_sym_BSLASHSvolcite] = ACTIONS(12197), + [anon_sym_BSLASHtvolcite] = ACTIONS(12197), + [anon_sym_BSLASHTvolcite] = ACTIONS(12197), + [anon_sym_BSLASHavolcite] = ACTIONS(12197), + [anon_sym_BSLASHAvolcite] = ACTIONS(12197), + [anon_sym_BSLASHnotecite] = ACTIONS(12197), + [anon_sym_BSLASHpnotecite] = ACTIONS(12197), + [anon_sym_BSLASHPnotecite] = ACTIONS(12197), + [anon_sym_BSLASHfnotecite] = ACTIONS(12197), + [anon_sym_BSLASHusepackage] = ACTIONS(12197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12197), + [anon_sym_BSLASHinclude] = ACTIONS(12197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12197), + [anon_sym_BSLASHinput] = ACTIONS(12197), + [anon_sym_BSLASHsubfile] = ACTIONS(12197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12197), + [anon_sym_BSLASHbibliography] = ACTIONS(12197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12197), + [anon_sym_BSLASHincludesvg] = ACTIONS(12197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12197), + [anon_sym_BSLASHimport] = ACTIONS(12197), + [anon_sym_BSLASHsubimport] = ACTIONS(12197), + [anon_sym_BSLASHinputfrom] = ACTIONS(12197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12197), + [anon_sym_BSLASHincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHlabel] = ACTIONS(12197), + [anon_sym_BSLASHref] = ACTIONS(12197), + [anon_sym_BSLASHvref] = ACTIONS(12197), + [anon_sym_BSLASHVref] = ACTIONS(12197), + [anon_sym_BSLASHautoref] = ACTIONS(12197), + [anon_sym_BSLASHpageref] = ACTIONS(12197), + [anon_sym_BSLASHcref] = ACTIONS(12197), + [anon_sym_BSLASHCref] = ACTIONS(12197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnameCref] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHlabelcref] = ACTIONS(12197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12197), + [anon_sym_BSLASHeqref] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange] = ACTIONS(12197), + [anon_sym_BSLASHCrefrange] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewlabel] = ACTIONS(12197), + [anon_sym_BSLASHnewcommand] = ACTIONS(12197), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12197), + [anon_sym_BSLASHgls] = ACTIONS(12197), + [anon_sym_BSLASHGls] = ACTIONS(12197), + [anon_sym_BSLASHGLS] = ACTIONS(12197), + [anon_sym_BSLASHglspl] = ACTIONS(12197), + [anon_sym_BSLASHGlspl] = ACTIONS(12197), + [anon_sym_BSLASHGLSpl] = ACTIONS(12197), + [anon_sym_BSLASHglsdisp] = ACTIONS(12197), + [anon_sym_BSLASHglslink] = ACTIONS(12197), + [anon_sym_BSLASHglstext] = ACTIONS(12197), + [anon_sym_BSLASHGlstext] = ACTIONS(12197), + [anon_sym_BSLASHGLStext] = ACTIONS(12197), + [anon_sym_BSLASHglsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12197), + [anon_sym_BSLASHglsplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSplural] = ACTIONS(12197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHglsname] = ACTIONS(12197), + [anon_sym_BSLASHGlsname] = ACTIONS(12197), + [anon_sym_BSLASHGLSname] = ACTIONS(12197), + [anon_sym_BSLASHglssymbol] = ACTIONS(12197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12197), + [anon_sym_BSLASHglsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12197), + [anon_sym_BSLASHglsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12197), + [anon_sym_BSLASHglsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12197), + [anon_sym_BSLASHglsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12197), + [anon_sym_BSLASHglsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12197), + [anon_sym_BSLASHnewacronym] = ACTIONS(12197), + [anon_sym_BSLASHacrshort] = ACTIONS(12197), + [anon_sym_BSLASHAcrshort] = ACTIONS(12197), + [anon_sym_BSLASHACRshort] = ACTIONS(12197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12197), + [anon_sym_BSLASHacrlong] = ACTIONS(12197), + [anon_sym_BSLASHAcrlong] = ACTIONS(12197), + [anon_sym_BSLASHACRlong] = ACTIONS(12197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12197), + [anon_sym_BSLASHacrfull] = ACTIONS(12197), + [anon_sym_BSLASHAcrfull] = ACTIONS(12197), + [anon_sym_BSLASHACRfull] = ACTIONS(12197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12197), + [anon_sym_BSLASHacs] = ACTIONS(12197), + [anon_sym_BSLASHAcs] = ACTIONS(12197), + [anon_sym_BSLASHacsp] = ACTIONS(12197), + [anon_sym_BSLASHAcsp] = ACTIONS(12197), + [anon_sym_BSLASHacl] = ACTIONS(12197), + [anon_sym_BSLASHAcl] = ACTIONS(12197), + [anon_sym_BSLASHaclp] = ACTIONS(12197), + [anon_sym_BSLASHAclp] = ACTIONS(12197), + [anon_sym_BSLASHacf] = ACTIONS(12197), + [anon_sym_BSLASHAcf] = ACTIONS(12197), + [anon_sym_BSLASHacfp] = ACTIONS(12197), + [anon_sym_BSLASHAcfp] = ACTIONS(12197), + [anon_sym_BSLASHac] = ACTIONS(12197), + [anon_sym_BSLASHAc] = ACTIONS(12197), + [anon_sym_BSLASHacp] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12197), + [anon_sym_BSLASHcolor] = ACTIONS(12197), + [anon_sym_BSLASHcolorbox] = ACTIONS(12197), + [anon_sym_BSLASHtextcolor] = ACTIONS(12197), + [anon_sym_BSLASHpagecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12197), + }, + [792] = { + [sym_generic_command_name] = ACTIONS(12177), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12177), + [aux_sym_chapter_token1] = ACTIONS(12177), + [aux_sym_section_token1] = ACTIONS(12177), + [aux_sym_subsection_token1] = ACTIONS(12177), + [aux_sym_subsubsection_token1] = ACTIONS(12177), + [aux_sym_paragraph_token1] = ACTIONS(12177), + [aux_sym_subparagraph_token1] = ACTIONS(12177), + [anon_sym_BSLASHitem] = ACTIONS(12177), + [anon_sym_LBRACK] = ACTIONS(12175), + [anon_sym_LBRACE] = ACTIONS(12175), + [anon_sym_LPAREN] = ACTIONS(12175), + [anon_sym_COMMA] = ACTIONS(12175), + [anon_sym_EQ] = ACTIONS(12175), + [sym_word] = ACTIONS(12175), + [sym_param] = ACTIONS(12175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12175), + [anon_sym_DOLLAR] = ACTIONS(12177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12175), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12175), + [anon_sym_BSLASHbegin] = ACTIONS(12177), + [anon_sym_BSLASHcaption] = ACTIONS(12177), + [anon_sym_BSLASHcite] = ACTIONS(12177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCite] = ACTIONS(12177), + [anon_sym_BSLASHnocite] = ACTIONS(12177), + [anon_sym_BSLASHcitet] = ACTIONS(12177), + [anon_sym_BSLASHcitep] = ACTIONS(12177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteauthor] = ACTIONS(12177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitetitle] = ACTIONS(12177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteyear] = ACTIONS(12177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitedate] = ACTIONS(12177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteurl] = ACTIONS(12177), + [anon_sym_BSLASHfullcite] = ACTIONS(12177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12177), + [anon_sym_BSLASHcitealt] = ACTIONS(12177), + [anon_sym_BSLASHcitealp] = ACTIONS(12177), + [anon_sym_BSLASHcitetext] = ACTIONS(12177), + [anon_sym_BSLASHparencite] = ACTIONS(12177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHParencite] = ACTIONS(12177), + [anon_sym_BSLASHfootcite] = ACTIONS(12177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12177), + [anon_sym_BSLASHtextcite] = ACTIONS(12177), + [anon_sym_BSLASHTextcite] = ACTIONS(12177), + [anon_sym_BSLASHsmartcite] = ACTIONS(12177), + [anon_sym_BSLASHSmartcite] = ACTIONS(12177), + [anon_sym_BSLASHsupercite] = ACTIONS(12177), + [anon_sym_BSLASHautocite] = ACTIONS(12177), + [anon_sym_BSLASHAutocite] = ACTIONS(12177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHvolcite] = ACTIONS(12177), + [anon_sym_BSLASHVolcite] = ACTIONS(12177), + [anon_sym_BSLASHpvolcite] = ACTIONS(12177), + [anon_sym_BSLASHPvolcite] = ACTIONS(12177), + [anon_sym_BSLASHfvolcite] = ACTIONS(12177), + [anon_sym_BSLASHftvolcite] = ACTIONS(12177), + [anon_sym_BSLASHsvolcite] = ACTIONS(12177), + [anon_sym_BSLASHSvolcite] = ACTIONS(12177), + [anon_sym_BSLASHtvolcite] = ACTIONS(12177), + [anon_sym_BSLASHTvolcite] = ACTIONS(12177), + [anon_sym_BSLASHavolcite] = ACTIONS(12177), + [anon_sym_BSLASHAvolcite] = ACTIONS(12177), + [anon_sym_BSLASHnotecite] = ACTIONS(12177), + [anon_sym_BSLASHpnotecite] = ACTIONS(12177), + [anon_sym_BSLASHPnotecite] = ACTIONS(12177), + [anon_sym_BSLASHfnotecite] = ACTIONS(12177), + [anon_sym_BSLASHusepackage] = ACTIONS(12177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12177), + [anon_sym_BSLASHinclude] = ACTIONS(12177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12177), + [anon_sym_BSLASHinput] = ACTIONS(12177), + [anon_sym_BSLASHsubfile] = ACTIONS(12177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12177), + [anon_sym_BSLASHbibliography] = ACTIONS(12177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12177), + [anon_sym_BSLASHincludesvg] = ACTIONS(12177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12177), + [anon_sym_BSLASHimport] = ACTIONS(12177), + [anon_sym_BSLASHsubimport] = ACTIONS(12177), + [anon_sym_BSLASHinputfrom] = ACTIONS(12177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12177), + [anon_sym_BSLASHincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHlabel] = ACTIONS(12177), + [anon_sym_BSLASHref] = ACTIONS(12177), + [anon_sym_BSLASHvref] = ACTIONS(12177), + [anon_sym_BSLASHVref] = ACTIONS(12177), + [anon_sym_BSLASHautoref] = ACTIONS(12177), + [anon_sym_BSLASHpageref] = ACTIONS(12177), + [anon_sym_BSLASHcref] = ACTIONS(12177), + [anon_sym_BSLASHCref] = ACTIONS(12177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnameCref] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHlabelcref] = ACTIONS(12177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12177), + [anon_sym_BSLASHeqref] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange] = ACTIONS(12177), + [anon_sym_BSLASHCrefrange] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewlabel] = ACTIONS(12177), + [anon_sym_BSLASHnewcommand] = ACTIONS(12177), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12177), + [anon_sym_BSLASHgls] = ACTIONS(12177), + [anon_sym_BSLASHGls] = ACTIONS(12177), + [anon_sym_BSLASHGLS] = ACTIONS(12177), + [anon_sym_BSLASHglspl] = ACTIONS(12177), + [anon_sym_BSLASHGlspl] = ACTIONS(12177), + [anon_sym_BSLASHGLSpl] = ACTIONS(12177), + [anon_sym_BSLASHglsdisp] = ACTIONS(12177), + [anon_sym_BSLASHglslink] = ACTIONS(12177), + [anon_sym_BSLASHglstext] = ACTIONS(12177), + [anon_sym_BSLASHGlstext] = ACTIONS(12177), + [anon_sym_BSLASHGLStext] = ACTIONS(12177), + [anon_sym_BSLASHglsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12177), + [anon_sym_BSLASHglsplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSplural] = ACTIONS(12177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHglsname] = ACTIONS(12177), + [anon_sym_BSLASHGlsname] = ACTIONS(12177), + [anon_sym_BSLASHGLSname] = ACTIONS(12177), + [anon_sym_BSLASHglssymbol] = ACTIONS(12177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12177), + [anon_sym_BSLASHglsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12177), + [anon_sym_BSLASHglsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12177), + [anon_sym_BSLASHglsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12177), + [anon_sym_BSLASHglsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12177), + [anon_sym_BSLASHglsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12177), + [anon_sym_BSLASHnewacronym] = ACTIONS(12177), + [anon_sym_BSLASHacrshort] = ACTIONS(12177), + [anon_sym_BSLASHAcrshort] = ACTIONS(12177), + [anon_sym_BSLASHACRshort] = ACTIONS(12177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12177), + [anon_sym_BSLASHacrlong] = ACTIONS(12177), + [anon_sym_BSLASHAcrlong] = ACTIONS(12177), + [anon_sym_BSLASHACRlong] = ACTIONS(12177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12177), + [anon_sym_BSLASHacrfull] = ACTIONS(12177), + [anon_sym_BSLASHAcrfull] = ACTIONS(12177), + [anon_sym_BSLASHACRfull] = ACTIONS(12177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12177), + [anon_sym_BSLASHacs] = ACTIONS(12177), + [anon_sym_BSLASHAcs] = ACTIONS(12177), + [anon_sym_BSLASHacsp] = ACTIONS(12177), + [anon_sym_BSLASHAcsp] = ACTIONS(12177), + [anon_sym_BSLASHacl] = ACTIONS(12177), + [anon_sym_BSLASHAcl] = ACTIONS(12177), + [anon_sym_BSLASHaclp] = ACTIONS(12177), + [anon_sym_BSLASHAclp] = ACTIONS(12177), + [anon_sym_BSLASHacf] = ACTIONS(12177), + [anon_sym_BSLASHAcf] = ACTIONS(12177), + [anon_sym_BSLASHacfp] = ACTIONS(12177), + [anon_sym_BSLASHAcfp] = ACTIONS(12177), + [anon_sym_BSLASHac] = ACTIONS(12177), + [anon_sym_BSLASHAc] = ACTIONS(12177), + [anon_sym_BSLASHacp] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12177), + [anon_sym_BSLASHcolor] = ACTIONS(12177), + [anon_sym_BSLASHcolorbox] = ACTIONS(12177), + [anon_sym_BSLASHtextcolor] = ACTIONS(12177), + [anon_sym_BSLASHpagecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12177), + }, + [793] = { + [sym_generic_command_name] = ACTIONS(12231), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12231), + [aux_sym_chapter_token1] = ACTIONS(12231), + [aux_sym_section_token1] = ACTIONS(12231), + [aux_sym_subsection_token1] = ACTIONS(12231), + [aux_sym_subsubsection_token1] = ACTIONS(12231), + [aux_sym_paragraph_token1] = ACTIONS(12231), + [aux_sym_subparagraph_token1] = ACTIONS(12231), + [anon_sym_BSLASHitem] = ACTIONS(12231), + [anon_sym_LBRACK] = ACTIONS(12229), + [anon_sym_LBRACE] = ACTIONS(12229), + [anon_sym_LPAREN] = ACTIONS(12229), + [anon_sym_COMMA] = ACTIONS(12229), + [anon_sym_EQ] = ACTIONS(12229), + [sym_word] = ACTIONS(12229), + [sym_param] = ACTIONS(12229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12229), + [anon_sym_DOLLAR] = ACTIONS(12231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12229), + [anon_sym_BSLASHbegin] = ACTIONS(12231), + [anon_sym_BSLASHend] = ACTIONS(12231), + [anon_sym_BSLASHcaption] = ACTIONS(12231), + [anon_sym_BSLASHcite] = ACTIONS(12231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCite] = ACTIONS(12231), + [anon_sym_BSLASHnocite] = ACTIONS(12231), + [anon_sym_BSLASHcitet] = ACTIONS(12231), + [anon_sym_BSLASHcitep] = ACTIONS(12231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteauthor] = ACTIONS(12231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitetitle] = ACTIONS(12231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteyear] = ACTIONS(12231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitedate] = ACTIONS(12231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteurl] = ACTIONS(12231), + [anon_sym_BSLASHfullcite] = ACTIONS(12231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12231), + [anon_sym_BSLASHcitealt] = ACTIONS(12231), + [anon_sym_BSLASHcitealp] = ACTIONS(12231), + [anon_sym_BSLASHcitetext] = ACTIONS(12231), + [anon_sym_BSLASHparencite] = ACTIONS(12231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHParencite] = ACTIONS(12231), + [anon_sym_BSLASHfootcite] = ACTIONS(12231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12231), + [anon_sym_BSLASHtextcite] = ACTIONS(12231), + [anon_sym_BSLASHTextcite] = ACTIONS(12231), + [anon_sym_BSLASHsmartcite] = ACTIONS(12231), + [anon_sym_BSLASHSmartcite] = ACTIONS(12231), + [anon_sym_BSLASHsupercite] = ACTIONS(12231), + [anon_sym_BSLASHautocite] = ACTIONS(12231), + [anon_sym_BSLASHAutocite] = ACTIONS(12231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHvolcite] = ACTIONS(12231), + [anon_sym_BSLASHVolcite] = ACTIONS(12231), + [anon_sym_BSLASHpvolcite] = ACTIONS(12231), + [anon_sym_BSLASHPvolcite] = ACTIONS(12231), + [anon_sym_BSLASHfvolcite] = ACTIONS(12231), + [anon_sym_BSLASHftvolcite] = ACTIONS(12231), + [anon_sym_BSLASHsvolcite] = ACTIONS(12231), + [anon_sym_BSLASHSvolcite] = ACTIONS(12231), + [anon_sym_BSLASHtvolcite] = ACTIONS(12231), + [anon_sym_BSLASHTvolcite] = ACTIONS(12231), + [anon_sym_BSLASHavolcite] = ACTIONS(12231), + [anon_sym_BSLASHAvolcite] = ACTIONS(12231), + [anon_sym_BSLASHnotecite] = ACTIONS(12231), + [anon_sym_BSLASHpnotecite] = ACTIONS(12231), + [anon_sym_BSLASHPnotecite] = ACTIONS(12231), + [anon_sym_BSLASHfnotecite] = ACTIONS(12231), + [anon_sym_BSLASHusepackage] = ACTIONS(12231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12231), + [anon_sym_BSLASHinclude] = ACTIONS(12231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12231), + [anon_sym_BSLASHinput] = ACTIONS(12231), + [anon_sym_BSLASHsubfile] = ACTIONS(12231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12231), + [anon_sym_BSLASHbibliography] = ACTIONS(12231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12231), + [anon_sym_BSLASHincludesvg] = ACTIONS(12231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12231), + [anon_sym_BSLASHimport] = ACTIONS(12231), + [anon_sym_BSLASHsubimport] = ACTIONS(12231), + [anon_sym_BSLASHinputfrom] = ACTIONS(12231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12231), + [anon_sym_BSLASHincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHlabel] = ACTIONS(12231), + [anon_sym_BSLASHref] = ACTIONS(12231), + [anon_sym_BSLASHvref] = ACTIONS(12231), + [anon_sym_BSLASHVref] = ACTIONS(12231), + [anon_sym_BSLASHautoref] = ACTIONS(12231), + [anon_sym_BSLASHpageref] = ACTIONS(12231), + [anon_sym_BSLASHcref] = ACTIONS(12231), + [anon_sym_BSLASHCref] = ACTIONS(12231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnameCref] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHlabelcref] = ACTIONS(12231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12231), + [anon_sym_BSLASHeqref] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange] = ACTIONS(12231), + [anon_sym_BSLASHCrefrange] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewlabel] = ACTIONS(12231), + [anon_sym_BSLASHnewcommand] = ACTIONS(12231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12231), + [anon_sym_BSLASHgls] = ACTIONS(12231), + [anon_sym_BSLASHGls] = ACTIONS(12231), + [anon_sym_BSLASHGLS] = ACTIONS(12231), + [anon_sym_BSLASHglspl] = ACTIONS(12231), + [anon_sym_BSLASHGlspl] = ACTIONS(12231), + [anon_sym_BSLASHGLSpl] = ACTIONS(12231), + [anon_sym_BSLASHglsdisp] = ACTIONS(12231), + [anon_sym_BSLASHglslink] = ACTIONS(12231), + [anon_sym_BSLASHglstext] = ACTIONS(12231), + [anon_sym_BSLASHGlstext] = ACTIONS(12231), + [anon_sym_BSLASHGLStext] = ACTIONS(12231), + [anon_sym_BSLASHglsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12231), + [anon_sym_BSLASHglsplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSplural] = ACTIONS(12231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHglsname] = ACTIONS(12231), + [anon_sym_BSLASHGlsname] = ACTIONS(12231), + [anon_sym_BSLASHGLSname] = ACTIONS(12231), + [anon_sym_BSLASHglssymbol] = ACTIONS(12231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12231), + [anon_sym_BSLASHglsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12231), + [anon_sym_BSLASHglsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12231), + [anon_sym_BSLASHglsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12231), + [anon_sym_BSLASHglsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12231), + [anon_sym_BSLASHglsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12231), + [anon_sym_BSLASHnewacronym] = ACTIONS(12231), + [anon_sym_BSLASHacrshort] = ACTIONS(12231), + [anon_sym_BSLASHAcrshort] = ACTIONS(12231), + [anon_sym_BSLASHACRshort] = ACTIONS(12231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12231), + [anon_sym_BSLASHacrlong] = ACTIONS(12231), + [anon_sym_BSLASHAcrlong] = ACTIONS(12231), + [anon_sym_BSLASHACRlong] = ACTIONS(12231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12231), + [anon_sym_BSLASHacrfull] = ACTIONS(12231), + [anon_sym_BSLASHAcrfull] = ACTIONS(12231), + [anon_sym_BSLASHACRfull] = ACTIONS(12231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12231), + [anon_sym_BSLASHacs] = ACTIONS(12231), + [anon_sym_BSLASHAcs] = ACTIONS(12231), + [anon_sym_BSLASHacsp] = ACTIONS(12231), + [anon_sym_BSLASHAcsp] = ACTIONS(12231), + [anon_sym_BSLASHacl] = ACTIONS(12231), + [anon_sym_BSLASHAcl] = ACTIONS(12231), + [anon_sym_BSLASHaclp] = ACTIONS(12231), + [anon_sym_BSLASHAclp] = ACTIONS(12231), + [anon_sym_BSLASHacf] = ACTIONS(12231), + [anon_sym_BSLASHAcf] = ACTIONS(12231), + [anon_sym_BSLASHacfp] = ACTIONS(12231), + [anon_sym_BSLASHAcfp] = ACTIONS(12231), + [anon_sym_BSLASHac] = ACTIONS(12231), + [anon_sym_BSLASHAc] = ACTIONS(12231), + [anon_sym_BSLASHacp] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12231), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12231), + [anon_sym_BSLASHcolor] = ACTIONS(12231), + [anon_sym_BSLASHcolorbox] = ACTIONS(12231), + [anon_sym_BSLASHtextcolor] = ACTIONS(12231), + [anon_sym_BSLASHpagecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12231), + }, + [794] = { + [sym_generic_command_name] = ACTIONS(12365), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12365), + [aux_sym_chapter_token1] = ACTIONS(12365), + [aux_sym_section_token1] = ACTIONS(12365), + [aux_sym_subsection_token1] = ACTIONS(12365), + [aux_sym_subsubsection_token1] = ACTIONS(12365), + [aux_sym_paragraph_token1] = ACTIONS(12365), + [aux_sym_subparagraph_token1] = ACTIONS(12365), + [anon_sym_BSLASHitem] = ACTIONS(12365), + [anon_sym_LBRACK] = ACTIONS(12363), + [anon_sym_LBRACE] = ACTIONS(12363), + [anon_sym_LPAREN] = ACTIONS(12363), + [anon_sym_COMMA] = ACTIONS(12363), + [anon_sym_EQ] = ACTIONS(12363), + [sym_word] = ACTIONS(12363), + [sym_param] = ACTIONS(12363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12363), + [anon_sym_DOLLAR] = ACTIONS(12365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12363), + [anon_sym_BSLASHbegin] = ACTIONS(12365), + [anon_sym_BSLASHend] = ACTIONS(12365), + [anon_sym_BSLASHcaption] = ACTIONS(12365), + [anon_sym_BSLASHcite] = ACTIONS(12365), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCite] = ACTIONS(12365), + [anon_sym_BSLASHnocite] = ACTIONS(12365), + [anon_sym_BSLASHcitet] = ACTIONS(12365), + [anon_sym_BSLASHcitep] = ACTIONS(12365), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteauthor] = ACTIONS(12365), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12365), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitetitle] = ACTIONS(12365), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteyear] = ACTIONS(12365), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitedate] = ACTIONS(12365), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteurl] = ACTIONS(12365), + [anon_sym_BSLASHfullcite] = ACTIONS(12365), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12365), + [anon_sym_BSLASHcitealt] = ACTIONS(12365), + [anon_sym_BSLASHcitealp] = ACTIONS(12365), + [anon_sym_BSLASHcitetext] = ACTIONS(12365), + [anon_sym_BSLASHparencite] = ACTIONS(12365), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHParencite] = ACTIONS(12365), + [anon_sym_BSLASHfootcite] = ACTIONS(12365), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12365), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12365), + [anon_sym_BSLASHtextcite] = ACTIONS(12365), + [anon_sym_BSLASHTextcite] = ACTIONS(12365), + [anon_sym_BSLASHsmartcite] = ACTIONS(12365), + [anon_sym_BSLASHSmartcite] = ACTIONS(12365), + [anon_sym_BSLASHsupercite] = ACTIONS(12365), + [anon_sym_BSLASHautocite] = ACTIONS(12365), + [anon_sym_BSLASHAutocite] = ACTIONS(12365), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHvolcite] = ACTIONS(12365), + [anon_sym_BSLASHVolcite] = ACTIONS(12365), + [anon_sym_BSLASHpvolcite] = ACTIONS(12365), + [anon_sym_BSLASHPvolcite] = ACTIONS(12365), + [anon_sym_BSLASHfvolcite] = ACTIONS(12365), + [anon_sym_BSLASHftvolcite] = ACTIONS(12365), + [anon_sym_BSLASHsvolcite] = ACTIONS(12365), + [anon_sym_BSLASHSvolcite] = ACTIONS(12365), + [anon_sym_BSLASHtvolcite] = ACTIONS(12365), + [anon_sym_BSLASHTvolcite] = ACTIONS(12365), + [anon_sym_BSLASHavolcite] = ACTIONS(12365), + [anon_sym_BSLASHAvolcite] = ACTIONS(12365), + [anon_sym_BSLASHnotecite] = ACTIONS(12365), + [anon_sym_BSLASHpnotecite] = ACTIONS(12365), + [anon_sym_BSLASHPnotecite] = ACTIONS(12365), + [anon_sym_BSLASHfnotecite] = ACTIONS(12365), + [anon_sym_BSLASHusepackage] = ACTIONS(12365), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12365), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12365), + [anon_sym_BSLASHinclude] = ACTIONS(12365), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12365), + [anon_sym_BSLASHinput] = ACTIONS(12365), + [anon_sym_BSLASHsubfile] = ACTIONS(12365), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12365), + [anon_sym_BSLASHbibliography] = ACTIONS(12365), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12365), + [anon_sym_BSLASHincludesvg] = ACTIONS(12365), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12365), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12365), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12365), + [anon_sym_BSLASHimport] = ACTIONS(12365), + [anon_sym_BSLASHsubimport] = ACTIONS(12365), + [anon_sym_BSLASHinputfrom] = ACTIONS(12365), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12365), + [anon_sym_BSLASHincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHlabel] = ACTIONS(12365), + [anon_sym_BSLASHref] = ACTIONS(12365), + [anon_sym_BSLASHvref] = ACTIONS(12365), + [anon_sym_BSLASHVref] = ACTIONS(12365), + [anon_sym_BSLASHautoref] = ACTIONS(12365), + [anon_sym_BSLASHpageref] = ACTIONS(12365), + [anon_sym_BSLASHcref] = ACTIONS(12365), + [anon_sym_BSLASHCref] = ACTIONS(12365), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnameCref] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHlabelcref] = ACTIONS(12365), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12365), + [anon_sym_BSLASHeqref] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange] = ACTIONS(12365), + [anon_sym_BSLASHCrefrange] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewlabel] = ACTIONS(12365), + [anon_sym_BSLASHnewcommand] = ACTIONS(12365), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12365), + [anon_sym_BSLASHgls] = ACTIONS(12365), + [anon_sym_BSLASHGls] = ACTIONS(12365), + [anon_sym_BSLASHGLS] = ACTIONS(12365), + [anon_sym_BSLASHglspl] = ACTIONS(12365), + [anon_sym_BSLASHGlspl] = ACTIONS(12365), + [anon_sym_BSLASHGLSpl] = ACTIONS(12365), + [anon_sym_BSLASHglsdisp] = ACTIONS(12365), + [anon_sym_BSLASHglslink] = ACTIONS(12365), + [anon_sym_BSLASHglstext] = ACTIONS(12365), + [anon_sym_BSLASHGlstext] = ACTIONS(12365), + [anon_sym_BSLASHGLStext] = ACTIONS(12365), + [anon_sym_BSLASHglsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12365), + [anon_sym_BSLASHglsplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSplural] = ACTIONS(12365), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHglsname] = ACTIONS(12365), + [anon_sym_BSLASHGlsname] = ACTIONS(12365), + [anon_sym_BSLASHGLSname] = ACTIONS(12365), + [anon_sym_BSLASHglssymbol] = ACTIONS(12365), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12365), + [anon_sym_BSLASHglsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12365), + [anon_sym_BSLASHglsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12365), + [anon_sym_BSLASHglsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12365), + [anon_sym_BSLASHglsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12365), + [anon_sym_BSLASHglsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12365), + [anon_sym_BSLASHnewacronym] = ACTIONS(12365), + [anon_sym_BSLASHacrshort] = ACTIONS(12365), + [anon_sym_BSLASHAcrshort] = ACTIONS(12365), + [anon_sym_BSLASHACRshort] = ACTIONS(12365), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12365), + [anon_sym_BSLASHacrlong] = ACTIONS(12365), + [anon_sym_BSLASHAcrlong] = ACTIONS(12365), + [anon_sym_BSLASHACRlong] = ACTIONS(12365), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12365), + [anon_sym_BSLASHacrfull] = ACTIONS(12365), + [anon_sym_BSLASHAcrfull] = ACTIONS(12365), + [anon_sym_BSLASHACRfull] = ACTIONS(12365), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12365), + [anon_sym_BSLASHacs] = ACTIONS(12365), + [anon_sym_BSLASHAcs] = ACTIONS(12365), + [anon_sym_BSLASHacsp] = ACTIONS(12365), + [anon_sym_BSLASHAcsp] = ACTIONS(12365), + [anon_sym_BSLASHacl] = ACTIONS(12365), + [anon_sym_BSLASHAcl] = ACTIONS(12365), + [anon_sym_BSLASHaclp] = ACTIONS(12365), + [anon_sym_BSLASHAclp] = ACTIONS(12365), + [anon_sym_BSLASHacf] = ACTIONS(12365), + [anon_sym_BSLASHAcf] = ACTIONS(12365), + [anon_sym_BSLASHacfp] = ACTIONS(12365), + [anon_sym_BSLASHAcfp] = ACTIONS(12365), + [anon_sym_BSLASHac] = ACTIONS(12365), + [anon_sym_BSLASHAc] = ACTIONS(12365), + [anon_sym_BSLASHacp] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12365), + [anon_sym_BSLASHcolor] = ACTIONS(12365), + [anon_sym_BSLASHcolorbox] = ACTIONS(12365), + [anon_sym_BSLASHtextcolor] = ACTIONS(12365), + [anon_sym_BSLASHpagecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12365), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12365), + }, + [795] = { + [sym_generic_command_name] = ACTIONS(12385), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12385), + [aux_sym_chapter_token1] = ACTIONS(12385), + [aux_sym_section_token1] = ACTIONS(12385), + [aux_sym_subsection_token1] = ACTIONS(12385), + [aux_sym_subsubsection_token1] = ACTIONS(12385), + [aux_sym_paragraph_token1] = ACTIONS(12385), + [aux_sym_subparagraph_token1] = ACTIONS(12385), + [anon_sym_BSLASHitem] = ACTIONS(12385), + [anon_sym_LBRACK] = ACTIONS(12383), + [anon_sym_LBRACE] = ACTIONS(12383), + [anon_sym_LPAREN] = ACTIONS(12383), + [anon_sym_COMMA] = ACTIONS(12383), + [anon_sym_EQ] = ACTIONS(12383), + [sym_word] = ACTIONS(12383), + [sym_param] = ACTIONS(12383), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12383), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12383), + [anon_sym_DOLLAR] = ACTIONS(12385), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12383), + [anon_sym_BSLASHbegin] = ACTIONS(12385), + [anon_sym_BSLASHend] = ACTIONS(12385), + [anon_sym_BSLASHcaption] = ACTIONS(12385), + [anon_sym_BSLASHcite] = ACTIONS(12385), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCite] = ACTIONS(12385), + [anon_sym_BSLASHnocite] = ACTIONS(12385), + [anon_sym_BSLASHcitet] = ACTIONS(12385), + [anon_sym_BSLASHcitep] = ACTIONS(12385), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteauthor] = ACTIONS(12385), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12385), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitetitle] = ACTIONS(12385), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteyear] = ACTIONS(12385), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitedate] = ACTIONS(12385), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteurl] = ACTIONS(12385), + [anon_sym_BSLASHfullcite] = ACTIONS(12385), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12385), + [anon_sym_BSLASHcitealt] = ACTIONS(12385), + [anon_sym_BSLASHcitealp] = ACTIONS(12385), + [anon_sym_BSLASHcitetext] = ACTIONS(12385), + [anon_sym_BSLASHparencite] = ACTIONS(12385), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHParencite] = ACTIONS(12385), + [anon_sym_BSLASHfootcite] = ACTIONS(12385), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12385), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12385), + [anon_sym_BSLASHtextcite] = ACTIONS(12385), + [anon_sym_BSLASHTextcite] = ACTIONS(12385), + [anon_sym_BSLASHsmartcite] = ACTIONS(12385), + [anon_sym_BSLASHSmartcite] = ACTIONS(12385), + [anon_sym_BSLASHsupercite] = ACTIONS(12385), + [anon_sym_BSLASHautocite] = ACTIONS(12385), + [anon_sym_BSLASHAutocite] = ACTIONS(12385), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHvolcite] = ACTIONS(12385), + [anon_sym_BSLASHVolcite] = ACTIONS(12385), + [anon_sym_BSLASHpvolcite] = ACTIONS(12385), + [anon_sym_BSLASHPvolcite] = ACTIONS(12385), + [anon_sym_BSLASHfvolcite] = ACTIONS(12385), + [anon_sym_BSLASHftvolcite] = ACTIONS(12385), + [anon_sym_BSLASHsvolcite] = ACTIONS(12385), + [anon_sym_BSLASHSvolcite] = ACTIONS(12385), + [anon_sym_BSLASHtvolcite] = ACTIONS(12385), + [anon_sym_BSLASHTvolcite] = ACTIONS(12385), + [anon_sym_BSLASHavolcite] = ACTIONS(12385), + [anon_sym_BSLASHAvolcite] = ACTIONS(12385), + [anon_sym_BSLASHnotecite] = ACTIONS(12385), + [anon_sym_BSLASHpnotecite] = ACTIONS(12385), + [anon_sym_BSLASHPnotecite] = ACTIONS(12385), + [anon_sym_BSLASHfnotecite] = ACTIONS(12385), + [anon_sym_BSLASHusepackage] = ACTIONS(12385), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12385), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12385), + [anon_sym_BSLASHinclude] = ACTIONS(12385), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12385), + [anon_sym_BSLASHinput] = ACTIONS(12385), + [anon_sym_BSLASHsubfile] = ACTIONS(12385), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12385), + [anon_sym_BSLASHbibliography] = ACTIONS(12385), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12385), + [anon_sym_BSLASHincludesvg] = ACTIONS(12385), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12385), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12385), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12385), + [anon_sym_BSLASHimport] = ACTIONS(12385), + [anon_sym_BSLASHsubimport] = ACTIONS(12385), + [anon_sym_BSLASHinputfrom] = ACTIONS(12385), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12385), + [anon_sym_BSLASHincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHlabel] = ACTIONS(12385), + [anon_sym_BSLASHref] = ACTIONS(12385), + [anon_sym_BSLASHvref] = ACTIONS(12385), + [anon_sym_BSLASHVref] = ACTIONS(12385), + [anon_sym_BSLASHautoref] = ACTIONS(12385), + [anon_sym_BSLASHpageref] = ACTIONS(12385), + [anon_sym_BSLASHcref] = ACTIONS(12385), + [anon_sym_BSLASHCref] = ACTIONS(12385), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnameCref] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHlabelcref] = ACTIONS(12385), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12385), + [anon_sym_BSLASHeqref] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange] = ACTIONS(12385), + [anon_sym_BSLASHCrefrange] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewlabel] = ACTIONS(12385), + [anon_sym_BSLASHnewcommand] = ACTIONS(12385), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12385), + [anon_sym_BSLASHgls] = ACTIONS(12385), + [anon_sym_BSLASHGls] = ACTIONS(12385), + [anon_sym_BSLASHGLS] = ACTIONS(12385), + [anon_sym_BSLASHglspl] = ACTIONS(12385), + [anon_sym_BSLASHGlspl] = ACTIONS(12385), + [anon_sym_BSLASHGLSpl] = ACTIONS(12385), + [anon_sym_BSLASHglsdisp] = ACTIONS(12385), + [anon_sym_BSLASHglslink] = ACTIONS(12385), + [anon_sym_BSLASHglstext] = ACTIONS(12385), + [anon_sym_BSLASHGlstext] = ACTIONS(12385), + [anon_sym_BSLASHGLStext] = ACTIONS(12385), + [anon_sym_BSLASHglsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12385), + [anon_sym_BSLASHglsplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSplural] = ACTIONS(12385), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHglsname] = ACTIONS(12385), + [anon_sym_BSLASHGlsname] = ACTIONS(12385), + [anon_sym_BSLASHGLSname] = ACTIONS(12385), + [anon_sym_BSLASHglssymbol] = ACTIONS(12385), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12385), + [anon_sym_BSLASHglsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12385), + [anon_sym_BSLASHglsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12385), + [anon_sym_BSLASHglsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12385), + [anon_sym_BSLASHglsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12385), + [anon_sym_BSLASHglsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12385), + [anon_sym_BSLASHnewacronym] = ACTIONS(12385), + [anon_sym_BSLASHacrshort] = ACTIONS(12385), + [anon_sym_BSLASHAcrshort] = ACTIONS(12385), + [anon_sym_BSLASHACRshort] = ACTIONS(12385), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12385), + [anon_sym_BSLASHacrlong] = ACTIONS(12385), + [anon_sym_BSLASHAcrlong] = ACTIONS(12385), + [anon_sym_BSLASHACRlong] = ACTIONS(12385), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12385), + [anon_sym_BSLASHacrfull] = ACTIONS(12385), + [anon_sym_BSLASHAcrfull] = ACTIONS(12385), + [anon_sym_BSLASHACRfull] = ACTIONS(12385), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12385), + [anon_sym_BSLASHacs] = ACTIONS(12385), + [anon_sym_BSLASHAcs] = ACTIONS(12385), + [anon_sym_BSLASHacsp] = ACTIONS(12385), + [anon_sym_BSLASHAcsp] = ACTIONS(12385), + [anon_sym_BSLASHacl] = ACTIONS(12385), + [anon_sym_BSLASHAcl] = ACTIONS(12385), + [anon_sym_BSLASHaclp] = ACTIONS(12385), + [anon_sym_BSLASHAclp] = ACTIONS(12385), + [anon_sym_BSLASHacf] = ACTIONS(12385), + [anon_sym_BSLASHAcf] = ACTIONS(12385), + [anon_sym_BSLASHacfp] = ACTIONS(12385), + [anon_sym_BSLASHAcfp] = ACTIONS(12385), + [anon_sym_BSLASHac] = ACTIONS(12385), + [anon_sym_BSLASHAc] = ACTIONS(12385), + [anon_sym_BSLASHacp] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12385), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12385), + [anon_sym_BSLASHcolor] = ACTIONS(12385), + [anon_sym_BSLASHcolorbox] = ACTIONS(12385), + [anon_sym_BSLASHtextcolor] = ACTIONS(12385), + [anon_sym_BSLASHpagecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12385), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12385), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12385), + }, + [796] = { + [sym_generic_command_name] = ACTIONS(12389), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12389), + [aux_sym_chapter_token1] = ACTIONS(12389), + [aux_sym_section_token1] = ACTIONS(12389), + [aux_sym_subsection_token1] = ACTIONS(12389), + [aux_sym_subsubsection_token1] = ACTIONS(12389), + [aux_sym_paragraph_token1] = ACTIONS(12389), + [aux_sym_subparagraph_token1] = ACTIONS(12389), + [anon_sym_BSLASHitem] = ACTIONS(12389), + [anon_sym_LBRACK] = ACTIONS(12387), + [anon_sym_LBRACE] = ACTIONS(12387), + [anon_sym_LPAREN] = ACTIONS(12387), + [anon_sym_COMMA] = ACTIONS(12387), + [anon_sym_EQ] = ACTIONS(12387), + [sym_word] = ACTIONS(12387), + [sym_param] = ACTIONS(12387), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12387), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12387), + [anon_sym_DOLLAR] = ACTIONS(12389), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12387), + [anon_sym_BSLASHbegin] = ACTIONS(12389), + [anon_sym_BSLASHend] = ACTIONS(12389), + [anon_sym_BSLASHcaption] = ACTIONS(12389), + [anon_sym_BSLASHcite] = ACTIONS(12389), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCite] = ACTIONS(12389), + [anon_sym_BSLASHnocite] = ACTIONS(12389), + [anon_sym_BSLASHcitet] = ACTIONS(12389), + [anon_sym_BSLASHcitep] = ACTIONS(12389), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteauthor] = ACTIONS(12389), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12389), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitetitle] = ACTIONS(12389), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteyear] = ACTIONS(12389), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitedate] = ACTIONS(12389), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteurl] = ACTIONS(12389), + [anon_sym_BSLASHfullcite] = ACTIONS(12389), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12389), + [anon_sym_BSLASHcitealt] = ACTIONS(12389), + [anon_sym_BSLASHcitealp] = ACTIONS(12389), + [anon_sym_BSLASHcitetext] = ACTIONS(12389), + [anon_sym_BSLASHparencite] = ACTIONS(12389), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHParencite] = ACTIONS(12389), + [anon_sym_BSLASHfootcite] = ACTIONS(12389), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12389), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12389), + [anon_sym_BSLASHtextcite] = ACTIONS(12389), + [anon_sym_BSLASHTextcite] = ACTIONS(12389), + [anon_sym_BSLASHsmartcite] = ACTIONS(12389), + [anon_sym_BSLASHSmartcite] = ACTIONS(12389), + [anon_sym_BSLASHsupercite] = ACTIONS(12389), + [anon_sym_BSLASHautocite] = ACTIONS(12389), + [anon_sym_BSLASHAutocite] = ACTIONS(12389), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHvolcite] = ACTIONS(12389), + [anon_sym_BSLASHVolcite] = ACTIONS(12389), + [anon_sym_BSLASHpvolcite] = ACTIONS(12389), + [anon_sym_BSLASHPvolcite] = ACTIONS(12389), + [anon_sym_BSLASHfvolcite] = ACTIONS(12389), + [anon_sym_BSLASHftvolcite] = ACTIONS(12389), + [anon_sym_BSLASHsvolcite] = ACTIONS(12389), + [anon_sym_BSLASHSvolcite] = ACTIONS(12389), + [anon_sym_BSLASHtvolcite] = ACTIONS(12389), + [anon_sym_BSLASHTvolcite] = ACTIONS(12389), + [anon_sym_BSLASHavolcite] = ACTIONS(12389), + [anon_sym_BSLASHAvolcite] = ACTIONS(12389), + [anon_sym_BSLASHnotecite] = ACTIONS(12389), + [anon_sym_BSLASHpnotecite] = ACTIONS(12389), + [anon_sym_BSLASHPnotecite] = ACTIONS(12389), + [anon_sym_BSLASHfnotecite] = ACTIONS(12389), + [anon_sym_BSLASHusepackage] = ACTIONS(12389), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12389), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12389), + [anon_sym_BSLASHinclude] = ACTIONS(12389), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12389), + [anon_sym_BSLASHinput] = ACTIONS(12389), + [anon_sym_BSLASHsubfile] = ACTIONS(12389), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12389), + [anon_sym_BSLASHbibliography] = ACTIONS(12389), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12389), + [anon_sym_BSLASHincludesvg] = ACTIONS(12389), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12389), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12389), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12389), + [anon_sym_BSLASHimport] = ACTIONS(12389), + [anon_sym_BSLASHsubimport] = ACTIONS(12389), + [anon_sym_BSLASHinputfrom] = ACTIONS(12389), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12389), + [anon_sym_BSLASHincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHlabel] = ACTIONS(12389), + [anon_sym_BSLASHref] = ACTIONS(12389), + [anon_sym_BSLASHvref] = ACTIONS(12389), + [anon_sym_BSLASHVref] = ACTIONS(12389), + [anon_sym_BSLASHautoref] = ACTIONS(12389), + [anon_sym_BSLASHpageref] = ACTIONS(12389), + [anon_sym_BSLASHcref] = ACTIONS(12389), + [anon_sym_BSLASHCref] = ACTIONS(12389), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnameCref] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHlabelcref] = ACTIONS(12389), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12389), + [anon_sym_BSLASHeqref] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange] = ACTIONS(12389), + [anon_sym_BSLASHCrefrange] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewlabel] = ACTIONS(12389), + [anon_sym_BSLASHnewcommand] = ACTIONS(12389), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12389), + [anon_sym_BSLASHgls] = ACTIONS(12389), + [anon_sym_BSLASHGls] = ACTIONS(12389), + [anon_sym_BSLASHGLS] = ACTIONS(12389), + [anon_sym_BSLASHglspl] = ACTIONS(12389), + [anon_sym_BSLASHGlspl] = ACTIONS(12389), + [anon_sym_BSLASHGLSpl] = ACTIONS(12389), + [anon_sym_BSLASHglsdisp] = ACTIONS(12389), + [anon_sym_BSLASHglslink] = ACTIONS(12389), + [anon_sym_BSLASHglstext] = ACTIONS(12389), + [anon_sym_BSLASHGlstext] = ACTIONS(12389), + [anon_sym_BSLASHGLStext] = ACTIONS(12389), + [anon_sym_BSLASHglsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12389), + [anon_sym_BSLASHglsplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSplural] = ACTIONS(12389), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHglsname] = ACTIONS(12389), + [anon_sym_BSLASHGlsname] = ACTIONS(12389), + [anon_sym_BSLASHGLSname] = ACTIONS(12389), + [anon_sym_BSLASHglssymbol] = ACTIONS(12389), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12389), + [anon_sym_BSLASHglsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12389), + [anon_sym_BSLASHglsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12389), + [anon_sym_BSLASHglsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12389), + [anon_sym_BSLASHglsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12389), + [anon_sym_BSLASHglsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12389), + [anon_sym_BSLASHnewacronym] = ACTIONS(12389), + [anon_sym_BSLASHacrshort] = ACTIONS(12389), + [anon_sym_BSLASHAcrshort] = ACTIONS(12389), + [anon_sym_BSLASHACRshort] = ACTIONS(12389), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12389), + [anon_sym_BSLASHacrlong] = ACTIONS(12389), + [anon_sym_BSLASHAcrlong] = ACTIONS(12389), + [anon_sym_BSLASHACRlong] = ACTIONS(12389), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12389), + [anon_sym_BSLASHacrfull] = ACTIONS(12389), + [anon_sym_BSLASHAcrfull] = ACTIONS(12389), + [anon_sym_BSLASHACRfull] = ACTIONS(12389), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12389), + [anon_sym_BSLASHacs] = ACTIONS(12389), + [anon_sym_BSLASHAcs] = ACTIONS(12389), + [anon_sym_BSLASHacsp] = ACTIONS(12389), + [anon_sym_BSLASHAcsp] = ACTIONS(12389), + [anon_sym_BSLASHacl] = ACTIONS(12389), + [anon_sym_BSLASHAcl] = ACTIONS(12389), + [anon_sym_BSLASHaclp] = ACTIONS(12389), + [anon_sym_BSLASHAclp] = ACTIONS(12389), + [anon_sym_BSLASHacf] = ACTIONS(12389), + [anon_sym_BSLASHAcf] = ACTIONS(12389), + [anon_sym_BSLASHacfp] = ACTIONS(12389), + [anon_sym_BSLASHAcfp] = ACTIONS(12389), + [anon_sym_BSLASHac] = ACTIONS(12389), + [anon_sym_BSLASHAc] = ACTIONS(12389), + [anon_sym_BSLASHacp] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12389), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12389), + [anon_sym_BSLASHcolor] = ACTIONS(12389), + [anon_sym_BSLASHcolorbox] = ACTIONS(12389), + [anon_sym_BSLASHtextcolor] = ACTIONS(12389), + [anon_sym_BSLASHpagecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12389), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12389), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12389), + }, + [797] = { + [sym_generic_command_name] = ACTIONS(12417), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12417), + [aux_sym_chapter_token1] = ACTIONS(12417), + [aux_sym_section_token1] = ACTIONS(12417), + [aux_sym_subsection_token1] = ACTIONS(12417), + [aux_sym_subsubsection_token1] = ACTIONS(12417), + [aux_sym_paragraph_token1] = ACTIONS(12417), + [aux_sym_subparagraph_token1] = ACTIONS(12417), + [anon_sym_BSLASHitem] = ACTIONS(12417), + [anon_sym_LBRACK] = ACTIONS(12415), + [anon_sym_LBRACE] = ACTIONS(12415), + [anon_sym_LPAREN] = ACTIONS(12415), + [anon_sym_COMMA] = ACTIONS(12415), + [anon_sym_EQ] = ACTIONS(12415), + [sym_word] = ACTIONS(12415), + [sym_param] = ACTIONS(12415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12415), + [anon_sym_DOLLAR] = ACTIONS(12417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12415), + [anon_sym_BSLASHbegin] = ACTIONS(12417), + [anon_sym_BSLASHend] = ACTIONS(12417), + [anon_sym_BSLASHcaption] = ACTIONS(12417), + [anon_sym_BSLASHcite] = ACTIONS(12417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCite] = ACTIONS(12417), + [anon_sym_BSLASHnocite] = ACTIONS(12417), + [anon_sym_BSLASHcitet] = ACTIONS(12417), + [anon_sym_BSLASHcitep] = ACTIONS(12417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteauthor] = ACTIONS(12417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitetitle] = ACTIONS(12417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteyear] = ACTIONS(12417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitedate] = ACTIONS(12417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteurl] = ACTIONS(12417), + [anon_sym_BSLASHfullcite] = ACTIONS(12417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12417), + [anon_sym_BSLASHcitealt] = ACTIONS(12417), + [anon_sym_BSLASHcitealp] = ACTIONS(12417), + [anon_sym_BSLASHcitetext] = ACTIONS(12417), + [anon_sym_BSLASHparencite] = ACTIONS(12417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHParencite] = ACTIONS(12417), + [anon_sym_BSLASHfootcite] = ACTIONS(12417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12417), + [anon_sym_BSLASHtextcite] = ACTIONS(12417), + [anon_sym_BSLASHTextcite] = ACTIONS(12417), + [anon_sym_BSLASHsmartcite] = ACTIONS(12417), + [anon_sym_BSLASHSmartcite] = ACTIONS(12417), + [anon_sym_BSLASHsupercite] = ACTIONS(12417), + [anon_sym_BSLASHautocite] = ACTIONS(12417), + [anon_sym_BSLASHAutocite] = ACTIONS(12417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHvolcite] = ACTIONS(12417), + [anon_sym_BSLASHVolcite] = ACTIONS(12417), + [anon_sym_BSLASHpvolcite] = ACTIONS(12417), + [anon_sym_BSLASHPvolcite] = ACTIONS(12417), + [anon_sym_BSLASHfvolcite] = ACTIONS(12417), + [anon_sym_BSLASHftvolcite] = ACTIONS(12417), + [anon_sym_BSLASHsvolcite] = ACTIONS(12417), + [anon_sym_BSLASHSvolcite] = ACTIONS(12417), + [anon_sym_BSLASHtvolcite] = ACTIONS(12417), + [anon_sym_BSLASHTvolcite] = ACTIONS(12417), + [anon_sym_BSLASHavolcite] = ACTIONS(12417), + [anon_sym_BSLASHAvolcite] = ACTIONS(12417), + [anon_sym_BSLASHnotecite] = ACTIONS(12417), + [anon_sym_BSLASHpnotecite] = ACTIONS(12417), + [anon_sym_BSLASHPnotecite] = ACTIONS(12417), + [anon_sym_BSLASHfnotecite] = ACTIONS(12417), + [anon_sym_BSLASHusepackage] = ACTIONS(12417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12417), + [anon_sym_BSLASHinclude] = ACTIONS(12417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12417), + [anon_sym_BSLASHinput] = ACTIONS(12417), + [anon_sym_BSLASHsubfile] = ACTIONS(12417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12417), + [anon_sym_BSLASHbibliography] = ACTIONS(12417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12417), + [anon_sym_BSLASHincludesvg] = ACTIONS(12417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12417), + [anon_sym_BSLASHimport] = ACTIONS(12417), + [anon_sym_BSLASHsubimport] = ACTIONS(12417), + [anon_sym_BSLASHinputfrom] = ACTIONS(12417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12417), + [anon_sym_BSLASHincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHlabel] = ACTIONS(12417), + [anon_sym_BSLASHref] = ACTIONS(12417), + [anon_sym_BSLASHvref] = ACTIONS(12417), + [anon_sym_BSLASHVref] = ACTIONS(12417), + [anon_sym_BSLASHautoref] = ACTIONS(12417), + [anon_sym_BSLASHpageref] = ACTIONS(12417), + [anon_sym_BSLASHcref] = ACTIONS(12417), + [anon_sym_BSLASHCref] = ACTIONS(12417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnameCref] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHlabelcref] = ACTIONS(12417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12417), + [anon_sym_BSLASHeqref] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange] = ACTIONS(12417), + [anon_sym_BSLASHCrefrange] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewlabel] = ACTIONS(12417), + [anon_sym_BSLASHnewcommand] = ACTIONS(12417), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12417), + [anon_sym_BSLASHgls] = ACTIONS(12417), + [anon_sym_BSLASHGls] = ACTIONS(12417), + [anon_sym_BSLASHGLS] = ACTIONS(12417), + [anon_sym_BSLASHglspl] = ACTIONS(12417), + [anon_sym_BSLASHGlspl] = ACTIONS(12417), + [anon_sym_BSLASHGLSpl] = ACTIONS(12417), + [anon_sym_BSLASHglsdisp] = ACTIONS(12417), + [anon_sym_BSLASHglslink] = ACTIONS(12417), + [anon_sym_BSLASHglstext] = ACTIONS(12417), + [anon_sym_BSLASHGlstext] = ACTIONS(12417), + [anon_sym_BSLASHGLStext] = ACTIONS(12417), + [anon_sym_BSLASHglsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12417), + [anon_sym_BSLASHglsplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSplural] = ACTIONS(12417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHglsname] = ACTIONS(12417), + [anon_sym_BSLASHGlsname] = ACTIONS(12417), + [anon_sym_BSLASHGLSname] = ACTIONS(12417), + [anon_sym_BSLASHglssymbol] = ACTIONS(12417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12417), + [anon_sym_BSLASHglsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12417), + [anon_sym_BSLASHglsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12417), + [anon_sym_BSLASHglsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12417), + [anon_sym_BSLASHglsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12417), + [anon_sym_BSLASHglsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12417), + [anon_sym_BSLASHnewacronym] = ACTIONS(12417), + [anon_sym_BSLASHacrshort] = ACTIONS(12417), + [anon_sym_BSLASHAcrshort] = ACTIONS(12417), + [anon_sym_BSLASHACRshort] = ACTIONS(12417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12417), + [anon_sym_BSLASHacrlong] = ACTIONS(12417), + [anon_sym_BSLASHAcrlong] = ACTIONS(12417), + [anon_sym_BSLASHACRlong] = ACTIONS(12417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12417), + [anon_sym_BSLASHacrfull] = ACTIONS(12417), + [anon_sym_BSLASHAcrfull] = ACTIONS(12417), + [anon_sym_BSLASHACRfull] = ACTIONS(12417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12417), + [anon_sym_BSLASHacs] = ACTIONS(12417), + [anon_sym_BSLASHAcs] = ACTIONS(12417), + [anon_sym_BSLASHacsp] = ACTIONS(12417), + [anon_sym_BSLASHAcsp] = ACTIONS(12417), + [anon_sym_BSLASHacl] = ACTIONS(12417), + [anon_sym_BSLASHAcl] = ACTIONS(12417), + [anon_sym_BSLASHaclp] = ACTIONS(12417), + [anon_sym_BSLASHAclp] = ACTIONS(12417), + [anon_sym_BSLASHacf] = ACTIONS(12417), + [anon_sym_BSLASHAcf] = ACTIONS(12417), + [anon_sym_BSLASHacfp] = ACTIONS(12417), + [anon_sym_BSLASHAcfp] = ACTIONS(12417), + [anon_sym_BSLASHac] = ACTIONS(12417), + [anon_sym_BSLASHAc] = ACTIONS(12417), + [anon_sym_BSLASHacp] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12417), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12417), + [anon_sym_BSLASHcolor] = ACTIONS(12417), + [anon_sym_BSLASHcolorbox] = ACTIONS(12417), + [anon_sym_BSLASHtextcolor] = ACTIONS(12417), + [anon_sym_BSLASHpagecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12417), + }, + [798] = { + [sym_generic_command_name] = ACTIONS(12457), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12457), + [aux_sym_chapter_token1] = ACTIONS(12457), + [aux_sym_section_token1] = ACTIONS(12457), + [aux_sym_subsection_token1] = ACTIONS(12457), + [aux_sym_subsubsection_token1] = ACTIONS(12457), + [aux_sym_paragraph_token1] = ACTIONS(12457), + [aux_sym_subparagraph_token1] = ACTIONS(12457), + [anon_sym_BSLASHitem] = ACTIONS(12457), + [anon_sym_LBRACK] = ACTIONS(12455), + [anon_sym_LBRACE] = ACTIONS(12455), + [anon_sym_LPAREN] = ACTIONS(12455), + [anon_sym_COMMA] = ACTIONS(12455), + [anon_sym_EQ] = ACTIONS(12455), + [sym_word] = ACTIONS(12455), + [sym_param] = ACTIONS(12455), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12455), + [anon_sym_DOLLAR] = ACTIONS(12457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12455), + [anon_sym_BSLASHbegin] = ACTIONS(12457), + [anon_sym_BSLASHend] = ACTIONS(12457), + [anon_sym_BSLASHcaption] = ACTIONS(12457), + [anon_sym_BSLASHcite] = ACTIONS(12457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCite] = ACTIONS(12457), + [anon_sym_BSLASHnocite] = ACTIONS(12457), + [anon_sym_BSLASHcitet] = ACTIONS(12457), + [anon_sym_BSLASHcitep] = ACTIONS(12457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteauthor] = ACTIONS(12457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitetitle] = ACTIONS(12457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteyear] = ACTIONS(12457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitedate] = ACTIONS(12457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteurl] = ACTIONS(12457), + [anon_sym_BSLASHfullcite] = ACTIONS(12457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12457), + [anon_sym_BSLASHcitealt] = ACTIONS(12457), + [anon_sym_BSLASHcitealp] = ACTIONS(12457), + [anon_sym_BSLASHcitetext] = ACTIONS(12457), + [anon_sym_BSLASHparencite] = ACTIONS(12457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHParencite] = ACTIONS(12457), + [anon_sym_BSLASHfootcite] = ACTIONS(12457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12457), + [anon_sym_BSLASHtextcite] = ACTIONS(12457), + [anon_sym_BSLASHTextcite] = ACTIONS(12457), + [anon_sym_BSLASHsmartcite] = ACTIONS(12457), + [anon_sym_BSLASHSmartcite] = ACTIONS(12457), + [anon_sym_BSLASHsupercite] = ACTIONS(12457), + [anon_sym_BSLASHautocite] = ACTIONS(12457), + [anon_sym_BSLASHAutocite] = ACTIONS(12457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHvolcite] = ACTIONS(12457), + [anon_sym_BSLASHVolcite] = ACTIONS(12457), + [anon_sym_BSLASHpvolcite] = ACTIONS(12457), + [anon_sym_BSLASHPvolcite] = ACTIONS(12457), + [anon_sym_BSLASHfvolcite] = ACTIONS(12457), + [anon_sym_BSLASHftvolcite] = ACTIONS(12457), + [anon_sym_BSLASHsvolcite] = ACTIONS(12457), + [anon_sym_BSLASHSvolcite] = ACTIONS(12457), + [anon_sym_BSLASHtvolcite] = ACTIONS(12457), + [anon_sym_BSLASHTvolcite] = ACTIONS(12457), + [anon_sym_BSLASHavolcite] = ACTIONS(12457), + [anon_sym_BSLASHAvolcite] = ACTIONS(12457), + [anon_sym_BSLASHnotecite] = ACTIONS(12457), + [anon_sym_BSLASHpnotecite] = ACTIONS(12457), + [anon_sym_BSLASHPnotecite] = ACTIONS(12457), + [anon_sym_BSLASHfnotecite] = ACTIONS(12457), + [anon_sym_BSLASHusepackage] = ACTIONS(12457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12457), + [anon_sym_BSLASHinclude] = ACTIONS(12457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12457), + [anon_sym_BSLASHinput] = ACTIONS(12457), + [anon_sym_BSLASHsubfile] = ACTIONS(12457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12457), + [anon_sym_BSLASHbibliography] = ACTIONS(12457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12457), + [anon_sym_BSLASHincludesvg] = ACTIONS(12457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12457), + [anon_sym_BSLASHimport] = ACTIONS(12457), + [anon_sym_BSLASHsubimport] = ACTIONS(12457), + [anon_sym_BSLASHinputfrom] = ACTIONS(12457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12457), + [anon_sym_BSLASHincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHlabel] = ACTIONS(12457), + [anon_sym_BSLASHref] = ACTIONS(12457), + [anon_sym_BSLASHvref] = ACTIONS(12457), + [anon_sym_BSLASHVref] = ACTIONS(12457), + [anon_sym_BSLASHautoref] = ACTIONS(12457), + [anon_sym_BSLASHpageref] = ACTIONS(12457), + [anon_sym_BSLASHcref] = ACTIONS(12457), + [anon_sym_BSLASHCref] = ACTIONS(12457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnameCref] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHlabelcref] = ACTIONS(12457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12457), + [anon_sym_BSLASHeqref] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange] = ACTIONS(12457), + [anon_sym_BSLASHCrefrange] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewlabel] = ACTIONS(12457), + [anon_sym_BSLASHnewcommand] = ACTIONS(12457), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12457), + [anon_sym_BSLASHgls] = ACTIONS(12457), + [anon_sym_BSLASHGls] = ACTIONS(12457), + [anon_sym_BSLASHGLS] = ACTIONS(12457), + [anon_sym_BSLASHglspl] = ACTIONS(12457), + [anon_sym_BSLASHGlspl] = ACTIONS(12457), + [anon_sym_BSLASHGLSpl] = ACTIONS(12457), + [anon_sym_BSLASHglsdisp] = ACTIONS(12457), + [anon_sym_BSLASHglslink] = ACTIONS(12457), + [anon_sym_BSLASHglstext] = ACTIONS(12457), + [anon_sym_BSLASHGlstext] = ACTIONS(12457), + [anon_sym_BSLASHGLStext] = ACTIONS(12457), + [anon_sym_BSLASHglsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12457), + [anon_sym_BSLASHglsplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSplural] = ACTIONS(12457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHglsname] = ACTIONS(12457), + [anon_sym_BSLASHGlsname] = ACTIONS(12457), + [anon_sym_BSLASHGLSname] = ACTIONS(12457), + [anon_sym_BSLASHglssymbol] = ACTIONS(12457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12457), + [anon_sym_BSLASHglsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12457), + [anon_sym_BSLASHglsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12457), + [anon_sym_BSLASHglsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12457), + [anon_sym_BSLASHglsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12457), + [anon_sym_BSLASHglsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12457), + [anon_sym_BSLASHnewacronym] = ACTIONS(12457), + [anon_sym_BSLASHacrshort] = ACTIONS(12457), + [anon_sym_BSLASHAcrshort] = ACTIONS(12457), + [anon_sym_BSLASHACRshort] = ACTIONS(12457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12457), + [anon_sym_BSLASHacrlong] = ACTIONS(12457), + [anon_sym_BSLASHAcrlong] = ACTIONS(12457), + [anon_sym_BSLASHACRlong] = ACTIONS(12457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12457), + [anon_sym_BSLASHacrfull] = ACTIONS(12457), + [anon_sym_BSLASHAcrfull] = ACTIONS(12457), + [anon_sym_BSLASHACRfull] = ACTIONS(12457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12457), + [anon_sym_BSLASHacs] = ACTIONS(12457), + [anon_sym_BSLASHAcs] = ACTIONS(12457), + [anon_sym_BSLASHacsp] = ACTIONS(12457), + [anon_sym_BSLASHAcsp] = ACTIONS(12457), + [anon_sym_BSLASHacl] = ACTIONS(12457), + [anon_sym_BSLASHAcl] = ACTIONS(12457), + [anon_sym_BSLASHaclp] = ACTIONS(12457), + [anon_sym_BSLASHAclp] = ACTIONS(12457), + [anon_sym_BSLASHacf] = ACTIONS(12457), + [anon_sym_BSLASHAcf] = ACTIONS(12457), + [anon_sym_BSLASHacfp] = ACTIONS(12457), + [anon_sym_BSLASHAcfp] = ACTIONS(12457), + [anon_sym_BSLASHac] = ACTIONS(12457), + [anon_sym_BSLASHAc] = ACTIONS(12457), + [anon_sym_BSLASHacp] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12457), + [anon_sym_BSLASHcolor] = ACTIONS(12457), + [anon_sym_BSLASHcolorbox] = ACTIONS(12457), + [anon_sym_BSLASHtextcolor] = ACTIONS(12457), + [anon_sym_BSLASHpagecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12457), + }, + [799] = { + [sym_generic_command_name] = ACTIONS(12473), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12473), + [aux_sym_chapter_token1] = ACTIONS(12473), + [aux_sym_section_token1] = ACTIONS(12473), + [aux_sym_subsection_token1] = ACTIONS(12473), + [aux_sym_subsubsection_token1] = ACTIONS(12473), + [aux_sym_paragraph_token1] = ACTIONS(12473), + [aux_sym_subparagraph_token1] = ACTIONS(12473), + [anon_sym_BSLASHitem] = ACTIONS(12473), + [anon_sym_LBRACK] = ACTIONS(12471), + [anon_sym_LBRACE] = ACTIONS(12471), + [anon_sym_LPAREN] = ACTIONS(12471), + [anon_sym_COMMA] = ACTIONS(12471), + [anon_sym_EQ] = ACTIONS(12471), + [sym_word] = ACTIONS(12471), + [sym_param] = ACTIONS(12471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12471), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12471), + [anon_sym_DOLLAR] = ACTIONS(12473), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12471), + [anon_sym_BSLASHbegin] = ACTIONS(12473), + [anon_sym_BSLASHend] = ACTIONS(12473), + [anon_sym_BSLASHcaption] = ACTIONS(12473), + [anon_sym_BSLASHcite] = ACTIONS(12473), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCite] = ACTIONS(12473), + [anon_sym_BSLASHnocite] = ACTIONS(12473), + [anon_sym_BSLASHcitet] = ACTIONS(12473), + [anon_sym_BSLASHcitep] = ACTIONS(12473), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteauthor] = ACTIONS(12473), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12473), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitetitle] = ACTIONS(12473), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteyear] = ACTIONS(12473), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitedate] = ACTIONS(12473), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteurl] = ACTIONS(12473), + [anon_sym_BSLASHfullcite] = ACTIONS(12473), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12473), + [anon_sym_BSLASHcitealt] = ACTIONS(12473), + [anon_sym_BSLASHcitealp] = ACTIONS(12473), + [anon_sym_BSLASHcitetext] = ACTIONS(12473), + [anon_sym_BSLASHparencite] = ACTIONS(12473), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHParencite] = ACTIONS(12473), + [anon_sym_BSLASHfootcite] = ACTIONS(12473), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12473), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12473), + [anon_sym_BSLASHtextcite] = ACTIONS(12473), + [anon_sym_BSLASHTextcite] = ACTIONS(12473), + [anon_sym_BSLASHsmartcite] = ACTIONS(12473), + [anon_sym_BSLASHSmartcite] = ACTIONS(12473), + [anon_sym_BSLASHsupercite] = ACTIONS(12473), + [anon_sym_BSLASHautocite] = ACTIONS(12473), + [anon_sym_BSLASHAutocite] = ACTIONS(12473), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHvolcite] = ACTIONS(12473), + [anon_sym_BSLASHVolcite] = ACTIONS(12473), + [anon_sym_BSLASHpvolcite] = ACTIONS(12473), + [anon_sym_BSLASHPvolcite] = ACTIONS(12473), + [anon_sym_BSLASHfvolcite] = ACTIONS(12473), + [anon_sym_BSLASHftvolcite] = ACTIONS(12473), + [anon_sym_BSLASHsvolcite] = ACTIONS(12473), + [anon_sym_BSLASHSvolcite] = ACTIONS(12473), + [anon_sym_BSLASHtvolcite] = ACTIONS(12473), + [anon_sym_BSLASHTvolcite] = ACTIONS(12473), + [anon_sym_BSLASHavolcite] = ACTIONS(12473), + [anon_sym_BSLASHAvolcite] = ACTIONS(12473), + [anon_sym_BSLASHnotecite] = ACTIONS(12473), + [anon_sym_BSLASHpnotecite] = ACTIONS(12473), + [anon_sym_BSLASHPnotecite] = ACTIONS(12473), + [anon_sym_BSLASHfnotecite] = ACTIONS(12473), + [anon_sym_BSLASHusepackage] = ACTIONS(12473), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12473), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12473), + [anon_sym_BSLASHinclude] = ACTIONS(12473), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12473), + [anon_sym_BSLASHinput] = ACTIONS(12473), + [anon_sym_BSLASHsubfile] = ACTIONS(12473), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12473), + [anon_sym_BSLASHbibliography] = ACTIONS(12473), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12473), + [anon_sym_BSLASHincludesvg] = ACTIONS(12473), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12473), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12473), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12473), + [anon_sym_BSLASHimport] = ACTIONS(12473), + [anon_sym_BSLASHsubimport] = ACTIONS(12473), + [anon_sym_BSLASHinputfrom] = ACTIONS(12473), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12473), + [anon_sym_BSLASHincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHlabel] = ACTIONS(12473), + [anon_sym_BSLASHref] = ACTIONS(12473), + [anon_sym_BSLASHvref] = ACTIONS(12473), + [anon_sym_BSLASHVref] = ACTIONS(12473), + [anon_sym_BSLASHautoref] = ACTIONS(12473), + [anon_sym_BSLASHpageref] = ACTIONS(12473), + [anon_sym_BSLASHcref] = ACTIONS(12473), + [anon_sym_BSLASHCref] = ACTIONS(12473), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnameCref] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHlabelcref] = ACTIONS(12473), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12473), + [anon_sym_BSLASHeqref] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange] = ACTIONS(12473), + [anon_sym_BSLASHCrefrange] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewlabel] = ACTIONS(12473), + [anon_sym_BSLASHnewcommand] = ACTIONS(12473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12473), + [anon_sym_BSLASHgls] = ACTIONS(12473), + [anon_sym_BSLASHGls] = ACTIONS(12473), + [anon_sym_BSLASHGLS] = ACTIONS(12473), + [anon_sym_BSLASHglspl] = ACTIONS(12473), + [anon_sym_BSLASHGlspl] = ACTIONS(12473), + [anon_sym_BSLASHGLSpl] = ACTIONS(12473), + [anon_sym_BSLASHglsdisp] = ACTIONS(12473), + [anon_sym_BSLASHglslink] = ACTIONS(12473), + [anon_sym_BSLASHglstext] = ACTIONS(12473), + [anon_sym_BSLASHGlstext] = ACTIONS(12473), + [anon_sym_BSLASHGLStext] = ACTIONS(12473), + [anon_sym_BSLASHglsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12473), + [anon_sym_BSLASHglsplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSplural] = ACTIONS(12473), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHglsname] = ACTIONS(12473), + [anon_sym_BSLASHGlsname] = ACTIONS(12473), + [anon_sym_BSLASHGLSname] = ACTIONS(12473), + [anon_sym_BSLASHglssymbol] = ACTIONS(12473), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12473), + [anon_sym_BSLASHglsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12473), + [anon_sym_BSLASHglsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12473), + [anon_sym_BSLASHglsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12473), + [anon_sym_BSLASHglsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12473), + [anon_sym_BSLASHglsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12473), + [anon_sym_BSLASHnewacronym] = ACTIONS(12473), + [anon_sym_BSLASHacrshort] = ACTIONS(12473), + [anon_sym_BSLASHAcrshort] = ACTIONS(12473), + [anon_sym_BSLASHACRshort] = ACTIONS(12473), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12473), + [anon_sym_BSLASHacrlong] = ACTIONS(12473), + [anon_sym_BSLASHAcrlong] = ACTIONS(12473), + [anon_sym_BSLASHACRlong] = ACTIONS(12473), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12473), + [anon_sym_BSLASHacrfull] = ACTIONS(12473), + [anon_sym_BSLASHAcrfull] = ACTIONS(12473), + [anon_sym_BSLASHACRfull] = ACTIONS(12473), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12473), + [anon_sym_BSLASHacs] = ACTIONS(12473), + [anon_sym_BSLASHAcs] = ACTIONS(12473), + [anon_sym_BSLASHacsp] = ACTIONS(12473), + [anon_sym_BSLASHAcsp] = ACTIONS(12473), + [anon_sym_BSLASHacl] = ACTIONS(12473), + [anon_sym_BSLASHAcl] = ACTIONS(12473), + [anon_sym_BSLASHaclp] = ACTIONS(12473), + [anon_sym_BSLASHAclp] = ACTIONS(12473), + [anon_sym_BSLASHacf] = ACTIONS(12473), + [anon_sym_BSLASHAcf] = ACTIONS(12473), + [anon_sym_BSLASHacfp] = ACTIONS(12473), + [anon_sym_BSLASHAcfp] = ACTIONS(12473), + [anon_sym_BSLASHac] = ACTIONS(12473), + [anon_sym_BSLASHAc] = ACTIONS(12473), + [anon_sym_BSLASHacp] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12473), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12473), + [anon_sym_BSLASHcolor] = ACTIONS(12473), + [anon_sym_BSLASHcolorbox] = ACTIONS(12473), + [anon_sym_BSLASHtextcolor] = ACTIONS(12473), + [anon_sym_BSLASHpagecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12473), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12473), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12473), + }, + [800] = { + [sym_generic_command_name] = ACTIONS(12489), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12489), + [aux_sym_chapter_token1] = ACTIONS(12489), + [aux_sym_section_token1] = ACTIONS(12489), + [aux_sym_subsection_token1] = ACTIONS(12489), + [aux_sym_subsubsection_token1] = ACTIONS(12489), + [aux_sym_paragraph_token1] = ACTIONS(12489), + [aux_sym_subparagraph_token1] = ACTIONS(12489), + [anon_sym_BSLASHitem] = ACTIONS(12489), + [anon_sym_LBRACK] = ACTIONS(12487), + [anon_sym_LBRACE] = ACTIONS(12487), + [anon_sym_LPAREN] = ACTIONS(12487), + [anon_sym_COMMA] = ACTIONS(12487), + [anon_sym_EQ] = ACTIONS(12487), + [sym_word] = ACTIONS(12487), + [sym_param] = ACTIONS(12487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12487), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12487), + [anon_sym_DOLLAR] = ACTIONS(12489), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12487), + [anon_sym_BSLASHbegin] = ACTIONS(12489), + [anon_sym_BSLASHend] = ACTIONS(12489), + [anon_sym_BSLASHcaption] = ACTIONS(12489), + [anon_sym_BSLASHcite] = ACTIONS(12489), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCite] = ACTIONS(12489), + [anon_sym_BSLASHnocite] = ACTIONS(12489), + [anon_sym_BSLASHcitet] = ACTIONS(12489), + [anon_sym_BSLASHcitep] = ACTIONS(12489), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteauthor] = ACTIONS(12489), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12489), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitetitle] = ACTIONS(12489), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteyear] = ACTIONS(12489), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitedate] = ACTIONS(12489), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteurl] = ACTIONS(12489), + [anon_sym_BSLASHfullcite] = ACTIONS(12489), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12489), + [anon_sym_BSLASHcitealt] = ACTIONS(12489), + [anon_sym_BSLASHcitealp] = ACTIONS(12489), + [anon_sym_BSLASHcitetext] = ACTIONS(12489), + [anon_sym_BSLASHparencite] = ACTIONS(12489), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHParencite] = ACTIONS(12489), + [anon_sym_BSLASHfootcite] = ACTIONS(12489), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12489), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12489), + [anon_sym_BSLASHtextcite] = ACTIONS(12489), + [anon_sym_BSLASHTextcite] = ACTIONS(12489), + [anon_sym_BSLASHsmartcite] = ACTIONS(12489), + [anon_sym_BSLASHSmartcite] = ACTIONS(12489), + [anon_sym_BSLASHsupercite] = ACTIONS(12489), + [anon_sym_BSLASHautocite] = ACTIONS(12489), + [anon_sym_BSLASHAutocite] = ACTIONS(12489), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHvolcite] = ACTIONS(12489), + [anon_sym_BSLASHVolcite] = ACTIONS(12489), + [anon_sym_BSLASHpvolcite] = ACTIONS(12489), + [anon_sym_BSLASHPvolcite] = ACTIONS(12489), + [anon_sym_BSLASHfvolcite] = ACTIONS(12489), + [anon_sym_BSLASHftvolcite] = ACTIONS(12489), + [anon_sym_BSLASHsvolcite] = ACTIONS(12489), + [anon_sym_BSLASHSvolcite] = ACTIONS(12489), + [anon_sym_BSLASHtvolcite] = ACTIONS(12489), + [anon_sym_BSLASHTvolcite] = ACTIONS(12489), + [anon_sym_BSLASHavolcite] = ACTIONS(12489), + [anon_sym_BSLASHAvolcite] = ACTIONS(12489), + [anon_sym_BSLASHnotecite] = ACTIONS(12489), + [anon_sym_BSLASHpnotecite] = ACTIONS(12489), + [anon_sym_BSLASHPnotecite] = ACTIONS(12489), + [anon_sym_BSLASHfnotecite] = ACTIONS(12489), + [anon_sym_BSLASHusepackage] = ACTIONS(12489), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12489), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12489), + [anon_sym_BSLASHinclude] = ACTIONS(12489), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12489), + [anon_sym_BSLASHinput] = ACTIONS(12489), + [anon_sym_BSLASHsubfile] = ACTIONS(12489), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12489), + [anon_sym_BSLASHbibliography] = ACTIONS(12489), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12489), + [anon_sym_BSLASHincludesvg] = ACTIONS(12489), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12489), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12489), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12489), + [anon_sym_BSLASHimport] = ACTIONS(12489), + [anon_sym_BSLASHsubimport] = ACTIONS(12489), + [anon_sym_BSLASHinputfrom] = ACTIONS(12489), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12489), + [anon_sym_BSLASHincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHlabel] = ACTIONS(12489), + [anon_sym_BSLASHref] = ACTIONS(12489), + [anon_sym_BSLASHvref] = ACTIONS(12489), + [anon_sym_BSLASHVref] = ACTIONS(12489), + [anon_sym_BSLASHautoref] = ACTIONS(12489), + [anon_sym_BSLASHpageref] = ACTIONS(12489), + [anon_sym_BSLASHcref] = ACTIONS(12489), + [anon_sym_BSLASHCref] = ACTIONS(12489), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnameCref] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHlabelcref] = ACTIONS(12489), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12489), + [anon_sym_BSLASHeqref] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange] = ACTIONS(12489), + [anon_sym_BSLASHCrefrange] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewlabel] = ACTIONS(12489), + [anon_sym_BSLASHnewcommand] = ACTIONS(12489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12489), + [anon_sym_BSLASHgls] = ACTIONS(12489), + [anon_sym_BSLASHGls] = ACTIONS(12489), + [anon_sym_BSLASHGLS] = ACTIONS(12489), + [anon_sym_BSLASHglspl] = ACTIONS(12489), + [anon_sym_BSLASHGlspl] = ACTIONS(12489), + [anon_sym_BSLASHGLSpl] = ACTIONS(12489), + [anon_sym_BSLASHglsdisp] = ACTIONS(12489), + [anon_sym_BSLASHglslink] = ACTIONS(12489), + [anon_sym_BSLASHglstext] = ACTIONS(12489), + [anon_sym_BSLASHGlstext] = ACTIONS(12489), + [anon_sym_BSLASHGLStext] = ACTIONS(12489), + [anon_sym_BSLASHglsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12489), + [anon_sym_BSLASHglsplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSplural] = ACTIONS(12489), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHglsname] = ACTIONS(12489), + [anon_sym_BSLASHGlsname] = ACTIONS(12489), + [anon_sym_BSLASHGLSname] = ACTIONS(12489), + [anon_sym_BSLASHglssymbol] = ACTIONS(12489), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12489), + [anon_sym_BSLASHglsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12489), + [anon_sym_BSLASHglsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12489), + [anon_sym_BSLASHglsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12489), + [anon_sym_BSLASHglsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12489), + [anon_sym_BSLASHglsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12489), + [anon_sym_BSLASHnewacronym] = ACTIONS(12489), + [anon_sym_BSLASHacrshort] = ACTIONS(12489), + [anon_sym_BSLASHAcrshort] = ACTIONS(12489), + [anon_sym_BSLASHACRshort] = ACTIONS(12489), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12489), + [anon_sym_BSLASHacrlong] = ACTIONS(12489), + [anon_sym_BSLASHAcrlong] = ACTIONS(12489), + [anon_sym_BSLASHACRlong] = ACTIONS(12489), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12489), + [anon_sym_BSLASHacrfull] = ACTIONS(12489), + [anon_sym_BSLASHAcrfull] = ACTIONS(12489), + [anon_sym_BSLASHACRfull] = ACTIONS(12489), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12489), + [anon_sym_BSLASHacs] = ACTIONS(12489), + [anon_sym_BSLASHAcs] = ACTIONS(12489), + [anon_sym_BSLASHacsp] = ACTIONS(12489), + [anon_sym_BSLASHAcsp] = ACTIONS(12489), + [anon_sym_BSLASHacl] = ACTIONS(12489), + [anon_sym_BSLASHAcl] = ACTIONS(12489), + [anon_sym_BSLASHaclp] = ACTIONS(12489), + [anon_sym_BSLASHAclp] = ACTIONS(12489), + [anon_sym_BSLASHacf] = ACTIONS(12489), + [anon_sym_BSLASHAcf] = ACTIONS(12489), + [anon_sym_BSLASHacfp] = ACTIONS(12489), + [anon_sym_BSLASHAcfp] = ACTIONS(12489), + [anon_sym_BSLASHac] = ACTIONS(12489), + [anon_sym_BSLASHAc] = ACTIONS(12489), + [anon_sym_BSLASHacp] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12489), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12489), + [anon_sym_BSLASHcolor] = ACTIONS(12489), + [anon_sym_BSLASHcolorbox] = ACTIONS(12489), + [anon_sym_BSLASHtextcolor] = ACTIONS(12489), + [anon_sym_BSLASHpagecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12489), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12489), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12489), + }, + [801] = { + [sym_generic_command_name] = ACTIONS(12505), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12505), + [aux_sym_chapter_token1] = ACTIONS(12505), + [aux_sym_section_token1] = ACTIONS(12505), + [aux_sym_subsection_token1] = ACTIONS(12505), + [aux_sym_subsubsection_token1] = ACTIONS(12505), + [aux_sym_paragraph_token1] = ACTIONS(12505), + [aux_sym_subparagraph_token1] = ACTIONS(12505), + [anon_sym_BSLASHitem] = ACTIONS(12505), + [anon_sym_LBRACK] = ACTIONS(12503), + [anon_sym_LBRACE] = ACTIONS(12503), + [anon_sym_LPAREN] = ACTIONS(12503), + [anon_sym_COMMA] = ACTIONS(12503), + [anon_sym_EQ] = ACTIONS(12503), + [sym_word] = ACTIONS(12503), + [sym_param] = ACTIONS(12503), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12503), + [anon_sym_DOLLAR] = ACTIONS(12505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12503), + [anon_sym_BSLASHbegin] = ACTIONS(12505), + [anon_sym_BSLASHend] = ACTIONS(12505), + [anon_sym_BSLASHcaption] = ACTIONS(12505), + [anon_sym_BSLASHcite] = ACTIONS(12505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCite] = ACTIONS(12505), + [anon_sym_BSLASHnocite] = ACTIONS(12505), + [anon_sym_BSLASHcitet] = ACTIONS(12505), + [anon_sym_BSLASHcitep] = ACTIONS(12505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteauthor] = ACTIONS(12505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitetitle] = ACTIONS(12505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteyear] = ACTIONS(12505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitedate] = ACTIONS(12505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteurl] = ACTIONS(12505), + [anon_sym_BSLASHfullcite] = ACTIONS(12505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12505), + [anon_sym_BSLASHcitealt] = ACTIONS(12505), + [anon_sym_BSLASHcitealp] = ACTIONS(12505), + [anon_sym_BSLASHcitetext] = ACTIONS(12505), + [anon_sym_BSLASHparencite] = ACTIONS(12505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHParencite] = ACTIONS(12505), + [anon_sym_BSLASHfootcite] = ACTIONS(12505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12505), + [anon_sym_BSLASHtextcite] = ACTIONS(12505), + [anon_sym_BSLASHTextcite] = ACTIONS(12505), + [anon_sym_BSLASHsmartcite] = ACTIONS(12505), + [anon_sym_BSLASHSmartcite] = ACTIONS(12505), + [anon_sym_BSLASHsupercite] = ACTIONS(12505), + [anon_sym_BSLASHautocite] = ACTIONS(12505), + [anon_sym_BSLASHAutocite] = ACTIONS(12505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHvolcite] = ACTIONS(12505), + [anon_sym_BSLASHVolcite] = ACTIONS(12505), + [anon_sym_BSLASHpvolcite] = ACTIONS(12505), + [anon_sym_BSLASHPvolcite] = ACTIONS(12505), + [anon_sym_BSLASHfvolcite] = ACTIONS(12505), + [anon_sym_BSLASHftvolcite] = ACTIONS(12505), + [anon_sym_BSLASHsvolcite] = ACTIONS(12505), + [anon_sym_BSLASHSvolcite] = ACTIONS(12505), + [anon_sym_BSLASHtvolcite] = ACTIONS(12505), + [anon_sym_BSLASHTvolcite] = ACTIONS(12505), + [anon_sym_BSLASHavolcite] = ACTIONS(12505), + [anon_sym_BSLASHAvolcite] = ACTIONS(12505), + [anon_sym_BSLASHnotecite] = ACTIONS(12505), + [anon_sym_BSLASHpnotecite] = ACTIONS(12505), + [anon_sym_BSLASHPnotecite] = ACTIONS(12505), + [anon_sym_BSLASHfnotecite] = ACTIONS(12505), + [anon_sym_BSLASHusepackage] = ACTIONS(12505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12505), + [anon_sym_BSLASHinclude] = ACTIONS(12505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12505), + [anon_sym_BSLASHinput] = ACTIONS(12505), + [anon_sym_BSLASHsubfile] = ACTIONS(12505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12505), + [anon_sym_BSLASHbibliography] = ACTIONS(12505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12505), + [anon_sym_BSLASHincludesvg] = ACTIONS(12505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12505), + [anon_sym_BSLASHimport] = ACTIONS(12505), + [anon_sym_BSLASHsubimport] = ACTIONS(12505), + [anon_sym_BSLASHinputfrom] = ACTIONS(12505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12505), + [anon_sym_BSLASHincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHlabel] = ACTIONS(12505), + [anon_sym_BSLASHref] = ACTIONS(12505), + [anon_sym_BSLASHvref] = ACTIONS(12505), + [anon_sym_BSLASHVref] = ACTIONS(12505), + [anon_sym_BSLASHautoref] = ACTIONS(12505), + [anon_sym_BSLASHpageref] = ACTIONS(12505), + [anon_sym_BSLASHcref] = ACTIONS(12505), + [anon_sym_BSLASHCref] = ACTIONS(12505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnameCref] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHlabelcref] = ACTIONS(12505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12505), + [anon_sym_BSLASHeqref] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange] = ACTIONS(12505), + [anon_sym_BSLASHCrefrange] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewlabel] = ACTIONS(12505), + [anon_sym_BSLASHnewcommand] = ACTIONS(12505), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12505), + [anon_sym_BSLASHgls] = ACTIONS(12505), + [anon_sym_BSLASHGls] = ACTIONS(12505), + [anon_sym_BSLASHGLS] = ACTIONS(12505), + [anon_sym_BSLASHglspl] = ACTIONS(12505), + [anon_sym_BSLASHGlspl] = ACTIONS(12505), + [anon_sym_BSLASHGLSpl] = ACTIONS(12505), + [anon_sym_BSLASHglsdisp] = ACTIONS(12505), + [anon_sym_BSLASHglslink] = ACTIONS(12505), + [anon_sym_BSLASHglstext] = ACTIONS(12505), + [anon_sym_BSLASHGlstext] = ACTIONS(12505), + [anon_sym_BSLASHGLStext] = ACTIONS(12505), + [anon_sym_BSLASHglsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12505), + [anon_sym_BSLASHglsplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSplural] = ACTIONS(12505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHglsname] = ACTIONS(12505), + [anon_sym_BSLASHGlsname] = ACTIONS(12505), + [anon_sym_BSLASHGLSname] = ACTIONS(12505), + [anon_sym_BSLASHglssymbol] = ACTIONS(12505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12505), + [anon_sym_BSLASHglsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12505), + [anon_sym_BSLASHglsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12505), + [anon_sym_BSLASHglsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12505), + [anon_sym_BSLASHglsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12505), + [anon_sym_BSLASHglsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12505), + [anon_sym_BSLASHnewacronym] = ACTIONS(12505), + [anon_sym_BSLASHacrshort] = ACTIONS(12505), + [anon_sym_BSLASHAcrshort] = ACTIONS(12505), + [anon_sym_BSLASHACRshort] = ACTIONS(12505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12505), + [anon_sym_BSLASHacrlong] = ACTIONS(12505), + [anon_sym_BSLASHAcrlong] = ACTIONS(12505), + [anon_sym_BSLASHACRlong] = ACTIONS(12505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12505), + [anon_sym_BSLASHacrfull] = ACTIONS(12505), + [anon_sym_BSLASHAcrfull] = ACTIONS(12505), + [anon_sym_BSLASHACRfull] = ACTIONS(12505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12505), + [anon_sym_BSLASHacs] = ACTIONS(12505), + [anon_sym_BSLASHAcs] = ACTIONS(12505), + [anon_sym_BSLASHacsp] = ACTIONS(12505), + [anon_sym_BSLASHAcsp] = ACTIONS(12505), + [anon_sym_BSLASHacl] = ACTIONS(12505), + [anon_sym_BSLASHAcl] = ACTIONS(12505), + [anon_sym_BSLASHaclp] = ACTIONS(12505), + [anon_sym_BSLASHAclp] = ACTIONS(12505), + [anon_sym_BSLASHacf] = ACTIONS(12505), + [anon_sym_BSLASHAcf] = ACTIONS(12505), + [anon_sym_BSLASHacfp] = ACTIONS(12505), + [anon_sym_BSLASHAcfp] = ACTIONS(12505), + [anon_sym_BSLASHac] = ACTIONS(12505), + [anon_sym_BSLASHAc] = ACTIONS(12505), + [anon_sym_BSLASHacp] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12505), + [anon_sym_BSLASHcolor] = ACTIONS(12505), + [anon_sym_BSLASHcolorbox] = ACTIONS(12505), + [anon_sym_BSLASHtextcolor] = ACTIONS(12505), + [anon_sym_BSLASHpagecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12505), + }, + [802] = { + [sym_generic_command_name] = ACTIONS(12535), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12535), + [aux_sym_chapter_token1] = ACTIONS(12535), + [aux_sym_section_token1] = ACTIONS(12535), + [aux_sym_subsection_token1] = ACTIONS(12535), + [aux_sym_subsubsection_token1] = ACTIONS(12535), + [aux_sym_paragraph_token1] = ACTIONS(12535), + [aux_sym_subparagraph_token1] = ACTIONS(12535), + [anon_sym_BSLASHitem] = ACTIONS(12535), + [anon_sym_LBRACK] = ACTIONS(12533), + [anon_sym_LBRACE] = ACTIONS(12533), + [anon_sym_LPAREN] = ACTIONS(12533), + [anon_sym_COMMA] = ACTIONS(12533), + [anon_sym_EQ] = ACTIONS(12533), + [sym_word] = ACTIONS(12533), + [sym_param] = ACTIONS(12533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12533), + [anon_sym_DOLLAR] = ACTIONS(12535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12533), + [anon_sym_BSLASHbegin] = ACTIONS(12535), + [anon_sym_BSLASHend] = ACTIONS(12535), + [anon_sym_BSLASHcaption] = ACTIONS(12535), + [anon_sym_BSLASHcite] = ACTIONS(12535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCite] = ACTIONS(12535), + [anon_sym_BSLASHnocite] = ACTIONS(12535), + [anon_sym_BSLASHcitet] = ACTIONS(12535), + [anon_sym_BSLASHcitep] = ACTIONS(12535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteauthor] = ACTIONS(12535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitetitle] = ACTIONS(12535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteyear] = ACTIONS(12535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitedate] = ACTIONS(12535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteurl] = ACTIONS(12535), + [anon_sym_BSLASHfullcite] = ACTIONS(12535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12535), + [anon_sym_BSLASHcitealt] = ACTIONS(12535), + [anon_sym_BSLASHcitealp] = ACTIONS(12535), + [anon_sym_BSLASHcitetext] = ACTIONS(12535), + [anon_sym_BSLASHparencite] = ACTIONS(12535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHParencite] = ACTIONS(12535), + [anon_sym_BSLASHfootcite] = ACTIONS(12535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12535), + [anon_sym_BSLASHtextcite] = ACTIONS(12535), + [anon_sym_BSLASHTextcite] = ACTIONS(12535), + [anon_sym_BSLASHsmartcite] = ACTIONS(12535), + [anon_sym_BSLASHSmartcite] = ACTIONS(12535), + [anon_sym_BSLASHsupercite] = ACTIONS(12535), + [anon_sym_BSLASHautocite] = ACTIONS(12535), + [anon_sym_BSLASHAutocite] = ACTIONS(12535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHvolcite] = ACTIONS(12535), + [anon_sym_BSLASHVolcite] = ACTIONS(12535), + [anon_sym_BSLASHpvolcite] = ACTIONS(12535), + [anon_sym_BSLASHPvolcite] = ACTIONS(12535), + [anon_sym_BSLASHfvolcite] = ACTIONS(12535), + [anon_sym_BSLASHftvolcite] = ACTIONS(12535), + [anon_sym_BSLASHsvolcite] = ACTIONS(12535), + [anon_sym_BSLASHSvolcite] = ACTIONS(12535), + [anon_sym_BSLASHtvolcite] = ACTIONS(12535), + [anon_sym_BSLASHTvolcite] = ACTIONS(12535), + [anon_sym_BSLASHavolcite] = ACTIONS(12535), + [anon_sym_BSLASHAvolcite] = ACTIONS(12535), + [anon_sym_BSLASHnotecite] = ACTIONS(12535), + [anon_sym_BSLASHpnotecite] = ACTIONS(12535), + [anon_sym_BSLASHPnotecite] = ACTIONS(12535), + [anon_sym_BSLASHfnotecite] = ACTIONS(12535), + [anon_sym_BSLASHusepackage] = ACTIONS(12535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12535), + [anon_sym_BSLASHinclude] = ACTIONS(12535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12535), + [anon_sym_BSLASHinput] = ACTIONS(12535), + [anon_sym_BSLASHsubfile] = ACTIONS(12535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12535), + [anon_sym_BSLASHbibliography] = ACTIONS(12535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12535), + [anon_sym_BSLASHincludesvg] = ACTIONS(12535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12535), + [anon_sym_BSLASHimport] = ACTIONS(12535), + [anon_sym_BSLASHsubimport] = ACTIONS(12535), + [anon_sym_BSLASHinputfrom] = ACTIONS(12535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12535), + [anon_sym_BSLASHincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHlabel] = ACTIONS(12535), + [anon_sym_BSLASHref] = ACTIONS(12535), + [anon_sym_BSLASHvref] = ACTIONS(12535), + [anon_sym_BSLASHVref] = ACTIONS(12535), + [anon_sym_BSLASHautoref] = ACTIONS(12535), + [anon_sym_BSLASHpageref] = ACTIONS(12535), + [anon_sym_BSLASHcref] = ACTIONS(12535), + [anon_sym_BSLASHCref] = ACTIONS(12535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnameCref] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHlabelcref] = ACTIONS(12535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12535), + [anon_sym_BSLASHeqref] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange] = ACTIONS(12535), + [anon_sym_BSLASHCrefrange] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewlabel] = ACTIONS(12535), + [anon_sym_BSLASHnewcommand] = ACTIONS(12535), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12535), + [anon_sym_BSLASHgls] = ACTIONS(12535), + [anon_sym_BSLASHGls] = ACTIONS(12535), + [anon_sym_BSLASHGLS] = ACTIONS(12535), + [anon_sym_BSLASHglspl] = ACTIONS(12535), + [anon_sym_BSLASHGlspl] = ACTIONS(12535), + [anon_sym_BSLASHGLSpl] = ACTIONS(12535), + [anon_sym_BSLASHglsdisp] = ACTIONS(12535), + [anon_sym_BSLASHglslink] = ACTIONS(12535), + [anon_sym_BSLASHglstext] = ACTIONS(12535), + [anon_sym_BSLASHGlstext] = ACTIONS(12535), + [anon_sym_BSLASHGLStext] = ACTIONS(12535), + [anon_sym_BSLASHglsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12535), + [anon_sym_BSLASHglsplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSplural] = ACTIONS(12535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHglsname] = ACTIONS(12535), + [anon_sym_BSLASHGlsname] = ACTIONS(12535), + [anon_sym_BSLASHGLSname] = ACTIONS(12535), + [anon_sym_BSLASHglssymbol] = ACTIONS(12535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12535), + [anon_sym_BSLASHglsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12535), + [anon_sym_BSLASHglsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12535), + [anon_sym_BSLASHglsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12535), + [anon_sym_BSLASHglsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12535), + [anon_sym_BSLASHglsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12535), + [anon_sym_BSLASHnewacronym] = ACTIONS(12535), + [anon_sym_BSLASHacrshort] = ACTIONS(12535), + [anon_sym_BSLASHAcrshort] = ACTIONS(12535), + [anon_sym_BSLASHACRshort] = ACTIONS(12535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12535), + [anon_sym_BSLASHacrlong] = ACTIONS(12535), + [anon_sym_BSLASHAcrlong] = ACTIONS(12535), + [anon_sym_BSLASHACRlong] = ACTIONS(12535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12535), + [anon_sym_BSLASHacrfull] = ACTIONS(12535), + [anon_sym_BSLASHAcrfull] = ACTIONS(12535), + [anon_sym_BSLASHACRfull] = ACTIONS(12535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12535), + [anon_sym_BSLASHacs] = ACTIONS(12535), + [anon_sym_BSLASHAcs] = ACTIONS(12535), + [anon_sym_BSLASHacsp] = ACTIONS(12535), + [anon_sym_BSLASHAcsp] = ACTIONS(12535), + [anon_sym_BSLASHacl] = ACTIONS(12535), + [anon_sym_BSLASHAcl] = ACTIONS(12535), + [anon_sym_BSLASHaclp] = ACTIONS(12535), + [anon_sym_BSLASHAclp] = ACTIONS(12535), + [anon_sym_BSLASHacf] = ACTIONS(12535), + [anon_sym_BSLASHAcf] = ACTIONS(12535), + [anon_sym_BSLASHacfp] = ACTIONS(12535), + [anon_sym_BSLASHAcfp] = ACTIONS(12535), + [anon_sym_BSLASHac] = ACTIONS(12535), + [anon_sym_BSLASHAc] = ACTIONS(12535), + [anon_sym_BSLASHacp] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12535), + [anon_sym_BSLASHcolor] = ACTIONS(12535), + [anon_sym_BSLASHcolorbox] = ACTIONS(12535), + [anon_sym_BSLASHtextcolor] = ACTIONS(12535), + [anon_sym_BSLASHpagecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12535), + }, + [803] = { + [sym_generic_command_name] = ACTIONS(12551), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12551), + [aux_sym_chapter_token1] = ACTIONS(12551), + [aux_sym_section_token1] = ACTIONS(12551), + [aux_sym_subsection_token1] = ACTIONS(12551), + [aux_sym_subsubsection_token1] = ACTIONS(12551), + [aux_sym_paragraph_token1] = ACTIONS(12551), + [aux_sym_subparagraph_token1] = ACTIONS(12551), + [anon_sym_BSLASHitem] = ACTIONS(12551), + [anon_sym_LBRACK] = ACTIONS(12549), + [anon_sym_LBRACE] = ACTIONS(12549), + [anon_sym_LPAREN] = ACTIONS(12549), + [anon_sym_COMMA] = ACTIONS(12549), + [anon_sym_EQ] = ACTIONS(12549), + [sym_word] = ACTIONS(12549), + [sym_param] = ACTIONS(12549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12549), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12549), + [anon_sym_DOLLAR] = ACTIONS(12551), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12549), + [anon_sym_BSLASHbegin] = ACTIONS(12551), + [anon_sym_BSLASHend] = ACTIONS(12551), + [anon_sym_BSLASHcaption] = ACTIONS(12551), + [anon_sym_BSLASHcite] = ACTIONS(12551), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCite] = ACTIONS(12551), + [anon_sym_BSLASHnocite] = ACTIONS(12551), + [anon_sym_BSLASHcitet] = ACTIONS(12551), + [anon_sym_BSLASHcitep] = ACTIONS(12551), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteauthor] = ACTIONS(12551), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12551), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitetitle] = ACTIONS(12551), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteyear] = ACTIONS(12551), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitedate] = ACTIONS(12551), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteurl] = ACTIONS(12551), + [anon_sym_BSLASHfullcite] = ACTIONS(12551), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12551), + [anon_sym_BSLASHcitealt] = ACTIONS(12551), + [anon_sym_BSLASHcitealp] = ACTIONS(12551), + [anon_sym_BSLASHcitetext] = ACTIONS(12551), + [anon_sym_BSLASHparencite] = ACTIONS(12551), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHParencite] = ACTIONS(12551), + [anon_sym_BSLASHfootcite] = ACTIONS(12551), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12551), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12551), + [anon_sym_BSLASHtextcite] = ACTIONS(12551), + [anon_sym_BSLASHTextcite] = ACTIONS(12551), + [anon_sym_BSLASHsmartcite] = ACTIONS(12551), + [anon_sym_BSLASHSmartcite] = ACTIONS(12551), + [anon_sym_BSLASHsupercite] = ACTIONS(12551), + [anon_sym_BSLASHautocite] = ACTIONS(12551), + [anon_sym_BSLASHAutocite] = ACTIONS(12551), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHvolcite] = ACTIONS(12551), + [anon_sym_BSLASHVolcite] = ACTIONS(12551), + [anon_sym_BSLASHpvolcite] = ACTIONS(12551), + [anon_sym_BSLASHPvolcite] = ACTIONS(12551), + [anon_sym_BSLASHfvolcite] = ACTIONS(12551), + [anon_sym_BSLASHftvolcite] = ACTIONS(12551), + [anon_sym_BSLASHsvolcite] = ACTIONS(12551), + [anon_sym_BSLASHSvolcite] = ACTIONS(12551), + [anon_sym_BSLASHtvolcite] = ACTIONS(12551), + [anon_sym_BSLASHTvolcite] = ACTIONS(12551), + [anon_sym_BSLASHavolcite] = ACTIONS(12551), + [anon_sym_BSLASHAvolcite] = ACTIONS(12551), + [anon_sym_BSLASHnotecite] = ACTIONS(12551), + [anon_sym_BSLASHpnotecite] = ACTIONS(12551), + [anon_sym_BSLASHPnotecite] = ACTIONS(12551), + [anon_sym_BSLASHfnotecite] = ACTIONS(12551), + [anon_sym_BSLASHusepackage] = ACTIONS(12551), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12551), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12551), + [anon_sym_BSLASHinclude] = ACTIONS(12551), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12551), + [anon_sym_BSLASHinput] = ACTIONS(12551), + [anon_sym_BSLASHsubfile] = ACTIONS(12551), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12551), + [anon_sym_BSLASHbibliography] = ACTIONS(12551), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12551), + [anon_sym_BSLASHincludesvg] = ACTIONS(12551), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12551), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12551), + [anon_sym_BSLASHimport] = ACTIONS(12551), + [anon_sym_BSLASHsubimport] = ACTIONS(12551), + [anon_sym_BSLASHinputfrom] = ACTIONS(12551), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12551), + [anon_sym_BSLASHincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHlabel] = ACTIONS(12551), + [anon_sym_BSLASHref] = ACTIONS(12551), + [anon_sym_BSLASHvref] = ACTIONS(12551), + [anon_sym_BSLASHVref] = ACTIONS(12551), + [anon_sym_BSLASHautoref] = ACTIONS(12551), + [anon_sym_BSLASHpageref] = ACTIONS(12551), + [anon_sym_BSLASHcref] = ACTIONS(12551), + [anon_sym_BSLASHCref] = ACTIONS(12551), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnameCref] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHlabelcref] = ACTIONS(12551), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12551), + [anon_sym_BSLASHeqref] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange] = ACTIONS(12551), + [anon_sym_BSLASHCrefrange] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewlabel] = ACTIONS(12551), + [anon_sym_BSLASHnewcommand] = ACTIONS(12551), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12551), + [anon_sym_BSLASHgls] = ACTIONS(12551), + [anon_sym_BSLASHGls] = ACTIONS(12551), + [anon_sym_BSLASHGLS] = ACTIONS(12551), + [anon_sym_BSLASHglspl] = ACTIONS(12551), + [anon_sym_BSLASHGlspl] = ACTIONS(12551), + [anon_sym_BSLASHGLSpl] = ACTIONS(12551), + [anon_sym_BSLASHglsdisp] = ACTIONS(12551), + [anon_sym_BSLASHglslink] = ACTIONS(12551), + [anon_sym_BSLASHglstext] = ACTIONS(12551), + [anon_sym_BSLASHGlstext] = ACTIONS(12551), + [anon_sym_BSLASHGLStext] = ACTIONS(12551), + [anon_sym_BSLASHglsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12551), + [anon_sym_BSLASHglsplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSplural] = ACTIONS(12551), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHglsname] = ACTIONS(12551), + [anon_sym_BSLASHGlsname] = ACTIONS(12551), + [anon_sym_BSLASHGLSname] = ACTIONS(12551), + [anon_sym_BSLASHglssymbol] = ACTIONS(12551), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12551), + [anon_sym_BSLASHglsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12551), + [anon_sym_BSLASHglsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12551), + [anon_sym_BSLASHglsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12551), + [anon_sym_BSLASHglsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12551), + [anon_sym_BSLASHglsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12551), + [anon_sym_BSLASHnewacronym] = ACTIONS(12551), + [anon_sym_BSLASHacrshort] = ACTIONS(12551), + [anon_sym_BSLASHAcrshort] = ACTIONS(12551), + [anon_sym_BSLASHACRshort] = ACTIONS(12551), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12551), + [anon_sym_BSLASHacrlong] = ACTIONS(12551), + [anon_sym_BSLASHAcrlong] = ACTIONS(12551), + [anon_sym_BSLASHACRlong] = ACTIONS(12551), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12551), + [anon_sym_BSLASHacrfull] = ACTIONS(12551), + [anon_sym_BSLASHAcrfull] = ACTIONS(12551), + [anon_sym_BSLASHACRfull] = ACTIONS(12551), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12551), + [anon_sym_BSLASHacs] = ACTIONS(12551), + [anon_sym_BSLASHAcs] = ACTIONS(12551), + [anon_sym_BSLASHacsp] = ACTIONS(12551), + [anon_sym_BSLASHAcsp] = ACTIONS(12551), + [anon_sym_BSLASHacl] = ACTIONS(12551), + [anon_sym_BSLASHAcl] = ACTIONS(12551), + [anon_sym_BSLASHaclp] = ACTIONS(12551), + [anon_sym_BSLASHAclp] = ACTIONS(12551), + [anon_sym_BSLASHacf] = ACTIONS(12551), + [anon_sym_BSLASHAcf] = ACTIONS(12551), + [anon_sym_BSLASHacfp] = ACTIONS(12551), + [anon_sym_BSLASHAcfp] = ACTIONS(12551), + [anon_sym_BSLASHac] = ACTIONS(12551), + [anon_sym_BSLASHAc] = ACTIONS(12551), + [anon_sym_BSLASHacp] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12551), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12551), + [anon_sym_BSLASHcolor] = ACTIONS(12551), + [anon_sym_BSLASHcolorbox] = ACTIONS(12551), + [anon_sym_BSLASHtextcolor] = ACTIONS(12551), + [anon_sym_BSLASHpagecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12551), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12551), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12551), + }, + [804] = { + [sym_generic_command_name] = ACTIONS(12555), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12555), + [aux_sym_chapter_token1] = ACTIONS(12555), + [aux_sym_section_token1] = ACTIONS(12555), + [aux_sym_subsection_token1] = ACTIONS(12555), + [aux_sym_subsubsection_token1] = ACTIONS(12555), + [aux_sym_paragraph_token1] = ACTIONS(12555), + [aux_sym_subparagraph_token1] = ACTIONS(12555), + [anon_sym_BSLASHitem] = ACTIONS(12555), + [anon_sym_LBRACK] = ACTIONS(12553), + [anon_sym_LBRACE] = ACTIONS(12553), + [anon_sym_LPAREN] = ACTIONS(12553), + [anon_sym_COMMA] = ACTIONS(12553), + [anon_sym_EQ] = ACTIONS(12553), + [sym_word] = ACTIONS(12553), + [sym_param] = ACTIONS(12553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12553), + [anon_sym_DOLLAR] = ACTIONS(12555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12553), + [anon_sym_BSLASHbegin] = ACTIONS(12555), + [anon_sym_BSLASHend] = ACTIONS(12555), + [anon_sym_BSLASHcaption] = ACTIONS(12555), + [anon_sym_BSLASHcite] = ACTIONS(12555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCite] = ACTIONS(12555), + [anon_sym_BSLASHnocite] = ACTIONS(12555), + [anon_sym_BSLASHcitet] = ACTIONS(12555), + [anon_sym_BSLASHcitep] = ACTIONS(12555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteauthor] = ACTIONS(12555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitetitle] = ACTIONS(12555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteyear] = ACTIONS(12555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitedate] = ACTIONS(12555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteurl] = ACTIONS(12555), + [anon_sym_BSLASHfullcite] = ACTIONS(12555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12555), + [anon_sym_BSLASHcitealt] = ACTIONS(12555), + [anon_sym_BSLASHcitealp] = ACTIONS(12555), + [anon_sym_BSLASHcitetext] = ACTIONS(12555), + [anon_sym_BSLASHparencite] = ACTIONS(12555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHParencite] = ACTIONS(12555), + [anon_sym_BSLASHfootcite] = ACTIONS(12555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12555), + [anon_sym_BSLASHtextcite] = ACTIONS(12555), + [anon_sym_BSLASHTextcite] = ACTIONS(12555), + [anon_sym_BSLASHsmartcite] = ACTIONS(12555), + [anon_sym_BSLASHSmartcite] = ACTIONS(12555), + [anon_sym_BSLASHsupercite] = ACTIONS(12555), + [anon_sym_BSLASHautocite] = ACTIONS(12555), + [anon_sym_BSLASHAutocite] = ACTIONS(12555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHvolcite] = ACTIONS(12555), + [anon_sym_BSLASHVolcite] = ACTIONS(12555), + [anon_sym_BSLASHpvolcite] = ACTIONS(12555), + [anon_sym_BSLASHPvolcite] = ACTIONS(12555), + [anon_sym_BSLASHfvolcite] = ACTIONS(12555), + [anon_sym_BSLASHftvolcite] = ACTIONS(12555), + [anon_sym_BSLASHsvolcite] = ACTIONS(12555), + [anon_sym_BSLASHSvolcite] = ACTIONS(12555), + [anon_sym_BSLASHtvolcite] = ACTIONS(12555), + [anon_sym_BSLASHTvolcite] = ACTIONS(12555), + [anon_sym_BSLASHavolcite] = ACTIONS(12555), + [anon_sym_BSLASHAvolcite] = ACTIONS(12555), + [anon_sym_BSLASHnotecite] = ACTIONS(12555), + [anon_sym_BSLASHpnotecite] = ACTIONS(12555), + [anon_sym_BSLASHPnotecite] = ACTIONS(12555), + [anon_sym_BSLASHfnotecite] = ACTIONS(12555), + [anon_sym_BSLASHusepackage] = ACTIONS(12555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12555), + [anon_sym_BSLASHinclude] = ACTIONS(12555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12555), + [anon_sym_BSLASHinput] = ACTIONS(12555), + [anon_sym_BSLASHsubfile] = ACTIONS(12555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12555), + [anon_sym_BSLASHbibliography] = ACTIONS(12555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12555), + [anon_sym_BSLASHincludesvg] = ACTIONS(12555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12555), + [anon_sym_BSLASHimport] = ACTIONS(12555), + [anon_sym_BSLASHsubimport] = ACTIONS(12555), + [anon_sym_BSLASHinputfrom] = ACTIONS(12555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12555), + [anon_sym_BSLASHincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHlabel] = ACTIONS(12555), + [anon_sym_BSLASHref] = ACTIONS(12555), + [anon_sym_BSLASHvref] = ACTIONS(12555), + [anon_sym_BSLASHVref] = ACTIONS(12555), + [anon_sym_BSLASHautoref] = ACTIONS(12555), + [anon_sym_BSLASHpageref] = ACTIONS(12555), + [anon_sym_BSLASHcref] = ACTIONS(12555), + [anon_sym_BSLASHCref] = ACTIONS(12555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnameCref] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHlabelcref] = ACTIONS(12555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12555), + [anon_sym_BSLASHeqref] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange] = ACTIONS(12555), + [anon_sym_BSLASHCrefrange] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewlabel] = ACTIONS(12555), + [anon_sym_BSLASHnewcommand] = ACTIONS(12555), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12555), + [anon_sym_BSLASHgls] = ACTIONS(12555), + [anon_sym_BSLASHGls] = ACTIONS(12555), + [anon_sym_BSLASHGLS] = ACTIONS(12555), + [anon_sym_BSLASHglspl] = ACTIONS(12555), + [anon_sym_BSLASHGlspl] = ACTIONS(12555), + [anon_sym_BSLASHGLSpl] = ACTIONS(12555), + [anon_sym_BSLASHglsdisp] = ACTIONS(12555), + [anon_sym_BSLASHglslink] = ACTIONS(12555), + [anon_sym_BSLASHglstext] = ACTIONS(12555), + [anon_sym_BSLASHGlstext] = ACTIONS(12555), + [anon_sym_BSLASHGLStext] = ACTIONS(12555), + [anon_sym_BSLASHglsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12555), + [anon_sym_BSLASHglsplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSplural] = ACTIONS(12555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHglsname] = ACTIONS(12555), + [anon_sym_BSLASHGlsname] = ACTIONS(12555), + [anon_sym_BSLASHGLSname] = ACTIONS(12555), + [anon_sym_BSLASHglssymbol] = ACTIONS(12555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12555), + [anon_sym_BSLASHglsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12555), + [anon_sym_BSLASHglsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12555), + [anon_sym_BSLASHglsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12555), + [anon_sym_BSLASHglsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12555), + [anon_sym_BSLASHglsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12555), + [anon_sym_BSLASHnewacronym] = ACTIONS(12555), + [anon_sym_BSLASHacrshort] = ACTIONS(12555), + [anon_sym_BSLASHAcrshort] = ACTIONS(12555), + [anon_sym_BSLASHACRshort] = ACTIONS(12555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12555), + [anon_sym_BSLASHacrlong] = ACTIONS(12555), + [anon_sym_BSLASHAcrlong] = ACTIONS(12555), + [anon_sym_BSLASHACRlong] = ACTIONS(12555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12555), + [anon_sym_BSLASHacrfull] = ACTIONS(12555), + [anon_sym_BSLASHAcrfull] = ACTIONS(12555), + [anon_sym_BSLASHACRfull] = ACTIONS(12555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12555), + [anon_sym_BSLASHacs] = ACTIONS(12555), + [anon_sym_BSLASHAcs] = ACTIONS(12555), + [anon_sym_BSLASHacsp] = ACTIONS(12555), + [anon_sym_BSLASHAcsp] = ACTIONS(12555), + [anon_sym_BSLASHacl] = ACTIONS(12555), + [anon_sym_BSLASHAcl] = ACTIONS(12555), + [anon_sym_BSLASHaclp] = ACTIONS(12555), + [anon_sym_BSLASHAclp] = ACTIONS(12555), + [anon_sym_BSLASHacf] = ACTIONS(12555), + [anon_sym_BSLASHAcf] = ACTIONS(12555), + [anon_sym_BSLASHacfp] = ACTIONS(12555), + [anon_sym_BSLASHAcfp] = ACTIONS(12555), + [anon_sym_BSLASHac] = ACTIONS(12555), + [anon_sym_BSLASHAc] = ACTIONS(12555), + [anon_sym_BSLASHacp] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12555), + [anon_sym_BSLASHcolor] = ACTIONS(12555), + [anon_sym_BSLASHcolorbox] = ACTIONS(12555), + [anon_sym_BSLASHtextcolor] = ACTIONS(12555), + [anon_sym_BSLASHpagecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12555), + }, + [805] = { + [sym_generic_command_name] = ACTIONS(12559), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12559), + [aux_sym_chapter_token1] = ACTIONS(12559), + [aux_sym_section_token1] = ACTIONS(12559), + [aux_sym_subsection_token1] = ACTIONS(12559), + [aux_sym_subsubsection_token1] = ACTIONS(12559), + [aux_sym_paragraph_token1] = ACTIONS(12559), + [aux_sym_subparagraph_token1] = ACTIONS(12559), + [anon_sym_BSLASHitem] = ACTIONS(12559), + [anon_sym_LBRACK] = ACTIONS(12557), + [anon_sym_LBRACE] = ACTIONS(12557), + [anon_sym_LPAREN] = ACTIONS(12557), + [anon_sym_COMMA] = ACTIONS(12557), + [anon_sym_EQ] = ACTIONS(12557), + [sym_word] = ACTIONS(12557), + [sym_param] = ACTIONS(12557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12557), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12557), + [anon_sym_DOLLAR] = ACTIONS(12559), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12557), + [anon_sym_BSLASHbegin] = ACTIONS(12559), + [anon_sym_BSLASHend] = ACTIONS(12559), + [anon_sym_BSLASHcaption] = ACTIONS(12559), + [anon_sym_BSLASHcite] = ACTIONS(12559), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCite] = ACTIONS(12559), + [anon_sym_BSLASHnocite] = ACTIONS(12559), + [anon_sym_BSLASHcitet] = ACTIONS(12559), + [anon_sym_BSLASHcitep] = ACTIONS(12559), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteauthor] = ACTIONS(12559), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12559), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitetitle] = ACTIONS(12559), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteyear] = ACTIONS(12559), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitedate] = ACTIONS(12559), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteurl] = ACTIONS(12559), + [anon_sym_BSLASHfullcite] = ACTIONS(12559), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12559), + [anon_sym_BSLASHcitealt] = ACTIONS(12559), + [anon_sym_BSLASHcitealp] = ACTIONS(12559), + [anon_sym_BSLASHcitetext] = ACTIONS(12559), + [anon_sym_BSLASHparencite] = ACTIONS(12559), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHParencite] = ACTIONS(12559), + [anon_sym_BSLASHfootcite] = ACTIONS(12559), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12559), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12559), + [anon_sym_BSLASHtextcite] = ACTIONS(12559), + [anon_sym_BSLASHTextcite] = ACTIONS(12559), + [anon_sym_BSLASHsmartcite] = ACTIONS(12559), + [anon_sym_BSLASHSmartcite] = ACTIONS(12559), + [anon_sym_BSLASHsupercite] = ACTIONS(12559), + [anon_sym_BSLASHautocite] = ACTIONS(12559), + [anon_sym_BSLASHAutocite] = ACTIONS(12559), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHvolcite] = ACTIONS(12559), + [anon_sym_BSLASHVolcite] = ACTIONS(12559), + [anon_sym_BSLASHpvolcite] = ACTIONS(12559), + [anon_sym_BSLASHPvolcite] = ACTIONS(12559), + [anon_sym_BSLASHfvolcite] = ACTIONS(12559), + [anon_sym_BSLASHftvolcite] = ACTIONS(12559), + [anon_sym_BSLASHsvolcite] = ACTIONS(12559), + [anon_sym_BSLASHSvolcite] = ACTIONS(12559), + [anon_sym_BSLASHtvolcite] = ACTIONS(12559), + [anon_sym_BSLASHTvolcite] = ACTIONS(12559), + [anon_sym_BSLASHavolcite] = ACTIONS(12559), + [anon_sym_BSLASHAvolcite] = ACTIONS(12559), + [anon_sym_BSLASHnotecite] = ACTIONS(12559), + [anon_sym_BSLASHpnotecite] = ACTIONS(12559), + [anon_sym_BSLASHPnotecite] = ACTIONS(12559), + [anon_sym_BSLASHfnotecite] = ACTIONS(12559), + [anon_sym_BSLASHusepackage] = ACTIONS(12559), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12559), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12559), + [anon_sym_BSLASHinclude] = ACTIONS(12559), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12559), + [anon_sym_BSLASHinput] = ACTIONS(12559), + [anon_sym_BSLASHsubfile] = ACTIONS(12559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12559), + [anon_sym_BSLASHbibliography] = ACTIONS(12559), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12559), + [anon_sym_BSLASHincludesvg] = ACTIONS(12559), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12559), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12559), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12559), + [anon_sym_BSLASHimport] = ACTIONS(12559), + [anon_sym_BSLASHsubimport] = ACTIONS(12559), + [anon_sym_BSLASHinputfrom] = ACTIONS(12559), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12559), + [anon_sym_BSLASHincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHlabel] = ACTIONS(12559), + [anon_sym_BSLASHref] = ACTIONS(12559), + [anon_sym_BSLASHvref] = ACTIONS(12559), + [anon_sym_BSLASHVref] = ACTIONS(12559), + [anon_sym_BSLASHautoref] = ACTIONS(12559), + [anon_sym_BSLASHpageref] = ACTIONS(12559), + [anon_sym_BSLASHcref] = ACTIONS(12559), + [anon_sym_BSLASHCref] = ACTIONS(12559), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnameCref] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHlabelcref] = ACTIONS(12559), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12559), + [anon_sym_BSLASHeqref] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange] = ACTIONS(12559), + [anon_sym_BSLASHCrefrange] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewlabel] = ACTIONS(12559), + [anon_sym_BSLASHnewcommand] = ACTIONS(12559), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12559), + [anon_sym_BSLASHgls] = ACTIONS(12559), + [anon_sym_BSLASHGls] = ACTIONS(12559), + [anon_sym_BSLASHGLS] = ACTIONS(12559), + [anon_sym_BSLASHglspl] = ACTIONS(12559), + [anon_sym_BSLASHGlspl] = ACTIONS(12559), + [anon_sym_BSLASHGLSpl] = ACTIONS(12559), + [anon_sym_BSLASHglsdisp] = ACTIONS(12559), + [anon_sym_BSLASHglslink] = ACTIONS(12559), + [anon_sym_BSLASHglstext] = ACTIONS(12559), + [anon_sym_BSLASHGlstext] = ACTIONS(12559), + [anon_sym_BSLASHGLStext] = ACTIONS(12559), + [anon_sym_BSLASHglsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12559), + [anon_sym_BSLASHglsplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSplural] = ACTIONS(12559), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHglsname] = ACTIONS(12559), + [anon_sym_BSLASHGlsname] = ACTIONS(12559), + [anon_sym_BSLASHGLSname] = ACTIONS(12559), + [anon_sym_BSLASHglssymbol] = ACTIONS(12559), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12559), + [anon_sym_BSLASHglsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12559), + [anon_sym_BSLASHglsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12559), + [anon_sym_BSLASHglsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12559), + [anon_sym_BSLASHglsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12559), + [anon_sym_BSLASHglsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12559), + [anon_sym_BSLASHnewacronym] = ACTIONS(12559), + [anon_sym_BSLASHacrshort] = ACTIONS(12559), + [anon_sym_BSLASHAcrshort] = ACTIONS(12559), + [anon_sym_BSLASHACRshort] = ACTIONS(12559), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12559), + [anon_sym_BSLASHacrlong] = ACTIONS(12559), + [anon_sym_BSLASHAcrlong] = ACTIONS(12559), + [anon_sym_BSLASHACRlong] = ACTIONS(12559), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12559), + [anon_sym_BSLASHacrfull] = ACTIONS(12559), + [anon_sym_BSLASHAcrfull] = ACTIONS(12559), + [anon_sym_BSLASHACRfull] = ACTIONS(12559), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12559), + [anon_sym_BSLASHacs] = ACTIONS(12559), + [anon_sym_BSLASHAcs] = ACTIONS(12559), + [anon_sym_BSLASHacsp] = ACTIONS(12559), + [anon_sym_BSLASHAcsp] = ACTIONS(12559), + [anon_sym_BSLASHacl] = ACTIONS(12559), + [anon_sym_BSLASHAcl] = ACTIONS(12559), + [anon_sym_BSLASHaclp] = ACTIONS(12559), + [anon_sym_BSLASHAclp] = ACTIONS(12559), + [anon_sym_BSLASHacf] = ACTIONS(12559), + [anon_sym_BSLASHAcf] = ACTIONS(12559), + [anon_sym_BSLASHacfp] = ACTIONS(12559), + [anon_sym_BSLASHAcfp] = ACTIONS(12559), + [anon_sym_BSLASHac] = ACTIONS(12559), + [anon_sym_BSLASHAc] = ACTIONS(12559), + [anon_sym_BSLASHacp] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12559), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12559), + [anon_sym_BSLASHcolor] = ACTIONS(12559), + [anon_sym_BSLASHcolorbox] = ACTIONS(12559), + [anon_sym_BSLASHtextcolor] = ACTIONS(12559), + [anon_sym_BSLASHpagecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12559), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12559), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12559), + }, + [806] = { + [sym_generic_command_name] = ACTIONS(12255), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12255), + [aux_sym_chapter_token1] = ACTIONS(12255), + [aux_sym_section_token1] = ACTIONS(12255), + [aux_sym_subsection_token1] = ACTIONS(12255), + [aux_sym_subsubsection_token1] = ACTIONS(12255), + [aux_sym_paragraph_token1] = ACTIONS(12255), + [aux_sym_subparagraph_token1] = ACTIONS(12255), + [anon_sym_BSLASHitem] = ACTIONS(12255), + [anon_sym_LBRACK] = ACTIONS(12253), + [anon_sym_LBRACE] = ACTIONS(12253), + [anon_sym_LPAREN] = ACTIONS(12253), + [anon_sym_COMMA] = ACTIONS(12253), + [anon_sym_EQ] = ACTIONS(12253), + [sym_word] = ACTIONS(12253), + [sym_param] = ACTIONS(12253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12253), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12253), + [anon_sym_DOLLAR] = ACTIONS(12255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12253), + [anon_sym_BSLASHbegin] = ACTIONS(12255), + [anon_sym_BSLASHend] = ACTIONS(12255), + [anon_sym_BSLASHcaption] = ACTIONS(12255), + [anon_sym_BSLASHcite] = ACTIONS(12255), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCite] = ACTIONS(12255), + [anon_sym_BSLASHnocite] = ACTIONS(12255), + [anon_sym_BSLASHcitet] = ACTIONS(12255), + [anon_sym_BSLASHcitep] = ACTIONS(12255), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteauthor] = ACTIONS(12255), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12255), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitetitle] = ACTIONS(12255), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteyear] = ACTIONS(12255), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitedate] = ACTIONS(12255), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteurl] = ACTIONS(12255), + [anon_sym_BSLASHfullcite] = ACTIONS(12255), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12255), + [anon_sym_BSLASHcitealt] = ACTIONS(12255), + [anon_sym_BSLASHcitealp] = ACTIONS(12255), + [anon_sym_BSLASHcitetext] = ACTIONS(12255), + [anon_sym_BSLASHparencite] = ACTIONS(12255), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHParencite] = ACTIONS(12255), + [anon_sym_BSLASHfootcite] = ACTIONS(12255), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12255), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12255), + [anon_sym_BSLASHtextcite] = ACTIONS(12255), + [anon_sym_BSLASHTextcite] = ACTIONS(12255), + [anon_sym_BSLASHsmartcite] = ACTIONS(12255), + [anon_sym_BSLASHSmartcite] = ACTIONS(12255), + [anon_sym_BSLASHsupercite] = ACTIONS(12255), + [anon_sym_BSLASHautocite] = ACTIONS(12255), + [anon_sym_BSLASHAutocite] = ACTIONS(12255), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHvolcite] = ACTIONS(12255), + [anon_sym_BSLASHVolcite] = ACTIONS(12255), + [anon_sym_BSLASHpvolcite] = ACTIONS(12255), + [anon_sym_BSLASHPvolcite] = ACTIONS(12255), + [anon_sym_BSLASHfvolcite] = ACTIONS(12255), + [anon_sym_BSLASHftvolcite] = ACTIONS(12255), + [anon_sym_BSLASHsvolcite] = ACTIONS(12255), + [anon_sym_BSLASHSvolcite] = ACTIONS(12255), + [anon_sym_BSLASHtvolcite] = ACTIONS(12255), + [anon_sym_BSLASHTvolcite] = ACTIONS(12255), + [anon_sym_BSLASHavolcite] = ACTIONS(12255), + [anon_sym_BSLASHAvolcite] = ACTIONS(12255), + [anon_sym_BSLASHnotecite] = ACTIONS(12255), + [anon_sym_BSLASHpnotecite] = ACTIONS(12255), + [anon_sym_BSLASHPnotecite] = ACTIONS(12255), + [anon_sym_BSLASHfnotecite] = ACTIONS(12255), + [anon_sym_BSLASHusepackage] = ACTIONS(12255), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12255), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12255), + [anon_sym_BSLASHinclude] = ACTIONS(12255), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12255), + [anon_sym_BSLASHinput] = ACTIONS(12255), + [anon_sym_BSLASHsubfile] = ACTIONS(12255), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12255), + [anon_sym_BSLASHbibliography] = ACTIONS(12255), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12255), + [anon_sym_BSLASHincludesvg] = ACTIONS(12255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12255), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12255), + [anon_sym_BSLASHimport] = ACTIONS(12255), + [anon_sym_BSLASHsubimport] = ACTIONS(12255), + [anon_sym_BSLASHinputfrom] = ACTIONS(12255), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12255), + [anon_sym_BSLASHincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHlabel] = ACTIONS(12255), + [anon_sym_BSLASHref] = ACTIONS(12255), + [anon_sym_BSLASHvref] = ACTIONS(12255), + [anon_sym_BSLASHVref] = ACTIONS(12255), + [anon_sym_BSLASHautoref] = ACTIONS(12255), + [anon_sym_BSLASHpageref] = ACTIONS(12255), + [anon_sym_BSLASHcref] = ACTIONS(12255), + [anon_sym_BSLASHCref] = ACTIONS(12255), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnameCref] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHlabelcref] = ACTIONS(12255), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12255), + [anon_sym_BSLASHeqref] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange] = ACTIONS(12255), + [anon_sym_BSLASHCrefrange] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewlabel] = ACTIONS(12255), + [anon_sym_BSLASHnewcommand] = ACTIONS(12255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12255), + [anon_sym_BSLASHgls] = ACTIONS(12255), + [anon_sym_BSLASHGls] = ACTIONS(12255), + [anon_sym_BSLASHGLS] = ACTIONS(12255), + [anon_sym_BSLASHglspl] = ACTIONS(12255), + [anon_sym_BSLASHGlspl] = ACTIONS(12255), + [anon_sym_BSLASHGLSpl] = ACTIONS(12255), + [anon_sym_BSLASHglsdisp] = ACTIONS(12255), + [anon_sym_BSLASHglslink] = ACTIONS(12255), + [anon_sym_BSLASHglstext] = ACTIONS(12255), + [anon_sym_BSLASHGlstext] = ACTIONS(12255), + [anon_sym_BSLASHGLStext] = ACTIONS(12255), + [anon_sym_BSLASHglsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12255), + [anon_sym_BSLASHglsplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSplural] = ACTIONS(12255), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHglsname] = ACTIONS(12255), + [anon_sym_BSLASHGlsname] = ACTIONS(12255), + [anon_sym_BSLASHGLSname] = ACTIONS(12255), + [anon_sym_BSLASHglssymbol] = ACTIONS(12255), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12255), + [anon_sym_BSLASHglsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12255), + [anon_sym_BSLASHglsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12255), + [anon_sym_BSLASHglsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12255), + [anon_sym_BSLASHglsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12255), + [anon_sym_BSLASHglsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12255), + [anon_sym_BSLASHnewacronym] = ACTIONS(12255), + [anon_sym_BSLASHacrshort] = ACTIONS(12255), + [anon_sym_BSLASHAcrshort] = ACTIONS(12255), + [anon_sym_BSLASHACRshort] = ACTIONS(12255), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12255), + [anon_sym_BSLASHacrlong] = ACTIONS(12255), + [anon_sym_BSLASHAcrlong] = ACTIONS(12255), + [anon_sym_BSLASHACRlong] = ACTIONS(12255), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12255), + [anon_sym_BSLASHacrfull] = ACTIONS(12255), + [anon_sym_BSLASHAcrfull] = ACTIONS(12255), + [anon_sym_BSLASHACRfull] = ACTIONS(12255), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12255), + [anon_sym_BSLASHacs] = ACTIONS(12255), + [anon_sym_BSLASHAcs] = ACTIONS(12255), + [anon_sym_BSLASHacsp] = ACTIONS(12255), + [anon_sym_BSLASHAcsp] = ACTIONS(12255), + [anon_sym_BSLASHacl] = ACTIONS(12255), + [anon_sym_BSLASHAcl] = ACTIONS(12255), + [anon_sym_BSLASHaclp] = ACTIONS(12255), + [anon_sym_BSLASHAclp] = ACTIONS(12255), + [anon_sym_BSLASHacf] = ACTIONS(12255), + [anon_sym_BSLASHAcf] = ACTIONS(12255), + [anon_sym_BSLASHacfp] = ACTIONS(12255), + [anon_sym_BSLASHAcfp] = ACTIONS(12255), + [anon_sym_BSLASHac] = ACTIONS(12255), + [anon_sym_BSLASHAc] = ACTIONS(12255), + [anon_sym_BSLASHacp] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12255), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12255), + [anon_sym_BSLASHcolor] = ACTIONS(12255), + [anon_sym_BSLASHcolorbox] = ACTIONS(12255), + [anon_sym_BSLASHtextcolor] = ACTIONS(12255), + [anon_sym_BSLASHpagecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12255), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12255), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12255), + }, + [807] = { + [sym_generic_command_name] = ACTIONS(12547), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12547), + [aux_sym_chapter_token1] = ACTIONS(12547), + [aux_sym_section_token1] = ACTIONS(12547), + [aux_sym_subsection_token1] = ACTIONS(12547), + [aux_sym_subsubsection_token1] = ACTIONS(12547), + [aux_sym_paragraph_token1] = ACTIONS(12547), + [aux_sym_subparagraph_token1] = ACTIONS(12547), + [anon_sym_BSLASHitem] = ACTIONS(12547), + [anon_sym_LBRACK] = ACTIONS(12545), + [anon_sym_LBRACE] = ACTIONS(12545), + [anon_sym_LPAREN] = ACTIONS(12545), + [anon_sym_COMMA] = ACTIONS(12545), + [anon_sym_EQ] = ACTIONS(12545), + [sym_word] = ACTIONS(12545), + [sym_param] = ACTIONS(12545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12545), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12545), + [anon_sym_DOLLAR] = ACTIONS(12547), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12545), + [anon_sym_BSLASHbegin] = ACTIONS(12547), + [anon_sym_BSLASHend] = ACTIONS(12547), + [anon_sym_BSLASHcaption] = ACTIONS(12547), + [anon_sym_BSLASHcite] = ACTIONS(12547), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCite] = ACTIONS(12547), + [anon_sym_BSLASHnocite] = ACTIONS(12547), + [anon_sym_BSLASHcitet] = ACTIONS(12547), + [anon_sym_BSLASHcitep] = ACTIONS(12547), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteauthor] = ACTIONS(12547), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12547), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitetitle] = ACTIONS(12547), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteyear] = ACTIONS(12547), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitedate] = ACTIONS(12547), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteurl] = ACTIONS(12547), + [anon_sym_BSLASHfullcite] = ACTIONS(12547), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12547), + [anon_sym_BSLASHcitealt] = ACTIONS(12547), + [anon_sym_BSLASHcitealp] = ACTIONS(12547), + [anon_sym_BSLASHcitetext] = ACTIONS(12547), + [anon_sym_BSLASHparencite] = ACTIONS(12547), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHParencite] = ACTIONS(12547), + [anon_sym_BSLASHfootcite] = ACTIONS(12547), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12547), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12547), + [anon_sym_BSLASHtextcite] = ACTIONS(12547), + [anon_sym_BSLASHTextcite] = ACTIONS(12547), + [anon_sym_BSLASHsmartcite] = ACTIONS(12547), + [anon_sym_BSLASHSmartcite] = ACTIONS(12547), + [anon_sym_BSLASHsupercite] = ACTIONS(12547), + [anon_sym_BSLASHautocite] = ACTIONS(12547), + [anon_sym_BSLASHAutocite] = ACTIONS(12547), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHvolcite] = ACTIONS(12547), + [anon_sym_BSLASHVolcite] = ACTIONS(12547), + [anon_sym_BSLASHpvolcite] = ACTIONS(12547), + [anon_sym_BSLASHPvolcite] = ACTIONS(12547), + [anon_sym_BSLASHfvolcite] = ACTIONS(12547), + [anon_sym_BSLASHftvolcite] = ACTIONS(12547), + [anon_sym_BSLASHsvolcite] = ACTIONS(12547), + [anon_sym_BSLASHSvolcite] = ACTIONS(12547), + [anon_sym_BSLASHtvolcite] = ACTIONS(12547), + [anon_sym_BSLASHTvolcite] = ACTIONS(12547), + [anon_sym_BSLASHavolcite] = ACTIONS(12547), + [anon_sym_BSLASHAvolcite] = ACTIONS(12547), + [anon_sym_BSLASHnotecite] = ACTIONS(12547), + [anon_sym_BSLASHpnotecite] = ACTIONS(12547), + [anon_sym_BSLASHPnotecite] = ACTIONS(12547), + [anon_sym_BSLASHfnotecite] = ACTIONS(12547), + [anon_sym_BSLASHusepackage] = ACTIONS(12547), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12547), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12547), + [anon_sym_BSLASHinclude] = ACTIONS(12547), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12547), + [anon_sym_BSLASHinput] = ACTIONS(12547), + [anon_sym_BSLASHsubfile] = ACTIONS(12547), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12547), + [anon_sym_BSLASHbibliography] = ACTIONS(12547), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12547), + [anon_sym_BSLASHincludesvg] = ACTIONS(12547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12547), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12547), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12547), + [anon_sym_BSLASHimport] = ACTIONS(12547), + [anon_sym_BSLASHsubimport] = ACTIONS(12547), + [anon_sym_BSLASHinputfrom] = ACTIONS(12547), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12547), + [anon_sym_BSLASHincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHlabel] = ACTIONS(12547), + [anon_sym_BSLASHref] = ACTIONS(12547), + [anon_sym_BSLASHvref] = ACTIONS(12547), + [anon_sym_BSLASHVref] = ACTIONS(12547), + [anon_sym_BSLASHautoref] = ACTIONS(12547), + [anon_sym_BSLASHpageref] = ACTIONS(12547), + [anon_sym_BSLASHcref] = ACTIONS(12547), + [anon_sym_BSLASHCref] = ACTIONS(12547), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnameCref] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHlabelcref] = ACTIONS(12547), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12547), + [anon_sym_BSLASHeqref] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange] = ACTIONS(12547), + [anon_sym_BSLASHCrefrange] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewlabel] = ACTIONS(12547), + [anon_sym_BSLASHnewcommand] = ACTIONS(12547), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12547), + [anon_sym_BSLASHgls] = ACTIONS(12547), + [anon_sym_BSLASHGls] = ACTIONS(12547), + [anon_sym_BSLASHGLS] = ACTIONS(12547), + [anon_sym_BSLASHglspl] = ACTIONS(12547), + [anon_sym_BSLASHGlspl] = ACTIONS(12547), + [anon_sym_BSLASHGLSpl] = ACTIONS(12547), + [anon_sym_BSLASHglsdisp] = ACTIONS(12547), + [anon_sym_BSLASHglslink] = ACTIONS(12547), + [anon_sym_BSLASHglstext] = ACTIONS(12547), + [anon_sym_BSLASHGlstext] = ACTIONS(12547), + [anon_sym_BSLASHGLStext] = ACTIONS(12547), + [anon_sym_BSLASHglsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12547), + [anon_sym_BSLASHglsplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSplural] = ACTIONS(12547), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHglsname] = ACTIONS(12547), + [anon_sym_BSLASHGlsname] = ACTIONS(12547), + [anon_sym_BSLASHGLSname] = ACTIONS(12547), + [anon_sym_BSLASHglssymbol] = ACTIONS(12547), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12547), + [anon_sym_BSLASHglsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12547), + [anon_sym_BSLASHglsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12547), + [anon_sym_BSLASHglsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12547), + [anon_sym_BSLASHglsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12547), + [anon_sym_BSLASHglsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12547), + [anon_sym_BSLASHnewacronym] = ACTIONS(12547), + [anon_sym_BSLASHacrshort] = ACTIONS(12547), + [anon_sym_BSLASHAcrshort] = ACTIONS(12547), + [anon_sym_BSLASHACRshort] = ACTIONS(12547), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12547), + [anon_sym_BSLASHacrlong] = ACTIONS(12547), + [anon_sym_BSLASHAcrlong] = ACTIONS(12547), + [anon_sym_BSLASHACRlong] = ACTIONS(12547), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12547), + [anon_sym_BSLASHacrfull] = ACTIONS(12547), + [anon_sym_BSLASHAcrfull] = ACTIONS(12547), + [anon_sym_BSLASHACRfull] = ACTIONS(12547), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12547), + [anon_sym_BSLASHacs] = ACTIONS(12547), + [anon_sym_BSLASHAcs] = ACTIONS(12547), + [anon_sym_BSLASHacsp] = ACTIONS(12547), + [anon_sym_BSLASHAcsp] = ACTIONS(12547), + [anon_sym_BSLASHacl] = ACTIONS(12547), + [anon_sym_BSLASHAcl] = ACTIONS(12547), + [anon_sym_BSLASHaclp] = ACTIONS(12547), + [anon_sym_BSLASHAclp] = ACTIONS(12547), + [anon_sym_BSLASHacf] = ACTIONS(12547), + [anon_sym_BSLASHAcf] = ACTIONS(12547), + [anon_sym_BSLASHacfp] = ACTIONS(12547), + [anon_sym_BSLASHAcfp] = ACTIONS(12547), + [anon_sym_BSLASHac] = ACTIONS(12547), + [anon_sym_BSLASHAc] = ACTIONS(12547), + [anon_sym_BSLASHacp] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12547), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12547), + [anon_sym_BSLASHcolor] = ACTIONS(12547), + [anon_sym_BSLASHcolorbox] = ACTIONS(12547), + [anon_sym_BSLASHtextcolor] = ACTIONS(12547), + [anon_sym_BSLASHpagecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12547), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12547), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12547), + }, + [808] = { + [sym_generic_command_name] = ACTIONS(12104), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12104), + [aux_sym_chapter_token1] = ACTIONS(12104), + [aux_sym_section_token1] = ACTIONS(12104), + [aux_sym_subsection_token1] = ACTIONS(12104), + [aux_sym_subsubsection_token1] = ACTIONS(12104), + [aux_sym_paragraph_token1] = ACTIONS(12104), + [aux_sym_subparagraph_token1] = ACTIONS(12104), + [anon_sym_BSLASHitem] = ACTIONS(12104), + [anon_sym_LBRACK] = ACTIONS(12102), + [anon_sym_LBRACE] = ACTIONS(12102), + [anon_sym_LPAREN] = ACTIONS(12102), + [anon_sym_COMMA] = ACTIONS(12102), + [anon_sym_EQ] = ACTIONS(12102), + [sym_word] = ACTIONS(12102), + [sym_param] = ACTIONS(12102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12102), + [anon_sym_DOLLAR] = ACTIONS(12104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12102), + [anon_sym_BSLASHbegin] = ACTIONS(12104), + [anon_sym_BSLASHend] = ACTIONS(12104), + [anon_sym_BSLASHcaption] = ACTIONS(12104), + [anon_sym_BSLASHcite] = ACTIONS(12104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCite] = ACTIONS(12104), + [anon_sym_BSLASHnocite] = ACTIONS(12104), + [anon_sym_BSLASHcitet] = ACTIONS(12104), + [anon_sym_BSLASHcitep] = ACTIONS(12104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteauthor] = ACTIONS(12104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitetitle] = ACTIONS(12104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteyear] = ACTIONS(12104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitedate] = ACTIONS(12104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteurl] = ACTIONS(12104), + [anon_sym_BSLASHfullcite] = ACTIONS(12104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12104), + [anon_sym_BSLASHcitealt] = ACTIONS(12104), + [anon_sym_BSLASHcitealp] = ACTIONS(12104), + [anon_sym_BSLASHcitetext] = ACTIONS(12104), + [anon_sym_BSLASHparencite] = ACTIONS(12104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHParencite] = ACTIONS(12104), + [anon_sym_BSLASHfootcite] = ACTIONS(12104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12104), + [anon_sym_BSLASHtextcite] = ACTIONS(12104), + [anon_sym_BSLASHTextcite] = ACTIONS(12104), + [anon_sym_BSLASHsmartcite] = ACTIONS(12104), + [anon_sym_BSLASHSmartcite] = ACTIONS(12104), + [anon_sym_BSLASHsupercite] = ACTIONS(12104), + [anon_sym_BSLASHautocite] = ACTIONS(12104), + [anon_sym_BSLASHAutocite] = ACTIONS(12104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHvolcite] = ACTIONS(12104), + [anon_sym_BSLASHVolcite] = ACTIONS(12104), + [anon_sym_BSLASHpvolcite] = ACTIONS(12104), + [anon_sym_BSLASHPvolcite] = ACTIONS(12104), + [anon_sym_BSLASHfvolcite] = ACTIONS(12104), + [anon_sym_BSLASHftvolcite] = ACTIONS(12104), + [anon_sym_BSLASHsvolcite] = ACTIONS(12104), + [anon_sym_BSLASHSvolcite] = ACTIONS(12104), + [anon_sym_BSLASHtvolcite] = ACTIONS(12104), + [anon_sym_BSLASHTvolcite] = ACTIONS(12104), + [anon_sym_BSLASHavolcite] = ACTIONS(12104), + [anon_sym_BSLASHAvolcite] = ACTIONS(12104), + [anon_sym_BSLASHnotecite] = ACTIONS(12104), + [anon_sym_BSLASHpnotecite] = ACTIONS(12104), + [anon_sym_BSLASHPnotecite] = ACTIONS(12104), + [anon_sym_BSLASHfnotecite] = ACTIONS(12104), + [anon_sym_BSLASHusepackage] = ACTIONS(12104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12104), + [anon_sym_BSLASHinclude] = ACTIONS(12104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12104), + [anon_sym_BSLASHinput] = ACTIONS(12104), + [anon_sym_BSLASHsubfile] = ACTIONS(12104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12104), + [anon_sym_BSLASHbibliography] = ACTIONS(12104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12104), + [anon_sym_BSLASHincludesvg] = ACTIONS(12104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12104), + [anon_sym_BSLASHimport] = ACTIONS(12104), + [anon_sym_BSLASHsubimport] = ACTIONS(12104), + [anon_sym_BSLASHinputfrom] = ACTIONS(12104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12104), + [anon_sym_BSLASHincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHlabel] = ACTIONS(12104), + [anon_sym_BSLASHref] = ACTIONS(12104), + [anon_sym_BSLASHvref] = ACTIONS(12104), + [anon_sym_BSLASHVref] = ACTIONS(12104), + [anon_sym_BSLASHautoref] = ACTIONS(12104), + [anon_sym_BSLASHpageref] = ACTIONS(12104), + [anon_sym_BSLASHcref] = ACTIONS(12104), + [anon_sym_BSLASHCref] = ACTIONS(12104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnameCref] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHlabelcref] = ACTIONS(12104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12104), + [anon_sym_BSLASHeqref] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange] = ACTIONS(12104), + [anon_sym_BSLASHCrefrange] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewlabel] = ACTIONS(12104), + [anon_sym_BSLASHnewcommand] = ACTIONS(12104), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12104), + [anon_sym_BSLASHgls] = ACTIONS(12104), + [anon_sym_BSLASHGls] = ACTIONS(12104), + [anon_sym_BSLASHGLS] = ACTIONS(12104), + [anon_sym_BSLASHglspl] = ACTIONS(12104), + [anon_sym_BSLASHGlspl] = ACTIONS(12104), + [anon_sym_BSLASHGLSpl] = ACTIONS(12104), + [anon_sym_BSLASHglsdisp] = ACTIONS(12104), + [anon_sym_BSLASHglslink] = ACTIONS(12104), + [anon_sym_BSLASHglstext] = ACTIONS(12104), + [anon_sym_BSLASHGlstext] = ACTIONS(12104), + [anon_sym_BSLASHGLStext] = ACTIONS(12104), + [anon_sym_BSLASHglsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12104), + [anon_sym_BSLASHglsplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSplural] = ACTIONS(12104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHglsname] = ACTIONS(12104), + [anon_sym_BSLASHGlsname] = ACTIONS(12104), + [anon_sym_BSLASHGLSname] = ACTIONS(12104), + [anon_sym_BSLASHglssymbol] = ACTIONS(12104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12104), + [anon_sym_BSLASHglsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12104), + [anon_sym_BSLASHglsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12104), + [anon_sym_BSLASHglsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12104), + [anon_sym_BSLASHglsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12104), + [anon_sym_BSLASHglsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12104), + [anon_sym_BSLASHnewacronym] = ACTIONS(12104), + [anon_sym_BSLASHacrshort] = ACTIONS(12104), + [anon_sym_BSLASHAcrshort] = ACTIONS(12104), + [anon_sym_BSLASHACRshort] = ACTIONS(12104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12104), + [anon_sym_BSLASHacrlong] = ACTIONS(12104), + [anon_sym_BSLASHAcrlong] = ACTIONS(12104), + [anon_sym_BSLASHACRlong] = ACTIONS(12104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12104), + [anon_sym_BSLASHacrfull] = ACTIONS(12104), + [anon_sym_BSLASHAcrfull] = ACTIONS(12104), + [anon_sym_BSLASHACRfull] = ACTIONS(12104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12104), + [anon_sym_BSLASHacs] = ACTIONS(12104), + [anon_sym_BSLASHAcs] = ACTIONS(12104), + [anon_sym_BSLASHacsp] = ACTIONS(12104), + [anon_sym_BSLASHAcsp] = ACTIONS(12104), + [anon_sym_BSLASHacl] = ACTIONS(12104), + [anon_sym_BSLASHAcl] = ACTIONS(12104), + [anon_sym_BSLASHaclp] = ACTIONS(12104), + [anon_sym_BSLASHAclp] = ACTIONS(12104), + [anon_sym_BSLASHacf] = ACTIONS(12104), + [anon_sym_BSLASHAcf] = ACTIONS(12104), + [anon_sym_BSLASHacfp] = ACTIONS(12104), + [anon_sym_BSLASHAcfp] = ACTIONS(12104), + [anon_sym_BSLASHac] = ACTIONS(12104), + [anon_sym_BSLASHAc] = ACTIONS(12104), + [anon_sym_BSLASHacp] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12104), + [anon_sym_BSLASHcolor] = ACTIONS(12104), + [anon_sym_BSLASHcolorbox] = ACTIONS(12104), + [anon_sym_BSLASHtextcolor] = ACTIONS(12104), + [anon_sym_BSLASHpagecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12104), + }, + [809] = { + [sym_generic_command_name] = ACTIONS(12543), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12543), + [aux_sym_chapter_token1] = ACTIONS(12543), + [aux_sym_section_token1] = ACTIONS(12543), + [aux_sym_subsection_token1] = ACTIONS(12543), + [aux_sym_subsubsection_token1] = ACTIONS(12543), + [aux_sym_paragraph_token1] = ACTIONS(12543), + [aux_sym_subparagraph_token1] = ACTIONS(12543), + [anon_sym_BSLASHitem] = ACTIONS(12543), + [anon_sym_LBRACK] = ACTIONS(12541), + [anon_sym_LBRACE] = ACTIONS(12541), + [anon_sym_LPAREN] = ACTIONS(12541), + [anon_sym_COMMA] = ACTIONS(12541), + [anon_sym_EQ] = ACTIONS(12541), + [sym_word] = ACTIONS(12541), + [sym_param] = ACTIONS(12541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12541), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12541), + [anon_sym_DOLLAR] = ACTIONS(12543), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12541), + [anon_sym_BSLASHbegin] = ACTIONS(12543), + [anon_sym_BSLASHend] = ACTIONS(12543), + [anon_sym_BSLASHcaption] = ACTIONS(12543), + [anon_sym_BSLASHcite] = ACTIONS(12543), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCite] = ACTIONS(12543), + [anon_sym_BSLASHnocite] = ACTIONS(12543), + [anon_sym_BSLASHcitet] = ACTIONS(12543), + [anon_sym_BSLASHcitep] = ACTIONS(12543), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteauthor] = ACTIONS(12543), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12543), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitetitle] = ACTIONS(12543), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteyear] = ACTIONS(12543), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitedate] = ACTIONS(12543), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteurl] = ACTIONS(12543), + [anon_sym_BSLASHfullcite] = ACTIONS(12543), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12543), + [anon_sym_BSLASHcitealt] = ACTIONS(12543), + [anon_sym_BSLASHcitealp] = ACTIONS(12543), + [anon_sym_BSLASHcitetext] = ACTIONS(12543), + [anon_sym_BSLASHparencite] = ACTIONS(12543), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHParencite] = ACTIONS(12543), + [anon_sym_BSLASHfootcite] = ACTIONS(12543), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12543), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12543), + [anon_sym_BSLASHtextcite] = ACTIONS(12543), + [anon_sym_BSLASHTextcite] = ACTIONS(12543), + [anon_sym_BSLASHsmartcite] = ACTIONS(12543), + [anon_sym_BSLASHSmartcite] = ACTIONS(12543), + [anon_sym_BSLASHsupercite] = ACTIONS(12543), + [anon_sym_BSLASHautocite] = ACTIONS(12543), + [anon_sym_BSLASHAutocite] = ACTIONS(12543), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHvolcite] = ACTIONS(12543), + [anon_sym_BSLASHVolcite] = ACTIONS(12543), + [anon_sym_BSLASHpvolcite] = ACTIONS(12543), + [anon_sym_BSLASHPvolcite] = ACTIONS(12543), + [anon_sym_BSLASHfvolcite] = ACTIONS(12543), + [anon_sym_BSLASHftvolcite] = ACTIONS(12543), + [anon_sym_BSLASHsvolcite] = ACTIONS(12543), + [anon_sym_BSLASHSvolcite] = ACTIONS(12543), + [anon_sym_BSLASHtvolcite] = ACTIONS(12543), + [anon_sym_BSLASHTvolcite] = ACTIONS(12543), + [anon_sym_BSLASHavolcite] = ACTIONS(12543), + [anon_sym_BSLASHAvolcite] = ACTIONS(12543), + [anon_sym_BSLASHnotecite] = ACTIONS(12543), + [anon_sym_BSLASHpnotecite] = ACTIONS(12543), + [anon_sym_BSLASHPnotecite] = ACTIONS(12543), + [anon_sym_BSLASHfnotecite] = ACTIONS(12543), + [anon_sym_BSLASHusepackage] = ACTIONS(12543), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12543), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12543), + [anon_sym_BSLASHinclude] = ACTIONS(12543), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12543), + [anon_sym_BSLASHinput] = ACTIONS(12543), + [anon_sym_BSLASHsubfile] = ACTIONS(12543), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12543), + [anon_sym_BSLASHbibliography] = ACTIONS(12543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12543), + [anon_sym_BSLASHincludesvg] = ACTIONS(12543), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12543), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12543), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12543), + [anon_sym_BSLASHimport] = ACTIONS(12543), + [anon_sym_BSLASHsubimport] = ACTIONS(12543), + [anon_sym_BSLASHinputfrom] = ACTIONS(12543), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12543), + [anon_sym_BSLASHincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHlabel] = ACTIONS(12543), + [anon_sym_BSLASHref] = ACTIONS(12543), + [anon_sym_BSLASHvref] = ACTIONS(12543), + [anon_sym_BSLASHVref] = ACTIONS(12543), + [anon_sym_BSLASHautoref] = ACTIONS(12543), + [anon_sym_BSLASHpageref] = ACTIONS(12543), + [anon_sym_BSLASHcref] = ACTIONS(12543), + [anon_sym_BSLASHCref] = ACTIONS(12543), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnameCref] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHlabelcref] = ACTIONS(12543), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12543), + [anon_sym_BSLASHeqref] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange] = ACTIONS(12543), + [anon_sym_BSLASHCrefrange] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewlabel] = ACTIONS(12543), + [anon_sym_BSLASHnewcommand] = ACTIONS(12543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12543), + [anon_sym_BSLASHgls] = ACTIONS(12543), + [anon_sym_BSLASHGls] = ACTIONS(12543), + [anon_sym_BSLASHGLS] = ACTIONS(12543), + [anon_sym_BSLASHglspl] = ACTIONS(12543), + [anon_sym_BSLASHGlspl] = ACTIONS(12543), + [anon_sym_BSLASHGLSpl] = ACTIONS(12543), + [anon_sym_BSLASHglsdisp] = ACTIONS(12543), + [anon_sym_BSLASHglslink] = ACTIONS(12543), + [anon_sym_BSLASHglstext] = ACTIONS(12543), + [anon_sym_BSLASHGlstext] = ACTIONS(12543), + [anon_sym_BSLASHGLStext] = ACTIONS(12543), + [anon_sym_BSLASHglsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12543), + [anon_sym_BSLASHglsplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSplural] = ACTIONS(12543), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHglsname] = ACTIONS(12543), + [anon_sym_BSLASHGlsname] = ACTIONS(12543), + [anon_sym_BSLASHGLSname] = ACTIONS(12543), + [anon_sym_BSLASHglssymbol] = ACTIONS(12543), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12543), + [anon_sym_BSLASHglsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12543), + [anon_sym_BSLASHglsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12543), + [anon_sym_BSLASHglsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12543), + [anon_sym_BSLASHglsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12543), + [anon_sym_BSLASHglsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12543), + [anon_sym_BSLASHnewacronym] = ACTIONS(12543), + [anon_sym_BSLASHacrshort] = ACTIONS(12543), + [anon_sym_BSLASHAcrshort] = ACTIONS(12543), + [anon_sym_BSLASHACRshort] = ACTIONS(12543), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12543), + [anon_sym_BSLASHacrlong] = ACTIONS(12543), + [anon_sym_BSLASHAcrlong] = ACTIONS(12543), + [anon_sym_BSLASHACRlong] = ACTIONS(12543), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12543), + [anon_sym_BSLASHacrfull] = ACTIONS(12543), + [anon_sym_BSLASHAcrfull] = ACTIONS(12543), + [anon_sym_BSLASHACRfull] = ACTIONS(12543), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12543), + [anon_sym_BSLASHacs] = ACTIONS(12543), + [anon_sym_BSLASHAcs] = ACTIONS(12543), + [anon_sym_BSLASHacsp] = ACTIONS(12543), + [anon_sym_BSLASHAcsp] = ACTIONS(12543), + [anon_sym_BSLASHacl] = ACTIONS(12543), + [anon_sym_BSLASHAcl] = ACTIONS(12543), + [anon_sym_BSLASHaclp] = ACTIONS(12543), + [anon_sym_BSLASHAclp] = ACTIONS(12543), + [anon_sym_BSLASHacf] = ACTIONS(12543), + [anon_sym_BSLASHAcf] = ACTIONS(12543), + [anon_sym_BSLASHacfp] = ACTIONS(12543), + [anon_sym_BSLASHAcfp] = ACTIONS(12543), + [anon_sym_BSLASHac] = ACTIONS(12543), + [anon_sym_BSLASHAc] = ACTIONS(12543), + [anon_sym_BSLASHacp] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12543), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12543), + [anon_sym_BSLASHcolor] = ACTIONS(12543), + [anon_sym_BSLASHcolorbox] = ACTIONS(12543), + [anon_sym_BSLASHtextcolor] = ACTIONS(12543), + [anon_sym_BSLASHpagecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12543), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12543), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12543), + }, + [810] = { + [sym_generic_command_name] = ACTIONS(12539), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12539), + [aux_sym_chapter_token1] = ACTIONS(12539), + [aux_sym_section_token1] = ACTIONS(12539), + [aux_sym_subsection_token1] = ACTIONS(12539), + [aux_sym_subsubsection_token1] = ACTIONS(12539), + [aux_sym_paragraph_token1] = ACTIONS(12539), + [aux_sym_subparagraph_token1] = ACTIONS(12539), + [anon_sym_BSLASHitem] = ACTIONS(12539), + [anon_sym_LBRACK] = ACTIONS(12537), + [anon_sym_LBRACE] = ACTIONS(12537), + [anon_sym_LPAREN] = ACTIONS(12537), + [anon_sym_COMMA] = ACTIONS(12537), + [anon_sym_EQ] = ACTIONS(12537), + [sym_word] = ACTIONS(12537), + [sym_param] = ACTIONS(12537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12537), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12537), + [anon_sym_DOLLAR] = ACTIONS(12539), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12537), + [anon_sym_BSLASHbegin] = ACTIONS(12539), + [anon_sym_BSLASHend] = ACTIONS(12539), + [anon_sym_BSLASHcaption] = ACTIONS(12539), + [anon_sym_BSLASHcite] = ACTIONS(12539), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCite] = ACTIONS(12539), + [anon_sym_BSLASHnocite] = ACTIONS(12539), + [anon_sym_BSLASHcitet] = ACTIONS(12539), + [anon_sym_BSLASHcitep] = ACTIONS(12539), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteauthor] = ACTIONS(12539), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12539), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitetitle] = ACTIONS(12539), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteyear] = ACTIONS(12539), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitedate] = ACTIONS(12539), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteurl] = ACTIONS(12539), + [anon_sym_BSLASHfullcite] = ACTIONS(12539), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12539), + [anon_sym_BSLASHcitealt] = ACTIONS(12539), + [anon_sym_BSLASHcitealp] = ACTIONS(12539), + [anon_sym_BSLASHcitetext] = ACTIONS(12539), + [anon_sym_BSLASHparencite] = ACTIONS(12539), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHParencite] = ACTIONS(12539), + [anon_sym_BSLASHfootcite] = ACTIONS(12539), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12539), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12539), + [anon_sym_BSLASHtextcite] = ACTIONS(12539), + [anon_sym_BSLASHTextcite] = ACTIONS(12539), + [anon_sym_BSLASHsmartcite] = ACTIONS(12539), + [anon_sym_BSLASHSmartcite] = ACTIONS(12539), + [anon_sym_BSLASHsupercite] = ACTIONS(12539), + [anon_sym_BSLASHautocite] = ACTIONS(12539), + [anon_sym_BSLASHAutocite] = ACTIONS(12539), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHvolcite] = ACTIONS(12539), + [anon_sym_BSLASHVolcite] = ACTIONS(12539), + [anon_sym_BSLASHpvolcite] = ACTIONS(12539), + [anon_sym_BSLASHPvolcite] = ACTIONS(12539), + [anon_sym_BSLASHfvolcite] = ACTIONS(12539), + [anon_sym_BSLASHftvolcite] = ACTIONS(12539), + [anon_sym_BSLASHsvolcite] = ACTIONS(12539), + [anon_sym_BSLASHSvolcite] = ACTIONS(12539), + [anon_sym_BSLASHtvolcite] = ACTIONS(12539), + [anon_sym_BSLASHTvolcite] = ACTIONS(12539), + [anon_sym_BSLASHavolcite] = ACTIONS(12539), + [anon_sym_BSLASHAvolcite] = ACTIONS(12539), + [anon_sym_BSLASHnotecite] = ACTIONS(12539), + [anon_sym_BSLASHpnotecite] = ACTIONS(12539), + [anon_sym_BSLASHPnotecite] = ACTIONS(12539), + [anon_sym_BSLASHfnotecite] = ACTIONS(12539), + [anon_sym_BSLASHusepackage] = ACTIONS(12539), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12539), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12539), + [anon_sym_BSLASHinclude] = ACTIONS(12539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12539), + [anon_sym_BSLASHinput] = ACTIONS(12539), + [anon_sym_BSLASHsubfile] = ACTIONS(12539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12539), + [anon_sym_BSLASHbibliography] = ACTIONS(12539), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12539), + [anon_sym_BSLASHincludesvg] = ACTIONS(12539), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12539), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12539), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12539), + [anon_sym_BSLASHimport] = ACTIONS(12539), + [anon_sym_BSLASHsubimport] = ACTIONS(12539), + [anon_sym_BSLASHinputfrom] = ACTIONS(12539), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12539), + [anon_sym_BSLASHincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHlabel] = ACTIONS(12539), + [anon_sym_BSLASHref] = ACTIONS(12539), + [anon_sym_BSLASHvref] = ACTIONS(12539), + [anon_sym_BSLASHVref] = ACTIONS(12539), + [anon_sym_BSLASHautoref] = ACTIONS(12539), + [anon_sym_BSLASHpageref] = ACTIONS(12539), + [anon_sym_BSLASHcref] = ACTIONS(12539), + [anon_sym_BSLASHCref] = ACTIONS(12539), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnameCref] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHlabelcref] = ACTIONS(12539), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12539), + [anon_sym_BSLASHeqref] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange] = ACTIONS(12539), + [anon_sym_BSLASHCrefrange] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewlabel] = ACTIONS(12539), + [anon_sym_BSLASHnewcommand] = ACTIONS(12539), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12539), + [anon_sym_BSLASHgls] = ACTIONS(12539), + [anon_sym_BSLASHGls] = ACTIONS(12539), + [anon_sym_BSLASHGLS] = ACTIONS(12539), + [anon_sym_BSLASHglspl] = ACTIONS(12539), + [anon_sym_BSLASHGlspl] = ACTIONS(12539), + [anon_sym_BSLASHGLSpl] = ACTIONS(12539), + [anon_sym_BSLASHglsdisp] = ACTIONS(12539), + [anon_sym_BSLASHglslink] = ACTIONS(12539), + [anon_sym_BSLASHglstext] = ACTIONS(12539), + [anon_sym_BSLASHGlstext] = ACTIONS(12539), + [anon_sym_BSLASHGLStext] = ACTIONS(12539), + [anon_sym_BSLASHglsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12539), + [anon_sym_BSLASHglsplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSplural] = ACTIONS(12539), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHglsname] = ACTIONS(12539), + [anon_sym_BSLASHGlsname] = ACTIONS(12539), + [anon_sym_BSLASHGLSname] = ACTIONS(12539), + [anon_sym_BSLASHglssymbol] = ACTIONS(12539), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12539), + [anon_sym_BSLASHglsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12539), + [anon_sym_BSLASHglsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12539), + [anon_sym_BSLASHglsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12539), + [anon_sym_BSLASHglsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12539), + [anon_sym_BSLASHglsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12539), + [anon_sym_BSLASHnewacronym] = ACTIONS(12539), + [anon_sym_BSLASHacrshort] = ACTIONS(12539), + [anon_sym_BSLASHAcrshort] = ACTIONS(12539), + [anon_sym_BSLASHACRshort] = ACTIONS(12539), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12539), + [anon_sym_BSLASHacrlong] = ACTIONS(12539), + [anon_sym_BSLASHAcrlong] = ACTIONS(12539), + [anon_sym_BSLASHACRlong] = ACTIONS(12539), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12539), + [anon_sym_BSLASHacrfull] = ACTIONS(12539), + [anon_sym_BSLASHAcrfull] = ACTIONS(12539), + [anon_sym_BSLASHACRfull] = ACTIONS(12539), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12539), + [anon_sym_BSLASHacs] = ACTIONS(12539), + [anon_sym_BSLASHAcs] = ACTIONS(12539), + [anon_sym_BSLASHacsp] = ACTIONS(12539), + [anon_sym_BSLASHAcsp] = ACTIONS(12539), + [anon_sym_BSLASHacl] = ACTIONS(12539), + [anon_sym_BSLASHAcl] = ACTIONS(12539), + [anon_sym_BSLASHaclp] = ACTIONS(12539), + [anon_sym_BSLASHAclp] = ACTIONS(12539), + [anon_sym_BSLASHacf] = ACTIONS(12539), + [anon_sym_BSLASHAcf] = ACTIONS(12539), + [anon_sym_BSLASHacfp] = ACTIONS(12539), + [anon_sym_BSLASHAcfp] = ACTIONS(12539), + [anon_sym_BSLASHac] = ACTIONS(12539), + [anon_sym_BSLASHAc] = ACTIONS(12539), + [anon_sym_BSLASHacp] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12539), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12539), + [anon_sym_BSLASHcolor] = ACTIONS(12539), + [anon_sym_BSLASHcolorbox] = ACTIONS(12539), + [anon_sym_BSLASHtextcolor] = ACTIONS(12539), + [anon_sym_BSLASHpagecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12539), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12539), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12539), + }, + [811] = { + [sym_generic_command_name] = ACTIONS(12531), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12531), + [aux_sym_chapter_token1] = ACTIONS(12531), + [aux_sym_section_token1] = ACTIONS(12531), + [aux_sym_subsection_token1] = ACTIONS(12531), + [aux_sym_subsubsection_token1] = ACTIONS(12531), + [aux_sym_paragraph_token1] = ACTIONS(12531), + [aux_sym_subparagraph_token1] = ACTIONS(12531), + [anon_sym_BSLASHitem] = ACTIONS(12531), + [anon_sym_LBRACK] = ACTIONS(12529), + [anon_sym_LBRACE] = ACTIONS(12529), + [anon_sym_LPAREN] = ACTIONS(12529), + [anon_sym_COMMA] = ACTIONS(12529), + [anon_sym_EQ] = ACTIONS(12529), + [sym_word] = ACTIONS(12529), + [sym_param] = ACTIONS(12529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12529), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12529), + [anon_sym_DOLLAR] = ACTIONS(12531), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12529), + [anon_sym_BSLASHbegin] = ACTIONS(12531), + [anon_sym_BSLASHend] = ACTIONS(12531), + [anon_sym_BSLASHcaption] = ACTIONS(12531), + [anon_sym_BSLASHcite] = ACTIONS(12531), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCite] = ACTIONS(12531), + [anon_sym_BSLASHnocite] = ACTIONS(12531), + [anon_sym_BSLASHcitet] = ACTIONS(12531), + [anon_sym_BSLASHcitep] = ACTIONS(12531), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteauthor] = ACTIONS(12531), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12531), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitetitle] = ACTIONS(12531), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteyear] = ACTIONS(12531), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitedate] = ACTIONS(12531), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteurl] = ACTIONS(12531), + [anon_sym_BSLASHfullcite] = ACTIONS(12531), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12531), + [anon_sym_BSLASHcitealt] = ACTIONS(12531), + [anon_sym_BSLASHcitealp] = ACTIONS(12531), + [anon_sym_BSLASHcitetext] = ACTIONS(12531), + [anon_sym_BSLASHparencite] = ACTIONS(12531), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHParencite] = ACTIONS(12531), + [anon_sym_BSLASHfootcite] = ACTIONS(12531), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12531), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12531), + [anon_sym_BSLASHtextcite] = ACTIONS(12531), + [anon_sym_BSLASHTextcite] = ACTIONS(12531), + [anon_sym_BSLASHsmartcite] = ACTIONS(12531), + [anon_sym_BSLASHSmartcite] = ACTIONS(12531), + [anon_sym_BSLASHsupercite] = ACTIONS(12531), + [anon_sym_BSLASHautocite] = ACTIONS(12531), + [anon_sym_BSLASHAutocite] = ACTIONS(12531), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHvolcite] = ACTIONS(12531), + [anon_sym_BSLASHVolcite] = ACTIONS(12531), + [anon_sym_BSLASHpvolcite] = ACTIONS(12531), + [anon_sym_BSLASHPvolcite] = ACTIONS(12531), + [anon_sym_BSLASHfvolcite] = ACTIONS(12531), + [anon_sym_BSLASHftvolcite] = ACTIONS(12531), + [anon_sym_BSLASHsvolcite] = ACTIONS(12531), + [anon_sym_BSLASHSvolcite] = ACTIONS(12531), + [anon_sym_BSLASHtvolcite] = ACTIONS(12531), + [anon_sym_BSLASHTvolcite] = ACTIONS(12531), + [anon_sym_BSLASHavolcite] = ACTIONS(12531), + [anon_sym_BSLASHAvolcite] = ACTIONS(12531), + [anon_sym_BSLASHnotecite] = ACTIONS(12531), + [anon_sym_BSLASHpnotecite] = ACTIONS(12531), + [anon_sym_BSLASHPnotecite] = ACTIONS(12531), + [anon_sym_BSLASHfnotecite] = ACTIONS(12531), + [anon_sym_BSLASHusepackage] = ACTIONS(12531), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12531), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12531), + [anon_sym_BSLASHinclude] = ACTIONS(12531), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12531), + [anon_sym_BSLASHinput] = ACTIONS(12531), + [anon_sym_BSLASHsubfile] = ACTIONS(12531), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12531), + [anon_sym_BSLASHbibliography] = ACTIONS(12531), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12531), + [anon_sym_BSLASHincludesvg] = ACTIONS(12531), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12531), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12531), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12531), + [anon_sym_BSLASHimport] = ACTIONS(12531), + [anon_sym_BSLASHsubimport] = ACTIONS(12531), + [anon_sym_BSLASHinputfrom] = ACTIONS(12531), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12531), + [anon_sym_BSLASHincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHlabel] = ACTIONS(12531), + [anon_sym_BSLASHref] = ACTIONS(12531), + [anon_sym_BSLASHvref] = ACTIONS(12531), + [anon_sym_BSLASHVref] = ACTIONS(12531), + [anon_sym_BSLASHautoref] = ACTIONS(12531), + [anon_sym_BSLASHpageref] = ACTIONS(12531), + [anon_sym_BSLASHcref] = ACTIONS(12531), + [anon_sym_BSLASHCref] = ACTIONS(12531), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnameCref] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHlabelcref] = ACTIONS(12531), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12531), + [anon_sym_BSLASHeqref] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange] = ACTIONS(12531), + [anon_sym_BSLASHCrefrange] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewlabel] = ACTIONS(12531), + [anon_sym_BSLASHnewcommand] = ACTIONS(12531), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12531), + [anon_sym_BSLASHgls] = ACTIONS(12531), + [anon_sym_BSLASHGls] = ACTIONS(12531), + [anon_sym_BSLASHGLS] = ACTIONS(12531), + [anon_sym_BSLASHglspl] = ACTIONS(12531), + [anon_sym_BSLASHGlspl] = ACTIONS(12531), + [anon_sym_BSLASHGLSpl] = ACTIONS(12531), + [anon_sym_BSLASHglsdisp] = ACTIONS(12531), + [anon_sym_BSLASHglslink] = ACTIONS(12531), + [anon_sym_BSLASHglstext] = ACTIONS(12531), + [anon_sym_BSLASHGlstext] = ACTIONS(12531), + [anon_sym_BSLASHGLStext] = ACTIONS(12531), + [anon_sym_BSLASHglsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12531), + [anon_sym_BSLASHglsplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSplural] = ACTIONS(12531), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHglsname] = ACTIONS(12531), + [anon_sym_BSLASHGlsname] = ACTIONS(12531), + [anon_sym_BSLASHGLSname] = ACTIONS(12531), + [anon_sym_BSLASHglssymbol] = ACTIONS(12531), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12531), + [anon_sym_BSLASHglsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12531), + [anon_sym_BSLASHglsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12531), + [anon_sym_BSLASHglsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12531), + [anon_sym_BSLASHglsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12531), + [anon_sym_BSLASHglsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12531), + [anon_sym_BSLASHnewacronym] = ACTIONS(12531), + [anon_sym_BSLASHacrshort] = ACTIONS(12531), + [anon_sym_BSLASHAcrshort] = ACTIONS(12531), + [anon_sym_BSLASHACRshort] = ACTIONS(12531), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12531), + [anon_sym_BSLASHacrlong] = ACTIONS(12531), + [anon_sym_BSLASHAcrlong] = ACTIONS(12531), + [anon_sym_BSLASHACRlong] = ACTIONS(12531), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12531), + [anon_sym_BSLASHacrfull] = ACTIONS(12531), + [anon_sym_BSLASHAcrfull] = ACTIONS(12531), + [anon_sym_BSLASHACRfull] = ACTIONS(12531), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12531), + [anon_sym_BSLASHacs] = ACTIONS(12531), + [anon_sym_BSLASHAcs] = ACTIONS(12531), + [anon_sym_BSLASHacsp] = ACTIONS(12531), + [anon_sym_BSLASHAcsp] = ACTIONS(12531), + [anon_sym_BSLASHacl] = ACTIONS(12531), + [anon_sym_BSLASHAcl] = ACTIONS(12531), + [anon_sym_BSLASHaclp] = ACTIONS(12531), + [anon_sym_BSLASHAclp] = ACTIONS(12531), + [anon_sym_BSLASHacf] = ACTIONS(12531), + [anon_sym_BSLASHAcf] = ACTIONS(12531), + [anon_sym_BSLASHacfp] = ACTIONS(12531), + [anon_sym_BSLASHAcfp] = ACTIONS(12531), + [anon_sym_BSLASHac] = ACTIONS(12531), + [anon_sym_BSLASHAc] = ACTIONS(12531), + [anon_sym_BSLASHacp] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12531), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12531), + [anon_sym_BSLASHcolor] = ACTIONS(12531), + [anon_sym_BSLASHcolorbox] = ACTIONS(12531), + [anon_sym_BSLASHtextcolor] = ACTIONS(12531), + [anon_sym_BSLASHpagecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12531), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12531), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12531), + }, + [812] = { + [sym_generic_command_name] = ACTIONS(12527), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12527), + [aux_sym_chapter_token1] = ACTIONS(12527), + [aux_sym_section_token1] = ACTIONS(12527), + [aux_sym_subsection_token1] = ACTIONS(12527), + [aux_sym_subsubsection_token1] = ACTIONS(12527), + [aux_sym_paragraph_token1] = ACTIONS(12527), + [aux_sym_subparagraph_token1] = ACTIONS(12527), + [anon_sym_BSLASHitem] = ACTIONS(12527), + [anon_sym_LBRACK] = ACTIONS(12525), + [anon_sym_LBRACE] = ACTIONS(12525), + [anon_sym_LPAREN] = ACTIONS(12525), + [anon_sym_COMMA] = ACTIONS(12525), + [anon_sym_EQ] = ACTIONS(12525), + [sym_word] = ACTIONS(12525), + [sym_param] = ACTIONS(12525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12525), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12525), + [anon_sym_DOLLAR] = ACTIONS(12527), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12525), + [anon_sym_BSLASHbegin] = ACTIONS(12527), + [anon_sym_BSLASHend] = ACTIONS(12527), + [anon_sym_BSLASHcaption] = ACTIONS(12527), + [anon_sym_BSLASHcite] = ACTIONS(12527), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCite] = ACTIONS(12527), + [anon_sym_BSLASHnocite] = ACTIONS(12527), + [anon_sym_BSLASHcitet] = ACTIONS(12527), + [anon_sym_BSLASHcitep] = ACTIONS(12527), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteauthor] = ACTIONS(12527), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12527), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitetitle] = ACTIONS(12527), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteyear] = ACTIONS(12527), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitedate] = ACTIONS(12527), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteurl] = ACTIONS(12527), + [anon_sym_BSLASHfullcite] = ACTIONS(12527), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12527), + [anon_sym_BSLASHcitealt] = ACTIONS(12527), + [anon_sym_BSLASHcitealp] = ACTIONS(12527), + [anon_sym_BSLASHcitetext] = ACTIONS(12527), + [anon_sym_BSLASHparencite] = ACTIONS(12527), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHParencite] = ACTIONS(12527), + [anon_sym_BSLASHfootcite] = ACTIONS(12527), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12527), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12527), + [anon_sym_BSLASHtextcite] = ACTIONS(12527), + [anon_sym_BSLASHTextcite] = ACTIONS(12527), + [anon_sym_BSLASHsmartcite] = ACTIONS(12527), + [anon_sym_BSLASHSmartcite] = ACTIONS(12527), + [anon_sym_BSLASHsupercite] = ACTIONS(12527), + [anon_sym_BSLASHautocite] = ACTIONS(12527), + [anon_sym_BSLASHAutocite] = ACTIONS(12527), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHvolcite] = ACTIONS(12527), + [anon_sym_BSLASHVolcite] = ACTIONS(12527), + [anon_sym_BSLASHpvolcite] = ACTIONS(12527), + [anon_sym_BSLASHPvolcite] = ACTIONS(12527), + [anon_sym_BSLASHfvolcite] = ACTIONS(12527), + [anon_sym_BSLASHftvolcite] = ACTIONS(12527), + [anon_sym_BSLASHsvolcite] = ACTIONS(12527), + [anon_sym_BSLASHSvolcite] = ACTIONS(12527), + [anon_sym_BSLASHtvolcite] = ACTIONS(12527), + [anon_sym_BSLASHTvolcite] = ACTIONS(12527), + [anon_sym_BSLASHavolcite] = ACTIONS(12527), + [anon_sym_BSLASHAvolcite] = ACTIONS(12527), + [anon_sym_BSLASHnotecite] = ACTIONS(12527), + [anon_sym_BSLASHpnotecite] = ACTIONS(12527), + [anon_sym_BSLASHPnotecite] = ACTIONS(12527), + [anon_sym_BSLASHfnotecite] = ACTIONS(12527), + [anon_sym_BSLASHusepackage] = ACTIONS(12527), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12527), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12527), + [anon_sym_BSLASHinclude] = ACTIONS(12527), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12527), + [anon_sym_BSLASHinput] = ACTIONS(12527), + [anon_sym_BSLASHsubfile] = ACTIONS(12527), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12527), + [anon_sym_BSLASHbibliography] = ACTIONS(12527), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12527), + [anon_sym_BSLASHincludesvg] = ACTIONS(12527), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12527), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12527), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12527), + [anon_sym_BSLASHimport] = ACTIONS(12527), + [anon_sym_BSLASHsubimport] = ACTIONS(12527), + [anon_sym_BSLASHinputfrom] = ACTIONS(12527), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12527), + [anon_sym_BSLASHincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHlabel] = ACTIONS(12527), + [anon_sym_BSLASHref] = ACTIONS(12527), + [anon_sym_BSLASHvref] = ACTIONS(12527), + [anon_sym_BSLASHVref] = ACTIONS(12527), + [anon_sym_BSLASHautoref] = ACTIONS(12527), + [anon_sym_BSLASHpageref] = ACTIONS(12527), + [anon_sym_BSLASHcref] = ACTIONS(12527), + [anon_sym_BSLASHCref] = ACTIONS(12527), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnameCref] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHlabelcref] = ACTIONS(12527), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12527), + [anon_sym_BSLASHeqref] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange] = ACTIONS(12527), + [anon_sym_BSLASHCrefrange] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewlabel] = ACTIONS(12527), + [anon_sym_BSLASHnewcommand] = ACTIONS(12527), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12527), + [anon_sym_BSLASHgls] = ACTIONS(12527), + [anon_sym_BSLASHGls] = ACTIONS(12527), + [anon_sym_BSLASHGLS] = ACTIONS(12527), + [anon_sym_BSLASHglspl] = ACTIONS(12527), + [anon_sym_BSLASHGlspl] = ACTIONS(12527), + [anon_sym_BSLASHGLSpl] = ACTIONS(12527), + [anon_sym_BSLASHglsdisp] = ACTIONS(12527), + [anon_sym_BSLASHglslink] = ACTIONS(12527), + [anon_sym_BSLASHglstext] = ACTIONS(12527), + [anon_sym_BSLASHGlstext] = ACTIONS(12527), + [anon_sym_BSLASHGLStext] = ACTIONS(12527), + [anon_sym_BSLASHglsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12527), + [anon_sym_BSLASHglsplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSplural] = ACTIONS(12527), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHglsname] = ACTIONS(12527), + [anon_sym_BSLASHGlsname] = ACTIONS(12527), + [anon_sym_BSLASHGLSname] = ACTIONS(12527), + [anon_sym_BSLASHglssymbol] = ACTIONS(12527), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12527), + [anon_sym_BSLASHglsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12527), + [anon_sym_BSLASHglsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12527), + [anon_sym_BSLASHglsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12527), + [anon_sym_BSLASHglsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12527), + [anon_sym_BSLASHglsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12527), + [anon_sym_BSLASHnewacronym] = ACTIONS(12527), + [anon_sym_BSLASHacrshort] = ACTIONS(12527), + [anon_sym_BSLASHAcrshort] = ACTIONS(12527), + [anon_sym_BSLASHACRshort] = ACTIONS(12527), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12527), + [anon_sym_BSLASHacrlong] = ACTIONS(12527), + [anon_sym_BSLASHAcrlong] = ACTIONS(12527), + [anon_sym_BSLASHACRlong] = ACTIONS(12527), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12527), + [anon_sym_BSLASHacrfull] = ACTIONS(12527), + [anon_sym_BSLASHAcrfull] = ACTIONS(12527), + [anon_sym_BSLASHACRfull] = ACTIONS(12527), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12527), + [anon_sym_BSLASHacs] = ACTIONS(12527), + [anon_sym_BSLASHAcs] = ACTIONS(12527), + [anon_sym_BSLASHacsp] = ACTIONS(12527), + [anon_sym_BSLASHAcsp] = ACTIONS(12527), + [anon_sym_BSLASHacl] = ACTIONS(12527), + [anon_sym_BSLASHAcl] = ACTIONS(12527), + [anon_sym_BSLASHaclp] = ACTIONS(12527), + [anon_sym_BSLASHAclp] = ACTIONS(12527), + [anon_sym_BSLASHacf] = ACTIONS(12527), + [anon_sym_BSLASHAcf] = ACTIONS(12527), + [anon_sym_BSLASHacfp] = ACTIONS(12527), + [anon_sym_BSLASHAcfp] = ACTIONS(12527), + [anon_sym_BSLASHac] = ACTIONS(12527), + [anon_sym_BSLASHAc] = ACTIONS(12527), + [anon_sym_BSLASHacp] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12527), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12527), + [anon_sym_BSLASHcolor] = ACTIONS(12527), + [anon_sym_BSLASHcolorbox] = ACTIONS(12527), + [anon_sym_BSLASHtextcolor] = ACTIONS(12527), + [anon_sym_BSLASHpagecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12527), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12527), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12527), + }, + [813] = { + [sym_generic_command_name] = ACTIONS(12523), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12523), + [aux_sym_chapter_token1] = ACTIONS(12523), + [aux_sym_section_token1] = ACTIONS(12523), + [aux_sym_subsection_token1] = ACTIONS(12523), + [aux_sym_subsubsection_token1] = ACTIONS(12523), + [aux_sym_paragraph_token1] = ACTIONS(12523), + [aux_sym_subparagraph_token1] = ACTIONS(12523), + [anon_sym_BSLASHitem] = ACTIONS(12523), + [anon_sym_LBRACK] = ACTIONS(12521), + [anon_sym_LBRACE] = ACTIONS(12521), + [anon_sym_LPAREN] = ACTIONS(12521), + [anon_sym_COMMA] = ACTIONS(12521), + [anon_sym_EQ] = ACTIONS(12521), + [sym_word] = ACTIONS(12521), + [sym_param] = ACTIONS(12521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12521), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12521), + [anon_sym_DOLLAR] = ACTIONS(12523), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12521), + [anon_sym_BSLASHbegin] = ACTIONS(12523), + [anon_sym_BSLASHend] = ACTIONS(12523), + [anon_sym_BSLASHcaption] = ACTIONS(12523), + [anon_sym_BSLASHcite] = ACTIONS(12523), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCite] = ACTIONS(12523), + [anon_sym_BSLASHnocite] = ACTIONS(12523), + [anon_sym_BSLASHcitet] = ACTIONS(12523), + [anon_sym_BSLASHcitep] = ACTIONS(12523), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteauthor] = ACTIONS(12523), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12523), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitetitle] = ACTIONS(12523), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteyear] = ACTIONS(12523), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitedate] = ACTIONS(12523), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteurl] = ACTIONS(12523), + [anon_sym_BSLASHfullcite] = ACTIONS(12523), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12523), + [anon_sym_BSLASHcitealt] = ACTIONS(12523), + [anon_sym_BSLASHcitealp] = ACTIONS(12523), + [anon_sym_BSLASHcitetext] = ACTIONS(12523), + [anon_sym_BSLASHparencite] = ACTIONS(12523), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHParencite] = ACTIONS(12523), + [anon_sym_BSLASHfootcite] = ACTIONS(12523), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12523), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12523), + [anon_sym_BSLASHtextcite] = ACTIONS(12523), + [anon_sym_BSLASHTextcite] = ACTIONS(12523), + [anon_sym_BSLASHsmartcite] = ACTIONS(12523), + [anon_sym_BSLASHSmartcite] = ACTIONS(12523), + [anon_sym_BSLASHsupercite] = ACTIONS(12523), + [anon_sym_BSLASHautocite] = ACTIONS(12523), + [anon_sym_BSLASHAutocite] = ACTIONS(12523), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHvolcite] = ACTIONS(12523), + [anon_sym_BSLASHVolcite] = ACTIONS(12523), + [anon_sym_BSLASHpvolcite] = ACTIONS(12523), + [anon_sym_BSLASHPvolcite] = ACTIONS(12523), + [anon_sym_BSLASHfvolcite] = ACTIONS(12523), + [anon_sym_BSLASHftvolcite] = ACTIONS(12523), + [anon_sym_BSLASHsvolcite] = ACTIONS(12523), + [anon_sym_BSLASHSvolcite] = ACTIONS(12523), + [anon_sym_BSLASHtvolcite] = ACTIONS(12523), + [anon_sym_BSLASHTvolcite] = ACTIONS(12523), + [anon_sym_BSLASHavolcite] = ACTIONS(12523), + [anon_sym_BSLASHAvolcite] = ACTIONS(12523), + [anon_sym_BSLASHnotecite] = ACTIONS(12523), + [anon_sym_BSLASHpnotecite] = ACTIONS(12523), + [anon_sym_BSLASHPnotecite] = ACTIONS(12523), + [anon_sym_BSLASHfnotecite] = ACTIONS(12523), + [anon_sym_BSLASHusepackage] = ACTIONS(12523), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12523), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12523), + [anon_sym_BSLASHinclude] = ACTIONS(12523), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12523), + [anon_sym_BSLASHinput] = ACTIONS(12523), + [anon_sym_BSLASHsubfile] = ACTIONS(12523), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12523), + [anon_sym_BSLASHbibliography] = ACTIONS(12523), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12523), + [anon_sym_BSLASHincludesvg] = ACTIONS(12523), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12523), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12523), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12523), + [anon_sym_BSLASHimport] = ACTIONS(12523), + [anon_sym_BSLASHsubimport] = ACTIONS(12523), + [anon_sym_BSLASHinputfrom] = ACTIONS(12523), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12523), + [anon_sym_BSLASHincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHlabel] = ACTIONS(12523), + [anon_sym_BSLASHref] = ACTIONS(12523), + [anon_sym_BSLASHvref] = ACTIONS(12523), + [anon_sym_BSLASHVref] = ACTIONS(12523), + [anon_sym_BSLASHautoref] = ACTIONS(12523), + [anon_sym_BSLASHpageref] = ACTIONS(12523), + [anon_sym_BSLASHcref] = ACTIONS(12523), + [anon_sym_BSLASHCref] = ACTIONS(12523), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnameCref] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHlabelcref] = ACTIONS(12523), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12523), + [anon_sym_BSLASHeqref] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange] = ACTIONS(12523), + [anon_sym_BSLASHCrefrange] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewlabel] = ACTIONS(12523), + [anon_sym_BSLASHnewcommand] = ACTIONS(12523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12523), + [anon_sym_BSLASHgls] = ACTIONS(12523), + [anon_sym_BSLASHGls] = ACTIONS(12523), + [anon_sym_BSLASHGLS] = ACTIONS(12523), + [anon_sym_BSLASHglspl] = ACTIONS(12523), + [anon_sym_BSLASHGlspl] = ACTIONS(12523), + [anon_sym_BSLASHGLSpl] = ACTIONS(12523), + [anon_sym_BSLASHglsdisp] = ACTIONS(12523), + [anon_sym_BSLASHglslink] = ACTIONS(12523), + [anon_sym_BSLASHglstext] = ACTIONS(12523), + [anon_sym_BSLASHGlstext] = ACTIONS(12523), + [anon_sym_BSLASHGLStext] = ACTIONS(12523), + [anon_sym_BSLASHglsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12523), + [anon_sym_BSLASHglsplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSplural] = ACTIONS(12523), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHglsname] = ACTIONS(12523), + [anon_sym_BSLASHGlsname] = ACTIONS(12523), + [anon_sym_BSLASHGLSname] = ACTIONS(12523), + [anon_sym_BSLASHglssymbol] = ACTIONS(12523), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12523), + [anon_sym_BSLASHglsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12523), + [anon_sym_BSLASHglsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12523), + [anon_sym_BSLASHglsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12523), + [anon_sym_BSLASHglsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12523), + [anon_sym_BSLASHglsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12523), + [anon_sym_BSLASHnewacronym] = ACTIONS(12523), + [anon_sym_BSLASHacrshort] = ACTIONS(12523), + [anon_sym_BSLASHAcrshort] = ACTIONS(12523), + [anon_sym_BSLASHACRshort] = ACTIONS(12523), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12523), + [anon_sym_BSLASHacrlong] = ACTIONS(12523), + [anon_sym_BSLASHAcrlong] = ACTIONS(12523), + [anon_sym_BSLASHACRlong] = ACTIONS(12523), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12523), + [anon_sym_BSLASHacrfull] = ACTIONS(12523), + [anon_sym_BSLASHAcrfull] = ACTIONS(12523), + [anon_sym_BSLASHACRfull] = ACTIONS(12523), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12523), + [anon_sym_BSLASHacs] = ACTIONS(12523), + [anon_sym_BSLASHAcs] = ACTIONS(12523), + [anon_sym_BSLASHacsp] = ACTIONS(12523), + [anon_sym_BSLASHAcsp] = ACTIONS(12523), + [anon_sym_BSLASHacl] = ACTIONS(12523), + [anon_sym_BSLASHAcl] = ACTIONS(12523), + [anon_sym_BSLASHaclp] = ACTIONS(12523), + [anon_sym_BSLASHAclp] = ACTIONS(12523), + [anon_sym_BSLASHacf] = ACTIONS(12523), + [anon_sym_BSLASHAcf] = ACTIONS(12523), + [anon_sym_BSLASHacfp] = ACTIONS(12523), + [anon_sym_BSLASHAcfp] = ACTIONS(12523), + [anon_sym_BSLASHac] = ACTIONS(12523), + [anon_sym_BSLASHAc] = ACTIONS(12523), + [anon_sym_BSLASHacp] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12523), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12523), + [anon_sym_BSLASHcolor] = ACTIONS(12523), + [anon_sym_BSLASHcolorbox] = ACTIONS(12523), + [anon_sym_BSLASHtextcolor] = ACTIONS(12523), + [anon_sym_BSLASHpagecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12523), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12523), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12523), + }, + [814] = { + [sym_generic_command_name] = ACTIONS(12519), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12519), + [aux_sym_chapter_token1] = ACTIONS(12519), + [aux_sym_section_token1] = ACTIONS(12519), + [aux_sym_subsection_token1] = ACTIONS(12519), + [aux_sym_subsubsection_token1] = ACTIONS(12519), + [aux_sym_paragraph_token1] = ACTIONS(12519), + [aux_sym_subparagraph_token1] = ACTIONS(12519), + [anon_sym_BSLASHitem] = ACTIONS(12519), + [anon_sym_LBRACK] = ACTIONS(12517), + [anon_sym_LBRACE] = ACTIONS(12517), + [anon_sym_LPAREN] = ACTIONS(12517), + [anon_sym_COMMA] = ACTIONS(12517), + [anon_sym_EQ] = ACTIONS(12517), + [sym_word] = ACTIONS(12517), + [sym_param] = ACTIONS(12517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12517), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12517), + [anon_sym_DOLLAR] = ACTIONS(12519), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12517), + [anon_sym_BSLASHbegin] = ACTIONS(12519), + [anon_sym_BSLASHend] = ACTIONS(12519), + [anon_sym_BSLASHcaption] = ACTIONS(12519), + [anon_sym_BSLASHcite] = ACTIONS(12519), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCite] = ACTIONS(12519), + [anon_sym_BSLASHnocite] = ACTIONS(12519), + [anon_sym_BSLASHcitet] = ACTIONS(12519), + [anon_sym_BSLASHcitep] = ACTIONS(12519), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteauthor] = ACTIONS(12519), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12519), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitetitle] = ACTIONS(12519), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteyear] = ACTIONS(12519), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitedate] = ACTIONS(12519), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteurl] = ACTIONS(12519), + [anon_sym_BSLASHfullcite] = ACTIONS(12519), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12519), + [anon_sym_BSLASHcitealt] = ACTIONS(12519), + [anon_sym_BSLASHcitealp] = ACTIONS(12519), + [anon_sym_BSLASHcitetext] = ACTIONS(12519), + [anon_sym_BSLASHparencite] = ACTIONS(12519), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHParencite] = ACTIONS(12519), + [anon_sym_BSLASHfootcite] = ACTIONS(12519), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12519), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12519), + [anon_sym_BSLASHtextcite] = ACTIONS(12519), + [anon_sym_BSLASHTextcite] = ACTIONS(12519), + [anon_sym_BSLASHsmartcite] = ACTIONS(12519), + [anon_sym_BSLASHSmartcite] = ACTIONS(12519), + [anon_sym_BSLASHsupercite] = ACTIONS(12519), + [anon_sym_BSLASHautocite] = ACTIONS(12519), + [anon_sym_BSLASHAutocite] = ACTIONS(12519), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHvolcite] = ACTIONS(12519), + [anon_sym_BSLASHVolcite] = ACTIONS(12519), + [anon_sym_BSLASHpvolcite] = ACTIONS(12519), + [anon_sym_BSLASHPvolcite] = ACTIONS(12519), + [anon_sym_BSLASHfvolcite] = ACTIONS(12519), + [anon_sym_BSLASHftvolcite] = ACTIONS(12519), + [anon_sym_BSLASHsvolcite] = ACTIONS(12519), + [anon_sym_BSLASHSvolcite] = ACTIONS(12519), + [anon_sym_BSLASHtvolcite] = ACTIONS(12519), + [anon_sym_BSLASHTvolcite] = ACTIONS(12519), + [anon_sym_BSLASHavolcite] = ACTIONS(12519), + [anon_sym_BSLASHAvolcite] = ACTIONS(12519), + [anon_sym_BSLASHnotecite] = ACTIONS(12519), + [anon_sym_BSLASHpnotecite] = ACTIONS(12519), + [anon_sym_BSLASHPnotecite] = ACTIONS(12519), + [anon_sym_BSLASHfnotecite] = ACTIONS(12519), + [anon_sym_BSLASHusepackage] = ACTIONS(12519), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12519), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12519), + [anon_sym_BSLASHinclude] = ACTIONS(12519), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12519), + [anon_sym_BSLASHinput] = ACTIONS(12519), + [anon_sym_BSLASHsubfile] = ACTIONS(12519), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12519), + [anon_sym_BSLASHbibliography] = ACTIONS(12519), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12519), + [anon_sym_BSLASHincludesvg] = ACTIONS(12519), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12519), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12519), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12519), + [anon_sym_BSLASHimport] = ACTIONS(12519), + [anon_sym_BSLASHsubimport] = ACTIONS(12519), + [anon_sym_BSLASHinputfrom] = ACTIONS(12519), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12519), + [anon_sym_BSLASHincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHlabel] = ACTIONS(12519), + [anon_sym_BSLASHref] = ACTIONS(12519), + [anon_sym_BSLASHvref] = ACTIONS(12519), + [anon_sym_BSLASHVref] = ACTIONS(12519), + [anon_sym_BSLASHautoref] = ACTIONS(12519), + [anon_sym_BSLASHpageref] = ACTIONS(12519), + [anon_sym_BSLASHcref] = ACTIONS(12519), + [anon_sym_BSLASHCref] = ACTIONS(12519), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnameCref] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHlabelcref] = ACTIONS(12519), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12519), + [anon_sym_BSLASHeqref] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange] = ACTIONS(12519), + [anon_sym_BSLASHCrefrange] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewlabel] = ACTIONS(12519), + [anon_sym_BSLASHnewcommand] = ACTIONS(12519), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12519), + [anon_sym_BSLASHgls] = ACTIONS(12519), + [anon_sym_BSLASHGls] = ACTIONS(12519), + [anon_sym_BSLASHGLS] = ACTIONS(12519), + [anon_sym_BSLASHglspl] = ACTIONS(12519), + [anon_sym_BSLASHGlspl] = ACTIONS(12519), + [anon_sym_BSLASHGLSpl] = ACTIONS(12519), + [anon_sym_BSLASHglsdisp] = ACTIONS(12519), + [anon_sym_BSLASHglslink] = ACTIONS(12519), + [anon_sym_BSLASHglstext] = ACTIONS(12519), + [anon_sym_BSLASHGlstext] = ACTIONS(12519), + [anon_sym_BSLASHGLStext] = ACTIONS(12519), + [anon_sym_BSLASHglsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12519), + [anon_sym_BSLASHglsplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSplural] = ACTIONS(12519), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHglsname] = ACTIONS(12519), + [anon_sym_BSLASHGlsname] = ACTIONS(12519), + [anon_sym_BSLASHGLSname] = ACTIONS(12519), + [anon_sym_BSLASHglssymbol] = ACTIONS(12519), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12519), + [anon_sym_BSLASHglsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12519), + [anon_sym_BSLASHglsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12519), + [anon_sym_BSLASHglsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12519), + [anon_sym_BSLASHglsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12519), + [anon_sym_BSLASHglsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12519), + [anon_sym_BSLASHnewacronym] = ACTIONS(12519), + [anon_sym_BSLASHacrshort] = ACTIONS(12519), + [anon_sym_BSLASHAcrshort] = ACTIONS(12519), + [anon_sym_BSLASHACRshort] = ACTIONS(12519), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12519), + [anon_sym_BSLASHacrlong] = ACTIONS(12519), + [anon_sym_BSLASHAcrlong] = ACTIONS(12519), + [anon_sym_BSLASHACRlong] = ACTIONS(12519), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12519), + [anon_sym_BSLASHacrfull] = ACTIONS(12519), + [anon_sym_BSLASHAcrfull] = ACTIONS(12519), + [anon_sym_BSLASHACRfull] = ACTIONS(12519), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12519), + [anon_sym_BSLASHacs] = ACTIONS(12519), + [anon_sym_BSLASHAcs] = ACTIONS(12519), + [anon_sym_BSLASHacsp] = ACTIONS(12519), + [anon_sym_BSLASHAcsp] = ACTIONS(12519), + [anon_sym_BSLASHacl] = ACTIONS(12519), + [anon_sym_BSLASHAcl] = ACTIONS(12519), + [anon_sym_BSLASHaclp] = ACTIONS(12519), + [anon_sym_BSLASHAclp] = ACTIONS(12519), + [anon_sym_BSLASHacf] = ACTIONS(12519), + [anon_sym_BSLASHAcf] = ACTIONS(12519), + [anon_sym_BSLASHacfp] = ACTIONS(12519), + [anon_sym_BSLASHAcfp] = ACTIONS(12519), + [anon_sym_BSLASHac] = ACTIONS(12519), + [anon_sym_BSLASHAc] = ACTIONS(12519), + [anon_sym_BSLASHacp] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12519), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12519), + [anon_sym_BSLASHcolor] = ACTIONS(12519), + [anon_sym_BSLASHcolorbox] = ACTIONS(12519), + [anon_sym_BSLASHtextcolor] = ACTIONS(12519), + [anon_sym_BSLASHpagecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12519), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12519), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12519), + }, + [815] = { + [sym_generic_command_name] = ACTIONS(12513), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12513), + [aux_sym_chapter_token1] = ACTIONS(12513), + [aux_sym_section_token1] = ACTIONS(12513), + [aux_sym_subsection_token1] = ACTIONS(12513), + [aux_sym_subsubsection_token1] = ACTIONS(12513), + [aux_sym_paragraph_token1] = ACTIONS(12513), + [aux_sym_subparagraph_token1] = ACTIONS(12513), + [anon_sym_BSLASHitem] = ACTIONS(12513), + [anon_sym_LBRACK] = ACTIONS(12511), + [anon_sym_LBRACE] = ACTIONS(12664), + [anon_sym_LPAREN] = ACTIONS(12511), + [anon_sym_COMMA] = ACTIONS(12511), + [anon_sym_EQ] = ACTIONS(12511), + [sym_word] = ACTIONS(12511), + [sym_param] = ACTIONS(12511), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12511), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12511), + [anon_sym_DOLLAR] = ACTIONS(12513), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12511), + [anon_sym_BSLASHbegin] = ACTIONS(12513), + [anon_sym_BSLASHend] = ACTIONS(12513), + [anon_sym_BSLASHcaption] = ACTIONS(12513), + [anon_sym_BSLASHcite] = ACTIONS(12513), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCite] = ACTIONS(12513), + [anon_sym_BSLASHnocite] = ACTIONS(12513), + [anon_sym_BSLASHcitet] = ACTIONS(12513), + [anon_sym_BSLASHcitep] = ACTIONS(12513), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteauthor] = ACTIONS(12513), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12513), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitetitle] = ACTIONS(12513), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteyear] = ACTIONS(12513), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitedate] = ACTIONS(12513), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteurl] = ACTIONS(12513), + [anon_sym_BSLASHfullcite] = ACTIONS(12513), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12513), + [anon_sym_BSLASHcitealt] = ACTIONS(12513), + [anon_sym_BSLASHcitealp] = ACTIONS(12513), + [anon_sym_BSLASHcitetext] = ACTIONS(12513), + [anon_sym_BSLASHparencite] = ACTIONS(12513), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHParencite] = ACTIONS(12513), + [anon_sym_BSLASHfootcite] = ACTIONS(12513), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12513), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12513), + [anon_sym_BSLASHtextcite] = ACTIONS(12513), + [anon_sym_BSLASHTextcite] = ACTIONS(12513), + [anon_sym_BSLASHsmartcite] = ACTIONS(12513), + [anon_sym_BSLASHSmartcite] = ACTIONS(12513), + [anon_sym_BSLASHsupercite] = ACTIONS(12513), + [anon_sym_BSLASHautocite] = ACTIONS(12513), + [anon_sym_BSLASHAutocite] = ACTIONS(12513), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHvolcite] = ACTIONS(12513), + [anon_sym_BSLASHVolcite] = ACTIONS(12513), + [anon_sym_BSLASHpvolcite] = ACTIONS(12513), + [anon_sym_BSLASHPvolcite] = ACTIONS(12513), + [anon_sym_BSLASHfvolcite] = ACTIONS(12513), + [anon_sym_BSLASHftvolcite] = ACTIONS(12513), + [anon_sym_BSLASHsvolcite] = ACTIONS(12513), + [anon_sym_BSLASHSvolcite] = ACTIONS(12513), + [anon_sym_BSLASHtvolcite] = ACTIONS(12513), + [anon_sym_BSLASHTvolcite] = ACTIONS(12513), + [anon_sym_BSLASHavolcite] = ACTIONS(12513), + [anon_sym_BSLASHAvolcite] = ACTIONS(12513), + [anon_sym_BSLASHnotecite] = ACTIONS(12513), + [anon_sym_BSLASHpnotecite] = ACTIONS(12513), + [anon_sym_BSLASHPnotecite] = ACTIONS(12513), + [anon_sym_BSLASHfnotecite] = ACTIONS(12513), + [anon_sym_BSLASHusepackage] = ACTIONS(12513), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12513), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12513), + [anon_sym_BSLASHinclude] = ACTIONS(12513), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12513), + [anon_sym_BSLASHinput] = ACTIONS(12513), + [anon_sym_BSLASHsubfile] = ACTIONS(12513), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12513), + [anon_sym_BSLASHbibliography] = ACTIONS(12513), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12513), + [anon_sym_BSLASHincludesvg] = ACTIONS(12513), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12513), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12513), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12513), + [anon_sym_BSLASHimport] = ACTIONS(12513), + [anon_sym_BSLASHsubimport] = ACTIONS(12513), + [anon_sym_BSLASHinputfrom] = ACTIONS(12513), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12513), + [anon_sym_BSLASHincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHlabel] = ACTIONS(12513), + [anon_sym_BSLASHref] = ACTIONS(12513), + [anon_sym_BSLASHvref] = ACTIONS(12513), + [anon_sym_BSLASHVref] = ACTIONS(12513), + [anon_sym_BSLASHautoref] = ACTIONS(12513), + [anon_sym_BSLASHpageref] = ACTIONS(12513), + [anon_sym_BSLASHcref] = ACTIONS(12513), + [anon_sym_BSLASHCref] = ACTIONS(12513), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnameCref] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHlabelcref] = ACTIONS(12513), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12513), + [anon_sym_BSLASHeqref] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange] = ACTIONS(12513), + [anon_sym_BSLASHCrefrange] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewlabel] = ACTIONS(12513), + [anon_sym_BSLASHnewcommand] = ACTIONS(12513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12513), + [anon_sym_BSLASHgls] = ACTIONS(12513), + [anon_sym_BSLASHGls] = ACTIONS(12513), + [anon_sym_BSLASHGLS] = ACTIONS(12513), + [anon_sym_BSLASHglspl] = ACTIONS(12513), + [anon_sym_BSLASHGlspl] = ACTIONS(12513), + [anon_sym_BSLASHGLSpl] = ACTIONS(12513), + [anon_sym_BSLASHglsdisp] = ACTIONS(12513), + [anon_sym_BSLASHglslink] = ACTIONS(12513), + [anon_sym_BSLASHglstext] = ACTIONS(12513), + [anon_sym_BSLASHGlstext] = ACTIONS(12513), + [anon_sym_BSLASHGLStext] = ACTIONS(12513), + [anon_sym_BSLASHglsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12513), + [anon_sym_BSLASHglsplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSplural] = ACTIONS(12513), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHglsname] = ACTIONS(12513), + [anon_sym_BSLASHGlsname] = ACTIONS(12513), + [anon_sym_BSLASHGLSname] = ACTIONS(12513), + [anon_sym_BSLASHglssymbol] = ACTIONS(12513), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12513), + [anon_sym_BSLASHglsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12513), + [anon_sym_BSLASHglsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12513), + [anon_sym_BSLASHglsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12513), + [anon_sym_BSLASHglsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12513), + [anon_sym_BSLASHglsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12513), + [anon_sym_BSLASHnewacronym] = ACTIONS(12513), + [anon_sym_BSLASHacrshort] = ACTIONS(12513), + [anon_sym_BSLASHAcrshort] = ACTIONS(12513), + [anon_sym_BSLASHACRshort] = ACTIONS(12513), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12513), + [anon_sym_BSLASHacrlong] = ACTIONS(12513), + [anon_sym_BSLASHAcrlong] = ACTIONS(12513), + [anon_sym_BSLASHACRlong] = ACTIONS(12513), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12513), + [anon_sym_BSLASHacrfull] = ACTIONS(12513), + [anon_sym_BSLASHAcrfull] = ACTIONS(12513), + [anon_sym_BSLASHACRfull] = ACTIONS(12513), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12513), + [anon_sym_BSLASHacs] = ACTIONS(12513), + [anon_sym_BSLASHAcs] = ACTIONS(12513), + [anon_sym_BSLASHacsp] = ACTIONS(12513), + [anon_sym_BSLASHAcsp] = ACTIONS(12513), + [anon_sym_BSLASHacl] = ACTIONS(12513), + [anon_sym_BSLASHAcl] = ACTIONS(12513), + [anon_sym_BSLASHaclp] = ACTIONS(12513), + [anon_sym_BSLASHAclp] = ACTIONS(12513), + [anon_sym_BSLASHacf] = ACTIONS(12513), + [anon_sym_BSLASHAcf] = ACTIONS(12513), + [anon_sym_BSLASHacfp] = ACTIONS(12513), + [anon_sym_BSLASHAcfp] = ACTIONS(12513), + [anon_sym_BSLASHac] = ACTIONS(12513), + [anon_sym_BSLASHAc] = ACTIONS(12513), + [anon_sym_BSLASHacp] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12513), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12513), + [anon_sym_BSLASHcolor] = ACTIONS(12513), + [anon_sym_BSLASHcolorbox] = ACTIONS(12513), + [anon_sym_BSLASHtextcolor] = ACTIONS(12513), + [anon_sym_BSLASHpagecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12513), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12513), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12513), + }, + [816] = { + [sym_generic_command_name] = ACTIONS(12509), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12509), + [aux_sym_chapter_token1] = ACTIONS(12509), + [aux_sym_section_token1] = ACTIONS(12509), + [aux_sym_subsection_token1] = ACTIONS(12509), + [aux_sym_subsubsection_token1] = ACTIONS(12509), + [aux_sym_paragraph_token1] = ACTIONS(12509), + [aux_sym_subparagraph_token1] = ACTIONS(12509), + [anon_sym_BSLASHitem] = ACTIONS(12509), + [anon_sym_LBRACK] = ACTIONS(12507), + [anon_sym_LBRACE] = ACTIONS(12507), + [anon_sym_LPAREN] = ACTIONS(12507), + [anon_sym_COMMA] = ACTIONS(12507), + [anon_sym_EQ] = ACTIONS(12507), + [sym_word] = ACTIONS(12507), + [sym_param] = ACTIONS(12507), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12507), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12507), + [anon_sym_DOLLAR] = ACTIONS(12509), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12507), + [anon_sym_BSLASHbegin] = ACTIONS(12509), + [anon_sym_BSLASHend] = ACTIONS(12509), + [anon_sym_BSLASHcaption] = ACTIONS(12509), + [anon_sym_BSLASHcite] = ACTIONS(12509), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCite] = ACTIONS(12509), + [anon_sym_BSLASHnocite] = ACTIONS(12509), + [anon_sym_BSLASHcitet] = ACTIONS(12509), + [anon_sym_BSLASHcitep] = ACTIONS(12509), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteauthor] = ACTIONS(12509), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12509), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitetitle] = ACTIONS(12509), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteyear] = ACTIONS(12509), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitedate] = ACTIONS(12509), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteurl] = ACTIONS(12509), + [anon_sym_BSLASHfullcite] = ACTIONS(12509), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12509), + [anon_sym_BSLASHcitealt] = ACTIONS(12509), + [anon_sym_BSLASHcitealp] = ACTIONS(12509), + [anon_sym_BSLASHcitetext] = ACTIONS(12509), + [anon_sym_BSLASHparencite] = ACTIONS(12509), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHParencite] = ACTIONS(12509), + [anon_sym_BSLASHfootcite] = ACTIONS(12509), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12509), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12509), + [anon_sym_BSLASHtextcite] = ACTIONS(12509), + [anon_sym_BSLASHTextcite] = ACTIONS(12509), + [anon_sym_BSLASHsmartcite] = ACTIONS(12509), + [anon_sym_BSLASHSmartcite] = ACTIONS(12509), + [anon_sym_BSLASHsupercite] = ACTIONS(12509), + [anon_sym_BSLASHautocite] = ACTIONS(12509), + [anon_sym_BSLASHAutocite] = ACTIONS(12509), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHvolcite] = ACTIONS(12509), + [anon_sym_BSLASHVolcite] = ACTIONS(12509), + [anon_sym_BSLASHpvolcite] = ACTIONS(12509), + [anon_sym_BSLASHPvolcite] = ACTIONS(12509), + [anon_sym_BSLASHfvolcite] = ACTIONS(12509), + [anon_sym_BSLASHftvolcite] = ACTIONS(12509), + [anon_sym_BSLASHsvolcite] = ACTIONS(12509), + [anon_sym_BSLASHSvolcite] = ACTIONS(12509), + [anon_sym_BSLASHtvolcite] = ACTIONS(12509), + [anon_sym_BSLASHTvolcite] = ACTIONS(12509), + [anon_sym_BSLASHavolcite] = ACTIONS(12509), + [anon_sym_BSLASHAvolcite] = ACTIONS(12509), + [anon_sym_BSLASHnotecite] = ACTIONS(12509), + [anon_sym_BSLASHpnotecite] = ACTIONS(12509), + [anon_sym_BSLASHPnotecite] = ACTIONS(12509), + [anon_sym_BSLASHfnotecite] = ACTIONS(12509), + [anon_sym_BSLASHusepackage] = ACTIONS(12509), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12509), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12509), + [anon_sym_BSLASHinclude] = ACTIONS(12509), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12509), + [anon_sym_BSLASHinput] = ACTIONS(12509), + [anon_sym_BSLASHsubfile] = ACTIONS(12509), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12509), + [anon_sym_BSLASHbibliography] = ACTIONS(12509), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12509), + [anon_sym_BSLASHincludesvg] = ACTIONS(12509), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12509), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12509), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12509), + [anon_sym_BSLASHimport] = ACTIONS(12509), + [anon_sym_BSLASHsubimport] = ACTIONS(12509), + [anon_sym_BSLASHinputfrom] = ACTIONS(12509), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12509), + [anon_sym_BSLASHincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHlabel] = ACTIONS(12509), + [anon_sym_BSLASHref] = ACTIONS(12509), + [anon_sym_BSLASHvref] = ACTIONS(12509), + [anon_sym_BSLASHVref] = ACTIONS(12509), + [anon_sym_BSLASHautoref] = ACTIONS(12509), + [anon_sym_BSLASHpageref] = ACTIONS(12509), + [anon_sym_BSLASHcref] = ACTIONS(12509), + [anon_sym_BSLASHCref] = ACTIONS(12509), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnameCref] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHlabelcref] = ACTIONS(12509), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12509), + [anon_sym_BSLASHeqref] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange] = ACTIONS(12509), + [anon_sym_BSLASHCrefrange] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewlabel] = ACTIONS(12509), + [anon_sym_BSLASHnewcommand] = ACTIONS(12509), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12509), + [anon_sym_BSLASHgls] = ACTIONS(12509), + [anon_sym_BSLASHGls] = ACTIONS(12509), + [anon_sym_BSLASHGLS] = ACTIONS(12509), + [anon_sym_BSLASHglspl] = ACTIONS(12509), + [anon_sym_BSLASHGlspl] = ACTIONS(12509), + [anon_sym_BSLASHGLSpl] = ACTIONS(12509), + [anon_sym_BSLASHglsdisp] = ACTIONS(12509), + [anon_sym_BSLASHglslink] = ACTIONS(12509), + [anon_sym_BSLASHglstext] = ACTIONS(12509), + [anon_sym_BSLASHGlstext] = ACTIONS(12509), + [anon_sym_BSLASHGLStext] = ACTIONS(12509), + [anon_sym_BSLASHglsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12509), + [anon_sym_BSLASHglsplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSplural] = ACTIONS(12509), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHglsname] = ACTIONS(12509), + [anon_sym_BSLASHGlsname] = ACTIONS(12509), + [anon_sym_BSLASHGLSname] = ACTIONS(12509), + [anon_sym_BSLASHglssymbol] = ACTIONS(12509), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12509), + [anon_sym_BSLASHglsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12509), + [anon_sym_BSLASHglsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12509), + [anon_sym_BSLASHglsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12509), + [anon_sym_BSLASHglsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12509), + [anon_sym_BSLASHglsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12509), + [anon_sym_BSLASHnewacronym] = ACTIONS(12509), + [anon_sym_BSLASHacrshort] = ACTIONS(12509), + [anon_sym_BSLASHAcrshort] = ACTIONS(12509), + [anon_sym_BSLASHACRshort] = ACTIONS(12509), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12509), + [anon_sym_BSLASHacrlong] = ACTIONS(12509), + [anon_sym_BSLASHAcrlong] = ACTIONS(12509), + [anon_sym_BSLASHACRlong] = ACTIONS(12509), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12509), + [anon_sym_BSLASHacrfull] = ACTIONS(12509), + [anon_sym_BSLASHAcrfull] = ACTIONS(12509), + [anon_sym_BSLASHACRfull] = ACTIONS(12509), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12509), + [anon_sym_BSLASHacs] = ACTIONS(12509), + [anon_sym_BSLASHAcs] = ACTIONS(12509), + [anon_sym_BSLASHacsp] = ACTIONS(12509), + [anon_sym_BSLASHAcsp] = ACTIONS(12509), + [anon_sym_BSLASHacl] = ACTIONS(12509), + [anon_sym_BSLASHAcl] = ACTIONS(12509), + [anon_sym_BSLASHaclp] = ACTIONS(12509), + [anon_sym_BSLASHAclp] = ACTIONS(12509), + [anon_sym_BSLASHacf] = ACTIONS(12509), + [anon_sym_BSLASHAcf] = ACTIONS(12509), + [anon_sym_BSLASHacfp] = ACTIONS(12509), + [anon_sym_BSLASHAcfp] = ACTIONS(12509), + [anon_sym_BSLASHac] = ACTIONS(12509), + [anon_sym_BSLASHAc] = ACTIONS(12509), + [anon_sym_BSLASHacp] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12509), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12509), + [anon_sym_BSLASHcolor] = ACTIONS(12509), + [anon_sym_BSLASHcolorbox] = ACTIONS(12509), + [anon_sym_BSLASHtextcolor] = ACTIONS(12509), + [anon_sym_BSLASHpagecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12509), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12509), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12509), + }, + [817] = { + [sym_generic_command_name] = ACTIONS(12501), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12501), + [aux_sym_chapter_token1] = ACTIONS(12501), + [aux_sym_section_token1] = ACTIONS(12501), + [aux_sym_subsection_token1] = ACTIONS(12501), + [aux_sym_subsubsection_token1] = ACTIONS(12501), + [aux_sym_paragraph_token1] = ACTIONS(12501), + [aux_sym_subparagraph_token1] = ACTIONS(12501), + [anon_sym_BSLASHitem] = ACTIONS(12501), + [anon_sym_LBRACK] = ACTIONS(12499), + [anon_sym_LBRACE] = ACTIONS(12499), + [anon_sym_LPAREN] = ACTIONS(12499), + [anon_sym_COMMA] = ACTIONS(12499), + [anon_sym_EQ] = ACTIONS(12499), + [sym_word] = ACTIONS(12499), + [sym_param] = ACTIONS(12499), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12499), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12499), + [anon_sym_DOLLAR] = ACTIONS(12501), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12499), + [anon_sym_BSLASHbegin] = ACTIONS(12501), + [anon_sym_BSLASHend] = ACTIONS(12501), + [anon_sym_BSLASHcaption] = ACTIONS(12501), + [anon_sym_BSLASHcite] = ACTIONS(12501), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCite] = ACTIONS(12501), + [anon_sym_BSLASHnocite] = ACTIONS(12501), + [anon_sym_BSLASHcitet] = ACTIONS(12501), + [anon_sym_BSLASHcitep] = ACTIONS(12501), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteauthor] = ACTIONS(12501), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12501), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitetitle] = ACTIONS(12501), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteyear] = ACTIONS(12501), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitedate] = ACTIONS(12501), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteurl] = ACTIONS(12501), + [anon_sym_BSLASHfullcite] = ACTIONS(12501), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12501), + [anon_sym_BSLASHcitealt] = ACTIONS(12501), + [anon_sym_BSLASHcitealp] = ACTIONS(12501), + [anon_sym_BSLASHcitetext] = ACTIONS(12501), + [anon_sym_BSLASHparencite] = ACTIONS(12501), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHParencite] = ACTIONS(12501), + [anon_sym_BSLASHfootcite] = ACTIONS(12501), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12501), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12501), + [anon_sym_BSLASHtextcite] = ACTIONS(12501), + [anon_sym_BSLASHTextcite] = ACTIONS(12501), + [anon_sym_BSLASHsmartcite] = ACTIONS(12501), + [anon_sym_BSLASHSmartcite] = ACTIONS(12501), + [anon_sym_BSLASHsupercite] = ACTIONS(12501), + [anon_sym_BSLASHautocite] = ACTIONS(12501), + [anon_sym_BSLASHAutocite] = ACTIONS(12501), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHvolcite] = ACTIONS(12501), + [anon_sym_BSLASHVolcite] = ACTIONS(12501), + [anon_sym_BSLASHpvolcite] = ACTIONS(12501), + [anon_sym_BSLASHPvolcite] = ACTIONS(12501), + [anon_sym_BSLASHfvolcite] = ACTIONS(12501), + [anon_sym_BSLASHftvolcite] = ACTIONS(12501), + [anon_sym_BSLASHsvolcite] = ACTIONS(12501), + [anon_sym_BSLASHSvolcite] = ACTIONS(12501), + [anon_sym_BSLASHtvolcite] = ACTIONS(12501), + [anon_sym_BSLASHTvolcite] = ACTIONS(12501), + [anon_sym_BSLASHavolcite] = ACTIONS(12501), + [anon_sym_BSLASHAvolcite] = ACTIONS(12501), + [anon_sym_BSLASHnotecite] = ACTIONS(12501), + [anon_sym_BSLASHpnotecite] = ACTIONS(12501), + [anon_sym_BSLASHPnotecite] = ACTIONS(12501), + [anon_sym_BSLASHfnotecite] = ACTIONS(12501), + [anon_sym_BSLASHusepackage] = ACTIONS(12501), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12501), + [anon_sym_BSLASHinclude] = ACTIONS(12501), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12501), + [anon_sym_BSLASHinput] = ACTIONS(12501), + [anon_sym_BSLASHsubfile] = ACTIONS(12501), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12501), + [anon_sym_BSLASHbibliography] = ACTIONS(12501), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12501), + [anon_sym_BSLASHincludesvg] = ACTIONS(12501), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12501), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12501), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12501), + [anon_sym_BSLASHimport] = ACTIONS(12501), + [anon_sym_BSLASHsubimport] = ACTIONS(12501), + [anon_sym_BSLASHinputfrom] = ACTIONS(12501), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12501), + [anon_sym_BSLASHincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHlabel] = ACTIONS(12501), + [anon_sym_BSLASHref] = ACTIONS(12501), + [anon_sym_BSLASHvref] = ACTIONS(12501), + [anon_sym_BSLASHVref] = ACTIONS(12501), + [anon_sym_BSLASHautoref] = ACTIONS(12501), + [anon_sym_BSLASHpageref] = ACTIONS(12501), + [anon_sym_BSLASHcref] = ACTIONS(12501), + [anon_sym_BSLASHCref] = ACTIONS(12501), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnameCref] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHlabelcref] = ACTIONS(12501), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12501), + [anon_sym_BSLASHeqref] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange] = ACTIONS(12501), + [anon_sym_BSLASHCrefrange] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewlabel] = ACTIONS(12501), + [anon_sym_BSLASHnewcommand] = ACTIONS(12501), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12501), + [anon_sym_BSLASHgls] = ACTIONS(12501), + [anon_sym_BSLASHGls] = ACTIONS(12501), + [anon_sym_BSLASHGLS] = ACTIONS(12501), + [anon_sym_BSLASHglspl] = ACTIONS(12501), + [anon_sym_BSLASHGlspl] = ACTIONS(12501), + [anon_sym_BSLASHGLSpl] = ACTIONS(12501), + [anon_sym_BSLASHglsdisp] = ACTIONS(12501), + [anon_sym_BSLASHglslink] = ACTIONS(12501), + [anon_sym_BSLASHglstext] = ACTIONS(12501), + [anon_sym_BSLASHGlstext] = ACTIONS(12501), + [anon_sym_BSLASHGLStext] = ACTIONS(12501), + [anon_sym_BSLASHglsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12501), + [anon_sym_BSLASHglsplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSplural] = ACTIONS(12501), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHglsname] = ACTIONS(12501), + [anon_sym_BSLASHGlsname] = ACTIONS(12501), + [anon_sym_BSLASHGLSname] = ACTIONS(12501), + [anon_sym_BSLASHglssymbol] = ACTIONS(12501), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12501), + [anon_sym_BSLASHglsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12501), + [anon_sym_BSLASHglsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12501), + [anon_sym_BSLASHglsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12501), + [anon_sym_BSLASHglsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12501), + [anon_sym_BSLASHglsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12501), + [anon_sym_BSLASHnewacronym] = ACTIONS(12501), + [anon_sym_BSLASHacrshort] = ACTIONS(12501), + [anon_sym_BSLASHAcrshort] = ACTIONS(12501), + [anon_sym_BSLASHACRshort] = ACTIONS(12501), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12501), + [anon_sym_BSLASHacrlong] = ACTIONS(12501), + [anon_sym_BSLASHAcrlong] = ACTIONS(12501), + [anon_sym_BSLASHACRlong] = ACTIONS(12501), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12501), + [anon_sym_BSLASHacrfull] = ACTIONS(12501), + [anon_sym_BSLASHAcrfull] = ACTIONS(12501), + [anon_sym_BSLASHACRfull] = ACTIONS(12501), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12501), + [anon_sym_BSLASHacs] = ACTIONS(12501), + [anon_sym_BSLASHAcs] = ACTIONS(12501), + [anon_sym_BSLASHacsp] = ACTIONS(12501), + [anon_sym_BSLASHAcsp] = ACTIONS(12501), + [anon_sym_BSLASHacl] = ACTIONS(12501), + [anon_sym_BSLASHAcl] = ACTIONS(12501), + [anon_sym_BSLASHaclp] = ACTIONS(12501), + [anon_sym_BSLASHAclp] = ACTIONS(12501), + [anon_sym_BSLASHacf] = ACTIONS(12501), + [anon_sym_BSLASHAcf] = ACTIONS(12501), + [anon_sym_BSLASHacfp] = ACTIONS(12501), + [anon_sym_BSLASHAcfp] = ACTIONS(12501), + [anon_sym_BSLASHac] = ACTIONS(12501), + [anon_sym_BSLASHAc] = ACTIONS(12501), + [anon_sym_BSLASHacp] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12501), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12501), + [anon_sym_BSLASHcolor] = ACTIONS(12501), + [anon_sym_BSLASHcolorbox] = ACTIONS(12501), + [anon_sym_BSLASHtextcolor] = ACTIONS(12501), + [anon_sym_BSLASHpagecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12501), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12501), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12501), + }, + [818] = { + [sym_generic_command_name] = ACTIONS(12497), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12497), + [aux_sym_chapter_token1] = ACTIONS(12497), + [aux_sym_section_token1] = ACTIONS(12497), + [aux_sym_subsection_token1] = ACTIONS(12497), + [aux_sym_subsubsection_token1] = ACTIONS(12497), + [aux_sym_paragraph_token1] = ACTIONS(12497), + [aux_sym_subparagraph_token1] = ACTIONS(12497), + [anon_sym_BSLASHitem] = ACTIONS(12497), + [anon_sym_LBRACK] = ACTIONS(12495), + [anon_sym_LBRACE] = ACTIONS(12495), + [anon_sym_LPAREN] = ACTIONS(12495), + [anon_sym_COMMA] = ACTIONS(12495), + [anon_sym_EQ] = ACTIONS(12495), + [sym_word] = ACTIONS(12495), + [sym_param] = ACTIONS(12495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12495), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12495), + [anon_sym_DOLLAR] = ACTIONS(12497), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12495), + [anon_sym_BSLASHbegin] = ACTIONS(12497), + [anon_sym_BSLASHend] = ACTIONS(12497), + [anon_sym_BSLASHcaption] = ACTIONS(12497), + [anon_sym_BSLASHcite] = ACTIONS(12497), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCite] = ACTIONS(12497), + [anon_sym_BSLASHnocite] = ACTIONS(12497), + [anon_sym_BSLASHcitet] = ACTIONS(12497), + [anon_sym_BSLASHcitep] = ACTIONS(12497), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteauthor] = ACTIONS(12497), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12497), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitetitle] = ACTIONS(12497), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteyear] = ACTIONS(12497), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitedate] = ACTIONS(12497), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteurl] = ACTIONS(12497), + [anon_sym_BSLASHfullcite] = ACTIONS(12497), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12497), + [anon_sym_BSLASHcitealt] = ACTIONS(12497), + [anon_sym_BSLASHcitealp] = ACTIONS(12497), + [anon_sym_BSLASHcitetext] = ACTIONS(12497), + [anon_sym_BSLASHparencite] = ACTIONS(12497), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHParencite] = ACTIONS(12497), + [anon_sym_BSLASHfootcite] = ACTIONS(12497), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12497), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12497), + [anon_sym_BSLASHtextcite] = ACTIONS(12497), + [anon_sym_BSLASHTextcite] = ACTIONS(12497), + [anon_sym_BSLASHsmartcite] = ACTIONS(12497), + [anon_sym_BSLASHSmartcite] = ACTIONS(12497), + [anon_sym_BSLASHsupercite] = ACTIONS(12497), + [anon_sym_BSLASHautocite] = ACTIONS(12497), + [anon_sym_BSLASHAutocite] = ACTIONS(12497), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHvolcite] = ACTIONS(12497), + [anon_sym_BSLASHVolcite] = ACTIONS(12497), + [anon_sym_BSLASHpvolcite] = ACTIONS(12497), + [anon_sym_BSLASHPvolcite] = ACTIONS(12497), + [anon_sym_BSLASHfvolcite] = ACTIONS(12497), + [anon_sym_BSLASHftvolcite] = ACTIONS(12497), + [anon_sym_BSLASHsvolcite] = ACTIONS(12497), + [anon_sym_BSLASHSvolcite] = ACTIONS(12497), + [anon_sym_BSLASHtvolcite] = ACTIONS(12497), + [anon_sym_BSLASHTvolcite] = ACTIONS(12497), + [anon_sym_BSLASHavolcite] = ACTIONS(12497), + [anon_sym_BSLASHAvolcite] = ACTIONS(12497), + [anon_sym_BSLASHnotecite] = ACTIONS(12497), + [anon_sym_BSLASHpnotecite] = ACTIONS(12497), + [anon_sym_BSLASHPnotecite] = ACTIONS(12497), + [anon_sym_BSLASHfnotecite] = ACTIONS(12497), + [anon_sym_BSLASHusepackage] = ACTIONS(12497), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12497), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12497), + [anon_sym_BSLASHinclude] = ACTIONS(12497), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12497), + [anon_sym_BSLASHinput] = ACTIONS(12497), + [anon_sym_BSLASHsubfile] = ACTIONS(12497), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12497), + [anon_sym_BSLASHbibliography] = ACTIONS(12497), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12497), + [anon_sym_BSLASHincludesvg] = ACTIONS(12497), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12497), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12497), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12497), + [anon_sym_BSLASHimport] = ACTIONS(12497), + [anon_sym_BSLASHsubimport] = ACTIONS(12497), + [anon_sym_BSLASHinputfrom] = ACTIONS(12497), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12497), + [anon_sym_BSLASHincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHlabel] = ACTIONS(12497), + [anon_sym_BSLASHref] = ACTIONS(12497), + [anon_sym_BSLASHvref] = ACTIONS(12497), + [anon_sym_BSLASHVref] = ACTIONS(12497), + [anon_sym_BSLASHautoref] = ACTIONS(12497), + [anon_sym_BSLASHpageref] = ACTIONS(12497), + [anon_sym_BSLASHcref] = ACTIONS(12497), + [anon_sym_BSLASHCref] = ACTIONS(12497), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnameCref] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHlabelcref] = ACTIONS(12497), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12497), + [anon_sym_BSLASHeqref] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange] = ACTIONS(12497), + [anon_sym_BSLASHCrefrange] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewlabel] = ACTIONS(12497), + [anon_sym_BSLASHnewcommand] = ACTIONS(12497), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12497), + [anon_sym_BSLASHgls] = ACTIONS(12497), + [anon_sym_BSLASHGls] = ACTIONS(12497), + [anon_sym_BSLASHGLS] = ACTIONS(12497), + [anon_sym_BSLASHglspl] = ACTIONS(12497), + [anon_sym_BSLASHGlspl] = ACTIONS(12497), + [anon_sym_BSLASHGLSpl] = ACTIONS(12497), + [anon_sym_BSLASHglsdisp] = ACTIONS(12497), + [anon_sym_BSLASHglslink] = ACTIONS(12497), + [anon_sym_BSLASHglstext] = ACTIONS(12497), + [anon_sym_BSLASHGlstext] = ACTIONS(12497), + [anon_sym_BSLASHGLStext] = ACTIONS(12497), + [anon_sym_BSLASHglsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12497), + [anon_sym_BSLASHglsplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSplural] = ACTIONS(12497), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHglsname] = ACTIONS(12497), + [anon_sym_BSLASHGlsname] = ACTIONS(12497), + [anon_sym_BSLASHGLSname] = ACTIONS(12497), + [anon_sym_BSLASHglssymbol] = ACTIONS(12497), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12497), + [anon_sym_BSLASHglsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12497), + [anon_sym_BSLASHglsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12497), + [anon_sym_BSLASHglsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12497), + [anon_sym_BSLASHglsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12497), + [anon_sym_BSLASHglsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12497), + [anon_sym_BSLASHnewacronym] = ACTIONS(12497), + [anon_sym_BSLASHacrshort] = ACTIONS(12497), + [anon_sym_BSLASHAcrshort] = ACTIONS(12497), + [anon_sym_BSLASHACRshort] = ACTIONS(12497), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12497), + [anon_sym_BSLASHacrlong] = ACTIONS(12497), + [anon_sym_BSLASHAcrlong] = ACTIONS(12497), + [anon_sym_BSLASHACRlong] = ACTIONS(12497), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12497), + [anon_sym_BSLASHacrfull] = ACTIONS(12497), + [anon_sym_BSLASHAcrfull] = ACTIONS(12497), + [anon_sym_BSLASHACRfull] = ACTIONS(12497), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12497), + [anon_sym_BSLASHacs] = ACTIONS(12497), + [anon_sym_BSLASHAcs] = ACTIONS(12497), + [anon_sym_BSLASHacsp] = ACTIONS(12497), + [anon_sym_BSLASHAcsp] = ACTIONS(12497), + [anon_sym_BSLASHacl] = ACTIONS(12497), + [anon_sym_BSLASHAcl] = ACTIONS(12497), + [anon_sym_BSLASHaclp] = ACTIONS(12497), + [anon_sym_BSLASHAclp] = ACTIONS(12497), + [anon_sym_BSLASHacf] = ACTIONS(12497), + [anon_sym_BSLASHAcf] = ACTIONS(12497), + [anon_sym_BSLASHacfp] = ACTIONS(12497), + [anon_sym_BSLASHAcfp] = ACTIONS(12497), + [anon_sym_BSLASHac] = ACTIONS(12497), + [anon_sym_BSLASHAc] = ACTIONS(12497), + [anon_sym_BSLASHacp] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12497), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12497), + [anon_sym_BSLASHcolor] = ACTIONS(12497), + [anon_sym_BSLASHcolorbox] = ACTIONS(12497), + [anon_sym_BSLASHtextcolor] = ACTIONS(12497), + [anon_sym_BSLASHpagecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12497), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12497), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12497), + }, + [819] = { + [sym_generic_command_name] = ACTIONS(12173), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12173), + [aux_sym_chapter_token1] = ACTIONS(12173), + [aux_sym_section_token1] = ACTIONS(12173), + [aux_sym_subsection_token1] = ACTIONS(12173), + [aux_sym_subsubsection_token1] = ACTIONS(12173), + [aux_sym_paragraph_token1] = ACTIONS(12173), + [aux_sym_subparagraph_token1] = ACTIONS(12173), + [anon_sym_BSLASHitem] = ACTIONS(12173), + [anon_sym_LBRACK] = ACTIONS(12171), + [anon_sym_LBRACE] = ACTIONS(12171), + [anon_sym_LPAREN] = ACTIONS(12171), + [anon_sym_COMMA] = ACTIONS(12171), + [anon_sym_EQ] = ACTIONS(12171), + [sym_word] = ACTIONS(12171), + [sym_param] = ACTIONS(12171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12171), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12171), + [anon_sym_DOLLAR] = ACTIONS(12173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12171), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12171), + [anon_sym_BSLASHbegin] = ACTIONS(12173), + [anon_sym_BSLASHcaption] = ACTIONS(12173), + [anon_sym_BSLASHcite] = ACTIONS(12173), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCite] = ACTIONS(12173), + [anon_sym_BSLASHnocite] = ACTIONS(12173), + [anon_sym_BSLASHcitet] = ACTIONS(12173), + [anon_sym_BSLASHcitep] = ACTIONS(12173), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteauthor] = ACTIONS(12173), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12173), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitetitle] = ACTIONS(12173), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteyear] = ACTIONS(12173), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitedate] = ACTIONS(12173), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteurl] = ACTIONS(12173), + [anon_sym_BSLASHfullcite] = ACTIONS(12173), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12173), + [anon_sym_BSLASHcitealt] = ACTIONS(12173), + [anon_sym_BSLASHcitealp] = ACTIONS(12173), + [anon_sym_BSLASHcitetext] = ACTIONS(12173), + [anon_sym_BSLASHparencite] = ACTIONS(12173), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHParencite] = ACTIONS(12173), + [anon_sym_BSLASHfootcite] = ACTIONS(12173), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12173), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12173), + [anon_sym_BSLASHtextcite] = ACTIONS(12173), + [anon_sym_BSLASHTextcite] = ACTIONS(12173), + [anon_sym_BSLASHsmartcite] = ACTIONS(12173), + [anon_sym_BSLASHSmartcite] = ACTIONS(12173), + [anon_sym_BSLASHsupercite] = ACTIONS(12173), + [anon_sym_BSLASHautocite] = ACTIONS(12173), + [anon_sym_BSLASHAutocite] = ACTIONS(12173), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHvolcite] = ACTIONS(12173), + [anon_sym_BSLASHVolcite] = ACTIONS(12173), + [anon_sym_BSLASHpvolcite] = ACTIONS(12173), + [anon_sym_BSLASHPvolcite] = ACTIONS(12173), + [anon_sym_BSLASHfvolcite] = ACTIONS(12173), + [anon_sym_BSLASHftvolcite] = ACTIONS(12173), + [anon_sym_BSLASHsvolcite] = ACTIONS(12173), + [anon_sym_BSLASHSvolcite] = ACTIONS(12173), + [anon_sym_BSLASHtvolcite] = ACTIONS(12173), + [anon_sym_BSLASHTvolcite] = ACTIONS(12173), + [anon_sym_BSLASHavolcite] = ACTIONS(12173), + [anon_sym_BSLASHAvolcite] = ACTIONS(12173), + [anon_sym_BSLASHnotecite] = ACTIONS(12173), + [anon_sym_BSLASHpnotecite] = ACTIONS(12173), + [anon_sym_BSLASHPnotecite] = ACTIONS(12173), + [anon_sym_BSLASHfnotecite] = ACTIONS(12173), + [anon_sym_BSLASHusepackage] = ACTIONS(12173), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12173), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12173), + [anon_sym_BSLASHinclude] = ACTIONS(12173), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12173), + [anon_sym_BSLASHinput] = ACTIONS(12173), + [anon_sym_BSLASHsubfile] = ACTIONS(12173), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12173), + [anon_sym_BSLASHbibliography] = ACTIONS(12173), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12173), + [anon_sym_BSLASHincludesvg] = ACTIONS(12173), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12173), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12173), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12173), + [anon_sym_BSLASHimport] = ACTIONS(12173), + [anon_sym_BSLASHsubimport] = ACTIONS(12173), + [anon_sym_BSLASHinputfrom] = ACTIONS(12173), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12173), + [anon_sym_BSLASHincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHlabel] = ACTIONS(12173), + [anon_sym_BSLASHref] = ACTIONS(12173), + [anon_sym_BSLASHvref] = ACTIONS(12173), + [anon_sym_BSLASHVref] = ACTIONS(12173), + [anon_sym_BSLASHautoref] = ACTIONS(12173), + [anon_sym_BSLASHpageref] = ACTIONS(12173), + [anon_sym_BSLASHcref] = ACTIONS(12173), + [anon_sym_BSLASHCref] = ACTIONS(12173), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnameCref] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHlabelcref] = ACTIONS(12173), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12173), + [anon_sym_BSLASHeqref] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange] = ACTIONS(12173), + [anon_sym_BSLASHCrefrange] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewlabel] = ACTIONS(12173), + [anon_sym_BSLASHnewcommand] = ACTIONS(12173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12173), + [anon_sym_BSLASHgls] = ACTIONS(12173), + [anon_sym_BSLASHGls] = ACTIONS(12173), + [anon_sym_BSLASHGLS] = ACTIONS(12173), + [anon_sym_BSLASHglspl] = ACTIONS(12173), + [anon_sym_BSLASHGlspl] = ACTIONS(12173), + [anon_sym_BSLASHGLSpl] = ACTIONS(12173), + [anon_sym_BSLASHglsdisp] = ACTIONS(12173), + [anon_sym_BSLASHglslink] = ACTIONS(12173), + [anon_sym_BSLASHglstext] = ACTIONS(12173), + [anon_sym_BSLASHGlstext] = ACTIONS(12173), + [anon_sym_BSLASHGLStext] = ACTIONS(12173), + [anon_sym_BSLASHglsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12173), + [anon_sym_BSLASHglsplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSplural] = ACTIONS(12173), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHglsname] = ACTIONS(12173), + [anon_sym_BSLASHGlsname] = ACTIONS(12173), + [anon_sym_BSLASHGLSname] = ACTIONS(12173), + [anon_sym_BSLASHglssymbol] = ACTIONS(12173), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12173), + [anon_sym_BSLASHglsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12173), + [anon_sym_BSLASHglsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12173), + [anon_sym_BSLASHglsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12173), + [anon_sym_BSLASHglsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12173), + [anon_sym_BSLASHglsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12173), + [anon_sym_BSLASHnewacronym] = ACTIONS(12173), + [anon_sym_BSLASHacrshort] = ACTIONS(12173), + [anon_sym_BSLASHAcrshort] = ACTIONS(12173), + [anon_sym_BSLASHACRshort] = ACTIONS(12173), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12173), + [anon_sym_BSLASHacrlong] = ACTIONS(12173), + [anon_sym_BSLASHAcrlong] = ACTIONS(12173), + [anon_sym_BSLASHACRlong] = ACTIONS(12173), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12173), + [anon_sym_BSLASHacrfull] = ACTIONS(12173), + [anon_sym_BSLASHAcrfull] = ACTIONS(12173), + [anon_sym_BSLASHACRfull] = ACTIONS(12173), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12173), + [anon_sym_BSLASHacs] = ACTIONS(12173), + [anon_sym_BSLASHAcs] = ACTIONS(12173), + [anon_sym_BSLASHacsp] = ACTIONS(12173), + [anon_sym_BSLASHAcsp] = ACTIONS(12173), + [anon_sym_BSLASHacl] = ACTIONS(12173), + [anon_sym_BSLASHAcl] = ACTIONS(12173), + [anon_sym_BSLASHaclp] = ACTIONS(12173), + [anon_sym_BSLASHAclp] = ACTIONS(12173), + [anon_sym_BSLASHacf] = ACTIONS(12173), + [anon_sym_BSLASHAcf] = ACTIONS(12173), + [anon_sym_BSLASHacfp] = ACTIONS(12173), + [anon_sym_BSLASHAcfp] = ACTIONS(12173), + [anon_sym_BSLASHac] = ACTIONS(12173), + [anon_sym_BSLASHAc] = ACTIONS(12173), + [anon_sym_BSLASHacp] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12173), + [anon_sym_BSLASHcolor] = ACTIONS(12173), + [anon_sym_BSLASHcolorbox] = ACTIONS(12173), + [anon_sym_BSLASHtextcolor] = ACTIONS(12173), + [anon_sym_BSLASHpagecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12173), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12173), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12173), + }, + [820] = { + [sym_generic_command_name] = ACTIONS(12493), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12493), + [aux_sym_chapter_token1] = ACTIONS(12493), + [aux_sym_section_token1] = ACTIONS(12493), + [aux_sym_subsection_token1] = ACTIONS(12493), + [aux_sym_subsubsection_token1] = ACTIONS(12493), + [aux_sym_paragraph_token1] = ACTIONS(12493), + [aux_sym_subparagraph_token1] = ACTIONS(12493), + [anon_sym_BSLASHitem] = ACTIONS(12493), + [anon_sym_LBRACK] = ACTIONS(12491), + [anon_sym_LBRACE] = ACTIONS(12491), + [anon_sym_LPAREN] = ACTIONS(12491), + [anon_sym_COMMA] = ACTIONS(12491), + [anon_sym_EQ] = ACTIONS(12491), + [sym_word] = ACTIONS(12491), + [sym_param] = ACTIONS(12491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12491), + [anon_sym_DOLLAR] = ACTIONS(12493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12491), + [anon_sym_BSLASHbegin] = ACTIONS(12493), + [anon_sym_BSLASHend] = ACTIONS(12493), + [anon_sym_BSLASHcaption] = ACTIONS(12493), + [anon_sym_BSLASHcite] = ACTIONS(12493), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCite] = ACTIONS(12493), + [anon_sym_BSLASHnocite] = ACTIONS(12493), + [anon_sym_BSLASHcitet] = ACTIONS(12493), + [anon_sym_BSLASHcitep] = ACTIONS(12493), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteauthor] = ACTIONS(12493), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12493), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitetitle] = ACTIONS(12493), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteyear] = ACTIONS(12493), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitedate] = ACTIONS(12493), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteurl] = ACTIONS(12493), + [anon_sym_BSLASHfullcite] = ACTIONS(12493), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12493), + [anon_sym_BSLASHcitealt] = ACTIONS(12493), + [anon_sym_BSLASHcitealp] = ACTIONS(12493), + [anon_sym_BSLASHcitetext] = ACTIONS(12493), + [anon_sym_BSLASHparencite] = ACTIONS(12493), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHParencite] = ACTIONS(12493), + [anon_sym_BSLASHfootcite] = ACTIONS(12493), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12493), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12493), + [anon_sym_BSLASHtextcite] = ACTIONS(12493), + [anon_sym_BSLASHTextcite] = ACTIONS(12493), + [anon_sym_BSLASHsmartcite] = ACTIONS(12493), + [anon_sym_BSLASHSmartcite] = ACTIONS(12493), + [anon_sym_BSLASHsupercite] = ACTIONS(12493), + [anon_sym_BSLASHautocite] = ACTIONS(12493), + [anon_sym_BSLASHAutocite] = ACTIONS(12493), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHvolcite] = ACTIONS(12493), + [anon_sym_BSLASHVolcite] = ACTIONS(12493), + [anon_sym_BSLASHpvolcite] = ACTIONS(12493), + [anon_sym_BSLASHPvolcite] = ACTIONS(12493), + [anon_sym_BSLASHfvolcite] = ACTIONS(12493), + [anon_sym_BSLASHftvolcite] = ACTIONS(12493), + [anon_sym_BSLASHsvolcite] = ACTIONS(12493), + [anon_sym_BSLASHSvolcite] = ACTIONS(12493), + [anon_sym_BSLASHtvolcite] = ACTIONS(12493), + [anon_sym_BSLASHTvolcite] = ACTIONS(12493), + [anon_sym_BSLASHavolcite] = ACTIONS(12493), + [anon_sym_BSLASHAvolcite] = ACTIONS(12493), + [anon_sym_BSLASHnotecite] = ACTIONS(12493), + [anon_sym_BSLASHpnotecite] = ACTIONS(12493), + [anon_sym_BSLASHPnotecite] = ACTIONS(12493), + [anon_sym_BSLASHfnotecite] = ACTIONS(12493), + [anon_sym_BSLASHusepackage] = ACTIONS(12493), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12493), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12493), + [anon_sym_BSLASHinclude] = ACTIONS(12493), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12493), + [anon_sym_BSLASHinput] = ACTIONS(12493), + [anon_sym_BSLASHsubfile] = ACTIONS(12493), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12493), + [anon_sym_BSLASHbibliography] = ACTIONS(12493), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12493), + [anon_sym_BSLASHincludesvg] = ACTIONS(12493), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12493), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12493), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12493), + [anon_sym_BSLASHimport] = ACTIONS(12493), + [anon_sym_BSLASHsubimport] = ACTIONS(12493), + [anon_sym_BSLASHinputfrom] = ACTIONS(12493), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12493), + [anon_sym_BSLASHincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHlabel] = ACTIONS(12493), + [anon_sym_BSLASHref] = ACTIONS(12493), + [anon_sym_BSLASHvref] = ACTIONS(12493), + [anon_sym_BSLASHVref] = ACTIONS(12493), + [anon_sym_BSLASHautoref] = ACTIONS(12493), + [anon_sym_BSLASHpageref] = ACTIONS(12493), + [anon_sym_BSLASHcref] = ACTIONS(12493), + [anon_sym_BSLASHCref] = ACTIONS(12493), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnameCref] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHlabelcref] = ACTIONS(12493), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12493), + [anon_sym_BSLASHeqref] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange] = ACTIONS(12493), + [anon_sym_BSLASHCrefrange] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewlabel] = ACTIONS(12493), + [anon_sym_BSLASHnewcommand] = ACTIONS(12493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12493), + [anon_sym_BSLASHgls] = ACTIONS(12493), + [anon_sym_BSLASHGls] = ACTIONS(12493), + [anon_sym_BSLASHGLS] = ACTIONS(12493), + [anon_sym_BSLASHglspl] = ACTIONS(12493), + [anon_sym_BSLASHGlspl] = ACTIONS(12493), + [anon_sym_BSLASHGLSpl] = ACTIONS(12493), + [anon_sym_BSLASHglsdisp] = ACTIONS(12493), + [anon_sym_BSLASHglslink] = ACTIONS(12493), + [anon_sym_BSLASHglstext] = ACTIONS(12493), + [anon_sym_BSLASHGlstext] = ACTIONS(12493), + [anon_sym_BSLASHGLStext] = ACTIONS(12493), + [anon_sym_BSLASHglsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12493), + [anon_sym_BSLASHglsplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSplural] = ACTIONS(12493), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHglsname] = ACTIONS(12493), + [anon_sym_BSLASHGlsname] = ACTIONS(12493), + [anon_sym_BSLASHGLSname] = ACTIONS(12493), + [anon_sym_BSLASHglssymbol] = ACTIONS(12493), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12493), + [anon_sym_BSLASHglsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12493), + [anon_sym_BSLASHglsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12493), + [anon_sym_BSLASHglsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12493), + [anon_sym_BSLASHglsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12493), + [anon_sym_BSLASHglsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12493), + [anon_sym_BSLASHnewacronym] = ACTIONS(12493), + [anon_sym_BSLASHacrshort] = ACTIONS(12493), + [anon_sym_BSLASHAcrshort] = ACTIONS(12493), + [anon_sym_BSLASHACRshort] = ACTIONS(12493), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12493), + [anon_sym_BSLASHacrlong] = ACTIONS(12493), + [anon_sym_BSLASHAcrlong] = ACTIONS(12493), + [anon_sym_BSLASHACRlong] = ACTIONS(12493), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12493), + [anon_sym_BSLASHacrfull] = ACTIONS(12493), + [anon_sym_BSLASHAcrfull] = ACTIONS(12493), + [anon_sym_BSLASHACRfull] = ACTIONS(12493), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12493), + [anon_sym_BSLASHacs] = ACTIONS(12493), + [anon_sym_BSLASHAcs] = ACTIONS(12493), + [anon_sym_BSLASHacsp] = ACTIONS(12493), + [anon_sym_BSLASHAcsp] = ACTIONS(12493), + [anon_sym_BSLASHacl] = ACTIONS(12493), + [anon_sym_BSLASHAcl] = ACTIONS(12493), + [anon_sym_BSLASHaclp] = ACTIONS(12493), + [anon_sym_BSLASHAclp] = ACTIONS(12493), + [anon_sym_BSLASHacf] = ACTIONS(12493), + [anon_sym_BSLASHAcf] = ACTIONS(12493), + [anon_sym_BSLASHacfp] = ACTIONS(12493), + [anon_sym_BSLASHAcfp] = ACTIONS(12493), + [anon_sym_BSLASHac] = ACTIONS(12493), + [anon_sym_BSLASHAc] = ACTIONS(12493), + [anon_sym_BSLASHacp] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12493), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12493), + [anon_sym_BSLASHcolor] = ACTIONS(12493), + [anon_sym_BSLASHcolorbox] = ACTIONS(12493), + [anon_sym_BSLASHtextcolor] = ACTIONS(12493), + [anon_sym_BSLASHpagecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12493), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12493), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12493), + }, + [821] = { + [sym_generic_command_name] = ACTIONS(12481), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12481), + [aux_sym_chapter_token1] = ACTIONS(12481), + [aux_sym_section_token1] = ACTIONS(12481), + [aux_sym_subsection_token1] = ACTIONS(12481), + [aux_sym_subsubsection_token1] = ACTIONS(12481), + [aux_sym_paragraph_token1] = ACTIONS(12481), + [aux_sym_subparagraph_token1] = ACTIONS(12481), + [anon_sym_BSLASHitem] = ACTIONS(12481), + [anon_sym_LBRACK] = ACTIONS(12479), + [anon_sym_LBRACE] = ACTIONS(12479), + [anon_sym_LPAREN] = ACTIONS(12479), + [anon_sym_COMMA] = ACTIONS(12479), + [anon_sym_EQ] = ACTIONS(12479), + [sym_word] = ACTIONS(12479), + [sym_param] = ACTIONS(12479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12479), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12479), + [anon_sym_DOLLAR] = ACTIONS(12481), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12479), + [anon_sym_BSLASHbegin] = ACTIONS(12481), + [anon_sym_BSLASHend] = ACTIONS(12481), + [anon_sym_BSLASHcaption] = ACTIONS(12481), + [anon_sym_BSLASHcite] = ACTIONS(12481), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCite] = ACTIONS(12481), + [anon_sym_BSLASHnocite] = ACTIONS(12481), + [anon_sym_BSLASHcitet] = ACTIONS(12481), + [anon_sym_BSLASHcitep] = ACTIONS(12481), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteauthor] = ACTIONS(12481), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12481), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitetitle] = ACTIONS(12481), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteyear] = ACTIONS(12481), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitedate] = ACTIONS(12481), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteurl] = ACTIONS(12481), + [anon_sym_BSLASHfullcite] = ACTIONS(12481), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12481), + [anon_sym_BSLASHcitealt] = ACTIONS(12481), + [anon_sym_BSLASHcitealp] = ACTIONS(12481), + [anon_sym_BSLASHcitetext] = ACTIONS(12481), + [anon_sym_BSLASHparencite] = ACTIONS(12481), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHParencite] = ACTIONS(12481), + [anon_sym_BSLASHfootcite] = ACTIONS(12481), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12481), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12481), + [anon_sym_BSLASHtextcite] = ACTIONS(12481), + [anon_sym_BSLASHTextcite] = ACTIONS(12481), + [anon_sym_BSLASHsmartcite] = ACTIONS(12481), + [anon_sym_BSLASHSmartcite] = ACTIONS(12481), + [anon_sym_BSLASHsupercite] = ACTIONS(12481), + [anon_sym_BSLASHautocite] = ACTIONS(12481), + [anon_sym_BSLASHAutocite] = ACTIONS(12481), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHvolcite] = ACTIONS(12481), + [anon_sym_BSLASHVolcite] = ACTIONS(12481), + [anon_sym_BSLASHpvolcite] = ACTIONS(12481), + [anon_sym_BSLASHPvolcite] = ACTIONS(12481), + [anon_sym_BSLASHfvolcite] = ACTIONS(12481), + [anon_sym_BSLASHftvolcite] = ACTIONS(12481), + [anon_sym_BSLASHsvolcite] = ACTIONS(12481), + [anon_sym_BSLASHSvolcite] = ACTIONS(12481), + [anon_sym_BSLASHtvolcite] = ACTIONS(12481), + [anon_sym_BSLASHTvolcite] = ACTIONS(12481), + [anon_sym_BSLASHavolcite] = ACTIONS(12481), + [anon_sym_BSLASHAvolcite] = ACTIONS(12481), + [anon_sym_BSLASHnotecite] = ACTIONS(12481), + [anon_sym_BSLASHpnotecite] = ACTIONS(12481), + [anon_sym_BSLASHPnotecite] = ACTIONS(12481), + [anon_sym_BSLASHfnotecite] = ACTIONS(12481), + [anon_sym_BSLASHusepackage] = ACTIONS(12481), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12481), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12481), + [anon_sym_BSLASHinclude] = ACTIONS(12481), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12481), + [anon_sym_BSLASHinput] = ACTIONS(12481), + [anon_sym_BSLASHsubfile] = ACTIONS(12481), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12481), + [anon_sym_BSLASHbibliography] = ACTIONS(12481), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12481), + [anon_sym_BSLASHincludesvg] = ACTIONS(12481), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12481), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12481), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12481), + [anon_sym_BSLASHimport] = ACTIONS(12481), + [anon_sym_BSLASHsubimport] = ACTIONS(12481), + [anon_sym_BSLASHinputfrom] = ACTIONS(12481), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12481), + [anon_sym_BSLASHincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHlabel] = ACTIONS(12481), + [anon_sym_BSLASHref] = ACTIONS(12481), + [anon_sym_BSLASHvref] = ACTIONS(12481), + [anon_sym_BSLASHVref] = ACTIONS(12481), + [anon_sym_BSLASHautoref] = ACTIONS(12481), + [anon_sym_BSLASHpageref] = ACTIONS(12481), + [anon_sym_BSLASHcref] = ACTIONS(12481), + [anon_sym_BSLASHCref] = ACTIONS(12481), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnameCref] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHlabelcref] = ACTIONS(12481), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12481), + [anon_sym_BSLASHeqref] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange] = ACTIONS(12481), + [anon_sym_BSLASHCrefrange] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewlabel] = ACTIONS(12481), + [anon_sym_BSLASHnewcommand] = ACTIONS(12481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12481), + [anon_sym_BSLASHgls] = ACTIONS(12481), + [anon_sym_BSLASHGls] = ACTIONS(12481), + [anon_sym_BSLASHGLS] = ACTIONS(12481), + [anon_sym_BSLASHglspl] = ACTIONS(12481), + [anon_sym_BSLASHGlspl] = ACTIONS(12481), + [anon_sym_BSLASHGLSpl] = ACTIONS(12481), + [anon_sym_BSLASHglsdisp] = ACTIONS(12481), + [anon_sym_BSLASHglslink] = ACTIONS(12481), + [anon_sym_BSLASHglstext] = ACTIONS(12481), + [anon_sym_BSLASHGlstext] = ACTIONS(12481), + [anon_sym_BSLASHGLStext] = ACTIONS(12481), + [anon_sym_BSLASHglsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12481), + [anon_sym_BSLASHglsplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSplural] = ACTIONS(12481), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHglsname] = ACTIONS(12481), + [anon_sym_BSLASHGlsname] = ACTIONS(12481), + [anon_sym_BSLASHGLSname] = ACTIONS(12481), + [anon_sym_BSLASHglssymbol] = ACTIONS(12481), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12481), + [anon_sym_BSLASHglsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12481), + [anon_sym_BSLASHglsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12481), + [anon_sym_BSLASHglsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12481), + [anon_sym_BSLASHglsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12481), + [anon_sym_BSLASHglsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12481), + [anon_sym_BSLASHnewacronym] = ACTIONS(12481), + [anon_sym_BSLASHacrshort] = ACTIONS(12481), + [anon_sym_BSLASHAcrshort] = ACTIONS(12481), + [anon_sym_BSLASHACRshort] = ACTIONS(12481), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12481), + [anon_sym_BSLASHacrlong] = ACTIONS(12481), + [anon_sym_BSLASHAcrlong] = ACTIONS(12481), + [anon_sym_BSLASHACRlong] = ACTIONS(12481), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12481), + [anon_sym_BSLASHacrfull] = ACTIONS(12481), + [anon_sym_BSLASHAcrfull] = ACTIONS(12481), + [anon_sym_BSLASHACRfull] = ACTIONS(12481), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12481), + [anon_sym_BSLASHacs] = ACTIONS(12481), + [anon_sym_BSLASHAcs] = ACTIONS(12481), + [anon_sym_BSLASHacsp] = ACTIONS(12481), + [anon_sym_BSLASHAcsp] = ACTIONS(12481), + [anon_sym_BSLASHacl] = ACTIONS(12481), + [anon_sym_BSLASHAcl] = ACTIONS(12481), + [anon_sym_BSLASHaclp] = ACTIONS(12481), + [anon_sym_BSLASHAclp] = ACTIONS(12481), + [anon_sym_BSLASHacf] = ACTIONS(12481), + [anon_sym_BSLASHAcf] = ACTIONS(12481), + [anon_sym_BSLASHacfp] = ACTIONS(12481), + [anon_sym_BSLASHAcfp] = ACTIONS(12481), + [anon_sym_BSLASHac] = ACTIONS(12481), + [anon_sym_BSLASHAc] = ACTIONS(12481), + [anon_sym_BSLASHacp] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12481), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12481), + [anon_sym_BSLASHcolor] = ACTIONS(12481), + [anon_sym_BSLASHcolorbox] = ACTIONS(12481), + [anon_sym_BSLASHtextcolor] = ACTIONS(12481), + [anon_sym_BSLASHpagecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12481), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12481), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12481), + }, + [822] = { + [sym_generic_command_name] = ACTIONS(12477), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12477), + [aux_sym_chapter_token1] = ACTIONS(12477), + [aux_sym_section_token1] = ACTIONS(12477), + [aux_sym_subsection_token1] = ACTIONS(12477), + [aux_sym_subsubsection_token1] = ACTIONS(12477), + [aux_sym_paragraph_token1] = ACTIONS(12477), + [aux_sym_subparagraph_token1] = ACTIONS(12477), + [anon_sym_BSLASHitem] = ACTIONS(12477), + [anon_sym_LBRACK] = ACTIONS(12475), + [anon_sym_LBRACE] = ACTIONS(12475), + [anon_sym_LPAREN] = ACTIONS(12475), + [anon_sym_COMMA] = ACTIONS(12475), + [anon_sym_EQ] = ACTIONS(12475), + [sym_word] = ACTIONS(12475), + [sym_param] = ACTIONS(12475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12475), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12475), + [anon_sym_DOLLAR] = ACTIONS(12477), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12475), + [anon_sym_BSLASHbegin] = ACTIONS(12477), + [anon_sym_BSLASHend] = ACTIONS(12477), + [anon_sym_BSLASHcaption] = ACTIONS(12477), + [anon_sym_BSLASHcite] = ACTIONS(12477), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCite] = ACTIONS(12477), + [anon_sym_BSLASHnocite] = ACTIONS(12477), + [anon_sym_BSLASHcitet] = ACTIONS(12477), + [anon_sym_BSLASHcitep] = ACTIONS(12477), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteauthor] = ACTIONS(12477), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12477), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitetitle] = ACTIONS(12477), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteyear] = ACTIONS(12477), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitedate] = ACTIONS(12477), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteurl] = ACTIONS(12477), + [anon_sym_BSLASHfullcite] = ACTIONS(12477), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12477), + [anon_sym_BSLASHcitealt] = ACTIONS(12477), + [anon_sym_BSLASHcitealp] = ACTIONS(12477), + [anon_sym_BSLASHcitetext] = ACTIONS(12477), + [anon_sym_BSLASHparencite] = ACTIONS(12477), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHParencite] = ACTIONS(12477), + [anon_sym_BSLASHfootcite] = ACTIONS(12477), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12477), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12477), + [anon_sym_BSLASHtextcite] = ACTIONS(12477), + [anon_sym_BSLASHTextcite] = ACTIONS(12477), + [anon_sym_BSLASHsmartcite] = ACTIONS(12477), + [anon_sym_BSLASHSmartcite] = ACTIONS(12477), + [anon_sym_BSLASHsupercite] = ACTIONS(12477), + [anon_sym_BSLASHautocite] = ACTIONS(12477), + [anon_sym_BSLASHAutocite] = ACTIONS(12477), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHvolcite] = ACTIONS(12477), + [anon_sym_BSLASHVolcite] = ACTIONS(12477), + [anon_sym_BSLASHpvolcite] = ACTIONS(12477), + [anon_sym_BSLASHPvolcite] = ACTIONS(12477), + [anon_sym_BSLASHfvolcite] = ACTIONS(12477), + [anon_sym_BSLASHftvolcite] = ACTIONS(12477), + [anon_sym_BSLASHsvolcite] = ACTIONS(12477), + [anon_sym_BSLASHSvolcite] = ACTIONS(12477), + [anon_sym_BSLASHtvolcite] = ACTIONS(12477), + [anon_sym_BSLASHTvolcite] = ACTIONS(12477), + [anon_sym_BSLASHavolcite] = ACTIONS(12477), + [anon_sym_BSLASHAvolcite] = ACTIONS(12477), + [anon_sym_BSLASHnotecite] = ACTIONS(12477), + [anon_sym_BSLASHpnotecite] = ACTIONS(12477), + [anon_sym_BSLASHPnotecite] = ACTIONS(12477), + [anon_sym_BSLASHfnotecite] = ACTIONS(12477), + [anon_sym_BSLASHusepackage] = ACTIONS(12477), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12477), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12477), + [anon_sym_BSLASHinclude] = ACTIONS(12477), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12477), + [anon_sym_BSLASHinput] = ACTIONS(12477), + [anon_sym_BSLASHsubfile] = ACTIONS(12477), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12477), + [anon_sym_BSLASHbibliography] = ACTIONS(12477), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12477), + [anon_sym_BSLASHincludesvg] = ACTIONS(12477), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12477), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12477), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12477), + [anon_sym_BSLASHimport] = ACTIONS(12477), + [anon_sym_BSLASHsubimport] = ACTIONS(12477), + [anon_sym_BSLASHinputfrom] = ACTIONS(12477), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12477), + [anon_sym_BSLASHincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHlabel] = ACTIONS(12477), + [anon_sym_BSLASHref] = ACTIONS(12477), + [anon_sym_BSLASHvref] = ACTIONS(12477), + [anon_sym_BSLASHVref] = ACTIONS(12477), + [anon_sym_BSLASHautoref] = ACTIONS(12477), + [anon_sym_BSLASHpageref] = ACTIONS(12477), + [anon_sym_BSLASHcref] = ACTIONS(12477), + [anon_sym_BSLASHCref] = ACTIONS(12477), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnameCref] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHlabelcref] = ACTIONS(12477), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12477), + [anon_sym_BSLASHeqref] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange] = ACTIONS(12477), + [anon_sym_BSLASHCrefrange] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewlabel] = ACTIONS(12477), + [anon_sym_BSLASHnewcommand] = ACTIONS(12477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12477), + [anon_sym_BSLASHgls] = ACTIONS(12477), + [anon_sym_BSLASHGls] = ACTIONS(12477), + [anon_sym_BSLASHGLS] = ACTIONS(12477), + [anon_sym_BSLASHglspl] = ACTIONS(12477), + [anon_sym_BSLASHGlspl] = ACTIONS(12477), + [anon_sym_BSLASHGLSpl] = ACTIONS(12477), + [anon_sym_BSLASHglsdisp] = ACTIONS(12477), + [anon_sym_BSLASHglslink] = ACTIONS(12477), + [anon_sym_BSLASHglstext] = ACTIONS(12477), + [anon_sym_BSLASHGlstext] = ACTIONS(12477), + [anon_sym_BSLASHGLStext] = ACTIONS(12477), + [anon_sym_BSLASHglsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12477), + [anon_sym_BSLASHglsplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSplural] = ACTIONS(12477), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHglsname] = ACTIONS(12477), + [anon_sym_BSLASHGlsname] = ACTIONS(12477), + [anon_sym_BSLASHGLSname] = ACTIONS(12477), + [anon_sym_BSLASHglssymbol] = ACTIONS(12477), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12477), + [anon_sym_BSLASHglsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12477), + [anon_sym_BSLASHglsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12477), + [anon_sym_BSLASHglsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12477), + [anon_sym_BSLASHglsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12477), + [anon_sym_BSLASHglsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12477), + [anon_sym_BSLASHnewacronym] = ACTIONS(12477), + [anon_sym_BSLASHacrshort] = ACTIONS(12477), + [anon_sym_BSLASHAcrshort] = ACTIONS(12477), + [anon_sym_BSLASHACRshort] = ACTIONS(12477), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12477), + [anon_sym_BSLASHacrlong] = ACTIONS(12477), + [anon_sym_BSLASHAcrlong] = ACTIONS(12477), + [anon_sym_BSLASHACRlong] = ACTIONS(12477), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12477), + [anon_sym_BSLASHacrfull] = ACTIONS(12477), + [anon_sym_BSLASHAcrfull] = ACTIONS(12477), + [anon_sym_BSLASHACRfull] = ACTIONS(12477), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12477), + [anon_sym_BSLASHacs] = ACTIONS(12477), + [anon_sym_BSLASHAcs] = ACTIONS(12477), + [anon_sym_BSLASHacsp] = ACTIONS(12477), + [anon_sym_BSLASHAcsp] = ACTIONS(12477), + [anon_sym_BSLASHacl] = ACTIONS(12477), + [anon_sym_BSLASHAcl] = ACTIONS(12477), + [anon_sym_BSLASHaclp] = ACTIONS(12477), + [anon_sym_BSLASHAclp] = ACTIONS(12477), + [anon_sym_BSLASHacf] = ACTIONS(12477), + [anon_sym_BSLASHAcf] = ACTIONS(12477), + [anon_sym_BSLASHacfp] = ACTIONS(12477), + [anon_sym_BSLASHAcfp] = ACTIONS(12477), + [anon_sym_BSLASHac] = ACTIONS(12477), + [anon_sym_BSLASHAc] = ACTIONS(12477), + [anon_sym_BSLASHacp] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12477), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12477), + [anon_sym_BSLASHcolor] = ACTIONS(12477), + [anon_sym_BSLASHcolorbox] = ACTIONS(12477), + [anon_sym_BSLASHtextcolor] = ACTIONS(12477), + [anon_sym_BSLASHpagecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12477), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12477), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12477), + }, + [823] = { + [sym_generic_command_name] = ACTIONS(12160), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12160), + [aux_sym_chapter_token1] = ACTIONS(12160), + [aux_sym_section_token1] = ACTIONS(12160), + [aux_sym_subsection_token1] = ACTIONS(12160), + [aux_sym_subsubsection_token1] = ACTIONS(12160), + [aux_sym_paragraph_token1] = ACTIONS(12160), + [aux_sym_subparagraph_token1] = ACTIONS(12160), + [anon_sym_BSLASHitem] = ACTIONS(12160), + [anon_sym_LBRACK] = ACTIONS(12158), + [anon_sym_LBRACE] = ACTIONS(12158), + [anon_sym_LPAREN] = ACTIONS(12158), + [anon_sym_COMMA] = ACTIONS(12158), + [anon_sym_EQ] = ACTIONS(12158), + [sym_word] = ACTIONS(12158), + [sym_param] = ACTIONS(12158), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12158), + [anon_sym_DOLLAR] = ACTIONS(12160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12158), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12158), + [anon_sym_BSLASHbegin] = ACTIONS(12160), + [anon_sym_BSLASHcaption] = ACTIONS(12160), + [anon_sym_BSLASHcite] = ACTIONS(12160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCite] = ACTIONS(12160), + [anon_sym_BSLASHnocite] = ACTIONS(12160), + [anon_sym_BSLASHcitet] = ACTIONS(12160), + [anon_sym_BSLASHcitep] = ACTIONS(12160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteauthor] = ACTIONS(12160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitetitle] = ACTIONS(12160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteyear] = ACTIONS(12160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitedate] = ACTIONS(12160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteurl] = ACTIONS(12160), + [anon_sym_BSLASHfullcite] = ACTIONS(12160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12160), + [anon_sym_BSLASHcitealt] = ACTIONS(12160), + [anon_sym_BSLASHcitealp] = ACTIONS(12160), + [anon_sym_BSLASHcitetext] = ACTIONS(12160), + [anon_sym_BSLASHparencite] = ACTIONS(12160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHParencite] = ACTIONS(12160), + [anon_sym_BSLASHfootcite] = ACTIONS(12160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12160), + [anon_sym_BSLASHtextcite] = ACTIONS(12160), + [anon_sym_BSLASHTextcite] = ACTIONS(12160), + [anon_sym_BSLASHsmartcite] = ACTIONS(12160), + [anon_sym_BSLASHSmartcite] = ACTIONS(12160), + [anon_sym_BSLASHsupercite] = ACTIONS(12160), + [anon_sym_BSLASHautocite] = ACTIONS(12160), + [anon_sym_BSLASHAutocite] = ACTIONS(12160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHvolcite] = ACTIONS(12160), + [anon_sym_BSLASHVolcite] = ACTIONS(12160), + [anon_sym_BSLASHpvolcite] = ACTIONS(12160), + [anon_sym_BSLASHPvolcite] = ACTIONS(12160), + [anon_sym_BSLASHfvolcite] = ACTIONS(12160), + [anon_sym_BSLASHftvolcite] = ACTIONS(12160), + [anon_sym_BSLASHsvolcite] = ACTIONS(12160), + [anon_sym_BSLASHSvolcite] = ACTIONS(12160), + [anon_sym_BSLASHtvolcite] = ACTIONS(12160), + [anon_sym_BSLASHTvolcite] = ACTIONS(12160), + [anon_sym_BSLASHavolcite] = ACTIONS(12160), + [anon_sym_BSLASHAvolcite] = ACTIONS(12160), + [anon_sym_BSLASHnotecite] = ACTIONS(12160), + [anon_sym_BSLASHpnotecite] = ACTIONS(12160), + [anon_sym_BSLASHPnotecite] = ACTIONS(12160), + [anon_sym_BSLASHfnotecite] = ACTIONS(12160), + [anon_sym_BSLASHusepackage] = ACTIONS(12160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12160), + [anon_sym_BSLASHinclude] = ACTIONS(12160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12160), + [anon_sym_BSLASHinput] = ACTIONS(12160), + [anon_sym_BSLASHsubfile] = ACTIONS(12160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12160), + [anon_sym_BSLASHbibliography] = ACTIONS(12160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12160), + [anon_sym_BSLASHincludesvg] = ACTIONS(12160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12160), + [anon_sym_BSLASHimport] = ACTIONS(12160), + [anon_sym_BSLASHsubimport] = ACTIONS(12160), + [anon_sym_BSLASHinputfrom] = ACTIONS(12160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12160), + [anon_sym_BSLASHincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHlabel] = ACTIONS(12160), + [anon_sym_BSLASHref] = ACTIONS(12160), + [anon_sym_BSLASHvref] = ACTIONS(12160), + [anon_sym_BSLASHVref] = ACTIONS(12160), + [anon_sym_BSLASHautoref] = ACTIONS(12160), + [anon_sym_BSLASHpageref] = ACTIONS(12160), + [anon_sym_BSLASHcref] = ACTIONS(12160), + [anon_sym_BSLASHCref] = ACTIONS(12160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnameCref] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHlabelcref] = ACTIONS(12160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12160), + [anon_sym_BSLASHeqref] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange] = ACTIONS(12160), + [anon_sym_BSLASHCrefrange] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewlabel] = ACTIONS(12160), + [anon_sym_BSLASHnewcommand] = ACTIONS(12160), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12160), + [anon_sym_BSLASHgls] = ACTIONS(12160), + [anon_sym_BSLASHGls] = ACTIONS(12160), + [anon_sym_BSLASHGLS] = ACTIONS(12160), + [anon_sym_BSLASHglspl] = ACTIONS(12160), + [anon_sym_BSLASHGlspl] = ACTIONS(12160), + [anon_sym_BSLASHGLSpl] = ACTIONS(12160), + [anon_sym_BSLASHglsdisp] = ACTIONS(12160), + [anon_sym_BSLASHglslink] = ACTIONS(12160), + [anon_sym_BSLASHglstext] = ACTIONS(12160), + [anon_sym_BSLASHGlstext] = ACTIONS(12160), + [anon_sym_BSLASHGLStext] = ACTIONS(12160), + [anon_sym_BSLASHglsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12160), + [anon_sym_BSLASHglsplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSplural] = ACTIONS(12160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHglsname] = ACTIONS(12160), + [anon_sym_BSLASHGlsname] = ACTIONS(12160), + [anon_sym_BSLASHGLSname] = ACTIONS(12160), + [anon_sym_BSLASHglssymbol] = ACTIONS(12160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12160), + [anon_sym_BSLASHglsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12160), + [anon_sym_BSLASHglsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12160), + [anon_sym_BSLASHglsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12160), + [anon_sym_BSLASHglsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12160), + [anon_sym_BSLASHglsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12160), + [anon_sym_BSLASHnewacronym] = ACTIONS(12160), + [anon_sym_BSLASHacrshort] = ACTIONS(12160), + [anon_sym_BSLASHAcrshort] = ACTIONS(12160), + [anon_sym_BSLASHACRshort] = ACTIONS(12160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12160), + [anon_sym_BSLASHacrlong] = ACTIONS(12160), + [anon_sym_BSLASHAcrlong] = ACTIONS(12160), + [anon_sym_BSLASHACRlong] = ACTIONS(12160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12160), + [anon_sym_BSLASHacrfull] = ACTIONS(12160), + [anon_sym_BSLASHAcrfull] = ACTIONS(12160), + [anon_sym_BSLASHACRfull] = ACTIONS(12160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12160), + [anon_sym_BSLASHacs] = ACTIONS(12160), + [anon_sym_BSLASHAcs] = ACTIONS(12160), + [anon_sym_BSLASHacsp] = ACTIONS(12160), + [anon_sym_BSLASHAcsp] = ACTIONS(12160), + [anon_sym_BSLASHacl] = ACTIONS(12160), + [anon_sym_BSLASHAcl] = ACTIONS(12160), + [anon_sym_BSLASHaclp] = ACTIONS(12160), + [anon_sym_BSLASHAclp] = ACTIONS(12160), + [anon_sym_BSLASHacf] = ACTIONS(12160), + [anon_sym_BSLASHAcf] = ACTIONS(12160), + [anon_sym_BSLASHacfp] = ACTIONS(12160), + [anon_sym_BSLASHAcfp] = ACTIONS(12160), + [anon_sym_BSLASHac] = ACTIONS(12160), + [anon_sym_BSLASHAc] = ACTIONS(12160), + [anon_sym_BSLASHacp] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12160), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12160), + [anon_sym_BSLASHcolor] = ACTIONS(12160), + [anon_sym_BSLASHcolorbox] = ACTIONS(12160), + [anon_sym_BSLASHtextcolor] = ACTIONS(12160), + [anon_sym_BSLASHpagecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12160), + }, + [824] = { + [sym_generic_command_name] = ACTIONS(12469), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12469), + [aux_sym_chapter_token1] = ACTIONS(12469), + [aux_sym_section_token1] = ACTIONS(12469), + [aux_sym_subsection_token1] = ACTIONS(12469), + [aux_sym_subsubsection_token1] = ACTIONS(12469), + [aux_sym_paragraph_token1] = ACTIONS(12469), + [aux_sym_subparagraph_token1] = ACTIONS(12469), + [anon_sym_BSLASHitem] = ACTIONS(12469), + [anon_sym_LBRACK] = ACTIONS(12467), + [anon_sym_LBRACE] = ACTIONS(12467), + [anon_sym_LPAREN] = ACTIONS(12467), + [anon_sym_COMMA] = ACTIONS(12467), + [anon_sym_EQ] = ACTIONS(12467), + [sym_word] = ACTIONS(12467), + [sym_param] = ACTIONS(12467), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12467), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12467), + [anon_sym_DOLLAR] = ACTIONS(12469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12467), + [anon_sym_BSLASHbegin] = ACTIONS(12469), + [anon_sym_BSLASHend] = ACTIONS(12469), + [anon_sym_BSLASHcaption] = ACTIONS(12469), + [anon_sym_BSLASHcite] = ACTIONS(12469), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCite] = ACTIONS(12469), + [anon_sym_BSLASHnocite] = ACTIONS(12469), + [anon_sym_BSLASHcitet] = ACTIONS(12469), + [anon_sym_BSLASHcitep] = ACTIONS(12469), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteauthor] = ACTIONS(12469), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12469), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitetitle] = ACTIONS(12469), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteyear] = ACTIONS(12469), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitedate] = ACTIONS(12469), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteurl] = ACTIONS(12469), + [anon_sym_BSLASHfullcite] = ACTIONS(12469), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12469), + [anon_sym_BSLASHcitealt] = ACTIONS(12469), + [anon_sym_BSLASHcitealp] = ACTIONS(12469), + [anon_sym_BSLASHcitetext] = ACTIONS(12469), + [anon_sym_BSLASHparencite] = ACTIONS(12469), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHParencite] = ACTIONS(12469), + [anon_sym_BSLASHfootcite] = ACTIONS(12469), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12469), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12469), + [anon_sym_BSLASHtextcite] = ACTIONS(12469), + [anon_sym_BSLASHTextcite] = ACTIONS(12469), + [anon_sym_BSLASHsmartcite] = ACTIONS(12469), + [anon_sym_BSLASHSmartcite] = ACTIONS(12469), + [anon_sym_BSLASHsupercite] = ACTIONS(12469), + [anon_sym_BSLASHautocite] = ACTIONS(12469), + [anon_sym_BSLASHAutocite] = ACTIONS(12469), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHvolcite] = ACTIONS(12469), + [anon_sym_BSLASHVolcite] = ACTIONS(12469), + [anon_sym_BSLASHpvolcite] = ACTIONS(12469), + [anon_sym_BSLASHPvolcite] = ACTIONS(12469), + [anon_sym_BSLASHfvolcite] = ACTIONS(12469), + [anon_sym_BSLASHftvolcite] = ACTIONS(12469), + [anon_sym_BSLASHsvolcite] = ACTIONS(12469), + [anon_sym_BSLASHSvolcite] = ACTIONS(12469), + [anon_sym_BSLASHtvolcite] = ACTIONS(12469), + [anon_sym_BSLASHTvolcite] = ACTIONS(12469), + [anon_sym_BSLASHavolcite] = ACTIONS(12469), + [anon_sym_BSLASHAvolcite] = ACTIONS(12469), + [anon_sym_BSLASHnotecite] = ACTIONS(12469), + [anon_sym_BSLASHpnotecite] = ACTIONS(12469), + [anon_sym_BSLASHPnotecite] = ACTIONS(12469), + [anon_sym_BSLASHfnotecite] = ACTIONS(12469), + [anon_sym_BSLASHusepackage] = ACTIONS(12469), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12469), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12469), + [anon_sym_BSLASHinclude] = ACTIONS(12469), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12469), + [anon_sym_BSLASHinput] = ACTIONS(12469), + [anon_sym_BSLASHsubfile] = ACTIONS(12469), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12469), + [anon_sym_BSLASHbibliography] = ACTIONS(12469), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12469), + [anon_sym_BSLASHincludesvg] = ACTIONS(12469), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12469), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12469), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12469), + [anon_sym_BSLASHimport] = ACTIONS(12469), + [anon_sym_BSLASHsubimport] = ACTIONS(12469), + [anon_sym_BSLASHinputfrom] = ACTIONS(12469), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12469), + [anon_sym_BSLASHincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHlabel] = ACTIONS(12469), + [anon_sym_BSLASHref] = ACTIONS(12469), + [anon_sym_BSLASHvref] = ACTIONS(12469), + [anon_sym_BSLASHVref] = ACTIONS(12469), + [anon_sym_BSLASHautoref] = ACTIONS(12469), + [anon_sym_BSLASHpageref] = ACTIONS(12469), + [anon_sym_BSLASHcref] = ACTIONS(12469), + [anon_sym_BSLASHCref] = ACTIONS(12469), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnameCref] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHlabelcref] = ACTIONS(12469), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12469), + [anon_sym_BSLASHeqref] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange] = ACTIONS(12469), + [anon_sym_BSLASHCrefrange] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewlabel] = ACTIONS(12469), + [anon_sym_BSLASHnewcommand] = ACTIONS(12469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12469), + [anon_sym_BSLASHgls] = ACTIONS(12469), + [anon_sym_BSLASHGls] = ACTIONS(12469), + [anon_sym_BSLASHGLS] = ACTIONS(12469), + [anon_sym_BSLASHglspl] = ACTIONS(12469), + [anon_sym_BSLASHGlspl] = ACTIONS(12469), + [anon_sym_BSLASHGLSpl] = ACTIONS(12469), + [anon_sym_BSLASHglsdisp] = ACTIONS(12469), + [anon_sym_BSLASHglslink] = ACTIONS(12469), + [anon_sym_BSLASHglstext] = ACTIONS(12469), + [anon_sym_BSLASHGlstext] = ACTIONS(12469), + [anon_sym_BSLASHGLStext] = ACTIONS(12469), + [anon_sym_BSLASHglsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12469), + [anon_sym_BSLASHglsplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSplural] = ACTIONS(12469), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHglsname] = ACTIONS(12469), + [anon_sym_BSLASHGlsname] = ACTIONS(12469), + [anon_sym_BSLASHGLSname] = ACTIONS(12469), + [anon_sym_BSLASHglssymbol] = ACTIONS(12469), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12469), + [anon_sym_BSLASHglsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12469), + [anon_sym_BSLASHglsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12469), + [anon_sym_BSLASHglsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12469), + [anon_sym_BSLASHglsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12469), + [anon_sym_BSLASHglsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12469), + [anon_sym_BSLASHnewacronym] = ACTIONS(12469), + [anon_sym_BSLASHacrshort] = ACTIONS(12469), + [anon_sym_BSLASHAcrshort] = ACTIONS(12469), + [anon_sym_BSLASHACRshort] = ACTIONS(12469), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12469), + [anon_sym_BSLASHacrlong] = ACTIONS(12469), + [anon_sym_BSLASHAcrlong] = ACTIONS(12469), + [anon_sym_BSLASHACRlong] = ACTIONS(12469), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12469), + [anon_sym_BSLASHacrfull] = ACTIONS(12469), + [anon_sym_BSLASHAcrfull] = ACTIONS(12469), + [anon_sym_BSLASHACRfull] = ACTIONS(12469), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12469), + [anon_sym_BSLASHacs] = ACTIONS(12469), + [anon_sym_BSLASHAcs] = ACTIONS(12469), + [anon_sym_BSLASHacsp] = ACTIONS(12469), + [anon_sym_BSLASHAcsp] = ACTIONS(12469), + [anon_sym_BSLASHacl] = ACTIONS(12469), + [anon_sym_BSLASHAcl] = ACTIONS(12469), + [anon_sym_BSLASHaclp] = ACTIONS(12469), + [anon_sym_BSLASHAclp] = ACTIONS(12469), + [anon_sym_BSLASHacf] = ACTIONS(12469), + [anon_sym_BSLASHAcf] = ACTIONS(12469), + [anon_sym_BSLASHacfp] = ACTIONS(12469), + [anon_sym_BSLASHAcfp] = ACTIONS(12469), + [anon_sym_BSLASHac] = ACTIONS(12469), + [anon_sym_BSLASHAc] = ACTIONS(12469), + [anon_sym_BSLASHacp] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12469), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12469), + [anon_sym_BSLASHcolor] = ACTIONS(12469), + [anon_sym_BSLASHcolorbox] = ACTIONS(12469), + [anon_sym_BSLASHtextcolor] = ACTIONS(12469), + [anon_sym_BSLASHpagecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12469), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12469), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12469), + }, + [825] = { + [sym_generic_command_name] = ACTIONS(12465), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12465), + [aux_sym_chapter_token1] = ACTIONS(12465), + [aux_sym_section_token1] = ACTIONS(12465), + [aux_sym_subsection_token1] = ACTIONS(12465), + [aux_sym_subsubsection_token1] = ACTIONS(12465), + [aux_sym_paragraph_token1] = ACTIONS(12465), + [aux_sym_subparagraph_token1] = ACTIONS(12465), + [anon_sym_BSLASHitem] = ACTIONS(12465), + [anon_sym_LBRACK] = ACTIONS(12463), + [anon_sym_LBRACE] = ACTIONS(12463), + [anon_sym_LPAREN] = ACTIONS(12463), + [anon_sym_COMMA] = ACTIONS(12463), + [anon_sym_EQ] = ACTIONS(12463), + [sym_word] = ACTIONS(12463), + [sym_param] = ACTIONS(12463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12463), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12463), + [anon_sym_DOLLAR] = ACTIONS(12465), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12463), + [anon_sym_BSLASHbegin] = ACTIONS(12465), + [anon_sym_BSLASHend] = ACTIONS(12465), + [anon_sym_BSLASHcaption] = ACTIONS(12465), + [anon_sym_BSLASHcite] = ACTIONS(12465), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCite] = ACTIONS(12465), + [anon_sym_BSLASHnocite] = ACTIONS(12465), + [anon_sym_BSLASHcitet] = ACTIONS(12465), + [anon_sym_BSLASHcitep] = ACTIONS(12465), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteauthor] = ACTIONS(12465), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12465), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitetitle] = ACTIONS(12465), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteyear] = ACTIONS(12465), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitedate] = ACTIONS(12465), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteurl] = ACTIONS(12465), + [anon_sym_BSLASHfullcite] = ACTIONS(12465), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12465), + [anon_sym_BSLASHcitealt] = ACTIONS(12465), + [anon_sym_BSLASHcitealp] = ACTIONS(12465), + [anon_sym_BSLASHcitetext] = ACTIONS(12465), + [anon_sym_BSLASHparencite] = ACTIONS(12465), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHParencite] = ACTIONS(12465), + [anon_sym_BSLASHfootcite] = ACTIONS(12465), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12465), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12465), + [anon_sym_BSLASHtextcite] = ACTIONS(12465), + [anon_sym_BSLASHTextcite] = ACTIONS(12465), + [anon_sym_BSLASHsmartcite] = ACTIONS(12465), + [anon_sym_BSLASHSmartcite] = ACTIONS(12465), + [anon_sym_BSLASHsupercite] = ACTIONS(12465), + [anon_sym_BSLASHautocite] = ACTIONS(12465), + [anon_sym_BSLASHAutocite] = ACTIONS(12465), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHvolcite] = ACTIONS(12465), + [anon_sym_BSLASHVolcite] = ACTIONS(12465), + [anon_sym_BSLASHpvolcite] = ACTIONS(12465), + [anon_sym_BSLASHPvolcite] = ACTIONS(12465), + [anon_sym_BSLASHfvolcite] = ACTIONS(12465), + [anon_sym_BSLASHftvolcite] = ACTIONS(12465), + [anon_sym_BSLASHsvolcite] = ACTIONS(12465), + [anon_sym_BSLASHSvolcite] = ACTIONS(12465), + [anon_sym_BSLASHtvolcite] = ACTIONS(12465), + [anon_sym_BSLASHTvolcite] = ACTIONS(12465), + [anon_sym_BSLASHavolcite] = ACTIONS(12465), + [anon_sym_BSLASHAvolcite] = ACTIONS(12465), + [anon_sym_BSLASHnotecite] = ACTIONS(12465), + [anon_sym_BSLASHpnotecite] = ACTIONS(12465), + [anon_sym_BSLASHPnotecite] = ACTIONS(12465), + [anon_sym_BSLASHfnotecite] = ACTIONS(12465), + [anon_sym_BSLASHusepackage] = ACTIONS(12465), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12465), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12465), + [anon_sym_BSLASHinclude] = ACTIONS(12465), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12465), + [anon_sym_BSLASHinput] = ACTIONS(12465), + [anon_sym_BSLASHsubfile] = ACTIONS(12465), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12465), + [anon_sym_BSLASHbibliography] = ACTIONS(12465), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12465), + [anon_sym_BSLASHincludesvg] = ACTIONS(12465), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12465), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12465), + [anon_sym_BSLASHimport] = ACTIONS(12465), + [anon_sym_BSLASHsubimport] = ACTIONS(12465), + [anon_sym_BSLASHinputfrom] = ACTIONS(12465), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12465), + [anon_sym_BSLASHincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHlabel] = ACTIONS(12465), + [anon_sym_BSLASHref] = ACTIONS(12465), + [anon_sym_BSLASHvref] = ACTIONS(12465), + [anon_sym_BSLASHVref] = ACTIONS(12465), + [anon_sym_BSLASHautoref] = ACTIONS(12465), + [anon_sym_BSLASHpageref] = ACTIONS(12465), + [anon_sym_BSLASHcref] = ACTIONS(12465), + [anon_sym_BSLASHCref] = ACTIONS(12465), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnameCref] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHlabelcref] = ACTIONS(12465), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12465), + [anon_sym_BSLASHeqref] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange] = ACTIONS(12465), + [anon_sym_BSLASHCrefrange] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewlabel] = ACTIONS(12465), + [anon_sym_BSLASHnewcommand] = ACTIONS(12465), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12465), + [anon_sym_BSLASHgls] = ACTIONS(12465), + [anon_sym_BSLASHGls] = ACTIONS(12465), + [anon_sym_BSLASHGLS] = ACTIONS(12465), + [anon_sym_BSLASHglspl] = ACTIONS(12465), + [anon_sym_BSLASHGlspl] = ACTIONS(12465), + [anon_sym_BSLASHGLSpl] = ACTIONS(12465), + [anon_sym_BSLASHglsdisp] = ACTIONS(12465), + [anon_sym_BSLASHglslink] = ACTIONS(12465), + [anon_sym_BSLASHglstext] = ACTIONS(12465), + [anon_sym_BSLASHGlstext] = ACTIONS(12465), + [anon_sym_BSLASHGLStext] = ACTIONS(12465), + [anon_sym_BSLASHglsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12465), + [anon_sym_BSLASHglsplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSplural] = ACTIONS(12465), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHglsname] = ACTIONS(12465), + [anon_sym_BSLASHGlsname] = ACTIONS(12465), + [anon_sym_BSLASHGLSname] = ACTIONS(12465), + [anon_sym_BSLASHglssymbol] = ACTIONS(12465), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12465), + [anon_sym_BSLASHglsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12465), + [anon_sym_BSLASHglsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12465), + [anon_sym_BSLASHglsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12465), + [anon_sym_BSLASHglsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12465), + [anon_sym_BSLASHglsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12465), + [anon_sym_BSLASHnewacronym] = ACTIONS(12465), + [anon_sym_BSLASHacrshort] = ACTIONS(12465), + [anon_sym_BSLASHAcrshort] = ACTIONS(12465), + [anon_sym_BSLASHACRshort] = ACTIONS(12465), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12465), + [anon_sym_BSLASHacrlong] = ACTIONS(12465), + [anon_sym_BSLASHAcrlong] = ACTIONS(12465), + [anon_sym_BSLASHACRlong] = ACTIONS(12465), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12465), + [anon_sym_BSLASHacrfull] = ACTIONS(12465), + [anon_sym_BSLASHAcrfull] = ACTIONS(12465), + [anon_sym_BSLASHACRfull] = ACTIONS(12465), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12465), + [anon_sym_BSLASHacs] = ACTIONS(12465), + [anon_sym_BSLASHAcs] = ACTIONS(12465), + [anon_sym_BSLASHacsp] = ACTIONS(12465), + [anon_sym_BSLASHAcsp] = ACTIONS(12465), + [anon_sym_BSLASHacl] = ACTIONS(12465), + [anon_sym_BSLASHAcl] = ACTIONS(12465), + [anon_sym_BSLASHaclp] = ACTIONS(12465), + [anon_sym_BSLASHAclp] = ACTIONS(12465), + [anon_sym_BSLASHacf] = ACTIONS(12465), + [anon_sym_BSLASHAcf] = ACTIONS(12465), + [anon_sym_BSLASHacfp] = ACTIONS(12465), + [anon_sym_BSLASHAcfp] = ACTIONS(12465), + [anon_sym_BSLASHac] = ACTIONS(12465), + [anon_sym_BSLASHAc] = ACTIONS(12465), + [anon_sym_BSLASHacp] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12465), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12465), + [anon_sym_BSLASHcolor] = ACTIONS(12465), + [anon_sym_BSLASHcolorbox] = ACTIONS(12465), + [anon_sym_BSLASHtextcolor] = ACTIONS(12465), + [anon_sym_BSLASHpagecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12465), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12465), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12465), + }, + [826] = { + [sym_generic_command_name] = ACTIONS(12461), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12461), + [aux_sym_chapter_token1] = ACTIONS(12461), + [aux_sym_section_token1] = ACTIONS(12461), + [aux_sym_subsection_token1] = ACTIONS(12461), + [aux_sym_subsubsection_token1] = ACTIONS(12461), + [aux_sym_paragraph_token1] = ACTIONS(12461), + [aux_sym_subparagraph_token1] = ACTIONS(12461), + [anon_sym_BSLASHitem] = ACTIONS(12461), + [anon_sym_LBRACK] = ACTIONS(12459), + [anon_sym_LBRACE] = ACTIONS(12459), + [anon_sym_LPAREN] = ACTIONS(12459), + [anon_sym_COMMA] = ACTIONS(12459), + [anon_sym_EQ] = ACTIONS(12459), + [sym_word] = ACTIONS(12459), + [sym_param] = ACTIONS(12459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12459), + [anon_sym_DOLLAR] = ACTIONS(12461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12459), + [anon_sym_BSLASHbegin] = ACTIONS(12461), + [anon_sym_BSLASHend] = ACTIONS(12461), + [anon_sym_BSLASHcaption] = ACTIONS(12461), + [anon_sym_BSLASHcite] = ACTIONS(12461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCite] = ACTIONS(12461), + [anon_sym_BSLASHnocite] = ACTIONS(12461), + [anon_sym_BSLASHcitet] = ACTIONS(12461), + [anon_sym_BSLASHcitep] = ACTIONS(12461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteauthor] = ACTIONS(12461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitetitle] = ACTIONS(12461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteyear] = ACTIONS(12461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitedate] = ACTIONS(12461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteurl] = ACTIONS(12461), + [anon_sym_BSLASHfullcite] = ACTIONS(12461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12461), + [anon_sym_BSLASHcitealt] = ACTIONS(12461), + [anon_sym_BSLASHcitealp] = ACTIONS(12461), + [anon_sym_BSLASHcitetext] = ACTIONS(12461), + [anon_sym_BSLASHparencite] = ACTIONS(12461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHParencite] = ACTIONS(12461), + [anon_sym_BSLASHfootcite] = ACTIONS(12461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12461), + [anon_sym_BSLASHtextcite] = ACTIONS(12461), + [anon_sym_BSLASHTextcite] = ACTIONS(12461), + [anon_sym_BSLASHsmartcite] = ACTIONS(12461), + [anon_sym_BSLASHSmartcite] = ACTIONS(12461), + [anon_sym_BSLASHsupercite] = ACTIONS(12461), + [anon_sym_BSLASHautocite] = ACTIONS(12461), + [anon_sym_BSLASHAutocite] = ACTIONS(12461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHvolcite] = ACTIONS(12461), + [anon_sym_BSLASHVolcite] = ACTIONS(12461), + [anon_sym_BSLASHpvolcite] = ACTIONS(12461), + [anon_sym_BSLASHPvolcite] = ACTIONS(12461), + [anon_sym_BSLASHfvolcite] = ACTIONS(12461), + [anon_sym_BSLASHftvolcite] = ACTIONS(12461), + [anon_sym_BSLASHsvolcite] = ACTIONS(12461), + [anon_sym_BSLASHSvolcite] = ACTIONS(12461), + [anon_sym_BSLASHtvolcite] = ACTIONS(12461), + [anon_sym_BSLASHTvolcite] = ACTIONS(12461), + [anon_sym_BSLASHavolcite] = ACTIONS(12461), + [anon_sym_BSLASHAvolcite] = ACTIONS(12461), + [anon_sym_BSLASHnotecite] = ACTIONS(12461), + [anon_sym_BSLASHpnotecite] = ACTIONS(12461), + [anon_sym_BSLASHPnotecite] = ACTIONS(12461), + [anon_sym_BSLASHfnotecite] = ACTIONS(12461), + [anon_sym_BSLASHusepackage] = ACTIONS(12461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12461), + [anon_sym_BSLASHinclude] = ACTIONS(12461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12461), + [anon_sym_BSLASHinput] = ACTIONS(12461), + [anon_sym_BSLASHsubfile] = ACTIONS(12461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12461), + [anon_sym_BSLASHbibliography] = ACTIONS(12461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12461), + [anon_sym_BSLASHincludesvg] = ACTIONS(12461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12461), + [anon_sym_BSLASHimport] = ACTIONS(12461), + [anon_sym_BSLASHsubimport] = ACTIONS(12461), + [anon_sym_BSLASHinputfrom] = ACTIONS(12461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12461), + [anon_sym_BSLASHincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHlabel] = ACTIONS(12461), + [anon_sym_BSLASHref] = ACTIONS(12461), + [anon_sym_BSLASHvref] = ACTIONS(12461), + [anon_sym_BSLASHVref] = ACTIONS(12461), + [anon_sym_BSLASHautoref] = ACTIONS(12461), + [anon_sym_BSLASHpageref] = ACTIONS(12461), + [anon_sym_BSLASHcref] = ACTIONS(12461), + [anon_sym_BSLASHCref] = ACTIONS(12461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnameCref] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHlabelcref] = ACTIONS(12461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12461), + [anon_sym_BSLASHeqref] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange] = ACTIONS(12461), + [anon_sym_BSLASHCrefrange] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewlabel] = ACTIONS(12461), + [anon_sym_BSLASHnewcommand] = ACTIONS(12461), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12461), + [anon_sym_BSLASHgls] = ACTIONS(12461), + [anon_sym_BSLASHGls] = ACTIONS(12461), + [anon_sym_BSLASHGLS] = ACTIONS(12461), + [anon_sym_BSLASHglspl] = ACTIONS(12461), + [anon_sym_BSLASHGlspl] = ACTIONS(12461), + [anon_sym_BSLASHGLSpl] = ACTIONS(12461), + [anon_sym_BSLASHglsdisp] = ACTIONS(12461), + [anon_sym_BSLASHglslink] = ACTIONS(12461), + [anon_sym_BSLASHglstext] = ACTIONS(12461), + [anon_sym_BSLASHGlstext] = ACTIONS(12461), + [anon_sym_BSLASHGLStext] = ACTIONS(12461), + [anon_sym_BSLASHglsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12461), + [anon_sym_BSLASHglsplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSplural] = ACTIONS(12461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHglsname] = ACTIONS(12461), + [anon_sym_BSLASHGlsname] = ACTIONS(12461), + [anon_sym_BSLASHGLSname] = ACTIONS(12461), + [anon_sym_BSLASHglssymbol] = ACTIONS(12461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12461), + [anon_sym_BSLASHglsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12461), + [anon_sym_BSLASHglsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12461), + [anon_sym_BSLASHglsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12461), + [anon_sym_BSLASHglsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12461), + [anon_sym_BSLASHglsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12461), + [anon_sym_BSLASHnewacronym] = ACTIONS(12461), + [anon_sym_BSLASHacrshort] = ACTIONS(12461), + [anon_sym_BSLASHAcrshort] = ACTIONS(12461), + [anon_sym_BSLASHACRshort] = ACTIONS(12461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12461), + [anon_sym_BSLASHacrlong] = ACTIONS(12461), + [anon_sym_BSLASHAcrlong] = ACTIONS(12461), + [anon_sym_BSLASHACRlong] = ACTIONS(12461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12461), + [anon_sym_BSLASHacrfull] = ACTIONS(12461), + [anon_sym_BSLASHAcrfull] = ACTIONS(12461), + [anon_sym_BSLASHACRfull] = ACTIONS(12461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12461), + [anon_sym_BSLASHacs] = ACTIONS(12461), + [anon_sym_BSLASHAcs] = ACTIONS(12461), + [anon_sym_BSLASHacsp] = ACTIONS(12461), + [anon_sym_BSLASHAcsp] = ACTIONS(12461), + [anon_sym_BSLASHacl] = ACTIONS(12461), + [anon_sym_BSLASHAcl] = ACTIONS(12461), + [anon_sym_BSLASHaclp] = ACTIONS(12461), + [anon_sym_BSLASHAclp] = ACTIONS(12461), + [anon_sym_BSLASHacf] = ACTIONS(12461), + [anon_sym_BSLASHAcf] = ACTIONS(12461), + [anon_sym_BSLASHacfp] = ACTIONS(12461), + [anon_sym_BSLASHAcfp] = ACTIONS(12461), + [anon_sym_BSLASHac] = ACTIONS(12461), + [anon_sym_BSLASHAc] = ACTIONS(12461), + [anon_sym_BSLASHacp] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12461), + [anon_sym_BSLASHcolor] = ACTIONS(12461), + [anon_sym_BSLASHcolorbox] = ACTIONS(12461), + [anon_sym_BSLASHtextcolor] = ACTIONS(12461), + [anon_sym_BSLASHpagecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12461), + }, + [827] = { + [sym_generic_command_name] = ACTIONS(12453), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12453), + [aux_sym_chapter_token1] = ACTIONS(12453), + [aux_sym_section_token1] = ACTIONS(12453), + [aux_sym_subsection_token1] = ACTIONS(12453), + [aux_sym_subsubsection_token1] = ACTIONS(12453), + [aux_sym_paragraph_token1] = ACTIONS(12453), + [aux_sym_subparagraph_token1] = ACTIONS(12453), + [anon_sym_BSLASHitem] = ACTIONS(12453), + [anon_sym_LBRACK] = ACTIONS(12451), + [anon_sym_LBRACE] = ACTIONS(12451), + [anon_sym_LPAREN] = ACTIONS(12451), + [anon_sym_COMMA] = ACTIONS(12451), + [anon_sym_EQ] = ACTIONS(12451), + [sym_word] = ACTIONS(12451), + [sym_param] = ACTIONS(12451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12451), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12451), + [anon_sym_DOLLAR] = ACTIONS(12453), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12451), + [anon_sym_BSLASHbegin] = ACTIONS(12453), + [anon_sym_BSLASHend] = ACTIONS(12453), + [anon_sym_BSLASHcaption] = ACTIONS(12453), + [anon_sym_BSLASHcite] = ACTIONS(12453), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCite] = ACTIONS(12453), + [anon_sym_BSLASHnocite] = ACTIONS(12453), + [anon_sym_BSLASHcitet] = ACTIONS(12453), + [anon_sym_BSLASHcitep] = ACTIONS(12453), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteauthor] = ACTIONS(12453), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12453), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitetitle] = ACTIONS(12453), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteyear] = ACTIONS(12453), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitedate] = ACTIONS(12453), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteurl] = ACTIONS(12453), + [anon_sym_BSLASHfullcite] = ACTIONS(12453), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12453), + [anon_sym_BSLASHcitealt] = ACTIONS(12453), + [anon_sym_BSLASHcitealp] = ACTIONS(12453), + [anon_sym_BSLASHcitetext] = ACTIONS(12453), + [anon_sym_BSLASHparencite] = ACTIONS(12453), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHParencite] = ACTIONS(12453), + [anon_sym_BSLASHfootcite] = ACTIONS(12453), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12453), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12453), + [anon_sym_BSLASHtextcite] = ACTIONS(12453), + [anon_sym_BSLASHTextcite] = ACTIONS(12453), + [anon_sym_BSLASHsmartcite] = ACTIONS(12453), + [anon_sym_BSLASHSmartcite] = ACTIONS(12453), + [anon_sym_BSLASHsupercite] = ACTIONS(12453), + [anon_sym_BSLASHautocite] = ACTIONS(12453), + [anon_sym_BSLASHAutocite] = ACTIONS(12453), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHvolcite] = ACTIONS(12453), + [anon_sym_BSLASHVolcite] = ACTIONS(12453), + [anon_sym_BSLASHpvolcite] = ACTIONS(12453), + [anon_sym_BSLASHPvolcite] = ACTIONS(12453), + [anon_sym_BSLASHfvolcite] = ACTIONS(12453), + [anon_sym_BSLASHftvolcite] = ACTIONS(12453), + [anon_sym_BSLASHsvolcite] = ACTIONS(12453), + [anon_sym_BSLASHSvolcite] = ACTIONS(12453), + [anon_sym_BSLASHtvolcite] = ACTIONS(12453), + [anon_sym_BSLASHTvolcite] = ACTIONS(12453), + [anon_sym_BSLASHavolcite] = ACTIONS(12453), + [anon_sym_BSLASHAvolcite] = ACTIONS(12453), + [anon_sym_BSLASHnotecite] = ACTIONS(12453), + [anon_sym_BSLASHpnotecite] = ACTIONS(12453), + [anon_sym_BSLASHPnotecite] = ACTIONS(12453), + [anon_sym_BSLASHfnotecite] = ACTIONS(12453), + [anon_sym_BSLASHusepackage] = ACTIONS(12453), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12453), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12453), + [anon_sym_BSLASHinclude] = ACTIONS(12453), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12453), + [anon_sym_BSLASHinput] = ACTIONS(12453), + [anon_sym_BSLASHsubfile] = ACTIONS(12453), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12453), + [anon_sym_BSLASHbibliography] = ACTIONS(12453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12453), + [anon_sym_BSLASHincludesvg] = ACTIONS(12453), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12453), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12453), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12453), + [anon_sym_BSLASHimport] = ACTIONS(12453), + [anon_sym_BSLASHsubimport] = ACTIONS(12453), + [anon_sym_BSLASHinputfrom] = ACTIONS(12453), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12453), + [anon_sym_BSLASHincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHlabel] = ACTIONS(12453), + [anon_sym_BSLASHref] = ACTIONS(12453), + [anon_sym_BSLASHvref] = ACTIONS(12453), + [anon_sym_BSLASHVref] = ACTIONS(12453), + [anon_sym_BSLASHautoref] = ACTIONS(12453), + [anon_sym_BSLASHpageref] = ACTIONS(12453), + [anon_sym_BSLASHcref] = ACTIONS(12453), + [anon_sym_BSLASHCref] = ACTIONS(12453), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnameCref] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHlabelcref] = ACTIONS(12453), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12453), + [anon_sym_BSLASHeqref] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange] = ACTIONS(12453), + [anon_sym_BSLASHCrefrange] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewlabel] = ACTIONS(12453), + [anon_sym_BSLASHnewcommand] = ACTIONS(12453), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12453), + [anon_sym_BSLASHgls] = ACTIONS(12453), + [anon_sym_BSLASHGls] = ACTIONS(12453), + [anon_sym_BSLASHGLS] = ACTIONS(12453), + [anon_sym_BSLASHglspl] = ACTIONS(12453), + [anon_sym_BSLASHGlspl] = ACTIONS(12453), + [anon_sym_BSLASHGLSpl] = ACTIONS(12453), + [anon_sym_BSLASHglsdisp] = ACTIONS(12453), + [anon_sym_BSLASHglslink] = ACTIONS(12453), + [anon_sym_BSLASHglstext] = ACTIONS(12453), + [anon_sym_BSLASHGlstext] = ACTIONS(12453), + [anon_sym_BSLASHGLStext] = ACTIONS(12453), + [anon_sym_BSLASHglsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12453), + [anon_sym_BSLASHglsplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSplural] = ACTIONS(12453), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHglsname] = ACTIONS(12453), + [anon_sym_BSLASHGlsname] = ACTIONS(12453), + [anon_sym_BSLASHGLSname] = ACTIONS(12453), + [anon_sym_BSLASHglssymbol] = ACTIONS(12453), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12453), + [anon_sym_BSLASHglsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12453), + [anon_sym_BSLASHglsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12453), + [anon_sym_BSLASHglsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12453), + [anon_sym_BSLASHglsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12453), + [anon_sym_BSLASHglsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12453), + [anon_sym_BSLASHnewacronym] = ACTIONS(12453), + [anon_sym_BSLASHacrshort] = ACTIONS(12453), + [anon_sym_BSLASHAcrshort] = ACTIONS(12453), + [anon_sym_BSLASHACRshort] = ACTIONS(12453), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12453), + [anon_sym_BSLASHacrlong] = ACTIONS(12453), + [anon_sym_BSLASHAcrlong] = ACTIONS(12453), + [anon_sym_BSLASHACRlong] = ACTIONS(12453), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12453), + [anon_sym_BSLASHacrfull] = ACTIONS(12453), + [anon_sym_BSLASHAcrfull] = ACTIONS(12453), + [anon_sym_BSLASHACRfull] = ACTIONS(12453), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12453), + [anon_sym_BSLASHacs] = ACTIONS(12453), + [anon_sym_BSLASHAcs] = ACTIONS(12453), + [anon_sym_BSLASHacsp] = ACTIONS(12453), + [anon_sym_BSLASHAcsp] = ACTIONS(12453), + [anon_sym_BSLASHacl] = ACTIONS(12453), + [anon_sym_BSLASHAcl] = ACTIONS(12453), + [anon_sym_BSLASHaclp] = ACTIONS(12453), + [anon_sym_BSLASHAclp] = ACTIONS(12453), + [anon_sym_BSLASHacf] = ACTIONS(12453), + [anon_sym_BSLASHAcf] = ACTIONS(12453), + [anon_sym_BSLASHacfp] = ACTIONS(12453), + [anon_sym_BSLASHAcfp] = ACTIONS(12453), + [anon_sym_BSLASHac] = ACTIONS(12453), + [anon_sym_BSLASHAc] = ACTIONS(12453), + [anon_sym_BSLASHacp] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12453), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12453), + [anon_sym_BSLASHcolor] = ACTIONS(12453), + [anon_sym_BSLASHcolorbox] = ACTIONS(12453), + [anon_sym_BSLASHtextcolor] = ACTIONS(12453), + [anon_sym_BSLASHpagecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12453), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12453), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12453), + }, + [828] = { + [sym_generic_command_name] = ACTIONS(12449), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12449), + [aux_sym_chapter_token1] = ACTIONS(12449), + [aux_sym_section_token1] = ACTIONS(12449), + [aux_sym_subsection_token1] = ACTIONS(12449), + [aux_sym_subsubsection_token1] = ACTIONS(12449), + [aux_sym_paragraph_token1] = ACTIONS(12449), + [aux_sym_subparagraph_token1] = ACTIONS(12449), + [anon_sym_BSLASHitem] = ACTIONS(12449), + [anon_sym_LBRACK] = ACTIONS(12447), + [anon_sym_LBRACE] = ACTIONS(12447), + [anon_sym_LPAREN] = ACTIONS(12447), + [anon_sym_COMMA] = ACTIONS(12447), + [anon_sym_EQ] = ACTIONS(12447), + [sym_word] = ACTIONS(12447), + [sym_param] = ACTIONS(12447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12447), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12447), + [anon_sym_DOLLAR] = ACTIONS(12449), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12447), + [anon_sym_BSLASHbegin] = ACTIONS(12449), + [anon_sym_BSLASHend] = ACTIONS(12449), + [anon_sym_BSLASHcaption] = ACTIONS(12449), + [anon_sym_BSLASHcite] = ACTIONS(12449), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCite] = ACTIONS(12449), + [anon_sym_BSLASHnocite] = ACTIONS(12449), + [anon_sym_BSLASHcitet] = ACTIONS(12449), + [anon_sym_BSLASHcitep] = ACTIONS(12449), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteauthor] = ACTIONS(12449), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12449), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitetitle] = ACTIONS(12449), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteyear] = ACTIONS(12449), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitedate] = ACTIONS(12449), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteurl] = ACTIONS(12449), + [anon_sym_BSLASHfullcite] = ACTIONS(12449), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12449), + [anon_sym_BSLASHcitealt] = ACTIONS(12449), + [anon_sym_BSLASHcitealp] = ACTIONS(12449), + [anon_sym_BSLASHcitetext] = ACTIONS(12449), + [anon_sym_BSLASHparencite] = ACTIONS(12449), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHParencite] = ACTIONS(12449), + [anon_sym_BSLASHfootcite] = ACTIONS(12449), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12449), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12449), + [anon_sym_BSLASHtextcite] = ACTIONS(12449), + [anon_sym_BSLASHTextcite] = ACTIONS(12449), + [anon_sym_BSLASHsmartcite] = ACTIONS(12449), + [anon_sym_BSLASHSmartcite] = ACTIONS(12449), + [anon_sym_BSLASHsupercite] = ACTIONS(12449), + [anon_sym_BSLASHautocite] = ACTIONS(12449), + [anon_sym_BSLASHAutocite] = ACTIONS(12449), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHvolcite] = ACTIONS(12449), + [anon_sym_BSLASHVolcite] = ACTIONS(12449), + [anon_sym_BSLASHpvolcite] = ACTIONS(12449), + [anon_sym_BSLASHPvolcite] = ACTIONS(12449), + [anon_sym_BSLASHfvolcite] = ACTIONS(12449), + [anon_sym_BSLASHftvolcite] = ACTIONS(12449), + [anon_sym_BSLASHsvolcite] = ACTIONS(12449), + [anon_sym_BSLASHSvolcite] = ACTIONS(12449), + [anon_sym_BSLASHtvolcite] = ACTIONS(12449), + [anon_sym_BSLASHTvolcite] = ACTIONS(12449), + [anon_sym_BSLASHavolcite] = ACTIONS(12449), + [anon_sym_BSLASHAvolcite] = ACTIONS(12449), + [anon_sym_BSLASHnotecite] = ACTIONS(12449), + [anon_sym_BSLASHpnotecite] = ACTIONS(12449), + [anon_sym_BSLASHPnotecite] = ACTIONS(12449), + [anon_sym_BSLASHfnotecite] = ACTIONS(12449), + [anon_sym_BSLASHusepackage] = ACTIONS(12449), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12449), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12449), + [anon_sym_BSLASHinclude] = ACTIONS(12449), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12449), + [anon_sym_BSLASHinput] = ACTIONS(12449), + [anon_sym_BSLASHsubfile] = ACTIONS(12449), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12449), + [anon_sym_BSLASHbibliography] = ACTIONS(12449), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12449), + [anon_sym_BSLASHincludesvg] = ACTIONS(12449), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12449), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12449), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12449), + [anon_sym_BSLASHimport] = ACTIONS(12449), + [anon_sym_BSLASHsubimport] = ACTIONS(12449), + [anon_sym_BSLASHinputfrom] = ACTIONS(12449), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12449), + [anon_sym_BSLASHincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHlabel] = ACTIONS(12449), + [anon_sym_BSLASHref] = ACTIONS(12449), + [anon_sym_BSLASHvref] = ACTIONS(12449), + [anon_sym_BSLASHVref] = ACTIONS(12449), + [anon_sym_BSLASHautoref] = ACTIONS(12449), + [anon_sym_BSLASHpageref] = ACTIONS(12449), + [anon_sym_BSLASHcref] = ACTIONS(12449), + [anon_sym_BSLASHCref] = ACTIONS(12449), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnameCref] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHlabelcref] = ACTIONS(12449), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12449), + [anon_sym_BSLASHeqref] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange] = ACTIONS(12449), + [anon_sym_BSLASHCrefrange] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewlabel] = ACTIONS(12449), + [anon_sym_BSLASHnewcommand] = ACTIONS(12449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12449), + [anon_sym_BSLASHgls] = ACTIONS(12449), + [anon_sym_BSLASHGls] = ACTIONS(12449), + [anon_sym_BSLASHGLS] = ACTIONS(12449), + [anon_sym_BSLASHglspl] = ACTIONS(12449), + [anon_sym_BSLASHGlspl] = ACTIONS(12449), + [anon_sym_BSLASHGLSpl] = ACTIONS(12449), + [anon_sym_BSLASHglsdisp] = ACTIONS(12449), + [anon_sym_BSLASHglslink] = ACTIONS(12449), + [anon_sym_BSLASHglstext] = ACTIONS(12449), + [anon_sym_BSLASHGlstext] = ACTIONS(12449), + [anon_sym_BSLASHGLStext] = ACTIONS(12449), + [anon_sym_BSLASHglsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12449), + [anon_sym_BSLASHglsplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSplural] = ACTIONS(12449), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHglsname] = ACTIONS(12449), + [anon_sym_BSLASHGlsname] = ACTIONS(12449), + [anon_sym_BSLASHGLSname] = ACTIONS(12449), + [anon_sym_BSLASHglssymbol] = ACTIONS(12449), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12449), + [anon_sym_BSLASHglsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12449), + [anon_sym_BSLASHglsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12449), + [anon_sym_BSLASHglsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12449), + [anon_sym_BSLASHglsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12449), + [anon_sym_BSLASHglsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12449), + [anon_sym_BSLASHnewacronym] = ACTIONS(12449), + [anon_sym_BSLASHacrshort] = ACTIONS(12449), + [anon_sym_BSLASHAcrshort] = ACTIONS(12449), + [anon_sym_BSLASHACRshort] = ACTIONS(12449), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12449), + [anon_sym_BSLASHacrlong] = ACTIONS(12449), + [anon_sym_BSLASHAcrlong] = ACTIONS(12449), + [anon_sym_BSLASHACRlong] = ACTIONS(12449), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12449), + [anon_sym_BSLASHacrfull] = ACTIONS(12449), + [anon_sym_BSLASHAcrfull] = ACTIONS(12449), + [anon_sym_BSLASHACRfull] = ACTIONS(12449), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12449), + [anon_sym_BSLASHacs] = ACTIONS(12449), + [anon_sym_BSLASHAcs] = ACTIONS(12449), + [anon_sym_BSLASHacsp] = ACTIONS(12449), + [anon_sym_BSLASHAcsp] = ACTIONS(12449), + [anon_sym_BSLASHacl] = ACTIONS(12449), + [anon_sym_BSLASHAcl] = ACTIONS(12449), + [anon_sym_BSLASHaclp] = ACTIONS(12449), + [anon_sym_BSLASHAclp] = ACTIONS(12449), + [anon_sym_BSLASHacf] = ACTIONS(12449), + [anon_sym_BSLASHAcf] = ACTIONS(12449), + [anon_sym_BSLASHacfp] = ACTIONS(12449), + [anon_sym_BSLASHAcfp] = ACTIONS(12449), + [anon_sym_BSLASHac] = ACTIONS(12449), + [anon_sym_BSLASHAc] = ACTIONS(12449), + [anon_sym_BSLASHacp] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12449), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12449), + [anon_sym_BSLASHcolor] = ACTIONS(12449), + [anon_sym_BSLASHcolorbox] = ACTIONS(12449), + [anon_sym_BSLASHtextcolor] = ACTIONS(12449), + [anon_sym_BSLASHpagecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12449), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12449), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12449), + }, + [829] = { + [sym_generic_command_name] = ACTIONS(12445), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12445), + [aux_sym_chapter_token1] = ACTIONS(12445), + [aux_sym_section_token1] = ACTIONS(12445), + [aux_sym_subsection_token1] = ACTIONS(12445), + [aux_sym_subsubsection_token1] = ACTIONS(12445), + [aux_sym_paragraph_token1] = ACTIONS(12445), + [aux_sym_subparagraph_token1] = ACTIONS(12445), + [anon_sym_BSLASHitem] = ACTIONS(12445), + [anon_sym_LBRACK] = ACTIONS(12443), + [anon_sym_LBRACE] = ACTIONS(12443), + [anon_sym_LPAREN] = ACTIONS(12443), + [anon_sym_COMMA] = ACTIONS(12443), + [anon_sym_EQ] = ACTIONS(12443), + [sym_word] = ACTIONS(12443), + [sym_param] = ACTIONS(12443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12443), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12443), + [anon_sym_DOLLAR] = ACTIONS(12445), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12443), + [anon_sym_BSLASHbegin] = ACTIONS(12445), + [anon_sym_BSLASHend] = ACTIONS(12445), + [anon_sym_BSLASHcaption] = ACTIONS(12445), + [anon_sym_BSLASHcite] = ACTIONS(12445), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCite] = ACTIONS(12445), + [anon_sym_BSLASHnocite] = ACTIONS(12445), + [anon_sym_BSLASHcitet] = ACTIONS(12445), + [anon_sym_BSLASHcitep] = ACTIONS(12445), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteauthor] = ACTIONS(12445), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12445), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitetitle] = ACTIONS(12445), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteyear] = ACTIONS(12445), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitedate] = ACTIONS(12445), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteurl] = ACTIONS(12445), + [anon_sym_BSLASHfullcite] = ACTIONS(12445), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12445), + [anon_sym_BSLASHcitealt] = ACTIONS(12445), + [anon_sym_BSLASHcitealp] = ACTIONS(12445), + [anon_sym_BSLASHcitetext] = ACTIONS(12445), + [anon_sym_BSLASHparencite] = ACTIONS(12445), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHParencite] = ACTIONS(12445), + [anon_sym_BSLASHfootcite] = ACTIONS(12445), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12445), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12445), + [anon_sym_BSLASHtextcite] = ACTIONS(12445), + [anon_sym_BSLASHTextcite] = ACTIONS(12445), + [anon_sym_BSLASHsmartcite] = ACTIONS(12445), + [anon_sym_BSLASHSmartcite] = ACTIONS(12445), + [anon_sym_BSLASHsupercite] = ACTIONS(12445), + [anon_sym_BSLASHautocite] = ACTIONS(12445), + [anon_sym_BSLASHAutocite] = ACTIONS(12445), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHvolcite] = ACTIONS(12445), + [anon_sym_BSLASHVolcite] = ACTIONS(12445), + [anon_sym_BSLASHpvolcite] = ACTIONS(12445), + [anon_sym_BSLASHPvolcite] = ACTIONS(12445), + [anon_sym_BSLASHfvolcite] = ACTIONS(12445), + [anon_sym_BSLASHftvolcite] = ACTIONS(12445), + [anon_sym_BSLASHsvolcite] = ACTIONS(12445), + [anon_sym_BSLASHSvolcite] = ACTIONS(12445), + [anon_sym_BSLASHtvolcite] = ACTIONS(12445), + [anon_sym_BSLASHTvolcite] = ACTIONS(12445), + [anon_sym_BSLASHavolcite] = ACTIONS(12445), + [anon_sym_BSLASHAvolcite] = ACTIONS(12445), + [anon_sym_BSLASHnotecite] = ACTIONS(12445), + [anon_sym_BSLASHpnotecite] = ACTIONS(12445), + [anon_sym_BSLASHPnotecite] = ACTIONS(12445), + [anon_sym_BSLASHfnotecite] = ACTIONS(12445), + [anon_sym_BSLASHusepackage] = ACTIONS(12445), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12445), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12445), + [anon_sym_BSLASHinclude] = ACTIONS(12445), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12445), + [anon_sym_BSLASHinput] = ACTIONS(12445), + [anon_sym_BSLASHsubfile] = ACTIONS(12445), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12445), + [anon_sym_BSLASHbibliography] = ACTIONS(12445), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12445), + [anon_sym_BSLASHincludesvg] = ACTIONS(12445), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12445), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12445), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12445), + [anon_sym_BSLASHimport] = ACTIONS(12445), + [anon_sym_BSLASHsubimport] = ACTIONS(12445), + [anon_sym_BSLASHinputfrom] = ACTIONS(12445), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12445), + [anon_sym_BSLASHincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHlabel] = ACTIONS(12445), + [anon_sym_BSLASHref] = ACTIONS(12445), + [anon_sym_BSLASHvref] = ACTIONS(12445), + [anon_sym_BSLASHVref] = ACTIONS(12445), + [anon_sym_BSLASHautoref] = ACTIONS(12445), + [anon_sym_BSLASHpageref] = ACTIONS(12445), + [anon_sym_BSLASHcref] = ACTIONS(12445), + [anon_sym_BSLASHCref] = ACTIONS(12445), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnameCref] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHlabelcref] = ACTIONS(12445), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12445), + [anon_sym_BSLASHeqref] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange] = ACTIONS(12445), + [anon_sym_BSLASHCrefrange] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewlabel] = ACTIONS(12445), + [anon_sym_BSLASHnewcommand] = ACTIONS(12445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12445), + [anon_sym_BSLASHgls] = ACTIONS(12445), + [anon_sym_BSLASHGls] = ACTIONS(12445), + [anon_sym_BSLASHGLS] = ACTIONS(12445), + [anon_sym_BSLASHglspl] = ACTIONS(12445), + [anon_sym_BSLASHGlspl] = ACTIONS(12445), + [anon_sym_BSLASHGLSpl] = ACTIONS(12445), + [anon_sym_BSLASHglsdisp] = ACTIONS(12445), + [anon_sym_BSLASHglslink] = ACTIONS(12445), + [anon_sym_BSLASHglstext] = ACTIONS(12445), + [anon_sym_BSLASHGlstext] = ACTIONS(12445), + [anon_sym_BSLASHGLStext] = ACTIONS(12445), + [anon_sym_BSLASHglsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12445), + [anon_sym_BSLASHglsplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSplural] = ACTIONS(12445), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHglsname] = ACTIONS(12445), + [anon_sym_BSLASHGlsname] = ACTIONS(12445), + [anon_sym_BSLASHGLSname] = ACTIONS(12445), + [anon_sym_BSLASHglssymbol] = ACTIONS(12445), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12445), + [anon_sym_BSLASHglsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12445), + [anon_sym_BSLASHglsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12445), + [anon_sym_BSLASHglsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12445), + [anon_sym_BSLASHglsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12445), + [anon_sym_BSLASHglsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12445), + [anon_sym_BSLASHnewacronym] = ACTIONS(12445), + [anon_sym_BSLASHacrshort] = ACTIONS(12445), + [anon_sym_BSLASHAcrshort] = ACTIONS(12445), + [anon_sym_BSLASHACRshort] = ACTIONS(12445), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12445), + [anon_sym_BSLASHacrlong] = ACTIONS(12445), + [anon_sym_BSLASHAcrlong] = ACTIONS(12445), + [anon_sym_BSLASHACRlong] = ACTIONS(12445), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12445), + [anon_sym_BSLASHacrfull] = ACTIONS(12445), + [anon_sym_BSLASHAcrfull] = ACTIONS(12445), + [anon_sym_BSLASHACRfull] = ACTIONS(12445), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12445), + [anon_sym_BSLASHacs] = ACTIONS(12445), + [anon_sym_BSLASHAcs] = ACTIONS(12445), + [anon_sym_BSLASHacsp] = ACTIONS(12445), + [anon_sym_BSLASHAcsp] = ACTIONS(12445), + [anon_sym_BSLASHacl] = ACTIONS(12445), + [anon_sym_BSLASHAcl] = ACTIONS(12445), + [anon_sym_BSLASHaclp] = ACTIONS(12445), + [anon_sym_BSLASHAclp] = ACTIONS(12445), + [anon_sym_BSLASHacf] = ACTIONS(12445), + [anon_sym_BSLASHAcf] = ACTIONS(12445), + [anon_sym_BSLASHacfp] = ACTIONS(12445), + [anon_sym_BSLASHAcfp] = ACTIONS(12445), + [anon_sym_BSLASHac] = ACTIONS(12445), + [anon_sym_BSLASHAc] = ACTIONS(12445), + [anon_sym_BSLASHacp] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12445), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12445), + [anon_sym_BSLASHcolor] = ACTIONS(12445), + [anon_sym_BSLASHcolorbox] = ACTIONS(12445), + [anon_sym_BSLASHtextcolor] = ACTIONS(12445), + [anon_sym_BSLASHpagecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12445), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12445), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12445), + }, + [830] = { + [sym_generic_command_name] = ACTIONS(12441), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12441), + [aux_sym_chapter_token1] = ACTIONS(12441), + [aux_sym_section_token1] = ACTIONS(12441), + [aux_sym_subsection_token1] = ACTIONS(12441), + [aux_sym_subsubsection_token1] = ACTIONS(12441), + [aux_sym_paragraph_token1] = ACTIONS(12441), + [aux_sym_subparagraph_token1] = ACTIONS(12441), + [anon_sym_BSLASHitem] = ACTIONS(12441), + [anon_sym_LBRACK] = ACTIONS(12439), + [anon_sym_LBRACE] = ACTIONS(12439), + [anon_sym_LPAREN] = ACTIONS(12439), + [anon_sym_COMMA] = ACTIONS(12439), + [anon_sym_EQ] = ACTIONS(12439), + [sym_word] = ACTIONS(12439), + [sym_param] = ACTIONS(12439), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12439), + [anon_sym_DOLLAR] = ACTIONS(12441), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12439), + [anon_sym_BSLASHbegin] = ACTIONS(12441), + [anon_sym_BSLASHend] = ACTIONS(12441), + [anon_sym_BSLASHcaption] = ACTIONS(12441), + [anon_sym_BSLASHcite] = ACTIONS(12441), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCite] = ACTIONS(12441), + [anon_sym_BSLASHnocite] = ACTIONS(12441), + [anon_sym_BSLASHcitet] = ACTIONS(12441), + [anon_sym_BSLASHcitep] = ACTIONS(12441), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteauthor] = ACTIONS(12441), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12441), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitetitle] = ACTIONS(12441), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteyear] = ACTIONS(12441), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitedate] = ACTIONS(12441), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteurl] = ACTIONS(12441), + [anon_sym_BSLASHfullcite] = ACTIONS(12441), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12441), + [anon_sym_BSLASHcitealt] = ACTIONS(12441), + [anon_sym_BSLASHcitealp] = ACTIONS(12441), + [anon_sym_BSLASHcitetext] = ACTIONS(12441), + [anon_sym_BSLASHparencite] = ACTIONS(12441), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHParencite] = ACTIONS(12441), + [anon_sym_BSLASHfootcite] = ACTIONS(12441), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12441), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12441), + [anon_sym_BSLASHtextcite] = ACTIONS(12441), + [anon_sym_BSLASHTextcite] = ACTIONS(12441), + [anon_sym_BSLASHsmartcite] = ACTIONS(12441), + [anon_sym_BSLASHSmartcite] = ACTIONS(12441), + [anon_sym_BSLASHsupercite] = ACTIONS(12441), + [anon_sym_BSLASHautocite] = ACTIONS(12441), + [anon_sym_BSLASHAutocite] = ACTIONS(12441), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHvolcite] = ACTIONS(12441), + [anon_sym_BSLASHVolcite] = ACTIONS(12441), + [anon_sym_BSLASHpvolcite] = ACTIONS(12441), + [anon_sym_BSLASHPvolcite] = ACTIONS(12441), + [anon_sym_BSLASHfvolcite] = ACTIONS(12441), + [anon_sym_BSLASHftvolcite] = ACTIONS(12441), + [anon_sym_BSLASHsvolcite] = ACTIONS(12441), + [anon_sym_BSLASHSvolcite] = ACTIONS(12441), + [anon_sym_BSLASHtvolcite] = ACTIONS(12441), + [anon_sym_BSLASHTvolcite] = ACTIONS(12441), + [anon_sym_BSLASHavolcite] = ACTIONS(12441), + [anon_sym_BSLASHAvolcite] = ACTIONS(12441), + [anon_sym_BSLASHnotecite] = ACTIONS(12441), + [anon_sym_BSLASHpnotecite] = ACTIONS(12441), + [anon_sym_BSLASHPnotecite] = ACTIONS(12441), + [anon_sym_BSLASHfnotecite] = ACTIONS(12441), + [anon_sym_BSLASHusepackage] = ACTIONS(12441), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12441), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12441), + [anon_sym_BSLASHinclude] = ACTIONS(12441), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12441), + [anon_sym_BSLASHinput] = ACTIONS(12441), + [anon_sym_BSLASHsubfile] = ACTIONS(12441), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12441), + [anon_sym_BSLASHbibliography] = ACTIONS(12441), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12441), + [anon_sym_BSLASHincludesvg] = ACTIONS(12441), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12441), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12441), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12441), + [anon_sym_BSLASHimport] = ACTIONS(12441), + [anon_sym_BSLASHsubimport] = ACTIONS(12441), + [anon_sym_BSLASHinputfrom] = ACTIONS(12441), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12441), + [anon_sym_BSLASHincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHlabel] = ACTIONS(12441), + [anon_sym_BSLASHref] = ACTIONS(12441), + [anon_sym_BSLASHvref] = ACTIONS(12441), + [anon_sym_BSLASHVref] = ACTIONS(12441), + [anon_sym_BSLASHautoref] = ACTIONS(12441), + [anon_sym_BSLASHpageref] = ACTIONS(12441), + [anon_sym_BSLASHcref] = ACTIONS(12441), + [anon_sym_BSLASHCref] = ACTIONS(12441), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnameCref] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHlabelcref] = ACTIONS(12441), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12441), + [anon_sym_BSLASHeqref] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange] = ACTIONS(12441), + [anon_sym_BSLASHCrefrange] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewlabel] = ACTIONS(12441), + [anon_sym_BSLASHnewcommand] = ACTIONS(12441), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12441), + [anon_sym_BSLASHgls] = ACTIONS(12441), + [anon_sym_BSLASHGls] = ACTIONS(12441), + [anon_sym_BSLASHGLS] = ACTIONS(12441), + [anon_sym_BSLASHglspl] = ACTIONS(12441), + [anon_sym_BSLASHGlspl] = ACTIONS(12441), + [anon_sym_BSLASHGLSpl] = ACTIONS(12441), + [anon_sym_BSLASHglsdisp] = ACTIONS(12441), + [anon_sym_BSLASHglslink] = ACTIONS(12441), + [anon_sym_BSLASHglstext] = ACTIONS(12441), + [anon_sym_BSLASHGlstext] = ACTIONS(12441), + [anon_sym_BSLASHGLStext] = ACTIONS(12441), + [anon_sym_BSLASHglsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12441), + [anon_sym_BSLASHglsplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSplural] = ACTIONS(12441), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHglsname] = ACTIONS(12441), + [anon_sym_BSLASHGlsname] = ACTIONS(12441), + [anon_sym_BSLASHGLSname] = ACTIONS(12441), + [anon_sym_BSLASHglssymbol] = ACTIONS(12441), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12441), + [anon_sym_BSLASHglsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12441), + [anon_sym_BSLASHglsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12441), + [anon_sym_BSLASHglsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12441), + [anon_sym_BSLASHglsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12441), + [anon_sym_BSLASHglsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12441), + [anon_sym_BSLASHnewacronym] = ACTIONS(12441), + [anon_sym_BSLASHacrshort] = ACTIONS(12441), + [anon_sym_BSLASHAcrshort] = ACTIONS(12441), + [anon_sym_BSLASHACRshort] = ACTIONS(12441), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12441), + [anon_sym_BSLASHacrlong] = ACTIONS(12441), + [anon_sym_BSLASHAcrlong] = ACTIONS(12441), + [anon_sym_BSLASHACRlong] = ACTIONS(12441), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12441), + [anon_sym_BSLASHacrfull] = ACTIONS(12441), + [anon_sym_BSLASHAcrfull] = ACTIONS(12441), + [anon_sym_BSLASHACRfull] = ACTIONS(12441), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12441), + [anon_sym_BSLASHacs] = ACTIONS(12441), + [anon_sym_BSLASHAcs] = ACTIONS(12441), + [anon_sym_BSLASHacsp] = ACTIONS(12441), + [anon_sym_BSLASHAcsp] = ACTIONS(12441), + [anon_sym_BSLASHacl] = ACTIONS(12441), + [anon_sym_BSLASHAcl] = ACTIONS(12441), + [anon_sym_BSLASHaclp] = ACTIONS(12441), + [anon_sym_BSLASHAclp] = ACTIONS(12441), + [anon_sym_BSLASHacf] = ACTIONS(12441), + [anon_sym_BSLASHAcf] = ACTIONS(12441), + [anon_sym_BSLASHacfp] = ACTIONS(12441), + [anon_sym_BSLASHAcfp] = ACTIONS(12441), + [anon_sym_BSLASHac] = ACTIONS(12441), + [anon_sym_BSLASHAc] = ACTIONS(12441), + [anon_sym_BSLASHacp] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12441), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12441), + [anon_sym_BSLASHcolor] = ACTIONS(12441), + [anon_sym_BSLASHcolorbox] = ACTIONS(12441), + [anon_sym_BSLASHtextcolor] = ACTIONS(12441), + [anon_sym_BSLASHpagecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12441), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12441), + }, + [831] = { + [sym_generic_command_name] = ACTIONS(12227), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12227), + [aux_sym_chapter_token1] = ACTIONS(12227), + [aux_sym_section_token1] = ACTIONS(12227), + [aux_sym_subsection_token1] = ACTIONS(12227), + [aux_sym_subsubsection_token1] = ACTIONS(12227), + [aux_sym_paragraph_token1] = ACTIONS(12227), + [aux_sym_subparagraph_token1] = ACTIONS(12227), + [anon_sym_BSLASHitem] = ACTIONS(12227), + [anon_sym_LBRACK] = ACTIONS(12225), + [anon_sym_LBRACE] = ACTIONS(12225), + [anon_sym_LPAREN] = ACTIONS(12225), + [anon_sym_COMMA] = ACTIONS(12225), + [anon_sym_EQ] = ACTIONS(12225), + [sym_word] = ACTIONS(12225), + [sym_param] = ACTIONS(12225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12225), + [anon_sym_DOLLAR] = ACTIONS(12227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12225), + [anon_sym_BSLASHbegin] = ACTIONS(12227), + [anon_sym_BSLASHend] = ACTIONS(12227), + [anon_sym_BSLASHcaption] = ACTIONS(12227), + [anon_sym_BSLASHcite] = ACTIONS(12227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCite] = ACTIONS(12227), + [anon_sym_BSLASHnocite] = ACTIONS(12227), + [anon_sym_BSLASHcitet] = ACTIONS(12227), + [anon_sym_BSLASHcitep] = ACTIONS(12227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteauthor] = ACTIONS(12227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitetitle] = ACTIONS(12227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteyear] = ACTIONS(12227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitedate] = ACTIONS(12227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteurl] = ACTIONS(12227), + [anon_sym_BSLASHfullcite] = ACTIONS(12227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12227), + [anon_sym_BSLASHcitealt] = ACTIONS(12227), + [anon_sym_BSLASHcitealp] = ACTIONS(12227), + [anon_sym_BSLASHcitetext] = ACTIONS(12227), + [anon_sym_BSLASHparencite] = ACTIONS(12227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHParencite] = ACTIONS(12227), + [anon_sym_BSLASHfootcite] = ACTIONS(12227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12227), + [anon_sym_BSLASHtextcite] = ACTIONS(12227), + [anon_sym_BSLASHTextcite] = ACTIONS(12227), + [anon_sym_BSLASHsmartcite] = ACTIONS(12227), + [anon_sym_BSLASHSmartcite] = ACTIONS(12227), + [anon_sym_BSLASHsupercite] = ACTIONS(12227), + [anon_sym_BSLASHautocite] = ACTIONS(12227), + [anon_sym_BSLASHAutocite] = ACTIONS(12227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHvolcite] = ACTIONS(12227), + [anon_sym_BSLASHVolcite] = ACTIONS(12227), + [anon_sym_BSLASHpvolcite] = ACTIONS(12227), + [anon_sym_BSLASHPvolcite] = ACTIONS(12227), + [anon_sym_BSLASHfvolcite] = ACTIONS(12227), + [anon_sym_BSLASHftvolcite] = ACTIONS(12227), + [anon_sym_BSLASHsvolcite] = ACTIONS(12227), + [anon_sym_BSLASHSvolcite] = ACTIONS(12227), + [anon_sym_BSLASHtvolcite] = ACTIONS(12227), + [anon_sym_BSLASHTvolcite] = ACTIONS(12227), + [anon_sym_BSLASHavolcite] = ACTIONS(12227), + [anon_sym_BSLASHAvolcite] = ACTIONS(12227), + [anon_sym_BSLASHnotecite] = ACTIONS(12227), + [anon_sym_BSLASHpnotecite] = ACTIONS(12227), + [anon_sym_BSLASHPnotecite] = ACTIONS(12227), + [anon_sym_BSLASHfnotecite] = ACTIONS(12227), + [anon_sym_BSLASHusepackage] = ACTIONS(12227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12227), + [anon_sym_BSLASHinclude] = ACTIONS(12227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12227), + [anon_sym_BSLASHinput] = ACTIONS(12227), + [anon_sym_BSLASHsubfile] = ACTIONS(12227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12227), + [anon_sym_BSLASHbibliography] = ACTIONS(12227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12227), + [anon_sym_BSLASHincludesvg] = ACTIONS(12227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12227), + [anon_sym_BSLASHimport] = ACTIONS(12227), + [anon_sym_BSLASHsubimport] = ACTIONS(12227), + [anon_sym_BSLASHinputfrom] = ACTIONS(12227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12227), + [anon_sym_BSLASHincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHlabel] = ACTIONS(12227), + [anon_sym_BSLASHref] = ACTIONS(12227), + [anon_sym_BSLASHvref] = ACTIONS(12227), + [anon_sym_BSLASHVref] = ACTIONS(12227), + [anon_sym_BSLASHautoref] = ACTIONS(12227), + [anon_sym_BSLASHpageref] = ACTIONS(12227), + [anon_sym_BSLASHcref] = ACTIONS(12227), + [anon_sym_BSLASHCref] = ACTIONS(12227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnameCref] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHlabelcref] = ACTIONS(12227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12227), + [anon_sym_BSLASHeqref] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange] = ACTIONS(12227), + [anon_sym_BSLASHCrefrange] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewlabel] = ACTIONS(12227), + [anon_sym_BSLASHnewcommand] = ACTIONS(12227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12227), + [anon_sym_BSLASHgls] = ACTIONS(12227), + [anon_sym_BSLASHGls] = ACTIONS(12227), + [anon_sym_BSLASHGLS] = ACTIONS(12227), + [anon_sym_BSLASHglspl] = ACTIONS(12227), + [anon_sym_BSLASHGlspl] = ACTIONS(12227), + [anon_sym_BSLASHGLSpl] = ACTIONS(12227), + [anon_sym_BSLASHglsdisp] = ACTIONS(12227), + [anon_sym_BSLASHglslink] = ACTIONS(12227), + [anon_sym_BSLASHglstext] = ACTIONS(12227), + [anon_sym_BSLASHGlstext] = ACTIONS(12227), + [anon_sym_BSLASHGLStext] = ACTIONS(12227), + [anon_sym_BSLASHglsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12227), + [anon_sym_BSLASHglsplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSplural] = ACTIONS(12227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHglsname] = ACTIONS(12227), + [anon_sym_BSLASHGlsname] = ACTIONS(12227), + [anon_sym_BSLASHGLSname] = ACTIONS(12227), + [anon_sym_BSLASHglssymbol] = ACTIONS(12227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12227), + [anon_sym_BSLASHglsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12227), + [anon_sym_BSLASHglsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12227), + [anon_sym_BSLASHglsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12227), + [anon_sym_BSLASHglsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12227), + [anon_sym_BSLASHglsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12227), + [anon_sym_BSLASHnewacronym] = ACTIONS(12227), + [anon_sym_BSLASHacrshort] = ACTIONS(12227), + [anon_sym_BSLASHAcrshort] = ACTIONS(12227), + [anon_sym_BSLASHACRshort] = ACTIONS(12227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12227), + [anon_sym_BSLASHacrlong] = ACTIONS(12227), + [anon_sym_BSLASHAcrlong] = ACTIONS(12227), + [anon_sym_BSLASHACRlong] = ACTIONS(12227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12227), + [anon_sym_BSLASHacrfull] = ACTIONS(12227), + [anon_sym_BSLASHAcrfull] = ACTIONS(12227), + [anon_sym_BSLASHACRfull] = ACTIONS(12227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12227), + [anon_sym_BSLASHacs] = ACTIONS(12227), + [anon_sym_BSLASHAcs] = ACTIONS(12227), + [anon_sym_BSLASHacsp] = ACTIONS(12227), + [anon_sym_BSLASHAcsp] = ACTIONS(12227), + [anon_sym_BSLASHacl] = ACTIONS(12227), + [anon_sym_BSLASHAcl] = ACTIONS(12227), + [anon_sym_BSLASHaclp] = ACTIONS(12227), + [anon_sym_BSLASHAclp] = ACTIONS(12227), + [anon_sym_BSLASHacf] = ACTIONS(12227), + [anon_sym_BSLASHAcf] = ACTIONS(12227), + [anon_sym_BSLASHacfp] = ACTIONS(12227), + [anon_sym_BSLASHAcfp] = ACTIONS(12227), + [anon_sym_BSLASHac] = ACTIONS(12227), + [anon_sym_BSLASHAc] = ACTIONS(12227), + [anon_sym_BSLASHacp] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12227), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12227), + [anon_sym_BSLASHcolor] = ACTIONS(12227), + [anon_sym_BSLASHcolorbox] = ACTIONS(12227), + [anon_sym_BSLASHtextcolor] = ACTIONS(12227), + [anon_sym_BSLASHpagecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12227), + }, + [832] = { + [sym_generic_command_name] = ACTIONS(12433), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12433), + [aux_sym_chapter_token1] = ACTIONS(12433), + [aux_sym_section_token1] = ACTIONS(12433), + [aux_sym_subsection_token1] = ACTIONS(12433), + [aux_sym_subsubsection_token1] = ACTIONS(12433), + [aux_sym_paragraph_token1] = ACTIONS(12433), + [aux_sym_subparagraph_token1] = ACTIONS(12433), + [anon_sym_BSLASHitem] = ACTIONS(12433), + [anon_sym_LBRACK] = ACTIONS(12431), + [anon_sym_LBRACE] = ACTIONS(12431), + [anon_sym_LPAREN] = ACTIONS(12431), + [anon_sym_COMMA] = ACTIONS(12431), + [anon_sym_EQ] = ACTIONS(12431), + [sym_word] = ACTIONS(12431), + [sym_param] = ACTIONS(12431), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12431), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12431), + [anon_sym_DOLLAR] = ACTIONS(12433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12431), + [anon_sym_BSLASHbegin] = ACTIONS(12433), + [anon_sym_BSLASHend] = ACTIONS(12433), + [anon_sym_BSLASHcaption] = ACTIONS(12433), + [anon_sym_BSLASHcite] = ACTIONS(12433), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCite] = ACTIONS(12433), + [anon_sym_BSLASHnocite] = ACTIONS(12433), + [anon_sym_BSLASHcitet] = ACTIONS(12433), + [anon_sym_BSLASHcitep] = ACTIONS(12433), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteauthor] = ACTIONS(12433), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12433), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitetitle] = ACTIONS(12433), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteyear] = ACTIONS(12433), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitedate] = ACTIONS(12433), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteurl] = ACTIONS(12433), + [anon_sym_BSLASHfullcite] = ACTIONS(12433), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12433), + [anon_sym_BSLASHcitealt] = ACTIONS(12433), + [anon_sym_BSLASHcitealp] = ACTIONS(12433), + [anon_sym_BSLASHcitetext] = ACTIONS(12433), + [anon_sym_BSLASHparencite] = ACTIONS(12433), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHParencite] = ACTIONS(12433), + [anon_sym_BSLASHfootcite] = ACTIONS(12433), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12433), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12433), + [anon_sym_BSLASHtextcite] = ACTIONS(12433), + [anon_sym_BSLASHTextcite] = ACTIONS(12433), + [anon_sym_BSLASHsmartcite] = ACTIONS(12433), + [anon_sym_BSLASHSmartcite] = ACTIONS(12433), + [anon_sym_BSLASHsupercite] = ACTIONS(12433), + [anon_sym_BSLASHautocite] = ACTIONS(12433), + [anon_sym_BSLASHAutocite] = ACTIONS(12433), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHvolcite] = ACTIONS(12433), + [anon_sym_BSLASHVolcite] = ACTIONS(12433), + [anon_sym_BSLASHpvolcite] = ACTIONS(12433), + [anon_sym_BSLASHPvolcite] = ACTIONS(12433), + [anon_sym_BSLASHfvolcite] = ACTIONS(12433), + [anon_sym_BSLASHftvolcite] = ACTIONS(12433), + [anon_sym_BSLASHsvolcite] = ACTIONS(12433), + [anon_sym_BSLASHSvolcite] = ACTIONS(12433), + [anon_sym_BSLASHtvolcite] = ACTIONS(12433), + [anon_sym_BSLASHTvolcite] = ACTIONS(12433), + [anon_sym_BSLASHavolcite] = ACTIONS(12433), + [anon_sym_BSLASHAvolcite] = ACTIONS(12433), + [anon_sym_BSLASHnotecite] = ACTIONS(12433), + [anon_sym_BSLASHpnotecite] = ACTIONS(12433), + [anon_sym_BSLASHPnotecite] = ACTIONS(12433), + [anon_sym_BSLASHfnotecite] = ACTIONS(12433), + [anon_sym_BSLASHusepackage] = ACTIONS(12433), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12433), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12433), + [anon_sym_BSLASHinclude] = ACTIONS(12433), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12433), + [anon_sym_BSLASHinput] = ACTIONS(12433), + [anon_sym_BSLASHsubfile] = ACTIONS(12433), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12433), + [anon_sym_BSLASHbibliography] = ACTIONS(12433), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12433), + [anon_sym_BSLASHincludesvg] = ACTIONS(12433), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12433), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12433), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12433), + [anon_sym_BSLASHimport] = ACTIONS(12433), + [anon_sym_BSLASHsubimport] = ACTIONS(12433), + [anon_sym_BSLASHinputfrom] = ACTIONS(12433), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12433), + [anon_sym_BSLASHincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHlabel] = ACTIONS(12433), + [anon_sym_BSLASHref] = ACTIONS(12433), + [anon_sym_BSLASHvref] = ACTIONS(12433), + [anon_sym_BSLASHVref] = ACTIONS(12433), + [anon_sym_BSLASHautoref] = ACTIONS(12433), + [anon_sym_BSLASHpageref] = ACTIONS(12433), + [anon_sym_BSLASHcref] = ACTIONS(12433), + [anon_sym_BSLASHCref] = ACTIONS(12433), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnameCref] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHlabelcref] = ACTIONS(12433), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12433), + [anon_sym_BSLASHeqref] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange] = ACTIONS(12433), + [anon_sym_BSLASHCrefrange] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewlabel] = ACTIONS(12433), + [anon_sym_BSLASHnewcommand] = ACTIONS(12433), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12433), + [anon_sym_BSLASHgls] = ACTIONS(12433), + [anon_sym_BSLASHGls] = ACTIONS(12433), + [anon_sym_BSLASHGLS] = ACTIONS(12433), + [anon_sym_BSLASHglspl] = ACTIONS(12433), + [anon_sym_BSLASHGlspl] = ACTIONS(12433), + [anon_sym_BSLASHGLSpl] = ACTIONS(12433), + [anon_sym_BSLASHglsdisp] = ACTIONS(12433), + [anon_sym_BSLASHglslink] = ACTIONS(12433), + [anon_sym_BSLASHglstext] = ACTIONS(12433), + [anon_sym_BSLASHGlstext] = ACTIONS(12433), + [anon_sym_BSLASHGLStext] = ACTIONS(12433), + [anon_sym_BSLASHglsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12433), + [anon_sym_BSLASHglsplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSplural] = ACTIONS(12433), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHglsname] = ACTIONS(12433), + [anon_sym_BSLASHGlsname] = ACTIONS(12433), + [anon_sym_BSLASHGLSname] = ACTIONS(12433), + [anon_sym_BSLASHglssymbol] = ACTIONS(12433), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12433), + [anon_sym_BSLASHglsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12433), + [anon_sym_BSLASHglsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12433), + [anon_sym_BSLASHglsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12433), + [anon_sym_BSLASHglsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12433), + [anon_sym_BSLASHglsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12433), + [anon_sym_BSLASHnewacronym] = ACTIONS(12433), + [anon_sym_BSLASHacrshort] = ACTIONS(12433), + [anon_sym_BSLASHAcrshort] = ACTIONS(12433), + [anon_sym_BSLASHACRshort] = ACTIONS(12433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12433), + [anon_sym_BSLASHacrlong] = ACTIONS(12433), + [anon_sym_BSLASHAcrlong] = ACTIONS(12433), + [anon_sym_BSLASHACRlong] = ACTIONS(12433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12433), + [anon_sym_BSLASHacrfull] = ACTIONS(12433), + [anon_sym_BSLASHAcrfull] = ACTIONS(12433), + [anon_sym_BSLASHACRfull] = ACTIONS(12433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12433), + [anon_sym_BSLASHacs] = ACTIONS(12433), + [anon_sym_BSLASHAcs] = ACTIONS(12433), + [anon_sym_BSLASHacsp] = ACTIONS(12433), + [anon_sym_BSLASHAcsp] = ACTIONS(12433), + [anon_sym_BSLASHacl] = ACTIONS(12433), + [anon_sym_BSLASHAcl] = ACTIONS(12433), + [anon_sym_BSLASHaclp] = ACTIONS(12433), + [anon_sym_BSLASHAclp] = ACTIONS(12433), + [anon_sym_BSLASHacf] = ACTIONS(12433), + [anon_sym_BSLASHAcf] = ACTIONS(12433), + [anon_sym_BSLASHacfp] = ACTIONS(12433), + [anon_sym_BSLASHAcfp] = ACTIONS(12433), + [anon_sym_BSLASHac] = ACTIONS(12433), + [anon_sym_BSLASHAc] = ACTIONS(12433), + [anon_sym_BSLASHacp] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12433), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12433), + [anon_sym_BSLASHcolor] = ACTIONS(12433), + [anon_sym_BSLASHcolorbox] = ACTIONS(12433), + [anon_sym_BSLASHtextcolor] = ACTIONS(12433), + [anon_sym_BSLASHpagecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12433), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12433), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12433), + }, + [833] = { + [sym_generic_command_name] = ACTIONS(12429), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12429), + [aux_sym_chapter_token1] = ACTIONS(12429), + [aux_sym_section_token1] = ACTIONS(12429), + [aux_sym_subsection_token1] = ACTIONS(12429), + [aux_sym_subsubsection_token1] = ACTIONS(12429), + [aux_sym_paragraph_token1] = ACTIONS(12429), + [aux_sym_subparagraph_token1] = ACTIONS(12429), + [anon_sym_BSLASHitem] = ACTIONS(12429), + [anon_sym_LBRACK] = ACTIONS(12427), + [anon_sym_LBRACE] = ACTIONS(12427), + [anon_sym_LPAREN] = ACTIONS(12427), + [anon_sym_COMMA] = ACTIONS(12427), + [anon_sym_EQ] = ACTIONS(12427), + [sym_word] = ACTIONS(12427), + [sym_param] = ACTIONS(12427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12427), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12427), + [anon_sym_DOLLAR] = ACTIONS(12429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12427), + [anon_sym_BSLASHbegin] = ACTIONS(12429), + [anon_sym_BSLASHend] = ACTIONS(12429), + [anon_sym_BSLASHcaption] = ACTIONS(12429), + [anon_sym_BSLASHcite] = ACTIONS(12429), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCite] = ACTIONS(12429), + [anon_sym_BSLASHnocite] = ACTIONS(12429), + [anon_sym_BSLASHcitet] = ACTIONS(12429), + [anon_sym_BSLASHcitep] = ACTIONS(12429), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteauthor] = ACTIONS(12429), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12429), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitetitle] = ACTIONS(12429), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteyear] = ACTIONS(12429), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitedate] = ACTIONS(12429), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteurl] = ACTIONS(12429), + [anon_sym_BSLASHfullcite] = ACTIONS(12429), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12429), + [anon_sym_BSLASHcitealt] = ACTIONS(12429), + [anon_sym_BSLASHcitealp] = ACTIONS(12429), + [anon_sym_BSLASHcitetext] = ACTIONS(12429), + [anon_sym_BSLASHparencite] = ACTIONS(12429), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHParencite] = ACTIONS(12429), + [anon_sym_BSLASHfootcite] = ACTIONS(12429), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12429), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12429), + [anon_sym_BSLASHtextcite] = ACTIONS(12429), + [anon_sym_BSLASHTextcite] = ACTIONS(12429), + [anon_sym_BSLASHsmartcite] = ACTIONS(12429), + [anon_sym_BSLASHSmartcite] = ACTIONS(12429), + [anon_sym_BSLASHsupercite] = ACTIONS(12429), + [anon_sym_BSLASHautocite] = ACTIONS(12429), + [anon_sym_BSLASHAutocite] = ACTIONS(12429), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHvolcite] = ACTIONS(12429), + [anon_sym_BSLASHVolcite] = ACTIONS(12429), + [anon_sym_BSLASHpvolcite] = ACTIONS(12429), + [anon_sym_BSLASHPvolcite] = ACTIONS(12429), + [anon_sym_BSLASHfvolcite] = ACTIONS(12429), + [anon_sym_BSLASHftvolcite] = ACTIONS(12429), + [anon_sym_BSLASHsvolcite] = ACTIONS(12429), + [anon_sym_BSLASHSvolcite] = ACTIONS(12429), + [anon_sym_BSLASHtvolcite] = ACTIONS(12429), + [anon_sym_BSLASHTvolcite] = ACTIONS(12429), + [anon_sym_BSLASHavolcite] = ACTIONS(12429), + [anon_sym_BSLASHAvolcite] = ACTIONS(12429), + [anon_sym_BSLASHnotecite] = ACTIONS(12429), + [anon_sym_BSLASHpnotecite] = ACTIONS(12429), + [anon_sym_BSLASHPnotecite] = ACTIONS(12429), + [anon_sym_BSLASHfnotecite] = ACTIONS(12429), + [anon_sym_BSLASHusepackage] = ACTIONS(12429), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12429), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12429), + [anon_sym_BSLASHinclude] = ACTIONS(12429), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12429), + [anon_sym_BSLASHinput] = ACTIONS(12429), + [anon_sym_BSLASHsubfile] = ACTIONS(12429), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12429), + [anon_sym_BSLASHbibliography] = ACTIONS(12429), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12429), + [anon_sym_BSLASHincludesvg] = ACTIONS(12429), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12429), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12429), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12429), + [anon_sym_BSLASHimport] = ACTIONS(12429), + [anon_sym_BSLASHsubimport] = ACTIONS(12429), + [anon_sym_BSLASHinputfrom] = ACTIONS(12429), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12429), + [anon_sym_BSLASHincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHlabel] = ACTIONS(12429), + [anon_sym_BSLASHref] = ACTIONS(12429), + [anon_sym_BSLASHvref] = ACTIONS(12429), + [anon_sym_BSLASHVref] = ACTIONS(12429), + [anon_sym_BSLASHautoref] = ACTIONS(12429), + [anon_sym_BSLASHpageref] = ACTIONS(12429), + [anon_sym_BSLASHcref] = ACTIONS(12429), + [anon_sym_BSLASHCref] = ACTIONS(12429), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnameCref] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHlabelcref] = ACTIONS(12429), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12429), + [anon_sym_BSLASHeqref] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange] = ACTIONS(12429), + [anon_sym_BSLASHCrefrange] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewlabel] = ACTIONS(12429), + [anon_sym_BSLASHnewcommand] = ACTIONS(12429), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12429), + [anon_sym_BSLASHgls] = ACTIONS(12429), + [anon_sym_BSLASHGls] = ACTIONS(12429), + [anon_sym_BSLASHGLS] = ACTIONS(12429), + [anon_sym_BSLASHglspl] = ACTIONS(12429), + [anon_sym_BSLASHGlspl] = ACTIONS(12429), + [anon_sym_BSLASHGLSpl] = ACTIONS(12429), + [anon_sym_BSLASHglsdisp] = ACTIONS(12429), + [anon_sym_BSLASHglslink] = ACTIONS(12429), + [anon_sym_BSLASHglstext] = ACTIONS(12429), + [anon_sym_BSLASHGlstext] = ACTIONS(12429), + [anon_sym_BSLASHGLStext] = ACTIONS(12429), + [anon_sym_BSLASHglsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12429), + [anon_sym_BSLASHglsplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSplural] = ACTIONS(12429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHglsname] = ACTIONS(12429), + [anon_sym_BSLASHGlsname] = ACTIONS(12429), + [anon_sym_BSLASHGLSname] = ACTIONS(12429), + [anon_sym_BSLASHglssymbol] = ACTIONS(12429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12429), + [anon_sym_BSLASHglsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12429), + [anon_sym_BSLASHglsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12429), + [anon_sym_BSLASHglsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12429), + [anon_sym_BSLASHglsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12429), + [anon_sym_BSLASHglsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12429), + [anon_sym_BSLASHnewacronym] = ACTIONS(12429), + [anon_sym_BSLASHacrshort] = ACTIONS(12429), + [anon_sym_BSLASHAcrshort] = ACTIONS(12429), + [anon_sym_BSLASHACRshort] = ACTIONS(12429), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12429), + [anon_sym_BSLASHacrlong] = ACTIONS(12429), + [anon_sym_BSLASHAcrlong] = ACTIONS(12429), + [anon_sym_BSLASHACRlong] = ACTIONS(12429), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12429), + [anon_sym_BSLASHacrfull] = ACTIONS(12429), + [anon_sym_BSLASHAcrfull] = ACTIONS(12429), + [anon_sym_BSLASHACRfull] = ACTIONS(12429), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12429), + [anon_sym_BSLASHacs] = ACTIONS(12429), + [anon_sym_BSLASHAcs] = ACTIONS(12429), + [anon_sym_BSLASHacsp] = ACTIONS(12429), + [anon_sym_BSLASHAcsp] = ACTIONS(12429), + [anon_sym_BSLASHacl] = ACTIONS(12429), + [anon_sym_BSLASHAcl] = ACTIONS(12429), + [anon_sym_BSLASHaclp] = ACTIONS(12429), + [anon_sym_BSLASHAclp] = ACTIONS(12429), + [anon_sym_BSLASHacf] = ACTIONS(12429), + [anon_sym_BSLASHAcf] = ACTIONS(12429), + [anon_sym_BSLASHacfp] = ACTIONS(12429), + [anon_sym_BSLASHAcfp] = ACTIONS(12429), + [anon_sym_BSLASHac] = ACTIONS(12429), + [anon_sym_BSLASHAc] = ACTIONS(12429), + [anon_sym_BSLASHacp] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12429), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12429), + [anon_sym_BSLASHcolor] = ACTIONS(12429), + [anon_sym_BSLASHcolorbox] = ACTIONS(12429), + [anon_sym_BSLASHtextcolor] = ACTIONS(12429), + [anon_sym_BSLASHpagecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12429), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12429), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12429), + }, + [834] = { + [sym_generic_command_name] = ACTIONS(12425), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12425), + [aux_sym_chapter_token1] = ACTIONS(12425), + [aux_sym_section_token1] = ACTIONS(12425), + [aux_sym_subsection_token1] = ACTIONS(12425), + [aux_sym_subsubsection_token1] = ACTIONS(12425), + [aux_sym_paragraph_token1] = ACTIONS(12425), + [aux_sym_subparagraph_token1] = ACTIONS(12425), + [anon_sym_BSLASHitem] = ACTIONS(12425), + [anon_sym_LBRACK] = ACTIONS(12423), + [anon_sym_LBRACE] = ACTIONS(12423), + [anon_sym_LPAREN] = ACTIONS(12423), + [anon_sym_COMMA] = ACTIONS(12423), + [anon_sym_EQ] = ACTIONS(12423), + [sym_word] = ACTIONS(12423), + [sym_param] = ACTIONS(12423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12423), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12423), + [anon_sym_DOLLAR] = ACTIONS(12425), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12423), + [anon_sym_BSLASHbegin] = ACTIONS(12425), + [anon_sym_BSLASHend] = ACTIONS(12425), + [anon_sym_BSLASHcaption] = ACTIONS(12425), + [anon_sym_BSLASHcite] = ACTIONS(12425), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCite] = ACTIONS(12425), + [anon_sym_BSLASHnocite] = ACTIONS(12425), + [anon_sym_BSLASHcitet] = ACTIONS(12425), + [anon_sym_BSLASHcitep] = ACTIONS(12425), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteauthor] = ACTIONS(12425), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12425), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitetitle] = ACTIONS(12425), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteyear] = ACTIONS(12425), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitedate] = ACTIONS(12425), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteurl] = ACTIONS(12425), + [anon_sym_BSLASHfullcite] = ACTIONS(12425), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12425), + [anon_sym_BSLASHcitealt] = ACTIONS(12425), + [anon_sym_BSLASHcitealp] = ACTIONS(12425), + [anon_sym_BSLASHcitetext] = ACTIONS(12425), + [anon_sym_BSLASHparencite] = ACTIONS(12425), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHParencite] = ACTIONS(12425), + [anon_sym_BSLASHfootcite] = ACTIONS(12425), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12425), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12425), + [anon_sym_BSLASHtextcite] = ACTIONS(12425), + [anon_sym_BSLASHTextcite] = ACTIONS(12425), + [anon_sym_BSLASHsmartcite] = ACTIONS(12425), + [anon_sym_BSLASHSmartcite] = ACTIONS(12425), + [anon_sym_BSLASHsupercite] = ACTIONS(12425), + [anon_sym_BSLASHautocite] = ACTIONS(12425), + [anon_sym_BSLASHAutocite] = ACTIONS(12425), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHvolcite] = ACTIONS(12425), + [anon_sym_BSLASHVolcite] = ACTIONS(12425), + [anon_sym_BSLASHpvolcite] = ACTIONS(12425), + [anon_sym_BSLASHPvolcite] = ACTIONS(12425), + [anon_sym_BSLASHfvolcite] = ACTIONS(12425), + [anon_sym_BSLASHftvolcite] = ACTIONS(12425), + [anon_sym_BSLASHsvolcite] = ACTIONS(12425), + [anon_sym_BSLASHSvolcite] = ACTIONS(12425), + [anon_sym_BSLASHtvolcite] = ACTIONS(12425), + [anon_sym_BSLASHTvolcite] = ACTIONS(12425), + [anon_sym_BSLASHavolcite] = ACTIONS(12425), + [anon_sym_BSLASHAvolcite] = ACTIONS(12425), + [anon_sym_BSLASHnotecite] = ACTIONS(12425), + [anon_sym_BSLASHpnotecite] = ACTIONS(12425), + [anon_sym_BSLASHPnotecite] = ACTIONS(12425), + [anon_sym_BSLASHfnotecite] = ACTIONS(12425), + [anon_sym_BSLASHusepackage] = ACTIONS(12425), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12425), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12425), + [anon_sym_BSLASHinclude] = ACTIONS(12425), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12425), + [anon_sym_BSLASHinput] = ACTIONS(12425), + [anon_sym_BSLASHsubfile] = ACTIONS(12425), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12425), + [anon_sym_BSLASHbibliography] = ACTIONS(12425), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12425), + [anon_sym_BSLASHincludesvg] = ACTIONS(12425), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12425), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12425), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12425), + [anon_sym_BSLASHimport] = ACTIONS(12425), + [anon_sym_BSLASHsubimport] = ACTIONS(12425), + [anon_sym_BSLASHinputfrom] = ACTIONS(12425), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12425), + [anon_sym_BSLASHincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHlabel] = ACTIONS(12425), + [anon_sym_BSLASHref] = ACTIONS(12425), + [anon_sym_BSLASHvref] = ACTIONS(12425), + [anon_sym_BSLASHVref] = ACTIONS(12425), + [anon_sym_BSLASHautoref] = ACTIONS(12425), + [anon_sym_BSLASHpageref] = ACTIONS(12425), + [anon_sym_BSLASHcref] = ACTIONS(12425), + [anon_sym_BSLASHCref] = ACTIONS(12425), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnameCref] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHlabelcref] = ACTIONS(12425), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12425), + [anon_sym_BSLASHeqref] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange] = ACTIONS(12425), + [anon_sym_BSLASHCrefrange] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewlabel] = ACTIONS(12425), + [anon_sym_BSLASHnewcommand] = ACTIONS(12425), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12425), + [anon_sym_BSLASHgls] = ACTIONS(12425), + [anon_sym_BSLASHGls] = ACTIONS(12425), + [anon_sym_BSLASHGLS] = ACTIONS(12425), + [anon_sym_BSLASHglspl] = ACTIONS(12425), + [anon_sym_BSLASHGlspl] = ACTIONS(12425), + [anon_sym_BSLASHGLSpl] = ACTIONS(12425), + [anon_sym_BSLASHglsdisp] = ACTIONS(12425), + [anon_sym_BSLASHglslink] = ACTIONS(12425), + [anon_sym_BSLASHglstext] = ACTIONS(12425), + [anon_sym_BSLASHGlstext] = ACTIONS(12425), + [anon_sym_BSLASHGLStext] = ACTIONS(12425), + [anon_sym_BSLASHglsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12425), + [anon_sym_BSLASHglsplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSplural] = ACTIONS(12425), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHglsname] = ACTIONS(12425), + [anon_sym_BSLASHGlsname] = ACTIONS(12425), + [anon_sym_BSLASHGLSname] = ACTIONS(12425), + [anon_sym_BSLASHglssymbol] = ACTIONS(12425), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12425), + [anon_sym_BSLASHglsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12425), + [anon_sym_BSLASHglsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12425), + [anon_sym_BSLASHglsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12425), + [anon_sym_BSLASHglsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12425), + [anon_sym_BSLASHglsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12425), + [anon_sym_BSLASHnewacronym] = ACTIONS(12425), + [anon_sym_BSLASHacrshort] = ACTIONS(12425), + [anon_sym_BSLASHAcrshort] = ACTIONS(12425), + [anon_sym_BSLASHACRshort] = ACTIONS(12425), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12425), + [anon_sym_BSLASHacrlong] = ACTIONS(12425), + [anon_sym_BSLASHAcrlong] = ACTIONS(12425), + [anon_sym_BSLASHACRlong] = ACTIONS(12425), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12425), + [anon_sym_BSLASHacrfull] = ACTIONS(12425), + [anon_sym_BSLASHAcrfull] = ACTIONS(12425), + [anon_sym_BSLASHACRfull] = ACTIONS(12425), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12425), + [anon_sym_BSLASHacs] = ACTIONS(12425), + [anon_sym_BSLASHAcs] = ACTIONS(12425), + [anon_sym_BSLASHacsp] = ACTIONS(12425), + [anon_sym_BSLASHAcsp] = ACTIONS(12425), + [anon_sym_BSLASHacl] = ACTIONS(12425), + [anon_sym_BSLASHAcl] = ACTIONS(12425), + [anon_sym_BSLASHaclp] = ACTIONS(12425), + [anon_sym_BSLASHAclp] = ACTIONS(12425), + [anon_sym_BSLASHacf] = ACTIONS(12425), + [anon_sym_BSLASHAcf] = ACTIONS(12425), + [anon_sym_BSLASHacfp] = ACTIONS(12425), + [anon_sym_BSLASHAcfp] = ACTIONS(12425), + [anon_sym_BSLASHac] = ACTIONS(12425), + [anon_sym_BSLASHAc] = ACTIONS(12425), + [anon_sym_BSLASHacp] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12425), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12425), + [anon_sym_BSLASHcolor] = ACTIONS(12425), + [anon_sym_BSLASHcolorbox] = ACTIONS(12425), + [anon_sym_BSLASHtextcolor] = ACTIONS(12425), + [anon_sym_BSLASHpagecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12425), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12425), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12425), + }, + [835] = { + [sym_generic_command_name] = ACTIONS(12421), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12421), + [aux_sym_chapter_token1] = ACTIONS(12421), + [aux_sym_section_token1] = ACTIONS(12421), + [aux_sym_subsection_token1] = ACTIONS(12421), + [aux_sym_subsubsection_token1] = ACTIONS(12421), + [aux_sym_paragraph_token1] = ACTIONS(12421), + [aux_sym_subparagraph_token1] = ACTIONS(12421), + [anon_sym_BSLASHitem] = ACTIONS(12421), + [anon_sym_LBRACK] = ACTIONS(12419), + [anon_sym_LBRACE] = ACTIONS(12419), + [anon_sym_LPAREN] = ACTIONS(12419), + [anon_sym_COMMA] = ACTIONS(12419), + [anon_sym_EQ] = ACTIONS(12419), + [sym_word] = ACTIONS(12419), + [sym_param] = ACTIONS(12419), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12419), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12419), + [anon_sym_DOLLAR] = ACTIONS(12421), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12419), + [anon_sym_BSLASHbegin] = ACTIONS(12421), + [anon_sym_BSLASHend] = ACTIONS(12421), + [anon_sym_BSLASHcaption] = ACTIONS(12421), + [anon_sym_BSLASHcite] = ACTIONS(12421), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCite] = ACTIONS(12421), + [anon_sym_BSLASHnocite] = ACTIONS(12421), + [anon_sym_BSLASHcitet] = ACTIONS(12421), + [anon_sym_BSLASHcitep] = ACTIONS(12421), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteauthor] = ACTIONS(12421), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12421), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitetitle] = ACTIONS(12421), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteyear] = ACTIONS(12421), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitedate] = ACTIONS(12421), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteurl] = ACTIONS(12421), + [anon_sym_BSLASHfullcite] = ACTIONS(12421), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12421), + [anon_sym_BSLASHcitealt] = ACTIONS(12421), + [anon_sym_BSLASHcitealp] = ACTIONS(12421), + [anon_sym_BSLASHcitetext] = ACTIONS(12421), + [anon_sym_BSLASHparencite] = ACTIONS(12421), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHParencite] = ACTIONS(12421), + [anon_sym_BSLASHfootcite] = ACTIONS(12421), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12421), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12421), + [anon_sym_BSLASHtextcite] = ACTIONS(12421), + [anon_sym_BSLASHTextcite] = ACTIONS(12421), + [anon_sym_BSLASHsmartcite] = ACTIONS(12421), + [anon_sym_BSLASHSmartcite] = ACTIONS(12421), + [anon_sym_BSLASHsupercite] = ACTIONS(12421), + [anon_sym_BSLASHautocite] = ACTIONS(12421), + [anon_sym_BSLASHAutocite] = ACTIONS(12421), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHvolcite] = ACTIONS(12421), + [anon_sym_BSLASHVolcite] = ACTIONS(12421), + [anon_sym_BSLASHpvolcite] = ACTIONS(12421), + [anon_sym_BSLASHPvolcite] = ACTIONS(12421), + [anon_sym_BSLASHfvolcite] = ACTIONS(12421), + [anon_sym_BSLASHftvolcite] = ACTIONS(12421), + [anon_sym_BSLASHsvolcite] = ACTIONS(12421), + [anon_sym_BSLASHSvolcite] = ACTIONS(12421), + [anon_sym_BSLASHtvolcite] = ACTIONS(12421), + [anon_sym_BSLASHTvolcite] = ACTIONS(12421), + [anon_sym_BSLASHavolcite] = ACTIONS(12421), + [anon_sym_BSLASHAvolcite] = ACTIONS(12421), + [anon_sym_BSLASHnotecite] = ACTIONS(12421), + [anon_sym_BSLASHpnotecite] = ACTIONS(12421), + [anon_sym_BSLASHPnotecite] = ACTIONS(12421), + [anon_sym_BSLASHfnotecite] = ACTIONS(12421), + [anon_sym_BSLASHusepackage] = ACTIONS(12421), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12421), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12421), + [anon_sym_BSLASHinclude] = ACTIONS(12421), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12421), + [anon_sym_BSLASHinput] = ACTIONS(12421), + [anon_sym_BSLASHsubfile] = ACTIONS(12421), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12421), + [anon_sym_BSLASHbibliography] = ACTIONS(12421), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12421), + [anon_sym_BSLASHincludesvg] = ACTIONS(12421), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12421), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12421), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12421), + [anon_sym_BSLASHimport] = ACTIONS(12421), + [anon_sym_BSLASHsubimport] = ACTIONS(12421), + [anon_sym_BSLASHinputfrom] = ACTIONS(12421), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12421), + [anon_sym_BSLASHincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHlabel] = ACTIONS(12421), + [anon_sym_BSLASHref] = ACTIONS(12421), + [anon_sym_BSLASHvref] = ACTIONS(12421), + [anon_sym_BSLASHVref] = ACTIONS(12421), + [anon_sym_BSLASHautoref] = ACTIONS(12421), + [anon_sym_BSLASHpageref] = ACTIONS(12421), + [anon_sym_BSLASHcref] = ACTIONS(12421), + [anon_sym_BSLASHCref] = ACTIONS(12421), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnameCref] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHlabelcref] = ACTIONS(12421), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12421), + [anon_sym_BSLASHeqref] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange] = ACTIONS(12421), + [anon_sym_BSLASHCrefrange] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewlabel] = ACTIONS(12421), + [anon_sym_BSLASHnewcommand] = ACTIONS(12421), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12421), + [anon_sym_BSLASHgls] = ACTIONS(12421), + [anon_sym_BSLASHGls] = ACTIONS(12421), + [anon_sym_BSLASHGLS] = ACTIONS(12421), + [anon_sym_BSLASHglspl] = ACTIONS(12421), + [anon_sym_BSLASHGlspl] = ACTIONS(12421), + [anon_sym_BSLASHGLSpl] = ACTIONS(12421), + [anon_sym_BSLASHglsdisp] = ACTIONS(12421), + [anon_sym_BSLASHglslink] = ACTIONS(12421), + [anon_sym_BSLASHglstext] = ACTIONS(12421), + [anon_sym_BSLASHGlstext] = ACTIONS(12421), + [anon_sym_BSLASHGLStext] = ACTIONS(12421), + [anon_sym_BSLASHglsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12421), + [anon_sym_BSLASHglsplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSplural] = ACTIONS(12421), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHglsname] = ACTIONS(12421), + [anon_sym_BSLASHGlsname] = ACTIONS(12421), + [anon_sym_BSLASHGLSname] = ACTIONS(12421), + [anon_sym_BSLASHglssymbol] = ACTIONS(12421), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12421), + [anon_sym_BSLASHglsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12421), + [anon_sym_BSLASHglsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12421), + [anon_sym_BSLASHglsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12421), + [anon_sym_BSLASHglsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12421), + [anon_sym_BSLASHglsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12421), + [anon_sym_BSLASHnewacronym] = ACTIONS(12421), + [anon_sym_BSLASHacrshort] = ACTIONS(12421), + [anon_sym_BSLASHAcrshort] = ACTIONS(12421), + [anon_sym_BSLASHACRshort] = ACTIONS(12421), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12421), + [anon_sym_BSLASHacrlong] = ACTIONS(12421), + [anon_sym_BSLASHAcrlong] = ACTIONS(12421), + [anon_sym_BSLASHACRlong] = ACTIONS(12421), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12421), + [anon_sym_BSLASHacrfull] = ACTIONS(12421), + [anon_sym_BSLASHAcrfull] = ACTIONS(12421), + [anon_sym_BSLASHACRfull] = ACTIONS(12421), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12421), + [anon_sym_BSLASHacs] = ACTIONS(12421), + [anon_sym_BSLASHAcs] = ACTIONS(12421), + [anon_sym_BSLASHacsp] = ACTIONS(12421), + [anon_sym_BSLASHAcsp] = ACTIONS(12421), + [anon_sym_BSLASHacl] = ACTIONS(12421), + [anon_sym_BSLASHAcl] = ACTIONS(12421), + [anon_sym_BSLASHaclp] = ACTIONS(12421), + [anon_sym_BSLASHAclp] = ACTIONS(12421), + [anon_sym_BSLASHacf] = ACTIONS(12421), + [anon_sym_BSLASHAcf] = ACTIONS(12421), + [anon_sym_BSLASHacfp] = ACTIONS(12421), + [anon_sym_BSLASHAcfp] = ACTIONS(12421), + [anon_sym_BSLASHac] = ACTIONS(12421), + [anon_sym_BSLASHAc] = ACTIONS(12421), + [anon_sym_BSLASHacp] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12421), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12421), + [anon_sym_BSLASHcolor] = ACTIONS(12421), + [anon_sym_BSLASHcolorbox] = ACTIONS(12421), + [anon_sym_BSLASHtextcolor] = ACTIONS(12421), + [anon_sym_BSLASHpagecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12421), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12421), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12421), + }, + [836] = { + [sym_generic_command_name] = ACTIONS(12413), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12413), + [aux_sym_chapter_token1] = ACTIONS(12413), + [aux_sym_section_token1] = ACTIONS(12413), + [aux_sym_subsection_token1] = ACTIONS(12413), + [aux_sym_subsubsection_token1] = ACTIONS(12413), + [aux_sym_paragraph_token1] = ACTIONS(12413), + [aux_sym_subparagraph_token1] = ACTIONS(12413), + [anon_sym_BSLASHitem] = ACTIONS(12413), + [anon_sym_LBRACK] = ACTIONS(12411), + [anon_sym_LBRACE] = ACTIONS(12411), + [anon_sym_LPAREN] = ACTIONS(12411), + [anon_sym_COMMA] = ACTIONS(12411), + [anon_sym_EQ] = ACTIONS(12411), + [sym_word] = ACTIONS(12411), + [sym_param] = ACTIONS(12411), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12411), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12411), + [anon_sym_DOLLAR] = ACTIONS(12413), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12411), + [anon_sym_BSLASHbegin] = ACTIONS(12413), + [anon_sym_BSLASHend] = ACTIONS(12413), + [anon_sym_BSLASHcaption] = ACTIONS(12413), + [anon_sym_BSLASHcite] = ACTIONS(12413), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCite] = ACTIONS(12413), + [anon_sym_BSLASHnocite] = ACTIONS(12413), + [anon_sym_BSLASHcitet] = ACTIONS(12413), + [anon_sym_BSLASHcitep] = ACTIONS(12413), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteauthor] = ACTIONS(12413), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12413), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitetitle] = ACTIONS(12413), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteyear] = ACTIONS(12413), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitedate] = ACTIONS(12413), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteurl] = ACTIONS(12413), + [anon_sym_BSLASHfullcite] = ACTIONS(12413), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12413), + [anon_sym_BSLASHcitealt] = ACTIONS(12413), + [anon_sym_BSLASHcitealp] = ACTIONS(12413), + [anon_sym_BSLASHcitetext] = ACTIONS(12413), + [anon_sym_BSLASHparencite] = ACTIONS(12413), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHParencite] = ACTIONS(12413), + [anon_sym_BSLASHfootcite] = ACTIONS(12413), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12413), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12413), + [anon_sym_BSLASHtextcite] = ACTIONS(12413), + [anon_sym_BSLASHTextcite] = ACTIONS(12413), + [anon_sym_BSLASHsmartcite] = ACTIONS(12413), + [anon_sym_BSLASHSmartcite] = ACTIONS(12413), + [anon_sym_BSLASHsupercite] = ACTIONS(12413), + [anon_sym_BSLASHautocite] = ACTIONS(12413), + [anon_sym_BSLASHAutocite] = ACTIONS(12413), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHvolcite] = ACTIONS(12413), + [anon_sym_BSLASHVolcite] = ACTIONS(12413), + [anon_sym_BSLASHpvolcite] = ACTIONS(12413), + [anon_sym_BSLASHPvolcite] = ACTIONS(12413), + [anon_sym_BSLASHfvolcite] = ACTIONS(12413), + [anon_sym_BSLASHftvolcite] = ACTIONS(12413), + [anon_sym_BSLASHsvolcite] = ACTIONS(12413), + [anon_sym_BSLASHSvolcite] = ACTIONS(12413), + [anon_sym_BSLASHtvolcite] = ACTIONS(12413), + [anon_sym_BSLASHTvolcite] = ACTIONS(12413), + [anon_sym_BSLASHavolcite] = ACTIONS(12413), + [anon_sym_BSLASHAvolcite] = ACTIONS(12413), + [anon_sym_BSLASHnotecite] = ACTIONS(12413), + [anon_sym_BSLASHpnotecite] = ACTIONS(12413), + [anon_sym_BSLASHPnotecite] = ACTIONS(12413), + [anon_sym_BSLASHfnotecite] = ACTIONS(12413), + [anon_sym_BSLASHusepackage] = ACTIONS(12413), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12413), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12413), + [anon_sym_BSLASHinclude] = ACTIONS(12413), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12413), + [anon_sym_BSLASHinput] = ACTIONS(12413), + [anon_sym_BSLASHsubfile] = ACTIONS(12413), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12413), + [anon_sym_BSLASHbibliography] = ACTIONS(12413), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12413), + [anon_sym_BSLASHincludesvg] = ACTIONS(12413), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12413), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12413), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12413), + [anon_sym_BSLASHimport] = ACTIONS(12413), + [anon_sym_BSLASHsubimport] = ACTIONS(12413), + [anon_sym_BSLASHinputfrom] = ACTIONS(12413), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12413), + [anon_sym_BSLASHincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHlabel] = ACTIONS(12413), + [anon_sym_BSLASHref] = ACTIONS(12413), + [anon_sym_BSLASHvref] = ACTIONS(12413), + [anon_sym_BSLASHVref] = ACTIONS(12413), + [anon_sym_BSLASHautoref] = ACTIONS(12413), + [anon_sym_BSLASHpageref] = ACTIONS(12413), + [anon_sym_BSLASHcref] = ACTIONS(12413), + [anon_sym_BSLASHCref] = ACTIONS(12413), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnameCref] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHlabelcref] = ACTIONS(12413), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12413), + [anon_sym_BSLASHeqref] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange] = ACTIONS(12413), + [anon_sym_BSLASHCrefrange] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewlabel] = ACTIONS(12413), + [anon_sym_BSLASHnewcommand] = ACTIONS(12413), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12413), + [anon_sym_BSLASHgls] = ACTIONS(12413), + [anon_sym_BSLASHGls] = ACTIONS(12413), + [anon_sym_BSLASHGLS] = ACTIONS(12413), + [anon_sym_BSLASHglspl] = ACTIONS(12413), + [anon_sym_BSLASHGlspl] = ACTIONS(12413), + [anon_sym_BSLASHGLSpl] = ACTIONS(12413), + [anon_sym_BSLASHglsdisp] = ACTIONS(12413), + [anon_sym_BSLASHglslink] = ACTIONS(12413), + [anon_sym_BSLASHglstext] = ACTIONS(12413), + [anon_sym_BSLASHGlstext] = ACTIONS(12413), + [anon_sym_BSLASHGLStext] = ACTIONS(12413), + [anon_sym_BSLASHglsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12413), + [anon_sym_BSLASHglsplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSplural] = ACTIONS(12413), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHglsname] = ACTIONS(12413), + [anon_sym_BSLASHGlsname] = ACTIONS(12413), + [anon_sym_BSLASHGLSname] = ACTIONS(12413), + [anon_sym_BSLASHglssymbol] = ACTIONS(12413), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12413), + [anon_sym_BSLASHglsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12413), + [anon_sym_BSLASHglsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12413), + [anon_sym_BSLASHglsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12413), + [anon_sym_BSLASHglsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12413), + [anon_sym_BSLASHglsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12413), + [anon_sym_BSLASHnewacronym] = ACTIONS(12413), + [anon_sym_BSLASHacrshort] = ACTIONS(12413), + [anon_sym_BSLASHAcrshort] = ACTIONS(12413), + [anon_sym_BSLASHACRshort] = ACTIONS(12413), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12413), + [anon_sym_BSLASHacrlong] = ACTIONS(12413), + [anon_sym_BSLASHAcrlong] = ACTIONS(12413), + [anon_sym_BSLASHACRlong] = ACTIONS(12413), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12413), + [anon_sym_BSLASHacrfull] = ACTIONS(12413), + [anon_sym_BSLASHAcrfull] = ACTIONS(12413), + [anon_sym_BSLASHACRfull] = ACTIONS(12413), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12413), + [anon_sym_BSLASHacs] = ACTIONS(12413), + [anon_sym_BSLASHAcs] = ACTIONS(12413), + [anon_sym_BSLASHacsp] = ACTIONS(12413), + [anon_sym_BSLASHAcsp] = ACTIONS(12413), + [anon_sym_BSLASHacl] = ACTIONS(12413), + [anon_sym_BSLASHAcl] = ACTIONS(12413), + [anon_sym_BSLASHaclp] = ACTIONS(12413), + [anon_sym_BSLASHAclp] = ACTIONS(12413), + [anon_sym_BSLASHacf] = ACTIONS(12413), + [anon_sym_BSLASHAcf] = ACTIONS(12413), + [anon_sym_BSLASHacfp] = ACTIONS(12413), + [anon_sym_BSLASHAcfp] = ACTIONS(12413), + [anon_sym_BSLASHac] = ACTIONS(12413), + [anon_sym_BSLASHAc] = ACTIONS(12413), + [anon_sym_BSLASHacp] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12413), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12413), + [anon_sym_BSLASHcolor] = ACTIONS(12413), + [anon_sym_BSLASHcolorbox] = ACTIONS(12413), + [anon_sym_BSLASHtextcolor] = ACTIONS(12413), + [anon_sym_BSLASHpagecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12413), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12413), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12413), + }, + [837] = { + [sym_generic_command_name] = ACTIONS(12409), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12409), + [aux_sym_chapter_token1] = ACTIONS(12409), + [aux_sym_section_token1] = ACTIONS(12409), + [aux_sym_subsection_token1] = ACTIONS(12409), + [aux_sym_subsubsection_token1] = ACTIONS(12409), + [aux_sym_paragraph_token1] = ACTIONS(12409), + [aux_sym_subparagraph_token1] = ACTIONS(12409), + [anon_sym_BSLASHitem] = ACTIONS(12409), + [anon_sym_LBRACK] = ACTIONS(12407), + [anon_sym_LBRACE] = ACTIONS(12407), + [anon_sym_LPAREN] = ACTIONS(12407), + [anon_sym_COMMA] = ACTIONS(12407), + [anon_sym_EQ] = ACTIONS(12407), + [sym_word] = ACTIONS(12407), + [sym_param] = ACTIONS(12407), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12407), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12407), + [anon_sym_DOLLAR] = ACTIONS(12409), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12407), + [anon_sym_BSLASHbegin] = ACTIONS(12409), + [anon_sym_BSLASHend] = ACTIONS(12409), + [anon_sym_BSLASHcaption] = ACTIONS(12409), + [anon_sym_BSLASHcite] = ACTIONS(12409), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCite] = ACTIONS(12409), + [anon_sym_BSLASHnocite] = ACTIONS(12409), + [anon_sym_BSLASHcitet] = ACTIONS(12409), + [anon_sym_BSLASHcitep] = ACTIONS(12409), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteauthor] = ACTIONS(12409), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12409), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitetitle] = ACTIONS(12409), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteyear] = ACTIONS(12409), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitedate] = ACTIONS(12409), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteurl] = ACTIONS(12409), + [anon_sym_BSLASHfullcite] = ACTIONS(12409), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12409), + [anon_sym_BSLASHcitealt] = ACTIONS(12409), + [anon_sym_BSLASHcitealp] = ACTIONS(12409), + [anon_sym_BSLASHcitetext] = ACTIONS(12409), + [anon_sym_BSLASHparencite] = ACTIONS(12409), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHParencite] = ACTIONS(12409), + [anon_sym_BSLASHfootcite] = ACTIONS(12409), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12409), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12409), + [anon_sym_BSLASHtextcite] = ACTIONS(12409), + [anon_sym_BSLASHTextcite] = ACTIONS(12409), + [anon_sym_BSLASHsmartcite] = ACTIONS(12409), + [anon_sym_BSLASHSmartcite] = ACTIONS(12409), + [anon_sym_BSLASHsupercite] = ACTIONS(12409), + [anon_sym_BSLASHautocite] = ACTIONS(12409), + [anon_sym_BSLASHAutocite] = ACTIONS(12409), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHvolcite] = ACTIONS(12409), + [anon_sym_BSLASHVolcite] = ACTIONS(12409), + [anon_sym_BSLASHpvolcite] = ACTIONS(12409), + [anon_sym_BSLASHPvolcite] = ACTIONS(12409), + [anon_sym_BSLASHfvolcite] = ACTIONS(12409), + [anon_sym_BSLASHftvolcite] = ACTIONS(12409), + [anon_sym_BSLASHsvolcite] = ACTIONS(12409), + [anon_sym_BSLASHSvolcite] = ACTIONS(12409), + [anon_sym_BSLASHtvolcite] = ACTIONS(12409), + [anon_sym_BSLASHTvolcite] = ACTIONS(12409), + [anon_sym_BSLASHavolcite] = ACTIONS(12409), + [anon_sym_BSLASHAvolcite] = ACTIONS(12409), + [anon_sym_BSLASHnotecite] = ACTIONS(12409), + [anon_sym_BSLASHpnotecite] = ACTIONS(12409), + [anon_sym_BSLASHPnotecite] = ACTIONS(12409), + [anon_sym_BSLASHfnotecite] = ACTIONS(12409), + [anon_sym_BSLASHusepackage] = ACTIONS(12409), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12409), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12409), + [anon_sym_BSLASHinclude] = ACTIONS(12409), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12409), + [anon_sym_BSLASHinput] = ACTIONS(12409), + [anon_sym_BSLASHsubfile] = ACTIONS(12409), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12409), + [anon_sym_BSLASHbibliography] = ACTIONS(12409), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12409), + [anon_sym_BSLASHincludesvg] = ACTIONS(12409), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12409), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12409), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12409), + [anon_sym_BSLASHimport] = ACTIONS(12409), + [anon_sym_BSLASHsubimport] = ACTIONS(12409), + [anon_sym_BSLASHinputfrom] = ACTIONS(12409), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12409), + [anon_sym_BSLASHincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHlabel] = ACTIONS(12409), + [anon_sym_BSLASHref] = ACTIONS(12409), + [anon_sym_BSLASHvref] = ACTIONS(12409), + [anon_sym_BSLASHVref] = ACTIONS(12409), + [anon_sym_BSLASHautoref] = ACTIONS(12409), + [anon_sym_BSLASHpageref] = ACTIONS(12409), + [anon_sym_BSLASHcref] = ACTIONS(12409), + [anon_sym_BSLASHCref] = ACTIONS(12409), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnameCref] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHlabelcref] = ACTIONS(12409), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12409), + [anon_sym_BSLASHeqref] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange] = ACTIONS(12409), + [anon_sym_BSLASHCrefrange] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewlabel] = ACTIONS(12409), + [anon_sym_BSLASHnewcommand] = ACTIONS(12409), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12409), + [anon_sym_BSLASHgls] = ACTIONS(12409), + [anon_sym_BSLASHGls] = ACTIONS(12409), + [anon_sym_BSLASHGLS] = ACTIONS(12409), + [anon_sym_BSLASHglspl] = ACTIONS(12409), + [anon_sym_BSLASHGlspl] = ACTIONS(12409), + [anon_sym_BSLASHGLSpl] = ACTIONS(12409), + [anon_sym_BSLASHglsdisp] = ACTIONS(12409), + [anon_sym_BSLASHglslink] = ACTIONS(12409), + [anon_sym_BSLASHglstext] = ACTIONS(12409), + [anon_sym_BSLASHGlstext] = ACTIONS(12409), + [anon_sym_BSLASHGLStext] = ACTIONS(12409), + [anon_sym_BSLASHglsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12409), + [anon_sym_BSLASHglsplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSplural] = ACTIONS(12409), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHglsname] = ACTIONS(12409), + [anon_sym_BSLASHGlsname] = ACTIONS(12409), + [anon_sym_BSLASHGLSname] = ACTIONS(12409), + [anon_sym_BSLASHglssymbol] = ACTIONS(12409), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12409), + [anon_sym_BSLASHglsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12409), + [anon_sym_BSLASHglsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12409), + [anon_sym_BSLASHglsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12409), + [anon_sym_BSLASHglsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12409), + [anon_sym_BSLASHglsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12409), + [anon_sym_BSLASHnewacronym] = ACTIONS(12409), + [anon_sym_BSLASHacrshort] = ACTIONS(12409), + [anon_sym_BSLASHAcrshort] = ACTIONS(12409), + [anon_sym_BSLASHACRshort] = ACTIONS(12409), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12409), + [anon_sym_BSLASHacrlong] = ACTIONS(12409), + [anon_sym_BSLASHAcrlong] = ACTIONS(12409), + [anon_sym_BSLASHACRlong] = ACTIONS(12409), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12409), + [anon_sym_BSLASHacrfull] = ACTIONS(12409), + [anon_sym_BSLASHAcrfull] = ACTIONS(12409), + [anon_sym_BSLASHACRfull] = ACTIONS(12409), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12409), + [anon_sym_BSLASHacs] = ACTIONS(12409), + [anon_sym_BSLASHAcs] = ACTIONS(12409), + [anon_sym_BSLASHacsp] = ACTIONS(12409), + [anon_sym_BSLASHAcsp] = ACTIONS(12409), + [anon_sym_BSLASHacl] = ACTIONS(12409), + [anon_sym_BSLASHAcl] = ACTIONS(12409), + [anon_sym_BSLASHaclp] = ACTIONS(12409), + [anon_sym_BSLASHAclp] = ACTIONS(12409), + [anon_sym_BSLASHacf] = ACTIONS(12409), + [anon_sym_BSLASHAcf] = ACTIONS(12409), + [anon_sym_BSLASHacfp] = ACTIONS(12409), + [anon_sym_BSLASHAcfp] = ACTIONS(12409), + [anon_sym_BSLASHac] = ACTIONS(12409), + [anon_sym_BSLASHAc] = ACTIONS(12409), + [anon_sym_BSLASHacp] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12409), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12409), + [anon_sym_BSLASHcolor] = ACTIONS(12409), + [anon_sym_BSLASHcolorbox] = ACTIONS(12409), + [anon_sym_BSLASHtextcolor] = ACTIONS(12409), + [anon_sym_BSLASHpagecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12409), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12409), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12409), + }, + [838] = { + [sym_generic_command_name] = ACTIONS(12405), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12405), + [aux_sym_chapter_token1] = ACTIONS(12405), + [aux_sym_section_token1] = ACTIONS(12405), + [aux_sym_subsection_token1] = ACTIONS(12405), + [aux_sym_subsubsection_token1] = ACTIONS(12405), + [aux_sym_paragraph_token1] = ACTIONS(12405), + [aux_sym_subparagraph_token1] = ACTIONS(12405), + [anon_sym_BSLASHitem] = ACTIONS(12405), + [anon_sym_LBRACK] = ACTIONS(12403), + [anon_sym_LBRACE] = ACTIONS(12403), + [anon_sym_LPAREN] = ACTIONS(12403), + [anon_sym_COMMA] = ACTIONS(12403), + [anon_sym_EQ] = ACTIONS(12403), + [sym_word] = ACTIONS(12403), + [sym_param] = ACTIONS(12403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12403), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12403), + [anon_sym_DOLLAR] = ACTIONS(12405), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12403), + [anon_sym_BSLASHbegin] = ACTIONS(12405), + [anon_sym_BSLASHend] = ACTIONS(12405), + [anon_sym_BSLASHcaption] = ACTIONS(12405), + [anon_sym_BSLASHcite] = ACTIONS(12405), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCite] = ACTIONS(12405), + [anon_sym_BSLASHnocite] = ACTIONS(12405), + [anon_sym_BSLASHcitet] = ACTIONS(12405), + [anon_sym_BSLASHcitep] = ACTIONS(12405), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteauthor] = ACTIONS(12405), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12405), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitetitle] = ACTIONS(12405), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteyear] = ACTIONS(12405), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitedate] = ACTIONS(12405), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteurl] = ACTIONS(12405), + [anon_sym_BSLASHfullcite] = ACTIONS(12405), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12405), + [anon_sym_BSLASHcitealt] = ACTIONS(12405), + [anon_sym_BSLASHcitealp] = ACTIONS(12405), + [anon_sym_BSLASHcitetext] = ACTIONS(12405), + [anon_sym_BSLASHparencite] = ACTIONS(12405), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHParencite] = ACTIONS(12405), + [anon_sym_BSLASHfootcite] = ACTIONS(12405), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12405), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12405), + [anon_sym_BSLASHtextcite] = ACTIONS(12405), + [anon_sym_BSLASHTextcite] = ACTIONS(12405), + [anon_sym_BSLASHsmartcite] = ACTIONS(12405), + [anon_sym_BSLASHSmartcite] = ACTIONS(12405), + [anon_sym_BSLASHsupercite] = ACTIONS(12405), + [anon_sym_BSLASHautocite] = ACTIONS(12405), + [anon_sym_BSLASHAutocite] = ACTIONS(12405), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHvolcite] = ACTIONS(12405), + [anon_sym_BSLASHVolcite] = ACTIONS(12405), + [anon_sym_BSLASHpvolcite] = ACTIONS(12405), + [anon_sym_BSLASHPvolcite] = ACTIONS(12405), + [anon_sym_BSLASHfvolcite] = ACTIONS(12405), + [anon_sym_BSLASHftvolcite] = ACTIONS(12405), + [anon_sym_BSLASHsvolcite] = ACTIONS(12405), + [anon_sym_BSLASHSvolcite] = ACTIONS(12405), + [anon_sym_BSLASHtvolcite] = ACTIONS(12405), + [anon_sym_BSLASHTvolcite] = ACTIONS(12405), + [anon_sym_BSLASHavolcite] = ACTIONS(12405), + [anon_sym_BSLASHAvolcite] = ACTIONS(12405), + [anon_sym_BSLASHnotecite] = ACTIONS(12405), + [anon_sym_BSLASHpnotecite] = ACTIONS(12405), + [anon_sym_BSLASHPnotecite] = ACTIONS(12405), + [anon_sym_BSLASHfnotecite] = ACTIONS(12405), + [anon_sym_BSLASHusepackage] = ACTIONS(12405), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12405), + [anon_sym_BSLASHinclude] = ACTIONS(12405), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12405), + [anon_sym_BSLASHinput] = ACTIONS(12405), + [anon_sym_BSLASHsubfile] = ACTIONS(12405), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12405), + [anon_sym_BSLASHbibliography] = ACTIONS(12405), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12405), + [anon_sym_BSLASHincludesvg] = ACTIONS(12405), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12405), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12405), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12405), + [anon_sym_BSLASHimport] = ACTIONS(12405), + [anon_sym_BSLASHsubimport] = ACTIONS(12405), + [anon_sym_BSLASHinputfrom] = ACTIONS(12405), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12405), + [anon_sym_BSLASHincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHlabel] = ACTIONS(12405), + [anon_sym_BSLASHref] = ACTIONS(12405), + [anon_sym_BSLASHvref] = ACTIONS(12405), + [anon_sym_BSLASHVref] = ACTIONS(12405), + [anon_sym_BSLASHautoref] = ACTIONS(12405), + [anon_sym_BSLASHpageref] = ACTIONS(12405), + [anon_sym_BSLASHcref] = ACTIONS(12405), + [anon_sym_BSLASHCref] = ACTIONS(12405), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnameCref] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHlabelcref] = ACTIONS(12405), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12405), + [anon_sym_BSLASHeqref] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange] = ACTIONS(12405), + [anon_sym_BSLASHCrefrange] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewlabel] = ACTIONS(12405), + [anon_sym_BSLASHnewcommand] = ACTIONS(12405), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12405), + [anon_sym_BSLASHgls] = ACTIONS(12405), + [anon_sym_BSLASHGls] = ACTIONS(12405), + [anon_sym_BSLASHGLS] = ACTIONS(12405), + [anon_sym_BSLASHglspl] = ACTIONS(12405), + [anon_sym_BSLASHGlspl] = ACTIONS(12405), + [anon_sym_BSLASHGLSpl] = ACTIONS(12405), + [anon_sym_BSLASHglsdisp] = ACTIONS(12405), + [anon_sym_BSLASHglslink] = ACTIONS(12405), + [anon_sym_BSLASHglstext] = ACTIONS(12405), + [anon_sym_BSLASHGlstext] = ACTIONS(12405), + [anon_sym_BSLASHGLStext] = ACTIONS(12405), + [anon_sym_BSLASHglsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12405), + [anon_sym_BSLASHglsplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSplural] = ACTIONS(12405), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHglsname] = ACTIONS(12405), + [anon_sym_BSLASHGlsname] = ACTIONS(12405), + [anon_sym_BSLASHGLSname] = ACTIONS(12405), + [anon_sym_BSLASHglssymbol] = ACTIONS(12405), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12405), + [anon_sym_BSLASHglsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12405), + [anon_sym_BSLASHglsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12405), + [anon_sym_BSLASHglsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12405), + [anon_sym_BSLASHglsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12405), + [anon_sym_BSLASHglsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12405), + [anon_sym_BSLASHnewacronym] = ACTIONS(12405), + [anon_sym_BSLASHacrshort] = ACTIONS(12405), + [anon_sym_BSLASHAcrshort] = ACTIONS(12405), + [anon_sym_BSLASHACRshort] = ACTIONS(12405), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12405), + [anon_sym_BSLASHacrlong] = ACTIONS(12405), + [anon_sym_BSLASHAcrlong] = ACTIONS(12405), + [anon_sym_BSLASHACRlong] = ACTIONS(12405), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12405), + [anon_sym_BSLASHacrfull] = ACTIONS(12405), + [anon_sym_BSLASHAcrfull] = ACTIONS(12405), + [anon_sym_BSLASHACRfull] = ACTIONS(12405), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12405), + [anon_sym_BSLASHacs] = ACTIONS(12405), + [anon_sym_BSLASHAcs] = ACTIONS(12405), + [anon_sym_BSLASHacsp] = ACTIONS(12405), + [anon_sym_BSLASHAcsp] = ACTIONS(12405), + [anon_sym_BSLASHacl] = ACTIONS(12405), + [anon_sym_BSLASHAcl] = ACTIONS(12405), + [anon_sym_BSLASHaclp] = ACTIONS(12405), + [anon_sym_BSLASHAclp] = ACTIONS(12405), + [anon_sym_BSLASHacf] = ACTIONS(12405), + [anon_sym_BSLASHAcf] = ACTIONS(12405), + [anon_sym_BSLASHacfp] = ACTIONS(12405), + [anon_sym_BSLASHAcfp] = ACTIONS(12405), + [anon_sym_BSLASHac] = ACTIONS(12405), + [anon_sym_BSLASHAc] = ACTIONS(12405), + [anon_sym_BSLASHacp] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12405), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12405), + [anon_sym_BSLASHcolor] = ACTIONS(12405), + [anon_sym_BSLASHcolorbox] = ACTIONS(12405), + [anon_sym_BSLASHtextcolor] = ACTIONS(12405), + [anon_sym_BSLASHpagecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12405), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12405), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12405), + }, + [839] = { + [sym_generic_command_name] = ACTIONS(12401), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12401), + [aux_sym_chapter_token1] = ACTIONS(12401), + [aux_sym_section_token1] = ACTIONS(12401), + [aux_sym_subsection_token1] = ACTIONS(12401), + [aux_sym_subsubsection_token1] = ACTIONS(12401), + [aux_sym_paragraph_token1] = ACTIONS(12401), + [aux_sym_subparagraph_token1] = ACTIONS(12401), + [anon_sym_BSLASHitem] = ACTIONS(12401), + [anon_sym_LBRACK] = ACTIONS(12399), + [anon_sym_LBRACE] = ACTIONS(12399), + [anon_sym_LPAREN] = ACTIONS(12399), + [anon_sym_COMMA] = ACTIONS(12399), + [anon_sym_EQ] = ACTIONS(12399), + [sym_word] = ACTIONS(12399), + [sym_param] = ACTIONS(12399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12399), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12399), + [anon_sym_DOLLAR] = ACTIONS(12401), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12399), + [anon_sym_BSLASHbegin] = ACTIONS(12401), + [anon_sym_BSLASHend] = ACTIONS(12401), + [anon_sym_BSLASHcaption] = ACTIONS(12401), + [anon_sym_BSLASHcite] = ACTIONS(12401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCite] = ACTIONS(12401), + [anon_sym_BSLASHnocite] = ACTIONS(12401), + [anon_sym_BSLASHcitet] = ACTIONS(12401), + [anon_sym_BSLASHcitep] = ACTIONS(12401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteauthor] = ACTIONS(12401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitetitle] = ACTIONS(12401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteyear] = ACTIONS(12401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitedate] = ACTIONS(12401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteurl] = ACTIONS(12401), + [anon_sym_BSLASHfullcite] = ACTIONS(12401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12401), + [anon_sym_BSLASHcitealt] = ACTIONS(12401), + [anon_sym_BSLASHcitealp] = ACTIONS(12401), + [anon_sym_BSLASHcitetext] = ACTIONS(12401), + [anon_sym_BSLASHparencite] = ACTIONS(12401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHParencite] = ACTIONS(12401), + [anon_sym_BSLASHfootcite] = ACTIONS(12401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12401), + [anon_sym_BSLASHtextcite] = ACTIONS(12401), + [anon_sym_BSLASHTextcite] = ACTIONS(12401), + [anon_sym_BSLASHsmartcite] = ACTIONS(12401), + [anon_sym_BSLASHSmartcite] = ACTIONS(12401), + [anon_sym_BSLASHsupercite] = ACTIONS(12401), + [anon_sym_BSLASHautocite] = ACTIONS(12401), + [anon_sym_BSLASHAutocite] = ACTIONS(12401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHvolcite] = ACTIONS(12401), + [anon_sym_BSLASHVolcite] = ACTIONS(12401), + [anon_sym_BSLASHpvolcite] = ACTIONS(12401), + [anon_sym_BSLASHPvolcite] = ACTIONS(12401), + [anon_sym_BSLASHfvolcite] = ACTIONS(12401), + [anon_sym_BSLASHftvolcite] = ACTIONS(12401), + [anon_sym_BSLASHsvolcite] = ACTIONS(12401), + [anon_sym_BSLASHSvolcite] = ACTIONS(12401), + [anon_sym_BSLASHtvolcite] = ACTIONS(12401), + [anon_sym_BSLASHTvolcite] = ACTIONS(12401), + [anon_sym_BSLASHavolcite] = ACTIONS(12401), + [anon_sym_BSLASHAvolcite] = ACTIONS(12401), + [anon_sym_BSLASHnotecite] = ACTIONS(12401), + [anon_sym_BSLASHpnotecite] = ACTIONS(12401), + [anon_sym_BSLASHPnotecite] = ACTIONS(12401), + [anon_sym_BSLASHfnotecite] = ACTIONS(12401), + [anon_sym_BSLASHusepackage] = ACTIONS(12401), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12401), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12401), + [anon_sym_BSLASHinclude] = ACTIONS(12401), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12401), + [anon_sym_BSLASHinput] = ACTIONS(12401), + [anon_sym_BSLASHsubfile] = ACTIONS(12401), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12401), + [anon_sym_BSLASHbibliography] = ACTIONS(12401), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12401), + [anon_sym_BSLASHincludesvg] = ACTIONS(12401), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12401), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12401), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12401), + [anon_sym_BSLASHimport] = ACTIONS(12401), + [anon_sym_BSLASHsubimport] = ACTIONS(12401), + [anon_sym_BSLASHinputfrom] = ACTIONS(12401), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12401), + [anon_sym_BSLASHincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHlabel] = ACTIONS(12401), + [anon_sym_BSLASHref] = ACTIONS(12401), + [anon_sym_BSLASHvref] = ACTIONS(12401), + [anon_sym_BSLASHVref] = ACTIONS(12401), + [anon_sym_BSLASHautoref] = ACTIONS(12401), + [anon_sym_BSLASHpageref] = ACTIONS(12401), + [anon_sym_BSLASHcref] = ACTIONS(12401), + [anon_sym_BSLASHCref] = ACTIONS(12401), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnameCref] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHlabelcref] = ACTIONS(12401), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12401), + [anon_sym_BSLASHeqref] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange] = ACTIONS(12401), + [anon_sym_BSLASHCrefrange] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewlabel] = ACTIONS(12401), + [anon_sym_BSLASHnewcommand] = ACTIONS(12401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12401), + [anon_sym_BSLASHgls] = ACTIONS(12401), + [anon_sym_BSLASHGls] = ACTIONS(12401), + [anon_sym_BSLASHGLS] = ACTIONS(12401), + [anon_sym_BSLASHglspl] = ACTIONS(12401), + [anon_sym_BSLASHGlspl] = ACTIONS(12401), + [anon_sym_BSLASHGLSpl] = ACTIONS(12401), + [anon_sym_BSLASHglsdisp] = ACTIONS(12401), + [anon_sym_BSLASHglslink] = ACTIONS(12401), + [anon_sym_BSLASHglstext] = ACTIONS(12401), + [anon_sym_BSLASHGlstext] = ACTIONS(12401), + [anon_sym_BSLASHGLStext] = ACTIONS(12401), + [anon_sym_BSLASHglsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12401), + [anon_sym_BSLASHglsplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSplural] = ACTIONS(12401), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHglsname] = ACTIONS(12401), + [anon_sym_BSLASHGlsname] = ACTIONS(12401), + [anon_sym_BSLASHGLSname] = ACTIONS(12401), + [anon_sym_BSLASHglssymbol] = ACTIONS(12401), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12401), + [anon_sym_BSLASHglsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12401), + [anon_sym_BSLASHglsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12401), + [anon_sym_BSLASHglsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12401), + [anon_sym_BSLASHglsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12401), + [anon_sym_BSLASHglsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12401), + [anon_sym_BSLASHnewacronym] = ACTIONS(12401), + [anon_sym_BSLASHacrshort] = ACTIONS(12401), + [anon_sym_BSLASHAcrshort] = ACTIONS(12401), + [anon_sym_BSLASHACRshort] = ACTIONS(12401), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12401), + [anon_sym_BSLASHacrlong] = ACTIONS(12401), + [anon_sym_BSLASHAcrlong] = ACTIONS(12401), + [anon_sym_BSLASHACRlong] = ACTIONS(12401), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12401), + [anon_sym_BSLASHacrfull] = ACTIONS(12401), + [anon_sym_BSLASHAcrfull] = ACTIONS(12401), + [anon_sym_BSLASHACRfull] = ACTIONS(12401), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12401), + [anon_sym_BSLASHacs] = ACTIONS(12401), + [anon_sym_BSLASHAcs] = ACTIONS(12401), + [anon_sym_BSLASHacsp] = ACTIONS(12401), + [anon_sym_BSLASHAcsp] = ACTIONS(12401), + [anon_sym_BSLASHacl] = ACTIONS(12401), + [anon_sym_BSLASHAcl] = ACTIONS(12401), + [anon_sym_BSLASHaclp] = ACTIONS(12401), + [anon_sym_BSLASHAclp] = ACTIONS(12401), + [anon_sym_BSLASHacf] = ACTIONS(12401), + [anon_sym_BSLASHAcf] = ACTIONS(12401), + [anon_sym_BSLASHacfp] = ACTIONS(12401), + [anon_sym_BSLASHAcfp] = ACTIONS(12401), + [anon_sym_BSLASHac] = ACTIONS(12401), + [anon_sym_BSLASHAc] = ACTIONS(12401), + [anon_sym_BSLASHacp] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12401), + [anon_sym_BSLASHcolor] = ACTIONS(12401), + [anon_sym_BSLASHcolorbox] = ACTIONS(12401), + [anon_sym_BSLASHtextcolor] = ACTIONS(12401), + [anon_sym_BSLASHpagecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12401), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12401), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12401), + }, + [840] = { + [sym_generic_command_name] = ACTIONS(12397), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12397), + [aux_sym_chapter_token1] = ACTIONS(12397), + [aux_sym_section_token1] = ACTIONS(12397), + [aux_sym_subsection_token1] = ACTIONS(12397), + [aux_sym_subsubsection_token1] = ACTIONS(12397), + [aux_sym_paragraph_token1] = ACTIONS(12397), + [aux_sym_subparagraph_token1] = ACTIONS(12397), + [anon_sym_BSLASHitem] = ACTIONS(12397), + [anon_sym_LBRACK] = ACTIONS(12395), + [anon_sym_LBRACE] = ACTIONS(12395), + [anon_sym_LPAREN] = ACTIONS(12395), + [anon_sym_COMMA] = ACTIONS(12395), + [anon_sym_EQ] = ACTIONS(12395), + [sym_word] = ACTIONS(12395), + [sym_param] = ACTIONS(12395), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12395), + [anon_sym_DOLLAR] = ACTIONS(12397), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12395), + [anon_sym_BSLASHbegin] = ACTIONS(12397), + [anon_sym_BSLASHend] = ACTIONS(12397), + [anon_sym_BSLASHcaption] = ACTIONS(12397), + [anon_sym_BSLASHcite] = ACTIONS(12397), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCite] = ACTIONS(12397), + [anon_sym_BSLASHnocite] = ACTIONS(12397), + [anon_sym_BSLASHcitet] = ACTIONS(12397), + [anon_sym_BSLASHcitep] = ACTIONS(12397), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteauthor] = ACTIONS(12397), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12397), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitetitle] = ACTIONS(12397), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteyear] = ACTIONS(12397), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitedate] = ACTIONS(12397), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteurl] = ACTIONS(12397), + [anon_sym_BSLASHfullcite] = ACTIONS(12397), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12397), + [anon_sym_BSLASHcitealt] = ACTIONS(12397), + [anon_sym_BSLASHcitealp] = ACTIONS(12397), + [anon_sym_BSLASHcitetext] = ACTIONS(12397), + [anon_sym_BSLASHparencite] = ACTIONS(12397), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHParencite] = ACTIONS(12397), + [anon_sym_BSLASHfootcite] = ACTIONS(12397), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12397), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12397), + [anon_sym_BSLASHtextcite] = ACTIONS(12397), + [anon_sym_BSLASHTextcite] = ACTIONS(12397), + [anon_sym_BSLASHsmartcite] = ACTIONS(12397), + [anon_sym_BSLASHSmartcite] = ACTIONS(12397), + [anon_sym_BSLASHsupercite] = ACTIONS(12397), + [anon_sym_BSLASHautocite] = ACTIONS(12397), + [anon_sym_BSLASHAutocite] = ACTIONS(12397), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHvolcite] = ACTIONS(12397), + [anon_sym_BSLASHVolcite] = ACTIONS(12397), + [anon_sym_BSLASHpvolcite] = ACTIONS(12397), + [anon_sym_BSLASHPvolcite] = ACTIONS(12397), + [anon_sym_BSLASHfvolcite] = ACTIONS(12397), + [anon_sym_BSLASHftvolcite] = ACTIONS(12397), + [anon_sym_BSLASHsvolcite] = ACTIONS(12397), + [anon_sym_BSLASHSvolcite] = ACTIONS(12397), + [anon_sym_BSLASHtvolcite] = ACTIONS(12397), + [anon_sym_BSLASHTvolcite] = ACTIONS(12397), + [anon_sym_BSLASHavolcite] = ACTIONS(12397), + [anon_sym_BSLASHAvolcite] = ACTIONS(12397), + [anon_sym_BSLASHnotecite] = ACTIONS(12397), + [anon_sym_BSLASHpnotecite] = ACTIONS(12397), + [anon_sym_BSLASHPnotecite] = ACTIONS(12397), + [anon_sym_BSLASHfnotecite] = ACTIONS(12397), + [anon_sym_BSLASHusepackage] = ACTIONS(12397), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12397), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12397), + [anon_sym_BSLASHinclude] = ACTIONS(12397), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12397), + [anon_sym_BSLASHinput] = ACTIONS(12397), + [anon_sym_BSLASHsubfile] = ACTIONS(12397), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12397), + [anon_sym_BSLASHbibliography] = ACTIONS(12397), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12397), + [anon_sym_BSLASHincludesvg] = ACTIONS(12397), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12397), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12397), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12397), + [anon_sym_BSLASHimport] = ACTIONS(12397), + [anon_sym_BSLASHsubimport] = ACTIONS(12397), + [anon_sym_BSLASHinputfrom] = ACTIONS(12397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12397), + [anon_sym_BSLASHincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHlabel] = ACTIONS(12397), + [anon_sym_BSLASHref] = ACTIONS(12397), + [anon_sym_BSLASHvref] = ACTIONS(12397), + [anon_sym_BSLASHVref] = ACTIONS(12397), + [anon_sym_BSLASHautoref] = ACTIONS(12397), + [anon_sym_BSLASHpageref] = ACTIONS(12397), + [anon_sym_BSLASHcref] = ACTIONS(12397), + [anon_sym_BSLASHCref] = ACTIONS(12397), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnameCref] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHlabelcref] = ACTIONS(12397), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12397), + [anon_sym_BSLASHeqref] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange] = ACTIONS(12397), + [anon_sym_BSLASHCrefrange] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewlabel] = ACTIONS(12397), + [anon_sym_BSLASHnewcommand] = ACTIONS(12397), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12397), + [anon_sym_BSLASHgls] = ACTIONS(12397), + [anon_sym_BSLASHGls] = ACTIONS(12397), + [anon_sym_BSLASHGLS] = ACTIONS(12397), + [anon_sym_BSLASHglspl] = ACTIONS(12397), + [anon_sym_BSLASHGlspl] = ACTIONS(12397), + [anon_sym_BSLASHGLSpl] = ACTIONS(12397), + [anon_sym_BSLASHglsdisp] = ACTIONS(12397), + [anon_sym_BSLASHglslink] = ACTIONS(12397), + [anon_sym_BSLASHglstext] = ACTIONS(12397), + [anon_sym_BSLASHGlstext] = ACTIONS(12397), + [anon_sym_BSLASHGLStext] = ACTIONS(12397), + [anon_sym_BSLASHglsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12397), + [anon_sym_BSLASHglsplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSplural] = ACTIONS(12397), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHglsname] = ACTIONS(12397), + [anon_sym_BSLASHGlsname] = ACTIONS(12397), + [anon_sym_BSLASHGLSname] = ACTIONS(12397), + [anon_sym_BSLASHglssymbol] = ACTIONS(12397), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12397), + [anon_sym_BSLASHglsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12397), + [anon_sym_BSLASHglsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12397), + [anon_sym_BSLASHglsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12397), + [anon_sym_BSLASHglsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12397), + [anon_sym_BSLASHglsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12397), + [anon_sym_BSLASHnewacronym] = ACTIONS(12397), + [anon_sym_BSLASHacrshort] = ACTIONS(12397), + [anon_sym_BSLASHAcrshort] = ACTIONS(12397), + [anon_sym_BSLASHACRshort] = ACTIONS(12397), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12397), + [anon_sym_BSLASHacrlong] = ACTIONS(12397), + [anon_sym_BSLASHAcrlong] = ACTIONS(12397), + [anon_sym_BSLASHACRlong] = ACTIONS(12397), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12397), + [anon_sym_BSLASHacrfull] = ACTIONS(12397), + [anon_sym_BSLASHAcrfull] = ACTIONS(12397), + [anon_sym_BSLASHACRfull] = ACTIONS(12397), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12397), + [anon_sym_BSLASHacs] = ACTIONS(12397), + [anon_sym_BSLASHAcs] = ACTIONS(12397), + [anon_sym_BSLASHacsp] = ACTIONS(12397), + [anon_sym_BSLASHAcsp] = ACTIONS(12397), + [anon_sym_BSLASHacl] = ACTIONS(12397), + [anon_sym_BSLASHAcl] = ACTIONS(12397), + [anon_sym_BSLASHaclp] = ACTIONS(12397), + [anon_sym_BSLASHAclp] = ACTIONS(12397), + [anon_sym_BSLASHacf] = ACTIONS(12397), + [anon_sym_BSLASHAcf] = ACTIONS(12397), + [anon_sym_BSLASHacfp] = ACTIONS(12397), + [anon_sym_BSLASHAcfp] = ACTIONS(12397), + [anon_sym_BSLASHac] = ACTIONS(12397), + [anon_sym_BSLASHAc] = ACTIONS(12397), + [anon_sym_BSLASHacp] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12397), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12397), + [anon_sym_BSLASHcolor] = ACTIONS(12397), + [anon_sym_BSLASHcolorbox] = ACTIONS(12397), + [anon_sym_BSLASHtextcolor] = ACTIONS(12397), + [anon_sym_BSLASHpagecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12397), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12397), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12397), + }, + [841] = { + [sym_generic_command_name] = ACTIONS(12393), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12393), + [aux_sym_chapter_token1] = ACTIONS(12393), + [aux_sym_section_token1] = ACTIONS(12393), + [aux_sym_subsection_token1] = ACTIONS(12393), + [aux_sym_subsubsection_token1] = ACTIONS(12393), + [aux_sym_paragraph_token1] = ACTIONS(12393), + [aux_sym_subparagraph_token1] = ACTIONS(12393), + [anon_sym_BSLASHitem] = ACTIONS(12393), + [anon_sym_LBRACK] = ACTIONS(12391), + [anon_sym_LBRACE] = ACTIONS(12391), + [anon_sym_LPAREN] = ACTIONS(12391), + [anon_sym_COMMA] = ACTIONS(12391), + [anon_sym_EQ] = ACTIONS(12391), + [sym_word] = ACTIONS(12391), + [sym_param] = ACTIONS(12391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12391), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12391), + [anon_sym_DOLLAR] = ACTIONS(12393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12391), + [anon_sym_BSLASHbegin] = ACTIONS(12393), + [anon_sym_BSLASHend] = ACTIONS(12393), + [anon_sym_BSLASHcaption] = ACTIONS(12393), + [anon_sym_BSLASHcite] = ACTIONS(12393), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCite] = ACTIONS(12393), + [anon_sym_BSLASHnocite] = ACTIONS(12393), + [anon_sym_BSLASHcitet] = ACTIONS(12393), + [anon_sym_BSLASHcitep] = ACTIONS(12393), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteauthor] = ACTIONS(12393), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12393), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitetitle] = ACTIONS(12393), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteyear] = ACTIONS(12393), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitedate] = ACTIONS(12393), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteurl] = ACTIONS(12393), + [anon_sym_BSLASHfullcite] = ACTIONS(12393), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12393), + [anon_sym_BSLASHcitealt] = ACTIONS(12393), + [anon_sym_BSLASHcitealp] = ACTIONS(12393), + [anon_sym_BSLASHcitetext] = ACTIONS(12393), + [anon_sym_BSLASHparencite] = ACTIONS(12393), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHParencite] = ACTIONS(12393), + [anon_sym_BSLASHfootcite] = ACTIONS(12393), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12393), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12393), + [anon_sym_BSLASHtextcite] = ACTIONS(12393), + [anon_sym_BSLASHTextcite] = ACTIONS(12393), + [anon_sym_BSLASHsmartcite] = ACTIONS(12393), + [anon_sym_BSLASHSmartcite] = ACTIONS(12393), + [anon_sym_BSLASHsupercite] = ACTIONS(12393), + [anon_sym_BSLASHautocite] = ACTIONS(12393), + [anon_sym_BSLASHAutocite] = ACTIONS(12393), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHvolcite] = ACTIONS(12393), + [anon_sym_BSLASHVolcite] = ACTIONS(12393), + [anon_sym_BSLASHpvolcite] = ACTIONS(12393), + [anon_sym_BSLASHPvolcite] = ACTIONS(12393), + [anon_sym_BSLASHfvolcite] = ACTIONS(12393), + [anon_sym_BSLASHftvolcite] = ACTIONS(12393), + [anon_sym_BSLASHsvolcite] = ACTIONS(12393), + [anon_sym_BSLASHSvolcite] = ACTIONS(12393), + [anon_sym_BSLASHtvolcite] = ACTIONS(12393), + [anon_sym_BSLASHTvolcite] = ACTIONS(12393), + [anon_sym_BSLASHavolcite] = ACTIONS(12393), + [anon_sym_BSLASHAvolcite] = ACTIONS(12393), + [anon_sym_BSLASHnotecite] = ACTIONS(12393), + [anon_sym_BSLASHpnotecite] = ACTIONS(12393), + [anon_sym_BSLASHPnotecite] = ACTIONS(12393), + [anon_sym_BSLASHfnotecite] = ACTIONS(12393), + [anon_sym_BSLASHusepackage] = ACTIONS(12393), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12393), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12393), + [anon_sym_BSLASHinclude] = ACTIONS(12393), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12393), + [anon_sym_BSLASHinput] = ACTIONS(12393), + [anon_sym_BSLASHsubfile] = ACTIONS(12393), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12393), + [anon_sym_BSLASHbibliography] = ACTIONS(12393), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12393), + [anon_sym_BSLASHincludesvg] = ACTIONS(12393), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12393), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12393), + [anon_sym_BSLASHimport] = ACTIONS(12393), + [anon_sym_BSLASHsubimport] = ACTIONS(12393), + [anon_sym_BSLASHinputfrom] = ACTIONS(12393), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12393), + [anon_sym_BSLASHincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHlabel] = ACTIONS(12393), + [anon_sym_BSLASHref] = ACTIONS(12393), + [anon_sym_BSLASHvref] = ACTIONS(12393), + [anon_sym_BSLASHVref] = ACTIONS(12393), + [anon_sym_BSLASHautoref] = ACTIONS(12393), + [anon_sym_BSLASHpageref] = ACTIONS(12393), + [anon_sym_BSLASHcref] = ACTIONS(12393), + [anon_sym_BSLASHCref] = ACTIONS(12393), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnameCref] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHlabelcref] = ACTIONS(12393), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12393), + [anon_sym_BSLASHeqref] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange] = ACTIONS(12393), + [anon_sym_BSLASHCrefrange] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewlabel] = ACTIONS(12393), + [anon_sym_BSLASHnewcommand] = ACTIONS(12393), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12393), + [anon_sym_BSLASHgls] = ACTIONS(12393), + [anon_sym_BSLASHGls] = ACTIONS(12393), + [anon_sym_BSLASHGLS] = ACTIONS(12393), + [anon_sym_BSLASHglspl] = ACTIONS(12393), + [anon_sym_BSLASHGlspl] = ACTIONS(12393), + [anon_sym_BSLASHGLSpl] = ACTIONS(12393), + [anon_sym_BSLASHglsdisp] = ACTIONS(12393), + [anon_sym_BSLASHglslink] = ACTIONS(12393), + [anon_sym_BSLASHglstext] = ACTIONS(12393), + [anon_sym_BSLASHGlstext] = ACTIONS(12393), + [anon_sym_BSLASHGLStext] = ACTIONS(12393), + [anon_sym_BSLASHglsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12393), + [anon_sym_BSLASHglsplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSplural] = ACTIONS(12393), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHglsname] = ACTIONS(12393), + [anon_sym_BSLASHGlsname] = ACTIONS(12393), + [anon_sym_BSLASHGLSname] = ACTIONS(12393), + [anon_sym_BSLASHglssymbol] = ACTIONS(12393), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12393), + [anon_sym_BSLASHglsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12393), + [anon_sym_BSLASHglsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12393), + [anon_sym_BSLASHglsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12393), + [anon_sym_BSLASHglsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12393), + [anon_sym_BSLASHglsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12393), + [anon_sym_BSLASHnewacronym] = ACTIONS(12393), + [anon_sym_BSLASHacrshort] = ACTIONS(12393), + [anon_sym_BSLASHAcrshort] = ACTIONS(12393), + [anon_sym_BSLASHACRshort] = ACTIONS(12393), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12393), + [anon_sym_BSLASHacrlong] = ACTIONS(12393), + [anon_sym_BSLASHAcrlong] = ACTIONS(12393), + [anon_sym_BSLASHACRlong] = ACTIONS(12393), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12393), + [anon_sym_BSLASHacrfull] = ACTIONS(12393), + [anon_sym_BSLASHAcrfull] = ACTIONS(12393), + [anon_sym_BSLASHACRfull] = ACTIONS(12393), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12393), + [anon_sym_BSLASHacs] = ACTIONS(12393), + [anon_sym_BSLASHAcs] = ACTIONS(12393), + [anon_sym_BSLASHacsp] = ACTIONS(12393), + [anon_sym_BSLASHAcsp] = ACTIONS(12393), + [anon_sym_BSLASHacl] = ACTIONS(12393), + [anon_sym_BSLASHAcl] = ACTIONS(12393), + [anon_sym_BSLASHaclp] = ACTIONS(12393), + [anon_sym_BSLASHAclp] = ACTIONS(12393), + [anon_sym_BSLASHacf] = ACTIONS(12393), + [anon_sym_BSLASHAcf] = ACTIONS(12393), + [anon_sym_BSLASHacfp] = ACTIONS(12393), + [anon_sym_BSLASHAcfp] = ACTIONS(12393), + [anon_sym_BSLASHac] = ACTIONS(12393), + [anon_sym_BSLASHAc] = ACTIONS(12393), + [anon_sym_BSLASHacp] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12393), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12393), + [anon_sym_BSLASHcolor] = ACTIONS(12393), + [anon_sym_BSLASHcolorbox] = ACTIONS(12393), + [anon_sym_BSLASHtextcolor] = ACTIONS(12393), + [anon_sym_BSLASHpagecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12393), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12393), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12393), + }, + [842] = { + [sym_generic_command_name] = ACTIONS(12381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12381), + [aux_sym_chapter_token1] = ACTIONS(12381), + [aux_sym_section_token1] = ACTIONS(12381), + [aux_sym_subsection_token1] = ACTIONS(12381), + [aux_sym_subsubsection_token1] = ACTIONS(12381), + [aux_sym_paragraph_token1] = ACTIONS(12381), + [aux_sym_subparagraph_token1] = ACTIONS(12381), + [anon_sym_BSLASHitem] = ACTIONS(12381), + [anon_sym_LBRACK] = ACTIONS(12379), + [anon_sym_LBRACE] = ACTIONS(12379), + [anon_sym_LPAREN] = ACTIONS(12379), + [anon_sym_COMMA] = ACTIONS(12379), + [anon_sym_EQ] = ACTIONS(12379), + [sym_word] = ACTIONS(12379), + [sym_param] = ACTIONS(12379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12379), + [anon_sym_DOLLAR] = ACTIONS(12381), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12379), + [anon_sym_BSLASHbegin] = ACTIONS(12381), + [anon_sym_BSLASHend] = ACTIONS(12381), + [anon_sym_BSLASHcaption] = ACTIONS(12381), + [anon_sym_BSLASHcite] = ACTIONS(12381), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCite] = ACTIONS(12381), + [anon_sym_BSLASHnocite] = ACTIONS(12381), + [anon_sym_BSLASHcitet] = ACTIONS(12381), + [anon_sym_BSLASHcitep] = ACTIONS(12381), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteauthor] = ACTIONS(12381), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12381), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitetitle] = ACTIONS(12381), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteyear] = ACTIONS(12381), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitedate] = ACTIONS(12381), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteurl] = ACTIONS(12381), + [anon_sym_BSLASHfullcite] = ACTIONS(12381), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12381), + [anon_sym_BSLASHcitealt] = ACTIONS(12381), + [anon_sym_BSLASHcitealp] = ACTIONS(12381), + [anon_sym_BSLASHcitetext] = ACTIONS(12381), + [anon_sym_BSLASHparencite] = ACTIONS(12381), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHParencite] = ACTIONS(12381), + [anon_sym_BSLASHfootcite] = ACTIONS(12381), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12381), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12381), + [anon_sym_BSLASHtextcite] = ACTIONS(12381), + [anon_sym_BSLASHTextcite] = ACTIONS(12381), + [anon_sym_BSLASHsmartcite] = ACTIONS(12381), + [anon_sym_BSLASHSmartcite] = ACTIONS(12381), + [anon_sym_BSLASHsupercite] = ACTIONS(12381), + [anon_sym_BSLASHautocite] = ACTIONS(12381), + [anon_sym_BSLASHAutocite] = ACTIONS(12381), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHvolcite] = ACTIONS(12381), + [anon_sym_BSLASHVolcite] = ACTIONS(12381), + [anon_sym_BSLASHpvolcite] = ACTIONS(12381), + [anon_sym_BSLASHPvolcite] = ACTIONS(12381), + [anon_sym_BSLASHfvolcite] = ACTIONS(12381), + [anon_sym_BSLASHftvolcite] = ACTIONS(12381), + [anon_sym_BSLASHsvolcite] = ACTIONS(12381), + [anon_sym_BSLASHSvolcite] = ACTIONS(12381), + [anon_sym_BSLASHtvolcite] = ACTIONS(12381), + [anon_sym_BSLASHTvolcite] = ACTIONS(12381), + [anon_sym_BSLASHavolcite] = ACTIONS(12381), + [anon_sym_BSLASHAvolcite] = ACTIONS(12381), + [anon_sym_BSLASHnotecite] = ACTIONS(12381), + [anon_sym_BSLASHpnotecite] = ACTIONS(12381), + [anon_sym_BSLASHPnotecite] = ACTIONS(12381), + [anon_sym_BSLASHfnotecite] = ACTIONS(12381), + [anon_sym_BSLASHusepackage] = ACTIONS(12381), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12381), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12381), + [anon_sym_BSLASHinclude] = ACTIONS(12381), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12381), + [anon_sym_BSLASHinput] = ACTIONS(12381), + [anon_sym_BSLASHsubfile] = ACTIONS(12381), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12381), + [anon_sym_BSLASHbibliography] = ACTIONS(12381), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12381), + [anon_sym_BSLASHincludesvg] = ACTIONS(12381), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12381), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12381), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12381), + [anon_sym_BSLASHimport] = ACTIONS(12381), + [anon_sym_BSLASHsubimport] = ACTIONS(12381), + [anon_sym_BSLASHinputfrom] = ACTIONS(12381), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12381), + [anon_sym_BSLASHincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHlabel] = ACTIONS(12381), + [anon_sym_BSLASHref] = ACTIONS(12381), + [anon_sym_BSLASHvref] = ACTIONS(12381), + [anon_sym_BSLASHVref] = ACTIONS(12381), + [anon_sym_BSLASHautoref] = ACTIONS(12381), + [anon_sym_BSLASHpageref] = ACTIONS(12381), + [anon_sym_BSLASHcref] = ACTIONS(12381), + [anon_sym_BSLASHCref] = ACTIONS(12381), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnameCref] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHlabelcref] = ACTIONS(12381), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12381), + [anon_sym_BSLASHeqref] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange] = ACTIONS(12381), + [anon_sym_BSLASHCrefrange] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewlabel] = ACTIONS(12381), + [anon_sym_BSLASHnewcommand] = ACTIONS(12381), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12381), + [anon_sym_BSLASHgls] = ACTIONS(12381), + [anon_sym_BSLASHGls] = ACTIONS(12381), + [anon_sym_BSLASHGLS] = ACTIONS(12381), + [anon_sym_BSLASHglspl] = ACTIONS(12381), + [anon_sym_BSLASHGlspl] = ACTIONS(12381), + [anon_sym_BSLASHGLSpl] = ACTIONS(12381), + [anon_sym_BSLASHglsdisp] = ACTIONS(12381), + [anon_sym_BSLASHglslink] = ACTIONS(12381), + [anon_sym_BSLASHglstext] = ACTIONS(12381), + [anon_sym_BSLASHGlstext] = ACTIONS(12381), + [anon_sym_BSLASHGLStext] = ACTIONS(12381), + [anon_sym_BSLASHglsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12381), + [anon_sym_BSLASHglsplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSplural] = ACTIONS(12381), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHglsname] = ACTIONS(12381), + [anon_sym_BSLASHGlsname] = ACTIONS(12381), + [anon_sym_BSLASHGLSname] = ACTIONS(12381), + [anon_sym_BSLASHglssymbol] = ACTIONS(12381), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12381), + [anon_sym_BSLASHglsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12381), + [anon_sym_BSLASHglsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12381), + [anon_sym_BSLASHglsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12381), + [anon_sym_BSLASHglsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12381), + [anon_sym_BSLASHglsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12381), + [anon_sym_BSLASHnewacronym] = ACTIONS(12381), + [anon_sym_BSLASHacrshort] = ACTIONS(12381), + [anon_sym_BSLASHAcrshort] = ACTIONS(12381), + [anon_sym_BSLASHACRshort] = ACTIONS(12381), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12381), + [anon_sym_BSLASHacrlong] = ACTIONS(12381), + [anon_sym_BSLASHAcrlong] = ACTIONS(12381), + [anon_sym_BSLASHACRlong] = ACTIONS(12381), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12381), + [anon_sym_BSLASHacrfull] = ACTIONS(12381), + [anon_sym_BSLASHAcrfull] = ACTIONS(12381), + [anon_sym_BSLASHACRfull] = ACTIONS(12381), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12381), + [anon_sym_BSLASHacs] = ACTIONS(12381), + [anon_sym_BSLASHAcs] = ACTIONS(12381), + [anon_sym_BSLASHacsp] = ACTIONS(12381), + [anon_sym_BSLASHAcsp] = ACTIONS(12381), + [anon_sym_BSLASHacl] = ACTIONS(12381), + [anon_sym_BSLASHAcl] = ACTIONS(12381), + [anon_sym_BSLASHaclp] = ACTIONS(12381), + [anon_sym_BSLASHAclp] = ACTIONS(12381), + [anon_sym_BSLASHacf] = ACTIONS(12381), + [anon_sym_BSLASHAcf] = ACTIONS(12381), + [anon_sym_BSLASHacfp] = ACTIONS(12381), + [anon_sym_BSLASHAcfp] = ACTIONS(12381), + [anon_sym_BSLASHac] = ACTIONS(12381), + [anon_sym_BSLASHAc] = ACTIONS(12381), + [anon_sym_BSLASHacp] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12381), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12381), + [anon_sym_BSLASHcolor] = ACTIONS(12381), + [anon_sym_BSLASHcolorbox] = ACTIONS(12381), + [anon_sym_BSLASHtextcolor] = ACTIONS(12381), + [anon_sym_BSLASHpagecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12381), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12381), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12381), + }, + [843] = { + [sym_generic_command_name] = ACTIONS(12377), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12377), + [aux_sym_chapter_token1] = ACTIONS(12377), + [aux_sym_section_token1] = ACTIONS(12377), + [aux_sym_subsection_token1] = ACTIONS(12377), + [aux_sym_subsubsection_token1] = ACTIONS(12377), + [aux_sym_paragraph_token1] = ACTIONS(12377), + [aux_sym_subparagraph_token1] = ACTIONS(12377), + [anon_sym_BSLASHitem] = ACTIONS(12377), + [anon_sym_LBRACK] = ACTIONS(12375), + [anon_sym_LBRACE] = ACTIONS(12375), + [anon_sym_LPAREN] = ACTIONS(12375), + [anon_sym_COMMA] = ACTIONS(12375), + [anon_sym_EQ] = ACTIONS(12375), + [sym_word] = ACTIONS(12375), + [sym_param] = ACTIONS(12375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12375), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12375), + [anon_sym_DOLLAR] = ACTIONS(12377), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12375), + [anon_sym_BSLASHbegin] = ACTIONS(12377), + [anon_sym_BSLASHend] = ACTIONS(12377), + [anon_sym_BSLASHcaption] = ACTIONS(12377), + [anon_sym_BSLASHcite] = ACTIONS(12377), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCite] = ACTIONS(12377), + [anon_sym_BSLASHnocite] = ACTIONS(12377), + [anon_sym_BSLASHcitet] = ACTIONS(12377), + [anon_sym_BSLASHcitep] = ACTIONS(12377), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteauthor] = ACTIONS(12377), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12377), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitetitle] = ACTIONS(12377), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteyear] = ACTIONS(12377), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitedate] = ACTIONS(12377), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteurl] = ACTIONS(12377), + [anon_sym_BSLASHfullcite] = ACTIONS(12377), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12377), + [anon_sym_BSLASHcitealt] = ACTIONS(12377), + [anon_sym_BSLASHcitealp] = ACTIONS(12377), + [anon_sym_BSLASHcitetext] = ACTIONS(12377), + [anon_sym_BSLASHparencite] = ACTIONS(12377), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHParencite] = ACTIONS(12377), + [anon_sym_BSLASHfootcite] = ACTIONS(12377), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12377), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12377), + [anon_sym_BSLASHtextcite] = ACTIONS(12377), + [anon_sym_BSLASHTextcite] = ACTIONS(12377), + [anon_sym_BSLASHsmartcite] = ACTIONS(12377), + [anon_sym_BSLASHSmartcite] = ACTIONS(12377), + [anon_sym_BSLASHsupercite] = ACTIONS(12377), + [anon_sym_BSLASHautocite] = ACTIONS(12377), + [anon_sym_BSLASHAutocite] = ACTIONS(12377), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHvolcite] = ACTIONS(12377), + [anon_sym_BSLASHVolcite] = ACTIONS(12377), + [anon_sym_BSLASHpvolcite] = ACTIONS(12377), + [anon_sym_BSLASHPvolcite] = ACTIONS(12377), + [anon_sym_BSLASHfvolcite] = ACTIONS(12377), + [anon_sym_BSLASHftvolcite] = ACTIONS(12377), + [anon_sym_BSLASHsvolcite] = ACTIONS(12377), + [anon_sym_BSLASHSvolcite] = ACTIONS(12377), + [anon_sym_BSLASHtvolcite] = ACTIONS(12377), + [anon_sym_BSLASHTvolcite] = ACTIONS(12377), + [anon_sym_BSLASHavolcite] = ACTIONS(12377), + [anon_sym_BSLASHAvolcite] = ACTIONS(12377), + [anon_sym_BSLASHnotecite] = ACTIONS(12377), + [anon_sym_BSLASHpnotecite] = ACTIONS(12377), + [anon_sym_BSLASHPnotecite] = ACTIONS(12377), + [anon_sym_BSLASHfnotecite] = ACTIONS(12377), + [anon_sym_BSLASHusepackage] = ACTIONS(12377), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12377), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12377), + [anon_sym_BSLASHinclude] = ACTIONS(12377), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12377), + [anon_sym_BSLASHinput] = ACTIONS(12377), + [anon_sym_BSLASHsubfile] = ACTIONS(12377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12377), + [anon_sym_BSLASHbibliography] = ACTIONS(12377), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12377), + [anon_sym_BSLASHincludesvg] = ACTIONS(12377), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12377), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12377), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12377), + [anon_sym_BSLASHimport] = ACTIONS(12377), + [anon_sym_BSLASHsubimport] = ACTIONS(12377), + [anon_sym_BSLASHinputfrom] = ACTIONS(12377), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12377), + [anon_sym_BSLASHincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHlabel] = ACTIONS(12377), + [anon_sym_BSLASHref] = ACTIONS(12377), + [anon_sym_BSLASHvref] = ACTIONS(12377), + [anon_sym_BSLASHVref] = ACTIONS(12377), + [anon_sym_BSLASHautoref] = ACTIONS(12377), + [anon_sym_BSLASHpageref] = ACTIONS(12377), + [anon_sym_BSLASHcref] = ACTIONS(12377), + [anon_sym_BSLASHCref] = ACTIONS(12377), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnameCref] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHlabelcref] = ACTIONS(12377), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12377), + [anon_sym_BSLASHeqref] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange] = ACTIONS(12377), + [anon_sym_BSLASHCrefrange] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewlabel] = ACTIONS(12377), + [anon_sym_BSLASHnewcommand] = ACTIONS(12377), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12377), + [anon_sym_BSLASHgls] = ACTIONS(12377), + [anon_sym_BSLASHGls] = ACTIONS(12377), + [anon_sym_BSLASHGLS] = ACTIONS(12377), + [anon_sym_BSLASHglspl] = ACTIONS(12377), + [anon_sym_BSLASHGlspl] = ACTIONS(12377), + [anon_sym_BSLASHGLSpl] = ACTIONS(12377), + [anon_sym_BSLASHglsdisp] = ACTIONS(12377), + [anon_sym_BSLASHglslink] = ACTIONS(12377), + [anon_sym_BSLASHglstext] = ACTIONS(12377), + [anon_sym_BSLASHGlstext] = ACTIONS(12377), + [anon_sym_BSLASHGLStext] = ACTIONS(12377), + [anon_sym_BSLASHglsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12377), + [anon_sym_BSLASHglsplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSplural] = ACTIONS(12377), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHglsname] = ACTIONS(12377), + [anon_sym_BSLASHGlsname] = ACTIONS(12377), + [anon_sym_BSLASHGLSname] = ACTIONS(12377), + [anon_sym_BSLASHglssymbol] = ACTIONS(12377), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12377), + [anon_sym_BSLASHglsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12377), + [anon_sym_BSLASHglsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12377), + [anon_sym_BSLASHglsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12377), + [anon_sym_BSLASHglsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12377), + [anon_sym_BSLASHglsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12377), + [anon_sym_BSLASHnewacronym] = ACTIONS(12377), + [anon_sym_BSLASHacrshort] = ACTIONS(12377), + [anon_sym_BSLASHAcrshort] = ACTIONS(12377), + [anon_sym_BSLASHACRshort] = ACTIONS(12377), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12377), + [anon_sym_BSLASHacrlong] = ACTIONS(12377), + [anon_sym_BSLASHAcrlong] = ACTIONS(12377), + [anon_sym_BSLASHACRlong] = ACTIONS(12377), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12377), + [anon_sym_BSLASHacrfull] = ACTIONS(12377), + [anon_sym_BSLASHAcrfull] = ACTIONS(12377), + [anon_sym_BSLASHACRfull] = ACTIONS(12377), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12377), + [anon_sym_BSLASHacs] = ACTIONS(12377), + [anon_sym_BSLASHAcs] = ACTIONS(12377), + [anon_sym_BSLASHacsp] = ACTIONS(12377), + [anon_sym_BSLASHAcsp] = ACTIONS(12377), + [anon_sym_BSLASHacl] = ACTIONS(12377), + [anon_sym_BSLASHAcl] = ACTIONS(12377), + [anon_sym_BSLASHaclp] = ACTIONS(12377), + [anon_sym_BSLASHAclp] = ACTIONS(12377), + [anon_sym_BSLASHacf] = ACTIONS(12377), + [anon_sym_BSLASHAcf] = ACTIONS(12377), + [anon_sym_BSLASHacfp] = ACTIONS(12377), + [anon_sym_BSLASHAcfp] = ACTIONS(12377), + [anon_sym_BSLASHac] = ACTIONS(12377), + [anon_sym_BSLASHAc] = ACTIONS(12377), + [anon_sym_BSLASHacp] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12377), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12377), + [anon_sym_BSLASHcolor] = ACTIONS(12377), + [anon_sym_BSLASHcolorbox] = ACTIONS(12377), + [anon_sym_BSLASHtextcolor] = ACTIONS(12377), + [anon_sym_BSLASHpagecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12377), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12377), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12377), + }, + [844] = { + [sym_generic_command_name] = ACTIONS(12373), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12373), + [aux_sym_chapter_token1] = ACTIONS(12373), + [aux_sym_section_token1] = ACTIONS(12373), + [aux_sym_subsection_token1] = ACTIONS(12373), + [aux_sym_subsubsection_token1] = ACTIONS(12373), + [aux_sym_paragraph_token1] = ACTIONS(12373), + [aux_sym_subparagraph_token1] = ACTIONS(12373), + [anon_sym_BSLASHitem] = ACTIONS(12373), + [anon_sym_LBRACK] = ACTIONS(12371), + [anon_sym_LBRACE] = ACTIONS(12371), + [anon_sym_LPAREN] = ACTIONS(12371), + [anon_sym_COMMA] = ACTIONS(12371), + [anon_sym_EQ] = ACTIONS(12371), + [sym_word] = ACTIONS(12371), + [sym_param] = ACTIONS(12371), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12371), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12371), + [anon_sym_DOLLAR] = ACTIONS(12373), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12371), + [anon_sym_BSLASHbegin] = ACTIONS(12373), + [anon_sym_BSLASHend] = ACTIONS(12373), + [anon_sym_BSLASHcaption] = ACTIONS(12373), + [anon_sym_BSLASHcite] = ACTIONS(12373), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCite] = ACTIONS(12373), + [anon_sym_BSLASHnocite] = ACTIONS(12373), + [anon_sym_BSLASHcitet] = ACTIONS(12373), + [anon_sym_BSLASHcitep] = ACTIONS(12373), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteauthor] = ACTIONS(12373), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12373), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitetitle] = ACTIONS(12373), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteyear] = ACTIONS(12373), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitedate] = ACTIONS(12373), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteurl] = ACTIONS(12373), + [anon_sym_BSLASHfullcite] = ACTIONS(12373), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12373), + [anon_sym_BSLASHcitealt] = ACTIONS(12373), + [anon_sym_BSLASHcitealp] = ACTIONS(12373), + [anon_sym_BSLASHcitetext] = ACTIONS(12373), + [anon_sym_BSLASHparencite] = ACTIONS(12373), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHParencite] = ACTIONS(12373), + [anon_sym_BSLASHfootcite] = ACTIONS(12373), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12373), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12373), + [anon_sym_BSLASHtextcite] = ACTIONS(12373), + [anon_sym_BSLASHTextcite] = ACTIONS(12373), + [anon_sym_BSLASHsmartcite] = ACTIONS(12373), + [anon_sym_BSLASHSmartcite] = ACTIONS(12373), + [anon_sym_BSLASHsupercite] = ACTIONS(12373), + [anon_sym_BSLASHautocite] = ACTIONS(12373), + [anon_sym_BSLASHAutocite] = ACTIONS(12373), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHvolcite] = ACTIONS(12373), + [anon_sym_BSLASHVolcite] = ACTIONS(12373), + [anon_sym_BSLASHpvolcite] = ACTIONS(12373), + [anon_sym_BSLASHPvolcite] = ACTIONS(12373), + [anon_sym_BSLASHfvolcite] = ACTIONS(12373), + [anon_sym_BSLASHftvolcite] = ACTIONS(12373), + [anon_sym_BSLASHsvolcite] = ACTIONS(12373), + [anon_sym_BSLASHSvolcite] = ACTIONS(12373), + [anon_sym_BSLASHtvolcite] = ACTIONS(12373), + [anon_sym_BSLASHTvolcite] = ACTIONS(12373), + [anon_sym_BSLASHavolcite] = ACTIONS(12373), + [anon_sym_BSLASHAvolcite] = ACTIONS(12373), + [anon_sym_BSLASHnotecite] = ACTIONS(12373), + [anon_sym_BSLASHpnotecite] = ACTIONS(12373), + [anon_sym_BSLASHPnotecite] = ACTIONS(12373), + [anon_sym_BSLASHfnotecite] = ACTIONS(12373), + [anon_sym_BSLASHusepackage] = ACTIONS(12373), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12373), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12373), + [anon_sym_BSLASHinclude] = ACTIONS(12373), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12373), + [anon_sym_BSLASHinput] = ACTIONS(12373), + [anon_sym_BSLASHsubfile] = ACTIONS(12373), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12373), + [anon_sym_BSLASHbibliography] = ACTIONS(12373), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12373), + [anon_sym_BSLASHincludesvg] = ACTIONS(12373), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12373), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12373), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12373), + [anon_sym_BSLASHimport] = ACTIONS(12373), + [anon_sym_BSLASHsubimport] = ACTIONS(12373), + [anon_sym_BSLASHinputfrom] = ACTIONS(12373), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12373), + [anon_sym_BSLASHincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHlabel] = ACTIONS(12373), + [anon_sym_BSLASHref] = ACTIONS(12373), + [anon_sym_BSLASHvref] = ACTIONS(12373), + [anon_sym_BSLASHVref] = ACTIONS(12373), + [anon_sym_BSLASHautoref] = ACTIONS(12373), + [anon_sym_BSLASHpageref] = ACTIONS(12373), + [anon_sym_BSLASHcref] = ACTIONS(12373), + [anon_sym_BSLASHCref] = ACTIONS(12373), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnameCref] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHlabelcref] = ACTIONS(12373), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12373), + [anon_sym_BSLASHeqref] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange] = ACTIONS(12373), + [anon_sym_BSLASHCrefrange] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewlabel] = ACTIONS(12373), + [anon_sym_BSLASHnewcommand] = ACTIONS(12373), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12373), + [anon_sym_BSLASHgls] = ACTIONS(12373), + [anon_sym_BSLASHGls] = ACTIONS(12373), + [anon_sym_BSLASHGLS] = ACTIONS(12373), + [anon_sym_BSLASHglspl] = ACTIONS(12373), + [anon_sym_BSLASHGlspl] = ACTIONS(12373), + [anon_sym_BSLASHGLSpl] = ACTIONS(12373), + [anon_sym_BSLASHglsdisp] = ACTIONS(12373), + [anon_sym_BSLASHglslink] = ACTIONS(12373), + [anon_sym_BSLASHglstext] = ACTIONS(12373), + [anon_sym_BSLASHGlstext] = ACTIONS(12373), + [anon_sym_BSLASHGLStext] = ACTIONS(12373), + [anon_sym_BSLASHglsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12373), + [anon_sym_BSLASHglsplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSplural] = ACTIONS(12373), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHglsname] = ACTIONS(12373), + [anon_sym_BSLASHGlsname] = ACTIONS(12373), + [anon_sym_BSLASHGLSname] = ACTIONS(12373), + [anon_sym_BSLASHglssymbol] = ACTIONS(12373), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12373), + [anon_sym_BSLASHglsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12373), + [anon_sym_BSLASHglsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12373), + [anon_sym_BSLASHglsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12373), + [anon_sym_BSLASHglsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12373), + [anon_sym_BSLASHglsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12373), + [anon_sym_BSLASHnewacronym] = ACTIONS(12373), + [anon_sym_BSLASHacrshort] = ACTIONS(12373), + [anon_sym_BSLASHAcrshort] = ACTIONS(12373), + [anon_sym_BSLASHACRshort] = ACTIONS(12373), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12373), + [anon_sym_BSLASHacrlong] = ACTIONS(12373), + [anon_sym_BSLASHAcrlong] = ACTIONS(12373), + [anon_sym_BSLASHACRlong] = ACTIONS(12373), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12373), + [anon_sym_BSLASHacrfull] = ACTIONS(12373), + [anon_sym_BSLASHAcrfull] = ACTIONS(12373), + [anon_sym_BSLASHACRfull] = ACTIONS(12373), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12373), + [anon_sym_BSLASHacs] = ACTIONS(12373), + [anon_sym_BSLASHAcs] = ACTIONS(12373), + [anon_sym_BSLASHacsp] = ACTIONS(12373), + [anon_sym_BSLASHAcsp] = ACTIONS(12373), + [anon_sym_BSLASHacl] = ACTIONS(12373), + [anon_sym_BSLASHAcl] = ACTIONS(12373), + [anon_sym_BSLASHaclp] = ACTIONS(12373), + [anon_sym_BSLASHAclp] = ACTIONS(12373), + [anon_sym_BSLASHacf] = ACTIONS(12373), + [anon_sym_BSLASHAcf] = ACTIONS(12373), + [anon_sym_BSLASHacfp] = ACTIONS(12373), + [anon_sym_BSLASHAcfp] = ACTIONS(12373), + [anon_sym_BSLASHac] = ACTIONS(12373), + [anon_sym_BSLASHAc] = ACTIONS(12373), + [anon_sym_BSLASHacp] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12373), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12373), + [anon_sym_BSLASHcolor] = ACTIONS(12373), + [anon_sym_BSLASHcolorbox] = ACTIONS(12373), + [anon_sym_BSLASHtextcolor] = ACTIONS(12373), + [anon_sym_BSLASHpagecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12373), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12373), + }, + [845] = { + [sym_generic_command_name] = ACTIONS(12369), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12369), + [aux_sym_chapter_token1] = ACTIONS(12369), + [aux_sym_section_token1] = ACTIONS(12369), + [aux_sym_subsection_token1] = ACTIONS(12369), + [aux_sym_subsubsection_token1] = ACTIONS(12369), + [aux_sym_paragraph_token1] = ACTIONS(12369), + [aux_sym_subparagraph_token1] = ACTIONS(12369), + [anon_sym_BSLASHitem] = ACTIONS(12369), + [anon_sym_LBRACK] = ACTIONS(12367), + [anon_sym_LBRACE] = ACTIONS(12367), + [anon_sym_LPAREN] = ACTIONS(12367), + [anon_sym_COMMA] = ACTIONS(12367), + [anon_sym_EQ] = ACTIONS(12367), + [sym_word] = ACTIONS(12367), + [sym_param] = ACTIONS(12367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12367), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12367), + [anon_sym_DOLLAR] = ACTIONS(12369), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12367), + [anon_sym_BSLASHbegin] = ACTIONS(12369), + [anon_sym_BSLASHend] = ACTIONS(12369), + [anon_sym_BSLASHcaption] = ACTIONS(12369), + [anon_sym_BSLASHcite] = ACTIONS(12369), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCite] = ACTIONS(12369), + [anon_sym_BSLASHnocite] = ACTIONS(12369), + [anon_sym_BSLASHcitet] = ACTIONS(12369), + [anon_sym_BSLASHcitep] = ACTIONS(12369), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteauthor] = ACTIONS(12369), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12369), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitetitle] = ACTIONS(12369), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteyear] = ACTIONS(12369), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitedate] = ACTIONS(12369), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteurl] = ACTIONS(12369), + [anon_sym_BSLASHfullcite] = ACTIONS(12369), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12369), + [anon_sym_BSLASHcitealt] = ACTIONS(12369), + [anon_sym_BSLASHcitealp] = ACTIONS(12369), + [anon_sym_BSLASHcitetext] = ACTIONS(12369), + [anon_sym_BSLASHparencite] = ACTIONS(12369), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHParencite] = ACTIONS(12369), + [anon_sym_BSLASHfootcite] = ACTIONS(12369), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12369), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12369), + [anon_sym_BSLASHtextcite] = ACTIONS(12369), + [anon_sym_BSLASHTextcite] = ACTIONS(12369), + [anon_sym_BSLASHsmartcite] = ACTIONS(12369), + [anon_sym_BSLASHSmartcite] = ACTIONS(12369), + [anon_sym_BSLASHsupercite] = ACTIONS(12369), + [anon_sym_BSLASHautocite] = ACTIONS(12369), + [anon_sym_BSLASHAutocite] = ACTIONS(12369), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHvolcite] = ACTIONS(12369), + [anon_sym_BSLASHVolcite] = ACTIONS(12369), + [anon_sym_BSLASHpvolcite] = ACTIONS(12369), + [anon_sym_BSLASHPvolcite] = ACTIONS(12369), + [anon_sym_BSLASHfvolcite] = ACTIONS(12369), + [anon_sym_BSLASHftvolcite] = ACTIONS(12369), + [anon_sym_BSLASHsvolcite] = ACTIONS(12369), + [anon_sym_BSLASHSvolcite] = ACTIONS(12369), + [anon_sym_BSLASHtvolcite] = ACTIONS(12369), + [anon_sym_BSLASHTvolcite] = ACTIONS(12369), + [anon_sym_BSLASHavolcite] = ACTIONS(12369), + [anon_sym_BSLASHAvolcite] = ACTIONS(12369), + [anon_sym_BSLASHnotecite] = ACTIONS(12369), + [anon_sym_BSLASHpnotecite] = ACTIONS(12369), + [anon_sym_BSLASHPnotecite] = ACTIONS(12369), + [anon_sym_BSLASHfnotecite] = ACTIONS(12369), + [anon_sym_BSLASHusepackage] = ACTIONS(12369), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12369), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12369), + [anon_sym_BSLASHinclude] = ACTIONS(12369), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12369), + [anon_sym_BSLASHinput] = ACTIONS(12369), + [anon_sym_BSLASHsubfile] = ACTIONS(12369), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12369), + [anon_sym_BSLASHbibliography] = ACTIONS(12369), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12369), + [anon_sym_BSLASHincludesvg] = ACTIONS(12369), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12369), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12369), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12369), + [anon_sym_BSLASHimport] = ACTIONS(12369), + [anon_sym_BSLASHsubimport] = ACTIONS(12369), + [anon_sym_BSLASHinputfrom] = ACTIONS(12369), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12369), + [anon_sym_BSLASHincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHlabel] = ACTIONS(12369), + [anon_sym_BSLASHref] = ACTIONS(12369), + [anon_sym_BSLASHvref] = ACTIONS(12369), + [anon_sym_BSLASHVref] = ACTIONS(12369), + [anon_sym_BSLASHautoref] = ACTIONS(12369), + [anon_sym_BSLASHpageref] = ACTIONS(12369), + [anon_sym_BSLASHcref] = ACTIONS(12369), + [anon_sym_BSLASHCref] = ACTIONS(12369), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnameCref] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHlabelcref] = ACTIONS(12369), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12369), + [anon_sym_BSLASHeqref] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange] = ACTIONS(12369), + [anon_sym_BSLASHCrefrange] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewlabel] = ACTIONS(12369), + [anon_sym_BSLASHnewcommand] = ACTIONS(12369), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12369), + [anon_sym_BSLASHgls] = ACTIONS(12369), + [anon_sym_BSLASHGls] = ACTIONS(12369), + [anon_sym_BSLASHGLS] = ACTIONS(12369), + [anon_sym_BSLASHglspl] = ACTIONS(12369), + [anon_sym_BSLASHGlspl] = ACTIONS(12369), + [anon_sym_BSLASHGLSpl] = ACTIONS(12369), + [anon_sym_BSLASHglsdisp] = ACTIONS(12369), + [anon_sym_BSLASHglslink] = ACTIONS(12369), + [anon_sym_BSLASHglstext] = ACTIONS(12369), + [anon_sym_BSLASHGlstext] = ACTIONS(12369), + [anon_sym_BSLASHGLStext] = ACTIONS(12369), + [anon_sym_BSLASHglsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12369), + [anon_sym_BSLASHglsplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSplural] = ACTIONS(12369), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHglsname] = ACTIONS(12369), + [anon_sym_BSLASHGlsname] = ACTIONS(12369), + [anon_sym_BSLASHGLSname] = ACTIONS(12369), + [anon_sym_BSLASHglssymbol] = ACTIONS(12369), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12369), + [anon_sym_BSLASHglsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12369), + [anon_sym_BSLASHglsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12369), + [anon_sym_BSLASHglsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12369), + [anon_sym_BSLASHglsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12369), + [anon_sym_BSLASHglsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12369), + [anon_sym_BSLASHnewacronym] = ACTIONS(12369), + [anon_sym_BSLASHacrshort] = ACTIONS(12369), + [anon_sym_BSLASHAcrshort] = ACTIONS(12369), + [anon_sym_BSLASHACRshort] = ACTIONS(12369), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12369), + [anon_sym_BSLASHacrlong] = ACTIONS(12369), + [anon_sym_BSLASHAcrlong] = ACTIONS(12369), + [anon_sym_BSLASHACRlong] = ACTIONS(12369), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12369), + [anon_sym_BSLASHacrfull] = ACTIONS(12369), + [anon_sym_BSLASHAcrfull] = ACTIONS(12369), + [anon_sym_BSLASHACRfull] = ACTIONS(12369), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12369), + [anon_sym_BSLASHacs] = ACTIONS(12369), + [anon_sym_BSLASHAcs] = ACTIONS(12369), + [anon_sym_BSLASHacsp] = ACTIONS(12369), + [anon_sym_BSLASHAcsp] = ACTIONS(12369), + [anon_sym_BSLASHacl] = ACTIONS(12369), + [anon_sym_BSLASHAcl] = ACTIONS(12369), + [anon_sym_BSLASHaclp] = ACTIONS(12369), + [anon_sym_BSLASHAclp] = ACTIONS(12369), + [anon_sym_BSLASHacf] = ACTIONS(12369), + [anon_sym_BSLASHAcf] = ACTIONS(12369), + [anon_sym_BSLASHacfp] = ACTIONS(12369), + [anon_sym_BSLASHAcfp] = ACTIONS(12369), + [anon_sym_BSLASHac] = ACTIONS(12369), + [anon_sym_BSLASHAc] = ACTIONS(12369), + [anon_sym_BSLASHacp] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12369), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12369), + [anon_sym_BSLASHcolor] = ACTIONS(12369), + [anon_sym_BSLASHcolorbox] = ACTIONS(12369), + [anon_sym_BSLASHtextcolor] = ACTIONS(12369), + [anon_sym_BSLASHpagecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12369), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12369), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12369), + }, + [846] = { + [sym_generic_command_name] = ACTIONS(12361), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12361), + [aux_sym_chapter_token1] = ACTIONS(12361), + [aux_sym_section_token1] = ACTIONS(12361), + [aux_sym_subsection_token1] = ACTIONS(12361), + [aux_sym_subsubsection_token1] = ACTIONS(12361), + [aux_sym_paragraph_token1] = ACTIONS(12361), + [aux_sym_subparagraph_token1] = ACTIONS(12361), + [anon_sym_BSLASHitem] = ACTIONS(12361), + [anon_sym_LBRACK] = ACTIONS(12359), + [anon_sym_LBRACE] = ACTIONS(12359), + [anon_sym_LPAREN] = ACTIONS(12359), + [anon_sym_COMMA] = ACTIONS(12359), + [anon_sym_EQ] = ACTIONS(12359), + [sym_word] = ACTIONS(12359), + [sym_param] = ACTIONS(12359), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12359), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12359), + [anon_sym_DOLLAR] = ACTIONS(12361), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12359), + [anon_sym_BSLASHbegin] = ACTIONS(12361), + [anon_sym_BSLASHend] = ACTIONS(12361), + [anon_sym_BSLASHcaption] = ACTIONS(12361), + [anon_sym_BSLASHcite] = ACTIONS(12361), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCite] = ACTIONS(12361), + [anon_sym_BSLASHnocite] = ACTIONS(12361), + [anon_sym_BSLASHcitet] = ACTIONS(12361), + [anon_sym_BSLASHcitep] = ACTIONS(12361), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteauthor] = ACTIONS(12361), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12361), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitetitle] = ACTIONS(12361), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteyear] = ACTIONS(12361), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitedate] = ACTIONS(12361), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteurl] = ACTIONS(12361), + [anon_sym_BSLASHfullcite] = ACTIONS(12361), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12361), + [anon_sym_BSLASHcitealt] = ACTIONS(12361), + [anon_sym_BSLASHcitealp] = ACTIONS(12361), + [anon_sym_BSLASHcitetext] = ACTIONS(12361), + [anon_sym_BSLASHparencite] = ACTIONS(12361), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHParencite] = ACTIONS(12361), + [anon_sym_BSLASHfootcite] = ACTIONS(12361), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12361), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12361), + [anon_sym_BSLASHtextcite] = ACTIONS(12361), + [anon_sym_BSLASHTextcite] = ACTIONS(12361), + [anon_sym_BSLASHsmartcite] = ACTIONS(12361), + [anon_sym_BSLASHSmartcite] = ACTIONS(12361), + [anon_sym_BSLASHsupercite] = ACTIONS(12361), + [anon_sym_BSLASHautocite] = ACTIONS(12361), + [anon_sym_BSLASHAutocite] = ACTIONS(12361), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHvolcite] = ACTIONS(12361), + [anon_sym_BSLASHVolcite] = ACTIONS(12361), + [anon_sym_BSLASHpvolcite] = ACTIONS(12361), + [anon_sym_BSLASHPvolcite] = ACTIONS(12361), + [anon_sym_BSLASHfvolcite] = ACTIONS(12361), + [anon_sym_BSLASHftvolcite] = ACTIONS(12361), + [anon_sym_BSLASHsvolcite] = ACTIONS(12361), + [anon_sym_BSLASHSvolcite] = ACTIONS(12361), + [anon_sym_BSLASHtvolcite] = ACTIONS(12361), + [anon_sym_BSLASHTvolcite] = ACTIONS(12361), + [anon_sym_BSLASHavolcite] = ACTIONS(12361), + [anon_sym_BSLASHAvolcite] = ACTIONS(12361), + [anon_sym_BSLASHnotecite] = ACTIONS(12361), + [anon_sym_BSLASHpnotecite] = ACTIONS(12361), + [anon_sym_BSLASHPnotecite] = ACTIONS(12361), + [anon_sym_BSLASHfnotecite] = ACTIONS(12361), + [anon_sym_BSLASHusepackage] = ACTIONS(12361), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12361), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12361), + [anon_sym_BSLASHinclude] = ACTIONS(12361), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12361), + [anon_sym_BSLASHinput] = ACTIONS(12361), + [anon_sym_BSLASHsubfile] = ACTIONS(12361), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12361), + [anon_sym_BSLASHbibliography] = ACTIONS(12361), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12361), + [anon_sym_BSLASHincludesvg] = ACTIONS(12361), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12361), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12361), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12361), + [anon_sym_BSLASHimport] = ACTIONS(12361), + [anon_sym_BSLASHsubimport] = ACTIONS(12361), + [anon_sym_BSLASHinputfrom] = ACTIONS(12361), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12361), + [anon_sym_BSLASHincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHlabel] = ACTIONS(12361), + [anon_sym_BSLASHref] = ACTIONS(12361), + [anon_sym_BSLASHvref] = ACTIONS(12361), + [anon_sym_BSLASHVref] = ACTIONS(12361), + [anon_sym_BSLASHautoref] = ACTIONS(12361), + [anon_sym_BSLASHpageref] = ACTIONS(12361), + [anon_sym_BSLASHcref] = ACTIONS(12361), + [anon_sym_BSLASHCref] = ACTIONS(12361), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnameCref] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHlabelcref] = ACTIONS(12361), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12361), + [anon_sym_BSLASHeqref] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange] = ACTIONS(12361), + [anon_sym_BSLASHCrefrange] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewlabel] = ACTIONS(12361), + [anon_sym_BSLASHnewcommand] = ACTIONS(12361), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12361), + [anon_sym_BSLASHgls] = ACTIONS(12361), + [anon_sym_BSLASHGls] = ACTIONS(12361), + [anon_sym_BSLASHGLS] = ACTIONS(12361), + [anon_sym_BSLASHglspl] = ACTIONS(12361), + [anon_sym_BSLASHGlspl] = ACTIONS(12361), + [anon_sym_BSLASHGLSpl] = ACTIONS(12361), + [anon_sym_BSLASHglsdisp] = ACTIONS(12361), + [anon_sym_BSLASHglslink] = ACTIONS(12361), + [anon_sym_BSLASHglstext] = ACTIONS(12361), + [anon_sym_BSLASHGlstext] = ACTIONS(12361), + [anon_sym_BSLASHGLStext] = ACTIONS(12361), + [anon_sym_BSLASHglsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12361), + [anon_sym_BSLASHglsplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSplural] = ACTIONS(12361), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHglsname] = ACTIONS(12361), + [anon_sym_BSLASHGlsname] = ACTIONS(12361), + [anon_sym_BSLASHGLSname] = ACTIONS(12361), + [anon_sym_BSLASHglssymbol] = ACTIONS(12361), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12361), + [anon_sym_BSLASHglsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12361), + [anon_sym_BSLASHglsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12361), + [anon_sym_BSLASHglsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12361), + [anon_sym_BSLASHglsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12361), + [anon_sym_BSLASHglsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12361), + [anon_sym_BSLASHnewacronym] = ACTIONS(12361), + [anon_sym_BSLASHacrshort] = ACTIONS(12361), + [anon_sym_BSLASHAcrshort] = ACTIONS(12361), + [anon_sym_BSLASHACRshort] = ACTIONS(12361), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12361), + [anon_sym_BSLASHacrlong] = ACTIONS(12361), + [anon_sym_BSLASHAcrlong] = ACTIONS(12361), + [anon_sym_BSLASHACRlong] = ACTIONS(12361), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12361), + [anon_sym_BSLASHacrfull] = ACTIONS(12361), + [anon_sym_BSLASHAcrfull] = ACTIONS(12361), + [anon_sym_BSLASHACRfull] = ACTIONS(12361), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12361), + [anon_sym_BSLASHacs] = ACTIONS(12361), + [anon_sym_BSLASHAcs] = ACTIONS(12361), + [anon_sym_BSLASHacsp] = ACTIONS(12361), + [anon_sym_BSLASHAcsp] = ACTIONS(12361), + [anon_sym_BSLASHacl] = ACTIONS(12361), + [anon_sym_BSLASHAcl] = ACTIONS(12361), + [anon_sym_BSLASHaclp] = ACTIONS(12361), + [anon_sym_BSLASHAclp] = ACTIONS(12361), + [anon_sym_BSLASHacf] = ACTIONS(12361), + [anon_sym_BSLASHAcf] = ACTIONS(12361), + [anon_sym_BSLASHacfp] = ACTIONS(12361), + [anon_sym_BSLASHAcfp] = ACTIONS(12361), + [anon_sym_BSLASHac] = ACTIONS(12361), + [anon_sym_BSLASHAc] = ACTIONS(12361), + [anon_sym_BSLASHacp] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12361), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12361), + [anon_sym_BSLASHcolor] = ACTIONS(12361), + [anon_sym_BSLASHcolorbox] = ACTIONS(12361), + [anon_sym_BSLASHtextcolor] = ACTIONS(12361), + [anon_sym_BSLASHpagecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12361), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12361), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12361), + }, + [847] = { + [sym_generic_command_name] = ACTIONS(12357), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12357), + [aux_sym_chapter_token1] = ACTIONS(12357), + [aux_sym_section_token1] = ACTIONS(12357), + [aux_sym_subsection_token1] = ACTIONS(12357), + [aux_sym_subsubsection_token1] = ACTIONS(12357), + [aux_sym_paragraph_token1] = ACTIONS(12357), + [aux_sym_subparagraph_token1] = ACTIONS(12357), + [anon_sym_BSLASHitem] = ACTIONS(12357), + [anon_sym_LBRACK] = ACTIONS(12355), + [anon_sym_LBRACE] = ACTIONS(12355), + [anon_sym_LPAREN] = ACTIONS(12355), + [anon_sym_COMMA] = ACTIONS(12355), + [anon_sym_EQ] = ACTIONS(12355), + [sym_word] = ACTIONS(12355), + [sym_param] = ACTIONS(12355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12355), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12355), + [anon_sym_DOLLAR] = ACTIONS(12357), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12355), + [anon_sym_BSLASHbegin] = ACTIONS(12357), + [anon_sym_BSLASHend] = ACTIONS(12357), + [anon_sym_BSLASHcaption] = ACTIONS(12357), + [anon_sym_BSLASHcite] = ACTIONS(12357), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCite] = ACTIONS(12357), + [anon_sym_BSLASHnocite] = ACTIONS(12357), + [anon_sym_BSLASHcitet] = ACTIONS(12357), + [anon_sym_BSLASHcitep] = ACTIONS(12357), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteauthor] = ACTIONS(12357), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12357), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitetitle] = ACTIONS(12357), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteyear] = ACTIONS(12357), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitedate] = ACTIONS(12357), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteurl] = ACTIONS(12357), + [anon_sym_BSLASHfullcite] = ACTIONS(12357), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12357), + [anon_sym_BSLASHcitealt] = ACTIONS(12357), + [anon_sym_BSLASHcitealp] = ACTIONS(12357), + [anon_sym_BSLASHcitetext] = ACTIONS(12357), + [anon_sym_BSLASHparencite] = ACTIONS(12357), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHParencite] = ACTIONS(12357), + [anon_sym_BSLASHfootcite] = ACTIONS(12357), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12357), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12357), + [anon_sym_BSLASHtextcite] = ACTIONS(12357), + [anon_sym_BSLASHTextcite] = ACTIONS(12357), + [anon_sym_BSLASHsmartcite] = ACTIONS(12357), + [anon_sym_BSLASHSmartcite] = ACTIONS(12357), + [anon_sym_BSLASHsupercite] = ACTIONS(12357), + [anon_sym_BSLASHautocite] = ACTIONS(12357), + [anon_sym_BSLASHAutocite] = ACTIONS(12357), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHvolcite] = ACTIONS(12357), + [anon_sym_BSLASHVolcite] = ACTIONS(12357), + [anon_sym_BSLASHpvolcite] = ACTIONS(12357), + [anon_sym_BSLASHPvolcite] = ACTIONS(12357), + [anon_sym_BSLASHfvolcite] = ACTIONS(12357), + [anon_sym_BSLASHftvolcite] = ACTIONS(12357), + [anon_sym_BSLASHsvolcite] = ACTIONS(12357), + [anon_sym_BSLASHSvolcite] = ACTIONS(12357), + [anon_sym_BSLASHtvolcite] = ACTIONS(12357), + [anon_sym_BSLASHTvolcite] = ACTIONS(12357), + [anon_sym_BSLASHavolcite] = ACTIONS(12357), + [anon_sym_BSLASHAvolcite] = ACTIONS(12357), + [anon_sym_BSLASHnotecite] = ACTIONS(12357), + [anon_sym_BSLASHpnotecite] = ACTIONS(12357), + [anon_sym_BSLASHPnotecite] = ACTIONS(12357), + [anon_sym_BSLASHfnotecite] = ACTIONS(12357), + [anon_sym_BSLASHusepackage] = ACTIONS(12357), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12357), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12357), + [anon_sym_BSLASHinclude] = ACTIONS(12357), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12357), + [anon_sym_BSLASHinput] = ACTIONS(12357), + [anon_sym_BSLASHsubfile] = ACTIONS(12357), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12357), + [anon_sym_BSLASHbibliography] = ACTIONS(12357), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12357), + [anon_sym_BSLASHincludesvg] = ACTIONS(12357), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12357), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12357), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12357), + [anon_sym_BSLASHimport] = ACTIONS(12357), + [anon_sym_BSLASHsubimport] = ACTIONS(12357), + [anon_sym_BSLASHinputfrom] = ACTIONS(12357), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12357), + [anon_sym_BSLASHincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHlabel] = ACTIONS(12357), + [anon_sym_BSLASHref] = ACTIONS(12357), + [anon_sym_BSLASHvref] = ACTIONS(12357), + [anon_sym_BSLASHVref] = ACTIONS(12357), + [anon_sym_BSLASHautoref] = ACTIONS(12357), + [anon_sym_BSLASHpageref] = ACTIONS(12357), + [anon_sym_BSLASHcref] = ACTIONS(12357), + [anon_sym_BSLASHCref] = ACTIONS(12357), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnameCref] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHlabelcref] = ACTIONS(12357), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12357), + [anon_sym_BSLASHeqref] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange] = ACTIONS(12357), + [anon_sym_BSLASHCrefrange] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewlabel] = ACTIONS(12357), + [anon_sym_BSLASHnewcommand] = ACTIONS(12357), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12357), + [anon_sym_BSLASHgls] = ACTIONS(12357), + [anon_sym_BSLASHGls] = ACTIONS(12357), + [anon_sym_BSLASHGLS] = ACTIONS(12357), + [anon_sym_BSLASHglspl] = ACTIONS(12357), + [anon_sym_BSLASHGlspl] = ACTIONS(12357), + [anon_sym_BSLASHGLSpl] = ACTIONS(12357), + [anon_sym_BSLASHglsdisp] = ACTIONS(12357), + [anon_sym_BSLASHglslink] = ACTIONS(12357), + [anon_sym_BSLASHglstext] = ACTIONS(12357), + [anon_sym_BSLASHGlstext] = ACTIONS(12357), + [anon_sym_BSLASHGLStext] = ACTIONS(12357), + [anon_sym_BSLASHglsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12357), + [anon_sym_BSLASHglsplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSplural] = ACTIONS(12357), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHglsname] = ACTIONS(12357), + [anon_sym_BSLASHGlsname] = ACTIONS(12357), + [anon_sym_BSLASHGLSname] = ACTIONS(12357), + [anon_sym_BSLASHglssymbol] = ACTIONS(12357), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12357), + [anon_sym_BSLASHglsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12357), + [anon_sym_BSLASHglsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12357), + [anon_sym_BSLASHglsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12357), + [anon_sym_BSLASHglsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12357), + [anon_sym_BSLASHglsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12357), + [anon_sym_BSLASHnewacronym] = ACTIONS(12357), + [anon_sym_BSLASHacrshort] = ACTIONS(12357), + [anon_sym_BSLASHAcrshort] = ACTIONS(12357), + [anon_sym_BSLASHACRshort] = ACTIONS(12357), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12357), + [anon_sym_BSLASHacrlong] = ACTIONS(12357), + [anon_sym_BSLASHAcrlong] = ACTIONS(12357), + [anon_sym_BSLASHACRlong] = ACTIONS(12357), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12357), + [anon_sym_BSLASHacrfull] = ACTIONS(12357), + [anon_sym_BSLASHAcrfull] = ACTIONS(12357), + [anon_sym_BSLASHACRfull] = ACTIONS(12357), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12357), + [anon_sym_BSLASHacs] = ACTIONS(12357), + [anon_sym_BSLASHAcs] = ACTIONS(12357), + [anon_sym_BSLASHacsp] = ACTIONS(12357), + [anon_sym_BSLASHAcsp] = ACTIONS(12357), + [anon_sym_BSLASHacl] = ACTIONS(12357), + [anon_sym_BSLASHAcl] = ACTIONS(12357), + [anon_sym_BSLASHaclp] = ACTIONS(12357), + [anon_sym_BSLASHAclp] = ACTIONS(12357), + [anon_sym_BSLASHacf] = ACTIONS(12357), + [anon_sym_BSLASHAcf] = ACTIONS(12357), + [anon_sym_BSLASHacfp] = ACTIONS(12357), + [anon_sym_BSLASHAcfp] = ACTIONS(12357), + [anon_sym_BSLASHac] = ACTIONS(12357), + [anon_sym_BSLASHAc] = ACTIONS(12357), + [anon_sym_BSLASHacp] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12357), + [anon_sym_BSLASHcolor] = ACTIONS(12357), + [anon_sym_BSLASHcolorbox] = ACTIONS(12357), + [anon_sym_BSLASHtextcolor] = ACTIONS(12357), + [anon_sym_BSLASHpagecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12357), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12357), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12357), + }, + [848] = { + [sym_generic_command_name] = ACTIONS(12353), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12353), + [aux_sym_chapter_token1] = ACTIONS(12353), + [aux_sym_section_token1] = ACTIONS(12353), + [aux_sym_subsection_token1] = ACTIONS(12353), + [aux_sym_subsubsection_token1] = ACTIONS(12353), + [aux_sym_paragraph_token1] = ACTIONS(12353), + [aux_sym_subparagraph_token1] = ACTIONS(12353), + [anon_sym_BSLASHitem] = ACTIONS(12353), + [anon_sym_LBRACK] = ACTIONS(12351), + [anon_sym_LBRACE] = ACTIONS(12351), + [anon_sym_LPAREN] = ACTIONS(12351), + [anon_sym_COMMA] = ACTIONS(12351), + [anon_sym_EQ] = ACTIONS(12351), + [sym_word] = ACTIONS(12351), + [sym_param] = ACTIONS(12351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12351), + [anon_sym_DOLLAR] = ACTIONS(12353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12351), + [anon_sym_BSLASHbegin] = ACTIONS(12353), + [anon_sym_BSLASHend] = ACTIONS(12353), + [anon_sym_BSLASHcaption] = ACTIONS(12353), + [anon_sym_BSLASHcite] = ACTIONS(12353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCite] = ACTIONS(12353), + [anon_sym_BSLASHnocite] = ACTIONS(12353), + [anon_sym_BSLASHcitet] = ACTIONS(12353), + [anon_sym_BSLASHcitep] = ACTIONS(12353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteauthor] = ACTIONS(12353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitetitle] = ACTIONS(12353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteyear] = ACTIONS(12353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitedate] = ACTIONS(12353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteurl] = ACTIONS(12353), + [anon_sym_BSLASHfullcite] = ACTIONS(12353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12353), + [anon_sym_BSLASHcitealt] = ACTIONS(12353), + [anon_sym_BSLASHcitealp] = ACTIONS(12353), + [anon_sym_BSLASHcitetext] = ACTIONS(12353), + [anon_sym_BSLASHparencite] = ACTIONS(12353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHParencite] = ACTIONS(12353), + [anon_sym_BSLASHfootcite] = ACTIONS(12353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12353), + [anon_sym_BSLASHtextcite] = ACTIONS(12353), + [anon_sym_BSLASHTextcite] = ACTIONS(12353), + [anon_sym_BSLASHsmartcite] = ACTIONS(12353), + [anon_sym_BSLASHSmartcite] = ACTIONS(12353), + [anon_sym_BSLASHsupercite] = ACTIONS(12353), + [anon_sym_BSLASHautocite] = ACTIONS(12353), + [anon_sym_BSLASHAutocite] = ACTIONS(12353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHvolcite] = ACTIONS(12353), + [anon_sym_BSLASHVolcite] = ACTIONS(12353), + [anon_sym_BSLASHpvolcite] = ACTIONS(12353), + [anon_sym_BSLASHPvolcite] = ACTIONS(12353), + [anon_sym_BSLASHfvolcite] = ACTIONS(12353), + [anon_sym_BSLASHftvolcite] = ACTIONS(12353), + [anon_sym_BSLASHsvolcite] = ACTIONS(12353), + [anon_sym_BSLASHSvolcite] = ACTIONS(12353), + [anon_sym_BSLASHtvolcite] = ACTIONS(12353), + [anon_sym_BSLASHTvolcite] = ACTIONS(12353), + [anon_sym_BSLASHavolcite] = ACTIONS(12353), + [anon_sym_BSLASHAvolcite] = ACTIONS(12353), + [anon_sym_BSLASHnotecite] = ACTIONS(12353), + [anon_sym_BSLASHpnotecite] = ACTIONS(12353), + [anon_sym_BSLASHPnotecite] = ACTIONS(12353), + [anon_sym_BSLASHfnotecite] = ACTIONS(12353), + [anon_sym_BSLASHusepackage] = ACTIONS(12353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12353), + [anon_sym_BSLASHinclude] = ACTIONS(12353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12353), + [anon_sym_BSLASHinput] = ACTIONS(12353), + [anon_sym_BSLASHsubfile] = ACTIONS(12353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12353), + [anon_sym_BSLASHbibliography] = ACTIONS(12353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12353), + [anon_sym_BSLASHincludesvg] = ACTIONS(12353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12353), + [anon_sym_BSLASHimport] = ACTIONS(12353), + [anon_sym_BSLASHsubimport] = ACTIONS(12353), + [anon_sym_BSLASHinputfrom] = ACTIONS(12353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12353), + [anon_sym_BSLASHincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHlabel] = ACTIONS(12353), + [anon_sym_BSLASHref] = ACTIONS(12353), + [anon_sym_BSLASHvref] = ACTIONS(12353), + [anon_sym_BSLASHVref] = ACTIONS(12353), + [anon_sym_BSLASHautoref] = ACTIONS(12353), + [anon_sym_BSLASHpageref] = ACTIONS(12353), + [anon_sym_BSLASHcref] = ACTIONS(12353), + [anon_sym_BSLASHCref] = ACTIONS(12353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnameCref] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHlabelcref] = ACTIONS(12353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12353), + [anon_sym_BSLASHeqref] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange] = ACTIONS(12353), + [anon_sym_BSLASHCrefrange] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewlabel] = ACTIONS(12353), + [anon_sym_BSLASHnewcommand] = ACTIONS(12353), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12353), + [anon_sym_BSLASHgls] = ACTIONS(12353), + [anon_sym_BSLASHGls] = ACTIONS(12353), + [anon_sym_BSLASHGLS] = ACTIONS(12353), + [anon_sym_BSLASHglspl] = ACTIONS(12353), + [anon_sym_BSLASHGlspl] = ACTIONS(12353), + [anon_sym_BSLASHGLSpl] = ACTIONS(12353), + [anon_sym_BSLASHglsdisp] = ACTIONS(12353), + [anon_sym_BSLASHglslink] = ACTIONS(12353), + [anon_sym_BSLASHglstext] = ACTIONS(12353), + [anon_sym_BSLASHGlstext] = ACTIONS(12353), + [anon_sym_BSLASHGLStext] = ACTIONS(12353), + [anon_sym_BSLASHglsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12353), + [anon_sym_BSLASHglsplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSplural] = ACTIONS(12353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHglsname] = ACTIONS(12353), + [anon_sym_BSLASHGlsname] = ACTIONS(12353), + [anon_sym_BSLASHGLSname] = ACTIONS(12353), + [anon_sym_BSLASHglssymbol] = ACTIONS(12353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12353), + [anon_sym_BSLASHglsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12353), + [anon_sym_BSLASHglsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12353), + [anon_sym_BSLASHglsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12353), + [anon_sym_BSLASHglsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12353), + [anon_sym_BSLASHglsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12353), + [anon_sym_BSLASHnewacronym] = ACTIONS(12353), + [anon_sym_BSLASHacrshort] = ACTIONS(12353), + [anon_sym_BSLASHAcrshort] = ACTIONS(12353), + [anon_sym_BSLASHACRshort] = ACTIONS(12353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12353), + [anon_sym_BSLASHacrlong] = ACTIONS(12353), + [anon_sym_BSLASHAcrlong] = ACTIONS(12353), + [anon_sym_BSLASHACRlong] = ACTIONS(12353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12353), + [anon_sym_BSLASHacrfull] = ACTIONS(12353), + [anon_sym_BSLASHAcrfull] = ACTIONS(12353), + [anon_sym_BSLASHACRfull] = ACTIONS(12353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12353), + [anon_sym_BSLASHacs] = ACTIONS(12353), + [anon_sym_BSLASHAcs] = ACTIONS(12353), + [anon_sym_BSLASHacsp] = ACTIONS(12353), + [anon_sym_BSLASHAcsp] = ACTIONS(12353), + [anon_sym_BSLASHacl] = ACTIONS(12353), + [anon_sym_BSLASHAcl] = ACTIONS(12353), + [anon_sym_BSLASHaclp] = ACTIONS(12353), + [anon_sym_BSLASHAclp] = ACTIONS(12353), + [anon_sym_BSLASHacf] = ACTIONS(12353), + [anon_sym_BSLASHAcf] = ACTIONS(12353), + [anon_sym_BSLASHacfp] = ACTIONS(12353), + [anon_sym_BSLASHAcfp] = ACTIONS(12353), + [anon_sym_BSLASHac] = ACTIONS(12353), + [anon_sym_BSLASHAc] = ACTIONS(12353), + [anon_sym_BSLASHacp] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12353), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12353), + [anon_sym_BSLASHcolor] = ACTIONS(12353), + [anon_sym_BSLASHcolorbox] = ACTIONS(12353), + [anon_sym_BSLASHtextcolor] = ACTIONS(12353), + [anon_sym_BSLASHpagecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12353), + }, + [849] = { + [sym_generic_command_name] = ACTIONS(12341), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12341), + [aux_sym_chapter_token1] = ACTIONS(12341), + [aux_sym_section_token1] = ACTIONS(12341), + [aux_sym_subsection_token1] = ACTIONS(12341), + [aux_sym_subsubsection_token1] = ACTIONS(12341), + [aux_sym_paragraph_token1] = ACTIONS(12341), + [aux_sym_subparagraph_token1] = ACTIONS(12341), + [anon_sym_BSLASHitem] = ACTIONS(12341), + [anon_sym_LBRACK] = ACTIONS(12339), + [anon_sym_LBRACE] = ACTIONS(12339), + [anon_sym_LPAREN] = ACTIONS(12339), + [anon_sym_COMMA] = ACTIONS(12339), + [anon_sym_EQ] = ACTIONS(12339), + [sym_word] = ACTIONS(12339), + [sym_param] = ACTIONS(12339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12339), + [anon_sym_DOLLAR] = ACTIONS(12341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12339), + [anon_sym_BSLASHbegin] = ACTIONS(12341), + [anon_sym_BSLASHend] = ACTIONS(12341), + [anon_sym_BSLASHcaption] = ACTIONS(12341), + [anon_sym_BSLASHcite] = ACTIONS(12341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCite] = ACTIONS(12341), + [anon_sym_BSLASHnocite] = ACTIONS(12341), + [anon_sym_BSLASHcitet] = ACTIONS(12341), + [anon_sym_BSLASHcitep] = ACTIONS(12341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteauthor] = ACTIONS(12341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitetitle] = ACTIONS(12341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteyear] = ACTIONS(12341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitedate] = ACTIONS(12341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteurl] = ACTIONS(12341), + [anon_sym_BSLASHfullcite] = ACTIONS(12341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12341), + [anon_sym_BSLASHcitealt] = ACTIONS(12341), + [anon_sym_BSLASHcitealp] = ACTIONS(12341), + [anon_sym_BSLASHcitetext] = ACTIONS(12341), + [anon_sym_BSLASHparencite] = ACTIONS(12341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHParencite] = ACTIONS(12341), + [anon_sym_BSLASHfootcite] = ACTIONS(12341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12341), + [anon_sym_BSLASHtextcite] = ACTIONS(12341), + [anon_sym_BSLASHTextcite] = ACTIONS(12341), + [anon_sym_BSLASHsmartcite] = ACTIONS(12341), + [anon_sym_BSLASHSmartcite] = ACTIONS(12341), + [anon_sym_BSLASHsupercite] = ACTIONS(12341), + [anon_sym_BSLASHautocite] = ACTIONS(12341), + [anon_sym_BSLASHAutocite] = ACTIONS(12341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHvolcite] = ACTIONS(12341), + [anon_sym_BSLASHVolcite] = ACTIONS(12341), + [anon_sym_BSLASHpvolcite] = ACTIONS(12341), + [anon_sym_BSLASHPvolcite] = ACTIONS(12341), + [anon_sym_BSLASHfvolcite] = ACTIONS(12341), + [anon_sym_BSLASHftvolcite] = ACTIONS(12341), + [anon_sym_BSLASHsvolcite] = ACTIONS(12341), + [anon_sym_BSLASHSvolcite] = ACTIONS(12341), + [anon_sym_BSLASHtvolcite] = ACTIONS(12341), + [anon_sym_BSLASHTvolcite] = ACTIONS(12341), + [anon_sym_BSLASHavolcite] = ACTIONS(12341), + [anon_sym_BSLASHAvolcite] = ACTIONS(12341), + [anon_sym_BSLASHnotecite] = ACTIONS(12341), + [anon_sym_BSLASHpnotecite] = ACTIONS(12341), + [anon_sym_BSLASHPnotecite] = ACTIONS(12341), + [anon_sym_BSLASHfnotecite] = ACTIONS(12341), + [anon_sym_BSLASHusepackage] = ACTIONS(12341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12341), + [anon_sym_BSLASHinclude] = ACTIONS(12341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12341), + [anon_sym_BSLASHinput] = ACTIONS(12341), + [anon_sym_BSLASHsubfile] = ACTIONS(12341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12341), + [anon_sym_BSLASHbibliography] = ACTIONS(12341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12341), + [anon_sym_BSLASHincludesvg] = ACTIONS(12341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12341), + [anon_sym_BSLASHimport] = ACTIONS(12341), + [anon_sym_BSLASHsubimport] = ACTIONS(12341), + [anon_sym_BSLASHinputfrom] = ACTIONS(12341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12341), + [anon_sym_BSLASHincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHlabel] = ACTIONS(12341), + [anon_sym_BSLASHref] = ACTIONS(12341), + [anon_sym_BSLASHvref] = ACTIONS(12341), + [anon_sym_BSLASHVref] = ACTIONS(12341), + [anon_sym_BSLASHautoref] = ACTIONS(12341), + [anon_sym_BSLASHpageref] = ACTIONS(12341), + [anon_sym_BSLASHcref] = ACTIONS(12341), + [anon_sym_BSLASHCref] = ACTIONS(12341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnameCref] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHlabelcref] = ACTIONS(12341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12341), + [anon_sym_BSLASHeqref] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange] = ACTIONS(12341), + [anon_sym_BSLASHCrefrange] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewlabel] = ACTIONS(12341), + [anon_sym_BSLASHnewcommand] = ACTIONS(12341), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12341), + [anon_sym_BSLASHgls] = ACTIONS(12341), + [anon_sym_BSLASHGls] = ACTIONS(12341), + [anon_sym_BSLASHGLS] = ACTIONS(12341), + [anon_sym_BSLASHglspl] = ACTIONS(12341), + [anon_sym_BSLASHGlspl] = ACTIONS(12341), + [anon_sym_BSLASHGLSpl] = ACTIONS(12341), + [anon_sym_BSLASHglsdisp] = ACTIONS(12341), + [anon_sym_BSLASHglslink] = ACTIONS(12341), + [anon_sym_BSLASHglstext] = ACTIONS(12341), + [anon_sym_BSLASHGlstext] = ACTIONS(12341), + [anon_sym_BSLASHGLStext] = ACTIONS(12341), + [anon_sym_BSLASHglsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12341), + [anon_sym_BSLASHglsplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSplural] = ACTIONS(12341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHglsname] = ACTIONS(12341), + [anon_sym_BSLASHGlsname] = ACTIONS(12341), + [anon_sym_BSLASHGLSname] = ACTIONS(12341), + [anon_sym_BSLASHglssymbol] = ACTIONS(12341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12341), + [anon_sym_BSLASHglsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12341), + [anon_sym_BSLASHglsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12341), + [anon_sym_BSLASHglsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12341), + [anon_sym_BSLASHglsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12341), + [anon_sym_BSLASHglsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12341), + [anon_sym_BSLASHnewacronym] = ACTIONS(12341), + [anon_sym_BSLASHacrshort] = ACTIONS(12341), + [anon_sym_BSLASHAcrshort] = ACTIONS(12341), + [anon_sym_BSLASHACRshort] = ACTIONS(12341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12341), + [anon_sym_BSLASHacrlong] = ACTIONS(12341), + [anon_sym_BSLASHAcrlong] = ACTIONS(12341), + [anon_sym_BSLASHACRlong] = ACTIONS(12341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12341), + [anon_sym_BSLASHacrfull] = ACTIONS(12341), + [anon_sym_BSLASHAcrfull] = ACTIONS(12341), + [anon_sym_BSLASHACRfull] = ACTIONS(12341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12341), + [anon_sym_BSLASHacs] = ACTIONS(12341), + [anon_sym_BSLASHAcs] = ACTIONS(12341), + [anon_sym_BSLASHacsp] = ACTIONS(12341), + [anon_sym_BSLASHAcsp] = ACTIONS(12341), + [anon_sym_BSLASHacl] = ACTIONS(12341), + [anon_sym_BSLASHAcl] = ACTIONS(12341), + [anon_sym_BSLASHaclp] = ACTIONS(12341), + [anon_sym_BSLASHAclp] = ACTIONS(12341), + [anon_sym_BSLASHacf] = ACTIONS(12341), + [anon_sym_BSLASHAcf] = ACTIONS(12341), + [anon_sym_BSLASHacfp] = ACTIONS(12341), + [anon_sym_BSLASHAcfp] = ACTIONS(12341), + [anon_sym_BSLASHac] = ACTIONS(12341), + [anon_sym_BSLASHAc] = ACTIONS(12341), + [anon_sym_BSLASHacp] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12341), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12341), + [anon_sym_BSLASHcolor] = ACTIONS(12341), + [anon_sym_BSLASHcolorbox] = ACTIONS(12341), + [anon_sym_BSLASHtextcolor] = ACTIONS(12341), + [anon_sym_BSLASHpagecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12341), + }, + [850] = { + [sym_generic_command_name] = ACTIONS(12335), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12335), + [aux_sym_chapter_token1] = ACTIONS(12335), + [aux_sym_section_token1] = ACTIONS(12335), + [aux_sym_subsection_token1] = ACTIONS(12335), + [aux_sym_subsubsection_token1] = ACTIONS(12335), + [aux_sym_paragraph_token1] = ACTIONS(12335), + [aux_sym_subparagraph_token1] = ACTIONS(12335), + [anon_sym_BSLASHitem] = ACTIONS(12335), + [anon_sym_LBRACK] = ACTIONS(12666), + [anon_sym_LBRACE] = ACTIONS(12333), + [anon_sym_LPAREN] = ACTIONS(12333), + [anon_sym_COMMA] = ACTIONS(12333), + [anon_sym_EQ] = ACTIONS(12333), + [sym_word] = ACTIONS(12333), + [sym_param] = ACTIONS(12333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12333), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12333), + [anon_sym_DOLLAR] = ACTIONS(12335), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12333), + [anon_sym_BSLASHbegin] = ACTIONS(12335), + [anon_sym_BSLASHend] = ACTIONS(12335), + [anon_sym_BSLASHcaption] = ACTIONS(12335), + [anon_sym_BSLASHcite] = ACTIONS(12335), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCite] = ACTIONS(12335), + [anon_sym_BSLASHnocite] = ACTIONS(12335), + [anon_sym_BSLASHcitet] = ACTIONS(12335), + [anon_sym_BSLASHcitep] = ACTIONS(12335), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteauthor] = ACTIONS(12335), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12335), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitetitle] = ACTIONS(12335), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteyear] = ACTIONS(12335), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitedate] = ACTIONS(12335), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteurl] = ACTIONS(12335), + [anon_sym_BSLASHfullcite] = ACTIONS(12335), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12335), + [anon_sym_BSLASHcitealt] = ACTIONS(12335), + [anon_sym_BSLASHcitealp] = ACTIONS(12335), + [anon_sym_BSLASHcitetext] = ACTIONS(12335), + [anon_sym_BSLASHparencite] = ACTIONS(12335), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHParencite] = ACTIONS(12335), + [anon_sym_BSLASHfootcite] = ACTIONS(12335), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12335), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12335), + [anon_sym_BSLASHtextcite] = ACTIONS(12335), + [anon_sym_BSLASHTextcite] = ACTIONS(12335), + [anon_sym_BSLASHsmartcite] = ACTIONS(12335), + [anon_sym_BSLASHSmartcite] = ACTIONS(12335), + [anon_sym_BSLASHsupercite] = ACTIONS(12335), + [anon_sym_BSLASHautocite] = ACTIONS(12335), + [anon_sym_BSLASHAutocite] = ACTIONS(12335), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHvolcite] = ACTIONS(12335), + [anon_sym_BSLASHVolcite] = ACTIONS(12335), + [anon_sym_BSLASHpvolcite] = ACTIONS(12335), + [anon_sym_BSLASHPvolcite] = ACTIONS(12335), + [anon_sym_BSLASHfvolcite] = ACTIONS(12335), + [anon_sym_BSLASHftvolcite] = ACTIONS(12335), + [anon_sym_BSLASHsvolcite] = ACTIONS(12335), + [anon_sym_BSLASHSvolcite] = ACTIONS(12335), + [anon_sym_BSLASHtvolcite] = ACTIONS(12335), + [anon_sym_BSLASHTvolcite] = ACTIONS(12335), + [anon_sym_BSLASHavolcite] = ACTIONS(12335), + [anon_sym_BSLASHAvolcite] = ACTIONS(12335), + [anon_sym_BSLASHnotecite] = ACTIONS(12335), + [anon_sym_BSLASHpnotecite] = ACTIONS(12335), + [anon_sym_BSLASHPnotecite] = ACTIONS(12335), + [anon_sym_BSLASHfnotecite] = ACTIONS(12335), + [anon_sym_BSLASHusepackage] = ACTIONS(12335), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12335), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12335), + [anon_sym_BSLASHinclude] = ACTIONS(12335), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12335), + [anon_sym_BSLASHinput] = ACTIONS(12335), + [anon_sym_BSLASHsubfile] = ACTIONS(12335), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12335), + [anon_sym_BSLASHbibliography] = ACTIONS(12335), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12335), + [anon_sym_BSLASHincludesvg] = ACTIONS(12335), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12335), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12335), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12335), + [anon_sym_BSLASHimport] = ACTIONS(12335), + [anon_sym_BSLASHsubimport] = ACTIONS(12335), + [anon_sym_BSLASHinputfrom] = ACTIONS(12335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12335), + [anon_sym_BSLASHincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHlabel] = ACTIONS(12335), + [anon_sym_BSLASHref] = ACTIONS(12335), + [anon_sym_BSLASHvref] = ACTIONS(12335), + [anon_sym_BSLASHVref] = ACTIONS(12335), + [anon_sym_BSLASHautoref] = ACTIONS(12335), + [anon_sym_BSLASHpageref] = ACTIONS(12335), + [anon_sym_BSLASHcref] = ACTIONS(12335), + [anon_sym_BSLASHCref] = ACTIONS(12335), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnameCref] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHlabelcref] = ACTIONS(12335), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12335), + [anon_sym_BSLASHeqref] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange] = ACTIONS(12335), + [anon_sym_BSLASHCrefrange] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewlabel] = ACTIONS(12335), + [anon_sym_BSLASHnewcommand] = ACTIONS(12335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12335), + [anon_sym_BSLASHgls] = ACTIONS(12335), + [anon_sym_BSLASHGls] = ACTIONS(12335), + [anon_sym_BSLASHGLS] = ACTIONS(12335), + [anon_sym_BSLASHglspl] = ACTIONS(12335), + [anon_sym_BSLASHGlspl] = ACTIONS(12335), + [anon_sym_BSLASHGLSpl] = ACTIONS(12335), + [anon_sym_BSLASHglsdisp] = ACTIONS(12335), + [anon_sym_BSLASHglslink] = ACTIONS(12335), + [anon_sym_BSLASHglstext] = ACTIONS(12335), + [anon_sym_BSLASHGlstext] = ACTIONS(12335), + [anon_sym_BSLASHGLStext] = ACTIONS(12335), + [anon_sym_BSLASHglsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12335), + [anon_sym_BSLASHglsplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSplural] = ACTIONS(12335), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHglsname] = ACTIONS(12335), + [anon_sym_BSLASHGlsname] = ACTIONS(12335), + [anon_sym_BSLASHGLSname] = ACTIONS(12335), + [anon_sym_BSLASHglssymbol] = ACTIONS(12335), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12335), + [anon_sym_BSLASHglsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12335), + [anon_sym_BSLASHglsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12335), + [anon_sym_BSLASHglsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12335), + [anon_sym_BSLASHglsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12335), + [anon_sym_BSLASHglsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12335), + [anon_sym_BSLASHnewacronym] = ACTIONS(12335), + [anon_sym_BSLASHacrshort] = ACTIONS(12335), + [anon_sym_BSLASHAcrshort] = ACTIONS(12335), + [anon_sym_BSLASHACRshort] = ACTIONS(12335), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12335), + [anon_sym_BSLASHacrlong] = ACTIONS(12335), + [anon_sym_BSLASHAcrlong] = ACTIONS(12335), + [anon_sym_BSLASHACRlong] = ACTIONS(12335), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12335), + [anon_sym_BSLASHacrfull] = ACTIONS(12335), + [anon_sym_BSLASHAcrfull] = ACTIONS(12335), + [anon_sym_BSLASHACRfull] = ACTIONS(12335), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12335), + [anon_sym_BSLASHacs] = ACTIONS(12335), + [anon_sym_BSLASHAcs] = ACTIONS(12335), + [anon_sym_BSLASHacsp] = ACTIONS(12335), + [anon_sym_BSLASHAcsp] = ACTIONS(12335), + [anon_sym_BSLASHacl] = ACTIONS(12335), + [anon_sym_BSLASHAcl] = ACTIONS(12335), + [anon_sym_BSLASHaclp] = ACTIONS(12335), + [anon_sym_BSLASHAclp] = ACTIONS(12335), + [anon_sym_BSLASHacf] = ACTIONS(12335), + [anon_sym_BSLASHAcf] = ACTIONS(12335), + [anon_sym_BSLASHacfp] = ACTIONS(12335), + [anon_sym_BSLASHAcfp] = ACTIONS(12335), + [anon_sym_BSLASHac] = ACTIONS(12335), + [anon_sym_BSLASHAc] = ACTIONS(12335), + [anon_sym_BSLASHacp] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12335), + [anon_sym_BSLASHcolor] = ACTIONS(12335), + [anon_sym_BSLASHcolorbox] = ACTIONS(12335), + [anon_sym_BSLASHtextcolor] = ACTIONS(12335), + [anon_sym_BSLASHpagecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12335), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12335), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12335), + }, + [851] = { + [sym_generic_command_name] = ACTIONS(12156), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12156), + [aux_sym_chapter_token1] = ACTIONS(12156), + [aux_sym_section_token1] = ACTIONS(12156), + [aux_sym_subsection_token1] = ACTIONS(12156), + [aux_sym_subsubsection_token1] = ACTIONS(12156), + [aux_sym_paragraph_token1] = ACTIONS(12156), + [aux_sym_subparagraph_token1] = ACTIONS(12156), + [anon_sym_BSLASHitem] = ACTIONS(12156), + [anon_sym_LBRACK] = ACTIONS(12154), + [anon_sym_LBRACE] = ACTIONS(12154), + [anon_sym_LPAREN] = ACTIONS(12154), + [anon_sym_COMMA] = ACTIONS(12154), + [anon_sym_EQ] = ACTIONS(12154), + [sym_word] = ACTIONS(12154), + [sym_param] = ACTIONS(12154), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12154), + [anon_sym_DOLLAR] = ACTIONS(12156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12154), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12154), + [anon_sym_BSLASHbegin] = ACTIONS(12156), + [anon_sym_BSLASHcaption] = ACTIONS(12156), + [anon_sym_BSLASHcite] = ACTIONS(12156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCite] = ACTIONS(12156), + [anon_sym_BSLASHnocite] = ACTIONS(12156), + [anon_sym_BSLASHcitet] = ACTIONS(12156), + [anon_sym_BSLASHcitep] = ACTIONS(12156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteauthor] = ACTIONS(12156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitetitle] = ACTIONS(12156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteyear] = ACTIONS(12156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitedate] = ACTIONS(12156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteurl] = ACTIONS(12156), + [anon_sym_BSLASHfullcite] = ACTIONS(12156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12156), + [anon_sym_BSLASHcitealt] = ACTIONS(12156), + [anon_sym_BSLASHcitealp] = ACTIONS(12156), + [anon_sym_BSLASHcitetext] = ACTIONS(12156), + [anon_sym_BSLASHparencite] = ACTIONS(12156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHParencite] = ACTIONS(12156), + [anon_sym_BSLASHfootcite] = ACTIONS(12156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12156), + [anon_sym_BSLASHtextcite] = ACTIONS(12156), + [anon_sym_BSLASHTextcite] = ACTIONS(12156), + [anon_sym_BSLASHsmartcite] = ACTIONS(12156), + [anon_sym_BSLASHSmartcite] = ACTIONS(12156), + [anon_sym_BSLASHsupercite] = ACTIONS(12156), + [anon_sym_BSLASHautocite] = ACTIONS(12156), + [anon_sym_BSLASHAutocite] = ACTIONS(12156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHvolcite] = ACTIONS(12156), + [anon_sym_BSLASHVolcite] = ACTIONS(12156), + [anon_sym_BSLASHpvolcite] = ACTIONS(12156), + [anon_sym_BSLASHPvolcite] = ACTIONS(12156), + [anon_sym_BSLASHfvolcite] = ACTIONS(12156), + [anon_sym_BSLASHftvolcite] = ACTIONS(12156), + [anon_sym_BSLASHsvolcite] = ACTIONS(12156), + [anon_sym_BSLASHSvolcite] = ACTIONS(12156), + [anon_sym_BSLASHtvolcite] = ACTIONS(12156), + [anon_sym_BSLASHTvolcite] = ACTIONS(12156), + [anon_sym_BSLASHavolcite] = ACTIONS(12156), + [anon_sym_BSLASHAvolcite] = ACTIONS(12156), + [anon_sym_BSLASHnotecite] = ACTIONS(12156), + [anon_sym_BSLASHpnotecite] = ACTIONS(12156), + [anon_sym_BSLASHPnotecite] = ACTIONS(12156), + [anon_sym_BSLASHfnotecite] = ACTIONS(12156), + [anon_sym_BSLASHusepackage] = ACTIONS(12156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12156), + [anon_sym_BSLASHinclude] = ACTIONS(12156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12156), + [anon_sym_BSLASHinput] = ACTIONS(12156), + [anon_sym_BSLASHsubfile] = ACTIONS(12156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12156), + [anon_sym_BSLASHbibliography] = ACTIONS(12156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12156), + [anon_sym_BSLASHincludesvg] = ACTIONS(12156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12156), + [anon_sym_BSLASHimport] = ACTIONS(12156), + [anon_sym_BSLASHsubimport] = ACTIONS(12156), + [anon_sym_BSLASHinputfrom] = ACTIONS(12156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12156), + [anon_sym_BSLASHincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHlabel] = ACTIONS(12156), + [anon_sym_BSLASHref] = ACTIONS(12156), + [anon_sym_BSLASHvref] = ACTIONS(12156), + [anon_sym_BSLASHVref] = ACTIONS(12156), + [anon_sym_BSLASHautoref] = ACTIONS(12156), + [anon_sym_BSLASHpageref] = ACTIONS(12156), + [anon_sym_BSLASHcref] = ACTIONS(12156), + [anon_sym_BSLASHCref] = ACTIONS(12156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnameCref] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHlabelcref] = ACTIONS(12156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12156), + [anon_sym_BSLASHeqref] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange] = ACTIONS(12156), + [anon_sym_BSLASHCrefrange] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewlabel] = ACTIONS(12156), + [anon_sym_BSLASHnewcommand] = ACTIONS(12156), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12156), + [anon_sym_BSLASHgls] = ACTIONS(12156), + [anon_sym_BSLASHGls] = ACTIONS(12156), + [anon_sym_BSLASHGLS] = ACTIONS(12156), + [anon_sym_BSLASHglspl] = ACTIONS(12156), + [anon_sym_BSLASHGlspl] = ACTIONS(12156), + [anon_sym_BSLASHGLSpl] = ACTIONS(12156), + [anon_sym_BSLASHglsdisp] = ACTIONS(12156), + [anon_sym_BSLASHglslink] = ACTIONS(12156), + [anon_sym_BSLASHglstext] = ACTIONS(12156), + [anon_sym_BSLASHGlstext] = ACTIONS(12156), + [anon_sym_BSLASHGLStext] = ACTIONS(12156), + [anon_sym_BSLASHglsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12156), + [anon_sym_BSLASHglsplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSplural] = ACTIONS(12156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHglsname] = ACTIONS(12156), + [anon_sym_BSLASHGlsname] = ACTIONS(12156), + [anon_sym_BSLASHGLSname] = ACTIONS(12156), + [anon_sym_BSLASHglssymbol] = ACTIONS(12156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12156), + [anon_sym_BSLASHglsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12156), + [anon_sym_BSLASHglsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12156), + [anon_sym_BSLASHglsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12156), + [anon_sym_BSLASHglsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12156), + [anon_sym_BSLASHglsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12156), + [anon_sym_BSLASHnewacronym] = ACTIONS(12156), + [anon_sym_BSLASHacrshort] = ACTIONS(12156), + [anon_sym_BSLASHAcrshort] = ACTIONS(12156), + [anon_sym_BSLASHACRshort] = ACTIONS(12156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12156), + [anon_sym_BSLASHacrlong] = ACTIONS(12156), + [anon_sym_BSLASHAcrlong] = ACTIONS(12156), + [anon_sym_BSLASHACRlong] = ACTIONS(12156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12156), + [anon_sym_BSLASHacrfull] = ACTIONS(12156), + [anon_sym_BSLASHAcrfull] = ACTIONS(12156), + [anon_sym_BSLASHACRfull] = ACTIONS(12156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12156), + [anon_sym_BSLASHacs] = ACTIONS(12156), + [anon_sym_BSLASHAcs] = ACTIONS(12156), + [anon_sym_BSLASHacsp] = ACTIONS(12156), + [anon_sym_BSLASHAcsp] = ACTIONS(12156), + [anon_sym_BSLASHacl] = ACTIONS(12156), + [anon_sym_BSLASHAcl] = ACTIONS(12156), + [anon_sym_BSLASHaclp] = ACTIONS(12156), + [anon_sym_BSLASHAclp] = ACTIONS(12156), + [anon_sym_BSLASHacf] = ACTIONS(12156), + [anon_sym_BSLASHAcf] = ACTIONS(12156), + [anon_sym_BSLASHacfp] = ACTIONS(12156), + [anon_sym_BSLASHAcfp] = ACTIONS(12156), + [anon_sym_BSLASHac] = ACTIONS(12156), + [anon_sym_BSLASHAc] = ACTIONS(12156), + [anon_sym_BSLASHacp] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12156), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12156), + [anon_sym_BSLASHcolor] = ACTIONS(12156), + [anon_sym_BSLASHcolorbox] = ACTIONS(12156), + [anon_sym_BSLASHtextcolor] = ACTIONS(12156), + [anon_sym_BSLASHpagecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12156), + }, + [852] = { + [sym_generic_command_name] = ACTIONS(12315), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12315), + [aux_sym_chapter_token1] = ACTIONS(12315), + [aux_sym_section_token1] = ACTIONS(12315), + [aux_sym_subsection_token1] = ACTIONS(12315), + [aux_sym_subsubsection_token1] = ACTIONS(12315), + [aux_sym_paragraph_token1] = ACTIONS(12315), + [aux_sym_subparagraph_token1] = ACTIONS(12315), + [anon_sym_BSLASHitem] = ACTIONS(12315), + [anon_sym_LBRACK] = ACTIONS(12313), + [anon_sym_LBRACE] = ACTIONS(12313), + [anon_sym_LPAREN] = ACTIONS(12313), + [anon_sym_COMMA] = ACTIONS(12313), + [anon_sym_EQ] = ACTIONS(12313), + [sym_word] = ACTIONS(12313), + [sym_param] = ACTIONS(12313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12313), + [anon_sym_DOLLAR] = ACTIONS(12315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12313), + [anon_sym_BSLASHbegin] = ACTIONS(12315), + [anon_sym_BSLASHend] = ACTIONS(12315), + [anon_sym_BSLASHcaption] = ACTIONS(12315), + [anon_sym_BSLASHcite] = ACTIONS(12315), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCite] = ACTIONS(12315), + [anon_sym_BSLASHnocite] = ACTIONS(12315), + [anon_sym_BSLASHcitet] = ACTIONS(12315), + [anon_sym_BSLASHcitep] = ACTIONS(12315), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteauthor] = ACTIONS(12315), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12315), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitetitle] = ACTIONS(12315), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteyear] = ACTIONS(12315), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitedate] = ACTIONS(12315), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteurl] = ACTIONS(12315), + [anon_sym_BSLASHfullcite] = ACTIONS(12315), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12315), + [anon_sym_BSLASHcitealt] = ACTIONS(12315), + [anon_sym_BSLASHcitealp] = ACTIONS(12315), + [anon_sym_BSLASHcitetext] = ACTIONS(12315), + [anon_sym_BSLASHparencite] = ACTIONS(12315), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHParencite] = ACTIONS(12315), + [anon_sym_BSLASHfootcite] = ACTIONS(12315), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12315), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12315), + [anon_sym_BSLASHtextcite] = ACTIONS(12315), + [anon_sym_BSLASHTextcite] = ACTIONS(12315), + [anon_sym_BSLASHsmartcite] = ACTIONS(12315), + [anon_sym_BSLASHSmartcite] = ACTIONS(12315), + [anon_sym_BSLASHsupercite] = ACTIONS(12315), + [anon_sym_BSLASHautocite] = ACTIONS(12315), + [anon_sym_BSLASHAutocite] = ACTIONS(12315), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHvolcite] = ACTIONS(12315), + [anon_sym_BSLASHVolcite] = ACTIONS(12315), + [anon_sym_BSLASHpvolcite] = ACTIONS(12315), + [anon_sym_BSLASHPvolcite] = ACTIONS(12315), + [anon_sym_BSLASHfvolcite] = ACTIONS(12315), + [anon_sym_BSLASHftvolcite] = ACTIONS(12315), + [anon_sym_BSLASHsvolcite] = ACTIONS(12315), + [anon_sym_BSLASHSvolcite] = ACTIONS(12315), + [anon_sym_BSLASHtvolcite] = ACTIONS(12315), + [anon_sym_BSLASHTvolcite] = ACTIONS(12315), + [anon_sym_BSLASHavolcite] = ACTIONS(12315), + [anon_sym_BSLASHAvolcite] = ACTIONS(12315), + [anon_sym_BSLASHnotecite] = ACTIONS(12315), + [anon_sym_BSLASHpnotecite] = ACTIONS(12315), + [anon_sym_BSLASHPnotecite] = ACTIONS(12315), + [anon_sym_BSLASHfnotecite] = ACTIONS(12315), + [anon_sym_BSLASHusepackage] = ACTIONS(12315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12315), + [anon_sym_BSLASHinclude] = ACTIONS(12315), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12315), + [anon_sym_BSLASHinput] = ACTIONS(12315), + [anon_sym_BSLASHsubfile] = ACTIONS(12315), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12315), + [anon_sym_BSLASHbibliography] = ACTIONS(12315), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12315), + [anon_sym_BSLASHincludesvg] = ACTIONS(12315), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12315), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12315), + [anon_sym_BSLASHimport] = ACTIONS(12315), + [anon_sym_BSLASHsubimport] = ACTIONS(12315), + [anon_sym_BSLASHinputfrom] = ACTIONS(12315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12315), + [anon_sym_BSLASHincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHlabel] = ACTIONS(12315), + [anon_sym_BSLASHref] = ACTIONS(12315), + [anon_sym_BSLASHvref] = ACTIONS(12315), + [anon_sym_BSLASHVref] = ACTIONS(12315), + [anon_sym_BSLASHautoref] = ACTIONS(12315), + [anon_sym_BSLASHpageref] = ACTIONS(12315), + [anon_sym_BSLASHcref] = ACTIONS(12315), + [anon_sym_BSLASHCref] = ACTIONS(12315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnameCref] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHlabelcref] = ACTIONS(12315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12315), + [anon_sym_BSLASHeqref] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange] = ACTIONS(12315), + [anon_sym_BSLASHCrefrange] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewlabel] = ACTIONS(12315), + [anon_sym_BSLASHnewcommand] = ACTIONS(12315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12315), + [anon_sym_BSLASHgls] = ACTIONS(12315), + [anon_sym_BSLASHGls] = ACTIONS(12315), + [anon_sym_BSLASHGLS] = ACTIONS(12315), + [anon_sym_BSLASHglspl] = ACTIONS(12315), + [anon_sym_BSLASHGlspl] = ACTIONS(12315), + [anon_sym_BSLASHGLSpl] = ACTIONS(12315), + [anon_sym_BSLASHglsdisp] = ACTIONS(12315), + [anon_sym_BSLASHglslink] = ACTIONS(12315), + [anon_sym_BSLASHglstext] = ACTIONS(12315), + [anon_sym_BSLASHGlstext] = ACTIONS(12315), + [anon_sym_BSLASHGLStext] = ACTIONS(12315), + [anon_sym_BSLASHglsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12315), + [anon_sym_BSLASHglsplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSplural] = ACTIONS(12315), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHglsname] = ACTIONS(12315), + [anon_sym_BSLASHGlsname] = ACTIONS(12315), + [anon_sym_BSLASHGLSname] = ACTIONS(12315), + [anon_sym_BSLASHglssymbol] = ACTIONS(12315), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12315), + [anon_sym_BSLASHglsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12315), + [anon_sym_BSLASHglsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12315), + [anon_sym_BSLASHglsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12315), + [anon_sym_BSLASHglsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12315), + [anon_sym_BSLASHglsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12315), + [anon_sym_BSLASHnewacronym] = ACTIONS(12315), + [anon_sym_BSLASHacrshort] = ACTIONS(12315), + [anon_sym_BSLASHAcrshort] = ACTIONS(12315), + [anon_sym_BSLASHACRshort] = ACTIONS(12315), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12315), + [anon_sym_BSLASHacrlong] = ACTIONS(12315), + [anon_sym_BSLASHAcrlong] = ACTIONS(12315), + [anon_sym_BSLASHACRlong] = ACTIONS(12315), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12315), + [anon_sym_BSLASHacrfull] = ACTIONS(12315), + [anon_sym_BSLASHAcrfull] = ACTIONS(12315), + [anon_sym_BSLASHACRfull] = ACTIONS(12315), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12315), + [anon_sym_BSLASHacs] = ACTIONS(12315), + [anon_sym_BSLASHAcs] = ACTIONS(12315), + [anon_sym_BSLASHacsp] = ACTIONS(12315), + [anon_sym_BSLASHAcsp] = ACTIONS(12315), + [anon_sym_BSLASHacl] = ACTIONS(12315), + [anon_sym_BSLASHAcl] = ACTIONS(12315), + [anon_sym_BSLASHaclp] = ACTIONS(12315), + [anon_sym_BSLASHAclp] = ACTIONS(12315), + [anon_sym_BSLASHacf] = ACTIONS(12315), + [anon_sym_BSLASHAcf] = ACTIONS(12315), + [anon_sym_BSLASHacfp] = ACTIONS(12315), + [anon_sym_BSLASHAcfp] = ACTIONS(12315), + [anon_sym_BSLASHac] = ACTIONS(12315), + [anon_sym_BSLASHAc] = ACTIONS(12315), + [anon_sym_BSLASHacp] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12315), + [anon_sym_BSLASHcolor] = ACTIONS(12315), + [anon_sym_BSLASHcolorbox] = ACTIONS(12315), + [anon_sym_BSLASHtextcolor] = ACTIONS(12315), + [anon_sym_BSLASHpagecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12315), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12315), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12315), + }, + [853] = { + [sym_generic_command_name] = ACTIONS(12307), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12307), + [aux_sym_chapter_token1] = ACTIONS(12307), + [aux_sym_section_token1] = ACTIONS(12307), + [aux_sym_subsection_token1] = ACTIONS(12307), + [aux_sym_subsubsection_token1] = ACTIONS(12307), + [aux_sym_paragraph_token1] = ACTIONS(12307), + [aux_sym_subparagraph_token1] = ACTIONS(12307), + [anon_sym_BSLASHitem] = ACTIONS(12307), + [anon_sym_LBRACK] = ACTIONS(12305), + [anon_sym_LBRACE] = ACTIONS(12305), + [anon_sym_LPAREN] = ACTIONS(12305), + [anon_sym_COMMA] = ACTIONS(12305), + [anon_sym_EQ] = ACTIONS(12305), + [sym_word] = ACTIONS(12305), + [sym_param] = ACTIONS(12305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12305), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12305), + [anon_sym_DOLLAR] = ACTIONS(12307), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12305), + [anon_sym_BSLASHbegin] = ACTIONS(12307), + [anon_sym_BSLASHend] = ACTIONS(12307), + [anon_sym_BSLASHcaption] = ACTIONS(12307), + [anon_sym_BSLASHcite] = ACTIONS(12307), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCite] = ACTIONS(12307), + [anon_sym_BSLASHnocite] = ACTIONS(12307), + [anon_sym_BSLASHcitet] = ACTIONS(12307), + [anon_sym_BSLASHcitep] = ACTIONS(12307), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteauthor] = ACTIONS(12307), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12307), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitetitle] = ACTIONS(12307), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteyear] = ACTIONS(12307), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitedate] = ACTIONS(12307), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteurl] = ACTIONS(12307), + [anon_sym_BSLASHfullcite] = ACTIONS(12307), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12307), + [anon_sym_BSLASHcitealt] = ACTIONS(12307), + [anon_sym_BSLASHcitealp] = ACTIONS(12307), + [anon_sym_BSLASHcitetext] = ACTIONS(12307), + [anon_sym_BSLASHparencite] = ACTIONS(12307), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHParencite] = ACTIONS(12307), + [anon_sym_BSLASHfootcite] = ACTIONS(12307), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12307), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12307), + [anon_sym_BSLASHtextcite] = ACTIONS(12307), + [anon_sym_BSLASHTextcite] = ACTIONS(12307), + [anon_sym_BSLASHsmartcite] = ACTIONS(12307), + [anon_sym_BSLASHSmartcite] = ACTIONS(12307), + [anon_sym_BSLASHsupercite] = ACTIONS(12307), + [anon_sym_BSLASHautocite] = ACTIONS(12307), + [anon_sym_BSLASHAutocite] = ACTIONS(12307), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHvolcite] = ACTIONS(12307), + [anon_sym_BSLASHVolcite] = ACTIONS(12307), + [anon_sym_BSLASHpvolcite] = ACTIONS(12307), + [anon_sym_BSLASHPvolcite] = ACTIONS(12307), + [anon_sym_BSLASHfvolcite] = ACTIONS(12307), + [anon_sym_BSLASHftvolcite] = ACTIONS(12307), + [anon_sym_BSLASHsvolcite] = ACTIONS(12307), + [anon_sym_BSLASHSvolcite] = ACTIONS(12307), + [anon_sym_BSLASHtvolcite] = ACTIONS(12307), + [anon_sym_BSLASHTvolcite] = ACTIONS(12307), + [anon_sym_BSLASHavolcite] = ACTIONS(12307), + [anon_sym_BSLASHAvolcite] = ACTIONS(12307), + [anon_sym_BSLASHnotecite] = ACTIONS(12307), + [anon_sym_BSLASHpnotecite] = ACTIONS(12307), + [anon_sym_BSLASHPnotecite] = ACTIONS(12307), + [anon_sym_BSLASHfnotecite] = ACTIONS(12307), + [anon_sym_BSLASHusepackage] = ACTIONS(12307), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12307), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12307), + [anon_sym_BSLASHinclude] = ACTIONS(12307), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12307), + [anon_sym_BSLASHinput] = ACTIONS(12307), + [anon_sym_BSLASHsubfile] = ACTIONS(12307), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12307), + [anon_sym_BSLASHbibliography] = ACTIONS(12307), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12307), + [anon_sym_BSLASHincludesvg] = ACTIONS(12307), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12307), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12307), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12307), + [anon_sym_BSLASHimport] = ACTIONS(12307), + [anon_sym_BSLASHsubimport] = ACTIONS(12307), + [anon_sym_BSLASHinputfrom] = ACTIONS(12307), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12307), + [anon_sym_BSLASHincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHlabel] = ACTIONS(12307), + [anon_sym_BSLASHref] = ACTIONS(12307), + [anon_sym_BSLASHvref] = ACTIONS(12307), + [anon_sym_BSLASHVref] = ACTIONS(12307), + [anon_sym_BSLASHautoref] = ACTIONS(12307), + [anon_sym_BSLASHpageref] = ACTIONS(12307), + [anon_sym_BSLASHcref] = ACTIONS(12307), + [anon_sym_BSLASHCref] = ACTIONS(12307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnameCref] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHlabelcref] = ACTIONS(12307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12307), + [anon_sym_BSLASHeqref] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange] = ACTIONS(12307), + [anon_sym_BSLASHCrefrange] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewlabel] = ACTIONS(12307), + [anon_sym_BSLASHnewcommand] = ACTIONS(12307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12307), + [anon_sym_BSLASHgls] = ACTIONS(12307), + [anon_sym_BSLASHGls] = ACTIONS(12307), + [anon_sym_BSLASHGLS] = ACTIONS(12307), + [anon_sym_BSLASHglspl] = ACTIONS(12307), + [anon_sym_BSLASHGlspl] = ACTIONS(12307), + [anon_sym_BSLASHGLSpl] = ACTIONS(12307), + [anon_sym_BSLASHglsdisp] = ACTIONS(12307), + [anon_sym_BSLASHglslink] = ACTIONS(12307), + [anon_sym_BSLASHglstext] = ACTIONS(12307), + [anon_sym_BSLASHGlstext] = ACTIONS(12307), + [anon_sym_BSLASHGLStext] = ACTIONS(12307), + [anon_sym_BSLASHglsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12307), + [anon_sym_BSLASHglsplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSplural] = ACTIONS(12307), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHglsname] = ACTIONS(12307), + [anon_sym_BSLASHGlsname] = ACTIONS(12307), + [anon_sym_BSLASHGLSname] = ACTIONS(12307), + [anon_sym_BSLASHglssymbol] = ACTIONS(12307), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12307), + [anon_sym_BSLASHglsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12307), + [anon_sym_BSLASHglsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12307), + [anon_sym_BSLASHglsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12307), + [anon_sym_BSLASHglsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12307), + [anon_sym_BSLASHglsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12307), + [anon_sym_BSLASHnewacronym] = ACTIONS(12307), + [anon_sym_BSLASHacrshort] = ACTIONS(12307), + [anon_sym_BSLASHAcrshort] = ACTIONS(12307), + [anon_sym_BSLASHACRshort] = ACTIONS(12307), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12307), + [anon_sym_BSLASHacrlong] = ACTIONS(12307), + [anon_sym_BSLASHAcrlong] = ACTIONS(12307), + [anon_sym_BSLASHACRlong] = ACTIONS(12307), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12307), + [anon_sym_BSLASHacrfull] = ACTIONS(12307), + [anon_sym_BSLASHAcrfull] = ACTIONS(12307), + [anon_sym_BSLASHACRfull] = ACTIONS(12307), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12307), + [anon_sym_BSLASHacs] = ACTIONS(12307), + [anon_sym_BSLASHAcs] = ACTIONS(12307), + [anon_sym_BSLASHacsp] = ACTIONS(12307), + [anon_sym_BSLASHAcsp] = ACTIONS(12307), + [anon_sym_BSLASHacl] = ACTIONS(12307), + [anon_sym_BSLASHAcl] = ACTIONS(12307), + [anon_sym_BSLASHaclp] = ACTIONS(12307), + [anon_sym_BSLASHAclp] = ACTIONS(12307), + [anon_sym_BSLASHacf] = ACTIONS(12307), + [anon_sym_BSLASHAcf] = ACTIONS(12307), + [anon_sym_BSLASHacfp] = ACTIONS(12307), + [anon_sym_BSLASHAcfp] = ACTIONS(12307), + [anon_sym_BSLASHac] = ACTIONS(12307), + [anon_sym_BSLASHAc] = ACTIONS(12307), + [anon_sym_BSLASHacp] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12307), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12307), + [anon_sym_BSLASHcolor] = ACTIONS(12307), + [anon_sym_BSLASHcolorbox] = ACTIONS(12307), + [anon_sym_BSLASHtextcolor] = ACTIONS(12307), + [anon_sym_BSLASHpagecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12307), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12307), + }, + [854] = { + [sym_generic_command_name] = ACTIONS(12303), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12303), + [aux_sym_chapter_token1] = ACTIONS(12303), + [aux_sym_section_token1] = ACTIONS(12303), + [aux_sym_subsection_token1] = ACTIONS(12303), + [aux_sym_subsubsection_token1] = ACTIONS(12303), + [aux_sym_paragraph_token1] = ACTIONS(12303), + [aux_sym_subparagraph_token1] = ACTIONS(12303), + [anon_sym_BSLASHitem] = ACTIONS(12303), + [anon_sym_LBRACK] = ACTIONS(12301), + [anon_sym_LBRACE] = ACTIONS(12301), + [anon_sym_LPAREN] = ACTIONS(12301), + [anon_sym_COMMA] = ACTIONS(12301), + [anon_sym_EQ] = ACTIONS(12301), + [sym_word] = ACTIONS(12301), + [sym_param] = ACTIONS(12301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12301), + [anon_sym_DOLLAR] = ACTIONS(12303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12301), + [anon_sym_BSLASHbegin] = ACTIONS(12303), + [anon_sym_BSLASHend] = ACTIONS(12303), + [anon_sym_BSLASHcaption] = ACTIONS(12303), + [anon_sym_BSLASHcite] = ACTIONS(12303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCite] = ACTIONS(12303), + [anon_sym_BSLASHnocite] = ACTIONS(12303), + [anon_sym_BSLASHcitet] = ACTIONS(12303), + [anon_sym_BSLASHcitep] = ACTIONS(12303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteauthor] = ACTIONS(12303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitetitle] = ACTIONS(12303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteyear] = ACTIONS(12303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitedate] = ACTIONS(12303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteurl] = ACTIONS(12303), + [anon_sym_BSLASHfullcite] = ACTIONS(12303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12303), + [anon_sym_BSLASHcitealt] = ACTIONS(12303), + [anon_sym_BSLASHcitealp] = ACTIONS(12303), + [anon_sym_BSLASHcitetext] = ACTIONS(12303), + [anon_sym_BSLASHparencite] = ACTIONS(12303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHParencite] = ACTIONS(12303), + [anon_sym_BSLASHfootcite] = ACTIONS(12303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12303), + [anon_sym_BSLASHtextcite] = ACTIONS(12303), + [anon_sym_BSLASHTextcite] = ACTIONS(12303), + [anon_sym_BSLASHsmartcite] = ACTIONS(12303), + [anon_sym_BSLASHSmartcite] = ACTIONS(12303), + [anon_sym_BSLASHsupercite] = ACTIONS(12303), + [anon_sym_BSLASHautocite] = ACTIONS(12303), + [anon_sym_BSLASHAutocite] = ACTIONS(12303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHvolcite] = ACTIONS(12303), + [anon_sym_BSLASHVolcite] = ACTIONS(12303), + [anon_sym_BSLASHpvolcite] = ACTIONS(12303), + [anon_sym_BSLASHPvolcite] = ACTIONS(12303), + [anon_sym_BSLASHfvolcite] = ACTIONS(12303), + [anon_sym_BSLASHftvolcite] = ACTIONS(12303), + [anon_sym_BSLASHsvolcite] = ACTIONS(12303), + [anon_sym_BSLASHSvolcite] = ACTIONS(12303), + [anon_sym_BSLASHtvolcite] = ACTIONS(12303), + [anon_sym_BSLASHTvolcite] = ACTIONS(12303), + [anon_sym_BSLASHavolcite] = ACTIONS(12303), + [anon_sym_BSLASHAvolcite] = ACTIONS(12303), + [anon_sym_BSLASHnotecite] = ACTIONS(12303), + [anon_sym_BSLASHpnotecite] = ACTIONS(12303), + [anon_sym_BSLASHPnotecite] = ACTIONS(12303), + [anon_sym_BSLASHfnotecite] = ACTIONS(12303), + [anon_sym_BSLASHusepackage] = ACTIONS(12303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12303), + [anon_sym_BSLASHinclude] = ACTIONS(12303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12303), + [anon_sym_BSLASHinput] = ACTIONS(12303), + [anon_sym_BSLASHsubfile] = ACTIONS(12303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12303), + [anon_sym_BSLASHbibliography] = ACTIONS(12303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12303), + [anon_sym_BSLASHincludesvg] = ACTIONS(12303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12303), + [anon_sym_BSLASHimport] = ACTIONS(12303), + [anon_sym_BSLASHsubimport] = ACTIONS(12303), + [anon_sym_BSLASHinputfrom] = ACTIONS(12303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12303), + [anon_sym_BSLASHincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHlabel] = ACTIONS(12303), + [anon_sym_BSLASHref] = ACTIONS(12303), + [anon_sym_BSLASHvref] = ACTIONS(12303), + [anon_sym_BSLASHVref] = ACTIONS(12303), + [anon_sym_BSLASHautoref] = ACTIONS(12303), + [anon_sym_BSLASHpageref] = ACTIONS(12303), + [anon_sym_BSLASHcref] = ACTIONS(12303), + [anon_sym_BSLASHCref] = ACTIONS(12303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnameCref] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHlabelcref] = ACTIONS(12303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12303), + [anon_sym_BSLASHeqref] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange] = ACTIONS(12303), + [anon_sym_BSLASHCrefrange] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewlabel] = ACTIONS(12303), + [anon_sym_BSLASHnewcommand] = ACTIONS(12303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12303), + [anon_sym_BSLASHgls] = ACTIONS(12303), + [anon_sym_BSLASHGls] = ACTIONS(12303), + [anon_sym_BSLASHGLS] = ACTIONS(12303), + [anon_sym_BSLASHglspl] = ACTIONS(12303), + [anon_sym_BSLASHGlspl] = ACTIONS(12303), + [anon_sym_BSLASHGLSpl] = ACTIONS(12303), + [anon_sym_BSLASHglsdisp] = ACTIONS(12303), + [anon_sym_BSLASHglslink] = ACTIONS(12303), + [anon_sym_BSLASHglstext] = ACTIONS(12303), + [anon_sym_BSLASHGlstext] = ACTIONS(12303), + [anon_sym_BSLASHGLStext] = ACTIONS(12303), + [anon_sym_BSLASHglsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12303), + [anon_sym_BSLASHglsplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSplural] = ACTIONS(12303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHglsname] = ACTIONS(12303), + [anon_sym_BSLASHGlsname] = ACTIONS(12303), + [anon_sym_BSLASHGLSname] = ACTIONS(12303), + [anon_sym_BSLASHglssymbol] = ACTIONS(12303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12303), + [anon_sym_BSLASHglsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12303), + [anon_sym_BSLASHglsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12303), + [anon_sym_BSLASHglsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12303), + [anon_sym_BSLASHglsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12303), + [anon_sym_BSLASHglsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12303), + [anon_sym_BSLASHnewacronym] = ACTIONS(12303), + [anon_sym_BSLASHacrshort] = ACTIONS(12303), + [anon_sym_BSLASHAcrshort] = ACTIONS(12303), + [anon_sym_BSLASHACRshort] = ACTIONS(12303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12303), + [anon_sym_BSLASHacrlong] = ACTIONS(12303), + [anon_sym_BSLASHAcrlong] = ACTIONS(12303), + [anon_sym_BSLASHACRlong] = ACTIONS(12303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12303), + [anon_sym_BSLASHacrfull] = ACTIONS(12303), + [anon_sym_BSLASHAcrfull] = ACTIONS(12303), + [anon_sym_BSLASHACRfull] = ACTIONS(12303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12303), + [anon_sym_BSLASHacs] = ACTIONS(12303), + [anon_sym_BSLASHAcs] = ACTIONS(12303), + [anon_sym_BSLASHacsp] = ACTIONS(12303), + [anon_sym_BSLASHAcsp] = ACTIONS(12303), + [anon_sym_BSLASHacl] = ACTIONS(12303), + [anon_sym_BSLASHAcl] = ACTIONS(12303), + [anon_sym_BSLASHaclp] = ACTIONS(12303), + [anon_sym_BSLASHAclp] = ACTIONS(12303), + [anon_sym_BSLASHacf] = ACTIONS(12303), + [anon_sym_BSLASHAcf] = ACTIONS(12303), + [anon_sym_BSLASHacfp] = ACTIONS(12303), + [anon_sym_BSLASHAcfp] = ACTIONS(12303), + [anon_sym_BSLASHac] = ACTIONS(12303), + [anon_sym_BSLASHAc] = ACTIONS(12303), + [anon_sym_BSLASHacp] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12303), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12303), + [anon_sym_BSLASHcolor] = ACTIONS(12303), + [anon_sym_BSLASHcolorbox] = ACTIONS(12303), + [anon_sym_BSLASHtextcolor] = ACTIONS(12303), + [anon_sym_BSLASHpagecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12303), + }, + [855] = { + [sym_generic_command_name] = ACTIONS(12295), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12295), + [aux_sym_chapter_token1] = ACTIONS(12295), + [aux_sym_section_token1] = ACTIONS(12295), + [aux_sym_subsection_token1] = ACTIONS(12295), + [aux_sym_subsubsection_token1] = ACTIONS(12295), + [aux_sym_paragraph_token1] = ACTIONS(12295), + [aux_sym_subparagraph_token1] = ACTIONS(12295), + [anon_sym_BSLASHitem] = ACTIONS(12295), + [anon_sym_LBRACK] = ACTIONS(12293), + [anon_sym_LBRACE] = ACTIONS(12293), + [anon_sym_LPAREN] = ACTIONS(12293), + [anon_sym_COMMA] = ACTIONS(12293), + [anon_sym_EQ] = ACTIONS(12293), + [sym_word] = ACTIONS(12293), + [sym_param] = ACTIONS(12293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12293), + [anon_sym_DOLLAR] = ACTIONS(12295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12293), + [anon_sym_BSLASHbegin] = ACTIONS(12295), + [anon_sym_BSLASHend] = ACTIONS(12295), + [anon_sym_BSLASHcaption] = ACTIONS(12295), + [anon_sym_BSLASHcite] = ACTIONS(12295), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCite] = ACTIONS(12295), + [anon_sym_BSLASHnocite] = ACTIONS(12295), + [anon_sym_BSLASHcitet] = ACTIONS(12295), + [anon_sym_BSLASHcitep] = ACTIONS(12295), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteauthor] = ACTIONS(12295), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12295), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitetitle] = ACTIONS(12295), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteyear] = ACTIONS(12295), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitedate] = ACTIONS(12295), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteurl] = ACTIONS(12295), + [anon_sym_BSLASHfullcite] = ACTIONS(12295), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12295), + [anon_sym_BSLASHcitealt] = ACTIONS(12295), + [anon_sym_BSLASHcitealp] = ACTIONS(12295), + [anon_sym_BSLASHcitetext] = ACTIONS(12295), + [anon_sym_BSLASHparencite] = ACTIONS(12295), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHParencite] = ACTIONS(12295), + [anon_sym_BSLASHfootcite] = ACTIONS(12295), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12295), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12295), + [anon_sym_BSLASHtextcite] = ACTIONS(12295), + [anon_sym_BSLASHTextcite] = ACTIONS(12295), + [anon_sym_BSLASHsmartcite] = ACTIONS(12295), + [anon_sym_BSLASHSmartcite] = ACTIONS(12295), + [anon_sym_BSLASHsupercite] = ACTIONS(12295), + [anon_sym_BSLASHautocite] = ACTIONS(12295), + [anon_sym_BSLASHAutocite] = ACTIONS(12295), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHvolcite] = ACTIONS(12295), + [anon_sym_BSLASHVolcite] = ACTIONS(12295), + [anon_sym_BSLASHpvolcite] = ACTIONS(12295), + [anon_sym_BSLASHPvolcite] = ACTIONS(12295), + [anon_sym_BSLASHfvolcite] = ACTIONS(12295), + [anon_sym_BSLASHftvolcite] = ACTIONS(12295), + [anon_sym_BSLASHsvolcite] = ACTIONS(12295), + [anon_sym_BSLASHSvolcite] = ACTIONS(12295), + [anon_sym_BSLASHtvolcite] = ACTIONS(12295), + [anon_sym_BSLASHTvolcite] = ACTIONS(12295), + [anon_sym_BSLASHavolcite] = ACTIONS(12295), + [anon_sym_BSLASHAvolcite] = ACTIONS(12295), + [anon_sym_BSLASHnotecite] = ACTIONS(12295), + [anon_sym_BSLASHpnotecite] = ACTIONS(12295), + [anon_sym_BSLASHPnotecite] = ACTIONS(12295), + [anon_sym_BSLASHfnotecite] = ACTIONS(12295), + [anon_sym_BSLASHusepackage] = ACTIONS(12295), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12295), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12295), + [anon_sym_BSLASHinclude] = ACTIONS(12295), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12295), + [anon_sym_BSLASHinput] = ACTIONS(12295), + [anon_sym_BSLASHsubfile] = ACTIONS(12295), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12295), + [anon_sym_BSLASHbibliography] = ACTIONS(12295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12295), + [anon_sym_BSLASHincludesvg] = ACTIONS(12295), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12295), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12295), + [anon_sym_BSLASHimport] = ACTIONS(12295), + [anon_sym_BSLASHsubimport] = ACTIONS(12295), + [anon_sym_BSLASHinputfrom] = ACTIONS(12295), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12295), + [anon_sym_BSLASHincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHlabel] = ACTIONS(12295), + [anon_sym_BSLASHref] = ACTIONS(12295), + [anon_sym_BSLASHvref] = ACTIONS(12295), + [anon_sym_BSLASHVref] = ACTIONS(12295), + [anon_sym_BSLASHautoref] = ACTIONS(12295), + [anon_sym_BSLASHpageref] = ACTIONS(12295), + [anon_sym_BSLASHcref] = ACTIONS(12295), + [anon_sym_BSLASHCref] = ACTIONS(12295), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnameCref] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHlabelcref] = ACTIONS(12295), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12295), + [anon_sym_BSLASHeqref] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange] = ACTIONS(12295), + [anon_sym_BSLASHCrefrange] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewlabel] = ACTIONS(12295), + [anon_sym_BSLASHnewcommand] = ACTIONS(12295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12295), + [anon_sym_BSLASHgls] = ACTIONS(12295), + [anon_sym_BSLASHGls] = ACTIONS(12295), + [anon_sym_BSLASHGLS] = ACTIONS(12295), + [anon_sym_BSLASHglspl] = ACTIONS(12295), + [anon_sym_BSLASHGlspl] = ACTIONS(12295), + [anon_sym_BSLASHGLSpl] = ACTIONS(12295), + [anon_sym_BSLASHglsdisp] = ACTIONS(12295), + [anon_sym_BSLASHglslink] = ACTIONS(12295), + [anon_sym_BSLASHglstext] = ACTIONS(12295), + [anon_sym_BSLASHGlstext] = ACTIONS(12295), + [anon_sym_BSLASHGLStext] = ACTIONS(12295), + [anon_sym_BSLASHglsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12295), + [anon_sym_BSLASHglsplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSplural] = ACTIONS(12295), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHglsname] = ACTIONS(12295), + [anon_sym_BSLASHGlsname] = ACTIONS(12295), + [anon_sym_BSLASHGLSname] = ACTIONS(12295), + [anon_sym_BSLASHglssymbol] = ACTIONS(12295), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12295), + [anon_sym_BSLASHglsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12295), + [anon_sym_BSLASHglsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12295), + [anon_sym_BSLASHglsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12295), + [anon_sym_BSLASHglsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12295), + [anon_sym_BSLASHglsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12295), + [anon_sym_BSLASHnewacronym] = ACTIONS(12295), + [anon_sym_BSLASHacrshort] = ACTIONS(12295), + [anon_sym_BSLASHAcrshort] = ACTIONS(12295), + [anon_sym_BSLASHACRshort] = ACTIONS(12295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12295), + [anon_sym_BSLASHacrlong] = ACTIONS(12295), + [anon_sym_BSLASHAcrlong] = ACTIONS(12295), + [anon_sym_BSLASHACRlong] = ACTIONS(12295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12295), + [anon_sym_BSLASHacrfull] = ACTIONS(12295), + [anon_sym_BSLASHAcrfull] = ACTIONS(12295), + [anon_sym_BSLASHACRfull] = ACTIONS(12295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12295), + [anon_sym_BSLASHacs] = ACTIONS(12295), + [anon_sym_BSLASHAcs] = ACTIONS(12295), + [anon_sym_BSLASHacsp] = ACTIONS(12295), + [anon_sym_BSLASHAcsp] = ACTIONS(12295), + [anon_sym_BSLASHacl] = ACTIONS(12295), + [anon_sym_BSLASHAcl] = ACTIONS(12295), + [anon_sym_BSLASHaclp] = ACTIONS(12295), + [anon_sym_BSLASHAclp] = ACTIONS(12295), + [anon_sym_BSLASHacf] = ACTIONS(12295), + [anon_sym_BSLASHAcf] = ACTIONS(12295), + [anon_sym_BSLASHacfp] = ACTIONS(12295), + [anon_sym_BSLASHAcfp] = ACTIONS(12295), + [anon_sym_BSLASHac] = ACTIONS(12295), + [anon_sym_BSLASHAc] = ACTIONS(12295), + [anon_sym_BSLASHacp] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12295), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12295), + [anon_sym_BSLASHcolor] = ACTIONS(12295), + [anon_sym_BSLASHcolorbox] = ACTIONS(12295), + [anon_sym_BSLASHtextcolor] = ACTIONS(12295), + [anon_sym_BSLASHpagecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12295), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12295), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12295), + }, + [856] = { + [sym_generic_command_name] = ACTIONS(12291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12291), + [aux_sym_chapter_token1] = ACTIONS(12291), + [aux_sym_section_token1] = ACTIONS(12291), + [aux_sym_subsection_token1] = ACTIONS(12291), + [aux_sym_subsubsection_token1] = ACTIONS(12291), + [aux_sym_paragraph_token1] = ACTIONS(12291), + [aux_sym_subparagraph_token1] = ACTIONS(12291), + [anon_sym_BSLASHitem] = ACTIONS(12291), + [anon_sym_LBRACK] = ACTIONS(12289), + [anon_sym_LBRACE] = ACTIONS(12289), + [anon_sym_LPAREN] = ACTIONS(12289), + [anon_sym_COMMA] = ACTIONS(12289), + [anon_sym_EQ] = ACTIONS(12289), + [sym_word] = ACTIONS(12289), + [sym_param] = ACTIONS(12289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12289), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12289), + [anon_sym_DOLLAR] = ACTIONS(12291), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12289), + [anon_sym_BSLASHbegin] = ACTIONS(12291), + [anon_sym_BSLASHend] = ACTIONS(12291), + [anon_sym_BSLASHcaption] = ACTIONS(12291), + [anon_sym_BSLASHcite] = ACTIONS(12291), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCite] = ACTIONS(12291), + [anon_sym_BSLASHnocite] = ACTIONS(12291), + [anon_sym_BSLASHcitet] = ACTIONS(12291), + [anon_sym_BSLASHcitep] = ACTIONS(12291), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteauthor] = ACTIONS(12291), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12291), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitetitle] = ACTIONS(12291), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteyear] = ACTIONS(12291), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitedate] = ACTIONS(12291), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteurl] = ACTIONS(12291), + [anon_sym_BSLASHfullcite] = ACTIONS(12291), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12291), + [anon_sym_BSLASHcitealt] = ACTIONS(12291), + [anon_sym_BSLASHcitealp] = ACTIONS(12291), + [anon_sym_BSLASHcitetext] = ACTIONS(12291), + [anon_sym_BSLASHparencite] = ACTIONS(12291), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHParencite] = ACTIONS(12291), + [anon_sym_BSLASHfootcite] = ACTIONS(12291), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12291), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12291), + [anon_sym_BSLASHtextcite] = ACTIONS(12291), + [anon_sym_BSLASHTextcite] = ACTIONS(12291), + [anon_sym_BSLASHsmartcite] = ACTIONS(12291), + [anon_sym_BSLASHSmartcite] = ACTIONS(12291), + [anon_sym_BSLASHsupercite] = ACTIONS(12291), + [anon_sym_BSLASHautocite] = ACTIONS(12291), + [anon_sym_BSLASHAutocite] = ACTIONS(12291), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHvolcite] = ACTIONS(12291), + [anon_sym_BSLASHVolcite] = ACTIONS(12291), + [anon_sym_BSLASHpvolcite] = ACTIONS(12291), + [anon_sym_BSLASHPvolcite] = ACTIONS(12291), + [anon_sym_BSLASHfvolcite] = ACTIONS(12291), + [anon_sym_BSLASHftvolcite] = ACTIONS(12291), + [anon_sym_BSLASHsvolcite] = ACTIONS(12291), + [anon_sym_BSLASHSvolcite] = ACTIONS(12291), + [anon_sym_BSLASHtvolcite] = ACTIONS(12291), + [anon_sym_BSLASHTvolcite] = ACTIONS(12291), + [anon_sym_BSLASHavolcite] = ACTIONS(12291), + [anon_sym_BSLASHAvolcite] = ACTIONS(12291), + [anon_sym_BSLASHnotecite] = ACTIONS(12291), + [anon_sym_BSLASHpnotecite] = ACTIONS(12291), + [anon_sym_BSLASHPnotecite] = ACTIONS(12291), + [anon_sym_BSLASHfnotecite] = ACTIONS(12291), + [anon_sym_BSLASHusepackage] = ACTIONS(12291), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12291), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12291), + [anon_sym_BSLASHinclude] = ACTIONS(12291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12291), + [anon_sym_BSLASHinput] = ACTIONS(12291), + [anon_sym_BSLASHsubfile] = ACTIONS(12291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12291), + [anon_sym_BSLASHbibliography] = ACTIONS(12291), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12291), + [anon_sym_BSLASHincludesvg] = ACTIONS(12291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12291), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12291), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12291), + [anon_sym_BSLASHimport] = ACTIONS(12291), + [anon_sym_BSLASHsubimport] = ACTIONS(12291), + [anon_sym_BSLASHinputfrom] = ACTIONS(12291), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12291), + [anon_sym_BSLASHincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHlabel] = ACTIONS(12291), + [anon_sym_BSLASHref] = ACTIONS(12291), + [anon_sym_BSLASHvref] = ACTIONS(12291), + [anon_sym_BSLASHVref] = ACTIONS(12291), + [anon_sym_BSLASHautoref] = ACTIONS(12291), + [anon_sym_BSLASHpageref] = ACTIONS(12291), + [anon_sym_BSLASHcref] = ACTIONS(12291), + [anon_sym_BSLASHCref] = ACTIONS(12291), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnameCref] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHlabelcref] = ACTIONS(12291), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12291), + [anon_sym_BSLASHeqref] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange] = ACTIONS(12291), + [anon_sym_BSLASHCrefrange] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewlabel] = ACTIONS(12291), + [anon_sym_BSLASHnewcommand] = ACTIONS(12291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12291), + [anon_sym_BSLASHgls] = ACTIONS(12291), + [anon_sym_BSLASHGls] = ACTIONS(12291), + [anon_sym_BSLASHGLS] = ACTIONS(12291), + [anon_sym_BSLASHglspl] = ACTIONS(12291), + [anon_sym_BSLASHGlspl] = ACTIONS(12291), + [anon_sym_BSLASHGLSpl] = ACTIONS(12291), + [anon_sym_BSLASHglsdisp] = ACTIONS(12291), + [anon_sym_BSLASHglslink] = ACTIONS(12291), + [anon_sym_BSLASHglstext] = ACTIONS(12291), + [anon_sym_BSLASHGlstext] = ACTIONS(12291), + [anon_sym_BSLASHGLStext] = ACTIONS(12291), + [anon_sym_BSLASHglsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12291), + [anon_sym_BSLASHglsplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSplural] = ACTIONS(12291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHglsname] = ACTIONS(12291), + [anon_sym_BSLASHGlsname] = ACTIONS(12291), + [anon_sym_BSLASHGLSname] = ACTIONS(12291), + [anon_sym_BSLASHglssymbol] = ACTIONS(12291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12291), + [anon_sym_BSLASHglsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12291), + [anon_sym_BSLASHglsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12291), + [anon_sym_BSLASHglsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12291), + [anon_sym_BSLASHglsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12291), + [anon_sym_BSLASHglsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12291), + [anon_sym_BSLASHnewacronym] = ACTIONS(12291), + [anon_sym_BSLASHacrshort] = ACTIONS(12291), + [anon_sym_BSLASHAcrshort] = ACTIONS(12291), + [anon_sym_BSLASHACRshort] = ACTIONS(12291), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12291), + [anon_sym_BSLASHacrlong] = ACTIONS(12291), + [anon_sym_BSLASHAcrlong] = ACTIONS(12291), + [anon_sym_BSLASHACRlong] = ACTIONS(12291), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12291), + [anon_sym_BSLASHacrfull] = ACTIONS(12291), + [anon_sym_BSLASHAcrfull] = ACTIONS(12291), + [anon_sym_BSLASHACRfull] = ACTIONS(12291), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12291), + [anon_sym_BSLASHacs] = ACTIONS(12291), + [anon_sym_BSLASHAcs] = ACTIONS(12291), + [anon_sym_BSLASHacsp] = ACTIONS(12291), + [anon_sym_BSLASHAcsp] = ACTIONS(12291), + [anon_sym_BSLASHacl] = ACTIONS(12291), + [anon_sym_BSLASHAcl] = ACTIONS(12291), + [anon_sym_BSLASHaclp] = ACTIONS(12291), + [anon_sym_BSLASHAclp] = ACTIONS(12291), + [anon_sym_BSLASHacf] = ACTIONS(12291), + [anon_sym_BSLASHAcf] = ACTIONS(12291), + [anon_sym_BSLASHacfp] = ACTIONS(12291), + [anon_sym_BSLASHAcfp] = ACTIONS(12291), + [anon_sym_BSLASHac] = ACTIONS(12291), + [anon_sym_BSLASHAc] = ACTIONS(12291), + [anon_sym_BSLASHacp] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12291), + [anon_sym_BSLASHcolor] = ACTIONS(12291), + [anon_sym_BSLASHcolorbox] = ACTIONS(12291), + [anon_sym_BSLASHtextcolor] = ACTIONS(12291), + [anon_sym_BSLASHpagecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12291), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12291), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12291), + }, + [857] = { + [sym_generic_command_name] = ACTIONS(12287), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12287), + [aux_sym_chapter_token1] = ACTIONS(12287), + [aux_sym_section_token1] = ACTIONS(12287), + [aux_sym_subsection_token1] = ACTIONS(12287), + [aux_sym_subsubsection_token1] = ACTIONS(12287), + [aux_sym_paragraph_token1] = ACTIONS(12287), + [aux_sym_subparagraph_token1] = ACTIONS(12287), + [anon_sym_BSLASHitem] = ACTIONS(12287), + [anon_sym_LBRACK] = ACTIONS(12285), + [anon_sym_LBRACE] = ACTIONS(12285), + [anon_sym_LPAREN] = ACTIONS(12285), + [anon_sym_COMMA] = ACTIONS(12285), + [anon_sym_EQ] = ACTIONS(12285), + [sym_word] = ACTIONS(12285), + [sym_param] = ACTIONS(12285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12285), + [anon_sym_DOLLAR] = ACTIONS(12287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12285), + [anon_sym_BSLASHbegin] = ACTIONS(12287), + [anon_sym_BSLASHend] = ACTIONS(12287), + [anon_sym_BSLASHcaption] = ACTIONS(12287), + [anon_sym_BSLASHcite] = ACTIONS(12287), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCite] = ACTIONS(12287), + [anon_sym_BSLASHnocite] = ACTIONS(12287), + [anon_sym_BSLASHcitet] = ACTIONS(12287), + [anon_sym_BSLASHcitep] = ACTIONS(12287), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteauthor] = ACTIONS(12287), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12287), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitetitle] = ACTIONS(12287), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteyear] = ACTIONS(12287), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitedate] = ACTIONS(12287), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteurl] = ACTIONS(12287), + [anon_sym_BSLASHfullcite] = ACTIONS(12287), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12287), + [anon_sym_BSLASHcitealt] = ACTIONS(12287), + [anon_sym_BSLASHcitealp] = ACTIONS(12287), + [anon_sym_BSLASHcitetext] = ACTIONS(12287), + [anon_sym_BSLASHparencite] = ACTIONS(12287), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHParencite] = ACTIONS(12287), + [anon_sym_BSLASHfootcite] = ACTIONS(12287), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12287), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12287), + [anon_sym_BSLASHtextcite] = ACTIONS(12287), + [anon_sym_BSLASHTextcite] = ACTIONS(12287), + [anon_sym_BSLASHsmartcite] = ACTIONS(12287), + [anon_sym_BSLASHSmartcite] = ACTIONS(12287), + [anon_sym_BSLASHsupercite] = ACTIONS(12287), + [anon_sym_BSLASHautocite] = ACTIONS(12287), + [anon_sym_BSLASHAutocite] = ACTIONS(12287), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHvolcite] = ACTIONS(12287), + [anon_sym_BSLASHVolcite] = ACTIONS(12287), + [anon_sym_BSLASHpvolcite] = ACTIONS(12287), + [anon_sym_BSLASHPvolcite] = ACTIONS(12287), + [anon_sym_BSLASHfvolcite] = ACTIONS(12287), + [anon_sym_BSLASHftvolcite] = ACTIONS(12287), + [anon_sym_BSLASHsvolcite] = ACTIONS(12287), + [anon_sym_BSLASHSvolcite] = ACTIONS(12287), + [anon_sym_BSLASHtvolcite] = ACTIONS(12287), + [anon_sym_BSLASHTvolcite] = ACTIONS(12287), + [anon_sym_BSLASHavolcite] = ACTIONS(12287), + [anon_sym_BSLASHAvolcite] = ACTIONS(12287), + [anon_sym_BSLASHnotecite] = ACTIONS(12287), + [anon_sym_BSLASHpnotecite] = ACTIONS(12287), + [anon_sym_BSLASHPnotecite] = ACTIONS(12287), + [anon_sym_BSLASHfnotecite] = ACTIONS(12287), + [anon_sym_BSLASHusepackage] = ACTIONS(12287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12287), + [anon_sym_BSLASHinclude] = ACTIONS(12287), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12287), + [anon_sym_BSLASHinput] = ACTIONS(12287), + [anon_sym_BSLASHsubfile] = ACTIONS(12287), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12287), + [anon_sym_BSLASHbibliography] = ACTIONS(12287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12287), + [anon_sym_BSLASHincludesvg] = ACTIONS(12287), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12287), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12287), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12287), + [anon_sym_BSLASHimport] = ACTIONS(12287), + [anon_sym_BSLASHsubimport] = ACTIONS(12287), + [anon_sym_BSLASHinputfrom] = ACTIONS(12287), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12287), + [anon_sym_BSLASHincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHlabel] = ACTIONS(12287), + [anon_sym_BSLASHref] = ACTIONS(12287), + [anon_sym_BSLASHvref] = ACTIONS(12287), + [anon_sym_BSLASHVref] = ACTIONS(12287), + [anon_sym_BSLASHautoref] = ACTIONS(12287), + [anon_sym_BSLASHpageref] = ACTIONS(12287), + [anon_sym_BSLASHcref] = ACTIONS(12287), + [anon_sym_BSLASHCref] = ACTIONS(12287), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnameCref] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHlabelcref] = ACTIONS(12287), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12287), + [anon_sym_BSLASHeqref] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange] = ACTIONS(12287), + [anon_sym_BSLASHCrefrange] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewlabel] = ACTIONS(12287), + [anon_sym_BSLASHnewcommand] = ACTIONS(12287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12287), + [anon_sym_BSLASHgls] = ACTIONS(12287), + [anon_sym_BSLASHGls] = ACTIONS(12287), + [anon_sym_BSLASHGLS] = ACTIONS(12287), + [anon_sym_BSLASHglspl] = ACTIONS(12287), + [anon_sym_BSLASHGlspl] = ACTIONS(12287), + [anon_sym_BSLASHGLSpl] = ACTIONS(12287), + [anon_sym_BSLASHglsdisp] = ACTIONS(12287), + [anon_sym_BSLASHglslink] = ACTIONS(12287), + [anon_sym_BSLASHglstext] = ACTIONS(12287), + [anon_sym_BSLASHGlstext] = ACTIONS(12287), + [anon_sym_BSLASHGLStext] = ACTIONS(12287), + [anon_sym_BSLASHglsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12287), + [anon_sym_BSLASHglsplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSplural] = ACTIONS(12287), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHglsname] = ACTIONS(12287), + [anon_sym_BSLASHGlsname] = ACTIONS(12287), + [anon_sym_BSLASHGLSname] = ACTIONS(12287), + [anon_sym_BSLASHglssymbol] = ACTIONS(12287), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12287), + [anon_sym_BSLASHglsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12287), + [anon_sym_BSLASHglsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12287), + [anon_sym_BSLASHglsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12287), + [anon_sym_BSLASHglsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12287), + [anon_sym_BSLASHglsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12287), + [anon_sym_BSLASHnewacronym] = ACTIONS(12287), + [anon_sym_BSLASHacrshort] = ACTIONS(12287), + [anon_sym_BSLASHAcrshort] = ACTIONS(12287), + [anon_sym_BSLASHACRshort] = ACTIONS(12287), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12287), + [anon_sym_BSLASHacrlong] = ACTIONS(12287), + [anon_sym_BSLASHAcrlong] = ACTIONS(12287), + [anon_sym_BSLASHACRlong] = ACTIONS(12287), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12287), + [anon_sym_BSLASHacrfull] = ACTIONS(12287), + [anon_sym_BSLASHAcrfull] = ACTIONS(12287), + [anon_sym_BSLASHACRfull] = ACTIONS(12287), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12287), + [anon_sym_BSLASHacs] = ACTIONS(12287), + [anon_sym_BSLASHAcs] = ACTIONS(12287), + [anon_sym_BSLASHacsp] = ACTIONS(12287), + [anon_sym_BSLASHAcsp] = ACTIONS(12287), + [anon_sym_BSLASHacl] = ACTIONS(12287), + [anon_sym_BSLASHAcl] = ACTIONS(12287), + [anon_sym_BSLASHaclp] = ACTIONS(12287), + [anon_sym_BSLASHAclp] = ACTIONS(12287), + [anon_sym_BSLASHacf] = ACTIONS(12287), + [anon_sym_BSLASHAcf] = ACTIONS(12287), + [anon_sym_BSLASHacfp] = ACTIONS(12287), + [anon_sym_BSLASHAcfp] = ACTIONS(12287), + [anon_sym_BSLASHac] = ACTIONS(12287), + [anon_sym_BSLASHAc] = ACTIONS(12287), + [anon_sym_BSLASHacp] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12287), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12287), + [anon_sym_BSLASHcolor] = ACTIONS(12287), + [anon_sym_BSLASHcolorbox] = ACTIONS(12287), + [anon_sym_BSLASHtextcolor] = ACTIONS(12287), + [anon_sym_BSLASHpagecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12287), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12287), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12287), + }, + [858] = { + [sym_generic_command_name] = ACTIONS(12279), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12279), + [aux_sym_chapter_token1] = ACTIONS(12279), + [aux_sym_section_token1] = ACTIONS(12279), + [aux_sym_subsection_token1] = ACTIONS(12279), + [aux_sym_subsubsection_token1] = ACTIONS(12279), + [aux_sym_paragraph_token1] = ACTIONS(12279), + [aux_sym_subparagraph_token1] = ACTIONS(12279), + [anon_sym_BSLASHitem] = ACTIONS(12279), + [anon_sym_LBRACK] = ACTIONS(12277), + [anon_sym_LBRACE] = ACTIONS(12277), + [anon_sym_LPAREN] = ACTIONS(12277), + [anon_sym_COMMA] = ACTIONS(12277), + [anon_sym_EQ] = ACTIONS(12277), + [sym_word] = ACTIONS(12277), + [sym_param] = ACTIONS(12277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12277), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12277), + [anon_sym_DOLLAR] = ACTIONS(12279), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12277), + [anon_sym_BSLASHbegin] = ACTIONS(12279), + [anon_sym_BSLASHend] = ACTIONS(12279), + [anon_sym_BSLASHcaption] = ACTIONS(12279), + [anon_sym_BSLASHcite] = ACTIONS(12279), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCite] = ACTIONS(12279), + [anon_sym_BSLASHnocite] = ACTIONS(12279), + [anon_sym_BSLASHcitet] = ACTIONS(12279), + [anon_sym_BSLASHcitep] = ACTIONS(12279), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteauthor] = ACTIONS(12279), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12279), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitetitle] = ACTIONS(12279), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteyear] = ACTIONS(12279), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitedate] = ACTIONS(12279), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteurl] = ACTIONS(12279), + [anon_sym_BSLASHfullcite] = ACTIONS(12279), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12279), + [anon_sym_BSLASHcitealt] = ACTIONS(12279), + [anon_sym_BSLASHcitealp] = ACTIONS(12279), + [anon_sym_BSLASHcitetext] = ACTIONS(12279), + [anon_sym_BSLASHparencite] = ACTIONS(12279), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHParencite] = ACTIONS(12279), + [anon_sym_BSLASHfootcite] = ACTIONS(12279), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12279), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12279), + [anon_sym_BSLASHtextcite] = ACTIONS(12279), + [anon_sym_BSLASHTextcite] = ACTIONS(12279), + [anon_sym_BSLASHsmartcite] = ACTIONS(12279), + [anon_sym_BSLASHSmartcite] = ACTIONS(12279), + [anon_sym_BSLASHsupercite] = ACTIONS(12279), + [anon_sym_BSLASHautocite] = ACTIONS(12279), + [anon_sym_BSLASHAutocite] = ACTIONS(12279), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHvolcite] = ACTIONS(12279), + [anon_sym_BSLASHVolcite] = ACTIONS(12279), + [anon_sym_BSLASHpvolcite] = ACTIONS(12279), + [anon_sym_BSLASHPvolcite] = ACTIONS(12279), + [anon_sym_BSLASHfvolcite] = ACTIONS(12279), + [anon_sym_BSLASHftvolcite] = ACTIONS(12279), + [anon_sym_BSLASHsvolcite] = ACTIONS(12279), + [anon_sym_BSLASHSvolcite] = ACTIONS(12279), + [anon_sym_BSLASHtvolcite] = ACTIONS(12279), + [anon_sym_BSLASHTvolcite] = ACTIONS(12279), + [anon_sym_BSLASHavolcite] = ACTIONS(12279), + [anon_sym_BSLASHAvolcite] = ACTIONS(12279), + [anon_sym_BSLASHnotecite] = ACTIONS(12279), + [anon_sym_BSLASHpnotecite] = ACTIONS(12279), + [anon_sym_BSLASHPnotecite] = ACTIONS(12279), + [anon_sym_BSLASHfnotecite] = ACTIONS(12279), + [anon_sym_BSLASHusepackage] = ACTIONS(12279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12279), + [anon_sym_BSLASHinclude] = ACTIONS(12279), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12279), + [anon_sym_BSLASHinput] = ACTIONS(12279), + [anon_sym_BSLASHsubfile] = ACTIONS(12279), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12279), + [anon_sym_BSLASHbibliography] = ACTIONS(12279), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12279), + [anon_sym_BSLASHincludesvg] = ACTIONS(12279), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12279), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12279), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12279), + [anon_sym_BSLASHimport] = ACTIONS(12279), + [anon_sym_BSLASHsubimport] = ACTIONS(12279), + [anon_sym_BSLASHinputfrom] = ACTIONS(12279), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12279), + [anon_sym_BSLASHincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHlabel] = ACTIONS(12279), + [anon_sym_BSLASHref] = ACTIONS(12279), + [anon_sym_BSLASHvref] = ACTIONS(12279), + [anon_sym_BSLASHVref] = ACTIONS(12279), + [anon_sym_BSLASHautoref] = ACTIONS(12279), + [anon_sym_BSLASHpageref] = ACTIONS(12279), + [anon_sym_BSLASHcref] = ACTIONS(12279), + [anon_sym_BSLASHCref] = ACTIONS(12279), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnameCref] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHlabelcref] = ACTIONS(12279), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12279), + [anon_sym_BSLASHeqref] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange] = ACTIONS(12279), + [anon_sym_BSLASHCrefrange] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewlabel] = ACTIONS(12279), + [anon_sym_BSLASHnewcommand] = ACTIONS(12279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12279), + [anon_sym_BSLASHgls] = ACTIONS(12279), + [anon_sym_BSLASHGls] = ACTIONS(12279), + [anon_sym_BSLASHGLS] = ACTIONS(12279), + [anon_sym_BSLASHglspl] = ACTIONS(12279), + [anon_sym_BSLASHGlspl] = ACTIONS(12279), + [anon_sym_BSLASHGLSpl] = ACTIONS(12279), + [anon_sym_BSLASHglsdisp] = ACTIONS(12279), + [anon_sym_BSLASHglslink] = ACTIONS(12279), + [anon_sym_BSLASHglstext] = ACTIONS(12279), + [anon_sym_BSLASHGlstext] = ACTIONS(12279), + [anon_sym_BSLASHGLStext] = ACTIONS(12279), + [anon_sym_BSLASHglsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12279), + [anon_sym_BSLASHglsplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSplural] = ACTIONS(12279), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHglsname] = ACTIONS(12279), + [anon_sym_BSLASHGlsname] = ACTIONS(12279), + [anon_sym_BSLASHGLSname] = ACTIONS(12279), + [anon_sym_BSLASHglssymbol] = ACTIONS(12279), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12279), + [anon_sym_BSLASHglsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12279), + [anon_sym_BSLASHglsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12279), + [anon_sym_BSLASHglsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12279), + [anon_sym_BSLASHglsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12279), + [anon_sym_BSLASHglsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12279), + [anon_sym_BSLASHnewacronym] = ACTIONS(12279), + [anon_sym_BSLASHacrshort] = ACTIONS(12279), + [anon_sym_BSLASHAcrshort] = ACTIONS(12279), + [anon_sym_BSLASHACRshort] = ACTIONS(12279), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12279), + [anon_sym_BSLASHacrlong] = ACTIONS(12279), + [anon_sym_BSLASHAcrlong] = ACTIONS(12279), + [anon_sym_BSLASHACRlong] = ACTIONS(12279), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12279), + [anon_sym_BSLASHacrfull] = ACTIONS(12279), + [anon_sym_BSLASHAcrfull] = ACTIONS(12279), + [anon_sym_BSLASHACRfull] = ACTIONS(12279), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12279), + [anon_sym_BSLASHacs] = ACTIONS(12279), + [anon_sym_BSLASHAcs] = ACTIONS(12279), + [anon_sym_BSLASHacsp] = ACTIONS(12279), + [anon_sym_BSLASHAcsp] = ACTIONS(12279), + [anon_sym_BSLASHacl] = ACTIONS(12279), + [anon_sym_BSLASHAcl] = ACTIONS(12279), + [anon_sym_BSLASHaclp] = ACTIONS(12279), + [anon_sym_BSLASHAclp] = ACTIONS(12279), + [anon_sym_BSLASHacf] = ACTIONS(12279), + [anon_sym_BSLASHAcf] = ACTIONS(12279), + [anon_sym_BSLASHacfp] = ACTIONS(12279), + [anon_sym_BSLASHAcfp] = ACTIONS(12279), + [anon_sym_BSLASHac] = ACTIONS(12279), + [anon_sym_BSLASHAc] = ACTIONS(12279), + [anon_sym_BSLASHacp] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12279), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12279), + [anon_sym_BSLASHcolor] = ACTIONS(12279), + [anon_sym_BSLASHcolorbox] = ACTIONS(12279), + [anon_sym_BSLASHtextcolor] = ACTIONS(12279), + [anon_sym_BSLASHpagecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12279), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12279), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12279), + }, + [859] = { + [sym_generic_command_name] = ACTIONS(12271), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12271), + [aux_sym_chapter_token1] = ACTIONS(12271), + [aux_sym_section_token1] = ACTIONS(12271), + [aux_sym_subsection_token1] = ACTIONS(12271), + [aux_sym_subsubsection_token1] = ACTIONS(12271), + [aux_sym_paragraph_token1] = ACTIONS(12271), + [aux_sym_subparagraph_token1] = ACTIONS(12271), + [anon_sym_BSLASHitem] = ACTIONS(12271), + [anon_sym_LBRACK] = ACTIONS(12269), + [anon_sym_LBRACE] = ACTIONS(12269), + [anon_sym_LPAREN] = ACTIONS(12269), + [anon_sym_COMMA] = ACTIONS(12269), + [anon_sym_EQ] = ACTIONS(12269), + [sym_word] = ACTIONS(12269), + [sym_param] = ACTIONS(12269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12269), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12269), + [anon_sym_DOLLAR] = ACTIONS(12271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12269), + [anon_sym_BSLASHbegin] = ACTIONS(12271), + [anon_sym_BSLASHend] = ACTIONS(12271), + [anon_sym_BSLASHcaption] = ACTIONS(12271), + [anon_sym_BSLASHcite] = ACTIONS(12271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCite] = ACTIONS(12271), + [anon_sym_BSLASHnocite] = ACTIONS(12271), + [anon_sym_BSLASHcitet] = ACTIONS(12271), + [anon_sym_BSLASHcitep] = ACTIONS(12271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteauthor] = ACTIONS(12271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitetitle] = ACTIONS(12271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteyear] = ACTIONS(12271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitedate] = ACTIONS(12271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteurl] = ACTIONS(12271), + [anon_sym_BSLASHfullcite] = ACTIONS(12271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12271), + [anon_sym_BSLASHcitealt] = ACTIONS(12271), + [anon_sym_BSLASHcitealp] = ACTIONS(12271), + [anon_sym_BSLASHcitetext] = ACTIONS(12271), + [anon_sym_BSLASHparencite] = ACTIONS(12271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHParencite] = ACTIONS(12271), + [anon_sym_BSLASHfootcite] = ACTIONS(12271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12271), + [anon_sym_BSLASHtextcite] = ACTIONS(12271), + [anon_sym_BSLASHTextcite] = ACTIONS(12271), + [anon_sym_BSLASHsmartcite] = ACTIONS(12271), + [anon_sym_BSLASHSmartcite] = ACTIONS(12271), + [anon_sym_BSLASHsupercite] = ACTIONS(12271), + [anon_sym_BSLASHautocite] = ACTIONS(12271), + [anon_sym_BSLASHAutocite] = ACTIONS(12271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHvolcite] = ACTIONS(12271), + [anon_sym_BSLASHVolcite] = ACTIONS(12271), + [anon_sym_BSLASHpvolcite] = ACTIONS(12271), + [anon_sym_BSLASHPvolcite] = ACTIONS(12271), + [anon_sym_BSLASHfvolcite] = ACTIONS(12271), + [anon_sym_BSLASHftvolcite] = ACTIONS(12271), + [anon_sym_BSLASHsvolcite] = ACTIONS(12271), + [anon_sym_BSLASHSvolcite] = ACTIONS(12271), + [anon_sym_BSLASHtvolcite] = ACTIONS(12271), + [anon_sym_BSLASHTvolcite] = ACTIONS(12271), + [anon_sym_BSLASHavolcite] = ACTIONS(12271), + [anon_sym_BSLASHAvolcite] = ACTIONS(12271), + [anon_sym_BSLASHnotecite] = ACTIONS(12271), + [anon_sym_BSLASHpnotecite] = ACTIONS(12271), + [anon_sym_BSLASHPnotecite] = ACTIONS(12271), + [anon_sym_BSLASHfnotecite] = ACTIONS(12271), + [anon_sym_BSLASHusepackage] = ACTIONS(12271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12271), + [anon_sym_BSLASHinclude] = ACTIONS(12271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12271), + [anon_sym_BSLASHinput] = ACTIONS(12271), + [anon_sym_BSLASHsubfile] = ACTIONS(12271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12271), + [anon_sym_BSLASHbibliography] = ACTIONS(12271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12271), + [anon_sym_BSLASHincludesvg] = ACTIONS(12271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12271), + [anon_sym_BSLASHimport] = ACTIONS(12271), + [anon_sym_BSLASHsubimport] = ACTIONS(12271), + [anon_sym_BSLASHinputfrom] = ACTIONS(12271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12271), + [anon_sym_BSLASHincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHlabel] = ACTIONS(12271), + [anon_sym_BSLASHref] = ACTIONS(12271), + [anon_sym_BSLASHvref] = ACTIONS(12271), + [anon_sym_BSLASHVref] = ACTIONS(12271), + [anon_sym_BSLASHautoref] = ACTIONS(12271), + [anon_sym_BSLASHpageref] = ACTIONS(12271), + [anon_sym_BSLASHcref] = ACTIONS(12271), + [anon_sym_BSLASHCref] = ACTIONS(12271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnameCref] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHlabelcref] = ACTIONS(12271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12271), + [anon_sym_BSLASHeqref] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange] = ACTIONS(12271), + [anon_sym_BSLASHCrefrange] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewlabel] = ACTIONS(12271), + [anon_sym_BSLASHnewcommand] = ACTIONS(12271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12271), + [anon_sym_BSLASHgls] = ACTIONS(12271), + [anon_sym_BSLASHGls] = ACTIONS(12271), + [anon_sym_BSLASHGLS] = ACTIONS(12271), + [anon_sym_BSLASHglspl] = ACTIONS(12271), + [anon_sym_BSLASHGlspl] = ACTIONS(12271), + [anon_sym_BSLASHGLSpl] = ACTIONS(12271), + [anon_sym_BSLASHglsdisp] = ACTIONS(12271), + [anon_sym_BSLASHglslink] = ACTIONS(12271), + [anon_sym_BSLASHglstext] = ACTIONS(12271), + [anon_sym_BSLASHGlstext] = ACTIONS(12271), + [anon_sym_BSLASHGLStext] = ACTIONS(12271), + [anon_sym_BSLASHglsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12271), + [anon_sym_BSLASHglsplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSplural] = ACTIONS(12271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHglsname] = ACTIONS(12271), + [anon_sym_BSLASHGlsname] = ACTIONS(12271), + [anon_sym_BSLASHGLSname] = ACTIONS(12271), + [anon_sym_BSLASHglssymbol] = ACTIONS(12271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12271), + [anon_sym_BSLASHglsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12271), + [anon_sym_BSLASHglsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12271), + [anon_sym_BSLASHglsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12271), + [anon_sym_BSLASHglsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12271), + [anon_sym_BSLASHglsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12271), + [anon_sym_BSLASHnewacronym] = ACTIONS(12271), + [anon_sym_BSLASHacrshort] = ACTIONS(12271), + [anon_sym_BSLASHAcrshort] = ACTIONS(12271), + [anon_sym_BSLASHACRshort] = ACTIONS(12271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12271), + [anon_sym_BSLASHacrlong] = ACTIONS(12271), + [anon_sym_BSLASHAcrlong] = ACTIONS(12271), + [anon_sym_BSLASHACRlong] = ACTIONS(12271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12271), + [anon_sym_BSLASHacrfull] = ACTIONS(12271), + [anon_sym_BSLASHAcrfull] = ACTIONS(12271), + [anon_sym_BSLASHACRfull] = ACTIONS(12271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12271), + [anon_sym_BSLASHacs] = ACTIONS(12271), + [anon_sym_BSLASHAcs] = ACTIONS(12271), + [anon_sym_BSLASHacsp] = ACTIONS(12271), + [anon_sym_BSLASHAcsp] = ACTIONS(12271), + [anon_sym_BSLASHacl] = ACTIONS(12271), + [anon_sym_BSLASHAcl] = ACTIONS(12271), + [anon_sym_BSLASHaclp] = ACTIONS(12271), + [anon_sym_BSLASHAclp] = ACTIONS(12271), + [anon_sym_BSLASHacf] = ACTIONS(12271), + [anon_sym_BSLASHAcf] = ACTIONS(12271), + [anon_sym_BSLASHacfp] = ACTIONS(12271), + [anon_sym_BSLASHAcfp] = ACTIONS(12271), + [anon_sym_BSLASHac] = ACTIONS(12271), + [anon_sym_BSLASHAc] = ACTIONS(12271), + [anon_sym_BSLASHacp] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12271), + [anon_sym_BSLASHcolor] = ACTIONS(12271), + [anon_sym_BSLASHcolorbox] = ACTIONS(12271), + [anon_sym_BSLASHtextcolor] = ACTIONS(12271), + [anon_sym_BSLASHpagecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12271), + }, + [860] = { + [sym_generic_command_name] = ACTIONS(12267), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12267), + [aux_sym_chapter_token1] = ACTIONS(12267), + [aux_sym_section_token1] = ACTIONS(12267), + [aux_sym_subsection_token1] = ACTIONS(12267), + [aux_sym_subsubsection_token1] = ACTIONS(12267), + [aux_sym_paragraph_token1] = ACTIONS(12267), + [aux_sym_subparagraph_token1] = ACTIONS(12267), + [anon_sym_BSLASHitem] = ACTIONS(12267), + [anon_sym_LBRACK] = ACTIONS(12265), + [anon_sym_LBRACE] = ACTIONS(12265), + [anon_sym_LPAREN] = ACTIONS(12265), + [anon_sym_COMMA] = ACTIONS(12265), + [anon_sym_EQ] = ACTIONS(12265), + [sym_word] = ACTIONS(12265), + [sym_param] = ACTIONS(12265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12265), + [anon_sym_DOLLAR] = ACTIONS(12267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12265), + [anon_sym_BSLASHbegin] = ACTIONS(12267), + [anon_sym_BSLASHend] = ACTIONS(12267), + [anon_sym_BSLASHcaption] = ACTIONS(12267), + [anon_sym_BSLASHcite] = ACTIONS(12267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCite] = ACTIONS(12267), + [anon_sym_BSLASHnocite] = ACTIONS(12267), + [anon_sym_BSLASHcitet] = ACTIONS(12267), + [anon_sym_BSLASHcitep] = ACTIONS(12267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteauthor] = ACTIONS(12267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitetitle] = ACTIONS(12267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteyear] = ACTIONS(12267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitedate] = ACTIONS(12267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteurl] = ACTIONS(12267), + [anon_sym_BSLASHfullcite] = ACTIONS(12267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12267), + [anon_sym_BSLASHcitealt] = ACTIONS(12267), + [anon_sym_BSLASHcitealp] = ACTIONS(12267), + [anon_sym_BSLASHcitetext] = ACTIONS(12267), + [anon_sym_BSLASHparencite] = ACTIONS(12267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHParencite] = ACTIONS(12267), + [anon_sym_BSLASHfootcite] = ACTIONS(12267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12267), + [anon_sym_BSLASHtextcite] = ACTIONS(12267), + [anon_sym_BSLASHTextcite] = ACTIONS(12267), + [anon_sym_BSLASHsmartcite] = ACTIONS(12267), + [anon_sym_BSLASHSmartcite] = ACTIONS(12267), + [anon_sym_BSLASHsupercite] = ACTIONS(12267), + [anon_sym_BSLASHautocite] = ACTIONS(12267), + [anon_sym_BSLASHAutocite] = ACTIONS(12267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHvolcite] = ACTIONS(12267), + [anon_sym_BSLASHVolcite] = ACTIONS(12267), + [anon_sym_BSLASHpvolcite] = ACTIONS(12267), + [anon_sym_BSLASHPvolcite] = ACTIONS(12267), + [anon_sym_BSLASHfvolcite] = ACTIONS(12267), + [anon_sym_BSLASHftvolcite] = ACTIONS(12267), + [anon_sym_BSLASHsvolcite] = ACTIONS(12267), + [anon_sym_BSLASHSvolcite] = ACTIONS(12267), + [anon_sym_BSLASHtvolcite] = ACTIONS(12267), + [anon_sym_BSLASHTvolcite] = ACTIONS(12267), + [anon_sym_BSLASHavolcite] = ACTIONS(12267), + [anon_sym_BSLASHAvolcite] = ACTIONS(12267), + [anon_sym_BSLASHnotecite] = ACTIONS(12267), + [anon_sym_BSLASHpnotecite] = ACTIONS(12267), + [anon_sym_BSLASHPnotecite] = ACTIONS(12267), + [anon_sym_BSLASHfnotecite] = ACTIONS(12267), + [anon_sym_BSLASHusepackage] = ACTIONS(12267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12267), + [anon_sym_BSLASHinclude] = ACTIONS(12267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12267), + [anon_sym_BSLASHinput] = ACTIONS(12267), + [anon_sym_BSLASHsubfile] = ACTIONS(12267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12267), + [anon_sym_BSLASHbibliography] = ACTIONS(12267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12267), + [anon_sym_BSLASHincludesvg] = ACTIONS(12267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12267), + [anon_sym_BSLASHimport] = ACTIONS(12267), + [anon_sym_BSLASHsubimport] = ACTIONS(12267), + [anon_sym_BSLASHinputfrom] = ACTIONS(12267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12267), + [anon_sym_BSLASHincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHlabel] = ACTIONS(12267), + [anon_sym_BSLASHref] = ACTIONS(12267), + [anon_sym_BSLASHvref] = ACTIONS(12267), + [anon_sym_BSLASHVref] = ACTIONS(12267), + [anon_sym_BSLASHautoref] = ACTIONS(12267), + [anon_sym_BSLASHpageref] = ACTIONS(12267), + [anon_sym_BSLASHcref] = ACTIONS(12267), + [anon_sym_BSLASHCref] = ACTIONS(12267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnameCref] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHlabelcref] = ACTIONS(12267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12267), + [anon_sym_BSLASHeqref] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange] = ACTIONS(12267), + [anon_sym_BSLASHCrefrange] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewlabel] = ACTIONS(12267), + [anon_sym_BSLASHnewcommand] = ACTIONS(12267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12267), + [anon_sym_BSLASHgls] = ACTIONS(12267), + [anon_sym_BSLASHGls] = ACTIONS(12267), + [anon_sym_BSLASHGLS] = ACTIONS(12267), + [anon_sym_BSLASHglspl] = ACTIONS(12267), + [anon_sym_BSLASHGlspl] = ACTIONS(12267), + [anon_sym_BSLASHGLSpl] = ACTIONS(12267), + [anon_sym_BSLASHglsdisp] = ACTIONS(12267), + [anon_sym_BSLASHglslink] = ACTIONS(12267), + [anon_sym_BSLASHglstext] = ACTIONS(12267), + [anon_sym_BSLASHGlstext] = ACTIONS(12267), + [anon_sym_BSLASHGLStext] = ACTIONS(12267), + [anon_sym_BSLASHglsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12267), + [anon_sym_BSLASHglsplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSplural] = ACTIONS(12267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHglsname] = ACTIONS(12267), + [anon_sym_BSLASHGlsname] = ACTIONS(12267), + [anon_sym_BSLASHGLSname] = ACTIONS(12267), + [anon_sym_BSLASHglssymbol] = ACTIONS(12267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12267), + [anon_sym_BSLASHglsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12267), + [anon_sym_BSLASHglsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12267), + [anon_sym_BSLASHglsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12267), + [anon_sym_BSLASHglsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12267), + [anon_sym_BSLASHglsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12267), + [anon_sym_BSLASHnewacronym] = ACTIONS(12267), + [anon_sym_BSLASHacrshort] = ACTIONS(12267), + [anon_sym_BSLASHAcrshort] = ACTIONS(12267), + [anon_sym_BSLASHACRshort] = ACTIONS(12267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12267), + [anon_sym_BSLASHacrlong] = ACTIONS(12267), + [anon_sym_BSLASHAcrlong] = ACTIONS(12267), + [anon_sym_BSLASHACRlong] = ACTIONS(12267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12267), + [anon_sym_BSLASHacrfull] = ACTIONS(12267), + [anon_sym_BSLASHAcrfull] = ACTIONS(12267), + [anon_sym_BSLASHACRfull] = ACTIONS(12267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12267), + [anon_sym_BSLASHacs] = ACTIONS(12267), + [anon_sym_BSLASHAcs] = ACTIONS(12267), + [anon_sym_BSLASHacsp] = ACTIONS(12267), + [anon_sym_BSLASHAcsp] = ACTIONS(12267), + [anon_sym_BSLASHacl] = ACTIONS(12267), + [anon_sym_BSLASHAcl] = ACTIONS(12267), + [anon_sym_BSLASHaclp] = ACTIONS(12267), + [anon_sym_BSLASHAclp] = ACTIONS(12267), + [anon_sym_BSLASHacf] = ACTIONS(12267), + [anon_sym_BSLASHAcf] = ACTIONS(12267), + [anon_sym_BSLASHacfp] = ACTIONS(12267), + [anon_sym_BSLASHAcfp] = ACTIONS(12267), + [anon_sym_BSLASHac] = ACTIONS(12267), + [anon_sym_BSLASHAc] = ACTIONS(12267), + [anon_sym_BSLASHacp] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12267), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12267), + [anon_sym_BSLASHcolor] = ACTIONS(12267), + [anon_sym_BSLASHcolorbox] = ACTIONS(12267), + [anon_sym_BSLASHtextcolor] = ACTIONS(12267), + [anon_sym_BSLASHpagecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12267), + }, + [861] = { + [sym_generic_command_name] = ACTIONS(12319), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12319), + [aux_sym_chapter_token1] = ACTIONS(12319), + [aux_sym_section_token1] = ACTIONS(12319), + [aux_sym_subsection_token1] = ACTIONS(12319), + [aux_sym_subsubsection_token1] = ACTIONS(12319), + [aux_sym_paragraph_token1] = ACTIONS(12319), + [aux_sym_subparagraph_token1] = ACTIONS(12319), + [anon_sym_BSLASHitem] = ACTIONS(12319), + [anon_sym_LBRACK] = ACTIONS(12317), + [anon_sym_LBRACE] = ACTIONS(12317), + [anon_sym_LPAREN] = ACTIONS(12317), + [anon_sym_COMMA] = ACTIONS(12317), + [anon_sym_EQ] = ACTIONS(12317), + [sym_word] = ACTIONS(12317), + [sym_param] = ACTIONS(12317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12317), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12317), + [anon_sym_DOLLAR] = ACTIONS(12319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12317), + [anon_sym_BSLASHbegin] = ACTIONS(12319), + [anon_sym_BSLASHend] = ACTIONS(12319), + [anon_sym_BSLASHcaption] = ACTIONS(12319), + [anon_sym_BSLASHcite] = ACTIONS(12319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCite] = ACTIONS(12319), + [anon_sym_BSLASHnocite] = ACTIONS(12319), + [anon_sym_BSLASHcitet] = ACTIONS(12319), + [anon_sym_BSLASHcitep] = ACTIONS(12319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteauthor] = ACTIONS(12319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitetitle] = ACTIONS(12319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteyear] = ACTIONS(12319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitedate] = ACTIONS(12319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteurl] = ACTIONS(12319), + [anon_sym_BSLASHfullcite] = ACTIONS(12319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12319), + [anon_sym_BSLASHcitealt] = ACTIONS(12319), + [anon_sym_BSLASHcitealp] = ACTIONS(12319), + [anon_sym_BSLASHcitetext] = ACTIONS(12319), + [anon_sym_BSLASHparencite] = ACTIONS(12319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHParencite] = ACTIONS(12319), + [anon_sym_BSLASHfootcite] = ACTIONS(12319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12319), + [anon_sym_BSLASHtextcite] = ACTIONS(12319), + [anon_sym_BSLASHTextcite] = ACTIONS(12319), + [anon_sym_BSLASHsmartcite] = ACTIONS(12319), + [anon_sym_BSLASHSmartcite] = ACTIONS(12319), + [anon_sym_BSLASHsupercite] = ACTIONS(12319), + [anon_sym_BSLASHautocite] = ACTIONS(12319), + [anon_sym_BSLASHAutocite] = ACTIONS(12319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHvolcite] = ACTIONS(12319), + [anon_sym_BSLASHVolcite] = ACTIONS(12319), + [anon_sym_BSLASHpvolcite] = ACTIONS(12319), + [anon_sym_BSLASHPvolcite] = ACTIONS(12319), + [anon_sym_BSLASHfvolcite] = ACTIONS(12319), + [anon_sym_BSLASHftvolcite] = ACTIONS(12319), + [anon_sym_BSLASHsvolcite] = ACTIONS(12319), + [anon_sym_BSLASHSvolcite] = ACTIONS(12319), + [anon_sym_BSLASHtvolcite] = ACTIONS(12319), + [anon_sym_BSLASHTvolcite] = ACTIONS(12319), + [anon_sym_BSLASHavolcite] = ACTIONS(12319), + [anon_sym_BSLASHAvolcite] = ACTIONS(12319), + [anon_sym_BSLASHnotecite] = ACTIONS(12319), + [anon_sym_BSLASHpnotecite] = ACTIONS(12319), + [anon_sym_BSLASHPnotecite] = ACTIONS(12319), + [anon_sym_BSLASHfnotecite] = ACTIONS(12319), + [anon_sym_BSLASHusepackage] = ACTIONS(12319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12319), + [anon_sym_BSLASHinclude] = ACTIONS(12319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12319), + [anon_sym_BSLASHinput] = ACTIONS(12319), + [anon_sym_BSLASHsubfile] = ACTIONS(12319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12319), + [anon_sym_BSLASHbibliography] = ACTIONS(12319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12319), + [anon_sym_BSLASHincludesvg] = ACTIONS(12319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12319), + [anon_sym_BSLASHimport] = ACTIONS(12319), + [anon_sym_BSLASHsubimport] = ACTIONS(12319), + [anon_sym_BSLASHinputfrom] = ACTIONS(12319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12319), + [anon_sym_BSLASHincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHlabel] = ACTIONS(12319), + [anon_sym_BSLASHref] = ACTIONS(12319), + [anon_sym_BSLASHvref] = ACTIONS(12319), + [anon_sym_BSLASHVref] = ACTIONS(12319), + [anon_sym_BSLASHautoref] = ACTIONS(12319), + [anon_sym_BSLASHpageref] = ACTIONS(12319), + [anon_sym_BSLASHcref] = ACTIONS(12319), + [anon_sym_BSLASHCref] = ACTIONS(12319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnameCref] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHlabelcref] = ACTIONS(12319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12319), + [anon_sym_BSLASHeqref] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange] = ACTIONS(12319), + [anon_sym_BSLASHCrefrange] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewlabel] = ACTIONS(12319), + [anon_sym_BSLASHnewcommand] = ACTIONS(12319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12319), + [anon_sym_BSLASHgls] = ACTIONS(12319), + [anon_sym_BSLASHGls] = ACTIONS(12319), + [anon_sym_BSLASHGLS] = ACTIONS(12319), + [anon_sym_BSLASHglspl] = ACTIONS(12319), + [anon_sym_BSLASHGlspl] = ACTIONS(12319), + [anon_sym_BSLASHGLSpl] = ACTIONS(12319), + [anon_sym_BSLASHglsdisp] = ACTIONS(12319), + [anon_sym_BSLASHglslink] = ACTIONS(12319), + [anon_sym_BSLASHglstext] = ACTIONS(12319), + [anon_sym_BSLASHGlstext] = ACTIONS(12319), + [anon_sym_BSLASHGLStext] = ACTIONS(12319), + [anon_sym_BSLASHglsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12319), + [anon_sym_BSLASHglsplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSplural] = ACTIONS(12319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHglsname] = ACTIONS(12319), + [anon_sym_BSLASHGlsname] = ACTIONS(12319), + [anon_sym_BSLASHGLSname] = ACTIONS(12319), + [anon_sym_BSLASHglssymbol] = ACTIONS(12319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12319), + [anon_sym_BSLASHglsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12319), + [anon_sym_BSLASHglsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12319), + [anon_sym_BSLASHglsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12319), + [anon_sym_BSLASHglsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12319), + [anon_sym_BSLASHglsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12319), + [anon_sym_BSLASHnewacronym] = ACTIONS(12319), + [anon_sym_BSLASHacrshort] = ACTIONS(12319), + [anon_sym_BSLASHAcrshort] = ACTIONS(12319), + [anon_sym_BSLASHACRshort] = ACTIONS(12319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12319), + [anon_sym_BSLASHacrlong] = ACTIONS(12319), + [anon_sym_BSLASHAcrlong] = ACTIONS(12319), + [anon_sym_BSLASHACRlong] = ACTIONS(12319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12319), + [anon_sym_BSLASHacrfull] = ACTIONS(12319), + [anon_sym_BSLASHAcrfull] = ACTIONS(12319), + [anon_sym_BSLASHACRfull] = ACTIONS(12319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12319), + [anon_sym_BSLASHacs] = ACTIONS(12319), + [anon_sym_BSLASHAcs] = ACTIONS(12319), + [anon_sym_BSLASHacsp] = ACTIONS(12319), + [anon_sym_BSLASHAcsp] = ACTIONS(12319), + [anon_sym_BSLASHacl] = ACTIONS(12319), + [anon_sym_BSLASHAcl] = ACTIONS(12319), + [anon_sym_BSLASHaclp] = ACTIONS(12319), + [anon_sym_BSLASHAclp] = ACTIONS(12319), + [anon_sym_BSLASHacf] = ACTIONS(12319), + [anon_sym_BSLASHAcf] = ACTIONS(12319), + [anon_sym_BSLASHacfp] = ACTIONS(12319), + [anon_sym_BSLASHAcfp] = ACTIONS(12319), + [anon_sym_BSLASHac] = ACTIONS(12319), + [anon_sym_BSLASHAc] = ACTIONS(12319), + [anon_sym_BSLASHacp] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12319), + [anon_sym_BSLASHcolor] = ACTIONS(12319), + [anon_sym_BSLASHcolorbox] = ACTIONS(12319), + [anon_sym_BSLASHtextcolor] = ACTIONS(12319), + [anon_sym_BSLASHpagecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12319), + }, + [862] = { + [sym_generic_command_name] = ACTIONS(12263), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12263), + [aux_sym_chapter_token1] = ACTIONS(12263), + [aux_sym_section_token1] = ACTIONS(12263), + [aux_sym_subsection_token1] = ACTIONS(12263), + [aux_sym_subsubsection_token1] = ACTIONS(12263), + [aux_sym_paragraph_token1] = ACTIONS(12263), + [aux_sym_subparagraph_token1] = ACTIONS(12263), + [anon_sym_BSLASHitem] = ACTIONS(12263), + [anon_sym_LBRACK] = ACTIONS(12261), + [anon_sym_LBRACE] = ACTIONS(12261), + [anon_sym_LPAREN] = ACTIONS(12261), + [anon_sym_COMMA] = ACTIONS(12261), + [anon_sym_EQ] = ACTIONS(12261), + [sym_word] = ACTIONS(12261), + [sym_param] = ACTIONS(12261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12261), + [anon_sym_DOLLAR] = ACTIONS(12263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12261), + [anon_sym_BSLASHbegin] = ACTIONS(12263), + [anon_sym_BSLASHend] = ACTIONS(12263), + [anon_sym_BSLASHcaption] = ACTIONS(12263), + [anon_sym_BSLASHcite] = ACTIONS(12263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCite] = ACTIONS(12263), + [anon_sym_BSLASHnocite] = ACTIONS(12263), + [anon_sym_BSLASHcitet] = ACTIONS(12263), + [anon_sym_BSLASHcitep] = ACTIONS(12263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteauthor] = ACTIONS(12263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitetitle] = ACTIONS(12263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteyear] = ACTIONS(12263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitedate] = ACTIONS(12263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteurl] = ACTIONS(12263), + [anon_sym_BSLASHfullcite] = ACTIONS(12263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12263), + [anon_sym_BSLASHcitealt] = ACTIONS(12263), + [anon_sym_BSLASHcitealp] = ACTIONS(12263), + [anon_sym_BSLASHcitetext] = ACTIONS(12263), + [anon_sym_BSLASHparencite] = ACTIONS(12263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHParencite] = ACTIONS(12263), + [anon_sym_BSLASHfootcite] = ACTIONS(12263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12263), + [anon_sym_BSLASHtextcite] = ACTIONS(12263), + [anon_sym_BSLASHTextcite] = ACTIONS(12263), + [anon_sym_BSLASHsmartcite] = ACTIONS(12263), + [anon_sym_BSLASHSmartcite] = ACTIONS(12263), + [anon_sym_BSLASHsupercite] = ACTIONS(12263), + [anon_sym_BSLASHautocite] = ACTIONS(12263), + [anon_sym_BSLASHAutocite] = ACTIONS(12263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHvolcite] = ACTIONS(12263), + [anon_sym_BSLASHVolcite] = ACTIONS(12263), + [anon_sym_BSLASHpvolcite] = ACTIONS(12263), + [anon_sym_BSLASHPvolcite] = ACTIONS(12263), + [anon_sym_BSLASHfvolcite] = ACTIONS(12263), + [anon_sym_BSLASHftvolcite] = ACTIONS(12263), + [anon_sym_BSLASHsvolcite] = ACTIONS(12263), + [anon_sym_BSLASHSvolcite] = ACTIONS(12263), + [anon_sym_BSLASHtvolcite] = ACTIONS(12263), + [anon_sym_BSLASHTvolcite] = ACTIONS(12263), + [anon_sym_BSLASHavolcite] = ACTIONS(12263), + [anon_sym_BSLASHAvolcite] = ACTIONS(12263), + [anon_sym_BSLASHnotecite] = ACTIONS(12263), + [anon_sym_BSLASHpnotecite] = ACTIONS(12263), + [anon_sym_BSLASHPnotecite] = ACTIONS(12263), + [anon_sym_BSLASHfnotecite] = ACTIONS(12263), + [anon_sym_BSLASHusepackage] = ACTIONS(12263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12263), + [anon_sym_BSLASHinclude] = ACTIONS(12263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12263), + [anon_sym_BSLASHinput] = ACTIONS(12263), + [anon_sym_BSLASHsubfile] = ACTIONS(12263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12263), + [anon_sym_BSLASHbibliography] = ACTIONS(12263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12263), + [anon_sym_BSLASHincludesvg] = ACTIONS(12263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12263), + [anon_sym_BSLASHimport] = ACTIONS(12263), + [anon_sym_BSLASHsubimport] = ACTIONS(12263), + [anon_sym_BSLASHinputfrom] = ACTIONS(12263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12263), + [anon_sym_BSLASHincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHlabel] = ACTIONS(12263), + [anon_sym_BSLASHref] = ACTIONS(12263), + [anon_sym_BSLASHvref] = ACTIONS(12263), + [anon_sym_BSLASHVref] = ACTIONS(12263), + [anon_sym_BSLASHautoref] = ACTIONS(12263), + [anon_sym_BSLASHpageref] = ACTIONS(12263), + [anon_sym_BSLASHcref] = ACTIONS(12263), + [anon_sym_BSLASHCref] = ACTIONS(12263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnameCref] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHlabelcref] = ACTIONS(12263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12263), + [anon_sym_BSLASHeqref] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange] = ACTIONS(12263), + [anon_sym_BSLASHCrefrange] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewlabel] = ACTIONS(12263), + [anon_sym_BSLASHnewcommand] = ACTIONS(12263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12263), + [anon_sym_BSLASHgls] = ACTIONS(12263), + [anon_sym_BSLASHGls] = ACTIONS(12263), + [anon_sym_BSLASHGLS] = ACTIONS(12263), + [anon_sym_BSLASHglspl] = ACTIONS(12263), + [anon_sym_BSLASHGlspl] = ACTIONS(12263), + [anon_sym_BSLASHGLSpl] = ACTIONS(12263), + [anon_sym_BSLASHglsdisp] = ACTIONS(12263), + [anon_sym_BSLASHglslink] = ACTIONS(12263), + [anon_sym_BSLASHglstext] = ACTIONS(12263), + [anon_sym_BSLASHGlstext] = ACTIONS(12263), + [anon_sym_BSLASHGLStext] = ACTIONS(12263), + [anon_sym_BSLASHglsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12263), + [anon_sym_BSLASHglsplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSplural] = ACTIONS(12263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHglsname] = ACTIONS(12263), + [anon_sym_BSLASHGlsname] = ACTIONS(12263), + [anon_sym_BSLASHGLSname] = ACTIONS(12263), + [anon_sym_BSLASHglssymbol] = ACTIONS(12263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12263), + [anon_sym_BSLASHglsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12263), + [anon_sym_BSLASHglsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12263), + [anon_sym_BSLASHglsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12263), + [anon_sym_BSLASHglsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12263), + [anon_sym_BSLASHglsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12263), + [anon_sym_BSLASHnewacronym] = ACTIONS(12263), + [anon_sym_BSLASHacrshort] = ACTIONS(12263), + [anon_sym_BSLASHAcrshort] = ACTIONS(12263), + [anon_sym_BSLASHACRshort] = ACTIONS(12263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12263), + [anon_sym_BSLASHacrlong] = ACTIONS(12263), + [anon_sym_BSLASHAcrlong] = ACTIONS(12263), + [anon_sym_BSLASHACRlong] = ACTIONS(12263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12263), + [anon_sym_BSLASHacrfull] = ACTIONS(12263), + [anon_sym_BSLASHAcrfull] = ACTIONS(12263), + [anon_sym_BSLASHACRfull] = ACTIONS(12263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12263), + [anon_sym_BSLASHacs] = ACTIONS(12263), + [anon_sym_BSLASHAcs] = ACTIONS(12263), + [anon_sym_BSLASHacsp] = ACTIONS(12263), + [anon_sym_BSLASHAcsp] = ACTIONS(12263), + [anon_sym_BSLASHacl] = ACTIONS(12263), + [anon_sym_BSLASHAcl] = ACTIONS(12263), + [anon_sym_BSLASHaclp] = ACTIONS(12263), + [anon_sym_BSLASHAclp] = ACTIONS(12263), + [anon_sym_BSLASHacf] = ACTIONS(12263), + [anon_sym_BSLASHAcf] = ACTIONS(12263), + [anon_sym_BSLASHacfp] = ACTIONS(12263), + [anon_sym_BSLASHAcfp] = ACTIONS(12263), + [anon_sym_BSLASHac] = ACTIONS(12263), + [anon_sym_BSLASHAc] = ACTIONS(12263), + [anon_sym_BSLASHacp] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12263), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12263), + [anon_sym_BSLASHcolor] = ACTIONS(12263), + [anon_sym_BSLASHcolorbox] = ACTIONS(12263), + [anon_sym_BSLASHtextcolor] = ACTIONS(12263), + [anon_sym_BSLASHpagecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12263), + }, + [863] = { + [sym_generic_command_name] = ACTIONS(12259), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12259), + [aux_sym_chapter_token1] = ACTIONS(12259), + [aux_sym_section_token1] = ACTIONS(12259), + [aux_sym_subsection_token1] = ACTIONS(12259), + [aux_sym_subsubsection_token1] = ACTIONS(12259), + [aux_sym_paragraph_token1] = ACTIONS(12259), + [aux_sym_subparagraph_token1] = ACTIONS(12259), + [anon_sym_BSLASHitem] = ACTIONS(12259), + [anon_sym_LBRACK] = ACTIONS(12257), + [anon_sym_LBRACE] = ACTIONS(12257), + [anon_sym_LPAREN] = ACTIONS(12257), + [anon_sym_COMMA] = ACTIONS(12257), + [anon_sym_EQ] = ACTIONS(12257), + [sym_word] = ACTIONS(12257), + [sym_param] = ACTIONS(12257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12257), + [anon_sym_DOLLAR] = ACTIONS(12259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12257), + [anon_sym_BSLASHbegin] = ACTIONS(12259), + [anon_sym_BSLASHend] = ACTIONS(12259), + [anon_sym_BSLASHcaption] = ACTIONS(12259), + [anon_sym_BSLASHcite] = ACTIONS(12259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCite] = ACTIONS(12259), + [anon_sym_BSLASHnocite] = ACTIONS(12259), + [anon_sym_BSLASHcitet] = ACTIONS(12259), + [anon_sym_BSLASHcitep] = ACTIONS(12259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteauthor] = ACTIONS(12259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitetitle] = ACTIONS(12259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteyear] = ACTIONS(12259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitedate] = ACTIONS(12259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteurl] = ACTIONS(12259), + [anon_sym_BSLASHfullcite] = ACTIONS(12259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12259), + [anon_sym_BSLASHcitealt] = ACTIONS(12259), + [anon_sym_BSLASHcitealp] = ACTIONS(12259), + [anon_sym_BSLASHcitetext] = ACTIONS(12259), + [anon_sym_BSLASHparencite] = ACTIONS(12259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHParencite] = ACTIONS(12259), + [anon_sym_BSLASHfootcite] = ACTIONS(12259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12259), + [anon_sym_BSLASHtextcite] = ACTIONS(12259), + [anon_sym_BSLASHTextcite] = ACTIONS(12259), + [anon_sym_BSLASHsmartcite] = ACTIONS(12259), + [anon_sym_BSLASHSmartcite] = ACTIONS(12259), + [anon_sym_BSLASHsupercite] = ACTIONS(12259), + [anon_sym_BSLASHautocite] = ACTIONS(12259), + [anon_sym_BSLASHAutocite] = ACTIONS(12259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHvolcite] = ACTIONS(12259), + [anon_sym_BSLASHVolcite] = ACTIONS(12259), + [anon_sym_BSLASHpvolcite] = ACTIONS(12259), + [anon_sym_BSLASHPvolcite] = ACTIONS(12259), + [anon_sym_BSLASHfvolcite] = ACTIONS(12259), + [anon_sym_BSLASHftvolcite] = ACTIONS(12259), + [anon_sym_BSLASHsvolcite] = ACTIONS(12259), + [anon_sym_BSLASHSvolcite] = ACTIONS(12259), + [anon_sym_BSLASHtvolcite] = ACTIONS(12259), + [anon_sym_BSLASHTvolcite] = ACTIONS(12259), + [anon_sym_BSLASHavolcite] = ACTIONS(12259), + [anon_sym_BSLASHAvolcite] = ACTIONS(12259), + [anon_sym_BSLASHnotecite] = ACTIONS(12259), + [anon_sym_BSLASHpnotecite] = ACTIONS(12259), + [anon_sym_BSLASHPnotecite] = ACTIONS(12259), + [anon_sym_BSLASHfnotecite] = ACTIONS(12259), + [anon_sym_BSLASHusepackage] = ACTIONS(12259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12259), + [anon_sym_BSLASHinclude] = ACTIONS(12259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12259), + [anon_sym_BSLASHinput] = ACTIONS(12259), + [anon_sym_BSLASHsubfile] = ACTIONS(12259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12259), + [anon_sym_BSLASHbibliography] = ACTIONS(12259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12259), + [anon_sym_BSLASHincludesvg] = ACTIONS(12259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12259), + [anon_sym_BSLASHimport] = ACTIONS(12259), + [anon_sym_BSLASHsubimport] = ACTIONS(12259), + [anon_sym_BSLASHinputfrom] = ACTIONS(12259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12259), + [anon_sym_BSLASHincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHlabel] = ACTIONS(12259), + [anon_sym_BSLASHref] = ACTIONS(12259), + [anon_sym_BSLASHvref] = ACTIONS(12259), + [anon_sym_BSLASHVref] = ACTIONS(12259), + [anon_sym_BSLASHautoref] = ACTIONS(12259), + [anon_sym_BSLASHpageref] = ACTIONS(12259), + [anon_sym_BSLASHcref] = ACTIONS(12259), + [anon_sym_BSLASHCref] = ACTIONS(12259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnameCref] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHlabelcref] = ACTIONS(12259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12259), + [anon_sym_BSLASHeqref] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange] = ACTIONS(12259), + [anon_sym_BSLASHCrefrange] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewlabel] = ACTIONS(12259), + [anon_sym_BSLASHnewcommand] = ACTIONS(12259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12259), + [anon_sym_BSLASHgls] = ACTIONS(12259), + [anon_sym_BSLASHGls] = ACTIONS(12259), + [anon_sym_BSLASHGLS] = ACTIONS(12259), + [anon_sym_BSLASHglspl] = ACTIONS(12259), + [anon_sym_BSLASHGlspl] = ACTIONS(12259), + [anon_sym_BSLASHGLSpl] = ACTIONS(12259), + [anon_sym_BSLASHglsdisp] = ACTIONS(12259), + [anon_sym_BSLASHglslink] = ACTIONS(12259), + [anon_sym_BSLASHglstext] = ACTIONS(12259), + [anon_sym_BSLASHGlstext] = ACTIONS(12259), + [anon_sym_BSLASHGLStext] = ACTIONS(12259), + [anon_sym_BSLASHglsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12259), + [anon_sym_BSLASHglsplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSplural] = ACTIONS(12259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHglsname] = ACTIONS(12259), + [anon_sym_BSLASHGlsname] = ACTIONS(12259), + [anon_sym_BSLASHGLSname] = ACTIONS(12259), + [anon_sym_BSLASHglssymbol] = ACTIONS(12259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12259), + [anon_sym_BSLASHglsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12259), + [anon_sym_BSLASHglsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12259), + [anon_sym_BSLASHglsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12259), + [anon_sym_BSLASHglsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12259), + [anon_sym_BSLASHglsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12259), + [anon_sym_BSLASHnewacronym] = ACTIONS(12259), + [anon_sym_BSLASHacrshort] = ACTIONS(12259), + [anon_sym_BSLASHAcrshort] = ACTIONS(12259), + [anon_sym_BSLASHACRshort] = ACTIONS(12259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12259), + [anon_sym_BSLASHacrlong] = ACTIONS(12259), + [anon_sym_BSLASHAcrlong] = ACTIONS(12259), + [anon_sym_BSLASHACRlong] = ACTIONS(12259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12259), + [anon_sym_BSLASHacrfull] = ACTIONS(12259), + [anon_sym_BSLASHAcrfull] = ACTIONS(12259), + [anon_sym_BSLASHACRfull] = ACTIONS(12259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12259), + [anon_sym_BSLASHacs] = ACTIONS(12259), + [anon_sym_BSLASHAcs] = ACTIONS(12259), + [anon_sym_BSLASHacsp] = ACTIONS(12259), + [anon_sym_BSLASHAcsp] = ACTIONS(12259), + [anon_sym_BSLASHacl] = ACTIONS(12259), + [anon_sym_BSLASHAcl] = ACTIONS(12259), + [anon_sym_BSLASHaclp] = ACTIONS(12259), + [anon_sym_BSLASHAclp] = ACTIONS(12259), + [anon_sym_BSLASHacf] = ACTIONS(12259), + [anon_sym_BSLASHAcf] = ACTIONS(12259), + [anon_sym_BSLASHacfp] = ACTIONS(12259), + [anon_sym_BSLASHAcfp] = ACTIONS(12259), + [anon_sym_BSLASHac] = ACTIONS(12259), + [anon_sym_BSLASHAc] = ACTIONS(12259), + [anon_sym_BSLASHacp] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12259), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12259), + [anon_sym_BSLASHcolor] = ACTIONS(12259), + [anon_sym_BSLASHcolorbox] = ACTIONS(12259), + [anon_sym_BSLASHtextcolor] = ACTIONS(12259), + [anon_sym_BSLASHpagecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12259), + }, + [864] = { + [sym_generic_command_name] = ACTIONS(12251), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12251), + [aux_sym_chapter_token1] = ACTIONS(12251), + [aux_sym_section_token1] = ACTIONS(12251), + [aux_sym_subsection_token1] = ACTIONS(12251), + [aux_sym_subsubsection_token1] = ACTIONS(12251), + [aux_sym_paragraph_token1] = ACTIONS(12251), + [aux_sym_subparagraph_token1] = ACTIONS(12251), + [anon_sym_BSLASHitem] = ACTIONS(12251), + [anon_sym_LBRACK] = ACTIONS(12249), + [anon_sym_LBRACE] = ACTIONS(12249), + [anon_sym_LPAREN] = ACTIONS(12249), + [anon_sym_COMMA] = ACTIONS(12249), + [anon_sym_EQ] = ACTIONS(12249), + [sym_word] = ACTIONS(12249), + [sym_param] = ACTIONS(12249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12249), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12249), + [anon_sym_DOLLAR] = ACTIONS(12251), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12249), + [anon_sym_BSLASHbegin] = ACTIONS(12251), + [anon_sym_BSLASHend] = ACTIONS(12251), + [anon_sym_BSLASHcaption] = ACTIONS(12251), + [anon_sym_BSLASHcite] = ACTIONS(12251), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCite] = ACTIONS(12251), + [anon_sym_BSLASHnocite] = ACTIONS(12251), + [anon_sym_BSLASHcitet] = ACTIONS(12251), + [anon_sym_BSLASHcitep] = ACTIONS(12251), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteauthor] = ACTIONS(12251), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12251), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitetitle] = ACTIONS(12251), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteyear] = ACTIONS(12251), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitedate] = ACTIONS(12251), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteurl] = ACTIONS(12251), + [anon_sym_BSLASHfullcite] = ACTIONS(12251), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12251), + [anon_sym_BSLASHcitealt] = ACTIONS(12251), + [anon_sym_BSLASHcitealp] = ACTIONS(12251), + [anon_sym_BSLASHcitetext] = ACTIONS(12251), + [anon_sym_BSLASHparencite] = ACTIONS(12251), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHParencite] = ACTIONS(12251), + [anon_sym_BSLASHfootcite] = ACTIONS(12251), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12251), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12251), + [anon_sym_BSLASHtextcite] = ACTIONS(12251), + [anon_sym_BSLASHTextcite] = ACTIONS(12251), + [anon_sym_BSLASHsmartcite] = ACTIONS(12251), + [anon_sym_BSLASHSmartcite] = ACTIONS(12251), + [anon_sym_BSLASHsupercite] = ACTIONS(12251), + [anon_sym_BSLASHautocite] = ACTIONS(12251), + [anon_sym_BSLASHAutocite] = ACTIONS(12251), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHvolcite] = ACTIONS(12251), + [anon_sym_BSLASHVolcite] = ACTIONS(12251), + [anon_sym_BSLASHpvolcite] = ACTIONS(12251), + [anon_sym_BSLASHPvolcite] = ACTIONS(12251), + [anon_sym_BSLASHfvolcite] = ACTIONS(12251), + [anon_sym_BSLASHftvolcite] = ACTIONS(12251), + [anon_sym_BSLASHsvolcite] = ACTIONS(12251), + [anon_sym_BSLASHSvolcite] = ACTIONS(12251), + [anon_sym_BSLASHtvolcite] = ACTIONS(12251), + [anon_sym_BSLASHTvolcite] = ACTIONS(12251), + [anon_sym_BSLASHavolcite] = ACTIONS(12251), + [anon_sym_BSLASHAvolcite] = ACTIONS(12251), + [anon_sym_BSLASHnotecite] = ACTIONS(12251), + [anon_sym_BSLASHpnotecite] = ACTIONS(12251), + [anon_sym_BSLASHPnotecite] = ACTIONS(12251), + [anon_sym_BSLASHfnotecite] = ACTIONS(12251), + [anon_sym_BSLASHusepackage] = ACTIONS(12251), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12251), + [anon_sym_BSLASHinclude] = ACTIONS(12251), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12251), + [anon_sym_BSLASHinput] = ACTIONS(12251), + [anon_sym_BSLASHsubfile] = ACTIONS(12251), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12251), + [anon_sym_BSLASHbibliography] = ACTIONS(12251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12251), + [anon_sym_BSLASHincludesvg] = ACTIONS(12251), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12251), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12251), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12251), + [anon_sym_BSLASHimport] = ACTIONS(12251), + [anon_sym_BSLASHsubimport] = ACTIONS(12251), + [anon_sym_BSLASHinputfrom] = ACTIONS(12251), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12251), + [anon_sym_BSLASHincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHlabel] = ACTIONS(12251), + [anon_sym_BSLASHref] = ACTIONS(12251), + [anon_sym_BSLASHvref] = ACTIONS(12251), + [anon_sym_BSLASHVref] = ACTIONS(12251), + [anon_sym_BSLASHautoref] = ACTIONS(12251), + [anon_sym_BSLASHpageref] = ACTIONS(12251), + [anon_sym_BSLASHcref] = ACTIONS(12251), + [anon_sym_BSLASHCref] = ACTIONS(12251), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnameCref] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHlabelcref] = ACTIONS(12251), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12251), + [anon_sym_BSLASHeqref] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange] = ACTIONS(12251), + [anon_sym_BSLASHCrefrange] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewlabel] = ACTIONS(12251), + [anon_sym_BSLASHnewcommand] = ACTIONS(12251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12251), + [anon_sym_BSLASHgls] = ACTIONS(12251), + [anon_sym_BSLASHGls] = ACTIONS(12251), + [anon_sym_BSLASHGLS] = ACTIONS(12251), + [anon_sym_BSLASHglspl] = ACTIONS(12251), + [anon_sym_BSLASHGlspl] = ACTIONS(12251), + [anon_sym_BSLASHGLSpl] = ACTIONS(12251), + [anon_sym_BSLASHglsdisp] = ACTIONS(12251), + [anon_sym_BSLASHglslink] = ACTIONS(12251), + [anon_sym_BSLASHglstext] = ACTIONS(12251), + [anon_sym_BSLASHGlstext] = ACTIONS(12251), + [anon_sym_BSLASHGLStext] = ACTIONS(12251), + [anon_sym_BSLASHglsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12251), + [anon_sym_BSLASHglsplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSplural] = ACTIONS(12251), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHglsname] = ACTIONS(12251), + [anon_sym_BSLASHGlsname] = ACTIONS(12251), + [anon_sym_BSLASHGLSname] = ACTIONS(12251), + [anon_sym_BSLASHglssymbol] = ACTIONS(12251), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12251), + [anon_sym_BSLASHglsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12251), + [anon_sym_BSLASHglsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12251), + [anon_sym_BSLASHglsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12251), + [anon_sym_BSLASHglsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12251), + [anon_sym_BSLASHglsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12251), + [anon_sym_BSLASHnewacronym] = ACTIONS(12251), + [anon_sym_BSLASHacrshort] = ACTIONS(12251), + [anon_sym_BSLASHAcrshort] = ACTIONS(12251), + [anon_sym_BSLASHACRshort] = ACTIONS(12251), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12251), + [anon_sym_BSLASHacrlong] = ACTIONS(12251), + [anon_sym_BSLASHAcrlong] = ACTIONS(12251), + [anon_sym_BSLASHACRlong] = ACTIONS(12251), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12251), + [anon_sym_BSLASHacrfull] = ACTIONS(12251), + [anon_sym_BSLASHAcrfull] = ACTIONS(12251), + [anon_sym_BSLASHACRfull] = ACTIONS(12251), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12251), + [anon_sym_BSLASHacs] = ACTIONS(12251), + [anon_sym_BSLASHAcs] = ACTIONS(12251), + [anon_sym_BSLASHacsp] = ACTIONS(12251), + [anon_sym_BSLASHAcsp] = ACTIONS(12251), + [anon_sym_BSLASHacl] = ACTIONS(12251), + [anon_sym_BSLASHAcl] = ACTIONS(12251), + [anon_sym_BSLASHaclp] = ACTIONS(12251), + [anon_sym_BSLASHAclp] = ACTIONS(12251), + [anon_sym_BSLASHacf] = ACTIONS(12251), + [anon_sym_BSLASHAcf] = ACTIONS(12251), + [anon_sym_BSLASHacfp] = ACTIONS(12251), + [anon_sym_BSLASHAcfp] = ACTIONS(12251), + [anon_sym_BSLASHac] = ACTIONS(12251), + [anon_sym_BSLASHAc] = ACTIONS(12251), + [anon_sym_BSLASHacp] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12251), + [anon_sym_BSLASHcolor] = ACTIONS(12251), + [anon_sym_BSLASHcolorbox] = ACTIONS(12251), + [anon_sym_BSLASHtextcolor] = ACTIONS(12251), + [anon_sym_BSLASHpagecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12251), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12251), + }, + [865] = { + [sym_generic_command_name] = ACTIONS(12381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12381), + [aux_sym_chapter_token1] = ACTIONS(12381), + [aux_sym_section_token1] = ACTIONS(12381), + [aux_sym_subsection_token1] = ACTIONS(12381), + [aux_sym_subsubsection_token1] = ACTIONS(12381), + [aux_sym_paragraph_token1] = ACTIONS(12381), + [aux_sym_subparagraph_token1] = ACTIONS(12381), + [anon_sym_BSLASHitem] = ACTIONS(12381), + [anon_sym_LBRACK] = ACTIONS(12379), + [anon_sym_LBRACE] = ACTIONS(12379), + [anon_sym_LPAREN] = ACTIONS(12379), + [anon_sym_COMMA] = ACTIONS(12379), + [anon_sym_EQ] = ACTIONS(12379), + [sym_word] = ACTIONS(12379), + [sym_param] = ACTIONS(12379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12379), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12379), + [anon_sym_DOLLAR] = ACTIONS(12381), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12379), + [anon_sym_BSLASHbegin] = ACTIONS(12381), + [anon_sym_BSLASHcaption] = ACTIONS(12381), + [anon_sym_BSLASHcite] = ACTIONS(12381), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCite] = ACTIONS(12381), + [anon_sym_BSLASHnocite] = ACTIONS(12381), + [anon_sym_BSLASHcitet] = ACTIONS(12381), + [anon_sym_BSLASHcitep] = ACTIONS(12381), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteauthor] = ACTIONS(12381), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12381), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitetitle] = ACTIONS(12381), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteyear] = ACTIONS(12381), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitedate] = ACTIONS(12381), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteurl] = ACTIONS(12381), + [anon_sym_BSLASHfullcite] = ACTIONS(12381), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12381), + [anon_sym_BSLASHcitealt] = ACTIONS(12381), + [anon_sym_BSLASHcitealp] = ACTIONS(12381), + [anon_sym_BSLASHcitetext] = ACTIONS(12381), + [anon_sym_BSLASHparencite] = ACTIONS(12381), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHParencite] = ACTIONS(12381), + [anon_sym_BSLASHfootcite] = ACTIONS(12381), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12381), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12381), + [anon_sym_BSLASHtextcite] = ACTIONS(12381), + [anon_sym_BSLASHTextcite] = ACTIONS(12381), + [anon_sym_BSLASHsmartcite] = ACTIONS(12381), + [anon_sym_BSLASHSmartcite] = ACTIONS(12381), + [anon_sym_BSLASHsupercite] = ACTIONS(12381), + [anon_sym_BSLASHautocite] = ACTIONS(12381), + [anon_sym_BSLASHAutocite] = ACTIONS(12381), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHvolcite] = ACTIONS(12381), + [anon_sym_BSLASHVolcite] = ACTIONS(12381), + [anon_sym_BSLASHpvolcite] = ACTIONS(12381), + [anon_sym_BSLASHPvolcite] = ACTIONS(12381), + [anon_sym_BSLASHfvolcite] = ACTIONS(12381), + [anon_sym_BSLASHftvolcite] = ACTIONS(12381), + [anon_sym_BSLASHsvolcite] = ACTIONS(12381), + [anon_sym_BSLASHSvolcite] = ACTIONS(12381), + [anon_sym_BSLASHtvolcite] = ACTIONS(12381), + [anon_sym_BSLASHTvolcite] = ACTIONS(12381), + [anon_sym_BSLASHavolcite] = ACTIONS(12381), + [anon_sym_BSLASHAvolcite] = ACTIONS(12381), + [anon_sym_BSLASHnotecite] = ACTIONS(12381), + [anon_sym_BSLASHpnotecite] = ACTIONS(12381), + [anon_sym_BSLASHPnotecite] = ACTIONS(12381), + [anon_sym_BSLASHfnotecite] = ACTIONS(12381), + [anon_sym_BSLASHusepackage] = ACTIONS(12381), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12381), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12381), + [anon_sym_BSLASHinclude] = ACTIONS(12381), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12381), + [anon_sym_BSLASHinput] = ACTIONS(12381), + [anon_sym_BSLASHsubfile] = ACTIONS(12381), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12381), + [anon_sym_BSLASHbibliography] = ACTIONS(12381), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12381), + [anon_sym_BSLASHincludesvg] = ACTIONS(12381), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12381), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12381), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12381), + [anon_sym_BSLASHimport] = ACTIONS(12381), + [anon_sym_BSLASHsubimport] = ACTIONS(12381), + [anon_sym_BSLASHinputfrom] = ACTIONS(12381), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12381), + [anon_sym_BSLASHincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHlabel] = ACTIONS(12381), + [anon_sym_BSLASHref] = ACTIONS(12381), + [anon_sym_BSLASHvref] = ACTIONS(12381), + [anon_sym_BSLASHVref] = ACTIONS(12381), + [anon_sym_BSLASHautoref] = ACTIONS(12381), + [anon_sym_BSLASHpageref] = ACTIONS(12381), + [anon_sym_BSLASHcref] = ACTIONS(12381), + [anon_sym_BSLASHCref] = ACTIONS(12381), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnameCref] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHlabelcref] = ACTIONS(12381), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12381), + [anon_sym_BSLASHeqref] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange] = ACTIONS(12381), + [anon_sym_BSLASHCrefrange] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewlabel] = ACTIONS(12381), + [anon_sym_BSLASHnewcommand] = ACTIONS(12381), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12381), + [anon_sym_BSLASHgls] = ACTIONS(12381), + [anon_sym_BSLASHGls] = ACTIONS(12381), + [anon_sym_BSLASHGLS] = ACTIONS(12381), + [anon_sym_BSLASHglspl] = ACTIONS(12381), + [anon_sym_BSLASHGlspl] = ACTIONS(12381), + [anon_sym_BSLASHGLSpl] = ACTIONS(12381), + [anon_sym_BSLASHglsdisp] = ACTIONS(12381), + [anon_sym_BSLASHglslink] = ACTIONS(12381), + [anon_sym_BSLASHglstext] = ACTIONS(12381), + [anon_sym_BSLASHGlstext] = ACTIONS(12381), + [anon_sym_BSLASHGLStext] = ACTIONS(12381), + [anon_sym_BSLASHglsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12381), + [anon_sym_BSLASHglsplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSplural] = ACTIONS(12381), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHglsname] = ACTIONS(12381), + [anon_sym_BSLASHGlsname] = ACTIONS(12381), + [anon_sym_BSLASHGLSname] = ACTIONS(12381), + [anon_sym_BSLASHglssymbol] = ACTIONS(12381), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12381), + [anon_sym_BSLASHglsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12381), + [anon_sym_BSLASHglsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12381), + [anon_sym_BSLASHglsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12381), + [anon_sym_BSLASHglsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12381), + [anon_sym_BSLASHglsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12381), + [anon_sym_BSLASHnewacronym] = ACTIONS(12381), + [anon_sym_BSLASHacrshort] = ACTIONS(12381), + [anon_sym_BSLASHAcrshort] = ACTIONS(12381), + [anon_sym_BSLASHACRshort] = ACTIONS(12381), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12381), + [anon_sym_BSLASHacrlong] = ACTIONS(12381), + [anon_sym_BSLASHAcrlong] = ACTIONS(12381), + [anon_sym_BSLASHACRlong] = ACTIONS(12381), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12381), + [anon_sym_BSLASHacrfull] = ACTIONS(12381), + [anon_sym_BSLASHAcrfull] = ACTIONS(12381), + [anon_sym_BSLASHACRfull] = ACTIONS(12381), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12381), + [anon_sym_BSLASHacs] = ACTIONS(12381), + [anon_sym_BSLASHAcs] = ACTIONS(12381), + [anon_sym_BSLASHacsp] = ACTIONS(12381), + [anon_sym_BSLASHAcsp] = ACTIONS(12381), + [anon_sym_BSLASHacl] = ACTIONS(12381), + [anon_sym_BSLASHAcl] = ACTIONS(12381), + [anon_sym_BSLASHaclp] = ACTIONS(12381), + [anon_sym_BSLASHAclp] = ACTIONS(12381), + [anon_sym_BSLASHacf] = ACTIONS(12381), + [anon_sym_BSLASHAcf] = ACTIONS(12381), + [anon_sym_BSLASHacfp] = ACTIONS(12381), + [anon_sym_BSLASHAcfp] = ACTIONS(12381), + [anon_sym_BSLASHac] = ACTIONS(12381), + [anon_sym_BSLASHAc] = ACTIONS(12381), + [anon_sym_BSLASHacp] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12381), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12381), + [anon_sym_BSLASHcolor] = ACTIONS(12381), + [anon_sym_BSLASHcolorbox] = ACTIONS(12381), + [anon_sym_BSLASHtextcolor] = ACTIONS(12381), + [anon_sym_BSLASHpagecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12381), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12381), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12381), + }, + [866] = { + [sym_generic_command_name] = ACTIONS(12189), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12189), + [aux_sym_chapter_token1] = ACTIONS(12189), + [aux_sym_section_token1] = ACTIONS(12189), + [aux_sym_subsection_token1] = ACTIONS(12189), + [aux_sym_subsubsection_token1] = ACTIONS(12189), + [aux_sym_paragraph_token1] = ACTIONS(12189), + [aux_sym_subparagraph_token1] = ACTIONS(12189), + [anon_sym_BSLASHitem] = ACTIONS(12189), + [anon_sym_LBRACK] = ACTIONS(12187), + [anon_sym_LBRACE] = ACTIONS(12187), + [anon_sym_LPAREN] = ACTIONS(12187), + [anon_sym_COMMA] = ACTIONS(12187), + [anon_sym_EQ] = ACTIONS(12187), + [sym_word] = ACTIONS(12187), + [sym_param] = ACTIONS(12187), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12187), + [anon_sym_DOLLAR] = ACTIONS(12189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12187), + [anon_sym_BSLASHbegin] = ACTIONS(12189), + [anon_sym_BSLASHend] = ACTIONS(12189), + [anon_sym_BSLASHcaption] = ACTIONS(12189), + [anon_sym_BSLASHcite] = ACTIONS(12189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCite] = ACTIONS(12189), + [anon_sym_BSLASHnocite] = ACTIONS(12189), + [anon_sym_BSLASHcitet] = ACTIONS(12189), + [anon_sym_BSLASHcitep] = ACTIONS(12189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteauthor] = ACTIONS(12189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitetitle] = ACTIONS(12189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteyear] = ACTIONS(12189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitedate] = ACTIONS(12189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteurl] = ACTIONS(12189), + [anon_sym_BSLASHfullcite] = ACTIONS(12189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12189), + [anon_sym_BSLASHcitealt] = ACTIONS(12189), + [anon_sym_BSLASHcitealp] = ACTIONS(12189), + [anon_sym_BSLASHcitetext] = ACTIONS(12189), + [anon_sym_BSLASHparencite] = ACTIONS(12189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHParencite] = ACTIONS(12189), + [anon_sym_BSLASHfootcite] = ACTIONS(12189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12189), + [anon_sym_BSLASHtextcite] = ACTIONS(12189), + [anon_sym_BSLASHTextcite] = ACTIONS(12189), + [anon_sym_BSLASHsmartcite] = ACTIONS(12189), + [anon_sym_BSLASHSmartcite] = ACTIONS(12189), + [anon_sym_BSLASHsupercite] = ACTIONS(12189), + [anon_sym_BSLASHautocite] = ACTIONS(12189), + [anon_sym_BSLASHAutocite] = ACTIONS(12189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHvolcite] = ACTIONS(12189), + [anon_sym_BSLASHVolcite] = ACTIONS(12189), + [anon_sym_BSLASHpvolcite] = ACTIONS(12189), + [anon_sym_BSLASHPvolcite] = ACTIONS(12189), + [anon_sym_BSLASHfvolcite] = ACTIONS(12189), + [anon_sym_BSLASHftvolcite] = ACTIONS(12189), + [anon_sym_BSLASHsvolcite] = ACTIONS(12189), + [anon_sym_BSLASHSvolcite] = ACTIONS(12189), + [anon_sym_BSLASHtvolcite] = ACTIONS(12189), + [anon_sym_BSLASHTvolcite] = ACTIONS(12189), + [anon_sym_BSLASHavolcite] = ACTIONS(12189), + [anon_sym_BSLASHAvolcite] = ACTIONS(12189), + [anon_sym_BSLASHnotecite] = ACTIONS(12189), + [anon_sym_BSLASHpnotecite] = ACTIONS(12189), + [anon_sym_BSLASHPnotecite] = ACTIONS(12189), + [anon_sym_BSLASHfnotecite] = ACTIONS(12189), + [anon_sym_BSLASHusepackage] = ACTIONS(12189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12189), + [anon_sym_BSLASHinclude] = ACTIONS(12189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12189), + [anon_sym_BSLASHinput] = ACTIONS(12189), + [anon_sym_BSLASHsubfile] = ACTIONS(12189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12189), + [anon_sym_BSLASHbibliography] = ACTIONS(12189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12189), + [anon_sym_BSLASHincludesvg] = ACTIONS(12189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12189), + [anon_sym_BSLASHimport] = ACTIONS(12189), + [anon_sym_BSLASHsubimport] = ACTIONS(12189), + [anon_sym_BSLASHinputfrom] = ACTIONS(12189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12189), + [anon_sym_BSLASHincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHlabel] = ACTIONS(12189), + [anon_sym_BSLASHref] = ACTIONS(12189), + [anon_sym_BSLASHvref] = ACTIONS(12189), + [anon_sym_BSLASHVref] = ACTIONS(12189), + [anon_sym_BSLASHautoref] = ACTIONS(12189), + [anon_sym_BSLASHpageref] = ACTIONS(12189), + [anon_sym_BSLASHcref] = ACTIONS(12189), + [anon_sym_BSLASHCref] = ACTIONS(12189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnameCref] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHlabelcref] = ACTIONS(12189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12189), + [anon_sym_BSLASHeqref] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange] = ACTIONS(12189), + [anon_sym_BSLASHCrefrange] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewlabel] = ACTIONS(12189), + [anon_sym_BSLASHnewcommand] = ACTIONS(12189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12189), + [anon_sym_BSLASHgls] = ACTIONS(12189), + [anon_sym_BSLASHGls] = ACTIONS(12189), + [anon_sym_BSLASHGLS] = ACTIONS(12189), + [anon_sym_BSLASHglspl] = ACTIONS(12189), + [anon_sym_BSLASHGlspl] = ACTIONS(12189), + [anon_sym_BSLASHGLSpl] = ACTIONS(12189), + [anon_sym_BSLASHglsdisp] = ACTIONS(12189), + [anon_sym_BSLASHglslink] = ACTIONS(12189), + [anon_sym_BSLASHglstext] = ACTIONS(12189), + [anon_sym_BSLASHGlstext] = ACTIONS(12189), + [anon_sym_BSLASHGLStext] = ACTIONS(12189), + [anon_sym_BSLASHglsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12189), + [anon_sym_BSLASHglsplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSplural] = ACTIONS(12189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHglsname] = ACTIONS(12189), + [anon_sym_BSLASHGlsname] = ACTIONS(12189), + [anon_sym_BSLASHGLSname] = ACTIONS(12189), + [anon_sym_BSLASHglssymbol] = ACTIONS(12189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12189), + [anon_sym_BSLASHglsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12189), + [anon_sym_BSLASHglsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12189), + [anon_sym_BSLASHglsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12189), + [anon_sym_BSLASHglsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12189), + [anon_sym_BSLASHglsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12189), + [anon_sym_BSLASHnewacronym] = ACTIONS(12189), + [anon_sym_BSLASHacrshort] = ACTIONS(12189), + [anon_sym_BSLASHAcrshort] = ACTIONS(12189), + [anon_sym_BSLASHACRshort] = ACTIONS(12189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12189), + [anon_sym_BSLASHacrlong] = ACTIONS(12189), + [anon_sym_BSLASHAcrlong] = ACTIONS(12189), + [anon_sym_BSLASHACRlong] = ACTIONS(12189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12189), + [anon_sym_BSLASHacrfull] = ACTIONS(12189), + [anon_sym_BSLASHAcrfull] = ACTIONS(12189), + [anon_sym_BSLASHACRfull] = ACTIONS(12189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12189), + [anon_sym_BSLASHacs] = ACTIONS(12189), + [anon_sym_BSLASHAcs] = ACTIONS(12189), + [anon_sym_BSLASHacsp] = ACTIONS(12189), + [anon_sym_BSLASHAcsp] = ACTIONS(12189), + [anon_sym_BSLASHacl] = ACTIONS(12189), + [anon_sym_BSLASHAcl] = ACTIONS(12189), + [anon_sym_BSLASHaclp] = ACTIONS(12189), + [anon_sym_BSLASHAclp] = ACTIONS(12189), + [anon_sym_BSLASHacf] = ACTIONS(12189), + [anon_sym_BSLASHAcf] = ACTIONS(12189), + [anon_sym_BSLASHacfp] = ACTIONS(12189), + [anon_sym_BSLASHAcfp] = ACTIONS(12189), + [anon_sym_BSLASHac] = ACTIONS(12189), + [anon_sym_BSLASHAc] = ACTIONS(12189), + [anon_sym_BSLASHacp] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12189), + [anon_sym_BSLASHcolor] = ACTIONS(12189), + [anon_sym_BSLASHcolorbox] = ACTIONS(12189), + [anon_sym_BSLASHtextcolor] = ACTIONS(12189), + [anon_sym_BSLASHpagecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12189), + }, + [867] = { + [sym_generic_command_name] = ACTIONS(12247), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12247), + [aux_sym_chapter_token1] = ACTIONS(12247), + [aux_sym_section_token1] = ACTIONS(12247), + [aux_sym_subsection_token1] = ACTIONS(12247), + [aux_sym_subsubsection_token1] = ACTIONS(12247), + [aux_sym_paragraph_token1] = ACTIONS(12247), + [aux_sym_subparagraph_token1] = ACTIONS(12247), + [anon_sym_BSLASHitem] = ACTIONS(12247), + [anon_sym_LBRACK] = ACTIONS(12245), + [anon_sym_LBRACE] = ACTIONS(12245), + [anon_sym_LPAREN] = ACTIONS(12245), + [anon_sym_COMMA] = ACTIONS(12245), + [anon_sym_EQ] = ACTIONS(12245), + [sym_word] = ACTIONS(12245), + [sym_param] = ACTIONS(12245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12245), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12245), + [anon_sym_DOLLAR] = ACTIONS(12247), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12245), + [anon_sym_BSLASHbegin] = ACTIONS(12247), + [anon_sym_BSLASHend] = ACTIONS(12247), + [anon_sym_BSLASHcaption] = ACTIONS(12247), + [anon_sym_BSLASHcite] = ACTIONS(12247), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCite] = ACTIONS(12247), + [anon_sym_BSLASHnocite] = ACTIONS(12247), + [anon_sym_BSLASHcitet] = ACTIONS(12247), + [anon_sym_BSLASHcitep] = ACTIONS(12247), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteauthor] = ACTIONS(12247), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12247), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitetitle] = ACTIONS(12247), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteyear] = ACTIONS(12247), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitedate] = ACTIONS(12247), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteurl] = ACTIONS(12247), + [anon_sym_BSLASHfullcite] = ACTIONS(12247), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12247), + [anon_sym_BSLASHcitealt] = ACTIONS(12247), + [anon_sym_BSLASHcitealp] = ACTIONS(12247), + [anon_sym_BSLASHcitetext] = ACTIONS(12247), + [anon_sym_BSLASHparencite] = ACTIONS(12247), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHParencite] = ACTIONS(12247), + [anon_sym_BSLASHfootcite] = ACTIONS(12247), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12247), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12247), + [anon_sym_BSLASHtextcite] = ACTIONS(12247), + [anon_sym_BSLASHTextcite] = ACTIONS(12247), + [anon_sym_BSLASHsmartcite] = ACTIONS(12247), + [anon_sym_BSLASHSmartcite] = ACTIONS(12247), + [anon_sym_BSLASHsupercite] = ACTIONS(12247), + [anon_sym_BSLASHautocite] = ACTIONS(12247), + [anon_sym_BSLASHAutocite] = ACTIONS(12247), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHvolcite] = ACTIONS(12247), + [anon_sym_BSLASHVolcite] = ACTIONS(12247), + [anon_sym_BSLASHpvolcite] = ACTIONS(12247), + [anon_sym_BSLASHPvolcite] = ACTIONS(12247), + [anon_sym_BSLASHfvolcite] = ACTIONS(12247), + [anon_sym_BSLASHftvolcite] = ACTIONS(12247), + [anon_sym_BSLASHsvolcite] = ACTIONS(12247), + [anon_sym_BSLASHSvolcite] = ACTIONS(12247), + [anon_sym_BSLASHtvolcite] = ACTIONS(12247), + [anon_sym_BSLASHTvolcite] = ACTIONS(12247), + [anon_sym_BSLASHavolcite] = ACTIONS(12247), + [anon_sym_BSLASHAvolcite] = ACTIONS(12247), + [anon_sym_BSLASHnotecite] = ACTIONS(12247), + [anon_sym_BSLASHpnotecite] = ACTIONS(12247), + [anon_sym_BSLASHPnotecite] = ACTIONS(12247), + [anon_sym_BSLASHfnotecite] = ACTIONS(12247), + [anon_sym_BSLASHusepackage] = ACTIONS(12247), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12247), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12247), + [anon_sym_BSLASHinclude] = ACTIONS(12247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12247), + [anon_sym_BSLASHinput] = ACTIONS(12247), + [anon_sym_BSLASHsubfile] = ACTIONS(12247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12247), + [anon_sym_BSLASHbibliography] = ACTIONS(12247), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12247), + [anon_sym_BSLASHincludesvg] = ACTIONS(12247), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12247), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12247), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12247), + [anon_sym_BSLASHimport] = ACTIONS(12247), + [anon_sym_BSLASHsubimport] = ACTIONS(12247), + [anon_sym_BSLASHinputfrom] = ACTIONS(12247), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12247), + [anon_sym_BSLASHincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHlabel] = ACTIONS(12247), + [anon_sym_BSLASHref] = ACTIONS(12247), + [anon_sym_BSLASHvref] = ACTIONS(12247), + [anon_sym_BSLASHVref] = ACTIONS(12247), + [anon_sym_BSLASHautoref] = ACTIONS(12247), + [anon_sym_BSLASHpageref] = ACTIONS(12247), + [anon_sym_BSLASHcref] = ACTIONS(12247), + [anon_sym_BSLASHCref] = ACTIONS(12247), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnameCref] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHlabelcref] = ACTIONS(12247), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12247), + [anon_sym_BSLASHeqref] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange] = ACTIONS(12247), + [anon_sym_BSLASHCrefrange] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewlabel] = ACTIONS(12247), + [anon_sym_BSLASHnewcommand] = ACTIONS(12247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12247), + [anon_sym_BSLASHgls] = ACTIONS(12247), + [anon_sym_BSLASHGls] = ACTIONS(12247), + [anon_sym_BSLASHGLS] = ACTIONS(12247), + [anon_sym_BSLASHglspl] = ACTIONS(12247), + [anon_sym_BSLASHGlspl] = ACTIONS(12247), + [anon_sym_BSLASHGLSpl] = ACTIONS(12247), + [anon_sym_BSLASHglsdisp] = ACTIONS(12247), + [anon_sym_BSLASHglslink] = ACTIONS(12247), + [anon_sym_BSLASHglstext] = ACTIONS(12247), + [anon_sym_BSLASHGlstext] = ACTIONS(12247), + [anon_sym_BSLASHGLStext] = ACTIONS(12247), + [anon_sym_BSLASHglsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12247), + [anon_sym_BSLASHglsplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSplural] = ACTIONS(12247), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHglsname] = ACTIONS(12247), + [anon_sym_BSLASHGlsname] = ACTIONS(12247), + [anon_sym_BSLASHGLSname] = ACTIONS(12247), + [anon_sym_BSLASHglssymbol] = ACTIONS(12247), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12247), + [anon_sym_BSLASHglsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12247), + [anon_sym_BSLASHglsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12247), + [anon_sym_BSLASHglsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12247), + [anon_sym_BSLASHglsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12247), + [anon_sym_BSLASHglsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12247), + [anon_sym_BSLASHnewacronym] = ACTIONS(12247), + [anon_sym_BSLASHacrshort] = ACTIONS(12247), + [anon_sym_BSLASHAcrshort] = ACTIONS(12247), + [anon_sym_BSLASHACRshort] = ACTIONS(12247), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12247), + [anon_sym_BSLASHacrlong] = ACTIONS(12247), + [anon_sym_BSLASHAcrlong] = ACTIONS(12247), + [anon_sym_BSLASHACRlong] = ACTIONS(12247), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12247), + [anon_sym_BSLASHacrfull] = ACTIONS(12247), + [anon_sym_BSLASHAcrfull] = ACTIONS(12247), + [anon_sym_BSLASHACRfull] = ACTIONS(12247), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12247), + [anon_sym_BSLASHacs] = ACTIONS(12247), + [anon_sym_BSLASHAcs] = ACTIONS(12247), + [anon_sym_BSLASHacsp] = ACTIONS(12247), + [anon_sym_BSLASHAcsp] = ACTIONS(12247), + [anon_sym_BSLASHacl] = ACTIONS(12247), + [anon_sym_BSLASHAcl] = ACTIONS(12247), + [anon_sym_BSLASHaclp] = ACTIONS(12247), + [anon_sym_BSLASHAclp] = ACTIONS(12247), + [anon_sym_BSLASHacf] = ACTIONS(12247), + [anon_sym_BSLASHAcf] = ACTIONS(12247), + [anon_sym_BSLASHacfp] = ACTIONS(12247), + [anon_sym_BSLASHAcfp] = ACTIONS(12247), + [anon_sym_BSLASHac] = ACTIONS(12247), + [anon_sym_BSLASHAc] = ACTIONS(12247), + [anon_sym_BSLASHacp] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12247), + [anon_sym_BSLASHcolor] = ACTIONS(12247), + [anon_sym_BSLASHcolorbox] = ACTIONS(12247), + [anon_sym_BSLASHtextcolor] = ACTIONS(12247), + [anon_sym_BSLASHpagecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12247), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12247), + }, + [868] = { + [sym_generic_command_name] = ACTIONS(12243), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12243), + [aux_sym_chapter_token1] = ACTIONS(12243), + [aux_sym_section_token1] = ACTIONS(12243), + [aux_sym_subsection_token1] = ACTIONS(12243), + [aux_sym_subsubsection_token1] = ACTIONS(12243), + [aux_sym_paragraph_token1] = ACTIONS(12243), + [aux_sym_subparagraph_token1] = ACTIONS(12243), + [anon_sym_BSLASHitem] = ACTIONS(12243), + [anon_sym_LBRACK] = ACTIONS(12241), + [anon_sym_LBRACE] = ACTIONS(12241), + [anon_sym_LPAREN] = ACTIONS(12241), + [anon_sym_COMMA] = ACTIONS(12241), + [anon_sym_EQ] = ACTIONS(12241), + [sym_word] = ACTIONS(12241), + [sym_param] = ACTIONS(12241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12241), + [anon_sym_DOLLAR] = ACTIONS(12243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12241), + [anon_sym_BSLASHbegin] = ACTIONS(12243), + [anon_sym_BSLASHend] = ACTIONS(12243), + [anon_sym_BSLASHcaption] = ACTIONS(12243), + [anon_sym_BSLASHcite] = ACTIONS(12243), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCite] = ACTIONS(12243), + [anon_sym_BSLASHnocite] = ACTIONS(12243), + [anon_sym_BSLASHcitet] = ACTIONS(12243), + [anon_sym_BSLASHcitep] = ACTIONS(12243), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteauthor] = ACTIONS(12243), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12243), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitetitle] = ACTIONS(12243), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteyear] = ACTIONS(12243), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitedate] = ACTIONS(12243), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteurl] = ACTIONS(12243), + [anon_sym_BSLASHfullcite] = ACTIONS(12243), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12243), + [anon_sym_BSLASHcitealt] = ACTIONS(12243), + [anon_sym_BSLASHcitealp] = ACTIONS(12243), + [anon_sym_BSLASHcitetext] = ACTIONS(12243), + [anon_sym_BSLASHparencite] = ACTIONS(12243), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHParencite] = ACTIONS(12243), + [anon_sym_BSLASHfootcite] = ACTIONS(12243), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12243), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12243), + [anon_sym_BSLASHtextcite] = ACTIONS(12243), + [anon_sym_BSLASHTextcite] = ACTIONS(12243), + [anon_sym_BSLASHsmartcite] = ACTIONS(12243), + [anon_sym_BSLASHSmartcite] = ACTIONS(12243), + [anon_sym_BSLASHsupercite] = ACTIONS(12243), + [anon_sym_BSLASHautocite] = ACTIONS(12243), + [anon_sym_BSLASHAutocite] = ACTIONS(12243), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHvolcite] = ACTIONS(12243), + [anon_sym_BSLASHVolcite] = ACTIONS(12243), + [anon_sym_BSLASHpvolcite] = ACTIONS(12243), + [anon_sym_BSLASHPvolcite] = ACTIONS(12243), + [anon_sym_BSLASHfvolcite] = ACTIONS(12243), + [anon_sym_BSLASHftvolcite] = ACTIONS(12243), + [anon_sym_BSLASHsvolcite] = ACTIONS(12243), + [anon_sym_BSLASHSvolcite] = ACTIONS(12243), + [anon_sym_BSLASHtvolcite] = ACTIONS(12243), + [anon_sym_BSLASHTvolcite] = ACTIONS(12243), + [anon_sym_BSLASHavolcite] = ACTIONS(12243), + [anon_sym_BSLASHAvolcite] = ACTIONS(12243), + [anon_sym_BSLASHnotecite] = ACTIONS(12243), + [anon_sym_BSLASHpnotecite] = ACTIONS(12243), + [anon_sym_BSLASHPnotecite] = ACTIONS(12243), + [anon_sym_BSLASHfnotecite] = ACTIONS(12243), + [anon_sym_BSLASHusepackage] = ACTIONS(12243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12243), + [anon_sym_BSLASHinclude] = ACTIONS(12243), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12243), + [anon_sym_BSLASHinput] = ACTIONS(12243), + [anon_sym_BSLASHsubfile] = ACTIONS(12243), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12243), + [anon_sym_BSLASHbibliography] = ACTIONS(12243), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12243), + [anon_sym_BSLASHincludesvg] = ACTIONS(12243), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12243), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12243), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12243), + [anon_sym_BSLASHimport] = ACTIONS(12243), + [anon_sym_BSLASHsubimport] = ACTIONS(12243), + [anon_sym_BSLASHinputfrom] = ACTIONS(12243), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12243), + [anon_sym_BSLASHincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHlabel] = ACTIONS(12243), + [anon_sym_BSLASHref] = ACTIONS(12243), + [anon_sym_BSLASHvref] = ACTIONS(12243), + [anon_sym_BSLASHVref] = ACTIONS(12243), + [anon_sym_BSLASHautoref] = ACTIONS(12243), + [anon_sym_BSLASHpageref] = ACTIONS(12243), + [anon_sym_BSLASHcref] = ACTIONS(12243), + [anon_sym_BSLASHCref] = ACTIONS(12243), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnameCref] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHlabelcref] = ACTIONS(12243), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12243), + [anon_sym_BSLASHeqref] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange] = ACTIONS(12243), + [anon_sym_BSLASHCrefrange] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewlabel] = ACTIONS(12243), + [anon_sym_BSLASHnewcommand] = ACTIONS(12243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12243), + [anon_sym_BSLASHgls] = ACTIONS(12243), + [anon_sym_BSLASHGls] = ACTIONS(12243), + [anon_sym_BSLASHGLS] = ACTIONS(12243), + [anon_sym_BSLASHglspl] = ACTIONS(12243), + [anon_sym_BSLASHGlspl] = ACTIONS(12243), + [anon_sym_BSLASHGLSpl] = ACTIONS(12243), + [anon_sym_BSLASHglsdisp] = ACTIONS(12243), + [anon_sym_BSLASHglslink] = ACTIONS(12243), + [anon_sym_BSLASHglstext] = ACTIONS(12243), + [anon_sym_BSLASHGlstext] = ACTIONS(12243), + [anon_sym_BSLASHGLStext] = ACTIONS(12243), + [anon_sym_BSLASHglsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12243), + [anon_sym_BSLASHglsplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSplural] = ACTIONS(12243), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHglsname] = ACTIONS(12243), + [anon_sym_BSLASHGlsname] = ACTIONS(12243), + [anon_sym_BSLASHGLSname] = ACTIONS(12243), + [anon_sym_BSLASHglssymbol] = ACTIONS(12243), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12243), + [anon_sym_BSLASHglsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12243), + [anon_sym_BSLASHglsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12243), + [anon_sym_BSLASHglsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12243), + [anon_sym_BSLASHglsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12243), + [anon_sym_BSLASHglsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12243), + [anon_sym_BSLASHnewacronym] = ACTIONS(12243), + [anon_sym_BSLASHacrshort] = ACTIONS(12243), + [anon_sym_BSLASHAcrshort] = ACTIONS(12243), + [anon_sym_BSLASHACRshort] = ACTIONS(12243), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12243), + [anon_sym_BSLASHacrlong] = ACTIONS(12243), + [anon_sym_BSLASHAcrlong] = ACTIONS(12243), + [anon_sym_BSLASHACRlong] = ACTIONS(12243), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12243), + [anon_sym_BSLASHacrfull] = ACTIONS(12243), + [anon_sym_BSLASHAcrfull] = ACTIONS(12243), + [anon_sym_BSLASHACRfull] = ACTIONS(12243), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12243), + [anon_sym_BSLASHacs] = ACTIONS(12243), + [anon_sym_BSLASHAcs] = ACTIONS(12243), + [anon_sym_BSLASHacsp] = ACTIONS(12243), + [anon_sym_BSLASHAcsp] = ACTIONS(12243), + [anon_sym_BSLASHacl] = ACTIONS(12243), + [anon_sym_BSLASHAcl] = ACTIONS(12243), + [anon_sym_BSLASHaclp] = ACTIONS(12243), + [anon_sym_BSLASHAclp] = ACTIONS(12243), + [anon_sym_BSLASHacf] = ACTIONS(12243), + [anon_sym_BSLASHAcf] = ACTIONS(12243), + [anon_sym_BSLASHacfp] = ACTIONS(12243), + [anon_sym_BSLASHAcfp] = ACTIONS(12243), + [anon_sym_BSLASHac] = ACTIONS(12243), + [anon_sym_BSLASHAc] = ACTIONS(12243), + [anon_sym_BSLASHacp] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12243), + [anon_sym_BSLASHcolor] = ACTIONS(12243), + [anon_sym_BSLASHcolorbox] = ACTIONS(12243), + [anon_sym_BSLASHtextcolor] = ACTIONS(12243), + [anon_sym_BSLASHpagecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12243), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12243), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12243), + }, + [869] = { + [sym_generic_command_name] = ACTIONS(12239), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12239), + [aux_sym_chapter_token1] = ACTIONS(12239), + [aux_sym_section_token1] = ACTIONS(12239), + [aux_sym_subsection_token1] = ACTIONS(12239), + [aux_sym_subsubsection_token1] = ACTIONS(12239), + [aux_sym_paragraph_token1] = ACTIONS(12239), + [aux_sym_subparagraph_token1] = ACTIONS(12239), + [anon_sym_BSLASHitem] = ACTIONS(12239), + [anon_sym_LBRACK] = ACTIONS(12237), + [anon_sym_LBRACE] = ACTIONS(12237), + [anon_sym_LPAREN] = ACTIONS(12237), + [anon_sym_COMMA] = ACTIONS(12237), + [anon_sym_EQ] = ACTIONS(12237), + [sym_word] = ACTIONS(12237), + [sym_param] = ACTIONS(12237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12237), + [anon_sym_DOLLAR] = ACTIONS(12239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12237), + [anon_sym_BSLASHbegin] = ACTIONS(12239), + [anon_sym_BSLASHend] = ACTIONS(12239), + [anon_sym_BSLASHcaption] = ACTIONS(12239), + [anon_sym_BSLASHcite] = ACTIONS(12239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCite] = ACTIONS(12239), + [anon_sym_BSLASHnocite] = ACTIONS(12239), + [anon_sym_BSLASHcitet] = ACTIONS(12239), + [anon_sym_BSLASHcitep] = ACTIONS(12239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteauthor] = ACTIONS(12239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitetitle] = ACTIONS(12239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteyear] = ACTIONS(12239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitedate] = ACTIONS(12239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteurl] = ACTIONS(12239), + [anon_sym_BSLASHfullcite] = ACTIONS(12239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12239), + [anon_sym_BSLASHcitealt] = ACTIONS(12239), + [anon_sym_BSLASHcitealp] = ACTIONS(12239), + [anon_sym_BSLASHcitetext] = ACTIONS(12239), + [anon_sym_BSLASHparencite] = ACTIONS(12239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHParencite] = ACTIONS(12239), + [anon_sym_BSLASHfootcite] = ACTIONS(12239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12239), + [anon_sym_BSLASHtextcite] = ACTIONS(12239), + [anon_sym_BSLASHTextcite] = ACTIONS(12239), + [anon_sym_BSLASHsmartcite] = ACTIONS(12239), + [anon_sym_BSLASHSmartcite] = ACTIONS(12239), + [anon_sym_BSLASHsupercite] = ACTIONS(12239), + [anon_sym_BSLASHautocite] = ACTIONS(12239), + [anon_sym_BSLASHAutocite] = ACTIONS(12239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHvolcite] = ACTIONS(12239), + [anon_sym_BSLASHVolcite] = ACTIONS(12239), + [anon_sym_BSLASHpvolcite] = ACTIONS(12239), + [anon_sym_BSLASHPvolcite] = ACTIONS(12239), + [anon_sym_BSLASHfvolcite] = ACTIONS(12239), + [anon_sym_BSLASHftvolcite] = ACTIONS(12239), + [anon_sym_BSLASHsvolcite] = ACTIONS(12239), + [anon_sym_BSLASHSvolcite] = ACTIONS(12239), + [anon_sym_BSLASHtvolcite] = ACTIONS(12239), + [anon_sym_BSLASHTvolcite] = ACTIONS(12239), + [anon_sym_BSLASHavolcite] = ACTIONS(12239), + [anon_sym_BSLASHAvolcite] = ACTIONS(12239), + [anon_sym_BSLASHnotecite] = ACTIONS(12239), + [anon_sym_BSLASHpnotecite] = ACTIONS(12239), + [anon_sym_BSLASHPnotecite] = ACTIONS(12239), + [anon_sym_BSLASHfnotecite] = ACTIONS(12239), + [anon_sym_BSLASHusepackage] = ACTIONS(12239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12239), + [anon_sym_BSLASHinclude] = ACTIONS(12239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12239), + [anon_sym_BSLASHinput] = ACTIONS(12239), + [anon_sym_BSLASHsubfile] = ACTIONS(12239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12239), + [anon_sym_BSLASHbibliography] = ACTIONS(12239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12239), + [anon_sym_BSLASHincludesvg] = ACTIONS(12239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12239), + [anon_sym_BSLASHimport] = ACTIONS(12239), + [anon_sym_BSLASHsubimport] = ACTIONS(12239), + [anon_sym_BSLASHinputfrom] = ACTIONS(12239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12239), + [anon_sym_BSLASHincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHlabel] = ACTIONS(12239), + [anon_sym_BSLASHref] = ACTIONS(12239), + [anon_sym_BSLASHvref] = ACTIONS(12239), + [anon_sym_BSLASHVref] = ACTIONS(12239), + [anon_sym_BSLASHautoref] = ACTIONS(12239), + [anon_sym_BSLASHpageref] = ACTIONS(12239), + [anon_sym_BSLASHcref] = ACTIONS(12239), + [anon_sym_BSLASHCref] = ACTIONS(12239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnameCref] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHlabelcref] = ACTIONS(12239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12239), + [anon_sym_BSLASHeqref] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange] = ACTIONS(12239), + [anon_sym_BSLASHCrefrange] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewlabel] = ACTIONS(12239), + [anon_sym_BSLASHnewcommand] = ACTIONS(12239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12239), + [anon_sym_BSLASHgls] = ACTIONS(12239), + [anon_sym_BSLASHGls] = ACTIONS(12239), + [anon_sym_BSLASHGLS] = ACTIONS(12239), + [anon_sym_BSLASHglspl] = ACTIONS(12239), + [anon_sym_BSLASHGlspl] = ACTIONS(12239), + [anon_sym_BSLASHGLSpl] = ACTIONS(12239), + [anon_sym_BSLASHglsdisp] = ACTIONS(12239), + [anon_sym_BSLASHglslink] = ACTIONS(12239), + [anon_sym_BSLASHglstext] = ACTIONS(12239), + [anon_sym_BSLASHGlstext] = ACTIONS(12239), + [anon_sym_BSLASHGLStext] = ACTIONS(12239), + [anon_sym_BSLASHglsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12239), + [anon_sym_BSLASHglsplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSplural] = ACTIONS(12239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHglsname] = ACTIONS(12239), + [anon_sym_BSLASHGlsname] = ACTIONS(12239), + [anon_sym_BSLASHGLSname] = ACTIONS(12239), + [anon_sym_BSLASHglssymbol] = ACTIONS(12239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12239), + [anon_sym_BSLASHglsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12239), + [anon_sym_BSLASHglsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12239), + [anon_sym_BSLASHglsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12239), + [anon_sym_BSLASHglsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12239), + [anon_sym_BSLASHglsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12239), + [anon_sym_BSLASHnewacronym] = ACTIONS(12239), + [anon_sym_BSLASHacrshort] = ACTIONS(12239), + [anon_sym_BSLASHAcrshort] = ACTIONS(12239), + [anon_sym_BSLASHACRshort] = ACTIONS(12239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12239), + [anon_sym_BSLASHacrlong] = ACTIONS(12239), + [anon_sym_BSLASHAcrlong] = ACTIONS(12239), + [anon_sym_BSLASHACRlong] = ACTIONS(12239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12239), + [anon_sym_BSLASHacrfull] = ACTIONS(12239), + [anon_sym_BSLASHAcrfull] = ACTIONS(12239), + [anon_sym_BSLASHACRfull] = ACTIONS(12239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12239), + [anon_sym_BSLASHacs] = ACTIONS(12239), + [anon_sym_BSLASHAcs] = ACTIONS(12239), + [anon_sym_BSLASHacsp] = ACTIONS(12239), + [anon_sym_BSLASHAcsp] = ACTIONS(12239), + [anon_sym_BSLASHacl] = ACTIONS(12239), + [anon_sym_BSLASHAcl] = ACTIONS(12239), + [anon_sym_BSLASHaclp] = ACTIONS(12239), + [anon_sym_BSLASHAclp] = ACTIONS(12239), + [anon_sym_BSLASHacf] = ACTIONS(12239), + [anon_sym_BSLASHAcf] = ACTIONS(12239), + [anon_sym_BSLASHacfp] = ACTIONS(12239), + [anon_sym_BSLASHAcfp] = ACTIONS(12239), + [anon_sym_BSLASHac] = ACTIONS(12239), + [anon_sym_BSLASHAc] = ACTIONS(12239), + [anon_sym_BSLASHacp] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12239), + [anon_sym_BSLASHcolor] = ACTIONS(12239), + [anon_sym_BSLASHcolorbox] = ACTIONS(12239), + [anon_sym_BSLASHtextcolor] = ACTIONS(12239), + [anon_sym_BSLASHpagecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12239), + }, + [870] = { + [sym_generic_command_name] = ACTIONS(12235), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12235), + [aux_sym_chapter_token1] = ACTIONS(12235), + [aux_sym_section_token1] = ACTIONS(12235), + [aux_sym_subsection_token1] = ACTIONS(12235), + [aux_sym_subsubsection_token1] = ACTIONS(12235), + [aux_sym_paragraph_token1] = ACTIONS(12235), + [aux_sym_subparagraph_token1] = ACTIONS(12235), + [anon_sym_BSLASHitem] = ACTIONS(12235), + [anon_sym_LBRACK] = ACTIONS(12233), + [anon_sym_LBRACE] = ACTIONS(12233), + [anon_sym_LPAREN] = ACTIONS(12233), + [anon_sym_COMMA] = ACTIONS(12233), + [anon_sym_EQ] = ACTIONS(12233), + [sym_word] = ACTIONS(12233), + [sym_param] = ACTIONS(12233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12233), + [anon_sym_DOLLAR] = ACTIONS(12235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12233), + [anon_sym_BSLASHbegin] = ACTIONS(12235), + [anon_sym_BSLASHend] = ACTIONS(12235), + [anon_sym_BSLASHcaption] = ACTIONS(12235), + [anon_sym_BSLASHcite] = ACTIONS(12235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCite] = ACTIONS(12235), + [anon_sym_BSLASHnocite] = ACTIONS(12235), + [anon_sym_BSLASHcitet] = ACTIONS(12235), + [anon_sym_BSLASHcitep] = ACTIONS(12235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteauthor] = ACTIONS(12235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitetitle] = ACTIONS(12235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteyear] = ACTIONS(12235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitedate] = ACTIONS(12235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteurl] = ACTIONS(12235), + [anon_sym_BSLASHfullcite] = ACTIONS(12235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12235), + [anon_sym_BSLASHcitealt] = ACTIONS(12235), + [anon_sym_BSLASHcitealp] = ACTIONS(12235), + [anon_sym_BSLASHcitetext] = ACTIONS(12235), + [anon_sym_BSLASHparencite] = ACTIONS(12235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHParencite] = ACTIONS(12235), + [anon_sym_BSLASHfootcite] = ACTIONS(12235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12235), + [anon_sym_BSLASHtextcite] = ACTIONS(12235), + [anon_sym_BSLASHTextcite] = ACTIONS(12235), + [anon_sym_BSLASHsmartcite] = ACTIONS(12235), + [anon_sym_BSLASHSmartcite] = ACTIONS(12235), + [anon_sym_BSLASHsupercite] = ACTIONS(12235), + [anon_sym_BSLASHautocite] = ACTIONS(12235), + [anon_sym_BSLASHAutocite] = ACTIONS(12235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHvolcite] = ACTIONS(12235), + [anon_sym_BSLASHVolcite] = ACTIONS(12235), + [anon_sym_BSLASHpvolcite] = ACTIONS(12235), + [anon_sym_BSLASHPvolcite] = ACTIONS(12235), + [anon_sym_BSLASHfvolcite] = ACTIONS(12235), + [anon_sym_BSLASHftvolcite] = ACTIONS(12235), + [anon_sym_BSLASHsvolcite] = ACTIONS(12235), + [anon_sym_BSLASHSvolcite] = ACTIONS(12235), + [anon_sym_BSLASHtvolcite] = ACTIONS(12235), + [anon_sym_BSLASHTvolcite] = ACTIONS(12235), + [anon_sym_BSLASHavolcite] = ACTIONS(12235), + [anon_sym_BSLASHAvolcite] = ACTIONS(12235), + [anon_sym_BSLASHnotecite] = ACTIONS(12235), + [anon_sym_BSLASHpnotecite] = ACTIONS(12235), + [anon_sym_BSLASHPnotecite] = ACTIONS(12235), + [anon_sym_BSLASHfnotecite] = ACTIONS(12235), + [anon_sym_BSLASHusepackage] = ACTIONS(12235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12235), + [anon_sym_BSLASHinclude] = ACTIONS(12235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12235), + [anon_sym_BSLASHinput] = ACTIONS(12235), + [anon_sym_BSLASHsubfile] = ACTIONS(12235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12235), + [anon_sym_BSLASHbibliography] = ACTIONS(12235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12235), + [anon_sym_BSLASHincludesvg] = ACTIONS(12235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12235), + [anon_sym_BSLASHimport] = ACTIONS(12235), + [anon_sym_BSLASHsubimport] = ACTIONS(12235), + [anon_sym_BSLASHinputfrom] = ACTIONS(12235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12235), + [anon_sym_BSLASHincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHlabel] = ACTIONS(12235), + [anon_sym_BSLASHref] = ACTIONS(12235), + [anon_sym_BSLASHvref] = ACTIONS(12235), + [anon_sym_BSLASHVref] = ACTIONS(12235), + [anon_sym_BSLASHautoref] = ACTIONS(12235), + [anon_sym_BSLASHpageref] = ACTIONS(12235), + [anon_sym_BSLASHcref] = ACTIONS(12235), + [anon_sym_BSLASHCref] = ACTIONS(12235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnameCref] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHlabelcref] = ACTIONS(12235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12235), + [anon_sym_BSLASHeqref] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange] = ACTIONS(12235), + [anon_sym_BSLASHCrefrange] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewlabel] = ACTIONS(12235), + [anon_sym_BSLASHnewcommand] = ACTIONS(12235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12235), + [anon_sym_BSLASHgls] = ACTIONS(12235), + [anon_sym_BSLASHGls] = ACTIONS(12235), + [anon_sym_BSLASHGLS] = ACTIONS(12235), + [anon_sym_BSLASHglspl] = ACTIONS(12235), + [anon_sym_BSLASHGlspl] = ACTIONS(12235), + [anon_sym_BSLASHGLSpl] = ACTIONS(12235), + [anon_sym_BSLASHglsdisp] = ACTIONS(12235), + [anon_sym_BSLASHglslink] = ACTIONS(12235), + [anon_sym_BSLASHglstext] = ACTIONS(12235), + [anon_sym_BSLASHGlstext] = ACTIONS(12235), + [anon_sym_BSLASHGLStext] = ACTIONS(12235), + [anon_sym_BSLASHglsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12235), + [anon_sym_BSLASHglsplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSplural] = ACTIONS(12235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHglsname] = ACTIONS(12235), + [anon_sym_BSLASHGlsname] = ACTIONS(12235), + [anon_sym_BSLASHGLSname] = ACTIONS(12235), + [anon_sym_BSLASHglssymbol] = ACTIONS(12235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12235), + [anon_sym_BSLASHglsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12235), + [anon_sym_BSLASHglsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12235), + [anon_sym_BSLASHglsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12235), + [anon_sym_BSLASHglsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12235), + [anon_sym_BSLASHglsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12235), + [anon_sym_BSLASHnewacronym] = ACTIONS(12235), + [anon_sym_BSLASHacrshort] = ACTIONS(12235), + [anon_sym_BSLASHAcrshort] = ACTIONS(12235), + [anon_sym_BSLASHACRshort] = ACTIONS(12235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12235), + [anon_sym_BSLASHacrlong] = ACTIONS(12235), + [anon_sym_BSLASHAcrlong] = ACTIONS(12235), + [anon_sym_BSLASHACRlong] = ACTIONS(12235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12235), + [anon_sym_BSLASHacrfull] = ACTIONS(12235), + [anon_sym_BSLASHAcrfull] = ACTIONS(12235), + [anon_sym_BSLASHACRfull] = ACTIONS(12235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12235), + [anon_sym_BSLASHacs] = ACTIONS(12235), + [anon_sym_BSLASHAcs] = ACTIONS(12235), + [anon_sym_BSLASHacsp] = ACTIONS(12235), + [anon_sym_BSLASHAcsp] = ACTIONS(12235), + [anon_sym_BSLASHacl] = ACTIONS(12235), + [anon_sym_BSLASHAcl] = ACTIONS(12235), + [anon_sym_BSLASHaclp] = ACTIONS(12235), + [anon_sym_BSLASHAclp] = ACTIONS(12235), + [anon_sym_BSLASHacf] = ACTIONS(12235), + [anon_sym_BSLASHAcf] = ACTIONS(12235), + [anon_sym_BSLASHacfp] = ACTIONS(12235), + [anon_sym_BSLASHAcfp] = ACTIONS(12235), + [anon_sym_BSLASHac] = ACTIONS(12235), + [anon_sym_BSLASHAc] = ACTIONS(12235), + [anon_sym_BSLASHacp] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12235), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12235), + [anon_sym_BSLASHcolor] = ACTIONS(12235), + [anon_sym_BSLASHcolorbox] = ACTIONS(12235), + [anon_sym_BSLASHtextcolor] = ACTIONS(12235), + [anon_sym_BSLASHpagecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12235), + }, + [871] = { + [sym_generic_command_name] = ACTIONS(12108), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12108), + [aux_sym_chapter_token1] = ACTIONS(12108), + [aux_sym_section_token1] = ACTIONS(12108), + [aux_sym_subsection_token1] = ACTIONS(12108), + [aux_sym_subsubsection_token1] = ACTIONS(12108), + [aux_sym_paragraph_token1] = ACTIONS(12108), + [aux_sym_subparagraph_token1] = ACTIONS(12108), + [anon_sym_BSLASHitem] = ACTIONS(12108), + [anon_sym_LBRACK] = ACTIONS(12106), + [anon_sym_LBRACE] = ACTIONS(12106), + [anon_sym_LPAREN] = ACTIONS(12106), + [anon_sym_COMMA] = ACTIONS(12106), + [anon_sym_EQ] = ACTIONS(12106), + [sym_word] = ACTIONS(12106), + [sym_param] = ACTIONS(12106), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12106), + [anon_sym_DOLLAR] = ACTIONS(12108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12106), + [anon_sym_BSLASHbegin] = ACTIONS(12108), + [anon_sym_BSLASHend] = ACTIONS(12108), + [anon_sym_BSLASHcaption] = ACTIONS(12108), + [anon_sym_BSLASHcite] = ACTIONS(12108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCite] = ACTIONS(12108), + [anon_sym_BSLASHnocite] = ACTIONS(12108), + [anon_sym_BSLASHcitet] = ACTIONS(12108), + [anon_sym_BSLASHcitep] = ACTIONS(12108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteauthor] = ACTIONS(12108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitetitle] = ACTIONS(12108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteyear] = ACTIONS(12108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitedate] = ACTIONS(12108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteurl] = ACTIONS(12108), + [anon_sym_BSLASHfullcite] = ACTIONS(12108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12108), + [anon_sym_BSLASHcitealt] = ACTIONS(12108), + [anon_sym_BSLASHcitealp] = ACTIONS(12108), + [anon_sym_BSLASHcitetext] = ACTIONS(12108), + [anon_sym_BSLASHparencite] = ACTIONS(12108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHParencite] = ACTIONS(12108), + [anon_sym_BSLASHfootcite] = ACTIONS(12108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12108), + [anon_sym_BSLASHtextcite] = ACTIONS(12108), + [anon_sym_BSLASHTextcite] = ACTIONS(12108), + [anon_sym_BSLASHsmartcite] = ACTIONS(12108), + [anon_sym_BSLASHSmartcite] = ACTIONS(12108), + [anon_sym_BSLASHsupercite] = ACTIONS(12108), + [anon_sym_BSLASHautocite] = ACTIONS(12108), + [anon_sym_BSLASHAutocite] = ACTIONS(12108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHvolcite] = ACTIONS(12108), + [anon_sym_BSLASHVolcite] = ACTIONS(12108), + [anon_sym_BSLASHpvolcite] = ACTIONS(12108), + [anon_sym_BSLASHPvolcite] = ACTIONS(12108), + [anon_sym_BSLASHfvolcite] = ACTIONS(12108), + [anon_sym_BSLASHftvolcite] = ACTIONS(12108), + [anon_sym_BSLASHsvolcite] = ACTIONS(12108), + [anon_sym_BSLASHSvolcite] = ACTIONS(12108), + [anon_sym_BSLASHtvolcite] = ACTIONS(12108), + [anon_sym_BSLASHTvolcite] = ACTIONS(12108), + [anon_sym_BSLASHavolcite] = ACTIONS(12108), + [anon_sym_BSLASHAvolcite] = ACTIONS(12108), + [anon_sym_BSLASHnotecite] = ACTIONS(12108), + [anon_sym_BSLASHpnotecite] = ACTIONS(12108), + [anon_sym_BSLASHPnotecite] = ACTIONS(12108), + [anon_sym_BSLASHfnotecite] = ACTIONS(12108), + [anon_sym_BSLASHusepackage] = ACTIONS(12108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12108), + [anon_sym_BSLASHinclude] = ACTIONS(12108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12108), + [anon_sym_BSLASHinput] = ACTIONS(12108), + [anon_sym_BSLASHsubfile] = ACTIONS(12108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12108), + [anon_sym_BSLASHbibliography] = ACTIONS(12108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12108), + [anon_sym_BSLASHincludesvg] = ACTIONS(12108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12108), + [anon_sym_BSLASHimport] = ACTIONS(12108), + [anon_sym_BSLASHsubimport] = ACTIONS(12108), + [anon_sym_BSLASHinputfrom] = ACTIONS(12108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12108), + [anon_sym_BSLASHincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHlabel] = ACTIONS(12108), + [anon_sym_BSLASHref] = ACTIONS(12108), + [anon_sym_BSLASHvref] = ACTIONS(12108), + [anon_sym_BSLASHVref] = ACTIONS(12108), + [anon_sym_BSLASHautoref] = ACTIONS(12108), + [anon_sym_BSLASHpageref] = ACTIONS(12108), + [anon_sym_BSLASHcref] = ACTIONS(12108), + [anon_sym_BSLASHCref] = ACTIONS(12108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnameCref] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHlabelcref] = ACTIONS(12108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12108), + [anon_sym_BSLASHeqref] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange] = ACTIONS(12108), + [anon_sym_BSLASHCrefrange] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewlabel] = ACTIONS(12108), + [anon_sym_BSLASHnewcommand] = ACTIONS(12108), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12108), + [anon_sym_BSLASHgls] = ACTIONS(12108), + [anon_sym_BSLASHGls] = ACTIONS(12108), + [anon_sym_BSLASHGLS] = ACTIONS(12108), + [anon_sym_BSLASHglspl] = ACTIONS(12108), + [anon_sym_BSLASHGlspl] = ACTIONS(12108), + [anon_sym_BSLASHGLSpl] = ACTIONS(12108), + [anon_sym_BSLASHglsdisp] = ACTIONS(12108), + [anon_sym_BSLASHglslink] = ACTIONS(12108), + [anon_sym_BSLASHglstext] = ACTIONS(12108), + [anon_sym_BSLASHGlstext] = ACTIONS(12108), + [anon_sym_BSLASHGLStext] = ACTIONS(12108), + [anon_sym_BSLASHglsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12108), + [anon_sym_BSLASHglsplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSplural] = ACTIONS(12108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHglsname] = ACTIONS(12108), + [anon_sym_BSLASHGlsname] = ACTIONS(12108), + [anon_sym_BSLASHGLSname] = ACTIONS(12108), + [anon_sym_BSLASHglssymbol] = ACTIONS(12108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12108), + [anon_sym_BSLASHglsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12108), + [anon_sym_BSLASHglsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12108), + [anon_sym_BSLASHglsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12108), + [anon_sym_BSLASHglsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12108), + [anon_sym_BSLASHglsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12108), + [anon_sym_BSLASHnewacronym] = ACTIONS(12108), + [anon_sym_BSLASHacrshort] = ACTIONS(12108), + [anon_sym_BSLASHAcrshort] = ACTIONS(12108), + [anon_sym_BSLASHACRshort] = ACTIONS(12108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12108), + [anon_sym_BSLASHacrlong] = ACTIONS(12108), + [anon_sym_BSLASHAcrlong] = ACTIONS(12108), + [anon_sym_BSLASHACRlong] = ACTIONS(12108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12108), + [anon_sym_BSLASHacrfull] = ACTIONS(12108), + [anon_sym_BSLASHAcrfull] = ACTIONS(12108), + [anon_sym_BSLASHACRfull] = ACTIONS(12108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12108), + [anon_sym_BSLASHacs] = ACTIONS(12108), + [anon_sym_BSLASHAcs] = ACTIONS(12108), + [anon_sym_BSLASHacsp] = ACTIONS(12108), + [anon_sym_BSLASHAcsp] = ACTIONS(12108), + [anon_sym_BSLASHacl] = ACTIONS(12108), + [anon_sym_BSLASHAcl] = ACTIONS(12108), + [anon_sym_BSLASHaclp] = ACTIONS(12108), + [anon_sym_BSLASHAclp] = ACTIONS(12108), + [anon_sym_BSLASHacf] = ACTIONS(12108), + [anon_sym_BSLASHAcf] = ACTIONS(12108), + [anon_sym_BSLASHacfp] = ACTIONS(12108), + [anon_sym_BSLASHAcfp] = ACTIONS(12108), + [anon_sym_BSLASHac] = ACTIONS(12108), + [anon_sym_BSLASHAc] = ACTIONS(12108), + [anon_sym_BSLASHacp] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12108), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12108), + [anon_sym_BSLASHcolor] = ACTIONS(12108), + [anon_sym_BSLASHcolorbox] = ACTIONS(12108), + [anon_sym_BSLASHtextcolor] = ACTIONS(12108), + [anon_sym_BSLASHpagecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12108), + }, + [872] = { + [sym_generic_command_name] = ACTIONS(12221), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12221), + [aux_sym_chapter_token1] = ACTIONS(12221), + [aux_sym_section_token1] = ACTIONS(12221), + [aux_sym_subsection_token1] = ACTIONS(12221), + [aux_sym_subsubsection_token1] = ACTIONS(12221), + [aux_sym_paragraph_token1] = ACTIONS(12221), + [aux_sym_subparagraph_token1] = ACTIONS(12221), + [anon_sym_BSLASHitem] = ACTIONS(12221), + [anon_sym_LBRACK] = ACTIONS(12219), + [anon_sym_LBRACE] = ACTIONS(12668), + [anon_sym_LPAREN] = ACTIONS(12219), + [anon_sym_COMMA] = ACTIONS(12219), + [anon_sym_EQ] = ACTIONS(12219), + [sym_word] = ACTIONS(12219), + [sym_param] = ACTIONS(12219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12219), + [anon_sym_DOLLAR] = ACTIONS(12221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12219), + [anon_sym_BSLASHbegin] = ACTIONS(12221), + [anon_sym_BSLASHend] = ACTIONS(12221), + [anon_sym_BSLASHcaption] = ACTIONS(12221), + [anon_sym_BSLASHcite] = ACTIONS(12221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCite] = ACTIONS(12221), + [anon_sym_BSLASHnocite] = ACTIONS(12221), + [anon_sym_BSLASHcitet] = ACTIONS(12221), + [anon_sym_BSLASHcitep] = ACTIONS(12221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteauthor] = ACTIONS(12221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitetitle] = ACTIONS(12221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteyear] = ACTIONS(12221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitedate] = ACTIONS(12221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteurl] = ACTIONS(12221), + [anon_sym_BSLASHfullcite] = ACTIONS(12221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12221), + [anon_sym_BSLASHcitealt] = ACTIONS(12221), + [anon_sym_BSLASHcitealp] = ACTIONS(12221), + [anon_sym_BSLASHcitetext] = ACTIONS(12221), + [anon_sym_BSLASHparencite] = ACTIONS(12221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHParencite] = ACTIONS(12221), + [anon_sym_BSLASHfootcite] = ACTIONS(12221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12221), + [anon_sym_BSLASHtextcite] = ACTIONS(12221), + [anon_sym_BSLASHTextcite] = ACTIONS(12221), + [anon_sym_BSLASHsmartcite] = ACTIONS(12221), + [anon_sym_BSLASHSmartcite] = ACTIONS(12221), + [anon_sym_BSLASHsupercite] = ACTIONS(12221), + [anon_sym_BSLASHautocite] = ACTIONS(12221), + [anon_sym_BSLASHAutocite] = ACTIONS(12221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHvolcite] = ACTIONS(12221), + [anon_sym_BSLASHVolcite] = ACTIONS(12221), + [anon_sym_BSLASHpvolcite] = ACTIONS(12221), + [anon_sym_BSLASHPvolcite] = ACTIONS(12221), + [anon_sym_BSLASHfvolcite] = ACTIONS(12221), + [anon_sym_BSLASHftvolcite] = ACTIONS(12221), + [anon_sym_BSLASHsvolcite] = ACTIONS(12221), + [anon_sym_BSLASHSvolcite] = ACTIONS(12221), + [anon_sym_BSLASHtvolcite] = ACTIONS(12221), + [anon_sym_BSLASHTvolcite] = ACTIONS(12221), + [anon_sym_BSLASHavolcite] = ACTIONS(12221), + [anon_sym_BSLASHAvolcite] = ACTIONS(12221), + [anon_sym_BSLASHnotecite] = ACTIONS(12221), + [anon_sym_BSLASHpnotecite] = ACTIONS(12221), + [anon_sym_BSLASHPnotecite] = ACTIONS(12221), + [anon_sym_BSLASHfnotecite] = ACTIONS(12221), + [anon_sym_BSLASHusepackage] = ACTIONS(12221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12221), + [anon_sym_BSLASHinclude] = ACTIONS(12221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12221), + [anon_sym_BSLASHinput] = ACTIONS(12221), + [anon_sym_BSLASHsubfile] = ACTIONS(12221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12221), + [anon_sym_BSLASHbibliography] = ACTIONS(12221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12221), + [anon_sym_BSLASHincludesvg] = ACTIONS(12221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12221), + [anon_sym_BSLASHimport] = ACTIONS(12221), + [anon_sym_BSLASHsubimport] = ACTIONS(12221), + [anon_sym_BSLASHinputfrom] = ACTIONS(12221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12221), + [anon_sym_BSLASHincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHlabel] = ACTIONS(12221), + [anon_sym_BSLASHref] = ACTIONS(12221), + [anon_sym_BSLASHvref] = ACTIONS(12221), + [anon_sym_BSLASHVref] = ACTIONS(12221), + [anon_sym_BSLASHautoref] = ACTIONS(12221), + [anon_sym_BSLASHpageref] = ACTIONS(12221), + [anon_sym_BSLASHcref] = ACTIONS(12221), + [anon_sym_BSLASHCref] = ACTIONS(12221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnameCref] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHlabelcref] = ACTIONS(12221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12221), + [anon_sym_BSLASHeqref] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange] = ACTIONS(12221), + [anon_sym_BSLASHCrefrange] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewlabel] = ACTIONS(12221), + [anon_sym_BSLASHnewcommand] = ACTIONS(12221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12221), + [anon_sym_BSLASHgls] = ACTIONS(12221), + [anon_sym_BSLASHGls] = ACTIONS(12221), + [anon_sym_BSLASHGLS] = ACTIONS(12221), + [anon_sym_BSLASHglspl] = ACTIONS(12221), + [anon_sym_BSLASHGlspl] = ACTIONS(12221), + [anon_sym_BSLASHGLSpl] = ACTIONS(12221), + [anon_sym_BSLASHglsdisp] = ACTIONS(12221), + [anon_sym_BSLASHglslink] = ACTIONS(12221), + [anon_sym_BSLASHglstext] = ACTIONS(12221), + [anon_sym_BSLASHGlstext] = ACTIONS(12221), + [anon_sym_BSLASHGLStext] = ACTIONS(12221), + [anon_sym_BSLASHglsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12221), + [anon_sym_BSLASHglsplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSplural] = ACTIONS(12221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHglsname] = ACTIONS(12221), + [anon_sym_BSLASHGlsname] = ACTIONS(12221), + [anon_sym_BSLASHGLSname] = ACTIONS(12221), + [anon_sym_BSLASHglssymbol] = ACTIONS(12221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12221), + [anon_sym_BSLASHglsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12221), + [anon_sym_BSLASHglsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12221), + [anon_sym_BSLASHglsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12221), + [anon_sym_BSLASHglsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12221), + [anon_sym_BSLASHglsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12221), + [anon_sym_BSLASHnewacronym] = ACTIONS(12221), + [anon_sym_BSLASHacrshort] = ACTIONS(12221), + [anon_sym_BSLASHAcrshort] = ACTIONS(12221), + [anon_sym_BSLASHACRshort] = ACTIONS(12221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12221), + [anon_sym_BSLASHacrlong] = ACTIONS(12221), + [anon_sym_BSLASHAcrlong] = ACTIONS(12221), + [anon_sym_BSLASHACRlong] = ACTIONS(12221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12221), + [anon_sym_BSLASHacrfull] = ACTIONS(12221), + [anon_sym_BSLASHAcrfull] = ACTIONS(12221), + [anon_sym_BSLASHACRfull] = ACTIONS(12221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12221), + [anon_sym_BSLASHacs] = ACTIONS(12221), + [anon_sym_BSLASHAcs] = ACTIONS(12221), + [anon_sym_BSLASHacsp] = ACTIONS(12221), + [anon_sym_BSLASHAcsp] = ACTIONS(12221), + [anon_sym_BSLASHacl] = ACTIONS(12221), + [anon_sym_BSLASHAcl] = ACTIONS(12221), + [anon_sym_BSLASHaclp] = ACTIONS(12221), + [anon_sym_BSLASHAclp] = ACTIONS(12221), + [anon_sym_BSLASHacf] = ACTIONS(12221), + [anon_sym_BSLASHAcf] = ACTIONS(12221), + [anon_sym_BSLASHacfp] = ACTIONS(12221), + [anon_sym_BSLASHAcfp] = ACTIONS(12221), + [anon_sym_BSLASHac] = ACTIONS(12221), + [anon_sym_BSLASHAc] = ACTIONS(12221), + [anon_sym_BSLASHacp] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12221), + [anon_sym_BSLASHcolor] = ACTIONS(12221), + [anon_sym_BSLASHcolorbox] = ACTIONS(12221), + [anon_sym_BSLASHtextcolor] = ACTIONS(12221), + [anon_sym_BSLASHpagecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12221), + }, + [873] = { + [sym_generic_command_name] = ACTIONS(12148), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12148), + [aux_sym_chapter_token1] = ACTIONS(12148), + [aux_sym_section_token1] = ACTIONS(12148), + [aux_sym_subsection_token1] = ACTIONS(12148), + [aux_sym_subsubsection_token1] = ACTIONS(12148), + [aux_sym_paragraph_token1] = ACTIONS(12148), + [aux_sym_subparagraph_token1] = ACTIONS(12148), + [anon_sym_BSLASHitem] = ACTIONS(12148), + [anon_sym_LBRACK] = ACTIONS(12146), + [anon_sym_LBRACE] = ACTIONS(12146), + [anon_sym_LPAREN] = ACTIONS(12146), + [anon_sym_COMMA] = ACTIONS(12146), + [anon_sym_EQ] = ACTIONS(12146), + [sym_word] = ACTIONS(12146), + [sym_param] = ACTIONS(12146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12146), + [anon_sym_DOLLAR] = ACTIONS(12148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12146), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12146), + [anon_sym_BSLASHbegin] = ACTIONS(12148), + [anon_sym_BSLASHcaption] = ACTIONS(12148), + [anon_sym_BSLASHcite] = ACTIONS(12148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCite] = ACTIONS(12148), + [anon_sym_BSLASHnocite] = ACTIONS(12148), + [anon_sym_BSLASHcitet] = ACTIONS(12148), + [anon_sym_BSLASHcitep] = ACTIONS(12148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteauthor] = ACTIONS(12148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitetitle] = ACTIONS(12148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteyear] = ACTIONS(12148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitedate] = ACTIONS(12148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteurl] = ACTIONS(12148), + [anon_sym_BSLASHfullcite] = ACTIONS(12148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12148), + [anon_sym_BSLASHcitealt] = ACTIONS(12148), + [anon_sym_BSLASHcitealp] = ACTIONS(12148), + [anon_sym_BSLASHcitetext] = ACTIONS(12148), + [anon_sym_BSLASHparencite] = ACTIONS(12148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHParencite] = ACTIONS(12148), + [anon_sym_BSLASHfootcite] = ACTIONS(12148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12148), + [anon_sym_BSLASHtextcite] = ACTIONS(12148), + [anon_sym_BSLASHTextcite] = ACTIONS(12148), + [anon_sym_BSLASHsmartcite] = ACTIONS(12148), + [anon_sym_BSLASHSmartcite] = ACTIONS(12148), + [anon_sym_BSLASHsupercite] = ACTIONS(12148), + [anon_sym_BSLASHautocite] = ACTIONS(12148), + [anon_sym_BSLASHAutocite] = ACTIONS(12148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHvolcite] = ACTIONS(12148), + [anon_sym_BSLASHVolcite] = ACTIONS(12148), + [anon_sym_BSLASHpvolcite] = ACTIONS(12148), + [anon_sym_BSLASHPvolcite] = ACTIONS(12148), + [anon_sym_BSLASHfvolcite] = ACTIONS(12148), + [anon_sym_BSLASHftvolcite] = ACTIONS(12148), + [anon_sym_BSLASHsvolcite] = ACTIONS(12148), + [anon_sym_BSLASHSvolcite] = ACTIONS(12148), + [anon_sym_BSLASHtvolcite] = ACTIONS(12148), + [anon_sym_BSLASHTvolcite] = ACTIONS(12148), + [anon_sym_BSLASHavolcite] = ACTIONS(12148), + [anon_sym_BSLASHAvolcite] = ACTIONS(12148), + [anon_sym_BSLASHnotecite] = ACTIONS(12148), + [anon_sym_BSLASHpnotecite] = ACTIONS(12148), + [anon_sym_BSLASHPnotecite] = ACTIONS(12148), + [anon_sym_BSLASHfnotecite] = ACTIONS(12148), + [anon_sym_BSLASHusepackage] = ACTIONS(12148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12148), + [anon_sym_BSLASHinclude] = ACTIONS(12148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12148), + [anon_sym_BSLASHinput] = ACTIONS(12148), + [anon_sym_BSLASHsubfile] = ACTIONS(12148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12148), + [anon_sym_BSLASHbibliography] = ACTIONS(12148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12148), + [anon_sym_BSLASHincludesvg] = ACTIONS(12148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12148), + [anon_sym_BSLASHimport] = ACTIONS(12148), + [anon_sym_BSLASHsubimport] = ACTIONS(12148), + [anon_sym_BSLASHinputfrom] = ACTIONS(12148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12148), + [anon_sym_BSLASHincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHlabel] = ACTIONS(12148), + [anon_sym_BSLASHref] = ACTIONS(12148), + [anon_sym_BSLASHvref] = ACTIONS(12148), + [anon_sym_BSLASHVref] = ACTIONS(12148), + [anon_sym_BSLASHautoref] = ACTIONS(12148), + [anon_sym_BSLASHpageref] = ACTIONS(12148), + [anon_sym_BSLASHcref] = ACTIONS(12148), + [anon_sym_BSLASHCref] = ACTIONS(12148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnameCref] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHlabelcref] = ACTIONS(12148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12148), + [anon_sym_BSLASHeqref] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange] = ACTIONS(12148), + [anon_sym_BSLASHCrefrange] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewlabel] = ACTIONS(12148), + [anon_sym_BSLASHnewcommand] = ACTIONS(12148), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12148), + [anon_sym_BSLASHgls] = ACTIONS(12148), + [anon_sym_BSLASHGls] = ACTIONS(12148), + [anon_sym_BSLASHGLS] = ACTIONS(12148), + [anon_sym_BSLASHglspl] = ACTIONS(12148), + [anon_sym_BSLASHGlspl] = ACTIONS(12148), + [anon_sym_BSLASHGLSpl] = ACTIONS(12148), + [anon_sym_BSLASHglsdisp] = ACTIONS(12148), + [anon_sym_BSLASHglslink] = ACTIONS(12148), + [anon_sym_BSLASHglstext] = ACTIONS(12148), + [anon_sym_BSLASHGlstext] = ACTIONS(12148), + [anon_sym_BSLASHGLStext] = ACTIONS(12148), + [anon_sym_BSLASHglsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12148), + [anon_sym_BSLASHglsplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSplural] = ACTIONS(12148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHglsname] = ACTIONS(12148), + [anon_sym_BSLASHGlsname] = ACTIONS(12148), + [anon_sym_BSLASHGLSname] = ACTIONS(12148), + [anon_sym_BSLASHglssymbol] = ACTIONS(12148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12148), + [anon_sym_BSLASHglsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12148), + [anon_sym_BSLASHglsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12148), + [anon_sym_BSLASHglsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12148), + [anon_sym_BSLASHglsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12148), + [anon_sym_BSLASHglsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12148), + [anon_sym_BSLASHnewacronym] = ACTIONS(12148), + [anon_sym_BSLASHacrshort] = ACTIONS(12148), + [anon_sym_BSLASHAcrshort] = ACTIONS(12148), + [anon_sym_BSLASHACRshort] = ACTIONS(12148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12148), + [anon_sym_BSLASHacrlong] = ACTIONS(12148), + [anon_sym_BSLASHAcrlong] = ACTIONS(12148), + [anon_sym_BSLASHACRlong] = ACTIONS(12148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12148), + [anon_sym_BSLASHacrfull] = ACTIONS(12148), + [anon_sym_BSLASHAcrfull] = ACTIONS(12148), + [anon_sym_BSLASHACRfull] = ACTIONS(12148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12148), + [anon_sym_BSLASHacs] = ACTIONS(12148), + [anon_sym_BSLASHAcs] = ACTIONS(12148), + [anon_sym_BSLASHacsp] = ACTIONS(12148), + [anon_sym_BSLASHAcsp] = ACTIONS(12148), + [anon_sym_BSLASHacl] = ACTIONS(12148), + [anon_sym_BSLASHAcl] = ACTIONS(12148), + [anon_sym_BSLASHaclp] = ACTIONS(12148), + [anon_sym_BSLASHAclp] = ACTIONS(12148), + [anon_sym_BSLASHacf] = ACTIONS(12148), + [anon_sym_BSLASHAcf] = ACTIONS(12148), + [anon_sym_BSLASHacfp] = ACTIONS(12148), + [anon_sym_BSLASHAcfp] = ACTIONS(12148), + [anon_sym_BSLASHac] = ACTIONS(12148), + [anon_sym_BSLASHAc] = ACTIONS(12148), + [anon_sym_BSLASHacp] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12148), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12148), + [anon_sym_BSLASHcolor] = ACTIONS(12148), + [anon_sym_BSLASHcolorbox] = ACTIONS(12148), + [anon_sym_BSLASHtextcolor] = ACTIONS(12148), + [anon_sym_BSLASHpagecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12148), + }, + [874] = { + [sym_generic_command_name] = ACTIONS(12217), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12217), + [aux_sym_chapter_token1] = ACTIONS(12217), + [aux_sym_section_token1] = ACTIONS(12217), + [aux_sym_subsection_token1] = ACTIONS(12217), + [aux_sym_subsubsection_token1] = ACTIONS(12217), + [aux_sym_paragraph_token1] = ACTIONS(12217), + [aux_sym_subparagraph_token1] = ACTIONS(12217), + [anon_sym_BSLASHitem] = ACTIONS(12217), + [anon_sym_LBRACK] = ACTIONS(12215), + [anon_sym_LBRACE] = ACTIONS(12215), + [anon_sym_LPAREN] = ACTIONS(12215), + [anon_sym_COMMA] = ACTIONS(12215), + [anon_sym_EQ] = ACTIONS(12215), + [sym_word] = ACTIONS(12215), + [sym_param] = ACTIONS(12215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12215), + [anon_sym_DOLLAR] = ACTIONS(12217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12215), + [anon_sym_BSLASHbegin] = ACTIONS(12217), + [anon_sym_BSLASHend] = ACTIONS(12217), + [anon_sym_BSLASHcaption] = ACTIONS(12217), + [anon_sym_BSLASHcite] = ACTIONS(12217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCite] = ACTIONS(12217), + [anon_sym_BSLASHnocite] = ACTIONS(12217), + [anon_sym_BSLASHcitet] = ACTIONS(12217), + [anon_sym_BSLASHcitep] = ACTIONS(12217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteauthor] = ACTIONS(12217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitetitle] = ACTIONS(12217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteyear] = ACTIONS(12217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitedate] = ACTIONS(12217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteurl] = ACTIONS(12217), + [anon_sym_BSLASHfullcite] = ACTIONS(12217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12217), + [anon_sym_BSLASHcitealt] = ACTIONS(12217), + [anon_sym_BSLASHcitealp] = ACTIONS(12217), + [anon_sym_BSLASHcitetext] = ACTIONS(12217), + [anon_sym_BSLASHparencite] = ACTIONS(12217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHParencite] = ACTIONS(12217), + [anon_sym_BSLASHfootcite] = ACTIONS(12217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12217), + [anon_sym_BSLASHtextcite] = ACTIONS(12217), + [anon_sym_BSLASHTextcite] = ACTIONS(12217), + [anon_sym_BSLASHsmartcite] = ACTIONS(12217), + [anon_sym_BSLASHSmartcite] = ACTIONS(12217), + [anon_sym_BSLASHsupercite] = ACTIONS(12217), + [anon_sym_BSLASHautocite] = ACTIONS(12217), + [anon_sym_BSLASHAutocite] = ACTIONS(12217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHvolcite] = ACTIONS(12217), + [anon_sym_BSLASHVolcite] = ACTIONS(12217), + [anon_sym_BSLASHpvolcite] = ACTIONS(12217), + [anon_sym_BSLASHPvolcite] = ACTIONS(12217), + [anon_sym_BSLASHfvolcite] = ACTIONS(12217), + [anon_sym_BSLASHftvolcite] = ACTIONS(12217), + [anon_sym_BSLASHsvolcite] = ACTIONS(12217), + [anon_sym_BSLASHSvolcite] = ACTIONS(12217), + [anon_sym_BSLASHtvolcite] = ACTIONS(12217), + [anon_sym_BSLASHTvolcite] = ACTIONS(12217), + [anon_sym_BSLASHavolcite] = ACTIONS(12217), + [anon_sym_BSLASHAvolcite] = ACTIONS(12217), + [anon_sym_BSLASHnotecite] = ACTIONS(12217), + [anon_sym_BSLASHpnotecite] = ACTIONS(12217), + [anon_sym_BSLASHPnotecite] = ACTIONS(12217), + [anon_sym_BSLASHfnotecite] = ACTIONS(12217), + [anon_sym_BSLASHusepackage] = ACTIONS(12217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12217), + [anon_sym_BSLASHinclude] = ACTIONS(12217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12217), + [anon_sym_BSLASHinput] = ACTIONS(12217), + [anon_sym_BSLASHsubfile] = ACTIONS(12217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12217), + [anon_sym_BSLASHbibliography] = ACTIONS(12217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12217), + [anon_sym_BSLASHincludesvg] = ACTIONS(12217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12217), + [anon_sym_BSLASHimport] = ACTIONS(12217), + [anon_sym_BSLASHsubimport] = ACTIONS(12217), + [anon_sym_BSLASHinputfrom] = ACTIONS(12217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12217), + [anon_sym_BSLASHincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHlabel] = ACTIONS(12217), + [anon_sym_BSLASHref] = ACTIONS(12217), + [anon_sym_BSLASHvref] = ACTIONS(12217), + [anon_sym_BSLASHVref] = ACTIONS(12217), + [anon_sym_BSLASHautoref] = ACTIONS(12217), + [anon_sym_BSLASHpageref] = ACTIONS(12217), + [anon_sym_BSLASHcref] = ACTIONS(12217), + [anon_sym_BSLASHCref] = ACTIONS(12217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnameCref] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHlabelcref] = ACTIONS(12217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12217), + [anon_sym_BSLASHeqref] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange] = ACTIONS(12217), + [anon_sym_BSLASHCrefrange] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewlabel] = ACTIONS(12217), + [anon_sym_BSLASHnewcommand] = ACTIONS(12217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12217), + [anon_sym_BSLASHgls] = ACTIONS(12217), + [anon_sym_BSLASHGls] = ACTIONS(12217), + [anon_sym_BSLASHGLS] = ACTIONS(12217), + [anon_sym_BSLASHglspl] = ACTIONS(12217), + [anon_sym_BSLASHGlspl] = ACTIONS(12217), + [anon_sym_BSLASHGLSpl] = ACTIONS(12217), + [anon_sym_BSLASHglsdisp] = ACTIONS(12217), + [anon_sym_BSLASHglslink] = ACTIONS(12217), + [anon_sym_BSLASHglstext] = ACTIONS(12217), + [anon_sym_BSLASHGlstext] = ACTIONS(12217), + [anon_sym_BSLASHGLStext] = ACTIONS(12217), + [anon_sym_BSLASHglsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12217), + [anon_sym_BSLASHglsplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSplural] = ACTIONS(12217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHglsname] = ACTIONS(12217), + [anon_sym_BSLASHGlsname] = ACTIONS(12217), + [anon_sym_BSLASHGLSname] = ACTIONS(12217), + [anon_sym_BSLASHglssymbol] = ACTIONS(12217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12217), + [anon_sym_BSLASHglsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12217), + [anon_sym_BSLASHglsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12217), + [anon_sym_BSLASHglsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12217), + [anon_sym_BSLASHglsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12217), + [anon_sym_BSLASHglsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12217), + [anon_sym_BSLASHnewacronym] = ACTIONS(12217), + [anon_sym_BSLASHacrshort] = ACTIONS(12217), + [anon_sym_BSLASHAcrshort] = ACTIONS(12217), + [anon_sym_BSLASHACRshort] = ACTIONS(12217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12217), + [anon_sym_BSLASHacrlong] = ACTIONS(12217), + [anon_sym_BSLASHAcrlong] = ACTIONS(12217), + [anon_sym_BSLASHACRlong] = ACTIONS(12217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12217), + [anon_sym_BSLASHacrfull] = ACTIONS(12217), + [anon_sym_BSLASHAcrfull] = ACTIONS(12217), + [anon_sym_BSLASHACRfull] = ACTIONS(12217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12217), + [anon_sym_BSLASHacs] = ACTIONS(12217), + [anon_sym_BSLASHAcs] = ACTIONS(12217), + [anon_sym_BSLASHacsp] = ACTIONS(12217), + [anon_sym_BSLASHAcsp] = ACTIONS(12217), + [anon_sym_BSLASHacl] = ACTIONS(12217), + [anon_sym_BSLASHAcl] = ACTIONS(12217), + [anon_sym_BSLASHaclp] = ACTIONS(12217), + [anon_sym_BSLASHAclp] = ACTIONS(12217), + [anon_sym_BSLASHacf] = ACTIONS(12217), + [anon_sym_BSLASHAcf] = ACTIONS(12217), + [anon_sym_BSLASHacfp] = ACTIONS(12217), + [anon_sym_BSLASHAcfp] = ACTIONS(12217), + [anon_sym_BSLASHac] = ACTIONS(12217), + [anon_sym_BSLASHAc] = ACTIONS(12217), + [anon_sym_BSLASHacp] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12217), + [anon_sym_BSLASHcolor] = ACTIONS(12217), + [anon_sym_BSLASHcolorbox] = ACTIONS(12217), + [anon_sym_BSLASHtextcolor] = ACTIONS(12217), + [anon_sym_BSLASHpagecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12217), + }, + [875] = { + [sym_generic_command_name] = ACTIONS(12213), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12213), + [aux_sym_chapter_token1] = ACTIONS(12213), + [aux_sym_section_token1] = ACTIONS(12213), + [aux_sym_subsection_token1] = ACTIONS(12213), + [aux_sym_subsubsection_token1] = ACTIONS(12213), + [aux_sym_paragraph_token1] = ACTIONS(12213), + [aux_sym_subparagraph_token1] = ACTIONS(12213), + [anon_sym_BSLASHitem] = ACTIONS(12213), + [anon_sym_LBRACK] = ACTIONS(12211), + [anon_sym_LBRACE] = ACTIONS(12211), + [anon_sym_LPAREN] = ACTIONS(12211), + [anon_sym_COMMA] = ACTIONS(12211), + [anon_sym_EQ] = ACTIONS(12211), + [sym_word] = ACTIONS(12211), + [sym_param] = ACTIONS(12211), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12211), + [anon_sym_DOLLAR] = ACTIONS(12213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12211), + [anon_sym_BSLASHbegin] = ACTIONS(12213), + [anon_sym_BSLASHend] = ACTIONS(12213), + [anon_sym_BSLASHcaption] = ACTIONS(12213), + [anon_sym_BSLASHcite] = ACTIONS(12213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCite] = ACTIONS(12213), + [anon_sym_BSLASHnocite] = ACTIONS(12213), + [anon_sym_BSLASHcitet] = ACTIONS(12213), + [anon_sym_BSLASHcitep] = ACTIONS(12213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteauthor] = ACTIONS(12213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitetitle] = ACTIONS(12213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteyear] = ACTIONS(12213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitedate] = ACTIONS(12213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteurl] = ACTIONS(12213), + [anon_sym_BSLASHfullcite] = ACTIONS(12213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12213), + [anon_sym_BSLASHcitealt] = ACTIONS(12213), + [anon_sym_BSLASHcitealp] = ACTIONS(12213), + [anon_sym_BSLASHcitetext] = ACTIONS(12213), + [anon_sym_BSLASHparencite] = ACTIONS(12213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHParencite] = ACTIONS(12213), + [anon_sym_BSLASHfootcite] = ACTIONS(12213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12213), + [anon_sym_BSLASHtextcite] = ACTIONS(12213), + [anon_sym_BSLASHTextcite] = ACTIONS(12213), + [anon_sym_BSLASHsmartcite] = ACTIONS(12213), + [anon_sym_BSLASHSmartcite] = ACTIONS(12213), + [anon_sym_BSLASHsupercite] = ACTIONS(12213), + [anon_sym_BSLASHautocite] = ACTIONS(12213), + [anon_sym_BSLASHAutocite] = ACTIONS(12213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHvolcite] = ACTIONS(12213), + [anon_sym_BSLASHVolcite] = ACTIONS(12213), + [anon_sym_BSLASHpvolcite] = ACTIONS(12213), + [anon_sym_BSLASHPvolcite] = ACTIONS(12213), + [anon_sym_BSLASHfvolcite] = ACTIONS(12213), + [anon_sym_BSLASHftvolcite] = ACTIONS(12213), + [anon_sym_BSLASHsvolcite] = ACTIONS(12213), + [anon_sym_BSLASHSvolcite] = ACTIONS(12213), + [anon_sym_BSLASHtvolcite] = ACTIONS(12213), + [anon_sym_BSLASHTvolcite] = ACTIONS(12213), + [anon_sym_BSLASHavolcite] = ACTIONS(12213), + [anon_sym_BSLASHAvolcite] = ACTIONS(12213), + [anon_sym_BSLASHnotecite] = ACTIONS(12213), + [anon_sym_BSLASHpnotecite] = ACTIONS(12213), + [anon_sym_BSLASHPnotecite] = ACTIONS(12213), + [anon_sym_BSLASHfnotecite] = ACTIONS(12213), + [anon_sym_BSLASHusepackage] = ACTIONS(12213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12213), + [anon_sym_BSLASHinclude] = ACTIONS(12213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12213), + [anon_sym_BSLASHinput] = ACTIONS(12213), + [anon_sym_BSLASHsubfile] = ACTIONS(12213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12213), + [anon_sym_BSLASHbibliography] = ACTIONS(12213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12213), + [anon_sym_BSLASHincludesvg] = ACTIONS(12213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12213), + [anon_sym_BSLASHimport] = ACTIONS(12213), + [anon_sym_BSLASHsubimport] = ACTIONS(12213), + [anon_sym_BSLASHinputfrom] = ACTIONS(12213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12213), + [anon_sym_BSLASHincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHlabel] = ACTIONS(12213), + [anon_sym_BSLASHref] = ACTIONS(12213), + [anon_sym_BSLASHvref] = ACTIONS(12213), + [anon_sym_BSLASHVref] = ACTIONS(12213), + [anon_sym_BSLASHautoref] = ACTIONS(12213), + [anon_sym_BSLASHpageref] = ACTIONS(12213), + [anon_sym_BSLASHcref] = ACTIONS(12213), + [anon_sym_BSLASHCref] = ACTIONS(12213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnameCref] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHlabelcref] = ACTIONS(12213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12213), + [anon_sym_BSLASHeqref] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange] = ACTIONS(12213), + [anon_sym_BSLASHCrefrange] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewlabel] = ACTIONS(12213), + [anon_sym_BSLASHnewcommand] = ACTIONS(12213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12213), + [anon_sym_BSLASHgls] = ACTIONS(12213), + [anon_sym_BSLASHGls] = ACTIONS(12213), + [anon_sym_BSLASHGLS] = ACTIONS(12213), + [anon_sym_BSLASHglspl] = ACTIONS(12213), + [anon_sym_BSLASHGlspl] = ACTIONS(12213), + [anon_sym_BSLASHGLSpl] = ACTIONS(12213), + [anon_sym_BSLASHglsdisp] = ACTIONS(12213), + [anon_sym_BSLASHglslink] = ACTIONS(12213), + [anon_sym_BSLASHglstext] = ACTIONS(12213), + [anon_sym_BSLASHGlstext] = ACTIONS(12213), + [anon_sym_BSLASHGLStext] = ACTIONS(12213), + [anon_sym_BSLASHglsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12213), + [anon_sym_BSLASHglsplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSplural] = ACTIONS(12213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHglsname] = ACTIONS(12213), + [anon_sym_BSLASHGlsname] = ACTIONS(12213), + [anon_sym_BSLASHGLSname] = ACTIONS(12213), + [anon_sym_BSLASHglssymbol] = ACTIONS(12213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12213), + [anon_sym_BSLASHglsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12213), + [anon_sym_BSLASHglsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12213), + [anon_sym_BSLASHglsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12213), + [anon_sym_BSLASHglsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12213), + [anon_sym_BSLASHglsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12213), + [anon_sym_BSLASHnewacronym] = ACTIONS(12213), + [anon_sym_BSLASHacrshort] = ACTIONS(12213), + [anon_sym_BSLASHAcrshort] = ACTIONS(12213), + [anon_sym_BSLASHACRshort] = ACTIONS(12213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12213), + [anon_sym_BSLASHacrlong] = ACTIONS(12213), + [anon_sym_BSLASHAcrlong] = ACTIONS(12213), + [anon_sym_BSLASHACRlong] = ACTIONS(12213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12213), + [anon_sym_BSLASHacrfull] = ACTIONS(12213), + [anon_sym_BSLASHAcrfull] = ACTIONS(12213), + [anon_sym_BSLASHACRfull] = ACTIONS(12213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12213), + [anon_sym_BSLASHacs] = ACTIONS(12213), + [anon_sym_BSLASHAcs] = ACTIONS(12213), + [anon_sym_BSLASHacsp] = ACTIONS(12213), + [anon_sym_BSLASHAcsp] = ACTIONS(12213), + [anon_sym_BSLASHacl] = ACTIONS(12213), + [anon_sym_BSLASHAcl] = ACTIONS(12213), + [anon_sym_BSLASHaclp] = ACTIONS(12213), + [anon_sym_BSLASHAclp] = ACTIONS(12213), + [anon_sym_BSLASHacf] = ACTIONS(12213), + [anon_sym_BSLASHAcf] = ACTIONS(12213), + [anon_sym_BSLASHacfp] = ACTIONS(12213), + [anon_sym_BSLASHAcfp] = ACTIONS(12213), + [anon_sym_BSLASHac] = ACTIONS(12213), + [anon_sym_BSLASHAc] = ACTIONS(12213), + [anon_sym_BSLASHacp] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12213), + [anon_sym_BSLASHcolor] = ACTIONS(12213), + [anon_sym_BSLASHcolorbox] = ACTIONS(12213), + [anon_sym_BSLASHtextcolor] = ACTIONS(12213), + [anon_sym_BSLASHpagecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12213), + }, + [876] = { + [sym_generic_command_name] = ACTIONS(12205), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12205), + [aux_sym_chapter_token1] = ACTIONS(12205), + [aux_sym_section_token1] = ACTIONS(12205), + [aux_sym_subsection_token1] = ACTIONS(12205), + [aux_sym_subsubsection_token1] = ACTIONS(12205), + [aux_sym_paragraph_token1] = ACTIONS(12205), + [aux_sym_subparagraph_token1] = ACTIONS(12205), + [anon_sym_BSLASHitem] = ACTIONS(12205), + [anon_sym_LBRACK] = ACTIONS(12203), + [anon_sym_LBRACE] = ACTIONS(12203), + [anon_sym_LPAREN] = ACTIONS(12203), + [anon_sym_COMMA] = ACTIONS(12203), + [anon_sym_EQ] = ACTIONS(12203), + [sym_word] = ACTIONS(12203), + [sym_param] = ACTIONS(12203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12203), + [anon_sym_DOLLAR] = ACTIONS(12205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12203), + [anon_sym_BSLASHbegin] = ACTIONS(12205), + [anon_sym_BSLASHend] = ACTIONS(12205), + [anon_sym_BSLASHcaption] = ACTIONS(12205), + [anon_sym_BSLASHcite] = ACTIONS(12205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCite] = ACTIONS(12205), + [anon_sym_BSLASHnocite] = ACTIONS(12205), + [anon_sym_BSLASHcitet] = ACTIONS(12205), + [anon_sym_BSLASHcitep] = ACTIONS(12205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteauthor] = ACTIONS(12205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitetitle] = ACTIONS(12205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteyear] = ACTIONS(12205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitedate] = ACTIONS(12205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteurl] = ACTIONS(12205), + [anon_sym_BSLASHfullcite] = ACTIONS(12205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12205), + [anon_sym_BSLASHcitealt] = ACTIONS(12205), + [anon_sym_BSLASHcitealp] = ACTIONS(12205), + [anon_sym_BSLASHcitetext] = ACTIONS(12205), + [anon_sym_BSLASHparencite] = ACTIONS(12205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHParencite] = ACTIONS(12205), + [anon_sym_BSLASHfootcite] = ACTIONS(12205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12205), + [anon_sym_BSLASHtextcite] = ACTIONS(12205), + [anon_sym_BSLASHTextcite] = ACTIONS(12205), + [anon_sym_BSLASHsmartcite] = ACTIONS(12205), + [anon_sym_BSLASHSmartcite] = ACTIONS(12205), + [anon_sym_BSLASHsupercite] = ACTIONS(12205), + [anon_sym_BSLASHautocite] = ACTIONS(12205), + [anon_sym_BSLASHAutocite] = ACTIONS(12205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHvolcite] = ACTIONS(12205), + [anon_sym_BSLASHVolcite] = ACTIONS(12205), + [anon_sym_BSLASHpvolcite] = ACTIONS(12205), + [anon_sym_BSLASHPvolcite] = ACTIONS(12205), + [anon_sym_BSLASHfvolcite] = ACTIONS(12205), + [anon_sym_BSLASHftvolcite] = ACTIONS(12205), + [anon_sym_BSLASHsvolcite] = ACTIONS(12205), + [anon_sym_BSLASHSvolcite] = ACTIONS(12205), + [anon_sym_BSLASHtvolcite] = ACTIONS(12205), + [anon_sym_BSLASHTvolcite] = ACTIONS(12205), + [anon_sym_BSLASHavolcite] = ACTIONS(12205), + [anon_sym_BSLASHAvolcite] = ACTIONS(12205), + [anon_sym_BSLASHnotecite] = ACTIONS(12205), + [anon_sym_BSLASHpnotecite] = ACTIONS(12205), + [anon_sym_BSLASHPnotecite] = ACTIONS(12205), + [anon_sym_BSLASHfnotecite] = ACTIONS(12205), + [anon_sym_BSLASHusepackage] = ACTIONS(12205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12205), + [anon_sym_BSLASHinclude] = ACTIONS(12205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12205), + [anon_sym_BSLASHinput] = ACTIONS(12205), + [anon_sym_BSLASHsubfile] = ACTIONS(12205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12205), + [anon_sym_BSLASHbibliography] = ACTIONS(12205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12205), + [anon_sym_BSLASHincludesvg] = ACTIONS(12205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12205), + [anon_sym_BSLASHimport] = ACTIONS(12205), + [anon_sym_BSLASHsubimport] = ACTIONS(12205), + [anon_sym_BSLASHinputfrom] = ACTIONS(12205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12205), + [anon_sym_BSLASHincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHlabel] = ACTIONS(12205), + [anon_sym_BSLASHref] = ACTIONS(12205), + [anon_sym_BSLASHvref] = ACTIONS(12205), + [anon_sym_BSLASHVref] = ACTIONS(12205), + [anon_sym_BSLASHautoref] = ACTIONS(12205), + [anon_sym_BSLASHpageref] = ACTIONS(12205), + [anon_sym_BSLASHcref] = ACTIONS(12205), + [anon_sym_BSLASHCref] = ACTIONS(12205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnameCref] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHlabelcref] = ACTIONS(12205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12205), + [anon_sym_BSLASHeqref] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange] = ACTIONS(12205), + [anon_sym_BSLASHCrefrange] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewlabel] = ACTIONS(12205), + [anon_sym_BSLASHnewcommand] = ACTIONS(12205), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12205), + [anon_sym_BSLASHgls] = ACTIONS(12205), + [anon_sym_BSLASHGls] = ACTIONS(12205), + [anon_sym_BSLASHGLS] = ACTIONS(12205), + [anon_sym_BSLASHglspl] = ACTIONS(12205), + [anon_sym_BSLASHGlspl] = ACTIONS(12205), + [anon_sym_BSLASHGLSpl] = ACTIONS(12205), + [anon_sym_BSLASHglsdisp] = ACTIONS(12205), + [anon_sym_BSLASHglslink] = ACTIONS(12205), + [anon_sym_BSLASHglstext] = ACTIONS(12205), + [anon_sym_BSLASHGlstext] = ACTIONS(12205), + [anon_sym_BSLASHGLStext] = ACTIONS(12205), + [anon_sym_BSLASHglsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12205), + [anon_sym_BSLASHglsplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSplural] = ACTIONS(12205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHglsname] = ACTIONS(12205), + [anon_sym_BSLASHGlsname] = ACTIONS(12205), + [anon_sym_BSLASHGLSname] = ACTIONS(12205), + [anon_sym_BSLASHglssymbol] = ACTIONS(12205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12205), + [anon_sym_BSLASHglsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12205), + [anon_sym_BSLASHglsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12205), + [anon_sym_BSLASHglsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12205), + [anon_sym_BSLASHglsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12205), + [anon_sym_BSLASHglsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12205), + [anon_sym_BSLASHnewacronym] = ACTIONS(12205), + [anon_sym_BSLASHacrshort] = ACTIONS(12205), + [anon_sym_BSLASHAcrshort] = ACTIONS(12205), + [anon_sym_BSLASHACRshort] = ACTIONS(12205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12205), + [anon_sym_BSLASHacrlong] = ACTIONS(12205), + [anon_sym_BSLASHAcrlong] = ACTIONS(12205), + [anon_sym_BSLASHACRlong] = ACTIONS(12205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12205), + [anon_sym_BSLASHacrfull] = ACTIONS(12205), + [anon_sym_BSLASHAcrfull] = ACTIONS(12205), + [anon_sym_BSLASHACRfull] = ACTIONS(12205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12205), + [anon_sym_BSLASHacs] = ACTIONS(12205), + [anon_sym_BSLASHAcs] = ACTIONS(12205), + [anon_sym_BSLASHacsp] = ACTIONS(12205), + [anon_sym_BSLASHAcsp] = ACTIONS(12205), + [anon_sym_BSLASHacl] = ACTIONS(12205), + [anon_sym_BSLASHAcl] = ACTIONS(12205), + [anon_sym_BSLASHaclp] = ACTIONS(12205), + [anon_sym_BSLASHAclp] = ACTIONS(12205), + [anon_sym_BSLASHacf] = ACTIONS(12205), + [anon_sym_BSLASHAcf] = ACTIONS(12205), + [anon_sym_BSLASHacfp] = ACTIONS(12205), + [anon_sym_BSLASHAcfp] = ACTIONS(12205), + [anon_sym_BSLASHac] = ACTIONS(12205), + [anon_sym_BSLASHAc] = ACTIONS(12205), + [anon_sym_BSLASHacp] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12205), + [anon_sym_BSLASHcolor] = ACTIONS(12205), + [anon_sym_BSLASHcolorbox] = ACTIONS(12205), + [anon_sym_BSLASHtextcolor] = ACTIONS(12205), + [anon_sym_BSLASHpagecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12205), + }, + [877] = { + [sym_generic_command_name] = ACTIONS(12201), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12201), + [aux_sym_chapter_token1] = ACTIONS(12201), + [aux_sym_section_token1] = ACTIONS(12201), + [aux_sym_subsection_token1] = ACTIONS(12201), + [aux_sym_subsubsection_token1] = ACTIONS(12201), + [aux_sym_paragraph_token1] = ACTIONS(12201), + [aux_sym_subparagraph_token1] = ACTIONS(12201), + [anon_sym_BSLASHitem] = ACTIONS(12201), + [anon_sym_LBRACK] = ACTIONS(12199), + [anon_sym_LBRACE] = ACTIONS(12199), + [anon_sym_LPAREN] = ACTIONS(12199), + [anon_sym_COMMA] = ACTIONS(12199), + [anon_sym_EQ] = ACTIONS(12199), + [sym_word] = ACTIONS(12199), + [sym_param] = ACTIONS(12199), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12199), + [anon_sym_DOLLAR] = ACTIONS(12201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12199), + [anon_sym_BSLASHbegin] = ACTIONS(12201), + [anon_sym_BSLASHend] = ACTIONS(12201), + [anon_sym_BSLASHcaption] = ACTIONS(12201), + [anon_sym_BSLASHcite] = ACTIONS(12201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCite] = ACTIONS(12201), + [anon_sym_BSLASHnocite] = ACTIONS(12201), + [anon_sym_BSLASHcitet] = ACTIONS(12201), + [anon_sym_BSLASHcitep] = ACTIONS(12201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteauthor] = ACTIONS(12201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitetitle] = ACTIONS(12201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteyear] = ACTIONS(12201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitedate] = ACTIONS(12201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteurl] = ACTIONS(12201), + [anon_sym_BSLASHfullcite] = ACTIONS(12201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12201), + [anon_sym_BSLASHcitealt] = ACTIONS(12201), + [anon_sym_BSLASHcitealp] = ACTIONS(12201), + [anon_sym_BSLASHcitetext] = ACTIONS(12201), + [anon_sym_BSLASHparencite] = ACTIONS(12201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHParencite] = ACTIONS(12201), + [anon_sym_BSLASHfootcite] = ACTIONS(12201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12201), + [anon_sym_BSLASHtextcite] = ACTIONS(12201), + [anon_sym_BSLASHTextcite] = ACTIONS(12201), + [anon_sym_BSLASHsmartcite] = ACTIONS(12201), + [anon_sym_BSLASHSmartcite] = ACTIONS(12201), + [anon_sym_BSLASHsupercite] = ACTIONS(12201), + [anon_sym_BSLASHautocite] = ACTIONS(12201), + [anon_sym_BSLASHAutocite] = ACTIONS(12201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHvolcite] = ACTIONS(12201), + [anon_sym_BSLASHVolcite] = ACTIONS(12201), + [anon_sym_BSLASHpvolcite] = ACTIONS(12201), + [anon_sym_BSLASHPvolcite] = ACTIONS(12201), + [anon_sym_BSLASHfvolcite] = ACTIONS(12201), + [anon_sym_BSLASHftvolcite] = ACTIONS(12201), + [anon_sym_BSLASHsvolcite] = ACTIONS(12201), + [anon_sym_BSLASHSvolcite] = ACTIONS(12201), + [anon_sym_BSLASHtvolcite] = ACTIONS(12201), + [anon_sym_BSLASHTvolcite] = ACTIONS(12201), + [anon_sym_BSLASHavolcite] = ACTIONS(12201), + [anon_sym_BSLASHAvolcite] = ACTIONS(12201), + [anon_sym_BSLASHnotecite] = ACTIONS(12201), + [anon_sym_BSLASHpnotecite] = ACTIONS(12201), + [anon_sym_BSLASHPnotecite] = ACTIONS(12201), + [anon_sym_BSLASHfnotecite] = ACTIONS(12201), + [anon_sym_BSLASHusepackage] = ACTIONS(12201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12201), + [anon_sym_BSLASHinclude] = ACTIONS(12201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12201), + [anon_sym_BSLASHinput] = ACTIONS(12201), + [anon_sym_BSLASHsubfile] = ACTIONS(12201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12201), + [anon_sym_BSLASHbibliography] = ACTIONS(12201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12201), + [anon_sym_BSLASHincludesvg] = ACTIONS(12201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12201), + [anon_sym_BSLASHimport] = ACTIONS(12201), + [anon_sym_BSLASHsubimport] = ACTIONS(12201), + [anon_sym_BSLASHinputfrom] = ACTIONS(12201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12201), + [anon_sym_BSLASHincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHlabel] = ACTIONS(12201), + [anon_sym_BSLASHref] = ACTIONS(12201), + [anon_sym_BSLASHvref] = ACTIONS(12201), + [anon_sym_BSLASHVref] = ACTIONS(12201), + [anon_sym_BSLASHautoref] = ACTIONS(12201), + [anon_sym_BSLASHpageref] = ACTIONS(12201), + [anon_sym_BSLASHcref] = ACTIONS(12201), + [anon_sym_BSLASHCref] = ACTIONS(12201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnameCref] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHlabelcref] = ACTIONS(12201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12201), + [anon_sym_BSLASHeqref] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange] = ACTIONS(12201), + [anon_sym_BSLASHCrefrange] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewlabel] = ACTIONS(12201), + [anon_sym_BSLASHnewcommand] = ACTIONS(12201), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12201), + [anon_sym_BSLASHgls] = ACTIONS(12201), + [anon_sym_BSLASHGls] = ACTIONS(12201), + [anon_sym_BSLASHGLS] = ACTIONS(12201), + [anon_sym_BSLASHglspl] = ACTIONS(12201), + [anon_sym_BSLASHGlspl] = ACTIONS(12201), + [anon_sym_BSLASHGLSpl] = ACTIONS(12201), + [anon_sym_BSLASHglsdisp] = ACTIONS(12201), + [anon_sym_BSLASHglslink] = ACTIONS(12201), + [anon_sym_BSLASHglstext] = ACTIONS(12201), + [anon_sym_BSLASHGlstext] = ACTIONS(12201), + [anon_sym_BSLASHGLStext] = ACTIONS(12201), + [anon_sym_BSLASHglsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12201), + [anon_sym_BSLASHglsplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSplural] = ACTIONS(12201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHglsname] = ACTIONS(12201), + [anon_sym_BSLASHGlsname] = ACTIONS(12201), + [anon_sym_BSLASHGLSname] = ACTIONS(12201), + [anon_sym_BSLASHglssymbol] = ACTIONS(12201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12201), + [anon_sym_BSLASHglsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12201), + [anon_sym_BSLASHglsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12201), + [anon_sym_BSLASHglsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12201), + [anon_sym_BSLASHglsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12201), + [anon_sym_BSLASHglsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12201), + [anon_sym_BSLASHnewacronym] = ACTIONS(12201), + [anon_sym_BSLASHacrshort] = ACTIONS(12201), + [anon_sym_BSLASHAcrshort] = ACTIONS(12201), + [anon_sym_BSLASHACRshort] = ACTIONS(12201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12201), + [anon_sym_BSLASHacrlong] = ACTIONS(12201), + [anon_sym_BSLASHAcrlong] = ACTIONS(12201), + [anon_sym_BSLASHACRlong] = ACTIONS(12201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12201), + [anon_sym_BSLASHacrfull] = ACTIONS(12201), + [anon_sym_BSLASHAcrfull] = ACTIONS(12201), + [anon_sym_BSLASHACRfull] = ACTIONS(12201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12201), + [anon_sym_BSLASHacs] = ACTIONS(12201), + [anon_sym_BSLASHAcs] = ACTIONS(12201), + [anon_sym_BSLASHacsp] = ACTIONS(12201), + [anon_sym_BSLASHAcsp] = ACTIONS(12201), + [anon_sym_BSLASHacl] = ACTIONS(12201), + [anon_sym_BSLASHAcl] = ACTIONS(12201), + [anon_sym_BSLASHaclp] = ACTIONS(12201), + [anon_sym_BSLASHAclp] = ACTIONS(12201), + [anon_sym_BSLASHacf] = ACTIONS(12201), + [anon_sym_BSLASHAcf] = ACTIONS(12201), + [anon_sym_BSLASHacfp] = ACTIONS(12201), + [anon_sym_BSLASHAcfp] = ACTIONS(12201), + [anon_sym_BSLASHac] = ACTIONS(12201), + [anon_sym_BSLASHAc] = ACTIONS(12201), + [anon_sym_BSLASHacp] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12201), + [anon_sym_BSLASHcolor] = ACTIONS(12201), + [anon_sym_BSLASHcolorbox] = ACTIONS(12201), + [anon_sym_BSLASHtextcolor] = ACTIONS(12201), + [anon_sym_BSLASHpagecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12201), + }, + [878] = { + [sym_generic_command_name] = ACTIONS(12193), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12193), + [aux_sym_chapter_token1] = ACTIONS(12193), + [aux_sym_section_token1] = ACTIONS(12193), + [aux_sym_subsection_token1] = ACTIONS(12193), + [aux_sym_subsubsection_token1] = ACTIONS(12193), + [aux_sym_paragraph_token1] = ACTIONS(12193), + [aux_sym_subparagraph_token1] = ACTIONS(12193), + [anon_sym_BSLASHitem] = ACTIONS(12193), + [anon_sym_LBRACK] = ACTIONS(12191), + [anon_sym_LBRACE] = ACTIONS(12191), + [anon_sym_LPAREN] = ACTIONS(12191), + [anon_sym_COMMA] = ACTIONS(12191), + [anon_sym_EQ] = ACTIONS(12191), + [sym_word] = ACTIONS(12191), + [sym_param] = ACTIONS(12191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12191), + [anon_sym_DOLLAR] = ACTIONS(12193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12191), + [anon_sym_BSLASHbegin] = ACTIONS(12193), + [anon_sym_BSLASHend] = ACTIONS(12193), + [anon_sym_BSLASHcaption] = ACTIONS(12193), + [anon_sym_BSLASHcite] = ACTIONS(12193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCite] = ACTIONS(12193), + [anon_sym_BSLASHnocite] = ACTIONS(12193), + [anon_sym_BSLASHcitet] = ACTIONS(12193), + [anon_sym_BSLASHcitep] = ACTIONS(12193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteauthor] = ACTIONS(12193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitetitle] = ACTIONS(12193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteyear] = ACTIONS(12193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitedate] = ACTIONS(12193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteurl] = ACTIONS(12193), + [anon_sym_BSLASHfullcite] = ACTIONS(12193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12193), + [anon_sym_BSLASHcitealt] = ACTIONS(12193), + [anon_sym_BSLASHcitealp] = ACTIONS(12193), + [anon_sym_BSLASHcitetext] = ACTIONS(12193), + [anon_sym_BSLASHparencite] = ACTIONS(12193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHParencite] = ACTIONS(12193), + [anon_sym_BSLASHfootcite] = ACTIONS(12193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12193), + [anon_sym_BSLASHtextcite] = ACTIONS(12193), + [anon_sym_BSLASHTextcite] = ACTIONS(12193), + [anon_sym_BSLASHsmartcite] = ACTIONS(12193), + [anon_sym_BSLASHSmartcite] = ACTIONS(12193), + [anon_sym_BSLASHsupercite] = ACTIONS(12193), + [anon_sym_BSLASHautocite] = ACTIONS(12193), + [anon_sym_BSLASHAutocite] = ACTIONS(12193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHvolcite] = ACTIONS(12193), + [anon_sym_BSLASHVolcite] = ACTIONS(12193), + [anon_sym_BSLASHpvolcite] = ACTIONS(12193), + [anon_sym_BSLASHPvolcite] = ACTIONS(12193), + [anon_sym_BSLASHfvolcite] = ACTIONS(12193), + [anon_sym_BSLASHftvolcite] = ACTIONS(12193), + [anon_sym_BSLASHsvolcite] = ACTIONS(12193), + [anon_sym_BSLASHSvolcite] = ACTIONS(12193), + [anon_sym_BSLASHtvolcite] = ACTIONS(12193), + [anon_sym_BSLASHTvolcite] = ACTIONS(12193), + [anon_sym_BSLASHavolcite] = ACTIONS(12193), + [anon_sym_BSLASHAvolcite] = ACTIONS(12193), + [anon_sym_BSLASHnotecite] = ACTIONS(12193), + [anon_sym_BSLASHpnotecite] = ACTIONS(12193), + [anon_sym_BSLASHPnotecite] = ACTIONS(12193), + [anon_sym_BSLASHfnotecite] = ACTIONS(12193), + [anon_sym_BSLASHusepackage] = ACTIONS(12193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12193), + [anon_sym_BSLASHinclude] = ACTIONS(12193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12193), + [anon_sym_BSLASHinput] = ACTIONS(12193), + [anon_sym_BSLASHsubfile] = ACTIONS(12193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12193), + [anon_sym_BSLASHbibliography] = ACTIONS(12193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12193), + [anon_sym_BSLASHincludesvg] = ACTIONS(12193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12193), + [anon_sym_BSLASHimport] = ACTIONS(12193), + [anon_sym_BSLASHsubimport] = ACTIONS(12193), + [anon_sym_BSLASHinputfrom] = ACTIONS(12193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12193), + [anon_sym_BSLASHincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHlabel] = ACTIONS(12193), + [anon_sym_BSLASHref] = ACTIONS(12193), + [anon_sym_BSLASHvref] = ACTIONS(12193), + [anon_sym_BSLASHVref] = ACTIONS(12193), + [anon_sym_BSLASHautoref] = ACTIONS(12193), + [anon_sym_BSLASHpageref] = ACTIONS(12193), + [anon_sym_BSLASHcref] = ACTIONS(12193), + [anon_sym_BSLASHCref] = ACTIONS(12193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnameCref] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHlabelcref] = ACTIONS(12193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12193), + [anon_sym_BSLASHeqref] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange] = ACTIONS(12193), + [anon_sym_BSLASHCrefrange] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewlabel] = ACTIONS(12193), + [anon_sym_BSLASHnewcommand] = ACTIONS(12193), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12193), + [anon_sym_BSLASHgls] = ACTIONS(12193), + [anon_sym_BSLASHGls] = ACTIONS(12193), + [anon_sym_BSLASHGLS] = ACTIONS(12193), + [anon_sym_BSLASHglspl] = ACTIONS(12193), + [anon_sym_BSLASHGlspl] = ACTIONS(12193), + [anon_sym_BSLASHGLSpl] = ACTIONS(12193), + [anon_sym_BSLASHglsdisp] = ACTIONS(12193), + [anon_sym_BSLASHglslink] = ACTIONS(12193), + [anon_sym_BSLASHglstext] = ACTIONS(12193), + [anon_sym_BSLASHGlstext] = ACTIONS(12193), + [anon_sym_BSLASHGLStext] = ACTIONS(12193), + [anon_sym_BSLASHglsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12193), + [anon_sym_BSLASHglsplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSplural] = ACTIONS(12193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHglsname] = ACTIONS(12193), + [anon_sym_BSLASHGlsname] = ACTIONS(12193), + [anon_sym_BSLASHGLSname] = ACTIONS(12193), + [anon_sym_BSLASHglssymbol] = ACTIONS(12193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12193), + [anon_sym_BSLASHglsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12193), + [anon_sym_BSLASHglsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12193), + [anon_sym_BSLASHglsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12193), + [anon_sym_BSLASHglsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12193), + [anon_sym_BSLASHglsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12193), + [anon_sym_BSLASHnewacronym] = ACTIONS(12193), + [anon_sym_BSLASHacrshort] = ACTIONS(12193), + [anon_sym_BSLASHAcrshort] = ACTIONS(12193), + [anon_sym_BSLASHACRshort] = ACTIONS(12193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12193), + [anon_sym_BSLASHacrlong] = ACTIONS(12193), + [anon_sym_BSLASHAcrlong] = ACTIONS(12193), + [anon_sym_BSLASHACRlong] = ACTIONS(12193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12193), + [anon_sym_BSLASHacrfull] = ACTIONS(12193), + [anon_sym_BSLASHAcrfull] = ACTIONS(12193), + [anon_sym_BSLASHACRfull] = ACTIONS(12193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12193), + [anon_sym_BSLASHacs] = ACTIONS(12193), + [anon_sym_BSLASHAcs] = ACTIONS(12193), + [anon_sym_BSLASHacsp] = ACTIONS(12193), + [anon_sym_BSLASHAcsp] = ACTIONS(12193), + [anon_sym_BSLASHacl] = ACTIONS(12193), + [anon_sym_BSLASHAcl] = ACTIONS(12193), + [anon_sym_BSLASHaclp] = ACTIONS(12193), + [anon_sym_BSLASHAclp] = ACTIONS(12193), + [anon_sym_BSLASHacf] = ACTIONS(12193), + [anon_sym_BSLASHAcf] = ACTIONS(12193), + [anon_sym_BSLASHacfp] = ACTIONS(12193), + [anon_sym_BSLASHAcfp] = ACTIONS(12193), + [anon_sym_BSLASHac] = ACTIONS(12193), + [anon_sym_BSLASHAc] = ACTIONS(12193), + [anon_sym_BSLASHacp] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12193), + [anon_sym_BSLASHcolor] = ACTIONS(12193), + [anon_sym_BSLASHcolorbox] = ACTIONS(12193), + [anon_sym_BSLASHtextcolor] = ACTIONS(12193), + [anon_sym_BSLASHpagecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12193), + }, + [879] = { + [sym_generic_command_name] = ACTIONS(12144), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12144), + [aux_sym_chapter_token1] = ACTIONS(12144), + [aux_sym_section_token1] = ACTIONS(12144), + [aux_sym_subsection_token1] = ACTIONS(12144), + [aux_sym_subsubsection_token1] = ACTIONS(12144), + [aux_sym_paragraph_token1] = ACTIONS(12144), + [aux_sym_subparagraph_token1] = ACTIONS(12144), + [anon_sym_BSLASHitem] = ACTIONS(12144), + [anon_sym_LBRACK] = ACTIONS(12142), + [anon_sym_LBRACE] = ACTIONS(12142), + [anon_sym_LPAREN] = ACTIONS(12142), + [anon_sym_COMMA] = ACTIONS(12142), + [anon_sym_EQ] = ACTIONS(12142), + [sym_word] = ACTIONS(12142), + [sym_param] = ACTIONS(12142), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12142), + [anon_sym_DOLLAR] = ACTIONS(12144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12142), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12142), + [anon_sym_BSLASHbegin] = ACTIONS(12144), + [anon_sym_BSLASHcaption] = ACTIONS(12144), + [anon_sym_BSLASHcite] = ACTIONS(12144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCite] = ACTIONS(12144), + [anon_sym_BSLASHnocite] = ACTIONS(12144), + [anon_sym_BSLASHcitet] = ACTIONS(12144), + [anon_sym_BSLASHcitep] = ACTIONS(12144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteauthor] = ACTIONS(12144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitetitle] = ACTIONS(12144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteyear] = ACTIONS(12144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitedate] = ACTIONS(12144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteurl] = ACTIONS(12144), + [anon_sym_BSLASHfullcite] = ACTIONS(12144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12144), + [anon_sym_BSLASHcitealt] = ACTIONS(12144), + [anon_sym_BSLASHcitealp] = ACTIONS(12144), + [anon_sym_BSLASHcitetext] = ACTIONS(12144), + [anon_sym_BSLASHparencite] = ACTIONS(12144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHParencite] = ACTIONS(12144), + [anon_sym_BSLASHfootcite] = ACTIONS(12144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12144), + [anon_sym_BSLASHtextcite] = ACTIONS(12144), + [anon_sym_BSLASHTextcite] = ACTIONS(12144), + [anon_sym_BSLASHsmartcite] = ACTIONS(12144), + [anon_sym_BSLASHSmartcite] = ACTIONS(12144), + [anon_sym_BSLASHsupercite] = ACTIONS(12144), + [anon_sym_BSLASHautocite] = ACTIONS(12144), + [anon_sym_BSLASHAutocite] = ACTIONS(12144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHvolcite] = ACTIONS(12144), + [anon_sym_BSLASHVolcite] = ACTIONS(12144), + [anon_sym_BSLASHpvolcite] = ACTIONS(12144), + [anon_sym_BSLASHPvolcite] = ACTIONS(12144), + [anon_sym_BSLASHfvolcite] = ACTIONS(12144), + [anon_sym_BSLASHftvolcite] = ACTIONS(12144), + [anon_sym_BSLASHsvolcite] = ACTIONS(12144), + [anon_sym_BSLASHSvolcite] = ACTIONS(12144), + [anon_sym_BSLASHtvolcite] = ACTIONS(12144), + [anon_sym_BSLASHTvolcite] = ACTIONS(12144), + [anon_sym_BSLASHavolcite] = ACTIONS(12144), + [anon_sym_BSLASHAvolcite] = ACTIONS(12144), + [anon_sym_BSLASHnotecite] = ACTIONS(12144), + [anon_sym_BSLASHpnotecite] = ACTIONS(12144), + [anon_sym_BSLASHPnotecite] = ACTIONS(12144), + [anon_sym_BSLASHfnotecite] = ACTIONS(12144), + [anon_sym_BSLASHusepackage] = ACTIONS(12144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12144), + [anon_sym_BSLASHinclude] = ACTIONS(12144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12144), + [anon_sym_BSLASHinput] = ACTIONS(12144), + [anon_sym_BSLASHsubfile] = ACTIONS(12144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12144), + [anon_sym_BSLASHbibliography] = ACTIONS(12144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12144), + [anon_sym_BSLASHincludesvg] = ACTIONS(12144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12144), + [anon_sym_BSLASHimport] = ACTIONS(12144), + [anon_sym_BSLASHsubimport] = ACTIONS(12144), + [anon_sym_BSLASHinputfrom] = ACTIONS(12144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12144), + [anon_sym_BSLASHincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHlabel] = ACTIONS(12144), + [anon_sym_BSLASHref] = ACTIONS(12144), + [anon_sym_BSLASHvref] = ACTIONS(12144), + [anon_sym_BSLASHVref] = ACTIONS(12144), + [anon_sym_BSLASHautoref] = ACTIONS(12144), + [anon_sym_BSLASHpageref] = ACTIONS(12144), + [anon_sym_BSLASHcref] = ACTIONS(12144), + [anon_sym_BSLASHCref] = ACTIONS(12144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnameCref] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHlabelcref] = ACTIONS(12144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12144), + [anon_sym_BSLASHeqref] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange] = ACTIONS(12144), + [anon_sym_BSLASHCrefrange] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewlabel] = ACTIONS(12144), + [anon_sym_BSLASHnewcommand] = ACTIONS(12144), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12144), + [anon_sym_BSLASHgls] = ACTIONS(12144), + [anon_sym_BSLASHGls] = ACTIONS(12144), + [anon_sym_BSLASHGLS] = ACTIONS(12144), + [anon_sym_BSLASHglspl] = ACTIONS(12144), + [anon_sym_BSLASHGlspl] = ACTIONS(12144), + [anon_sym_BSLASHGLSpl] = ACTIONS(12144), + [anon_sym_BSLASHglsdisp] = ACTIONS(12144), + [anon_sym_BSLASHglslink] = ACTIONS(12144), + [anon_sym_BSLASHglstext] = ACTIONS(12144), + [anon_sym_BSLASHGlstext] = ACTIONS(12144), + [anon_sym_BSLASHGLStext] = ACTIONS(12144), + [anon_sym_BSLASHglsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12144), + [anon_sym_BSLASHglsplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSplural] = ACTIONS(12144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHglsname] = ACTIONS(12144), + [anon_sym_BSLASHGlsname] = ACTIONS(12144), + [anon_sym_BSLASHGLSname] = ACTIONS(12144), + [anon_sym_BSLASHglssymbol] = ACTIONS(12144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12144), + [anon_sym_BSLASHglsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12144), + [anon_sym_BSLASHglsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12144), + [anon_sym_BSLASHglsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12144), + [anon_sym_BSLASHglsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12144), + [anon_sym_BSLASHglsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12144), + [anon_sym_BSLASHnewacronym] = ACTIONS(12144), + [anon_sym_BSLASHacrshort] = ACTIONS(12144), + [anon_sym_BSLASHAcrshort] = ACTIONS(12144), + [anon_sym_BSLASHACRshort] = ACTIONS(12144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12144), + [anon_sym_BSLASHacrlong] = ACTIONS(12144), + [anon_sym_BSLASHAcrlong] = ACTIONS(12144), + [anon_sym_BSLASHACRlong] = ACTIONS(12144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12144), + [anon_sym_BSLASHacrfull] = ACTIONS(12144), + [anon_sym_BSLASHAcrfull] = ACTIONS(12144), + [anon_sym_BSLASHACRfull] = ACTIONS(12144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12144), + [anon_sym_BSLASHacs] = ACTIONS(12144), + [anon_sym_BSLASHAcs] = ACTIONS(12144), + [anon_sym_BSLASHacsp] = ACTIONS(12144), + [anon_sym_BSLASHAcsp] = ACTIONS(12144), + [anon_sym_BSLASHacl] = ACTIONS(12144), + [anon_sym_BSLASHAcl] = ACTIONS(12144), + [anon_sym_BSLASHaclp] = ACTIONS(12144), + [anon_sym_BSLASHAclp] = ACTIONS(12144), + [anon_sym_BSLASHacf] = ACTIONS(12144), + [anon_sym_BSLASHAcf] = ACTIONS(12144), + [anon_sym_BSLASHacfp] = ACTIONS(12144), + [anon_sym_BSLASHAcfp] = ACTIONS(12144), + [anon_sym_BSLASHac] = ACTIONS(12144), + [anon_sym_BSLASHAc] = ACTIONS(12144), + [anon_sym_BSLASHacp] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12144), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12144), + [anon_sym_BSLASHcolor] = ACTIONS(12144), + [anon_sym_BSLASHcolorbox] = ACTIONS(12144), + [anon_sym_BSLASHtextcolor] = ACTIONS(12144), + [anon_sym_BSLASHpagecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12144), + }, + [880] = { + [sym_generic_command_name] = ACTIONS(12116), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12116), + [aux_sym_chapter_token1] = ACTIONS(12116), + [aux_sym_section_token1] = ACTIONS(12116), + [aux_sym_subsection_token1] = ACTIONS(12116), + [aux_sym_subsubsection_token1] = ACTIONS(12116), + [aux_sym_paragraph_token1] = ACTIONS(12116), + [aux_sym_subparagraph_token1] = ACTIONS(12116), + [anon_sym_BSLASHitem] = ACTIONS(12116), + [anon_sym_LBRACK] = ACTIONS(12114), + [anon_sym_LBRACE] = ACTIONS(12114), + [anon_sym_LPAREN] = ACTIONS(12114), + [anon_sym_COMMA] = ACTIONS(12114), + [anon_sym_EQ] = ACTIONS(12114), + [sym_word] = ACTIONS(12114), + [sym_param] = ACTIONS(12114), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12114), + [anon_sym_DOLLAR] = ACTIONS(12116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12114), + [anon_sym_BSLASHbegin] = ACTIONS(12116), + [anon_sym_BSLASHend] = ACTIONS(12116), + [anon_sym_BSLASHcaption] = ACTIONS(12116), + [anon_sym_BSLASHcite] = ACTIONS(12116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCite] = ACTIONS(12116), + [anon_sym_BSLASHnocite] = ACTIONS(12116), + [anon_sym_BSLASHcitet] = ACTIONS(12116), + [anon_sym_BSLASHcitep] = ACTIONS(12116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteauthor] = ACTIONS(12116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitetitle] = ACTIONS(12116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteyear] = ACTIONS(12116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitedate] = ACTIONS(12116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteurl] = ACTIONS(12116), + [anon_sym_BSLASHfullcite] = ACTIONS(12116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12116), + [anon_sym_BSLASHcitealt] = ACTIONS(12116), + [anon_sym_BSLASHcitealp] = ACTIONS(12116), + [anon_sym_BSLASHcitetext] = ACTIONS(12116), + [anon_sym_BSLASHparencite] = ACTIONS(12116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHParencite] = ACTIONS(12116), + [anon_sym_BSLASHfootcite] = ACTIONS(12116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12116), + [anon_sym_BSLASHtextcite] = ACTIONS(12116), + [anon_sym_BSLASHTextcite] = ACTIONS(12116), + [anon_sym_BSLASHsmartcite] = ACTIONS(12116), + [anon_sym_BSLASHSmartcite] = ACTIONS(12116), + [anon_sym_BSLASHsupercite] = ACTIONS(12116), + [anon_sym_BSLASHautocite] = ACTIONS(12116), + [anon_sym_BSLASHAutocite] = ACTIONS(12116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHvolcite] = ACTIONS(12116), + [anon_sym_BSLASHVolcite] = ACTIONS(12116), + [anon_sym_BSLASHpvolcite] = ACTIONS(12116), + [anon_sym_BSLASHPvolcite] = ACTIONS(12116), + [anon_sym_BSLASHfvolcite] = ACTIONS(12116), + [anon_sym_BSLASHftvolcite] = ACTIONS(12116), + [anon_sym_BSLASHsvolcite] = ACTIONS(12116), + [anon_sym_BSLASHSvolcite] = ACTIONS(12116), + [anon_sym_BSLASHtvolcite] = ACTIONS(12116), + [anon_sym_BSLASHTvolcite] = ACTIONS(12116), + [anon_sym_BSLASHavolcite] = ACTIONS(12116), + [anon_sym_BSLASHAvolcite] = ACTIONS(12116), + [anon_sym_BSLASHnotecite] = ACTIONS(12116), + [anon_sym_BSLASHpnotecite] = ACTIONS(12116), + [anon_sym_BSLASHPnotecite] = ACTIONS(12116), + [anon_sym_BSLASHfnotecite] = ACTIONS(12116), + [anon_sym_BSLASHusepackage] = ACTIONS(12116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12116), + [anon_sym_BSLASHinclude] = ACTIONS(12116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12116), + [anon_sym_BSLASHinput] = ACTIONS(12116), + [anon_sym_BSLASHsubfile] = ACTIONS(12116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12116), + [anon_sym_BSLASHbibliography] = ACTIONS(12116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12116), + [anon_sym_BSLASHincludesvg] = ACTIONS(12116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12116), + [anon_sym_BSLASHimport] = ACTIONS(12116), + [anon_sym_BSLASHsubimport] = ACTIONS(12116), + [anon_sym_BSLASHinputfrom] = ACTIONS(12116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12116), + [anon_sym_BSLASHincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHlabel] = ACTIONS(12116), + [anon_sym_BSLASHref] = ACTIONS(12116), + [anon_sym_BSLASHvref] = ACTIONS(12116), + [anon_sym_BSLASHVref] = ACTIONS(12116), + [anon_sym_BSLASHautoref] = ACTIONS(12116), + [anon_sym_BSLASHpageref] = ACTIONS(12116), + [anon_sym_BSLASHcref] = ACTIONS(12116), + [anon_sym_BSLASHCref] = ACTIONS(12116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnameCref] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHlabelcref] = ACTIONS(12116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12116), + [anon_sym_BSLASHeqref] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange] = ACTIONS(12116), + [anon_sym_BSLASHCrefrange] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewlabel] = ACTIONS(12116), + [anon_sym_BSLASHnewcommand] = ACTIONS(12116), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12116), + [anon_sym_BSLASHgls] = ACTIONS(12116), + [anon_sym_BSLASHGls] = ACTIONS(12116), + [anon_sym_BSLASHGLS] = ACTIONS(12116), + [anon_sym_BSLASHglspl] = ACTIONS(12116), + [anon_sym_BSLASHGlspl] = ACTIONS(12116), + [anon_sym_BSLASHGLSpl] = ACTIONS(12116), + [anon_sym_BSLASHglsdisp] = ACTIONS(12116), + [anon_sym_BSLASHglslink] = ACTIONS(12116), + [anon_sym_BSLASHglstext] = ACTIONS(12116), + [anon_sym_BSLASHGlstext] = ACTIONS(12116), + [anon_sym_BSLASHGLStext] = ACTIONS(12116), + [anon_sym_BSLASHglsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12116), + [anon_sym_BSLASHglsplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSplural] = ACTIONS(12116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHglsname] = ACTIONS(12116), + [anon_sym_BSLASHGlsname] = ACTIONS(12116), + [anon_sym_BSLASHGLSname] = ACTIONS(12116), + [anon_sym_BSLASHglssymbol] = ACTIONS(12116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12116), + [anon_sym_BSLASHglsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12116), + [anon_sym_BSLASHglsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12116), + [anon_sym_BSLASHglsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12116), + [anon_sym_BSLASHglsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12116), + [anon_sym_BSLASHglsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12116), + [anon_sym_BSLASHnewacronym] = ACTIONS(12116), + [anon_sym_BSLASHacrshort] = ACTIONS(12116), + [anon_sym_BSLASHAcrshort] = ACTIONS(12116), + [anon_sym_BSLASHACRshort] = ACTIONS(12116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12116), + [anon_sym_BSLASHacrlong] = ACTIONS(12116), + [anon_sym_BSLASHAcrlong] = ACTIONS(12116), + [anon_sym_BSLASHACRlong] = ACTIONS(12116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12116), + [anon_sym_BSLASHacrfull] = ACTIONS(12116), + [anon_sym_BSLASHAcrfull] = ACTIONS(12116), + [anon_sym_BSLASHACRfull] = ACTIONS(12116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12116), + [anon_sym_BSLASHacs] = ACTIONS(12116), + [anon_sym_BSLASHAcs] = ACTIONS(12116), + [anon_sym_BSLASHacsp] = ACTIONS(12116), + [anon_sym_BSLASHAcsp] = ACTIONS(12116), + [anon_sym_BSLASHacl] = ACTIONS(12116), + [anon_sym_BSLASHAcl] = ACTIONS(12116), + [anon_sym_BSLASHaclp] = ACTIONS(12116), + [anon_sym_BSLASHAclp] = ACTIONS(12116), + [anon_sym_BSLASHacf] = ACTIONS(12116), + [anon_sym_BSLASHAcf] = ACTIONS(12116), + [anon_sym_BSLASHacfp] = ACTIONS(12116), + [anon_sym_BSLASHAcfp] = ACTIONS(12116), + [anon_sym_BSLASHac] = ACTIONS(12116), + [anon_sym_BSLASHAc] = ACTIONS(12116), + [anon_sym_BSLASHacp] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12116), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12116), + [anon_sym_BSLASHcolor] = ACTIONS(12116), + [anon_sym_BSLASHcolorbox] = ACTIONS(12116), + [anon_sym_BSLASHtextcolor] = ACTIONS(12116), + [anon_sym_BSLASHpagecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12116), + }, + [881] = { + [sym_generic_command_name] = ACTIONS(12120), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12120), + [aux_sym_chapter_token1] = ACTIONS(12120), + [aux_sym_section_token1] = ACTIONS(12120), + [aux_sym_subsection_token1] = ACTIONS(12120), + [aux_sym_subsubsection_token1] = ACTIONS(12120), + [aux_sym_paragraph_token1] = ACTIONS(12120), + [aux_sym_subparagraph_token1] = ACTIONS(12120), + [anon_sym_BSLASHitem] = ACTIONS(12120), + [anon_sym_LBRACK] = ACTIONS(12118), + [anon_sym_LBRACE] = ACTIONS(12118), + [anon_sym_LPAREN] = ACTIONS(12118), + [anon_sym_COMMA] = ACTIONS(12118), + [anon_sym_EQ] = ACTIONS(12118), + [sym_word] = ACTIONS(12118), + [sym_param] = ACTIONS(12118), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12118), + [anon_sym_DOLLAR] = ACTIONS(12120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12118), + [anon_sym_BSLASHbegin] = ACTIONS(12120), + [anon_sym_BSLASHend] = ACTIONS(12120), + [anon_sym_BSLASHcaption] = ACTIONS(12120), + [anon_sym_BSLASHcite] = ACTIONS(12120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCite] = ACTIONS(12120), + [anon_sym_BSLASHnocite] = ACTIONS(12120), + [anon_sym_BSLASHcitet] = ACTIONS(12120), + [anon_sym_BSLASHcitep] = ACTIONS(12120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteauthor] = ACTIONS(12120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitetitle] = ACTIONS(12120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteyear] = ACTIONS(12120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitedate] = ACTIONS(12120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteurl] = ACTIONS(12120), + [anon_sym_BSLASHfullcite] = ACTIONS(12120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12120), + [anon_sym_BSLASHcitealt] = ACTIONS(12120), + [anon_sym_BSLASHcitealp] = ACTIONS(12120), + [anon_sym_BSLASHcitetext] = ACTIONS(12120), + [anon_sym_BSLASHparencite] = ACTIONS(12120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHParencite] = ACTIONS(12120), + [anon_sym_BSLASHfootcite] = ACTIONS(12120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12120), + [anon_sym_BSLASHtextcite] = ACTIONS(12120), + [anon_sym_BSLASHTextcite] = ACTIONS(12120), + [anon_sym_BSLASHsmartcite] = ACTIONS(12120), + [anon_sym_BSLASHSmartcite] = ACTIONS(12120), + [anon_sym_BSLASHsupercite] = ACTIONS(12120), + [anon_sym_BSLASHautocite] = ACTIONS(12120), + [anon_sym_BSLASHAutocite] = ACTIONS(12120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHvolcite] = ACTIONS(12120), + [anon_sym_BSLASHVolcite] = ACTIONS(12120), + [anon_sym_BSLASHpvolcite] = ACTIONS(12120), + [anon_sym_BSLASHPvolcite] = ACTIONS(12120), + [anon_sym_BSLASHfvolcite] = ACTIONS(12120), + [anon_sym_BSLASHftvolcite] = ACTIONS(12120), + [anon_sym_BSLASHsvolcite] = ACTIONS(12120), + [anon_sym_BSLASHSvolcite] = ACTIONS(12120), + [anon_sym_BSLASHtvolcite] = ACTIONS(12120), + [anon_sym_BSLASHTvolcite] = ACTIONS(12120), + [anon_sym_BSLASHavolcite] = ACTIONS(12120), + [anon_sym_BSLASHAvolcite] = ACTIONS(12120), + [anon_sym_BSLASHnotecite] = ACTIONS(12120), + [anon_sym_BSLASHpnotecite] = ACTIONS(12120), + [anon_sym_BSLASHPnotecite] = ACTIONS(12120), + [anon_sym_BSLASHfnotecite] = ACTIONS(12120), + [anon_sym_BSLASHusepackage] = ACTIONS(12120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12120), + [anon_sym_BSLASHinclude] = ACTIONS(12120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12120), + [anon_sym_BSLASHinput] = ACTIONS(12120), + [anon_sym_BSLASHsubfile] = ACTIONS(12120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12120), + [anon_sym_BSLASHbibliography] = ACTIONS(12120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12120), + [anon_sym_BSLASHincludesvg] = ACTIONS(12120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12120), + [anon_sym_BSLASHimport] = ACTIONS(12120), + [anon_sym_BSLASHsubimport] = ACTIONS(12120), + [anon_sym_BSLASHinputfrom] = ACTIONS(12120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12120), + [anon_sym_BSLASHincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHlabel] = ACTIONS(12120), + [anon_sym_BSLASHref] = ACTIONS(12120), + [anon_sym_BSLASHvref] = ACTIONS(12120), + [anon_sym_BSLASHVref] = ACTIONS(12120), + [anon_sym_BSLASHautoref] = ACTIONS(12120), + [anon_sym_BSLASHpageref] = ACTIONS(12120), + [anon_sym_BSLASHcref] = ACTIONS(12120), + [anon_sym_BSLASHCref] = ACTIONS(12120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnameCref] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHlabelcref] = ACTIONS(12120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12120), + [anon_sym_BSLASHeqref] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange] = ACTIONS(12120), + [anon_sym_BSLASHCrefrange] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewlabel] = ACTIONS(12120), + [anon_sym_BSLASHnewcommand] = ACTIONS(12120), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12120), + [anon_sym_BSLASHgls] = ACTIONS(12120), + [anon_sym_BSLASHGls] = ACTIONS(12120), + [anon_sym_BSLASHGLS] = ACTIONS(12120), + [anon_sym_BSLASHglspl] = ACTIONS(12120), + [anon_sym_BSLASHGlspl] = ACTIONS(12120), + [anon_sym_BSLASHGLSpl] = ACTIONS(12120), + [anon_sym_BSLASHglsdisp] = ACTIONS(12120), + [anon_sym_BSLASHglslink] = ACTIONS(12120), + [anon_sym_BSLASHglstext] = ACTIONS(12120), + [anon_sym_BSLASHGlstext] = ACTIONS(12120), + [anon_sym_BSLASHGLStext] = ACTIONS(12120), + [anon_sym_BSLASHglsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12120), + [anon_sym_BSLASHglsplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSplural] = ACTIONS(12120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHglsname] = ACTIONS(12120), + [anon_sym_BSLASHGlsname] = ACTIONS(12120), + [anon_sym_BSLASHGLSname] = ACTIONS(12120), + [anon_sym_BSLASHglssymbol] = ACTIONS(12120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12120), + [anon_sym_BSLASHglsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12120), + [anon_sym_BSLASHglsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12120), + [anon_sym_BSLASHglsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12120), + [anon_sym_BSLASHglsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12120), + [anon_sym_BSLASHglsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12120), + [anon_sym_BSLASHnewacronym] = ACTIONS(12120), + [anon_sym_BSLASHacrshort] = ACTIONS(12120), + [anon_sym_BSLASHAcrshort] = ACTIONS(12120), + [anon_sym_BSLASHACRshort] = ACTIONS(12120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12120), + [anon_sym_BSLASHacrlong] = ACTIONS(12120), + [anon_sym_BSLASHAcrlong] = ACTIONS(12120), + [anon_sym_BSLASHACRlong] = ACTIONS(12120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12120), + [anon_sym_BSLASHacrfull] = ACTIONS(12120), + [anon_sym_BSLASHAcrfull] = ACTIONS(12120), + [anon_sym_BSLASHACRfull] = ACTIONS(12120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12120), + [anon_sym_BSLASHacs] = ACTIONS(12120), + [anon_sym_BSLASHAcs] = ACTIONS(12120), + [anon_sym_BSLASHacsp] = ACTIONS(12120), + [anon_sym_BSLASHAcsp] = ACTIONS(12120), + [anon_sym_BSLASHacl] = ACTIONS(12120), + [anon_sym_BSLASHAcl] = ACTIONS(12120), + [anon_sym_BSLASHaclp] = ACTIONS(12120), + [anon_sym_BSLASHAclp] = ACTIONS(12120), + [anon_sym_BSLASHacf] = ACTIONS(12120), + [anon_sym_BSLASHAcf] = ACTIONS(12120), + [anon_sym_BSLASHacfp] = ACTIONS(12120), + [anon_sym_BSLASHAcfp] = ACTIONS(12120), + [anon_sym_BSLASHac] = ACTIONS(12120), + [anon_sym_BSLASHAc] = ACTIONS(12120), + [anon_sym_BSLASHacp] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12120), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12120), + [anon_sym_BSLASHcolor] = ACTIONS(12120), + [anon_sym_BSLASHcolorbox] = ACTIONS(12120), + [anon_sym_BSLASHtextcolor] = ACTIONS(12120), + [anon_sym_BSLASHpagecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12120), + }, + [882] = { + [sym_generic_command_name] = ACTIONS(12181), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12181), + [aux_sym_chapter_token1] = ACTIONS(12181), + [aux_sym_section_token1] = ACTIONS(12181), + [aux_sym_subsection_token1] = ACTIONS(12181), + [aux_sym_subsubsection_token1] = ACTIONS(12181), + [aux_sym_paragraph_token1] = ACTIONS(12181), + [aux_sym_subparagraph_token1] = ACTIONS(12181), + [anon_sym_BSLASHitem] = ACTIONS(12181), + [anon_sym_LBRACK] = ACTIONS(12179), + [anon_sym_LBRACE] = ACTIONS(12179), + [anon_sym_LPAREN] = ACTIONS(12179), + [anon_sym_COMMA] = ACTIONS(12179), + [anon_sym_EQ] = ACTIONS(12179), + [sym_word] = ACTIONS(12179), + [sym_param] = ACTIONS(12179), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12179), + [anon_sym_DOLLAR] = ACTIONS(12181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12179), + [anon_sym_BSLASHbegin] = ACTIONS(12181), + [anon_sym_BSLASHend] = ACTIONS(12181), + [anon_sym_BSLASHcaption] = ACTIONS(12181), + [anon_sym_BSLASHcite] = ACTIONS(12181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCite] = ACTIONS(12181), + [anon_sym_BSLASHnocite] = ACTIONS(12181), + [anon_sym_BSLASHcitet] = ACTIONS(12181), + [anon_sym_BSLASHcitep] = ACTIONS(12181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteauthor] = ACTIONS(12181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitetitle] = ACTIONS(12181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteyear] = ACTIONS(12181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitedate] = ACTIONS(12181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteurl] = ACTIONS(12181), + [anon_sym_BSLASHfullcite] = ACTIONS(12181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12181), + [anon_sym_BSLASHcitealt] = ACTIONS(12181), + [anon_sym_BSLASHcitealp] = ACTIONS(12181), + [anon_sym_BSLASHcitetext] = ACTIONS(12181), + [anon_sym_BSLASHparencite] = ACTIONS(12181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHParencite] = ACTIONS(12181), + [anon_sym_BSLASHfootcite] = ACTIONS(12181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12181), + [anon_sym_BSLASHtextcite] = ACTIONS(12181), + [anon_sym_BSLASHTextcite] = ACTIONS(12181), + [anon_sym_BSLASHsmartcite] = ACTIONS(12181), + [anon_sym_BSLASHSmartcite] = ACTIONS(12181), + [anon_sym_BSLASHsupercite] = ACTIONS(12181), + [anon_sym_BSLASHautocite] = ACTIONS(12181), + [anon_sym_BSLASHAutocite] = ACTIONS(12181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHvolcite] = ACTIONS(12181), + [anon_sym_BSLASHVolcite] = ACTIONS(12181), + [anon_sym_BSLASHpvolcite] = ACTIONS(12181), + [anon_sym_BSLASHPvolcite] = ACTIONS(12181), + [anon_sym_BSLASHfvolcite] = ACTIONS(12181), + [anon_sym_BSLASHftvolcite] = ACTIONS(12181), + [anon_sym_BSLASHsvolcite] = ACTIONS(12181), + [anon_sym_BSLASHSvolcite] = ACTIONS(12181), + [anon_sym_BSLASHtvolcite] = ACTIONS(12181), + [anon_sym_BSLASHTvolcite] = ACTIONS(12181), + [anon_sym_BSLASHavolcite] = ACTIONS(12181), + [anon_sym_BSLASHAvolcite] = ACTIONS(12181), + [anon_sym_BSLASHnotecite] = ACTIONS(12181), + [anon_sym_BSLASHpnotecite] = ACTIONS(12181), + [anon_sym_BSLASHPnotecite] = ACTIONS(12181), + [anon_sym_BSLASHfnotecite] = ACTIONS(12181), + [anon_sym_BSLASHusepackage] = ACTIONS(12181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12181), + [anon_sym_BSLASHinclude] = ACTIONS(12181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12181), + [anon_sym_BSLASHinput] = ACTIONS(12181), + [anon_sym_BSLASHsubfile] = ACTIONS(12181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12181), + [anon_sym_BSLASHbibliography] = ACTIONS(12181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12181), + [anon_sym_BSLASHincludesvg] = ACTIONS(12181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12181), + [anon_sym_BSLASHimport] = ACTIONS(12181), + [anon_sym_BSLASHsubimport] = ACTIONS(12181), + [anon_sym_BSLASHinputfrom] = ACTIONS(12181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12181), + [anon_sym_BSLASHincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHlabel] = ACTIONS(12181), + [anon_sym_BSLASHref] = ACTIONS(12181), + [anon_sym_BSLASHvref] = ACTIONS(12181), + [anon_sym_BSLASHVref] = ACTIONS(12181), + [anon_sym_BSLASHautoref] = ACTIONS(12181), + [anon_sym_BSLASHpageref] = ACTIONS(12181), + [anon_sym_BSLASHcref] = ACTIONS(12181), + [anon_sym_BSLASHCref] = ACTIONS(12181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnameCref] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHlabelcref] = ACTIONS(12181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12181), + [anon_sym_BSLASHeqref] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange] = ACTIONS(12181), + [anon_sym_BSLASHCrefrange] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewlabel] = ACTIONS(12181), + [anon_sym_BSLASHnewcommand] = ACTIONS(12181), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12181), + [anon_sym_BSLASHgls] = ACTIONS(12181), + [anon_sym_BSLASHGls] = ACTIONS(12181), + [anon_sym_BSLASHGLS] = ACTIONS(12181), + [anon_sym_BSLASHglspl] = ACTIONS(12181), + [anon_sym_BSLASHGlspl] = ACTIONS(12181), + [anon_sym_BSLASHGLSpl] = ACTIONS(12181), + [anon_sym_BSLASHglsdisp] = ACTIONS(12181), + [anon_sym_BSLASHglslink] = ACTIONS(12181), + [anon_sym_BSLASHglstext] = ACTIONS(12181), + [anon_sym_BSLASHGlstext] = ACTIONS(12181), + [anon_sym_BSLASHGLStext] = ACTIONS(12181), + [anon_sym_BSLASHglsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12181), + [anon_sym_BSLASHglsplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSplural] = ACTIONS(12181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHglsname] = ACTIONS(12181), + [anon_sym_BSLASHGlsname] = ACTIONS(12181), + [anon_sym_BSLASHGLSname] = ACTIONS(12181), + [anon_sym_BSLASHglssymbol] = ACTIONS(12181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12181), + [anon_sym_BSLASHglsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12181), + [anon_sym_BSLASHglsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12181), + [anon_sym_BSLASHglsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12181), + [anon_sym_BSLASHglsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12181), + [anon_sym_BSLASHglsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12181), + [anon_sym_BSLASHnewacronym] = ACTIONS(12181), + [anon_sym_BSLASHacrshort] = ACTIONS(12181), + [anon_sym_BSLASHAcrshort] = ACTIONS(12181), + [anon_sym_BSLASHACRshort] = ACTIONS(12181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12181), + [anon_sym_BSLASHacrlong] = ACTIONS(12181), + [anon_sym_BSLASHAcrlong] = ACTIONS(12181), + [anon_sym_BSLASHACRlong] = ACTIONS(12181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12181), + [anon_sym_BSLASHacrfull] = ACTIONS(12181), + [anon_sym_BSLASHAcrfull] = ACTIONS(12181), + [anon_sym_BSLASHACRfull] = ACTIONS(12181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12181), + [anon_sym_BSLASHacs] = ACTIONS(12181), + [anon_sym_BSLASHAcs] = ACTIONS(12181), + [anon_sym_BSLASHacsp] = ACTIONS(12181), + [anon_sym_BSLASHAcsp] = ACTIONS(12181), + [anon_sym_BSLASHacl] = ACTIONS(12181), + [anon_sym_BSLASHAcl] = ACTIONS(12181), + [anon_sym_BSLASHaclp] = ACTIONS(12181), + [anon_sym_BSLASHAclp] = ACTIONS(12181), + [anon_sym_BSLASHacf] = ACTIONS(12181), + [anon_sym_BSLASHAcf] = ACTIONS(12181), + [anon_sym_BSLASHacfp] = ACTIONS(12181), + [anon_sym_BSLASHAcfp] = ACTIONS(12181), + [anon_sym_BSLASHac] = ACTIONS(12181), + [anon_sym_BSLASHAc] = ACTIONS(12181), + [anon_sym_BSLASHacp] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12181), + [anon_sym_BSLASHcolor] = ACTIONS(12181), + [anon_sym_BSLASHcolorbox] = ACTIONS(12181), + [anon_sym_BSLASHtextcolor] = ACTIONS(12181), + [anon_sym_BSLASHpagecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12181), + }, + [883] = { + [sym_generic_command_name] = ACTIONS(12185), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12185), + [aux_sym_chapter_token1] = ACTIONS(12185), + [aux_sym_section_token1] = ACTIONS(12185), + [aux_sym_subsection_token1] = ACTIONS(12185), + [aux_sym_subsubsection_token1] = ACTIONS(12185), + [aux_sym_paragraph_token1] = ACTIONS(12185), + [aux_sym_subparagraph_token1] = ACTIONS(12185), + [anon_sym_BSLASHitem] = ACTIONS(12185), + [anon_sym_LBRACK] = ACTIONS(12183), + [anon_sym_LBRACE] = ACTIONS(12183), + [anon_sym_LPAREN] = ACTIONS(12183), + [anon_sym_COMMA] = ACTIONS(12183), + [anon_sym_EQ] = ACTIONS(12183), + [sym_word] = ACTIONS(12183), + [sym_param] = ACTIONS(12183), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12183), + [anon_sym_DOLLAR] = ACTIONS(12185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12183), + [anon_sym_BSLASHbegin] = ACTIONS(12185), + [anon_sym_BSLASHend] = ACTIONS(12185), + [anon_sym_BSLASHcaption] = ACTIONS(12185), + [anon_sym_BSLASHcite] = ACTIONS(12185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCite] = ACTIONS(12185), + [anon_sym_BSLASHnocite] = ACTIONS(12185), + [anon_sym_BSLASHcitet] = ACTIONS(12185), + [anon_sym_BSLASHcitep] = ACTIONS(12185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteauthor] = ACTIONS(12185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitetitle] = ACTIONS(12185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteyear] = ACTIONS(12185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitedate] = ACTIONS(12185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteurl] = ACTIONS(12185), + [anon_sym_BSLASHfullcite] = ACTIONS(12185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12185), + [anon_sym_BSLASHcitealt] = ACTIONS(12185), + [anon_sym_BSLASHcitealp] = ACTIONS(12185), + [anon_sym_BSLASHcitetext] = ACTIONS(12185), + [anon_sym_BSLASHparencite] = ACTIONS(12185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHParencite] = ACTIONS(12185), + [anon_sym_BSLASHfootcite] = ACTIONS(12185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12185), + [anon_sym_BSLASHtextcite] = ACTIONS(12185), + [anon_sym_BSLASHTextcite] = ACTIONS(12185), + [anon_sym_BSLASHsmartcite] = ACTIONS(12185), + [anon_sym_BSLASHSmartcite] = ACTIONS(12185), + [anon_sym_BSLASHsupercite] = ACTIONS(12185), + [anon_sym_BSLASHautocite] = ACTIONS(12185), + [anon_sym_BSLASHAutocite] = ACTIONS(12185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHvolcite] = ACTIONS(12185), + [anon_sym_BSLASHVolcite] = ACTIONS(12185), + [anon_sym_BSLASHpvolcite] = ACTIONS(12185), + [anon_sym_BSLASHPvolcite] = ACTIONS(12185), + [anon_sym_BSLASHfvolcite] = ACTIONS(12185), + [anon_sym_BSLASHftvolcite] = ACTIONS(12185), + [anon_sym_BSLASHsvolcite] = ACTIONS(12185), + [anon_sym_BSLASHSvolcite] = ACTIONS(12185), + [anon_sym_BSLASHtvolcite] = ACTIONS(12185), + [anon_sym_BSLASHTvolcite] = ACTIONS(12185), + [anon_sym_BSLASHavolcite] = ACTIONS(12185), + [anon_sym_BSLASHAvolcite] = ACTIONS(12185), + [anon_sym_BSLASHnotecite] = ACTIONS(12185), + [anon_sym_BSLASHpnotecite] = ACTIONS(12185), + [anon_sym_BSLASHPnotecite] = ACTIONS(12185), + [anon_sym_BSLASHfnotecite] = ACTIONS(12185), + [anon_sym_BSLASHusepackage] = ACTIONS(12185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12185), + [anon_sym_BSLASHinclude] = ACTIONS(12185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12185), + [anon_sym_BSLASHinput] = ACTIONS(12185), + [anon_sym_BSLASHsubfile] = ACTIONS(12185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12185), + [anon_sym_BSLASHbibliography] = ACTIONS(12185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12185), + [anon_sym_BSLASHincludesvg] = ACTIONS(12185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12185), + [anon_sym_BSLASHimport] = ACTIONS(12185), + [anon_sym_BSLASHsubimport] = ACTIONS(12185), + [anon_sym_BSLASHinputfrom] = ACTIONS(12185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12185), + [anon_sym_BSLASHincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHlabel] = ACTIONS(12185), + [anon_sym_BSLASHref] = ACTIONS(12185), + [anon_sym_BSLASHvref] = ACTIONS(12185), + [anon_sym_BSLASHVref] = ACTIONS(12185), + [anon_sym_BSLASHautoref] = ACTIONS(12185), + [anon_sym_BSLASHpageref] = ACTIONS(12185), + [anon_sym_BSLASHcref] = ACTIONS(12185), + [anon_sym_BSLASHCref] = ACTIONS(12185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnameCref] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHlabelcref] = ACTIONS(12185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12185), + [anon_sym_BSLASHeqref] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange] = ACTIONS(12185), + [anon_sym_BSLASHCrefrange] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewlabel] = ACTIONS(12185), + [anon_sym_BSLASHnewcommand] = ACTIONS(12185), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12185), + [anon_sym_BSLASHgls] = ACTIONS(12185), + [anon_sym_BSLASHGls] = ACTIONS(12185), + [anon_sym_BSLASHGLS] = ACTIONS(12185), + [anon_sym_BSLASHglspl] = ACTIONS(12185), + [anon_sym_BSLASHGlspl] = ACTIONS(12185), + [anon_sym_BSLASHGLSpl] = ACTIONS(12185), + [anon_sym_BSLASHglsdisp] = ACTIONS(12185), + [anon_sym_BSLASHglslink] = ACTIONS(12185), + [anon_sym_BSLASHglstext] = ACTIONS(12185), + [anon_sym_BSLASHGlstext] = ACTIONS(12185), + [anon_sym_BSLASHGLStext] = ACTIONS(12185), + [anon_sym_BSLASHglsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12185), + [anon_sym_BSLASHglsplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSplural] = ACTIONS(12185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHglsname] = ACTIONS(12185), + [anon_sym_BSLASHGlsname] = ACTIONS(12185), + [anon_sym_BSLASHGLSname] = ACTIONS(12185), + [anon_sym_BSLASHglssymbol] = ACTIONS(12185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12185), + [anon_sym_BSLASHglsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12185), + [anon_sym_BSLASHglsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12185), + [anon_sym_BSLASHglsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12185), + [anon_sym_BSLASHglsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12185), + [anon_sym_BSLASHglsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12185), + [anon_sym_BSLASHnewacronym] = ACTIONS(12185), + [anon_sym_BSLASHacrshort] = ACTIONS(12185), + [anon_sym_BSLASHAcrshort] = ACTIONS(12185), + [anon_sym_BSLASHACRshort] = ACTIONS(12185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12185), + [anon_sym_BSLASHacrlong] = ACTIONS(12185), + [anon_sym_BSLASHAcrlong] = ACTIONS(12185), + [anon_sym_BSLASHACRlong] = ACTIONS(12185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12185), + [anon_sym_BSLASHacrfull] = ACTIONS(12185), + [anon_sym_BSLASHAcrfull] = ACTIONS(12185), + [anon_sym_BSLASHACRfull] = ACTIONS(12185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12185), + [anon_sym_BSLASHacs] = ACTIONS(12185), + [anon_sym_BSLASHAcs] = ACTIONS(12185), + [anon_sym_BSLASHacsp] = ACTIONS(12185), + [anon_sym_BSLASHAcsp] = ACTIONS(12185), + [anon_sym_BSLASHacl] = ACTIONS(12185), + [anon_sym_BSLASHAcl] = ACTIONS(12185), + [anon_sym_BSLASHaclp] = ACTIONS(12185), + [anon_sym_BSLASHAclp] = ACTIONS(12185), + [anon_sym_BSLASHacf] = ACTIONS(12185), + [anon_sym_BSLASHAcf] = ACTIONS(12185), + [anon_sym_BSLASHacfp] = ACTIONS(12185), + [anon_sym_BSLASHAcfp] = ACTIONS(12185), + [anon_sym_BSLASHac] = ACTIONS(12185), + [anon_sym_BSLASHAc] = ACTIONS(12185), + [anon_sym_BSLASHacp] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12185), + [anon_sym_BSLASHcolor] = ACTIONS(12185), + [anon_sym_BSLASHcolorbox] = ACTIONS(12185), + [anon_sym_BSLASHtextcolor] = ACTIONS(12185), + [anon_sym_BSLASHpagecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12185), + }, + [884] = { + [sym_generic_command_name] = ACTIONS(12437), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12437), + [aux_sym_chapter_token1] = ACTIONS(12437), + [aux_sym_section_token1] = ACTIONS(12437), + [aux_sym_subsection_token1] = ACTIONS(12437), + [aux_sym_subsubsection_token1] = ACTIONS(12437), + [aux_sym_paragraph_token1] = ACTIONS(12437), + [aux_sym_subparagraph_token1] = ACTIONS(12437), + [anon_sym_BSLASHitem] = ACTIONS(12437), + [anon_sym_LBRACK] = ACTIONS(12435), + [anon_sym_LBRACE] = ACTIONS(12435), + [anon_sym_LPAREN] = ACTIONS(12435), + [anon_sym_COMMA] = ACTIONS(12435), + [anon_sym_EQ] = ACTIONS(12435), + [sym_word] = ACTIONS(12435), + [sym_param] = ACTIONS(12435), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12435), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12435), + [anon_sym_DOLLAR] = ACTIONS(12437), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12435), + [anon_sym_BSLASHbegin] = ACTIONS(12437), + [anon_sym_BSLASHend] = ACTIONS(12437), + [anon_sym_BSLASHcaption] = ACTIONS(12437), + [anon_sym_BSLASHcite] = ACTIONS(12437), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCite] = ACTIONS(12437), + [anon_sym_BSLASHnocite] = ACTIONS(12437), + [anon_sym_BSLASHcitet] = ACTIONS(12437), + [anon_sym_BSLASHcitep] = ACTIONS(12437), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteauthor] = ACTIONS(12437), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12437), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitetitle] = ACTIONS(12437), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteyear] = ACTIONS(12437), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitedate] = ACTIONS(12437), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteurl] = ACTIONS(12437), + [anon_sym_BSLASHfullcite] = ACTIONS(12437), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12437), + [anon_sym_BSLASHcitealt] = ACTIONS(12437), + [anon_sym_BSLASHcitealp] = ACTIONS(12437), + [anon_sym_BSLASHcitetext] = ACTIONS(12437), + [anon_sym_BSLASHparencite] = ACTIONS(12437), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHParencite] = ACTIONS(12437), + [anon_sym_BSLASHfootcite] = ACTIONS(12437), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12437), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12437), + [anon_sym_BSLASHtextcite] = ACTIONS(12437), + [anon_sym_BSLASHTextcite] = ACTIONS(12437), + [anon_sym_BSLASHsmartcite] = ACTIONS(12437), + [anon_sym_BSLASHSmartcite] = ACTIONS(12437), + [anon_sym_BSLASHsupercite] = ACTIONS(12437), + [anon_sym_BSLASHautocite] = ACTIONS(12437), + [anon_sym_BSLASHAutocite] = ACTIONS(12437), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHvolcite] = ACTIONS(12437), + [anon_sym_BSLASHVolcite] = ACTIONS(12437), + [anon_sym_BSLASHpvolcite] = ACTIONS(12437), + [anon_sym_BSLASHPvolcite] = ACTIONS(12437), + [anon_sym_BSLASHfvolcite] = ACTIONS(12437), + [anon_sym_BSLASHftvolcite] = ACTIONS(12437), + [anon_sym_BSLASHsvolcite] = ACTIONS(12437), + [anon_sym_BSLASHSvolcite] = ACTIONS(12437), + [anon_sym_BSLASHtvolcite] = ACTIONS(12437), + [anon_sym_BSLASHTvolcite] = ACTIONS(12437), + [anon_sym_BSLASHavolcite] = ACTIONS(12437), + [anon_sym_BSLASHAvolcite] = ACTIONS(12437), + [anon_sym_BSLASHnotecite] = ACTIONS(12437), + [anon_sym_BSLASHpnotecite] = ACTIONS(12437), + [anon_sym_BSLASHPnotecite] = ACTIONS(12437), + [anon_sym_BSLASHfnotecite] = ACTIONS(12437), + [anon_sym_BSLASHusepackage] = ACTIONS(12437), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12437), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12437), + [anon_sym_BSLASHinclude] = ACTIONS(12437), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12437), + [anon_sym_BSLASHinput] = ACTIONS(12437), + [anon_sym_BSLASHsubfile] = ACTIONS(12437), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12437), + [anon_sym_BSLASHbibliography] = ACTIONS(12437), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12437), + [anon_sym_BSLASHincludesvg] = ACTIONS(12437), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12437), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12437), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12437), + [anon_sym_BSLASHimport] = ACTIONS(12437), + [anon_sym_BSLASHsubimport] = ACTIONS(12437), + [anon_sym_BSLASHinputfrom] = ACTIONS(12437), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12437), + [anon_sym_BSLASHincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHlabel] = ACTIONS(12437), + [anon_sym_BSLASHref] = ACTIONS(12437), + [anon_sym_BSLASHvref] = ACTIONS(12437), + [anon_sym_BSLASHVref] = ACTIONS(12437), + [anon_sym_BSLASHautoref] = ACTIONS(12437), + [anon_sym_BSLASHpageref] = ACTIONS(12437), + [anon_sym_BSLASHcref] = ACTIONS(12437), + [anon_sym_BSLASHCref] = ACTIONS(12437), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnameCref] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHlabelcref] = ACTIONS(12437), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12437), + [anon_sym_BSLASHeqref] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange] = ACTIONS(12437), + [anon_sym_BSLASHCrefrange] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewlabel] = ACTIONS(12437), + [anon_sym_BSLASHnewcommand] = ACTIONS(12437), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12437), + [anon_sym_BSLASHgls] = ACTIONS(12437), + [anon_sym_BSLASHGls] = ACTIONS(12437), + [anon_sym_BSLASHGLS] = ACTIONS(12437), + [anon_sym_BSLASHglspl] = ACTIONS(12437), + [anon_sym_BSLASHGlspl] = ACTIONS(12437), + [anon_sym_BSLASHGLSpl] = ACTIONS(12437), + [anon_sym_BSLASHglsdisp] = ACTIONS(12437), + [anon_sym_BSLASHglslink] = ACTIONS(12437), + [anon_sym_BSLASHglstext] = ACTIONS(12437), + [anon_sym_BSLASHGlstext] = ACTIONS(12437), + [anon_sym_BSLASHGLStext] = ACTIONS(12437), + [anon_sym_BSLASHglsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12437), + [anon_sym_BSLASHglsplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSplural] = ACTIONS(12437), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHglsname] = ACTIONS(12437), + [anon_sym_BSLASHGlsname] = ACTIONS(12437), + [anon_sym_BSLASHGLSname] = ACTIONS(12437), + [anon_sym_BSLASHglssymbol] = ACTIONS(12437), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12437), + [anon_sym_BSLASHglsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12437), + [anon_sym_BSLASHglsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12437), + [anon_sym_BSLASHglsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12437), + [anon_sym_BSLASHglsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12437), + [anon_sym_BSLASHglsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12437), + [anon_sym_BSLASHnewacronym] = ACTIONS(12437), + [anon_sym_BSLASHacrshort] = ACTIONS(12437), + [anon_sym_BSLASHAcrshort] = ACTIONS(12437), + [anon_sym_BSLASHACRshort] = ACTIONS(12437), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12437), + [anon_sym_BSLASHacrlong] = ACTIONS(12437), + [anon_sym_BSLASHAcrlong] = ACTIONS(12437), + [anon_sym_BSLASHACRlong] = ACTIONS(12437), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12437), + [anon_sym_BSLASHacrfull] = ACTIONS(12437), + [anon_sym_BSLASHAcrfull] = ACTIONS(12437), + [anon_sym_BSLASHACRfull] = ACTIONS(12437), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12437), + [anon_sym_BSLASHacs] = ACTIONS(12437), + [anon_sym_BSLASHAcs] = ACTIONS(12437), + [anon_sym_BSLASHacsp] = ACTIONS(12437), + [anon_sym_BSLASHAcsp] = ACTIONS(12437), + [anon_sym_BSLASHacl] = ACTIONS(12437), + [anon_sym_BSLASHAcl] = ACTIONS(12437), + [anon_sym_BSLASHaclp] = ACTIONS(12437), + [anon_sym_BSLASHAclp] = ACTIONS(12437), + [anon_sym_BSLASHacf] = ACTIONS(12437), + [anon_sym_BSLASHAcf] = ACTIONS(12437), + [anon_sym_BSLASHacfp] = ACTIONS(12437), + [anon_sym_BSLASHAcfp] = ACTIONS(12437), + [anon_sym_BSLASHac] = ACTIONS(12437), + [anon_sym_BSLASHAc] = ACTIONS(12437), + [anon_sym_BSLASHacp] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12437), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12437), + [anon_sym_BSLASHcolor] = ACTIONS(12437), + [anon_sym_BSLASHcolorbox] = ACTIONS(12437), + [anon_sym_BSLASHtextcolor] = ACTIONS(12437), + [anon_sym_BSLASHpagecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12437), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12437), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12437), + }, + [885] = { + [sym_generic_command_name] = ACTIONS(12140), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12140), + [aux_sym_chapter_token1] = ACTIONS(12140), + [aux_sym_section_token1] = ACTIONS(12140), + [aux_sym_subsection_token1] = ACTIONS(12140), + [aux_sym_subsubsection_token1] = ACTIONS(12140), + [aux_sym_paragraph_token1] = ACTIONS(12140), + [aux_sym_subparagraph_token1] = ACTIONS(12140), + [anon_sym_BSLASHitem] = ACTIONS(12140), + [anon_sym_LBRACK] = ACTIONS(12138), + [anon_sym_LBRACE] = ACTIONS(12138), + [anon_sym_LPAREN] = ACTIONS(12138), + [anon_sym_COMMA] = ACTIONS(12138), + [anon_sym_EQ] = ACTIONS(12138), + [sym_word] = ACTIONS(12138), + [sym_param] = ACTIONS(12138), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12138), + [anon_sym_DOLLAR] = ACTIONS(12140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12138), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12138), + [anon_sym_BSLASHbegin] = ACTIONS(12140), + [anon_sym_BSLASHcaption] = ACTIONS(12140), + [anon_sym_BSLASHcite] = ACTIONS(12140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCite] = ACTIONS(12140), + [anon_sym_BSLASHnocite] = ACTIONS(12140), + [anon_sym_BSLASHcitet] = ACTIONS(12140), + [anon_sym_BSLASHcitep] = ACTIONS(12140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteauthor] = ACTIONS(12140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitetitle] = ACTIONS(12140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteyear] = ACTIONS(12140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitedate] = ACTIONS(12140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteurl] = ACTIONS(12140), + [anon_sym_BSLASHfullcite] = ACTIONS(12140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12140), + [anon_sym_BSLASHcitealt] = ACTIONS(12140), + [anon_sym_BSLASHcitealp] = ACTIONS(12140), + [anon_sym_BSLASHcitetext] = ACTIONS(12140), + [anon_sym_BSLASHparencite] = ACTIONS(12140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHParencite] = ACTIONS(12140), + [anon_sym_BSLASHfootcite] = ACTIONS(12140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12140), + [anon_sym_BSLASHtextcite] = ACTIONS(12140), + [anon_sym_BSLASHTextcite] = ACTIONS(12140), + [anon_sym_BSLASHsmartcite] = ACTIONS(12140), + [anon_sym_BSLASHSmartcite] = ACTIONS(12140), + [anon_sym_BSLASHsupercite] = ACTIONS(12140), + [anon_sym_BSLASHautocite] = ACTIONS(12140), + [anon_sym_BSLASHAutocite] = ACTIONS(12140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHvolcite] = ACTIONS(12140), + [anon_sym_BSLASHVolcite] = ACTIONS(12140), + [anon_sym_BSLASHpvolcite] = ACTIONS(12140), + [anon_sym_BSLASHPvolcite] = ACTIONS(12140), + [anon_sym_BSLASHfvolcite] = ACTIONS(12140), + [anon_sym_BSLASHftvolcite] = ACTIONS(12140), + [anon_sym_BSLASHsvolcite] = ACTIONS(12140), + [anon_sym_BSLASHSvolcite] = ACTIONS(12140), + [anon_sym_BSLASHtvolcite] = ACTIONS(12140), + [anon_sym_BSLASHTvolcite] = ACTIONS(12140), + [anon_sym_BSLASHavolcite] = ACTIONS(12140), + [anon_sym_BSLASHAvolcite] = ACTIONS(12140), + [anon_sym_BSLASHnotecite] = ACTIONS(12140), + [anon_sym_BSLASHpnotecite] = ACTIONS(12140), + [anon_sym_BSLASHPnotecite] = ACTIONS(12140), + [anon_sym_BSLASHfnotecite] = ACTIONS(12140), + [anon_sym_BSLASHusepackage] = ACTIONS(12140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12140), + [anon_sym_BSLASHinclude] = ACTIONS(12140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12140), + [anon_sym_BSLASHinput] = ACTIONS(12140), + [anon_sym_BSLASHsubfile] = ACTIONS(12140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12140), + [anon_sym_BSLASHbibliography] = ACTIONS(12140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12140), + [anon_sym_BSLASHincludesvg] = ACTIONS(12140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12140), + [anon_sym_BSLASHimport] = ACTIONS(12140), + [anon_sym_BSLASHsubimport] = ACTIONS(12140), + [anon_sym_BSLASHinputfrom] = ACTIONS(12140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12140), + [anon_sym_BSLASHincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHlabel] = ACTIONS(12140), + [anon_sym_BSLASHref] = ACTIONS(12140), + [anon_sym_BSLASHvref] = ACTIONS(12140), + [anon_sym_BSLASHVref] = ACTIONS(12140), + [anon_sym_BSLASHautoref] = ACTIONS(12140), + [anon_sym_BSLASHpageref] = ACTIONS(12140), + [anon_sym_BSLASHcref] = ACTIONS(12140), + [anon_sym_BSLASHCref] = ACTIONS(12140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnameCref] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHlabelcref] = ACTIONS(12140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12140), + [anon_sym_BSLASHeqref] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange] = ACTIONS(12140), + [anon_sym_BSLASHCrefrange] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewlabel] = ACTIONS(12140), + [anon_sym_BSLASHnewcommand] = ACTIONS(12140), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12140), + [anon_sym_BSLASHgls] = ACTIONS(12140), + [anon_sym_BSLASHGls] = ACTIONS(12140), + [anon_sym_BSLASHGLS] = ACTIONS(12140), + [anon_sym_BSLASHglspl] = ACTIONS(12140), + [anon_sym_BSLASHGlspl] = ACTIONS(12140), + [anon_sym_BSLASHGLSpl] = ACTIONS(12140), + [anon_sym_BSLASHglsdisp] = ACTIONS(12140), + [anon_sym_BSLASHglslink] = ACTIONS(12140), + [anon_sym_BSLASHglstext] = ACTIONS(12140), + [anon_sym_BSLASHGlstext] = ACTIONS(12140), + [anon_sym_BSLASHGLStext] = ACTIONS(12140), + [anon_sym_BSLASHglsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12140), + [anon_sym_BSLASHglsplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSplural] = ACTIONS(12140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHglsname] = ACTIONS(12140), + [anon_sym_BSLASHGlsname] = ACTIONS(12140), + [anon_sym_BSLASHGLSname] = ACTIONS(12140), + [anon_sym_BSLASHglssymbol] = ACTIONS(12140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12140), + [anon_sym_BSLASHglsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12140), + [anon_sym_BSLASHglsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12140), + [anon_sym_BSLASHglsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12140), + [anon_sym_BSLASHglsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12140), + [anon_sym_BSLASHglsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12140), + [anon_sym_BSLASHnewacronym] = ACTIONS(12140), + [anon_sym_BSLASHacrshort] = ACTIONS(12140), + [anon_sym_BSLASHAcrshort] = ACTIONS(12140), + [anon_sym_BSLASHACRshort] = ACTIONS(12140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12140), + [anon_sym_BSLASHacrlong] = ACTIONS(12140), + [anon_sym_BSLASHAcrlong] = ACTIONS(12140), + [anon_sym_BSLASHACRlong] = ACTIONS(12140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12140), + [anon_sym_BSLASHacrfull] = ACTIONS(12140), + [anon_sym_BSLASHAcrfull] = ACTIONS(12140), + [anon_sym_BSLASHACRfull] = ACTIONS(12140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12140), + [anon_sym_BSLASHacs] = ACTIONS(12140), + [anon_sym_BSLASHAcs] = ACTIONS(12140), + [anon_sym_BSLASHacsp] = ACTIONS(12140), + [anon_sym_BSLASHAcsp] = ACTIONS(12140), + [anon_sym_BSLASHacl] = ACTIONS(12140), + [anon_sym_BSLASHAcl] = ACTIONS(12140), + [anon_sym_BSLASHaclp] = ACTIONS(12140), + [anon_sym_BSLASHAclp] = ACTIONS(12140), + [anon_sym_BSLASHacf] = ACTIONS(12140), + [anon_sym_BSLASHAcf] = ACTIONS(12140), + [anon_sym_BSLASHacfp] = ACTIONS(12140), + [anon_sym_BSLASHAcfp] = ACTIONS(12140), + [anon_sym_BSLASHac] = ACTIONS(12140), + [anon_sym_BSLASHAc] = ACTIONS(12140), + [anon_sym_BSLASHacp] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12140), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12140), + [anon_sym_BSLASHcolor] = ACTIONS(12140), + [anon_sym_BSLASHcolorbox] = ACTIONS(12140), + [anon_sym_BSLASHtextcolor] = ACTIONS(12140), + [anon_sym_BSLASHpagecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12140), + }, + [886] = { + [sym_generic_command_name] = ACTIONS(12136), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12136), + [aux_sym_chapter_token1] = ACTIONS(12136), + [aux_sym_section_token1] = ACTIONS(12136), + [aux_sym_subsection_token1] = ACTIONS(12136), + [aux_sym_subsubsection_token1] = ACTIONS(12136), + [aux_sym_paragraph_token1] = ACTIONS(12136), + [aux_sym_subparagraph_token1] = ACTIONS(12136), + [anon_sym_BSLASHitem] = ACTIONS(12136), + [anon_sym_LBRACK] = ACTIONS(12134), + [anon_sym_LBRACE] = ACTIONS(12134), + [anon_sym_LPAREN] = ACTIONS(12134), + [anon_sym_COMMA] = ACTIONS(12134), + [anon_sym_EQ] = ACTIONS(12134), + [sym_word] = ACTIONS(12134), + [sym_param] = ACTIONS(12134), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12134), + [anon_sym_DOLLAR] = ACTIONS(12136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12134), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12134), + [anon_sym_BSLASHbegin] = ACTIONS(12136), + [anon_sym_BSLASHcaption] = ACTIONS(12136), + [anon_sym_BSLASHcite] = ACTIONS(12136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCite] = ACTIONS(12136), + [anon_sym_BSLASHnocite] = ACTIONS(12136), + [anon_sym_BSLASHcitet] = ACTIONS(12136), + [anon_sym_BSLASHcitep] = ACTIONS(12136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteauthor] = ACTIONS(12136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitetitle] = ACTIONS(12136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteyear] = ACTIONS(12136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitedate] = ACTIONS(12136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteurl] = ACTIONS(12136), + [anon_sym_BSLASHfullcite] = ACTIONS(12136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12136), + [anon_sym_BSLASHcitealt] = ACTIONS(12136), + [anon_sym_BSLASHcitealp] = ACTIONS(12136), + [anon_sym_BSLASHcitetext] = ACTIONS(12136), + [anon_sym_BSLASHparencite] = ACTIONS(12136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHParencite] = ACTIONS(12136), + [anon_sym_BSLASHfootcite] = ACTIONS(12136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12136), + [anon_sym_BSLASHtextcite] = ACTIONS(12136), + [anon_sym_BSLASHTextcite] = ACTIONS(12136), + [anon_sym_BSLASHsmartcite] = ACTIONS(12136), + [anon_sym_BSLASHSmartcite] = ACTIONS(12136), + [anon_sym_BSLASHsupercite] = ACTIONS(12136), + [anon_sym_BSLASHautocite] = ACTIONS(12136), + [anon_sym_BSLASHAutocite] = ACTIONS(12136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHvolcite] = ACTIONS(12136), + [anon_sym_BSLASHVolcite] = ACTIONS(12136), + [anon_sym_BSLASHpvolcite] = ACTIONS(12136), + [anon_sym_BSLASHPvolcite] = ACTIONS(12136), + [anon_sym_BSLASHfvolcite] = ACTIONS(12136), + [anon_sym_BSLASHftvolcite] = ACTIONS(12136), + [anon_sym_BSLASHsvolcite] = ACTIONS(12136), + [anon_sym_BSLASHSvolcite] = ACTIONS(12136), + [anon_sym_BSLASHtvolcite] = ACTIONS(12136), + [anon_sym_BSLASHTvolcite] = ACTIONS(12136), + [anon_sym_BSLASHavolcite] = ACTIONS(12136), + [anon_sym_BSLASHAvolcite] = ACTIONS(12136), + [anon_sym_BSLASHnotecite] = ACTIONS(12136), + [anon_sym_BSLASHpnotecite] = ACTIONS(12136), + [anon_sym_BSLASHPnotecite] = ACTIONS(12136), + [anon_sym_BSLASHfnotecite] = ACTIONS(12136), + [anon_sym_BSLASHusepackage] = ACTIONS(12136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12136), + [anon_sym_BSLASHinclude] = ACTIONS(12136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12136), + [anon_sym_BSLASHinput] = ACTIONS(12136), + [anon_sym_BSLASHsubfile] = ACTIONS(12136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12136), + [anon_sym_BSLASHbibliography] = ACTIONS(12136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12136), + [anon_sym_BSLASHincludesvg] = ACTIONS(12136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12136), + [anon_sym_BSLASHimport] = ACTIONS(12136), + [anon_sym_BSLASHsubimport] = ACTIONS(12136), + [anon_sym_BSLASHinputfrom] = ACTIONS(12136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12136), + [anon_sym_BSLASHincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHlabel] = ACTIONS(12136), + [anon_sym_BSLASHref] = ACTIONS(12136), + [anon_sym_BSLASHvref] = ACTIONS(12136), + [anon_sym_BSLASHVref] = ACTIONS(12136), + [anon_sym_BSLASHautoref] = ACTIONS(12136), + [anon_sym_BSLASHpageref] = ACTIONS(12136), + [anon_sym_BSLASHcref] = ACTIONS(12136), + [anon_sym_BSLASHCref] = ACTIONS(12136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnameCref] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHlabelcref] = ACTIONS(12136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12136), + [anon_sym_BSLASHeqref] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange] = ACTIONS(12136), + [anon_sym_BSLASHCrefrange] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewlabel] = ACTIONS(12136), + [anon_sym_BSLASHnewcommand] = ACTIONS(12136), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12136), + [anon_sym_BSLASHgls] = ACTIONS(12136), + [anon_sym_BSLASHGls] = ACTIONS(12136), + [anon_sym_BSLASHGLS] = ACTIONS(12136), + [anon_sym_BSLASHglspl] = ACTIONS(12136), + [anon_sym_BSLASHGlspl] = ACTIONS(12136), + [anon_sym_BSLASHGLSpl] = ACTIONS(12136), + [anon_sym_BSLASHglsdisp] = ACTIONS(12136), + [anon_sym_BSLASHglslink] = ACTIONS(12136), + [anon_sym_BSLASHglstext] = ACTIONS(12136), + [anon_sym_BSLASHGlstext] = ACTIONS(12136), + [anon_sym_BSLASHGLStext] = ACTIONS(12136), + [anon_sym_BSLASHglsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12136), + [anon_sym_BSLASHglsplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSplural] = ACTIONS(12136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHglsname] = ACTIONS(12136), + [anon_sym_BSLASHGlsname] = ACTIONS(12136), + [anon_sym_BSLASHGLSname] = ACTIONS(12136), + [anon_sym_BSLASHglssymbol] = ACTIONS(12136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12136), + [anon_sym_BSLASHglsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12136), + [anon_sym_BSLASHglsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12136), + [anon_sym_BSLASHglsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12136), + [anon_sym_BSLASHglsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12136), + [anon_sym_BSLASHglsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12136), + [anon_sym_BSLASHnewacronym] = ACTIONS(12136), + [anon_sym_BSLASHacrshort] = ACTIONS(12136), + [anon_sym_BSLASHAcrshort] = ACTIONS(12136), + [anon_sym_BSLASHACRshort] = ACTIONS(12136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12136), + [anon_sym_BSLASHacrlong] = ACTIONS(12136), + [anon_sym_BSLASHAcrlong] = ACTIONS(12136), + [anon_sym_BSLASHACRlong] = ACTIONS(12136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12136), + [anon_sym_BSLASHacrfull] = ACTIONS(12136), + [anon_sym_BSLASHAcrfull] = ACTIONS(12136), + [anon_sym_BSLASHACRfull] = ACTIONS(12136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12136), + [anon_sym_BSLASHacs] = ACTIONS(12136), + [anon_sym_BSLASHAcs] = ACTIONS(12136), + [anon_sym_BSLASHacsp] = ACTIONS(12136), + [anon_sym_BSLASHAcsp] = ACTIONS(12136), + [anon_sym_BSLASHacl] = ACTIONS(12136), + [anon_sym_BSLASHAcl] = ACTIONS(12136), + [anon_sym_BSLASHaclp] = ACTIONS(12136), + [anon_sym_BSLASHAclp] = ACTIONS(12136), + [anon_sym_BSLASHacf] = ACTIONS(12136), + [anon_sym_BSLASHAcf] = ACTIONS(12136), + [anon_sym_BSLASHacfp] = ACTIONS(12136), + [anon_sym_BSLASHAcfp] = ACTIONS(12136), + [anon_sym_BSLASHac] = ACTIONS(12136), + [anon_sym_BSLASHAc] = ACTIONS(12136), + [anon_sym_BSLASHacp] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12136), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12136), + [anon_sym_BSLASHcolor] = ACTIONS(12136), + [anon_sym_BSLASHcolorbox] = ACTIONS(12136), + [anon_sym_BSLASHtextcolor] = ACTIONS(12136), + [anon_sym_BSLASHpagecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12136), + }, + [887] = { + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(127), + [aux_sym_chapter_token1] = ACTIONS(127), + [aux_sym_section_token1] = ACTIONS(127), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(125), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [888] = { + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(123), + [aux_sym_chapter_token1] = ACTIONS(123), + [aux_sym_section_token1] = ACTIONS(123), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASH_RPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [889] = { + [sym_generic_command_name] = ACTIONS(12132), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12132), + [aux_sym_chapter_token1] = ACTIONS(12132), + [aux_sym_section_token1] = ACTIONS(12132), + [aux_sym_subsection_token1] = ACTIONS(12132), + [aux_sym_subsubsection_token1] = ACTIONS(12132), + [aux_sym_paragraph_token1] = ACTIONS(12132), + [aux_sym_subparagraph_token1] = ACTIONS(12132), + [anon_sym_BSLASHitem] = ACTIONS(12132), + [anon_sym_LBRACK] = ACTIONS(12130), + [anon_sym_LBRACE] = ACTIONS(12130), + [anon_sym_LPAREN] = ACTIONS(12130), + [anon_sym_COMMA] = ACTIONS(12130), + [anon_sym_EQ] = ACTIONS(12130), + [sym_word] = ACTIONS(12130), + [sym_param] = ACTIONS(12130), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12130), + [anon_sym_DOLLAR] = ACTIONS(12132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12130), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12130), + [anon_sym_BSLASHbegin] = ACTIONS(12132), + [anon_sym_BSLASHcaption] = ACTIONS(12132), + [anon_sym_BSLASHcite] = ACTIONS(12132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCite] = ACTIONS(12132), + [anon_sym_BSLASHnocite] = ACTIONS(12132), + [anon_sym_BSLASHcitet] = ACTIONS(12132), + [anon_sym_BSLASHcitep] = ACTIONS(12132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteauthor] = ACTIONS(12132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitetitle] = ACTIONS(12132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteyear] = ACTIONS(12132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitedate] = ACTIONS(12132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteurl] = ACTIONS(12132), + [anon_sym_BSLASHfullcite] = ACTIONS(12132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12132), + [anon_sym_BSLASHcitealt] = ACTIONS(12132), + [anon_sym_BSLASHcitealp] = ACTIONS(12132), + [anon_sym_BSLASHcitetext] = ACTIONS(12132), + [anon_sym_BSLASHparencite] = ACTIONS(12132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHParencite] = ACTIONS(12132), + [anon_sym_BSLASHfootcite] = ACTIONS(12132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12132), + [anon_sym_BSLASHtextcite] = ACTIONS(12132), + [anon_sym_BSLASHTextcite] = ACTIONS(12132), + [anon_sym_BSLASHsmartcite] = ACTIONS(12132), + [anon_sym_BSLASHSmartcite] = ACTIONS(12132), + [anon_sym_BSLASHsupercite] = ACTIONS(12132), + [anon_sym_BSLASHautocite] = ACTIONS(12132), + [anon_sym_BSLASHAutocite] = ACTIONS(12132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHvolcite] = ACTIONS(12132), + [anon_sym_BSLASHVolcite] = ACTIONS(12132), + [anon_sym_BSLASHpvolcite] = ACTIONS(12132), + [anon_sym_BSLASHPvolcite] = ACTIONS(12132), + [anon_sym_BSLASHfvolcite] = ACTIONS(12132), + [anon_sym_BSLASHftvolcite] = ACTIONS(12132), + [anon_sym_BSLASHsvolcite] = ACTIONS(12132), + [anon_sym_BSLASHSvolcite] = ACTIONS(12132), + [anon_sym_BSLASHtvolcite] = ACTIONS(12132), + [anon_sym_BSLASHTvolcite] = ACTIONS(12132), + [anon_sym_BSLASHavolcite] = ACTIONS(12132), + [anon_sym_BSLASHAvolcite] = ACTIONS(12132), + [anon_sym_BSLASHnotecite] = ACTIONS(12132), + [anon_sym_BSLASHpnotecite] = ACTIONS(12132), + [anon_sym_BSLASHPnotecite] = ACTIONS(12132), + [anon_sym_BSLASHfnotecite] = ACTIONS(12132), + [anon_sym_BSLASHusepackage] = ACTIONS(12132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12132), + [anon_sym_BSLASHinclude] = ACTIONS(12132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12132), + [anon_sym_BSLASHinput] = ACTIONS(12132), + [anon_sym_BSLASHsubfile] = ACTIONS(12132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12132), + [anon_sym_BSLASHbibliography] = ACTIONS(12132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12132), + [anon_sym_BSLASHincludesvg] = ACTIONS(12132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12132), + [anon_sym_BSLASHimport] = ACTIONS(12132), + [anon_sym_BSLASHsubimport] = ACTIONS(12132), + [anon_sym_BSLASHinputfrom] = ACTIONS(12132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12132), + [anon_sym_BSLASHincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHlabel] = ACTIONS(12132), + [anon_sym_BSLASHref] = ACTIONS(12132), + [anon_sym_BSLASHvref] = ACTIONS(12132), + [anon_sym_BSLASHVref] = ACTIONS(12132), + [anon_sym_BSLASHautoref] = ACTIONS(12132), + [anon_sym_BSLASHpageref] = ACTIONS(12132), + [anon_sym_BSLASHcref] = ACTIONS(12132), + [anon_sym_BSLASHCref] = ACTIONS(12132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnameCref] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHlabelcref] = ACTIONS(12132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12132), + [anon_sym_BSLASHeqref] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange] = ACTIONS(12132), + [anon_sym_BSLASHCrefrange] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewlabel] = ACTIONS(12132), + [anon_sym_BSLASHnewcommand] = ACTIONS(12132), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12132), + [anon_sym_BSLASHgls] = ACTIONS(12132), + [anon_sym_BSLASHGls] = ACTIONS(12132), + [anon_sym_BSLASHGLS] = ACTIONS(12132), + [anon_sym_BSLASHglspl] = ACTIONS(12132), + [anon_sym_BSLASHGlspl] = ACTIONS(12132), + [anon_sym_BSLASHGLSpl] = ACTIONS(12132), + [anon_sym_BSLASHglsdisp] = ACTIONS(12132), + [anon_sym_BSLASHglslink] = ACTIONS(12132), + [anon_sym_BSLASHglstext] = ACTIONS(12132), + [anon_sym_BSLASHGlstext] = ACTIONS(12132), + [anon_sym_BSLASHGLStext] = ACTIONS(12132), + [anon_sym_BSLASHglsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12132), + [anon_sym_BSLASHglsplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSplural] = ACTIONS(12132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHglsname] = ACTIONS(12132), + [anon_sym_BSLASHGlsname] = ACTIONS(12132), + [anon_sym_BSLASHGLSname] = ACTIONS(12132), + [anon_sym_BSLASHglssymbol] = ACTIONS(12132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12132), + [anon_sym_BSLASHglsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12132), + [anon_sym_BSLASHglsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12132), + [anon_sym_BSLASHglsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12132), + [anon_sym_BSLASHglsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12132), + [anon_sym_BSLASHglsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12132), + [anon_sym_BSLASHnewacronym] = ACTIONS(12132), + [anon_sym_BSLASHacrshort] = ACTIONS(12132), + [anon_sym_BSLASHAcrshort] = ACTIONS(12132), + [anon_sym_BSLASHACRshort] = ACTIONS(12132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12132), + [anon_sym_BSLASHacrlong] = ACTIONS(12132), + [anon_sym_BSLASHAcrlong] = ACTIONS(12132), + [anon_sym_BSLASHACRlong] = ACTIONS(12132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12132), + [anon_sym_BSLASHacrfull] = ACTIONS(12132), + [anon_sym_BSLASHAcrfull] = ACTIONS(12132), + [anon_sym_BSLASHACRfull] = ACTIONS(12132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12132), + [anon_sym_BSLASHacs] = ACTIONS(12132), + [anon_sym_BSLASHAcs] = ACTIONS(12132), + [anon_sym_BSLASHacsp] = ACTIONS(12132), + [anon_sym_BSLASHAcsp] = ACTIONS(12132), + [anon_sym_BSLASHacl] = ACTIONS(12132), + [anon_sym_BSLASHAcl] = ACTIONS(12132), + [anon_sym_BSLASHaclp] = ACTIONS(12132), + [anon_sym_BSLASHAclp] = ACTIONS(12132), + [anon_sym_BSLASHacf] = ACTIONS(12132), + [anon_sym_BSLASHAcf] = ACTIONS(12132), + [anon_sym_BSLASHacfp] = ACTIONS(12132), + [anon_sym_BSLASHAcfp] = ACTIONS(12132), + [anon_sym_BSLASHac] = ACTIONS(12132), + [anon_sym_BSLASHAc] = ACTIONS(12132), + [anon_sym_BSLASHacp] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12132), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12132), + [anon_sym_BSLASHcolor] = ACTIONS(12132), + [anon_sym_BSLASHcolorbox] = ACTIONS(12132), + [anon_sym_BSLASHtextcolor] = ACTIONS(12132), + [anon_sym_BSLASHpagecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12132), + }, + [890] = { + [sym_generic_command_name] = ACTIONS(12128), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12128), + [aux_sym_chapter_token1] = ACTIONS(12128), + [aux_sym_section_token1] = ACTIONS(12128), + [aux_sym_subsection_token1] = ACTIONS(12128), + [aux_sym_subsubsection_token1] = ACTIONS(12128), + [aux_sym_paragraph_token1] = ACTIONS(12128), + [aux_sym_subparagraph_token1] = ACTIONS(12128), + [anon_sym_BSLASHitem] = ACTIONS(12128), + [anon_sym_LBRACK] = ACTIONS(12126), + [anon_sym_LBRACE] = ACTIONS(12126), + [anon_sym_LPAREN] = ACTIONS(12126), + [anon_sym_COMMA] = ACTIONS(12126), + [anon_sym_EQ] = ACTIONS(12126), + [sym_word] = ACTIONS(12126), + [sym_param] = ACTIONS(12126), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12126), + [anon_sym_DOLLAR] = ACTIONS(12128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12126), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12126), + [anon_sym_BSLASHbegin] = ACTIONS(12128), + [anon_sym_BSLASHcaption] = ACTIONS(12128), + [anon_sym_BSLASHcite] = ACTIONS(12128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCite] = ACTIONS(12128), + [anon_sym_BSLASHnocite] = ACTIONS(12128), + [anon_sym_BSLASHcitet] = ACTIONS(12128), + [anon_sym_BSLASHcitep] = ACTIONS(12128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteauthor] = ACTIONS(12128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitetitle] = ACTIONS(12128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteyear] = ACTIONS(12128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitedate] = ACTIONS(12128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteurl] = ACTIONS(12128), + [anon_sym_BSLASHfullcite] = ACTIONS(12128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12128), + [anon_sym_BSLASHcitealt] = ACTIONS(12128), + [anon_sym_BSLASHcitealp] = ACTIONS(12128), + [anon_sym_BSLASHcitetext] = ACTIONS(12128), + [anon_sym_BSLASHparencite] = ACTIONS(12128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHParencite] = ACTIONS(12128), + [anon_sym_BSLASHfootcite] = ACTIONS(12128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12128), + [anon_sym_BSLASHtextcite] = ACTIONS(12128), + [anon_sym_BSLASHTextcite] = ACTIONS(12128), + [anon_sym_BSLASHsmartcite] = ACTIONS(12128), + [anon_sym_BSLASHSmartcite] = ACTIONS(12128), + [anon_sym_BSLASHsupercite] = ACTIONS(12128), + [anon_sym_BSLASHautocite] = ACTIONS(12128), + [anon_sym_BSLASHAutocite] = ACTIONS(12128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHvolcite] = ACTIONS(12128), + [anon_sym_BSLASHVolcite] = ACTIONS(12128), + [anon_sym_BSLASHpvolcite] = ACTIONS(12128), + [anon_sym_BSLASHPvolcite] = ACTIONS(12128), + [anon_sym_BSLASHfvolcite] = ACTIONS(12128), + [anon_sym_BSLASHftvolcite] = ACTIONS(12128), + [anon_sym_BSLASHsvolcite] = ACTIONS(12128), + [anon_sym_BSLASHSvolcite] = ACTIONS(12128), + [anon_sym_BSLASHtvolcite] = ACTIONS(12128), + [anon_sym_BSLASHTvolcite] = ACTIONS(12128), + [anon_sym_BSLASHavolcite] = ACTIONS(12128), + [anon_sym_BSLASHAvolcite] = ACTIONS(12128), + [anon_sym_BSLASHnotecite] = ACTIONS(12128), + [anon_sym_BSLASHpnotecite] = ACTIONS(12128), + [anon_sym_BSLASHPnotecite] = ACTIONS(12128), + [anon_sym_BSLASHfnotecite] = ACTIONS(12128), + [anon_sym_BSLASHusepackage] = ACTIONS(12128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12128), + [anon_sym_BSLASHinclude] = ACTIONS(12128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12128), + [anon_sym_BSLASHinput] = ACTIONS(12128), + [anon_sym_BSLASHsubfile] = ACTIONS(12128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12128), + [anon_sym_BSLASHbibliography] = ACTIONS(12128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12128), + [anon_sym_BSLASHincludesvg] = ACTIONS(12128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12128), + [anon_sym_BSLASHimport] = ACTIONS(12128), + [anon_sym_BSLASHsubimport] = ACTIONS(12128), + [anon_sym_BSLASHinputfrom] = ACTIONS(12128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12128), + [anon_sym_BSLASHincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHlabel] = ACTIONS(12128), + [anon_sym_BSLASHref] = ACTIONS(12128), + [anon_sym_BSLASHvref] = ACTIONS(12128), + [anon_sym_BSLASHVref] = ACTIONS(12128), + [anon_sym_BSLASHautoref] = ACTIONS(12128), + [anon_sym_BSLASHpageref] = ACTIONS(12128), + [anon_sym_BSLASHcref] = ACTIONS(12128), + [anon_sym_BSLASHCref] = ACTIONS(12128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnameCref] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHlabelcref] = ACTIONS(12128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12128), + [anon_sym_BSLASHeqref] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange] = ACTIONS(12128), + [anon_sym_BSLASHCrefrange] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewlabel] = ACTIONS(12128), + [anon_sym_BSLASHnewcommand] = ACTIONS(12128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12128), + [anon_sym_BSLASHgls] = ACTIONS(12128), + [anon_sym_BSLASHGls] = ACTIONS(12128), + [anon_sym_BSLASHGLS] = ACTIONS(12128), + [anon_sym_BSLASHglspl] = ACTIONS(12128), + [anon_sym_BSLASHGlspl] = ACTIONS(12128), + [anon_sym_BSLASHGLSpl] = ACTIONS(12128), + [anon_sym_BSLASHglsdisp] = ACTIONS(12128), + [anon_sym_BSLASHglslink] = ACTIONS(12128), + [anon_sym_BSLASHglstext] = ACTIONS(12128), + [anon_sym_BSLASHGlstext] = ACTIONS(12128), + [anon_sym_BSLASHGLStext] = ACTIONS(12128), + [anon_sym_BSLASHglsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12128), + [anon_sym_BSLASHglsplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSplural] = ACTIONS(12128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHglsname] = ACTIONS(12128), + [anon_sym_BSLASHGlsname] = ACTIONS(12128), + [anon_sym_BSLASHGLSname] = ACTIONS(12128), + [anon_sym_BSLASHglssymbol] = ACTIONS(12128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12128), + [anon_sym_BSLASHglsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12128), + [anon_sym_BSLASHglsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12128), + [anon_sym_BSLASHglsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12128), + [anon_sym_BSLASHglsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12128), + [anon_sym_BSLASHglsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12128), + [anon_sym_BSLASHnewacronym] = ACTIONS(12128), + [anon_sym_BSLASHacrshort] = ACTIONS(12128), + [anon_sym_BSLASHAcrshort] = ACTIONS(12128), + [anon_sym_BSLASHACRshort] = ACTIONS(12128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12128), + [anon_sym_BSLASHacrlong] = ACTIONS(12128), + [anon_sym_BSLASHAcrlong] = ACTIONS(12128), + [anon_sym_BSLASHACRlong] = ACTIONS(12128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12128), + [anon_sym_BSLASHacrfull] = ACTIONS(12128), + [anon_sym_BSLASHAcrfull] = ACTIONS(12128), + [anon_sym_BSLASHACRfull] = ACTIONS(12128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12128), + [anon_sym_BSLASHacs] = ACTIONS(12128), + [anon_sym_BSLASHAcs] = ACTIONS(12128), + [anon_sym_BSLASHacsp] = ACTIONS(12128), + [anon_sym_BSLASHAcsp] = ACTIONS(12128), + [anon_sym_BSLASHacl] = ACTIONS(12128), + [anon_sym_BSLASHAcl] = ACTIONS(12128), + [anon_sym_BSLASHaclp] = ACTIONS(12128), + [anon_sym_BSLASHAclp] = ACTIONS(12128), + [anon_sym_BSLASHacf] = ACTIONS(12128), + [anon_sym_BSLASHAcf] = ACTIONS(12128), + [anon_sym_BSLASHacfp] = ACTIONS(12128), + [anon_sym_BSLASHAcfp] = ACTIONS(12128), + [anon_sym_BSLASHac] = ACTIONS(12128), + [anon_sym_BSLASHAc] = ACTIONS(12128), + [anon_sym_BSLASHacp] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12128), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12128), + [anon_sym_BSLASHcolor] = ACTIONS(12128), + [anon_sym_BSLASHcolorbox] = ACTIONS(12128), + [anon_sym_BSLASHtextcolor] = ACTIONS(12128), + [anon_sym_BSLASHpagecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12128), + }, + [891] = { + [sym_generic_command_name] = ACTIONS(12124), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12124), + [aux_sym_chapter_token1] = ACTIONS(12124), + [aux_sym_section_token1] = ACTIONS(12124), + [aux_sym_subsection_token1] = ACTIONS(12124), + [aux_sym_subsubsection_token1] = ACTIONS(12124), + [aux_sym_paragraph_token1] = ACTIONS(12124), + [aux_sym_subparagraph_token1] = ACTIONS(12124), + [anon_sym_BSLASHitem] = ACTIONS(12124), + [anon_sym_LBRACK] = ACTIONS(12122), + [anon_sym_LBRACE] = ACTIONS(12122), + [anon_sym_LPAREN] = ACTIONS(12122), + [anon_sym_COMMA] = ACTIONS(12122), + [anon_sym_EQ] = ACTIONS(12122), + [sym_word] = ACTIONS(12122), + [sym_param] = ACTIONS(12122), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12122), + [anon_sym_DOLLAR] = ACTIONS(12124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12122), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12122), + [anon_sym_BSLASHbegin] = ACTIONS(12124), + [anon_sym_BSLASHcaption] = ACTIONS(12124), + [anon_sym_BSLASHcite] = ACTIONS(12124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCite] = ACTIONS(12124), + [anon_sym_BSLASHnocite] = ACTIONS(12124), + [anon_sym_BSLASHcitet] = ACTIONS(12124), + [anon_sym_BSLASHcitep] = ACTIONS(12124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteauthor] = ACTIONS(12124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitetitle] = ACTIONS(12124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteyear] = ACTIONS(12124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitedate] = ACTIONS(12124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteurl] = ACTIONS(12124), + [anon_sym_BSLASHfullcite] = ACTIONS(12124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12124), + [anon_sym_BSLASHcitealt] = ACTIONS(12124), + [anon_sym_BSLASHcitealp] = ACTIONS(12124), + [anon_sym_BSLASHcitetext] = ACTIONS(12124), + [anon_sym_BSLASHparencite] = ACTIONS(12124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHParencite] = ACTIONS(12124), + [anon_sym_BSLASHfootcite] = ACTIONS(12124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12124), + [anon_sym_BSLASHtextcite] = ACTIONS(12124), + [anon_sym_BSLASHTextcite] = ACTIONS(12124), + [anon_sym_BSLASHsmartcite] = ACTIONS(12124), + [anon_sym_BSLASHSmartcite] = ACTIONS(12124), + [anon_sym_BSLASHsupercite] = ACTIONS(12124), + [anon_sym_BSLASHautocite] = ACTIONS(12124), + [anon_sym_BSLASHAutocite] = ACTIONS(12124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHvolcite] = ACTIONS(12124), + [anon_sym_BSLASHVolcite] = ACTIONS(12124), + [anon_sym_BSLASHpvolcite] = ACTIONS(12124), + [anon_sym_BSLASHPvolcite] = ACTIONS(12124), + [anon_sym_BSLASHfvolcite] = ACTIONS(12124), + [anon_sym_BSLASHftvolcite] = ACTIONS(12124), + [anon_sym_BSLASHsvolcite] = ACTIONS(12124), + [anon_sym_BSLASHSvolcite] = ACTIONS(12124), + [anon_sym_BSLASHtvolcite] = ACTIONS(12124), + [anon_sym_BSLASHTvolcite] = ACTIONS(12124), + [anon_sym_BSLASHavolcite] = ACTIONS(12124), + [anon_sym_BSLASHAvolcite] = ACTIONS(12124), + [anon_sym_BSLASHnotecite] = ACTIONS(12124), + [anon_sym_BSLASHpnotecite] = ACTIONS(12124), + [anon_sym_BSLASHPnotecite] = ACTIONS(12124), + [anon_sym_BSLASHfnotecite] = ACTIONS(12124), + [anon_sym_BSLASHusepackage] = ACTIONS(12124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12124), + [anon_sym_BSLASHinclude] = ACTIONS(12124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12124), + [anon_sym_BSLASHinput] = ACTIONS(12124), + [anon_sym_BSLASHsubfile] = ACTIONS(12124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12124), + [anon_sym_BSLASHbibliography] = ACTIONS(12124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12124), + [anon_sym_BSLASHincludesvg] = ACTIONS(12124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12124), + [anon_sym_BSLASHimport] = ACTIONS(12124), + [anon_sym_BSLASHsubimport] = ACTIONS(12124), + [anon_sym_BSLASHinputfrom] = ACTIONS(12124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12124), + [anon_sym_BSLASHincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHlabel] = ACTIONS(12124), + [anon_sym_BSLASHref] = ACTIONS(12124), + [anon_sym_BSLASHvref] = ACTIONS(12124), + [anon_sym_BSLASHVref] = ACTIONS(12124), + [anon_sym_BSLASHautoref] = ACTIONS(12124), + [anon_sym_BSLASHpageref] = ACTIONS(12124), + [anon_sym_BSLASHcref] = ACTIONS(12124), + [anon_sym_BSLASHCref] = ACTIONS(12124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnameCref] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHlabelcref] = ACTIONS(12124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12124), + [anon_sym_BSLASHeqref] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange] = ACTIONS(12124), + [anon_sym_BSLASHCrefrange] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewlabel] = ACTIONS(12124), + [anon_sym_BSLASHnewcommand] = ACTIONS(12124), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12124), + [anon_sym_BSLASHgls] = ACTIONS(12124), + [anon_sym_BSLASHGls] = ACTIONS(12124), + [anon_sym_BSLASHGLS] = ACTIONS(12124), + [anon_sym_BSLASHglspl] = ACTIONS(12124), + [anon_sym_BSLASHGlspl] = ACTIONS(12124), + [anon_sym_BSLASHGLSpl] = ACTIONS(12124), + [anon_sym_BSLASHglsdisp] = ACTIONS(12124), + [anon_sym_BSLASHglslink] = ACTIONS(12124), + [anon_sym_BSLASHglstext] = ACTIONS(12124), + [anon_sym_BSLASHGlstext] = ACTIONS(12124), + [anon_sym_BSLASHGLStext] = ACTIONS(12124), + [anon_sym_BSLASHglsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12124), + [anon_sym_BSLASHglsplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSplural] = ACTIONS(12124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHglsname] = ACTIONS(12124), + [anon_sym_BSLASHGlsname] = ACTIONS(12124), + [anon_sym_BSLASHGLSname] = ACTIONS(12124), + [anon_sym_BSLASHglssymbol] = ACTIONS(12124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12124), + [anon_sym_BSLASHglsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12124), + [anon_sym_BSLASHglsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12124), + [anon_sym_BSLASHglsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12124), + [anon_sym_BSLASHglsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12124), + [anon_sym_BSLASHglsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12124), + [anon_sym_BSLASHnewacronym] = ACTIONS(12124), + [anon_sym_BSLASHacrshort] = ACTIONS(12124), + [anon_sym_BSLASHAcrshort] = ACTIONS(12124), + [anon_sym_BSLASHACRshort] = ACTIONS(12124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12124), + [anon_sym_BSLASHacrlong] = ACTIONS(12124), + [anon_sym_BSLASHAcrlong] = ACTIONS(12124), + [anon_sym_BSLASHACRlong] = ACTIONS(12124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12124), + [anon_sym_BSLASHacrfull] = ACTIONS(12124), + [anon_sym_BSLASHAcrfull] = ACTIONS(12124), + [anon_sym_BSLASHACRfull] = ACTIONS(12124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12124), + [anon_sym_BSLASHacs] = ACTIONS(12124), + [anon_sym_BSLASHAcs] = ACTIONS(12124), + [anon_sym_BSLASHacsp] = ACTIONS(12124), + [anon_sym_BSLASHAcsp] = ACTIONS(12124), + [anon_sym_BSLASHacl] = ACTIONS(12124), + [anon_sym_BSLASHAcl] = ACTIONS(12124), + [anon_sym_BSLASHaclp] = ACTIONS(12124), + [anon_sym_BSLASHAclp] = ACTIONS(12124), + [anon_sym_BSLASHacf] = ACTIONS(12124), + [anon_sym_BSLASHAcf] = ACTIONS(12124), + [anon_sym_BSLASHacfp] = ACTIONS(12124), + [anon_sym_BSLASHAcfp] = ACTIONS(12124), + [anon_sym_BSLASHac] = ACTIONS(12124), + [anon_sym_BSLASHAc] = ACTIONS(12124), + [anon_sym_BSLASHacp] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12124), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12124), + [anon_sym_BSLASHcolor] = ACTIONS(12124), + [anon_sym_BSLASHcolorbox] = ACTIONS(12124), + [anon_sym_BSLASHtextcolor] = ACTIONS(12124), + [anon_sym_BSLASHpagecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12124), + }, + [892] = { + [sym_generic_command_name] = ACTIONS(12485), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12485), + [aux_sym_chapter_token1] = ACTIONS(12485), + [aux_sym_section_token1] = ACTIONS(12485), + [aux_sym_subsection_token1] = ACTIONS(12485), + [aux_sym_subsubsection_token1] = ACTIONS(12485), + [aux_sym_paragraph_token1] = ACTIONS(12485), + [aux_sym_subparagraph_token1] = ACTIONS(12485), + [anon_sym_BSLASHitem] = ACTIONS(12485), + [anon_sym_LBRACK] = ACTIONS(12483), + [anon_sym_LBRACE] = ACTIONS(12483), + [anon_sym_LPAREN] = ACTIONS(12483), + [anon_sym_COMMA] = ACTIONS(12483), + [anon_sym_EQ] = ACTIONS(12483), + [sym_word] = ACTIONS(12483), + [sym_param] = ACTIONS(12483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12483), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12483), + [anon_sym_DOLLAR] = ACTIONS(12485), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12483), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12483), + [anon_sym_BSLASHbegin] = ACTIONS(12485), + [anon_sym_BSLASHcaption] = ACTIONS(12485), + [anon_sym_BSLASHcite] = ACTIONS(12485), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCite] = ACTIONS(12485), + [anon_sym_BSLASHnocite] = ACTIONS(12485), + [anon_sym_BSLASHcitet] = ACTIONS(12485), + [anon_sym_BSLASHcitep] = ACTIONS(12485), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteauthor] = ACTIONS(12485), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12485), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitetitle] = ACTIONS(12485), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteyear] = ACTIONS(12485), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitedate] = ACTIONS(12485), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteurl] = ACTIONS(12485), + [anon_sym_BSLASHfullcite] = ACTIONS(12485), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12485), + [anon_sym_BSLASHcitealt] = ACTIONS(12485), + [anon_sym_BSLASHcitealp] = ACTIONS(12485), + [anon_sym_BSLASHcitetext] = ACTIONS(12485), + [anon_sym_BSLASHparencite] = ACTIONS(12485), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHParencite] = ACTIONS(12485), + [anon_sym_BSLASHfootcite] = ACTIONS(12485), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12485), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12485), + [anon_sym_BSLASHtextcite] = ACTIONS(12485), + [anon_sym_BSLASHTextcite] = ACTIONS(12485), + [anon_sym_BSLASHsmartcite] = ACTIONS(12485), + [anon_sym_BSLASHSmartcite] = ACTIONS(12485), + [anon_sym_BSLASHsupercite] = ACTIONS(12485), + [anon_sym_BSLASHautocite] = ACTIONS(12485), + [anon_sym_BSLASHAutocite] = ACTIONS(12485), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHvolcite] = ACTIONS(12485), + [anon_sym_BSLASHVolcite] = ACTIONS(12485), + [anon_sym_BSLASHpvolcite] = ACTIONS(12485), + [anon_sym_BSLASHPvolcite] = ACTIONS(12485), + [anon_sym_BSLASHfvolcite] = ACTIONS(12485), + [anon_sym_BSLASHftvolcite] = ACTIONS(12485), + [anon_sym_BSLASHsvolcite] = ACTIONS(12485), + [anon_sym_BSLASHSvolcite] = ACTIONS(12485), + [anon_sym_BSLASHtvolcite] = ACTIONS(12485), + [anon_sym_BSLASHTvolcite] = ACTIONS(12485), + [anon_sym_BSLASHavolcite] = ACTIONS(12485), + [anon_sym_BSLASHAvolcite] = ACTIONS(12485), + [anon_sym_BSLASHnotecite] = ACTIONS(12485), + [anon_sym_BSLASHpnotecite] = ACTIONS(12485), + [anon_sym_BSLASHPnotecite] = ACTIONS(12485), + [anon_sym_BSLASHfnotecite] = ACTIONS(12485), + [anon_sym_BSLASHusepackage] = ACTIONS(12485), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12485), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12485), + [anon_sym_BSLASHinclude] = ACTIONS(12485), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12485), + [anon_sym_BSLASHinput] = ACTIONS(12485), + [anon_sym_BSLASHsubfile] = ACTIONS(12485), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12485), + [anon_sym_BSLASHbibliography] = ACTIONS(12485), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12485), + [anon_sym_BSLASHincludesvg] = ACTIONS(12485), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12485), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12485), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12485), + [anon_sym_BSLASHimport] = ACTIONS(12485), + [anon_sym_BSLASHsubimport] = ACTIONS(12485), + [anon_sym_BSLASHinputfrom] = ACTIONS(12485), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12485), + [anon_sym_BSLASHincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHlabel] = ACTIONS(12485), + [anon_sym_BSLASHref] = ACTIONS(12485), + [anon_sym_BSLASHvref] = ACTIONS(12485), + [anon_sym_BSLASHVref] = ACTIONS(12485), + [anon_sym_BSLASHautoref] = ACTIONS(12485), + [anon_sym_BSLASHpageref] = ACTIONS(12485), + [anon_sym_BSLASHcref] = ACTIONS(12485), + [anon_sym_BSLASHCref] = ACTIONS(12485), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnameCref] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHlabelcref] = ACTIONS(12485), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12485), + [anon_sym_BSLASHeqref] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange] = ACTIONS(12485), + [anon_sym_BSLASHCrefrange] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewlabel] = ACTIONS(12485), + [anon_sym_BSLASHnewcommand] = ACTIONS(12485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12485), + [anon_sym_BSLASHgls] = ACTIONS(12485), + [anon_sym_BSLASHGls] = ACTIONS(12485), + [anon_sym_BSLASHGLS] = ACTIONS(12485), + [anon_sym_BSLASHglspl] = ACTIONS(12485), + [anon_sym_BSLASHGlspl] = ACTIONS(12485), + [anon_sym_BSLASHGLSpl] = ACTIONS(12485), + [anon_sym_BSLASHglsdisp] = ACTIONS(12485), + [anon_sym_BSLASHglslink] = ACTIONS(12485), + [anon_sym_BSLASHglstext] = ACTIONS(12485), + [anon_sym_BSLASHGlstext] = ACTIONS(12485), + [anon_sym_BSLASHGLStext] = ACTIONS(12485), + [anon_sym_BSLASHglsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12485), + [anon_sym_BSLASHglsplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSplural] = ACTIONS(12485), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHglsname] = ACTIONS(12485), + [anon_sym_BSLASHGlsname] = ACTIONS(12485), + [anon_sym_BSLASHGLSname] = ACTIONS(12485), + [anon_sym_BSLASHglssymbol] = ACTIONS(12485), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12485), + [anon_sym_BSLASHglsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12485), + [anon_sym_BSLASHglsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12485), + [anon_sym_BSLASHglsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12485), + [anon_sym_BSLASHglsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12485), + [anon_sym_BSLASHglsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12485), + [anon_sym_BSLASHnewacronym] = ACTIONS(12485), + [anon_sym_BSLASHacrshort] = ACTIONS(12485), + [anon_sym_BSLASHAcrshort] = ACTIONS(12485), + [anon_sym_BSLASHACRshort] = ACTIONS(12485), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12485), + [anon_sym_BSLASHacrlong] = ACTIONS(12485), + [anon_sym_BSLASHAcrlong] = ACTIONS(12485), + [anon_sym_BSLASHACRlong] = ACTIONS(12485), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12485), + [anon_sym_BSLASHacrfull] = ACTIONS(12485), + [anon_sym_BSLASHAcrfull] = ACTIONS(12485), + [anon_sym_BSLASHACRfull] = ACTIONS(12485), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12485), + [anon_sym_BSLASHacs] = ACTIONS(12485), + [anon_sym_BSLASHAcs] = ACTIONS(12485), + [anon_sym_BSLASHacsp] = ACTIONS(12485), + [anon_sym_BSLASHAcsp] = ACTIONS(12485), + [anon_sym_BSLASHacl] = ACTIONS(12485), + [anon_sym_BSLASHAcl] = ACTIONS(12485), + [anon_sym_BSLASHaclp] = ACTIONS(12485), + [anon_sym_BSLASHAclp] = ACTIONS(12485), + [anon_sym_BSLASHacf] = ACTIONS(12485), + [anon_sym_BSLASHAcf] = ACTIONS(12485), + [anon_sym_BSLASHacfp] = ACTIONS(12485), + [anon_sym_BSLASHAcfp] = ACTIONS(12485), + [anon_sym_BSLASHac] = ACTIONS(12485), + [anon_sym_BSLASHAc] = ACTIONS(12485), + [anon_sym_BSLASHacp] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12485), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12485), + [anon_sym_BSLASHcolor] = ACTIONS(12485), + [anon_sym_BSLASHcolorbox] = ACTIONS(12485), + [anon_sym_BSLASHtextcolor] = ACTIONS(12485), + [anon_sym_BSLASHpagecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12485), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12485), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12485), + }, + [893] = { + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(117), + [aux_sym_chapter_token1] = ACTIONS(117), + [aux_sym_section_token1] = ACTIONS(117), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASH_RPAREN] = ACTIONS(115), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [894] = { + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(111), + [aux_sym_chapter_token1] = ACTIONS(111), + [aux_sym_section_token1] = ACTIONS(111), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASH_RPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [895] = { + [sym_generic_command_name] = ACTIONS(12349), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12349), + [aux_sym_chapter_token1] = ACTIONS(12349), + [aux_sym_section_token1] = ACTIONS(12349), + [aux_sym_subsection_token1] = ACTIONS(12349), + [aux_sym_subsubsection_token1] = ACTIONS(12349), + [aux_sym_paragraph_token1] = ACTIONS(12349), + [aux_sym_subparagraph_token1] = ACTIONS(12349), + [anon_sym_BSLASHitem] = ACTIONS(12349), + [anon_sym_LBRACK] = ACTIONS(12347), + [anon_sym_LBRACE] = ACTIONS(12347), + [anon_sym_LPAREN] = ACTIONS(12347), + [anon_sym_COMMA] = ACTIONS(12347), + [anon_sym_EQ] = ACTIONS(12347), + [sym_word] = ACTIONS(12347), + [sym_param] = ACTIONS(12347), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12347), + [anon_sym_DOLLAR] = ACTIONS(12349), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12347), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12347), + [anon_sym_BSLASHbegin] = ACTIONS(12349), + [anon_sym_BSLASHcaption] = ACTIONS(12349), + [anon_sym_BSLASHcite] = ACTIONS(12349), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCite] = ACTIONS(12349), + [anon_sym_BSLASHnocite] = ACTIONS(12349), + [anon_sym_BSLASHcitet] = ACTIONS(12349), + [anon_sym_BSLASHcitep] = ACTIONS(12349), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteauthor] = ACTIONS(12349), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12349), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitetitle] = ACTIONS(12349), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteyear] = ACTIONS(12349), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitedate] = ACTIONS(12349), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteurl] = ACTIONS(12349), + [anon_sym_BSLASHfullcite] = ACTIONS(12349), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12349), + [anon_sym_BSLASHcitealt] = ACTIONS(12349), + [anon_sym_BSLASHcitealp] = ACTIONS(12349), + [anon_sym_BSLASHcitetext] = ACTIONS(12349), + [anon_sym_BSLASHparencite] = ACTIONS(12349), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHParencite] = ACTIONS(12349), + [anon_sym_BSLASHfootcite] = ACTIONS(12349), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12349), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12349), + [anon_sym_BSLASHtextcite] = ACTIONS(12349), + [anon_sym_BSLASHTextcite] = ACTIONS(12349), + [anon_sym_BSLASHsmartcite] = ACTIONS(12349), + [anon_sym_BSLASHSmartcite] = ACTIONS(12349), + [anon_sym_BSLASHsupercite] = ACTIONS(12349), + [anon_sym_BSLASHautocite] = ACTIONS(12349), + [anon_sym_BSLASHAutocite] = ACTIONS(12349), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHvolcite] = ACTIONS(12349), + [anon_sym_BSLASHVolcite] = ACTIONS(12349), + [anon_sym_BSLASHpvolcite] = ACTIONS(12349), + [anon_sym_BSLASHPvolcite] = ACTIONS(12349), + [anon_sym_BSLASHfvolcite] = ACTIONS(12349), + [anon_sym_BSLASHftvolcite] = ACTIONS(12349), + [anon_sym_BSLASHsvolcite] = ACTIONS(12349), + [anon_sym_BSLASHSvolcite] = ACTIONS(12349), + [anon_sym_BSLASHtvolcite] = ACTIONS(12349), + [anon_sym_BSLASHTvolcite] = ACTIONS(12349), + [anon_sym_BSLASHavolcite] = ACTIONS(12349), + [anon_sym_BSLASHAvolcite] = ACTIONS(12349), + [anon_sym_BSLASHnotecite] = ACTIONS(12349), + [anon_sym_BSLASHpnotecite] = ACTIONS(12349), + [anon_sym_BSLASHPnotecite] = ACTIONS(12349), + [anon_sym_BSLASHfnotecite] = ACTIONS(12349), + [anon_sym_BSLASHusepackage] = ACTIONS(12349), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12349), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12349), + [anon_sym_BSLASHinclude] = ACTIONS(12349), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12349), + [anon_sym_BSLASHinput] = ACTIONS(12349), + [anon_sym_BSLASHsubfile] = ACTIONS(12349), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12349), + [anon_sym_BSLASHbibliography] = ACTIONS(12349), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12349), + [anon_sym_BSLASHincludesvg] = ACTIONS(12349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12349), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12349), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12349), + [anon_sym_BSLASHimport] = ACTIONS(12349), + [anon_sym_BSLASHsubimport] = ACTIONS(12349), + [anon_sym_BSLASHinputfrom] = ACTIONS(12349), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12349), + [anon_sym_BSLASHincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHlabel] = ACTIONS(12349), + [anon_sym_BSLASHref] = ACTIONS(12349), + [anon_sym_BSLASHvref] = ACTIONS(12349), + [anon_sym_BSLASHVref] = ACTIONS(12349), + [anon_sym_BSLASHautoref] = ACTIONS(12349), + [anon_sym_BSLASHpageref] = ACTIONS(12349), + [anon_sym_BSLASHcref] = ACTIONS(12349), + [anon_sym_BSLASHCref] = ACTIONS(12349), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnameCref] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHlabelcref] = ACTIONS(12349), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12349), + [anon_sym_BSLASHeqref] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange] = ACTIONS(12349), + [anon_sym_BSLASHCrefrange] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewlabel] = ACTIONS(12349), + [anon_sym_BSLASHnewcommand] = ACTIONS(12349), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12349), + [anon_sym_BSLASHgls] = ACTIONS(12349), + [anon_sym_BSLASHGls] = ACTIONS(12349), + [anon_sym_BSLASHGLS] = ACTIONS(12349), + [anon_sym_BSLASHglspl] = ACTIONS(12349), + [anon_sym_BSLASHGlspl] = ACTIONS(12349), + [anon_sym_BSLASHGLSpl] = ACTIONS(12349), + [anon_sym_BSLASHglsdisp] = ACTIONS(12349), + [anon_sym_BSLASHglslink] = ACTIONS(12349), + [anon_sym_BSLASHglstext] = ACTIONS(12349), + [anon_sym_BSLASHGlstext] = ACTIONS(12349), + [anon_sym_BSLASHGLStext] = ACTIONS(12349), + [anon_sym_BSLASHglsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12349), + [anon_sym_BSLASHglsplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSplural] = ACTIONS(12349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHglsname] = ACTIONS(12349), + [anon_sym_BSLASHGlsname] = ACTIONS(12349), + [anon_sym_BSLASHGLSname] = ACTIONS(12349), + [anon_sym_BSLASHglssymbol] = ACTIONS(12349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12349), + [anon_sym_BSLASHglsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12349), + [anon_sym_BSLASHglsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12349), + [anon_sym_BSLASHglsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12349), + [anon_sym_BSLASHglsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12349), + [anon_sym_BSLASHglsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12349), + [anon_sym_BSLASHnewacronym] = ACTIONS(12349), + [anon_sym_BSLASHacrshort] = ACTIONS(12349), + [anon_sym_BSLASHAcrshort] = ACTIONS(12349), + [anon_sym_BSLASHACRshort] = ACTIONS(12349), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12349), + [anon_sym_BSLASHacrlong] = ACTIONS(12349), + [anon_sym_BSLASHAcrlong] = ACTIONS(12349), + [anon_sym_BSLASHACRlong] = ACTIONS(12349), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12349), + [anon_sym_BSLASHacrfull] = ACTIONS(12349), + [anon_sym_BSLASHAcrfull] = ACTIONS(12349), + [anon_sym_BSLASHACRfull] = ACTIONS(12349), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12349), + [anon_sym_BSLASHacs] = ACTIONS(12349), + [anon_sym_BSLASHAcs] = ACTIONS(12349), + [anon_sym_BSLASHacsp] = ACTIONS(12349), + [anon_sym_BSLASHAcsp] = ACTIONS(12349), + [anon_sym_BSLASHacl] = ACTIONS(12349), + [anon_sym_BSLASHAcl] = ACTIONS(12349), + [anon_sym_BSLASHaclp] = ACTIONS(12349), + [anon_sym_BSLASHAclp] = ACTIONS(12349), + [anon_sym_BSLASHacf] = ACTIONS(12349), + [anon_sym_BSLASHAcf] = ACTIONS(12349), + [anon_sym_BSLASHacfp] = ACTIONS(12349), + [anon_sym_BSLASHAcfp] = ACTIONS(12349), + [anon_sym_BSLASHac] = ACTIONS(12349), + [anon_sym_BSLASHAc] = ACTIONS(12349), + [anon_sym_BSLASHacp] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12349), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12349), + [anon_sym_BSLASHcolor] = ACTIONS(12349), + [anon_sym_BSLASHcolorbox] = ACTIONS(12349), + [anon_sym_BSLASHtextcolor] = ACTIONS(12349), + [anon_sym_BSLASHpagecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12349), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12349), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12349), + }, + [896] = { + [sym_generic_command_name] = ACTIONS(12323), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12323), + [aux_sym_chapter_token1] = ACTIONS(12323), + [aux_sym_section_token1] = ACTIONS(12323), + [aux_sym_subsection_token1] = ACTIONS(12323), + [aux_sym_subsubsection_token1] = ACTIONS(12323), + [aux_sym_paragraph_token1] = ACTIONS(12323), + [aux_sym_subparagraph_token1] = ACTIONS(12323), + [anon_sym_BSLASHitem] = ACTIONS(12323), + [anon_sym_LBRACK] = ACTIONS(12321), + [anon_sym_LBRACE] = ACTIONS(12321), + [anon_sym_LPAREN] = ACTIONS(12321), + [anon_sym_COMMA] = ACTIONS(12321), + [anon_sym_EQ] = ACTIONS(12321), + [sym_word] = ACTIONS(12321), + [sym_param] = ACTIONS(12321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12321), + [anon_sym_DOLLAR] = ACTIONS(12323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12321), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12321), + [anon_sym_BSLASHbegin] = ACTIONS(12323), + [anon_sym_BSLASHcaption] = ACTIONS(12323), + [anon_sym_BSLASHcite] = ACTIONS(12323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCite] = ACTIONS(12323), + [anon_sym_BSLASHnocite] = ACTIONS(12323), + [anon_sym_BSLASHcitet] = ACTIONS(12323), + [anon_sym_BSLASHcitep] = ACTIONS(12323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteauthor] = ACTIONS(12323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitetitle] = ACTIONS(12323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteyear] = ACTIONS(12323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitedate] = ACTIONS(12323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteurl] = ACTIONS(12323), + [anon_sym_BSLASHfullcite] = ACTIONS(12323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12323), + [anon_sym_BSLASHcitealt] = ACTIONS(12323), + [anon_sym_BSLASHcitealp] = ACTIONS(12323), + [anon_sym_BSLASHcitetext] = ACTIONS(12323), + [anon_sym_BSLASHparencite] = ACTIONS(12323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHParencite] = ACTIONS(12323), + [anon_sym_BSLASHfootcite] = ACTIONS(12323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12323), + [anon_sym_BSLASHtextcite] = ACTIONS(12323), + [anon_sym_BSLASHTextcite] = ACTIONS(12323), + [anon_sym_BSLASHsmartcite] = ACTIONS(12323), + [anon_sym_BSLASHSmartcite] = ACTIONS(12323), + [anon_sym_BSLASHsupercite] = ACTIONS(12323), + [anon_sym_BSLASHautocite] = ACTIONS(12323), + [anon_sym_BSLASHAutocite] = ACTIONS(12323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHvolcite] = ACTIONS(12323), + [anon_sym_BSLASHVolcite] = ACTIONS(12323), + [anon_sym_BSLASHpvolcite] = ACTIONS(12323), + [anon_sym_BSLASHPvolcite] = ACTIONS(12323), + [anon_sym_BSLASHfvolcite] = ACTIONS(12323), + [anon_sym_BSLASHftvolcite] = ACTIONS(12323), + [anon_sym_BSLASHsvolcite] = ACTIONS(12323), + [anon_sym_BSLASHSvolcite] = ACTIONS(12323), + [anon_sym_BSLASHtvolcite] = ACTIONS(12323), + [anon_sym_BSLASHTvolcite] = ACTIONS(12323), + [anon_sym_BSLASHavolcite] = ACTIONS(12323), + [anon_sym_BSLASHAvolcite] = ACTIONS(12323), + [anon_sym_BSLASHnotecite] = ACTIONS(12323), + [anon_sym_BSLASHpnotecite] = ACTIONS(12323), + [anon_sym_BSLASHPnotecite] = ACTIONS(12323), + [anon_sym_BSLASHfnotecite] = ACTIONS(12323), + [anon_sym_BSLASHusepackage] = ACTIONS(12323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12323), + [anon_sym_BSLASHinclude] = ACTIONS(12323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12323), + [anon_sym_BSLASHinput] = ACTIONS(12323), + [anon_sym_BSLASHsubfile] = ACTIONS(12323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12323), + [anon_sym_BSLASHbibliography] = ACTIONS(12323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12323), + [anon_sym_BSLASHincludesvg] = ACTIONS(12323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12323), + [anon_sym_BSLASHimport] = ACTIONS(12323), + [anon_sym_BSLASHsubimport] = ACTIONS(12323), + [anon_sym_BSLASHinputfrom] = ACTIONS(12323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12323), + [anon_sym_BSLASHincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHlabel] = ACTIONS(12323), + [anon_sym_BSLASHref] = ACTIONS(12323), + [anon_sym_BSLASHvref] = ACTIONS(12323), + [anon_sym_BSLASHVref] = ACTIONS(12323), + [anon_sym_BSLASHautoref] = ACTIONS(12323), + [anon_sym_BSLASHpageref] = ACTIONS(12323), + [anon_sym_BSLASHcref] = ACTIONS(12323), + [anon_sym_BSLASHCref] = ACTIONS(12323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnameCref] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHlabelcref] = ACTIONS(12323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12323), + [anon_sym_BSLASHeqref] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange] = ACTIONS(12323), + [anon_sym_BSLASHCrefrange] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewlabel] = ACTIONS(12323), + [anon_sym_BSLASHnewcommand] = ACTIONS(12323), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12323), + [anon_sym_BSLASHgls] = ACTIONS(12323), + [anon_sym_BSLASHGls] = ACTIONS(12323), + [anon_sym_BSLASHGLS] = ACTIONS(12323), + [anon_sym_BSLASHglspl] = ACTIONS(12323), + [anon_sym_BSLASHGlspl] = ACTIONS(12323), + [anon_sym_BSLASHGLSpl] = ACTIONS(12323), + [anon_sym_BSLASHglsdisp] = ACTIONS(12323), + [anon_sym_BSLASHglslink] = ACTIONS(12323), + [anon_sym_BSLASHglstext] = ACTIONS(12323), + [anon_sym_BSLASHGlstext] = ACTIONS(12323), + [anon_sym_BSLASHGLStext] = ACTIONS(12323), + [anon_sym_BSLASHglsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12323), + [anon_sym_BSLASHglsplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSplural] = ACTIONS(12323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHglsname] = ACTIONS(12323), + [anon_sym_BSLASHGlsname] = ACTIONS(12323), + [anon_sym_BSLASHGLSname] = ACTIONS(12323), + [anon_sym_BSLASHglssymbol] = ACTIONS(12323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12323), + [anon_sym_BSLASHglsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12323), + [anon_sym_BSLASHglsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12323), + [anon_sym_BSLASHglsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12323), + [anon_sym_BSLASHglsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12323), + [anon_sym_BSLASHglsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12323), + [anon_sym_BSLASHnewacronym] = ACTIONS(12323), + [anon_sym_BSLASHacrshort] = ACTIONS(12323), + [anon_sym_BSLASHAcrshort] = ACTIONS(12323), + [anon_sym_BSLASHACRshort] = ACTIONS(12323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12323), + [anon_sym_BSLASHacrlong] = ACTIONS(12323), + [anon_sym_BSLASHAcrlong] = ACTIONS(12323), + [anon_sym_BSLASHACRlong] = ACTIONS(12323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12323), + [anon_sym_BSLASHacrfull] = ACTIONS(12323), + [anon_sym_BSLASHAcrfull] = ACTIONS(12323), + [anon_sym_BSLASHACRfull] = ACTIONS(12323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12323), + [anon_sym_BSLASHacs] = ACTIONS(12323), + [anon_sym_BSLASHAcs] = ACTIONS(12323), + [anon_sym_BSLASHacsp] = ACTIONS(12323), + [anon_sym_BSLASHAcsp] = ACTIONS(12323), + [anon_sym_BSLASHacl] = ACTIONS(12323), + [anon_sym_BSLASHAcl] = ACTIONS(12323), + [anon_sym_BSLASHaclp] = ACTIONS(12323), + [anon_sym_BSLASHAclp] = ACTIONS(12323), + [anon_sym_BSLASHacf] = ACTIONS(12323), + [anon_sym_BSLASHAcf] = ACTIONS(12323), + [anon_sym_BSLASHacfp] = ACTIONS(12323), + [anon_sym_BSLASHAcfp] = ACTIONS(12323), + [anon_sym_BSLASHac] = ACTIONS(12323), + [anon_sym_BSLASHAc] = ACTIONS(12323), + [anon_sym_BSLASHacp] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12323), + [anon_sym_BSLASHcolor] = ACTIONS(12323), + [anon_sym_BSLASHcolorbox] = ACTIONS(12323), + [anon_sym_BSLASHtextcolor] = ACTIONS(12323), + [anon_sym_BSLASHpagecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12323), + }, + [897] = { + [sym_generic_command_name] = ACTIONS(12349), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12349), + [aux_sym_section_token1] = ACTIONS(12349), + [aux_sym_subsection_token1] = ACTIONS(12349), + [aux_sym_subsubsection_token1] = ACTIONS(12349), + [aux_sym_paragraph_token1] = ACTIONS(12349), + [aux_sym_subparagraph_token1] = ACTIONS(12349), + [anon_sym_BSLASHitem] = ACTIONS(12349), + [anon_sym_LBRACK] = ACTIONS(12347), + [anon_sym_RBRACK] = ACTIONS(12347), + [anon_sym_LBRACE] = ACTIONS(12347), + [anon_sym_RBRACE] = ACTIONS(12347), + [anon_sym_LPAREN] = ACTIONS(12347), + [anon_sym_COMMA] = ACTIONS(12347), + [anon_sym_EQ] = ACTIONS(12347), + [sym_word] = ACTIONS(12347), + [sym_param] = ACTIONS(12347), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12347), + [anon_sym_DOLLAR] = ACTIONS(12349), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12347), + [anon_sym_BSLASHbegin] = ACTIONS(12349), + [anon_sym_BSLASHcaption] = ACTIONS(12349), + [anon_sym_BSLASHcite] = ACTIONS(12349), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCite] = ACTIONS(12349), + [anon_sym_BSLASHnocite] = ACTIONS(12349), + [anon_sym_BSLASHcitet] = ACTIONS(12349), + [anon_sym_BSLASHcitep] = ACTIONS(12349), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteauthor] = ACTIONS(12349), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12349), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitetitle] = ACTIONS(12349), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteyear] = ACTIONS(12349), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitedate] = ACTIONS(12349), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteurl] = ACTIONS(12349), + [anon_sym_BSLASHfullcite] = ACTIONS(12349), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12349), + [anon_sym_BSLASHcitealt] = ACTIONS(12349), + [anon_sym_BSLASHcitealp] = ACTIONS(12349), + [anon_sym_BSLASHcitetext] = ACTIONS(12349), + [anon_sym_BSLASHparencite] = ACTIONS(12349), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHParencite] = ACTIONS(12349), + [anon_sym_BSLASHfootcite] = ACTIONS(12349), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12349), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12349), + [anon_sym_BSLASHtextcite] = ACTIONS(12349), + [anon_sym_BSLASHTextcite] = ACTIONS(12349), + [anon_sym_BSLASHsmartcite] = ACTIONS(12349), + [anon_sym_BSLASHSmartcite] = ACTIONS(12349), + [anon_sym_BSLASHsupercite] = ACTIONS(12349), + [anon_sym_BSLASHautocite] = ACTIONS(12349), + [anon_sym_BSLASHAutocite] = ACTIONS(12349), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHvolcite] = ACTIONS(12349), + [anon_sym_BSLASHVolcite] = ACTIONS(12349), + [anon_sym_BSLASHpvolcite] = ACTIONS(12349), + [anon_sym_BSLASHPvolcite] = ACTIONS(12349), + [anon_sym_BSLASHfvolcite] = ACTIONS(12349), + [anon_sym_BSLASHftvolcite] = ACTIONS(12349), + [anon_sym_BSLASHsvolcite] = ACTIONS(12349), + [anon_sym_BSLASHSvolcite] = ACTIONS(12349), + [anon_sym_BSLASHtvolcite] = ACTIONS(12349), + [anon_sym_BSLASHTvolcite] = ACTIONS(12349), + [anon_sym_BSLASHavolcite] = ACTIONS(12349), + [anon_sym_BSLASHAvolcite] = ACTIONS(12349), + [anon_sym_BSLASHnotecite] = ACTIONS(12349), + [anon_sym_BSLASHpnotecite] = ACTIONS(12349), + [anon_sym_BSLASHPnotecite] = ACTIONS(12349), + [anon_sym_BSLASHfnotecite] = ACTIONS(12349), + [anon_sym_BSLASHusepackage] = ACTIONS(12349), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12349), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12349), + [anon_sym_BSLASHinclude] = ACTIONS(12349), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12349), + [anon_sym_BSLASHinput] = ACTIONS(12349), + [anon_sym_BSLASHsubfile] = ACTIONS(12349), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12349), + [anon_sym_BSLASHbibliography] = ACTIONS(12349), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12349), + [anon_sym_BSLASHincludesvg] = ACTIONS(12349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12349), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12349), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12349), + [anon_sym_BSLASHimport] = ACTIONS(12349), + [anon_sym_BSLASHsubimport] = ACTIONS(12349), + [anon_sym_BSLASHinputfrom] = ACTIONS(12349), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12349), + [anon_sym_BSLASHincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHlabel] = ACTIONS(12349), + [anon_sym_BSLASHref] = ACTIONS(12349), + [anon_sym_BSLASHvref] = ACTIONS(12349), + [anon_sym_BSLASHVref] = ACTIONS(12349), + [anon_sym_BSLASHautoref] = ACTIONS(12349), + [anon_sym_BSLASHpageref] = ACTIONS(12349), + [anon_sym_BSLASHcref] = ACTIONS(12349), + [anon_sym_BSLASHCref] = ACTIONS(12349), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnameCref] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHlabelcref] = ACTIONS(12349), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12349), + [anon_sym_BSLASHeqref] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange] = ACTIONS(12349), + [anon_sym_BSLASHCrefrange] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewlabel] = ACTIONS(12349), + [anon_sym_BSLASHnewcommand] = ACTIONS(12349), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12349), + [anon_sym_BSLASHgls] = ACTIONS(12349), + [anon_sym_BSLASHGls] = ACTIONS(12349), + [anon_sym_BSLASHGLS] = ACTIONS(12349), + [anon_sym_BSLASHglspl] = ACTIONS(12349), + [anon_sym_BSLASHGlspl] = ACTIONS(12349), + [anon_sym_BSLASHGLSpl] = ACTIONS(12349), + [anon_sym_BSLASHglsdisp] = ACTIONS(12349), + [anon_sym_BSLASHglslink] = ACTIONS(12349), + [anon_sym_BSLASHglstext] = ACTIONS(12349), + [anon_sym_BSLASHGlstext] = ACTIONS(12349), + [anon_sym_BSLASHGLStext] = ACTIONS(12349), + [anon_sym_BSLASHglsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12349), + [anon_sym_BSLASHglsplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSplural] = ACTIONS(12349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHglsname] = ACTIONS(12349), + [anon_sym_BSLASHGlsname] = ACTIONS(12349), + [anon_sym_BSLASHGLSname] = ACTIONS(12349), + [anon_sym_BSLASHglssymbol] = ACTIONS(12349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12349), + [anon_sym_BSLASHglsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12349), + [anon_sym_BSLASHglsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12349), + [anon_sym_BSLASHglsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12349), + [anon_sym_BSLASHglsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12349), + [anon_sym_BSLASHglsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12349), + [anon_sym_BSLASHnewacronym] = ACTIONS(12349), + [anon_sym_BSLASHacrshort] = ACTIONS(12349), + [anon_sym_BSLASHAcrshort] = ACTIONS(12349), + [anon_sym_BSLASHACRshort] = ACTIONS(12349), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12349), + [anon_sym_BSLASHacrlong] = ACTIONS(12349), + [anon_sym_BSLASHAcrlong] = ACTIONS(12349), + [anon_sym_BSLASHACRlong] = ACTIONS(12349), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12349), + [anon_sym_BSLASHacrfull] = ACTIONS(12349), + [anon_sym_BSLASHAcrfull] = ACTIONS(12349), + [anon_sym_BSLASHACRfull] = ACTIONS(12349), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12349), + [anon_sym_BSLASHacs] = ACTIONS(12349), + [anon_sym_BSLASHAcs] = ACTIONS(12349), + [anon_sym_BSLASHacsp] = ACTIONS(12349), + [anon_sym_BSLASHAcsp] = ACTIONS(12349), + [anon_sym_BSLASHacl] = ACTIONS(12349), + [anon_sym_BSLASHAcl] = ACTIONS(12349), + [anon_sym_BSLASHaclp] = ACTIONS(12349), + [anon_sym_BSLASHAclp] = ACTIONS(12349), + [anon_sym_BSLASHacf] = ACTIONS(12349), + [anon_sym_BSLASHAcf] = ACTIONS(12349), + [anon_sym_BSLASHacfp] = ACTIONS(12349), + [anon_sym_BSLASHAcfp] = ACTIONS(12349), + [anon_sym_BSLASHac] = ACTIONS(12349), + [anon_sym_BSLASHAc] = ACTIONS(12349), + [anon_sym_BSLASHacp] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12349), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12349), + [anon_sym_BSLASHcolor] = ACTIONS(12349), + [anon_sym_BSLASHcolorbox] = ACTIONS(12349), + [anon_sym_BSLASHtextcolor] = ACTIONS(12349), + [anon_sym_BSLASHpagecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12349), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12349), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12349), + }, + [898] = { + [sym_generic_command_name] = ACTIONS(12437), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12437), + [aux_sym_chapter_token1] = ACTIONS(12437), + [aux_sym_section_token1] = ACTIONS(12437), + [aux_sym_subsection_token1] = ACTIONS(12437), + [aux_sym_subsubsection_token1] = ACTIONS(12437), + [aux_sym_paragraph_token1] = ACTIONS(12437), + [aux_sym_subparagraph_token1] = ACTIONS(12437), + [anon_sym_BSLASHitem] = ACTIONS(12437), + [anon_sym_LBRACK] = ACTIONS(12435), + [anon_sym_LBRACE] = ACTIONS(12435), + [anon_sym_LPAREN] = ACTIONS(12435), + [anon_sym_COMMA] = ACTIONS(12435), + [anon_sym_EQ] = ACTIONS(12435), + [sym_word] = ACTIONS(12435), + [sym_param] = ACTIONS(12435), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12435), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12435), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12435), + [anon_sym_DOLLAR] = ACTIONS(12437), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12435), + [anon_sym_BSLASHbegin] = ACTIONS(12437), + [anon_sym_BSLASHcaption] = ACTIONS(12437), + [anon_sym_BSLASHcite] = ACTIONS(12437), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCite] = ACTIONS(12437), + [anon_sym_BSLASHnocite] = ACTIONS(12437), + [anon_sym_BSLASHcitet] = ACTIONS(12437), + [anon_sym_BSLASHcitep] = ACTIONS(12437), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteauthor] = ACTIONS(12437), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12437), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitetitle] = ACTIONS(12437), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteyear] = ACTIONS(12437), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitedate] = ACTIONS(12437), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteurl] = ACTIONS(12437), + [anon_sym_BSLASHfullcite] = ACTIONS(12437), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12437), + [anon_sym_BSLASHcitealt] = ACTIONS(12437), + [anon_sym_BSLASHcitealp] = ACTIONS(12437), + [anon_sym_BSLASHcitetext] = ACTIONS(12437), + [anon_sym_BSLASHparencite] = ACTIONS(12437), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHParencite] = ACTIONS(12437), + [anon_sym_BSLASHfootcite] = ACTIONS(12437), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12437), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12437), + [anon_sym_BSLASHtextcite] = ACTIONS(12437), + [anon_sym_BSLASHTextcite] = ACTIONS(12437), + [anon_sym_BSLASHsmartcite] = ACTIONS(12437), + [anon_sym_BSLASHSmartcite] = ACTIONS(12437), + [anon_sym_BSLASHsupercite] = ACTIONS(12437), + [anon_sym_BSLASHautocite] = ACTIONS(12437), + [anon_sym_BSLASHAutocite] = ACTIONS(12437), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHvolcite] = ACTIONS(12437), + [anon_sym_BSLASHVolcite] = ACTIONS(12437), + [anon_sym_BSLASHpvolcite] = ACTIONS(12437), + [anon_sym_BSLASHPvolcite] = ACTIONS(12437), + [anon_sym_BSLASHfvolcite] = ACTIONS(12437), + [anon_sym_BSLASHftvolcite] = ACTIONS(12437), + [anon_sym_BSLASHsvolcite] = ACTIONS(12437), + [anon_sym_BSLASHSvolcite] = ACTIONS(12437), + [anon_sym_BSLASHtvolcite] = ACTIONS(12437), + [anon_sym_BSLASHTvolcite] = ACTIONS(12437), + [anon_sym_BSLASHavolcite] = ACTIONS(12437), + [anon_sym_BSLASHAvolcite] = ACTIONS(12437), + [anon_sym_BSLASHnotecite] = ACTIONS(12437), + [anon_sym_BSLASHpnotecite] = ACTIONS(12437), + [anon_sym_BSLASHPnotecite] = ACTIONS(12437), + [anon_sym_BSLASHfnotecite] = ACTIONS(12437), + [anon_sym_BSLASHusepackage] = ACTIONS(12437), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12437), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12437), + [anon_sym_BSLASHinclude] = ACTIONS(12437), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12437), + [anon_sym_BSLASHinput] = ACTIONS(12437), + [anon_sym_BSLASHsubfile] = ACTIONS(12437), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12437), + [anon_sym_BSLASHbibliography] = ACTIONS(12437), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12437), + [anon_sym_BSLASHincludesvg] = ACTIONS(12437), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12437), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12437), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12437), + [anon_sym_BSLASHimport] = ACTIONS(12437), + [anon_sym_BSLASHsubimport] = ACTIONS(12437), + [anon_sym_BSLASHinputfrom] = ACTIONS(12437), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12437), + [anon_sym_BSLASHincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHlabel] = ACTIONS(12437), + [anon_sym_BSLASHref] = ACTIONS(12437), + [anon_sym_BSLASHvref] = ACTIONS(12437), + [anon_sym_BSLASHVref] = ACTIONS(12437), + [anon_sym_BSLASHautoref] = ACTIONS(12437), + [anon_sym_BSLASHpageref] = ACTIONS(12437), + [anon_sym_BSLASHcref] = ACTIONS(12437), + [anon_sym_BSLASHCref] = ACTIONS(12437), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnameCref] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHlabelcref] = ACTIONS(12437), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12437), + [anon_sym_BSLASHeqref] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange] = ACTIONS(12437), + [anon_sym_BSLASHCrefrange] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewlabel] = ACTIONS(12437), + [anon_sym_BSLASHnewcommand] = ACTIONS(12437), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12437), + [anon_sym_BSLASHgls] = ACTIONS(12437), + [anon_sym_BSLASHGls] = ACTIONS(12437), + [anon_sym_BSLASHGLS] = ACTIONS(12437), + [anon_sym_BSLASHglspl] = ACTIONS(12437), + [anon_sym_BSLASHGlspl] = ACTIONS(12437), + [anon_sym_BSLASHGLSpl] = ACTIONS(12437), + [anon_sym_BSLASHglsdisp] = ACTIONS(12437), + [anon_sym_BSLASHglslink] = ACTIONS(12437), + [anon_sym_BSLASHglstext] = ACTIONS(12437), + [anon_sym_BSLASHGlstext] = ACTIONS(12437), + [anon_sym_BSLASHGLStext] = ACTIONS(12437), + [anon_sym_BSLASHglsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12437), + [anon_sym_BSLASHglsplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSplural] = ACTIONS(12437), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHglsname] = ACTIONS(12437), + [anon_sym_BSLASHGlsname] = ACTIONS(12437), + [anon_sym_BSLASHGLSname] = ACTIONS(12437), + [anon_sym_BSLASHglssymbol] = ACTIONS(12437), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12437), + [anon_sym_BSLASHglsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12437), + [anon_sym_BSLASHglsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12437), + [anon_sym_BSLASHglsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12437), + [anon_sym_BSLASHglsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12437), + [anon_sym_BSLASHglsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12437), + [anon_sym_BSLASHnewacronym] = ACTIONS(12437), + [anon_sym_BSLASHacrshort] = ACTIONS(12437), + [anon_sym_BSLASHAcrshort] = ACTIONS(12437), + [anon_sym_BSLASHACRshort] = ACTIONS(12437), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12437), + [anon_sym_BSLASHacrlong] = ACTIONS(12437), + [anon_sym_BSLASHAcrlong] = ACTIONS(12437), + [anon_sym_BSLASHACRlong] = ACTIONS(12437), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12437), + [anon_sym_BSLASHacrfull] = ACTIONS(12437), + [anon_sym_BSLASHAcrfull] = ACTIONS(12437), + [anon_sym_BSLASHACRfull] = ACTIONS(12437), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12437), + [anon_sym_BSLASHacs] = ACTIONS(12437), + [anon_sym_BSLASHAcs] = ACTIONS(12437), + [anon_sym_BSLASHacsp] = ACTIONS(12437), + [anon_sym_BSLASHAcsp] = ACTIONS(12437), + [anon_sym_BSLASHacl] = ACTIONS(12437), + [anon_sym_BSLASHAcl] = ACTIONS(12437), + [anon_sym_BSLASHaclp] = ACTIONS(12437), + [anon_sym_BSLASHAclp] = ACTIONS(12437), + [anon_sym_BSLASHacf] = ACTIONS(12437), + [anon_sym_BSLASHAcf] = ACTIONS(12437), + [anon_sym_BSLASHacfp] = ACTIONS(12437), + [anon_sym_BSLASHAcfp] = ACTIONS(12437), + [anon_sym_BSLASHac] = ACTIONS(12437), + [anon_sym_BSLASHAc] = ACTIONS(12437), + [anon_sym_BSLASHacp] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12437), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12437), + [anon_sym_BSLASHcolor] = ACTIONS(12437), + [anon_sym_BSLASHcolorbox] = ACTIONS(12437), + [anon_sym_BSLASHtextcolor] = ACTIONS(12437), + [anon_sym_BSLASHpagecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12437), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12437), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12437), + }, + [899] = { + [sym_generic_command_name] = ACTIONS(12185), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12185), + [aux_sym_chapter_token1] = ACTIONS(12185), + [aux_sym_section_token1] = ACTIONS(12185), + [aux_sym_subsection_token1] = ACTIONS(12185), + [aux_sym_subsubsection_token1] = ACTIONS(12185), + [aux_sym_paragraph_token1] = ACTIONS(12185), + [aux_sym_subparagraph_token1] = ACTIONS(12185), + [anon_sym_BSLASHitem] = ACTIONS(12185), + [anon_sym_LBRACK] = ACTIONS(12183), + [anon_sym_LBRACE] = ACTIONS(12183), + [anon_sym_LPAREN] = ACTIONS(12183), + [anon_sym_COMMA] = ACTIONS(12183), + [anon_sym_EQ] = ACTIONS(12183), + [sym_word] = ACTIONS(12183), + [sym_param] = ACTIONS(12183), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12183), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12183), + [anon_sym_DOLLAR] = ACTIONS(12185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12183), + [anon_sym_BSLASHbegin] = ACTIONS(12185), + [anon_sym_BSLASHcaption] = ACTIONS(12185), + [anon_sym_BSLASHcite] = ACTIONS(12185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCite] = ACTIONS(12185), + [anon_sym_BSLASHnocite] = ACTIONS(12185), + [anon_sym_BSLASHcitet] = ACTIONS(12185), + [anon_sym_BSLASHcitep] = ACTIONS(12185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteauthor] = ACTIONS(12185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitetitle] = ACTIONS(12185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteyear] = ACTIONS(12185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitedate] = ACTIONS(12185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteurl] = ACTIONS(12185), + [anon_sym_BSLASHfullcite] = ACTIONS(12185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12185), + [anon_sym_BSLASHcitealt] = ACTIONS(12185), + [anon_sym_BSLASHcitealp] = ACTIONS(12185), + [anon_sym_BSLASHcitetext] = ACTIONS(12185), + [anon_sym_BSLASHparencite] = ACTIONS(12185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHParencite] = ACTIONS(12185), + [anon_sym_BSLASHfootcite] = ACTIONS(12185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12185), + [anon_sym_BSLASHtextcite] = ACTIONS(12185), + [anon_sym_BSLASHTextcite] = ACTIONS(12185), + [anon_sym_BSLASHsmartcite] = ACTIONS(12185), + [anon_sym_BSLASHSmartcite] = ACTIONS(12185), + [anon_sym_BSLASHsupercite] = ACTIONS(12185), + [anon_sym_BSLASHautocite] = ACTIONS(12185), + [anon_sym_BSLASHAutocite] = ACTIONS(12185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHvolcite] = ACTIONS(12185), + [anon_sym_BSLASHVolcite] = ACTIONS(12185), + [anon_sym_BSLASHpvolcite] = ACTIONS(12185), + [anon_sym_BSLASHPvolcite] = ACTIONS(12185), + [anon_sym_BSLASHfvolcite] = ACTIONS(12185), + [anon_sym_BSLASHftvolcite] = ACTIONS(12185), + [anon_sym_BSLASHsvolcite] = ACTIONS(12185), + [anon_sym_BSLASHSvolcite] = ACTIONS(12185), + [anon_sym_BSLASHtvolcite] = ACTIONS(12185), + [anon_sym_BSLASHTvolcite] = ACTIONS(12185), + [anon_sym_BSLASHavolcite] = ACTIONS(12185), + [anon_sym_BSLASHAvolcite] = ACTIONS(12185), + [anon_sym_BSLASHnotecite] = ACTIONS(12185), + [anon_sym_BSLASHpnotecite] = ACTIONS(12185), + [anon_sym_BSLASHPnotecite] = ACTIONS(12185), + [anon_sym_BSLASHfnotecite] = ACTIONS(12185), + [anon_sym_BSLASHusepackage] = ACTIONS(12185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12185), + [anon_sym_BSLASHinclude] = ACTIONS(12185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12185), + [anon_sym_BSLASHinput] = ACTIONS(12185), + [anon_sym_BSLASHsubfile] = ACTIONS(12185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12185), + [anon_sym_BSLASHbibliography] = ACTIONS(12185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12185), + [anon_sym_BSLASHincludesvg] = ACTIONS(12185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12185), + [anon_sym_BSLASHimport] = ACTIONS(12185), + [anon_sym_BSLASHsubimport] = ACTIONS(12185), + [anon_sym_BSLASHinputfrom] = ACTIONS(12185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12185), + [anon_sym_BSLASHincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHlabel] = ACTIONS(12185), + [anon_sym_BSLASHref] = ACTIONS(12185), + [anon_sym_BSLASHvref] = ACTIONS(12185), + [anon_sym_BSLASHVref] = ACTIONS(12185), + [anon_sym_BSLASHautoref] = ACTIONS(12185), + [anon_sym_BSLASHpageref] = ACTIONS(12185), + [anon_sym_BSLASHcref] = ACTIONS(12185), + [anon_sym_BSLASHCref] = ACTIONS(12185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnameCref] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHlabelcref] = ACTIONS(12185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12185), + [anon_sym_BSLASHeqref] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange] = ACTIONS(12185), + [anon_sym_BSLASHCrefrange] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewlabel] = ACTIONS(12185), + [anon_sym_BSLASHnewcommand] = ACTIONS(12185), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12185), + [anon_sym_BSLASHgls] = ACTIONS(12185), + [anon_sym_BSLASHGls] = ACTIONS(12185), + [anon_sym_BSLASHGLS] = ACTIONS(12185), + [anon_sym_BSLASHglspl] = ACTIONS(12185), + [anon_sym_BSLASHGlspl] = ACTIONS(12185), + [anon_sym_BSLASHGLSpl] = ACTIONS(12185), + [anon_sym_BSLASHglsdisp] = ACTIONS(12185), + [anon_sym_BSLASHglslink] = ACTIONS(12185), + [anon_sym_BSLASHglstext] = ACTIONS(12185), + [anon_sym_BSLASHGlstext] = ACTIONS(12185), + [anon_sym_BSLASHGLStext] = ACTIONS(12185), + [anon_sym_BSLASHglsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12185), + [anon_sym_BSLASHglsplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSplural] = ACTIONS(12185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHglsname] = ACTIONS(12185), + [anon_sym_BSLASHGlsname] = ACTIONS(12185), + [anon_sym_BSLASHGLSname] = ACTIONS(12185), + [anon_sym_BSLASHglssymbol] = ACTIONS(12185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12185), + [anon_sym_BSLASHglsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12185), + [anon_sym_BSLASHglsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12185), + [anon_sym_BSLASHglsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12185), + [anon_sym_BSLASHglsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12185), + [anon_sym_BSLASHglsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12185), + [anon_sym_BSLASHnewacronym] = ACTIONS(12185), + [anon_sym_BSLASHacrshort] = ACTIONS(12185), + [anon_sym_BSLASHAcrshort] = ACTIONS(12185), + [anon_sym_BSLASHACRshort] = ACTIONS(12185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12185), + [anon_sym_BSLASHacrlong] = ACTIONS(12185), + [anon_sym_BSLASHAcrlong] = ACTIONS(12185), + [anon_sym_BSLASHACRlong] = ACTIONS(12185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12185), + [anon_sym_BSLASHacrfull] = ACTIONS(12185), + [anon_sym_BSLASHAcrfull] = ACTIONS(12185), + [anon_sym_BSLASHACRfull] = ACTIONS(12185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12185), + [anon_sym_BSLASHacs] = ACTIONS(12185), + [anon_sym_BSLASHAcs] = ACTIONS(12185), + [anon_sym_BSLASHacsp] = ACTIONS(12185), + [anon_sym_BSLASHAcsp] = ACTIONS(12185), + [anon_sym_BSLASHacl] = ACTIONS(12185), + [anon_sym_BSLASHAcl] = ACTIONS(12185), + [anon_sym_BSLASHaclp] = ACTIONS(12185), + [anon_sym_BSLASHAclp] = ACTIONS(12185), + [anon_sym_BSLASHacf] = ACTIONS(12185), + [anon_sym_BSLASHAcf] = ACTIONS(12185), + [anon_sym_BSLASHacfp] = ACTIONS(12185), + [anon_sym_BSLASHAcfp] = ACTIONS(12185), + [anon_sym_BSLASHac] = ACTIONS(12185), + [anon_sym_BSLASHAc] = ACTIONS(12185), + [anon_sym_BSLASHacp] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12185), + [anon_sym_BSLASHcolor] = ACTIONS(12185), + [anon_sym_BSLASHcolorbox] = ACTIONS(12185), + [anon_sym_BSLASHtextcolor] = ACTIONS(12185), + [anon_sym_BSLASHpagecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12185), + }, + [900] = { + [sym_generic_command_name] = ACTIONS(12453), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12453), + [aux_sym_section_token1] = ACTIONS(12453), + [aux_sym_subsection_token1] = ACTIONS(12453), + [aux_sym_subsubsection_token1] = ACTIONS(12453), + [aux_sym_paragraph_token1] = ACTIONS(12453), + [aux_sym_subparagraph_token1] = ACTIONS(12453), + [anon_sym_BSLASHitem] = ACTIONS(12453), + [anon_sym_LBRACK] = ACTIONS(12451), + [anon_sym_RBRACK] = ACTIONS(12451), + [anon_sym_LBRACE] = ACTIONS(12451), + [anon_sym_RBRACE] = ACTIONS(12451), + [anon_sym_LPAREN] = ACTIONS(12451), + [anon_sym_COMMA] = ACTIONS(12451), + [anon_sym_EQ] = ACTIONS(12451), + [sym_word] = ACTIONS(12451), + [sym_param] = ACTIONS(12451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12451), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12451), + [anon_sym_DOLLAR] = ACTIONS(12453), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12451), + [anon_sym_BSLASHbegin] = ACTIONS(12453), + [anon_sym_BSLASHcaption] = ACTIONS(12453), + [anon_sym_BSLASHcite] = ACTIONS(12453), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCite] = ACTIONS(12453), + [anon_sym_BSLASHnocite] = ACTIONS(12453), + [anon_sym_BSLASHcitet] = ACTIONS(12453), + [anon_sym_BSLASHcitep] = ACTIONS(12453), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteauthor] = ACTIONS(12453), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12453), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitetitle] = ACTIONS(12453), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteyear] = ACTIONS(12453), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitedate] = ACTIONS(12453), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteurl] = ACTIONS(12453), + [anon_sym_BSLASHfullcite] = ACTIONS(12453), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12453), + [anon_sym_BSLASHcitealt] = ACTIONS(12453), + [anon_sym_BSLASHcitealp] = ACTIONS(12453), + [anon_sym_BSLASHcitetext] = ACTIONS(12453), + [anon_sym_BSLASHparencite] = ACTIONS(12453), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHParencite] = ACTIONS(12453), + [anon_sym_BSLASHfootcite] = ACTIONS(12453), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12453), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12453), + [anon_sym_BSLASHtextcite] = ACTIONS(12453), + [anon_sym_BSLASHTextcite] = ACTIONS(12453), + [anon_sym_BSLASHsmartcite] = ACTIONS(12453), + [anon_sym_BSLASHSmartcite] = ACTIONS(12453), + [anon_sym_BSLASHsupercite] = ACTIONS(12453), + [anon_sym_BSLASHautocite] = ACTIONS(12453), + [anon_sym_BSLASHAutocite] = ACTIONS(12453), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHvolcite] = ACTIONS(12453), + [anon_sym_BSLASHVolcite] = ACTIONS(12453), + [anon_sym_BSLASHpvolcite] = ACTIONS(12453), + [anon_sym_BSLASHPvolcite] = ACTIONS(12453), + [anon_sym_BSLASHfvolcite] = ACTIONS(12453), + [anon_sym_BSLASHftvolcite] = ACTIONS(12453), + [anon_sym_BSLASHsvolcite] = ACTIONS(12453), + [anon_sym_BSLASHSvolcite] = ACTIONS(12453), + [anon_sym_BSLASHtvolcite] = ACTIONS(12453), + [anon_sym_BSLASHTvolcite] = ACTIONS(12453), + [anon_sym_BSLASHavolcite] = ACTIONS(12453), + [anon_sym_BSLASHAvolcite] = ACTIONS(12453), + [anon_sym_BSLASHnotecite] = ACTIONS(12453), + [anon_sym_BSLASHpnotecite] = ACTIONS(12453), + [anon_sym_BSLASHPnotecite] = ACTIONS(12453), + [anon_sym_BSLASHfnotecite] = ACTIONS(12453), + [anon_sym_BSLASHusepackage] = ACTIONS(12453), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12453), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12453), + [anon_sym_BSLASHinclude] = ACTIONS(12453), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12453), + [anon_sym_BSLASHinput] = ACTIONS(12453), + [anon_sym_BSLASHsubfile] = ACTIONS(12453), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12453), + [anon_sym_BSLASHbibliography] = ACTIONS(12453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12453), + [anon_sym_BSLASHincludesvg] = ACTIONS(12453), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12453), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12453), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12453), + [anon_sym_BSLASHimport] = ACTIONS(12453), + [anon_sym_BSLASHsubimport] = ACTIONS(12453), + [anon_sym_BSLASHinputfrom] = ACTIONS(12453), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12453), + [anon_sym_BSLASHincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHlabel] = ACTIONS(12453), + [anon_sym_BSLASHref] = ACTIONS(12453), + [anon_sym_BSLASHvref] = ACTIONS(12453), + [anon_sym_BSLASHVref] = ACTIONS(12453), + [anon_sym_BSLASHautoref] = ACTIONS(12453), + [anon_sym_BSLASHpageref] = ACTIONS(12453), + [anon_sym_BSLASHcref] = ACTIONS(12453), + [anon_sym_BSLASHCref] = ACTIONS(12453), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnameCref] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHlabelcref] = ACTIONS(12453), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12453), + [anon_sym_BSLASHeqref] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange] = ACTIONS(12453), + [anon_sym_BSLASHCrefrange] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewlabel] = ACTIONS(12453), + [anon_sym_BSLASHnewcommand] = ACTIONS(12453), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12453), + [anon_sym_BSLASHgls] = ACTIONS(12453), + [anon_sym_BSLASHGls] = ACTIONS(12453), + [anon_sym_BSLASHGLS] = ACTIONS(12453), + [anon_sym_BSLASHglspl] = ACTIONS(12453), + [anon_sym_BSLASHGlspl] = ACTIONS(12453), + [anon_sym_BSLASHGLSpl] = ACTIONS(12453), + [anon_sym_BSLASHglsdisp] = ACTIONS(12453), + [anon_sym_BSLASHglslink] = ACTIONS(12453), + [anon_sym_BSLASHglstext] = ACTIONS(12453), + [anon_sym_BSLASHGlstext] = ACTIONS(12453), + [anon_sym_BSLASHGLStext] = ACTIONS(12453), + [anon_sym_BSLASHglsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12453), + [anon_sym_BSLASHglsplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSplural] = ACTIONS(12453), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHglsname] = ACTIONS(12453), + [anon_sym_BSLASHGlsname] = ACTIONS(12453), + [anon_sym_BSLASHGLSname] = ACTIONS(12453), + [anon_sym_BSLASHglssymbol] = ACTIONS(12453), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12453), + [anon_sym_BSLASHglsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12453), + [anon_sym_BSLASHglsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12453), + [anon_sym_BSLASHglsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12453), + [anon_sym_BSLASHglsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12453), + [anon_sym_BSLASHglsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12453), + [anon_sym_BSLASHnewacronym] = ACTIONS(12453), + [anon_sym_BSLASHacrshort] = ACTIONS(12453), + [anon_sym_BSLASHAcrshort] = ACTIONS(12453), + [anon_sym_BSLASHACRshort] = ACTIONS(12453), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12453), + [anon_sym_BSLASHacrlong] = ACTIONS(12453), + [anon_sym_BSLASHAcrlong] = ACTIONS(12453), + [anon_sym_BSLASHACRlong] = ACTIONS(12453), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12453), + [anon_sym_BSLASHacrfull] = ACTIONS(12453), + [anon_sym_BSLASHAcrfull] = ACTIONS(12453), + [anon_sym_BSLASHACRfull] = ACTIONS(12453), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12453), + [anon_sym_BSLASHacs] = ACTIONS(12453), + [anon_sym_BSLASHAcs] = ACTIONS(12453), + [anon_sym_BSLASHacsp] = ACTIONS(12453), + [anon_sym_BSLASHAcsp] = ACTIONS(12453), + [anon_sym_BSLASHacl] = ACTIONS(12453), + [anon_sym_BSLASHAcl] = ACTIONS(12453), + [anon_sym_BSLASHaclp] = ACTIONS(12453), + [anon_sym_BSLASHAclp] = ACTIONS(12453), + [anon_sym_BSLASHacf] = ACTIONS(12453), + [anon_sym_BSLASHAcf] = ACTIONS(12453), + [anon_sym_BSLASHacfp] = ACTIONS(12453), + [anon_sym_BSLASHAcfp] = ACTIONS(12453), + [anon_sym_BSLASHac] = ACTIONS(12453), + [anon_sym_BSLASHAc] = ACTIONS(12453), + [anon_sym_BSLASHacp] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12453), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12453), + [anon_sym_BSLASHcolor] = ACTIONS(12453), + [anon_sym_BSLASHcolorbox] = ACTIONS(12453), + [anon_sym_BSLASHtextcolor] = ACTIONS(12453), + [anon_sym_BSLASHpagecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12453), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12453), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12453), + }, + [901] = { + [sym_generic_command_name] = ACTIONS(12120), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12120), + [aux_sym_chapter_token1] = ACTIONS(12120), + [aux_sym_section_token1] = ACTIONS(12120), + [aux_sym_subsection_token1] = ACTIONS(12120), + [aux_sym_subsubsection_token1] = ACTIONS(12120), + [aux_sym_paragraph_token1] = ACTIONS(12120), + [aux_sym_subparagraph_token1] = ACTIONS(12120), + [anon_sym_BSLASHitem] = ACTIONS(12120), + [anon_sym_LBRACK] = ACTIONS(12118), + [anon_sym_LBRACE] = ACTIONS(12118), + [anon_sym_LPAREN] = ACTIONS(12118), + [anon_sym_COMMA] = ACTIONS(12118), + [anon_sym_EQ] = ACTIONS(12118), + [sym_word] = ACTIONS(12118), + [sym_param] = ACTIONS(12118), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12118), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12118), + [anon_sym_DOLLAR] = ACTIONS(12120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12118), + [anon_sym_BSLASHbegin] = ACTIONS(12120), + [anon_sym_BSLASHcaption] = ACTIONS(12120), + [anon_sym_BSLASHcite] = ACTIONS(12120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCite] = ACTIONS(12120), + [anon_sym_BSLASHnocite] = ACTIONS(12120), + [anon_sym_BSLASHcitet] = ACTIONS(12120), + [anon_sym_BSLASHcitep] = ACTIONS(12120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteauthor] = ACTIONS(12120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitetitle] = ACTIONS(12120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteyear] = ACTIONS(12120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitedate] = ACTIONS(12120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteurl] = ACTIONS(12120), + [anon_sym_BSLASHfullcite] = ACTIONS(12120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12120), + [anon_sym_BSLASHcitealt] = ACTIONS(12120), + [anon_sym_BSLASHcitealp] = ACTIONS(12120), + [anon_sym_BSLASHcitetext] = ACTIONS(12120), + [anon_sym_BSLASHparencite] = ACTIONS(12120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHParencite] = ACTIONS(12120), + [anon_sym_BSLASHfootcite] = ACTIONS(12120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12120), + [anon_sym_BSLASHtextcite] = ACTIONS(12120), + [anon_sym_BSLASHTextcite] = ACTIONS(12120), + [anon_sym_BSLASHsmartcite] = ACTIONS(12120), + [anon_sym_BSLASHSmartcite] = ACTIONS(12120), + [anon_sym_BSLASHsupercite] = ACTIONS(12120), + [anon_sym_BSLASHautocite] = ACTIONS(12120), + [anon_sym_BSLASHAutocite] = ACTIONS(12120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHvolcite] = ACTIONS(12120), + [anon_sym_BSLASHVolcite] = ACTIONS(12120), + [anon_sym_BSLASHpvolcite] = ACTIONS(12120), + [anon_sym_BSLASHPvolcite] = ACTIONS(12120), + [anon_sym_BSLASHfvolcite] = ACTIONS(12120), + [anon_sym_BSLASHftvolcite] = ACTIONS(12120), + [anon_sym_BSLASHsvolcite] = ACTIONS(12120), + [anon_sym_BSLASHSvolcite] = ACTIONS(12120), + [anon_sym_BSLASHtvolcite] = ACTIONS(12120), + [anon_sym_BSLASHTvolcite] = ACTIONS(12120), + [anon_sym_BSLASHavolcite] = ACTIONS(12120), + [anon_sym_BSLASHAvolcite] = ACTIONS(12120), + [anon_sym_BSLASHnotecite] = ACTIONS(12120), + [anon_sym_BSLASHpnotecite] = ACTIONS(12120), + [anon_sym_BSLASHPnotecite] = ACTIONS(12120), + [anon_sym_BSLASHfnotecite] = ACTIONS(12120), + [anon_sym_BSLASHusepackage] = ACTIONS(12120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12120), + [anon_sym_BSLASHinclude] = ACTIONS(12120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12120), + [anon_sym_BSLASHinput] = ACTIONS(12120), + [anon_sym_BSLASHsubfile] = ACTIONS(12120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12120), + [anon_sym_BSLASHbibliography] = ACTIONS(12120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12120), + [anon_sym_BSLASHincludesvg] = ACTIONS(12120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12120), + [anon_sym_BSLASHimport] = ACTIONS(12120), + [anon_sym_BSLASHsubimport] = ACTIONS(12120), + [anon_sym_BSLASHinputfrom] = ACTIONS(12120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12120), + [anon_sym_BSLASHincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHlabel] = ACTIONS(12120), + [anon_sym_BSLASHref] = ACTIONS(12120), + [anon_sym_BSLASHvref] = ACTIONS(12120), + [anon_sym_BSLASHVref] = ACTIONS(12120), + [anon_sym_BSLASHautoref] = ACTIONS(12120), + [anon_sym_BSLASHpageref] = ACTIONS(12120), + [anon_sym_BSLASHcref] = ACTIONS(12120), + [anon_sym_BSLASHCref] = ACTIONS(12120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnameCref] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHlabelcref] = ACTIONS(12120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12120), + [anon_sym_BSLASHeqref] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange] = ACTIONS(12120), + [anon_sym_BSLASHCrefrange] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewlabel] = ACTIONS(12120), + [anon_sym_BSLASHnewcommand] = ACTIONS(12120), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12120), + [anon_sym_BSLASHgls] = ACTIONS(12120), + [anon_sym_BSLASHGls] = ACTIONS(12120), + [anon_sym_BSLASHGLS] = ACTIONS(12120), + [anon_sym_BSLASHglspl] = ACTIONS(12120), + [anon_sym_BSLASHGlspl] = ACTIONS(12120), + [anon_sym_BSLASHGLSpl] = ACTIONS(12120), + [anon_sym_BSLASHglsdisp] = ACTIONS(12120), + [anon_sym_BSLASHglslink] = ACTIONS(12120), + [anon_sym_BSLASHglstext] = ACTIONS(12120), + [anon_sym_BSLASHGlstext] = ACTIONS(12120), + [anon_sym_BSLASHGLStext] = ACTIONS(12120), + [anon_sym_BSLASHglsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12120), + [anon_sym_BSLASHglsplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSplural] = ACTIONS(12120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHglsname] = ACTIONS(12120), + [anon_sym_BSLASHGlsname] = ACTIONS(12120), + [anon_sym_BSLASHGLSname] = ACTIONS(12120), + [anon_sym_BSLASHglssymbol] = ACTIONS(12120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12120), + [anon_sym_BSLASHglsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12120), + [anon_sym_BSLASHglsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12120), + [anon_sym_BSLASHglsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12120), + [anon_sym_BSLASHglsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12120), + [anon_sym_BSLASHglsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12120), + [anon_sym_BSLASHnewacronym] = ACTIONS(12120), + [anon_sym_BSLASHacrshort] = ACTIONS(12120), + [anon_sym_BSLASHAcrshort] = ACTIONS(12120), + [anon_sym_BSLASHACRshort] = ACTIONS(12120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12120), + [anon_sym_BSLASHacrlong] = ACTIONS(12120), + [anon_sym_BSLASHAcrlong] = ACTIONS(12120), + [anon_sym_BSLASHACRlong] = ACTIONS(12120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12120), + [anon_sym_BSLASHacrfull] = ACTIONS(12120), + [anon_sym_BSLASHAcrfull] = ACTIONS(12120), + [anon_sym_BSLASHACRfull] = ACTIONS(12120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12120), + [anon_sym_BSLASHacs] = ACTIONS(12120), + [anon_sym_BSLASHAcs] = ACTIONS(12120), + [anon_sym_BSLASHacsp] = ACTIONS(12120), + [anon_sym_BSLASHAcsp] = ACTIONS(12120), + [anon_sym_BSLASHacl] = ACTIONS(12120), + [anon_sym_BSLASHAcl] = ACTIONS(12120), + [anon_sym_BSLASHaclp] = ACTIONS(12120), + [anon_sym_BSLASHAclp] = ACTIONS(12120), + [anon_sym_BSLASHacf] = ACTIONS(12120), + [anon_sym_BSLASHAcf] = ACTIONS(12120), + [anon_sym_BSLASHacfp] = ACTIONS(12120), + [anon_sym_BSLASHAcfp] = ACTIONS(12120), + [anon_sym_BSLASHac] = ACTIONS(12120), + [anon_sym_BSLASHAc] = ACTIONS(12120), + [anon_sym_BSLASHacp] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12120), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12120), + [anon_sym_BSLASHcolor] = ACTIONS(12120), + [anon_sym_BSLASHcolorbox] = ACTIONS(12120), + [anon_sym_BSLASHtextcolor] = ACTIONS(12120), + [anon_sym_BSLASHpagecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12120), + }, + [902] = { + [sym_brace_group] = STATE(920), + [sym_bracket_group] = STATE(920), + [sym_paren_group] = STATE(920), + [aux_sym_generic_command_repeat1] = STATE(920), + [sym_generic_command_name] = ACTIONS(11998), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(11998), + [aux_sym_subparagraph_token1] = ACTIONS(11998), + [anon_sym_BSLASHitem] = ACTIONS(11998), + [anon_sym_LBRACK] = ACTIONS(12670), + [anon_sym_RBRACK] = ACTIONS(11996), + [anon_sym_LBRACE] = ACTIONS(9783), + [anon_sym_RBRACE] = ACTIONS(11996), + [anon_sym_LPAREN] = ACTIONS(12672), + [anon_sym_COMMA] = ACTIONS(11996), + [anon_sym_EQ] = ACTIONS(11996), + [sym_word] = ACTIONS(11996), + [sym_param] = ACTIONS(11996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11996), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11996), + [anon_sym_DOLLAR] = ACTIONS(11998), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11996), + [anon_sym_BSLASHbegin] = ACTIONS(11998), + [anon_sym_BSLASHcaption] = ACTIONS(11998), + [anon_sym_BSLASHcite] = ACTIONS(11998), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCite] = ACTIONS(11998), + [anon_sym_BSLASHnocite] = ACTIONS(11998), + [anon_sym_BSLASHcitet] = ACTIONS(11998), + [anon_sym_BSLASHcitep] = ACTIONS(11998), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteauthor] = ACTIONS(11998), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11998), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitetitle] = ACTIONS(11998), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteyear] = ACTIONS(11998), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitedate] = ACTIONS(11998), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteurl] = ACTIONS(11998), + [anon_sym_BSLASHfullcite] = ACTIONS(11998), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11998), + [anon_sym_BSLASHcitealt] = ACTIONS(11998), + [anon_sym_BSLASHcitealp] = ACTIONS(11998), + [anon_sym_BSLASHcitetext] = ACTIONS(11998), + [anon_sym_BSLASHparencite] = ACTIONS(11998), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHParencite] = ACTIONS(11998), + [anon_sym_BSLASHfootcite] = ACTIONS(11998), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11998), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11998), + [anon_sym_BSLASHtextcite] = ACTIONS(11998), + [anon_sym_BSLASHTextcite] = ACTIONS(11998), + [anon_sym_BSLASHsmartcite] = ACTIONS(11998), + [anon_sym_BSLASHSmartcite] = ACTIONS(11998), + [anon_sym_BSLASHsupercite] = ACTIONS(11998), + [anon_sym_BSLASHautocite] = ACTIONS(11998), + [anon_sym_BSLASHAutocite] = ACTIONS(11998), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHvolcite] = ACTIONS(11998), + [anon_sym_BSLASHVolcite] = ACTIONS(11998), + [anon_sym_BSLASHpvolcite] = ACTIONS(11998), + [anon_sym_BSLASHPvolcite] = ACTIONS(11998), + [anon_sym_BSLASHfvolcite] = ACTIONS(11998), + [anon_sym_BSLASHftvolcite] = ACTIONS(11998), + [anon_sym_BSLASHsvolcite] = ACTIONS(11998), + [anon_sym_BSLASHSvolcite] = ACTIONS(11998), + [anon_sym_BSLASHtvolcite] = ACTIONS(11998), + [anon_sym_BSLASHTvolcite] = ACTIONS(11998), + [anon_sym_BSLASHavolcite] = ACTIONS(11998), + [anon_sym_BSLASHAvolcite] = ACTIONS(11998), + [anon_sym_BSLASHnotecite] = ACTIONS(11998), + [anon_sym_BSLASHpnotecite] = ACTIONS(11998), + [anon_sym_BSLASHPnotecite] = ACTIONS(11998), + [anon_sym_BSLASHfnotecite] = ACTIONS(11998), + [anon_sym_BSLASHusepackage] = ACTIONS(11998), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11998), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11998), + [anon_sym_BSLASHinclude] = ACTIONS(11998), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11998), + [anon_sym_BSLASHinput] = ACTIONS(11998), + [anon_sym_BSLASHsubfile] = ACTIONS(11998), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11998), + [anon_sym_BSLASHbibliography] = ACTIONS(11998), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11998), + [anon_sym_BSLASHincludesvg] = ACTIONS(11998), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11998), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11998), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11998), + [anon_sym_BSLASHimport] = ACTIONS(11998), + [anon_sym_BSLASHsubimport] = ACTIONS(11998), + [anon_sym_BSLASHinputfrom] = ACTIONS(11998), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11998), + [anon_sym_BSLASHincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHlabel] = ACTIONS(11998), + [anon_sym_BSLASHref] = ACTIONS(11998), + [anon_sym_BSLASHvref] = ACTIONS(11998), + [anon_sym_BSLASHVref] = ACTIONS(11998), + [anon_sym_BSLASHautoref] = ACTIONS(11998), + [anon_sym_BSLASHpageref] = ACTIONS(11998), + [anon_sym_BSLASHcref] = ACTIONS(11998), + [anon_sym_BSLASHCref] = ACTIONS(11998), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnameCref] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHlabelcref] = ACTIONS(11998), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11998), + [anon_sym_BSLASHeqref] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange] = ACTIONS(11998), + [anon_sym_BSLASHCrefrange] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewlabel] = ACTIONS(11998), + [anon_sym_BSLASHnewcommand] = ACTIONS(11998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11998), + [anon_sym_BSLASHgls] = ACTIONS(11998), + [anon_sym_BSLASHGls] = ACTIONS(11998), + [anon_sym_BSLASHGLS] = ACTIONS(11998), + [anon_sym_BSLASHglspl] = ACTIONS(11998), + [anon_sym_BSLASHGlspl] = ACTIONS(11998), + [anon_sym_BSLASHGLSpl] = ACTIONS(11998), + [anon_sym_BSLASHglsdisp] = ACTIONS(11998), + [anon_sym_BSLASHglslink] = ACTIONS(11998), + [anon_sym_BSLASHglstext] = ACTIONS(11998), + [anon_sym_BSLASHGlstext] = ACTIONS(11998), + [anon_sym_BSLASHGLStext] = ACTIONS(11998), + [anon_sym_BSLASHglsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11998), + [anon_sym_BSLASHglsplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSplural] = ACTIONS(11998), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHglsname] = ACTIONS(11998), + [anon_sym_BSLASHGlsname] = ACTIONS(11998), + [anon_sym_BSLASHGLSname] = ACTIONS(11998), + [anon_sym_BSLASHglssymbol] = ACTIONS(11998), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11998), + [anon_sym_BSLASHglsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11998), + [anon_sym_BSLASHglsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11998), + [anon_sym_BSLASHglsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11998), + [anon_sym_BSLASHglsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11998), + [anon_sym_BSLASHglsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11998), + [anon_sym_BSLASHnewacronym] = ACTIONS(11998), + [anon_sym_BSLASHacrshort] = ACTIONS(11998), + [anon_sym_BSLASHAcrshort] = ACTIONS(11998), + [anon_sym_BSLASHACRshort] = ACTIONS(11998), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11998), + [anon_sym_BSLASHacrlong] = ACTIONS(11998), + [anon_sym_BSLASHAcrlong] = ACTIONS(11998), + [anon_sym_BSLASHACRlong] = ACTIONS(11998), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11998), + [anon_sym_BSLASHacrfull] = ACTIONS(11998), + [anon_sym_BSLASHAcrfull] = ACTIONS(11998), + [anon_sym_BSLASHACRfull] = ACTIONS(11998), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11998), + [anon_sym_BSLASHacs] = ACTIONS(11998), + [anon_sym_BSLASHAcs] = ACTIONS(11998), + [anon_sym_BSLASHacsp] = ACTIONS(11998), + [anon_sym_BSLASHAcsp] = ACTIONS(11998), + [anon_sym_BSLASHacl] = ACTIONS(11998), + [anon_sym_BSLASHAcl] = ACTIONS(11998), + [anon_sym_BSLASHaclp] = ACTIONS(11998), + [anon_sym_BSLASHAclp] = ACTIONS(11998), + [anon_sym_BSLASHacf] = ACTIONS(11998), + [anon_sym_BSLASHAcf] = ACTIONS(11998), + [anon_sym_BSLASHacfp] = ACTIONS(11998), + [anon_sym_BSLASHAcfp] = ACTIONS(11998), + [anon_sym_BSLASHac] = ACTIONS(11998), + [anon_sym_BSLASHAc] = ACTIONS(11998), + [anon_sym_BSLASHacp] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11998), + [anon_sym_BSLASHcolor] = ACTIONS(11998), + [anon_sym_BSLASHcolorbox] = ACTIONS(11998), + [anon_sym_BSLASHtextcolor] = ACTIONS(11998), + [anon_sym_BSLASHpagecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11998), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11998), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11998), + }, + [903] = { + [sym_generic_command_name] = ACTIONS(12116), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12116), + [aux_sym_chapter_token1] = ACTIONS(12116), + [aux_sym_section_token1] = ACTIONS(12116), + [aux_sym_subsection_token1] = ACTIONS(12116), + [aux_sym_subsubsection_token1] = ACTIONS(12116), + [aux_sym_paragraph_token1] = ACTIONS(12116), + [aux_sym_subparagraph_token1] = ACTIONS(12116), + [anon_sym_BSLASHitem] = ACTIONS(12116), + [anon_sym_LBRACK] = ACTIONS(12114), + [anon_sym_LBRACE] = ACTIONS(12114), + [anon_sym_LPAREN] = ACTIONS(12114), + [anon_sym_COMMA] = ACTIONS(12114), + [anon_sym_EQ] = ACTIONS(12114), + [sym_word] = ACTIONS(12114), + [sym_param] = ACTIONS(12114), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12114), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12114), + [anon_sym_DOLLAR] = ACTIONS(12116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12114), + [anon_sym_BSLASHbegin] = ACTIONS(12116), + [anon_sym_BSLASHcaption] = ACTIONS(12116), + [anon_sym_BSLASHcite] = ACTIONS(12116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCite] = ACTIONS(12116), + [anon_sym_BSLASHnocite] = ACTIONS(12116), + [anon_sym_BSLASHcitet] = ACTIONS(12116), + [anon_sym_BSLASHcitep] = ACTIONS(12116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteauthor] = ACTIONS(12116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitetitle] = ACTIONS(12116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteyear] = ACTIONS(12116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitedate] = ACTIONS(12116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteurl] = ACTIONS(12116), + [anon_sym_BSLASHfullcite] = ACTIONS(12116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12116), + [anon_sym_BSLASHcitealt] = ACTIONS(12116), + [anon_sym_BSLASHcitealp] = ACTIONS(12116), + [anon_sym_BSLASHcitetext] = ACTIONS(12116), + [anon_sym_BSLASHparencite] = ACTIONS(12116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHParencite] = ACTIONS(12116), + [anon_sym_BSLASHfootcite] = ACTIONS(12116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12116), + [anon_sym_BSLASHtextcite] = ACTIONS(12116), + [anon_sym_BSLASHTextcite] = ACTIONS(12116), + [anon_sym_BSLASHsmartcite] = ACTIONS(12116), + [anon_sym_BSLASHSmartcite] = ACTIONS(12116), + [anon_sym_BSLASHsupercite] = ACTIONS(12116), + [anon_sym_BSLASHautocite] = ACTIONS(12116), + [anon_sym_BSLASHAutocite] = ACTIONS(12116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHvolcite] = ACTIONS(12116), + [anon_sym_BSLASHVolcite] = ACTIONS(12116), + [anon_sym_BSLASHpvolcite] = ACTIONS(12116), + [anon_sym_BSLASHPvolcite] = ACTIONS(12116), + [anon_sym_BSLASHfvolcite] = ACTIONS(12116), + [anon_sym_BSLASHftvolcite] = ACTIONS(12116), + [anon_sym_BSLASHsvolcite] = ACTIONS(12116), + [anon_sym_BSLASHSvolcite] = ACTIONS(12116), + [anon_sym_BSLASHtvolcite] = ACTIONS(12116), + [anon_sym_BSLASHTvolcite] = ACTIONS(12116), + [anon_sym_BSLASHavolcite] = ACTIONS(12116), + [anon_sym_BSLASHAvolcite] = ACTIONS(12116), + [anon_sym_BSLASHnotecite] = ACTIONS(12116), + [anon_sym_BSLASHpnotecite] = ACTIONS(12116), + [anon_sym_BSLASHPnotecite] = ACTIONS(12116), + [anon_sym_BSLASHfnotecite] = ACTIONS(12116), + [anon_sym_BSLASHusepackage] = ACTIONS(12116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12116), + [anon_sym_BSLASHinclude] = ACTIONS(12116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12116), + [anon_sym_BSLASHinput] = ACTIONS(12116), + [anon_sym_BSLASHsubfile] = ACTIONS(12116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12116), + [anon_sym_BSLASHbibliography] = ACTIONS(12116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12116), + [anon_sym_BSLASHincludesvg] = ACTIONS(12116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12116), + [anon_sym_BSLASHimport] = ACTIONS(12116), + [anon_sym_BSLASHsubimport] = ACTIONS(12116), + [anon_sym_BSLASHinputfrom] = ACTIONS(12116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12116), + [anon_sym_BSLASHincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHlabel] = ACTIONS(12116), + [anon_sym_BSLASHref] = ACTIONS(12116), + [anon_sym_BSLASHvref] = ACTIONS(12116), + [anon_sym_BSLASHVref] = ACTIONS(12116), + [anon_sym_BSLASHautoref] = ACTIONS(12116), + [anon_sym_BSLASHpageref] = ACTIONS(12116), + [anon_sym_BSLASHcref] = ACTIONS(12116), + [anon_sym_BSLASHCref] = ACTIONS(12116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnameCref] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHlabelcref] = ACTIONS(12116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12116), + [anon_sym_BSLASHeqref] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange] = ACTIONS(12116), + [anon_sym_BSLASHCrefrange] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewlabel] = ACTIONS(12116), + [anon_sym_BSLASHnewcommand] = ACTIONS(12116), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12116), + [anon_sym_BSLASHgls] = ACTIONS(12116), + [anon_sym_BSLASHGls] = ACTIONS(12116), + [anon_sym_BSLASHGLS] = ACTIONS(12116), + [anon_sym_BSLASHglspl] = ACTIONS(12116), + [anon_sym_BSLASHGlspl] = ACTIONS(12116), + [anon_sym_BSLASHGLSpl] = ACTIONS(12116), + [anon_sym_BSLASHglsdisp] = ACTIONS(12116), + [anon_sym_BSLASHglslink] = ACTIONS(12116), + [anon_sym_BSLASHglstext] = ACTIONS(12116), + [anon_sym_BSLASHGlstext] = ACTIONS(12116), + [anon_sym_BSLASHGLStext] = ACTIONS(12116), + [anon_sym_BSLASHglsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12116), + [anon_sym_BSLASHglsplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSplural] = ACTIONS(12116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHglsname] = ACTIONS(12116), + [anon_sym_BSLASHGlsname] = ACTIONS(12116), + [anon_sym_BSLASHGLSname] = ACTIONS(12116), + [anon_sym_BSLASHglssymbol] = ACTIONS(12116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12116), + [anon_sym_BSLASHglsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12116), + [anon_sym_BSLASHglsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12116), + [anon_sym_BSLASHglsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12116), + [anon_sym_BSLASHglsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12116), + [anon_sym_BSLASHglsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12116), + [anon_sym_BSLASHnewacronym] = ACTIONS(12116), + [anon_sym_BSLASHacrshort] = ACTIONS(12116), + [anon_sym_BSLASHAcrshort] = ACTIONS(12116), + [anon_sym_BSLASHACRshort] = ACTIONS(12116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12116), + [anon_sym_BSLASHacrlong] = ACTIONS(12116), + [anon_sym_BSLASHAcrlong] = ACTIONS(12116), + [anon_sym_BSLASHACRlong] = ACTIONS(12116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12116), + [anon_sym_BSLASHacrfull] = ACTIONS(12116), + [anon_sym_BSLASHAcrfull] = ACTIONS(12116), + [anon_sym_BSLASHACRfull] = ACTIONS(12116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12116), + [anon_sym_BSLASHacs] = ACTIONS(12116), + [anon_sym_BSLASHAcs] = ACTIONS(12116), + [anon_sym_BSLASHacsp] = ACTIONS(12116), + [anon_sym_BSLASHAcsp] = ACTIONS(12116), + [anon_sym_BSLASHacl] = ACTIONS(12116), + [anon_sym_BSLASHAcl] = ACTIONS(12116), + [anon_sym_BSLASHaclp] = ACTIONS(12116), + [anon_sym_BSLASHAclp] = ACTIONS(12116), + [anon_sym_BSLASHacf] = ACTIONS(12116), + [anon_sym_BSLASHAcf] = ACTIONS(12116), + [anon_sym_BSLASHacfp] = ACTIONS(12116), + [anon_sym_BSLASHAcfp] = ACTIONS(12116), + [anon_sym_BSLASHac] = ACTIONS(12116), + [anon_sym_BSLASHAc] = ACTIONS(12116), + [anon_sym_BSLASHacp] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12116), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12116), + [anon_sym_BSLASHcolor] = ACTIONS(12116), + [anon_sym_BSLASHcolorbox] = ACTIONS(12116), + [anon_sym_BSLASHtextcolor] = ACTIONS(12116), + [anon_sym_BSLASHpagecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12116), + }, + [904] = { + [sym_generic_command_name] = ACTIONS(12193), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12193), + [aux_sym_chapter_token1] = ACTIONS(12193), + [aux_sym_section_token1] = ACTIONS(12193), + [aux_sym_subsection_token1] = ACTIONS(12193), + [aux_sym_subsubsection_token1] = ACTIONS(12193), + [aux_sym_paragraph_token1] = ACTIONS(12193), + [aux_sym_subparagraph_token1] = ACTIONS(12193), + [anon_sym_BSLASHitem] = ACTIONS(12193), + [anon_sym_LBRACK] = ACTIONS(12191), + [anon_sym_LBRACE] = ACTIONS(12191), + [anon_sym_LPAREN] = ACTIONS(12191), + [anon_sym_COMMA] = ACTIONS(12191), + [anon_sym_EQ] = ACTIONS(12191), + [sym_word] = ACTIONS(12191), + [sym_param] = ACTIONS(12191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12191), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12191), + [anon_sym_DOLLAR] = ACTIONS(12193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12191), + [anon_sym_BSLASHbegin] = ACTIONS(12193), + [anon_sym_BSLASHcaption] = ACTIONS(12193), + [anon_sym_BSLASHcite] = ACTIONS(12193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCite] = ACTIONS(12193), + [anon_sym_BSLASHnocite] = ACTIONS(12193), + [anon_sym_BSLASHcitet] = ACTIONS(12193), + [anon_sym_BSLASHcitep] = ACTIONS(12193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteauthor] = ACTIONS(12193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitetitle] = ACTIONS(12193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteyear] = ACTIONS(12193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitedate] = ACTIONS(12193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteurl] = ACTIONS(12193), + [anon_sym_BSLASHfullcite] = ACTIONS(12193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12193), + [anon_sym_BSLASHcitealt] = ACTIONS(12193), + [anon_sym_BSLASHcitealp] = ACTIONS(12193), + [anon_sym_BSLASHcitetext] = ACTIONS(12193), + [anon_sym_BSLASHparencite] = ACTIONS(12193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHParencite] = ACTIONS(12193), + [anon_sym_BSLASHfootcite] = ACTIONS(12193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12193), + [anon_sym_BSLASHtextcite] = ACTIONS(12193), + [anon_sym_BSLASHTextcite] = ACTIONS(12193), + [anon_sym_BSLASHsmartcite] = ACTIONS(12193), + [anon_sym_BSLASHSmartcite] = ACTIONS(12193), + [anon_sym_BSLASHsupercite] = ACTIONS(12193), + [anon_sym_BSLASHautocite] = ACTIONS(12193), + [anon_sym_BSLASHAutocite] = ACTIONS(12193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHvolcite] = ACTIONS(12193), + [anon_sym_BSLASHVolcite] = ACTIONS(12193), + [anon_sym_BSLASHpvolcite] = ACTIONS(12193), + [anon_sym_BSLASHPvolcite] = ACTIONS(12193), + [anon_sym_BSLASHfvolcite] = ACTIONS(12193), + [anon_sym_BSLASHftvolcite] = ACTIONS(12193), + [anon_sym_BSLASHsvolcite] = ACTIONS(12193), + [anon_sym_BSLASHSvolcite] = ACTIONS(12193), + [anon_sym_BSLASHtvolcite] = ACTIONS(12193), + [anon_sym_BSLASHTvolcite] = ACTIONS(12193), + [anon_sym_BSLASHavolcite] = ACTIONS(12193), + [anon_sym_BSLASHAvolcite] = ACTIONS(12193), + [anon_sym_BSLASHnotecite] = ACTIONS(12193), + [anon_sym_BSLASHpnotecite] = ACTIONS(12193), + [anon_sym_BSLASHPnotecite] = ACTIONS(12193), + [anon_sym_BSLASHfnotecite] = ACTIONS(12193), + [anon_sym_BSLASHusepackage] = ACTIONS(12193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12193), + [anon_sym_BSLASHinclude] = ACTIONS(12193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12193), + [anon_sym_BSLASHinput] = ACTIONS(12193), + [anon_sym_BSLASHsubfile] = ACTIONS(12193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12193), + [anon_sym_BSLASHbibliography] = ACTIONS(12193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12193), + [anon_sym_BSLASHincludesvg] = ACTIONS(12193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12193), + [anon_sym_BSLASHimport] = ACTIONS(12193), + [anon_sym_BSLASHsubimport] = ACTIONS(12193), + [anon_sym_BSLASHinputfrom] = ACTIONS(12193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12193), + [anon_sym_BSLASHincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHlabel] = ACTIONS(12193), + [anon_sym_BSLASHref] = ACTIONS(12193), + [anon_sym_BSLASHvref] = ACTIONS(12193), + [anon_sym_BSLASHVref] = ACTIONS(12193), + [anon_sym_BSLASHautoref] = ACTIONS(12193), + [anon_sym_BSLASHpageref] = ACTIONS(12193), + [anon_sym_BSLASHcref] = ACTIONS(12193), + [anon_sym_BSLASHCref] = ACTIONS(12193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnameCref] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHlabelcref] = ACTIONS(12193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12193), + [anon_sym_BSLASHeqref] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange] = ACTIONS(12193), + [anon_sym_BSLASHCrefrange] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewlabel] = ACTIONS(12193), + [anon_sym_BSLASHnewcommand] = ACTIONS(12193), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12193), + [anon_sym_BSLASHgls] = ACTIONS(12193), + [anon_sym_BSLASHGls] = ACTIONS(12193), + [anon_sym_BSLASHGLS] = ACTIONS(12193), + [anon_sym_BSLASHglspl] = ACTIONS(12193), + [anon_sym_BSLASHGlspl] = ACTIONS(12193), + [anon_sym_BSLASHGLSpl] = ACTIONS(12193), + [anon_sym_BSLASHglsdisp] = ACTIONS(12193), + [anon_sym_BSLASHglslink] = ACTIONS(12193), + [anon_sym_BSLASHglstext] = ACTIONS(12193), + [anon_sym_BSLASHGlstext] = ACTIONS(12193), + [anon_sym_BSLASHGLStext] = ACTIONS(12193), + [anon_sym_BSLASHglsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12193), + [anon_sym_BSLASHglsplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSplural] = ACTIONS(12193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHglsname] = ACTIONS(12193), + [anon_sym_BSLASHGlsname] = ACTIONS(12193), + [anon_sym_BSLASHGLSname] = ACTIONS(12193), + [anon_sym_BSLASHglssymbol] = ACTIONS(12193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12193), + [anon_sym_BSLASHglsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12193), + [anon_sym_BSLASHglsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12193), + [anon_sym_BSLASHglsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12193), + [anon_sym_BSLASHglsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12193), + [anon_sym_BSLASHglsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12193), + [anon_sym_BSLASHnewacronym] = ACTIONS(12193), + [anon_sym_BSLASHacrshort] = ACTIONS(12193), + [anon_sym_BSLASHAcrshort] = ACTIONS(12193), + [anon_sym_BSLASHACRshort] = ACTIONS(12193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12193), + [anon_sym_BSLASHacrlong] = ACTIONS(12193), + [anon_sym_BSLASHAcrlong] = ACTIONS(12193), + [anon_sym_BSLASHACRlong] = ACTIONS(12193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12193), + [anon_sym_BSLASHacrfull] = ACTIONS(12193), + [anon_sym_BSLASHAcrfull] = ACTIONS(12193), + [anon_sym_BSLASHACRfull] = ACTIONS(12193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12193), + [anon_sym_BSLASHacs] = ACTIONS(12193), + [anon_sym_BSLASHAcs] = ACTIONS(12193), + [anon_sym_BSLASHacsp] = ACTIONS(12193), + [anon_sym_BSLASHAcsp] = ACTIONS(12193), + [anon_sym_BSLASHacl] = ACTIONS(12193), + [anon_sym_BSLASHAcl] = ACTIONS(12193), + [anon_sym_BSLASHaclp] = ACTIONS(12193), + [anon_sym_BSLASHAclp] = ACTIONS(12193), + [anon_sym_BSLASHacf] = ACTIONS(12193), + [anon_sym_BSLASHAcf] = ACTIONS(12193), + [anon_sym_BSLASHacfp] = ACTIONS(12193), + [anon_sym_BSLASHAcfp] = ACTIONS(12193), + [anon_sym_BSLASHac] = ACTIONS(12193), + [anon_sym_BSLASHAc] = ACTIONS(12193), + [anon_sym_BSLASHacp] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12193), + [anon_sym_BSLASHcolor] = ACTIONS(12193), + [anon_sym_BSLASHcolorbox] = ACTIONS(12193), + [anon_sym_BSLASHtextcolor] = ACTIONS(12193), + [anon_sym_BSLASHpagecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12193), + }, + [905] = { + [sym_generic_command_name] = ACTIONS(12201), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12201), + [aux_sym_chapter_token1] = ACTIONS(12201), + [aux_sym_section_token1] = ACTIONS(12201), + [aux_sym_subsection_token1] = ACTIONS(12201), + [aux_sym_subsubsection_token1] = ACTIONS(12201), + [aux_sym_paragraph_token1] = ACTIONS(12201), + [aux_sym_subparagraph_token1] = ACTIONS(12201), + [anon_sym_BSLASHitem] = ACTIONS(12201), + [anon_sym_LBRACK] = ACTIONS(12199), + [anon_sym_LBRACE] = ACTIONS(12199), + [anon_sym_LPAREN] = ACTIONS(12199), + [anon_sym_COMMA] = ACTIONS(12199), + [anon_sym_EQ] = ACTIONS(12199), + [sym_word] = ACTIONS(12199), + [sym_param] = ACTIONS(12199), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12199), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12199), + [anon_sym_DOLLAR] = ACTIONS(12201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12199), + [anon_sym_BSLASHbegin] = ACTIONS(12201), + [anon_sym_BSLASHcaption] = ACTIONS(12201), + [anon_sym_BSLASHcite] = ACTIONS(12201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCite] = ACTIONS(12201), + [anon_sym_BSLASHnocite] = ACTIONS(12201), + [anon_sym_BSLASHcitet] = ACTIONS(12201), + [anon_sym_BSLASHcitep] = ACTIONS(12201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteauthor] = ACTIONS(12201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitetitle] = ACTIONS(12201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteyear] = ACTIONS(12201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitedate] = ACTIONS(12201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteurl] = ACTIONS(12201), + [anon_sym_BSLASHfullcite] = ACTIONS(12201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12201), + [anon_sym_BSLASHcitealt] = ACTIONS(12201), + [anon_sym_BSLASHcitealp] = ACTIONS(12201), + [anon_sym_BSLASHcitetext] = ACTIONS(12201), + [anon_sym_BSLASHparencite] = ACTIONS(12201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHParencite] = ACTIONS(12201), + [anon_sym_BSLASHfootcite] = ACTIONS(12201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12201), + [anon_sym_BSLASHtextcite] = ACTIONS(12201), + [anon_sym_BSLASHTextcite] = ACTIONS(12201), + [anon_sym_BSLASHsmartcite] = ACTIONS(12201), + [anon_sym_BSLASHSmartcite] = ACTIONS(12201), + [anon_sym_BSLASHsupercite] = ACTIONS(12201), + [anon_sym_BSLASHautocite] = ACTIONS(12201), + [anon_sym_BSLASHAutocite] = ACTIONS(12201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHvolcite] = ACTIONS(12201), + [anon_sym_BSLASHVolcite] = ACTIONS(12201), + [anon_sym_BSLASHpvolcite] = ACTIONS(12201), + [anon_sym_BSLASHPvolcite] = ACTIONS(12201), + [anon_sym_BSLASHfvolcite] = ACTIONS(12201), + [anon_sym_BSLASHftvolcite] = ACTIONS(12201), + [anon_sym_BSLASHsvolcite] = ACTIONS(12201), + [anon_sym_BSLASHSvolcite] = ACTIONS(12201), + [anon_sym_BSLASHtvolcite] = ACTIONS(12201), + [anon_sym_BSLASHTvolcite] = ACTIONS(12201), + [anon_sym_BSLASHavolcite] = ACTIONS(12201), + [anon_sym_BSLASHAvolcite] = ACTIONS(12201), + [anon_sym_BSLASHnotecite] = ACTIONS(12201), + [anon_sym_BSLASHpnotecite] = ACTIONS(12201), + [anon_sym_BSLASHPnotecite] = ACTIONS(12201), + [anon_sym_BSLASHfnotecite] = ACTIONS(12201), + [anon_sym_BSLASHusepackage] = ACTIONS(12201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12201), + [anon_sym_BSLASHinclude] = ACTIONS(12201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12201), + [anon_sym_BSLASHinput] = ACTIONS(12201), + [anon_sym_BSLASHsubfile] = ACTIONS(12201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12201), + [anon_sym_BSLASHbibliography] = ACTIONS(12201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12201), + [anon_sym_BSLASHincludesvg] = ACTIONS(12201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12201), + [anon_sym_BSLASHimport] = ACTIONS(12201), + [anon_sym_BSLASHsubimport] = ACTIONS(12201), + [anon_sym_BSLASHinputfrom] = ACTIONS(12201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12201), + [anon_sym_BSLASHincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHlabel] = ACTIONS(12201), + [anon_sym_BSLASHref] = ACTIONS(12201), + [anon_sym_BSLASHvref] = ACTIONS(12201), + [anon_sym_BSLASHVref] = ACTIONS(12201), + [anon_sym_BSLASHautoref] = ACTIONS(12201), + [anon_sym_BSLASHpageref] = ACTIONS(12201), + [anon_sym_BSLASHcref] = ACTIONS(12201), + [anon_sym_BSLASHCref] = ACTIONS(12201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnameCref] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHlabelcref] = ACTIONS(12201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12201), + [anon_sym_BSLASHeqref] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange] = ACTIONS(12201), + [anon_sym_BSLASHCrefrange] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewlabel] = ACTIONS(12201), + [anon_sym_BSLASHnewcommand] = ACTIONS(12201), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12201), + [anon_sym_BSLASHgls] = ACTIONS(12201), + [anon_sym_BSLASHGls] = ACTIONS(12201), + [anon_sym_BSLASHGLS] = ACTIONS(12201), + [anon_sym_BSLASHglspl] = ACTIONS(12201), + [anon_sym_BSLASHGlspl] = ACTIONS(12201), + [anon_sym_BSLASHGLSpl] = ACTIONS(12201), + [anon_sym_BSLASHglsdisp] = ACTIONS(12201), + [anon_sym_BSLASHglslink] = ACTIONS(12201), + [anon_sym_BSLASHglstext] = ACTIONS(12201), + [anon_sym_BSLASHGlstext] = ACTIONS(12201), + [anon_sym_BSLASHGLStext] = ACTIONS(12201), + [anon_sym_BSLASHglsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12201), + [anon_sym_BSLASHglsplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSplural] = ACTIONS(12201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHglsname] = ACTIONS(12201), + [anon_sym_BSLASHGlsname] = ACTIONS(12201), + [anon_sym_BSLASHGLSname] = ACTIONS(12201), + [anon_sym_BSLASHglssymbol] = ACTIONS(12201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12201), + [anon_sym_BSLASHglsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12201), + [anon_sym_BSLASHglsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12201), + [anon_sym_BSLASHglsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12201), + [anon_sym_BSLASHglsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12201), + [anon_sym_BSLASHglsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12201), + [anon_sym_BSLASHnewacronym] = ACTIONS(12201), + [anon_sym_BSLASHacrshort] = ACTIONS(12201), + [anon_sym_BSLASHAcrshort] = ACTIONS(12201), + [anon_sym_BSLASHACRshort] = ACTIONS(12201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12201), + [anon_sym_BSLASHacrlong] = ACTIONS(12201), + [anon_sym_BSLASHAcrlong] = ACTIONS(12201), + [anon_sym_BSLASHACRlong] = ACTIONS(12201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12201), + [anon_sym_BSLASHacrfull] = ACTIONS(12201), + [anon_sym_BSLASHAcrfull] = ACTIONS(12201), + [anon_sym_BSLASHACRfull] = ACTIONS(12201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12201), + [anon_sym_BSLASHacs] = ACTIONS(12201), + [anon_sym_BSLASHAcs] = ACTIONS(12201), + [anon_sym_BSLASHacsp] = ACTIONS(12201), + [anon_sym_BSLASHAcsp] = ACTIONS(12201), + [anon_sym_BSLASHacl] = ACTIONS(12201), + [anon_sym_BSLASHAcl] = ACTIONS(12201), + [anon_sym_BSLASHaclp] = ACTIONS(12201), + [anon_sym_BSLASHAclp] = ACTIONS(12201), + [anon_sym_BSLASHacf] = ACTIONS(12201), + [anon_sym_BSLASHAcf] = ACTIONS(12201), + [anon_sym_BSLASHacfp] = ACTIONS(12201), + [anon_sym_BSLASHAcfp] = ACTIONS(12201), + [anon_sym_BSLASHac] = ACTIONS(12201), + [anon_sym_BSLASHAc] = ACTIONS(12201), + [anon_sym_BSLASHacp] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12201), + [anon_sym_BSLASHcolor] = ACTIONS(12201), + [anon_sym_BSLASHcolorbox] = ACTIONS(12201), + [anon_sym_BSLASHtextcolor] = ACTIONS(12201), + [anon_sym_BSLASHpagecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12201), + }, + [906] = { + [sym_generic_command_name] = ACTIONS(12205), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12205), + [aux_sym_chapter_token1] = ACTIONS(12205), + [aux_sym_section_token1] = ACTIONS(12205), + [aux_sym_subsection_token1] = ACTIONS(12205), + [aux_sym_subsubsection_token1] = ACTIONS(12205), + [aux_sym_paragraph_token1] = ACTIONS(12205), + [aux_sym_subparagraph_token1] = ACTIONS(12205), + [anon_sym_BSLASHitem] = ACTIONS(12205), + [anon_sym_LBRACK] = ACTIONS(12203), + [anon_sym_LBRACE] = ACTIONS(12203), + [anon_sym_LPAREN] = ACTIONS(12203), + [anon_sym_COMMA] = ACTIONS(12203), + [anon_sym_EQ] = ACTIONS(12203), + [sym_word] = ACTIONS(12203), + [sym_param] = ACTIONS(12203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12203), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12203), + [anon_sym_DOLLAR] = ACTIONS(12205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12203), + [anon_sym_BSLASHbegin] = ACTIONS(12205), + [anon_sym_BSLASHcaption] = ACTIONS(12205), + [anon_sym_BSLASHcite] = ACTIONS(12205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCite] = ACTIONS(12205), + [anon_sym_BSLASHnocite] = ACTIONS(12205), + [anon_sym_BSLASHcitet] = ACTIONS(12205), + [anon_sym_BSLASHcitep] = ACTIONS(12205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteauthor] = ACTIONS(12205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitetitle] = ACTIONS(12205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteyear] = ACTIONS(12205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitedate] = ACTIONS(12205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteurl] = ACTIONS(12205), + [anon_sym_BSLASHfullcite] = ACTIONS(12205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12205), + [anon_sym_BSLASHcitealt] = ACTIONS(12205), + [anon_sym_BSLASHcitealp] = ACTIONS(12205), + [anon_sym_BSLASHcitetext] = ACTIONS(12205), + [anon_sym_BSLASHparencite] = ACTIONS(12205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHParencite] = ACTIONS(12205), + [anon_sym_BSLASHfootcite] = ACTIONS(12205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12205), + [anon_sym_BSLASHtextcite] = ACTIONS(12205), + [anon_sym_BSLASHTextcite] = ACTIONS(12205), + [anon_sym_BSLASHsmartcite] = ACTIONS(12205), + [anon_sym_BSLASHSmartcite] = ACTIONS(12205), + [anon_sym_BSLASHsupercite] = ACTIONS(12205), + [anon_sym_BSLASHautocite] = ACTIONS(12205), + [anon_sym_BSLASHAutocite] = ACTIONS(12205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHvolcite] = ACTIONS(12205), + [anon_sym_BSLASHVolcite] = ACTIONS(12205), + [anon_sym_BSLASHpvolcite] = ACTIONS(12205), + [anon_sym_BSLASHPvolcite] = ACTIONS(12205), + [anon_sym_BSLASHfvolcite] = ACTIONS(12205), + [anon_sym_BSLASHftvolcite] = ACTIONS(12205), + [anon_sym_BSLASHsvolcite] = ACTIONS(12205), + [anon_sym_BSLASHSvolcite] = ACTIONS(12205), + [anon_sym_BSLASHtvolcite] = ACTIONS(12205), + [anon_sym_BSLASHTvolcite] = ACTIONS(12205), + [anon_sym_BSLASHavolcite] = ACTIONS(12205), + [anon_sym_BSLASHAvolcite] = ACTIONS(12205), + [anon_sym_BSLASHnotecite] = ACTIONS(12205), + [anon_sym_BSLASHpnotecite] = ACTIONS(12205), + [anon_sym_BSLASHPnotecite] = ACTIONS(12205), + [anon_sym_BSLASHfnotecite] = ACTIONS(12205), + [anon_sym_BSLASHusepackage] = ACTIONS(12205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12205), + [anon_sym_BSLASHinclude] = ACTIONS(12205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12205), + [anon_sym_BSLASHinput] = ACTIONS(12205), + [anon_sym_BSLASHsubfile] = ACTIONS(12205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12205), + [anon_sym_BSLASHbibliography] = ACTIONS(12205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12205), + [anon_sym_BSLASHincludesvg] = ACTIONS(12205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12205), + [anon_sym_BSLASHimport] = ACTIONS(12205), + [anon_sym_BSLASHsubimport] = ACTIONS(12205), + [anon_sym_BSLASHinputfrom] = ACTIONS(12205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12205), + [anon_sym_BSLASHincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHlabel] = ACTIONS(12205), + [anon_sym_BSLASHref] = ACTIONS(12205), + [anon_sym_BSLASHvref] = ACTIONS(12205), + [anon_sym_BSLASHVref] = ACTIONS(12205), + [anon_sym_BSLASHautoref] = ACTIONS(12205), + [anon_sym_BSLASHpageref] = ACTIONS(12205), + [anon_sym_BSLASHcref] = ACTIONS(12205), + [anon_sym_BSLASHCref] = ACTIONS(12205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnameCref] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHlabelcref] = ACTIONS(12205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12205), + [anon_sym_BSLASHeqref] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange] = ACTIONS(12205), + [anon_sym_BSLASHCrefrange] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewlabel] = ACTIONS(12205), + [anon_sym_BSLASHnewcommand] = ACTIONS(12205), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12205), + [anon_sym_BSLASHgls] = ACTIONS(12205), + [anon_sym_BSLASHGls] = ACTIONS(12205), + [anon_sym_BSLASHGLS] = ACTIONS(12205), + [anon_sym_BSLASHglspl] = ACTIONS(12205), + [anon_sym_BSLASHGlspl] = ACTIONS(12205), + [anon_sym_BSLASHGLSpl] = ACTIONS(12205), + [anon_sym_BSLASHglsdisp] = ACTIONS(12205), + [anon_sym_BSLASHglslink] = ACTIONS(12205), + [anon_sym_BSLASHglstext] = ACTIONS(12205), + [anon_sym_BSLASHGlstext] = ACTIONS(12205), + [anon_sym_BSLASHGLStext] = ACTIONS(12205), + [anon_sym_BSLASHglsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12205), + [anon_sym_BSLASHglsplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSplural] = ACTIONS(12205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHglsname] = ACTIONS(12205), + [anon_sym_BSLASHGlsname] = ACTIONS(12205), + [anon_sym_BSLASHGLSname] = ACTIONS(12205), + [anon_sym_BSLASHglssymbol] = ACTIONS(12205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12205), + [anon_sym_BSLASHglsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12205), + [anon_sym_BSLASHglsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12205), + [anon_sym_BSLASHglsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12205), + [anon_sym_BSLASHglsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12205), + [anon_sym_BSLASHglsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12205), + [anon_sym_BSLASHnewacronym] = ACTIONS(12205), + [anon_sym_BSLASHacrshort] = ACTIONS(12205), + [anon_sym_BSLASHAcrshort] = ACTIONS(12205), + [anon_sym_BSLASHACRshort] = ACTIONS(12205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12205), + [anon_sym_BSLASHacrlong] = ACTIONS(12205), + [anon_sym_BSLASHAcrlong] = ACTIONS(12205), + [anon_sym_BSLASHACRlong] = ACTIONS(12205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12205), + [anon_sym_BSLASHacrfull] = ACTIONS(12205), + [anon_sym_BSLASHAcrfull] = ACTIONS(12205), + [anon_sym_BSLASHACRfull] = ACTIONS(12205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12205), + [anon_sym_BSLASHacs] = ACTIONS(12205), + [anon_sym_BSLASHAcs] = ACTIONS(12205), + [anon_sym_BSLASHacsp] = ACTIONS(12205), + [anon_sym_BSLASHAcsp] = ACTIONS(12205), + [anon_sym_BSLASHacl] = ACTIONS(12205), + [anon_sym_BSLASHAcl] = ACTIONS(12205), + [anon_sym_BSLASHaclp] = ACTIONS(12205), + [anon_sym_BSLASHAclp] = ACTIONS(12205), + [anon_sym_BSLASHacf] = ACTIONS(12205), + [anon_sym_BSLASHAcf] = ACTIONS(12205), + [anon_sym_BSLASHacfp] = ACTIONS(12205), + [anon_sym_BSLASHAcfp] = ACTIONS(12205), + [anon_sym_BSLASHac] = ACTIONS(12205), + [anon_sym_BSLASHAc] = ACTIONS(12205), + [anon_sym_BSLASHacp] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12205), + [anon_sym_BSLASHcolor] = ACTIONS(12205), + [anon_sym_BSLASHcolorbox] = ACTIONS(12205), + [anon_sym_BSLASHtextcolor] = ACTIONS(12205), + [anon_sym_BSLASHpagecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12205), + }, + [907] = { + [sym_generic_command_name] = ACTIONS(12213), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12213), + [aux_sym_chapter_token1] = ACTIONS(12213), + [aux_sym_section_token1] = ACTIONS(12213), + [aux_sym_subsection_token1] = ACTIONS(12213), + [aux_sym_subsubsection_token1] = ACTIONS(12213), + [aux_sym_paragraph_token1] = ACTIONS(12213), + [aux_sym_subparagraph_token1] = ACTIONS(12213), + [anon_sym_BSLASHitem] = ACTIONS(12213), + [anon_sym_LBRACK] = ACTIONS(12211), + [anon_sym_LBRACE] = ACTIONS(12211), + [anon_sym_LPAREN] = ACTIONS(12211), + [anon_sym_COMMA] = ACTIONS(12211), + [anon_sym_EQ] = ACTIONS(12211), + [sym_word] = ACTIONS(12211), + [sym_param] = ACTIONS(12211), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12211), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12211), + [anon_sym_DOLLAR] = ACTIONS(12213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12211), + [anon_sym_BSLASHbegin] = ACTIONS(12213), + [anon_sym_BSLASHcaption] = ACTIONS(12213), + [anon_sym_BSLASHcite] = ACTIONS(12213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCite] = ACTIONS(12213), + [anon_sym_BSLASHnocite] = ACTIONS(12213), + [anon_sym_BSLASHcitet] = ACTIONS(12213), + [anon_sym_BSLASHcitep] = ACTIONS(12213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteauthor] = ACTIONS(12213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitetitle] = ACTIONS(12213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteyear] = ACTIONS(12213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitedate] = ACTIONS(12213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteurl] = ACTIONS(12213), + [anon_sym_BSLASHfullcite] = ACTIONS(12213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12213), + [anon_sym_BSLASHcitealt] = ACTIONS(12213), + [anon_sym_BSLASHcitealp] = ACTIONS(12213), + [anon_sym_BSLASHcitetext] = ACTIONS(12213), + [anon_sym_BSLASHparencite] = ACTIONS(12213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHParencite] = ACTIONS(12213), + [anon_sym_BSLASHfootcite] = ACTIONS(12213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12213), + [anon_sym_BSLASHtextcite] = ACTIONS(12213), + [anon_sym_BSLASHTextcite] = ACTIONS(12213), + [anon_sym_BSLASHsmartcite] = ACTIONS(12213), + [anon_sym_BSLASHSmartcite] = ACTIONS(12213), + [anon_sym_BSLASHsupercite] = ACTIONS(12213), + [anon_sym_BSLASHautocite] = ACTIONS(12213), + [anon_sym_BSLASHAutocite] = ACTIONS(12213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHvolcite] = ACTIONS(12213), + [anon_sym_BSLASHVolcite] = ACTIONS(12213), + [anon_sym_BSLASHpvolcite] = ACTIONS(12213), + [anon_sym_BSLASHPvolcite] = ACTIONS(12213), + [anon_sym_BSLASHfvolcite] = ACTIONS(12213), + [anon_sym_BSLASHftvolcite] = ACTIONS(12213), + [anon_sym_BSLASHsvolcite] = ACTIONS(12213), + [anon_sym_BSLASHSvolcite] = ACTIONS(12213), + [anon_sym_BSLASHtvolcite] = ACTIONS(12213), + [anon_sym_BSLASHTvolcite] = ACTIONS(12213), + [anon_sym_BSLASHavolcite] = ACTIONS(12213), + [anon_sym_BSLASHAvolcite] = ACTIONS(12213), + [anon_sym_BSLASHnotecite] = ACTIONS(12213), + [anon_sym_BSLASHpnotecite] = ACTIONS(12213), + [anon_sym_BSLASHPnotecite] = ACTIONS(12213), + [anon_sym_BSLASHfnotecite] = ACTIONS(12213), + [anon_sym_BSLASHusepackage] = ACTIONS(12213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12213), + [anon_sym_BSLASHinclude] = ACTIONS(12213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12213), + [anon_sym_BSLASHinput] = ACTIONS(12213), + [anon_sym_BSLASHsubfile] = ACTIONS(12213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12213), + [anon_sym_BSLASHbibliography] = ACTIONS(12213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12213), + [anon_sym_BSLASHincludesvg] = ACTIONS(12213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12213), + [anon_sym_BSLASHimport] = ACTIONS(12213), + [anon_sym_BSLASHsubimport] = ACTIONS(12213), + [anon_sym_BSLASHinputfrom] = ACTIONS(12213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12213), + [anon_sym_BSLASHincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHlabel] = ACTIONS(12213), + [anon_sym_BSLASHref] = ACTIONS(12213), + [anon_sym_BSLASHvref] = ACTIONS(12213), + [anon_sym_BSLASHVref] = ACTIONS(12213), + [anon_sym_BSLASHautoref] = ACTIONS(12213), + [anon_sym_BSLASHpageref] = ACTIONS(12213), + [anon_sym_BSLASHcref] = ACTIONS(12213), + [anon_sym_BSLASHCref] = ACTIONS(12213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnameCref] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHlabelcref] = ACTIONS(12213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12213), + [anon_sym_BSLASHeqref] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange] = ACTIONS(12213), + [anon_sym_BSLASHCrefrange] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewlabel] = ACTIONS(12213), + [anon_sym_BSLASHnewcommand] = ACTIONS(12213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12213), + [anon_sym_BSLASHgls] = ACTIONS(12213), + [anon_sym_BSLASHGls] = ACTIONS(12213), + [anon_sym_BSLASHGLS] = ACTIONS(12213), + [anon_sym_BSLASHglspl] = ACTIONS(12213), + [anon_sym_BSLASHGlspl] = ACTIONS(12213), + [anon_sym_BSLASHGLSpl] = ACTIONS(12213), + [anon_sym_BSLASHglsdisp] = ACTIONS(12213), + [anon_sym_BSLASHglslink] = ACTIONS(12213), + [anon_sym_BSLASHglstext] = ACTIONS(12213), + [anon_sym_BSLASHGlstext] = ACTIONS(12213), + [anon_sym_BSLASHGLStext] = ACTIONS(12213), + [anon_sym_BSLASHglsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12213), + [anon_sym_BSLASHglsplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSplural] = ACTIONS(12213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHglsname] = ACTIONS(12213), + [anon_sym_BSLASHGlsname] = ACTIONS(12213), + [anon_sym_BSLASHGLSname] = ACTIONS(12213), + [anon_sym_BSLASHglssymbol] = ACTIONS(12213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12213), + [anon_sym_BSLASHglsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12213), + [anon_sym_BSLASHglsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12213), + [anon_sym_BSLASHglsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12213), + [anon_sym_BSLASHglsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12213), + [anon_sym_BSLASHglsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12213), + [anon_sym_BSLASHnewacronym] = ACTIONS(12213), + [anon_sym_BSLASHacrshort] = ACTIONS(12213), + [anon_sym_BSLASHAcrshort] = ACTIONS(12213), + [anon_sym_BSLASHACRshort] = ACTIONS(12213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12213), + [anon_sym_BSLASHacrlong] = ACTIONS(12213), + [anon_sym_BSLASHAcrlong] = ACTIONS(12213), + [anon_sym_BSLASHACRlong] = ACTIONS(12213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12213), + [anon_sym_BSLASHacrfull] = ACTIONS(12213), + [anon_sym_BSLASHAcrfull] = ACTIONS(12213), + [anon_sym_BSLASHACRfull] = ACTIONS(12213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12213), + [anon_sym_BSLASHacs] = ACTIONS(12213), + [anon_sym_BSLASHAcs] = ACTIONS(12213), + [anon_sym_BSLASHacsp] = ACTIONS(12213), + [anon_sym_BSLASHAcsp] = ACTIONS(12213), + [anon_sym_BSLASHacl] = ACTIONS(12213), + [anon_sym_BSLASHAcl] = ACTIONS(12213), + [anon_sym_BSLASHaclp] = ACTIONS(12213), + [anon_sym_BSLASHAclp] = ACTIONS(12213), + [anon_sym_BSLASHacf] = ACTIONS(12213), + [anon_sym_BSLASHAcf] = ACTIONS(12213), + [anon_sym_BSLASHacfp] = ACTIONS(12213), + [anon_sym_BSLASHAcfp] = ACTIONS(12213), + [anon_sym_BSLASHac] = ACTIONS(12213), + [anon_sym_BSLASHAc] = ACTIONS(12213), + [anon_sym_BSLASHacp] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12213), + [anon_sym_BSLASHcolor] = ACTIONS(12213), + [anon_sym_BSLASHcolorbox] = ACTIONS(12213), + [anon_sym_BSLASHtextcolor] = ACTIONS(12213), + [anon_sym_BSLASHpagecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12213), + }, + [908] = { + [sym_generic_command_name] = ACTIONS(12217), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12217), + [aux_sym_chapter_token1] = ACTIONS(12217), + [aux_sym_section_token1] = ACTIONS(12217), + [aux_sym_subsection_token1] = ACTIONS(12217), + [aux_sym_subsubsection_token1] = ACTIONS(12217), + [aux_sym_paragraph_token1] = ACTIONS(12217), + [aux_sym_subparagraph_token1] = ACTIONS(12217), + [anon_sym_BSLASHitem] = ACTIONS(12217), + [anon_sym_LBRACK] = ACTIONS(12215), + [anon_sym_LBRACE] = ACTIONS(12215), + [anon_sym_LPAREN] = ACTIONS(12215), + [anon_sym_COMMA] = ACTIONS(12215), + [anon_sym_EQ] = ACTIONS(12215), + [sym_word] = ACTIONS(12215), + [sym_param] = ACTIONS(12215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12215), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12215), + [anon_sym_DOLLAR] = ACTIONS(12217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12215), + [anon_sym_BSLASHbegin] = ACTIONS(12217), + [anon_sym_BSLASHcaption] = ACTIONS(12217), + [anon_sym_BSLASHcite] = ACTIONS(12217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCite] = ACTIONS(12217), + [anon_sym_BSLASHnocite] = ACTIONS(12217), + [anon_sym_BSLASHcitet] = ACTIONS(12217), + [anon_sym_BSLASHcitep] = ACTIONS(12217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteauthor] = ACTIONS(12217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitetitle] = ACTIONS(12217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteyear] = ACTIONS(12217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitedate] = ACTIONS(12217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteurl] = ACTIONS(12217), + [anon_sym_BSLASHfullcite] = ACTIONS(12217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12217), + [anon_sym_BSLASHcitealt] = ACTIONS(12217), + [anon_sym_BSLASHcitealp] = ACTIONS(12217), + [anon_sym_BSLASHcitetext] = ACTIONS(12217), + [anon_sym_BSLASHparencite] = ACTIONS(12217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHParencite] = ACTIONS(12217), + [anon_sym_BSLASHfootcite] = ACTIONS(12217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12217), + [anon_sym_BSLASHtextcite] = ACTIONS(12217), + [anon_sym_BSLASHTextcite] = ACTIONS(12217), + [anon_sym_BSLASHsmartcite] = ACTIONS(12217), + [anon_sym_BSLASHSmartcite] = ACTIONS(12217), + [anon_sym_BSLASHsupercite] = ACTIONS(12217), + [anon_sym_BSLASHautocite] = ACTIONS(12217), + [anon_sym_BSLASHAutocite] = ACTIONS(12217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHvolcite] = ACTIONS(12217), + [anon_sym_BSLASHVolcite] = ACTIONS(12217), + [anon_sym_BSLASHpvolcite] = ACTIONS(12217), + [anon_sym_BSLASHPvolcite] = ACTIONS(12217), + [anon_sym_BSLASHfvolcite] = ACTIONS(12217), + [anon_sym_BSLASHftvolcite] = ACTIONS(12217), + [anon_sym_BSLASHsvolcite] = ACTIONS(12217), + [anon_sym_BSLASHSvolcite] = ACTIONS(12217), + [anon_sym_BSLASHtvolcite] = ACTIONS(12217), + [anon_sym_BSLASHTvolcite] = ACTIONS(12217), + [anon_sym_BSLASHavolcite] = ACTIONS(12217), + [anon_sym_BSLASHAvolcite] = ACTIONS(12217), + [anon_sym_BSLASHnotecite] = ACTIONS(12217), + [anon_sym_BSLASHpnotecite] = ACTIONS(12217), + [anon_sym_BSLASHPnotecite] = ACTIONS(12217), + [anon_sym_BSLASHfnotecite] = ACTIONS(12217), + [anon_sym_BSLASHusepackage] = ACTIONS(12217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12217), + [anon_sym_BSLASHinclude] = ACTIONS(12217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12217), + [anon_sym_BSLASHinput] = ACTIONS(12217), + [anon_sym_BSLASHsubfile] = ACTIONS(12217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12217), + [anon_sym_BSLASHbibliography] = ACTIONS(12217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12217), + [anon_sym_BSLASHincludesvg] = ACTIONS(12217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12217), + [anon_sym_BSLASHimport] = ACTIONS(12217), + [anon_sym_BSLASHsubimport] = ACTIONS(12217), + [anon_sym_BSLASHinputfrom] = ACTIONS(12217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12217), + [anon_sym_BSLASHincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHlabel] = ACTIONS(12217), + [anon_sym_BSLASHref] = ACTIONS(12217), + [anon_sym_BSLASHvref] = ACTIONS(12217), + [anon_sym_BSLASHVref] = ACTIONS(12217), + [anon_sym_BSLASHautoref] = ACTIONS(12217), + [anon_sym_BSLASHpageref] = ACTIONS(12217), + [anon_sym_BSLASHcref] = ACTIONS(12217), + [anon_sym_BSLASHCref] = ACTIONS(12217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnameCref] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHlabelcref] = ACTIONS(12217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12217), + [anon_sym_BSLASHeqref] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange] = ACTIONS(12217), + [anon_sym_BSLASHCrefrange] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewlabel] = ACTIONS(12217), + [anon_sym_BSLASHnewcommand] = ACTIONS(12217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12217), + [anon_sym_BSLASHgls] = ACTIONS(12217), + [anon_sym_BSLASHGls] = ACTIONS(12217), + [anon_sym_BSLASHGLS] = ACTIONS(12217), + [anon_sym_BSLASHglspl] = ACTIONS(12217), + [anon_sym_BSLASHGlspl] = ACTIONS(12217), + [anon_sym_BSLASHGLSpl] = ACTIONS(12217), + [anon_sym_BSLASHglsdisp] = ACTIONS(12217), + [anon_sym_BSLASHglslink] = ACTIONS(12217), + [anon_sym_BSLASHglstext] = ACTIONS(12217), + [anon_sym_BSLASHGlstext] = ACTIONS(12217), + [anon_sym_BSLASHGLStext] = ACTIONS(12217), + [anon_sym_BSLASHglsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12217), + [anon_sym_BSLASHglsplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSplural] = ACTIONS(12217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHglsname] = ACTIONS(12217), + [anon_sym_BSLASHGlsname] = ACTIONS(12217), + [anon_sym_BSLASHGLSname] = ACTIONS(12217), + [anon_sym_BSLASHglssymbol] = ACTIONS(12217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12217), + [anon_sym_BSLASHglsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12217), + [anon_sym_BSLASHglsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12217), + [anon_sym_BSLASHglsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12217), + [anon_sym_BSLASHglsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12217), + [anon_sym_BSLASHglsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12217), + [anon_sym_BSLASHnewacronym] = ACTIONS(12217), + [anon_sym_BSLASHacrshort] = ACTIONS(12217), + [anon_sym_BSLASHAcrshort] = ACTIONS(12217), + [anon_sym_BSLASHACRshort] = ACTIONS(12217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12217), + [anon_sym_BSLASHacrlong] = ACTIONS(12217), + [anon_sym_BSLASHAcrlong] = ACTIONS(12217), + [anon_sym_BSLASHACRlong] = ACTIONS(12217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12217), + [anon_sym_BSLASHacrfull] = ACTIONS(12217), + [anon_sym_BSLASHAcrfull] = ACTIONS(12217), + [anon_sym_BSLASHACRfull] = ACTIONS(12217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12217), + [anon_sym_BSLASHacs] = ACTIONS(12217), + [anon_sym_BSLASHAcs] = ACTIONS(12217), + [anon_sym_BSLASHacsp] = ACTIONS(12217), + [anon_sym_BSLASHAcsp] = ACTIONS(12217), + [anon_sym_BSLASHacl] = ACTIONS(12217), + [anon_sym_BSLASHAcl] = ACTIONS(12217), + [anon_sym_BSLASHaclp] = ACTIONS(12217), + [anon_sym_BSLASHAclp] = ACTIONS(12217), + [anon_sym_BSLASHacf] = ACTIONS(12217), + [anon_sym_BSLASHAcf] = ACTIONS(12217), + [anon_sym_BSLASHacfp] = ACTIONS(12217), + [anon_sym_BSLASHAcfp] = ACTIONS(12217), + [anon_sym_BSLASHac] = ACTIONS(12217), + [anon_sym_BSLASHAc] = ACTIONS(12217), + [anon_sym_BSLASHacp] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12217), + [anon_sym_BSLASHcolor] = ACTIONS(12217), + [anon_sym_BSLASHcolorbox] = ACTIONS(12217), + [anon_sym_BSLASHtextcolor] = ACTIONS(12217), + [anon_sym_BSLASHpagecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12217), + }, + [909] = { + [sym_generic_command_name] = ACTIONS(12221), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12221), + [aux_sym_chapter_token1] = ACTIONS(12221), + [aux_sym_section_token1] = ACTIONS(12221), + [aux_sym_subsection_token1] = ACTIONS(12221), + [aux_sym_subsubsection_token1] = ACTIONS(12221), + [aux_sym_paragraph_token1] = ACTIONS(12221), + [aux_sym_subparagraph_token1] = ACTIONS(12221), + [anon_sym_BSLASHitem] = ACTIONS(12221), + [anon_sym_LBRACK] = ACTIONS(12219), + [anon_sym_LBRACE] = ACTIONS(12674), + [anon_sym_LPAREN] = ACTIONS(12219), + [anon_sym_COMMA] = ACTIONS(12219), + [anon_sym_EQ] = ACTIONS(12219), + [sym_word] = ACTIONS(12219), + [sym_param] = ACTIONS(12219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12219), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12219), + [anon_sym_DOLLAR] = ACTIONS(12221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12219), + [anon_sym_BSLASHbegin] = ACTIONS(12221), + [anon_sym_BSLASHcaption] = ACTIONS(12221), + [anon_sym_BSLASHcite] = ACTIONS(12221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCite] = ACTIONS(12221), + [anon_sym_BSLASHnocite] = ACTIONS(12221), + [anon_sym_BSLASHcitet] = ACTIONS(12221), + [anon_sym_BSLASHcitep] = ACTIONS(12221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteauthor] = ACTIONS(12221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitetitle] = ACTIONS(12221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteyear] = ACTIONS(12221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitedate] = ACTIONS(12221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteurl] = ACTIONS(12221), + [anon_sym_BSLASHfullcite] = ACTIONS(12221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12221), + [anon_sym_BSLASHcitealt] = ACTIONS(12221), + [anon_sym_BSLASHcitealp] = ACTIONS(12221), + [anon_sym_BSLASHcitetext] = ACTIONS(12221), + [anon_sym_BSLASHparencite] = ACTIONS(12221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHParencite] = ACTIONS(12221), + [anon_sym_BSLASHfootcite] = ACTIONS(12221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12221), + [anon_sym_BSLASHtextcite] = ACTIONS(12221), + [anon_sym_BSLASHTextcite] = ACTIONS(12221), + [anon_sym_BSLASHsmartcite] = ACTIONS(12221), + [anon_sym_BSLASHSmartcite] = ACTIONS(12221), + [anon_sym_BSLASHsupercite] = ACTIONS(12221), + [anon_sym_BSLASHautocite] = ACTIONS(12221), + [anon_sym_BSLASHAutocite] = ACTIONS(12221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHvolcite] = ACTIONS(12221), + [anon_sym_BSLASHVolcite] = ACTIONS(12221), + [anon_sym_BSLASHpvolcite] = ACTIONS(12221), + [anon_sym_BSLASHPvolcite] = ACTIONS(12221), + [anon_sym_BSLASHfvolcite] = ACTIONS(12221), + [anon_sym_BSLASHftvolcite] = ACTIONS(12221), + [anon_sym_BSLASHsvolcite] = ACTIONS(12221), + [anon_sym_BSLASHSvolcite] = ACTIONS(12221), + [anon_sym_BSLASHtvolcite] = ACTIONS(12221), + [anon_sym_BSLASHTvolcite] = ACTIONS(12221), + [anon_sym_BSLASHavolcite] = ACTIONS(12221), + [anon_sym_BSLASHAvolcite] = ACTIONS(12221), + [anon_sym_BSLASHnotecite] = ACTIONS(12221), + [anon_sym_BSLASHpnotecite] = ACTIONS(12221), + [anon_sym_BSLASHPnotecite] = ACTIONS(12221), + [anon_sym_BSLASHfnotecite] = ACTIONS(12221), + [anon_sym_BSLASHusepackage] = ACTIONS(12221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12221), + [anon_sym_BSLASHinclude] = ACTIONS(12221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12221), + [anon_sym_BSLASHinput] = ACTIONS(12221), + [anon_sym_BSLASHsubfile] = ACTIONS(12221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12221), + [anon_sym_BSLASHbibliography] = ACTIONS(12221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12221), + [anon_sym_BSLASHincludesvg] = ACTIONS(12221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12221), + [anon_sym_BSLASHimport] = ACTIONS(12221), + [anon_sym_BSLASHsubimport] = ACTIONS(12221), + [anon_sym_BSLASHinputfrom] = ACTIONS(12221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12221), + [anon_sym_BSLASHincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHlabel] = ACTIONS(12221), + [anon_sym_BSLASHref] = ACTIONS(12221), + [anon_sym_BSLASHvref] = ACTIONS(12221), + [anon_sym_BSLASHVref] = ACTIONS(12221), + [anon_sym_BSLASHautoref] = ACTIONS(12221), + [anon_sym_BSLASHpageref] = ACTIONS(12221), + [anon_sym_BSLASHcref] = ACTIONS(12221), + [anon_sym_BSLASHCref] = ACTIONS(12221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnameCref] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHlabelcref] = ACTIONS(12221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12221), + [anon_sym_BSLASHeqref] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange] = ACTIONS(12221), + [anon_sym_BSLASHCrefrange] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewlabel] = ACTIONS(12221), + [anon_sym_BSLASHnewcommand] = ACTIONS(12221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12221), + [anon_sym_BSLASHgls] = ACTIONS(12221), + [anon_sym_BSLASHGls] = ACTIONS(12221), + [anon_sym_BSLASHGLS] = ACTIONS(12221), + [anon_sym_BSLASHglspl] = ACTIONS(12221), + [anon_sym_BSLASHGlspl] = ACTIONS(12221), + [anon_sym_BSLASHGLSpl] = ACTIONS(12221), + [anon_sym_BSLASHglsdisp] = ACTIONS(12221), + [anon_sym_BSLASHglslink] = ACTIONS(12221), + [anon_sym_BSLASHglstext] = ACTIONS(12221), + [anon_sym_BSLASHGlstext] = ACTIONS(12221), + [anon_sym_BSLASHGLStext] = ACTIONS(12221), + [anon_sym_BSLASHglsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12221), + [anon_sym_BSLASHglsplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSplural] = ACTIONS(12221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHglsname] = ACTIONS(12221), + [anon_sym_BSLASHGlsname] = ACTIONS(12221), + [anon_sym_BSLASHGLSname] = ACTIONS(12221), + [anon_sym_BSLASHglssymbol] = ACTIONS(12221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12221), + [anon_sym_BSLASHglsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12221), + [anon_sym_BSLASHglsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12221), + [anon_sym_BSLASHglsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12221), + [anon_sym_BSLASHglsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12221), + [anon_sym_BSLASHglsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12221), + [anon_sym_BSLASHnewacronym] = ACTIONS(12221), + [anon_sym_BSLASHacrshort] = ACTIONS(12221), + [anon_sym_BSLASHAcrshort] = ACTIONS(12221), + [anon_sym_BSLASHACRshort] = ACTIONS(12221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12221), + [anon_sym_BSLASHacrlong] = ACTIONS(12221), + [anon_sym_BSLASHAcrlong] = ACTIONS(12221), + [anon_sym_BSLASHACRlong] = ACTIONS(12221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12221), + [anon_sym_BSLASHacrfull] = ACTIONS(12221), + [anon_sym_BSLASHAcrfull] = ACTIONS(12221), + [anon_sym_BSLASHACRfull] = ACTIONS(12221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12221), + [anon_sym_BSLASHacs] = ACTIONS(12221), + [anon_sym_BSLASHAcs] = ACTIONS(12221), + [anon_sym_BSLASHacsp] = ACTIONS(12221), + [anon_sym_BSLASHAcsp] = ACTIONS(12221), + [anon_sym_BSLASHacl] = ACTIONS(12221), + [anon_sym_BSLASHAcl] = ACTIONS(12221), + [anon_sym_BSLASHaclp] = ACTIONS(12221), + [anon_sym_BSLASHAclp] = ACTIONS(12221), + [anon_sym_BSLASHacf] = ACTIONS(12221), + [anon_sym_BSLASHAcf] = ACTIONS(12221), + [anon_sym_BSLASHacfp] = ACTIONS(12221), + [anon_sym_BSLASHAcfp] = ACTIONS(12221), + [anon_sym_BSLASHac] = ACTIONS(12221), + [anon_sym_BSLASHAc] = ACTIONS(12221), + [anon_sym_BSLASHacp] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12221), + [anon_sym_BSLASHcolor] = ACTIONS(12221), + [anon_sym_BSLASHcolorbox] = ACTIONS(12221), + [anon_sym_BSLASHtextcolor] = ACTIONS(12221), + [anon_sym_BSLASHpagecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12221), + }, + [910] = { + [sym_generic_command_name] = ACTIONS(12108), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12108), + [aux_sym_chapter_token1] = ACTIONS(12108), + [aux_sym_section_token1] = ACTIONS(12108), + [aux_sym_subsection_token1] = ACTIONS(12108), + [aux_sym_subsubsection_token1] = ACTIONS(12108), + [aux_sym_paragraph_token1] = ACTIONS(12108), + [aux_sym_subparagraph_token1] = ACTIONS(12108), + [anon_sym_BSLASHitem] = ACTIONS(12108), + [anon_sym_LBRACK] = ACTIONS(12106), + [anon_sym_LBRACE] = ACTIONS(12106), + [anon_sym_LPAREN] = ACTIONS(12106), + [anon_sym_COMMA] = ACTIONS(12106), + [anon_sym_EQ] = ACTIONS(12106), + [sym_word] = ACTIONS(12106), + [sym_param] = ACTIONS(12106), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12106), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12106), + [anon_sym_DOLLAR] = ACTIONS(12108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12106), + [anon_sym_BSLASHbegin] = ACTIONS(12108), + [anon_sym_BSLASHcaption] = ACTIONS(12108), + [anon_sym_BSLASHcite] = ACTIONS(12108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCite] = ACTIONS(12108), + [anon_sym_BSLASHnocite] = ACTIONS(12108), + [anon_sym_BSLASHcitet] = ACTIONS(12108), + [anon_sym_BSLASHcitep] = ACTIONS(12108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteauthor] = ACTIONS(12108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitetitle] = ACTIONS(12108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteyear] = ACTIONS(12108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitedate] = ACTIONS(12108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteurl] = ACTIONS(12108), + [anon_sym_BSLASHfullcite] = ACTIONS(12108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12108), + [anon_sym_BSLASHcitealt] = ACTIONS(12108), + [anon_sym_BSLASHcitealp] = ACTIONS(12108), + [anon_sym_BSLASHcitetext] = ACTIONS(12108), + [anon_sym_BSLASHparencite] = ACTIONS(12108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHParencite] = ACTIONS(12108), + [anon_sym_BSLASHfootcite] = ACTIONS(12108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12108), + [anon_sym_BSLASHtextcite] = ACTIONS(12108), + [anon_sym_BSLASHTextcite] = ACTIONS(12108), + [anon_sym_BSLASHsmartcite] = ACTIONS(12108), + [anon_sym_BSLASHSmartcite] = ACTIONS(12108), + [anon_sym_BSLASHsupercite] = ACTIONS(12108), + [anon_sym_BSLASHautocite] = ACTIONS(12108), + [anon_sym_BSLASHAutocite] = ACTIONS(12108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHvolcite] = ACTIONS(12108), + [anon_sym_BSLASHVolcite] = ACTIONS(12108), + [anon_sym_BSLASHpvolcite] = ACTIONS(12108), + [anon_sym_BSLASHPvolcite] = ACTIONS(12108), + [anon_sym_BSLASHfvolcite] = ACTIONS(12108), + [anon_sym_BSLASHftvolcite] = ACTIONS(12108), + [anon_sym_BSLASHsvolcite] = ACTIONS(12108), + [anon_sym_BSLASHSvolcite] = ACTIONS(12108), + [anon_sym_BSLASHtvolcite] = ACTIONS(12108), + [anon_sym_BSLASHTvolcite] = ACTIONS(12108), + [anon_sym_BSLASHavolcite] = ACTIONS(12108), + [anon_sym_BSLASHAvolcite] = ACTIONS(12108), + [anon_sym_BSLASHnotecite] = ACTIONS(12108), + [anon_sym_BSLASHpnotecite] = ACTIONS(12108), + [anon_sym_BSLASHPnotecite] = ACTIONS(12108), + [anon_sym_BSLASHfnotecite] = ACTIONS(12108), + [anon_sym_BSLASHusepackage] = ACTIONS(12108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12108), + [anon_sym_BSLASHinclude] = ACTIONS(12108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12108), + [anon_sym_BSLASHinput] = ACTIONS(12108), + [anon_sym_BSLASHsubfile] = ACTIONS(12108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12108), + [anon_sym_BSLASHbibliography] = ACTIONS(12108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12108), + [anon_sym_BSLASHincludesvg] = ACTIONS(12108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12108), + [anon_sym_BSLASHimport] = ACTIONS(12108), + [anon_sym_BSLASHsubimport] = ACTIONS(12108), + [anon_sym_BSLASHinputfrom] = ACTIONS(12108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12108), + [anon_sym_BSLASHincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHlabel] = ACTIONS(12108), + [anon_sym_BSLASHref] = ACTIONS(12108), + [anon_sym_BSLASHvref] = ACTIONS(12108), + [anon_sym_BSLASHVref] = ACTIONS(12108), + [anon_sym_BSLASHautoref] = ACTIONS(12108), + [anon_sym_BSLASHpageref] = ACTIONS(12108), + [anon_sym_BSLASHcref] = ACTIONS(12108), + [anon_sym_BSLASHCref] = ACTIONS(12108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnameCref] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHlabelcref] = ACTIONS(12108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12108), + [anon_sym_BSLASHeqref] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange] = ACTIONS(12108), + [anon_sym_BSLASHCrefrange] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewlabel] = ACTIONS(12108), + [anon_sym_BSLASHnewcommand] = ACTIONS(12108), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12108), + [anon_sym_BSLASHgls] = ACTIONS(12108), + [anon_sym_BSLASHGls] = ACTIONS(12108), + [anon_sym_BSLASHGLS] = ACTIONS(12108), + [anon_sym_BSLASHglspl] = ACTIONS(12108), + [anon_sym_BSLASHGlspl] = ACTIONS(12108), + [anon_sym_BSLASHGLSpl] = ACTIONS(12108), + [anon_sym_BSLASHglsdisp] = ACTIONS(12108), + [anon_sym_BSLASHglslink] = ACTIONS(12108), + [anon_sym_BSLASHglstext] = ACTIONS(12108), + [anon_sym_BSLASHGlstext] = ACTIONS(12108), + [anon_sym_BSLASHGLStext] = ACTIONS(12108), + [anon_sym_BSLASHglsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12108), + [anon_sym_BSLASHglsplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSplural] = ACTIONS(12108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHglsname] = ACTIONS(12108), + [anon_sym_BSLASHGlsname] = ACTIONS(12108), + [anon_sym_BSLASHGLSname] = ACTIONS(12108), + [anon_sym_BSLASHglssymbol] = ACTIONS(12108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12108), + [anon_sym_BSLASHglsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12108), + [anon_sym_BSLASHglsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12108), + [anon_sym_BSLASHglsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12108), + [anon_sym_BSLASHglsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12108), + [anon_sym_BSLASHglsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12108), + [anon_sym_BSLASHnewacronym] = ACTIONS(12108), + [anon_sym_BSLASHacrshort] = ACTIONS(12108), + [anon_sym_BSLASHAcrshort] = ACTIONS(12108), + [anon_sym_BSLASHACRshort] = ACTIONS(12108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12108), + [anon_sym_BSLASHacrlong] = ACTIONS(12108), + [anon_sym_BSLASHAcrlong] = ACTIONS(12108), + [anon_sym_BSLASHACRlong] = ACTIONS(12108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12108), + [anon_sym_BSLASHacrfull] = ACTIONS(12108), + [anon_sym_BSLASHAcrfull] = ACTIONS(12108), + [anon_sym_BSLASHACRfull] = ACTIONS(12108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12108), + [anon_sym_BSLASHacs] = ACTIONS(12108), + [anon_sym_BSLASHAcs] = ACTIONS(12108), + [anon_sym_BSLASHacsp] = ACTIONS(12108), + [anon_sym_BSLASHAcsp] = ACTIONS(12108), + [anon_sym_BSLASHacl] = ACTIONS(12108), + [anon_sym_BSLASHAcl] = ACTIONS(12108), + [anon_sym_BSLASHaclp] = ACTIONS(12108), + [anon_sym_BSLASHAclp] = ACTIONS(12108), + [anon_sym_BSLASHacf] = ACTIONS(12108), + [anon_sym_BSLASHAcf] = ACTIONS(12108), + [anon_sym_BSLASHacfp] = ACTIONS(12108), + [anon_sym_BSLASHAcfp] = ACTIONS(12108), + [anon_sym_BSLASHac] = ACTIONS(12108), + [anon_sym_BSLASHAc] = ACTIONS(12108), + [anon_sym_BSLASHacp] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12108), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12108), + [anon_sym_BSLASHcolor] = ACTIONS(12108), + [anon_sym_BSLASHcolorbox] = ACTIONS(12108), + [anon_sym_BSLASHtextcolor] = ACTIONS(12108), + [anon_sym_BSLASHpagecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12108), + }, + [911] = { + [sym_generic_command_name] = ACTIONS(12235), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12235), + [aux_sym_chapter_token1] = ACTIONS(12235), + [aux_sym_section_token1] = ACTIONS(12235), + [aux_sym_subsection_token1] = ACTIONS(12235), + [aux_sym_subsubsection_token1] = ACTIONS(12235), + [aux_sym_paragraph_token1] = ACTIONS(12235), + [aux_sym_subparagraph_token1] = ACTIONS(12235), + [anon_sym_BSLASHitem] = ACTIONS(12235), + [anon_sym_LBRACK] = ACTIONS(12233), + [anon_sym_LBRACE] = ACTIONS(12233), + [anon_sym_LPAREN] = ACTIONS(12233), + [anon_sym_COMMA] = ACTIONS(12233), + [anon_sym_EQ] = ACTIONS(12233), + [sym_word] = ACTIONS(12233), + [sym_param] = ACTIONS(12233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12233), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12233), + [anon_sym_DOLLAR] = ACTIONS(12235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12233), + [anon_sym_BSLASHbegin] = ACTIONS(12235), + [anon_sym_BSLASHcaption] = ACTIONS(12235), + [anon_sym_BSLASHcite] = ACTIONS(12235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCite] = ACTIONS(12235), + [anon_sym_BSLASHnocite] = ACTIONS(12235), + [anon_sym_BSLASHcitet] = ACTIONS(12235), + [anon_sym_BSLASHcitep] = ACTIONS(12235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteauthor] = ACTIONS(12235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitetitle] = ACTIONS(12235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteyear] = ACTIONS(12235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitedate] = ACTIONS(12235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteurl] = ACTIONS(12235), + [anon_sym_BSLASHfullcite] = ACTIONS(12235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12235), + [anon_sym_BSLASHcitealt] = ACTIONS(12235), + [anon_sym_BSLASHcitealp] = ACTIONS(12235), + [anon_sym_BSLASHcitetext] = ACTIONS(12235), + [anon_sym_BSLASHparencite] = ACTIONS(12235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHParencite] = ACTIONS(12235), + [anon_sym_BSLASHfootcite] = ACTIONS(12235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12235), + [anon_sym_BSLASHtextcite] = ACTIONS(12235), + [anon_sym_BSLASHTextcite] = ACTIONS(12235), + [anon_sym_BSLASHsmartcite] = ACTIONS(12235), + [anon_sym_BSLASHSmartcite] = ACTIONS(12235), + [anon_sym_BSLASHsupercite] = ACTIONS(12235), + [anon_sym_BSLASHautocite] = ACTIONS(12235), + [anon_sym_BSLASHAutocite] = ACTIONS(12235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHvolcite] = ACTIONS(12235), + [anon_sym_BSLASHVolcite] = ACTIONS(12235), + [anon_sym_BSLASHpvolcite] = ACTIONS(12235), + [anon_sym_BSLASHPvolcite] = ACTIONS(12235), + [anon_sym_BSLASHfvolcite] = ACTIONS(12235), + [anon_sym_BSLASHftvolcite] = ACTIONS(12235), + [anon_sym_BSLASHsvolcite] = ACTIONS(12235), + [anon_sym_BSLASHSvolcite] = ACTIONS(12235), + [anon_sym_BSLASHtvolcite] = ACTIONS(12235), + [anon_sym_BSLASHTvolcite] = ACTIONS(12235), + [anon_sym_BSLASHavolcite] = ACTIONS(12235), + [anon_sym_BSLASHAvolcite] = ACTIONS(12235), + [anon_sym_BSLASHnotecite] = ACTIONS(12235), + [anon_sym_BSLASHpnotecite] = ACTIONS(12235), + [anon_sym_BSLASHPnotecite] = ACTIONS(12235), + [anon_sym_BSLASHfnotecite] = ACTIONS(12235), + [anon_sym_BSLASHusepackage] = ACTIONS(12235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12235), + [anon_sym_BSLASHinclude] = ACTIONS(12235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12235), + [anon_sym_BSLASHinput] = ACTIONS(12235), + [anon_sym_BSLASHsubfile] = ACTIONS(12235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12235), + [anon_sym_BSLASHbibliography] = ACTIONS(12235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12235), + [anon_sym_BSLASHincludesvg] = ACTIONS(12235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12235), + [anon_sym_BSLASHimport] = ACTIONS(12235), + [anon_sym_BSLASHsubimport] = ACTIONS(12235), + [anon_sym_BSLASHinputfrom] = ACTIONS(12235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12235), + [anon_sym_BSLASHincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHlabel] = ACTIONS(12235), + [anon_sym_BSLASHref] = ACTIONS(12235), + [anon_sym_BSLASHvref] = ACTIONS(12235), + [anon_sym_BSLASHVref] = ACTIONS(12235), + [anon_sym_BSLASHautoref] = ACTIONS(12235), + [anon_sym_BSLASHpageref] = ACTIONS(12235), + [anon_sym_BSLASHcref] = ACTIONS(12235), + [anon_sym_BSLASHCref] = ACTIONS(12235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnameCref] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHlabelcref] = ACTIONS(12235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12235), + [anon_sym_BSLASHeqref] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange] = ACTIONS(12235), + [anon_sym_BSLASHCrefrange] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewlabel] = ACTIONS(12235), + [anon_sym_BSLASHnewcommand] = ACTIONS(12235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12235), + [anon_sym_BSLASHgls] = ACTIONS(12235), + [anon_sym_BSLASHGls] = ACTIONS(12235), + [anon_sym_BSLASHGLS] = ACTIONS(12235), + [anon_sym_BSLASHglspl] = ACTIONS(12235), + [anon_sym_BSLASHGlspl] = ACTIONS(12235), + [anon_sym_BSLASHGLSpl] = ACTIONS(12235), + [anon_sym_BSLASHglsdisp] = ACTIONS(12235), + [anon_sym_BSLASHglslink] = ACTIONS(12235), + [anon_sym_BSLASHglstext] = ACTIONS(12235), + [anon_sym_BSLASHGlstext] = ACTIONS(12235), + [anon_sym_BSLASHGLStext] = ACTIONS(12235), + [anon_sym_BSLASHglsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12235), + [anon_sym_BSLASHglsplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSplural] = ACTIONS(12235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHglsname] = ACTIONS(12235), + [anon_sym_BSLASHGlsname] = ACTIONS(12235), + [anon_sym_BSLASHGLSname] = ACTIONS(12235), + [anon_sym_BSLASHglssymbol] = ACTIONS(12235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12235), + [anon_sym_BSLASHglsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12235), + [anon_sym_BSLASHglsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12235), + [anon_sym_BSLASHglsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12235), + [anon_sym_BSLASHglsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12235), + [anon_sym_BSLASHglsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12235), + [anon_sym_BSLASHnewacronym] = ACTIONS(12235), + [anon_sym_BSLASHacrshort] = ACTIONS(12235), + [anon_sym_BSLASHAcrshort] = ACTIONS(12235), + [anon_sym_BSLASHACRshort] = ACTIONS(12235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12235), + [anon_sym_BSLASHacrlong] = ACTIONS(12235), + [anon_sym_BSLASHAcrlong] = ACTIONS(12235), + [anon_sym_BSLASHACRlong] = ACTIONS(12235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12235), + [anon_sym_BSLASHacrfull] = ACTIONS(12235), + [anon_sym_BSLASHAcrfull] = ACTIONS(12235), + [anon_sym_BSLASHACRfull] = ACTIONS(12235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12235), + [anon_sym_BSLASHacs] = ACTIONS(12235), + [anon_sym_BSLASHAcs] = ACTIONS(12235), + [anon_sym_BSLASHacsp] = ACTIONS(12235), + [anon_sym_BSLASHAcsp] = ACTIONS(12235), + [anon_sym_BSLASHacl] = ACTIONS(12235), + [anon_sym_BSLASHAcl] = ACTIONS(12235), + [anon_sym_BSLASHaclp] = ACTIONS(12235), + [anon_sym_BSLASHAclp] = ACTIONS(12235), + [anon_sym_BSLASHacf] = ACTIONS(12235), + [anon_sym_BSLASHAcf] = ACTIONS(12235), + [anon_sym_BSLASHacfp] = ACTIONS(12235), + [anon_sym_BSLASHAcfp] = ACTIONS(12235), + [anon_sym_BSLASHac] = ACTIONS(12235), + [anon_sym_BSLASHAc] = ACTIONS(12235), + [anon_sym_BSLASHacp] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12235), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12235), + [anon_sym_BSLASHcolor] = ACTIONS(12235), + [anon_sym_BSLASHcolorbox] = ACTIONS(12235), + [anon_sym_BSLASHtextcolor] = ACTIONS(12235), + [anon_sym_BSLASHpagecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12235), + }, + [912] = { + [sym_generic_command_name] = ACTIONS(12239), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12239), + [aux_sym_chapter_token1] = ACTIONS(12239), + [aux_sym_section_token1] = ACTIONS(12239), + [aux_sym_subsection_token1] = ACTIONS(12239), + [aux_sym_subsubsection_token1] = ACTIONS(12239), + [aux_sym_paragraph_token1] = ACTIONS(12239), + [aux_sym_subparagraph_token1] = ACTIONS(12239), + [anon_sym_BSLASHitem] = ACTIONS(12239), + [anon_sym_LBRACK] = ACTIONS(12237), + [anon_sym_LBRACE] = ACTIONS(12237), + [anon_sym_LPAREN] = ACTIONS(12237), + [anon_sym_COMMA] = ACTIONS(12237), + [anon_sym_EQ] = ACTIONS(12237), + [sym_word] = ACTIONS(12237), + [sym_param] = ACTIONS(12237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12237), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12237), + [anon_sym_DOLLAR] = ACTIONS(12239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12237), + [anon_sym_BSLASHbegin] = ACTIONS(12239), + [anon_sym_BSLASHcaption] = ACTIONS(12239), + [anon_sym_BSLASHcite] = ACTIONS(12239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCite] = ACTIONS(12239), + [anon_sym_BSLASHnocite] = ACTIONS(12239), + [anon_sym_BSLASHcitet] = ACTIONS(12239), + [anon_sym_BSLASHcitep] = ACTIONS(12239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteauthor] = ACTIONS(12239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitetitle] = ACTIONS(12239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteyear] = ACTIONS(12239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitedate] = ACTIONS(12239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteurl] = ACTIONS(12239), + [anon_sym_BSLASHfullcite] = ACTIONS(12239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12239), + [anon_sym_BSLASHcitealt] = ACTIONS(12239), + [anon_sym_BSLASHcitealp] = ACTIONS(12239), + [anon_sym_BSLASHcitetext] = ACTIONS(12239), + [anon_sym_BSLASHparencite] = ACTIONS(12239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHParencite] = ACTIONS(12239), + [anon_sym_BSLASHfootcite] = ACTIONS(12239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12239), + [anon_sym_BSLASHtextcite] = ACTIONS(12239), + [anon_sym_BSLASHTextcite] = ACTIONS(12239), + [anon_sym_BSLASHsmartcite] = ACTIONS(12239), + [anon_sym_BSLASHSmartcite] = ACTIONS(12239), + [anon_sym_BSLASHsupercite] = ACTIONS(12239), + [anon_sym_BSLASHautocite] = ACTIONS(12239), + [anon_sym_BSLASHAutocite] = ACTIONS(12239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHvolcite] = ACTIONS(12239), + [anon_sym_BSLASHVolcite] = ACTIONS(12239), + [anon_sym_BSLASHpvolcite] = ACTIONS(12239), + [anon_sym_BSLASHPvolcite] = ACTIONS(12239), + [anon_sym_BSLASHfvolcite] = ACTIONS(12239), + [anon_sym_BSLASHftvolcite] = ACTIONS(12239), + [anon_sym_BSLASHsvolcite] = ACTIONS(12239), + [anon_sym_BSLASHSvolcite] = ACTIONS(12239), + [anon_sym_BSLASHtvolcite] = ACTIONS(12239), + [anon_sym_BSLASHTvolcite] = ACTIONS(12239), + [anon_sym_BSLASHavolcite] = ACTIONS(12239), + [anon_sym_BSLASHAvolcite] = ACTIONS(12239), + [anon_sym_BSLASHnotecite] = ACTIONS(12239), + [anon_sym_BSLASHpnotecite] = ACTIONS(12239), + [anon_sym_BSLASHPnotecite] = ACTIONS(12239), + [anon_sym_BSLASHfnotecite] = ACTIONS(12239), + [anon_sym_BSLASHusepackage] = ACTIONS(12239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12239), + [anon_sym_BSLASHinclude] = ACTIONS(12239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12239), + [anon_sym_BSLASHinput] = ACTIONS(12239), + [anon_sym_BSLASHsubfile] = ACTIONS(12239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12239), + [anon_sym_BSLASHbibliography] = ACTIONS(12239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12239), + [anon_sym_BSLASHincludesvg] = ACTIONS(12239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12239), + [anon_sym_BSLASHimport] = ACTIONS(12239), + [anon_sym_BSLASHsubimport] = ACTIONS(12239), + [anon_sym_BSLASHinputfrom] = ACTIONS(12239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12239), + [anon_sym_BSLASHincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHlabel] = ACTIONS(12239), + [anon_sym_BSLASHref] = ACTIONS(12239), + [anon_sym_BSLASHvref] = ACTIONS(12239), + [anon_sym_BSLASHVref] = ACTIONS(12239), + [anon_sym_BSLASHautoref] = ACTIONS(12239), + [anon_sym_BSLASHpageref] = ACTIONS(12239), + [anon_sym_BSLASHcref] = ACTIONS(12239), + [anon_sym_BSLASHCref] = ACTIONS(12239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnameCref] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHlabelcref] = ACTIONS(12239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12239), + [anon_sym_BSLASHeqref] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange] = ACTIONS(12239), + [anon_sym_BSLASHCrefrange] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewlabel] = ACTIONS(12239), + [anon_sym_BSLASHnewcommand] = ACTIONS(12239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12239), + [anon_sym_BSLASHgls] = ACTIONS(12239), + [anon_sym_BSLASHGls] = ACTIONS(12239), + [anon_sym_BSLASHGLS] = ACTIONS(12239), + [anon_sym_BSLASHglspl] = ACTIONS(12239), + [anon_sym_BSLASHGlspl] = ACTIONS(12239), + [anon_sym_BSLASHGLSpl] = ACTIONS(12239), + [anon_sym_BSLASHglsdisp] = ACTIONS(12239), + [anon_sym_BSLASHglslink] = ACTIONS(12239), + [anon_sym_BSLASHglstext] = ACTIONS(12239), + [anon_sym_BSLASHGlstext] = ACTIONS(12239), + [anon_sym_BSLASHGLStext] = ACTIONS(12239), + [anon_sym_BSLASHglsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12239), + [anon_sym_BSLASHglsplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSplural] = ACTIONS(12239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHglsname] = ACTIONS(12239), + [anon_sym_BSLASHGlsname] = ACTIONS(12239), + [anon_sym_BSLASHGLSname] = ACTIONS(12239), + [anon_sym_BSLASHglssymbol] = ACTIONS(12239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12239), + [anon_sym_BSLASHglsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12239), + [anon_sym_BSLASHglsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12239), + [anon_sym_BSLASHglsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12239), + [anon_sym_BSLASHglsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12239), + [anon_sym_BSLASHglsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12239), + [anon_sym_BSLASHnewacronym] = ACTIONS(12239), + [anon_sym_BSLASHacrshort] = ACTIONS(12239), + [anon_sym_BSLASHAcrshort] = ACTIONS(12239), + [anon_sym_BSLASHACRshort] = ACTIONS(12239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12239), + [anon_sym_BSLASHacrlong] = ACTIONS(12239), + [anon_sym_BSLASHAcrlong] = ACTIONS(12239), + [anon_sym_BSLASHACRlong] = ACTIONS(12239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12239), + [anon_sym_BSLASHacrfull] = ACTIONS(12239), + [anon_sym_BSLASHAcrfull] = ACTIONS(12239), + [anon_sym_BSLASHACRfull] = ACTIONS(12239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12239), + [anon_sym_BSLASHacs] = ACTIONS(12239), + [anon_sym_BSLASHAcs] = ACTIONS(12239), + [anon_sym_BSLASHacsp] = ACTIONS(12239), + [anon_sym_BSLASHAcsp] = ACTIONS(12239), + [anon_sym_BSLASHacl] = ACTIONS(12239), + [anon_sym_BSLASHAcl] = ACTIONS(12239), + [anon_sym_BSLASHaclp] = ACTIONS(12239), + [anon_sym_BSLASHAclp] = ACTIONS(12239), + [anon_sym_BSLASHacf] = ACTIONS(12239), + [anon_sym_BSLASHAcf] = ACTIONS(12239), + [anon_sym_BSLASHacfp] = ACTIONS(12239), + [anon_sym_BSLASHAcfp] = ACTIONS(12239), + [anon_sym_BSLASHac] = ACTIONS(12239), + [anon_sym_BSLASHAc] = ACTIONS(12239), + [anon_sym_BSLASHacp] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12239), + [anon_sym_BSLASHcolor] = ACTIONS(12239), + [anon_sym_BSLASHcolorbox] = ACTIONS(12239), + [anon_sym_BSLASHtextcolor] = ACTIONS(12239), + [anon_sym_BSLASHpagecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12239), + }, + [913] = { + [sym_generic_command_name] = ACTIONS(12243), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12243), + [aux_sym_chapter_token1] = ACTIONS(12243), + [aux_sym_section_token1] = ACTIONS(12243), + [aux_sym_subsection_token1] = ACTIONS(12243), + [aux_sym_subsubsection_token1] = ACTIONS(12243), + [aux_sym_paragraph_token1] = ACTIONS(12243), + [aux_sym_subparagraph_token1] = ACTIONS(12243), + [anon_sym_BSLASHitem] = ACTIONS(12243), + [anon_sym_LBRACK] = ACTIONS(12241), + [anon_sym_LBRACE] = ACTIONS(12241), + [anon_sym_LPAREN] = ACTIONS(12241), + [anon_sym_COMMA] = ACTIONS(12241), + [anon_sym_EQ] = ACTIONS(12241), + [sym_word] = ACTIONS(12241), + [sym_param] = ACTIONS(12241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12241), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12241), + [anon_sym_DOLLAR] = ACTIONS(12243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12241), + [anon_sym_BSLASHbegin] = ACTIONS(12243), + [anon_sym_BSLASHcaption] = ACTIONS(12243), + [anon_sym_BSLASHcite] = ACTIONS(12243), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCite] = ACTIONS(12243), + [anon_sym_BSLASHnocite] = ACTIONS(12243), + [anon_sym_BSLASHcitet] = ACTIONS(12243), + [anon_sym_BSLASHcitep] = ACTIONS(12243), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteauthor] = ACTIONS(12243), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12243), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitetitle] = ACTIONS(12243), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteyear] = ACTIONS(12243), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitedate] = ACTIONS(12243), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteurl] = ACTIONS(12243), + [anon_sym_BSLASHfullcite] = ACTIONS(12243), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12243), + [anon_sym_BSLASHcitealt] = ACTIONS(12243), + [anon_sym_BSLASHcitealp] = ACTIONS(12243), + [anon_sym_BSLASHcitetext] = ACTIONS(12243), + [anon_sym_BSLASHparencite] = ACTIONS(12243), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHParencite] = ACTIONS(12243), + [anon_sym_BSLASHfootcite] = ACTIONS(12243), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12243), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12243), + [anon_sym_BSLASHtextcite] = ACTIONS(12243), + [anon_sym_BSLASHTextcite] = ACTIONS(12243), + [anon_sym_BSLASHsmartcite] = ACTIONS(12243), + [anon_sym_BSLASHSmartcite] = ACTIONS(12243), + [anon_sym_BSLASHsupercite] = ACTIONS(12243), + [anon_sym_BSLASHautocite] = ACTIONS(12243), + [anon_sym_BSLASHAutocite] = ACTIONS(12243), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHvolcite] = ACTIONS(12243), + [anon_sym_BSLASHVolcite] = ACTIONS(12243), + [anon_sym_BSLASHpvolcite] = ACTIONS(12243), + [anon_sym_BSLASHPvolcite] = ACTIONS(12243), + [anon_sym_BSLASHfvolcite] = ACTIONS(12243), + [anon_sym_BSLASHftvolcite] = ACTIONS(12243), + [anon_sym_BSLASHsvolcite] = ACTIONS(12243), + [anon_sym_BSLASHSvolcite] = ACTIONS(12243), + [anon_sym_BSLASHtvolcite] = ACTIONS(12243), + [anon_sym_BSLASHTvolcite] = ACTIONS(12243), + [anon_sym_BSLASHavolcite] = ACTIONS(12243), + [anon_sym_BSLASHAvolcite] = ACTIONS(12243), + [anon_sym_BSLASHnotecite] = ACTIONS(12243), + [anon_sym_BSLASHpnotecite] = ACTIONS(12243), + [anon_sym_BSLASHPnotecite] = ACTIONS(12243), + [anon_sym_BSLASHfnotecite] = ACTIONS(12243), + [anon_sym_BSLASHusepackage] = ACTIONS(12243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12243), + [anon_sym_BSLASHinclude] = ACTIONS(12243), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12243), + [anon_sym_BSLASHinput] = ACTIONS(12243), + [anon_sym_BSLASHsubfile] = ACTIONS(12243), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12243), + [anon_sym_BSLASHbibliography] = ACTIONS(12243), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12243), + [anon_sym_BSLASHincludesvg] = ACTIONS(12243), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12243), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12243), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12243), + [anon_sym_BSLASHimport] = ACTIONS(12243), + [anon_sym_BSLASHsubimport] = ACTIONS(12243), + [anon_sym_BSLASHinputfrom] = ACTIONS(12243), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12243), + [anon_sym_BSLASHincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHlabel] = ACTIONS(12243), + [anon_sym_BSLASHref] = ACTIONS(12243), + [anon_sym_BSLASHvref] = ACTIONS(12243), + [anon_sym_BSLASHVref] = ACTIONS(12243), + [anon_sym_BSLASHautoref] = ACTIONS(12243), + [anon_sym_BSLASHpageref] = ACTIONS(12243), + [anon_sym_BSLASHcref] = ACTIONS(12243), + [anon_sym_BSLASHCref] = ACTIONS(12243), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnameCref] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHlabelcref] = ACTIONS(12243), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12243), + [anon_sym_BSLASHeqref] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange] = ACTIONS(12243), + [anon_sym_BSLASHCrefrange] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewlabel] = ACTIONS(12243), + [anon_sym_BSLASHnewcommand] = ACTIONS(12243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12243), + [anon_sym_BSLASHgls] = ACTIONS(12243), + [anon_sym_BSLASHGls] = ACTIONS(12243), + [anon_sym_BSLASHGLS] = ACTIONS(12243), + [anon_sym_BSLASHglspl] = ACTIONS(12243), + [anon_sym_BSLASHGlspl] = ACTIONS(12243), + [anon_sym_BSLASHGLSpl] = ACTIONS(12243), + [anon_sym_BSLASHglsdisp] = ACTIONS(12243), + [anon_sym_BSLASHglslink] = ACTIONS(12243), + [anon_sym_BSLASHglstext] = ACTIONS(12243), + [anon_sym_BSLASHGlstext] = ACTIONS(12243), + [anon_sym_BSLASHGLStext] = ACTIONS(12243), + [anon_sym_BSLASHglsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12243), + [anon_sym_BSLASHglsplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSplural] = ACTIONS(12243), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHglsname] = ACTIONS(12243), + [anon_sym_BSLASHGlsname] = ACTIONS(12243), + [anon_sym_BSLASHGLSname] = ACTIONS(12243), + [anon_sym_BSLASHglssymbol] = ACTIONS(12243), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12243), + [anon_sym_BSLASHglsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12243), + [anon_sym_BSLASHglsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12243), + [anon_sym_BSLASHglsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12243), + [anon_sym_BSLASHglsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12243), + [anon_sym_BSLASHglsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12243), + [anon_sym_BSLASHnewacronym] = ACTIONS(12243), + [anon_sym_BSLASHacrshort] = ACTIONS(12243), + [anon_sym_BSLASHAcrshort] = ACTIONS(12243), + [anon_sym_BSLASHACRshort] = ACTIONS(12243), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12243), + [anon_sym_BSLASHacrlong] = ACTIONS(12243), + [anon_sym_BSLASHAcrlong] = ACTIONS(12243), + [anon_sym_BSLASHACRlong] = ACTIONS(12243), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12243), + [anon_sym_BSLASHacrfull] = ACTIONS(12243), + [anon_sym_BSLASHAcrfull] = ACTIONS(12243), + [anon_sym_BSLASHACRfull] = ACTIONS(12243), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12243), + [anon_sym_BSLASHacs] = ACTIONS(12243), + [anon_sym_BSLASHAcs] = ACTIONS(12243), + [anon_sym_BSLASHacsp] = ACTIONS(12243), + [anon_sym_BSLASHAcsp] = ACTIONS(12243), + [anon_sym_BSLASHacl] = ACTIONS(12243), + [anon_sym_BSLASHAcl] = ACTIONS(12243), + [anon_sym_BSLASHaclp] = ACTIONS(12243), + [anon_sym_BSLASHAclp] = ACTIONS(12243), + [anon_sym_BSLASHacf] = ACTIONS(12243), + [anon_sym_BSLASHAcf] = ACTIONS(12243), + [anon_sym_BSLASHacfp] = ACTIONS(12243), + [anon_sym_BSLASHAcfp] = ACTIONS(12243), + [anon_sym_BSLASHac] = ACTIONS(12243), + [anon_sym_BSLASHAc] = ACTIONS(12243), + [anon_sym_BSLASHacp] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12243), + [anon_sym_BSLASHcolor] = ACTIONS(12243), + [anon_sym_BSLASHcolorbox] = ACTIONS(12243), + [anon_sym_BSLASHtextcolor] = ACTIONS(12243), + [anon_sym_BSLASHpagecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12243), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12243), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12243), + }, + [914] = { + [sym_generic_command_name] = ACTIONS(12247), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12247), + [aux_sym_chapter_token1] = ACTIONS(12247), + [aux_sym_section_token1] = ACTIONS(12247), + [aux_sym_subsection_token1] = ACTIONS(12247), + [aux_sym_subsubsection_token1] = ACTIONS(12247), + [aux_sym_paragraph_token1] = ACTIONS(12247), + [aux_sym_subparagraph_token1] = ACTIONS(12247), + [anon_sym_BSLASHitem] = ACTIONS(12247), + [anon_sym_LBRACK] = ACTIONS(12245), + [anon_sym_LBRACE] = ACTIONS(12245), + [anon_sym_LPAREN] = ACTIONS(12245), + [anon_sym_COMMA] = ACTIONS(12245), + [anon_sym_EQ] = ACTIONS(12245), + [sym_word] = ACTIONS(12245), + [sym_param] = ACTIONS(12245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12245), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12245), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12245), + [anon_sym_DOLLAR] = ACTIONS(12247), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12245), + [anon_sym_BSLASHbegin] = ACTIONS(12247), + [anon_sym_BSLASHcaption] = ACTIONS(12247), + [anon_sym_BSLASHcite] = ACTIONS(12247), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCite] = ACTIONS(12247), + [anon_sym_BSLASHnocite] = ACTIONS(12247), + [anon_sym_BSLASHcitet] = ACTIONS(12247), + [anon_sym_BSLASHcitep] = ACTIONS(12247), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteauthor] = ACTIONS(12247), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12247), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitetitle] = ACTIONS(12247), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteyear] = ACTIONS(12247), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitedate] = ACTIONS(12247), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteurl] = ACTIONS(12247), + [anon_sym_BSLASHfullcite] = ACTIONS(12247), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12247), + [anon_sym_BSLASHcitealt] = ACTIONS(12247), + [anon_sym_BSLASHcitealp] = ACTIONS(12247), + [anon_sym_BSLASHcitetext] = ACTIONS(12247), + [anon_sym_BSLASHparencite] = ACTIONS(12247), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHParencite] = ACTIONS(12247), + [anon_sym_BSLASHfootcite] = ACTIONS(12247), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12247), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12247), + [anon_sym_BSLASHtextcite] = ACTIONS(12247), + [anon_sym_BSLASHTextcite] = ACTIONS(12247), + [anon_sym_BSLASHsmartcite] = ACTIONS(12247), + [anon_sym_BSLASHSmartcite] = ACTIONS(12247), + [anon_sym_BSLASHsupercite] = ACTIONS(12247), + [anon_sym_BSLASHautocite] = ACTIONS(12247), + [anon_sym_BSLASHAutocite] = ACTIONS(12247), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHvolcite] = ACTIONS(12247), + [anon_sym_BSLASHVolcite] = ACTIONS(12247), + [anon_sym_BSLASHpvolcite] = ACTIONS(12247), + [anon_sym_BSLASHPvolcite] = ACTIONS(12247), + [anon_sym_BSLASHfvolcite] = ACTIONS(12247), + [anon_sym_BSLASHftvolcite] = ACTIONS(12247), + [anon_sym_BSLASHsvolcite] = ACTIONS(12247), + [anon_sym_BSLASHSvolcite] = ACTIONS(12247), + [anon_sym_BSLASHtvolcite] = ACTIONS(12247), + [anon_sym_BSLASHTvolcite] = ACTIONS(12247), + [anon_sym_BSLASHavolcite] = ACTIONS(12247), + [anon_sym_BSLASHAvolcite] = ACTIONS(12247), + [anon_sym_BSLASHnotecite] = ACTIONS(12247), + [anon_sym_BSLASHpnotecite] = ACTIONS(12247), + [anon_sym_BSLASHPnotecite] = ACTIONS(12247), + [anon_sym_BSLASHfnotecite] = ACTIONS(12247), + [anon_sym_BSLASHusepackage] = ACTIONS(12247), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12247), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12247), + [anon_sym_BSLASHinclude] = ACTIONS(12247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12247), + [anon_sym_BSLASHinput] = ACTIONS(12247), + [anon_sym_BSLASHsubfile] = ACTIONS(12247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12247), + [anon_sym_BSLASHbibliography] = ACTIONS(12247), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12247), + [anon_sym_BSLASHincludesvg] = ACTIONS(12247), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12247), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12247), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12247), + [anon_sym_BSLASHimport] = ACTIONS(12247), + [anon_sym_BSLASHsubimport] = ACTIONS(12247), + [anon_sym_BSLASHinputfrom] = ACTIONS(12247), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12247), + [anon_sym_BSLASHincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHlabel] = ACTIONS(12247), + [anon_sym_BSLASHref] = ACTIONS(12247), + [anon_sym_BSLASHvref] = ACTIONS(12247), + [anon_sym_BSLASHVref] = ACTIONS(12247), + [anon_sym_BSLASHautoref] = ACTIONS(12247), + [anon_sym_BSLASHpageref] = ACTIONS(12247), + [anon_sym_BSLASHcref] = ACTIONS(12247), + [anon_sym_BSLASHCref] = ACTIONS(12247), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnameCref] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHlabelcref] = ACTIONS(12247), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12247), + [anon_sym_BSLASHeqref] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange] = ACTIONS(12247), + [anon_sym_BSLASHCrefrange] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewlabel] = ACTIONS(12247), + [anon_sym_BSLASHnewcommand] = ACTIONS(12247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12247), + [anon_sym_BSLASHgls] = ACTIONS(12247), + [anon_sym_BSLASHGls] = ACTIONS(12247), + [anon_sym_BSLASHGLS] = ACTIONS(12247), + [anon_sym_BSLASHglspl] = ACTIONS(12247), + [anon_sym_BSLASHGlspl] = ACTIONS(12247), + [anon_sym_BSLASHGLSpl] = ACTIONS(12247), + [anon_sym_BSLASHglsdisp] = ACTIONS(12247), + [anon_sym_BSLASHglslink] = ACTIONS(12247), + [anon_sym_BSLASHglstext] = ACTIONS(12247), + [anon_sym_BSLASHGlstext] = ACTIONS(12247), + [anon_sym_BSLASHGLStext] = ACTIONS(12247), + [anon_sym_BSLASHglsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12247), + [anon_sym_BSLASHglsplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSplural] = ACTIONS(12247), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHglsname] = ACTIONS(12247), + [anon_sym_BSLASHGlsname] = ACTIONS(12247), + [anon_sym_BSLASHGLSname] = ACTIONS(12247), + [anon_sym_BSLASHglssymbol] = ACTIONS(12247), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12247), + [anon_sym_BSLASHglsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12247), + [anon_sym_BSLASHglsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12247), + [anon_sym_BSLASHglsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12247), + [anon_sym_BSLASHglsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12247), + [anon_sym_BSLASHglsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12247), + [anon_sym_BSLASHnewacronym] = ACTIONS(12247), + [anon_sym_BSLASHacrshort] = ACTIONS(12247), + [anon_sym_BSLASHAcrshort] = ACTIONS(12247), + [anon_sym_BSLASHACRshort] = ACTIONS(12247), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12247), + [anon_sym_BSLASHacrlong] = ACTIONS(12247), + [anon_sym_BSLASHAcrlong] = ACTIONS(12247), + [anon_sym_BSLASHACRlong] = ACTIONS(12247), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12247), + [anon_sym_BSLASHacrfull] = ACTIONS(12247), + [anon_sym_BSLASHAcrfull] = ACTIONS(12247), + [anon_sym_BSLASHACRfull] = ACTIONS(12247), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12247), + [anon_sym_BSLASHacs] = ACTIONS(12247), + [anon_sym_BSLASHAcs] = ACTIONS(12247), + [anon_sym_BSLASHacsp] = ACTIONS(12247), + [anon_sym_BSLASHAcsp] = ACTIONS(12247), + [anon_sym_BSLASHacl] = ACTIONS(12247), + [anon_sym_BSLASHAcl] = ACTIONS(12247), + [anon_sym_BSLASHaclp] = ACTIONS(12247), + [anon_sym_BSLASHAclp] = ACTIONS(12247), + [anon_sym_BSLASHacf] = ACTIONS(12247), + [anon_sym_BSLASHAcf] = ACTIONS(12247), + [anon_sym_BSLASHacfp] = ACTIONS(12247), + [anon_sym_BSLASHAcfp] = ACTIONS(12247), + [anon_sym_BSLASHac] = ACTIONS(12247), + [anon_sym_BSLASHAc] = ACTIONS(12247), + [anon_sym_BSLASHacp] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12247), + [anon_sym_BSLASHcolor] = ACTIONS(12247), + [anon_sym_BSLASHcolorbox] = ACTIONS(12247), + [anon_sym_BSLASHtextcolor] = ACTIONS(12247), + [anon_sym_BSLASHpagecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12247), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12247), + }, + [915] = { + [sym_generic_command_name] = ACTIONS(12132), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12132), + [aux_sym_section_token1] = ACTIONS(12132), + [aux_sym_subsection_token1] = ACTIONS(12132), + [aux_sym_subsubsection_token1] = ACTIONS(12132), + [aux_sym_paragraph_token1] = ACTIONS(12132), + [aux_sym_subparagraph_token1] = ACTIONS(12132), + [anon_sym_BSLASHitem] = ACTIONS(12132), + [anon_sym_LBRACK] = ACTIONS(12130), + [anon_sym_RBRACK] = ACTIONS(12130), + [anon_sym_LBRACE] = ACTIONS(12130), + [anon_sym_RBRACE] = ACTIONS(12130), + [anon_sym_LPAREN] = ACTIONS(12130), + [anon_sym_COMMA] = ACTIONS(12130), + [anon_sym_EQ] = ACTIONS(12130), + [sym_word] = ACTIONS(12130), + [sym_param] = ACTIONS(12130), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12130), + [anon_sym_DOLLAR] = ACTIONS(12132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12130), + [anon_sym_BSLASHbegin] = ACTIONS(12132), + [anon_sym_BSLASHcaption] = ACTIONS(12132), + [anon_sym_BSLASHcite] = ACTIONS(12132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCite] = ACTIONS(12132), + [anon_sym_BSLASHnocite] = ACTIONS(12132), + [anon_sym_BSLASHcitet] = ACTIONS(12132), + [anon_sym_BSLASHcitep] = ACTIONS(12132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteauthor] = ACTIONS(12132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitetitle] = ACTIONS(12132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteyear] = ACTIONS(12132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitedate] = ACTIONS(12132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteurl] = ACTIONS(12132), + [anon_sym_BSLASHfullcite] = ACTIONS(12132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12132), + [anon_sym_BSLASHcitealt] = ACTIONS(12132), + [anon_sym_BSLASHcitealp] = ACTIONS(12132), + [anon_sym_BSLASHcitetext] = ACTIONS(12132), + [anon_sym_BSLASHparencite] = ACTIONS(12132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHParencite] = ACTIONS(12132), + [anon_sym_BSLASHfootcite] = ACTIONS(12132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12132), + [anon_sym_BSLASHtextcite] = ACTIONS(12132), + [anon_sym_BSLASHTextcite] = ACTIONS(12132), + [anon_sym_BSLASHsmartcite] = ACTIONS(12132), + [anon_sym_BSLASHSmartcite] = ACTIONS(12132), + [anon_sym_BSLASHsupercite] = ACTIONS(12132), + [anon_sym_BSLASHautocite] = ACTIONS(12132), + [anon_sym_BSLASHAutocite] = ACTIONS(12132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHvolcite] = ACTIONS(12132), + [anon_sym_BSLASHVolcite] = ACTIONS(12132), + [anon_sym_BSLASHpvolcite] = ACTIONS(12132), + [anon_sym_BSLASHPvolcite] = ACTIONS(12132), + [anon_sym_BSLASHfvolcite] = ACTIONS(12132), + [anon_sym_BSLASHftvolcite] = ACTIONS(12132), + [anon_sym_BSLASHsvolcite] = ACTIONS(12132), + [anon_sym_BSLASHSvolcite] = ACTIONS(12132), + [anon_sym_BSLASHtvolcite] = ACTIONS(12132), + [anon_sym_BSLASHTvolcite] = ACTIONS(12132), + [anon_sym_BSLASHavolcite] = ACTIONS(12132), + [anon_sym_BSLASHAvolcite] = ACTIONS(12132), + [anon_sym_BSLASHnotecite] = ACTIONS(12132), + [anon_sym_BSLASHpnotecite] = ACTIONS(12132), + [anon_sym_BSLASHPnotecite] = ACTIONS(12132), + [anon_sym_BSLASHfnotecite] = ACTIONS(12132), + [anon_sym_BSLASHusepackage] = ACTIONS(12132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12132), + [anon_sym_BSLASHinclude] = ACTIONS(12132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12132), + [anon_sym_BSLASHinput] = ACTIONS(12132), + [anon_sym_BSLASHsubfile] = ACTIONS(12132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12132), + [anon_sym_BSLASHbibliography] = ACTIONS(12132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12132), + [anon_sym_BSLASHincludesvg] = ACTIONS(12132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12132), + [anon_sym_BSLASHimport] = ACTIONS(12132), + [anon_sym_BSLASHsubimport] = ACTIONS(12132), + [anon_sym_BSLASHinputfrom] = ACTIONS(12132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12132), + [anon_sym_BSLASHincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHlabel] = ACTIONS(12132), + [anon_sym_BSLASHref] = ACTIONS(12132), + [anon_sym_BSLASHvref] = ACTIONS(12132), + [anon_sym_BSLASHVref] = ACTIONS(12132), + [anon_sym_BSLASHautoref] = ACTIONS(12132), + [anon_sym_BSLASHpageref] = ACTIONS(12132), + [anon_sym_BSLASHcref] = ACTIONS(12132), + [anon_sym_BSLASHCref] = ACTIONS(12132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnameCref] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHlabelcref] = ACTIONS(12132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12132), + [anon_sym_BSLASHeqref] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange] = ACTIONS(12132), + [anon_sym_BSLASHCrefrange] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewlabel] = ACTIONS(12132), + [anon_sym_BSLASHnewcommand] = ACTIONS(12132), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12132), + [anon_sym_BSLASHgls] = ACTIONS(12132), + [anon_sym_BSLASHGls] = ACTIONS(12132), + [anon_sym_BSLASHGLS] = ACTIONS(12132), + [anon_sym_BSLASHglspl] = ACTIONS(12132), + [anon_sym_BSLASHGlspl] = ACTIONS(12132), + [anon_sym_BSLASHGLSpl] = ACTIONS(12132), + [anon_sym_BSLASHglsdisp] = ACTIONS(12132), + [anon_sym_BSLASHglslink] = ACTIONS(12132), + [anon_sym_BSLASHglstext] = ACTIONS(12132), + [anon_sym_BSLASHGlstext] = ACTIONS(12132), + [anon_sym_BSLASHGLStext] = ACTIONS(12132), + [anon_sym_BSLASHglsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12132), + [anon_sym_BSLASHglsplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSplural] = ACTIONS(12132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHglsname] = ACTIONS(12132), + [anon_sym_BSLASHGlsname] = ACTIONS(12132), + [anon_sym_BSLASHGLSname] = ACTIONS(12132), + [anon_sym_BSLASHglssymbol] = ACTIONS(12132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12132), + [anon_sym_BSLASHglsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12132), + [anon_sym_BSLASHglsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12132), + [anon_sym_BSLASHglsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12132), + [anon_sym_BSLASHglsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12132), + [anon_sym_BSLASHglsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12132), + [anon_sym_BSLASHnewacronym] = ACTIONS(12132), + [anon_sym_BSLASHacrshort] = ACTIONS(12132), + [anon_sym_BSLASHAcrshort] = ACTIONS(12132), + [anon_sym_BSLASHACRshort] = ACTIONS(12132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12132), + [anon_sym_BSLASHacrlong] = ACTIONS(12132), + [anon_sym_BSLASHAcrlong] = ACTIONS(12132), + [anon_sym_BSLASHACRlong] = ACTIONS(12132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12132), + [anon_sym_BSLASHacrfull] = ACTIONS(12132), + [anon_sym_BSLASHAcrfull] = ACTIONS(12132), + [anon_sym_BSLASHACRfull] = ACTIONS(12132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12132), + [anon_sym_BSLASHacs] = ACTIONS(12132), + [anon_sym_BSLASHAcs] = ACTIONS(12132), + [anon_sym_BSLASHacsp] = ACTIONS(12132), + [anon_sym_BSLASHAcsp] = ACTIONS(12132), + [anon_sym_BSLASHacl] = ACTIONS(12132), + [anon_sym_BSLASHAcl] = ACTIONS(12132), + [anon_sym_BSLASHaclp] = ACTIONS(12132), + [anon_sym_BSLASHAclp] = ACTIONS(12132), + [anon_sym_BSLASHacf] = ACTIONS(12132), + [anon_sym_BSLASHAcf] = ACTIONS(12132), + [anon_sym_BSLASHacfp] = ACTIONS(12132), + [anon_sym_BSLASHAcfp] = ACTIONS(12132), + [anon_sym_BSLASHac] = ACTIONS(12132), + [anon_sym_BSLASHAc] = ACTIONS(12132), + [anon_sym_BSLASHacp] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12132), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12132), + [anon_sym_BSLASHcolor] = ACTIONS(12132), + [anon_sym_BSLASHcolorbox] = ACTIONS(12132), + [anon_sym_BSLASHtextcolor] = ACTIONS(12132), + [anon_sym_BSLASHpagecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12132), + }, + [916] = { + [sym_generic_command_name] = ACTIONS(12189), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12189), + [aux_sym_chapter_token1] = ACTIONS(12189), + [aux_sym_section_token1] = ACTIONS(12189), + [aux_sym_subsection_token1] = ACTIONS(12189), + [aux_sym_subsubsection_token1] = ACTIONS(12189), + [aux_sym_paragraph_token1] = ACTIONS(12189), + [aux_sym_subparagraph_token1] = ACTIONS(12189), + [anon_sym_BSLASHitem] = ACTIONS(12189), + [anon_sym_LBRACK] = ACTIONS(12187), + [anon_sym_LBRACE] = ACTIONS(12187), + [anon_sym_LPAREN] = ACTIONS(12187), + [anon_sym_COMMA] = ACTIONS(12187), + [anon_sym_EQ] = ACTIONS(12187), + [sym_word] = ACTIONS(12187), + [sym_param] = ACTIONS(12187), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12187), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12187), + [anon_sym_DOLLAR] = ACTIONS(12189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12187), + [anon_sym_BSLASHbegin] = ACTIONS(12189), + [anon_sym_BSLASHcaption] = ACTIONS(12189), + [anon_sym_BSLASHcite] = ACTIONS(12189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCite] = ACTIONS(12189), + [anon_sym_BSLASHnocite] = ACTIONS(12189), + [anon_sym_BSLASHcitet] = ACTIONS(12189), + [anon_sym_BSLASHcitep] = ACTIONS(12189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteauthor] = ACTIONS(12189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitetitle] = ACTIONS(12189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteyear] = ACTIONS(12189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitedate] = ACTIONS(12189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteurl] = ACTIONS(12189), + [anon_sym_BSLASHfullcite] = ACTIONS(12189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12189), + [anon_sym_BSLASHcitealt] = ACTIONS(12189), + [anon_sym_BSLASHcitealp] = ACTIONS(12189), + [anon_sym_BSLASHcitetext] = ACTIONS(12189), + [anon_sym_BSLASHparencite] = ACTIONS(12189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHParencite] = ACTIONS(12189), + [anon_sym_BSLASHfootcite] = ACTIONS(12189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12189), + [anon_sym_BSLASHtextcite] = ACTIONS(12189), + [anon_sym_BSLASHTextcite] = ACTIONS(12189), + [anon_sym_BSLASHsmartcite] = ACTIONS(12189), + [anon_sym_BSLASHSmartcite] = ACTIONS(12189), + [anon_sym_BSLASHsupercite] = ACTIONS(12189), + [anon_sym_BSLASHautocite] = ACTIONS(12189), + [anon_sym_BSLASHAutocite] = ACTIONS(12189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHvolcite] = ACTIONS(12189), + [anon_sym_BSLASHVolcite] = ACTIONS(12189), + [anon_sym_BSLASHpvolcite] = ACTIONS(12189), + [anon_sym_BSLASHPvolcite] = ACTIONS(12189), + [anon_sym_BSLASHfvolcite] = ACTIONS(12189), + [anon_sym_BSLASHftvolcite] = ACTIONS(12189), + [anon_sym_BSLASHsvolcite] = ACTIONS(12189), + [anon_sym_BSLASHSvolcite] = ACTIONS(12189), + [anon_sym_BSLASHtvolcite] = ACTIONS(12189), + [anon_sym_BSLASHTvolcite] = ACTIONS(12189), + [anon_sym_BSLASHavolcite] = ACTIONS(12189), + [anon_sym_BSLASHAvolcite] = ACTIONS(12189), + [anon_sym_BSLASHnotecite] = ACTIONS(12189), + [anon_sym_BSLASHpnotecite] = ACTIONS(12189), + [anon_sym_BSLASHPnotecite] = ACTIONS(12189), + [anon_sym_BSLASHfnotecite] = ACTIONS(12189), + [anon_sym_BSLASHusepackage] = ACTIONS(12189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12189), + [anon_sym_BSLASHinclude] = ACTIONS(12189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12189), + [anon_sym_BSLASHinput] = ACTIONS(12189), + [anon_sym_BSLASHsubfile] = ACTIONS(12189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12189), + [anon_sym_BSLASHbibliography] = ACTIONS(12189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12189), + [anon_sym_BSLASHincludesvg] = ACTIONS(12189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12189), + [anon_sym_BSLASHimport] = ACTIONS(12189), + [anon_sym_BSLASHsubimport] = ACTIONS(12189), + [anon_sym_BSLASHinputfrom] = ACTIONS(12189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12189), + [anon_sym_BSLASHincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHlabel] = ACTIONS(12189), + [anon_sym_BSLASHref] = ACTIONS(12189), + [anon_sym_BSLASHvref] = ACTIONS(12189), + [anon_sym_BSLASHVref] = ACTIONS(12189), + [anon_sym_BSLASHautoref] = ACTIONS(12189), + [anon_sym_BSLASHpageref] = ACTIONS(12189), + [anon_sym_BSLASHcref] = ACTIONS(12189), + [anon_sym_BSLASHCref] = ACTIONS(12189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnameCref] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHlabelcref] = ACTIONS(12189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12189), + [anon_sym_BSLASHeqref] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange] = ACTIONS(12189), + [anon_sym_BSLASHCrefrange] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewlabel] = ACTIONS(12189), + [anon_sym_BSLASHnewcommand] = ACTIONS(12189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12189), + [anon_sym_BSLASHgls] = ACTIONS(12189), + [anon_sym_BSLASHGls] = ACTIONS(12189), + [anon_sym_BSLASHGLS] = ACTIONS(12189), + [anon_sym_BSLASHglspl] = ACTIONS(12189), + [anon_sym_BSLASHGlspl] = ACTIONS(12189), + [anon_sym_BSLASHGLSpl] = ACTIONS(12189), + [anon_sym_BSLASHglsdisp] = ACTIONS(12189), + [anon_sym_BSLASHglslink] = ACTIONS(12189), + [anon_sym_BSLASHglstext] = ACTIONS(12189), + [anon_sym_BSLASHGlstext] = ACTIONS(12189), + [anon_sym_BSLASHGLStext] = ACTIONS(12189), + [anon_sym_BSLASHglsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12189), + [anon_sym_BSLASHglsplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSplural] = ACTIONS(12189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHglsname] = ACTIONS(12189), + [anon_sym_BSLASHGlsname] = ACTIONS(12189), + [anon_sym_BSLASHGLSname] = ACTIONS(12189), + [anon_sym_BSLASHglssymbol] = ACTIONS(12189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12189), + [anon_sym_BSLASHglsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12189), + [anon_sym_BSLASHglsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12189), + [anon_sym_BSLASHglsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12189), + [anon_sym_BSLASHglsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12189), + [anon_sym_BSLASHglsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12189), + [anon_sym_BSLASHnewacronym] = ACTIONS(12189), + [anon_sym_BSLASHacrshort] = ACTIONS(12189), + [anon_sym_BSLASHAcrshort] = ACTIONS(12189), + [anon_sym_BSLASHACRshort] = ACTIONS(12189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12189), + [anon_sym_BSLASHacrlong] = ACTIONS(12189), + [anon_sym_BSLASHAcrlong] = ACTIONS(12189), + [anon_sym_BSLASHACRlong] = ACTIONS(12189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12189), + [anon_sym_BSLASHacrfull] = ACTIONS(12189), + [anon_sym_BSLASHAcrfull] = ACTIONS(12189), + [anon_sym_BSLASHACRfull] = ACTIONS(12189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12189), + [anon_sym_BSLASHacs] = ACTIONS(12189), + [anon_sym_BSLASHAcs] = ACTIONS(12189), + [anon_sym_BSLASHacsp] = ACTIONS(12189), + [anon_sym_BSLASHAcsp] = ACTIONS(12189), + [anon_sym_BSLASHacl] = ACTIONS(12189), + [anon_sym_BSLASHAcl] = ACTIONS(12189), + [anon_sym_BSLASHaclp] = ACTIONS(12189), + [anon_sym_BSLASHAclp] = ACTIONS(12189), + [anon_sym_BSLASHacf] = ACTIONS(12189), + [anon_sym_BSLASHAcf] = ACTIONS(12189), + [anon_sym_BSLASHacfp] = ACTIONS(12189), + [anon_sym_BSLASHAcfp] = ACTIONS(12189), + [anon_sym_BSLASHac] = ACTIONS(12189), + [anon_sym_BSLASHAc] = ACTIONS(12189), + [anon_sym_BSLASHacp] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12189), + [anon_sym_BSLASHcolor] = ACTIONS(12189), + [anon_sym_BSLASHcolorbox] = ACTIONS(12189), + [anon_sym_BSLASHtextcolor] = ACTIONS(12189), + [anon_sym_BSLASHpagecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12189), + }, + [917] = { + [sym_generic_command_name] = ACTIONS(12251), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12251), + [aux_sym_chapter_token1] = ACTIONS(12251), + [aux_sym_section_token1] = ACTIONS(12251), + [aux_sym_subsection_token1] = ACTIONS(12251), + [aux_sym_subsubsection_token1] = ACTIONS(12251), + [aux_sym_paragraph_token1] = ACTIONS(12251), + [aux_sym_subparagraph_token1] = ACTIONS(12251), + [anon_sym_BSLASHitem] = ACTIONS(12251), + [anon_sym_LBRACK] = ACTIONS(12249), + [anon_sym_LBRACE] = ACTIONS(12249), + [anon_sym_LPAREN] = ACTIONS(12249), + [anon_sym_COMMA] = ACTIONS(12249), + [anon_sym_EQ] = ACTIONS(12249), + [sym_word] = ACTIONS(12249), + [sym_param] = ACTIONS(12249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12249), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12249), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12249), + [anon_sym_DOLLAR] = ACTIONS(12251), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12249), + [anon_sym_BSLASHbegin] = ACTIONS(12251), + [anon_sym_BSLASHcaption] = ACTIONS(12251), + [anon_sym_BSLASHcite] = ACTIONS(12251), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCite] = ACTIONS(12251), + [anon_sym_BSLASHnocite] = ACTIONS(12251), + [anon_sym_BSLASHcitet] = ACTIONS(12251), + [anon_sym_BSLASHcitep] = ACTIONS(12251), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteauthor] = ACTIONS(12251), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12251), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitetitle] = ACTIONS(12251), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteyear] = ACTIONS(12251), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitedate] = ACTIONS(12251), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteurl] = ACTIONS(12251), + [anon_sym_BSLASHfullcite] = ACTIONS(12251), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12251), + [anon_sym_BSLASHcitealt] = ACTIONS(12251), + [anon_sym_BSLASHcitealp] = ACTIONS(12251), + [anon_sym_BSLASHcitetext] = ACTIONS(12251), + [anon_sym_BSLASHparencite] = ACTIONS(12251), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHParencite] = ACTIONS(12251), + [anon_sym_BSLASHfootcite] = ACTIONS(12251), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12251), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12251), + [anon_sym_BSLASHtextcite] = ACTIONS(12251), + [anon_sym_BSLASHTextcite] = ACTIONS(12251), + [anon_sym_BSLASHsmartcite] = ACTIONS(12251), + [anon_sym_BSLASHSmartcite] = ACTIONS(12251), + [anon_sym_BSLASHsupercite] = ACTIONS(12251), + [anon_sym_BSLASHautocite] = ACTIONS(12251), + [anon_sym_BSLASHAutocite] = ACTIONS(12251), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHvolcite] = ACTIONS(12251), + [anon_sym_BSLASHVolcite] = ACTIONS(12251), + [anon_sym_BSLASHpvolcite] = ACTIONS(12251), + [anon_sym_BSLASHPvolcite] = ACTIONS(12251), + [anon_sym_BSLASHfvolcite] = ACTIONS(12251), + [anon_sym_BSLASHftvolcite] = ACTIONS(12251), + [anon_sym_BSLASHsvolcite] = ACTIONS(12251), + [anon_sym_BSLASHSvolcite] = ACTIONS(12251), + [anon_sym_BSLASHtvolcite] = ACTIONS(12251), + [anon_sym_BSLASHTvolcite] = ACTIONS(12251), + [anon_sym_BSLASHavolcite] = ACTIONS(12251), + [anon_sym_BSLASHAvolcite] = ACTIONS(12251), + [anon_sym_BSLASHnotecite] = ACTIONS(12251), + [anon_sym_BSLASHpnotecite] = ACTIONS(12251), + [anon_sym_BSLASHPnotecite] = ACTIONS(12251), + [anon_sym_BSLASHfnotecite] = ACTIONS(12251), + [anon_sym_BSLASHusepackage] = ACTIONS(12251), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12251), + [anon_sym_BSLASHinclude] = ACTIONS(12251), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12251), + [anon_sym_BSLASHinput] = ACTIONS(12251), + [anon_sym_BSLASHsubfile] = ACTIONS(12251), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12251), + [anon_sym_BSLASHbibliography] = ACTIONS(12251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12251), + [anon_sym_BSLASHincludesvg] = ACTIONS(12251), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12251), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12251), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12251), + [anon_sym_BSLASHimport] = ACTIONS(12251), + [anon_sym_BSLASHsubimport] = ACTIONS(12251), + [anon_sym_BSLASHinputfrom] = ACTIONS(12251), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12251), + [anon_sym_BSLASHincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHlabel] = ACTIONS(12251), + [anon_sym_BSLASHref] = ACTIONS(12251), + [anon_sym_BSLASHvref] = ACTIONS(12251), + [anon_sym_BSLASHVref] = ACTIONS(12251), + [anon_sym_BSLASHautoref] = ACTIONS(12251), + [anon_sym_BSLASHpageref] = ACTIONS(12251), + [anon_sym_BSLASHcref] = ACTIONS(12251), + [anon_sym_BSLASHCref] = ACTIONS(12251), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnameCref] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHlabelcref] = ACTIONS(12251), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12251), + [anon_sym_BSLASHeqref] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange] = ACTIONS(12251), + [anon_sym_BSLASHCrefrange] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewlabel] = ACTIONS(12251), + [anon_sym_BSLASHnewcommand] = ACTIONS(12251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12251), + [anon_sym_BSLASHgls] = ACTIONS(12251), + [anon_sym_BSLASHGls] = ACTIONS(12251), + [anon_sym_BSLASHGLS] = ACTIONS(12251), + [anon_sym_BSLASHglspl] = ACTIONS(12251), + [anon_sym_BSLASHGlspl] = ACTIONS(12251), + [anon_sym_BSLASHGLSpl] = ACTIONS(12251), + [anon_sym_BSLASHglsdisp] = ACTIONS(12251), + [anon_sym_BSLASHglslink] = ACTIONS(12251), + [anon_sym_BSLASHglstext] = ACTIONS(12251), + [anon_sym_BSLASHGlstext] = ACTIONS(12251), + [anon_sym_BSLASHGLStext] = ACTIONS(12251), + [anon_sym_BSLASHglsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12251), + [anon_sym_BSLASHglsplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSplural] = ACTIONS(12251), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHglsname] = ACTIONS(12251), + [anon_sym_BSLASHGlsname] = ACTIONS(12251), + [anon_sym_BSLASHGLSname] = ACTIONS(12251), + [anon_sym_BSLASHglssymbol] = ACTIONS(12251), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12251), + [anon_sym_BSLASHglsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12251), + [anon_sym_BSLASHglsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12251), + [anon_sym_BSLASHglsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12251), + [anon_sym_BSLASHglsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12251), + [anon_sym_BSLASHglsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12251), + [anon_sym_BSLASHnewacronym] = ACTIONS(12251), + [anon_sym_BSLASHacrshort] = ACTIONS(12251), + [anon_sym_BSLASHAcrshort] = ACTIONS(12251), + [anon_sym_BSLASHACRshort] = ACTIONS(12251), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12251), + [anon_sym_BSLASHacrlong] = ACTIONS(12251), + [anon_sym_BSLASHAcrlong] = ACTIONS(12251), + [anon_sym_BSLASHACRlong] = ACTIONS(12251), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12251), + [anon_sym_BSLASHacrfull] = ACTIONS(12251), + [anon_sym_BSLASHAcrfull] = ACTIONS(12251), + [anon_sym_BSLASHACRfull] = ACTIONS(12251), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12251), + [anon_sym_BSLASHacs] = ACTIONS(12251), + [anon_sym_BSLASHAcs] = ACTIONS(12251), + [anon_sym_BSLASHacsp] = ACTIONS(12251), + [anon_sym_BSLASHAcsp] = ACTIONS(12251), + [anon_sym_BSLASHacl] = ACTIONS(12251), + [anon_sym_BSLASHAcl] = ACTIONS(12251), + [anon_sym_BSLASHaclp] = ACTIONS(12251), + [anon_sym_BSLASHAclp] = ACTIONS(12251), + [anon_sym_BSLASHacf] = ACTIONS(12251), + [anon_sym_BSLASHAcf] = ACTIONS(12251), + [anon_sym_BSLASHacfp] = ACTIONS(12251), + [anon_sym_BSLASHAcfp] = ACTIONS(12251), + [anon_sym_BSLASHac] = ACTIONS(12251), + [anon_sym_BSLASHAc] = ACTIONS(12251), + [anon_sym_BSLASHacp] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12251), + [anon_sym_BSLASHcolor] = ACTIONS(12251), + [anon_sym_BSLASHcolorbox] = ACTIONS(12251), + [anon_sym_BSLASHtextcolor] = ACTIONS(12251), + [anon_sym_BSLASHpagecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12251), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12251), + }, + [918] = { + [sym_generic_command_name] = ACTIONS(12259), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12259), + [aux_sym_chapter_token1] = ACTIONS(12259), + [aux_sym_section_token1] = ACTIONS(12259), + [aux_sym_subsection_token1] = ACTIONS(12259), + [aux_sym_subsubsection_token1] = ACTIONS(12259), + [aux_sym_paragraph_token1] = ACTIONS(12259), + [aux_sym_subparagraph_token1] = ACTIONS(12259), + [anon_sym_BSLASHitem] = ACTIONS(12259), + [anon_sym_LBRACK] = ACTIONS(12257), + [anon_sym_LBRACE] = ACTIONS(12257), + [anon_sym_LPAREN] = ACTIONS(12257), + [anon_sym_COMMA] = ACTIONS(12257), + [anon_sym_EQ] = ACTIONS(12257), + [sym_word] = ACTIONS(12257), + [sym_param] = ACTIONS(12257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12257), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12257), + [anon_sym_DOLLAR] = ACTIONS(12259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12257), + [anon_sym_BSLASHbegin] = ACTIONS(12259), + [anon_sym_BSLASHcaption] = ACTIONS(12259), + [anon_sym_BSLASHcite] = ACTIONS(12259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCite] = ACTIONS(12259), + [anon_sym_BSLASHnocite] = ACTIONS(12259), + [anon_sym_BSLASHcitet] = ACTIONS(12259), + [anon_sym_BSLASHcitep] = ACTIONS(12259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteauthor] = ACTIONS(12259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitetitle] = ACTIONS(12259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteyear] = ACTIONS(12259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitedate] = ACTIONS(12259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteurl] = ACTIONS(12259), + [anon_sym_BSLASHfullcite] = ACTIONS(12259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12259), + [anon_sym_BSLASHcitealt] = ACTIONS(12259), + [anon_sym_BSLASHcitealp] = ACTIONS(12259), + [anon_sym_BSLASHcitetext] = ACTIONS(12259), + [anon_sym_BSLASHparencite] = ACTIONS(12259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHParencite] = ACTIONS(12259), + [anon_sym_BSLASHfootcite] = ACTIONS(12259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12259), + [anon_sym_BSLASHtextcite] = ACTIONS(12259), + [anon_sym_BSLASHTextcite] = ACTIONS(12259), + [anon_sym_BSLASHsmartcite] = ACTIONS(12259), + [anon_sym_BSLASHSmartcite] = ACTIONS(12259), + [anon_sym_BSLASHsupercite] = ACTIONS(12259), + [anon_sym_BSLASHautocite] = ACTIONS(12259), + [anon_sym_BSLASHAutocite] = ACTIONS(12259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHvolcite] = ACTIONS(12259), + [anon_sym_BSLASHVolcite] = ACTIONS(12259), + [anon_sym_BSLASHpvolcite] = ACTIONS(12259), + [anon_sym_BSLASHPvolcite] = ACTIONS(12259), + [anon_sym_BSLASHfvolcite] = ACTIONS(12259), + [anon_sym_BSLASHftvolcite] = ACTIONS(12259), + [anon_sym_BSLASHsvolcite] = ACTIONS(12259), + [anon_sym_BSLASHSvolcite] = ACTIONS(12259), + [anon_sym_BSLASHtvolcite] = ACTIONS(12259), + [anon_sym_BSLASHTvolcite] = ACTIONS(12259), + [anon_sym_BSLASHavolcite] = ACTIONS(12259), + [anon_sym_BSLASHAvolcite] = ACTIONS(12259), + [anon_sym_BSLASHnotecite] = ACTIONS(12259), + [anon_sym_BSLASHpnotecite] = ACTIONS(12259), + [anon_sym_BSLASHPnotecite] = ACTIONS(12259), + [anon_sym_BSLASHfnotecite] = ACTIONS(12259), + [anon_sym_BSLASHusepackage] = ACTIONS(12259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12259), + [anon_sym_BSLASHinclude] = ACTIONS(12259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12259), + [anon_sym_BSLASHinput] = ACTIONS(12259), + [anon_sym_BSLASHsubfile] = ACTIONS(12259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12259), + [anon_sym_BSLASHbibliography] = ACTIONS(12259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12259), + [anon_sym_BSLASHincludesvg] = ACTIONS(12259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12259), + [anon_sym_BSLASHimport] = ACTIONS(12259), + [anon_sym_BSLASHsubimport] = ACTIONS(12259), + [anon_sym_BSLASHinputfrom] = ACTIONS(12259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12259), + [anon_sym_BSLASHincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHlabel] = ACTIONS(12259), + [anon_sym_BSLASHref] = ACTIONS(12259), + [anon_sym_BSLASHvref] = ACTIONS(12259), + [anon_sym_BSLASHVref] = ACTIONS(12259), + [anon_sym_BSLASHautoref] = ACTIONS(12259), + [anon_sym_BSLASHpageref] = ACTIONS(12259), + [anon_sym_BSLASHcref] = ACTIONS(12259), + [anon_sym_BSLASHCref] = ACTIONS(12259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnameCref] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHlabelcref] = ACTIONS(12259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12259), + [anon_sym_BSLASHeqref] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange] = ACTIONS(12259), + [anon_sym_BSLASHCrefrange] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewlabel] = ACTIONS(12259), + [anon_sym_BSLASHnewcommand] = ACTIONS(12259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12259), + [anon_sym_BSLASHgls] = ACTIONS(12259), + [anon_sym_BSLASHGls] = ACTIONS(12259), + [anon_sym_BSLASHGLS] = ACTIONS(12259), + [anon_sym_BSLASHglspl] = ACTIONS(12259), + [anon_sym_BSLASHGlspl] = ACTIONS(12259), + [anon_sym_BSLASHGLSpl] = ACTIONS(12259), + [anon_sym_BSLASHglsdisp] = ACTIONS(12259), + [anon_sym_BSLASHglslink] = ACTIONS(12259), + [anon_sym_BSLASHglstext] = ACTIONS(12259), + [anon_sym_BSLASHGlstext] = ACTIONS(12259), + [anon_sym_BSLASHGLStext] = ACTIONS(12259), + [anon_sym_BSLASHglsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12259), + [anon_sym_BSLASHglsplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSplural] = ACTIONS(12259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHglsname] = ACTIONS(12259), + [anon_sym_BSLASHGlsname] = ACTIONS(12259), + [anon_sym_BSLASHGLSname] = ACTIONS(12259), + [anon_sym_BSLASHglssymbol] = ACTIONS(12259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12259), + [anon_sym_BSLASHglsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12259), + [anon_sym_BSLASHglsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12259), + [anon_sym_BSLASHglsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12259), + [anon_sym_BSLASHglsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12259), + [anon_sym_BSLASHglsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12259), + [anon_sym_BSLASHnewacronym] = ACTIONS(12259), + [anon_sym_BSLASHacrshort] = ACTIONS(12259), + [anon_sym_BSLASHAcrshort] = ACTIONS(12259), + [anon_sym_BSLASHACRshort] = ACTIONS(12259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12259), + [anon_sym_BSLASHacrlong] = ACTIONS(12259), + [anon_sym_BSLASHAcrlong] = ACTIONS(12259), + [anon_sym_BSLASHACRlong] = ACTIONS(12259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12259), + [anon_sym_BSLASHacrfull] = ACTIONS(12259), + [anon_sym_BSLASHAcrfull] = ACTIONS(12259), + [anon_sym_BSLASHACRfull] = ACTIONS(12259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12259), + [anon_sym_BSLASHacs] = ACTIONS(12259), + [anon_sym_BSLASHAcs] = ACTIONS(12259), + [anon_sym_BSLASHacsp] = ACTIONS(12259), + [anon_sym_BSLASHAcsp] = ACTIONS(12259), + [anon_sym_BSLASHacl] = ACTIONS(12259), + [anon_sym_BSLASHAcl] = ACTIONS(12259), + [anon_sym_BSLASHaclp] = ACTIONS(12259), + [anon_sym_BSLASHAclp] = ACTIONS(12259), + [anon_sym_BSLASHacf] = ACTIONS(12259), + [anon_sym_BSLASHAcf] = ACTIONS(12259), + [anon_sym_BSLASHacfp] = ACTIONS(12259), + [anon_sym_BSLASHAcfp] = ACTIONS(12259), + [anon_sym_BSLASHac] = ACTIONS(12259), + [anon_sym_BSLASHAc] = ACTIONS(12259), + [anon_sym_BSLASHacp] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12259), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12259), + [anon_sym_BSLASHcolor] = ACTIONS(12259), + [anon_sym_BSLASHcolorbox] = ACTIONS(12259), + [anon_sym_BSLASHtextcolor] = ACTIONS(12259), + [anon_sym_BSLASHpagecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12259), + }, + [919] = { + [sym_generic_command_name] = ACTIONS(12263), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12263), + [aux_sym_chapter_token1] = ACTIONS(12263), + [aux_sym_section_token1] = ACTIONS(12263), + [aux_sym_subsection_token1] = ACTIONS(12263), + [aux_sym_subsubsection_token1] = ACTIONS(12263), + [aux_sym_paragraph_token1] = ACTIONS(12263), + [aux_sym_subparagraph_token1] = ACTIONS(12263), + [anon_sym_BSLASHitem] = ACTIONS(12263), + [anon_sym_LBRACK] = ACTIONS(12261), + [anon_sym_LBRACE] = ACTIONS(12261), + [anon_sym_LPAREN] = ACTIONS(12261), + [anon_sym_COMMA] = ACTIONS(12261), + [anon_sym_EQ] = ACTIONS(12261), + [sym_word] = ACTIONS(12261), + [sym_param] = ACTIONS(12261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12261), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12261), + [anon_sym_DOLLAR] = ACTIONS(12263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12261), + [anon_sym_BSLASHbegin] = ACTIONS(12263), + [anon_sym_BSLASHcaption] = ACTIONS(12263), + [anon_sym_BSLASHcite] = ACTIONS(12263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCite] = ACTIONS(12263), + [anon_sym_BSLASHnocite] = ACTIONS(12263), + [anon_sym_BSLASHcitet] = ACTIONS(12263), + [anon_sym_BSLASHcitep] = ACTIONS(12263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteauthor] = ACTIONS(12263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitetitle] = ACTIONS(12263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteyear] = ACTIONS(12263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitedate] = ACTIONS(12263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteurl] = ACTIONS(12263), + [anon_sym_BSLASHfullcite] = ACTIONS(12263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12263), + [anon_sym_BSLASHcitealt] = ACTIONS(12263), + [anon_sym_BSLASHcitealp] = ACTIONS(12263), + [anon_sym_BSLASHcitetext] = ACTIONS(12263), + [anon_sym_BSLASHparencite] = ACTIONS(12263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHParencite] = ACTIONS(12263), + [anon_sym_BSLASHfootcite] = ACTIONS(12263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12263), + [anon_sym_BSLASHtextcite] = ACTIONS(12263), + [anon_sym_BSLASHTextcite] = ACTIONS(12263), + [anon_sym_BSLASHsmartcite] = ACTIONS(12263), + [anon_sym_BSLASHSmartcite] = ACTIONS(12263), + [anon_sym_BSLASHsupercite] = ACTIONS(12263), + [anon_sym_BSLASHautocite] = ACTIONS(12263), + [anon_sym_BSLASHAutocite] = ACTIONS(12263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHvolcite] = ACTIONS(12263), + [anon_sym_BSLASHVolcite] = ACTIONS(12263), + [anon_sym_BSLASHpvolcite] = ACTIONS(12263), + [anon_sym_BSLASHPvolcite] = ACTIONS(12263), + [anon_sym_BSLASHfvolcite] = ACTIONS(12263), + [anon_sym_BSLASHftvolcite] = ACTIONS(12263), + [anon_sym_BSLASHsvolcite] = ACTIONS(12263), + [anon_sym_BSLASHSvolcite] = ACTIONS(12263), + [anon_sym_BSLASHtvolcite] = ACTIONS(12263), + [anon_sym_BSLASHTvolcite] = ACTIONS(12263), + [anon_sym_BSLASHavolcite] = ACTIONS(12263), + [anon_sym_BSLASHAvolcite] = ACTIONS(12263), + [anon_sym_BSLASHnotecite] = ACTIONS(12263), + [anon_sym_BSLASHpnotecite] = ACTIONS(12263), + [anon_sym_BSLASHPnotecite] = ACTIONS(12263), + [anon_sym_BSLASHfnotecite] = ACTIONS(12263), + [anon_sym_BSLASHusepackage] = ACTIONS(12263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12263), + [anon_sym_BSLASHinclude] = ACTIONS(12263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12263), + [anon_sym_BSLASHinput] = ACTIONS(12263), + [anon_sym_BSLASHsubfile] = ACTIONS(12263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12263), + [anon_sym_BSLASHbibliography] = ACTIONS(12263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12263), + [anon_sym_BSLASHincludesvg] = ACTIONS(12263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12263), + [anon_sym_BSLASHimport] = ACTIONS(12263), + [anon_sym_BSLASHsubimport] = ACTIONS(12263), + [anon_sym_BSLASHinputfrom] = ACTIONS(12263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12263), + [anon_sym_BSLASHincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHlabel] = ACTIONS(12263), + [anon_sym_BSLASHref] = ACTIONS(12263), + [anon_sym_BSLASHvref] = ACTIONS(12263), + [anon_sym_BSLASHVref] = ACTIONS(12263), + [anon_sym_BSLASHautoref] = ACTIONS(12263), + [anon_sym_BSLASHpageref] = ACTIONS(12263), + [anon_sym_BSLASHcref] = ACTIONS(12263), + [anon_sym_BSLASHCref] = ACTIONS(12263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnameCref] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHlabelcref] = ACTIONS(12263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12263), + [anon_sym_BSLASHeqref] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange] = ACTIONS(12263), + [anon_sym_BSLASHCrefrange] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewlabel] = ACTIONS(12263), + [anon_sym_BSLASHnewcommand] = ACTIONS(12263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12263), + [anon_sym_BSLASHgls] = ACTIONS(12263), + [anon_sym_BSLASHGls] = ACTIONS(12263), + [anon_sym_BSLASHGLS] = ACTIONS(12263), + [anon_sym_BSLASHglspl] = ACTIONS(12263), + [anon_sym_BSLASHGlspl] = ACTIONS(12263), + [anon_sym_BSLASHGLSpl] = ACTIONS(12263), + [anon_sym_BSLASHglsdisp] = ACTIONS(12263), + [anon_sym_BSLASHglslink] = ACTIONS(12263), + [anon_sym_BSLASHglstext] = ACTIONS(12263), + [anon_sym_BSLASHGlstext] = ACTIONS(12263), + [anon_sym_BSLASHGLStext] = ACTIONS(12263), + [anon_sym_BSLASHglsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12263), + [anon_sym_BSLASHglsplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSplural] = ACTIONS(12263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHglsname] = ACTIONS(12263), + [anon_sym_BSLASHGlsname] = ACTIONS(12263), + [anon_sym_BSLASHGLSname] = ACTIONS(12263), + [anon_sym_BSLASHglssymbol] = ACTIONS(12263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12263), + [anon_sym_BSLASHglsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12263), + [anon_sym_BSLASHglsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12263), + [anon_sym_BSLASHglsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12263), + [anon_sym_BSLASHglsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12263), + [anon_sym_BSLASHglsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12263), + [anon_sym_BSLASHnewacronym] = ACTIONS(12263), + [anon_sym_BSLASHacrshort] = ACTIONS(12263), + [anon_sym_BSLASHAcrshort] = ACTIONS(12263), + [anon_sym_BSLASHACRshort] = ACTIONS(12263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12263), + [anon_sym_BSLASHacrlong] = ACTIONS(12263), + [anon_sym_BSLASHAcrlong] = ACTIONS(12263), + [anon_sym_BSLASHACRlong] = ACTIONS(12263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12263), + [anon_sym_BSLASHacrfull] = ACTIONS(12263), + [anon_sym_BSLASHAcrfull] = ACTIONS(12263), + [anon_sym_BSLASHACRfull] = ACTIONS(12263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12263), + [anon_sym_BSLASHacs] = ACTIONS(12263), + [anon_sym_BSLASHAcs] = ACTIONS(12263), + [anon_sym_BSLASHacsp] = ACTIONS(12263), + [anon_sym_BSLASHAcsp] = ACTIONS(12263), + [anon_sym_BSLASHacl] = ACTIONS(12263), + [anon_sym_BSLASHAcl] = ACTIONS(12263), + [anon_sym_BSLASHaclp] = ACTIONS(12263), + [anon_sym_BSLASHAclp] = ACTIONS(12263), + [anon_sym_BSLASHacf] = ACTIONS(12263), + [anon_sym_BSLASHAcf] = ACTIONS(12263), + [anon_sym_BSLASHacfp] = ACTIONS(12263), + [anon_sym_BSLASHAcfp] = ACTIONS(12263), + [anon_sym_BSLASHac] = ACTIONS(12263), + [anon_sym_BSLASHAc] = ACTIONS(12263), + [anon_sym_BSLASHacp] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12263), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12263), + [anon_sym_BSLASHcolor] = ACTIONS(12263), + [anon_sym_BSLASHcolorbox] = ACTIONS(12263), + [anon_sym_BSLASHtextcolor] = ACTIONS(12263), + [anon_sym_BSLASHpagecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12263), + }, + [920] = { + [sym_brace_group] = STATE(920), + [sym_bracket_group] = STATE(920), + [sym_paren_group] = STATE(920), + [aux_sym_generic_command_repeat1] = STATE(920), + [sym_generic_command_name] = ACTIONS(12002), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12002), + [aux_sym_subparagraph_token1] = ACTIONS(12002), + [anon_sym_BSLASHitem] = ACTIONS(12002), + [anon_sym_LBRACK] = ACTIONS(12676), + [anon_sym_RBRACK] = ACTIONS(12000), + [anon_sym_LBRACE] = ACTIONS(12679), + [anon_sym_RBRACE] = ACTIONS(12000), + [anon_sym_LPAREN] = ACTIONS(12682), + [anon_sym_COMMA] = ACTIONS(12000), + [anon_sym_EQ] = ACTIONS(12000), + [sym_word] = ACTIONS(12000), + [sym_param] = ACTIONS(12000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12000), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12000), + [anon_sym_DOLLAR] = ACTIONS(12002), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12000), + [anon_sym_BSLASHbegin] = ACTIONS(12002), + [anon_sym_BSLASHcaption] = ACTIONS(12002), + [anon_sym_BSLASHcite] = ACTIONS(12002), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCite] = ACTIONS(12002), + [anon_sym_BSLASHnocite] = ACTIONS(12002), + [anon_sym_BSLASHcitet] = ACTIONS(12002), + [anon_sym_BSLASHcitep] = ACTIONS(12002), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteauthor] = ACTIONS(12002), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12002), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitetitle] = ACTIONS(12002), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteyear] = ACTIONS(12002), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitedate] = ACTIONS(12002), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteurl] = ACTIONS(12002), + [anon_sym_BSLASHfullcite] = ACTIONS(12002), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12002), + [anon_sym_BSLASHcitealt] = ACTIONS(12002), + [anon_sym_BSLASHcitealp] = ACTIONS(12002), + [anon_sym_BSLASHcitetext] = ACTIONS(12002), + [anon_sym_BSLASHparencite] = ACTIONS(12002), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHParencite] = ACTIONS(12002), + [anon_sym_BSLASHfootcite] = ACTIONS(12002), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12002), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12002), + [anon_sym_BSLASHtextcite] = ACTIONS(12002), + [anon_sym_BSLASHTextcite] = ACTIONS(12002), + [anon_sym_BSLASHsmartcite] = ACTIONS(12002), + [anon_sym_BSLASHSmartcite] = ACTIONS(12002), + [anon_sym_BSLASHsupercite] = ACTIONS(12002), + [anon_sym_BSLASHautocite] = ACTIONS(12002), + [anon_sym_BSLASHAutocite] = ACTIONS(12002), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHvolcite] = ACTIONS(12002), + [anon_sym_BSLASHVolcite] = ACTIONS(12002), + [anon_sym_BSLASHpvolcite] = ACTIONS(12002), + [anon_sym_BSLASHPvolcite] = ACTIONS(12002), + [anon_sym_BSLASHfvolcite] = ACTIONS(12002), + [anon_sym_BSLASHftvolcite] = ACTIONS(12002), + [anon_sym_BSLASHsvolcite] = ACTIONS(12002), + [anon_sym_BSLASHSvolcite] = ACTIONS(12002), + [anon_sym_BSLASHtvolcite] = ACTIONS(12002), + [anon_sym_BSLASHTvolcite] = ACTIONS(12002), + [anon_sym_BSLASHavolcite] = ACTIONS(12002), + [anon_sym_BSLASHAvolcite] = ACTIONS(12002), + [anon_sym_BSLASHnotecite] = ACTIONS(12002), + [anon_sym_BSLASHpnotecite] = ACTIONS(12002), + [anon_sym_BSLASHPnotecite] = ACTIONS(12002), + [anon_sym_BSLASHfnotecite] = ACTIONS(12002), + [anon_sym_BSLASHusepackage] = ACTIONS(12002), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12002), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12002), + [anon_sym_BSLASHinclude] = ACTIONS(12002), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12002), + [anon_sym_BSLASHinput] = ACTIONS(12002), + [anon_sym_BSLASHsubfile] = ACTIONS(12002), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12002), + [anon_sym_BSLASHbibliography] = ACTIONS(12002), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12002), + [anon_sym_BSLASHincludesvg] = ACTIONS(12002), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12002), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12002), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12002), + [anon_sym_BSLASHimport] = ACTIONS(12002), + [anon_sym_BSLASHsubimport] = ACTIONS(12002), + [anon_sym_BSLASHinputfrom] = ACTIONS(12002), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12002), + [anon_sym_BSLASHincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHlabel] = ACTIONS(12002), + [anon_sym_BSLASHref] = ACTIONS(12002), + [anon_sym_BSLASHvref] = ACTIONS(12002), + [anon_sym_BSLASHVref] = ACTIONS(12002), + [anon_sym_BSLASHautoref] = ACTIONS(12002), + [anon_sym_BSLASHpageref] = ACTIONS(12002), + [anon_sym_BSLASHcref] = ACTIONS(12002), + [anon_sym_BSLASHCref] = ACTIONS(12002), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnameCref] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHlabelcref] = ACTIONS(12002), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12002), + [anon_sym_BSLASHeqref] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange] = ACTIONS(12002), + [anon_sym_BSLASHCrefrange] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewlabel] = ACTIONS(12002), + [anon_sym_BSLASHnewcommand] = ACTIONS(12002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12002), + [anon_sym_BSLASHgls] = ACTIONS(12002), + [anon_sym_BSLASHGls] = ACTIONS(12002), + [anon_sym_BSLASHGLS] = ACTIONS(12002), + [anon_sym_BSLASHglspl] = ACTIONS(12002), + [anon_sym_BSLASHGlspl] = ACTIONS(12002), + [anon_sym_BSLASHGLSpl] = ACTIONS(12002), + [anon_sym_BSLASHglsdisp] = ACTIONS(12002), + [anon_sym_BSLASHglslink] = ACTIONS(12002), + [anon_sym_BSLASHglstext] = ACTIONS(12002), + [anon_sym_BSLASHGlstext] = ACTIONS(12002), + [anon_sym_BSLASHGLStext] = ACTIONS(12002), + [anon_sym_BSLASHglsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12002), + [anon_sym_BSLASHglsplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSplural] = ACTIONS(12002), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHglsname] = ACTIONS(12002), + [anon_sym_BSLASHGlsname] = ACTIONS(12002), + [anon_sym_BSLASHGLSname] = ACTIONS(12002), + [anon_sym_BSLASHglssymbol] = ACTIONS(12002), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12002), + [anon_sym_BSLASHglsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12002), + [anon_sym_BSLASHglsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12002), + [anon_sym_BSLASHglsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12002), + [anon_sym_BSLASHglsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12002), + [anon_sym_BSLASHglsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12002), + [anon_sym_BSLASHnewacronym] = ACTIONS(12002), + [anon_sym_BSLASHacrshort] = ACTIONS(12002), + [anon_sym_BSLASHAcrshort] = ACTIONS(12002), + [anon_sym_BSLASHACRshort] = ACTIONS(12002), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12002), + [anon_sym_BSLASHacrlong] = ACTIONS(12002), + [anon_sym_BSLASHAcrlong] = ACTIONS(12002), + [anon_sym_BSLASHACRlong] = ACTIONS(12002), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12002), + [anon_sym_BSLASHacrfull] = ACTIONS(12002), + [anon_sym_BSLASHAcrfull] = ACTIONS(12002), + [anon_sym_BSLASHACRfull] = ACTIONS(12002), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12002), + [anon_sym_BSLASHacs] = ACTIONS(12002), + [anon_sym_BSLASHAcs] = ACTIONS(12002), + [anon_sym_BSLASHacsp] = ACTIONS(12002), + [anon_sym_BSLASHAcsp] = ACTIONS(12002), + [anon_sym_BSLASHacl] = ACTIONS(12002), + [anon_sym_BSLASHAcl] = ACTIONS(12002), + [anon_sym_BSLASHaclp] = ACTIONS(12002), + [anon_sym_BSLASHAclp] = ACTIONS(12002), + [anon_sym_BSLASHacf] = ACTIONS(12002), + [anon_sym_BSLASHAcf] = ACTIONS(12002), + [anon_sym_BSLASHacfp] = ACTIONS(12002), + [anon_sym_BSLASHAcfp] = ACTIONS(12002), + [anon_sym_BSLASHac] = ACTIONS(12002), + [anon_sym_BSLASHAc] = ACTIONS(12002), + [anon_sym_BSLASHacp] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12002), + [anon_sym_BSLASHcolor] = ACTIONS(12002), + [anon_sym_BSLASHcolorbox] = ACTIONS(12002), + [anon_sym_BSLASHtextcolor] = ACTIONS(12002), + [anon_sym_BSLASHpagecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12002), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12002), + }, + [921] = { + [sym_generic_command_name] = ACTIONS(12319), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12319), + [aux_sym_chapter_token1] = ACTIONS(12319), + [aux_sym_section_token1] = ACTIONS(12319), + [aux_sym_subsection_token1] = ACTIONS(12319), + [aux_sym_subsubsection_token1] = ACTIONS(12319), + [aux_sym_paragraph_token1] = ACTIONS(12319), + [aux_sym_subparagraph_token1] = ACTIONS(12319), + [anon_sym_BSLASHitem] = ACTIONS(12319), + [anon_sym_LBRACK] = ACTIONS(12317), + [anon_sym_LBRACE] = ACTIONS(12317), + [anon_sym_LPAREN] = ACTIONS(12317), + [anon_sym_COMMA] = ACTIONS(12317), + [anon_sym_EQ] = ACTIONS(12317), + [sym_word] = ACTIONS(12317), + [sym_param] = ACTIONS(12317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12317), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12317), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12317), + [anon_sym_DOLLAR] = ACTIONS(12319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12317), + [anon_sym_BSLASHbegin] = ACTIONS(12319), + [anon_sym_BSLASHcaption] = ACTIONS(12319), + [anon_sym_BSLASHcite] = ACTIONS(12319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCite] = ACTIONS(12319), + [anon_sym_BSLASHnocite] = ACTIONS(12319), + [anon_sym_BSLASHcitet] = ACTIONS(12319), + [anon_sym_BSLASHcitep] = ACTIONS(12319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteauthor] = ACTIONS(12319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitetitle] = ACTIONS(12319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteyear] = ACTIONS(12319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitedate] = ACTIONS(12319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteurl] = ACTIONS(12319), + [anon_sym_BSLASHfullcite] = ACTIONS(12319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12319), + [anon_sym_BSLASHcitealt] = ACTIONS(12319), + [anon_sym_BSLASHcitealp] = ACTIONS(12319), + [anon_sym_BSLASHcitetext] = ACTIONS(12319), + [anon_sym_BSLASHparencite] = ACTIONS(12319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHParencite] = ACTIONS(12319), + [anon_sym_BSLASHfootcite] = ACTIONS(12319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12319), + [anon_sym_BSLASHtextcite] = ACTIONS(12319), + [anon_sym_BSLASHTextcite] = ACTIONS(12319), + [anon_sym_BSLASHsmartcite] = ACTIONS(12319), + [anon_sym_BSLASHSmartcite] = ACTIONS(12319), + [anon_sym_BSLASHsupercite] = ACTIONS(12319), + [anon_sym_BSLASHautocite] = ACTIONS(12319), + [anon_sym_BSLASHAutocite] = ACTIONS(12319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHvolcite] = ACTIONS(12319), + [anon_sym_BSLASHVolcite] = ACTIONS(12319), + [anon_sym_BSLASHpvolcite] = ACTIONS(12319), + [anon_sym_BSLASHPvolcite] = ACTIONS(12319), + [anon_sym_BSLASHfvolcite] = ACTIONS(12319), + [anon_sym_BSLASHftvolcite] = ACTIONS(12319), + [anon_sym_BSLASHsvolcite] = ACTIONS(12319), + [anon_sym_BSLASHSvolcite] = ACTIONS(12319), + [anon_sym_BSLASHtvolcite] = ACTIONS(12319), + [anon_sym_BSLASHTvolcite] = ACTIONS(12319), + [anon_sym_BSLASHavolcite] = ACTIONS(12319), + [anon_sym_BSLASHAvolcite] = ACTIONS(12319), + [anon_sym_BSLASHnotecite] = ACTIONS(12319), + [anon_sym_BSLASHpnotecite] = ACTIONS(12319), + [anon_sym_BSLASHPnotecite] = ACTIONS(12319), + [anon_sym_BSLASHfnotecite] = ACTIONS(12319), + [anon_sym_BSLASHusepackage] = ACTIONS(12319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12319), + [anon_sym_BSLASHinclude] = ACTIONS(12319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12319), + [anon_sym_BSLASHinput] = ACTIONS(12319), + [anon_sym_BSLASHsubfile] = ACTIONS(12319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12319), + [anon_sym_BSLASHbibliography] = ACTIONS(12319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12319), + [anon_sym_BSLASHincludesvg] = ACTIONS(12319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12319), + [anon_sym_BSLASHimport] = ACTIONS(12319), + [anon_sym_BSLASHsubimport] = ACTIONS(12319), + [anon_sym_BSLASHinputfrom] = ACTIONS(12319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12319), + [anon_sym_BSLASHincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHlabel] = ACTIONS(12319), + [anon_sym_BSLASHref] = ACTIONS(12319), + [anon_sym_BSLASHvref] = ACTIONS(12319), + [anon_sym_BSLASHVref] = ACTIONS(12319), + [anon_sym_BSLASHautoref] = ACTIONS(12319), + [anon_sym_BSLASHpageref] = ACTIONS(12319), + [anon_sym_BSLASHcref] = ACTIONS(12319), + [anon_sym_BSLASHCref] = ACTIONS(12319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnameCref] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHlabelcref] = ACTIONS(12319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12319), + [anon_sym_BSLASHeqref] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange] = ACTIONS(12319), + [anon_sym_BSLASHCrefrange] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewlabel] = ACTIONS(12319), + [anon_sym_BSLASHnewcommand] = ACTIONS(12319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12319), + [anon_sym_BSLASHgls] = ACTIONS(12319), + [anon_sym_BSLASHGls] = ACTIONS(12319), + [anon_sym_BSLASHGLS] = ACTIONS(12319), + [anon_sym_BSLASHglspl] = ACTIONS(12319), + [anon_sym_BSLASHGlspl] = ACTIONS(12319), + [anon_sym_BSLASHGLSpl] = ACTIONS(12319), + [anon_sym_BSLASHglsdisp] = ACTIONS(12319), + [anon_sym_BSLASHglslink] = ACTIONS(12319), + [anon_sym_BSLASHglstext] = ACTIONS(12319), + [anon_sym_BSLASHGlstext] = ACTIONS(12319), + [anon_sym_BSLASHGLStext] = ACTIONS(12319), + [anon_sym_BSLASHglsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12319), + [anon_sym_BSLASHglsplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSplural] = ACTIONS(12319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHglsname] = ACTIONS(12319), + [anon_sym_BSLASHGlsname] = ACTIONS(12319), + [anon_sym_BSLASHGLSname] = ACTIONS(12319), + [anon_sym_BSLASHglssymbol] = ACTIONS(12319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12319), + [anon_sym_BSLASHglsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12319), + [anon_sym_BSLASHglsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12319), + [anon_sym_BSLASHglsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12319), + [anon_sym_BSLASHglsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12319), + [anon_sym_BSLASHglsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12319), + [anon_sym_BSLASHnewacronym] = ACTIONS(12319), + [anon_sym_BSLASHacrshort] = ACTIONS(12319), + [anon_sym_BSLASHAcrshort] = ACTIONS(12319), + [anon_sym_BSLASHACRshort] = ACTIONS(12319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12319), + [anon_sym_BSLASHacrlong] = ACTIONS(12319), + [anon_sym_BSLASHAcrlong] = ACTIONS(12319), + [anon_sym_BSLASHACRlong] = ACTIONS(12319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12319), + [anon_sym_BSLASHacrfull] = ACTIONS(12319), + [anon_sym_BSLASHAcrfull] = ACTIONS(12319), + [anon_sym_BSLASHACRfull] = ACTIONS(12319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12319), + [anon_sym_BSLASHacs] = ACTIONS(12319), + [anon_sym_BSLASHAcs] = ACTIONS(12319), + [anon_sym_BSLASHacsp] = ACTIONS(12319), + [anon_sym_BSLASHAcsp] = ACTIONS(12319), + [anon_sym_BSLASHacl] = ACTIONS(12319), + [anon_sym_BSLASHAcl] = ACTIONS(12319), + [anon_sym_BSLASHaclp] = ACTIONS(12319), + [anon_sym_BSLASHAclp] = ACTIONS(12319), + [anon_sym_BSLASHacf] = ACTIONS(12319), + [anon_sym_BSLASHAcf] = ACTIONS(12319), + [anon_sym_BSLASHacfp] = ACTIONS(12319), + [anon_sym_BSLASHAcfp] = ACTIONS(12319), + [anon_sym_BSLASHac] = ACTIONS(12319), + [anon_sym_BSLASHAc] = ACTIONS(12319), + [anon_sym_BSLASHacp] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12319), + [anon_sym_BSLASHcolor] = ACTIONS(12319), + [anon_sym_BSLASHcolorbox] = ACTIONS(12319), + [anon_sym_BSLASHtextcolor] = ACTIONS(12319), + [anon_sym_BSLASHpagecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12319), + }, + [922] = { + [sym_generic_command_name] = ACTIONS(12267), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12267), + [aux_sym_chapter_token1] = ACTIONS(12267), + [aux_sym_section_token1] = ACTIONS(12267), + [aux_sym_subsection_token1] = ACTIONS(12267), + [aux_sym_subsubsection_token1] = ACTIONS(12267), + [aux_sym_paragraph_token1] = ACTIONS(12267), + [aux_sym_subparagraph_token1] = ACTIONS(12267), + [anon_sym_BSLASHitem] = ACTIONS(12267), + [anon_sym_LBRACK] = ACTIONS(12265), + [anon_sym_LBRACE] = ACTIONS(12265), + [anon_sym_LPAREN] = ACTIONS(12265), + [anon_sym_COMMA] = ACTIONS(12265), + [anon_sym_EQ] = ACTIONS(12265), + [sym_word] = ACTIONS(12265), + [sym_param] = ACTIONS(12265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12265), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12265), + [anon_sym_DOLLAR] = ACTIONS(12267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12265), + [anon_sym_BSLASHbegin] = ACTIONS(12267), + [anon_sym_BSLASHcaption] = ACTIONS(12267), + [anon_sym_BSLASHcite] = ACTIONS(12267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCite] = ACTIONS(12267), + [anon_sym_BSLASHnocite] = ACTIONS(12267), + [anon_sym_BSLASHcitet] = ACTIONS(12267), + [anon_sym_BSLASHcitep] = ACTIONS(12267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteauthor] = ACTIONS(12267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitetitle] = ACTIONS(12267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteyear] = ACTIONS(12267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitedate] = ACTIONS(12267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteurl] = ACTIONS(12267), + [anon_sym_BSLASHfullcite] = ACTIONS(12267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12267), + [anon_sym_BSLASHcitealt] = ACTIONS(12267), + [anon_sym_BSLASHcitealp] = ACTIONS(12267), + [anon_sym_BSLASHcitetext] = ACTIONS(12267), + [anon_sym_BSLASHparencite] = ACTIONS(12267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHParencite] = ACTIONS(12267), + [anon_sym_BSLASHfootcite] = ACTIONS(12267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12267), + [anon_sym_BSLASHtextcite] = ACTIONS(12267), + [anon_sym_BSLASHTextcite] = ACTIONS(12267), + [anon_sym_BSLASHsmartcite] = ACTIONS(12267), + [anon_sym_BSLASHSmartcite] = ACTIONS(12267), + [anon_sym_BSLASHsupercite] = ACTIONS(12267), + [anon_sym_BSLASHautocite] = ACTIONS(12267), + [anon_sym_BSLASHAutocite] = ACTIONS(12267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHvolcite] = ACTIONS(12267), + [anon_sym_BSLASHVolcite] = ACTIONS(12267), + [anon_sym_BSLASHpvolcite] = ACTIONS(12267), + [anon_sym_BSLASHPvolcite] = ACTIONS(12267), + [anon_sym_BSLASHfvolcite] = ACTIONS(12267), + [anon_sym_BSLASHftvolcite] = ACTIONS(12267), + [anon_sym_BSLASHsvolcite] = ACTIONS(12267), + [anon_sym_BSLASHSvolcite] = ACTIONS(12267), + [anon_sym_BSLASHtvolcite] = ACTIONS(12267), + [anon_sym_BSLASHTvolcite] = ACTIONS(12267), + [anon_sym_BSLASHavolcite] = ACTIONS(12267), + [anon_sym_BSLASHAvolcite] = ACTIONS(12267), + [anon_sym_BSLASHnotecite] = ACTIONS(12267), + [anon_sym_BSLASHpnotecite] = ACTIONS(12267), + [anon_sym_BSLASHPnotecite] = ACTIONS(12267), + [anon_sym_BSLASHfnotecite] = ACTIONS(12267), + [anon_sym_BSLASHusepackage] = ACTIONS(12267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12267), + [anon_sym_BSLASHinclude] = ACTIONS(12267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12267), + [anon_sym_BSLASHinput] = ACTIONS(12267), + [anon_sym_BSLASHsubfile] = ACTIONS(12267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12267), + [anon_sym_BSLASHbibliography] = ACTIONS(12267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12267), + [anon_sym_BSLASHincludesvg] = ACTIONS(12267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12267), + [anon_sym_BSLASHimport] = ACTIONS(12267), + [anon_sym_BSLASHsubimport] = ACTIONS(12267), + [anon_sym_BSLASHinputfrom] = ACTIONS(12267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12267), + [anon_sym_BSLASHincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHlabel] = ACTIONS(12267), + [anon_sym_BSLASHref] = ACTIONS(12267), + [anon_sym_BSLASHvref] = ACTIONS(12267), + [anon_sym_BSLASHVref] = ACTIONS(12267), + [anon_sym_BSLASHautoref] = ACTIONS(12267), + [anon_sym_BSLASHpageref] = ACTIONS(12267), + [anon_sym_BSLASHcref] = ACTIONS(12267), + [anon_sym_BSLASHCref] = ACTIONS(12267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnameCref] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHlabelcref] = ACTIONS(12267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12267), + [anon_sym_BSLASHeqref] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange] = ACTIONS(12267), + [anon_sym_BSLASHCrefrange] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewlabel] = ACTIONS(12267), + [anon_sym_BSLASHnewcommand] = ACTIONS(12267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12267), + [anon_sym_BSLASHgls] = ACTIONS(12267), + [anon_sym_BSLASHGls] = ACTIONS(12267), + [anon_sym_BSLASHGLS] = ACTIONS(12267), + [anon_sym_BSLASHglspl] = ACTIONS(12267), + [anon_sym_BSLASHGlspl] = ACTIONS(12267), + [anon_sym_BSLASHGLSpl] = ACTIONS(12267), + [anon_sym_BSLASHglsdisp] = ACTIONS(12267), + [anon_sym_BSLASHglslink] = ACTIONS(12267), + [anon_sym_BSLASHglstext] = ACTIONS(12267), + [anon_sym_BSLASHGlstext] = ACTIONS(12267), + [anon_sym_BSLASHGLStext] = ACTIONS(12267), + [anon_sym_BSLASHglsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12267), + [anon_sym_BSLASHglsplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSplural] = ACTIONS(12267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHglsname] = ACTIONS(12267), + [anon_sym_BSLASHGlsname] = ACTIONS(12267), + [anon_sym_BSLASHGLSname] = ACTIONS(12267), + [anon_sym_BSLASHglssymbol] = ACTIONS(12267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12267), + [anon_sym_BSLASHglsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12267), + [anon_sym_BSLASHglsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12267), + [anon_sym_BSLASHglsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12267), + [anon_sym_BSLASHglsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12267), + [anon_sym_BSLASHglsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12267), + [anon_sym_BSLASHnewacronym] = ACTIONS(12267), + [anon_sym_BSLASHacrshort] = ACTIONS(12267), + [anon_sym_BSLASHAcrshort] = ACTIONS(12267), + [anon_sym_BSLASHACRshort] = ACTIONS(12267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12267), + [anon_sym_BSLASHacrlong] = ACTIONS(12267), + [anon_sym_BSLASHAcrlong] = ACTIONS(12267), + [anon_sym_BSLASHACRlong] = ACTIONS(12267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12267), + [anon_sym_BSLASHacrfull] = ACTIONS(12267), + [anon_sym_BSLASHAcrfull] = ACTIONS(12267), + [anon_sym_BSLASHACRfull] = ACTIONS(12267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12267), + [anon_sym_BSLASHacs] = ACTIONS(12267), + [anon_sym_BSLASHAcs] = ACTIONS(12267), + [anon_sym_BSLASHacsp] = ACTIONS(12267), + [anon_sym_BSLASHAcsp] = ACTIONS(12267), + [anon_sym_BSLASHacl] = ACTIONS(12267), + [anon_sym_BSLASHAcl] = ACTIONS(12267), + [anon_sym_BSLASHaclp] = ACTIONS(12267), + [anon_sym_BSLASHAclp] = ACTIONS(12267), + [anon_sym_BSLASHacf] = ACTIONS(12267), + [anon_sym_BSLASHAcf] = ACTIONS(12267), + [anon_sym_BSLASHacfp] = ACTIONS(12267), + [anon_sym_BSLASHAcfp] = ACTIONS(12267), + [anon_sym_BSLASHac] = ACTIONS(12267), + [anon_sym_BSLASHAc] = ACTIONS(12267), + [anon_sym_BSLASHacp] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12267), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12267), + [anon_sym_BSLASHcolor] = ACTIONS(12267), + [anon_sym_BSLASHcolorbox] = ACTIONS(12267), + [anon_sym_BSLASHtextcolor] = ACTIONS(12267), + [anon_sym_BSLASHpagecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12267), + }, + [923] = { + [sym_generic_command_name] = ACTIONS(12271), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12271), + [aux_sym_chapter_token1] = ACTIONS(12271), + [aux_sym_section_token1] = ACTIONS(12271), + [aux_sym_subsection_token1] = ACTIONS(12271), + [aux_sym_subsubsection_token1] = ACTIONS(12271), + [aux_sym_paragraph_token1] = ACTIONS(12271), + [aux_sym_subparagraph_token1] = ACTIONS(12271), + [anon_sym_BSLASHitem] = ACTIONS(12271), + [anon_sym_LBRACK] = ACTIONS(12269), + [anon_sym_LBRACE] = ACTIONS(12269), + [anon_sym_LPAREN] = ACTIONS(12269), + [anon_sym_COMMA] = ACTIONS(12269), + [anon_sym_EQ] = ACTIONS(12269), + [sym_word] = ACTIONS(12269), + [sym_param] = ACTIONS(12269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12269), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12269), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12269), + [anon_sym_DOLLAR] = ACTIONS(12271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12269), + [anon_sym_BSLASHbegin] = ACTIONS(12271), + [anon_sym_BSLASHcaption] = ACTIONS(12271), + [anon_sym_BSLASHcite] = ACTIONS(12271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCite] = ACTIONS(12271), + [anon_sym_BSLASHnocite] = ACTIONS(12271), + [anon_sym_BSLASHcitet] = ACTIONS(12271), + [anon_sym_BSLASHcitep] = ACTIONS(12271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteauthor] = ACTIONS(12271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitetitle] = ACTIONS(12271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteyear] = ACTIONS(12271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitedate] = ACTIONS(12271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteurl] = ACTIONS(12271), + [anon_sym_BSLASHfullcite] = ACTIONS(12271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12271), + [anon_sym_BSLASHcitealt] = ACTIONS(12271), + [anon_sym_BSLASHcitealp] = ACTIONS(12271), + [anon_sym_BSLASHcitetext] = ACTIONS(12271), + [anon_sym_BSLASHparencite] = ACTIONS(12271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHParencite] = ACTIONS(12271), + [anon_sym_BSLASHfootcite] = ACTIONS(12271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12271), + [anon_sym_BSLASHtextcite] = ACTIONS(12271), + [anon_sym_BSLASHTextcite] = ACTIONS(12271), + [anon_sym_BSLASHsmartcite] = ACTIONS(12271), + [anon_sym_BSLASHSmartcite] = ACTIONS(12271), + [anon_sym_BSLASHsupercite] = ACTIONS(12271), + [anon_sym_BSLASHautocite] = ACTIONS(12271), + [anon_sym_BSLASHAutocite] = ACTIONS(12271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHvolcite] = ACTIONS(12271), + [anon_sym_BSLASHVolcite] = ACTIONS(12271), + [anon_sym_BSLASHpvolcite] = ACTIONS(12271), + [anon_sym_BSLASHPvolcite] = ACTIONS(12271), + [anon_sym_BSLASHfvolcite] = ACTIONS(12271), + [anon_sym_BSLASHftvolcite] = ACTIONS(12271), + [anon_sym_BSLASHsvolcite] = ACTIONS(12271), + [anon_sym_BSLASHSvolcite] = ACTIONS(12271), + [anon_sym_BSLASHtvolcite] = ACTIONS(12271), + [anon_sym_BSLASHTvolcite] = ACTIONS(12271), + [anon_sym_BSLASHavolcite] = ACTIONS(12271), + [anon_sym_BSLASHAvolcite] = ACTIONS(12271), + [anon_sym_BSLASHnotecite] = ACTIONS(12271), + [anon_sym_BSLASHpnotecite] = ACTIONS(12271), + [anon_sym_BSLASHPnotecite] = ACTIONS(12271), + [anon_sym_BSLASHfnotecite] = ACTIONS(12271), + [anon_sym_BSLASHusepackage] = ACTIONS(12271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12271), + [anon_sym_BSLASHinclude] = ACTIONS(12271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12271), + [anon_sym_BSLASHinput] = ACTIONS(12271), + [anon_sym_BSLASHsubfile] = ACTIONS(12271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12271), + [anon_sym_BSLASHbibliography] = ACTIONS(12271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12271), + [anon_sym_BSLASHincludesvg] = ACTIONS(12271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12271), + [anon_sym_BSLASHimport] = ACTIONS(12271), + [anon_sym_BSLASHsubimport] = ACTIONS(12271), + [anon_sym_BSLASHinputfrom] = ACTIONS(12271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12271), + [anon_sym_BSLASHincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHlabel] = ACTIONS(12271), + [anon_sym_BSLASHref] = ACTIONS(12271), + [anon_sym_BSLASHvref] = ACTIONS(12271), + [anon_sym_BSLASHVref] = ACTIONS(12271), + [anon_sym_BSLASHautoref] = ACTIONS(12271), + [anon_sym_BSLASHpageref] = ACTIONS(12271), + [anon_sym_BSLASHcref] = ACTIONS(12271), + [anon_sym_BSLASHCref] = ACTIONS(12271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnameCref] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHlabelcref] = ACTIONS(12271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12271), + [anon_sym_BSLASHeqref] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange] = ACTIONS(12271), + [anon_sym_BSLASHCrefrange] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewlabel] = ACTIONS(12271), + [anon_sym_BSLASHnewcommand] = ACTIONS(12271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12271), + [anon_sym_BSLASHgls] = ACTIONS(12271), + [anon_sym_BSLASHGls] = ACTIONS(12271), + [anon_sym_BSLASHGLS] = ACTIONS(12271), + [anon_sym_BSLASHglspl] = ACTIONS(12271), + [anon_sym_BSLASHGlspl] = ACTIONS(12271), + [anon_sym_BSLASHGLSpl] = ACTIONS(12271), + [anon_sym_BSLASHglsdisp] = ACTIONS(12271), + [anon_sym_BSLASHglslink] = ACTIONS(12271), + [anon_sym_BSLASHglstext] = ACTIONS(12271), + [anon_sym_BSLASHGlstext] = ACTIONS(12271), + [anon_sym_BSLASHGLStext] = ACTIONS(12271), + [anon_sym_BSLASHglsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12271), + [anon_sym_BSLASHglsplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSplural] = ACTIONS(12271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHglsname] = ACTIONS(12271), + [anon_sym_BSLASHGlsname] = ACTIONS(12271), + [anon_sym_BSLASHGLSname] = ACTIONS(12271), + [anon_sym_BSLASHglssymbol] = ACTIONS(12271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12271), + [anon_sym_BSLASHglsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12271), + [anon_sym_BSLASHglsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12271), + [anon_sym_BSLASHglsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12271), + [anon_sym_BSLASHglsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12271), + [anon_sym_BSLASHglsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12271), + [anon_sym_BSLASHnewacronym] = ACTIONS(12271), + [anon_sym_BSLASHacrshort] = ACTIONS(12271), + [anon_sym_BSLASHAcrshort] = ACTIONS(12271), + [anon_sym_BSLASHACRshort] = ACTIONS(12271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12271), + [anon_sym_BSLASHacrlong] = ACTIONS(12271), + [anon_sym_BSLASHAcrlong] = ACTIONS(12271), + [anon_sym_BSLASHACRlong] = ACTIONS(12271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12271), + [anon_sym_BSLASHacrfull] = ACTIONS(12271), + [anon_sym_BSLASHAcrfull] = ACTIONS(12271), + [anon_sym_BSLASHACRfull] = ACTIONS(12271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12271), + [anon_sym_BSLASHacs] = ACTIONS(12271), + [anon_sym_BSLASHAcs] = ACTIONS(12271), + [anon_sym_BSLASHacsp] = ACTIONS(12271), + [anon_sym_BSLASHAcsp] = ACTIONS(12271), + [anon_sym_BSLASHacl] = ACTIONS(12271), + [anon_sym_BSLASHAcl] = ACTIONS(12271), + [anon_sym_BSLASHaclp] = ACTIONS(12271), + [anon_sym_BSLASHAclp] = ACTIONS(12271), + [anon_sym_BSLASHacf] = ACTIONS(12271), + [anon_sym_BSLASHAcf] = ACTIONS(12271), + [anon_sym_BSLASHacfp] = ACTIONS(12271), + [anon_sym_BSLASHAcfp] = ACTIONS(12271), + [anon_sym_BSLASHac] = ACTIONS(12271), + [anon_sym_BSLASHAc] = ACTIONS(12271), + [anon_sym_BSLASHacp] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12271), + [anon_sym_BSLASHcolor] = ACTIONS(12271), + [anon_sym_BSLASHcolorbox] = ACTIONS(12271), + [anon_sym_BSLASHtextcolor] = ACTIONS(12271), + [anon_sym_BSLASHpagecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12271), + }, + [924] = { + [sym_generic_command_name] = ACTIONS(12279), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12279), + [aux_sym_chapter_token1] = ACTIONS(12279), + [aux_sym_section_token1] = ACTIONS(12279), + [aux_sym_subsection_token1] = ACTIONS(12279), + [aux_sym_subsubsection_token1] = ACTIONS(12279), + [aux_sym_paragraph_token1] = ACTIONS(12279), + [aux_sym_subparagraph_token1] = ACTIONS(12279), + [anon_sym_BSLASHitem] = ACTIONS(12279), + [anon_sym_LBRACK] = ACTIONS(12277), + [anon_sym_LBRACE] = ACTIONS(12277), + [anon_sym_LPAREN] = ACTIONS(12277), + [anon_sym_COMMA] = ACTIONS(12277), + [anon_sym_EQ] = ACTIONS(12277), + [sym_word] = ACTIONS(12277), + [sym_param] = ACTIONS(12277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12277), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12277), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12277), + [anon_sym_DOLLAR] = ACTIONS(12279), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12277), + [anon_sym_BSLASHbegin] = ACTIONS(12279), + [anon_sym_BSLASHcaption] = ACTIONS(12279), + [anon_sym_BSLASHcite] = ACTIONS(12279), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCite] = ACTIONS(12279), + [anon_sym_BSLASHnocite] = ACTIONS(12279), + [anon_sym_BSLASHcitet] = ACTIONS(12279), + [anon_sym_BSLASHcitep] = ACTIONS(12279), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteauthor] = ACTIONS(12279), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12279), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitetitle] = ACTIONS(12279), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteyear] = ACTIONS(12279), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitedate] = ACTIONS(12279), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteurl] = ACTIONS(12279), + [anon_sym_BSLASHfullcite] = ACTIONS(12279), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12279), + [anon_sym_BSLASHcitealt] = ACTIONS(12279), + [anon_sym_BSLASHcitealp] = ACTIONS(12279), + [anon_sym_BSLASHcitetext] = ACTIONS(12279), + [anon_sym_BSLASHparencite] = ACTIONS(12279), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHParencite] = ACTIONS(12279), + [anon_sym_BSLASHfootcite] = ACTIONS(12279), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12279), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12279), + [anon_sym_BSLASHtextcite] = ACTIONS(12279), + [anon_sym_BSLASHTextcite] = ACTIONS(12279), + [anon_sym_BSLASHsmartcite] = ACTIONS(12279), + [anon_sym_BSLASHSmartcite] = ACTIONS(12279), + [anon_sym_BSLASHsupercite] = ACTIONS(12279), + [anon_sym_BSLASHautocite] = ACTIONS(12279), + [anon_sym_BSLASHAutocite] = ACTIONS(12279), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHvolcite] = ACTIONS(12279), + [anon_sym_BSLASHVolcite] = ACTIONS(12279), + [anon_sym_BSLASHpvolcite] = ACTIONS(12279), + [anon_sym_BSLASHPvolcite] = ACTIONS(12279), + [anon_sym_BSLASHfvolcite] = ACTIONS(12279), + [anon_sym_BSLASHftvolcite] = ACTIONS(12279), + [anon_sym_BSLASHsvolcite] = ACTIONS(12279), + [anon_sym_BSLASHSvolcite] = ACTIONS(12279), + [anon_sym_BSLASHtvolcite] = ACTIONS(12279), + [anon_sym_BSLASHTvolcite] = ACTIONS(12279), + [anon_sym_BSLASHavolcite] = ACTIONS(12279), + [anon_sym_BSLASHAvolcite] = ACTIONS(12279), + [anon_sym_BSLASHnotecite] = ACTIONS(12279), + [anon_sym_BSLASHpnotecite] = ACTIONS(12279), + [anon_sym_BSLASHPnotecite] = ACTIONS(12279), + [anon_sym_BSLASHfnotecite] = ACTIONS(12279), + [anon_sym_BSLASHusepackage] = ACTIONS(12279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12279), + [anon_sym_BSLASHinclude] = ACTIONS(12279), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12279), + [anon_sym_BSLASHinput] = ACTIONS(12279), + [anon_sym_BSLASHsubfile] = ACTIONS(12279), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12279), + [anon_sym_BSLASHbibliography] = ACTIONS(12279), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12279), + [anon_sym_BSLASHincludesvg] = ACTIONS(12279), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12279), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12279), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12279), + [anon_sym_BSLASHimport] = ACTIONS(12279), + [anon_sym_BSLASHsubimport] = ACTIONS(12279), + [anon_sym_BSLASHinputfrom] = ACTIONS(12279), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12279), + [anon_sym_BSLASHincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHlabel] = ACTIONS(12279), + [anon_sym_BSLASHref] = ACTIONS(12279), + [anon_sym_BSLASHvref] = ACTIONS(12279), + [anon_sym_BSLASHVref] = ACTIONS(12279), + [anon_sym_BSLASHautoref] = ACTIONS(12279), + [anon_sym_BSLASHpageref] = ACTIONS(12279), + [anon_sym_BSLASHcref] = ACTIONS(12279), + [anon_sym_BSLASHCref] = ACTIONS(12279), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnameCref] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHlabelcref] = ACTIONS(12279), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12279), + [anon_sym_BSLASHeqref] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange] = ACTIONS(12279), + [anon_sym_BSLASHCrefrange] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewlabel] = ACTIONS(12279), + [anon_sym_BSLASHnewcommand] = ACTIONS(12279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12279), + [anon_sym_BSLASHgls] = ACTIONS(12279), + [anon_sym_BSLASHGls] = ACTIONS(12279), + [anon_sym_BSLASHGLS] = ACTIONS(12279), + [anon_sym_BSLASHglspl] = ACTIONS(12279), + [anon_sym_BSLASHGlspl] = ACTIONS(12279), + [anon_sym_BSLASHGLSpl] = ACTIONS(12279), + [anon_sym_BSLASHglsdisp] = ACTIONS(12279), + [anon_sym_BSLASHglslink] = ACTIONS(12279), + [anon_sym_BSLASHglstext] = ACTIONS(12279), + [anon_sym_BSLASHGlstext] = ACTIONS(12279), + [anon_sym_BSLASHGLStext] = ACTIONS(12279), + [anon_sym_BSLASHglsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12279), + [anon_sym_BSLASHglsplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSplural] = ACTIONS(12279), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHglsname] = ACTIONS(12279), + [anon_sym_BSLASHGlsname] = ACTIONS(12279), + [anon_sym_BSLASHGLSname] = ACTIONS(12279), + [anon_sym_BSLASHglssymbol] = ACTIONS(12279), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12279), + [anon_sym_BSLASHglsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12279), + [anon_sym_BSLASHglsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12279), + [anon_sym_BSLASHglsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12279), + [anon_sym_BSLASHglsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12279), + [anon_sym_BSLASHglsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12279), + [anon_sym_BSLASHnewacronym] = ACTIONS(12279), + [anon_sym_BSLASHacrshort] = ACTIONS(12279), + [anon_sym_BSLASHAcrshort] = ACTIONS(12279), + [anon_sym_BSLASHACRshort] = ACTIONS(12279), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12279), + [anon_sym_BSLASHacrlong] = ACTIONS(12279), + [anon_sym_BSLASHAcrlong] = ACTIONS(12279), + [anon_sym_BSLASHACRlong] = ACTIONS(12279), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12279), + [anon_sym_BSLASHacrfull] = ACTIONS(12279), + [anon_sym_BSLASHAcrfull] = ACTIONS(12279), + [anon_sym_BSLASHACRfull] = ACTIONS(12279), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12279), + [anon_sym_BSLASHacs] = ACTIONS(12279), + [anon_sym_BSLASHAcs] = ACTIONS(12279), + [anon_sym_BSLASHacsp] = ACTIONS(12279), + [anon_sym_BSLASHAcsp] = ACTIONS(12279), + [anon_sym_BSLASHacl] = ACTIONS(12279), + [anon_sym_BSLASHAcl] = ACTIONS(12279), + [anon_sym_BSLASHaclp] = ACTIONS(12279), + [anon_sym_BSLASHAclp] = ACTIONS(12279), + [anon_sym_BSLASHacf] = ACTIONS(12279), + [anon_sym_BSLASHAcf] = ACTIONS(12279), + [anon_sym_BSLASHacfp] = ACTIONS(12279), + [anon_sym_BSLASHAcfp] = ACTIONS(12279), + [anon_sym_BSLASHac] = ACTIONS(12279), + [anon_sym_BSLASHAc] = ACTIONS(12279), + [anon_sym_BSLASHacp] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12279), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12279), + [anon_sym_BSLASHcolor] = ACTIONS(12279), + [anon_sym_BSLASHcolorbox] = ACTIONS(12279), + [anon_sym_BSLASHtextcolor] = ACTIONS(12279), + [anon_sym_BSLASHpagecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12279), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12279), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12279), + }, + [925] = { + [sym_generic_command_name] = ACTIONS(12287), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12287), + [aux_sym_chapter_token1] = ACTIONS(12287), + [aux_sym_section_token1] = ACTIONS(12287), + [aux_sym_subsection_token1] = ACTIONS(12287), + [aux_sym_subsubsection_token1] = ACTIONS(12287), + [aux_sym_paragraph_token1] = ACTIONS(12287), + [aux_sym_subparagraph_token1] = ACTIONS(12287), + [anon_sym_BSLASHitem] = ACTIONS(12287), + [anon_sym_LBRACK] = ACTIONS(12285), + [anon_sym_LBRACE] = ACTIONS(12285), + [anon_sym_LPAREN] = ACTIONS(12285), + [anon_sym_COMMA] = ACTIONS(12285), + [anon_sym_EQ] = ACTIONS(12285), + [sym_word] = ACTIONS(12285), + [sym_param] = ACTIONS(12285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12285), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12285), + [anon_sym_DOLLAR] = ACTIONS(12287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12285), + [anon_sym_BSLASHbegin] = ACTIONS(12287), + [anon_sym_BSLASHcaption] = ACTIONS(12287), + [anon_sym_BSLASHcite] = ACTIONS(12287), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCite] = ACTIONS(12287), + [anon_sym_BSLASHnocite] = ACTIONS(12287), + [anon_sym_BSLASHcitet] = ACTIONS(12287), + [anon_sym_BSLASHcitep] = ACTIONS(12287), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteauthor] = ACTIONS(12287), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12287), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitetitle] = ACTIONS(12287), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteyear] = ACTIONS(12287), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitedate] = ACTIONS(12287), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteurl] = ACTIONS(12287), + [anon_sym_BSLASHfullcite] = ACTIONS(12287), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12287), + [anon_sym_BSLASHcitealt] = ACTIONS(12287), + [anon_sym_BSLASHcitealp] = ACTIONS(12287), + [anon_sym_BSLASHcitetext] = ACTIONS(12287), + [anon_sym_BSLASHparencite] = ACTIONS(12287), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHParencite] = ACTIONS(12287), + [anon_sym_BSLASHfootcite] = ACTIONS(12287), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12287), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12287), + [anon_sym_BSLASHtextcite] = ACTIONS(12287), + [anon_sym_BSLASHTextcite] = ACTIONS(12287), + [anon_sym_BSLASHsmartcite] = ACTIONS(12287), + [anon_sym_BSLASHSmartcite] = ACTIONS(12287), + [anon_sym_BSLASHsupercite] = ACTIONS(12287), + [anon_sym_BSLASHautocite] = ACTIONS(12287), + [anon_sym_BSLASHAutocite] = ACTIONS(12287), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHvolcite] = ACTIONS(12287), + [anon_sym_BSLASHVolcite] = ACTIONS(12287), + [anon_sym_BSLASHpvolcite] = ACTIONS(12287), + [anon_sym_BSLASHPvolcite] = ACTIONS(12287), + [anon_sym_BSLASHfvolcite] = ACTIONS(12287), + [anon_sym_BSLASHftvolcite] = ACTIONS(12287), + [anon_sym_BSLASHsvolcite] = ACTIONS(12287), + [anon_sym_BSLASHSvolcite] = ACTIONS(12287), + [anon_sym_BSLASHtvolcite] = ACTIONS(12287), + [anon_sym_BSLASHTvolcite] = ACTIONS(12287), + [anon_sym_BSLASHavolcite] = ACTIONS(12287), + [anon_sym_BSLASHAvolcite] = ACTIONS(12287), + [anon_sym_BSLASHnotecite] = ACTIONS(12287), + [anon_sym_BSLASHpnotecite] = ACTIONS(12287), + [anon_sym_BSLASHPnotecite] = ACTIONS(12287), + [anon_sym_BSLASHfnotecite] = ACTIONS(12287), + [anon_sym_BSLASHusepackage] = ACTIONS(12287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12287), + [anon_sym_BSLASHinclude] = ACTIONS(12287), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12287), + [anon_sym_BSLASHinput] = ACTIONS(12287), + [anon_sym_BSLASHsubfile] = ACTIONS(12287), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12287), + [anon_sym_BSLASHbibliography] = ACTIONS(12287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12287), + [anon_sym_BSLASHincludesvg] = ACTIONS(12287), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12287), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12287), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12287), + [anon_sym_BSLASHimport] = ACTIONS(12287), + [anon_sym_BSLASHsubimport] = ACTIONS(12287), + [anon_sym_BSLASHinputfrom] = ACTIONS(12287), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12287), + [anon_sym_BSLASHincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHlabel] = ACTIONS(12287), + [anon_sym_BSLASHref] = ACTIONS(12287), + [anon_sym_BSLASHvref] = ACTIONS(12287), + [anon_sym_BSLASHVref] = ACTIONS(12287), + [anon_sym_BSLASHautoref] = ACTIONS(12287), + [anon_sym_BSLASHpageref] = ACTIONS(12287), + [anon_sym_BSLASHcref] = ACTIONS(12287), + [anon_sym_BSLASHCref] = ACTIONS(12287), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnameCref] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHlabelcref] = ACTIONS(12287), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12287), + [anon_sym_BSLASHeqref] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange] = ACTIONS(12287), + [anon_sym_BSLASHCrefrange] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewlabel] = ACTIONS(12287), + [anon_sym_BSLASHnewcommand] = ACTIONS(12287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12287), + [anon_sym_BSLASHgls] = ACTIONS(12287), + [anon_sym_BSLASHGls] = ACTIONS(12287), + [anon_sym_BSLASHGLS] = ACTIONS(12287), + [anon_sym_BSLASHglspl] = ACTIONS(12287), + [anon_sym_BSLASHGlspl] = ACTIONS(12287), + [anon_sym_BSLASHGLSpl] = ACTIONS(12287), + [anon_sym_BSLASHglsdisp] = ACTIONS(12287), + [anon_sym_BSLASHglslink] = ACTIONS(12287), + [anon_sym_BSLASHglstext] = ACTIONS(12287), + [anon_sym_BSLASHGlstext] = ACTIONS(12287), + [anon_sym_BSLASHGLStext] = ACTIONS(12287), + [anon_sym_BSLASHglsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12287), + [anon_sym_BSLASHglsplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSplural] = ACTIONS(12287), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHglsname] = ACTIONS(12287), + [anon_sym_BSLASHGlsname] = ACTIONS(12287), + [anon_sym_BSLASHGLSname] = ACTIONS(12287), + [anon_sym_BSLASHglssymbol] = ACTIONS(12287), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12287), + [anon_sym_BSLASHglsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12287), + [anon_sym_BSLASHglsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12287), + [anon_sym_BSLASHglsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12287), + [anon_sym_BSLASHglsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12287), + [anon_sym_BSLASHglsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12287), + [anon_sym_BSLASHnewacronym] = ACTIONS(12287), + [anon_sym_BSLASHacrshort] = ACTIONS(12287), + [anon_sym_BSLASHAcrshort] = ACTIONS(12287), + [anon_sym_BSLASHACRshort] = ACTIONS(12287), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12287), + [anon_sym_BSLASHacrlong] = ACTIONS(12287), + [anon_sym_BSLASHAcrlong] = ACTIONS(12287), + [anon_sym_BSLASHACRlong] = ACTIONS(12287), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12287), + [anon_sym_BSLASHacrfull] = ACTIONS(12287), + [anon_sym_BSLASHAcrfull] = ACTIONS(12287), + [anon_sym_BSLASHACRfull] = ACTIONS(12287), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12287), + [anon_sym_BSLASHacs] = ACTIONS(12287), + [anon_sym_BSLASHAcs] = ACTIONS(12287), + [anon_sym_BSLASHacsp] = ACTIONS(12287), + [anon_sym_BSLASHAcsp] = ACTIONS(12287), + [anon_sym_BSLASHacl] = ACTIONS(12287), + [anon_sym_BSLASHAcl] = ACTIONS(12287), + [anon_sym_BSLASHaclp] = ACTIONS(12287), + [anon_sym_BSLASHAclp] = ACTIONS(12287), + [anon_sym_BSLASHacf] = ACTIONS(12287), + [anon_sym_BSLASHAcf] = ACTIONS(12287), + [anon_sym_BSLASHacfp] = ACTIONS(12287), + [anon_sym_BSLASHAcfp] = ACTIONS(12287), + [anon_sym_BSLASHac] = ACTIONS(12287), + [anon_sym_BSLASHAc] = ACTIONS(12287), + [anon_sym_BSLASHacp] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12287), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12287), + [anon_sym_BSLASHcolor] = ACTIONS(12287), + [anon_sym_BSLASHcolorbox] = ACTIONS(12287), + [anon_sym_BSLASHtextcolor] = ACTIONS(12287), + [anon_sym_BSLASHpagecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12287), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12287), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12287), + }, + [926] = { + [sym_generic_command_name] = ACTIONS(12291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12291), + [aux_sym_chapter_token1] = ACTIONS(12291), + [aux_sym_section_token1] = ACTIONS(12291), + [aux_sym_subsection_token1] = ACTIONS(12291), + [aux_sym_subsubsection_token1] = ACTIONS(12291), + [aux_sym_paragraph_token1] = ACTIONS(12291), + [aux_sym_subparagraph_token1] = ACTIONS(12291), + [anon_sym_BSLASHitem] = ACTIONS(12291), + [anon_sym_LBRACK] = ACTIONS(12289), + [anon_sym_LBRACE] = ACTIONS(12289), + [anon_sym_LPAREN] = ACTIONS(12289), + [anon_sym_COMMA] = ACTIONS(12289), + [anon_sym_EQ] = ACTIONS(12289), + [sym_word] = ACTIONS(12289), + [sym_param] = ACTIONS(12289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12289), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12289), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12289), + [anon_sym_DOLLAR] = ACTIONS(12291), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12289), + [anon_sym_BSLASHbegin] = ACTIONS(12291), + [anon_sym_BSLASHcaption] = ACTIONS(12291), + [anon_sym_BSLASHcite] = ACTIONS(12291), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCite] = ACTIONS(12291), + [anon_sym_BSLASHnocite] = ACTIONS(12291), + [anon_sym_BSLASHcitet] = ACTIONS(12291), + [anon_sym_BSLASHcitep] = ACTIONS(12291), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteauthor] = ACTIONS(12291), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12291), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitetitle] = ACTIONS(12291), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteyear] = ACTIONS(12291), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitedate] = ACTIONS(12291), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteurl] = ACTIONS(12291), + [anon_sym_BSLASHfullcite] = ACTIONS(12291), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12291), + [anon_sym_BSLASHcitealt] = ACTIONS(12291), + [anon_sym_BSLASHcitealp] = ACTIONS(12291), + [anon_sym_BSLASHcitetext] = ACTIONS(12291), + [anon_sym_BSLASHparencite] = ACTIONS(12291), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHParencite] = ACTIONS(12291), + [anon_sym_BSLASHfootcite] = ACTIONS(12291), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12291), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12291), + [anon_sym_BSLASHtextcite] = ACTIONS(12291), + [anon_sym_BSLASHTextcite] = ACTIONS(12291), + [anon_sym_BSLASHsmartcite] = ACTIONS(12291), + [anon_sym_BSLASHSmartcite] = ACTIONS(12291), + [anon_sym_BSLASHsupercite] = ACTIONS(12291), + [anon_sym_BSLASHautocite] = ACTIONS(12291), + [anon_sym_BSLASHAutocite] = ACTIONS(12291), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHvolcite] = ACTIONS(12291), + [anon_sym_BSLASHVolcite] = ACTIONS(12291), + [anon_sym_BSLASHpvolcite] = ACTIONS(12291), + [anon_sym_BSLASHPvolcite] = ACTIONS(12291), + [anon_sym_BSLASHfvolcite] = ACTIONS(12291), + [anon_sym_BSLASHftvolcite] = ACTIONS(12291), + [anon_sym_BSLASHsvolcite] = ACTIONS(12291), + [anon_sym_BSLASHSvolcite] = ACTIONS(12291), + [anon_sym_BSLASHtvolcite] = ACTIONS(12291), + [anon_sym_BSLASHTvolcite] = ACTIONS(12291), + [anon_sym_BSLASHavolcite] = ACTIONS(12291), + [anon_sym_BSLASHAvolcite] = ACTIONS(12291), + [anon_sym_BSLASHnotecite] = ACTIONS(12291), + [anon_sym_BSLASHpnotecite] = ACTIONS(12291), + [anon_sym_BSLASHPnotecite] = ACTIONS(12291), + [anon_sym_BSLASHfnotecite] = ACTIONS(12291), + [anon_sym_BSLASHusepackage] = ACTIONS(12291), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12291), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12291), + [anon_sym_BSLASHinclude] = ACTIONS(12291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12291), + [anon_sym_BSLASHinput] = ACTIONS(12291), + [anon_sym_BSLASHsubfile] = ACTIONS(12291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12291), + [anon_sym_BSLASHbibliography] = ACTIONS(12291), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12291), + [anon_sym_BSLASHincludesvg] = ACTIONS(12291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12291), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12291), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12291), + [anon_sym_BSLASHimport] = ACTIONS(12291), + [anon_sym_BSLASHsubimport] = ACTIONS(12291), + [anon_sym_BSLASHinputfrom] = ACTIONS(12291), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12291), + [anon_sym_BSLASHincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHlabel] = ACTIONS(12291), + [anon_sym_BSLASHref] = ACTIONS(12291), + [anon_sym_BSLASHvref] = ACTIONS(12291), + [anon_sym_BSLASHVref] = ACTIONS(12291), + [anon_sym_BSLASHautoref] = ACTIONS(12291), + [anon_sym_BSLASHpageref] = ACTIONS(12291), + [anon_sym_BSLASHcref] = ACTIONS(12291), + [anon_sym_BSLASHCref] = ACTIONS(12291), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnameCref] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHlabelcref] = ACTIONS(12291), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12291), + [anon_sym_BSLASHeqref] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange] = ACTIONS(12291), + [anon_sym_BSLASHCrefrange] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewlabel] = ACTIONS(12291), + [anon_sym_BSLASHnewcommand] = ACTIONS(12291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12291), + [anon_sym_BSLASHgls] = ACTIONS(12291), + [anon_sym_BSLASHGls] = ACTIONS(12291), + [anon_sym_BSLASHGLS] = ACTIONS(12291), + [anon_sym_BSLASHglspl] = ACTIONS(12291), + [anon_sym_BSLASHGlspl] = ACTIONS(12291), + [anon_sym_BSLASHGLSpl] = ACTIONS(12291), + [anon_sym_BSLASHglsdisp] = ACTIONS(12291), + [anon_sym_BSLASHglslink] = ACTIONS(12291), + [anon_sym_BSLASHglstext] = ACTIONS(12291), + [anon_sym_BSLASHGlstext] = ACTIONS(12291), + [anon_sym_BSLASHGLStext] = ACTIONS(12291), + [anon_sym_BSLASHglsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12291), + [anon_sym_BSLASHglsplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSplural] = ACTIONS(12291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHglsname] = ACTIONS(12291), + [anon_sym_BSLASHGlsname] = ACTIONS(12291), + [anon_sym_BSLASHGLSname] = ACTIONS(12291), + [anon_sym_BSLASHglssymbol] = ACTIONS(12291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12291), + [anon_sym_BSLASHglsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12291), + [anon_sym_BSLASHglsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12291), + [anon_sym_BSLASHglsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12291), + [anon_sym_BSLASHglsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12291), + [anon_sym_BSLASHglsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12291), + [anon_sym_BSLASHnewacronym] = ACTIONS(12291), + [anon_sym_BSLASHacrshort] = ACTIONS(12291), + [anon_sym_BSLASHAcrshort] = ACTIONS(12291), + [anon_sym_BSLASHACRshort] = ACTIONS(12291), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12291), + [anon_sym_BSLASHacrlong] = ACTIONS(12291), + [anon_sym_BSLASHAcrlong] = ACTIONS(12291), + [anon_sym_BSLASHACRlong] = ACTIONS(12291), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12291), + [anon_sym_BSLASHacrfull] = ACTIONS(12291), + [anon_sym_BSLASHAcrfull] = ACTIONS(12291), + [anon_sym_BSLASHACRfull] = ACTIONS(12291), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12291), + [anon_sym_BSLASHacs] = ACTIONS(12291), + [anon_sym_BSLASHAcs] = ACTIONS(12291), + [anon_sym_BSLASHacsp] = ACTIONS(12291), + [anon_sym_BSLASHAcsp] = ACTIONS(12291), + [anon_sym_BSLASHacl] = ACTIONS(12291), + [anon_sym_BSLASHAcl] = ACTIONS(12291), + [anon_sym_BSLASHaclp] = ACTIONS(12291), + [anon_sym_BSLASHAclp] = ACTIONS(12291), + [anon_sym_BSLASHacf] = ACTIONS(12291), + [anon_sym_BSLASHAcf] = ACTIONS(12291), + [anon_sym_BSLASHacfp] = ACTIONS(12291), + [anon_sym_BSLASHAcfp] = ACTIONS(12291), + [anon_sym_BSLASHac] = ACTIONS(12291), + [anon_sym_BSLASHAc] = ACTIONS(12291), + [anon_sym_BSLASHacp] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12291), + [anon_sym_BSLASHcolor] = ACTIONS(12291), + [anon_sym_BSLASHcolorbox] = ACTIONS(12291), + [anon_sym_BSLASHtextcolor] = ACTIONS(12291), + [anon_sym_BSLASHpagecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12291), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12291), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12291), + }, + [927] = { + [sym_generic_command_name] = ACTIONS(12295), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12295), + [aux_sym_chapter_token1] = ACTIONS(12295), + [aux_sym_section_token1] = ACTIONS(12295), + [aux_sym_subsection_token1] = ACTIONS(12295), + [aux_sym_subsubsection_token1] = ACTIONS(12295), + [aux_sym_paragraph_token1] = ACTIONS(12295), + [aux_sym_subparagraph_token1] = ACTIONS(12295), + [anon_sym_BSLASHitem] = ACTIONS(12295), + [anon_sym_LBRACK] = ACTIONS(12293), + [anon_sym_LBRACE] = ACTIONS(12293), + [anon_sym_LPAREN] = ACTIONS(12293), + [anon_sym_COMMA] = ACTIONS(12293), + [anon_sym_EQ] = ACTIONS(12293), + [sym_word] = ACTIONS(12293), + [sym_param] = ACTIONS(12293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12293), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12293), + [anon_sym_DOLLAR] = ACTIONS(12295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12293), + [anon_sym_BSLASHbegin] = ACTIONS(12295), + [anon_sym_BSLASHcaption] = ACTIONS(12295), + [anon_sym_BSLASHcite] = ACTIONS(12295), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCite] = ACTIONS(12295), + [anon_sym_BSLASHnocite] = ACTIONS(12295), + [anon_sym_BSLASHcitet] = ACTIONS(12295), + [anon_sym_BSLASHcitep] = ACTIONS(12295), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteauthor] = ACTIONS(12295), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12295), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitetitle] = ACTIONS(12295), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteyear] = ACTIONS(12295), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitedate] = ACTIONS(12295), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteurl] = ACTIONS(12295), + [anon_sym_BSLASHfullcite] = ACTIONS(12295), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12295), + [anon_sym_BSLASHcitealt] = ACTIONS(12295), + [anon_sym_BSLASHcitealp] = ACTIONS(12295), + [anon_sym_BSLASHcitetext] = ACTIONS(12295), + [anon_sym_BSLASHparencite] = ACTIONS(12295), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHParencite] = ACTIONS(12295), + [anon_sym_BSLASHfootcite] = ACTIONS(12295), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12295), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12295), + [anon_sym_BSLASHtextcite] = ACTIONS(12295), + [anon_sym_BSLASHTextcite] = ACTIONS(12295), + [anon_sym_BSLASHsmartcite] = ACTIONS(12295), + [anon_sym_BSLASHSmartcite] = ACTIONS(12295), + [anon_sym_BSLASHsupercite] = ACTIONS(12295), + [anon_sym_BSLASHautocite] = ACTIONS(12295), + [anon_sym_BSLASHAutocite] = ACTIONS(12295), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHvolcite] = ACTIONS(12295), + [anon_sym_BSLASHVolcite] = ACTIONS(12295), + [anon_sym_BSLASHpvolcite] = ACTIONS(12295), + [anon_sym_BSLASHPvolcite] = ACTIONS(12295), + [anon_sym_BSLASHfvolcite] = ACTIONS(12295), + [anon_sym_BSLASHftvolcite] = ACTIONS(12295), + [anon_sym_BSLASHsvolcite] = ACTIONS(12295), + [anon_sym_BSLASHSvolcite] = ACTIONS(12295), + [anon_sym_BSLASHtvolcite] = ACTIONS(12295), + [anon_sym_BSLASHTvolcite] = ACTIONS(12295), + [anon_sym_BSLASHavolcite] = ACTIONS(12295), + [anon_sym_BSLASHAvolcite] = ACTIONS(12295), + [anon_sym_BSLASHnotecite] = ACTIONS(12295), + [anon_sym_BSLASHpnotecite] = ACTIONS(12295), + [anon_sym_BSLASHPnotecite] = ACTIONS(12295), + [anon_sym_BSLASHfnotecite] = ACTIONS(12295), + [anon_sym_BSLASHusepackage] = ACTIONS(12295), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12295), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12295), + [anon_sym_BSLASHinclude] = ACTIONS(12295), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12295), + [anon_sym_BSLASHinput] = ACTIONS(12295), + [anon_sym_BSLASHsubfile] = ACTIONS(12295), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12295), + [anon_sym_BSLASHbibliography] = ACTIONS(12295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12295), + [anon_sym_BSLASHincludesvg] = ACTIONS(12295), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12295), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12295), + [anon_sym_BSLASHimport] = ACTIONS(12295), + [anon_sym_BSLASHsubimport] = ACTIONS(12295), + [anon_sym_BSLASHinputfrom] = ACTIONS(12295), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12295), + [anon_sym_BSLASHincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHlabel] = ACTIONS(12295), + [anon_sym_BSLASHref] = ACTIONS(12295), + [anon_sym_BSLASHvref] = ACTIONS(12295), + [anon_sym_BSLASHVref] = ACTIONS(12295), + [anon_sym_BSLASHautoref] = ACTIONS(12295), + [anon_sym_BSLASHpageref] = ACTIONS(12295), + [anon_sym_BSLASHcref] = ACTIONS(12295), + [anon_sym_BSLASHCref] = ACTIONS(12295), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnameCref] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHlabelcref] = ACTIONS(12295), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12295), + [anon_sym_BSLASHeqref] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange] = ACTIONS(12295), + [anon_sym_BSLASHCrefrange] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewlabel] = ACTIONS(12295), + [anon_sym_BSLASHnewcommand] = ACTIONS(12295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12295), + [anon_sym_BSLASHgls] = ACTIONS(12295), + [anon_sym_BSLASHGls] = ACTIONS(12295), + [anon_sym_BSLASHGLS] = ACTIONS(12295), + [anon_sym_BSLASHglspl] = ACTIONS(12295), + [anon_sym_BSLASHGlspl] = ACTIONS(12295), + [anon_sym_BSLASHGLSpl] = ACTIONS(12295), + [anon_sym_BSLASHglsdisp] = ACTIONS(12295), + [anon_sym_BSLASHglslink] = ACTIONS(12295), + [anon_sym_BSLASHglstext] = ACTIONS(12295), + [anon_sym_BSLASHGlstext] = ACTIONS(12295), + [anon_sym_BSLASHGLStext] = ACTIONS(12295), + [anon_sym_BSLASHglsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12295), + [anon_sym_BSLASHglsplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSplural] = ACTIONS(12295), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHglsname] = ACTIONS(12295), + [anon_sym_BSLASHGlsname] = ACTIONS(12295), + [anon_sym_BSLASHGLSname] = ACTIONS(12295), + [anon_sym_BSLASHglssymbol] = ACTIONS(12295), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12295), + [anon_sym_BSLASHglsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12295), + [anon_sym_BSLASHglsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12295), + [anon_sym_BSLASHglsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12295), + [anon_sym_BSLASHglsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12295), + [anon_sym_BSLASHglsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12295), + [anon_sym_BSLASHnewacronym] = ACTIONS(12295), + [anon_sym_BSLASHacrshort] = ACTIONS(12295), + [anon_sym_BSLASHAcrshort] = ACTIONS(12295), + [anon_sym_BSLASHACRshort] = ACTIONS(12295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12295), + [anon_sym_BSLASHacrlong] = ACTIONS(12295), + [anon_sym_BSLASHAcrlong] = ACTIONS(12295), + [anon_sym_BSLASHACRlong] = ACTIONS(12295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12295), + [anon_sym_BSLASHacrfull] = ACTIONS(12295), + [anon_sym_BSLASHAcrfull] = ACTIONS(12295), + [anon_sym_BSLASHACRfull] = ACTIONS(12295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12295), + [anon_sym_BSLASHacs] = ACTIONS(12295), + [anon_sym_BSLASHAcs] = ACTIONS(12295), + [anon_sym_BSLASHacsp] = ACTIONS(12295), + [anon_sym_BSLASHAcsp] = ACTIONS(12295), + [anon_sym_BSLASHacl] = ACTIONS(12295), + [anon_sym_BSLASHAcl] = ACTIONS(12295), + [anon_sym_BSLASHaclp] = ACTIONS(12295), + [anon_sym_BSLASHAclp] = ACTIONS(12295), + [anon_sym_BSLASHacf] = ACTIONS(12295), + [anon_sym_BSLASHAcf] = ACTIONS(12295), + [anon_sym_BSLASHacfp] = ACTIONS(12295), + [anon_sym_BSLASHAcfp] = ACTIONS(12295), + [anon_sym_BSLASHac] = ACTIONS(12295), + [anon_sym_BSLASHAc] = ACTIONS(12295), + [anon_sym_BSLASHacp] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12295), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12295), + [anon_sym_BSLASHcolor] = ACTIONS(12295), + [anon_sym_BSLASHcolorbox] = ACTIONS(12295), + [anon_sym_BSLASHtextcolor] = ACTIONS(12295), + [anon_sym_BSLASHpagecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12295), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12295), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12295), + }, + [928] = { + [sym_brace_group] = STATE(902), + [sym_bracket_group] = STATE(902), + [sym_paren_group] = STATE(902), + [aux_sym_generic_command_repeat1] = STATE(902), + [sym_generic_command_name] = ACTIONS(11990), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(11990), + [aux_sym_subparagraph_token1] = ACTIONS(11990), + [anon_sym_BSLASHitem] = ACTIONS(11990), + [anon_sym_LBRACK] = ACTIONS(12670), + [anon_sym_RBRACK] = ACTIONS(11988), + [anon_sym_LBRACE] = ACTIONS(9783), + [anon_sym_RBRACE] = ACTIONS(11988), + [anon_sym_LPAREN] = ACTIONS(12672), + [anon_sym_COMMA] = ACTIONS(11988), + [anon_sym_EQ] = ACTIONS(11988), + [sym_word] = ACTIONS(11988), + [sym_param] = ACTIONS(11988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11988), + [anon_sym_DOLLAR] = ACTIONS(11990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11988), + [anon_sym_BSLASHbegin] = ACTIONS(11990), + [anon_sym_BSLASHcaption] = ACTIONS(11990), + [anon_sym_BSLASHcite] = ACTIONS(11990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCite] = ACTIONS(11990), + [anon_sym_BSLASHnocite] = ACTIONS(11990), + [anon_sym_BSLASHcitet] = ACTIONS(11990), + [anon_sym_BSLASHcitep] = ACTIONS(11990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteauthor] = ACTIONS(11990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitetitle] = ACTIONS(11990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteyear] = ACTIONS(11990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitedate] = ACTIONS(11990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteurl] = ACTIONS(11990), + [anon_sym_BSLASHfullcite] = ACTIONS(11990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11990), + [anon_sym_BSLASHcitealt] = ACTIONS(11990), + [anon_sym_BSLASHcitealp] = ACTIONS(11990), + [anon_sym_BSLASHcitetext] = ACTIONS(11990), + [anon_sym_BSLASHparencite] = ACTIONS(11990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHParencite] = ACTIONS(11990), + [anon_sym_BSLASHfootcite] = ACTIONS(11990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11990), + [anon_sym_BSLASHtextcite] = ACTIONS(11990), + [anon_sym_BSLASHTextcite] = ACTIONS(11990), + [anon_sym_BSLASHsmartcite] = ACTIONS(11990), + [anon_sym_BSLASHSmartcite] = ACTIONS(11990), + [anon_sym_BSLASHsupercite] = ACTIONS(11990), + [anon_sym_BSLASHautocite] = ACTIONS(11990), + [anon_sym_BSLASHAutocite] = ACTIONS(11990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHvolcite] = ACTIONS(11990), + [anon_sym_BSLASHVolcite] = ACTIONS(11990), + [anon_sym_BSLASHpvolcite] = ACTIONS(11990), + [anon_sym_BSLASHPvolcite] = ACTIONS(11990), + [anon_sym_BSLASHfvolcite] = ACTIONS(11990), + [anon_sym_BSLASHftvolcite] = ACTIONS(11990), + [anon_sym_BSLASHsvolcite] = ACTIONS(11990), + [anon_sym_BSLASHSvolcite] = ACTIONS(11990), + [anon_sym_BSLASHtvolcite] = ACTIONS(11990), + [anon_sym_BSLASHTvolcite] = ACTIONS(11990), + [anon_sym_BSLASHavolcite] = ACTIONS(11990), + [anon_sym_BSLASHAvolcite] = ACTIONS(11990), + [anon_sym_BSLASHnotecite] = ACTIONS(11990), + [anon_sym_BSLASHpnotecite] = ACTIONS(11990), + [anon_sym_BSLASHPnotecite] = ACTIONS(11990), + [anon_sym_BSLASHfnotecite] = ACTIONS(11990), + [anon_sym_BSLASHusepackage] = ACTIONS(11990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11990), + [anon_sym_BSLASHinclude] = ACTIONS(11990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11990), + [anon_sym_BSLASHinput] = ACTIONS(11990), + [anon_sym_BSLASHsubfile] = ACTIONS(11990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11990), + [anon_sym_BSLASHbibliography] = ACTIONS(11990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11990), + [anon_sym_BSLASHincludesvg] = ACTIONS(11990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11990), + [anon_sym_BSLASHimport] = ACTIONS(11990), + [anon_sym_BSLASHsubimport] = ACTIONS(11990), + [anon_sym_BSLASHinputfrom] = ACTIONS(11990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11990), + [anon_sym_BSLASHincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHlabel] = ACTIONS(11990), + [anon_sym_BSLASHref] = ACTIONS(11990), + [anon_sym_BSLASHvref] = ACTIONS(11990), + [anon_sym_BSLASHVref] = ACTIONS(11990), + [anon_sym_BSLASHautoref] = ACTIONS(11990), + [anon_sym_BSLASHpageref] = ACTIONS(11990), + [anon_sym_BSLASHcref] = ACTIONS(11990), + [anon_sym_BSLASHCref] = ACTIONS(11990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnameCref] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHlabelcref] = ACTIONS(11990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11990), + [anon_sym_BSLASHeqref] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange] = ACTIONS(11990), + [anon_sym_BSLASHCrefrange] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewlabel] = ACTIONS(11990), + [anon_sym_BSLASHnewcommand] = ACTIONS(11990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11990), + [anon_sym_BSLASHgls] = ACTIONS(11990), + [anon_sym_BSLASHGls] = ACTIONS(11990), + [anon_sym_BSLASHGLS] = ACTIONS(11990), + [anon_sym_BSLASHglspl] = ACTIONS(11990), + [anon_sym_BSLASHGlspl] = ACTIONS(11990), + [anon_sym_BSLASHGLSpl] = ACTIONS(11990), + [anon_sym_BSLASHglsdisp] = ACTIONS(11990), + [anon_sym_BSLASHglslink] = ACTIONS(11990), + [anon_sym_BSLASHglstext] = ACTIONS(11990), + [anon_sym_BSLASHGlstext] = ACTIONS(11990), + [anon_sym_BSLASHGLStext] = ACTIONS(11990), + [anon_sym_BSLASHglsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11990), + [anon_sym_BSLASHglsplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSplural] = ACTIONS(11990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHglsname] = ACTIONS(11990), + [anon_sym_BSLASHGlsname] = ACTIONS(11990), + [anon_sym_BSLASHGLSname] = ACTIONS(11990), + [anon_sym_BSLASHglssymbol] = ACTIONS(11990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11990), + [anon_sym_BSLASHglsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11990), + [anon_sym_BSLASHglsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11990), + [anon_sym_BSLASHglsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11990), + [anon_sym_BSLASHglsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11990), + [anon_sym_BSLASHglsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11990), + [anon_sym_BSLASHnewacronym] = ACTIONS(11990), + [anon_sym_BSLASHacrshort] = ACTIONS(11990), + [anon_sym_BSLASHAcrshort] = ACTIONS(11990), + [anon_sym_BSLASHACRshort] = ACTIONS(11990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11990), + [anon_sym_BSLASHacrlong] = ACTIONS(11990), + [anon_sym_BSLASHAcrlong] = ACTIONS(11990), + [anon_sym_BSLASHACRlong] = ACTIONS(11990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11990), + [anon_sym_BSLASHacrfull] = ACTIONS(11990), + [anon_sym_BSLASHAcrfull] = ACTIONS(11990), + [anon_sym_BSLASHACRfull] = ACTIONS(11990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11990), + [anon_sym_BSLASHacs] = ACTIONS(11990), + [anon_sym_BSLASHAcs] = ACTIONS(11990), + [anon_sym_BSLASHacsp] = ACTIONS(11990), + [anon_sym_BSLASHAcsp] = ACTIONS(11990), + [anon_sym_BSLASHacl] = ACTIONS(11990), + [anon_sym_BSLASHAcl] = ACTIONS(11990), + [anon_sym_BSLASHaclp] = ACTIONS(11990), + [anon_sym_BSLASHAclp] = ACTIONS(11990), + [anon_sym_BSLASHacf] = ACTIONS(11990), + [anon_sym_BSLASHAcf] = ACTIONS(11990), + [anon_sym_BSLASHacfp] = ACTIONS(11990), + [anon_sym_BSLASHAcfp] = ACTIONS(11990), + [anon_sym_BSLASHac] = ACTIONS(11990), + [anon_sym_BSLASHAc] = ACTIONS(11990), + [anon_sym_BSLASHacp] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11990), + [anon_sym_BSLASHcolor] = ACTIONS(11990), + [anon_sym_BSLASHcolorbox] = ACTIONS(11990), + [anon_sym_BSLASHtextcolor] = ACTIONS(11990), + [anon_sym_BSLASHpagecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11990), + }, + [929] = { + [sym_generic_command_name] = ACTIONS(12303), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12303), + [aux_sym_chapter_token1] = ACTIONS(12303), + [aux_sym_section_token1] = ACTIONS(12303), + [aux_sym_subsection_token1] = ACTIONS(12303), + [aux_sym_subsubsection_token1] = ACTIONS(12303), + [aux_sym_paragraph_token1] = ACTIONS(12303), + [aux_sym_subparagraph_token1] = ACTIONS(12303), + [anon_sym_BSLASHitem] = ACTIONS(12303), + [anon_sym_LBRACK] = ACTIONS(12301), + [anon_sym_LBRACE] = ACTIONS(12301), + [anon_sym_LPAREN] = ACTIONS(12301), + [anon_sym_COMMA] = ACTIONS(12301), + [anon_sym_EQ] = ACTIONS(12301), + [sym_word] = ACTIONS(12301), + [sym_param] = ACTIONS(12301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12301), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12301), + [anon_sym_DOLLAR] = ACTIONS(12303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12301), + [anon_sym_BSLASHbegin] = ACTIONS(12303), + [anon_sym_BSLASHcaption] = ACTIONS(12303), + [anon_sym_BSLASHcite] = ACTIONS(12303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCite] = ACTIONS(12303), + [anon_sym_BSLASHnocite] = ACTIONS(12303), + [anon_sym_BSLASHcitet] = ACTIONS(12303), + [anon_sym_BSLASHcitep] = ACTIONS(12303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteauthor] = ACTIONS(12303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitetitle] = ACTIONS(12303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteyear] = ACTIONS(12303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitedate] = ACTIONS(12303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteurl] = ACTIONS(12303), + [anon_sym_BSLASHfullcite] = ACTIONS(12303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12303), + [anon_sym_BSLASHcitealt] = ACTIONS(12303), + [anon_sym_BSLASHcitealp] = ACTIONS(12303), + [anon_sym_BSLASHcitetext] = ACTIONS(12303), + [anon_sym_BSLASHparencite] = ACTIONS(12303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHParencite] = ACTIONS(12303), + [anon_sym_BSLASHfootcite] = ACTIONS(12303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12303), + [anon_sym_BSLASHtextcite] = ACTIONS(12303), + [anon_sym_BSLASHTextcite] = ACTIONS(12303), + [anon_sym_BSLASHsmartcite] = ACTIONS(12303), + [anon_sym_BSLASHSmartcite] = ACTIONS(12303), + [anon_sym_BSLASHsupercite] = ACTIONS(12303), + [anon_sym_BSLASHautocite] = ACTIONS(12303), + [anon_sym_BSLASHAutocite] = ACTIONS(12303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHvolcite] = ACTIONS(12303), + [anon_sym_BSLASHVolcite] = ACTIONS(12303), + [anon_sym_BSLASHpvolcite] = ACTIONS(12303), + [anon_sym_BSLASHPvolcite] = ACTIONS(12303), + [anon_sym_BSLASHfvolcite] = ACTIONS(12303), + [anon_sym_BSLASHftvolcite] = ACTIONS(12303), + [anon_sym_BSLASHsvolcite] = ACTIONS(12303), + [anon_sym_BSLASHSvolcite] = ACTIONS(12303), + [anon_sym_BSLASHtvolcite] = ACTIONS(12303), + [anon_sym_BSLASHTvolcite] = ACTIONS(12303), + [anon_sym_BSLASHavolcite] = ACTIONS(12303), + [anon_sym_BSLASHAvolcite] = ACTIONS(12303), + [anon_sym_BSLASHnotecite] = ACTIONS(12303), + [anon_sym_BSLASHpnotecite] = ACTIONS(12303), + [anon_sym_BSLASHPnotecite] = ACTIONS(12303), + [anon_sym_BSLASHfnotecite] = ACTIONS(12303), + [anon_sym_BSLASHusepackage] = ACTIONS(12303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12303), + [anon_sym_BSLASHinclude] = ACTIONS(12303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12303), + [anon_sym_BSLASHinput] = ACTIONS(12303), + [anon_sym_BSLASHsubfile] = ACTIONS(12303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12303), + [anon_sym_BSLASHbibliography] = ACTIONS(12303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12303), + [anon_sym_BSLASHincludesvg] = ACTIONS(12303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12303), + [anon_sym_BSLASHimport] = ACTIONS(12303), + [anon_sym_BSLASHsubimport] = ACTIONS(12303), + [anon_sym_BSLASHinputfrom] = ACTIONS(12303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12303), + [anon_sym_BSLASHincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHlabel] = ACTIONS(12303), + [anon_sym_BSLASHref] = ACTIONS(12303), + [anon_sym_BSLASHvref] = ACTIONS(12303), + [anon_sym_BSLASHVref] = ACTIONS(12303), + [anon_sym_BSLASHautoref] = ACTIONS(12303), + [anon_sym_BSLASHpageref] = ACTIONS(12303), + [anon_sym_BSLASHcref] = ACTIONS(12303), + [anon_sym_BSLASHCref] = ACTIONS(12303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnameCref] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHlabelcref] = ACTIONS(12303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12303), + [anon_sym_BSLASHeqref] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange] = ACTIONS(12303), + [anon_sym_BSLASHCrefrange] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewlabel] = ACTIONS(12303), + [anon_sym_BSLASHnewcommand] = ACTIONS(12303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12303), + [anon_sym_BSLASHgls] = ACTIONS(12303), + [anon_sym_BSLASHGls] = ACTIONS(12303), + [anon_sym_BSLASHGLS] = ACTIONS(12303), + [anon_sym_BSLASHglspl] = ACTIONS(12303), + [anon_sym_BSLASHGlspl] = ACTIONS(12303), + [anon_sym_BSLASHGLSpl] = ACTIONS(12303), + [anon_sym_BSLASHglsdisp] = ACTIONS(12303), + [anon_sym_BSLASHglslink] = ACTIONS(12303), + [anon_sym_BSLASHglstext] = ACTIONS(12303), + [anon_sym_BSLASHGlstext] = ACTIONS(12303), + [anon_sym_BSLASHGLStext] = ACTIONS(12303), + [anon_sym_BSLASHglsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12303), + [anon_sym_BSLASHglsplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSplural] = ACTIONS(12303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHglsname] = ACTIONS(12303), + [anon_sym_BSLASHGlsname] = ACTIONS(12303), + [anon_sym_BSLASHGLSname] = ACTIONS(12303), + [anon_sym_BSLASHglssymbol] = ACTIONS(12303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12303), + [anon_sym_BSLASHglsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12303), + [anon_sym_BSLASHglsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12303), + [anon_sym_BSLASHglsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12303), + [anon_sym_BSLASHglsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12303), + [anon_sym_BSLASHglsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12303), + [anon_sym_BSLASHnewacronym] = ACTIONS(12303), + [anon_sym_BSLASHacrshort] = ACTIONS(12303), + [anon_sym_BSLASHAcrshort] = ACTIONS(12303), + [anon_sym_BSLASHACRshort] = ACTIONS(12303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12303), + [anon_sym_BSLASHacrlong] = ACTIONS(12303), + [anon_sym_BSLASHAcrlong] = ACTIONS(12303), + [anon_sym_BSLASHACRlong] = ACTIONS(12303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12303), + [anon_sym_BSLASHacrfull] = ACTIONS(12303), + [anon_sym_BSLASHAcrfull] = ACTIONS(12303), + [anon_sym_BSLASHACRfull] = ACTIONS(12303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12303), + [anon_sym_BSLASHacs] = ACTIONS(12303), + [anon_sym_BSLASHAcs] = ACTIONS(12303), + [anon_sym_BSLASHacsp] = ACTIONS(12303), + [anon_sym_BSLASHAcsp] = ACTIONS(12303), + [anon_sym_BSLASHacl] = ACTIONS(12303), + [anon_sym_BSLASHAcl] = ACTIONS(12303), + [anon_sym_BSLASHaclp] = ACTIONS(12303), + [anon_sym_BSLASHAclp] = ACTIONS(12303), + [anon_sym_BSLASHacf] = ACTIONS(12303), + [anon_sym_BSLASHAcf] = ACTIONS(12303), + [anon_sym_BSLASHacfp] = ACTIONS(12303), + [anon_sym_BSLASHAcfp] = ACTIONS(12303), + [anon_sym_BSLASHac] = ACTIONS(12303), + [anon_sym_BSLASHAc] = ACTIONS(12303), + [anon_sym_BSLASHacp] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12303), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12303), + [anon_sym_BSLASHcolor] = ACTIONS(12303), + [anon_sym_BSLASHcolorbox] = ACTIONS(12303), + [anon_sym_BSLASHtextcolor] = ACTIONS(12303), + [anon_sym_BSLASHpagecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12303), + }, + [930] = { + [sym_generic_command_name] = ACTIONS(12307), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12307), + [aux_sym_chapter_token1] = ACTIONS(12307), + [aux_sym_section_token1] = ACTIONS(12307), + [aux_sym_subsection_token1] = ACTIONS(12307), + [aux_sym_subsubsection_token1] = ACTIONS(12307), + [aux_sym_paragraph_token1] = ACTIONS(12307), + [aux_sym_subparagraph_token1] = ACTIONS(12307), + [anon_sym_BSLASHitem] = ACTIONS(12307), + [anon_sym_LBRACK] = ACTIONS(12305), + [anon_sym_LBRACE] = ACTIONS(12305), + [anon_sym_LPAREN] = ACTIONS(12305), + [anon_sym_COMMA] = ACTIONS(12305), + [anon_sym_EQ] = ACTIONS(12305), + [sym_word] = ACTIONS(12305), + [sym_param] = ACTIONS(12305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12305), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12305), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12305), + [anon_sym_DOLLAR] = ACTIONS(12307), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12305), + [anon_sym_BSLASHbegin] = ACTIONS(12307), + [anon_sym_BSLASHcaption] = ACTIONS(12307), + [anon_sym_BSLASHcite] = ACTIONS(12307), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCite] = ACTIONS(12307), + [anon_sym_BSLASHnocite] = ACTIONS(12307), + [anon_sym_BSLASHcitet] = ACTIONS(12307), + [anon_sym_BSLASHcitep] = ACTIONS(12307), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteauthor] = ACTIONS(12307), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12307), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitetitle] = ACTIONS(12307), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteyear] = ACTIONS(12307), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitedate] = ACTIONS(12307), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteurl] = ACTIONS(12307), + [anon_sym_BSLASHfullcite] = ACTIONS(12307), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12307), + [anon_sym_BSLASHcitealt] = ACTIONS(12307), + [anon_sym_BSLASHcitealp] = ACTIONS(12307), + [anon_sym_BSLASHcitetext] = ACTIONS(12307), + [anon_sym_BSLASHparencite] = ACTIONS(12307), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHParencite] = ACTIONS(12307), + [anon_sym_BSLASHfootcite] = ACTIONS(12307), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12307), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12307), + [anon_sym_BSLASHtextcite] = ACTIONS(12307), + [anon_sym_BSLASHTextcite] = ACTIONS(12307), + [anon_sym_BSLASHsmartcite] = ACTIONS(12307), + [anon_sym_BSLASHSmartcite] = ACTIONS(12307), + [anon_sym_BSLASHsupercite] = ACTIONS(12307), + [anon_sym_BSLASHautocite] = ACTIONS(12307), + [anon_sym_BSLASHAutocite] = ACTIONS(12307), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHvolcite] = ACTIONS(12307), + [anon_sym_BSLASHVolcite] = ACTIONS(12307), + [anon_sym_BSLASHpvolcite] = ACTIONS(12307), + [anon_sym_BSLASHPvolcite] = ACTIONS(12307), + [anon_sym_BSLASHfvolcite] = ACTIONS(12307), + [anon_sym_BSLASHftvolcite] = ACTIONS(12307), + [anon_sym_BSLASHsvolcite] = ACTIONS(12307), + [anon_sym_BSLASHSvolcite] = ACTIONS(12307), + [anon_sym_BSLASHtvolcite] = ACTIONS(12307), + [anon_sym_BSLASHTvolcite] = ACTIONS(12307), + [anon_sym_BSLASHavolcite] = ACTIONS(12307), + [anon_sym_BSLASHAvolcite] = ACTIONS(12307), + [anon_sym_BSLASHnotecite] = ACTIONS(12307), + [anon_sym_BSLASHpnotecite] = ACTIONS(12307), + [anon_sym_BSLASHPnotecite] = ACTIONS(12307), + [anon_sym_BSLASHfnotecite] = ACTIONS(12307), + [anon_sym_BSLASHusepackage] = ACTIONS(12307), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12307), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12307), + [anon_sym_BSLASHinclude] = ACTIONS(12307), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12307), + [anon_sym_BSLASHinput] = ACTIONS(12307), + [anon_sym_BSLASHsubfile] = ACTIONS(12307), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12307), + [anon_sym_BSLASHbibliography] = ACTIONS(12307), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12307), + [anon_sym_BSLASHincludesvg] = ACTIONS(12307), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12307), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12307), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12307), + [anon_sym_BSLASHimport] = ACTIONS(12307), + [anon_sym_BSLASHsubimport] = ACTIONS(12307), + [anon_sym_BSLASHinputfrom] = ACTIONS(12307), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12307), + [anon_sym_BSLASHincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHlabel] = ACTIONS(12307), + [anon_sym_BSLASHref] = ACTIONS(12307), + [anon_sym_BSLASHvref] = ACTIONS(12307), + [anon_sym_BSLASHVref] = ACTIONS(12307), + [anon_sym_BSLASHautoref] = ACTIONS(12307), + [anon_sym_BSLASHpageref] = ACTIONS(12307), + [anon_sym_BSLASHcref] = ACTIONS(12307), + [anon_sym_BSLASHCref] = ACTIONS(12307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnameCref] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHlabelcref] = ACTIONS(12307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12307), + [anon_sym_BSLASHeqref] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange] = ACTIONS(12307), + [anon_sym_BSLASHCrefrange] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewlabel] = ACTIONS(12307), + [anon_sym_BSLASHnewcommand] = ACTIONS(12307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12307), + [anon_sym_BSLASHgls] = ACTIONS(12307), + [anon_sym_BSLASHGls] = ACTIONS(12307), + [anon_sym_BSLASHGLS] = ACTIONS(12307), + [anon_sym_BSLASHglspl] = ACTIONS(12307), + [anon_sym_BSLASHGlspl] = ACTIONS(12307), + [anon_sym_BSLASHGLSpl] = ACTIONS(12307), + [anon_sym_BSLASHglsdisp] = ACTIONS(12307), + [anon_sym_BSLASHglslink] = ACTIONS(12307), + [anon_sym_BSLASHglstext] = ACTIONS(12307), + [anon_sym_BSLASHGlstext] = ACTIONS(12307), + [anon_sym_BSLASHGLStext] = ACTIONS(12307), + [anon_sym_BSLASHglsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12307), + [anon_sym_BSLASHglsplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSplural] = ACTIONS(12307), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHglsname] = ACTIONS(12307), + [anon_sym_BSLASHGlsname] = ACTIONS(12307), + [anon_sym_BSLASHGLSname] = ACTIONS(12307), + [anon_sym_BSLASHglssymbol] = ACTIONS(12307), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12307), + [anon_sym_BSLASHglsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12307), + [anon_sym_BSLASHglsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12307), + [anon_sym_BSLASHglsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12307), + [anon_sym_BSLASHglsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12307), + [anon_sym_BSLASHglsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12307), + [anon_sym_BSLASHnewacronym] = ACTIONS(12307), + [anon_sym_BSLASHacrshort] = ACTIONS(12307), + [anon_sym_BSLASHAcrshort] = ACTIONS(12307), + [anon_sym_BSLASHACRshort] = ACTIONS(12307), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12307), + [anon_sym_BSLASHacrlong] = ACTIONS(12307), + [anon_sym_BSLASHAcrlong] = ACTIONS(12307), + [anon_sym_BSLASHACRlong] = ACTIONS(12307), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12307), + [anon_sym_BSLASHacrfull] = ACTIONS(12307), + [anon_sym_BSLASHAcrfull] = ACTIONS(12307), + [anon_sym_BSLASHACRfull] = ACTIONS(12307), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12307), + [anon_sym_BSLASHacs] = ACTIONS(12307), + [anon_sym_BSLASHAcs] = ACTIONS(12307), + [anon_sym_BSLASHacsp] = ACTIONS(12307), + [anon_sym_BSLASHAcsp] = ACTIONS(12307), + [anon_sym_BSLASHacl] = ACTIONS(12307), + [anon_sym_BSLASHAcl] = ACTIONS(12307), + [anon_sym_BSLASHaclp] = ACTIONS(12307), + [anon_sym_BSLASHAclp] = ACTIONS(12307), + [anon_sym_BSLASHacf] = ACTIONS(12307), + [anon_sym_BSLASHAcf] = ACTIONS(12307), + [anon_sym_BSLASHacfp] = ACTIONS(12307), + [anon_sym_BSLASHAcfp] = ACTIONS(12307), + [anon_sym_BSLASHac] = ACTIONS(12307), + [anon_sym_BSLASHAc] = ACTIONS(12307), + [anon_sym_BSLASHacp] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12307), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12307), + [anon_sym_BSLASHcolor] = ACTIONS(12307), + [anon_sym_BSLASHcolorbox] = ACTIONS(12307), + [anon_sym_BSLASHtextcolor] = ACTIONS(12307), + [anon_sym_BSLASHpagecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12307), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12307), + }, + [931] = { + [sym__text_fragment] = STATE(696), + [aux_sym_text_repeat1] = STATE(696), + [sym_generic_command_name] = ACTIONS(12015), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12015), + [aux_sym_subsubsection_token1] = ACTIONS(12015), + [aux_sym_paragraph_token1] = ACTIONS(12015), + [aux_sym_subparagraph_token1] = ACTIONS(12015), + [anon_sym_BSLASHitem] = ACTIONS(12015), + [anon_sym_LBRACK] = ACTIONS(12013), + [anon_sym_RBRACK] = ACTIONS(12013), + [anon_sym_LBRACE] = ACTIONS(12013), + [anon_sym_RBRACE] = ACTIONS(12013), + [anon_sym_LPAREN] = ACTIONS(12013), + [anon_sym_COMMA] = ACTIONS(12685), + [anon_sym_EQ] = ACTIONS(12685), + [sym_word] = ACTIONS(12685), + [sym_param] = ACTIONS(12013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12013), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12013), + [anon_sym_DOLLAR] = ACTIONS(12015), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12013), + [anon_sym_BSLASHbegin] = ACTIONS(12015), + [anon_sym_BSLASHcaption] = ACTIONS(12015), + [anon_sym_BSLASHcite] = ACTIONS(12015), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCite] = ACTIONS(12015), + [anon_sym_BSLASHnocite] = ACTIONS(12015), + [anon_sym_BSLASHcitet] = ACTIONS(12015), + [anon_sym_BSLASHcitep] = ACTIONS(12015), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteauthor] = ACTIONS(12015), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12015), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitetitle] = ACTIONS(12015), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteyear] = ACTIONS(12015), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitedate] = ACTIONS(12015), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteurl] = ACTIONS(12015), + [anon_sym_BSLASHfullcite] = ACTIONS(12015), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12015), + [anon_sym_BSLASHcitealt] = ACTIONS(12015), + [anon_sym_BSLASHcitealp] = ACTIONS(12015), + [anon_sym_BSLASHcitetext] = ACTIONS(12015), + [anon_sym_BSLASHparencite] = ACTIONS(12015), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHParencite] = ACTIONS(12015), + [anon_sym_BSLASHfootcite] = ACTIONS(12015), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12015), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12015), + [anon_sym_BSLASHtextcite] = ACTIONS(12015), + [anon_sym_BSLASHTextcite] = ACTIONS(12015), + [anon_sym_BSLASHsmartcite] = ACTIONS(12015), + [anon_sym_BSLASHSmartcite] = ACTIONS(12015), + [anon_sym_BSLASHsupercite] = ACTIONS(12015), + [anon_sym_BSLASHautocite] = ACTIONS(12015), + [anon_sym_BSLASHAutocite] = ACTIONS(12015), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHvolcite] = ACTIONS(12015), + [anon_sym_BSLASHVolcite] = ACTIONS(12015), + [anon_sym_BSLASHpvolcite] = ACTIONS(12015), + [anon_sym_BSLASHPvolcite] = ACTIONS(12015), + [anon_sym_BSLASHfvolcite] = ACTIONS(12015), + [anon_sym_BSLASHftvolcite] = ACTIONS(12015), + [anon_sym_BSLASHsvolcite] = ACTIONS(12015), + [anon_sym_BSLASHSvolcite] = ACTIONS(12015), + [anon_sym_BSLASHtvolcite] = ACTIONS(12015), + [anon_sym_BSLASHTvolcite] = ACTIONS(12015), + [anon_sym_BSLASHavolcite] = ACTIONS(12015), + [anon_sym_BSLASHAvolcite] = ACTIONS(12015), + [anon_sym_BSLASHnotecite] = ACTIONS(12015), + [anon_sym_BSLASHpnotecite] = ACTIONS(12015), + [anon_sym_BSLASHPnotecite] = ACTIONS(12015), + [anon_sym_BSLASHfnotecite] = ACTIONS(12015), + [anon_sym_BSLASHusepackage] = ACTIONS(12015), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12015), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12015), + [anon_sym_BSLASHinclude] = ACTIONS(12015), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12015), + [anon_sym_BSLASHinput] = ACTIONS(12015), + [anon_sym_BSLASHsubfile] = ACTIONS(12015), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12015), + [anon_sym_BSLASHbibliography] = ACTIONS(12015), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12015), + [anon_sym_BSLASHincludesvg] = ACTIONS(12015), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12015), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12015), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12015), + [anon_sym_BSLASHimport] = ACTIONS(12015), + [anon_sym_BSLASHsubimport] = ACTIONS(12015), + [anon_sym_BSLASHinputfrom] = ACTIONS(12015), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12015), + [anon_sym_BSLASHincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHlabel] = ACTIONS(12015), + [anon_sym_BSLASHref] = ACTIONS(12015), + [anon_sym_BSLASHvref] = ACTIONS(12015), + [anon_sym_BSLASHVref] = ACTIONS(12015), + [anon_sym_BSLASHautoref] = ACTIONS(12015), + [anon_sym_BSLASHpageref] = ACTIONS(12015), + [anon_sym_BSLASHcref] = ACTIONS(12015), + [anon_sym_BSLASHCref] = ACTIONS(12015), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnameCref] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHlabelcref] = ACTIONS(12015), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12015), + [anon_sym_BSLASHeqref] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange] = ACTIONS(12015), + [anon_sym_BSLASHCrefrange] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewlabel] = ACTIONS(12015), + [anon_sym_BSLASHnewcommand] = ACTIONS(12015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12015), + [anon_sym_BSLASHgls] = ACTIONS(12015), + [anon_sym_BSLASHGls] = ACTIONS(12015), + [anon_sym_BSLASHGLS] = ACTIONS(12015), + [anon_sym_BSLASHglspl] = ACTIONS(12015), + [anon_sym_BSLASHGlspl] = ACTIONS(12015), + [anon_sym_BSLASHGLSpl] = ACTIONS(12015), + [anon_sym_BSLASHglsdisp] = ACTIONS(12015), + [anon_sym_BSLASHglslink] = ACTIONS(12015), + [anon_sym_BSLASHglstext] = ACTIONS(12015), + [anon_sym_BSLASHGlstext] = ACTIONS(12015), + [anon_sym_BSLASHGLStext] = ACTIONS(12015), + [anon_sym_BSLASHglsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12015), + [anon_sym_BSLASHglsplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSplural] = ACTIONS(12015), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHglsname] = ACTIONS(12015), + [anon_sym_BSLASHGlsname] = ACTIONS(12015), + [anon_sym_BSLASHGLSname] = ACTIONS(12015), + [anon_sym_BSLASHglssymbol] = ACTIONS(12015), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12015), + [anon_sym_BSLASHglsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12015), + [anon_sym_BSLASHglsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12015), + [anon_sym_BSLASHglsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12015), + [anon_sym_BSLASHglsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12015), + [anon_sym_BSLASHglsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12015), + [anon_sym_BSLASHnewacronym] = ACTIONS(12015), + [anon_sym_BSLASHacrshort] = ACTIONS(12015), + [anon_sym_BSLASHAcrshort] = ACTIONS(12015), + [anon_sym_BSLASHACRshort] = ACTIONS(12015), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12015), + [anon_sym_BSLASHacrlong] = ACTIONS(12015), + [anon_sym_BSLASHAcrlong] = ACTIONS(12015), + [anon_sym_BSLASHACRlong] = ACTIONS(12015), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12015), + [anon_sym_BSLASHacrfull] = ACTIONS(12015), + [anon_sym_BSLASHAcrfull] = ACTIONS(12015), + [anon_sym_BSLASHACRfull] = ACTIONS(12015), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12015), + [anon_sym_BSLASHacs] = ACTIONS(12015), + [anon_sym_BSLASHAcs] = ACTIONS(12015), + [anon_sym_BSLASHacsp] = ACTIONS(12015), + [anon_sym_BSLASHAcsp] = ACTIONS(12015), + [anon_sym_BSLASHacl] = ACTIONS(12015), + [anon_sym_BSLASHAcl] = ACTIONS(12015), + [anon_sym_BSLASHaclp] = ACTIONS(12015), + [anon_sym_BSLASHAclp] = ACTIONS(12015), + [anon_sym_BSLASHacf] = ACTIONS(12015), + [anon_sym_BSLASHAcf] = ACTIONS(12015), + [anon_sym_BSLASHacfp] = ACTIONS(12015), + [anon_sym_BSLASHAcfp] = ACTIONS(12015), + [anon_sym_BSLASHac] = ACTIONS(12015), + [anon_sym_BSLASHAc] = ACTIONS(12015), + [anon_sym_BSLASHacp] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12015), + [anon_sym_BSLASHcolor] = ACTIONS(12015), + [anon_sym_BSLASHcolorbox] = ACTIONS(12015), + [anon_sym_BSLASHtextcolor] = ACTIONS(12015), + [anon_sym_BSLASHpagecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12015), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12015), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12015), + }, + [932] = { + [sym_generic_command_name] = ACTIONS(12323), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12323), + [aux_sym_chapter_token1] = ACTIONS(12323), + [aux_sym_section_token1] = ACTIONS(12323), + [aux_sym_subsection_token1] = ACTIONS(12323), + [aux_sym_subsubsection_token1] = ACTIONS(12323), + [aux_sym_paragraph_token1] = ACTIONS(12323), + [aux_sym_subparagraph_token1] = ACTIONS(12323), + [anon_sym_BSLASHitem] = ACTIONS(12323), + [anon_sym_LBRACK] = ACTIONS(12321), + [anon_sym_LBRACE] = ACTIONS(12321), + [anon_sym_LPAREN] = ACTIONS(12321), + [anon_sym_COMMA] = ACTIONS(12321), + [anon_sym_EQ] = ACTIONS(12321), + [sym_word] = ACTIONS(12321), + [sym_param] = ACTIONS(12321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12321), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12321), + [anon_sym_DOLLAR] = ACTIONS(12323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12321), + [anon_sym_BSLASHbegin] = ACTIONS(12323), + [anon_sym_BSLASHcaption] = ACTIONS(12323), + [anon_sym_BSLASHcite] = ACTIONS(12323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCite] = ACTIONS(12323), + [anon_sym_BSLASHnocite] = ACTIONS(12323), + [anon_sym_BSLASHcitet] = ACTIONS(12323), + [anon_sym_BSLASHcitep] = ACTIONS(12323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteauthor] = ACTIONS(12323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitetitle] = ACTIONS(12323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteyear] = ACTIONS(12323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitedate] = ACTIONS(12323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteurl] = ACTIONS(12323), + [anon_sym_BSLASHfullcite] = ACTIONS(12323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12323), + [anon_sym_BSLASHcitealt] = ACTIONS(12323), + [anon_sym_BSLASHcitealp] = ACTIONS(12323), + [anon_sym_BSLASHcitetext] = ACTIONS(12323), + [anon_sym_BSLASHparencite] = ACTIONS(12323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHParencite] = ACTIONS(12323), + [anon_sym_BSLASHfootcite] = ACTIONS(12323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12323), + [anon_sym_BSLASHtextcite] = ACTIONS(12323), + [anon_sym_BSLASHTextcite] = ACTIONS(12323), + [anon_sym_BSLASHsmartcite] = ACTIONS(12323), + [anon_sym_BSLASHSmartcite] = ACTIONS(12323), + [anon_sym_BSLASHsupercite] = ACTIONS(12323), + [anon_sym_BSLASHautocite] = ACTIONS(12323), + [anon_sym_BSLASHAutocite] = ACTIONS(12323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHvolcite] = ACTIONS(12323), + [anon_sym_BSLASHVolcite] = ACTIONS(12323), + [anon_sym_BSLASHpvolcite] = ACTIONS(12323), + [anon_sym_BSLASHPvolcite] = ACTIONS(12323), + [anon_sym_BSLASHfvolcite] = ACTIONS(12323), + [anon_sym_BSLASHftvolcite] = ACTIONS(12323), + [anon_sym_BSLASHsvolcite] = ACTIONS(12323), + [anon_sym_BSLASHSvolcite] = ACTIONS(12323), + [anon_sym_BSLASHtvolcite] = ACTIONS(12323), + [anon_sym_BSLASHTvolcite] = ACTIONS(12323), + [anon_sym_BSLASHavolcite] = ACTIONS(12323), + [anon_sym_BSLASHAvolcite] = ACTIONS(12323), + [anon_sym_BSLASHnotecite] = ACTIONS(12323), + [anon_sym_BSLASHpnotecite] = ACTIONS(12323), + [anon_sym_BSLASHPnotecite] = ACTIONS(12323), + [anon_sym_BSLASHfnotecite] = ACTIONS(12323), + [anon_sym_BSLASHusepackage] = ACTIONS(12323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12323), + [anon_sym_BSLASHinclude] = ACTIONS(12323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12323), + [anon_sym_BSLASHinput] = ACTIONS(12323), + [anon_sym_BSLASHsubfile] = ACTIONS(12323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12323), + [anon_sym_BSLASHbibliography] = ACTIONS(12323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12323), + [anon_sym_BSLASHincludesvg] = ACTIONS(12323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12323), + [anon_sym_BSLASHimport] = ACTIONS(12323), + [anon_sym_BSLASHsubimport] = ACTIONS(12323), + [anon_sym_BSLASHinputfrom] = ACTIONS(12323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12323), + [anon_sym_BSLASHincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHlabel] = ACTIONS(12323), + [anon_sym_BSLASHref] = ACTIONS(12323), + [anon_sym_BSLASHvref] = ACTIONS(12323), + [anon_sym_BSLASHVref] = ACTIONS(12323), + [anon_sym_BSLASHautoref] = ACTIONS(12323), + [anon_sym_BSLASHpageref] = ACTIONS(12323), + [anon_sym_BSLASHcref] = ACTIONS(12323), + [anon_sym_BSLASHCref] = ACTIONS(12323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnameCref] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHlabelcref] = ACTIONS(12323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12323), + [anon_sym_BSLASHeqref] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange] = ACTIONS(12323), + [anon_sym_BSLASHCrefrange] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewlabel] = ACTIONS(12323), + [anon_sym_BSLASHnewcommand] = ACTIONS(12323), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12323), + [anon_sym_BSLASHgls] = ACTIONS(12323), + [anon_sym_BSLASHGls] = ACTIONS(12323), + [anon_sym_BSLASHGLS] = ACTIONS(12323), + [anon_sym_BSLASHglspl] = ACTIONS(12323), + [anon_sym_BSLASHGlspl] = ACTIONS(12323), + [anon_sym_BSLASHGLSpl] = ACTIONS(12323), + [anon_sym_BSLASHglsdisp] = ACTIONS(12323), + [anon_sym_BSLASHglslink] = ACTIONS(12323), + [anon_sym_BSLASHglstext] = ACTIONS(12323), + [anon_sym_BSLASHGlstext] = ACTIONS(12323), + [anon_sym_BSLASHGLStext] = ACTIONS(12323), + [anon_sym_BSLASHglsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12323), + [anon_sym_BSLASHglsplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSplural] = ACTIONS(12323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHglsname] = ACTIONS(12323), + [anon_sym_BSLASHGlsname] = ACTIONS(12323), + [anon_sym_BSLASHGLSname] = ACTIONS(12323), + [anon_sym_BSLASHglssymbol] = ACTIONS(12323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12323), + [anon_sym_BSLASHglsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12323), + [anon_sym_BSLASHglsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12323), + [anon_sym_BSLASHglsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12323), + [anon_sym_BSLASHglsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12323), + [anon_sym_BSLASHglsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12323), + [anon_sym_BSLASHnewacronym] = ACTIONS(12323), + [anon_sym_BSLASHacrshort] = ACTIONS(12323), + [anon_sym_BSLASHAcrshort] = ACTIONS(12323), + [anon_sym_BSLASHACRshort] = ACTIONS(12323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12323), + [anon_sym_BSLASHacrlong] = ACTIONS(12323), + [anon_sym_BSLASHAcrlong] = ACTIONS(12323), + [anon_sym_BSLASHACRlong] = ACTIONS(12323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12323), + [anon_sym_BSLASHacrfull] = ACTIONS(12323), + [anon_sym_BSLASHAcrfull] = ACTIONS(12323), + [anon_sym_BSLASHACRfull] = ACTIONS(12323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12323), + [anon_sym_BSLASHacs] = ACTIONS(12323), + [anon_sym_BSLASHAcs] = ACTIONS(12323), + [anon_sym_BSLASHacsp] = ACTIONS(12323), + [anon_sym_BSLASHAcsp] = ACTIONS(12323), + [anon_sym_BSLASHacl] = ACTIONS(12323), + [anon_sym_BSLASHAcl] = ACTIONS(12323), + [anon_sym_BSLASHaclp] = ACTIONS(12323), + [anon_sym_BSLASHAclp] = ACTIONS(12323), + [anon_sym_BSLASHacf] = ACTIONS(12323), + [anon_sym_BSLASHAcf] = ACTIONS(12323), + [anon_sym_BSLASHacfp] = ACTIONS(12323), + [anon_sym_BSLASHAcfp] = ACTIONS(12323), + [anon_sym_BSLASHac] = ACTIONS(12323), + [anon_sym_BSLASHAc] = ACTIONS(12323), + [anon_sym_BSLASHacp] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12323), + [anon_sym_BSLASHcolor] = ACTIONS(12323), + [anon_sym_BSLASHcolorbox] = ACTIONS(12323), + [anon_sym_BSLASHtextcolor] = ACTIONS(12323), + [anon_sym_BSLASHpagecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12323), + }, + [933] = { + [sym_generic_command_name] = ACTIONS(12349), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12349), + [aux_sym_chapter_token1] = ACTIONS(12349), + [aux_sym_section_token1] = ACTIONS(12349), + [aux_sym_subsection_token1] = ACTIONS(12349), + [aux_sym_subsubsection_token1] = ACTIONS(12349), + [aux_sym_paragraph_token1] = ACTIONS(12349), + [aux_sym_subparagraph_token1] = ACTIONS(12349), + [anon_sym_BSLASHitem] = ACTIONS(12349), + [anon_sym_LBRACK] = ACTIONS(12347), + [anon_sym_LBRACE] = ACTIONS(12347), + [anon_sym_LPAREN] = ACTIONS(12347), + [anon_sym_COMMA] = ACTIONS(12347), + [anon_sym_EQ] = ACTIONS(12347), + [sym_word] = ACTIONS(12347), + [sym_param] = ACTIONS(12347), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12347), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12347), + [anon_sym_DOLLAR] = ACTIONS(12349), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12347), + [anon_sym_BSLASHbegin] = ACTIONS(12349), + [anon_sym_BSLASHcaption] = ACTIONS(12349), + [anon_sym_BSLASHcite] = ACTIONS(12349), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCite] = ACTIONS(12349), + [anon_sym_BSLASHnocite] = ACTIONS(12349), + [anon_sym_BSLASHcitet] = ACTIONS(12349), + [anon_sym_BSLASHcitep] = ACTIONS(12349), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteauthor] = ACTIONS(12349), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12349), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitetitle] = ACTIONS(12349), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteyear] = ACTIONS(12349), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitedate] = ACTIONS(12349), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteurl] = ACTIONS(12349), + [anon_sym_BSLASHfullcite] = ACTIONS(12349), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12349), + [anon_sym_BSLASHcitealt] = ACTIONS(12349), + [anon_sym_BSLASHcitealp] = ACTIONS(12349), + [anon_sym_BSLASHcitetext] = ACTIONS(12349), + [anon_sym_BSLASHparencite] = ACTIONS(12349), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHParencite] = ACTIONS(12349), + [anon_sym_BSLASHfootcite] = ACTIONS(12349), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12349), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12349), + [anon_sym_BSLASHtextcite] = ACTIONS(12349), + [anon_sym_BSLASHTextcite] = ACTIONS(12349), + [anon_sym_BSLASHsmartcite] = ACTIONS(12349), + [anon_sym_BSLASHSmartcite] = ACTIONS(12349), + [anon_sym_BSLASHsupercite] = ACTIONS(12349), + [anon_sym_BSLASHautocite] = ACTIONS(12349), + [anon_sym_BSLASHAutocite] = ACTIONS(12349), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHvolcite] = ACTIONS(12349), + [anon_sym_BSLASHVolcite] = ACTIONS(12349), + [anon_sym_BSLASHpvolcite] = ACTIONS(12349), + [anon_sym_BSLASHPvolcite] = ACTIONS(12349), + [anon_sym_BSLASHfvolcite] = ACTIONS(12349), + [anon_sym_BSLASHftvolcite] = ACTIONS(12349), + [anon_sym_BSLASHsvolcite] = ACTIONS(12349), + [anon_sym_BSLASHSvolcite] = ACTIONS(12349), + [anon_sym_BSLASHtvolcite] = ACTIONS(12349), + [anon_sym_BSLASHTvolcite] = ACTIONS(12349), + [anon_sym_BSLASHavolcite] = ACTIONS(12349), + [anon_sym_BSLASHAvolcite] = ACTIONS(12349), + [anon_sym_BSLASHnotecite] = ACTIONS(12349), + [anon_sym_BSLASHpnotecite] = ACTIONS(12349), + [anon_sym_BSLASHPnotecite] = ACTIONS(12349), + [anon_sym_BSLASHfnotecite] = ACTIONS(12349), + [anon_sym_BSLASHusepackage] = ACTIONS(12349), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12349), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12349), + [anon_sym_BSLASHinclude] = ACTIONS(12349), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12349), + [anon_sym_BSLASHinput] = ACTIONS(12349), + [anon_sym_BSLASHsubfile] = ACTIONS(12349), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12349), + [anon_sym_BSLASHbibliography] = ACTIONS(12349), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12349), + [anon_sym_BSLASHincludesvg] = ACTIONS(12349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12349), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12349), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12349), + [anon_sym_BSLASHimport] = ACTIONS(12349), + [anon_sym_BSLASHsubimport] = ACTIONS(12349), + [anon_sym_BSLASHinputfrom] = ACTIONS(12349), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12349), + [anon_sym_BSLASHincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHlabel] = ACTIONS(12349), + [anon_sym_BSLASHref] = ACTIONS(12349), + [anon_sym_BSLASHvref] = ACTIONS(12349), + [anon_sym_BSLASHVref] = ACTIONS(12349), + [anon_sym_BSLASHautoref] = ACTIONS(12349), + [anon_sym_BSLASHpageref] = ACTIONS(12349), + [anon_sym_BSLASHcref] = ACTIONS(12349), + [anon_sym_BSLASHCref] = ACTIONS(12349), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnameCref] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHlabelcref] = ACTIONS(12349), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12349), + [anon_sym_BSLASHeqref] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange] = ACTIONS(12349), + [anon_sym_BSLASHCrefrange] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewlabel] = ACTIONS(12349), + [anon_sym_BSLASHnewcommand] = ACTIONS(12349), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12349), + [anon_sym_BSLASHgls] = ACTIONS(12349), + [anon_sym_BSLASHGls] = ACTIONS(12349), + [anon_sym_BSLASHGLS] = ACTIONS(12349), + [anon_sym_BSLASHglspl] = ACTIONS(12349), + [anon_sym_BSLASHGlspl] = ACTIONS(12349), + [anon_sym_BSLASHGLSpl] = ACTIONS(12349), + [anon_sym_BSLASHglsdisp] = ACTIONS(12349), + [anon_sym_BSLASHglslink] = ACTIONS(12349), + [anon_sym_BSLASHglstext] = ACTIONS(12349), + [anon_sym_BSLASHGlstext] = ACTIONS(12349), + [anon_sym_BSLASHGLStext] = ACTIONS(12349), + [anon_sym_BSLASHglsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12349), + [anon_sym_BSLASHglsplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSplural] = ACTIONS(12349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHglsname] = ACTIONS(12349), + [anon_sym_BSLASHGlsname] = ACTIONS(12349), + [anon_sym_BSLASHGLSname] = ACTIONS(12349), + [anon_sym_BSLASHglssymbol] = ACTIONS(12349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12349), + [anon_sym_BSLASHglsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12349), + [anon_sym_BSLASHglsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12349), + [anon_sym_BSLASHglsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12349), + [anon_sym_BSLASHglsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12349), + [anon_sym_BSLASHglsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12349), + [anon_sym_BSLASHnewacronym] = ACTIONS(12349), + [anon_sym_BSLASHacrshort] = ACTIONS(12349), + [anon_sym_BSLASHAcrshort] = ACTIONS(12349), + [anon_sym_BSLASHACRshort] = ACTIONS(12349), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12349), + [anon_sym_BSLASHacrlong] = ACTIONS(12349), + [anon_sym_BSLASHAcrlong] = ACTIONS(12349), + [anon_sym_BSLASHACRlong] = ACTIONS(12349), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12349), + [anon_sym_BSLASHacrfull] = ACTIONS(12349), + [anon_sym_BSLASHAcrfull] = ACTIONS(12349), + [anon_sym_BSLASHACRfull] = ACTIONS(12349), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12349), + [anon_sym_BSLASHacs] = ACTIONS(12349), + [anon_sym_BSLASHAcs] = ACTIONS(12349), + [anon_sym_BSLASHacsp] = ACTIONS(12349), + [anon_sym_BSLASHAcsp] = ACTIONS(12349), + [anon_sym_BSLASHacl] = ACTIONS(12349), + [anon_sym_BSLASHAcl] = ACTIONS(12349), + [anon_sym_BSLASHaclp] = ACTIONS(12349), + [anon_sym_BSLASHAclp] = ACTIONS(12349), + [anon_sym_BSLASHacf] = ACTIONS(12349), + [anon_sym_BSLASHAcf] = ACTIONS(12349), + [anon_sym_BSLASHacfp] = ACTIONS(12349), + [anon_sym_BSLASHAcfp] = ACTIONS(12349), + [anon_sym_BSLASHac] = ACTIONS(12349), + [anon_sym_BSLASHAc] = ACTIONS(12349), + [anon_sym_BSLASHacp] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12349), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12349), + [anon_sym_BSLASHcolor] = ACTIONS(12349), + [anon_sym_BSLASHcolorbox] = ACTIONS(12349), + [anon_sym_BSLASHtextcolor] = ACTIONS(12349), + [anon_sym_BSLASHpagecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12349), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12349), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12349), + }, + [934] = { + [sym_brace_group] = STATE(3144), + [sym_generic_command_name] = ACTIONS(12054), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12054), + [aux_sym_subsection_token1] = ACTIONS(12054), + [aux_sym_subsubsection_token1] = ACTIONS(12054), + [aux_sym_paragraph_token1] = ACTIONS(12054), + [aux_sym_subparagraph_token1] = ACTIONS(12054), + [anon_sym_BSLASHitem] = ACTIONS(12054), + [anon_sym_LBRACK] = ACTIONS(12052), + [anon_sym_RBRACK] = ACTIONS(12052), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12052), + [anon_sym_LPAREN] = ACTIONS(12052), + [anon_sym_COMMA] = ACTIONS(12052), + [anon_sym_EQ] = ACTIONS(12052), + [sym_word] = ACTIONS(12052), + [sym_param] = ACTIONS(12052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12052), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12052), + [anon_sym_DOLLAR] = ACTIONS(12054), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12052), + [anon_sym_BSLASHbegin] = ACTIONS(12054), + [anon_sym_BSLASHcaption] = ACTIONS(12054), + [anon_sym_BSLASHcite] = ACTIONS(12054), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCite] = ACTIONS(12054), + [anon_sym_BSLASHnocite] = ACTIONS(12054), + [anon_sym_BSLASHcitet] = ACTIONS(12054), + [anon_sym_BSLASHcitep] = ACTIONS(12054), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteauthor] = ACTIONS(12054), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12054), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitetitle] = ACTIONS(12054), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteyear] = ACTIONS(12054), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitedate] = ACTIONS(12054), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteurl] = ACTIONS(12054), + [anon_sym_BSLASHfullcite] = ACTIONS(12054), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12054), + [anon_sym_BSLASHcitealt] = ACTIONS(12054), + [anon_sym_BSLASHcitealp] = ACTIONS(12054), + [anon_sym_BSLASHcitetext] = ACTIONS(12054), + [anon_sym_BSLASHparencite] = ACTIONS(12054), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHParencite] = ACTIONS(12054), + [anon_sym_BSLASHfootcite] = ACTIONS(12054), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12054), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12054), + [anon_sym_BSLASHtextcite] = ACTIONS(12054), + [anon_sym_BSLASHTextcite] = ACTIONS(12054), + [anon_sym_BSLASHsmartcite] = ACTIONS(12054), + [anon_sym_BSLASHSmartcite] = ACTIONS(12054), + [anon_sym_BSLASHsupercite] = ACTIONS(12054), + [anon_sym_BSLASHautocite] = ACTIONS(12054), + [anon_sym_BSLASHAutocite] = ACTIONS(12054), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHvolcite] = ACTIONS(12054), + [anon_sym_BSLASHVolcite] = ACTIONS(12054), + [anon_sym_BSLASHpvolcite] = ACTIONS(12054), + [anon_sym_BSLASHPvolcite] = ACTIONS(12054), + [anon_sym_BSLASHfvolcite] = ACTIONS(12054), + [anon_sym_BSLASHftvolcite] = ACTIONS(12054), + [anon_sym_BSLASHsvolcite] = ACTIONS(12054), + [anon_sym_BSLASHSvolcite] = ACTIONS(12054), + [anon_sym_BSLASHtvolcite] = ACTIONS(12054), + [anon_sym_BSLASHTvolcite] = ACTIONS(12054), + [anon_sym_BSLASHavolcite] = ACTIONS(12054), + [anon_sym_BSLASHAvolcite] = ACTIONS(12054), + [anon_sym_BSLASHnotecite] = ACTIONS(12054), + [anon_sym_BSLASHpnotecite] = ACTIONS(12054), + [anon_sym_BSLASHPnotecite] = ACTIONS(12054), + [anon_sym_BSLASHfnotecite] = ACTIONS(12054), + [anon_sym_BSLASHusepackage] = ACTIONS(12054), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12054), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12054), + [anon_sym_BSLASHinclude] = ACTIONS(12054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12054), + [anon_sym_BSLASHinput] = ACTIONS(12054), + [anon_sym_BSLASHsubfile] = ACTIONS(12054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12054), + [anon_sym_BSLASHbibliography] = ACTIONS(12054), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12054), + [anon_sym_BSLASHincludesvg] = ACTIONS(12054), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12054), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12054), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12054), + [anon_sym_BSLASHimport] = ACTIONS(12054), + [anon_sym_BSLASHsubimport] = ACTIONS(12054), + [anon_sym_BSLASHinputfrom] = ACTIONS(12054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12054), + [anon_sym_BSLASHincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHlabel] = ACTIONS(12054), + [anon_sym_BSLASHref] = ACTIONS(12054), + [anon_sym_BSLASHvref] = ACTIONS(12054), + [anon_sym_BSLASHVref] = ACTIONS(12054), + [anon_sym_BSLASHautoref] = ACTIONS(12054), + [anon_sym_BSLASHpageref] = ACTIONS(12054), + [anon_sym_BSLASHcref] = ACTIONS(12054), + [anon_sym_BSLASHCref] = ACTIONS(12054), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnameCref] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHlabelcref] = ACTIONS(12054), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12054), + [anon_sym_BSLASHeqref] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange] = ACTIONS(12054), + [anon_sym_BSLASHCrefrange] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewlabel] = ACTIONS(12054), + [anon_sym_BSLASHnewcommand] = ACTIONS(12054), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12054), + [anon_sym_BSLASHgls] = ACTIONS(12054), + [anon_sym_BSLASHGls] = ACTIONS(12054), + [anon_sym_BSLASHGLS] = ACTIONS(12054), + [anon_sym_BSLASHglspl] = ACTIONS(12054), + [anon_sym_BSLASHGlspl] = ACTIONS(12054), + [anon_sym_BSLASHGLSpl] = ACTIONS(12054), + [anon_sym_BSLASHglsdisp] = ACTIONS(12054), + [anon_sym_BSLASHglslink] = ACTIONS(12054), + [anon_sym_BSLASHglstext] = ACTIONS(12054), + [anon_sym_BSLASHGlstext] = ACTIONS(12054), + [anon_sym_BSLASHGLStext] = ACTIONS(12054), + [anon_sym_BSLASHglsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12054), + [anon_sym_BSLASHglsplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSplural] = ACTIONS(12054), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHglsname] = ACTIONS(12054), + [anon_sym_BSLASHGlsname] = ACTIONS(12054), + [anon_sym_BSLASHGLSname] = ACTIONS(12054), + [anon_sym_BSLASHglssymbol] = ACTIONS(12054), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12054), + [anon_sym_BSLASHglsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12054), + [anon_sym_BSLASHglsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12054), + [anon_sym_BSLASHglsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12054), + [anon_sym_BSLASHglsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12054), + [anon_sym_BSLASHglsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12054), + [anon_sym_BSLASHnewacronym] = ACTIONS(12054), + [anon_sym_BSLASHacrshort] = ACTIONS(12054), + [anon_sym_BSLASHAcrshort] = ACTIONS(12054), + [anon_sym_BSLASHACRshort] = ACTIONS(12054), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12054), + [anon_sym_BSLASHacrlong] = ACTIONS(12054), + [anon_sym_BSLASHAcrlong] = ACTIONS(12054), + [anon_sym_BSLASHACRlong] = ACTIONS(12054), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12054), + [anon_sym_BSLASHacrfull] = ACTIONS(12054), + [anon_sym_BSLASHAcrfull] = ACTIONS(12054), + [anon_sym_BSLASHACRfull] = ACTIONS(12054), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12054), + [anon_sym_BSLASHacs] = ACTIONS(12054), + [anon_sym_BSLASHAcs] = ACTIONS(12054), + [anon_sym_BSLASHacsp] = ACTIONS(12054), + [anon_sym_BSLASHAcsp] = ACTIONS(12054), + [anon_sym_BSLASHacl] = ACTIONS(12054), + [anon_sym_BSLASHAcl] = ACTIONS(12054), + [anon_sym_BSLASHaclp] = ACTIONS(12054), + [anon_sym_BSLASHAclp] = ACTIONS(12054), + [anon_sym_BSLASHacf] = ACTIONS(12054), + [anon_sym_BSLASHAcf] = ACTIONS(12054), + [anon_sym_BSLASHacfp] = ACTIONS(12054), + [anon_sym_BSLASHAcfp] = ACTIONS(12054), + [anon_sym_BSLASHac] = ACTIONS(12054), + [anon_sym_BSLASHAc] = ACTIONS(12054), + [anon_sym_BSLASHacp] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12054), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12054), + [anon_sym_BSLASHcolor] = ACTIONS(12054), + [anon_sym_BSLASHcolorbox] = ACTIONS(12054), + [anon_sym_BSLASHtextcolor] = ACTIONS(12054), + [anon_sym_BSLASHpagecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12054), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12054), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12054), + }, + [935] = { + [sym_brace_group] = STATE(3145), + [sym_generic_command_name] = ACTIONS(12088), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12088), + [aux_sym_subsection_token1] = ACTIONS(12088), + [aux_sym_subsubsection_token1] = ACTIONS(12088), + [aux_sym_paragraph_token1] = ACTIONS(12088), + [aux_sym_subparagraph_token1] = ACTIONS(12088), + [anon_sym_BSLASHitem] = ACTIONS(12088), + [anon_sym_LBRACK] = ACTIONS(12086), + [anon_sym_RBRACK] = ACTIONS(12086), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12086), + [anon_sym_LPAREN] = ACTIONS(12086), + [anon_sym_COMMA] = ACTIONS(12086), + [anon_sym_EQ] = ACTIONS(12086), + [sym_word] = ACTIONS(12086), + [sym_param] = ACTIONS(12086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12086), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12086), + [anon_sym_DOLLAR] = ACTIONS(12088), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12086), + [anon_sym_BSLASHbegin] = ACTIONS(12088), + [anon_sym_BSLASHcaption] = ACTIONS(12088), + [anon_sym_BSLASHcite] = ACTIONS(12088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCite] = ACTIONS(12088), + [anon_sym_BSLASHnocite] = ACTIONS(12088), + [anon_sym_BSLASHcitet] = ACTIONS(12088), + [anon_sym_BSLASHcitep] = ACTIONS(12088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteauthor] = ACTIONS(12088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitetitle] = ACTIONS(12088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteyear] = ACTIONS(12088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitedate] = ACTIONS(12088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteurl] = ACTIONS(12088), + [anon_sym_BSLASHfullcite] = ACTIONS(12088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12088), + [anon_sym_BSLASHcitealt] = ACTIONS(12088), + [anon_sym_BSLASHcitealp] = ACTIONS(12088), + [anon_sym_BSLASHcitetext] = ACTIONS(12088), + [anon_sym_BSLASHparencite] = ACTIONS(12088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHParencite] = ACTIONS(12088), + [anon_sym_BSLASHfootcite] = ACTIONS(12088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12088), + [anon_sym_BSLASHtextcite] = ACTIONS(12088), + [anon_sym_BSLASHTextcite] = ACTIONS(12088), + [anon_sym_BSLASHsmartcite] = ACTIONS(12088), + [anon_sym_BSLASHSmartcite] = ACTIONS(12088), + [anon_sym_BSLASHsupercite] = ACTIONS(12088), + [anon_sym_BSLASHautocite] = ACTIONS(12088), + [anon_sym_BSLASHAutocite] = ACTIONS(12088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHvolcite] = ACTIONS(12088), + [anon_sym_BSLASHVolcite] = ACTIONS(12088), + [anon_sym_BSLASHpvolcite] = ACTIONS(12088), + [anon_sym_BSLASHPvolcite] = ACTIONS(12088), + [anon_sym_BSLASHfvolcite] = ACTIONS(12088), + [anon_sym_BSLASHftvolcite] = ACTIONS(12088), + [anon_sym_BSLASHsvolcite] = ACTIONS(12088), + [anon_sym_BSLASHSvolcite] = ACTIONS(12088), + [anon_sym_BSLASHtvolcite] = ACTIONS(12088), + [anon_sym_BSLASHTvolcite] = ACTIONS(12088), + [anon_sym_BSLASHavolcite] = ACTIONS(12088), + [anon_sym_BSLASHAvolcite] = ACTIONS(12088), + [anon_sym_BSLASHnotecite] = ACTIONS(12088), + [anon_sym_BSLASHpnotecite] = ACTIONS(12088), + [anon_sym_BSLASHPnotecite] = ACTIONS(12088), + [anon_sym_BSLASHfnotecite] = ACTIONS(12088), + [anon_sym_BSLASHusepackage] = ACTIONS(12088), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12088), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12088), + [anon_sym_BSLASHinclude] = ACTIONS(12088), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12088), + [anon_sym_BSLASHinput] = ACTIONS(12088), + [anon_sym_BSLASHsubfile] = ACTIONS(12088), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12088), + [anon_sym_BSLASHbibliography] = ACTIONS(12088), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12088), + [anon_sym_BSLASHincludesvg] = ACTIONS(12088), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12088), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12088), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12088), + [anon_sym_BSLASHimport] = ACTIONS(12088), + [anon_sym_BSLASHsubimport] = ACTIONS(12088), + [anon_sym_BSLASHinputfrom] = ACTIONS(12088), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12088), + [anon_sym_BSLASHincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHlabel] = ACTIONS(12088), + [anon_sym_BSLASHref] = ACTIONS(12088), + [anon_sym_BSLASHvref] = ACTIONS(12088), + [anon_sym_BSLASHVref] = ACTIONS(12088), + [anon_sym_BSLASHautoref] = ACTIONS(12088), + [anon_sym_BSLASHpageref] = ACTIONS(12088), + [anon_sym_BSLASHcref] = ACTIONS(12088), + [anon_sym_BSLASHCref] = ACTIONS(12088), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnameCref] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHlabelcref] = ACTIONS(12088), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12088), + [anon_sym_BSLASHeqref] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange] = ACTIONS(12088), + [anon_sym_BSLASHCrefrange] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewlabel] = ACTIONS(12088), + [anon_sym_BSLASHnewcommand] = ACTIONS(12088), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12088), + [anon_sym_BSLASHgls] = ACTIONS(12088), + [anon_sym_BSLASHGls] = ACTIONS(12088), + [anon_sym_BSLASHGLS] = ACTIONS(12088), + [anon_sym_BSLASHglspl] = ACTIONS(12088), + [anon_sym_BSLASHGlspl] = ACTIONS(12088), + [anon_sym_BSLASHGLSpl] = ACTIONS(12088), + [anon_sym_BSLASHglsdisp] = ACTIONS(12088), + [anon_sym_BSLASHglslink] = ACTIONS(12088), + [anon_sym_BSLASHglstext] = ACTIONS(12088), + [anon_sym_BSLASHGlstext] = ACTIONS(12088), + [anon_sym_BSLASHGLStext] = ACTIONS(12088), + [anon_sym_BSLASHglsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12088), + [anon_sym_BSLASHglsplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSplural] = ACTIONS(12088), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHglsname] = ACTIONS(12088), + [anon_sym_BSLASHGlsname] = ACTIONS(12088), + [anon_sym_BSLASHGLSname] = ACTIONS(12088), + [anon_sym_BSLASHglssymbol] = ACTIONS(12088), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12088), + [anon_sym_BSLASHglsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12088), + [anon_sym_BSLASHglsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12088), + [anon_sym_BSLASHglsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12088), + [anon_sym_BSLASHglsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12088), + [anon_sym_BSLASHglsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12088), + [anon_sym_BSLASHnewacronym] = ACTIONS(12088), + [anon_sym_BSLASHacrshort] = ACTIONS(12088), + [anon_sym_BSLASHAcrshort] = ACTIONS(12088), + [anon_sym_BSLASHACRshort] = ACTIONS(12088), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12088), + [anon_sym_BSLASHacrlong] = ACTIONS(12088), + [anon_sym_BSLASHAcrlong] = ACTIONS(12088), + [anon_sym_BSLASHACRlong] = ACTIONS(12088), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12088), + [anon_sym_BSLASHacrfull] = ACTIONS(12088), + [anon_sym_BSLASHAcrfull] = ACTIONS(12088), + [anon_sym_BSLASHACRfull] = ACTIONS(12088), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12088), + [anon_sym_BSLASHacs] = ACTIONS(12088), + [anon_sym_BSLASHAcs] = ACTIONS(12088), + [anon_sym_BSLASHacsp] = ACTIONS(12088), + [anon_sym_BSLASHAcsp] = ACTIONS(12088), + [anon_sym_BSLASHacl] = ACTIONS(12088), + [anon_sym_BSLASHAcl] = ACTIONS(12088), + [anon_sym_BSLASHaclp] = ACTIONS(12088), + [anon_sym_BSLASHAclp] = ACTIONS(12088), + [anon_sym_BSLASHacf] = ACTIONS(12088), + [anon_sym_BSLASHAcf] = ACTIONS(12088), + [anon_sym_BSLASHacfp] = ACTIONS(12088), + [anon_sym_BSLASHAcfp] = ACTIONS(12088), + [anon_sym_BSLASHac] = ACTIONS(12088), + [anon_sym_BSLASHAc] = ACTIONS(12088), + [anon_sym_BSLASHacp] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12088), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12088), + [anon_sym_BSLASHcolor] = ACTIONS(12088), + [anon_sym_BSLASHcolorbox] = ACTIONS(12088), + [anon_sym_BSLASHtextcolor] = ACTIONS(12088), + [anon_sym_BSLASHpagecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12088), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12088), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12088), + }, + [936] = { + [sym_brace_group] = STATE(3147), + [sym_generic_command_name] = ACTIONS(12092), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12092), + [aux_sym_subsection_token1] = ACTIONS(12092), + [aux_sym_subsubsection_token1] = ACTIONS(12092), + [aux_sym_paragraph_token1] = ACTIONS(12092), + [aux_sym_subparagraph_token1] = ACTIONS(12092), + [anon_sym_BSLASHitem] = ACTIONS(12092), + [anon_sym_LBRACK] = ACTIONS(12090), + [anon_sym_RBRACK] = ACTIONS(12090), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12090), + [anon_sym_LPAREN] = ACTIONS(12090), + [anon_sym_COMMA] = ACTIONS(12090), + [anon_sym_EQ] = ACTIONS(12090), + [sym_word] = ACTIONS(12090), + [sym_param] = ACTIONS(12090), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12090), + [anon_sym_DOLLAR] = ACTIONS(12092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12090), + [anon_sym_BSLASHbegin] = ACTIONS(12092), + [anon_sym_BSLASHcaption] = ACTIONS(12092), + [anon_sym_BSLASHcite] = ACTIONS(12092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCite] = ACTIONS(12092), + [anon_sym_BSLASHnocite] = ACTIONS(12092), + [anon_sym_BSLASHcitet] = ACTIONS(12092), + [anon_sym_BSLASHcitep] = ACTIONS(12092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteauthor] = ACTIONS(12092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitetitle] = ACTIONS(12092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteyear] = ACTIONS(12092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitedate] = ACTIONS(12092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteurl] = ACTIONS(12092), + [anon_sym_BSLASHfullcite] = ACTIONS(12092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12092), + [anon_sym_BSLASHcitealt] = ACTIONS(12092), + [anon_sym_BSLASHcitealp] = ACTIONS(12092), + [anon_sym_BSLASHcitetext] = ACTIONS(12092), + [anon_sym_BSLASHparencite] = ACTIONS(12092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHParencite] = ACTIONS(12092), + [anon_sym_BSLASHfootcite] = ACTIONS(12092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12092), + [anon_sym_BSLASHtextcite] = ACTIONS(12092), + [anon_sym_BSLASHTextcite] = ACTIONS(12092), + [anon_sym_BSLASHsmartcite] = ACTIONS(12092), + [anon_sym_BSLASHSmartcite] = ACTIONS(12092), + [anon_sym_BSLASHsupercite] = ACTIONS(12092), + [anon_sym_BSLASHautocite] = ACTIONS(12092), + [anon_sym_BSLASHAutocite] = ACTIONS(12092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHvolcite] = ACTIONS(12092), + [anon_sym_BSLASHVolcite] = ACTIONS(12092), + [anon_sym_BSLASHpvolcite] = ACTIONS(12092), + [anon_sym_BSLASHPvolcite] = ACTIONS(12092), + [anon_sym_BSLASHfvolcite] = ACTIONS(12092), + [anon_sym_BSLASHftvolcite] = ACTIONS(12092), + [anon_sym_BSLASHsvolcite] = ACTIONS(12092), + [anon_sym_BSLASHSvolcite] = ACTIONS(12092), + [anon_sym_BSLASHtvolcite] = ACTIONS(12092), + [anon_sym_BSLASHTvolcite] = ACTIONS(12092), + [anon_sym_BSLASHavolcite] = ACTIONS(12092), + [anon_sym_BSLASHAvolcite] = ACTIONS(12092), + [anon_sym_BSLASHnotecite] = ACTIONS(12092), + [anon_sym_BSLASHpnotecite] = ACTIONS(12092), + [anon_sym_BSLASHPnotecite] = ACTIONS(12092), + [anon_sym_BSLASHfnotecite] = ACTIONS(12092), + [anon_sym_BSLASHusepackage] = ACTIONS(12092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12092), + [anon_sym_BSLASHinclude] = ACTIONS(12092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12092), + [anon_sym_BSLASHinput] = ACTIONS(12092), + [anon_sym_BSLASHsubfile] = ACTIONS(12092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12092), + [anon_sym_BSLASHbibliography] = ACTIONS(12092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12092), + [anon_sym_BSLASHincludesvg] = ACTIONS(12092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12092), + [anon_sym_BSLASHimport] = ACTIONS(12092), + [anon_sym_BSLASHsubimport] = ACTIONS(12092), + [anon_sym_BSLASHinputfrom] = ACTIONS(12092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12092), + [anon_sym_BSLASHincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHlabel] = ACTIONS(12092), + [anon_sym_BSLASHref] = ACTIONS(12092), + [anon_sym_BSLASHvref] = ACTIONS(12092), + [anon_sym_BSLASHVref] = ACTIONS(12092), + [anon_sym_BSLASHautoref] = ACTIONS(12092), + [anon_sym_BSLASHpageref] = ACTIONS(12092), + [anon_sym_BSLASHcref] = ACTIONS(12092), + [anon_sym_BSLASHCref] = ACTIONS(12092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnameCref] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHlabelcref] = ACTIONS(12092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12092), + [anon_sym_BSLASHeqref] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange] = ACTIONS(12092), + [anon_sym_BSLASHCrefrange] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewlabel] = ACTIONS(12092), + [anon_sym_BSLASHnewcommand] = ACTIONS(12092), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12092), + [anon_sym_BSLASHgls] = ACTIONS(12092), + [anon_sym_BSLASHGls] = ACTIONS(12092), + [anon_sym_BSLASHGLS] = ACTIONS(12092), + [anon_sym_BSLASHglspl] = ACTIONS(12092), + [anon_sym_BSLASHGlspl] = ACTIONS(12092), + [anon_sym_BSLASHGLSpl] = ACTIONS(12092), + [anon_sym_BSLASHglsdisp] = ACTIONS(12092), + [anon_sym_BSLASHglslink] = ACTIONS(12092), + [anon_sym_BSLASHglstext] = ACTIONS(12092), + [anon_sym_BSLASHGlstext] = ACTIONS(12092), + [anon_sym_BSLASHGLStext] = ACTIONS(12092), + [anon_sym_BSLASHglsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12092), + [anon_sym_BSLASHglsplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSplural] = ACTIONS(12092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHglsname] = ACTIONS(12092), + [anon_sym_BSLASHGlsname] = ACTIONS(12092), + [anon_sym_BSLASHGLSname] = ACTIONS(12092), + [anon_sym_BSLASHglssymbol] = ACTIONS(12092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12092), + [anon_sym_BSLASHglsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12092), + [anon_sym_BSLASHglsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12092), + [anon_sym_BSLASHglsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12092), + [anon_sym_BSLASHglsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12092), + [anon_sym_BSLASHglsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12092), + [anon_sym_BSLASHnewacronym] = ACTIONS(12092), + [anon_sym_BSLASHacrshort] = ACTIONS(12092), + [anon_sym_BSLASHAcrshort] = ACTIONS(12092), + [anon_sym_BSLASHACRshort] = ACTIONS(12092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12092), + [anon_sym_BSLASHacrlong] = ACTIONS(12092), + [anon_sym_BSLASHAcrlong] = ACTIONS(12092), + [anon_sym_BSLASHACRlong] = ACTIONS(12092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12092), + [anon_sym_BSLASHacrfull] = ACTIONS(12092), + [anon_sym_BSLASHAcrfull] = ACTIONS(12092), + [anon_sym_BSLASHACRfull] = ACTIONS(12092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12092), + [anon_sym_BSLASHacs] = ACTIONS(12092), + [anon_sym_BSLASHAcs] = ACTIONS(12092), + [anon_sym_BSLASHacsp] = ACTIONS(12092), + [anon_sym_BSLASHAcsp] = ACTIONS(12092), + [anon_sym_BSLASHacl] = ACTIONS(12092), + [anon_sym_BSLASHAcl] = ACTIONS(12092), + [anon_sym_BSLASHaclp] = ACTIONS(12092), + [anon_sym_BSLASHAclp] = ACTIONS(12092), + [anon_sym_BSLASHacf] = ACTIONS(12092), + [anon_sym_BSLASHAcf] = ACTIONS(12092), + [anon_sym_BSLASHacfp] = ACTIONS(12092), + [anon_sym_BSLASHAcfp] = ACTIONS(12092), + [anon_sym_BSLASHac] = ACTIONS(12092), + [anon_sym_BSLASHAc] = ACTIONS(12092), + [anon_sym_BSLASHacp] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12092), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12092), + [anon_sym_BSLASHcolor] = ACTIONS(12092), + [anon_sym_BSLASHcolorbox] = ACTIONS(12092), + [anon_sym_BSLASHtextcolor] = ACTIONS(12092), + [anon_sym_BSLASHpagecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12092), + }, + [937] = { + [sym_brace_group] = STATE(3154), + [sym_generic_command_name] = ACTIONS(12028), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12028), + [aux_sym_subsection_token1] = ACTIONS(12028), + [aux_sym_subsubsection_token1] = ACTIONS(12028), + [aux_sym_paragraph_token1] = ACTIONS(12028), + [aux_sym_subparagraph_token1] = ACTIONS(12028), + [anon_sym_BSLASHitem] = ACTIONS(12028), + [anon_sym_LBRACK] = ACTIONS(12026), + [anon_sym_RBRACK] = ACTIONS(12026), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12026), + [anon_sym_LPAREN] = ACTIONS(12026), + [anon_sym_COMMA] = ACTIONS(12026), + [anon_sym_EQ] = ACTIONS(12026), + [sym_word] = ACTIONS(12026), + [sym_param] = ACTIONS(12026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12026), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12026), + [anon_sym_DOLLAR] = ACTIONS(12028), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12026), + [anon_sym_BSLASHbegin] = ACTIONS(12028), + [anon_sym_BSLASHcaption] = ACTIONS(12028), + [anon_sym_BSLASHcite] = ACTIONS(12028), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCite] = ACTIONS(12028), + [anon_sym_BSLASHnocite] = ACTIONS(12028), + [anon_sym_BSLASHcitet] = ACTIONS(12028), + [anon_sym_BSLASHcitep] = ACTIONS(12028), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteauthor] = ACTIONS(12028), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12028), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitetitle] = ACTIONS(12028), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteyear] = ACTIONS(12028), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitedate] = ACTIONS(12028), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteurl] = ACTIONS(12028), + [anon_sym_BSLASHfullcite] = ACTIONS(12028), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12028), + [anon_sym_BSLASHcitealt] = ACTIONS(12028), + [anon_sym_BSLASHcitealp] = ACTIONS(12028), + [anon_sym_BSLASHcitetext] = ACTIONS(12028), + [anon_sym_BSLASHparencite] = ACTIONS(12028), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHParencite] = ACTIONS(12028), + [anon_sym_BSLASHfootcite] = ACTIONS(12028), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12028), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12028), + [anon_sym_BSLASHtextcite] = ACTIONS(12028), + [anon_sym_BSLASHTextcite] = ACTIONS(12028), + [anon_sym_BSLASHsmartcite] = ACTIONS(12028), + [anon_sym_BSLASHSmartcite] = ACTIONS(12028), + [anon_sym_BSLASHsupercite] = ACTIONS(12028), + [anon_sym_BSLASHautocite] = ACTIONS(12028), + [anon_sym_BSLASHAutocite] = ACTIONS(12028), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHvolcite] = ACTIONS(12028), + [anon_sym_BSLASHVolcite] = ACTIONS(12028), + [anon_sym_BSLASHpvolcite] = ACTIONS(12028), + [anon_sym_BSLASHPvolcite] = ACTIONS(12028), + [anon_sym_BSLASHfvolcite] = ACTIONS(12028), + [anon_sym_BSLASHftvolcite] = ACTIONS(12028), + [anon_sym_BSLASHsvolcite] = ACTIONS(12028), + [anon_sym_BSLASHSvolcite] = ACTIONS(12028), + [anon_sym_BSLASHtvolcite] = ACTIONS(12028), + [anon_sym_BSLASHTvolcite] = ACTIONS(12028), + [anon_sym_BSLASHavolcite] = ACTIONS(12028), + [anon_sym_BSLASHAvolcite] = ACTIONS(12028), + [anon_sym_BSLASHnotecite] = ACTIONS(12028), + [anon_sym_BSLASHpnotecite] = ACTIONS(12028), + [anon_sym_BSLASHPnotecite] = ACTIONS(12028), + [anon_sym_BSLASHfnotecite] = ACTIONS(12028), + [anon_sym_BSLASHusepackage] = ACTIONS(12028), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12028), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12028), + [anon_sym_BSLASHinclude] = ACTIONS(12028), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12028), + [anon_sym_BSLASHinput] = ACTIONS(12028), + [anon_sym_BSLASHsubfile] = ACTIONS(12028), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12028), + [anon_sym_BSLASHbibliography] = ACTIONS(12028), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12028), + [anon_sym_BSLASHincludesvg] = ACTIONS(12028), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12028), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12028), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12028), + [anon_sym_BSLASHimport] = ACTIONS(12028), + [anon_sym_BSLASHsubimport] = ACTIONS(12028), + [anon_sym_BSLASHinputfrom] = ACTIONS(12028), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12028), + [anon_sym_BSLASHincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHlabel] = ACTIONS(12028), + [anon_sym_BSLASHref] = ACTIONS(12028), + [anon_sym_BSLASHvref] = ACTIONS(12028), + [anon_sym_BSLASHVref] = ACTIONS(12028), + [anon_sym_BSLASHautoref] = ACTIONS(12028), + [anon_sym_BSLASHpageref] = ACTIONS(12028), + [anon_sym_BSLASHcref] = ACTIONS(12028), + [anon_sym_BSLASHCref] = ACTIONS(12028), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnameCref] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHlabelcref] = ACTIONS(12028), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12028), + [anon_sym_BSLASHeqref] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange] = ACTIONS(12028), + [anon_sym_BSLASHCrefrange] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewlabel] = ACTIONS(12028), + [anon_sym_BSLASHnewcommand] = ACTIONS(12028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12028), + [anon_sym_BSLASHgls] = ACTIONS(12028), + [anon_sym_BSLASHGls] = ACTIONS(12028), + [anon_sym_BSLASHGLS] = ACTIONS(12028), + [anon_sym_BSLASHglspl] = ACTIONS(12028), + [anon_sym_BSLASHGlspl] = ACTIONS(12028), + [anon_sym_BSLASHGLSpl] = ACTIONS(12028), + [anon_sym_BSLASHglsdisp] = ACTIONS(12028), + [anon_sym_BSLASHglslink] = ACTIONS(12028), + [anon_sym_BSLASHglstext] = ACTIONS(12028), + [anon_sym_BSLASHGlstext] = ACTIONS(12028), + [anon_sym_BSLASHGLStext] = ACTIONS(12028), + [anon_sym_BSLASHglsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12028), + [anon_sym_BSLASHglsplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSplural] = ACTIONS(12028), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHglsname] = ACTIONS(12028), + [anon_sym_BSLASHGlsname] = ACTIONS(12028), + [anon_sym_BSLASHGLSname] = ACTIONS(12028), + [anon_sym_BSLASHglssymbol] = ACTIONS(12028), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12028), + [anon_sym_BSLASHglsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12028), + [anon_sym_BSLASHglsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12028), + [anon_sym_BSLASHglsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12028), + [anon_sym_BSLASHglsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12028), + [anon_sym_BSLASHglsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12028), + [anon_sym_BSLASHnewacronym] = ACTIONS(12028), + [anon_sym_BSLASHacrshort] = ACTIONS(12028), + [anon_sym_BSLASHAcrshort] = ACTIONS(12028), + [anon_sym_BSLASHACRshort] = ACTIONS(12028), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12028), + [anon_sym_BSLASHacrlong] = ACTIONS(12028), + [anon_sym_BSLASHAcrlong] = ACTIONS(12028), + [anon_sym_BSLASHACRlong] = ACTIONS(12028), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12028), + [anon_sym_BSLASHacrfull] = ACTIONS(12028), + [anon_sym_BSLASHAcrfull] = ACTIONS(12028), + [anon_sym_BSLASHACRfull] = ACTIONS(12028), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12028), + [anon_sym_BSLASHacs] = ACTIONS(12028), + [anon_sym_BSLASHAcs] = ACTIONS(12028), + [anon_sym_BSLASHacsp] = ACTIONS(12028), + [anon_sym_BSLASHAcsp] = ACTIONS(12028), + [anon_sym_BSLASHacl] = ACTIONS(12028), + [anon_sym_BSLASHAcl] = ACTIONS(12028), + [anon_sym_BSLASHaclp] = ACTIONS(12028), + [anon_sym_BSLASHAclp] = ACTIONS(12028), + [anon_sym_BSLASHacf] = ACTIONS(12028), + [anon_sym_BSLASHAcf] = ACTIONS(12028), + [anon_sym_BSLASHacfp] = ACTIONS(12028), + [anon_sym_BSLASHAcfp] = ACTIONS(12028), + [anon_sym_BSLASHac] = ACTIONS(12028), + [anon_sym_BSLASHAc] = ACTIONS(12028), + [anon_sym_BSLASHacp] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12028), + [anon_sym_BSLASHcolor] = ACTIONS(12028), + [anon_sym_BSLASHcolorbox] = ACTIONS(12028), + [anon_sym_BSLASHtextcolor] = ACTIONS(12028), + [anon_sym_BSLASHpagecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12028), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12028), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12028), + }, + [938] = { + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(111), + [aux_sym_chapter_token1] = ACTIONS(111), + [aux_sym_section_token1] = ACTIONS(111), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_BSLASH_RBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [939] = { + [sym_brace_group] = STATE(3155), + [sym_generic_command_name] = ACTIONS(12100), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12100), + [aux_sym_subsection_token1] = ACTIONS(12100), + [aux_sym_subsubsection_token1] = ACTIONS(12100), + [aux_sym_paragraph_token1] = ACTIONS(12100), + [aux_sym_subparagraph_token1] = ACTIONS(12100), + [anon_sym_BSLASHitem] = ACTIONS(12100), + [anon_sym_LBRACK] = ACTIONS(12098), + [anon_sym_RBRACK] = ACTIONS(12098), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12098), + [anon_sym_LPAREN] = ACTIONS(12098), + [anon_sym_COMMA] = ACTIONS(12098), + [anon_sym_EQ] = ACTIONS(12098), + [sym_word] = ACTIONS(12098), + [sym_param] = ACTIONS(12098), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12098), + [anon_sym_DOLLAR] = ACTIONS(12100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12098), + [anon_sym_BSLASHbegin] = ACTIONS(12100), + [anon_sym_BSLASHcaption] = ACTIONS(12100), + [anon_sym_BSLASHcite] = ACTIONS(12100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCite] = ACTIONS(12100), + [anon_sym_BSLASHnocite] = ACTIONS(12100), + [anon_sym_BSLASHcitet] = ACTIONS(12100), + [anon_sym_BSLASHcitep] = ACTIONS(12100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteauthor] = ACTIONS(12100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitetitle] = ACTIONS(12100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteyear] = ACTIONS(12100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitedate] = ACTIONS(12100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteurl] = ACTIONS(12100), + [anon_sym_BSLASHfullcite] = ACTIONS(12100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12100), + [anon_sym_BSLASHcitealt] = ACTIONS(12100), + [anon_sym_BSLASHcitealp] = ACTIONS(12100), + [anon_sym_BSLASHcitetext] = ACTIONS(12100), + [anon_sym_BSLASHparencite] = ACTIONS(12100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHParencite] = ACTIONS(12100), + [anon_sym_BSLASHfootcite] = ACTIONS(12100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12100), + [anon_sym_BSLASHtextcite] = ACTIONS(12100), + [anon_sym_BSLASHTextcite] = ACTIONS(12100), + [anon_sym_BSLASHsmartcite] = ACTIONS(12100), + [anon_sym_BSLASHSmartcite] = ACTIONS(12100), + [anon_sym_BSLASHsupercite] = ACTIONS(12100), + [anon_sym_BSLASHautocite] = ACTIONS(12100), + [anon_sym_BSLASHAutocite] = ACTIONS(12100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHvolcite] = ACTIONS(12100), + [anon_sym_BSLASHVolcite] = ACTIONS(12100), + [anon_sym_BSLASHpvolcite] = ACTIONS(12100), + [anon_sym_BSLASHPvolcite] = ACTIONS(12100), + [anon_sym_BSLASHfvolcite] = ACTIONS(12100), + [anon_sym_BSLASHftvolcite] = ACTIONS(12100), + [anon_sym_BSLASHsvolcite] = ACTIONS(12100), + [anon_sym_BSLASHSvolcite] = ACTIONS(12100), + [anon_sym_BSLASHtvolcite] = ACTIONS(12100), + [anon_sym_BSLASHTvolcite] = ACTIONS(12100), + [anon_sym_BSLASHavolcite] = ACTIONS(12100), + [anon_sym_BSLASHAvolcite] = ACTIONS(12100), + [anon_sym_BSLASHnotecite] = ACTIONS(12100), + [anon_sym_BSLASHpnotecite] = ACTIONS(12100), + [anon_sym_BSLASHPnotecite] = ACTIONS(12100), + [anon_sym_BSLASHfnotecite] = ACTIONS(12100), + [anon_sym_BSLASHusepackage] = ACTIONS(12100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12100), + [anon_sym_BSLASHinclude] = ACTIONS(12100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12100), + [anon_sym_BSLASHinput] = ACTIONS(12100), + [anon_sym_BSLASHsubfile] = ACTIONS(12100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12100), + [anon_sym_BSLASHbibliography] = ACTIONS(12100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12100), + [anon_sym_BSLASHincludesvg] = ACTIONS(12100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12100), + [anon_sym_BSLASHimport] = ACTIONS(12100), + [anon_sym_BSLASHsubimport] = ACTIONS(12100), + [anon_sym_BSLASHinputfrom] = ACTIONS(12100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12100), + [anon_sym_BSLASHincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHlabel] = ACTIONS(12100), + [anon_sym_BSLASHref] = ACTIONS(12100), + [anon_sym_BSLASHvref] = ACTIONS(12100), + [anon_sym_BSLASHVref] = ACTIONS(12100), + [anon_sym_BSLASHautoref] = ACTIONS(12100), + [anon_sym_BSLASHpageref] = ACTIONS(12100), + [anon_sym_BSLASHcref] = ACTIONS(12100), + [anon_sym_BSLASHCref] = ACTIONS(12100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnameCref] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHlabelcref] = ACTIONS(12100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12100), + [anon_sym_BSLASHeqref] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange] = ACTIONS(12100), + [anon_sym_BSLASHCrefrange] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewlabel] = ACTIONS(12100), + [anon_sym_BSLASHnewcommand] = ACTIONS(12100), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12100), + [anon_sym_BSLASHgls] = ACTIONS(12100), + [anon_sym_BSLASHGls] = ACTIONS(12100), + [anon_sym_BSLASHGLS] = ACTIONS(12100), + [anon_sym_BSLASHglspl] = ACTIONS(12100), + [anon_sym_BSLASHGlspl] = ACTIONS(12100), + [anon_sym_BSLASHGLSpl] = ACTIONS(12100), + [anon_sym_BSLASHglsdisp] = ACTIONS(12100), + [anon_sym_BSLASHglslink] = ACTIONS(12100), + [anon_sym_BSLASHglstext] = ACTIONS(12100), + [anon_sym_BSLASHGlstext] = ACTIONS(12100), + [anon_sym_BSLASHGLStext] = ACTIONS(12100), + [anon_sym_BSLASHglsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12100), + [anon_sym_BSLASHglsplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSplural] = ACTIONS(12100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHglsname] = ACTIONS(12100), + [anon_sym_BSLASHGlsname] = ACTIONS(12100), + [anon_sym_BSLASHGLSname] = ACTIONS(12100), + [anon_sym_BSLASHglssymbol] = ACTIONS(12100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12100), + [anon_sym_BSLASHglsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12100), + [anon_sym_BSLASHglsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12100), + [anon_sym_BSLASHglsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12100), + [anon_sym_BSLASHglsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12100), + [anon_sym_BSLASHglsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12100), + [anon_sym_BSLASHnewacronym] = ACTIONS(12100), + [anon_sym_BSLASHacrshort] = ACTIONS(12100), + [anon_sym_BSLASHAcrshort] = ACTIONS(12100), + [anon_sym_BSLASHACRshort] = ACTIONS(12100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12100), + [anon_sym_BSLASHacrlong] = ACTIONS(12100), + [anon_sym_BSLASHAcrlong] = ACTIONS(12100), + [anon_sym_BSLASHACRlong] = ACTIONS(12100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12100), + [anon_sym_BSLASHacrfull] = ACTIONS(12100), + [anon_sym_BSLASHAcrfull] = ACTIONS(12100), + [anon_sym_BSLASHACRfull] = ACTIONS(12100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12100), + [anon_sym_BSLASHacs] = ACTIONS(12100), + [anon_sym_BSLASHAcs] = ACTIONS(12100), + [anon_sym_BSLASHacsp] = ACTIONS(12100), + [anon_sym_BSLASHAcsp] = ACTIONS(12100), + [anon_sym_BSLASHacl] = ACTIONS(12100), + [anon_sym_BSLASHAcl] = ACTIONS(12100), + [anon_sym_BSLASHaclp] = ACTIONS(12100), + [anon_sym_BSLASHAclp] = ACTIONS(12100), + [anon_sym_BSLASHacf] = ACTIONS(12100), + [anon_sym_BSLASHAcf] = ACTIONS(12100), + [anon_sym_BSLASHacfp] = ACTIONS(12100), + [anon_sym_BSLASHAcfp] = ACTIONS(12100), + [anon_sym_BSLASHac] = ACTIONS(12100), + [anon_sym_BSLASHAc] = ACTIONS(12100), + [anon_sym_BSLASHacp] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12100), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12100), + [anon_sym_BSLASHcolor] = ACTIONS(12100), + [anon_sym_BSLASHcolorbox] = ACTIONS(12100), + [anon_sym_BSLASHtextcolor] = ACTIONS(12100), + [anon_sym_BSLASHpagecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12100), + }, + [940] = { + [sym_generic_command_name] = ACTIONS(12315), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12315), + [aux_sym_chapter_token1] = ACTIONS(12315), + [aux_sym_section_token1] = ACTIONS(12315), + [aux_sym_subsection_token1] = ACTIONS(12315), + [aux_sym_subsubsection_token1] = ACTIONS(12315), + [aux_sym_paragraph_token1] = ACTIONS(12315), + [aux_sym_subparagraph_token1] = ACTIONS(12315), + [anon_sym_BSLASHitem] = ACTIONS(12315), + [anon_sym_LBRACK] = ACTIONS(12313), + [anon_sym_LBRACE] = ACTIONS(12313), + [anon_sym_LPAREN] = ACTIONS(12313), + [anon_sym_COMMA] = ACTIONS(12313), + [anon_sym_EQ] = ACTIONS(12313), + [sym_word] = ACTIONS(12313), + [sym_param] = ACTIONS(12313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12313), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12313), + [anon_sym_DOLLAR] = ACTIONS(12315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12313), + [anon_sym_BSLASHbegin] = ACTIONS(12315), + [anon_sym_BSLASHcaption] = ACTIONS(12315), + [anon_sym_BSLASHcite] = ACTIONS(12315), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCite] = ACTIONS(12315), + [anon_sym_BSLASHnocite] = ACTIONS(12315), + [anon_sym_BSLASHcitet] = ACTIONS(12315), + [anon_sym_BSLASHcitep] = ACTIONS(12315), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteauthor] = ACTIONS(12315), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12315), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitetitle] = ACTIONS(12315), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteyear] = ACTIONS(12315), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitedate] = ACTIONS(12315), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteurl] = ACTIONS(12315), + [anon_sym_BSLASHfullcite] = ACTIONS(12315), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12315), + [anon_sym_BSLASHcitealt] = ACTIONS(12315), + [anon_sym_BSLASHcitealp] = ACTIONS(12315), + [anon_sym_BSLASHcitetext] = ACTIONS(12315), + [anon_sym_BSLASHparencite] = ACTIONS(12315), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHParencite] = ACTIONS(12315), + [anon_sym_BSLASHfootcite] = ACTIONS(12315), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12315), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12315), + [anon_sym_BSLASHtextcite] = ACTIONS(12315), + [anon_sym_BSLASHTextcite] = ACTIONS(12315), + [anon_sym_BSLASHsmartcite] = ACTIONS(12315), + [anon_sym_BSLASHSmartcite] = ACTIONS(12315), + [anon_sym_BSLASHsupercite] = ACTIONS(12315), + [anon_sym_BSLASHautocite] = ACTIONS(12315), + [anon_sym_BSLASHAutocite] = ACTIONS(12315), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHvolcite] = ACTIONS(12315), + [anon_sym_BSLASHVolcite] = ACTIONS(12315), + [anon_sym_BSLASHpvolcite] = ACTIONS(12315), + [anon_sym_BSLASHPvolcite] = ACTIONS(12315), + [anon_sym_BSLASHfvolcite] = ACTIONS(12315), + [anon_sym_BSLASHftvolcite] = ACTIONS(12315), + [anon_sym_BSLASHsvolcite] = ACTIONS(12315), + [anon_sym_BSLASHSvolcite] = ACTIONS(12315), + [anon_sym_BSLASHtvolcite] = ACTIONS(12315), + [anon_sym_BSLASHTvolcite] = ACTIONS(12315), + [anon_sym_BSLASHavolcite] = ACTIONS(12315), + [anon_sym_BSLASHAvolcite] = ACTIONS(12315), + [anon_sym_BSLASHnotecite] = ACTIONS(12315), + [anon_sym_BSLASHpnotecite] = ACTIONS(12315), + [anon_sym_BSLASHPnotecite] = ACTIONS(12315), + [anon_sym_BSLASHfnotecite] = ACTIONS(12315), + [anon_sym_BSLASHusepackage] = ACTIONS(12315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12315), + [anon_sym_BSLASHinclude] = ACTIONS(12315), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12315), + [anon_sym_BSLASHinput] = ACTIONS(12315), + [anon_sym_BSLASHsubfile] = ACTIONS(12315), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12315), + [anon_sym_BSLASHbibliography] = ACTIONS(12315), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12315), + [anon_sym_BSLASHincludesvg] = ACTIONS(12315), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12315), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12315), + [anon_sym_BSLASHimport] = ACTIONS(12315), + [anon_sym_BSLASHsubimport] = ACTIONS(12315), + [anon_sym_BSLASHinputfrom] = ACTIONS(12315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12315), + [anon_sym_BSLASHincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHlabel] = ACTIONS(12315), + [anon_sym_BSLASHref] = ACTIONS(12315), + [anon_sym_BSLASHvref] = ACTIONS(12315), + [anon_sym_BSLASHVref] = ACTIONS(12315), + [anon_sym_BSLASHautoref] = ACTIONS(12315), + [anon_sym_BSLASHpageref] = ACTIONS(12315), + [anon_sym_BSLASHcref] = ACTIONS(12315), + [anon_sym_BSLASHCref] = ACTIONS(12315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnameCref] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHlabelcref] = ACTIONS(12315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12315), + [anon_sym_BSLASHeqref] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange] = ACTIONS(12315), + [anon_sym_BSLASHCrefrange] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewlabel] = ACTIONS(12315), + [anon_sym_BSLASHnewcommand] = ACTIONS(12315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12315), + [anon_sym_BSLASHgls] = ACTIONS(12315), + [anon_sym_BSLASHGls] = ACTIONS(12315), + [anon_sym_BSLASHGLS] = ACTIONS(12315), + [anon_sym_BSLASHglspl] = ACTIONS(12315), + [anon_sym_BSLASHGlspl] = ACTIONS(12315), + [anon_sym_BSLASHGLSpl] = ACTIONS(12315), + [anon_sym_BSLASHglsdisp] = ACTIONS(12315), + [anon_sym_BSLASHglslink] = ACTIONS(12315), + [anon_sym_BSLASHglstext] = ACTIONS(12315), + [anon_sym_BSLASHGlstext] = ACTIONS(12315), + [anon_sym_BSLASHGLStext] = ACTIONS(12315), + [anon_sym_BSLASHglsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12315), + [anon_sym_BSLASHglsplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSplural] = ACTIONS(12315), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHglsname] = ACTIONS(12315), + [anon_sym_BSLASHGlsname] = ACTIONS(12315), + [anon_sym_BSLASHGLSname] = ACTIONS(12315), + [anon_sym_BSLASHglssymbol] = ACTIONS(12315), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12315), + [anon_sym_BSLASHglsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12315), + [anon_sym_BSLASHglsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12315), + [anon_sym_BSLASHglsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12315), + [anon_sym_BSLASHglsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12315), + [anon_sym_BSLASHglsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12315), + [anon_sym_BSLASHnewacronym] = ACTIONS(12315), + [anon_sym_BSLASHacrshort] = ACTIONS(12315), + [anon_sym_BSLASHAcrshort] = ACTIONS(12315), + [anon_sym_BSLASHACRshort] = ACTIONS(12315), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12315), + [anon_sym_BSLASHacrlong] = ACTIONS(12315), + [anon_sym_BSLASHAcrlong] = ACTIONS(12315), + [anon_sym_BSLASHACRlong] = ACTIONS(12315), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12315), + [anon_sym_BSLASHacrfull] = ACTIONS(12315), + [anon_sym_BSLASHAcrfull] = ACTIONS(12315), + [anon_sym_BSLASHACRfull] = ACTIONS(12315), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12315), + [anon_sym_BSLASHacs] = ACTIONS(12315), + [anon_sym_BSLASHAcs] = ACTIONS(12315), + [anon_sym_BSLASHacsp] = ACTIONS(12315), + [anon_sym_BSLASHAcsp] = ACTIONS(12315), + [anon_sym_BSLASHacl] = ACTIONS(12315), + [anon_sym_BSLASHAcl] = ACTIONS(12315), + [anon_sym_BSLASHaclp] = ACTIONS(12315), + [anon_sym_BSLASHAclp] = ACTIONS(12315), + [anon_sym_BSLASHacf] = ACTIONS(12315), + [anon_sym_BSLASHAcf] = ACTIONS(12315), + [anon_sym_BSLASHacfp] = ACTIONS(12315), + [anon_sym_BSLASHAcfp] = ACTIONS(12315), + [anon_sym_BSLASHac] = ACTIONS(12315), + [anon_sym_BSLASHAc] = ACTIONS(12315), + [anon_sym_BSLASHacp] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12315), + [anon_sym_BSLASHcolor] = ACTIONS(12315), + [anon_sym_BSLASHcolorbox] = ACTIONS(12315), + [anon_sym_BSLASHtextcolor] = ACTIONS(12315), + [anon_sym_BSLASHpagecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12315), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12315), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12315), + }, + [941] = { + [sym_generic_command_name] = ACTIONS(12335), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12335), + [aux_sym_chapter_token1] = ACTIONS(12335), + [aux_sym_section_token1] = ACTIONS(12335), + [aux_sym_subsection_token1] = ACTIONS(12335), + [aux_sym_subsubsection_token1] = ACTIONS(12335), + [aux_sym_paragraph_token1] = ACTIONS(12335), + [aux_sym_subparagraph_token1] = ACTIONS(12335), + [anon_sym_BSLASHitem] = ACTIONS(12335), + [anon_sym_LBRACK] = ACTIONS(12687), + [anon_sym_LBRACE] = ACTIONS(12333), + [anon_sym_LPAREN] = ACTIONS(12333), + [anon_sym_COMMA] = ACTIONS(12333), + [anon_sym_EQ] = ACTIONS(12333), + [sym_word] = ACTIONS(12333), + [sym_param] = ACTIONS(12333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12333), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12333), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12333), + [anon_sym_DOLLAR] = ACTIONS(12335), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12333), + [anon_sym_BSLASHbegin] = ACTIONS(12335), + [anon_sym_BSLASHcaption] = ACTIONS(12335), + [anon_sym_BSLASHcite] = ACTIONS(12335), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCite] = ACTIONS(12335), + [anon_sym_BSLASHnocite] = ACTIONS(12335), + [anon_sym_BSLASHcitet] = ACTIONS(12335), + [anon_sym_BSLASHcitep] = ACTIONS(12335), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteauthor] = ACTIONS(12335), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12335), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitetitle] = ACTIONS(12335), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteyear] = ACTIONS(12335), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitedate] = ACTIONS(12335), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteurl] = ACTIONS(12335), + [anon_sym_BSLASHfullcite] = ACTIONS(12335), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12335), + [anon_sym_BSLASHcitealt] = ACTIONS(12335), + [anon_sym_BSLASHcitealp] = ACTIONS(12335), + [anon_sym_BSLASHcitetext] = ACTIONS(12335), + [anon_sym_BSLASHparencite] = ACTIONS(12335), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHParencite] = ACTIONS(12335), + [anon_sym_BSLASHfootcite] = ACTIONS(12335), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12335), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12335), + [anon_sym_BSLASHtextcite] = ACTIONS(12335), + [anon_sym_BSLASHTextcite] = ACTIONS(12335), + [anon_sym_BSLASHsmartcite] = ACTIONS(12335), + [anon_sym_BSLASHSmartcite] = ACTIONS(12335), + [anon_sym_BSLASHsupercite] = ACTIONS(12335), + [anon_sym_BSLASHautocite] = ACTIONS(12335), + [anon_sym_BSLASHAutocite] = ACTIONS(12335), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHvolcite] = ACTIONS(12335), + [anon_sym_BSLASHVolcite] = ACTIONS(12335), + [anon_sym_BSLASHpvolcite] = ACTIONS(12335), + [anon_sym_BSLASHPvolcite] = ACTIONS(12335), + [anon_sym_BSLASHfvolcite] = ACTIONS(12335), + [anon_sym_BSLASHftvolcite] = ACTIONS(12335), + [anon_sym_BSLASHsvolcite] = ACTIONS(12335), + [anon_sym_BSLASHSvolcite] = ACTIONS(12335), + [anon_sym_BSLASHtvolcite] = ACTIONS(12335), + [anon_sym_BSLASHTvolcite] = ACTIONS(12335), + [anon_sym_BSLASHavolcite] = ACTIONS(12335), + [anon_sym_BSLASHAvolcite] = ACTIONS(12335), + [anon_sym_BSLASHnotecite] = ACTIONS(12335), + [anon_sym_BSLASHpnotecite] = ACTIONS(12335), + [anon_sym_BSLASHPnotecite] = ACTIONS(12335), + [anon_sym_BSLASHfnotecite] = ACTIONS(12335), + [anon_sym_BSLASHusepackage] = ACTIONS(12335), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12335), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12335), + [anon_sym_BSLASHinclude] = ACTIONS(12335), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12335), + [anon_sym_BSLASHinput] = ACTIONS(12335), + [anon_sym_BSLASHsubfile] = ACTIONS(12335), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12335), + [anon_sym_BSLASHbibliography] = ACTIONS(12335), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12335), + [anon_sym_BSLASHincludesvg] = ACTIONS(12335), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12335), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12335), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12335), + [anon_sym_BSLASHimport] = ACTIONS(12335), + [anon_sym_BSLASHsubimport] = ACTIONS(12335), + [anon_sym_BSLASHinputfrom] = ACTIONS(12335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12335), + [anon_sym_BSLASHincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHlabel] = ACTIONS(12335), + [anon_sym_BSLASHref] = ACTIONS(12335), + [anon_sym_BSLASHvref] = ACTIONS(12335), + [anon_sym_BSLASHVref] = ACTIONS(12335), + [anon_sym_BSLASHautoref] = ACTIONS(12335), + [anon_sym_BSLASHpageref] = ACTIONS(12335), + [anon_sym_BSLASHcref] = ACTIONS(12335), + [anon_sym_BSLASHCref] = ACTIONS(12335), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnameCref] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHlabelcref] = ACTIONS(12335), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12335), + [anon_sym_BSLASHeqref] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange] = ACTIONS(12335), + [anon_sym_BSLASHCrefrange] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewlabel] = ACTIONS(12335), + [anon_sym_BSLASHnewcommand] = ACTIONS(12335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12335), + [anon_sym_BSLASHgls] = ACTIONS(12335), + [anon_sym_BSLASHGls] = ACTIONS(12335), + [anon_sym_BSLASHGLS] = ACTIONS(12335), + [anon_sym_BSLASHglspl] = ACTIONS(12335), + [anon_sym_BSLASHGlspl] = ACTIONS(12335), + [anon_sym_BSLASHGLSpl] = ACTIONS(12335), + [anon_sym_BSLASHglsdisp] = ACTIONS(12335), + [anon_sym_BSLASHglslink] = ACTIONS(12335), + [anon_sym_BSLASHglstext] = ACTIONS(12335), + [anon_sym_BSLASHGlstext] = ACTIONS(12335), + [anon_sym_BSLASHGLStext] = ACTIONS(12335), + [anon_sym_BSLASHglsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12335), + [anon_sym_BSLASHglsplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSplural] = ACTIONS(12335), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHglsname] = ACTIONS(12335), + [anon_sym_BSLASHGlsname] = ACTIONS(12335), + [anon_sym_BSLASHGLSname] = ACTIONS(12335), + [anon_sym_BSLASHglssymbol] = ACTIONS(12335), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12335), + [anon_sym_BSLASHglsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12335), + [anon_sym_BSLASHglsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12335), + [anon_sym_BSLASHglsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12335), + [anon_sym_BSLASHglsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12335), + [anon_sym_BSLASHglsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12335), + [anon_sym_BSLASHnewacronym] = ACTIONS(12335), + [anon_sym_BSLASHacrshort] = ACTIONS(12335), + [anon_sym_BSLASHAcrshort] = ACTIONS(12335), + [anon_sym_BSLASHACRshort] = ACTIONS(12335), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12335), + [anon_sym_BSLASHacrlong] = ACTIONS(12335), + [anon_sym_BSLASHAcrlong] = ACTIONS(12335), + [anon_sym_BSLASHACRlong] = ACTIONS(12335), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12335), + [anon_sym_BSLASHacrfull] = ACTIONS(12335), + [anon_sym_BSLASHAcrfull] = ACTIONS(12335), + [anon_sym_BSLASHACRfull] = ACTIONS(12335), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12335), + [anon_sym_BSLASHacs] = ACTIONS(12335), + [anon_sym_BSLASHAcs] = ACTIONS(12335), + [anon_sym_BSLASHacsp] = ACTIONS(12335), + [anon_sym_BSLASHAcsp] = ACTIONS(12335), + [anon_sym_BSLASHacl] = ACTIONS(12335), + [anon_sym_BSLASHAcl] = ACTIONS(12335), + [anon_sym_BSLASHaclp] = ACTIONS(12335), + [anon_sym_BSLASHAclp] = ACTIONS(12335), + [anon_sym_BSLASHacf] = ACTIONS(12335), + [anon_sym_BSLASHAcf] = ACTIONS(12335), + [anon_sym_BSLASHacfp] = ACTIONS(12335), + [anon_sym_BSLASHAcfp] = ACTIONS(12335), + [anon_sym_BSLASHac] = ACTIONS(12335), + [anon_sym_BSLASHAc] = ACTIONS(12335), + [anon_sym_BSLASHacp] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12335), + [anon_sym_BSLASHcolor] = ACTIONS(12335), + [anon_sym_BSLASHcolorbox] = ACTIONS(12335), + [anon_sym_BSLASHtextcolor] = ACTIONS(12335), + [anon_sym_BSLASHpagecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12335), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12335), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12335), + }, + [942] = { + [sym_generic_command_name] = ACTIONS(12341), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12341), + [aux_sym_chapter_token1] = ACTIONS(12341), + [aux_sym_section_token1] = ACTIONS(12341), + [aux_sym_subsection_token1] = ACTIONS(12341), + [aux_sym_subsubsection_token1] = ACTIONS(12341), + [aux_sym_paragraph_token1] = ACTIONS(12341), + [aux_sym_subparagraph_token1] = ACTIONS(12341), + [anon_sym_BSLASHitem] = ACTIONS(12341), + [anon_sym_LBRACK] = ACTIONS(12339), + [anon_sym_LBRACE] = ACTIONS(12339), + [anon_sym_LPAREN] = ACTIONS(12339), + [anon_sym_COMMA] = ACTIONS(12339), + [anon_sym_EQ] = ACTIONS(12339), + [sym_word] = ACTIONS(12339), + [sym_param] = ACTIONS(12339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12339), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12339), + [anon_sym_DOLLAR] = ACTIONS(12341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12339), + [anon_sym_BSLASHbegin] = ACTIONS(12341), + [anon_sym_BSLASHcaption] = ACTIONS(12341), + [anon_sym_BSLASHcite] = ACTIONS(12341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCite] = ACTIONS(12341), + [anon_sym_BSLASHnocite] = ACTIONS(12341), + [anon_sym_BSLASHcitet] = ACTIONS(12341), + [anon_sym_BSLASHcitep] = ACTIONS(12341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteauthor] = ACTIONS(12341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitetitle] = ACTIONS(12341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteyear] = ACTIONS(12341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitedate] = ACTIONS(12341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteurl] = ACTIONS(12341), + [anon_sym_BSLASHfullcite] = ACTIONS(12341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12341), + [anon_sym_BSLASHcitealt] = ACTIONS(12341), + [anon_sym_BSLASHcitealp] = ACTIONS(12341), + [anon_sym_BSLASHcitetext] = ACTIONS(12341), + [anon_sym_BSLASHparencite] = ACTIONS(12341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHParencite] = ACTIONS(12341), + [anon_sym_BSLASHfootcite] = ACTIONS(12341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12341), + [anon_sym_BSLASHtextcite] = ACTIONS(12341), + [anon_sym_BSLASHTextcite] = ACTIONS(12341), + [anon_sym_BSLASHsmartcite] = ACTIONS(12341), + [anon_sym_BSLASHSmartcite] = ACTIONS(12341), + [anon_sym_BSLASHsupercite] = ACTIONS(12341), + [anon_sym_BSLASHautocite] = ACTIONS(12341), + [anon_sym_BSLASHAutocite] = ACTIONS(12341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHvolcite] = ACTIONS(12341), + [anon_sym_BSLASHVolcite] = ACTIONS(12341), + [anon_sym_BSLASHpvolcite] = ACTIONS(12341), + [anon_sym_BSLASHPvolcite] = ACTIONS(12341), + [anon_sym_BSLASHfvolcite] = ACTIONS(12341), + [anon_sym_BSLASHftvolcite] = ACTIONS(12341), + [anon_sym_BSLASHsvolcite] = ACTIONS(12341), + [anon_sym_BSLASHSvolcite] = ACTIONS(12341), + [anon_sym_BSLASHtvolcite] = ACTIONS(12341), + [anon_sym_BSLASHTvolcite] = ACTIONS(12341), + [anon_sym_BSLASHavolcite] = ACTIONS(12341), + [anon_sym_BSLASHAvolcite] = ACTIONS(12341), + [anon_sym_BSLASHnotecite] = ACTIONS(12341), + [anon_sym_BSLASHpnotecite] = ACTIONS(12341), + [anon_sym_BSLASHPnotecite] = ACTIONS(12341), + [anon_sym_BSLASHfnotecite] = ACTIONS(12341), + [anon_sym_BSLASHusepackage] = ACTIONS(12341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12341), + [anon_sym_BSLASHinclude] = ACTIONS(12341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12341), + [anon_sym_BSLASHinput] = ACTIONS(12341), + [anon_sym_BSLASHsubfile] = ACTIONS(12341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12341), + [anon_sym_BSLASHbibliography] = ACTIONS(12341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12341), + [anon_sym_BSLASHincludesvg] = ACTIONS(12341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12341), + [anon_sym_BSLASHimport] = ACTIONS(12341), + [anon_sym_BSLASHsubimport] = ACTIONS(12341), + [anon_sym_BSLASHinputfrom] = ACTIONS(12341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12341), + [anon_sym_BSLASHincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHlabel] = ACTIONS(12341), + [anon_sym_BSLASHref] = ACTIONS(12341), + [anon_sym_BSLASHvref] = ACTIONS(12341), + [anon_sym_BSLASHVref] = ACTIONS(12341), + [anon_sym_BSLASHautoref] = ACTIONS(12341), + [anon_sym_BSLASHpageref] = ACTIONS(12341), + [anon_sym_BSLASHcref] = ACTIONS(12341), + [anon_sym_BSLASHCref] = ACTIONS(12341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnameCref] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHlabelcref] = ACTIONS(12341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12341), + [anon_sym_BSLASHeqref] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange] = ACTIONS(12341), + [anon_sym_BSLASHCrefrange] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewlabel] = ACTIONS(12341), + [anon_sym_BSLASHnewcommand] = ACTIONS(12341), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12341), + [anon_sym_BSLASHgls] = ACTIONS(12341), + [anon_sym_BSLASHGls] = ACTIONS(12341), + [anon_sym_BSLASHGLS] = ACTIONS(12341), + [anon_sym_BSLASHglspl] = ACTIONS(12341), + [anon_sym_BSLASHGlspl] = ACTIONS(12341), + [anon_sym_BSLASHGLSpl] = ACTIONS(12341), + [anon_sym_BSLASHglsdisp] = ACTIONS(12341), + [anon_sym_BSLASHglslink] = ACTIONS(12341), + [anon_sym_BSLASHglstext] = ACTIONS(12341), + [anon_sym_BSLASHGlstext] = ACTIONS(12341), + [anon_sym_BSLASHGLStext] = ACTIONS(12341), + [anon_sym_BSLASHglsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12341), + [anon_sym_BSLASHglsplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSplural] = ACTIONS(12341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHglsname] = ACTIONS(12341), + [anon_sym_BSLASHGlsname] = ACTIONS(12341), + [anon_sym_BSLASHGLSname] = ACTIONS(12341), + [anon_sym_BSLASHglssymbol] = ACTIONS(12341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12341), + [anon_sym_BSLASHglsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12341), + [anon_sym_BSLASHglsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12341), + [anon_sym_BSLASHglsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12341), + [anon_sym_BSLASHglsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12341), + [anon_sym_BSLASHglsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12341), + [anon_sym_BSLASHnewacronym] = ACTIONS(12341), + [anon_sym_BSLASHacrshort] = ACTIONS(12341), + [anon_sym_BSLASHAcrshort] = ACTIONS(12341), + [anon_sym_BSLASHACRshort] = ACTIONS(12341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12341), + [anon_sym_BSLASHacrlong] = ACTIONS(12341), + [anon_sym_BSLASHAcrlong] = ACTIONS(12341), + [anon_sym_BSLASHACRlong] = ACTIONS(12341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12341), + [anon_sym_BSLASHacrfull] = ACTIONS(12341), + [anon_sym_BSLASHAcrfull] = ACTIONS(12341), + [anon_sym_BSLASHACRfull] = ACTIONS(12341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12341), + [anon_sym_BSLASHacs] = ACTIONS(12341), + [anon_sym_BSLASHAcs] = ACTIONS(12341), + [anon_sym_BSLASHacsp] = ACTIONS(12341), + [anon_sym_BSLASHAcsp] = ACTIONS(12341), + [anon_sym_BSLASHacl] = ACTIONS(12341), + [anon_sym_BSLASHAcl] = ACTIONS(12341), + [anon_sym_BSLASHaclp] = ACTIONS(12341), + [anon_sym_BSLASHAclp] = ACTIONS(12341), + [anon_sym_BSLASHacf] = ACTIONS(12341), + [anon_sym_BSLASHAcf] = ACTIONS(12341), + [anon_sym_BSLASHacfp] = ACTIONS(12341), + [anon_sym_BSLASHAcfp] = ACTIONS(12341), + [anon_sym_BSLASHac] = ACTIONS(12341), + [anon_sym_BSLASHAc] = ACTIONS(12341), + [anon_sym_BSLASHacp] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12341), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12341), + [anon_sym_BSLASHcolor] = ACTIONS(12341), + [anon_sym_BSLASHcolorbox] = ACTIONS(12341), + [anon_sym_BSLASHtextcolor] = ACTIONS(12341), + [anon_sym_BSLASHpagecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12341), + }, + [943] = { + [sym_generic_command_name] = ACTIONS(12353), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12353), + [aux_sym_chapter_token1] = ACTIONS(12353), + [aux_sym_section_token1] = ACTIONS(12353), + [aux_sym_subsection_token1] = ACTIONS(12353), + [aux_sym_subsubsection_token1] = ACTIONS(12353), + [aux_sym_paragraph_token1] = ACTIONS(12353), + [aux_sym_subparagraph_token1] = ACTIONS(12353), + [anon_sym_BSLASHitem] = ACTIONS(12353), + [anon_sym_LBRACK] = ACTIONS(12351), + [anon_sym_LBRACE] = ACTIONS(12351), + [anon_sym_LPAREN] = ACTIONS(12351), + [anon_sym_COMMA] = ACTIONS(12351), + [anon_sym_EQ] = ACTIONS(12351), + [sym_word] = ACTIONS(12351), + [sym_param] = ACTIONS(12351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12351), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12351), + [anon_sym_DOLLAR] = ACTIONS(12353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12351), + [anon_sym_BSLASHbegin] = ACTIONS(12353), + [anon_sym_BSLASHcaption] = ACTIONS(12353), + [anon_sym_BSLASHcite] = ACTIONS(12353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCite] = ACTIONS(12353), + [anon_sym_BSLASHnocite] = ACTIONS(12353), + [anon_sym_BSLASHcitet] = ACTIONS(12353), + [anon_sym_BSLASHcitep] = ACTIONS(12353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteauthor] = ACTIONS(12353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitetitle] = ACTIONS(12353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteyear] = ACTIONS(12353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitedate] = ACTIONS(12353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteurl] = ACTIONS(12353), + [anon_sym_BSLASHfullcite] = ACTIONS(12353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12353), + [anon_sym_BSLASHcitealt] = ACTIONS(12353), + [anon_sym_BSLASHcitealp] = ACTIONS(12353), + [anon_sym_BSLASHcitetext] = ACTIONS(12353), + [anon_sym_BSLASHparencite] = ACTIONS(12353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHParencite] = ACTIONS(12353), + [anon_sym_BSLASHfootcite] = ACTIONS(12353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12353), + [anon_sym_BSLASHtextcite] = ACTIONS(12353), + [anon_sym_BSLASHTextcite] = ACTIONS(12353), + [anon_sym_BSLASHsmartcite] = ACTIONS(12353), + [anon_sym_BSLASHSmartcite] = ACTIONS(12353), + [anon_sym_BSLASHsupercite] = ACTIONS(12353), + [anon_sym_BSLASHautocite] = ACTIONS(12353), + [anon_sym_BSLASHAutocite] = ACTIONS(12353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHvolcite] = ACTIONS(12353), + [anon_sym_BSLASHVolcite] = ACTIONS(12353), + [anon_sym_BSLASHpvolcite] = ACTIONS(12353), + [anon_sym_BSLASHPvolcite] = ACTIONS(12353), + [anon_sym_BSLASHfvolcite] = ACTIONS(12353), + [anon_sym_BSLASHftvolcite] = ACTIONS(12353), + [anon_sym_BSLASHsvolcite] = ACTIONS(12353), + [anon_sym_BSLASHSvolcite] = ACTIONS(12353), + [anon_sym_BSLASHtvolcite] = ACTIONS(12353), + [anon_sym_BSLASHTvolcite] = ACTIONS(12353), + [anon_sym_BSLASHavolcite] = ACTIONS(12353), + [anon_sym_BSLASHAvolcite] = ACTIONS(12353), + [anon_sym_BSLASHnotecite] = ACTIONS(12353), + [anon_sym_BSLASHpnotecite] = ACTIONS(12353), + [anon_sym_BSLASHPnotecite] = ACTIONS(12353), + [anon_sym_BSLASHfnotecite] = ACTIONS(12353), + [anon_sym_BSLASHusepackage] = ACTIONS(12353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12353), + [anon_sym_BSLASHinclude] = ACTIONS(12353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12353), + [anon_sym_BSLASHinput] = ACTIONS(12353), + [anon_sym_BSLASHsubfile] = ACTIONS(12353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12353), + [anon_sym_BSLASHbibliography] = ACTIONS(12353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12353), + [anon_sym_BSLASHincludesvg] = ACTIONS(12353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12353), + [anon_sym_BSLASHimport] = ACTIONS(12353), + [anon_sym_BSLASHsubimport] = ACTIONS(12353), + [anon_sym_BSLASHinputfrom] = ACTIONS(12353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12353), + [anon_sym_BSLASHincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHlabel] = ACTIONS(12353), + [anon_sym_BSLASHref] = ACTIONS(12353), + [anon_sym_BSLASHvref] = ACTIONS(12353), + [anon_sym_BSLASHVref] = ACTIONS(12353), + [anon_sym_BSLASHautoref] = ACTIONS(12353), + [anon_sym_BSLASHpageref] = ACTIONS(12353), + [anon_sym_BSLASHcref] = ACTIONS(12353), + [anon_sym_BSLASHCref] = ACTIONS(12353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnameCref] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHlabelcref] = ACTIONS(12353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12353), + [anon_sym_BSLASHeqref] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange] = ACTIONS(12353), + [anon_sym_BSLASHCrefrange] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewlabel] = ACTIONS(12353), + [anon_sym_BSLASHnewcommand] = ACTIONS(12353), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12353), + [anon_sym_BSLASHgls] = ACTIONS(12353), + [anon_sym_BSLASHGls] = ACTIONS(12353), + [anon_sym_BSLASHGLS] = ACTIONS(12353), + [anon_sym_BSLASHglspl] = ACTIONS(12353), + [anon_sym_BSLASHGlspl] = ACTIONS(12353), + [anon_sym_BSLASHGLSpl] = ACTIONS(12353), + [anon_sym_BSLASHglsdisp] = ACTIONS(12353), + [anon_sym_BSLASHglslink] = ACTIONS(12353), + [anon_sym_BSLASHglstext] = ACTIONS(12353), + [anon_sym_BSLASHGlstext] = ACTIONS(12353), + [anon_sym_BSLASHGLStext] = ACTIONS(12353), + [anon_sym_BSLASHglsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12353), + [anon_sym_BSLASHglsplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSplural] = ACTIONS(12353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHglsname] = ACTIONS(12353), + [anon_sym_BSLASHGlsname] = ACTIONS(12353), + [anon_sym_BSLASHGLSname] = ACTIONS(12353), + [anon_sym_BSLASHglssymbol] = ACTIONS(12353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12353), + [anon_sym_BSLASHglsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12353), + [anon_sym_BSLASHglsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12353), + [anon_sym_BSLASHglsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12353), + [anon_sym_BSLASHglsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12353), + [anon_sym_BSLASHglsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12353), + [anon_sym_BSLASHnewacronym] = ACTIONS(12353), + [anon_sym_BSLASHacrshort] = ACTIONS(12353), + [anon_sym_BSLASHAcrshort] = ACTIONS(12353), + [anon_sym_BSLASHACRshort] = ACTIONS(12353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12353), + [anon_sym_BSLASHacrlong] = ACTIONS(12353), + [anon_sym_BSLASHAcrlong] = ACTIONS(12353), + [anon_sym_BSLASHACRlong] = ACTIONS(12353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12353), + [anon_sym_BSLASHacrfull] = ACTIONS(12353), + [anon_sym_BSLASHAcrfull] = ACTIONS(12353), + [anon_sym_BSLASHACRfull] = ACTIONS(12353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12353), + [anon_sym_BSLASHacs] = ACTIONS(12353), + [anon_sym_BSLASHAcs] = ACTIONS(12353), + [anon_sym_BSLASHacsp] = ACTIONS(12353), + [anon_sym_BSLASHAcsp] = ACTIONS(12353), + [anon_sym_BSLASHacl] = ACTIONS(12353), + [anon_sym_BSLASHAcl] = ACTIONS(12353), + [anon_sym_BSLASHaclp] = ACTIONS(12353), + [anon_sym_BSLASHAclp] = ACTIONS(12353), + [anon_sym_BSLASHacf] = ACTIONS(12353), + [anon_sym_BSLASHAcf] = ACTIONS(12353), + [anon_sym_BSLASHacfp] = ACTIONS(12353), + [anon_sym_BSLASHAcfp] = ACTIONS(12353), + [anon_sym_BSLASHac] = ACTIONS(12353), + [anon_sym_BSLASHAc] = ACTIONS(12353), + [anon_sym_BSLASHacp] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12353), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12353), + [anon_sym_BSLASHcolor] = ACTIONS(12353), + [anon_sym_BSLASHcolorbox] = ACTIONS(12353), + [anon_sym_BSLASHtextcolor] = ACTIONS(12353), + [anon_sym_BSLASHpagecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12353), + }, + [944] = { + [sym_generic_command_name] = ACTIONS(12357), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12357), + [aux_sym_chapter_token1] = ACTIONS(12357), + [aux_sym_section_token1] = ACTIONS(12357), + [aux_sym_subsection_token1] = ACTIONS(12357), + [aux_sym_subsubsection_token1] = ACTIONS(12357), + [aux_sym_paragraph_token1] = ACTIONS(12357), + [aux_sym_subparagraph_token1] = ACTIONS(12357), + [anon_sym_BSLASHitem] = ACTIONS(12357), + [anon_sym_LBRACK] = ACTIONS(12355), + [anon_sym_LBRACE] = ACTIONS(12355), + [anon_sym_LPAREN] = ACTIONS(12355), + [anon_sym_COMMA] = ACTIONS(12355), + [anon_sym_EQ] = ACTIONS(12355), + [sym_word] = ACTIONS(12355), + [sym_param] = ACTIONS(12355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12355), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12355), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12355), + [anon_sym_DOLLAR] = ACTIONS(12357), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12355), + [anon_sym_BSLASHbegin] = ACTIONS(12357), + [anon_sym_BSLASHcaption] = ACTIONS(12357), + [anon_sym_BSLASHcite] = ACTIONS(12357), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCite] = ACTIONS(12357), + [anon_sym_BSLASHnocite] = ACTIONS(12357), + [anon_sym_BSLASHcitet] = ACTIONS(12357), + [anon_sym_BSLASHcitep] = ACTIONS(12357), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteauthor] = ACTIONS(12357), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12357), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitetitle] = ACTIONS(12357), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteyear] = ACTIONS(12357), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitedate] = ACTIONS(12357), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteurl] = ACTIONS(12357), + [anon_sym_BSLASHfullcite] = ACTIONS(12357), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12357), + [anon_sym_BSLASHcitealt] = ACTIONS(12357), + [anon_sym_BSLASHcitealp] = ACTIONS(12357), + [anon_sym_BSLASHcitetext] = ACTIONS(12357), + [anon_sym_BSLASHparencite] = ACTIONS(12357), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHParencite] = ACTIONS(12357), + [anon_sym_BSLASHfootcite] = ACTIONS(12357), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12357), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12357), + [anon_sym_BSLASHtextcite] = ACTIONS(12357), + [anon_sym_BSLASHTextcite] = ACTIONS(12357), + [anon_sym_BSLASHsmartcite] = ACTIONS(12357), + [anon_sym_BSLASHSmartcite] = ACTIONS(12357), + [anon_sym_BSLASHsupercite] = ACTIONS(12357), + [anon_sym_BSLASHautocite] = ACTIONS(12357), + [anon_sym_BSLASHAutocite] = ACTIONS(12357), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHvolcite] = ACTIONS(12357), + [anon_sym_BSLASHVolcite] = ACTIONS(12357), + [anon_sym_BSLASHpvolcite] = ACTIONS(12357), + [anon_sym_BSLASHPvolcite] = ACTIONS(12357), + [anon_sym_BSLASHfvolcite] = ACTIONS(12357), + [anon_sym_BSLASHftvolcite] = ACTIONS(12357), + [anon_sym_BSLASHsvolcite] = ACTIONS(12357), + [anon_sym_BSLASHSvolcite] = ACTIONS(12357), + [anon_sym_BSLASHtvolcite] = ACTIONS(12357), + [anon_sym_BSLASHTvolcite] = ACTIONS(12357), + [anon_sym_BSLASHavolcite] = ACTIONS(12357), + [anon_sym_BSLASHAvolcite] = ACTIONS(12357), + [anon_sym_BSLASHnotecite] = ACTIONS(12357), + [anon_sym_BSLASHpnotecite] = ACTIONS(12357), + [anon_sym_BSLASHPnotecite] = ACTIONS(12357), + [anon_sym_BSLASHfnotecite] = ACTIONS(12357), + [anon_sym_BSLASHusepackage] = ACTIONS(12357), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12357), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12357), + [anon_sym_BSLASHinclude] = ACTIONS(12357), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12357), + [anon_sym_BSLASHinput] = ACTIONS(12357), + [anon_sym_BSLASHsubfile] = ACTIONS(12357), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12357), + [anon_sym_BSLASHbibliography] = ACTIONS(12357), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12357), + [anon_sym_BSLASHincludesvg] = ACTIONS(12357), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12357), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12357), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12357), + [anon_sym_BSLASHimport] = ACTIONS(12357), + [anon_sym_BSLASHsubimport] = ACTIONS(12357), + [anon_sym_BSLASHinputfrom] = ACTIONS(12357), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12357), + [anon_sym_BSLASHincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHlabel] = ACTIONS(12357), + [anon_sym_BSLASHref] = ACTIONS(12357), + [anon_sym_BSLASHvref] = ACTIONS(12357), + [anon_sym_BSLASHVref] = ACTIONS(12357), + [anon_sym_BSLASHautoref] = ACTIONS(12357), + [anon_sym_BSLASHpageref] = ACTIONS(12357), + [anon_sym_BSLASHcref] = ACTIONS(12357), + [anon_sym_BSLASHCref] = ACTIONS(12357), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnameCref] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHlabelcref] = ACTIONS(12357), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12357), + [anon_sym_BSLASHeqref] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange] = ACTIONS(12357), + [anon_sym_BSLASHCrefrange] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewlabel] = ACTIONS(12357), + [anon_sym_BSLASHnewcommand] = ACTIONS(12357), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12357), + [anon_sym_BSLASHgls] = ACTIONS(12357), + [anon_sym_BSLASHGls] = ACTIONS(12357), + [anon_sym_BSLASHGLS] = ACTIONS(12357), + [anon_sym_BSLASHglspl] = ACTIONS(12357), + [anon_sym_BSLASHGlspl] = ACTIONS(12357), + [anon_sym_BSLASHGLSpl] = ACTIONS(12357), + [anon_sym_BSLASHglsdisp] = ACTIONS(12357), + [anon_sym_BSLASHglslink] = ACTIONS(12357), + [anon_sym_BSLASHglstext] = ACTIONS(12357), + [anon_sym_BSLASHGlstext] = ACTIONS(12357), + [anon_sym_BSLASHGLStext] = ACTIONS(12357), + [anon_sym_BSLASHglsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12357), + [anon_sym_BSLASHglsplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSplural] = ACTIONS(12357), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHglsname] = ACTIONS(12357), + [anon_sym_BSLASHGlsname] = ACTIONS(12357), + [anon_sym_BSLASHGLSname] = ACTIONS(12357), + [anon_sym_BSLASHglssymbol] = ACTIONS(12357), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12357), + [anon_sym_BSLASHglsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12357), + [anon_sym_BSLASHglsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12357), + [anon_sym_BSLASHglsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12357), + [anon_sym_BSLASHglsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12357), + [anon_sym_BSLASHglsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12357), + [anon_sym_BSLASHnewacronym] = ACTIONS(12357), + [anon_sym_BSLASHacrshort] = ACTIONS(12357), + [anon_sym_BSLASHAcrshort] = ACTIONS(12357), + [anon_sym_BSLASHACRshort] = ACTIONS(12357), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12357), + [anon_sym_BSLASHacrlong] = ACTIONS(12357), + [anon_sym_BSLASHAcrlong] = ACTIONS(12357), + [anon_sym_BSLASHACRlong] = ACTIONS(12357), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12357), + [anon_sym_BSLASHacrfull] = ACTIONS(12357), + [anon_sym_BSLASHAcrfull] = ACTIONS(12357), + [anon_sym_BSLASHACRfull] = ACTIONS(12357), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12357), + [anon_sym_BSLASHacs] = ACTIONS(12357), + [anon_sym_BSLASHAcs] = ACTIONS(12357), + [anon_sym_BSLASHacsp] = ACTIONS(12357), + [anon_sym_BSLASHAcsp] = ACTIONS(12357), + [anon_sym_BSLASHacl] = ACTIONS(12357), + [anon_sym_BSLASHAcl] = ACTIONS(12357), + [anon_sym_BSLASHaclp] = ACTIONS(12357), + [anon_sym_BSLASHAclp] = ACTIONS(12357), + [anon_sym_BSLASHacf] = ACTIONS(12357), + [anon_sym_BSLASHAcf] = ACTIONS(12357), + [anon_sym_BSLASHacfp] = ACTIONS(12357), + [anon_sym_BSLASHAcfp] = ACTIONS(12357), + [anon_sym_BSLASHac] = ACTIONS(12357), + [anon_sym_BSLASHAc] = ACTIONS(12357), + [anon_sym_BSLASHacp] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12357), + [anon_sym_BSLASHcolor] = ACTIONS(12357), + [anon_sym_BSLASHcolorbox] = ACTIONS(12357), + [anon_sym_BSLASHtextcolor] = ACTIONS(12357), + [anon_sym_BSLASHpagecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12357), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12357), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12357), + }, + [945] = { + [sym_generic_command_name] = ACTIONS(12361), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12361), + [aux_sym_chapter_token1] = ACTIONS(12361), + [aux_sym_section_token1] = ACTIONS(12361), + [aux_sym_subsection_token1] = ACTIONS(12361), + [aux_sym_subsubsection_token1] = ACTIONS(12361), + [aux_sym_paragraph_token1] = ACTIONS(12361), + [aux_sym_subparagraph_token1] = ACTIONS(12361), + [anon_sym_BSLASHitem] = ACTIONS(12361), + [anon_sym_LBRACK] = ACTIONS(12359), + [anon_sym_LBRACE] = ACTIONS(12359), + [anon_sym_LPAREN] = ACTIONS(12359), + [anon_sym_COMMA] = ACTIONS(12359), + [anon_sym_EQ] = ACTIONS(12359), + [sym_word] = ACTIONS(12359), + [sym_param] = ACTIONS(12359), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12359), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12359), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12359), + [anon_sym_DOLLAR] = ACTIONS(12361), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12359), + [anon_sym_BSLASHbegin] = ACTIONS(12361), + [anon_sym_BSLASHcaption] = ACTIONS(12361), + [anon_sym_BSLASHcite] = ACTIONS(12361), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCite] = ACTIONS(12361), + [anon_sym_BSLASHnocite] = ACTIONS(12361), + [anon_sym_BSLASHcitet] = ACTIONS(12361), + [anon_sym_BSLASHcitep] = ACTIONS(12361), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteauthor] = ACTIONS(12361), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12361), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitetitle] = ACTIONS(12361), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteyear] = ACTIONS(12361), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitedate] = ACTIONS(12361), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteurl] = ACTIONS(12361), + [anon_sym_BSLASHfullcite] = ACTIONS(12361), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12361), + [anon_sym_BSLASHcitealt] = ACTIONS(12361), + [anon_sym_BSLASHcitealp] = ACTIONS(12361), + [anon_sym_BSLASHcitetext] = ACTIONS(12361), + [anon_sym_BSLASHparencite] = ACTIONS(12361), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHParencite] = ACTIONS(12361), + [anon_sym_BSLASHfootcite] = ACTIONS(12361), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12361), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12361), + [anon_sym_BSLASHtextcite] = ACTIONS(12361), + [anon_sym_BSLASHTextcite] = ACTIONS(12361), + [anon_sym_BSLASHsmartcite] = ACTIONS(12361), + [anon_sym_BSLASHSmartcite] = ACTIONS(12361), + [anon_sym_BSLASHsupercite] = ACTIONS(12361), + [anon_sym_BSLASHautocite] = ACTIONS(12361), + [anon_sym_BSLASHAutocite] = ACTIONS(12361), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHvolcite] = ACTIONS(12361), + [anon_sym_BSLASHVolcite] = ACTIONS(12361), + [anon_sym_BSLASHpvolcite] = ACTIONS(12361), + [anon_sym_BSLASHPvolcite] = ACTIONS(12361), + [anon_sym_BSLASHfvolcite] = ACTIONS(12361), + [anon_sym_BSLASHftvolcite] = ACTIONS(12361), + [anon_sym_BSLASHsvolcite] = ACTIONS(12361), + [anon_sym_BSLASHSvolcite] = ACTIONS(12361), + [anon_sym_BSLASHtvolcite] = ACTIONS(12361), + [anon_sym_BSLASHTvolcite] = ACTIONS(12361), + [anon_sym_BSLASHavolcite] = ACTIONS(12361), + [anon_sym_BSLASHAvolcite] = ACTIONS(12361), + [anon_sym_BSLASHnotecite] = ACTIONS(12361), + [anon_sym_BSLASHpnotecite] = ACTIONS(12361), + [anon_sym_BSLASHPnotecite] = ACTIONS(12361), + [anon_sym_BSLASHfnotecite] = ACTIONS(12361), + [anon_sym_BSLASHusepackage] = ACTIONS(12361), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12361), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12361), + [anon_sym_BSLASHinclude] = ACTIONS(12361), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12361), + [anon_sym_BSLASHinput] = ACTIONS(12361), + [anon_sym_BSLASHsubfile] = ACTIONS(12361), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12361), + [anon_sym_BSLASHbibliography] = ACTIONS(12361), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12361), + [anon_sym_BSLASHincludesvg] = ACTIONS(12361), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12361), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12361), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12361), + [anon_sym_BSLASHimport] = ACTIONS(12361), + [anon_sym_BSLASHsubimport] = ACTIONS(12361), + [anon_sym_BSLASHinputfrom] = ACTIONS(12361), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12361), + [anon_sym_BSLASHincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHlabel] = ACTIONS(12361), + [anon_sym_BSLASHref] = ACTIONS(12361), + [anon_sym_BSLASHvref] = ACTIONS(12361), + [anon_sym_BSLASHVref] = ACTIONS(12361), + [anon_sym_BSLASHautoref] = ACTIONS(12361), + [anon_sym_BSLASHpageref] = ACTIONS(12361), + [anon_sym_BSLASHcref] = ACTIONS(12361), + [anon_sym_BSLASHCref] = ACTIONS(12361), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnameCref] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHlabelcref] = ACTIONS(12361), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12361), + [anon_sym_BSLASHeqref] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange] = ACTIONS(12361), + [anon_sym_BSLASHCrefrange] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewlabel] = ACTIONS(12361), + [anon_sym_BSLASHnewcommand] = ACTIONS(12361), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12361), + [anon_sym_BSLASHgls] = ACTIONS(12361), + [anon_sym_BSLASHGls] = ACTIONS(12361), + [anon_sym_BSLASHGLS] = ACTIONS(12361), + [anon_sym_BSLASHglspl] = ACTIONS(12361), + [anon_sym_BSLASHGlspl] = ACTIONS(12361), + [anon_sym_BSLASHGLSpl] = ACTIONS(12361), + [anon_sym_BSLASHglsdisp] = ACTIONS(12361), + [anon_sym_BSLASHglslink] = ACTIONS(12361), + [anon_sym_BSLASHglstext] = ACTIONS(12361), + [anon_sym_BSLASHGlstext] = ACTIONS(12361), + [anon_sym_BSLASHGLStext] = ACTIONS(12361), + [anon_sym_BSLASHglsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12361), + [anon_sym_BSLASHglsplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSplural] = ACTIONS(12361), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHglsname] = ACTIONS(12361), + [anon_sym_BSLASHGlsname] = ACTIONS(12361), + [anon_sym_BSLASHGLSname] = ACTIONS(12361), + [anon_sym_BSLASHglssymbol] = ACTIONS(12361), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12361), + [anon_sym_BSLASHglsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12361), + [anon_sym_BSLASHglsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12361), + [anon_sym_BSLASHglsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12361), + [anon_sym_BSLASHglsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12361), + [anon_sym_BSLASHglsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12361), + [anon_sym_BSLASHnewacronym] = ACTIONS(12361), + [anon_sym_BSLASHacrshort] = ACTIONS(12361), + [anon_sym_BSLASHAcrshort] = ACTIONS(12361), + [anon_sym_BSLASHACRshort] = ACTIONS(12361), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12361), + [anon_sym_BSLASHacrlong] = ACTIONS(12361), + [anon_sym_BSLASHAcrlong] = ACTIONS(12361), + [anon_sym_BSLASHACRlong] = ACTIONS(12361), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12361), + [anon_sym_BSLASHacrfull] = ACTIONS(12361), + [anon_sym_BSLASHAcrfull] = ACTIONS(12361), + [anon_sym_BSLASHACRfull] = ACTIONS(12361), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12361), + [anon_sym_BSLASHacs] = ACTIONS(12361), + [anon_sym_BSLASHAcs] = ACTIONS(12361), + [anon_sym_BSLASHacsp] = ACTIONS(12361), + [anon_sym_BSLASHAcsp] = ACTIONS(12361), + [anon_sym_BSLASHacl] = ACTIONS(12361), + [anon_sym_BSLASHAcl] = ACTIONS(12361), + [anon_sym_BSLASHaclp] = ACTIONS(12361), + [anon_sym_BSLASHAclp] = ACTIONS(12361), + [anon_sym_BSLASHacf] = ACTIONS(12361), + [anon_sym_BSLASHAcf] = ACTIONS(12361), + [anon_sym_BSLASHacfp] = ACTIONS(12361), + [anon_sym_BSLASHAcfp] = ACTIONS(12361), + [anon_sym_BSLASHac] = ACTIONS(12361), + [anon_sym_BSLASHAc] = ACTIONS(12361), + [anon_sym_BSLASHacp] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12361), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12361), + [anon_sym_BSLASHcolor] = ACTIONS(12361), + [anon_sym_BSLASHcolorbox] = ACTIONS(12361), + [anon_sym_BSLASHtextcolor] = ACTIONS(12361), + [anon_sym_BSLASHpagecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12361), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12361), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12361), + }, + [946] = { + [sym_generic_command_name] = ACTIONS(12369), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12369), + [aux_sym_chapter_token1] = ACTIONS(12369), + [aux_sym_section_token1] = ACTIONS(12369), + [aux_sym_subsection_token1] = ACTIONS(12369), + [aux_sym_subsubsection_token1] = ACTIONS(12369), + [aux_sym_paragraph_token1] = ACTIONS(12369), + [aux_sym_subparagraph_token1] = ACTIONS(12369), + [anon_sym_BSLASHitem] = ACTIONS(12369), + [anon_sym_LBRACK] = ACTIONS(12367), + [anon_sym_LBRACE] = ACTIONS(12367), + [anon_sym_LPAREN] = ACTIONS(12367), + [anon_sym_COMMA] = ACTIONS(12367), + [anon_sym_EQ] = ACTIONS(12367), + [sym_word] = ACTIONS(12367), + [sym_param] = ACTIONS(12367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12367), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12367), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12367), + [anon_sym_DOLLAR] = ACTIONS(12369), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12367), + [anon_sym_BSLASHbegin] = ACTIONS(12369), + [anon_sym_BSLASHcaption] = ACTIONS(12369), + [anon_sym_BSLASHcite] = ACTIONS(12369), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCite] = ACTIONS(12369), + [anon_sym_BSLASHnocite] = ACTIONS(12369), + [anon_sym_BSLASHcitet] = ACTIONS(12369), + [anon_sym_BSLASHcitep] = ACTIONS(12369), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteauthor] = ACTIONS(12369), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12369), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitetitle] = ACTIONS(12369), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteyear] = ACTIONS(12369), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitedate] = ACTIONS(12369), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteurl] = ACTIONS(12369), + [anon_sym_BSLASHfullcite] = ACTIONS(12369), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12369), + [anon_sym_BSLASHcitealt] = ACTIONS(12369), + [anon_sym_BSLASHcitealp] = ACTIONS(12369), + [anon_sym_BSLASHcitetext] = ACTIONS(12369), + [anon_sym_BSLASHparencite] = ACTIONS(12369), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHParencite] = ACTIONS(12369), + [anon_sym_BSLASHfootcite] = ACTIONS(12369), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12369), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12369), + [anon_sym_BSLASHtextcite] = ACTIONS(12369), + [anon_sym_BSLASHTextcite] = ACTIONS(12369), + [anon_sym_BSLASHsmartcite] = ACTIONS(12369), + [anon_sym_BSLASHSmartcite] = ACTIONS(12369), + [anon_sym_BSLASHsupercite] = ACTIONS(12369), + [anon_sym_BSLASHautocite] = ACTIONS(12369), + [anon_sym_BSLASHAutocite] = ACTIONS(12369), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHvolcite] = ACTIONS(12369), + [anon_sym_BSLASHVolcite] = ACTIONS(12369), + [anon_sym_BSLASHpvolcite] = ACTIONS(12369), + [anon_sym_BSLASHPvolcite] = ACTIONS(12369), + [anon_sym_BSLASHfvolcite] = ACTIONS(12369), + [anon_sym_BSLASHftvolcite] = ACTIONS(12369), + [anon_sym_BSLASHsvolcite] = ACTIONS(12369), + [anon_sym_BSLASHSvolcite] = ACTIONS(12369), + [anon_sym_BSLASHtvolcite] = ACTIONS(12369), + [anon_sym_BSLASHTvolcite] = ACTIONS(12369), + [anon_sym_BSLASHavolcite] = ACTIONS(12369), + [anon_sym_BSLASHAvolcite] = ACTIONS(12369), + [anon_sym_BSLASHnotecite] = ACTIONS(12369), + [anon_sym_BSLASHpnotecite] = ACTIONS(12369), + [anon_sym_BSLASHPnotecite] = ACTIONS(12369), + [anon_sym_BSLASHfnotecite] = ACTIONS(12369), + [anon_sym_BSLASHusepackage] = ACTIONS(12369), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12369), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12369), + [anon_sym_BSLASHinclude] = ACTIONS(12369), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12369), + [anon_sym_BSLASHinput] = ACTIONS(12369), + [anon_sym_BSLASHsubfile] = ACTIONS(12369), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12369), + [anon_sym_BSLASHbibliography] = ACTIONS(12369), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12369), + [anon_sym_BSLASHincludesvg] = ACTIONS(12369), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12369), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12369), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12369), + [anon_sym_BSLASHimport] = ACTIONS(12369), + [anon_sym_BSLASHsubimport] = ACTIONS(12369), + [anon_sym_BSLASHinputfrom] = ACTIONS(12369), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12369), + [anon_sym_BSLASHincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHlabel] = ACTIONS(12369), + [anon_sym_BSLASHref] = ACTIONS(12369), + [anon_sym_BSLASHvref] = ACTIONS(12369), + [anon_sym_BSLASHVref] = ACTIONS(12369), + [anon_sym_BSLASHautoref] = ACTIONS(12369), + [anon_sym_BSLASHpageref] = ACTIONS(12369), + [anon_sym_BSLASHcref] = ACTIONS(12369), + [anon_sym_BSLASHCref] = ACTIONS(12369), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnameCref] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHlabelcref] = ACTIONS(12369), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12369), + [anon_sym_BSLASHeqref] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange] = ACTIONS(12369), + [anon_sym_BSLASHCrefrange] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewlabel] = ACTIONS(12369), + [anon_sym_BSLASHnewcommand] = ACTIONS(12369), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12369), + [anon_sym_BSLASHgls] = ACTIONS(12369), + [anon_sym_BSLASHGls] = ACTIONS(12369), + [anon_sym_BSLASHGLS] = ACTIONS(12369), + [anon_sym_BSLASHglspl] = ACTIONS(12369), + [anon_sym_BSLASHGlspl] = ACTIONS(12369), + [anon_sym_BSLASHGLSpl] = ACTIONS(12369), + [anon_sym_BSLASHglsdisp] = ACTIONS(12369), + [anon_sym_BSLASHglslink] = ACTIONS(12369), + [anon_sym_BSLASHglstext] = ACTIONS(12369), + [anon_sym_BSLASHGlstext] = ACTIONS(12369), + [anon_sym_BSLASHGLStext] = ACTIONS(12369), + [anon_sym_BSLASHglsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12369), + [anon_sym_BSLASHglsplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSplural] = ACTIONS(12369), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHglsname] = ACTIONS(12369), + [anon_sym_BSLASHGlsname] = ACTIONS(12369), + [anon_sym_BSLASHGLSname] = ACTIONS(12369), + [anon_sym_BSLASHglssymbol] = ACTIONS(12369), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12369), + [anon_sym_BSLASHglsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12369), + [anon_sym_BSLASHglsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12369), + [anon_sym_BSLASHglsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12369), + [anon_sym_BSLASHglsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12369), + [anon_sym_BSLASHglsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12369), + [anon_sym_BSLASHnewacronym] = ACTIONS(12369), + [anon_sym_BSLASHacrshort] = ACTIONS(12369), + [anon_sym_BSLASHAcrshort] = ACTIONS(12369), + [anon_sym_BSLASHACRshort] = ACTIONS(12369), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12369), + [anon_sym_BSLASHacrlong] = ACTIONS(12369), + [anon_sym_BSLASHAcrlong] = ACTIONS(12369), + [anon_sym_BSLASHACRlong] = ACTIONS(12369), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12369), + [anon_sym_BSLASHacrfull] = ACTIONS(12369), + [anon_sym_BSLASHAcrfull] = ACTIONS(12369), + [anon_sym_BSLASHACRfull] = ACTIONS(12369), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12369), + [anon_sym_BSLASHacs] = ACTIONS(12369), + [anon_sym_BSLASHAcs] = ACTIONS(12369), + [anon_sym_BSLASHacsp] = ACTIONS(12369), + [anon_sym_BSLASHAcsp] = ACTIONS(12369), + [anon_sym_BSLASHacl] = ACTIONS(12369), + [anon_sym_BSLASHAcl] = ACTIONS(12369), + [anon_sym_BSLASHaclp] = ACTIONS(12369), + [anon_sym_BSLASHAclp] = ACTIONS(12369), + [anon_sym_BSLASHacf] = ACTIONS(12369), + [anon_sym_BSLASHAcf] = ACTIONS(12369), + [anon_sym_BSLASHacfp] = ACTIONS(12369), + [anon_sym_BSLASHAcfp] = ACTIONS(12369), + [anon_sym_BSLASHac] = ACTIONS(12369), + [anon_sym_BSLASHAc] = ACTIONS(12369), + [anon_sym_BSLASHacp] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12369), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12369), + [anon_sym_BSLASHcolor] = ACTIONS(12369), + [anon_sym_BSLASHcolorbox] = ACTIONS(12369), + [anon_sym_BSLASHtextcolor] = ACTIONS(12369), + [anon_sym_BSLASHpagecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12369), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12369), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12369), + }, + [947] = { + [sym_generic_command_name] = ACTIONS(12373), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12373), + [aux_sym_chapter_token1] = ACTIONS(12373), + [aux_sym_section_token1] = ACTIONS(12373), + [aux_sym_subsection_token1] = ACTIONS(12373), + [aux_sym_subsubsection_token1] = ACTIONS(12373), + [aux_sym_paragraph_token1] = ACTIONS(12373), + [aux_sym_subparagraph_token1] = ACTIONS(12373), + [anon_sym_BSLASHitem] = ACTIONS(12373), + [anon_sym_LBRACK] = ACTIONS(12371), + [anon_sym_LBRACE] = ACTIONS(12371), + [anon_sym_LPAREN] = ACTIONS(12371), + [anon_sym_COMMA] = ACTIONS(12371), + [anon_sym_EQ] = ACTIONS(12371), + [sym_word] = ACTIONS(12371), + [sym_param] = ACTIONS(12371), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12371), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12371), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12371), + [anon_sym_DOLLAR] = ACTIONS(12373), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12371), + [anon_sym_BSLASHbegin] = ACTIONS(12373), + [anon_sym_BSLASHcaption] = ACTIONS(12373), + [anon_sym_BSLASHcite] = ACTIONS(12373), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCite] = ACTIONS(12373), + [anon_sym_BSLASHnocite] = ACTIONS(12373), + [anon_sym_BSLASHcitet] = ACTIONS(12373), + [anon_sym_BSLASHcitep] = ACTIONS(12373), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteauthor] = ACTIONS(12373), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12373), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitetitle] = ACTIONS(12373), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteyear] = ACTIONS(12373), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitedate] = ACTIONS(12373), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteurl] = ACTIONS(12373), + [anon_sym_BSLASHfullcite] = ACTIONS(12373), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12373), + [anon_sym_BSLASHcitealt] = ACTIONS(12373), + [anon_sym_BSLASHcitealp] = ACTIONS(12373), + [anon_sym_BSLASHcitetext] = ACTIONS(12373), + [anon_sym_BSLASHparencite] = ACTIONS(12373), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHParencite] = ACTIONS(12373), + [anon_sym_BSLASHfootcite] = ACTIONS(12373), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12373), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12373), + [anon_sym_BSLASHtextcite] = ACTIONS(12373), + [anon_sym_BSLASHTextcite] = ACTIONS(12373), + [anon_sym_BSLASHsmartcite] = ACTIONS(12373), + [anon_sym_BSLASHSmartcite] = ACTIONS(12373), + [anon_sym_BSLASHsupercite] = ACTIONS(12373), + [anon_sym_BSLASHautocite] = ACTIONS(12373), + [anon_sym_BSLASHAutocite] = ACTIONS(12373), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHvolcite] = ACTIONS(12373), + [anon_sym_BSLASHVolcite] = ACTIONS(12373), + [anon_sym_BSLASHpvolcite] = ACTIONS(12373), + [anon_sym_BSLASHPvolcite] = ACTIONS(12373), + [anon_sym_BSLASHfvolcite] = ACTIONS(12373), + [anon_sym_BSLASHftvolcite] = ACTIONS(12373), + [anon_sym_BSLASHsvolcite] = ACTIONS(12373), + [anon_sym_BSLASHSvolcite] = ACTIONS(12373), + [anon_sym_BSLASHtvolcite] = ACTIONS(12373), + [anon_sym_BSLASHTvolcite] = ACTIONS(12373), + [anon_sym_BSLASHavolcite] = ACTIONS(12373), + [anon_sym_BSLASHAvolcite] = ACTIONS(12373), + [anon_sym_BSLASHnotecite] = ACTIONS(12373), + [anon_sym_BSLASHpnotecite] = ACTIONS(12373), + [anon_sym_BSLASHPnotecite] = ACTIONS(12373), + [anon_sym_BSLASHfnotecite] = ACTIONS(12373), + [anon_sym_BSLASHusepackage] = ACTIONS(12373), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12373), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12373), + [anon_sym_BSLASHinclude] = ACTIONS(12373), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12373), + [anon_sym_BSLASHinput] = ACTIONS(12373), + [anon_sym_BSLASHsubfile] = ACTIONS(12373), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12373), + [anon_sym_BSLASHbibliography] = ACTIONS(12373), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12373), + [anon_sym_BSLASHincludesvg] = ACTIONS(12373), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12373), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12373), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12373), + [anon_sym_BSLASHimport] = ACTIONS(12373), + [anon_sym_BSLASHsubimport] = ACTIONS(12373), + [anon_sym_BSLASHinputfrom] = ACTIONS(12373), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12373), + [anon_sym_BSLASHincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHlabel] = ACTIONS(12373), + [anon_sym_BSLASHref] = ACTIONS(12373), + [anon_sym_BSLASHvref] = ACTIONS(12373), + [anon_sym_BSLASHVref] = ACTIONS(12373), + [anon_sym_BSLASHautoref] = ACTIONS(12373), + [anon_sym_BSLASHpageref] = ACTIONS(12373), + [anon_sym_BSLASHcref] = ACTIONS(12373), + [anon_sym_BSLASHCref] = ACTIONS(12373), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnameCref] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHlabelcref] = ACTIONS(12373), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12373), + [anon_sym_BSLASHeqref] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange] = ACTIONS(12373), + [anon_sym_BSLASHCrefrange] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewlabel] = ACTIONS(12373), + [anon_sym_BSLASHnewcommand] = ACTIONS(12373), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12373), + [anon_sym_BSLASHgls] = ACTIONS(12373), + [anon_sym_BSLASHGls] = ACTIONS(12373), + [anon_sym_BSLASHGLS] = ACTIONS(12373), + [anon_sym_BSLASHglspl] = ACTIONS(12373), + [anon_sym_BSLASHGlspl] = ACTIONS(12373), + [anon_sym_BSLASHGLSpl] = ACTIONS(12373), + [anon_sym_BSLASHglsdisp] = ACTIONS(12373), + [anon_sym_BSLASHglslink] = ACTIONS(12373), + [anon_sym_BSLASHglstext] = ACTIONS(12373), + [anon_sym_BSLASHGlstext] = ACTIONS(12373), + [anon_sym_BSLASHGLStext] = ACTIONS(12373), + [anon_sym_BSLASHglsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12373), + [anon_sym_BSLASHglsplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSplural] = ACTIONS(12373), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHglsname] = ACTIONS(12373), + [anon_sym_BSLASHGlsname] = ACTIONS(12373), + [anon_sym_BSLASHGLSname] = ACTIONS(12373), + [anon_sym_BSLASHglssymbol] = ACTIONS(12373), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12373), + [anon_sym_BSLASHglsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12373), + [anon_sym_BSLASHglsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12373), + [anon_sym_BSLASHglsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12373), + [anon_sym_BSLASHglsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12373), + [anon_sym_BSLASHglsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12373), + [anon_sym_BSLASHnewacronym] = ACTIONS(12373), + [anon_sym_BSLASHacrshort] = ACTIONS(12373), + [anon_sym_BSLASHAcrshort] = ACTIONS(12373), + [anon_sym_BSLASHACRshort] = ACTIONS(12373), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12373), + [anon_sym_BSLASHacrlong] = ACTIONS(12373), + [anon_sym_BSLASHAcrlong] = ACTIONS(12373), + [anon_sym_BSLASHACRlong] = ACTIONS(12373), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12373), + [anon_sym_BSLASHacrfull] = ACTIONS(12373), + [anon_sym_BSLASHAcrfull] = ACTIONS(12373), + [anon_sym_BSLASHACRfull] = ACTIONS(12373), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12373), + [anon_sym_BSLASHacs] = ACTIONS(12373), + [anon_sym_BSLASHAcs] = ACTIONS(12373), + [anon_sym_BSLASHacsp] = ACTIONS(12373), + [anon_sym_BSLASHAcsp] = ACTIONS(12373), + [anon_sym_BSLASHacl] = ACTIONS(12373), + [anon_sym_BSLASHAcl] = ACTIONS(12373), + [anon_sym_BSLASHaclp] = ACTIONS(12373), + [anon_sym_BSLASHAclp] = ACTIONS(12373), + [anon_sym_BSLASHacf] = ACTIONS(12373), + [anon_sym_BSLASHAcf] = ACTIONS(12373), + [anon_sym_BSLASHacfp] = ACTIONS(12373), + [anon_sym_BSLASHAcfp] = ACTIONS(12373), + [anon_sym_BSLASHac] = ACTIONS(12373), + [anon_sym_BSLASHAc] = ACTIONS(12373), + [anon_sym_BSLASHacp] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12373), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12373), + [anon_sym_BSLASHcolor] = ACTIONS(12373), + [anon_sym_BSLASHcolorbox] = ACTIONS(12373), + [anon_sym_BSLASHtextcolor] = ACTIONS(12373), + [anon_sym_BSLASHpagecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12373), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12373), + }, + [948] = { + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(117), + [aux_sym_chapter_token1] = ACTIONS(117), + [aux_sym_section_token1] = ACTIONS(117), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_BSLASH_RBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [949] = { + [sym_generic_command_name] = ACTIONS(12485), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12485), + [aux_sym_chapter_token1] = ACTIONS(12485), + [aux_sym_section_token1] = ACTIONS(12485), + [aux_sym_subsection_token1] = ACTIONS(12485), + [aux_sym_subsubsection_token1] = ACTIONS(12485), + [aux_sym_paragraph_token1] = ACTIONS(12485), + [aux_sym_subparagraph_token1] = ACTIONS(12485), + [anon_sym_BSLASHitem] = ACTIONS(12485), + [anon_sym_LBRACK] = ACTIONS(12483), + [anon_sym_LBRACE] = ACTIONS(12483), + [anon_sym_LPAREN] = ACTIONS(12483), + [anon_sym_COMMA] = ACTIONS(12483), + [anon_sym_EQ] = ACTIONS(12483), + [sym_word] = ACTIONS(12483), + [sym_param] = ACTIONS(12483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12483), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12483), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12483), + [anon_sym_DOLLAR] = ACTIONS(12485), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12483), + [anon_sym_BSLASHbegin] = ACTIONS(12485), + [anon_sym_BSLASHcaption] = ACTIONS(12485), + [anon_sym_BSLASHcite] = ACTIONS(12485), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCite] = ACTIONS(12485), + [anon_sym_BSLASHnocite] = ACTIONS(12485), + [anon_sym_BSLASHcitet] = ACTIONS(12485), + [anon_sym_BSLASHcitep] = ACTIONS(12485), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteauthor] = ACTIONS(12485), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12485), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitetitle] = ACTIONS(12485), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteyear] = ACTIONS(12485), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitedate] = ACTIONS(12485), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteurl] = ACTIONS(12485), + [anon_sym_BSLASHfullcite] = ACTIONS(12485), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12485), + [anon_sym_BSLASHcitealt] = ACTIONS(12485), + [anon_sym_BSLASHcitealp] = ACTIONS(12485), + [anon_sym_BSLASHcitetext] = ACTIONS(12485), + [anon_sym_BSLASHparencite] = ACTIONS(12485), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHParencite] = ACTIONS(12485), + [anon_sym_BSLASHfootcite] = ACTIONS(12485), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12485), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12485), + [anon_sym_BSLASHtextcite] = ACTIONS(12485), + [anon_sym_BSLASHTextcite] = ACTIONS(12485), + [anon_sym_BSLASHsmartcite] = ACTIONS(12485), + [anon_sym_BSLASHSmartcite] = ACTIONS(12485), + [anon_sym_BSLASHsupercite] = ACTIONS(12485), + [anon_sym_BSLASHautocite] = ACTIONS(12485), + [anon_sym_BSLASHAutocite] = ACTIONS(12485), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHvolcite] = ACTIONS(12485), + [anon_sym_BSLASHVolcite] = ACTIONS(12485), + [anon_sym_BSLASHpvolcite] = ACTIONS(12485), + [anon_sym_BSLASHPvolcite] = ACTIONS(12485), + [anon_sym_BSLASHfvolcite] = ACTIONS(12485), + [anon_sym_BSLASHftvolcite] = ACTIONS(12485), + [anon_sym_BSLASHsvolcite] = ACTIONS(12485), + [anon_sym_BSLASHSvolcite] = ACTIONS(12485), + [anon_sym_BSLASHtvolcite] = ACTIONS(12485), + [anon_sym_BSLASHTvolcite] = ACTIONS(12485), + [anon_sym_BSLASHavolcite] = ACTIONS(12485), + [anon_sym_BSLASHAvolcite] = ACTIONS(12485), + [anon_sym_BSLASHnotecite] = ACTIONS(12485), + [anon_sym_BSLASHpnotecite] = ACTIONS(12485), + [anon_sym_BSLASHPnotecite] = ACTIONS(12485), + [anon_sym_BSLASHfnotecite] = ACTIONS(12485), + [anon_sym_BSLASHusepackage] = ACTIONS(12485), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12485), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12485), + [anon_sym_BSLASHinclude] = ACTIONS(12485), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12485), + [anon_sym_BSLASHinput] = ACTIONS(12485), + [anon_sym_BSLASHsubfile] = ACTIONS(12485), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12485), + [anon_sym_BSLASHbibliography] = ACTIONS(12485), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12485), + [anon_sym_BSLASHincludesvg] = ACTIONS(12485), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12485), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12485), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12485), + [anon_sym_BSLASHimport] = ACTIONS(12485), + [anon_sym_BSLASHsubimport] = ACTIONS(12485), + [anon_sym_BSLASHinputfrom] = ACTIONS(12485), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12485), + [anon_sym_BSLASHincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHlabel] = ACTIONS(12485), + [anon_sym_BSLASHref] = ACTIONS(12485), + [anon_sym_BSLASHvref] = ACTIONS(12485), + [anon_sym_BSLASHVref] = ACTIONS(12485), + [anon_sym_BSLASHautoref] = ACTIONS(12485), + [anon_sym_BSLASHpageref] = ACTIONS(12485), + [anon_sym_BSLASHcref] = ACTIONS(12485), + [anon_sym_BSLASHCref] = ACTIONS(12485), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnameCref] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHlabelcref] = ACTIONS(12485), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12485), + [anon_sym_BSLASHeqref] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange] = ACTIONS(12485), + [anon_sym_BSLASHCrefrange] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewlabel] = ACTIONS(12485), + [anon_sym_BSLASHnewcommand] = ACTIONS(12485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12485), + [anon_sym_BSLASHgls] = ACTIONS(12485), + [anon_sym_BSLASHGls] = ACTIONS(12485), + [anon_sym_BSLASHGLS] = ACTIONS(12485), + [anon_sym_BSLASHglspl] = ACTIONS(12485), + [anon_sym_BSLASHGlspl] = ACTIONS(12485), + [anon_sym_BSLASHGLSpl] = ACTIONS(12485), + [anon_sym_BSLASHglsdisp] = ACTIONS(12485), + [anon_sym_BSLASHglslink] = ACTIONS(12485), + [anon_sym_BSLASHglstext] = ACTIONS(12485), + [anon_sym_BSLASHGlstext] = ACTIONS(12485), + [anon_sym_BSLASHGLStext] = ACTIONS(12485), + [anon_sym_BSLASHglsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12485), + [anon_sym_BSLASHglsplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSplural] = ACTIONS(12485), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHglsname] = ACTIONS(12485), + [anon_sym_BSLASHGlsname] = ACTIONS(12485), + [anon_sym_BSLASHGLSname] = ACTIONS(12485), + [anon_sym_BSLASHglssymbol] = ACTIONS(12485), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12485), + [anon_sym_BSLASHglsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12485), + [anon_sym_BSLASHglsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12485), + [anon_sym_BSLASHglsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12485), + [anon_sym_BSLASHglsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12485), + [anon_sym_BSLASHglsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12485), + [anon_sym_BSLASHnewacronym] = ACTIONS(12485), + [anon_sym_BSLASHacrshort] = ACTIONS(12485), + [anon_sym_BSLASHAcrshort] = ACTIONS(12485), + [anon_sym_BSLASHACRshort] = ACTIONS(12485), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12485), + [anon_sym_BSLASHacrlong] = ACTIONS(12485), + [anon_sym_BSLASHAcrlong] = ACTIONS(12485), + [anon_sym_BSLASHACRlong] = ACTIONS(12485), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12485), + [anon_sym_BSLASHacrfull] = ACTIONS(12485), + [anon_sym_BSLASHAcrfull] = ACTIONS(12485), + [anon_sym_BSLASHACRfull] = ACTIONS(12485), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12485), + [anon_sym_BSLASHacs] = ACTIONS(12485), + [anon_sym_BSLASHAcs] = ACTIONS(12485), + [anon_sym_BSLASHacsp] = ACTIONS(12485), + [anon_sym_BSLASHAcsp] = ACTIONS(12485), + [anon_sym_BSLASHacl] = ACTIONS(12485), + [anon_sym_BSLASHAcl] = ACTIONS(12485), + [anon_sym_BSLASHaclp] = ACTIONS(12485), + [anon_sym_BSLASHAclp] = ACTIONS(12485), + [anon_sym_BSLASHacf] = ACTIONS(12485), + [anon_sym_BSLASHAcf] = ACTIONS(12485), + [anon_sym_BSLASHacfp] = ACTIONS(12485), + [anon_sym_BSLASHAcfp] = ACTIONS(12485), + [anon_sym_BSLASHac] = ACTIONS(12485), + [anon_sym_BSLASHAc] = ACTIONS(12485), + [anon_sym_BSLASHacp] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12485), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12485), + [anon_sym_BSLASHcolor] = ACTIONS(12485), + [anon_sym_BSLASHcolorbox] = ACTIONS(12485), + [anon_sym_BSLASHtextcolor] = ACTIONS(12485), + [anon_sym_BSLASHpagecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12485), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12485), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12485), + }, + [950] = { + [sym_generic_command_name] = ACTIONS(12124), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12124), + [aux_sym_chapter_token1] = ACTIONS(12124), + [aux_sym_section_token1] = ACTIONS(12124), + [aux_sym_subsection_token1] = ACTIONS(12124), + [aux_sym_subsubsection_token1] = ACTIONS(12124), + [aux_sym_paragraph_token1] = ACTIONS(12124), + [aux_sym_subparagraph_token1] = ACTIONS(12124), + [anon_sym_BSLASHitem] = ACTIONS(12124), + [anon_sym_LBRACK] = ACTIONS(12122), + [anon_sym_LBRACE] = ACTIONS(12122), + [anon_sym_LPAREN] = ACTIONS(12122), + [anon_sym_COMMA] = ACTIONS(12122), + [anon_sym_EQ] = ACTIONS(12122), + [sym_word] = ACTIONS(12122), + [sym_param] = ACTIONS(12122), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12122), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12122), + [anon_sym_DOLLAR] = ACTIONS(12124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12122), + [anon_sym_BSLASHbegin] = ACTIONS(12124), + [anon_sym_BSLASHcaption] = ACTIONS(12124), + [anon_sym_BSLASHcite] = ACTIONS(12124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCite] = ACTIONS(12124), + [anon_sym_BSLASHnocite] = ACTIONS(12124), + [anon_sym_BSLASHcitet] = ACTIONS(12124), + [anon_sym_BSLASHcitep] = ACTIONS(12124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteauthor] = ACTIONS(12124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitetitle] = ACTIONS(12124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteyear] = ACTIONS(12124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitedate] = ACTIONS(12124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteurl] = ACTIONS(12124), + [anon_sym_BSLASHfullcite] = ACTIONS(12124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12124), + [anon_sym_BSLASHcitealt] = ACTIONS(12124), + [anon_sym_BSLASHcitealp] = ACTIONS(12124), + [anon_sym_BSLASHcitetext] = ACTIONS(12124), + [anon_sym_BSLASHparencite] = ACTIONS(12124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHParencite] = ACTIONS(12124), + [anon_sym_BSLASHfootcite] = ACTIONS(12124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12124), + [anon_sym_BSLASHtextcite] = ACTIONS(12124), + [anon_sym_BSLASHTextcite] = ACTIONS(12124), + [anon_sym_BSLASHsmartcite] = ACTIONS(12124), + [anon_sym_BSLASHSmartcite] = ACTIONS(12124), + [anon_sym_BSLASHsupercite] = ACTIONS(12124), + [anon_sym_BSLASHautocite] = ACTIONS(12124), + [anon_sym_BSLASHAutocite] = ACTIONS(12124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHvolcite] = ACTIONS(12124), + [anon_sym_BSLASHVolcite] = ACTIONS(12124), + [anon_sym_BSLASHpvolcite] = ACTIONS(12124), + [anon_sym_BSLASHPvolcite] = ACTIONS(12124), + [anon_sym_BSLASHfvolcite] = ACTIONS(12124), + [anon_sym_BSLASHftvolcite] = ACTIONS(12124), + [anon_sym_BSLASHsvolcite] = ACTIONS(12124), + [anon_sym_BSLASHSvolcite] = ACTIONS(12124), + [anon_sym_BSLASHtvolcite] = ACTIONS(12124), + [anon_sym_BSLASHTvolcite] = ACTIONS(12124), + [anon_sym_BSLASHavolcite] = ACTIONS(12124), + [anon_sym_BSLASHAvolcite] = ACTIONS(12124), + [anon_sym_BSLASHnotecite] = ACTIONS(12124), + [anon_sym_BSLASHpnotecite] = ACTIONS(12124), + [anon_sym_BSLASHPnotecite] = ACTIONS(12124), + [anon_sym_BSLASHfnotecite] = ACTIONS(12124), + [anon_sym_BSLASHusepackage] = ACTIONS(12124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12124), + [anon_sym_BSLASHinclude] = ACTIONS(12124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12124), + [anon_sym_BSLASHinput] = ACTIONS(12124), + [anon_sym_BSLASHsubfile] = ACTIONS(12124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12124), + [anon_sym_BSLASHbibliography] = ACTIONS(12124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12124), + [anon_sym_BSLASHincludesvg] = ACTIONS(12124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12124), + [anon_sym_BSLASHimport] = ACTIONS(12124), + [anon_sym_BSLASHsubimport] = ACTIONS(12124), + [anon_sym_BSLASHinputfrom] = ACTIONS(12124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12124), + [anon_sym_BSLASHincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHlabel] = ACTIONS(12124), + [anon_sym_BSLASHref] = ACTIONS(12124), + [anon_sym_BSLASHvref] = ACTIONS(12124), + [anon_sym_BSLASHVref] = ACTIONS(12124), + [anon_sym_BSLASHautoref] = ACTIONS(12124), + [anon_sym_BSLASHpageref] = ACTIONS(12124), + [anon_sym_BSLASHcref] = ACTIONS(12124), + [anon_sym_BSLASHCref] = ACTIONS(12124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnameCref] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHlabelcref] = ACTIONS(12124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12124), + [anon_sym_BSLASHeqref] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange] = ACTIONS(12124), + [anon_sym_BSLASHCrefrange] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewlabel] = ACTIONS(12124), + [anon_sym_BSLASHnewcommand] = ACTIONS(12124), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12124), + [anon_sym_BSLASHgls] = ACTIONS(12124), + [anon_sym_BSLASHGls] = ACTIONS(12124), + [anon_sym_BSLASHGLS] = ACTIONS(12124), + [anon_sym_BSLASHglspl] = ACTIONS(12124), + [anon_sym_BSLASHGlspl] = ACTIONS(12124), + [anon_sym_BSLASHGLSpl] = ACTIONS(12124), + [anon_sym_BSLASHglsdisp] = ACTIONS(12124), + [anon_sym_BSLASHglslink] = ACTIONS(12124), + [anon_sym_BSLASHglstext] = ACTIONS(12124), + [anon_sym_BSLASHGlstext] = ACTIONS(12124), + [anon_sym_BSLASHGLStext] = ACTIONS(12124), + [anon_sym_BSLASHglsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12124), + [anon_sym_BSLASHglsplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSplural] = ACTIONS(12124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHglsname] = ACTIONS(12124), + [anon_sym_BSLASHGlsname] = ACTIONS(12124), + [anon_sym_BSLASHGLSname] = ACTIONS(12124), + [anon_sym_BSLASHglssymbol] = ACTIONS(12124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12124), + [anon_sym_BSLASHglsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12124), + [anon_sym_BSLASHglsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12124), + [anon_sym_BSLASHglsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12124), + [anon_sym_BSLASHglsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12124), + [anon_sym_BSLASHglsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12124), + [anon_sym_BSLASHnewacronym] = ACTIONS(12124), + [anon_sym_BSLASHacrshort] = ACTIONS(12124), + [anon_sym_BSLASHAcrshort] = ACTIONS(12124), + [anon_sym_BSLASHACRshort] = ACTIONS(12124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12124), + [anon_sym_BSLASHacrlong] = ACTIONS(12124), + [anon_sym_BSLASHAcrlong] = ACTIONS(12124), + [anon_sym_BSLASHACRlong] = ACTIONS(12124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12124), + [anon_sym_BSLASHacrfull] = ACTIONS(12124), + [anon_sym_BSLASHAcrfull] = ACTIONS(12124), + [anon_sym_BSLASHACRfull] = ACTIONS(12124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12124), + [anon_sym_BSLASHacs] = ACTIONS(12124), + [anon_sym_BSLASHAcs] = ACTIONS(12124), + [anon_sym_BSLASHacsp] = ACTIONS(12124), + [anon_sym_BSLASHAcsp] = ACTIONS(12124), + [anon_sym_BSLASHacl] = ACTIONS(12124), + [anon_sym_BSLASHAcl] = ACTIONS(12124), + [anon_sym_BSLASHaclp] = ACTIONS(12124), + [anon_sym_BSLASHAclp] = ACTIONS(12124), + [anon_sym_BSLASHacf] = ACTIONS(12124), + [anon_sym_BSLASHAcf] = ACTIONS(12124), + [anon_sym_BSLASHacfp] = ACTIONS(12124), + [anon_sym_BSLASHAcfp] = ACTIONS(12124), + [anon_sym_BSLASHac] = ACTIONS(12124), + [anon_sym_BSLASHAc] = ACTIONS(12124), + [anon_sym_BSLASHacp] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12124), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12124), + [anon_sym_BSLASHcolor] = ACTIONS(12124), + [anon_sym_BSLASHcolorbox] = ACTIONS(12124), + [anon_sym_BSLASHtextcolor] = ACTIONS(12124), + [anon_sym_BSLASHpagecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12124), + }, + [951] = { + [sym_generic_command_name] = ACTIONS(12128), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12128), + [aux_sym_chapter_token1] = ACTIONS(12128), + [aux_sym_section_token1] = ACTIONS(12128), + [aux_sym_subsection_token1] = ACTIONS(12128), + [aux_sym_subsubsection_token1] = ACTIONS(12128), + [aux_sym_paragraph_token1] = ACTIONS(12128), + [aux_sym_subparagraph_token1] = ACTIONS(12128), + [anon_sym_BSLASHitem] = ACTIONS(12128), + [anon_sym_LBRACK] = ACTIONS(12126), + [anon_sym_LBRACE] = ACTIONS(12126), + [anon_sym_LPAREN] = ACTIONS(12126), + [anon_sym_COMMA] = ACTIONS(12126), + [anon_sym_EQ] = ACTIONS(12126), + [sym_word] = ACTIONS(12126), + [sym_param] = ACTIONS(12126), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12126), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12126), + [anon_sym_DOLLAR] = ACTIONS(12128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12126), + [anon_sym_BSLASHbegin] = ACTIONS(12128), + [anon_sym_BSLASHcaption] = ACTIONS(12128), + [anon_sym_BSLASHcite] = ACTIONS(12128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCite] = ACTIONS(12128), + [anon_sym_BSLASHnocite] = ACTIONS(12128), + [anon_sym_BSLASHcitet] = ACTIONS(12128), + [anon_sym_BSLASHcitep] = ACTIONS(12128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteauthor] = ACTIONS(12128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitetitle] = ACTIONS(12128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteyear] = ACTIONS(12128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitedate] = ACTIONS(12128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteurl] = ACTIONS(12128), + [anon_sym_BSLASHfullcite] = ACTIONS(12128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12128), + [anon_sym_BSLASHcitealt] = ACTIONS(12128), + [anon_sym_BSLASHcitealp] = ACTIONS(12128), + [anon_sym_BSLASHcitetext] = ACTIONS(12128), + [anon_sym_BSLASHparencite] = ACTIONS(12128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHParencite] = ACTIONS(12128), + [anon_sym_BSLASHfootcite] = ACTIONS(12128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12128), + [anon_sym_BSLASHtextcite] = ACTIONS(12128), + [anon_sym_BSLASHTextcite] = ACTIONS(12128), + [anon_sym_BSLASHsmartcite] = ACTIONS(12128), + [anon_sym_BSLASHSmartcite] = ACTIONS(12128), + [anon_sym_BSLASHsupercite] = ACTIONS(12128), + [anon_sym_BSLASHautocite] = ACTIONS(12128), + [anon_sym_BSLASHAutocite] = ACTIONS(12128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHvolcite] = ACTIONS(12128), + [anon_sym_BSLASHVolcite] = ACTIONS(12128), + [anon_sym_BSLASHpvolcite] = ACTIONS(12128), + [anon_sym_BSLASHPvolcite] = ACTIONS(12128), + [anon_sym_BSLASHfvolcite] = ACTIONS(12128), + [anon_sym_BSLASHftvolcite] = ACTIONS(12128), + [anon_sym_BSLASHsvolcite] = ACTIONS(12128), + [anon_sym_BSLASHSvolcite] = ACTIONS(12128), + [anon_sym_BSLASHtvolcite] = ACTIONS(12128), + [anon_sym_BSLASHTvolcite] = ACTIONS(12128), + [anon_sym_BSLASHavolcite] = ACTIONS(12128), + [anon_sym_BSLASHAvolcite] = ACTIONS(12128), + [anon_sym_BSLASHnotecite] = ACTIONS(12128), + [anon_sym_BSLASHpnotecite] = ACTIONS(12128), + [anon_sym_BSLASHPnotecite] = ACTIONS(12128), + [anon_sym_BSLASHfnotecite] = ACTIONS(12128), + [anon_sym_BSLASHusepackage] = ACTIONS(12128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12128), + [anon_sym_BSLASHinclude] = ACTIONS(12128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12128), + [anon_sym_BSLASHinput] = ACTIONS(12128), + [anon_sym_BSLASHsubfile] = ACTIONS(12128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12128), + [anon_sym_BSLASHbibliography] = ACTIONS(12128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12128), + [anon_sym_BSLASHincludesvg] = ACTIONS(12128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12128), + [anon_sym_BSLASHimport] = ACTIONS(12128), + [anon_sym_BSLASHsubimport] = ACTIONS(12128), + [anon_sym_BSLASHinputfrom] = ACTIONS(12128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12128), + [anon_sym_BSLASHincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHlabel] = ACTIONS(12128), + [anon_sym_BSLASHref] = ACTIONS(12128), + [anon_sym_BSLASHvref] = ACTIONS(12128), + [anon_sym_BSLASHVref] = ACTIONS(12128), + [anon_sym_BSLASHautoref] = ACTIONS(12128), + [anon_sym_BSLASHpageref] = ACTIONS(12128), + [anon_sym_BSLASHcref] = ACTIONS(12128), + [anon_sym_BSLASHCref] = ACTIONS(12128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnameCref] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHlabelcref] = ACTIONS(12128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12128), + [anon_sym_BSLASHeqref] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange] = ACTIONS(12128), + [anon_sym_BSLASHCrefrange] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewlabel] = ACTIONS(12128), + [anon_sym_BSLASHnewcommand] = ACTIONS(12128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12128), + [anon_sym_BSLASHgls] = ACTIONS(12128), + [anon_sym_BSLASHGls] = ACTIONS(12128), + [anon_sym_BSLASHGLS] = ACTIONS(12128), + [anon_sym_BSLASHglspl] = ACTIONS(12128), + [anon_sym_BSLASHGlspl] = ACTIONS(12128), + [anon_sym_BSLASHGLSpl] = ACTIONS(12128), + [anon_sym_BSLASHglsdisp] = ACTIONS(12128), + [anon_sym_BSLASHglslink] = ACTIONS(12128), + [anon_sym_BSLASHglstext] = ACTIONS(12128), + [anon_sym_BSLASHGlstext] = ACTIONS(12128), + [anon_sym_BSLASHGLStext] = ACTIONS(12128), + [anon_sym_BSLASHglsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12128), + [anon_sym_BSLASHglsplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSplural] = ACTIONS(12128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHglsname] = ACTIONS(12128), + [anon_sym_BSLASHGlsname] = ACTIONS(12128), + [anon_sym_BSLASHGLSname] = ACTIONS(12128), + [anon_sym_BSLASHglssymbol] = ACTIONS(12128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12128), + [anon_sym_BSLASHglsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12128), + [anon_sym_BSLASHglsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12128), + [anon_sym_BSLASHglsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12128), + [anon_sym_BSLASHglsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12128), + [anon_sym_BSLASHglsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12128), + [anon_sym_BSLASHnewacronym] = ACTIONS(12128), + [anon_sym_BSLASHacrshort] = ACTIONS(12128), + [anon_sym_BSLASHAcrshort] = ACTIONS(12128), + [anon_sym_BSLASHACRshort] = ACTIONS(12128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12128), + [anon_sym_BSLASHacrlong] = ACTIONS(12128), + [anon_sym_BSLASHAcrlong] = ACTIONS(12128), + [anon_sym_BSLASHACRlong] = ACTIONS(12128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12128), + [anon_sym_BSLASHacrfull] = ACTIONS(12128), + [anon_sym_BSLASHAcrfull] = ACTIONS(12128), + [anon_sym_BSLASHACRfull] = ACTIONS(12128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12128), + [anon_sym_BSLASHacs] = ACTIONS(12128), + [anon_sym_BSLASHAcs] = ACTIONS(12128), + [anon_sym_BSLASHacsp] = ACTIONS(12128), + [anon_sym_BSLASHAcsp] = ACTIONS(12128), + [anon_sym_BSLASHacl] = ACTIONS(12128), + [anon_sym_BSLASHAcl] = ACTIONS(12128), + [anon_sym_BSLASHaclp] = ACTIONS(12128), + [anon_sym_BSLASHAclp] = ACTIONS(12128), + [anon_sym_BSLASHacf] = ACTIONS(12128), + [anon_sym_BSLASHAcf] = ACTIONS(12128), + [anon_sym_BSLASHacfp] = ACTIONS(12128), + [anon_sym_BSLASHAcfp] = ACTIONS(12128), + [anon_sym_BSLASHac] = ACTIONS(12128), + [anon_sym_BSLASHAc] = ACTIONS(12128), + [anon_sym_BSLASHacp] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12128), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12128), + [anon_sym_BSLASHcolor] = ACTIONS(12128), + [anon_sym_BSLASHcolorbox] = ACTIONS(12128), + [anon_sym_BSLASHtextcolor] = ACTIONS(12128), + [anon_sym_BSLASHpagecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12128), + }, + [952] = { + [sym_generic_command_name] = ACTIONS(12132), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12132), + [aux_sym_chapter_token1] = ACTIONS(12132), + [aux_sym_section_token1] = ACTIONS(12132), + [aux_sym_subsection_token1] = ACTIONS(12132), + [aux_sym_subsubsection_token1] = ACTIONS(12132), + [aux_sym_paragraph_token1] = ACTIONS(12132), + [aux_sym_subparagraph_token1] = ACTIONS(12132), + [anon_sym_BSLASHitem] = ACTIONS(12132), + [anon_sym_LBRACK] = ACTIONS(12130), + [anon_sym_LBRACE] = ACTIONS(12130), + [anon_sym_LPAREN] = ACTIONS(12130), + [anon_sym_COMMA] = ACTIONS(12130), + [anon_sym_EQ] = ACTIONS(12130), + [sym_word] = ACTIONS(12130), + [sym_param] = ACTIONS(12130), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12130), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12130), + [anon_sym_DOLLAR] = ACTIONS(12132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12130), + [anon_sym_BSLASHbegin] = ACTIONS(12132), + [anon_sym_BSLASHcaption] = ACTIONS(12132), + [anon_sym_BSLASHcite] = ACTIONS(12132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCite] = ACTIONS(12132), + [anon_sym_BSLASHnocite] = ACTIONS(12132), + [anon_sym_BSLASHcitet] = ACTIONS(12132), + [anon_sym_BSLASHcitep] = ACTIONS(12132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteauthor] = ACTIONS(12132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitetitle] = ACTIONS(12132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteyear] = ACTIONS(12132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitedate] = ACTIONS(12132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteurl] = ACTIONS(12132), + [anon_sym_BSLASHfullcite] = ACTIONS(12132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12132), + [anon_sym_BSLASHcitealt] = ACTIONS(12132), + [anon_sym_BSLASHcitealp] = ACTIONS(12132), + [anon_sym_BSLASHcitetext] = ACTIONS(12132), + [anon_sym_BSLASHparencite] = ACTIONS(12132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHParencite] = ACTIONS(12132), + [anon_sym_BSLASHfootcite] = ACTIONS(12132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12132), + [anon_sym_BSLASHtextcite] = ACTIONS(12132), + [anon_sym_BSLASHTextcite] = ACTIONS(12132), + [anon_sym_BSLASHsmartcite] = ACTIONS(12132), + [anon_sym_BSLASHSmartcite] = ACTIONS(12132), + [anon_sym_BSLASHsupercite] = ACTIONS(12132), + [anon_sym_BSLASHautocite] = ACTIONS(12132), + [anon_sym_BSLASHAutocite] = ACTIONS(12132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHvolcite] = ACTIONS(12132), + [anon_sym_BSLASHVolcite] = ACTIONS(12132), + [anon_sym_BSLASHpvolcite] = ACTIONS(12132), + [anon_sym_BSLASHPvolcite] = ACTIONS(12132), + [anon_sym_BSLASHfvolcite] = ACTIONS(12132), + [anon_sym_BSLASHftvolcite] = ACTIONS(12132), + [anon_sym_BSLASHsvolcite] = ACTIONS(12132), + [anon_sym_BSLASHSvolcite] = ACTIONS(12132), + [anon_sym_BSLASHtvolcite] = ACTIONS(12132), + [anon_sym_BSLASHTvolcite] = ACTIONS(12132), + [anon_sym_BSLASHavolcite] = ACTIONS(12132), + [anon_sym_BSLASHAvolcite] = ACTIONS(12132), + [anon_sym_BSLASHnotecite] = ACTIONS(12132), + [anon_sym_BSLASHpnotecite] = ACTIONS(12132), + [anon_sym_BSLASHPnotecite] = ACTIONS(12132), + [anon_sym_BSLASHfnotecite] = ACTIONS(12132), + [anon_sym_BSLASHusepackage] = ACTIONS(12132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12132), + [anon_sym_BSLASHinclude] = ACTIONS(12132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12132), + [anon_sym_BSLASHinput] = ACTIONS(12132), + [anon_sym_BSLASHsubfile] = ACTIONS(12132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12132), + [anon_sym_BSLASHbibliography] = ACTIONS(12132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12132), + [anon_sym_BSLASHincludesvg] = ACTIONS(12132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12132), + [anon_sym_BSLASHimport] = ACTIONS(12132), + [anon_sym_BSLASHsubimport] = ACTIONS(12132), + [anon_sym_BSLASHinputfrom] = ACTIONS(12132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12132), + [anon_sym_BSLASHincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHlabel] = ACTIONS(12132), + [anon_sym_BSLASHref] = ACTIONS(12132), + [anon_sym_BSLASHvref] = ACTIONS(12132), + [anon_sym_BSLASHVref] = ACTIONS(12132), + [anon_sym_BSLASHautoref] = ACTIONS(12132), + [anon_sym_BSLASHpageref] = ACTIONS(12132), + [anon_sym_BSLASHcref] = ACTIONS(12132), + [anon_sym_BSLASHCref] = ACTIONS(12132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnameCref] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHlabelcref] = ACTIONS(12132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12132), + [anon_sym_BSLASHeqref] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange] = ACTIONS(12132), + [anon_sym_BSLASHCrefrange] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewlabel] = ACTIONS(12132), + [anon_sym_BSLASHnewcommand] = ACTIONS(12132), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12132), + [anon_sym_BSLASHgls] = ACTIONS(12132), + [anon_sym_BSLASHGls] = ACTIONS(12132), + [anon_sym_BSLASHGLS] = ACTIONS(12132), + [anon_sym_BSLASHglspl] = ACTIONS(12132), + [anon_sym_BSLASHGlspl] = ACTIONS(12132), + [anon_sym_BSLASHGLSpl] = ACTIONS(12132), + [anon_sym_BSLASHglsdisp] = ACTIONS(12132), + [anon_sym_BSLASHglslink] = ACTIONS(12132), + [anon_sym_BSLASHglstext] = ACTIONS(12132), + [anon_sym_BSLASHGlstext] = ACTIONS(12132), + [anon_sym_BSLASHGLStext] = ACTIONS(12132), + [anon_sym_BSLASHglsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12132), + [anon_sym_BSLASHglsplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSplural] = ACTIONS(12132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHglsname] = ACTIONS(12132), + [anon_sym_BSLASHGlsname] = ACTIONS(12132), + [anon_sym_BSLASHGLSname] = ACTIONS(12132), + [anon_sym_BSLASHglssymbol] = ACTIONS(12132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12132), + [anon_sym_BSLASHglsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12132), + [anon_sym_BSLASHglsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12132), + [anon_sym_BSLASHglsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12132), + [anon_sym_BSLASHglsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12132), + [anon_sym_BSLASHglsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12132), + [anon_sym_BSLASHnewacronym] = ACTIONS(12132), + [anon_sym_BSLASHacrshort] = ACTIONS(12132), + [anon_sym_BSLASHAcrshort] = ACTIONS(12132), + [anon_sym_BSLASHACRshort] = ACTIONS(12132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12132), + [anon_sym_BSLASHacrlong] = ACTIONS(12132), + [anon_sym_BSLASHAcrlong] = ACTIONS(12132), + [anon_sym_BSLASHACRlong] = ACTIONS(12132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12132), + [anon_sym_BSLASHacrfull] = ACTIONS(12132), + [anon_sym_BSLASHAcrfull] = ACTIONS(12132), + [anon_sym_BSLASHACRfull] = ACTIONS(12132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12132), + [anon_sym_BSLASHacs] = ACTIONS(12132), + [anon_sym_BSLASHAcs] = ACTIONS(12132), + [anon_sym_BSLASHacsp] = ACTIONS(12132), + [anon_sym_BSLASHAcsp] = ACTIONS(12132), + [anon_sym_BSLASHacl] = ACTIONS(12132), + [anon_sym_BSLASHAcl] = ACTIONS(12132), + [anon_sym_BSLASHaclp] = ACTIONS(12132), + [anon_sym_BSLASHAclp] = ACTIONS(12132), + [anon_sym_BSLASHacf] = ACTIONS(12132), + [anon_sym_BSLASHAcf] = ACTIONS(12132), + [anon_sym_BSLASHacfp] = ACTIONS(12132), + [anon_sym_BSLASHAcfp] = ACTIONS(12132), + [anon_sym_BSLASHac] = ACTIONS(12132), + [anon_sym_BSLASHAc] = ACTIONS(12132), + [anon_sym_BSLASHacp] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12132), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12132), + [anon_sym_BSLASHcolor] = ACTIONS(12132), + [anon_sym_BSLASHcolorbox] = ACTIONS(12132), + [anon_sym_BSLASHtextcolor] = ACTIONS(12132), + [anon_sym_BSLASHpagecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12132), + }, + [953] = { + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(123), + [aux_sym_chapter_token1] = ACTIONS(123), + [aux_sym_section_token1] = ACTIONS(123), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [954] = { + [sym_brace_group] = STATE(3174), + [sym_generic_command_name] = ACTIONS(12058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12058), + [aux_sym_subsection_token1] = ACTIONS(12058), + [aux_sym_subsubsection_token1] = ACTIONS(12058), + [aux_sym_paragraph_token1] = ACTIONS(12058), + [aux_sym_subparagraph_token1] = ACTIONS(12058), + [anon_sym_BSLASHitem] = ACTIONS(12058), + [anon_sym_LBRACK] = ACTIONS(12056), + [anon_sym_RBRACK] = ACTIONS(12056), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12056), + [anon_sym_LPAREN] = ACTIONS(12056), + [anon_sym_COMMA] = ACTIONS(12056), + [anon_sym_EQ] = ACTIONS(12056), + [sym_word] = ACTIONS(12056), + [sym_param] = ACTIONS(12056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12056), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12056), + [anon_sym_DOLLAR] = ACTIONS(12058), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12056), + [anon_sym_BSLASHbegin] = ACTIONS(12058), + [anon_sym_BSLASHcaption] = ACTIONS(12058), + [anon_sym_BSLASHcite] = ACTIONS(12058), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCite] = ACTIONS(12058), + [anon_sym_BSLASHnocite] = ACTIONS(12058), + [anon_sym_BSLASHcitet] = ACTIONS(12058), + [anon_sym_BSLASHcitep] = ACTIONS(12058), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteauthor] = ACTIONS(12058), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12058), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitetitle] = ACTIONS(12058), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteyear] = ACTIONS(12058), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitedate] = ACTIONS(12058), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteurl] = ACTIONS(12058), + [anon_sym_BSLASHfullcite] = ACTIONS(12058), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12058), + [anon_sym_BSLASHcitealt] = ACTIONS(12058), + [anon_sym_BSLASHcitealp] = ACTIONS(12058), + [anon_sym_BSLASHcitetext] = ACTIONS(12058), + [anon_sym_BSLASHparencite] = ACTIONS(12058), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHParencite] = ACTIONS(12058), + [anon_sym_BSLASHfootcite] = ACTIONS(12058), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12058), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12058), + [anon_sym_BSLASHtextcite] = ACTIONS(12058), + [anon_sym_BSLASHTextcite] = ACTIONS(12058), + [anon_sym_BSLASHsmartcite] = ACTIONS(12058), + [anon_sym_BSLASHSmartcite] = ACTIONS(12058), + [anon_sym_BSLASHsupercite] = ACTIONS(12058), + [anon_sym_BSLASHautocite] = ACTIONS(12058), + [anon_sym_BSLASHAutocite] = ACTIONS(12058), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHvolcite] = ACTIONS(12058), + [anon_sym_BSLASHVolcite] = ACTIONS(12058), + [anon_sym_BSLASHpvolcite] = ACTIONS(12058), + [anon_sym_BSLASHPvolcite] = ACTIONS(12058), + [anon_sym_BSLASHfvolcite] = ACTIONS(12058), + [anon_sym_BSLASHftvolcite] = ACTIONS(12058), + [anon_sym_BSLASHsvolcite] = ACTIONS(12058), + [anon_sym_BSLASHSvolcite] = ACTIONS(12058), + [anon_sym_BSLASHtvolcite] = ACTIONS(12058), + [anon_sym_BSLASHTvolcite] = ACTIONS(12058), + [anon_sym_BSLASHavolcite] = ACTIONS(12058), + [anon_sym_BSLASHAvolcite] = ACTIONS(12058), + [anon_sym_BSLASHnotecite] = ACTIONS(12058), + [anon_sym_BSLASHpnotecite] = ACTIONS(12058), + [anon_sym_BSLASHPnotecite] = ACTIONS(12058), + [anon_sym_BSLASHfnotecite] = ACTIONS(12058), + [anon_sym_BSLASHusepackage] = ACTIONS(12058), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12058), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12058), + [anon_sym_BSLASHinclude] = ACTIONS(12058), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12058), + [anon_sym_BSLASHinput] = ACTIONS(12058), + [anon_sym_BSLASHsubfile] = ACTIONS(12058), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12058), + [anon_sym_BSLASHbibliography] = ACTIONS(12058), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12058), + [anon_sym_BSLASHincludesvg] = ACTIONS(12058), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12058), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12058), + [anon_sym_BSLASHimport] = ACTIONS(12058), + [anon_sym_BSLASHsubimport] = ACTIONS(12058), + [anon_sym_BSLASHinputfrom] = ACTIONS(12058), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12058), + [anon_sym_BSLASHincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHlabel] = ACTIONS(12058), + [anon_sym_BSLASHref] = ACTIONS(12058), + [anon_sym_BSLASHvref] = ACTIONS(12058), + [anon_sym_BSLASHVref] = ACTIONS(12058), + [anon_sym_BSLASHautoref] = ACTIONS(12058), + [anon_sym_BSLASHpageref] = ACTIONS(12058), + [anon_sym_BSLASHcref] = ACTIONS(12058), + [anon_sym_BSLASHCref] = ACTIONS(12058), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnameCref] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHlabelcref] = ACTIONS(12058), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12058), + [anon_sym_BSLASHeqref] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange] = ACTIONS(12058), + [anon_sym_BSLASHCrefrange] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewlabel] = ACTIONS(12058), + [anon_sym_BSLASHnewcommand] = ACTIONS(12058), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12058), + [anon_sym_BSLASHgls] = ACTIONS(12058), + [anon_sym_BSLASHGls] = ACTIONS(12058), + [anon_sym_BSLASHGLS] = ACTIONS(12058), + [anon_sym_BSLASHglspl] = ACTIONS(12058), + [anon_sym_BSLASHGlspl] = ACTIONS(12058), + [anon_sym_BSLASHGLSpl] = ACTIONS(12058), + [anon_sym_BSLASHglsdisp] = ACTIONS(12058), + [anon_sym_BSLASHglslink] = ACTIONS(12058), + [anon_sym_BSLASHglstext] = ACTIONS(12058), + [anon_sym_BSLASHGlstext] = ACTIONS(12058), + [anon_sym_BSLASHGLStext] = ACTIONS(12058), + [anon_sym_BSLASHglsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12058), + [anon_sym_BSLASHglsplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSplural] = ACTIONS(12058), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHglsname] = ACTIONS(12058), + [anon_sym_BSLASHGlsname] = ACTIONS(12058), + [anon_sym_BSLASHGLSname] = ACTIONS(12058), + [anon_sym_BSLASHglssymbol] = ACTIONS(12058), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12058), + [anon_sym_BSLASHglsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12058), + [anon_sym_BSLASHglsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12058), + [anon_sym_BSLASHglsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12058), + [anon_sym_BSLASHglsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12058), + [anon_sym_BSLASHglsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12058), + [anon_sym_BSLASHnewacronym] = ACTIONS(12058), + [anon_sym_BSLASHacrshort] = ACTIONS(12058), + [anon_sym_BSLASHAcrshort] = ACTIONS(12058), + [anon_sym_BSLASHACRshort] = ACTIONS(12058), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12058), + [anon_sym_BSLASHacrlong] = ACTIONS(12058), + [anon_sym_BSLASHAcrlong] = ACTIONS(12058), + [anon_sym_BSLASHACRlong] = ACTIONS(12058), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12058), + [anon_sym_BSLASHacrfull] = ACTIONS(12058), + [anon_sym_BSLASHAcrfull] = ACTIONS(12058), + [anon_sym_BSLASHACRfull] = ACTIONS(12058), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12058), + [anon_sym_BSLASHacs] = ACTIONS(12058), + [anon_sym_BSLASHAcs] = ACTIONS(12058), + [anon_sym_BSLASHacsp] = ACTIONS(12058), + [anon_sym_BSLASHAcsp] = ACTIONS(12058), + [anon_sym_BSLASHacl] = ACTIONS(12058), + [anon_sym_BSLASHAcl] = ACTIONS(12058), + [anon_sym_BSLASHaclp] = ACTIONS(12058), + [anon_sym_BSLASHAclp] = ACTIONS(12058), + [anon_sym_BSLASHacf] = ACTIONS(12058), + [anon_sym_BSLASHAcf] = ACTIONS(12058), + [anon_sym_BSLASHacfp] = ACTIONS(12058), + [anon_sym_BSLASHAcfp] = ACTIONS(12058), + [anon_sym_BSLASHac] = ACTIONS(12058), + [anon_sym_BSLASHAc] = ACTIONS(12058), + [anon_sym_BSLASHacp] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12058), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12058), + [anon_sym_BSLASHcolor] = ACTIONS(12058), + [anon_sym_BSLASHcolorbox] = ACTIONS(12058), + [anon_sym_BSLASHtextcolor] = ACTIONS(12058), + [anon_sym_BSLASHpagecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12058), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12058), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12058), + }, + [955] = { + [sym_generic_command_name] = ACTIONS(12136), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12136), + [aux_sym_chapter_token1] = ACTIONS(12136), + [aux_sym_section_token1] = ACTIONS(12136), + [aux_sym_subsection_token1] = ACTIONS(12136), + [aux_sym_subsubsection_token1] = ACTIONS(12136), + [aux_sym_paragraph_token1] = ACTIONS(12136), + [aux_sym_subparagraph_token1] = ACTIONS(12136), + [anon_sym_BSLASHitem] = ACTIONS(12136), + [anon_sym_LBRACK] = ACTIONS(12134), + [anon_sym_LBRACE] = ACTIONS(12134), + [anon_sym_LPAREN] = ACTIONS(12134), + [anon_sym_COMMA] = ACTIONS(12134), + [anon_sym_EQ] = ACTIONS(12134), + [sym_word] = ACTIONS(12134), + [sym_param] = ACTIONS(12134), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12134), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12134), + [anon_sym_DOLLAR] = ACTIONS(12136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12134), + [anon_sym_BSLASHbegin] = ACTIONS(12136), + [anon_sym_BSLASHcaption] = ACTIONS(12136), + [anon_sym_BSLASHcite] = ACTIONS(12136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCite] = ACTIONS(12136), + [anon_sym_BSLASHnocite] = ACTIONS(12136), + [anon_sym_BSLASHcitet] = ACTIONS(12136), + [anon_sym_BSLASHcitep] = ACTIONS(12136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteauthor] = ACTIONS(12136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitetitle] = ACTIONS(12136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteyear] = ACTIONS(12136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitedate] = ACTIONS(12136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteurl] = ACTIONS(12136), + [anon_sym_BSLASHfullcite] = ACTIONS(12136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12136), + [anon_sym_BSLASHcitealt] = ACTIONS(12136), + [anon_sym_BSLASHcitealp] = ACTIONS(12136), + [anon_sym_BSLASHcitetext] = ACTIONS(12136), + [anon_sym_BSLASHparencite] = ACTIONS(12136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHParencite] = ACTIONS(12136), + [anon_sym_BSLASHfootcite] = ACTIONS(12136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12136), + [anon_sym_BSLASHtextcite] = ACTIONS(12136), + [anon_sym_BSLASHTextcite] = ACTIONS(12136), + [anon_sym_BSLASHsmartcite] = ACTIONS(12136), + [anon_sym_BSLASHSmartcite] = ACTIONS(12136), + [anon_sym_BSLASHsupercite] = ACTIONS(12136), + [anon_sym_BSLASHautocite] = ACTIONS(12136), + [anon_sym_BSLASHAutocite] = ACTIONS(12136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHvolcite] = ACTIONS(12136), + [anon_sym_BSLASHVolcite] = ACTIONS(12136), + [anon_sym_BSLASHpvolcite] = ACTIONS(12136), + [anon_sym_BSLASHPvolcite] = ACTIONS(12136), + [anon_sym_BSLASHfvolcite] = ACTIONS(12136), + [anon_sym_BSLASHftvolcite] = ACTIONS(12136), + [anon_sym_BSLASHsvolcite] = ACTIONS(12136), + [anon_sym_BSLASHSvolcite] = ACTIONS(12136), + [anon_sym_BSLASHtvolcite] = ACTIONS(12136), + [anon_sym_BSLASHTvolcite] = ACTIONS(12136), + [anon_sym_BSLASHavolcite] = ACTIONS(12136), + [anon_sym_BSLASHAvolcite] = ACTIONS(12136), + [anon_sym_BSLASHnotecite] = ACTIONS(12136), + [anon_sym_BSLASHpnotecite] = ACTIONS(12136), + [anon_sym_BSLASHPnotecite] = ACTIONS(12136), + [anon_sym_BSLASHfnotecite] = ACTIONS(12136), + [anon_sym_BSLASHusepackage] = ACTIONS(12136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12136), + [anon_sym_BSLASHinclude] = ACTIONS(12136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12136), + [anon_sym_BSLASHinput] = ACTIONS(12136), + [anon_sym_BSLASHsubfile] = ACTIONS(12136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12136), + [anon_sym_BSLASHbibliography] = ACTIONS(12136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12136), + [anon_sym_BSLASHincludesvg] = ACTIONS(12136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12136), + [anon_sym_BSLASHimport] = ACTIONS(12136), + [anon_sym_BSLASHsubimport] = ACTIONS(12136), + [anon_sym_BSLASHinputfrom] = ACTIONS(12136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12136), + [anon_sym_BSLASHincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHlabel] = ACTIONS(12136), + [anon_sym_BSLASHref] = ACTIONS(12136), + [anon_sym_BSLASHvref] = ACTIONS(12136), + [anon_sym_BSLASHVref] = ACTIONS(12136), + [anon_sym_BSLASHautoref] = ACTIONS(12136), + [anon_sym_BSLASHpageref] = ACTIONS(12136), + [anon_sym_BSLASHcref] = ACTIONS(12136), + [anon_sym_BSLASHCref] = ACTIONS(12136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnameCref] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHlabelcref] = ACTIONS(12136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12136), + [anon_sym_BSLASHeqref] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange] = ACTIONS(12136), + [anon_sym_BSLASHCrefrange] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewlabel] = ACTIONS(12136), + [anon_sym_BSLASHnewcommand] = ACTIONS(12136), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12136), + [anon_sym_BSLASHgls] = ACTIONS(12136), + [anon_sym_BSLASHGls] = ACTIONS(12136), + [anon_sym_BSLASHGLS] = ACTIONS(12136), + [anon_sym_BSLASHglspl] = ACTIONS(12136), + [anon_sym_BSLASHGlspl] = ACTIONS(12136), + [anon_sym_BSLASHGLSpl] = ACTIONS(12136), + [anon_sym_BSLASHglsdisp] = ACTIONS(12136), + [anon_sym_BSLASHglslink] = ACTIONS(12136), + [anon_sym_BSLASHglstext] = ACTIONS(12136), + [anon_sym_BSLASHGlstext] = ACTIONS(12136), + [anon_sym_BSLASHGLStext] = ACTIONS(12136), + [anon_sym_BSLASHglsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12136), + [anon_sym_BSLASHglsplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSplural] = ACTIONS(12136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHglsname] = ACTIONS(12136), + [anon_sym_BSLASHGlsname] = ACTIONS(12136), + [anon_sym_BSLASHGLSname] = ACTIONS(12136), + [anon_sym_BSLASHglssymbol] = ACTIONS(12136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12136), + [anon_sym_BSLASHglsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12136), + [anon_sym_BSLASHglsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12136), + [anon_sym_BSLASHglsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12136), + [anon_sym_BSLASHglsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12136), + [anon_sym_BSLASHglsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12136), + [anon_sym_BSLASHnewacronym] = ACTIONS(12136), + [anon_sym_BSLASHacrshort] = ACTIONS(12136), + [anon_sym_BSLASHAcrshort] = ACTIONS(12136), + [anon_sym_BSLASHACRshort] = ACTIONS(12136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12136), + [anon_sym_BSLASHacrlong] = ACTIONS(12136), + [anon_sym_BSLASHAcrlong] = ACTIONS(12136), + [anon_sym_BSLASHACRlong] = ACTIONS(12136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12136), + [anon_sym_BSLASHacrfull] = ACTIONS(12136), + [anon_sym_BSLASHAcrfull] = ACTIONS(12136), + [anon_sym_BSLASHACRfull] = ACTIONS(12136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12136), + [anon_sym_BSLASHacs] = ACTIONS(12136), + [anon_sym_BSLASHAcs] = ACTIONS(12136), + [anon_sym_BSLASHacsp] = ACTIONS(12136), + [anon_sym_BSLASHAcsp] = ACTIONS(12136), + [anon_sym_BSLASHacl] = ACTIONS(12136), + [anon_sym_BSLASHAcl] = ACTIONS(12136), + [anon_sym_BSLASHaclp] = ACTIONS(12136), + [anon_sym_BSLASHAclp] = ACTIONS(12136), + [anon_sym_BSLASHacf] = ACTIONS(12136), + [anon_sym_BSLASHAcf] = ACTIONS(12136), + [anon_sym_BSLASHacfp] = ACTIONS(12136), + [anon_sym_BSLASHAcfp] = ACTIONS(12136), + [anon_sym_BSLASHac] = ACTIONS(12136), + [anon_sym_BSLASHAc] = ACTIONS(12136), + [anon_sym_BSLASHacp] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12136), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12136), + [anon_sym_BSLASHcolor] = ACTIONS(12136), + [anon_sym_BSLASHcolorbox] = ACTIONS(12136), + [anon_sym_BSLASHtextcolor] = ACTIONS(12136), + [anon_sym_BSLASHpagecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12136), + }, + [956] = { + [sym_generic_command_name] = ACTIONS(12140), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12140), + [aux_sym_chapter_token1] = ACTIONS(12140), + [aux_sym_section_token1] = ACTIONS(12140), + [aux_sym_subsection_token1] = ACTIONS(12140), + [aux_sym_subsubsection_token1] = ACTIONS(12140), + [aux_sym_paragraph_token1] = ACTIONS(12140), + [aux_sym_subparagraph_token1] = ACTIONS(12140), + [anon_sym_BSLASHitem] = ACTIONS(12140), + [anon_sym_LBRACK] = ACTIONS(12138), + [anon_sym_LBRACE] = ACTIONS(12138), + [anon_sym_LPAREN] = ACTIONS(12138), + [anon_sym_COMMA] = ACTIONS(12138), + [anon_sym_EQ] = ACTIONS(12138), + [sym_word] = ACTIONS(12138), + [sym_param] = ACTIONS(12138), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12138), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12138), + [anon_sym_DOLLAR] = ACTIONS(12140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12138), + [anon_sym_BSLASHbegin] = ACTIONS(12140), + [anon_sym_BSLASHcaption] = ACTIONS(12140), + [anon_sym_BSLASHcite] = ACTIONS(12140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCite] = ACTIONS(12140), + [anon_sym_BSLASHnocite] = ACTIONS(12140), + [anon_sym_BSLASHcitet] = ACTIONS(12140), + [anon_sym_BSLASHcitep] = ACTIONS(12140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteauthor] = ACTIONS(12140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitetitle] = ACTIONS(12140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteyear] = ACTIONS(12140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitedate] = ACTIONS(12140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteurl] = ACTIONS(12140), + [anon_sym_BSLASHfullcite] = ACTIONS(12140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12140), + [anon_sym_BSLASHcitealt] = ACTIONS(12140), + [anon_sym_BSLASHcitealp] = ACTIONS(12140), + [anon_sym_BSLASHcitetext] = ACTIONS(12140), + [anon_sym_BSLASHparencite] = ACTIONS(12140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHParencite] = ACTIONS(12140), + [anon_sym_BSLASHfootcite] = ACTIONS(12140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12140), + [anon_sym_BSLASHtextcite] = ACTIONS(12140), + [anon_sym_BSLASHTextcite] = ACTIONS(12140), + [anon_sym_BSLASHsmartcite] = ACTIONS(12140), + [anon_sym_BSLASHSmartcite] = ACTIONS(12140), + [anon_sym_BSLASHsupercite] = ACTIONS(12140), + [anon_sym_BSLASHautocite] = ACTIONS(12140), + [anon_sym_BSLASHAutocite] = ACTIONS(12140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHvolcite] = ACTIONS(12140), + [anon_sym_BSLASHVolcite] = ACTIONS(12140), + [anon_sym_BSLASHpvolcite] = ACTIONS(12140), + [anon_sym_BSLASHPvolcite] = ACTIONS(12140), + [anon_sym_BSLASHfvolcite] = ACTIONS(12140), + [anon_sym_BSLASHftvolcite] = ACTIONS(12140), + [anon_sym_BSLASHsvolcite] = ACTIONS(12140), + [anon_sym_BSLASHSvolcite] = ACTIONS(12140), + [anon_sym_BSLASHtvolcite] = ACTIONS(12140), + [anon_sym_BSLASHTvolcite] = ACTIONS(12140), + [anon_sym_BSLASHavolcite] = ACTIONS(12140), + [anon_sym_BSLASHAvolcite] = ACTIONS(12140), + [anon_sym_BSLASHnotecite] = ACTIONS(12140), + [anon_sym_BSLASHpnotecite] = ACTIONS(12140), + [anon_sym_BSLASHPnotecite] = ACTIONS(12140), + [anon_sym_BSLASHfnotecite] = ACTIONS(12140), + [anon_sym_BSLASHusepackage] = ACTIONS(12140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12140), + [anon_sym_BSLASHinclude] = ACTIONS(12140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12140), + [anon_sym_BSLASHinput] = ACTIONS(12140), + [anon_sym_BSLASHsubfile] = ACTIONS(12140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12140), + [anon_sym_BSLASHbibliography] = ACTIONS(12140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12140), + [anon_sym_BSLASHincludesvg] = ACTIONS(12140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12140), + [anon_sym_BSLASHimport] = ACTIONS(12140), + [anon_sym_BSLASHsubimport] = ACTIONS(12140), + [anon_sym_BSLASHinputfrom] = ACTIONS(12140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12140), + [anon_sym_BSLASHincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHlabel] = ACTIONS(12140), + [anon_sym_BSLASHref] = ACTIONS(12140), + [anon_sym_BSLASHvref] = ACTIONS(12140), + [anon_sym_BSLASHVref] = ACTIONS(12140), + [anon_sym_BSLASHautoref] = ACTIONS(12140), + [anon_sym_BSLASHpageref] = ACTIONS(12140), + [anon_sym_BSLASHcref] = ACTIONS(12140), + [anon_sym_BSLASHCref] = ACTIONS(12140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnameCref] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHlabelcref] = ACTIONS(12140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12140), + [anon_sym_BSLASHeqref] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange] = ACTIONS(12140), + [anon_sym_BSLASHCrefrange] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewlabel] = ACTIONS(12140), + [anon_sym_BSLASHnewcommand] = ACTIONS(12140), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12140), + [anon_sym_BSLASHgls] = ACTIONS(12140), + [anon_sym_BSLASHGls] = ACTIONS(12140), + [anon_sym_BSLASHGLS] = ACTIONS(12140), + [anon_sym_BSLASHglspl] = ACTIONS(12140), + [anon_sym_BSLASHGlspl] = ACTIONS(12140), + [anon_sym_BSLASHGLSpl] = ACTIONS(12140), + [anon_sym_BSLASHglsdisp] = ACTIONS(12140), + [anon_sym_BSLASHglslink] = ACTIONS(12140), + [anon_sym_BSLASHglstext] = ACTIONS(12140), + [anon_sym_BSLASHGlstext] = ACTIONS(12140), + [anon_sym_BSLASHGLStext] = ACTIONS(12140), + [anon_sym_BSLASHglsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12140), + [anon_sym_BSLASHglsplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSplural] = ACTIONS(12140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHglsname] = ACTIONS(12140), + [anon_sym_BSLASHGlsname] = ACTIONS(12140), + [anon_sym_BSLASHGLSname] = ACTIONS(12140), + [anon_sym_BSLASHglssymbol] = ACTIONS(12140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12140), + [anon_sym_BSLASHglsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12140), + [anon_sym_BSLASHglsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12140), + [anon_sym_BSLASHglsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12140), + [anon_sym_BSLASHglsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12140), + [anon_sym_BSLASHglsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12140), + [anon_sym_BSLASHnewacronym] = ACTIONS(12140), + [anon_sym_BSLASHacrshort] = ACTIONS(12140), + [anon_sym_BSLASHAcrshort] = ACTIONS(12140), + [anon_sym_BSLASHACRshort] = ACTIONS(12140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12140), + [anon_sym_BSLASHacrlong] = ACTIONS(12140), + [anon_sym_BSLASHAcrlong] = ACTIONS(12140), + [anon_sym_BSLASHACRlong] = ACTIONS(12140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12140), + [anon_sym_BSLASHacrfull] = ACTIONS(12140), + [anon_sym_BSLASHAcrfull] = ACTIONS(12140), + [anon_sym_BSLASHACRfull] = ACTIONS(12140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12140), + [anon_sym_BSLASHacs] = ACTIONS(12140), + [anon_sym_BSLASHAcs] = ACTIONS(12140), + [anon_sym_BSLASHacsp] = ACTIONS(12140), + [anon_sym_BSLASHAcsp] = ACTIONS(12140), + [anon_sym_BSLASHacl] = ACTIONS(12140), + [anon_sym_BSLASHAcl] = ACTIONS(12140), + [anon_sym_BSLASHaclp] = ACTIONS(12140), + [anon_sym_BSLASHAclp] = ACTIONS(12140), + [anon_sym_BSLASHacf] = ACTIONS(12140), + [anon_sym_BSLASHAcf] = ACTIONS(12140), + [anon_sym_BSLASHacfp] = ACTIONS(12140), + [anon_sym_BSLASHAcfp] = ACTIONS(12140), + [anon_sym_BSLASHac] = ACTIONS(12140), + [anon_sym_BSLASHAc] = ACTIONS(12140), + [anon_sym_BSLASHacp] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12140), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12140), + [anon_sym_BSLASHcolor] = ACTIONS(12140), + [anon_sym_BSLASHcolorbox] = ACTIONS(12140), + [anon_sym_BSLASHtextcolor] = ACTIONS(12140), + [anon_sym_BSLASHpagecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12140), + }, + [957] = { + [sym_generic_command_name] = ACTIONS(12144), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12144), + [aux_sym_chapter_token1] = ACTIONS(12144), + [aux_sym_section_token1] = ACTIONS(12144), + [aux_sym_subsection_token1] = ACTIONS(12144), + [aux_sym_subsubsection_token1] = ACTIONS(12144), + [aux_sym_paragraph_token1] = ACTIONS(12144), + [aux_sym_subparagraph_token1] = ACTIONS(12144), + [anon_sym_BSLASHitem] = ACTIONS(12144), + [anon_sym_LBRACK] = ACTIONS(12142), + [anon_sym_LBRACE] = ACTIONS(12142), + [anon_sym_LPAREN] = ACTIONS(12142), + [anon_sym_COMMA] = ACTIONS(12142), + [anon_sym_EQ] = ACTIONS(12142), + [sym_word] = ACTIONS(12142), + [sym_param] = ACTIONS(12142), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12142), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12142), + [anon_sym_DOLLAR] = ACTIONS(12144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12142), + [anon_sym_BSLASHbegin] = ACTIONS(12144), + [anon_sym_BSLASHcaption] = ACTIONS(12144), + [anon_sym_BSLASHcite] = ACTIONS(12144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCite] = ACTIONS(12144), + [anon_sym_BSLASHnocite] = ACTIONS(12144), + [anon_sym_BSLASHcitet] = ACTIONS(12144), + [anon_sym_BSLASHcitep] = ACTIONS(12144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteauthor] = ACTIONS(12144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitetitle] = ACTIONS(12144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteyear] = ACTIONS(12144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitedate] = ACTIONS(12144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteurl] = ACTIONS(12144), + [anon_sym_BSLASHfullcite] = ACTIONS(12144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12144), + [anon_sym_BSLASHcitealt] = ACTIONS(12144), + [anon_sym_BSLASHcitealp] = ACTIONS(12144), + [anon_sym_BSLASHcitetext] = ACTIONS(12144), + [anon_sym_BSLASHparencite] = ACTIONS(12144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHParencite] = ACTIONS(12144), + [anon_sym_BSLASHfootcite] = ACTIONS(12144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12144), + [anon_sym_BSLASHtextcite] = ACTIONS(12144), + [anon_sym_BSLASHTextcite] = ACTIONS(12144), + [anon_sym_BSLASHsmartcite] = ACTIONS(12144), + [anon_sym_BSLASHSmartcite] = ACTIONS(12144), + [anon_sym_BSLASHsupercite] = ACTIONS(12144), + [anon_sym_BSLASHautocite] = ACTIONS(12144), + [anon_sym_BSLASHAutocite] = ACTIONS(12144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHvolcite] = ACTIONS(12144), + [anon_sym_BSLASHVolcite] = ACTIONS(12144), + [anon_sym_BSLASHpvolcite] = ACTIONS(12144), + [anon_sym_BSLASHPvolcite] = ACTIONS(12144), + [anon_sym_BSLASHfvolcite] = ACTIONS(12144), + [anon_sym_BSLASHftvolcite] = ACTIONS(12144), + [anon_sym_BSLASHsvolcite] = ACTIONS(12144), + [anon_sym_BSLASHSvolcite] = ACTIONS(12144), + [anon_sym_BSLASHtvolcite] = ACTIONS(12144), + [anon_sym_BSLASHTvolcite] = ACTIONS(12144), + [anon_sym_BSLASHavolcite] = ACTIONS(12144), + [anon_sym_BSLASHAvolcite] = ACTIONS(12144), + [anon_sym_BSLASHnotecite] = ACTIONS(12144), + [anon_sym_BSLASHpnotecite] = ACTIONS(12144), + [anon_sym_BSLASHPnotecite] = ACTIONS(12144), + [anon_sym_BSLASHfnotecite] = ACTIONS(12144), + [anon_sym_BSLASHusepackage] = ACTIONS(12144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12144), + [anon_sym_BSLASHinclude] = ACTIONS(12144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12144), + [anon_sym_BSLASHinput] = ACTIONS(12144), + [anon_sym_BSLASHsubfile] = ACTIONS(12144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12144), + [anon_sym_BSLASHbibliography] = ACTIONS(12144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12144), + [anon_sym_BSLASHincludesvg] = ACTIONS(12144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12144), + [anon_sym_BSLASHimport] = ACTIONS(12144), + [anon_sym_BSLASHsubimport] = ACTIONS(12144), + [anon_sym_BSLASHinputfrom] = ACTIONS(12144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12144), + [anon_sym_BSLASHincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHlabel] = ACTIONS(12144), + [anon_sym_BSLASHref] = ACTIONS(12144), + [anon_sym_BSLASHvref] = ACTIONS(12144), + [anon_sym_BSLASHVref] = ACTIONS(12144), + [anon_sym_BSLASHautoref] = ACTIONS(12144), + [anon_sym_BSLASHpageref] = ACTIONS(12144), + [anon_sym_BSLASHcref] = ACTIONS(12144), + [anon_sym_BSLASHCref] = ACTIONS(12144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnameCref] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHlabelcref] = ACTIONS(12144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12144), + [anon_sym_BSLASHeqref] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange] = ACTIONS(12144), + [anon_sym_BSLASHCrefrange] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewlabel] = ACTIONS(12144), + [anon_sym_BSLASHnewcommand] = ACTIONS(12144), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12144), + [anon_sym_BSLASHgls] = ACTIONS(12144), + [anon_sym_BSLASHGls] = ACTIONS(12144), + [anon_sym_BSLASHGLS] = ACTIONS(12144), + [anon_sym_BSLASHglspl] = ACTIONS(12144), + [anon_sym_BSLASHGlspl] = ACTIONS(12144), + [anon_sym_BSLASHGLSpl] = ACTIONS(12144), + [anon_sym_BSLASHglsdisp] = ACTIONS(12144), + [anon_sym_BSLASHglslink] = ACTIONS(12144), + [anon_sym_BSLASHglstext] = ACTIONS(12144), + [anon_sym_BSLASHGlstext] = ACTIONS(12144), + [anon_sym_BSLASHGLStext] = ACTIONS(12144), + [anon_sym_BSLASHglsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12144), + [anon_sym_BSLASHglsplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSplural] = ACTIONS(12144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHglsname] = ACTIONS(12144), + [anon_sym_BSLASHGlsname] = ACTIONS(12144), + [anon_sym_BSLASHGLSname] = ACTIONS(12144), + [anon_sym_BSLASHglssymbol] = ACTIONS(12144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12144), + [anon_sym_BSLASHglsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12144), + [anon_sym_BSLASHglsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12144), + [anon_sym_BSLASHglsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12144), + [anon_sym_BSLASHglsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12144), + [anon_sym_BSLASHglsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12144), + [anon_sym_BSLASHnewacronym] = ACTIONS(12144), + [anon_sym_BSLASHacrshort] = ACTIONS(12144), + [anon_sym_BSLASHAcrshort] = ACTIONS(12144), + [anon_sym_BSLASHACRshort] = ACTIONS(12144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12144), + [anon_sym_BSLASHacrlong] = ACTIONS(12144), + [anon_sym_BSLASHAcrlong] = ACTIONS(12144), + [anon_sym_BSLASHACRlong] = ACTIONS(12144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12144), + [anon_sym_BSLASHacrfull] = ACTIONS(12144), + [anon_sym_BSLASHAcrfull] = ACTIONS(12144), + [anon_sym_BSLASHACRfull] = ACTIONS(12144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12144), + [anon_sym_BSLASHacs] = ACTIONS(12144), + [anon_sym_BSLASHAcs] = ACTIONS(12144), + [anon_sym_BSLASHacsp] = ACTIONS(12144), + [anon_sym_BSLASHAcsp] = ACTIONS(12144), + [anon_sym_BSLASHacl] = ACTIONS(12144), + [anon_sym_BSLASHAcl] = ACTIONS(12144), + [anon_sym_BSLASHaclp] = ACTIONS(12144), + [anon_sym_BSLASHAclp] = ACTIONS(12144), + [anon_sym_BSLASHacf] = ACTIONS(12144), + [anon_sym_BSLASHAcf] = ACTIONS(12144), + [anon_sym_BSLASHacfp] = ACTIONS(12144), + [anon_sym_BSLASHAcfp] = ACTIONS(12144), + [anon_sym_BSLASHac] = ACTIONS(12144), + [anon_sym_BSLASHAc] = ACTIONS(12144), + [anon_sym_BSLASHacp] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12144), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12144), + [anon_sym_BSLASHcolor] = ACTIONS(12144), + [anon_sym_BSLASHcolorbox] = ACTIONS(12144), + [anon_sym_BSLASHtextcolor] = ACTIONS(12144), + [anon_sym_BSLASHpagecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12144), + }, + [958] = { + [sym_generic_command_name] = ACTIONS(12148), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12148), + [aux_sym_chapter_token1] = ACTIONS(12148), + [aux_sym_section_token1] = ACTIONS(12148), + [aux_sym_subsection_token1] = ACTIONS(12148), + [aux_sym_subsubsection_token1] = ACTIONS(12148), + [aux_sym_paragraph_token1] = ACTIONS(12148), + [aux_sym_subparagraph_token1] = ACTIONS(12148), + [anon_sym_BSLASHitem] = ACTIONS(12148), + [anon_sym_LBRACK] = ACTIONS(12146), + [anon_sym_LBRACE] = ACTIONS(12146), + [anon_sym_LPAREN] = ACTIONS(12146), + [anon_sym_COMMA] = ACTIONS(12146), + [anon_sym_EQ] = ACTIONS(12146), + [sym_word] = ACTIONS(12146), + [sym_param] = ACTIONS(12146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12146), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12146), + [anon_sym_DOLLAR] = ACTIONS(12148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12146), + [anon_sym_BSLASHbegin] = ACTIONS(12148), + [anon_sym_BSLASHcaption] = ACTIONS(12148), + [anon_sym_BSLASHcite] = ACTIONS(12148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCite] = ACTIONS(12148), + [anon_sym_BSLASHnocite] = ACTIONS(12148), + [anon_sym_BSLASHcitet] = ACTIONS(12148), + [anon_sym_BSLASHcitep] = ACTIONS(12148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteauthor] = ACTIONS(12148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitetitle] = ACTIONS(12148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteyear] = ACTIONS(12148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitedate] = ACTIONS(12148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteurl] = ACTIONS(12148), + [anon_sym_BSLASHfullcite] = ACTIONS(12148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12148), + [anon_sym_BSLASHcitealt] = ACTIONS(12148), + [anon_sym_BSLASHcitealp] = ACTIONS(12148), + [anon_sym_BSLASHcitetext] = ACTIONS(12148), + [anon_sym_BSLASHparencite] = ACTIONS(12148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHParencite] = ACTIONS(12148), + [anon_sym_BSLASHfootcite] = ACTIONS(12148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12148), + [anon_sym_BSLASHtextcite] = ACTIONS(12148), + [anon_sym_BSLASHTextcite] = ACTIONS(12148), + [anon_sym_BSLASHsmartcite] = ACTIONS(12148), + [anon_sym_BSLASHSmartcite] = ACTIONS(12148), + [anon_sym_BSLASHsupercite] = ACTIONS(12148), + [anon_sym_BSLASHautocite] = ACTIONS(12148), + [anon_sym_BSLASHAutocite] = ACTIONS(12148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHvolcite] = ACTIONS(12148), + [anon_sym_BSLASHVolcite] = ACTIONS(12148), + [anon_sym_BSLASHpvolcite] = ACTIONS(12148), + [anon_sym_BSLASHPvolcite] = ACTIONS(12148), + [anon_sym_BSLASHfvolcite] = ACTIONS(12148), + [anon_sym_BSLASHftvolcite] = ACTIONS(12148), + [anon_sym_BSLASHsvolcite] = ACTIONS(12148), + [anon_sym_BSLASHSvolcite] = ACTIONS(12148), + [anon_sym_BSLASHtvolcite] = ACTIONS(12148), + [anon_sym_BSLASHTvolcite] = ACTIONS(12148), + [anon_sym_BSLASHavolcite] = ACTIONS(12148), + [anon_sym_BSLASHAvolcite] = ACTIONS(12148), + [anon_sym_BSLASHnotecite] = ACTIONS(12148), + [anon_sym_BSLASHpnotecite] = ACTIONS(12148), + [anon_sym_BSLASHPnotecite] = ACTIONS(12148), + [anon_sym_BSLASHfnotecite] = ACTIONS(12148), + [anon_sym_BSLASHusepackage] = ACTIONS(12148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12148), + [anon_sym_BSLASHinclude] = ACTIONS(12148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12148), + [anon_sym_BSLASHinput] = ACTIONS(12148), + [anon_sym_BSLASHsubfile] = ACTIONS(12148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12148), + [anon_sym_BSLASHbibliography] = ACTIONS(12148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12148), + [anon_sym_BSLASHincludesvg] = ACTIONS(12148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12148), + [anon_sym_BSLASHimport] = ACTIONS(12148), + [anon_sym_BSLASHsubimport] = ACTIONS(12148), + [anon_sym_BSLASHinputfrom] = ACTIONS(12148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12148), + [anon_sym_BSLASHincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHlabel] = ACTIONS(12148), + [anon_sym_BSLASHref] = ACTIONS(12148), + [anon_sym_BSLASHvref] = ACTIONS(12148), + [anon_sym_BSLASHVref] = ACTIONS(12148), + [anon_sym_BSLASHautoref] = ACTIONS(12148), + [anon_sym_BSLASHpageref] = ACTIONS(12148), + [anon_sym_BSLASHcref] = ACTIONS(12148), + [anon_sym_BSLASHCref] = ACTIONS(12148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnameCref] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHlabelcref] = ACTIONS(12148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12148), + [anon_sym_BSLASHeqref] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange] = ACTIONS(12148), + [anon_sym_BSLASHCrefrange] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewlabel] = ACTIONS(12148), + [anon_sym_BSLASHnewcommand] = ACTIONS(12148), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12148), + [anon_sym_BSLASHgls] = ACTIONS(12148), + [anon_sym_BSLASHGls] = ACTIONS(12148), + [anon_sym_BSLASHGLS] = ACTIONS(12148), + [anon_sym_BSLASHglspl] = ACTIONS(12148), + [anon_sym_BSLASHGlspl] = ACTIONS(12148), + [anon_sym_BSLASHGLSpl] = ACTIONS(12148), + [anon_sym_BSLASHglsdisp] = ACTIONS(12148), + [anon_sym_BSLASHglslink] = ACTIONS(12148), + [anon_sym_BSLASHglstext] = ACTIONS(12148), + [anon_sym_BSLASHGlstext] = ACTIONS(12148), + [anon_sym_BSLASHGLStext] = ACTIONS(12148), + [anon_sym_BSLASHglsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12148), + [anon_sym_BSLASHglsplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSplural] = ACTIONS(12148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHglsname] = ACTIONS(12148), + [anon_sym_BSLASHGlsname] = ACTIONS(12148), + [anon_sym_BSLASHGLSname] = ACTIONS(12148), + [anon_sym_BSLASHglssymbol] = ACTIONS(12148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12148), + [anon_sym_BSLASHglsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12148), + [anon_sym_BSLASHglsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12148), + [anon_sym_BSLASHglsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12148), + [anon_sym_BSLASHglsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12148), + [anon_sym_BSLASHglsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12148), + [anon_sym_BSLASHnewacronym] = ACTIONS(12148), + [anon_sym_BSLASHacrshort] = ACTIONS(12148), + [anon_sym_BSLASHAcrshort] = ACTIONS(12148), + [anon_sym_BSLASHACRshort] = ACTIONS(12148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12148), + [anon_sym_BSLASHacrlong] = ACTIONS(12148), + [anon_sym_BSLASHAcrlong] = ACTIONS(12148), + [anon_sym_BSLASHACRlong] = ACTIONS(12148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12148), + [anon_sym_BSLASHacrfull] = ACTIONS(12148), + [anon_sym_BSLASHAcrfull] = ACTIONS(12148), + [anon_sym_BSLASHACRfull] = ACTIONS(12148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12148), + [anon_sym_BSLASHacs] = ACTIONS(12148), + [anon_sym_BSLASHAcs] = ACTIONS(12148), + [anon_sym_BSLASHacsp] = ACTIONS(12148), + [anon_sym_BSLASHAcsp] = ACTIONS(12148), + [anon_sym_BSLASHacl] = ACTIONS(12148), + [anon_sym_BSLASHAcl] = ACTIONS(12148), + [anon_sym_BSLASHaclp] = ACTIONS(12148), + [anon_sym_BSLASHAclp] = ACTIONS(12148), + [anon_sym_BSLASHacf] = ACTIONS(12148), + [anon_sym_BSLASHAcf] = ACTIONS(12148), + [anon_sym_BSLASHacfp] = ACTIONS(12148), + [anon_sym_BSLASHAcfp] = ACTIONS(12148), + [anon_sym_BSLASHac] = ACTIONS(12148), + [anon_sym_BSLASHAc] = ACTIONS(12148), + [anon_sym_BSLASHacp] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12148), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12148), + [anon_sym_BSLASHcolor] = ACTIONS(12148), + [anon_sym_BSLASHcolorbox] = ACTIONS(12148), + [anon_sym_BSLASHtextcolor] = ACTIONS(12148), + [anon_sym_BSLASHpagecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12148), + }, + [959] = { + [sym_generic_command_name] = ACTIONS(12152), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12152), + [aux_sym_chapter_token1] = ACTIONS(12152), + [aux_sym_section_token1] = ACTIONS(12152), + [aux_sym_subsection_token1] = ACTIONS(12152), + [aux_sym_subsubsection_token1] = ACTIONS(12152), + [aux_sym_paragraph_token1] = ACTIONS(12152), + [aux_sym_subparagraph_token1] = ACTIONS(12152), + [anon_sym_BSLASHitem] = ACTIONS(12152), + [anon_sym_LBRACK] = ACTIONS(12150), + [anon_sym_LBRACE] = ACTIONS(12150), + [anon_sym_LPAREN] = ACTIONS(12150), + [anon_sym_COMMA] = ACTIONS(12150), + [anon_sym_EQ] = ACTIONS(12150), + [sym_word] = ACTIONS(12150), + [sym_param] = ACTIONS(12150), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12150), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12150), + [anon_sym_DOLLAR] = ACTIONS(12152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12150), + [anon_sym_BSLASHbegin] = ACTIONS(12152), + [anon_sym_BSLASHcaption] = ACTIONS(12152), + [anon_sym_BSLASHcite] = ACTIONS(12152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCite] = ACTIONS(12152), + [anon_sym_BSLASHnocite] = ACTIONS(12152), + [anon_sym_BSLASHcitet] = ACTIONS(12152), + [anon_sym_BSLASHcitep] = ACTIONS(12152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteauthor] = ACTIONS(12152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitetitle] = ACTIONS(12152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteyear] = ACTIONS(12152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitedate] = ACTIONS(12152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteurl] = ACTIONS(12152), + [anon_sym_BSLASHfullcite] = ACTIONS(12152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12152), + [anon_sym_BSLASHcitealt] = ACTIONS(12152), + [anon_sym_BSLASHcitealp] = ACTIONS(12152), + [anon_sym_BSLASHcitetext] = ACTIONS(12152), + [anon_sym_BSLASHparencite] = ACTIONS(12152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHParencite] = ACTIONS(12152), + [anon_sym_BSLASHfootcite] = ACTIONS(12152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12152), + [anon_sym_BSLASHtextcite] = ACTIONS(12152), + [anon_sym_BSLASHTextcite] = ACTIONS(12152), + [anon_sym_BSLASHsmartcite] = ACTIONS(12152), + [anon_sym_BSLASHSmartcite] = ACTIONS(12152), + [anon_sym_BSLASHsupercite] = ACTIONS(12152), + [anon_sym_BSLASHautocite] = ACTIONS(12152), + [anon_sym_BSLASHAutocite] = ACTIONS(12152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHvolcite] = ACTIONS(12152), + [anon_sym_BSLASHVolcite] = ACTIONS(12152), + [anon_sym_BSLASHpvolcite] = ACTIONS(12152), + [anon_sym_BSLASHPvolcite] = ACTIONS(12152), + [anon_sym_BSLASHfvolcite] = ACTIONS(12152), + [anon_sym_BSLASHftvolcite] = ACTIONS(12152), + [anon_sym_BSLASHsvolcite] = ACTIONS(12152), + [anon_sym_BSLASHSvolcite] = ACTIONS(12152), + [anon_sym_BSLASHtvolcite] = ACTIONS(12152), + [anon_sym_BSLASHTvolcite] = ACTIONS(12152), + [anon_sym_BSLASHavolcite] = ACTIONS(12152), + [anon_sym_BSLASHAvolcite] = ACTIONS(12152), + [anon_sym_BSLASHnotecite] = ACTIONS(12152), + [anon_sym_BSLASHpnotecite] = ACTIONS(12152), + [anon_sym_BSLASHPnotecite] = ACTIONS(12152), + [anon_sym_BSLASHfnotecite] = ACTIONS(12152), + [anon_sym_BSLASHusepackage] = ACTIONS(12152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12152), + [anon_sym_BSLASHinclude] = ACTIONS(12152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12152), + [anon_sym_BSLASHinput] = ACTIONS(12152), + [anon_sym_BSLASHsubfile] = ACTIONS(12152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12152), + [anon_sym_BSLASHbibliography] = ACTIONS(12152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12152), + [anon_sym_BSLASHincludesvg] = ACTIONS(12152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12152), + [anon_sym_BSLASHimport] = ACTIONS(12152), + [anon_sym_BSLASHsubimport] = ACTIONS(12152), + [anon_sym_BSLASHinputfrom] = ACTIONS(12152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12152), + [anon_sym_BSLASHincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHlabel] = ACTIONS(12152), + [anon_sym_BSLASHref] = ACTIONS(12152), + [anon_sym_BSLASHvref] = ACTIONS(12152), + [anon_sym_BSLASHVref] = ACTIONS(12152), + [anon_sym_BSLASHautoref] = ACTIONS(12152), + [anon_sym_BSLASHpageref] = ACTIONS(12152), + [anon_sym_BSLASHcref] = ACTIONS(12152), + [anon_sym_BSLASHCref] = ACTIONS(12152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnameCref] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHlabelcref] = ACTIONS(12152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12152), + [anon_sym_BSLASHeqref] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange] = ACTIONS(12152), + [anon_sym_BSLASHCrefrange] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewlabel] = ACTIONS(12152), + [anon_sym_BSLASHnewcommand] = ACTIONS(12152), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12152), + [anon_sym_BSLASHgls] = ACTIONS(12152), + [anon_sym_BSLASHGls] = ACTIONS(12152), + [anon_sym_BSLASHGLS] = ACTIONS(12152), + [anon_sym_BSLASHglspl] = ACTIONS(12152), + [anon_sym_BSLASHGlspl] = ACTIONS(12152), + [anon_sym_BSLASHGLSpl] = ACTIONS(12152), + [anon_sym_BSLASHglsdisp] = ACTIONS(12152), + [anon_sym_BSLASHglslink] = ACTIONS(12152), + [anon_sym_BSLASHglstext] = ACTIONS(12152), + [anon_sym_BSLASHGlstext] = ACTIONS(12152), + [anon_sym_BSLASHGLStext] = ACTIONS(12152), + [anon_sym_BSLASHglsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12152), + [anon_sym_BSLASHglsplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSplural] = ACTIONS(12152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHglsname] = ACTIONS(12152), + [anon_sym_BSLASHGlsname] = ACTIONS(12152), + [anon_sym_BSLASHGLSname] = ACTIONS(12152), + [anon_sym_BSLASHglssymbol] = ACTIONS(12152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12152), + [anon_sym_BSLASHglsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12152), + [anon_sym_BSLASHglsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12152), + [anon_sym_BSLASHglsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12152), + [anon_sym_BSLASHglsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12152), + [anon_sym_BSLASHglsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12152), + [anon_sym_BSLASHnewacronym] = ACTIONS(12152), + [anon_sym_BSLASHacrshort] = ACTIONS(12152), + [anon_sym_BSLASHAcrshort] = ACTIONS(12152), + [anon_sym_BSLASHACRshort] = ACTIONS(12152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12152), + [anon_sym_BSLASHacrlong] = ACTIONS(12152), + [anon_sym_BSLASHAcrlong] = ACTIONS(12152), + [anon_sym_BSLASHACRlong] = ACTIONS(12152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12152), + [anon_sym_BSLASHacrfull] = ACTIONS(12152), + [anon_sym_BSLASHAcrfull] = ACTIONS(12152), + [anon_sym_BSLASHACRfull] = ACTIONS(12152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12152), + [anon_sym_BSLASHacs] = ACTIONS(12152), + [anon_sym_BSLASHAcs] = ACTIONS(12152), + [anon_sym_BSLASHacsp] = ACTIONS(12152), + [anon_sym_BSLASHAcsp] = ACTIONS(12152), + [anon_sym_BSLASHacl] = ACTIONS(12152), + [anon_sym_BSLASHAcl] = ACTIONS(12152), + [anon_sym_BSLASHaclp] = ACTIONS(12152), + [anon_sym_BSLASHAclp] = ACTIONS(12152), + [anon_sym_BSLASHacf] = ACTIONS(12152), + [anon_sym_BSLASHAcf] = ACTIONS(12152), + [anon_sym_BSLASHacfp] = ACTIONS(12152), + [anon_sym_BSLASHAcfp] = ACTIONS(12152), + [anon_sym_BSLASHac] = ACTIONS(12152), + [anon_sym_BSLASHAc] = ACTIONS(12152), + [anon_sym_BSLASHacp] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12152), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12152), + [anon_sym_BSLASHcolor] = ACTIONS(12152), + [anon_sym_BSLASHcolorbox] = ACTIONS(12152), + [anon_sym_BSLASHtextcolor] = ACTIONS(12152), + [anon_sym_BSLASHpagecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12152), + }, + [960] = { + [sym_generic_command_name] = ACTIONS(12156), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12156), + [aux_sym_chapter_token1] = ACTIONS(12156), + [aux_sym_section_token1] = ACTIONS(12156), + [aux_sym_subsection_token1] = ACTIONS(12156), + [aux_sym_subsubsection_token1] = ACTIONS(12156), + [aux_sym_paragraph_token1] = ACTIONS(12156), + [aux_sym_subparagraph_token1] = ACTIONS(12156), + [anon_sym_BSLASHitem] = ACTIONS(12156), + [anon_sym_LBRACK] = ACTIONS(12154), + [anon_sym_LBRACE] = ACTIONS(12154), + [anon_sym_LPAREN] = ACTIONS(12154), + [anon_sym_COMMA] = ACTIONS(12154), + [anon_sym_EQ] = ACTIONS(12154), + [sym_word] = ACTIONS(12154), + [sym_param] = ACTIONS(12154), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12154), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12154), + [anon_sym_DOLLAR] = ACTIONS(12156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12154), + [anon_sym_BSLASHbegin] = ACTIONS(12156), + [anon_sym_BSLASHcaption] = ACTIONS(12156), + [anon_sym_BSLASHcite] = ACTIONS(12156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCite] = ACTIONS(12156), + [anon_sym_BSLASHnocite] = ACTIONS(12156), + [anon_sym_BSLASHcitet] = ACTIONS(12156), + [anon_sym_BSLASHcitep] = ACTIONS(12156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteauthor] = ACTIONS(12156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitetitle] = ACTIONS(12156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteyear] = ACTIONS(12156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitedate] = ACTIONS(12156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteurl] = ACTIONS(12156), + [anon_sym_BSLASHfullcite] = ACTIONS(12156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12156), + [anon_sym_BSLASHcitealt] = ACTIONS(12156), + [anon_sym_BSLASHcitealp] = ACTIONS(12156), + [anon_sym_BSLASHcitetext] = ACTIONS(12156), + [anon_sym_BSLASHparencite] = ACTIONS(12156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHParencite] = ACTIONS(12156), + [anon_sym_BSLASHfootcite] = ACTIONS(12156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12156), + [anon_sym_BSLASHtextcite] = ACTIONS(12156), + [anon_sym_BSLASHTextcite] = ACTIONS(12156), + [anon_sym_BSLASHsmartcite] = ACTIONS(12156), + [anon_sym_BSLASHSmartcite] = ACTIONS(12156), + [anon_sym_BSLASHsupercite] = ACTIONS(12156), + [anon_sym_BSLASHautocite] = ACTIONS(12156), + [anon_sym_BSLASHAutocite] = ACTIONS(12156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHvolcite] = ACTIONS(12156), + [anon_sym_BSLASHVolcite] = ACTIONS(12156), + [anon_sym_BSLASHpvolcite] = ACTIONS(12156), + [anon_sym_BSLASHPvolcite] = ACTIONS(12156), + [anon_sym_BSLASHfvolcite] = ACTIONS(12156), + [anon_sym_BSLASHftvolcite] = ACTIONS(12156), + [anon_sym_BSLASHsvolcite] = ACTIONS(12156), + [anon_sym_BSLASHSvolcite] = ACTIONS(12156), + [anon_sym_BSLASHtvolcite] = ACTIONS(12156), + [anon_sym_BSLASHTvolcite] = ACTIONS(12156), + [anon_sym_BSLASHavolcite] = ACTIONS(12156), + [anon_sym_BSLASHAvolcite] = ACTIONS(12156), + [anon_sym_BSLASHnotecite] = ACTIONS(12156), + [anon_sym_BSLASHpnotecite] = ACTIONS(12156), + [anon_sym_BSLASHPnotecite] = ACTIONS(12156), + [anon_sym_BSLASHfnotecite] = ACTIONS(12156), + [anon_sym_BSLASHusepackage] = ACTIONS(12156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12156), + [anon_sym_BSLASHinclude] = ACTIONS(12156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12156), + [anon_sym_BSLASHinput] = ACTIONS(12156), + [anon_sym_BSLASHsubfile] = ACTIONS(12156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12156), + [anon_sym_BSLASHbibliography] = ACTIONS(12156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12156), + [anon_sym_BSLASHincludesvg] = ACTIONS(12156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12156), + [anon_sym_BSLASHimport] = ACTIONS(12156), + [anon_sym_BSLASHsubimport] = ACTIONS(12156), + [anon_sym_BSLASHinputfrom] = ACTIONS(12156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12156), + [anon_sym_BSLASHincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHlabel] = ACTIONS(12156), + [anon_sym_BSLASHref] = ACTIONS(12156), + [anon_sym_BSLASHvref] = ACTIONS(12156), + [anon_sym_BSLASHVref] = ACTIONS(12156), + [anon_sym_BSLASHautoref] = ACTIONS(12156), + [anon_sym_BSLASHpageref] = ACTIONS(12156), + [anon_sym_BSLASHcref] = ACTIONS(12156), + [anon_sym_BSLASHCref] = ACTIONS(12156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnameCref] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHlabelcref] = ACTIONS(12156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12156), + [anon_sym_BSLASHeqref] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange] = ACTIONS(12156), + [anon_sym_BSLASHCrefrange] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewlabel] = ACTIONS(12156), + [anon_sym_BSLASHnewcommand] = ACTIONS(12156), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12156), + [anon_sym_BSLASHgls] = ACTIONS(12156), + [anon_sym_BSLASHGls] = ACTIONS(12156), + [anon_sym_BSLASHGLS] = ACTIONS(12156), + [anon_sym_BSLASHglspl] = ACTIONS(12156), + [anon_sym_BSLASHGlspl] = ACTIONS(12156), + [anon_sym_BSLASHGLSpl] = ACTIONS(12156), + [anon_sym_BSLASHglsdisp] = ACTIONS(12156), + [anon_sym_BSLASHglslink] = ACTIONS(12156), + [anon_sym_BSLASHglstext] = ACTIONS(12156), + [anon_sym_BSLASHGlstext] = ACTIONS(12156), + [anon_sym_BSLASHGLStext] = ACTIONS(12156), + [anon_sym_BSLASHglsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12156), + [anon_sym_BSLASHglsplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSplural] = ACTIONS(12156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHglsname] = ACTIONS(12156), + [anon_sym_BSLASHGlsname] = ACTIONS(12156), + [anon_sym_BSLASHGLSname] = ACTIONS(12156), + [anon_sym_BSLASHglssymbol] = ACTIONS(12156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12156), + [anon_sym_BSLASHglsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12156), + [anon_sym_BSLASHglsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12156), + [anon_sym_BSLASHglsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12156), + [anon_sym_BSLASHglsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12156), + [anon_sym_BSLASHglsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12156), + [anon_sym_BSLASHnewacronym] = ACTIONS(12156), + [anon_sym_BSLASHacrshort] = ACTIONS(12156), + [anon_sym_BSLASHAcrshort] = ACTIONS(12156), + [anon_sym_BSLASHACRshort] = ACTIONS(12156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12156), + [anon_sym_BSLASHacrlong] = ACTIONS(12156), + [anon_sym_BSLASHAcrlong] = ACTIONS(12156), + [anon_sym_BSLASHACRlong] = ACTIONS(12156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12156), + [anon_sym_BSLASHacrfull] = ACTIONS(12156), + [anon_sym_BSLASHAcrfull] = ACTIONS(12156), + [anon_sym_BSLASHACRfull] = ACTIONS(12156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12156), + [anon_sym_BSLASHacs] = ACTIONS(12156), + [anon_sym_BSLASHAcs] = ACTIONS(12156), + [anon_sym_BSLASHacsp] = ACTIONS(12156), + [anon_sym_BSLASHAcsp] = ACTIONS(12156), + [anon_sym_BSLASHacl] = ACTIONS(12156), + [anon_sym_BSLASHAcl] = ACTIONS(12156), + [anon_sym_BSLASHaclp] = ACTIONS(12156), + [anon_sym_BSLASHAclp] = ACTIONS(12156), + [anon_sym_BSLASHacf] = ACTIONS(12156), + [anon_sym_BSLASHAcf] = ACTIONS(12156), + [anon_sym_BSLASHacfp] = ACTIONS(12156), + [anon_sym_BSLASHAcfp] = ACTIONS(12156), + [anon_sym_BSLASHac] = ACTIONS(12156), + [anon_sym_BSLASHAc] = ACTIONS(12156), + [anon_sym_BSLASHacp] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12156), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12156), + [anon_sym_BSLASHcolor] = ACTIONS(12156), + [anon_sym_BSLASHcolorbox] = ACTIONS(12156), + [anon_sym_BSLASHtextcolor] = ACTIONS(12156), + [anon_sym_BSLASHpagecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12156), + }, + [961] = { + [sym_generic_command_name] = ACTIONS(12160), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12160), + [aux_sym_chapter_token1] = ACTIONS(12160), + [aux_sym_section_token1] = ACTIONS(12160), + [aux_sym_subsection_token1] = ACTIONS(12160), + [aux_sym_subsubsection_token1] = ACTIONS(12160), + [aux_sym_paragraph_token1] = ACTIONS(12160), + [aux_sym_subparagraph_token1] = ACTIONS(12160), + [anon_sym_BSLASHitem] = ACTIONS(12160), + [anon_sym_LBRACK] = ACTIONS(12158), + [anon_sym_LBRACE] = ACTIONS(12158), + [anon_sym_LPAREN] = ACTIONS(12158), + [anon_sym_COMMA] = ACTIONS(12158), + [anon_sym_EQ] = ACTIONS(12158), + [sym_word] = ACTIONS(12158), + [sym_param] = ACTIONS(12158), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12158), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12158), + [anon_sym_DOLLAR] = ACTIONS(12160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12158), + [anon_sym_BSLASHbegin] = ACTIONS(12160), + [anon_sym_BSLASHcaption] = ACTIONS(12160), + [anon_sym_BSLASHcite] = ACTIONS(12160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCite] = ACTIONS(12160), + [anon_sym_BSLASHnocite] = ACTIONS(12160), + [anon_sym_BSLASHcitet] = ACTIONS(12160), + [anon_sym_BSLASHcitep] = ACTIONS(12160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteauthor] = ACTIONS(12160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitetitle] = ACTIONS(12160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteyear] = ACTIONS(12160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitedate] = ACTIONS(12160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteurl] = ACTIONS(12160), + [anon_sym_BSLASHfullcite] = ACTIONS(12160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12160), + [anon_sym_BSLASHcitealt] = ACTIONS(12160), + [anon_sym_BSLASHcitealp] = ACTIONS(12160), + [anon_sym_BSLASHcitetext] = ACTIONS(12160), + [anon_sym_BSLASHparencite] = ACTIONS(12160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHParencite] = ACTIONS(12160), + [anon_sym_BSLASHfootcite] = ACTIONS(12160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12160), + [anon_sym_BSLASHtextcite] = ACTIONS(12160), + [anon_sym_BSLASHTextcite] = ACTIONS(12160), + [anon_sym_BSLASHsmartcite] = ACTIONS(12160), + [anon_sym_BSLASHSmartcite] = ACTIONS(12160), + [anon_sym_BSLASHsupercite] = ACTIONS(12160), + [anon_sym_BSLASHautocite] = ACTIONS(12160), + [anon_sym_BSLASHAutocite] = ACTIONS(12160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHvolcite] = ACTIONS(12160), + [anon_sym_BSLASHVolcite] = ACTIONS(12160), + [anon_sym_BSLASHpvolcite] = ACTIONS(12160), + [anon_sym_BSLASHPvolcite] = ACTIONS(12160), + [anon_sym_BSLASHfvolcite] = ACTIONS(12160), + [anon_sym_BSLASHftvolcite] = ACTIONS(12160), + [anon_sym_BSLASHsvolcite] = ACTIONS(12160), + [anon_sym_BSLASHSvolcite] = ACTIONS(12160), + [anon_sym_BSLASHtvolcite] = ACTIONS(12160), + [anon_sym_BSLASHTvolcite] = ACTIONS(12160), + [anon_sym_BSLASHavolcite] = ACTIONS(12160), + [anon_sym_BSLASHAvolcite] = ACTIONS(12160), + [anon_sym_BSLASHnotecite] = ACTIONS(12160), + [anon_sym_BSLASHpnotecite] = ACTIONS(12160), + [anon_sym_BSLASHPnotecite] = ACTIONS(12160), + [anon_sym_BSLASHfnotecite] = ACTIONS(12160), + [anon_sym_BSLASHusepackage] = ACTIONS(12160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12160), + [anon_sym_BSLASHinclude] = ACTIONS(12160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12160), + [anon_sym_BSLASHinput] = ACTIONS(12160), + [anon_sym_BSLASHsubfile] = ACTIONS(12160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12160), + [anon_sym_BSLASHbibliography] = ACTIONS(12160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12160), + [anon_sym_BSLASHincludesvg] = ACTIONS(12160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12160), + [anon_sym_BSLASHimport] = ACTIONS(12160), + [anon_sym_BSLASHsubimport] = ACTIONS(12160), + [anon_sym_BSLASHinputfrom] = ACTIONS(12160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12160), + [anon_sym_BSLASHincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHlabel] = ACTIONS(12160), + [anon_sym_BSLASHref] = ACTIONS(12160), + [anon_sym_BSLASHvref] = ACTIONS(12160), + [anon_sym_BSLASHVref] = ACTIONS(12160), + [anon_sym_BSLASHautoref] = ACTIONS(12160), + [anon_sym_BSLASHpageref] = ACTIONS(12160), + [anon_sym_BSLASHcref] = ACTIONS(12160), + [anon_sym_BSLASHCref] = ACTIONS(12160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnameCref] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHlabelcref] = ACTIONS(12160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12160), + [anon_sym_BSLASHeqref] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange] = ACTIONS(12160), + [anon_sym_BSLASHCrefrange] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewlabel] = ACTIONS(12160), + [anon_sym_BSLASHnewcommand] = ACTIONS(12160), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12160), + [anon_sym_BSLASHgls] = ACTIONS(12160), + [anon_sym_BSLASHGls] = ACTIONS(12160), + [anon_sym_BSLASHGLS] = ACTIONS(12160), + [anon_sym_BSLASHglspl] = ACTIONS(12160), + [anon_sym_BSLASHGlspl] = ACTIONS(12160), + [anon_sym_BSLASHGLSpl] = ACTIONS(12160), + [anon_sym_BSLASHglsdisp] = ACTIONS(12160), + [anon_sym_BSLASHglslink] = ACTIONS(12160), + [anon_sym_BSLASHglstext] = ACTIONS(12160), + [anon_sym_BSLASHGlstext] = ACTIONS(12160), + [anon_sym_BSLASHGLStext] = ACTIONS(12160), + [anon_sym_BSLASHglsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12160), + [anon_sym_BSLASHglsplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSplural] = ACTIONS(12160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHglsname] = ACTIONS(12160), + [anon_sym_BSLASHGlsname] = ACTIONS(12160), + [anon_sym_BSLASHGLSname] = ACTIONS(12160), + [anon_sym_BSLASHglssymbol] = ACTIONS(12160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12160), + [anon_sym_BSLASHglsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12160), + [anon_sym_BSLASHglsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12160), + [anon_sym_BSLASHglsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12160), + [anon_sym_BSLASHglsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12160), + [anon_sym_BSLASHglsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12160), + [anon_sym_BSLASHnewacronym] = ACTIONS(12160), + [anon_sym_BSLASHacrshort] = ACTIONS(12160), + [anon_sym_BSLASHAcrshort] = ACTIONS(12160), + [anon_sym_BSLASHACRshort] = ACTIONS(12160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12160), + [anon_sym_BSLASHacrlong] = ACTIONS(12160), + [anon_sym_BSLASHAcrlong] = ACTIONS(12160), + [anon_sym_BSLASHACRlong] = ACTIONS(12160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12160), + [anon_sym_BSLASHacrfull] = ACTIONS(12160), + [anon_sym_BSLASHAcrfull] = ACTIONS(12160), + [anon_sym_BSLASHACRfull] = ACTIONS(12160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12160), + [anon_sym_BSLASHacs] = ACTIONS(12160), + [anon_sym_BSLASHAcs] = ACTIONS(12160), + [anon_sym_BSLASHacsp] = ACTIONS(12160), + [anon_sym_BSLASHAcsp] = ACTIONS(12160), + [anon_sym_BSLASHacl] = ACTIONS(12160), + [anon_sym_BSLASHAcl] = ACTIONS(12160), + [anon_sym_BSLASHaclp] = ACTIONS(12160), + [anon_sym_BSLASHAclp] = ACTIONS(12160), + [anon_sym_BSLASHacf] = ACTIONS(12160), + [anon_sym_BSLASHAcf] = ACTIONS(12160), + [anon_sym_BSLASHacfp] = ACTIONS(12160), + [anon_sym_BSLASHAcfp] = ACTIONS(12160), + [anon_sym_BSLASHac] = ACTIONS(12160), + [anon_sym_BSLASHAc] = ACTIONS(12160), + [anon_sym_BSLASHacp] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12160), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12160), + [anon_sym_BSLASHcolor] = ACTIONS(12160), + [anon_sym_BSLASHcolorbox] = ACTIONS(12160), + [anon_sym_BSLASHtextcolor] = ACTIONS(12160), + [anon_sym_BSLASHpagecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12160), + }, + [962] = { + [sym_generic_command_name] = ACTIONS(12173), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12173), + [aux_sym_chapter_token1] = ACTIONS(12173), + [aux_sym_section_token1] = ACTIONS(12173), + [aux_sym_subsection_token1] = ACTIONS(12173), + [aux_sym_subsubsection_token1] = ACTIONS(12173), + [aux_sym_paragraph_token1] = ACTIONS(12173), + [aux_sym_subparagraph_token1] = ACTIONS(12173), + [anon_sym_BSLASHitem] = ACTIONS(12173), + [anon_sym_LBRACK] = ACTIONS(12171), + [anon_sym_LBRACE] = ACTIONS(12171), + [anon_sym_LPAREN] = ACTIONS(12171), + [anon_sym_COMMA] = ACTIONS(12171), + [anon_sym_EQ] = ACTIONS(12171), + [sym_word] = ACTIONS(12171), + [sym_param] = ACTIONS(12171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12171), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12171), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12171), + [anon_sym_DOLLAR] = ACTIONS(12173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12171), + [anon_sym_BSLASHbegin] = ACTIONS(12173), + [anon_sym_BSLASHcaption] = ACTIONS(12173), + [anon_sym_BSLASHcite] = ACTIONS(12173), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCite] = ACTIONS(12173), + [anon_sym_BSLASHnocite] = ACTIONS(12173), + [anon_sym_BSLASHcitet] = ACTIONS(12173), + [anon_sym_BSLASHcitep] = ACTIONS(12173), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteauthor] = ACTIONS(12173), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12173), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitetitle] = ACTIONS(12173), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteyear] = ACTIONS(12173), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitedate] = ACTIONS(12173), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteurl] = ACTIONS(12173), + [anon_sym_BSLASHfullcite] = ACTIONS(12173), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12173), + [anon_sym_BSLASHcitealt] = ACTIONS(12173), + [anon_sym_BSLASHcitealp] = ACTIONS(12173), + [anon_sym_BSLASHcitetext] = ACTIONS(12173), + [anon_sym_BSLASHparencite] = ACTIONS(12173), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHParencite] = ACTIONS(12173), + [anon_sym_BSLASHfootcite] = ACTIONS(12173), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12173), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12173), + [anon_sym_BSLASHtextcite] = ACTIONS(12173), + [anon_sym_BSLASHTextcite] = ACTIONS(12173), + [anon_sym_BSLASHsmartcite] = ACTIONS(12173), + [anon_sym_BSLASHSmartcite] = ACTIONS(12173), + [anon_sym_BSLASHsupercite] = ACTIONS(12173), + [anon_sym_BSLASHautocite] = ACTIONS(12173), + [anon_sym_BSLASHAutocite] = ACTIONS(12173), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHvolcite] = ACTIONS(12173), + [anon_sym_BSLASHVolcite] = ACTIONS(12173), + [anon_sym_BSLASHpvolcite] = ACTIONS(12173), + [anon_sym_BSLASHPvolcite] = ACTIONS(12173), + [anon_sym_BSLASHfvolcite] = ACTIONS(12173), + [anon_sym_BSLASHftvolcite] = ACTIONS(12173), + [anon_sym_BSLASHsvolcite] = ACTIONS(12173), + [anon_sym_BSLASHSvolcite] = ACTIONS(12173), + [anon_sym_BSLASHtvolcite] = ACTIONS(12173), + [anon_sym_BSLASHTvolcite] = ACTIONS(12173), + [anon_sym_BSLASHavolcite] = ACTIONS(12173), + [anon_sym_BSLASHAvolcite] = ACTIONS(12173), + [anon_sym_BSLASHnotecite] = ACTIONS(12173), + [anon_sym_BSLASHpnotecite] = ACTIONS(12173), + [anon_sym_BSLASHPnotecite] = ACTIONS(12173), + [anon_sym_BSLASHfnotecite] = ACTIONS(12173), + [anon_sym_BSLASHusepackage] = ACTIONS(12173), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12173), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12173), + [anon_sym_BSLASHinclude] = ACTIONS(12173), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12173), + [anon_sym_BSLASHinput] = ACTIONS(12173), + [anon_sym_BSLASHsubfile] = ACTIONS(12173), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12173), + [anon_sym_BSLASHbibliography] = ACTIONS(12173), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12173), + [anon_sym_BSLASHincludesvg] = ACTIONS(12173), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12173), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12173), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12173), + [anon_sym_BSLASHimport] = ACTIONS(12173), + [anon_sym_BSLASHsubimport] = ACTIONS(12173), + [anon_sym_BSLASHinputfrom] = ACTIONS(12173), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12173), + [anon_sym_BSLASHincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHlabel] = ACTIONS(12173), + [anon_sym_BSLASHref] = ACTIONS(12173), + [anon_sym_BSLASHvref] = ACTIONS(12173), + [anon_sym_BSLASHVref] = ACTIONS(12173), + [anon_sym_BSLASHautoref] = ACTIONS(12173), + [anon_sym_BSLASHpageref] = ACTIONS(12173), + [anon_sym_BSLASHcref] = ACTIONS(12173), + [anon_sym_BSLASHCref] = ACTIONS(12173), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnameCref] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHlabelcref] = ACTIONS(12173), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12173), + [anon_sym_BSLASHeqref] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange] = ACTIONS(12173), + [anon_sym_BSLASHCrefrange] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewlabel] = ACTIONS(12173), + [anon_sym_BSLASHnewcommand] = ACTIONS(12173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12173), + [anon_sym_BSLASHgls] = ACTIONS(12173), + [anon_sym_BSLASHGls] = ACTIONS(12173), + [anon_sym_BSLASHGLS] = ACTIONS(12173), + [anon_sym_BSLASHglspl] = ACTIONS(12173), + [anon_sym_BSLASHGlspl] = ACTIONS(12173), + [anon_sym_BSLASHGLSpl] = ACTIONS(12173), + [anon_sym_BSLASHglsdisp] = ACTIONS(12173), + [anon_sym_BSLASHglslink] = ACTIONS(12173), + [anon_sym_BSLASHglstext] = ACTIONS(12173), + [anon_sym_BSLASHGlstext] = ACTIONS(12173), + [anon_sym_BSLASHGLStext] = ACTIONS(12173), + [anon_sym_BSLASHglsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12173), + [anon_sym_BSLASHglsplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSplural] = ACTIONS(12173), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHglsname] = ACTIONS(12173), + [anon_sym_BSLASHGlsname] = ACTIONS(12173), + [anon_sym_BSLASHGLSname] = ACTIONS(12173), + [anon_sym_BSLASHglssymbol] = ACTIONS(12173), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12173), + [anon_sym_BSLASHglsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12173), + [anon_sym_BSLASHglsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12173), + [anon_sym_BSLASHglsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12173), + [anon_sym_BSLASHglsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12173), + [anon_sym_BSLASHglsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12173), + [anon_sym_BSLASHnewacronym] = ACTIONS(12173), + [anon_sym_BSLASHacrshort] = ACTIONS(12173), + [anon_sym_BSLASHAcrshort] = ACTIONS(12173), + [anon_sym_BSLASHACRshort] = ACTIONS(12173), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12173), + [anon_sym_BSLASHacrlong] = ACTIONS(12173), + [anon_sym_BSLASHAcrlong] = ACTIONS(12173), + [anon_sym_BSLASHACRlong] = ACTIONS(12173), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12173), + [anon_sym_BSLASHacrfull] = ACTIONS(12173), + [anon_sym_BSLASHAcrfull] = ACTIONS(12173), + [anon_sym_BSLASHACRfull] = ACTIONS(12173), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12173), + [anon_sym_BSLASHacs] = ACTIONS(12173), + [anon_sym_BSLASHAcs] = ACTIONS(12173), + [anon_sym_BSLASHacsp] = ACTIONS(12173), + [anon_sym_BSLASHAcsp] = ACTIONS(12173), + [anon_sym_BSLASHacl] = ACTIONS(12173), + [anon_sym_BSLASHAcl] = ACTIONS(12173), + [anon_sym_BSLASHaclp] = ACTIONS(12173), + [anon_sym_BSLASHAclp] = ACTIONS(12173), + [anon_sym_BSLASHacf] = ACTIONS(12173), + [anon_sym_BSLASHAcf] = ACTIONS(12173), + [anon_sym_BSLASHacfp] = ACTIONS(12173), + [anon_sym_BSLASHAcfp] = ACTIONS(12173), + [anon_sym_BSLASHac] = ACTIONS(12173), + [anon_sym_BSLASHAc] = ACTIONS(12173), + [anon_sym_BSLASHacp] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12173), + [anon_sym_BSLASHcolor] = ACTIONS(12173), + [anon_sym_BSLASHcolorbox] = ACTIONS(12173), + [anon_sym_BSLASHtextcolor] = ACTIONS(12173), + [anon_sym_BSLASHpagecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12173), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12173), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12173), + }, + [963] = { + [sym_generic_command_name] = ACTIONS(12177), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12177), + [aux_sym_chapter_token1] = ACTIONS(12177), + [aux_sym_section_token1] = ACTIONS(12177), + [aux_sym_subsection_token1] = ACTIONS(12177), + [aux_sym_subsubsection_token1] = ACTIONS(12177), + [aux_sym_paragraph_token1] = ACTIONS(12177), + [aux_sym_subparagraph_token1] = ACTIONS(12177), + [anon_sym_BSLASHitem] = ACTIONS(12177), + [anon_sym_LBRACK] = ACTIONS(12175), + [anon_sym_LBRACE] = ACTIONS(12175), + [anon_sym_LPAREN] = ACTIONS(12175), + [anon_sym_COMMA] = ACTIONS(12175), + [anon_sym_EQ] = ACTIONS(12175), + [sym_word] = ACTIONS(12175), + [sym_param] = ACTIONS(12175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12175), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12175), + [anon_sym_DOLLAR] = ACTIONS(12177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12175), + [anon_sym_BSLASHbegin] = ACTIONS(12177), + [anon_sym_BSLASHcaption] = ACTIONS(12177), + [anon_sym_BSLASHcite] = ACTIONS(12177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCite] = ACTIONS(12177), + [anon_sym_BSLASHnocite] = ACTIONS(12177), + [anon_sym_BSLASHcitet] = ACTIONS(12177), + [anon_sym_BSLASHcitep] = ACTIONS(12177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteauthor] = ACTIONS(12177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitetitle] = ACTIONS(12177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteyear] = ACTIONS(12177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitedate] = ACTIONS(12177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteurl] = ACTIONS(12177), + [anon_sym_BSLASHfullcite] = ACTIONS(12177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12177), + [anon_sym_BSLASHcitealt] = ACTIONS(12177), + [anon_sym_BSLASHcitealp] = ACTIONS(12177), + [anon_sym_BSLASHcitetext] = ACTIONS(12177), + [anon_sym_BSLASHparencite] = ACTIONS(12177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHParencite] = ACTIONS(12177), + [anon_sym_BSLASHfootcite] = ACTIONS(12177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12177), + [anon_sym_BSLASHtextcite] = ACTIONS(12177), + [anon_sym_BSLASHTextcite] = ACTIONS(12177), + [anon_sym_BSLASHsmartcite] = ACTIONS(12177), + [anon_sym_BSLASHSmartcite] = ACTIONS(12177), + [anon_sym_BSLASHsupercite] = ACTIONS(12177), + [anon_sym_BSLASHautocite] = ACTIONS(12177), + [anon_sym_BSLASHAutocite] = ACTIONS(12177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHvolcite] = ACTIONS(12177), + [anon_sym_BSLASHVolcite] = ACTIONS(12177), + [anon_sym_BSLASHpvolcite] = ACTIONS(12177), + [anon_sym_BSLASHPvolcite] = ACTIONS(12177), + [anon_sym_BSLASHfvolcite] = ACTIONS(12177), + [anon_sym_BSLASHftvolcite] = ACTIONS(12177), + [anon_sym_BSLASHsvolcite] = ACTIONS(12177), + [anon_sym_BSLASHSvolcite] = ACTIONS(12177), + [anon_sym_BSLASHtvolcite] = ACTIONS(12177), + [anon_sym_BSLASHTvolcite] = ACTIONS(12177), + [anon_sym_BSLASHavolcite] = ACTIONS(12177), + [anon_sym_BSLASHAvolcite] = ACTIONS(12177), + [anon_sym_BSLASHnotecite] = ACTIONS(12177), + [anon_sym_BSLASHpnotecite] = ACTIONS(12177), + [anon_sym_BSLASHPnotecite] = ACTIONS(12177), + [anon_sym_BSLASHfnotecite] = ACTIONS(12177), + [anon_sym_BSLASHusepackage] = ACTIONS(12177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12177), + [anon_sym_BSLASHinclude] = ACTIONS(12177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12177), + [anon_sym_BSLASHinput] = ACTIONS(12177), + [anon_sym_BSLASHsubfile] = ACTIONS(12177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12177), + [anon_sym_BSLASHbibliography] = ACTIONS(12177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12177), + [anon_sym_BSLASHincludesvg] = ACTIONS(12177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12177), + [anon_sym_BSLASHimport] = ACTIONS(12177), + [anon_sym_BSLASHsubimport] = ACTIONS(12177), + [anon_sym_BSLASHinputfrom] = ACTIONS(12177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12177), + [anon_sym_BSLASHincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHlabel] = ACTIONS(12177), + [anon_sym_BSLASHref] = ACTIONS(12177), + [anon_sym_BSLASHvref] = ACTIONS(12177), + [anon_sym_BSLASHVref] = ACTIONS(12177), + [anon_sym_BSLASHautoref] = ACTIONS(12177), + [anon_sym_BSLASHpageref] = ACTIONS(12177), + [anon_sym_BSLASHcref] = ACTIONS(12177), + [anon_sym_BSLASHCref] = ACTIONS(12177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnameCref] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHlabelcref] = ACTIONS(12177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12177), + [anon_sym_BSLASHeqref] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange] = ACTIONS(12177), + [anon_sym_BSLASHCrefrange] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewlabel] = ACTIONS(12177), + [anon_sym_BSLASHnewcommand] = ACTIONS(12177), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12177), + [anon_sym_BSLASHgls] = ACTIONS(12177), + [anon_sym_BSLASHGls] = ACTIONS(12177), + [anon_sym_BSLASHGLS] = ACTIONS(12177), + [anon_sym_BSLASHglspl] = ACTIONS(12177), + [anon_sym_BSLASHGlspl] = ACTIONS(12177), + [anon_sym_BSLASHGLSpl] = ACTIONS(12177), + [anon_sym_BSLASHglsdisp] = ACTIONS(12177), + [anon_sym_BSLASHglslink] = ACTIONS(12177), + [anon_sym_BSLASHglstext] = ACTIONS(12177), + [anon_sym_BSLASHGlstext] = ACTIONS(12177), + [anon_sym_BSLASHGLStext] = ACTIONS(12177), + [anon_sym_BSLASHglsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12177), + [anon_sym_BSLASHglsplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSplural] = ACTIONS(12177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHglsname] = ACTIONS(12177), + [anon_sym_BSLASHGlsname] = ACTIONS(12177), + [anon_sym_BSLASHGLSname] = ACTIONS(12177), + [anon_sym_BSLASHglssymbol] = ACTIONS(12177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12177), + [anon_sym_BSLASHglsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12177), + [anon_sym_BSLASHglsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12177), + [anon_sym_BSLASHglsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12177), + [anon_sym_BSLASHglsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12177), + [anon_sym_BSLASHglsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12177), + [anon_sym_BSLASHnewacronym] = ACTIONS(12177), + [anon_sym_BSLASHacrshort] = ACTIONS(12177), + [anon_sym_BSLASHAcrshort] = ACTIONS(12177), + [anon_sym_BSLASHACRshort] = ACTIONS(12177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12177), + [anon_sym_BSLASHacrlong] = ACTIONS(12177), + [anon_sym_BSLASHAcrlong] = ACTIONS(12177), + [anon_sym_BSLASHACRlong] = ACTIONS(12177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12177), + [anon_sym_BSLASHacrfull] = ACTIONS(12177), + [anon_sym_BSLASHAcrfull] = ACTIONS(12177), + [anon_sym_BSLASHACRfull] = ACTIONS(12177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12177), + [anon_sym_BSLASHacs] = ACTIONS(12177), + [anon_sym_BSLASHAcs] = ACTIONS(12177), + [anon_sym_BSLASHacsp] = ACTIONS(12177), + [anon_sym_BSLASHAcsp] = ACTIONS(12177), + [anon_sym_BSLASHacl] = ACTIONS(12177), + [anon_sym_BSLASHAcl] = ACTIONS(12177), + [anon_sym_BSLASHaclp] = ACTIONS(12177), + [anon_sym_BSLASHAclp] = ACTIONS(12177), + [anon_sym_BSLASHacf] = ACTIONS(12177), + [anon_sym_BSLASHAcf] = ACTIONS(12177), + [anon_sym_BSLASHacfp] = ACTIONS(12177), + [anon_sym_BSLASHAcfp] = ACTIONS(12177), + [anon_sym_BSLASHac] = ACTIONS(12177), + [anon_sym_BSLASHAc] = ACTIONS(12177), + [anon_sym_BSLASHacp] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12177), + [anon_sym_BSLASHcolor] = ACTIONS(12177), + [anon_sym_BSLASHcolorbox] = ACTIONS(12177), + [anon_sym_BSLASHtextcolor] = ACTIONS(12177), + [anon_sym_BSLASHpagecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12177), + }, + [964] = { + [sym_generic_command_name] = ACTIONS(12197), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12197), + [aux_sym_chapter_token1] = ACTIONS(12197), + [aux_sym_section_token1] = ACTIONS(12197), + [aux_sym_subsection_token1] = ACTIONS(12197), + [aux_sym_subsubsection_token1] = ACTIONS(12197), + [aux_sym_paragraph_token1] = ACTIONS(12197), + [aux_sym_subparagraph_token1] = ACTIONS(12197), + [anon_sym_BSLASHitem] = ACTIONS(12197), + [anon_sym_LBRACK] = ACTIONS(12195), + [anon_sym_LBRACE] = ACTIONS(12195), + [anon_sym_LPAREN] = ACTIONS(12195), + [anon_sym_COMMA] = ACTIONS(12195), + [anon_sym_EQ] = ACTIONS(12195), + [sym_word] = ACTIONS(12195), + [sym_param] = ACTIONS(12195), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12195), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12195), + [anon_sym_DOLLAR] = ACTIONS(12197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12195), + [anon_sym_BSLASHbegin] = ACTIONS(12197), + [anon_sym_BSLASHcaption] = ACTIONS(12197), + [anon_sym_BSLASHcite] = ACTIONS(12197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCite] = ACTIONS(12197), + [anon_sym_BSLASHnocite] = ACTIONS(12197), + [anon_sym_BSLASHcitet] = ACTIONS(12197), + [anon_sym_BSLASHcitep] = ACTIONS(12197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteauthor] = ACTIONS(12197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitetitle] = ACTIONS(12197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteyear] = ACTIONS(12197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitedate] = ACTIONS(12197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteurl] = ACTIONS(12197), + [anon_sym_BSLASHfullcite] = ACTIONS(12197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12197), + [anon_sym_BSLASHcitealt] = ACTIONS(12197), + [anon_sym_BSLASHcitealp] = ACTIONS(12197), + [anon_sym_BSLASHcitetext] = ACTIONS(12197), + [anon_sym_BSLASHparencite] = ACTIONS(12197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHParencite] = ACTIONS(12197), + [anon_sym_BSLASHfootcite] = ACTIONS(12197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12197), + [anon_sym_BSLASHtextcite] = ACTIONS(12197), + [anon_sym_BSLASHTextcite] = ACTIONS(12197), + [anon_sym_BSLASHsmartcite] = ACTIONS(12197), + [anon_sym_BSLASHSmartcite] = ACTIONS(12197), + [anon_sym_BSLASHsupercite] = ACTIONS(12197), + [anon_sym_BSLASHautocite] = ACTIONS(12197), + [anon_sym_BSLASHAutocite] = ACTIONS(12197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHvolcite] = ACTIONS(12197), + [anon_sym_BSLASHVolcite] = ACTIONS(12197), + [anon_sym_BSLASHpvolcite] = ACTIONS(12197), + [anon_sym_BSLASHPvolcite] = ACTIONS(12197), + [anon_sym_BSLASHfvolcite] = ACTIONS(12197), + [anon_sym_BSLASHftvolcite] = ACTIONS(12197), + [anon_sym_BSLASHsvolcite] = ACTIONS(12197), + [anon_sym_BSLASHSvolcite] = ACTIONS(12197), + [anon_sym_BSLASHtvolcite] = ACTIONS(12197), + [anon_sym_BSLASHTvolcite] = ACTIONS(12197), + [anon_sym_BSLASHavolcite] = ACTIONS(12197), + [anon_sym_BSLASHAvolcite] = ACTIONS(12197), + [anon_sym_BSLASHnotecite] = ACTIONS(12197), + [anon_sym_BSLASHpnotecite] = ACTIONS(12197), + [anon_sym_BSLASHPnotecite] = ACTIONS(12197), + [anon_sym_BSLASHfnotecite] = ACTIONS(12197), + [anon_sym_BSLASHusepackage] = ACTIONS(12197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12197), + [anon_sym_BSLASHinclude] = ACTIONS(12197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12197), + [anon_sym_BSLASHinput] = ACTIONS(12197), + [anon_sym_BSLASHsubfile] = ACTIONS(12197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12197), + [anon_sym_BSLASHbibliography] = ACTIONS(12197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12197), + [anon_sym_BSLASHincludesvg] = ACTIONS(12197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12197), + [anon_sym_BSLASHimport] = ACTIONS(12197), + [anon_sym_BSLASHsubimport] = ACTIONS(12197), + [anon_sym_BSLASHinputfrom] = ACTIONS(12197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12197), + [anon_sym_BSLASHincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHlabel] = ACTIONS(12197), + [anon_sym_BSLASHref] = ACTIONS(12197), + [anon_sym_BSLASHvref] = ACTIONS(12197), + [anon_sym_BSLASHVref] = ACTIONS(12197), + [anon_sym_BSLASHautoref] = ACTIONS(12197), + [anon_sym_BSLASHpageref] = ACTIONS(12197), + [anon_sym_BSLASHcref] = ACTIONS(12197), + [anon_sym_BSLASHCref] = ACTIONS(12197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnameCref] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHlabelcref] = ACTIONS(12197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12197), + [anon_sym_BSLASHeqref] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange] = ACTIONS(12197), + [anon_sym_BSLASHCrefrange] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewlabel] = ACTIONS(12197), + [anon_sym_BSLASHnewcommand] = ACTIONS(12197), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12197), + [anon_sym_BSLASHgls] = ACTIONS(12197), + [anon_sym_BSLASHGls] = ACTIONS(12197), + [anon_sym_BSLASHGLS] = ACTIONS(12197), + [anon_sym_BSLASHglspl] = ACTIONS(12197), + [anon_sym_BSLASHGlspl] = ACTIONS(12197), + [anon_sym_BSLASHGLSpl] = ACTIONS(12197), + [anon_sym_BSLASHglsdisp] = ACTIONS(12197), + [anon_sym_BSLASHglslink] = ACTIONS(12197), + [anon_sym_BSLASHglstext] = ACTIONS(12197), + [anon_sym_BSLASHGlstext] = ACTIONS(12197), + [anon_sym_BSLASHGLStext] = ACTIONS(12197), + [anon_sym_BSLASHglsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12197), + [anon_sym_BSLASHglsplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSplural] = ACTIONS(12197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHglsname] = ACTIONS(12197), + [anon_sym_BSLASHGlsname] = ACTIONS(12197), + [anon_sym_BSLASHGLSname] = ACTIONS(12197), + [anon_sym_BSLASHglssymbol] = ACTIONS(12197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12197), + [anon_sym_BSLASHglsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12197), + [anon_sym_BSLASHglsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12197), + [anon_sym_BSLASHglsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12197), + [anon_sym_BSLASHglsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12197), + [anon_sym_BSLASHglsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12197), + [anon_sym_BSLASHnewacronym] = ACTIONS(12197), + [anon_sym_BSLASHacrshort] = ACTIONS(12197), + [anon_sym_BSLASHAcrshort] = ACTIONS(12197), + [anon_sym_BSLASHACRshort] = ACTIONS(12197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12197), + [anon_sym_BSLASHacrlong] = ACTIONS(12197), + [anon_sym_BSLASHAcrlong] = ACTIONS(12197), + [anon_sym_BSLASHACRlong] = ACTIONS(12197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12197), + [anon_sym_BSLASHacrfull] = ACTIONS(12197), + [anon_sym_BSLASHAcrfull] = ACTIONS(12197), + [anon_sym_BSLASHACRfull] = ACTIONS(12197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12197), + [anon_sym_BSLASHacs] = ACTIONS(12197), + [anon_sym_BSLASHAcs] = ACTIONS(12197), + [anon_sym_BSLASHacsp] = ACTIONS(12197), + [anon_sym_BSLASHAcsp] = ACTIONS(12197), + [anon_sym_BSLASHacl] = ACTIONS(12197), + [anon_sym_BSLASHAcl] = ACTIONS(12197), + [anon_sym_BSLASHaclp] = ACTIONS(12197), + [anon_sym_BSLASHAclp] = ACTIONS(12197), + [anon_sym_BSLASHacf] = ACTIONS(12197), + [anon_sym_BSLASHAcf] = ACTIONS(12197), + [anon_sym_BSLASHacfp] = ACTIONS(12197), + [anon_sym_BSLASHAcfp] = ACTIONS(12197), + [anon_sym_BSLASHac] = ACTIONS(12197), + [anon_sym_BSLASHAc] = ACTIONS(12197), + [anon_sym_BSLASHacp] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12197), + [anon_sym_BSLASHcolor] = ACTIONS(12197), + [anon_sym_BSLASHcolorbox] = ACTIONS(12197), + [anon_sym_BSLASHtextcolor] = ACTIONS(12197), + [anon_sym_BSLASHpagecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12197), + }, + [965] = { + [sym_generic_command_name] = ACTIONS(12209), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12209), + [aux_sym_chapter_token1] = ACTIONS(12209), + [aux_sym_section_token1] = ACTIONS(12209), + [aux_sym_subsection_token1] = ACTIONS(12209), + [aux_sym_subsubsection_token1] = ACTIONS(12209), + [aux_sym_paragraph_token1] = ACTIONS(12209), + [aux_sym_subparagraph_token1] = ACTIONS(12209), + [anon_sym_BSLASHitem] = ACTIONS(12209), + [anon_sym_LBRACK] = ACTIONS(12207), + [anon_sym_LBRACE] = ACTIONS(12207), + [anon_sym_LPAREN] = ACTIONS(12207), + [anon_sym_COMMA] = ACTIONS(12207), + [anon_sym_EQ] = ACTIONS(12207), + [sym_word] = ACTIONS(12207), + [sym_param] = ACTIONS(12207), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12207), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12207), + [anon_sym_DOLLAR] = ACTIONS(12209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12207), + [anon_sym_BSLASHbegin] = ACTIONS(12209), + [anon_sym_BSLASHcaption] = ACTIONS(12209), + [anon_sym_BSLASHcite] = ACTIONS(12209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCite] = ACTIONS(12209), + [anon_sym_BSLASHnocite] = ACTIONS(12209), + [anon_sym_BSLASHcitet] = ACTIONS(12209), + [anon_sym_BSLASHcitep] = ACTIONS(12209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteauthor] = ACTIONS(12209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitetitle] = ACTIONS(12209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteyear] = ACTIONS(12209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitedate] = ACTIONS(12209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteurl] = ACTIONS(12209), + [anon_sym_BSLASHfullcite] = ACTIONS(12209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12209), + [anon_sym_BSLASHcitealt] = ACTIONS(12209), + [anon_sym_BSLASHcitealp] = ACTIONS(12209), + [anon_sym_BSLASHcitetext] = ACTIONS(12209), + [anon_sym_BSLASHparencite] = ACTIONS(12209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHParencite] = ACTIONS(12209), + [anon_sym_BSLASHfootcite] = ACTIONS(12209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12209), + [anon_sym_BSLASHtextcite] = ACTIONS(12209), + [anon_sym_BSLASHTextcite] = ACTIONS(12209), + [anon_sym_BSLASHsmartcite] = ACTIONS(12209), + [anon_sym_BSLASHSmartcite] = ACTIONS(12209), + [anon_sym_BSLASHsupercite] = ACTIONS(12209), + [anon_sym_BSLASHautocite] = ACTIONS(12209), + [anon_sym_BSLASHAutocite] = ACTIONS(12209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHvolcite] = ACTIONS(12209), + [anon_sym_BSLASHVolcite] = ACTIONS(12209), + [anon_sym_BSLASHpvolcite] = ACTIONS(12209), + [anon_sym_BSLASHPvolcite] = ACTIONS(12209), + [anon_sym_BSLASHfvolcite] = ACTIONS(12209), + [anon_sym_BSLASHftvolcite] = ACTIONS(12209), + [anon_sym_BSLASHsvolcite] = ACTIONS(12209), + [anon_sym_BSLASHSvolcite] = ACTIONS(12209), + [anon_sym_BSLASHtvolcite] = ACTIONS(12209), + [anon_sym_BSLASHTvolcite] = ACTIONS(12209), + [anon_sym_BSLASHavolcite] = ACTIONS(12209), + [anon_sym_BSLASHAvolcite] = ACTIONS(12209), + [anon_sym_BSLASHnotecite] = ACTIONS(12209), + [anon_sym_BSLASHpnotecite] = ACTIONS(12209), + [anon_sym_BSLASHPnotecite] = ACTIONS(12209), + [anon_sym_BSLASHfnotecite] = ACTIONS(12209), + [anon_sym_BSLASHusepackage] = ACTIONS(12209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12209), + [anon_sym_BSLASHinclude] = ACTIONS(12209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12209), + [anon_sym_BSLASHinput] = ACTIONS(12209), + [anon_sym_BSLASHsubfile] = ACTIONS(12209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12209), + [anon_sym_BSLASHbibliography] = ACTIONS(12209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12209), + [anon_sym_BSLASHincludesvg] = ACTIONS(12209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12209), + [anon_sym_BSLASHimport] = ACTIONS(12209), + [anon_sym_BSLASHsubimport] = ACTIONS(12209), + [anon_sym_BSLASHinputfrom] = ACTIONS(12209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12209), + [anon_sym_BSLASHincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHlabel] = ACTIONS(12209), + [anon_sym_BSLASHref] = ACTIONS(12209), + [anon_sym_BSLASHvref] = ACTIONS(12209), + [anon_sym_BSLASHVref] = ACTIONS(12209), + [anon_sym_BSLASHautoref] = ACTIONS(12209), + [anon_sym_BSLASHpageref] = ACTIONS(12209), + [anon_sym_BSLASHcref] = ACTIONS(12209), + [anon_sym_BSLASHCref] = ACTIONS(12209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnameCref] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHlabelcref] = ACTIONS(12209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12209), + [anon_sym_BSLASHeqref] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange] = ACTIONS(12209), + [anon_sym_BSLASHCrefrange] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewlabel] = ACTIONS(12209), + [anon_sym_BSLASHnewcommand] = ACTIONS(12209), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12209), + [anon_sym_BSLASHgls] = ACTIONS(12209), + [anon_sym_BSLASHGls] = ACTIONS(12209), + [anon_sym_BSLASHGLS] = ACTIONS(12209), + [anon_sym_BSLASHglspl] = ACTIONS(12209), + [anon_sym_BSLASHGlspl] = ACTIONS(12209), + [anon_sym_BSLASHGLSpl] = ACTIONS(12209), + [anon_sym_BSLASHglsdisp] = ACTIONS(12209), + [anon_sym_BSLASHglslink] = ACTIONS(12209), + [anon_sym_BSLASHglstext] = ACTIONS(12209), + [anon_sym_BSLASHGlstext] = ACTIONS(12209), + [anon_sym_BSLASHGLStext] = ACTIONS(12209), + [anon_sym_BSLASHglsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12209), + [anon_sym_BSLASHglsplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSplural] = ACTIONS(12209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHglsname] = ACTIONS(12209), + [anon_sym_BSLASHGlsname] = ACTIONS(12209), + [anon_sym_BSLASHGLSname] = ACTIONS(12209), + [anon_sym_BSLASHglssymbol] = ACTIONS(12209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12209), + [anon_sym_BSLASHglsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12209), + [anon_sym_BSLASHglsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12209), + [anon_sym_BSLASHglsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12209), + [anon_sym_BSLASHglsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12209), + [anon_sym_BSLASHglsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12209), + [anon_sym_BSLASHnewacronym] = ACTIONS(12209), + [anon_sym_BSLASHacrshort] = ACTIONS(12209), + [anon_sym_BSLASHAcrshort] = ACTIONS(12209), + [anon_sym_BSLASHACRshort] = ACTIONS(12209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12209), + [anon_sym_BSLASHacrlong] = ACTIONS(12209), + [anon_sym_BSLASHAcrlong] = ACTIONS(12209), + [anon_sym_BSLASHACRlong] = ACTIONS(12209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12209), + [anon_sym_BSLASHacrfull] = ACTIONS(12209), + [anon_sym_BSLASHAcrfull] = ACTIONS(12209), + [anon_sym_BSLASHACRfull] = ACTIONS(12209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12209), + [anon_sym_BSLASHacs] = ACTIONS(12209), + [anon_sym_BSLASHAcs] = ACTIONS(12209), + [anon_sym_BSLASHacsp] = ACTIONS(12209), + [anon_sym_BSLASHAcsp] = ACTIONS(12209), + [anon_sym_BSLASHacl] = ACTIONS(12209), + [anon_sym_BSLASHAcl] = ACTIONS(12209), + [anon_sym_BSLASHaclp] = ACTIONS(12209), + [anon_sym_BSLASHAclp] = ACTIONS(12209), + [anon_sym_BSLASHacf] = ACTIONS(12209), + [anon_sym_BSLASHAcf] = ACTIONS(12209), + [anon_sym_BSLASHacfp] = ACTIONS(12209), + [anon_sym_BSLASHAcfp] = ACTIONS(12209), + [anon_sym_BSLASHac] = ACTIONS(12209), + [anon_sym_BSLASHAc] = ACTIONS(12209), + [anon_sym_BSLASHacp] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12209), + [anon_sym_BSLASHcolor] = ACTIONS(12209), + [anon_sym_BSLASHcolorbox] = ACTIONS(12209), + [anon_sym_BSLASHtextcolor] = ACTIONS(12209), + [anon_sym_BSLASHpagecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12209), + }, + [966] = { + [sym_generic_command_name] = ACTIONS(12497), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12497), + [aux_sym_chapter_token1] = ACTIONS(12497), + [aux_sym_section_token1] = ACTIONS(12497), + [aux_sym_subsection_token1] = ACTIONS(12497), + [aux_sym_subsubsection_token1] = ACTIONS(12497), + [aux_sym_paragraph_token1] = ACTIONS(12497), + [aux_sym_subparagraph_token1] = ACTIONS(12497), + [anon_sym_BSLASHitem] = ACTIONS(12497), + [anon_sym_LBRACK] = ACTIONS(12495), + [anon_sym_LBRACE] = ACTIONS(12495), + [anon_sym_LPAREN] = ACTIONS(12495), + [anon_sym_COMMA] = ACTIONS(12495), + [anon_sym_EQ] = ACTIONS(12495), + [sym_word] = ACTIONS(12495), + [sym_param] = ACTIONS(12495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12495), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12495), + [anon_sym_DOLLAR] = ACTIONS(12497), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12495), + [anon_sym_BSLASH_RPAREN] = ACTIONS(12495), + [anon_sym_BSLASHbegin] = ACTIONS(12497), + [anon_sym_BSLASHcaption] = ACTIONS(12497), + [anon_sym_BSLASHcite] = ACTIONS(12497), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCite] = ACTIONS(12497), + [anon_sym_BSLASHnocite] = ACTIONS(12497), + [anon_sym_BSLASHcitet] = ACTIONS(12497), + [anon_sym_BSLASHcitep] = ACTIONS(12497), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteauthor] = ACTIONS(12497), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12497), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitetitle] = ACTIONS(12497), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteyear] = ACTIONS(12497), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitedate] = ACTIONS(12497), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteurl] = ACTIONS(12497), + [anon_sym_BSLASHfullcite] = ACTIONS(12497), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12497), + [anon_sym_BSLASHcitealt] = ACTIONS(12497), + [anon_sym_BSLASHcitealp] = ACTIONS(12497), + [anon_sym_BSLASHcitetext] = ACTIONS(12497), + [anon_sym_BSLASHparencite] = ACTIONS(12497), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHParencite] = ACTIONS(12497), + [anon_sym_BSLASHfootcite] = ACTIONS(12497), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12497), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12497), + [anon_sym_BSLASHtextcite] = ACTIONS(12497), + [anon_sym_BSLASHTextcite] = ACTIONS(12497), + [anon_sym_BSLASHsmartcite] = ACTIONS(12497), + [anon_sym_BSLASHSmartcite] = ACTIONS(12497), + [anon_sym_BSLASHsupercite] = ACTIONS(12497), + [anon_sym_BSLASHautocite] = ACTIONS(12497), + [anon_sym_BSLASHAutocite] = ACTIONS(12497), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHvolcite] = ACTIONS(12497), + [anon_sym_BSLASHVolcite] = ACTIONS(12497), + [anon_sym_BSLASHpvolcite] = ACTIONS(12497), + [anon_sym_BSLASHPvolcite] = ACTIONS(12497), + [anon_sym_BSLASHfvolcite] = ACTIONS(12497), + [anon_sym_BSLASHftvolcite] = ACTIONS(12497), + [anon_sym_BSLASHsvolcite] = ACTIONS(12497), + [anon_sym_BSLASHSvolcite] = ACTIONS(12497), + [anon_sym_BSLASHtvolcite] = ACTIONS(12497), + [anon_sym_BSLASHTvolcite] = ACTIONS(12497), + [anon_sym_BSLASHavolcite] = ACTIONS(12497), + [anon_sym_BSLASHAvolcite] = ACTIONS(12497), + [anon_sym_BSLASHnotecite] = ACTIONS(12497), + [anon_sym_BSLASHpnotecite] = ACTIONS(12497), + [anon_sym_BSLASHPnotecite] = ACTIONS(12497), + [anon_sym_BSLASHfnotecite] = ACTIONS(12497), + [anon_sym_BSLASHusepackage] = ACTIONS(12497), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12497), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12497), + [anon_sym_BSLASHinclude] = ACTIONS(12497), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12497), + [anon_sym_BSLASHinput] = ACTIONS(12497), + [anon_sym_BSLASHsubfile] = ACTIONS(12497), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12497), + [anon_sym_BSLASHbibliography] = ACTIONS(12497), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12497), + [anon_sym_BSLASHincludesvg] = ACTIONS(12497), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12497), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12497), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12497), + [anon_sym_BSLASHimport] = ACTIONS(12497), + [anon_sym_BSLASHsubimport] = ACTIONS(12497), + [anon_sym_BSLASHinputfrom] = ACTIONS(12497), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12497), + [anon_sym_BSLASHincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHlabel] = ACTIONS(12497), + [anon_sym_BSLASHref] = ACTIONS(12497), + [anon_sym_BSLASHvref] = ACTIONS(12497), + [anon_sym_BSLASHVref] = ACTIONS(12497), + [anon_sym_BSLASHautoref] = ACTIONS(12497), + [anon_sym_BSLASHpageref] = ACTIONS(12497), + [anon_sym_BSLASHcref] = ACTIONS(12497), + [anon_sym_BSLASHCref] = ACTIONS(12497), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnameCref] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHlabelcref] = ACTIONS(12497), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12497), + [anon_sym_BSLASHeqref] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange] = ACTIONS(12497), + [anon_sym_BSLASHCrefrange] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewlabel] = ACTIONS(12497), + [anon_sym_BSLASHnewcommand] = ACTIONS(12497), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12497), + [anon_sym_BSLASHgls] = ACTIONS(12497), + [anon_sym_BSLASHGls] = ACTIONS(12497), + [anon_sym_BSLASHGLS] = ACTIONS(12497), + [anon_sym_BSLASHglspl] = ACTIONS(12497), + [anon_sym_BSLASHGlspl] = ACTIONS(12497), + [anon_sym_BSLASHGLSpl] = ACTIONS(12497), + [anon_sym_BSLASHglsdisp] = ACTIONS(12497), + [anon_sym_BSLASHglslink] = ACTIONS(12497), + [anon_sym_BSLASHglstext] = ACTIONS(12497), + [anon_sym_BSLASHGlstext] = ACTIONS(12497), + [anon_sym_BSLASHGLStext] = ACTIONS(12497), + [anon_sym_BSLASHglsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12497), + [anon_sym_BSLASHglsplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSplural] = ACTIONS(12497), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHglsname] = ACTIONS(12497), + [anon_sym_BSLASHGlsname] = ACTIONS(12497), + [anon_sym_BSLASHGLSname] = ACTIONS(12497), + [anon_sym_BSLASHglssymbol] = ACTIONS(12497), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12497), + [anon_sym_BSLASHglsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12497), + [anon_sym_BSLASHglsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12497), + [anon_sym_BSLASHglsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12497), + [anon_sym_BSLASHglsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12497), + [anon_sym_BSLASHglsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12497), + [anon_sym_BSLASHnewacronym] = ACTIONS(12497), + [anon_sym_BSLASHacrshort] = ACTIONS(12497), + [anon_sym_BSLASHAcrshort] = ACTIONS(12497), + [anon_sym_BSLASHACRshort] = ACTIONS(12497), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12497), + [anon_sym_BSLASHacrlong] = ACTIONS(12497), + [anon_sym_BSLASHAcrlong] = ACTIONS(12497), + [anon_sym_BSLASHACRlong] = ACTIONS(12497), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12497), + [anon_sym_BSLASHacrfull] = ACTIONS(12497), + [anon_sym_BSLASHAcrfull] = ACTIONS(12497), + [anon_sym_BSLASHACRfull] = ACTIONS(12497), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12497), + [anon_sym_BSLASHacs] = ACTIONS(12497), + [anon_sym_BSLASHAcs] = ACTIONS(12497), + [anon_sym_BSLASHacsp] = ACTIONS(12497), + [anon_sym_BSLASHAcsp] = ACTIONS(12497), + [anon_sym_BSLASHacl] = ACTIONS(12497), + [anon_sym_BSLASHAcl] = ACTIONS(12497), + [anon_sym_BSLASHaclp] = ACTIONS(12497), + [anon_sym_BSLASHAclp] = ACTIONS(12497), + [anon_sym_BSLASHacf] = ACTIONS(12497), + [anon_sym_BSLASHAcf] = ACTIONS(12497), + [anon_sym_BSLASHacfp] = ACTIONS(12497), + [anon_sym_BSLASHAcfp] = ACTIONS(12497), + [anon_sym_BSLASHac] = ACTIONS(12497), + [anon_sym_BSLASHAc] = ACTIONS(12497), + [anon_sym_BSLASHacp] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12497), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12497), + [anon_sym_BSLASHcolor] = ACTIONS(12497), + [anon_sym_BSLASHcolorbox] = ACTIONS(12497), + [anon_sym_BSLASHtextcolor] = ACTIONS(12497), + [anon_sym_BSLASHpagecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12497), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12497), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12497), + }, + [967] = { + [sym_generic_command_name] = ACTIONS(12275), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12275), + [aux_sym_chapter_token1] = ACTIONS(12275), + [aux_sym_section_token1] = ACTIONS(12275), + [aux_sym_subsection_token1] = ACTIONS(12275), + [aux_sym_subsubsection_token1] = ACTIONS(12275), + [aux_sym_paragraph_token1] = ACTIONS(12275), + [aux_sym_subparagraph_token1] = ACTIONS(12275), + [anon_sym_BSLASHitem] = ACTIONS(12275), + [anon_sym_LBRACK] = ACTIONS(12273), + [anon_sym_LBRACE] = ACTIONS(12273), + [anon_sym_LPAREN] = ACTIONS(12273), + [anon_sym_COMMA] = ACTIONS(12273), + [anon_sym_EQ] = ACTIONS(12273), + [sym_word] = ACTIONS(12273), + [sym_param] = ACTIONS(12273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12273), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12273), + [anon_sym_DOLLAR] = ACTIONS(12275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12273), + [anon_sym_BSLASHbegin] = ACTIONS(12275), + [anon_sym_BSLASHcaption] = ACTIONS(12275), + [anon_sym_BSLASHcite] = ACTIONS(12275), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCite] = ACTIONS(12275), + [anon_sym_BSLASHnocite] = ACTIONS(12275), + [anon_sym_BSLASHcitet] = ACTIONS(12275), + [anon_sym_BSLASHcitep] = ACTIONS(12275), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteauthor] = ACTIONS(12275), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12275), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitetitle] = ACTIONS(12275), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteyear] = ACTIONS(12275), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitedate] = ACTIONS(12275), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteurl] = ACTIONS(12275), + [anon_sym_BSLASHfullcite] = ACTIONS(12275), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12275), + [anon_sym_BSLASHcitealt] = ACTIONS(12275), + [anon_sym_BSLASHcitealp] = ACTIONS(12275), + [anon_sym_BSLASHcitetext] = ACTIONS(12275), + [anon_sym_BSLASHparencite] = ACTIONS(12275), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHParencite] = ACTIONS(12275), + [anon_sym_BSLASHfootcite] = ACTIONS(12275), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12275), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12275), + [anon_sym_BSLASHtextcite] = ACTIONS(12275), + [anon_sym_BSLASHTextcite] = ACTIONS(12275), + [anon_sym_BSLASHsmartcite] = ACTIONS(12275), + [anon_sym_BSLASHSmartcite] = ACTIONS(12275), + [anon_sym_BSLASHsupercite] = ACTIONS(12275), + [anon_sym_BSLASHautocite] = ACTIONS(12275), + [anon_sym_BSLASHAutocite] = ACTIONS(12275), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHvolcite] = ACTIONS(12275), + [anon_sym_BSLASHVolcite] = ACTIONS(12275), + [anon_sym_BSLASHpvolcite] = ACTIONS(12275), + [anon_sym_BSLASHPvolcite] = ACTIONS(12275), + [anon_sym_BSLASHfvolcite] = ACTIONS(12275), + [anon_sym_BSLASHftvolcite] = ACTIONS(12275), + [anon_sym_BSLASHsvolcite] = ACTIONS(12275), + [anon_sym_BSLASHSvolcite] = ACTIONS(12275), + [anon_sym_BSLASHtvolcite] = ACTIONS(12275), + [anon_sym_BSLASHTvolcite] = ACTIONS(12275), + [anon_sym_BSLASHavolcite] = ACTIONS(12275), + [anon_sym_BSLASHAvolcite] = ACTIONS(12275), + [anon_sym_BSLASHnotecite] = ACTIONS(12275), + [anon_sym_BSLASHpnotecite] = ACTIONS(12275), + [anon_sym_BSLASHPnotecite] = ACTIONS(12275), + [anon_sym_BSLASHfnotecite] = ACTIONS(12275), + [anon_sym_BSLASHusepackage] = ACTIONS(12275), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12275), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12275), + [anon_sym_BSLASHinclude] = ACTIONS(12275), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12275), + [anon_sym_BSLASHinput] = ACTIONS(12275), + [anon_sym_BSLASHsubfile] = ACTIONS(12275), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12275), + [anon_sym_BSLASHbibliography] = ACTIONS(12275), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12275), + [anon_sym_BSLASHincludesvg] = ACTIONS(12275), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12275), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12275), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12275), + [anon_sym_BSLASHimport] = ACTIONS(12275), + [anon_sym_BSLASHsubimport] = ACTIONS(12275), + [anon_sym_BSLASHinputfrom] = ACTIONS(12275), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12275), + [anon_sym_BSLASHincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHlabel] = ACTIONS(12275), + [anon_sym_BSLASHref] = ACTIONS(12275), + [anon_sym_BSLASHvref] = ACTIONS(12275), + [anon_sym_BSLASHVref] = ACTIONS(12275), + [anon_sym_BSLASHautoref] = ACTIONS(12275), + [anon_sym_BSLASHpageref] = ACTIONS(12275), + [anon_sym_BSLASHcref] = ACTIONS(12275), + [anon_sym_BSLASHCref] = ACTIONS(12275), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnameCref] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHlabelcref] = ACTIONS(12275), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12275), + [anon_sym_BSLASHeqref] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange] = ACTIONS(12275), + [anon_sym_BSLASHCrefrange] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewlabel] = ACTIONS(12275), + [anon_sym_BSLASHnewcommand] = ACTIONS(12275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12275), + [anon_sym_BSLASHgls] = ACTIONS(12275), + [anon_sym_BSLASHGls] = ACTIONS(12275), + [anon_sym_BSLASHGLS] = ACTIONS(12275), + [anon_sym_BSLASHglspl] = ACTIONS(12275), + [anon_sym_BSLASHGlspl] = ACTIONS(12275), + [anon_sym_BSLASHGLSpl] = ACTIONS(12275), + [anon_sym_BSLASHglsdisp] = ACTIONS(12275), + [anon_sym_BSLASHglslink] = ACTIONS(12275), + [anon_sym_BSLASHglstext] = ACTIONS(12275), + [anon_sym_BSLASHGlstext] = ACTIONS(12275), + [anon_sym_BSLASHGLStext] = ACTIONS(12275), + [anon_sym_BSLASHglsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12275), + [anon_sym_BSLASHglsplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSplural] = ACTIONS(12275), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHglsname] = ACTIONS(12275), + [anon_sym_BSLASHGlsname] = ACTIONS(12275), + [anon_sym_BSLASHGLSname] = ACTIONS(12275), + [anon_sym_BSLASHglssymbol] = ACTIONS(12275), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12275), + [anon_sym_BSLASHglsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12275), + [anon_sym_BSLASHglsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12275), + [anon_sym_BSLASHglsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12275), + [anon_sym_BSLASHglsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12275), + [anon_sym_BSLASHglsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12275), + [anon_sym_BSLASHnewacronym] = ACTIONS(12275), + [anon_sym_BSLASHacrshort] = ACTIONS(12275), + [anon_sym_BSLASHAcrshort] = ACTIONS(12275), + [anon_sym_BSLASHACRshort] = ACTIONS(12275), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12275), + [anon_sym_BSLASHacrlong] = ACTIONS(12275), + [anon_sym_BSLASHAcrlong] = ACTIONS(12275), + [anon_sym_BSLASHACRlong] = ACTIONS(12275), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12275), + [anon_sym_BSLASHacrfull] = ACTIONS(12275), + [anon_sym_BSLASHAcrfull] = ACTIONS(12275), + [anon_sym_BSLASHACRfull] = ACTIONS(12275), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12275), + [anon_sym_BSLASHacs] = ACTIONS(12275), + [anon_sym_BSLASHAcs] = ACTIONS(12275), + [anon_sym_BSLASHacsp] = ACTIONS(12275), + [anon_sym_BSLASHAcsp] = ACTIONS(12275), + [anon_sym_BSLASHacl] = ACTIONS(12275), + [anon_sym_BSLASHAcl] = ACTIONS(12275), + [anon_sym_BSLASHaclp] = ACTIONS(12275), + [anon_sym_BSLASHAclp] = ACTIONS(12275), + [anon_sym_BSLASHacf] = ACTIONS(12275), + [anon_sym_BSLASHAcf] = ACTIONS(12275), + [anon_sym_BSLASHacfp] = ACTIONS(12275), + [anon_sym_BSLASHAcfp] = ACTIONS(12275), + [anon_sym_BSLASHac] = ACTIONS(12275), + [anon_sym_BSLASHAc] = ACTIONS(12275), + [anon_sym_BSLASHacp] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12275), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12275), + [anon_sym_BSLASHcolor] = ACTIONS(12275), + [anon_sym_BSLASHcolorbox] = ACTIONS(12275), + [anon_sym_BSLASHtextcolor] = ACTIONS(12275), + [anon_sym_BSLASHpagecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12275), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12275), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12275), + }, + [968] = { + [sym_generic_command_name] = ACTIONS(12283), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12283), + [aux_sym_chapter_token1] = ACTIONS(12283), + [aux_sym_section_token1] = ACTIONS(12283), + [aux_sym_subsection_token1] = ACTIONS(12283), + [aux_sym_subsubsection_token1] = ACTIONS(12283), + [aux_sym_paragraph_token1] = ACTIONS(12283), + [aux_sym_subparagraph_token1] = ACTIONS(12283), + [anon_sym_BSLASHitem] = ACTIONS(12283), + [anon_sym_LBRACK] = ACTIONS(12281), + [anon_sym_LBRACE] = ACTIONS(12281), + [anon_sym_LPAREN] = ACTIONS(12281), + [anon_sym_COMMA] = ACTIONS(12281), + [anon_sym_EQ] = ACTIONS(12281), + [sym_word] = ACTIONS(12281), + [sym_param] = ACTIONS(12281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12281), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12281), + [anon_sym_DOLLAR] = ACTIONS(12283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12281), + [anon_sym_BSLASHbegin] = ACTIONS(12283), + [anon_sym_BSLASHcaption] = ACTIONS(12283), + [anon_sym_BSLASHcite] = ACTIONS(12283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCite] = ACTIONS(12283), + [anon_sym_BSLASHnocite] = ACTIONS(12283), + [anon_sym_BSLASHcitet] = ACTIONS(12283), + [anon_sym_BSLASHcitep] = ACTIONS(12283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteauthor] = ACTIONS(12283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitetitle] = ACTIONS(12283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteyear] = ACTIONS(12283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitedate] = ACTIONS(12283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteurl] = ACTIONS(12283), + [anon_sym_BSLASHfullcite] = ACTIONS(12283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12283), + [anon_sym_BSLASHcitealt] = ACTIONS(12283), + [anon_sym_BSLASHcitealp] = ACTIONS(12283), + [anon_sym_BSLASHcitetext] = ACTIONS(12283), + [anon_sym_BSLASHparencite] = ACTIONS(12283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHParencite] = ACTIONS(12283), + [anon_sym_BSLASHfootcite] = ACTIONS(12283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12283), + [anon_sym_BSLASHtextcite] = ACTIONS(12283), + [anon_sym_BSLASHTextcite] = ACTIONS(12283), + [anon_sym_BSLASHsmartcite] = ACTIONS(12283), + [anon_sym_BSLASHSmartcite] = ACTIONS(12283), + [anon_sym_BSLASHsupercite] = ACTIONS(12283), + [anon_sym_BSLASHautocite] = ACTIONS(12283), + [anon_sym_BSLASHAutocite] = ACTIONS(12283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHvolcite] = ACTIONS(12283), + [anon_sym_BSLASHVolcite] = ACTIONS(12283), + [anon_sym_BSLASHpvolcite] = ACTIONS(12283), + [anon_sym_BSLASHPvolcite] = ACTIONS(12283), + [anon_sym_BSLASHfvolcite] = ACTIONS(12283), + [anon_sym_BSLASHftvolcite] = ACTIONS(12283), + [anon_sym_BSLASHsvolcite] = ACTIONS(12283), + [anon_sym_BSLASHSvolcite] = ACTIONS(12283), + [anon_sym_BSLASHtvolcite] = ACTIONS(12283), + [anon_sym_BSLASHTvolcite] = ACTIONS(12283), + [anon_sym_BSLASHavolcite] = ACTIONS(12283), + [anon_sym_BSLASHAvolcite] = ACTIONS(12283), + [anon_sym_BSLASHnotecite] = ACTIONS(12283), + [anon_sym_BSLASHpnotecite] = ACTIONS(12283), + [anon_sym_BSLASHPnotecite] = ACTIONS(12283), + [anon_sym_BSLASHfnotecite] = ACTIONS(12283), + [anon_sym_BSLASHusepackage] = ACTIONS(12283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12283), + [anon_sym_BSLASHinclude] = ACTIONS(12283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12283), + [anon_sym_BSLASHinput] = ACTIONS(12283), + [anon_sym_BSLASHsubfile] = ACTIONS(12283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12283), + [anon_sym_BSLASHbibliography] = ACTIONS(12283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12283), + [anon_sym_BSLASHincludesvg] = ACTIONS(12283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12283), + [anon_sym_BSLASHimport] = ACTIONS(12283), + [anon_sym_BSLASHsubimport] = ACTIONS(12283), + [anon_sym_BSLASHinputfrom] = ACTIONS(12283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12283), + [anon_sym_BSLASHincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHlabel] = ACTIONS(12283), + [anon_sym_BSLASHref] = ACTIONS(12283), + [anon_sym_BSLASHvref] = ACTIONS(12283), + [anon_sym_BSLASHVref] = ACTIONS(12283), + [anon_sym_BSLASHautoref] = ACTIONS(12283), + [anon_sym_BSLASHpageref] = ACTIONS(12283), + [anon_sym_BSLASHcref] = ACTIONS(12283), + [anon_sym_BSLASHCref] = ACTIONS(12283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnameCref] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHlabelcref] = ACTIONS(12283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12283), + [anon_sym_BSLASHeqref] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange] = ACTIONS(12283), + [anon_sym_BSLASHCrefrange] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewlabel] = ACTIONS(12283), + [anon_sym_BSLASHnewcommand] = ACTIONS(12283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12283), + [anon_sym_BSLASHgls] = ACTIONS(12283), + [anon_sym_BSLASHGls] = ACTIONS(12283), + [anon_sym_BSLASHGLS] = ACTIONS(12283), + [anon_sym_BSLASHglspl] = ACTIONS(12283), + [anon_sym_BSLASHGlspl] = ACTIONS(12283), + [anon_sym_BSLASHGLSpl] = ACTIONS(12283), + [anon_sym_BSLASHglsdisp] = ACTIONS(12283), + [anon_sym_BSLASHglslink] = ACTIONS(12283), + [anon_sym_BSLASHglstext] = ACTIONS(12283), + [anon_sym_BSLASHGlstext] = ACTIONS(12283), + [anon_sym_BSLASHGLStext] = ACTIONS(12283), + [anon_sym_BSLASHglsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12283), + [anon_sym_BSLASHglsplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSplural] = ACTIONS(12283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHglsname] = ACTIONS(12283), + [anon_sym_BSLASHGlsname] = ACTIONS(12283), + [anon_sym_BSLASHGLSname] = ACTIONS(12283), + [anon_sym_BSLASHglssymbol] = ACTIONS(12283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12283), + [anon_sym_BSLASHglsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12283), + [anon_sym_BSLASHglsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12283), + [anon_sym_BSLASHglsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12283), + [anon_sym_BSLASHglsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12283), + [anon_sym_BSLASHglsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12283), + [anon_sym_BSLASHnewacronym] = ACTIONS(12283), + [anon_sym_BSLASHacrshort] = ACTIONS(12283), + [anon_sym_BSLASHAcrshort] = ACTIONS(12283), + [anon_sym_BSLASHACRshort] = ACTIONS(12283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12283), + [anon_sym_BSLASHacrlong] = ACTIONS(12283), + [anon_sym_BSLASHAcrlong] = ACTIONS(12283), + [anon_sym_BSLASHACRlong] = ACTIONS(12283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12283), + [anon_sym_BSLASHacrfull] = ACTIONS(12283), + [anon_sym_BSLASHAcrfull] = ACTIONS(12283), + [anon_sym_BSLASHACRfull] = ACTIONS(12283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12283), + [anon_sym_BSLASHacs] = ACTIONS(12283), + [anon_sym_BSLASHAcs] = ACTIONS(12283), + [anon_sym_BSLASHacsp] = ACTIONS(12283), + [anon_sym_BSLASHAcsp] = ACTIONS(12283), + [anon_sym_BSLASHacl] = ACTIONS(12283), + [anon_sym_BSLASHAcl] = ACTIONS(12283), + [anon_sym_BSLASHaclp] = ACTIONS(12283), + [anon_sym_BSLASHAclp] = ACTIONS(12283), + [anon_sym_BSLASHacf] = ACTIONS(12283), + [anon_sym_BSLASHAcf] = ACTIONS(12283), + [anon_sym_BSLASHacfp] = ACTIONS(12283), + [anon_sym_BSLASHAcfp] = ACTIONS(12283), + [anon_sym_BSLASHac] = ACTIONS(12283), + [anon_sym_BSLASHAc] = ACTIONS(12283), + [anon_sym_BSLASHacp] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12283), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12283), + [anon_sym_BSLASHcolor] = ACTIONS(12283), + [anon_sym_BSLASHcolorbox] = ACTIONS(12283), + [anon_sym_BSLASHtextcolor] = ACTIONS(12283), + [anon_sym_BSLASHpagecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12283), + }, + [969] = { + [sym_generic_command_name] = ACTIONS(12299), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12299), + [aux_sym_chapter_token1] = ACTIONS(12299), + [aux_sym_section_token1] = ACTIONS(12299), + [aux_sym_subsection_token1] = ACTIONS(12299), + [aux_sym_subsubsection_token1] = ACTIONS(12299), + [aux_sym_paragraph_token1] = ACTIONS(12299), + [aux_sym_subparagraph_token1] = ACTIONS(12299), + [anon_sym_BSLASHitem] = ACTIONS(12299), + [anon_sym_LBRACK] = ACTIONS(12297), + [anon_sym_LBRACE] = ACTIONS(12297), + [anon_sym_LPAREN] = ACTIONS(12297), + [anon_sym_COMMA] = ACTIONS(12297), + [anon_sym_EQ] = ACTIONS(12297), + [sym_word] = ACTIONS(12297), + [sym_param] = ACTIONS(12297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12297), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12297), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12297), + [anon_sym_DOLLAR] = ACTIONS(12299), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12297), + [anon_sym_BSLASHbegin] = ACTIONS(12299), + [anon_sym_BSLASHcaption] = ACTIONS(12299), + [anon_sym_BSLASHcite] = ACTIONS(12299), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCite] = ACTIONS(12299), + [anon_sym_BSLASHnocite] = ACTIONS(12299), + [anon_sym_BSLASHcitet] = ACTIONS(12299), + [anon_sym_BSLASHcitep] = ACTIONS(12299), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteauthor] = ACTIONS(12299), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12299), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitetitle] = ACTIONS(12299), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteyear] = ACTIONS(12299), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitedate] = ACTIONS(12299), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteurl] = ACTIONS(12299), + [anon_sym_BSLASHfullcite] = ACTIONS(12299), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12299), + [anon_sym_BSLASHcitealt] = ACTIONS(12299), + [anon_sym_BSLASHcitealp] = ACTIONS(12299), + [anon_sym_BSLASHcitetext] = ACTIONS(12299), + [anon_sym_BSLASHparencite] = ACTIONS(12299), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHParencite] = ACTIONS(12299), + [anon_sym_BSLASHfootcite] = ACTIONS(12299), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12299), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12299), + [anon_sym_BSLASHtextcite] = ACTIONS(12299), + [anon_sym_BSLASHTextcite] = ACTIONS(12299), + [anon_sym_BSLASHsmartcite] = ACTIONS(12299), + [anon_sym_BSLASHSmartcite] = ACTIONS(12299), + [anon_sym_BSLASHsupercite] = ACTIONS(12299), + [anon_sym_BSLASHautocite] = ACTIONS(12299), + [anon_sym_BSLASHAutocite] = ACTIONS(12299), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHvolcite] = ACTIONS(12299), + [anon_sym_BSLASHVolcite] = ACTIONS(12299), + [anon_sym_BSLASHpvolcite] = ACTIONS(12299), + [anon_sym_BSLASHPvolcite] = ACTIONS(12299), + [anon_sym_BSLASHfvolcite] = ACTIONS(12299), + [anon_sym_BSLASHftvolcite] = ACTIONS(12299), + [anon_sym_BSLASHsvolcite] = ACTIONS(12299), + [anon_sym_BSLASHSvolcite] = ACTIONS(12299), + [anon_sym_BSLASHtvolcite] = ACTIONS(12299), + [anon_sym_BSLASHTvolcite] = ACTIONS(12299), + [anon_sym_BSLASHavolcite] = ACTIONS(12299), + [anon_sym_BSLASHAvolcite] = ACTIONS(12299), + [anon_sym_BSLASHnotecite] = ACTIONS(12299), + [anon_sym_BSLASHpnotecite] = ACTIONS(12299), + [anon_sym_BSLASHPnotecite] = ACTIONS(12299), + [anon_sym_BSLASHfnotecite] = ACTIONS(12299), + [anon_sym_BSLASHusepackage] = ACTIONS(12299), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12299), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12299), + [anon_sym_BSLASHinclude] = ACTIONS(12299), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12299), + [anon_sym_BSLASHinput] = ACTIONS(12299), + [anon_sym_BSLASHsubfile] = ACTIONS(12299), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12299), + [anon_sym_BSLASHbibliography] = ACTIONS(12299), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12299), + [anon_sym_BSLASHincludesvg] = ACTIONS(12299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12299), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12299), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12299), + [anon_sym_BSLASHimport] = ACTIONS(12299), + [anon_sym_BSLASHsubimport] = ACTIONS(12299), + [anon_sym_BSLASHinputfrom] = ACTIONS(12299), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12299), + [anon_sym_BSLASHincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHlabel] = ACTIONS(12299), + [anon_sym_BSLASHref] = ACTIONS(12299), + [anon_sym_BSLASHvref] = ACTIONS(12299), + [anon_sym_BSLASHVref] = ACTIONS(12299), + [anon_sym_BSLASHautoref] = ACTIONS(12299), + [anon_sym_BSLASHpageref] = ACTIONS(12299), + [anon_sym_BSLASHcref] = ACTIONS(12299), + [anon_sym_BSLASHCref] = ACTIONS(12299), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnameCref] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHlabelcref] = ACTIONS(12299), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12299), + [anon_sym_BSLASHeqref] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange] = ACTIONS(12299), + [anon_sym_BSLASHCrefrange] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewlabel] = ACTIONS(12299), + [anon_sym_BSLASHnewcommand] = ACTIONS(12299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12299), + [anon_sym_BSLASHgls] = ACTIONS(12299), + [anon_sym_BSLASHGls] = ACTIONS(12299), + [anon_sym_BSLASHGLS] = ACTIONS(12299), + [anon_sym_BSLASHglspl] = ACTIONS(12299), + [anon_sym_BSLASHGlspl] = ACTIONS(12299), + [anon_sym_BSLASHGLSpl] = ACTIONS(12299), + [anon_sym_BSLASHglsdisp] = ACTIONS(12299), + [anon_sym_BSLASHglslink] = ACTIONS(12299), + [anon_sym_BSLASHglstext] = ACTIONS(12299), + [anon_sym_BSLASHGlstext] = ACTIONS(12299), + [anon_sym_BSLASHGLStext] = ACTIONS(12299), + [anon_sym_BSLASHglsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12299), + [anon_sym_BSLASHglsplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSplural] = ACTIONS(12299), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHglsname] = ACTIONS(12299), + [anon_sym_BSLASHGlsname] = ACTIONS(12299), + [anon_sym_BSLASHGLSname] = ACTIONS(12299), + [anon_sym_BSLASHglssymbol] = ACTIONS(12299), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12299), + [anon_sym_BSLASHglsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12299), + [anon_sym_BSLASHglsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12299), + [anon_sym_BSLASHglsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12299), + [anon_sym_BSLASHglsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12299), + [anon_sym_BSLASHglsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12299), + [anon_sym_BSLASHnewacronym] = ACTIONS(12299), + [anon_sym_BSLASHacrshort] = ACTIONS(12299), + [anon_sym_BSLASHAcrshort] = ACTIONS(12299), + [anon_sym_BSLASHACRshort] = ACTIONS(12299), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12299), + [anon_sym_BSLASHacrlong] = ACTIONS(12299), + [anon_sym_BSLASHAcrlong] = ACTIONS(12299), + [anon_sym_BSLASHACRlong] = ACTIONS(12299), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12299), + [anon_sym_BSLASHacrfull] = ACTIONS(12299), + [anon_sym_BSLASHAcrfull] = ACTIONS(12299), + [anon_sym_BSLASHACRfull] = ACTIONS(12299), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12299), + [anon_sym_BSLASHacs] = ACTIONS(12299), + [anon_sym_BSLASHAcs] = ACTIONS(12299), + [anon_sym_BSLASHacsp] = ACTIONS(12299), + [anon_sym_BSLASHAcsp] = ACTIONS(12299), + [anon_sym_BSLASHacl] = ACTIONS(12299), + [anon_sym_BSLASHAcl] = ACTIONS(12299), + [anon_sym_BSLASHaclp] = ACTIONS(12299), + [anon_sym_BSLASHAclp] = ACTIONS(12299), + [anon_sym_BSLASHacf] = ACTIONS(12299), + [anon_sym_BSLASHAcf] = ACTIONS(12299), + [anon_sym_BSLASHacfp] = ACTIONS(12299), + [anon_sym_BSLASHAcfp] = ACTIONS(12299), + [anon_sym_BSLASHac] = ACTIONS(12299), + [anon_sym_BSLASHAc] = ACTIONS(12299), + [anon_sym_BSLASHacp] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12299), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12299), + [anon_sym_BSLASHcolor] = ACTIONS(12299), + [anon_sym_BSLASHcolorbox] = ACTIONS(12299), + [anon_sym_BSLASHtextcolor] = ACTIONS(12299), + [anon_sym_BSLASHpagecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12299), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12299), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12299), + }, + [970] = { + [sym_generic_command_name] = ACTIONS(12311), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12311), + [aux_sym_chapter_token1] = ACTIONS(12311), + [aux_sym_section_token1] = ACTIONS(12311), + [aux_sym_subsection_token1] = ACTIONS(12311), + [aux_sym_subsubsection_token1] = ACTIONS(12311), + [aux_sym_paragraph_token1] = ACTIONS(12311), + [aux_sym_subparagraph_token1] = ACTIONS(12311), + [anon_sym_BSLASHitem] = ACTIONS(12311), + [anon_sym_LBRACK] = ACTIONS(12309), + [anon_sym_LBRACE] = ACTIONS(12309), + [anon_sym_LPAREN] = ACTIONS(12309), + [anon_sym_COMMA] = ACTIONS(12309), + [anon_sym_EQ] = ACTIONS(12309), + [sym_word] = ACTIONS(12309), + [sym_param] = ACTIONS(12309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12309), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12309), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12309), + [anon_sym_DOLLAR] = ACTIONS(12311), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12309), + [anon_sym_BSLASHbegin] = ACTIONS(12311), + [anon_sym_BSLASHcaption] = ACTIONS(12311), + [anon_sym_BSLASHcite] = ACTIONS(12311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCite] = ACTIONS(12311), + [anon_sym_BSLASHnocite] = ACTIONS(12311), + [anon_sym_BSLASHcitet] = ACTIONS(12311), + [anon_sym_BSLASHcitep] = ACTIONS(12311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteauthor] = ACTIONS(12311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitetitle] = ACTIONS(12311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteyear] = ACTIONS(12311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitedate] = ACTIONS(12311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteurl] = ACTIONS(12311), + [anon_sym_BSLASHfullcite] = ACTIONS(12311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12311), + [anon_sym_BSLASHcitealt] = ACTIONS(12311), + [anon_sym_BSLASHcitealp] = ACTIONS(12311), + [anon_sym_BSLASHcitetext] = ACTIONS(12311), + [anon_sym_BSLASHparencite] = ACTIONS(12311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHParencite] = ACTIONS(12311), + [anon_sym_BSLASHfootcite] = ACTIONS(12311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12311), + [anon_sym_BSLASHtextcite] = ACTIONS(12311), + [anon_sym_BSLASHTextcite] = ACTIONS(12311), + [anon_sym_BSLASHsmartcite] = ACTIONS(12311), + [anon_sym_BSLASHSmartcite] = ACTIONS(12311), + [anon_sym_BSLASHsupercite] = ACTIONS(12311), + [anon_sym_BSLASHautocite] = ACTIONS(12311), + [anon_sym_BSLASHAutocite] = ACTIONS(12311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHvolcite] = ACTIONS(12311), + [anon_sym_BSLASHVolcite] = ACTIONS(12311), + [anon_sym_BSLASHpvolcite] = ACTIONS(12311), + [anon_sym_BSLASHPvolcite] = ACTIONS(12311), + [anon_sym_BSLASHfvolcite] = ACTIONS(12311), + [anon_sym_BSLASHftvolcite] = ACTIONS(12311), + [anon_sym_BSLASHsvolcite] = ACTIONS(12311), + [anon_sym_BSLASHSvolcite] = ACTIONS(12311), + [anon_sym_BSLASHtvolcite] = ACTIONS(12311), + [anon_sym_BSLASHTvolcite] = ACTIONS(12311), + [anon_sym_BSLASHavolcite] = ACTIONS(12311), + [anon_sym_BSLASHAvolcite] = ACTIONS(12311), + [anon_sym_BSLASHnotecite] = ACTIONS(12311), + [anon_sym_BSLASHpnotecite] = ACTIONS(12311), + [anon_sym_BSLASHPnotecite] = ACTIONS(12311), + [anon_sym_BSLASHfnotecite] = ACTIONS(12311), + [anon_sym_BSLASHusepackage] = ACTIONS(12311), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12311), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12311), + [anon_sym_BSLASHinclude] = ACTIONS(12311), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12311), + [anon_sym_BSLASHinput] = ACTIONS(12311), + [anon_sym_BSLASHsubfile] = ACTIONS(12311), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12311), + [anon_sym_BSLASHbibliography] = ACTIONS(12311), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12311), + [anon_sym_BSLASHincludesvg] = ACTIONS(12311), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12311), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12311), + [anon_sym_BSLASHimport] = ACTIONS(12311), + [anon_sym_BSLASHsubimport] = ACTIONS(12311), + [anon_sym_BSLASHinputfrom] = ACTIONS(12311), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12311), + [anon_sym_BSLASHincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHlabel] = ACTIONS(12311), + [anon_sym_BSLASHref] = ACTIONS(12311), + [anon_sym_BSLASHvref] = ACTIONS(12311), + [anon_sym_BSLASHVref] = ACTIONS(12311), + [anon_sym_BSLASHautoref] = ACTIONS(12311), + [anon_sym_BSLASHpageref] = ACTIONS(12311), + [anon_sym_BSLASHcref] = ACTIONS(12311), + [anon_sym_BSLASHCref] = ACTIONS(12311), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnameCref] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHlabelcref] = ACTIONS(12311), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12311), + [anon_sym_BSLASHeqref] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange] = ACTIONS(12311), + [anon_sym_BSLASHCrefrange] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewlabel] = ACTIONS(12311), + [anon_sym_BSLASHnewcommand] = ACTIONS(12311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12311), + [anon_sym_BSLASHgls] = ACTIONS(12311), + [anon_sym_BSLASHGls] = ACTIONS(12311), + [anon_sym_BSLASHGLS] = ACTIONS(12311), + [anon_sym_BSLASHglspl] = ACTIONS(12311), + [anon_sym_BSLASHGlspl] = ACTIONS(12311), + [anon_sym_BSLASHGLSpl] = ACTIONS(12311), + [anon_sym_BSLASHglsdisp] = ACTIONS(12311), + [anon_sym_BSLASHglslink] = ACTIONS(12311), + [anon_sym_BSLASHglstext] = ACTIONS(12311), + [anon_sym_BSLASHGlstext] = ACTIONS(12311), + [anon_sym_BSLASHGLStext] = ACTIONS(12311), + [anon_sym_BSLASHglsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12311), + [anon_sym_BSLASHglsplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSplural] = ACTIONS(12311), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHglsname] = ACTIONS(12311), + [anon_sym_BSLASHGlsname] = ACTIONS(12311), + [anon_sym_BSLASHGLSname] = ACTIONS(12311), + [anon_sym_BSLASHglssymbol] = ACTIONS(12311), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12311), + [anon_sym_BSLASHglsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12311), + [anon_sym_BSLASHglsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12311), + [anon_sym_BSLASHglsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12311), + [anon_sym_BSLASHglsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12311), + [anon_sym_BSLASHglsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12311), + [anon_sym_BSLASHnewacronym] = ACTIONS(12311), + [anon_sym_BSLASHacrshort] = ACTIONS(12311), + [anon_sym_BSLASHAcrshort] = ACTIONS(12311), + [anon_sym_BSLASHACRshort] = ACTIONS(12311), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12311), + [anon_sym_BSLASHacrlong] = ACTIONS(12311), + [anon_sym_BSLASHAcrlong] = ACTIONS(12311), + [anon_sym_BSLASHACRlong] = ACTIONS(12311), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12311), + [anon_sym_BSLASHacrfull] = ACTIONS(12311), + [anon_sym_BSLASHAcrfull] = ACTIONS(12311), + [anon_sym_BSLASHACRfull] = ACTIONS(12311), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12311), + [anon_sym_BSLASHacs] = ACTIONS(12311), + [anon_sym_BSLASHAcs] = ACTIONS(12311), + [anon_sym_BSLASHacsp] = ACTIONS(12311), + [anon_sym_BSLASHAcsp] = ACTIONS(12311), + [anon_sym_BSLASHacl] = ACTIONS(12311), + [anon_sym_BSLASHAcl] = ACTIONS(12311), + [anon_sym_BSLASHaclp] = ACTIONS(12311), + [anon_sym_BSLASHAclp] = ACTIONS(12311), + [anon_sym_BSLASHacf] = ACTIONS(12311), + [anon_sym_BSLASHAcf] = ACTIONS(12311), + [anon_sym_BSLASHacfp] = ACTIONS(12311), + [anon_sym_BSLASHAcfp] = ACTIONS(12311), + [anon_sym_BSLASHac] = ACTIONS(12311), + [anon_sym_BSLASHAc] = ACTIONS(12311), + [anon_sym_BSLASHacp] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12311), + [anon_sym_BSLASHcolor] = ACTIONS(12311), + [anon_sym_BSLASHcolorbox] = ACTIONS(12311), + [anon_sym_BSLASHtextcolor] = ACTIONS(12311), + [anon_sym_BSLASHpagecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12311), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12311), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12311), + }, + [971] = { + [sym_generic_command_name] = ACTIONS(12327), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12327), + [aux_sym_chapter_token1] = ACTIONS(12327), + [aux_sym_section_token1] = ACTIONS(12327), + [aux_sym_subsection_token1] = ACTIONS(12327), + [aux_sym_subsubsection_token1] = ACTIONS(12327), + [aux_sym_paragraph_token1] = ACTIONS(12327), + [aux_sym_subparagraph_token1] = ACTIONS(12327), + [anon_sym_BSLASHitem] = ACTIONS(12327), + [anon_sym_LBRACK] = ACTIONS(12325), + [anon_sym_LBRACE] = ACTIONS(12325), + [anon_sym_LPAREN] = ACTIONS(12325), + [anon_sym_COMMA] = ACTIONS(12325), + [anon_sym_EQ] = ACTIONS(12325), + [sym_word] = ACTIONS(12325), + [sym_param] = ACTIONS(12325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12325), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12325), + [anon_sym_DOLLAR] = ACTIONS(12327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12325), + [anon_sym_BSLASHbegin] = ACTIONS(12327), + [anon_sym_BSLASHcaption] = ACTIONS(12327), + [anon_sym_BSLASHcite] = ACTIONS(12327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCite] = ACTIONS(12327), + [anon_sym_BSLASHnocite] = ACTIONS(12327), + [anon_sym_BSLASHcitet] = ACTIONS(12327), + [anon_sym_BSLASHcitep] = ACTIONS(12327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteauthor] = ACTIONS(12327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitetitle] = ACTIONS(12327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteyear] = ACTIONS(12327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitedate] = ACTIONS(12327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteurl] = ACTIONS(12327), + [anon_sym_BSLASHfullcite] = ACTIONS(12327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12327), + [anon_sym_BSLASHcitealt] = ACTIONS(12327), + [anon_sym_BSLASHcitealp] = ACTIONS(12327), + [anon_sym_BSLASHcitetext] = ACTIONS(12327), + [anon_sym_BSLASHparencite] = ACTIONS(12327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHParencite] = ACTIONS(12327), + [anon_sym_BSLASHfootcite] = ACTIONS(12327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12327), + [anon_sym_BSLASHtextcite] = ACTIONS(12327), + [anon_sym_BSLASHTextcite] = ACTIONS(12327), + [anon_sym_BSLASHsmartcite] = ACTIONS(12327), + [anon_sym_BSLASHSmartcite] = ACTIONS(12327), + [anon_sym_BSLASHsupercite] = ACTIONS(12327), + [anon_sym_BSLASHautocite] = ACTIONS(12327), + [anon_sym_BSLASHAutocite] = ACTIONS(12327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHvolcite] = ACTIONS(12327), + [anon_sym_BSLASHVolcite] = ACTIONS(12327), + [anon_sym_BSLASHpvolcite] = ACTIONS(12327), + [anon_sym_BSLASHPvolcite] = ACTIONS(12327), + [anon_sym_BSLASHfvolcite] = ACTIONS(12327), + [anon_sym_BSLASHftvolcite] = ACTIONS(12327), + [anon_sym_BSLASHsvolcite] = ACTIONS(12327), + [anon_sym_BSLASHSvolcite] = ACTIONS(12327), + [anon_sym_BSLASHtvolcite] = ACTIONS(12327), + [anon_sym_BSLASHTvolcite] = ACTIONS(12327), + [anon_sym_BSLASHavolcite] = ACTIONS(12327), + [anon_sym_BSLASHAvolcite] = ACTIONS(12327), + [anon_sym_BSLASHnotecite] = ACTIONS(12327), + [anon_sym_BSLASHpnotecite] = ACTIONS(12327), + [anon_sym_BSLASHPnotecite] = ACTIONS(12327), + [anon_sym_BSLASHfnotecite] = ACTIONS(12327), + [anon_sym_BSLASHusepackage] = ACTIONS(12327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12327), + [anon_sym_BSLASHinclude] = ACTIONS(12327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12327), + [anon_sym_BSLASHinput] = ACTIONS(12327), + [anon_sym_BSLASHsubfile] = ACTIONS(12327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12327), + [anon_sym_BSLASHbibliography] = ACTIONS(12327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12327), + [anon_sym_BSLASHincludesvg] = ACTIONS(12327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12327), + [anon_sym_BSLASHimport] = ACTIONS(12327), + [anon_sym_BSLASHsubimport] = ACTIONS(12327), + [anon_sym_BSLASHinputfrom] = ACTIONS(12327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12327), + [anon_sym_BSLASHincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHlabel] = ACTIONS(12327), + [anon_sym_BSLASHref] = ACTIONS(12327), + [anon_sym_BSLASHvref] = ACTIONS(12327), + [anon_sym_BSLASHVref] = ACTIONS(12327), + [anon_sym_BSLASHautoref] = ACTIONS(12327), + [anon_sym_BSLASHpageref] = ACTIONS(12327), + [anon_sym_BSLASHcref] = ACTIONS(12327), + [anon_sym_BSLASHCref] = ACTIONS(12327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnameCref] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHlabelcref] = ACTIONS(12327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12327), + [anon_sym_BSLASHeqref] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange] = ACTIONS(12327), + [anon_sym_BSLASHCrefrange] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewlabel] = ACTIONS(12327), + [anon_sym_BSLASHnewcommand] = ACTIONS(12327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12327), + [anon_sym_BSLASHgls] = ACTIONS(12327), + [anon_sym_BSLASHGls] = ACTIONS(12327), + [anon_sym_BSLASHGLS] = ACTIONS(12327), + [anon_sym_BSLASHglspl] = ACTIONS(12327), + [anon_sym_BSLASHGlspl] = ACTIONS(12327), + [anon_sym_BSLASHGLSpl] = ACTIONS(12327), + [anon_sym_BSLASHglsdisp] = ACTIONS(12327), + [anon_sym_BSLASHglslink] = ACTIONS(12327), + [anon_sym_BSLASHglstext] = ACTIONS(12327), + [anon_sym_BSLASHGlstext] = ACTIONS(12327), + [anon_sym_BSLASHGLStext] = ACTIONS(12327), + [anon_sym_BSLASHglsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12327), + [anon_sym_BSLASHglsplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSplural] = ACTIONS(12327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHglsname] = ACTIONS(12327), + [anon_sym_BSLASHGlsname] = ACTIONS(12327), + [anon_sym_BSLASHGLSname] = ACTIONS(12327), + [anon_sym_BSLASHglssymbol] = ACTIONS(12327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12327), + [anon_sym_BSLASHglsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12327), + [anon_sym_BSLASHglsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12327), + [anon_sym_BSLASHglsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12327), + [anon_sym_BSLASHglsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12327), + [anon_sym_BSLASHglsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12327), + [anon_sym_BSLASHnewacronym] = ACTIONS(12327), + [anon_sym_BSLASHacrshort] = ACTIONS(12327), + [anon_sym_BSLASHAcrshort] = ACTIONS(12327), + [anon_sym_BSLASHACRshort] = ACTIONS(12327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12327), + [anon_sym_BSLASHacrlong] = ACTIONS(12327), + [anon_sym_BSLASHAcrlong] = ACTIONS(12327), + [anon_sym_BSLASHACRlong] = ACTIONS(12327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12327), + [anon_sym_BSLASHacrfull] = ACTIONS(12327), + [anon_sym_BSLASHAcrfull] = ACTIONS(12327), + [anon_sym_BSLASHACRfull] = ACTIONS(12327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12327), + [anon_sym_BSLASHacs] = ACTIONS(12327), + [anon_sym_BSLASHAcs] = ACTIONS(12327), + [anon_sym_BSLASHacsp] = ACTIONS(12327), + [anon_sym_BSLASHAcsp] = ACTIONS(12327), + [anon_sym_BSLASHacl] = ACTIONS(12327), + [anon_sym_BSLASHAcl] = ACTIONS(12327), + [anon_sym_BSLASHaclp] = ACTIONS(12327), + [anon_sym_BSLASHAclp] = ACTIONS(12327), + [anon_sym_BSLASHacf] = ACTIONS(12327), + [anon_sym_BSLASHAcf] = ACTIONS(12327), + [anon_sym_BSLASHacfp] = ACTIONS(12327), + [anon_sym_BSLASHAcfp] = ACTIONS(12327), + [anon_sym_BSLASHac] = ACTIONS(12327), + [anon_sym_BSLASHAc] = ACTIONS(12327), + [anon_sym_BSLASHacp] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12327), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12327), + [anon_sym_BSLASHcolor] = ACTIONS(12327), + [anon_sym_BSLASHcolorbox] = ACTIONS(12327), + [anon_sym_BSLASHtextcolor] = ACTIONS(12327), + [anon_sym_BSLASHpagecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12327), + }, + [972] = { + [sym_generic_command_name] = ACTIONS(12331), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12331), + [aux_sym_chapter_token1] = ACTIONS(12331), + [aux_sym_section_token1] = ACTIONS(12331), + [aux_sym_subsection_token1] = ACTIONS(12331), + [aux_sym_subsubsection_token1] = ACTIONS(12331), + [aux_sym_paragraph_token1] = ACTIONS(12331), + [aux_sym_subparagraph_token1] = ACTIONS(12331), + [anon_sym_BSLASHitem] = ACTIONS(12331), + [anon_sym_LBRACK] = ACTIONS(12329), + [anon_sym_LBRACE] = ACTIONS(12329), + [anon_sym_LPAREN] = ACTIONS(12329), + [anon_sym_COMMA] = ACTIONS(12329), + [anon_sym_EQ] = ACTIONS(12329), + [sym_word] = ACTIONS(12329), + [sym_param] = ACTIONS(12329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12329), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12329), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12329), + [anon_sym_DOLLAR] = ACTIONS(12331), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12329), + [anon_sym_BSLASHbegin] = ACTIONS(12331), + [anon_sym_BSLASHcaption] = ACTIONS(12331), + [anon_sym_BSLASHcite] = ACTIONS(12331), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCite] = ACTIONS(12331), + [anon_sym_BSLASHnocite] = ACTIONS(12331), + [anon_sym_BSLASHcitet] = ACTIONS(12331), + [anon_sym_BSLASHcitep] = ACTIONS(12331), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteauthor] = ACTIONS(12331), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12331), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitetitle] = ACTIONS(12331), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteyear] = ACTIONS(12331), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitedate] = ACTIONS(12331), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteurl] = ACTIONS(12331), + [anon_sym_BSLASHfullcite] = ACTIONS(12331), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12331), + [anon_sym_BSLASHcitealt] = ACTIONS(12331), + [anon_sym_BSLASHcitealp] = ACTIONS(12331), + [anon_sym_BSLASHcitetext] = ACTIONS(12331), + [anon_sym_BSLASHparencite] = ACTIONS(12331), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHParencite] = ACTIONS(12331), + [anon_sym_BSLASHfootcite] = ACTIONS(12331), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12331), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12331), + [anon_sym_BSLASHtextcite] = ACTIONS(12331), + [anon_sym_BSLASHTextcite] = ACTIONS(12331), + [anon_sym_BSLASHsmartcite] = ACTIONS(12331), + [anon_sym_BSLASHSmartcite] = ACTIONS(12331), + [anon_sym_BSLASHsupercite] = ACTIONS(12331), + [anon_sym_BSLASHautocite] = ACTIONS(12331), + [anon_sym_BSLASHAutocite] = ACTIONS(12331), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHvolcite] = ACTIONS(12331), + [anon_sym_BSLASHVolcite] = ACTIONS(12331), + [anon_sym_BSLASHpvolcite] = ACTIONS(12331), + [anon_sym_BSLASHPvolcite] = ACTIONS(12331), + [anon_sym_BSLASHfvolcite] = ACTIONS(12331), + [anon_sym_BSLASHftvolcite] = ACTIONS(12331), + [anon_sym_BSLASHsvolcite] = ACTIONS(12331), + [anon_sym_BSLASHSvolcite] = ACTIONS(12331), + [anon_sym_BSLASHtvolcite] = ACTIONS(12331), + [anon_sym_BSLASHTvolcite] = ACTIONS(12331), + [anon_sym_BSLASHavolcite] = ACTIONS(12331), + [anon_sym_BSLASHAvolcite] = ACTIONS(12331), + [anon_sym_BSLASHnotecite] = ACTIONS(12331), + [anon_sym_BSLASHpnotecite] = ACTIONS(12331), + [anon_sym_BSLASHPnotecite] = ACTIONS(12331), + [anon_sym_BSLASHfnotecite] = ACTIONS(12331), + [anon_sym_BSLASHusepackage] = ACTIONS(12331), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12331), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12331), + [anon_sym_BSLASHinclude] = ACTIONS(12331), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12331), + [anon_sym_BSLASHinput] = ACTIONS(12331), + [anon_sym_BSLASHsubfile] = ACTIONS(12331), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12331), + [anon_sym_BSLASHbibliography] = ACTIONS(12331), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12331), + [anon_sym_BSLASHincludesvg] = ACTIONS(12331), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12331), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12331), + [anon_sym_BSLASHimport] = ACTIONS(12331), + [anon_sym_BSLASHsubimport] = ACTIONS(12331), + [anon_sym_BSLASHinputfrom] = ACTIONS(12331), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12331), + [anon_sym_BSLASHincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHlabel] = ACTIONS(12331), + [anon_sym_BSLASHref] = ACTIONS(12331), + [anon_sym_BSLASHvref] = ACTIONS(12331), + [anon_sym_BSLASHVref] = ACTIONS(12331), + [anon_sym_BSLASHautoref] = ACTIONS(12331), + [anon_sym_BSLASHpageref] = ACTIONS(12331), + [anon_sym_BSLASHcref] = ACTIONS(12331), + [anon_sym_BSLASHCref] = ACTIONS(12331), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnameCref] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHlabelcref] = ACTIONS(12331), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12331), + [anon_sym_BSLASHeqref] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange] = ACTIONS(12331), + [anon_sym_BSLASHCrefrange] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewlabel] = ACTIONS(12331), + [anon_sym_BSLASHnewcommand] = ACTIONS(12331), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12331), + [anon_sym_BSLASHgls] = ACTIONS(12331), + [anon_sym_BSLASHGls] = ACTIONS(12331), + [anon_sym_BSLASHGLS] = ACTIONS(12331), + [anon_sym_BSLASHglspl] = ACTIONS(12331), + [anon_sym_BSLASHGlspl] = ACTIONS(12331), + [anon_sym_BSLASHGLSpl] = ACTIONS(12331), + [anon_sym_BSLASHglsdisp] = ACTIONS(12331), + [anon_sym_BSLASHglslink] = ACTIONS(12331), + [anon_sym_BSLASHglstext] = ACTIONS(12331), + [anon_sym_BSLASHGlstext] = ACTIONS(12331), + [anon_sym_BSLASHGLStext] = ACTIONS(12331), + [anon_sym_BSLASHglsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12331), + [anon_sym_BSLASHglsplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSplural] = ACTIONS(12331), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHglsname] = ACTIONS(12331), + [anon_sym_BSLASHGlsname] = ACTIONS(12331), + [anon_sym_BSLASHGLSname] = ACTIONS(12331), + [anon_sym_BSLASHglssymbol] = ACTIONS(12331), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12331), + [anon_sym_BSLASHglsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12331), + [anon_sym_BSLASHglsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12331), + [anon_sym_BSLASHglsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12331), + [anon_sym_BSLASHglsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12331), + [anon_sym_BSLASHglsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12331), + [anon_sym_BSLASHnewacronym] = ACTIONS(12331), + [anon_sym_BSLASHacrshort] = ACTIONS(12331), + [anon_sym_BSLASHAcrshort] = ACTIONS(12331), + [anon_sym_BSLASHACRshort] = ACTIONS(12331), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12331), + [anon_sym_BSLASHacrlong] = ACTIONS(12331), + [anon_sym_BSLASHAcrlong] = ACTIONS(12331), + [anon_sym_BSLASHACRlong] = ACTIONS(12331), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12331), + [anon_sym_BSLASHacrfull] = ACTIONS(12331), + [anon_sym_BSLASHAcrfull] = ACTIONS(12331), + [anon_sym_BSLASHACRfull] = ACTIONS(12331), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12331), + [anon_sym_BSLASHacs] = ACTIONS(12331), + [anon_sym_BSLASHAcs] = ACTIONS(12331), + [anon_sym_BSLASHacsp] = ACTIONS(12331), + [anon_sym_BSLASHAcsp] = ACTIONS(12331), + [anon_sym_BSLASHacl] = ACTIONS(12331), + [anon_sym_BSLASHAcl] = ACTIONS(12331), + [anon_sym_BSLASHaclp] = ACTIONS(12331), + [anon_sym_BSLASHAclp] = ACTIONS(12331), + [anon_sym_BSLASHacf] = ACTIONS(12331), + [anon_sym_BSLASHAcf] = ACTIONS(12331), + [anon_sym_BSLASHacfp] = ACTIONS(12331), + [anon_sym_BSLASHAcfp] = ACTIONS(12331), + [anon_sym_BSLASHac] = ACTIONS(12331), + [anon_sym_BSLASHAc] = ACTIONS(12331), + [anon_sym_BSLASHacp] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12331), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12331), + [anon_sym_BSLASHcolor] = ACTIONS(12331), + [anon_sym_BSLASHcolorbox] = ACTIONS(12331), + [anon_sym_BSLASHtextcolor] = ACTIONS(12331), + [anon_sym_BSLASHpagecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12331), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12331), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12331), + }, + [973] = { + [sym_generic_command_name] = ACTIONS(12345), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12345), + [aux_sym_chapter_token1] = ACTIONS(12345), + [aux_sym_section_token1] = ACTIONS(12345), + [aux_sym_subsection_token1] = ACTIONS(12345), + [aux_sym_subsubsection_token1] = ACTIONS(12345), + [aux_sym_paragraph_token1] = ACTIONS(12345), + [aux_sym_subparagraph_token1] = ACTIONS(12345), + [anon_sym_BSLASHitem] = ACTIONS(12345), + [anon_sym_LBRACK] = ACTIONS(12343), + [anon_sym_LBRACE] = ACTIONS(12343), + [anon_sym_LPAREN] = ACTIONS(12343), + [anon_sym_COMMA] = ACTIONS(12343), + [anon_sym_EQ] = ACTIONS(12343), + [sym_word] = ACTIONS(12343), + [sym_param] = ACTIONS(12343), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12343), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12343), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12343), + [anon_sym_DOLLAR] = ACTIONS(12345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12343), + [anon_sym_BSLASHbegin] = ACTIONS(12345), + [anon_sym_BSLASHcaption] = ACTIONS(12345), + [anon_sym_BSLASHcite] = ACTIONS(12345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCite] = ACTIONS(12345), + [anon_sym_BSLASHnocite] = ACTIONS(12345), + [anon_sym_BSLASHcitet] = ACTIONS(12345), + [anon_sym_BSLASHcitep] = ACTIONS(12345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteauthor] = ACTIONS(12345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitetitle] = ACTIONS(12345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteyear] = ACTIONS(12345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitedate] = ACTIONS(12345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteurl] = ACTIONS(12345), + [anon_sym_BSLASHfullcite] = ACTIONS(12345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12345), + [anon_sym_BSLASHcitealt] = ACTIONS(12345), + [anon_sym_BSLASHcitealp] = ACTIONS(12345), + [anon_sym_BSLASHcitetext] = ACTIONS(12345), + [anon_sym_BSLASHparencite] = ACTIONS(12345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHParencite] = ACTIONS(12345), + [anon_sym_BSLASHfootcite] = ACTIONS(12345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12345), + [anon_sym_BSLASHtextcite] = ACTIONS(12345), + [anon_sym_BSLASHTextcite] = ACTIONS(12345), + [anon_sym_BSLASHsmartcite] = ACTIONS(12345), + [anon_sym_BSLASHSmartcite] = ACTIONS(12345), + [anon_sym_BSLASHsupercite] = ACTIONS(12345), + [anon_sym_BSLASHautocite] = ACTIONS(12345), + [anon_sym_BSLASHAutocite] = ACTIONS(12345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHvolcite] = ACTIONS(12345), + [anon_sym_BSLASHVolcite] = ACTIONS(12345), + [anon_sym_BSLASHpvolcite] = ACTIONS(12345), + [anon_sym_BSLASHPvolcite] = ACTIONS(12345), + [anon_sym_BSLASHfvolcite] = ACTIONS(12345), + [anon_sym_BSLASHftvolcite] = ACTIONS(12345), + [anon_sym_BSLASHsvolcite] = ACTIONS(12345), + [anon_sym_BSLASHSvolcite] = ACTIONS(12345), + [anon_sym_BSLASHtvolcite] = ACTIONS(12345), + [anon_sym_BSLASHTvolcite] = ACTIONS(12345), + [anon_sym_BSLASHavolcite] = ACTIONS(12345), + [anon_sym_BSLASHAvolcite] = ACTIONS(12345), + [anon_sym_BSLASHnotecite] = ACTIONS(12345), + [anon_sym_BSLASHpnotecite] = ACTIONS(12345), + [anon_sym_BSLASHPnotecite] = ACTIONS(12345), + [anon_sym_BSLASHfnotecite] = ACTIONS(12345), + [anon_sym_BSLASHusepackage] = ACTIONS(12345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12345), + [anon_sym_BSLASHinclude] = ACTIONS(12345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12345), + [anon_sym_BSLASHinput] = ACTIONS(12345), + [anon_sym_BSLASHsubfile] = ACTIONS(12345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12345), + [anon_sym_BSLASHbibliography] = ACTIONS(12345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12345), + [anon_sym_BSLASHincludesvg] = ACTIONS(12345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12345), + [anon_sym_BSLASHimport] = ACTIONS(12345), + [anon_sym_BSLASHsubimport] = ACTIONS(12345), + [anon_sym_BSLASHinputfrom] = ACTIONS(12345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12345), + [anon_sym_BSLASHincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHlabel] = ACTIONS(12345), + [anon_sym_BSLASHref] = ACTIONS(12345), + [anon_sym_BSLASHvref] = ACTIONS(12345), + [anon_sym_BSLASHVref] = ACTIONS(12345), + [anon_sym_BSLASHautoref] = ACTIONS(12345), + [anon_sym_BSLASHpageref] = ACTIONS(12345), + [anon_sym_BSLASHcref] = ACTIONS(12345), + [anon_sym_BSLASHCref] = ACTIONS(12345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnameCref] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHlabelcref] = ACTIONS(12345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12345), + [anon_sym_BSLASHeqref] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange] = ACTIONS(12345), + [anon_sym_BSLASHCrefrange] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewlabel] = ACTIONS(12345), + [anon_sym_BSLASHnewcommand] = ACTIONS(12345), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12345), + [anon_sym_BSLASHgls] = ACTIONS(12345), + [anon_sym_BSLASHGls] = ACTIONS(12345), + [anon_sym_BSLASHGLS] = ACTIONS(12345), + [anon_sym_BSLASHglspl] = ACTIONS(12345), + [anon_sym_BSLASHGlspl] = ACTIONS(12345), + [anon_sym_BSLASHGLSpl] = ACTIONS(12345), + [anon_sym_BSLASHglsdisp] = ACTIONS(12345), + [anon_sym_BSLASHglslink] = ACTIONS(12345), + [anon_sym_BSLASHglstext] = ACTIONS(12345), + [anon_sym_BSLASHGlstext] = ACTIONS(12345), + [anon_sym_BSLASHGLStext] = ACTIONS(12345), + [anon_sym_BSLASHglsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12345), + [anon_sym_BSLASHglsplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSplural] = ACTIONS(12345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHglsname] = ACTIONS(12345), + [anon_sym_BSLASHGlsname] = ACTIONS(12345), + [anon_sym_BSLASHGLSname] = ACTIONS(12345), + [anon_sym_BSLASHglssymbol] = ACTIONS(12345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12345), + [anon_sym_BSLASHglsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12345), + [anon_sym_BSLASHglsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12345), + [anon_sym_BSLASHglsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12345), + [anon_sym_BSLASHglsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12345), + [anon_sym_BSLASHglsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12345), + [anon_sym_BSLASHnewacronym] = ACTIONS(12345), + [anon_sym_BSLASHacrshort] = ACTIONS(12345), + [anon_sym_BSLASHAcrshort] = ACTIONS(12345), + [anon_sym_BSLASHACRshort] = ACTIONS(12345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12345), + [anon_sym_BSLASHacrlong] = ACTIONS(12345), + [anon_sym_BSLASHAcrlong] = ACTIONS(12345), + [anon_sym_BSLASHACRlong] = ACTIONS(12345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12345), + [anon_sym_BSLASHacrfull] = ACTIONS(12345), + [anon_sym_BSLASHAcrfull] = ACTIONS(12345), + [anon_sym_BSLASHACRfull] = ACTIONS(12345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12345), + [anon_sym_BSLASHacs] = ACTIONS(12345), + [anon_sym_BSLASHAcs] = ACTIONS(12345), + [anon_sym_BSLASHacsp] = ACTIONS(12345), + [anon_sym_BSLASHAcsp] = ACTIONS(12345), + [anon_sym_BSLASHacl] = ACTIONS(12345), + [anon_sym_BSLASHAcl] = ACTIONS(12345), + [anon_sym_BSLASHaclp] = ACTIONS(12345), + [anon_sym_BSLASHAclp] = ACTIONS(12345), + [anon_sym_BSLASHacf] = ACTIONS(12345), + [anon_sym_BSLASHAcf] = ACTIONS(12345), + [anon_sym_BSLASHacfp] = ACTIONS(12345), + [anon_sym_BSLASHAcfp] = ACTIONS(12345), + [anon_sym_BSLASHac] = ACTIONS(12345), + [anon_sym_BSLASHAc] = ACTIONS(12345), + [anon_sym_BSLASHacp] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12345), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12345), + [anon_sym_BSLASHcolor] = ACTIONS(12345), + [anon_sym_BSLASHcolorbox] = ACTIONS(12345), + [anon_sym_BSLASHtextcolor] = ACTIONS(12345), + [anon_sym_BSLASHpagecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12345), + }, + [974] = { + [sym_generic_command_name] = ACTIONS(12231), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12231), + [aux_sym_chapter_token1] = ACTIONS(12231), + [aux_sym_section_token1] = ACTIONS(12231), + [aux_sym_subsection_token1] = ACTIONS(12231), + [aux_sym_subsubsection_token1] = ACTIONS(12231), + [aux_sym_paragraph_token1] = ACTIONS(12231), + [aux_sym_subparagraph_token1] = ACTIONS(12231), + [anon_sym_BSLASHitem] = ACTIONS(12231), + [anon_sym_LBRACK] = ACTIONS(12229), + [anon_sym_LBRACE] = ACTIONS(12229), + [anon_sym_LPAREN] = ACTIONS(12229), + [anon_sym_COMMA] = ACTIONS(12229), + [anon_sym_EQ] = ACTIONS(12229), + [sym_word] = ACTIONS(12229), + [sym_param] = ACTIONS(12229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12229), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12229), + [anon_sym_DOLLAR] = ACTIONS(12231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12229), + [anon_sym_BSLASHbegin] = ACTIONS(12231), + [anon_sym_BSLASHcaption] = ACTIONS(12231), + [anon_sym_BSLASHcite] = ACTIONS(12231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCite] = ACTIONS(12231), + [anon_sym_BSLASHnocite] = ACTIONS(12231), + [anon_sym_BSLASHcitet] = ACTIONS(12231), + [anon_sym_BSLASHcitep] = ACTIONS(12231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteauthor] = ACTIONS(12231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitetitle] = ACTIONS(12231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteyear] = ACTIONS(12231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitedate] = ACTIONS(12231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteurl] = ACTIONS(12231), + [anon_sym_BSLASHfullcite] = ACTIONS(12231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12231), + [anon_sym_BSLASHcitealt] = ACTIONS(12231), + [anon_sym_BSLASHcitealp] = ACTIONS(12231), + [anon_sym_BSLASHcitetext] = ACTIONS(12231), + [anon_sym_BSLASHparencite] = ACTIONS(12231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHParencite] = ACTIONS(12231), + [anon_sym_BSLASHfootcite] = ACTIONS(12231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12231), + [anon_sym_BSLASHtextcite] = ACTIONS(12231), + [anon_sym_BSLASHTextcite] = ACTIONS(12231), + [anon_sym_BSLASHsmartcite] = ACTIONS(12231), + [anon_sym_BSLASHSmartcite] = ACTIONS(12231), + [anon_sym_BSLASHsupercite] = ACTIONS(12231), + [anon_sym_BSLASHautocite] = ACTIONS(12231), + [anon_sym_BSLASHAutocite] = ACTIONS(12231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHvolcite] = ACTIONS(12231), + [anon_sym_BSLASHVolcite] = ACTIONS(12231), + [anon_sym_BSLASHpvolcite] = ACTIONS(12231), + [anon_sym_BSLASHPvolcite] = ACTIONS(12231), + [anon_sym_BSLASHfvolcite] = ACTIONS(12231), + [anon_sym_BSLASHftvolcite] = ACTIONS(12231), + [anon_sym_BSLASHsvolcite] = ACTIONS(12231), + [anon_sym_BSLASHSvolcite] = ACTIONS(12231), + [anon_sym_BSLASHtvolcite] = ACTIONS(12231), + [anon_sym_BSLASHTvolcite] = ACTIONS(12231), + [anon_sym_BSLASHavolcite] = ACTIONS(12231), + [anon_sym_BSLASHAvolcite] = ACTIONS(12231), + [anon_sym_BSLASHnotecite] = ACTIONS(12231), + [anon_sym_BSLASHpnotecite] = ACTIONS(12231), + [anon_sym_BSLASHPnotecite] = ACTIONS(12231), + [anon_sym_BSLASHfnotecite] = ACTIONS(12231), + [anon_sym_BSLASHusepackage] = ACTIONS(12231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12231), + [anon_sym_BSLASHinclude] = ACTIONS(12231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12231), + [anon_sym_BSLASHinput] = ACTIONS(12231), + [anon_sym_BSLASHsubfile] = ACTIONS(12231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12231), + [anon_sym_BSLASHbibliography] = ACTIONS(12231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12231), + [anon_sym_BSLASHincludesvg] = ACTIONS(12231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12231), + [anon_sym_BSLASHimport] = ACTIONS(12231), + [anon_sym_BSLASHsubimport] = ACTIONS(12231), + [anon_sym_BSLASHinputfrom] = ACTIONS(12231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12231), + [anon_sym_BSLASHincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHlabel] = ACTIONS(12231), + [anon_sym_BSLASHref] = ACTIONS(12231), + [anon_sym_BSLASHvref] = ACTIONS(12231), + [anon_sym_BSLASHVref] = ACTIONS(12231), + [anon_sym_BSLASHautoref] = ACTIONS(12231), + [anon_sym_BSLASHpageref] = ACTIONS(12231), + [anon_sym_BSLASHcref] = ACTIONS(12231), + [anon_sym_BSLASHCref] = ACTIONS(12231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnameCref] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHlabelcref] = ACTIONS(12231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12231), + [anon_sym_BSLASHeqref] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange] = ACTIONS(12231), + [anon_sym_BSLASHCrefrange] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewlabel] = ACTIONS(12231), + [anon_sym_BSLASHnewcommand] = ACTIONS(12231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12231), + [anon_sym_BSLASHgls] = ACTIONS(12231), + [anon_sym_BSLASHGls] = ACTIONS(12231), + [anon_sym_BSLASHGLS] = ACTIONS(12231), + [anon_sym_BSLASHglspl] = ACTIONS(12231), + [anon_sym_BSLASHGlspl] = ACTIONS(12231), + [anon_sym_BSLASHGLSpl] = ACTIONS(12231), + [anon_sym_BSLASHglsdisp] = ACTIONS(12231), + [anon_sym_BSLASHglslink] = ACTIONS(12231), + [anon_sym_BSLASHglstext] = ACTIONS(12231), + [anon_sym_BSLASHGlstext] = ACTIONS(12231), + [anon_sym_BSLASHGLStext] = ACTIONS(12231), + [anon_sym_BSLASHglsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12231), + [anon_sym_BSLASHglsplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSplural] = ACTIONS(12231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHglsname] = ACTIONS(12231), + [anon_sym_BSLASHGlsname] = ACTIONS(12231), + [anon_sym_BSLASHGLSname] = ACTIONS(12231), + [anon_sym_BSLASHglssymbol] = ACTIONS(12231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12231), + [anon_sym_BSLASHglsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12231), + [anon_sym_BSLASHglsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12231), + [anon_sym_BSLASHglsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12231), + [anon_sym_BSLASHglsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12231), + [anon_sym_BSLASHglsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12231), + [anon_sym_BSLASHnewacronym] = ACTIONS(12231), + [anon_sym_BSLASHacrshort] = ACTIONS(12231), + [anon_sym_BSLASHAcrshort] = ACTIONS(12231), + [anon_sym_BSLASHACRshort] = ACTIONS(12231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12231), + [anon_sym_BSLASHacrlong] = ACTIONS(12231), + [anon_sym_BSLASHAcrlong] = ACTIONS(12231), + [anon_sym_BSLASHACRlong] = ACTIONS(12231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12231), + [anon_sym_BSLASHacrfull] = ACTIONS(12231), + [anon_sym_BSLASHAcrfull] = ACTIONS(12231), + [anon_sym_BSLASHACRfull] = ACTIONS(12231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12231), + [anon_sym_BSLASHacs] = ACTIONS(12231), + [anon_sym_BSLASHAcs] = ACTIONS(12231), + [anon_sym_BSLASHacsp] = ACTIONS(12231), + [anon_sym_BSLASHAcsp] = ACTIONS(12231), + [anon_sym_BSLASHacl] = ACTIONS(12231), + [anon_sym_BSLASHAcl] = ACTIONS(12231), + [anon_sym_BSLASHaclp] = ACTIONS(12231), + [anon_sym_BSLASHAclp] = ACTIONS(12231), + [anon_sym_BSLASHacf] = ACTIONS(12231), + [anon_sym_BSLASHAcf] = ACTIONS(12231), + [anon_sym_BSLASHacfp] = ACTIONS(12231), + [anon_sym_BSLASHAcfp] = ACTIONS(12231), + [anon_sym_BSLASHac] = ACTIONS(12231), + [anon_sym_BSLASHAc] = ACTIONS(12231), + [anon_sym_BSLASHacp] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12231), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12231), + [anon_sym_BSLASHcolor] = ACTIONS(12231), + [anon_sym_BSLASHcolorbox] = ACTIONS(12231), + [anon_sym_BSLASHtextcolor] = ACTIONS(12231), + [anon_sym_BSLASHpagecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12231), + }, + [975] = { + [sym_generic_command_name] = ACTIONS(12365), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12365), + [aux_sym_chapter_token1] = ACTIONS(12365), + [aux_sym_section_token1] = ACTIONS(12365), + [aux_sym_subsection_token1] = ACTIONS(12365), + [aux_sym_subsubsection_token1] = ACTIONS(12365), + [aux_sym_paragraph_token1] = ACTIONS(12365), + [aux_sym_subparagraph_token1] = ACTIONS(12365), + [anon_sym_BSLASHitem] = ACTIONS(12365), + [anon_sym_LBRACK] = ACTIONS(12363), + [anon_sym_LBRACE] = ACTIONS(12363), + [anon_sym_LPAREN] = ACTIONS(12363), + [anon_sym_COMMA] = ACTIONS(12363), + [anon_sym_EQ] = ACTIONS(12363), + [sym_word] = ACTIONS(12363), + [sym_param] = ACTIONS(12363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12363), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12363), + [anon_sym_DOLLAR] = ACTIONS(12365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12363), + [anon_sym_BSLASHbegin] = ACTIONS(12365), + [anon_sym_BSLASHcaption] = ACTIONS(12365), + [anon_sym_BSLASHcite] = ACTIONS(12365), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCite] = ACTIONS(12365), + [anon_sym_BSLASHnocite] = ACTIONS(12365), + [anon_sym_BSLASHcitet] = ACTIONS(12365), + [anon_sym_BSLASHcitep] = ACTIONS(12365), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteauthor] = ACTIONS(12365), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12365), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitetitle] = ACTIONS(12365), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteyear] = ACTIONS(12365), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitedate] = ACTIONS(12365), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteurl] = ACTIONS(12365), + [anon_sym_BSLASHfullcite] = ACTIONS(12365), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12365), + [anon_sym_BSLASHcitealt] = ACTIONS(12365), + [anon_sym_BSLASHcitealp] = ACTIONS(12365), + [anon_sym_BSLASHcitetext] = ACTIONS(12365), + [anon_sym_BSLASHparencite] = ACTIONS(12365), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHParencite] = ACTIONS(12365), + [anon_sym_BSLASHfootcite] = ACTIONS(12365), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12365), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12365), + [anon_sym_BSLASHtextcite] = ACTIONS(12365), + [anon_sym_BSLASHTextcite] = ACTIONS(12365), + [anon_sym_BSLASHsmartcite] = ACTIONS(12365), + [anon_sym_BSLASHSmartcite] = ACTIONS(12365), + [anon_sym_BSLASHsupercite] = ACTIONS(12365), + [anon_sym_BSLASHautocite] = ACTIONS(12365), + [anon_sym_BSLASHAutocite] = ACTIONS(12365), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHvolcite] = ACTIONS(12365), + [anon_sym_BSLASHVolcite] = ACTIONS(12365), + [anon_sym_BSLASHpvolcite] = ACTIONS(12365), + [anon_sym_BSLASHPvolcite] = ACTIONS(12365), + [anon_sym_BSLASHfvolcite] = ACTIONS(12365), + [anon_sym_BSLASHftvolcite] = ACTIONS(12365), + [anon_sym_BSLASHsvolcite] = ACTIONS(12365), + [anon_sym_BSLASHSvolcite] = ACTIONS(12365), + [anon_sym_BSLASHtvolcite] = ACTIONS(12365), + [anon_sym_BSLASHTvolcite] = ACTIONS(12365), + [anon_sym_BSLASHavolcite] = ACTIONS(12365), + [anon_sym_BSLASHAvolcite] = ACTIONS(12365), + [anon_sym_BSLASHnotecite] = ACTIONS(12365), + [anon_sym_BSLASHpnotecite] = ACTIONS(12365), + [anon_sym_BSLASHPnotecite] = ACTIONS(12365), + [anon_sym_BSLASHfnotecite] = ACTIONS(12365), + [anon_sym_BSLASHusepackage] = ACTIONS(12365), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12365), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12365), + [anon_sym_BSLASHinclude] = ACTIONS(12365), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12365), + [anon_sym_BSLASHinput] = ACTIONS(12365), + [anon_sym_BSLASHsubfile] = ACTIONS(12365), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12365), + [anon_sym_BSLASHbibliography] = ACTIONS(12365), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12365), + [anon_sym_BSLASHincludesvg] = ACTIONS(12365), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12365), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12365), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12365), + [anon_sym_BSLASHimport] = ACTIONS(12365), + [anon_sym_BSLASHsubimport] = ACTIONS(12365), + [anon_sym_BSLASHinputfrom] = ACTIONS(12365), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12365), + [anon_sym_BSLASHincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHlabel] = ACTIONS(12365), + [anon_sym_BSLASHref] = ACTIONS(12365), + [anon_sym_BSLASHvref] = ACTIONS(12365), + [anon_sym_BSLASHVref] = ACTIONS(12365), + [anon_sym_BSLASHautoref] = ACTIONS(12365), + [anon_sym_BSLASHpageref] = ACTIONS(12365), + [anon_sym_BSLASHcref] = ACTIONS(12365), + [anon_sym_BSLASHCref] = ACTIONS(12365), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnameCref] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHlabelcref] = ACTIONS(12365), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12365), + [anon_sym_BSLASHeqref] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange] = ACTIONS(12365), + [anon_sym_BSLASHCrefrange] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewlabel] = ACTIONS(12365), + [anon_sym_BSLASHnewcommand] = ACTIONS(12365), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12365), + [anon_sym_BSLASHgls] = ACTIONS(12365), + [anon_sym_BSLASHGls] = ACTIONS(12365), + [anon_sym_BSLASHGLS] = ACTIONS(12365), + [anon_sym_BSLASHglspl] = ACTIONS(12365), + [anon_sym_BSLASHGlspl] = ACTIONS(12365), + [anon_sym_BSLASHGLSpl] = ACTIONS(12365), + [anon_sym_BSLASHglsdisp] = ACTIONS(12365), + [anon_sym_BSLASHglslink] = ACTIONS(12365), + [anon_sym_BSLASHglstext] = ACTIONS(12365), + [anon_sym_BSLASHGlstext] = ACTIONS(12365), + [anon_sym_BSLASHGLStext] = ACTIONS(12365), + [anon_sym_BSLASHglsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12365), + [anon_sym_BSLASHglsplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSplural] = ACTIONS(12365), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHglsname] = ACTIONS(12365), + [anon_sym_BSLASHGlsname] = ACTIONS(12365), + [anon_sym_BSLASHGLSname] = ACTIONS(12365), + [anon_sym_BSLASHglssymbol] = ACTIONS(12365), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12365), + [anon_sym_BSLASHglsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12365), + [anon_sym_BSLASHglsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12365), + [anon_sym_BSLASHglsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12365), + [anon_sym_BSLASHglsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12365), + [anon_sym_BSLASHglsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12365), + [anon_sym_BSLASHnewacronym] = ACTIONS(12365), + [anon_sym_BSLASHacrshort] = ACTIONS(12365), + [anon_sym_BSLASHAcrshort] = ACTIONS(12365), + [anon_sym_BSLASHACRshort] = ACTIONS(12365), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12365), + [anon_sym_BSLASHacrlong] = ACTIONS(12365), + [anon_sym_BSLASHAcrlong] = ACTIONS(12365), + [anon_sym_BSLASHACRlong] = ACTIONS(12365), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12365), + [anon_sym_BSLASHacrfull] = ACTIONS(12365), + [anon_sym_BSLASHAcrfull] = ACTIONS(12365), + [anon_sym_BSLASHACRfull] = ACTIONS(12365), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12365), + [anon_sym_BSLASHacs] = ACTIONS(12365), + [anon_sym_BSLASHAcs] = ACTIONS(12365), + [anon_sym_BSLASHacsp] = ACTIONS(12365), + [anon_sym_BSLASHAcsp] = ACTIONS(12365), + [anon_sym_BSLASHacl] = ACTIONS(12365), + [anon_sym_BSLASHAcl] = ACTIONS(12365), + [anon_sym_BSLASHaclp] = ACTIONS(12365), + [anon_sym_BSLASHAclp] = ACTIONS(12365), + [anon_sym_BSLASHacf] = ACTIONS(12365), + [anon_sym_BSLASHAcf] = ACTIONS(12365), + [anon_sym_BSLASHacfp] = ACTIONS(12365), + [anon_sym_BSLASHAcfp] = ACTIONS(12365), + [anon_sym_BSLASHac] = ACTIONS(12365), + [anon_sym_BSLASHAc] = ACTIONS(12365), + [anon_sym_BSLASHacp] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12365), + [anon_sym_BSLASHcolor] = ACTIONS(12365), + [anon_sym_BSLASHcolorbox] = ACTIONS(12365), + [anon_sym_BSLASHtextcolor] = ACTIONS(12365), + [anon_sym_BSLASHpagecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12365), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12365), + }, + [976] = { + [sym_generic_command_name] = ACTIONS(12385), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12385), + [aux_sym_chapter_token1] = ACTIONS(12385), + [aux_sym_section_token1] = ACTIONS(12385), + [aux_sym_subsection_token1] = ACTIONS(12385), + [aux_sym_subsubsection_token1] = ACTIONS(12385), + [aux_sym_paragraph_token1] = ACTIONS(12385), + [aux_sym_subparagraph_token1] = ACTIONS(12385), + [anon_sym_BSLASHitem] = ACTIONS(12385), + [anon_sym_LBRACK] = ACTIONS(12383), + [anon_sym_LBRACE] = ACTIONS(12383), + [anon_sym_LPAREN] = ACTIONS(12383), + [anon_sym_COMMA] = ACTIONS(12383), + [anon_sym_EQ] = ACTIONS(12383), + [sym_word] = ACTIONS(12383), + [sym_param] = ACTIONS(12383), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12383), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12383), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12383), + [anon_sym_DOLLAR] = ACTIONS(12385), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12383), + [anon_sym_BSLASHbegin] = ACTIONS(12385), + [anon_sym_BSLASHcaption] = ACTIONS(12385), + [anon_sym_BSLASHcite] = ACTIONS(12385), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCite] = ACTIONS(12385), + [anon_sym_BSLASHnocite] = ACTIONS(12385), + [anon_sym_BSLASHcitet] = ACTIONS(12385), + [anon_sym_BSLASHcitep] = ACTIONS(12385), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteauthor] = ACTIONS(12385), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12385), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitetitle] = ACTIONS(12385), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteyear] = ACTIONS(12385), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitedate] = ACTIONS(12385), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteurl] = ACTIONS(12385), + [anon_sym_BSLASHfullcite] = ACTIONS(12385), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12385), + [anon_sym_BSLASHcitealt] = ACTIONS(12385), + [anon_sym_BSLASHcitealp] = ACTIONS(12385), + [anon_sym_BSLASHcitetext] = ACTIONS(12385), + [anon_sym_BSLASHparencite] = ACTIONS(12385), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHParencite] = ACTIONS(12385), + [anon_sym_BSLASHfootcite] = ACTIONS(12385), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12385), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12385), + [anon_sym_BSLASHtextcite] = ACTIONS(12385), + [anon_sym_BSLASHTextcite] = ACTIONS(12385), + [anon_sym_BSLASHsmartcite] = ACTIONS(12385), + [anon_sym_BSLASHSmartcite] = ACTIONS(12385), + [anon_sym_BSLASHsupercite] = ACTIONS(12385), + [anon_sym_BSLASHautocite] = ACTIONS(12385), + [anon_sym_BSLASHAutocite] = ACTIONS(12385), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHvolcite] = ACTIONS(12385), + [anon_sym_BSLASHVolcite] = ACTIONS(12385), + [anon_sym_BSLASHpvolcite] = ACTIONS(12385), + [anon_sym_BSLASHPvolcite] = ACTIONS(12385), + [anon_sym_BSLASHfvolcite] = ACTIONS(12385), + [anon_sym_BSLASHftvolcite] = ACTIONS(12385), + [anon_sym_BSLASHsvolcite] = ACTIONS(12385), + [anon_sym_BSLASHSvolcite] = ACTIONS(12385), + [anon_sym_BSLASHtvolcite] = ACTIONS(12385), + [anon_sym_BSLASHTvolcite] = ACTIONS(12385), + [anon_sym_BSLASHavolcite] = ACTIONS(12385), + [anon_sym_BSLASHAvolcite] = ACTIONS(12385), + [anon_sym_BSLASHnotecite] = ACTIONS(12385), + [anon_sym_BSLASHpnotecite] = ACTIONS(12385), + [anon_sym_BSLASHPnotecite] = ACTIONS(12385), + [anon_sym_BSLASHfnotecite] = ACTIONS(12385), + [anon_sym_BSLASHusepackage] = ACTIONS(12385), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12385), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12385), + [anon_sym_BSLASHinclude] = ACTIONS(12385), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12385), + [anon_sym_BSLASHinput] = ACTIONS(12385), + [anon_sym_BSLASHsubfile] = ACTIONS(12385), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12385), + [anon_sym_BSLASHbibliography] = ACTIONS(12385), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12385), + [anon_sym_BSLASHincludesvg] = ACTIONS(12385), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12385), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12385), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12385), + [anon_sym_BSLASHimport] = ACTIONS(12385), + [anon_sym_BSLASHsubimport] = ACTIONS(12385), + [anon_sym_BSLASHinputfrom] = ACTIONS(12385), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12385), + [anon_sym_BSLASHincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHlabel] = ACTIONS(12385), + [anon_sym_BSLASHref] = ACTIONS(12385), + [anon_sym_BSLASHvref] = ACTIONS(12385), + [anon_sym_BSLASHVref] = ACTIONS(12385), + [anon_sym_BSLASHautoref] = ACTIONS(12385), + [anon_sym_BSLASHpageref] = ACTIONS(12385), + [anon_sym_BSLASHcref] = ACTIONS(12385), + [anon_sym_BSLASHCref] = ACTIONS(12385), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnameCref] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHlabelcref] = ACTIONS(12385), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12385), + [anon_sym_BSLASHeqref] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange] = ACTIONS(12385), + [anon_sym_BSLASHCrefrange] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewlabel] = ACTIONS(12385), + [anon_sym_BSLASHnewcommand] = ACTIONS(12385), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12385), + [anon_sym_BSLASHgls] = ACTIONS(12385), + [anon_sym_BSLASHGls] = ACTIONS(12385), + [anon_sym_BSLASHGLS] = ACTIONS(12385), + [anon_sym_BSLASHglspl] = ACTIONS(12385), + [anon_sym_BSLASHGlspl] = ACTIONS(12385), + [anon_sym_BSLASHGLSpl] = ACTIONS(12385), + [anon_sym_BSLASHglsdisp] = ACTIONS(12385), + [anon_sym_BSLASHglslink] = ACTIONS(12385), + [anon_sym_BSLASHglstext] = ACTIONS(12385), + [anon_sym_BSLASHGlstext] = ACTIONS(12385), + [anon_sym_BSLASHGLStext] = ACTIONS(12385), + [anon_sym_BSLASHglsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12385), + [anon_sym_BSLASHglsplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSplural] = ACTIONS(12385), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHglsname] = ACTIONS(12385), + [anon_sym_BSLASHGlsname] = ACTIONS(12385), + [anon_sym_BSLASHGLSname] = ACTIONS(12385), + [anon_sym_BSLASHglssymbol] = ACTIONS(12385), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12385), + [anon_sym_BSLASHglsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12385), + [anon_sym_BSLASHglsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12385), + [anon_sym_BSLASHglsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12385), + [anon_sym_BSLASHglsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12385), + [anon_sym_BSLASHglsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12385), + [anon_sym_BSLASHnewacronym] = ACTIONS(12385), + [anon_sym_BSLASHacrshort] = ACTIONS(12385), + [anon_sym_BSLASHAcrshort] = ACTIONS(12385), + [anon_sym_BSLASHACRshort] = ACTIONS(12385), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12385), + [anon_sym_BSLASHacrlong] = ACTIONS(12385), + [anon_sym_BSLASHAcrlong] = ACTIONS(12385), + [anon_sym_BSLASHACRlong] = ACTIONS(12385), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12385), + [anon_sym_BSLASHacrfull] = ACTIONS(12385), + [anon_sym_BSLASHAcrfull] = ACTIONS(12385), + [anon_sym_BSLASHACRfull] = ACTIONS(12385), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12385), + [anon_sym_BSLASHacs] = ACTIONS(12385), + [anon_sym_BSLASHAcs] = ACTIONS(12385), + [anon_sym_BSLASHacsp] = ACTIONS(12385), + [anon_sym_BSLASHAcsp] = ACTIONS(12385), + [anon_sym_BSLASHacl] = ACTIONS(12385), + [anon_sym_BSLASHAcl] = ACTIONS(12385), + [anon_sym_BSLASHaclp] = ACTIONS(12385), + [anon_sym_BSLASHAclp] = ACTIONS(12385), + [anon_sym_BSLASHacf] = ACTIONS(12385), + [anon_sym_BSLASHAcf] = ACTIONS(12385), + [anon_sym_BSLASHacfp] = ACTIONS(12385), + [anon_sym_BSLASHAcfp] = ACTIONS(12385), + [anon_sym_BSLASHac] = ACTIONS(12385), + [anon_sym_BSLASHAc] = ACTIONS(12385), + [anon_sym_BSLASHacp] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12385), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12385), + [anon_sym_BSLASHcolor] = ACTIONS(12385), + [anon_sym_BSLASHcolorbox] = ACTIONS(12385), + [anon_sym_BSLASHtextcolor] = ACTIONS(12385), + [anon_sym_BSLASHpagecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12385), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12385), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12385), + }, + [977] = { + [sym_generic_command_name] = ACTIONS(12437), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12437), + [aux_sym_section_token1] = ACTIONS(12437), + [aux_sym_subsection_token1] = ACTIONS(12437), + [aux_sym_subsubsection_token1] = ACTIONS(12437), + [aux_sym_paragraph_token1] = ACTIONS(12437), + [aux_sym_subparagraph_token1] = ACTIONS(12437), + [anon_sym_BSLASHitem] = ACTIONS(12437), + [anon_sym_LBRACK] = ACTIONS(12435), + [anon_sym_RBRACK] = ACTIONS(12435), + [anon_sym_LBRACE] = ACTIONS(12435), + [anon_sym_RBRACE] = ACTIONS(12435), + [anon_sym_LPAREN] = ACTIONS(12435), + [anon_sym_COMMA] = ACTIONS(12435), + [anon_sym_EQ] = ACTIONS(12435), + [sym_word] = ACTIONS(12435), + [sym_param] = ACTIONS(12435), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12435), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12435), + [anon_sym_DOLLAR] = ACTIONS(12437), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12435), + [anon_sym_BSLASHbegin] = ACTIONS(12437), + [anon_sym_BSLASHcaption] = ACTIONS(12437), + [anon_sym_BSLASHcite] = ACTIONS(12437), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCite] = ACTIONS(12437), + [anon_sym_BSLASHnocite] = ACTIONS(12437), + [anon_sym_BSLASHcitet] = ACTIONS(12437), + [anon_sym_BSLASHcitep] = ACTIONS(12437), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteauthor] = ACTIONS(12437), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12437), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitetitle] = ACTIONS(12437), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteyear] = ACTIONS(12437), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitedate] = ACTIONS(12437), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteurl] = ACTIONS(12437), + [anon_sym_BSLASHfullcite] = ACTIONS(12437), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12437), + [anon_sym_BSLASHcitealt] = ACTIONS(12437), + [anon_sym_BSLASHcitealp] = ACTIONS(12437), + [anon_sym_BSLASHcitetext] = ACTIONS(12437), + [anon_sym_BSLASHparencite] = ACTIONS(12437), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHParencite] = ACTIONS(12437), + [anon_sym_BSLASHfootcite] = ACTIONS(12437), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12437), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12437), + [anon_sym_BSLASHtextcite] = ACTIONS(12437), + [anon_sym_BSLASHTextcite] = ACTIONS(12437), + [anon_sym_BSLASHsmartcite] = ACTIONS(12437), + [anon_sym_BSLASHSmartcite] = ACTIONS(12437), + [anon_sym_BSLASHsupercite] = ACTIONS(12437), + [anon_sym_BSLASHautocite] = ACTIONS(12437), + [anon_sym_BSLASHAutocite] = ACTIONS(12437), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHvolcite] = ACTIONS(12437), + [anon_sym_BSLASHVolcite] = ACTIONS(12437), + [anon_sym_BSLASHpvolcite] = ACTIONS(12437), + [anon_sym_BSLASHPvolcite] = ACTIONS(12437), + [anon_sym_BSLASHfvolcite] = ACTIONS(12437), + [anon_sym_BSLASHftvolcite] = ACTIONS(12437), + [anon_sym_BSLASHsvolcite] = ACTIONS(12437), + [anon_sym_BSLASHSvolcite] = ACTIONS(12437), + [anon_sym_BSLASHtvolcite] = ACTIONS(12437), + [anon_sym_BSLASHTvolcite] = ACTIONS(12437), + [anon_sym_BSLASHavolcite] = ACTIONS(12437), + [anon_sym_BSLASHAvolcite] = ACTIONS(12437), + [anon_sym_BSLASHnotecite] = ACTIONS(12437), + [anon_sym_BSLASHpnotecite] = ACTIONS(12437), + [anon_sym_BSLASHPnotecite] = ACTIONS(12437), + [anon_sym_BSLASHfnotecite] = ACTIONS(12437), + [anon_sym_BSLASHusepackage] = ACTIONS(12437), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12437), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12437), + [anon_sym_BSLASHinclude] = ACTIONS(12437), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12437), + [anon_sym_BSLASHinput] = ACTIONS(12437), + [anon_sym_BSLASHsubfile] = ACTIONS(12437), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12437), + [anon_sym_BSLASHbibliography] = ACTIONS(12437), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12437), + [anon_sym_BSLASHincludesvg] = ACTIONS(12437), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12437), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12437), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12437), + [anon_sym_BSLASHimport] = ACTIONS(12437), + [anon_sym_BSLASHsubimport] = ACTIONS(12437), + [anon_sym_BSLASHinputfrom] = ACTIONS(12437), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12437), + [anon_sym_BSLASHincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHlabel] = ACTIONS(12437), + [anon_sym_BSLASHref] = ACTIONS(12437), + [anon_sym_BSLASHvref] = ACTIONS(12437), + [anon_sym_BSLASHVref] = ACTIONS(12437), + [anon_sym_BSLASHautoref] = ACTIONS(12437), + [anon_sym_BSLASHpageref] = ACTIONS(12437), + [anon_sym_BSLASHcref] = ACTIONS(12437), + [anon_sym_BSLASHCref] = ACTIONS(12437), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnameCref] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHlabelcref] = ACTIONS(12437), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12437), + [anon_sym_BSLASHeqref] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange] = ACTIONS(12437), + [anon_sym_BSLASHCrefrange] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewlabel] = ACTIONS(12437), + [anon_sym_BSLASHnewcommand] = ACTIONS(12437), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12437), + [anon_sym_BSLASHgls] = ACTIONS(12437), + [anon_sym_BSLASHGls] = ACTIONS(12437), + [anon_sym_BSLASHGLS] = ACTIONS(12437), + [anon_sym_BSLASHglspl] = ACTIONS(12437), + [anon_sym_BSLASHGlspl] = ACTIONS(12437), + [anon_sym_BSLASHGLSpl] = ACTIONS(12437), + [anon_sym_BSLASHglsdisp] = ACTIONS(12437), + [anon_sym_BSLASHglslink] = ACTIONS(12437), + [anon_sym_BSLASHglstext] = ACTIONS(12437), + [anon_sym_BSLASHGlstext] = ACTIONS(12437), + [anon_sym_BSLASHGLStext] = ACTIONS(12437), + [anon_sym_BSLASHglsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12437), + [anon_sym_BSLASHglsplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSplural] = ACTIONS(12437), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHglsname] = ACTIONS(12437), + [anon_sym_BSLASHGlsname] = ACTIONS(12437), + [anon_sym_BSLASHGLSname] = ACTIONS(12437), + [anon_sym_BSLASHglssymbol] = ACTIONS(12437), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12437), + [anon_sym_BSLASHglsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12437), + [anon_sym_BSLASHglsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12437), + [anon_sym_BSLASHglsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12437), + [anon_sym_BSLASHglsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12437), + [anon_sym_BSLASHglsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12437), + [anon_sym_BSLASHnewacronym] = ACTIONS(12437), + [anon_sym_BSLASHacrshort] = ACTIONS(12437), + [anon_sym_BSLASHAcrshort] = ACTIONS(12437), + [anon_sym_BSLASHACRshort] = ACTIONS(12437), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12437), + [anon_sym_BSLASHacrlong] = ACTIONS(12437), + [anon_sym_BSLASHAcrlong] = ACTIONS(12437), + [anon_sym_BSLASHACRlong] = ACTIONS(12437), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12437), + [anon_sym_BSLASHacrfull] = ACTIONS(12437), + [anon_sym_BSLASHAcrfull] = ACTIONS(12437), + [anon_sym_BSLASHACRfull] = ACTIONS(12437), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12437), + [anon_sym_BSLASHacs] = ACTIONS(12437), + [anon_sym_BSLASHAcs] = ACTIONS(12437), + [anon_sym_BSLASHacsp] = ACTIONS(12437), + [anon_sym_BSLASHAcsp] = ACTIONS(12437), + [anon_sym_BSLASHacl] = ACTIONS(12437), + [anon_sym_BSLASHAcl] = ACTIONS(12437), + [anon_sym_BSLASHaclp] = ACTIONS(12437), + [anon_sym_BSLASHAclp] = ACTIONS(12437), + [anon_sym_BSLASHacf] = ACTIONS(12437), + [anon_sym_BSLASHAcf] = ACTIONS(12437), + [anon_sym_BSLASHacfp] = ACTIONS(12437), + [anon_sym_BSLASHAcfp] = ACTIONS(12437), + [anon_sym_BSLASHac] = ACTIONS(12437), + [anon_sym_BSLASHAc] = ACTIONS(12437), + [anon_sym_BSLASHacp] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12437), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12437), + [anon_sym_BSLASHcolor] = ACTIONS(12437), + [anon_sym_BSLASHcolorbox] = ACTIONS(12437), + [anon_sym_BSLASHtextcolor] = ACTIONS(12437), + [anon_sym_BSLASHpagecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12437), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12437), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12437), + }, + [978] = { + [sym_generic_command_name] = ACTIONS(12377), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12377), + [aux_sym_chapter_token1] = ACTIONS(12377), + [aux_sym_section_token1] = ACTIONS(12377), + [aux_sym_subsection_token1] = ACTIONS(12377), + [aux_sym_subsubsection_token1] = ACTIONS(12377), + [aux_sym_paragraph_token1] = ACTIONS(12377), + [aux_sym_subparagraph_token1] = ACTIONS(12377), + [anon_sym_BSLASHitem] = ACTIONS(12377), + [anon_sym_LBRACK] = ACTIONS(12375), + [anon_sym_LBRACE] = ACTIONS(12375), + [anon_sym_LPAREN] = ACTIONS(12375), + [anon_sym_COMMA] = ACTIONS(12375), + [anon_sym_EQ] = ACTIONS(12375), + [sym_word] = ACTIONS(12375), + [sym_param] = ACTIONS(12375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12375), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12375), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12375), + [anon_sym_DOLLAR] = ACTIONS(12377), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12375), + [anon_sym_BSLASHbegin] = ACTIONS(12377), + [anon_sym_BSLASHcaption] = ACTIONS(12377), + [anon_sym_BSLASHcite] = ACTIONS(12377), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCite] = ACTIONS(12377), + [anon_sym_BSLASHnocite] = ACTIONS(12377), + [anon_sym_BSLASHcitet] = ACTIONS(12377), + [anon_sym_BSLASHcitep] = ACTIONS(12377), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteauthor] = ACTIONS(12377), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12377), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitetitle] = ACTIONS(12377), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteyear] = ACTIONS(12377), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitedate] = ACTIONS(12377), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteurl] = ACTIONS(12377), + [anon_sym_BSLASHfullcite] = ACTIONS(12377), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12377), + [anon_sym_BSLASHcitealt] = ACTIONS(12377), + [anon_sym_BSLASHcitealp] = ACTIONS(12377), + [anon_sym_BSLASHcitetext] = ACTIONS(12377), + [anon_sym_BSLASHparencite] = ACTIONS(12377), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHParencite] = ACTIONS(12377), + [anon_sym_BSLASHfootcite] = ACTIONS(12377), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12377), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12377), + [anon_sym_BSLASHtextcite] = ACTIONS(12377), + [anon_sym_BSLASHTextcite] = ACTIONS(12377), + [anon_sym_BSLASHsmartcite] = ACTIONS(12377), + [anon_sym_BSLASHSmartcite] = ACTIONS(12377), + [anon_sym_BSLASHsupercite] = ACTIONS(12377), + [anon_sym_BSLASHautocite] = ACTIONS(12377), + [anon_sym_BSLASHAutocite] = ACTIONS(12377), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHvolcite] = ACTIONS(12377), + [anon_sym_BSLASHVolcite] = ACTIONS(12377), + [anon_sym_BSLASHpvolcite] = ACTIONS(12377), + [anon_sym_BSLASHPvolcite] = ACTIONS(12377), + [anon_sym_BSLASHfvolcite] = ACTIONS(12377), + [anon_sym_BSLASHftvolcite] = ACTIONS(12377), + [anon_sym_BSLASHsvolcite] = ACTIONS(12377), + [anon_sym_BSLASHSvolcite] = ACTIONS(12377), + [anon_sym_BSLASHtvolcite] = ACTIONS(12377), + [anon_sym_BSLASHTvolcite] = ACTIONS(12377), + [anon_sym_BSLASHavolcite] = ACTIONS(12377), + [anon_sym_BSLASHAvolcite] = ACTIONS(12377), + [anon_sym_BSLASHnotecite] = ACTIONS(12377), + [anon_sym_BSLASHpnotecite] = ACTIONS(12377), + [anon_sym_BSLASHPnotecite] = ACTIONS(12377), + [anon_sym_BSLASHfnotecite] = ACTIONS(12377), + [anon_sym_BSLASHusepackage] = ACTIONS(12377), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12377), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12377), + [anon_sym_BSLASHinclude] = ACTIONS(12377), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12377), + [anon_sym_BSLASHinput] = ACTIONS(12377), + [anon_sym_BSLASHsubfile] = ACTIONS(12377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12377), + [anon_sym_BSLASHbibliography] = ACTIONS(12377), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12377), + [anon_sym_BSLASHincludesvg] = ACTIONS(12377), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12377), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12377), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12377), + [anon_sym_BSLASHimport] = ACTIONS(12377), + [anon_sym_BSLASHsubimport] = ACTIONS(12377), + [anon_sym_BSLASHinputfrom] = ACTIONS(12377), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12377), + [anon_sym_BSLASHincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHlabel] = ACTIONS(12377), + [anon_sym_BSLASHref] = ACTIONS(12377), + [anon_sym_BSLASHvref] = ACTIONS(12377), + [anon_sym_BSLASHVref] = ACTIONS(12377), + [anon_sym_BSLASHautoref] = ACTIONS(12377), + [anon_sym_BSLASHpageref] = ACTIONS(12377), + [anon_sym_BSLASHcref] = ACTIONS(12377), + [anon_sym_BSLASHCref] = ACTIONS(12377), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnameCref] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHlabelcref] = ACTIONS(12377), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12377), + [anon_sym_BSLASHeqref] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange] = ACTIONS(12377), + [anon_sym_BSLASHCrefrange] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewlabel] = ACTIONS(12377), + [anon_sym_BSLASHnewcommand] = ACTIONS(12377), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12377), + [anon_sym_BSLASHgls] = ACTIONS(12377), + [anon_sym_BSLASHGls] = ACTIONS(12377), + [anon_sym_BSLASHGLS] = ACTIONS(12377), + [anon_sym_BSLASHglspl] = ACTIONS(12377), + [anon_sym_BSLASHGlspl] = ACTIONS(12377), + [anon_sym_BSLASHGLSpl] = ACTIONS(12377), + [anon_sym_BSLASHglsdisp] = ACTIONS(12377), + [anon_sym_BSLASHglslink] = ACTIONS(12377), + [anon_sym_BSLASHglstext] = ACTIONS(12377), + [anon_sym_BSLASHGlstext] = ACTIONS(12377), + [anon_sym_BSLASHGLStext] = ACTIONS(12377), + [anon_sym_BSLASHglsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12377), + [anon_sym_BSLASHglsplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSplural] = ACTIONS(12377), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHglsname] = ACTIONS(12377), + [anon_sym_BSLASHGlsname] = ACTIONS(12377), + [anon_sym_BSLASHGLSname] = ACTIONS(12377), + [anon_sym_BSLASHglssymbol] = ACTIONS(12377), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12377), + [anon_sym_BSLASHglsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12377), + [anon_sym_BSLASHglsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12377), + [anon_sym_BSLASHglsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12377), + [anon_sym_BSLASHglsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12377), + [anon_sym_BSLASHglsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12377), + [anon_sym_BSLASHnewacronym] = ACTIONS(12377), + [anon_sym_BSLASHacrshort] = ACTIONS(12377), + [anon_sym_BSLASHAcrshort] = ACTIONS(12377), + [anon_sym_BSLASHACRshort] = ACTIONS(12377), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12377), + [anon_sym_BSLASHacrlong] = ACTIONS(12377), + [anon_sym_BSLASHAcrlong] = ACTIONS(12377), + [anon_sym_BSLASHACRlong] = ACTIONS(12377), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12377), + [anon_sym_BSLASHacrfull] = ACTIONS(12377), + [anon_sym_BSLASHAcrfull] = ACTIONS(12377), + [anon_sym_BSLASHACRfull] = ACTIONS(12377), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12377), + [anon_sym_BSLASHacs] = ACTIONS(12377), + [anon_sym_BSLASHAcs] = ACTIONS(12377), + [anon_sym_BSLASHacsp] = ACTIONS(12377), + [anon_sym_BSLASHAcsp] = ACTIONS(12377), + [anon_sym_BSLASHacl] = ACTIONS(12377), + [anon_sym_BSLASHAcl] = ACTIONS(12377), + [anon_sym_BSLASHaclp] = ACTIONS(12377), + [anon_sym_BSLASHAclp] = ACTIONS(12377), + [anon_sym_BSLASHacf] = ACTIONS(12377), + [anon_sym_BSLASHAcf] = ACTIONS(12377), + [anon_sym_BSLASHacfp] = ACTIONS(12377), + [anon_sym_BSLASHAcfp] = ACTIONS(12377), + [anon_sym_BSLASHac] = ACTIONS(12377), + [anon_sym_BSLASHAc] = ACTIONS(12377), + [anon_sym_BSLASHacp] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12377), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12377), + [anon_sym_BSLASHcolor] = ACTIONS(12377), + [anon_sym_BSLASHcolorbox] = ACTIONS(12377), + [anon_sym_BSLASHtextcolor] = ACTIONS(12377), + [anon_sym_BSLASHpagecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12377), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12377), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12377), + }, + [979] = { + [sym_generic_command_name] = ACTIONS(12185), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12185), + [aux_sym_section_token1] = ACTIONS(12185), + [aux_sym_subsection_token1] = ACTIONS(12185), + [aux_sym_subsubsection_token1] = ACTIONS(12185), + [aux_sym_paragraph_token1] = ACTIONS(12185), + [aux_sym_subparagraph_token1] = ACTIONS(12185), + [anon_sym_BSLASHitem] = ACTIONS(12185), + [anon_sym_LBRACK] = ACTIONS(12183), + [anon_sym_RBRACK] = ACTIONS(12183), + [anon_sym_LBRACE] = ACTIONS(12183), + [anon_sym_RBRACE] = ACTIONS(12183), + [anon_sym_LPAREN] = ACTIONS(12183), + [anon_sym_COMMA] = ACTIONS(12183), + [anon_sym_EQ] = ACTIONS(12183), + [sym_word] = ACTIONS(12183), + [sym_param] = ACTIONS(12183), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12183), + [anon_sym_DOLLAR] = ACTIONS(12185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12183), + [anon_sym_BSLASHbegin] = ACTIONS(12185), + [anon_sym_BSLASHcaption] = ACTIONS(12185), + [anon_sym_BSLASHcite] = ACTIONS(12185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCite] = ACTIONS(12185), + [anon_sym_BSLASHnocite] = ACTIONS(12185), + [anon_sym_BSLASHcitet] = ACTIONS(12185), + [anon_sym_BSLASHcitep] = ACTIONS(12185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteauthor] = ACTIONS(12185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitetitle] = ACTIONS(12185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteyear] = ACTIONS(12185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitedate] = ACTIONS(12185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteurl] = ACTIONS(12185), + [anon_sym_BSLASHfullcite] = ACTIONS(12185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12185), + [anon_sym_BSLASHcitealt] = ACTIONS(12185), + [anon_sym_BSLASHcitealp] = ACTIONS(12185), + [anon_sym_BSLASHcitetext] = ACTIONS(12185), + [anon_sym_BSLASHparencite] = ACTIONS(12185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHParencite] = ACTIONS(12185), + [anon_sym_BSLASHfootcite] = ACTIONS(12185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12185), + [anon_sym_BSLASHtextcite] = ACTIONS(12185), + [anon_sym_BSLASHTextcite] = ACTIONS(12185), + [anon_sym_BSLASHsmartcite] = ACTIONS(12185), + [anon_sym_BSLASHSmartcite] = ACTIONS(12185), + [anon_sym_BSLASHsupercite] = ACTIONS(12185), + [anon_sym_BSLASHautocite] = ACTIONS(12185), + [anon_sym_BSLASHAutocite] = ACTIONS(12185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHvolcite] = ACTIONS(12185), + [anon_sym_BSLASHVolcite] = ACTIONS(12185), + [anon_sym_BSLASHpvolcite] = ACTIONS(12185), + [anon_sym_BSLASHPvolcite] = ACTIONS(12185), + [anon_sym_BSLASHfvolcite] = ACTIONS(12185), + [anon_sym_BSLASHftvolcite] = ACTIONS(12185), + [anon_sym_BSLASHsvolcite] = ACTIONS(12185), + [anon_sym_BSLASHSvolcite] = ACTIONS(12185), + [anon_sym_BSLASHtvolcite] = ACTIONS(12185), + [anon_sym_BSLASHTvolcite] = ACTIONS(12185), + [anon_sym_BSLASHavolcite] = ACTIONS(12185), + [anon_sym_BSLASHAvolcite] = ACTIONS(12185), + [anon_sym_BSLASHnotecite] = ACTIONS(12185), + [anon_sym_BSLASHpnotecite] = ACTIONS(12185), + [anon_sym_BSLASHPnotecite] = ACTIONS(12185), + [anon_sym_BSLASHfnotecite] = ACTIONS(12185), + [anon_sym_BSLASHusepackage] = ACTIONS(12185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12185), + [anon_sym_BSLASHinclude] = ACTIONS(12185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12185), + [anon_sym_BSLASHinput] = ACTIONS(12185), + [anon_sym_BSLASHsubfile] = ACTIONS(12185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12185), + [anon_sym_BSLASHbibliography] = ACTIONS(12185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12185), + [anon_sym_BSLASHincludesvg] = ACTIONS(12185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12185), + [anon_sym_BSLASHimport] = ACTIONS(12185), + [anon_sym_BSLASHsubimport] = ACTIONS(12185), + [anon_sym_BSLASHinputfrom] = ACTIONS(12185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12185), + [anon_sym_BSLASHincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHlabel] = ACTIONS(12185), + [anon_sym_BSLASHref] = ACTIONS(12185), + [anon_sym_BSLASHvref] = ACTIONS(12185), + [anon_sym_BSLASHVref] = ACTIONS(12185), + [anon_sym_BSLASHautoref] = ACTIONS(12185), + [anon_sym_BSLASHpageref] = ACTIONS(12185), + [anon_sym_BSLASHcref] = ACTIONS(12185), + [anon_sym_BSLASHCref] = ACTIONS(12185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnameCref] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHlabelcref] = ACTIONS(12185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12185), + [anon_sym_BSLASHeqref] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange] = ACTIONS(12185), + [anon_sym_BSLASHCrefrange] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewlabel] = ACTIONS(12185), + [anon_sym_BSLASHnewcommand] = ACTIONS(12185), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12185), + [anon_sym_BSLASHgls] = ACTIONS(12185), + [anon_sym_BSLASHGls] = ACTIONS(12185), + [anon_sym_BSLASHGLS] = ACTIONS(12185), + [anon_sym_BSLASHglspl] = ACTIONS(12185), + [anon_sym_BSLASHGlspl] = ACTIONS(12185), + [anon_sym_BSLASHGLSpl] = ACTIONS(12185), + [anon_sym_BSLASHglsdisp] = ACTIONS(12185), + [anon_sym_BSLASHglslink] = ACTIONS(12185), + [anon_sym_BSLASHglstext] = ACTIONS(12185), + [anon_sym_BSLASHGlstext] = ACTIONS(12185), + [anon_sym_BSLASHGLStext] = ACTIONS(12185), + [anon_sym_BSLASHglsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12185), + [anon_sym_BSLASHglsplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSplural] = ACTIONS(12185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHglsname] = ACTIONS(12185), + [anon_sym_BSLASHGlsname] = ACTIONS(12185), + [anon_sym_BSLASHGLSname] = ACTIONS(12185), + [anon_sym_BSLASHglssymbol] = ACTIONS(12185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12185), + [anon_sym_BSLASHglsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12185), + [anon_sym_BSLASHglsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12185), + [anon_sym_BSLASHglsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12185), + [anon_sym_BSLASHglsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12185), + [anon_sym_BSLASHglsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12185), + [anon_sym_BSLASHnewacronym] = ACTIONS(12185), + [anon_sym_BSLASHacrshort] = ACTIONS(12185), + [anon_sym_BSLASHAcrshort] = ACTIONS(12185), + [anon_sym_BSLASHACRshort] = ACTIONS(12185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12185), + [anon_sym_BSLASHacrlong] = ACTIONS(12185), + [anon_sym_BSLASHAcrlong] = ACTIONS(12185), + [anon_sym_BSLASHACRlong] = ACTIONS(12185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12185), + [anon_sym_BSLASHacrfull] = ACTIONS(12185), + [anon_sym_BSLASHAcrfull] = ACTIONS(12185), + [anon_sym_BSLASHACRfull] = ACTIONS(12185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12185), + [anon_sym_BSLASHacs] = ACTIONS(12185), + [anon_sym_BSLASHAcs] = ACTIONS(12185), + [anon_sym_BSLASHacsp] = ACTIONS(12185), + [anon_sym_BSLASHAcsp] = ACTIONS(12185), + [anon_sym_BSLASHacl] = ACTIONS(12185), + [anon_sym_BSLASHAcl] = ACTIONS(12185), + [anon_sym_BSLASHaclp] = ACTIONS(12185), + [anon_sym_BSLASHAclp] = ACTIONS(12185), + [anon_sym_BSLASHacf] = ACTIONS(12185), + [anon_sym_BSLASHAcf] = ACTIONS(12185), + [anon_sym_BSLASHacfp] = ACTIONS(12185), + [anon_sym_BSLASHAcfp] = ACTIONS(12185), + [anon_sym_BSLASHac] = ACTIONS(12185), + [anon_sym_BSLASHAc] = ACTIONS(12185), + [anon_sym_BSLASHacp] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12185), + [anon_sym_BSLASHcolor] = ACTIONS(12185), + [anon_sym_BSLASHcolorbox] = ACTIONS(12185), + [anon_sym_BSLASHtextcolor] = ACTIONS(12185), + [anon_sym_BSLASHpagecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12185), + }, + [980] = { + [sym_generic_command_name] = ACTIONS(12181), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12181), + [aux_sym_section_token1] = ACTIONS(12181), + [aux_sym_subsection_token1] = ACTIONS(12181), + [aux_sym_subsubsection_token1] = ACTIONS(12181), + [aux_sym_paragraph_token1] = ACTIONS(12181), + [aux_sym_subparagraph_token1] = ACTIONS(12181), + [anon_sym_BSLASHitem] = ACTIONS(12181), + [anon_sym_LBRACK] = ACTIONS(12179), + [anon_sym_RBRACK] = ACTIONS(12179), + [anon_sym_LBRACE] = ACTIONS(12179), + [anon_sym_RBRACE] = ACTIONS(12179), + [anon_sym_LPAREN] = ACTIONS(12179), + [anon_sym_COMMA] = ACTIONS(12179), + [anon_sym_EQ] = ACTIONS(12179), + [sym_word] = ACTIONS(12179), + [sym_param] = ACTIONS(12179), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12179), + [anon_sym_DOLLAR] = ACTIONS(12181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12179), + [anon_sym_BSLASHbegin] = ACTIONS(12181), + [anon_sym_BSLASHcaption] = ACTIONS(12181), + [anon_sym_BSLASHcite] = ACTIONS(12181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCite] = ACTIONS(12181), + [anon_sym_BSLASHnocite] = ACTIONS(12181), + [anon_sym_BSLASHcitet] = ACTIONS(12181), + [anon_sym_BSLASHcitep] = ACTIONS(12181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteauthor] = ACTIONS(12181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitetitle] = ACTIONS(12181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteyear] = ACTIONS(12181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitedate] = ACTIONS(12181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteurl] = ACTIONS(12181), + [anon_sym_BSLASHfullcite] = ACTIONS(12181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12181), + [anon_sym_BSLASHcitealt] = ACTIONS(12181), + [anon_sym_BSLASHcitealp] = ACTIONS(12181), + [anon_sym_BSLASHcitetext] = ACTIONS(12181), + [anon_sym_BSLASHparencite] = ACTIONS(12181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHParencite] = ACTIONS(12181), + [anon_sym_BSLASHfootcite] = ACTIONS(12181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12181), + [anon_sym_BSLASHtextcite] = ACTIONS(12181), + [anon_sym_BSLASHTextcite] = ACTIONS(12181), + [anon_sym_BSLASHsmartcite] = ACTIONS(12181), + [anon_sym_BSLASHSmartcite] = ACTIONS(12181), + [anon_sym_BSLASHsupercite] = ACTIONS(12181), + [anon_sym_BSLASHautocite] = ACTIONS(12181), + [anon_sym_BSLASHAutocite] = ACTIONS(12181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHvolcite] = ACTIONS(12181), + [anon_sym_BSLASHVolcite] = ACTIONS(12181), + [anon_sym_BSLASHpvolcite] = ACTIONS(12181), + [anon_sym_BSLASHPvolcite] = ACTIONS(12181), + [anon_sym_BSLASHfvolcite] = ACTIONS(12181), + [anon_sym_BSLASHftvolcite] = ACTIONS(12181), + [anon_sym_BSLASHsvolcite] = ACTIONS(12181), + [anon_sym_BSLASHSvolcite] = ACTIONS(12181), + [anon_sym_BSLASHtvolcite] = ACTIONS(12181), + [anon_sym_BSLASHTvolcite] = ACTIONS(12181), + [anon_sym_BSLASHavolcite] = ACTIONS(12181), + [anon_sym_BSLASHAvolcite] = ACTIONS(12181), + [anon_sym_BSLASHnotecite] = ACTIONS(12181), + [anon_sym_BSLASHpnotecite] = ACTIONS(12181), + [anon_sym_BSLASHPnotecite] = ACTIONS(12181), + [anon_sym_BSLASHfnotecite] = ACTIONS(12181), + [anon_sym_BSLASHusepackage] = ACTIONS(12181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12181), + [anon_sym_BSLASHinclude] = ACTIONS(12181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12181), + [anon_sym_BSLASHinput] = ACTIONS(12181), + [anon_sym_BSLASHsubfile] = ACTIONS(12181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12181), + [anon_sym_BSLASHbibliography] = ACTIONS(12181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12181), + [anon_sym_BSLASHincludesvg] = ACTIONS(12181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12181), + [anon_sym_BSLASHimport] = ACTIONS(12181), + [anon_sym_BSLASHsubimport] = ACTIONS(12181), + [anon_sym_BSLASHinputfrom] = ACTIONS(12181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12181), + [anon_sym_BSLASHincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHlabel] = ACTIONS(12181), + [anon_sym_BSLASHref] = ACTIONS(12181), + [anon_sym_BSLASHvref] = ACTIONS(12181), + [anon_sym_BSLASHVref] = ACTIONS(12181), + [anon_sym_BSLASHautoref] = ACTIONS(12181), + [anon_sym_BSLASHpageref] = ACTIONS(12181), + [anon_sym_BSLASHcref] = ACTIONS(12181), + [anon_sym_BSLASHCref] = ACTIONS(12181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnameCref] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHlabelcref] = ACTIONS(12181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12181), + [anon_sym_BSLASHeqref] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange] = ACTIONS(12181), + [anon_sym_BSLASHCrefrange] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewlabel] = ACTIONS(12181), + [anon_sym_BSLASHnewcommand] = ACTIONS(12181), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12181), + [anon_sym_BSLASHgls] = ACTIONS(12181), + [anon_sym_BSLASHGls] = ACTIONS(12181), + [anon_sym_BSLASHGLS] = ACTIONS(12181), + [anon_sym_BSLASHglspl] = ACTIONS(12181), + [anon_sym_BSLASHGlspl] = ACTIONS(12181), + [anon_sym_BSLASHGLSpl] = ACTIONS(12181), + [anon_sym_BSLASHglsdisp] = ACTIONS(12181), + [anon_sym_BSLASHglslink] = ACTIONS(12181), + [anon_sym_BSLASHglstext] = ACTIONS(12181), + [anon_sym_BSLASHGlstext] = ACTIONS(12181), + [anon_sym_BSLASHGLStext] = ACTIONS(12181), + [anon_sym_BSLASHglsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12181), + [anon_sym_BSLASHglsplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSplural] = ACTIONS(12181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHglsname] = ACTIONS(12181), + [anon_sym_BSLASHGlsname] = ACTIONS(12181), + [anon_sym_BSLASHGLSname] = ACTIONS(12181), + [anon_sym_BSLASHglssymbol] = ACTIONS(12181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12181), + [anon_sym_BSLASHglsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12181), + [anon_sym_BSLASHglsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12181), + [anon_sym_BSLASHglsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12181), + [anon_sym_BSLASHglsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12181), + [anon_sym_BSLASHglsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12181), + [anon_sym_BSLASHnewacronym] = ACTIONS(12181), + [anon_sym_BSLASHacrshort] = ACTIONS(12181), + [anon_sym_BSLASHAcrshort] = ACTIONS(12181), + [anon_sym_BSLASHACRshort] = ACTIONS(12181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12181), + [anon_sym_BSLASHacrlong] = ACTIONS(12181), + [anon_sym_BSLASHAcrlong] = ACTIONS(12181), + [anon_sym_BSLASHACRlong] = ACTIONS(12181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12181), + [anon_sym_BSLASHacrfull] = ACTIONS(12181), + [anon_sym_BSLASHAcrfull] = ACTIONS(12181), + [anon_sym_BSLASHACRfull] = ACTIONS(12181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12181), + [anon_sym_BSLASHacs] = ACTIONS(12181), + [anon_sym_BSLASHAcs] = ACTIONS(12181), + [anon_sym_BSLASHacsp] = ACTIONS(12181), + [anon_sym_BSLASHAcsp] = ACTIONS(12181), + [anon_sym_BSLASHacl] = ACTIONS(12181), + [anon_sym_BSLASHAcl] = ACTIONS(12181), + [anon_sym_BSLASHaclp] = ACTIONS(12181), + [anon_sym_BSLASHAclp] = ACTIONS(12181), + [anon_sym_BSLASHacf] = ACTIONS(12181), + [anon_sym_BSLASHAcf] = ACTIONS(12181), + [anon_sym_BSLASHacfp] = ACTIONS(12181), + [anon_sym_BSLASHAcfp] = ACTIONS(12181), + [anon_sym_BSLASHac] = ACTIONS(12181), + [anon_sym_BSLASHAc] = ACTIONS(12181), + [anon_sym_BSLASHacp] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12181), + [anon_sym_BSLASHcolor] = ACTIONS(12181), + [anon_sym_BSLASHcolorbox] = ACTIONS(12181), + [anon_sym_BSLASHtextcolor] = ACTIONS(12181), + [anon_sym_BSLASHpagecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12181), + }, + [981] = { + [sym_generic_command_name] = ACTIONS(12120), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12120), + [aux_sym_section_token1] = ACTIONS(12120), + [aux_sym_subsection_token1] = ACTIONS(12120), + [aux_sym_subsubsection_token1] = ACTIONS(12120), + [aux_sym_paragraph_token1] = ACTIONS(12120), + [aux_sym_subparagraph_token1] = ACTIONS(12120), + [anon_sym_BSLASHitem] = ACTIONS(12120), + [anon_sym_LBRACK] = ACTIONS(12118), + [anon_sym_RBRACK] = ACTIONS(12118), + [anon_sym_LBRACE] = ACTIONS(12118), + [anon_sym_RBRACE] = ACTIONS(12118), + [anon_sym_LPAREN] = ACTIONS(12118), + [anon_sym_COMMA] = ACTIONS(12118), + [anon_sym_EQ] = ACTIONS(12118), + [sym_word] = ACTIONS(12118), + [sym_param] = ACTIONS(12118), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12118), + [anon_sym_DOLLAR] = ACTIONS(12120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12118), + [anon_sym_BSLASHbegin] = ACTIONS(12120), + [anon_sym_BSLASHcaption] = ACTIONS(12120), + [anon_sym_BSLASHcite] = ACTIONS(12120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCite] = ACTIONS(12120), + [anon_sym_BSLASHnocite] = ACTIONS(12120), + [anon_sym_BSLASHcitet] = ACTIONS(12120), + [anon_sym_BSLASHcitep] = ACTIONS(12120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteauthor] = ACTIONS(12120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitetitle] = ACTIONS(12120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteyear] = ACTIONS(12120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitedate] = ACTIONS(12120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteurl] = ACTIONS(12120), + [anon_sym_BSLASHfullcite] = ACTIONS(12120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12120), + [anon_sym_BSLASHcitealt] = ACTIONS(12120), + [anon_sym_BSLASHcitealp] = ACTIONS(12120), + [anon_sym_BSLASHcitetext] = ACTIONS(12120), + [anon_sym_BSLASHparencite] = ACTIONS(12120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHParencite] = ACTIONS(12120), + [anon_sym_BSLASHfootcite] = ACTIONS(12120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12120), + [anon_sym_BSLASHtextcite] = ACTIONS(12120), + [anon_sym_BSLASHTextcite] = ACTIONS(12120), + [anon_sym_BSLASHsmartcite] = ACTIONS(12120), + [anon_sym_BSLASHSmartcite] = ACTIONS(12120), + [anon_sym_BSLASHsupercite] = ACTIONS(12120), + [anon_sym_BSLASHautocite] = ACTIONS(12120), + [anon_sym_BSLASHAutocite] = ACTIONS(12120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHvolcite] = ACTIONS(12120), + [anon_sym_BSLASHVolcite] = ACTIONS(12120), + [anon_sym_BSLASHpvolcite] = ACTIONS(12120), + [anon_sym_BSLASHPvolcite] = ACTIONS(12120), + [anon_sym_BSLASHfvolcite] = ACTIONS(12120), + [anon_sym_BSLASHftvolcite] = ACTIONS(12120), + [anon_sym_BSLASHsvolcite] = ACTIONS(12120), + [anon_sym_BSLASHSvolcite] = ACTIONS(12120), + [anon_sym_BSLASHtvolcite] = ACTIONS(12120), + [anon_sym_BSLASHTvolcite] = ACTIONS(12120), + [anon_sym_BSLASHavolcite] = ACTIONS(12120), + [anon_sym_BSLASHAvolcite] = ACTIONS(12120), + [anon_sym_BSLASHnotecite] = ACTIONS(12120), + [anon_sym_BSLASHpnotecite] = ACTIONS(12120), + [anon_sym_BSLASHPnotecite] = ACTIONS(12120), + [anon_sym_BSLASHfnotecite] = ACTIONS(12120), + [anon_sym_BSLASHusepackage] = ACTIONS(12120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12120), + [anon_sym_BSLASHinclude] = ACTIONS(12120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12120), + [anon_sym_BSLASHinput] = ACTIONS(12120), + [anon_sym_BSLASHsubfile] = ACTIONS(12120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12120), + [anon_sym_BSLASHbibliography] = ACTIONS(12120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12120), + [anon_sym_BSLASHincludesvg] = ACTIONS(12120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12120), + [anon_sym_BSLASHimport] = ACTIONS(12120), + [anon_sym_BSLASHsubimport] = ACTIONS(12120), + [anon_sym_BSLASHinputfrom] = ACTIONS(12120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12120), + [anon_sym_BSLASHincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHlabel] = ACTIONS(12120), + [anon_sym_BSLASHref] = ACTIONS(12120), + [anon_sym_BSLASHvref] = ACTIONS(12120), + [anon_sym_BSLASHVref] = ACTIONS(12120), + [anon_sym_BSLASHautoref] = ACTIONS(12120), + [anon_sym_BSLASHpageref] = ACTIONS(12120), + [anon_sym_BSLASHcref] = ACTIONS(12120), + [anon_sym_BSLASHCref] = ACTIONS(12120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnameCref] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHlabelcref] = ACTIONS(12120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12120), + [anon_sym_BSLASHeqref] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange] = ACTIONS(12120), + [anon_sym_BSLASHCrefrange] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewlabel] = ACTIONS(12120), + [anon_sym_BSLASHnewcommand] = ACTIONS(12120), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12120), + [anon_sym_BSLASHgls] = ACTIONS(12120), + [anon_sym_BSLASHGls] = ACTIONS(12120), + [anon_sym_BSLASHGLS] = ACTIONS(12120), + [anon_sym_BSLASHglspl] = ACTIONS(12120), + [anon_sym_BSLASHGlspl] = ACTIONS(12120), + [anon_sym_BSLASHGLSpl] = ACTIONS(12120), + [anon_sym_BSLASHglsdisp] = ACTIONS(12120), + [anon_sym_BSLASHglslink] = ACTIONS(12120), + [anon_sym_BSLASHglstext] = ACTIONS(12120), + [anon_sym_BSLASHGlstext] = ACTIONS(12120), + [anon_sym_BSLASHGLStext] = ACTIONS(12120), + [anon_sym_BSLASHglsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12120), + [anon_sym_BSLASHglsplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSplural] = ACTIONS(12120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHglsname] = ACTIONS(12120), + [anon_sym_BSLASHGlsname] = ACTIONS(12120), + [anon_sym_BSLASHGLSname] = ACTIONS(12120), + [anon_sym_BSLASHglssymbol] = ACTIONS(12120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12120), + [anon_sym_BSLASHglsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12120), + [anon_sym_BSLASHglsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12120), + [anon_sym_BSLASHglsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12120), + [anon_sym_BSLASHglsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12120), + [anon_sym_BSLASHglsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12120), + [anon_sym_BSLASHnewacronym] = ACTIONS(12120), + [anon_sym_BSLASHacrshort] = ACTIONS(12120), + [anon_sym_BSLASHAcrshort] = ACTIONS(12120), + [anon_sym_BSLASHACRshort] = ACTIONS(12120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12120), + [anon_sym_BSLASHacrlong] = ACTIONS(12120), + [anon_sym_BSLASHAcrlong] = ACTIONS(12120), + [anon_sym_BSLASHACRlong] = ACTIONS(12120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12120), + [anon_sym_BSLASHacrfull] = ACTIONS(12120), + [anon_sym_BSLASHAcrfull] = ACTIONS(12120), + [anon_sym_BSLASHACRfull] = ACTIONS(12120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12120), + [anon_sym_BSLASHacs] = ACTIONS(12120), + [anon_sym_BSLASHAcs] = ACTIONS(12120), + [anon_sym_BSLASHacsp] = ACTIONS(12120), + [anon_sym_BSLASHAcsp] = ACTIONS(12120), + [anon_sym_BSLASHacl] = ACTIONS(12120), + [anon_sym_BSLASHAcl] = ACTIONS(12120), + [anon_sym_BSLASHaclp] = ACTIONS(12120), + [anon_sym_BSLASHAclp] = ACTIONS(12120), + [anon_sym_BSLASHacf] = ACTIONS(12120), + [anon_sym_BSLASHAcf] = ACTIONS(12120), + [anon_sym_BSLASHacfp] = ACTIONS(12120), + [anon_sym_BSLASHAcfp] = ACTIONS(12120), + [anon_sym_BSLASHac] = ACTIONS(12120), + [anon_sym_BSLASHAc] = ACTIONS(12120), + [anon_sym_BSLASHacp] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12120), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12120), + [anon_sym_BSLASHcolor] = ACTIONS(12120), + [anon_sym_BSLASHcolorbox] = ACTIONS(12120), + [anon_sym_BSLASHtextcolor] = ACTIONS(12120), + [anon_sym_BSLASHpagecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12120), + }, + [982] = { + [sym_generic_command_name] = ACTIONS(12116), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12116), + [aux_sym_section_token1] = ACTIONS(12116), + [aux_sym_subsection_token1] = ACTIONS(12116), + [aux_sym_subsubsection_token1] = ACTIONS(12116), + [aux_sym_paragraph_token1] = ACTIONS(12116), + [aux_sym_subparagraph_token1] = ACTIONS(12116), + [anon_sym_BSLASHitem] = ACTIONS(12116), + [anon_sym_LBRACK] = ACTIONS(12114), + [anon_sym_RBRACK] = ACTIONS(12114), + [anon_sym_LBRACE] = ACTIONS(12114), + [anon_sym_RBRACE] = ACTIONS(12114), + [anon_sym_LPAREN] = ACTIONS(12114), + [anon_sym_COMMA] = ACTIONS(12114), + [anon_sym_EQ] = ACTIONS(12114), + [sym_word] = ACTIONS(12114), + [sym_param] = ACTIONS(12114), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12114), + [anon_sym_DOLLAR] = ACTIONS(12116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12114), + [anon_sym_BSLASHbegin] = ACTIONS(12116), + [anon_sym_BSLASHcaption] = ACTIONS(12116), + [anon_sym_BSLASHcite] = ACTIONS(12116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCite] = ACTIONS(12116), + [anon_sym_BSLASHnocite] = ACTIONS(12116), + [anon_sym_BSLASHcitet] = ACTIONS(12116), + [anon_sym_BSLASHcitep] = ACTIONS(12116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteauthor] = ACTIONS(12116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitetitle] = ACTIONS(12116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteyear] = ACTIONS(12116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitedate] = ACTIONS(12116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteurl] = ACTIONS(12116), + [anon_sym_BSLASHfullcite] = ACTIONS(12116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12116), + [anon_sym_BSLASHcitealt] = ACTIONS(12116), + [anon_sym_BSLASHcitealp] = ACTIONS(12116), + [anon_sym_BSLASHcitetext] = ACTIONS(12116), + [anon_sym_BSLASHparencite] = ACTIONS(12116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHParencite] = ACTIONS(12116), + [anon_sym_BSLASHfootcite] = ACTIONS(12116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12116), + [anon_sym_BSLASHtextcite] = ACTIONS(12116), + [anon_sym_BSLASHTextcite] = ACTIONS(12116), + [anon_sym_BSLASHsmartcite] = ACTIONS(12116), + [anon_sym_BSLASHSmartcite] = ACTIONS(12116), + [anon_sym_BSLASHsupercite] = ACTIONS(12116), + [anon_sym_BSLASHautocite] = ACTIONS(12116), + [anon_sym_BSLASHAutocite] = ACTIONS(12116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHvolcite] = ACTIONS(12116), + [anon_sym_BSLASHVolcite] = ACTIONS(12116), + [anon_sym_BSLASHpvolcite] = ACTIONS(12116), + [anon_sym_BSLASHPvolcite] = ACTIONS(12116), + [anon_sym_BSLASHfvolcite] = ACTIONS(12116), + [anon_sym_BSLASHftvolcite] = ACTIONS(12116), + [anon_sym_BSLASHsvolcite] = ACTIONS(12116), + [anon_sym_BSLASHSvolcite] = ACTIONS(12116), + [anon_sym_BSLASHtvolcite] = ACTIONS(12116), + [anon_sym_BSLASHTvolcite] = ACTIONS(12116), + [anon_sym_BSLASHavolcite] = ACTIONS(12116), + [anon_sym_BSLASHAvolcite] = ACTIONS(12116), + [anon_sym_BSLASHnotecite] = ACTIONS(12116), + [anon_sym_BSLASHpnotecite] = ACTIONS(12116), + [anon_sym_BSLASHPnotecite] = ACTIONS(12116), + [anon_sym_BSLASHfnotecite] = ACTIONS(12116), + [anon_sym_BSLASHusepackage] = ACTIONS(12116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12116), + [anon_sym_BSLASHinclude] = ACTIONS(12116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12116), + [anon_sym_BSLASHinput] = ACTIONS(12116), + [anon_sym_BSLASHsubfile] = ACTIONS(12116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12116), + [anon_sym_BSLASHbibliography] = ACTIONS(12116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12116), + [anon_sym_BSLASHincludesvg] = ACTIONS(12116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12116), + [anon_sym_BSLASHimport] = ACTIONS(12116), + [anon_sym_BSLASHsubimport] = ACTIONS(12116), + [anon_sym_BSLASHinputfrom] = ACTIONS(12116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12116), + [anon_sym_BSLASHincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHlabel] = ACTIONS(12116), + [anon_sym_BSLASHref] = ACTIONS(12116), + [anon_sym_BSLASHvref] = ACTIONS(12116), + [anon_sym_BSLASHVref] = ACTIONS(12116), + [anon_sym_BSLASHautoref] = ACTIONS(12116), + [anon_sym_BSLASHpageref] = ACTIONS(12116), + [anon_sym_BSLASHcref] = ACTIONS(12116), + [anon_sym_BSLASHCref] = ACTIONS(12116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnameCref] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHlabelcref] = ACTIONS(12116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12116), + [anon_sym_BSLASHeqref] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange] = ACTIONS(12116), + [anon_sym_BSLASHCrefrange] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewlabel] = ACTIONS(12116), + [anon_sym_BSLASHnewcommand] = ACTIONS(12116), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12116), + [anon_sym_BSLASHgls] = ACTIONS(12116), + [anon_sym_BSLASHGls] = ACTIONS(12116), + [anon_sym_BSLASHGLS] = ACTIONS(12116), + [anon_sym_BSLASHglspl] = ACTIONS(12116), + [anon_sym_BSLASHGlspl] = ACTIONS(12116), + [anon_sym_BSLASHGLSpl] = ACTIONS(12116), + [anon_sym_BSLASHglsdisp] = ACTIONS(12116), + [anon_sym_BSLASHglslink] = ACTIONS(12116), + [anon_sym_BSLASHglstext] = ACTIONS(12116), + [anon_sym_BSLASHGlstext] = ACTIONS(12116), + [anon_sym_BSLASHGLStext] = ACTIONS(12116), + [anon_sym_BSLASHglsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12116), + [anon_sym_BSLASHglsplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSplural] = ACTIONS(12116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHglsname] = ACTIONS(12116), + [anon_sym_BSLASHGlsname] = ACTIONS(12116), + [anon_sym_BSLASHGLSname] = ACTIONS(12116), + [anon_sym_BSLASHglssymbol] = ACTIONS(12116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12116), + [anon_sym_BSLASHglsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12116), + [anon_sym_BSLASHglsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12116), + [anon_sym_BSLASHglsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12116), + [anon_sym_BSLASHglsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12116), + [anon_sym_BSLASHglsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12116), + [anon_sym_BSLASHnewacronym] = ACTIONS(12116), + [anon_sym_BSLASHacrshort] = ACTIONS(12116), + [anon_sym_BSLASHAcrshort] = ACTIONS(12116), + [anon_sym_BSLASHACRshort] = ACTIONS(12116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12116), + [anon_sym_BSLASHacrlong] = ACTIONS(12116), + [anon_sym_BSLASHAcrlong] = ACTIONS(12116), + [anon_sym_BSLASHACRlong] = ACTIONS(12116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12116), + [anon_sym_BSLASHacrfull] = ACTIONS(12116), + [anon_sym_BSLASHAcrfull] = ACTIONS(12116), + [anon_sym_BSLASHACRfull] = ACTIONS(12116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12116), + [anon_sym_BSLASHacs] = ACTIONS(12116), + [anon_sym_BSLASHAcs] = ACTIONS(12116), + [anon_sym_BSLASHacsp] = ACTIONS(12116), + [anon_sym_BSLASHAcsp] = ACTIONS(12116), + [anon_sym_BSLASHacl] = ACTIONS(12116), + [anon_sym_BSLASHAcl] = ACTIONS(12116), + [anon_sym_BSLASHaclp] = ACTIONS(12116), + [anon_sym_BSLASHAclp] = ACTIONS(12116), + [anon_sym_BSLASHacf] = ACTIONS(12116), + [anon_sym_BSLASHAcf] = ACTIONS(12116), + [anon_sym_BSLASHacfp] = ACTIONS(12116), + [anon_sym_BSLASHAcfp] = ACTIONS(12116), + [anon_sym_BSLASHac] = ACTIONS(12116), + [anon_sym_BSLASHAc] = ACTIONS(12116), + [anon_sym_BSLASHacp] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12116), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12116), + [anon_sym_BSLASHcolor] = ACTIONS(12116), + [anon_sym_BSLASHcolorbox] = ACTIONS(12116), + [anon_sym_BSLASHtextcolor] = ACTIONS(12116), + [anon_sym_BSLASHpagecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12116), + }, + [983] = { + [sym_generic_command_name] = ACTIONS(12389), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12389), + [aux_sym_chapter_token1] = ACTIONS(12389), + [aux_sym_section_token1] = ACTIONS(12389), + [aux_sym_subsection_token1] = ACTIONS(12389), + [aux_sym_subsubsection_token1] = ACTIONS(12389), + [aux_sym_paragraph_token1] = ACTIONS(12389), + [aux_sym_subparagraph_token1] = ACTIONS(12389), + [anon_sym_BSLASHitem] = ACTIONS(12389), + [anon_sym_LBRACK] = ACTIONS(12387), + [anon_sym_LBRACE] = ACTIONS(12387), + [anon_sym_LPAREN] = ACTIONS(12387), + [anon_sym_COMMA] = ACTIONS(12387), + [anon_sym_EQ] = ACTIONS(12387), + [sym_word] = ACTIONS(12387), + [sym_param] = ACTIONS(12387), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12387), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12387), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12387), + [anon_sym_DOLLAR] = ACTIONS(12389), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12387), + [anon_sym_BSLASHbegin] = ACTIONS(12389), + [anon_sym_BSLASHcaption] = ACTIONS(12389), + [anon_sym_BSLASHcite] = ACTIONS(12389), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCite] = ACTIONS(12389), + [anon_sym_BSLASHnocite] = ACTIONS(12389), + [anon_sym_BSLASHcitet] = ACTIONS(12389), + [anon_sym_BSLASHcitep] = ACTIONS(12389), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteauthor] = ACTIONS(12389), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12389), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitetitle] = ACTIONS(12389), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteyear] = ACTIONS(12389), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitedate] = ACTIONS(12389), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteurl] = ACTIONS(12389), + [anon_sym_BSLASHfullcite] = ACTIONS(12389), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12389), + [anon_sym_BSLASHcitealt] = ACTIONS(12389), + [anon_sym_BSLASHcitealp] = ACTIONS(12389), + [anon_sym_BSLASHcitetext] = ACTIONS(12389), + [anon_sym_BSLASHparencite] = ACTIONS(12389), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHParencite] = ACTIONS(12389), + [anon_sym_BSLASHfootcite] = ACTIONS(12389), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12389), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12389), + [anon_sym_BSLASHtextcite] = ACTIONS(12389), + [anon_sym_BSLASHTextcite] = ACTIONS(12389), + [anon_sym_BSLASHsmartcite] = ACTIONS(12389), + [anon_sym_BSLASHSmartcite] = ACTIONS(12389), + [anon_sym_BSLASHsupercite] = ACTIONS(12389), + [anon_sym_BSLASHautocite] = ACTIONS(12389), + [anon_sym_BSLASHAutocite] = ACTIONS(12389), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHvolcite] = ACTIONS(12389), + [anon_sym_BSLASHVolcite] = ACTIONS(12389), + [anon_sym_BSLASHpvolcite] = ACTIONS(12389), + [anon_sym_BSLASHPvolcite] = ACTIONS(12389), + [anon_sym_BSLASHfvolcite] = ACTIONS(12389), + [anon_sym_BSLASHftvolcite] = ACTIONS(12389), + [anon_sym_BSLASHsvolcite] = ACTIONS(12389), + [anon_sym_BSLASHSvolcite] = ACTIONS(12389), + [anon_sym_BSLASHtvolcite] = ACTIONS(12389), + [anon_sym_BSLASHTvolcite] = ACTIONS(12389), + [anon_sym_BSLASHavolcite] = ACTIONS(12389), + [anon_sym_BSLASHAvolcite] = ACTIONS(12389), + [anon_sym_BSLASHnotecite] = ACTIONS(12389), + [anon_sym_BSLASHpnotecite] = ACTIONS(12389), + [anon_sym_BSLASHPnotecite] = ACTIONS(12389), + [anon_sym_BSLASHfnotecite] = ACTIONS(12389), + [anon_sym_BSLASHusepackage] = ACTIONS(12389), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12389), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12389), + [anon_sym_BSLASHinclude] = ACTIONS(12389), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12389), + [anon_sym_BSLASHinput] = ACTIONS(12389), + [anon_sym_BSLASHsubfile] = ACTIONS(12389), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12389), + [anon_sym_BSLASHbibliography] = ACTIONS(12389), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12389), + [anon_sym_BSLASHincludesvg] = ACTIONS(12389), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12389), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12389), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12389), + [anon_sym_BSLASHimport] = ACTIONS(12389), + [anon_sym_BSLASHsubimport] = ACTIONS(12389), + [anon_sym_BSLASHinputfrom] = ACTIONS(12389), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12389), + [anon_sym_BSLASHincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHlabel] = ACTIONS(12389), + [anon_sym_BSLASHref] = ACTIONS(12389), + [anon_sym_BSLASHvref] = ACTIONS(12389), + [anon_sym_BSLASHVref] = ACTIONS(12389), + [anon_sym_BSLASHautoref] = ACTIONS(12389), + [anon_sym_BSLASHpageref] = ACTIONS(12389), + [anon_sym_BSLASHcref] = ACTIONS(12389), + [anon_sym_BSLASHCref] = ACTIONS(12389), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnameCref] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHlabelcref] = ACTIONS(12389), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12389), + [anon_sym_BSLASHeqref] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange] = ACTIONS(12389), + [anon_sym_BSLASHCrefrange] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewlabel] = ACTIONS(12389), + [anon_sym_BSLASHnewcommand] = ACTIONS(12389), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12389), + [anon_sym_BSLASHgls] = ACTIONS(12389), + [anon_sym_BSLASHGls] = ACTIONS(12389), + [anon_sym_BSLASHGLS] = ACTIONS(12389), + [anon_sym_BSLASHglspl] = ACTIONS(12389), + [anon_sym_BSLASHGlspl] = ACTIONS(12389), + [anon_sym_BSLASHGLSpl] = ACTIONS(12389), + [anon_sym_BSLASHglsdisp] = ACTIONS(12389), + [anon_sym_BSLASHglslink] = ACTIONS(12389), + [anon_sym_BSLASHglstext] = ACTIONS(12389), + [anon_sym_BSLASHGlstext] = ACTIONS(12389), + [anon_sym_BSLASHGLStext] = ACTIONS(12389), + [anon_sym_BSLASHglsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12389), + [anon_sym_BSLASHglsplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSplural] = ACTIONS(12389), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHglsname] = ACTIONS(12389), + [anon_sym_BSLASHGlsname] = ACTIONS(12389), + [anon_sym_BSLASHGLSname] = ACTIONS(12389), + [anon_sym_BSLASHglssymbol] = ACTIONS(12389), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12389), + [anon_sym_BSLASHglsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12389), + [anon_sym_BSLASHglsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12389), + [anon_sym_BSLASHglsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12389), + [anon_sym_BSLASHglsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12389), + [anon_sym_BSLASHglsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12389), + [anon_sym_BSLASHnewacronym] = ACTIONS(12389), + [anon_sym_BSLASHacrshort] = ACTIONS(12389), + [anon_sym_BSLASHAcrshort] = ACTIONS(12389), + [anon_sym_BSLASHACRshort] = ACTIONS(12389), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12389), + [anon_sym_BSLASHacrlong] = ACTIONS(12389), + [anon_sym_BSLASHAcrlong] = ACTIONS(12389), + [anon_sym_BSLASHACRlong] = ACTIONS(12389), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12389), + [anon_sym_BSLASHacrfull] = ACTIONS(12389), + [anon_sym_BSLASHAcrfull] = ACTIONS(12389), + [anon_sym_BSLASHACRfull] = ACTIONS(12389), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12389), + [anon_sym_BSLASHacs] = ACTIONS(12389), + [anon_sym_BSLASHAcs] = ACTIONS(12389), + [anon_sym_BSLASHacsp] = ACTIONS(12389), + [anon_sym_BSLASHAcsp] = ACTIONS(12389), + [anon_sym_BSLASHacl] = ACTIONS(12389), + [anon_sym_BSLASHAcl] = ACTIONS(12389), + [anon_sym_BSLASHaclp] = ACTIONS(12389), + [anon_sym_BSLASHAclp] = ACTIONS(12389), + [anon_sym_BSLASHacf] = ACTIONS(12389), + [anon_sym_BSLASHAcf] = ACTIONS(12389), + [anon_sym_BSLASHacfp] = ACTIONS(12389), + [anon_sym_BSLASHAcfp] = ACTIONS(12389), + [anon_sym_BSLASHac] = ACTIONS(12389), + [anon_sym_BSLASHAc] = ACTIONS(12389), + [anon_sym_BSLASHacp] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12389), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12389), + [anon_sym_BSLASHcolor] = ACTIONS(12389), + [anon_sym_BSLASHcolorbox] = ACTIONS(12389), + [anon_sym_BSLASHtextcolor] = ACTIONS(12389), + [anon_sym_BSLASHpagecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12389), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12389), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12389), + }, + [984] = { + [sym_generic_command_name] = ACTIONS(12193), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12193), + [aux_sym_section_token1] = ACTIONS(12193), + [aux_sym_subsection_token1] = ACTIONS(12193), + [aux_sym_subsubsection_token1] = ACTIONS(12193), + [aux_sym_paragraph_token1] = ACTIONS(12193), + [aux_sym_subparagraph_token1] = ACTIONS(12193), + [anon_sym_BSLASHitem] = ACTIONS(12193), + [anon_sym_LBRACK] = ACTIONS(12191), + [anon_sym_RBRACK] = ACTIONS(12191), + [anon_sym_LBRACE] = ACTIONS(12191), + [anon_sym_RBRACE] = ACTIONS(12191), + [anon_sym_LPAREN] = ACTIONS(12191), + [anon_sym_COMMA] = ACTIONS(12191), + [anon_sym_EQ] = ACTIONS(12191), + [sym_word] = ACTIONS(12191), + [sym_param] = ACTIONS(12191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12191), + [anon_sym_DOLLAR] = ACTIONS(12193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12191), + [anon_sym_BSLASHbegin] = ACTIONS(12193), + [anon_sym_BSLASHcaption] = ACTIONS(12193), + [anon_sym_BSLASHcite] = ACTIONS(12193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCite] = ACTIONS(12193), + [anon_sym_BSLASHnocite] = ACTIONS(12193), + [anon_sym_BSLASHcitet] = ACTIONS(12193), + [anon_sym_BSLASHcitep] = ACTIONS(12193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteauthor] = ACTIONS(12193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitetitle] = ACTIONS(12193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteyear] = ACTIONS(12193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitedate] = ACTIONS(12193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteurl] = ACTIONS(12193), + [anon_sym_BSLASHfullcite] = ACTIONS(12193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12193), + [anon_sym_BSLASHcitealt] = ACTIONS(12193), + [anon_sym_BSLASHcitealp] = ACTIONS(12193), + [anon_sym_BSLASHcitetext] = ACTIONS(12193), + [anon_sym_BSLASHparencite] = ACTIONS(12193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHParencite] = ACTIONS(12193), + [anon_sym_BSLASHfootcite] = ACTIONS(12193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12193), + [anon_sym_BSLASHtextcite] = ACTIONS(12193), + [anon_sym_BSLASHTextcite] = ACTIONS(12193), + [anon_sym_BSLASHsmartcite] = ACTIONS(12193), + [anon_sym_BSLASHSmartcite] = ACTIONS(12193), + [anon_sym_BSLASHsupercite] = ACTIONS(12193), + [anon_sym_BSLASHautocite] = ACTIONS(12193), + [anon_sym_BSLASHAutocite] = ACTIONS(12193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHvolcite] = ACTIONS(12193), + [anon_sym_BSLASHVolcite] = ACTIONS(12193), + [anon_sym_BSLASHpvolcite] = ACTIONS(12193), + [anon_sym_BSLASHPvolcite] = ACTIONS(12193), + [anon_sym_BSLASHfvolcite] = ACTIONS(12193), + [anon_sym_BSLASHftvolcite] = ACTIONS(12193), + [anon_sym_BSLASHsvolcite] = ACTIONS(12193), + [anon_sym_BSLASHSvolcite] = ACTIONS(12193), + [anon_sym_BSLASHtvolcite] = ACTIONS(12193), + [anon_sym_BSLASHTvolcite] = ACTIONS(12193), + [anon_sym_BSLASHavolcite] = ACTIONS(12193), + [anon_sym_BSLASHAvolcite] = ACTIONS(12193), + [anon_sym_BSLASHnotecite] = ACTIONS(12193), + [anon_sym_BSLASHpnotecite] = ACTIONS(12193), + [anon_sym_BSLASHPnotecite] = ACTIONS(12193), + [anon_sym_BSLASHfnotecite] = ACTIONS(12193), + [anon_sym_BSLASHusepackage] = ACTIONS(12193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12193), + [anon_sym_BSLASHinclude] = ACTIONS(12193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12193), + [anon_sym_BSLASHinput] = ACTIONS(12193), + [anon_sym_BSLASHsubfile] = ACTIONS(12193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12193), + [anon_sym_BSLASHbibliography] = ACTIONS(12193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12193), + [anon_sym_BSLASHincludesvg] = ACTIONS(12193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12193), + [anon_sym_BSLASHimport] = ACTIONS(12193), + [anon_sym_BSLASHsubimport] = ACTIONS(12193), + [anon_sym_BSLASHinputfrom] = ACTIONS(12193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12193), + [anon_sym_BSLASHincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHlabel] = ACTIONS(12193), + [anon_sym_BSLASHref] = ACTIONS(12193), + [anon_sym_BSLASHvref] = ACTIONS(12193), + [anon_sym_BSLASHVref] = ACTIONS(12193), + [anon_sym_BSLASHautoref] = ACTIONS(12193), + [anon_sym_BSLASHpageref] = ACTIONS(12193), + [anon_sym_BSLASHcref] = ACTIONS(12193), + [anon_sym_BSLASHCref] = ACTIONS(12193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnameCref] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHlabelcref] = ACTIONS(12193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12193), + [anon_sym_BSLASHeqref] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange] = ACTIONS(12193), + [anon_sym_BSLASHCrefrange] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewlabel] = ACTIONS(12193), + [anon_sym_BSLASHnewcommand] = ACTIONS(12193), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12193), + [anon_sym_BSLASHgls] = ACTIONS(12193), + [anon_sym_BSLASHGls] = ACTIONS(12193), + [anon_sym_BSLASHGLS] = ACTIONS(12193), + [anon_sym_BSLASHglspl] = ACTIONS(12193), + [anon_sym_BSLASHGlspl] = ACTIONS(12193), + [anon_sym_BSLASHGLSpl] = ACTIONS(12193), + [anon_sym_BSLASHglsdisp] = ACTIONS(12193), + [anon_sym_BSLASHglslink] = ACTIONS(12193), + [anon_sym_BSLASHglstext] = ACTIONS(12193), + [anon_sym_BSLASHGlstext] = ACTIONS(12193), + [anon_sym_BSLASHGLStext] = ACTIONS(12193), + [anon_sym_BSLASHglsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12193), + [anon_sym_BSLASHglsplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSplural] = ACTIONS(12193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHglsname] = ACTIONS(12193), + [anon_sym_BSLASHGlsname] = ACTIONS(12193), + [anon_sym_BSLASHGLSname] = ACTIONS(12193), + [anon_sym_BSLASHglssymbol] = ACTIONS(12193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12193), + [anon_sym_BSLASHglsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12193), + [anon_sym_BSLASHglsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12193), + [anon_sym_BSLASHglsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12193), + [anon_sym_BSLASHglsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12193), + [anon_sym_BSLASHglsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12193), + [anon_sym_BSLASHnewacronym] = ACTIONS(12193), + [anon_sym_BSLASHacrshort] = ACTIONS(12193), + [anon_sym_BSLASHAcrshort] = ACTIONS(12193), + [anon_sym_BSLASHACRshort] = ACTIONS(12193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12193), + [anon_sym_BSLASHacrlong] = ACTIONS(12193), + [anon_sym_BSLASHAcrlong] = ACTIONS(12193), + [anon_sym_BSLASHACRlong] = ACTIONS(12193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12193), + [anon_sym_BSLASHacrfull] = ACTIONS(12193), + [anon_sym_BSLASHAcrfull] = ACTIONS(12193), + [anon_sym_BSLASHACRfull] = ACTIONS(12193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12193), + [anon_sym_BSLASHacs] = ACTIONS(12193), + [anon_sym_BSLASHAcs] = ACTIONS(12193), + [anon_sym_BSLASHacsp] = ACTIONS(12193), + [anon_sym_BSLASHAcsp] = ACTIONS(12193), + [anon_sym_BSLASHacl] = ACTIONS(12193), + [anon_sym_BSLASHAcl] = ACTIONS(12193), + [anon_sym_BSLASHaclp] = ACTIONS(12193), + [anon_sym_BSLASHAclp] = ACTIONS(12193), + [anon_sym_BSLASHacf] = ACTIONS(12193), + [anon_sym_BSLASHAcf] = ACTIONS(12193), + [anon_sym_BSLASHacfp] = ACTIONS(12193), + [anon_sym_BSLASHAcfp] = ACTIONS(12193), + [anon_sym_BSLASHac] = ACTIONS(12193), + [anon_sym_BSLASHAc] = ACTIONS(12193), + [anon_sym_BSLASHacp] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12193), + [anon_sym_BSLASHcolor] = ACTIONS(12193), + [anon_sym_BSLASHcolorbox] = ACTIONS(12193), + [anon_sym_BSLASHtextcolor] = ACTIONS(12193), + [anon_sym_BSLASHpagecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12193), + }, + [985] = { + [sym_generic_command_name] = ACTIONS(12201), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12201), + [aux_sym_section_token1] = ACTIONS(12201), + [aux_sym_subsection_token1] = ACTIONS(12201), + [aux_sym_subsubsection_token1] = ACTIONS(12201), + [aux_sym_paragraph_token1] = ACTIONS(12201), + [aux_sym_subparagraph_token1] = ACTIONS(12201), + [anon_sym_BSLASHitem] = ACTIONS(12201), + [anon_sym_LBRACK] = ACTIONS(12199), + [anon_sym_RBRACK] = ACTIONS(12199), + [anon_sym_LBRACE] = ACTIONS(12199), + [anon_sym_RBRACE] = ACTIONS(12199), + [anon_sym_LPAREN] = ACTIONS(12199), + [anon_sym_COMMA] = ACTIONS(12199), + [anon_sym_EQ] = ACTIONS(12199), + [sym_word] = ACTIONS(12199), + [sym_param] = ACTIONS(12199), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12199), + [anon_sym_DOLLAR] = ACTIONS(12201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12199), + [anon_sym_BSLASHbegin] = ACTIONS(12201), + [anon_sym_BSLASHcaption] = ACTIONS(12201), + [anon_sym_BSLASHcite] = ACTIONS(12201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCite] = ACTIONS(12201), + [anon_sym_BSLASHnocite] = ACTIONS(12201), + [anon_sym_BSLASHcitet] = ACTIONS(12201), + [anon_sym_BSLASHcitep] = ACTIONS(12201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteauthor] = ACTIONS(12201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitetitle] = ACTIONS(12201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteyear] = ACTIONS(12201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitedate] = ACTIONS(12201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteurl] = ACTIONS(12201), + [anon_sym_BSLASHfullcite] = ACTIONS(12201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12201), + [anon_sym_BSLASHcitealt] = ACTIONS(12201), + [anon_sym_BSLASHcitealp] = ACTIONS(12201), + [anon_sym_BSLASHcitetext] = ACTIONS(12201), + [anon_sym_BSLASHparencite] = ACTIONS(12201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHParencite] = ACTIONS(12201), + [anon_sym_BSLASHfootcite] = ACTIONS(12201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12201), + [anon_sym_BSLASHtextcite] = ACTIONS(12201), + [anon_sym_BSLASHTextcite] = ACTIONS(12201), + [anon_sym_BSLASHsmartcite] = ACTIONS(12201), + [anon_sym_BSLASHSmartcite] = ACTIONS(12201), + [anon_sym_BSLASHsupercite] = ACTIONS(12201), + [anon_sym_BSLASHautocite] = ACTIONS(12201), + [anon_sym_BSLASHAutocite] = ACTIONS(12201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHvolcite] = ACTIONS(12201), + [anon_sym_BSLASHVolcite] = ACTIONS(12201), + [anon_sym_BSLASHpvolcite] = ACTIONS(12201), + [anon_sym_BSLASHPvolcite] = ACTIONS(12201), + [anon_sym_BSLASHfvolcite] = ACTIONS(12201), + [anon_sym_BSLASHftvolcite] = ACTIONS(12201), + [anon_sym_BSLASHsvolcite] = ACTIONS(12201), + [anon_sym_BSLASHSvolcite] = ACTIONS(12201), + [anon_sym_BSLASHtvolcite] = ACTIONS(12201), + [anon_sym_BSLASHTvolcite] = ACTIONS(12201), + [anon_sym_BSLASHavolcite] = ACTIONS(12201), + [anon_sym_BSLASHAvolcite] = ACTIONS(12201), + [anon_sym_BSLASHnotecite] = ACTIONS(12201), + [anon_sym_BSLASHpnotecite] = ACTIONS(12201), + [anon_sym_BSLASHPnotecite] = ACTIONS(12201), + [anon_sym_BSLASHfnotecite] = ACTIONS(12201), + [anon_sym_BSLASHusepackage] = ACTIONS(12201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12201), + [anon_sym_BSLASHinclude] = ACTIONS(12201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12201), + [anon_sym_BSLASHinput] = ACTIONS(12201), + [anon_sym_BSLASHsubfile] = ACTIONS(12201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12201), + [anon_sym_BSLASHbibliography] = ACTIONS(12201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12201), + [anon_sym_BSLASHincludesvg] = ACTIONS(12201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12201), + [anon_sym_BSLASHimport] = ACTIONS(12201), + [anon_sym_BSLASHsubimport] = ACTIONS(12201), + [anon_sym_BSLASHinputfrom] = ACTIONS(12201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12201), + [anon_sym_BSLASHincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHlabel] = ACTIONS(12201), + [anon_sym_BSLASHref] = ACTIONS(12201), + [anon_sym_BSLASHvref] = ACTIONS(12201), + [anon_sym_BSLASHVref] = ACTIONS(12201), + [anon_sym_BSLASHautoref] = ACTIONS(12201), + [anon_sym_BSLASHpageref] = ACTIONS(12201), + [anon_sym_BSLASHcref] = ACTIONS(12201), + [anon_sym_BSLASHCref] = ACTIONS(12201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnameCref] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHlabelcref] = ACTIONS(12201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12201), + [anon_sym_BSLASHeqref] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange] = ACTIONS(12201), + [anon_sym_BSLASHCrefrange] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewlabel] = ACTIONS(12201), + [anon_sym_BSLASHnewcommand] = ACTIONS(12201), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12201), + [anon_sym_BSLASHgls] = ACTIONS(12201), + [anon_sym_BSLASHGls] = ACTIONS(12201), + [anon_sym_BSLASHGLS] = ACTIONS(12201), + [anon_sym_BSLASHglspl] = ACTIONS(12201), + [anon_sym_BSLASHGlspl] = ACTIONS(12201), + [anon_sym_BSLASHGLSpl] = ACTIONS(12201), + [anon_sym_BSLASHglsdisp] = ACTIONS(12201), + [anon_sym_BSLASHglslink] = ACTIONS(12201), + [anon_sym_BSLASHglstext] = ACTIONS(12201), + [anon_sym_BSLASHGlstext] = ACTIONS(12201), + [anon_sym_BSLASHGLStext] = ACTIONS(12201), + [anon_sym_BSLASHglsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12201), + [anon_sym_BSLASHglsplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSplural] = ACTIONS(12201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHglsname] = ACTIONS(12201), + [anon_sym_BSLASHGlsname] = ACTIONS(12201), + [anon_sym_BSLASHGLSname] = ACTIONS(12201), + [anon_sym_BSLASHglssymbol] = ACTIONS(12201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12201), + [anon_sym_BSLASHglsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12201), + [anon_sym_BSLASHglsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12201), + [anon_sym_BSLASHglsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12201), + [anon_sym_BSLASHglsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12201), + [anon_sym_BSLASHglsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12201), + [anon_sym_BSLASHnewacronym] = ACTIONS(12201), + [anon_sym_BSLASHacrshort] = ACTIONS(12201), + [anon_sym_BSLASHAcrshort] = ACTIONS(12201), + [anon_sym_BSLASHACRshort] = ACTIONS(12201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12201), + [anon_sym_BSLASHacrlong] = ACTIONS(12201), + [anon_sym_BSLASHAcrlong] = ACTIONS(12201), + [anon_sym_BSLASHACRlong] = ACTIONS(12201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12201), + [anon_sym_BSLASHacrfull] = ACTIONS(12201), + [anon_sym_BSLASHAcrfull] = ACTIONS(12201), + [anon_sym_BSLASHACRfull] = ACTIONS(12201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12201), + [anon_sym_BSLASHacs] = ACTIONS(12201), + [anon_sym_BSLASHAcs] = ACTIONS(12201), + [anon_sym_BSLASHacsp] = ACTIONS(12201), + [anon_sym_BSLASHAcsp] = ACTIONS(12201), + [anon_sym_BSLASHacl] = ACTIONS(12201), + [anon_sym_BSLASHAcl] = ACTIONS(12201), + [anon_sym_BSLASHaclp] = ACTIONS(12201), + [anon_sym_BSLASHAclp] = ACTIONS(12201), + [anon_sym_BSLASHacf] = ACTIONS(12201), + [anon_sym_BSLASHAcf] = ACTIONS(12201), + [anon_sym_BSLASHacfp] = ACTIONS(12201), + [anon_sym_BSLASHAcfp] = ACTIONS(12201), + [anon_sym_BSLASHac] = ACTIONS(12201), + [anon_sym_BSLASHAc] = ACTIONS(12201), + [anon_sym_BSLASHacp] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12201), + [anon_sym_BSLASHcolor] = ACTIONS(12201), + [anon_sym_BSLASHcolorbox] = ACTIONS(12201), + [anon_sym_BSLASHtextcolor] = ACTIONS(12201), + [anon_sym_BSLASHpagecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12201), + }, + [986] = { + [sym_generic_command_name] = ACTIONS(12205), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12205), + [aux_sym_section_token1] = ACTIONS(12205), + [aux_sym_subsection_token1] = ACTIONS(12205), + [aux_sym_subsubsection_token1] = ACTIONS(12205), + [aux_sym_paragraph_token1] = ACTIONS(12205), + [aux_sym_subparagraph_token1] = ACTIONS(12205), + [anon_sym_BSLASHitem] = ACTIONS(12205), + [anon_sym_LBRACK] = ACTIONS(12203), + [anon_sym_RBRACK] = ACTIONS(12203), + [anon_sym_LBRACE] = ACTIONS(12203), + [anon_sym_RBRACE] = ACTIONS(12203), + [anon_sym_LPAREN] = ACTIONS(12203), + [anon_sym_COMMA] = ACTIONS(12203), + [anon_sym_EQ] = ACTIONS(12203), + [sym_word] = ACTIONS(12203), + [sym_param] = ACTIONS(12203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12203), + [anon_sym_DOLLAR] = ACTIONS(12205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12203), + [anon_sym_BSLASHbegin] = ACTIONS(12205), + [anon_sym_BSLASHcaption] = ACTIONS(12205), + [anon_sym_BSLASHcite] = ACTIONS(12205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCite] = ACTIONS(12205), + [anon_sym_BSLASHnocite] = ACTIONS(12205), + [anon_sym_BSLASHcitet] = ACTIONS(12205), + [anon_sym_BSLASHcitep] = ACTIONS(12205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteauthor] = ACTIONS(12205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitetitle] = ACTIONS(12205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteyear] = ACTIONS(12205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitedate] = ACTIONS(12205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteurl] = ACTIONS(12205), + [anon_sym_BSLASHfullcite] = ACTIONS(12205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12205), + [anon_sym_BSLASHcitealt] = ACTIONS(12205), + [anon_sym_BSLASHcitealp] = ACTIONS(12205), + [anon_sym_BSLASHcitetext] = ACTIONS(12205), + [anon_sym_BSLASHparencite] = ACTIONS(12205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHParencite] = ACTIONS(12205), + [anon_sym_BSLASHfootcite] = ACTIONS(12205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12205), + [anon_sym_BSLASHtextcite] = ACTIONS(12205), + [anon_sym_BSLASHTextcite] = ACTIONS(12205), + [anon_sym_BSLASHsmartcite] = ACTIONS(12205), + [anon_sym_BSLASHSmartcite] = ACTIONS(12205), + [anon_sym_BSLASHsupercite] = ACTIONS(12205), + [anon_sym_BSLASHautocite] = ACTIONS(12205), + [anon_sym_BSLASHAutocite] = ACTIONS(12205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHvolcite] = ACTIONS(12205), + [anon_sym_BSLASHVolcite] = ACTIONS(12205), + [anon_sym_BSLASHpvolcite] = ACTIONS(12205), + [anon_sym_BSLASHPvolcite] = ACTIONS(12205), + [anon_sym_BSLASHfvolcite] = ACTIONS(12205), + [anon_sym_BSLASHftvolcite] = ACTIONS(12205), + [anon_sym_BSLASHsvolcite] = ACTIONS(12205), + [anon_sym_BSLASHSvolcite] = ACTIONS(12205), + [anon_sym_BSLASHtvolcite] = ACTIONS(12205), + [anon_sym_BSLASHTvolcite] = ACTIONS(12205), + [anon_sym_BSLASHavolcite] = ACTIONS(12205), + [anon_sym_BSLASHAvolcite] = ACTIONS(12205), + [anon_sym_BSLASHnotecite] = ACTIONS(12205), + [anon_sym_BSLASHpnotecite] = ACTIONS(12205), + [anon_sym_BSLASHPnotecite] = ACTIONS(12205), + [anon_sym_BSLASHfnotecite] = ACTIONS(12205), + [anon_sym_BSLASHusepackage] = ACTIONS(12205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12205), + [anon_sym_BSLASHinclude] = ACTIONS(12205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12205), + [anon_sym_BSLASHinput] = ACTIONS(12205), + [anon_sym_BSLASHsubfile] = ACTIONS(12205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12205), + [anon_sym_BSLASHbibliography] = ACTIONS(12205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12205), + [anon_sym_BSLASHincludesvg] = ACTIONS(12205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12205), + [anon_sym_BSLASHimport] = ACTIONS(12205), + [anon_sym_BSLASHsubimport] = ACTIONS(12205), + [anon_sym_BSLASHinputfrom] = ACTIONS(12205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12205), + [anon_sym_BSLASHincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHlabel] = ACTIONS(12205), + [anon_sym_BSLASHref] = ACTIONS(12205), + [anon_sym_BSLASHvref] = ACTIONS(12205), + [anon_sym_BSLASHVref] = ACTIONS(12205), + [anon_sym_BSLASHautoref] = ACTIONS(12205), + [anon_sym_BSLASHpageref] = ACTIONS(12205), + [anon_sym_BSLASHcref] = ACTIONS(12205), + [anon_sym_BSLASHCref] = ACTIONS(12205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnameCref] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHlabelcref] = ACTIONS(12205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12205), + [anon_sym_BSLASHeqref] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange] = ACTIONS(12205), + [anon_sym_BSLASHCrefrange] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewlabel] = ACTIONS(12205), + [anon_sym_BSLASHnewcommand] = ACTIONS(12205), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12205), + [anon_sym_BSLASHgls] = ACTIONS(12205), + [anon_sym_BSLASHGls] = ACTIONS(12205), + [anon_sym_BSLASHGLS] = ACTIONS(12205), + [anon_sym_BSLASHglspl] = ACTIONS(12205), + [anon_sym_BSLASHGlspl] = ACTIONS(12205), + [anon_sym_BSLASHGLSpl] = ACTIONS(12205), + [anon_sym_BSLASHglsdisp] = ACTIONS(12205), + [anon_sym_BSLASHglslink] = ACTIONS(12205), + [anon_sym_BSLASHglstext] = ACTIONS(12205), + [anon_sym_BSLASHGlstext] = ACTIONS(12205), + [anon_sym_BSLASHGLStext] = ACTIONS(12205), + [anon_sym_BSLASHglsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12205), + [anon_sym_BSLASHglsplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSplural] = ACTIONS(12205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHglsname] = ACTIONS(12205), + [anon_sym_BSLASHGlsname] = ACTIONS(12205), + [anon_sym_BSLASHGLSname] = ACTIONS(12205), + [anon_sym_BSLASHglssymbol] = ACTIONS(12205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12205), + [anon_sym_BSLASHglsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12205), + [anon_sym_BSLASHglsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12205), + [anon_sym_BSLASHglsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12205), + [anon_sym_BSLASHglsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12205), + [anon_sym_BSLASHglsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12205), + [anon_sym_BSLASHnewacronym] = ACTIONS(12205), + [anon_sym_BSLASHacrshort] = ACTIONS(12205), + [anon_sym_BSLASHAcrshort] = ACTIONS(12205), + [anon_sym_BSLASHACRshort] = ACTIONS(12205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12205), + [anon_sym_BSLASHacrlong] = ACTIONS(12205), + [anon_sym_BSLASHAcrlong] = ACTIONS(12205), + [anon_sym_BSLASHACRlong] = ACTIONS(12205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12205), + [anon_sym_BSLASHacrfull] = ACTIONS(12205), + [anon_sym_BSLASHAcrfull] = ACTIONS(12205), + [anon_sym_BSLASHACRfull] = ACTIONS(12205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12205), + [anon_sym_BSLASHacs] = ACTIONS(12205), + [anon_sym_BSLASHAcs] = ACTIONS(12205), + [anon_sym_BSLASHacsp] = ACTIONS(12205), + [anon_sym_BSLASHAcsp] = ACTIONS(12205), + [anon_sym_BSLASHacl] = ACTIONS(12205), + [anon_sym_BSLASHAcl] = ACTIONS(12205), + [anon_sym_BSLASHaclp] = ACTIONS(12205), + [anon_sym_BSLASHAclp] = ACTIONS(12205), + [anon_sym_BSLASHacf] = ACTIONS(12205), + [anon_sym_BSLASHAcf] = ACTIONS(12205), + [anon_sym_BSLASHacfp] = ACTIONS(12205), + [anon_sym_BSLASHAcfp] = ACTIONS(12205), + [anon_sym_BSLASHac] = ACTIONS(12205), + [anon_sym_BSLASHAc] = ACTIONS(12205), + [anon_sym_BSLASHacp] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12205), + [anon_sym_BSLASHcolor] = ACTIONS(12205), + [anon_sym_BSLASHcolorbox] = ACTIONS(12205), + [anon_sym_BSLASHtextcolor] = ACTIONS(12205), + [anon_sym_BSLASHpagecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12205), + }, + [987] = { + [sym_generic_command_name] = ACTIONS(12213), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12213), + [aux_sym_section_token1] = ACTIONS(12213), + [aux_sym_subsection_token1] = ACTIONS(12213), + [aux_sym_subsubsection_token1] = ACTIONS(12213), + [aux_sym_paragraph_token1] = ACTIONS(12213), + [aux_sym_subparagraph_token1] = ACTIONS(12213), + [anon_sym_BSLASHitem] = ACTIONS(12213), + [anon_sym_LBRACK] = ACTIONS(12211), + [anon_sym_RBRACK] = ACTIONS(12211), + [anon_sym_LBRACE] = ACTIONS(12211), + [anon_sym_RBRACE] = ACTIONS(12211), + [anon_sym_LPAREN] = ACTIONS(12211), + [anon_sym_COMMA] = ACTIONS(12211), + [anon_sym_EQ] = ACTIONS(12211), + [sym_word] = ACTIONS(12211), + [sym_param] = ACTIONS(12211), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12211), + [anon_sym_DOLLAR] = ACTIONS(12213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12211), + [anon_sym_BSLASHbegin] = ACTIONS(12213), + [anon_sym_BSLASHcaption] = ACTIONS(12213), + [anon_sym_BSLASHcite] = ACTIONS(12213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCite] = ACTIONS(12213), + [anon_sym_BSLASHnocite] = ACTIONS(12213), + [anon_sym_BSLASHcitet] = ACTIONS(12213), + [anon_sym_BSLASHcitep] = ACTIONS(12213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteauthor] = ACTIONS(12213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitetitle] = ACTIONS(12213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteyear] = ACTIONS(12213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitedate] = ACTIONS(12213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteurl] = ACTIONS(12213), + [anon_sym_BSLASHfullcite] = ACTIONS(12213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12213), + [anon_sym_BSLASHcitealt] = ACTIONS(12213), + [anon_sym_BSLASHcitealp] = ACTIONS(12213), + [anon_sym_BSLASHcitetext] = ACTIONS(12213), + [anon_sym_BSLASHparencite] = ACTIONS(12213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHParencite] = ACTIONS(12213), + [anon_sym_BSLASHfootcite] = ACTIONS(12213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12213), + [anon_sym_BSLASHtextcite] = ACTIONS(12213), + [anon_sym_BSLASHTextcite] = ACTIONS(12213), + [anon_sym_BSLASHsmartcite] = ACTIONS(12213), + [anon_sym_BSLASHSmartcite] = ACTIONS(12213), + [anon_sym_BSLASHsupercite] = ACTIONS(12213), + [anon_sym_BSLASHautocite] = ACTIONS(12213), + [anon_sym_BSLASHAutocite] = ACTIONS(12213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHvolcite] = ACTIONS(12213), + [anon_sym_BSLASHVolcite] = ACTIONS(12213), + [anon_sym_BSLASHpvolcite] = ACTIONS(12213), + [anon_sym_BSLASHPvolcite] = ACTIONS(12213), + [anon_sym_BSLASHfvolcite] = ACTIONS(12213), + [anon_sym_BSLASHftvolcite] = ACTIONS(12213), + [anon_sym_BSLASHsvolcite] = ACTIONS(12213), + [anon_sym_BSLASHSvolcite] = ACTIONS(12213), + [anon_sym_BSLASHtvolcite] = ACTIONS(12213), + [anon_sym_BSLASHTvolcite] = ACTIONS(12213), + [anon_sym_BSLASHavolcite] = ACTIONS(12213), + [anon_sym_BSLASHAvolcite] = ACTIONS(12213), + [anon_sym_BSLASHnotecite] = ACTIONS(12213), + [anon_sym_BSLASHpnotecite] = ACTIONS(12213), + [anon_sym_BSLASHPnotecite] = ACTIONS(12213), + [anon_sym_BSLASHfnotecite] = ACTIONS(12213), + [anon_sym_BSLASHusepackage] = ACTIONS(12213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12213), + [anon_sym_BSLASHinclude] = ACTIONS(12213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12213), + [anon_sym_BSLASHinput] = ACTIONS(12213), + [anon_sym_BSLASHsubfile] = ACTIONS(12213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12213), + [anon_sym_BSLASHbibliography] = ACTIONS(12213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12213), + [anon_sym_BSLASHincludesvg] = ACTIONS(12213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12213), + [anon_sym_BSLASHimport] = ACTIONS(12213), + [anon_sym_BSLASHsubimport] = ACTIONS(12213), + [anon_sym_BSLASHinputfrom] = ACTIONS(12213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12213), + [anon_sym_BSLASHincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHlabel] = ACTIONS(12213), + [anon_sym_BSLASHref] = ACTIONS(12213), + [anon_sym_BSLASHvref] = ACTIONS(12213), + [anon_sym_BSLASHVref] = ACTIONS(12213), + [anon_sym_BSLASHautoref] = ACTIONS(12213), + [anon_sym_BSLASHpageref] = ACTIONS(12213), + [anon_sym_BSLASHcref] = ACTIONS(12213), + [anon_sym_BSLASHCref] = ACTIONS(12213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnameCref] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHlabelcref] = ACTIONS(12213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12213), + [anon_sym_BSLASHeqref] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange] = ACTIONS(12213), + [anon_sym_BSLASHCrefrange] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewlabel] = ACTIONS(12213), + [anon_sym_BSLASHnewcommand] = ACTIONS(12213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12213), + [anon_sym_BSLASHgls] = ACTIONS(12213), + [anon_sym_BSLASHGls] = ACTIONS(12213), + [anon_sym_BSLASHGLS] = ACTIONS(12213), + [anon_sym_BSLASHglspl] = ACTIONS(12213), + [anon_sym_BSLASHGlspl] = ACTIONS(12213), + [anon_sym_BSLASHGLSpl] = ACTIONS(12213), + [anon_sym_BSLASHglsdisp] = ACTIONS(12213), + [anon_sym_BSLASHglslink] = ACTIONS(12213), + [anon_sym_BSLASHglstext] = ACTIONS(12213), + [anon_sym_BSLASHGlstext] = ACTIONS(12213), + [anon_sym_BSLASHGLStext] = ACTIONS(12213), + [anon_sym_BSLASHglsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12213), + [anon_sym_BSLASHglsplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSplural] = ACTIONS(12213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHglsname] = ACTIONS(12213), + [anon_sym_BSLASHGlsname] = ACTIONS(12213), + [anon_sym_BSLASHGLSname] = ACTIONS(12213), + [anon_sym_BSLASHglssymbol] = ACTIONS(12213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12213), + [anon_sym_BSLASHglsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12213), + [anon_sym_BSLASHglsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12213), + [anon_sym_BSLASHglsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12213), + [anon_sym_BSLASHglsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12213), + [anon_sym_BSLASHglsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12213), + [anon_sym_BSLASHnewacronym] = ACTIONS(12213), + [anon_sym_BSLASHacrshort] = ACTIONS(12213), + [anon_sym_BSLASHAcrshort] = ACTIONS(12213), + [anon_sym_BSLASHACRshort] = ACTIONS(12213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12213), + [anon_sym_BSLASHacrlong] = ACTIONS(12213), + [anon_sym_BSLASHAcrlong] = ACTIONS(12213), + [anon_sym_BSLASHACRlong] = ACTIONS(12213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12213), + [anon_sym_BSLASHacrfull] = ACTIONS(12213), + [anon_sym_BSLASHAcrfull] = ACTIONS(12213), + [anon_sym_BSLASHACRfull] = ACTIONS(12213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12213), + [anon_sym_BSLASHacs] = ACTIONS(12213), + [anon_sym_BSLASHAcs] = ACTIONS(12213), + [anon_sym_BSLASHacsp] = ACTIONS(12213), + [anon_sym_BSLASHAcsp] = ACTIONS(12213), + [anon_sym_BSLASHacl] = ACTIONS(12213), + [anon_sym_BSLASHAcl] = ACTIONS(12213), + [anon_sym_BSLASHaclp] = ACTIONS(12213), + [anon_sym_BSLASHAclp] = ACTIONS(12213), + [anon_sym_BSLASHacf] = ACTIONS(12213), + [anon_sym_BSLASHAcf] = ACTIONS(12213), + [anon_sym_BSLASHacfp] = ACTIONS(12213), + [anon_sym_BSLASHAcfp] = ACTIONS(12213), + [anon_sym_BSLASHac] = ACTIONS(12213), + [anon_sym_BSLASHAc] = ACTIONS(12213), + [anon_sym_BSLASHacp] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12213), + [anon_sym_BSLASHcolor] = ACTIONS(12213), + [anon_sym_BSLASHcolorbox] = ACTIONS(12213), + [anon_sym_BSLASHtextcolor] = ACTIONS(12213), + [anon_sym_BSLASHpagecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12213), + }, + [988] = { + [sym_generic_command_name] = ACTIONS(12217), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12217), + [aux_sym_section_token1] = ACTIONS(12217), + [aux_sym_subsection_token1] = ACTIONS(12217), + [aux_sym_subsubsection_token1] = ACTIONS(12217), + [aux_sym_paragraph_token1] = ACTIONS(12217), + [aux_sym_subparagraph_token1] = ACTIONS(12217), + [anon_sym_BSLASHitem] = ACTIONS(12217), + [anon_sym_LBRACK] = ACTIONS(12215), + [anon_sym_RBRACK] = ACTIONS(12215), + [anon_sym_LBRACE] = ACTIONS(12215), + [anon_sym_RBRACE] = ACTIONS(12215), + [anon_sym_LPAREN] = ACTIONS(12215), + [anon_sym_COMMA] = ACTIONS(12215), + [anon_sym_EQ] = ACTIONS(12215), + [sym_word] = ACTIONS(12215), + [sym_param] = ACTIONS(12215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12215), + [anon_sym_DOLLAR] = ACTIONS(12217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12215), + [anon_sym_BSLASHbegin] = ACTIONS(12217), + [anon_sym_BSLASHcaption] = ACTIONS(12217), + [anon_sym_BSLASHcite] = ACTIONS(12217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCite] = ACTIONS(12217), + [anon_sym_BSLASHnocite] = ACTIONS(12217), + [anon_sym_BSLASHcitet] = ACTIONS(12217), + [anon_sym_BSLASHcitep] = ACTIONS(12217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteauthor] = ACTIONS(12217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitetitle] = ACTIONS(12217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteyear] = ACTIONS(12217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitedate] = ACTIONS(12217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteurl] = ACTIONS(12217), + [anon_sym_BSLASHfullcite] = ACTIONS(12217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12217), + [anon_sym_BSLASHcitealt] = ACTIONS(12217), + [anon_sym_BSLASHcitealp] = ACTIONS(12217), + [anon_sym_BSLASHcitetext] = ACTIONS(12217), + [anon_sym_BSLASHparencite] = ACTIONS(12217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHParencite] = ACTIONS(12217), + [anon_sym_BSLASHfootcite] = ACTIONS(12217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12217), + [anon_sym_BSLASHtextcite] = ACTIONS(12217), + [anon_sym_BSLASHTextcite] = ACTIONS(12217), + [anon_sym_BSLASHsmartcite] = ACTIONS(12217), + [anon_sym_BSLASHSmartcite] = ACTIONS(12217), + [anon_sym_BSLASHsupercite] = ACTIONS(12217), + [anon_sym_BSLASHautocite] = ACTIONS(12217), + [anon_sym_BSLASHAutocite] = ACTIONS(12217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHvolcite] = ACTIONS(12217), + [anon_sym_BSLASHVolcite] = ACTIONS(12217), + [anon_sym_BSLASHpvolcite] = ACTIONS(12217), + [anon_sym_BSLASHPvolcite] = ACTIONS(12217), + [anon_sym_BSLASHfvolcite] = ACTIONS(12217), + [anon_sym_BSLASHftvolcite] = ACTIONS(12217), + [anon_sym_BSLASHsvolcite] = ACTIONS(12217), + [anon_sym_BSLASHSvolcite] = ACTIONS(12217), + [anon_sym_BSLASHtvolcite] = ACTIONS(12217), + [anon_sym_BSLASHTvolcite] = ACTIONS(12217), + [anon_sym_BSLASHavolcite] = ACTIONS(12217), + [anon_sym_BSLASHAvolcite] = ACTIONS(12217), + [anon_sym_BSLASHnotecite] = ACTIONS(12217), + [anon_sym_BSLASHpnotecite] = ACTIONS(12217), + [anon_sym_BSLASHPnotecite] = ACTIONS(12217), + [anon_sym_BSLASHfnotecite] = ACTIONS(12217), + [anon_sym_BSLASHusepackage] = ACTIONS(12217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12217), + [anon_sym_BSLASHinclude] = ACTIONS(12217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12217), + [anon_sym_BSLASHinput] = ACTIONS(12217), + [anon_sym_BSLASHsubfile] = ACTIONS(12217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12217), + [anon_sym_BSLASHbibliography] = ACTIONS(12217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12217), + [anon_sym_BSLASHincludesvg] = ACTIONS(12217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12217), + [anon_sym_BSLASHimport] = ACTIONS(12217), + [anon_sym_BSLASHsubimport] = ACTIONS(12217), + [anon_sym_BSLASHinputfrom] = ACTIONS(12217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12217), + [anon_sym_BSLASHincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHlabel] = ACTIONS(12217), + [anon_sym_BSLASHref] = ACTIONS(12217), + [anon_sym_BSLASHvref] = ACTIONS(12217), + [anon_sym_BSLASHVref] = ACTIONS(12217), + [anon_sym_BSLASHautoref] = ACTIONS(12217), + [anon_sym_BSLASHpageref] = ACTIONS(12217), + [anon_sym_BSLASHcref] = ACTIONS(12217), + [anon_sym_BSLASHCref] = ACTIONS(12217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnameCref] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHlabelcref] = ACTIONS(12217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12217), + [anon_sym_BSLASHeqref] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange] = ACTIONS(12217), + [anon_sym_BSLASHCrefrange] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewlabel] = ACTIONS(12217), + [anon_sym_BSLASHnewcommand] = ACTIONS(12217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12217), + [anon_sym_BSLASHgls] = ACTIONS(12217), + [anon_sym_BSLASHGls] = ACTIONS(12217), + [anon_sym_BSLASHGLS] = ACTIONS(12217), + [anon_sym_BSLASHglspl] = ACTIONS(12217), + [anon_sym_BSLASHGlspl] = ACTIONS(12217), + [anon_sym_BSLASHGLSpl] = ACTIONS(12217), + [anon_sym_BSLASHglsdisp] = ACTIONS(12217), + [anon_sym_BSLASHglslink] = ACTIONS(12217), + [anon_sym_BSLASHglstext] = ACTIONS(12217), + [anon_sym_BSLASHGlstext] = ACTIONS(12217), + [anon_sym_BSLASHGLStext] = ACTIONS(12217), + [anon_sym_BSLASHglsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12217), + [anon_sym_BSLASHglsplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSplural] = ACTIONS(12217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHglsname] = ACTIONS(12217), + [anon_sym_BSLASHGlsname] = ACTIONS(12217), + [anon_sym_BSLASHGLSname] = ACTIONS(12217), + [anon_sym_BSLASHglssymbol] = ACTIONS(12217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12217), + [anon_sym_BSLASHglsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12217), + [anon_sym_BSLASHglsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12217), + [anon_sym_BSLASHglsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12217), + [anon_sym_BSLASHglsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12217), + [anon_sym_BSLASHglsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12217), + [anon_sym_BSLASHnewacronym] = ACTIONS(12217), + [anon_sym_BSLASHacrshort] = ACTIONS(12217), + [anon_sym_BSLASHAcrshort] = ACTIONS(12217), + [anon_sym_BSLASHACRshort] = ACTIONS(12217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12217), + [anon_sym_BSLASHacrlong] = ACTIONS(12217), + [anon_sym_BSLASHAcrlong] = ACTIONS(12217), + [anon_sym_BSLASHACRlong] = ACTIONS(12217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12217), + [anon_sym_BSLASHacrfull] = ACTIONS(12217), + [anon_sym_BSLASHAcrfull] = ACTIONS(12217), + [anon_sym_BSLASHACRfull] = ACTIONS(12217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12217), + [anon_sym_BSLASHacs] = ACTIONS(12217), + [anon_sym_BSLASHAcs] = ACTIONS(12217), + [anon_sym_BSLASHacsp] = ACTIONS(12217), + [anon_sym_BSLASHAcsp] = ACTIONS(12217), + [anon_sym_BSLASHacl] = ACTIONS(12217), + [anon_sym_BSLASHAcl] = ACTIONS(12217), + [anon_sym_BSLASHaclp] = ACTIONS(12217), + [anon_sym_BSLASHAclp] = ACTIONS(12217), + [anon_sym_BSLASHacf] = ACTIONS(12217), + [anon_sym_BSLASHAcf] = ACTIONS(12217), + [anon_sym_BSLASHacfp] = ACTIONS(12217), + [anon_sym_BSLASHAcfp] = ACTIONS(12217), + [anon_sym_BSLASHac] = ACTIONS(12217), + [anon_sym_BSLASHAc] = ACTIONS(12217), + [anon_sym_BSLASHacp] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12217), + [anon_sym_BSLASHcolor] = ACTIONS(12217), + [anon_sym_BSLASHcolorbox] = ACTIONS(12217), + [anon_sym_BSLASHtextcolor] = ACTIONS(12217), + [anon_sym_BSLASHpagecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12217), + }, + [989] = { + [sym_generic_command_name] = ACTIONS(12417), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12417), + [aux_sym_chapter_token1] = ACTIONS(12417), + [aux_sym_section_token1] = ACTIONS(12417), + [aux_sym_subsection_token1] = ACTIONS(12417), + [aux_sym_subsubsection_token1] = ACTIONS(12417), + [aux_sym_paragraph_token1] = ACTIONS(12417), + [aux_sym_subparagraph_token1] = ACTIONS(12417), + [anon_sym_BSLASHitem] = ACTIONS(12417), + [anon_sym_LBRACK] = ACTIONS(12415), + [anon_sym_LBRACE] = ACTIONS(12415), + [anon_sym_LPAREN] = ACTIONS(12415), + [anon_sym_COMMA] = ACTIONS(12415), + [anon_sym_EQ] = ACTIONS(12415), + [sym_word] = ACTIONS(12415), + [sym_param] = ACTIONS(12415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12415), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12415), + [anon_sym_DOLLAR] = ACTIONS(12417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12415), + [anon_sym_BSLASHbegin] = ACTIONS(12417), + [anon_sym_BSLASHcaption] = ACTIONS(12417), + [anon_sym_BSLASHcite] = ACTIONS(12417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCite] = ACTIONS(12417), + [anon_sym_BSLASHnocite] = ACTIONS(12417), + [anon_sym_BSLASHcitet] = ACTIONS(12417), + [anon_sym_BSLASHcitep] = ACTIONS(12417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteauthor] = ACTIONS(12417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitetitle] = ACTIONS(12417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteyear] = ACTIONS(12417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitedate] = ACTIONS(12417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteurl] = ACTIONS(12417), + [anon_sym_BSLASHfullcite] = ACTIONS(12417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12417), + [anon_sym_BSLASHcitealt] = ACTIONS(12417), + [anon_sym_BSLASHcitealp] = ACTIONS(12417), + [anon_sym_BSLASHcitetext] = ACTIONS(12417), + [anon_sym_BSLASHparencite] = ACTIONS(12417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHParencite] = ACTIONS(12417), + [anon_sym_BSLASHfootcite] = ACTIONS(12417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12417), + [anon_sym_BSLASHtextcite] = ACTIONS(12417), + [anon_sym_BSLASHTextcite] = ACTIONS(12417), + [anon_sym_BSLASHsmartcite] = ACTIONS(12417), + [anon_sym_BSLASHSmartcite] = ACTIONS(12417), + [anon_sym_BSLASHsupercite] = ACTIONS(12417), + [anon_sym_BSLASHautocite] = ACTIONS(12417), + [anon_sym_BSLASHAutocite] = ACTIONS(12417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHvolcite] = ACTIONS(12417), + [anon_sym_BSLASHVolcite] = ACTIONS(12417), + [anon_sym_BSLASHpvolcite] = ACTIONS(12417), + [anon_sym_BSLASHPvolcite] = ACTIONS(12417), + [anon_sym_BSLASHfvolcite] = ACTIONS(12417), + [anon_sym_BSLASHftvolcite] = ACTIONS(12417), + [anon_sym_BSLASHsvolcite] = ACTIONS(12417), + [anon_sym_BSLASHSvolcite] = ACTIONS(12417), + [anon_sym_BSLASHtvolcite] = ACTIONS(12417), + [anon_sym_BSLASHTvolcite] = ACTIONS(12417), + [anon_sym_BSLASHavolcite] = ACTIONS(12417), + [anon_sym_BSLASHAvolcite] = ACTIONS(12417), + [anon_sym_BSLASHnotecite] = ACTIONS(12417), + [anon_sym_BSLASHpnotecite] = ACTIONS(12417), + [anon_sym_BSLASHPnotecite] = ACTIONS(12417), + [anon_sym_BSLASHfnotecite] = ACTIONS(12417), + [anon_sym_BSLASHusepackage] = ACTIONS(12417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12417), + [anon_sym_BSLASHinclude] = ACTIONS(12417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12417), + [anon_sym_BSLASHinput] = ACTIONS(12417), + [anon_sym_BSLASHsubfile] = ACTIONS(12417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12417), + [anon_sym_BSLASHbibliography] = ACTIONS(12417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12417), + [anon_sym_BSLASHincludesvg] = ACTIONS(12417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12417), + [anon_sym_BSLASHimport] = ACTIONS(12417), + [anon_sym_BSLASHsubimport] = ACTIONS(12417), + [anon_sym_BSLASHinputfrom] = ACTIONS(12417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12417), + [anon_sym_BSLASHincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHlabel] = ACTIONS(12417), + [anon_sym_BSLASHref] = ACTIONS(12417), + [anon_sym_BSLASHvref] = ACTIONS(12417), + [anon_sym_BSLASHVref] = ACTIONS(12417), + [anon_sym_BSLASHautoref] = ACTIONS(12417), + [anon_sym_BSLASHpageref] = ACTIONS(12417), + [anon_sym_BSLASHcref] = ACTIONS(12417), + [anon_sym_BSLASHCref] = ACTIONS(12417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnameCref] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHlabelcref] = ACTIONS(12417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12417), + [anon_sym_BSLASHeqref] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange] = ACTIONS(12417), + [anon_sym_BSLASHCrefrange] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewlabel] = ACTIONS(12417), + [anon_sym_BSLASHnewcommand] = ACTIONS(12417), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12417), + [anon_sym_BSLASHgls] = ACTIONS(12417), + [anon_sym_BSLASHGls] = ACTIONS(12417), + [anon_sym_BSLASHGLS] = ACTIONS(12417), + [anon_sym_BSLASHglspl] = ACTIONS(12417), + [anon_sym_BSLASHGlspl] = ACTIONS(12417), + [anon_sym_BSLASHGLSpl] = ACTIONS(12417), + [anon_sym_BSLASHglsdisp] = ACTIONS(12417), + [anon_sym_BSLASHglslink] = ACTIONS(12417), + [anon_sym_BSLASHglstext] = ACTIONS(12417), + [anon_sym_BSLASHGlstext] = ACTIONS(12417), + [anon_sym_BSLASHGLStext] = ACTIONS(12417), + [anon_sym_BSLASHglsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12417), + [anon_sym_BSLASHglsplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSplural] = ACTIONS(12417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHglsname] = ACTIONS(12417), + [anon_sym_BSLASHGlsname] = ACTIONS(12417), + [anon_sym_BSLASHGLSname] = ACTIONS(12417), + [anon_sym_BSLASHglssymbol] = ACTIONS(12417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12417), + [anon_sym_BSLASHglsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12417), + [anon_sym_BSLASHglsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12417), + [anon_sym_BSLASHglsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12417), + [anon_sym_BSLASHglsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12417), + [anon_sym_BSLASHglsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12417), + [anon_sym_BSLASHnewacronym] = ACTIONS(12417), + [anon_sym_BSLASHacrshort] = ACTIONS(12417), + [anon_sym_BSLASHAcrshort] = ACTIONS(12417), + [anon_sym_BSLASHACRshort] = ACTIONS(12417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12417), + [anon_sym_BSLASHacrlong] = ACTIONS(12417), + [anon_sym_BSLASHAcrlong] = ACTIONS(12417), + [anon_sym_BSLASHACRlong] = ACTIONS(12417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12417), + [anon_sym_BSLASHacrfull] = ACTIONS(12417), + [anon_sym_BSLASHAcrfull] = ACTIONS(12417), + [anon_sym_BSLASHACRfull] = ACTIONS(12417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12417), + [anon_sym_BSLASHacs] = ACTIONS(12417), + [anon_sym_BSLASHAcs] = ACTIONS(12417), + [anon_sym_BSLASHacsp] = ACTIONS(12417), + [anon_sym_BSLASHAcsp] = ACTIONS(12417), + [anon_sym_BSLASHacl] = ACTIONS(12417), + [anon_sym_BSLASHAcl] = ACTIONS(12417), + [anon_sym_BSLASHaclp] = ACTIONS(12417), + [anon_sym_BSLASHAclp] = ACTIONS(12417), + [anon_sym_BSLASHacf] = ACTIONS(12417), + [anon_sym_BSLASHAcf] = ACTIONS(12417), + [anon_sym_BSLASHacfp] = ACTIONS(12417), + [anon_sym_BSLASHAcfp] = ACTIONS(12417), + [anon_sym_BSLASHac] = ACTIONS(12417), + [anon_sym_BSLASHAc] = ACTIONS(12417), + [anon_sym_BSLASHacp] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12417), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12417), + [anon_sym_BSLASHcolor] = ACTIONS(12417), + [anon_sym_BSLASHcolorbox] = ACTIONS(12417), + [anon_sym_BSLASHtextcolor] = ACTIONS(12417), + [anon_sym_BSLASHpagecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12417), + }, + [990] = { + [sym_generic_command_name] = ACTIONS(12221), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12221), + [aux_sym_section_token1] = ACTIONS(12221), + [aux_sym_subsection_token1] = ACTIONS(12221), + [aux_sym_subsubsection_token1] = ACTIONS(12221), + [aux_sym_paragraph_token1] = ACTIONS(12221), + [aux_sym_subparagraph_token1] = ACTIONS(12221), + [anon_sym_BSLASHitem] = ACTIONS(12221), + [anon_sym_LBRACK] = ACTIONS(12219), + [anon_sym_RBRACK] = ACTIONS(12219), + [anon_sym_LBRACE] = ACTIONS(12689), + [anon_sym_RBRACE] = ACTIONS(12219), + [anon_sym_LPAREN] = ACTIONS(12219), + [anon_sym_COMMA] = ACTIONS(12219), + [anon_sym_EQ] = ACTIONS(12219), + [sym_word] = ACTIONS(12219), + [sym_param] = ACTIONS(12219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12219), + [anon_sym_DOLLAR] = ACTIONS(12221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12219), + [anon_sym_BSLASHbegin] = ACTIONS(12221), + [anon_sym_BSLASHcaption] = ACTIONS(12221), + [anon_sym_BSLASHcite] = ACTIONS(12221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCite] = ACTIONS(12221), + [anon_sym_BSLASHnocite] = ACTIONS(12221), + [anon_sym_BSLASHcitet] = ACTIONS(12221), + [anon_sym_BSLASHcitep] = ACTIONS(12221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteauthor] = ACTIONS(12221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitetitle] = ACTIONS(12221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteyear] = ACTIONS(12221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitedate] = ACTIONS(12221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteurl] = ACTIONS(12221), + [anon_sym_BSLASHfullcite] = ACTIONS(12221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12221), + [anon_sym_BSLASHcitealt] = ACTIONS(12221), + [anon_sym_BSLASHcitealp] = ACTIONS(12221), + [anon_sym_BSLASHcitetext] = ACTIONS(12221), + [anon_sym_BSLASHparencite] = ACTIONS(12221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHParencite] = ACTIONS(12221), + [anon_sym_BSLASHfootcite] = ACTIONS(12221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12221), + [anon_sym_BSLASHtextcite] = ACTIONS(12221), + [anon_sym_BSLASHTextcite] = ACTIONS(12221), + [anon_sym_BSLASHsmartcite] = ACTIONS(12221), + [anon_sym_BSLASHSmartcite] = ACTIONS(12221), + [anon_sym_BSLASHsupercite] = ACTIONS(12221), + [anon_sym_BSLASHautocite] = ACTIONS(12221), + [anon_sym_BSLASHAutocite] = ACTIONS(12221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHvolcite] = ACTIONS(12221), + [anon_sym_BSLASHVolcite] = ACTIONS(12221), + [anon_sym_BSLASHpvolcite] = ACTIONS(12221), + [anon_sym_BSLASHPvolcite] = ACTIONS(12221), + [anon_sym_BSLASHfvolcite] = ACTIONS(12221), + [anon_sym_BSLASHftvolcite] = ACTIONS(12221), + [anon_sym_BSLASHsvolcite] = ACTIONS(12221), + [anon_sym_BSLASHSvolcite] = ACTIONS(12221), + [anon_sym_BSLASHtvolcite] = ACTIONS(12221), + [anon_sym_BSLASHTvolcite] = ACTIONS(12221), + [anon_sym_BSLASHavolcite] = ACTIONS(12221), + [anon_sym_BSLASHAvolcite] = ACTIONS(12221), + [anon_sym_BSLASHnotecite] = ACTIONS(12221), + [anon_sym_BSLASHpnotecite] = ACTIONS(12221), + [anon_sym_BSLASHPnotecite] = ACTIONS(12221), + [anon_sym_BSLASHfnotecite] = ACTIONS(12221), + [anon_sym_BSLASHusepackage] = ACTIONS(12221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12221), + [anon_sym_BSLASHinclude] = ACTIONS(12221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12221), + [anon_sym_BSLASHinput] = ACTIONS(12221), + [anon_sym_BSLASHsubfile] = ACTIONS(12221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12221), + [anon_sym_BSLASHbibliography] = ACTIONS(12221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12221), + [anon_sym_BSLASHincludesvg] = ACTIONS(12221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12221), + [anon_sym_BSLASHimport] = ACTIONS(12221), + [anon_sym_BSLASHsubimport] = ACTIONS(12221), + [anon_sym_BSLASHinputfrom] = ACTIONS(12221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12221), + [anon_sym_BSLASHincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHlabel] = ACTIONS(12221), + [anon_sym_BSLASHref] = ACTIONS(12221), + [anon_sym_BSLASHvref] = ACTIONS(12221), + [anon_sym_BSLASHVref] = ACTIONS(12221), + [anon_sym_BSLASHautoref] = ACTIONS(12221), + [anon_sym_BSLASHpageref] = ACTIONS(12221), + [anon_sym_BSLASHcref] = ACTIONS(12221), + [anon_sym_BSLASHCref] = ACTIONS(12221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnameCref] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHlabelcref] = ACTIONS(12221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12221), + [anon_sym_BSLASHeqref] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange] = ACTIONS(12221), + [anon_sym_BSLASHCrefrange] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewlabel] = ACTIONS(12221), + [anon_sym_BSLASHnewcommand] = ACTIONS(12221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12221), + [anon_sym_BSLASHgls] = ACTIONS(12221), + [anon_sym_BSLASHGls] = ACTIONS(12221), + [anon_sym_BSLASHGLS] = ACTIONS(12221), + [anon_sym_BSLASHglspl] = ACTIONS(12221), + [anon_sym_BSLASHGlspl] = ACTIONS(12221), + [anon_sym_BSLASHGLSpl] = ACTIONS(12221), + [anon_sym_BSLASHglsdisp] = ACTIONS(12221), + [anon_sym_BSLASHglslink] = ACTIONS(12221), + [anon_sym_BSLASHglstext] = ACTIONS(12221), + [anon_sym_BSLASHGlstext] = ACTIONS(12221), + [anon_sym_BSLASHGLStext] = ACTIONS(12221), + [anon_sym_BSLASHglsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12221), + [anon_sym_BSLASHglsplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSplural] = ACTIONS(12221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHglsname] = ACTIONS(12221), + [anon_sym_BSLASHGlsname] = ACTIONS(12221), + [anon_sym_BSLASHGLSname] = ACTIONS(12221), + [anon_sym_BSLASHglssymbol] = ACTIONS(12221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12221), + [anon_sym_BSLASHglsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12221), + [anon_sym_BSLASHglsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12221), + [anon_sym_BSLASHglsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12221), + [anon_sym_BSLASHglsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12221), + [anon_sym_BSLASHglsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12221), + [anon_sym_BSLASHnewacronym] = ACTIONS(12221), + [anon_sym_BSLASHacrshort] = ACTIONS(12221), + [anon_sym_BSLASHAcrshort] = ACTIONS(12221), + [anon_sym_BSLASHACRshort] = ACTIONS(12221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12221), + [anon_sym_BSLASHacrlong] = ACTIONS(12221), + [anon_sym_BSLASHAcrlong] = ACTIONS(12221), + [anon_sym_BSLASHACRlong] = ACTIONS(12221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12221), + [anon_sym_BSLASHacrfull] = ACTIONS(12221), + [anon_sym_BSLASHAcrfull] = ACTIONS(12221), + [anon_sym_BSLASHACRfull] = ACTIONS(12221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12221), + [anon_sym_BSLASHacs] = ACTIONS(12221), + [anon_sym_BSLASHAcs] = ACTIONS(12221), + [anon_sym_BSLASHacsp] = ACTIONS(12221), + [anon_sym_BSLASHAcsp] = ACTIONS(12221), + [anon_sym_BSLASHacl] = ACTIONS(12221), + [anon_sym_BSLASHAcl] = ACTIONS(12221), + [anon_sym_BSLASHaclp] = ACTIONS(12221), + [anon_sym_BSLASHAclp] = ACTIONS(12221), + [anon_sym_BSLASHacf] = ACTIONS(12221), + [anon_sym_BSLASHAcf] = ACTIONS(12221), + [anon_sym_BSLASHacfp] = ACTIONS(12221), + [anon_sym_BSLASHAcfp] = ACTIONS(12221), + [anon_sym_BSLASHac] = ACTIONS(12221), + [anon_sym_BSLASHAc] = ACTIONS(12221), + [anon_sym_BSLASHacp] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12221), + [anon_sym_BSLASHcolor] = ACTIONS(12221), + [anon_sym_BSLASHcolorbox] = ACTIONS(12221), + [anon_sym_BSLASHtextcolor] = ACTIONS(12221), + [anon_sym_BSLASHpagecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12221), + }, + [991] = { + [sym_generic_command_name] = ACTIONS(12108), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12108), + [aux_sym_section_token1] = ACTIONS(12108), + [aux_sym_subsection_token1] = ACTIONS(12108), + [aux_sym_subsubsection_token1] = ACTIONS(12108), + [aux_sym_paragraph_token1] = ACTIONS(12108), + [aux_sym_subparagraph_token1] = ACTIONS(12108), + [anon_sym_BSLASHitem] = ACTIONS(12108), + [anon_sym_LBRACK] = ACTIONS(12106), + [anon_sym_RBRACK] = ACTIONS(12106), + [anon_sym_LBRACE] = ACTIONS(12106), + [anon_sym_RBRACE] = ACTIONS(12106), + [anon_sym_LPAREN] = ACTIONS(12106), + [anon_sym_COMMA] = ACTIONS(12106), + [anon_sym_EQ] = ACTIONS(12106), + [sym_word] = ACTIONS(12106), + [sym_param] = ACTIONS(12106), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12106), + [anon_sym_DOLLAR] = ACTIONS(12108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12106), + [anon_sym_BSLASHbegin] = ACTIONS(12108), + [anon_sym_BSLASHcaption] = ACTIONS(12108), + [anon_sym_BSLASHcite] = ACTIONS(12108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCite] = ACTIONS(12108), + [anon_sym_BSLASHnocite] = ACTIONS(12108), + [anon_sym_BSLASHcitet] = ACTIONS(12108), + [anon_sym_BSLASHcitep] = ACTIONS(12108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteauthor] = ACTIONS(12108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitetitle] = ACTIONS(12108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteyear] = ACTIONS(12108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitedate] = ACTIONS(12108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteurl] = ACTIONS(12108), + [anon_sym_BSLASHfullcite] = ACTIONS(12108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12108), + [anon_sym_BSLASHcitealt] = ACTIONS(12108), + [anon_sym_BSLASHcitealp] = ACTIONS(12108), + [anon_sym_BSLASHcitetext] = ACTIONS(12108), + [anon_sym_BSLASHparencite] = ACTIONS(12108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHParencite] = ACTIONS(12108), + [anon_sym_BSLASHfootcite] = ACTIONS(12108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12108), + [anon_sym_BSLASHtextcite] = ACTIONS(12108), + [anon_sym_BSLASHTextcite] = ACTIONS(12108), + [anon_sym_BSLASHsmartcite] = ACTIONS(12108), + [anon_sym_BSLASHSmartcite] = ACTIONS(12108), + [anon_sym_BSLASHsupercite] = ACTIONS(12108), + [anon_sym_BSLASHautocite] = ACTIONS(12108), + [anon_sym_BSLASHAutocite] = ACTIONS(12108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHvolcite] = ACTIONS(12108), + [anon_sym_BSLASHVolcite] = ACTIONS(12108), + [anon_sym_BSLASHpvolcite] = ACTIONS(12108), + [anon_sym_BSLASHPvolcite] = ACTIONS(12108), + [anon_sym_BSLASHfvolcite] = ACTIONS(12108), + [anon_sym_BSLASHftvolcite] = ACTIONS(12108), + [anon_sym_BSLASHsvolcite] = ACTIONS(12108), + [anon_sym_BSLASHSvolcite] = ACTIONS(12108), + [anon_sym_BSLASHtvolcite] = ACTIONS(12108), + [anon_sym_BSLASHTvolcite] = ACTIONS(12108), + [anon_sym_BSLASHavolcite] = ACTIONS(12108), + [anon_sym_BSLASHAvolcite] = ACTIONS(12108), + [anon_sym_BSLASHnotecite] = ACTIONS(12108), + [anon_sym_BSLASHpnotecite] = ACTIONS(12108), + [anon_sym_BSLASHPnotecite] = ACTIONS(12108), + [anon_sym_BSLASHfnotecite] = ACTIONS(12108), + [anon_sym_BSLASHusepackage] = ACTIONS(12108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12108), + [anon_sym_BSLASHinclude] = ACTIONS(12108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12108), + [anon_sym_BSLASHinput] = ACTIONS(12108), + [anon_sym_BSLASHsubfile] = ACTIONS(12108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12108), + [anon_sym_BSLASHbibliography] = ACTIONS(12108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12108), + [anon_sym_BSLASHincludesvg] = ACTIONS(12108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12108), + [anon_sym_BSLASHimport] = ACTIONS(12108), + [anon_sym_BSLASHsubimport] = ACTIONS(12108), + [anon_sym_BSLASHinputfrom] = ACTIONS(12108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12108), + [anon_sym_BSLASHincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHlabel] = ACTIONS(12108), + [anon_sym_BSLASHref] = ACTIONS(12108), + [anon_sym_BSLASHvref] = ACTIONS(12108), + [anon_sym_BSLASHVref] = ACTIONS(12108), + [anon_sym_BSLASHautoref] = ACTIONS(12108), + [anon_sym_BSLASHpageref] = ACTIONS(12108), + [anon_sym_BSLASHcref] = ACTIONS(12108), + [anon_sym_BSLASHCref] = ACTIONS(12108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnameCref] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHlabelcref] = ACTIONS(12108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12108), + [anon_sym_BSLASHeqref] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange] = ACTIONS(12108), + [anon_sym_BSLASHCrefrange] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewlabel] = ACTIONS(12108), + [anon_sym_BSLASHnewcommand] = ACTIONS(12108), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12108), + [anon_sym_BSLASHgls] = ACTIONS(12108), + [anon_sym_BSLASHGls] = ACTIONS(12108), + [anon_sym_BSLASHGLS] = ACTIONS(12108), + [anon_sym_BSLASHglspl] = ACTIONS(12108), + [anon_sym_BSLASHGlspl] = ACTIONS(12108), + [anon_sym_BSLASHGLSpl] = ACTIONS(12108), + [anon_sym_BSLASHglsdisp] = ACTIONS(12108), + [anon_sym_BSLASHglslink] = ACTIONS(12108), + [anon_sym_BSLASHglstext] = ACTIONS(12108), + [anon_sym_BSLASHGlstext] = ACTIONS(12108), + [anon_sym_BSLASHGLStext] = ACTIONS(12108), + [anon_sym_BSLASHglsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12108), + [anon_sym_BSLASHglsplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSplural] = ACTIONS(12108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHglsname] = ACTIONS(12108), + [anon_sym_BSLASHGlsname] = ACTIONS(12108), + [anon_sym_BSLASHGLSname] = ACTIONS(12108), + [anon_sym_BSLASHglssymbol] = ACTIONS(12108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12108), + [anon_sym_BSLASHglsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12108), + [anon_sym_BSLASHglsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12108), + [anon_sym_BSLASHglsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12108), + [anon_sym_BSLASHglsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12108), + [anon_sym_BSLASHglsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12108), + [anon_sym_BSLASHnewacronym] = ACTIONS(12108), + [anon_sym_BSLASHacrshort] = ACTIONS(12108), + [anon_sym_BSLASHAcrshort] = ACTIONS(12108), + [anon_sym_BSLASHACRshort] = ACTIONS(12108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12108), + [anon_sym_BSLASHacrlong] = ACTIONS(12108), + [anon_sym_BSLASHAcrlong] = ACTIONS(12108), + [anon_sym_BSLASHACRlong] = ACTIONS(12108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12108), + [anon_sym_BSLASHacrfull] = ACTIONS(12108), + [anon_sym_BSLASHAcrfull] = ACTIONS(12108), + [anon_sym_BSLASHACRfull] = ACTIONS(12108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12108), + [anon_sym_BSLASHacs] = ACTIONS(12108), + [anon_sym_BSLASHAcs] = ACTIONS(12108), + [anon_sym_BSLASHacsp] = ACTIONS(12108), + [anon_sym_BSLASHAcsp] = ACTIONS(12108), + [anon_sym_BSLASHacl] = ACTIONS(12108), + [anon_sym_BSLASHAcl] = ACTIONS(12108), + [anon_sym_BSLASHaclp] = ACTIONS(12108), + [anon_sym_BSLASHAclp] = ACTIONS(12108), + [anon_sym_BSLASHacf] = ACTIONS(12108), + [anon_sym_BSLASHAcf] = ACTIONS(12108), + [anon_sym_BSLASHacfp] = ACTIONS(12108), + [anon_sym_BSLASHAcfp] = ACTIONS(12108), + [anon_sym_BSLASHac] = ACTIONS(12108), + [anon_sym_BSLASHAc] = ACTIONS(12108), + [anon_sym_BSLASHacp] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12108), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12108), + [anon_sym_BSLASHcolor] = ACTIONS(12108), + [anon_sym_BSLASHcolorbox] = ACTIONS(12108), + [anon_sym_BSLASHtextcolor] = ACTIONS(12108), + [anon_sym_BSLASHpagecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12108), + }, + [992] = { + [sym_generic_command_name] = ACTIONS(12235), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12235), + [aux_sym_section_token1] = ACTIONS(12235), + [aux_sym_subsection_token1] = ACTIONS(12235), + [aux_sym_subsubsection_token1] = ACTIONS(12235), + [aux_sym_paragraph_token1] = ACTIONS(12235), + [aux_sym_subparagraph_token1] = ACTIONS(12235), + [anon_sym_BSLASHitem] = ACTIONS(12235), + [anon_sym_LBRACK] = ACTIONS(12233), + [anon_sym_RBRACK] = ACTIONS(12233), + [anon_sym_LBRACE] = ACTIONS(12233), + [anon_sym_RBRACE] = ACTIONS(12233), + [anon_sym_LPAREN] = ACTIONS(12233), + [anon_sym_COMMA] = ACTIONS(12233), + [anon_sym_EQ] = ACTIONS(12233), + [sym_word] = ACTIONS(12233), + [sym_param] = ACTIONS(12233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12233), + [anon_sym_DOLLAR] = ACTIONS(12235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12233), + [anon_sym_BSLASHbegin] = ACTIONS(12235), + [anon_sym_BSLASHcaption] = ACTIONS(12235), + [anon_sym_BSLASHcite] = ACTIONS(12235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCite] = ACTIONS(12235), + [anon_sym_BSLASHnocite] = ACTIONS(12235), + [anon_sym_BSLASHcitet] = ACTIONS(12235), + [anon_sym_BSLASHcitep] = ACTIONS(12235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteauthor] = ACTIONS(12235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitetitle] = ACTIONS(12235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteyear] = ACTIONS(12235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitedate] = ACTIONS(12235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteurl] = ACTIONS(12235), + [anon_sym_BSLASHfullcite] = ACTIONS(12235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12235), + [anon_sym_BSLASHcitealt] = ACTIONS(12235), + [anon_sym_BSLASHcitealp] = ACTIONS(12235), + [anon_sym_BSLASHcitetext] = ACTIONS(12235), + [anon_sym_BSLASHparencite] = ACTIONS(12235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHParencite] = ACTIONS(12235), + [anon_sym_BSLASHfootcite] = ACTIONS(12235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12235), + [anon_sym_BSLASHtextcite] = ACTIONS(12235), + [anon_sym_BSLASHTextcite] = ACTIONS(12235), + [anon_sym_BSLASHsmartcite] = ACTIONS(12235), + [anon_sym_BSLASHSmartcite] = ACTIONS(12235), + [anon_sym_BSLASHsupercite] = ACTIONS(12235), + [anon_sym_BSLASHautocite] = ACTIONS(12235), + [anon_sym_BSLASHAutocite] = ACTIONS(12235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHvolcite] = ACTIONS(12235), + [anon_sym_BSLASHVolcite] = ACTIONS(12235), + [anon_sym_BSLASHpvolcite] = ACTIONS(12235), + [anon_sym_BSLASHPvolcite] = ACTIONS(12235), + [anon_sym_BSLASHfvolcite] = ACTIONS(12235), + [anon_sym_BSLASHftvolcite] = ACTIONS(12235), + [anon_sym_BSLASHsvolcite] = ACTIONS(12235), + [anon_sym_BSLASHSvolcite] = ACTIONS(12235), + [anon_sym_BSLASHtvolcite] = ACTIONS(12235), + [anon_sym_BSLASHTvolcite] = ACTIONS(12235), + [anon_sym_BSLASHavolcite] = ACTIONS(12235), + [anon_sym_BSLASHAvolcite] = ACTIONS(12235), + [anon_sym_BSLASHnotecite] = ACTIONS(12235), + [anon_sym_BSLASHpnotecite] = ACTIONS(12235), + [anon_sym_BSLASHPnotecite] = ACTIONS(12235), + [anon_sym_BSLASHfnotecite] = ACTIONS(12235), + [anon_sym_BSLASHusepackage] = ACTIONS(12235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12235), + [anon_sym_BSLASHinclude] = ACTIONS(12235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12235), + [anon_sym_BSLASHinput] = ACTIONS(12235), + [anon_sym_BSLASHsubfile] = ACTIONS(12235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12235), + [anon_sym_BSLASHbibliography] = ACTIONS(12235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12235), + [anon_sym_BSLASHincludesvg] = ACTIONS(12235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12235), + [anon_sym_BSLASHimport] = ACTIONS(12235), + [anon_sym_BSLASHsubimport] = ACTIONS(12235), + [anon_sym_BSLASHinputfrom] = ACTIONS(12235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12235), + [anon_sym_BSLASHincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHlabel] = ACTIONS(12235), + [anon_sym_BSLASHref] = ACTIONS(12235), + [anon_sym_BSLASHvref] = ACTIONS(12235), + [anon_sym_BSLASHVref] = ACTIONS(12235), + [anon_sym_BSLASHautoref] = ACTIONS(12235), + [anon_sym_BSLASHpageref] = ACTIONS(12235), + [anon_sym_BSLASHcref] = ACTIONS(12235), + [anon_sym_BSLASHCref] = ACTIONS(12235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnameCref] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHlabelcref] = ACTIONS(12235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12235), + [anon_sym_BSLASHeqref] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange] = ACTIONS(12235), + [anon_sym_BSLASHCrefrange] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewlabel] = ACTIONS(12235), + [anon_sym_BSLASHnewcommand] = ACTIONS(12235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12235), + [anon_sym_BSLASHgls] = ACTIONS(12235), + [anon_sym_BSLASHGls] = ACTIONS(12235), + [anon_sym_BSLASHGLS] = ACTIONS(12235), + [anon_sym_BSLASHglspl] = ACTIONS(12235), + [anon_sym_BSLASHGlspl] = ACTIONS(12235), + [anon_sym_BSLASHGLSpl] = ACTIONS(12235), + [anon_sym_BSLASHglsdisp] = ACTIONS(12235), + [anon_sym_BSLASHglslink] = ACTIONS(12235), + [anon_sym_BSLASHglstext] = ACTIONS(12235), + [anon_sym_BSLASHGlstext] = ACTIONS(12235), + [anon_sym_BSLASHGLStext] = ACTIONS(12235), + [anon_sym_BSLASHglsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12235), + [anon_sym_BSLASHglsplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSplural] = ACTIONS(12235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHglsname] = ACTIONS(12235), + [anon_sym_BSLASHGlsname] = ACTIONS(12235), + [anon_sym_BSLASHGLSname] = ACTIONS(12235), + [anon_sym_BSLASHglssymbol] = ACTIONS(12235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12235), + [anon_sym_BSLASHglsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12235), + [anon_sym_BSLASHglsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12235), + [anon_sym_BSLASHglsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12235), + [anon_sym_BSLASHglsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12235), + [anon_sym_BSLASHglsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12235), + [anon_sym_BSLASHnewacronym] = ACTIONS(12235), + [anon_sym_BSLASHacrshort] = ACTIONS(12235), + [anon_sym_BSLASHAcrshort] = ACTIONS(12235), + [anon_sym_BSLASHACRshort] = ACTIONS(12235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12235), + [anon_sym_BSLASHacrlong] = ACTIONS(12235), + [anon_sym_BSLASHAcrlong] = ACTIONS(12235), + [anon_sym_BSLASHACRlong] = ACTIONS(12235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12235), + [anon_sym_BSLASHacrfull] = ACTIONS(12235), + [anon_sym_BSLASHAcrfull] = ACTIONS(12235), + [anon_sym_BSLASHACRfull] = ACTIONS(12235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12235), + [anon_sym_BSLASHacs] = ACTIONS(12235), + [anon_sym_BSLASHAcs] = ACTIONS(12235), + [anon_sym_BSLASHacsp] = ACTIONS(12235), + [anon_sym_BSLASHAcsp] = ACTIONS(12235), + [anon_sym_BSLASHacl] = ACTIONS(12235), + [anon_sym_BSLASHAcl] = ACTIONS(12235), + [anon_sym_BSLASHaclp] = ACTIONS(12235), + [anon_sym_BSLASHAclp] = ACTIONS(12235), + [anon_sym_BSLASHacf] = ACTIONS(12235), + [anon_sym_BSLASHAcf] = ACTIONS(12235), + [anon_sym_BSLASHacfp] = ACTIONS(12235), + [anon_sym_BSLASHAcfp] = ACTIONS(12235), + [anon_sym_BSLASHac] = ACTIONS(12235), + [anon_sym_BSLASHAc] = ACTIONS(12235), + [anon_sym_BSLASHacp] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12235), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12235), + [anon_sym_BSLASHcolor] = ACTIONS(12235), + [anon_sym_BSLASHcolorbox] = ACTIONS(12235), + [anon_sym_BSLASHtextcolor] = ACTIONS(12235), + [anon_sym_BSLASHpagecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12235), + }, + [993] = { + [sym_generic_command_name] = ACTIONS(12239), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12239), + [aux_sym_section_token1] = ACTIONS(12239), + [aux_sym_subsection_token1] = ACTIONS(12239), + [aux_sym_subsubsection_token1] = ACTIONS(12239), + [aux_sym_paragraph_token1] = ACTIONS(12239), + [aux_sym_subparagraph_token1] = ACTIONS(12239), + [anon_sym_BSLASHitem] = ACTIONS(12239), + [anon_sym_LBRACK] = ACTIONS(12237), + [anon_sym_RBRACK] = ACTIONS(12237), + [anon_sym_LBRACE] = ACTIONS(12237), + [anon_sym_RBRACE] = ACTIONS(12237), + [anon_sym_LPAREN] = ACTIONS(12237), + [anon_sym_COMMA] = ACTIONS(12237), + [anon_sym_EQ] = ACTIONS(12237), + [sym_word] = ACTIONS(12237), + [sym_param] = ACTIONS(12237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12237), + [anon_sym_DOLLAR] = ACTIONS(12239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12237), + [anon_sym_BSLASHbegin] = ACTIONS(12239), + [anon_sym_BSLASHcaption] = ACTIONS(12239), + [anon_sym_BSLASHcite] = ACTIONS(12239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCite] = ACTIONS(12239), + [anon_sym_BSLASHnocite] = ACTIONS(12239), + [anon_sym_BSLASHcitet] = ACTIONS(12239), + [anon_sym_BSLASHcitep] = ACTIONS(12239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteauthor] = ACTIONS(12239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitetitle] = ACTIONS(12239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteyear] = ACTIONS(12239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitedate] = ACTIONS(12239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteurl] = ACTIONS(12239), + [anon_sym_BSLASHfullcite] = ACTIONS(12239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12239), + [anon_sym_BSLASHcitealt] = ACTIONS(12239), + [anon_sym_BSLASHcitealp] = ACTIONS(12239), + [anon_sym_BSLASHcitetext] = ACTIONS(12239), + [anon_sym_BSLASHparencite] = ACTIONS(12239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHParencite] = ACTIONS(12239), + [anon_sym_BSLASHfootcite] = ACTIONS(12239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12239), + [anon_sym_BSLASHtextcite] = ACTIONS(12239), + [anon_sym_BSLASHTextcite] = ACTIONS(12239), + [anon_sym_BSLASHsmartcite] = ACTIONS(12239), + [anon_sym_BSLASHSmartcite] = ACTIONS(12239), + [anon_sym_BSLASHsupercite] = ACTIONS(12239), + [anon_sym_BSLASHautocite] = ACTIONS(12239), + [anon_sym_BSLASHAutocite] = ACTIONS(12239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHvolcite] = ACTIONS(12239), + [anon_sym_BSLASHVolcite] = ACTIONS(12239), + [anon_sym_BSLASHpvolcite] = ACTIONS(12239), + [anon_sym_BSLASHPvolcite] = ACTIONS(12239), + [anon_sym_BSLASHfvolcite] = ACTIONS(12239), + [anon_sym_BSLASHftvolcite] = ACTIONS(12239), + [anon_sym_BSLASHsvolcite] = ACTIONS(12239), + [anon_sym_BSLASHSvolcite] = ACTIONS(12239), + [anon_sym_BSLASHtvolcite] = ACTIONS(12239), + [anon_sym_BSLASHTvolcite] = ACTIONS(12239), + [anon_sym_BSLASHavolcite] = ACTIONS(12239), + [anon_sym_BSLASHAvolcite] = ACTIONS(12239), + [anon_sym_BSLASHnotecite] = ACTIONS(12239), + [anon_sym_BSLASHpnotecite] = ACTIONS(12239), + [anon_sym_BSLASHPnotecite] = ACTIONS(12239), + [anon_sym_BSLASHfnotecite] = ACTIONS(12239), + [anon_sym_BSLASHusepackage] = ACTIONS(12239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12239), + [anon_sym_BSLASHinclude] = ACTIONS(12239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12239), + [anon_sym_BSLASHinput] = ACTIONS(12239), + [anon_sym_BSLASHsubfile] = ACTIONS(12239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12239), + [anon_sym_BSLASHbibliography] = ACTIONS(12239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12239), + [anon_sym_BSLASHincludesvg] = ACTIONS(12239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12239), + [anon_sym_BSLASHimport] = ACTIONS(12239), + [anon_sym_BSLASHsubimport] = ACTIONS(12239), + [anon_sym_BSLASHinputfrom] = ACTIONS(12239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12239), + [anon_sym_BSLASHincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHlabel] = ACTIONS(12239), + [anon_sym_BSLASHref] = ACTIONS(12239), + [anon_sym_BSLASHvref] = ACTIONS(12239), + [anon_sym_BSLASHVref] = ACTIONS(12239), + [anon_sym_BSLASHautoref] = ACTIONS(12239), + [anon_sym_BSLASHpageref] = ACTIONS(12239), + [anon_sym_BSLASHcref] = ACTIONS(12239), + [anon_sym_BSLASHCref] = ACTIONS(12239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnameCref] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHlabelcref] = ACTIONS(12239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12239), + [anon_sym_BSLASHeqref] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange] = ACTIONS(12239), + [anon_sym_BSLASHCrefrange] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewlabel] = ACTIONS(12239), + [anon_sym_BSLASHnewcommand] = ACTIONS(12239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12239), + [anon_sym_BSLASHgls] = ACTIONS(12239), + [anon_sym_BSLASHGls] = ACTIONS(12239), + [anon_sym_BSLASHGLS] = ACTIONS(12239), + [anon_sym_BSLASHglspl] = ACTIONS(12239), + [anon_sym_BSLASHGlspl] = ACTIONS(12239), + [anon_sym_BSLASHGLSpl] = ACTIONS(12239), + [anon_sym_BSLASHglsdisp] = ACTIONS(12239), + [anon_sym_BSLASHglslink] = ACTIONS(12239), + [anon_sym_BSLASHglstext] = ACTIONS(12239), + [anon_sym_BSLASHGlstext] = ACTIONS(12239), + [anon_sym_BSLASHGLStext] = ACTIONS(12239), + [anon_sym_BSLASHglsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12239), + [anon_sym_BSLASHglsplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSplural] = ACTIONS(12239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHglsname] = ACTIONS(12239), + [anon_sym_BSLASHGlsname] = ACTIONS(12239), + [anon_sym_BSLASHGLSname] = ACTIONS(12239), + [anon_sym_BSLASHglssymbol] = ACTIONS(12239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12239), + [anon_sym_BSLASHglsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12239), + [anon_sym_BSLASHglsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12239), + [anon_sym_BSLASHglsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12239), + [anon_sym_BSLASHglsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12239), + [anon_sym_BSLASHglsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12239), + [anon_sym_BSLASHnewacronym] = ACTIONS(12239), + [anon_sym_BSLASHacrshort] = ACTIONS(12239), + [anon_sym_BSLASHAcrshort] = ACTIONS(12239), + [anon_sym_BSLASHACRshort] = ACTIONS(12239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12239), + [anon_sym_BSLASHacrlong] = ACTIONS(12239), + [anon_sym_BSLASHAcrlong] = ACTIONS(12239), + [anon_sym_BSLASHACRlong] = ACTIONS(12239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12239), + [anon_sym_BSLASHacrfull] = ACTIONS(12239), + [anon_sym_BSLASHAcrfull] = ACTIONS(12239), + [anon_sym_BSLASHACRfull] = ACTIONS(12239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12239), + [anon_sym_BSLASHacs] = ACTIONS(12239), + [anon_sym_BSLASHAcs] = ACTIONS(12239), + [anon_sym_BSLASHacsp] = ACTIONS(12239), + [anon_sym_BSLASHAcsp] = ACTIONS(12239), + [anon_sym_BSLASHacl] = ACTIONS(12239), + [anon_sym_BSLASHAcl] = ACTIONS(12239), + [anon_sym_BSLASHaclp] = ACTIONS(12239), + [anon_sym_BSLASHAclp] = ACTIONS(12239), + [anon_sym_BSLASHacf] = ACTIONS(12239), + [anon_sym_BSLASHAcf] = ACTIONS(12239), + [anon_sym_BSLASHacfp] = ACTIONS(12239), + [anon_sym_BSLASHAcfp] = ACTIONS(12239), + [anon_sym_BSLASHac] = ACTIONS(12239), + [anon_sym_BSLASHAc] = ACTIONS(12239), + [anon_sym_BSLASHacp] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12239), + [anon_sym_BSLASHcolor] = ACTIONS(12239), + [anon_sym_BSLASHcolorbox] = ACTIONS(12239), + [anon_sym_BSLASHtextcolor] = ACTIONS(12239), + [anon_sym_BSLASHpagecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12239), + }, + [994] = { + [sym_generic_command_name] = ACTIONS(12243), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12243), + [aux_sym_section_token1] = ACTIONS(12243), + [aux_sym_subsection_token1] = ACTIONS(12243), + [aux_sym_subsubsection_token1] = ACTIONS(12243), + [aux_sym_paragraph_token1] = ACTIONS(12243), + [aux_sym_subparagraph_token1] = ACTIONS(12243), + [anon_sym_BSLASHitem] = ACTIONS(12243), + [anon_sym_LBRACK] = ACTIONS(12241), + [anon_sym_RBRACK] = ACTIONS(12241), + [anon_sym_LBRACE] = ACTIONS(12241), + [anon_sym_RBRACE] = ACTIONS(12241), + [anon_sym_LPAREN] = ACTIONS(12241), + [anon_sym_COMMA] = ACTIONS(12241), + [anon_sym_EQ] = ACTIONS(12241), + [sym_word] = ACTIONS(12241), + [sym_param] = ACTIONS(12241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12241), + [anon_sym_DOLLAR] = ACTIONS(12243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12241), + [anon_sym_BSLASHbegin] = ACTIONS(12243), + [anon_sym_BSLASHcaption] = ACTIONS(12243), + [anon_sym_BSLASHcite] = ACTIONS(12243), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCite] = ACTIONS(12243), + [anon_sym_BSLASHnocite] = ACTIONS(12243), + [anon_sym_BSLASHcitet] = ACTIONS(12243), + [anon_sym_BSLASHcitep] = ACTIONS(12243), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteauthor] = ACTIONS(12243), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12243), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitetitle] = ACTIONS(12243), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteyear] = ACTIONS(12243), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitedate] = ACTIONS(12243), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteurl] = ACTIONS(12243), + [anon_sym_BSLASHfullcite] = ACTIONS(12243), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12243), + [anon_sym_BSLASHcitealt] = ACTIONS(12243), + [anon_sym_BSLASHcitealp] = ACTIONS(12243), + [anon_sym_BSLASHcitetext] = ACTIONS(12243), + [anon_sym_BSLASHparencite] = ACTIONS(12243), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHParencite] = ACTIONS(12243), + [anon_sym_BSLASHfootcite] = ACTIONS(12243), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12243), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12243), + [anon_sym_BSLASHtextcite] = ACTIONS(12243), + [anon_sym_BSLASHTextcite] = ACTIONS(12243), + [anon_sym_BSLASHsmartcite] = ACTIONS(12243), + [anon_sym_BSLASHSmartcite] = ACTIONS(12243), + [anon_sym_BSLASHsupercite] = ACTIONS(12243), + [anon_sym_BSLASHautocite] = ACTIONS(12243), + [anon_sym_BSLASHAutocite] = ACTIONS(12243), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHvolcite] = ACTIONS(12243), + [anon_sym_BSLASHVolcite] = ACTIONS(12243), + [anon_sym_BSLASHpvolcite] = ACTIONS(12243), + [anon_sym_BSLASHPvolcite] = ACTIONS(12243), + [anon_sym_BSLASHfvolcite] = ACTIONS(12243), + [anon_sym_BSLASHftvolcite] = ACTIONS(12243), + [anon_sym_BSLASHsvolcite] = ACTIONS(12243), + [anon_sym_BSLASHSvolcite] = ACTIONS(12243), + [anon_sym_BSLASHtvolcite] = ACTIONS(12243), + [anon_sym_BSLASHTvolcite] = ACTIONS(12243), + [anon_sym_BSLASHavolcite] = ACTIONS(12243), + [anon_sym_BSLASHAvolcite] = ACTIONS(12243), + [anon_sym_BSLASHnotecite] = ACTIONS(12243), + [anon_sym_BSLASHpnotecite] = ACTIONS(12243), + [anon_sym_BSLASHPnotecite] = ACTIONS(12243), + [anon_sym_BSLASHfnotecite] = ACTIONS(12243), + [anon_sym_BSLASHusepackage] = ACTIONS(12243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12243), + [anon_sym_BSLASHinclude] = ACTIONS(12243), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12243), + [anon_sym_BSLASHinput] = ACTIONS(12243), + [anon_sym_BSLASHsubfile] = ACTIONS(12243), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12243), + [anon_sym_BSLASHbibliography] = ACTIONS(12243), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12243), + [anon_sym_BSLASHincludesvg] = ACTIONS(12243), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12243), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12243), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12243), + [anon_sym_BSLASHimport] = ACTIONS(12243), + [anon_sym_BSLASHsubimport] = ACTIONS(12243), + [anon_sym_BSLASHinputfrom] = ACTIONS(12243), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12243), + [anon_sym_BSLASHincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHlabel] = ACTIONS(12243), + [anon_sym_BSLASHref] = ACTIONS(12243), + [anon_sym_BSLASHvref] = ACTIONS(12243), + [anon_sym_BSLASHVref] = ACTIONS(12243), + [anon_sym_BSLASHautoref] = ACTIONS(12243), + [anon_sym_BSLASHpageref] = ACTIONS(12243), + [anon_sym_BSLASHcref] = ACTIONS(12243), + [anon_sym_BSLASHCref] = ACTIONS(12243), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnameCref] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHlabelcref] = ACTIONS(12243), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12243), + [anon_sym_BSLASHeqref] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange] = ACTIONS(12243), + [anon_sym_BSLASHCrefrange] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewlabel] = ACTIONS(12243), + [anon_sym_BSLASHnewcommand] = ACTIONS(12243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12243), + [anon_sym_BSLASHgls] = ACTIONS(12243), + [anon_sym_BSLASHGls] = ACTIONS(12243), + [anon_sym_BSLASHGLS] = ACTIONS(12243), + [anon_sym_BSLASHglspl] = ACTIONS(12243), + [anon_sym_BSLASHGlspl] = ACTIONS(12243), + [anon_sym_BSLASHGLSpl] = ACTIONS(12243), + [anon_sym_BSLASHglsdisp] = ACTIONS(12243), + [anon_sym_BSLASHglslink] = ACTIONS(12243), + [anon_sym_BSLASHglstext] = ACTIONS(12243), + [anon_sym_BSLASHGlstext] = ACTIONS(12243), + [anon_sym_BSLASHGLStext] = ACTIONS(12243), + [anon_sym_BSLASHglsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12243), + [anon_sym_BSLASHglsplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSplural] = ACTIONS(12243), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHglsname] = ACTIONS(12243), + [anon_sym_BSLASHGlsname] = ACTIONS(12243), + [anon_sym_BSLASHGLSname] = ACTIONS(12243), + [anon_sym_BSLASHglssymbol] = ACTIONS(12243), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12243), + [anon_sym_BSLASHglsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12243), + [anon_sym_BSLASHglsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12243), + [anon_sym_BSLASHglsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12243), + [anon_sym_BSLASHglsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12243), + [anon_sym_BSLASHglsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12243), + [anon_sym_BSLASHnewacronym] = ACTIONS(12243), + [anon_sym_BSLASHacrshort] = ACTIONS(12243), + [anon_sym_BSLASHAcrshort] = ACTIONS(12243), + [anon_sym_BSLASHACRshort] = ACTIONS(12243), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12243), + [anon_sym_BSLASHacrlong] = ACTIONS(12243), + [anon_sym_BSLASHAcrlong] = ACTIONS(12243), + [anon_sym_BSLASHACRlong] = ACTIONS(12243), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12243), + [anon_sym_BSLASHacrfull] = ACTIONS(12243), + [anon_sym_BSLASHAcrfull] = ACTIONS(12243), + [anon_sym_BSLASHACRfull] = ACTIONS(12243), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12243), + [anon_sym_BSLASHacs] = ACTIONS(12243), + [anon_sym_BSLASHAcs] = ACTIONS(12243), + [anon_sym_BSLASHacsp] = ACTIONS(12243), + [anon_sym_BSLASHAcsp] = ACTIONS(12243), + [anon_sym_BSLASHacl] = ACTIONS(12243), + [anon_sym_BSLASHAcl] = ACTIONS(12243), + [anon_sym_BSLASHaclp] = ACTIONS(12243), + [anon_sym_BSLASHAclp] = ACTIONS(12243), + [anon_sym_BSLASHacf] = ACTIONS(12243), + [anon_sym_BSLASHAcf] = ACTIONS(12243), + [anon_sym_BSLASHacfp] = ACTIONS(12243), + [anon_sym_BSLASHAcfp] = ACTIONS(12243), + [anon_sym_BSLASHac] = ACTIONS(12243), + [anon_sym_BSLASHAc] = ACTIONS(12243), + [anon_sym_BSLASHacp] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12243), + [anon_sym_BSLASHcolor] = ACTIONS(12243), + [anon_sym_BSLASHcolorbox] = ACTIONS(12243), + [anon_sym_BSLASHtextcolor] = ACTIONS(12243), + [anon_sym_BSLASHpagecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12243), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12243), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12243), + }, + [995] = { + [sym_generic_command_name] = ACTIONS(12247), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12247), + [aux_sym_section_token1] = ACTIONS(12247), + [aux_sym_subsection_token1] = ACTIONS(12247), + [aux_sym_subsubsection_token1] = ACTIONS(12247), + [aux_sym_paragraph_token1] = ACTIONS(12247), + [aux_sym_subparagraph_token1] = ACTIONS(12247), + [anon_sym_BSLASHitem] = ACTIONS(12247), + [anon_sym_LBRACK] = ACTIONS(12245), + [anon_sym_RBRACK] = ACTIONS(12245), + [anon_sym_LBRACE] = ACTIONS(12245), + [anon_sym_RBRACE] = ACTIONS(12245), + [anon_sym_LPAREN] = ACTIONS(12245), + [anon_sym_COMMA] = ACTIONS(12245), + [anon_sym_EQ] = ACTIONS(12245), + [sym_word] = ACTIONS(12245), + [sym_param] = ACTIONS(12245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12245), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12245), + [anon_sym_DOLLAR] = ACTIONS(12247), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12245), + [anon_sym_BSLASHbegin] = ACTIONS(12247), + [anon_sym_BSLASHcaption] = ACTIONS(12247), + [anon_sym_BSLASHcite] = ACTIONS(12247), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCite] = ACTIONS(12247), + [anon_sym_BSLASHnocite] = ACTIONS(12247), + [anon_sym_BSLASHcitet] = ACTIONS(12247), + [anon_sym_BSLASHcitep] = ACTIONS(12247), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteauthor] = ACTIONS(12247), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12247), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitetitle] = ACTIONS(12247), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteyear] = ACTIONS(12247), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitedate] = ACTIONS(12247), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteurl] = ACTIONS(12247), + [anon_sym_BSLASHfullcite] = ACTIONS(12247), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12247), + [anon_sym_BSLASHcitealt] = ACTIONS(12247), + [anon_sym_BSLASHcitealp] = ACTIONS(12247), + [anon_sym_BSLASHcitetext] = ACTIONS(12247), + [anon_sym_BSLASHparencite] = ACTIONS(12247), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHParencite] = ACTIONS(12247), + [anon_sym_BSLASHfootcite] = ACTIONS(12247), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12247), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12247), + [anon_sym_BSLASHtextcite] = ACTIONS(12247), + [anon_sym_BSLASHTextcite] = ACTIONS(12247), + [anon_sym_BSLASHsmartcite] = ACTIONS(12247), + [anon_sym_BSLASHSmartcite] = ACTIONS(12247), + [anon_sym_BSLASHsupercite] = ACTIONS(12247), + [anon_sym_BSLASHautocite] = ACTIONS(12247), + [anon_sym_BSLASHAutocite] = ACTIONS(12247), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHvolcite] = ACTIONS(12247), + [anon_sym_BSLASHVolcite] = ACTIONS(12247), + [anon_sym_BSLASHpvolcite] = ACTIONS(12247), + [anon_sym_BSLASHPvolcite] = ACTIONS(12247), + [anon_sym_BSLASHfvolcite] = ACTIONS(12247), + [anon_sym_BSLASHftvolcite] = ACTIONS(12247), + [anon_sym_BSLASHsvolcite] = ACTIONS(12247), + [anon_sym_BSLASHSvolcite] = ACTIONS(12247), + [anon_sym_BSLASHtvolcite] = ACTIONS(12247), + [anon_sym_BSLASHTvolcite] = ACTIONS(12247), + [anon_sym_BSLASHavolcite] = ACTIONS(12247), + [anon_sym_BSLASHAvolcite] = ACTIONS(12247), + [anon_sym_BSLASHnotecite] = ACTIONS(12247), + [anon_sym_BSLASHpnotecite] = ACTIONS(12247), + [anon_sym_BSLASHPnotecite] = ACTIONS(12247), + [anon_sym_BSLASHfnotecite] = ACTIONS(12247), + [anon_sym_BSLASHusepackage] = ACTIONS(12247), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12247), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12247), + [anon_sym_BSLASHinclude] = ACTIONS(12247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12247), + [anon_sym_BSLASHinput] = ACTIONS(12247), + [anon_sym_BSLASHsubfile] = ACTIONS(12247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12247), + [anon_sym_BSLASHbibliography] = ACTIONS(12247), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12247), + [anon_sym_BSLASHincludesvg] = ACTIONS(12247), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12247), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12247), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12247), + [anon_sym_BSLASHimport] = ACTIONS(12247), + [anon_sym_BSLASHsubimport] = ACTIONS(12247), + [anon_sym_BSLASHinputfrom] = ACTIONS(12247), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12247), + [anon_sym_BSLASHincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHlabel] = ACTIONS(12247), + [anon_sym_BSLASHref] = ACTIONS(12247), + [anon_sym_BSLASHvref] = ACTIONS(12247), + [anon_sym_BSLASHVref] = ACTIONS(12247), + [anon_sym_BSLASHautoref] = ACTIONS(12247), + [anon_sym_BSLASHpageref] = ACTIONS(12247), + [anon_sym_BSLASHcref] = ACTIONS(12247), + [anon_sym_BSLASHCref] = ACTIONS(12247), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnameCref] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHlabelcref] = ACTIONS(12247), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12247), + [anon_sym_BSLASHeqref] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange] = ACTIONS(12247), + [anon_sym_BSLASHCrefrange] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewlabel] = ACTIONS(12247), + [anon_sym_BSLASHnewcommand] = ACTIONS(12247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12247), + [anon_sym_BSLASHgls] = ACTIONS(12247), + [anon_sym_BSLASHGls] = ACTIONS(12247), + [anon_sym_BSLASHGLS] = ACTIONS(12247), + [anon_sym_BSLASHglspl] = ACTIONS(12247), + [anon_sym_BSLASHGlspl] = ACTIONS(12247), + [anon_sym_BSLASHGLSpl] = ACTIONS(12247), + [anon_sym_BSLASHglsdisp] = ACTIONS(12247), + [anon_sym_BSLASHglslink] = ACTIONS(12247), + [anon_sym_BSLASHglstext] = ACTIONS(12247), + [anon_sym_BSLASHGlstext] = ACTIONS(12247), + [anon_sym_BSLASHGLStext] = ACTIONS(12247), + [anon_sym_BSLASHglsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12247), + [anon_sym_BSLASHglsplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSplural] = ACTIONS(12247), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHglsname] = ACTIONS(12247), + [anon_sym_BSLASHGlsname] = ACTIONS(12247), + [anon_sym_BSLASHGLSname] = ACTIONS(12247), + [anon_sym_BSLASHglssymbol] = ACTIONS(12247), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12247), + [anon_sym_BSLASHglsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12247), + [anon_sym_BSLASHglsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12247), + [anon_sym_BSLASHglsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12247), + [anon_sym_BSLASHglsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12247), + [anon_sym_BSLASHglsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12247), + [anon_sym_BSLASHnewacronym] = ACTIONS(12247), + [anon_sym_BSLASHacrshort] = ACTIONS(12247), + [anon_sym_BSLASHAcrshort] = ACTIONS(12247), + [anon_sym_BSLASHACRshort] = ACTIONS(12247), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12247), + [anon_sym_BSLASHacrlong] = ACTIONS(12247), + [anon_sym_BSLASHAcrlong] = ACTIONS(12247), + [anon_sym_BSLASHACRlong] = ACTIONS(12247), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12247), + [anon_sym_BSLASHacrfull] = ACTIONS(12247), + [anon_sym_BSLASHAcrfull] = ACTIONS(12247), + [anon_sym_BSLASHACRfull] = ACTIONS(12247), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12247), + [anon_sym_BSLASHacs] = ACTIONS(12247), + [anon_sym_BSLASHAcs] = ACTIONS(12247), + [anon_sym_BSLASHacsp] = ACTIONS(12247), + [anon_sym_BSLASHAcsp] = ACTIONS(12247), + [anon_sym_BSLASHacl] = ACTIONS(12247), + [anon_sym_BSLASHAcl] = ACTIONS(12247), + [anon_sym_BSLASHaclp] = ACTIONS(12247), + [anon_sym_BSLASHAclp] = ACTIONS(12247), + [anon_sym_BSLASHacf] = ACTIONS(12247), + [anon_sym_BSLASHAcf] = ACTIONS(12247), + [anon_sym_BSLASHacfp] = ACTIONS(12247), + [anon_sym_BSLASHAcfp] = ACTIONS(12247), + [anon_sym_BSLASHac] = ACTIONS(12247), + [anon_sym_BSLASHAc] = ACTIONS(12247), + [anon_sym_BSLASHacp] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12247), + [anon_sym_BSLASHcolor] = ACTIONS(12247), + [anon_sym_BSLASHcolorbox] = ACTIONS(12247), + [anon_sym_BSLASHtextcolor] = ACTIONS(12247), + [anon_sym_BSLASHpagecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12247), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12247), + }, + [996] = { + [sym_generic_command_name] = ACTIONS(12189), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12189), + [aux_sym_section_token1] = ACTIONS(12189), + [aux_sym_subsection_token1] = ACTIONS(12189), + [aux_sym_subsubsection_token1] = ACTIONS(12189), + [aux_sym_paragraph_token1] = ACTIONS(12189), + [aux_sym_subparagraph_token1] = ACTIONS(12189), + [anon_sym_BSLASHitem] = ACTIONS(12189), + [anon_sym_LBRACK] = ACTIONS(12187), + [anon_sym_RBRACK] = ACTIONS(12187), + [anon_sym_LBRACE] = ACTIONS(12187), + [anon_sym_RBRACE] = ACTIONS(12187), + [anon_sym_LPAREN] = ACTIONS(12187), + [anon_sym_COMMA] = ACTIONS(12187), + [anon_sym_EQ] = ACTIONS(12187), + [sym_word] = ACTIONS(12187), + [sym_param] = ACTIONS(12187), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12187), + [anon_sym_DOLLAR] = ACTIONS(12189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12187), + [anon_sym_BSLASHbegin] = ACTIONS(12189), + [anon_sym_BSLASHcaption] = ACTIONS(12189), + [anon_sym_BSLASHcite] = ACTIONS(12189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCite] = ACTIONS(12189), + [anon_sym_BSLASHnocite] = ACTIONS(12189), + [anon_sym_BSLASHcitet] = ACTIONS(12189), + [anon_sym_BSLASHcitep] = ACTIONS(12189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteauthor] = ACTIONS(12189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitetitle] = ACTIONS(12189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteyear] = ACTIONS(12189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitedate] = ACTIONS(12189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteurl] = ACTIONS(12189), + [anon_sym_BSLASHfullcite] = ACTIONS(12189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12189), + [anon_sym_BSLASHcitealt] = ACTIONS(12189), + [anon_sym_BSLASHcitealp] = ACTIONS(12189), + [anon_sym_BSLASHcitetext] = ACTIONS(12189), + [anon_sym_BSLASHparencite] = ACTIONS(12189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHParencite] = ACTIONS(12189), + [anon_sym_BSLASHfootcite] = ACTIONS(12189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12189), + [anon_sym_BSLASHtextcite] = ACTIONS(12189), + [anon_sym_BSLASHTextcite] = ACTIONS(12189), + [anon_sym_BSLASHsmartcite] = ACTIONS(12189), + [anon_sym_BSLASHSmartcite] = ACTIONS(12189), + [anon_sym_BSLASHsupercite] = ACTIONS(12189), + [anon_sym_BSLASHautocite] = ACTIONS(12189), + [anon_sym_BSLASHAutocite] = ACTIONS(12189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHvolcite] = ACTIONS(12189), + [anon_sym_BSLASHVolcite] = ACTIONS(12189), + [anon_sym_BSLASHpvolcite] = ACTIONS(12189), + [anon_sym_BSLASHPvolcite] = ACTIONS(12189), + [anon_sym_BSLASHfvolcite] = ACTIONS(12189), + [anon_sym_BSLASHftvolcite] = ACTIONS(12189), + [anon_sym_BSLASHsvolcite] = ACTIONS(12189), + [anon_sym_BSLASHSvolcite] = ACTIONS(12189), + [anon_sym_BSLASHtvolcite] = ACTIONS(12189), + [anon_sym_BSLASHTvolcite] = ACTIONS(12189), + [anon_sym_BSLASHavolcite] = ACTIONS(12189), + [anon_sym_BSLASHAvolcite] = ACTIONS(12189), + [anon_sym_BSLASHnotecite] = ACTIONS(12189), + [anon_sym_BSLASHpnotecite] = ACTIONS(12189), + [anon_sym_BSLASHPnotecite] = ACTIONS(12189), + [anon_sym_BSLASHfnotecite] = ACTIONS(12189), + [anon_sym_BSLASHusepackage] = ACTIONS(12189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12189), + [anon_sym_BSLASHinclude] = ACTIONS(12189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12189), + [anon_sym_BSLASHinput] = ACTIONS(12189), + [anon_sym_BSLASHsubfile] = ACTIONS(12189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12189), + [anon_sym_BSLASHbibliography] = ACTIONS(12189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12189), + [anon_sym_BSLASHincludesvg] = ACTIONS(12189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12189), + [anon_sym_BSLASHimport] = ACTIONS(12189), + [anon_sym_BSLASHsubimport] = ACTIONS(12189), + [anon_sym_BSLASHinputfrom] = ACTIONS(12189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12189), + [anon_sym_BSLASHincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHlabel] = ACTIONS(12189), + [anon_sym_BSLASHref] = ACTIONS(12189), + [anon_sym_BSLASHvref] = ACTIONS(12189), + [anon_sym_BSLASHVref] = ACTIONS(12189), + [anon_sym_BSLASHautoref] = ACTIONS(12189), + [anon_sym_BSLASHpageref] = ACTIONS(12189), + [anon_sym_BSLASHcref] = ACTIONS(12189), + [anon_sym_BSLASHCref] = ACTIONS(12189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnameCref] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHlabelcref] = ACTIONS(12189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12189), + [anon_sym_BSLASHeqref] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange] = ACTIONS(12189), + [anon_sym_BSLASHCrefrange] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewlabel] = ACTIONS(12189), + [anon_sym_BSLASHnewcommand] = ACTIONS(12189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12189), + [anon_sym_BSLASHgls] = ACTIONS(12189), + [anon_sym_BSLASHGls] = ACTIONS(12189), + [anon_sym_BSLASHGLS] = ACTIONS(12189), + [anon_sym_BSLASHglspl] = ACTIONS(12189), + [anon_sym_BSLASHGlspl] = ACTIONS(12189), + [anon_sym_BSLASHGLSpl] = ACTIONS(12189), + [anon_sym_BSLASHglsdisp] = ACTIONS(12189), + [anon_sym_BSLASHglslink] = ACTIONS(12189), + [anon_sym_BSLASHglstext] = ACTIONS(12189), + [anon_sym_BSLASHGlstext] = ACTIONS(12189), + [anon_sym_BSLASHGLStext] = ACTIONS(12189), + [anon_sym_BSLASHglsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12189), + [anon_sym_BSLASHglsplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSplural] = ACTIONS(12189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHglsname] = ACTIONS(12189), + [anon_sym_BSLASHGlsname] = ACTIONS(12189), + [anon_sym_BSLASHGLSname] = ACTIONS(12189), + [anon_sym_BSLASHglssymbol] = ACTIONS(12189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12189), + [anon_sym_BSLASHglsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12189), + [anon_sym_BSLASHglsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12189), + [anon_sym_BSLASHglsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12189), + [anon_sym_BSLASHglsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12189), + [anon_sym_BSLASHglsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12189), + [anon_sym_BSLASHnewacronym] = ACTIONS(12189), + [anon_sym_BSLASHacrshort] = ACTIONS(12189), + [anon_sym_BSLASHAcrshort] = ACTIONS(12189), + [anon_sym_BSLASHACRshort] = ACTIONS(12189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12189), + [anon_sym_BSLASHacrlong] = ACTIONS(12189), + [anon_sym_BSLASHAcrlong] = ACTIONS(12189), + [anon_sym_BSLASHACRlong] = ACTIONS(12189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12189), + [anon_sym_BSLASHacrfull] = ACTIONS(12189), + [anon_sym_BSLASHAcrfull] = ACTIONS(12189), + [anon_sym_BSLASHACRfull] = ACTIONS(12189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12189), + [anon_sym_BSLASHacs] = ACTIONS(12189), + [anon_sym_BSLASHAcs] = ACTIONS(12189), + [anon_sym_BSLASHacsp] = ACTIONS(12189), + [anon_sym_BSLASHAcsp] = ACTIONS(12189), + [anon_sym_BSLASHacl] = ACTIONS(12189), + [anon_sym_BSLASHAcl] = ACTIONS(12189), + [anon_sym_BSLASHaclp] = ACTIONS(12189), + [anon_sym_BSLASHAclp] = ACTIONS(12189), + [anon_sym_BSLASHacf] = ACTIONS(12189), + [anon_sym_BSLASHAcf] = ACTIONS(12189), + [anon_sym_BSLASHacfp] = ACTIONS(12189), + [anon_sym_BSLASHAcfp] = ACTIONS(12189), + [anon_sym_BSLASHac] = ACTIONS(12189), + [anon_sym_BSLASHAc] = ACTIONS(12189), + [anon_sym_BSLASHacp] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12189), + [anon_sym_BSLASHcolor] = ACTIONS(12189), + [anon_sym_BSLASHcolorbox] = ACTIONS(12189), + [anon_sym_BSLASHtextcolor] = ACTIONS(12189), + [anon_sym_BSLASHpagecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12189), + }, + [997] = { + [sym_generic_command_name] = ACTIONS(12457), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12457), + [aux_sym_chapter_token1] = ACTIONS(12457), + [aux_sym_section_token1] = ACTIONS(12457), + [aux_sym_subsection_token1] = ACTIONS(12457), + [aux_sym_subsubsection_token1] = ACTIONS(12457), + [aux_sym_paragraph_token1] = ACTIONS(12457), + [aux_sym_subparagraph_token1] = ACTIONS(12457), + [anon_sym_BSLASHitem] = ACTIONS(12457), + [anon_sym_LBRACK] = ACTIONS(12455), + [anon_sym_LBRACE] = ACTIONS(12455), + [anon_sym_LPAREN] = ACTIONS(12455), + [anon_sym_COMMA] = ACTIONS(12455), + [anon_sym_EQ] = ACTIONS(12455), + [sym_word] = ACTIONS(12455), + [sym_param] = ACTIONS(12455), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12455), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12455), + [anon_sym_DOLLAR] = ACTIONS(12457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12455), + [anon_sym_BSLASHbegin] = ACTIONS(12457), + [anon_sym_BSLASHcaption] = ACTIONS(12457), + [anon_sym_BSLASHcite] = ACTIONS(12457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCite] = ACTIONS(12457), + [anon_sym_BSLASHnocite] = ACTIONS(12457), + [anon_sym_BSLASHcitet] = ACTIONS(12457), + [anon_sym_BSLASHcitep] = ACTIONS(12457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteauthor] = ACTIONS(12457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitetitle] = ACTIONS(12457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteyear] = ACTIONS(12457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitedate] = ACTIONS(12457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteurl] = ACTIONS(12457), + [anon_sym_BSLASHfullcite] = ACTIONS(12457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12457), + [anon_sym_BSLASHcitealt] = ACTIONS(12457), + [anon_sym_BSLASHcitealp] = ACTIONS(12457), + [anon_sym_BSLASHcitetext] = ACTIONS(12457), + [anon_sym_BSLASHparencite] = ACTIONS(12457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHParencite] = ACTIONS(12457), + [anon_sym_BSLASHfootcite] = ACTIONS(12457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12457), + [anon_sym_BSLASHtextcite] = ACTIONS(12457), + [anon_sym_BSLASHTextcite] = ACTIONS(12457), + [anon_sym_BSLASHsmartcite] = ACTIONS(12457), + [anon_sym_BSLASHSmartcite] = ACTIONS(12457), + [anon_sym_BSLASHsupercite] = ACTIONS(12457), + [anon_sym_BSLASHautocite] = ACTIONS(12457), + [anon_sym_BSLASHAutocite] = ACTIONS(12457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHvolcite] = ACTIONS(12457), + [anon_sym_BSLASHVolcite] = ACTIONS(12457), + [anon_sym_BSLASHpvolcite] = ACTIONS(12457), + [anon_sym_BSLASHPvolcite] = ACTIONS(12457), + [anon_sym_BSLASHfvolcite] = ACTIONS(12457), + [anon_sym_BSLASHftvolcite] = ACTIONS(12457), + [anon_sym_BSLASHsvolcite] = ACTIONS(12457), + [anon_sym_BSLASHSvolcite] = ACTIONS(12457), + [anon_sym_BSLASHtvolcite] = ACTIONS(12457), + [anon_sym_BSLASHTvolcite] = ACTIONS(12457), + [anon_sym_BSLASHavolcite] = ACTIONS(12457), + [anon_sym_BSLASHAvolcite] = ACTIONS(12457), + [anon_sym_BSLASHnotecite] = ACTIONS(12457), + [anon_sym_BSLASHpnotecite] = ACTIONS(12457), + [anon_sym_BSLASHPnotecite] = ACTIONS(12457), + [anon_sym_BSLASHfnotecite] = ACTIONS(12457), + [anon_sym_BSLASHusepackage] = ACTIONS(12457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12457), + [anon_sym_BSLASHinclude] = ACTIONS(12457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12457), + [anon_sym_BSLASHinput] = ACTIONS(12457), + [anon_sym_BSLASHsubfile] = ACTIONS(12457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12457), + [anon_sym_BSLASHbibliography] = ACTIONS(12457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12457), + [anon_sym_BSLASHincludesvg] = ACTIONS(12457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12457), + [anon_sym_BSLASHimport] = ACTIONS(12457), + [anon_sym_BSLASHsubimport] = ACTIONS(12457), + [anon_sym_BSLASHinputfrom] = ACTIONS(12457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12457), + [anon_sym_BSLASHincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHlabel] = ACTIONS(12457), + [anon_sym_BSLASHref] = ACTIONS(12457), + [anon_sym_BSLASHvref] = ACTIONS(12457), + [anon_sym_BSLASHVref] = ACTIONS(12457), + [anon_sym_BSLASHautoref] = ACTIONS(12457), + [anon_sym_BSLASHpageref] = ACTIONS(12457), + [anon_sym_BSLASHcref] = ACTIONS(12457), + [anon_sym_BSLASHCref] = ACTIONS(12457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnameCref] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHlabelcref] = ACTIONS(12457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12457), + [anon_sym_BSLASHeqref] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange] = ACTIONS(12457), + [anon_sym_BSLASHCrefrange] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewlabel] = ACTIONS(12457), + [anon_sym_BSLASHnewcommand] = ACTIONS(12457), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12457), + [anon_sym_BSLASHgls] = ACTIONS(12457), + [anon_sym_BSLASHGls] = ACTIONS(12457), + [anon_sym_BSLASHGLS] = ACTIONS(12457), + [anon_sym_BSLASHglspl] = ACTIONS(12457), + [anon_sym_BSLASHGlspl] = ACTIONS(12457), + [anon_sym_BSLASHGLSpl] = ACTIONS(12457), + [anon_sym_BSLASHglsdisp] = ACTIONS(12457), + [anon_sym_BSLASHglslink] = ACTIONS(12457), + [anon_sym_BSLASHglstext] = ACTIONS(12457), + [anon_sym_BSLASHGlstext] = ACTIONS(12457), + [anon_sym_BSLASHGLStext] = ACTIONS(12457), + [anon_sym_BSLASHglsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12457), + [anon_sym_BSLASHglsplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSplural] = ACTIONS(12457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHglsname] = ACTIONS(12457), + [anon_sym_BSLASHGlsname] = ACTIONS(12457), + [anon_sym_BSLASHGLSname] = ACTIONS(12457), + [anon_sym_BSLASHglssymbol] = ACTIONS(12457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12457), + [anon_sym_BSLASHglsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12457), + [anon_sym_BSLASHglsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12457), + [anon_sym_BSLASHglsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12457), + [anon_sym_BSLASHglsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12457), + [anon_sym_BSLASHglsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12457), + [anon_sym_BSLASHnewacronym] = ACTIONS(12457), + [anon_sym_BSLASHacrshort] = ACTIONS(12457), + [anon_sym_BSLASHAcrshort] = ACTIONS(12457), + [anon_sym_BSLASHACRshort] = ACTIONS(12457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12457), + [anon_sym_BSLASHacrlong] = ACTIONS(12457), + [anon_sym_BSLASHAcrlong] = ACTIONS(12457), + [anon_sym_BSLASHACRlong] = ACTIONS(12457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12457), + [anon_sym_BSLASHacrfull] = ACTIONS(12457), + [anon_sym_BSLASHAcrfull] = ACTIONS(12457), + [anon_sym_BSLASHACRfull] = ACTIONS(12457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12457), + [anon_sym_BSLASHacs] = ACTIONS(12457), + [anon_sym_BSLASHAcs] = ACTIONS(12457), + [anon_sym_BSLASHacsp] = ACTIONS(12457), + [anon_sym_BSLASHAcsp] = ACTIONS(12457), + [anon_sym_BSLASHacl] = ACTIONS(12457), + [anon_sym_BSLASHAcl] = ACTIONS(12457), + [anon_sym_BSLASHaclp] = ACTIONS(12457), + [anon_sym_BSLASHAclp] = ACTIONS(12457), + [anon_sym_BSLASHacf] = ACTIONS(12457), + [anon_sym_BSLASHAcf] = ACTIONS(12457), + [anon_sym_BSLASHacfp] = ACTIONS(12457), + [anon_sym_BSLASHAcfp] = ACTIONS(12457), + [anon_sym_BSLASHac] = ACTIONS(12457), + [anon_sym_BSLASHAc] = ACTIONS(12457), + [anon_sym_BSLASHacp] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12457), + [anon_sym_BSLASHcolor] = ACTIONS(12457), + [anon_sym_BSLASHcolorbox] = ACTIONS(12457), + [anon_sym_BSLASHtextcolor] = ACTIONS(12457), + [anon_sym_BSLASHpagecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12457), + }, + [998] = { + [sym_generic_command_name] = ACTIONS(12251), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12251), + [aux_sym_section_token1] = ACTIONS(12251), + [aux_sym_subsection_token1] = ACTIONS(12251), + [aux_sym_subsubsection_token1] = ACTIONS(12251), + [aux_sym_paragraph_token1] = ACTIONS(12251), + [aux_sym_subparagraph_token1] = ACTIONS(12251), + [anon_sym_BSLASHitem] = ACTIONS(12251), + [anon_sym_LBRACK] = ACTIONS(12249), + [anon_sym_RBRACK] = ACTIONS(12249), + [anon_sym_LBRACE] = ACTIONS(12249), + [anon_sym_RBRACE] = ACTIONS(12249), + [anon_sym_LPAREN] = ACTIONS(12249), + [anon_sym_COMMA] = ACTIONS(12249), + [anon_sym_EQ] = ACTIONS(12249), + [sym_word] = ACTIONS(12249), + [sym_param] = ACTIONS(12249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12249), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12249), + [anon_sym_DOLLAR] = ACTIONS(12251), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12249), + [anon_sym_BSLASHbegin] = ACTIONS(12251), + [anon_sym_BSLASHcaption] = ACTIONS(12251), + [anon_sym_BSLASHcite] = ACTIONS(12251), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCite] = ACTIONS(12251), + [anon_sym_BSLASHnocite] = ACTIONS(12251), + [anon_sym_BSLASHcitet] = ACTIONS(12251), + [anon_sym_BSLASHcitep] = ACTIONS(12251), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteauthor] = ACTIONS(12251), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12251), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitetitle] = ACTIONS(12251), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteyear] = ACTIONS(12251), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitedate] = ACTIONS(12251), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteurl] = ACTIONS(12251), + [anon_sym_BSLASHfullcite] = ACTIONS(12251), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12251), + [anon_sym_BSLASHcitealt] = ACTIONS(12251), + [anon_sym_BSLASHcitealp] = ACTIONS(12251), + [anon_sym_BSLASHcitetext] = ACTIONS(12251), + [anon_sym_BSLASHparencite] = ACTIONS(12251), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHParencite] = ACTIONS(12251), + [anon_sym_BSLASHfootcite] = ACTIONS(12251), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12251), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12251), + [anon_sym_BSLASHtextcite] = ACTIONS(12251), + [anon_sym_BSLASHTextcite] = ACTIONS(12251), + [anon_sym_BSLASHsmartcite] = ACTIONS(12251), + [anon_sym_BSLASHSmartcite] = ACTIONS(12251), + [anon_sym_BSLASHsupercite] = ACTIONS(12251), + [anon_sym_BSLASHautocite] = ACTIONS(12251), + [anon_sym_BSLASHAutocite] = ACTIONS(12251), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHvolcite] = ACTIONS(12251), + [anon_sym_BSLASHVolcite] = ACTIONS(12251), + [anon_sym_BSLASHpvolcite] = ACTIONS(12251), + [anon_sym_BSLASHPvolcite] = ACTIONS(12251), + [anon_sym_BSLASHfvolcite] = ACTIONS(12251), + [anon_sym_BSLASHftvolcite] = ACTIONS(12251), + [anon_sym_BSLASHsvolcite] = ACTIONS(12251), + [anon_sym_BSLASHSvolcite] = ACTIONS(12251), + [anon_sym_BSLASHtvolcite] = ACTIONS(12251), + [anon_sym_BSLASHTvolcite] = ACTIONS(12251), + [anon_sym_BSLASHavolcite] = ACTIONS(12251), + [anon_sym_BSLASHAvolcite] = ACTIONS(12251), + [anon_sym_BSLASHnotecite] = ACTIONS(12251), + [anon_sym_BSLASHpnotecite] = ACTIONS(12251), + [anon_sym_BSLASHPnotecite] = ACTIONS(12251), + [anon_sym_BSLASHfnotecite] = ACTIONS(12251), + [anon_sym_BSLASHusepackage] = ACTIONS(12251), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12251), + [anon_sym_BSLASHinclude] = ACTIONS(12251), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12251), + [anon_sym_BSLASHinput] = ACTIONS(12251), + [anon_sym_BSLASHsubfile] = ACTIONS(12251), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12251), + [anon_sym_BSLASHbibliography] = ACTIONS(12251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12251), + [anon_sym_BSLASHincludesvg] = ACTIONS(12251), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12251), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12251), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12251), + [anon_sym_BSLASHimport] = ACTIONS(12251), + [anon_sym_BSLASHsubimport] = ACTIONS(12251), + [anon_sym_BSLASHinputfrom] = ACTIONS(12251), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12251), + [anon_sym_BSLASHincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHlabel] = ACTIONS(12251), + [anon_sym_BSLASHref] = ACTIONS(12251), + [anon_sym_BSLASHvref] = ACTIONS(12251), + [anon_sym_BSLASHVref] = ACTIONS(12251), + [anon_sym_BSLASHautoref] = ACTIONS(12251), + [anon_sym_BSLASHpageref] = ACTIONS(12251), + [anon_sym_BSLASHcref] = ACTIONS(12251), + [anon_sym_BSLASHCref] = ACTIONS(12251), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnameCref] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHlabelcref] = ACTIONS(12251), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12251), + [anon_sym_BSLASHeqref] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange] = ACTIONS(12251), + [anon_sym_BSLASHCrefrange] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewlabel] = ACTIONS(12251), + [anon_sym_BSLASHnewcommand] = ACTIONS(12251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12251), + [anon_sym_BSLASHgls] = ACTIONS(12251), + [anon_sym_BSLASHGls] = ACTIONS(12251), + [anon_sym_BSLASHGLS] = ACTIONS(12251), + [anon_sym_BSLASHglspl] = ACTIONS(12251), + [anon_sym_BSLASHGlspl] = ACTIONS(12251), + [anon_sym_BSLASHGLSpl] = ACTIONS(12251), + [anon_sym_BSLASHglsdisp] = ACTIONS(12251), + [anon_sym_BSLASHglslink] = ACTIONS(12251), + [anon_sym_BSLASHglstext] = ACTIONS(12251), + [anon_sym_BSLASHGlstext] = ACTIONS(12251), + [anon_sym_BSLASHGLStext] = ACTIONS(12251), + [anon_sym_BSLASHglsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12251), + [anon_sym_BSLASHglsplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSplural] = ACTIONS(12251), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHglsname] = ACTIONS(12251), + [anon_sym_BSLASHGlsname] = ACTIONS(12251), + [anon_sym_BSLASHGLSname] = ACTIONS(12251), + [anon_sym_BSLASHglssymbol] = ACTIONS(12251), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12251), + [anon_sym_BSLASHglsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12251), + [anon_sym_BSLASHglsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12251), + [anon_sym_BSLASHglsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12251), + [anon_sym_BSLASHglsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12251), + [anon_sym_BSLASHglsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12251), + [anon_sym_BSLASHnewacronym] = ACTIONS(12251), + [anon_sym_BSLASHacrshort] = ACTIONS(12251), + [anon_sym_BSLASHAcrshort] = ACTIONS(12251), + [anon_sym_BSLASHACRshort] = ACTIONS(12251), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12251), + [anon_sym_BSLASHacrlong] = ACTIONS(12251), + [anon_sym_BSLASHAcrlong] = ACTIONS(12251), + [anon_sym_BSLASHACRlong] = ACTIONS(12251), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12251), + [anon_sym_BSLASHacrfull] = ACTIONS(12251), + [anon_sym_BSLASHAcrfull] = ACTIONS(12251), + [anon_sym_BSLASHACRfull] = ACTIONS(12251), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12251), + [anon_sym_BSLASHacs] = ACTIONS(12251), + [anon_sym_BSLASHAcs] = ACTIONS(12251), + [anon_sym_BSLASHacsp] = ACTIONS(12251), + [anon_sym_BSLASHAcsp] = ACTIONS(12251), + [anon_sym_BSLASHacl] = ACTIONS(12251), + [anon_sym_BSLASHAcl] = ACTIONS(12251), + [anon_sym_BSLASHaclp] = ACTIONS(12251), + [anon_sym_BSLASHAclp] = ACTIONS(12251), + [anon_sym_BSLASHacf] = ACTIONS(12251), + [anon_sym_BSLASHAcf] = ACTIONS(12251), + [anon_sym_BSLASHacfp] = ACTIONS(12251), + [anon_sym_BSLASHAcfp] = ACTIONS(12251), + [anon_sym_BSLASHac] = ACTIONS(12251), + [anon_sym_BSLASHAc] = ACTIONS(12251), + [anon_sym_BSLASHacp] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12251), + [anon_sym_BSLASHcolor] = ACTIONS(12251), + [anon_sym_BSLASHcolorbox] = ACTIONS(12251), + [anon_sym_BSLASHtextcolor] = ACTIONS(12251), + [anon_sym_BSLASHpagecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12251), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12251), + }, + [999] = { + [sym_generic_command_name] = ACTIONS(12259), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12259), + [aux_sym_section_token1] = ACTIONS(12259), + [aux_sym_subsection_token1] = ACTIONS(12259), + [aux_sym_subsubsection_token1] = ACTIONS(12259), + [aux_sym_paragraph_token1] = ACTIONS(12259), + [aux_sym_subparagraph_token1] = ACTIONS(12259), + [anon_sym_BSLASHitem] = ACTIONS(12259), + [anon_sym_LBRACK] = ACTIONS(12257), + [anon_sym_RBRACK] = ACTIONS(12257), + [anon_sym_LBRACE] = ACTIONS(12257), + [anon_sym_RBRACE] = ACTIONS(12257), + [anon_sym_LPAREN] = ACTIONS(12257), + [anon_sym_COMMA] = ACTIONS(12257), + [anon_sym_EQ] = ACTIONS(12257), + [sym_word] = ACTIONS(12257), + [sym_param] = ACTIONS(12257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12257), + [anon_sym_DOLLAR] = ACTIONS(12259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12257), + [anon_sym_BSLASHbegin] = ACTIONS(12259), + [anon_sym_BSLASHcaption] = ACTIONS(12259), + [anon_sym_BSLASHcite] = ACTIONS(12259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCite] = ACTIONS(12259), + [anon_sym_BSLASHnocite] = ACTIONS(12259), + [anon_sym_BSLASHcitet] = ACTIONS(12259), + [anon_sym_BSLASHcitep] = ACTIONS(12259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteauthor] = ACTIONS(12259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitetitle] = ACTIONS(12259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteyear] = ACTIONS(12259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitedate] = ACTIONS(12259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteurl] = ACTIONS(12259), + [anon_sym_BSLASHfullcite] = ACTIONS(12259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12259), + [anon_sym_BSLASHcitealt] = ACTIONS(12259), + [anon_sym_BSLASHcitealp] = ACTIONS(12259), + [anon_sym_BSLASHcitetext] = ACTIONS(12259), + [anon_sym_BSLASHparencite] = ACTIONS(12259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHParencite] = ACTIONS(12259), + [anon_sym_BSLASHfootcite] = ACTIONS(12259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12259), + [anon_sym_BSLASHtextcite] = ACTIONS(12259), + [anon_sym_BSLASHTextcite] = ACTIONS(12259), + [anon_sym_BSLASHsmartcite] = ACTIONS(12259), + [anon_sym_BSLASHSmartcite] = ACTIONS(12259), + [anon_sym_BSLASHsupercite] = ACTIONS(12259), + [anon_sym_BSLASHautocite] = ACTIONS(12259), + [anon_sym_BSLASHAutocite] = ACTIONS(12259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHvolcite] = ACTIONS(12259), + [anon_sym_BSLASHVolcite] = ACTIONS(12259), + [anon_sym_BSLASHpvolcite] = ACTIONS(12259), + [anon_sym_BSLASHPvolcite] = ACTIONS(12259), + [anon_sym_BSLASHfvolcite] = ACTIONS(12259), + [anon_sym_BSLASHftvolcite] = ACTIONS(12259), + [anon_sym_BSLASHsvolcite] = ACTIONS(12259), + [anon_sym_BSLASHSvolcite] = ACTIONS(12259), + [anon_sym_BSLASHtvolcite] = ACTIONS(12259), + [anon_sym_BSLASHTvolcite] = ACTIONS(12259), + [anon_sym_BSLASHavolcite] = ACTIONS(12259), + [anon_sym_BSLASHAvolcite] = ACTIONS(12259), + [anon_sym_BSLASHnotecite] = ACTIONS(12259), + [anon_sym_BSLASHpnotecite] = ACTIONS(12259), + [anon_sym_BSLASHPnotecite] = ACTIONS(12259), + [anon_sym_BSLASHfnotecite] = ACTIONS(12259), + [anon_sym_BSLASHusepackage] = ACTIONS(12259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12259), + [anon_sym_BSLASHinclude] = ACTIONS(12259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12259), + [anon_sym_BSLASHinput] = ACTIONS(12259), + [anon_sym_BSLASHsubfile] = ACTIONS(12259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12259), + [anon_sym_BSLASHbibliography] = ACTIONS(12259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12259), + [anon_sym_BSLASHincludesvg] = ACTIONS(12259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12259), + [anon_sym_BSLASHimport] = ACTIONS(12259), + [anon_sym_BSLASHsubimport] = ACTIONS(12259), + [anon_sym_BSLASHinputfrom] = ACTIONS(12259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12259), + [anon_sym_BSLASHincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHlabel] = ACTIONS(12259), + [anon_sym_BSLASHref] = ACTIONS(12259), + [anon_sym_BSLASHvref] = ACTIONS(12259), + [anon_sym_BSLASHVref] = ACTIONS(12259), + [anon_sym_BSLASHautoref] = ACTIONS(12259), + [anon_sym_BSLASHpageref] = ACTIONS(12259), + [anon_sym_BSLASHcref] = ACTIONS(12259), + [anon_sym_BSLASHCref] = ACTIONS(12259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnameCref] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHlabelcref] = ACTIONS(12259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12259), + [anon_sym_BSLASHeqref] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange] = ACTIONS(12259), + [anon_sym_BSLASHCrefrange] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewlabel] = ACTIONS(12259), + [anon_sym_BSLASHnewcommand] = ACTIONS(12259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12259), + [anon_sym_BSLASHgls] = ACTIONS(12259), + [anon_sym_BSLASHGls] = ACTIONS(12259), + [anon_sym_BSLASHGLS] = ACTIONS(12259), + [anon_sym_BSLASHglspl] = ACTIONS(12259), + [anon_sym_BSLASHGlspl] = ACTIONS(12259), + [anon_sym_BSLASHGLSpl] = ACTIONS(12259), + [anon_sym_BSLASHglsdisp] = ACTIONS(12259), + [anon_sym_BSLASHglslink] = ACTIONS(12259), + [anon_sym_BSLASHglstext] = ACTIONS(12259), + [anon_sym_BSLASHGlstext] = ACTIONS(12259), + [anon_sym_BSLASHGLStext] = ACTIONS(12259), + [anon_sym_BSLASHglsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12259), + [anon_sym_BSLASHglsplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSplural] = ACTIONS(12259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHglsname] = ACTIONS(12259), + [anon_sym_BSLASHGlsname] = ACTIONS(12259), + [anon_sym_BSLASHGLSname] = ACTIONS(12259), + [anon_sym_BSLASHglssymbol] = ACTIONS(12259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12259), + [anon_sym_BSLASHglsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12259), + [anon_sym_BSLASHglsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12259), + [anon_sym_BSLASHglsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12259), + [anon_sym_BSLASHglsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12259), + [anon_sym_BSLASHglsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12259), + [anon_sym_BSLASHnewacronym] = ACTIONS(12259), + [anon_sym_BSLASHacrshort] = ACTIONS(12259), + [anon_sym_BSLASHAcrshort] = ACTIONS(12259), + [anon_sym_BSLASHACRshort] = ACTIONS(12259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12259), + [anon_sym_BSLASHacrlong] = ACTIONS(12259), + [anon_sym_BSLASHAcrlong] = ACTIONS(12259), + [anon_sym_BSLASHACRlong] = ACTIONS(12259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12259), + [anon_sym_BSLASHacrfull] = ACTIONS(12259), + [anon_sym_BSLASHAcrfull] = ACTIONS(12259), + [anon_sym_BSLASHACRfull] = ACTIONS(12259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12259), + [anon_sym_BSLASHacs] = ACTIONS(12259), + [anon_sym_BSLASHAcs] = ACTIONS(12259), + [anon_sym_BSLASHacsp] = ACTIONS(12259), + [anon_sym_BSLASHAcsp] = ACTIONS(12259), + [anon_sym_BSLASHacl] = ACTIONS(12259), + [anon_sym_BSLASHAcl] = ACTIONS(12259), + [anon_sym_BSLASHaclp] = ACTIONS(12259), + [anon_sym_BSLASHAclp] = ACTIONS(12259), + [anon_sym_BSLASHacf] = ACTIONS(12259), + [anon_sym_BSLASHAcf] = ACTIONS(12259), + [anon_sym_BSLASHacfp] = ACTIONS(12259), + [anon_sym_BSLASHAcfp] = ACTIONS(12259), + [anon_sym_BSLASHac] = ACTIONS(12259), + [anon_sym_BSLASHAc] = ACTIONS(12259), + [anon_sym_BSLASHacp] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12259), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12259), + [anon_sym_BSLASHcolor] = ACTIONS(12259), + [anon_sym_BSLASHcolorbox] = ACTIONS(12259), + [anon_sym_BSLASHtextcolor] = ACTIONS(12259), + [anon_sym_BSLASHpagecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12259), + }, + [1000] = { + [sym_generic_command_name] = ACTIONS(12263), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12263), + [aux_sym_section_token1] = ACTIONS(12263), + [aux_sym_subsection_token1] = ACTIONS(12263), + [aux_sym_subsubsection_token1] = ACTIONS(12263), + [aux_sym_paragraph_token1] = ACTIONS(12263), + [aux_sym_subparagraph_token1] = ACTIONS(12263), + [anon_sym_BSLASHitem] = ACTIONS(12263), + [anon_sym_LBRACK] = ACTIONS(12261), + [anon_sym_RBRACK] = ACTIONS(12261), + [anon_sym_LBRACE] = ACTIONS(12261), + [anon_sym_RBRACE] = ACTIONS(12261), + [anon_sym_LPAREN] = ACTIONS(12261), + [anon_sym_COMMA] = ACTIONS(12261), + [anon_sym_EQ] = ACTIONS(12261), + [sym_word] = ACTIONS(12261), + [sym_param] = ACTIONS(12261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12261), + [anon_sym_DOLLAR] = ACTIONS(12263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12261), + [anon_sym_BSLASHbegin] = ACTIONS(12263), + [anon_sym_BSLASHcaption] = ACTIONS(12263), + [anon_sym_BSLASHcite] = ACTIONS(12263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCite] = ACTIONS(12263), + [anon_sym_BSLASHnocite] = ACTIONS(12263), + [anon_sym_BSLASHcitet] = ACTIONS(12263), + [anon_sym_BSLASHcitep] = ACTIONS(12263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteauthor] = ACTIONS(12263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitetitle] = ACTIONS(12263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteyear] = ACTIONS(12263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitedate] = ACTIONS(12263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteurl] = ACTIONS(12263), + [anon_sym_BSLASHfullcite] = ACTIONS(12263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12263), + [anon_sym_BSLASHcitealt] = ACTIONS(12263), + [anon_sym_BSLASHcitealp] = ACTIONS(12263), + [anon_sym_BSLASHcitetext] = ACTIONS(12263), + [anon_sym_BSLASHparencite] = ACTIONS(12263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHParencite] = ACTIONS(12263), + [anon_sym_BSLASHfootcite] = ACTIONS(12263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12263), + [anon_sym_BSLASHtextcite] = ACTIONS(12263), + [anon_sym_BSLASHTextcite] = ACTIONS(12263), + [anon_sym_BSLASHsmartcite] = ACTIONS(12263), + [anon_sym_BSLASHSmartcite] = ACTIONS(12263), + [anon_sym_BSLASHsupercite] = ACTIONS(12263), + [anon_sym_BSLASHautocite] = ACTIONS(12263), + [anon_sym_BSLASHAutocite] = ACTIONS(12263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHvolcite] = ACTIONS(12263), + [anon_sym_BSLASHVolcite] = ACTIONS(12263), + [anon_sym_BSLASHpvolcite] = ACTIONS(12263), + [anon_sym_BSLASHPvolcite] = ACTIONS(12263), + [anon_sym_BSLASHfvolcite] = ACTIONS(12263), + [anon_sym_BSLASHftvolcite] = ACTIONS(12263), + [anon_sym_BSLASHsvolcite] = ACTIONS(12263), + [anon_sym_BSLASHSvolcite] = ACTIONS(12263), + [anon_sym_BSLASHtvolcite] = ACTIONS(12263), + [anon_sym_BSLASHTvolcite] = ACTIONS(12263), + [anon_sym_BSLASHavolcite] = ACTIONS(12263), + [anon_sym_BSLASHAvolcite] = ACTIONS(12263), + [anon_sym_BSLASHnotecite] = ACTIONS(12263), + [anon_sym_BSLASHpnotecite] = ACTIONS(12263), + [anon_sym_BSLASHPnotecite] = ACTIONS(12263), + [anon_sym_BSLASHfnotecite] = ACTIONS(12263), + [anon_sym_BSLASHusepackage] = ACTIONS(12263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12263), + [anon_sym_BSLASHinclude] = ACTIONS(12263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12263), + [anon_sym_BSLASHinput] = ACTIONS(12263), + [anon_sym_BSLASHsubfile] = ACTIONS(12263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12263), + [anon_sym_BSLASHbibliography] = ACTIONS(12263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12263), + [anon_sym_BSLASHincludesvg] = ACTIONS(12263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12263), + [anon_sym_BSLASHimport] = ACTIONS(12263), + [anon_sym_BSLASHsubimport] = ACTIONS(12263), + [anon_sym_BSLASHinputfrom] = ACTIONS(12263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12263), + [anon_sym_BSLASHincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHlabel] = ACTIONS(12263), + [anon_sym_BSLASHref] = ACTIONS(12263), + [anon_sym_BSLASHvref] = ACTIONS(12263), + [anon_sym_BSLASHVref] = ACTIONS(12263), + [anon_sym_BSLASHautoref] = ACTIONS(12263), + [anon_sym_BSLASHpageref] = ACTIONS(12263), + [anon_sym_BSLASHcref] = ACTIONS(12263), + [anon_sym_BSLASHCref] = ACTIONS(12263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnameCref] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHlabelcref] = ACTIONS(12263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12263), + [anon_sym_BSLASHeqref] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange] = ACTIONS(12263), + [anon_sym_BSLASHCrefrange] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewlabel] = ACTIONS(12263), + [anon_sym_BSLASHnewcommand] = ACTIONS(12263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12263), + [anon_sym_BSLASHgls] = ACTIONS(12263), + [anon_sym_BSLASHGls] = ACTIONS(12263), + [anon_sym_BSLASHGLS] = ACTIONS(12263), + [anon_sym_BSLASHglspl] = ACTIONS(12263), + [anon_sym_BSLASHGlspl] = ACTIONS(12263), + [anon_sym_BSLASHGLSpl] = ACTIONS(12263), + [anon_sym_BSLASHglsdisp] = ACTIONS(12263), + [anon_sym_BSLASHglslink] = ACTIONS(12263), + [anon_sym_BSLASHglstext] = ACTIONS(12263), + [anon_sym_BSLASHGlstext] = ACTIONS(12263), + [anon_sym_BSLASHGLStext] = ACTIONS(12263), + [anon_sym_BSLASHglsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12263), + [anon_sym_BSLASHglsplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSplural] = ACTIONS(12263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHglsname] = ACTIONS(12263), + [anon_sym_BSLASHGlsname] = ACTIONS(12263), + [anon_sym_BSLASHGLSname] = ACTIONS(12263), + [anon_sym_BSLASHglssymbol] = ACTIONS(12263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12263), + [anon_sym_BSLASHglsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12263), + [anon_sym_BSLASHglsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12263), + [anon_sym_BSLASHglsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12263), + [anon_sym_BSLASHglsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12263), + [anon_sym_BSLASHglsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12263), + [anon_sym_BSLASHnewacronym] = ACTIONS(12263), + [anon_sym_BSLASHacrshort] = ACTIONS(12263), + [anon_sym_BSLASHAcrshort] = ACTIONS(12263), + [anon_sym_BSLASHACRshort] = ACTIONS(12263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12263), + [anon_sym_BSLASHacrlong] = ACTIONS(12263), + [anon_sym_BSLASHAcrlong] = ACTIONS(12263), + [anon_sym_BSLASHACRlong] = ACTIONS(12263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12263), + [anon_sym_BSLASHacrfull] = ACTIONS(12263), + [anon_sym_BSLASHAcrfull] = ACTIONS(12263), + [anon_sym_BSLASHACRfull] = ACTIONS(12263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12263), + [anon_sym_BSLASHacs] = ACTIONS(12263), + [anon_sym_BSLASHAcs] = ACTIONS(12263), + [anon_sym_BSLASHacsp] = ACTIONS(12263), + [anon_sym_BSLASHAcsp] = ACTIONS(12263), + [anon_sym_BSLASHacl] = ACTIONS(12263), + [anon_sym_BSLASHAcl] = ACTIONS(12263), + [anon_sym_BSLASHaclp] = ACTIONS(12263), + [anon_sym_BSLASHAclp] = ACTIONS(12263), + [anon_sym_BSLASHacf] = ACTIONS(12263), + [anon_sym_BSLASHAcf] = ACTIONS(12263), + [anon_sym_BSLASHacfp] = ACTIONS(12263), + [anon_sym_BSLASHAcfp] = ACTIONS(12263), + [anon_sym_BSLASHac] = ACTIONS(12263), + [anon_sym_BSLASHAc] = ACTIONS(12263), + [anon_sym_BSLASHacp] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12263), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12263), + [anon_sym_BSLASHcolor] = ACTIONS(12263), + [anon_sym_BSLASHcolorbox] = ACTIONS(12263), + [anon_sym_BSLASHtextcolor] = ACTIONS(12263), + [anon_sym_BSLASHpagecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12263), + }, + [1001] = { + [sym_generic_command_name] = ACTIONS(12449), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12449), + [aux_sym_chapter_token1] = ACTIONS(12449), + [aux_sym_section_token1] = ACTIONS(12449), + [aux_sym_subsection_token1] = ACTIONS(12449), + [aux_sym_subsubsection_token1] = ACTIONS(12449), + [aux_sym_paragraph_token1] = ACTIONS(12449), + [aux_sym_subparagraph_token1] = ACTIONS(12449), + [anon_sym_BSLASHitem] = ACTIONS(12449), + [anon_sym_LBRACK] = ACTIONS(12447), + [anon_sym_LBRACE] = ACTIONS(12447), + [anon_sym_LPAREN] = ACTIONS(12447), + [anon_sym_COMMA] = ACTIONS(12447), + [anon_sym_EQ] = ACTIONS(12447), + [sym_word] = ACTIONS(12447), + [sym_param] = ACTIONS(12447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12447), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12447), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12447), + [anon_sym_DOLLAR] = ACTIONS(12449), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12447), + [anon_sym_BSLASHbegin] = ACTIONS(12449), + [anon_sym_BSLASHcaption] = ACTIONS(12449), + [anon_sym_BSLASHcite] = ACTIONS(12449), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCite] = ACTIONS(12449), + [anon_sym_BSLASHnocite] = ACTIONS(12449), + [anon_sym_BSLASHcitet] = ACTIONS(12449), + [anon_sym_BSLASHcitep] = ACTIONS(12449), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteauthor] = ACTIONS(12449), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12449), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitetitle] = ACTIONS(12449), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteyear] = ACTIONS(12449), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitedate] = ACTIONS(12449), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteurl] = ACTIONS(12449), + [anon_sym_BSLASHfullcite] = ACTIONS(12449), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12449), + [anon_sym_BSLASHcitealt] = ACTIONS(12449), + [anon_sym_BSLASHcitealp] = ACTIONS(12449), + [anon_sym_BSLASHcitetext] = ACTIONS(12449), + [anon_sym_BSLASHparencite] = ACTIONS(12449), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHParencite] = ACTIONS(12449), + [anon_sym_BSLASHfootcite] = ACTIONS(12449), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12449), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12449), + [anon_sym_BSLASHtextcite] = ACTIONS(12449), + [anon_sym_BSLASHTextcite] = ACTIONS(12449), + [anon_sym_BSLASHsmartcite] = ACTIONS(12449), + [anon_sym_BSLASHSmartcite] = ACTIONS(12449), + [anon_sym_BSLASHsupercite] = ACTIONS(12449), + [anon_sym_BSLASHautocite] = ACTIONS(12449), + [anon_sym_BSLASHAutocite] = ACTIONS(12449), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHvolcite] = ACTIONS(12449), + [anon_sym_BSLASHVolcite] = ACTIONS(12449), + [anon_sym_BSLASHpvolcite] = ACTIONS(12449), + [anon_sym_BSLASHPvolcite] = ACTIONS(12449), + [anon_sym_BSLASHfvolcite] = ACTIONS(12449), + [anon_sym_BSLASHftvolcite] = ACTIONS(12449), + [anon_sym_BSLASHsvolcite] = ACTIONS(12449), + [anon_sym_BSLASHSvolcite] = ACTIONS(12449), + [anon_sym_BSLASHtvolcite] = ACTIONS(12449), + [anon_sym_BSLASHTvolcite] = ACTIONS(12449), + [anon_sym_BSLASHavolcite] = ACTIONS(12449), + [anon_sym_BSLASHAvolcite] = ACTIONS(12449), + [anon_sym_BSLASHnotecite] = ACTIONS(12449), + [anon_sym_BSLASHpnotecite] = ACTIONS(12449), + [anon_sym_BSLASHPnotecite] = ACTIONS(12449), + [anon_sym_BSLASHfnotecite] = ACTIONS(12449), + [anon_sym_BSLASHusepackage] = ACTIONS(12449), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12449), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12449), + [anon_sym_BSLASHinclude] = ACTIONS(12449), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12449), + [anon_sym_BSLASHinput] = ACTIONS(12449), + [anon_sym_BSLASHsubfile] = ACTIONS(12449), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12449), + [anon_sym_BSLASHbibliography] = ACTIONS(12449), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12449), + [anon_sym_BSLASHincludesvg] = ACTIONS(12449), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12449), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12449), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12449), + [anon_sym_BSLASHimport] = ACTIONS(12449), + [anon_sym_BSLASHsubimport] = ACTIONS(12449), + [anon_sym_BSLASHinputfrom] = ACTIONS(12449), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12449), + [anon_sym_BSLASHincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHlabel] = ACTIONS(12449), + [anon_sym_BSLASHref] = ACTIONS(12449), + [anon_sym_BSLASHvref] = ACTIONS(12449), + [anon_sym_BSLASHVref] = ACTIONS(12449), + [anon_sym_BSLASHautoref] = ACTIONS(12449), + [anon_sym_BSLASHpageref] = ACTIONS(12449), + [anon_sym_BSLASHcref] = ACTIONS(12449), + [anon_sym_BSLASHCref] = ACTIONS(12449), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnameCref] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHlabelcref] = ACTIONS(12449), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12449), + [anon_sym_BSLASHeqref] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange] = ACTIONS(12449), + [anon_sym_BSLASHCrefrange] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewlabel] = ACTIONS(12449), + [anon_sym_BSLASHnewcommand] = ACTIONS(12449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12449), + [anon_sym_BSLASHgls] = ACTIONS(12449), + [anon_sym_BSLASHGls] = ACTIONS(12449), + [anon_sym_BSLASHGLS] = ACTIONS(12449), + [anon_sym_BSLASHglspl] = ACTIONS(12449), + [anon_sym_BSLASHGlspl] = ACTIONS(12449), + [anon_sym_BSLASHGLSpl] = ACTIONS(12449), + [anon_sym_BSLASHglsdisp] = ACTIONS(12449), + [anon_sym_BSLASHglslink] = ACTIONS(12449), + [anon_sym_BSLASHglstext] = ACTIONS(12449), + [anon_sym_BSLASHGlstext] = ACTIONS(12449), + [anon_sym_BSLASHGLStext] = ACTIONS(12449), + [anon_sym_BSLASHglsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12449), + [anon_sym_BSLASHglsplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSplural] = ACTIONS(12449), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHglsname] = ACTIONS(12449), + [anon_sym_BSLASHGlsname] = ACTIONS(12449), + [anon_sym_BSLASHGLSname] = ACTIONS(12449), + [anon_sym_BSLASHglssymbol] = ACTIONS(12449), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12449), + [anon_sym_BSLASHglsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12449), + [anon_sym_BSLASHglsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12449), + [anon_sym_BSLASHglsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12449), + [anon_sym_BSLASHglsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12449), + [anon_sym_BSLASHglsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12449), + [anon_sym_BSLASHnewacronym] = ACTIONS(12449), + [anon_sym_BSLASHacrshort] = ACTIONS(12449), + [anon_sym_BSLASHAcrshort] = ACTIONS(12449), + [anon_sym_BSLASHACRshort] = ACTIONS(12449), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12449), + [anon_sym_BSLASHacrlong] = ACTIONS(12449), + [anon_sym_BSLASHAcrlong] = ACTIONS(12449), + [anon_sym_BSLASHACRlong] = ACTIONS(12449), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12449), + [anon_sym_BSLASHacrfull] = ACTIONS(12449), + [anon_sym_BSLASHAcrfull] = ACTIONS(12449), + [anon_sym_BSLASHACRfull] = ACTIONS(12449), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12449), + [anon_sym_BSLASHacs] = ACTIONS(12449), + [anon_sym_BSLASHAcs] = ACTIONS(12449), + [anon_sym_BSLASHacsp] = ACTIONS(12449), + [anon_sym_BSLASHAcsp] = ACTIONS(12449), + [anon_sym_BSLASHacl] = ACTIONS(12449), + [anon_sym_BSLASHAcl] = ACTIONS(12449), + [anon_sym_BSLASHaclp] = ACTIONS(12449), + [anon_sym_BSLASHAclp] = ACTIONS(12449), + [anon_sym_BSLASHacf] = ACTIONS(12449), + [anon_sym_BSLASHAcf] = ACTIONS(12449), + [anon_sym_BSLASHacfp] = ACTIONS(12449), + [anon_sym_BSLASHAcfp] = ACTIONS(12449), + [anon_sym_BSLASHac] = ACTIONS(12449), + [anon_sym_BSLASHAc] = ACTIONS(12449), + [anon_sym_BSLASHacp] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12449), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12449), + [anon_sym_BSLASHcolor] = ACTIONS(12449), + [anon_sym_BSLASHcolorbox] = ACTIONS(12449), + [anon_sym_BSLASHtextcolor] = ACTIONS(12449), + [anon_sym_BSLASHpagecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12449), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12449), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12449), + }, + [1002] = { + [sym_generic_command_name] = ACTIONS(12319), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12319), + [aux_sym_section_token1] = ACTIONS(12319), + [aux_sym_subsection_token1] = ACTIONS(12319), + [aux_sym_subsubsection_token1] = ACTIONS(12319), + [aux_sym_paragraph_token1] = ACTIONS(12319), + [aux_sym_subparagraph_token1] = ACTIONS(12319), + [anon_sym_BSLASHitem] = ACTIONS(12319), + [anon_sym_LBRACK] = ACTIONS(12317), + [anon_sym_RBRACK] = ACTIONS(12317), + [anon_sym_LBRACE] = ACTIONS(12317), + [anon_sym_RBRACE] = ACTIONS(12317), + [anon_sym_LPAREN] = ACTIONS(12317), + [anon_sym_COMMA] = ACTIONS(12317), + [anon_sym_EQ] = ACTIONS(12317), + [sym_word] = ACTIONS(12317), + [sym_param] = ACTIONS(12317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12317), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12317), + [anon_sym_DOLLAR] = ACTIONS(12319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12317), + [anon_sym_BSLASHbegin] = ACTIONS(12319), + [anon_sym_BSLASHcaption] = ACTIONS(12319), + [anon_sym_BSLASHcite] = ACTIONS(12319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCite] = ACTIONS(12319), + [anon_sym_BSLASHnocite] = ACTIONS(12319), + [anon_sym_BSLASHcitet] = ACTIONS(12319), + [anon_sym_BSLASHcitep] = ACTIONS(12319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteauthor] = ACTIONS(12319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitetitle] = ACTIONS(12319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteyear] = ACTIONS(12319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitedate] = ACTIONS(12319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteurl] = ACTIONS(12319), + [anon_sym_BSLASHfullcite] = ACTIONS(12319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12319), + [anon_sym_BSLASHcitealt] = ACTIONS(12319), + [anon_sym_BSLASHcitealp] = ACTIONS(12319), + [anon_sym_BSLASHcitetext] = ACTIONS(12319), + [anon_sym_BSLASHparencite] = ACTIONS(12319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHParencite] = ACTIONS(12319), + [anon_sym_BSLASHfootcite] = ACTIONS(12319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12319), + [anon_sym_BSLASHtextcite] = ACTIONS(12319), + [anon_sym_BSLASHTextcite] = ACTIONS(12319), + [anon_sym_BSLASHsmartcite] = ACTIONS(12319), + [anon_sym_BSLASHSmartcite] = ACTIONS(12319), + [anon_sym_BSLASHsupercite] = ACTIONS(12319), + [anon_sym_BSLASHautocite] = ACTIONS(12319), + [anon_sym_BSLASHAutocite] = ACTIONS(12319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHvolcite] = ACTIONS(12319), + [anon_sym_BSLASHVolcite] = ACTIONS(12319), + [anon_sym_BSLASHpvolcite] = ACTIONS(12319), + [anon_sym_BSLASHPvolcite] = ACTIONS(12319), + [anon_sym_BSLASHfvolcite] = ACTIONS(12319), + [anon_sym_BSLASHftvolcite] = ACTIONS(12319), + [anon_sym_BSLASHsvolcite] = ACTIONS(12319), + [anon_sym_BSLASHSvolcite] = ACTIONS(12319), + [anon_sym_BSLASHtvolcite] = ACTIONS(12319), + [anon_sym_BSLASHTvolcite] = ACTIONS(12319), + [anon_sym_BSLASHavolcite] = ACTIONS(12319), + [anon_sym_BSLASHAvolcite] = ACTIONS(12319), + [anon_sym_BSLASHnotecite] = ACTIONS(12319), + [anon_sym_BSLASHpnotecite] = ACTIONS(12319), + [anon_sym_BSLASHPnotecite] = ACTIONS(12319), + [anon_sym_BSLASHfnotecite] = ACTIONS(12319), + [anon_sym_BSLASHusepackage] = ACTIONS(12319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12319), + [anon_sym_BSLASHinclude] = ACTIONS(12319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12319), + [anon_sym_BSLASHinput] = ACTIONS(12319), + [anon_sym_BSLASHsubfile] = ACTIONS(12319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12319), + [anon_sym_BSLASHbibliography] = ACTIONS(12319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12319), + [anon_sym_BSLASHincludesvg] = ACTIONS(12319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12319), + [anon_sym_BSLASHimport] = ACTIONS(12319), + [anon_sym_BSLASHsubimport] = ACTIONS(12319), + [anon_sym_BSLASHinputfrom] = ACTIONS(12319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12319), + [anon_sym_BSLASHincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHlabel] = ACTIONS(12319), + [anon_sym_BSLASHref] = ACTIONS(12319), + [anon_sym_BSLASHvref] = ACTIONS(12319), + [anon_sym_BSLASHVref] = ACTIONS(12319), + [anon_sym_BSLASHautoref] = ACTIONS(12319), + [anon_sym_BSLASHpageref] = ACTIONS(12319), + [anon_sym_BSLASHcref] = ACTIONS(12319), + [anon_sym_BSLASHCref] = ACTIONS(12319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnameCref] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHlabelcref] = ACTIONS(12319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12319), + [anon_sym_BSLASHeqref] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange] = ACTIONS(12319), + [anon_sym_BSLASHCrefrange] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewlabel] = ACTIONS(12319), + [anon_sym_BSLASHnewcommand] = ACTIONS(12319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12319), + [anon_sym_BSLASHgls] = ACTIONS(12319), + [anon_sym_BSLASHGls] = ACTIONS(12319), + [anon_sym_BSLASHGLS] = ACTIONS(12319), + [anon_sym_BSLASHglspl] = ACTIONS(12319), + [anon_sym_BSLASHGlspl] = ACTIONS(12319), + [anon_sym_BSLASHGLSpl] = ACTIONS(12319), + [anon_sym_BSLASHglsdisp] = ACTIONS(12319), + [anon_sym_BSLASHglslink] = ACTIONS(12319), + [anon_sym_BSLASHglstext] = ACTIONS(12319), + [anon_sym_BSLASHGlstext] = ACTIONS(12319), + [anon_sym_BSLASHGLStext] = ACTIONS(12319), + [anon_sym_BSLASHglsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12319), + [anon_sym_BSLASHglsplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSplural] = ACTIONS(12319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHglsname] = ACTIONS(12319), + [anon_sym_BSLASHGlsname] = ACTIONS(12319), + [anon_sym_BSLASHGLSname] = ACTIONS(12319), + [anon_sym_BSLASHglssymbol] = ACTIONS(12319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12319), + [anon_sym_BSLASHglsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12319), + [anon_sym_BSLASHglsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12319), + [anon_sym_BSLASHglsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12319), + [anon_sym_BSLASHglsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12319), + [anon_sym_BSLASHglsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12319), + [anon_sym_BSLASHnewacronym] = ACTIONS(12319), + [anon_sym_BSLASHacrshort] = ACTIONS(12319), + [anon_sym_BSLASHAcrshort] = ACTIONS(12319), + [anon_sym_BSLASHACRshort] = ACTIONS(12319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12319), + [anon_sym_BSLASHacrlong] = ACTIONS(12319), + [anon_sym_BSLASHAcrlong] = ACTIONS(12319), + [anon_sym_BSLASHACRlong] = ACTIONS(12319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12319), + [anon_sym_BSLASHacrfull] = ACTIONS(12319), + [anon_sym_BSLASHAcrfull] = ACTIONS(12319), + [anon_sym_BSLASHACRfull] = ACTIONS(12319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12319), + [anon_sym_BSLASHacs] = ACTIONS(12319), + [anon_sym_BSLASHAcs] = ACTIONS(12319), + [anon_sym_BSLASHacsp] = ACTIONS(12319), + [anon_sym_BSLASHAcsp] = ACTIONS(12319), + [anon_sym_BSLASHacl] = ACTIONS(12319), + [anon_sym_BSLASHAcl] = ACTIONS(12319), + [anon_sym_BSLASHaclp] = ACTIONS(12319), + [anon_sym_BSLASHAclp] = ACTIONS(12319), + [anon_sym_BSLASHacf] = ACTIONS(12319), + [anon_sym_BSLASHAcf] = ACTIONS(12319), + [anon_sym_BSLASHacfp] = ACTIONS(12319), + [anon_sym_BSLASHAcfp] = ACTIONS(12319), + [anon_sym_BSLASHac] = ACTIONS(12319), + [anon_sym_BSLASHAc] = ACTIONS(12319), + [anon_sym_BSLASHacp] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12319), + [anon_sym_BSLASHcolor] = ACTIONS(12319), + [anon_sym_BSLASHcolorbox] = ACTIONS(12319), + [anon_sym_BSLASHtextcolor] = ACTIONS(12319), + [anon_sym_BSLASHpagecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12319), + }, + [1003] = { + [sym_generic_command_name] = ACTIONS(12267), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12267), + [aux_sym_section_token1] = ACTIONS(12267), + [aux_sym_subsection_token1] = ACTIONS(12267), + [aux_sym_subsubsection_token1] = ACTIONS(12267), + [aux_sym_paragraph_token1] = ACTIONS(12267), + [aux_sym_subparagraph_token1] = ACTIONS(12267), + [anon_sym_BSLASHitem] = ACTIONS(12267), + [anon_sym_LBRACK] = ACTIONS(12265), + [anon_sym_RBRACK] = ACTIONS(12265), + [anon_sym_LBRACE] = ACTIONS(12265), + [anon_sym_RBRACE] = ACTIONS(12265), + [anon_sym_LPAREN] = ACTIONS(12265), + [anon_sym_COMMA] = ACTIONS(12265), + [anon_sym_EQ] = ACTIONS(12265), + [sym_word] = ACTIONS(12265), + [sym_param] = ACTIONS(12265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12265), + [anon_sym_DOLLAR] = ACTIONS(12267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12265), + [anon_sym_BSLASHbegin] = ACTIONS(12267), + [anon_sym_BSLASHcaption] = ACTIONS(12267), + [anon_sym_BSLASHcite] = ACTIONS(12267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCite] = ACTIONS(12267), + [anon_sym_BSLASHnocite] = ACTIONS(12267), + [anon_sym_BSLASHcitet] = ACTIONS(12267), + [anon_sym_BSLASHcitep] = ACTIONS(12267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteauthor] = ACTIONS(12267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitetitle] = ACTIONS(12267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteyear] = ACTIONS(12267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitedate] = ACTIONS(12267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteurl] = ACTIONS(12267), + [anon_sym_BSLASHfullcite] = ACTIONS(12267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12267), + [anon_sym_BSLASHcitealt] = ACTIONS(12267), + [anon_sym_BSLASHcitealp] = ACTIONS(12267), + [anon_sym_BSLASHcitetext] = ACTIONS(12267), + [anon_sym_BSLASHparencite] = ACTIONS(12267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHParencite] = ACTIONS(12267), + [anon_sym_BSLASHfootcite] = ACTIONS(12267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12267), + [anon_sym_BSLASHtextcite] = ACTIONS(12267), + [anon_sym_BSLASHTextcite] = ACTIONS(12267), + [anon_sym_BSLASHsmartcite] = ACTIONS(12267), + [anon_sym_BSLASHSmartcite] = ACTIONS(12267), + [anon_sym_BSLASHsupercite] = ACTIONS(12267), + [anon_sym_BSLASHautocite] = ACTIONS(12267), + [anon_sym_BSLASHAutocite] = ACTIONS(12267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHvolcite] = ACTIONS(12267), + [anon_sym_BSLASHVolcite] = ACTIONS(12267), + [anon_sym_BSLASHpvolcite] = ACTIONS(12267), + [anon_sym_BSLASHPvolcite] = ACTIONS(12267), + [anon_sym_BSLASHfvolcite] = ACTIONS(12267), + [anon_sym_BSLASHftvolcite] = ACTIONS(12267), + [anon_sym_BSLASHsvolcite] = ACTIONS(12267), + [anon_sym_BSLASHSvolcite] = ACTIONS(12267), + [anon_sym_BSLASHtvolcite] = ACTIONS(12267), + [anon_sym_BSLASHTvolcite] = ACTIONS(12267), + [anon_sym_BSLASHavolcite] = ACTIONS(12267), + [anon_sym_BSLASHAvolcite] = ACTIONS(12267), + [anon_sym_BSLASHnotecite] = ACTIONS(12267), + [anon_sym_BSLASHpnotecite] = ACTIONS(12267), + [anon_sym_BSLASHPnotecite] = ACTIONS(12267), + [anon_sym_BSLASHfnotecite] = ACTIONS(12267), + [anon_sym_BSLASHusepackage] = ACTIONS(12267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12267), + [anon_sym_BSLASHinclude] = ACTIONS(12267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12267), + [anon_sym_BSLASHinput] = ACTIONS(12267), + [anon_sym_BSLASHsubfile] = ACTIONS(12267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12267), + [anon_sym_BSLASHbibliography] = ACTIONS(12267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12267), + [anon_sym_BSLASHincludesvg] = ACTIONS(12267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12267), + [anon_sym_BSLASHimport] = ACTIONS(12267), + [anon_sym_BSLASHsubimport] = ACTIONS(12267), + [anon_sym_BSLASHinputfrom] = ACTIONS(12267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12267), + [anon_sym_BSLASHincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHlabel] = ACTIONS(12267), + [anon_sym_BSLASHref] = ACTIONS(12267), + [anon_sym_BSLASHvref] = ACTIONS(12267), + [anon_sym_BSLASHVref] = ACTIONS(12267), + [anon_sym_BSLASHautoref] = ACTIONS(12267), + [anon_sym_BSLASHpageref] = ACTIONS(12267), + [anon_sym_BSLASHcref] = ACTIONS(12267), + [anon_sym_BSLASHCref] = ACTIONS(12267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnameCref] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHlabelcref] = ACTIONS(12267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12267), + [anon_sym_BSLASHeqref] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange] = ACTIONS(12267), + [anon_sym_BSLASHCrefrange] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewlabel] = ACTIONS(12267), + [anon_sym_BSLASHnewcommand] = ACTIONS(12267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12267), + [anon_sym_BSLASHgls] = ACTIONS(12267), + [anon_sym_BSLASHGls] = ACTIONS(12267), + [anon_sym_BSLASHGLS] = ACTIONS(12267), + [anon_sym_BSLASHglspl] = ACTIONS(12267), + [anon_sym_BSLASHGlspl] = ACTIONS(12267), + [anon_sym_BSLASHGLSpl] = ACTIONS(12267), + [anon_sym_BSLASHglsdisp] = ACTIONS(12267), + [anon_sym_BSLASHglslink] = ACTIONS(12267), + [anon_sym_BSLASHglstext] = ACTIONS(12267), + [anon_sym_BSLASHGlstext] = ACTIONS(12267), + [anon_sym_BSLASHGLStext] = ACTIONS(12267), + [anon_sym_BSLASHglsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12267), + [anon_sym_BSLASHglsplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSplural] = ACTIONS(12267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHglsname] = ACTIONS(12267), + [anon_sym_BSLASHGlsname] = ACTIONS(12267), + [anon_sym_BSLASHGLSname] = ACTIONS(12267), + [anon_sym_BSLASHglssymbol] = ACTIONS(12267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12267), + [anon_sym_BSLASHglsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12267), + [anon_sym_BSLASHglsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12267), + [anon_sym_BSLASHglsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12267), + [anon_sym_BSLASHglsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12267), + [anon_sym_BSLASHglsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12267), + [anon_sym_BSLASHnewacronym] = ACTIONS(12267), + [anon_sym_BSLASHacrshort] = ACTIONS(12267), + [anon_sym_BSLASHAcrshort] = ACTIONS(12267), + [anon_sym_BSLASHACRshort] = ACTIONS(12267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12267), + [anon_sym_BSLASHacrlong] = ACTIONS(12267), + [anon_sym_BSLASHAcrlong] = ACTIONS(12267), + [anon_sym_BSLASHACRlong] = ACTIONS(12267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12267), + [anon_sym_BSLASHacrfull] = ACTIONS(12267), + [anon_sym_BSLASHAcrfull] = ACTIONS(12267), + [anon_sym_BSLASHACRfull] = ACTIONS(12267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12267), + [anon_sym_BSLASHacs] = ACTIONS(12267), + [anon_sym_BSLASHAcs] = ACTIONS(12267), + [anon_sym_BSLASHacsp] = ACTIONS(12267), + [anon_sym_BSLASHAcsp] = ACTIONS(12267), + [anon_sym_BSLASHacl] = ACTIONS(12267), + [anon_sym_BSLASHAcl] = ACTIONS(12267), + [anon_sym_BSLASHaclp] = ACTIONS(12267), + [anon_sym_BSLASHAclp] = ACTIONS(12267), + [anon_sym_BSLASHacf] = ACTIONS(12267), + [anon_sym_BSLASHAcf] = ACTIONS(12267), + [anon_sym_BSLASHacfp] = ACTIONS(12267), + [anon_sym_BSLASHAcfp] = ACTIONS(12267), + [anon_sym_BSLASHac] = ACTIONS(12267), + [anon_sym_BSLASHAc] = ACTIONS(12267), + [anon_sym_BSLASHacp] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12267), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12267), + [anon_sym_BSLASHcolor] = ACTIONS(12267), + [anon_sym_BSLASHcolorbox] = ACTIONS(12267), + [anon_sym_BSLASHtextcolor] = ACTIONS(12267), + [anon_sym_BSLASHpagecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12267), + }, + [1004] = { + [sym_generic_command_name] = ACTIONS(12271), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12271), + [aux_sym_section_token1] = ACTIONS(12271), + [aux_sym_subsection_token1] = ACTIONS(12271), + [aux_sym_subsubsection_token1] = ACTIONS(12271), + [aux_sym_paragraph_token1] = ACTIONS(12271), + [aux_sym_subparagraph_token1] = ACTIONS(12271), + [anon_sym_BSLASHitem] = ACTIONS(12271), + [anon_sym_LBRACK] = ACTIONS(12269), + [anon_sym_RBRACK] = ACTIONS(12269), + [anon_sym_LBRACE] = ACTIONS(12269), + [anon_sym_RBRACE] = ACTIONS(12269), + [anon_sym_LPAREN] = ACTIONS(12269), + [anon_sym_COMMA] = ACTIONS(12269), + [anon_sym_EQ] = ACTIONS(12269), + [sym_word] = ACTIONS(12269), + [sym_param] = ACTIONS(12269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12269), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12269), + [anon_sym_DOLLAR] = ACTIONS(12271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12269), + [anon_sym_BSLASHbegin] = ACTIONS(12271), + [anon_sym_BSLASHcaption] = ACTIONS(12271), + [anon_sym_BSLASHcite] = ACTIONS(12271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCite] = ACTIONS(12271), + [anon_sym_BSLASHnocite] = ACTIONS(12271), + [anon_sym_BSLASHcitet] = ACTIONS(12271), + [anon_sym_BSLASHcitep] = ACTIONS(12271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteauthor] = ACTIONS(12271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitetitle] = ACTIONS(12271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteyear] = ACTIONS(12271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitedate] = ACTIONS(12271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteurl] = ACTIONS(12271), + [anon_sym_BSLASHfullcite] = ACTIONS(12271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12271), + [anon_sym_BSLASHcitealt] = ACTIONS(12271), + [anon_sym_BSLASHcitealp] = ACTIONS(12271), + [anon_sym_BSLASHcitetext] = ACTIONS(12271), + [anon_sym_BSLASHparencite] = ACTIONS(12271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHParencite] = ACTIONS(12271), + [anon_sym_BSLASHfootcite] = ACTIONS(12271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12271), + [anon_sym_BSLASHtextcite] = ACTIONS(12271), + [anon_sym_BSLASHTextcite] = ACTIONS(12271), + [anon_sym_BSLASHsmartcite] = ACTIONS(12271), + [anon_sym_BSLASHSmartcite] = ACTIONS(12271), + [anon_sym_BSLASHsupercite] = ACTIONS(12271), + [anon_sym_BSLASHautocite] = ACTIONS(12271), + [anon_sym_BSLASHAutocite] = ACTIONS(12271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHvolcite] = ACTIONS(12271), + [anon_sym_BSLASHVolcite] = ACTIONS(12271), + [anon_sym_BSLASHpvolcite] = ACTIONS(12271), + [anon_sym_BSLASHPvolcite] = ACTIONS(12271), + [anon_sym_BSLASHfvolcite] = ACTIONS(12271), + [anon_sym_BSLASHftvolcite] = ACTIONS(12271), + [anon_sym_BSLASHsvolcite] = ACTIONS(12271), + [anon_sym_BSLASHSvolcite] = ACTIONS(12271), + [anon_sym_BSLASHtvolcite] = ACTIONS(12271), + [anon_sym_BSLASHTvolcite] = ACTIONS(12271), + [anon_sym_BSLASHavolcite] = ACTIONS(12271), + [anon_sym_BSLASHAvolcite] = ACTIONS(12271), + [anon_sym_BSLASHnotecite] = ACTIONS(12271), + [anon_sym_BSLASHpnotecite] = ACTIONS(12271), + [anon_sym_BSLASHPnotecite] = ACTIONS(12271), + [anon_sym_BSLASHfnotecite] = ACTIONS(12271), + [anon_sym_BSLASHusepackage] = ACTIONS(12271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12271), + [anon_sym_BSLASHinclude] = ACTIONS(12271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12271), + [anon_sym_BSLASHinput] = ACTIONS(12271), + [anon_sym_BSLASHsubfile] = ACTIONS(12271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12271), + [anon_sym_BSLASHbibliography] = ACTIONS(12271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12271), + [anon_sym_BSLASHincludesvg] = ACTIONS(12271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12271), + [anon_sym_BSLASHimport] = ACTIONS(12271), + [anon_sym_BSLASHsubimport] = ACTIONS(12271), + [anon_sym_BSLASHinputfrom] = ACTIONS(12271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12271), + [anon_sym_BSLASHincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHlabel] = ACTIONS(12271), + [anon_sym_BSLASHref] = ACTIONS(12271), + [anon_sym_BSLASHvref] = ACTIONS(12271), + [anon_sym_BSLASHVref] = ACTIONS(12271), + [anon_sym_BSLASHautoref] = ACTIONS(12271), + [anon_sym_BSLASHpageref] = ACTIONS(12271), + [anon_sym_BSLASHcref] = ACTIONS(12271), + [anon_sym_BSLASHCref] = ACTIONS(12271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnameCref] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHlabelcref] = ACTIONS(12271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12271), + [anon_sym_BSLASHeqref] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange] = ACTIONS(12271), + [anon_sym_BSLASHCrefrange] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewlabel] = ACTIONS(12271), + [anon_sym_BSLASHnewcommand] = ACTIONS(12271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12271), + [anon_sym_BSLASHgls] = ACTIONS(12271), + [anon_sym_BSLASHGls] = ACTIONS(12271), + [anon_sym_BSLASHGLS] = ACTIONS(12271), + [anon_sym_BSLASHglspl] = ACTIONS(12271), + [anon_sym_BSLASHGlspl] = ACTIONS(12271), + [anon_sym_BSLASHGLSpl] = ACTIONS(12271), + [anon_sym_BSLASHglsdisp] = ACTIONS(12271), + [anon_sym_BSLASHglslink] = ACTIONS(12271), + [anon_sym_BSLASHglstext] = ACTIONS(12271), + [anon_sym_BSLASHGlstext] = ACTIONS(12271), + [anon_sym_BSLASHGLStext] = ACTIONS(12271), + [anon_sym_BSLASHglsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12271), + [anon_sym_BSLASHglsplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSplural] = ACTIONS(12271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHglsname] = ACTIONS(12271), + [anon_sym_BSLASHGlsname] = ACTIONS(12271), + [anon_sym_BSLASHGLSname] = ACTIONS(12271), + [anon_sym_BSLASHglssymbol] = ACTIONS(12271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12271), + [anon_sym_BSLASHglsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12271), + [anon_sym_BSLASHglsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12271), + [anon_sym_BSLASHglsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12271), + [anon_sym_BSLASHglsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12271), + [anon_sym_BSLASHglsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12271), + [anon_sym_BSLASHnewacronym] = ACTIONS(12271), + [anon_sym_BSLASHacrshort] = ACTIONS(12271), + [anon_sym_BSLASHAcrshort] = ACTIONS(12271), + [anon_sym_BSLASHACRshort] = ACTIONS(12271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12271), + [anon_sym_BSLASHacrlong] = ACTIONS(12271), + [anon_sym_BSLASHAcrlong] = ACTIONS(12271), + [anon_sym_BSLASHACRlong] = ACTIONS(12271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12271), + [anon_sym_BSLASHacrfull] = ACTIONS(12271), + [anon_sym_BSLASHAcrfull] = ACTIONS(12271), + [anon_sym_BSLASHACRfull] = ACTIONS(12271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12271), + [anon_sym_BSLASHacs] = ACTIONS(12271), + [anon_sym_BSLASHAcs] = ACTIONS(12271), + [anon_sym_BSLASHacsp] = ACTIONS(12271), + [anon_sym_BSLASHAcsp] = ACTIONS(12271), + [anon_sym_BSLASHacl] = ACTIONS(12271), + [anon_sym_BSLASHAcl] = ACTIONS(12271), + [anon_sym_BSLASHaclp] = ACTIONS(12271), + [anon_sym_BSLASHAclp] = ACTIONS(12271), + [anon_sym_BSLASHacf] = ACTIONS(12271), + [anon_sym_BSLASHAcf] = ACTIONS(12271), + [anon_sym_BSLASHacfp] = ACTIONS(12271), + [anon_sym_BSLASHAcfp] = ACTIONS(12271), + [anon_sym_BSLASHac] = ACTIONS(12271), + [anon_sym_BSLASHAc] = ACTIONS(12271), + [anon_sym_BSLASHacp] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12271), + [anon_sym_BSLASHcolor] = ACTIONS(12271), + [anon_sym_BSLASHcolorbox] = ACTIONS(12271), + [anon_sym_BSLASHtextcolor] = ACTIONS(12271), + [anon_sym_BSLASHpagecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12271), + }, + [1005] = { + [sym_generic_command_name] = ACTIONS(12279), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12279), + [aux_sym_section_token1] = ACTIONS(12279), + [aux_sym_subsection_token1] = ACTIONS(12279), + [aux_sym_subsubsection_token1] = ACTIONS(12279), + [aux_sym_paragraph_token1] = ACTIONS(12279), + [aux_sym_subparagraph_token1] = ACTIONS(12279), + [anon_sym_BSLASHitem] = ACTIONS(12279), + [anon_sym_LBRACK] = ACTIONS(12277), + [anon_sym_RBRACK] = ACTIONS(12277), + [anon_sym_LBRACE] = ACTIONS(12277), + [anon_sym_RBRACE] = ACTIONS(12277), + [anon_sym_LPAREN] = ACTIONS(12277), + [anon_sym_COMMA] = ACTIONS(12277), + [anon_sym_EQ] = ACTIONS(12277), + [sym_word] = ACTIONS(12277), + [sym_param] = ACTIONS(12277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12277), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12277), + [anon_sym_DOLLAR] = ACTIONS(12279), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12277), + [anon_sym_BSLASHbegin] = ACTIONS(12279), + [anon_sym_BSLASHcaption] = ACTIONS(12279), + [anon_sym_BSLASHcite] = ACTIONS(12279), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCite] = ACTIONS(12279), + [anon_sym_BSLASHnocite] = ACTIONS(12279), + [anon_sym_BSLASHcitet] = ACTIONS(12279), + [anon_sym_BSLASHcitep] = ACTIONS(12279), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteauthor] = ACTIONS(12279), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12279), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitetitle] = ACTIONS(12279), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteyear] = ACTIONS(12279), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitedate] = ACTIONS(12279), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteurl] = ACTIONS(12279), + [anon_sym_BSLASHfullcite] = ACTIONS(12279), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12279), + [anon_sym_BSLASHcitealt] = ACTIONS(12279), + [anon_sym_BSLASHcitealp] = ACTIONS(12279), + [anon_sym_BSLASHcitetext] = ACTIONS(12279), + [anon_sym_BSLASHparencite] = ACTIONS(12279), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHParencite] = ACTIONS(12279), + [anon_sym_BSLASHfootcite] = ACTIONS(12279), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12279), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12279), + [anon_sym_BSLASHtextcite] = ACTIONS(12279), + [anon_sym_BSLASHTextcite] = ACTIONS(12279), + [anon_sym_BSLASHsmartcite] = ACTIONS(12279), + [anon_sym_BSLASHSmartcite] = ACTIONS(12279), + [anon_sym_BSLASHsupercite] = ACTIONS(12279), + [anon_sym_BSLASHautocite] = ACTIONS(12279), + [anon_sym_BSLASHAutocite] = ACTIONS(12279), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHvolcite] = ACTIONS(12279), + [anon_sym_BSLASHVolcite] = ACTIONS(12279), + [anon_sym_BSLASHpvolcite] = ACTIONS(12279), + [anon_sym_BSLASHPvolcite] = ACTIONS(12279), + [anon_sym_BSLASHfvolcite] = ACTIONS(12279), + [anon_sym_BSLASHftvolcite] = ACTIONS(12279), + [anon_sym_BSLASHsvolcite] = ACTIONS(12279), + [anon_sym_BSLASHSvolcite] = ACTIONS(12279), + [anon_sym_BSLASHtvolcite] = ACTIONS(12279), + [anon_sym_BSLASHTvolcite] = ACTIONS(12279), + [anon_sym_BSLASHavolcite] = ACTIONS(12279), + [anon_sym_BSLASHAvolcite] = ACTIONS(12279), + [anon_sym_BSLASHnotecite] = ACTIONS(12279), + [anon_sym_BSLASHpnotecite] = ACTIONS(12279), + [anon_sym_BSLASHPnotecite] = ACTIONS(12279), + [anon_sym_BSLASHfnotecite] = ACTIONS(12279), + [anon_sym_BSLASHusepackage] = ACTIONS(12279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12279), + [anon_sym_BSLASHinclude] = ACTIONS(12279), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12279), + [anon_sym_BSLASHinput] = ACTIONS(12279), + [anon_sym_BSLASHsubfile] = ACTIONS(12279), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12279), + [anon_sym_BSLASHbibliography] = ACTIONS(12279), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12279), + [anon_sym_BSLASHincludesvg] = ACTIONS(12279), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12279), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12279), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12279), + [anon_sym_BSLASHimport] = ACTIONS(12279), + [anon_sym_BSLASHsubimport] = ACTIONS(12279), + [anon_sym_BSLASHinputfrom] = ACTIONS(12279), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12279), + [anon_sym_BSLASHincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHlabel] = ACTIONS(12279), + [anon_sym_BSLASHref] = ACTIONS(12279), + [anon_sym_BSLASHvref] = ACTIONS(12279), + [anon_sym_BSLASHVref] = ACTIONS(12279), + [anon_sym_BSLASHautoref] = ACTIONS(12279), + [anon_sym_BSLASHpageref] = ACTIONS(12279), + [anon_sym_BSLASHcref] = ACTIONS(12279), + [anon_sym_BSLASHCref] = ACTIONS(12279), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnameCref] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHlabelcref] = ACTIONS(12279), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12279), + [anon_sym_BSLASHeqref] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange] = ACTIONS(12279), + [anon_sym_BSLASHCrefrange] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewlabel] = ACTIONS(12279), + [anon_sym_BSLASHnewcommand] = ACTIONS(12279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12279), + [anon_sym_BSLASHgls] = ACTIONS(12279), + [anon_sym_BSLASHGls] = ACTIONS(12279), + [anon_sym_BSLASHGLS] = ACTIONS(12279), + [anon_sym_BSLASHglspl] = ACTIONS(12279), + [anon_sym_BSLASHGlspl] = ACTIONS(12279), + [anon_sym_BSLASHGLSpl] = ACTIONS(12279), + [anon_sym_BSLASHglsdisp] = ACTIONS(12279), + [anon_sym_BSLASHglslink] = ACTIONS(12279), + [anon_sym_BSLASHglstext] = ACTIONS(12279), + [anon_sym_BSLASHGlstext] = ACTIONS(12279), + [anon_sym_BSLASHGLStext] = ACTIONS(12279), + [anon_sym_BSLASHglsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12279), + [anon_sym_BSLASHglsplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSplural] = ACTIONS(12279), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHglsname] = ACTIONS(12279), + [anon_sym_BSLASHGlsname] = ACTIONS(12279), + [anon_sym_BSLASHGLSname] = ACTIONS(12279), + [anon_sym_BSLASHglssymbol] = ACTIONS(12279), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12279), + [anon_sym_BSLASHglsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12279), + [anon_sym_BSLASHglsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12279), + [anon_sym_BSLASHglsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12279), + [anon_sym_BSLASHglsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12279), + [anon_sym_BSLASHglsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12279), + [anon_sym_BSLASHnewacronym] = ACTIONS(12279), + [anon_sym_BSLASHacrshort] = ACTIONS(12279), + [anon_sym_BSLASHAcrshort] = ACTIONS(12279), + [anon_sym_BSLASHACRshort] = ACTIONS(12279), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12279), + [anon_sym_BSLASHacrlong] = ACTIONS(12279), + [anon_sym_BSLASHAcrlong] = ACTIONS(12279), + [anon_sym_BSLASHACRlong] = ACTIONS(12279), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12279), + [anon_sym_BSLASHacrfull] = ACTIONS(12279), + [anon_sym_BSLASHAcrfull] = ACTIONS(12279), + [anon_sym_BSLASHACRfull] = ACTIONS(12279), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12279), + [anon_sym_BSLASHacs] = ACTIONS(12279), + [anon_sym_BSLASHAcs] = ACTIONS(12279), + [anon_sym_BSLASHacsp] = ACTIONS(12279), + [anon_sym_BSLASHAcsp] = ACTIONS(12279), + [anon_sym_BSLASHacl] = ACTIONS(12279), + [anon_sym_BSLASHAcl] = ACTIONS(12279), + [anon_sym_BSLASHaclp] = ACTIONS(12279), + [anon_sym_BSLASHAclp] = ACTIONS(12279), + [anon_sym_BSLASHacf] = ACTIONS(12279), + [anon_sym_BSLASHAcf] = ACTIONS(12279), + [anon_sym_BSLASHacfp] = ACTIONS(12279), + [anon_sym_BSLASHAcfp] = ACTIONS(12279), + [anon_sym_BSLASHac] = ACTIONS(12279), + [anon_sym_BSLASHAc] = ACTIONS(12279), + [anon_sym_BSLASHacp] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12279), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12279), + [anon_sym_BSLASHcolor] = ACTIONS(12279), + [anon_sym_BSLASHcolorbox] = ACTIONS(12279), + [anon_sym_BSLASHtextcolor] = ACTIONS(12279), + [anon_sym_BSLASHpagecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12279), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12279), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12279), + }, + [1006] = { + [sym_generic_command_name] = ACTIONS(12287), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12287), + [aux_sym_section_token1] = ACTIONS(12287), + [aux_sym_subsection_token1] = ACTIONS(12287), + [aux_sym_subsubsection_token1] = ACTIONS(12287), + [aux_sym_paragraph_token1] = ACTIONS(12287), + [aux_sym_subparagraph_token1] = ACTIONS(12287), + [anon_sym_BSLASHitem] = ACTIONS(12287), + [anon_sym_LBRACK] = ACTIONS(12285), + [anon_sym_RBRACK] = ACTIONS(12285), + [anon_sym_LBRACE] = ACTIONS(12285), + [anon_sym_RBRACE] = ACTIONS(12285), + [anon_sym_LPAREN] = ACTIONS(12285), + [anon_sym_COMMA] = ACTIONS(12285), + [anon_sym_EQ] = ACTIONS(12285), + [sym_word] = ACTIONS(12285), + [sym_param] = ACTIONS(12285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12285), + [anon_sym_DOLLAR] = ACTIONS(12287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12285), + [anon_sym_BSLASHbegin] = ACTIONS(12287), + [anon_sym_BSLASHcaption] = ACTIONS(12287), + [anon_sym_BSLASHcite] = ACTIONS(12287), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCite] = ACTIONS(12287), + [anon_sym_BSLASHnocite] = ACTIONS(12287), + [anon_sym_BSLASHcitet] = ACTIONS(12287), + [anon_sym_BSLASHcitep] = ACTIONS(12287), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteauthor] = ACTIONS(12287), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12287), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitetitle] = ACTIONS(12287), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteyear] = ACTIONS(12287), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitedate] = ACTIONS(12287), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteurl] = ACTIONS(12287), + [anon_sym_BSLASHfullcite] = ACTIONS(12287), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12287), + [anon_sym_BSLASHcitealt] = ACTIONS(12287), + [anon_sym_BSLASHcitealp] = ACTIONS(12287), + [anon_sym_BSLASHcitetext] = ACTIONS(12287), + [anon_sym_BSLASHparencite] = ACTIONS(12287), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHParencite] = ACTIONS(12287), + [anon_sym_BSLASHfootcite] = ACTIONS(12287), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12287), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12287), + [anon_sym_BSLASHtextcite] = ACTIONS(12287), + [anon_sym_BSLASHTextcite] = ACTIONS(12287), + [anon_sym_BSLASHsmartcite] = ACTIONS(12287), + [anon_sym_BSLASHSmartcite] = ACTIONS(12287), + [anon_sym_BSLASHsupercite] = ACTIONS(12287), + [anon_sym_BSLASHautocite] = ACTIONS(12287), + [anon_sym_BSLASHAutocite] = ACTIONS(12287), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHvolcite] = ACTIONS(12287), + [anon_sym_BSLASHVolcite] = ACTIONS(12287), + [anon_sym_BSLASHpvolcite] = ACTIONS(12287), + [anon_sym_BSLASHPvolcite] = ACTIONS(12287), + [anon_sym_BSLASHfvolcite] = ACTIONS(12287), + [anon_sym_BSLASHftvolcite] = ACTIONS(12287), + [anon_sym_BSLASHsvolcite] = ACTIONS(12287), + [anon_sym_BSLASHSvolcite] = ACTIONS(12287), + [anon_sym_BSLASHtvolcite] = ACTIONS(12287), + [anon_sym_BSLASHTvolcite] = ACTIONS(12287), + [anon_sym_BSLASHavolcite] = ACTIONS(12287), + [anon_sym_BSLASHAvolcite] = ACTIONS(12287), + [anon_sym_BSLASHnotecite] = ACTIONS(12287), + [anon_sym_BSLASHpnotecite] = ACTIONS(12287), + [anon_sym_BSLASHPnotecite] = ACTIONS(12287), + [anon_sym_BSLASHfnotecite] = ACTIONS(12287), + [anon_sym_BSLASHusepackage] = ACTIONS(12287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12287), + [anon_sym_BSLASHinclude] = ACTIONS(12287), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12287), + [anon_sym_BSLASHinput] = ACTIONS(12287), + [anon_sym_BSLASHsubfile] = ACTIONS(12287), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12287), + [anon_sym_BSLASHbibliography] = ACTIONS(12287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12287), + [anon_sym_BSLASHincludesvg] = ACTIONS(12287), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12287), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12287), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12287), + [anon_sym_BSLASHimport] = ACTIONS(12287), + [anon_sym_BSLASHsubimport] = ACTIONS(12287), + [anon_sym_BSLASHinputfrom] = ACTIONS(12287), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12287), + [anon_sym_BSLASHincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHlabel] = ACTIONS(12287), + [anon_sym_BSLASHref] = ACTIONS(12287), + [anon_sym_BSLASHvref] = ACTIONS(12287), + [anon_sym_BSLASHVref] = ACTIONS(12287), + [anon_sym_BSLASHautoref] = ACTIONS(12287), + [anon_sym_BSLASHpageref] = ACTIONS(12287), + [anon_sym_BSLASHcref] = ACTIONS(12287), + [anon_sym_BSLASHCref] = ACTIONS(12287), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnameCref] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHlabelcref] = ACTIONS(12287), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12287), + [anon_sym_BSLASHeqref] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange] = ACTIONS(12287), + [anon_sym_BSLASHCrefrange] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewlabel] = ACTIONS(12287), + [anon_sym_BSLASHnewcommand] = ACTIONS(12287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12287), + [anon_sym_BSLASHgls] = ACTIONS(12287), + [anon_sym_BSLASHGls] = ACTIONS(12287), + [anon_sym_BSLASHGLS] = ACTIONS(12287), + [anon_sym_BSLASHglspl] = ACTIONS(12287), + [anon_sym_BSLASHGlspl] = ACTIONS(12287), + [anon_sym_BSLASHGLSpl] = ACTIONS(12287), + [anon_sym_BSLASHglsdisp] = ACTIONS(12287), + [anon_sym_BSLASHglslink] = ACTIONS(12287), + [anon_sym_BSLASHglstext] = ACTIONS(12287), + [anon_sym_BSLASHGlstext] = ACTIONS(12287), + [anon_sym_BSLASHGLStext] = ACTIONS(12287), + [anon_sym_BSLASHglsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12287), + [anon_sym_BSLASHglsplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSplural] = ACTIONS(12287), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHglsname] = ACTIONS(12287), + [anon_sym_BSLASHGlsname] = ACTIONS(12287), + [anon_sym_BSLASHGLSname] = ACTIONS(12287), + [anon_sym_BSLASHglssymbol] = ACTIONS(12287), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12287), + [anon_sym_BSLASHglsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12287), + [anon_sym_BSLASHglsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12287), + [anon_sym_BSLASHglsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12287), + [anon_sym_BSLASHglsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12287), + [anon_sym_BSLASHglsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12287), + [anon_sym_BSLASHnewacronym] = ACTIONS(12287), + [anon_sym_BSLASHacrshort] = ACTIONS(12287), + [anon_sym_BSLASHAcrshort] = ACTIONS(12287), + [anon_sym_BSLASHACRshort] = ACTIONS(12287), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12287), + [anon_sym_BSLASHacrlong] = ACTIONS(12287), + [anon_sym_BSLASHAcrlong] = ACTIONS(12287), + [anon_sym_BSLASHACRlong] = ACTIONS(12287), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12287), + [anon_sym_BSLASHacrfull] = ACTIONS(12287), + [anon_sym_BSLASHAcrfull] = ACTIONS(12287), + [anon_sym_BSLASHACRfull] = ACTIONS(12287), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12287), + [anon_sym_BSLASHacs] = ACTIONS(12287), + [anon_sym_BSLASHAcs] = ACTIONS(12287), + [anon_sym_BSLASHacsp] = ACTIONS(12287), + [anon_sym_BSLASHAcsp] = ACTIONS(12287), + [anon_sym_BSLASHacl] = ACTIONS(12287), + [anon_sym_BSLASHAcl] = ACTIONS(12287), + [anon_sym_BSLASHaclp] = ACTIONS(12287), + [anon_sym_BSLASHAclp] = ACTIONS(12287), + [anon_sym_BSLASHacf] = ACTIONS(12287), + [anon_sym_BSLASHAcf] = ACTIONS(12287), + [anon_sym_BSLASHacfp] = ACTIONS(12287), + [anon_sym_BSLASHAcfp] = ACTIONS(12287), + [anon_sym_BSLASHac] = ACTIONS(12287), + [anon_sym_BSLASHAc] = ACTIONS(12287), + [anon_sym_BSLASHacp] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12287), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12287), + [anon_sym_BSLASHcolor] = ACTIONS(12287), + [anon_sym_BSLASHcolorbox] = ACTIONS(12287), + [anon_sym_BSLASHtextcolor] = ACTIONS(12287), + [anon_sym_BSLASHpagecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12287), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12287), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12287), + }, + [1007] = { + [sym_generic_command_name] = ACTIONS(12291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12291), + [aux_sym_section_token1] = ACTIONS(12291), + [aux_sym_subsection_token1] = ACTIONS(12291), + [aux_sym_subsubsection_token1] = ACTIONS(12291), + [aux_sym_paragraph_token1] = ACTIONS(12291), + [aux_sym_subparagraph_token1] = ACTIONS(12291), + [anon_sym_BSLASHitem] = ACTIONS(12291), + [anon_sym_LBRACK] = ACTIONS(12289), + [anon_sym_RBRACK] = ACTIONS(12289), + [anon_sym_LBRACE] = ACTIONS(12289), + [anon_sym_RBRACE] = ACTIONS(12289), + [anon_sym_LPAREN] = ACTIONS(12289), + [anon_sym_COMMA] = ACTIONS(12289), + [anon_sym_EQ] = ACTIONS(12289), + [sym_word] = ACTIONS(12289), + [sym_param] = ACTIONS(12289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12289), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12289), + [anon_sym_DOLLAR] = ACTIONS(12291), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12289), + [anon_sym_BSLASHbegin] = ACTIONS(12291), + [anon_sym_BSLASHcaption] = ACTIONS(12291), + [anon_sym_BSLASHcite] = ACTIONS(12291), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCite] = ACTIONS(12291), + [anon_sym_BSLASHnocite] = ACTIONS(12291), + [anon_sym_BSLASHcitet] = ACTIONS(12291), + [anon_sym_BSLASHcitep] = ACTIONS(12291), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteauthor] = ACTIONS(12291), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12291), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitetitle] = ACTIONS(12291), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteyear] = ACTIONS(12291), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitedate] = ACTIONS(12291), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteurl] = ACTIONS(12291), + [anon_sym_BSLASHfullcite] = ACTIONS(12291), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12291), + [anon_sym_BSLASHcitealt] = ACTIONS(12291), + [anon_sym_BSLASHcitealp] = ACTIONS(12291), + [anon_sym_BSLASHcitetext] = ACTIONS(12291), + [anon_sym_BSLASHparencite] = ACTIONS(12291), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHParencite] = ACTIONS(12291), + [anon_sym_BSLASHfootcite] = ACTIONS(12291), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12291), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12291), + [anon_sym_BSLASHtextcite] = ACTIONS(12291), + [anon_sym_BSLASHTextcite] = ACTIONS(12291), + [anon_sym_BSLASHsmartcite] = ACTIONS(12291), + [anon_sym_BSLASHSmartcite] = ACTIONS(12291), + [anon_sym_BSLASHsupercite] = ACTIONS(12291), + [anon_sym_BSLASHautocite] = ACTIONS(12291), + [anon_sym_BSLASHAutocite] = ACTIONS(12291), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHvolcite] = ACTIONS(12291), + [anon_sym_BSLASHVolcite] = ACTIONS(12291), + [anon_sym_BSLASHpvolcite] = ACTIONS(12291), + [anon_sym_BSLASHPvolcite] = ACTIONS(12291), + [anon_sym_BSLASHfvolcite] = ACTIONS(12291), + [anon_sym_BSLASHftvolcite] = ACTIONS(12291), + [anon_sym_BSLASHsvolcite] = ACTIONS(12291), + [anon_sym_BSLASHSvolcite] = ACTIONS(12291), + [anon_sym_BSLASHtvolcite] = ACTIONS(12291), + [anon_sym_BSLASHTvolcite] = ACTIONS(12291), + [anon_sym_BSLASHavolcite] = ACTIONS(12291), + [anon_sym_BSLASHAvolcite] = ACTIONS(12291), + [anon_sym_BSLASHnotecite] = ACTIONS(12291), + [anon_sym_BSLASHpnotecite] = ACTIONS(12291), + [anon_sym_BSLASHPnotecite] = ACTIONS(12291), + [anon_sym_BSLASHfnotecite] = ACTIONS(12291), + [anon_sym_BSLASHusepackage] = ACTIONS(12291), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12291), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12291), + [anon_sym_BSLASHinclude] = ACTIONS(12291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12291), + [anon_sym_BSLASHinput] = ACTIONS(12291), + [anon_sym_BSLASHsubfile] = ACTIONS(12291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12291), + [anon_sym_BSLASHbibliography] = ACTIONS(12291), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12291), + [anon_sym_BSLASHincludesvg] = ACTIONS(12291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12291), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12291), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12291), + [anon_sym_BSLASHimport] = ACTIONS(12291), + [anon_sym_BSLASHsubimport] = ACTIONS(12291), + [anon_sym_BSLASHinputfrom] = ACTIONS(12291), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12291), + [anon_sym_BSLASHincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHlabel] = ACTIONS(12291), + [anon_sym_BSLASHref] = ACTIONS(12291), + [anon_sym_BSLASHvref] = ACTIONS(12291), + [anon_sym_BSLASHVref] = ACTIONS(12291), + [anon_sym_BSLASHautoref] = ACTIONS(12291), + [anon_sym_BSLASHpageref] = ACTIONS(12291), + [anon_sym_BSLASHcref] = ACTIONS(12291), + [anon_sym_BSLASHCref] = ACTIONS(12291), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnameCref] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHlabelcref] = ACTIONS(12291), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12291), + [anon_sym_BSLASHeqref] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange] = ACTIONS(12291), + [anon_sym_BSLASHCrefrange] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewlabel] = ACTIONS(12291), + [anon_sym_BSLASHnewcommand] = ACTIONS(12291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12291), + [anon_sym_BSLASHgls] = ACTIONS(12291), + [anon_sym_BSLASHGls] = ACTIONS(12291), + [anon_sym_BSLASHGLS] = ACTIONS(12291), + [anon_sym_BSLASHglspl] = ACTIONS(12291), + [anon_sym_BSLASHGlspl] = ACTIONS(12291), + [anon_sym_BSLASHGLSpl] = ACTIONS(12291), + [anon_sym_BSLASHglsdisp] = ACTIONS(12291), + [anon_sym_BSLASHglslink] = ACTIONS(12291), + [anon_sym_BSLASHglstext] = ACTIONS(12291), + [anon_sym_BSLASHGlstext] = ACTIONS(12291), + [anon_sym_BSLASHGLStext] = ACTIONS(12291), + [anon_sym_BSLASHglsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12291), + [anon_sym_BSLASHglsplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSplural] = ACTIONS(12291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHglsname] = ACTIONS(12291), + [anon_sym_BSLASHGlsname] = ACTIONS(12291), + [anon_sym_BSLASHGLSname] = ACTIONS(12291), + [anon_sym_BSLASHglssymbol] = ACTIONS(12291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12291), + [anon_sym_BSLASHglsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12291), + [anon_sym_BSLASHglsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12291), + [anon_sym_BSLASHglsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12291), + [anon_sym_BSLASHglsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12291), + [anon_sym_BSLASHglsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12291), + [anon_sym_BSLASHnewacronym] = ACTIONS(12291), + [anon_sym_BSLASHacrshort] = ACTIONS(12291), + [anon_sym_BSLASHAcrshort] = ACTIONS(12291), + [anon_sym_BSLASHACRshort] = ACTIONS(12291), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12291), + [anon_sym_BSLASHacrlong] = ACTIONS(12291), + [anon_sym_BSLASHAcrlong] = ACTIONS(12291), + [anon_sym_BSLASHACRlong] = ACTIONS(12291), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12291), + [anon_sym_BSLASHacrfull] = ACTIONS(12291), + [anon_sym_BSLASHAcrfull] = ACTIONS(12291), + [anon_sym_BSLASHACRfull] = ACTIONS(12291), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12291), + [anon_sym_BSLASHacs] = ACTIONS(12291), + [anon_sym_BSLASHAcs] = ACTIONS(12291), + [anon_sym_BSLASHacsp] = ACTIONS(12291), + [anon_sym_BSLASHAcsp] = ACTIONS(12291), + [anon_sym_BSLASHacl] = ACTIONS(12291), + [anon_sym_BSLASHAcl] = ACTIONS(12291), + [anon_sym_BSLASHaclp] = ACTIONS(12291), + [anon_sym_BSLASHAclp] = ACTIONS(12291), + [anon_sym_BSLASHacf] = ACTIONS(12291), + [anon_sym_BSLASHAcf] = ACTIONS(12291), + [anon_sym_BSLASHacfp] = ACTIONS(12291), + [anon_sym_BSLASHAcfp] = ACTIONS(12291), + [anon_sym_BSLASHac] = ACTIONS(12291), + [anon_sym_BSLASHAc] = ACTIONS(12291), + [anon_sym_BSLASHacp] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12291), + [anon_sym_BSLASHcolor] = ACTIONS(12291), + [anon_sym_BSLASHcolorbox] = ACTIONS(12291), + [anon_sym_BSLASHtextcolor] = ACTIONS(12291), + [anon_sym_BSLASHpagecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12291), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12291), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12291), + }, + [1008] = { + [sym_generic_command_name] = ACTIONS(12295), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12295), + [aux_sym_section_token1] = ACTIONS(12295), + [aux_sym_subsection_token1] = ACTIONS(12295), + [aux_sym_subsubsection_token1] = ACTIONS(12295), + [aux_sym_paragraph_token1] = ACTIONS(12295), + [aux_sym_subparagraph_token1] = ACTIONS(12295), + [anon_sym_BSLASHitem] = ACTIONS(12295), + [anon_sym_LBRACK] = ACTIONS(12293), + [anon_sym_RBRACK] = ACTIONS(12293), + [anon_sym_LBRACE] = ACTIONS(12293), + [anon_sym_RBRACE] = ACTIONS(12293), + [anon_sym_LPAREN] = ACTIONS(12293), + [anon_sym_COMMA] = ACTIONS(12293), + [anon_sym_EQ] = ACTIONS(12293), + [sym_word] = ACTIONS(12293), + [sym_param] = ACTIONS(12293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12293), + [anon_sym_DOLLAR] = ACTIONS(12295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12293), + [anon_sym_BSLASHbegin] = ACTIONS(12295), + [anon_sym_BSLASHcaption] = ACTIONS(12295), + [anon_sym_BSLASHcite] = ACTIONS(12295), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCite] = ACTIONS(12295), + [anon_sym_BSLASHnocite] = ACTIONS(12295), + [anon_sym_BSLASHcitet] = ACTIONS(12295), + [anon_sym_BSLASHcitep] = ACTIONS(12295), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteauthor] = ACTIONS(12295), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12295), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitetitle] = ACTIONS(12295), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteyear] = ACTIONS(12295), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitedate] = ACTIONS(12295), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteurl] = ACTIONS(12295), + [anon_sym_BSLASHfullcite] = ACTIONS(12295), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12295), + [anon_sym_BSLASHcitealt] = ACTIONS(12295), + [anon_sym_BSLASHcitealp] = ACTIONS(12295), + [anon_sym_BSLASHcitetext] = ACTIONS(12295), + [anon_sym_BSLASHparencite] = ACTIONS(12295), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHParencite] = ACTIONS(12295), + [anon_sym_BSLASHfootcite] = ACTIONS(12295), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12295), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12295), + [anon_sym_BSLASHtextcite] = ACTIONS(12295), + [anon_sym_BSLASHTextcite] = ACTIONS(12295), + [anon_sym_BSLASHsmartcite] = ACTIONS(12295), + [anon_sym_BSLASHSmartcite] = ACTIONS(12295), + [anon_sym_BSLASHsupercite] = ACTIONS(12295), + [anon_sym_BSLASHautocite] = ACTIONS(12295), + [anon_sym_BSLASHAutocite] = ACTIONS(12295), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHvolcite] = ACTIONS(12295), + [anon_sym_BSLASHVolcite] = ACTIONS(12295), + [anon_sym_BSLASHpvolcite] = ACTIONS(12295), + [anon_sym_BSLASHPvolcite] = ACTIONS(12295), + [anon_sym_BSLASHfvolcite] = ACTIONS(12295), + [anon_sym_BSLASHftvolcite] = ACTIONS(12295), + [anon_sym_BSLASHsvolcite] = ACTIONS(12295), + [anon_sym_BSLASHSvolcite] = ACTIONS(12295), + [anon_sym_BSLASHtvolcite] = ACTIONS(12295), + [anon_sym_BSLASHTvolcite] = ACTIONS(12295), + [anon_sym_BSLASHavolcite] = ACTIONS(12295), + [anon_sym_BSLASHAvolcite] = ACTIONS(12295), + [anon_sym_BSLASHnotecite] = ACTIONS(12295), + [anon_sym_BSLASHpnotecite] = ACTIONS(12295), + [anon_sym_BSLASHPnotecite] = ACTIONS(12295), + [anon_sym_BSLASHfnotecite] = ACTIONS(12295), + [anon_sym_BSLASHusepackage] = ACTIONS(12295), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12295), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12295), + [anon_sym_BSLASHinclude] = ACTIONS(12295), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12295), + [anon_sym_BSLASHinput] = ACTIONS(12295), + [anon_sym_BSLASHsubfile] = ACTIONS(12295), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12295), + [anon_sym_BSLASHbibliography] = ACTIONS(12295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12295), + [anon_sym_BSLASHincludesvg] = ACTIONS(12295), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12295), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12295), + [anon_sym_BSLASHimport] = ACTIONS(12295), + [anon_sym_BSLASHsubimport] = ACTIONS(12295), + [anon_sym_BSLASHinputfrom] = ACTIONS(12295), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12295), + [anon_sym_BSLASHincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHlabel] = ACTIONS(12295), + [anon_sym_BSLASHref] = ACTIONS(12295), + [anon_sym_BSLASHvref] = ACTIONS(12295), + [anon_sym_BSLASHVref] = ACTIONS(12295), + [anon_sym_BSLASHautoref] = ACTIONS(12295), + [anon_sym_BSLASHpageref] = ACTIONS(12295), + [anon_sym_BSLASHcref] = ACTIONS(12295), + [anon_sym_BSLASHCref] = ACTIONS(12295), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnameCref] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHlabelcref] = ACTIONS(12295), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12295), + [anon_sym_BSLASHeqref] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange] = ACTIONS(12295), + [anon_sym_BSLASHCrefrange] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewlabel] = ACTIONS(12295), + [anon_sym_BSLASHnewcommand] = ACTIONS(12295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12295), + [anon_sym_BSLASHgls] = ACTIONS(12295), + [anon_sym_BSLASHGls] = ACTIONS(12295), + [anon_sym_BSLASHGLS] = ACTIONS(12295), + [anon_sym_BSLASHglspl] = ACTIONS(12295), + [anon_sym_BSLASHGlspl] = ACTIONS(12295), + [anon_sym_BSLASHGLSpl] = ACTIONS(12295), + [anon_sym_BSLASHglsdisp] = ACTIONS(12295), + [anon_sym_BSLASHglslink] = ACTIONS(12295), + [anon_sym_BSLASHglstext] = ACTIONS(12295), + [anon_sym_BSLASHGlstext] = ACTIONS(12295), + [anon_sym_BSLASHGLStext] = ACTIONS(12295), + [anon_sym_BSLASHglsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12295), + [anon_sym_BSLASHglsplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSplural] = ACTIONS(12295), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHglsname] = ACTIONS(12295), + [anon_sym_BSLASHGlsname] = ACTIONS(12295), + [anon_sym_BSLASHGLSname] = ACTIONS(12295), + [anon_sym_BSLASHglssymbol] = ACTIONS(12295), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12295), + [anon_sym_BSLASHglsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12295), + [anon_sym_BSLASHglsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12295), + [anon_sym_BSLASHglsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12295), + [anon_sym_BSLASHglsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12295), + [anon_sym_BSLASHglsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12295), + [anon_sym_BSLASHnewacronym] = ACTIONS(12295), + [anon_sym_BSLASHacrshort] = ACTIONS(12295), + [anon_sym_BSLASHAcrshort] = ACTIONS(12295), + [anon_sym_BSLASHACRshort] = ACTIONS(12295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12295), + [anon_sym_BSLASHacrlong] = ACTIONS(12295), + [anon_sym_BSLASHAcrlong] = ACTIONS(12295), + [anon_sym_BSLASHACRlong] = ACTIONS(12295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12295), + [anon_sym_BSLASHacrfull] = ACTIONS(12295), + [anon_sym_BSLASHAcrfull] = ACTIONS(12295), + [anon_sym_BSLASHACRfull] = ACTIONS(12295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12295), + [anon_sym_BSLASHacs] = ACTIONS(12295), + [anon_sym_BSLASHAcs] = ACTIONS(12295), + [anon_sym_BSLASHacsp] = ACTIONS(12295), + [anon_sym_BSLASHAcsp] = ACTIONS(12295), + [anon_sym_BSLASHacl] = ACTIONS(12295), + [anon_sym_BSLASHAcl] = ACTIONS(12295), + [anon_sym_BSLASHaclp] = ACTIONS(12295), + [anon_sym_BSLASHAclp] = ACTIONS(12295), + [anon_sym_BSLASHacf] = ACTIONS(12295), + [anon_sym_BSLASHAcf] = ACTIONS(12295), + [anon_sym_BSLASHacfp] = ACTIONS(12295), + [anon_sym_BSLASHAcfp] = ACTIONS(12295), + [anon_sym_BSLASHac] = ACTIONS(12295), + [anon_sym_BSLASHAc] = ACTIONS(12295), + [anon_sym_BSLASHacp] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12295), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12295), + [anon_sym_BSLASHcolor] = ACTIONS(12295), + [anon_sym_BSLASHcolorbox] = ACTIONS(12295), + [anon_sym_BSLASHtextcolor] = ACTIONS(12295), + [anon_sym_BSLASHpagecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12295), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12295), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12295), + }, + [1009] = { + [sym_generic_command_name] = ACTIONS(12303), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12303), + [aux_sym_section_token1] = ACTIONS(12303), + [aux_sym_subsection_token1] = ACTIONS(12303), + [aux_sym_subsubsection_token1] = ACTIONS(12303), + [aux_sym_paragraph_token1] = ACTIONS(12303), + [aux_sym_subparagraph_token1] = ACTIONS(12303), + [anon_sym_BSLASHitem] = ACTIONS(12303), + [anon_sym_LBRACK] = ACTIONS(12301), + [anon_sym_RBRACK] = ACTIONS(12301), + [anon_sym_LBRACE] = ACTIONS(12301), + [anon_sym_RBRACE] = ACTIONS(12301), + [anon_sym_LPAREN] = ACTIONS(12301), + [anon_sym_COMMA] = ACTIONS(12301), + [anon_sym_EQ] = ACTIONS(12301), + [sym_word] = ACTIONS(12301), + [sym_param] = ACTIONS(12301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12301), + [anon_sym_DOLLAR] = ACTIONS(12303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12301), + [anon_sym_BSLASHbegin] = ACTIONS(12303), + [anon_sym_BSLASHcaption] = ACTIONS(12303), + [anon_sym_BSLASHcite] = ACTIONS(12303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCite] = ACTIONS(12303), + [anon_sym_BSLASHnocite] = ACTIONS(12303), + [anon_sym_BSLASHcitet] = ACTIONS(12303), + [anon_sym_BSLASHcitep] = ACTIONS(12303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteauthor] = ACTIONS(12303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitetitle] = ACTIONS(12303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteyear] = ACTIONS(12303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitedate] = ACTIONS(12303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteurl] = ACTIONS(12303), + [anon_sym_BSLASHfullcite] = ACTIONS(12303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12303), + [anon_sym_BSLASHcitealt] = ACTIONS(12303), + [anon_sym_BSLASHcitealp] = ACTIONS(12303), + [anon_sym_BSLASHcitetext] = ACTIONS(12303), + [anon_sym_BSLASHparencite] = ACTIONS(12303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHParencite] = ACTIONS(12303), + [anon_sym_BSLASHfootcite] = ACTIONS(12303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12303), + [anon_sym_BSLASHtextcite] = ACTIONS(12303), + [anon_sym_BSLASHTextcite] = ACTIONS(12303), + [anon_sym_BSLASHsmartcite] = ACTIONS(12303), + [anon_sym_BSLASHSmartcite] = ACTIONS(12303), + [anon_sym_BSLASHsupercite] = ACTIONS(12303), + [anon_sym_BSLASHautocite] = ACTIONS(12303), + [anon_sym_BSLASHAutocite] = ACTIONS(12303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHvolcite] = ACTIONS(12303), + [anon_sym_BSLASHVolcite] = ACTIONS(12303), + [anon_sym_BSLASHpvolcite] = ACTIONS(12303), + [anon_sym_BSLASHPvolcite] = ACTIONS(12303), + [anon_sym_BSLASHfvolcite] = ACTIONS(12303), + [anon_sym_BSLASHftvolcite] = ACTIONS(12303), + [anon_sym_BSLASHsvolcite] = ACTIONS(12303), + [anon_sym_BSLASHSvolcite] = ACTIONS(12303), + [anon_sym_BSLASHtvolcite] = ACTIONS(12303), + [anon_sym_BSLASHTvolcite] = ACTIONS(12303), + [anon_sym_BSLASHavolcite] = ACTIONS(12303), + [anon_sym_BSLASHAvolcite] = ACTIONS(12303), + [anon_sym_BSLASHnotecite] = ACTIONS(12303), + [anon_sym_BSLASHpnotecite] = ACTIONS(12303), + [anon_sym_BSLASHPnotecite] = ACTIONS(12303), + [anon_sym_BSLASHfnotecite] = ACTIONS(12303), + [anon_sym_BSLASHusepackage] = ACTIONS(12303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12303), + [anon_sym_BSLASHinclude] = ACTIONS(12303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12303), + [anon_sym_BSLASHinput] = ACTIONS(12303), + [anon_sym_BSLASHsubfile] = ACTIONS(12303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12303), + [anon_sym_BSLASHbibliography] = ACTIONS(12303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12303), + [anon_sym_BSLASHincludesvg] = ACTIONS(12303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12303), + [anon_sym_BSLASHimport] = ACTIONS(12303), + [anon_sym_BSLASHsubimport] = ACTIONS(12303), + [anon_sym_BSLASHinputfrom] = ACTIONS(12303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12303), + [anon_sym_BSLASHincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHlabel] = ACTIONS(12303), + [anon_sym_BSLASHref] = ACTIONS(12303), + [anon_sym_BSLASHvref] = ACTIONS(12303), + [anon_sym_BSLASHVref] = ACTIONS(12303), + [anon_sym_BSLASHautoref] = ACTIONS(12303), + [anon_sym_BSLASHpageref] = ACTIONS(12303), + [anon_sym_BSLASHcref] = ACTIONS(12303), + [anon_sym_BSLASHCref] = ACTIONS(12303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnameCref] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHlabelcref] = ACTIONS(12303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12303), + [anon_sym_BSLASHeqref] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange] = ACTIONS(12303), + [anon_sym_BSLASHCrefrange] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewlabel] = ACTIONS(12303), + [anon_sym_BSLASHnewcommand] = ACTIONS(12303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12303), + [anon_sym_BSLASHgls] = ACTIONS(12303), + [anon_sym_BSLASHGls] = ACTIONS(12303), + [anon_sym_BSLASHGLS] = ACTIONS(12303), + [anon_sym_BSLASHglspl] = ACTIONS(12303), + [anon_sym_BSLASHGlspl] = ACTIONS(12303), + [anon_sym_BSLASHGLSpl] = ACTIONS(12303), + [anon_sym_BSLASHglsdisp] = ACTIONS(12303), + [anon_sym_BSLASHglslink] = ACTIONS(12303), + [anon_sym_BSLASHglstext] = ACTIONS(12303), + [anon_sym_BSLASHGlstext] = ACTIONS(12303), + [anon_sym_BSLASHGLStext] = ACTIONS(12303), + [anon_sym_BSLASHglsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12303), + [anon_sym_BSLASHglsplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSplural] = ACTIONS(12303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHglsname] = ACTIONS(12303), + [anon_sym_BSLASHGlsname] = ACTIONS(12303), + [anon_sym_BSLASHGLSname] = ACTIONS(12303), + [anon_sym_BSLASHglssymbol] = ACTIONS(12303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12303), + [anon_sym_BSLASHglsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12303), + [anon_sym_BSLASHglsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12303), + [anon_sym_BSLASHglsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12303), + [anon_sym_BSLASHglsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12303), + [anon_sym_BSLASHglsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12303), + [anon_sym_BSLASHnewacronym] = ACTIONS(12303), + [anon_sym_BSLASHacrshort] = ACTIONS(12303), + [anon_sym_BSLASHAcrshort] = ACTIONS(12303), + [anon_sym_BSLASHACRshort] = ACTIONS(12303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12303), + [anon_sym_BSLASHacrlong] = ACTIONS(12303), + [anon_sym_BSLASHAcrlong] = ACTIONS(12303), + [anon_sym_BSLASHACRlong] = ACTIONS(12303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12303), + [anon_sym_BSLASHacrfull] = ACTIONS(12303), + [anon_sym_BSLASHAcrfull] = ACTIONS(12303), + [anon_sym_BSLASHACRfull] = ACTIONS(12303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12303), + [anon_sym_BSLASHacs] = ACTIONS(12303), + [anon_sym_BSLASHAcs] = ACTIONS(12303), + [anon_sym_BSLASHacsp] = ACTIONS(12303), + [anon_sym_BSLASHAcsp] = ACTIONS(12303), + [anon_sym_BSLASHacl] = ACTIONS(12303), + [anon_sym_BSLASHAcl] = ACTIONS(12303), + [anon_sym_BSLASHaclp] = ACTIONS(12303), + [anon_sym_BSLASHAclp] = ACTIONS(12303), + [anon_sym_BSLASHacf] = ACTIONS(12303), + [anon_sym_BSLASHAcf] = ACTIONS(12303), + [anon_sym_BSLASHacfp] = ACTIONS(12303), + [anon_sym_BSLASHAcfp] = ACTIONS(12303), + [anon_sym_BSLASHac] = ACTIONS(12303), + [anon_sym_BSLASHAc] = ACTIONS(12303), + [anon_sym_BSLASHacp] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12303), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12303), + [anon_sym_BSLASHcolor] = ACTIONS(12303), + [anon_sym_BSLASHcolorbox] = ACTIONS(12303), + [anon_sym_BSLASHtextcolor] = ACTIONS(12303), + [anon_sym_BSLASHpagecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12303), + }, + [1010] = { + [sym_generic_command_name] = ACTIONS(12307), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12307), + [aux_sym_section_token1] = ACTIONS(12307), + [aux_sym_subsection_token1] = ACTIONS(12307), + [aux_sym_subsubsection_token1] = ACTIONS(12307), + [aux_sym_paragraph_token1] = ACTIONS(12307), + [aux_sym_subparagraph_token1] = ACTIONS(12307), + [anon_sym_BSLASHitem] = ACTIONS(12307), + [anon_sym_LBRACK] = ACTIONS(12305), + [anon_sym_RBRACK] = ACTIONS(12305), + [anon_sym_LBRACE] = ACTIONS(12305), + [anon_sym_RBRACE] = ACTIONS(12305), + [anon_sym_LPAREN] = ACTIONS(12305), + [anon_sym_COMMA] = ACTIONS(12305), + [anon_sym_EQ] = ACTIONS(12305), + [sym_word] = ACTIONS(12305), + [sym_param] = ACTIONS(12305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12305), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12305), + [anon_sym_DOLLAR] = ACTIONS(12307), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12305), + [anon_sym_BSLASHbegin] = ACTIONS(12307), + [anon_sym_BSLASHcaption] = ACTIONS(12307), + [anon_sym_BSLASHcite] = ACTIONS(12307), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCite] = ACTIONS(12307), + [anon_sym_BSLASHnocite] = ACTIONS(12307), + [anon_sym_BSLASHcitet] = ACTIONS(12307), + [anon_sym_BSLASHcitep] = ACTIONS(12307), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteauthor] = ACTIONS(12307), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12307), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitetitle] = ACTIONS(12307), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteyear] = ACTIONS(12307), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitedate] = ACTIONS(12307), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteurl] = ACTIONS(12307), + [anon_sym_BSLASHfullcite] = ACTIONS(12307), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12307), + [anon_sym_BSLASHcitealt] = ACTIONS(12307), + [anon_sym_BSLASHcitealp] = ACTIONS(12307), + [anon_sym_BSLASHcitetext] = ACTIONS(12307), + [anon_sym_BSLASHparencite] = ACTIONS(12307), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHParencite] = ACTIONS(12307), + [anon_sym_BSLASHfootcite] = ACTIONS(12307), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12307), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12307), + [anon_sym_BSLASHtextcite] = ACTIONS(12307), + [anon_sym_BSLASHTextcite] = ACTIONS(12307), + [anon_sym_BSLASHsmartcite] = ACTIONS(12307), + [anon_sym_BSLASHSmartcite] = ACTIONS(12307), + [anon_sym_BSLASHsupercite] = ACTIONS(12307), + [anon_sym_BSLASHautocite] = ACTIONS(12307), + [anon_sym_BSLASHAutocite] = ACTIONS(12307), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHvolcite] = ACTIONS(12307), + [anon_sym_BSLASHVolcite] = ACTIONS(12307), + [anon_sym_BSLASHpvolcite] = ACTIONS(12307), + [anon_sym_BSLASHPvolcite] = ACTIONS(12307), + [anon_sym_BSLASHfvolcite] = ACTIONS(12307), + [anon_sym_BSLASHftvolcite] = ACTIONS(12307), + [anon_sym_BSLASHsvolcite] = ACTIONS(12307), + [anon_sym_BSLASHSvolcite] = ACTIONS(12307), + [anon_sym_BSLASHtvolcite] = ACTIONS(12307), + [anon_sym_BSLASHTvolcite] = ACTIONS(12307), + [anon_sym_BSLASHavolcite] = ACTIONS(12307), + [anon_sym_BSLASHAvolcite] = ACTIONS(12307), + [anon_sym_BSLASHnotecite] = ACTIONS(12307), + [anon_sym_BSLASHpnotecite] = ACTIONS(12307), + [anon_sym_BSLASHPnotecite] = ACTIONS(12307), + [anon_sym_BSLASHfnotecite] = ACTIONS(12307), + [anon_sym_BSLASHusepackage] = ACTIONS(12307), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12307), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12307), + [anon_sym_BSLASHinclude] = ACTIONS(12307), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12307), + [anon_sym_BSLASHinput] = ACTIONS(12307), + [anon_sym_BSLASHsubfile] = ACTIONS(12307), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12307), + [anon_sym_BSLASHbibliography] = ACTIONS(12307), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12307), + [anon_sym_BSLASHincludesvg] = ACTIONS(12307), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12307), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12307), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12307), + [anon_sym_BSLASHimport] = ACTIONS(12307), + [anon_sym_BSLASHsubimport] = ACTIONS(12307), + [anon_sym_BSLASHinputfrom] = ACTIONS(12307), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12307), + [anon_sym_BSLASHincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHlabel] = ACTIONS(12307), + [anon_sym_BSLASHref] = ACTIONS(12307), + [anon_sym_BSLASHvref] = ACTIONS(12307), + [anon_sym_BSLASHVref] = ACTIONS(12307), + [anon_sym_BSLASHautoref] = ACTIONS(12307), + [anon_sym_BSLASHpageref] = ACTIONS(12307), + [anon_sym_BSLASHcref] = ACTIONS(12307), + [anon_sym_BSLASHCref] = ACTIONS(12307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnameCref] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHlabelcref] = ACTIONS(12307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12307), + [anon_sym_BSLASHeqref] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange] = ACTIONS(12307), + [anon_sym_BSLASHCrefrange] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewlabel] = ACTIONS(12307), + [anon_sym_BSLASHnewcommand] = ACTIONS(12307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12307), + [anon_sym_BSLASHgls] = ACTIONS(12307), + [anon_sym_BSLASHGls] = ACTIONS(12307), + [anon_sym_BSLASHGLS] = ACTIONS(12307), + [anon_sym_BSLASHglspl] = ACTIONS(12307), + [anon_sym_BSLASHGlspl] = ACTIONS(12307), + [anon_sym_BSLASHGLSpl] = ACTIONS(12307), + [anon_sym_BSLASHglsdisp] = ACTIONS(12307), + [anon_sym_BSLASHglslink] = ACTIONS(12307), + [anon_sym_BSLASHglstext] = ACTIONS(12307), + [anon_sym_BSLASHGlstext] = ACTIONS(12307), + [anon_sym_BSLASHGLStext] = ACTIONS(12307), + [anon_sym_BSLASHglsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12307), + [anon_sym_BSLASHglsplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSplural] = ACTIONS(12307), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHglsname] = ACTIONS(12307), + [anon_sym_BSLASHGlsname] = ACTIONS(12307), + [anon_sym_BSLASHGLSname] = ACTIONS(12307), + [anon_sym_BSLASHglssymbol] = ACTIONS(12307), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12307), + [anon_sym_BSLASHglsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12307), + [anon_sym_BSLASHglsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12307), + [anon_sym_BSLASHglsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12307), + [anon_sym_BSLASHglsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12307), + [anon_sym_BSLASHglsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12307), + [anon_sym_BSLASHnewacronym] = ACTIONS(12307), + [anon_sym_BSLASHacrshort] = ACTIONS(12307), + [anon_sym_BSLASHAcrshort] = ACTIONS(12307), + [anon_sym_BSLASHACRshort] = ACTIONS(12307), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12307), + [anon_sym_BSLASHacrlong] = ACTIONS(12307), + [anon_sym_BSLASHAcrlong] = ACTIONS(12307), + [anon_sym_BSLASHACRlong] = ACTIONS(12307), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12307), + [anon_sym_BSLASHacrfull] = ACTIONS(12307), + [anon_sym_BSLASHAcrfull] = ACTIONS(12307), + [anon_sym_BSLASHACRfull] = ACTIONS(12307), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12307), + [anon_sym_BSLASHacs] = ACTIONS(12307), + [anon_sym_BSLASHAcs] = ACTIONS(12307), + [anon_sym_BSLASHacsp] = ACTIONS(12307), + [anon_sym_BSLASHAcsp] = ACTIONS(12307), + [anon_sym_BSLASHacl] = ACTIONS(12307), + [anon_sym_BSLASHAcl] = ACTIONS(12307), + [anon_sym_BSLASHaclp] = ACTIONS(12307), + [anon_sym_BSLASHAclp] = ACTIONS(12307), + [anon_sym_BSLASHacf] = ACTIONS(12307), + [anon_sym_BSLASHAcf] = ACTIONS(12307), + [anon_sym_BSLASHacfp] = ACTIONS(12307), + [anon_sym_BSLASHAcfp] = ACTIONS(12307), + [anon_sym_BSLASHac] = ACTIONS(12307), + [anon_sym_BSLASHAc] = ACTIONS(12307), + [anon_sym_BSLASHacp] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12307), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12307), + [anon_sym_BSLASHcolor] = ACTIONS(12307), + [anon_sym_BSLASHcolorbox] = ACTIONS(12307), + [anon_sym_BSLASHtextcolor] = ACTIONS(12307), + [anon_sym_BSLASHpagecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12307), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12307), + }, + [1011] = { + [sym_generic_command_name] = ACTIONS(12315), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12315), + [aux_sym_section_token1] = ACTIONS(12315), + [aux_sym_subsection_token1] = ACTIONS(12315), + [aux_sym_subsubsection_token1] = ACTIONS(12315), + [aux_sym_paragraph_token1] = ACTIONS(12315), + [aux_sym_subparagraph_token1] = ACTIONS(12315), + [anon_sym_BSLASHitem] = ACTIONS(12315), + [anon_sym_LBRACK] = ACTIONS(12313), + [anon_sym_RBRACK] = ACTIONS(12313), + [anon_sym_LBRACE] = ACTIONS(12313), + [anon_sym_RBRACE] = ACTIONS(12313), + [anon_sym_LPAREN] = ACTIONS(12313), + [anon_sym_COMMA] = ACTIONS(12313), + [anon_sym_EQ] = ACTIONS(12313), + [sym_word] = ACTIONS(12313), + [sym_param] = ACTIONS(12313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12313), + [anon_sym_DOLLAR] = ACTIONS(12315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12313), + [anon_sym_BSLASHbegin] = ACTIONS(12315), + [anon_sym_BSLASHcaption] = ACTIONS(12315), + [anon_sym_BSLASHcite] = ACTIONS(12315), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCite] = ACTIONS(12315), + [anon_sym_BSLASHnocite] = ACTIONS(12315), + [anon_sym_BSLASHcitet] = ACTIONS(12315), + [anon_sym_BSLASHcitep] = ACTIONS(12315), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteauthor] = ACTIONS(12315), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12315), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitetitle] = ACTIONS(12315), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteyear] = ACTIONS(12315), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitedate] = ACTIONS(12315), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteurl] = ACTIONS(12315), + [anon_sym_BSLASHfullcite] = ACTIONS(12315), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12315), + [anon_sym_BSLASHcitealt] = ACTIONS(12315), + [anon_sym_BSLASHcitealp] = ACTIONS(12315), + [anon_sym_BSLASHcitetext] = ACTIONS(12315), + [anon_sym_BSLASHparencite] = ACTIONS(12315), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHParencite] = ACTIONS(12315), + [anon_sym_BSLASHfootcite] = ACTIONS(12315), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12315), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12315), + [anon_sym_BSLASHtextcite] = ACTIONS(12315), + [anon_sym_BSLASHTextcite] = ACTIONS(12315), + [anon_sym_BSLASHsmartcite] = ACTIONS(12315), + [anon_sym_BSLASHSmartcite] = ACTIONS(12315), + [anon_sym_BSLASHsupercite] = ACTIONS(12315), + [anon_sym_BSLASHautocite] = ACTIONS(12315), + [anon_sym_BSLASHAutocite] = ACTIONS(12315), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHvolcite] = ACTIONS(12315), + [anon_sym_BSLASHVolcite] = ACTIONS(12315), + [anon_sym_BSLASHpvolcite] = ACTIONS(12315), + [anon_sym_BSLASHPvolcite] = ACTIONS(12315), + [anon_sym_BSLASHfvolcite] = ACTIONS(12315), + [anon_sym_BSLASHftvolcite] = ACTIONS(12315), + [anon_sym_BSLASHsvolcite] = ACTIONS(12315), + [anon_sym_BSLASHSvolcite] = ACTIONS(12315), + [anon_sym_BSLASHtvolcite] = ACTIONS(12315), + [anon_sym_BSLASHTvolcite] = ACTIONS(12315), + [anon_sym_BSLASHavolcite] = ACTIONS(12315), + [anon_sym_BSLASHAvolcite] = ACTIONS(12315), + [anon_sym_BSLASHnotecite] = ACTIONS(12315), + [anon_sym_BSLASHpnotecite] = ACTIONS(12315), + [anon_sym_BSLASHPnotecite] = ACTIONS(12315), + [anon_sym_BSLASHfnotecite] = ACTIONS(12315), + [anon_sym_BSLASHusepackage] = ACTIONS(12315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12315), + [anon_sym_BSLASHinclude] = ACTIONS(12315), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12315), + [anon_sym_BSLASHinput] = ACTIONS(12315), + [anon_sym_BSLASHsubfile] = ACTIONS(12315), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12315), + [anon_sym_BSLASHbibliography] = ACTIONS(12315), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12315), + [anon_sym_BSLASHincludesvg] = ACTIONS(12315), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12315), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12315), + [anon_sym_BSLASHimport] = ACTIONS(12315), + [anon_sym_BSLASHsubimport] = ACTIONS(12315), + [anon_sym_BSLASHinputfrom] = ACTIONS(12315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12315), + [anon_sym_BSLASHincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHlabel] = ACTIONS(12315), + [anon_sym_BSLASHref] = ACTIONS(12315), + [anon_sym_BSLASHvref] = ACTIONS(12315), + [anon_sym_BSLASHVref] = ACTIONS(12315), + [anon_sym_BSLASHautoref] = ACTIONS(12315), + [anon_sym_BSLASHpageref] = ACTIONS(12315), + [anon_sym_BSLASHcref] = ACTIONS(12315), + [anon_sym_BSLASHCref] = ACTIONS(12315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnameCref] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHlabelcref] = ACTIONS(12315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12315), + [anon_sym_BSLASHeqref] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange] = ACTIONS(12315), + [anon_sym_BSLASHCrefrange] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewlabel] = ACTIONS(12315), + [anon_sym_BSLASHnewcommand] = ACTIONS(12315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12315), + [anon_sym_BSLASHgls] = ACTIONS(12315), + [anon_sym_BSLASHGls] = ACTIONS(12315), + [anon_sym_BSLASHGLS] = ACTIONS(12315), + [anon_sym_BSLASHglspl] = ACTIONS(12315), + [anon_sym_BSLASHGlspl] = ACTIONS(12315), + [anon_sym_BSLASHGLSpl] = ACTIONS(12315), + [anon_sym_BSLASHglsdisp] = ACTIONS(12315), + [anon_sym_BSLASHglslink] = ACTIONS(12315), + [anon_sym_BSLASHglstext] = ACTIONS(12315), + [anon_sym_BSLASHGlstext] = ACTIONS(12315), + [anon_sym_BSLASHGLStext] = ACTIONS(12315), + [anon_sym_BSLASHglsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12315), + [anon_sym_BSLASHglsplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSplural] = ACTIONS(12315), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHglsname] = ACTIONS(12315), + [anon_sym_BSLASHGlsname] = ACTIONS(12315), + [anon_sym_BSLASHGLSname] = ACTIONS(12315), + [anon_sym_BSLASHglssymbol] = ACTIONS(12315), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12315), + [anon_sym_BSLASHglsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12315), + [anon_sym_BSLASHglsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12315), + [anon_sym_BSLASHglsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12315), + [anon_sym_BSLASHglsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12315), + [anon_sym_BSLASHglsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12315), + [anon_sym_BSLASHnewacronym] = ACTIONS(12315), + [anon_sym_BSLASHacrshort] = ACTIONS(12315), + [anon_sym_BSLASHAcrshort] = ACTIONS(12315), + [anon_sym_BSLASHACRshort] = ACTIONS(12315), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12315), + [anon_sym_BSLASHacrlong] = ACTIONS(12315), + [anon_sym_BSLASHAcrlong] = ACTIONS(12315), + [anon_sym_BSLASHACRlong] = ACTIONS(12315), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12315), + [anon_sym_BSLASHacrfull] = ACTIONS(12315), + [anon_sym_BSLASHAcrfull] = ACTIONS(12315), + [anon_sym_BSLASHACRfull] = ACTIONS(12315), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12315), + [anon_sym_BSLASHacs] = ACTIONS(12315), + [anon_sym_BSLASHAcs] = ACTIONS(12315), + [anon_sym_BSLASHacsp] = ACTIONS(12315), + [anon_sym_BSLASHAcsp] = ACTIONS(12315), + [anon_sym_BSLASHacl] = ACTIONS(12315), + [anon_sym_BSLASHAcl] = ACTIONS(12315), + [anon_sym_BSLASHaclp] = ACTIONS(12315), + [anon_sym_BSLASHAclp] = ACTIONS(12315), + [anon_sym_BSLASHacf] = ACTIONS(12315), + [anon_sym_BSLASHAcf] = ACTIONS(12315), + [anon_sym_BSLASHacfp] = ACTIONS(12315), + [anon_sym_BSLASHAcfp] = ACTIONS(12315), + [anon_sym_BSLASHac] = ACTIONS(12315), + [anon_sym_BSLASHAc] = ACTIONS(12315), + [anon_sym_BSLASHacp] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12315), + [anon_sym_BSLASHcolor] = ACTIONS(12315), + [anon_sym_BSLASHcolorbox] = ACTIONS(12315), + [anon_sym_BSLASHtextcolor] = ACTIONS(12315), + [anon_sym_BSLASHpagecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12315), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12315), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12315), + }, + [1012] = { + [sym_generic_command_name] = ACTIONS(12473), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12473), + [aux_sym_chapter_token1] = ACTIONS(12473), + [aux_sym_section_token1] = ACTIONS(12473), + [aux_sym_subsection_token1] = ACTIONS(12473), + [aux_sym_subsubsection_token1] = ACTIONS(12473), + [aux_sym_paragraph_token1] = ACTIONS(12473), + [aux_sym_subparagraph_token1] = ACTIONS(12473), + [anon_sym_BSLASHitem] = ACTIONS(12473), + [anon_sym_LBRACK] = ACTIONS(12471), + [anon_sym_LBRACE] = ACTIONS(12471), + [anon_sym_LPAREN] = ACTIONS(12471), + [anon_sym_COMMA] = ACTIONS(12471), + [anon_sym_EQ] = ACTIONS(12471), + [sym_word] = ACTIONS(12471), + [sym_param] = ACTIONS(12471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12471), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12471), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12471), + [anon_sym_DOLLAR] = ACTIONS(12473), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12471), + [anon_sym_BSLASHbegin] = ACTIONS(12473), + [anon_sym_BSLASHcaption] = ACTIONS(12473), + [anon_sym_BSLASHcite] = ACTIONS(12473), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCite] = ACTIONS(12473), + [anon_sym_BSLASHnocite] = ACTIONS(12473), + [anon_sym_BSLASHcitet] = ACTIONS(12473), + [anon_sym_BSLASHcitep] = ACTIONS(12473), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteauthor] = ACTIONS(12473), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12473), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitetitle] = ACTIONS(12473), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteyear] = ACTIONS(12473), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitedate] = ACTIONS(12473), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteurl] = ACTIONS(12473), + [anon_sym_BSLASHfullcite] = ACTIONS(12473), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12473), + [anon_sym_BSLASHcitealt] = ACTIONS(12473), + [anon_sym_BSLASHcitealp] = ACTIONS(12473), + [anon_sym_BSLASHcitetext] = ACTIONS(12473), + [anon_sym_BSLASHparencite] = ACTIONS(12473), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHParencite] = ACTIONS(12473), + [anon_sym_BSLASHfootcite] = ACTIONS(12473), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12473), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12473), + [anon_sym_BSLASHtextcite] = ACTIONS(12473), + [anon_sym_BSLASHTextcite] = ACTIONS(12473), + [anon_sym_BSLASHsmartcite] = ACTIONS(12473), + [anon_sym_BSLASHSmartcite] = ACTIONS(12473), + [anon_sym_BSLASHsupercite] = ACTIONS(12473), + [anon_sym_BSLASHautocite] = ACTIONS(12473), + [anon_sym_BSLASHAutocite] = ACTIONS(12473), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHvolcite] = ACTIONS(12473), + [anon_sym_BSLASHVolcite] = ACTIONS(12473), + [anon_sym_BSLASHpvolcite] = ACTIONS(12473), + [anon_sym_BSLASHPvolcite] = ACTIONS(12473), + [anon_sym_BSLASHfvolcite] = ACTIONS(12473), + [anon_sym_BSLASHftvolcite] = ACTIONS(12473), + [anon_sym_BSLASHsvolcite] = ACTIONS(12473), + [anon_sym_BSLASHSvolcite] = ACTIONS(12473), + [anon_sym_BSLASHtvolcite] = ACTIONS(12473), + [anon_sym_BSLASHTvolcite] = ACTIONS(12473), + [anon_sym_BSLASHavolcite] = ACTIONS(12473), + [anon_sym_BSLASHAvolcite] = ACTIONS(12473), + [anon_sym_BSLASHnotecite] = ACTIONS(12473), + [anon_sym_BSLASHpnotecite] = ACTIONS(12473), + [anon_sym_BSLASHPnotecite] = ACTIONS(12473), + [anon_sym_BSLASHfnotecite] = ACTIONS(12473), + [anon_sym_BSLASHusepackage] = ACTIONS(12473), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12473), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12473), + [anon_sym_BSLASHinclude] = ACTIONS(12473), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12473), + [anon_sym_BSLASHinput] = ACTIONS(12473), + [anon_sym_BSLASHsubfile] = ACTIONS(12473), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12473), + [anon_sym_BSLASHbibliography] = ACTIONS(12473), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12473), + [anon_sym_BSLASHincludesvg] = ACTIONS(12473), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12473), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12473), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12473), + [anon_sym_BSLASHimport] = ACTIONS(12473), + [anon_sym_BSLASHsubimport] = ACTIONS(12473), + [anon_sym_BSLASHinputfrom] = ACTIONS(12473), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12473), + [anon_sym_BSLASHincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHlabel] = ACTIONS(12473), + [anon_sym_BSLASHref] = ACTIONS(12473), + [anon_sym_BSLASHvref] = ACTIONS(12473), + [anon_sym_BSLASHVref] = ACTIONS(12473), + [anon_sym_BSLASHautoref] = ACTIONS(12473), + [anon_sym_BSLASHpageref] = ACTIONS(12473), + [anon_sym_BSLASHcref] = ACTIONS(12473), + [anon_sym_BSLASHCref] = ACTIONS(12473), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnameCref] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHlabelcref] = ACTIONS(12473), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12473), + [anon_sym_BSLASHeqref] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange] = ACTIONS(12473), + [anon_sym_BSLASHCrefrange] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewlabel] = ACTIONS(12473), + [anon_sym_BSLASHnewcommand] = ACTIONS(12473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12473), + [anon_sym_BSLASHgls] = ACTIONS(12473), + [anon_sym_BSLASHGls] = ACTIONS(12473), + [anon_sym_BSLASHGLS] = ACTIONS(12473), + [anon_sym_BSLASHglspl] = ACTIONS(12473), + [anon_sym_BSLASHGlspl] = ACTIONS(12473), + [anon_sym_BSLASHGLSpl] = ACTIONS(12473), + [anon_sym_BSLASHglsdisp] = ACTIONS(12473), + [anon_sym_BSLASHglslink] = ACTIONS(12473), + [anon_sym_BSLASHglstext] = ACTIONS(12473), + [anon_sym_BSLASHGlstext] = ACTIONS(12473), + [anon_sym_BSLASHGLStext] = ACTIONS(12473), + [anon_sym_BSLASHglsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12473), + [anon_sym_BSLASHglsplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSplural] = ACTIONS(12473), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHglsname] = ACTIONS(12473), + [anon_sym_BSLASHGlsname] = ACTIONS(12473), + [anon_sym_BSLASHGLSname] = ACTIONS(12473), + [anon_sym_BSLASHglssymbol] = ACTIONS(12473), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12473), + [anon_sym_BSLASHglsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12473), + [anon_sym_BSLASHglsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12473), + [anon_sym_BSLASHglsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12473), + [anon_sym_BSLASHglsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12473), + [anon_sym_BSLASHglsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12473), + [anon_sym_BSLASHnewacronym] = ACTIONS(12473), + [anon_sym_BSLASHacrshort] = ACTIONS(12473), + [anon_sym_BSLASHAcrshort] = ACTIONS(12473), + [anon_sym_BSLASHACRshort] = ACTIONS(12473), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12473), + [anon_sym_BSLASHacrlong] = ACTIONS(12473), + [anon_sym_BSLASHAcrlong] = ACTIONS(12473), + [anon_sym_BSLASHACRlong] = ACTIONS(12473), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12473), + [anon_sym_BSLASHacrfull] = ACTIONS(12473), + [anon_sym_BSLASHAcrfull] = ACTIONS(12473), + [anon_sym_BSLASHACRfull] = ACTIONS(12473), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12473), + [anon_sym_BSLASHacs] = ACTIONS(12473), + [anon_sym_BSLASHAcs] = ACTIONS(12473), + [anon_sym_BSLASHacsp] = ACTIONS(12473), + [anon_sym_BSLASHAcsp] = ACTIONS(12473), + [anon_sym_BSLASHacl] = ACTIONS(12473), + [anon_sym_BSLASHAcl] = ACTIONS(12473), + [anon_sym_BSLASHaclp] = ACTIONS(12473), + [anon_sym_BSLASHAclp] = ACTIONS(12473), + [anon_sym_BSLASHacf] = ACTIONS(12473), + [anon_sym_BSLASHAcf] = ACTIONS(12473), + [anon_sym_BSLASHacfp] = ACTIONS(12473), + [anon_sym_BSLASHAcfp] = ACTIONS(12473), + [anon_sym_BSLASHac] = ACTIONS(12473), + [anon_sym_BSLASHAc] = ACTIONS(12473), + [anon_sym_BSLASHacp] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12473), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12473), + [anon_sym_BSLASHcolor] = ACTIONS(12473), + [anon_sym_BSLASHcolorbox] = ACTIONS(12473), + [anon_sym_BSLASHtextcolor] = ACTIONS(12473), + [anon_sym_BSLASHpagecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12473), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12473), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12473), + }, + [1013] = { + [sym_generic_command_name] = ACTIONS(12335), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12335), + [aux_sym_section_token1] = ACTIONS(12335), + [aux_sym_subsection_token1] = ACTIONS(12335), + [aux_sym_subsubsection_token1] = ACTIONS(12335), + [aux_sym_paragraph_token1] = ACTIONS(12335), + [aux_sym_subparagraph_token1] = ACTIONS(12335), + [anon_sym_BSLASHitem] = ACTIONS(12335), + [anon_sym_LBRACK] = ACTIONS(12691), + [anon_sym_RBRACK] = ACTIONS(12333), + [anon_sym_LBRACE] = ACTIONS(12333), + [anon_sym_RBRACE] = ACTIONS(12333), + [anon_sym_LPAREN] = ACTIONS(12333), + [anon_sym_COMMA] = ACTIONS(12333), + [anon_sym_EQ] = ACTIONS(12333), + [sym_word] = ACTIONS(12333), + [sym_param] = ACTIONS(12333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12333), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12333), + [anon_sym_DOLLAR] = ACTIONS(12335), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12333), + [anon_sym_BSLASHbegin] = ACTIONS(12335), + [anon_sym_BSLASHcaption] = ACTIONS(12335), + [anon_sym_BSLASHcite] = ACTIONS(12335), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCite] = ACTIONS(12335), + [anon_sym_BSLASHnocite] = ACTIONS(12335), + [anon_sym_BSLASHcitet] = ACTIONS(12335), + [anon_sym_BSLASHcitep] = ACTIONS(12335), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteauthor] = ACTIONS(12335), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12335), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitetitle] = ACTIONS(12335), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteyear] = ACTIONS(12335), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitedate] = ACTIONS(12335), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteurl] = ACTIONS(12335), + [anon_sym_BSLASHfullcite] = ACTIONS(12335), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12335), + [anon_sym_BSLASHcitealt] = ACTIONS(12335), + [anon_sym_BSLASHcitealp] = ACTIONS(12335), + [anon_sym_BSLASHcitetext] = ACTIONS(12335), + [anon_sym_BSLASHparencite] = ACTIONS(12335), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHParencite] = ACTIONS(12335), + [anon_sym_BSLASHfootcite] = ACTIONS(12335), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12335), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12335), + [anon_sym_BSLASHtextcite] = ACTIONS(12335), + [anon_sym_BSLASHTextcite] = ACTIONS(12335), + [anon_sym_BSLASHsmartcite] = ACTIONS(12335), + [anon_sym_BSLASHSmartcite] = ACTIONS(12335), + [anon_sym_BSLASHsupercite] = ACTIONS(12335), + [anon_sym_BSLASHautocite] = ACTIONS(12335), + [anon_sym_BSLASHAutocite] = ACTIONS(12335), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHvolcite] = ACTIONS(12335), + [anon_sym_BSLASHVolcite] = ACTIONS(12335), + [anon_sym_BSLASHpvolcite] = ACTIONS(12335), + [anon_sym_BSLASHPvolcite] = ACTIONS(12335), + [anon_sym_BSLASHfvolcite] = ACTIONS(12335), + [anon_sym_BSLASHftvolcite] = ACTIONS(12335), + [anon_sym_BSLASHsvolcite] = ACTIONS(12335), + [anon_sym_BSLASHSvolcite] = ACTIONS(12335), + [anon_sym_BSLASHtvolcite] = ACTIONS(12335), + [anon_sym_BSLASHTvolcite] = ACTIONS(12335), + [anon_sym_BSLASHavolcite] = ACTIONS(12335), + [anon_sym_BSLASHAvolcite] = ACTIONS(12335), + [anon_sym_BSLASHnotecite] = ACTIONS(12335), + [anon_sym_BSLASHpnotecite] = ACTIONS(12335), + [anon_sym_BSLASHPnotecite] = ACTIONS(12335), + [anon_sym_BSLASHfnotecite] = ACTIONS(12335), + [anon_sym_BSLASHusepackage] = ACTIONS(12335), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12335), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12335), + [anon_sym_BSLASHinclude] = ACTIONS(12335), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12335), + [anon_sym_BSLASHinput] = ACTIONS(12335), + [anon_sym_BSLASHsubfile] = ACTIONS(12335), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12335), + [anon_sym_BSLASHbibliography] = ACTIONS(12335), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12335), + [anon_sym_BSLASHincludesvg] = ACTIONS(12335), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12335), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12335), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12335), + [anon_sym_BSLASHimport] = ACTIONS(12335), + [anon_sym_BSLASHsubimport] = ACTIONS(12335), + [anon_sym_BSLASHinputfrom] = ACTIONS(12335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12335), + [anon_sym_BSLASHincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHlabel] = ACTIONS(12335), + [anon_sym_BSLASHref] = ACTIONS(12335), + [anon_sym_BSLASHvref] = ACTIONS(12335), + [anon_sym_BSLASHVref] = ACTIONS(12335), + [anon_sym_BSLASHautoref] = ACTIONS(12335), + [anon_sym_BSLASHpageref] = ACTIONS(12335), + [anon_sym_BSLASHcref] = ACTIONS(12335), + [anon_sym_BSLASHCref] = ACTIONS(12335), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnameCref] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHlabelcref] = ACTIONS(12335), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12335), + [anon_sym_BSLASHeqref] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange] = ACTIONS(12335), + [anon_sym_BSLASHCrefrange] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewlabel] = ACTIONS(12335), + [anon_sym_BSLASHnewcommand] = ACTIONS(12335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12335), + [anon_sym_BSLASHgls] = ACTIONS(12335), + [anon_sym_BSLASHGls] = ACTIONS(12335), + [anon_sym_BSLASHGLS] = ACTIONS(12335), + [anon_sym_BSLASHglspl] = ACTIONS(12335), + [anon_sym_BSLASHGlspl] = ACTIONS(12335), + [anon_sym_BSLASHGLSpl] = ACTIONS(12335), + [anon_sym_BSLASHglsdisp] = ACTIONS(12335), + [anon_sym_BSLASHglslink] = ACTIONS(12335), + [anon_sym_BSLASHglstext] = ACTIONS(12335), + [anon_sym_BSLASHGlstext] = ACTIONS(12335), + [anon_sym_BSLASHGLStext] = ACTIONS(12335), + [anon_sym_BSLASHglsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12335), + [anon_sym_BSLASHglsplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSplural] = ACTIONS(12335), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHglsname] = ACTIONS(12335), + [anon_sym_BSLASHGlsname] = ACTIONS(12335), + [anon_sym_BSLASHGLSname] = ACTIONS(12335), + [anon_sym_BSLASHglssymbol] = ACTIONS(12335), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12335), + [anon_sym_BSLASHglsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12335), + [anon_sym_BSLASHglsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12335), + [anon_sym_BSLASHglsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12335), + [anon_sym_BSLASHglsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12335), + [anon_sym_BSLASHglsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12335), + [anon_sym_BSLASHnewacronym] = ACTIONS(12335), + [anon_sym_BSLASHacrshort] = ACTIONS(12335), + [anon_sym_BSLASHAcrshort] = ACTIONS(12335), + [anon_sym_BSLASHACRshort] = ACTIONS(12335), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12335), + [anon_sym_BSLASHacrlong] = ACTIONS(12335), + [anon_sym_BSLASHAcrlong] = ACTIONS(12335), + [anon_sym_BSLASHACRlong] = ACTIONS(12335), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12335), + [anon_sym_BSLASHacrfull] = ACTIONS(12335), + [anon_sym_BSLASHAcrfull] = ACTIONS(12335), + [anon_sym_BSLASHACRfull] = ACTIONS(12335), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12335), + [anon_sym_BSLASHacs] = ACTIONS(12335), + [anon_sym_BSLASHAcs] = ACTIONS(12335), + [anon_sym_BSLASHacsp] = ACTIONS(12335), + [anon_sym_BSLASHAcsp] = ACTIONS(12335), + [anon_sym_BSLASHacl] = ACTIONS(12335), + [anon_sym_BSLASHAcl] = ACTIONS(12335), + [anon_sym_BSLASHaclp] = ACTIONS(12335), + [anon_sym_BSLASHAclp] = ACTIONS(12335), + [anon_sym_BSLASHacf] = ACTIONS(12335), + [anon_sym_BSLASHAcf] = ACTIONS(12335), + [anon_sym_BSLASHacfp] = ACTIONS(12335), + [anon_sym_BSLASHAcfp] = ACTIONS(12335), + [anon_sym_BSLASHac] = ACTIONS(12335), + [anon_sym_BSLASHAc] = ACTIONS(12335), + [anon_sym_BSLASHacp] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12335), + [anon_sym_BSLASHcolor] = ACTIONS(12335), + [anon_sym_BSLASHcolorbox] = ACTIONS(12335), + [anon_sym_BSLASHtextcolor] = ACTIONS(12335), + [anon_sym_BSLASHpagecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12335), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12335), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12335), + }, + [1014] = { + [sym_generic_command_name] = ACTIONS(12341), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12341), + [aux_sym_section_token1] = ACTIONS(12341), + [aux_sym_subsection_token1] = ACTIONS(12341), + [aux_sym_subsubsection_token1] = ACTIONS(12341), + [aux_sym_paragraph_token1] = ACTIONS(12341), + [aux_sym_subparagraph_token1] = ACTIONS(12341), + [anon_sym_BSLASHitem] = ACTIONS(12341), + [anon_sym_LBRACK] = ACTIONS(12339), + [anon_sym_RBRACK] = ACTIONS(12339), + [anon_sym_LBRACE] = ACTIONS(12339), + [anon_sym_RBRACE] = ACTIONS(12339), + [anon_sym_LPAREN] = ACTIONS(12339), + [anon_sym_COMMA] = ACTIONS(12339), + [anon_sym_EQ] = ACTIONS(12339), + [sym_word] = ACTIONS(12339), + [sym_param] = ACTIONS(12339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12339), + [anon_sym_DOLLAR] = ACTIONS(12341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12339), + [anon_sym_BSLASHbegin] = ACTIONS(12341), + [anon_sym_BSLASHcaption] = ACTIONS(12341), + [anon_sym_BSLASHcite] = ACTIONS(12341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCite] = ACTIONS(12341), + [anon_sym_BSLASHnocite] = ACTIONS(12341), + [anon_sym_BSLASHcitet] = ACTIONS(12341), + [anon_sym_BSLASHcitep] = ACTIONS(12341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteauthor] = ACTIONS(12341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitetitle] = ACTIONS(12341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteyear] = ACTIONS(12341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitedate] = ACTIONS(12341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteurl] = ACTIONS(12341), + [anon_sym_BSLASHfullcite] = ACTIONS(12341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12341), + [anon_sym_BSLASHcitealt] = ACTIONS(12341), + [anon_sym_BSLASHcitealp] = ACTIONS(12341), + [anon_sym_BSLASHcitetext] = ACTIONS(12341), + [anon_sym_BSLASHparencite] = ACTIONS(12341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHParencite] = ACTIONS(12341), + [anon_sym_BSLASHfootcite] = ACTIONS(12341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12341), + [anon_sym_BSLASHtextcite] = ACTIONS(12341), + [anon_sym_BSLASHTextcite] = ACTIONS(12341), + [anon_sym_BSLASHsmartcite] = ACTIONS(12341), + [anon_sym_BSLASHSmartcite] = ACTIONS(12341), + [anon_sym_BSLASHsupercite] = ACTIONS(12341), + [anon_sym_BSLASHautocite] = ACTIONS(12341), + [anon_sym_BSLASHAutocite] = ACTIONS(12341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHvolcite] = ACTIONS(12341), + [anon_sym_BSLASHVolcite] = ACTIONS(12341), + [anon_sym_BSLASHpvolcite] = ACTIONS(12341), + [anon_sym_BSLASHPvolcite] = ACTIONS(12341), + [anon_sym_BSLASHfvolcite] = ACTIONS(12341), + [anon_sym_BSLASHftvolcite] = ACTIONS(12341), + [anon_sym_BSLASHsvolcite] = ACTIONS(12341), + [anon_sym_BSLASHSvolcite] = ACTIONS(12341), + [anon_sym_BSLASHtvolcite] = ACTIONS(12341), + [anon_sym_BSLASHTvolcite] = ACTIONS(12341), + [anon_sym_BSLASHavolcite] = ACTIONS(12341), + [anon_sym_BSLASHAvolcite] = ACTIONS(12341), + [anon_sym_BSLASHnotecite] = ACTIONS(12341), + [anon_sym_BSLASHpnotecite] = ACTIONS(12341), + [anon_sym_BSLASHPnotecite] = ACTIONS(12341), + [anon_sym_BSLASHfnotecite] = ACTIONS(12341), + [anon_sym_BSLASHusepackage] = ACTIONS(12341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12341), + [anon_sym_BSLASHinclude] = ACTIONS(12341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12341), + [anon_sym_BSLASHinput] = ACTIONS(12341), + [anon_sym_BSLASHsubfile] = ACTIONS(12341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12341), + [anon_sym_BSLASHbibliography] = ACTIONS(12341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12341), + [anon_sym_BSLASHincludesvg] = ACTIONS(12341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12341), + [anon_sym_BSLASHimport] = ACTIONS(12341), + [anon_sym_BSLASHsubimport] = ACTIONS(12341), + [anon_sym_BSLASHinputfrom] = ACTIONS(12341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12341), + [anon_sym_BSLASHincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHlabel] = ACTIONS(12341), + [anon_sym_BSLASHref] = ACTIONS(12341), + [anon_sym_BSLASHvref] = ACTIONS(12341), + [anon_sym_BSLASHVref] = ACTIONS(12341), + [anon_sym_BSLASHautoref] = ACTIONS(12341), + [anon_sym_BSLASHpageref] = ACTIONS(12341), + [anon_sym_BSLASHcref] = ACTIONS(12341), + [anon_sym_BSLASHCref] = ACTIONS(12341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnameCref] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHlabelcref] = ACTIONS(12341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12341), + [anon_sym_BSLASHeqref] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange] = ACTIONS(12341), + [anon_sym_BSLASHCrefrange] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewlabel] = ACTIONS(12341), + [anon_sym_BSLASHnewcommand] = ACTIONS(12341), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12341), + [anon_sym_BSLASHgls] = ACTIONS(12341), + [anon_sym_BSLASHGls] = ACTIONS(12341), + [anon_sym_BSLASHGLS] = ACTIONS(12341), + [anon_sym_BSLASHglspl] = ACTIONS(12341), + [anon_sym_BSLASHGlspl] = ACTIONS(12341), + [anon_sym_BSLASHGLSpl] = ACTIONS(12341), + [anon_sym_BSLASHglsdisp] = ACTIONS(12341), + [anon_sym_BSLASHglslink] = ACTIONS(12341), + [anon_sym_BSLASHglstext] = ACTIONS(12341), + [anon_sym_BSLASHGlstext] = ACTIONS(12341), + [anon_sym_BSLASHGLStext] = ACTIONS(12341), + [anon_sym_BSLASHglsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12341), + [anon_sym_BSLASHglsplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSplural] = ACTIONS(12341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHglsname] = ACTIONS(12341), + [anon_sym_BSLASHGlsname] = ACTIONS(12341), + [anon_sym_BSLASHGLSname] = ACTIONS(12341), + [anon_sym_BSLASHglssymbol] = ACTIONS(12341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12341), + [anon_sym_BSLASHglsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12341), + [anon_sym_BSLASHglsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12341), + [anon_sym_BSLASHglsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12341), + [anon_sym_BSLASHglsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12341), + [anon_sym_BSLASHglsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12341), + [anon_sym_BSLASHnewacronym] = ACTIONS(12341), + [anon_sym_BSLASHacrshort] = ACTIONS(12341), + [anon_sym_BSLASHAcrshort] = ACTIONS(12341), + [anon_sym_BSLASHACRshort] = ACTIONS(12341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12341), + [anon_sym_BSLASHacrlong] = ACTIONS(12341), + [anon_sym_BSLASHAcrlong] = ACTIONS(12341), + [anon_sym_BSLASHACRlong] = ACTIONS(12341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12341), + [anon_sym_BSLASHacrfull] = ACTIONS(12341), + [anon_sym_BSLASHAcrfull] = ACTIONS(12341), + [anon_sym_BSLASHACRfull] = ACTIONS(12341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12341), + [anon_sym_BSLASHacs] = ACTIONS(12341), + [anon_sym_BSLASHAcs] = ACTIONS(12341), + [anon_sym_BSLASHacsp] = ACTIONS(12341), + [anon_sym_BSLASHAcsp] = ACTIONS(12341), + [anon_sym_BSLASHacl] = ACTIONS(12341), + [anon_sym_BSLASHAcl] = ACTIONS(12341), + [anon_sym_BSLASHaclp] = ACTIONS(12341), + [anon_sym_BSLASHAclp] = ACTIONS(12341), + [anon_sym_BSLASHacf] = ACTIONS(12341), + [anon_sym_BSLASHAcf] = ACTIONS(12341), + [anon_sym_BSLASHacfp] = ACTIONS(12341), + [anon_sym_BSLASHAcfp] = ACTIONS(12341), + [anon_sym_BSLASHac] = ACTIONS(12341), + [anon_sym_BSLASHAc] = ACTIONS(12341), + [anon_sym_BSLASHacp] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12341), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12341), + [anon_sym_BSLASHcolor] = ACTIONS(12341), + [anon_sym_BSLASHcolorbox] = ACTIONS(12341), + [anon_sym_BSLASHtextcolor] = ACTIONS(12341), + [anon_sym_BSLASHpagecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12341), + }, + [1015] = { + [sym_generic_command_name] = ACTIONS(12353), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12353), + [aux_sym_section_token1] = ACTIONS(12353), + [aux_sym_subsection_token1] = ACTIONS(12353), + [aux_sym_subsubsection_token1] = ACTIONS(12353), + [aux_sym_paragraph_token1] = ACTIONS(12353), + [aux_sym_subparagraph_token1] = ACTIONS(12353), + [anon_sym_BSLASHitem] = ACTIONS(12353), + [anon_sym_LBRACK] = ACTIONS(12351), + [anon_sym_RBRACK] = ACTIONS(12351), + [anon_sym_LBRACE] = ACTIONS(12351), + [anon_sym_RBRACE] = ACTIONS(12351), + [anon_sym_LPAREN] = ACTIONS(12351), + [anon_sym_COMMA] = ACTIONS(12351), + [anon_sym_EQ] = ACTIONS(12351), + [sym_word] = ACTIONS(12351), + [sym_param] = ACTIONS(12351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12351), + [anon_sym_DOLLAR] = ACTIONS(12353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12351), + [anon_sym_BSLASHbegin] = ACTIONS(12353), + [anon_sym_BSLASHcaption] = ACTIONS(12353), + [anon_sym_BSLASHcite] = ACTIONS(12353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCite] = ACTIONS(12353), + [anon_sym_BSLASHnocite] = ACTIONS(12353), + [anon_sym_BSLASHcitet] = ACTIONS(12353), + [anon_sym_BSLASHcitep] = ACTIONS(12353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteauthor] = ACTIONS(12353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitetitle] = ACTIONS(12353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteyear] = ACTIONS(12353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitedate] = ACTIONS(12353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteurl] = ACTIONS(12353), + [anon_sym_BSLASHfullcite] = ACTIONS(12353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12353), + [anon_sym_BSLASHcitealt] = ACTIONS(12353), + [anon_sym_BSLASHcitealp] = ACTIONS(12353), + [anon_sym_BSLASHcitetext] = ACTIONS(12353), + [anon_sym_BSLASHparencite] = ACTIONS(12353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHParencite] = ACTIONS(12353), + [anon_sym_BSLASHfootcite] = ACTIONS(12353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12353), + [anon_sym_BSLASHtextcite] = ACTIONS(12353), + [anon_sym_BSLASHTextcite] = ACTIONS(12353), + [anon_sym_BSLASHsmartcite] = ACTIONS(12353), + [anon_sym_BSLASHSmartcite] = ACTIONS(12353), + [anon_sym_BSLASHsupercite] = ACTIONS(12353), + [anon_sym_BSLASHautocite] = ACTIONS(12353), + [anon_sym_BSLASHAutocite] = ACTIONS(12353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHvolcite] = ACTIONS(12353), + [anon_sym_BSLASHVolcite] = ACTIONS(12353), + [anon_sym_BSLASHpvolcite] = ACTIONS(12353), + [anon_sym_BSLASHPvolcite] = ACTIONS(12353), + [anon_sym_BSLASHfvolcite] = ACTIONS(12353), + [anon_sym_BSLASHftvolcite] = ACTIONS(12353), + [anon_sym_BSLASHsvolcite] = ACTIONS(12353), + [anon_sym_BSLASHSvolcite] = ACTIONS(12353), + [anon_sym_BSLASHtvolcite] = ACTIONS(12353), + [anon_sym_BSLASHTvolcite] = ACTIONS(12353), + [anon_sym_BSLASHavolcite] = ACTIONS(12353), + [anon_sym_BSLASHAvolcite] = ACTIONS(12353), + [anon_sym_BSLASHnotecite] = ACTIONS(12353), + [anon_sym_BSLASHpnotecite] = ACTIONS(12353), + [anon_sym_BSLASHPnotecite] = ACTIONS(12353), + [anon_sym_BSLASHfnotecite] = ACTIONS(12353), + [anon_sym_BSLASHusepackage] = ACTIONS(12353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12353), + [anon_sym_BSLASHinclude] = ACTIONS(12353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12353), + [anon_sym_BSLASHinput] = ACTIONS(12353), + [anon_sym_BSLASHsubfile] = ACTIONS(12353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12353), + [anon_sym_BSLASHbibliography] = ACTIONS(12353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12353), + [anon_sym_BSLASHincludesvg] = ACTIONS(12353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12353), + [anon_sym_BSLASHimport] = ACTIONS(12353), + [anon_sym_BSLASHsubimport] = ACTIONS(12353), + [anon_sym_BSLASHinputfrom] = ACTIONS(12353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12353), + [anon_sym_BSLASHincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHlabel] = ACTIONS(12353), + [anon_sym_BSLASHref] = ACTIONS(12353), + [anon_sym_BSLASHvref] = ACTIONS(12353), + [anon_sym_BSLASHVref] = ACTIONS(12353), + [anon_sym_BSLASHautoref] = ACTIONS(12353), + [anon_sym_BSLASHpageref] = ACTIONS(12353), + [anon_sym_BSLASHcref] = ACTIONS(12353), + [anon_sym_BSLASHCref] = ACTIONS(12353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnameCref] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHlabelcref] = ACTIONS(12353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12353), + [anon_sym_BSLASHeqref] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange] = ACTIONS(12353), + [anon_sym_BSLASHCrefrange] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewlabel] = ACTIONS(12353), + [anon_sym_BSLASHnewcommand] = ACTIONS(12353), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12353), + [anon_sym_BSLASHgls] = ACTIONS(12353), + [anon_sym_BSLASHGls] = ACTIONS(12353), + [anon_sym_BSLASHGLS] = ACTIONS(12353), + [anon_sym_BSLASHglspl] = ACTIONS(12353), + [anon_sym_BSLASHGlspl] = ACTIONS(12353), + [anon_sym_BSLASHGLSpl] = ACTIONS(12353), + [anon_sym_BSLASHglsdisp] = ACTIONS(12353), + [anon_sym_BSLASHglslink] = ACTIONS(12353), + [anon_sym_BSLASHglstext] = ACTIONS(12353), + [anon_sym_BSLASHGlstext] = ACTIONS(12353), + [anon_sym_BSLASHGLStext] = ACTIONS(12353), + [anon_sym_BSLASHglsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12353), + [anon_sym_BSLASHglsplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSplural] = ACTIONS(12353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHglsname] = ACTIONS(12353), + [anon_sym_BSLASHGlsname] = ACTIONS(12353), + [anon_sym_BSLASHGLSname] = ACTIONS(12353), + [anon_sym_BSLASHglssymbol] = ACTIONS(12353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12353), + [anon_sym_BSLASHglsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12353), + [anon_sym_BSLASHglsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12353), + [anon_sym_BSLASHglsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12353), + [anon_sym_BSLASHglsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12353), + [anon_sym_BSLASHglsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12353), + [anon_sym_BSLASHnewacronym] = ACTIONS(12353), + [anon_sym_BSLASHacrshort] = ACTIONS(12353), + [anon_sym_BSLASHAcrshort] = ACTIONS(12353), + [anon_sym_BSLASHACRshort] = ACTIONS(12353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12353), + [anon_sym_BSLASHacrlong] = ACTIONS(12353), + [anon_sym_BSLASHAcrlong] = ACTIONS(12353), + [anon_sym_BSLASHACRlong] = ACTIONS(12353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12353), + [anon_sym_BSLASHacrfull] = ACTIONS(12353), + [anon_sym_BSLASHAcrfull] = ACTIONS(12353), + [anon_sym_BSLASHACRfull] = ACTIONS(12353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12353), + [anon_sym_BSLASHacs] = ACTIONS(12353), + [anon_sym_BSLASHAcs] = ACTIONS(12353), + [anon_sym_BSLASHacsp] = ACTIONS(12353), + [anon_sym_BSLASHAcsp] = ACTIONS(12353), + [anon_sym_BSLASHacl] = ACTIONS(12353), + [anon_sym_BSLASHAcl] = ACTIONS(12353), + [anon_sym_BSLASHaclp] = ACTIONS(12353), + [anon_sym_BSLASHAclp] = ACTIONS(12353), + [anon_sym_BSLASHacf] = ACTIONS(12353), + [anon_sym_BSLASHAcf] = ACTIONS(12353), + [anon_sym_BSLASHacfp] = ACTIONS(12353), + [anon_sym_BSLASHAcfp] = ACTIONS(12353), + [anon_sym_BSLASHac] = ACTIONS(12353), + [anon_sym_BSLASHAc] = ACTIONS(12353), + [anon_sym_BSLASHacp] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12353), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12353), + [anon_sym_BSLASHcolor] = ACTIONS(12353), + [anon_sym_BSLASHcolorbox] = ACTIONS(12353), + [anon_sym_BSLASHtextcolor] = ACTIONS(12353), + [anon_sym_BSLASHpagecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12353), + }, + [1016] = { + [sym_generic_command_name] = ACTIONS(12357), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12357), + [aux_sym_section_token1] = ACTIONS(12357), + [aux_sym_subsection_token1] = ACTIONS(12357), + [aux_sym_subsubsection_token1] = ACTIONS(12357), + [aux_sym_paragraph_token1] = ACTIONS(12357), + [aux_sym_subparagraph_token1] = ACTIONS(12357), + [anon_sym_BSLASHitem] = ACTIONS(12357), + [anon_sym_LBRACK] = ACTIONS(12355), + [anon_sym_RBRACK] = ACTIONS(12355), + [anon_sym_LBRACE] = ACTIONS(12355), + [anon_sym_RBRACE] = ACTIONS(12355), + [anon_sym_LPAREN] = ACTIONS(12355), + [anon_sym_COMMA] = ACTIONS(12355), + [anon_sym_EQ] = ACTIONS(12355), + [sym_word] = ACTIONS(12355), + [sym_param] = ACTIONS(12355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12355), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12355), + [anon_sym_DOLLAR] = ACTIONS(12357), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12355), + [anon_sym_BSLASHbegin] = ACTIONS(12357), + [anon_sym_BSLASHcaption] = ACTIONS(12357), + [anon_sym_BSLASHcite] = ACTIONS(12357), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCite] = ACTIONS(12357), + [anon_sym_BSLASHnocite] = ACTIONS(12357), + [anon_sym_BSLASHcitet] = ACTIONS(12357), + [anon_sym_BSLASHcitep] = ACTIONS(12357), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteauthor] = ACTIONS(12357), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12357), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitetitle] = ACTIONS(12357), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteyear] = ACTIONS(12357), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitedate] = ACTIONS(12357), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteurl] = ACTIONS(12357), + [anon_sym_BSLASHfullcite] = ACTIONS(12357), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12357), + [anon_sym_BSLASHcitealt] = ACTIONS(12357), + [anon_sym_BSLASHcitealp] = ACTIONS(12357), + [anon_sym_BSLASHcitetext] = ACTIONS(12357), + [anon_sym_BSLASHparencite] = ACTIONS(12357), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHParencite] = ACTIONS(12357), + [anon_sym_BSLASHfootcite] = ACTIONS(12357), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12357), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12357), + [anon_sym_BSLASHtextcite] = ACTIONS(12357), + [anon_sym_BSLASHTextcite] = ACTIONS(12357), + [anon_sym_BSLASHsmartcite] = ACTIONS(12357), + [anon_sym_BSLASHSmartcite] = ACTIONS(12357), + [anon_sym_BSLASHsupercite] = ACTIONS(12357), + [anon_sym_BSLASHautocite] = ACTIONS(12357), + [anon_sym_BSLASHAutocite] = ACTIONS(12357), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHvolcite] = ACTIONS(12357), + [anon_sym_BSLASHVolcite] = ACTIONS(12357), + [anon_sym_BSLASHpvolcite] = ACTIONS(12357), + [anon_sym_BSLASHPvolcite] = ACTIONS(12357), + [anon_sym_BSLASHfvolcite] = ACTIONS(12357), + [anon_sym_BSLASHftvolcite] = ACTIONS(12357), + [anon_sym_BSLASHsvolcite] = ACTIONS(12357), + [anon_sym_BSLASHSvolcite] = ACTIONS(12357), + [anon_sym_BSLASHtvolcite] = ACTIONS(12357), + [anon_sym_BSLASHTvolcite] = ACTIONS(12357), + [anon_sym_BSLASHavolcite] = ACTIONS(12357), + [anon_sym_BSLASHAvolcite] = ACTIONS(12357), + [anon_sym_BSLASHnotecite] = ACTIONS(12357), + [anon_sym_BSLASHpnotecite] = ACTIONS(12357), + [anon_sym_BSLASHPnotecite] = ACTIONS(12357), + [anon_sym_BSLASHfnotecite] = ACTIONS(12357), + [anon_sym_BSLASHusepackage] = ACTIONS(12357), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12357), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12357), + [anon_sym_BSLASHinclude] = ACTIONS(12357), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12357), + [anon_sym_BSLASHinput] = ACTIONS(12357), + [anon_sym_BSLASHsubfile] = ACTIONS(12357), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12357), + [anon_sym_BSLASHbibliography] = ACTIONS(12357), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12357), + [anon_sym_BSLASHincludesvg] = ACTIONS(12357), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12357), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12357), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12357), + [anon_sym_BSLASHimport] = ACTIONS(12357), + [anon_sym_BSLASHsubimport] = ACTIONS(12357), + [anon_sym_BSLASHinputfrom] = ACTIONS(12357), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12357), + [anon_sym_BSLASHincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHlabel] = ACTIONS(12357), + [anon_sym_BSLASHref] = ACTIONS(12357), + [anon_sym_BSLASHvref] = ACTIONS(12357), + [anon_sym_BSLASHVref] = ACTIONS(12357), + [anon_sym_BSLASHautoref] = ACTIONS(12357), + [anon_sym_BSLASHpageref] = ACTIONS(12357), + [anon_sym_BSLASHcref] = ACTIONS(12357), + [anon_sym_BSLASHCref] = ACTIONS(12357), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnameCref] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHlabelcref] = ACTIONS(12357), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12357), + [anon_sym_BSLASHeqref] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange] = ACTIONS(12357), + [anon_sym_BSLASHCrefrange] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewlabel] = ACTIONS(12357), + [anon_sym_BSLASHnewcommand] = ACTIONS(12357), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12357), + [anon_sym_BSLASHgls] = ACTIONS(12357), + [anon_sym_BSLASHGls] = ACTIONS(12357), + [anon_sym_BSLASHGLS] = ACTIONS(12357), + [anon_sym_BSLASHglspl] = ACTIONS(12357), + [anon_sym_BSLASHGlspl] = ACTIONS(12357), + [anon_sym_BSLASHGLSpl] = ACTIONS(12357), + [anon_sym_BSLASHglsdisp] = ACTIONS(12357), + [anon_sym_BSLASHglslink] = ACTIONS(12357), + [anon_sym_BSLASHglstext] = ACTIONS(12357), + [anon_sym_BSLASHGlstext] = ACTIONS(12357), + [anon_sym_BSLASHGLStext] = ACTIONS(12357), + [anon_sym_BSLASHglsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12357), + [anon_sym_BSLASHglsplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSplural] = ACTIONS(12357), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHglsname] = ACTIONS(12357), + [anon_sym_BSLASHGlsname] = ACTIONS(12357), + [anon_sym_BSLASHGLSname] = ACTIONS(12357), + [anon_sym_BSLASHglssymbol] = ACTIONS(12357), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12357), + [anon_sym_BSLASHglsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12357), + [anon_sym_BSLASHglsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12357), + [anon_sym_BSLASHglsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12357), + [anon_sym_BSLASHglsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12357), + [anon_sym_BSLASHglsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12357), + [anon_sym_BSLASHnewacronym] = ACTIONS(12357), + [anon_sym_BSLASHacrshort] = ACTIONS(12357), + [anon_sym_BSLASHAcrshort] = ACTIONS(12357), + [anon_sym_BSLASHACRshort] = ACTIONS(12357), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12357), + [anon_sym_BSLASHacrlong] = ACTIONS(12357), + [anon_sym_BSLASHAcrlong] = ACTIONS(12357), + [anon_sym_BSLASHACRlong] = ACTIONS(12357), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12357), + [anon_sym_BSLASHacrfull] = ACTIONS(12357), + [anon_sym_BSLASHAcrfull] = ACTIONS(12357), + [anon_sym_BSLASHACRfull] = ACTIONS(12357), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12357), + [anon_sym_BSLASHacs] = ACTIONS(12357), + [anon_sym_BSLASHAcs] = ACTIONS(12357), + [anon_sym_BSLASHacsp] = ACTIONS(12357), + [anon_sym_BSLASHAcsp] = ACTIONS(12357), + [anon_sym_BSLASHacl] = ACTIONS(12357), + [anon_sym_BSLASHAcl] = ACTIONS(12357), + [anon_sym_BSLASHaclp] = ACTIONS(12357), + [anon_sym_BSLASHAclp] = ACTIONS(12357), + [anon_sym_BSLASHacf] = ACTIONS(12357), + [anon_sym_BSLASHAcf] = ACTIONS(12357), + [anon_sym_BSLASHacfp] = ACTIONS(12357), + [anon_sym_BSLASHAcfp] = ACTIONS(12357), + [anon_sym_BSLASHac] = ACTIONS(12357), + [anon_sym_BSLASHAc] = ACTIONS(12357), + [anon_sym_BSLASHacp] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12357), + [anon_sym_BSLASHcolor] = ACTIONS(12357), + [anon_sym_BSLASHcolorbox] = ACTIONS(12357), + [anon_sym_BSLASHtextcolor] = ACTIONS(12357), + [anon_sym_BSLASHpagecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12357), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12357), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12357), + }, + [1017] = { + [sym_generic_command_name] = ACTIONS(12361), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12361), + [aux_sym_section_token1] = ACTIONS(12361), + [aux_sym_subsection_token1] = ACTIONS(12361), + [aux_sym_subsubsection_token1] = ACTIONS(12361), + [aux_sym_paragraph_token1] = ACTIONS(12361), + [aux_sym_subparagraph_token1] = ACTIONS(12361), + [anon_sym_BSLASHitem] = ACTIONS(12361), + [anon_sym_LBRACK] = ACTIONS(12359), + [anon_sym_RBRACK] = ACTIONS(12359), + [anon_sym_LBRACE] = ACTIONS(12359), + [anon_sym_RBRACE] = ACTIONS(12359), + [anon_sym_LPAREN] = ACTIONS(12359), + [anon_sym_COMMA] = ACTIONS(12359), + [anon_sym_EQ] = ACTIONS(12359), + [sym_word] = ACTIONS(12359), + [sym_param] = ACTIONS(12359), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12359), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12359), + [anon_sym_DOLLAR] = ACTIONS(12361), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12359), + [anon_sym_BSLASHbegin] = ACTIONS(12361), + [anon_sym_BSLASHcaption] = ACTIONS(12361), + [anon_sym_BSLASHcite] = ACTIONS(12361), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCite] = ACTIONS(12361), + [anon_sym_BSLASHnocite] = ACTIONS(12361), + [anon_sym_BSLASHcitet] = ACTIONS(12361), + [anon_sym_BSLASHcitep] = ACTIONS(12361), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteauthor] = ACTIONS(12361), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12361), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitetitle] = ACTIONS(12361), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteyear] = ACTIONS(12361), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitedate] = ACTIONS(12361), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteurl] = ACTIONS(12361), + [anon_sym_BSLASHfullcite] = ACTIONS(12361), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12361), + [anon_sym_BSLASHcitealt] = ACTIONS(12361), + [anon_sym_BSLASHcitealp] = ACTIONS(12361), + [anon_sym_BSLASHcitetext] = ACTIONS(12361), + [anon_sym_BSLASHparencite] = ACTIONS(12361), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHParencite] = ACTIONS(12361), + [anon_sym_BSLASHfootcite] = ACTIONS(12361), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12361), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12361), + [anon_sym_BSLASHtextcite] = ACTIONS(12361), + [anon_sym_BSLASHTextcite] = ACTIONS(12361), + [anon_sym_BSLASHsmartcite] = ACTIONS(12361), + [anon_sym_BSLASHSmartcite] = ACTIONS(12361), + [anon_sym_BSLASHsupercite] = ACTIONS(12361), + [anon_sym_BSLASHautocite] = ACTIONS(12361), + [anon_sym_BSLASHAutocite] = ACTIONS(12361), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHvolcite] = ACTIONS(12361), + [anon_sym_BSLASHVolcite] = ACTIONS(12361), + [anon_sym_BSLASHpvolcite] = ACTIONS(12361), + [anon_sym_BSLASHPvolcite] = ACTIONS(12361), + [anon_sym_BSLASHfvolcite] = ACTIONS(12361), + [anon_sym_BSLASHftvolcite] = ACTIONS(12361), + [anon_sym_BSLASHsvolcite] = ACTIONS(12361), + [anon_sym_BSLASHSvolcite] = ACTIONS(12361), + [anon_sym_BSLASHtvolcite] = ACTIONS(12361), + [anon_sym_BSLASHTvolcite] = ACTIONS(12361), + [anon_sym_BSLASHavolcite] = ACTIONS(12361), + [anon_sym_BSLASHAvolcite] = ACTIONS(12361), + [anon_sym_BSLASHnotecite] = ACTIONS(12361), + [anon_sym_BSLASHpnotecite] = ACTIONS(12361), + [anon_sym_BSLASHPnotecite] = ACTIONS(12361), + [anon_sym_BSLASHfnotecite] = ACTIONS(12361), + [anon_sym_BSLASHusepackage] = ACTIONS(12361), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12361), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12361), + [anon_sym_BSLASHinclude] = ACTIONS(12361), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12361), + [anon_sym_BSLASHinput] = ACTIONS(12361), + [anon_sym_BSLASHsubfile] = ACTIONS(12361), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12361), + [anon_sym_BSLASHbibliography] = ACTIONS(12361), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12361), + [anon_sym_BSLASHincludesvg] = ACTIONS(12361), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12361), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12361), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12361), + [anon_sym_BSLASHimport] = ACTIONS(12361), + [anon_sym_BSLASHsubimport] = ACTIONS(12361), + [anon_sym_BSLASHinputfrom] = ACTIONS(12361), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12361), + [anon_sym_BSLASHincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHlabel] = ACTIONS(12361), + [anon_sym_BSLASHref] = ACTIONS(12361), + [anon_sym_BSLASHvref] = ACTIONS(12361), + [anon_sym_BSLASHVref] = ACTIONS(12361), + [anon_sym_BSLASHautoref] = ACTIONS(12361), + [anon_sym_BSLASHpageref] = ACTIONS(12361), + [anon_sym_BSLASHcref] = ACTIONS(12361), + [anon_sym_BSLASHCref] = ACTIONS(12361), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnameCref] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHlabelcref] = ACTIONS(12361), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12361), + [anon_sym_BSLASHeqref] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange] = ACTIONS(12361), + [anon_sym_BSLASHCrefrange] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewlabel] = ACTIONS(12361), + [anon_sym_BSLASHnewcommand] = ACTIONS(12361), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12361), + [anon_sym_BSLASHgls] = ACTIONS(12361), + [anon_sym_BSLASHGls] = ACTIONS(12361), + [anon_sym_BSLASHGLS] = ACTIONS(12361), + [anon_sym_BSLASHglspl] = ACTIONS(12361), + [anon_sym_BSLASHGlspl] = ACTIONS(12361), + [anon_sym_BSLASHGLSpl] = ACTIONS(12361), + [anon_sym_BSLASHglsdisp] = ACTIONS(12361), + [anon_sym_BSLASHglslink] = ACTIONS(12361), + [anon_sym_BSLASHglstext] = ACTIONS(12361), + [anon_sym_BSLASHGlstext] = ACTIONS(12361), + [anon_sym_BSLASHGLStext] = ACTIONS(12361), + [anon_sym_BSLASHglsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12361), + [anon_sym_BSLASHglsplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSplural] = ACTIONS(12361), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHglsname] = ACTIONS(12361), + [anon_sym_BSLASHGlsname] = ACTIONS(12361), + [anon_sym_BSLASHGLSname] = ACTIONS(12361), + [anon_sym_BSLASHglssymbol] = ACTIONS(12361), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12361), + [anon_sym_BSLASHglsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12361), + [anon_sym_BSLASHglsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12361), + [anon_sym_BSLASHglsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12361), + [anon_sym_BSLASHglsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12361), + [anon_sym_BSLASHglsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12361), + [anon_sym_BSLASHnewacronym] = ACTIONS(12361), + [anon_sym_BSLASHacrshort] = ACTIONS(12361), + [anon_sym_BSLASHAcrshort] = ACTIONS(12361), + [anon_sym_BSLASHACRshort] = ACTIONS(12361), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12361), + [anon_sym_BSLASHacrlong] = ACTIONS(12361), + [anon_sym_BSLASHAcrlong] = ACTIONS(12361), + [anon_sym_BSLASHACRlong] = ACTIONS(12361), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12361), + [anon_sym_BSLASHacrfull] = ACTIONS(12361), + [anon_sym_BSLASHAcrfull] = ACTIONS(12361), + [anon_sym_BSLASHACRfull] = ACTIONS(12361), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12361), + [anon_sym_BSLASHacs] = ACTIONS(12361), + [anon_sym_BSLASHAcs] = ACTIONS(12361), + [anon_sym_BSLASHacsp] = ACTIONS(12361), + [anon_sym_BSLASHAcsp] = ACTIONS(12361), + [anon_sym_BSLASHacl] = ACTIONS(12361), + [anon_sym_BSLASHAcl] = ACTIONS(12361), + [anon_sym_BSLASHaclp] = ACTIONS(12361), + [anon_sym_BSLASHAclp] = ACTIONS(12361), + [anon_sym_BSLASHacf] = ACTIONS(12361), + [anon_sym_BSLASHAcf] = ACTIONS(12361), + [anon_sym_BSLASHacfp] = ACTIONS(12361), + [anon_sym_BSLASHAcfp] = ACTIONS(12361), + [anon_sym_BSLASHac] = ACTIONS(12361), + [anon_sym_BSLASHAc] = ACTIONS(12361), + [anon_sym_BSLASHacp] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12361), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12361), + [anon_sym_BSLASHcolor] = ACTIONS(12361), + [anon_sym_BSLASHcolorbox] = ACTIONS(12361), + [anon_sym_BSLASHtextcolor] = ACTIONS(12361), + [anon_sym_BSLASHpagecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12361), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12361), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12361), + }, + [1018] = { + [sym_generic_command_name] = ACTIONS(12369), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12369), + [aux_sym_section_token1] = ACTIONS(12369), + [aux_sym_subsection_token1] = ACTIONS(12369), + [aux_sym_subsubsection_token1] = ACTIONS(12369), + [aux_sym_paragraph_token1] = ACTIONS(12369), + [aux_sym_subparagraph_token1] = ACTIONS(12369), + [anon_sym_BSLASHitem] = ACTIONS(12369), + [anon_sym_LBRACK] = ACTIONS(12367), + [anon_sym_RBRACK] = ACTIONS(12367), + [anon_sym_LBRACE] = ACTIONS(12367), + [anon_sym_RBRACE] = ACTIONS(12367), + [anon_sym_LPAREN] = ACTIONS(12367), + [anon_sym_COMMA] = ACTIONS(12367), + [anon_sym_EQ] = ACTIONS(12367), + [sym_word] = ACTIONS(12367), + [sym_param] = ACTIONS(12367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12367), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12367), + [anon_sym_DOLLAR] = ACTIONS(12369), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12367), + [anon_sym_BSLASHbegin] = ACTIONS(12369), + [anon_sym_BSLASHcaption] = ACTIONS(12369), + [anon_sym_BSLASHcite] = ACTIONS(12369), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCite] = ACTIONS(12369), + [anon_sym_BSLASHnocite] = ACTIONS(12369), + [anon_sym_BSLASHcitet] = ACTIONS(12369), + [anon_sym_BSLASHcitep] = ACTIONS(12369), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteauthor] = ACTIONS(12369), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12369), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitetitle] = ACTIONS(12369), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteyear] = ACTIONS(12369), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitedate] = ACTIONS(12369), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteurl] = ACTIONS(12369), + [anon_sym_BSLASHfullcite] = ACTIONS(12369), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12369), + [anon_sym_BSLASHcitealt] = ACTIONS(12369), + [anon_sym_BSLASHcitealp] = ACTIONS(12369), + [anon_sym_BSLASHcitetext] = ACTIONS(12369), + [anon_sym_BSLASHparencite] = ACTIONS(12369), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHParencite] = ACTIONS(12369), + [anon_sym_BSLASHfootcite] = ACTIONS(12369), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12369), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12369), + [anon_sym_BSLASHtextcite] = ACTIONS(12369), + [anon_sym_BSLASHTextcite] = ACTIONS(12369), + [anon_sym_BSLASHsmartcite] = ACTIONS(12369), + [anon_sym_BSLASHSmartcite] = ACTIONS(12369), + [anon_sym_BSLASHsupercite] = ACTIONS(12369), + [anon_sym_BSLASHautocite] = ACTIONS(12369), + [anon_sym_BSLASHAutocite] = ACTIONS(12369), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHvolcite] = ACTIONS(12369), + [anon_sym_BSLASHVolcite] = ACTIONS(12369), + [anon_sym_BSLASHpvolcite] = ACTIONS(12369), + [anon_sym_BSLASHPvolcite] = ACTIONS(12369), + [anon_sym_BSLASHfvolcite] = ACTIONS(12369), + [anon_sym_BSLASHftvolcite] = ACTIONS(12369), + [anon_sym_BSLASHsvolcite] = ACTIONS(12369), + [anon_sym_BSLASHSvolcite] = ACTIONS(12369), + [anon_sym_BSLASHtvolcite] = ACTIONS(12369), + [anon_sym_BSLASHTvolcite] = ACTIONS(12369), + [anon_sym_BSLASHavolcite] = ACTIONS(12369), + [anon_sym_BSLASHAvolcite] = ACTIONS(12369), + [anon_sym_BSLASHnotecite] = ACTIONS(12369), + [anon_sym_BSLASHpnotecite] = ACTIONS(12369), + [anon_sym_BSLASHPnotecite] = ACTIONS(12369), + [anon_sym_BSLASHfnotecite] = ACTIONS(12369), + [anon_sym_BSLASHusepackage] = ACTIONS(12369), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12369), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12369), + [anon_sym_BSLASHinclude] = ACTIONS(12369), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12369), + [anon_sym_BSLASHinput] = ACTIONS(12369), + [anon_sym_BSLASHsubfile] = ACTIONS(12369), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12369), + [anon_sym_BSLASHbibliography] = ACTIONS(12369), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12369), + [anon_sym_BSLASHincludesvg] = ACTIONS(12369), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12369), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12369), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12369), + [anon_sym_BSLASHimport] = ACTIONS(12369), + [anon_sym_BSLASHsubimport] = ACTIONS(12369), + [anon_sym_BSLASHinputfrom] = ACTIONS(12369), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12369), + [anon_sym_BSLASHincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHlabel] = ACTIONS(12369), + [anon_sym_BSLASHref] = ACTIONS(12369), + [anon_sym_BSLASHvref] = ACTIONS(12369), + [anon_sym_BSLASHVref] = ACTIONS(12369), + [anon_sym_BSLASHautoref] = ACTIONS(12369), + [anon_sym_BSLASHpageref] = ACTIONS(12369), + [anon_sym_BSLASHcref] = ACTIONS(12369), + [anon_sym_BSLASHCref] = ACTIONS(12369), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnameCref] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHlabelcref] = ACTIONS(12369), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12369), + [anon_sym_BSLASHeqref] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange] = ACTIONS(12369), + [anon_sym_BSLASHCrefrange] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewlabel] = ACTIONS(12369), + [anon_sym_BSLASHnewcommand] = ACTIONS(12369), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12369), + [anon_sym_BSLASHgls] = ACTIONS(12369), + [anon_sym_BSLASHGls] = ACTIONS(12369), + [anon_sym_BSLASHGLS] = ACTIONS(12369), + [anon_sym_BSLASHglspl] = ACTIONS(12369), + [anon_sym_BSLASHGlspl] = ACTIONS(12369), + [anon_sym_BSLASHGLSpl] = ACTIONS(12369), + [anon_sym_BSLASHglsdisp] = ACTIONS(12369), + [anon_sym_BSLASHglslink] = ACTIONS(12369), + [anon_sym_BSLASHglstext] = ACTIONS(12369), + [anon_sym_BSLASHGlstext] = ACTIONS(12369), + [anon_sym_BSLASHGLStext] = ACTIONS(12369), + [anon_sym_BSLASHglsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12369), + [anon_sym_BSLASHglsplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSplural] = ACTIONS(12369), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHglsname] = ACTIONS(12369), + [anon_sym_BSLASHGlsname] = ACTIONS(12369), + [anon_sym_BSLASHGLSname] = ACTIONS(12369), + [anon_sym_BSLASHglssymbol] = ACTIONS(12369), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12369), + [anon_sym_BSLASHglsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12369), + [anon_sym_BSLASHglsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12369), + [anon_sym_BSLASHglsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12369), + [anon_sym_BSLASHglsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12369), + [anon_sym_BSLASHglsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12369), + [anon_sym_BSLASHnewacronym] = ACTIONS(12369), + [anon_sym_BSLASHacrshort] = ACTIONS(12369), + [anon_sym_BSLASHAcrshort] = ACTIONS(12369), + [anon_sym_BSLASHACRshort] = ACTIONS(12369), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12369), + [anon_sym_BSLASHacrlong] = ACTIONS(12369), + [anon_sym_BSLASHAcrlong] = ACTIONS(12369), + [anon_sym_BSLASHACRlong] = ACTIONS(12369), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12369), + [anon_sym_BSLASHacrfull] = ACTIONS(12369), + [anon_sym_BSLASHAcrfull] = ACTIONS(12369), + [anon_sym_BSLASHACRfull] = ACTIONS(12369), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12369), + [anon_sym_BSLASHacs] = ACTIONS(12369), + [anon_sym_BSLASHAcs] = ACTIONS(12369), + [anon_sym_BSLASHacsp] = ACTIONS(12369), + [anon_sym_BSLASHAcsp] = ACTIONS(12369), + [anon_sym_BSLASHacl] = ACTIONS(12369), + [anon_sym_BSLASHAcl] = ACTIONS(12369), + [anon_sym_BSLASHaclp] = ACTIONS(12369), + [anon_sym_BSLASHAclp] = ACTIONS(12369), + [anon_sym_BSLASHacf] = ACTIONS(12369), + [anon_sym_BSLASHAcf] = ACTIONS(12369), + [anon_sym_BSLASHacfp] = ACTIONS(12369), + [anon_sym_BSLASHAcfp] = ACTIONS(12369), + [anon_sym_BSLASHac] = ACTIONS(12369), + [anon_sym_BSLASHAc] = ACTIONS(12369), + [anon_sym_BSLASHacp] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12369), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12369), + [anon_sym_BSLASHcolor] = ACTIONS(12369), + [anon_sym_BSLASHcolorbox] = ACTIONS(12369), + [anon_sym_BSLASHtextcolor] = ACTIONS(12369), + [anon_sym_BSLASHpagecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12369), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12369), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12369), + }, + [1019] = { + [sym_generic_command_name] = ACTIONS(12373), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12373), + [aux_sym_section_token1] = ACTIONS(12373), + [aux_sym_subsection_token1] = ACTIONS(12373), + [aux_sym_subsubsection_token1] = ACTIONS(12373), + [aux_sym_paragraph_token1] = ACTIONS(12373), + [aux_sym_subparagraph_token1] = ACTIONS(12373), + [anon_sym_BSLASHitem] = ACTIONS(12373), + [anon_sym_LBRACK] = ACTIONS(12371), + [anon_sym_RBRACK] = ACTIONS(12371), + [anon_sym_LBRACE] = ACTIONS(12371), + [anon_sym_RBRACE] = ACTIONS(12371), + [anon_sym_LPAREN] = ACTIONS(12371), + [anon_sym_COMMA] = ACTIONS(12371), + [anon_sym_EQ] = ACTIONS(12371), + [sym_word] = ACTIONS(12371), + [sym_param] = ACTIONS(12371), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12371), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12371), + [anon_sym_DOLLAR] = ACTIONS(12373), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12371), + [anon_sym_BSLASHbegin] = ACTIONS(12373), + [anon_sym_BSLASHcaption] = ACTIONS(12373), + [anon_sym_BSLASHcite] = ACTIONS(12373), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCite] = ACTIONS(12373), + [anon_sym_BSLASHnocite] = ACTIONS(12373), + [anon_sym_BSLASHcitet] = ACTIONS(12373), + [anon_sym_BSLASHcitep] = ACTIONS(12373), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteauthor] = ACTIONS(12373), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12373), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitetitle] = ACTIONS(12373), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteyear] = ACTIONS(12373), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitedate] = ACTIONS(12373), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteurl] = ACTIONS(12373), + [anon_sym_BSLASHfullcite] = ACTIONS(12373), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12373), + [anon_sym_BSLASHcitealt] = ACTIONS(12373), + [anon_sym_BSLASHcitealp] = ACTIONS(12373), + [anon_sym_BSLASHcitetext] = ACTIONS(12373), + [anon_sym_BSLASHparencite] = ACTIONS(12373), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHParencite] = ACTIONS(12373), + [anon_sym_BSLASHfootcite] = ACTIONS(12373), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12373), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12373), + [anon_sym_BSLASHtextcite] = ACTIONS(12373), + [anon_sym_BSLASHTextcite] = ACTIONS(12373), + [anon_sym_BSLASHsmartcite] = ACTIONS(12373), + [anon_sym_BSLASHSmartcite] = ACTIONS(12373), + [anon_sym_BSLASHsupercite] = ACTIONS(12373), + [anon_sym_BSLASHautocite] = ACTIONS(12373), + [anon_sym_BSLASHAutocite] = ACTIONS(12373), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHvolcite] = ACTIONS(12373), + [anon_sym_BSLASHVolcite] = ACTIONS(12373), + [anon_sym_BSLASHpvolcite] = ACTIONS(12373), + [anon_sym_BSLASHPvolcite] = ACTIONS(12373), + [anon_sym_BSLASHfvolcite] = ACTIONS(12373), + [anon_sym_BSLASHftvolcite] = ACTIONS(12373), + [anon_sym_BSLASHsvolcite] = ACTIONS(12373), + [anon_sym_BSLASHSvolcite] = ACTIONS(12373), + [anon_sym_BSLASHtvolcite] = ACTIONS(12373), + [anon_sym_BSLASHTvolcite] = ACTIONS(12373), + [anon_sym_BSLASHavolcite] = ACTIONS(12373), + [anon_sym_BSLASHAvolcite] = ACTIONS(12373), + [anon_sym_BSLASHnotecite] = ACTIONS(12373), + [anon_sym_BSLASHpnotecite] = ACTIONS(12373), + [anon_sym_BSLASHPnotecite] = ACTIONS(12373), + [anon_sym_BSLASHfnotecite] = ACTIONS(12373), + [anon_sym_BSLASHusepackage] = ACTIONS(12373), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12373), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12373), + [anon_sym_BSLASHinclude] = ACTIONS(12373), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12373), + [anon_sym_BSLASHinput] = ACTIONS(12373), + [anon_sym_BSLASHsubfile] = ACTIONS(12373), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12373), + [anon_sym_BSLASHbibliography] = ACTIONS(12373), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12373), + [anon_sym_BSLASHincludesvg] = ACTIONS(12373), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12373), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12373), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12373), + [anon_sym_BSLASHimport] = ACTIONS(12373), + [anon_sym_BSLASHsubimport] = ACTIONS(12373), + [anon_sym_BSLASHinputfrom] = ACTIONS(12373), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12373), + [anon_sym_BSLASHincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHlabel] = ACTIONS(12373), + [anon_sym_BSLASHref] = ACTIONS(12373), + [anon_sym_BSLASHvref] = ACTIONS(12373), + [anon_sym_BSLASHVref] = ACTIONS(12373), + [anon_sym_BSLASHautoref] = ACTIONS(12373), + [anon_sym_BSLASHpageref] = ACTIONS(12373), + [anon_sym_BSLASHcref] = ACTIONS(12373), + [anon_sym_BSLASHCref] = ACTIONS(12373), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnameCref] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHlabelcref] = ACTIONS(12373), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12373), + [anon_sym_BSLASHeqref] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange] = ACTIONS(12373), + [anon_sym_BSLASHCrefrange] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewlabel] = ACTIONS(12373), + [anon_sym_BSLASHnewcommand] = ACTIONS(12373), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12373), + [anon_sym_BSLASHgls] = ACTIONS(12373), + [anon_sym_BSLASHGls] = ACTIONS(12373), + [anon_sym_BSLASHGLS] = ACTIONS(12373), + [anon_sym_BSLASHglspl] = ACTIONS(12373), + [anon_sym_BSLASHGlspl] = ACTIONS(12373), + [anon_sym_BSLASHGLSpl] = ACTIONS(12373), + [anon_sym_BSLASHglsdisp] = ACTIONS(12373), + [anon_sym_BSLASHglslink] = ACTIONS(12373), + [anon_sym_BSLASHglstext] = ACTIONS(12373), + [anon_sym_BSLASHGlstext] = ACTIONS(12373), + [anon_sym_BSLASHGLStext] = ACTIONS(12373), + [anon_sym_BSLASHglsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12373), + [anon_sym_BSLASHglsplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSplural] = ACTIONS(12373), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHglsname] = ACTIONS(12373), + [anon_sym_BSLASHGlsname] = ACTIONS(12373), + [anon_sym_BSLASHGLSname] = ACTIONS(12373), + [anon_sym_BSLASHglssymbol] = ACTIONS(12373), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12373), + [anon_sym_BSLASHglsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12373), + [anon_sym_BSLASHglsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12373), + [anon_sym_BSLASHglsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12373), + [anon_sym_BSLASHglsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12373), + [anon_sym_BSLASHglsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12373), + [anon_sym_BSLASHnewacronym] = ACTIONS(12373), + [anon_sym_BSLASHacrshort] = ACTIONS(12373), + [anon_sym_BSLASHAcrshort] = ACTIONS(12373), + [anon_sym_BSLASHACRshort] = ACTIONS(12373), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12373), + [anon_sym_BSLASHacrlong] = ACTIONS(12373), + [anon_sym_BSLASHAcrlong] = ACTIONS(12373), + [anon_sym_BSLASHACRlong] = ACTIONS(12373), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12373), + [anon_sym_BSLASHacrfull] = ACTIONS(12373), + [anon_sym_BSLASHAcrfull] = ACTIONS(12373), + [anon_sym_BSLASHACRfull] = ACTIONS(12373), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12373), + [anon_sym_BSLASHacs] = ACTIONS(12373), + [anon_sym_BSLASHAcs] = ACTIONS(12373), + [anon_sym_BSLASHacsp] = ACTIONS(12373), + [anon_sym_BSLASHAcsp] = ACTIONS(12373), + [anon_sym_BSLASHacl] = ACTIONS(12373), + [anon_sym_BSLASHAcl] = ACTIONS(12373), + [anon_sym_BSLASHaclp] = ACTIONS(12373), + [anon_sym_BSLASHAclp] = ACTIONS(12373), + [anon_sym_BSLASHacf] = ACTIONS(12373), + [anon_sym_BSLASHAcf] = ACTIONS(12373), + [anon_sym_BSLASHacfp] = ACTIONS(12373), + [anon_sym_BSLASHAcfp] = ACTIONS(12373), + [anon_sym_BSLASHac] = ACTIONS(12373), + [anon_sym_BSLASHAc] = ACTIONS(12373), + [anon_sym_BSLASHacp] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12373), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12373), + [anon_sym_BSLASHcolor] = ACTIONS(12373), + [anon_sym_BSLASHcolorbox] = ACTIONS(12373), + [anon_sym_BSLASHtextcolor] = ACTIONS(12373), + [anon_sym_BSLASHpagecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12373), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12373), + }, + [1020] = { + [sym_generic_command_name] = ACTIONS(12377), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12377), + [aux_sym_section_token1] = ACTIONS(12377), + [aux_sym_subsection_token1] = ACTIONS(12377), + [aux_sym_subsubsection_token1] = ACTIONS(12377), + [aux_sym_paragraph_token1] = ACTIONS(12377), + [aux_sym_subparagraph_token1] = ACTIONS(12377), + [anon_sym_BSLASHitem] = ACTIONS(12377), + [anon_sym_LBRACK] = ACTIONS(12375), + [anon_sym_RBRACK] = ACTIONS(12375), + [anon_sym_LBRACE] = ACTIONS(12375), + [anon_sym_RBRACE] = ACTIONS(12375), + [anon_sym_LPAREN] = ACTIONS(12375), + [anon_sym_COMMA] = ACTIONS(12375), + [anon_sym_EQ] = ACTIONS(12375), + [sym_word] = ACTIONS(12375), + [sym_param] = ACTIONS(12375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12375), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12375), + [anon_sym_DOLLAR] = ACTIONS(12377), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12375), + [anon_sym_BSLASHbegin] = ACTIONS(12377), + [anon_sym_BSLASHcaption] = ACTIONS(12377), + [anon_sym_BSLASHcite] = ACTIONS(12377), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCite] = ACTIONS(12377), + [anon_sym_BSLASHnocite] = ACTIONS(12377), + [anon_sym_BSLASHcitet] = ACTIONS(12377), + [anon_sym_BSLASHcitep] = ACTIONS(12377), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteauthor] = ACTIONS(12377), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12377), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitetitle] = ACTIONS(12377), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteyear] = ACTIONS(12377), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitedate] = ACTIONS(12377), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteurl] = ACTIONS(12377), + [anon_sym_BSLASHfullcite] = ACTIONS(12377), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12377), + [anon_sym_BSLASHcitealt] = ACTIONS(12377), + [anon_sym_BSLASHcitealp] = ACTIONS(12377), + [anon_sym_BSLASHcitetext] = ACTIONS(12377), + [anon_sym_BSLASHparencite] = ACTIONS(12377), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHParencite] = ACTIONS(12377), + [anon_sym_BSLASHfootcite] = ACTIONS(12377), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12377), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12377), + [anon_sym_BSLASHtextcite] = ACTIONS(12377), + [anon_sym_BSLASHTextcite] = ACTIONS(12377), + [anon_sym_BSLASHsmartcite] = ACTIONS(12377), + [anon_sym_BSLASHSmartcite] = ACTIONS(12377), + [anon_sym_BSLASHsupercite] = ACTIONS(12377), + [anon_sym_BSLASHautocite] = ACTIONS(12377), + [anon_sym_BSLASHAutocite] = ACTIONS(12377), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHvolcite] = ACTIONS(12377), + [anon_sym_BSLASHVolcite] = ACTIONS(12377), + [anon_sym_BSLASHpvolcite] = ACTIONS(12377), + [anon_sym_BSLASHPvolcite] = ACTIONS(12377), + [anon_sym_BSLASHfvolcite] = ACTIONS(12377), + [anon_sym_BSLASHftvolcite] = ACTIONS(12377), + [anon_sym_BSLASHsvolcite] = ACTIONS(12377), + [anon_sym_BSLASHSvolcite] = ACTIONS(12377), + [anon_sym_BSLASHtvolcite] = ACTIONS(12377), + [anon_sym_BSLASHTvolcite] = ACTIONS(12377), + [anon_sym_BSLASHavolcite] = ACTIONS(12377), + [anon_sym_BSLASHAvolcite] = ACTIONS(12377), + [anon_sym_BSLASHnotecite] = ACTIONS(12377), + [anon_sym_BSLASHpnotecite] = ACTIONS(12377), + [anon_sym_BSLASHPnotecite] = ACTIONS(12377), + [anon_sym_BSLASHfnotecite] = ACTIONS(12377), + [anon_sym_BSLASHusepackage] = ACTIONS(12377), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12377), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12377), + [anon_sym_BSLASHinclude] = ACTIONS(12377), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12377), + [anon_sym_BSLASHinput] = ACTIONS(12377), + [anon_sym_BSLASHsubfile] = ACTIONS(12377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12377), + [anon_sym_BSLASHbibliography] = ACTIONS(12377), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12377), + [anon_sym_BSLASHincludesvg] = ACTIONS(12377), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12377), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12377), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12377), + [anon_sym_BSLASHimport] = ACTIONS(12377), + [anon_sym_BSLASHsubimport] = ACTIONS(12377), + [anon_sym_BSLASHinputfrom] = ACTIONS(12377), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12377), + [anon_sym_BSLASHincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHlabel] = ACTIONS(12377), + [anon_sym_BSLASHref] = ACTIONS(12377), + [anon_sym_BSLASHvref] = ACTIONS(12377), + [anon_sym_BSLASHVref] = ACTIONS(12377), + [anon_sym_BSLASHautoref] = ACTIONS(12377), + [anon_sym_BSLASHpageref] = ACTIONS(12377), + [anon_sym_BSLASHcref] = ACTIONS(12377), + [anon_sym_BSLASHCref] = ACTIONS(12377), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnameCref] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHlabelcref] = ACTIONS(12377), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12377), + [anon_sym_BSLASHeqref] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange] = ACTIONS(12377), + [anon_sym_BSLASHCrefrange] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewlabel] = ACTIONS(12377), + [anon_sym_BSLASHnewcommand] = ACTIONS(12377), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12377), + [anon_sym_BSLASHgls] = ACTIONS(12377), + [anon_sym_BSLASHGls] = ACTIONS(12377), + [anon_sym_BSLASHGLS] = ACTIONS(12377), + [anon_sym_BSLASHglspl] = ACTIONS(12377), + [anon_sym_BSLASHGlspl] = ACTIONS(12377), + [anon_sym_BSLASHGLSpl] = ACTIONS(12377), + [anon_sym_BSLASHglsdisp] = ACTIONS(12377), + [anon_sym_BSLASHglslink] = ACTIONS(12377), + [anon_sym_BSLASHglstext] = ACTIONS(12377), + [anon_sym_BSLASHGlstext] = ACTIONS(12377), + [anon_sym_BSLASHGLStext] = ACTIONS(12377), + [anon_sym_BSLASHglsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12377), + [anon_sym_BSLASHglsplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSplural] = ACTIONS(12377), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHglsname] = ACTIONS(12377), + [anon_sym_BSLASHGlsname] = ACTIONS(12377), + [anon_sym_BSLASHGLSname] = ACTIONS(12377), + [anon_sym_BSLASHglssymbol] = ACTIONS(12377), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12377), + [anon_sym_BSLASHglsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12377), + [anon_sym_BSLASHglsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12377), + [anon_sym_BSLASHglsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12377), + [anon_sym_BSLASHglsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12377), + [anon_sym_BSLASHglsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12377), + [anon_sym_BSLASHnewacronym] = ACTIONS(12377), + [anon_sym_BSLASHacrshort] = ACTIONS(12377), + [anon_sym_BSLASHAcrshort] = ACTIONS(12377), + [anon_sym_BSLASHACRshort] = ACTIONS(12377), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12377), + [anon_sym_BSLASHacrlong] = ACTIONS(12377), + [anon_sym_BSLASHAcrlong] = ACTIONS(12377), + [anon_sym_BSLASHACRlong] = ACTIONS(12377), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12377), + [anon_sym_BSLASHacrfull] = ACTIONS(12377), + [anon_sym_BSLASHAcrfull] = ACTIONS(12377), + [anon_sym_BSLASHACRfull] = ACTIONS(12377), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12377), + [anon_sym_BSLASHacs] = ACTIONS(12377), + [anon_sym_BSLASHAcs] = ACTIONS(12377), + [anon_sym_BSLASHacsp] = ACTIONS(12377), + [anon_sym_BSLASHAcsp] = ACTIONS(12377), + [anon_sym_BSLASHacl] = ACTIONS(12377), + [anon_sym_BSLASHAcl] = ACTIONS(12377), + [anon_sym_BSLASHaclp] = ACTIONS(12377), + [anon_sym_BSLASHAclp] = ACTIONS(12377), + [anon_sym_BSLASHacf] = ACTIONS(12377), + [anon_sym_BSLASHAcf] = ACTIONS(12377), + [anon_sym_BSLASHacfp] = ACTIONS(12377), + [anon_sym_BSLASHAcfp] = ACTIONS(12377), + [anon_sym_BSLASHac] = ACTIONS(12377), + [anon_sym_BSLASHAc] = ACTIONS(12377), + [anon_sym_BSLASHacp] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12377), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12377), + [anon_sym_BSLASHcolor] = ACTIONS(12377), + [anon_sym_BSLASHcolorbox] = ACTIONS(12377), + [anon_sym_BSLASHtextcolor] = ACTIONS(12377), + [anon_sym_BSLASHpagecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12377), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12377), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12377), + }, + [1021] = { + [sym_generic_command_name] = ACTIONS(12381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12381), + [aux_sym_section_token1] = ACTIONS(12381), + [aux_sym_subsection_token1] = ACTIONS(12381), + [aux_sym_subsubsection_token1] = ACTIONS(12381), + [aux_sym_paragraph_token1] = ACTIONS(12381), + [aux_sym_subparagraph_token1] = ACTIONS(12381), + [anon_sym_BSLASHitem] = ACTIONS(12381), + [anon_sym_LBRACK] = ACTIONS(12379), + [anon_sym_RBRACK] = ACTIONS(12379), + [anon_sym_LBRACE] = ACTIONS(12379), + [anon_sym_RBRACE] = ACTIONS(12379), + [anon_sym_LPAREN] = ACTIONS(12379), + [anon_sym_COMMA] = ACTIONS(12379), + [anon_sym_EQ] = ACTIONS(12379), + [sym_word] = ACTIONS(12379), + [sym_param] = ACTIONS(12379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12379), + [anon_sym_DOLLAR] = ACTIONS(12381), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12379), + [anon_sym_BSLASHbegin] = ACTIONS(12381), + [anon_sym_BSLASHcaption] = ACTIONS(12381), + [anon_sym_BSLASHcite] = ACTIONS(12381), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCite] = ACTIONS(12381), + [anon_sym_BSLASHnocite] = ACTIONS(12381), + [anon_sym_BSLASHcitet] = ACTIONS(12381), + [anon_sym_BSLASHcitep] = ACTIONS(12381), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteauthor] = ACTIONS(12381), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12381), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitetitle] = ACTIONS(12381), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteyear] = ACTIONS(12381), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitedate] = ACTIONS(12381), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteurl] = ACTIONS(12381), + [anon_sym_BSLASHfullcite] = ACTIONS(12381), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12381), + [anon_sym_BSLASHcitealt] = ACTIONS(12381), + [anon_sym_BSLASHcitealp] = ACTIONS(12381), + [anon_sym_BSLASHcitetext] = ACTIONS(12381), + [anon_sym_BSLASHparencite] = ACTIONS(12381), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHParencite] = ACTIONS(12381), + [anon_sym_BSLASHfootcite] = ACTIONS(12381), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12381), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12381), + [anon_sym_BSLASHtextcite] = ACTIONS(12381), + [anon_sym_BSLASHTextcite] = ACTIONS(12381), + [anon_sym_BSLASHsmartcite] = ACTIONS(12381), + [anon_sym_BSLASHSmartcite] = ACTIONS(12381), + [anon_sym_BSLASHsupercite] = ACTIONS(12381), + [anon_sym_BSLASHautocite] = ACTIONS(12381), + [anon_sym_BSLASHAutocite] = ACTIONS(12381), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHvolcite] = ACTIONS(12381), + [anon_sym_BSLASHVolcite] = ACTIONS(12381), + [anon_sym_BSLASHpvolcite] = ACTIONS(12381), + [anon_sym_BSLASHPvolcite] = ACTIONS(12381), + [anon_sym_BSLASHfvolcite] = ACTIONS(12381), + [anon_sym_BSLASHftvolcite] = ACTIONS(12381), + [anon_sym_BSLASHsvolcite] = ACTIONS(12381), + [anon_sym_BSLASHSvolcite] = ACTIONS(12381), + [anon_sym_BSLASHtvolcite] = ACTIONS(12381), + [anon_sym_BSLASHTvolcite] = ACTIONS(12381), + [anon_sym_BSLASHavolcite] = ACTIONS(12381), + [anon_sym_BSLASHAvolcite] = ACTIONS(12381), + [anon_sym_BSLASHnotecite] = ACTIONS(12381), + [anon_sym_BSLASHpnotecite] = ACTIONS(12381), + [anon_sym_BSLASHPnotecite] = ACTIONS(12381), + [anon_sym_BSLASHfnotecite] = ACTIONS(12381), + [anon_sym_BSLASHusepackage] = ACTIONS(12381), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12381), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12381), + [anon_sym_BSLASHinclude] = ACTIONS(12381), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12381), + [anon_sym_BSLASHinput] = ACTIONS(12381), + [anon_sym_BSLASHsubfile] = ACTIONS(12381), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12381), + [anon_sym_BSLASHbibliography] = ACTIONS(12381), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12381), + [anon_sym_BSLASHincludesvg] = ACTIONS(12381), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12381), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12381), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12381), + [anon_sym_BSLASHimport] = ACTIONS(12381), + [anon_sym_BSLASHsubimport] = ACTIONS(12381), + [anon_sym_BSLASHinputfrom] = ACTIONS(12381), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12381), + [anon_sym_BSLASHincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHlabel] = ACTIONS(12381), + [anon_sym_BSLASHref] = ACTIONS(12381), + [anon_sym_BSLASHvref] = ACTIONS(12381), + [anon_sym_BSLASHVref] = ACTIONS(12381), + [anon_sym_BSLASHautoref] = ACTIONS(12381), + [anon_sym_BSLASHpageref] = ACTIONS(12381), + [anon_sym_BSLASHcref] = ACTIONS(12381), + [anon_sym_BSLASHCref] = ACTIONS(12381), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnameCref] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHlabelcref] = ACTIONS(12381), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12381), + [anon_sym_BSLASHeqref] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange] = ACTIONS(12381), + [anon_sym_BSLASHCrefrange] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewlabel] = ACTIONS(12381), + [anon_sym_BSLASHnewcommand] = ACTIONS(12381), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12381), + [anon_sym_BSLASHgls] = ACTIONS(12381), + [anon_sym_BSLASHGls] = ACTIONS(12381), + [anon_sym_BSLASHGLS] = ACTIONS(12381), + [anon_sym_BSLASHglspl] = ACTIONS(12381), + [anon_sym_BSLASHGlspl] = ACTIONS(12381), + [anon_sym_BSLASHGLSpl] = ACTIONS(12381), + [anon_sym_BSLASHglsdisp] = ACTIONS(12381), + [anon_sym_BSLASHglslink] = ACTIONS(12381), + [anon_sym_BSLASHglstext] = ACTIONS(12381), + [anon_sym_BSLASHGlstext] = ACTIONS(12381), + [anon_sym_BSLASHGLStext] = ACTIONS(12381), + [anon_sym_BSLASHglsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12381), + [anon_sym_BSLASHglsplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSplural] = ACTIONS(12381), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHglsname] = ACTIONS(12381), + [anon_sym_BSLASHGlsname] = ACTIONS(12381), + [anon_sym_BSLASHGLSname] = ACTIONS(12381), + [anon_sym_BSLASHglssymbol] = ACTIONS(12381), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12381), + [anon_sym_BSLASHglsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12381), + [anon_sym_BSLASHglsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12381), + [anon_sym_BSLASHglsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12381), + [anon_sym_BSLASHglsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12381), + [anon_sym_BSLASHglsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12381), + [anon_sym_BSLASHnewacronym] = ACTIONS(12381), + [anon_sym_BSLASHacrshort] = ACTIONS(12381), + [anon_sym_BSLASHAcrshort] = ACTIONS(12381), + [anon_sym_BSLASHACRshort] = ACTIONS(12381), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12381), + [anon_sym_BSLASHacrlong] = ACTIONS(12381), + [anon_sym_BSLASHAcrlong] = ACTIONS(12381), + [anon_sym_BSLASHACRlong] = ACTIONS(12381), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12381), + [anon_sym_BSLASHacrfull] = ACTIONS(12381), + [anon_sym_BSLASHAcrfull] = ACTIONS(12381), + [anon_sym_BSLASHACRfull] = ACTIONS(12381), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12381), + [anon_sym_BSLASHacs] = ACTIONS(12381), + [anon_sym_BSLASHAcs] = ACTIONS(12381), + [anon_sym_BSLASHacsp] = ACTIONS(12381), + [anon_sym_BSLASHAcsp] = ACTIONS(12381), + [anon_sym_BSLASHacl] = ACTIONS(12381), + [anon_sym_BSLASHAcl] = ACTIONS(12381), + [anon_sym_BSLASHaclp] = ACTIONS(12381), + [anon_sym_BSLASHAclp] = ACTIONS(12381), + [anon_sym_BSLASHacf] = ACTIONS(12381), + [anon_sym_BSLASHAcf] = ACTIONS(12381), + [anon_sym_BSLASHacfp] = ACTIONS(12381), + [anon_sym_BSLASHAcfp] = ACTIONS(12381), + [anon_sym_BSLASHac] = ACTIONS(12381), + [anon_sym_BSLASHAc] = ACTIONS(12381), + [anon_sym_BSLASHacp] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12381), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12381), + [anon_sym_BSLASHcolor] = ACTIONS(12381), + [anon_sym_BSLASHcolorbox] = ACTIONS(12381), + [anon_sym_BSLASHtextcolor] = ACTIONS(12381), + [anon_sym_BSLASHpagecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12381), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12381), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12381), + }, + [1022] = { + [sym_generic_command_name] = ACTIONS(12393), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12393), + [aux_sym_section_token1] = ACTIONS(12393), + [aux_sym_subsection_token1] = ACTIONS(12393), + [aux_sym_subsubsection_token1] = ACTIONS(12393), + [aux_sym_paragraph_token1] = ACTIONS(12393), + [aux_sym_subparagraph_token1] = ACTIONS(12393), + [anon_sym_BSLASHitem] = ACTIONS(12393), + [anon_sym_LBRACK] = ACTIONS(12391), + [anon_sym_RBRACK] = ACTIONS(12391), + [anon_sym_LBRACE] = ACTIONS(12391), + [anon_sym_RBRACE] = ACTIONS(12391), + [anon_sym_LPAREN] = ACTIONS(12391), + [anon_sym_COMMA] = ACTIONS(12391), + [anon_sym_EQ] = ACTIONS(12391), + [sym_word] = ACTIONS(12391), + [sym_param] = ACTIONS(12391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12391), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12391), + [anon_sym_DOLLAR] = ACTIONS(12393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12391), + [anon_sym_BSLASHbegin] = ACTIONS(12393), + [anon_sym_BSLASHcaption] = ACTIONS(12393), + [anon_sym_BSLASHcite] = ACTIONS(12393), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCite] = ACTIONS(12393), + [anon_sym_BSLASHnocite] = ACTIONS(12393), + [anon_sym_BSLASHcitet] = ACTIONS(12393), + [anon_sym_BSLASHcitep] = ACTIONS(12393), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteauthor] = ACTIONS(12393), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12393), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitetitle] = ACTIONS(12393), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteyear] = ACTIONS(12393), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitedate] = ACTIONS(12393), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteurl] = ACTIONS(12393), + [anon_sym_BSLASHfullcite] = ACTIONS(12393), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12393), + [anon_sym_BSLASHcitealt] = ACTIONS(12393), + [anon_sym_BSLASHcitealp] = ACTIONS(12393), + [anon_sym_BSLASHcitetext] = ACTIONS(12393), + [anon_sym_BSLASHparencite] = ACTIONS(12393), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHParencite] = ACTIONS(12393), + [anon_sym_BSLASHfootcite] = ACTIONS(12393), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12393), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12393), + [anon_sym_BSLASHtextcite] = ACTIONS(12393), + [anon_sym_BSLASHTextcite] = ACTIONS(12393), + [anon_sym_BSLASHsmartcite] = ACTIONS(12393), + [anon_sym_BSLASHSmartcite] = ACTIONS(12393), + [anon_sym_BSLASHsupercite] = ACTIONS(12393), + [anon_sym_BSLASHautocite] = ACTIONS(12393), + [anon_sym_BSLASHAutocite] = ACTIONS(12393), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHvolcite] = ACTIONS(12393), + [anon_sym_BSLASHVolcite] = ACTIONS(12393), + [anon_sym_BSLASHpvolcite] = ACTIONS(12393), + [anon_sym_BSLASHPvolcite] = ACTIONS(12393), + [anon_sym_BSLASHfvolcite] = ACTIONS(12393), + [anon_sym_BSLASHftvolcite] = ACTIONS(12393), + [anon_sym_BSLASHsvolcite] = ACTIONS(12393), + [anon_sym_BSLASHSvolcite] = ACTIONS(12393), + [anon_sym_BSLASHtvolcite] = ACTIONS(12393), + [anon_sym_BSLASHTvolcite] = ACTIONS(12393), + [anon_sym_BSLASHavolcite] = ACTIONS(12393), + [anon_sym_BSLASHAvolcite] = ACTIONS(12393), + [anon_sym_BSLASHnotecite] = ACTIONS(12393), + [anon_sym_BSLASHpnotecite] = ACTIONS(12393), + [anon_sym_BSLASHPnotecite] = ACTIONS(12393), + [anon_sym_BSLASHfnotecite] = ACTIONS(12393), + [anon_sym_BSLASHusepackage] = ACTIONS(12393), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12393), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12393), + [anon_sym_BSLASHinclude] = ACTIONS(12393), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12393), + [anon_sym_BSLASHinput] = ACTIONS(12393), + [anon_sym_BSLASHsubfile] = ACTIONS(12393), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12393), + [anon_sym_BSLASHbibliography] = ACTIONS(12393), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12393), + [anon_sym_BSLASHincludesvg] = ACTIONS(12393), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12393), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12393), + [anon_sym_BSLASHimport] = ACTIONS(12393), + [anon_sym_BSLASHsubimport] = ACTIONS(12393), + [anon_sym_BSLASHinputfrom] = ACTIONS(12393), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12393), + [anon_sym_BSLASHincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHlabel] = ACTIONS(12393), + [anon_sym_BSLASHref] = ACTIONS(12393), + [anon_sym_BSLASHvref] = ACTIONS(12393), + [anon_sym_BSLASHVref] = ACTIONS(12393), + [anon_sym_BSLASHautoref] = ACTIONS(12393), + [anon_sym_BSLASHpageref] = ACTIONS(12393), + [anon_sym_BSLASHcref] = ACTIONS(12393), + [anon_sym_BSLASHCref] = ACTIONS(12393), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnameCref] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHlabelcref] = ACTIONS(12393), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12393), + [anon_sym_BSLASHeqref] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange] = ACTIONS(12393), + [anon_sym_BSLASHCrefrange] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewlabel] = ACTIONS(12393), + [anon_sym_BSLASHnewcommand] = ACTIONS(12393), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12393), + [anon_sym_BSLASHgls] = ACTIONS(12393), + [anon_sym_BSLASHGls] = ACTIONS(12393), + [anon_sym_BSLASHGLS] = ACTIONS(12393), + [anon_sym_BSLASHglspl] = ACTIONS(12393), + [anon_sym_BSLASHGlspl] = ACTIONS(12393), + [anon_sym_BSLASHGLSpl] = ACTIONS(12393), + [anon_sym_BSLASHglsdisp] = ACTIONS(12393), + [anon_sym_BSLASHglslink] = ACTIONS(12393), + [anon_sym_BSLASHglstext] = ACTIONS(12393), + [anon_sym_BSLASHGlstext] = ACTIONS(12393), + [anon_sym_BSLASHGLStext] = ACTIONS(12393), + [anon_sym_BSLASHglsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12393), + [anon_sym_BSLASHglsplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSplural] = ACTIONS(12393), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHglsname] = ACTIONS(12393), + [anon_sym_BSLASHGlsname] = ACTIONS(12393), + [anon_sym_BSLASHGLSname] = ACTIONS(12393), + [anon_sym_BSLASHglssymbol] = ACTIONS(12393), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12393), + [anon_sym_BSLASHglsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12393), + [anon_sym_BSLASHglsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12393), + [anon_sym_BSLASHglsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12393), + [anon_sym_BSLASHglsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12393), + [anon_sym_BSLASHglsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12393), + [anon_sym_BSLASHnewacronym] = ACTIONS(12393), + [anon_sym_BSLASHacrshort] = ACTIONS(12393), + [anon_sym_BSLASHAcrshort] = ACTIONS(12393), + [anon_sym_BSLASHACRshort] = ACTIONS(12393), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12393), + [anon_sym_BSLASHacrlong] = ACTIONS(12393), + [anon_sym_BSLASHAcrlong] = ACTIONS(12393), + [anon_sym_BSLASHACRlong] = ACTIONS(12393), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12393), + [anon_sym_BSLASHacrfull] = ACTIONS(12393), + [anon_sym_BSLASHAcrfull] = ACTIONS(12393), + [anon_sym_BSLASHACRfull] = ACTIONS(12393), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12393), + [anon_sym_BSLASHacs] = ACTIONS(12393), + [anon_sym_BSLASHAcs] = ACTIONS(12393), + [anon_sym_BSLASHacsp] = ACTIONS(12393), + [anon_sym_BSLASHAcsp] = ACTIONS(12393), + [anon_sym_BSLASHacl] = ACTIONS(12393), + [anon_sym_BSLASHAcl] = ACTIONS(12393), + [anon_sym_BSLASHaclp] = ACTIONS(12393), + [anon_sym_BSLASHAclp] = ACTIONS(12393), + [anon_sym_BSLASHacf] = ACTIONS(12393), + [anon_sym_BSLASHAcf] = ACTIONS(12393), + [anon_sym_BSLASHacfp] = ACTIONS(12393), + [anon_sym_BSLASHAcfp] = ACTIONS(12393), + [anon_sym_BSLASHac] = ACTIONS(12393), + [anon_sym_BSLASHAc] = ACTIONS(12393), + [anon_sym_BSLASHacp] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12393), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12393), + [anon_sym_BSLASHcolor] = ACTIONS(12393), + [anon_sym_BSLASHcolorbox] = ACTIONS(12393), + [anon_sym_BSLASHtextcolor] = ACTIONS(12393), + [anon_sym_BSLASHpagecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12393), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12393), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12393), + }, + [1023] = { + [sym_generic_command_name] = ACTIONS(12397), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12397), + [aux_sym_section_token1] = ACTIONS(12397), + [aux_sym_subsection_token1] = ACTIONS(12397), + [aux_sym_subsubsection_token1] = ACTIONS(12397), + [aux_sym_paragraph_token1] = ACTIONS(12397), + [aux_sym_subparagraph_token1] = ACTIONS(12397), + [anon_sym_BSLASHitem] = ACTIONS(12397), + [anon_sym_LBRACK] = ACTIONS(12395), + [anon_sym_RBRACK] = ACTIONS(12395), + [anon_sym_LBRACE] = ACTIONS(12395), + [anon_sym_RBRACE] = ACTIONS(12395), + [anon_sym_LPAREN] = ACTIONS(12395), + [anon_sym_COMMA] = ACTIONS(12395), + [anon_sym_EQ] = ACTIONS(12395), + [sym_word] = ACTIONS(12395), + [sym_param] = ACTIONS(12395), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12395), + [anon_sym_DOLLAR] = ACTIONS(12397), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12395), + [anon_sym_BSLASHbegin] = ACTIONS(12397), + [anon_sym_BSLASHcaption] = ACTIONS(12397), + [anon_sym_BSLASHcite] = ACTIONS(12397), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCite] = ACTIONS(12397), + [anon_sym_BSLASHnocite] = ACTIONS(12397), + [anon_sym_BSLASHcitet] = ACTIONS(12397), + [anon_sym_BSLASHcitep] = ACTIONS(12397), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteauthor] = ACTIONS(12397), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12397), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitetitle] = ACTIONS(12397), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteyear] = ACTIONS(12397), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitedate] = ACTIONS(12397), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteurl] = ACTIONS(12397), + [anon_sym_BSLASHfullcite] = ACTIONS(12397), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12397), + [anon_sym_BSLASHcitealt] = ACTIONS(12397), + [anon_sym_BSLASHcitealp] = ACTIONS(12397), + [anon_sym_BSLASHcitetext] = ACTIONS(12397), + [anon_sym_BSLASHparencite] = ACTIONS(12397), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHParencite] = ACTIONS(12397), + [anon_sym_BSLASHfootcite] = ACTIONS(12397), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12397), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12397), + [anon_sym_BSLASHtextcite] = ACTIONS(12397), + [anon_sym_BSLASHTextcite] = ACTIONS(12397), + [anon_sym_BSLASHsmartcite] = ACTIONS(12397), + [anon_sym_BSLASHSmartcite] = ACTIONS(12397), + [anon_sym_BSLASHsupercite] = ACTIONS(12397), + [anon_sym_BSLASHautocite] = ACTIONS(12397), + [anon_sym_BSLASHAutocite] = ACTIONS(12397), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHvolcite] = ACTIONS(12397), + [anon_sym_BSLASHVolcite] = ACTIONS(12397), + [anon_sym_BSLASHpvolcite] = ACTIONS(12397), + [anon_sym_BSLASHPvolcite] = ACTIONS(12397), + [anon_sym_BSLASHfvolcite] = ACTIONS(12397), + [anon_sym_BSLASHftvolcite] = ACTIONS(12397), + [anon_sym_BSLASHsvolcite] = ACTIONS(12397), + [anon_sym_BSLASHSvolcite] = ACTIONS(12397), + [anon_sym_BSLASHtvolcite] = ACTIONS(12397), + [anon_sym_BSLASHTvolcite] = ACTIONS(12397), + [anon_sym_BSLASHavolcite] = ACTIONS(12397), + [anon_sym_BSLASHAvolcite] = ACTIONS(12397), + [anon_sym_BSLASHnotecite] = ACTIONS(12397), + [anon_sym_BSLASHpnotecite] = ACTIONS(12397), + [anon_sym_BSLASHPnotecite] = ACTIONS(12397), + [anon_sym_BSLASHfnotecite] = ACTIONS(12397), + [anon_sym_BSLASHusepackage] = ACTIONS(12397), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12397), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12397), + [anon_sym_BSLASHinclude] = ACTIONS(12397), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12397), + [anon_sym_BSLASHinput] = ACTIONS(12397), + [anon_sym_BSLASHsubfile] = ACTIONS(12397), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12397), + [anon_sym_BSLASHbibliography] = ACTIONS(12397), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12397), + [anon_sym_BSLASHincludesvg] = ACTIONS(12397), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12397), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12397), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12397), + [anon_sym_BSLASHimport] = ACTIONS(12397), + [anon_sym_BSLASHsubimport] = ACTIONS(12397), + [anon_sym_BSLASHinputfrom] = ACTIONS(12397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12397), + [anon_sym_BSLASHincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHlabel] = ACTIONS(12397), + [anon_sym_BSLASHref] = ACTIONS(12397), + [anon_sym_BSLASHvref] = ACTIONS(12397), + [anon_sym_BSLASHVref] = ACTIONS(12397), + [anon_sym_BSLASHautoref] = ACTIONS(12397), + [anon_sym_BSLASHpageref] = ACTIONS(12397), + [anon_sym_BSLASHcref] = ACTIONS(12397), + [anon_sym_BSLASHCref] = ACTIONS(12397), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnameCref] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHlabelcref] = ACTIONS(12397), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12397), + [anon_sym_BSLASHeqref] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange] = ACTIONS(12397), + [anon_sym_BSLASHCrefrange] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewlabel] = ACTIONS(12397), + [anon_sym_BSLASHnewcommand] = ACTIONS(12397), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12397), + [anon_sym_BSLASHgls] = ACTIONS(12397), + [anon_sym_BSLASHGls] = ACTIONS(12397), + [anon_sym_BSLASHGLS] = ACTIONS(12397), + [anon_sym_BSLASHglspl] = ACTIONS(12397), + [anon_sym_BSLASHGlspl] = ACTIONS(12397), + [anon_sym_BSLASHGLSpl] = ACTIONS(12397), + [anon_sym_BSLASHglsdisp] = ACTIONS(12397), + [anon_sym_BSLASHglslink] = ACTIONS(12397), + [anon_sym_BSLASHglstext] = ACTIONS(12397), + [anon_sym_BSLASHGlstext] = ACTIONS(12397), + [anon_sym_BSLASHGLStext] = ACTIONS(12397), + [anon_sym_BSLASHglsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12397), + [anon_sym_BSLASHglsplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSplural] = ACTIONS(12397), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHglsname] = ACTIONS(12397), + [anon_sym_BSLASHGlsname] = ACTIONS(12397), + [anon_sym_BSLASHGLSname] = ACTIONS(12397), + [anon_sym_BSLASHglssymbol] = ACTIONS(12397), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12397), + [anon_sym_BSLASHglsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12397), + [anon_sym_BSLASHglsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12397), + [anon_sym_BSLASHglsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12397), + [anon_sym_BSLASHglsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12397), + [anon_sym_BSLASHglsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12397), + [anon_sym_BSLASHnewacronym] = ACTIONS(12397), + [anon_sym_BSLASHacrshort] = ACTIONS(12397), + [anon_sym_BSLASHAcrshort] = ACTIONS(12397), + [anon_sym_BSLASHACRshort] = ACTIONS(12397), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12397), + [anon_sym_BSLASHacrlong] = ACTIONS(12397), + [anon_sym_BSLASHAcrlong] = ACTIONS(12397), + [anon_sym_BSLASHACRlong] = ACTIONS(12397), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12397), + [anon_sym_BSLASHacrfull] = ACTIONS(12397), + [anon_sym_BSLASHAcrfull] = ACTIONS(12397), + [anon_sym_BSLASHACRfull] = ACTIONS(12397), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12397), + [anon_sym_BSLASHacs] = ACTIONS(12397), + [anon_sym_BSLASHAcs] = ACTIONS(12397), + [anon_sym_BSLASHacsp] = ACTIONS(12397), + [anon_sym_BSLASHAcsp] = ACTIONS(12397), + [anon_sym_BSLASHacl] = ACTIONS(12397), + [anon_sym_BSLASHAcl] = ACTIONS(12397), + [anon_sym_BSLASHaclp] = ACTIONS(12397), + [anon_sym_BSLASHAclp] = ACTIONS(12397), + [anon_sym_BSLASHacf] = ACTIONS(12397), + [anon_sym_BSLASHAcf] = ACTIONS(12397), + [anon_sym_BSLASHacfp] = ACTIONS(12397), + [anon_sym_BSLASHAcfp] = ACTIONS(12397), + [anon_sym_BSLASHac] = ACTIONS(12397), + [anon_sym_BSLASHAc] = ACTIONS(12397), + [anon_sym_BSLASHacp] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12397), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12397), + [anon_sym_BSLASHcolor] = ACTIONS(12397), + [anon_sym_BSLASHcolorbox] = ACTIONS(12397), + [anon_sym_BSLASHtextcolor] = ACTIONS(12397), + [anon_sym_BSLASHpagecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12397), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12397), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12397), + }, + [1024] = { + [sym_generic_command_name] = ACTIONS(12401), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12401), + [aux_sym_section_token1] = ACTIONS(12401), + [aux_sym_subsection_token1] = ACTIONS(12401), + [aux_sym_subsubsection_token1] = ACTIONS(12401), + [aux_sym_paragraph_token1] = ACTIONS(12401), + [aux_sym_subparagraph_token1] = ACTIONS(12401), + [anon_sym_BSLASHitem] = ACTIONS(12401), + [anon_sym_LBRACK] = ACTIONS(12399), + [anon_sym_RBRACK] = ACTIONS(12399), + [anon_sym_LBRACE] = ACTIONS(12399), + [anon_sym_RBRACE] = ACTIONS(12399), + [anon_sym_LPAREN] = ACTIONS(12399), + [anon_sym_COMMA] = ACTIONS(12399), + [anon_sym_EQ] = ACTIONS(12399), + [sym_word] = ACTIONS(12399), + [sym_param] = ACTIONS(12399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12399), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12399), + [anon_sym_DOLLAR] = ACTIONS(12401), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12399), + [anon_sym_BSLASHbegin] = ACTIONS(12401), + [anon_sym_BSLASHcaption] = ACTIONS(12401), + [anon_sym_BSLASHcite] = ACTIONS(12401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCite] = ACTIONS(12401), + [anon_sym_BSLASHnocite] = ACTIONS(12401), + [anon_sym_BSLASHcitet] = ACTIONS(12401), + [anon_sym_BSLASHcitep] = ACTIONS(12401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteauthor] = ACTIONS(12401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitetitle] = ACTIONS(12401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteyear] = ACTIONS(12401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitedate] = ACTIONS(12401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteurl] = ACTIONS(12401), + [anon_sym_BSLASHfullcite] = ACTIONS(12401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12401), + [anon_sym_BSLASHcitealt] = ACTIONS(12401), + [anon_sym_BSLASHcitealp] = ACTIONS(12401), + [anon_sym_BSLASHcitetext] = ACTIONS(12401), + [anon_sym_BSLASHparencite] = ACTIONS(12401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHParencite] = ACTIONS(12401), + [anon_sym_BSLASHfootcite] = ACTIONS(12401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12401), + [anon_sym_BSLASHtextcite] = ACTIONS(12401), + [anon_sym_BSLASHTextcite] = ACTIONS(12401), + [anon_sym_BSLASHsmartcite] = ACTIONS(12401), + [anon_sym_BSLASHSmartcite] = ACTIONS(12401), + [anon_sym_BSLASHsupercite] = ACTIONS(12401), + [anon_sym_BSLASHautocite] = ACTIONS(12401), + [anon_sym_BSLASHAutocite] = ACTIONS(12401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHvolcite] = ACTIONS(12401), + [anon_sym_BSLASHVolcite] = ACTIONS(12401), + [anon_sym_BSLASHpvolcite] = ACTIONS(12401), + [anon_sym_BSLASHPvolcite] = ACTIONS(12401), + [anon_sym_BSLASHfvolcite] = ACTIONS(12401), + [anon_sym_BSLASHftvolcite] = ACTIONS(12401), + [anon_sym_BSLASHsvolcite] = ACTIONS(12401), + [anon_sym_BSLASHSvolcite] = ACTIONS(12401), + [anon_sym_BSLASHtvolcite] = ACTIONS(12401), + [anon_sym_BSLASHTvolcite] = ACTIONS(12401), + [anon_sym_BSLASHavolcite] = ACTIONS(12401), + [anon_sym_BSLASHAvolcite] = ACTIONS(12401), + [anon_sym_BSLASHnotecite] = ACTIONS(12401), + [anon_sym_BSLASHpnotecite] = ACTIONS(12401), + [anon_sym_BSLASHPnotecite] = ACTIONS(12401), + [anon_sym_BSLASHfnotecite] = ACTIONS(12401), + [anon_sym_BSLASHusepackage] = ACTIONS(12401), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12401), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12401), + [anon_sym_BSLASHinclude] = ACTIONS(12401), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12401), + [anon_sym_BSLASHinput] = ACTIONS(12401), + [anon_sym_BSLASHsubfile] = ACTIONS(12401), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12401), + [anon_sym_BSLASHbibliography] = ACTIONS(12401), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12401), + [anon_sym_BSLASHincludesvg] = ACTIONS(12401), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12401), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12401), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12401), + [anon_sym_BSLASHimport] = ACTIONS(12401), + [anon_sym_BSLASHsubimport] = ACTIONS(12401), + [anon_sym_BSLASHinputfrom] = ACTIONS(12401), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12401), + [anon_sym_BSLASHincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHlabel] = ACTIONS(12401), + [anon_sym_BSLASHref] = ACTIONS(12401), + [anon_sym_BSLASHvref] = ACTIONS(12401), + [anon_sym_BSLASHVref] = ACTIONS(12401), + [anon_sym_BSLASHautoref] = ACTIONS(12401), + [anon_sym_BSLASHpageref] = ACTIONS(12401), + [anon_sym_BSLASHcref] = ACTIONS(12401), + [anon_sym_BSLASHCref] = ACTIONS(12401), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnameCref] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHlabelcref] = ACTIONS(12401), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12401), + [anon_sym_BSLASHeqref] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange] = ACTIONS(12401), + [anon_sym_BSLASHCrefrange] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewlabel] = ACTIONS(12401), + [anon_sym_BSLASHnewcommand] = ACTIONS(12401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12401), + [anon_sym_BSLASHgls] = ACTIONS(12401), + [anon_sym_BSLASHGls] = ACTIONS(12401), + [anon_sym_BSLASHGLS] = ACTIONS(12401), + [anon_sym_BSLASHglspl] = ACTIONS(12401), + [anon_sym_BSLASHGlspl] = ACTIONS(12401), + [anon_sym_BSLASHGLSpl] = ACTIONS(12401), + [anon_sym_BSLASHglsdisp] = ACTIONS(12401), + [anon_sym_BSLASHglslink] = ACTIONS(12401), + [anon_sym_BSLASHglstext] = ACTIONS(12401), + [anon_sym_BSLASHGlstext] = ACTIONS(12401), + [anon_sym_BSLASHGLStext] = ACTIONS(12401), + [anon_sym_BSLASHglsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12401), + [anon_sym_BSLASHglsplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSplural] = ACTIONS(12401), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHglsname] = ACTIONS(12401), + [anon_sym_BSLASHGlsname] = ACTIONS(12401), + [anon_sym_BSLASHGLSname] = ACTIONS(12401), + [anon_sym_BSLASHglssymbol] = ACTIONS(12401), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12401), + [anon_sym_BSLASHglsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12401), + [anon_sym_BSLASHglsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12401), + [anon_sym_BSLASHglsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12401), + [anon_sym_BSLASHglsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12401), + [anon_sym_BSLASHglsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12401), + [anon_sym_BSLASHnewacronym] = ACTIONS(12401), + [anon_sym_BSLASHacrshort] = ACTIONS(12401), + [anon_sym_BSLASHAcrshort] = ACTIONS(12401), + [anon_sym_BSLASHACRshort] = ACTIONS(12401), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12401), + [anon_sym_BSLASHacrlong] = ACTIONS(12401), + [anon_sym_BSLASHAcrlong] = ACTIONS(12401), + [anon_sym_BSLASHACRlong] = ACTIONS(12401), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12401), + [anon_sym_BSLASHacrfull] = ACTIONS(12401), + [anon_sym_BSLASHAcrfull] = ACTIONS(12401), + [anon_sym_BSLASHACRfull] = ACTIONS(12401), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12401), + [anon_sym_BSLASHacs] = ACTIONS(12401), + [anon_sym_BSLASHAcs] = ACTIONS(12401), + [anon_sym_BSLASHacsp] = ACTIONS(12401), + [anon_sym_BSLASHAcsp] = ACTIONS(12401), + [anon_sym_BSLASHacl] = ACTIONS(12401), + [anon_sym_BSLASHAcl] = ACTIONS(12401), + [anon_sym_BSLASHaclp] = ACTIONS(12401), + [anon_sym_BSLASHAclp] = ACTIONS(12401), + [anon_sym_BSLASHacf] = ACTIONS(12401), + [anon_sym_BSLASHAcf] = ACTIONS(12401), + [anon_sym_BSLASHacfp] = ACTIONS(12401), + [anon_sym_BSLASHAcfp] = ACTIONS(12401), + [anon_sym_BSLASHac] = ACTIONS(12401), + [anon_sym_BSLASHAc] = ACTIONS(12401), + [anon_sym_BSLASHacp] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12401), + [anon_sym_BSLASHcolor] = ACTIONS(12401), + [anon_sym_BSLASHcolorbox] = ACTIONS(12401), + [anon_sym_BSLASHtextcolor] = ACTIONS(12401), + [anon_sym_BSLASHpagecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12401), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12401), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12401), + }, + [1025] = { + [sym_generic_command_name] = ACTIONS(12405), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12405), + [aux_sym_section_token1] = ACTIONS(12405), + [aux_sym_subsection_token1] = ACTIONS(12405), + [aux_sym_subsubsection_token1] = ACTIONS(12405), + [aux_sym_paragraph_token1] = ACTIONS(12405), + [aux_sym_subparagraph_token1] = ACTIONS(12405), + [anon_sym_BSLASHitem] = ACTIONS(12405), + [anon_sym_LBRACK] = ACTIONS(12403), + [anon_sym_RBRACK] = ACTIONS(12403), + [anon_sym_LBRACE] = ACTIONS(12403), + [anon_sym_RBRACE] = ACTIONS(12403), + [anon_sym_LPAREN] = ACTIONS(12403), + [anon_sym_COMMA] = ACTIONS(12403), + [anon_sym_EQ] = ACTIONS(12403), + [sym_word] = ACTIONS(12403), + [sym_param] = ACTIONS(12403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12403), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12403), + [anon_sym_DOLLAR] = ACTIONS(12405), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12403), + [anon_sym_BSLASHbegin] = ACTIONS(12405), + [anon_sym_BSLASHcaption] = ACTIONS(12405), + [anon_sym_BSLASHcite] = ACTIONS(12405), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCite] = ACTIONS(12405), + [anon_sym_BSLASHnocite] = ACTIONS(12405), + [anon_sym_BSLASHcitet] = ACTIONS(12405), + [anon_sym_BSLASHcitep] = ACTIONS(12405), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteauthor] = ACTIONS(12405), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12405), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitetitle] = ACTIONS(12405), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteyear] = ACTIONS(12405), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitedate] = ACTIONS(12405), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteurl] = ACTIONS(12405), + [anon_sym_BSLASHfullcite] = ACTIONS(12405), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12405), + [anon_sym_BSLASHcitealt] = ACTIONS(12405), + [anon_sym_BSLASHcitealp] = ACTIONS(12405), + [anon_sym_BSLASHcitetext] = ACTIONS(12405), + [anon_sym_BSLASHparencite] = ACTIONS(12405), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHParencite] = ACTIONS(12405), + [anon_sym_BSLASHfootcite] = ACTIONS(12405), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12405), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12405), + [anon_sym_BSLASHtextcite] = ACTIONS(12405), + [anon_sym_BSLASHTextcite] = ACTIONS(12405), + [anon_sym_BSLASHsmartcite] = ACTIONS(12405), + [anon_sym_BSLASHSmartcite] = ACTIONS(12405), + [anon_sym_BSLASHsupercite] = ACTIONS(12405), + [anon_sym_BSLASHautocite] = ACTIONS(12405), + [anon_sym_BSLASHAutocite] = ACTIONS(12405), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHvolcite] = ACTIONS(12405), + [anon_sym_BSLASHVolcite] = ACTIONS(12405), + [anon_sym_BSLASHpvolcite] = ACTIONS(12405), + [anon_sym_BSLASHPvolcite] = ACTIONS(12405), + [anon_sym_BSLASHfvolcite] = ACTIONS(12405), + [anon_sym_BSLASHftvolcite] = ACTIONS(12405), + [anon_sym_BSLASHsvolcite] = ACTIONS(12405), + [anon_sym_BSLASHSvolcite] = ACTIONS(12405), + [anon_sym_BSLASHtvolcite] = ACTIONS(12405), + [anon_sym_BSLASHTvolcite] = ACTIONS(12405), + [anon_sym_BSLASHavolcite] = ACTIONS(12405), + [anon_sym_BSLASHAvolcite] = ACTIONS(12405), + [anon_sym_BSLASHnotecite] = ACTIONS(12405), + [anon_sym_BSLASHpnotecite] = ACTIONS(12405), + [anon_sym_BSLASHPnotecite] = ACTIONS(12405), + [anon_sym_BSLASHfnotecite] = ACTIONS(12405), + [anon_sym_BSLASHusepackage] = ACTIONS(12405), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12405), + [anon_sym_BSLASHinclude] = ACTIONS(12405), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12405), + [anon_sym_BSLASHinput] = ACTIONS(12405), + [anon_sym_BSLASHsubfile] = ACTIONS(12405), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12405), + [anon_sym_BSLASHbibliography] = ACTIONS(12405), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12405), + [anon_sym_BSLASHincludesvg] = ACTIONS(12405), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12405), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12405), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12405), + [anon_sym_BSLASHimport] = ACTIONS(12405), + [anon_sym_BSLASHsubimport] = ACTIONS(12405), + [anon_sym_BSLASHinputfrom] = ACTIONS(12405), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12405), + [anon_sym_BSLASHincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHlabel] = ACTIONS(12405), + [anon_sym_BSLASHref] = ACTIONS(12405), + [anon_sym_BSLASHvref] = ACTIONS(12405), + [anon_sym_BSLASHVref] = ACTIONS(12405), + [anon_sym_BSLASHautoref] = ACTIONS(12405), + [anon_sym_BSLASHpageref] = ACTIONS(12405), + [anon_sym_BSLASHcref] = ACTIONS(12405), + [anon_sym_BSLASHCref] = ACTIONS(12405), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnameCref] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHlabelcref] = ACTIONS(12405), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12405), + [anon_sym_BSLASHeqref] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange] = ACTIONS(12405), + [anon_sym_BSLASHCrefrange] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewlabel] = ACTIONS(12405), + [anon_sym_BSLASHnewcommand] = ACTIONS(12405), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12405), + [anon_sym_BSLASHgls] = ACTIONS(12405), + [anon_sym_BSLASHGls] = ACTIONS(12405), + [anon_sym_BSLASHGLS] = ACTIONS(12405), + [anon_sym_BSLASHglspl] = ACTIONS(12405), + [anon_sym_BSLASHGlspl] = ACTIONS(12405), + [anon_sym_BSLASHGLSpl] = ACTIONS(12405), + [anon_sym_BSLASHglsdisp] = ACTIONS(12405), + [anon_sym_BSLASHglslink] = ACTIONS(12405), + [anon_sym_BSLASHglstext] = ACTIONS(12405), + [anon_sym_BSLASHGlstext] = ACTIONS(12405), + [anon_sym_BSLASHGLStext] = ACTIONS(12405), + [anon_sym_BSLASHglsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12405), + [anon_sym_BSLASHglsplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSplural] = ACTIONS(12405), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHglsname] = ACTIONS(12405), + [anon_sym_BSLASHGlsname] = ACTIONS(12405), + [anon_sym_BSLASHGLSname] = ACTIONS(12405), + [anon_sym_BSLASHglssymbol] = ACTIONS(12405), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12405), + [anon_sym_BSLASHglsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12405), + [anon_sym_BSLASHglsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12405), + [anon_sym_BSLASHglsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12405), + [anon_sym_BSLASHglsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12405), + [anon_sym_BSLASHglsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12405), + [anon_sym_BSLASHnewacronym] = ACTIONS(12405), + [anon_sym_BSLASHacrshort] = ACTIONS(12405), + [anon_sym_BSLASHAcrshort] = ACTIONS(12405), + [anon_sym_BSLASHACRshort] = ACTIONS(12405), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12405), + [anon_sym_BSLASHacrlong] = ACTIONS(12405), + [anon_sym_BSLASHAcrlong] = ACTIONS(12405), + [anon_sym_BSLASHACRlong] = ACTIONS(12405), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12405), + [anon_sym_BSLASHacrfull] = ACTIONS(12405), + [anon_sym_BSLASHAcrfull] = ACTIONS(12405), + [anon_sym_BSLASHACRfull] = ACTIONS(12405), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12405), + [anon_sym_BSLASHacs] = ACTIONS(12405), + [anon_sym_BSLASHAcs] = ACTIONS(12405), + [anon_sym_BSLASHacsp] = ACTIONS(12405), + [anon_sym_BSLASHAcsp] = ACTIONS(12405), + [anon_sym_BSLASHacl] = ACTIONS(12405), + [anon_sym_BSLASHAcl] = ACTIONS(12405), + [anon_sym_BSLASHaclp] = ACTIONS(12405), + [anon_sym_BSLASHAclp] = ACTIONS(12405), + [anon_sym_BSLASHacf] = ACTIONS(12405), + [anon_sym_BSLASHAcf] = ACTIONS(12405), + [anon_sym_BSLASHacfp] = ACTIONS(12405), + [anon_sym_BSLASHAcfp] = ACTIONS(12405), + [anon_sym_BSLASHac] = ACTIONS(12405), + [anon_sym_BSLASHAc] = ACTIONS(12405), + [anon_sym_BSLASHacp] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12405), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12405), + [anon_sym_BSLASHcolor] = ACTIONS(12405), + [anon_sym_BSLASHcolorbox] = ACTIONS(12405), + [anon_sym_BSLASHtextcolor] = ACTIONS(12405), + [anon_sym_BSLASHpagecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12405), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12405), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12405), + }, + [1026] = { + [sym_generic_command_name] = ACTIONS(12409), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12409), + [aux_sym_section_token1] = ACTIONS(12409), + [aux_sym_subsection_token1] = ACTIONS(12409), + [aux_sym_subsubsection_token1] = ACTIONS(12409), + [aux_sym_paragraph_token1] = ACTIONS(12409), + [aux_sym_subparagraph_token1] = ACTIONS(12409), + [anon_sym_BSLASHitem] = ACTIONS(12409), + [anon_sym_LBRACK] = ACTIONS(12407), + [anon_sym_RBRACK] = ACTIONS(12407), + [anon_sym_LBRACE] = ACTIONS(12407), + [anon_sym_RBRACE] = ACTIONS(12407), + [anon_sym_LPAREN] = ACTIONS(12407), + [anon_sym_COMMA] = ACTIONS(12407), + [anon_sym_EQ] = ACTIONS(12407), + [sym_word] = ACTIONS(12407), + [sym_param] = ACTIONS(12407), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12407), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12407), + [anon_sym_DOLLAR] = ACTIONS(12409), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12407), + [anon_sym_BSLASHbegin] = ACTIONS(12409), + [anon_sym_BSLASHcaption] = ACTIONS(12409), + [anon_sym_BSLASHcite] = ACTIONS(12409), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCite] = ACTIONS(12409), + [anon_sym_BSLASHnocite] = ACTIONS(12409), + [anon_sym_BSLASHcitet] = ACTIONS(12409), + [anon_sym_BSLASHcitep] = ACTIONS(12409), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteauthor] = ACTIONS(12409), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12409), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitetitle] = ACTIONS(12409), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteyear] = ACTIONS(12409), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitedate] = ACTIONS(12409), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteurl] = ACTIONS(12409), + [anon_sym_BSLASHfullcite] = ACTIONS(12409), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12409), + [anon_sym_BSLASHcitealt] = ACTIONS(12409), + [anon_sym_BSLASHcitealp] = ACTIONS(12409), + [anon_sym_BSLASHcitetext] = ACTIONS(12409), + [anon_sym_BSLASHparencite] = ACTIONS(12409), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHParencite] = ACTIONS(12409), + [anon_sym_BSLASHfootcite] = ACTIONS(12409), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12409), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12409), + [anon_sym_BSLASHtextcite] = ACTIONS(12409), + [anon_sym_BSLASHTextcite] = ACTIONS(12409), + [anon_sym_BSLASHsmartcite] = ACTIONS(12409), + [anon_sym_BSLASHSmartcite] = ACTIONS(12409), + [anon_sym_BSLASHsupercite] = ACTIONS(12409), + [anon_sym_BSLASHautocite] = ACTIONS(12409), + [anon_sym_BSLASHAutocite] = ACTIONS(12409), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHvolcite] = ACTIONS(12409), + [anon_sym_BSLASHVolcite] = ACTIONS(12409), + [anon_sym_BSLASHpvolcite] = ACTIONS(12409), + [anon_sym_BSLASHPvolcite] = ACTIONS(12409), + [anon_sym_BSLASHfvolcite] = ACTIONS(12409), + [anon_sym_BSLASHftvolcite] = ACTIONS(12409), + [anon_sym_BSLASHsvolcite] = ACTIONS(12409), + [anon_sym_BSLASHSvolcite] = ACTIONS(12409), + [anon_sym_BSLASHtvolcite] = ACTIONS(12409), + [anon_sym_BSLASHTvolcite] = ACTIONS(12409), + [anon_sym_BSLASHavolcite] = ACTIONS(12409), + [anon_sym_BSLASHAvolcite] = ACTIONS(12409), + [anon_sym_BSLASHnotecite] = ACTIONS(12409), + [anon_sym_BSLASHpnotecite] = ACTIONS(12409), + [anon_sym_BSLASHPnotecite] = ACTIONS(12409), + [anon_sym_BSLASHfnotecite] = ACTIONS(12409), + [anon_sym_BSLASHusepackage] = ACTIONS(12409), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12409), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12409), + [anon_sym_BSLASHinclude] = ACTIONS(12409), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12409), + [anon_sym_BSLASHinput] = ACTIONS(12409), + [anon_sym_BSLASHsubfile] = ACTIONS(12409), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12409), + [anon_sym_BSLASHbibliography] = ACTIONS(12409), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12409), + [anon_sym_BSLASHincludesvg] = ACTIONS(12409), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12409), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12409), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12409), + [anon_sym_BSLASHimport] = ACTIONS(12409), + [anon_sym_BSLASHsubimport] = ACTIONS(12409), + [anon_sym_BSLASHinputfrom] = ACTIONS(12409), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12409), + [anon_sym_BSLASHincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHlabel] = ACTIONS(12409), + [anon_sym_BSLASHref] = ACTIONS(12409), + [anon_sym_BSLASHvref] = ACTIONS(12409), + [anon_sym_BSLASHVref] = ACTIONS(12409), + [anon_sym_BSLASHautoref] = ACTIONS(12409), + [anon_sym_BSLASHpageref] = ACTIONS(12409), + [anon_sym_BSLASHcref] = ACTIONS(12409), + [anon_sym_BSLASHCref] = ACTIONS(12409), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnameCref] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHlabelcref] = ACTIONS(12409), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12409), + [anon_sym_BSLASHeqref] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange] = ACTIONS(12409), + [anon_sym_BSLASHCrefrange] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewlabel] = ACTIONS(12409), + [anon_sym_BSLASHnewcommand] = ACTIONS(12409), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12409), + [anon_sym_BSLASHgls] = ACTIONS(12409), + [anon_sym_BSLASHGls] = ACTIONS(12409), + [anon_sym_BSLASHGLS] = ACTIONS(12409), + [anon_sym_BSLASHglspl] = ACTIONS(12409), + [anon_sym_BSLASHGlspl] = ACTIONS(12409), + [anon_sym_BSLASHGLSpl] = ACTIONS(12409), + [anon_sym_BSLASHglsdisp] = ACTIONS(12409), + [anon_sym_BSLASHglslink] = ACTIONS(12409), + [anon_sym_BSLASHglstext] = ACTIONS(12409), + [anon_sym_BSLASHGlstext] = ACTIONS(12409), + [anon_sym_BSLASHGLStext] = ACTIONS(12409), + [anon_sym_BSLASHglsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12409), + [anon_sym_BSLASHglsplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSplural] = ACTIONS(12409), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHglsname] = ACTIONS(12409), + [anon_sym_BSLASHGlsname] = ACTIONS(12409), + [anon_sym_BSLASHGLSname] = ACTIONS(12409), + [anon_sym_BSLASHglssymbol] = ACTIONS(12409), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12409), + [anon_sym_BSLASHglsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12409), + [anon_sym_BSLASHglsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12409), + [anon_sym_BSLASHglsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12409), + [anon_sym_BSLASHglsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12409), + [anon_sym_BSLASHglsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12409), + [anon_sym_BSLASHnewacronym] = ACTIONS(12409), + [anon_sym_BSLASHacrshort] = ACTIONS(12409), + [anon_sym_BSLASHAcrshort] = ACTIONS(12409), + [anon_sym_BSLASHACRshort] = ACTIONS(12409), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12409), + [anon_sym_BSLASHacrlong] = ACTIONS(12409), + [anon_sym_BSLASHAcrlong] = ACTIONS(12409), + [anon_sym_BSLASHACRlong] = ACTIONS(12409), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12409), + [anon_sym_BSLASHacrfull] = ACTIONS(12409), + [anon_sym_BSLASHAcrfull] = ACTIONS(12409), + [anon_sym_BSLASHACRfull] = ACTIONS(12409), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12409), + [anon_sym_BSLASHacs] = ACTIONS(12409), + [anon_sym_BSLASHAcs] = ACTIONS(12409), + [anon_sym_BSLASHacsp] = ACTIONS(12409), + [anon_sym_BSLASHAcsp] = ACTIONS(12409), + [anon_sym_BSLASHacl] = ACTIONS(12409), + [anon_sym_BSLASHAcl] = ACTIONS(12409), + [anon_sym_BSLASHaclp] = ACTIONS(12409), + [anon_sym_BSLASHAclp] = ACTIONS(12409), + [anon_sym_BSLASHacf] = ACTIONS(12409), + [anon_sym_BSLASHAcf] = ACTIONS(12409), + [anon_sym_BSLASHacfp] = ACTIONS(12409), + [anon_sym_BSLASHAcfp] = ACTIONS(12409), + [anon_sym_BSLASHac] = ACTIONS(12409), + [anon_sym_BSLASHAc] = ACTIONS(12409), + [anon_sym_BSLASHacp] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12409), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12409), + [anon_sym_BSLASHcolor] = ACTIONS(12409), + [anon_sym_BSLASHcolorbox] = ACTIONS(12409), + [anon_sym_BSLASHtextcolor] = ACTIONS(12409), + [anon_sym_BSLASHpagecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12409), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12409), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12409), + }, + [1027] = { + [sym_generic_command_name] = ACTIONS(12413), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12413), + [aux_sym_section_token1] = ACTIONS(12413), + [aux_sym_subsection_token1] = ACTIONS(12413), + [aux_sym_subsubsection_token1] = ACTIONS(12413), + [aux_sym_paragraph_token1] = ACTIONS(12413), + [aux_sym_subparagraph_token1] = ACTIONS(12413), + [anon_sym_BSLASHitem] = ACTIONS(12413), + [anon_sym_LBRACK] = ACTIONS(12411), + [anon_sym_RBRACK] = ACTIONS(12411), + [anon_sym_LBRACE] = ACTIONS(12411), + [anon_sym_RBRACE] = ACTIONS(12411), + [anon_sym_LPAREN] = ACTIONS(12411), + [anon_sym_COMMA] = ACTIONS(12411), + [anon_sym_EQ] = ACTIONS(12411), + [sym_word] = ACTIONS(12411), + [sym_param] = ACTIONS(12411), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12411), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12411), + [anon_sym_DOLLAR] = ACTIONS(12413), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12411), + [anon_sym_BSLASHbegin] = ACTIONS(12413), + [anon_sym_BSLASHcaption] = ACTIONS(12413), + [anon_sym_BSLASHcite] = ACTIONS(12413), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCite] = ACTIONS(12413), + [anon_sym_BSLASHnocite] = ACTIONS(12413), + [anon_sym_BSLASHcitet] = ACTIONS(12413), + [anon_sym_BSLASHcitep] = ACTIONS(12413), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteauthor] = ACTIONS(12413), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12413), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitetitle] = ACTIONS(12413), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteyear] = ACTIONS(12413), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitedate] = ACTIONS(12413), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteurl] = ACTIONS(12413), + [anon_sym_BSLASHfullcite] = ACTIONS(12413), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12413), + [anon_sym_BSLASHcitealt] = ACTIONS(12413), + [anon_sym_BSLASHcitealp] = ACTIONS(12413), + [anon_sym_BSLASHcitetext] = ACTIONS(12413), + [anon_sym_BSLASHparencite] = ACTIONS(12413), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHParencite] = ACTIONS(12413), + [anon_sym_BSLASHfootcite] = ACTIONS(12413), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12413), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12413), + [anon_sym_BSLASHtextcite] = ACTIONS(12413), + [anon_sym_BSLASHTextcite] = ACTIONS(12413), + [anon_sym_BSLASHsmartcite] = ACTIONS(12413), + [anon_sym_BSLASHSmartcite] = ACTIONS(12413), + [anon_sym_BSLASHsupercite] = ACTIONS(12413), + [anon_sym_BSLASHautocite] = ACTIONS(12413), + [anon_sym_BSLASHAutocite] = ACTIONS(12413), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHvolcite] = ACTIONS(12413), + [anon_sym_BSLASHVolcite] = ACTIONS(12413), + [anon_sym_BSLASHpvolcite] = ACTIONS(12413), + [anon_sym_BSLASHPvolcite] = ACTIONS(12413), + [anon_sym_BSLASHfvolcite] = ACTIONS(12413), + [anon_sym_BSLASHftvolcite] = ACTIONS(12413), + [anon_sym_BSLASHsvolcite] = ACTIONS(12413), + [anon_sym_BSLASHSvolcite] = ACTIONS(12413), + [anon_sym_BSLASHtvolcite] = ACTIONS(12413), + [anon_sym_BSLASHTvolcite] = ACTIONS(12413), + [anon_sym_BSLASHavolcite] = ACTIONS(12413), + [anon_sym_BSLASHAvolcite] = ACTIONS(12413), + [anon_sym_BSLASHnotecite] = ACTIONS(12413), + [anon_sym_BSLASHpnotecite] = ACTIONS(12413), + [anon_sym_BSLASHPnotecite] = ACTIONS(12413), + [anon_sym_BSLASHfnotecite] = ACTIONS(12413), + [anon_sym_BSLASHusepackage] = ACTIONS(12413), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12413), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12413), + [anon_sym_BSLASHinclude] = ACTIONS(12413), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12413), + [anon_sym_BSLASHinput] = ACTIONS(12413), + [anon_sym_BSLASHsubfile] = ACTIONS(12413), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12413), + [anon_sym_BSLASHbibliography] = ACTIONS(12413), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12413), + [anon_sym_BSLASHincludesvg] = ACTIONS(12413), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12413), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12413), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12413), + [anon_sym_BSLASHimport] = ACTIONS(12413), + [anon_sym_BSLASHsubimport] = ACTIONS(12413), + [anon_sym_BSLASHinputfrom] = ACTIONS(12413), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12413), + [anon_sym_BSLASHincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHlabel] = ACTIONS(12413), + [anon_sym_BSLASHref] = ACTIONS(12413), + [anon_sym_BSLASHvref] = ACTIONS(12413), + [anon_sym_BSLASHVref] = ACTIONS(12413), + [anon_sym_BSLASHautoref] = ACTIONS(12413), + [anon_sym_BSLASHpageref] = ACTIONS(12413), + [anon_sym_BSLASHcref] = ACTIONS(12413), + [anon_sym_BSLASHCref] = ACTIONS(12413), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnameCref] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHlabelcref] = ACTIONS(12413), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12413), + [anon_sym_BSLASHeqref] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange] = ACTIONS(12413), + [anon_sym_BSLASHCrefrange] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewlabel] = ACTIONS(12413), + [anon_sym_BSLASHnewcommand] = ACTIONS(12413), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12413), + [anon_sym_BSLASHgls] = ACTIONS(12413), + [anon_sym_BSLASHGls] = ACTIONS(12413), + [anon_sym_BSLASHGLS] = ACTIONS(12413), + [anon_sym_BSLASHglspl] = ACTIONS(12413), + [anon_sym_BSLASHGlspl] = ACTIONS(12413), + [anon_sym_BSLASHGLSpl] = ACTIONS(12413), + [anon_sym_BSLASHglsdisp] = ACTIONS(12413), + [anon_sym_BSLASHglslink] = ACTIONS(12413), + [anon_sym_BSLASHglstext] = ACTIONS(12413), + [anon_sym_BSLASHGlstext] = ACTIONS(12413), + [anon_sym_BSLASHGLStext] = ACTIONS(12413), + [anon_sym_BSLASHglsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12413), + [anon_sym_BSLASHglsplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSplural] = ACTIONS(12413), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHglsname] = ACTIONS(12413), + [anon_sym_BSLASHGlsname] = ACTIONS(12413), + [anon_sym_BSLASHGLSname] = ACTIONS(12413), + [anon_sym_BSLASHglssymbol] = ACTIONS(12413), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12413), + [anon_sym_BSLASHglsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12413), + [anon_sym_BSLASHglsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12413), + [anon_sym_BSLASHglsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12413), + [anon_sym_BSLASHglsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12413), + [anon_sym_BSLASHglsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12413), + [anon_sym_BSLASHnewacronym] = ACTIONS(12413), + [anon_sym_BSLASHacrshort] = ACTIONS(12413), + [anon_sym_BSLASHAcrshort] = ACTIONS(12413), + [anon_sym_BSLASHACRshort] = ACTIONS(12413), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12413), + [anon_sym_BSLASHacrlong] = ACTIONS(12413), + [anon_sym_BSLASHAcrlong] = ACTIONS(12413), + [anon_sym_BSLASHACRlong] = ACTIONS(12413), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12413), + [anon_sym_BSLASHacrfull] = ACTIONS(12413), + [anon_sym_BSLASHAcrfull] = ACTIONS(12413), + [anon_sym_BSLASHACRfull] = ACTIONS(12413), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12413), + [anon_sym_BSLASHacs] = ACTIONS(12413), + [anon_sym_BSLASHAcs] = ACTIONS(12413), + [anon_sym_BSLASHacsp] = ACTIONS(12413), + [anon_sym_BSLASHAcsp] = ACTIONS(12413), + [anon_sym_BSLASHacl] = ACTIONS(12413), + [anon_sym_BSLASHAcl] = ACTIONS(12413), + [anon_sym_BSLASHaclp] = ACTIONS(12413), + [anon_sym_BSLASHAclp] = ACTIONS(12413), + [anon_sym_BSLASHacf] = ACTIONS(12413), + [anon_sym_BSLASHAcf] = ACTIONS(12413), + [anon_sym_BSLASHacfp] = ACTIONS(12413), + [anon_sym_BSLASHAcfp] = ACTIONS(12413), + [anon_sym_BSLASHac] = ACTIONS(12413), + [anon_sym_BSLASHAc] = ACTIONS(12413), + [anon_sym_BSLASHacp] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12413), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12413), + [anon_sym_BSLASHcolor] = ACTIONS(12413), + [anon_sym_BSLASHcolorbox] = ACTIONS(12413), + [anon_sym_BSLASHtextcolor] = ACTIONS(12413), + [anon_sym_BSLASHpagecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12413), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12413), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12413), + }, + [1028] = { + [sym_generic_command_name] = ACTIONS(12421), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12421), + [aux_sym_section_token1] = ACTIONS(12421), + [aux_sym_subsection_token1] = ACTIONS(12421), + [aux_sym_subsubsection_token1] = ACTIONS(12421), + [aux_sym_paragraph_token1] = ACTIONS(12421), + [aux_sym_subparagraph_token1] = ACTIONS(12421), + [anon_sym_BSLASHitem] = ACTIONS(12421), + [anon_sym_LBRACK] = ACTIONS(12419), + [anon_sym_RBRACK] = ACTIONS(12419), + [anon_sym_LBRACE] = ACTIONS(12419), + [anon_sym_RBRACE] = ACTIONS(12419), + [anon_sym_LPAREN] = ACTIONS(12419), + [anon_sym_COMMA] = ACTIONS(12419), + [anon_sym_EQ] = ACTIONS(12419), + [sym_word] = ACTIONS(12419), + [sym_param] = ACTIONS(12419), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12419), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12419), + [anon_sym_DOLLAR] = ACTIONS(12421), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12419), + [anon_sym_BSLASHbegin] = ACTIONS(12421), + [anon_sym_BSLASHcaption] = ACTIONS(12421), + [anon_sym_BSLASHcite] = ACTIONS(12421), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCite] = ACTIONS(12421), + [anon_sym_BSLASHnocite] = ACTIONS(12421), + [anon_sym_BSLASHcitet] = ACTIONS(12421), + [anon_sym_BSLASHcitep] = ACTIONS(12421), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteauthor] = ACTIONS(12421), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12421), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitetitle] = ACTIONS(12421), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteyear] = ACTIONS(12421), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitedate] = ACTIONS(12421), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteurl] = ACTIONS(12421), + [anon_sym_BSLASHfullcite] = ACTIONS(12421), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12421), + [anon_sym_BSLASHcitealt] = ACTIONS(12421), + [anon_sym_BSLASHcitealp] = ACTIONS(12421), + [anon_sym_BSLASHcitetext] = ACTIONS(12421), + [anon_sym_BSLASHparencite] = ACTIONS(12421), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHParencite] = ACTIONS(12421), + [anon_sym_BSLASHfootcite] = ACTIONS(12421), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12421), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12421), + [anon_sym_BSLASHtextcite] = ACTIONS(12421), + [anon_sym_BSLASHTextcite] = ACTIONS(12421), + [anon_sym_BSLASHsmartcite] = ACTIONS(12421), + [anon_sym_BSLASHSmartcite] = ACTIONS(12421), + [anon_sym_BSLASHsupercite] = ACTIONS(12421), + [anon_sym_BSLASHautocite] = ACTIONS(12421), + [anon_sym_BSLASHAutocite] = ACTIONS(12421), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHvolcite] = ACTIONS(12421), + [anon_sym_BSLASHVolcite] = ACTIONS(12421), + [anon_sym_BSLASHpvolcite] = ACTIONS(12421), + [anon_sym_BSLASHPvolcite] = ACTIONS(12421), + [anon_sym_BSLASHfvolcite] = ACTIONS(12421), + [anon_sym_BSLASHftvolcite] = ACTIONS(12421), + [anon_sym_BSLASHsvolcite] = ACTIONS(12421), + [anon_sym_BSLASHSvolcite] = ACTIONS(12421), + [anon_sym_BSLASHtvolcite] = ACTIONS(12421), + [anon_sym_BSLASHTvolcite] = ACTIONS(12421), + [anon_sym_BSLASHavolcite] = ACTIONS(12421), + [anon_sym_BSLASHAvolcite] = ACTIONS(12421), + [anon_sym_BSLASHnotecite] = ACTIONS(12421), + [anon_sym_BSLASHpnotecite] = ACTIONS(12421), + [anon_sym_BSLASHPnotecite] = ACTIONS(12421), + [anon_sym_BSLASHfnotecite] = ACTIONS(12421), + [anon_sym_BSLASHusepackage] = ACTIONS(12421), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12421), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12421), + [anon_sym_BSLASHinclude] = ACTIONS(12421), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12421), + [anon_sym_BSLASHinput] = ACTIONS(12421), + [anon_sym_BSLASHsubfile] = ACTIONS(12421), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12421), + [anon_sym_BSLASHbibliography] = ACTIONS(12421), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12421), + [anon_sym_BSLASHincludesvg] = ACTIONS(12421), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12421), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12421), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12421), + [anon_sym_BSLASHimport] = ACTIONS(12421), + [anon_sym_BSLASHsubimport] = ACTIONS(12421), + [anon_sym_BSLASHinputfrom] = ACTIONS(12421), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12421), + [anon_sym_BSLASHincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHlabel] = ACTIONS(12421), + [anon_sym_BSLASHref] = ACTIONS(12421), + [anon_sym_BSLASHvref] = ACTIONS(12421), + [anon_sym_BSLASHVref] = ACTIONS(12421), + [anon_sym_BSLASHautoref] = ACTIONS(12421), + [anon_sym_BSLASHpageref] = ACTIONS(12421), + [anon_sym_BSLASHcref] = ACTIONS(12421), + [anon_sym_BSLASHCref] = ACTIONS(12421), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnameCref] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHlabelcref] = ACTIONS(12421), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12421), + [anon_sym_BSLASHeqref] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange] = ACTIONS(12421), + [anon_sym_BSLASHCrefrange] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewlabel] = ACTIONS(12421), + [anon_sym_BSLASHnewcommand] = ACTIONS(12421), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12421), + [anon_sym_BSLASHgls] = ACTIONS(12421), + [anon_sym_BSLASHGls] = ACTIONS(12421), + [anon_sym_BSLASHGLS] = ACTIONS(12421), + [anon_sym_BSLASHglspl] = ACTIONS(12421), + [anon_sym_BSLASHGlspl] = ACTIONS(12421), + [anon_sym_BSLASHGLSpl] = ACTIONS(12421), + [anon_sym_BSLASHglsdisp] = ACTIONS(12421), + [anon_sym_BSLASHglslink] = ACTIONS(12421), + [anon_sym_BSLASHglstext] = ACTIONS(12421), + [anon_sym_BSLASHGlstext] = ACTIONS(12421), + [anon_sym_BSLASHGLStext] = ACTIONS(12421), + [anon_sym_BSLASHglsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12421), + [anon_sym_BSLASHglsplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSplural] = ACTIONS(12421), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHglsname] = ACTIONS(12421), + [anon_sym_BSLASHGlsname] = ACTIONS(12421), + [anon_sym_BSLASHGLSname] = ACTIONS(12421), + [anon_sym_BSLASHglssymbol] = ACTIONS(12421), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12421), + [anon_sym_BSLASHglsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12421), + [anon_sym_BSLASHglsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12421), + [anon_sym_BSLASHglsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12421), + [anon_sym_BSLASHglsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12421), + [anon_sym_BSLASHglsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12421), + [anon_sym_BSLASHnewacronym] = ACTIONS(12421), + [anon_sym_BSLASHacrshort] = ACTIONS(12421), + [anon_sym_BSLASHAcrshort] = ACTIONS(12421), + [anon_sym_BSLASHACRshort] = ACTIONS(12421), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12421), + [anon_sym_BSLASHacrlong] = ACTIONS(12421), + [anon_sym_BSLASHAcrlong] = ACTIONS(12421), + [anon_sym_BSLASHACRlong] = ACTIONS(12421), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12421), + [anon_sym_BSLASHacrfull] = ACTIONS(12421), + [anon_sym_BSLASHAcrfull] = ACTIONS(12421), + [anon_sym_BSLASHACRfull] = ACTIONS(12421), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12421), + [anon_sym_BSLASHacs] = ACTIONS(12421), + [anon_sym_BSLASHAcs] = ACTIONS(12421), + [anon_sym_BSLASHacsp] = ACTIONS(12421), + [anon_sym_BSLASHAcsp] = ACTIONS(12421), + [anon_sym_BSLASHacl] = ACTIONS(12421), + [anon_sym_BSLASHAcl] = ACTIONS(12421), + [anon_sym_BSLASHaclp] = ACTIONS(12421), + [anon_sym_BSLASHAclp] = ACTIONS(12421), + [anon_sym_BSLASHacf] = ACTIONS(12421), + [anon_sym_BSLASHAcf] = ACTIONS(12421), + [anon_sym_BSLASHacfp] = ACTIONS(12421), + [anon_sym_BSLASHAcfp] = ACTIONS(12421), + [anon_sym_BSLASHac] = ACTIONS(12421), + [anon_sym_BSLASHAc] = ACTIONS(12421), + [anon_sym_BSLASHacp] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12421), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12421), + [anon_sym_BSLASHcolor] = ACTIONS(12421), + [anon_sym_BSLASHcolorbox] = ACTIONS(12421), + [anon_sym_BSLASHtextcolor] = ACTIONS(12421), + [anon_sym_BSLASHpagecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12421), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12421), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12421), + }, + [1029] = { + [sym_generic_command_name] = ACTIONS(12425), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12425), + [aux_sym_section_token1] = ACTIONS(12425), + [aux_sym_subsection_token1] = ACTIONS(12425), + [aux_sym_subsubsection_token1] = ACTIONS(12425), + [aux_sym_paragraph_token1] = ACTIONS(12425), + [aux_sym_subparagraph_token1] = ACTIONS(12425), + [anon_sym_BSLASHitem] = ACTIONS(12425), + [anon_sym_LBRACK] = ACTIONS(12423), + [anon_sym_RBRACK] = ACTIONS(12423), + [anon_sym_LBRACE] = ACTIONS(12423), + [anon_sym_RBRACE] = ACTIONS(12423), + [anon_sym_LPAREN] = ACTIONS(12423), + [anon_sym_COMMA] = ACTIONS(12423), + [anon_sym_EQ] = ACTIONS(12423), + [sym_word] = ACTIONS(12423), + [sym_param] = ACTIONS(12423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12423), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12423), + [anon_sym_DOLLAR] = ACTIONS(12425), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12423), + [anon_sym_BSLASHbegin] = ACTIONS(12425), + [anon_sym_BSLASHcaption] = ACTIONS(12425), + [anon_sym_BSLASHcite] = ACTIONS(12425), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCite] = ACTIONS(12425), + [anon_sym_BSLASHnocite] = ACTIONS(12425), + [anon_sym_BSLASHcitet] = ACTIONS(12425), + [anon_sym_BSLASHcitep] = ACTIONS(12425), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteauthor] = ACTIONS(12425), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12425), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitetitle] = ACTIONS(12425), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteyear] = ACTIONS(12425), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitedate] = ACTIONS(12425), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteurl] = ACTIONS(12425), + [anon_sym_BSLASHfullcite] = ACTIONS(12425), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12425), + [anon_sym_BSLASHcitealt] = ACTIONS(12425), + [anon_sym_BSLASHcitealp] = ACTIONS(12425), + [anon_sym_BSLASHcitetext] = ACTIONS(12425), + [anon_sym_BSLASHparencite] = ACTIONS(12425), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHParencite] = ACTIONS(12425), + [anon_sym_BSLASHfootcite] = ACTIONS(12425), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12425), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12425), + [anon_sym_BSLASHtextcite] = ACTIONS(12425), + [anon_sym_BSLASHTextcite] = ACTIONS(12425), + [anon_sym_BSLASHsmartcite] = ACTIONS(12425), + [anon_sym_BSLASHSmartcite] = ACTIONS(12425), + [anon_sym_BSLASHsupercite] = ACTIONS(12425), + [anon_sym_BSLASHautocite] = ACTIONS(12425), + [anon_sym_BSLASHAutocite] = ACTIONS(12425), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHvolcite] = ACTIONS(12425), + [anon_sym_BSLASHVolcite] = ACTIONS(12425), + [anon_sym_BSLASHpvolcite] = ACTIONS(12425), + [anon_sym_BSLASHPvolcite] = ACTIONS(12425), + [anon_sym_BSLASHfvolcite] = ACTIONS(12425), + [anon_sym_BSLASHftvolcite] = ACTIONS(12425), + [anon_sym_BSLASHsvolcite] = ACTIONS(12425), + [anon_sym_BSLASHSvolcite] = ACTIONS(12425), + [anon_sym_BSLASHtvolcite] = ACTIONS(12425), + [anon_sym_BSLASHTvolcite] = ACTIONS(12425), + [anon_sym_BSLASHavolcite] = ACTIONS(12425), + [anon_sym_BSLASHAvolcite] = ACTIONS(12425), + [anon_sym_BSLASHnotecite] = ACTIONS(12425), + [anon_sym_BSLASHpnotecite] = ACTIONS(12425), + [anon_sym_BSLASHPnotecite] = ACTIONS(12425), + [anon_sym_BSLASHfnotecite] = ACTIONS(12425), + [anon_sym_BSLASHusepackage] = ACTIONS(12425), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12425), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12425), + [anon_sym_BSLASHinclude] = ACTIONS(12425), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12425), + [anon_sym_BSLASHinput] = ACTIONS(12425), + [anon_sym_BSLASHsubfile] = ACTIONS(12425), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12425), + [anon_sym_BSLASHbibliography] = ACTIONS(12425), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12425), + [anon_sym_BSLASHincludesvg] = ACTIONS(12425), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12425), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12425), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12425), + [anon_sym_BSLASHimport] = ACTIONS(12425), + [anon_sym_BSLASHsubimport] = ACTIONS(12425), + [anon_sym_BSLASHinputfrom] = ACTIONS(12425), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12425), + [anon_sym_BSLASHincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHlabel] = ACTIONS(12425), + [anon_sym_BSLASHref] = ACTIONS(12425), + [anon_sym_BSLASHvref] = ACTIONS(12425), + [anon_sym_BSLASHVref] = ACTIONS(12425), + [anon_sym_BSLASHautoref] = ACTIONS(12425), + [anon_sym_BSLASHpageref] = ACTIONS(12425), + [anon_sym_BSLASHcref] = ACTIONS(12425), + [anon_sym_BSLASHCref] = ACTIONS(12425), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnameCref] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHlabelcref] = ACTIONS(12425), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12425), + [anon_sym_BSLASHeqref] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange] = ACTIONS(12425), + [anon_sym_BSLASHCrefrange] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewlabel] = ACTIONS(12425), + [anon_sym_BSLASHnewcommand] = ACTIONS(12425), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12425), + [anon_sym_BSLASHgls] = ACTIONS(12425), + [anon_sym_BSLASHGls] = ACTIONS(12425), + [anon_sym_BSLASHGLS] = ACTIONS(12425), + [anon_sym_BSLASHglspl] = ACTIONS(12425), + [anon_sym_BSLASHGlspl] = ACTIONS(12425), + [anon_sym_BSLASHGLSpl] = ACTIONS(12425), + [anon_sym_BSLASHglsdisp] = ACTIONS(12425), + [anon_sym_BSLASHglslink] = ACTIONS(12425), + [anon_sym_BSLASHglstext] = ACTIONS(12425), + [anon_sym_BSLASHGlstext] = ACTIONS(12425), + [anon_sym_BSLASHGLStext] = ACTIONS(12425), + [anon_sym_BSLASHglsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12425), + [anon_sym_BSLASHglsplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSplural] = ACTIONS(12425), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHglsname] = ACTIONS(12425), + [anon_sym_BSLASHGlsname] = ACTIONS(12425), + [anon_sym_BSLASHGLSname] = ACTIONS(12425), + [anon_sym_BSLASHglssymbol] = ACTIONS(12425), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12425), + [anon_sym_BSLASHglsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12425), + [anon_sym_BSLASHglsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12425), + [anon_sym_BSLASHglsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12425), + [anon_sym_BSLASHglsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12425), + [anon_sym_BSLASHglsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12425), + [anon_sym_BSLASHnewacronym] = ACTIONS(12425), + [anon_sym_BSLASHacrshort] = ACTIONS(12425), + [anon_sym_BSLASHAcrshort] = ACTIONS(12425), + [anon_sym_BSLASHACRshort] = ACTIONS(12425), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12425), + [anon_sym_BSLASHacrlong] = ACTIONS(12425), + [anon_sym_BSLASHAcrlong] = ACTIONS(12425), + [anon_sym_BSLASHACRlong] = ACTIONS(12425), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12425), + [anon_sym_BSLASHacrfull] = ACTIONS(12425), + [anon_sym_BSLASHAcrfull] = ACTIONS(12425), + [anon_sym_BSLASHACRfull] = ACTIONS(12425), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12425), + [anon_sym_BSLASHacs] = ACTIONS(12425), + [anon_sym_BSLASHAcs] = ACTIONS(12425), + [anon_sym_BSLASHacsp] = ACTIONS(12425), + [anon_sym_BSLASHAcsp] = ACTIONS(12425), + [anon_sym_BSLASHacl] = ACTIONS(12425), + [anon_sym_BSLASHAcl] = ACTIONS(12425), + [anon_sym_BSLASHaclp] = ACTIONS(12425), + [anon_sym_BSLASHAclp] = ACTIONS(12425), + [anon_sym_BSLASHacf] = ACTIONS(12425), + [anon_sym_BSLASHAcf] = ACTIONS(12425), + [anon_sym_BSLASHacfp] = ACTIONS(12425), + [anon_sym_BSLASHAcfp] = ACTIONS(12425), + [anon_sym_BSLASHac] = ACTIONS(12425), + [anon_sym_BSLASHAc] = ACTIONS(12425), + [anon_sym_BSLASHacp] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12425), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12425), + [anon_sym_BSLASHcolor] = ACTIONS(12425), + [anon_sym_BSLASHcolorbox] = ACTIONS(12425), + [anon_sym_BSLASHtextcolor] = ACTIONS(12425), + [anon_sym_BSLASHpagecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12425), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12425), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12425), + }, + [1030] = { + [sym_generic_command_name] = ACTIONS(12429), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12429), + [aux_sym_section_token1] = ACTIONS(12429), + [aux_sym_subsection_token1] = ACTIONS(12429), + [aux_sym_subsubsection_token1] = ACTIONS(12429), + [aux_sym_paragraph_token1] = ACTIONS(12429), + [aux_sym_subparagraph_token1] = ACTIONS(12429), + [anon_sym_BSLASHitem] = ACTIONS(12429), + [anon_sym_LBRACK] = ACTIONS(12427), + [anon_sym_RBRACK] = ACTIONS(12427), + [anon_sym_LBRACE] = ACTIONS(12427), + [anon_sym_RBRACE] = ACTIONS(12427), + [anon_sym_LPAREN] = ACTIONS(12427), + [anon_sym_COMMA] = ACTIONS(12427), + [anon_sym_EQ] = ACTIONS(12427), + [sym_word] = ACTIONS(12427), + [sym_param] = ACTIONS(12427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12427), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12427), + [anon_sym_DOLLAR] = ACTIONS(12429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12427), + [anon_sym_BSLASHbegin] = ACTIONS(12429), + [anon_sym_BSLASHcaption] = ACTIONS(12429), + [anon_sym_BSLASHcite] = ACTIONS(12429), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCite] = ACTIONS(12429), + [anon_sym_BSLASHnocite] = ACTIONS(12429), + [anon_sym_BSLASHcitet] = ACTIONS(12429), + [anon_sym_BSLASHcitep] = ACTIONS(12429), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteauthor] = ACTIONS(12429), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12429), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitetitle] = ACTIONS(12429), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteyear] = ACTIONS(12429), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitedate] = ACTIONS(12429), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteurl] = ACTIONS(12429), + [anon_sym_BSLASHfullcite] = ACTIONS(12429), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12429), + [anon_sym_BSLASHcitealt] = ACTIONS(12429), + [anon_sym_BSLASHcitealp] = ACTIONS(12429), + [anon_sym_BSLASHcitetext] = ACTIONS(12429), + [anon_sym_BSLASHparencite] = ACTIONS(12429), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHParencite] = ACTIONS(12429), + [anon_sym_BSLASHfootcite] = ACTIONS(12429), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12429), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12429), + [anon_sym_BSLASHtextcite] = ACTIONS(12429), + [anon_sym_BSLASHTextcite] = ACTIONS(12429), + [anon_sym_BSLASHsmartcite] = ACTIONS(12429), + [anon_sym_BSLASHSmartcite] = ACTIONS(12429), + [anon_sym_BSLASHsupercite] = ACTIONS(12429), + [anon_sym_BSLASHautocite] = ACTIONS(12429), + [anon_sym_BSLASHAutocite] = ACTIONS(12429), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHvolcite] = ACTIONS(12429), + [anon_sym_BSLASHVolcite] = ACTIONS(12429), + [anon_sym_BSLASHpvolcite] = ACTIONS(12429), + [anon_sym_BSLASHPvolcite] = ACTIONS(12429), + [anon_sym_BSLASHfvolcite] = ACTIONS(12429), + [anon_sym_BSLASHftvolcite] = ACTIONS(12429), + [anon_sym_BSLASHsvolcite] = ACTIONS(12429), + [anon_sym_BSLASHSvolcite] = ACTIONS(12429), + [anon_sym_BSLASHtvolcite] = ACTIONS(12429), + [anon_sym_BSLASHTvolcite] = ACTIONS(12429), + [anon_sym_BSLASHavolcite] = ACTIONS(12429), + [anon_sym_BSLASHAvolcite] = ACTIONS(12429), + [anon_sym_BSLASHnotecite] = ACTIONS(12429), + [anon_sym_BSLASHpnotecite] = ACTIONS(12429), + [anon_sym_BSLASHPnotecite] = ACTIONS(12429), + [anon_sym_BSLASHfnotecite] = ACTIONS(12429), + [anon_sym_BSLASHusepackage] = ACTIONS(12429), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12429), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12429), + [anon_sym_BSLASHinclude] = ACTIONS(12429), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12429), + [anon_sym_BSLASHinput] = ACTIONS(12429), + [anon_sym_BSLASHsubfile] = ACTIONS(12429), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12429), + [anon_sym_BSLASHbibliography] = ACTIONS(12429), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12429), + [anon_sym_BSLASHincludesvg] = ACTIONS(12429), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12429), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12429), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12429), + [anon_sym_BSLASHimport] = ACTIONS(12429), + [anon_sym_BSLASHsubimport] = ACTIONS(12429), + [anon_sym_BSLASHinputfrom] = ACTIONS(12429), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12429), + [anon_sym_BSLASHincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHlabel] = ACTIONS(12429), + [anon_sym_BSLASHref] = ACTIONS(12429), + [anon_sym_BSLASHvref] = ACTIONS(12429), + [anon_sym_BSLASHVref] = ACTIONS(12429), + [anon_sym_BSLASHautoref] = ACTIONS(12429), + [anon_sym_BSLASHpageref] = ACTIONS(12429), + [anon_sym_BSLASHcref] = ACTIONS(12429), + [anon_sym_BSLASHCref] = ACTIONS(12429), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnameCref] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHlabelcref] = ACTIONS(12429), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12429), + [anon_sym_BSLASHeqref] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange] = ACTIONS(12429), + [anon_sym_BSLASHCrefrange] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewlabel] = ACTIONS(12429), + [anon_sym_BSLASHnewcommand] = ACTIONS(12429), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12429), + [anon_sym_BSLASHgls] = ACTIONS(12429), + [anon_sym_BSLASHGls] = ACTIONS(12429), + [anon_sym_BSLASHGLS] = ACTIONS(12429), + [anon_sym_BSLASHglspl] = ACTIONS(12429), + [anon_sym_BSLASHGlspl] = ACTIONS(12429), + [anon_sym_BSLASHGLSpl] = ACTIONS(12429), + [anon_sym_BSLASHglsdisp] = ACTIONS(12429), + [anon_sym_BSLASHglslink] = ACTIONS(12429), + [anon_sym_BSLASHglstext] = ACTIONS(12429), + [anon_sym_BSLASHGlstext] = ACTIONS(12429), + [anon_sym_BSLASHGLStext] = ACTIONS(12429), + [anon_sym_BSLASHglsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12429), + [anon_sym_BSLASHglsplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSplural] = ACTIONS(12429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHglsname] = ACTIONS(12429), + [anon_sym_BSLASHGlsname] = ACTIONS(12429), + [anon_sym_BSLASHGLSname] = ACTIONS(12429), + [anon_sym_BSLASHglssymbol] = ACTIONS(12429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12429), + [anon_sym_BSLASHglsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12429), + [anon_sym_BSLASHglsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12429), + [anon_sym_BSLASHglsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12429), + [anon_sym_BSLASHglsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12429), + [anon_sym_BSLASHglsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12429), + [anon_sym_BSLASHnewacronym] = ACTIONS(12429), + [anon_sym_BSLASHacrshort] = ACTIONS(12429), + [anon_sym_BSLASHAcrshort] = ACTIONS(12429), + [anon_sym_BSLASHACRshort] = ACTIONS(12429), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12429), + [anon_sym_BSLASHacrlong] = ACTIONS(12429), + [anon_sym_BSLASHAcrlong] = ACTIONS(12429), + [anon_sym_BSLASHACRlong] = ACTIONS(12429), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12429), + [anon_sym_BSLASHacrfull] = ACTIONS(12429), + [anon_sym_BSLASHAcrfull] = ACTIONS(12429), + [anon_sym_BSLASHACRfull] = ACTIONS(12429), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12429), + [anon_sym_BSLASHacs] = ACTIONS(12429), + [anon_sym_BSLASHAcs] = ACTIONS(12429), + [anon_sym_BSLASHacsp] = ACTIONS(12429), + [anon_sym_BSLASHAcsp] = ACTIONS(12429), + [anon_sym_BSLASHacl] = ACTIONS(12429), + [anon_sym_BSLASHAcl] = ACTIONS(12429), + [anon_sym_BSLASHaclp] = ACTIONS(12429), + [anon_sym_BSLASHAclp] = ACTIONS(12429), + [anon_sym_BSLASHacf] = ACTIONS(12429), + [anon_sym_BSLASHAcf] = ACTIONS(12429), + [anon_sym_BSLASHacfp] = ACTIONS(12429), + [anon_sym_BSLASHAcfp] = ACTIONS(12429), + [anon_sym_BSLASHac] = ACTIONS(12429), + [anon_sym_BSLASHAc] = ACTIONS(12429), + [anon_sym_BSLASHacp] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12429), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12429), + [anon_sym_BSLASHcolor] = ACTIONS(12429), + [anon_sym_BSLASHcolorbox] = ACTIONS(12429), + [anon_sym_BSLASHtextcolor] = ACTIONS(12429), + [anon_sym_BSLASHpagecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12429), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12429), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12429), + }, + [1031] = { + [sym_generic_command_name] = ACTIONS(12433), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12433), + [aux_sym_section_token1] = ACTIONS(12433), + [aux_sym_subsection_token1] = ACTIONS(12433), + [aux_sym_subsubsection_token1] = ACTIONS(12433), + [aux_sym_paragraph_token1] = ACTIONS(12433), + [aux_sym_subparagraph_token1] = ACTIONS(12433), + [anon_sym_BSLASHitem] = ACTIONS(12433), + [anon_sym_LBRACK] = ACTIONS(12431), + [anon_sym_RBRACK] = ACTIONS(12431), + [anon_sym_LBRACE] = ACTIONS(12431), + [anon_sym_RBRACE] = ACTIONS(12431), + [anon_sym_LPAREN] = ACTIONS(12431), + [anon_sym_COMMA] = ACTIONS(12431), + [anon_sym_EQ] = ACTIONS(12431), + [sym_word] = ACTIONS(12431), + [sym_param] = ACTIONS(12431), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12431), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12431), + [anon_sym_DOLLAR] = ACTIONS(12433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12431), + [anon_sym_BSLASHbegin] = ACTIONS(12433), + [anon_sym_BSLASHcaption] = ACTIONS(12433), + [anon_sym_BSLASHcite] = ACTIONS(12433), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCite] = ACTIONS(12433), + [anon_sym_BSLASHnocite] = ACTIONS(12433), + [anon_sym_BSLASHcitet] = ACTIONS(12433), + [anon_sym_BSLASHcitep] = ACTIONS(12433), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteauthor] = ACTIONS(12433), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12433), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitetitle] = ACTIONS(12433), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteyear] = ACTIONS(12433), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitedate] = ACTIONS(12433), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteurl] = ACTIONS(12433), + [anon_sym_BSLASHfullcite] = ACTIONS(12433), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12433), + [anon_sym_BSLASHcitealt] = ACTIONS(12433), + [anon_sym_BSLASHcitealp] = ACTIONS(12433), + [anon_sym_BSLASHcitetext] = ACTIONS(12433), + [anon_sym_BSLASHparencite] = ACTIONS(12433), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHParencite] = ACTIONS(12433), + [anon_sym_BSLASHfootcite] = ACTIONS(12433), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12433), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12433), + [anon_sym_BSLASHtextcite] = ACTIONS(12433), + [anon_sym_BSLASHTextcite] = ACTIONS(12433), + [anon_sym_BSLASHsmartcite] = ACTIONS(12433), + [anon_sym_BSLASHSmartcite] = ACTIONS(12433), + [anon_sym_BSLASHsupercite] = ACTIONS(12433), + [anon_sym_BSLASHautocite] = ACTIONS(12433), + [anon_sym_BSLASHAutocite] = ACTIONS(12433), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHvolcite] = ACTIONS(12433), + [anon_sym_BSLASHVolcite] = ACTIONS(12433), + [anon_sym_BSLASHpvolcite] = ACTIONS(12433), + [anon_sym_BSLASHPvolcite] = ACTIONS(12433), + [anon_sym_BSLASHfvolcite] = ACTIONS(12433), + [anon_sym_BSLASHftvolcite] = ACTIONS(12433), + [anon_sym_BSLASHsvolcite] = ACTIONS(12433), + [anon_sym_BSLASHSvolcite] = ACTIONS(12433), + [anon_sym_BSLASHtvolcite] = ACTIONS(12433), + [anon_sym_BSLASHTvolcite] = ACTIONS(12433), + [anon_sym_BSLASHavolcite] = ACTIONS(12433), + [anon_sym_BSLASHAvolcite] = ACTIONS(12433), + [anon_sym_BSLASHnotecite] = ACTIONS(12433), + [anon_sym_BSLASHpnotecite] = ACTIONS(12433), + [anon_sym_BSLASHPnotecite] = ACTIONS(12433), + [anon_sym_BSLASHfnotecite] = ACTIONS(12433), + [anon_sym_BSLASHusepackage] = ACTIONS(12433), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12433), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12433), + [anon_sym_BSLASHinclude] = ACTIONS(12433), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12433), + [anon_sym_BSLASHinput] = ACTIONS(12433), + [anon_sym_BSLASHsubfile] = ACTIONS(12433), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12433), + [anon_sym_BSLASHbibliography] = ACTIONS(12433), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12433), + [anon_sym_BSLASHincludesvg] = ACTIONS(12433), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12433), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12433), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12433), + [anon_sym_BSLASHimport] = ACTIONS(12433), + [anon_sym_BSLASHsubimport] = ACTIONS(12433), + [anon_sym_BSLASHinputfrom] = ACTIONS(12433), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12433), + [anon_sym_BSLASHincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHlabel] = ACTIONS(12433), + [anon_sym_BSLASHref] = ACTIONS(12433), + [anon_sym_BSLASHvref] = ACTIONS(12433), + [anon_sym_BSLASHVref] = ACTIONS(12433), + [anon_sym_BSLASHautoref] = ACTIONS(12433), + [anon_sym_BSLASHpageref] = ACTIONS(12433), + [anon_sym_BSLASHcref] = ACTIONS(12433), + [anon_sym_BSLASHCref] = ACTIONS(12433), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnameCref] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHlabelcref] = ACTIONS(12433), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12433), + [anon_sym_BSLASHeqref] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange] = ACTIONS(12433), + [anon_sym_BSLASHCrefrange] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewlabel] = ACTIONS(12433), + [anon_sym_BSLASHnewcommand] = ACTIONS(12433), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12433), + [anon_sym_BSLASHgls] = ACTIONS(12433), + [anon_sym_BSLASHGls] = ACTIONS(12433), + [anon_sym_BSLASHGLS] = ACTIONS(12433), + [anon_sym_BSLASHglspl] = ACTIONS(12433), + [anon_sym_BSLASHGlspl] = ACTIONS(12433), + [anon_sym_BSLASHGLSpl] = ACTIONS(12433), + [anon_sym_BSLASHglsdisp] = ACTIONS(12433), + [anon_sym_BSLASHglslink] = ACTIONS(12433), + [anon_sym_BSLASHglstext] = ACTIONS(12433), + [anon_sym_BSLASHGlstext] = ACTIONS(12433), + [anon_sym_BSLASHGLStext] = ACTIONS(12433), + [anon_sym_BSLASHglsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12433), + [anon_sym_BSLASHglsplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSplural] = ACTIONS(12433), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHglsname] = ACTIONS(12433), + [anon_sym_BSLASHGlsname] = ACTIONS(12433), + [anon_sym_BSLASHGLSname] = ACTIONS(12433), + [anon_sym_BSLASHglssymbol] = ACTIONS(12433), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12433), + [anon_sym_BSLASHglsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12433), + [anon_sym_BSLASHglsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12433), + [anon_sym_BSLASHglsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12433), + [anon_sym_BSLASHglsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12433), + [anon_sym_BSLASHglsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12433), + [anon_sym_BSLASHnewacronym] = ACTIONS(12433), + [anon_sym_BSLASHacrshort] = ACTIONS(12433), + [anon_sym_BSLASHAcrshort] = ACTIONS(12433), + [anon_sym_BSLASHACRshort] = ACTIONS(12433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12433), + [anon_sym_BSLASHacrlong] = ACTIONS(12433), + [anon_sym_BSLASHAcrlong] = ACTIONS(12433), + [anon_sym_BSLASHACRlong] = ACTIONS(12433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12433), + [anon_sym_BSLASHacrfull] = ACTIONS(12433), + [anon_sym_BSLASHAcrfull] = ACTIONS(12433), + [anon_sym_BSLASHACRfull] = ACTIONS(12433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12433), + [anon_sym_BSLASHacs] = ACTIONS(12433), + [anon_sym_BSLASHAcs] = ACTIONS(12433), + [anon_sym_BSLASHacsp] = ACTIONS(12433), + [anon_sym_BSLASHAcsp] = ACTIONS(12433), + [anon_sym_BSLASHacl] = ACTIONS(12433), + [anon_sym_BSLASHAcl] = ACTIONS(12433), + [anon_sym_BSLASHaclp] = ACTIONS(12433), + [anon_sym_BSLASHAclp] = ACTIONS(12433), + [anon_sym_BSLASHacf] = ACTIONS(12433), + [anon_sym_BSLASHAcf] = ACTIONS(12433), + [anon_sym_BSLASHacfp] = ACTIONS(12433), + [anon_sym_BSLASHAcfp] = ACTIONS(12433), + [anon_sym_BSLASHac] = ACTIONS(12433), + [anon_sym_BSLASHAc] = ACTIONS(12433), + [anon_sym_BSLASHacp] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12433), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12433), + [anon_sym_BSLASHcolor] = ACTIONS(12433), + [anon_sym_BSLASHcolorbox] = ACTIONS(12433), + [anon_sym_BSLASHtextcolor] = ACTIONS(12433), + [anon_sym_BSLASHpagecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12433), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12433), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12433), + }, + [1032] = { + [sym_generic_command_name] = ACTIONS(12393), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12393), + [aux_sym_chapter_token1] = ACTIONS(12393), + [aux_sym_section_token1] = ACTIONS(12393), + [aux_sym_subsection_token1] = ACTIONS(12393), + [aux_sym_subsubsection_token1] = ACTIONS(12393), + [aux_sym_paragraph_token1] = ACTIONS(12393), + [aux_sym_subparagraph_token1] = ACTIONS(12393), + [anon_sym_BSLASHitem] = ACTIONS(12393), + [anon_sym_LBRACK] = ACTIONS(12391), + [anon_sym_LBRACE] = ACTIONS(12391), + [anon_sym_LPAREN] = ACTIONS(12391), + [anon_sym_COMMA] = ACTIONS(12391), + [anon_sym_EQ] = ACTIONS(12391), + [sym_word] = ACTIONS(12391), + [sym_param] = ACTIONS(12391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12391), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12391), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12391), + [anon_sym_DOLLAR] = ACTIONS(12393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12391), + [anon_sym_BSLASHbegin] = ACTIONS(12393), + [anon_sym_BSLASHcaption] = ACTIONS(12393), + [anon_sym_BSLASHcite] = ACTIONS(12393), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCite] = ACTIONS(12393), + [anon_sym_BSLASHnocite] = ACTIONS(12393), + [anon_sym_BSLASHcitet] = ACTIONS(12393), + [anon_sym_BSLASHcitep] = ACTIONS(12393), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteauthor] = ACTIONS(12393), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12393), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitetitle] = ACTIONS(12393), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteyear] = ACTIONS(12393), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitedate] = ACTIONS(12393), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteurl] = ACTIONS(12393), + [anon_sym_BSLASHfullcite] = ACTIONS(12393), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12393), + [anon_sym_BSLASHcitealt] = ACTIONS(12393), + [anon_sym_BSLASHcitealp] = ACTIONS(12393), + [anon_sym_BSLASHcitetext] = ACTIONS(12393), + [anon_sym_BSLASHparencite] = ACTIONS(12393), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHParencite] = ACTIONS(12393), + [anon_sym_BSLASHfootcite] = ACTIONS(12393), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12393), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12393), + [anon_sym_BSLASHtextcite] = ACTIONS(12393), + [anon_sym_BSLASHTextcite] = ACTIONS(12393), + [anon_sym_BSLASHsmartcite] = ACTIONS(12393), + [anon_sym_BSLASHSmartcite] = ACTIONS(12393), + [anon_sym_BSLASHsupercite] = ACTIONS(12393), + [anon_sym_BSLASHautocite] = ACTIONS(12393), + [anon_sym_BSLASHAutocite] = ACTIONS(12393), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHvolcite] = ACTIONS(12393), + [anon_sym_BSLASHVolcite] = ACTIONS(12393), + [anon_sym_BSLASHpvolcite] = ACTIONS(12393), + [anon_sym_BSLASHPvolcite] = ACTIONS(12393), + [anon_sym_BSLASHfvolcite] = ACTIONS(12393), + [anon_sym_BSLASHftvolcite] = ACTIONS(12393), + [anon_sym_BSLASHsvolcite] = ACTIONS(12393), + [anon_sym_BSLASHSvolcite] = ACTIONS(12393), + [anon_sym_BSLASHtvolcite] = ACTIONS(12393), + [anon_sym_BSLASHTvolcite] = ACTIONS(12393), + [anon_sym_BSLASHavolcite] = ACTIONS(12393), + [anon_sym_BSLASHAvolcite] = ACTIONS(12393), + [anon_sym_BSLASHnotecite] = ACTIONS(12393), + [anon_sym_BSLASHpnotecite] = ACTIONS(12393), + [anon_sym_BSLASHPnotecite] = ACTIONS(12393), + [anon_sym_BSLASHfnotecite] = ACTIONS(12393), + [anon_sym_BSLASHusepackage] = ACTIONS(12393), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12393), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12393), + [anon_sym_BSLASHinclude] = ACTIONS(12393), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12393), + [anon_sym_BSLASHinput] = ACTIONS(12393), + [anon_sym_BSLASHsubfile] = ACTIONS(12393), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12393), + [anon_sym_BSLASHbibliography] = ACTIONS(12393), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12393), + [anon_sym_BSLASHincludesvg] = ACTIONS(12393), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12393), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12393), + [anon_sym_BSLASHimport] = ACTIONS(12393), + [anon_sym_BSLASHsubimport] = ACTIONS(12393), + [anon_sym_BSLASHinputfrom] = ACTIONS(12393), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12393), + [anon_sym_BSLASHincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHlabel] = ACTIONS(12393), + [anon_sym_BSLASHref] = ACTIONS(12393), + [anon_sym_BSLASHvref] = ACTIONS(12393), + [anon_sym_BSLASHVref] = ACTIONS(12393), + [anon_sym_BSLASHautoref] = ACTIONS(12393), + [anon_sym_BSLASHpageref] = ACTIONS(12393), + [anon_sym_BSLASHcref] = ACTIONS(12393), + [anon_sym_BSLASHCref] = ACTIONS(12393), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnameCref] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHlabelcref] = ACTIONS(12393), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12393), + [anon_sym_BSLASHeqref] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange] = ACTIONS(12393), + [anon_sym_BSLASHCrefrange] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewlabel] = ACTIONS(12393), + [anon_sym_BSLASHnewcommand] = ACTIONS(12393), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12393), + [anon_sym_BSLASHgls] = ACTIONS(12393), + [anon_sym_BSLASHGls] = ACTIONS(12393), + [anon_sym_BSLASHGLS] = ACTIONS(12393), + [anon_sym_BSLASHglspl] = ACTIONS(12393), + [anon_sym_BSLASHGlspl] = ACTIONS(12393), + [anon_sym_BSLASHGLSpl] = ACTIONS(12393), + [anon_sym_BSLASHglsdisp] = ACTIONS(12393), + [anon_sym_BSLASHglslink] = ACTIONS(12393), + [anon_sym_BSLASHglstext] = ACTIONS(12393), + [anon_sym_BSLASHGlstext] = ACTIONS(12393), + [anon_sym_BSLASHGLStext] = ACTIONS(12393), + [anon_sym_BSLASHglsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12393), + [anon_sym_BSLASHglsplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSplural] = ACTIONS(12393), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHglsname] = ACTIONS(12393), + [anon_sym_BSLASHGlsname] = ACTIONS(12393), + [anon_sym_BSLASHGLSname] = ACTIONS(12393), + [anon_sym_BSLASHglssymbol] = ACTIONS(12393), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12393), + [anon_sym_BSLASHglsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12393), + [anon_sym_BSLASHglsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12393), + [anon_sym_BSLASHglsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12393), + [anon_sym_BSLASHglsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12393), + [anon_sym_BSLASHglsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12393), + [anon_sym_BSLASHnewacronym] = ACTIONS(12393), + [anon_sym_BSLASHacrshort] = ACTIONS(12393), + [anon_sym_BSLASHAcrshort] = ACTIONS(12393), + [anon_sym_BSLASHACRshort] = ACTIONS(12393), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12393), + [anon_sym_BSLASHacrlong] = ACTIONS(12393), + [anon_sym_BSLASHAcrlong] = ACTIONS(12393), + [anon_sym_BSLASHACRlong] = ACTIONS(12393), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12393), + [anon_sym_BSLASHacrfull] = ACTIONS(12393), + [anon_sym_BSLASHAcrfull] = ACTIONS(12393), + [anon_sym_BSLASHACRfull] = ACTIONS(12393), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12393), + [anon_sym_BSLASHacs] = ACTIONS(12393), + [anon_sym_BSLASHAcs] = ACTIONS(12393), + [anon_sym_BSLASHacsp] = ACTIONS(12393), + [anon_sym_BSLASHAcsp] = ACTIONS(12393), + [anon_sym_BSLASHacl] = ACTIONS(12393), + [anon_sym_BSLASHAcl] = ACTIONS(12393), + [anon_sym_BSLASHaclp] = ACTIONS(12393), + [anon_sym_BSLASHAclp] = ACTIONS(12393), + [anon_sym_BSLASHacf] = ACTIONS(12393), + [anon_sym_BSLASHAcf] = ACTIONS(12393), + [anon_sym_BSLASHacfp] = ACTIONS(12393), + [anon_sym_BSLASHAcfp] = ACTIONS(12393), + [anon_sym_BSLASHac] = ACTIONS(12393), + [anon_sym_BSLASHAc] = ACTIONS(12393), + [anon_sym_BSLASHacp] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12393), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12393), + [anon_sym_BSLASHcolor] = ACTIONS(12393), + [anon_sym_BSLASHcolorbox] = ACTIONS(12393), + [anon_sym_BSLASHtextcolor] = ACTIONS(12393), + [anon_sym_BSLASHpagecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12393), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12393), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12393), + }, + [1033] = { + [sym_generic_command_name] = ACTIONS(12397), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12397), + [aux_sym_chapter_token1] = ACTIONS(12397), + [aux_sym_section_token1] = ACTIONS(12397), + [aux_sym_subsection_token1] = ACTIONS(12397), + [aux_sym_subsubsection_token1] = ACTIONS(12397), + [aux_sym_paragraph_token1] = ACTIONS(12397), + [aux_sym_subparagraph_token1] = ACTIONS(12397), + [anon_sym_BSLASHitem] = ACTIONS(12397), + [anon_sym_LBRACK] = ACTIONS(12395), + [anon_sym_LBRACE] = ACTIONS(12395), + [anon_sym_LPAREN] = ACTIONS(12395), + [anon_sym_COMMA] = ACTIONS(12395), + [anon_sym_EQ] = ACTIONS(12395), + [sym_word] = ACTIONS(12395), + [sym_param] = ACTIONS(12395), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12395), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12395), + [anon_sym_DOLLAR] = ACTIONS(12397), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12395), + [anon_sym_BSLASHbegin] = ACTIONS(12397), + [anon_sym_BSLASHcaption] = ACTIONS(12397), + [anon_sym_BSLASHcite] = ACTIONS(12397), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCite] = ACTIONS(12397), + [anon_sym_BSLASHnocite] = ACTIONS(12397), + [anon_sym_BSLASHcitet] = ACTIONS(12397), + [anon_sym_BSLASHcitep] = ACTIONS(12397), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteauthor] = ACTIONS(12397), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12397), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitetitle] = ACTIONS(12397), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteyear] = ACTIONS(12397), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitedate] = ACTIONS(12397), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteurl] = ACTIONS(12397), + [anon_sym_BSLASHfullcite] = ACTIONS(12397), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12397), + [anon_sym_BSLASHcitealt] = ACTIONS(12397), + [anon_sym_BSLASHcitealp] = ACTIONS(12397), + [anon_sym_BSLASHcitetext] = ACTIONS(12397), + [anon_sym_BSLASHparencite] = ACTIONS(12397), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHParencite] = ACTIONS(12397), + [anon_sym_BSLASHfootcite] = ACTIONS(12397), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12397), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12397), + [anon_sym_BSLASHtextcite] = ACTIONS(12397), + [anon_sym_BSLASHTextcite] = ACTIONS(12397), + [anon_sym_BSLASHsmartcite] = ACTIONS(12397), + [anon_sym_BSLASHSmartcite] = ACTIONS(12397), + [anon_sym_BSLASHsupercite] = ACTIONS(12397), + [anon_sym_BSLASHautocite] = ACTIONS(12397), + [anon_sym_BSLASHAutocite] = ACTIONS(12397), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHvolcite] = ACTIONS(12397), + [anon_sym_BSLASHVolcite] = ACTIONS(12397), + [anon_sym_BSLASHpvolcite] = ACTIONS(12397), + [anon_sym_BSLASHPvolcite] = ACTIONS(12397), + [anon_sym_BSLASHfvolcite] = ACTIONS(12397), + [anon_sym_BSLASHftvolcite] = ACTIONS(12397), + [anon_sym_BSLASHsvolcite] = ACTIONS(12397), + [anon_sym_BSLASHSvolcite] = ACTIONS(12397), + [anon_sym_BSLASHtvolcite] = ACTIONS(12397), + [anon_sym_BSLASHTvolcite] = ACTIONS(12397), + [anon_sym_BSLASHavolcite] = ACTIONS(12397), + [anon_sym_BSLASHAvolcite] = ACTIONS(12397), + [anon_sym_BSLASHnotecite] = ACTIONS(12397), + [anon_sym_BSLASHpnotecite] = ACTIONS(12397), + [anon_sym_BSLASHPnotecite] = ACTIONS(12397), + [anon_sym_BSLASHfnotecite] = ACTIONS(12397), + [anon_sym_BSLASHusepackage] = ACTIONS(12397), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12397), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12397), + [anon_sym_BSLASHinclude] = ACTIONS(12397), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12397), + [anon_sym_BSLASHinput] = ACTIONS(12397), + [anon_sym_BSLASHsubfile] = ACTIONS(12397), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12397), + [anon_sym_BSLASHbibliography] = ACTIONS(12397), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12397), + [anon_sym_BSLASHincludesvg] = ACTIONS(12397), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12397), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12397), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12397), + [anon_sym_BSLASHimport] = ACTIONS(12397), + [anon_sym_BSLASHsubimport] = ACTIONS(12397), + [anon_sym_BSLASHinputfrom] = ACTIONS(12397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12397), + [anon_sym_BSLASHincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHlabel] = ACTIONS(12397), + [anon_sym_BSLASHref] = ACTIONS(12397), + [anon_sym_BSLASHvref] = ACTIONS(12397), + [anon_sym_BSLASHVref] = ACTIONS(12397), + [anon_sym_BSLASHautoref] = ACTIONS(12397), + [anon_sym_BSLASHpageref] = ACTIONS(12397), + [anon_sym_BSLASHcref] = ACTIONS(12397), + [anon_sym_BSLASHCref] = ACTIONS(12397), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnameCref] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHlabelcref] = ACTIONS(12397), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12397), + [anon_sym_BSLASHeqref] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange] = ACTIONS(12397), + [anon_sym_BSLASHCrefrange] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewlabel] = ACTIONS(12397), + [anon_sym_BSLASHnewcommand] = ACTIONS(12397), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12397), + [anon_sym_BSLASHgls] = ACTIONS(12397), + [anon_sym_BSLASHGls] = ACTIONS(12397), + [anon_sym_BSLASHGLS] = ACTIONS(12397), + [anon_sym_BSLASHglspl] = ACTIONS(12397), + [anon_sym_BSLASHGlspl] = ACTIONS(12397), + [anon_sym_BSLASHGLSpl] = ACTIONS(12397), + [anon_sym_BSLASHglsdisp] = ACTIONS(12397), + [anon_sym_BSLASHglslink] = ACTIONS(12397), + [anon_sym_BSLASHglstext] = ACTIONS(12397), + [anon_sym_BSLASHGlstext] = ACTIONS(12397), + [anon_sym_BSLASHGLStext] = ACTIONS(12397), + [anon_sym_BSLASHglsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12397), + [anon_sym_BSLASHglsplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSplural] = ACTIONS(12397), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHglsname] = ACTIONS(12397), + [anon_sym_BSLASHGlsname] = ACTIONS(12397), + [anon_sym_BSLASHGLSname] = ACTIONS(12397), + [anon_sym_BSLASHglssymbol] = ACTIONS(12397), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12397), + [anon_sym_BSLASHglsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12397), + [anon_sym_BSLASHglsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12397), + [anon_sym_BSLASHglsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12397), + [anon_sym_BSLASHglsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12397), + [anon_sym_BSLASHglsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12397), + [anon_sym_BSLASHnewacronym] = ACTIONS(12397), + [anon_sym_BSLASHacrshort] = ACTIONS(12397), + [anon_sym_BSLASHAcrshort] = ACTIONS(12397), + [anon_sym_BSLASHACRshort] = ACTIONS(12397), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12397), + [anon_sym_BSLASHacrlong] = ACTIONS(12397), + [anon_sym_BSLASHAcrlong] = ACTIONS(12397), + [anon_sym_BSLASHACRlong] = ACTIONS(12397), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12397), + [anon_sym_BSLASHacrfull] = ACTIONS(12397), + [anon_sym_BSLASHAcrfull] = ACTIONS(12397), + [anon_sym_BSLASHACRfull] = ACTIONS(12397), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12397), + [anon_sym_BSLASHacs] = ACTIONS(12397), + [anon_sym_BSLASHAcs] = ACTIONS(12397), + [anon_sym_BSLASHacsp] = ACTIONS(12397), + [anon_sym_BSLASHAcsp] = ACTIONS(12397), + [anon_sym_BSLASHacl] = ACTIONS(12397), + [anon_sym_BSLASHAcl] = ACTIONS(12397), + [anon_sym_BSLASHaclp] = ACTIONS(12397), + [anon_sym_BSLASHAclp] = ACTIONS(12397), + [anon_sym_BSLASHacf] = ACTIONS(12397), + [anon_sym_BSLASHAcf] = ACTIONS(12397), + [anon_sym_BSLASHacfp] = ACTIONS(12397), + [anon_sym_BSLASHAcfp] = ACTIONS(12397), + [anon_sym_BSLASHac] = ACTIONS(12397), + [anon_sym_BSLASHAc] = ACTIONS(12397), + [anon_sym_BSLASHacp] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12397), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12397), + [anon_sym_BSLASHcolor] = ACTIONS(12397), + [anon_sym_BSLASHcolorbox] = ACTIONS(12397), + [anon_sym_BSLASHtextcolor] = ACTIONS(12397), + [anon_sym_BSLASHpagecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12397), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12397), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12397), + }, + [1034] = { + [sym_generic_command_name] = ACTIONS(12401), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12401), + [aux_sym_chapter_token1] = ACTIONS(12401), + [aux_sym_section_token1] = ACTIONS(12401), + [aux_sym_subsection_token1] = ACTIONS(12401), + [aux_sym_subsubsection_token1] = ACTIONS(12401), + [aux_sym_paragraph_token1] = ACTIONS(12401), + [aux_sym_subparagraph_token1] = ACTIONS(12401), + [anon_sym_BSLASHitem] = ACTIONS(12401), + [anon_sym_LBRACK] = ACTIONS(12399), + [anon_sym_LBRACE] = ACTIONS(12399), + [anon_sym_LPAREN] = ACTIONS(12399), + [anon_sym_COMMA] = ACTIONS(12399), + [anon_sym_EQ] = ACTIONS(12399), + [sym_word] = ACTIONS(12399), + [sym_param] = ACTIONS(12399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12399), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12399), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12399), + [anon_sym_DOLLAR] = ACTIONS(12401), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12399), + [anon_sym_BSLASHbegin] = ACTIONS(12401), + [anon_sym_BSLASHcaption] = ACTIONS(12401), + [anon_sym_BSLASHcite] = ACTIONS(12401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCite] = ACTIONS(12401), + [anon_sym_BSLASHnocite] = ACTIONS(12401), + [anon_sym_BSLASHcitet] = ACTIONS(12401), + [anon_sym_BSLASHcitep] = ACTIONS(12401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteauthor] = ACTIONS(12401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitetitle] = ACTIONS(12401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteyear] = ACTIONS(12401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitedate] = ACTIONS(12401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteurl] = ACTIONS(12401), + [anon_sym_BSLASHfullcite] = ACTIONS(12401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12401), + [anon_sym_BSLASHcitealt] = ACTIONS(12401), + [anon_sym_BSLASHcitealp] = ACTIONS(12401), + [anon_sym_BSLASHcitetext] = ACTIONS(12401), + [anon_sym_BSLASHparencite] = ACTIONS(12401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHParencite] = ACTIONS(12401), + [anon_sym_BSLASHfootcite] = ACTIONS(12401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12401), + [anon_sym_BSLASHtextcite] = ACTIONS(12401), + [anon_sym_BSLASHTextcite] = ACTIONS(12401), + [anon_sym_BSLASHsmartcite] = ACTIONS(12401), + [anon_sym_BSLASHSmartcite] = ACTIONS(12401), + [anon_sym_BSLASHsupercite] = ACTIONS(12401), + [anon_sym_BSLASHautocite] = ACTIONS(12401), + [anon_sym_BSLASHAutocite] = ACTIONS(12401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHvolcite] = ACTIONS(12401), + [anon_sym_BSLASHVolcite] = ACTIONS(12401), + [anon_sym_BSLASHpvolcite] = ACTIONS(12401), + [anon_sym_BSLASHPvolcite] = ACTIONS(12401), + [anon_sym_BSLASHfvolcite] = ACTIONS(12401), + [anon_sym_BSLASHftvolcite] = ACTIONS(12401), + [anon_sym_BSLASHsvolcite] = ACTIONS(12401), + [anon_sym_BSLASHSvolcite] = ACTIONS(12401), + [anon_sym_BSLASHtvolcite] = ACTIONS(12401), + [anon_sym_BSLASHTvolcite] = ACTIONS(12401), + [anon_sym_BSLASHavolcite] = ACTIONS(12401), + [anon_sym_BSLASHAvolcite] = ACTIONS(12401), + [anon_sym_BSLASHnotecite] = ACTIONS(12401), + [anon_sym_BSLASHpnotecite] = ACTIONS(12401), + [anon_sym_BSLASHPnotecite] = ACTIONS(12401), + [anon_sym_BSLASHfnotecite] = ACTIONS(12401), + [anon_sym_BSLASHusepackage] = ACTIONS(12401), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12401), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12401), + [anon_sym_BSLASHinclude] = ACTIONS(12401), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12401), + [anon_sym_BSLASHinput] = ACTIONS(12401), + [anon_sym_BSLASHsubfile] = ACTIONS(12401), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12401), + [anon_sym_BSLASHbibliography] = ACTIONS(12401), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12401), + [anon_sym_BSLASHincludesvg] = ACTIONS(12401), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12401), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12401), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12401), + [anon_sym_BSLASHimport] = ACTIONS(12401), + [anon_sym_BSLASHsubimport] = ACTIONS(12401), + [anon_sym_BSLASHinputfrom] = ACTIONS(12401), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12401), + [anon_sym_BSLASHincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHlabel] = ACTIONS(12401), + [anon_sym_BSLASHref] = ACTIONS(12401), + [anon_sym_BSLASHvref] = ACTIONS(12401), + [anon_sym_BSLASHVref] = ACTIONS(12401), + [anon_sym_BSLASHautoref] = ACTIONS(12401), + [anon_sym_BSLASHpageref] = ACTIONS(12401), + [anon_sym_BSLASHcref] = ACTIONS(12401), + [anon_sym_BSLASHCref] = ACTIONS(12401), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnameCref] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHlabelcref] = ACTIONS(12401), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12401), + [anon_sym_BSLASHeqref] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange] = ACTIONS(12401), + [anon_sym_BSLASHCrefrange] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewlabel] = ACTIONS(12401), + [anon_sym_BSLASHnewcommand] = ACTIONS(12401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12401), + [anon_sym_BSLASHgls] = ACTIONS(12401), + [anon_sym_BSLASHGls] = ACTIONS(12401), + [anon_sym_BSLASHGLS] = ACTIONS(12401), + [anon_sym_BSLASHglspl] = ACTIONS(12401), + [anon_sym_BSLASHGlspl] = ACTIONS(12401), + [anon_sym_BSLASHGLSpl] = ACTIONS(12401), + [anon_sym_BSLASHglsdisp] = ACTIONS(12401), + [anon_sym_BSLASHglslink] = ACTIONS(12401), + [anon_sym_BSLASHglstext] = ACTIONS(12401), + [anon_sym_BSLASHGlstext] = ACTIONS(12401), + [anon_sym_BSLASHGLStext] = ACTIONS(12401), + [anon_sym_BSLASHglsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12401), + [anon_sym_BSLASHglsplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSplural] = ACTIONS(12401), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHglsname] = ACTIONS(12401), + [anon_sym_BSLASHGlsname] = ACTIONS(12401), + [anon_sym_BSLASHGLSname] = ACTIONS(12401), + [anon_sym_BSLASHglssymbol] = ACTIONS(12401), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12401), + [anon_sym_BSLASHglsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12401), + [anon_sym_BSLASHglsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12401), + [anon_sym_BSLASHglsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12401), + [anon_sym_BSLASHglsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12401), + [anon_sym_BSLASHglsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12401), + [anon_sym_BSLASHnewacronym] = ACTIONS(12401), + [anon_sym_BSLASHacrshort] = ACTIONS(12401), + [anon_sym_BSLASHAcrshort] = ACTIONS(12401), + [anon_sym_BSLASHACRshort] = ACTIONS(12401), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12401), + [anon_sym_BSLASHacrlong] = ACTIONS(12401), + [anon_sym_BSLASHAcrlong] = ACTIONS(12401), + [anon_sym_BSLASHACRlong] = ACTIONS(12401), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12401), + [anon_sym_BSLASHacrfull] = ACTIONS(12401), + [anon_sym_BSLASHAcrfull] = ACTIONS(12401), + [anon_sym_BSLASHACRfull] = ACTIONS(12401), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12401), + [anon_sym_BSLASHacs] = ACTIONS(12401), + [anon_sym_BSLASHAcs] = ACTIONS(12401), + [anon_sym_BSLASHacsp] = ACTIONS(12401), + [anon_sym_BSLASHAcsp] = ACTIONS(12401), + [anon_sym_BSLASHacl] = ACTIONS(12401), + [anon_sym_BSLASHAcl] = ACTIONS(12401), + [anon_sym_BSLASHaclp] = ACTIONS(12401), + [anon_sym_BSLASHAclp] = ACTIONS(12401), + [anon_sym_BSLASHacf] = ACTIONS(12401), + [anon_sym_BSLASHAcf] = ACTIONS(12401), + [anon_sym_BSLASHacfp] = ACTIONS(12401), + [anon_sym_BSLASHAcfp] = ACTIONS(12401), + [anon_sym_BSLASHac] = ACTIONS(12401), + [anon_sym_BSLASHAc] = ACTIONS(12401), + [anon_sym_BSLASHacp] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12401), + [anon_sym_BSLASHcolor] = ACTIONS(12401), + [anon_sym_BSLASHcolorbox] = ACTIONS(12401), + [anon_sym_BSLASHtextcolor] = ACTIONS(12401), + [anon_sym_BSLASHpagecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12401), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12401), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12401), + }, + [1035] = { + [sym_generic_command_name] = ACTIONS(12405), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12405), + [aux_sym_chapter_token1] = ACTIONS(12405), + [aux_sym_section_token1] = ACTIONS(12405), + [aux_sym_subsection_token1] = ACTIONS(12405), + [aux_sym_subsubsection_token1] = ACTIONS(12405), + [aux_sym_paragraph_token1] = ACTIONS(12405), + [aux_sym_subparagraph_token1] = ACTIONS(12405), + [anon_sym_BSLASHitem] = ACTIONS(12405), + [anon_sym_LBRACK] = ACTIONS(12403), + [anon_sym_LBRACE] = ACTIONS(12403), + [anon_sym_LPAREN] = ACTIONS(12403), + [anon_sym_COMMA] = ACTIONS(12403), + [anon_sym_EQ] = ACTIONS(12403), + [sym_word] = ACTIONS(12403), + [sym_param] = ACTIONS(12403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12403), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12403), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12403), + [anon_sym_DOLLAR] = ACTIONS(12405), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12403), + [anon_sym_BSLASHbegin] = ACTIONS(12405), + [anon_sym_BSLASHcaption] = ACTIONS(12405), + [anon_sym_BSLASHcite] = ACTIONS(12405), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCite] = ACTIONS(12405), + [anon_sym_BSLASHnocite] = ACTIONS(12405), + [anon_sym_BSLASHcitet] = ACTIONS(12405), + [anon_sym_BSLASHcitep] = ACTIONS(12405), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteauthor] = ACTIONS(12405), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12405), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitetitle] = ACTIONS(12405), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteyear] = ACTIONS(12405), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitedate] = ACTIONS(12405), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteurl] = ACTIONS(12405), + [anon_sym_BSLASHfullcite] = ACTIONS(12405), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12405), + [anon_sym_BSLASHcitealt] = ACTIONS(12405), + [anon_sym_BSLASHcitealp] = ACTIONS(12405), + [anon_sym_BSLASHcitetext] = ACTIONS(12405), + [anon_sym_BSLASHparencite] = ACTIONS(12405), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHParencite] = ACTIONS(12405), + [anon_sym_BSLASHfootcite] = ACTIONS(12405), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12405), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12405), + [anon_sym_BSLASHtextcite] = ACTIONS(12405), + [anon_sym_BSLASHTextcite] = ACTIONS(12405), + [anon_sym_BSLASHsmartcite] = ACTIONS(12405), + [anon_sym_BSLASHSmartcite] = ACTIONS(12405), + [anon_sym_BSLASHsupercite] = ACTIONS(12405), + [anon_sym_BSLASHautocite] = ACTIONS(12405), + [anon_sym_BSLASHAutocite] = ACTIONS(12405), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHvolcite] = ACTIONS(12405), + [anon_sym_BSLASHVolcite] = ACTIONS(12405), + [anon_sym_BSLASHpvolcite] = ACTIONS(12405), + [anon_sym_BSLASHPvolcite] = ACTIONS(12405), + [anon_sym_BSLASHfvolcite] = ACTIONS(12405), + [anon_sym_BSLASHftvolcite] = ACTIONS(12405), + [anon_sym_BSLASHsvolcite] = ACTIONS(12405), + [anon_sym_BSLASHSvolcite] = ACTIONS(12405), + [anon_sym_BSLASHtvolcite] = ACTIONS(12405), + [anon_sym_BSLASHTvolcite] = ACTIONS(12405), + [anon_sym_BSLASHavolcite] = ACTIONS(12405), + [anon_sym_BSLASHAvolcite] = ACTIONS(12405), + [anon_sym_BSLASHnotecite] = ACTIONS(12405), + [anon_sym_BSLASHpnotecite] = ACTIONS(12405), + [anon_sym_BSLASHPnotecite] = ACTIONS(12405), + [anon_sym_BSLASHfnotecite] = ACTIONS(12405), + [anon_sym_BSLASHusepackage] = ACTIONS(12405), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12405), + [anon_sym_BSLASHinclude] = ACTIONS(12405), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12405), + [anon_sym_BSLASHinput] = ACTIONS(12405), + [anon_sym_BSLASHsubfile] = ACTIONS(12405), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12405), + [anon_sym_BSLASHbibliography] = ACTIONS(12405), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12405), + [anon_sym_BSLASHincludesvg] = ACTIONS(12405), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12405), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12405), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12405), + [anon_sym_BSLASHimport] = ACTIONS(12405), + [anon_sym_BSLASHsubimport] = ACTIONS(12405), + [anon_sym_BSLASHinputfrom] = ACTIONS(12405), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12405), + [anon_sym_BSLASHincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHlabel] = ACTIONS(12405), + [anon_sym_BSLASHref] = ACTIONS(12405), + [anon_sym_BSLASHvref] = ACTIONS(12405), + [anon_sym_BSLASHVref] = ACTIONS(12405), + [anon_sym_BSLASHautoref] = ACTIONS(12405), + [anon_sym_BSLASHpageref] = ACTIONS(12405), + [anon_sym_BSLASHcref] = ACTIONS(12405), + [anon_sym_BSLASHCref] = ACTIONS(12405), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnameCref] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHlabelcref] = ACTIONS(12405), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12405), + [anon_sym_BSLASHeqref] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange] = ACTIONS(12405), + [anon_sym_BSLASHCrefrange] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewlabel] = ACTIONS(12405), + [anon_sym_BSLASHnewcommand] = ACTIONS(12405), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12405), + [anon_sym_BSLASHgls] = ACTIONS(12405), + [anon_sym_BSLASHGls] = ACTIONS(12405), + [anon_sym_BSLASHGLS] = ACTIONS(12405), + [anon_sym_BSLASHglspl] = ACTIONS(12405), + [anon_sym_BSLASHGlspl] = ACTIONS(12405), + [anon_sym_BSLASHGLSpl] = ACTIONS(12405), + [anon_sym_BSLASHglsdisp] = ACTIONS(12405), + [anon_sym_BSLASHglslink] = ACTIONS(12405), + [anon_sym_BSLASHglstext] = ACTIONS(12405), + [anon_sym_BSLASHGlstext] = ACTIONS(12405), + [anon_sym_BSLASHGLStext] = ACTIONS(12405), + [anon_sym_BSLASHglsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12405), + [anon_sym_BSLASHglsplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSplural] = ACTIONS(12405), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHglsname] = ACTIONS(12405), + [anon_sym_BSLASHGlsname] = ACTIONS(12405), + [anon_sym_BSLASHGLSname] = ACTIONS(12405), + [anon_sym_BSLASHglssymbol] = ACTIONS(12405), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12405), + [anon_sym_BSLASHglsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12405), + [anon_sym_BSLASHglsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12405), + [anon_sym_BSLASHglsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12405), + [anon_sym_BSLASHglsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12405), + [anon_sym_BSLASHglsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12405), + [anon_sym_BSLASHnewacronym] = ACTIONS(12405), + [anon_sym_BSLASHacrshort] = ACTIONS(12405), + [anon_sym_BSLASHAcrshort] = ACTIONS(12405), + [anon_sym_BSLASHACRshort] = ACTIONS(12405), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12405), + [anon_sym_BSLASHacrlong] = ACTIONS(12405), + [anon_sym_BSLASHAcrlong] = ACTIONS(12405), + [anon_sym_BSLASHACRlong] = ACTIONS(12405), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12405), + [anon_sym_BSLASHacrfull] = ACTIONS(12405), + [anon_sym_BSLASHAcrfull] = ACTIONS(12405), + [anon_sym_BSLASHACRfull] = ACTIONS(12405), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12405), + [anon_sym_BSLASHacs] = ACTIONS(12405), + [anon_sym_BSLASHAcs] = ACTIONS(12405), + [anon_sym_BSLASHacsp] = ACTIONS(12405), + [anon_sym_BSLASHAcsp] = ACTIONS(12405), + [anon_sym_BSLASHacl] = ACTIONS(12405), + [anon_sym_BSLASHAcl] = ACTIONS(12405), + [anon_sym_BSLASHaclp] = ACTIONS(12405), + [anon_sym_BSLASHAclp] = ACTIONS(12405), + [anon_sym_BSLASHacf] = ACTIONS(12405), + [anon_sym_BSLASHAcf] = ACTIONS(12405), + [anon_sym_BSLASHacfp] = ACTIONS(12405), + [anon_sym_BSLASHAcfp] = ACTIONS(12405), + [anon_sym_BSLASHac] = ACTIONS(12405), + [anon_sym_BSLASHAc] = ACTIONS(12405), + [anon_sym_BSLASHacp] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12405), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12405), + [anon_sym_BSLASHcolor] = ACTIONS(12405), + [anon_sym_BSLASHcolorbox] = ACTIONS(12405), + [anon_sym_BSLASHtextcolor] = ACTIONS(12405), + [anon_sym_BSLASHpagecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12405), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12405), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12405), + }, + [1036] = { + [sym_generic_command_name] = ACTIONS(12409), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12409), + [aux_sym_chapter_token1] = ACTIONS(12409), + [aux_sym_section_token1] = ACTIONS(12409), + [aux_sym_subsection_token1] = ACTIONS(12409), + [aux_sym_subsubsection_token1] = ACTIONS(12409), + [aux_sym_paragraph_token1] = ACTIONS(12409), + [aux_sym_subparagraph_token1] = ACTIONS(12409), + [anon_sym_BSLASHitem] = ACTIONS(12409), + [anon_sym_LBRACK] = ACTIONS(12407), + [anon_sym_LBRACE] = ACTIONS(12407), + [anon_sym_LPAREN] = ACTIONS(12407), + [anon_sym_COMMA] = ACTIONS(12407), + [anon_sym_EQ] = ACTIONS(12407), + [sym_word] = ACTIONS(12407), + [sym_param] = ACTIONS(12407), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12407), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12407), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12407), + [anon_sym_DOLLAR] = ACTIONS(12409), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12407), + [anon_sym_BSLASHbegin] = ACTIONS(12409), + [anon_sym_BSLASHcaption] = ACTIONS(12409), + [anon_sym_BSLASHcite] = ACTIONS(12409), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCite] = ACTIONS(12409), + [anon_sym_BSLASHnocite] = ACTIONS(12409), + [anon_sym_BSLASHcitet] = ACTIONS(12409), + [anon_sym_BSLASHcitep] = ACTIONS(12409), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteauthor] = ACTIONS(12409), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12409), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitetitle] = ACTIONS(12409), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteyear] = ACTIONS(12409), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitedate] = ACTIONS(12409), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteurl] = ACTIONS(12409), + [anon_sym_BSLASHfullcite] = ACTIONS(12409), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12409), + [anon_sym_BSLASHcitealt] = ACTIONS(12409), + [anon_sym_BSLASHcitealp] = ACTIONS(12409), + [anon_sym_BSLASHcitetext] = ACTIONS(12409), + [anon_sym_BSLASHparencite] = ACTIONS(12409), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHParencite] = ACTIONS(12409), + [anon_sym_BSLASHfootcite] = ACTIONS(12409), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12409), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12409), + [anon_sym_BSLASHtextcite] = ACTIONS(12409), + [anon_sym_BSLASHTextcite] = ACTIONS(12409), + [anon_sym_BSLASHsmartcite] = ACTIONS(12409), + [anon_sym_BSLASHSmartcite] = ACTIONS(12409), + [anon_sym_BSLASHsupercite] = ACTIONS(12409), + [anon_sym_BSLASHautocite] = ACTIONS(12409), + [anon_sym_BSLASHAutocite] = ACTIONS(12409), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHvolcite] = ACTIONS(12409), + [anon_sym_BSLASHVolcite] = ACTIONS(12409), + [anon_sym_BSLASHpvolcite] = ACTIONS(12409), + [anon_sym_BSLASHPvolcite] = ACTIONS(12409), + [anon_sym_BSLASHfvolcite] = ACTIONS(12409), + [anon_sym_BSLASHftvolcite] = ACTIONS(12409), + [anon_sym_BSLASHsvolcite] = ACTIONS(12409), + [anon_sym_BSLASHSvolcite] = ACTIONS(12409), + [anon_sym_BSLASHtvolcite] = ACTIONS(12409), + [anon_sym_BSLASHTvolcite] = ACTIONS(12409), + [anon_sym_BSLASHavolcite] = ACTIONS(12409), + [anon_sym_BSLASHAvolcite] = ACTIONS(12409), + [anon_sym_BSLASHnotecite] = ACTIONS(12409), + [anon_sym_BSLASHpnotecite] = ACTIONS(12409), + [anon_sym_BSLASHPnotecite] = ACTIONS(12409), + [anon_sym_BSLASHfnotecite] = ACTIONS(12409), + [anon_sym_BSLASHusepackage] = ACTIONS(12409), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12409), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12409), + [anon_sym_BSLASHinclude] = ACTIONS(12409), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12409), + [anon_sym_BSLASHinput] = ACTIONS(12409), + [anon_sym_BSLASHsubfile] = ACTIONS(12409), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12409), + [anon_sym_BSLASHbibliography] = ACTIONS(12409), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12409), + [anon_sym_BSLASHincludesvg] = ACTIONS(12409), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12409), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12409), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12409), + [anon_sym_BSLASHimport] = ACTIONS(12409), + [anon_sym_BSLASHsubimport] = ACTIONS(12409), + [anon_sym_BSLASHinputfrom] = ACTIONS(12409), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12409), + [anon_sym_BSLASHincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHlabel] = ACTIONS(12409), + [anon_sym_BSLASHref] = ACTIONS(12409), + [anon_sym_BSLASHvref] = ACTIONS(12409), + [anon_sym_BSLASHVref] = ACTIONS(12409), + [anon_sym_BSLASHautoref] = ACTIONS(12409), + [anon_sym_BSLASHpageref] = ACTIONS(12409), + [anon_sym_BSLASHcref] = ACTIONS(12409), + [anon_sym_BSLASHCref] = ACTIONS(12409), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnameCref] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHlabelcref] = ACTIONS(12409), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12409), + [anon_sym_BSLASHeqref] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange] = ACTIONS(12409), + [anon_sym_BSLASHCrefrange] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewlabel] = ACTIONS(12409), + [anon_sym_BSLASHnewcommand] = ACTIONS(12409), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12409), + [anon_sym_BSLASHgls] = ACTIONS(12409), + [anon_sym_BSLASHGls] = ACTIONS(12409), + [anon_sym_BSLASHGLS] = ACTIONS(12409), + [anon_sym_BSLASHglspl] = ACTIONS(12409), + [anon_sym_BSLASHGlspl] = ACTIONS(12409), + [anon_sym_BSLASHGLSpl] = ACTIONS(12409), + [anon_sym_BSLASHglsdisp] = ACTIONS(12409), + [anon_sym_BSLASHglslink] = ACTIONS(12409), + [anon_sym_BSLASHglstext] = ACTIONS(12409), + [anon_sym_BSLASHGlstext] = ACTIONS(12409), + [anon_sym_BSLASHGLStext] = ACTIONS(12409), + [anon_sym_BSLASHglsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12409), + [anon_sym_BSLASHglsplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSplural] = ACTIONS(12409), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHglsname] = ACTIONS(12409), + [anon_sym_BSLASHGlsname] = ACTIONS(12409), + [anon_sym_BSLASHGLSname] = ACTIONS(12409), + [anon_sym_BSLASHglssymbol] = ACTIONS(12409), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12409), + [anon_sym_BSLASHglsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12409), + [anon_sym_BSLASHglsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12409), + [anon_sym_BSLASHglsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12409), + [anon_sym_BSLASHglsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12409), + [anon_sym_BSLASHglsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12409), + [anon_sym_BSLASHnewacronym] = ACTIONS(12409), + [anon_sym_BSLASHacrshort] = ACTIONS(12409), + [anon_sym_BSLASHAcrshort] = ACTIONS(12409), + [anon_sym_BSLASHACRshort] = ACTIONS(12409), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12409), + [anon_sym_BSLASHacrlong] = ACTIONS(12409), + [anon_sym_BSLASHAcrlong] = ACTIONS(12409), + [anon_sym_BSLASHACRlong] = ACTIONS(12409), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12409), + [anon_sym_BSLASHacrfull] = ACTIONS(12409), + [anon_sym_BSLASHAcrfull] = ACTIONS(12409), + [anon_sym_BSLASHACRfull] = ACTIONS(12409), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12409), + [anon_sym_BSLASHacs] = ACTIONS(12409), + [anon_sym_BSLASHAcs] = ACTIONS(12409), + [anon_sym_BSLASHacsp] = ACTIONS(12409), + [anon_sym_BSLASHAcsp] = ACTIONS(12409), + [anon_sym_BSLASHacl] = ACTIONS(12409), + [anon_sym_BSLASHAcl] = ACTIONS(12409), + [anon_sym_BSLASHaclp] = ACTIONS(12409), + [anon_sym_BSLASHAclp] = ACTIONS(12409), + [anon_sym_BSLASHacf] = ACTIONS(12409), + [anon_sym_BSLASHAcf] = ACTIONS(12409), + [anon_sym_BSLASHacfp] = ACTIONS(12409), + [anon_sym_BSLASHAcfp] = ACTIONS(12409), + [anon_sym_BSLASHac] = ACTIONS(12409), + [anon_sym_BSLASHAc] = ACTIONS(12409), + [anon_sym_BSLASHacp] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12409), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12409), + [anon_sym_BSLASHcolor] = ACTIONS(12409), + [anon_sym_BSLASHcolorbox] = ACTIONS(12409), + [anon_sym_BSLASHtextcolor] = ACTIONS(12409), + [anon_sym_BSLASHpagecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12409), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12409), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12409), + }, + [1037] = { + [sym_generic_command_name] = ACTIONS(12227), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12227), + [aux_sym_section_token1] = ACTIONS(12227), + [aux_sym_subsection_token1] = ACTIONS(12227), + [aux_sym_subsubsection_token1] = ACTIONS(12227), + [aux_sym_paragraph_token1] = ACTIONS(12227), + [aux_sym_subparagraph_token1] = ACTIONS(12227), + [anon_sym_BSLASHitem] = ACTIONS(12227), + [anon_sym_LBRACK] = ACTIONS(12225), + [anon_sym_RBRACK] = ACTIONS(12225), + [anon_sym_LBRACE] = ACTIONS(12225), + [anon_sym_RBRACE] = ACTIONS(12225), + [anon_sym_LPAREN] = ACTIONS(12225), + [anon_sym_COMMA] = ACTIONS(12225), + [anon_sym_EQ] = ACTIONS(12225), + [sym_word] = ACTIONS(12225), + [sym_param] = ACTIONS(12225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12225), + [anon_sym_DOLLAR] = ACTIONS(12227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12225), + [anon_sym_BSLASHbegin] = ACTIONS(12227), + [anon_sym_BSLASHcaption] = ACTIONS(12227), + [anon_sym_BSLASHcite] = ACTIONS(12227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCite] = ACTIONS(12227), + [anon_sym_BSLASHnocite] = ACTIONS(12227), + [anon_sym_BSLASHcitet] = ACTIONS(12227), + [anon_sym_BSLASHcitep] = ACTIONS(12227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteauthor] = ACTIONS(12227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitetitle] = ACTIONS(12227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteyear] = ACTIONS(12227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitedate] = ACTIONS(12227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteurl] = ACTIONS(12227), + [anon_sym_BSLASHfullcite] = ACTIONS(12227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12227), + [anon_sym_BSLASHcitealt] = ACTIONS(12227), + [anon_sym_BSLASHcitealp] = ACTIONS(12227), + [anon_sym_BSLASHcitetext] = ACTIONS(12227), + [anon_sym_BSLASHparencite] = ACTIONS(12227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHParencite] = ACTIONS(12227), + [anon_sym_BSLASHfootcite] = ACTIONS(12227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12227), + [anon_sym_BSLASHtextcite] = ACTIONS(12227), + [anon_sym_BSLASHTextcite] = ACTIONS(12227), + [anon_sym_BSLASHsmartcite] = ACTIONS(12227), + [anon_sym_BSLASHSmartcite] = ACTIONS(12227), + [anon_sym_BSLASHsupercite] = ACTIONS(12227), + [anon_sym_BSLASHautocite] = ACTIONS(12227), + [anon_sym_BSLASHAutocite] = ACTIONS(12227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHvolcite] = ACTIONS(12227), + [anon_sym_BSLASHVolcite] = ACTIONS(12227), + [anon_sym_BSLASHpvolcite] = ACTIONS(12227), + [anon_sym_BSLASHPvolcite] = ACTIONS(12227), + [anon_sym_BSLASHfvolcite] = ACTIONS(12227), + [anon_sym_BSLASHftvolcite] = ACTIONS(12227), + [anon_sym_BSLASHsvolcite] = ACTIONS(12227), + [anon_sym_BSLASHSvolcite] = ACTIONS(12227), + [anon_sym_BSLASHtvolcite] = ACTIONS(12227), + [anon_sym_BSLASHTvolcite] = ACTIONS(12227), + [anon_sym_BSLASHavolcite] = ACTIONS(12227), + [anon_sym_BSLASHAvolcite] = ACTIONS(12227), + [anon_sym_BSLASHnotecite] = ACTIONS(12227), + [anon_sym_BSLASHpnotecite] = ACTIONS(12227), + [anon_sym_BSLASHPnotecite] = ACTIONS(12227), + [anon_sym_BSLASHfnotecite] = ACTIONS(12227), + [anon_sym_BSLASHusepackage] = ACTIONS(12227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12227), + [anon_sym_BSLASHinclude] = ACTIONS(12227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12227), + [anon_sym_BSLASHinput] = ACTIONS(12227), + [anon_sym_BSLASHsubfile] = ACTIONS(12227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12227), + [anon_sym_BSLASHbibliography] = ACTIONS(12227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12227), + [anon_sym_BSLASHincludesvg] = ACTIONS(12227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12227), + [anon_sym_BSLASHimport] = ACTIONS(12227), + [anon_sym_BSLASHsubimport] = ACTIONS(12227), + [anon_sym_BSLASHinputfrom] = ACTIONS(12227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12227), + [anon_sym_BSLASHincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHlabel] = ACTIONS(12227), + [anon_sym_BSLASHref] = ACTIONS(12227), + [anon_sym_BSLASHvref] = ACTIONS(12227), + [anon_sym_BSLASHVref] = ACTIONS(12227), + [anon_sym_BSLASHautoref] = ACTIONS(12227), + [anon_sym_BSLASHpageref] = ACTIONS(12227), + [anon_sym_BSLASHcref] = ACTIONS(12227), + [anon_sym_BSLASHCref] = ACTIONS(12227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnameCref] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHlabelcref] = ACTIONS(12227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12227), + [anon_sym_BSLASHeqref] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange] = ACTIONS(12227), + [anon_sym_BSLASHCrefrange] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewlabel] = ACTIONS(12227), + [anon_sym_BSLASHnewcommand] = ACTIONS(12227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12227), + [anon_sym_BSLASHgls] = ACTIONS(12227), + [anon_sym_BSLASHGls] = ACTIONS(12227), + [anon_sym_BSLASHGLS] = ACTIONS(12227), + [anon_sym_BSLASHglspl] = ACTIONS(12227), + [anon_sym_BSLASHGlspl] = ACTIONS(12227), + [anon_sym_BSLASHGLSpl] = ACTIONS(12227), + [anon_sym_BSLASHglsdisp] = ACTIONS(12227), + [anon_sym_BSLASHglslink] = ACTIONS(12227), + [anon_sym_BSLASHglstext] = ACTIONS(12227), + [anon_sym_BSLASHGlstext] = ACTIONS(12227), + [anon_sym_BSLASHGLStext] = ACTIONS(12227), + [anon_sym_BSLASHglsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12227), + [anon_sym_BSLASHglsplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSplural] = ACTIONS(12227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHglsname] = ACTIONS(12227), + [anon_sym_BSLASHGlsname] = ACTIONS(12227), + [anon_sym_BSLASHGLSname] = ACTIONS(12227), + [anon_sym_BSLASHglssymbol] = ACTIONS(12227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12227), + [anon_sym_BSLASHglsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12227), + [anon_sym_BSLASHglsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12227), + [anon_sym_BSLASHglsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12227), + [anon_sym_BSLASHglsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12227), + [anon_sym_BSLASHglsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12227), + [anon_sym_BSLASHnewacronym] = ACTIONS(12227), + [anon_sym_BSLASHacrshort] = ACTIONS(12227), + [anon_sym_BSLASHAcrshort] = ACTIONS(12227), + [anon_sym_BSLASHACRshort] = ACTIONS(12227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12227), + [anon_sym_BSLASHacrlong] = ACTIONS(12227), + [anon_sym_BSLASHAcrlong] = ACTIONS(12227), + [anon_sym_BSLASHACRlong] = ACTIONS(12227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12227), + [anon_sym_BSLASHacrfull] = ACTIONS(12227), + [anon_sym_BSLASHAcrfull] = ACTIONS(12227), + [anon_sym_BSLASHACRfull] = ACTIONS(12227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12227), + [anon_sym_BSLASHacs] = ACTIONS(12227), + [anon_sym_BSLASHAcs] = ACTIONS(12227), + [anon_sym_BSLASHacsp] = ACTIONS(12227), + [anon_sym_BSLASHAcsp] = ACTIONS(12227), + [anon_sym_BSLASHacl] = ACTIONS(12227), + [anon_sym_BSLASHAcl] = ACTIONS(12227), + [anon_sym_BSLASHaclp] = ACTIONS(12227), + [anon_sym_BSLASHAclp] = ACTIONS(12227), + [anon_sym_BSLASHacf] = ACTIONS(12227), + [anon_sym_BSLASHAcf] = ACTIONS(12227), + [anon_sym_BSLASHacfp] = ACTIONS(12227), + [anon_sym_BSLASHAcfp] = ACTIONS(12227), + [anon_sym_BSLASHac] = ACTIONS(12227), + [anon_sym_BSLASHAc] = ACTIONS(12227), + [anon_sym_BSLASHacp] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12227), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12227), + [anon_sym_BSLASHcolor] = ACTIONS(12227), + [anon_sym_BSLASHcolorbox] = ACTIONS(12227), + [anon_sym_BSLASHtextcolor] = ACTIONS(12227), + [anon_sym_BSLASHpagecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12227), + }, + [1038] = { + [sym_generic_command_name] = ACTIONS(12413), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12413), + [aux_sym_chapter_token1] = ACTIONS(12413), + [aux_sym_section_token1] = ACTIONS(12413), + [aux_sym_subsection_token1] = ACTIONS(12413), + [aux_sym_subsubsection_token1] = ACTIONS(12413), + [aux_sym_paragraph_token1] = ACTIONS(12413), + [aux_sym_subparagraph_token1] = ACTIONS(12413), + [anon_sym_BSLASHitem] = ACTIONS(12413), + [anon_sym_LBRACK] = ACTIONS(12411), + [anon_sym_LBRACE] = ACTIONS(12411), + [anon_sym_LPAREN] = ACTIONS(12411), + [anon_sym_COMMA] = ACTIONS(12411), + [anon_sym_EQ] = ACTIONS(12411), + [sym_word] = ACTIONS(12411), + [sym_param] = ACTIONS(12411), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12411), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12411), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12411), + [anon_sym_DOLLAR] = ACTIONS(12413), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12411), + [anon_sym_BSLASHbegin] = ACTIONS(12413), + [anon_sym_BSLASHcaption] = ACTIONS(12413), + [anon_sym_BSLASHcite] = ACTIONS(12413), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCite] = ACTIONS(12413), + [anon_sym_BSLASHnocite] = ACTIONS(12413), + [anon_sym_BSLASHcitet] = ACTIONS(12413), + [anon_sym_BSLASHcitep] = ACTIONS(12413), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteauthor] = ACTIONS(12413), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12413), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitetitle] = ACTIONS(12413), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteyear] = ACTIONS(12413), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitedate] = ACTIONS(12413), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteurl] = ACTIONS(12413), + [anon_sym_BSLASHfullcite] = ACTIONS(12413), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12413), + [anon_sym_BSLASHcitealt] = ACTIONS(12413), + [anon_sym_BSLASHcitealp] = ACTIONS(12413), + [anon_sym_BSLASHcitetext] = ACTIONS(12413), + [anon_sym_BSLASHparencite] = ACTIONS(12413), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHParencite] = ACTIONS(12413), + [anon_sym_BSLASHfootcite] = ACTIONS(12413), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12413), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12413), + [anon_sym_BSLASHtextcite] = ACTIONS(12413), + [anon_sym_BSLASHTextcite] = ACTIONS(12413), + [anon_sym_BSLASHsmartcite] = ACTIONS(12413), + [anon_sym_BSLASHSmartcite] = ACTIONS(12413), + [anon_sym_BSLASHsupercite] = ACTIONS(12413), + [anon_sym_BSLASHautocite] = ACTIONS(12413), + [anon_sym_BSLASHAutocite] = ACTIONS(12413), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHvolcite] = ACTIONS(12413), + [anon_sym_BSLASHVolcite] = ACTIONS(12413), + [anon_sym_BSLASHpvolcite] = ACTIONS(12413), + [anon_sym_BSLASHPvolcite] = ACTIONS(12413), + [anon_sym_BSLASHfvolcite] = ACTIONS(12413), + [anon_sym_BSLASHftvolcite] = ACTIONS(12413), + [anon_sym_BSLASHsvolcite] = ACTIONS(12413), + [anon_sym_BSLASHSvolcite] = ACTIONS(12413), + [anon_sym_BSLASHtvolcite] = ACTIONS(12413), + [anon_sym_BSLASHTvolcite] = ACTIONS(12413), + [anon_sym_BSLASHavolcite] = ACTIONS(12413), + [anon_sym_BSLASHAvolcite] = ACTIONS(12413), + [anon_sym_BSLASHnotecite] = ACTIONS(12413), + [anon_sym_BSLASHpnotecite] = ACTIONS(12413), + [anon_sym_BSLASHPnotecite] = ACTIONS(12413), + [anon_sym_BSLASHfnotecite] = ACTIONS(12413), + [anon_sym_BSLASHusepackage] = ACTIONS(12413), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12413), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12413), + [anon_sym_BSLASHinclude] = ACTIONS(12413), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12413), + [anon_sym_BSLASHinput] = ACTIONS(12413), + [anon_sym_BSLASHsubfile] = ACTIONS(12413), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12413), + [anon_sym_BSLASHbibliography] = ACTIONS(12413), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12413), + [anon_sym_BSLASHincludesvg] = ACTIONS(12413), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12413), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12413), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12413), + [anon_sym_BSLASHimport] = ACTIONS(12413), + [anon_sym_BSLASHsubimport] = ACTIONS(12413), + [anon_sym_BSLASHinputfrom] = ACTIONS(12413), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12413), + [anon_sym_BSLASHincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHlabel] = ACTIONS(12413), + [anon_sym_BSLASHref] = ACTIONS(12413), + [anon_sym_BSLASHvref] = ACTIONS(12413), + [anon_sym_BSLASHVref] = ACTIONS(12413), + [anon_sym_BSLASHautoref] = ACTIONS(12413), + [anon_sym_BSLASHpageref] = ACTIONS(12413), + [anon_sym_BSLASHcref] = ACTIONS(12413), + [anon_sym_BSLASHCref] = ACTIONS(12413), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnameCref] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHlabelcref] = ACTIONS(12413), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12413), + [anon_sym_BSLASHeqref] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange] = ACTIONS(12413), + [anon_sym_BSLASHCrefrange] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewlabel] = ACTIONS(12413), + [anon_sym_BSLASHnewcommand] = ACTIONS(12413), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12413), + [anon_sym_BSLASHgls] = ACTIONS(12413), + [anon_sym_BSLASHGls] = ACTIONS(12413), + [anon_sym_BSLASHGLS] = ACTIONS(12413), + [anon_sym_BSLASHglspl] = ACTIONS(12413), + [anon_sym_BSLASHGlspl] = ACTIONS(12413), + [anon_sym_BSLASHGLSpl] = ACTIONS(12413), + [anon_sym_BSLASHglsdisp] = ACTIONS(12413), + [anon_sym_BSLASHglslink] = ACTIONS(12413), + [anon_sym_BSLASHglstext] = ACTIONS(12413), + [anon_sym_BSLASHGlstext] = ACTIONS(12413), + [anon_sym_BSLASHGLStext] = ACTIONS(12413), + [anon_sym_BSLASHglsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12413), + [anon_sym_BSLASHglsplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSplural] = ACTIONS(12413), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHglsname] = ACTIONS(12413), + [anon_sym_BSLASHGlsname] = ACTIONS(12413), + [anon_sym_BSLASHGLSname] = ACTIONS(12413), + [anon_sym_BSLASHglssymbol] = ACTIONS(12413), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12413), + [anon_sym_BSLASHglsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12413), + [anon_sym_BSLASHglsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12413), + [anon_sym_BSLASHglsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12413), + [anon_sym_BSLASHglsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12413), + [anon_sym_BSLASHglsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12413), + [anon_sym_BSLASHnewacronym] = ACTIONS(12413), + [anon_sym_BSLASHacrshort] = ACTIONS(12413), + [anon_sym_BSLASHAcrshort] = ACTIONS(12413), + [anon_sym_BSLASHACRshort] = ACTIONS(12413), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12413), + [anon_sym_BSLASHacrlong] = ACTIONS(12413), + [anon_sym_BSLASHAcrlong] = ACTIONS(12413), + [anon_sym_BSLASHACRlong] = ACTIONS(12413), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12413), + [anon_sym_BSLASHacrfull] = ACTIONS(12413), + [anon_sym_BSLASHAcrfull] = ACTIONS(12413), + [anon_sym_BSLASHACRfull] = ACTIONS(12413), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12413), + [anon_sym_BSLASHacs] = ACTIONS(12413), + [anon_sym_BSLASHAcs] = ACTIONS(12413), + [anon_sym_BSLASHacsp] = ACTIONS(12413), + [anon_sym_BSLASHAcsp] = ACTIONS(12413), + [anon_sym_BSLASHacl] = ACTIONS(12413), + [anon_sym_BSLASHAcl] = ACTIONS(12413), + [anon_sym_BSLASHaclp] = ACTIONS(12413), + [anon_sym_BSLASHAclp] = ACTIONS(12413), + [anon_sym_BSLASHacf] = ACTIONS(12413), + [anon_sym_BSLASHAcf] = ACTIONS(12413), + [anon_sym_BSLASHacfp] = ACTIONS(12413), + [anon_sym_BSLASHAcfp] = ACTIONS(12413), + [anon_sym_BSLASHac] = ACTIONS(12413), + [anon_sym_BSLASHAc] = ACTIONS(12413), + [anon_sym_BSLASHacp] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12413), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12413), + [anon_sym_BSLASHcolor] = ACTIONS(12413), + [anon_sym_BSLASHcolorbox] = ACTIONS(12413), + [anon_sym_BSLASHtextcolor] = ACTIONS(12413), + [anon_sym_BSLASHpagecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12413), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12413), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12413), + }, + [1039] = { + [sym_generic_command_name] = ACTIONS(12441), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12441), + [aux_sym_section_token1] = ACTIONS(12441), + [aux_sym_subsection_token1] = ACTIONS(12441), + [aux_sym_subsubsection_token1] = ACTIONS(12441), + [aux_sym_paragraph_token1] = ACTIONS(12441), + [aux_sym_subparagraph_token1] = ACTIONS(12441), + [anon_sym_BSLASHitem] = ACTIONS(12441), + [anon_sym_LBRACK] = ACTIONS(12439), + [anon_sym_RBRACK] = ACTIONS(12439), + [anon_sym_LBRACE] = ACTIONS(12439), + [anon_sym_RBRACE] = ACTIONS(12439), + [anon_sym_LPAREN] = ACTIONS(12439), + [anon_sym_COMMA] = ACTIONS(12439), + [anon_sym_EQ] = ACTIONS(12439), + [sym_word] = ACTIONS(12439), + [sym_param] = ACTIONS(12439), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12439), + [anon_sym_DOLLAR] = ACTIONS(12441), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12439), + [anon_sym_BSLASHbegin] = ACTIONS(12441), + [anon_sym_BSLASHcaption] = ACTIONS(12441), + [anon_sym_BSLASHcite] = ACTIONS(12441), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCite] = ACTIONS(12441), + [anon_sym_BSLASHnocite] = ACTIONS(12441), + [anon_sym_BSLASHcitet] = ACTIONS(12441), + [anon_sym_BSLASHcitep] = ACTIONS(12441), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteauthor] = ACTIONS(12441), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12441), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitetitle] = ACTIONS(12441), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteyear] = ACTIONS(12441), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitedate] = ACTIONS(12441), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteurl] = ACTIONS(12441), + [anon_sym_BSLASHfullcite] = ACTIONS(12441), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12441), + [anon_sym_BSLASHcitealt] = ACTIONS(12441), + [anon_sym_BSLASHcitealp] = ACTIONS(12441), + [anon_sym_BSLASHcitetext] = ACTIONS(12441), + [anon_sym_BSLASHparencite] = ACTIONS(12441), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHParencite] = ACTIONS(12441), + [anon_sym_BSLASHfootcite] = ACTIONS(12441), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12441), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12441), + [anon_sym_BSLASHtextcite] = ACTIONS(12441), + [anon_sym_BSLASHTextcite] = ACTIONS(12441), + [anon_sym_BSLASHsmartcite] = ACTIONS(12441), + [anon_sym_BSLASHSmartcite] = ACTIONS(12441), + [anon_sym_BSLASHsupercite] = ACTIONS(12441), + [anon_sym_BSLASHautocite] = ACTIONS(12441), + [anon_sym_BSLASHAutocite] = ACTIONS(12441), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHvolcite] = ACTIONS(12441), + [anon_sym_BSLASHVolcite] = ACTIONS(12441), + [anon_sym_BSLASHpvolcite] = ACTIONS(12441), + [anon_sym_BSLASHPvolcite] = ACTIONS(12441), + [anon_sym_BSLASHfvolcite] = ACTIONS(12441), + [anon_sym_BSLASHftvolcite] = ACTIONS(12441), + [anon_sym_BSLASHsvolcite] = ACTIONS(12441), + [anon_sym_BSLASHSvolcite] = ACTIONS(12441), + [anon_sym_BSLASHtvolcite] = ACTIONS(12441), + [anon_sym_BSLASHTvolcite] = ACTIONS(12441), + [anon_sym_BSLASHavolcite] = ACTIONS(12441), + [anon_sym_BSLASHAvolcite] = ACTIONS(12441), + [anon_sym_BSLASHnotecite] = ACTIONS(12441), + [anon_sym_BSLASHpnotecite] = ACTIONS(12441), + [anon_sym_BSLASHPnotecite] = ACTIONS(12441), + [anon_sym_BSLASHfnotecite] = ACTIONS(12441), + [anon_sym_BSLASHusepackage] = ACTIONS(12441), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12441), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12441), + [anon_sym_BSLASHinclude] = ACTIONS(12441), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12441), + [anon_sym_BSLASHinput] = ACTIONS(12441), + [anon_sym_BSLASHsubfile] = ACTIONS(12441), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12441), + [anon_sym_BSLASHbibliography] = ACTIONS(12441), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12441), + [anon_sym_BSLASHincludesvg] = ACTIONS(12441), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12441), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12441), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12441), + [anon_sym_BSLASHimport] = ACTIONS(12441), + [anon_sym_BSLASHsubimport] = ACTIONS(12441), + [anon_sym_BSLASHinputfrom] = ACTIONS(12441), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12441), + [anon_sym_BSLASHincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHlabel] = ACTIONS(12441), + [anon_sym_BSLASHref] = ACTIONS(12441), + [anon_sym_BSLASHvref] = ACTIONS(12441), + [anon_sym_BSLASHVref] = ACTIONS(12441), + [anon_sym_BSLASHautoref] = ACTIONS(12441), + [anon_sym_BSLASHpageref] = ACTIONS(12441), + [anon_sym_BSLASHcref] = ACTIONS(12441), + [anon_sym_BSLASHCref] = ACTIONS(12441), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnameCref] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHlabelcref] = ACTIONS(12441), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12441), + [anon_sym_BSLASHeqref] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange] = ACTIONS(12441), + [anon_sym_BSLASHCrefrange] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewlabel] = ACTIONS(12441), + [anon_sym_BSLASHnewcommand] = ACTIONS(12441), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12441), + [anon_sym_BSLASHgls] = ACTIONS(12441), + [anon_sym_BSLASHGls] = ACTIONS(12441), + [anon_sym_BSLASHGLS] = ACTIONS(12441), + [anon_sym_BSLASHglspl] = ACTIONS(12441), + [anon_sym_BSLASHGlspl] = ACTIONS(12441), + [anon_sym_BSLASHGLSpl] = ACTIONS(12441), + [anon_sym_BSLASHglsdisp] = ACTIONS(12441), + [anon_sym_BSLASHglslink] = ACTIONS(12441), + [anon_sym_BSLASHglstext] = ACTIONS(12441), + [anon_sym_BSLASHGlstext] = ACTIONS(12441), + [anon_sym_BSLASHGLStext] = ACTIONS(12441), + [anon_sym_BSLASHglsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12441), + [anon_sym_BSLASHglsplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSplural] = ACTIONS(12441), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHglsname] = ACTIONS(12441), + [anon_sym_BSLASHGlsname] = ACTIONS(12441), + [anon_sym_BSLASHGLSname] = ACTIONS(12441), + [anon_sym_BSLASHglssymbol] = ACTIONS(12441), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12441), + [anon_sym_BSLASHglsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12441), + [anon_sym_BSLASHglsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12441), + [anon_sym_BSLASHglsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12441), + [anon_sym_BSLASHglsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12441), + [anon_sym_BSLASHglsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12441), + [anon_sym_BSLASHnewacronym] = ACTIONS(12441), + [anon_sym_BSLASHacrshort] = ACTIONS(12441), + [anon_sym_BSLASHAcrshort] = ACTIONS(12441), + [anon_sym_BSLASHACRshort] = ACTIONS(12441), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12441), + [anon_sym_BSLASHacrlong] = ACTIONS(12441), + [anon_sym_BSLASHAcrlong] = ACTIONS(12441), + [anon_sym_BSLASHACRlong] = ACTIONS(12441), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12441), + [anon_sym_BSLASHacrfull] = ACTIONS(12441), + [anon_sym_BSLASHAcrfull] = ACTIONS(12441), + [anon_sym_BSLASHACRfull] = ACTIONS(12441), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12441), + [anon_sym_BSLASHacs] = ACTIONS(12441), + [anon_sym_BSLASHAcs] = ACTIONS(12441), + [anon_sym_BSLASHacsp] = ACTIONS(12441), + [anon_sym_BSLASHAcsp] = ACTIONS(12441), + [anon_sym_BSLASHacl] = ACTIONS(12441), + [anon_sym_BSLASHAcl] = ACTIONS(12441), + [anon_sym_BSLASHaclp] = ACTIONS(12441), + [anon_sym_BSLASHAclp] = ACTIONS(12441), + [anon_sym_BSLASHacf] = ACTIONS(12441), + [anon_sym_BSLASHAcf] = ACTIONS(12441), + [anon_sym_BSLASHacfp] = ACTIONS(12441), + [anon_sym_BSLASHAcfp] = ACTIONS(12441), + [anon_sym_BSLASHac] = ACTIONS(12441), + [anon_sym_BSLASHAc] = ACTIONS(12441), + [anon_sym_BSLASHacp] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12441), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12441), + [anon_sym_BSLASHcolor] = ACTIONS(12441), + [anon_sym_BSLASHcolorbox] = ACTIONS(12441), + [anon_sym_BSLASHtextcolor] = ACTIONS(12441), + [anon_sym_BSLASHpagecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12441), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12441), + }, + [1040] = { + [sym_generic_command_name] = ACTIONS(12421), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12421), + [aux_sym_chapter_token1] = ACTIONS(12421), + [aux_sym_section_token1] = ACTIONS(12421), + [aux_sym_subsection_token1] = ACTIONS(12421), + [aux_sym_subsubsection_token1] = ACTIONS(12421), + [aux_sym_paragraph_token1] = ACTIONS(12421), + [aux_sym_subparagraph_token1] = ACTIONS(12421), + [anon_sym_BSLASHitem] = ACTIONS(12421), + [anon_sym_LBRACK] = ACTIONS(12419), + [anon_sym_LBRACE] = ACTIONS(12419), + [anon_sym_LPAREN] = ACTIONS(12419), + [anon_sym_COMMA] = ACTIONS(12419), + [anon_sym_EQ] = ACTIONS(12419), + [sym_word] = ACTIONS(12419), + [sym_param] = ACTIONS(12419), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12419), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12419), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12419), + [anon_sym_DOLLAR] = ACTIONS(12421), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12419), + [anon_sym_BSLASHbegin] = ACTIONS(12421), + [anon_sym_BSLASHcaption] = ACTIONS(12421), + [anon_sym_BSLASHcite] = ACTIONS(12421), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCite] = ACTIONS(12421), + [anon_sym_BSLASHnocite] = ACTIONS(12421), + [anon_sym_BSLASHcitet] = ACTIONS(12421), + [anon_sym_BSLASHcitep] = ACTIONS(12421), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteauthor] = ACTIONS(12421), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12421), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitetitle] = ACTIONS(12421), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteyear] = ACTIONS(12421), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitedate] = ACTIONS(12421), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteurl] = ACTIONS(12421), + [anon_sym_BSLASHfullcite] = ACTIONS(12421), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12421), + [anon_sym_BSLASHcitealt] = ACTIONS(12421), + [anon_sym_BSLASHcitealp] = ACTIONS(12421), + [anon_sym_BSLASHcitetext] = ACTIONS(12421), + [anon_sym_BSLASHparencite] = ACTIONS(12421), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHParencite] = ACTIONS(12421), + [anon_sym_BSLASHfootcite] = ACTIONS(12421), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12421), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12421), + [anon_sym_BSLASHtextcite] = ACTIONS(12421), + [anon_sym_BSLASHTextcite] = ACTIONS(12421), + [anon_sym_BSLASHsmartcite] = ACTIONS(12421), + [anon_sym_BSLASHSmartcite] = ACTIONS(12421), + [anon_sym_BSLASHsupercite] = ACTIONS(12421), + [anon_sym_BSLASHautocite] = ACTIONS(12421), + [anon_sym_BSLASHAutocite] = ACTIONS(12421), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHvolcite] = ACTIONS(12421), + [anon_sym_BSLASHVolcite] = ACTIONS(12421), + [anon_sym_BSLASHpvolcite] = ACTIONS(12421), + [anon_sym_BSLASHPvolcite] = ACTIONS(12421), + [anon_sym_BSLASHfvolcite] = ACTIONS(12421), + [anon_sym_BSLASHftvolcite] = ACTIONS(12421), + [anon_sym_BSLASHsvolcite] = ACTIONS(12421), + [anon_sym_BSLASHSvolcite] = ACTIONS(12421), + [anon_sym_BSLASHtvolcite] = ACTIONS(12421), + [anon_sym_BSLASHTvolcite] = ACTIONS(12421), + [anon_sym_BSLASHavolcite] = ACTIONS(12421), + [anon_sym_BSLASHAvolcite] = ACTIONS(12421), + [anon_sym_BSLASHnotecite] = ACTIONS(12421), + [anon_sym_BSLASHpnotecite] = ACTIONS(12421), + [anon_sym_BSLASHPnotecite] = ACTIONS(12421), + [anon_sym_BSLASHfnotecite] = ACTIONS(12421), + [anon_sym_BSLASHusepackage] = ACTIONS(12421), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12421), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12421), + [anon_sym_BSLASHinclude] = ACTIONS(12421), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12421), + [anon_sym_BSLASHinput] = ACTIONS(12421), + [anon_sym_BSLASHsubfile] = ACTIONS(12421), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12421), + [anon_sym_BSLASHbibliography] = ACTIONS(12421), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12421), + [anon_sym_BSLASHincludesvg] = ACTIONS(12421), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12421), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12421), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12421), + [anon_sym_BSLASHimport] = ACTIONS(12421), + [anon_sym_BSLASHsubimport] = ACTIONS(12421), + [anon_sym_BSLASHinputfrom] = ACTIONS(12421), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12421), + [anon_sym_BSLASHincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHlabel] = ACTIONS(12421), + [anon_sym_BSLASHref] = ACTIONS(12421), + [anon_sym_BSLASHvref] = ACTIONS(12421), + [anon_sym_BSLASHVref] = ACTIONS(12421), + [anon_sym_BSLASHautoref] = ACTIONS(12421), + [anon_sym_BSLASHpageref] = ACTIONS(12421), + [anon_sym_BSLASHcref] = ACTIONS(12421), + [anon_sym_BSLASHCref] = ACTIONS(12421), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnameCref] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHlabelcref] = ACTIONS(12421), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12421), + [anon_sym_BSLASHeqref] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange] = ACTIONS(12421), + [anon_sym_BSLASHCrefrange] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewlabel] = ACTIONS(12421), + [anon_sym_BSLASHnewcommand] = ACTIONS(12421), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12421), + [anon_sym_BSLASHgls] = ACTIONS(12421), + [anon_sym_BSLASHGls] = ACTIONS(12421), + [anon_sym_BSLASHGLS] = ACTIONS(12421), + [anon_sym_BSLASHglspl] = ACTIONS(12421), + [anon_sym_BSLASHGlspl] = ACTIONS(12421), + [anon_sym_BSLASHGLSpl] = ACTIONS(12421), + [anon_sym_BSLASHglsdisp] = ACTIONS(12421), + [anon_sym_BSLASHglslink] = ACTIONS(12421), + [anon_sym_BSLASHglstext] = ACTIONS(12421), + [anon_sym_BSLASHGlstext] = ACTIONS(12421), + [anon_sym_BSLASHGLStext] = ACTIONS(12421), + [anon_sym_BSLASHglsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12421), + [anon_sym_BSLASHglsplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSplural] = ACTIONS(12421), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHglsname] = ACTIONS(12421), + [anon_sym_BSLASHGlsname] = ACTIONS(12421), + [anon_sym_BSLASHGLSname] = ACTIONS(12421), + [anon_sym_BSLASHglssymbol] = ACTIONS(12421), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12421), + [anon_sym_BSLASHglsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12421), + [anon_sym_BSLASHglsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12421), + [anon_sym_BSLASHglsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12421), + [anon_sym_BSLASHglsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12421), + [anon_sym_BSLASHglsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12421), + [anon_sym_BSLASHnewacronym] = ACTIONS(12421), + [anon_sym_BSLASHacrshort] = ACTIONS(12421), + [anon_sym_BSLASHAcrshort] = ACTIONS(12421), + [anon_sym_BSLASHACRshort] = ACTIONS(12421), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12421), + [anon_sym_BSLASHacrlong] = ACTIONS(12421), + [anon_sym_BSLASHAcrlong] = ACTIONS(12421), + [anon_sym_BSLASHACRlong] = ACTIONS(12421), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12421), + [anon_sym_BSLASHacrfull] = ACTIONS(12421), + [anon_sym_BSLASHAcrfull] = ACTIONS(12421), + [anon_sym_BSLASHACRfull] = ACTIONS(12421), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12421), + [anon_sym_BSLASHacs] = ACTIONS(12421), + [anon_sym_BSLASHAcs] = ACTIONS(12421), + [anon_sym_BSLASHacsp] = ACTIONS(12421), + [anon_sym_BSLASHAcsp] = ACTIONS(12421), + [anon_sym_BSLASHacl] = ACTIONS(12421), + [anon_sym_BSLASHAcl] = ACTIONS(12421), + [anon_sym_BSLASHaclp] = ACTIONS(12421), + [anon_sym_BSLASHAclp] = ACTIONS(12421), + [anon_sym_BSLASHacf] = ACTIONS(12421), + [anon_sym_BSLASHAcf] = ACTIONS(12421), + [anon_sym_BSLASHacfp] = ACTIONS(12421), + [anon_sym_BSLASHAcfp] = ACTIONS(12421), + [anon_sym_BSLASHac] = ACTIONS(12421), + [anon_sym_BSLASHAc] = ACTIONS(12421), + [anon_sym_BSLASHacp] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12421), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12421), + [anon_sym_BSLASHcolor] = ACTIONS(12421), + [anon_sym_BSLASHcolorbox] = ACTIONS(12421), + [anon_sym_BSLASHtextcolor] = ACTIONS(12421), + [anon_sym_BSLASHpagecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12421), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12421), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12421), + }, + [1041] = { + [sym_generic_command_name] = ACTIONS(12425), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12425), + [aux_sym_chapter_token1] = ACTIONS(12425), + [aux_sym_section_token1] = ACTIONS(12425), + [aux_sym_subsection_token1] = ACTIONS(12425), + [aux_sym_subsubsection_token1] = ACTIONS(12425), + [aux_sym_paragraph_token1] = ACTIONS(12425), + [aux_sym_subparagraph_token1] = ACTIONS(12425), + [anon_sym_BSLASHitem] = ACTIONS(12425), + [anon_sym_LBRACK] = ACTIONS(12423), + [anon_sym_LBRACE] = ACTIONS(12423), + [anon_sym_LPAREN] = ACTIONS(12423), + [anon_sym_COMMA] = ACTIONS(12423), + [anon_sym_EQ] = ACTIONS(12423), + [sym_word] = ACTIONS(12423), + [sym_param] = ACTIONS(12423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12423), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12423), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12423), + [anon_sym_DOLLAR] = ACTIONS(12425), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12423), + [anon_sym_BSLASHbegin] = ACTIONS(12425), + [anon_sym_BSLASHcaption] = ACTIONS(12425), + [anon_sym_BSLASHcite] = ACTIONS(12425), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCite] = ACTIONS(12425), + [anon_sym_BSLASHnocite] = ACTIONS(12425), + [anon_sym_BSLASHcitet] = ACTIONS(12425), + [anon_sym_BSLASHcitep] = ACTIONS(12425), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteauthor] = ACTIONS(12425), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12425), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitetitle] = ACTIONS(12425), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteyear] = ACTIONS(12425), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitedate] = ACTIONS(12425), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteurl] = ACTIONS(12425), + [anon_sym_BSLASHfullcite] = ACTIONS(12425), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12425), + [anon_sym_BSLASHcitealt] = ACTIONS(12425), + [anon_sym_BSLASHcitealp] = ACTIONS(12425), + [anon_sym_BSLASHcitetext] = ACTIONS(12425), + [anon_sym_BSLASHparencite] = ACTIONS(12425), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHParencite] = ACTIONS(12425), + [anon_sym_BSLASHfootcite] = ACTIONS(12425), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12425), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12425), + [anon_sym_BSLASHtextcite] = ACTIONS(12425), + [anon_sym_BSLASHTextcite] = ACTIONS(12425), + [anon_sym_BSLASHsmartcite] = ACTIONS(12425), + [anon_sym_BSLASHSmartcite] = ACTIONS(12425), + [anon_sym_BSLASHsupercite] = ACTIONS(12425), + [anon_sym_BSLASHautocite] = ACTIONS(12425), + [anon_sym_BSLASHAutocite] = ACTIONS(12425), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHvolcite] = ACTIONS(12425), + [anon_sym_BSLASHVolcite] = ACTIONS(12425), + [anon_sym_BSLASHpvolcite] = ACTIONS(12425), + [anon_sym_BSLASHPvolcite] = ACTIONS(12425), + [anon_sym_BSLASHfvolcite] = ACTIONS(12425), + [anon_sym_BSLASHftvolcite] = ACTIONS(12425), + [anon_sym_BSLASHsvolcite] = ACTIONS(12425), + [anon_sym_BSLASHSvolcite] = ACTIONS(12425), + [anon_sym_BSLASHtvolcite] = ACTIONS(12425), + [anon_sym_BSLASHTvolcite] = ACTIONS(12425), + [anon_sym_BSLASHavolcite] = ACTIONS(12425), + [anon_sym_BSLASHAvolcite] = ACTIONS(12425), + [anon_sym_BSLASHnotecite] = ACTIONS(12425), + [anon_sym_BSLASHpnotecite] = ACTIONS(12425), + [anon_sym_BSLASHPnotecite] = ACTIONS(12425), + [anon_sym_BSLASHfnotecite] = ACTIONS(12425), + [anon_sym_BSLASHusepackage] = ACTIONS(12425), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12425), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12425), + [anon_sym_BSLASHinclude] = ACTIONS(12425), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12425), + [anon_sym_BSLASHinput] = ACTIONS(12425), + [anon_sym_BSLASHsubfile] = ACTIONS(12425), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12425), + [anon_sym_BSLASHbibliography] = ACTIONS(12425), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12425), + [anon_sym_BSLASHincludesvg] = ACTIONS(12425), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12425), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12425), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12425), + [anon_sym_BSLASHimport] = ACTIONS(12425), + [anon_sym_BSLASHsubimport] = ACTIONS(12425), + [anon_sym_BSLASHinputfrom] = ACTIONS(12425), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12425), + [anon_sym_BSLASHincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHlabel] = ACTIONS(12425), + [anon_sym_BSLASHref] = ACTIONS(12425), + [anon_sym_BSLASHvref] = ACTIONS(12425), + [anon_sym_BSLASHVref] = ACTIONS(12425), + [anon_sym_BSLASHautoref] = ACTIONS(12425), + [anon_sym_BSLASHpageref] = ACTIONS(12425), + [anon_sym_BSLASHcref] = ACTIONS(12425), + [anon_sym_BSLASHCref] = ACTIONS(12425), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnameCref] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHlabelcref] = ACTIONS(12425), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12425), + [anon_sym_BSLASHeqref] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange] = ACTIONS(12425), + [anon_sym_BSLASHCrefrange] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewlabel] = ACTIONS(12425), + [anon_sym_BSLASHnewcommand] = ACTIONS(12425), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12425), + [anon_sym_BSLASHgls] = ACTIONS(12425), + [anon_sym_BSLASHGls] = ACTIONS(12425), + [anon_sym_BSLASHGLS] = ACTIONS(12425), + [anon_sym_BSLASHglspl] = ACTIONS(12425), + [anon_sym_BSLASHGlspl] = ACTIONS(12425), + [anon_sym_BSLASHGLSpl] = ACTIONS(12425), + [anon_sym_BSLASHglsdisp] = ACTIONS(12425), + [anon_sym_BSLASHglslink] = ACTIONS(12425), + [anon_sym_BSLASHglstext] = ACTIONS(12425), + [anon_sym_BSLASHGlstext] = ACTIONS(12425), + [anon_sym_BSLASHGLStext] = ACTIONS(12425), + [anon_sym_BSLASHglsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12425), + [anon_sym_BSLASHglsplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSplural] = ACTIONS(12425), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHglsname] = ACTIONS(12425), + [anon_sym_BSLASHGlsname] = ACTIONS(12425), + [anon_sym_BSLASHGLSname] = ACTIONS(12425), + [anon_sym_BSLASHglssymbol] = ACTIONS(12425), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12425), + [anon_sym_BSLASHglsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12425), + [anon_sym_BSLASHglsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12425), + [anon_sym_BSLASHglsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12425), + [anon_sym_BSLASHglsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12425), + [anon_sym_BSLASHglsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12425), + [anon_sym_BSLASHnewacronym] = ACTIONS(12425), + [anon_sym_BSLASHacrshort] = ACTIONS(12425), + [anon_sym_BSLASHAcrshort] = ACTIONS(12425), + [anon_sym_BSLASHACRshort] = ACTIONS(12425), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12425), + [anon_sym_BSLASHacrlong] = ACTIONS(12425), + [anon_sym_BSLASHAcrlong] = ACTIONS(12425), + [anon_sym_BSLASHACRlong] = ACTIONS(12425), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12425), + [anon_sym_BSLASHacrfull] = ACTIONS(12425), + [anon_sym_BSLASHAcrfull] = ACTIONS(12425), + [anon_sym_BSLASHACRfull] = ACTIONS(12425), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12425), + [anon_sym_BSLASHacs] = ACTIONS(12425), + [anon_sym_BSLASHAcs] = ACTIONS(12425), + [anon_sym_BSLASHacsp] = ACTIONS(12425), + [anon_sym_BSLASHAcsp] = ACTIONS(12425), + [anon_sym_BSLASHacl] = ACTIONS(12425), + [anon_sym_BSLASHAcl] = ACTIONS(12425), + [anon_sym_BSLASHaclp] = ACTIONS(12425), + [anon_sym_BSLASHAclp] = ACTIONS(12425), + [anon_sym_BSLASHacf] = ACTIONS(12425), + [anon_sym_BSLASHAcf] = ACTIONS(12425), + [anon_sym_BSLASHacfp] = ACTIONS(12425), + [anon_sym_BSLASHAcfp] = ACTIONS(12425), + [anon_sym_BSLASHac] = ACTIONS(12425), + [anon_sym_BSLASHAc] = ACTIONS(12425), + [anon_sym_BSLASHacp] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12425), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12425), + [anon_sym_BSLASHcolor] = ACTIONS(12425), + [anon_sym_BSLASHcolorbox] = ACTIONS(12425), + [anon_sym_BSLASHtextcolor] = ACTIONS(12425), + [anon_sym_BSLASHpagecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12425), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12425), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12425), + }, + [1042] = { + [sym_generic_command_name] = ACTIONS(12429), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12429), + [aux_sym_chapter_token1] = ACTIONS(12429), + [aux_sym_section_token1] = ACTIONS(12429), + [aux_sym_subsection_token1] = ACTIONS(12429), + [aux_sym_subsubsection_token1] = ACTIONS(12429), + [aux_sym_paragraph_token1] = ACTIONS(12429), + [aux_sym_subparagraph_token1] = ACTIONS(12429), + [anon_sym_BSLASHitem] = ACTIONS(12429), + [anon_sym_LBRACK] = ACTIONS(12427), + [anon_sym_LBRACE] = ACTIONS(12427), + [anon_sym_LPAREN] = ACTIONS(12427), + [anon_sym_COMMA] = ACTIONS(12427), + [anon_sym_EQ] = ACTIONS(12427), + [sym_word] = ACTIONS(12427), + [sym_param] = ACTIONS(12427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12427), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12427), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12427), + [anon_sym_DOLLAR] = ACTIONS(12429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12427), + [anon_sym_BSLASHbegin] = ACTIONS(12429), + [anon_sym_BSLASHcaption] = ACTIONS(12429), + [anon_sym_BSLASHcite] = ACTIONS(12429), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCite] = ACTIONS(12429), + [anon_sym_BSLASHnocite] = ACTIONS(12429), + [anon_sym_BSLASHcitet] = ACTIONS(12429), + [anon_sym_BSLASHcitep] = ACTIONS(12429), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteauthor] = ACTIONS(12429), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12429), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitetitle] = ACTIONS(12429), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteyear] = ACTIONS(12429), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitedate] = ACTIONS(12429), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteurl] = ACTIONS(12429), + [anon_sym_BSLASHfullcite] = ACTIONS(12429), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12429), + [anon_sym_BSLASHcitealt] = ACTIONS(12429), + [anon_sym_BSLASHcitealp] = ACTIONS(12429), + [anon_sym_BSLASHcitetext] = ACTIONS(12429), + [anon_sym_BSLASHparencite] = ACTIONS(12429), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHParencite] = ACTIONS(12429), + [anon_sym_BSLASHfootcite] = ACTIONS(12429), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12429), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12429), + [anon_sym_BSLASHtextcite] = ACTIONS(12429), + [anon_sym_BSLASHTextcite] = ACTIONS(12429), + [anon_sym_BSLASHsmartcite] = ACTIONS(12429), + [anon_sym_BSLASHSmartcite] = ACTIONS(12429), + [anon_sym_BSLASHsupercite] = ACTIONS(12429), + [anon_sym_BSLASHautocite] = ACTIONS(12429), + [anon_sym_BSLASHAutocite] = ACTIONS(12429), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHvolcite] = ACTIONS(12429), + [anon_sym_BSLASHVolcite] = ACTIONS(12429), + [anon_sym_BSLASHpvolcite] = ACTIONS(12429), + [anon_sym_BSLASHPvolcite] = ACTIONS(12429), + [anon_sym_BSLASHfvolcite] = ACTIONS(12429), + [anon_sym_BSLASHftvolcite] = ACTIONS(12429), + [anon_sym_BSLASHsvolcite] = ACTIONS(12429), + [anon_sym_BSLASHSvolcite] = ACTIONS(12429), + [anon_sym_BSLASHtvolcite] = ACTIONS(12429), + [anon_sym_BSLASHTvolcite] = ACTIONS(12429), + [anon_sym_BSLASHavolcite] = ACTIONS(12429), + [anon_sym_BSLASHAvolcite] = ACTIONS(12429), + [anon_sym_BSLASHnotecite] = ACTIONS(12429), + [anon_sym_BSLASHpnotecite] = ACTIONS(12429), + [anon_sym_BSLASHPnotecite] = ACTIONS(12429), + [anon_sym_BSLASHfnotecite] = ACTIONS(12429), + [anon_sym_BSLASHusepackage] = ACTIONS(12429), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12429), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12429), + [anon_sym_BSLASHinclude] = ACTIONS(12429), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12429), + [anon_sym_BSLASHinput] = ACTIONS(12429), + [anon_sym_BSLASHsubfile] = ACTIONS(12429), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12429), + [anon_sym_BSLASHbibliography] = ACTIONS(12429), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12429), + [anon_sym_BSLASHincludesvg] = ACTIONS(12429), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12429), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12429), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12429), + [anon_sym_BSLASHimport] = ACTIONS(12429), + [anon_sym_BSLASHsubimport] = ACTIONS(12429), + [anon_sym_BSLASHinputfrom] = ACTIONS(12429), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12429), + [anon_sym_BSLASHincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHlabel] = ACTIONS(12429), + [anon_sym_BSLASHref] = ACTIONS(12429), + [anon_sym_BSLASHvref] = ACTIONS(12429), + [anon_sym_BSLASHVref] = ACTIONS(12429), + [anon_sym_BSLASHautoref] = ACTIONS(12429), + [anon_sym_BSLASHpageref] = ACTIONS(12429), + [anon_sym_BSLASHcref] = ACTIONS(12429), + [anon_sym_BSLASHCref] = ACTIONS(12429), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnameCref] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHlabelcref] = ACTIONS(12429), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12429), + [anon_sym_BSLASHeqref] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange] = ACTIONS(12429), + [anon_sym_BSLASHCrefrange] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewlabel] = ACTIONS(12429), + [anon_sym_BSLASHnewcommand] = ACTIONS(12429), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12429), + [anon_sym_BSLASHgls] = ACTIONS(12429), + [anon_sym_BSLASHGls] = ACTIONS(12429), + [anon_sym_BSLASHGLS] = ACTIONS(12429), + [anon_sym_BSLASHglspl] = ACTIONS(12429), + [anon_sym_BSLASHGlspl] = ACTIONS(12429), + [anon_sym_BSLASHGLSpl] = ACTIONS(12429), + [anon_sym_BSLASHglsdisp] = ACTIONS(12429), + [anon_sym_BSLASHglslink] = ACTIONS(12429), + [anon_sym_BSLASHglstext] = ACTIONS(12429), + [anon_sym_BSLASHGlstext] = ACTIONS(12429), + [anon_sym_BSLASHGLStext] = ACTIONS(12429), + [anon_sym_BSLASHglsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12429), + [anon_sym_BSLASHglsplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSplural] = ACTIONS(12429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHglsname] = ACTIONS(12429), + [anon_sym_BSLASHGlsname] = ACTIONS(12429), + [anon_sym_BSLASHGLSname] = ACTIONS(12429), + [anon_sym_BSLASHglssymbol] = ACTIONS(12429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12429), + [anon_sym_BSLASHglsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12429), + [anon_sym_BSLASHglsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12429), + [anon_sym_BSLASHglsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12429), + [anon_sym_BSLASHglsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12429), + [anon_sym_BSLASHglsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12429), + [anon_sym_BSLASHnewacronym] = ACTIONS(12429), + [anon_sym_BSLASHacrshort] = ACTIONS(12429), + [anon_sym_BSLASHAcrshort] = ACTIONS(12429), + [anon_sym_BSLASHACRshort] = ACTIONS(12429), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12429), + [anon_sym_BSLASHacrlong] = ACTIONS(12429), + [anon_sym_BSLASHAcrlong] = ACTIONS(12429), + [anon_sym_BSLASHACRlong] = ACTIONS(12429), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12429), + [anon_sym_BSLASHacrfull] = ACTIONS(12429), + [anon_sym_BSLASHAcrfull] = ACTIONS(12429), + [anon_sym_BSLASHACRfull] = ACTIONS(12429), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12429), + [anon_sym_BSLASHacs] = ACTIONS(12429), + [anon_sym_BSLASHAcs] = ACTIONS(12429), + [anon_sym_BSLASHacsp] = ACTIONS(12429), + [anon_sym_BSLASHAcsp] = ACTIONS(12429), + [anon_sym_BSLASHacl] = ACTIONS(12429), + [anon_sym_BSLASHAcl] = ACTIONS(12429), + [anon_sym_BSLASHaclp] = ACTIONS(12429), + [anon_sym_BSLASHAclp] = ACTIONS(12429), + [anon_sym_BSLASHacf] = ACTIONS(12429), + [anon_sym_BSLASHAcf] = ACTIONS(12429), + [anon_sym_BSLASHacfp] = ACTIONS(12429), + [anon_sym_BSLASHAcfp] = ACTIONS(12429), + [anon_sym_BSLASHac] = ACTIONS(12429), + [anon_sym_BSLASHAc] = ACTIONS(12429), + [anon_sym_BSLASHacp] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12429), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12429), + [anon_sym_BSLASHcolor] = ACTIONS(12429), + [anon_sym_BSLASHcolorbox] = ACTIONS(12429), + [anon_sym_BSLASHtextcolor] = ACTIONS(12429), + [anon_sym_BSLASHpagecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12429), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12429), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12429), + }, + [1043] = { + [sym_generic_command_name] = ACTIONS(12433), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12433), + [aux_sym_chapter_token1] = ACTIONS(12433), + [aux_sym_section_token1] = ACTIONS(12433), + [aux_sym_subsection_token1] = ACTIONS(12433), + [aux_sym_subsubsection_token1] = ACTIONS(12433), + [aux_sym_paragraph_token1] = ACTIONS(12433), + [aux_sym_subparagraph_token1] = ACTIONS(12433), + [anon_sym_BSLASHitem] = ACTIONS(12433), + [anon_sym_LBRACK] = ACTIONS(12431), + [anon_sym_LBRACE] = ACTIONS(12431), + [anon_sym_LPAREN] = ACTIONS(12431), + [anon_sym_COMMA] = ACTIONS(12431), + [anon_sym_EQ] = ACTIONS(12431), + [sym_word] = ACTIONS(12431), + [sym_param] = ACTIONS(12431), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12431), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12431), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12431), + [anon_sym_DOLLAR] = ACTIONS(12433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12431), + [anon_sym_BSLASHbegin] = ACTIONS(12433), + [anon_sym_BSLASHcaption] = ACTIONS(12433), + [anon_sym_BSLASHcite] = ACTIONS(12433), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCite] = ACTIONS(12433), + [anon_sym_BSLASHnocite] = ACTIONS(12433), + [anon_sym_BSLASHcitet] = ACTIONS(12433), + [anon_sym_BSLASHcitep] = ACTIONS(12433), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteauthor] = ACTIONS(12433), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12433), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitetitle] = ACTIONS(12433), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteyear] = ACTIONS(12433), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitedate] = ACTIONS(12433), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteurl] = ACTIONS(12433), + [anon_sym_BSLASHfullcite] = ACTIONS(12433), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12433), + [anon_sym_BSLASHcitealt] = ACTIONS(12433), + [anon_sym_BSLASHcitealp] = ACTIONS(12433), + [anon_sym_BSLASHcitetext] = ACTIONS(12433), + [anon_sym_BSLASHparencite] = ACTIONS(12433), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHParencite] = ACTIONS(12433), + [anon_sym_BSLASHfootcite] = ACTIONS(12433), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12433), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12433), + [anon_sym_BSLASHtextcite] = ACTIONS(12433), + [anon_sym_BSLASHTextcite] = ACTIONS(12433), + [anon_sym_BSLASHsmartcite] = ACTIONS(12433), + [anon_sym_BSLASHSmartcite] = ACTIONS(12433), + [anon_sym_BSLASHsupercite] = ACTIONS(12433), + [anon_sym_BSLASHautocite] = ACTIONS(12433), + [anon_sym_BSLASHAutocite] = ACTIONS(12433), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHvolcite] = ACTIONS(12433), + [anon_sym_BSLASHVolcite] = ACTIONS(12433), + [anon_sym_BSLASHpvolcite] = ACTIONS(12433), + [anon_sym_BSLASHPvolcite] = ACTIONS(12433), + [anon_sym_BSLASHfvolcite] = ACTIONS(12433), + [anon_sym_BSLASHftvolcite] = ACTIONS(12433), + [anon_sym_BSLASHsvolcite] = ACTIONS(12433), + [anon_sym_BSLASHSvolcite] = ACTIONS(12433), + [anon_sym_BSLASHtvolcite] = ACTIONS(12433), + [anon_sym_BSLASHTvolcite] = ACTIONS(12433), + [anon_sym_BSLASHavolcite] = ACTIONS(12433), + [anon_sym_BSLASHAvolcite] = ACTIONS(12433), + [anon_sym_BSLASHnotecite] = ACTIONS(12433), + [anon_sym_BSLASHpnotecite] = ACTIONS(12433), + [anon_sym_BSLASHPnotecite] = ACTIONS(12433), + [anon_sym_BSLASHfnotecite] = ACTIONS(12433), + [anon_sym_BSLASHusepackage] = ACTIONS(12433), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12433), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12433), + [anon_sym_BSLASHinclude] = ACTIONS(12433), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12433), + [anon_sym_BSLASHinput] = ACTIONS(12433), + [anon_sym_BSLASHsubfile] = ACTIONS(12433), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12433), + [anon_sym_BSLASHbibliography] = ACTIONS(12433), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12433), + [anon_sym_BSLASHincludesvg] = ACTIONS(12433), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12433), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12433), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12433), + [anon_sym_BSLASHimport] = ACTIONS(12433), + [anon_sym_BSLASHsubimport] = ACTIONS(12433), + [anon_sym_BSLASHinputfrom] = ACTIONS(12433), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12433), + [anon_sym_BSLASHincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHlabel] = ACTIONS(12433), + [anon_sym_BSLASHref] = ACTIONS(12433), + [anon_sym_BSLASHvref] = ACTIONS(12433), + [anon_sym_BSLASHVref] = ACTIONS(12433), + [anon_sym_BSLASHautoref] = ACTIONS(12433), + [anon_sym_BSLASHpageref] = ACTIONS(12433), + [anon_sym_BSLASHcref] = ACTIONS(12433), + [anon_sym_BSLASHCref] = ACTIONS(12433), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnameCref] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHlabelcref] = ACTIONS(12433), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12433), + [anon_sym_BSLASHeqref] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange] = ACTIONS(12433), + [anon_sym_BSLASHCrefrange] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewlabel] = ACTIONS(12433), + [anon_sym_BSLASHnewcommand] = ACTIONS(12433), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12433), + [anon_sym_BSLASHgls] = ACTIONS(12433), + [anon_sym_BSLASHGls] = ACTIONS(12433), + [anon_sym_BSLASHGLS] = ACTIONS(12433), + [anon_sym_BSLASHglspl] = ACTIONS(12433), + [anon_sym_BSLASHGlspl] = ACTIONS(12433), + [anon_sym_BSLASHGLSpl] = ACTIONS(12433), + [anon_sym_BSLASHglsdisp] = ACTIONS(12433), + [anon_sym_BSLASHglslink] = ACTIONS(12433), + [anon_sym_BSLASHglstext] = ACTIONS(12433), + [anon_sym_BSLASHGlstext] = ACTIONS(12433), + [anon_sym_BSLASHGLStext] = ACTIONS(12433), + [anon_sym_BSLASHglsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12433), + [anon_sym_BSLASHglsplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSplural] = ACTIONS(12433), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHglsname] = ACTIONS(12433), + [anon_sym_BSLASHGlsname] = ACTIONS(12433), + [anon_sym_BSLASHGLSname] = ACTIONS(12433), + [anon_sym_BSLASHglssymbol] = ACTIONS(12433), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12433), + [anon_sym_BSLASHglsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12433), + [anon_sym_BSLASHglsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12433), + [anon_sym_BSLASHglsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12433), + [anon_sym_BSLASHglsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12433), + [anon_sym_BSLASHglsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12433), + [anon_sym_BSLASHnewacronym] = ACTIONS(12433), + [anon_sym_BSLASHacrshort] = ACTIONS(12433), + [anon_sym_BSLASHAcrshort] = ACTIONS(12433), + [anon_sym_BSLASHACRshort] = ACTIONS(12433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12433), + [anon_sym_BSLASHacrlong] = ACTIONS(12433), + [anon_sym_BSLASHAcrlong] = ACTIONS(12433), + [anon_sym_BSLASHACRlong] = ACTIONS(12433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12433), + [anon_sym_BSLASHacrfull] = ACTIONS(12433), + [anon_sym_BSLASHAcrfull] = ACTIONS(12433), + [anon_sym_BSLASHACRfull] = ACTIONS(12433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12433), + [anon_sym_BSLASHacs] = ACTIONS(12433), + [anon_sym_BSLASHAcs] = ACTIONS(12433), + [anon_sym_BSLASHacsp] = ACTIONS(12433), + [anon_sym_BSLASHAcsp] = ACTIONS(12433), + [anon_sym_BSLASHacl] = ACTIONS(12433), + [anon_sym_BSLASHAcl] = ACTIONS(12433), + [anon_sym_BSLASHaclp] = ACTIONS(12433), + [anon_sym_BSLASHAclp] = ACTIONS(12433), + [anon_sym_BSLASHacf] = ACTIONS(12433), + [anon_sym_BSLASHAcf] = ACTIONS(12433), + [anon_sym_BSLASHacfp] = ACTIONS(12433), + [anon_sym_BSLASHAcfp] = ACTIONS(12433), + [anon_sym_BSLASHac] = ACTIONS(12433), + [anon_sym_BSLASHAc] = ACTIONS(12433), + [anon_sym_BSLASHacp] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12433), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12433), + [anon_sym_BSLASHcolor] = ACTIONS(12433), + [anon_sym_BSLASHcolorbox] = ACTIONS(12433), + [anon_sym_BSLASHtextcolor] = ACTIONS(12433), + [anon_sym_BSLASHpagecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12433), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12433), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12433), + }, + [1044] = { + [sym_generic_command_name] = ACTIONS(12227), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12227), + [aux_sym_chapter_token1] = ACTIONS(12227), + [aux_sym_section_token1] = ACTIONS(12227), + [aux_sym_subsection_token1] = ACTIONS(12227), + [aux_sym_subsubsection_token1] = ACTIONS(12227), + [aux_sym_paragraph_token1] = ACTIONS(12227), + [aux_sym_subparagraph_token1] = ACTIONS(12227), + [anon_sym_BSLASHitem] = ACTIONS(12227), + [anon_sym_LBRACK] = ACTIONS(12225), + [anon_sym_LBRACE] = ACTIONS(12225), + [anon_sym_LPAREN] = ACTIONS(12225), + [anon_sym_COMMA] = ACTIONS(12225), + [anon_sym_EQ] = ACTIONS(12225), + [sym_word] = ACTIONS(12225), + [sym_param] = ACTIONS(12225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12225), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12225), + [anon_sym_DOLLAR] = ACTIONS(12227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12225), + [anon_sym_BSLASHbegin] = ACTIONS(12227), + [anon_sym_BSLASHcaption] = ACTIONS(12227), + [anon_sym_BSLASHcite] = ACTIONS(12227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCite] = ACTIONS(12227), + [anon_sym_BSLASHnocite] = ACTIONS(12227), + [anon_sym_BSLASHcitet] = ACTIONS(12227), + [anon_sym_BSLASHcitep] = ACTIONS(12227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteauthor] = ACTIONS(12227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitetitle] = ACTIONS(12227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteyear] = ACTIONS(12227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitedate] = ACTIONS(12227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteurl] = ACTIONS(12227), + [anon_sym_BSLASHfullcite] = ACTIONS(12227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12227), + [anon_sym_BSLASHcitealt] = ACTIONS(12227), + [anon_sym_BSLASHcitealp] = ACTIONS(12227), + [anon_sym_BSLASHcitetext] = ACTIONS(12227), + [anon_sym_BSLASHparencite] = ACTIONS(12227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHParencite] = ACTIONS(12227), + [anon_sym_BSLASHfootcite] = ACTIONS(12227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12227), + [anon_sym_BSLASHtextcite] = ACTIONS(12227), + [anon_sym_BSLASHTextcite] = ACTIONS(12227), + [anon_sym_BSLASHsmartcite] = ACTIONS(12227), + [anon_sym_BSLASHSmartcite] = ACTIONS(12227), + [anon_sym_BSLASHsupercite] = ACTIONS(12227), + [anon_sym_BSLASHautocite] = ACTIONS(12227), + [anon_sym_BSLASHAutocite] = ACTIONS(12227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHvolcite] = ACTIONS(12227), + [anon_sym_BSLASHVolcite] = ACTIONS(12227), + [anon_sym_BSLASHpvolcite] = ACTIONS(12227), + [anon_sym_BSLASHPvolcite] = ACTIONS(12227), + [anon_sym_BSLASHfvolcite] = ACTIONS(12227), + [anon_sym_BSLASHftvolcite] = ACTIONS(12227), + [anon_sym_BSLASHsvolcite] = ACTIONS(12227), + [anon_sym_BSLASHSvolcite] = ACTIONS(12227), + [anon_sym_BSLASHtvolcite] = ACTIONS(12227), + [anon_sym_BSLASHTvolcite] = ACTIONS(12227), + [anon_sym_BSLASHavolcite] = ACTIONS(12227), + [anon_sym_BSLASHAvolcite] = ACTIONS(12227), + [anon_sym_BSLASHnotecite] = ACTIONS(12227), + [anon_sym_BSLASHpnotecite] = ACTIONS(12227), + [anon_sym_BSLASHPnotecite] = ACTIONS(12227), + [anon_sym_BSLASHfnotecite] = ACTIONS(12227), + [anon_sym_BSLASHusepackage] = ACTIONS(12227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12227), + [anon_sym_BSLASHinclude] = ACTIONS(12227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12227), + [anon_sym_BSLASHinput] = ACTIONS(12227), + [anon_sym_BSLASHsubfile] = ACTIONS(12227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12227), + [anon_sym_BSLASHbibliography] = ACTIONS(12227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12227), + [anon_sym_BSLASHincludesvg] = ACTIONS(12227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12227), + [anon_sym_BSLASHimport] = ACTIONS(12227), + [anon_sym_BSLASHsubimport] = ACTIONS(12227), + [anon_sym_BSLASHinputfrom] = ACTIONS(12227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12227), + [anon_sym_BSLASHincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHlabel] = ACTIONS(12227), + [anon_sym_BSLASHref] = ACTIONS(12227), + [anon_sym_BSLASHvref] = ACTIONS(12227), + [anon_sym_BSLASHVref] = ACTIONS(12227), + [anon_sym_BSLASHautoref] = ACTIONS(12227), + [anon_sym_BSLASHpageref] = ACTIONS(12227), + [anon_sym_BSLASHcref] = ACTIONS(12227), + [anon_sym_BSLASHCref] = ACTIONS(12227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnameCref] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHlabelcref] = ACTIONS(12227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12227), + [anon_sym_BSLASHeqref] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange] = ACTIONS(12227), + [anon_sym_BSLASHCrefrange] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewlabel] = ACTIONS(12227), + [anon_sym_BSLASHnewcommand] = ACTIONS(12227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12227), + [anon_sym_BSLASHgls] = ACTIONS(12227), + [anon_sym_BSLASHGls] = ACTIONS(12227), + [anon_sym_BSLASHGLS] = ACTIONS(12227), + [anon_sym_BSLASHglspl] = ACTIONS(12227), + [anon_sym_BSLASHGlspl] = ACTIONS(12227), + [anon_sym_BSLASHGLSpl] = ACTIONS(12227), + [anon_sym_BSLASHglsdisp] = ACTIONS(12227), + [anon_sym_BSLASHglslink] = ACTIONS(12227), + [anon_sym_BSLASHglstext] = ACTIONS(12227), + [anon_sym_BSLASHGlstext] = ACTIONS(12227), + [anon_sym_BSLASHGLStext] = ACTIONS(12227), + [anon_sym_BSLASHglsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12227), + [anon_sym_BSLASHglsplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSplural] = ACTIONS(12227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHglsname] = ACTIONS(12227), + [anon_sym_BSLASHGlsname] = ACTIONS(12227), + [anon_sym_BSLASHGLSname] = ACTIONS(12227), + [anon_sym_BSLASHglssymbol] = ACTIONS(12227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12227), + [anon_sym_BSLASHglsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12227), + [anon_sym_BSLASHglsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12227), + [anon_sym_BSLASHglsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12227), + [anon_sym_BSLASHglsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12227), + [anon_sym_BSLASHglsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12227), + [anon_sym_BSLASHnewacronym] = ACTIONS(12227), + [anon_sym_BSLASHacrshort] = ACTIONS(12227), + [anon_sym_BSLASHAcrshort] = ACTIONS(12227), + [anon_sym_BSLASHACRshort] = ACTIONS(12227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12227), + [anon_sym_BSLASHacrlong] = ACTIONS(12227), + [anon_sym_BSLASHAcrlong] = ACTIONS(12227), + [anon_sym_BSLASHACRlong] = ACTIONS(12227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12227), + [anon_sym_BSLASHacrfull] = ACTIONS(12227), + [anon_sym_BSLASHAcrfull] = ACTIONS(12227), + [anon_sym_BSLASHACRfull] = ACTIONS(12227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12227), + [anon_sym_BSLASHacs] = ACTIONS(12227), + [anon_sym_BSLASHAcs] = ACTIONS(12227), + [anon_sym_BSLASHacsp] = ACTIONS(12227), + [anon_sym_BSLASHAcsp] = ACTIONS(12227), + [anon_sym_BSLASHacl] = ACTIONS(12227), + [anon_sym_BSLASHAcl] = ACTIONS(12227), + [anon_sym_BSLASHaclp] = ACTIONS(12227), + [anon_sym_BSLASHAclp] = ACTIONS(12227), + [anon_sym_BSLASHacf] = ACTIONS(12227), + [anon_sym_BSLASHAcf] = ACTIONS(12227), + [anon_sym_BSLASHacfp] = ACTIONS(12227), + [anon_sym_BSLASHAcfp] = ACTIONS(12227), + [anon_sym_BSLASHac] = ACTIONS(12227), + [anon_sym_BSLASHAc] = ACTIONS(12227), + [anon_sym_BSLASHacp] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12227), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12227), + [anon_sym_BSLASHcolor] = ACTIONS(12227), + [anon_sym_BSLASHcolorbox] = ACTIONS(12227), + [anon_sym_BSLASHtextcolor] = ACTIONS(12227), + [anon_sym_BSLASHpagecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12227), + }, + [1045] = { + [sym_generic_command_name] = ACTIONS(12441), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12441), + [aux_sym_chapter_token1] = ACTIONS(12441), + [aux_sym_section_token1] = ACTIONS(12441), + [aux_sym_subsection_token1] = ACTIONS(12441), + [aux_sym_subsubsection_token1] = ACTIONS(12441), + [aux_sym_paragraph_token1] = ACTIONS(12441), + [aux_sym_subparagraph_token1] = ACTIONS(12441), + [anon_sym_BSLASHitem] = ACTIONS(12441), + [anon_sym_LBRACK] = ACTIONS(12439), + [anon_sym_LBRACE] = ACTIONS(12439), + [anon_sym_LPAREN] = ACTIONS(12439), + [anon_sym_COMMA] = ACTIONS(12439), + [anon_sym_EQ] = ACTIONS(12439), + [sym_word] = ACTIONS(12439), + [sym_param] = ACTIONS(12439), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12439), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12439), + [anon_sym_DOLLAR] = ACTIONS(12441), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12439), + [anon_sym_BSLASHbegin] = ACTIONS(12441), + [anon_sym_BSLASHcaption] = ACTIONS(12441), + [anon_sym_BSLASHcite] = ACTIONS(12441), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCite] = ACTIONS(12441), + [anon_sym_BSLASHnocite] = ACTIONS(12441), + [anon_sym_BSLASHcitet] = ACTIONS(12441), + [anon_sym_BSLASHcitep] = ACTIONS(12441), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteauthor] = ACTIONS(12441), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12441), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitetitle] = ACTIONS(12441), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteyear] = ACTIONS(12441), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitedate] = ACTIONS(12441), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteurl] = ACTIONS(12441), + [anon_sym_BSLASHfullcite] = ACTIONS(12441), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12441), + [anon_sym_BSLASHcitealt] = ACTIONS(12441), + [anon_sym_BSLASHcitealp] = ACTIONS(12441), + [anon_sym_BSLASHcitetext] = ACTIONS(12441), + [anon_sym_BSLASHparencite] = ACTIONS(12441), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHParencite] = ACTIONS(12441), + [anon_sym_BSLASHfootcite] = ACTIONS(12441), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12441), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12441), + [anon_sym_BSLASHtextcite] = ACTIONS(12441), + [anon_sym_BSLASHTextcite] = ACTIONS(12441), + [anon_sym_BSLASHsmartcite] = ACTIONS(12441), + [anon_sym_BSLASHSmartcite] = ACTIONS(12441), + [anon_sym_BSLASHsupercite] = ACTIONS(12441), + [anon_sym_BSLASHautocite] = ACTIONS(12441), + [anon_sym_BSLASHAutocite] = ACTIONS(12441), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHvolcite] = ACTIONS(12441), + [anon_sym_BSLASHVolcite] = ACTIONS(12441), + [anon_sym_BSLASHpvolcite] = ACTIONS(12441), + [anon_sym_BSLASHPvolcite] = ACTIONS(12441), + [anon_sym_BSLASHfvolcite] = ACTIONS(12441), + [anon_sym_BSLASHftvolcite] = ACTIONS(12441), + [anon_sym_BSLASHsvolcite] = ACTIONS(12441), + [anon_sym_BSLASHSvolcite] = ACTIONS(12441), + [anon_sym_BSLASHtvolcite] = ACTIONS(12441), + [anon_sym_BSLASHTvolcite] = ACTIONS(12441), + [anon_sym_BSLASHavolcite] = ACTIONS(12441), + [anon_sym_BSLASHAvolcite] = ACTIONS(12441), + [anon_sym_BSLASHnotecite] = ACTIONS(12441), + [anon_sym_BSLASHpnotecite] = ACTIONS(12441), + [anon_sym_BSLASHPnotecite] = ACTIONS(12441), + [anon_sym_BSLASHfnotecite] = ACTIONS(12441), + [anon_sym_BSLASHusepackage] = ACTIONS(12441), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12441), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12441), + [anon_sym_BSLASHinclude] = ACTIONS(12441), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12441), + [anon_sym_BSLASHinput] = ACTIONS(12441), + [anon_sym_BSLASHsubfile] = ACTIONS(12441), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12441), + [anon_sym_BSLASHbibliography] = ACTIONS(12441), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12441), + [anon_sym_BSLASHincludesvg] = ACTIONS(12441), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12441), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12441), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12441), + [anon_sym_BSLASHimport] = ACTIONS(12441), + [anon_sym_BSLASHsubimport] = ACTIONS(12441), + [anon_sym_BSLASHinputfrom] = ACTIONS(12441), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12441), + [anon_sym_BSLASHincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHlabel] = ACTIONS(12441), + [anon_sym_BSLASHref] = ACTIONS(12441), + [anon_sym_BSLASHvref] = ACTIONS(12441), + [anon_sym_BSLASHVref] = ACTIONS(12441), + [anon_sym_BSLASHautoref] = ACTIONS(12441), + [anon_sym_BSLASHpageref] = ACTIONS(12441), + [anon_sym_BSLASHcref] = ACTIONS(12441), + [anon_sym_BSLASHCref] = ACTIONS(12441), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnameCref] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHlabelcref] = ACTIONS(12441), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12441), + [anon_sym_BSLASHeqref] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange] = ACTIONS(12441), + [anon_sym_BSLASHCrefrange] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewlabel] = ACTIONS(12441), + [anon_sym_BSLASHnewcommand] = ACTIONS(12441), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12441), + [anon_sym_BSLASHgls] = ACTIONS(12441), + [anon_sym_BSLASHGls] = ACTIONS(12441), + [anon_sym_BSLASHGLS] = ACTIONS(12441), + [anon_sym_BSLASHglspl] = ACTIONS(12441), + [anon_sym_BSLASHGlspl] = ACTIONS(12441), + [anon_sym_BSLASHGLSpl] = ACTIONS(12441), + [anon_sym_BSLASHglsdisp] = ACTIONS(12441), + [anon_sym_BSLASHglslink] = ACTIONS(12441), + [anon_sym_BSLASHglstext] = ACTIONS(12441), + [anon_sym_BSLASHGlstext] = ACTIONS(12441), + [anon_sym_BSLASHGLStext] = ACTIONS(12441), + [anon_sym_BSLASHglsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12441), + [anon_sym_BSLASHglsplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSplural] = ACTIONS(12441), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHglsname] = ACTIONS(12441), + [anon_sym_BSLASHGlsname] = ACTIONS(12441), + [anon_sym_BSLASHGLSname] = ACTIONS(12441), + [anon_sym_BSLASHglssymbol] = ACTIONS(12441), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12441), + [anon_sym_BSLASHglsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12441), + [anon_sym_BSLASHglsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12441), + [anon_sym_BSLASHglsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12441), + [anon_sym_BSLASHglsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12441), + [anon_sym_BSLASHglsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12441), + [anon_sym_BSLASHnewacronym] = ACTIONS(12441), + [anon_sym_BSLASHacrshort] = ACTIONS(12441), + [anon_sym_BSLASHAcrshort] = ACTIONS(12441), + [anon_sym_BSLASHACRshort] = ACTIONS(12441), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12441), + [anon_sym_BSLASHacrlong] = ACTIONS(12441), + [anon_sym_BSLASHAcrlong] = ACTIONS(12441), + [anon_sym_BSLASHACRlong] = ACTIONS(12441), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12441), + [anon_sym_BSLASHacrfull] = ACTIONS(12441), + [anon_sym_BSLASHAcrfull] = ACTIONS(12441), + [anon_sym_BSLASHACRfull] = ACTIONS(12441), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12441), + [anon_sym_BSLASHacs] = ACTIONS(12441), + [anon_sym_BSLASHAcs] = ACTIONS(12441), + [anon_sym_BSLASHacsp] = ACTIONS(12441), + [anon_sym_BSLASHAcsp] = ACTIONS(12441), + [anon_sym_BSLASHacl] = ACTIONS(12441), + [anon_sym_BSLASHAcl] = ACTIONS(12441), + [anon_sym_BSLASHaclp] = ACTIONS(12441), + [anon_sym_BSLASHAclp] = ACTIONS(12441), + [anon_sym_BSLASHacf] = ACTIONS(12441), + [anon_sym_BSLASHAcf] = ACTIONS(12441), + [anon_sym_BSLASHacfp] = ACTIONS(12441), + [anon_sym_BSLASHAcfp] = ACTIONS(12441), + [anon_sym_BSLASHac] = ACTIONS(12441), + [anon_sym_BSLASHAc] = ACTIONS(12441), + [anon_sym_BSLASHacp] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12441), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12441), + [anon_sym_BSLASHcolor] = ACTIONS(12441), + [anon_sym_BSLASHcolorbox] = ACTIONS(12441), + [anon_sym_BSLASHtextcolor] = ACTIONS(12441), + [anon_sym_BSLASHpagecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12441), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12441), + }, + [1046] = { + [sym_generic_command_name] = ACTIONS(12445), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12445), + [aux_sym_chapter_token1] = ACTIONS(12445), + [aux_sym_section_token1] = ACTIONS(12445), + [aux_sym_subsection_token1] = ACTIONS(12445), + [aux_sym_subsubsection_token1] = ACTIONS(12445), + [aux_sym_paragraph_token1] = ACTIONS(12445), + [aux_sym_subparagraph_token1] = ACTIONS(12445), + [anon_sym_BSLASHitem] = ACTIONS(12445), + [anon_sym_LBRACK] = ACTIONS(12443), + [anon_sym_LBRACE] = ACTIONS(12443), + [anon_sym_LPAREN] = ACTIONS(12443), + [anon_sym_COMMA] = ACTIONS(12443), + [anon_sym_EQ] = ACTIONS(12443), + [sym_word] = ACTIONS(12443), + [sym_param] = ACTIONS(12443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12443), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12443), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12443), + [anon_sym_DOLLAR] = ACTIONS(12445), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12443), + [anon_sym_BSLASHbegin] = ACTIONS(12445), + [anon_sym_BSLASHcaption] = ACTIONS(12445), + [anon_sym_BSLASHcite] = ACTIONS(12445), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCite] = ACTIONS(12445), + [anon_sym_BSLASHnocite] = ACTIONS(12445), + [anon_sym_BSLASHcitet] = ACTIONS(12445), + [anon_sym_BSLASHcitep] = ACTIONS(12445), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteauthor] = ACTIONS(12445), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12445), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitetitle] = ACTIONS(12445), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteyear] = ACTIONS(12445), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitedate] = ACTIONS(12445), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteurl] = ACTIONS(12445), + [anon_sym_BSLASHfullcite] = ACTIONS(12445), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12445), + [anon_sym_BSLASHcitealt] = ACTIONS(12445), + [anon_sym_BSLASHcitealp] = ACTIONS(12445), + [anon_sym_BSLASHcitetext] = ACTIONS(12445), + [anon_sym_BSLASHparencite] = ACTIONS(12445), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHParencite] = ACTIONS(12445), + [anon_sym_BSLASHfootcite] = ACTIONS(12445), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12445), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12445), + [anon_sym_BSLASHtextcite] = ACTIONS(12445), + [anon_sym_BSLASHTextcite] = ACTIONS(12445), + [anon_sym_BSLASHsmartcite] = ACTIONS(12445), + [anon_sym_BSLASHSmartcite] = ACTIONS(12445), + [anon_sym_BSLASHsupercite] = ACTIONS(12445), + [anon_sym_BSLASHautocite] = ACTIONS(12445), + [anon_sym_BSLASHAutocite] = ACTIONS(12445), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHvolcite] = ACTIONS(12445), + [anon_sym_BSLASHVolcite] = ACTIONS(12445), + [anon_sym_BSLASHpvolcite] = ACTIONS(12445), + [anon_sym_BSLASHPvolcite] = ACTIONS(12445), + [anon_sym_BSLASHfvolcite] = ACTIONS(12445), + [anon_sym_BSLASHftvolcite] = ACTIONS(12445), + [anon_sym_BSLASHsvolcite] = ACTIONS(12445), + [anon_sym_BSLASHSvolcite] = ACTIONS(12445), + [anon_sym_BSLASHtvolcite] = ACTIONS(12445), + [anon_sym_BSLASHTvolcite] = ACTIONS(12445), + [anon_sym_BSLASHavolcite] = ACTIONS(12445), + [anon_sym_BSLASHAvolcite] = ACTIONS(12445), + [anon_sym_BSLASHnotecite] = ACTIONS(12445), + [anon_sym_BSLASHpnotecite] = ACTIONS(12445), + [anon_sym_BSLASHPnotecite] = ACTIONS(12445), + [anon_sym_BSLASHfnotecite] = ACTIONS(12445), + [anon_sym_BSLASHusepackage] = ACTIONS(12445), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12445), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12445), + [anon_sym_BSLASHinclude] = ACTIONS(12445), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12445), + [anon_sym_BSLASHinput] = ACTIONS(12445), + [anon_sym_BSLASHsubfile] = ACTIONS(12445), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12445), + [anon_sym_BSLASHbibliography] = ACTIONS(12445), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12445), + [anon_sym_BSLASHincludesvg] = ACTIONS(12445), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12445), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12445), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12445), + [anon_sym_BSLASHimport] = ACTIONS(12445), + [anon_sym_BSLASHsubimport] = ACTIONS(12445), + [anon_sym_BSLASHinputfrom] = ACTIONS(12445), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12445), + [anon_sym_BSLASHincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHlabel] = ACTIONS(12445), + [anon_sym_BSLASHref] = ACTIONS(12445), + [anon_sym_BSLASHvref] = ACTIONS(12445), + [anon_sym_BSLASHVref] = ACTIONS(12445), + [anon_sym_BSLASHautoref] = ACTIONS(12445), + [anon_sym_BSLASHpageref] = ACTIONS(12445), + [anon_sym_BSLASHcref] = ACTIONS(12445), + [anon_sym_BSLASHCref] = ACTIONS(12445), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnameCref] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHlabelcref] = ACTIONS(12445), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12445), + [anon_sym_BSLASHeqref] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange] = ACTIONS(12445), + [anon_sym_BSLASHCrefrange] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewlabel] = ACTIONS(12445), + [anon_sym_BSLASHnewcommand] = ACTIONS(12445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12445), + [anon_sym_BSLASHgls] = ACTIONS(12445), + [anon_sym_BSLASHGls] = ACTIONS(12445), + [anon_sym_BSLASHGLS] = ACTIONS(12445), + [anon_sym_BSLASHglspl] = ACTIONS(12445), + [anon_sym_BSLASHGlspl] = ACTIONS(12445), + [anon_sym_BSLASHGLSpl] = ACTIONS(12445), + [anon_sym_BSLASHglsdisp] = ACTIONS(12445), + [anon_sym_BSLASHglslink] = ACTIONS(12445), + [anon_sym_BSLASHglstext] = ACTIONS(12445), + [anon_sym_BSLASHGlstext] = ACTIONS(12445), + [anon_sym_BSLASHGLStext] = ACTIONS(12445), + [anon_sym_BSLASHglsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12445), + [anon_sym_BSLASHglsplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSplural] = ACTIONS(12445), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHglsname] = ACTIONS(12445), + [anon_sym_BSLASHGlsname] = ACTIONS(12445), + [anon_sym_BSLASHGLSname] = ACTIONS(12445), + [anon_sym_BSLASHglssymbol] = ACTIONS(12445), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12445), + [anon_sym_BSLASHglsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12445), + [anon_sym_BSLASHglsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12445), + [anon_sym_BSLASHglsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12445), + [anon_sym_BSLASHglsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12445), + [anon_sym_BSLASHglsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12445), + [anon_sym_BSLASHnewacronym] = ACTIONS(12445), + [anon_sym_BSLASHacrshort] = ACTIONS(12445), + [anon_sym_BSLASHAcrshort] = ACTIONS(12445), + [anon_sym_BSLASHACRshort] = ACTIONS(12445), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12445), + [anon_sym_BSLASHacrlong] = ACTIONS(12445), + [anon_sym_BSLASHAcrlong] = ACTIONS(12445), + [anon_sym_BSLASHACRlong] = ACTIONS(12445), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12445), + [anon_sym_BSLASHacrfull] = ACTIONS(12445), + [anon_sym_BSLASHAcrfull] = ACTIONS(12445), + [anon_sym_BSLASHACRfull] = ACTIONS(12445), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12445), + [anon_sym_BSLASHacs] = ACTIONS(12445), + [anon_sym_BSLASHAcs] = ACTIONS(12445), + [anon_sym_BSLASHacsp] = ACTIONS(12445), + [anon_sym_BSLASHAcsp] = ACTIONS(12445), + [anon_sym_BSLASHacl] = ACTIONS(12445), + [anon_sym_BSLASHAcl] = ACTIONS(12445), + [anon_sym_BSLASHaclp] = ACTIONS(12445), + [anon_sym_BSLASHAclp] = ACTIONS(12445), + [anon_sym_BSLASHacf] = ACTIONS(12445), + [anon_sym_BSLASHAcf] = ACTIONS(12445), + [anon_sym_BSLASHacfp] = ACTIONS(12445), + [anon_sym_BSLASHAcfp] = ACTIONS(12445), + [anon_sym_BSLASHac] = ACTIONS(12445), + [anon_sym_BSLASHAc] = ACTIONS(12445), + [anon_sym_BSLASHacp] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12445), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12445), + [anon_sym_BSLASHcolor] = ACTIONS(12445), + [anon_sym_BSLASHcolorbox] = ACTIONS(12445), + [anon_sym_BSLASHtextcolor] = ACTIONS(12445), + [anon_sym_BSLASHpagecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12445), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12445), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12445), + }, + [1047] = { + [sym_generic_command_name] = ACTIONS(12505), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12505), + [aux_sym_chapter_token1] = ACTIONS(12505), + [aux_sym_section_token1] = ACTIONS(12505), + [aux_sym_subsection_token1] = ACTIONS(12505), + [aux_sym_subsubsection_token1] = ACTIONS(12505), + [aux_sym_paragraph_token1] = ACTIONS(12505), + [aux_sym_subparagraph_token1] = ACTIONS(12505), + [anon_sym_BSLASHitem] = ACTIONS(12505), + [anon_sym_LBRACK] = ACTIONS(12503), + [anon_sym_LBRACE] = ACTIONS(12503), + [anon_sym_LPAREN] = ACTIONS(12503), + [anon_sym_COMMA] = ACTIONS(12503), + [anon_sym_EQ] = ACTIONS(12503), + [sym_word] = ACTIONS(12503), + [sym_param] = ACTIONS(12503), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12503), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12503), + [anon_sym_DOLLAR] = ACTIONS(12505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12503), + [anon_sym_BSLASHbegin] = ACTIONS(12505), + [anon_sym_BSLASHcaption] = ACTIONS(12505), + [anon_sym_BSLASHcite] = ACTIONS(12505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCite] = ACTIONS(12505), + [anon_sym_BSLASHnocite] = ACTIONS(12505), + [anon_sym_BSLASHcitet] = ACTIONS(12505), + [anon_sym_BSLASHcitep] = ACTIONS(12505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteauthor] = ACTIONS(12505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitetitle] = ACTIONS(12505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteyear] = ACTIONS(12505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitedate] = ACTIONS(12505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteurl] = ACTIONS(12505), + [anon_sym_BSLASHfullcite] = ACTIONS(12505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12505), + [anon_sym_BSLASHcitealt] = ACTIONS(12505), + [anon_sym_BSLASHcitealp] = ACTIONS(12505), + [anon_sym_BSLASHcitetext] = ACTIONS(12505), + [anon_sym_BSLASHparencite] = ACTIONS(12505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHParencite] = ACTIONS(12505), + [anon_sym_BSLASHfootcite] = ACTIONS(12505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12505), + [anon_sym_BSLASHtextcite] = ACTIONS(12505), + [anon_sym_BSLASHTextcite] = ACTIONS(12505), + [anon_sym_BSLASHsmartcite] = ACTIONS(12505), + [anon_sym_BSLASHSmartcite] = ACTIONS(12505), + [anon_sym_BSLASHsupercite] = ACTIONS(12505), + [anon_sym_BSLASHautocite] = ACTIONS(12505), + [anon_sym_BSLASHAutocite] = ACTIONS(12505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHvolcite] = ACTIONS(12505), + [anon_sym_BSLASHVolcite] = ACTIONS(12505), + [anon_sym_BSLASHpvolcite] = ACTIONS(12505), + [anon_sym_BSLASHPvolcite] = ACTIONS(12505), + [anon_sym_BSLASHfvolcite] = ACTIONS(12505), + [anon_sym_BSLASHftvolcite] = ACTIONS(12505), + [anon_sym_BSLASHsvolcite] = ACTIONS(12505), + [anon_sym_BSLASHSvolcite] = ACTIONS(12505), + [anon_sym_BSLASHtvolcite] = ACTIONS(12505), + [anon_sym_BSLASHTvolcite] = ACTIONS(12505), + [anon_sym_BSLASHavolcite] = ACTIONS(12505), + [anon_sym_BSLASHAvolcite] = ACTIONS(12505), + [anon_sym_BSLASHnotecite] = ACTIONS(12505), + [anon_sym_BSLASHpnotecite] = ACTIONS(12505), + [anon_sym_BSLASHPnotecite] = ACTIONS(12505), + [anon_sym_BSLASHfnotecite] = ACTIONS(12505), + [anon_sym_BSLASHusepackage] = ACTIONS(12505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12505), + [anon_sym_BSLASHinclude] = ACTIONS(12505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12505), + [anon_sym_BSLASHinput] = ACTIONS(12505), + [anon_sym_BSLASHsubfile] = ACTIONS(12505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12505), + [anon_sym_BSLASHbibliography] = ACTIONS(12505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12505), + [anon_sym_BSLASHincludesvg] = ACTIONS(12505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12505), + [anon_sym_BSLASHimport] = ACTIONS(12505), + [anon_sym_BSLASHsubimport] = ACTIONS(12505), + [anon_sym_BSLASHinputfrom] = ACTIONS(12505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12505), + [anon_sym_BSLASHincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHlabel] = ACTIONS(12505), + [anon_sym_BSLASHref] = ACTIONS(12505), + [anon_sym_BSLASHvref] = ACTIONS(12505), + [anon_sym_BSLASHVref] = ACTIONS(12505), + [anon_sym_BSLASHautoref] = ACTIONS(12505), + [anon_sym_BSLASHpageref] = ACTIONS(12505), + [anon_sym_BSLASHcref] = ACTIONS(12505), + [anon_sym_BSLASHCref] = ACTIONS(12505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnameCref] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHlabelcref] = ACTIONS(12505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12505), + [anon_sym_BSLASHeqref] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange] = ACTIONS(12505), + [anon_sym_BSLASHCrefrange] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewlabel] = ACTIONS(12505), + [anon_sym_BSLASHnewcommand] = ACTIONS(12505), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12505), + [anon_sym_BSLASHgls] = ACTIONS(12505), + [anon_sym_BSLASHGls] = ACTIONS(12505), + [anon_sym_BSLASHGLS] = ACTIONS(12505), + [anon_sym_BSLASHglspl] = ACTIONS(12505), + [anon_sym_BSLASHGlspl] = ACTIONS(12505), + [anon_sym_BSLASHGLSpl] = ACTIONS(12505), + [anon_sym_BSLASHglsdisp] = ACTIONS(12505), + [anon_sym_BSLASHglslink] = ACTIONS(12505), + [anon_sym_BSLASHglstext] = ACTIONS(12505), + [anon_sym_BSLASHGlstext] = ACTIONS(12505), + [anon_sym_BSLASHGLStext] = ACTIONS(12505), + [anon_sym_BSLASHglsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12505), + [anon_sym_BSLASHglsplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSplural] = ACTIONS(12505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHglsname] = ACTIONS(12505), + [anon_sym_BSLASHGlsname] = ACTIONS(12505), + [anon_sym_BSLASHGLSname] = ACTIONS(12505), + [anon_sym_BSLASHglssymbol] = ACTIONS(12505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12505), + [anon_sym_BSLASHglsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12505), + [anon_sym_BSLASHglsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12505), + [anon_sym_BSLASHglsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12505), + [anon_sym_BSLASHglsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12505), + [anon_sym_BSLASHglsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12505), + [anon_sym_BSLASHnewacronym] = ACTIONS(12505), + [anon_sym_BSLASHacrshort] = ACTIONS(12505), + [anon_sym_BSLASHAcrshort] = ACTIONS(12505), + [anon_sym_BSLASHACRshort] = ACTIONS(12505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12505), + [anon_sym_BSLASHacrlong] = ACTIONS(12505), + [anon_sym_BSLASHAcrlong] = ACTIONS(12505), + [anon_sym_BSLASHACRlong] = ACTIONS(12505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12505), + [anon_sym_BSLASHacrfull] = ACTIONS(12505), + [anon_sym_BSLASHAcrfull] = ACTIONS(12505), + [anon_sym_BSLASHACRfull] = ACTIONS(12505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12505), + [anon_sym_BSLASHacs] = ACTIONS(12505), + [anon_sym_BSLASHAcs] = ACTIONS(12505), + [anon_sym_BSLASHacsp] = ACTIONS(12505), + [anon_sym_BSLASHAcsp] = ACTIONS(12505), + [anon_sym_BSLASHacl] = ACTIONS(12505), + [anon_sym_BSLASHAcl] = ACTIONS(12505), + [anon_sym_BSLASHaclp] = ACTIONS(12505), + [anon_sym_BSLASHAclp] = ACTIONS(12505), + [anon_sym_BSLASHacf] = ACTIONS(12505), + [anon_sym_BSLASHAcf] = ACTIONS(12505), + [anon_sym_BSLASHacfp] = ACTIONS(12505), + [anon_sym_BSLASHAcfp] = ACTIONS(12505), + [anon_sym_BSLASHac] = ACTIONS(12505), + [anon_sym_BSLASHAc] = ACTIONS(12505), + [anon_sym_BSLASHacp] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12505), + [anon_sym_BSLASHcolor] = ACTIONS(12505), + [anon_sym_BSLASHcolorbox] = ACTIONS(12505), + [anon_sym_BSLASHtextcolor] = ACTIONS(12505), + [anon_sym_BSLASHpagecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12505), + }, + [1048] = { + [sym_generic_command_name] = ACTIONS(12453), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12453), + [aux_sym_chapter_token1] = ACTIONS(12453), + [aux_sym_section_token1] = ACTIONS(12453), + [aux_sym_subsection_token1] = ACTIONS(12453), + [aux_sym_subsubsection_token1] = ACTIONS(12453), + [aux_sym_paragraph_token1] = ACTIONS(12453), + [aux_sym_subparagraph_token1] = ACTIONS(12453), + [anon_sym_BSLASHitem] = ACTIONS(12453), + [anon_sym_LBRACK] = ACTIONS(12451), + [anon_sym_LBRACE] = ACTIONS(12451), + [anon_sym_LPAREN] = ACTIONS(12451), + [anon_sym_COMMA] = ACTIONS(12451), + [anon_sym_EQ] = ACTIONS(12451), + [sym_word] = ACTIONS(12451), + [sym_param] = ACTIONS(12451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12451), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12451), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12451), + [anon_sym_DOLLAR] = ACTIONS(12453), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12451), + [anon_sym_BSLASHbegin] = ACTIONS(12453), + [anon_sym_BSLASHcaption] = ACTIONS(12453), + [anon_sym_BSLASHcite] = ACTIONS(12453), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCite] = ACTIONS(12453), + [anon_sym_BSLASHnocite] = ACTIONS(12453), + [anon_sym_BSLASHcitet] = ACTIONS(12453), + [anon_sym_BSLASHcitep] = ACTIONS(12453), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteauthor] = ACTIONS(12453), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12453), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitetitle] = ACTIONS(12453), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteyear] = ACTIONS(12453), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitedate] = ACTIONS(12453), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteurl] = ACTIONS(12453), + [anon_sym_BSLASHfullcite] = ACTIONS(12453), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12453), + [anon_sym_BSLASHcitealt] = ACTIONS(12453), + [anon_sym_BSLASHcitealp] = ACTIONS(12453), + [anon_sym_BSLASHcitetext] = ACTIONS(12453), + [anon_sym_BSLASHparencite] = ACTIONS(12453), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHParencite] = ACTIONS(12453), + [anon_sym_BSLASHfootcite] = ACTIONS(12453), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12453), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12453), + [anon_sym_BSLASHtextcite] = ACTIONS(12453), + [anon_sym_BSLASHTextcite] = ACTIONS(12453), + [anon_sym_BSLASHsmartcite] = ACTIONS(12453), + [anon_sym_BSLASHSmartcite] = ACTIONS(12453), + [anon_sym_BSLASHsupercite] = ACTIONS(12453), + [anon_sym_BSLASHautocite] = ACTIONS(12453), + [anon_sym_BSLASHAutocite] = ACTIONS(12453), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHvolcite] = ACTIONS(12453), + [anon_sym_BSLASHVolcite] = ACTIONS(12453), + [anon_sym_BSLASHpvolcite] = ACTIONS(12453), + [anon_sym_BSLASHPvolcite] = ACTIONS(12453), + [anon_sym_BSLASHfvolcite] = ACTIONS(12453), + [anon_sym_BSLASHftvolcite] = ACTIONS(12453), + [anon_sym_BSLASHsvolcite] = ACTIONS(12453), + [anon_sym_BSLASHSvolcite] = ACTIONS(12453), + [anon_sym_BSLASHtvolcite] = ACTIONS(12453), + [anon_sym_BSLASHTvolcite] = ACTIONS(12453), + [anon_sym_BSLASHavolcite] = ACTIONS(12453), + [anon_sym_BSLASHAvolcite] = ACTIONS(12453), + [anon_sym_BSLASHnotecite] = ACTIONS(12453), + [anon_sym_BSLASHpnotecite] = ACTIONS(12453), + [anon_sym_BSLASHPnotecite] = ACTIONS(12453), + [anon_sym_BSLASHfnotecite] = ACTIONS(12453), + [anon_sym_BSLASHusepackage] = ACTIONS(12453), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12453), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12453), + [anon_sym_BSLASHinclude] = ACTIONS(12453), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12453), + [anon_sym_BSLASHinput] = ACTIONS(12453), + [anon_sym_BSLASHsubfile] = ACTIONS(12453), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12453), + [anon_sym_BSLASHbibliography] = ACTIONS(12453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12453), + [anon_sym_BSLASHincludesvg] = ACTIONS(12453), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12453), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12453), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12453), + [anon_sym_BSLASHimport] = ACTIONS(12453), + [anon_sym_BSLASHsubimport] = ACTIONS(12453), + [anon_sym_BSLASHinputfrom] = ACTIONS(12453), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12453), + [anon_sym_BSLASHincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHlabel] = ACTIONS(12453), + [anon_sym_BSLASHref] = ACTIONS(12453), + [anon_sym_BSLASHvref] = ACTIONS(12453), + [anon_sym_BSLASHVref] = ACTIONS(12453), + [anon_sym_BSLASHautoref] = ACTIONS(12453), + [anon_sym_BSLASHpageref] = ACTIONS(12453), + [anon_sym_BSLASHcref] = ACTIONS(12453), + [anon_sym_BSLASHCref] = ACTIONS(12453), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnameCref] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHlabelcref] = ACTIONS(12453), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12453), + [anon_sym_BSLASHeqref] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange] = ACTIONS(12453), + [anon_sym_BSLASHCrefrange] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewlabel] = ACTIONS(12453), + [anon_sym_BSLASHnewcommand] = ACTIONS(12453), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12453), + [anon_sym_BSLASHgls] = ACTIONS(12453), + [anon_sym_BSLASHGls] = ACTIONS(12453), + [anon_sym_BSLASHGLS] = ACTIONS(12453), + [anon_sym_BSLASHglspl] = ACTIONS(12453), + [anon_sym_BSLASHGlspl] = ACTIONS(12453), + [anon_sym_BSLASHGLSpl] = ACTIONS(12453), + [anon_sym_BSLASHglsdisp] = ACTIONS(12453), + [anon_sym_BSLASHglslink] = ACTIONS(12453), + [anon_sym_BSLASHglstext] = ACTIONS(12453), + [anon_sym_BSLASHGlstext] = ACTIONS(12453), + [anon_sym_BSLASHGLStext] = ACTIONS(12453), + [anon_sym_BSLASHglsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12453), + [anon_sym_BSLASHglsplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSplural] = ACTIONS(12453), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHglsname] = ACTIONS(12453), + [anon_sym_BSLASHGlsname] = ACTIONS(12453), + [anon_sym_BSLASHGLSname] = ACTIONS(12453), + [anon_sym_BSLASHglssymbol] = ACTIONS(12453), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12453), + [anon_sym_BSLASHglsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12453), + [anon_sym_BSLASHglsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12453), + [anon_sym_BSLASHglsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12453), + [anon_sym_BSLASHglsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12453), + [anon_sym_BSLASHglsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12453), + [anon_sym_BSLASHnewacronym] = ACTIONS(12453), + [anon_sym_BSLASHacrshort] = ACTIONS(12453), + [anon_sym_BSLASHAcrshort] = ACTIONS(12453), + [anon_sym_BSLASHACRshort] = ACTIONS(12453), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12453), + [anon_sym_BSLASHacrlong] = ACTIONS(12453), + [anon_sym_BSLASHAcrlong] = ACTIONS(12453), + [anon_sym_BSLASHACRlong] = ACTIONS(12453), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12453), + [anon_sym_BSLASHacrfull] = ACTIONS(12453), + [anon_sym_BSLASHAcrfull] = ACTIONS(12453), + [anon_sym_BSLASHACRfull] = ACTIONS(12453), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12453), + [anon_sym_BSLASHacs] = ACTIONS(12453), + [anon_sym_BSLASHAcs] = ACTIONS(12453), + [anon_sym_BSLASHacsp] = ACTIONS(12453), + [anon_sym_BSLASHAcsp] = ACTIONS(12453), + [anon_sym_BSLASHacl] = ACTIONS(12453), + [anon_sym_BSLASHAcl] = ACTIONS(12453), + [anon_sym_BSLASHaclp] = ACTIONS(12453), + [anon_sym_BSLASHAclp] = ACTIONS(12453), + [anon_sym_BSLASHacf] = ACTIONS(12453), + [anon_sym_BSLASHAcf] = ACTIONS(12453), + [anon_sym_BSLASHacfp] = ACTIONS(12453), + [anon_sym_BSLASHAcfp] = ACTIONS(12453), + [anon_sym_BSLASHac] = ACTIONS(12453), + [anon_sym_BSLASHAc] = ACTIONS(12453), + [anon_sym_BSLASHacp] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12453), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12453), + [anon_sym_BSLASHcolor] = ACTIONS(12453), + [anon_sym_BSLASHcolorbox] = ACTIONS(12453), + [anon_sym_BSLASHtextcolor] = ACTIONS(12453), + [anon_sym_BSLASHpagecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12453), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12453), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12453), + }, + [1049] = { + [sym_generic_command_name] = ACTIONS(12461), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12461), + [aux_sym_chapter_token1] = ACTIONS(12461), + [aux_sym_section_token1] = ACTIONS(12461), + [aux_sym_subsection_token1] = ACTIONS(12461), + [aux_sym_subsubsection_token1] = ACTIONS(12461), + [aux_sym_paragraph_token1] = ACTIONS(12461), + [aux_sym_subparagraph_token1] = ACTIONS(12461), + [anon_sym_BSLASHitem] = ACTIONS(12461), + [anon_sym_LBRACK] = ACTIONS(12459), + [anon_sym_LBRACE] = ACTIONS(12459), + [anon_sym_LPAREN] = ACTIONS(12459), + [anon_sym_COMMA] = ACTIONS(12459), + [anon_sym_EQ] = ACTIONS(12459), + [sym_word] = ACTIONS(12459), + [sym_param] = ACTIONS(12459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12459), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12459), + [anon_sym_DOLLAR] = ACTIONS(12461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12459), + [anon_sym_BSLASHbegin] = ACTIONS(12461), + [anon_sym_BSLASHcaption] = ACTIONS(12461), + [anon_sym_BSLASHcite] = ACTIONS(12461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCite] = ACTIONS(12461), + [anon_sym_BSLASHnocite] = ACTIONS(12461), + [anon_sym_BSLASHcitet] = ACTIONS(12461), + [anon_sym_BSLASHcitep] = ACTIONS(12461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteauthor] = ACTIONS(12461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitetitle] = ACTIONS(12461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteyear] = ACTIONS(12461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitedate] = ACTIONS(12461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteurl] = ACTIONS(12461), + [anon_sym_BSLASHfullcite] = ACTIONS(12461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12461), + [anon_sym_BSLASHcitealt] = ACTIONS(12461), + [anon_sym_BSLASHcitealp] = ACTIONS(12461), + [anon_sym_BSLASHcitetext] = ACTIONS(12461), + [anon_sym_BSLASHparencite] = ACTIONS(12461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHParencite] = ACTIONS(12461), + [anon_sym_BSLASHfootcite] = ACTIONS(12461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12461), + [anon_sym_BSLASHtextcite] = ACTIONS(12461), + [anon_sym_BSLASHTextcite] = ACTIONS(12461), + [anon_sym_BSLASHsmartcite] = ACTIONS(12461), + [anon_sym_BSLASHSmartcite] = ACTIONS(12461), + [anon_sym_BSLASHsupercite] = ACTIONS(12461), + [anon_sym_BSLASHautocite] = ACTIONS(12461), + [anon_sym_BSLASHAutocite] = ACTIONS(12461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHvolcite] = ACTIONS(12461), + [anon_sym_BSLASHVolcite] = ACTIONS(12461), + [anon_sym_BSLASHpvolcite] = ACTIONS(12461), + [anon_sym_BSLASHPvolcite] = ACTIONS(12461), + [anon_sym_BSLASHfvolcite] = ACTIONS(12461), + [anon_sym_BSLASHftvolcite] = ACTIONS(12461), + [anon_sym_BSLASHsvolcite] = ACTIONS(12461), + [anon_sym_BSLASHSvolcite] = ACTIONS(12461), + [anon_sym_BSLASHtvolcite] = ACTIONS(12461), + [anon_sym_BSLASHTvolcite] = ACTIONS(12461), + [anon_sym_BSLASHavolcite] = ACTIONS(12461), + [anon_sym_BSLASHAvolcite] = ACTIONS(12461), + [anon_sym_BSLASHnotecite] = ACTIONS(12461), + [anon_sym_BSLASHpnotecite] = ACTIONS(12461), + [anon_sym_BSLASHPnotecite] = ACTIONS(12461), + [anon_sym_BSLASHfnotecite] = ACTIONS(12461), + [anon_sym_BSLASHusepackage] = ACTIONS(12461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12461), + [anon_sym_BSLASHinclude] = ACTIONS(12461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12461), + [anon_sym_BSLASHinput] = ACTIONS(12461), + [anon_sym_BSLASHsubfile] = ACTIONS(12461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12461), + [anon_sym_BSLASHbibliography] = ACTIONS(12461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12461), + [anon_sym_BSLASHincludesvg] = ACTIONS(12461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12461), + [anon_sym_BSLASHimport] = ACTIONS(12461), + [anon_sym_BSLASHsubimport] = ACTIONS(12461), + [anon_sym_BSLASHinputfrom] = ACTIONS(12461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12461), + [anon_sym_BSLASHincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHlabel] = ACTIONS(12461), + [anon_sym_BSLASHref] = ACTIONS(12461), + [anon_sym_BSLASHvref] = ACTIONS(12461), + [anon_sym_BSLASHVref] = ACTIONS(12461), + [anon_sym_BSLASHautoref] = ACTIONS(12461), + [anon_sym_BSLASHpageref] = ACTIONS(12461), + [anon_sym_BSLASHcref] = ACTIONS(12461), + [anon_sym_BSLASHCref] = ACTIONS(12461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnameCref] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHlabelcref] = ACTIONS(12461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12461), + [anon_sym_BSLASHeqref] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange] = ACTIONS(12461), + [anon_sym_BSLASHCrefrange] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewlabel] = ACTIONS(12461), + [anon_sym_BSLASHnewcommand] = ACTIONS(12461), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12461), + [anon_sym_BSLASHgls] = ACTIONS(12461), + [anon_sym_BSLASHGls] = ACTIONS(12461), + [anon_sym_BSLASHGLS] = ACTIONS(12461), + [anon_sym_BSLASHglspl] = ACTIONS(12461), + [anon_sym_BSLASHGlspl] = ACTIONS(12461), + [anon_sym_BSLASHGLSpl] = ACTIONS(12461), + [anon_sym_BSLASHglsdisp] = ACTIONS(12461), + [anon_sym_BSLASHglslink] = ACTIONS(12461), + [anon_sym_BSLASHglstext] = ACTIONS(12461), + [anon_sym_BSLASHGlstext] = ACTIONS(12461), + [anon_sym_BSLASHGLStext] = ACTIONS(12461), + [anon_sym_BSLASHglsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12461), + [anon_sym_BSLASHglsplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSplural] = ACTIONS(12461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHglsname] = ACTIONS(12461), + [anon_sym_BSLASHGlsname] = ACTIONS(12461), + [anon_sym_BSLASHGLSname] = ACTIONS(12461), + [anon_sym_BSLASHglssymbol] = ACTIONS(12461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12461), + [anon_sym_BSLASHglsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12461), + [anon_sym_BSLASHglsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12461), + [anon_sym_BSLASHglsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12461), + [anon_sym_BSLASHglsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12461), + [anon_sym_BSLASHglsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12461), + [anon_sym_BSLASHnewacronym] = ACTIONS(12461), + [anon_sym_BSLASHacrshort] = ACTIONS(12461), + [anon_sym_BSLASHAcrshort] = ACTIONS(12461), + [anon_sym_BSLASHACRshort] = ACTIONS(12461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12461), + [anon_sym_BSLASHacrlong] = ACTIONS(12461), + [anon_sym_BSLASHAcrlong] = ACTIONS(12461), + [anon_sym_BSLASHACRlong] = ACTIONS(12461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12461), + [anon_sym_BSLASHacrfull] = ACTIONS(12461), + [anon_sym_BSLASHAcrfull] = ACTIONS(12461), + [anon_sym_BSLASHACRfull] = ACTIONS(12461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12461), + [anon_sym_BSLASHacs] = ACTIONS(12461), + [anon_sym_BSLASHAcs] = ACTIONS(12461), + [anon_sym_BSLASHacsp] = ACTIONS(12461), + [anon_sym_BSLASHAcsp] = ACTIONS(12461), + [anon_sym_BSLASHacl] = ACTIONS(12461), + [anon_sym_BSLASHAcl] = ACTIONS(12461), + [anon_sym_BSLASHaclp] = ACTIONS(12461), + [anon_sym_BSLASHAclp] = ACTIONS(12461), + [anon_sym_BSLASHacf] = ACTIONS(12461), + [anon_sym_BSLASHAcf] = ACTIONS(12461), + [anon_sym_BSLASHacfp] = ACTIONS(12461), + [anon_sym_BSLASHAcfp] = ACTIONS(12461), + [anon_sym_BSLASHac] = ACTIONS(12461), + [anon_sym_BSLASHAc] = ACTIONS(12461), + [anon_sym_BSLASHacp] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12461), + [anon_sym_BSLASHcolor] = ACTIONS(12461), + [anon_sym_BSLASHcolorbox] = ACTIONS(12461), + [anon_sym_BSLASHtextcolor] = ACTIONS(12461), + [anon_sym_BSLASHpagecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12461), + }, + [1050] = { + [sym_generic_command_name] = ACTIONS(12323), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12323), + [aux_sym_section_token1] = ACTIONS(12323), + [aux_sym_subsection_token1] = ACTIONS(12323), + [aux_sym_subsubsection_token1] = ACTIONS(12323), + [aux_sym_paragraph_token1] = ACTIONS(12323), + [aux_sym_subparagraph_token1] = ACTIONS(12323), + [anon_sym_BSLASHitem] = ACTIONS(12323), + [anon_sym_LBRACK] = ACTIONS(12321), + [anon_sym_RBRACK] = ACTIONS(12321), + [anon_sym_LBRACE] = ACTIONS(12321), + [anon_sym_RBRACE] = ACTIONS(12321), + [anon_sym_LPAREN] = ACTIONS(12321), + [anon_sym_COMMA] = ACTIONS(12321), + [anon_sym_EQ] = ACTIONS(12321), + [sym_word] = ACTIONS(12321), + [sym_param] = ACTIONS(12321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12321), + [anon_sym_DOLLAR] = ACTIONS(12323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12321), + [anon_sym_BSLASHbegin] = ACTIONS(12323), + [anon_sym_BSLASHcaption] = ACTIONS(12323), + [anon_sym_BSLASHcite] = ACTIONS(12323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCite] = ACTIONS(12323), + [anon_sym_BSLASHnocite] = ACTIONS(12323), + [anon_sym_BSLASHcitet] = ACTIONS(12323), + [anon_sym_BSLASHcitep] = ACTIONS(12323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteauthor] = ACTIONS(12323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitetitle] = ACTIONS(12323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteyear] = ACTIONS(12323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitedate] = ACTIONS(12323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteurl] = ACTIONS(12323), + [anon_sym_BSLASHfullcite] = ACTIONS(12323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12323), + [anon_sym_BSLASHcitealt] = ACTIONS(12323), + [anon_sym_BSLASHcitealp] = ACTIONS(12323), + [anon_sym_BSLASHcitetext] = ACTIONS(12323), + [anon_sym_BSLASHparencite] = ACTIONS(12323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHParencite] = ACTIONS(12323), + [anon_sym_BSLASHfootcite] = ACTIONS(12323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12323), + [anon_sym_BSLASHtextcite] = ACTIONS(12323), + [anon_sym_BSLASHTextcite] = ACTIONS(12323), + [anon_sym_BSLASHsmartcite] = ACTIONS(12323), + [anon_sym_BSLASHSmartcite] = ACTIONS(12323), + [anon_sym_BSLASHsupercite] = ACTIONS(12323), + [anon_sym_BSLASHautocite] = ACTIONS(12323), + [anon_sym_BSLASHAutocite] = ACTIONS(12323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHvolcite] = ACTIONS(12323), + [anon_sym_BSLASHVolcite] = ACTIONS(12323), + [anon_sym_BSLASHpvolcite] = ACTIONS(12323), + [anon_sym_BSLASHPvolcite] = ACTIONS(12323), + [anon_sym_BSLASHfvolcite] = ACTIONS(12323), + [anon_sym_BSLASHftvolcite] = ACTIONS(12323), + [anon_sym_BSLASHsvolcite] = ACTIONS(12323), + [anon_sym_BSLASHSvolcite] = ACTIONS(12323), + [anon_sym_BSLASHtvolcite] = ACTIONS(12323), + [anon_sym_BSLASHTvolcite] = ACTIONS(12323), + [anon_sym_BSLASHavolcite] = ACTIONS(12323), + [anon_sym_BSLASHAvolcite] = ACTIONS(12323), + [anon_sym_BSLASHnotecite] = ACTIONS(12323), + [anon_sym_BSLASHpnotecite] = ACTIONS(12323), + [anon_sym_BSLASHPnotecite] = ACTIONS(12323), + [anon_sym_BSLASHfnotecite] = ACTIONS(12323), + [anon_sym_BSLASHusepackage] = ACTIONS(12323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12323), + [anon_sym_BSLASHinclude] = ACTIONS(12323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12323), + [anon_sym_BSLASHinput] = ACTIONS(12323), + [anon_sym_BSLASHsubfile] = ACTIONS(12323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12323), + [anon_sym_BSLASHbibliography] = ACTIONS(12323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12323), + [anon_sym_BSLASHincludesvg] = ACTIONS(12323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12323), + [anon_sym_BSLASHimport] = ACTIONS(12323), + [anon_sym_BSLASHsubimport] = ACTIONS(12323), + [anon_sym_BSLASHinputfrom] = ACTIONS(12323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12323), + [anon_sym_BSLASHincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHlabel] = ACTIONS(12323), + [anon_sym_BSLASHref] = ACTIONS(12323), + [anon_sym_BSLASHvref] = ACTIONS(12323), + [anon_sym_BSLASHVref] = ACTIONS(12323), + [anon_sym_BSLASHautoref] = ACTIONS(12323), + [anon_sym_BSLASHpageref] = ACTIONS(12323), + [anon_sym_BSLASHcref] = ACTIONS(12323), + [anon_sym_BSLASHCref] = ACTIONS(12323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnameCref] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHlabelcref] = ACTIONS(12323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12323), + [anon_sym_BSLASHeqref] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange] = ACTIONS(12323), + [anon_sym_BSLASHCrefrange] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewlabel] = ACTIONS(12323), + [anon_sym_BSLASHnewcommand] = ACTIONS(12323), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12323), + [anon_sym_BSLASHgls] = ACTIONS(12323), + [anon_sym_BSLASHGls] = ACTIONS(12323), + [anon_sym_BSLASHGLS] = ACTIONS(12323), + [anon_sym_BSLASHglspl] = ACTIONS(12323), + [anon_sym_BSLASHGlspl] = ACTIONS(12323), + [anon_sym_BSLASHGLSpl] = ACTIONS(12323), + [anon_sym_BSLASHglsdisp] = ACTIONS(12323), + [anon_sym_BSLASHglslink] = ACTIONS(12323), + [anon_sym_BSLASHglstext] = ACTIONS(12323), + [anon_sym_BSLASHGlstext] = ACTIONS(12323), + [anon_sym_BSLASHGLStext] = ACTIONS(12323), + [anon_sym_BSLASHglsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12323), + [anon_sym_BSLASHglsplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSplural] = ACTIONS(12323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHglsname] = ACTIONS(12323), + [anon_sym_BSLASHGlsname] = ACTIONS(12323), + [anon_sym_BSLASHGLSname] = ACTIONS(12323), + [anon_sym_BSLASHglssymbol] = ACTIONS(12323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12323), + [anon_sym_BSLASHglsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12323), + [anon_sym_BSLASHglsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12323), + [anon_sym_BSLASHglsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12323), + [anon_sym_BSLASHglsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12323), + [anon_sym_BSLASHglsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12323), + [anon_sym_BSLASHnewacronym] = ACTIONS(12323), + [anon_sym_BSLASHacrshort] = ACTIONS(12323), + [anon_sym_BSLASHAcrshort] = ACTIONS(12323), + [anon_sym_BSLASHACRshort] = ACTIONS(12323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12323), + [anon_sym_BSLASHacrlong] = ACTIONS(12323), + [anon_sym_BSLASHAcrlong] = ACTIONS(12323), + [anon_sym_BSLASHACRlong] = ACTIONS(12323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12323), + [anon_sym_BSLASHacrfull] = ACTIONS(12323), + [anon_sym_BSLASHAcrfull] = ACTIONS(12323), + [anon_sym_BSLASHACRfull] = ACTIONS(12323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12323), + [anon_sym_BSLASHacs] = ACTIONS(12323), + [anon_sym_BSLASHAcs] = ACTIONS(12323), + [anon_sym_BSLASHacsp] = ACTIONS(12323), + [anon_sym_BSLASHAcsp] = ACTIONS(12323), + [anon_sym_BSLASHacl] = ACTIONS(12323), + [anon_sym_BSLASHAcl] = ACTIONS(12323), + [anon_sym_BSLASHaclp] = ACTIONS(12323), + [anon_sym_BSLASHAclp] = ACTIONS(12323), + [anon_sym_BSLASHacf] = ACTIONS(12323), + [anon_sym_BSLASHAcf] = ACTIONS(12323), + [anon_sym_BSLASHacfp] = ACTIONS(12323), + [anon_sym_BSLASHAcfp] = ACTIONS(12323), + [anon_sym_BSLASHac] = ACTIONS(12323), + [anon_sym_BSLASHAc] = ACTIONS(12323), + [anon_sym_BSLASHacp] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12323), + [anon_sym_BSLASHcolor] = ACTIONS(12323), + [anon_sym_BSLASHcolorbox] = ACTIONS(12323), + [anon_sym_BSLASHtextcolor] = ACTIONS(12323), + [anon_sym_BSLASHpagecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12323), + }, + [1051] = { + [sym_generic_command_name] = ACTIONS(12445), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12445), + [aux_sym_section_token1] = ACTIONS(12445), + [aux_sym_subsection_token1] = ACTIONS(12445), + [aux_sym_subsubsection_token1] = ACTIONS(12445), + [aux_sym_paragraph_token1] = ACTIONS(12445), + [aux_sym_subparagraph_token1] = ACTIONS(12445), + [anon_sym_BSLASHitem] = ACTIONS(12445), + [anon_sym_LBRACK] = ACTIONS(12443), + [anon_sym_RBRACK] = ACTIONS(12443), + [anon_sym_LBRACE] = ACTIONS(12443), + [anon_sym_RBRACE] = ACTIONS(12443), + [anon_sym_LPAREN] = ACTIONS(12443), + [anon_sym_COMMA] = ACTIONS(12443), + [anon_sym_EQ] = ACTIONS(12443), + [sym_word] = ACTIONS(12443), + [sym_param] = ACTIONS(12443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12443), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12443), + [anon_sym_DOLLAR] = ACTIONS(12445), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12443), + [anon_sym_BSLASHbegin] = ACTIONS(12445), + [anon_sym_BSLASHcaption] = ACTIONS(12445), + [anon_sym_BSLASHcite] = ACTIONS(12445), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCite] = ACTIONS(12445), + [anon_sym_BSLASHnocite] = ACTIONS(12445), + [anon_sym_BSLASHcitet] = ACTIONS(12445), + [anon_sym_BSLASHcitep] = ACTIONS(12445), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteauthor] = ACTIONS(12445), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12445), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitetitle] = ACTIONS(12445), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteyear] = ACTIONS(12445), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitedate] = ACTIONS(12445), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteurl] = ACTIONS(12445), + [anon_sym_BSLASHfullcite] = ACTIONS(12445), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12445), + [anon_sym_BSLASHcitealt] = ACTIONS(12445), + [anon_sym_BSLASHcitealp] = ACTIONS(12445), + [anon_sym_BSLASHcitetext] = ACTIONS(12445), + [anon_sym_BSLASHparencite] = ACTIONS(12445), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHParencite] = ACTIONS(12445), + [anon_sym_BSLASHfootcite] = ACTIONS(12445), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12445), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12445), + [anon_sym_BSLASHtextcite] = ACTIONS(12445), + [anon_sym_BSLASHTextcite] = ACTIONS(12445), + [anon_sym_BSLASHsmartcite] = ACTIONS(12445), + [anon_sym_BSLASHSmartcite] = ACTIONS(12445), + [anon_sym_BSLASHsupercite] = ACTIONS(12445), + [anon_sym_BSLASHautocite] = ACTIONS(12445), + [anon_sym_BSLASHAutocite] = ACTIONS(12445), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHvolcite] = ACTIONS(12445), + [anon_sym_BSLASHVolcite] = ACTIONS(12445), + [anon_sym_BSLASHpvolcite] = ACTIONS(12445), + [anon_sym_BSLASHPvolcite] = ACTIONS(12445), + [anon_sym_BSLASHfvolcite] = ACTIONS(12445), + [anon_sym_BSLASHftvolcite] = ACTIONS(12445), + [anon_sym_BSLASHsvolcite] = ACTIONS(12445), + [anon_sym_BSLASHSvolcite] = ACTIONS(12445), + [anon_sym_BSLASHtvolcite] = ACTIONS(12445), + [anon_sym_BSLASHTvolcite] = ACTIONS(12445), + [anon_sym_BSLASHavolcite] = ACTIONS(12445), + [anon_sym_BSLASHAvolcite] = ACTIONS(12445), + [anon_sym_BSLASHnotecite] = ACTIONS(12445), + [anon_sym_BSLASHpnotecite] = ACTIONS(12445), + [anon_sym_BSLASHPnotecite] = ACTIONS(12445), + [anon_sym_BSLASHfnotecite] = ACTIONS(12445), + [anon_sym_BSLASHusepackage] = ACTIONS(12445), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12445), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12445), + [anon_sym_BSLASHinclude] = ACTIONS(12445), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12445), + [anon_sym_BSLASHinput] = ACTIONS(12445), + [anon_sym_BSLASHsubfile] = ACTIONS(12445), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12445), + [anon_sym_BSLASHbibliography] = ACTIONS(12445), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12445), + [anon_sym_BSLASHincludesvg] = ACTIONS(12445), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12445), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12445), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12445), + [anon_sym_BSLASHimport] = ACTIONS(12445), + [anon_sym_BSLASHsubimport] = ACTIONS(12445), + [anon_sym_BSLASHinputfrom] = ACTIONS(12445), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12445), + [anon_sym_BSLASHincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHlabel] = ACTIONS(12445), + [anon_sym_BSLASHref] = ACTIONS(12445), + [anon_sym_BSLASHvref] = ACTIONS(12445), + [anon_sym_BSLASHVref] = ACTIONS(12445), + [anon_sym_BSLASHautoref] = ACTIONS(12445), + [anon_sym_BSLASHpageref] = ACTIONS(12445), + [anon_sym_BSLASHcref] = ACTIONS(12445), + [anon_sym_BSLASHCref] = ACTIONS(12445), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnameCref] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHlabelcref] = ACTIONS(12445), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12445), + [anon_sym_BSLASHeqref] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange] = ACTIONS(12445), + [anon_sym_BSLASHCrefrange] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewlabel] = ACTIONS(12445), + [anon_sym_BSLASHnewcommand] = ACTIONS(12445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12445), + [anon_sym_BSLASHgls] = ACTIONS(12445), + [anon_sym_BSLASHGls] = ACTIONS(12445), + [anon_sym_BSLASHGLS] = ACTIONS(12445), + [anon_sym_BSLASHglspl] = ACTIONS(12445), + [anon_sym_BSLASHGlspl] = ACTIONS(12445), + [anon_sym_BSLASHGLSpl] = ACTIONS(12445), + [anon_sym_BSLASHglsdisp] = ACTIONS(12445), + [anon_sym_BSLASHglslink] = ACTIONS(12445), + [anon_sym_BSLASHglstext] = ACTIONS(12445), + [anon_sym_BSLASHGlstext] = ACTIONS(12445), + [anon_sym_BSLASHGLStext] = ACTIONS(12445), + [anon_sym_BSLASHglsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12445), + [anon_sym_BSLASHglsplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSplural] = ACTIONS(12445), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHglsname] = ACTIONS(12445), + [anon_sym_BSLASHGlsname] = ACTIONS(12445), + [anon_sym_BSLASHGLSname] = ACTIONS(12445), + [anon_sym_BSLASHglssymbol] = ACTIONS(12445), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12445), + [anon_sym_BSLASHglsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12445), + [anon_sym_BSLASHglsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12445), + [anon_sym_BSLASHglsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12445), + [anon_sym_BSLASHglsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12445), + [anon_sym_BSLASHglsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12445), + [anon_sym_BSLASHnewacronym] = ACTIONS(12445), + [anon_sym_BSLASHacrshort] = ACTIONS(12445), + [anon_sym_BSLASHAcrshort] = ACTIONS(12445), + [anon_sym_BSLASHACRshort] = ACTIONS(12445), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12445), + [anon_sym_BSLASHacrlong] = ACTIONS(12445), + [anon_sym_BSLASHAcrlong] = ACTIONS(12445), + [anon_sym_BSLASHACRlong] = ACTIONS(12445), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12445), + [anon_sym_BSLASHacrfull] = ACTIONS(12445), + [anon_sym_BSLASHAcrfull] = ACTIONS(12445), + [anon_sym_BSLASHACRfull] = ACTIONS(12445), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12445), + [anon_sym_BSLASHacs] = ACTIONS(12445), + [anon_sym_BSLASHAcs] = ACTIONS(12445), + [anon_sym_BSLASHacsp] = ACTIONS(12445), + [anon_sym_BSLASHAcsp] = ACTIONS(12445), + [anon_sym_BSLASHacl] = ACTIONS(12445), + [anon_sym_BSLASHAcl] = ACTIONS(12445), + [anon_sym_BSLASHaclp] = ACTIONS(12445), + [anon_sym_BSLASHAclp] = ACTIONS(12445), + [anon_sym_BSLASHacf] = ACTIONS(12445), + [anon_sym_BSLASHAcf] = ACTIONS(12445), + [anon_sym_BSLASHacfp] = ACTIONS(12445), + [anon_sym_BSLASHAcfp] = ACTIONS(12445), + [anon_sym_BSLASHac] = ACTIONS(12445), + [anon_sym_BSLASHAc] = ACTIONS(12445), + [anon_sym_BSLASHacp] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12445), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12445), + [anon_sym_BSLASHcolor] = ACTIONS(12445), + [anon_sym_BSLASHcolorbox] = ACTIONS(12445), + [anon_sym_BSLASHtextcolor] = ACTIONS(12445), + [anon_sym_BSLASHpagecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12445), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12445), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12445), + }, + [1052] = { + [sym_generic_command_name] = ACTIONS(12465), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12465), + [aux_sym_chapter_token1] = ACTIONS(12465), + [aux_sym_section_token1] = ACTIONS(12465), + [aux_sym_subsection_token1] = ACTIONS(12465), + [aux_sym_subsubsection_token1] = ACTIONS(12465), + [aux_sym_paragraph_token1] = ACTIONS(12465), + [aux_sym_subparagraph_token1] = ACTIONS(12465), + [anon_sym_BSLASHitem] = ACTIONS(12465), + [anon_sym_LBRACK] = ACTIONS(12463), + [anon_sym_LBRACE] = ACTIONS(12463), + [anon_sym_LPAREN] = ACTIONS(12463), + [anon_sym_COMMA] = ACTIONS(12463), + [anon_sym_EQ] = ACTIONS(12463), + [sym_word] = ACTIONS(12463), + [sym_param] = ACTIONS(12463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12463), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12463), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12463), + [anon_sym_DOLLAR] = ACTIONS(12465), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12463), + [anon_sym_BSLASHbegin] = ACTIONS(12465), + [anon_sym_BSLASHcaption] = ACTIONS(12465), + [anon_sym_BSLASHcite] = ACTIONS(12465), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCite] = ACTIONS(12465), + [anon_sym_BSLASHnocite] = ACTIONS(12465), + [anon_sym_BSLASHcitet] = ACTIONS(12465), + [anon_sym_BSLASHcitep] = ACTIONS(12465), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteauthor] = ACTIONS(12465), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12465), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitetitle] = ACTIONS(12465), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteyear] = ACTIONS(12465), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitedate] = ACTIONS(12465), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteurl] = ACTIONS(12465), + [anon_sym_BSLASHfullcite] = ACTIONS(12465), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12465), + [anon_sym_BSLASHcitealt] = ACTIONS(12465), + [anon_sym_BSLASHcitealp] = ACTIONS(12465), + [anon_sym_BSLASHcitetext] = ACTIONS(12465), + [anon_sym_BSLASHparencite] = ACTIONS(12465), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHParencite] = ACTIONS(12465), + [anon_sym_BSLASHfootcite] = ACTIONS(12465), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12465), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12465), + [anon_sym_BSLASHtextcite] = ACTIONS(12465), + [anon_sym_BSLASHTextcite] = ACTIONS(12465), + [anon_sym_BSLASHsmartcite] = ACTIONS(12465), + [anon_sym_BSLASHSmartcite] = ACTIONS(12465), + [anon_sym_BSLASHsupercite] = ACTIONS(12465), + [anon_sym_BSLASHautocite] = ACTIONS(12465), + [anon_sym_BSLASHAutocite] = ACTIONS(12465), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHvolcite] = ACTIONS(12465), + [anon_sym_BSLASHVolcite] = ACTIONS(12465), + [anon_sym_BSLASHpvolcite] = ACTIONS(12465), + [anon_sym_BSLASHPvolcite] = ACTIONS(12465), + [anon_sym_BSLASHfvolcite] = ACTIONS(12465), + [anon_sym_BSLASHftvolcite] = ACTIONS(12465), + [anon_sym_BSLASHsvolcite] = ACTIONS(12465), + [anon_sym_BSLASHSvolcite] = ACTIONS(12465), + [anon_sym_BSLASHtvolcite] = ACTIONS(12465), + [anon_sym_BSLASHTvolcite] = ACTIONS(12465), + [anon_sym_BSLASHavolcite] = ACTIONS(12465), + [anon_sym_BSLASHAvolcite] = ACTIONS(12465), + [anon_sym_BSLASHnotecite] = ACTIONS(12465), + [anon_sym_BSLASHpnotecite] = ACTIONS(12465), + [anon_sym_BSLASHPnotecite] = ACTIONS(12465), + [anon_sym_BSLASHfnotecite] = ACTIONS(12465), + [anon_sym_BSLASHusepackage] = ACTIONS(12465), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12465), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12465), + [anon_sym_BSLASHinclude] = ACTIONS(12465), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12465), + [anon_sym_BSLASHinput] = ACTIONS(12465), + [anon_sym_BSLASHsubfile] = ACTIONS(12465), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12465), + [anon_sym_BSLASHbibliography] = ACTIONS(12465), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12465), + [anon_sym_BSLASHincludesvg] = ACTIONS(12465), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12465), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12465), + [anon_sym_BSLASHimport] = ACTIONS(12465), + [anon_sym_BSLASHsubimport] = ACTIONS(12465), + [anon_sym_BSLASHinputfrom] = ACTIONS(12465), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12465), + [anon_sym_BSLASHincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHlabel] = ACTIONS(12465), + [anon_sym_BSLASHref] = ACTIONS(12465), + [anon_sym_BSLASHvref] = ACTIONS(12465), + [anon_sym_BSLASHVref] = ACTIONS(12465), + [anon_sym_BSLASHautoref] = ACTIONS(12465), + [anon_sym_BSLASHpageref] = ACTIONS(12465), + [anon_sym_BSLASHcref] = ACTIONS(12465), + [anon_sym_BSLASHCref] = ACTIONS(12465), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnameCref] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHlabelcref] = ACTIONS(12465), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12465), + [anon_sym_BSLASHeqref] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange] = ACTIONS(12465), + [anon_sym_BSLASHCrefrange] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewlabel] = ACTIONS(12465), + [anon_sym_BSLASHnewcommand] = ACTIONS(12465), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12465), + [anon_sym_BSLASHgls] = ACTIONS(12465), + [anon_sym_BSLASHGls] = ACTIONS(12465), + [anon_sym_BSLASHGLS] = ACTIONS(12465), + [anon_sym_BSLASHglspl] = ACTIONS(12465), + [anon_sym_BSLASHGlspl] = ACTIONS(12465), + [anon_sym_BSLASHGLSpl] = ACTIONS(12465), + [anon_sym_BSLASHglsdisp] = ACTIONS(12465), + [anon_sym_BSLASHglslink] = ACTIONS(12465), + [anon_sym_BSLASHglstext] = ACTIONS(12465), + [anon_sym_BSLASHGlstext] = ACTIONS(12465), + [anon_sym_BSLASHGLStext] = ACTIONS(12465), + [anon_sym_BSLASHglsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12465), + [anon_sym_BSLASHglsplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSplural] = ACTIONS(12465), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHglsname] = ACTIONS(12465), + [anon_sym_BSLASHGlsname] = ACTIONS(12465), + [anon_sym_BSLASHGLSname] = ACTIONS(12465), + [anon_sym_BSLASHglssymbol] = ACTIONS(12465), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12465), + [anon_sym_BSLASHglsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12465), + [anon_sym_BSLASHglsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12465), + [anon_sym_BSLASHglsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12465), + [anon_sym_BSLASHglsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12465), + [anon_sym_BSLASHglsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12465), + [anon_sym_BSLASHnewacronym] = ACTIONS(12465), + [anon_sym_BSLASHacrshort] = ACTIONS(12465), + [anon_sym_BSLASHAcrshort] = ACTIONS(12465), + [anon_sym_BSLASHACRshort] = ACTIONS(12465), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12465), + [anon_sym_BSLASHacrlong] = ACTIONS(12465), + [anon_sym_BSLASHAcrlong] = ACTIONS(12465), + [anon_sym_BSLASHACRlong] = ACTIONS(12465), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12465), + [anon_sym_BSLASHacrfull] = ACTIONS(12465), + [anon_sym_BSLASHAcrfull] = ACTIONS(12465), + [anon_sym_BSLASHACRfull] = ACTIONS(12465), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12465), + [anon_sym_BSLASHacs] = ACTIONS(12465), + [anon_sym_BSLASHAcs] = ACTIONS(12465), + [anon_sym_BSLASHacsp] = ACTIONS(12465), + [anon_sym_BSLASHAcsp] = ACTIONS(12465), + [anon_sym_BSLASHacl] = ACTIONS(12465), + [anon_sym_BSLASHAcl] = ACTIONS(12465), + [anon_sym_BSLASHaclp] = ACTIONS(12465), + [anon_sym_BSLASHAclp] = ACTIONS(12465), + [anon_sym_BSLASHacf] = ACTIONS(12465), + [anon_sym_BSLASHAcf] = ACTIONS(12465), + [anon_sym_BSLASHacfp] = ACTIONS(12465), + [anon_sym_BSLASHAcfp] = ACTIONS(12465), + [anon_sym_BSLASHac] = ACTIONS(12465), + [anon_sym_BSLASHAc] = ACTIONS(12465), + [anon_sym_BSLASHacp] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12465), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12465), + [anon_sym_BSLASHcolor] = ACTIONS(12465), + [anon_sym_BSLASHcolorbox] = ACTIONS(12465), + [anon_sym_BSLASHtextcolor] = ACTIONS(12465), + [anon_sym_BSLASHpagecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12465), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12465), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12465), + }, + [1053] = { + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(111), + [aux_sym_section_token1] = ACTIONS(111), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [1054] = { + [sym_generic_command_name] = ACTIONS(12469), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12469), + [aux_sym_chapter_token1] = ACTIONS(12469), + [aux_sym_section_token1] = ACTIONS(12469), + [aux_sym_subsection_token1] = ACTIONS(12469), + [aux_sym_subsubsection_token1] = ACTIONS(12469), + [aux_sym_paragraph_token1] = ACTIONS(12469), + [aux_sym_subparagraph_token1] = ACTIONS(12469), + [anon_sym_BSLASHitem] = ACTIONS(12469), + [anon_sym_LBRACK] = ACTIONS(12467), + [anon_sym_LBRACE] = ACTIONS(12467), + [anon_sym_LPAREN] = ACTIONS(12467), + [anon_sym_COMMA] = ACTIONS(12467), + [anon_sym_EQ] = ACTIONS(12467), + [sym_word] = ACTIONS(12467), + [sym_param] = ACTIONS(12467), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12467), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12467), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12467), + [anon_sym_DOLLAR] = ACTIONS(12469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12467), + [anon_sym_BSLASHbegin] = ACTIONS(12469), + [anon_sym_BSLASHcaption] = ACTIONS(12469), + [anon_sym_BSLASHcite] = ACTIONS(12469), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCite] = ACTIONS(12469), + [anon_sym_BSLASHnocite] = ACTIONS(12469), + [anon_sym_BSLASHcitet] = ACTIONS(12469), + [anon_sym_BSLASHcitep] = ACTIONS(12469), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteauthor] = ACTIONS(12469), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12469), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitetitle] = ACTIONS(12469), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteyear] = ACTIONS(12469), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitedate] = ACTIONS(12469), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteurl] = ACTIONS(12469), + [anon_sym_BSLASHfullcite] = ACTIONS(12469), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12469), + [anon_sym_BSLASHcitealt] = ACTIONS(12469), + [anon_sym_BSLASHcitealp] = ACTIONS(12469), + [anon_sym_BSLASHcitetext] = ACTIONS(12469), + [anon_sym_BSLASHparencite] = ACTIONS(12469), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHParencite] = ACTIONS(12469), + [anon_sym_BSLASHfootcite] = ACTIONS(12469), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12469), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12469), + [anon_sym_BSLASHtextcite] = ACTIONS(12469), + [anon_sym_BSLASHTextcite] = ACTIONS(12469), + [anon_sym_BSLASHsmartcite] = ACTIONS(12469), + [anon_sym_BSLASHSmartcite] = ACTIONS(12469), + [anon_sym_BSLASHsupercite] = ACTIONS(12469), + [anon_sym_BSLASHautocite] = ACTIONS(12469), + [anon_sym_BSLASHAutocite] = ACTIONS(12469), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHvolcite] = ACTIONS(12469), + [anon_sym_BSLASHVolcite] = ACTIONS(12469), + [anon_sym_BSLASHpvolcite] = ACTIONS(12469), + [anon_sym_BSLASHPvolcite] = ACTIONS(12469), + [anon_sym_BSLASHfvolcite] = ACTIONS(12469), + [anon_sym_BSLASHftvolcite] = ACTIONS(12469), + [anon_sym_BSLASHsvolcite] = ACTIONS(12469), + [anon_sym_BSLASHSvolcite] = ACTIONS(12469), + [anon_sym_BSLASHtvolcite] = ACTIONS(12469), + [anon_sym_BSLASHTvolcite] = ACTIONS(12469), + [anon_sym_BSLASHavolcite] = ACTIONS(12469), + [anon_sym_BSLASHAvolcite] = ACTIONS(12469), + [anon_sym_BSLASHnotecite] = ACTIONS(12469), + [anon_sym_BSLASHpnotecite] = ACTIONS(12469), + [anon_sym_BSLASHPnotecite] = ACTIONS(12469), + [anon_sym_BSLASHfnotecite] = ACTIONS(12469), + [anon_sym_BSLASHusepackage] = ACTIONS(12469), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12469), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12469), + [anon_sym_BSLASHinclude] = ACTIONS(12469), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12469), + [anon_sym_BSLASHinput] = ACTIONS(12469), + [anon_sym_BSLASHsubfile] = ACTIONS(12469), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12469), + [anon_sym_BSLASHbibliography] = ACTIONS(12469), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12469), + [anon_sym_BSLASHincludesvg] = ACTIONS(12469), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12469), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12469), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12469), + [anon_sym_BSLASHimport] = ACTIONS(12469), + [anon_sym_BSLASHsubimport] = ACTIONS(12469), + [anon_sym_BSLASHinputfrom] = ACTIONS(12469), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12469), + [anon_sym_BSLASHincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHlabel] = ACTIONS(12469), + [anon_sym_BSLASHref] = ACTIONS(12469), + [anon_sym_BSLASHvref] = ACTIONS(12469), + [anon_sym_BSLASHVref] = ACTIONS(12469), + [anon_sym_BSLASHautoref] = ACTIONS(12469), + [anon_sym_BSLASHpageref] = ACTIONS(12469), + [anon_sym_BSLASHcref] = ACTIONS(12469), + [anon_sym_BSLASHCref] = ACTIONS(12469), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnameCref] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHlabelcref] = ACTIONS(12469), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12469), + [anon_sym_BSLASHeqref] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange] = ACTIONS(12469), + [anon_sym_BSLASHCrefrange] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewlabel] = ACTIONS(12469), + [anon_sym_BSLASHnewcommand] = ACTIONS(12469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12469), + [anon_sym_BSLASHgls] = ACTIONS(12469), + [anon_sym_BSLASHGls] = ACTIONS(12469), + [anon_sym_BSLASHGLS] = ACTIONS(12469), + [anon_sym_BSLASHglspl] = ACTIONS(12469), + [anon_sym_BSLASHGlspl] = ACTIONS(12469), + [anon_sym_BSLASHGLSpl] = ACTIONS(12469), + [anon_sym_BSLASHglsdisp] = ACTIONS(12469), + [anon_sym_BSLASHglslink] = ACTIONS(12469), + [anon_sym_BSLASHglstext] = ACTIONS(12469), + [anon_sym_BSLASHGlstext] = ACTIONS(12469), + [anon_sym_BSLASHGLStext] = ACTIONS(12469), + [anon_sym_BSLASHglsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12469), + [anon_sym_BSLASHglsplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSplural] = ACTIONS(12469), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHglsname] = ACTIONS(12469), + [anon_sym_BSLASHGlsname] = ACTIONS(12469), + [anon_sym_BSLASHGLSname] = ACTIONS(12469), + [anon_sym_BSLASHglssymbol] = ACTIONS(12469), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12469), + [anon_sym_BSLASHglsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12469), + [anon_sym_BSLASHglsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12469), + [anon_sym_BSLASHglsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12469), + [anon_sym_BSLASHglsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12469), + [anon_sym_BSLASHglsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12469), + [anon_sym_BSLASHnewacronym] = ACTIONS(12469), + [anon_sym_BSLASHacrshort] = ACTIONS(12469), + [anon_sym_BSLASHAcrshort] = ACTIONS(12469), + [anon_sym_BSLASHACRshort] = ACTIONS(12469), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12469), + [anon_sym_BSLASHacrlong] = ACTIONS(12469), + [anon_sym_BSLASHAcrlong] = ACTIONS(12469), + [anon_sym_BSLASHACRlong] = ACTIONS(12469), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12469), + [anon_sym_BSLASHacrfull] = ACTIONS(12469), + [anon_sym_BSLASHAcrfull] = ACTIONS(12469), + [anon_sym_BSLASHACRfull] = ACTIONS(12469), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12469), + [anon_sym_BSLASHacs] = ACTIONS(12469), + [anon_sym_BSLASHAcs] = ACTIONS(12469), + [anon_sym_BSLASHacsp] = ACTIONS(12469), + [anon_sym_BSLASHAcsp] = ACTIONS(12469), + [anon_sym_BSLASHacl] = ACTIONS(12469), + [anon_sym_BSLASHAcl] = ACTIONS(12469), + [anon_sym_BSLASHaclp] = ACTIONS(12469), + [anon_sym_BSLASHAclp] = ACTIONS(12469), + [anon_sym_BSLASHacf] = ACTIONS(12469), + [anon_sym_BSLASHAcf] = ACTIONS(12469), + [anon_sym_BSLASHacfp] = ACTIONS(12469), + [anon_sym_BSLASHAcfp] = ACTIONS(12469), + [anon_sym_BSLASHac] = ACTIONS(12469), + [anon_sym_BSLASHAc] = ACTIONS(12469), + [anon_sym_BSLASHacp] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12469), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12469), + [anon_sym_BSLASHcolor] = ACTIONS(12469), + [anon_sym_BSLASHcolorbox] = ACTIONS(12469), + [anon_sym_BSLASHtextcolor] = ACTIONS(12469), + [anon_sym_BSLASHpagecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12469), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12469), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12469), + }, + [1055] = { + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(117), + [aux_sym_section_token1] = ACTIONS(117), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [1056] = { + [sym_generic_command_name] = ACTIONS(12485), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12485), + [aux_sym_section_token1] = ACTIONS(12485), + [aux_sym_subsection_token1] = ACTIONS(12485), + [aux_sym_subsubsection_token1] = ACTIONS(12485), + [aux_sym_paragraph_token1] = ACTIONS(12485), + [aux_sym_subparagraph_token1] = ACTIONS(12485), + [anon_sym_BSLASHitem] = ACTIONS(12485), + [anon_sym_LBRACK] = ACTIONS(12483), + [anon_sym_RBRACK] = ACTIONS(12483), + [anon_sym_LBRACE] = ACTIONS(12483), + [anon_sym_RBRACE] = ACTIONS(12483), + [anon_sym_LPAREN] = ACTIONS(12483), + [anon_sym_COMMA] = ACTIONS(12483), + [anon_sym_EQ] = ACTIONS(12483), + [sym_word] = ACTIONS(12483), + [sym_param] = ACTIONS(12483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12483), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12483), + [anon_sym_DOLLAR] = ACTIONS(12485), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12483), + [anon_sym_BSLASHbegin] = ACTIONS(12485), + [anon_sym_BSLASHcaption] = ACTIONS(12485), + [anon_sym_BSLASHcite] = ACTIONS(12485), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCite] = ACTIONS(12485), + [anon_sym_BSLASHnocite] = ACTIONS(12485), + [anon_sym_BSLASHcitet] = ACTIONS(12485), + [anon_sym_BSLASHcitep] = ACTIONS(12485), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteauthor] = ACTIONS(12485), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12485), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitetitle] = ACTIONS(12485), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteyear] = ACTIONS(12485), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitedate] = ACTIONS(12485), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteurl] = ACTIONS(12485), + [anon_sym_BSLASHfullcite] = ACTIONS(12485), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12485), + [anon_sym_BSLASHcitealt] = ACTIONS(12485), + [anon_sym_BSLASHcitealp] = ACTIONS(12485), + [anon_sym_BSLASHcitetext] = ACTIONS(12485), + [anon_sym_BSLASHparencite] = ACTIONS(12485), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHParencite] = ACTIONS(12485), + [anon_sym_BSLASHfootcite] = ACTIONS(12485), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12485), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12485), + [anon_sym_BSLASHtextcite] = ACTIONS(12485), + [anon_sym_BSLASHTextcite] = ACTIONS(12485), + [anon_sym_BSLASHsmartcite] = ACTIONS(12485), + [anon_sym_BSLASHSmartcite] = ACTIONS(12485), + [anon_sym_BSLASHsupercite] = ACTIONS(12485), + [anon_sym_BSLASHautocite] = ACTIONS(12485), + [anon_sym_BSLASHAutocite] = ACTIONS(12485), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHvolcite] = ACTIONS(12485), + [anon_sym_BSLASHVolcite] = ACTIONS(12485), + [anon_sym_BSLASHpvolcite] = ACTIONS(12485), + [anon_sym_BSLASHPvolcite] = ACTIONS(12485), + [anon_sym_BSLASHfvolcite] = ACTIONS(12485), + [anon_sym_BSLASHftvolcite] = ACTIONS(12485), + [anon_sym_BSLASHsvolcite] = ACTIONS(12485), + [anon_sym_BSLASHSvolcite] = ACTIONS(12485), + [anon_sym_BSLASHtvolcite] = ACTIONS(12485), + [anon_sym_BSLASHTvolcite] = ACTIONS(12485), + [anon_sym_BSLASHavolcite] = ACTIONS(12485), + [anon_sym_BSLASHAvolcite] = ACTIONS(12485), + [anon_sym_BSLASHnotecite] = ACTIONS(12485), + [anon_sym_BSLASHpnotecite] = ACTIONS(12485), + [anon_sym_BSLASHPnotecite] = ACTIONS(12485), + [anon_sym_BSLASHfnotecite] = ACTIONS(12485), + [anon_sym_BSLASHusepackage] = ACTIONS(12485), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12485), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12485), + [anon_sym_BSLASHinclude] = ACTIONS(12485), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12485), + [anon_sym_BSLASHinput] = ACTIONS(12485), + [anon_sym_BSLASHsubfile] = ACTIONS(12485), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12485), + [anon_sym_BSLASHbibliography] = ACTIONS(12485), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12485), + [anon_sym_BSLASHincludesvg] = ACTIONS(12485), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12485), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12485), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12485), + [anon_sym_BSLASHimport] = ACTIONS(12485), + [anon_sym_BSLASHsubimport] = ACTIONS(12485), + [anon_sym_BSLASHinputfrom] = ACTIONS(12485), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12485), + [anon_sym_BSLASHincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHlabel] = ACTIONS(12485), + [anon_sym_BSLASHref] = ACTIONS(12485), + [anon_sym_BSLASHvref] = ACTIONS(12485), + [anon_sym_BSLASHVref] = ACTIONS(12485), + [anon_sym_BSLASHautoref] = ACTIONS(12485), + [anon_sym_BSLASHpageref] = ACTIONS(12485), + [anon_sym_BSLASHcref] = ACTIONS(12485), + [anon_sym_BSLASHCref] = ACTIONS(12485), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnameCref] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHlabelcref] = ACTIONS(12485), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12485), + [anon_sym_BSLASHeqref] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange] = ACTIONS(12485), + [anon_sym_BSLASHCrefrange] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewlabel] = ACTIONS(12485), + [anon_sym_BSLASHnewcommand] = ACTIONS(12485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12485), + [anon_sym_BSLASHgls] = ACTIONS(12485), + [anon_sym_BSLASHGls] = ACTIONS(12485), + [anon_sym_BSLASHGLS] = ACTIONS(12485), + [anon_sym_BSLASHglspl] = ACTIONS(12485), + [anon_sym_BSLASHGlspl] = ACTIONS(12485), + [anon_sym_BSLASHGLSpl] = ACTIONS(12485), + [anon_sym_BSLASHglsdisp] = ACTIONS(12485), + [anon_sym_BSLASHglslink] = ACTIONS(12485), + [anon_sym_BSLASHglstext] = ACTIONS(12485), + [anon_sym_BSLASHGlstext] = ACTIONS(12485), + [anon_sym_BSLASHGLStext] = ACTIONS(12485), + [anon_sym_BSLASHglsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12485), + [anon_sym_BSLASHglsplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSplural] = ACTIONS(12485), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHglsname] = ACTIONS(12485), + [anon_sym_BSLASHGlsname] = ACTIONS(12485), + [anon_sym_BSLASHGLSname] = ACTIONS(12485), + [anon_sym_BSLASHglssymbol] = ACTIONS(12485), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12485), + [anon_sym_BSLASHglsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12485), + [anon_sym_BSLASHglsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12485), + [anon_sym_BSLASHglsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12485), + [anon_sym_BSLASHglsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12485), + [anon_sym_BSLASHglsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12485), + [anon_sym_BSLASHnewacronym] = ACTIONS(12485), + [anon_sym_BSLASHacrshort] = ACTIONS(12485), + [anon_sym_BSLASHAcrshort] = ACTIONS(12485), + [anon_sym_BSLASHACRshort] = ACTIONS(12485), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12485), + [anon_sym_BSLASHacrlong] = ACTIONS(12485), + [anon_sym_BSLASHAcrlong] = ACTIONS(12485), + [anon_sym_BSLASHACRlong] = ACTIONS(12485), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12485), + [anon_sym_BSLASHacrfull] = ACTIONS(12485), + [anon_sym_BSLASHAcrfull] = ACTIONS(12485), + [anon_sym_BSLASHACRfull] = ACTIONS(12485), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12485), + [anon_sym_BSLASHacs] = ACTIONS(12485), + [anon_sym_BSLASHAcs] = ACTIONS(12485), + [anon_sym_BSLASHacsp] = ACTIONS(12485), + [anon_sym_BSLASHAcsp] = ACTIONS(12485), + [anon_sym_BSLASHacl] = ACTIONS(12485), + [anon_sym_BSLASHAcl] = ACTIONS(12485), + [anon_sym_BSLASHaclp] = ACTIONS(12485), + [anon_sym_BSLASHAclp] = ACTIONS(12485), + [anon_sym_BSLASHacf] = ACTIONS(12485), + [anon_sym_BSLASHAcf] = ACTIONS(12485), + [anon_sym_BSLASHacfp] = ACTIONS(12485), + [anon_sym_BSLASHAcfp] = ACTIONS(12485), + [anon_sym_BSLASHac] = ACTIONS(12485), + [anon_sym_BSLASHAc] = ACTIONS(12485), + [anon_sym_BSLASHacp] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12485), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12485), + [anon_sym_BSLASHcolor] = ACTIONS(12485), + [anon_sym_BSLASHcolorbox] = ACTIONS(12485), + [anon_sym_BSLASHtextcolor] = ACTIONS(12485), + [anon_sym_BSLASHpagecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12485), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12485), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12485), + }, + [1057] = { + [sym_generic_command_name] = ACTIONS(12477), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12477), + [aux_sym_chapter_token1] = ACTIONS(12477), + [aux_sym_section_token1] = ACTIONS(12477), + [aux_sym_subsection_token1] = ACTIONS(12477), + [aux_sym_subsubsection_token1] = ACTIONS(12477), + [aux_sym_paragraph_token1] = ACTIONS(12477), + [aux_sym_subparagraph_token1] = ACTIONS(12477), + [anon_sym_BSLASHitem] = ACTIONS(12477), + [anon_sym_LBRACK] = ACTIONS(12475), + [anon_sym_LBRACE] = ACTIONS(12475), + [anon_sym_LPAREN] = ACTIONS(12475), + [anon_sym_COMMA] = ACTIONS(12475), + [anon_sym_EQ] = ACTIONS(12475), + [sym_word] = ACTIONS(12475), + [sym_param] = ACTIONS(12475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12475), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12475), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12475), + [anon_sym_DOLLAR] = ACTIONS(12477), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12475), + [anon_sym_BSLASHbegin] = ACTIONS(12477), + [anon_sym_BSLASHcaption] = ACTIONS(12477), + [anon_sym_BSLASHcite] = ACTIONS(12477), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCite] = ACTIONS(12477), + [anon_sym_BSLASHnocite] = ACTIONS(12477), + [anon_sym_BSLASHcitet] = ACTIONS(12477), + [anon_sym_BSLASHcitep] = ACTIONS(12477), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteauthor] = ACTIONS(12477), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12477), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitetitle] = ACTIONS(12477), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteyear] = ACTIONS(12477), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitedate] = ACTIONS(12477), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteurl] = ACTIONS(12477), + [anon_sym_BSLASHfullcite] = ACTIONS(12477), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12477), + [anon_sym_BSLASHcitealt] = ACTIONS(12477), + [anon_sym_BSLASHcitealp] = ACTIONS(12477), + [anon_sym_BSLASHcitetext] = ACTIONS(12477), + [anon_sym_BSLASHparencite] = ACTIONS(12477), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHParencite] = ACTIONS(12477), + [anon_sym_BSLASHfootcite] = ACTIONS(12477), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12477), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12477), + [anon_sym_BSLASHtextcite] = ACTIONS(12477), + [anon_sym_BSLASHTextcite] = ACTIONS(12477), + [anon_sym_BSLASHsmartcite] = ACTIONS(12477), + [anon_sym_BSLASHSmartcite] = ACTIONS(12477), + [anon_sym_BSLASHsupercite] = ACTIONS(12477), + [anon_sym_BSLASHautocite] = ACTIONS(12477), + [anon_sym_BSLASHAutocite] = ACTIONS(12477), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHvolcite] = ACTIONS(12477), + [anon_sym_BSLASHVolcite] = ACTIONS(12477), + [anon_sym_BSLASHpvolcite] = ACTIONS(12477), + [anon_sym_BSLASHPvolcite] = ACTIONS(12477), + [anon_sym_BSLASHfvolcite] = ACTIONS(12477), + [anon_sym_BSLASHftvolcite] = ACTIONS(12477), + [anon_sym_BSLASHsvolcite] = ACTIONS(12477), + [anon_sym_BSLASHSvolcite] = ACTIONS(12477), + [anon_sym_BSLASHtvolcite] = ACTIONS(12477), + [anon_sym_BSLASHTvolcite] = ACTIONS(12477), + [anon_sym_BSLASHavolcite] = ACTIONS(12477), + [anon_sym_BSLASHAvolcite] = ACTIONS(12477), + [anon_sym_BSLASHnotecite] = ACTIONS(12477), + [anon_sym_BSLASHpnotecite] = ACTIONS(12477), + [anon_sym_BSLASHPnotecite] = ACTIONS(12477), + [anon_sym_BSLASHfnotecite] = ACTIONS(12477), + [anon_sym_BSLASHusepackage] = ACTIONS(12477), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12477), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12477), + [anon_sym_BSLASHinclude] = ACTIONS(12477), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12477), + [anon_sym_BSLASHinput] = ACTIONS(12477), + [anon_sym_BSLASHsubfile] = ACTIONS(12477), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12477), + [anon_sym_BSLASHbibliography] = ACTIONS(12477), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12477), + [anon_sym_BSLASHincludesvg] = ACTIONS(12477), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12477), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12477), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12477), + [anon_sym_BSLASHimport] = ACTIONS(12477), + [anon_sym_BSLASHsubimport] = ACTIONS(12477), + [anon_sym_BSLASHinputfrom] = ACTIONS(12477), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12477), + [anon_sym_BSLASHincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHlabel] = ACTIONS(12477), + [anon_sym_BSLASHref] = ACTIONS(12477), + [anon_sym_BSLASHvref] = ACTIONS(12477), + [anon_sym_BSLASHVref] = ACTIONS(12477), + [anon_sym_BSLASHautoref] = ACTIONS(12477), + [anon_sym_BSLASHpageref] = ACTIONS(12477), + [anon_sym_BSLASHcref] = ACTIONS(12477), + [anon_sym_BSLASHCref] = ACTIONS(12477), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnameCref] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHlabelcref] = ACTIONS(12477), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12477), + [anon_sym_BSLASHeqref] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange] = ACTIONS(12477), + [anon_sym_BSLASHCrefrange] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewlabel] = ACTIONS(12477), + [anon_sym_BSLASHnewcommand] = ACTIONS(12477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12477), + [anon_sym_BSLASHgls] = ACTIONS(12477), + [anon_sym_BSLASHGls] = ACTIONS(12477), + [anon_sym_BSLASHGLS] = ACTIONS(12477), + [anon_sym_BSLASHglspl] = ACTIONS(12477), + [anon_sym_BSLASHGlspl] = ACTIONS(12477), + [anon_sym_BSLASHGLSpl] = ACTIONS(12477), + [anon_sym_BSLASHglsdisp] = ACTIONS(12477), + [anon_sym_BSLASHglslink] = ACTIONS(12477), + [anon_sym_BSLASHglstext] = ACTIONS(12477), + [anon_sym_BSLASHGlstext] = ACTIONS(12477), + [anon_sym_BSLASHGLStext] = ACTIONS(12477), + [anon_sym_BSLASHglsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12477), + [anon_sym_BSLASHglsplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSplural] = ACTIONS(12477), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHglsname] = ACTIONS(12477), + [anon_sym_BSLASHGlsname] = ACTIONS(12477), + [anon_sym_BSLASHGLSname] = ACTIONS(12477), + [anon_sym_BSLASHglssymbol] = ACTIONS(12477), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12477), + [anon_sym_BSLASHglsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12477), + [anon_sym_BSLASHglsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12477), + [anon_sym_BSLASHglsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12477), + [anon_sym_BSLASHglsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12477), + [anon_sym_BSLASHglsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12477), + [anon_sym_BSLASHnewacronym] = ACTIONS(12477), + [anon_sym_BSLASHacrshort] = ACTIONS(12477), + [anon_sym_BSLASHAcrshort] = ACTIONS(12477), + [anon_sym_BSLASHACRshort] = ACTIONS(12477), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12477), + [anon_sym_BSLASHacrlong] = ACTIONS(12477), + [anon_sym_BSLASHAcrlong] = ACTIONS(12477), + [anon_sym_BSLASHACRlong] = ACTIONS(12477), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12477), + [anon_sym_BSLASHacrfull] = ACTIONS(12477), + [anon_sym_BSLASHAcrfull] = ACTIONS(12477), + [anon_sym_BSLASHACRfull] = ACTIONS(12477), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12477), + [anon_sym_BSLASHacs] = ACTIONS(12477), + [anon_sym_BSLASHAcs] = ACTIONS(12477), + [anon_sym_BSLASHacsp] = ACTIONS(12477), + [anon_sym_BSLASHAcsp] = ACTIONS(12477), + [anon_sym_BSLASHacl] = ACTIONS(12477), + [anon_sym_BSLASHAcl] = ACTIONS(12477), + [anon_sym_BSLASHaclp] = ACTIONS(12477), + [anon_sym_BSLASHAclp] = ACTIONS(12477), + [anon_sym_BSLASHacf] = ACTIONS(12477), + [anon_sym_BSLASHAcf] = ACTIONS(12477), + [anon_sym_BSLASHacfp] = ACTIONS(12477), + [anon_sym_BSLASHAcfp] = ACTIONS(12477), + [anon_sym_BSLASHac] = ACTIONS(12477), + [anon_sym_BSLASHAc] = ACTIONS(12477), + [anon_sym_BSLASHacp] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12477), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12477), + [anon_sym_BSLASHcolor] = ACTIONS(12477), + [anon_sym_BSLASHcolorbox] = ACTIONS(12477), + [anon_sym_BSLASHtextcolor] = ACTIONS(12477), + [anon_sym_BSLASHpagecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12477), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12477), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12477), + }, + [1058] = { + [sym_generic_command_name] = ACTIONS(12124), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12124), + [aux_sym_section_token1] = ACTIONS(12124), + [aux_sym_subsection_token1] = ACTIONS(12124), + [aux_sym_subsubsection_token1] = ACTIONS(12124), + [aux_sym_paragraph_token1] = ACTIONS(12124), + [aux_sym_subparagraph_token1] = ACTIONS(12124), + [anon_sym_BSLASHitem] = ACTIONS(12124), + [anon_sym_LBRACK] = ACTIONS(12122), + [anon_sym_RBRACK] = ACTIONS(12122), + [anon_sym_LBRACE] = ACTIONS(12122), + [anon_sym_RBRACE] = ACTIONS(12122), + [anon_sym_LPAREN] = ACTIONS(12122), + [anon_sym_COMMA] = ACTIONS(12122), + [anon_sym_EQ] = ACTIONS(12122), + [sym_word] = ACTIONS(12122), + [sym_param] = ACTIONS(12122), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12122), + [anon_sym_DOLLAR] = ACTIONS(12124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12122), + [anon_sym_BSLASHbegin] = ACTIONS(12124), + [anon_sym_BSLASHcaption] = ACTIONS(12124), + [anon_sym_BSLASHcite] = ACTIONS(12124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCite] = ACTIONS(12124), + [anon_sym_BSLASHnocite] = ACTIONS(12124), + [anon_sym_BSLASHcitet] = ACTIONS(12124), + [anon_sym_BSLASHcitep] = ACTIONS(12124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteauthor] = ACTIONS(12124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitetitle] = ACTIONS(12124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteyear] = ACTIONS(12124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitedate] = ACTIONS(12124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteurl] = ACTIONS(12124), + [anon_sym_BSLASHfullcite] = ACTIONS(12124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12124), + [anon_sym_BSLASHcitealt] = ACTIONS(12124), + [anon_sym_BSLASHcitealp] = ACTIONS(12124), + [anon_sym_BSLASHcitetext] = ACTIONS(12124), + [anon_sym_BSLASHparencite] = ACTIONS(12124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHParencite] = ACTIONS(12124), + [anon_sym_BSLASHfootcite] = ACTIONS(12124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12124), + [anon_sym_BSLASHtextcite] = ACTIONS(12124), + [anon_sym_BSLASHTextcite] = ACTIONS(12124), + [anon_sym_BSLASHsmartcite] = ACTIONS(12124), + [anon_sym_BSLASHSmartcite] = ACTIONS(12124), + [anon_sym_BSLASHsupercite] = ACTIONS(12124), + [anon_sym_BSLASHautocite] = ACTIONS(12124), + [anon_sym_BSLASHAutocite] = ACTIONS(12124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHvolcite] = ACTIONS(12124), + [anon_sym_BSLASHVolcite] = ACTIONS(12124), + [anon_sym_BSLASHpvolcite] = ACTIONS(12124), + [anon_sym_BSLASHPvolcite] = ACTIONS(12124), + [anon_sym_BSLASHfvolcite] = ACTIONS(12124), + [anon_sym_BSLASHftvolcite] = ACTIONS(12124), + [anon_sym_BSLASHsvolcite] = ACTIONS(12124), + [anon_sym_BSLASHSvolcite] = ACTIONS(12124), + [anon_sym_BSLASHtvolcite] = ACTIONS(12124), + [anon_sym_BSLASHTvolcite] = ACTIONS(12124), + [anon_sym_BSLASHavolcite] = ACTIONS(12124), + [anon_sym_BSLASHAvolcite] = ACTIONS(12124), + [anon_sym_BSLASHnotecite] = ACTIONS(12124), + [anon_sym_BSLASHpnotecite] = ACTIONS(12124), + [anon_sym_BSLASHPnotecite] = ACTIONS(12124), + [anon_sym_BSLASHfnotecite] = ACTIONS(12124), + [anon_sym_BSLASHusepackage] = ACTIONS(12124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12124), + [anon_sym_BSLASHinclude] = ACTIONS(12124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12124), + [anon_sym_BSLASHinput] = ACTIONS(12124), + [anon_sym_BSLASHsubfile] = ACTIONS(12124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12124), + [anon_sym_BSLASHbibliography] = ACTIONS(12124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12124), + [anon_sym_BSLASHincludesvg] = ACTIONS(12124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12124), + [anon_sym_BSLASHimport] = ACTIONS(12124), + [anon_sym_BSLASHsubimport] = ACTIONS(12124), + [anon_sym_BSLASHinputfrom] = ACTIONS(12124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12124), + [anon_sym_BSLASHincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHlabel] = ACTIONS(12124), + [anon_sym_BSLASHref] = ACTIONS(12124), + [anon_sym_BSLASHvref] = ACTIONS(12124), + [anon_sym_BSLASHVref] = ACTIONS(12124), + [anon_sym_BSLASHautoref] = ACTIONS(12124), + [anon_sym_BSLASHpageref] = ACTIONS(12124), + [anon_sym_BSLASHcref] = ACTIONS(12124), + [anon_sym_BSLASHCref] = ACTIONS(12124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnameCref] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHlabelcref] = ACTIONS(12124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12124), + [anon_sym_BSLASHeqref] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange] = ACTIONS(12124), + [anon_sym_BSLASHCrefrange] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewlabel] = ACTIONS(12124), + [anon_sym_BSLASHnewcommand] = ACTIONS(12124), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12124), + [anon_sym_BSLASHgls] = ACTIONS(12124), + [anon_sym_BSLASHGls] = ACTIONS(12124), + [anon_sym_BSLASHGLS] = ACTIONS(12124), + [anon_sym_BSLASHglspl] = ACTIONS(12124), + [anon_sym_BSLASHGlspl] = ACTIONS(12124), + [anon_sym_BSLASHGLSpl] = ACTIONS(12124), + [anon_sym_BSLASHglsdisp] = ACTIONS(12124), + [anon_sym_BSLASHglslink] = ACTIONS(12124), + [anon_sym_BSLASHglstext] = ACTIONS(12124), + [anon_sym_BSLASHGlstext] = ACTIONS(12124), + [anon_sym_BSLASHGLStext] = ACTIONS(12124), + [anon_sym_BSLASHglsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12124), + [anon_sym_BSLASHglsplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSplural] = ACTIONS(12124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHglsname] = ACTIONS(12124), + [anon_sym_BSLASHGlsname] = ACTIONS(12124), + [anon_sym_BSLASHGLSname] = ACTIONS(12124), + [anon_sym_BSLASHglssymbol] = ACTIONS(12124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12124), + [anon_sym_BSLASHglsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12124), + [anon_sym_BSLASHglsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12124), + [anon_sym_BSLASHglsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12124), + [anon_sym_BSLASHglsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12124), + [anon_sym_BSLASHglsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12124), + [anon_sym_BSLASHnewacronym] = ACTIONS(12124), + [anon_sym_BSLASHacrshort] = ACTIONS(12124), + [anon_sym_BSLASHAcrshort] = ACTIONS(12124), + [anon_sym_BSLASHACRshort] = ACTIONS(12124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12124), + [anon_sym_BSLASHacrlong] = ACTIONS(12124), + [anon_sym_BSLASHAcrlong] = ACTIONS(12124), + [anon_sym_BSLASHACRlong] = ACTIONS(12124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12124), + [anon_sym_BSLASHacrfull] = ACTIONS(12124), + [anon_sym_BSLASHAcrfull] = ACTIONS(12124), + [anon_sym_BSLASHACRfull] = ACTIONS(12124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12124), + [anon_sym_BSLASHacs] = ACTIONS(12124), + [anon_sym_BSLASHAcs] = ACTIONS(12124), + [anon_sym_BSLASHacsp] = ACTIONS(12124), + [anon_sym_BSLASHAcsp] = ACTIONS(12124), + [anon_sym_BSLASHacl] = ACTIONS(12124), + [anon_sym_BSLASHAcl] = ACTIONS(12124), + [anon_sym_BSLASHaclp] = ACTIONS(12124), + [anon_sym_BSLASHAclp] = ACTIONS(12124), + [anon_sym_BSLASHacf] = ACTIONS(12124), + [anon_sym_BSLASHAcf] = ACTIONS(12124), + [anon_sym_BSLASHacfp] = ACTIONS(12124), + [anon_sym_BSLASHAcfp] = ACTIONS(12124), + [anon_sym_BSLASHac] = ACTIONS(12124), + [anon_sym_BSLASHAc] = ACTIONS(12124), + [anon_sym_BSLASHacp] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12124), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12124), + [anon_sym_BSLASHcolor] = ACTIONS(12124), + [anon_sym_BSLASHcolorbox] = ACTIONS(12124), + [anon_sym_BSLASHtextcolor] = ACTIONS(12124), + [anon_sym_BSLASHpagecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12124), + }, + [1059] = { + [sym_generic_command_name] = ACTIONS(12481), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12481), + [aux_sym_chapter_token1] = ACTIONS(12481), + [aux_sym_section_token1] = ACTIONS(12481), + [aux_sym_subsection_token1] = ACTIONS(12481), + [aux_sym_subsubsection_token1] = ACTIONS(12481), + [aux_sym_paragraph_token1] = ACTIONS(12481), + [aux_sym_subparagraph_token1] = ACTIONS(12481), + [anon_sym_BSLASHitem] = ACTIONS(12481), + [anon_sym_LBRACK] = ACTIONS(12479), + [anon_sym_LBRACE] = ACTIONS(12479), + [anon_sym_LPAREN] = ACTIONS(12479), + [anon_sym_COMMA] = ACTIONS(12479), + [anon_sym_EQ] = ACTIONS(12479), + [sym_word] = ACTIONS(12479), + [sym_param] = ACTIONS(12479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12479), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12479), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12479), + [anon_sym_DOLLAR] = ACTIONS(12481), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12479), + [anon_sym_BSLASHbegin] = ACTIONS(12481), + [anon_sym_BSLASHcaption] = ACTIONS(12481), + [anon_sym_BSLASHcite] = ACTIONS(12481), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCite] = ACTIONS(12481), + [anon_sym_BSLASHnocite] = ACTIONS(12481), + [anon_sym_BSLASHcitet] = ACTIONS(12481), + [anon_sym_BSLASHcitep] = ACTIONS(12481), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteauthor] = ACTIONS(12481), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12481), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitetitle] = ACTIONS(12481), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteyear] = ACTIONS(12481), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitedate] = ACTIONS(12481), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteurl] = ACTIONS(12481), + [anon_sym_BSLASHfullcite] = ACTIONS(12481), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12481), + [anon_sym_BSLASHcitealt] = ACTIONS(12481), + [anon_sym_BSLASHcitealp] = ACTIONS(12481), + [anon_sym_BSLASHcitetext] = ACTIONS(12481), + [anon_sym_BSLASHparencite] = ACTIONS(12481), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHParencite] = ACTIONS(12481), + [anon_sym_BSLASHfootcite] = ACTIONS(12481), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12481), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12481), + [anon_sym_BSLASHtextcite] = ACTIONS(12481), + [anon_sym_BSLASHTextcite] = ACTIONS(12481), + [anon_sym_BSLASHsmartcite] = ACTIONS(12481), + [anon_sym_BSLASHSmartcite] = ACTIONS(12481), + [anon_sym_BSLASHsupercite] = ACTIONS(12481), + [anon_sym_BSLASHautocite] = ACTIONS(12481), + [anon_sym_BSLASHAutocite] = ACTIONS(12481), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHvolcite] = ACTIONS(12481), + [anon_sym_BSLASHVolcite] = ACTIONS(12481), + [anon_sym_BSLASHpvolcite] = ACTIONS(12481), + [anon_sym_BSLASHPvolcite] = ACTIONS(12481), + [anon_sym_BSLASHfvolcite] = ACTIONS(12481), + [anon_sym_BSLASHftvolcite] = ACTIONS(12481), + [anon_sym_BSLASHsvolcite] = ACTIONS(12481), + [anon_sym_BSLASHSvolcite] = ACTIONS(12481), + [anon_sym_BSLASHtvolcite] = ACTIONS(12481), + [anon_sym_BSLASHTvolcite] = ACTIONS(12481), + [anon_sym_BSLASHavolcite] = ACTIONS(12481), + [anon_sym_BSLASHAvolcite] = ACTIONS(12481), + [anon_sym_BSLASHnotecite] = ACTIONS(12481), + [anon_sym_BSLASHpnotecite] = ACTIONS(12481), + [anon_sym_BSLASHPnotecite] = ACTIONS(12481), + [anon_sym_BSLASHfnotecite] = ACTIONS(12481), + [anon_sym_BSLASHusepackage] = ACTIONS(12481), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12481), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12481), + [anon_sym_BSLASHinclude] = ACTIONS(12481), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12481), + [anon_sym_BSLASHinput] = ACTIONS(12481), + [anon_sym_BSLASHsubfile] = ACTIONS(12481), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12481), + [anon_sym_BSLASHbibliography] = ACTIONS(12481), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12481), + [anon_sym_BSLASHincludesvg] = ACTIONS(12481), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12481), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12481), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12481), + [anon_sym_BSLASHimport] = ACTIONS(12481), + [anon_sym_BSLASHsubimport] = ACTIONS(12481), + [anon_sym_BSLASHinputfrom] = ACTIONS(12481), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12481), + [anon_sym_BSLASHincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHlabel] = ACTIONS(12481), + [anon_sym_BSLASHref] = ACTIONS(12481), + [anon_sym_BSLASHvref] = ACTIONS(12481), + [anon_sym_BSLASHVref] = ACTIONS(12481), + [anon_sym_BSLASHautoref] = ACTIONS(12481), + [anon_sym_BSLASHpageref] = ACTIONS(12481), + [anon_sym_BSLASHcref] = ACTIONS(12481), + [anon_sym_BSLASHCref] = ACTIONS(12481), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnameCref] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHlabelcref] = ACTIONS(12481), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12481), + [anon_sym_BSLASHeqref] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange] = ACTIONS(12481), + [anon_sym_BSLASHCrefrange] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewlabel] = ACTIONS(12481), + [anon_sym_BSLASHnewcommand] = ACTIONS(12481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12481), + [anon_sym_BSLASHgls] = ACTIONS(12481), + [anon_sym_BSLASHGls] = ACTIONS(12481), + [anon_sym_BSLASHGLS] = ACTIONS(12481), + [anon_sym_BSLASHglspl] = ACTIONS(12481), + [anon_sym_BSLASHGlspl] = ACTIONS(12481), + [anon_sym_BSLASHGLSpl] = ACTIONS(12481), + [anon_sym_BSLASHglsdisp] = ACTIONS(12481), + [anon_sym_BSLASHglslink] = ACTIONS(12481), + [anon_sym_BSLASHglstext] = ACTIONS(12481), + [anon_sym_BSLASHGlstext] = ACTIONS(12481), + [anon_sym_BSLASHGLStext] = ACTIONS(12481), + [anon_sym_BSLASHglsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12481), + [anon_sym_BSLASHglsplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSplural] = ACTIONS(12481), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHglsname] = ACTIONS(12481), + [anon_sym_BSLASHGlsname] = ACTIONS(12481), + [anon_sym_BSLASHGLSname] = ACTIONS(12481), + [anon_sym_BSLASHglssymbol] = ACTIONS(12481), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12481), + [anon_sym_BSLASHglsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12481), + [anon_sym_BSLASHglsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12481), + [anon_sym_BSLASHglsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12481), + [anon_sym_BSLASHglsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12481), + [anon_sym_BSLASHglsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12481), + [anon_sym_BSLASHnewacronym] = ACTIONS(12481), + [anon_sym_BSLASHacrshort] = ACTIONS(12481), + [anon_sym_BSLASHAcrshort] = ACTIONS(12481), + [anon_sym_BSLASHACRshort] = ACTIONS(12481), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12481), + [anon_sym_BSLASHacrlong] = ACTIONS(12481), + [anon_sym_BSLASHAcrlong] = ACTIONS(12481), + [anon_sym_BSLASHACRlong] = ACTIONS(12481), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12481), + [anon_sym_BSLASHacrfull] = ACTIONS(12481), + [anon_sym_BSLASHAcrfull] = ACTIONS(12481), + [anon_sym_BSLASHACRfull] = ACTIONS(12481), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12481), + [anon_sym_BSLASHacs] = ACTIONS(12481), + [anon_sym_BSLASHAcs] = ACTIONS(12481), + [anon_sym_BSLASHacsp] = ACTIONS(12481), + [anon_sym_BSLASHAcsp] = ACTIONS(12481), + [anon_sym_BSLASHacl] = ACTIONS(12481), + [anon_sym_BSLASHAcl] = ACTIONS(12481), + [anon_sym_BSLASHaclp] = ACTIONS(12481), + [anon_sym_BSLASHAclp] = ACTIONS(12481), + [anon_sym_BSLASHacf] = ACTIONS(12481), + [anon_sym_BSLASHAcf] = ACTIONS(12481), + [anon_sym_BSLASHacfp] = ACTIONS(12481), + [anon_sym_BSLASHAcfp] = ACTIONS(12481), + [anon_sym_BSLASHac] = ACTIONS(12481), + [anon_sym_BSLASHAc] = ACTIONS(12481), + [anon_sym_BSLASHacp] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12481), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12481), + [anon_sym_BSLASHcolor] = ACTIONS(12481), + [anon_sym_BSLASHcolorbox] = ACTIONS(12481), + [anon_sym_BSLASHtextcolor] = ACTIONS(12481), + [anon_sym_BSLASHpagecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12481), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12481), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12481), + }, + [1060] = { + [sym_generic_command_name] = ACTIONS(12493), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12493), + [aux_sym_chapter_token1] = ACTIONS(12493), + [aux_sym_section_token1] = ACTIONS(12493), + [aux_sym_subsection_token1] = ACTIONS(12493), + [aux_sym_subsubsection_token1] = ACTIONS(12493), + [aux_sym_paragraph_token1] = ACTIONS(12493), + [aux_sym_subparagraph_token1] = ACTIONS(12493), + [anon_sym_BSLASHitem] = ACTIONS(12493), + [anon_sym_LBRACK] = ACTIONS(12491), + [anon_sym_LBRACE] = ACTIONS(12491), + [anon_sym_LPAREN] = ACTIONS(12491), + [anon_sym_COMMA] = ACTIONS(12491), + [anon_sym_EQ] = ACTIONS(12491), + [sym_word] = ACTIONS(12491), + [sym_param] = ACTIONS(12491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12491), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12491), + [anon_sym_DOLLAR] = ACTIONS(12493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12491), + [anon_sym_BSLASHbegin] = ACTIONS(12493), + [anon_sym_BSLASHcaption] = ACTIONS(12493), + [anon_sym_BSLASHcite] = ACTIONS(12493), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCite] = ACTIONS(12493), + [anon_sym_BSLASHnocite] = ACTIONS(12493), + [anon_sym_BSLASHcitet] = ACTIONS(12493), + [anon_sym_BSLASHcitep] = ACTIONS(12493), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteauthor] = ACTIONS(12493), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12493), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitetitle] = ACTIONS(12493), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteyear] = ACTIONS(12493), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitedate] = ACTIONS(12493), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteurl] = ACTIONS(12493), + [anon_sym_BSLASHfullcite] = ACTIONS(12493), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12493), + [anon_sym_BSLASHcitealt] = ACTIONS(12493), + [anon_sym_BSLASHcitealp] = ACTIONS(12493), + [anon_sym_BSLASHcitetext] = ACTIONS(12493), + [anon_sym_BSLASHparencite] = ACTIONS(12493), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHParencite] = ACTIONS(12493), + [anon_sym_BSLASHfootcite] = ACTIONS(12493), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12493), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12493), + [anon_sym_BSLASHtextcite] = ACTIONS(12493), + [anon_sym_BSLASHTextcite] = ACTIONS(12493), + [anon_sym_BSLASHsmartcite] = ACTIONS(12493), + [anon_sym_BSLASHSmartcite] = ACTIONS(12493), + [anon_sym_BSLASHsupercite] = ACTIONS(12493), + [anon_sym_BSLASHautocite] = ACTIONS(12493), + [anon_sym_BSLASHAutocite] = ACTIONS(12493), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHvolcite] = ACTIONS(12493), + [anon_sym_BSLASHVolcite] = ACTIONS(12493), + [anon_sym_BSLASHpvolcite] = ACTIONS(12493), + [anon_sym_BSLASHPvolcite] = ACTIONS(12493), + [anon_sym_BSLASHfvolcite] = ACTIONS(12493), + [anon_sym_BSLASHftvolcite] = ACTIONS(12493), + [anon_sym_BSLASHsvolcite] = ACTIONS(12493), + [anon_sym_BSLASHSvolcite] = ACTIONS(12493), + [anon_sym_BSLASHtvolcite] = ACTIONS(12493), + [anon_sym_BSLASHTvolcite] = ACTIONS(12493), + [anon_sym_BSLASHavolcite] = ACTIONS(12493), + [anon_sym_BSLASHAvolcite] = ACTIONS(12493), + [anon_sym_BSLASHnotecite] = ACTIONS(12493), + [anon_sym_BSLASHpnotecite] = ACTIONS(12493), + [anon_sym_BSLASHPnotecite] = ACTIONS(12493), + [anon_sym_BSLASHfnotecite] = ACTIONS(12493), + [anon_sym_BSLASHusepackage] = ACTIONS(12493), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12493), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12493), + [anon_sym_BSLASHinclude] = ACTIONS(12493), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12493), + [anon_sym_BSLASHinput] = ACTIONS(12493), + [anon_sym_BSLASHsubfile] = ACTIONS(12493), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12493), + [anon_sym_BSLASHbibliography] = ACTIONS(12493), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12493), + [anon_sym_BSLASHincludesvg] = ACTIONS(12493), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12493), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12493), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12493), + [anon_sym_BSLASHimport] = ACTIONS(12493), + [anon_sym_BSLASHsubimport] = ACTIONS(12493), + [anon_sym_BSLASHinputfrom] = ACTIONS(12493), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12493), + [anon_sym_BSLASHincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHlabel] = ACTIONS(12493), + [anon_sym_BSLASHref] = ACTIONS(12493), + [anon_sym_BSLASHvref] = ACTIONS(12493), + [anon_sym_BSLASHVref] = ACTIONS(12493), + [anon_sym_BSLASHautoref] = ACTIONS(12493), + [anon_sym_BSLASHpageref] = ACTIONS(12493), + [anon_sym_BSLASHcref] = ACTIONS(12493), + [anon_sym_BSLASHCref] = ACTIONS(12493), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnameCref] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHlabelcref] = ACTIONS(12493), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12493), + [anon_sym_BSLASHeqref] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange] = ACTIONS(12493), + [anon_sym_BSLASHCrefrange] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewlabel] = ACTIONS(12493), + [anon_sym_BSLASHnewcommand] = ACTIONS(12493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12493), + [anon_sym_BSLASHgls] = ACTIONS(12493), + [anon_sym_BSLASHGls] = ACTIONS(12493), + [anon_sym_BSLASHGLS] = ACTIONS(12493), + [anon_sym_BSLASHglspl] = ACTIONS(12493), + [anon_sym_BSLASHGlspl] = ACTIONS(12493), + [anon_sym_BSLASHGLSpl] = ACTIONS(12493), + [anon_sym_BSLASHglsdisp] = ACTIONS(12493), + [anon_sym_BSLASHglslink] = ACTIONS(12493), + [anon_sym_BSLASHglstext] = ACTIONS(12493), + [anon_sym_BSLASHGlstext] = ACTIONS(12493), + [anon_sym_BSLASHGLStext] = ACTIONS(12493), + [anon_sym_BSLASHglsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12493), + [anon_sym_BSLASHglsplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSplural] = ACTIONS(12493), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHglsname] = ACTIONS(12493), + [anon_sym_BSLASHGlsname] = ACTIONS(12493), + [anon_sym_BSLASHGLSname] = ACTIONS(12493), + [anon_sym_BSLASHglssymbol] = ACTIONS(12493), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12493), + [anon_sym_BSLASHglsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12493), + [anon_sym_BSLASHglsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12493), + [anon_sym_BSLASHglsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12493), + [anon_sym_BSLASHglsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12493), + [anon_sym_BSLASHglsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12493), + [anon_sym_BSLASHnewacronym] = ACTIONS(12493), + [anon_sym_BSLASHacrshort] = ACTIONS(12493), + [anon_sym_BSLASHAcrshort] = ACTIONS(12493), + [anon_sym_BSLASHACRshort] = ACTIONS(12493), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12493), + [anon_sym_BSLASHacrlong] = ACTIONS(12493), + [anon_sym_BSLASHAcrlong] = ACTIONS(12493), + [anon_sym_BSLASHACRlong] = ACTIONS(12493), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12493), + [anon_sym_BSLASHacrfull] = ACTIONS(12493), + [anon_sym_BSLASHAcrfull] = ACTIONS(12493), + [anon_sym_BSLASHACRfull] = ACTIONS(12493), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12493), + [anon_sym_BSLASHacs] = ACTIONS(12493), + [anon_sym_BSLASHAcs] = ACTIONS(12493), + [anon_sym_BSLASHacsp] = ACTIONS(12493), + [anon_sym_BSLASHAcsp] = ACTIONS(12493), + [anon_sym_BSLASHacl] = ACTIONS(12493), + [anon_sym_BSLASHAcl] = ACTIONS(12493), + [anon_sym_BSLASHaclp] = ACTIONS(12493), + [anon_sym_BSLASHAclp] = ACTIONS(12493), + [anon_sym_BSLASHacf] = ACTIONS(12493), + [anon_sym_BSLASHAcf] = ACTIONS(12493), + [anon_sym_BSLASHacfp] = ACTIONS(12493), + [anon_sym_BSLASHAcfp] = ACTIONS(12493), + [anon_sym_BSLASHac] = ACTIONS(12493), + [anon_sym_BSLASHAc] = ACTIONS(12493), + [anon_sym_BSLASHacp] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12493), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12493), + [anon_sym_BSLASHcolor] = ACTIONS(12493), + [anon_sym_BSLASHcolorbox] = ACTIONS(12493), + [anon_sym_BSLASHtextcolor] = ACTIONS(12493), + [anon_sym_BSLASHpagecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12493), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12493), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12493), + }, + [1061] = { + [sym_generic_command_name] = ACTIONS(12497), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12497), + [aux_sym_chapter_token1] = ACTIONS(12497), + [aux_sym_section_token1] = ACTIONS(12497), + [aux_sym_subsection_token1] = ACTIONS(12497), + [aux_sym_subsubsection_token1] = ACTIONS(12497), + [aux_sym_paragraph_token1] = ACTIONS(12497), + [aux_sym_subparagraph_token1] = ACTIONS(12497), + [anon_sym_BSLASHitem] = ACTIONS(12497), + [anon_sym_LBRACK] = ACTIONS(12495), + [anon_sym_LBRACE] = ACTIONS(12495), + [anon_sym_LPAREN] = ACTIONS(12495), + [anon_sym_COMMA] = ACTIONS(12495), + [anon_sym_EQ] = ACTIONS(12495), + [sym_word] = ACTIONS(12495), + [sym_param] = ACTIONS(12495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12495), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12495), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12495), + [anon_sym_DOLLAR] = ACTIONS(12497), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12495), + [anon_sym_BSLASHbegin] = ACTIONS(12497), + [anon_sym_BSLASHcaption] = ACTIONS(12497), + [anon_sym_BSLASHcite] = ACTIONS(12497), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCite] = ACTIONS(12497), + [anon_sym_BSLASHnocite] = ACTIONS(12497), + [anon_sym_BSLASHcitet] = ACTIONS(12497), + [anon_sym_BSLASHcitep] = ACTIONS(12497), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteauthor] = ACTIONS(12497), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12497), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitetitle] = ACTIONS(12497), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteyear] = ACTIONS(12497), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitedate] = ACTIONS(12497), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteurl] = ACTIONS(12497), + [anon_sym_BSLASHfullcite] = ACTIONS(12497), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12497), + [anon_sym_BSLASHcitealt] = ACTIONS(12497), + [anon_sym_BSLASHcitealp] = ACTIONS(12497), + [anon_sym_BSLASHcitetext] = ACTIONS(12497), + [anon_sym_BSLASHparencite] = ACTIONS(12497), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHParencite] = ACTIONS(12497), + [anon_sym_BSLASHfootcite] = ACTIONS(12497), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12497), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12497), + [anon_sym_BSLASHtextcite] = ACTIONS(12497), + [anon_sym_BSLASHTextcite] = ACTIONS(12497), + [anon_sym_BSLASHsmartcite] = ACTIONS(12497), + [anon_sym_BSLASHSmartcite] = ACTIONS(12497), + [anon_sym_BSLASHsupercite] = ACTIONS(12497), + [anon_sym_BSLASHautocite] = ACTIONS(12497), + [anon_sym_BSLASHAutocite] = ACTIONS(12497), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHvolcite] = ACTIONS(12497), + [anon_sym_BSLASHVolcite] = ACTIONS(12497), + [anon_sym_BSLASHpvolcite] = ACTIONS(12497), + [anon_sym_BSLASHPvolcite] = ACTIONS(12497), + [anon_sym_BSLASHfvolcite] = ACTIONS(12497), + [anon_sym_BSLASHftvolcite] = ACTIONS(12497), + [anon_sym_BSLASHsvolcite] = ACTIONS(12497), + [anon_sym_BSLASHSvolcite] = ACTIONS(12497), + [anon_sym_BSLASHtvolcite] = ACTIONS(12497), + [anon_sym_BSLASHTvolcite] = ACTIONS(12497), + [anon_sym_BSLASHavolcite] = ACTIONS(12497), + [anon_sym_BSLASHAvolcite] = ACTIONS(12497), + [anon_sym_BSLASHnotecite] = ACTIONS(12497), + [anon_sym_BSLASHpnotecite] = ACTIONS(12497), + [anon_sym_BSLASHPnotecite] = ACTIONS(12497), + [anon_sym_BSLASHfnotecite] = ACTIONS(12497), + [anon_sym_BSLASHusepackage] = ACTIONS(12497), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12497), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12497), + [anon_sym_BSLASHinclude] = ACTIONS(12497), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12497), + [anon_sym_BSLASHinput] = ACTIONS(12497), + [anon_sym_BSLASHsubfile] = ACTIONS(12497), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12497), + [anon_sym_BSLASHbibliography] = ACTIONS(12497), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12497), + [anon_sym_BSLASHincludesvg] = ACTIONS(12497), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12497), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12497), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12497), + [anon_sym_BSLASHimport] = ACTIONS(12497), + [anon_sym_BSLASHsubimport] = ACTIONS(12497), + [anon_sym_BSLASHinputfrom] = ACTIONS(12497), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12497), + [anon_sym_BSLASHincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHlabel] = ACTIONS(12497), + [anon_sym_BSLASHref] = ACTIONS(12497), + [anon_sym_BSLASHvref] = ACTIONS(12497), + [anon_sym_BSLASHVref] = ACTIONS(12497), + [anon_sym_BSLASHautoref] = ACTIONS(12497), + [anon_sym_BSLASHpageref] = ACTIONS(12497), + [anon_sym_BSLASHcref] = ACTIONS(12497), + [anon_sym_BSLASHCref] = ACTIONS(12497), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnameCref] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHlabelcref] = ACTIONS(12497), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12497), + [anon_sym_BSLASHeqref] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange] = ACTIONS(12497), + [anon_sym_BSLASHCrefrange] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewlabel] = ACTIONS(12497), + [anon_sym_BSLASHnewcommand] = ACTIONS(12497), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12497), + [anon_sym_BSLASHgls] = ACTIONS(12497), + [anon_sym_BSLASHGls] = ACTIONS(12497), + [anon_sym_BSLASHGLS] = ACTIONS(12497), + [anon_sym_BSLASHglspl] = ACTIONS(12497), + [anon_sym_BSLASHGlspl] = ACTIONS(12497), + [anon_sym_BSLASHGLSpl] = ACTIONS(12497), + [anon_sym_BSLASHglsdisp] = ACTIONS(12497), + [anon_sym_BSLASHglslink] = ACTIONS(12497), + [anon_sym_BSLASHglstext] = ACTIONS(12497), + [anon_sym_BSLASHGlstext] = ACTIONS(12497), + [anon_sym_BSLASHGLStext] = ACTIONS(12497), + [anon_sym_BSLASHglsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12497), + [anon_sym_BSLASHglsplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSplural] = ACTIONS(12497), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHglsname] = ACTIONS(12497), + [anon_sym_BSLASHGlsname] = ACTIONS(12497), + [anon_sym_BSLASHGLSname] = ACTIONS(12497), + [anon_sym_BSLASHglssymbol] = ACTIONS(12497), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12497), + [anon_sym_BSLASHglsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12497), + [anon_sym_BSLASHglsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12497), + [anon_sym_BSLASHglsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12497), + [anon_sym_BSLASHglsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12497), + [anon_sym_BSLASHglsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12497), + [anon_sym_BSLASHnewacronym] = ACTIONS(12497), + [anon_sym_BSLASHacrshort] = ACTIONS(12497), + [anon_sym_BSLASHAcrshort] = ACTIONS(12497), + [anon_sym_BSLASHACRshort] = ACTIONS(12497), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12497), + [anon_sym_BSLASHacrlong] = ACTIONS(12497), + [anon_sym_BSLASHAcrlong] = ACTIONS(12497), + [anon_sym_BSLASHACRlong] = ACTIONS(12497), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12497), + [anon_sym_BSLASHacrfull] = ACTIONS(12497), + [anon_sym_BSLASHAcrfull] = ACTIONS(12497), + [anon_sym_BSLASHACRfull] = ACTIONS(12497), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12497), + [anon_sym_BSLASHacs] = ACTIONS(12497), + [anon_sym_BSLASHAcs] = ACTIONS(12497), + [anon_sym_BSLASHacsp] = ACTIONS(12497), + [anon_sym_BSLASHAcsp] = ACTIONS(12497), + [anon_sym_BSLASHacl] = ACTIONS(12497), + [anon_sym_BSLASHAcl] = ACTIONS(12497), + [anon_sym_BSLASHaclp] = ACTIONS(12497), + [anon_sym_BSLASHAclp] = ACTIONS(12497), + [anon_sym_BSLASHacf] = ACTIONS(12497), + [anon_sym_BSLASHAcf] = ACTIONS(12497), + [anon_sym_BSLASHacfp] = ACTIONS(12497), + [anon_sym_BSLASHAcfp] = ACTIONS(12497), + [anon_sym_BSLASHac] = ACTIONS(12497), + [anon_sym_BSLASHAc] = ACTIONS(12497), + [anon_sym_BSLASHacp] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12497), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12497), + [anon_sym_BSLASHcolor] = ACTIONS(12497), + [anon_sym_BSLASHcolorbox] = ACTIONS(12497), + [anon_sym_BSLASHtextcolor] = ACTIONS(12497), + [anon_sym_BSLASHpagecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12497), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12497), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12497), + }, + [1062] = { + [sym_generic_command_name] = ACTIONS(12501), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12501), + [aux_sym_chapter_token1] = ACTIONS(12501), + [aux_sym_section_token1] = ACTIONS(12501), + [aux_sym_subsection_token1] = ACTIONS(12501), + [aux_sym_subsubsection_token1] = ACTIONS(12501), + [aux_sym_paragraph_token1] = ACTIONS(12501), + [aux_sym_subparagraph_token1] = ACTIONS(12501), + [anon_sym_BSLASHitem] = ACTIONS(12501), + [anon_sym_LBRACK] = ACTIONS(12499), + [anon_sym_LBRACE] = ACTIONS(12499), + [anon_sym_LPAREN] = ACTIONS(12499), + [anon_sym_COMMA] = ACTIONS(12499), + [anon_sym_EQ] = ACTIONS(12499), + [sym_word] = ACTIONS(12499), + [sym_param] = ACTIONS(12499), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12499), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12499), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12499), + [anon_sym_DOLLAR] = ACTIONS(12501), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12499), + [anon_sym_BSLASHbegin] = ACTIONS(12501), + [anon_sym_BSLASHcaption] = ACTIONS(12501), + [anon_sym_BSLASHcite] = ACTIONS(12501), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCite] = ACTIONS(12501), + [anon_sym_BSLASHnocite] = ACTIONS(12501), + [anon_sym_BSLASHcitet] = ACTIONS(12501), + [anon_sym_BSLASHcitep] = ACTIONS(12501), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteauthor] = ACTIONS(12501), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12501), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitetitle] = ACTIONS(12501), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteyear] = ACTIONS(12501), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitedate] = ACTIONS(12501), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteurl] = ACTIONS(12501), + [anon_sym_BSLASHfullcite] = ACTIONS(12501), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12501), + [anon_sym_BSLASHcitealt] = ACTIONS(12501), + [anon_sym_BSLASHcitealp] = ACTIONS(12501), + [anon_sym_BSLASHcitetext] = ACTIONS(12501), + [anon_sym_BSLASHparencite] = ACTIONS(12501), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHParencite] = ACTIONS(12501), + [anon_sym_BSLASHfootcite] = ACTIONS(12501), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12501), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12501), + [anon_sym_BSLASHtextcite] = ACTIONS(12501), + [anon_sym_BSLASHTextcite] = ACTIONS(12501), + [anon_sym_BSLASHsmartcite] = ACTIONS(12501), + [anon_sym_BSLASHSmartcite] = ACTIONS(12501), + [anon_sym_BSLASHsupercite] = ACTIONS(12501), + [anon_sym_BSLASHautocite] = ACTIONS(12501), + [anon_sym_BSLASHAutocite] = ACTIONS(12501), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHvolcite] = ACTIONS(12501), + [anon_sym_BSLASHVolcite] = ACTIONS(12501), + [anon_sym_BSLASHpvolcite] = ACTIONS(12501), + [anon_sym_BSLASHPvolcite] = ACTIONS(12501), + [anon_sym_BSLASHfvolcite] = ACTIONS(12501), + [anon_sym_BSLASHftvolcite] = ACTIONS(12501), + [anon_sym_BSLASHsvolcite] = ACTIONS(12501), + [anon_sym_BSLASHSvolcite] = ACTIONS(12501), + [anon_sym_BSLASHtvolcite] = ACTIONS(12501), + [anon_sym_BSLASHTvolcite] = ACTIONS(12501), + [anon_sym_BSLASHavolcite] = ACTIONS(12501), + [anon_sym_BSLASHAvolcite] = ACTIONS(12501), + [anon_sym_BSLASHnotecite] = ACTIONS(12501), + [anon_sym_BSLASHpnotecite] = ACTIONS(12501), + [anon_sym_BSLASHPnotecite] = ACTIONS(12501), + [anon_sym_BSLASHfnotecite] = ACTIONS(12501), + [anon_sym_BSLASHusepackage] = ACTIONS(12501), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12501), + [anon_sym_BSLASHinclude] = ACTIONS(12501), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12501), + [anon_sym_BSLASHinput] = ACTIONS(12501), + [anon_sym_BSLASHsubfile] = ACTIONS(12501), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12501), + [anon_sym_BSLASHbibliography] = ACTIONS(12501), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12501), + [anon_sym_BSLASHincludesvg] = ACTIONS(12501), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12501), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12501), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12501), + [anon_sym_BSLASHimport] = ACTIONS(12501), + [anon_sym_BSLASHsubimport] = ACTIONS(12501), + [anon_sym_BSLASHinputfrom] = ACTIONS(12501), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12501), + [anon_sym_BSLASHincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHlabel] = ACTIONS(12501), + [anon_sym_BSLASHref] = ACTIONS(12501), + [anon_sym_BSLASHvref] = ACTIONS(12501), + [anon_sym_BSLASHVref] = ACTIONS(12501), + [anon_sym_BSLASHautoref] = ACTIONS(12501), + [anon_sym_BSLASHpageref] = ACTIONS(12501), + [anon_sym_BSLASHcref] = ACTIONS(12501), + [anon_sym_BSLASHCref] = ACTIONS(12501), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnameCref] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHlabelcref] = ACTIONS(12501), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12501), + [anon_sym_BSLASHeqref] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange] = ACTIONS(12501), + [anon_sym_BSLASHCrefrange] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewlabel] = ACTIONS(12501), + [anon_sym_BSLASHnewcommand] = ACTIONS(12501), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12501), + [anon_sym_BSLASHgls] = ACTIONS(12501), + [anon_sym_BSLASHGls] = ACTIONS(12501), + [anon_sym_BSLASHGLS] = ACTIONS(12501), + [anon_sym_BSLASHglspl] = ACTIONS(12501), + [anon_sym_BSLASHGlspl] = ACTIONS(12501), + [anon_sym_BSLASHGLSpl] = ACTIONS(12501), + [anon_sym_BSLASHglsdisp] = ACTIONS(12501), + [anon_sym_BSLASHglslink] = ACTIONS(12501), + [anon_sym_BSLASHglstext] = ACTIONS(12501), + [anon_sym_BSLASHGlstext] = ACTIONS(12501), + [anon_sym_BSLASHGLStext] = ACTIONS(12501), + [anon_sym_BSLASHglsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12501), + [anon_sym_BSLASHglsplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSplural] = ACTIONS(12501), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHglsname] = ACTIONS(12501), + [anon_sym_BSLASHGlsname] = ACTIONS(12501), + [anon_sym_BSLASHGLSname] = ACTIONS(12501), + [anon_sym_BSLASHglssymbol] = ACTIONS(12501), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12501), + [anon_sym_BSLASHglsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12501), + [anon_sym_BSLASHglsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12501), + [anon_sym_BSLASHglsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12501), + [anon_sym_BSLASHglsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12501), + [anon_sym_BSLASHglsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12501), + [anon_sym_BSLASHnewacronym] = ACTIONS(12501), + [anon_sym_BSLASHacrshort] = ACTIONS(12501), + [anon_sym_BSLASHAcrshort] = ACTIONS(12501), + [anon_sym_BSLASHACRshort] = ACTIONS(12501), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12501), + [anon_sym_BSLASHacrlong] = ACTIONS(12501), + [anon_sym_BSLASHAcrlong] = ACTIONS(12501), + [anon_sym_BSLASHACRlong] = ACTIONS(12501), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12501), + [anon_sym_BSLASHacrfull] = ACTIONS(12501), + [anon_sym_BSLASHAcrfull] = ACTIONS(12501), + [anon_sym_BSLASHACRfull] = ACTIONS(12501), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12501), + [anon_sym_BSLASHacs] = ACTIONS(12501), + [anon_sym_BSLASHAcs] = ACTIONS(12501), + [anon_sym_BSLASHacsp] = ACTIONS(12501), + [anon_sym_BSLASHAcsp] = ACTIONS(12501), + [anon_sym_BSLASHacl] = ACTIONS(12501), + [anon_sym_BSLASHAcl] = ACTIONS(12501), + [anon_sym_BSLASHaclp] = ACTIONS(12501), + [anon_sym_BSLASHAclp] = ACTIONS(12501), + [anon_sym_BSLASHacf] = ACTIONS(12501), + [anon_sym_BSLASHAcf] = ACTIONS(12501), + [anon_sym_BSLASHacfp] = ACTIONS(12501), + [anon_sym_BSLASHAcfp] = ACTIONS(12501), + [anon_sym_BSLASHac] = ACTIONS(12501), + [anon_sym_BSLASHAc] = ACTIONS(12501), + [anon_sym_BSLASHacp] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12501), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12501), + [anon_sym_BSLASHcolor] = ACTIONS(12501), + [anon_sym_BSLASHcolorbox] = ACTIONS(12501), + [anon_sym_BSLASHtextcolor] = ACTIONS(12501), + [anon_sym_BSLASHpagecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12501), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12501), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12501), + }, + [1063] = { + [sym_generic_command_name] = ACTIONS(12509), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12509), + [aux_sym_chapter_token1] = ACTIONS(12509), + [aux_sym_section_token1] = ACTIONS(12509), + [aux_sym_subsection_token1] = ACTIONS(12509), + [aux_sym_subsubsection_token1] = ACTIONS(12509), + [aux_sym_paragraph_token1] = ACTIONS(12509), + [aux_sym_subparagraph_token1] = ACTIONS(12509), + [anon_sym_BSLASHitem] = ACTIONS(12509), + [anon_sym_LBRACK] = ACTIONS(12507), + [anon_sym_LBRACE] = ACTIONS(12507), + [anon_sym_LPAREN] = ACTIONS(12507), + [anon_sym_COMMA] = ACTIONS(12507), + [anon_sym_EQ] = ACTIONS(12507), + [sym_word] = ACTIONS(12507), + [sym_param] = ACTIONS(12507), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12507), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12507), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12507), + [anon_sym_DOLLAR] = ACTIONS(12509), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12507), + [anon_sym_BSLASHbegin] = ACTIONS(12509), + [anon_sym_BSLASHcaption] = ACTIONS(12509), + [anon_sym_BSLASHcite] = ACTIONS(12509), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCite] = ACTIONS(12509), + [anon_sym_BSLASHnocite] = ACTIONS(12509), + [anon_sym_BSLASHcitet] = ACTIONS(12509), + [anon_sym_BSLASHcitep] = ACTIONS(12509), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteauthor] = ACTIONS(12509), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12509), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitetitle] = ACTIONS(12509), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteyear] = ACTIONS(12509), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitedate] = ACTIONS(12509), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteurl] = ACTIONS(12509), + [anon_sym_BSLASHfullcite] = ACTIONS(12509), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12509), + [anon_sym_BSLASHcitealt] = ACTIONS(12509), + [anon_sym_BSLASHcitealp] = ACTIONS(12509), + [anon_sym_BSLASHcitetext] = ACTIONS(12509), + [anon_sym_BSLASHparencite] = ACTIONS(12509), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHParencite] = ACTIONS(12509), + [anon_sym_BSLASHfootcite] = ACTIONS(12509), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12509), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12509), + [anon_sym_BSLASHtextcite] = ACTIONS(12509), + [anon_sym_BSLASHTextcite] = ACTIONS(12509), + [anon_sym_BSLASHsmartcite] = ACTIONS(12509), + [anon_sym_BSLASHSmartcite] = ACTIONS(12509), + [anon_sym_BSLASHsupercite] = ACTIONS(12509), + [anon_sym_BSLASHautocite] = ACTIONS(12509), + [anon_sym_BSLASHAutocite] = ACTIONS(12509), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHvolcite] = ACTIONS(12509), + [anon_sym_BSLASHVolcite] = ACTIONS(12509), + [anon_sym_BSLASHpvolcite] = ACTIONS(12509), + [anon_sym_BSLASHPvolcite] = ACTIONS(12509), + [anon_sym_BSLASHfvolcite] = ACTIONS(12509), + [anon_sym_BSLASHftvolcite] = ACTIONS(12509), + [anon_sym_BSLASHsvolcite] = ACTIONS(12509), + [anon_sym_BSLASHSvolcite] = ACTIONS(12509), + [anon_sym_BSLASHtvolcite] = ACTIONS(12509), + [anon_sym_BSLASHTvolcite] = ACTIONS(12509), + [anon_sym_BSLASHavolcite] = ACTIONS(12509), + [anon_sym_BSLASHAvolcite] = ACTIONS(12509), + [anon_sym_BSLASHnotecite] = ACTIONS(12509), + [anon_sym_BSLASHpnotecite] = ACTIONS(12509), + [anon_sym_BSLASHPnotecite] = ACTIONS(12509), + [anon_sym_BSLASHfnotecite] = ACTIONS(12509), + [anon_sym_BSLASHusepackage] = ACTIONS(12509), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12509), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12509), + [anon_sym_BSLASHinclude] = ACTIONS(12509), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12509), + [anon_sym_BSLASHinput] = ACTIONS(12509), + [anon_sym_BSLASHsubfile] = ACTIONS(12509), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12509), + [anon_sym_BSLASHbibliography] = ACTIONS(12509), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12509), + [anon_sym_BSLASHincludesvg] = ACTIONS(12509), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12509), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12509), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12509), + [anon_sym_BSLASHimport] = ACTIONS(12509), + [anon_sym_BSLASHsubimport] = ACTIONS(12509), + [anon_sym_BSLASHinputfrom] = ACTIONS(12509), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12509), + [anon_sym_BSLASHincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHlabel] = ACTIONS(12509), + [anon_sym_BSLASHref] = ACTIONS(12509), + [anon_sym_BSLASHvref] = ACTIONS(12509), + [anon_sym_BSLASHVref] = ACTIONS(12509), + [anon_sym_BSLASHautoref] = ACTIONS(12509), + [anon_sym_BSLASHpageref] = ACTIONS(12509), + [anon_sym_BSLASHcref] = ACTIONS(12509), + [anon_sym_BSLASHCref] = ACTIONS(12509), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnameCref] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHlabelcref] = ACTIONS(12509), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12509), + [anon_sym_BSLASHeqref] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange] = ACTIONS(12509), + [anon_sym_BSLASHCrefrange] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewlabel] = ACTIONS(12509), + [anon_sym_BSLASHnewcommand] = ACTIONS(12509), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12509), + [anon_sym_BSLASHgls] = ACTIONS(12509), + [anon_sym_BSLASHGls] = ACTIONS(12509), + [anon_sym_BSLASHGLS] = ACTIONS(12509), + [anon_sym_BSLASHglspl] = ACTIONS(12509), + [anon_sym_BSLASHGlspl] = ACTIONS(12509), + [anon_sym_BSLASHGLSpl] = ACTIONS(12509), + [anon_sym_BSLASHglsdisp] = ACTIONS(12509), + [anon_sym_BSLASHglslink] = ACTIONS(12509), + [anon_sym_BSLASHglstext] = ACTIONS(12509), + [anon_sym_BSLASHGlstext] = ACTIONS(12509), + [anon_sym_BSLASHGLStext] = ACTIONS(12509), + [anon_sym_BSLASHglsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12509), + [anon_sym_BSLASHglsplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSplural] = ACTIONS(12509), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHglsname] = ACTIONS(12509), + [anon_sym_BSLASHGlsname] = ACTIONS(12509), + [anon_sym_BSLASHGLSname] = ACTIONS(12509), + [anon_sym_BSLASHglssymbol] = ACTIONS(12509), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12509), + [anon_sym_BSLASHglsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12509), + [anon_sym_BSLASHglsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12509), + [anon_sym_BSLASHglsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12509), + [anon_sym_BSLASHglsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12509), + [anon_sym_BSLASHglsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12509), + [anon_sym_BSLASHnewacronym] = ACTIONS(12509), + [anon_sym_BSLASHacrshort] = ACTIONS(12509), + [anon_sym_BSLASHAcrshort] = ACTIONS(12509), + [anon_sym_BSLASHACRshort] = ACTIONS(12509), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12509), + [anon_sym_BSLASHacrlong] = ACTIONS(12509), + [anon_sym_BSLASHAcrlong] = ACTIONS(12509), + [anon_sym_BSLASHACRlong] = ACTIONS(12509), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12509), + [anon_sym_BSLASHacrfull] = ACTIONS(12509), + [anon_sym_BSLASHAcrfull] = ACTIONS(12509), + [anon_sym_BSLASHACRfull] = ACTIONS(12509), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12509), + [anon_sym_BSLASHacs] = ACTIONS(12509), + [anon_sym_BSLASHAcs] = ACTIONS(12509), + [anon_sym_BSLASHacsp] = ACTIONS(12509), + [anon_sym_BSLASHAcsp] = ACTIONS(12509), + [anon_sym_BSLASHacl] = ACTIONS(12509), + [anon_sym_BSLASHAcl] = ACTIONS(12509), + [anon_sym_BSLASHaclp] = ACTIONS(12509), + [anon_sym_BSLASHAclp] = ACTIONS(12509), + [anon_sym_BSLASHacf] = ACTIONS(12509), + [anon_sym_BSLASHAcf] = ACTIONS(12509), + [anon_sym_BSLASHacfp] = ACTIONS(12509), + [anon_sym_BSLASHAcfp] = ACTIONS(12509), + [anon_sym_BSLASHac] = ACTIONS(12509), + [anon_sym_BSLASHAc] = ACTIONS(12509), + [anon_sym_BSLASHacp] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12509), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12509), + [anon_sym_BSLASHcolor] = ACTIONS(12509), + [anon_sym_BSLASHcolorbox] = ACTIONS(12509), + [anon_sym_BSLASHtextcolor] = ACTIONS(12509), + [anon_sym_BSLASHpagecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12509), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12509), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12509), + }, + [1064] = { + [sym_generic_command_name] = ACTIONS(12513), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12513), + [aux_sym_chapter_token1] = ACTIONS(12513), + [aux_sym_section_token1] = ACTIONS(12513), + [aux_sym_subsection_token1] = ACTIONS(12513), + [aux_sym_subsubsection_token1] = ACTIONS(12513), + [aux_sym_paragraph_token1] = ACTIONS(12513), + [aux_sym_subparagraph_token1] = ACTIONS(12513), + [anon_sym_BSLASHitem] = ACTIONS(12513), + [anon_sym_LBRACK] = ACTIONS(12511), + [anon_sym_LBRACE] = ACTIONS(12693), + [anon_sym_LPAREN] = ACTIONS(12511), + [anon_sym_COMMA] = ACTIONS(12511), + [anon_sym_EQ] = ACTIONS(12511), + [sym_word] = ACTIONS(12511), + [sym_param] = ACTIONS(12511), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12511), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12511), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12511), + [anon_sym_DOLLAR] = ACTIONS(12513), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12511), + [anon_sym_BSLASHbegin] = ACTIONS(12513), + [anon_sym_BSLASHcaption] = ACTIONS(12513), + [anon_sym_BSLASHcite] = ACTIONS(12513), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCite] = ACTIONS(12513), + [anon_sym_BSLASHnocite] = ACTIONS(12513), + [anon_sym_BSLASHcitet] = ACTIONS(12513), + [anon_sym_BSLASHcitep] = ACTIONS(12513), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteauthor] = ACTIONS(12513), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12513), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitetitle] = ACTIONS(12513), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteyear] = ACTIONS(12513), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitedate] = ACTIONS(12513), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteurl] = ACTIONS(12513), + [anon_sym_BSLASHfullcite] = ACTIONS(12513), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12513), + [anon_sym_BSLASHcitealt] = ACTIONS(12513), + [anon_sym_BSLASHcitealp] = ACTIONS(12513), + [anon_sym_BSLASHcitetext] = ACTIONS(12513), + [anon_sym_BSLASHparencite] = ACTIONS(12513), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHParencite] = ACTIONS(12513), + [anon_sym_BSLASHfootcite] = ACTIONS(12513), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12513), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12513), + [anon_sym_BSLASHtextcite] = ACTIONS(12513), + [anon_sym_BSLASHTextcite] = ACTIONS(12513), + [anon_sym_BSLASHsmartcite] = ACTIONS(12513), + [anon_sym_BSLASHSmartcite] = ACTIONS(12513), + [anon_sym_BSLASHsupercite] = ACTIONS(12513), + [anon_sym_BSLASHautocite] = ACTIONS(12513), + [anon_sym_BSLASHAutocite] = ACTIONS(12513), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHvolcite] = ACTIONS(12513), + [anon_sym_BSLASHVolcite] = ACTIONS(12513), + [anon_sym_BSLASHpvolcite] = ACTIONS(12513), + [anon_sym_BSLASHPvolcite] = ACTIONS(12513), + [anon_sym_BSLASHfvolcite] = ACTIONS(12513), + [anon_sym_BSLASHftvolcite] = ACTIONS(12513), + [anon_sym_BSLASHsvolcite] = ACTIONS(12513), + [anon_sym_BSLASHSvolcite] = ACTIONS(12513), + [anon_sym_BSLASHtvolcite] = ACTIONS(12513), + [anon_sym_BSLASHTvolcite] = ACTIONS(12513), + [anon_sym_BSLASHavolcite] = ACTIONS(12513), + [anon_sym_BSLASHAvolcite] = ACTIONS(12513), + [anon_sym_BSLASHnotecite] = ACTIONS(12513), + [anon_sym_BSLASHpnotecite] = ACTIONS(12513), + [anon_sym_BSLASHPnotecite] = ACTIONS(12513), + [anon_sym_BSLASHfnotecite] = ACTIONS(12513), + [anon_sym_BSLASHusepackage] = ACTIONS(12513), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12513), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12513), + [anon_sym_BSLASHinclude] = ACTIONS(12513), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12513), + [anon_sym_BSLASHinput] = ACTIONS(12513), + [anon_sym_BSLASHsubfile] = ACTIONS(12513), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12513), + [anon_sym_BSLASHbibliography] = ACTIONS(12513), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12513), + [anon_sym_BSLASHincludesvg] = ACTIONS(12513), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12513), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12513), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12513), + [anon_sym_BSLASHimport] = ACTIONS(12513), + [anon_sym_BSLASHsubimport] = ACTIONS(12513), + [anon_sym_BSLASHinputfrom] = ACTIONS(12513), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12513), + [anon_sym_BSLASHincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHlabel] = ACTIONS(12513), + [anon_sym_BSLASHref] = ACTIONS(12513), + [anon_sym_BSLASHvref] = ACTIONS(12513), + [anon_sym_BSLASHVref] = ACTIONS(12513), + [anon_sym_BSLASHautoref] = ACTIONS(12513), + [anon_sym_BSLASHpageref] = ACTIONS(12513), + [anon_sym_BSLASHcref] = ACTIONS(12513), + [anon_sym_BSLASHCref] = ACTIONS(12513), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnameCref] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHlabelcref] = ACTIONS(12513), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12513), + [anon_sym_BSLASHeqref] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange] = ACTIONS(12513), + [anon_sym_BSLASHCrefrange] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewlabel] = ACTIONS(12513), + [anon_sym_BSLASHnewcommand] = ACTIONS(12513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12513), + [anon_sym_BSLASHgls] = ACTIONS(12513), + [anon_sym_BSLASHGls] = ACTIONS(12513), + [anon_sym_BSLASHGLS] = ACTIONS(12513), + [anon_sym_BSLASHglspl] = ACTIONS(12513), + [anon_sym_BSLASHGlspl] = ACTIONS(12513), + [anon_sym_BSLASHGLSpl] = ACTIONS(12513), + [anon_sym_BSLASHglsdisp] = ACTIONS(12513), + [anon_sym_BSLASHglslink] = ACTIONS(12513), + [anon_sym_BSLASHglstext] = ACTIONS(12513), + [anon_sym_BSLASHGlstext] = ACTIONS(12513), + [anon_sym_BSLASHGLStext] = ACTIONS(12513), + [anon_sym_BSLASHglsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12513), + [anon_sym_BSLASHglsplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSplural] = ACTIONS(12513), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHglsname] = ACTIONS(12513), + [anon_sym_BSLASHGlsname] = ACTIONS(12513), + [anon_sym_BSLASHGLSname] = ACTIONS(12513), + [anon_sym_BSLASHglssymbol] = ACTIONS(12513), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12513), + [anon_sym_BSLASHglsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12513), + [anon_sym_BSLASHglsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12513), + [anon_sym_BSLASHglsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12513), + [anon_sym_BSLASHglsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12513), + [anon_sym_BSLASHglsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12513), + [anon_sym_BSLASHnewacronym] = ACTIONS(12513), + [anon_sym_BSLASHacrshort] = ACTIONS(12513), + [anon_sym_BSLASHAcrshort] = ACTIONS(12513), + [anon_sym_BSLASHACRshort] = ACTIONS(12513), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12513), + [anon_sym_BSLASHacrlong] = ACTIONS(12513), + [anon_sym_BSLASHAcrlong] = ACTIONS(12513), + [anon_sym_BSLASHACRlong] = ACTIONS(12513), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12513), + [anon_sym_BSLASHacrfull] = ACTIONS(12513), + [anon_sym_BSLASHAcrfull] = ACTIONS(12513), + [anon_sym_BSLASHACRfull] = ACTIONS(12513), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12513), + [anon_sym_BSLASHacs] = ACTIONS(12513), + [anon_sym_BSLASHAcs] = ACTIONS(12513), + [anon_sym_BSLASHacsp] = ACTIONS(12513), + [anon_sym_BSLASHAcsp] = ACTIONS(12513), + [anon_sym_BSLASHacl] = ACTIONS(12513), + [anon_sym_BSLASHAcl] = ACTIONS(12513), + [anon_sym_BSLASHaclp] = ACTIONS(12513), + [anon_sym_BSLASHAclp] = ACTIONS(12513), + [anon_sym_BSLASHacf] = ACTIONS(12513), + [anon_sym_BSLASHAcf] = ACTIONS(12513), + [anon_sym_BSLASHacfp] = ACTIONS(12513), + [anon_sym_BSLASHAcfp] = ACTIONS(12513), + [anon_sym_BSLASHac] = ACTIONS(12513), + [anon_sym_BSLASHAc] = ACTIONS(12513), + [anon_sym_BSLASHacp] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12513), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12513), + [anon_sym_BSLASHcolor] = ACTIONS(12513), + [anon_sym_BSLASHcolorbox] = ACTIONS(12513), + [anon_sym_BSLASHtextcolor] = ACTIONS(12513), + [anon_sym_BSLASHpagecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12513), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12513), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12513), + }, + [1065] = { + [sym_generic_command_name] = ACTIONS(12519), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12519), + [aux_sym_chapter_token1] = ACTIONS(12519), + [aux_sym_section_token1] = ACTIONS(12519), + [aux_sym_subsection_token1] = ACTIONS(12519), + [aux_sym_subsubsection_token1] = ACTIONS(12519), + [aux_sym_paragraph_token1] = ACTIONS(12519), + [aux_sym_subparagraph_token1] = ACTIONS(12519), + [anon_sym_BSLASHitem] = ACTIONS(12519), + [anon_sym_LBRACK] = ACTIONS(12517), + [anon_sym_LBRACE] = ACTIONS(12517), + [anon_sym_LPAREN] = ACTIONS(12517), + [anon_sym_COMMA] = ACTIONS(12517), + [anon_sym_EQ] = ACTIONS(12517), + [sym_word] = ACTIONS(12517), + [sym_param] = ACTIONS(12517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12517), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12517), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12517), + [anon_sym_DOLLAR] = ACTIONS(12519), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12517), + [anon_sym_BSLASHbegin] = ACTIONS(12519), + [anon_sym_BSLASHcaption] = ACTIONS(12519), + [anon_sym_BSLASHcite] = ACTIONS(12519), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCite] = ACTIONS(12519), + [anon_sym_BSLASHnocite] = ACTIONS(12519), + [anon_sym_BSLASHcitet] = ACTIONS(12519), + [anon_sym_BSLASHcitep] = ACTIONS(12519), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteauthor] = ACTIONS(12519), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12519), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitetitle] = ACTIONS(12519), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteyear] = ACTIONS(12519), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitedate] = ACTIONS(12519), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteurl] = ACTIONS(12519), + [anon_sym_BSLASHfullcite] = ACTIONS(12519), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12519), + [anon_sym_BSLASHcitealt] = ACTIONS(12519), + [anon_sym_BSLASHcitealp] = ACTIONS(12519), + [anon_sym_BSLASHcitetext] = ACTIONS(12519), + [anon_sym_BSLASHparencite] = ACTIONS(12519), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHParencite] = ACTIONS(12519), + [anon_sym_BSLASHfootcite] = ACTIONS(12519), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12519), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12519), + [anon_sym_BSLASHtextcite] = ACTIONS(12519), + [anon_sym_BSLASHTextcite] = ACTIONS(12519), + [anon_sym_BSLASHsmartcite] = ACTIONS(12519), + [anon_sym_BSLASHSmartcite] = ACTIONS(12519), + [anon_sym_BSLASHsupercite] = ACTIONS(12519), + [anon_sym_BSLASHautocite] = ACTIONS(12519), + [anon_sym_BSLASHAutocite] = ACTIONS(12519), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHvolcite] = ACTIONS(12519), + [anon_sym_BSLASHVolcite] = ACTIONS(12519), + [anon_sym_BSLASHpvolcite] = ACTIONS(12519), + [anon_sym_BSLASHPvolcite] = ACTIONS(12519), + [anon_sym_BSLASHfvolcite] = ACTIONS(12519), + [anon_sym_BSLASHftvolcite] = ACTIONS(12519), + [anon_sym_BSLASHsvolcite] = ACTIONS(12519), + [anon_sym_BSLASHSvolcite] = ACTIONS(12519), + [anon_sym_BSLASHtvolcite] = ACTIONS(12519), + [anon_sym_BSLASHTvolcite] = ACTIONS(12519), + [anon_sym_BSLASHavolcite] = ACTIONS(12519), + [anon_sym_BSLASHAvolcite] = ACTIONS(12519), + [anon_sym_BSLASHnotecite] = ACTIONS(12519), + [anon_sym_BSLASHpnotecite] = ACTIONS(12519), + [anon_sym_BSLASHPnotecite] = ACTIONS(12519), + [anon_sym_BSLASHfnotecite] = ACTIONS(12519), + [anon_sym_BSLASHusepackage] = ACTIONS(12519), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12519), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12519), + [anon_sym_BSLASHinclude] = ACTIONS(12519), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12519), + [anon_sym_BSLASHinput] = ACTIONS(12519), + [anon_sym_BSLASHsubfile] = ACTIONS(12519), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12519), + [anon_sym_BSLASHbibliography] = ACTIONS(12519), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12519), + [anon_sym_BSLASHincludesvg] = ACTIONS(12519), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12519), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12519), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12519), + [anon_sym_BSLASHimport] = ACTIONS(12519), + [anon_sym_BSLASHsubimport] = ACTIONS(12519), + [anon_sym_BSLASHinputfrom] = ACTIONS(12519), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12519), + [anon_sym_BSLASHincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHlabel] = ACTIONS(12519), + [anon_sym_BSLASHref] = ACTIONS(12519), + [anon_sym_BSLASHvref] = ACTIONS(12519), + [anon_sym_BSLASHVref] = ACTIONS(12519), + [anon_sym_BSLASHautoref] = ACTIONS(12519), + [anon_sym_BSLASHpageref] = ACTIONS(12519), + [anon_sym_BSLASHcref] = ACTIONS(12519), + [anon_sym_BSLASHCref] = ACTIONS(12519), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnameCref] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHlabelcref] = ACTIONS(12519), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12519), + [anon_sym_BSLASHeqref] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange] = ACTIONS(12519), + [anon_sym_BSLASHCrefrange] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewlabel] = ACTIONS(12519), + [anon_sym_BSLASHnewcommand] = ACTIONS(12519), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12519), + [anon_sym_BSLASHgls] = ACTIONS(12519), + [anon_sym_BSLASHGls] = ACTIONS(12519), + [anon_sym_BSLASHGLS] = ACTIONS(12519), + [anon_sym_BSLASHglspl] = ACTIONS(12519), + [anon_sym_BSLASHGlspl] = ACTIONS(12519), + [anon_sym_BSLASHGLSpl] = ACTIONS(12519), + [anon_sym_BSLASHglsdisp] = ACTIONS(12519), + [anon_sym_BSLASHglslink] = ACTIONS(12519), + [anon_sym_BSLASHglstext] = ACTIONS(12519), + [anon_sym_BSLASHGlstext] = ACTIONS(12519), + [anon_sym_BSLASHGLStext] = ACTIONS(12519), + [anon_sym_BSLASHglsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12519), + [anon_sym_BSLASHglsplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSplural] = ACTIONS(12519), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHglsname] = ACTIONS(12519), + [anon_sym_BSLASHGlsname] = ACTIONS(12519), + [anon_sym_BSLASHGLSname] = ACTIONS(12519), + [anon_sym_BSLASHglssymbol] = ACTIONS(12519), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12519), + [anon_sym_BSLASHglsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12519), + [anon_sym_BSLASHglsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12519), + [anon_sym_BSLASHglsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12519), + [anon_sym_BSLASHglsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12519), + [anon_sym_BSLASHglsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12519), + [anon_sym_BSLASHnewacronym] = ACTIONS(12519), + [anon_sym_BSLASHacrshort] = ACTIONS(12519), + [anon_sym_BSLASHAcrshort] = ACTIONS(12519), + [anon_sym_BSLASHACRshort] = ACTIONS(12519), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12519), + [anon_sym_BSLASHacrlong] = ACTIONS(12519), + [anon_sym_BSLASHAcrlong] = ACTIONS(12519), + [anon_sym_BSLASHACRlong] = ACTIONS(12519), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12519), + [anon_sym_BSLASHacrfull] = ACTIONS(12519), + [anon_sym_BSLASHAcrfull] = ACTIONS(12519), + [anon_sym_BSLASHACRfull] = ACTIONS(12519), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12519), + [anon_sym_BSLASHacs] = ACTIONS(12519), + [anon_sym_BSLASHAcs] = ACTIONS(12519), + [anon_sym_BSLASHacsp] = ACTIONS(12519), + [anon_sym_BSLASHAcsp] = ACTIONS(12519), + [anon_sym_BSLASHacl] = ACTIONS(12519), + [anon_sym_BSLASHAcl] = ACTIONS(12519), + [anon_sym_BSLASHaclp] = ACTIONS(12519), + [anon_sym_BSLASHAclp] = ACTIONS(12519), + [anon_sym_BSLASHacf] = ACTIONS(12519), + [anon_sym_BSLASHAcf] = ACTIONS(12519), + [anon_sym_BSLASHacfp] = ACTIONS(12519), + [anon_sym_BSLASHAcfp] = ACTIONS(12519), + [anon_sym_BSLASHac] = ACTIONS(12519), + [anon_sym_BSLASHAc] = ACTIONS(12519), + [anon_sym_BSLASHacp] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12519), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12519), + [anon_sym_BSLASHcolor] = ACTIONS(12519), + [anon_sym_BSLASHcolorbox] = ACTIONS(12519), + [anon_sym_BSLASHtextcolor] = ACTIONS(12519), + [anon_sym_BSLASHpagecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12519), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12519), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12519), + }, + [1066] = { + [sym_generic_command_name] = ACTIONS(12523), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12523), + [aux_sym_chapter_token1] = ACTIONS(12523), + [aux_sym_section_token1] = ACTIONS(12523), + [aux_sym_subsection_token1] = ACTIONS(12523), + [aux_sym_subsubsection_token1] = ACTIONS(12523), + [aux_sym_paragraph_token1] = ACTIONS(12523), + [aux_sym_subparagraph_token1] = ACTIONS(12523), + [anon_sym_BSLASHitem] = ACTIONS(12523), + [anon_sym_LBRACK] = ACTIONS(12521), + [anon_sym_LBRACE] = ACTIONS(12521), + [anon_sym_LPAREN] = ACTIONS(12521), + [anon_sym_COMMA] = ACTIONS(12521), + [anon_sym_EQ] = ACTIONS(12521), + [sym_word] = ACTIONS(12521), + [sym_param] = ACTIONS(12521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12521), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12521), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12521), + [anon_sym_DOLLAR] = ACTIONS(12523), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12521), + [anon_sym_BSLASHbegin] = ACTIONS(12523), + [anon_sym_BSLASHcaption] = ACTIONS(12523), + [anon_sym_BSLASHcite] = ACTIONS(12523), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCite] = ACTIONS(12523), + [anon_sym_BSLASHnocite] = ACTIONS(12523), + [anon_sym_BSLASHcitet] = ACTIONS(12523), + [anon_sym_BSLASHcitep] = ACTIONS(12523), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteauthor] = ACTIONS(12523), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12523), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitetitle] = ACTIONS(12523), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteyear] = ACTIONS(12523), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitedate] = ACTIONS(12523), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteurl] = ACTIONS(12523), + [anon_sym_BSLASHfullcite] = ACTIONS(12523), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12523), + [anon_sym_BSLASHcitealt] = ACTIONS(12523), + [anon_sym_BSLASHcitealp] = ACTIONS(12523), + [anon_sym_BSLASHcitetext] = ACTIONS(12523), + [anon_sym_BSLASHparencite] = ACTIONS(12523), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHParencite] = ACTIONS(12523), + [anon_sym_BSLASHfootcite] = ACTIONS(12523), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12523), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12523), + [anon_sym_BSLASHtextcite] = ACTIONS(12523), + [anon_sym_BSLASHTextcite] = ACTIONS(12523), + [anon_sym_BSLASHsmartcite] = ACTIONS(12523), + [anon_sym_BSLASHSmartcite] = ACTIONS(12523), + [anon_sym_BSLASHsupercite] = ACTIONS(12523), + [anon_sym_BSLASHautocite] = ACTIONS(12523), + [anon_sym_BSLASHAutocite] = ACTIONS(12523), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHvolcite] = ACTIONS(12523), + [anon_sym_BSLASHVolcite] = ACTIONS(12523), + [anon_sym_BSLASHpvolcite] = ACTIONS(12523), + [anon_sym_BSLASHPvolcite] = ACTIONS(12523), + [anon_sym_BSLASHfvolcite] = ACTIONS(12523), + [anon_sym_BSLASHftvolcite] = ACTIONS(12523), + [anon_sym_BSLASHsvolcite] = ACTIONS(12523), + [anon_sym_BSLASHSvolcite] = ACTIONS(12523), + [anon_sym_BSLASHtvolcite] = ACTIONS(12523), + [anon_sym_BSLASHTvolcite] = ACTIONS(12523), + [anon_sym_BSLASHavolcite] = ACTIONS(12523), + [anon_sym_BSLASHAvolcite] = ACTIONS(12523), + [anon_sym_BSLASHnotecite] = ACTIONS(12523), + [anon_sym_BSLASHpnotecite] = ACTIONS(12523), + [anon_sym_BSLASHPnotecite] = ACTIONS(12523), + [anon_sym_BSLASHfnotecite] = ACTIONS(12523), + [anon_sym_BSLASHusepackage] = ACTIONS(12523), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12523), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12523), + [anon_sym_BSLASHinclude] = ACTIONS(12523), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12523), + [anon_sym_BSLASHinput] = ACTIONS(12523), + [anon_sym_BSLASHsubfile] = ACTIONS(12523), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12523), + [anon_sym_BSLASHbibliography] = ACTIONS(12523), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12523), + [anon_sym_BSLASHincludesvg] = ACTIONS(12523), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12523), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12523), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12523), + [anon_sym_BSLASHimport] = ACTIONS(12523), + [anon_sym_BSLASHsubimport] = ACTIONS(12523), + [anon_sym_BSLASHinputfrom] = ACTIONS(12523), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12523), + [anon_sym_BSLASHincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHlabel] = ACTIONS(12523), + [anon_sym_BSLASHref] = ACTIONS(12523), + [anon_sym_BSLASHvref] = ACTIONS(12523), + [anon_sym_BSLASHVref] = ACTIONS(12523), + [anon_sym_BSLASHautoref] = ACTIONS(12523), + [anon_sym_BSLASHpageref] = ACTIONS(12523), + [anon_sym_BSLASHcref] = ACTIONS(12523), + [anon_sym_BSLASHCref] = ACTIONS(12523), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnameCref] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHlabelcref] = ACTIONS(12523), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12523), + [anon_sym_BSLASHeqref] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange] = ACTIONS(12523), + [anon_sym_BSLASHCrefrange] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewlabel] = ACTIONS(12523), + [anon_sym_BSLASHnewcommand] = ACTIONS(12523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12523), + [anon_sym_BSLASHgls] = ACTIONS(12523), + [anon_sym_BSLASHGls] = ACTIONS(12523), + [anon_sym_BSLASHGLS] = ACTIONS(12523), + [anon_sym_BSLASHglspl] = ACTIONS(12523), + [anon_sym_BSLASHGlspl] = ACTIONS(12523), + [anon_sym_BSLASHGLSpl] = ACTIONS(12523), + [anon_sym_BSLASHglsdisp] = ACTIONS(12523), + [anon_sym_BSLASHglslink] = ACTIONS(12523), + [anon_sym_BSLASHglstext] = ACTIONS(12523), + [anon_sym_BSLASHGlstext] = ACTIONS(12523), + [anon_sym_BSLASHGLStext] = ACTIONS(12523), + [anon_sym_BSLASHglsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12523), + [anon_sym_BSLASHglsplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSplural] = ACTIONS(12523), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHglsname] = ACTIONS(12523), + [anon_sym_BSLASHGlsname] = ACTIONS(12523), + [anon_sym_BSLASHGLSname] = ACTIONS(12523), + [anon_sym_BSLASHglssymbol] = ACTIONS(12523), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12523), + [anon_sym_BSLASHglsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12523), + [anon_sym_BSLASHglsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12523), + [anon_sym_BSLASHglsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12523), + [anon_sym_BSLASHglsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12523), + [anon_sym_BSLASHglsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12523), + [anon_sym_BSLASHnewacronym] = ACTIONS(12523), + [anon_sym_BSLASHacrshort] = ACTIONS(12523), + [anon_sym_BSLASHAcrshort] = ACTIONS(12523), + [anon_sym_BSLASHACRshort] = ACTIONS(12523), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12523), + [anon_sym_BSLASHacrlong] = ACTIONS(12523), + [anon_sym_BSLASHAcrlong] = ACTIONS(12523), + [anon_sym_BSLASHACRlong] = ACTIONS(12523), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12523), + [anon_sym_BSLASHacrfull] = ACTIONS(12523), + [anon_sym_BSLASHAcrfull] = ACTIONS(12523), + [anon_sym_BSLASHACRfull] = ACTIONS(12523), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12523), + [anon_sym_BSLASHacs] = ACTIONS(12523), + [anon_sym_BSLASHAcs] = ACTIONS(12523), + [anon_sym_BSLASHacsp] = ACTIONS(12523), + [anon_sym_BSLASHAcsp] = ACTIONS(12523), + [anon_sym_BSLASHacl] = ACTIONS(12523), + [anon_sym_BSLASHAcl] = ACTIONS(12523), + [anon_sym_BSLASHaclp] = ACTIONS(12523), + [anon_sym_BSLASHAclp] = ACTIONS(12523), + [anon_sym_BSLASHacf] = ACTIONS(12523), + [anon_sym_BSLASHAcf] = ACTIONS(12523), + [anon_sym_BSLASHacfp] = ACTIONS(12523), + [anon_sym_BSLASHAcfp] = ACTIONS(12523), + [anon_sym_BSLASHac] = ACTIONS(12523), + [anon_sym_BSLASHAc] = ACTIONS(12523), + [anon_sym_BSLASHacp] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12523), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12523), + [anon_sym_BSLASHcolor] = ACTIONS(12523), + [anon_sym_BSLASHcolorbox] = ACTIONS(12523), + [anon_sym_BSLASHtextcolor] = ACTIONS(12523), + [anon_sym_BSLASHpagecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12523), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12523), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12523), + }, + [1067] = { + [sym_generic_command_name] = ACTIONS(12128), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12128), + [aux_sym_section_token1] = ACTIONS(12128), + [aux_sym_subsection_token1] = ACTIONS(12128), + [aux_sym_subsubsection_token1] = ACTIONS(12128), + [aux_sym_paragraph_token1] = ACTIONS(12128), + [aux_sym_subparagraph_token1] = ACTIONS(12128), + [anon_sym_BSLASHitem] = ACTIONS(12128), + [anon_sym_LBRACK] = ACTIONS(12126), + [anon_sym_RBRACK] = ACTIONS(12126), + [anon_sym_LBRACE] = ACTIONS(12126), + [anon_sym_RBRACE] = ACTIONS(12126), + [anon_sym_LPAREN] = ACTIONS(12126), + [anon_sym_COMMA] = ACTIONS(12126), + [anon_sym_EQ] = ACTIONS(12126), + [sym_word] = ACTIONS(12126), + [sym_param] = ACTIONS(12126), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12126), + [anon_sym_DOLLAR] = ACTIONS(12128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12126), + [anon_sym_BSLASHbegin] = ACTIONS(12128), + [anon_sym_BSLASHcaption] = ACTIONS(12128), + [anon_sym_BSLASHcite] = ACTIONS(12128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCite] = ACTIONS(12128), + [anon_sym_BSLASHnocite] = ACTIONS(12128), + [anon_sym_BSLASHcitet] = ACTIONS(12128), + [anon_sym_BSLASHcitep] = ACTIONS(12128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteauthor] = ACTIONS(12128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitetitle] = ACTIONS(12128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteyear] = ACTIONS(12128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitedate] = ACTIONS(12128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteurl] = ACTIONS(12128), + [anon_sym_BSLASHfullcite] = ACTIONS(12128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12128), + [anon_sym_BSLASHcitealt] = ACTIONS(12128), + [anon_sym_BSLASHcitealp] = ACTIONS(12128), + [anon_sym_BSLASHcitetext] = ACTIONS(12128), + [anon_sym_BSLASHparencite] = ACTIONS(12128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHParencite] = ACTIONS(12128), + [anon_sym_BSLASHfootcite] = ACTIONS(12128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12128), + [anon_sym_BSLASHtextcite] = ACTIONS(12128), + [anon_sym_BSLASHTextcite] = ACTIONS(12128), + [anon_sym_BSLASHsmartcite] = ACTIONS(12128), + [anon_sym_BSLASHSmartcite] = ACTIONS(12128), + [anon_sym_BSLASHsupercite] = ACTIONS(12128), + [anon_sym_BSLASHautocite] = ACTIONS(12128), + [anon_sym_BSLASHAutocite] = ACTIONS(12128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHvolcite] = ACTIONS(12128), + [anon_sym_BSLASHVolcite] = ACTIONS(12128), + [anon_sym_BSLASHpvolcite] = ACTIONS(12128), + [anon_sym_BSLASHPvolcite] = ACTIONS(12128), + [anon_sym_BSLASHfvolcite] = ACTIONS(12128), + [anon_sym_BSLASHftvolcite] = ACTIONS(12128), + [anon_sym_BSLASHsvolcite] = ACTIONS(12128), + [anon_sym_BSLASHSvolcite] = ACTIONS(12128), + [anon_sym_BSLASHtvolcite] = ACTIONS(12128), + [anon_sym_BSLASHTvolcite] = ACTIONS(12128), + [anon_sym_BSLASHavolcite] = ACTIONS(12128), + [anon_sym_BSLASHAvolcite] = ACTIONS(12128), + [anon_sym_BSLASHnotecite] = ACTIONS(12128), + [anon_sym_BSLASHpnotecite] = ACTIONS(12128), + [anon_sym_BSLASHPnotecite] = ACTIONS(12128), + [anon_sym_BSLASHfnotecite] = ACTIONS(12128), + [anon_sym_BSLASHusepackage] = ACTIONS(12128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12128), + [anon_sym_BSLASHinclude] = ACTIONS(12128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12128), + [anon_sym_BSLASHinput] = ACTIONS(12128), + [anon_sym_BSLASHsubfile] = ACTIONS(12128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12128), + [anon_sym_BSLASHbibliography] = ACTIONS(12128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12128), + [anon_sym_BSLASHincludesvg] = ACTIONS(12128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12128), + [anon_sym_BSLASHimport] = ACTIONS(12128), + [anon_sym_BSLASHsubimport] = ACTIONS(12128), + [anon_sym_BSLASHinputfrom] = ACTIONS(12128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12128), + [anon_sym_BSLASHincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHlabel] = ACTIONS(12128), + [anon_sym_BSLASHref] = ACTIONS(12128), + [anon_sym_BSLASHvref] = ACTIONS(12128), + [anon_sym_BSLASHVref] = ACTIONS(12128), + [anon_sym_BSLASHautoref] = ACTIONS(12128), + [anon_sym_BSLASHpageref] = ACTIONS(12128), + [anon_sym_BSLASHcref] = ACTIONS(12128), + [anon_sym_BSLASHCref] = ACTIONS(12128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnameCref] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHlabelcref] = ACTIONS(12128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12128), + [anon_sym_BSLASHeqref] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange] = ACTIONS(12128), + [anon_sym_BSLASHCrefrange] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewlabel] = ACTIONS(12128), + [anon_sym_BSLASHnewcommand] = ACTIONS(12128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12128), + [anon_sym_BSLASHgls] = ACTIONS(12128), + [anon_sym_BSLASHGls] = ACTIONS(12128), + [anon_sym_BSLASHGLS] = ACTIONS(12128), + [anon_sym_BSLASHglspl] = ACTIONS(12128), + [anon_sym_BSLASHGlspl] = ACTIONS(12128), + [anon_sym_BSLASHGLSpl] = ACTIONS(12128), + [anon_sym_BSLASHglsdisp] = ACTIONS(12128), + [anon_sym_BSLASHglslink] = ACTIONS(12128), + [anon_sym_BSLASHglstext] = ACTIONS(12128), + [anon_sym_BSLASHGlstext] = ACTIONS(12128), + [anon_sym_BSLASHGLStext] = ACTIONS(12128), + [anon_sym_BSLASHglsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12128), + [anon_sym_BSLASHglsplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSplural] = ACTIONS(12128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHglsname] = ACTIONS(12128), + [anon_sym_BSLASHGlsname] = ACTIONS(12128), + [anon_sym_BSLASHGLSname] = ACTIONS(12128), + [anon_sym_BSLASHglssymbol] = ACTIONS(12128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12128), + [anon_sym_BSLASHglsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12128), + [anon_sym_BSLASHglsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12128), + [anon_sym_BSLASHglsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12128), + [anon_sym_BSLASHglsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12128), + [anon_sym_BSLASHglsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12128), + [anon_sym_BSLASHnewacronym] = ACTIONS(12128), + [anon_sym_BSLASHacrshort] = ACTIONS(12128), + [anon_sym_BSLASHAcrshort] = ACTIONS(12128), + [anon_sym_BSLASHACRshort] = ACTIONS(12128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12128), + [anon_sym_BSLASHacrlong] = ACTIONS(12128), + [anon_sym_BSLASHAcrlong] = ACTIONS(12128), + [anon_sym_BSLASHACRlong] = ACTIONS(12128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12128), + [anon_sym_BSLASHacrfull] = ACTIONS(12128), + [anon_sym_BSLASHAcrfull] = ACTIONS(12128), + [anon_sym_BSLASHACRfull] = ACTIONS(12128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12128), + [anon_sym_BSLASHacs] = ACTIONS(12128), + [anon_sym_BSLASHAcs] = ACTIONS(12128), + [anon_sym_BSLASHacsp] = ACTIONS(12128), + [anon_sym_BSLASHAcsp] = ACTIONS(12128), + [anon_sym_BSLASHacl] = ACTIONS(12128), + [anon_sym_BSLASHAcl] = ACTIONS(12128), + [anon_sym_BSLASHaclp] = ACTIONS(12128), + [anon_sym_BSLASHAclp] = ACTIONS(12128), + [anon_sym_BSLASHacf] = ACTIONS(12128), + [anon_sym_BSLASHAcf] = ACTIONS(12128), + [anon_sym_BSLASHacfp] = ACTIONS(12128), + [anon_sym_BSLASHAcfp] = ACTIONS(12128), + [anon_sym_BSLASHac] = ACTIONS(12128), + [anon_sym_BSLASHAc] = ACTIONS(12128), + [anon_sym_BSLASHacp] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12128), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12128), + [anon_sym_BSLASHcolor] = ACTIONS(12128), + [anon_sym_BSLASHcolorbox] = ACTIONS(12128), + [anon_sym_BSLASHtextcolor] = ACTIONS(12128), + [anon_sym_BSLASHpagecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12128), + }, + [1068] = { + [sym_generic_command_name] = ACTIONS(12449), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12449), + [aux_sym_section_token1] = ACTIONS(12449), + [aux_sym_subsection_token1] = ACTIONS(12449), + [aux_sym_subsubsection_token1] = ACTIONS(12449), + [aux_sym_paragraph_token1] = ACTIONS(12449), + [aux_sym_subparagraph_token1] = ACTIONS(12449), + [anon_sym_BSLASHitem] = ACTIONS(12449), + [anon_sym_LBRACK] = ACTIONS(12447), + [anon_sym_RBRACK] = ACTIONS(12447), + [anon_sym_LBRACE] = ACTIONS(12447), + [anon_sym_RBRACE] = ACTIONS(12447), + [anon_sym_LPAREN] = ACTIONS(12447), + [anon_sym_COMMA] = ACTIONS(12447), + [anon_sym_EQ] = ACTIONS(12447), + [sym_word] = ACTIONS(12447), + [sym_param] = ACTIONS(12447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12447), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12447), + [anon_sym_DOLLAR] = ACTIONS(12449), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12447), + [anon_sym_BSLASHbegin] = ACTIONS(12449), + [anon_sym_BSLASHcaption] = ACTIONS(12449), + [anon_sym_BSLASHcite] = ACTIONS(12449), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCite] = ACTIONS(12449), + [anon_sym_BSLASHnocite] = ACTIONS(12449), + [anon_sym_BSLASHcitet] = ACTIONS(12449), + [anon_sym_BSLASHcitep] = ACTIONS(12449), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteauthor] = ACTIONS(12449), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12449), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitetitle] = ACTIONS(12449), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteyear] = ACTIONS(12449), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitedate] = ACTIONS(12449), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteurl] = ACTIONS(12449), + [anon_sym_BSLASHfullcite] = ACTIONS(12449), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12449), + [anon_sym_BSLASHcitealt] = ACTIONS(12449), + [anon_sym_BSLASHcitealp] = ACTIONS(12449), + [anon_sym_BSLASHcitetext] = ACTIONS(12449), + [anon_sym_BSLASHparencite] = ACTIONS(12449), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHParencite] = ACTIONS(12449), + [anon_sym_BSLASHfootcite] = ACTIONS(12449), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12449), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12449), + [anon_sym_BSLASHtextcite] = ACTIONS(12449), + [anon_sym_BSLASHTextcite] = ACTIONS(12449), + [anon_sym_BSLASHsmartcite] = ACTIONS(12449), + [anon_sym_BSLASHSmartcite] = ACTIONS(12449), + [anon_sym_BSLASHsupercite] = ACTIONS(12449), + [anon_sym_BSLASHautocite] = ACTIONS(12449), + [anon_sym_BSLASHAutocite] = ACTIONS(12449), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHvolcite] = ACTIONS(12449), + [anon_sym_BSLASHVolcite] = ACTIONS(12449), + [anon_sym_BSLASHpvolcite] = ACTIONS(12449), + [anon_sym_BSLASHPvolcite] = ACTIONS(12449), + [anon_sym_BSLASHfvolcite] = ACTIONS(12449), + [anon_sym_BSLASHftvolcite] = ACTIONS(12449), + [anon_sym_BSLASHsvolcite] = ACTIONS(12449), + [anon_sym_BSLASHSvolcite] = ACTIONS(12449), + [anon_sym_BSLASHtvolcite] = ACTIONS(12449), + [anon_sym_BSLASHTvolcite] = ACTIONS(12449), + [anon_sym_BSLASHavolcite] = ACTIONS(12449), + [anon_sym_BSLASHAvolcite] = ACTIONS(12449), + [anon_sym_BSLASHnotecite] = ACTIONS(12449), + [anon_sym_BSLASHpnotecite] = ACTIONS(12449), + [anon_sym_BSLASHPnotecite] = ACTIONS(12449), + [anon_sym_BSLASHfnotecite] = ACTIONS(12449), + [anon_sym_BSLASHusepackage] = ACTIONS(12449), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12449), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12449), + [anon_sym_BSLASHinclude] = ACTIONS(12449), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12449), + [anon_sym_BSLASHinput] = ACTIONS(12449), + [anon_sym_BSLASHsubfile] = ACTIONS(12449), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12449), + [anon_sym_BSLASHbibliography] = ACTIONS(12449), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12449), + [anon_sym_BSLASHincludesvg] = ACTIONS(12449), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12449), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12449), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12449), + [anon_sym_BSLASHimport] = ACTIONS(12449), + [anon_sym_BSLASHsubimport] = ACTIONS(12449), + [anon_sym_BSLASHinputfrom] = ACTIONS(12449), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12449), + [anon_sym_BSLASHincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHlabel] = ACTIONS(12449), + [anon_sym_BSLASHref] = ACTIONS(12449), + [anon_sym_BSLASHvref] = ACTIONS(12449), + [anon_sym_BSLASHVref] = ACTIONS(12449), + [anon_sym_BSLASHautoref] = ACTIONS(12449), + [anon_sym_BSLASHpageref] = ACTIONS(12449), + [anon_sym_BSLASHcref] = ACTIONS(12449), + [anon_sym_BSLASHCref] = ACTIONS(12449), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnameCref] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHlabelcref] = ACTIONS(12449), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12449), + [anon_sym_BSLASHeqref] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange] = ACTIONS(12449), + [anon_sym_BSLASHCrefrange] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewlabel] = ACTIONS(12449), + [anon_sym_BSLASHnewcommand] = ACTIONS(12449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12449), + [anon_sym_BSLASHgls] = ACTIONS(12449), + [anon_sym_BSLASHGls] = ACTIONS(12449), + [anon_sym_BSLASHGLS] = ACTIONS(12449), + [anon_sym_BSLASHglspl] = ACTIONS(12449), + [anon_sym_BSLASHGlspl] = ACTIONS(12449), + [anon_sym_BSLASHGLSpl] = ACTIONS(12449), + [anon_sym_BSLASHglsdisp] = ACTIONS(12449), + [anon_sym_BSLASHglslink] = ACTIONS(12449), + [anon_sym_BSLASHglstext] = ACTIONS(12449), + [anon_sym_BSLASHGlstext] = ACTIONS(12449), + [anon_sym_BSLASHGLStext] = ACTIONS(12449), + [anon_sym_BSLASHglsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12449), + [anon_sym_BSLASHglsplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSplural] = ACTIONS(12449), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHglsname] = ACTIONS(12449), + [anon_sym_BSLASHGlsname] = ACTIONS(12449), + [anon_sym_BSLASHGLSname] = ACTIONS(12449), + [anon_sym_BSLASHglssymbol] = ACTIONS(12449), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12449), + [anon_sym_BSLASHglsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12449), + [anon_sym_BSLASHglsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12449), + [anon_sym_BSLASHglsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12449), + [anon_sym_BSLASHglsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12449), + [anon_sym_BSLASHglsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12449), + [anon_sym_BSLASHnewacronym] = ACTIONS(12449), + [anon_sym_BSLASHacrshort] = ACTIONS(12449), + [anon_sym_BSLASHAcrshort] = ACTIONS(12449), + [anon_sym_BSLASHACRshort] = ACTIONS(12449), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12449), + [anon_sym_BSLASHacrlong] = ACTIONS(12449), + [anon_sym_BSLASHAcrlong] = ACTIONS(12449), + [anon_sym_BSLASHACRlong] = ACTIONS(12449), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12449), + [anon_sym_BSLASHacrfull] = ACTIONS(12449), + [anon_sym_BSLASHAcrfull] = ACTIONS(12449), + [anon_sym_BSLASHACRfull] = ACTIONS(12449), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12449), + [anon_sym_BSLASHacs] = ACTIONS(12449), + [anon_sym_BSLASHAcs] = ACTIONS(12449), + [anon_sym_BSLASHacsp] = ACTIONS(12449), + [anon_sym_BSLASHAcsp] = ACTIONS(12449), + [anon_sym_BSLASHacl] = ACTIONS(12449), + [anon_sym_BSLASHAcl] = ACTIONS(12449), + [anon_sym_BSLASHaclp] = ACTIONS(12449), + [anon_sym_BSLASHAclp] = ACTIONS(12449), + [anon_sym_BSLASHacf] = ACTIONS(12449), + [anon_sym_BSLASHAcf] = ACTIONS(12449), + [anon_sym_BSLASHacfp] = ACTIONS(12449), + [anon_sym_BSLASHAcfp] = ACTIONS(12449), + [anon_sym_BSLASHac] = ACTIONS(12449), + [anon_sym_BSLASHAc] = ACTIONS(12449), + [anon_sym_BSLASHacp] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12449), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12449), + [anon_sym_BSLASHcolor] = ACTIONS(12449), + [anon_sym_BSLASHcolorbox] = ACTIONS(12449), + [anon_sym_BSLASHtextcolor] = ACTIONS(12449), + [anon_sym_BSLASHpagecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12449), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12449), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12449), + }, + [1069] = { + [sym_generic_command_name] = ACTIONS(12527), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12527), + [aux_sym_chapter_token1] = ACTIONS(12527), + [aux_sym_section_token1] = ACTIONS(12527), + [aux_sym_subsection_token1] = ACTIONS(12527), + [aux_sym_subsubsection_token1] = ACTIONS(12527), + [aux_sym_paragraph_token1] = ACTIONS(12527), + [aux_sym_subparagraph_token1] = ACTIONS(12527), + [anon_sym_BSLASHitem] = ACTIONS(12527), + [anon_sym_LBRACK] = ACTIONS(12525), + [anon_sym_LBRACE] = ACTIONS(12525), + [anon_sym_LPAREN] = ACTIONS(12525), + [anon_sym_COMMA] = ACTIONS(12525), + [anon_sym_EQ] = ACTIONS(12525), + [sym_word] = ACTIONS(12525), + [sym_param] = ACTIONS(12525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12525), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12525), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12525), + [anon_sym_DOLLAR] = ACTIONS(12527), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12525), + [anon_sym_BSLASHbegin] = ACTIONS(12527), + [anon_sym_BSLASHcaption] = ACTIONS(12527), + [anon_sym_BSLASHcite] = ACTIONS(12527), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCite] = ACTIONS(12527), + [anon_sym_BSLASHnocite] = ACTIONS(12527), + [anon_sym_BSLASHcitet] = ACTIONS(12527), + [anon_sym_BSLASHcitep] = ACTIONS(12527), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteauthor] = ACTIONS(12527), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12527), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitetitle] = ACTIONS(12527), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteyear] = ACTIONS(12527), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitedate] = ACTIONS(12527), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteurl] = ACTIONS(12527), + [anon_sym_BSLASHfullcite] = ACTIONS(12527), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12527), + [anon_sym_BSLASHcitealt] = ACTIONS(12527), + [anon_sym_BSLASHcitealp] = ACTIONS(12527), + [anon_sym_BSLASHcitetext] = ACTIONS(12527), + [anon_sym_BSLASHparencite] = ACTIONS(12527), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHParencite] = ACTIONS(12527), + [anon_sym_BSLASHfootcite] = ACTIONS(12527), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12527), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12527), + [anon_sym_BSLASHtextcite] = ACTIONS(12527), + [anon_sym_BSLASHTextcite] = ACTIONS(12527), + [anon_sym_BSLASHsmartcite] = ACTIONS(12527), + [anon_sym_BSLASHSmartcite] = ACTIONS(12527), + [anon_sym_BSLASHsupercite] = ACTIONS(12527), + [anon_sym_BSLASHautocite] = ACTIONS(12527), + [anon_sym_BSLASHAutocite] = ACTIONS(12527), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHvolcite] = ACTIONS(12527), + [anon_sym_BSLASHVolcite] = ACTIONS(12527), + [anon_sym_BSLASHpvolcite] = ACTIONS(12527), + [anon_sym_BSLASHPvolcite] = ACTIONS(12527), + [anon_sym_BSLASHfvolcite] = ACTIONS(12527), + [anon_sym_BSLASHftvolcite] = ACTIONS(12527), + [anon_sym_BSLASHsvolcite] = ACTIONS(12527), + [anon_sym_BSLASHSvolcite] = ACTIONS(12527), + [anon_sym_BSLASHtvolcite] = ACTIONS(12527), + [anon_sym_BSLASHTvolcite] = ACTIONS(12527), + [anon_sym_BSLASHavolcite] = ACTIONS(12527), + [anon_sym_BSLASHAvolcite] = ACTIONS(12527), + [anon_sym_BSLASHnotecite] = ACTIONS(12527), + [anon_sym_BSLASHpnotecite] = ACTIONS(12527), + [anon_sym_BSLASHPnotecite] = ACTIONS(12527), + [anon_sym_BSLASHfnotecite] = ACTIONS(12527), + [anon_sym_BSLASHusepackage] = ACTIONS(12527), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12527), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12527), + [anon_sym_BSLASHinclude] = ACTIONS(12527), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12527), + [anon_sym_BSLASHinput] = ACTIONS(12527), + [anon_sym_BSLASHsubfile] = ACTIONS(12527), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12527), + [anon_sym_BSLASHbibliography] = ACTIONS(12527), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12527), + [anon_sym_BSLASHincludesvg] = ACTIONS(12527), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12527), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12527), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12527), + [anon_sym_BSLASHimport] = ACTIONS(12527), + [anon_sym_BSLASHsubimport] = ACTIONS(12527), + [anon_sym_BSLASHinputfrom] = ACTIONS(12527), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12527), + [anon_sym_BSLASHincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHlabel] = ACTIONS(12527), + [anon_sym_BSLASHref] = ACTIONS(12527), + [anon_sym_BSLASHvref] = ACTIONS(12527), + [anon_sym_BSLASHVref] = ACTIONS(12527), + [anon_sym_BSLASHautoref] = ACTIONS(12527), + [anon_sym_BSLASHpageref] = ACTIONS(12527), + [anon_sym_BSLASHcref] = ACTIONS(12527), + [anon_sym_BSLASHCref] = ACTIONS(12527), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnameCref] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHlabelcref] = ACTIONS(12527), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12527), + [anon_sym_BSLASHeqref] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange] = ACTIONS(12527), + [anon_sym_BSLASHCrefrange] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewlabel] = ACTIONS(12527), + [anon_sym_BSLASHnewcommand] = ACTIONS(12527), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12527), + [anon_sym_BSLASHgls] = ACTIONS(12527), + [anon_sym_BSLASHGls] = ACTIONS(12527), + [anon_sym_BSLASHGLS] = ACTIONS(12527), + [anon_sym_BSLASHglspl] = ACTIONS(12527), + [anon_sym_BSLASHGlspl] = ACTIONS(12527), + [anon_sym_BSLASHGLSpl] = ACTIONS(12527), + [anon_sym_BSLASHglsdisp] = ACTIONS(12527), + [anon_sym_BSLASHglslink] = ACTIONS(12527), + [anon_sym_BSLASHglstext] = ACTIONS(12527), + [anon_sym_BSLASHGlstext] = ACTIONS(12527), + [anon_sym_BSLASHGLStext] = ACTIONS(12527), + [anon_sym_BSLASHglsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12527), + [anon_sym_BSLASHglsplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSplural] = ACTIONS(12527), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHglsname] = ACTIONS(12527), + [anon_sym_BSLASHGlsname] = ACTIONS(12527), + [anon_sym_BSLASHGLSname] = ACTIONS(12527), + [anon_sym_BSLASHglssymbol] = ACTIONS(12527), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12527), + [anon_sym_BSLASHglsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12527), + [anon_sym_BSLASHglsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12527), + [anon_sym_BSLASHglsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12527), + [anon_sym_BSLASHglsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12527), + [anon_sym_BSLASHglsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12527), + [anon_sym_BSLASHnewacronym] = ACTIONS(12527), + [anon_sym_BSLASHacrshort] = ACTIONS(12527), + [anon_sym_BSLASHAcrshort] = ACTIONS(12527), + [anon_sym_BSLASHACRshort] = ACTIONS(12527), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12527), + [anon_sym_BSLASHacrlong] = ACTIONS(12527), + [anon_sym_BSLASHAcrlong] = ACTIONS(12527), + [anon_sym_BSLASHACRlong] = ACTIONS(12527), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12527), + [anon_sym_BSLASHacrfull] = ACTIONS(12527), + [anon_sym_BSLASHAcrfull] = ACTIONS(12527), + [anon_sym_BSLASHACRfull] = ACTIONS(12527), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12527), + [anon_sym_BSLASHacs] = ACTIONS(12527), + [anon_sym_BSLASHAcs] = ACTIONS(12527), + [anon_sym_BSLASHacsp] = ACTIONS(12527), + [anon_sym_BSLASHAcsp] = ACTIONS(12527), + [anon_sym_BSLASHacl] = ACTIONS(12527), + [anon_sym_BSLASHAcl] = ACTIONS(12527), + [anon_sym_BSLASHaclp] = ACTIONS(12527), + [anon_sym_BSLASHAclp] = ACTIONS(12527), + [anon_sym_BSLASHacf] = ACTIONS(12527), + [anon_sym_BSLASHAcf] = ACTIONS(12527), + [anon_sym_BSLASHacfp] = ACTIONS(12527), + [anon_sym_BSLASHAcfp] = ACTIONS(12527), + [anon_sym_BSLASHac] = ACTIONS(12527), + [anon_sym_BSLASHAc] = ACTIONS(12527), + [anon_sym_BSLASHacp] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12527), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12527), + [anon_sym_BSLASHcolor] = ACTIONS(12527), + [anon_sym_BSLASHcolorbox] = ACTIONS(12527), + [anon_sym_BSLASHtextcolor] = ACTIONS(12527), + [anon_sym_BSLASHpagecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12527), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12527), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12527), + }, + [1070] = { + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(123), + [aux_sym_section_token1] = ACTIONS(123), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [1071] = { + [sym_generic_command_name] = ACTIONS(12531), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12531), + [aux_sym_chapter_token1] = ACTIONS(12531), + [aux_sym_section_token1] = ACTIONS(12531), + [aux_sym_subsection_token1] = ACTIONS(12531), + [aux_sym_subsubsection_token1] = ACTIONS(12531), + [aux_sym_paragraph_token1] = ACTIONS(12531), + [aux_sym_subparagraph_token1] = ACTIONS(12531), + [anon_sym_BSLASHitem] = ACTIONS(12531), + [anon_sym_LBRACK] = ACTIONS(12529), + [anon_sym_LBRACE] = ACTIONS(12529), + [anon_sym_LPAREN] = ACTIONS(12529), + [anon_sym_COMMA] = ACTIONS(12529), + [anon_sym_EQ] = ACTIONS(12529), + [sym_word] = ACTIONS(12529), + [sym_param] = ACTIONS(12529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12529), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12529), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12529), + [anon_sym_DOLLAR] = ACTIONS(12531), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12529), + [anon_sym_BSLASHbegin] = ACTIONS(12531), + [anon_sym_BSLASHcaption] = ACTIONS(12531), + [anon_sym_BSLASHcite] = ACTIONS(12531), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCite] = ACTIONS(12531), + [anon_sym_BSLASHnocite] = ACTIONS(12531), + [anon_sym_BSLASHcitet] = ACTIONS(12531), + [anon_sym_BSLASHcitep] = ACTIONS(12531), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteauthor] = ACTIONS(12531), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12531), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitetitle] = ACTIONS(12531), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteyear] = ACTIONS(12531), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitedate] = ACTIONS(12531), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteurl] = ACTIONS(12531), + [anon_sym_BSLASHfullcite] = ACTIONS(12531), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12531), + [anon_sym_BSLASHcitealt] = ACTIONS(12531), + [anon_sym_BSLASHcitealp] = ACTIONS(12531), + [anon_sym_BSLASHcitetext] = ACTIONS(12531), + [anon_sym_BSLASHparencite] = ACTIONS(12531), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHParencite] = ACTIONS(12531), + [anon_sym_BSLASHfootcite] = ACTIONS(12531), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12531), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12531), + [anon_sym_BSLASHtextcite] = ACTIONS(12531), + [anon_sym_BSLASHTextcite] = ACTIONS(12531), + [anon_sym_BSLASHsmartcite] = ACTIONS(12531), + [anon_sym_BSLASHSmartcite] = ACTIONS(12531), + [anon_sym_BSLASHsupercite] = ACTIONS(12531), + [anon_sym_BSLASHautocite] = ACTIONS(12531), + [anon_sym_BSLASHAutocite] = ACTIONS(12531), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHvolcite] = ACTIONS(12531), + [anon_sym_BSLASHVolcite] = ACTIONS(12531), + [anon_sym_BSLASHpvolcite] = ACTIONS(12531), + [anon_sym_BSLASHPvolcite] = ACTIONS(12531), + [anon_sym_BSLASHfvolcite] = ACTIONS(12531), + [anon_sym_BSLASHftvolcite] = ACTIONS(12531), + [anon_sym_BSLASHsvolcite] = ACTIONS(12531), + [anon_sym_BSLASHSvolcite] = ACTIONS(12531), + [anon_sym_BSLASHtvolcite] = ACTIONS(12531), + [anon_sym_BSLASHTvolcite] = ACTIONS(12531), + [anon_sym_BSLASHavolcite] = ACTIONS(12531), + [anon_sym_BSLASHAvolcite] = ACTIONS(12531), + [anon_sym_BSLASHnotecite] = ACTIONS(12531), + [anon_sym_BSLASHpnotecite] = ACTIONS(12531), + [anon_sym_BSLASHPnotecite] = ACTIONS(12531), + [anon_sym_BSLASHfnotecite] = ACTIONS(12531), + [anon_sym_BSLASHusepackage] = ACTIONS(12531), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12531), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12531), + [anon_sym_BSLASHinclude] = ACTIONS(12531), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12531), + [anon_sym_BSLASHinput] = ACTIONS(12531), + [anon_sym_BSLASHsubfile] = ACTIONS(12531), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12531), + [anon_sym_BSLASHbibliography] = ACTIONS(12531), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12531), + [anon_sym_BSLASHincludesvg] = ACTIONS(12531), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12531), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12531), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12531), + [anon_sym_BSLASHimport] = ACTIONS(12531), + [anon_sym_BSLASHsubimport] = ACTIONS(12531), + [anon_sym_BSLASHinputfrom] = ACTIONS(12531), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12531), + [anon_sym_BSLASHincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHlabel] = ACTIONS(12531), + [anon_sym_BSLASHref] = ACTIONS(12531), + [anon_sym_BSLASHvref] = ACTIONS(12531), + [anon_sym_BSLASHVref] = ACTIONS(12531), + [anon_sym_BSLASHautoref] = ACTIONS(12531), + [anon_sym_BSLASHpageref] = ACTIONS(12531), + [anon_sym_BSLASHcref] = ACTIONS(12531), + [anon_sym_BSLASHCref] = ACTIONS(12531), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnameCref] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHlabelcref] = ACTIONS(12531), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12531), + [anon_sym_BSLASHeqref] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange] = ACTIONS(12531), + [anon_sym_BSLASHCrefrange] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewlabel] = ACTIONS(12531), + [anon_sym_BSLASHnewcommand] = ACTIONS(12531), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12531), + [anon_sym_BSLASHgls] = ACTIONS(12531), + [anon_sym_BSLASHGls] = ACTIONS(12531), + [anon_sym_BSLASHGLS] = ACTIONS(12531), + [anon_sym_BSLASHglspl] = ACTIONS(12531), + [anon_sym_BSLASHGlspl] = ACTIONS(12531), + [anon_sym_BSLASHGLSpl] = ACTIONS(12531), + [anon_sym_BSLASHglsdisp] = ACTIONS(12531), + [anon_sym_BSLASHglslink] = ACTIONS(12531), + [anon_sym_BSLASHglstext] = ACTIONS(12531), + [anon_sym_BSLASHGlstext] = ACTIONS(12531), + [anon_sym_BSLASHGLStext] = ACTIONS(12531), + [anon_sym_BSLASHglsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12531), + [anon_sym_BSLASHglsplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSplural] = ACTIONS(12531), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHglsname] = ACTIONS(12531), + [anon_sym_BSLASHGlsname] = ACTIONS(12531), + [anon_sym_BSLASHGLSname] = ACTIONS(12531), + [anon_sym_BSLASHglssymbol] = ACTIONS(12531), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12531), + [anon_sym_BSLASHglsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12531), + [anon_sym_BSLASHglsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12531), + [anon_sym_BSLASHglsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12531), + [anon_sym_BSLASHglsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12531), + [anon_sym_BSLASHglsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12531), + [anon_sym_BSLASHnewacronym] = ACTIONS(12531), + [anon_sym_BSLASHacrshort] = ACTIONS(12531), + [anon_sym_BSLASHAcrshort] = ACTIONS(12531), + [anon_sym_BSLASHACRshort] = ACTIONS(12531), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12531), + [anon_sym_BSLASHacrlong] = ACTIONS(12531), + [anon_sym_BSLASHAcrlong] = ACTIONS(12531), + [anon_sym_BSLASHACRlong] = ACTIONS(12531), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12531), + [anon_sym_BSLASHacrfull] = ACTIONS(12531), + [anon_sym_BSLASHAcrfull] = ACTIONS(12531), + [anon_sym_BSLASHACRfull] = ACTIONS(12531), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12531), + [anon_sym_BSLASHacs] = ACTIONS(12531), + [anon_sym_BSLASHAcs] = ACTIONS(12531), + [anon_sym_BSLASHacsp] = ACTIONS(12531), + [anon_sym_BSLASHAcsp] = ACTIONS(12531), + [anon_sym_BSLASHacl] = ACTIONS(12531), + [anon_sym_BSLASHAcl] = ACTIONS(12531), + [anon_sym_BSLASHaclp] = ACTIONS(12531), + [anon_sym_BSLASHAclp] = ACTIONS(12531), + [anon_sym_BSLASHacf] = ACTIONS(12531), + [anon_sym_BSLASHAcf] = ACTIONS(12531), + [anon_sym_BSLASHacfp] = ACTIONS(12531), + [anon_sym_BSLASHAcfp] = ACTIONS(12531), + [anon_sym_BSLASHac] = ACTIONS(12531), + [anon_sym_BSLASHAc] = ACTIONS(12531), + [anon_sym_BSLASHacp] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12531), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12531), + [anon_sym_BSLASHcolor] = ACTIONS(12531), + [anon_sym_BSLASHcolorbox] = ACTIONS(12531), + [anon_sym_BSLASHtextcolor] = ACTIONS(12531), + [anon_sym_BSLASHpagecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12531), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12531), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12531), + }, + [1072] = { + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(127), + [aux_sym_section_token1] = ACTIONS(127), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [1073] = { + [sym_generic_command_name] = ACTIONS(12136), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12136), + [aux_sym_section_token1] = ACTIONS(12136), + [aux_sym_subsection_token1] = ACTIONS(12136), + [aux_sym_subsubsection_token1] = ACTIONS(12136), + [aux_sym_paragraph_token1] = ACTIONS(12136), + [aux_sym_subparagraph_token1] = ACTIONS(12136), + [anon_sym_BSLASHitem] = ACTIONS(12136), + [anon_sym_LBRACK] = ACTIONS(12134), + [anon_sym_RBRACK] = ACTIONS(12134), + [anon_sym_LBRACE] = ACTIONS(12134), + [anon_sym_RBRACE] = ACTIONS(12134), + [anon_sym_LPAREN] = ACTIONS(12134), + [anon_sym_COMMA] = ACTIONS(12134), + [anon_sym_EQ] = ACTIONS(12134), + [sym_word] = ACTIONS(12134), + [sym_param] = ACTIONS(12134), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12134), + [anon_sym_DOLLAR] = ACTIONS(12136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12134), + [anon_sym_BSLASHbegin] = ACTIONS(12136), + [anon_sym_BSLASHcaption] = ACTIONS(12136), + [anon_sym_BSLASHcite] = ACTIONS(12136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCite] = ACTIONS(12136), + [anon_sym_BSLASHnocite] = ACTIONS(12136), + [anon_sym_BSLASHcitet] = ACTIONS(12136), + [anon_sym_BSLASHcitep] = ACTIONS(12136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteauthor] = ACTIONS(12136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitetitle] = ACTIONS(12136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteyear] = ACTIONS(12136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitedate] = ACTIONS(12136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteurl] = ACTIONS(12136), + [anon_sym_BSLASHfullcite] = ACTIONS(12136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12136), + [anon_sym_BSLASHcitealt] = ACTIONS(12136), + [anon_sym_BSLASHcitealp] = ACTIONS(12136), + [anon_sym_BSLASHcitetext] = ACTIONS(12136), + [anon_sym_BSLASHparencite] = ACTIONS(12136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHParencite] = ACTIONS(12136), + [anon_sym_BSLASHfootcite] = ACTIONS(12136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12136), + [anon_sym_BSLASHtextcite] = ACTIONS(12136), + [anon_sym_BSLASHTextcite] = ACTIONS(12136), + [anon_sym_BSLASHsmartcite] = ACTIONS(12136), + [anon_sym_BSLASHSmartcite] = ACTIONS(12136), + [anon_sym_BSLASHsupercite] = ACTIONS(12136), + [anon_sym_BSLASHautocite] = ACTIONS(12136), + [anon_sym_BSLASHAutocite] = ACTIONS(12136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHvolcite] = ACTIONS(12136), + [anon_sym_BSLASHVolcite] = ACTIONS(12136), + [anon_sym_BSLASHpvolcite] = ACTIONS(12136), + [anon_sym_BSLASHPvolcite] = ACTIONS(12136), + [anon_sym_BSLASHfvolcite] = ACTIONS(12136), + [anon_sym_BSLASHftvolcite] = ACTIONS(12136), + [anon_sym_BSLASHsvolcite] = ACTIONS(12136), + [anon_sym_BSLASHSvolcite] = ACTIONS(12136), + [anon_sym_BSLASHtvolcite] = ACTIONS(12136), + [anon_sym_BSLASHTvolcite] = ACTIONS(12136), + [anon_sym_BSLASHavolcite] = ACTIONS(12136), + [anon_sym_BSLASHAvolcite] = ACTIONS(12136), + [anon_sym_BSLASHnotecite] = ACTIONS(12136), + [anon_sym_BSLASHpnotecite] = ACTIONS(12136), + [anon_sym_BSLASHPnotecite] = ACTIONS(12136), + [anon_sym_BSLASHfnotecite] = ACTIONS(12136), + [anon_sym_BSLASHusepackage] = ACTIONS(12136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12136), + [anon_sym_BSLASHinclude] = ACTIONS(12136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12136), + [anon_sym_BSLASHinput] = ACTIONS(12136), + [anon_sym_BSLASHsubfile] = ACTIONS(12136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12136), + [anon_sym_BSLASHbibliography] = ACTIONS(12136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12136), + [anon_sym_BSLASHincludesvg] = ACTIONS(12136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12136), + [anon_sym_BSLASHimport] = ACTIONS(12136), + [anon_sym_BSLASHsubimport] = ACTIONS(12136), + [anon_sym_BSLASHinputfrom] = ACTIONS(12136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12136), + [anon_sym_BSLASHincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHlabel] = ACTIONS(12136), + [anon_sym_BSLASHref] = ACTIONS(12136), + [anon_sym_BSLASHvref] = ACTIONS(12136), + [anon_sym_BSLASHVref] = ACTIONS(12136), + [anon_sym_BSLASHautoref] = ACTIONS(12136), + [anon_sym_BSLASHpageref] = ACTIONS(12136), + [anon_sym_BSLASHcref] = ACTIONS(12136), + [anon_sym_BSLASHCref] = ACTIONS(12136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnameCref] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHlabelcref] = ACTIONS(12136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12136), + [anon_sym_BSLASHeqref] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange] = ACTIONS(12136), + [anon_sym_BSLASHCrefrange] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewlabel] = ACTIONS(12136), + [anon_sym_BSLASHnewcommand] = ACTIONS(12136), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12136), + [anon_sym_BSLASHgls] = ACTIONS(12136), + [anon_sym_BSLASHGls] = ACTIONS(12136), + [anon_sym_BSLASHGLS] = ACTIONS(12136), + [anon_sym_BSLASHglspl] = ACTIONS(12136), + [anon_sym_BSLASHGlspl] = ACTIONS(12136), + [anon_sym_BSLASHGLSpl] = ACTIONS(12136), + [anon_sym_BSLASHglsdisp] = ACTIONS(12136), + [anon_sym_BSLASHglslink] = ACTIONS(12136), + [anon_sym_BSLASHglstext] = ACTIONS(12136), + [anon_sym_BSLASHGlstext] = ACTIONS(12136), + [anon_sym_BSLASHGLStext] = ACTIONS(12136), + [anon_sym_BSLASHglsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12136), + [anon_sym_BSLASHglsplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSplural] = ACTIONS(12136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHglsname] = ACTIONS(12136), + [anon_sym_BSLASHGlsname] = ACTIONS(12136), + [anon_sym_BSLASHGLSname] = ACTIONS(12136), + [anon_sym_BSLASHglssymbol] = ACTIONS(12136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12136), + [anon_sym_BSLASHglsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12136), + [anon_sym_BSLASHglsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12136), + [anon_sym_BSLASHglsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12136), + [anon_sym_BSLASHglsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12136), + [anon_sym_BSLASHglsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12136), + [anon_sym_BSLASHnewacronym] = ACTIONS(12136), + [anon_sym_BSLASHacrshort] = ACTIONS(12136), + [anon_sym_BSLASHAcrshort] = ACTIONS(12136), + [anon_sym_BSLASHACRshort] = ACTIONS(12136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12136), + [anon_sym_BSLASHacrlong] = ACTIONS(12136), + [anon_sym_BSLASHAcrlong] = ACTIONS(12136), + [anon_sym_BSLASHACRlong] = ACTIONS(12136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12136), + [anon_sym_BSLASHacrfull] = ACTIONS(12136), + [anon_sym_BSLASHAcrfull] = ACTIONS(12136), + [anon_sym_BSLASHACRfull] = ACTIONS(12136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12136), + [anon_sym_BSLASHacs] = ACTIONS(12136), + [anon_sym_BSLASHAcs] = ACTIONS(12136), + [anon_sym_BSLASHacsp] = ACTIONS(12136), + [anon_sym_BSLASHAcsp] = ACTIONS(12136), + [anon_sym_BSLASHacl] = ACTIONS(12136), + [anon_sym_BSLASHAcl] = ACTIONS(12136), + [anon_sym_BSLASHaclp] = ACTIONS(12136), + [anon_sym_BSLASHAclp] = ACTIONS(12136), + [anon_sym_BSLASHacf] = ACTIONS(12136), + [anon_sym_BSLASHAcf] = ACTIONS(12136), + [anon_sym_BSLASHacfp] = ACTIONS(12136), + [anon_sym_BSLASHAcfp] = ACTIONS(12136), + [anon_sym_BSLASHac] = ACTIONS(12136), + [anon_sym_BSLASHAc] = ACTIONS(12136), + [anon_sym_BSLASHacp] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12136), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12136), + [anon_sym_BSLASHcolor] = ACTIONS(12136), + [anon_sym_BSLASHcolorbox] = ACTIONS(12136), + [anon_sym_BSLASHtextcolor] = ACTIONS(12136), + [anon_sym_BSLASHpagecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12136), + }, + [1074] = { + [sym_generic_command_name] = ACTIONS(12140), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12140), + [aux_sym_section_token1] = ACTIONS(12140), + [aux_sym_subsection_token1] = ACTIONS(12140), + [aux_sym_subsubsection_token1] = ACTIONS(12140), + [aux_sym_paragraph_token1] = ACTIONS(12140), + [aux_sym_subparagraph_token1] = ACTIONS(12140), + [anon_sym_BSLASHitem] = ACTIONS(12140), + [anon_sym_LBRACK] = ACTIONS(12138), + [anon_sym_RBRACK] = ACTIONS(12138), + [anon_sym_LBRACE] = ACTIONS(12138), + [anon_sym_RBRACE] = ACTIONS(12138), + [anon_sym_LPAREN] = ACTIONS(12138), + [anon_sym_COMMA] = ACTIONS(12138), + [anon_sym_EQ] = ACTIONS(12138), + [sym_word] = ACTIONS(12138), + [sym_param] = ACTIONS(12138), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12138), + [anon_sym_DOLLAR] = ACTIONS(12140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12138), + [anon_sym_BSLASHbegin] = ACTIONS(12140), + [anon_sym_BSLASHcaption] = ACTIONS(12140), + [anon_sym_BSLASHcite] = ACTIONS(12140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCite] = ACTIONS(12140), + [anon_sym_BSLASHnocite] = ACTIONS(12140), + [anon_sym_BSLASHcitet] = ACTIONS(12140), + [anon_sym_BSLASHcitep] = ACTIONS(12140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteauthor] = ACTIONS(12140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitetitle] = ACTIONS(12140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteyear] = ACTIONS(12140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitedate] = ACTIONS(12140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteurl] = ACTIONS(12140), + [anon_sym_BSLASHfullcite] = ACTIONS(12140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12140), + [anon_sym_BSLASHcitealt] = ACTIONS(12140), + [anon_sym_BSLASHcitealp] = ACTIONS(12140), + [anon_sym_BSLASHcitetext] = ACTIONS(12140), + [anon_sym_BSLASHparencite] = ACTIONS(12140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHParencite] = ACTIONS(12140), + [anon_sym_BSLASHfootcite] = ACTIONS(12140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12140), + [anon_sym_BSLASHtextcite] = ACTIONS(12140), + [anon_sym_BSLASHTextcite] = ACTIONS(12140), + [anon_sym_BSLASHsmartcite] = ACTIONS(12140), + [anon_sym_BSLASHSmartcite] = ACTIONS(12140), + [anon_sym_BSLASHsupercite] = ACTIONS(12140), + [anon_sym_BSLASHautocite] = ACTIONS(12140), + [anon_sym_BSLASHAutocite] = ACTIONS(12140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHvolcite] = ACTIONS(12140), + [anon_sym_BSLASHVolcite] = ACTIONS(12140), + [anon_sym_BSLASHpvolcite] = ACTIONS(12140), + [anon_sym_BSLASHPvolcite] = ACTIONS(12140), + [anon_sym_BSLASHfvolcite] = ACTIONS(12140), + [anon_sym_BSLASHftvolcite] = ACTIONS(12140), + [anon_sym_BSLASHsvolcite] = ACTIONS(12140), + [anon_sym_BSLASHSvolcite] = ACTIONS(12140), + [anon_sym_BSLASHtvolcite] = ACTIONS(12140), + [anon_sym_BSLASHTvolcite] = ACTIONS(12140), + [anon_sym_BSLASHavolcite] = ACTIONS(12140), + [anon_sym_BSLASHAvolcite] = ACTIONS(12140), + [anon_sym_BSLASHnotecite] = ACTIONS(12140), + [anon_sym_BSLASHpnotecite] = ACTIONS(12140), + [anon_sym_BSLASHPnotecite] = ACTIONS(12140), + [anon_sym_BSLASHfnotecite] = ACTIONS(12140), + [anon_sym_BSLASHusepackage] = ACTIONS(12140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12140), + [anon_sym_BSLASHinclude] = ACTIONS(12140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12140), + [anon_sym_BSLASHinput] = ACTIONS(12140), + [anon_sym_BSLASHsubfile] = ACTIONS(12140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12140), + [anon_sym_BSLASHbibliography] = ACTIONS(12140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12140), + [anon_sym_BSLASHincludesvg] = ACTIONS(12140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12140), + [anon_sym_BSLASHimport] = ACTIONS(12140), + [anon_sym_BSLASHsubimport] = ACTIONS(12140), + [anon_sym_BSLASHinputfrom] = ACTIONS(12140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12140), + [anon_sym_BSLASHincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHlabel] = ACTIONS(12140), + [anon_sym_BSLASHref] = ACTIONS(12140), + [anon_sym_BSLASHvref] = ACTIONS(12140), + [anon_sym_BSLASHVref] = ACTIONS(12140), + [anon_sym_BSLASHautoref] = ACTIONS(12140), + [anon_sym_BSLASHpageref] = ACTIONS(12140), + [anon_sym_BSLASHcref] = ACTIONS(12140), + [anon_sym_BSLASHCref] = ACTIONS(12140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnameCref] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHlabelcref] = ACTIONS(12140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12140), + [anon_sym_BSLASHeqref] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange] = ACTIONS(12140), + [anon_sym_BSLASHCrefrange] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewlabel] = ACTIONS(12140), + [anon_sym_BSLASHnewcommand] = ACTIONS(12140), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12140), + [anon_sym_BSLASHgls] = ACTIONS(12140), + [anon_sym_BSLASHGls] = ACTIONS(12140), + [anon_sym_BSLASHGLS] = ACTIONS(12140), + [anon_sym_BSLASHglspl] = ACTIONS(12140), + [anon_sym_BSLASHGlspl] = ACTIONS(12140), + [anon_sym_BSLASHGLSpl] = ACTIONS(12140), + [anon_sym_BSLASHglsdisp] = ACTIONS(12140), + [anon_sym_BSLASHglslink] = ACTIONS(12140), + [anon_sym_BSLASHglstext] = ACTIONS(12140), + [anon_sym_BSLASHGlstext] = ACTIONS(12140), + [anon_sym_BSLASHGLStext] = ACTIONS(12140), + [anon_sym_BSLASHglsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12140), + [anon_sym_BSLASHglsplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSplural] = ACTIONS(12140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHglsname] = ACTIONS(12140), + [anon_sym_BSLASHGlsname] = ACTIONS(12140), + [anon_sym_BSLASHGLSname] = ACTIONS(12140), + [anon_sym_BSLASHglssymbol] = ACTIONS(12140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12140), + [anon_sym_BSLASHglsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12140), + [anon_sym_BSLASHglsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12140), + [anon_sym_BSLASHglsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12140), + [anon_sym_BSLASHglsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12140), + [anon_sym_BSLASHglsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12140), + [anon_sym_BSLASHnewacronym] = ACTIONS(12140), + [anon_sym_BSLASHacrshort] = ACTIONS(12140), + [anon_sym_BSLASHAcrshort] = ACTIONS(12140), + [anon_sym_BSLASHACRshort] = ACTIONS(12140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12140), + [anon_sym_BSLASHacrlong] = ACTIONS(12140), + [anon_sym_BSLASHAcrlong] = ACTIONS(12140), + [anon_sym_BSLASHACRlong] = ACTIONS(12140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12140), + [anon_sym_BSLASHacrfull] = ACTIONS(12140), + [anon_sym_BSLASHAcrfull] = ACTIONS(12140), + [anon_sym_BSLASHACRfull] = ACTIONS(12140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12140), + [anon_sym_BSLASHacs] = ACTIONS(12140), + [anon_sym_BSLASHAcs] = ACTIONS(12140), + [anon_sym_BSLASHacsp] = ACTIONS(12140), + [anon_sym_BSLASHAcsp] = ACTIONS(12140), + [anon_sym_BSLASHacl] = ACTIONS(12140), + [anon_sym_BSLASHAcl] = ACTIONS(12140), + [anon_sym_BSLASHaclp] = ACTIONS(12140), + [anon_sym_BSLASHAclp] = ACTIONS(12140), + [anon_sym_BSLASHacf] = ACTIONS(12140), + [anon_sym_BSLASHAcf] = ACTIONS(12140), + [anon_sym_BSLASHacfp] = ACTIONS(12140), + [anon_sym_BSLASHAcfp] = ACTIONS(12140), + [anon_sym_BSLASHac] = ACTIONS(12140), + [anon_sym_BSLASHAc] = ACTIONS(12140), + [anon_sym_BSLASHacp] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12140), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12140), + [anon_sym_BSLASHcolor] = ACTIONS(12140), + [anon_sym_BSLASHcolorbox] = ACTIONS(12140), + [anon_sym_BSLASHtextcolor] = ACTIONS(12140), + [anon_sym_BSLASHpagecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12140), + }, + [1075] = { + [sym_generic_command_name] = ACTIONS(12144), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12144), + [aux_sym_section_token1] = ACTIONS(12144), + [aux_sym_subsection_token1] = ACTIONS(12144), + [aux_sym_subsubsection_token1] = ACTIONS(12144), + [aux_sym_paragraph_token1] = ACTIONS(12144), + [aux_sym_subparagraph_token1] = ACTIONS(12144), + [anon_sym_BSLASHitem] = ACTIONS(12144), + [anon_sym_LBRACK] = ACTIONS(12142), + [anon_sym_RBRACK] = ACTIONS(12142), + [anon_sym_LBRACE] = ACTIONS(12142), + [anon_sym_RBRACE] = ACTIONS(12142), + [anon_sym_LPAREN] = ACTIONS(12142), + [anon_sym_COMMA] = ACTIONS(12142), + [anon_sym_EQ] = ACTIONS(12142), + [sym_word] = ACTIONS(12142), + [sym_param] = ACTIONS(12142), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12142), + [anon_sym_DOLLAR] = ACTIONS(12144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12142), + [anon_sym_BSLASHbegin] = ACTIONS(12144), + [anon_sym_BSLASHcaption] = ACTIONS(12144), + [anon_sym_BSLASHcite] = ACTIONS(12144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCite] = ACTIONS(12144), + [anon_sym_BSLASHnocite] = ACTIONS(12144), + [anon_sym_BSLASHcitet] = ACTIONS(12144), + [anon_sym_BSLASHcitep] = ACTIONS(12144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteauthor] = ACTIONS(12144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitetitle] = ACTIONS(12144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteyear] = ACTIONS(12144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitedate] = ACTIONS(12144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteurl] = ACTIONS(12144), + [anon_sym_BSLASHfullcite] = ACTIONS(12144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12144), + [anon_sym_BSLASHcitealt] = ACTIONS(12144), + [anon_sym_BSLASHcitealp] = ACTIONS(12144), + [anon_sym_BSLASHcitetext] = ACTIONS(12144), + [anon_sym_BSLASHparencite] = ACTIONS(12144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHParencite] = ACTIONS(12144), + [anon_sym_BSLASHfootcite] = ACTIONS(12144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12144), + [anon_sym_BSLASHtextcite] = ACTIONS(12144), + [anon_sym_BSLASHTextcite] = ACTIONS(12144), + [anon_sym_BSLASHsmartcite] = ACTIONS(12144), + [anon_sym_BSLASHSmartcite] = ACTIONS(12144), + [anon_sym_BSLASHsupercite] = ACTIONS(12144), + [anon_sym_BSLASHautocite] = ACTIONS(12144), + [anon_sym_BSLASHAutocite] = ACTIONS(12144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHvolcite] = ACTIONS(12144), + [anon_sym_BSLASHVolcite] = ACTIONS(12144), + [anon_sym_BSLASHpvolcite] = ACTIONS(12144), + [anon_sym_BSLASHPvolcite] = ACTIONS(12144), + [anon_sym_BSLASHfvolcite] = ACTIONS(12144), + [anon_sym_BSLASHftvolcite] = ACTIONS(12144), + [anon_sym_BSLASHsvolcite] = ACTIONS(12144), + [anon_sym_BSLASHSvolcite] = ACTIONS(12144), + [anon_sym_BSLASHtvolcite] = ACTIONS(12144), + [anon_sym_BSLASHTvolcite] = ACTIONS(12144), + [anon_sym_BSLASHavolcite] = ACTIONS(12144), + [anon_sym_BSLASHAvolcite] = ACTIONS(12144), + [anon_sym_BSLASHnotecite] = ACTIONS(12144), + [anon_sym_BSLASHpnotecite] = ACTIONS(12144), + [anon_sym_BSLASHPnotecite] = ACTIONS(12144), + [anon_sym_BSLASHfnotecite] = ACTIONS(12144), + [anon_sym_BSLASHusepackage] = ACTIONS(12144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12144), + [anon_sym_BSLASHinclude] = ACTIONS(12144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12144), + [anon_sym_BSLASHinput] = ACTIONS(12144), + [anon_sym_BSLASHsubfile] = ACTIONS(12144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12144), + [anon_sym_BSLASHbibliography] = ACTIONS(12144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12144), + [anon_sym_BSLASHincludesvg] = ACTIONS(12144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12144), + [anon_sym_BSLASHimport] = ACTIONS(12144), + [anon_sym_BSLASHsubimport] = ACTIONS(12144), + [anon_sym_BSLASHinputfrom] = ACTIONS(12144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12144), + [anon_sym_BSLASHincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHlabel] = ACTIONS(12144), + [anon_sym_BSLASHref] = ACTIONS(12144), + [anon_sym_BSLASHvref] = ACTIONS(12144), + [anon_sym_BSLASHVref] = ACTIONS(12144), + [anon_sym_BSLASHautoref] = ACTIONS(12144), + [anon_sym_BSLASHpageref] = ACTIONS(12144), + [anon_sym_BSLASHcref] = ACTIONS(12144), + [anon_sym_BSLASHCref] = ACTIONS(12144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnameCref] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHlabelcref] = ACTIONS(12144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12144), + [anon_sym_BSLASHeqref] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange] = ACTIONS(12144), + [anon_sym_BSLASHCrefrange] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewlabel] = ACTIONS(12144), + [anon_sym_BSLASHnewcommand] = ACTIONS(12144), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12144), + [anon_sym_BSLASHgls] = ACTIONS(12144), + [anon_sym_BSLASHGls] = ACTIONS(12144), + [anon_sym_BSLASHGLS] = ACTIONS(12144), + [anon_sym_BSLASHglspl] = ACTIONS(12144), + [anon_sym_BSLASHGlspl] = ACTIONS(12144), + [anon_sym_BSLASHGLSpl] = ACTIONS(12144), + [anon_sym_BSLASHglsdisp] = ACTIONS(12144), + [anon_sym_BSLASHglslink] = ACTIONS(12144), + [anon_sym_BSLASHglstext] = ACTIONS(12144), + [anon_sym_BSLASHGlstext] = ACTIONS(12144), + [anon_sym_BSLASHGLStext] = ACTIONS(12144), + [anon_sym_BSLASHglsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12144), + [anon_sym_BSLASHglsplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSplural] = ACTIONS(12144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHglsname] = ACTIONS(12144), + [anon_sym_BSLASHGlsname] = ACTIONS(12144), + [anon_sym_BSLASHGLSname] = ACTIONS(12144), + [anon_sym_BSLASHglssymbol] = ACTIONS(12144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12144), + [anon_sym_BSLASHglsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12144), + [anon_sym_BSLASHglsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12144), + [anon_sym_BSLASHglsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12144), + [anon_sym_BSLASHglsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12144), + [anon_sym_BSLASHglsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12144), + [anon_sym_BSLASHnewacronym] = ACTIONS(12144), + [anon_sym_BSLASHacrshort] = ACTIONS(12144), + [anon_sym_BSLASHAcrshort] = ACTIONS(12144), + [anon_sym_BSLASHACRshort] = ACTIONS(12144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12144), + [anon_sym_BSLASHacrlong] = ACTIONS(12144), + [anon_sym_BSLASHAcrlong] = ACTIONS(12144), + [anon_sym_BSLASHACRlong] = ACTIONS(12144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12144), + [anon_sym_BSLASHacrfull] = ACTIONS(12144), + [anon_sym_BSLASHAcrfull] = ACTIONS(12144), + [anon_sym_BSLASHACRfull] = ACTIONS(12144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12144), + [anon_sym_BSLASHacs] = ACTIONS(12144), + [anon_sym_BSLASHAcs] = ACTIONS(12144), + [anon_sym_BSLASHacsp] = ACTIONS(12144), + [anon_sym_BSLASHAcsp] = ACTIONS(12144), + [anon_sym_BSLASHacl] = ACTIONS(12144), + [anon_sym_BSLASHAcl] = ACTIONS(12144), + [anon_sym_BSLASHaclp] = ACTIONS(12144), + [anon_sym_BSLASHAclp] = ACTIONS(12144), + [anon_sym_BSLASHacf] = ACTIONS(12144), + [anon_sym_BSLASHAcf] = ACTIONS(12144), + [anon_sym_BSLASHacfp] = ACTIONS(12144), + [anon_sym_BSLASHAcfp] = ACTIONS(12144), + [anon_sym_BSLASHac] = ACTIONS(12144), + [anon_sym_BSLASHAc] = ACTIONS(12144), + [anon_sym_BSLASHacp] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12144), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12144), + [anon_sym_BSLASHcolor] = ACTIONS(12144), + [anon_sym_BSLASHcolorbox] = ACTIONS(12144), + [anon_sym_BSLASHtextcolor] = ACTIONS(12144), + [anon_sym_BSLASHpagecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12144), + }, + [1076] = { + [sym_generic_command_name] = ACTIONS(12148), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12148), + [aux_sym_section_token1] = ACTIONS(12148), + [aux_sym_subsection_token1] = ACTIONS(12148), + [aux_sym_subsubsection_token1] = ACTIONS(12148), + [aux_sym_paragraph_token1] = ACTIONS(12148), + [aux_sym_subparagraph_token1] = ACTIONS(12148), + [anon_sym_BSLASHitem] = ACTIONS(12148), + [anon_sym_LBRACK] = ACTIONS(12146), + [anon_sym_RBRACK] = ACTIONS(12146), + [anon_sym_LBRACE] = ACTIONS(12146), + [anon_sym_RBRACE] = ACTIONS(12146), + [anon_sym_LPAREN] = ACTIONS(12146), + [anon_sym_COMMA] = ACTIONS(12146), + [anon_sym_EQ] = ACTIONS(12146), + [sym_word] = ACTIONS(12146), + [sym_param] = ACTIONS(12146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12146), + [anon_sym_DOLLAR] = ACTIONS(12148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12146), + [anon_sym_BSLASHbegin] = ACTIONS(12148), + [anon_sym_BSLASHcaption] = ACTIONS(12148), + [anon_sym_BSLASHcite] = ACTIONS(12148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCite] = ACTIONS(12148), + [anon_sym_BSLASHnocite] = ACTIONS(12148), + [anon_sym_BSLASHcitet] = ACTIONS(12148), + [anon_sym_BSLASHcitep] = ACTIONS(12148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteauthor] = ACTIONS(12148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitetitle] = ACTIONS(12148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteyear] = ACTIONS(12148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitedate] = ACTIONS(12148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteurl] = ACTIONS(12148), + [anon_sym_BSLASHfullcite] = ACTIONS(12148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12148), + [anon_sym_BSLASHcitealt] = ACTIONS(12148), + [anon_sym_BSLASHcitealp] = ACTIONS(12148), + [anon_sym_BSLASHcitetext] = ACTIONS(12148), + [anon_sym_BSLASHparencite] = ACTIONS(12148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHParencite] = ACTIONS(12148), + [anon_sym_BSLASHfootcite] = ACTIONS(12148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12148), + [anon_sym_BSLASHtextcite] = ACTIONS(12148), + [anon_sym_BSLASHTextcite] = ACTIONS(12148), + [anon_sym_BSLASHsmartcite] = ACTIONS(12148), + [anon_sym_BSLASHSmartcite] = ACTIONS(12148), + [anon_sym_BSLASHsupercite] = ACTIONS(12148), + [anon_sym_BSLASHautocite] = ACTIONS(12148), + [anon_sym_BSLASHAutocite] = ACTIONS(12148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHvolcite] = ACTIONS(12148), + [anon_sym_BSLASHVolcite] = ACTIONS(12148), + [anon_sym_BSLASHpvolcite] = ACTIONS(12148), + [anon_sym_BSLASHPvolcite] = ACTIONS(12148), + [anon_sym_BSLASHfvolcite] = ACTIONS(12148), + [anon_sym_BSLASHftvolcite] = ACTIONS(12148), + [anon_sym_BSLASHsvolcite] = ACTIONS(12148), + [anon_sym_BSLASHSvolcite] = ACTIONS(12148), + [anon_sym_BSLASHtvolcite] = ACTIONS(12148), + [anon_sym_BSLASHTvolcite] = ACTIONS(12148), + [anon_sym_BSLASHavolcite] = ACTIONS(12148), + [anon_sym_BSLASHAvolcite] = ACTIONS(12148), + [anon_sym_BSLASHnotecite] = ACTIONS(12148), + [anon_sym_BSLASHpnotecite] = ACTIONS(12148), + [anon_sym_BSLASHPnotecite] = ACTIONS(12148), + [anon_sym_BSLASHfnotecite] = ACTIONS(12148), + [anon_sym_BSLASHusepackage] = ACTIONS(12148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12148), + [anon_sym_BSLASHinclude] = ACTIONS(12148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12148), + [anon_sym_BSLASHinput] = ACTIONS(12148), + [anon_sym_BSLASHsubfile] = ACTIONS(12148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12148), + [anon_sym_BSLASHbibliography] = ACTIONS(12148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12148), + [anon_sym_BSLASHincludesvg] = ACTIONS(12148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12148), + [anon_sym_BSLASHimport] = ACTIONS(12148), + [anon_sym_BSLASHsubimport] = ACTIONS(12148), + [anon_sym_BSLASHinputfrom] = ACTIONS(12148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12148), + [anon_sym_BSLASHincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHlabel] = ACTIONS(12148), + [anon_sym_BSLASHref] = ACTIONS(12148), + [anon_sym_BSLASHvref] = ACTIONS(12148), + [anon_sym_BSLASHVref] = ACTIONS(12148), + [anon_sym_BSLASHautoref] = ACTIONS(12148), + [anon_sym_BSLASHpageref] = ACTIONS(12148), + [anon_sym_BSLASHcref] = ACTIONS(12148), + [anon_sym_BSLASHCref] = ACTIONS(12148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnameCref] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHlabelcref] = ACTIONS(12148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12148), + [anon_sym_BSLASHeqref] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange] = ACTIONS(12148), + [anon_sym_BSLASHCrefrange] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewlabel] = ACTIONS(12148), + [anon_sym_BSLASHnewcommand] = ACTIONS(12148), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12148), + [anon_sym_BSLASHgls] = ACTIONS(12148), + [anon_sym_BSLASHGls] = ACTIONS(12148), + [anon_sym_BSLASHGLS] = ACTIONS(12148), + [anon_sym_BSLASHglspl] = ACTIONS(12148), + [anon_sym_BSLASHGlspl] = ACTIONS(12148), + [anon_sym_BSLASHGLSpl] = ACTIONS(12148), + [anon_sym_BSLASHglsdisp] = ACTIONS(12148), + [anon_sym_BSLASHglslink] = ACTIONS(12148), + [anon_sym_BSLASHglstext] = ACTIONS(12148), + [anon_sym_BSLASHGlstext] = ACTIONS(12148), + [anon_sym_BSLASHGLStext] = ACTIONS(12148), + [anon_sym_BSLASHglsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12148), + [anon_sym_BSLASHglsplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSplural] = ACTIONS(12148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHglsname] = ACTIONS(12148), + [anon_sym_BSLASHGlsname] = ACTIONS(12148), + [anon_sym_BSLASHGLSname] = ACTIONS(12148), + [anon_sym_BSLASHglssymbol] = ACTIONS(12148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12148), + [anon_sym_BSLASHglsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12148), + [anon_sym_BSLASHglsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12148), + [anon_sym_BSLASHglsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12148), + [anon_sym_BSLASHglsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12148), + [anon_sym_BSLASHglsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12148), + [anon_sym_BSLASHnewacronym] = ACTIONS(12148), + [anon_sym_BSLASHacrshort] = ACTIONS(12148), + [anon_sym_BSLASHAcrshort] = ACTIONS(12148), + [anon_sym_BSLASHACRshort] = ACTIONS(12148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12148), + [anon_sym_BSLASHacrlong] = ACTIONS(12148), + [anon_sym_BSLASHAcrlong] = ACTIONS(12148), + [anon_sym_BSLASHACRlong] = ACTIONS(12148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12148), + [anon_sym_BSLASHacrfull] = ACTIONS(12148), + [anon_sym_BSLASHAcrfull] = ACTIONS(12148), + [anon_sym_BSLASHACRfull] = ACTIONS(12148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12148), + [anon_sym_BSLASHacs] = ACTIONS(12148), + [anon_sym_BSLASHAcs] = ACTIONS(12148), + [anon_sym_BSLASHacsp] = ACTIONS(12148), + [anon_sym_BSLASHAcsp] = ACTIONS(12148), + [anon_sym_BSLASHacl] = ACTIONS(12148), + [anon_sym_BSLASHAcl] = ACTIONS(12148), + [anon_sym_BSLASHaclp] = ACTIONS(12148), + [anon_sym_BSLASHAclp] = ACTIONS(12148), + [anon_sym_BSLASHacf] = ACTIONS(12148), + [anon_sym_BSLASHAcf] = ACTIONS(12148), + [anon_sym_BSLASHacfp] = ACTIONS(12148), + [anon_sym_BSLASHAcfp] = ACTIONS(12148), + [anon_sym_BSLASHac] = ACTIONS(12148), + [anon_sym_BSLASHAc] = ACTIONS(12148), + [anon_sym_BSLASHacp] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12148), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12148), + [anon_sym_BSLASHcolor] = ACTIONS(12148), + [anon_sym_BSLASHcolorbox] = ACTIONS(12148), + [anon_sym_BSLASHtextcolor] = ACTIONS(12148), + [anon_sym_BSLASHpagecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12148), + }, + [1077] = { + [sym_generic_command_name] = ACTIONS(12152), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12152), + [aux_sym_section_token1] = ACTIONS(12152), + [aux_sym_subsection_token1] = ACTIONS(12152), + [aux_sym_subsubsection_token1] = ACTIONS(12152), + [aux_sym_paragraph_token1] = ACTIONS(12152), + [aux_sym_subparagraph_token1] = ACTIONS(12152), + [anon_sym_BSLASHitem] = ACTIONS(12152), + [anon_sym_LBRACK] = ACTIONS(12150), + [anon_sym_RBRACK] = ACTIONS(12150), + [anon_sym_LBRACE] = ACTIONS(12150), + [anon_sym_RBRACE] = ACTIONS(12150), + [anon_sym_LPAREN] = ACTIONS(12150), + [anon_sym_COMMA] = ACTIONS(12150), + [anon_sym_EQ] = ACTIONS(12150), + [sym_word] = ACTIONS(12150), + [sym_param] = ACTIONS(12150), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12150), + [anon_sym_DOLLAR] = ACTIONS(12152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12150), + [anon_sym_BSLASHbegin] = ACTIONS(12152), + [anon_sym_BSLASHcaption] = ACTIONS(12152), + [anon_sym_BSLASHcite] = ACTIONS(12152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCite] = ACTIONS(12152), + [anon_sym_BSLASHnocite] = ACTIONS(12152), + [anon_sym_BSLASHcitet] = ACTIONS(12152), + [anon_sym_BSLASHcitep] = ACTIONS(12152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteauthor] = ACTIONS(12152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitetitle] = ACTIONS(12152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteyear] = ACTIONS(12152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitedate] = ACTIONS(12152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteurl] = ACTIONS(12152), + [anon_sym_BSLASHfullcite] = ACTIONS(12152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12152), + [anon_sym_BSLASHcitealt] = ACTIONS(12152), + [anon_sym_BSLASHcitealp] = ACTIONS(12152), + [anon_sym_BSLASHcitetext] = ACTIONS(12152), + [anon_sym_BSLASHparencite] = ACTIONS(12152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHParencite] = ACTIONS(12152), + [anon_sym_BSLASHfootcite] = ACTIONS(12152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12152), + [anon_sym_BSLASHtextcite] = ACTIONS(12152), + [anon_sym_BSLASHTextcite] = ACTIONS(12152), + [anon_sym_BSLASHsmartcite] = ACTIONS(12152), + [anon_sym_BSLASHSmartcite] = ACTIONS(12152), + [anon_sym_BSLASHsupercite] = ACTIONS(12152), + [anon_sym_BSLASHautocite] = ACTIONS(12152), + [anon_sym_BSLASHAutocite] = ACTIONS(12152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHvolcite] = ACTIONS(12152), + [anon_sym_BSLASHVolcite] = ACTIONS(12152), + [anon_sym_BSLASHpvolcite] = ACTIONS(12152), + [anon_sym_BSLASHPvolcite] = ACTIONS(12152), + [anon_sym_BSLASHfvolcite] = ACTIONS(12152), + [anon_sym_BSLASHftvolcite] = ACTIONS(12152), + [anon_sym_BSLASHsvolcite] = ACTIONS(12152), + [anon_sym_BSLASHSvolcite] = ACTIONS(12152), + [anon_sym_BSLASHtvolcite] = ACTIONS(12152), + [anon_sym_BSLASHTvolcite] = ACTIONS(12152), + [anon_sym_BSLASHavolcite] = ACTIONS(12152), + [anon_sym_BSLASHAvolcite] = ACTIONS(12152), + [anon_sym_BSLASHnotecite] = ACTIONS(12152), + [anon_sym_BSLASHpnotecite] = ACTIONS(12152), + [anon_sym_BSLASHPnotecite] = ACTIONS(12152), + [anon_sym_BSLASHfnotecite] = ACTIONS(12152), + [anon_sym_BSLASHusepackage] = ACTIONS(12152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12152), + [anon_sym_BSLASHinclude] = ACTIONS(12152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12152), + [anon_sym_BSLASHinput] = ACTIONS(12152), + [anon_sym_BSLASHsubfile] = ACTIONS(12152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12152), + [anon_sym_BSLASHbibliography] = ACTIONS(12152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12152), + [anon_sym_BSLASHincludesvg] = ACTIONS(12152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12152), + [anon_sym_BSLASHimport] = ACTIONS(12152), + [anon_sym_BSLASHsubimport] = ACTIONS(12152), + [anon_sym_BSLASHinputfrom] = ACTIONS(12152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12152), + [anon_sym_BSLASHincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHlabel] = ACTIONS(12152), + [anon_sym_BSLASHref] = ACTIONS(12152), + [anon_sym_BSLASHvref] = ACTIONS(12152), + [anon_sym_BSLASHVref] = ACTIONS(12152), + [anon_sym_BSLASHautoref] = ACTIONS(12152), + [anon_sym_BSLASHpageref] = ACTIONS(12152), + [anon_sym_BSLASHcref] = ACTIONS(12152), + [anon_sym_BSLASHCref] = ACTIONS(12152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnameCref] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHlabelcref] = ACTIONS(12152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12152), + [anon_sym_BSLASHeqref] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange] = ACTIONS(12152), + [anon_sym_BSLASHCrefrange] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewlabel] = ACTIONS(12152), + [anon_sym_BSLASHnewcommand] = ACTIONS(12152), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12152), + [anon_sym_BSLASHgls] = ACTIONS(12152), + [anon_sym_BSLASHGls] = ACTIONS(12152), + [anon_sym_BSLASHGLS] = ACTIONS(12152), + [anon_sym_BSLASHglspl] = ACTIONS(12152), + [anon_sym_BSLASHGlspl] = ACTIONS(12152), + [anon_sym_BSLASHGLSpl] = ACTIONS(12152), + [anon_sym_BSLASHglsdisp] = ACTIONS(12152), + [anon_sym_BSLASHglslink] = ACTIONS(12152), + [anon_sym_BSLASHglstext] = ACTIONS(12152), + [anon_sym_BSLASHGlstext] = ACTIONS(12152), + [anon_sym_BSLASHGLStext] = ACTIONS(12152), + [anon_sym_BSLASHglsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12152), + [anon_sym_BSLASHglsplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSplural] = ACTIONS(12152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHglsname] = ACTIONS(12152), + [anon_sym_BSLASHGlsname] = ACTIONS(12152), + [anon_sym_BSLASHGLSname] = ACTIONS(12152), + [anon_sym_BSLASHglssymbol] = ACTIONS(12152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12152), + [anon_sym_BSLASHglsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12152), + [anon_sym_BSLASHglsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12152), + [anon_sym_BSLASHglsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12152), + [anon_sym_BSLASHglsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12152), + [anon_sym_BSLASHglsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12152), + [anon_sym_BSLASHnewacronym] = ACTIONS(12152), + [anon_sym_BSLASHacrshort] = ACTIONS(12152), + [anon_sym_BSLASHAcrshort] = ACTIONS(12152), + [anon_sym_BSLASHACRshort] = ACTIONS(12152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12152), + [anon_sym_BSLASHacrlong] = ACTIONS(12152), + [anon_sym_BSLASHAcrlong] = ACTIONS(12152), + [anon_sym_BSLASHACRlong] = ACTIONS(12152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12152), + [anon_sym_BSLASHacrfull] = ACTIONS(12152), + [anon_sym_BSLASHAcrfull] = ACTIONS(12152), + [anon_sym_BSLASHACRfull] = ACTIONS(12152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12152), + [anon_sym_BSLASHacs] = ACTIONS(12152), + [anon_sym_BSLASHAcs] = ACTIONS(12152), + [anon_sym_BSLASHacsp] = ACTIONS(12152), + [anon_sym_BSLASHAcsp] = ACTIONS(12152), + [anon_sym_BSLASHacl] = ACTIONS(12152), + [anon_sym_BSLASHAcl] = ACTIONS(12152), + [anon_sym_BSLASHaclp] = ACTIONS(12152), + [anon_sym_BSLASHAclp] = ACTIONS(12152), + [anon_sym_BSLASHacf] = ACTIONS(12152), + [anon_sym_BSLASHAcf] = ACTIONS(12152), + [anon_sym_BSLASHacfp] = ACTIONS(12152), + [anon_sym_BSLASHAcfp] = ACTIONS(12152), + [anon_sym_BSLASHac] = ACTIONS(12152), + [anon_sym_BSLASHAc] = ACTIONS(12152), + [anon_sym_BSLASHacp] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12152), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12152), + [anon_sym_BSLASHcolor] = ACTIONS(12152), + [anon_sym_BSLASHcolorbox] = ACTIONS(12152), + [anon_sym_BSLASHtextcolor] = ACTIONS(12152), + [anon_sym_BSLASHpagecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12152), + }, + [1078] = { + [sym_generic_command_name] = ACTIONS(12156), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12156), + [aux_sym_section_token1] = ACTIONS(12156), + [aux_sym_subsection_token1] = ACTIONS(12156), + [aux_sym_subsubsection_token1] = ACTIONS(12156), + [aux_sym_paragraph_token1] = ACTIONS(12156), + [aux_sym_subparagraph_token1] = ACTIONS(12156), + [anon_sym_BSLASHitem] = ACTIONS(12156), + [anon_sym_LBRACK] = ACTIONS(12154), + [anon_sym_RBRACK] = ACTIONS(12154), + [anon_sym_LBRACE] = ACTIONS(12154), + [anon_sym_RBRACE] = ACTIONS(12154), + [anon_sym_LPAREN] = ACTIONS(12154), + [anon_sym_COMMA] = ACTIONS(12154), + [anon_sym_EQ] = ACTIONS(12154), + [sym_word] = ACTIONS(12154), + [sym_param] = ACTIONS(12154), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12154), + [anon_sym_DOLLAR] = ACTIONS(12156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12154), + [anon_sym_BSLASHbegin] = ACTIONS(12156), + [anon_sym_BSLASHcaption] = ACTIONS(12156), + [anon_sym_BSLASHcite] = ACTIONS(12156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCite] = ACTIONS(12156), + [anon_sym_BSLASHnocite] = ACTIONS(12156), + [anon_sym_BSLASHcitet] = ACTIONS(12156), + [anon_sym_BSLASHcitep] = ACTIONS(12156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteauthor] = ACTIONS(12156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitetitle] = ACTIONS(12156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteyear] = ACTIONS(12156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitedate] = ACTIONS(12156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteurl] = ACTIONS(12156), + [anon_sym_BSLASHfullcite] = ACTIONS(12156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12156), + [anon_sym_BSLASHcitealt] = ACTIONS(12156), + [anon_sym_BSLASHcitealp] = ACTIONS(12156), + [anon_sym_BSLASHcitetext] = ACTIONS(12156), + [anon_sym_BSLASHparencite] = ACTIONS(12156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHParencite] = ACTIONS(12156), + [anon_sym_BSLASHfootcite] = ACTIONS(12156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12156), + [anon_sym_BSLASHtextcite] = ACTIONS(12156), + [anon_sym_BSLASHTextcite] = ACTIONS(12156), + [anon_sym_BSLASHsmartcite] = ACTIONS(12156), + [anon_sym_BSLASHSmartcite] = ACTIONS(12156), + [anon_sym_BSLASHsupercite] = ACTIONS(12156), + [anon_sym_BSLASHautocite] = ACTIONS(12156), + [anon_sym_BSLASHAutocite] = ACTIONS(12156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHvolcite] = ACTIONS(12156), + [anon_sym_BSLASHVolcite] = ACTIONS(12156), + [anon_sym_BSLASHpvolcite] = ACTIONS(12156), + [anon_sym_BSLASHPvolcite] = ACTIONS(12156), + [anon_sym_BSLASHfvolcite] = ACTIONS(12156), + [anon_sym_BSLASHftvolcite] = ACTIONS(12156), + [anon_sym_BSLASHsvolcite] = ACTIONS(12156), + [anon_sym_BSLASHSvolcite] = ACTIONS(12156), + [anon_sym_BSLASHtvolcite] = ACTIONS(12156), + [anon_sym_BSLASHTvolcite] = ACTIONS(12156), + [anon_sym_BSLASHavolcite] = ACTIONS(12156), + [anon_sym_BSLASHAvolcite] = ACTIONS(12156), + [anon_sym_BSLASHnotecite] = ACTIONS(12156), + [anon_sym_BSLASHpnotecite] = ACTIONS(12156), + [anon_sym_BSLASHPnotecite] = ACTIONS(12156), + [anon_sym_BSLASHfnotecite] = ACTIONS(12156), + [anon_sym_BSLASHusepackage] = ACTIONS(12156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12156), + [anon_sym_BSLASHinclude] = ACTIONS(12156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12156), + [anon_sym_BSLASHinput] = ACTIONS(12156), + [anon_sym_BSLASHsubfile] = ACTIONS(12156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12156), + [anon_sym_BSLASHbibliography] = ACTIONS(12156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12156), + [anon_sym_BSLASHincludesvg] = ACTIONS(12156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12156), + [anon_sym_BSLASHimport] = ACTIONS(12156), + [anon_sym_BSLASHsubimport] = ACTIONS(12156), + [anon_sym_BSLASHinputfrom] = ACTIONS(12156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12156), + [anon_sym_BSLASHincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHlabel] = ACTIONS(12156), + [anon_sym_BSLASHref] = ACTIONS(12156), + [anon_sym_BSLASHvref] = ACTIONS(12156), + [anon_sym_BSLASHVref] = ACTIONS(12156), + [anon_sym_BSLASHautoref] = ACTIONS(12156), + [anon_sym_BSLASHpageref] = ACTIONS(12156), + [anon_sym_BSLASHcref] = ACTIONS(12156), + [anon_sym_BSLASHCref] = ACTIONS(12156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnameCref] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHlabelcref] = ACTIONS(12156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12156), + [anon_sym_BSLASHeqref] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange] = ACTIONS(12156), + [anon_sym_BSLASHCrefrange] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewlabel] = ACTIONS(12156), + [anon_sym_BSLASHnewcommand] = ACTIONS(12156), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12156), + [anon_sym_BSLASHgls] = ACTIONS(12156), + [anon_sym_BSLASHGls] = ACTIONS(12156), + [anon_sym_BSLASHGLS] = ACTIONS(12156), + [anon_sym_BSLASHglspl] = ACTIONS(12156), + [anon_sym_BSLASHGlspl] = ACTIONS(12156), + [anon_sym_BSLASHGLSpl] = ACTIONS(12156), + [anon_sym_BSLASHglsdisp] = ACTIONS(12156), + [anon_sym_BSLASHglslink] = ACTIONS(12156), + [anon_sym_BSLASHglstext] = ACTIONS(12156), + [anon_sym_BSLASHGlstext] = ACTIONS(12156), + [anon_sym_BSLASHGLStext] = ACTIONS(12156), + [anon_sym_BSLASHglsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12156), + [anon_sym_BSLASHglsplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSplural] = ACTIONS(12156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHglsname] = ACTIONS(12156), + [anon_sym_BSLASHGlsname] = ACTIONS(12156), + [anon_sym_BSLASHGLSname] = ACTIONS(12156), + [anon_sym_BSLASHglssymbol] = ACTIONS(12156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12156), + [anon_sym_BSLASHglsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12156), + [anon_sym_BSLASHglsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12156), + [anon_sym_BSLASHglsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12156), + [anon_sym_BSLASHglsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12156), + [anon_sym_BSLASHglsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12156), + [anon_sym_BSLASHnewacronym] = ACTIONS(12156), + [anon_sym_BSLASHacrshort] = ACTIONS(12156), + [anon_sym_BSLASHAcrshort] = ACTIONS(12156), + [anon_sym_BSLASHACRshort] = ACTIONS(12156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12156), + [anon_sym_BSLASHacrlong] = ACTIONS(12156), + [anon_sym_BSLASHAcrlong] = ACTIONS(12156), + [anon_sym_BSLASHACRlong] = ACTIONS(12156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12156), + [anon_sym_BSLASHacrfull] = ACTIONS(12156), + [anon_sym_BSLASHAcrfull] = ACTIONS(12156), + [anon_sym_BSLASHACRfull] = ACTIONS(12156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12156), + [anon_sym_BSLASHacs] = ACTIONS(12156), + [anon_sym_BSLASHAcs] = ACTIONS(12156), + [anon_sym_BSLASHacsp] = ACTIONS(12156), + [anon_sym_BSLASHAcsp] = ACTIONS(12156), + [anon_sym_BSLASHacl] = ACTIONS(12156), + [anon_sym_BSLASHAcl] = ACTIONS(12156), + [anon_sym_BSLASHaclp] = ACTIONS(12156), + [anon_sym_BSLASHAclp] = ACTIONS(12156), + [anon_sym_BSLASHacf] = ACTIONS(12156), + [anon_sym_BSLASHAcf] = ACTIONS(12156), + [anon_sym_BSLASHacfp] = ACTIONS(12156), + [anon_sym_BSLASHAcfp] = ACTIONS(12156), + [anon_sym_BSLASHac] = ACTIONS(12156), + [anon_sym_BSLASHAc] = ACTIONS(12156), + [anon_sym_BSLASHacp] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12156), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12156), + [anon_sym_BSLASHcolor] = ACTIONS(12156), + [anon_sym_BSLASHcolorbox] = ACTIONS(12156), + [anon_sym_BSLASHtextcolor] = ACTIONS(12156), + [anon_sym_BSLASHpagecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12156), + }, + [1079] = { + [sym_generic_command_name] = ACTIONS(12160), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12160), + [aux_sym_section_token1] = ACTIONS(12160), + [aux_sym_subsection_token1] = ACTIONS(12160), + [aux_sym_subsubsection_token1] = ACTIONS(12160), + [aux_sym_paragraph_token1] = ACTIONS(12160), + [aux_sym_subparagraph_token1] = ACTIONS(12160), + [anon_sym_BSLASHitem] = ACTIONS(12160), + [anon_sym_LBRACK] = ACTIONS(12158), + [anon_sym_RBRACK] = ACTIONS(12158), + [anon_sym_LBRACE] = ACTIONS(12158), + [anon_sym_RBRACE] = ACTIONS(12158), + [anon_sym_LPAREN] = ACTIONS(12158), + [anon_sym_COMMA] = ACTIONS(12158), + [anon_sym_EQ] = ACTIONS(12158), + [sym_word] = ACTIONS(12158), + [sym_param] = ACTIONS(12158), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12158), + [anon_sym_DOLLAR] = ACTIONS(12160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12158), + [anon_sym_BSLASHbegin] = ACTIONS(12160), + [anon_sym_BSLASHcaption] = ACTIONS(12160), + [anon_sym_BSLASHcite] = ACTIONS(12160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCite] = ACTIONS(12160), + [anon_sym_BSLASHnocite] = ACTIONS(12160), + [anon_sym_BSLASHcitet] = ACTIONS(12160), + [anon_sym_BSLASHcitep] = ACTIONS(12160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteauthor] = ACTIONS(12160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitetitle] = ACTIONS(12160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteyear] = ACTIONS(12160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitedate] = ACTIONS(12160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteurl] = ACTIONS(12160), + [anon_sym_BSLASHfullcite] = ACTIONS(12160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12160), + [anon_sym_BSLASHcitealt] = ACTIONS(12160), + [anon_sym_BSLASHcitealp] = ACTIONS(12160), + [anon_sym_BSLASHcitetext] = ACTIONS(12160), + [anon_sym_BSLASHparencite] = ACTIONS(12160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHParencite] = ACTIONS(12160), + [anon_sym_BSLASHfootcite] = ACTIONS(12160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12160), + [anon_sym_BSLASHtextcite] = ACTIONS(12160), + [anon_sym_BSLASHTextcite] = ACTIONS(12160), + [anon_sym_BSLASHsmartcite] = ACTIONS(12160), + [anon_sym_BSLASHSmartcite] = ACTIONS(12160), + [anon_sym_BSLASHsupercite] = ACTIONS(12160), + [anon_sym_BSLASHautocite] = ACTIONS(12160), + [anon_sym_BSLASHAutocite] = ACTIONS(12160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHvolcite] = ACTIONS(12160), + [anon_sym_BSLASHVolcite] = ACTIONS(12160), + [anon_sym_BSLASHpvolcite] = ACTIONS(12160), + [anon_sym_BSLASHPvolcite] = ACTIONS(12160), + [anon_sym_BSLASHfvolcite] = ACTIONS(12160), + [anon_sym_BSLASHftvolcite] = ACTIONS(12160), + [anon_sym_BSLASHsvolcite] = ACTIONS(12160), + [anon_sym_BSLASHSvolcite] = ACTIONS(12160), + [anon_sym_BSLASHtvolcite] = ACTIONS(12160), + [anon_sym_BSLASHTvolcite] = ACTIONS(12160), + [anon_sym_BSLASHavolcite] = ACTIONS(12160), + [anon_sym_BSLASHAvolcite] = ACTIONS(12160), + [anon_sym_BSLASHnotecite] = ACTIONS(12160), + [anon_sym_BSLASHpnotecite] = ACTIONS(12160), + [anon_sym_BSLASHPnotecite] = ACTIONS(12160), + [anon_sym_BSLASHfnotecite] = ACTIONS(12160), + [anon_sym_BSLASHusepackage] = ACTIONS(12160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12160), + [anon_sym_BSLASHinclude] = ACTIONS(12160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12160), + [anon_sym_BSLASHinput] = ACTIONS(12160), + [anon_sym_BSLASHsubfile] = ACTIONS(12160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12160), + [anon_sym_BSLASHbibliography] = ACTIONS(12160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12160), + [anon_sym_BSLASHincludesvg] = ACTIONS(12160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12160), + [anon_sym_BSLASHimport] = ACTIONS(12160), + [anon_sym_BSLASHsubimport] = ACTIONS(12160), + [anon_sym_BSLASHinputfrom] = ACTIONS(12160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12160), + [anon_sym_BSLASHincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHlabel] = ACTIONS(12160), + [anon_sym_BSLASHref] = ACTIONS(12160), + [anon_sym_BSLASHvref] = ACTIONS(12160), + [anon_sym_BSLASHVref] = ACTIONS(12160), + [anon_sym_BSLASHautoref] = ACTIONS(12160), + [anon_sym_BSLASHpageref] = ACTIONS(12160), + [anon_sym_BSLASHcref] = ACTIONS(12160), + [anon_sym_BSLASHCref] = ACTIONS(12160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnameCref] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHlabelcref] = ACTIONS(12160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12160), + [anon_sym_BSLASHeqref] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange] = ACTIONS(12160), + [anon_sym_BSLASHCrefrange] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewlabel] = ACTIONS(12160), + [anon_sym_BSLASHnewcommand] = ACTIONS(12160), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12160), + [anon_sym_BSLASHgls] = ACTIONS(12160), + [anon_sym_BSLASHGls] = ACTIONS(12160), + [anon_sym_BSLASHGLS] = ACTIONS(12160), + [anon_sym_BSLASHglspl] = ACTIONS(12160), + [anon_sym_BSLASHGlspl] = ACTIONS(12160), + [anon_sym_BSLASHGLSpl] = ACTIONS(12160), + [anon_sym_BSLASHglsdisp] = ACTIONS(12160), + [anon_sym_BSLASHglslink] = ACTIONS(12160), + [anon_sym_BSLASHglstext] = ACTIONS(12160), + [anon_sym_BSLASHGlstext] = ACTIONS(12160), + [anon_sym_BSLASHGLStext] = ACTIONS(12160), + [anon_sym_BSLASHglsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12160), + [anon_sym_BSLASHglsplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSplural] = ACTIONS(12160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHglsname] = ACTIONS(12160), + [anon_sym_BSLASHGlsname] = ACTIONS(12160), + [anon_sym_BSLASHGLSname] = ACTIONS(12160), + [anon_sym_BSLASHglssymbol] = ACTIONS(12160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12160), + [anon_sym_BSLASHglsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12160), + [anon_sym_BSLASHglsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12160), + [anon_sym_BSLASHglsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12160), + [anon_sym_BSLASHglsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12160), + [anon_sym_BSLASHglsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12160), + [anon_sym_BSLASHnewacronym] = ACTIONS(12160), + [anon_sym_BSLASHacrshort] = ACTIONS(12160), + [anon_sym_BSLASHAcrshort] = ACTIONS(12160), + [anon_sym_BSLASHACRshort] = ACTIONS(12160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12160), + [anon_sym_BSLASHacrlong] = ACTIONS(12160), + [anon_sym_BSLASHAcrlong] = ACTIONS(12160), + [anon_sym_BSLASHACRlong] = ACTIONS(12160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12160), + [anon_sym_BSLASHacrfull] = ACTIONS(12160), + [anon_sym_BSLASHAcrfull] = ACTIONS(12160), + [anon_sym_BSLASHACRfull] = ACTIONS(12160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12160), + [anon_sym_BSLASHacs] = ACTIONS(12160), + [anon_sym_BSLASHAcs] = ACTIONS(12160), + [anon_sym_BSLASHacsp] = ACTIONS(12160), + [anon_sym_BSLASHAcsp] = ACTIONS(12160), + [anon_sym_BSLASHacl] = ACTIONS(12160), + [anon_sym_BSLASHAcl] = ACTIONS(12160), + [anon_sym_BSLASHaclp] = ACTIONS(12160), + [anon_sym_BSLASHAclp] = ACTIONS(12160), + [anon_sym_BSLASHacf] = ACTIONS(12160), + [anon_sym_BSLASHAcf] = ACTIONS(12160), + [anon_sym_BSLASHacfp] = ACTIONS(12160), + [anon_sym_BSLASHAcfp] = ACTIONS(12160), + [anon_sym_BSLASHac] = ACTIONS(12160), + [anon_sym_BSLASHAc] = ACTIONS(12160), + [anon_sym_BSLASHacp] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12160), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12160), + [anon_sym_BSLASHcolor] = ACTIONS(12160), + [anon_sym_BSLASHcolorbox] = ACTIONS(12160), + [anon_sym_BSLASHtextcolor] = ACTIONS(12160), + [anon_sym_BSLASHpagecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12160), + }, + [1080] = { + [sym_generic_command_name] = ACTIONS(12173), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12173), + [aux_sym_section_token1] = ACTIONS(12173), + [aux_sym_subsection_token1] = ACTIONS(12173), + [aux_sym_subsubsection_token1] = ACTIONS(12173), + [aux_sym_paragraph_token1] = ACTIONS(12173), + [aux_sym_subparagraph_token1] = ACTIONS(12173), + [anon_sym_BSLASHitem] = ACTIONS(12173), + [anon_sym_LBRACK] = ACTIONS(12171), + [anon_sym_RBRACK] = ACTIONS(12171), + [anon_sym_LBRACE] = ACTIONS(12171), + [anon_sym_RBRACE] = ACTIONS(12171), + [anon_sym_LPAREN] = ACTIONS(12171), + [anon_sym_COMMA] = ACTIONS(12171), + [anon_sym_EQ] = ACTIONS(12171), + [sym_word] = ACTIONS(12171), + [sym_param] = ACTIONS(12171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12171), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12171), + [anon_sym_DOLLAR] = ACTIONS(12173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12171), + [anon_sym_BSLASHbegin] = ACTIONS(12173), + [anon_sym_BSLASHcaption] = ACTIONS(12173), + [anon_sym_BSLASHcite] = ACTIONS(12173), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCite] = ACTIONS(12173), + [anon_sym_BSLASHnocite] = ACTIONS(12173), + [anon_sym_BSLASHcitet] = ACTIONS(12173), + [anon_sym_BSLASHcitep] = ACTIONS(12173), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteauthor] = ACTIONS(12173), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12173), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitetitle] = ACTIONS(12173), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteyear] = ACTIONS(12173), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitedate] = ACTIONS(12173), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteurl] = ACTIONS(12173), + [anon_sym_BSLASHfullcite] = ACTIONS(12173), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12173), + [anon_sym_BSLASHcitealt] = ACTIONS(12173), + [anon_sym_BSLASHcitealp] = ACTIONS(12173), + [anon_sym_BSLASHcitetext] = ACTIONS(12173), + [anon_sym_BSLASHparencite] = ACTIONS(12173), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHParencite] = ACTIONS(12173), + [anon_sym_BSLASHfootcite] = ACTIONS(12173), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12173), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12173), + [anon_sym_BSLASHtextcite] = ACTIONS(12173), + [anon_sym_BSLASHTextcite] = ACTIONS(12173), + [anon_sym_BSLASHsmartcite] = ACTIONS(12173), + [anon_sym_BSLASHSmartcite] = ACTIONS(12173), + [anon_sym_BSLASHsupercite] = ACTIONS(12173), + [anon_sym_BSLASHautocite] = ACTIONS(12173), + [anon_sym_BSLASHAutocite] = ACTIONS(12173), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHvolcite] = ACTIONS(12173), + [anon_sym_BSLASHVolcite] = ACTIONS(12173), + [anon_sym_BSLASHpvolcite] = ACTIONS(12173), + [anon_sym_BSLASHPvolcite] = ACTIONS(12173), + [anon_sym_BSLASHfvolcite] = ACTIONS(12173), + [anon_sym_BSLASHftvolcite] = ACTIONS(12173), + [anon_sym_BSLASHsvolcite] = ACTIONS(12173), + [anon_sym_BSLASHSvolcite] = ACTIONS(12173), + [anon_sym_BSLASHtvolcite] = ACTIONS(12173), + [anon_sym_BSLASHTvolcite] = ACTIONS(12173), + [anon_sym_BSLASHavolcite] = ACTIONS(12173), + [anon_sym_BSLASHAvolcite] = ACTIONS(12173), + [anon_sym_BSLASHnotecite] = ACTIONS(12173), + [anon_sym_BSLASHpnotecite] = ACTIONS(12173), + [anon_sym_BSLASHPnotecite] = ACTIONS(12173), + [anon_sym_BSLASHfnotecite] = ACTIONS(12173), + [anon_sym_BSLASHusepackage] = ACTIONS(12173), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12173), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12173), + [anon_sym_BSLASHinclude] = ACTIONS(12173), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12173), + [anon_sym_BSLASHinput] = ACTIONS(12173), + [anon_sym_BSLASHsubfile] = ACTIONS(12173), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12173), + [anon_sym_BSLASHbibliography] = ACTIONS(12173), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12173), + [anon_sym_BSLASHincludesvg] = ACTIONS(12173), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12173), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12173), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12173), + [anon_sym_BSLASHimport] = ACTIONS(12173), + [anon_sym_BSLASHsubimport] = ACTIONS(12173), + [anon_sym_BSLASHinputfrom] = ACTIONS(12173), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12173), + [anon_sym_BSLASHincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHlabel] = ACTIONS(12173), + [anon_sym_BSLASHref] = ACTIONS(12173), + [anon_sym_BSLASHvref] = ACTIONS(12173), + [anon_sym_BSLASHVref] = ACTIONS(12173), + [anon_sym_BSLASHautoref] = ACTIONS(12173), + [anon_sym_BSLASHpageref] = ACTIONS(12173), + [anon_sym_BSLASHcref] = ACTIONS(12173), + [anon_sym_BSLASHCref] = ACTIONS(12173), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnameCref] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHlabelcref] = ACTIONS(12173), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12173), + [anon_sym_BSLASHeqref] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange] = ACTIONS(12173), + [anon_sym_BSLASHCrefrange] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewlabel] = ACTIONS(12173), + [anon_sym_BSLASHnewcommand] = ACTIONS(12173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12173), + [anon_sym_BSLASHgls] = ACTIONS(12173), + [anon_sym_BSLASHGls] = ACTIONS(12173), + [anon_sym_BSLASHGLS] = ACTIONS(12173), + [anon_sym_BSLASHglspl] = ACTIONS(12173), + [anon_sym_BSLASHGlspl] = ACTIONS(12173), + [anon_sym_BSLASHGLSpl] = ACTIONS(12173), + [anon_sym_BSLASHglsdisp] = ACTIONS(12173), + [anon_sym_BSLASHglslink] = ACTIONS(12173), + [anon_sym_BSLASHglstext] = ACTIONS(12173), + [anon_sym_BSLASHGlstext] = ACTIONS(12173), + [anon_sym_BSLASHGLStext] = ACTIONS(12173), + [anon_sym_BSLASHglsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12173), + [anon_sym_BSLASHglsplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSplural] = ACTIONS(12173), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHglsname] = ACTIONS(12173), + [anon_sym_BSLASHGlsname] = ACTIONS(12173), + [anon_sym_BSLASHGLSname] = ACTIONS(12173), + [anon_sym_BSLASHglssymbol] = ACTIONS(12173), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12173), + [anon_sym_BSLASHglsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12173), + [anon_sym_BSLASHglsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12173), + [anon_sym_BSLASHglsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12173), + [anon_sym_BSLASHglsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12173), + [anon_sym_BSLASHglsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12173), + [anon_sym_BSLASHnewacronym] = ACTIONS(12173), + [anon_sym_BSLASHacrshort] = ACTIONS(12173), + [anon_sym_BSLASHAcrshort] = ACTIONS(12173), + [anon_sym_BSLASHACRshort] = ACTIONS(12173), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12173), + [anon_sym_BSLASHacrlong] = ACTIONS(12173), + [anon_sym_BSLASHAcrlong] = ACTIONS(12173), + [anon_sym_BSLASHACRlong] = ACTIONS(12173), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12173), + [anon_sym_BSLASHacrfull] = ACTIONS(12173), + [anon_sym_BSLASHAcrfull] = ACTIONS(12173), + [anon_sym_BSLASHACRfull] = ACTIONS(12173), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12173), + [anon_sym_BSLASHacs] = ACTIONS(12173), + [anon_sym_BSLASHAcs] = ACTIONS(12173), + [anon_sym_BSLASHacsp] = ACTIONS(12173), + [anon_sym_BSLASHAcsp] = ACTIONS(12173), + [anon_sym_BSLASHacl] = ACTIONS(12173), + [anon_sym_BSLASHAcl] = ACTIONS(12173), + [anon_sym_BSLASHaclp] = ACTIONS(12173), + [anon_sym_BSLASHAclp] = ACTIONS(12173), + [anon_sym_BSLASHacf] = ACTIONS(12173), + [anon_sym_BSLASHAcf] = ACTIONS(12173), + [anon_sym_BSLASHacfp] = ACTIONS(12173), + [anon_sym_BSLASHAcfp] = ACTIONS(12173), + [anon_sym_BSLASHac] = ACTIONS(12173), + [anon_sym_BSLASHAc] = ACTIONS(12173), + [anon_sym_BSLASHacp] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12173), + [anon_sym_BSLASHcolor] = ACTIONS(12173), + [anon_sym_BSLASHcolorbox] = ACTIONS(12173), + [anon_sym_BSLASHtextcolor] = ACTIONS(12173), + [anon_sym_BSLASHpagecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12173), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12173), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12173), + }, + [1081] = { + [sym_generic_command_name] = ACTIONS(12177), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12177), + [aux_sym_section_token1] = ACTIONS(12177), + [aux_sym_subsection_token1] = ACTIONS(12177), + [aux_sym_subsubsection_token1] = ACTIONS(12177), + [aux_sym_paragraph_token1] = ACTIONS(12177), + [aux_sym_subparagraph_token1] = ACTIONS(12177), + [anon_sym_BSLASHitem] = ACTIONS(12177), + [anon_sym_LBRACK] = ACTIONS(12175), + [anon_sym_RBRACK] = ACTIONS(12175), + [anon_sym_LBRACE] = ACTIONS(12175), + [anon_sym_RBRACE] = ACTIONS(12175), + [anon_sym_LPAREN] = ACTIONS(12175), + [anon_sym_COMMA] = ACTIONS(12175), + [anon_sym_EQ] = ACTIONS(12175), + [sym_word] = ACTIONS(12175), + [sym_param] = ACTIONS(12175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12175), + [anon_sym_DOLLAR] = ACTIONS(12177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12175), + [anon_sym_BSLASHbegin] = ACTIONS(12177), + [anon_sym_BSLASHcaption] = ACTIONS(12177), + [anon_sym_BSLASHcite] = ACTIONS(12177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCite] = ACTIONS(12177), + [anon_sym_BSLASHnocite] = ACTIONS(12177), + [anon_sym_BSLASHcitet] = ACTIONS(12177), + [anon_sym_BSLASHcitep] = ACTIONS(12177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteauthor] = ACTIONS(12177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitetitle] = ACTIONS(12177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteyear] = ACTIONS(12177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitedate] = ACTIONS(12177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteurl] = ACTIONS(12177), + [anon_sym_BSLASHfullcite] = ACTIONS(12177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12177), + [anon_sym_BSLASHcitealt] = ACTIONS(12177), + [anon_sym_BSLASHcitealp] = ACTIONS(12177), + [anon_sym_BSLASHcitetext] = ACTIONS(12177), + [anon_sym_BSLASHparencite] = ACTIONS(12177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHParencite] = ACTIONS(12177), + [anon_sym_BSLASHfootcite] = ACTIONS(12177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12177), + [anon_sym_BSLASHtextcite] = ACTIONS(12177), + [anon_sym_BSLASHTextcite] = ACTIONS(12177), + [anon_sym_BSLASHsmartcite] = ACTIONS(12177), + [anon_sym_BSLASHSmartcite] = ACTIONS(12177), + [anon_sym_BSLASHsupercite] = ACTIONS(12177), + [anon_sym_BSLASHautocite] = ACTIONS(12177), + [anon_sym_BSLASHAutocite] = ACTIONS(12177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHvolcite] = ACTIONS(12177), + [anon_sym_BSLASHVolcite] = ACTIONS(12177), + [anon_sym_BSLASHpvolcite] = ACTIONS(12177), + [anon_sym_BSLASHPvolcite] = ACTIONS(12177), + [anon_sym_BSLASHfvolcite] = ACTIONS(12177), + [anon_sym_BSLASHftvolcite] = ACTIONS(12177), + [anon_sym_BSLASHsvolcite] = ACTIONS(12177), + [anon_sym_BSLASHSvolcite] = ACTIONS(12177), + [anon_sym_BSLASHtvolcite] = ACTIONS(12177), + [anon_sym_BSLASHTvolcite] = ACTIONS(12177), + [anon_sym_BSLASHavolcite] = ACTIONS(12177), + [anon_sym_BSLASHAvolcite] = ACTIONS(12177), + [anon_sym_BSLASHnotecite] = ACTIONS(12177), + [anon_sym_BSLASHpnotecite] = ACTIONS(12177), + [anon_sym_BSLASHPnotecite] = ACTIONS(12177), + [anon_sym_BSLASHfnotecite] = ACTIONS(12177), + [anon_sym_BSLASHusepackage] = ACTIONS(12177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12177), + [anon_sym_BSLASHinclude] = ACTIONS(12177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12177), + [anon_sym_BSLASHinput] = ACTIONS(12177), + [anon_sym_BSLASHsubfile] = ACTIONS(12177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12177), + [anon_sym_BSLASHbibliography] = ACTIONS(12177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12177), + [anon_sym_BSLASHincludesvg] = ACTIONS(12177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12177), + [anon_sym_BSLASHimport] = ACTIONS(12177), + [anon_sym_BSLASHsubimport] = ACTIONS(12177), + [anon_sym_BSLASHinputfrom] = ACTIONS(12177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12177), + [anon_sym_BSLASHincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHlabel] = ACTIONS(12177), + [anon_sym_BSLASHref] = ACTIONS(12177), + [anon_sym_BSLASHvref] = ACTIONS(12177), + [anon_sym_BSLASHVref] = ACTIONS(12177), + [anon_sym_BSLASHautoref] = ACTIONS(12177), + [anon_sym_BSLASHpageref] = ACTIONS(12177), + [anon_sym_BSLASHcref] = ACTIONS(12177), + [anon_sym_BSLASHCref] = ACTIONS(12177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnameCref] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHlabelcref] = ACTIONS(12177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12177), + [anon_sym_BSLASHeqref] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange] = ACTIONS(12177), + [anon_sym_BSLASHCrefrange] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewlabel] = ACTIONS(12177), + [anon_sym_BSLASHnewcommand] = ACTIONS(12177), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12177), + [anon_sym_BSLASHgls] = ACTIONS(12177), + [anon_sym_BSLASHGls] = ACTIONS(12177), + [anon_sym_BSLASHGLS] = ACTIONS(12177), + [anon_sym_BSLASHglspl] = ACTIONS(12177), + [anon_sym_BSLASHGlspl] = ACTIONS(12177), + [anon_sym_BSLASHGLSpl] = ACTIONS(12177), + [anon_sym_BSLASHglsdisp] = ACTIONS(12177), + [anon_sym_BSLASHglslink] = ACTIONS(12177), + [anon_sym_BSLASHglstext] = ACTIONS(12177), + [anon_sym_BSLASHGlstext] = ACTIONS(12177), + [anon_sym_BSLASHGLStext] = ACTIONS(12177), + [anon_sym_BSLASHglsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12177), + [anon_sym_BSLASHglsplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSplural] = ACTIONS(12177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHglsname] = ACTIONS(12177), + [anon_sym_BSLASHGlsname] = ACTIONS(12177), + [anon_sym_BSLASHGLSname] = ACTIONS(12177), + [anon_sym_BSLASHglssymbol] = ACTIONS(12177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12177), + [anon_sym_BSLASHglsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12177), + [anon_sym_BSLASHglsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12177), + [anon_sym_BSLASHglsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12177), + [anon_sym_BSLASHglsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12177), + [anon_sym_BSLASHglsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12177), + [anon_sym_BSLASHnewacronym] = ACTIONS(12177), + [anon_sym_BSLASHacrshort] = ACTIONS(12177), + [anon_sym_BSLASHAcrshort] = ACTIONS(12177), + [anon_sym_BSLASHACRshort] = ACTIONS(12177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12177), + [anon_sym_BSLASHacrlong] = ACTIONS(12177), + [anon_sym_BSLASHAcrlong] = ACTIONS(12177), + [anon_sym_BSLASHACRlong] = ACTIONS(12177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12177), + [anon_sym_BSLASHacrfull] = ACTIONS(12177), + [anon_sym_BSLASHAcrfull] = ACTIONS(12177), + [anon_sym_BSLASHACRfull] = ACTIONS(12177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12177), + [anon_sym_BSLASHacs] = ACTIONS(12177), + [anon_sym_BSLASHAcs] = ACTIONS(12177), + [anon_sym_BSLASHacsp] = ACTIONS(12177), + [anon_sym_BSLASHAcsp] = ACTIONS(12177), + [anon_sym_BSLASHacl] = ACTIONS(12177), + [anon_sym_BSLASHAcl] = ACTIONS(12177), + [anon_sym_BSLASHaclp] = ACTIONS(12177), + [anon_sym_BSLASHAclp] = ACTIONS(12177), + [anon_sym_BSLASHacf] = ACTIONS(12177), + [anon_sym_BSLASHAcf] = ACTIONS(12177), + [anon_sym_BSLASHacfp] = ACTIONS(12177), + [anon_sym_BSLASHAcfp] = ACTIONS(12177), + [anon_sym_BSLASHac] = ACTIONS(12177), + [anon_sym_BSLASHAc] = ACTIONS(12177), + [anon_sym_BSLASHacp] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12177), + [anon_sym_BSLASHcolor] = ACTIONS(12177), + [anon_sym_BSLASHcolorbox] = ACTIONS(12177), + [anon_sym_BSLASHtextcolor] = ACTIONS(12177), + [anon_sym_BSLASHpagecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12177), + }, + [1082] = { + [sym_generic_command_name] = ACTIONS(12197), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12197), + [aux_sym_section_token1] = ACTIONS(12197), + [aux_sym_subsection_token1] = ACTIONS(12197), + [aux_sym_subsubsection_token1] = ACTIONS(12197), + [aux_sym_paragraph_token1] = ACTIONS(12197), + [aux_sym_subparagraph_token1] = ACTIONS(12197), + [anon_sym_BSLASHitem] = ACTIONS(12197), + [anon_sym_LBRACK] = ACTIONS(12195), + [anon_sym_RBRACK] = ACTIONS(12195), + [anon_sym_LBRACE] = ACTIONS(12195), + [anon_sym_RBRACE] = ACTIONS(12195), + [anon_sym_LPAREN] = ACTIONS(12195), + [anon_sym_COMMA] = ACTIONS(12195), + [anon_sym_EQ] = ACTIONS(12195), + [sym_word] = ACTIONS(12195), + [sym_param] = ACTIONS(12195), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12195), + [anon_sym_DOLLAR] = ACTIONS(12197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12195), + [anon_sym_BSLASHbegin] = ACTIONS(12197), + [anon_sym_BSLASHcaption] = ACTIONS(12197), + [anon_sym_BSLASHcite] = ACTIONS(12197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCite] = ACTIONS(12197), + [anon_sym_BSLASHnocite] = ACTIONS(12197), + [anon_sym_BSLASHcitet] = ACTIONS(12197), + [anon_sym_BSLASHcitep] = ACTIONS(12197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteauthor] = ACTIONS(12197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitetitle] = ACTIONS(12197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteyear] = ACTIONS(12197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitedate] = ACTIONS(12197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteurl] = ACTIONS(12197), + [anon_sym_BSLASHfullcite] = ACTIONS(12197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12197), + [anon_sym_BSLASHcitealt] = ACTIONS(12197), + [anon_sym_BSLASHcitealp] = ACTIONS(12197), + [anon_sym_BSLASHcitetext] = ACTIONS(12197), + [anon_sym_BSLASHparencite] = ACTIONS(12197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHParencite] = ACTIONS(12197), + [anon_sym_BSLASHfootcite] = ACTIONS(12197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12197), + [anon_sym_BSLASHtextcite] = ACTIONS(12197), + [anon_sym_BSLASHTextcite] = ACTIONS(12197), + [anon_sym_BSLASHsmartcite] = ACTIONS(12197), + [anon_sym_BSLASHSmartcite] = ACTIONS(12197), + [anon_sym_BSLASHsupercite] = ACTIONS(12197), + [anon_sym_BSLASHautocite] = ACTIONS(12197), + [anon_sym_BSLASHAutocite] = ACTIONS(12197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHvolcite] = ACTIONS(12197), + [anon_sym_BSLASHVolcite] = ACTIONS(12197), + [anon_sym_BSLASHpvolcite] = ACTIONS(12197), + [anon_sym_BSLASHPvolcite] = ACTIONS(12197), + [anon_sym_BSLASHfvolcite] = ACTIONS(12197), + [anon_sym_BSLASHftvolcite] = ACTIONS(12197), + [anon_sym_BSLASHsvolcite] = ACTIONS(12197), + [anon_sym_BSLASHSvolcite] = ACTIONS(12197), + [anon_sym_BSLASHtvolcite] = ACTIONS(12197), + [anon_sym_BSLASHTvolcite] = ACTIONS(12197), + [anon_sym_BSLASHavolcite] = ACTIONS(12197), + [anon_sym_BSLASHAvolcite] = ACTIONS(12197), + [anon_sym_BSLASHnotecite] = ACTIONS(12197), + [anon_sym_BSLASHpnotecite] = ACTIONS(12197), + [anon_sym_BSLASHPnotecite] = ACTIONS(12197), + [anon_sym_BSLASHfnotecite] = ACTIONS(12197), + [anon_sym_BSLASHusepackage] = ACTIONS(12197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12197), + [anon_sym_BSLASHinclude] = ACTIONS(12197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12197), + [anon_sym_BSLASHinput] = ACTIONS(12197), + [anon_sym_BSLASHsubfile] = ACTIONS(12197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12197), + [anon_sym_BSLASHbibliography] = ACTIONS(12197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12197), + [anon_sym_BSLASHincludesvg] = ACTIONS(12197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12197), + [anon_sym_BSLASHimport] = ACTIONS(12197), + [anon_sym_BSLASHsubimport] = ACTIONS(12197), + [anon_sym_BSLASHinputfrom] = ACTIONS(12197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12197), + [anon_sym_BSLASHincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHlabel] = ACTIONS(12197), + [anon_sym_BSLASHref] = ACTIONS(12197), + [anon_sym_BSLASHvref] = ACTIONS(12197), + [anon_sym_BSLASHVref] = ACTIONS(12197), + [anon_sym_BSLASHautoref] = ACTIONS(12197), + [anon_sym_BSLASHpageref] = ACTIONS(12197), + [anon_sym_BSLASHcref] = ACTIONS(12197), + [anon_sym_BSLASHCref] = ACTIONS(12197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnameCref] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHlabelcref] = ACTIONS(12197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12197), + [anon_sym_BSLASHeqref] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange] = ACTIONS(12197), + [anon_sym_BSLASHCrefrange] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewlabel] = ACTIONS(12197), + [anon_sym_BSLASHnewcommand] = ACTIONS(12197), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12197), + [anon_sym_BSLASHgls] = ACTIONS(12197), + [anon_sym_BSLASHGls] = ACTIONS(12197), + [anon_sym_BSLASHGLS] = ACTIONS(12197), + [anon_sym_BSLASHglspl] = ACTIONS(12197), + [anon_sym_BSLASHGlspl] = ACTIONS(12197), + [anon_sym_BSLASHGLSpl] = ACTIONS(12197), + [anon_sym_BSLASHglsdisp] = ACTIONS(12197), + [anon_sym_BSLASHglslink] = ACTIONS(12197), + [anon_sym_BSLASHglstext] = ACTIONS(12197), + [anon_sym_BSLASHGlstext] = ACTIONS(12197), + [anon_sym_BSLASHGLStext] = ACTIONS(12197), + [anon_sym_BSLASHglsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12197), + [anon_sym_BSLASHglsplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSplural] = ACTIONS(12197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHglsname] = ACTIONS(12197), + [anon_sym_BSLASHGlsname] = ACTIONS(12197), + [anon_sym_BSLASHGLSname] = ACTIONS(12197), + [anon_sym_BSLASHglssymbol] = ACTIONS(12197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12197), + [anon_sym_BSLASHglsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12197), + [anon_sym_BSLASHglsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12197), + [anon_sym_BSLASHglsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12197), + [anon_sym_BSLASHglsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12197), + [anon_sym_BSLASHglsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12197), + [anon_sym_BSLASHnewacronym] = ACTIONS(12197), + [anon_sym_BSLASHacrshort] = ACTIONS(12197), + [anon_sym_BSLASHAcrshort] = ACTIONS(12197), + [anon_sym_BSLASHACRshort] = ACTIONS(12197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12197), + [anon_sym_BSLASHacrlong] = ACTIONS(12197), + [anon_sym_BSLASHAcrlong] = ACTIONS(12197), + [anon_sym_BSLASHACRlong] = ACTIONS(12197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12197), + [anon_sym_BSLASHacrfull] = ACTIONS(12197), + [anon_sym_BSLASHAcrfull] = ACTIONS(12197), + [anon_sym_BSLASHACRfull] = ACTIONS(12197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12197), + [anon_sym_BSLASHacs] = ACTIONS(12197), + [anon_sym_BSLASHAcs] = ACTIONS(12197), + [anon_sym_BSLASHacsp] = ACTIONS(12197), + [anon_sym_BSLASHAcsp] = ACTIONS(12197), + [anon_sym_BSLASHacl] = ACTIONS(12197), + [anon_sym_BSLASHAcl] = ACTIONS(12197), + [anon_sym_BSLASHaclp] = ACTIONS(12197), + [anon_sym_BSLASHAclp] = ACTIONS(12197), + [anon_sym_BSLASHacf] = ACTIONS(12197), + [anon_sym_BSLASHAcf] = ACTIONS(12197), + [anon_sym_BSLASHacfp] = ACTIONS(12197), + [anon_sym_BSLASHAcfp] = ACTIONS(12197), + [anon_sym_BSLASHac] = ACTIONS(12197), + [anon_sym_BSLASHAc] = ACTIONS(12197), + [anon_sym_BSLASHacp] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12197), + [anon_sym_BSLASHcolor] = ACTIONS(12197), + [anon_sym_BSLASHcolorbox] = ACTIONS(12197), + [anon_sym_BSLASHtextcolor] = ACTIONS(12197), + [anon_sym_BSLASHpagecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12197), + }, + [1083] = { + [sym_generic_command_name] = ACTIONS(12209), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12209), + [aux_sym_section_token1] = ACTIONS(12209), + [aux_sym_subsection_token1] = ACTIONS(12209), + [aux_sym_subsubsection_token1] = ACTIONS(12209), + [aux_sym_paragraph_token1] = ACTIONS(12209), + [aux_sym_subparagraph_token1] = ACTIONS(12209), + [anon_sym_BSLASHitem] = ACTIONS(12209), + [anon_sym_LBRACK] = ACTIONS(12207), + [anon_sym_RBRACK] = ACTIONS(12207), + [anon_sym_LBRACE] = ACTIONS(12207), + [anon_sym_RBRACE] = ACTIONS(12207), + [anon_sym_LPAREN] = ACTIONS(12207), + [anon_sym_COMMA] = ACTIONS(12207), + [anon_sym_EQ] = ACTIONS(12207), + [sym_word] = ACTIONS(12207), + [sym_param] = ACTIONS(12207), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12207), + [anon_sym_DOLLAR] = ACTIONS(12209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12207), + [anon_sym_BSLASHbegin] = ACTIONS(12209), + [anon_sym_BSLASHcaption] = ACTIONS(12209), + [anon_sym_BSLASHcite] = ACTIONS(12209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCite] = ACTIONS(12209), + [anon_sym_BSLASHnocite] = ACTIONS(12209), + [anon_sym_BSLASHcitet] = ACTIONS(12209), + [anon_sym_BSLASHcitep] = ACTIONS(12209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteauthor] = ACTIONS(12209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitetitle] = ACTIONS(12209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteyear] = ACTIONS(12209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitedate] = ACTIONS(12209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteurl] = ACTIONS(12209), + [anon_sym_BSLASHfullcite] = ACTIONS(12209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12209), + [anon_sym_BSLASHcitealt] = ACTIONS(12209), + [anon_sym_BSLASHcitealp] = ACTIONS(12209), + [anon_sym_BSLASHcitetext] = ACTIONS(12209), + [anon_sym_BSLASHparencite] = ACTIONS(12209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHParencite] = ACTIONS(12209), + [anon_sym_BSLASHfootcite] = ACTIONS(12209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12209), + [anon_sym_BSLASHtextcite] = ACTIONS(12209), + [anon_sym_BSLASHTextcite] = ACTIONS(12209), + [anon_sym_BSLASHsmartcite] = ACTIONS(12209), + [anon_sym_BSLASHSmartcite] = ACTIONS(12209), + [anon_sym_BSLASHsupercite] = ACTIONS(12209), + [anon_sym_BSLASHautocite] = ACTIONS(12209), + [anon_sym_BSLASHAutocite] = ACTIONS(12209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHvolcite] = ACTIONS(12209), + [anon_sym_BSLASHVolcite] = ACTIONS(12209), + [anon_sym_BSLASHpvolcite] = ACTIONS(12209), + [anon_sym_BSLASHPvolcite] = ACTIONS(12209), + [anon_sym_BSLASHfvolcite] = ACTIONS(12209), + [anon_sym_BSLASHftvolcite] = ACTIONS(12209), + [anon_sym_BSLASHsvolcite] = ACTIONS(12209), + [anon_sym_BSLASHSvolcite] = ACTIONS(12209), + [anon_sym_BSLASHtvolcite] = ACTIONS(12209), + [anon_sym_BSLASHTvolcite] = ACTIONS(12209), + [anon_sym_BSLASHavolcite] = ACTIONS(12209), + [anon_sym_BSLASHAvolcite] = ACTIONS(12209), + [anon_sym_BSLASHnotecite] = ACTIONS(12209), + [anon_sym_BSLASHpnotecite] = ACTIONS(12209), + [anon_sym_BSLASHPnotecite] = ACTIONS(12209), + [anon_sym_BSLASHfnotecite] = ACTIONS(12209), + [anon_sym_BSLASHusepackage] = ACTIONS(12209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12209), + [anon_sym_BSLASHinclude] = ACTIONS(12209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12209), + [anon_sym_BSLASHinput] = ACTIONS(12209), + [anon_sym_BSLASHsubfile] = ACTIONS(12209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12209), + [anon_sym_BSLASHbibliography] = ACTIONS(12209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12209), + [anon_sym_BSLASHincludesvg] = ACTIONS(12209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12209), + [anon_sym_BSLASHimport] = ACTIONS(12209), + [anon_sym_BSLASHsubimport] = ACTIONS(12209), + [anon_sym_BSLASHinputfrom] = ACTIONS(12209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12209), + [anon_sym_BSLASHincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHlabel] = ACTIONS(12209), + [anon_sym_BSLASHref] = ACTIONS(12209), + [anon_sym_BSLASHvref] = ACTIONS(12209), + [anon_sym_BSLASHVref] = ACTIONS(12209), + [anon_sym_BSLASHautoref] = ACTIONS(12209), + [anon_sym_BSLASHpageref] = ACTIONS(12209), + [anon_sym_BSLASHcref] = ACTIONS(12209), + [anon_sym_BSLASHCref] = ACTIONS(12209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnameCref] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHlabelcref] = ACTIONS(12209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12209), + [anon_sym_BSLASHeqref] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange] = ACTIONS(12209), + [anon_sym_BSLASHCrefrange] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewlabel] = ACTIONS(12209), + [anon_sym_BSLASHnewcommand] = ACTIONS(12209), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12209), + [anon_sym_BSLASHgls] = ACTIONS(12209), + [anon_sym_BSLASHGls] = ACTIONS(12209), + [anon_sym_BSLASHGLS] = ACTIONS(12209), + [anon_sym_BSLASHglspl] = ACTIONS(12209), + [anon_sym_BSLASHGlspl] = ACTIONS(12209), + [anon_sym_BSLASHGLSpl] = ACTIONS(12209), + [anon_sym_BSLASHglsdisp] = ACTIONS(12209), + [anon_sym_BSLASHglslink] = ACTIONS(12209), + [anon_sym_BSLASHglstext] = ACTIONS(12209), + [anon_sym_BSLASHGlstext] = ACTIONS(12209), + [anon_sym_BSLASHGLStext] = ACTIONS(12209), + [anon_sym_BSLASHglsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12209), + [anon_sym_BSLASHglsplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSplural] = ACTIONS(12209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHglsname] = ACTIONS(12209), + [anon_sym_BSLASHGlsname] = ACTIONS(12209), + [anon_sym_BSLASHGLSname] = ACTIONS(12209), + [anon_sym_BSLASHglssymbol] = ACTIONS(12209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12209), + [anon_sym_BSLASHglsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12209), + [anon_sym_BSLASHglsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12209), + [anon_sym_BSLASHglsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12209), + [anon_sym_BSLASHglsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12209), + [anon_sym_BSLASHglsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12209), + [anon_sym_BSLASHnewacronym] = ACTIONS(12209), + [anon_sym_BSLASHacrshort] = ACTIONS(12209), + [anon_sym_BSLASHAcrshort] = ACTIONS(12209), + [anon_sym_BSLASHACRshort] = ACTIONS(12209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12209), + [anon_sym_BSLASHacrlong] = ACTIONS(12209), + [anon_sym_BSLASHAcrlong] = ACTIONS(12209), + [anon_sym_BSLASHACRlong] = ACTIONS(12209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12209), + [anon_sym_BSLASHacrfull] = ACTIONS(12209), + [anon_sym_BSLASHAcrfull] = ACTIONS(12209), + [anon_sym_BSLASHACRfull] = ACTIONS(12209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12209), + [anon_sym_BSLASHacs] = ACTIONS(12209), + [anon_sym_BSLASHAcs] = ACTIONS(12209), + [anon_sym_BSLASHacsp] = ACTIONS(12209), + [anon_sym_BSLASHAcsp] = ACTIONS(12209), + [anon_sym_BSLASHacl] = ACTIONS(12209), + [anon_sym_BSLASHAcl] = ACTIONS(12209), + [anon_sym_BSLASHaclp] = ACTIONS(12209), + [anon_sym_BSLASHAclp] = ACTIONS(12209), + [anon_sym_BSLASHacf] = ACTIONS(12209), + [anon_sym_BSLASHAcf] = ACTIONS(12209), + [anon_sym_BSLASHacfp] = ACTIONS(12209), + [anon_sym_BSLASHAcfp] = ACTIONS(12209), + [anon_sym_BSLASHac] = ACTIONS(12209), + [anon_sym_BSLASHAc] = ACTIONS(12209), + [anon_sym_BSLASHacp] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12209), + [anon_sym_BSLASHcolor] = ACTIONS(12209), + [anon_sym_BSLASHcolorbox] = ACTIONS(12209), + [anon_sym_BSLASHtextcolor] = ACTIONS(12209), + [anon_sym_BSLASHpagecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12209), + }, + [1084] = { + [sym_generic_command_name] = ACTIONS(12275), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12275), + [aux_sym_section_token1] = ACTIONS(12275), + [aux_sym_subsection_token1] = ACTIONS(12275), + [aux_sym_subsubsection_token1] = ACTIONS(12275), + [aux_sym_paragraph_token1] = ACTIONS(12275), + [aux_sym_subparagraph_token1] = ACTIONS(12275), + [anon_sym_BSLASHitem] = ACTIONS(12275), + [anon_sym_LBRACK] = ACTIONS(12273), + [anon_sym_RBRACK] = ACTIONS(12273), + [anon_sym_LBRACE] = ACTIONS(12273), + [anon_sym_RBRACE] = ACTIONS(12273), + [anon_sym_LPAREN] = ACTIONS(12273), + [anon_sym_COMMA] = ACTIONS(12273), + [anon_sym_EQ] = ACTIONS(12273), + [sym_word] = ACTIONS(12273), + [sym_param] = ACTIONS(12273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12273), + [anon_sym_DOLLAR] = ACTIONS(12275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12273), + [anon_sym_BSLASHbegin] = ACTIONS(12275), + [anon_sym_BSLASHcaption] = ACTIONS(12275), + [anon_sym_BSLASHcite] = ACTIONS(12275), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCite] = ACTIONS(12275), + [anon_sym_BSLASHnocite] = ACTIONS(12275), + [anon_sym_BSLASHcitet] = ACTIONS(12275), + [anon_sym_BSLASHcitep] = ACTIONS(12275), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteauthor] = ACTIONS(12275), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12275), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitetitle] = ACTIONS(12275), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteyear] = ACTIONS(12275), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitedate] = ACTIONS(12275), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteurl] = ACTIONS(12275), + [anon_sym_BSLASHfullcite] = ACTIONS(12275), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12275), + [anon_sym_BSLASHcitealt] = ACTIONS(12275), + [anon_sym_BSLASHcitealp] = ACTIONS(12275), + [anon_sym_BSLASHcitetext] = ACTIONS(12275), + [anon_sym_BSLASHparencite] = ACTIONS(12275), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHParencite] = ACTIONS(12275), + [anon_sym_BSLASHfootcite] = ACTIONS(12275), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12275), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12275), + [anon_sym_BSLASHtextcite] = ACTIONS(12275), + [anon_sym_BSLASHTextcite] = ACTIONS(12275), + [anon_sym_BSLASHsmartcite] = ACTIONS(12275), + [anon_sym_BSLASHSmartcite] = ACTIONS(12275), + [anon_sym_BSLASHsupercite] = ACTIONS(12275), + [anon_sym_BSLASHautocite] = ACTIONS(12275), + [anon_sym_BSLASHAutocite] = ACTIONS(12275), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHvolcite] = ACTIONS(12275), + [anon_sym_BSLASHVolcite] = ACTIONS(12275), + [anon_sym_BSLASHpvolcite] = ACTIONS(12275), + [anon_sym_BSLASHPvolcite] = ACTIONS(12275), + [anon_sym_BSLASHfvolcite] = ACTIONS(12275), + [anon_sym_BSLASHftvolcite] = ACTIONS(12275), + [anon_sym_BSLASHsvolcite] = ACTIONS(12275), + [anon_sym_BSLASHSvolcite] = ACTIONS(12275), + [anon_sym_BSLASHtvolcite] = ACTIONS(12275), + [anon_sym_BSLASHTvolcite] = ACTIONS(12275), + [anon_sym_BSLASHavolcite] = ACTIONS(12275), + [anon_sym_BSLASHAvolcite] = ACTIONS(12275), + [anon_sym_BSLASHnotecite] = ACTIONS(12275), + [anon_sym_BSLASHpnotecite] = ACTIONS(12275), + [anon_sym_BSLASHPnotecite] = ACTIONS(12275), + [anon_sym_BSLASHfnotecite] = ACTIONS(12275), + [anon_sym_BSLASHusepackage] = ACTIONS(12275), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12275), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12275), + [anon_sym_BSLASHinclude] = ACTIONS(12275), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12275), + [anon_sym_BSLASHinput] = ACTIONS(12275), + [anon_sym_BSLASHsubfile] = ACTIONS(12275), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12275), + [anon_sym_BSLASHbibliography] = ACTIONS(12275), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12275), + [anon_sym_BSLASHincludesvg] = ACTIONS(12275), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12275), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12275), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12275), + [anon_sym_BSLASHimport] = ACTIONS(12275), + [anon_sym_BSLASHsubimport] = ACTIONS(12275), + [anon_sym_BSLASHinputfrom] = ACTIONS(12275), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12275), + [anon_sym_BSLASHincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHlabel] = ACTIONS(12275), + [anon_sym_BSLASHref] = ACTIONS(12275), + [anon_sym_BSLASHvref] = ACTIONS(12275), + [anon_sym_BSLASHVref] = ACTIONS(12275), + [anon_sym_BSLASHautoref] = ACTIONS(12275), + [anon_sym_BSLASHpageref] = ACTIONS(12275), + [anon_sym_BSLASHcref] = ACTIONS(12275), + [anon_sym_BSLASHCref] = ACTIONS(12275), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnameCref] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHlabelcref] = ACTIONS(12275), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12275), + [anon_sym_BSLASHeqref] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange] = ACTIONS(12275), + [anon_sym_BSLASHCrefrange] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewlabel] = ACTIONS(12275), + [anon_sym_BSLASHnewcommand] = ACTIONS(12275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12275), + [anon_sym_BSLASHgls] = ACTIONS(12275), + [anon_sym_BSLASHGls] = ACTIONS(12275), + [anon_sym_BSLASHGLS] = ACTIONS(12275), + [anon_sym_BSLASHglspl] = ACTIONS(12275), + [anon_sym_BSLASHGlspl] = ACTIONS(12275), + [anon_sym_BSLASHGLSpl] = ACTIONS(12275), + [anon_sym_BSLASHglsdisp] = ACTIONS(12275), + [anon_sym_BSLASHglslink] = ACTIONS(12275), + [anon_sym_BSLASHglstext] = ACTIONS(12275), + [anon_sym_BSLASHGlstext] = ACTIONS(12275), + [anon_sym_BSLASHGLStext] = ACTIONS(12275), + [anon_sym_BSLASHglsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12275), + [anon_sym_BSLASHglsplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSplural] = ACTIONS(12275), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHglsname] = ACTIONS(12275), + [anon_sym_BSLASHGlsname] = ACTIONS(12275), + [anon_sym_BSLASHGLSname] = ACTIONS(12275), + [anon_sym_BSLASHglssymbol] = ACTIONS(12275), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12275), + [anon_sym_BSLASHglsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12275), + [anon_sym_BSLASHglsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12275), + [anon_sym_BSLASHglsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12275), + [anon_sym_BSLASHglsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12275), + [anon_sym_BSLASHglsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12275), + [anon_sym_BSLASHnewacronym] = ACTIONS(12275), + [anon_sym_BSLASHacrshort] = ACTIONS(12275), + [anon_sym_BSLASHAcrshort] = ACTIONS(12275), + [anon_sym_BSLASHACRshort] = ACTIONS(12275), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12275), + [anon_sym_BSLASHacrlong] = ACTIONS(12275), + [anon_sym_BSLASHAcrlong] = ACTIONS(12275), + [anon_sym_BSLASHACRlong] = ACTIONS(12275), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12275), + [anon_sym_BSLASHacrfull] = ACTIONS(12275), + [anon_sym_BSLASHAcrfull] = ACTIONS(12275), + [anon_sym_BSLASHACRfull] = ACTIONS(12275), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12275), + [anon_sym_BSLASHacs] = ACTIONS(12275), + [anon_sym_BSLASHAcs] = ACTIONS(12275), + [anon_sym_BSLASHacsp] = ACTIONS(12275), + [anon_sym_BSLASHAcsp] = ACTIONS(12275), + [anon_sym_BSLASHacl] = ACTIONS(12275), + [anon_sym_BSLASHAcl] = ACTIONS(12275), + [anon_sym_BSLASHaclp] = ACTIONS(12275), + [anon_sym_BSLASHAclp] = ACTIONS(12275), + [anon_sym_BSLASHacf] = ACTIONS(12275), + [anon_sym_BSLASHAcf] = ACTIONS(12275), + [anon_sym_BSLASHacfp] = ACTIONS(12275), + [anon_sym_BSLASHAcfp] = ACTIONS(12275), + [anon_sym_BSLASHac] = ACTIONS(12275), + [anon_sym_BSLASHAc] = ACTIONS(12275), + [anon_sym_BSLASHacp] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12275), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12275), + [anon_sym_BSLASHcolor] = ACTIONS(12275), + [anon_sym_BSLASHcolorbox] = ACTIONS(12275), + [anon_sym_BSLASHtextcolor] = ACTIONS(12275), + [anon_sym_BSLASHpagecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12275), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12275), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12275), + }, + [1085] = { + [sym_generic_command_name] = ACTIONS(12283), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12283), + [aux_sym_section_token1] = ACTIONS(12283), + [aux_sym_subsection_token1] = ACTIONS(12283), + [aux_sym_subsubsection_token1] = ACTIONS(12283), + [aux_sym_paragraph_token1] = ACTIONS(12283), + [aux_sym_subparagraph_token1] = ACTIONS(12283), + [anon_sym_BSLASHitem] = ACTIONS(12283), + [anon_sym_LBRACK] = ACTIONS(12281), + [anon_sym_RBRACK] = ACTIONS(12281), + [anon_sym_LBRACE] = ACTIONS(12281), + [anon_sym_RBRACE] = ACTIONS(12281), + [anon_sym_LPAREN] = ACTIONS(12281), + [anon_sym_COMMA] = ACTIONS(12281), + [anon_sym_EQ] = ACTIONS(12281), + [sym_word] = ACTIONS(12281), + [sym_param] = ACTIONS(12281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12281), + [anon_sym_DOLLAR] = ACTIONS(12283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12281), + [anon_sym_BSLASHbegin] = ACTIONS(12283), + [anon_sym_BSLASHcaption] = ACTIONS(12283), + [anon_sym_BSLASHcite] = ACTIONS(12283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCite] = ACTIONS(12283), + [anon_sym_BSLASHnocite] = ACTIONS(12283), + [anon_sym_BSLASHcitet] = ACTIONS(12283), + [anon_sym_BSLASHcitep] = ACTIONS(12283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteauthor] = ACTIONS(12283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitetitle] = ACTIONS(12283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteyear] = ACTIONS(12283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitedate] = ACTIONS(12283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteurl] = ACTIONS(12283), + [anon_sym_BSLASHfullcite] = ACTIONS(12283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12283), + [anon_sym_BSLASHcitealt] = ACTIONS(12283), + [anon_sym_BSLASHcitealp] = ACTIONS(12283), + [anon_sym_BSLASHcitetext] = ACTIONS(12283), + [anon_sym_BSLASHparencite] = ACTIONS(12283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHParencite] = ACTIONS(12283), + [anon_sym_BSLASHfootcite] = ACTIONS(12283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12283), + [anon_sym_BSLASHtextcite] = ACTIONS(12283), + [anon_sym_BSLASHTextcite] = ACTIONS(12283), + [anon_sym_BSLASHsmartcite] = ACTIONS(12283), + [anon_sym_BSLASHSmartcite] = ACTIONS(12283), + [anon_sym_BSLASHsupercite] = ACTIONS(12283), + [anon_sym_BSLASHautocite] = ACTIONS(12283), + [anon_sym_BSLASHAutocite] = ACTIONS(12283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHvolcite] = ACTIONS(12283), + [anon_sym_BSLASHVolcite] = ACTIONS(12283), + [anon_sym_BSLASHpvolcite] = ACTIONS(12283), + [anon_sym_BSLASHPvolcite] = ACTIONS(12283), + [anon_sym_BSLASHfvolcite] = ACTIONS(12283), + [anon_sym_BSLASHftvolcite] = ACTIONS(12283), + [anon_sym_BSLASHsvolcite] = ACTIONS(12283), + [anon_sym_BSLASHSvolcite] = ACTIONS(12283), + [anon_sym_BSLASHtvolcite] = ACTIONS(12283), + [anon_sym_BSLASHTvolcite] = ACTIONS(12283), + [anon_sym_BSLASHavolcite] = ACTIONS(12283), + [anon_sym_BSLASHAvolcite] = ACTIONS(12283), + [anon_sym_BSLASHnotecite] = ACTIONS(12283), + [anon_sym_BSLASHpnotecite] = ACTIONS(12283), + [anon_sym_BSLASHPnotecite] = ACTIONS(12283), + [anon_sym_BSLASHfnotecite] = ACTIONS(12283), + [anon_sym_BSLASHusepackage] = ACTIONS(12283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12283), + [anon_sym_BSLASHinclude] = ACTIONS(12283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12283), + [anon_sym_BSLASHinput] = ACTIONS(12283), + [anon_sym_BSLASHsubfile] = ACTIONS(12283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12283), + [anon_sym_BSLASHbibliography] = ACTIONS(12283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12283), + [anon_sym_BSLASHincludesvg] = ACTIONS(12283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12283), + [anon_sym_BSLASHimport] = ACTIONS(12283), + [anon_sym_BSLASHsubimport] = ACTIONS(12283), + [anon_sym_BSLASHinputfrom] = ACTIONS(12283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12283), + [anon_sym_BSLASHincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHlabel] = ACTIONS(12283), + [anon_sym_BSLASHref] = ACTIONS(12283), + [anon_sym_BSLASHvref] = ACTIONS(12283), + [anon_sym_BSLASHVref] = ACTIONS(12283), + [anon_sym_BSLASHautoref] = ACTIONS(12283), + [anon_sym_BSLASHpageref] = ACTIONS(12283), + [anon_sym_BSLASHcref] = ACTIONS(12283), + [anon_sym_BSLASHCref] = ACTIONS(12283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnameCref] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHlabelcref] = ACTIONS(12283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12283), + [anon_sym_BSLASHeqref] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange] = ACTIONS(12283), + [anon_sym_BSLASHCrefrange] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewlabel] = ACTIONS(12283), + [anon_sym_BSLASHnewcommand] = ACTIONS(12283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12283), + [anon_sym_BSLASHgls] = ACTIONS(12283), + [anon_sym_BSLASHGls] = ACTIONS(12283), + [anon_sym_BSLASHGLS] = ACTIONS(12283), + [anon_sym_BSLASHglspl] = ACTIONS(12283), + [anon_sym_BSLASHGlspl] = ACTIONS(12283), + [anon_sym_BSLASHGLSpl] = ACTIONS(12283), + [anon_sym_BSLASHglsdisp] = ACTIONS(12283), + [anon_sym_BSLASHglslink] = ACTIONS(12283), + [anon_sym_BSLASHglstext] = ACTIONS(12283), + [anon_sym_BSLASHGlstext] = ACTIONS(12283), + [anon_sym_BSLASHGLStext] = ACTIONS(12283), + [anon_sym_BSLASHglsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12283), + [anon_sym_BSLASHglsplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSplural] = ACTIONS(12283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHglsname] = ACTIONS(12283), + [anon_sym_BSLASHGlsname] = ACTIONS(12283), + [anon_sym_BSLASHGLSname] = ACTIONS(12283), + [anon_sym_BSLASHglssymbol] = ACTIONS(12283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12283), + [anon_sym_BSLASHglsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12283), + [anon_sym_BSLASHglsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12283), + [anon_sym_BSLASHglsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12283), + [anon_sym_BSLASHglsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12283), + [anon_sym_BSLASHglsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12283), + [anon_sym_BSLASHnewacronym] = ACTIONS(12283), + [anon_sym_BSLASHacrshort] = ACTIONS(12283), + [anon_sym_BSLASHAcrshort] = ACTIONS(12283), + [anon_sym_BSLASHACRshort] = ACTIONS(12283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12283), + [anon_sym_BSLASHacrlong] = ACTIONS(12283), + [anon_sym_BSLASHAcrlong] = ACTIONS(12283), + [anon_sym_BSLASHACRlong] = ACTIONS(12283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12283), + [anon_sym_BSLASHacrfull] = ACTIONS(12283), + [anon_sym_BSLASHAcrfull] = ACTIONS(12283), + [anon_sym_BSLASHACRfull] = ACTIONS(12283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12283), + [anon_sym_BSLASHacs] = ACTIONS(12283), + [anon_sym_BSLASHAcs] = ACTIONS(12283), + [anon_sym_BSLASHacsp] = ACTIONS(12283), + [anon_sym_BSLASHAcsp] = ACTIONS(12283), + [anon_sym_BSLASHacl] = ACTIONS(12283), + [anon_sym_BSLASHAcl] = ACTIONS(12283), + [anon_sym_BSLASHaclp] = ACTIONS(12283), + [anon_sym_BSLASHAclp] = ACTIONS(12283), + [anon_sym_BSLASHacf] = ACTIONS(12283), + [anon_sym_BSLASHAcf] = ACTIONS(12283), + [anon_sym_BSLASHacfp] = ACTIONS(12283), + [anon_sym_BSLASHAcfp] = ACTIONS(12283), + [anon_sym_BSLASHac] = ACTIONS(12283), + [anon_sym_BSLASHAc] = ACTIONS(12283), + [anon_sym_BSLASHacp] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12283), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12283), + [anon_sym_BSLASHcolor] = ACTIONS(12283), + [anon_sym_BSLASHcolorbox] = ACTIONS(12283), + [anon_sym_BSLASHtextcolor] = ACTIONS(12283), + [anon_sym_BSLASHpagecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12283), + }, + [1086] = { + [sym_generic_command_name] = ACTIONS(12299), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12299), + [aux_sym_section_token1] = ACTIONS(12299), + [aux_sym_subsection_token1] = ACTIONS(12299), + [aux_sym_subsubsection_token1] = ACTIONS(12299), + [aux_sym_paragraph_token1] = ACTIONS(12299), + [aux_sym_subparagraph_token1] = ACTIONS(12299), + [anon_sym_BSLASHitem] = ACTIONS(12299), + [anon_sym_LBRACK] = ACTIONS(12297), + [anon_sym_RBRACK] = ACTIONS(12297), + [anon_sym_LBRACE] = ACTIONS(12297), + [anon_sym_RBRACE] = ACTIONS(12297), + [anon_sym_LPAREN] = ACTIONS(12297), + [anon_sym_COMMA] = ACTIONS(12297), + [anon_sym_EQ] = ACTIONS(12297), + [sym_word] = ACTIONS(12297), + [sym_param] = ACTIONS(12297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12297), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12297), + [anon_sym_DOLLAR] = ACTIONS(12299), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12297), + [anon_sym_BSLASHbegin] = ACTIONS(12299), + [anon_sym_BSLASHcaption] = ACTIONS(12299), + [anon_sym_BSLASHcite] = ACTIONS(12299), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCite] = ACTIONS(12299), + [anon_sym_BSLASHnocite] = ACTIONS(12299), + [anon_sym_BSLASHcitet] = ACTIONS(12299), + [anon_sym_BSLASHcitep] = ACTIONS(12299), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteauthor] = ACTIONS(12299), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12299), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitetitle] = ACTIONS(12299), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteyear] = ACTIONS(12299), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitedate] = ACTIONS(12299), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteurl] = ACTIONS(12299), + [anon_sym_BSLASHfullcite] = ACTIONS(12299), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12299), + [anon_sym_BSLASHcitealt] = ACTIONS(12299), + [anon_sym_BSLASHcitealp] = ACTIONS(12299), + [anon_sym_BSLASHcitetext] = ACTIONS(12299), + [anon_sym_BSLASHparencite] = ACTIONS(12299), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHParencite] = ACTIONS(12299), + [anon_sym_BSLASHfootcite] = ACTIONS(12299), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12299), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12299), + [anon_sym_BSLASHtextcite] = ACTIONS(12299), + [anon_sym_BSLASHTextcite] = ACTIONS(12299), + [anon_sym_BSLASHsmartcite] = ACTIONS(12299), + [anon_sym_BSLASHSmartcite] = ACTIONS(12299), + [anon_sym_BSLASHsupercite] = ACTIONS(12299), + [anon_sym_BSLASHautocite] = ACTIONS(12299), + [anon_sym_BSLASHAutocite] = ACTIONS(12299), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHvolcite] = ACTIONS(12299), + [anon_sym_BSLASHVolcite] = ACTIONS(12299), + [anon_sym_BSLASHpvolcite] = ACTIONS(12299), + [anon_sym_BSLASHPvolcite] = ACTIONS(12299), + [anon_sym_BSLASHfvolcite] = ACTIONS(12299), + [anon_sym_BSLASHftvolcite] = ACTIONS(12299), + [anon_sym_BSLASHsvolcite] = ACTIONS(12299), + [anon_sym_BSLASHSvolcite] = ACTIONS(12299), + [anon_sym_BSLASHtvolcite] = ACTIONS(12299), + [anon_sym_BSLASHTvolcite] = ACTIONS(12299), + [anon_sym_BSLASHavolcite] = ACTIONS(12299), + [anon_sym_BSLASHAvolcite] = ACTIONS(12299), + [anon_sym_BSLASHnotecite] = ACTIONS(12299), + [anon_sym_BSLASHpnotecite] = ACTIONS(12299), + [anon_sym_BSLASHPnotecite] = ACTIONS(12299), + [anon_sym_BSLASHfnotecite] = ACTIONS(12299), + [anon_sym_BSLASHusepackage] = ACTIONS(12299), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12299), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12299), + [anon_sym_BSLASHinclude] = ACTIONS(12299), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12299), + [anon_sym_BSLASHinput] = ACTIONS(12299), + [anon_sym_BSLASHsubfile] = ACTIONS(12299), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12299), + [anon_sym_BSLASHbibliography] = ACTIONS(12299), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12299), + [anon_sym_BSLASHincludesvg] = ACTIONS(12299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12299), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12299), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12299), + [anon_sym_BSLASHimport] = ACTIONS(12299), + [anon_sym_BSLASHsubimport] = ACTIONS(12299), + [anon_sym_BSLASHinputfrom] = ACTIONS(12299), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12299), + [anon_sym_BSLASHincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHlabel] = ACTIONS(12299), + [anon_sym_BSLASHref] = ACTIONS(12299), + [anon_sym_BSLASHvref] = ACTIONS(12299), + [anon_sym_BSLASHVref] = ACTIONS(12299), + [anon_sym_BSLASHautoref] = ACTIONS(12299), + [anon_sym_BSLASHpageref] = ACTIONS(12299), + [anon_sym_BSLASHcref] = ACTIONS(12299), + [anon_sym_BSLASHCref] = ACTIONS(12299), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnameCref] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHlabelcref] = ACTIONS(12299), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12299), + [anon_sym_BSLASHeqref] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange] = ACTIONS(12299), + [anon_sym_BSLASHCrefrange] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewlabel] = ACTIONS(12299), + [anon_sym_BSLASHnewcommand] = ACTIONS(12299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12299), + [anon_sym_BSLASHgls] = ACTIONS(12299), + [anon_sym_BSLASHGls] = ACTIONS(12299), + [anon_sym_BSLASHGLS] = ACTIONS(12299), + [anon_sym_BSLASHglspl] = ACTIONS(12299), + [anon_sym_BSLASHGlspl] = ACTIONS(12299), + [anon_sym_BSLASHGLSpl] = ACTIONS(12299), + [anon_sym_BSLASHglsdisp] = ACTIONS(12299), + [anon_sym_BSLASHglslink] = ACTIONS(12299), + [anon_sym_BSLASHglstext] = ACTIONS(12299), + [anon_sym_BSLASHGlstext] = ACTIONS(12299), + [anon_sym_BSLASHGLStext] = ACTIONS(12299), + [anon_sym_BSLASHglsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12299), + [anon_sym_BSLASHglsplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSplural] = ACTIONS(12299), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHglsname] = ACTIONS(12299), + [anon_sym_BSLASHGlsname] = ACTIONS(12299), + [anon_sym_BSLASHGLSname] = ACTIONS(12299), + [anon_sym_BSLASHglssymbol] = ACTIONS(12299), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12299), + [anon_sym_BSLASHglsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12299), + [anon_sym_BSLASHglsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12299), + [anon_sym_BSLASHglsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12299), + [anon_sym_BSLASHglsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12299), + [anon_sym_BSLASHglsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12299), + [anon_sym_BSLASHnewacronym] = ACTIONS(12299), + [anon_sym_BSLASHacrshort] = ACTIONS(12299), + [anon_sym_BSLASHAcrshort] = ACTIONS(12299), + [anon_sym_BSLASHACRshort] = ACTIONS(12299), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12299), + [anon_sym_BSLASHacrlong] = ACTIONS(12299), + [anon_sym_BSLASHAcrlong] = ACTIONS(12299), + [anon_sym_BSLASHACRlong] = ACTIONS(12299), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12299), + [anon_sym_BSLASHacrfull] = ACTIONS(12299), + [anon_sym_BSLASHAcrfull] = ACTIONS(12299), + [anon_sym_BSLASHACRfull] = ACTIONS(12299), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12299), + [anon_sym_BSLASHacs] = ACTIONS(12299), + [anon_sym_BSLASHAcs] = ACTIONS(12299), + [anon_sym_BSLASHacsp] = ACTIONS(12299), + [anon_sym_BSLASHAcsp] = ACTIONS(12299), + [anon_sym_BSLASHacl] = ACTIONS(12299), + [anon_sym_BSLASHAcl] = ACTIONS(12299), + [anon_sym_BSLASHaclp] = ACTIONS(12299), + [anon_sym_BSLASHAclp] = ACTIONS(12299), + [anon_sym_BSLASHacf] = ACTIONS(12299), + [anon_sym_BSLASHAcf] = ACTIONS(12299), + [anon_sym_BSLASHacfp] = ACTIONS(12299), + [anon_sym_BSLASHAcfp] = ACTIONS(12299), + [anon_sym_BSLASHac] = ACTIONS(12299), + [anon_sym_BSLASHAc] = ACTIONS(12299), + [anon_sym_BSLASHacp] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12299), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12299), + [anon_sym_BSLASHcolor] = ACTIONS(12299), + [anon_sym_BSLASHcolorbox] = ACTIONS(12299), + [anon_sym_BSLASHtextcolor] = ACTIONS(12299), + [anon_sym_BSLASHpagecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12299), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12299), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12299), + }, + [1087] = { + [sym_generic_command_name] = ACTIONS(12539), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12539), + [aux_sym_chapter_token1] = ACTIONS(12539), + [aux_sym_section_token1] = ACTIONS(12539), + [aux_sym_subsection_token1] = ACTIONS(12539), + [aux_sym_subsubsection_token1] = ACTIONS(12539), + [aux_sym_paragraph_token1] = ACTIONS(12539), + [aux_sym_subparagraph_token1] = ACTIONS(12539), + [anon_sym_BSLASHitem] = ACTIONS(12539), + [anon_sym_LBRACK] = ACTIONS(12537), + [anon_sym_LBRACE] = ACTIONS(12537), + [anon_sym_LPAREN] = ACTIONS(12537), + [anon_sym_COMMA] = ACTIONS(12537), + [anon_sym_EQ] = ACTIONS(12537), + [sym_word] = ACTIONS(12537), + [sym_param] = ACTIONS(12537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12537), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12537), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12537), + [anon_sym_DOLLAR] = ACTIONS(12539), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12537), + [anon_sym_BSLASHbegin] = ACTIONS(12539), + [anon_sym_BSLASHcaption] = ACTIONS(12539), + [anon_sym_BSLASHcite] = ACTIONS(12539), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCite] = ACTIONS(12539), + [anon_sym_BSLASHnocite] = ACTIONS(12539), + [anon_sym_BSLASHcitet] = ACTIONS(12539), + [anon_sym_BSLASHcitep] = ACTIONS(12539), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteauthor] = ACTIONS(12539), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12539), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitetitle] = ACTIONS(12539), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteyear] = ACTIONS(12539), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitedate] = ACTIONS(12539), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteurl] = ACTIONS(12539), + [anon_sym_BSLASHfullcite] = ACTIONS(12539), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12539), + [anon_sym_BSLASHcitealt] = ACTIONS(12539), + [anon_sym_BSLASHcitealp] = ACTIONS(12539), + [anon_sym_BSLASHcitetext] = ACTIONS(12539), + [anon_sym_BSLASHparencite] = ACTIONS(12539), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHParencite] = ACTIONS(12539), + [anon_sym_BSLASHfootcite] = ACTIONS(12539), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12539), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12539), + [anon_sym_BSLASHtextcite] = ACTIONS(12539), + [anon_sym_BSLASHTextcite] = ACTIONS(12539), + [anon_sym_BSLASHsmartcite] = ACTIONS(12539), + [anon_sym_BSLASHSmartcite] = ACTIONS(12539), + [anon_sym_BSLASHsupercite] = ACTIONS(12539), + [anon_sym_BSLASHautocite] = ACTIONS(12539), + [anon_sym_BSLASHAutocite] = ACTIONS(12539), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHvolcite] = ACTIONS(12539), + [anon_sym_BSLASHVolcite] = ACTIONS(12539), + [anon_sym_BSLASHpvolcite] = ACTIONS(12539), + [anon_sym_BSLASHPvolcite] = ACTIONS(12539), + [anon_sym_BSLASHfvolcite] = ACTIONS(12539), + [anon_sym_BSLASHftvolcite] = ACTIONS(12539), + [anon_sym_BSLASHsvolcite] = ACTIONS(12539), + [anon_sym_BSLASHSvolcite] = ACTIONS(12539), + [anon_sym_BSLASHtvolcite] = ACTIONS(12539), + [anon_sym_BSLASHTvolcite] = ACTIONS(12539), + [anon_sym_BSLASHavolcite] = ACTIONS(12539), + [anon_sym_BSLASHAvolcite] = ACTIONS(12539), + [anon_sym_BSLASHnotecite] = ACTIONS(12539), + [anon_sym_BSLASHpnotecite] = ACTIONS(12539), + [anon_sym_BSLASHPnotecite] = ACTIONS(12539), + [anon_sym_BSLASHfnotecite] = ACTIONS(12539), + [anon_sym_BSLASHusepackage] = ACTIONS(12539), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12539), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12539), + [anon_sym_BSLASHinclude] = ACTIONS(12539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12539), + [anon_sym_BSLASHinput] = ACTIONS(12539), + [anon_sym_BSLASHsubfile] = ACTIONS(12539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12539), + [anon_sym_BSLASHbibliography] = ACTIONS(12539), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12539), + [anon_sym_BSLASHincludesvg] = ACTIONS(12539), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12539), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12539), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12539), + [anon_sym_BSLASHimport] = ACTIONS(12539), + [anon_sym_BSLASHsubimport] = ACTIONS(12539), + [anon_sym_BSLASHinputfrom] = ACTIONS(12539), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12539), + [anon_sym_BSLASHincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHlabel] = ACTIONS(12539), + [anon_sym_BSLASHref] = ACTIONS(12539), + [anon_sym_BSLASHvref] = ACTIONS(12539), + [anon_sym_BSLASHVref] = ACTIONS(12539), + [anon_sym_BSLASHautoref] = ACTIONS(12539), + [anon_sym_BSLASHpageref] = ACTIONS(12539), + [anon_sym_BSLASHcref] = ACTIONS(12539), + [anon_sym_BSLASHCref] = ACTIONS(12539), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnameCref] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHlabelcref] = ACTIONS(12539), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12539), + [anon_sym_BSLASHeqref] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange] = ACTIONS(12539), + [anon_sym_BSLASHCrefrange] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewlabel] = ACTIONS(12539), + [anon_sym_BSLASHnewcommand] = ACTIONS(12539), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12539), + [anon_sym_BSLASHgls] = ACTIONS(12539), + [anon_sym_BSLASHGls] = ACTIONS(12539), + [anon_sym_BSLASHGLS] = ACTIONS(12539), + [anon_sym_BSLASHglspl] = ACTIONS(12539), + [anon_sym_BSLASHGlspl] = ACTIONS(12539), + [anon_sym_BSLASHGLSpl] = ACTIONS(12539), + [anon_sym_BSLASHglsdisp] = ACTIONS(12539), + [anon_sym_BSLASHglslink] = ACTIONS(12539), + [anon_sym_BSLASHglstext] = ACTIONS(12539), + [anon_sym_BSLASHGlstext] = ACTIONS(12539), + [anon_sym_BSLASHGLStext] = ACTIONS(12539), + [anon_sym_BSLASHglsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12539), + [anon_sym_BSLASHglsplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSplural] = ACTIONS(12539), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHglsname] = ACTIONS(12539), + [anon_sym_BSLASHGlsname] = ACTIONS(12539), + [anon_sym_BSLASHGLSname] = ACTIONS(12539), + [anon_sym_BSLASHglssymbol] = ACTIONS(12539), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12539), + [anon_sym_BSLASHglsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12539), + [anon_sym_BSLASHglsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12539), + [anon_sym_BSLASHglsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12539), + [anon_sym_BSLASHglsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12539), + [anon_sym_BSLASHglsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12539), + [anon_sym_BSLASHnewacronym] = ACTIONS(12539), + [anon_sym_BSLASHacrshort] = ACTIONS(12539), + [anon_sym_BSLASHAcrshort] = ACTIONS(12539), + [anon_sym_BSLASHACRshort] = ACTIONS(12539), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12539), + [anon_sym_BSLASHacrlong] = ACTIONS(12539), + [anon_sym_BSLASHAcrlong] = ACTIONS(12539), + [anon_sym_BSLASHACRlong] = ACTIONS(12539), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12539), + [anon_sym_BSLASHacrfull] = ACTIONS(12539), + [anon_sym_BSLASHAcrfull] = ACTIONS(12539), + [anon_sym_BSLASHACRfull] = ACTIONS(12539), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12539), + [anon_sym_BSLASHacs] = ACTIONS(12539), + [anon_sym_BSLASHAcs] = ACTIONS(12539), + [anon_sym_BSLASHacsp] = ACTIONS(12539), + [anon_sym_BSLASHAcsp] = ACTIONS(12539), + [anon_sym_BSLASHacl] = ACTIONS(12539), + [anon_sym_BSLASHAcl] = ACTIONS(12539), + [anon_sym_BSLASHaclp] = ACTIONS(12539), + [anon_sym_BSLASHAclp] = ACTIONS(12539), + [anon_sym_BSLASHacf] = ACTIONS(12539), + [anon_sym_BSLASHAcf] = ACTIONS(12539), + [anon_sym_BSLASHacfp] = ACTIONS(12539), + [anon_sym_BSLASHAcfp] = ACTIONS(12539), + [anon_sym_BSLASHac] = ACTIONS(12539), + [anon_sym_BSLASHAc] = ACTIONS(12539), + [anon_sym_BSLASHacp] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12539), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12539), + [anon_sym_BSLASHcolor] = ACTIONS(12539), + [anon_sym_BSLASHcolorbox] = ACTIONS(12539), + [anon_sym_BSLASHtextcolor] = ACTIONS(12539), + [anon_sym_BSLASHpagecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12539), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12539), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12539), + }, + [1088] = { + [sym_generic_command_name] = ACTIONS(12311), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12311), + [aux_sym_section_token1] = ACTIONS(12311), + [aux_sym_subsection_token1] = ACTIONS(12311), + [aux_sym_subsubsection_token1] = ACTIONS(12311), + [aux_sym_paragraph_token1] = ACTIONS(12311), + [aux_sym_subparagraph_token1] = ACTIONS(12311), + [anon_sym_BSLASHitem] = ACTIONS(12311), + [anon_sym_LBRACK] = ACTIONS(12309), + [anon_sym_RBRACK] = ACTIONS(12309), + [anon_sym_LBRACE] = ACTIONS(12309), + [anon_sym_RBRACE] = ACTIONS(12309), + [anon_sym_LPAREN] = ACTIONS(12309), + [anon_sym_COMMA] = ACTIONS(12309), + [anon_sym_EQ] = ACTIONS(12309), + [sym_word] = ACTIONS(12309), + [sym_param] = ACTIONS(12309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12309), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12309), + [anon_sym_DOLLAR] = ACTIONS(12311), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12309), + [anon_sym_BSLASHbegin] = ACTIONS(12311), + [anon_sym_BSLASHcaption] = ACTIONS(12311), + [anon_sym_BSLASHcite] = ACTIONS(12311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCite] = ACTIONS(12311), + [anon_sym_BSLASHnocite] = ACTIONS(12311), + [anon_sym_BSLASHcitet] = ACTIONS(12311), + [anon_sym_BSLASHcitep] = ACTIONS(12311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteauthor] = ACTIONS(12311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitetitle] = ACTIONS(12311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteyear] = ACTIONS(12311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitedate] = ACTIONS(12311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteurl] = ACTIONS(12311), + [anon_sym_BSLASHfullcite] = ACTIONS(12311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12311), + [anon_sym_BSLASHcitealt] = ACTIONS(12311), + [anon_sym_BSLASHcitealp] = ACTIONS(12311), + [anon_sym_BSLASHcitetext] = ACTIONS(12311), + [anon_sym_BSLASHparencite] = ACTIONS(12311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHParencite] = ACTIONS(12311), + [anon_sym_BSLASHfootcite] = ACTIONS(12311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12311), + [anon_sym_BSLASHtextcite] = ACTIONS(12311), + [anon_sym_BSLASHTextcite] = ACTIONS(12311), + [anon_sym_BSLASHsmartcite] = ACTIONS(12311), + [anon_sym_BSLASHSmartcite] = ACTIONS(12311), + [anon_sym_BSLASHsupercite] = ACTIONS(12311), + [anon_sym_BSLASHautocite] = ACTIONS(12311), + [anon_sym_BSLASHAutocite] = ACTIONS(12311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHvolcite] = ACTIONS(12311), + [anon_sym_BSLASHVolcite] = ACTIONS(12311), + [anon_sym_BSLASHpvolcite] = ACTIONS(12311), + [anon_sym_BSLASHPvolcite] = ACTIONS(12311), + [anon_sym_BSLASHfvolcite] = ACTIONS(12311), + [anon_sym_BSLASHftvolcite] = ACTIONS(12311), + [anon_sym_BSLASHsvolcite] = ACTIONS(12311), + [anon_sym_BSLASHSvolcite] = ACTIONS(12311), + [anon_sym_BSLASHtvolcite] = ACTIONS(12311), + [anon_sym_BSLASHTvolcite] = ACTIONS(12311), + [anon_sym_BSLASHavolcite] = ACTIONS(12311), + [anon_sym_BSLASHAvolcite] = ACTIONS(12311), + [anon_sym_BSLASHnotecite] = ACTIONS(12311), + [anon_sym_BSLASHpnotecite] = ACTIONS(12311), + [anon_sym_BSLASHPnotecite] = ACTIONS(12311), + [anon_sym_BSLASHfnotecite] = ACTIONS(12311), + [anon_sym_BSLASHusepackage] = ACTIONS(12311), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12311), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12311), + [anon_sym_BSLASHinclude] = ACTIONS(12311), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12311), + [anon_sym_BSLASHinput] = ACTIONS(12311), + [anon_sym_BSLASHsubfile] = ACTIONS(12311), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12311), + [anon_sym_BSLASHbibliography] = ACTIONS(12311), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12311), + [anon_sym_BSLASHincludesvg] = ACTIONS(12311), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12311), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12311), + [anon_sym_BSLASHimport] = ACTIONS(12311), + [anon_sym_BSLASHsubimport] = ACTIONS(12311), + [anon_sym_BSLASHinputfrom] = ACTIONS(12311), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12311), + [anon_sym_BSLASHincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHlabel] = ACTIONS(12311), + [anon_sym_BSLASHref] = ACTIONS(12311), + [anon_sym_BSLASHvref] = ACTIONS(12311), + [anon_sym_BSLASHVref] = ACTIONS(12311), + [anon_sym_BSLASHautoref] = ACTIONS(12311), + [anon_sym_BSLASHpageref] = ACTIONS(12311), + [anon_sym_BSLASHcref] = ACTIONS(12311), + [anon_sym_BSLASHCref] = ACTIONS(12311), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnameCref] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHlabelcref] = ACTIONS(12311), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12311), + [anon_sym_BSLASHeqref] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange] = ACTIONS(12311), + [anon_sym_BSLASHCrefrange] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewlabel] = ACTIONS(12311), + [anon_sym_BSLASHnewcommand] = ACTIONS(12311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12311), + [anon_sym_BSLASHgls] = ACTIONS(12311), + [anon_sym_BSLASHGls] = ACTIONS(12311), + [anon_sym_BSLASHGLS] = ACTIONS(12311), + [anon_sym_BSLASHglspl] = ACTIONS(12311), + [anon_sym_BSLASHGlspl] = ACTIONS(12311), + [anon_sym_BSLASHGLSpl] = ACTIONS(12311), + [anon_sym_BSLASHglsdisp] = ACTIONS(12311), + [anon_sym_BSLASHglslink] = ACTIONS(12311), + [anon_sym_BSLASHglstext] = ACTIONS(12311), + [anon_sym_BSLASHGlstext] = ACTIONS(12311), + [anon_sym_BSLASHGLStext] = ACTIONS(12311), + [anon_sym_BSLASHglsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12311), + [anon_sym_BSLASHglsplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSplural] = ACTIONS(12311), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHglsname] = ACTIONS(12311), + [anon_sym_BSLASHGlsname] = ACTIONS(12311), + [anon_sym_BSLASHGLSname] = ACTIONS(12311), + [anon_sym_BSLASHglssymbol] = ACTIONS(12311), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12311), + [anon_sym_BSLASHglsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12311), + [anon_sym_BSLASHglsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12311), + [anon_sym_BSLASHglsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12311), + [anon_sym_BSLASHglsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12311), + [anon_sym_BSLASHglsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12311), + [anon_sym_BSLASHnewacronym] = ACTIONS(12311), + [anon_sym_BSLASHacrshort] = ACTIONS(12311), + [anon_sym_BSLASHAcrshort] = ACTIONS(12311), + [anon_sym_BSLASHACRshort] = ACTIONS(12311), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12311), + [anon_sym_BSLASHacrlong] = ACTIONS(12311), + [anon_sym_BSLASHAcrlong] = ACTIONS(12311), + [anon_sym_BSLASHACRlong] = ACTIONS(12311), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12311), + [anon_sym_BSLASHacrfull] = ACTIONS(12311), + [anon_sym_BSLASHAcrfull] = ACTIONS(12311), + [anon_sym_BSLASHACRfull] = ACTIONS(12311), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12311), + [anon_sym_BSLASHacs] = ACTIONS(12311), + [anon_sym_BSLASHAcs] = ACTIONS(12311), + [anon_sym_BSLASHacsp] = ACTIONS(12311), + [anon_sym_BSLASHAcsp] = ACTIONS(12311), + [anon_sym_BSLASHacl] = ACTIONS(12311), + [anon_sym_BSLASHAcl] = ACTIONS(12311), + [anon_sym_BSLASHaclp] = ACTIONS(12311), + [anon_sym_BSLASHAclp] = ACTIONS(12311), + [anon_sym_BSLASHacf] = ACTIONS(12311), + [anon_sym_BSLASHAcf] = ACTIONS(12311), + [anon_sym_BSLASHacfp] = ACTIONS(12311), + [anon_sym_BSLASHAcfp] = ACTIONS(12311), + [anon_sym_BSLASHac] = ACTIONS(12311), + [anon_sym_BSLASHAc] = ACTIONS(12311), + [anon_sym_BSLASHacp] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12311), + [anon_sym_BSLASHcolor] = ACTIONS(12311), + [anon_sym_BSLASHcolorbox] = ACTIONS(12311), + [anon_sym_BSLASHtextcolor] = ACTIONS(12311), + [anon_sym_BSLASHpagecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12311), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12311), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12311), + }, + [1089] = { + [sym_generic_command_name] = ACTIONS(12327), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12327), + [aux_sym_section_token1] = ACTIONS(12327), + [aux_sym_subsection_token1] = ACTIONS(12327), + [aux_sym_subsubsection_token1] = ACTIONS(12327), + [aux_sym_paragraph_token1] = ACTIONS(12327), + [aux_sym_subparagraph_token1] = ACTIONS(12327), + [anon_sym_BSLASHitem] = ACTIONS(12327), + [anon_sym_LBRACK] = ACTIONS(12325), + [anon_sym_RBRACK] = ACTIONS(12325), + [anon_sym_LBRACE] = ACTIONS(12325), + [anon_sym_RBRACE] = ACTIONS(12325), + [anon_sym_LPAREN] = ACTIONS(12325), + [anon_sym_COMMA] = ACTIONS(12325), + [anon_sym_EQ] = ACTIONS(12325), + [sym_word] = ACTIONS(12325), + [sym_param] = ACTIONS(12325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12325), + [anon_sym_DOLLAR] = ACTIONS(12327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12325), + [anon_sym_BSLASHbegin] = ACTIONS(12327), + [anon_sym_BSLASHcaption] = ACTIONS(12327), + [anon_sym_BSLASHcite] = ACTIONS(12327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCite] = ACTIONS(12327), + [anon_sym_BSLASHnocite] = ACTIONS(12327), + [anon_sym_BSLASHcitet] = ACTIONS(12327), + [anon_sym_BSLASHcitep] = ACTIONS(12327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteauthor] = ACTIONS(12327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitetitle] = ACTIONS(12327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteyear] = ACTIONS(12327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitedate] = ACTIONS(12327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteurl] = ACTIONS(12327), + [anon_sym_BSLASHfullcite] = ACTIONS(12327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12327), + [anon_sym_BSLASHcitealt] = ACTIONS(12327), + [anon_sym_BSLASHcitealp] = ACTIONS(12327), + [anon_sym_BSLASHcitetext] = ACTIONS(12327), + [anon_sym_BSLASHparencite] = ACTIONS(12327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHParencite] = ACTIONS(12327), + [anon_sym_BSLASHfootcite] = ACTIONS(12327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12327), + [anon_sym_BSLASHtextcite] = ACTIONS(12327), + [anon_sym_BSLASHTextcite] = ACTIONS(12327), + [anon_sym_BSLASHsmartcite] = ACTIONS(12327), + [anon_sym_BSLASHSmartcite] = ACTIONS(12327), + [anon_sym_BSLASHsupercite] = ACTIONS(12327), + [anon_sym_BSLASHautocite] = ACTIONS(12327), + [anon_sym_BSLASHAutocite] = ACTIONS(12327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHvolcite] = ACTIONS(12327), + [anon_sym_BSLASHVolcite] = ACTIONS(12327), + [anon_sym_BSLASHpvolcite] = ACTIONS(12327), + [anon_sym_BSLASHPvolcite] = ACTIONS(12327), + [anon_sym_BSLASHfvolcite] = ACTIONS(12327), + [anon_sym_BSLASHftvolcite] = ACTIONS(12327), + [anon_sym_BSLASHsvolcite] = ACTIONS(12327), + [anon_sym_BSLASHSvolcite] = ACTIONS(12327), + [anon_sym_BSLASHtvolcite] = ACTIONS(12327), + [anon_sym_BSLASHTvolcite] = ACTIONS(12327), + [anon_sym_BSLASHavolcite] = ACTIONS(12327), + [anon_sym_BSLASHAvolcite] = ACTIONS(12327), + [anon_sym_BSLASHnotecite] = ACTIONS(12327), + [anon_sym_BSLASHpnotecite] = ACTIONS(12327), + [anon_sym_BSLASHPnotecite] = ACTIONS(12327), + [anon_sym_BSLASHfnotecite] = ACTIONS(12327), + [anon_sym_BSLASHusepackage] = ACTIONS(12327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12327), + [anon_sym_BSLASHinclude] = ACTIONS(12327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12327), + [anon_sym_BSLASHinput] = ACTIONS(12327), + [anon_sym_BSLASHsubfile] = ACTIONS(12327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12327), + [anon_sym_BSLASHbibliography] = ACTIONS(12327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12327), + [anon_sym_BSLASHincludesvg] = ACTIONS(12327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12327), + [anon_sym_BSLASHimport] = ACTIONS(12327), + [anon_sym_BSLASHsubimport] = ACTIONS(12327), + [anon_sym_BSLASHinputfrom] = ACTIONS(12327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12327), + [anon_sym_BSLASHincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHlabel] = ACTIONS(12327), + [anon_sym_BSLASHref] = ACTIONS(12327), + [anon_sym_BSLASHvref] = ACTIONS(12327), + [anon_sym_BSLASHVref] = ACTIONS(12327), + [anon_sym_BSLASHautoref] = ACTIONS(12327), + [anon_sym_BSLASHpageref] = ACTIONS(12327), + [anon_sym_BSLASHcref] = ACTIONS(12327), + [anon_sym_BSLASHCref] = ACTIONS(12327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnameCref] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHlabelcref] = ACTIONS(12327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12327), + [anon_sym_BSLASHeqref] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange] = ACTIONS(12327), + [anon_sym_BSLASHCrefrange] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewlabel] = ACTIONS(12327), + [anon_sym_BSLASHnewcommand] = ACTIONS(12327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12327), + [anon_sym_BSLASHgls] = ACTIONS(12327), + [anon_sym_BSLASHGls] = ACTIONS(12327), + [anon_sym_BSLASHGLS] = ACTIONS(12327), + [anon_sym_BSLASHglspl] = ACTIONS(12327), + [anon_sym_BSLASHGlspl] = ACTIONS(12327), + [anon_sym_BSLASHGLSpl] = ACTIONS(12327), + [anon_sym_BSLASHglsdisp] = ACTIONS(12327), + [anon_sym_BSLASHglslink] = ACTIONS(12327), + [anon_sym_BSLASHglstext] = ACTIONS(12327), + [anon_sym_BSLASHGlstext] = ACTIONS(12327), + [anon_sym_BSLASHGLStext] = ACTIONS(12327), + [anon_sym_BSLASHglsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12327), + [anon_sym_BSLASHglsplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSplural] = ACTIONS(12327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHglsname] = ACTIONS(12327), + [anon_sym_BSLASHGlsname] = ACTIONS(12327), + [anon_sym_BSLASHGLSname] = ACTIONS(12327), + [anon_sym_BSLASHglssymbol] = ACTIONS(12327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12327), + [anon_sym_BSLASHglsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12327), + [anon_sym_BSLASHglsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12327), + [anon_sym_BSLASHglsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12327), + [anon_sym_BSLASHglsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12327), + [anon_sym_BSLASHglsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12327), + [anon_sym_BSLASHnewacronym] = ACTIONS(12327), + [anon_sym_BSLASHacrshort] = ACTIONS(12327), + [anon_sym_BSLASHAcrshort] = ACTIONS(12327), + [anon_sym_BSLASHACRshort] = ACTIONS(12327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12327), + [anon_sym_BSLASHacrlong] = ACTIONS(12327), + [anon_sym_BSLASHAcrlong] = ACTIONS(12327), + [anon_sym_BSLASHACRlong] = ACTIONS(12327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12327), + [anon_sym_BSLASHacrfull] = ACTIONS(12327), + [anon_sym_BSLASHAcrfull] = ACTIONS(12327), + [anon_sym_BSLASHACRfull] = ACTIONS(12327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12327), + [anon_sym_BSLASHacs] = ACTIONS(12327), + [anon_sym_BSLASHAcs] = ACTIONS(12327), + [anon_sym_BSLASHacsp] = ACTIONS(12327), + [anon_sym_BSLASHAcsp] = ACTIONS(12327), + [anon_sym_BSLASHacl] = ACTIONS(12327), + [anon_sym_BSLASHAcl] = ACTIONS(12327), + [anon_sym_BSLASHaclp] = ACTIONS(12327), + [anon_sym_BSLASHAclp] = ACTIONS(12327), + [anon_sym_BSLASHacf] = ACTIONS(12327), + [anon_sym_BSLASHAcf] = ACTIONS(12327), + [anon_sym_BSLASHacfp] = ACTIONS(12327), + [anon_sym_BSLASHAcfp] = ACTIONS(12327), + [anon_sym_BSLASHac] = ACTIONS(12327), + [anon_sym_BSLASHAc] = ACTIONS(12327), + [anon_sym_BSLASHacp] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12327), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12327), + [anon_sym_BSLASHcolor] = ACTIONS(12327), + [anon_sym_BSLASHcolorbox] = ACTIONS(12327), + [anon_sym_BSLASHtextcolor] = ACTIONS(12327), + [anon_sym_BSLASHpagecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12327), + }, + [1090] = { + [sym_generic_command_name] = ACTIONS(12331), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12331), + [aux_sym_section_token1] = ACTIONS(12331), + [aux_sym_subsection_token1] = ACTIONS(12331), + [aux_sym_subsubsection_token1] = ACTIONS(12331), + [aux_sym_paragraph_token1] = ACTIONS(12331), + [aux_sym_subparagraph_token1] = ACTIONS(12331), + [anon_sym_BSLASHitem] = ACTIONS(12331), + [anon_sym_LBRACK] = ACTIONS(12329), + [anon_sym_RBRACK] = ACTIONS(12329), + [anon_sym_LBRACE] = ACTIONS(12329), + [anon_sym_RBRACE] = ACTIONS(12329), + [anon_sym_LPAREN] = ACTIONS(12329), + [anon_sym_COMMA] = ACTIONS(12329), + [anon_sym_EQ] = ACTIONS(12329), + [sym_word] = ACTIONS(12329), + [sym_param] = ACTIONS(12329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12329), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12329), + [anon_sym_DOLLAR] = ACTIONS(12331), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12329), + [anon_sym_BSLASHbegin] = ACTIONS(12331), + [anon_sym_BSLASHcaption] = ACTIONS(12331), + [anon_sym_BSLASHcite] = ACTIONS(12331), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCite] = ACTIONS(12331), + [anon_sym_BSLASHnocite] = ACTIONS(12331), + [anon_sym_BSLASHcitet] = ACTIONS(12331), + [anon_sym_BSLASHcitep] = ACTIONS(12331), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteauthor] = ACTIONS(12331), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12331), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitetitle] = ACTIONS(12331), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteyear] = ACTIONS(12331), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitedate] = ACTIONS(12331), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteurl] = ACTIONS(12331), + [anon_sym_BSLASHfullcite] = ACTIONS(12331), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12331), + [anon_sym_BSLASHcitealt] = ACTIONS(12331), + [anon_sym_BSLASHcitealp] = ACTIONS(12331), + [anon_sym_BSLASHcitetext] = ACTIONS(12331), + [anon_sym_BSLASHparencite] = ACTIONS(12331), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHParencite] = ACTIONS(12331), + [anon_sym_BSLASHfootcite] = ACTIONS(12331), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12331), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12331), + [anon_sym_BSLASHtextcite] = ACTIONS(12331), + [anon_sym_BSLASHTextcite] = ACTIONS(12331), + [anon_sym_BSLASHsmartcite] = ACTIONS(12331), + [anon_sym_BSLASHSmartcite] = ACTIONS(12331), + [anon_sym_BSLASHsupercite] = ACTIONS(12331), + [anon_sym_BSLASHautocite] = ACTIONS(12331), + [anon_sym_BSLASHAutocite] = ACTIONS(12331), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHvolcite] = ACTIONS(12331), + [anon_sym_BSLASHVolcite] = ACTIONS(12331), + [anon_sym_BSLASHpvolcite] = ACTIONS(12331), + [anon_sym_BSLASHPvolcite] = ACTIONS(12331), + [anon_sym_BSLASHfvolcite] = ACTIONS(12331), + [anon_sym_BSLASHftvolcite] = ACTIONS(12331), + [anon_sym_BSLASHsvolcite] = ACTIONS(12331), + [anon_sym_BSLASHSvolcite] = ACTIONS(12331), + [anon_sym_BSLASHtvolcite] = ACTIONS(12331), + [anon_sym_BSLASHTvolcite] = ACTIONS(12331), + [anon_sym_BSLASHavolcite] = ACTIONS(12331), + [anon_sym_BSLASHAvolcite] = ACTIONS(12331), + [anon_sym_BSLASHnotecite] = ACTIONS(12331), + [anon_sym_BSLASHpnotecite] = ACTIONS(12331), + [anon_sym_BSLASHPnotecite] = ACTIONS(12331), + [anon_sym_BSLASHfnotecite] = ACTIONS(12331), + [anon_sym_BSLASHusepackage] = ACTIONS(12331), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12331), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12331), + [anon_sym_BSLASHinclude] = ACTIONS(12331), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12331), + [anon_sym_BSLASHinput] = ACTIONS(12331), + [anon_sym_BSLASHsubfile] = ACTIONS(12331), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12331), + [anon_sym_BSLASHbibliography] = ACTIONS(12331), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12331), + [anon_sym_BSLASHincludesvg] = ACTIONS(12331), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12331), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12331), + [anon_sym_BSLASHimport] = ACTIONS(12331), + [anon_sym_BSLASHsubimport] = ACTIONS(12331), + [anon_sym_BSLASHinputfrom] = ACTIONS(12331), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12331), + [anon_sym_BSLASHincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHlabel] = ACTIONS(12331), + [anon_sym_BSLASHref] = ACTIONS(12331), + [anon_sym_BSLASHvref] = ACTIONS(12331), + [anon_sym_BSLASHVref] = ACTIONS(12331), + [anon_sym_BSLASHautoref] = ACTIONS(12331), + [anon_sym_BSLASHpageref] = ACTIONS(12331), + [anon_sym_BSLASHcref] = ACTIONS(12331), + [anon_sym_BSLASHCref] = ACTIONS(12331), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnameCref] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHlabelcref] = ACTIONS(12331), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12331), + [anon_sym_BSLASHeqref] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange] = ACTIONS(12331), + [anon_sym_BSLASHCrefrange] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewlabel] = ACTIONS(12331), + [anon_sym_BSLASHnewcommand] = ACTIONS(12331), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12331), + [anon_sym_BSLASHgls] = ACTIONS(12331), + [anon_sym_BSLASHGls] = ACTIONS(12331), + [anon_sym_BSLASHGLS] = ACTIONS(12331), + [anon_sym_BSLASHglspl] = ACTIONS(12331), + [anon_sym_BSLASHGlspl] = ACTIONS(12331), + [anon_sym_BSLASHGLSpl] = ACTIONS(12331), + [anon_sym_BSLASHglsdisp] = ACTIONS(12331), + [anon_sym_BSLASHglslink] = ACTIONS(12331), + [anon_sym_BSLASHglstext] = ACTIONS(12331), + [anon_sym_BSLASHGlstext] = ACTIONS(12331), + [anon_sym_BSLASHGLStext] = ACTIONS(12331), + [anon_sym_BSLASHglsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12331), + [anon_sym_BSLASHglsplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSplural] = ACTIONS(12331), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHglsname] = ACTIONS(12331), + [anon_sym_BSLASHGlsname] = ACTIONS(12331), + [anon_sym_BSLASHGLSname] = ACTIONS(12331), + [anon_sym_BSLASHglssymbol] = ACTIONS(12331), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12331), + [anon_sym_BSLASHglsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12331), + [anon_sym_BSLASHglsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12331), + [anon_sym_BSLASHglsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12331), + [anon_sym_BSLASHglsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12331), + [anon_sym_BSLASHglsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12331), + [anon_sym_BSLASHnewacronym] = ACTIONS(12331), + [anon_sym_BSLASHacrshort] = ACTIONS(12331), + [anon_sym_BSLASHAcrshort] = ACTIONS(12331), + [anon_sym_BSLASHACRshort] = ACTIONS(12331), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12331), + [anon_sym_BSLASHacrlong] = ACTIONS(12331), + [anon_sym_BSLASHAcrlong] = ACTIONS(12331), + [anon_sym_BSLASHACRlong] = ACTIONS(12331), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12331), + [anon_sym_BSLASHacrfull] = ACTIONS(12331), + [anon_sym_BSLASHAcrfull] = ACTIONS(12331), + [anon_sym_BSLASHACRfull] = ACTIONS(12331), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12331), + [anon_sym_BSLASHacs] = ACTIONS(12331), + [anon_sym_BSLASHAcs] = ACTIONS(12331), + [anon_sym_BSLASHacsp] = ACTIONS(12331), + [anon_sym_BSLASHAcsp] = ACTIONS(12331), + [anon_sym_BSLASHacl] = ACTIONS(12331), + [anon_sym_BSLASHAcl] = ACTIONS(12331), + [anon_sym_BSLASHaclp] = ACTIONS(12331), + [anon_sym_BSLASHAclp] = ACTIONS(12331), + [anon_sym_BSLASHacf] = ACTIONS(12331), + [anon_sym_BSLASHAcf] = ACTIONS(12331), + [anon_sym_BSLASHacfp] = ACTIONS(12331), + [anon_sym_BSLASHAcfp] = ACTIONS(12331), + [anon_sym_BSLASHac] = ACTIONS(12331), + [anon_sym_BSLASHAc] = ACTIONS(12331), + [anon_sym_BSLASHacp] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12331), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12331), + [anon_sym_BSLASHcolor] = ACTIONS(12331), + [anon_sym_BSLASHcolorbox] = ACTIONS(12331), + [anon_sym_BSLASHtextcolor] = ACTIONS(12331), + [anon_sym_BSLASHpagecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12331), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12331), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12331), + }, + [1091] = { + [sym_generic_command_name] = ACTIONS(12543), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12543), + [aux_sym_chapter_token1] = ACTIONS(12543), + [aux_sym_section_token1] = ACTIONS(12543), + [aux_sym_subsection_token1] = ACTIONS(12543), + [aux_sym_subsubsection_token1] = ACTIONS(12543), + [aux_sym_paragraph_token1] = ACTIONS(12543), + [aux_sym_subparagraph_token1] = ACTIONS(12543), + [anon_sym_BSLASHitem] = ACTIONS(12543), + [anon_sym_LBRACK] = ACTIONS(12541), + [anon_sym_LBRACE] = ACTIONS(12541), + [anon_sym_LPAREN] = ACTIONS(12541), + [anon_sym_COMMA] = ACTIONS(12541), + [anon_sym_EQ] = ACTIONS(12541), + [sym_word] = ACTIONS(12541), + [sym_param] = ACTIONS(12541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12541), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12541), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12541), + [anon_sym_DOLLAR] = ACTIONS(12543), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12541), + [anon_sym_BSLASHbegin] = ACTIONS(12543), + [anon_sym_BSLASHcaption] = ACTIONS(12543), + [anon_sym_BSLASHcite] = ACTIONS(12543), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCite] = ACTIONS(12543), + [anon_sym_BSLASHnocite] = ACTIONS(12543), + [anon_sym_BSLASHcitet] = ACTIONS(12543), + [anon_sym_BSLASHcitep] = ACTIONS(12543), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteauthor] = ACTIONS(12543), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12543), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitetitle] = ACTIONS(12543), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteyear] = ACTIONS(12543), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitedate] = ACTIONS(12543), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteurl] = ACTIONS(12543), + [anon_sym_BSLASHfullcite] = ACTIONS(12543), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12543), + [anon_sym_BSLASHcitealt] = ACTIONS(12543), + [anon_sym_BSLASHcitealp] = ACTIONS(12543), + [anon_sym_BSLASHcitetext] = ACTIONS(12543), + [anon_sym_BSLASHparencite] = ACTIONS(12543), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHParencite] = ACTIONS(12543), + [anon_sym_BSLASHfootcite] = ACTIONS(12543), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12543), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12543), + [anon_sym_BSLASHtextcite] = ACTIONS(12543), + [anon_sym_BSLASHTextcite] = ACTIONS(12543), + [anon_sym_BSLASHsmartcite] = ACTIONS(12543), + [anon_sym_BSLASHSmartcite] = ACTIONS(12543), + [anon_sym_BSLASHsupercite] = ACTIONS(12543), + [anon_sym_BSLASHautocite] = ACTIONS(12543), + [anon_sym_BSLASHAutocite] = ACTIONS(12543), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHvolcite] = ACTIONS(12543), + [anon_sym_BSLASHVolcite] = ACTIONS(12543), + [anon_sym_BSLASHpvolcite] = ACTIONS(12543), + [anon_sym_BSLASHPvolcite] = ACTIONS(12543), + [anon_sym_BSLASHfvolcite] = ACTIONS(12543), + [anon_sym_BSLASHftvolcite] = ACTIONS(12543), + [anon_sym_BSLASHsvolcite] = ACTIONS(12543), + [anon_sym_BSLASHSvolcite] = ACTIONS(12543), + [anon_sym_BSLASHtvolcite] = ACTIONS(12543), + [anon_sym_BSLASHTvolcite] = ACTIONS(12543), + [anon_sym_BSLASHavolcite] = ACTIONS(12543), + [anon_sym_BSLASHAvolcite] = ACTIONS(12543), + [anon_sym_BSLASHnotecite] = ACTIONS(12543), + [anon_sym_BSLASHpnotecite] = ACTIONS(12543), + [anon_sym_BSLASHPnotecite] = ACTIONS(12543), + [anon_sym_BSLASHfnotecite] = ACTIONS(12543), + [anon_sym_BSLASHusepackage] = ACTIONS(12543), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12543), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12543), + [anon_sym_BSLASHinclude] = ACTIONS(12543), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12543), + [anon_sym_BSLASHinput] = ACTIONS(12543), + [anon_sym_BSLASHsubfile] = ACTIONS(12543), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12543), + [anon_sym_BSLASHbibliography] = ACTIONS(12543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12543), + [anon_sym_BSLASHincludesvg] = ACTIONS(12543), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12543), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12543), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12543), + [anon_sym_BSLASHimport] = ACTIONS(12543), + [anon_sym_BSLASHsubimport] = ACTIONS(12543), + [anon_sym_BSLASHinputfrom] = ACTIONS(12543), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12543), + [anon_sym_BSLASHincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHlabel] = ACTIONS(12543), + [anon_sym_BSLASHref] = ACTIONS(12543), + [anon_sym_BSLASHvref] = ACTIONS(12543), + [anon_sym_BSLASHVref] = ACTIONS(12543), + [anon_sym_BSLASHautoref] = ACTIONS(12543), + [anon_sym_BSLASHpageref] = ACTIONS(12543), + [anon_sym_BSLASHcref] = ACTIONS(12543), + [anon_sym_BSLASHCref] = ACTIONS(12543), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnameCref] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHlabelcref] = ACTIONS(12543), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12543), + [anon_sym_BSLASHeqref] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange] = ACTIONS(12543), + [anon_sym_BSLASHCrefrange] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewlabel] = ACTIONS(12543), + [anon_sym_BSLASHnewcommand] = ACTIONS(12543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12543), + [anon_sym_BSLASHgls] = ACTIONS(12543), + [anon_sym_BSLASHGls] = ACTIONS(12543), + [anon_sym_BSLASHGLS] = ACTIONS(12543), + [anon_sym_BSLASHglspl] = ACTIONS(12543), + [anon_sym_BSLASHGlspl] = ACTIONS(12543), + [anon_sym_BSLASHGLSpl] = ACTIONS(12543), + [anon_sym_BSLASHglsdisp] = ACTIONS(12543), + [anon_sym_BSLASHglslink] = ACTIONS(12543), + [anon_sym_BSLASHglstext] = ACTIONS(12543), + [anon_sym_BSLASHGlstext] = ACTIONS(12543), + [anon_sym_BSLASHGLStext] = ACTIONS(12543), + [anon_sym_BSLASHglsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12543), + [anon_sym_BSLASHglsplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSplural] = ACTIONS(12543), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHglsname] = ACTIONS(12543), + [anon_sym_BSLASHGlsname] = ACTIONS(12543), + [anon_sym_BSLASHGLSname] = ACTIONS(12543), + [anon_sym_BSLASHglssymbol] = ACTIONS(12543), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12543), + [anon_sym_BSLASHglsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12543), + [anon_sym_BSLASHglsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12543), + [anon_sym_BSLASHglsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12543), + [anon_sym_BSLASHglsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12543), + [anon_sym_BSLASHglsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12543), + [anon_sym_BSLASHnewacronym] = ACTIONS(12543), + [anon_sym_BSLASHacrshort] = ACTIONS(12543), + [anon_sym_BSLASHAcrshort] = ACTIONS(12543), + [anon_sym_BSLASHACRshort] = ACTIONS(12543), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12543), + [anon_sym_BSLASHacrlong] = ACTIONS(12543), + [anon_sym_BSLASHAcrlong] = ACTIONS(12543), + [anon_sym_BSLASHACRlong] = ACTIONS(12543), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12543), + [anon_sym_BSLASHacrfull] = ACTIONS(12543), + [anon_sym_BSLASHAcrfull] = ACTIONS(12543), + [anon_sym_BSLASHACRfull] = ACTIONS(12543), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12543), + [anon_sym_BSLASHacs] = ACTIONS(12543), + [anon_sym_BSLASHAcs] = ACTIONS(12543), + [anon_sym_BSLASHacsp] = ACTIONS(12543), + [anon_sym_BSLASHAcsp] = ACTIONS(12543), + [anon_sym_BSLASHacl] = ACTIONS(12543), + [anon_sym_BSLASHAcl] = ACTIONS(12543), + [anon_sym_BSLASHaclp] = ACTIONS(12543), + [anon_sym_BSLASHAclp] = ACTIONS(12543), + [anon_sym_BSLASHacf] = ACTIONS(12543), + [anon_sym_BSLASHAcf] = ACTIONS(12543), + [anon_sym_BSLASHacfp] = ACTIONS(12543), + [anon_sym_BSLASHAcfp] = ACTIONS(12543), + [anon_sym_BSLASHac] = ACTIONS(12543), + [anon_sym_BSLASHAc] = ACTIONS(12543), + [anon_sym_BSLASHacp] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12543), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12543), + [anon_sym_BSLASHcolor] = ACTIONS(12543), + [anon_sym_BSLASHcolorbox] = ACTIONS(12543), + [anon_sym_BSLASHtextcolor] = ACTIONS(12543), + [anon_sym_BSLASHpagecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12543), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12543), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12543), + }, + [1092] = { + [sym_generic_command_name] = ACTIONS(12345), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12345), + [aux_sym_section_token1] = ACTIONS(12345), + [aux_sym_subsection_token1] = ACTIONS(12345), + [aux_sym_subsubsection_token1] = ACTIONS(12345), + [aux_sym_paragraph_token1] = ACTIONS(12345), + [aux_sym_subparagraph_token1] = ACTIONS(12345), + [anon_sym_BSLASHitem] = ACTIONS(12345), + [anon_sym_LBRACK] = ACTIONS(12343), + [anon_sym_RBRACK] = ACTIONS(12343), + [anon_sym_LBRACE] = ACTIONS(12343), + [anon_sym_RBRACE] = ACTIONS(12343), + [anon_sym_LPAREN] = ACTIONS(12343), + [anon_sym_COMMA] = ACTIONS(12343), + [anon_sym_EQ] = ACTIONS(12343), + [sym_word] = ACTIONS(12343), + [sym_param] = ACTIONS(12343), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12343), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12343), + [anon_sym_DOLLAR] = ACTIONS(12345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12343), + [anon_sym_BSLASHbegin] = ACTIONS(12345), + [anon_sym_BSLASHcaption] = ACTIONS(12345), + [anon_sym_BSLASHcite] = ACTIONS(12345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCite] = ACTIONS(12345), + [anon_sym_BSLASHnocite] = ACTIONS(12345), + [anon_sym_BSLASHcitet] = ACTIONS(12345), + [anon_sym_BSLASHcitep] = ACTIONS(12345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteauthor] = ACTIONS(12345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitetitle] = ACTIONS(12345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteyear] = ACTIONS(12345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitedate] = ACTIONS(12345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteurl] = ACTIONS(12345), + [anon_sym_BSLASHfullcite] = ACTIONS(12345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12345), + [anon_sym_BSLASHcitealt] = ACTIONS(12345), + [anon_sym_BSLASHcitealp] = ACTIONS(12345), + [anon_sym_BSLASHcitetext] = ACTIONS(12345), + [anon_sym_BSLASHparencite] = ACTIONS(12345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHParencite] = ACTIONS(12345), + [anon_sym_BSLASHfootcite] = ACTIONS(12345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12345), + [anon_sym_BSLASHtextcite] = ACTIONS(12345), + [anon_sym_BSLASHTextcite] = ACTIONS(12345), + [anon_sym_BSLASHsmartcite] = ACTIONS(12345), + [anon_sym_BSLASHSmartcite] = ACTIONS(12345), + [anon_sym_BSLASHsupercite] = ACTIONS(12345), + [anon_sym_BSLASHautocite] = ACTIONS(12345), + [anon_sym_BSLASHAutocite] = ACTIONS(12345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHvolcite] = ACTIONS(12345), + [anon_sym_BSLASHVolcite] = ACTIONS(12345), + [anon_sym_BSLASHpvolcite] = ACTIONS(12345), + [anon_sym_BSLASHPvolcite] = ACTIONS(12345), + [anon_sym_BSLASHfvolcite] = ACTIONS(12345), + [anon_sym_BSLASHftvolcite] = ACTIONS(12345), + [anon_sym_BSLASHsvolcite] = ACTIONS(12345), + [anon_sym_BSLASHSvolcite] = ACTIONS(12345), + [anon_sym_BSLASHtvolcite] = ACTIONS(12345), + [anon_sym_BSLASHTvolcite] = ACTIONS(12345), + [anon_sym_BSLASHavolcite] = ACTIONS(12345), + [anon_sym_BSLASHAvolcite] = ACTIONS(12345), + [anon_sym_BSLASHnotecite] = ACTIONS(12345), + [anon_sym_BSLASHpnotecite] = ACTIONS(12345), + [anon_sym_BSLASHPnotecite] = ACTIONS(12345), + [anon_sym_BSLASHfnotecite] = ACTIONS(12345), + [anon_sym_BSLASHusepackage] = ACTIONS(12345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12345), + [anon_sym_BSLASHinclude] = ACTIONS(12345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12345), + [anon_sym_BSLASHinput] = ACTIONS(12345), + [anon_sym_BSLASHsubfile] = ACTIONS(12345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12345), + [anon_sym_BSLASHbibliography] = ACTIONS(12345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12345), + [anon_sym_BSLASHincludesvg] = ACTIONS(12345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12345), + [anon_sym_BSLASHimport] = ACTIONS(12345), + [anon_sym_BSLASHsubimport] = ACTIONS(12345), + [anon_sym_BSLASHinputfrom] = ACTIONS(12345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12345), + [anon_sym_BSLASHincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHlabel] = ACTIONS(12345), + [anon_sym_BSLASHref] = ACTIONS(12345), + [anon_sym_BSLASHvref] = ACTIONS(12345), + [anon_sym_BSLASHVref] = ACTIONS(12345), + [anon_sym_BSLASHautoref] = ACTIONS(12345), + [anon_sym_BSLASHpageref] = ACTIONS(12345), + [anon_sym_BSLASHcref] = ACTIONS(12345), + [anon_sym_BSLASHCref] = ACTIONS(12345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnameCref] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHlabelcref] = ACTIONS(12345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12345), + [anon_sym_BSLASHeqref] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange] = ACTIONS(12345), + [anon_sym_BSLASHCrefrange] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewlabel] = ACTIONS(12345), + [anon_sym_BSLASHnewcommand] = ACTIONS(12345), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12345), + [anon_sym_BSLASHgls] = ACTIONS(12345), + [anon_sym_BSLASHGls] = ACTIONS(12345), + [anon_sym_BSLASHGLS] = ACTIONS(12345), + [anon_sym_BSLASHglspl] = ACTIONS(12345), + [anon_sym_BSLASHGlspl] = ACTIONS(12345), + [anon_sym_BSLASHGLSpl] = ACTIONS(12345), + [anon_sym_BSLASHglsdisp] = ACTIONS(12345), + [anon_sym_BSLASHglslink] = ACTIONS(12345), + [anon_sym_BSLASHglstext] = ACTIONS(12345), + [anon_sym_BSLASHGlstext] = ACTIONS(12345), + [anon_sym_BSLASHGLStext] = ACTIONS(12345), + [anon_sym_BSLASHglsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12345), + [anon_sym_BSLASHglsplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSplural] = ACTIONS(12345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHglsname] = ACTIONS(12345), + [anon_sym_BSLASHGlsname] = ACTIONS(12345), + [anon_sym_BSLASHGLSname] = ACTIONS(12345), + [anon_sym_BSLASHglssymbol] = ACTIONS(12345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12345), + [anon_sym_BSLASHglsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12345), + [anon_sym_BSLASHglsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12345), + [anon_sym_BSLASHglsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12345), + [anon_sym_BSLASHglsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12345), + [anon_sym_BSLASHglsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12345), + [anon_sym_BSLASHnewacronym] = ACTIONS(12345), + [anon_sym_BSLASHacrshort] = ACTIONS(12345), + [anon_sym_BSLASHAcrshort] = ACTIONS(12345), + [anon_sym_BSLASHACRshort] = ACTIONS(12345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12345), + [anon_sym_BSLASHacrlong] = ACTIONS(12345), + [anon_sym_BSLASHAcrlong] = ACTIONS(12345), + [anon_sym_BSLASHACRlong] = ACTIONS(12345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12345), + [anon_sym_BSLASHacrfull] = ACTIONS(12345), + [anon_sym_BSLASHAcrfull] = ACTIONS(12345), + [anon_sym_BSLASHACRfull] = ACTIONS(12345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12345), + [anon_sym_BSLASHacs] = ACTIONS(12345), + [anon_sym_BSLASHAcs] = ACTIONS(12345), + [anon_sym_BSLASHacsp] = ACTIONS(12345), + [anon_sym_BSLASHAcsp] = ACTIONS(12345), + [anon_sym_BSLASHacl] = ACTIONS(12345), + [anon_sym_BSLASHAcl] = ACTIONS(12345), + [anon_sym_BSLASHaclp] = ACTIONS(12345), + [anon_sym_BSLASHAclp] = ACTIONS(12345), + [anon_sym_BSLASHacf] = ACTIONS(12345), + [anon_sym_BSLASHAcf] = ACTIONS(12345), + [anon_sym_BSLASHacfp] = ACTIONS(12345), + [anon_sym_BSLASHAcfp] = ACTIONS(12345), + [anon_sym_BSLASHac] = ACTIONS(12345), + [anon_sym_BSLASHAc] = ACTIONS(12345), + [anon_sym_BSLASHacp] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12345), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12345), + [anon_sym_BSLASHcolor] = ACTIONS(12345), + [anon_sym_BSLASHcolorbox] = ACTIONS(12345), + [anon_sym_BSLASHtextcolor] = ACTIONS(12345), + [anon_sym_BSLASHpagecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12345), + }, + [1093] = { + [sym_generic_command_name] = ACTIONS(12104), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12104), + [aux_sym_chapter_token1] = ACTIONS(12104), + [aux_sym_section_token1] = ACTIONS(12104), + [aux_sym_subsection_token1] = ACTIONS(12104), + [aux_sym_subsubsection_token1] = ACTIONS(12104), + [aux_sym_paragraph_token1] = ACTIONS(12104), + [aux_sym_subparagraph_token1] = ACTIONS(12104), + [anon_sym_BSLASHitem] = ACTIONS(12104), + [anon_sym_LBRACK] = ACTIONS(12102), + [anon_sym_LBRACE] = ACTIONS(12102), + [anon_sym_LPAREN] = ACTIONS(12102), + [anon_sym_COMMA] = ACTIONS(12102), + [anon_sym_EQ] = ACTIONS(12102), + [sym_word] = ACTIONS(12102), + [sym_param] = ACTIONS(12102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12102), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12102), + [anon_sym_DOLLAR] = ACTIONS(12104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12102), + [anon_sym_BSLASHbegin] = ACTIONS(12104), + [anon_sym_BSLASHcaption] = ACTIONS(12104), + [anon_sym_BSLASHcite] = ACTIONS(12104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCite] = ACTIONS(12104), + [anon_sym_BSLASHnocite] = ACTIONS(12104), + [anon_sym_BSLASHcitet] = ACTIONS(12104), + [anon_sym_BSLASHcitep] = ACTIONS(12104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteauthor] = ACTIONS(12104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitetitle] = ACTIONS(12104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteyear] = ACTIONS(12104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitedate] = ACTIONS(12104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteurl] = ACTIONS(12104), + [anon_sym_BSLASHfullcite] = ACTIONS(12104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12104), + [anon_sym_BSLASHcitealt] = ACTIONS(12104), + [anon_sym_BSLASHcitealp] = ACTIONS(12104), + [anon_sym_BSLASHcitetext] = ACTIONS(12104), + [anon_sym_BSLASHparencite] = ACTIONS(12104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHParencite] = ACTIONS(12104), + [anon_sym_BSLASHfootcite] = ACTIONS(12104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12104), + [anon_sym_BSLASHtextcite] = ACTIONS(12104), + [anon_sym_BSLASHTextcite] = ACTIONS(12104), + [anon_sym_BSLASHsmartcite] = ACTIONS(12104), + [anon_sym_BSLASHSmartcite] = ACTIONS(12104), + [anon_sym_BSLASHsupercite] = ACTIONS(12104), + [anon_sym_BSLASHautocite] = ACTIONS(12104), + [anon_sym_BSLASHAutocite] = ACTIONS(12104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHvolcite] = ACTIONS(12104), + [anon_sym_BSLASHVolcite] = ACTIONS(12104), + [anon_sym_BSLASHpvolcite] = ACTIONS(12104), + [anon_sym_BSLASHPvolcite] = ACTIONS(12104), + [anon_sym_BSLASHfvolcite] = ACTIONS(12104), + [anon_sym_BSLASHftvolcite] = ACTIONS(12104), + [anon_sym_BSLASHsvolcite] = ACTIONS(12104), + [anon_sym_BSLASHSvolcite] = ACTIONS(12104), + [anon_sym_BSLASHtvolcite] = ACTIONS(12104), + [anon_sym_BSLASHTvolcite] = ACTIONS(12104), + [anon_sym_BSLASHavolcite] = ACTIONS(12104), + [anon_sym_BSLASHAvolcite] = ACTIONS(12104), + [anon_sym_BSLASHnotecite] = ACTIONS(12104), + [anon_sym_BSLASHpnotecite] = ACTIONS(12104), + [anon_sym_BSLASHPnotecite] = ACTIONS(12104), + [anon_sym_BSLASHfnotecite] = ACTIONS(12104), + [anon_sym_BSLASHusepackage] = ACTIONS(12104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12104), + [anon_sym_BSLASHinclude] = ACTIONS(12104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12104), + [anon_sym_BSLASHinput] = ACTIONS(12104), + [anon_sym_BSLASHsubfile] = ACTIONS(12104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12104), + [anon_sym_BSLASHbibliography] = ACTIONS(12104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12104), + [anon_sym_BSLASHincludesvg] = ACTIONS(12104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12104), + [anon_sym_BSLASHimport] = ACTIONS(12104), + [anon_sym_BSLASHsubimport] = ACTIONS(12104), + [anon_sym_BSLASHinputfrom] = ACTIONS(12104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12104), + [anon_sym_BSLASHincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHlabel] = ACTIONS(12104), + [anon_sym_BSLASHref] = ACTIONS(12104), + [anon_sym_BSLASHvref] = ACTIONS(12104), + [anon_sym_BSLASHVref] = ACTIONS(12104), + [anon_sym_BSLASHautoref] = ACTIONS(12104), + [anon_sym_BSLASHpageref] = ACTIONS(12104), + [anon_sym_BSLASHcref] = ACTIONS(12104), + [anon_sym_BSLASHCref] = ACTIONS(12104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnameCref] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHlabelcref] = ACTIONS(12104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12104), + [anon_sym_BSLASHeqref] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange] = ACTIONS(12104), + [anon_sym_BSLASHCrefrange] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewlabel] = ACTIONS(12104), + [anon_sym_BSLASHnewcommand] = ACTIONS(12104), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12104), + [anon_sym_BSLASHgls] = ACTIONS(12104), + [anon_sym_BSLASHGls] = ACTIONS(12104), + [anon_sym_BSLASHGLS] = ACTIONS(12104), + [anon_sym_BSLASHglspl] = ACTIONS(12104), + [anon_sym_BSLASHGlspl] = ACTIONS(12104), + [anon_sym_BSLASHGLSpl] = ACTIONS(12104), + [anon_sym_BSLASHglsdisp] = ACTIONS(12104), + [anon_sym_BSLASHglslink] = ACTIONS(12104), + [anon_sym_BSLASHglstext] = ACTIONS(12104), + [anon_sym_BSLASHGlstext] = ACTIONS(12104), + [anon_sym_BSLASHGLStext] = ACTIONS(12104), + [anon_sym_BSLASHglsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12104), + [anon_sym_BSLASHglsplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSplural] = ACTIONS(12104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHglsname] = ACTIONS(12104), + [anon_sym_BSLASHGlsname] = ACTIONS(12104), + [anon_sym_BSLASHGLSname] = ACTIONS(12104), + [anon_sym_BSLASHglssymbol] = ACTIONS(12104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12104), + [anon_sym_BSLASHglsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12104), + [anon_sym_BSLASHglsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12104), + [anon_sym_BSLASHglsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12104), + [anon_sym_BSLASHglsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12104), + [anon_sym_BSLASHglsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12104), + [anon_sym_BSLASHnewacronym] = ACTIONS(12104), + [anon_sym_BSLASHacrshort] = ACTIONS(12104), + [anon_sym_BSLASHAcrshort] = ACTIONS(12104), + [anon_sym_BSLASHACRshort] = ACTIONS(12104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12104), + [anon_sym_BSLASHacrlong] = ACTIONS(12104), + [anon_sym_BSLASHAcrlong] = ACTIONS(12104), + [anon_sym_BSLASHACRlong] = ACTIONS(12104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12104), + [anon_sym_BSLASHacrfull] = ACTIONS(12104), + [anon_sym_BSLASHAcrfull] = ACTIONS(12104), + [anon_sym_BSLASHACRfull] = ACTIONS(12104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12104), + [anon_sym_BSLASHacs] = ACTIONS(12104), + [anon_sym_BSLASHAcs] = ACTIONS(12104), + [anon_sym_BSLASHacsp] = ACTIONS(12104), + [anon_sym_BSLASHAcsp] = ACTIONS(12104), + [anon_sym_BSLASHacl] = ACTIONS(12104), + [anon_sym_BSLASHAcl] = ACTIONS(12104), + [anon_sym_BSLASHaclp] = ACTIONS(12104), + [anon_sym_BSLASHAclp] = ACTIONS(12104), + [anon_sym_BSLASHacf] = ACTIONS(12104), + [anon_sym_BSLASHAcf] = ACTIONS(12104), + [anon_sym_BSLASHacfp] = ACTIONS(12104), + [anon_sym_BSLASHAcfp] = ACTIONS(12104), + [anon_sym_BSLASHac] = ACTIONS(12104), + [anon_sym_BSLASHAc] = ACTIONS(12104), + [anon_sym_BSLASHacp] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12104), + [anon_sym_BSLASHcolor] = ACTIONS(12104), + [anon_sym_BSLASHcolorbox] = ACTIONS(12104), + [anon_sym_BSLASHtextcolor] = ACTIONS(12104), + [anon_sym_BSLASHpagecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12104), + }, + [1094] = { + [sym_generic_command_name] = ACTIONS(12547), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12547), + [aux_sym_chapter_token1] = ACTIONS(12547), + [aux_sym_section_token1] = ACTIONS(12547), + [aux_sym_subsection_token1] = ACTIONS(12547), + [aux_sym_subsubsection_token1] = ACTIONS(12547), + [aux_sym_paragraph_token1] = ACTIONS(12547), + [aux_sym_subparagraph_token1] = ACTIONS(12547), + [anon_sym_BSLASHitem] = ACTIONS(12547), + [anon_sym_LBRACK] = ACTIONS(12545), + [anon_sym_LBRACE] = ACTIONS(12545), + [anon_sym_LPAREN] = ACTIONS(12545), + [anon_sym_COMMA] = ACTIONS(12545), + [anon_sym_EQ] = ACTIONS(12545), + [sym_word] = ACTIONS(12545), + [sym_param] = ACTIONS(12545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12545), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12545), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12545), + [anon_sym_DOLLAR] = ACTIONS(12547), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12545), + [anon_sym_BSLASHbegin] = ACTIONS(12547), + [anon_sym_BSLASHcaption] = ACTIONS(12547), + [anon_sym_BSLASHcite] = ACTIONS(12547), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCite] = ACTIONS(12547), + [anon_sym_BSLASHnocite] = ACTIONS(12547), + [anon_sym_BSLASHcitet] = ACTIONS(12547), + [anon_sym_BSLASHcitep] = ACTIONS(12547), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteauthor] = ACTIONS(12547), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12547), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitetitle] = ACTIONS(12547), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteyear] = ACTIONS(12547), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitedate] = ACTIONS(12547), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteurl] = ACTIONS(12547), + [anon_sym_BSLASHfullcite] = ACTIONS(12547), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12547), + [anon_sym_BSLASHcitealt] = ACTIONS(12547), + [anon_sym_BSLASHcitealp] = ACTIONS(12547), + [anon_sym_BSLASHcitetext] = ACTIONS(12547), + [anon_sym_BSLASHparencite] = ACTIONS(12547), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHParencite] = ACTIONS(12547), + [anon_sym_BSLASHfootcite] = ACTIONS(12547), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12547), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12547), + [anon_sym_BSLASHtextcite] = ACTIONS(12547), + [anon_sym_BSLASHTextcite] = ACTIONS(12547), + [anon_sym_BSLASHsmartcite] = ACTIONS(12547), + [anon_sym_BSLASHSmartcite] = ACTIONS(12547), + [anon_sym_BSLASHsupercite] = ACTIONS(12547), + [anon_sym_BSLASHautocite] = ACTIONS(12547), + [anon_sym_BSLASHAutocite] = ACTIONS(12547), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHvolcite] = ACTIONS(12547), + [anon_sym_BSLASHVolcite] = ACTIONS(12547), + [anon_sym_BSLASHpvolcite] = ACTIONS(12547), + [anon_sym_BSLASHPvolcite] = ACTIONS(12547), + [anon_sym_BSLASHfvolcite] = ACTIONS(12547), + [anon_sym_BSLASHftvolcite] = ACTIONS(12547), + [anon_sym_BSLASHsvolcite] = ACTIONS(12547), + [anon_sym_BSLASHSvolcite] = ACTIONS(12547), + [anon_sym_BSLASHtvolcite] = ACTIONS(12547), + [anon_sym_BSLASHTvolcite] = ACTIONS(12547), + [anon_sym_BSLASHavolcite] = ACTIONS(12547), + [anon_sym_BSLASHAvolcite] = ACTIONS(12547), + [anon_sym_BSLASHnotecite] = ACTIONS(12547), + [anon_sym_BSLASHpnotecite] = ACTIONS(12547), + [anon_sym_BSLASHPnotecite] = ACTIONS(12547), + [anon_sym_BSLASHfnotecite] = ACTIONS(12547), + [anon_sym_BSLASHusepackage] = ACTIONS(12547), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12547), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12547), + [anon_sym_BSLASHinclude] = ACTIONS(12547), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12547), + [anon_sym_BSLASHinput] = ACTIONS(12547), + [anon_sym_BSLASHsubfile] = ACTIONS(12547), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12547), + [anon_sym_BSLASHbibliography] = ACTIONS(12547), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12547), + [anon_sym_BSLASHincludesvg] = ACTIONS(12547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12547), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12547), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12547), + [anon_sym_BSLASHimport] = ACTIONS(12547), + [anon_sym_BSLASHsubimport] = ACTIONS(12547), + [anon_sym_BSLASHinputfrom] = ACTIONS(12547), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12547), + [anon_sym_BSLASHincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHlabel] = ACTIONS(12547), + [anon_sym_BSLASHref] = ACTIONS(12547), + [anon_sym_BSLASHvref] = ACTIONS(12547), + [anon_sym_BSLASHVref] = ACTIONS(12547), + [anon_sym_BSLASHautoref] = ACTIONS(12547), + [anon_sym_BSLASHpageref] = ACTIONS(12547), + [anon_sym_BSLASHcref] = ACTIONS(12547), + [anon_sym_BSLASHCref] = ACTIONS(12547), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnameCref] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHlabelcref] = ACTIONS(12547), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12547), + [anon_sym_BSLASHeqref] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange] = ACTIONS(12547), + [anon_sym_BSLASHCrefrange] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewlabel] = ACTIONS(12547), + [anon_sym_BSLASHnewcommand] = ACTIONS(12547), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12547), + [anon_sym_BSLASHgls] = ACTIONS(12547), + [anon_sym_BSLASHGls] = ACTIONS(12547), + [anon_sym_BSLASHGLS] = ACTIONS(12547), + [anon_sym_BSLASHglspl] = ACTIONS(12547), + [anon_sym_BSLASHGlspl] = ACTIONS(12547), + [anon_sym_BSLASHGLSpl] = ACTIONS(12547), + [anon_sym_BSLASHglsdisp] = ACTIONS(12547), + [anon_sym_BSLASHglslink] = ACTIONS(12547), + [anon_sym_BSLASHglstext] = ACTIONS(12547), + [anon_sym_BSLASHGlstext] = ACTIONS(12547), + [anon_sym_BSLASHGLStext] = ACTIONS(12547), + [anon_sym_BSLASHglsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12547), + [anon_sym_BSLASHglsplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSplural] = ACTIONS(12547), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHglsname] = ACTIONS(12547), + [anon_sym_BSLASHGlsname] = ACTIONS(12547), + [anon_sym_BSLASHGLSname] = ACTIONS(12547), + [anon_sym_BSLASHglssymbol] = ACTIONS(12547), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12547), + [anon_sym_BSLASHglsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12547), + [anon_sym_BSLASHglsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12547), + [anon_sym_BSLASHglsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12547), + [anon_sym_BSLASHglsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12547), + [anon_sym_BSLASHglsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12547), + [anon_sym_BSLASHnewacronym] = ACTIONS(12547), + [anon_sym_BSLASHacrshort] = ACTIONS(12547), + [anon_sym_BSLASHAcrshort] = ACTIONS(12547), + [anon_sym_BSLASHACRshort] = ACTIONS(12547), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12547), + [anon_sym_BSLASHacrlong] = ACTIONS(12547), + [anon_sym_BSLASHAcrlong] = ACTIONS(12547), + [anon_sym_BSLASHACRlong] = ACTIONS(12547), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12547), + [anon_sym_BSLASHacrfull] = ACTIONS(12547), + [anon_sym_BSLASHAcrfull] = ACTIONS(12547), + [anon_sym_BSLASHACRfull] = ACTIONS(12547), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12547), + [anon_sym_BSLASHacs] = ACTIONS(12547), + [anon_sym_BSLASHAcs] = ACTIONS(12547), + [anon_sym_BSLASHacsp] = ACTIONS(12547), + [anon_sym_BSLASHAcsp] = ACTIONS(12547), + [anon_sym_BSLASHacl] = ACTIONS(12547), + [anon_sym_BSLASHAcl] = ACTIONS(12547), + [anon_sym_BSLASHaclp] = ACTIONS(12547), + [anon_sym_BSLASHAclp] = ACTIONS(12547), + [anon_sym_BSLASHacf] = ACTIONS(12547), + [anon_sym_BSLASHAcf] = ACTIONS(12547), + [anon_sym_BSLASHacfp] = ACTIONS(12547), + [anon_sym_BSLASHAcfp] = ACTIONS(12547), + [anon_sym_BSLASHac] = ACTIONS(12547), + [anon_sym_BSLASHAc] = ACTIONS(12547), + [anon_sym_BSLASHacp] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12547), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12547), + [anon_sym_BSLASHcolor] = ACTIONS(12547), + [anon_sym_BSLASHcolorbox] = ACTIONS(12547), + [anon_sym_BSLASHtextcolor] = ACTIONS(12547), + [anon_sym_BSLASHpagecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12547), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12547), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12547), + }, + [1095] = { + [sym_generic_command_name] = ACTIONS(12255), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12255), + [aux_sym_chapter_token1] = ACTIONS(12255), + [aux_sym_section_token1] = ACTIONS(12255), + [aux_sym_subsection_token1] = ACTIONS(12255), + [aux_sym_subsubsection_token1] = ACTIONS(12255), + [aux_sym_paragraph_token1] = ACTIONS(12255), + [aux_sym_subparagraph_token1] = ACTIONS(12255), + [anon_sym_BSLASHitem] = ACTIONS(12255), + [anon_sym_LBRACK] = ACTIONS(12253), + [anon_sym_LBRACE] = ACTIONS(12253), + [anon_sym_LPAREN] = ACTIONS(12253), + [anon_sym_COMMA] = ACTIONS(12253), + [anon_sym_EQ] = ACTIONS(12253), + [sym_word] = ACTIONS(12253), + [sym_param] = ACTIONS(12253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12253), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12253), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12253), + [anon_sym_DOLLAR] = ACTIONS(12255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12253), + [anon_sym_BSLASHbegin] = ACTIONS(12255), + [anon_sym_BSLASHcaption] = ACTIONS(12255), + [anon_sym_BSLASHcite] = ACTIONS(12255), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCite] = ACTIONS(12255), + [anon_sym_BSLASHnocite] = ACTIONS(12255), + [anon_sym_BSLASHcitet] = ACTIONS(12255), + [anon_sym_BSLASHcitep] = ACTIONS(12255), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteauthor] = ACTIONS(12255), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12255), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitetitle] = ACTIONS(12255), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteyear] = ACTIONS(12255), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitedate] = ACTIONS(12255), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteurl] = ACTIONS(12255), + [anon_sym_BSLASHfullcite] = ACTIONS(12255), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12255), + [anon_sym_BSLASHcitealt] = ACTIONS(12255), + [anon_sym_BSLASHcitealp] = ACTIONS(12255), + [anon_sym_BSLASHcitetext] = ACTIONS(12255), + [anon_sym_BSLASHparencite] = ACTIONS(12255), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHParencite] = ACTIONS(12255), + [anon_sym_BSLASHfootcite] = ACTIONS(12255), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12255), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12255), + [anon_sym_BSLASHtextcite] = ACTIONS(12255), + [anon_sym_BSLASHTextcite] = ACTIONS(12255), + [anon_sym_BSLASHsmartcite] = ACTIONS(12255), + [anon_sym_BSLASHSmartcite] = ACTIONS(12255), + [anon_sym_BSLASHsupercite] = ACTIONS(12255), + [anon_sym_BSLASHautocite] = ACTIONS(12255), + [anon_sym_BSLASHAutocite] = ACTIONS(12255), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHvolcite] = ACTIONS(12255), + [anon_sym_BSLASHVolcite] = ACTIONS(12255), + [anon_sym_BSLASHpvolcite] = ACTIONS(12255), + [anon_sym_BSLASHPvolcite] = ACTIONS(12255), + [anon_sym_BSLASHfvolcite] = ACTIONS(12255), + [anon_sym_BSLASHftvolcite] = ACTIONS(12255), + [anon_sym_BSLASHsvolcite] = ACTIONS(12255), + [anon_sym_BSLASHSvolcite] = ACTIONS(12255), + [anon_sym_BSLASHtvolcite] = ACTIONS(12255), + [anon_sym_BSLASHTvolcite] = ACTIONS(12255), + [anon_sym_BSLASHavolcite] = ACTIONS(12255), + [anon_sym_BSLASHAvolcite] = ACTIONS(12255), + [anon_sym_BSLASHnotecite] = ACTIONS(12255), + [anon_sym_BSLASHpnotecite] = ACTIONS(12255), + [anon_sym_BSLASHPnotecite] = ACTIONS(12255), + [anon_sym_BSLASHfnotecite] = ACTIONS(12255), + [anon_sym_BSLASHusepackage] = ACTIONS(12255), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12255), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12255), + [anon_sym_BSLASHinclude] = ACTIONS(12255), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12255), + [anon_sym_BSLASHinput] = ACTIONS(12255), + [anon_sym_BSLASHsubfile] = ACTIONS(12255), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12255), + [anon_sym_BSLASHbibliography] = ACTIONS(12255), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12255), + [anon_sym_BSLASHincludesvg] = ACTIONS(12255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12255), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12255), + [anon_sym_BSLASHimport] = ACTIONS(12255), + [anon_sym_BSLASHsubimport] = ACTIONS(12255), + [anon_sym_BSLASHinputfrom] = ACTIONS(12255), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12255), + [anon_sym_BSLASHincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHlabel] = ACTIONS(12255), + [anon_sym_BSLASHref] = ACTIONS(12255), + [anon_sym_BSLASHvref] = ACTIONS(12255), + [anon_sym_BSLASHVref] = ACTIONS(12255), + [anon_sym_BSLASHautoref] = ACTIONS(12255), + [anon_sym_BSLASHpageref] = ACTIONS(12255), + [anon_sym_BSLASHcref] = ACTIONS(12255), + [anon_sym_BSLASHCref] = ACTIONS(12255), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnameCref] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHlabelcref] = ACTIONS(12255), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12255), + [anon_sym_BSLASHeqref] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange] = ACTIONS(12255), + [anon_sym_BSLASHCrefrange] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewlabel] = ACTIONS(12255), + [anon_sym_BSLASHnewcommand] = ACTIONS(12255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12255), + [anon_sym_BSLASHgls] = ACTIONS(12255), + [anon_sym_BSLASHGls] = ACTIONS(12255), + [anon_sym_BSLASHGLS] = ACTIONS(12255), + [anon_sym_BSLASHglspl] = ACTIONS(12255), + [anon_sym_BSLASHGlspl] = ACTIONS(12255), + [anon_sym_BSLASHGLSpl] = ACTIONS(12255), + [anon_sym_BSLASHglsdisp] = ACTIONS(12255), + [anon_sym_BSLASHglslink] = ACTIONS(12255), + [anon_sym_BSLASHglstext] = ACTIONS(12255), + [anon_sym_BSLASHGlstext] = ACTIONS(12255), + [anon_sym_BSLASHGLStext] = ACTIONS(12255), + [anon_sym_BSLASHglsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12255), + [anon_sym_BSLASHglsplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSplural] = ACTIONS(12255), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHglsname] = ACTIONS(12255), + [anon_sym_BSLASHGlsname] = ACTIONS(12255), + [anon_sym_BSLASHGLSname] = ACTIONS(12255), + [anon_sym_BSLASHglssymbol] = ACTIONS(12255), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12255), + [anon_sym_BSLASHglsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12255), + [anon_sym_BSLASHglsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12255), + [anon_sym_BSLASHglsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12255), + [anon_sym_BSLASHglsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12255), + [anon_sym_BSLASHglsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12255), + [anon_sym_BSLASHnewacronym] = ACTIONS(12255), + [anon_sym_BSLASHacrshort] = ACTIONS(12255), + [anon_sym_BSLASHAcrshort] = ACTIONS(12255), + [anon_sym_BSLASHACRshort] = ACTIONS(12255), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12255), + [anon_sym_BSLASHacrlong] = ACTIONS(12255), + [anon_sym_BSLASHAcrlong] = ACTIONS(12255), + [anon_sym_BSLASHACRlong] = ACTIONS(12255), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12255), + [anon_sym_BSLASHacrfull] = ACTIONS(12255), + [anon_sym_BSLASHAcrfull] = ACTIONS(12255), + [anon_sym_BSLASHACRfull] = ACTIONS(12255), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12255), + [anon_sym_BSLASHacs] = ACTIONS(12255), + [anon_sym_BSLASHAcs] = ACTIONS(12255), + [anon_sym_BSLASHacsp] = ACTIONS(12255), + [anon_sym_BSLASHAcsp] = ACTIONS(12255), + [anon_sym_BSLASHacl] = ACTIONS(12255), + [anon_sym_BSLASHAcl] = ACTIONS(12255), + [anon_sym_BSLASHaclp] = ACTIONS(12255), + [anon_sym_BSLASHAclp] = ACTIONS(12255), + [anon_sym_BSLASHacf] = ACTIONS(12255), + [anon_sym_BSLASHAcf] = ACTIONS(12255), + [anon_sym_BSLASHacfp] = ACTIONS(12255), + [anon_sym_BSLASHAcfp] = ACTIONS(12255), + [anon_sym_BSLASHac] = ACTIONS(12255), + [anon_sym_BSLASHAc] = ACTIONS(12255), + [anon_sym_BSLASHacp] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12255), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12255), + [anon_sym_BSLASHcolor] = ACTIONS(12255), + [anon_sym_BSLASHcolorbox] = ACTIONS(12255), + [anon_sym_BSLASHtextcolor] = ACTIONS(12255), + [anon_sym_BSLASHpagecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12255), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12255), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12255), + }, + [1096] = { + [sym_generic_command_name] = ACTIONS(12559), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12559), + [aux_sym_chapter_token1] = ACTIONS(12559), + [aux_sym_section_token1] = ACTIONS(12559), + [aux_sym_subsection_token1] = ACTIONS(12559), + [aux_sym_subsubsection_token1] = ACTIONS(12559), + [aux_sym_paragraph_token1] = ACTIONS(12559), + [aux_sym_subparagraph_token1] = ACTIONS(12559), + [anon_sym_BSLASHitem] = ACTIONS(12559), + [anon_sym_LBRACK] = ACTIONS(12557), + [anon_sym_LBRACE] = ACTIONS(12557), + [anon_sym_LPAREN] = ACTIONS(12557), + [anon_sym_COMMA] = ACTIONS(12557), + [anon_sym_EQ] = ACTIONS(12557), + [sym_word] = ACTIONS(12557), + [sym_param] = ACTIONS(12557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12557), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12557), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12557), + [anon_sym_DOLLAR] = ACTIONS(12559), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12557), + [anon_sym_BSLASHbegin] = ACTIONS(12559), + [anon_sym_BSLASHcaption] = ACTIONS(12559), + [anon_sym_BSLASHcite] = ACTIONS(12559), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCite] = ACTIONS(12559), + [anon_sym_BSLASHnocite] = ACTIONS(12559), + [anon_sym_BSLASHcitet] = ACTIONS(12559), + [anon_sym_BSLASHcitep] = ACTIONS(12559), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteauthor] = ACTIONS(12559), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12559), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitetitle] = ACTIONS(12559), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteyear] = ACTIONS(12559), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitedate] = ACTIONS(12559), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteurl] = ACTIONS(12559), + [anon_sym_BSLASHfullcite] = ACTIONS(12559), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12559), + [anon_sym_BSLASHcitealt] = ACTIONS(12559), + [anon_sym_BSLASHcitealp] = ACTIONS(12559), + [anon_sym_BSLASHcitetext] = ACTIONS(12559), + [anon_sym_BSLASHparencite] = ACTIONS(12559), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHParencite] = ACTIONS(12559), + [anon_sym_BSLASHfootcite] = ACTIONS(12559), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12559), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12559), + [anon_sym_BSLASHtextcite] = ACTIONS(12559), + [anon_sym_BSLASHTextcite] = ACTIONS(12559), + [anon_sym_BSLASHsmartcite] = ACTIONS(12559), + [anon_sym_BSLASHSmartcite] = ACTIONS(12559), + [anon_sym_BSLASHsupercite] = ACTIONS(12559), + [anon_sym_BSLASHautocite] = ACTIONS(12559), + [anon_sym_BSLASHAutocite] = ACTIONS(12559), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHvolcite] = ACTIONS(12559), + [anon_sym_BSLASHVolcite] = ACTIONS(12559), + [anon_sym_BSLASHpvolcite] = ACTIONS(12559), + [anon_sym_BSLASHPvolcite] = ACTIONS(12559), + [anon_sym_BSLASHfvolcite] = ACTIONS(12559), + [anon_sym_BSLASHftvolcite] = ACTIONS(12559), + [anon_sym_BSLASHsvolcite] = ACTIONS(12559), + [anon_sym_BSLASHSvolcite] = ACTIONS(12559), + [anon_sym_BSLASHtvolcite] = ACTIONS(12559), + [anon_sym_BSLASHTvolcite] = ACTIONS(12559), + [anon_sym_BSLASHavolcite] = ACTIONS(12559), + [anon_sym_BSLASHAvolcite] = ACTIONS(12559), + [anon_sym_BSLASHnotecite] = ACTIONS(12559), + [anon_sym_BSLASHpnotecite] = ACTIONS(12559), + [anon_sym_BSLASHPnotecite] = ACTIONS(12559), + [anon_sym_BSLASHfnotecite] = ACTIONS(12559), + [anon_sym_BSLASHusepackage] = ACTIONS(12559), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12559), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12559), + [anon_sym_BSLASHinclude] = ACTIONS(12559), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12559), + [anon_sym_BSLASHinput] = ACTIONS(12559), + [anon_sym_BSLASHsubfile] = ACTIONS(12559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12559), + [anon_sym_BSLASHbibliography] = ACTIONS(12559), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12559), + [anon_sym_BSLASHincludesvg] = ACTIONS(12559), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12559), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12559), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12559), + [anon_sym_BSLASHimport] = ACTIONS(12559), + [anon_sym_BSLASHsubimport] = ACTIONS(12559), + [anon_sym_BSLASHinputfrom] = ACTIONS(12559), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12559), + [anon_sym_BSLASHincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHlabel] = ACTIONS(12559), + [anon_sym_BSLASHref] = ACTIONS(12559), + [anon_sym_BSLASHvref] = ACTIONS(12559), + [anon_sym_BSLASHVref] = ACTIONS(12559), + [anon_sym_BSLASHautoref] = ACTIONS(12559), + [anon_sym_BSLASHpageref] = ACTIONS(12559), + [anon_sym_BSLASHcref] = ACTIONS(12559), + [anon_sym_BSLASHCref] = ACTIONS(12559), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnameCref] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHlabelcref] = ACTIONS(12559), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12559), + [anon_sym_BSLASHeqref] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange] = ACTIONS(12559), + [anon_sym_BSLASHCrefrange] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewlabel] = ACTIONS(12559), + [anon_sym_BSLASHnewcommand] = ACTIONS(12559), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12559), + [anon_sym_BSLASHgls] = ACTIONS(12559), + [anon_sym_BSLASHGls] = ACTIONS(12559), + [anon_sym_BSLASHGLS] = ACTIONS(12559), + [anon_sym_BSLASHglspl] = ACTIONS(12559), + [anon_sym_BSLASHGlspl] = ACTIONS(12559), + [anon_sym_BSLASHGLSpl] = ACTIONS(12559), + [anon_sym_BSLASHglsdisp] = ACTIONS(12559), + [anon_sym_BSLASHglslink] = ACTIONS(12559), + [anon_sym_BSLASHglstext] = ACTIONS(12559), + [anon_sym_BSLASHGlstext] = ACTIONS(12559), + [anon_sym_BSLASHGLStext] = ACTIONS(12559), + [anon_sym_BSLASHglsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12559), + [anon_sym_BSLASHglsplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSplural] = ACTIONS(12559), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHglsname] = ACTIONS(12559), + [anon_sym_BSLASHGlsname] = ACTIONS(12559), + [anon_sym_BSLASHGLSname] = ACTIONS(12559), + [anon_sym_BSLASHglssymbol] = ACTIONS(12559), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12559), + [anon_sym_BSLASHglsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12559), + [anon_sym_BSLASHglsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12559), + [anon_sym_BSLASHglsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12559), + [anon_sym_BSLASHglsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12559), + [anon_sym_BSLASHglsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12559), + [anon_sym_BSLASHnewacronym] = ACTIONS(12559), + [anon_sym_BSLASHacrshort] = ACTIONS(12559), + [anon_sym_BSLASHAcrshort] = ACTIONS(12559), + [anon_sym_BSLASHACRshort] = ACTIONS(12559), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12559), + [anon_sym_BSLASHacrlong] = ACTIONS(12559), + [anon_sym_BSLASHAcrlong] = ACTIONS(12559), + [anon_sym_BSLASHACRlong] = ACTIONS(12559), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12559), + [anon_sym_BSLASHacrfull] = ACTIONS(12559), + [anon_sym_BSLASHAcrfull] = ACTIONS(12559), + [anon_sym_BSLASHACRfull] = ACTIONS(12559), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12559), + [anon_sym_BSLASHacs] = ACTIONS(12559), + [anon_sym_BSLASHAcs] = ACTIONS(12559), + [anon_sym_BSLASHacsp] = ACTIONS(12559), + [anon_sym_BSLASHAcsp] = ACTIONS(12559), + [anon_sym_BSLASHacl] = ACTIONS(12559), + [anon_sym_BSLASHAcl] = ACTIONS(12559), + [anon_sym_BSLASHaclp] = ACTIONS(12559), + [anon_sym_BSLASHAclp] = ACTIONS(12559), + [anon_sym_BSLASHacf] = ACTIONS(12559), + [anon_sym_BSLASHAcf] = ACTIONS(12559), + [anon_sym_BSLASHacfp] = ACTIONS(12559), + [anon_sym_BSLASHAcfp] = ACTIONS(12559), + [anon_sym_BSLASHac] = ACTIONS(12559), + [anon_sym_BSLASHAc] = ACTIONS(12559), + [anon_sym_BSLASHacp] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12559), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12559), + [anon_sym_BSLASHcolor] = ACTIONS(12559), + [anon_sym_BSLASHcolorbox] = ACTIONS(12559), + [anon_sym_BSLASHtextcolor] = ACTIONS(12559), + [anon_sym_BSLASHpagecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12559), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12559), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12559), + }, + [1097] = { + [sym_generic_command_name] = ACTIONS(12555), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12555), + [aux_sym_chapter_token1] = ACTIONS(12555), + [aux_sym_section_token1] = ACTIONS(12555), + [aux_sym_subsection_token1] = ACTIONS(12555), + [aux_sym_subsubsection_token1] = ACTIONS(12555), + [aux_sym_paragraph_token1] = ACTIONS(12555), + [aux_sym_subparagraph_token1] = ACTIONS(12555), + [anon_sym_BSLASHitem] = ACTIONS(12555), + [anon_sym_LBRACK] = ACTIONS(12553), + [anon_sym_LBRACE] = ACTIONS(12553), + [anon_sym_LPAREN] = ACTIONS(12553), + [anon_sym_COMMA] = ACTIONS(12553), + [anon_sym_EQ] = ACTIONS(12553), + [sym_word] = ACTIONS(12553), + [sym_param] = ACTIONS(12553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12553), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12553), + [anon_sym_DOLLAR] = ACTIONS(12555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12553), + [anon_sym_BSLASHbegin] = ACTIONS(12555), + [anon_sym_BSLASHcaption] = ACTIONS(12555), + [anon_sym_BSLASHcite] = ACTIONS(12555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCite] = ACTIONS(12555), + [anon_sym_BSLASHnocite] = ACTIONS(12555), + [anon_sym_BSLASHcitet] = ACTIONS(12555), + [anon_sym_BSLASHcitep] = ACTIONS(12555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteauthor] = ACTIONS(12555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitetitle] = ACTIONS(12555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteyear] = ACTIONS(12555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitedate] = ACTIONS(12555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteurl] = ACTIONS(12555), + [anon_sym_BSLASHfullcite] = ACTIONS(12555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12555), + [anon_sym_BSLASHcitealt] = ACTIONS(12555), + [anon_sym_BSLASHcitealp] = ACTIONS(12555), + [anon_sym_BSLASHcitetext] = ACTIONS(12555), + [anon_sym_BSLASHparencite] = ACTIONS(12555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHParencite] = ACTIONS(12555), + [anon_sym_BSLASHfootcite] = ACTIONS(12555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12555), + [anon_sym_BSLASHtextcite] = ACTIONS(12555), + [anon_sym_BSLASHTextcite] = ACTIONS(12555), + [anon_sym_BSLASHsmartcite] = ACTIONS(12555), + [anon_sym_BSLASHSmartcite] = ACTIONS(12555), + [anon_sym_BSLASHsupercite] = ACTIONS(12555), + [anon_sym_BSLASHautocite] = ACTIONS(12555), + [anon_sym_BSLASHAutocite] = ACTIONS(12555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHvolcite] = ACTIONS(12555), + [anon_sym_BSLASHVolcite] = ACTIONS(12555), + [anon_sym_BSLASHpvolcite] = ACTIONS(12555), + [anon_sym_BSLASHPvolcite] = ACTIONS(12555), + [anon_sym_BSLASHfvolcite] = ACTIONS(12555), + [anon_sym_BSLASHftvolcite] = ACTIONS(12555), + [anon_sym_BSLASHsvolcite] = ACTIONS(12555), + [anon_sym_BSLASHSvolcite] = ACTIONS(12555), + [anon_sym_BSLASHtvolcite] = ACTIONS(12555), + [anon_sym_BSLASHTvolcite] = ACTIONS(12555), + [anon_sym_BSLASHavolcite] = ACTIONS(12555), + [anon_sym_BSLASHAvolcite] = ACTIONS(12555), + [anon_sym_BSLASHnotecite] = ACTIONS(12555), + [anon_sym_BSLASHpnotecite] = ACTIONS(12555), + [anon_sym_BSLASHPnotecite] = ACTIONS(12555), + [anon_sym_BSLASHfnotecite] = ACTIONS(12555), + [anon_sym_BSLASHusepackage] = ACTIONS(12555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12555), + [anon_sym_BSLASHinclude] = ACTIONS(12555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12555), + [anon_sym_BSLASHinput] = ACTIONS(12555), + [anon_sym_BSLASHsubfile] = ACTIONS(12555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12555), + [anon_sym_BSLASHbibliography] = ACTIONS(12555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12555), + [anon_sym_BSLASHincludesvg] = ACTIONS(12555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12555), + [anon_sym_BSLASHimport] = ACTIONS(12555), + [anon_sym_BSLASHsubimport] = ACTIONS(12555), + [anon_sym_BSLASHinputfrom] = ACTIONS(12555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12555), + [anon_sym_BSLASHincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHlabel] = ACTIONS(12555), + [anon_sym_BSLASHref] = ACTIONS(12555), + [anon_sym_BSLASHvref] = ACTIONS(12555), + [anon_sym_BSLASHVref] = ACTIONS(12555), + [anon_sym_BSLASHautoref] = ACTIONS(12555), + [anon_sym_BSLASHpageref] = ACTIONS(12555), + [anon_sym_BSLASHcref] = ACTIONS(12555), + [anon_sym_BSLASHCref] = ACTIONS(12555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnameCref] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHlabelcref] = ACTIONS(12555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12555), + [anon_sym_BSLASHeqref] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange] = ACTIONS(12555), + [anon_sym_BSLASHCrefrange] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewlabel] = ACTIONS(12555), + [anon_sym_BSLASHnewcommand] = ACTIONS(12555), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12555), + [anon_sym_BSLASHgls] = ACTIONS(12555), + [anon_sym_BSLASHGls] = ACTIONS(12555), + [anon_sym_BSLASHGLS] = ACTIONS(12555), + [anon_sym_BSLASHglspl] = ACTIONS(12555), + [anon_sym_BSLASHGlspl] = ACTIONS(12555), + [anon_sym_BSLASHGLSpl] = ACTIONS(12555), + [anon_sym_BSLASHglsdisp] = ACTIONS(12555), + [anon_sym_BSLASHglslink] = ACTIONS(12555), + [anon_sym_BSLASHglstext] = ACTIONS(12555), + [anon_sym_BSLASHGlstext] = ACTIONS(12555), + [anon_sym_BSLASHGLStext] = ACTIONS(12555), + [anon_sym_BSLASHglsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12555), + [anon_sym_BSLASHglsplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSplural] = ACTIONS(12555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHglsname] = ACTIONS(12555), + [anon_sym_BSLASHGlsname] = ACTIONS(12555), + [anon_sym_BSLASHGLSname] = ACTIONS(12555), + [anon_sym_BSLASHglssymbol] = ACTIONS(12555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12555), + [anon_sym_BSLASHglsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12555), + [anon_sym_BSLASHglsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12555), + [anon_sym_BSLASHglsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12555), + [anon_sym_BSLASHglsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12555), + [anon_sym_BSLASHglsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12555), + [anon_sym_BSLASHnewacronym] = ACTIONS(12555), + [anon_sym_BSLASHacrshort] = ACTIONS(12555), + [anon_sym_BSLASHAcrshort] = ACTIONS(12555), + [anon_sym_BSLASHACRshort] = ACTIONS(12555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12555), + [anon_sym_BSLASHacrlong] = ACTIONS(12555), + [anon_sym_BSLASHAcrlong] = ACTIONS(12555), + [anon_sym_BSLASHACRlong] = ACTIONS(12555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12555), + [anon_sym_BSLASHacrfull] = ACTIONS(12555), + [anon_sym_BSLASHAcrfull] = ACTIONS(12555), + [anon_sym_BSLASHACRfull] = ACTIONS(12555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12555), + [anon_sym_BSLASHacs] = ACTIONS(12555), + [anon_sym_BSLASHAcs] = ACTIONS(12555), + [anon_sym_BSLASHacsp] = ACTIONS(12555), + [anon_sym_BSLASHAcsp] = ACTIONS(12555), + [anon_sym_BSLASHacl] = ACTIONS(12555), + [anon_sym_BSLASHAcl] = ACTIONS(12555), + [anon_sym_BSLASHaclp] = ACTIONS(12555), + [anon_sym_BSLASHAclp] = ACTIONS(12555), + [anon_sym_BSLASHacf] = ACTIONS(12555), + [anon_sym_BSLASHAcf] = ACTIONS(12555), + [anon_sym_BSLASHacfp] = ACTIONS(12555), + [anon_sym_BSLASHAcfp] = ACTIONS(12555), + [anon_sym_BSLASHac] = ACTIONS(12555), + [anon_sym_BSLASHAc] = ACTIONS(12555), + [anon_sym_BSLASHacp] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12555), + [anon_sym_BSLASHcolor] = ACTIONS(12555), + [anon_sym_BSLASHcolorbox] = ACTIONS(12555), + [anon_sym_BSLASHtextcolor] = ACTIONS(12555), + [anon_sym_BSLASHpagecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12555), + }, + [1098] = { + [sym_generic_command_name] = ACTIONS(12551), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12551), + [aux_sym_chapter_token1] = ACTIONS(12551), + [aux_sym_section_token1] = ACTIONS(12551), + [aux_sym_subsection_token1] = ACTIONS(12551), + [aux_sym_subsubsection_token1] = ACTIONS(12551), + [aux_sym_paragraph_token1] = ACTIONS(12551), + [aux_sym_subparagraph_token1] = ACTIONS(12551), + [anon_sym_BSLASHitem] = ACTIONS(12551), + [anon_sym_LBRACK] = ACTIONS(12549), + [anon_sym_LBRACE] = ACTIONS(12549), + [anon_sym_LPAREN] = ACTIONS(12549), + [anon_sym_COMMA] = ACTIONS(12549), + [anon_sym_EQ] = ACTIONS(12549), + [sym_word] = ACTIONS(12549), + [sym_param] = ACTIONS(12549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12549), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12549), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12549), + [anon_sym_DOLLAR] = ACTIONS(12551), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12549), + [anon_sym_BSLASHbegin] = ACTIONS(12551), + [anon_sym_BSLASHcaption] = ACTIONS(12551), + [anon_sym_BSLASHcite] = ACTIONS(12551), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCite] = ACTIONS(12551), + [anon_sym_BSLASHnocite] = ACTIONS(12551), + [anon_sym_BSLASHcitet] = ACTIONS(12551), + [anon_sym_BSLASHcitep] = ACTIONS(12551), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteauthor] = ACTIONS(12551), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12551), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitetitle] = ACTIONS(12551), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteyear] = ACTIONS(12551), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitedate] = ACTIONS(12551), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteurl] = ACTIONS(12551), + [anon_sym_BSLASHfullcite] = ACTIONS(12551), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12551), + [anon_sym_BSLASHcitealt] = ACTIONS(12551), + [anon_sym_BSLASHcitealp] = ACTIONS(12551), + [anon_sym_BSLASHcitetext] = ACTIONS(12551), + [anon_sym_BSLASHparencite] = ACTIONS(12551), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHParencite] = ACTIONS(12551), + [anon_sym_BSLASHfootcite] = ACTIONS(12551), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12551), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12551), + [anon_sym_BSLASHtextcite] = ACTIONS(12551), + [anon_sym_BSLASHTextcite] = ACTIONS(12551), + [anon_sym_BSLASHsmartcite] = ACTIONS(12551), + [anon_sym_BSLASHSmartcite] = ACTIONS(12551), + [anon_sym_BSLASHsupercite] = ACTIONS(12551), + [anon_sym_BSLASHautocite] = ACTIONS(12551), + [anon_sym_BSLASHAutocite] = ACTIONS(12551), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHvolcite] = ACTIONS(12551), + [anon_sym_BSLASHVolcite] = ACTIONS(12551), + [anon_sym_BSLASHpvolcite] = ACTIONS(12551), + [anon_sym_BSLASHPvolcite] = ACTIONS(12551), + [anon_sym_BSLASHfvolcite] = ACTIONS(12551), + [anon_sym_BSLASHftvolcite] = ACTIONS(12551), + [anon_sym_BSLASHsvolcite] = ACTIONS(12551), + [anon_sym_BSLASHSvolcite] = ACTIONS(12551), + [anon_sym_BSLASHtvolcite] = ACTIONS(12551), + [anon_sym_BSLASHTvolcite] = ACTIONS(12551), + [anon_sym_BSLASHavolcite] = ACTIONS(12551), + [anon_sym_BSLASHAvolcite] = ACTIONS(12551), + [anon_sym_BSLASHnotecite] = ACTIONS(12551), + [anon_sym_BSLASHpnotecite] = ACTIONS(12551), + [anon_sym_BSLASHPnotecite] = ACTIONS(12551), + [anon_sym_BSLASHfnotecite] = ACTIONS(12551), + [anon_sym_BSLASHusepackage] = ACTIONS(12551), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12551), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12551), + [anon_sym_BSLASHinclude] = ACTIONS(12551), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12551), + [anon_sym_BSLASHinput] = ACTIONS(12551), + [anon_sym_BSLASHsubfile] = ACTIONS(12551), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12551), + [anon_sym_BSLASHbibliography] = ACTIONS(12551), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12551), + [anon_sym_BSLASHincludesvg] = ACTIONS(12551), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12551), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12551), + [anon_sym_BSLASHimport] = ACTIONS(12551), + [anon_sym_BSLASHsubimport] = ACTIONS(12551), + [anon_sym_BSLASHinputfrom] = ACTIONS(12551), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12551), + [anon_sym_BSLASHincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHlabel] = ACTIONS(12551), + [anon_sym_BSLASHref] = ACTIONS(12551), + [anon_sym_BSLASHvref] = ACTIONS(12551), + [anon_sym_BSLASHVref] = ACTIONS(12551), + [anon_sym_BSLASHautoref] = ACTIONS(12551), + [anon_sym_BSLASHpageref] = ACTIONS(12551), + [anon_sym_BSLASHcref] = ACTIONS(12551), + [anon_sym_BSLASHCref] = ACTIONS(12551), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnameCref] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHlabelcref] = ACTIONS(12551), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12551), + [anon_sym_BSLASHeqref] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange] = ACTIONS(12551), + [anon_sym_BSLASHCrefrange] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewlabel] = ACTIONS(12551), + [anon_sym_BSLASHnewcommand] = ACTIONS(12551), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12551), + [anon_sym_BSLASHgls] = ACTIONS(12551), + [anon_sym_BSLASHGls] = ACTIONS(12551), + [anon_sym_BSLASHGLS] = ACTIONS(12551), + [anon_sym_BSLASHglspl] = ACTIONS(12551), + [anon_sym_BSLASHGlspl] = ACTIONS(12551), + [anon_sym_BSLASHGLSpl] = ACTIONS(12551), + [anon_sym_BSLASHglsdisp] = ACTIONS(12551), + [anon_sym_BSLASHglslink] = ACTIONS(12551), + [anon_sym_BSLASHglstext] = ACTIONS(12551), + [anon_sym_BSLASHGlstext] = ACTIONS(12551), + [anon_sym_BSLASHGLStext] = ACTIONS(12551), + [anon_sym_BSLASHglsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12551), + [anon_sym_BSLASHglsplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSplural] = ACTIONS(12551), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHglsname] = ACTIONS(12551), + [anon_sym_BSLASHGlsname] = ACTIONS(12551), + [anon_sym_BSLASHGLSname] = ACTIONS(12551), + [anon_sym_BSLASHglssymbol] = ACTIONS(12551), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12551), + [anon_sym_BSLASHglsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12551), + [anon_sym_BSLASHglsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12551), + [anon_sym_BSLASHglsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12551), + [anon_sym_BSLASHglsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12551), + [anon_sym_BSLASHglsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12551), + [anon_sym_BSLASHnewacronym] = ACTIONS(12551), + [anon_sym_BSLASHacrshort] = ACTIONS(12551), + [anon_sym_BSLASHAcrshort] = ACTIONS(12551), + [anon_sym_BSLASHACRshort] = ACTIONS(12551), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12551), + [anon_sym_BSLASHacrlong] = ACTIONS(12551), + [anon_sym_BSLASHAcrlong] = ACTIONS(12551), + [anon_sym_BSLASHACRlong] = ACTIONS(12551), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12551), + [anon_sym_BSLASHacrfull] = ACTIONS(12551), + [anon_sym_BSLASHAcrfull] = ACTIONS(12551), + [anon_sym_BSLASHACRfull] = ACTIONS(12551), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12551), + [anon_sym_BSLASHacs] = ACTIONS(12551), + [anon_sym_BSLASHAcs] = ACTIONS(12551), + [anon_sym_BSLASHacsp] = ACTIONS(12551), + [anon_sym_BSLASHAcsp] = ACTIONS(12551), + [anon_sym_BSLASHacl] = ACTIONS(12551), + [anon_sym_BSLASHAcl] = ACTIONS(12551), + [anon_sym_BSLASHaclp] = ACTIONS(12551), + [anon_sym_BSLASHAclp] = ACTIONS(12551), + [anon_sym_BSLASHacf] = ACTIONS(12551), + [anon_sym_BSLASHAcf] = ACTIONS(12551), + [anon_sym_BSLASHacfp] = ACTIONS(12551), + [anon_sym_BSLASHAcfp] = ACTIONS(12551), + [anon_sym_BSLASHac] = ACTIONS(12551), + [anon_sym_BSLASHAc] = ACTIONS(12551), + [anon_sym_BSLASHacp] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12551), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12551), + [anon_sym_BSLASHcolor] = ACTIONS(12551), + [anon_sym_BSLASHcolorbox] = ACTIONS(12551), + [anon_sym_BSLASHtextcolor] = ACTIONS(12551), + [anon_sym_BSLASHpagecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12551), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12551), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12551), + }, + [1099] = { + [sym_generic_command_name] = ACTIONS(12535), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12535), + [aux_sym_chapter_token1] = ACTIONS(12535), + [aux_sym_section_token1] = ACTIONS(12535), + [aux_sym_subsection_token1] = ACTIONS(12535), + [aux_sym_subsubsection_token1] = ACTIONS(12535), + [aux_sym_paragraph_token1] = ACTIONS(12535), + [aux_sym_subparagraph_token1] = ACTIONS(12535), + [anon_sym_BSLASHitem] = ACTIONS(12535), + [anon_sym_LBRACK] = ACTIONS(12533), + [anon_sym_LBRACE] = ACTIONS(12533), + [anon_sym_LPAREN] = ACTIONS(12533), + [anon_sym_COMMA] = ACTIONS(12533), + [anon_sym_EQ] = ACTIONS(12533), + [sym_word] = ACTIONS(12533), + [sym_param] = ACTIONS(12533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12533), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12533), + [anon_sym_DOLLAR] = ACTIONS(12535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12533), + [anon_sym_BSLASHbegin] = ACTIONS(12535), + [anon_sym_BSLASHcaption] = ACTIONS(12535), + [anon_sym_BSLASHcite] = ACTIONS(12535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCite] = ACTIONS(12535), + [anon_sym_BSLASHnocite] = ACTIONS(12535), + [anon_sym_BSLASHcitet] = ACTIONS(12535), + [anon_sym_BSLASHcitep] = ACTIONS(12535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteauthor] = ACTIONS(12535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitetitle] = ACTIONS(12535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteyear] = ACTIONS(12535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitedate] = ACTIONS(12535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteurl] = ACTIONS(12535), + [anon_sym_BSLASHfullcite] = ACTIONS(12535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12535), + [anon_sym_BSLASHcitealt] = ACTIONS(12535), + [anon_sym_BSLASHcitealp] = ACTIONS(12535), + [anon_sym_BSLASHcitetext] = ACTIONS(12535), + [anon_sym_BSLASHparencite] = ACTIONS(12535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHParencite] = ACTIONS(12535), + [anon_sym_BSLASHfootcite] = ACTIONS(12535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12535), + [anon_sym_BSLASHtextcite] = ACTIONS(12535), + [anon_sym_BSLASHTextcite] = ACTIONS(12535), + [anon_sym_BSLASHsmartcite] = ACTIONS(12535), + [anon_sym_BSLASHSmartcite] = ACTIONS(12535), + [anon_sym_BSLASHsupercite] = ACTIONS(12535), + [anon_sym_BSLASHautocite] = ACTIONS(12535), + [anon_sym_BSLASHAutocite] = ACTIONS(12535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHvolcite] = ACTIONS(12535), + [anon_sym_BSLASHVolcite] = ACTIONS(12535), + [anon_sym_BSLASHpvolcite] = ACTIONS(12535), + [anon_sym_BSLASHPvolcite] = ACTIONS(12535), + [anon_sym_BSLASHfvolcite] = ACTIONS(12535), + [anon_sym_BSLASHftvolcite] = ACTIONS(12535), + [anon_sym_BSLASHsvolcite] = ACTIONS(12535), + [anon_sym_BSLASHSvolcite] = ACTIONS(12535), + [anon_sym_BSLASHtvolcite] = ACTIONS(12535), + [anon_sym_BSLASHTvolcite] = ACTIONS(12535), + [anon_sym_BSLASHavolcite] = ACTIONS(12535), + [anon_sym_BSLASHAvolcite] = ACTIONS(12535), + [anon_sym_BSLASHnotecite] = ACTIONS(12535), + [anon_sym_BSLASHpnotecite] = ACTIONS(12535), + [anon_sym_BSLASHPnotecite] = ACTIONS(12535), + [anon_sym_BSLASHfnotecite] = ACTIONS(12535), + [anon_sym_BSLASHusepackage] = ACTIONS(12535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12535), + [anon_sym_BSLASHinclude] = ACTIONS(12535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12535), + [anon_sym_BSLASHinput] = ACTIONS(12535), + [anon_sym_BSLASHsubfile] = ACTIONS(12535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12535), + [anon_sym_BSLASHbibliography] = ACTIONS(12535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12535), + [anon_sym_BSLASHincludesvg] = ACTIONS(12535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12535), + [anon_sym_BSLASHimport] = ACTIONS(12535), + [anon_sym_BSLASHsubimport] = ACTIONS(12535), + [anon_sym_BSLASHinputfrom] = ACTIONS(12535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12535), + [anon_sym_BSLASHincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHlabel] = ACTIONS(12535), + [anon_sym_BSLASHref] = ACTIONS(12535), + [anon_sym_BSLASHvref] = ACTIONS(12535), + [anon_sym_BSLASHVref] = ACTIONS(12535), + [anon_sym_BSLASHautoref] = ACTIONS(12535), + [anon_sym_BSLASHpageref] = ACTIONS(12535), + [anon_sym_BSLASHcref] = ACTIONS(12535), + [anon_sym_BSLASHCref] = ACTIONS(12535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnameCref] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHlabelcref] = ACTIONS(12535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12535), + [anon_sym_BSLASHeqref] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange] = ACTIONS(12535), + [anon_sym_BSLASHCrefrange] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewlabel] = ACTIONS(12535), + [anon_sym_BSLASHnewcommand] = ACTIONS(12535), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12535), + [anon_sym_BSLASHgls] = ACTIONS(12535), + [anon_sym_BSLASHGls] = ACTIONS(12535), + [anon_sym_BSLASHGLS] = ACTIONS(12535), + [anon_sym_BSLASHglspl] = ACTIONS(12535), + [anon_sym_BSLASHGlspl] = ACTIONS(12535), + [anon_sym_BSLASHGLSpl] = ACTIONS(12535), + [anon_sym_BSLASHglsdisp] = ACTIONS(12535), + [anon_sym_BSLASHglslink] = ACTIONS(12535), + [anon_sym_BSLASHglstext] = ACTIONS(12535), + [anon_sym_BSLASHGlstext] = ACTIONS(12535), + [anon_sym_BSLASHGLStext] = ACTIONS(12535), + [anon_sym_BSLASHglsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12535), + [anon_sym_BSLASHglsplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSplural] = ACTIONS(12535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHglsname] = ACTIONS(12535), + [anon_sym_BSLASHGlsname] = ACTIONS(12535), + [anon_sym_BSLASHGLSname] = ACTIONS(12535), + [anon_sym_BSLASHglssymbol] = ACTIONS(12535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12535), + [anon_sym_BSLASHglsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12535), + [anon_sym_BSLASHglsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12535), + [anon_sym_BSLASHglsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12535), + [anon_sym_BSLASHglsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12535), + [anon_sym_BSLASHglsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12535), + [anon_sym_BSLASHnewacronym] = ACTIONS(12535), + [anon_sym_BSLASHacrshort] = ACTIONS(12535), + [anon_sym_BSLASHAcrshort] = ACTIONS(12535), + [anon_sym_BSLASHACRshort] = ACTIONS(12535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12535), + [anon_sym_BSLASHacrlong] = ACTIONS(12535), + [anon_sym_BSLASHAcrlong] = ACTIONS(12535), + [anon_sym_BSLASHACRlong] = ACTIONS(12535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12535), + [anon_sym_BSLASHacrfull] = ACTIONS(12535), + [anon_sym_BSLASHAcrfull] = ACTIONS(12535), + [anon_sym_BSLASHACRfull] = ACTIONS(12535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12535), + [anon_sym_BSLASHacs] = ACTIONS(12535), + [anon_sym_BSLASHAcs] = ACTIONS(12535), + [anon_sym_BSLASHacsp] = ACTIONS(12535), + [anon_sym_BSLASHAcsp] = ACTIONS(12535), + [anon_sym_BSLASHacl] = ACTIONS(12535), + [anon_sym_BSLASHAcl] = ACTIONS(12535), + [anon_sym_BSLASHaclp] = ACTIONS(12535), + [anon_sym_BSLASHAclp] = ACTIONS(12535), + [anon_sym_BSLASHacf] = ACTIONS(12535), + [anon_sym_BSLASHAcf] = ACTIONS(12535), + [anon_sym_BSLASHacfp] = ACTIONS(12535), + [anon_sym_BSLASHAcfp] = ACTIONS(12535), + [anon_sym_BSLASHac] = ACTIONS(12535), + [anon_sym_BSLASHAc] = ACTIONS(12535), + [anon_sym_BSLASHacp] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12535), + [anon_sym_BSLASHcolor] = ACTIONS(12535), + [anon_sym_BSLASHcolorbox] = ACTIONS(12535), + [anon_sym_BSLASHtextcolor] = ACTIONS(12535), + [anon_sym_BSLASHpagecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12535), + }, + [1100] = { + [sym_generic_command_name] = ACTIONS(12231), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12231), + [aux_sym_section_token1] = ACTIONS(12231), + [aux_sym_subsection_token1] = ACTIONS(12231), + [aux_sym_subsubsection_token1] = ACTIONS(12231), + [aux_sym_paragraph_token1] = ACTIONS(12231), + [aux_sym_subparagraph_token1] = ACTIONS(12231), + [anon_sym_BSLASHitem] = ACTIONS(12231), + [anon_sym_LBRACK] = ACTIONS(12229), + [anon_sym_RBRACK] = ACTIONS(12229), + [anon_sym_LBRACE] = ACTIONS(12229), + [anon_sym_RBRACE] = ACTIONS(12229), + [anon_sym_LPAREN] = ACTIONS(12229), + [anon_sym_COMMA] = ACTIONS(12229), + [anon_sym_EQ] = ACTIONS(12229), + [sym_word] = ACTIONS(12229), + [sym_param] = ACTIONS(12229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12229), + [anon_sym_DOLLAR] = ACTIONS(12231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12229), + [anon_sym_BSLASHbegin] = ACTIONS(12231), + [anon_sym_BSLASHcaption] = ACTIONS(12231), + [anon_sym_BSLASHcite] = ACTIONS(12231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCite] = ACTIONS(12231), + [anon_sym_BSLASHnocite] = ACTIONS(12231), + [anon_sym_BSLASHcitet] = ACTIONS(12231), + [anon_sym_BSLASHcitep] = ACTIONS(12231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteauthor] = ACTIONS(12231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitetitle] = ACTIONS(12231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteyear] = ACTIONS(12231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitedate] = ACTIONS(12231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteurl] = ACTIONS(12231), + [anon_sym_BSLASHfullcite] = ACTIONS(12231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12231), + [anon_sym_BSLASHcitealt] = ACTIONS(12231), + [anon_sym_BSLASHcitealp] = ACTIONS(12231), + [anon_sym_BSLASHcitetext] = ACTIONS(12231), + [anon_sym_BSLASHparencite] = ACTIONS(12231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHParencite] = ACTIONS(12231), + [anon_sym_BSLASHfootcite] = ACTIONS(12231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12231), + [anon_sym_BSLASHtextcite] = ACTIONS(12231), + [anon_sym_BSLASHTextcite] = ACTIONS(12231), + [anon_sym_BSLASHsmartcite] = ACTIONS(12231), + [anon_sym_BSLASHSmartcite] = ACTIONS(12231), + [anon_sym_BSLASHsupercite] = ACTIONS(12231), + [anon_sym_BSLASHautocite] = ACTIONS(12231), + [anon_sym_BSLASHAutocite] = ACTIONS(12231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHvolcite] = ACTIONS(12231), + [anon_sym_BSLASHVolcite] = ACTIONS(12231), + [anon_sym_BSLASHpvolcite] = ACTIONS(12231), + [anon_sym_BSLASHPvolcite] = ACTIONS(12231), + [anon_sym_BSLASHfvolcite] = ACTIONS(12231), + [anon_sym_BSLASHftvolcite] = ACTIONS(12231), + [anon_sym_BSLASHsvolcite] = ACTIONS(12231), + [anon_sym_BSLASHSvolcite] = ACTIONS(12231), + [anon_sym_BSLASHtvolcite] = ACTIONS(12231), + [anon_sym_BSLASHTvolcite] = ACTIONS(12231), + [anon_sym_BSLASHavolcite] = ACTIONS(12231), + [anon_sym_BSLASHAvolcite] = ACTIONS(12231), + [anon_sym_BSLASHnotecite] = ACTIONS(12231), + [anon_sym_BSLASHpnotecite] = ACTIONS(12231), + [anon_sym_BSLASHPnotecite] = ACTIONS(12231), + [anon_sym_BSLASHfnotecite] = ACTIONS(12231), + [anon_sym_BSLASHusepackage] = ACTIONS(12231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12231), + [anon_sym_BSLASHinclude] = ACTIONS(12231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12231), + [anon_sym_BSLASHinput] = ACTIONS(12231), + [anon_sym_BSLASHsubfile] = ACTIONS(12231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12231), + [anon_sym_BSLASHbibliography] = ACTIONS(12231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12231), + [anon_sym_BSLASHincludesvg] = ACTIONS(12231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12231), + [anon_sym_BSLASHimport] = ACTIONS(12231), + [anon_sym_BSLASHsubimport] = ACTIONS(12231), + [anon_sym_BSLASHinputfrom] = ACTIONS(12231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12231), + [anon_sym_BSLASHincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHlabel] = ACTIONS(12231), + [anon_sym_BSLASHref] = ACTIONS(12231), + [anon_sym_BSLASHvref] = ACTIONS(12231), + [anon_sym_BSLASHVref] = ACTIONS(12231), + [anon_sym_BSLASHautoref] = ACTIONS(12231), + [anon_sym_BSLASHpageref] = ACTIONS(12231), + [anon_sym_BSLASHcref] = ACTIONS(12231), + [anon_sym_BSLASHCref] = ACTIONS(12231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnameCref] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHlabelcref] = ACTIONS(12231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12231), + [anon_sym_BSLASHeqref] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange] = ACTIONS(12231), + [anon_sym_BSLASHCrefrange] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewlabel] = ACTIONS(12231), + [anon_sym_BSLASHnewcommand] = ACTIONS(12231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12231), + [anon_sym_BSLASHgls] = ACTIONS(12231), + [anon_sym_BSLASHGls] = ACTIONS(12231), + [anon_sym_BSLASHGLS] = ACTIONS(12231), + [anon_sym_BSLASHglspl] = ACTIONS(12231), + [anon_sym_BSLASHGlspl] = ACTIONS(12231), + [anon_sym_BSLASHGLSpl] = ACTIONS(12231), + [anon_sym_BSLASHglsdisp] = ACTIONS(12231), + [anon_sym_BSLASHglslink] = ACTIONS(12231), + [anon_sym_BSLASHglstext] = ACTIONS(12231), + [anon_sym_BSLASHGlstext] = ACTIONS(12231), + [anon_sym_BSLASHGLStext] = ACTIONS(12231), + [anon_sym_BSLASHglsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12231), + [anon_sym_BSLASHglsplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSplural] = ACTIONS(12231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHglsname] = ACTIONS(12231), + [anon_sym_BSLASHGlsname] = ACTIONS(12231), + [anon_sym_BSLASHGLSname] = ACTIONS(12231), + [anon_sym_BSLASHglssymbol] = ACTIONS(12231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12231), + [anon_sym_BSLASHglsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12231), + [anon_sym_BSLASHglsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12231), + [anon_sym_BSLASHglsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12231), + [anon_sym_BSLASHglsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12231), + [anon_sym_BSLASHglsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12231), + [anon_sym_BSLASHnewacronym] = ACTIONS(12231), + [anon_sym_BSLASHacrshort] = ACTIONS(12231), + [anon_sym_BSLASHAcrshort] = ACTIONS(12231), + [anon_sym_BSLASHACRshort] = ACTIONS(12231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12231), + [anon_sym_BSLASHacrlong] = ACTIONS(12231), + [anon_sym_BSLASHAcrlong] = ACTIONS(12231), + [anon_sym_BSLASHACRlong] = ACTIONS(12231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12231), + [anon_sym_BSLASHacrfull] = ACTIONS(12231), + [anon_sym_BSLASHAcrfull] = ACTIONS(12231), + [anon_sym_BSLASHACRfull] = ACTIONS(12231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12231), + [anon_sym_BSLASHacs] = ACTIONS(12231), + [anon_sym_BSLASHAcs] = ACTIONS(12231), + [anon_sym_BSLASHacsp] = ACTIONS(12231), + [anon_sym_BSLASHAcsp] = ACTIONS(12231), + [anon_sym_BSLASHacl] = ACTIONS(12231), + [anon_sym_BSLASHAcl] = ACTIONS(12231), + [anon_sym_BSLASHaclp] = ACTIONS(12231), + [anon_sym_BSLASHAclp] = ACTIONS(12231), + [anon_sym_BSLASHacf] = ACTIONS(12231), + [anon_sym_BSLASHAcf] = ACTIONS(12231), + [anon_sym_BSLASHacfp] = ACTIONS(12231), + [anon_sym_BSLASHAcfp] = ACTIONS(12231), + [anon_sym_BSLASHac] = ACTIONS(12231), + [anon_sym_BSLASHAc] = ACTIONS(12231), + [anon_sym_BSLASHacp] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12231), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12231), + [anon_sym_BSLASHcolor] = ACTIONS(12231), + [anon_sym_BSLASHcolorbox] = ACTIONS(12231), + [anon_sym_BSLASHtextcolor] = ACTIONS(12231), + [anon_sym_BSLASHpagecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12231), + }, + [1101] = { + [sym_generic_command_name] = ACTIONS(12365), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12365), + [aux_sym_section_token1] = ACTIONS(12365), + [aux_sym_subsection_token1] = ACTIONS(12365), + [aux_sym_subsubsection_token1] = ACTIONS(12365), + [aux_sym_paragraph_token1] = ACTIONS(12365), + [aux_sym_subparagraph_token1] = ACTIONS(12365), + [anon_sym_BSLASHitem] = ACTIONS(12365), + [anon_sym_LBRACK] = ACTIONS(12363), + [anon_sym_RBRACK] = ACTIONS(12363), + [anon_sym_LBRACE] = ACTIONS(12363), + [anon_sym_RBRACE] = ACTIONS(12363), + [anon_sym_LPAREN] = ACTIONS(12363), + [anon_sym_COMMA] = ACTIONS(12363), + [anon_sym_EQ] = ACTIONS(12363), + [sym_word] = ACTIONS(12363), + [sym_param] = ACTIONS(12363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12363), + [anon_sym_DOLLAR] = ACTIONS(12365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12363), + [anon_sym_BSLASHbegin] = ACTIONS(12365), + [anon_sym_BSLASHcaption] = ACTIONS(12365), + [anon_sym_BSLASHcite] = ACTIONS(12365), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCite] = ACTIONS(12365), + [anon_sym_BSLASHnocite] = ACTIONS(12365), + [anon_sym_BSLASHcitet] = ACTIONS(12365), + [anon_sym_BSLASHcitep] = ACTIONS(12365), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteauthor] = ACTIONS(12365), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12365), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitetitle] = ACTIONS(12365), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteyear] = ACTIONS(12365), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitedate] = ACTIONS(12365), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteurl] = ACTIONS(12365), + [anon_sym_BSLASHfullcite] = ACTIONS(12365), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12365), + [anon_sym_BSLASHcitealt] = ACTIONS(12365), + [anon_sym_BSLASHcitealp] = ACTIONS(12365), + [anon_sym_BSLASHcitetext] = ACTIONS(12365), + [anon_sym_BSLASHparencite] = ACTIONS(12365), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHParencite] = ACTIONS(12365), + [anon_sym_BSLASHfootcite] = ACTIONS(12365), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12365), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12365), + [anon_sym_BSLASHtextcite] = ACTIONS(12365), + [anon_sym_BSLASHTextcite] = ACTIONS(12365), + [anon_sym_BSLASHsmartcite] = ACTIONS(12365), + [anon_sym_BSLASHSmartcite] = ACTIONS(12365), + [anon_sym_BSLASHsupercite] = ACTIONS(12365), + [anon_sym_BSLASHautocite] = ACTIONS(12365), + [anon_sym_BSLASHAutocite] = ACTIONS(12365), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHvolcite] = ACTIONS(12365), + [anon_sym_BSLASHVolcite] = ACTIONS(12365), + [anon_sym_BSLASHpvolcite] = ACTIONS(12365), + [anon_sym_BSLASHPvolcite] = ACTIONS(12365), + [anon_sym_BSLASHfvolcite] = ACTIONS(12365), + [anon_sym_BSLASHftvolcite] = ACTIONS(12365), + [anon_sym_BSLASHsvolcite] = ACTIONS(12365), + [anon_sym_BSLASHSvolcite] = ACTIONS(12365), + [anon_sym_BSLASHtvolcite] = ACTIONS(12365), + [anon_sym_BSLASHTvolcite] = ACTIONS(12365), + [anon_sym_BSLASHavolcite] = ACTIONS(12365), + [anon_sym_BSLASHAvolcite] = ACTIONS(12365), + [anon_sym_BSLASHnotecite] = ACTIONS(12365), + [anon_sym_BSLASHpnotecite] = ACTIONS(12365), + [anon_sym_BSLASHPnotecite] = ACTIONS(12365), + [anon_sym_BSLASHfnotecite] = ACTIONS(12365), + [anon_sym_BSLASHusepackage] = ACTIONS(12365), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12365), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12365), + [anon_sym_BSLASHinclude] = ACTIONS(12365), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12365), + [anon_sym_BSLASHinput] = ACTIONS(12365), + [anon_sym_BSLASHsubfile] = ACTIONS(12365), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12365), + [anon_sym_BSLASHbibliography] = ACTIONS(12365), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12365), + [anon_sym_BSLASHincludesvg] = ACTIONS(12365), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12365), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12365), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12365), + [anon_sym_BSLASHimport] = ACTIONS(12365), + [anon_sym_BSLASHsubimport] = ACTIONS(12365), + [anon_sym_BSLASHinputfrom] = ACTIONS(12365), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12365), + [anon_sym_BSLASHincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHlabel] = ACTIONS(12365), + [anon_sym_BSLASHref] = ACTIONS(12365), + [anon_sym_BSLASHvref] = ACTIONS(12365), + [anon_sym_BSLASHVref] = ACTIONS(12365), + [anon_sym_BSLASHautoref] = ACTIONS(12365), + [anon_sym_BSLASHpageref] = ACTIONS(12365), + [anon_sym_BSLASHcref] = ACTIONS(12365), + [anon_sym_BSLASHCref] = ACTIONS(12365), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnameCref] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHlabelcref] = ACTIONS(12365), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12365), + [anon_sym_BSLASHeqref] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange] = ACTIONS(12365), + [anon_sym_BSLASHCrefrange] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewlabel] = ACTIONS(12365), + [anon_sym_BSLASHnewcommand] = ACTIONS(12365), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12365), + [anon_sym_BSLASHgls] = ACTIONS(12365), + [anon_sym_BSLASHGls] = ACTIONS(12365), + [anon_sym_BSLASHGLS] = ACTIONS(12365), + [anon_sym_BSLASHglspl] = ACTIONS(12365), + [anon_sym_BSLASHGlspl] = ACTIONS(12365), + [anon_sym_BSLASHGLSpl] = ACTIONS(12365), + [anon_sym_BSLASHglsdisp] = ACTIONS(12365), + [anon_sym_BSLASHglslink] = ACTIONS(12365), + [anon_sym_BSLASHglstext] = ACTIONS(12365), + [anon_sym_BSLASHGlstext] = ACTIONS(12365), + [anon_sym_BSLASHGLStext] = ACTIONS(12365), + [anon_sym_BSLASHglsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12365), + [anon_sym_BSLASHglsplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSplural] = ACTIONS(12365), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHglsname] = ACTIONS(12365), + [anon_sym_BSLASHGlsname] = ACTIONS(12365), + [anon_sym_BSLASHGLSname] = ACTIONS(12365), + [anon_sym_BSLASHglssymbol] = ACTIONS(12365), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12365), + [anon_sym_BSLASHglsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12365), + [anon_sym_BSLASHglsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12365), + [anon_sym_BSLASHglsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12365), + [anon_sym_BSLASHglsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12365), + [anon_sym_BSLASHglsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12365), + [anon_sym_BSLASHnewacronym] = ACTIONS(12365), + [anon_sym_BSLASHacrshort] = ACTIONS(12365), + [anon_sym_BSLASHAcrshort] = ACTIONS(12365), + [anon_sym_BSLASHACRshort] = ACTIONS(12365), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12365), + [anon_sym_BSLASHacrlong] = ACTIONS(12365), + [anon_sym_BSLASHAcrlong] = ACTIONS(12365), + [anon_sym_BSLASHACRlong] = ACTIONS(12365), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12365), + [anon_sym_BSLASHacrfull] = ACTIONS(12365), + [anon_sym_BSLASHAcrfull] = ACTIONS(12365), + [anon_sym_BSLASHACRfull] = ACTIONS(12365), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12365), + [anon_sym_BSLASHacs] = ACTIONS(12365), + [anon_sym_BSLASHAcs] = ACTIONS(12365), + [anon_sym_BSLASHacsp] = ACTIONS(12365), + [anon_sym_BSLASHAcsp] = ACTIONS(12365), + [anon_sym_BSLASHacl] = ACTIONS(12365), + [anon_sym_BSLASHAcl] = ACTIONS(12365), + [anon_sym_BSLASHaclp] = ACTIONS(12365), + [anon_sym_BSLASHAclp] = ACTIONS(12365), + [anon_sym_BSLASHacf] = ACTIONS(12365), + [anon_sym_BSLASHAcf] = ACTIONS(12365), + [anon_sym_BSLASHacfp] = ACTIONS(12365), + [anon_sym_BSLASHAcfp] = ACTIONS(12365), + [anon_sym_BSLASHac] = ACTIONS(12365), + [anon_sym_BSLASHAc] = ACTIONS(12365), + [anon_sym_BSLASHacp] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12365), + [anon_sym_BSLASHcolor] = ACTIONS(12365), + [anon_sym_BSLASHcolorbox] = ACTIONS(12365), + [anon_sym_BSLASHtextcolor] = ACTIONS(12365), + [anon_sym_BSLASHpagecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12365), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12365), + }, + [1102] = { + [sym_generic_command_name] = ACTIONS(12385), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12385), + [aux_sym_section_token1] = ACTIONS(12385), + [aux_sym_subsection_token1] = ACTIONS(12385), + [aux_sym_subsubsection_token1] = ACTIONS(12385), + [aux_sym_paragraph_token1] = ACTIONS(12385), + [aux_sym_subparagraph_token1] = ACTIONS(12385), + [anon_sym_BSLASHitem] = ACTIONS(12385), + [anon_sym_LBRACK] = ACTIONS(12383), + [anon_sym_RBRACK] = ACTIONS(12383), + [anon_sym_LBRACE] = ACTIONS(12383), + [anon_sym_RBRACE] = ACTIONS(12383), + [anon_sym_LPAREN] = ACTIONS(12383), + [anon_sym_COMMA] = ACTIONS(12383), + [anon_sym_EQ] = ACTIONS(12383), + [sym_word] = ACTIONS(12383), + [sym_param] = ACTIONS(12383), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12383), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12383), + [anon_sym_DOLLAR] = ACTIONS(12385), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12383), + [anon_sym_BSLASHbegin] = ACTIONS(12385), + [anon_sym_BSLASHcaption] = ACTIONS(12385), + [anon_sym_BSLASHcite] = ACTIONS(12385), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCite] = ACTIONS(12385), + [anon_sym_BSLASHnocite] = ACTIONS(12385), + [anon_sym_BSLASHcitet] = ACTIONS(12385), + [anon_sym_BSLASHcitep] = ACTIONS(12385), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteauthor] = ACTIONS(12385), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12385), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitetitle] = ACTIONS(12385), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteyear] = ACTIONS(12385), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitedate] = ACTIONS(12385), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteurl] = ACTIONS(12385), + [anon_sym_BSLASHfullcite] = ACTIONS(12385), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12385), + [anon_sym_BSLASHcitealt] = ACTIONS(12385), + [anon_sym_BSLASHcitealp] = ACTIONS(12385), + [anon_sym_BSLASHcitetext] = ACTIONS(12385), + [anon_sym_BSLASHparencite] = ACTIONS(12385), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHParencite] = ACTIONS(12385), + [anon_sym_BSLASHfootcite] = ACTIONS(12385), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12385), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12385), + [anon_sym_BSLASHtextcite] = ACTIONS(12385), + [anon_sym_BSLASHTextcite] = ACTIONS(12385), + [anon_sym_BSLASHsmartcite] = ACTIONS(12385), + [anon_sym_BSLASHSmartcite] = ACTIONS(12385), + [anon_sym_BSLASHsupercite] = ACTIONS(12385), + [anon_sym_BSLASHautocite] = ACTIONS(12385), + [anon_sym_BSLASHAutocite] = ACTIONS(12385), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHvolcite] = ACTIONS(12385), + [anon_sym_BSLASHVolcite] = ACTIONS(12385), + [anon_sym_BSLASHpvolcite] = ACTIONS(12385), + [anon_sym_BSLASHPvolcite] = ACTIONS(12385), + [anon_sym_BSLASHfvolcite] = ACTIONS(12385), + [anon_sym_BSLASHftvolcite] = ACTIONS(12385), + [anon_sym_BSLASHsvolcite] = ACTIONS(12385), + [anon_sym_BSLASHSvolcite] = ACTIONS(12385), + [anon_sym_BSLASHtvolcite] = ACTIONS(12385), + [anon_sym_BSLASHTvolcite] = ACTIONS(12385), + [anon_sym_BSLASHavolcite] = ACTIONS(12385), + [anon_sym_BSLASHAvolcite] = ACTIONS(12385), + [anon_sym_BSLASHnotecite] = ACTIONS(12385), + [anon_sym_BSLASHpnotecite] = ACTIONS(12385), + [anon_sym_BSLASHPnotecite] = ACTIONS(12385), + [anon_sym_BSLASHfnotecite] = ACTIONS(12385), + [anon_sym_BSLASHusepackage] = ACTIONS(12385), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12385), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12385), + [anon_sym_BSLASHinclude] = ACTIONS(12385), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12385), + [anon_sym_BSLASHinput] = ACTIONS(12385), + [anon_sym_BSLASHsubfile] = ACTIONS(12385), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12385), + [anon_sym_BSLASHbibliography] = ACTIONS(12385), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12385), + [anon_sym_BSLASHincludesvg] = ACTIONS(12385), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12385), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12385), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12385), + [anon_sym_BSLASHimport] = ACTIONS(12385), + [anon_sym_BSLASHsubimport] = ACTIONS(12385), + [anon_sym_BSLASHinputfrom] = ACTIONS(12385), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12385), + [anon_sym_BSLASHincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHlabel] = ACTIONS(12385), + [anon_sym_BSLASHref] = ACTIONS(12385), + [anon_sym_BSLASHvref] = ACTIONS(12385), + [anon_sym_BSLASHVref] = ACTIONS(12385), + [anon_sym_BSLASHautoref] = ACTIONS(12385), + [anon_sym_BSLASHpageref] = ACTIONS(12385), + [anon_sym_BSLASHcref] = ACTIONS(12385), + [anon_sym_BSLASHCref] = ACTIONS(12385), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnameCref] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHlabelcref] = ACTIONS(12385), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12385), + [anon_sym_BSLASHeqref] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange] = ACTIONS(12385), + [anon_sym_BSLASHCrefrange] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewlabel] = ACTIONS(12385), + [anon_sym_BSLASHnewcommand] = ACTIONS(12385), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12385), + [anon_sym_BSLASHgls] = ACTIONS(12385), + [anon_sym_BSLASHGls] = ACTIONS(12385), + [anon_sym_BSLASHGLS] = ACTIONS(12385), + [anon_sym_BSLASHglspl] = ACTIONS(12385), + [anon_sym_BSLASHGlspl] = ACTIONS(12385), + [anon_sym_BSLASHGLSpl] = ACTIONS(12385), + [anon_sym_BSLASHglsdisp] = ACTIONS(12385), + [anon_sym_BSLASHglslink] = ACTIONS(12385), + [anon_sym_BSLASHglstext] = ACTIONS(12385), + [anon_sym_BSLASHGlstext] = ACTIONS(12385), + [anon_sym_BSLASHGLStext] = ACTIONS(12385), + [anon_sym_BSLASHglsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12385), + [anon_sym_BSLASHglsplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSplural] = ACTIONS(12385), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHglsname] = ACTIONS(12385), + [anon_sym_BSLASHGlsname] = ACTIONS(12385), + [anon_sym_BSLASHGLSname] = ACTIONS(12385), + [anon_sym_BSLASHglssymbol] = ACTIONS(12385), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12385), + [anon_sym_BSLASHglsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12385), + [anon_sym_BSLASHglsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12385), + [anon_sym_BSLASHglsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12385), + [anon_sym_BSLASHglsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12385), + [anon_sym_BSLASHglsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12385), + [anon_sym_BSLASHnewacronym] = ACTIONS(12385), + [anon_sym_BSLASHacrshort] = ACTIONS(12385), + [anon_sym_BSLASHAcrshort] = ACTIONS(12385), + [anon_sym_BSLASHACRshort] = ACTIONS(12385), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12385), + [anon_sym_BSLASHacrlong] = ACTIONS(12385), + [anon_sym_BSLASHAcrlong] = ACTIONS(12385), + [anon_sym_BSLASHACRlong] = ACTIONS(12385), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12385), + [anon_sym_BSLASHacrfull] = ACTIONS(12385), + [anon_sym_BSLASHAcrfull] = ACTIONS(12385), + [anon_sym_BSLASHACRfull] = ACTIONS(12385), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12385), + [anon_sym_BSLASHacs] = ACTIONS(12385), + [anon_sym_BSLASHAcs] = ACTIONS(12385), + [anon_sym_BSLASHacsp] = ACTIONS(12385), + [anon_sym_BSLASHAcsp] = ACTIONS(12385), + [anon_sym_BSLASHacl] = ACTIONS(12385), + [anon_sym_BSLASHAcl] = ACTIONS(12385), + [anon_sym_BSLASHaclp] = ACTIONS(12385), + [anon_sym_BSLASHAclp] = ACTIONS(12385), + [anon_sym_BSLASHacf] = ACTIONS(12385), + [anon_sym_BSLASHAcf] = ACTIONS(12385), + [anon_sym_BSLASHacfp] = ACTIONS(12385), + [anon_sym_BSLASHAcfp] = ACTIONS(12385), + [anon_sym_BSLASHac] = ACTIONS(12385), + [anon_sym_BSLASHAc] = ACTIONS(12385), + [anon_sym_BSLASHacp] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12385), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12385), + [anon_sym_BSLASHcolor] = ACTIONS(12385), + [anon_sym_BSLASHcolorbox] = ACTIONS(12385), + [anon_sym_BSLASHtextcolor] = ACTIONS(12385), + [anon_sym_BSLASHpagecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12385), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12385), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12385), + }, + [1103] = { + [sym_generic_command_name] = ACTIONS(12389), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12389), + [aux_sym_section_token1] = ACTIONS(12389), + [aux_sym_subsection_token1] = ACTIONS(12389), + [aux_sym_subsubsection_token1] = ACTIONS(12389), + [aux_sym_paragraph_token1] = ACTIONS(12389), + [aux_sym_subparagraph_token1] = ACTIONS(12389), + [anon_sym_BSLASHitem] = ACTIONS(12389), + [anon_sym_LBRACK] = ACTIONS(12387), + [anon_sym_RBRACK] = ACTIONS(12387), + [anon_sym_LBRACE] = ACTIONS(12387), + [anon_sym_RBRACE] = ACTIONS(12387), + [anon_sym_LPAREN] = ACTIONS(12387), + [anon_sym_COMMA] = ACTIONS(12387), + [anon_sym_EQ] = ACTIONS(12387), + [sym_word] = ACTIONS(12387), + [sym_param] = ACTIONS(12387), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12387), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12387), + [anon_sym_DOLLAR] = ACTIONS(12389), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12387), + [anon_sym_BSLASHbegin] = ACTIONS(12389), + [anon_sym_BSLASHcaption] = ACTIONS(12389), + [anon_sym_BSLASHcite] = ACTIONS(12389), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCite] = ACTIONS(12389), + [anon_sym_BSLASHnocite] = ACTIONS(12389), + [anon_sym_BSLASHcitet] = ACTIONS(12389), + [anon_sym_BSLASHcitep] = ACTIONS(12389), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteauthor] = ACTIONS(12389), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12389), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitetitle] = ACTIONS(12389), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteyear] = ACTIONS(12389), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitedate] = ACTIONS(12389), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteurl] = ACTIONS(12389), + [anon_sym_BSLASHfullcite] = ACTIONS(12389), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12389), + [anon_sym_BSLASHcitealt] = ACTIONS(12389), + [anon_sym_BSLASHcitealp] = ACTIONS(12389), + [anon_sym_BSLASHcitetext] = ACTIONS(12389), + [anon_sym_BSLASHparencite] = ACTIONS(12389), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHParencite] = ACTIONS(12389), + [anon_sym_BSLASHfootcite] = ACTIONS(12389), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12389), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12389), + [anon_sym_BSLASHtextcite] = ACTIONS(12389), + [anon_sym_BSLASHTextcite] = ACTIONS(12389), + [anon_sym_BSLASHsmartcite] = ACTIONS(12389), + [anon_sym_BSLASHSmartcite] = ACTIONS(12389), + [anon_sym_BSLASHsupercite] = ACTIONS(12389), + [anon_sym_BSLASHautocite] = ACTIONS(12389), + [anon_sym_BSLASHAutocite] = ACTIONS(12389), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHvolcite] = ACTIONS(12389), + [anon_sym_BSLASHVolcite] = ACTIONS(12389), + [anon_sym_BSLASHpvolcite] = ACTIONS(12389), + [anon_sym_BSLASHPvolcite] = ACTIONS(12389), + [anon_sym_BSLASHfvolcite] = ACTIONS(12389), + [anon_sym_BSLASHftvolcite] = ACTIONS(12389), + [anon_sym_BSLASHsvolcite] = ACTIONS(12389), + [anon_sym_BSLASHSvolcite] = ACTIONS(12389), + [anon_sym_BSLASHtvolcite] = ACTIONS(12389), + [anon_sym_BSLASHTvolcite] = ACTIONS(12389), + [anon_sym_BSLASHavolcite] = ACTIONS(12389), + [anon_sym_BSLASHAvolcite] = ACTIONS(12389), + [anon_sym_BSLASHnotecite] = ACTIONS(12389), + [anon_sym_BSLASHpnotecite] = ACTIONS(12389), + [anon_sym_BSLASHPnotecite] = ACTIONS(12389), + [anon_sym_BSLASHfnotecite] = ACTIONS(12389), + [anon_sym_BSLASHusepackage] = ACTIONS(12389), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12389), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12389), + [anon_sym_BSLASHinclude] = ACTIONS(12389), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12389), + [anon_sym_BSLASHinput] = ACTIONS(12389), + [anon_sym_BSLASHsubfile] = ACTIONS(12389), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12389), + [anon_sym_BSLASHbibliography] = ACTIONS(12389), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12389), + [anon_sym_BSLASHincludesvg] = ACTIONS(12389), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12389), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12389), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12389), + [anon_sym_BSLASHimport] = ACTIONS(12389), + [anon_sym_BSLASHsubimport] = ACTIONS(12389), + [anon_sym_BSLASHinputfrom] = ACTIONS(12389), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12389), + [anon_sym_BSLASHincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHlabel] = ACTIONS(12389), + [anon_sym_BSLASHref] = ACTIONS(12389), + [anon_sym_BSLASHvref] = ACTIONS(12389), + [anon_sym_BSLASHVref] = ACTIONS(12389), + [anon_sym_BSLASHautoref] = ACTIONS(12389), + [anon_sym_BSLASHpageref] = ACTIONS(12389), + [anon_sym_BSLASHcref] = ACTIONS(12389), + [anon_sym_BSLASHCref] = ACTIONS(12389), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnameCref] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHlabelcref] = ACTIONS(12389), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12389), + [anon_sym_BSLASHeqref] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange] = ACTIONS(12389), + [anon_sym_BSLASHCrefrange] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewlabel] = ACTIONS(12389), + [anon_sym_BSLASHnewcommand] = ACTIONS(12389), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12389), + [anon_sym_BSLASHgls] = ACTIONS(12389), + [anon_sym_BSLASHGls] = ACTIONS(12389), + [anon_sym_BSLASHGLS] = ACTIONS(12389), + [anon_sym_BSLASHglspl] = ACTIONS(12389), + [anon_sym_BSLASHGlspl] = ACTIONS(12389), + [anon_sym_BSLASHGLSpl] = ACTIONS(12389), + [anon_sym_BSLASHglsdisp] = ACTIONS(12389), + [anon_sym_BSLASHglslink] = ACTIONS(12389), + [anon_sym_BSLASHglstext] = ACTIONS(12389), + [anon_sym_BSLASHGlstext] = ACTIONS(12389), + [anon_sym_BSLASHGLStext] = ACTIONS(12389), + [anon_sym_BSLASHglsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12389), + [anon_sym_BSLASHglsplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSplural] = ACTIONS(12389), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHglsname] = ACTIONS(12389), + [anon_sym_BSLASHGlsname] = ACTIONS(12389), + [anon_sym_BSLASHGLSname] = ACTIONS(12389), + [anon_sym_BSLASHglssymbol] = ACTIONS(12389), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12389), + [anon_sym_BSLASHglsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12389), + [anon_sym_BSLASHglsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12389), + [anon_sym_BSLASHglsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12389), + [anon_sym_BSLASHglsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12389), + [anon_sym_BSLASHglsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12389), + [anon_sym_BSLASHnewacronym] = ACTIONS(12389), + [anon_sym_BSLASHacrshort] = ACTIONS(12389), + [anon_sym_BSLASHAcrshort] = ACTIONS(12389), + [anon_sym_BSLASHACRshort] = ACTIONS(12389), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12389), + [anon_sym_BSLASHacrlong] = ACTIONS(12389), + [anon_sym_BSLASHAcrlong] = ACTIONS(12389), + [anon_sym_BSLASHACRlong] = ACTIONS(12389), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12389), + [anon_sym_BSLASHacrfull] = ACTIONS(12389), + [anon_sym_BSLASHAcrfull] = ACTIONS(12389), + [anon_sym_BSLASHACRfull] = ACTIONS(12389), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12389), + [anon_sym_BSLASHacs] = ACTIONS(12389), + [anon_sym_BSLASHAcs] = ACTIONS(12389), + [anon_sym_BSLASHacsp] = ACTIONS(12389), + [anon_sym_BSLASHAcsp] = ACTIONS(12389), + [anon_sym_BSLASHacl] = ACTIONS(12389), + [anon_sym_BSLASHAcl] = ACTIONS(12389), + [anon_sym_BSLASHaclp] = ACTIONS(12389), + [anon_sym_BSLASHAclp] = ACTIONS(12389), + [anon_sym_BSLASHacf] = ACTIONS(12389), + [anon_sym_BSLASHAcf] = ACTIONS(12389), + [anon_sym_BSLASHacfp] = ACTIONS(12389), + [anon_sym_BSLASHAcfp] = ACTIONS(12389), + [anon_sym_BSLASHac] = ACTIONS(12389), + [anon_sym_BSLASHAc] = ACTIONS(12389), + [anon_sym_BSLASHacp] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12389), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12389), + [anon_sym_BSLASHcolor] = ACTIONS(12389), + [anon_sym_BSLASHcolorbox] = ACTIONS(12389), + [anon_sym_BSLASHtextcolor] = ACTIONS(12389), + [anon_sym_BSLASHpagecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12389), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12389), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12389), + }, + [1104] = { + [sym_generic_command_name] = ACTIONS(12417), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12417), + [aux_sym_section_token1] = ACTIONS(12417), + [aux_sym_subsection_token1] = ACTIONS(12417), + [aux_sym_subsubsection_token1] = ACTIONS(12417), + [aux_sym_paragraph_token1] = ACTIONS(12417), + [aux_sym_subparagraph_token1] = ACTIONS(12417), + [anon_sym_BSLASHitem] = ACTIONS(12417), + [anon_sym_LBRACK] = ACTIONS(12415), + [anon_sym_RBRACK] = ACTIONS(12415), + [anon_sym_LBRACE] = ACTIONS(12415), + [anon_sym_RBRACE] = ACTIONS(12415), + [anon_sym_LPAREN] = ACTIONS(12415), + [anon_sym_COMMA] = ACTIONS(12415), + [anon_sym_EQ] = ACTIONS(12415), + [sym_word] = ACTIONS(12415), + [sym_param] = ACTIONS(12415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12415), + [anon_sym_DOLLAR] = ACTIONS(12417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12415), + [anon_sym_BSLASHbegin] = ACTIONS(12417), + [anon_sym_BSLASHcaption] = ACTIONS(12417), + [anon_sym_BSLASHcite] = ACTIONS(12417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCite] = ACTIONS(12417), + [anon_sym_BSLASHnocite] = ACTIONS(12417), + [anon_sym_BSLASHcitet] = ACTIONS(12417), + [anon_sym_BSLASHcitep] = ACTIONS(12417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteauthor] = ACTIONS(12417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitetitle] = ACTIONS(12417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteyear] = ACTIONS(12417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitedate] = ACTIONS(12417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteurl] = ACTIONS(12417), + [anon_sym_BSLASHfullcite] = ACTIONS(12417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12417), + [anon_sym_BSLASHcitealt] = ACTIONS(12417), + [anon_sym_BSLASHcitealp] = ACTIONS(12417), + [anon_sym_BSLASHcitetext] = ACTIONS(12417), + [anon_sym_BSLASHparencite] = ACTIONS(12417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHParencite] = ACTIONS(12417), + [anon_sym_BSLASHfootcite] = ACTIONS(12417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12417), + [anon_sym_BSLASHtextcite] = ACTIONS(12417), + [anon_sym_BSLASHTextcite] = ACTIONS(12417), + [anon_sym_BSLASHsmartcite] = ACTIONS(12417), + [anon_sym_BSLASHSmartcite] = ACTIONS(12417), + [anon_sym_BSLASHsupercite] = ACTIONS(12417), + [anon_sym_BSLASHautocite] = ACTIONS(12417), + [anon_sym_BSLASHAutocite] = ACTIONS(12417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHvolcite] = ACTIONS(12417), + [anon_sym_BSLASHVolcite] = ACTIONS(12417), + [anon_sym_BSLASHpvolcite] = ACTIONS(12417), + [anon_sym_BSLASHPvolcite] = ACTIONS(12417), + [anon_sym_BSLASHfvolcite] = ACTIONS(12417), + [anon_sym_BSLASHftvolcite] = ACTIONS(12417), + [anon_sym_BSLASHsvolcite] = ACTIONS(12417), + [anon_sym_BSLASHSvolcite] = ACTIONS(12417), + [anon_sym_BSLASHtvolcite] = ACTIONS(12417), + [anon_sym_BSLASHTvolcite] = ACTIONS(12417), + [anon_sym_BSLASHavolcite] = ACTIONS(12417), + [anon_sym_BSLASHAvolcite] = ACTIONS(12417), + [anon_sym_BSLASHnotecite] = ACTIONS(12417), + [anon_sym_BSLASHpnotecite] = ACTIONS(12417), + [anon_sym_BSLASHPnotecite] = ACTIONS(12417), + [anon_sym_BSLASHfnotecite] = ACTIONS(12417), + [anon_sym_BSLASHusepackage] = ACTIONS(12417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12417), + [anon_sym_BSLASHinclude] = ACTIONS(12417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12417), + [anon_sym_BSLASHinput] = ACTIONS(12417), + [anon_sym_BSLASHsubfile] = ACTIONS(12417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12417), + [anon_sym_BSLASHbibliography] = ACTIONS(12417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12417), + [anon_sym_BSLASHincludesvg] = ACTIONS(12417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12417), + [anon_sym_BSLASHimport] = ACTIONS(12417), + [anon_sym_BSLASHsubimport] = ACTIONS(12417), + [anon_sym_BSLASHinputfrom] = ACTIONS(12417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12417), + [anon_sym_BSLASHincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHlabel] = ACTIONS(12417), + [anon_sym_BSLASHref] = ACTIONS(12417), + [anon_sym_BSLASHvref] = ACTIONS(12417), + [anon_sym_BSLASHVref] = ACTIONS(12417), + [anon_sym_BSLASHautoref] = ACTIONS(12417), + [anon_sym_BSLASHpageref] = ACTIONS(12417), + [anon_sym_BSLASHcref] = ACTIONS(12417), + [anon_sym_BSLASHCref] = ACTIONS(12417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnameCref] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHlabelcref] = ACTIONS(12417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12417), + [anon_sym_BSLASHeqref] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange] = ACTIONS(12417), + [anon_sym_BSLASHCrefrange] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewlabel] = ACTIONS(12417), + [anon_sym_BSLASHnewcommand] = ACTIONS(12417), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12417), + [anon_sym_BSLASHgls] = ACTIONS(12417), + [anon_sym_BSLASHGls] = ACTIONS(12417), + [anon_sym_BSLASHGLS] = ACTIONS(12417), + [anon_sym_BSLASHglspl] = ACTIONS(12417), + [anon_sym_BSLASHGlspl] = ACTIONS(12417), + [anon_sym_BSLASHGLSpl] = ACTIONS(12417), + [anon_sym_BSLASHglsdisp] = ACTIONS(12417), + [anon_sym_BSLASHglslink] = ACTIONS(12417), + [anon_sym_BSLASHglstext] = ACTIONS(12417), + [anon_sym_BSLASHGlstext] = ACTIONS(12417), + [anon_sym_BSLASHGLStext] = ACTIONS(12417), + [anon_sym_BSLASHglsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12417), + [anon_sym_BSLASHglsplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSplural] = ACTIONS(12417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHglsname] = ACTIONS(12417), + [anon_sym_BSLASHGlsname] = ACTIONS(12417), + [anon_sym_BSLASHGLSname] = ACTIONS(12417), + [anon_sym_BSLASHglssymbol] = ACTIONS(12417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12417), + [anon_sym_BSLASHglsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12417), + [anon_sym_BSLASHglsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12417), + [anon_sym_BSLASHglsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12417), + [anon_sym_BSLASHglsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12417), + [anon_sym_BSLASHglsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12417), + [anon_sym_BSLASHnewacronym] = ACTIONS(12417), + [anon_sym_BSLASHacrshort] = ACTIONS(12417), + [anon_sym_BSLASHAcrshort] = ACTIONS(12417), + [anon_sym_BSLASHACRshort] = ACTIONS(12417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12417), + [anon_sym_BSLASHacrlong] = ACTIONS(12417), + [anon_sym_BSLASHAcrlong] = ACTIONS(12417), + [anon_sym_BSLASHACRlong] = ACTIONS(12417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12417), + [anon_sym_BSLASHacrfull] = ACTIONS(12417), + [anon_sym_BSLASHAcrfull] = ACTIONS(12417), + [anon_sym_BSLASHACRfull] = ACTIONS(12417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12417), + [anon_sym_BSLASHacs] = ACTIONS(12417), + [anon_sym_BSLASHAcs] = ACTIONS(12417), + [anon_sym_BSLASHacsp] = ACTIONS(12417), + [anon_sym_BSLASHAcsp] = ACTIONS(12417), + [anon_sym_BSLASHacl] = ACTIONS(12417), + [anon_sym_BSLASHAcl] = ACTIONS(12417), + [anon_sym_BSLASHaclp] = ACTIONS(12417), + [anon_sym_BSLASHAclp] = ACTIONS(12417), + [anon_sym_BSLASHacf] = ACTIONS(12417), + [anon_sym_BSLASHAcf] = ACTIONS(12417), + [anon_sym_BSLASHacfp] = ACTIONS(12417), + [anon_sym_BSLASHAcfp] = ACTIONS(12417), + [anon_sym_BSLASHac] = ACTIONS(12417), + [anon_sym_BSLASHAc] = ACTIONS(12417), + [anon_sym_BSLASHacp] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12417), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12417), + [anon_sym_BSLASHcolor] = ACTIONS(12417), + [anon_sym_BSLASHcolorbox] = ACTIONS(12417), + [anon_sym_BSLASHtextcolor] = ACTIONS(12417), + [anon_sym_BSLASHpagecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12417), + }, + [1105] = { + [sym_generic_command_name] = ACTIONS(12457), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12457), + [aux_sym_section_token1] = ACTIONS(12457), + [aux_sym_subsection_token1] = ACTIONS(12457), + [aux_sym_subsubsection_token1] = ACTIONS(12457), + [aux_sym_paragraph_token1] = ACTIONS(12457), + [aux_sym_subparagraph_token1] = ACTIONS(12457), + [anon_sym_BSLASHitem] = ACTIONS(12457), + [anon_sym_LBRACK] = ACTIONS(12455), + [anon_sym_RBRACK] = ACTIONS(12455), + [anon_sym_LBRACE] = ACTIONS(12455), + [anon_sym_RBRACE] = ACTIONS(12455), + [anon_sym_LPAREN] = ACTIONS(12455), + [anon_sym_COMMA] = ACTIONS(12455), + [anon_sym_EQ] = ACTIONS(12455), + [sym_word] = ACTIONS(12455), + [sym_param] = ACTIONS(12455), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12455), + [anon_sym_DOLLAR] = ACTIONS(12457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12455), + [anon_sym_BSLASHbegin] = ACTIONS(12457), + [anon_sym_BSLASHcaption] = ACTIONS(12457), + [anon_sym_BSLASHcite] = ACTIONS(12457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCite] = ACTIONS(12457), + [anon_sym_BSLASHnocite] = ACTIONS(12457), + [anon_sym_BSLASHcitet] = ACTIONS(12457), + [anon_sym_BSLASHcitep] = ACTIONS(12457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteauthor] = ACTIONS(12457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitetitle] = ACTIONS(12457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteyear] = ACTIONS(12457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitedate] = ACTIONS(12457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteurl] = ACTIONS(12457), + [anon_sym_BSLASHfullcite] = ACTIONS(12457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12457), + [anon_sym_BSLASHcitealt] = ACTIONS(12457), + [anon_sym_BSLASHcitealp] = ACTIONS(12457), + [anon_sym_BSLASHcitetext] = ACTIONS(12457), + [anon_sym_BSLASHparencite] = ACTIONS(12457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHParencite] = ACTIONS(12457), + [anon_sym_BSLASHfootcite] = ACTIONS(12457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12457), + [anon_sym_BSLASHtextcite] = ACTIONS(12457), + [anon_sym_BSLASHTextcite] = ACTIONS(12457), + [anon_sym_BSLASHsmartcite] = ACTIONS(12457), + [anon_sym_BSLASHSmartcite] = ACTIONS(12457), + [anon_sym_BSLASHsupercite] = ACTIONS(12457), + [anon_sym_BSLASHautocite] = ACTIONS(12457), + [anon_sym_BSLASHAutocite] = ACTIONS(12457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHvolcite] = ACTIONS(12457), + [anon_sym_BSLASHVolcite] = ACTIONS(12457), + [anon_sym_BSLASHpvolcite] = ACTIONS(12457), + [anon_sym_BSLASHPvolcite] = ACTIONS(12457), + [anon_sym_BSLASHfvolcite] = ACTIONS(12457), + [anon_sym_BSLASHftvolcite] = ACTIONS(12457), + [anon_sym_BSLASHsvolcite] = ACTIONS(12457), + [anon_sym_BSLASHSvolcite] = ACTIONS(12457), + [anon_sym_BSLASHtvolcite] = ACTIONS(12457), + [anon_sym_BSLASHTvolcite] = ACTIONS(12457), + [anon_sym_BSLASHavolcite] = ACTIONS(12457), + [anon_sym_BSLASHAvolcite] = ACTIONS(12457), + [anon_sym_BSLASHnotecite] = ACTIONS(12457), + [anon_sym_BSLASHpnotecite] = ACTIONS(12457), + [anon_sym_BSLASHPnotecite] = ACTIONS(12457), + [anon_sym_BSLASHfnotecite] = ACTIONS(12457), + [anon_sym_BSLASHusepackage] = ACTIONS(12457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12457), + [anon_sym_BSLASHinclude] = ACTIONS(12457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12457), + [anon_sym_BSLASHinput] = ACTIONS(12457), + [anon_sym_BSLASHsubfile] = ACTIONS(12457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12457), + [anon_sym_BSLASHbibliography] = ACTIONS(12457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12457), + [anon_sym_BSLASHincludesvg] = ACTIONS(12457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12457), + [anon_sym_BSLASHimport] = ACTIONS(12457), + [anon_sym_BSLASHsubimport] = ACTIONS(12457), + [anon_sym_BSLASHinputfrom] = ACTIONS(12457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12457), + [anon_sym_BSLASHincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHlabel] = ACTIONS(12457), + [anon_sym_BSLASHref] = ACTIONS(12457), + [anon_sym_BSLASHvref] = ACTIONS(12457), + [anon_sym_BSLASHVref] = ACTIONS(12457), + [anon_sym_BSLASHautoref] = ACTIONS(12457), + [anon_sym_BSLASHpageref] = ACTIONS(12457), + [anon_sym_BSLASHcref] = ACTIONS(12457), + [anon_sym_BSLASHCref] = ACTIONS(12457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnameCref] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHlabelcref] = ACTIONS(12457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12457), + [anon_sym_BSLASHeqref] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange] = ACTIONS(12457), + [anon_sym_BSLASHCrefrange] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewlabel] = ACTIONS(12457), + [anon_sym_BSLASHnewcommand] = ACTIONS(12457), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12457), + [anon_sym_BSLASHgls] = ACTIONS(12457), + [anon_sym_BSLASHGls] = ACTIONS(12457), + [anon_sym_BSLASHGLS] = ACTIONS(12457), + [anon_sym_BSLASHglspl] = ACTIONS(12457), + [anon_sym_BSLASHGlspl] = ACTIONS(12457), + [anon_sym_BSLASHGLSpl] = ACTIONS(12457), + [anon_sym_BSLASHglsdisp] = ACTIONS(12457), + [anon_sym_BSLASHglslink] = ACTIONS(12457), + [anon_sym_BSLASHglstext] = ACTIONS(12457), + [anon_sym_BSLASHGlstext] = ACTIONS(12457), + [anon_sym_BSLASHGLStext] = ACTIONS(12457), + [anon_sym_BSLASHglsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12457), + [anon_sym_BSLASHglsplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSplural] = ACTIONS(12457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHglsname] = ACTIONS(12457), + [anon_sym_BSLASHGlsname] = ACTIONS(12457), + [anon_sym_BSLASHGLSname] = ACTIONS(12457), + [anon_sym_BSLASHglssymbol] = ACTIONS(12457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12457), + [anon_sym_BSLASHglsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12457), + [anon_sym_BSLASHglsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12457), + [anon_sym_BSLASHglsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12457), + [anon_sym_BSLASHglsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12457), + [anon_sym_BSLASHglsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12457), + [anon_sym_BSLASHnewacronym] = ACTIONS(12457), + [anon_sym_BSLASHacrshort] = ACTIONS(12457), + [anon_sym_BSLASHAcrshort] = ACTIONS(12457), + [anon_sym_BSLASHACRshort] = ACTIONS(12457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12457), + [anon_sym_BSLASHacrlong] = ACTIONS(12457), + [anon_sym_BSLASHAcrlong] = ACTIONS(12457), + [anon_sym_BSLASHACRlong] = ACTIONS(12457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12457), + [anon_sym_BSLASHacrfull] = ACTIONS(12457), + [anon_sym_BSLASHAcrfull] = ACTIONS(12457), + [anon_sym_BSLASHACRfull] = ACTIONS(12457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12457), + [anon_sym_BSLASHacs] = ACTIONS(12457), + [anon_sym_BSLASHAcs] = ACTIONS(12457), + [anon_sym_BSLASHacsp] = ACTIONS(12457), + [anon_sym_BSLASHAcsp] = ACTIONS(12457), + [anon_sym_BSLASHacl] = ACTIONS(12457), + [anon_sym_BSLASHAcl] = ACTIONS(12457), + [anon_sym_BSLASHaclp] = ACTIONS(12457), + [anon_sym_BSLASHAclp] = ACTIONS(12457), + [anon_sym_BSLASHacf] = ACTIONS(12457), + [anon_sym_BSLASHAcf] = ACTIONS(12457), + [anon_sym_BSLASHacfp] = ACTIONS(12457), + [anon_sym_BSLASHAcfp] = ACTIONS(12457), + [anon_sym_BSLASHac] = ACTIONS(12457), + [anon_sym_BSLASHAc] = ACTIONS(12457), + [anon_sym_BSLASHacp] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12457), + [anon_sym_BSLASHcolor] = ACTIONS(12457), + [anon_sym_BSLASHcolorbox] = ACTIONS(12457), + [anon_sym_BSLASHtextcolor] = ACTIONS(12457), + [anon_sym_BSLASHpagecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12457), + }, + [1106] = { + [sym_generic_command_name] = ACTIONS(12473), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12473), + [aux_sym_section_token1] = ACTIONS(12473), + [aux_sym_subsection_token1] = ACTIONS(12473), + [aux_sym_subsubsection_token1] = ACTIONS(12473), + [aux_sym_paragraph_token1] = ACTIONS(12473), + [aux_sym_subparagraph_token1] = ACTIONS(12473), + [anon_sym_BSLASHitem] = ACTIONS(12473), + [anon_sym_LBRACK] = ACTIONS(12471), + [anon_sym_RBRACK] = ACTIONS(12471), + [anon_sym_LBRACE] = ACTIONS(12471), + [anon_sym_RBRACE] = ACTIONS(12471), + [anon_sym_LPAREN] = ACTIONS(12471), + [anon_sym_COMMA] = ACTIONS(12471), + [anon_sym_EQ] = ACTIONS(12471), + [sym_word] = ACTIONS(12471), + [sym_param] = ACTIONS(12471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12471), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12471), + [anon_sym_DOLLAR] = ACTIONS(12473), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12471), + [anon_sym_BSLASHbegin] = ACTIONS(12473), + [anon_sym_BSLASHcaption] = ACTIONS(12473), + [anon_sym_BSLASHcite] = ACTIONS(12473), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCite] = ACTIONS(12473), + [anon_sym_BSLASHnocite] = ACTIONS(12473), + [anon_sym_BSLASHcitet] = ACTIONS(12473), + [anon_sym_BSLASHcitep] = ACTIONS(12473), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteauthor] = ACTIONS(12473), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12473), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitetitle] = ACTIONS(12473), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteyear] = ACTIONS(12473), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitedate] = ACTIONS(12473), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteurl] = ACTIONS(12473), + [anon_sym_BSLASHfullcite] = ACTIONS(12473), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12473), + [anon_sym_BSLASHcitealt] = ACTIONS(12473), + [anon_sym_BSLASHcitealp] = ACTIONS(12473), + [anon_sym_BSLASHcitetext] = ACTIONS(12473), + [anon_sym_BSLASHparencite] = ACTIONS(12473), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHParencite] = ACTIONS(12473), + [anon_sym_BSLASHfootcite] = ACTIONS(12473), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12473), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12473), + [anon_sym_BSLASHtextcite] = ACTIONS(12473), + [anon_sym_BSLASHTextcite] = ACTIONS(12473), + [anon_sym_BSLASHsmartcite] = ACTIONS(12473), + [anon_sym_BSLASHSmartcite] = ACTIONS(12473), + [anon_sym_BSLASHsupercite] = ACTIONS(12473), + [anon_sym_BSLASHautocite] = ACTIONS(12473), + [anon_sym_BSLASHAutocite] = ACTIONS(12473), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHvolcite] = ACTIONS(12473), + [anon_sym_BSLASHVolcite] = ACTIONS(12473), + [anon_sym_BSLASHpvolcite] = ACTIONS(12473), + [anon_sym_BSLASHPvolcite] = ACTIONS(12473), + [anon_sym_BSLASHfvolcite] = ACTIONS(12473), + [anon_sym_BSLASHftvolcite] = ACTIONS(12473), + [anon_sym_BSLASHsvolcite] = ACTIONS(12473), + [anon_sym_BSLASHSvolcite] = ACTIONS(12473), + [anon_sym_BSLASHtvolcite] = ACTIONS(12473), + [anon_sym_BSLASHTvolcite] = ACTIONS(12473), + [anon_sym_BSLASHavolcite] = ACTIONS(12473), + [anon_sym_BSLASHAvolcite] = ACTIONS(12473), + [anon_sym_BSLASHnotecite] = ACTIONS(12473), + [anon_sym_BSLASHpnotecite] = ACTIONS(12473), + [anon_sym_BSLASHPnotecite] = ACTIONS(12473), + [anon_sym_BSLASHfnotecite] = ACTIONS(12473), + [anon_sym_BSLASHusepackage] = ACTIONS(12473), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12473), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12473), + [anon_sym_BSLASHinclude] = ACTIONS(12473), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12473), + [anon_sym_BSLASHinput] = ACTIONS(12473), + [anon_sym_BSLASHsubfile] = ACTIONS(12473), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12473), + [anon_sym_BSLASHbibliography] = ACTIONS(12473), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12473), + [anon_sym_BSLASHincludesvg] = ACTIONS(12473), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12473), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12473), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12473), + [anon_sym_BSLASHimport] = ACTIONS(12473), + [anon_sym_BSLASHsubimport] = ACTIONS(12473), + [anon_sym_BSLASHinputfrom] = ACTIONS(12473), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12473), + [anon_sym_BSLASHincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHlabel] = ACTIONS(12473), + [anon_sym_BSLASHref] = ACTIONS(12473), + [anon_sym_BSLASHvref] = ACTIONS(12473), + [anon_sym_BSLASHVref] = ACTIONS(12473), + [anon_sym_BSLASHautoref] = ACTIONS(12473), + [anon_sym_BSLASHpageref] = ACTIONS(12473), + [anon_sym_BSLASHcref] = ACTIONS(12473), + [anon_sym_BSLASHCref] = ACTIONS(12473), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnameCref] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHlabelcref] = ACTIONS(12473), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12473), + [anon_sym_BSLASHeqref] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange] = ACTIONS(12473), + [anon_sym_BSLASHCrefrange] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewlabel] = ACTIONS(12473), + [anon_sym_BSLASHnewcommand] = ACTIONS(12473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12473), + [anon_sym_BSLASHgls] = ACTIONS(12473), + [anon_sym_BSLASHGls] = ACTIONS(12473), + [anon_sym_BSLASHGLS] = ACTIONS(12473), + [anon_sym_BSLASHglspl] = ACTIONS(12473), + [anon_sym_BSLASHGlspl] = ACTIONS(12473), + [anon_sym_BSLASHGLSpl] = ACTIONS(12473), + [anon_sym_BSLASHglsdisp] = ACTIONS(12473), + [anon_sym_BSLASHglslink] = ACTIONS(12473), + [anon_sym_BSLASHglstext] = ACTIONS(12473), + [anon_sym_BSLASHGlstext] = ACTIONS(12473), + [anon_sym_BSLASHGLStext] = ACTIONS(12473), + [anon_sym_BSLASHglsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12473), + [anon_sym_BSLASHglsplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSplural] = ACTIONS(12473), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHglsname] = ACTIONS(12473), + [anon_sym_BSLASHGlsname] = ACTIONS(12473), + [anon_sym_BSLASHGLSname] = ACTIONS(12473), + [anon_sym_BSLASHglssymbol] = ACTIONS(12473), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12473), + [anon_sym_BSLASHglsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12473), + [anon_sym_BSLASHglsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12473), + [anon_sym_BSLASHglsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12473), + [anon_sym_BSLASHglsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12473), + [anon_sym_BSLASHglsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12473), + [anon_sym_BSLASHnewacronym] = ACTIONS(12473), + [anon_sym_BSLASHacrshort] = ACTIONS(12473), + [anon_sym_BSLASHAcrshort] = ACTIONS(12473), + [anon_sym_BSLASHACRshort] = ACTIONS(12473), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12473), + [anon_sym_BSLASHacrlong] = ACTIONS(12473), + [anon_sym_BSLASHAcrlong] = ACTIONS(12473), + [anon_sym_BSLASHACRlong] = ACTIONS(12473), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12473), + [anon_sym_BSLASHacrfull] = ACTIONS(12473), + [anon_sym_BSLASHAcrfull] = ACTIONS(12473), + [anon_sym_BSLASHACRfull] = ACTIONS(12473), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12473), + [anon_sym_BSLASHacs] = ACTIONS(12473), + [anon_sym_BSLASHAcs] = ACTIONS(12473), + [anon_sym_BSLASHacsp] = ACTIONS(12473), + [anon_sym_BSLASHAcsp] = ACTIONS(12473), + [anon_sym_BSLASHacl] = ACTIONS(12473), + [anon_sym_BSLASHAcl] = ACTIONS(12473), + [anon_sym_BSLASHaclp] = ACTIONS(12473), + [anon_sym_BSLASHAclp] = ACTIONS(12473), + [anon_sym_BSLASHacf] = ACTIONS(12473), + [anon_sym_BSLASHAcf] = ACTIONS(12473), + [anon_sym_BSLASHacfp] = ACTIONS(12473), + [anon_sym_BSLASHAcfp] = ACTIONS(12473), + [anon_sym_BSLASHac] = ACTIONS(12473), + [anon_sym_BSLASHAc] = ACTIONS(12473), + [anon_sym_BSLASHacp] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12473), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12473), + [anon_sym_BSLASHcolor] = ACTIONS(12473), + [anon_sym_BSLASHcolorbox] = ACTIONS(12473), + [anon_sym_BSLASHtextcolor] = ACTIONS(12473), + [anon_sym_BSLASHpagecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12473), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12473), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12473), + }, + [1107] = { + [sym_generic_command_name] = ACTIONS(12489), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12489), + [aux_sym_section_token1] = ACTIONS(12489), + [aux_sym_subsection_token1] = ACTIONS(12489), + [aux_sym_subsubsection_token1] = ACTIONS(12489), + [aux_sym_paragraph_token1] = ACTIONS(12489), + [aux_sym_subparagraph_token1] = ACTIONS(12489), + [anon_sym_BSLASHitem] = ACTIONS(12489), + [anon_sym_LBRACK] = ACTIONS(12487), + [anon_sym_RBRACK] = ACTIONS(12487), + [anon_sym_LBRACE] = ACTIONS(12487), + [anon_sym_RBRACE] = ACTIONS(12487), + [anon_sym_LPAREN] = ACTIONS(12487), + [anon_sym_COMMA] = ACTIONS(12487), + [anon_sym_EQ] = ACTIONS(12487), + [sym_word] = ACTIONS(12487), + [sym_param] = ACTIONS(12487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12487), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12487), + [anon_sym_DOLLAR] = ACTIONS(12489), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12487), + [anon_sym_BSLASHbegin] = ACTIONS(12489), + [anon_sym_BSLASHcaption] = ACTIONS(12489), + [anon_sym_BSLASHcite] = ACTIONS(12489), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCite] = ACTIONS(12489), + [anon_sym_BSLASHnocite] = ACTIONS(12489), + [anon_sym_BSLASHcitet] = ACTIONS(12489), + [anon_sym_BSLASHcitep] = ACTIONS(12489), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteauthor] = ACTIONS(12489), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12489), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitetitle] = ACTIONS(12489), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteyear] = ACTIONS(12489), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitedate] = ACTIONS(12489), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteurl] = ACTIONS(12489), + [anon_sym_BSLASHfullcite] = ACTIONS(12489), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12489), + [anon_sym_BSLASHcitealt] = ACTIONS(12489), + [anon_sym_BSLASHcitealp] = ACTIONS(12489), + [anon_sym_BSLASHcitetext] = ACTIONS(12489), + [anon_sym_BSLASHparencite] = ACTIONS(12489), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHParencite] = ACTIONS(12489), + [anon_sym_BSLASHfootcite] = ACTIONS(12489), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12489), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12489), + [anon_sym_BSLASHtextcite] = ACTIONS(12489), + [anon_sym_BSLASHTextcite] = ACTIONS(12489), + [anon_sym_BSLASHsmartcite] = ACTIONS(12489), + [anon_sym_BSLASHSmartcite] = ACTIONS(12489), + [anon_sym_BSLASHsupercite] = ACTIONS(12489), + [anon_sym_BSLASHautocite] = ACTIONS(12489), + [anon_sym_BSLASHAutocite] = ACTIONS(12489), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHvolcite] = ACTIONS(12489), + [anon_sym_BSLASHVolcite] = ACTIONS(12489), + [anon_sym_BSLASHpvolcite] = ACTIONS(12489), + [anon_sym_BSLASHPvolcite] = ACTIONS(12489), + [anon_sym_BSLASHfvolcite] = ACTIONS(12489), + [anon_sym_BSLASHftvolcite] = ACTIONS(12489), + [anon_sym_BSLASHsvolcite] = ACTIONS(12489), + [anon_sym_BSLASHSvolcite] = ACTIONS(12489), + [anon_sym_BSLASHtvolcite] = ACTIONS(12489), + [anon_sym_BSLASHTvolcite] = ACTIONS(12489), + [anon_sym_BSLASHavolcite] = ACTIONS(12489), + [anon_sym_BSLASHAvolcite] = ACTIONS(12489), + [anon_sym_BSLASHnotecite] = ACTIONS(12489), + [anon_sym_BSLASHpnotecite] = ACTIONS(12489), + [anon_sym_BSLASHPnotecite] = ACTIONS(12489), + [anon_sym_BSLASHfnotecite] = ACTIONS(12489), + [anon_sym_BSLASHusepackage] = ACTIONS(12489), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12489), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12489), + [anon_sym_BSLASHinclude] = ACTIONS(12489), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12489), + [anon_sym_BSLASHinput] = ACTIONS(12489), + [anon_sym_BSLASHsubfile] = ACTIONS(12489), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12489), + [anon_sym_BSLASHbibliography] = ACTIONS(12489), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12489), + [anon_sym_BSLASHincludesvg] = ACTIONS(12489), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12489), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12489), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12489), + [anon_sym_BSLASHimport] = ACTIONS(12489), + [anon_sym_BSLASHsubimport] = ACTIONS(12489), + [anon_sym_BSLASHinputfrom] = ACTIONS(12489), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12489), + [anon_sym_BSLASHincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHlabel] = ACTIONS(12489), + [anon_sym_BSLASHref] = ACTIONS(12489), + [anon_sym_BSLASHvref] = ACTIONS(12489), + [anon_sym_BSLASHVref] = ACTIONS(12489), + [anon_sym_BSLASHautoref] = ACTIONS(12489), + [anon_sym_BSLASHpageref] = ACTIONS(12489), + [anon_sym_BSLASHcref] = ACTIONS(12489), + [anon_sym_BSLASHCref] = ACTIONS(12489), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnameCref] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHlabelcref] = ACTIONS(12489), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12489), + [anon_sym_BSLASHeqref] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange] = ACTIONS(12489), + [anon_sym_BSLASHCrefrange] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewlabel] = ACTIONS(12489), + [anon_sym_BSLASHnewcommand] = ACTIONS(12489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12489), + [anon_sym_BSLASHgls] = ACTIONS(12489), + [anon_sym_BSLASHGls] = ACTIONS(12489), + [anon_sym_BSLASHGLS] = ACTIONS(12489), + [anon_sym_BSLASHglspl] = ACTIONS(12489), + [anon_sym_BSLASHGlspl] = ACTIONS(12489), + [anon_sym_BSLASHGLSpl] = ACTIONS(12489), + [anon_sym_BSLASHglsdisp] = ACTIONS(12489), + [anon_sym_BSLASHglslink] = ACTIONS(12489), + [anon_sym_BSLASHglstext] = ACTIONS(12489), + [anon_sym_BSLASHGlstext] = ACTIONS(12489), + [anon_sym_BSLASHGLStext] = ACTIONS(12489), + [anon_sym_BSLASHglsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12489), + [anon_sym_BSLASHglsplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSplural] = ACTIONS(12489), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHglsname] = ACTIONS(12489), + [anon_sym_BSLASHGlsname] = ACTIONS(12489), + [anon_sym_BSLASHGLSname] = ACTIONS(12489), + [anon_sym_BSLASHglssymbol] = ACTIONS(12489), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12489), + [anon_sym_BSLASHglsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12489), + [anon_sym_BSLASHglsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12489), + [anon_sym_BSLASHglsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12489), + [anon_sym_BSLASHglsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12489), + [anon_sym_BSLASHglsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12489), + [anon_sym_BSLASHnewacronym] = ACTIONS(12489), + [anon_sym_BSLASHacrshort] = ACTIONS(12489), + [anon_sym_BSLASHAcrshort] = ACTIONS(12489), + [anon_sym_BSLASHACRshort] = ACTIONS(12489), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12489), + [anon_sym_BSLASHacrlong] = ACTIONS(12489), + [anon_sym_BSLASHAcrlong] = ACTIONS(12489), + [anon_sym_BSLASHACRlong] = ACTIONS(12489), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12489), + [anon_sym_BSLASHacrfull] = ACTIONS(12489), + [anon_sym_BSLASHAcrfull] = ACTIONS(12489), + [anon_sym_BSLASHACRfull] = ACTIONS(12489), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12489), + [anon_sym_BSLASHacs] = ACTIONS(12489), + [anon_sym_BSLASHAcs] = ACTIONS(12489), + [anon_sym_BSLASHacsp] = ACTIONS(12489), + [anon_sym_BSLASHAcsp] = ACTIONS(12489), + [anon_sym_BSLASHacl] = ACTIONS(12489), + [anon_sym_BSLASHAcl] = ACTIONS(12489), + [anon_sym_BSLASHaclp] = ACTIONS(12489), + [anon_sym_BSLASHAclp] = ACTIONS(12489), + [anon_sym_BSLASHacf] = ACTIONS(12489), + [anon_sym_BSLASHAcf] = ACTIONS(12489), + [anon_sym_BSLASHacfp] = ACTIONS(12489), + [anon_sym_BSLASHAcfp] = ACTIONS(12489), + [anon_sym_BSLASHac] = ACTIONS(12489), + [anon_sym_BSLASHAc] = ACTIONS(12489), + [anon_sym_BSLASHacp] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12489), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12489), + [anon_sym_BSLASHcolor] = ACTIONS(12489), + [anon_sym_BSLASHcolorbox] = ACTIONS(12489), + [anon_sym_BSLASHtextcolor] = ACTIONS(12489), + [anon_sym_BSLASHpagecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12489), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12489), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12489), + }, + [1108] = { + [sym_generic_command_name] = ACTIONS(12505), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12505), + [aux_sym_section_token1] = ACTIONS(12505), + [aux_sym_subsection_token1] = ACTIONS(12505), + [aux_sym_subsubsection_token1] = ACTIONS(12505), + [aux_sym_paragraph_token1] = ACTIONS(12505), + [aux_sym_subparagraph_token1] = ACTIONS(12505), + [anon_sym_BSLASHitem] = ACTIONS(12505), + [anon_sym_LBRACK] = ACTIONS(12503), + [anon_sym_RBRACK] = ACTIONS(12503), + [anon_sym_LBRACE] = ACTIONS(12503), + [anon_sym_RBRACE] = ACTIONS(12503), + [anon_sym_LPAREN] = ACTIONS(12503), + [anon_sym_COMMA] = ACTIONS(12503), + [anon_sym_EQ] = ACTIONS(12503), + [sym_word] = ACTIONS(12503), + [sym_param] = ACTIONS(12503), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12503), + [anon_sym_DOLLAR] = ACTIONS(12505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12503), + [anon_sym_BSLASHbegin] = ACTIONS(12505), + [anon_sym_BSLASHcaption] = ACTIONS(12505), + [anon_sym_BSLASHcite] = ACTIONS(12505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCite] = ACTIONS(12505), + [anon_sym_BSLASHnocite] = ACTIONS(12505), + [anon_sym_BSLASHcitet] = ACTIONS(12505), + [anon_sym_BSLASHcitep] = ACTIONS(12505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteauthor] = ACTIONS(12505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitetitle] = ACTIONS(12505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteyear] = ACTIONS(12505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitedate] = ACTIONS(12505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteurl] = ACTIONS(12505), + [anon_sym_BSLASHfullcite] = ACTIONS(12505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12505), + [anon_sym_BSLASHcitealt] = ACTIONS(12505), + [anon_sym_BSLASHcitealp] = ACTIONS(12505), + [anon_sym_BSLASHcitetext] = ACTIONS(12505), + [anon_sym_BSLASHparencite] = ACTIONS(12505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHParencite] = ACTIONS(12505), + [anon_sym_BSLASHfootcite] = ACTIONS(12505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12505), + [anon_sym_BSLASHtextcite] = ACTIONS(12505), + [anon_sym_BSLASHTextcite] = ACTIONS(12505), + [anon_sym_BSLASHsmartcite] = ACTIONS(12505), + [anon_sym_BSLASHSmartcite] = ACTIONS(12505), + [anon_sym_BSLASHsupercite] = ACTIONS(12505), + [anon_sym_BSLASHautocite] = ACTIONS(12505), + [anon_sym_BSLASHAutocite] = ACTIONS(12505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHvolcite] = ACTIONS(12505), + [anon_sym_BSLASHVolcite] = ACTIONS(12505), + [anon_sym_BSLASHpvolcite] = ACTIONS(12505), + [anon_sym_BSLASHPvolcite] = ACTIONS(12505), + [anon_sym_BSLASHfvolcite] = ACTIONS(12505), + [anon_sym_BSLASHftvolcite] = ACTIONS(12505), + [anon_sym_BSLASHsvolcite] = ACTIONS(12505), + [anon_sym_BSLASHSvolcite] = ACTIONS(12505), + [anon_sym_BSLASHtvolcite] = ACTIONS(12505), + [anon_sym_BSLASHTvolcite] = ACTIONS(12505), + [anon_sym_BSLASHavolcite] = ACTIONS(12505), + [anon_sym_BSLASHAvolcite] = ACTIONS(12505), + [anon_sym_BSLASHnotecite] = ACTIONS(12505), + [anon_sym_BSLASHpnotecite] = ACTIONS(12505), + [anon_sym_BSLASHPnotecite] = ACTIONS(12505), + [anon_sym_BSLASHfnotecite] = ACTIONS(12505), + [anon_sym_BSLASHusepackage] = ACTIONS(12505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12505), + [anon_sym_BSLASHinclude] = ACTIONS(12505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12505), + [anon_sym_BSLASHinput] = ACTIONS(12505), + [anon_sym_BSLASHsubfile] = ACTIONS(12505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12505), + [anon_sym_BSLASHbibliography] = ACTIONS(12505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12505), + [anon_sym_BSLASHincludesvg] = ACTIONS(12505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12505), + [anon_sym_BSLASHimport] = ACTIONS(12505), + [anon_sym_BSLASHsubimport] = ACTIONS(12505), + [anon_sym_BSLASHinputfrom] = ACTIONS(12505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12505), + [anon_sym_BSLASHincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHlabel] = ACTIONS(12505), + [anon_sym_BSLASHref] = ACTIONS(12505), + [anon_sym_BSLASHvref] = ACTIONS(12505), + [anon_sym_BSLASHVref] = ACTIONS(12505), + [anon_sym_BSLASHautoref] = ACTIONS(12505), + [anon_sym_BSLASHpageref] = ACTIONS(12505), + [anon_sym_BSLASHcref] = ACTIONS(12505), + [anon_sym_BSLASHCref] = ACTIONS(12505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnameCref] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHlabelcref] = ACTIONS(12505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12505), + [anon_sym_BSLASHeqref] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange] = ACTIONS(12505), + [anon_sym_BSLASHCrefrange] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewlabel] = ACTIONS(12505), + [anon_sym_BSLASHnewcommand] = ACTIONS(12505), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12505), + [anon_sym_BSLASHgls] = ACTIONS(12505), + [anon_sym_BSLASHGls] = ACTIONS(12505), + [anon_sym_BSLASHGLS] = ACTIONS(12505), + [anon_sym_BSLASHglspl] = ACTIONS(12505), + [anon_sym_BSLASHGlspl] = ACTIONS(12505), + [anon_sym_BSLASHGLSpl] = ACTIONS(12505), + [anon_sym_BSLASHglsdisp] = ACTIONS(12505), + [anon_sym_BSLASHglslink] = ACTIONS(12505), + [anon_sym_BSLASHglstext] = ACTIONS(12505), + [anon_sym_BSLASHGlstext] = ACTIONS(12505), + [anon_sym_BSLASHGLStext] = ACTIONS(12505), + [anon_sym_BSLASHglsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12505), + [anon_sym_BSLASHglsplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSplural] = ACTIONS(12505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHglsname] = ACTIONS(12505), + [anon_sym_BSLASHGlsname] = ACTIONS(12505), + [anon_sym_BSLASHGLSname] = ACTIONS(12505), + [anon_sym_BSLASHglssymbol] = ACTIONS(12505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12505), + [anon_sym_BSLASHglsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12505), + [anon_sym_BSLASHglsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12505), + [anon_sym_BSLASHglsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12505), + [anon_sym_BSLASHglsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12505), + [anon_sym_BSLASHglsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12505), + [anon_sym_BSLASHnewacronym] = ACTIONS(12505), + [anon_sym_BSLASHacrshort] = ACTIONS(12505), + [anon_sym_BSLASHAcrshort] = ACTIONS(12505), + [anon_sym_BSLASHACRshort] = ACTIONS(12505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12505), + [anon_sym_BSLASHacrlong] = ACTIONS(12505), + [anon_sym_BSLASHAcrlong] = ACTIONS(12505), + [anon_sym_BSLASHACRlong] = ACTIONS(12505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12505), + [anon_sym_BSLASHacrfull] = ACTIONS(12505), + [anon_sym_BSLASHAcrfull] = ACTIONS(12505), + [anon_sym_BSLASHACRfull] = ACTIONS(12505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12505), + [anon_sym_BSLASHacs] = ACTIONS(12505), + [anon_sym_BSLASHAcs] = ACTIONS(12505), + [anon_sym_BSLASHacsp] = ACTIONS(12505), + [anon_sym_BSLASHAcsp] = ACTIONS(12505), + [anon_sym_BSLASHacl] = ACTIONS(12505), + [anon_sym_BSLASHAcl] = ACTIONS(12505), + [anon_sym_BSLASHaclp] = ACTIONS(12505), + [anon_sym_BSLASHAclp] = ACTIONS(12505), + [anon_sym_BSLASHacf] = ACTIONS(12505), + [anon_sym_BSLASHAcf] = ACTIONS(12505), + [anon_sym_BSLASHacfp] = ACTIONS(12505), + [anon_sym_BSLASHAcfp] = ACTIONS(12505), + [anon_sym_BSLASHac] = ACTIONS(12505), + [anon_sym_BSLASHAc] = ACTIONS(12505), + [anon_sym_BSLASHacp] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12505), + [anon_sym_BSLASHcolor] = ACTIONS(12505), + [anon_sym_BSLASHcolorbox] = ACTIONS(12505), + [anon_sym_BSLASHtextcolor] = ACTIONS(12505), + [anon_sym_BSLASHpagecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12505), + }, + [1109] = { + [sym_generic_command_name] = ACTIONS(12535), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12535), + [aux_sym_section_token1] = ACTIONS(12535), + [aux_sym_subsection_token1] = ACTIONS(12535), + [aux_sym_subsubsection_token1] = ACTIONS(12535), + [aux_sym_paragraph_token1] = ACTIONS(12535), + [aux_sym_subparagraph_token1] = ACTIONS(12535), + [anon_sym_BSLASHitem] = ACTIONS(12535), + [anon_sym_LBRACK] = ACTIONS(12533), + [anon_sym_RBRACK] = ACTIONS(12533), + [anon_sym_LBRACE] = ACTIONS(12533), + [anon_sym_RBRACE] = ACTIONS(12533), + [anon_sym_LPAREN] = ACTIONS(12533), + [anon_sym_COMMA] = ACTIONS(12533), + [anon_sym_EQ] = ACTIONS(12533), + [sym_word] = ACTIONS(12533), + [sym_param] = ACTIONS(12533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12533), + [anon_sym_DOLLAR] = ACTIONS(12535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12533), + [anon_sym_BSLASHbegin] = ACTIONS(12535), + [anon_sym_BSLASHcaption] = ACTIONS(12535), + [anon_sym_BSLASHcite] = ACTIONS(12535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCite] = ACTIONS(12535), + [anon_sym_BSLASHnocite] = ACTIONS(12535), + [anon_sym_BSLASHcitet] = ACTIONS(12535), + [anon_sym_BSLASHcitep] = ACTIONS(12535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteauthor] = ACTIONS(12535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitetitle] = ACTIONS(12535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteyear] = ACTIONS(12535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitedate] = ACTIONS(12535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteurl] = ACTIONS(12535), + [anon_sym_BSLASHfullcite] = ACTIONS(12535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12535), + [anon_sym_BSLASHcitealt] = ACTIONS(12535), + [anon_sym_BSLASHcitealp] = ACTIONS(12535), + [anon_sym_BSLASHcitetext] = ACTIONS(12535), + [anon_sym_BSLASHparencite] = ACTIONS(12535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHParencite] = ACTIONS(12535), + [anon_sym_BSLASHfootcite] = ACTIONS(12535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12535), + [anon_sym_BSLASHtextcite] = ACTIONS(12535), + [anon_sym_BSLASHTextcite] = ACTIONS(12535), + [anon_sym_BSLASHsmartcite] = ACTIONS(12535), + [anon_sym_BSLASHSmartcite] = ACTIONS(12535), + [anon_sym_BSLASHsupercite] = ACTIONS(12535), + [anon_sym_BSLASHautocite] = ACTIONS(12535), + [anon_sym_BSLASHAutocite] = ACTIONS(12535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHvolcite] = ACTIONS(12535), + [anon_sym_BSLASHVolcite] = ACTIONS(12535), + [anon_sym_BSLASHpvolcite] = ACTIONS(12535), + [anon_sym_BSLASHPvolcite] = ACTIONS(12535), + [anon_sym_BSLASHfvolcite] = ACTIONS(12535), + [anon_sym_BSLASHftvolcite] = ACTIONS(12535), + [anon_sym_BSLASHsvolcite] = ACTIONS(12535), + [anon_sym_BSLASHSvolcite] = ACTIONS(12535), + [anon_sym_BSLASHtvolcite] = ACTIONS(12535), + [anon_sym_BSLASHTvolcite] = ACTIONS(12535), + [anon_sym_BSLASHavolcite] = ACTIONS(12535), + [anon_sym_BSLASHAvolcite] = ACTIONS(12535), + [anon_sym_BSLASHnotecite] = ACTIONS(12535), + [anon_sym_BSLASHpnotecite] = ACTIONS(12535), + [anon_sym_BSLASHPnotecite] = ACTIONS(12535), + [anon_sym_BSLASHfnotecite] = ACTIONS(12535), + [anon_sym_BSLASHusepackage] = ACTIONS(12535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12535), + [anon_sym_BSLASHinclude] = ACTIONS(12535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12535), + [anon_sym_BSLASHinput] = ACTIONS(12535), + [anon_sym_BSLASHsubfile] = ACTIONS(12535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12535), + [anon_sym_BSLASHbibliography] = ACTIONS(12535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12535), + [anon_sym_BSLASHincludesvg] = ACTIONS(12535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12535), + [anon_sym_BSLASHimport] = ACTIONS(12535), + [anon_sym_BSLASHsubimport] = ACTIONS(12535), + [anon_sym_BSLASHinputfrom] = ACTIONS(12535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12535), + [anon_sym_BSLASHincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHlabel] = ACTIONS(12535), + [anon_sym_BSLASHref] = ACTIONS(12535), + [anon_sym_BSLASHvref] = ACTIONS(12535), + [anon_sym_BSLASHVref] = ACTIONS(12535), + [anon_sym_BSLASHautoref] = ACTIONS(12535), + [anon_sym_BSLASHpageref] = ACTIONS(12535), + [anon_sym_BSLASHcref] = ACTIONS(12535), + [anon_sym_BSLASHCref] = ACTIONS(12535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnameCref] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHlabelcref] = ACTIONS(12535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12535), + [anon_sym_BSLASHeqref] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange] = ACTIONS(12535), + [anon_sym_BSLASHCrefrange] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewlabel] = ACTIONS(12535), + [anon_sym_BSLASHnewcommand] = ACTIONS(12535), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12535), + [anon_sym_BSLASHgls] = ACTIONS(12535), + [anon_sym_BSLASHGls] = ACTIONS(12535), + [anon_sym_BSLASHGLS] = ACTIONS(12535), + [anon_sym_BSLASHglspl] = ACTIONS(12535), + [anon_sym_BSLASHGlspl] = ACTIONS(12535), + [anon_sym_BSLASHGLSpl] = ACTIONS(12535), + [anon_sym_BSLASHglsdisp] = ACTIONS(12535), + [anon_sym_BSLASHglslink] = ACTIONS(12535), + [anon_sym_BSLASHglstext] = ACTIONS(12535), + [anon_sym_BSLASHGlstext] = ACTIONS(12535), + [anon_sym_BSLASHGLStext] = ACTIONS(12535), + [anon_sym_BSLASHglsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12535), + [anon_sym_BSLASHglsplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSplural] = ACTIONS(12535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHglsname] = ACTIONS(12535), + [anon_sym_BSLASHGlsname] = ACTIONS(12535), + [anon_sym_BSLASHGLSname] = ACTIONS(12535), + [anon_sym_BSLASHglssymbol] = ACTIONS(12535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12535), + [anon_sym_BSLASHglsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12535), + [anon_sym_BSLASHglsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12535), + [anon_sym_BSLASHglsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12535), + [anon_sym_BSLASHglsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12535), + [anon_sym_BSLASHglsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12535), + [anon_sym_BSLASHnewacronym] = ACTIONS(12535), + [anon_sym_BSLASHacrshort] = ACTIONS(12535), + [anon_sym_BSLASHAcrshort] = ACTIONS(12535), + [anon_sym_BSLASHACRshort] = ACTIONS(12535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12535), + [anon_sym_BSLASHacrlong] = ACTIONS(12535), + [anon_sym_BSLASHAcrlong] = ACTIONS(12535), + [anon_sym_BSLASHACRlong] = ACTIONS(12535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12535), + [anon_sym_BSLASHacrfull] = ACTIONS(12535), + [anon_sym_BSLASHAcrfull] = ACTIONS(12535), + [anon_sym_BSLASHACRfull] = ACTIONS(12535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12535), + [anon_sym_BSLASHacs] = ACTIONS(12535), + [anon_sym_BSLASHAcs] = ACTIONS(12535), + [anon_sym_BSLASHacsp] = ACTIONS(12535), + [anon_sym_BSLASHAcsp] = ACTIONS(12535), + [anon_sym_BSLASHacl] = ACTIONS(12535), + [anon_sym_BSLASHAcl] = ACTIONS(12535), + [anon_sym_BSLASHaclp] = ACTIONS(12535), + [anon_sym_BSLASHAclp] = ACTIONS(12535), + [anon_sym_BSLASHacf] = ACTIONS(12535), + [anon_sym_BSLASHAcf] = ACTIONS(12535), + [anon_sym_BSLASHacfp] = ACTIONS(12535), + [anon_sym_BSLASHAcfp] = ACTIONS(12535), + [anon_sym_BSLASHac] = ACTIONS(12535), + [anon_sym_BSLASHAc] = ACTIONS(12535), + [anon_sym_BSLASHacp] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12535), + [anon_sym_BSLASHcolor] = ACTIONS(12535), + [anon_sym_BSLASHcolorbox] = ACTIONS(12535), + [anon_sym_BSLASHtextcolor] = ACTIONS(12535), + [anon_sym_BSLASHpagecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12535), + }, + [1110] = { + [sym_generic_command_name] = ACTIONS(12551), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12551), + [aux_sym_section_token1] = ACTIONS(12551), + [aux_sym_subsection_token1] = ACTIONS(12551), + [aux_sym_subsubsection_token1] = ACTIONS(12551), + [aux_sym_paragraph_token1] = ACTIONS(12551), + [aux_sym_subparagraph_token1] = ACTIONS(12551), + [anon_sym_BSLASHitem] = ACTIONS(12551), + [anon_sym_LBRACK] = ACTIONS(12549), + [anon_sym_RBRACK] = ACTIONS(12549), + [anon_sym_LBRACE] = ACTIONS(12549), + [anon_sym_RBRACE] = ACTIONS(12549), + [anon_sym_LPAREN] = ACTIONS(12549), + [anon_sym_COMMA] = ACTIONS(12549), + [anon_sym_EQ] = ACTIONS(12549), + [sym_word] = ACTIONS(12549), + [sym_param] = ACTIONS(12549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12549), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12549), + [anon_sym_DOLLAR] = ACTIONS(12551), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12549), + [anon_sym_BSLASHbegin] = ACTIONS(12551), + [anon_sym_BSLASHcaption] = ACTIONS(12551), + [anon_sym_BSLASHcite] = ACTIONS(12551), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCite] = ACTIONS(12551), + [anon_sym_BSLASHnocite] = ACTIONS(12551), + [anon_sym_BSLASHcitet] = ACTIONS(12551), + [anon_sym_BSLASHcitep] = ACTIONS(12551), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteauthor] = ACTIONS(12551), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12551), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitetitle] = ACTIONS(12551), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteyear] = ACTIONS(12551), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitedate] = ACTIONS(12551), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteurl] = ACTIONS(12551), + [anon_sym_BSLASHfullcite] = ACTIONS(12551), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12551), + [anon_sym_BSLASHcitealt] = ACTIONS(12551), + [anon_sym_BSLASHcitealp] = ACTIONS(12551), + [anon_sym_BSLASHcitetext] = ACTIONS(12551), + [anon_sym_BSLASHparencite] = ACTIONS(12551), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHParencite] = ACTIONS(12551), + [anon_sym_BSLASHfootcite] = ACTIONS(12551), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12551), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12551), + [anon_sym_BSLASHtextcite] = ACTIONS(12551), + [anon_sym_BSLASHTextcite] = ACTIONS(12551), + [anon_sym_BSLASHsmartcite] = ACTIONS(12551), + [anon_sym_BSLASHSmartcite] = ACTIONS(12551), + [anon_sym_BSLASHsupercite] = ACTIONS(12551), + [anon_sym_BSLASHautocite] = ACTIONS(12551), + [anon_sym_BSLASHAutocite] = ACTIONS(12551), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHvolcite] = ACTIONS(12551), + [anon_sym_BSLASHVolcite] = ACTIONS(12551), + [anon_sym_BSLASHpvolcite] = ACTIONS(12551), + [anon_sym_BSLASHPvolcite] = ACTIONS(12551), + [anon_sym_BSLASHfvolcite] = ACTIONS(12551), + [anon_sym_BSLASHftvolcite] = ACTIONS(12551), + [anon_sym_BSLASHsvolcite] = ACTIONS(12551), + [anon_sym_BSLASHSvolcite] = ACTIONS(12551), + [anon_sym_BSLASHtvolcite] = ACTIONS(12551), + [anon_sym_BSLASHTvolcite] = ACTIONS(12551), + [anon_sym_BSLASHavolcite] = ACTIONS(12551), + [anon_sym_BSLASHAvolcite] = ACTIONS(12551), + [anon_sym_BSLASHnotecite] = ACTIONS(12551), + [anon_sym_BSLASHpnotecite] = ACTIONS(12551), + [anon_sym_BSLASHPnotecite] = ACTIONS(12551), + [anon_sym_BSLASHfnotecite] = ACTIONS(12551), + [anon_sym_BSLASHusepackage] = ACTIONS(12551), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12551), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12551), + [anon_sym_BSLASHinclude] = ACTIONS(12551), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12551), + [anon_sym_BSLASHinput] = ACTIONS(12551), + [anon_sym_BSLASHsubfile] = ACTIONS(12551), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12551), + [anon_sym_BSLASHbibliography] = ACTIONS(12551), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12551), + [anon_sym_BSLASHincludesvg] = ACTIONS(12551), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12551), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12551), + [anon_sym_BSLASHimport] = ACTIONS(12551), + [anon_sym_BSLASHsubimport] = ACTIONS(12551), + [anon_sym_BSLASHinputfrom] = ACTIONS(12551), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12551), + [anon_sym_BSLASHincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHlabel] = ACTIONS(12551), + [anon_sym_BSLASHref] = ACTIONS(12551), + [anon_sym_BSLASHvref] = ACTIONS(12551), + [anon_sym_BSLASHVref] = ACTIONS(12551), + [anon_sym_BSLASHautoref] = ACTIONS(12551), + [anon_sym_BSLASHpageref] = ACTIONS(12551), + [anon_sym_BSLASHcref] = ACTIONS(12551), + [anon_sym_BSLASHCref] = ACTIONS(12551), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnameCref] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHlabelcref] = ACTIONS(12551), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12551), + [anon_sym_BSLASHeqref] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange] = ACTIONS(12551), + [anon_sym_BSLASHCrefrange] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewlabel] = ACTIONS(12551), + [anon_sym_BSLASHnewcommand] = ACTIONS(12551), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12551), + [anon_sym_BSLASHgls] = ACTIONS(12551), + [anon_sym_BSLASHGls] = ACTIONS(12551), + [anon_sym_BSLASHGLS] = ACTIONS(12551), + [anon_sym_BSLASHglspl] = ACTIONS(12551), + [anon_sym_BSLASHGlspl] = ACTIONS(12551), + [anon_sym_BSLASHGLSpl] = ACTIONS(12551), + [anon_sym_BSLASHglsdisp] = ACTIONS(12551), + [anon_sym_BSLASHglslink] = ACTIONS(12551), + [anon_sym_BSLASHglstext] = ACTIONS(12551), + [anon_sym_BSLASHGlstext] = ACTIONS(12551), + [anon_sym_BSLASHGLStext] = ACTIONS(12551), + [anon_sym_BSLASHglsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12551), + [anon_sym_BSLASHglsplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSplural] = ACTIONS(12551), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHglsname] = ACTIONS(12551), + [anon_sym_BSLASHGlsname] = ACTIONS(12551), + [anon_sym_BSLASHGLSname] = ACTIONS(12551), + [anon_sym_BSLASHglssymbol] = ACTIONS(12551), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12551), + [anon_sym_BSLASHglsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12551), + [anon_sym_BSLASHglsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12551), + [anon_sym_BSLASHglsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12551), + [anon_sym_BSLASHglsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12551), + [anon_sym_BSLASHglsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12551), + [anon_sym_BSLASHnewacronym] = ACTIONS(12551), + [anon_sym_BSLASHacrshort] = ACTIONS(12551), + [anon_sym_BSLASHAcrshort] = ACTIONS(12551), + [anon_sym_BSLASHACRshort] = ACTIONS(12551), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12551), + [anon_sym_BSLASHacrlong] = ACTIONS(12551), + [anon_sym_BSLASHAcrlong] = ACTIONS(12551), + [anon_sym_BSLASHACRlong] = ACTIONS(12551), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12551), + [anon_sym_BSLASHacrfull] = ACTIONS(12551), + [anon_sym_BSLASHAcrfull] = ACTIONS(12551), + [anon_sym_BSLASHACRfull] = ACTIONS(12551), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12551), + [anon_sym_BSLASHacs] = ACTIONS(12551), + [anon_sym_BSLASHAcs] = ACTIONS(12551), + [anon_sym_BSLASHacsp] = ACTIONS(12551), + [anon_sym_BSLASHAcsp] = ACTIONS(12551), + [anon_sym_BSLASHacl] = ACTIONS(12551), + [anon_sym_BSLASHAcl] = ACTIONS(12551), + [anon_sym_BSLASHaclp] = ACTIONS(12551), + [anon_sym_BSLASHAclp] = ACTIONS(12551), + [anon_sym_BSLASHacf] = ACTIONS(12551), + [anon_sym_BSLASHAcf] = ACTIONS(12551), + [anon_sym_BSLASHacfp] = ACTIONS(12551), + [anon_sym_BSLASHAcfp] = ACTIONS(12551), + [anon_sym_BSLASHac] = ACTIONS(12551), + [anon_sym_BSLASHAc] = ACTIONS(12551), + [anon_sym_BSLASHacp] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12551), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12551), + [anon_sym_BSLASHcolor] = ACTIONS(12551), + [anon_sym_BSLASHcolorbox] = ACTIONS(12551), + [anon_sym_BSLASHtextcolor] = ACTIONS(12551), + [anon_sym_BSLASHpagecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12551), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12551), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12551), + }, + [1111] = { + [sym_generic_command_name] = ACTIONS(12555), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12555), + [aux_sym_section_token1] = ACTIONS(12555), + [aux_sym_subsection_token1] = ACTIONS(12555), + [aux_sym_subsubsection_token1] = ACTIONS(12555), + [aux_sym_paragraph_token1] = ACTIONS(12555), + [aux_sym_subparagraph_token1] = ACTIONS(12555), + [anon_sym_BSLASHitem] = ACTIONS(12555), + [anon_sym_LBRACK] = ACTIONS(12553), + [anon_sym_RBRACK] = ACTIONS(12553), + [anon_sym_LBRACE] = ACTIONS(12553), + [anon_sym_RBRACE] = ACTIONS(12553), + [anon_sym_LPAREN] = ACTIONS(12553), + [anon_sym_COMMA] = ACTIONS(12553), + [anon_sym_EQ] = ACTIONS(12553), + [sym_word] = ACTIONS(12553), + [sym_param] = ACTIONS(12553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12553), + [anon_sym_DOLLAR] = ACTIONS(12555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12553), + [anon_sym_BSLASHbegin] = ACTIONS(12555), + [anon_sym_BSLASHcaption] = ACTIONS(12555), + [anon_sym_BSLASHcite] = ACTIONS(12555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCite] = ACTIONS(12555), + [anon_sym_BSLASHnocite] = ACTIONS(12555), + [anon_sym_BSLASHcitet] = ACTIONS(12555), + [anon_sym_BSLASHcitep] = ACTIONS(12555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteauthor] = ACTIONS(12555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitetitle] = ACTIONS(12555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteyear] = ACTIONS(12555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitedate] = ACTIONS(12555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteurl] = ACTIONS(12555), + [anon_sym_BSLASHfullcite] = ACTIONS(12555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12555), + [anon_sym_BSLASHcitealt] = ACTIONS(12555), + [anon_sym_BSLASHcitealp] = ACTIONS(12555), + [anon_sym_BSLASHcitetext] = ACTIONS(12555), + [anon_sym_BSLASHparencite] = ACTIONS(12555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHParencite] = ACTIONS(12555), + [anon_sym_BSLASHfootcite] = ACTIONS(12555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12555), + [anon_sym_BSLASHtextcite] = ACTIONS(12555), + [anon_sym_BSLASHTextcite] = ACTIONS(12555), + [anon_sym_BSLASHsmartcite] = ACTIONS(12555), + [anon_sym_BSLASHSmartcite] = ACTIONS(12555), + [anon_sym_BSLASHsupercite] = ACTIONS(12555), + [anon_sym_BSLASHautocite] = ACTIONS(12555), + [anon_sym_BSLASHAutocite] = ACTIONS(12555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHvolcite] = ACTIONS(12555), + [anon_sym_BSLASHVolcite] = ACTIONS(12555), + [anon_sym_BSLASHpvolcite] = ACTIONS(12555), + [anon_sym_BSLASHPvolcite] = ACTIONS(12555), + [anon_sym_BSLASHfvolcite] = ACTIONS(12555), + [anon_sym_BSLASHftvolcite] = ACTIONS(12555), + [anon_sym_BSLASHsvolcite] = ACTIONS(12555), + [anon_sym_BSLASHSvolcite] = ACTIONS(12555), + [anon_sym_BSLASHtvolcite] = ACTIONS(12555), + [anon_sym_BSLASHTvolcite] = ACTIONS(12555), + [anon_sym_BSLASHavolcite] = ACTIONS(12555), + [anon_sym_BSLASHAvolcite] = ACTIONS(12555), + [anon_sym_BSLASHnotecite] = ACTIONS(12555), + [anon_sym_BSLASHpnotecite] = ACTIONS(12555), + [anon_sym_BSLASHPnotecite] = ACTIONS(12555), + [anon_sym_BSLASHfnotecite] = ACTIONS(12555), + [anon_sym_BSLASHusepackage] = ACTIONS(12555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12555), + [anon_sym_BSLASHinclude] = ACTIONS(12555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12555), + [anon_sym_BSLASHinput] = ACTIONS(12555), + [anon_sym_BSLASHsubfile] = ACTIONS(12555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12555), + [anon_sym_BSLASHbibliography] = ACTIONS(12555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12555), + [anon_sym_BSLASHincludesvg] = ACTIONS(12555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12555), + [anon_sym_BSLASHimport] = ACTIONS(12555), + [anon_sym_BSLASHsubimport] = ACTIONS(12555), + [anon_sym_BSLASHinputfrom] = ACTIONS(12555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12555), + [anon_sym_BSLASHincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHlabel] = ACTIONS(12555), + [anon_sym_BSLASHref] = ACTIONS(12555), + [anon_sym_BSLASHvref] = ACTIONS(12555), + [anon_sym_BSLASHVref] = ACTIONS(12555), + [anon_sym_BSLASHautoref] = ACTIONS(12555), + [anon_sym_BSLASHpageref] = ACTIONS(12555), + [anon_sym_BSLASHcref] = ACTIONS(12555), + [anon_sym_BSLASHCref] = ACTIONS(12555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnameCref] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHlabelcref] = ACTIONS(12555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12555), + [anon_sym_BSLASHeqref] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange] = ACTIONS(12555), + [anon_sym_BSLASHCrefrange] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewlabel] = ACTIONS(12555), + [anon_sym_BSLASHnewcommand] = ACTIONS(12555), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12555), + [anon_sym_BSLASHgls] = ACTIONS(12555), + [anon_sym_BSLASHGls] = ACTIONS(12555), + [anon_sym_BSLASHGLS] = ACTIONS(12555), + [anon_sym_BSLASHglspl] = ACTIONS(12555), + [anon_sym_BSLASHGlspl] = ACTIONS(12555), + [anon_sym_BSLASHGLSpl] = ACTIONS(12555), + [anon_sym_BSLASHglsdisp] = ACTIONS(12555), + [anon_sym_BSLASHglslink] = ACTIONS(12555), + [anon_sym_BSLASHglstext] = ACTIONS(12555), + [anon_sym_BSLASHGlstext] = ACTIONS(12555), + [anon_sym_BSLASHGLStext] = ACTIONS(12555), + [anon_sym_BSLASHglsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12555), + [anon_sym_BSLASHglsplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSplural] = ACTIONS(12555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHglsname] = ACTIONS(12555), + [anon_sym_BSLASHGlsname] = ACTIONS(12555), + [anon_sym_BSLASHGLSname] = ACTIONS(12555), + [anon_sym_BSLASHglssymbol] = ACTIONS(12555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12555), + [anon_sym_BSLASHglsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12555), + [anon_sym_BSLASHglsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12555), + [anon_sym_BSLASHglsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12555), + [anon_sym_BSLASHglsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12555), + [anon_sym_BSLASHglsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12555), + [anon_sym_BSLASHnewacronym] = ACTIONS(12555), + [anon_sym_BSLASHacrshort] = ACTIONS(12555), + [anon_sym_BSLASHAcrshort] = ACTIONS(12555), + [anon_sym_BSLASHACRshort] = ACTIONS(12555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12555), + [anon_sym_BSLASHacrlong] = ACTIONS(12555), + [anon_sym_BSLASHAcrlong] = ACTIONS(12555), + [anon_sym_BSLASHACRlong] = ACTIONS(12555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12555), + [anon_sym_BSLASHacrfull] = ACTIONS(12555), + [anon_sym_BSLASHAcrfull] = ACTIONS(12555), + [anon_sym_BSLASHACRfull] = ACTIONS(12555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12555), + [anon_sym_BSLASHacs] = ACTIONS(12555), + [anon_sym_BSLASHAcs] = ACTIONS(12555), + [anon_sym_BSLASHacsp] = ACTIONS(12555), + [anon_sym_BSLASHAcsp] = ACTIONS(12555), + [anon_sym_BSLASHacl] = ACTIONS(12555), + [anon_sym_BSLASHAcl] = ACTIONS(12555), + [anon_sym_BSLASHaclp] = ACTIONS(12555), + [anon_sym_BSLASHAclp] = ACTIONS(12555), + [anon_sym_BSLASHacf] = ACTIONS(12555), + [anon_sym_BSLASHAcf] = ACTIONS(12555), + [anon_sym_BSLASHacfp] = ACTIONS(12555), + [anon_sym_BSLASHAcfp] = ACTIONS(12555), + [anon_sym_BSLASHac] = ACTIONS(12555), + [anon_sym_BSLASHAc] = ACTIONS(12555), + [anon_sym_BSLASHacp] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12555), + [anon_sym_BSLASHcolor] = ACTIONS(12555), + [anon_sym_BSLASHcolorbox] = ACTIONS(12555), + [anon_sym_BSLASHtextcolor] = ACTIONS(12555), + [anon_sym_BSLASHpagecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12555), + }, + [1112] = { + [sym_generic_command_name] = ACTIONS(12559), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12559), + [aux_sym_section_token1] = ACTIONS(12559), + [aux_sym_subsection_token1] = ACTIONS(12559), + [aux_sym_subsubsection_token1] = ACTIONS(12559), + [aux_sym_paragraph_token1] = ACTIONS(12559), + [aux_sym_subparagraph_token1] = ACTIONS(12559), + [anon_sym_BSLASHitem] = ACTIONS(12559), + [anon_sym_LBRACK] = ACTIONS(12557), + [anon_sym_RBRACK] = ACTIONS(12557), + [anon_sym_LBRACE] = ACTIONS(12557), + [anon_sym_RBRACE] = ACTIONS(12557), + [anon_sym_LPAREN] = ACTIONS(12557), + [anon_sym_COMMA] = ACTIONS(12557), + [anon_sym_EQ] = ACTIONS(12557), + [sym_word] = ACTIONS(12557), + [sym_param] = ACTIONS(12557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12557), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12557), + [anon_sym_DOLLAR] = ACTIONS(12559), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12557), + [anon_sym_BSLASHbegin] = ACTIONS(12559), + [anon_sym_BSLASHcaption] = ACTIONS(12559), + [anon_sym_BSLASHcite] = ACTIONS(12559), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCite] = ACTIONS(12559), + [anon_sym_BSLASHnocite] = ACTIONS(12559), + [anon_sym_BSLASHcitet] = ACTIONS(12559), + [anon_sym_BSLASHcitep] = ACTIONS(12559), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteauthor] = ACTIONS(12559), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12559), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitetitle] = ACTIONS(12559), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteyear] = ACTIONS(12559), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitedate] = ACTIONS(12559), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteurl] = ACTIONS(12559), + [anon_sym_BSLASHfullcite] = ACTIONS(12559), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12559), + [anon_sym_BSLASHcitealt] = ACTIONS(12559), + [anon_sym_BSLASHcitealp] = ACTIONS(12559), + [anon_sym_BSLASHcitetext] = ACTIONS(12559), + [anon_sym_BSLASHparencite] = ACTIONS(12559), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHParencite] = ACTIONS(12559), + [anon_sym_BSLASHfootcite] = ACTIONS(12559), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12559), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12559), + [anon_sym_BSLASHtextcite] = ACTIONS(12559), + [anon_sym_BSLASHTextcite] = ACTIONS(12559), + [anon_sym_BSLASHsmartcite] = ACTIONS(12559), + [anon_sym_BSLASHSmartcite] = ACTIONS(12559), + [anon_sym_BSLASHsupercite] = ACTIONS(12559), + [anon_sym_BSLASHautocite] = ACTIONS(12559), + [anon_sym_BSLASHAutocite] = ACTIONS(12559), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHvolcite] = ACTIONS(12559), + [anon_sym_BSLASHVolcite] = ACTIONS(12559), + [anon_sym_BSLASHpvolcite] = ACTIONS(12559), + [anon_sym_BSLASHPvolcite] = ACTIONS(12559), + [anon_sym_BSLASHfvolcite] = ACTIONS(12559), + [anon_sym_BSLASHftvolcite] = ACTIONS(12559), + [anon_sym_BSLASHsvolcite] = ACTIONS(12559), + [anon_sym_BSLASHSvolcite] = ACTIONS(12559), + [anon_sym_BSLASHtvolcite] = ACTIONS(12559), + [anon_sym_BSLASHTvolcite] = ACTIONS(12559), + [anon_sym_BSLASHavolcite] = ACTIONS(12559), + [anon_sym_BSLASHAvolcite] = ACTIONS(12559), + [anon_sym_BSLASHnotecite] = ACTIONS(12559), + [anon_sym_BSLASHpnotecite] = ACTIONS(12559), + [anon_sym_BSLASHPnotecite] = ACTIONS(12559), + [anon_sym_BSLASHfnotecite] = ACTIONS(12559), + [anon_sym_BSLASHusepackage] = ACTIONS(12559), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12559), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12559), + [anon_sym_BSLASHinclude] = ACTIONS(12559), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12559), + [anon_sym_BSLASHinput] = ACTIONS(12559), + [anon_sym_BSLASHsubfile] = ACTIONS(12559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12559), + [anon_sym_BSLASHbibliography] = ACTIONS(12559), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12559), + [anon_sym_BSLASHincludesvg] = ACTIONS(12559), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12559), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12559), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12559), + [anon_sym_BSLASHimport] = ACTIONS(12559), + [anon_sym_BSLASHsubimport] = ACTIONS(12559), + [anon_sym_BSLASHinputfrom] = ACTIONS(12559), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12559), + [anon_sym_BSLASHincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHlabel] = ACTIONS(12559), + [anon_sym_BSLASHref] = ACTIONS(12559), + [anon_sym_BSLASHvref] = ACTIONS(12559), + [anon_sym_BSLASHVref] = ACTIONS(12559), + [anon_sym_BSLASHautoref] = ACTIONS(12559), + [anon_sym_BSLASHpageref] = ACTIONS(12559), + [anon_sym_BSLASHcref] = ACTIONS(12559), + [anon_sym_BSLASHCref] = ACTIONS(12559), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnameCref] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHlabelcref] = ACTIONS(12559), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12559), + [anon_sym_BSLASHeqref] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange] = ACTIONS(12559), + [anon_sym_BSLASHCrefrange] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewlabel] = ACTIONS(12559), + [anon_sym_BSLASHnewcommand] = ACTIONS(12559), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12559), + [anon_sym_BSLASHgls] = ACTIONS(12559), + [anon_sym_BSLASHGls] = ACTIONS(12559), + [anon_sym_BSLASHGLS] = ACTIONS(12559), + [anon_sym_BSLASHglspl] = ACTIONS(12559), + [anon_sym_BSLASHGlspl] = ACTIONS(12559), + [anon_sym_BSLASHGLSpl] = ACTIONS(12559), + [anon_sym_BSLASHglsdisp] = ACTIONS(12559), + [anon_sym_BSLASHglslink] = ACTIONS(12559), + [anon_sym_BSLASHglstext] = ACTIONS(12559), + [anon_sym_BSLASHGlstext] = ACTIONS(12559), + [anon_sym_BSLASHGLStext] = ACTIONS(12559), + [anon_sym_BSLASHglsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12559), + [anon_sym_BSLASHglsplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSplural] = ACTIONS(12559), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHglsname] = ACTIONS(12559), + [anon_sym_BSLASHGlsname] = ACTIONS(12559), + [anon_sym_BSLASHGLSname] = ACTIONS(12559), + [anon_sym_BSLASHglssymbol] = ACTIONS(12559), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12559), + [anon_sym_BSLASHglsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12559), + [anon_sym_BSLASHglsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12559), + [anon_sym_BSLASHglsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12559), + [anon_sym_BSLASHglsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12559), + [anon_sym_BSLASHglsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12559), + [anon_sym_BSLASHnewacronym] = ACTIONS(12559), + [anon_sym_BSLASHacrshort] = ACTIONS(12559), + [anon_sym_BSLASHAcrshort] = ACTIONS(12559), + [anon_sym_BSLASHACRshort] = ACTIONS(12559), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12559), + [anon_sym_BSLASHacrlong] = ACTIONS(12559), + [anon_sym_BSLASHAcrlong] = ACTIONS(12559), + [anon_sym_BSLASHACRlong] = ACTIONS(12559), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12559), + [anon_sym_BSLASHacrfull] = ACTIONS(12559), + [anon_sym_BSLASHAcrfull] = ACTIONS(12559), + [anon_sym_BSLASHACRfull] = ACTIONS(12559), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12559), + [anon_sym_BSLASHacs] = ACTIONS(12559), + [anon_sym_BSLASHAcs] = ACTIONS(12559), + [anon_sym_BSLASHacsp] = ACTIONS(12559), + [anon_sym_BSLASHAcsp] = ACTIONS(12559), + [anon_sym_BSLASHacl] = ACTIONS(12559), + [anon_sym_BSLASHAcl] = ACTIONS(12559), + [anon_sym_BSLASHaclp] = ACTIONS(12559), + [anon_sym_BSLASHAclp] = ACTIONS(12559), + [anon_sym_BSLASHacf] = ACTIONS(12559), + [anon_sym_BSLASHAcf] = ACTIONS(12559), + [anon_sym_BSLASHacfp] = ACTIONS(12559), + [anon_sym_BSLASHAcfp] = ACTIONS(12559), + [anon_sym_BSLASHac] = ACTIONS(12559), + [anon_sym_BSLASHAc] = ACTIONS(12559), + [anon_sym_BSLASHacp] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12559), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12559), + [anon_sym_BSLASHcolor] = ACTIONS(12559), + [anon_sym_BSLASHcolorbox] = ACTIONS(12559), + [anon_sym_BSLASHtextcolor] = ACTIONS(12559), + [anon_sym_BSLASHpagecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12559), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12559), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12559), + }, + [1113] = { + [sym_generic_command_name] = ACTIONS(12255), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12255), + [aux_sym_section_token1] = ACTIONS(12255), + [aux_sym_subsection_token1] = ACTIONS(12255), + [aux_sym_subsubsection_token1] = ACTIONS(12255), + [aux_sym_paragraph_token1] = ACTIONS(12255), + [aux_sym_subparagraph_token1] = ACTIONS(12255), + [anon_sym_BSLASHitem] = ACTIONS(12255), + [anon_sym_LBRACK] = ACTIONS(12253), + [anon_sym_RBRACK] = ACTIONS(12253), + [anon_sym_LBRACE] = ACTIONS(12253), + [anon_sym_RBRACE] = ACTIONS(12253), + [anon_sym_LPAREN] = ACTIONS(12253), + [anon_sym_COMMA] = ACTIONS(12253), + [anon_sym_EQ] = ACTIONS(12253), + [sym_word] = ACTIONS(12253), + [sym_param] = ACTIONS(12253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12253), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12253), + [anon_sym_DOLLAR] = ACTIONS(12255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12253), + [anon_sym_BSLASHbegin] = ACTIONS(12255), + [anon_sym_BSLASHcaption] = ACTIONS(12255), + [anon_sym_BSLASHcite] = ACTIONS(12255), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCite] = ACTIONS(12255), + [anon_sym_BSLASHnocite] = ACTIONS(12255), + [anon_sym_BSLASHcitet] = ACTIONS(12255), + [anon_sym_BSLASHcitep] = ACTIONS(12255), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteauthor] = ACTIONS(12255), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12255), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitetitle] = ACTIONS(12255), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteyear] = ACTIONS(12255), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitedate] = ACTIONS(12255), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteurl] = ACTIONS(12255), + [anon_sym_BSLASHfullcite] = ACTIONS(12255), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12255), + [anon_sym_BSLASHcitealt] = ACTIONS(12255), + [anon_sym_BSLASHcitealp] = ACTIONS(12255), + [anon_sym_BSLASHcitetext] = ACTIONS(12255), + [anon_sym_BSLASHparencite] = ACTIONS(12255), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHParencite] = ACTIONS(12255), + [anon_sym_BSLASHfootcite] = ACTIONS(12255), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12255), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12255), + [anon_sym_BSLASHtextcite] = ACTIONS(12255), + [anon_sym_BSLASHTextcite] = ACTIONS(12255), + [anon_sym_BSLASHsmartcite] = ACTIONS(12255), + [anon_sym_BSLASHSmartcite] = ACTIONS(12255), + [anon_sym_BSLASHsupercite] = ACTIONS(12255), + [anon_sym_BSLASHautocite] = ACTIONS(12255), + [anon_sym_BSLASHAutocite] = ACTIONS(12255), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHvolcite] = ACTIONS(12255), + [anon_sym_BSLASHVolcite] = ACTIONS(12255), + [anon_sym_BSLASHpvolcite] = ACTIONS(12255), + [anon_sym_BSLASHPvolcite] = ACTIONS(12255), + [anon_sym_BSLASHfvolcite] = ACTIONS(12255), + [anon_sym_BSLASHftvolcite] = ACTIONS(12255), + [anon_sym_BSLASHsvolcite] = ACTIONS(12255), + [anon_sym_BSLASHSvolcite] = ACTIONS(12255), + [anon_sym_BSLASHtvolcite] = ACTIONS(12255), + [anon_sym_BSLASHTvolcite] = ACTIONS(12255), + [anon_sym_BSLASHavolcite] = ACTIONS(12255), + [anon_sym_BSLASHAvolcite] = ACTIONS(12255), + [anon_sym_BSLASHnotecite] = ACTIONS(12255), + [anon_sym_BSLASHpnotecite] = ACTIONS(12255), + [anon_sym_BSLASHPnotecite] = ACTIONS(12255), + [anon_sym_BSLASHfnotecite] = ACTIONS(12255), + [anon_sym_BSLASHusepackage] = ACTIONS(12255), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12255), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12255), + [anon_sym_BSLASHinclude] = ACTIONS(12255), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12255), + [anon_sym_BSLASHinput] = ACTIONS(12255), + [anon_sym_BSLASHsubfile] = ACTIONS(12255), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12255), + [anon_sym_BSLASHbibliography] = ACTIONS(12255), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12255), + [anon_sym_BSLASHincludesvg] = ACTIONS(12255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12255), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12255), + [anon_sym_BSLASHimport] = ACTIONS(12255), + [anon_sym_BSLASHsubimport] = ACTIONS(12255), + [anon_sym_BSLASHinputfrom] = ACTIONS(12255), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12255), + [anon_sym_BSLASHincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHlabel] = ACTIONS(12255), + [anon_sym_BSLASHref] = ACTIONS(12255), + [anon_sym_BSLASHvref] = ACTIONS(12255), + [anon_sym_BSLASHVref] = ACTIONS(12255), + [anon_sym_BSLASHautoref] = ACTIONS(12255), + [anon_sym_BSLASHpageref] = ACTIONS(12255), + [anon_sym_BSLASHcref] = ACTIONS(12255), + [anon_sym_BSLASHCref] = ACTIONS(12255), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnameCref] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHlabelcref] = ACTIONS(12255), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12255), + [anon_sym_BSLASHeqref] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange] = ACTIONS(12255), + [anon_sym_BSLASHCrefrange] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewlabel] = ACTIONS(12255), + [anon_sym_BSLASHnewcommand] = ACTIONS(12255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12255), + [anon_sym_BSLASHgls] = ACTIONS(12255), + [anon_sym_BSLASHGls] = ACTIONS(12255), + [anon_sym_BSLASHGLS] = ACTIONS(12255), + [anon_sym_BSLASHglspl] = ACTIONS(12255), + [anon_sym_BSLASHGlspl] = ACTIONS(12255), + [anon_sym_BSLASHGLSpl] = ACTIONS(12255), + [anon_sym_BSLASHglsdisp] = ACTIONS(12255), + [anon_sym_BSLASHglslink] = ACTIONS(12255), + [anon_sym_BSLASHglstext] = ACTIONS(12255), + [anon_sym_BSLASHGlstext] = ACTIONS(12255), + [anon_sym_BSLASHGLStext] = ACTIONS(12255), + [anon_sym_BSLASHglsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12255), + [anon_sym_BSLASHglsplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSplural] = ACTIONS(12255), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHglsname] = ACTIONS(12255), + [anon_sym_BSLASHGlsname] = ACTIONS(12255), + [anon_sym_BSLASHGLSname] = ACTIONS(12255), + [anon_sym_BSLASHglssymbol] = ACTIONS(12255), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12255), + [anon_sym_BSLASHglsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12255), + [anon_sym_BSLASHglsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12255), + [anon_sym_BSLASHglsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12255), + [anon_sym_BSLASHglsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12255), + [anon_sym_BSLASHglsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12255), + [anon_sym_BSLASHnewacronym] = ACTIONS(12255), + [anon_sym_BSLASHacrshort] = ACTIONS(12255), + [anon_sym_BSLASHAcrshort] = ACTIONS(12255), + [anon_sym_BSLASHACRshort] = ACTIONS(12255), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12255), + [anon_sym_BSLASHacrlong] = ACTIONS(12255), + [anon_sym_BSLASHAcrlong] = ACTIONS(12255), + [anon_sym_BSLASHACRlong] = ACTIONS(12255), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12255), + [anon_sym_BSLASHacrfull] = ACTIONS(12255), + [anon_sym_BSLASHAcrfull] = ACTIONS(12255), + [anon_sym_BSLASHACRfull] = ACTIONS(12255), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12255), + [anon_sym_BSLASHacs] = ACTIONS(12255), + [anon_sym_BSLASHAcs] = ACTIONS(12255), + [anon_sym_BSLASHacsp] = ACTIONS(12255), + [anon_sym_BSLASHAcsp] = ACTIONS(12255), + [anon_sym_BSLASHacl] = ACTIONS(12255), + [anon_sym_BSLASHAcl] = ACTIONS(12255), + [anon_sym_BSLASHaclp] = ACTIONS(12255), + [anon_sym_BSLASHAclp] = ACTIONS(12255), + [anon_sym_BSLASHacf] = ACTIONS(12255), + [anon_sym_BSLASHAcf] = ACTIONS(12255), + [anon_sym_BSLASHacfp] = ACTIONS(12255), + [anon_sym_BSLASHAcfp] = ACTIONS(12255), + [anon_sym_BSLASHac] = ACTIONS(12255), + [anon_sym_BSLASHAc] = ACTIONS(12255), + [anon_sym_BSLASHacp] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12255), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12255), + [anon_sym_BSLASHcolor] = ACTIONS(12255), + [anon_sym_BSLASHcolorbox] = ACTIONS(12255), + [anon_sym_BSLASHtextcolor] = ACTIONS(12255), + [anon_sym_BSLASHpagecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12255), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12255), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12255), + }, + [1114] = { + [sym_generic_command_name] = ACTIONS(12547), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12547), + [aux_sym_section_token1] = ACTIONS(12547), + [aux_sym_subsection_token1] = ACTIONS(12547), + [aux_sym_subsubsection_token1] = ACTIONS(12547), + [aux_sym_paragraph_token1] = ACTIONS(12547), + [aux_sym_subparagraph_token1] = ACTIONS(12547), + [anon_sym_BSLASHitem] = ACTIONS(12547), + [anon_sym_LBRACK] = ACTIONS(12545), + [anon_sym_RBRACK] = ACTIONS(12545), + [anon_sym_LBRACE] = ACTIONS(12545), + [anon_sym_RBRACE] = ACTIONS(12545), + [anon_sym_LPAREN] = ACTIONS(12545), + [anon_sym_COMMA] = ACTIONS(12545), + [anon_sym_EQ] = ACTIONS(12545), + [sym_word] = ACTIONS(12545), + [sym_param] = ACTIONS(12545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12545), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12545), + [anon_sym_DOLLAR] = ACTIONS(12547), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12545), + [anon_sym_BSLASHbegin] = ACTIONS(12547), + [anon_sym_BSLASHcaption] = ACTIONS(12547), + [anon_sym_BSLASHcite] = ACTIONS(12547), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCite] = ACTIONS(12547), + [anon_sym_BSLASHnocite] = ACTIONS(12547), + [anon_sym_BSLASHcitet] = ACTIONS(12547), + [anon_sym_BSLASHcitep] = ACTIONS(12547), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteauthor] = ACTIONS(12547), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12547), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitetitle] = ACTIONS(12547), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteyear] = ACTIONS(12547), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitedate] = ACTIONS(12547), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteurl] = ACTIONS(12547), + [anon_sym_BSLASHfullcite] = ACTIONS(12547), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12547), + [anon_sym_BSLASHcitealt] = ACTIONS(12547), + [anon_sym_BSLASHcitealp] = ACTIONS(12547), + [anon_sym_BSLASHcitetext] = ACTIONS(12547), + [anon_sym_BSLASHparencite] = ACTIONS(12547), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHParencite] = ACTIONS(12547), + [anon_sym_BSLASHfootcite] = ACTIONS(12547), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12547), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12547), + [anon_sym_BSLASHtextcite] = ACTIONS(12547), + [anon_sym_BSLASHTextcite] = ACTIONS(12547), + [anon_sym_BSLASHsmartcite] = ACTIONS(12547), + [anon_sym_BSLASHSmartcite] = ACTIONS(12547), + [anon_sym_BSLASHsupercite] = ACTIONS(12547), + [anon_sym_BSLASHautocite] = ACTIONS(12547), + [anon_sym_BSLASHAutocite] = ACTIONS(12547), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHvolcite] = ACTIONS(12547), + [anon_sym_BSLASHVolcite] = ACTIONS(12547), + [anon_sym_BSLASHpvolcite] = ACTIONS(12547), + [anon_sym_BSLASHPvolcite] = ACTIONS(12547), + [anon_sym_BSLASHfvolcite] = ACTIONS(12547), + [anon_sym_BSLASHftvolcite] = ACTIONS(12547), + [anon_sym_BSLASHsvolcite] = ACTIONS(12547), + [anon_sym_BSLASHSvolcite] = ACTIONS(12547), + [anon_sym_BSLASHtvolcite] = ACTIONS(12547), + [anon_sym_BSLASHTvolcite] = ACTIONS(12547), + [anon_sym_BSLASHavolcite] = ACTIONS(12547), + [anon_sym_BSLASHAvolcite] = ACTIONS(12547), + [anon_sym_BSLASHnotecite] = ACTIONS(12547), + [anon_sym_BSLASHpnotecite] = ACTIONS(12547), + [anon_sym_BSLASHPnotecite] = ACTIONS(12547), + [anon_sym_BSLASHfnotecite] = ACTIONS(12547), + [anon_sym_BSLASHusepackage] = ACTIONS(12547), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12547), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12547), + [anon_sym_BSLASHinclude] = ACTIONS(12547), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12547), + [anon_sym_BSLASHinput] = ACTIONS(12547), + [anon_sym_BSLASHsubfile] = ACTIONS(12547), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12547), + [anon_sym_BSLASHbibliography] = ACTIONS(12547), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12547), + [anon_sym_BSLASHincludesvg] = ACTIONS(12547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12547), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12547), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12547), + [anon_sym_BSLASHimport] = ACTIONS(12547), + [anon_sym_BSLASHsubimport] = ACTIONS(12547), + [anon_sym_BSLASHinputfrom] = ACTIONS(12547), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12547), + [anon_sym_BSLASHincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHlabel] = ACTIONS(12547), + [anon_sym_BSLASHref] = ACTIONS(12547), + [anon_sym_BSLASHvref] = ACTIONS(12547), + [anon_sym_BSLASHVref] = ACTIONS(12547), + [anon_sym_BSLASHautoref] = ACTIONS(12547), + [anon_sym_BSLASHpageref] = ACTIONS(12547), + [anon_sym_BSLASHcref] = ACTIONS(12547), + [anon_sym_BSLASHCref] = ACTIONS(12547), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnameCref] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHlabelcref] = ACTIONS(12547), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12547), + [anon_sym_BSLASHeqref] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange] = ACTIONS(12547), + [anon_sym_BSLASHCrefrange] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewlabel] = ACTIONS(12547), + [anon_sym_BSLASHnewcommand] = ACTIONS(12547), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12547), + [anon_sym_BSLASHgls] = ACTIONS(12547), + [anon_sym_BSLASHGls] = ACTIONS(12547), + [anon_sym_BSLASHGLS] = ACTIONS(12547), + [anon_sym_BSLASHglspl] = ACTIONS(12547), + [anon_sym_BSLASHGlspl] = ACTIONS(12547), + [anon_sym_BSLASHGLSpl] = ACTIONS(12547), + [anon_sym_BSLASHglsdisp] = ACTIONS(12547), + [anon_sym_BSLASHglslink] = ACTIONS(12547), + [anon_sym_BSLASHglstext] = ACTIONS(12547), + [anon_sym_BSLASHGlstext] = ACTIONS(12547), + [anon_sym_BSLASHGLStext] = ACTIONS(12547), + [anon_sym_BSLASHglsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12547), + [anon_sym_BSLASHglsplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSplural] = ACTIONS(12547), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHglsname] = ACTIONS(12547), + [anon_sym_BSLASHGlsname] = ACTIONS(12547), + [anon_sym_BSLASHGLSname] = ACTIONS(12547), + [anon_sym_BSLASHglssymbol] = ACTIONS(12547), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12547), + [anon_sym_BSLASHglsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12547), + [anon_sym_BSLASHglsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12547), + [anon_sym_BSLASHglsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12547), + [anon_sym_BSLASHglsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12547), + [anon_sym_BSLASHglsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12547), + [anon_sym_BSLASHnewacronym] = ACTIONS(12547), + [anon_sym_BSLASHacrshort] = ACTIONS(12547), + [anon_sym_BSLASHAcrshort] = ACTIONS(12547), + [anon_sym_BSLASHACRshort] = ACTIONS(12547), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12547), + [anon_sym_BSLASHacrlong] = ACTIONS(12547), + [anon_sym_BSLASHAcrlong] = ACTIONS(12547), + [anon_sym_BSLASHACRlong] = ACTIONS(12547), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12547), + [anon_sym_BSLASHacrfull] = ACTIONS(12547), + [anon_sym_BSLASHAcrfull] = ACTIONS(12547), + [anon_sym_BSLASHACRfull] = ACTIONS(12547), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12547), + [anon_sym_BSLASHacs] = ACTIONS(12547), + [anon_sym_BSLASHAcs] = ACTIONS(12547), + [anon_sym_BSLASHacsp] = ACTIONS(12547), + [anon_sym_BSLASHAcsp] = ACTIONS(12547), + [anon_sym_BSLASHacl] = ACTIONS(12547), + [anon_sym_BSLASHAcl] = ACTIONS(12547), + [anon_sym_BSLASHaclp] = ACTIONS(12547), + [anon_sym_BSLASHAclp] = ACTIONS(12547), + [anon_sym_BSLASHacf] = ACTIONS(12547), + [anon_sym_BSLASHAcf] = ACTIONS(12547), + [anon_sym_BSLASHacfp] = ACTIONS(12547), + [anon_sym_BSLASHAcfp] = ACTIONS(12547), + [anon_sym_BSLASHac] = ACTIONS(12547), + [anon_sym_BSLASHAc] = ACTIONS(12547), + [anon_sym_BSLASHacp] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12547), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12547), + [anon_sym_BSLASHcolor] = ACTIONS(12547), + [anon_sym_BSLASHcolorbox] = ACTIONS(12547), + [anon_sym_BSLASHtextcolor] = ACTIONS(12547), + [anon_sym_BSLASHpagecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12547), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12547), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12547), + }, + [1115] = { + [sym_generic_command_name] = ACTIONS(12104), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12104), + [aux_sym_section_token1] = ACTIONS(12104), + [aux_sym_subsection_token1] = ACTIONS(12104), + [aux_sym_subsubsection_token1] = ACTIONS(12104), + [aux_sym_paragraph_token1] = ACTIONS(12104), + [aux_sym_subparagraph_token1] = ACTIONS(12104), + [anon_sym_BSLASHitem] = ACTIONS(12104), + [anon_sym_LBRACK] = ACTIONS(12102), + [anon_sym_RBRACK] = ACTIONS(12102), + [anon_sym_LBRACE] = ACTIONS(12102), + [anon_sym_RBRACE] = ACTIONS(12102), + [anon_sym_LPAREN] = ACTIONS(12102), + [anon_sym_COMMA] = ACTIONS(12102), + [anon_sym_EQ] = ACTIONS(12102), + [sym_word] = ACTIONS(12102), + [sym_param] = ACTIONS(12102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12102), + [anon_sym_DOLLAR] = ACTIONS(12104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12102), + [anon_sym_BSLASHbegin] = ACTIONS(12104), + [anon_sym_BSLASHcaption] = ACTIONS(12104), + [anon_sym_BSLASHcite] = ACTIONS(12104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCite] = ACTIONS(12104), + [anon_sym_BSLASHnocite] = ACTIONS(12104), + [anon_sym_BSLASHcitet] = ACTIONS(12104), + [anon_sym_BSLASHcitep] = ACTIONS(12104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteauthor] = ACTIONS(12104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitetitle] = ACTIONS(12104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteyear] = ACTIONS(12104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitedate] = ACTIONS(12104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteurl] = ACTIONS(12104), + [anon_sym_BSLASHfullcite] = ACTIONS(12104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12104), + [anon_sym_BSLASHcitealt] = ACTIONS(12104), + [anon_sym_BSLASHcitealp] = ACTIONS(12104), + [anon_sym_BSLASHcitetext] = ACTIONS(12104), + [anon_sym_BSLASHparencite] = ACTIONS(12104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHParencite] = ACTIONS(12104), + [anon_sym_BSLASHfootcite] = ACTIONS(12104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12104), + [anon_sym_BSLASHtextcite] = ACTIONS(12104), + [anon_sym_BSLASHTextcite] = ACTIONS(12104), + [anon_sym_BSLASHsmartcite] = ACTIONS(12104), + [anon_sym_BSLASHSmartcite] = ACTIONS(12104), + [anon_sym_BSLASHsupercite] = ACTIONS(12104), + [anon_sym_BSLASHautocite] = ACTIONS(12104), + [anon_sym_BSLASHAutocite] = ACTIONS(12104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHvolcite] = ACTIONS(12104), + [anon_sym_BSLASHVolcite] = ACTIONS(12104), + [anon_sym_BSLASHpvolcite] = ACTIONS(12104), + [anon_sym_BSLASHPvolcite] = ACTIONS(12104), + [anon_sym_BSLASHfvolcite] = ACTIONS(12104), + [anon_sym_BSLASHftvolcite] = ACTIONS(12104), + [anon_sym_BSLASHsvolcite] = ACTIONS(12104), + [anon_sym_BSLASHSvolcite] = ACTIONS(12104), + [anon_sym_BSLASHtvolcite] = ACTIONS(12104), + [anon_sym_BSLASHTvolcite] = ACTIONS(12104), + [anon_sym_BSLASHavolcite] = ACTIONS(12104), + [anon_sym_BSLASHAvolcite] = ACTIONS(12104), + [anon_sym_BSLASHnotecite] = ACTIONS(12104), + [anon_sym_BSLASHpnotecite] = ACTIONS(12104), + [anon_sym_BSLASHPnotecite] = ACTIONS(12104), + [anon_sym_BSLASHfnotecite] = ACTIONS(12104), + [anon_sym_BSLASHusepackage] = ACTIONS(12104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12104), + [anon_sym_BSLASHinclude] = ACTIONS(12104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12104), + [anon_sym_BSLASHinput] = ACTIONS(12104), + [anon_sym_BSLASHsubfile] = ACTIONS(12104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12104), + [anon_sym_BSLASHbibliography] = ACTIONS(12104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12104), + [anon_sym_BSLASHincludesvg] = ACTIONS(12104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12104), + [anon_sym_BSLASHimport] = ACTIONS(12104), + [anon_sym_BSLASHsubimport] = ACTIONS(12104), + [anon_sym_BSLASHinputfrom] = ACTIONS(12104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12104), + [anon_sym_BSLASHincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHlabel] = ACTIONS(12104), + [anon_sym_BSLASHref] = ACTIONS(12104), + [anon_sym_BSLASHvref] = ACTIONS(12104), + [anon_sym_BSLASHVref] = ACTIONS(12104), + [anon_sym_BSLASHautoref] = ACTIONS(12104), + [anon_sym_BSLASHpageref] = ACTIONS(12104), + [anon_sym_BSLASHcref] = ACTIONS(12104), + [anon_sym_BSLASHCref] = ACTIONS(12104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnameCref] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHlabelcref] = ACTIONS(12104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12104), + [anon_sym_BSLASHeqref] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange] = ACTIONS(12104), + [anon_sym_BSLASHCrefrange] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewlabel] = ACTIONS(12104), + [anon_sym_BSLASHnewcommand] = ACTIONS(12104), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12104), + [anon_sym_BSLASHgls] = ACTIONS(12104), + [anon_sym_BSLASHGls] = ACTIONS(12104), + [anon_sym_BSLASHGLS] = ACTIONS(12104), + [anon_sym_BSLASHglspl] = ACTIONS(12104), + [anon_sym_BSLASHGlspl] = ACTIONS(12104), + [anon_sym_BSLASHGLSpl] = ACTIONS(12104), + [anon_sym_BSLASHglsdisp] = ACTIONS(12104), + [anon_sym_BSLASHglslink] = ACTIONS(12104), + [anon_sym_BSLASHglstext] = ACTIONS(12104), + [anon_sym_BSLASHGlstext] = ACTIONS(12104), + [anon_sym_BSLASHGLStext] = ACTIONS(12104), + [anon_sym_BSLASHglsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12104), + [anon_sym_BSLASHglsplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSplural] = ACTIONS(12104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHglsname] = ACTIONS(12104), + [anon_sym_BSLASHGlsname] = ACTIONS(12104), + [anon_sym_BSLASHGLSname] = ACTIONS(12104), + [anon_sym_BSLASHglssymbol] = ACTIONS(12104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12104), + [anon_sym_BSLASHglsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12104), + [anon_sym_BSLASHglsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12104), + [anon_sym_BSLASHglsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12104), + [anon_sym_BSLASHglsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12104), + [anon_sym_BSLASHglsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12104), + [anon_sym_BSLASHnewacronym] = ACTIONS(12104), + [anon_sym_BSLASHacrshort] = ACTIONS(12104), + [anon_sym_BSLASHAcrshort] = ACTIONS(12104), + [anon_sym_BSLASHACRshort] = ACTIONS(12104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12104), + [anon_sym_BSLASHacrlong] = ACTIONS(12104), + [anon_sym_BSLASHAcrlong] = ACTIONS(12104), + [anon_sym_BSLASHACRlong] = ACTIONS(12104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12104), + [anon_sym_BSLASHacrfull] = ACTIONS(12104), + [anon_sym_BSLASHAcrfull] = ACTIONS(12104), + [anon_sym_BSLASHACRfull] = ACTIONS(12104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12104), + [anon_sym_BSLASHacs] = ACTIONS(12104), + [anon_sym_BSLASHAcs] = ACTIONS(12104), + [anon_sym_BSLASHacsp] = ACTIONS(12104), + [anon_sym_BSLASHAcsp] = ACTIONS(12104), + [anon_sym_BSLASHacl] = ACTIONS(12104), + [anon_sym_BSLASHAcl] = ACTIONS(12104), + [anon_sym_BSLASHaclp] = ACTIONS(12104), + [anon_sym_BSLASHAclp] = ACTIONS(12104), + [anon_sym_BSLASHacf] = ACTIONS(12104), + [anon_sym_BSLASHAcf] = ACTIONS(12104), + [anon_sym_BSLASHacfp] = ACTIONS(12104), + [anon_sym_BSLASHAcfp] = ACTIONS(12104), + [anon_sym_BSLASHac] = ACTIONS(12104), + [anon_sym_BSLASHAc] = ACTIONS(12104), + [anon_sym_BSLASHacp] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12104), + [anon_sym_BSLASHcolor] = ACTIONS(12104), + [anon_sym_BSLASHcolorbox] = ACTIONS(12104), + [anon_sym_BSLASHtextcolor] = ACTIONS(12104), + [anon_sym_BSLASHpagecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12104), + }, + [1116] = { + [sym_generic_command_name] = ACTIONS(12543), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12543), + [aux_sym_section_token1] = ACTIONS(12543), + [aux_sym_subsection_token1] = ACTIONS(12543), + [aux_sym_subsubsection_token1] = ACTIONS(12543), + [aux_sym_paragraph_token1] = ACTIONS(12543), + [aux_sym_subparagraph_token1] = ACTIONS(12543), + [anon_sym_BSLASHitem] = ACTIONS(12543), + [anon_sym_LBRACK] = ACTIONS(12541), + [anon_sym_RBRACK] = ACTIONS(12541), + [anon_sym_LBRACE] = ACTIONS(12541), + [anon_sym_RBRACE] = ACTIONS(12541), + [anon_sym_LPAREN] = ACTIONS(12541), + [anon_sym_COMMA] = ACTIONS(12541), + [anon_sym_EQ] = ACTIONS(12541), + [sym_word] = ACTIONS(12541), + [sym_param] = ACTIONS(12541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12541), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12541), + [anon_sym_DOLLAR] = ACTIONS(12543), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12541), + [anon_sym_BSLASHbegin] = ACTIONS(12543), + [anon_sym_BSLASHcaption] = ACTIONS(12543), + [anon_sym_BSLASHcite] = ACTIONS(12543), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCite] = ACTIONS(12543), + [anon_sym_BSLASHnocite] = ACTIONS(12543), + [anon_sym_BSLASHcitet] = ACTIONS(12543), + [anon_sym_BSLASHcitep] = ACTIONS(12543), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteauthor] = ACTIONS(12543), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12543), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitetitle] = ACTIONS(12543), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteyear] = ACTIONS(12543), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitedate] = ACTIONS(12543), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteurl] = ACTIONS(12543), + [anon_sym_BSLASHfullcite] = ACTIONS(12543), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12543), + [anon_sym_BSLASHcitealt] = ACTIONS(12543), + [anon_sym_BSLASHcitealp] = ACTIONS(12543), + [anon_sym_BSLASHcitetext] = ACTIONS(12543), + [anon_sym_BSLASHparencite] = ACTIONS(12543), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHParencite] = ACTIONS(12543), + [anon_sym_BSLASHfootcite] = ACTIONS(12543), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12543), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12543), + [anon_sym_BSLASHtextcite] = ACTIONS(12543), + [anon_sym_BSLASHTextcite] = ACTIONS(12543), + [anon_sym_BSLASHsmartcite] = ACTIONS(12543), + [anon_sym_BSLASHSmartcite] = ACTIONS(12543), + [anon_sym_BSLASHsupercite] = ACTIONS(12543), + [anon_sym_BSLASHautocite] = ACTIONS(12543), + [anon_sym_BSLASHAutocite] = ACTIONS(12543), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHvolcite] = ACTIONS(12543), + [anon_sym_BSLASHVolcite] = ACTIONS(12543), + [anon_sym_BSLASHpvolcite] = ACTIONS(12543), + [anon_sym_BSLASHPvolcite] = ACTIONS(12543), + [anon_sym_BSLASHfvolcite] = ACTIONS(12543), + [anon_sym_BSLASHftvolcite] = ACTIONS(12543), + [anon_sym_BSLASHsvolcite] = ACTIONS(12543), + [anon_sym_BSLASHSvolcite] = ACTIONS(12543), + [anon_sym_BSLASHtvolcite] = ACTIONS(12543), + [anon_sym_BSLASHTvolcite] = ACTIONS(12543), + [anon_sym_BSLASHavolcite] = ACTIONS(12543), + [anon_sym_BSLASHAvolcite] = ACTIONS(12543), + [anon_sym_BSLASHnotecite] = ACTIONS(12543), + [anon_sym_BSLASHpnotecite] = ACTIONS(12543), + [anon_sym_BSLASHPnotecite] = ACTIONS(12543), + [anon_sym_BSLASHfnotecite] = ACTIONS(12543), + [anon_sym_BSLASHusepackage] = ACTIONS(12543), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12543), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12543), + [anon_sym_BSLASHinclude] = ACTIONS(12543), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12543), + [anon_sym_BSLASHinput] = ACTIONS(12543), + [anon_sym_BSLASHsubfile] = ACTIONS(12543), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12543), + [anon_sym_BSLASHbibliography] = ACTIONS(12543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12543), + [anon_sym_BSLASHincludesvg] = ACTIONS(12543), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12543), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12543), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12543), + [anon_sym_BSLASHimport] = ACTIONS(12543), + [anon_sym_BSLASHsubimport] = ACTIONS(12543), + [anon_sym_BSLASHinputfrom] = ACTIONS(12543), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12543), + [anon_sym_BSLASHincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHlabel] = ACTIONS(12543), + [anon_sym_BSLASHref] = ACTIONS(12543), + [anon_sym_BSLASHvref] = ACTIONS(12543), + [anon_sym_BSLASHVref] = ACTIONS(12543), + [anon_sym_BSLASHautoref] = ACTIONS(12543), + [anon_sym_BSLASHpageref] = ACTIONS(12543), + [anon_sym_BSLASHcref] = ACTIONS(12543), + [anon_sym_BSLASHCref] = ACTIONS(12543), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnameCref] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHlabelcref] = ACTIONS(12543), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12543), + [anon_sym_BSLASHeqref] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange] = ACTIONS(12543), + [anon_sym_BSLASHCrefrange] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewlabel] = ACTIONS(12543), + [anon_sym_BSLASHnewcommand] = ACTIONS(12543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12543), + [anon_sym_BSLASHgls] = ACTIONS(12543), + [anon_sym_BSLASHGls] = ACTIONS(12543), + [anon_sym_BSLASHGLS] = ACTIONS(12543), + [anon_sym_BSLASHglspl] = ACTIONS(12543), + [anon_sym_BSLASHGlspl] = ACTIONS(12543), + [anon_sym_BSLASHGLSpl] = ACTIONS(12543), + [anon_sym_BSLASHglsdisp] = ACTIONS(12543), + [anon_sym_BSLASHglslink] = ACTIONS(12543), + [anon_sym_BSLASHglstext] = ACTIONS(12543), + [anon_sym_BSLASHGlstext] = ACTIONS(12543), + [anon_sym_BSLASHGLStext] = ACTIONS(12543), + [anon_sym_BSLASHglsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12543), + [anon_sym_BSLASHglsplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSplural] = ACTIONS(12543), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHglsname] = ACTIONS(12543), + [anon_sym_BSLASHGlsname] = ACTIONS(12543), + [anon_sym_BSLASHGLSname] = ACTIONS(12543), + [anon_sym_BSLASHglssymbol] = ACTIONS(12543), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12543), + [anon_sym_BSLASHglsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12543), + [anon_sym_BSLASHglsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12543), + [anon_sym_BSLASHglsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12543), + [anon_sym_BSLASHglsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12543), + [anon_sym_BSLASHglsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12543), + [anon_sym_BSLASHnewacronym] = ACTIONS(12543), + [anon_sym_BSLASHacrshort] = ACTIONS(12543), + [anon_sym_BSLASHAcrshort] = ACTIONS(12543), + [anon_sym_BSLASHACRshort] = ACTIONS(12543), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12543), + [anon_sym_BSLASHacrlong] = ACTIONS(12543), + [anon_sym_BSLASHAcrlong] = ACTIONS(12543), + [anon_sym_BSLASHACRlong] = ACTIONS(12543), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12543), + [anon_sym_BSLASHacrfull] = ACTIONS(12543), + [anon_sym_BSLASHAcrfull] = ACTIONS(12543), + [anon_sym_BSLASHACRfull] = ACTIONS(12543), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12543), + [anon_sym_BSLASHacs] = ACTIONS(12543), + [anon_sym_BSLASHAcs] = ACTIONS(12543), + [anon_sym_BSLASHacsp] = ACTIONS(12543), + [anon_sym_BSLASHAcsp] = ACTIONS(12543), + [anon_sym_BSLASHacl] = ACTIONS(12543), + [anon_sym_BSLASHAcl] = ACTIONS(12543), + [anon_sym_BSLASHaclp] = ACTIONS(12543), + [anon_sym_BSLASHAclp] = ACTIONS(12543), + [anon_sym_BSLASHacf] = ACTIONS(12543), + [anon_sym_BSLASHAcf] = ACTIONS(12543), + [anon_sym_BSLASHacfp] = ACTIONS(12543), + [anon_sym_BSLASHAcfp] = ACTIONS(12543), + [anon_sym_BSLASHac] = ACTIONS(12543), + [anon_sym_BSLASHAc] = ACTIONS(12543), + [anon_sym_BSLASHacp] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12543), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12543), + [anon_sym_BSLASHcolor] = ACTIONS(12543), + [anon_sym_BSLASHcolorbox] = ACTIONS(12543), + [anon_sym_BSLASHtextcolor] = ACTIONS(12543), + [anon_sym_BSLASHpagecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12543), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12543), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12543), + }, + [1117] = { + [sym_generic_command_name] = ACTIONS(12539), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12539), + [aux_sym_section_token1] = ACTIONS(12539), + [aux_sym_subsection_token1] = ACTIONS(12539), + [aux_sym_subsubsection_token1] = ACTIONS(12539), + [aux_sym_paragraph_token1] = ACTIONS(12539), + [aux_sym_subparagraph_token1] = ACTIONS(12539), + [anon_sym_BSLASHitem] = ACTIONS(12539), + [anon_sym_LBRACK] = ACTIONS(12537), + [anon_sym_RBRACK] = ACTIONS(12537), + [anon_sym_LBRACE] = ACTIONS(12537), + [anon_sym_RBRACE] = ACTIONS(12537), + [anon_sym_LPAREN] = ACTIONS(12537), + [anon_sym_COMMA] = ACTIONS(12537), + [anon_sym_EQ] = ACTIONS(12537), + [sym_word] = ACTIONS(12537), + [sym_param] = ACTIONS(12537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12537), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12537), + [anon_sym_DOLLAR] = ACTIONS(12539), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12537), + [anon_sym_BSLASHbegin] = ACTIONS(12539), + [anon_sym_BSLASHcaption] = ACTIONS(12539), + [anon_sym_BSLASHcite] = ACTIONS(12539), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCite] = ACTIONS(12539), + [anon_sym_BSLASHnocite] = ACTIONS(12539), + [anon_sym_BSLASHcitet] = ACTIONS(12539), + [anon_sym_BSLASHcitep] = ACTIONS(12539), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteauthor] = ACTIONS(12539), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12539), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitetitle] = ACTIONS(12539), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteyear] = ACTIONS(12539), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitedate] = ACTIONS(12539), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteurl] = ACTIONS(12539), + [anon_sym_BSLASHfullcite] = ACTIONS(12539), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12539), + [anon_sym_BSLASHcitealt] = ACTIONS(12539), + [anon_sym_BSLASHcitealp] = ACTIONS(12539), + [anon_sym_BSLASHcitetext] = ACTIONS(12539), + [anon_sym_BSLASHparencite] = ACTIONS(12539), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHParencite] = ACTIONS(12539), + [anon_sym_BSLASHfootcite] = ACTIONS(12539), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12539), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12539), + [anon_sym_BSLASHtextcite] = ACTIONS(12539), + [anon_sym_BSLASHTextcite] = ACTIONS(12539), + [anon_sym_BSLASHsmartcite] = ACTIONS(12539), + [anon_sym_BSLASHSmartcite] = ACTIONS(12539), + [anon_sym_BSLASHsupercite] = ACTIONS(12539), + [anon_sym_BSLASHautocite] = ACTIONS(12539), + [anon_sym_BSLASHAutocite] = ACTIONS(12539), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHvolcite] = ACTIONS(12539), + [anon_sym_BSLASHVolcite] = ACTIONS(12539), + [anon_sym_BSLASHpvolcite] = ACTIONS(12539), + [anon_sym_BSLASHPvolcite] = ACTIONS(12539), + [anon_sym_BSLASHfvolcite] = ACTIONS(12539), + [anon_sym_BSLASHftvolcite] = ACTIONS(12539), + [anon_sym_BSLASHsvolcite] = ACTIONS(12539), + [anon_sym_BSLASHSvolcite] = ACTIONS(12539), + [anon_sym_BSLASHtvolcite] = ACTIONS(12539), + [anon_sym_BSLASHTvolcite] = ACTIONS(12539), + [anon_sym_BSLASHavolcite] = ACTIONS(12539), + [anon_sym_BSLASHAvolcite] = ACTIONS(12539), + [anon_sym_BSLASHnotecite] = ACTIONS(12539), + [anon_sym_BSLASHpnotecite] = ACTIONS(12539), + [anon_sym_BSLASHPnotecite] = ACTIONS(12539), + [anon_sym_BSLASHfnotecite] = ACTIONS(12539), + [anon_sym_BSLASHusepackage] = ACTIONS(12539), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12539), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12539), + [anon_sym_BSLASHinclude] = ACTIONS(12539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12539), + [anon_sym_BSLASHinput] = ACTIONS(12539), + [anon_sym_BSLASHsubfile] = ACTIONS(12539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12539), + [anon_sym_BSLASHbibliography] = ACTIONS(12539), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12539), + [anon_sym_BSLASHincludesvg] = ACTIONS(12539), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12539), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12539), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12539), + [anon_sym_BSLASHimport] = ACTIONS(12539), + [anon_sym_BSLASHsubimport] = ACTIONS(12539), + [anon_sym_BSLASHinputfrom] = ACTIONS(12539), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12539), + [anon_sym_BSLASHincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHlabel] = ACTIONS(12539), + [anon_sym_BSLASHref] = ACTIONS(12539), + [anon_sym_BSLASHvref] = ACTIONS(12539), + [anon_sym_BSLASHVref] = ACTIONS(12539), + [anon_sym_BSLASHautoref] = ACTIONS(12539), + [anon_sym_BSLASHpageref] = ACTIONS(12539), + [anon_sym_BSLASHcref] = ACTIONS(12539), + [anon_sym_BSLASHCref] = ACTIONS(12539), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnameCref] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHlabelcref] = ACTIONS(12539), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12539), + [anon_sym_BSLASHeqref] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange] = ACTIONS(12539), + [anon_sym_BSLASHCrefrange] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewlabel] = ACTIONS(12539), + [anon_sym_BSLASHnewcommand] = ACTIONS(12539), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12539), + [anon_sym_BSLASHgls] = ACTIONS(12539), + [anon_sym_BSLASHGls] = ACTIONS(12539), + [anon_sym_BSLASHGLS] = ACTIONS(12539), + [anon_sym_BSLASHglspl] = ACTIONS(12539), + [anon_sym_BSLASHGlspl] = ACTIONS(12539), + [anon_sym_BSLASHGLSpl] = ACTIONS(12539), + [anon_sym_BSLASHglsdisp] = ACTIONS(12539), + [anon_sym_BSLASHglslink] = ACTIONS(12539), + [anon_sym_BSLASHglstext] = ACTIONS(12539), + [anon_sym_BSLASHGlstext] = ACTIONS(12539), + [anon_sym_BSLASHGLStext] = ACTIONS(12539), + [anon_sym_BSLASHglsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12539), + [anon_sym_BSLASHglsplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSplural] = ACTIONS(12539), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHglsname] = ACTIONS(12539), + [anon_sym_BSLASHGlsname] = ACTIONS(12539), + [anon_sym_BSLASHGLSname] = ACTIONS(12539), + [anon_sym_BSLASHglssymbol] = ACTIONS(12539), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12539), + [anon_sym_BSLASHglsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12539), + [anon_sym_BSLASHglsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12539), + [anon_sym_BSLASHglsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12539), + [anon_sym_BSLASHglsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12539), + [anon_sym_BSLASHglsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12539), + [anon_sym_BSLASHnewacronym] = ACTIONS(12539), + [anon_sym_BSLASHacrshort] = ACTIONS(12539), + [anon_sym_BSLASHAcrshort] = ACTIONS(12539), + [anon_sym_BSLASHACRshort] = ACTIONS(12539), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12539), + [anon_sym_BSLASHacrlong] = ACTIONS(12539), + [anon_sym_BSLASHAcrlong] = ACTIONS(12539), + [anon_sym_BSLASHACRlong] = ACTIONS(12539), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12539), + [anon_sym_BSLASHacrfull] = ACTIONS(12539), + [anon_sym_BSLASHAcrfull] = ACTIONS(12539), + [anon_sym_BSLASHACRfull] = ACTIONS(12539), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12539), + [anon_sym_BSLASHacs] = ACTIONS(12539), + [anon_sym_BSLASHAcs] = ACTIONS(12539), + [anon_sym_BSLASHacsp] = ACTIONS(12539), + [anon_sym_BSLASHAcsp] = ACTIONS(12539), + [anon_sym_BSLASHacl] = ACTIONS(12539), + [anon_sym_BSLASHAcl] = ACTIONS(12539), + [anon_sym_BSLASHaclp] = ACTIONS(12539), + [anon_sym_BSLASHAclp] = ACTIONS(12539), + [anon_sym_BSLASHacf] = ACTIONS(12539), + [anon_sym_BSLASHAcf] = ACTIONS(12539), + [anon_sym_BSLASHacfp] = ACTIONS(12539), + [anon_sym_BSLASHAcfp] = ACTIONS(12539), + [anon_sym_BSLASHac] = ACTIONS(12539), + [anon_sym_BSLASHAc] = ACTIONS(12539), + [anon_sym_BSLASHacp] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12539), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12539), + [anon_sym_BSLASHcolor] = ACTIONS(12539), + [anon_sym_BSLASHcolorbox] = ACTIONS(12539), + [anon_sym_BSLASHtextcolor] = ACTIONS(12539), + [anon_sym_BSLASHpagecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12539), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12539), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12539), + }, + [1118] = { + [sym_generic_command_name] = ACTIONS(12531), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12531), + [aux_sym_section_token1] = ACTIONS(12531), + [aux_sym_subsection_token1] = ACTIONS(12531), + [aux_sym_subsubsection_token1] = ACTIONS(12531), + [aux_sym_paragraph_token1] = ACTIONS(12531), + [aux_sym_subparagraph_token1] = ACTIONS(12531), + [anon_sym_BSLASHitem] = ACTIONS(12531), + [anon_sym_LBRACK] = ACTIONS(12529), + [anon_sym_RBRACK] = ACTIONS(12529), + [anon_sym_LBRACE] = ACTIONS(12529), + [anon_sym_RBRACE] = ACTIONS(12529), + [anon_sym_LPAREN] = ACTIONS(12529), + [anon_sym_COMMA] = ACTIONS(12529), + [anon_sym_EQ] = ACTIONS(12529), + [sym_word] = ACTIONS(12529), + [sym_param] = ACTIONS(12529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12529), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12529), + [anon_sym_DOLLAR] = ACTIONS(12531), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12529), + [anon_sym_BSLASHbegin] = ACTIONS(12531), + [anon_sym_BSLASHcaption] = ACTIONS(12531), + [anon_sym_BSLASHcite] = ACTIONS(12531), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCite] = ACTIONS(12531), + [anon_sym_BSLASHnocite] = ACTIONS(12531), + [anon_sym_BSLASHcitet] = ACTIONS(12531), + [anon_sym_BSLASHcitep] = ACTIONS(12531), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteauthor] = ACTIONS(12531), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12531), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitetitle] = ACTIONS(12531), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteyear] = ACTIONS(12531), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitedate] = ACTIONS(12531), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteurl] = ACTIONS(12531), + [anon_sym_BSLASHfullcite] = ACTIONS(12531), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12531), + [anon_sym_BSLASHcitealt] = ACTIONS(12531), + [anon_sym_BSLASHcitealp] = ACTIONS(12531), + [anon_sym_BSLASHcitetext] = ACTIONS(12531), + [anon_sym_BSLASHparencite] = ACTIONS(12531), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHParencite] = ACTIONS(12531), + [anon_sym_BSLASHfootcite] = ACTIONS(12531), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12531), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12531), + [anon_sym_BSLASHtextcite] = ACTIONS(12531), + [anon_sym_BSLASHTextcite] = ACTIONS(12531), + [anon_sym_BSLASHsmartcite] = ACTIONS(12531), + [anon_sym_BSLASHSmartcite] = ACTIONS(12531), + [anon_sym_BSLASHsupercite] = ACTIONS(12531), + [anon_sym_BSLASHautocite] = ACTIONS(12531), + [anon_sym_BSLASHAutocite] = ACTIONS(12531), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHvolcite] = ACTIONS(12531), + [anon_sym_BSLASHVolcite] = ACTIONS(12531), + [anon_sym_BSLASHpvolcite] = ACTIONS(12531), + [anon_sym_BSLASHPvolcite] = ACTIONS(12531), + [anon_sym_BSLASHfvolcite] = ACTIONS(12531), + [anon_sym_BSLASHftvolcite] = ACTIONS(12531), + [anon_sym_BSLASHsvolcite] = ACTIONS(12531), + [anon_sym_BSLASHSvolcite] = ACTIONS(12531), + [anon_sym_BSLASHtvolcite] = ACTIONS(12531), + [anon_sym_BSLASHTvolcite] = ACTIONS(12531), + [anon_sym_BSLASHavolcite] = ACTIONS(12531), + [anon_sym_BSLASHAvolcite] = ACTIONS(12531), + [anon_sym_BSLASHnotecite] = ACTIONS(12531), + [anon_sym_BSLASHpnotecite] = ACTIONS(12531), + [anon_sym_BSLASHPnotecite] = ACTIONS(12531), + [anon_sym_BSLASHfnotecite] = ACTIONS(12531), + [anon_sym_BSLASHusepackage] = ACTIONS(12531), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12531), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12531), + [anon_sym_BSLASHinclude] = ACTIONS(12531), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12531), + [anon_sym_BSLASHinput] = ACTIONS(12531), + [anon_sym_BSLASHsubfile] = ACTIONS(12531), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12531), + [anon_sym_BSLASHbibliography] = ACTIONS(12531), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12531), + [anon_sym_BSLASHincludesvg] = ACTIONS(12531), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12531), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12531), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12531), + [anon_sym_BSLASHimport] = ACTIONS(12531), + [anon_sym_BSLASHsubimport] = ACTIONS(12531), + [anon_sym_BSLASHinputfrom] = ACTIONS(12531), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12531), + [anon_sym_BSLASHincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHlabel] = ACTIONS(12531), + [anon_sym_BSLASHref] = ACTIONS(12531), + [anon_sym_BSLASHvref] = ACTIONS(12531), + [anon_sym_BSLASHVref] = ACTIONS(12531), + [anon_sym_BSLASHautoref] = ACTIONS(12531), + [anon_sym_BSLASHpageref] = ACTIONS(12531), + [anon_sym_BSLASHcref] = ACTIONS(12531), + [anon_sym_BSLASHCref] = ACTIONS(12531), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnameCref] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHlabelcref] = ACTIONS(12531), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12531), + [anon_sym_BSLASHeqref] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange] = ACTIONS(12531), + [anon_sym_BSLASHCrefrange] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewlabel] = ACTIONS(12531), + [anon_sym_BSLASHnewcommand] = ACTIONS(12531), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12531), + [anon_sym_BSLASHgls] = ACTIONS(12531), + [anon_sym_BSLASHGls] = ACTIONS(12531), + [anon_sym_BSLASHGLS] = ACTIONS(12531), + [anon_sym_BSLASHglspl] = ACTIONS(12531), + [anon_sym_BSLASHGlspl] = ACTIONS(12531), + [anon_sym_BSLASHGLSpl] = ACTIONS(12531), + [anon_sym_BSLASHglsdisp] = ACTIONS(12531), + [anon_sym_BSLASHglslink] = ACTIONS(12531), + [anon_sym_BSLASHglstext] = ACTIONS(12531), + [anon_sym_BSLASHGlstext] = ACTIONS(12531), + [anon_sym_BSLASHGLStext] = ACTIONS(12531), + [anon_sym_BSLASHglsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12531), + [anon_sym_BSLASHglsplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSplural] = ACTIONS(12531), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHglsname] = ACTIONS(12531), + [anon_sym_BSLASHGlsname] = ACTIONS(12531), + [anon_sym_BSLASHGLSname] = ACTIONS(12531), + [anon_sym_BSLASHglssymbol] = ACTIONS(12531), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12531), + [anon_sym_BSLASHglsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12531), + [anon_sym_BSLASHglsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12531), + [anon_sym_BSLASHglsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12531), + [anon_sym_BSLASHglsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12531), + [anon_sym_BSLASHglsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12531), + [anon_sym_BSLASHnewacronym] = ACTIONS(12531), + [anon_sym_BSLASHacrshort] = ACTIONS(12531), + [anon_sym_BSLASHAcrshort] = ACTIONS(12531), + [anon_sym_BSLASHACRshort] = ACTIONS(12531), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12531), + [anon_sym_BSLASHacrlong] = ACTIONS(12531), + [anon_sym_BSLASHAcrlong] = ACTIONS(12531), + [anon_sym_BSLASHACRlong] = ACTIONS(12531), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12531), + [anon_sym_BSLASHacrfull] = ACTIONS(12531), + [anon_sym_BSLASHAcrfull] = ACTIONS(12531), + [anon_sym_BSLASHACRfull] = ACTIONS(12531), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12531), + [anon_sym_BSLASHacs] = ACTIONS(12531), + [anon_sym_BSLASHAcs] = ACTIONS(12531), + [anon_sym_BSLASHacsp] = ACTIONS(12531), + [anon_sym_BSLASHAcsp] = ACTIONS(12531), + [anon_sym_BSLASHacl] = ACTIONS(12531), + [anon_sym_BSLASHAcl] = ACTIONS(12531), + [anon_sym_BSLASHaclp] = ACTIONS(12531), + [anon_sym_BSLASHAclp] = ACTIONS(12531), + [anon_sym_BSLASHacf] = ACTIONS(12531), + [anon_sym_BSLASHAcf] = ACTIONS(12531), + [anon_sym_BSLASHacfp] = ACTIONS(12531), + [anon_sym_BSLASHAcfp] = ACTIONS(12531), + [anon_sym_BSLASHac] = ACTIONS(12531), + [anon_sym_BSLASHAc] = ACTIONS(12531), + [anon_sym_BSLASHacp] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12531), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12531), + [anon_sym_BSLASHcolor] = ACTIONS(12531), + [anon_sym_BSLASHcolorbox] = ACTIONS(12531), + [anon_sym_BSLASHtextcolor] = ACTIONS(12531), + [anon_sym_BSLASHpagecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12531), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12531), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12531), + }, + [1119] = { + [sym_generic_command_name] = ACTIONS(12527), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12527), + [aux_sym_section_token1] = ACTIONS(12527), + [aux_sym_subsection_token1] = ACTIONS(12527), + [aux_sym_subsubsection_token1] = ACTIONS(12527), + [aux_sym_paragraph_token1] = ACTIONS(12527), + [aux_sym_subparagraph_token1] = ACTIONS(12527), + [anon_sym_BSLASHitem] = ACTIONS(12527), + [anon_sym_LBRACK] = ACTIONS(12525), + [anon_sym_RBRACK] = ACTIONS(12525), + [anon_sym_LBRACE] = ACTIONS(12525), + [anon_sym_RBRACE] = ACTIONS(12525), + [anon_sym_LPAREN] = ACTIONS(12525), + [anon_sym_COMMA] = ACTIONS(12525), + [anon_sym_EQ] = ACTIONS(12525), + [sym_word] = ACTIONS(12525), + [sym_param] = ACTIONS(12525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12525), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12525), + [anon_sym_DOLLAR] = ACTIONS(12527), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12525), + [anon_sym_BSLASHbegin] = ACTIONS(12527), + [anon_sym_BSLASHcaption] = ACTIONS(12527), + [anon_sym_BSLASHcite] = ACTIONS(12527), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCite] = ACTIONS(12527), + [anon_sym_BSLASHnocite] = ACTIONS(12527), + [anon_sym_BSLASHcitet] = ACTIONS(12527), + [anon_sym_BSLASHcitep] = ACTIONS(12527), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteauthor] = ACTIONS(12527), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12527), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitetitle] = ACTIONS(12527), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteyear] = ACTIONS(12527), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitedate] = ACTIONS(12527), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteurl] = ACTIONS(12527), + [anon_sym_BSLASHfullcite] = ACTIONS(12527), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12527), + [anon_sym_BSLASHcitealt] = ACTIONS(12527), + [anon_sym_BSLASHcitealp] = ACTIONS(12527), + [anon_sym_BSLASHcitetext] = ACTIONS(12527), + [anon_sym_BSLASHparencite] = ACTIONS(12527), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHParencite] = ACTIONS(12527), + [anon_sym_BSLASHfootcite] = ACTIONS(12527), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12527), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12527), + [anon_sym_BSLASHtextcite] = ACTIONS(12527), + [anon_sym_BSLASHTextcite] = ACTIONS(12527), + [anon_sym_BSLASHsmartcite] = ACTIONS(12527), + [anon_sym_BSLASHSmartcite] = ACTIONS(12527), + [anon_sym_BSLASHsupercite] = ACTIONS(12527), + [anon_sym_BSLASHautocite] = ACTIONS(12527), + [anon_sym_BSLASHAutocite] = ACTIONS(12527), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHvolcite] = ACTIONS(12527), + [anon_sym_BSLASHVolcite] = ACTIONS(12527), + [anon_sym_BSLASHpvolcite] = ACTIONS(12527), + [anon_sym_BSLASHPvolcite] = ACTIONS(12527), + [anon_sym_BSLASHfvolcite] = ACTIONS(12527), + [anon_sym_BSLASHftvolcite] = ACTIONS(12527), + [anon_sym_BSLASHsvolcite] = ACTIONS(12527), + [anon_sym_BSLASHSvolcite] = ACTIONS(12527), + [anon_sym_BSLASHtvolcite] = ACTIONS(12527), + [anon_sym_BSLASHTvolcite] = ACTIONS(12527), + [anon_sym_BSLASHavolcite] = ACTIONS(12527), + [anon_sym_BSLASHAvolcite] = ACTIONS(12527), + [anon_sym_BSLASHnotecite] = ACTIONS(12527), + [anon_sym_BSLASHpnotecite] = ACTIONS(12527), + [anon_sym_BSLASHPnotecite] = ACTIONS(12527), + [anon_sym_BSLASHfnotecite] = ACTIONS(12527), + [anon_sym_BSLASHusepackage] = ACTIONS(12527), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12527), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12527), + [anon_sym_BSLASHinclude] = ACTIONS(12527), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12527), + [anon_sym_BSLASHinput] = ACTIONS(12527), + [anon_sym_BSLASHsubfile] = ACTIONS(12527), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12527), + [anon_sym_BSLASHbibliography] = ACTIONS(12527), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12527), + [anon_sym_BSLASHincludesvg] = ACTIONS(12527), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12527), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12527), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12527), + [anon_sym_BSLASHimport] = ACTIONS(12527), + [anon_sym_BSLASHsubimport] = ACTIONS(12527), + [anon_sym_BSLASHinputfrom] = ACTIONS(12527), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12527), + [anon_sym_BSLASHincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHlabel] = ACTIONS(12527), + [anon_sym_BSLASHref] = ACTIONS(12527), + [anon_sym_BSLASHvref] = ACTIONS(12527), + [anon_sym_BSLASHVref] = ACTIONS(12527), + [anon_sym_BSLASHautoref] = ACTIONS(12527), + [anon_sym_BSLASHpageref] = ACTIONS(12527), + [anon_sym_BSLASHcref] = ACTIONS(12527), + [anon_sym_BSLASHCref] = ACTIONS(12527), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnameCref] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHlabelcref] = ACTIONS(12527), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12527), + [anon_sym_BSLASHeqref] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange] = ACTIONS(12527), + [anon_sym_BSLASHCrefrange] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewlabel] = ACTIONS(12527), + [anon_sym_BSLASHnewcommand] = ACTIONS(12527), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12527), + [anon_sym_BSLASHgls] = ACTIONS(12527), + [anon_sym_BSLASHGls] = ACTIONS(12527), + [anon_sym_BSLASHGLS] = ACTIONS(12527), + [anon_sym_BSLASHglspl] = ACTIONS(12527), + [anon_sym_BSLASHGlspl] = ACTIONS(12527), + [anon_sym_BSLASHGLSpl] = ACTIONS(12527), + [anon_sym_BSLASHglsdisp] = ACTIONS(12527), + [anon_sym_BSLASHglslink] = ACTIONS(12527), + [anon_sym_BSLASHglstext] = ACTIONS(12527), + [anon_sym_BSLASHGlstext] = ACTIONS(12527), + [anon_sym_BSLASHGLStext] = ACTIONS(12527), + [anon_sym_BSLASHglsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12527), + [anon_sym_BSLASHglsplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSplural] = ACTIONS(12527), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHglsname] = ACTIONS(12527), + [anon_sym_BSLASHGlsname] = ACTIONS(12527), + [anon_sym_BSLASHGLSname] = ACTIONS(12527), + [anon_sym_BSLASHglssymbol] = ACTIONS(12527), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12527), + [anon_sym_BSLASHglsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12527), + [anon_sym_BSLASHglsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12527), + [anon_sym_BSLASHglsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12527), + [anon_sym_BSLASHglsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12527), + [anon_sym_BSLASHglsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12527), + [anon_sym_BSLASHnewacronym] = ACTIONS(12527), + [anon_sym_BSLASHacrshort] = ACTIONS(12527), + [anon_sym_BSLASHAcrshort] = ACTIONS(12527), + [anon_sym_BSLASHACRshort] = ACTIONS(12527), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12527), + [anon_sym_BSLASHacrlong] = ACTIONS(12527), + [anon_sym_BSLASHAcrlong] = ACTIONS(12527), + [anon_sym_BSLASHACRlong] = ACTIONS(12527), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12527), + [anon_sym_BSLASHacrfull] = ACTIONS(12527), + [anon_sym_BSLASHAcrfull] = ACTIONS(12527), + [anon_sym_BSLASHACRfull] = ACTIONS(12527), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12527), + [anon_sym_BSLASHacs] = ACTIONS(12527), + [anon_sym_BSLASHAcs] = ACTIONS(12527), + [anon_sym_BSLASHacsp] = ACTIONS(12527), + [anon_sym_BSLASHAcsp] = ACTIONS(12527), + [anon_sym_BSLASHacl] = ACTIONS(12527), + [anon_sym_BSLASHAcl] = ACTIONS(12527), + [anon_sym_BSLASHaclp] = ACTIONS(12527), + [anon_sym_BSLASHAclp] = ACTIONS(12527), + [anon_sym_BSLASHacf] = ACTIONS(12527), + [anon_sym_BSLASHAcf] = ACTIONS(12527), + [anon_sym_BSLASHacfp] = ACTIONS(12527), + [anon_sym_BSLASHAcfp] = ACTIONS(12527), + [anon_sym_BSLASHac] = ACTIONS(12527), + [anon_sym_BSLASHAc] = ACTIONS(12527), + [anon_sym_BSLASHacp] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12527), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12527), + [anon_sym_BSLASHcolor] = ACTIONS(12527), + [anon_sym_BSLASHcolorbox] = ACTIONS(12527), + [anon_sym_BSLASHtextcolor] = ACTIONS(12527), + [anon_sym_BSLASHpagecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12527), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12527), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12527), + }, + [1120] = { + [sym_generic_command_name] = ACTIONS(12523), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12523), + [aux_sym_section_token1] = ACTIONS(12523), + [aux_sym_subsection_token1] = ACTIONS(12523), + [aux_sym_subsubsection_token1] = ACTIONS(12523), + [aux_sym_paragraph_token1] = ACTIONS(12523), + [aux_sym_subparagraph_token1] = ACTIONS(12523), + [anon_sym_BSLASHitem] = ACTIONS(12523), + [anon_sym_LBRACK] = ACTIONS(12521), + [anon_sym_RBRACK] = ACTIONS(12521), + [anon_sym_LBRACE] = ACTIONS(12521), + [anon_sym_RBRACE] = ACTIONS(12521), + [anon_sym_LPAREN] = ACTIONS(12521), + [anon_sym_COMMA] = ACTIONS(12521), + [anon_sym_EQ] = ACTIONS(12521), + [sym_word] = ACTIONS(12521), + [sym_param] = ACTIONS(12521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12521), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12521), + [anon_sym_DOLLAR] = ACTIONS(12523), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12521), + [anon_sym_BSLASHbegin] = ACTIONS(12523), + [anon_sym_BSLASHcaption] = ACTIONS(12523), + [anon_sym_BSLASHcite] = ACTIONS(12523), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCite] = ACTIONS(12523), + [anon_sym_BSLASHnocite] = ACTIONS(12523), + [anon_sym_BSLASHcitet] = ACTIONS(12523), + [anon_sym_BSLASHcitep] = ACTIONS(12523), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteauthor] = ACTIONS(12523), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12523), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitetitle] = ACTIONS(12523), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteyear] = ACTIONS(12523), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitedate] = ACTIONS(12523), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteurl] = ACTIONS(12523), + [anon_sym_BSLASHfullcite] = ACTIONS(12523), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12523), + [anon_sym_BSLASHcitealt] = ACTIONS(12523), + [anon_sym_BSLASHcitealp] = ACTIONS(12523), + [anon_sym_BSLASHcitetext] = ACTIONS(12523), + [anon_sym_BSLASHparencite] = ACTIONS(12523), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHParencite] = ACTIONS(12523), + [anon_sym_BSLASHfootcite] = ACTIONS(12523), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12523), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12523), + [anon_sym_BSLASHtextcite] = ACTIONS(12523), + [anon_sym_BSLASHTextcite] = ACTIONS(12523), + [anon_sym_BSLASHsmartcite] = ACTIONS(12523), + [anon_sym_BSLASHSmartcite] = ACTIONS(12523), + [anon_sym_BSLASHsupercite] = ACTIONS(12523), + [anon_sym_BSLASHautocite] = ACTIONS(12523), + [anon_sym_BSLASHAutocite] = ACTIONS(12523), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHvolcite] = ACTIONS(12523), + [anon_sym_BSLASHVolcite] = ACTIONS(12523), + [anon_sym_BSLASHpvolcite] = ACTIONS(12523), + [anon_sym_BSLASHPvolcite] = ACTIONS(12523), + [anon_sym_BSLASHfvolcite] = ACTIONS(12523), + [anon_sym_BSLASHftvolcite] = ACTIONS(12523), + [anon_sym_BSLASHsvolcite] = ACTIONS(12523), + [anon_sym_BSLASHSvolcite] = ACTIONS(12523), + [anon_sym_BSLASHtvolcite] = ACTIONS(12523), + [anon_sym_BSLASHTvolcite] = ACTIONS(12523), + [anon_sym_BSLASHavolcite] = ACTIONS(12523), + [anon_sym_BSLASHAvolcite] = ACTIONS(12523), + [anon_sym_BSLASHnotecite] = ACTIONS(12523), + [anon_sym_BSLASHpnotecite] = ACTIONS(12523), + [anon_sym_BSLASHPnotecite] = ACTIONS(12523), + [anon_sym_BSLASHfnotecite] = ACTIONS(12523), + [anon_sym_BSLASHusepackage] = ACTIONS(12523), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12523), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12523), + [anon_sym_BSLASHinclude] = ACTIONS(12523), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12523), + [anon_sym_BSLASHinput] = ACTIONS(12523), + [anon_sym_BSLASHsubfile] = ACTIONS(12523), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12523), + [anon_sym_BSLASHbibliography] = ACTIONS(12523), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12523), + [anon_sym_BSLASHincludesvg] = ACTIONS(12523), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12523), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12523), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12523), + [anon_sym_BSLASHimport] = ACTIONS(12523), + [anon_sym_BSLASHsubimport] = ACTIONS(12523), + [anon_sym_BSLASHinputfrom] = ACTIONS(12523), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12523), + [anon_sym_BSLASHincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHlabel] = ACTIONS(12523), + [anon_sym_BSLASHref] = ACTIONS(12523), + [anon_sym_BSLASHvref] = ACTIONS(12523), + [anon_sym_BSLASHVref] = ACTIONS(12523), + [anon_sym_BSLASHautoref] = ACTIONS(12523), + [anon_sym_BSLASHpageref] = ACTIONS(12523), + [anon_sym_BSLASHcref] = ACTIONS(12523), + [anon_sym_BSLASHCref] = ACTIONS(12523), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnameCref] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHlabelcref] = ACTIONS(12523), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12523), + [anon_sym_BSLASHeqref] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange] = ACTIONS(12523), + [anon_sym_BSLASHCrefrange] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewlabel] = ACTIONS(12523), + [anon_sym_BSLASHnewcommand] = ACTIONS(12523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12523), + [anon_sym_BSLASHgls] = ACTIONS(12523), + [anon_sym_BSLASHGls] = ACTIONS(12523), + [anon_sym_BSLASHGLS] = ACTIONS(12523), + [anon_sym_BSLASHglspl] = ACTIONS(12523), + [anon_sym_BSLASHGlspl] = ACTIONS(12523), + [anon_sym_BSLASHGLSpl] = ACTIONS(12523), + [anon_sym_BSLASHglsdisp] = ACTIONS(12523), + [anon_sym_BSLASHglslink] = ACTIONS(12523), + [anon_sym_BSLASHglstext] = ACTIONS(12523), + [anon_sym_BSLASHGlstext] = ACTIONS(12523), + [anon_sym_BSLASHGLStext] = ACTIONS(12523), + [anon_sym_BSLASHglsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12523), + [anon_sym_BSLASHglsplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSplural] = ACTIONS(12523), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHglsname] = ACTIONS(12523), + [anon_sym_BSLASHGlsname] = ACTIONS(12523), + [anon_sym_BSLASHGLSname] = ACTIONS(12523), + [anon_sym_BSLASHglssymbol] = ACTIONS(12523), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12523), + [anon_sym_BSLASHglsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12523), + [anon_sym_BSLASHglsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12523), + [anon_sym_BSLASHglsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12523), + [anon_sym_BSLASHglsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12523), + [anon_sym_BSLASHglsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12523), + [anon_sym_BSLASHnewacronym] = ACTIONS(12523), + [anon_sym_BSLASHacrshort] = ACTIONS(12523), + [anon_sym_BSLASHAcrshort] = ACTIONS(12523), + [anon_sym_BSLASHACRshort] = ACTIONS(12523), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12523), + [anon_sym_BSLASHacrlong] = ACTIONS(12523), + [anon_sym_BSLASHAcrlong] = ACTIONS(12523), + [anon_sym_BSLASHACRlong] = ACTIONS(12523), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12523), + [anon_sym_BSLASHacrfull] = ACTIONS(12523), + [anon_sym_BSLASHAcrfull] = ACTIONS(12523), + [anon_sym_BSLASHACRfull] = ACTIONS(12523), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12523), + [anon_sym_BSLASHacs] = ACTIONS(12523), + [anon_sym_BSLASHAcs] = ACTIONS(12523), + [anon_sym_BSLASHacsp] = ACTIONS(12523), + [anon_sym_BSLASHAcsp] = ACTIONS(12523), + [anon_sym_BSLASHacl] = ACTIONS(12523), + [anon_sym_BSLASHAcl] = ACTIONS(12523), + [anon_sym_BSLASHaclp] = ACTIONS(12523), + [anon_sym_BSLASHAclp] = ACTIONS(12523), + [anon_sym_BSLASHacf] = ACTIONS(12523), + [anon_sym_BSLASHAcf] = ACTIONS(12523), + [anon_sym_BSLASHacfp] = ACTIONS(12523), + [anon_sym_BSLASHAcfp] = ACTIONS(12523), + [anon_sym_BSLASHac] = ACTIONS(12523), + [anon_sym_BSLASHAc] = ACTIONS(12523), + [anon_sym_BSLASHacp] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12523), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12523), + [anon_sym_BSLASHcolor] = ACTIONS(12523), + [anon_sym_BSLASHcolorbox] = ACTIONS(12523), + [anon_sym_BSLASHtextcolor] = ACTIONS(12523), + [anon_sym_BSLASHpagecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12523), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12523), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12523), + }, + [1121] = { + [sym_generic_command_name] = ACTIONS(12519), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12519), + [aux_sym_section_token1] = ACTIONS(12519), + [aux_sym_subsection_token1] = ACTIONS(12519), + [aux_sym_subsubsection_token1] = ACTIONS(12519), + [aux_sym_paragraph_token1] = ACTIONS(12519), + [aux_sym_subparagraph_token1] = ACTIONS(12519), + [anon_sym_BSLASHitem] = ACTIONS(12519), + [anon_sym_LBRACK] = ACTIONS(12517), + [anon_sym_RBRACK] = ACTIONS(12517), + [anon_sym_LBRACE] = ACTIONS(12517), + [anon_sym_RBRACE] = ACTIONS(12517), + [anon_sym_LPAREN] = ACTIONS(12517), + [anon_sym_COMMA] = ACTIONS(12517), + [anon_sym_EQ] = ACTIONS(12517), + [sym_word] = ACTIONS(12517), + [sym_param] = ACTIONS(12517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12517), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12517), + [anon_sym_DOLLAR] = ACTIONS(12519), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12517), + [anon_sym_BSLASHbegin] = ACTIONS(12519), + [anon_sym_BSLASHcaption] = ACTIONS(12519), + [anon_sym_BSLASHcite] = ACTIONS(12519), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCite] = ACTIONS(12519), + [anon_sym_BSLASHnocite] = ACTIONS(12519), + [anon_sym_BSLASHcitet] = ACTIONS(12519), + [anon_sym_BSLASHcitep] = ACTIONS(12519), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteauthor] = ACTIONS(12519), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12519), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitetitle] = ACTIONS(12519), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteyear] = ACTIONS(12519), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitedate] = ACTIONS(12519), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteurl] = ACTIONS(12519), + [anon_sym_BSLASHfullcite] = ACTIONS(12519), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12519), + [anon_sym_BSLASHcitealt] = ACTIONS(12519), + [anon_sym_BSLASHcitealp] = ACTIONS(12519), + [anon_sym_BSLASHcitetext] = ACTIONS(12519), + [anon_sym_BSLASHparencite] = ACTIONS(12519), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHParencite] = ACTIONS(12519), + [anon_sym_BSLASHfootcite] = ACTIONS(12519), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12519), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12519), + [anon_sym_BSLASHtextcite] = ACTIONS(12519), + [anon_sym_BSLASHTextcite] = ACTIONS(12519), + [anon_sym_BSLASHsmartcite] = ACTIONS(12519), + [anon_sym_BSLASHSmartcite] = ACTIONS(12519), + [anon_sym_BSLASHsupercite] = ACTIONS(12519), + [anon_sym_BSLASHautocite] = ACTIONS(12519), + [anon_sym_BSLASHAutocite] = ACTIONS(12519), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHvolcite] = ACTIONS(12519), + [anon_sym_BSLASHVolcite] = ACTIONS(12519), + [anon_sym_BSLASHpvolcite] = ACTIONS(12519), + [anon_sym_BSLASHPvolcite] = ACTIONS(12519), + [anon_sym_BSLASHfvolcite] = ACTIONS(12519), + [anon_sym_BSLASHftvolcite] = ACTIONS(12519), + [anon_sym_BSLASHsvolcite] = ACTIONS(12519), + [anon_sym_BSLASHSvolcite] = ACTIONS(12519), + [anon_sym_BSLASHtvolcite] = ACTIONS(12519), + [anon_sym_BSLASHTvolcite] = ACTIONS(12519), + [anon_sym_BSLASHavolcite] = ACTIONS(12519), + [anon_sym_BSLASHAvolcite] = ACTIONS(12519), + [anon_sym_BSLASHnotecite] = ACTIONS(12519), + [anon_sym_BSLASHpnotecite] = ACTIONS(12519), + [anon_sym_BSLASHPnotecite] = ACTIONS(12519), + [anon_sym_BSLASHfnotecite] = ACTIONS(12519), + [anon_sym_BSLASHusepackage] = ACTIONS(12519), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12519), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12519), + [anon_sym_BSLASHinclude] = ACTIONS(12519), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12519), + [anon_sym_BSLASHinput] = ACTIONS(12519), + [anon_sym_BSLASHsubfile] = ACTIONS(12519), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12519), + [anon_sym_BSLASHbibliography] = ACTIONS(12519), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12519), + [anon_sym_BSLASHincludesvg] = ACTIONS(12519), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12519), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12519), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12519), + [anon_sym_BSLASHimport] = ACTIONS(12519), + [anon_sym_BSLASHsubimport] = ACTIONS(12519), + [anon_sym_BSLASHinputfrom] = ACTIONS(12519), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12519), + [anon_sym_BSLASHincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHlabel] = ACTIONS(12519), + [anon_sym_BSLASHref] = ACTIONS(12519), + [anon_sym_BSLASHvref] = ACTIONS(12519), + [anon_sym_BSLASHVref] = ACTIONS(12519), + [anon_sym_BSLASHautoref] = ACTIONS(12519), + [anon_sym_BSLASHpageref] = ACTIONS(12519), + [anon_sym_BSLASHcref] = ACTIONS(12519), + [anon_sym_BSLASHCref] = ACTIONS(12519), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnameCref] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHlabelcref] = ACTIONS(12519), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12519), + [anon_sym_BSLASHeqref] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange] = ACTIONS(12519), + [anon_sym_BSLASHCrefrange] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewlabel] = ACTIONS(12519), + [anon_sym_BSLASHnewcommand] = ACTIONS(12519), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12519), + [anon_sym_BSLASHgls] = ACTIONS(12519), + [anon_sym_BSLASHGls] = ACTIONS(12519), + [anon_sym_BSLASHGLS] = ACTIONS(12519), + [anon_sym_BSLASHglspl] = ACTIONS(12519), + [anon_sym_BSLASHGlspl] = ACTIONS(12519), + [anon_sym_BSLASHGLSpl] = ACTIONS(12519), + [anon_sym_BSLASHglsdisp] = ACTIONS(12519), + [anon_sym_BSLASHglslink] = ACTIONS(12519), + [anon_sym_BSLASHglstext] = ACTIONS(12519), + [anon_sym_BSLASHGlstext] = ACTIONS(12519), + [anon_sym_BSLASHGLStext] = ACTIONS(12519), + [anon_sym_BSLASHglsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12519), + [anon_sym_BSLASHglsplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSplural] = ACTIONS(12519), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHglsname] = ACTIONS(12519), + [anon_sym_BSLASHGlsname] = ACTIONS(12519), + [anon_sym_BSLASHGLSname] = ACTIONS(12519), + [anon_sym_BSLASHglssymbol] = ACTIONS(12519), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12519), + [anon_sym_BSLASHglsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12519), + [anon_sym_BSLASHglsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12519), + [anon_sym_BSLASHglsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12519), + [anon_sym_BSLASHglsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12519), + [anon_sym_BSLASHglsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12519), + [anon_sym_BSLASHnewacronym] = ACTIONS(12519), + [anon_sym_BSLASHacrshort] = ACTIONS(12519), + [anon_sym_BSLASHAcrshort] = ACTIONS(12519), + [anon_sym_BSLASHACRshort] = ACTIONS(12519), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12519), + [anon_sym_BSLASHacrlong] = ACTIONS(12519), + [anon_sym_BSLASHAcrlong] = ACTIONS(12519), + [anon_sym_BSLASHACRlong] = ACTIONS(12519), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12519), + [anon_sym_BSLASHacrfull] = ACTIONS(12519), + [anon_sym_BSLASHAcrfull] = ACTIONS(12519), + [anon_sym_BSLASHACRfull] = ACTIONS(12519), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12519), + [anon_sym_BSLASHacs] = ACTIONS(12519), + [anon_sym_BSLASHAcs] = ACTIONS(12519), + [anon_sym_BSLASHacsp] = ACTIONS(12519), + [anon_sym_BSLASHAcsp] = ACTIONS(12519), + [anon_sym_BSLASHacl] = ACTIONS(12519), + [anon_sym_BSLASHAcl] = ACTIONS(12519), + [anon_sym_BSLASHaclp] = ACTIONS(12519), + [anon_sym_BSLASHAclp] = ACTIONS(12519), + [anon_sym_BSLASHacf] = ACTIONS(12519), + [anon_sym_BSLASHAcf] = ACTIONS(12519), + [anon_sym_BSLASHacfp] = ACTIONS(12519), + [anon_sym_BSLASHAcfp] = ACTIONS(12519), + [anon_sym_BSLASHac] = ACTIONS(12519), + [anon_sym_BSLASHAc] = ACTIONS(12519), + [anon_sym_BSLASHacp] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12519), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12519), + [anon_sym_BSLASHcolor] = ACTIONS(12519), + [anon_sym_BSLASHcolorbox] = ACTIONS(12519), + [anon_sym_BSLASHtextcolor] = ACTIONS(12519), + [anon_sym_BSLASHpagecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12519), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12519), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12519), + }, + [1122] = { + [sym_generic_command_name] = ACTIONS(12513), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12513), + [aux_sym_section_token1] = ACTIONS(12513), + [aux_sym_subsection_token1] = ACTIONS(12513), + [aux_sym_subsubsection_token1] = ACTIONS(12513), + [aux_sym_paragraph_token1] = ACTIONS(12513), + [aux_sym_subparagraph_token1] = ACTIONS(12513), + [anon_sym_BSLASHitem] = ACTIONS(12513), + [anon_sym_LBRACK] = ACTIONS(12511), + [anon_sym_RBRACK] = ACTIONS(12511), + [anon_sym_LBRACE] = ACTIONS(12695), + [anon_sym_RBRACE] = ACTIONS(12511), + [anon_sym_LPAREN] = ACTIONS(12511), + [anon_sym_COMMA] = ACTIONS(12511), + [anon_sym_EQ] = ACTIONS(12511), + [sym_word] = ACTIONS(12511), + [sym_param] = ACTIONS(12511), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12511), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12511), + [anon_sym_DOLLAR] = ACTIONS(12513), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12511), + [anon_sym_BSLASHbegin] = ACTIONS(12513), + [anon_sym_BSLASHcaption] = ACTIONS(12513), + [anon_sym_BSLASHcite] = ACTIONS(12513), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCite] = ACTIONS(12513), + [anon_sym_BSLASHnocite] = ACTIONS(12513), + [anon_sym_BSLASHcitet] = ACTIONS(12513), + [anon_sym_BSLASHcitep] = ACTIONS(12513), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteauthor] = ACTIONS(12513), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12513), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitetitle] = ACTIONS(12513), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteyear] = ACTIONS(12513), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitedate] = ACTIONS(12513), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteurl] = ACTIONS(12513), + [anon_sym_BSLASHfullcite] = ACTIONS(12513), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12513), + [anon_sym_BSLASHcitealt] = ACTIONS(12513), + [anon_sym_BSLASHcitealp] = ACTIONS(12513), + [anon_sym_BSLASHcitetext] = ACTIONS(12513), + [anon_sym_BSLASHparencite] = ACTIONS(12513), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHParencite] = ACTIONS(12513), + [anon_sym_BSLASHfootcite] = ACTIONS(12513), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12513), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12513), + [anon_sym_BSLASHtextcite] = ACTIONS(12513), + [anon_sym_BSLASHTextcite] = ACTIONS(12513), + [anon_sym_BSLASHsmartcite] = ACTIONS(12513), + [anon_sym_BSLASHSmartcite] = ACTIONS(12513), + [anon_sym_BSLASHsupercite] = ACTIONS(12513), + [anon_sym_BSLASHautocite] = ACTIONS(12513), + [anon_sym_BSLASHAutocite] = ACTIONS(12513), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHvolcite] = ACTIONS(12513), + [anon_sym_BSLASHVolcite] = ACTIONS(12513), + [anon_sym_BSLASHpvolcite] = ACTIONS(12513), + [anon_sym_BSLASHPvolcite] = ACTIONS(12513), + [anon_sym_BSLASHfvolcite] = ACTIONS(12513), + [anon_sym_BSLASHftvolcite] = ACTIONS(12513), + [anon_sym_BSLASHsvolcite] = ACTIONS(12513), + [anon_sym_BSLASHSvolcite] = ACTIONS(12513), + [anon_sym_BSLASHtvolcite] = ACTIONS(12513), + [anon_sym_BSLASHTvolcite] = ACTIONS(12513), + [anon_sym_BSLASHavolcite] = ACTIONS(12513), + [anon_sym_BSLASHAvolcite] = ACTIONS(12513), + [anon_sym_BSLASHnotecite] = ACTIONS(12513), + [anon_sym_BSLASHpnotecite] = ACTIONS(12513), + [anon_sym_BSLASHPnotecite] = ACTIONS(12513), + [anon_sym_BSLASHfnotecite] = ACTIONS(12513), + [anon_sym_BSLASHusepackage] = ACTIONS(12513), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12513), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12513), + [anon_sym_BSLASHinclude] = ACTIONS(12513), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12513), + [anon_sym_BSLASHinput] = ACTIONS(12513), + [anon_sym_BSLASHsubfile] = ACTIONS(12513), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12513), + [anon_sym_BSLASHbibliography] = ACTIONS(12513), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12513), + [anon_sym_BSLASHincludesvg] = ACTIONS(12513), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12513), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12513), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12513), + [anon_sym_BSLASHimport] = ACTIONS(12513), + [anon_sym_BSLASHsubimport] = ACTIONS(12513), + [anon_sym_BSLASHinputfrom] = ACTIONS(12513), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12513), + [anon_sym_BSLASHincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHlabel] = ACTIONS(12513), + [anon_sym_BSLASHref] = ACTIONS(12513), + [anon_sym_BSLASHvref] = ACTIONS(12513), + [anon_sym_BSLASHVref] = ACTIONS(12513), + [anon_sym_BSLASHautoref] = ACTIONS(12513), + [anon_sym_BSLASHpageref] = ACTIONS(12513), + [anon_sym_BSLASHcref] = ACTIONS(12513), + [anon_sym_BSLASHCref] = ACTIONS(12513), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnameCref] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHlabelcref] = ACTIONS(12513), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12513), + [anon_sym_BSLASHeqref] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange] = ACTIONS(12513), + [anon_sym_BSLASHCrefrange] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewlabel] = ACTIONS(12513), + [anon_sym_BSLASHnewcommand] = ACTIONS(12513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12513), + [anon_sym_BSLASHgls] = ACTIONS(12513), + [anon_sym_BSLASHGls] = ACTIONS(12513), + [anon_sym_BSLASHGLS] = ACTIONS(12513), + [anon_sym_BSLASHglspl] = ACTIONS(12513), + [anon_sym_BSLASHGlspl] = ACTIONS(12513), + [anon_sym_BSLASHGLSpl] = ACTIONS(12513), + [anon_sym_BSLASHglsdisp] = ACTIONS(12513), + [anon_sym_BSLASHglslink] = ACTIONS(12513), + [anon_sym_BSLASHglstext] = ACTIONS(12513), + [anon_sym_BSLASHGlstext] = ACTIONS(12513), + [anon_sym_BSLASHGLStext] = ACTIONS(12513), + [anon_sym_BSLASHglsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12513), + [anon_sym_BSLASHglsplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSplural] = ACTIONS(12513), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHglsname] = ACTIONS(12513), + [anon_sym_BSLASHGlsname] = ACTIONS(12513), + [anon_sym_BSLASHGLSname] = ACTIONS(12513), + [anon_sym_BSLASHglssymbol] = ACTIONS(12513), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12513), + [anon_sym_BSLASHglsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12513), + [anon_sym_BSLASHglsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12513), + [anon_sym_BSLASHglsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12513), + [anon_sym_BSLASHglsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12513), + [anon_sym_BSLASHglsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12513), + [anon_sym_BSLASHnewacronym] = ACTIONS(12513), + [anon_sym_BSLASHacrshort] = ACTIONS(12513), + [anon_sym_BSLASHAcrshort] = ACTIONS(12513), + [anon_sym_BSLASHACRshort] = ACTIONS(12513), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12513), + [anon_sym_BSLASHacrlong] = ACTIONS(12513), + [anon_sym_BSLASHAcrlong] = ACTIONS(12513), + [anon_sym_BSLASHACRlong] = ACTIONS(12513), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12513), + [anon_sym_BSLASHacrfull] = ACTIONS(12513), + [anon_sym_BSLASHAcrfull] = ACTIONS(12513), + [anon_sym_BSLASHACRfull] = ACTIONS(12513), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12513), + [anon_sym_BSLASHacs] = ACTIONS(12513), + [anon_sym_BSLASHAcs] = ACTIONS(12513), + [anon_sym_BSLASHacsp] = ACTIONS(12513), + [anon_sym_BSLASHAcsp] = ACTIONS(12513), + [anon_sym_BSLASHacl] = ACTIONS(12513), + [anon_sym_BSLASHAcl] = ACTIONS(12513), + [anon_sym_BSLASHaclp] = ACTIONS(12513), + [anon_sym_BSLASHAclp] = ACTIONS(12513), + [anon_sym_BSLASHacf] = ACTIONS(12513), + [anon_sym_BSLASHAcf] = ACTIONS(12513), + [anon_sym_BSLASHacfp] = ACTIONS(12513), + [anon_sym_BSLASHAcfp] = ACTIONS(12513), + [anon_sym_BSLASHac] = ACTIONS(12513), + [anon_sym_BSLASHAc] = ACTIONS(12513), + [anon_sym_BSLASHacp] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12513), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12513), + [anon_sym_BSLASHcolor] = ACTIONS(12513), + [anon_sym_BSLASHcolorbox] = ACTIONS(12513), + [anon_sym_BSLASHtextcolor] = ACTIONS(12513), + [anon_sym_BSLASHpagecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12513), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12513), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12513), + }, + [1123] = { + [sym_generic_command_name] = ACTIONS(12509), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12509), + [aux_sym_section_token1] = ACTIONS(12509), + [aux_sym_subsection_token1] = ACTIONS(12509), + [aux_sym_subsubsection_token1] = ACTIONS(12509), + [aux_sym_paragraph_token1] = ACTIONS(12509), + [aux_sym_subparagraph_token1] = ACTIONS(12509), + [anon_sym_BSLASHitem] = ACTIONS(12509), + [anon_sym_LBRACK] = ACTIONS(12507), + [anon_sym_RBRACK] = ACTIONS(12507), + [anon_sym_LBRACE] = ACTIONS(12507), + [anon_sym_RBRACE] = ACTIONS(12507), + [anon_sym_LPAREN] = ACTIONS(12507), + [anon_sym_COMMA] = ACTIONS(12507), + [anon_sym_EQ] = ACTIONS(12507), + [sym_word] = ACTIONS(12507), + [sym_param] = ACTIONS(12507), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12507), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12507), + [anon_sym_DOLLAR] = ACTIONS(12509), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12507), + [anon_sym_BSLASHbegin] = ACTIONS(12509), + [anon_sym_BSLASHcaption] = ACTIONS(12509), + [anon_sym_BSLASHcite] = ACTIONS(12509), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCite] = ACTIONS(12509), + [anon_sym_BSLASHnocite] = ACTIONS(12509), + [anon_sym_BSLASHcitet] = ACTIONS(12509), + [anon_sym_BSLASHcitep] = ACTIONS(12509), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteauthor] = ACTIONS(12509), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12509), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitetitle] = ACTIONS(12509), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteyear] = ACTIONS(12509), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitedate] = ACTIONS(12509), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteurl] = ACTIONS(12509), + [anon_sym_BSLASHfullcite] = ACTIONS(12509), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12509), + [anon_sym_BSLASHcitealt] = ACTIONS(12509), + [anon_sym_BSLASHcitealp] = ACTIONS(12509), + [anon_sym_BSLASHcitetext] = ACTIONS(12509), + [anon_sym_BSLASHparencite] = ACTIONS(12509), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHParencite] = ACTIONS(12509), + [anon_sym_BSLASHfootcite] = ACTIONS(12509), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12509), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12509), + [anon_sym_BSLASHtextcite] = ACTIONS(12509), + [anon_sym_BSLASHTextcite] = ACTIONS(12509), + [anon_sym_BSLASHsmartcite] = ACTIONS(12509), + [anon_sym_BSLASHSmartcite] = ACTIONS(12509), + [anon_sym_BSLASHsupercite] = ACTIONS(12509), + [anon_sym_BSLASHautocite] = ACTIONS(12509), + [anon_sym_BSLASHAutocite] = ACTIONS(12509), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHvolcite] = ACTIONS(12509), + [anon_sym_BSLASHVolcite] = ACTIONS(12509), + [anon_sym_BSLASHpvolcite] = ACTIONS(12509), + [anon_sym_BSLASHPvolcite] = ACTIONS(12509), + [anon_sym_BSLASHfvolcite] = ACTIONS(12509), + [anon_sym_BSLASHftvolcite] = ACTIONS(12509), + [anon_sym_BSLASHsvolcite] = ACTIONS(12509), + [anon_sym_BSLASHSvolcite] = ACTIONS(12509), + [anon_sym_BSLASHtvolcite] = ACTIONS(12509), + [anon_sym_BSLASHTvolcite] = ACTIONS(12509), + [anon_sym_BSLASHavolcite] = ACTIONS(12509), + [anon_sym_BSLASHAvolcite] = ACTIONS(12509), + [anon_sym_BSLASHnotecite] = ACTIONS(12509), + [anon_sym_BSLASHpnotecite] = ACTIONS(12509), + [anon_sym_BSLASHPnotecite] = ACTIONS(12509), + [anon_sym_BSLASHfnotecite] = ACTIONS(12509), + [anon_sym_BSLASHusepackage] = ACTIONS(12509), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12509), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12509), + [anon_sym_BSLASHinclude] = ACTIONS(12509), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12509), + [anon_sym_BSLASHinput] = ACTIONS(12509), + [anon_sym_BSLASHsubfile] = ACTIONS(12509), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12509), + [anon_sym_BSLASHbibliography] = ACTIONS(12509), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12509), + [anon_sym_BSLASHincludesvg] = ACTIONS(12509), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12509), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12509), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12509), + [anon_sym_BSLASHimport] = ACTIONS(12509), + [anon_sym_BSLASHsubimport] = ACTIONS(12509), + [anon_sym_BSLASHinputfrom] = ACTIONS(12509), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12509), + [anon_sym_BSLASHincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHlabel] = ACTIONS(12509), + [anon_sym_BSLASHref] = ACTIONS(12509), + [anon_sym_BSLASHvref] = ACTIONS(12509), + [anon_sym_BSLASHVref] = ACTIONS(12509), + [anon_sym_BSLASHautoref] = ACTIONS(12509), + [anon_sym_BSLASHpageref] = ACTIONS(12509), + [anon_sym_BSLASHcref] = ACTIONS(12509), + [anon_sym_BSLASHCref] = ACTIONS(12509), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnameCref] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHlabelcref] = ACTIONS(12509), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12509), + [anon_sym_BSLASHeqref] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange] = ACTIONS(12509), + [anon_sym_BSLASHCrefrange] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewlabel] = ACTIONS(12509), + [anon_sym_BSLASHnewcommand] = ACTIONS(12509), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12509), + [anon_sym_BSLASHgls] = ACTIONS(12509), + [anon_sym_BSLASHGls] = ACTIONS(12509), + [anon_sym_BSLASHGLS] = ACTIONS(12509), + [anon_sym_BSLASHglspl] = ACTIONS(12509), + [anon_sym_BSLASHGlspl] = ACTIONS(12509), + [anon_sym_BSLASHGLSpl] = ACTIONS(12509), + [anon_sym_BSLASHglsdisp] = ACTIONS(12509), + [anon_sym_BSLASHglslink] = ACTIONS(12509), + [anon_sym_BSLASHglstext] = ACTIONS(12509), + [anon_sym_BSLASHGlstext] = ACTIONS(12509), + [anon_sym_BSLASHGLStext] = ACTIONS(12509), + [anon_sym_BSLASHglsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12509), + [anon_sym_BSLASHglsplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSplural] = ACTIONS(12509), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHglsname] = ACTIONS(12509), + [anon_sym_BSLASHGlsname] = ACTIONS(12509), + [anon_sym_BSLASHGLSname] = ACTIONS(12509), + [anon_sym_BSLASHglssymbol] = ACTIONS(12509), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12509), + [anon_sym_BSLASHglsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12509), + [anon_sym_BSLASHglsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12509), + [anon_sym_BSLASHglsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12509), + [anon_sym_BSLASHglsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12509), + [anon_sym_BSLASHglsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12509), + [anon_sym_BSLASHnewacronym] = ACTIONS(12509), + [anon_sym_BSLASHacrshort] = ACTIONS(12509), + [anon_sym_BSLASHAcrshort] = ACTIONS(12509), + [anon_sym_BSLASHACRshort] = ACTIONS(12509), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12509), + [anon_sym_BSLASHacrlong] = ACTIONS(12509), + [anon_sym_BSLASHAcrlong] = ACTIONS(12509), + [anon_sym_BSLASHACRlong] = ACTIONS(12509), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12509), + [anon_sym_BSLASHacrfull] = ACTIONS(12509), + [anon_sym_BSLASHAcrfull] = ACTIONS(12509), + [anon_sym_BSLASHACRfull] = ACTIONS(12509), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12509), + [anon_sym_BSLASHacs] = ACTIONS(12509), + [anon_sym_BSLASHAcs] = ACTIONS(12509), + [anon_sym_BSLASHacsp] = ACTIONS(12509), + [anon_sym_BSLASHAcsp] = ACTIONS(12509), + [anon_sym_BSLASHacl] = ACTIONS(12509), + [anon_sym_BSLASHAcl] = ACTIONS(12509), + [anon_sym_BSLASHaclp] = ACTIONS(12509), + [anon_sym_BSLASHAclp] = ACTIONS(12509), + [anon_sym_BSLASHacf] = ACTIONS(12509), + [anon_sym_BSLASHAcf] = ACTIONS(12509), + [anon_sym_BSLASHacfp] = ACTIONS(12509), + [anon_sym_BSLASHAcfp] = ACTIONS(12509), + [anon_sym_BSLASHac] = ACTIONS(12509), + [anon_sym_BSLASHAc] = ACTIONS(12509), + [anon_sym_BSLASHacp] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12509), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12509), + [anon_sym_BSLASHcolor] = ACTIONS(12509), + [anon_sym_BSLASHcolorbox] = ACTIONS(12509), + [anon_sym_BSLASHtextcolor] = ACTIONS(12509), + [anon_sym_BSLASHpagecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12509), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12509), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12509), + }, + [1124] = { + [sym_generic_command_name] = ACTIONS(12501), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12501), + [aux_sym_section_token1] = ACTIONS(12501), + [aux_sym_subsection_token1] = ACTIONS(12501), + [aux_sym_subsubsection_token1] = ACTIONS(12501), + [aux_sym_paragraph_token1] = ACTIONS(12501), + [aux_sym_subparagraph_token1] = ACTIONS(12501), + [anon_sym_BSLASHitem] = ACTIONS(12501), + [anon_sym_LBRACK] = ACTIONS(12499), + [anon_sym_RBRACK] = ACTIONS(12499), + [anon_sym_LBRACE] = ACTIONS(12499), + [anon_sym_RBRACE] = ACTIONS(12499), + [anon_sym_LPAREN] = ACTIONS(12499), + [anon_sym_COMMA] = ACTIONS(12499), + [anon_sym_EQ] = ACTIONS(12499), + [sym_word] = ACTIONS(12499), + [sym_param] = ACTIONS(12499), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12499), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12499), + [anon_sym_DOLLAR] = ACTIONS(12501), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12499), + [anon_sym_BSLASHbegin] = ACTIONS(12501), + [anon_sym_BSLASHcaption] = ACTIONS(12501), + [anon_sym_BSLASHcite] = ACTIONS(12501), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCite] = ACTIONS(12501), + [anon_sym_BSLASHnocite] = ACTIONS(12501), + [anon_sym_BSLASHcitet] = ACTIONS(12501), + [anon_sym_BSLASHcitep] = ACTIONS(12501), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteauthor] = ACTIONS(12501), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12501), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitetitle] = ACTIONS(12501), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteyear] = ACTIONS(12501), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitedate] = ACTIONS(12501), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteurl] = ACTIONS(12501), + [anon_sym_BSLASHfullcite] = ACTIONS(12501), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12501), + [anon_sym_BSLASHcitealt] = ACTIONS(12501), + [anon_sym_BSLASHcitealp] = ACTIONS(12501), + [anon_sym_BSLASHcitetext] = ACTIONS(12501), + [anon_sym_BSLASHparencite] = ACTIONS(12501), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHParencite] = ACTIONS(12501), + [anon_sym_BSLASHfootcite] = ACTIONS(12501), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12501), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12501), + [anon_sym_BSLASHtextcite] = ACTIONS(12501), + [anon_sym_BSLASHTextcite] = ACTIONS(12501), + [anon_sym_BSLASHsmartcite] = ACTIONS(12501), + [anon_sym_BSLASHSmartcite] = ACTIONS(12501), + [anon_sym_BSLASHsupercite] = ACTIONS(12501), + [anon_sym_BSLASHautocite] = ACTIONS(12501), + [anon_sym_BSLASHAutocite] = ACTIONS(12501), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHvolcite] = ACTIONS(12501), + [anon_sym_BSLASHVolcite] = ACTIONS(12501), + [anon_sym_BSLASHpvolcite] = ACTIONS(12501), + [anon_sym_BSLASHPvolcite] = ACTIONS(12501), + [anon_sym_BSLASHfvolcite] = ACTIONS(12501), + [anon_sym_BSLASHftvolcite] = ACTIONS(12501), + [anon_sym_BSLASHsvolcite] = ACTIONS(12501), + [anon_sym_BSLASHSvolcite] = ACTIONS(12501), + [anon_sym_BSLASHtvolcite] = ACTIONS(12501), + [anon_sym_BSLASHTvolcite] = ACTIONS(12501), + [anon_sym_BSLASHavolcite] = ACTIONS(12501), + [anon_sym_BSLASHAvolcite] = ACTIONS(12501), + [anon_sym_BSLASHnotecite] = ACTIONS(12501), + [anon_sym_BSLASHpnotecite] = ACTIONS(12501), + [anon_sym_BSLASHPnotecite] = ACTIONS(12501), + [anon_sym_BSLASHfnotecite] = ACTIONS(12501), + [anon_sym_BSLASHusepackage] = ACTIONS(12501), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12501), + [anon_sym_BSLASHinclude] = ACTIONS(12501), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12501), + [anon_sym_BSLASHinput] = ACTIONS(12501), + [anon_sym_BSLASHsubfile] = ACTIONS(12501), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12501), + [anon_sym_BSLASHbibliography] = ACTIONS(12501), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12501), + [anon_sym_BSLASHincludesvg] = ACTIONS(12501), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12501), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12501), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12501), + [anon_sym_BSLASHimport] = ACTIONS(12501), + [anon_sym_BSLASHsubimport] = ACTIONS(12501), + [anon_sym_BSLASHinputfrom] = ACTIONS(12501), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12501), + [anon_sym_BSLASHincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHlabel] = ACTIONS(12501), + [anon_sym_BSLASHref] = ACTIONS(12501), + [anon_sym_BSLASHvref] = ACTIONS(12501), + [anon_sym_BSLASHVref] = ACTIONS(12501), + [anon_sym_BSLASHautoref] = ACTIONS(12501), + [anon_sym_BSLASHpageref] = ACTIONS(12501), + [anon_sym_BSLASHcref] = ACTIONS(12501), + [anon_sym_BSLASHCref] = ACTIONS(12501), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnameCref] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHlabelcref] = ACTIONS(12501), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12501), + [anon_sym_BSLASHeqref] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange] = ACTIONS(12501), + [anon_sym_BSLASHCrefrange] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewlabel] = ACTIONS(12501), + [anon_sym_BSLASHnewcommand] = ACTIONS(12501), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12501), + [anon_sym_BSLASHgls] = ACTIONS(12501), + [anon_sym_BSLASHGls] = ACTIONS(12501), + [anon_sym_BSLASHGLS] = ACTIONS(12501), + [anon_sym_BSLASHglspl] = ACTIONS(12501), + [anon_sym_BSLASHGlspl] = ACTIONS(12501), + [anon_sym_BSLASHGLSpl] = ACTIONS(12501), + [anon_sym_BSLASHglsdisp] = ACTIONS(12501), + [anon_sym_BSLASHglslink] = ACTIONS(12501), + [anon_sym_BSLASHglstext] = ACTIONS(12501), + [anon_sym_BSLASHGlstext] = ACTIONS(12501), + [anon_sym_BSLASHGLStext] = ACTIONS(12501), + [anon_sym_BSLASHglsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12501), + [anon_sym_BSLASHglsplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSplural] = ACTIONS(12501), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHglsname] = ACTIONS(12501), + [anon_sym_BSLASHGlsname] = ACTIONS(12501), + [anon_sym_BSLASHGLSname] = ACTIONS(12501), + [anon_sym_BSLASHglssymbol] = ACTIONS(12501), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12501), + [anon_sym_BSLASHglsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12501), + [anon_sym_BSLASHglsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12501), + [anon_sym_BSLASHglsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12501), + [anon_sym_BSLASHglsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12501), + [anon_sym_BSLASHglsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12501), + [anon_sym_BSLASHnewacronym] = ACTIONS(12501), + [anon_sym_BSLASHacrshort] = ACTIONS(12501), + [anon_sym_BSLASHAcrshort] = ACTIONS(12501), + [anon_sym_BSLASHACRshort] = ACTIONS(12501), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12501), + [anon_sym_BSLASHacrlong] = ACTIONS(12501), + [anon_sym_BSLASHAcrlong] = ACTIONS(12501), + [anon_sym_BSLASHACRlong] = ACTIONS(12501), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12501), + [anon_sym_BSLASHacrfull] = ACTIONS(12501), + [anon_sym_BSLASHAcrfull] = ACTIONS(12501), + [anon_sym_BSLASHACRfull] = ACTIONS(12501), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12501), + [anon_sym_BSLASHacs] = ACTIONS(12501), + [anon_sym_BSLASHAcs] = ACTIONS(12501), + [anon_sym_BSLASHacsp] = ACTIONS(12501), + [anon_sym_BSLASHAcsp] = ACTIONS(12501), + [anon_sym_BSLASHacl] = ACTIONS(12501), + [anon_sym_BSLASHAcl] = ACTIONS(12501), + [anon_sym_BSLASHaclp] = ACTIONS(12501), + [anon_sym_BSLASHAclp] = ACTIONS(12501), + [anon_sym_BSLASHacf] = ACTIONS(12501), + [anon_sym_BSLASHAcf] = ACTIONS(12501), + [anon_sym_BSLASHacfp] = ACTIONS(12501), + [anon_sym_BSLASHAcfp] = ACTIONS(12501), + [anon_sym_BSLASHac] = ACTIONS(12501), + [anon_sym_BSLASHAc] = ACTIONS(12501), + [anon_sym_BSLASHacp] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12501), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12501), + [anon_sym_BSLASHcolor] = ACTIONS(12501), + [anon_sym_BSLASHcolorbox] = ACTIONS(12501), + [anon_sym_BSLASHtextcolor] = ACTIONS(12501), + [anon_sym_BSLASHpagecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12501), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12501), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12501), + }, + [1125] = { + [sym_generic_command_name] = ACTIONS(12497), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12497), + [aux_sym_section_token1] = ACTIONS(12497), + [aux_sym_subsection_token1] = ACTIONS(12497), + [aux_sym_subsubsection_token1] = ACTIONS(12497), + [aux_sym_paragraph_token1] = ACTIONS(12497), + [aux_sym_subparagraph_token1] = ACTIONS(12497), + [anon_sym_BSLASHitem] = ACTIONS(12497), + [anon_sym_LBRACK] = ACTIONS(12495), + [anon_sym_RBRACK] = ACTIONS(12495), + [anon_sym_LBRACE] = ACTIONS(12495), + [anon_sym_RBRACE] = ACTIONS(12495), + [anon_sym_LPAREN] = ACTIONS(12495), + [anon_sym_COMMA] = ACTIONS(12495), + [anon_sym_EQ] = ACTIONS(12495), + [sym_word] = ACTIONS(12495), + [sym_param] = ACTIONS(12495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12495), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12495), + [anon_sym_DOLLAR] = ACTIONS(12497), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12495), + [anon_sym_BSLASHbegin] = ACTIONS(12497), + [anon_sym_BSLASHcaption] = ACTIONS(12497), + [anon_sym_BSLASHcite] = ACTIONS(12497), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCite] = ACTIONS(12497), + [anon_sym_BSLASHnocite] = ACTIONS(12497), + [anon_sym_BSLASHcitet] = ACTIONS(12497), + [anon_sym_BSLASHcitep] = ACTIONS(12497), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteauthor] = ACTIONS(12497), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12497), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitetitle] = ACTIONS(12497), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteyear] = ACTIONS(12497), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitedate] = ACTIONS(12497), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteurl] = ACTIONS(12497), + [anon_sym_BSLASHfullcite] = ACTIONS(12497), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12497), + [anon_sym_BSLASHcitealt] = ACTIONS(12497), + [anon_sym_BSLASHcitealp] = ACTIONS(12497), + [anon_sym_BSLASHcitetext] = ACTIONS(12497), + [anon_sym_BSLASHparencite] = ACTIONS(12497), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHParencite] = ACTIONS(12497), + [anon_sym_BSLASHfootcite] = ACTIONS(12497), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12497), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12497), + [anon_sym_BSLASHtextcite] = ACTIONS(12497), + [anon_sym_BSLASHTextcite] = ACTIONS(12497), + [anon_sym_BSLASHsmartcite] = ACTIONS(12497), + [anon_sym_BSLASHSmartcite] = ACTIONS(12497), + [anon_sym_BSLASHsupercite] = ACTIONS(12497), + [anon_sym_BSLASHautocite] = ACTIONS(12497), + [anon_sym_BSLASHAutocite] = ACTIONS(12497), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHvolcite] = ACTIONS(12497), + [anon_sym_BSLASHVolcite] = ACTIONS(12497), + [anon_sym_BSLASHpvolcite] = ACTIONS(12497), + [anon_sym_BSLASHPvolcite] = ACTIONS(12497), + [anon_sym_BSLASHfvolcite] = ACTIONS(12497), + [anon_sym_BSLASHftvolcite] = ACTIONS(12497), + [anon_sym_BSLASHsvolcite] = ACTIONS(12497), + [anon_sym_BSLASHSvolcite] = ACTIONS(12497), + [anon_sym_BSLASHtvolcite] = ACTIONS(12497), + [anon_sym_BSLASHTvolcite] = ACTIONS(12497), + [anon_sym_BSLASHavolcite] = ACTIONS(12497), + [anon_sym_BSLASHAvolcite] = ACTIONS(12497), + [anon_sym_BSLASHnotecite] = ACTIONS(12497), + [anon_sym_BSLASHpnotecite] = ACTIONS(12497), + [anon_sym_BSLASHPnotecite] = ACTIONS(12497), + [anon_sym_BSLASHfnotecite] = ACTIONS(12497), + [anon_sym_BSLASHusepackage] = ACTIONS(12497), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12497), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12497), + [anon_sym_BSLASHinclude] = ACTIONS(12497), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12497), + [anon_sym_BSLASHinput] = ACTIONS(12497), + [anon_sym_BSLASHsubfile] = ACTIONS(12497), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12497), + [anon_sym_BSLASHbibliography] = ACTIONS(12497), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12497), + [anon_sym_BSLASHincludesvg] = ACTIONS(12497), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12497), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12497), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12497), + [anon_sym_BSLASHimport] = ACTIONS(12497), + [anon_sym_BSLASHsubimport] = ACTIONS(12497), + [anon_sym_BSLASHinputfrom] = ACTIONS(12497), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12497), + [anon_sym_BSLASHincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHlabel] = ACTIONS(12497), + [anon_sym_BSLASHref] = ACTIONS(12497), + [anon_sym_BSLASHvref] = ACTIONS(12497), + [anon_sym_BSLASHVref] = ACTIONS(12497), + [anon_sym_BSLASHautoref] = ACTIONS(12497), + [anon_sym_BSLASHpageref] = ACTIONS(12497), + [anon_sym_BSLASHcref] = ACTIONS(12497), + [anon_sym_BSLASHCref] = ACTIONS(12497), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnameCref] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHlabelcref] = ACTIONS(12497), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12497), + [anon_sym_BSLASHeqref] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange] = ACTIONS(12497), + [anon_sym_BSLASHCrefrange] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewlabel] = ACTIONS(12497), + [anon_sym_BSLASHnewcommand] = ACTIONS(12497), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12497), + [anon_sym_BSLASHgls] = ACTIONS(12497), + [anon_sym_BSLASHGls] = ACTIONS(12497), + [anon_sym_BSLASHGLS] = ACTIONS(12497), + [anon_sym_BSLASHglspl] = ACTIONS(12497), + [anon_sym_BSLASHGlspl] = ACTIONS(12497), + [anon_sym_BSLASHGLSpl] = ACTIONS(12497), + [anon_sym_BSLASHglsdisp] = ACTIONS(12497), + [anon_sym_BSLASHglslink] = ACTIONS(12497), + [anon_sym_BSLASHglstext] = ACTIONS(12497), + [anon_sym_BSLASHGlstext] = ACTIONS(12497), + [anon_sym_BSLASHGLStext] = ACTIONS(12497), + [anon_sym_BSLASHglsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12497), + [anon_sym_BSLASHglsplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSplural] = ACTIONS(12497), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHglsname] = ACTIONS(12497), + [anon_sym_BSLASHGlsname] = ACTIONS(12497), + [anon_sym_BSLASHGLSname] = ACTIONS(12497), + [anon_sym_BSLASHglssymbol] = ACTIONS(12497), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12497), + [anon_sym_BSLASHglsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12497), + [anon_sym_BSLASHglsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12497), + [anon_sym_BSLASHglsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12497), + [anon_sym_BSLASHglsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12497), + [anon_sym_BSLASHglsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12497), + [anon_sym_BSLASHnewacronym] = ACTIONS(12497), + [anon_sym_BSLASHacrshort] = ACTIONS(12497), + [anon_sym_BSLASHAcrshort] = ACTIONS(12497), + [anon_sym_BSLASHACRshort] = ACTIONS(12497), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12497), + [anon_sym_BSLASHacrlong] = ACTIONS(12497), + [anon_sym_BSLASHAcrlong] = ACTIONS(12497), + [anon_sym_BSLASHACRlong] = ACTIONS(12497), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12497), + [anon_sym_BSLASHacrfull] = ACTIONS(12497), + [anon_sym_BSLASHAcrfull] = ACTIONS(12497), + [anon_sym_BSLASHACRfull] = ACTIONS(12497), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12497), + [anon_sym_BSLASHacs] = ACTIONS(12497), + [anon_sym_BSLASHAcs] = ACTIONS(12497), + [anon_sym_BSLASHacsp] = ACTIONS(12497), + [anon_sym_BSLASHAcsp] = ACTIONS(12497), + [anon_sym_BSLASHacl] = ACTIONS(12497), + [anon_sym_BSLASHAcl] = ACTIONS(12497), + [anon_sym_BSLASHaclp] = ACTIONS(12497), + [anon_sym_BSLASHAclp] = ACTIONS(12497), + [anon_sym_BSLASHacf] = ACTIONS(12497), + [anon_sym_BSLASHAcf] = ACTIONS(12497), + [anon_sym_BSLASHacfp] = ACTIONS(12497), + [anon_sym_BSLASHAcfp] = ACTIONS(12497), + [anon_sym_BSLASHac] = ACTIONS(12497), + [anon_sym_BSLASHAc] = ACTIONS(12497), + [anon_sym_BSLASHacp] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12497), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12497), + [anon_sym_BSLASHcolor] = ACTIONS(12497), + [anon_sym_BSLASHcolorbox] = ACTIONS(12497), + [anon_sym_BSLASHtextcolor] = ACTIONS(12497), + [anon_sym_BSLASHpagecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12497), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12497), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12497), + }, + [1126] = { + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(127), + [aux_sym_chapter_token1] = ACTIONS(127), + [aux_sym_section_token1] = ACTIONS(127), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_BSLASH_RBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [1127] = { + [sym_generic_command_name] = ACTIONS(12493), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12493), + [aux_sym_section_token1] = ACTIONS(12493), + [aux_sym_subsection_token1] = ACTIONS(12493), + [aux_sym_subsubsection_token1] = ACTIONS(12493), + [aux_sym_paragraph_token1] = ACTIONS(12493), + [aux_sym_subparagraph_token1] = ACTIONS(12493), + [anon_sym_BSLASHitem] = ACTIONS(12493), + [anon_sym_LBRACK] = ACTIONS(12491), + [anon_sym_RBRACK] = ACTIONS(12491), + [anon_sym_LBRACE] = ACTIONS(12491), + [anon_sym_RBRACE] = ACTIONS(12491), + [anon_sym_LPAREN] = ACTIONS(12491), + [anon_sym_COMMA] = ACTIONS(12491), + [anon_sym_EQ] = ACTIONS(12491), + [sym_word] = ACTIONS(12491), + [sym_param] = ACTIONS(12491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12491), + [anon_sym_DOLLAR] = ACTIONS(12493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12491), + [anon_sym_BSLASHbegin] = ACTIONS(12493), + [anon_sym_BSLASHcaption] = ACTIONS(12493), + [anon_sym_BSLASHcite] = ACTIONS(12493), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCite] = ACTIONS(12493), + [anon_sym_BSLASHnocite] = ACTIONS(12493), + [anon_sym_BSLASHcitet] = ACTIONS(12493), + [anon_sym_BSLASHcitep] = ACTIONS(12493), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteauthor] = ACTIONS(12493), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12493), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitetitle] = ACTIONS(12493), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteyear] = ACTIONS(12493), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitedate] = ACTIONS(12493), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteurl] = ACTIONS(12493), + [anon_sym_BSLASHfullcite] = ACTIONS(12493), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12493), + [anon_sym_BSLASHcitealt] = ACTIONS(12493), + [anon_sym_BSLASHcitealp] = ACTIONS(12493), + [anon_sym_BSLASHcitetext] = ACTIONS(12493), + [anon_sym_BSLASHparencite] = ACTIONS(12493), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHParencite] = ACTIONS(12493), + [anon_sym_BSLASHfootcite] = ACTIONS(12493), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12493), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12493), + [anon_sym_BSLASHtextcite] = ACTIONS(12493), + [anon_sym_BSLASHTextcite] = ACTIONS(12493), + [anon_sym_BSLASHsmartcite] = ACTIONS(12493), + [anon_sym_BSLASHSmartcite] = ACTIONS(12493), + [anon_sym_BSLASHsupercite] = ACTIONS(12493), + [anon_sym_BSLASHautocite] = ACTIONS(12493), + [anon_sym_BSLASHAutocite] = ACTIONS(12493), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHvolcite] = ACTIONS(12493), + [anon_sym_BSLASHVolcite] = ACTIONS(12493), + [anon_sym_BSLASHpvolcite] = ACTIONS(12493), + [anon_sym_BSLASHPvolcite] = ACTIONS(12493), + [anon_sym_BSLASHfvolcite] = ACTIONS(12493), + [anon_sym_BSLASHftvolcite] = ACTIONS(12493), + [anon_sym_BSLASHsvolcite] = ACTIONS(12493), + [anon_sym_BSLASHSvolcite] = ACTIONS(12493), + [anon_sym_BSLASHtvolcite] = ACTIONS(12493), + [anon_sym_BSLASHTvolcite] = ACTIONS(12493), + [anon_sym_BSLASHavolcite] = ACTIONS(12493), + [anon_sym_BSLASHAvolcite] = ACTIONS(12493), + [anon_sym_BSLASHnotecite] = ACTIONS(12493), + [anon_sym_BSLASHpnotecite] = ACTIONS(12493), + [anon_sym_BSLASHPnotecite] = ACTIONS(12493), + [anon_sym_BSLASHfnotecite] = ACTIONS(12493), + [anon_sym_BSLASHusepackage] = ACTIONS(12493), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12493), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12493), + [anon_sym_BSLASHinclude] = ACTIONS(12493), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12493), + [anon_sym_BSLASHinput] = ACTIONS(12493), + [anon_sym_BSLASHsubfile] = ACTIONS(12493), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12493), + [anon_sym_BSLASHbibliography] = ACTIONS(12493), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12493), + [anon_sym_BSLASHincludesvg] = ACTIONS(12493), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12493), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12493), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12493), + [anon_sym_BSLASHimport] = ACTIONS(12493), + [anon_sym_BSLASHsubimport] = ACTIONS(12493), + [anon_sym_BSLASHinputfrom] = ACTIONS(12493), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12493), + [anon_sym_BSLASHincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHlabel] = ACTIONS(12493), + [anon_sym_BSLASHref] = ACTIONS(12493), + [anon_sym_BSLASHvref] = ACTIONS(12493), + [anon_sym_BSLASHVref] = ACTIONS(12493), + [anon_sym_BSLASHautoref] = ACTIONS(12493), + [anon_sym_BSLASHpageref] = ACTIONS(12493), + [anon_sym_BSLASHcref] = ACTIONS(12493), + [anon_sym_BSLASHCref] = ACTIONS(12493), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnameCref] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHlabelcref] = ACTIONS(12493), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12493), + [anon_sym_BSLASHeqref] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange] = ACTIONS(12493), + [anon_sym_BSLASHCrefrange] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewlabel] = ACTIONS(12493), + [anon_sym_BSLASHnewcommand] = ACTIONS(12493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12493), + [anon_sym_BSLASHgls] = ACTIONS(12493), + [anon_sym_BSLASHGls] = ACTIONS(12493), + [anon_sym_BSLASHGLS] = ACTIONS(12493), + [anon_sym_BSLASHglspl] = ACTIONS(12493), + [anon_sym_BSLASHGlspl] = ACTIONS(12493), + [anon_sym_BSLASHGLSpl] = ACTIONS(12493), + [anon_sym_BSLASHglsdisp] = ACTIONS(12493), + [anon_sym_BSLASHglslink] = ACTIONS(12493), + [anon_sym_BSLASHglstext] = ACTIONS(12493), + [anon_sym_BSLASHGlstext] = ACTIONS(12493), + [anon_sym_BSLASHGLStext] = ACTIONS(12493), + [anon_sym_BSLASHglsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12493), + [anon_sym_BSLASHglsplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSplural] = ACTIONS(12493), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHglsname] = ACTIONS(12493), + [anon_sym_BSLASHGlsname] = ACTIONS(12493), + [anon_sym_BSLASHGLSname] = ACTIONS(12493), + [anon_sym_BSLASHglssymbol] = ACTIONS(12493), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12493), + [anon_sym_BSLASHglsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12493), + [anon_sym_BSLASHglsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12493), + [anon_sym_BSLASHglsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12493), + [anon_sym_BSLASHglsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12493), + [anon_sym_BSLASHglsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12493), + [anon_sym_BSLASHnewacronym] = ACTIONS(12493), + [anon_sym_BSLASHacrshort] = ACTIONS(12493), + [anon_sym_BSLASHAcrshort] = ACTIONS(12493), + [anon_sym_BSLASHACRshort] = ACTIONS(12493), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12493), + [anon_sym_BSLASHacrlong] = ACTIONS(12493), + [anon_sym_BSLASHAcrlong] = ACTIONS(12493), + [anon_sym_BSLASHACRlong] = ACTIONS(12493), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12493), + [anon_sym_BSLASHacrfull] = ACTIONS(12493), + [anon_sym_BSLASHAcrfull] = ACTIONS(12493), + [anon_sym_BSLASHACRfull] = ACTIONS(12493), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12493), + [anon_sym_BSLASHacs] = ACTIONS(12493), + [anon_sym_BSLASHAcs] = ACTIONS(12493), + [anon_sym_BSLASHacsp] = ACTIONS(12493), + [anon_sym_BSLASHAcsp] = ACTIONS(12493), + [anon_sym_BSLASHacl] = ACTIONS(12493), + [anon_sym_BSLASHAcl] = ACTIONS(12493), + [anon_sym_BSLASHaclp] = ACTIONS(12493), + [anon_sym_BSLASHAclp] = ACTIONS(12493), + [anon_sym_BSLASHacf] = ACTIONS(12493), + [anon_sym_BSLASHAcf] = ACTIONS(12493), + [anon_sym_BSLASHacfp] = ACTIONS(12493), + [anon_sym_BSLASHAcfp] = ACTIONS(12493), + [anon_sym_BSLASHac] = ACTIONS(12493), + [anon_sym_BSLASHAc] = ACTIONS(12493), + [anon_sym_BSLASHacp] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12493), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12493), + [anon_sym_BSLASHcolor] = ACTIONS(12493), + [anon_sym_BSLASHcolorbox] = ACTIONS(12493), + [anon_sym_BSLASHtextcolor] = ACTIONS(12493), + [anon_sym_BSLASHpagecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12493), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12493), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12493), + }, + [1128] = { + [sym_generic_command_name] = ACTIONS(12481), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12481), + [aux_sym_section_token1] = ACTIONS(12481), + [aux_sym_subsection_token1] = ACTIONS(12481), + [aux_sym_subsubsection_token1] = ACTIONS(12481), + [aux_sym_paragraph_token1] = ACTIONS(12481), + [aux_sym_subparagraph_token1] = ACTIONS(12481), + [anon_sym_BSLASHitem] = ACTIONS(12481), + [anon_sym_LBRACK] = ACTIONS(12479), + [anon_sym_RBRACK] = ACTIONS(12479), + [anon_sym_LBRACE] = ACTIONS(12479), + [anon_sym_RBRACE] = ACTIONS(12479), + [anon_sym_LPAREN] = ACTIONS(12479), + [anon_sym_COMMA] = ACTIONS(12479), + [anon_sym_EQ] = ACTIONS(12479), + [sym_word] = ACTIONS(12479), + [sym_param] = ACTIONS(12479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12479), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12479), + [anon_sym_DOLLAR] = ACTIONS(12481), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12479), + [anon_sym_BSLASHbegin] = ACTIONS(12481), + [anon_sym_BSLASHcaption] = ACTIONS(12481), + [anon_sym_BSLASHcite] = ACTIONS(12481), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCite] = ACTIONS(12481), + [anon_sym_BSLASHnocite] = ACTIONS(12481), + [anon_sym_BSLASHcitet] = ACTIONS(12481), + [anon_sym_BSLASHcitep] = ACTIONS(12481), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteauthor] = ACTIONS(12481), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12481), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitetitle] = ACTIONS(12481), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteyear] = ACTIONS(12481), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitedate] = ACTIONS(12481), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteurl] = ACTIONS(12481), + [anon_sym_BSLASHfullcite] = ACTIONS(12481), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12481), + [anon_sym_BSLASHcitealt] = ACTIONS(12481), + [anon_sym_BSLASHcitealp] = ACTIONS(12481), + [anon_sym_BSLASHcitetext] = ACTIONS(12481), + [anon_sym_BSLASHparencite] = ACTIONS(12481), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHParencite] = ACTIONS(12481), + [anon_sym_BSLASHfootcite] = ACTIONS(12481), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12481), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12481), + [anon_sym_BSLASHtextcite] = ACTIONS(12481), + [anon_sym_BSLASHTextcite] = ACTIONS(12481), + [anon_sym_BSLASHsmartcite] = ACTIONS(12481), + [anon_sym_BSLASHSmartcite] = ACTIONS(12481), + [anon_sym_BSLASHsupercite] = ACTIONS(12481), + [anon_sym_BSLASHautocite] = ACTIONS(12481), + [anon_sym_BSLASHAutocite] = ACTIONS(12481), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHvolcite] = ACTIONS(12481), + [anon_sym_BSLASHVolcite] = ACTIONS(12481), + [anon_sym_BSLASHpvolcite] = ACTIONS(12481), + [anon_sym_BSLASHPvolcite] = ACTIONS(12481), + [anon_sym_BSLASHfvolcite] = ACTIONS(12481), + [anon_sym_BSLASHftvolcite] = ACTIONS(12481), + [anon_sym_BSLASHsvolcite] = ACTIONS(12481), + [anon_sym_BSLASHSvolcite] = ACTIONS(12481), + [anon_sym_BSLASHtvolcite] = ACTIONS(12481), + [anon_sym_BSLASHTvolcite] = ACTIONS(12481), + [anon_sym_BSLASHavolcite] = ACTIONS(12481), + [anon_sym_BSLASHAvolcite] = ACTIONS(12481), + [anon_sym_BSLASHnotecite] = ACTIONS(12481), + [anon_sym_BSLASHpnotecite] = ACTIONS(12481), + [anon_sym_BSLASHPnotecite] = ACTIONS(12481), + [anon_sym_BSLASHfnotecite] = ACTIONS(12481), + [anon_sym_BSLASHusepackage] = ACTIONS(12481), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12481), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12481), + [anon_sym_BSLASHinclude] = ACTIONS(12481), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12481), + [anon_sym_BSLASHinput] = ACTIONS(12481), + [anon_sym_BSLASHsubfile] = ACTIONS(12481), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12481), + [anon_sym_BSLASHbibliography] = ACTIONS(12481), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12481), + [anon_sym_BSLASHincludesvg] = ACTIONS(12481), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12481), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12481), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12481), + [anon_sym_BSLASHimport] = ACTIONS(12481), + [anon_sym_BSLASHsubimport] = ACTIONS(12481), + [anon_sym_BSLASHinputfrom] = ACTIONS(12481), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12481), + [anon_sym_BSLASHincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHlabel] = ACTIONS(12481), + [anon_sym_BSLASHref] = ACTIONS(12481), + [anon_sym_BSLASHvref] = ACTIONS(12481), + [anon_sym_BSLASHVref] = ACTIONS(12481), + [anon_sym_BSLASHautoref] = ACTIONS(12481), + [anon_sym_BSLASHpageref] = ACTIONS(12481), + [anon_sym_BSLASHcref] = ACTIONS(12481), + [anon_sym_BSLASHCref] = ACTIONS(12481), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnameCref] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHlabelcref] = ACTIONS(12481), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12481), + [anon_sym_BSLASHeqref] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange] = ACTIONS(12481), + [anon_sym_BSLASHCrefrange] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewlabel] = ACTIONS(12481), + [anon_sym_BSLASHnewcommand] = ACTIONS(12481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12481), + [anon_sym_BSLASHgls] = ACTIONS(12481), + [anon_sym_BSLASHGls] = ACTIONS(12481), + [anon_sym_BSLASHGLS] = ACTIONS(12481), + [anon_sym_BSLASHglspl] = ACTIONS(12481), + [anon_sym_BSLASHGlspl] = ACTIONS(12481), + [anon_sym_BSLASHGLSpl] = ACTIONS(12481), + [anon_sym_BSLASHglsdisp] = ACTIONS(12481), + [anon_sym_BSLASHglslink] = ACTIONS(12481), + [anon_sym_BSLASHglstext] = ACTIONS(12481), + [anon_sym_BSLASHGlstext] = ACTIONS(12481), + [anon_sym_BSLASHGLStext] = ACTIONS(12481), + [anon_sym_BSLASHglsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12481), + [anon_sym_BSLASHglsplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSplural] = ACTIONS(12481), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHglsname] = ACTIONS(12481), + [anon_sym_BSLASHGlsname] = ACTIONS(12481), + [anon_sym_BSLASHGLSname] = ACTIONS(12481), + [anon_sym_BSLASHglssymbol] = ACTIONS(12481), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12481), + [anon_sym_BSLASHglsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12481), + [anon_sym_BSLASHglsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12481), + [anon_sym_BSLASHglsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12481), + [anon_sym_BSLASHglsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12481), + [anon_sym_BSLASHglsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12481), + [anon_sym_BSLASHnewacronym] = ACTIONS(12481), + [anon_sym_BSLASHacrshort] = ACTIONS(12481), + [anon_sym_BSLASHAcrshort] = ACTIONS(12481), + [anon_sym_BSLASHACRshort] = ACTIONS(12481), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12481), + [anon_sym_BSLASHacrlong] = ACTIONS(12481), + [anon_sym_BSLASHAcrlong] = ACTIONS(12481), + [anon_sym_BSLASHACRlong] = ACTIONS(12481), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12481), + [anon_sym_BSLASHacrfull] = ACTIONS(12481), + [anon_sym_BSLASHAcrfull] = ACTIONS(12481), + [anon_sym_BSLASHACRfull] = ACTIONS(12481), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12481), + [anon_sym_BSLASHacs] = ACTIONS(12481), + [anon_sym_BSLASHAcs] = ACTIONS(12481), + [anon_sym_BSLASHacsp] = ACTIONS(12481), + [anon_sym_BSLASHAcsp] = ACTIONS(12481), + [anon_sym_BSLASHacl] = ACTIONS(12481), + [anon_sym_BSLASHAcl] = ACTIONS(12481), + [anon_sym_BSLASHaclp] = ACTIONS(12481), + [anon_sym_BSLASHAclp] = ACTIONS(12481), + [anon_sym_BSLASHacf] = ACTIONS(12481), + [anon_sym_BSLASHAcf] = ACTIONS(12481), + [anon_sym_BSLASHacfp] = ACTIONS(12481), + [anon_sym_BSLASHAcfp] = ACTIONS(12481), + [anon_sym_BSLASHac] = ACTIONS(12481), + [anon_sym_BSLASHAc] = ACTIONS(12481), + [anon_sym_BSLASHacp] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12481), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12481), + [anon_sym_BSLASHcolor] = ACTIONS(12481), + [anon_sym_BSLASHcolorbox] = ACTIONS(12481), + [anon_sym_BSLASHtextcolor] = ACTIONS(12481), + [anon_sym_BSLASHpagecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12481), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12481), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12481), + }, + [1129] = { + [sym_generic_command_name] = ACTIONS(12477), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12477), + [aux_sym_section_token1] = ACTIONS(12477), + [aux_sym_subsection_token1] = ACTIONS(12477), + [aux_sym_subsubsection_token1] = ACTIONS(12477), + [aux_sym_paragraph_token1] = ACTIONS(12477), + [aux_sym_subparagraph_token1] = ACTIONS(12477), + [anon_sym_BSLASHitem] = ACTIONS(12477), + [anon_sym_LBRACK] = ACTIONS(12475), + [anon_sym_RBRACK] = ACTIONS(12475), + [anon_sym_LBRACE] = ACTIONS(12475), + [anon_sym_RBRACE] = ACTIONS(12475), + [anon_sym_LPAREN] = ACTIONS(12475), + [anon_sym_COMMA] = ACTIONS(12475), + [anon_sym_EQ] = ACTIONS(12475), + [sym_word] = ACTIONS(12475), + [sym_param] = ACTIONS(12475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12475), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12475), + [anon_sym_DOLLAR] = ACTIONS(12477), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12475), + [anon_sym_BSLASHbegin] = ACTIONS(12477), + [anon_sym_BSLASHcaption] = ACTIONS(12477), + [anon_sym_BSLASHcite] = ACTIONS(12477), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCite] = ACTIONS(12477), + [anon_sym_BSLASHnocite] = ACTIONS(12477), + [anon_sym_BSLASHcitet] = ACTIONS(12477), + [anon_sym_BSLASHcitep] = ACTIONS(12477), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteauthor] = ACTIONS(12477), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12477), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitetitle] = ACTIONS(12477), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteyear] = ACTIONS(12477), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitedate] = ACTIONS(12477), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteurl] = ACTIONS(12477), + [anon_sym_BSLASHfullcite] = ACTIONS(12477), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12477), + [anon_sym_BSLASHcitealt] = ACTIONS(12477), + [anon_sym_BSLASHcitealp] = ACTIONS(12477), + [anon_sym_BSLASHcitetext] = ACTIONS(12477), + [anon_sym_BSLASHparencite] = ACTIONS(12477), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHParencite] = ACTIONS(12477), + [anon_sym_BSLASHfootcite] = ACTIONS(12477), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12477), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12477), + [anon_sym_BSLASHtextcite] = ACTIONS(12477), + [anon_sym_BSLASHTextcite] = ACTIONS(12477), + [anon_sym_BSLASHsmartcite] = ACTIONS(12477), + [anon_sym_BSLASHSmartcite] = ACTIONS(12477), + [anon_sym_BSLASHsupercite] = ACTIONS(12477), + [anon_sym_BSLASHautocite] = ACTIONS(12477), + [anon_sym_BSLASHAutocite] = ACTIONS(12477), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHvolcite] = ACTIONS(12477), + [anon_sym_BSLASHVolcite] = ACTIONS(12477), + [anon_sym_BSLASHpvolcite] = ACTIONS(12477), + [anon_sym_BSLASHPvolcite] = ACTIONS(12477), + [anon_sym_BSLASHfvolcite] = ACTIONS(12477), + [anon_sym_BSLASHftvolcite] = ACTIONS(12477), + [anon_sym_BSLASHsvolcite] = ACTIONS(12477), + [anon_sym_BSLASHSvolcite] = ACTIONS(12477), + [anon_sym_BSLASHtvolcite] = ACTIONS(12477), + [anon_sym_BSLASHTvolcite] = ACTIONS(12477), + [anon_sym_BSLASHavolcite] = ACTIONS(12477), + [anon_sym_BSLASHAvolcite] = ACTIONS(12477), + [anon_sym_BSLASHnotecite] = ACTIONS(12477), + [anon_sym_BSLASHpnotecite] = ACTIONS(12477), + [anon_sym_BSLASHPnotecite] = ACTIONS(12477), + [anon_sym_BSLASHfnotecite] = ACTIONS(12477), + [anon_sym_BSLASHusepackage] = ACTIONS(12477), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12477), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12477), + [anon_sym_BSLASHinclude] = ACTIONS(12477), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12477), + [anon_sym_BSLASHinput] = ACTIONS(12477), + [anon_sym_BSLASHsubfile] = ACTIONS(12477), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12477), + [anon_sym_BSLASHbibliography] = ACTIONS(12477), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12477), + [anon_sym_BSLASHincludesvg] = ACTIONS(12477), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12477), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12477), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12477), + [anon_sym_BSLASHimport] = ACTIONS(12477), + [anon_sym_BSLASHsubimport] = ACTIONS(12477), + [anon_sym_BSLASHinputfrom] = ACTIONS(12477), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12477), + [anon_sym_BSLASHincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHlabel] = ACTIONS(12477), + [anon_sym_BSLASHref] = ACTIONS(12477), + [anon_sym_BSLASHvref] = ACTIONS(12477), + [anon_sym_BSLASHVref] = ACTIONS(12477), + [anon_sym_BSLASHautoref] = ACTIONS(12477), + [anon_sym_BSLASHpageref] = ACTIONS(12477), + [anon_sym_BSLASHcref] = ACTIONS(12477), + [anon_sym_BSLASHCref] = ACTIONS(12477), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnameCref] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHlabelcref] = ACTIONS(12477), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12477), + [anon_sym_BSLASHeqref] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange] = ACTIONS(12477), + [anon_sym_BSLASHCrefrange] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewlabel] = ACTIONS(12477), + [anon_sym_BSLASHnewcommand] = ACTIONS(12477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12477), + [anon_sym_BSLASHgls] = ACTIONS(12477), + [anon_sym_BSLASHGls] = ACTIONS(12477), + [anon_sym_BSLASHGLS] = ACTIONS(12477), + [anon_sym_BSLASHglspl] = ACTIONS(12477), + [anon_sym_BSLASHGlspl] = ACTIONS(12477), + [anon_sym_BSLASHGLSpl] = ACTIONS(12477), + [anon_sym_BSLASHglsdisp] = ACTIONS(12477), + [anon_sym_BSLASHglslink] = ACTIONS(12477), + [anon_sym_BSLASHglstext] = ACTIONS(12477), + [anon_sym_BSLASHGlstext] = ACTIONS(12477), + [anon_sym_BSLASHGLStext] = ACTIONS(12477), + [anon_sym_BSLASHglsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12477), + [anon_sym_BSLASHglsplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSplural] = ACTIONS(12477), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHglsname] = ACTIONS(12477), + [anon_sym_BSLASHGlsname] = ACTIONS(12477), + [anon_sym_BSLASHGLSname] = ACTIONS(12477), + [anon_sym_BSLASHglssymbol] = ACTIONS(12477), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12477), + [anon_sym_BSLASHglsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12477), + [anon_sym_BSLASHglsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12477), + [anon_sym_BSLASHglsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12477), + [anon_sym_BSLASHglsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12477), + [anon_sym_BSLASHglsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12477), + [anon_sym_BSLASHnewacronym] = ACTIONS(12477), + [anon_sym_BSLASHacrshort] = ACTIONS(12477), + [anon_sym_BSLASHAcrshort] = ACTIONS(12477), + [anon_sym_BSLASHACRshort] = ACTIONS(12477), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12477), + [anon_sym_BSLASHacrlong] = ACTIONS(12477), + [anon_sym_BSLASHAcrlong] = ACTIONS(12477), + [anon_sym_BSLASHACRlong] = ACTIONS(12477), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12477), + [anon_sym_BSLASHacrfull] = ACTIONS(12477), + [anon_sym_BSLASHAcrfull] = ACTIONS(12477), + [anon_sym_BSLASHACRfull] = ACTIONS(12477), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12477), + [anon_sym_BSLASHacs] = ACTIONS(12477), + [anon_sym_BSLASHAcs] = ACTIONS(12477), + [anon_sym_BSLASHacsp] = ACTIONS(12477), + [anon_sym_BSLASHAcsp] = ACTIONS(12477), + [anon_sym_BSLASHacl] = ACTIONS(12477), + [anon_sym_BSLASHAcl] = ACTIONS(12477), + [anon_sym_BSLASHaclp] = ACTIONS(12477), + [anon_sym_BSLASHAclp] = ACTIONS(12477), + [anon_sym_BSLASHacf] = ACTIONS(12477), + [anon_sym_BSLASHAcf] = ACTIONS(12477), + [anon_sym_BSLASHacfp] = ACTIONS(12477), + [anon_sym_BSLASHAcfp] = ACTIONS(12477), + [anon_sym_BSLASHac] = ACTIONS(12477), + [anon_sym_BSLASHAc] = ACTIONS(12477), + [anon_sym_BSLASHacp] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12477), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12477), + [anon_sym_BSLASHcolor] = ACTIONS(12477), + [anon_sym_BSLASHcolorbox] = ACTIONS(12477), + [anon_sym_BSLASHtextcolor] = ACTIONS(12477), + [anon_sym_BSLASHpagecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12477), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12477), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12477), + }, + [1130] = { + [sym_generic_command_name] = ACTIONS(12489), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_part_token1] = ACTIONS(12489), + [aux_sym_chapter_token1] = ACTIONS(12489), + [aux_sym_section_token1] = ACTIONS(12489), + [aux_sym_subsection_token1] = ACTIONS(12489), + [aux_sym_subsubsection_token1] = ACTIONS(12489), + [aux_sym_paragraph_token1] = ACTIONS(12489), + [aux_sym_subparagraph_token1] = ACTIONS(12489), + [anon_sym_BSLASHitem] = ACTIONS(12489), + [anon_sym_LBRACK] = ACTIONS(12487), + [anon_sym_LBRACE] = ACTIONS(12487), + [anon_sym_LPAREN] = ACTIONS(12487), + [anon_sym_COMMA] = ACTIONS(12487), + [anon_sym_EQ] = ACTIONS(12487), + [sym_word] = ACTIONS(12487), + [sym_param] = ACTIONS(12487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12487), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12487), + [anon_sym_BSLASH_RBRACK] = ACTIONS(12487), + [anon_sym_DOLLAR] = ACTIONS(12489), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12487), + [anon_sym_BSLASHbegin] = ACTIONS(12489), + [anon_sym_BSLASHcaption] = ACTIONS(12489), + [anon_sym_BSLASHcite] = ACTIONS(12489), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCite] = ACTIONS(12489), + [anon_sym_BSLASHnocite] = ACTIONS(12489), + [anon_sym_BSLASHcitet] = ACTIONS(12489), + [anon_sym_BSLASHcitep] = ACTIONS(12489), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteauthor] = ACTIONS(12489), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12489), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitetitle] = ACTIONS(12489), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteyear] = ACTIONS(12489), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitedate] = ACTIONS(12489), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteurl] = ACTIONS(12489), + [anon_sym_BSLASHfullcite] = ACTIONS(12489), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12489), + [anon_sym_BSLASHcitealt] = ACTIONS(12489), + [anon_sym_BSLASHcitealp] = ACTIONS(12489), + [anon_sym_BSLASHcitetext] = ACTIONS(12489), + [anon_sym_BSLASHparencite] = ACTIONS(12489), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHParencite] = ACTIONS(12489), + [anon_sym_BSLASHfootcite] = ACTIONS(12489), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12489), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12489), + [anon_sym_BSLASHtextcite] = ACTIONS(12489), + [anon_sym_BSLASHTextcite] = ACTIONS(12489), + [anon_sym_BSLASHsmartcite] = ACTIONS(12489), + [anon_sym_BSLASHSmartcite] = ACTIONS(12489), + [anon_sym_BSLASHsupercite] = ACTIONS(12489), + [anon_sym_BSLASHautocite] = ACTIONS(12489), + [anon_sym_BSLASHAutocite] = ACTIONS(12489), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHvolcite] = ACTIONS(12489), + [anon_sym_BSLASHVolcite] = ACTIONS(12489), + [anon_sym_BSLASHpvolcite] = ACTIONS(12489), + [anon_sym_BSLASHPvolcite] = ACTIONS(12489), + [anon_sym_BSLASHfvolcite] = ACTIONS(12489), + [anon_sym_BSLASHftvolcite] = ACTIONS(12489), + [anon_sym_BSLASHsvolcite] = ACTIONS(12489), + [anon_sym_BSLASHSvolcite] = ACTIONS(12489), + [anon_sym_BSLASHtvolcite] = ACTIONS(12489), + [anon_sym_BSLASHTvolcite] = ACTIONS(12489), + [anon_sym_BSLASHavolcite] = ACTIONS(12489), + [anon_sym_BSLASHAvolcite] = ACTIONS(12489), + [anon_sym_BSLASHnotecite] = ACTIONS(12489), + [anon_sym_BSLASHpnotecite] = ACTIONS(12489), + [anon_sym_BSLASHPnotecite] = ACTIONS(12489), + [anon_sym_BSLASHfnotecite] = ACTIONS(12489), + [anon_sym_BSLASHusepackage] = ACTIONS(12489), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12489), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12489), + [anon_sym_BSLASHinclude] = ACTIONS(12489), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12489), + [anon_sym_BSLASHinput] = ACTIONS(12489), + [anon_sym_BSLASHsubfile] = ACTIONS(12489), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12489), + [anon_sym_BSLASHbibliography] = ACTIONS(12489), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12489), + [anon_sym_BSLASHincludesvg] = ACTIONS(12489), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12489), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12489), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12489), + [anon_sym_BSLASHimport] = ACTIONS(12489), + [anon_sym_BSLASHsubimport] = ACTIONS(12489), + [anon_sym_BSLASHinputfrom] = ACTIONS(12489), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12489), + [anon_sym_BSLASHincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHlabel] = ACTIONS(12489), + [anon_sym_BSLASHref] = ACTIONS(12489), + [anon_sym_BSLASHvref] = ACTIONS(12489), + [anon_sym_BSLASHVref] = ACTIONS(12489), + [anon_sym_BSLASHautoref] = ACTIONS(12489), + [anon_sym_BSLASHpageref] = ACTIONS(12489), + [anon_sym_BSLASHcref] = ACTIONS(12489), + [anon_sym_BSLASHCref] = ACTIONS(12489), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnameCref] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHlabelcref] = ACTIONS(12489), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12489), + [anon_sym_BSLASHeqref] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange] = ACTIONS(12489), + [anon_sym_BSLASHCrefrange] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewlabel] = ACTIONS(12489), + [anon_sym_BSLASHnewcommand] = ACTIONS(12489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12489), + [anon_sym_BSLASHgls] = ACTIONS(12489), + [anon_sym_BSLASHGls] = ACTIONS(12489), + [anon_sym_BSLASHGLS] = ACTIONS(12489), + [anon_sym_BSLASHglspl] = ACTIONS(12489), + [anon_sym_BSLASHGlspl] = ACTIONS(12489), + [anon_sym_BSLASHGLSpl] = ACTIONS(12489), + [anon_sym_BSLASHglsdisp] = ACTIONS(12489), + [anon_sym_BSLASHglslink] = ACTIONS(12489), + [anon_sym_BSLASHglstext] = ACTIONS(12489), + [anon_sym_BSLASHGlstext] = ACTIONS(12489), + [anon_sym_BSLASHGLStext] = ACTIONS(12489), + [anon_sym_BSLASHglsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12489), + [anon_sym_BSLASHglsplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSplural] = ACTIONS(12489), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHglsname] = ACTIONS(12489), + [anon_sym_BSLASHGlsname] = ACTIONS(12489), + [anon_sym_BSLASHGLSname] = ACTIONS(12489), + [anon_sym_BSLASHglssymbol] = ACTIONS(12489), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12489), + [anon_sym_BSLASHglsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12489), + [anon_sym_BSLASHglsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12489), + [anon_sym_BSLASHglsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12489), + [anon_sym_BSLASHglsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12489), + [anon_sym_BSLASHglsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12489), + [anon_sym_BSLASHnewacronym] = ACTIONS(12489), + [anon_sym_BSLASHacrshort] = ACTIONS(12489), + [anon_sym_BSLASHAcrshort] = ACTIONS(12489), + [anon_sym_BSLASHACRshort] = ACTIONS(12489), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12489), + [anon_sym_BSLASHacrlong] = ACTIONS(12489), + [anon_sym_BSLASHAcrlong] = ACTIONS(12489), + [anon_sym_BSLASHACRlong] = ACTIONS(12489), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12489), + [anon_sym_BSLASHacrfull] = ACTIONS(12489), + [anon_sym_BSLASHAcrfull] = ACTIONS(12489), + [anon_sym_BSLASHACRfull] = ACTIONS(12489), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12489), + [anon_sym_BSLASHacs] = ACTIONS(12489), + [anon_sym_BSLASHAcs] = ACTIONS(12489), + [anon_sym_BSLASHacsp] = ACTIONS(12489), + [anon_sym_BSLASHAcsp] = ACTIONS(12489), + [anon_sym_BSLASHacl] = ACTIONS(12489), + [anon_sym_BSLASHAcl] = ACTIONS(12489), + [anon_sym_BSLASHaclp] = ACTIONS(12489), + [anon_sym_BSLASHAclp] = ACTIONS(12489), + [anon_sym_BSLASHacf] = ACTIONS(12489), + [anon_sym_BSLASHAcf] = ACTIONS(12489), + [anon_sym_BSLASHacfp] = ACTIONS(12489), + [anon_sym_BSLASHAcfp] = ACTIONS(12489), + [anon_sym_BSLASHac] = ACTIONS(12489), + [anon_sym_BSLASHAc] = ACTIONS(12489), + [anon_sym_BSLASHacp] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12489), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12489), + [anon_sym_BSLASHcolor] = ACTIONS(12489), + [anon_sym_BSLASHcolorbox] = ACTIONS(12489), + [anon_sym_BSLASHtextcolor] = ACTIONS(12489), + [anon_sym_BSLASHpagecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12489), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12489), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12489), + }, + [1131] = { + [sym_generic_command_name] = ACTIONS(12469), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12469), + [aux_sym_section_token1] = ACTIONS(12469), + [aux_sym_subsection_token1] = ACTIONS(12469), + [aux_sym_subsubsection_token1] = ACTIONS(12469), + [aux_sym_paragraph_token1] = ACTIONS(12469), + [aux_sym_subparagraph_token1] = ACTIONS(12469), + [anon_sym_BSLASHitem] = ACTIONS(12469), + [anon_sym_LBRACK] = ACTIONS(12467), + [anon_sym_RBRACK] = ACTIONS(12467), + [anon_sym_LBRACE] = ACTIONS(12467), + [anon_sym_RBRACE] = ACTIONS(12467), + [anon_sym_LPAREN] = ACTIONS(12467), + [anon_sym_COMMA] = ACTIONS(12467), + [anon_sym_EQ] = ACTIONS(12467), + [sym_word] = ACTIONS(12467), + [sym_param] = ACTIONS(12467), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12467), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12467), + [anon_sym_DOLLAR] = ACTIONS(12469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12467), + [anon_sym_BSLASHbegin] = ACTIONS(12469), + [anon_sym_BSLASHcaption] = ACTIONS(12469), + [anon_sym_BSLASHcite] = ACTIONS(12469), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCite] = ACTIONS(12469), + [anon_sym_BSLASHnocite] = ACTIONS(12469), + [anon_sym_BSLASHcitet] = ACTIONS(12469), + [anon_sym_BSLASHcitep] = ACTIONS(12469), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteauthor] = ACTIONS(12469), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12469), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitetitle] = ACTIONS(12469), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteyear] = ACTIONS(12469), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitedate] = ACTIONS(12469), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteurl] = ACTIONS(12469), + [anon_sym_BSLASHfullcite] = ACTIONS(12469), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12469), + [anon_sym_BSLASHcitealt] = ACTIONS(12469), + [anon_sym_BSLASHcitealp] = ACTIONS(12469), + [anon_sym_BSLASHcitetext] = ACTIONS(12469), + [anon_sym_BSLASHparencite] = ACTIONS(12469), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHParencite] = ACTIONS(12469), + [anon_sym_BSLASHfootcite] = ACTIONS(12469), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12469), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12469), + [anon_sym_BSLASHtextcite] = ACTIONS(12469), + [anon_sym_BSLASHTextcite] = ACTIONS(12469), + [anon_sym_BSLASHsmartcite] = ACTIONS(12469), + [anon_sym_BSLASHSmartcite] = ACTIONS(12469), + [anon_sym_BSLASHsupercite] = ACTIONS(12469), + [anon_sym_BSLASHautocite] = ACTIONS(12469), + [anon_sym_BSLASHAutocite] = ACTIONS(12469), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHvolcite] = ACTIONS(12469), + [anon_sym_BSLASHVolcite] = ACTIONS(12469), + [anon_sym_BSLASHpvolcite] = ACTIONS(12469), + [anon_sym_BSLASHPvolcite] = ACTIONS(12469), + [anon_sym_BSLASHfvolcite] = ACTIONS(12469), + [anon_sym_BSLASHftvolcite] = ACTIONS(12469), + [anon_sym_BSLASHsvolcite] = ACTIONS(12469), + [anon_sym_BSLASHSvolcite] = ACTIONS(12469), + [anon_sym_BSLASHtvolcite] = ACTIONS(12469), + [anon_sym_BSLASHTvolcite] = ACTIONS(12469), + [anon_sym_BSLASHavolcite] = ACTIONS(12469), + [anon_sym_BSLASHAvolcite] = ACTIONS(12469), + [anon_sym_BSLASHnotecite] = ACTIONS(12469), + [anon_sym_BSLASHpnotecite] = ACTIONS(12469), + [anon_sym_BSLASHPnotecite] = ACTIONS(12469), + [anon_sym_BSLASHfnotecite] = ACTIONS(12469), + [anon_sym_BSLASHusepackage] = ACTIONS(12469), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12469), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12469), + [anon_sym_BSLASHinclude] = ACTIONS(12469), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12469), + [anon_sym_BSLASHinput] = ACTIONS(12469), + [anon_sym_BSLASHsubfile] = ACTIONS(12469), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12469), + [anon_sym_BSLASHbibliography] = ACTIONS(12469), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12469), + [anon_sym_BSLASHincludesvg] = ACTIONS(12469), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12469), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12469), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12469), + [anon_sym_BSLASHimport] = ACTIONS(12469), + [anon_sym_BSLASHsubimport] = ACTIONS(12469), + [anon_sym_BSLASHinputfrom] = ACTIONS(12469), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12469), + [anon_sym_BSLASHincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHlabel] = ACTIONS(12469), + [anon_sym_BSLASHref] = ACTIONS(12469), + [anon_sym_BSLASHvref] = ACTIONS(12469), + [anon_sym_BSLASHVref] = ACTIONS(12469), + [anon_sym_BSLASHautoref] = ACTIONS(12469), + [anon_sym_BSLASHpageref] = ACTIONS(12469), + [anon_sym_BSLASHcref] = ACTIONS(12469), + [anon_sym_BSLASHCref] = ACTIONS(12469), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnameCref] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHlabelcref] = ACTIONS(12469), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12469), + [anon_sym_BSLASHeqref] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange] = ACTIONS(12469), + [anon_sym_BSLASHCrefrange] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewlabel] = ACTIONS(12469), + [anon_sym_BSLASHnewcommand] = ACTIONS(12469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12469), + [anon_sym_BSLASHgls] = ACTIONS(12469), + [anon_sym_BSLASHGls] = ACTIONS(12469), + [anon_sym_BSLASHGLS] = ACTIONS(12469), + [anon_sym_BSLASHglspl] = ACTIONS(12469), + [anon_sym_BSLASHGlspl] = ACTIONS(12469), + [anon_sym_BSLASHGLSpl] = ACTIONS(12469), + [anon_sym_BSLASHglsdisp] = ACTIONS(12469), + [anon_sym_BSLASHglslink] = ACTIONS(12469), + [anon_sym_BSLASHglstext] = ACTIONS(12469), + [anon_sym_BSLASHGlstext] = ACTIONS(12469), + [anon_sym_BSLASHGLStext] = ACTIONS(12469), + [anon_sym_BSLASHglsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12469), + [anon_sym_BSLASHglsplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSplural] = ACTIONS(12469), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHglsname] = ACTIONS(12469), + [anon_sym_BSLASHGlsname] = ACTIONS(12469), + [anon_sym_BSLASHGLSname] = ACTIONS(12469), + [anon_sym_BSLASHglssymbol] = ACTIONS(12469), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12469), + [anon_sym_BSLASHglsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12469), + [anon_sym_BSLASHglsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12469), + [anon_sym_BSLASHglsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12469), + [anon_sym_BSLASHglsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12469), + [anon_sym_BSLASHglsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12469), + [anon_sym_BSLASHnewacronym] = ACTIONS(12469), + [anon_sym_BSLASHacrshort] = ACTIONS(12469), + [anon_sym_BSLASHAcrshort] = ACTIONS(12469), + [anon_sym_BSLASHACRshort] = ACTIONS(12469), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12469), + [anon_sym_BSLASHacrlong] = ACTIONS(12469), + [anon_sym_BSLASHAcrlong] = ACTIONS(12469), + [anon_sym_BSLASHACRlong] = ACTIONS(12469), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12469), + [anon_sym_BSLASHacrfull] = ACTIONS(12469), + [anon_sym_BSLASHAcrfull] = ACTIONS(12469), + [anon_sym_BSLASHACRfull] = ACTIONS(12469), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12469), + [anon_sym_BSLASHacs] = ACTIONS(12469), + [anon_sym_BSLASHAcs] = ACTIONS(12469), + [anon_sym_BSLASHacsp] = ACTIONS(12469), + [anon_sym_BSLASHAcsp] = ACTIONS(12469), + [anon_sym_BSLASHacl] = ACTIONS(12469), + [anon_sym_BSLASHAcl] = ACTIONS(12469), + [anon_sym_BSLASHaclp] = ACTIONS(12469), + [anon_sym_BSLASHAclp] = ACTIONS(12469), + [anon_sym_BSLASHacf] = ACTIONS(12469), + [anon_sym_BSLASHAcf] = ACTIONS(12469), + [anon_sym_BSLASHacfp] = ACTIONS(12469), + [anon_sym_BSLASHAcfp] = ACTIONS(12469), + [anon_sym_BSLASHac] = ACTIONS(12469), + [anon_sym_BSLASHAc] = ACTIONS(12469), + [anon_sym_BSLASHacp] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12469), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12469), + [anon_sym_BSLASHcolor] = ACTIONS(12469), + [anon_sym_BSLASHcolorbox] = ACTIONS(12469), + [anon_sym_BSLASHtextcolor] = ACTIONS(12469), + [anon_sym_BSLASHpagecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12469), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12469), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12469), + }, + [1132] = { + [sym_generic_command_name] = ACTIONS(12465), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12465), + [aux_sym_section_token1] = ACTIONS(12465), + [aux_sym_subsection_token1] = ACTIONS(12465), + [aux_sym_subsubsection_token1] = ACTIONS(12465), + [aux_sym_paragraph_token1] = ACTIONS(12465), + [aux_sym_subparagraph_token1] = ACTIONS(12465), + [anon_sym_BSLASHitem] = ACTIONS(12465), + [anon_sym_LBRACK] = ACTIONS(12463), + [anon_sym_RBRACK] = ACTIONS(12463), + [anon_sym_LBRACE] = ACTIONS(12463), + [anon_sym_RBRACE] = ACTIONS(12463), + [anon_sym_LPAREN] = ACTIONS(12463), + [anon_sym_COMMA] = ACTIONS(12463), + [anon_sym_EQ] = ACTIONS(12463), + [sym_word] = ACTIONS(12463), + [sym_param] = ACTIONS(12463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12463), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12463), + [anon_sym_DOLLAR] = ACTIONS(12465), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12463), + [anon_sym_BSLASHbegin] = ACTIONS(12465), + [anon_sym_BSLASHcaption] = ACTIONS(12465), + [anon_sym_BSLASHcite] = ACTIONS(12465), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCite] = ACTIONS(12465), + [anon_sym_BSLASHnocite] = ACTIONS(12465), + [anon_sym_BSLASHcitet] = ACTIONS(12465), + [anon_sym_BSLASHcitep] = ACTIONS(12465), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteauthor] = ACTIONS(12465), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12465), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitetitle] = ACTIONS(12465), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteyear] = ACTIONS(12465), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitedate] = ACTIONS(12465), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteurl] = ACTIONS(12465), + [anon_sym_BSLASHfullcite] = ACTIONS(12465), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12465), + [anon_sym_BSLASHcitealt] = ACTIONS(12465), + [anon_sym_BSLASHcitealp] = ACTIONS(12465), + [anon_sym_BSLASHcitetext] = ACTIONS(12465), + [anon_sym_BSLASHparencite] = ACTIONS(12465), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHParencite] = ACTIONS(12465), + [anon_sym_BSLASHfootcite] = ACTIONS(12465), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12465), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12465), + [anon_sym_BSLASHtextcite] = ACTIONS(12465), + [anon_sym_BSLASHTextcite] = ACTIONS(12465), + [anon_sym_BSLASHsmartcite] = ACTIONS(12465), + [anon_sym_BSLASHSmartcite] = ACTIONS(12465), + [anon_sym_BSLASHsupercite] = ACTIONS(12465), + [anon_sym_BSLASHautocite] = ACTIONS(12465), + [anon_sym_BSLASHAutocite] = ACTIONS(12465), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHvolcite] = ACTIONS(12465), + [anon_sym_BSLASHVolcite] = ACTIONS(12465), + [anon_sym_BSLASHpvolcite] = ACTIONS(12465), + [anon_sym_BSLASHPvolcite] = ACTIONS(12465), + [anon_sym_BSLASHfvolcite] = ACTIONS(12465), + [anon_sym_BSLASHftvolcite] = ACTIONS(12465), + [anon_sym_BSLASHsvolcite] = ACTIONS(12465), + [anon_sym_BSLASHSvolcite] = ACTIONS(12465), + [anon_sym_BSLASHtvolcite] = ACTIONS(12465), + [anon_sym_BSLASHTvolcite] = ACTIONS(12465), + [anon_sym_BSLASHavolcite] = ACTIONS(12465), + [anon_sym_BSLASHAvolcite] = ACTIONS(12465), + [anon_sym_BSLASHnotecite] = ACTIONS(12465), + [anon_sym_BSLASHpnotecite] = ACTIONS(12465), + [anon_sym_BSLASHPnotecite] = ACTIONS(12465), + [anon_sym_BSLASHfnotecite] = ACTIONS(12465), + [anon_sym_BSLASHusepackage] = ACTIONS(12465), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12465), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12465), + [anon_sym_BSLASHinclude] = ACTIONS(12465), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12465), + [anon_sym_BSLASHinput] = ACTIONS(12465), + [anon_sym_BSLASHsubfile] = ACTIONS(12465), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12465), + [anon_sym_BSLASHbibliography] = ACTIONS(12465), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12465), + [anon_sym_BSLASHincludesvg] = ACTIONS(12465), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12465), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12465), + [anon_sym_BSLASHimport] = ACTIONS(12465), + [anon_sym_BSLASHsubimport] = ACTIONS(12465), + [anon_sym_BSLASHinputfrom] = ACTIONS(12465), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12465), + [anon_sym_BSLASHincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHlabel] = ACTIONS(12465), + [anon_sym_BSLASHref] = ACTIONS(12465), + [anon_sym_BSLASHvref] = ACTIONS(12465), + [anon_sym_BSLASHVref] = ACTIONS(12465), + [anon_sym_BSLASHautoref] = ACTIONS(12465), + [anon_sym_BSLASHpageref] = ACTIONS(12465), + [anon_sym_BSLASHcref] = ACTIONS(12465), + [anon_sym_BSLASHCref] = ACTIONS(12465), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnameCref] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHlabelcref] = ACTIONS(12465), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12465), + [anon_sym_BSLASHeqref] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange] = ACTIONS(12465), + [anon_sym_BSLASHCrefrange] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewlabel] = ACTIONS(12465), + [anon_sym_BSLASHnewcommand] = ACTIONS(12465), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12465), + [anon_sym_BSLASHgls] = ACTIONS(12465), + [anon_sym_BSLASHGls] = ACTIONS(12465), + [anon_sym_BSLASHGLS] = ACTIONS(12465), + [anon_sym_BSLASHglspl] = ACTIONS(12465), + [anon_sym_BSLASHGlspl] = ACTIONS(12465), + [anon_sym_BSLASHGLSpl] = ACTIONS(12465), + [anon_sym_BSLASHglsdisp] = ACTIONS(12465), + [anon_sym_BSLASHglslink] = ACTIONS(12465), + [anon_sym_BSLASHglstext] = ACTIONS(12465), + [anon_sym_BSLASHGlstext] = ACTIONS(12465), + [anon_sym_BSLASHGLStext] = ACTIONS(12465), + [anon_sym_BSLASHglsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12465), + [anon_sym_BSLASHglsplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSplural] = ACTIONS(12465), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHglsname] = ACTIONS(12465), + [anon_sym_BSLASHGlsname] = ACTIONS(12465), + [anon_sym_BSLASHGLSname] = ACTIONS(12465), + [anon_sym_BSLASHglssymbol] = ACTIONS(12465), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12465), + [anon_sym_BSLASHglsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12465), + [anon_sym_BSLASHglsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12465), + [anon_sym_BSLASHglsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12465), + [anon_sym_BSLASHglsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12465), + [anon_sym_BSLASHglsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12465), + [anon_sym_BSLASHnewacronym] = ACTIONS(12465), + [anon_sym_BSLASHacrshort] = ACTIONS(12465), + [anon_sym_BSLASHAcrshort] = ACTIONS(12465), + [anon_sym_BSLASHACRshort] = ACTIONS(12465), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12465), + [anon_sym_BSLASHacrlong] = ACTIONS(12465), + [anon_sym_BSLASHAcrlong] = ACTIONS(12465), + [anon_sym_BSLASHACRlong] = ACTIONS(12465), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12465), + [anon_sym_BSLASHacrfull] = ACTIONS(12465), + [anon_sym_BSLASHAcrfull] = ACTIONS(12465), + [anon_sym_BSLASHACRfull] = ACTIONS(12465), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12465), + [anon_sym_BSLASHacs] = ACTIONS(12465), + [anon_sym_BSLASHAcs] = ACTIONS(12465), + [anon_sym_BSLASHacsp] = ACTIONS(12465), + [anon_sym_BSLASHAcsp] = ACTIONS(12465), + [anon_sym_BSLASHacl] = ACTIONS(12465), + [anon_sym_BSLASHAcl] = ACTIONS(12465), + [anon_sym_BSLASHaclp] = ACTIONS(12465), + [anon_sym_BSLASHAclp] = ACTIONS(12465), + [anon_sym_BSLASHacf] = ACTIONS(12465), + [anon_sym_BSLASHAcf] = ACTIONS(12465), + [anon_sym_BSLASHacfp] = ACTIONS(12465), + [anon_sym_BSLASHAcfp] = ACTIONS(12465), + [anon_sym_BSLASHac] = ACTIONS(12465), + [anon_sym_BSLASHAc] = ACTIONS(12465), + [anon_sym_BSLASHacp] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12465), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12465), + [anon_sym_BSLASHcolor] = ACTIONS(12465), + [anon_sym_BSLASHcolorbox] = ACTIONS(12465), + [anon_sym_BSLASHtextcolor] = ACTIONS(12465), + [anon_sym_BSLASHpagecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12465), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12465), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12465), + }, + [1133] = { + [sym_generic_command_name] = ACTIONS(12461), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_chapter_token1] = ACTIONS(12461), + [aux_sym_section_token1] = ACTIONS(12461), + [aux_sym_subsection_token1] = ACTIONS(12461), + [aux_sym_subsubsection_token1] = ACTIONS(12461), + [aux_sym_paragraph_token1] = ACTIONS(12461), + [aux_sym_subparagraph_token1] = ACTIONS(12461), + [anon_sym_BSLASHitem] = ACTIONS(12461), + [anon_sym_LBRACK] = ACTIONS(12459), + [anon_sym_RBRACK] = ACTIONS(12459), + [anon_sym_LBRACE] = ACTIONS(12459), + [anon_sym_RBRACE] = ACTIONS(12459), + [anon_sym_LPAREN] = ACTIONS(12459), + [anon_sym_COMMA] = ACTIONS(12459), + [anon_sym_EQ] = ACTIONS(12459), + [sym_word] = ACTIONS(12459), + [sym_param] = ACTIONS(12459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12459), + [anon_sym_DOLLAR] = ACTIONS(12461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12459), + [anon_sym_BSLASHbegin] = ACTIONS(12461), + [anon_sym_BSLASHcaption] = ACTIONS(12461), + [anon_sym_BSLASHcite] = ACTIONS(12461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCite] = ACTIONS(12461), + [anon_sym_BSLASHnocite] = ACTIONS(12461), + [anon_sym_BSLASHcitet] = ACTIONS(12461), + [anon_sym_BSLASHcitep] = ACTIONS(12461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteauthor] = ACTIONS(12461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitetitle] = ACTIONS(12461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteyear] = ACTIONS(12461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitedate] = ACTIONS(12461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteurl] = ACTIONS(12461), + [anon_sym_BSLASHfullcite] = ACTIONS(12461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12461), + [anon_sym_BSLASHcitealt] = ACTIONS(12461), + [anon_sym_BSLASHcitealp] = ACTIONS(12461), + [anon_sym_BSLASHcitetext] = ACTIONS(12461), + [anon_sym_BSLASHparencite] = ACTIONS(12461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHParencite] = ACTIONS(12461), + [anon_sym_BSLASHfootcite] = ACTIONS(12461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12461), + [anon_sym_BSLASHtextcite] = ACTIONS(12461), + [anon_sym_BSLASHTextcite] = ACTIONS(12461), + [anon_sym_BSLASHsmartcite] = ACTIONS(12461), + [anon_sym_BSLASHSmartcite] = ACTIONS(12461), + [anon_sym_BSLASHsupercite] = ACTIONS(12461), + [anon_sym_BSLASHautocite] = ACTIONS(12461), + [anon_sym_BSLASHAutocite] = ACTIONS(12461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHvolcite] = ACTIONS(12461), + [anon_sym_BSLASHVolcite] = ACTIONS(12461), + [anon_sym_BSLASHpvolcite] = ACTIONS(12461), + [anon_sym_BSLASHPvolcite] = ACTIONS(12461), + [anon_sym_BSLASHfvolcite] = ACTIONS(12461), + [anon_sym_BSLASHftvolcite] = ACTIONS(12461), + [anon_sym_BSLASHsvolcite] = ACTIONS(12461), + [anon_sym_BSLASHSvolcite] = ACTIONS(12461), + [anon_sym_BSLASHtvolcite] = ACTIONS(12461), + [anon_sym_BSLASHTvolcite] = ACTIONS(12461), + [anon_sym_BSLASHavolcite] = ACTIONS(12461), + [anon_sym_BSLASHAvolcite] = ACTIONS(12461), + [anon_sym_BSLASHnotecite] = ACTIONS(12461), + [anon_sym_BSLASHpnotecite] = ACTIONS(12461), + [anon_sym_BSLASHPnotecite] = ACTIONS(12461), + [anon_sym_BSLASHfnotecite] = ACTIONS(12461), + [anon_sym_BSLASHusepackage] = ACTIONS(12461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12461), + [anon_sym_BSLASHinclude] = ACTIONS(12461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12461), + [anon_sym_BSLASHinput] = ACTIONS(12461), + [anon_sym_BSLASHsubfile] = ACTIONS(12461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12461), + [anon_sym_BSLASHbibliography] = ACTIONS(12461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12461), + [anon_sym_BSLASHincludesvg] = ACTIONS(12461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12461), + [anon_sym_BSLASHimport] = ACTIONS(12461), + [anon_sym_BSLASHsubimport] = ACTIONS(12461), + [anon_sym_BSLASHinputfrom] = ACTIONS(12461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12461), + [anon_sym_BSLASHincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHlabel] = ACTIONS(12461), + [anon_sym_BSLASHref] = ACTIONS(12461), + [anon_sym_BSLASHvref] = ACTIONS(12461), + [anon_sym_BSLASHVref] = ACTIONS(12461), + [anon_sym_BSLASHautoref] = ACTIONS(12461), + [anon_sym_BSLASHpageref] = ACTIONS(12461), + [anon_sym_BSLASHcref] = ACTIONS(12461), + [anon_sym_BSLASHCref] = ACTIONS(12461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnameCref] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHlabelcref] = ACTIONS(12461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12461), + [anon_sym_BSLASHeqref] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange] = ACTIONS(12461), + [anon_sym_BSLASHCrefrange] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewlabel] = ACTIONS(12461), + [anon_sym_BSLASHnewcommand] = ACTIONS(12461), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12461), + [anon_sym_BSLASHgls] = ACTIONS(12461), + [anon_sym_BSLASHGls] = ACTIONS(12461), + [anon_sym_BSLASHGLS] = ACTIONS(12461), + [anon_sym_BSLASHglspl] = ACTIONS(12461), + [anon_sym_BSLASHGlspl] = ACTIONS(12461), + [anon_sym_BSLASHGLSpl] = ACTIONS(12461), + [anon_sym_BSLASHglsdisp] = ACTIONS(12461), + [anon_sym_BSLASHglslink] = ACTIONS(12461), + [anon_sym_BSLASHglstext] = ACTIONS(12461), + [anon_sym_BSLASHGlstext] = ACTIONS(12461), + [anon_sym_BSLASHGLStext] = ACTIONS(12461), + [anon_sym_BSLASHglsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12461), + [anon_sym_BSLASHglsplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSplural] = ACTIONS(12461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHglsname] = ACTIONS(12461), + [anon_sym_BSLASHGlsname] = ACTIONS(12461), + [anon_sym_BSLASHGLSname] = ACTIONS(12461), + [anon_sym_BSLASHglssymbol] = ACTIONS(12461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12461), + [anon_sym_BSLASHglsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12461), + [anon_sym_BSLASHglsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12461), + [anon_sym_BSLASHglsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12461), + [anon_sym_BSLASHglsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12461), + [anon_sym_BSLASHglsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12461), + [anon_sym_BSLASHnewacronym] = ACTIONS(12461), + [anon_sym_BSLASHacrshort] = ACTIONS(12461), + [anon_sym_BSLASHAcrshort] = ACTIONS(12461), + [anon_sym_BSLASHACRshort] = ACTIONS(12461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12461), + [anon_sym_BSLASHacrlong] = ACTIONS(12461), + [anon_sym_BSLASHAcrlong] = ACTIONS(12461), + [anon_sym_BSLASHACRlong] = ACTIONS(12461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12461), + [anon_sym_BSLASHacrfull] = ACTIONS(12461), + [anon_sym_BSLASHAcrfull] = ACTIONS(12461), + [anon_sym_BSLASHACRfull] = ACTIONS(12461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12461), + [anon_sym_BSLASHacs] = ACTIONS(12461), + [anon_sym_BSLASHAcs] = ACTIONS(12461), + [anon_sym_BSLASHacsp] = ACTIONS(12461), + [anon_sym_BSLASHAcsp] = ACTIONS(12461), + [anon_sym_BSLASHacl] = ACTIONS(12461), + [anon_sym_BSLASHAcl] = ACTIONS(12461), + [anon_sym_BSLASHaclp] = ACTIONS(12461), + [anon_sym_BSLASHAclp] = ACTIONS(12461), + [anon_sym_BSLASHacf] = ACTIONS(12461), + [anon_sym_BSLASHAcf] = ACTIONS(12461), + [anon_sym_BSLASHacfp] = ACTIONS(12461), + [anon_sym_BSLASHAcfp] = ACTIONS(12461), + [anon_sym_BSLASHac] = ACTIONS(12461), + [anon_sym_BSLASHAc] = ACTIONS(12461), + [anon_sym_BSLASHacp] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12461), + [anon_sym_BSLASHcolor] = ACTIONS(12461), + [anon_sym_BSLASHcolorbox] = ACTIONS(12461), + [anon_sym_BSLASHtextcolor] = ACTIONS(12461), + [anon_sym_BSLASHpagecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12461), + }, + [1134] = { + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(111), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [1135] = { + [sym_generic_command_name] = ACTIONS(12189), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12189), + [aux_sym_subsection_token1] = ACTIONS(12189), + [aux_sym_subsubsection_token1] = ACTIONS(12189), + [aux_sym_paragraph_token1] = ACTIONS(12189), + [aux_sym_subparagraph_token1] = ACTIONS(12189), + [anon_sym_BSLASHitem] = ACTIONS(12189), + [anon_sym_LBRACK] = ACTIONS(12187), + [anon_sym_RBRACK] = ACTIONS(12187), + [anon_sym_LBRACE] = ACTIONS(12187), + [anon_sym_RBRACE] = ACTIONS(12187), + [anon_sym_LPAREN] = ACTIONS(12187), + [anon_sym_COMMA] = ACTIONS(12187), + [anon_sym_EQ] = ACTIONS(12187), + [sym_word] = ACTIONS(12187), + [sym_param] = ACTIONS(12187), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12187), + [anon_sym_DOLLAR] = ACTIONS(12189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12187), + [anon_sym_BSLASHbegin] = ACTIONS(12189), + [anon_sym_BSLASHcaption] = ACTIONS(12189), + [anon_sym_BSLASHcite] = ACTIONS(12189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCite] = ACTIONS(12189), + [anon_sym_BSLASHnocite] = ACTIONS(12189), + [anon_sym_BSLASHcitet] = ACTIONS(12189), + [anon_sym_BSLASHcitep] = ACTIONS(12189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteauthor] = ACTIONS(12189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitetitle] = ACTIONS(12189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteyear] = ACTIONS(12189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitedate] = ACTIONS(12189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteurl] = ACTIONS(12189), + [anon_sym_BSLASHfullcite] = ACTIONS(12189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12189), + [anon_sym_BSLASHcitealt] = ACTIONS(12189), + [anon_sym_BSLASHcitealp] = ACTIONS(12189), + [anon_sym_BSLASHcitetext] = ACTIONS(12189), + [anon_sym_BSLASHparencite] = ACTIONS(12189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHParencite] = ACTIONS(12189), + [anon_sym_BSLASHfootcite] = ACTIONS(12189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12189), + [anon_sym_BSLASHtextcite] = ACTIONS(12189), + [anon_sym_BSLASHTextcite] = ACTIONS(12189), + [anon_sym_BSLASHsmartcite] = ACTIONS(12189), + [anon_sym_BSLASHSmartcite] = ACTIONS(12189), + [anon_sym_BSLASHsupercite] = ACTIONS(12189), + [anon_sym_BSLASHautocite] = ACTIONS(12189), + [anon_sym_BSLASHAutocite] = ACTIONS(12189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHvolcite] = ACTIONS(12189), + [anon_sym_BSLASHVolcite] = ACTIONS(12189), + [anon_sym_BSLASHpvolcite] = ACTIONS(12189), + [anon_sym_BSLASHPvolcite] = ACTIONS(12189), + [anon_sym_BSLASHfvolcite] = ACTIONS(12189), + [anon_sym_BSLASHftvolcite] = ACTIONS(12189), + [anon_sym_BSLASHsvolcite] = ACTIONS(12189), + [anon_sym_BSLASHSvolcite] = ACTIONS(12189), + [anon_sym_BSLASHtvolcite] = ACTIONS(12189), + [anon_sym_BSLASHTvolcite] = ACTIONS(12189), + [anon_sym_BSLASHavolcite] = ACTIONS(12189), + [anon_sym_BSLASHAvolcite] = ACTIONS(12189), + [anon_sym_BSLASHnotecite] = ACTIONS(12189), + [anon_sym_BSLASHpnotecite] = ACTIONS(12189), + [anon_sym_BSLASHPnotecite] = ACTIONS(12189), + [anon_sym_BSLASHfnotecite] = ACTIONS(12189), + [anon_sym_BSLASHusepackage] = ACTIONS(12189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12189), + [anon_sym_BSLASHinclude] = ACTIONS(12189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12189), + [anon_sym_BSLASHinput] = ACTIONS(12189), + [anon_sym_BSLASHsubfile] = ACTIONS(12189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12189), + [anon_sym_BSLASHbibliography] = ACTIONS(12189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12189), + [anon_sym_BSLASHincludesvg] = ACTIONS(12189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12189), + [anon_sym_BSLASHimport] = ACTIONS(12189), + [anon_sym_BSLASHsubimport] = ACTIONS(12189), + [anon_sym_BSLASHinputfrom] = ACTIONS(12189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12189), + [anon_sym_BSLASHincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHlabel] = ACTIONS(12189), + [anon_sym_BSLASHref] = ACTIONS(12189), + [anon_sym_BSLASHvref] = ACTIONS(12189), + [anon_sym_BSLASHVref] = ACTIONS(12189), + [anon_sym_BSLASHautoref] = ACTIONS(12189), + [anon_sym_BSLASHpageref] = ACTIONS(12189), + [anon_sym_BSLASHcref] = ACTIONS(12189), + [anon_sym_BSLASHCref] = ACTIONS(12189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnameCref] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHlabelcref] = ACTIONS(12189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12189), + [anon_sym_BSLASHeqref] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange] = ACTIONS(12189), + [anon_sym_BSLASHCrefrange] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewlabel] = ACTIONS(12189), + [anon_sym_BSLASHnewcommand] = ACTIONS(12189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12189), + [anon_sym_BSLASHgls] = ACTIONS(12189), + [anon_sym_BSLASHGls] = ACTIONS(12189), + [anon_sym_BSLASHGLS] = ACTIONS(12189), + [anon_sym_BSLASHglspl] = ACTIONS(12189), + [anon_sym_BSLASHGlspl] = ACTIONS(12189), + [anon_sym_BSLASHGLSpl] = ACTIONS(12189), + [anon_sym_BSLASHglsdisp] = ACTIONS(12189), + [anon_sym_BSLASHglslink] = ACTIONS(12189), + [anon_sym_BSLASHglstext] = ACTIONS(12189), + [anon_sym_BSLASHGlstext] = ACTIONS(12189), + [anon_sym_BSLASHGLStext] = ACTIONS(12189), + [anon_sym_BSLASHglsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12189), + [anon_sym_BSLASHglsplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSplural] = ACTIONS(12189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHglsname] = ACTIONS(12189), + [anon_sym_BSLASHGlsname] = ACTIONS(12189), + [anon_sym_BSLASHGLSname] = ACTIONS(12189), + [anon_sym_BSLASHglssymbol] = ACTIONS(12189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12189), + [anon_sym_BSLASHglsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12189), + [anon_sym_BSLASHglsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12189), + [anon_sym_BSLASHglsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12189), + [anon_sym_BSLASHglsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12189), + [anon_sym_BSLASHglsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12189), + [anon_sym_BSLASHnewacronym] = ACTIONS(12189), + [anon_sym_BSLASHacrshort] = ACTIONS(12189), + [anon_sym_BSLASHAcrshort] = ACTIONS(12189), + [anon_sym_BSLASHACRshort] = ACTIONS(12189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12189), + [anon_sym_BSLASHacrlong] = ACTIONS(12189), + [anon_sym_BSLASHAcrlong] = ACTIONS(12189), + [anon_sym_BSLASHACRlong] = ACTIONS(12189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12189), + [anon_sym_BSLASHacrfull] = ACTIONS(12189), + [anon_sym_BSLASHAcrfull] = ACTIONS(12189), + [anon_sym_BSLASHACRfull] = ACTIONS(12189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12189), + [anon_sym_BSLASHacs] = ACTIONS(12189), + [anon_sym_BSLASHAcs] = ACTIONS(12189), + [anon_sym_BSLASHacsp] = ACTIONS(12189), + [anon_sym_BSLASHAcsp] = ACTIONS(12189), + [anon_sym_BSLASHacl] = ACTIONS(12189), + [anon_sym_BSLASHAcl] = ACTIONS(12189), + [anon_sym_BSLASHaclp] = ACTIONS(12189), + [anon_sym_BSLASHAclp] = ACTIONS(12189), + [anon_sym_BSLASHacf] = ACTIONS(12189), + [anon_sym_BSLASHAcf] = ACTIONS(12189), + [anon_sym_BSLASHacfp] = ACTIONS(12189), + [anon_sym_BSLASHAcfp] = ACTIONS(12189), + [anon_sym_BSLASHac] = ACTIONS(12189), + [anon_sym_BSLASHAc] = ACTIONS(12189), + [anon_sym_BSLASHacp] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12189), + [anon_sym_BSLASHcolor] = ACTIONS(12189), + [anon_sym_BSLASHcolorbox] = ACTIONS(12189), + [anon_sym_BSLASHtextcolor] = ACTIONS(12189), + [anon_sym_BSLASHpagecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12189), + }, + [1136] = { + [sym_generic_command_name] = ACTIONS(12132), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12132), + [aux_sym_subsection_token1] = ACTIONS(12132), + [aux_sym_subsubsection_token1] = ACTIONS(12132), + [aux_sym_paragraph_token1] = ACTIONS(12132), + [aux_sym_subparagraph_token1] = ACTIONS(12132), + [anon_sym_BSLASHitem] = ACTIONS(12132), + [anon_sym_LBRACK] = ACTIONS(12130), + [anon_sym_RBRACK] = ACTIONS(12130), + [anon_sym_LBRACE] = ACTIONS(12130), + [anon_sym_RBRACE] = ACTIONS(12130), + [anon_sym_LPAREN] = ACTIONS(12130), + [anon_sym_COMMA] = ACTIONS(12130), + [anon_sym_EQ] = ACTIONS(12130), + [sym_word] = ACTIONS(12130), + [sym_param] = ACTIONS(12130), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12130), + [anon_sym_DOLLAR] = ACTIONS(12132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12130), + [anon_sym_BSLASHbegin] = ACTIONS(12132), + [anon_sym_BSLASHcaption] = ACTIONS(12132), + [anon_sym_BSLASHcite] = ACTIONS(12132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCite] = ACTIONS(12132), + [anon_sym_BSLASHnocite] = ACTIONS(12132), + [anon_sym_BSLASHcitet] = ACTIONS(12132), + [anon_sym_BSLASHcitep] = ACTIONS(12132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteauthor] = ACTIONS(12132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitetitle] = ACTIONS(12132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteyear] = ACTIONS(12132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitedate] = ACTIONS(12132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteurl] = ACTIONS(12132), + [anon_sym_BSLASHfullcite] = ACTIONS(12132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12132), + [anon_sym_BSLASHcitealt] = ACTIONS(12132), + [anon_sym_BSLASHcitealp] = ACTIONS(12132), + [anon_sym_BSLASHcitetext] = ACTIONS(12132), + [anon_sym_BSLASHparencite] = ACTIONS(12132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHParencite] = ACTIONS(12132), + [anon_sym_BSLASHfootcite] = ACTIONS(12132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12132), + [anon_sym_BSLASHtextcite] = ACTIONS(12132), + [anon_sym_BSLASHTextcite] = ACTIONS(12132), + [anon_sym_BSLASHsmartcite] = ACTIONS(12132), + [anon_sym_BSLASHSmartcite] = ACTIONS(12132), + [anon_sym_BSLASHsupercite] = ACTIONS(12132), + [anon_sym_BSLASHautocite] = ACTIONS(12132), + [anon_sym_BSLASHAutocite] = ACTIONS(12132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHvolcite] = ACTIONS(12132), + [anon_sym_BSLASHVolcite] = ACTIONS(12132), + [anon_sym_BSLASHpvolcite] = ACTIONS(12132), + [anon_sym_BSLASHPvolcite] = ACTIONS(12132), + [anon_sym_BSLASHfvolcite] = ACTIONS(12132), + [anon_sym_BSLASHftvolcite] = ACTIONS(12132), + [anon_sym_BSLASHsvolcite] = ACTIONS(12132), + [anon_sym_BSLASHSvolcite] = ACTIONS(12132), + [anon_sym_BSLASHtvolcite] = ACTIONS(12132), + [anon_sym_BSLASHTvolcite] = ACTIONS(12132), + [anon_sym_BSLASHavolcite] = ACTIONS(12132), + [anon_sym_BSLASHAvolcite] = ACTIONS(12132), + [anon_sym_BSLASHnotecite] = ACTIONS(12132), + [anon_sym_BSLASHpnotecite] = ACTIONS(12132), + [anon_sym_BSLASHPnotecite] = ACTIONS(12132), + [anon_sym_BSLASHfnotecite] = ACTIONS(12132), + [anon_sym_BSLASHusepackage] = ACTIONS(12132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12132), + [anon_sym_BSLASHinclude] = ACTIONS(12132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12132), + [anon_sym_BSLASHinput] = ACTIONS(12132), + [anon_sym_BSLASHsubfile] = ACTIONS(12132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12132), + [anon_sym_BSLASHbibliography] = ACTIONS(12132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12132), + [anon_sym_BSLASHincludesvg] = ACTIONS(12132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12132), + [anon_sym_BSLASHimport] = ACTIONS(12132), + [anon_sym_BSLASHsubimport] = ACTIONS(12132), + [anon_sym_BSLASHinputfrom] = ACTIONS(12132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12132), + [anon_sym_BSLASHincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHlabel] = ACTIONS(12132), + [anon_sym_BSLASHref] = ACTIONS(12132), + [anon_sym_BSLASHvref] = ACTIONS(12132), + [anon_sym_BSLASHVref] = ACTIONS(12132), + [anon_sym_BSLASHautoref] = ACTIONS(12132), + [anon_sym_BSLASHpageref] = ACTIONS(12132), + [anon_sym_BSLASHcref] = ACTIONS(12132), + [anon_sym_BSLASHCref] = ACTIONS(12132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnameCref] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHlabelcref] = ACTIONS(12132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12132), + [anon_sym_BSLASHeqref] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange] = ACTIONS(12132), + [anon_sym_BSLASHCrefrange] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewlabel] = ACTIONS(12132), + [anon_sym_BSLASHnewcommand] = ACTIONS(12132), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12132), + [anon_sym_BSLASHgls] = ACTIONS(12132), + [anon_sym_BSLASHGls] = ACTIONS(12132), + [anon_sym_BSLASHGLS] = ACTIONS(12132), + [anon_sym_BSLASHglspl] = ACTIONS(12132), + [anon_sym_BSLASHGlspl] = ACTIONS(12132), + [anon_sym_BSLASHGLSpl] = ACTIONS(12132), + [anon_sym_BSLASHglsdisp] = ACTIONS(12132), + [anon_sym_BSLASHglslink] = ACTIONS(12132), + [anon_sym_BSLASHglstext] = ACTIONS(12132), + [anon_sym_BSLASHGlstext] = ACTIONS(12132), + [anon_sym_BSLASHGLStext] = ACTIONS(12132), + [anon_sym_BSLASHglsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12132), + [anon_sym_BSLASHglsplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSplural] = ACTIONS(12132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHglsname] = ACTIONS(12132), + [anon_sym_BSLASHGlsname] = ACTIONS(12132), + [anon_sym_BSLASHGLSname] = ACTIONS(12132), + [anon_sym_BSLASHglssymbol] = ACTIONS(12132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12132), + [anon_sym_BSLASHglsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12132), + [anon_sym_BSLASHglsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12132), + [anon_sym_BSLASHglsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12132), + [anon_sym_BSLASHglsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12132), + [anon_sym_BSLASHglsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12132), + [anon_sym_BSLASHnewacronym] = ACTIONS(12132), + [anon_sym_BSLASHacrshort] = ACTIONS(12132), + [anon_sym_BSLASHAcrshort] = ACTIONS(12132), + [anon_sym_BSLASHACRshort] = ACTIONS(12132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12132), + [anon_sym_BSLASHacrlong] = ACTIONS(12132), + [anon_sym_BSLASHAcrlong] = ACTIONS(12132), + [anon_sym_BSLASHACRlong] = ACTIONS(12132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12132), + [anon_sym_BSLASHacrfull] = ACTIONS(12132), + [anon_sym_BSLASHAcrfull] = ACTIONS(12132), + [anon_sym_BSLASHACRfull] = ACTIONS(12132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12132), + [anon_sym_BSLASHacs] = ACTIONS(12132), + [anon_sym_BSLASHAcs] = ACTIONS(12132), + [anon_sym_BSLASHacsp] = ACTIONS(12132), + [anon_sym_BSLASHAcsp] = ACTIONS(12132), + [anon_sym_BSLASHacl] = ACTIONS(12132), + [anon_sym_BSLASHAcl] = ACTIONS(12132), + [anon_sym_BSLASHaclp] = ACTIONS(12132), + [anon_sym_BSLASHAclp] = ACTIONS(12132), + [anon_sym_BSLASHacf] = ACTIONS(12132), + [anon_sym_BSLASHAcf] = ACTIONS(12132), + [anon_sym_BSLASHacfp] = ACTIONS(12132), + [anon_sym_BSLASHAcfp] = ACTIONS(12132), + [anon_sym_BSLASHac] = ACTIONS(12132), + [anon_sym_BSLASHAc] = ACTIONS(12132), + [anon_sym_BSLASHacp] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12132), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12132), + [anon_sym_BSLASHcolor] = ACTIONS(12132), + [anon_sym_BSLASHcolorbox] = ACTIONS(12132), + [anon_sym_BSLASHtextcolor] = ACTIONS(12132), + [anon_sym_BSLASHpagecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12132), + }, + [1137] = { + [sym_generic_command_name] = ACTIONS(12349), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12349), + [aux_sym_subsection_token1] = ACTIONS(12349), + [aux_sym_subsubsection_token1] = ACTIONS(12349), + [aux_sym_paragraph_token1] = ACTIONS(12349), + [aux_sym_subparagraph_token1] = ACTIONS(12349), + [anon_sym_BSLASHitem] = ACTIONS(12349), + [anon_sym_LBRACK] = ACTIONS(12347), + [anon_sym_RBRACK] = ACTIONS(12347), + [anon_sym_LBRACE] = ACTIONS(12347), + [anon_sym_RBRACE] = ACTIONS(12347), + [anon_sym_LPAREN] = ACTIONS(12347), + [anon_sym_COMMA] = ACTIONS(12347), + [anon_sym_EQ] = ACTIONS(12347), + [sym_word] = ACTIONS(12347), + [sym_param] = ACTIONS(12347), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12347), + [anon_sym_DOLLAR] = ACTIONS(12349), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12347), + [anon_sym_BSLASHbegin] = ACTIONS(12349), + [anon_sym_BSLASHcaption] = ACTIONS(12349), + [anon_sym_BSLASHcite] = ACTIONS(12349), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCite] = ACTIONS(12349), + [anon_sym_BSLASHnocite] = ACTIONS(12349), + [anon_sym_BSLASHcitet] = ACTIONS(12349), + [anon_sym_BSLASHcitep] = ACTIONS(12349), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteauthor] = ACTIONS(12349), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12349), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitetitle] = ACTIONS(12349), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteyear] = ACTIONS(12349), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitedate] = ACTIONS(12349), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteurl] = ACTIONS(12349), + [anon_sym_BSLASHfullcite] = ACTIONS(12349), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12349), + [anon_sym_BSLASHcitealt] = ACTIONS(12349), + [anon_sym_BSLASHcitealp] = ACTIONS(12349), + [anon_sym_BSLASHcitetext] = ACTIONS(12349), + [anon_sym_BSLASHparencite] = ACTIONS(12349), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHParencite] = ACTIONS(12349), + [anon_sym_BSLASHfootcite] = ACTIONS(12349), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12349), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12349), + [anon_sym_BSLASHtextcite] = ACTIONS(12349), + [anon_sym_BSLASHTextcite] = ACTIONS(12349), + [anon_sym_BSLASHsmartcite] = ACTIONS(12349), + [anon_sym_BSLASHSmartcite] = ACTIONS(12349), + [anon_sym_BSLASHsupercite] = ACTIONS(12349), + [anon_sym_BSLASHautocite] = ACTIONS(12349), + [anon_sym_BSLASHAutocite] = ACTIONS(12349), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHvolcite] = ACTIONS(12349), + [anon_sym_BSLASHVolcite] = ACTIONS(12349), + [anon_sym_BSLASHpvolcite] = ACTIONS(12349), + [anon_sym_BSLASHPvolcite] = ACTIONS(12349), + [anon_sym_BSLASHfvolcite] = ACTIONS(12349), + [anon_sym_BSLASHftvolcite] = ACTIONS(12349), + [anon_sym_BSLASHsvolcite] = ACTIONS(12349), + [anon_sym_BSLASHSvolcite] = ACTIONS(12349), + [anon_sym_BSLASHtvolcite] = ACTIONS(12349), + [anon_sym_BSLASHTvolcite] = ACTIONS(12349), + [anon_sym_BSLASHavolcite] = ACTIONS(12349), + [anon_sym_BSLASHAvolcite] = ACTIONS(12349), + [anon_sym_BSLASHnotecite] = ACTIONS(12349), + [anon_sym_BSLASHpnotecite] = ACTIONS(12349), + [anon_sym_BSLASHPnotecite] = ACTIONS(12349), + [anon_sym_BSLASHfnotecite] = ACTIONS(12349), + [anon_sym_BSLASHusepackage] = ACTIONS(12349), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12349), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12349), + [anon_sym_BSLASHinclude] = ACTIONS(12349), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12349), + [anon_sym_BSLASHinput] = ACTIONS(12349), + [anon_sym_BSLASHsubfile] = ACTIONS(12349), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12349), + [anon_sym_BSLASHbibliography] = ACTIONS(12349), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12349), + [anon_sym_BSLASHincludesvg] = ACTIONS(12349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12349), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12349), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12349), + [anon_sym_BSLASHimport] = ACTIONS(12349), + [anon_sym_BSLASHsubimport] = ACTIONS(12349), + [anon_sym_BSLASHinputfrom] = ACTIONS(12349), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12349), + [anon_sym_BSLASHincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHlabel] = ACTIONS(12349), + [anon_sym_BSLASHref] = ACTIONS(12349), + [anon_sym_BSLASHvref] = ACTIONS(12349), + [anon_sym_BSLASHVref] = ACTIONS(12349), + [anon_sym_BSLASHautoref] = ACTIONS(12349), + [anon_sym_BSLASHpageref] = ACTIONS(12349), + [anon_sym_BSLASHcref] = ACTIONS(12349), + [anon_sym_BSLASHCref] = ACTIONS(12349), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnameCref] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHlabelcref] = ACTIONS(12349), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12349), + [anon_sym_BSLASHeqref] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange] = ACTIONS(12349), + [anon_sym_BSLASHCrefrange] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewlabel] = ACTIONS(12349), + [anon_sym_BSLASHnewcommand] = ACTIONS(12349), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12349), + [anon_sym_BSLASHgls] = ACTIONS(12349), + [anon_sym_BSLASHGls] = ACTIONS(12349), + [anon_sym_BSLASHGLS] = ACTIONS(12349), + [anon_sym_BSLASHglspl] = ACTIONS(12349), + [anon_sym_BSLASHGlspl] = ACTIONS(12349), + [anon_sym_BSLASHGLSpl] = ACTIONS(12349), + [anon_sym_BSLASHglsdisp] = ACTIONS(12349), + [anon_sym_BSLASHglslink] = ACTIONS(12349), + [anon_sym_BSLASHglstext] = ACTIONS(12349), + [anon_sym_BSLASHGlstext] = ACTIONS(12349), + [anon_sym_BSLASHGLStext] = ACTIONS(12349), + [anon_sym_BSLASHglsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12349), + [anon_sym_BSLASHglsplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSplural] = ACTIONS(12349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHglsname] = ACTIONS(12349), + [anon_sym_BSLASHGlsname] = ACTIONS(12349), + [anon_sym_BSLASHGLSname] = ACTIONS(12349), + [anon_sym_BSLASHglssymbol] = ACTIONS(12349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12349), + [anon_sym_BSLASHglsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12349), + [anon_sym_BSLASHglsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12349), + [anon_sym_BSLASHglsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12349), + [anon_sym_BSLASHglsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12349), + [anon_sym_BSLASHglsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12349), + [anon_sym_BSLASHnewacronym] = ACTIONS(12349), + [anon_sym_BSLASHacrshort] = ACTIONS(12349), + [anon_sym_BSLASHAcrshort] = ACTIONS(12349), + [anon_sym_BSLASHACRshort] = ACTIONS(12349), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12349), + [anon_sym_BSLASHacrlong] = ACTIONS(12349), + [anon_sym_BSLASHAcrlong] = ACTIONS(12349), + [anon_sym_BSLASHACRlong] = ACTIONS(12349), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12349), + [anon_sym_BSLASHacrfull] = ACTIONS(12349), + [anon_sym_BSLASHAcrfull] = ACTIONS(12349), + [anon_sym_BSLASHACRfull] = ACTIONS(12349), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12349), + [anon_sym_BSLASHacs] = ACTIONS(12349), + [anon_sym_BSLASHAcs] = ACTIONS(12349), + [anon_sym_BSLASHacsp] = ACTIONS(12349), + [anon_sym_BSLASHAcsp] = ACTIONS(12349), + [anon_sym_BSLASHacl] = ACTIONS(12349), + [anon_sym_BSLASHAcl] = ACTIONS(12349), + [anon_sym_BSLASHaclp] = ACTIONS(12349), + [anon_sym_BSLASHAclp] = ACTIONS(12349), + [anon_sym_BSLASHacf] = ACTIONS(12349), + [anon_sym_BSLASHAcf] = ACTIONS(12349), + [anon_sym_BSLASHacfp] = ACTIONS(12349), + [anon_sym_BSLASHAcfp] = ACTIONS(12349), + [anon_sym_BSLASHac] = ACTIONS(12349), + [anon_sym_BSLASHAc] = ACTIONS(12349), + [anon_sym_BSLASHacp] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12349), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12349), + [anon_sym_BSLASHcolor] = ACTIONS(12349), + [anon_sym_BSLASHcolorbox] = ACTIONS(12349), + [anon_sym_BSLASHtextcolor] = ACTIONS(12349), + [anon_sym_BSLASHpagecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12349), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12349), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12349), + }, + [1138] = { + [sym_brace_group] = STATE(3130), + [sym_generic_command_name] = ACTIONS(12058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12058), + [aux_sym_subsubsection_token1] = ACTIONS(12058), + [aux_sym_paragraph_token1] = ACTIONS(12058), + [aux_sym_subparagraph_token1] = ACTIONS(12058), + [anon_sym_BSLASHitem] = ACTIONS(12058), + [anon_sym_LBRACK] = ACTIONS(12056), + [anon_sym_RBRACK] = ACTIONS(12056), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12056), + [anon_sym_LPAREN] = ACTIONS(12056), + [anon_sym_COMMA] = ACTIONS(12056), + [anon_sym_EQ] = ACTIONS(12056), + [sym_word] = ACTIONS(12056), + [sym_param] = ACTIONS(12056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12056), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12056), + [anon_sym_DOLLAR] = ACTIONS(12058), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12056), + [anon_sym_BSLASHbegin] = ACTIONS(12058), + [anon_sym_BSLASHcaption] = ACTIONS(12058), + [anon_sym_BSLASHcite] = ACTIONS(12058), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCite] = ACTIONS(12058), + [anon_sym_BSLASHnocite] = ACTIONS(12058), + [anon_sym_BSLASHcitet] = ACTIONS(12058), + [anon_sym_BSLASHcitep] = ACTIONS(12058), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteauthor] = ACTIONS(12058), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12058), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitetitle] = ACTIONS(12058), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteyear] = ACTIONS(12058), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitedate] = ACTIONS(12058), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteurl] = ACTIONS(12058), + [anon_sym_BSLASHfullcite] = ACTIONS(12058), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12058), + [anon_sym_BSLASHcitealt] = ACTIONS(12058), + [anon_sym_BSLASHcitealp] = ACTIONS(12058), + [anon_sym_BSLASHcitetext] = ACTIONS(12058), + [anon_sym_BSLASHparencite] = ACTIONS(12058), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHParencite] = ACTIONS(12058), + [anon_sym_BSLASHfootcite] = ACTIONS(12058), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12058), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12058), + [anon_sym_BSLASHtextcite] = ACTIONS(12058), + [anon_sym_BSLASHTextcite] = ACTIONS(12058), + [anon_sym_BSLASHsmartcite] = ACTIONS(12058), + [anon_sym_BSLASHSmartcite] = ACTIONS(12058), + [anon_sym_BSLASHsupercite] = ACTIONS(12058), + [anon_sym_BSLASHautocite] = ACTIONS(12058), + [anon_sym_BSLASHAutocite] = ACTIONS(12058), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHvolcite] = ACTIONS(12058), + [anon_sym_BSLASHVolcite] = ACTIONS(12058), + [anon_sym_BSLASHpvolcite] = ACTIONS(12058), + [anon_sym_BSLASHPvolcite] = ACTIONS(12058), + [anon_sym_BSLASHfvolcite] = ACTIONS(12058), + [anon_sym_BSLASHftvolcite] = ACTIONS(12058), + [anon_sym_BSLASHsvolcite] = ACTIONS(12058), + [anon_sym_BSLASHSvolcite] = ACTIONS(12058), + [anon_sym_BSLASHtvolcite] = ACTIONS(12058), + [anon_sym_BSLASHTvolcite] = ACTIONS(12058), + [anon_sym_BSLASHavolcite] = ACTIONS(12058), + [anon_sym_BSLASHAvolcite] = ACTIONS(12058), + [anon_sym_BSLASHnotecite] = ACTIONS(12058), + [anon_sym_BSLASHpnotecite] = ACTIONS(12058), + [anon_sym_BSLASHPnotecite] = ACTIONS(12058), + [anon_sym_BSLASHfnotecite] = ACTIONS(12058), + [anon_sym_BSLASHusepackage] = ACTIONS(12058), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12058), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12058), + [anon_sym_BSLASHinclude] = ACTIONS(12058), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12058), + [anon_sym_BSLASHinput] = ACTIONS(12058), + [anon_sym_BSLASHsubfile] = ACTIONS(12058), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12058), + [anon_sym_BSLASHbibliography] = ACTIONS(12058), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12058), + [anon_sym_BSLASHincludesvg] = ACTIONS(12058), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12058), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12058), + [anon_sym_BSLASHimport] = ACTIONS(12058), + [anon_sym_BSLASHsubimport] = ACTIONS(12058), + [anon_sym_BSLASHinputfrom] = ACTIONS(12058), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12058), + [anon_sym_BSLASHincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHlabel] = ACTIONS(12058), + [anon_sym_BSLASHref] = ACTIONS(12058), + [anon_sym_BSLASHvref] = ACTIONS(12058), + [anon_sym_BSLASHVref] = ACTIONS(12058), + [anon_sym_BSLASHautoref] = ACTIONS(12058), + [anon_sym_BSLASHpageref] = ACTIONS(12058), + [anon_sym_BSLASHcref] = ACTIONS(12058), + [anon_sym_BSLASHCref] = ACTIONS(12058), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnameCref] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHlabelcref] = ACTIONS(12058), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12058), + [anon_sym_BSLASHeqref] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange] = ACTIONS(12058), + [anon_sym_BSLASHCrefrange] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewlabel] = ACTIONS(12058), + [anon_sym_BSLASHnewcommand] = ACTIONS(12058), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12058), + [anon_sym_BSLASHgls] = ACTIONS(12058), + [anon_sym_BSLASHGls] = ACTIONS(12058), + [anon_sym_BSLASHGLS] = ACTIONS(12058), + [anon_sym_BSLASHglspl] = ACTIONS(12058), + [anon_sym_BSLASHGlspl] = ACTIONS(12058), + [anon_sym_BSLASHGLSpl] = ACTIONS(12058), + [anon_sym_BSLASHglsdisp] = ACTIONS(12058), + [anon_sym_BSLASHglslink] = ACTIONS(12058), + [anon_sym_BSLASHglstext] = ACTIONS(12058), + [anon_sym_BSLASHGlstext] = ACTIONS(12058), + [anon_sym_BSLASHGLStext] = ACTIONS(12058), + [anon_sym_BSLASHglsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12058), + [anon_sym_BSLASHglsplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSplural] = ACTIONS(12058), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHglsname] = ACTIONS(12058), + [anon_sym_BSLASHGlsname] = ACTIONS(12058), + [anon_sym_BSLASHGLSname] = ACTIONS(12058), + [anon_sym_BSLASHglssymbol] = ACTIONS(12058), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12058), + [anon_sym_BSLASHglsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12058), + [anon_sym_BSLASHglsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12058), + [anon_sym_BSLASHglsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12058), + [anon_sym_BSLASHglsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12058), + [anon_sym_BSLASHglsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12058), + [anon_sym_BSLASHnewacronym] = ACTIONS(12058), + [anon_sym_BSLASHacrshort] = ACTIONS(12058), + [anon_sym_BSLASHAcrshort] = ACTIONS(12058), + [anon_sym_BSLASHACRshort] = ACTIONS(12058), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12058), + [anon_sym_BSLASHacrlong] = ACTIONS(12058), + [anon_sym_BSLASHAcrlong] = ACTIONS(12058), + [anon_sym_BSLASHACRlong] = ACTIONS(12058), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12058), + [anon_sym_BSLASHacrfull] = ACTIONS(12058), + [anon_sym_BSLASHAcrfull] = ACTIONS(12058), + [anon_sym_BSLASHACRfull] = ACTIONS(12058), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12058), + [anon_sym_BSLASHacs] = ACTIONS(12058), + [anon_sym_BSLASHAcs] = ACTIONS(12058), + [anon_sym_BSLASHacsp] = ACTIONS(12058), + [anon_sym_BSLASHAcsp] = ACTIONS(12058), + [anon_sym_BSLASHacl] = ACTIONS(12058), + [anon_sym_BSLASHAcl] = ACTIONS(12058), + [anon_sym_BSLASHaclp] = ACTIONS(12058), + [anon_sym_BSLASHAclp] = ACTIONS(12058), + [anon_sym_BSLASHacf] = ACTIONS(12058), + [anon_sym_BSLASHAcf] = ACTIONS(12058), + [anon_sym_BSLASHacfp] = ACTIONS(12058), + [anon_sym_BSLASHAcfp] = ACTIONS(12058), + [anon_sym_BSLASHac] = ACTIONS(12058), + [anon_sym_BSLASHAc] = ACTIONS(12058), + [anon_sym_BSLASHacp] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12058), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12058), + [anon_sym_BSLASHcolor] = ACTIONS(12058), + [anon_sym_BSLASHcolorbox] = ACTIONS(12058), + [anon_sym_BSLASHtextcolor] = ACTIONS(12058), + [anon_sym_BSLASHpagecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12058), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12058), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12058), + }, + [1139] = { + [sym_brace_group] = STATE(1139), + [sym_bracket_group] = STATE(1139), + [sym_paren_group] = STATE(1139), + [aux_sym_generic_command_repeat1] = STATE(1139), + [sym_generic_command_name] = ACTIONS(12002), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12002), + [anon_sym_BSLASHitem] = ACTIONS(12002), + [anon_sym_LBRACK] = ACTIONS(12697), + [anon_sym_RBRACK] = ACTIONS(12000), + [anon_sym_LBRACE] = ACTIONS(12700), + [anon_sym_RBRACE] = ACTIONS(12000), + [anon_sym_LPAREN] = ACTIONS(12703), + [anon_sym_COMMA] = ACTIONS(12000), + [anon_sym_EQ] = ACTIONS(12000), + [sym_word] = ACTIONS(12000), + [sym_param] = ACTIONS(12000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12000), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12000), + [anon_sym_DOLLAR] = ACTIONS(12002), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12000), + [anon_sym_BSLASHbegin] = ACTIONS(12002), + [anon_sym_BSLASHcaption] = ACTIONS(12002), + [anon_sym_BSLASHcite] = ACTIONS(12002), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCite] = ACTIONS(12002), + [anon_sym_BSLASHnocite] = ACTIONS(12002), + [anon_sym_BSLASHcitet] = ACTIONS(12002), + [anon_sym_BSLASHcitep] = ACTIONS(12002), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteauthor] = ACTIONS(12002), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12002), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitetitle] = ACTIONS(12002), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteyear] = ACTIONS(12002), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitedate] = ACTIONS(12002), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteurl] = ACTIONS(12002), + [anon_sym_BSLASHfullcite] = ACTIONS(12002), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12002), + [anon_sym_BSLASHcitealt] = ACTIONS(12002), + [anon_sym_BSLASHcitealp] = ACTIONS(12002), + [anon_sym_BSLASHcitetext] = ACTIONS(12002), + [anon_sym_BSLASHparencite] = ACTIONS(12002), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHParencite] = ACTIONS(12002), + [anon_sym_BSLASHfootcite] = ACTIONS(12002), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12002), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12002), + [anon_sym_BSLASHtextcite] = ACTIONS(12002), + [anon_sym_BSLASHTextcite] = ACTIONS(12002), + [anon_sym_BSLASHsmartcite] = ACTIONS(12002), + [anon_sym_BSLASHSmartcite] = ACTIONS(12002), + [anon_sym_BSLASHsupercite] = ACTIONS(12002), + [anon_sym_BSLASHautocite] = ACTIONS(12002), + [anon_sym_BSLASHAutocite] = ACTIONS(12002), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHvolcite] = ACTIONS(12002), + [anon_sym_BSLASHVolcite] = ACTIONS(12002), + [anon_sym_BSLASHpvolcite] = ACTIONS(12002), + [anon_sym_BSLASHPvolcite] = ACTIONS(12002), + [anon_sym_BSLASHfvolcite] = ACTIONS(12002), + [anon_sym_BSLASHftvolcite] = ACTIONS(12002), + [anon_sym_BSLASHsvolcite] = ACTIONS(12002), + [anon_sym_BSLASHSvolcite] = ACTIONS(12002), + [anon_sym_BSLASHtvolcite] = ACTIONS(12002), + [anon_sym_BSLASHTvolcite] = ACTIONS(12002), + [anon_sym_BSLASHavolcite] = ACTIONS(12002), + [anon_sym_BSLASHAvolcite] = ACTIONS(12002), + [anon_sym_BSLASHnotecite] = ACTIONS(12002), + [anon_sym_BSLASHpnotecite] = ACTIONS(12002), + [anon_sym_BSLASHPnotecite] = ACTIONS(12002), + [anon_sym_BSLASHfnotecite] = ACTIONS(12002), + [anon_sym_BSLASHusepackage] = ACTIONS(12002), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12002), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12002), + [anon_sym_BSLASHinclude] = ACTIONS(12002), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12002), + [anon_sym_BSLASHinput] = ACTIONS(12002), + [anon_sym_BSLASHsubfile] = ACTIONS(12002), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12002), + [anon_sym_BSLASHbibliography] = ACTIONS(12002), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12002), + [anon_sym_BSLASHincludesvg] = ACTIONS(12002), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12002), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12002), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12002), + [anon_sym_BSLASHimport] = ACTIONS(12002), + [anon_sym_BSLASHsubimport] = ACTIONS(12002), + [anon_sym_BSLASHinputfrom] = ACTIONS(12002), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12002), + [anon_sym_BSLASHincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHlabel] = ACTIONS(12002), + [anon_sym_BSLASHref] = ACTIONS(12002), + [anon_sym_BSLASHvref] = ACTIONS(12002), + [anon_sym_BSLASHVref] = ACTIONS(12002), + [anon_sym_BSLASHautoref] = ACTIONS(12002), + [anon_sym_BSLASHpageref] = ACTIONS(12002), + [anon_sym_BSLASHcref] = ACTIONS(12002), + [anon_sym_BSLASHCref] = ACTIONS(12002), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnameCref] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHlabelcref] = ACTIONS(12002), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12002), + [anon_sym_BSLASHeqref] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange] = ACTIONS(12002), + [anon_sym_BSLASHCrefrange] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewlabel] = ACTIONS(12002), + [anon_sym_BSLASHnewcommand] = ACTIONS(12002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12002), + [anon_sym_BSLASHgls] = ACTIONS(12002), + [anon_sym_BSLASHGls] = ACTIONS(12002), + [anon_sym_BSLASHGLS] = ACTIONS(12002), + [anon_sym_BSLASHglspl] = ACTIONS(12002), + [anon_sym_BSLASHGlspl] = ACTIONS(12002), + [anon_sym_BSLASHGLSpl] = ACTIONS(12002), + [anon_sym_BSLASHglsdisp] = ACTIONS(12002), + [anon_sym_BSLASHglslink] = ACTIONS(12002), + [anon_sym_BSLASHglstext] = ACTIONS(12002), + [anon_sym_BSLASHGlstext] = ACTIONS(12002), + [anon_sym_BSLASHGLStext] = ACTIONS(12002), + [anon_sym_BSLASHglsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12002), + [anon_sym_BSLASHglsplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSplural] = ACTIONS(12002), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHglsname] = ACTIONS(12002), + [anon_sym_BSLASHGlsname] = ACTIONS(12002), + [anon_sym_BSLASHGLSname] = ACTIONS(12002), + [anon_sym_BSLASHglssymbol] = ACTIONS(12002), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12002), + [anon_sym_BSLASHglsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12002), + [anon_sym_BSLASHglsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12002), + [anon_sym_BSLASHglsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12002), + [anon_sym_BSLASHglsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12002), + [anon_sym_BSLASHglsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12002), + [anon_sym_BSLASHnewacronym] = ACTIONS(12002), + [anon_sym_BSLASHacrshort] = ACTIONS(12002), + [anon_sym_BSLASHAcrshort] = ACTIONS(12002), + [anon_sym_BSLASHACRshort] = ACTIONS(12002), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12002), + [anon_sym_BSLASHacrlong] = ACTIONS(12002), + [anon_sym_BSLASHAcrlong] = ACTIONS(12002), + [anon_sym_BSLASHACRlong] = ACTIONS(12002), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12002), + [anon_sym_BSLASHacrfull] = ACTIONS(12002), + [anon_sym_BSLASHAcrfull] = ACTIONS(12002), + [anon_sym_BSLASHACRfull] = ACTIONS(12002), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12002), + [anon_sym_BSLASHacs] = ACTIONS(12002), + [anon_sym_BSLASHAcs] = ACTIONS(12002), + [anon_sym_BSLASHacsp] = ACTIONS(12002), + [anon_sym_BSLASHAcsp] = ACTIONS(12002), + [anon_sym_BSLASHacl] = ACTIONS(12002), + [anon_sym_BSLASHAcl] = ACTIONS(12002), + [anon_sym_BSLASHaclp] = ACTIONS(12002), + [anon_sym_BSLASHAclp] = ACTIONS(12002), + [anon_sym_BSLASHacf] = ACTIONS(12002), + [anon_sym_BSLASHAcf] = ACTIONS(12002), + [anon_sym_BSLASHacfp] = ACTIONS(12002), + [anon_sym_BSLASHAcfp] = ACTIONS(12002), + [anon_sym_BSLASHac] = ACTIONS(12002), + [anon_sym_BSLASHAc] = ACTIONS(12002), + [anon_sym_BSLASHacp] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12002), + [anon_sym_BSLASHcolor] = ACTIONS(12002), + [anon_sym_BSLASHcolorbox] = ACTIONS(12002), + [anon_sym_BSLASHtextcolor] = ACTIONS(12002), + [anon_sym_BSLASHpagecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12002), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12002), + }, + [1140] = { + [sym_brace_group] = STATE(1141), + [sym_bracket_group] = STATE(1141), + [sym_paren_group] = STATE(1141), + [aux_sym_generic_command_repeat1] = STATE(1141), + [sym_generic_command_name] = ACTIONS(11990), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(11990), + [anon_sym_BSLASHitem] = ACTIONS(11990), + [anon_sym_LBRACK] = ACTIONS(12706), + [anon_sym_RBRACK] = ACTIONS(11988), + [anon_sym_LBRACE] = ACTIONS(10671), + [anon_sym_RBRACE] = ACTIONS(11988), + [anon_sym_LPAREN] = ACTIONS(12708), + [anon_sym_COMMA] = ACTIONS(11988), + [anon_sym_EQ] = ACTIONS(11988), + [sym_word] = ACTIONS(11988), + [sym_param] = ACTIONS(11988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11988), + [anon_sym_DOLLAR] = ACTIONS(11990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11988), + [anon_sym_BSLASHbegin] = ACTIONS(11990), + [anon_sym_BSLASHcaption] = ACTIONS(11990), + [anon_sym_BSLASHcite] = ACTIONS(11990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCite] = ACTIONS(11990), + [anon_sym_BSLASHnocite] = ACTIONS(11990), + [anon_sym_BSLASHcitet] = ACTIONS(11990), + [anon_sym_BSLASHcitep] = ACTIONS(11990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteauthor] = ACTIONS(11990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitetitle] = ACTIONS(11990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteyear] = ACTIONS(11990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitedate] = ACTIONS(11990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteurl] = ACTIONS(11990), + [anon_sym_BSLASHfullcite] = ACTIONS(11990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11990), + [anon_sym_BSLASHcitealt] = ACTIONS(11990), + [anon_sym_BSLASHcitealp] = ACTIONS(11990), + [anon_sym_BSLASHcitetext] = ACTIONS(11990), + [anon_sym_BSLASHparencite] = ACTIONS(11990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHParencite] = ACTIONS(11990), + [anon_sym_BSLASHfootcite] = ACTIONS(11990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11990), + [anon_sym_BSLASHtextcite] = ACTIONS(11990), + [anon_sym_BSLASHTextcite] = ACTIONS(11990), + [anon_sym_BSLASHsmartcite] = ACTIONS(11990), + [anon_sym_BSLASHSmartcite] = ACTIONS(11990), + [anon_sym_BSLASHsupercite] = ACTIONS(11990), + [anon_sym_BSLASHautocite] = ACTIONS(11990), + [anon_sym_BSLASHAutocite] = ACTIONS(11990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHvolcite] = ACTIONS(11990), + [anon_sym_BSLASHVolcite] = ACTIONS(11990), + [anon_sym_BSLASHpvolcite] = ACTIONS(11990), + [anon_sym_BSLASHPvolcite] = ACTIONS(11990), + [anon_sym_BSLASHfvolcite] = ACTIONS(11990), + [anon_sym_BSLASHftvolcite] = ACTIONS(11990), + [anon_sym_BSLASHsvolcite] = ACTIONS(11990), + [anon_sym_BSLASHSvolcite] = ACTIONS(11990), + [anon_sym_BSLASHtvolcite] = ACTIONS(11990), + [anon_sym_BSLASHTvolcite] = ACTIONS(11990), + [anon_sym_BSLASHavolcite] = ACTIONS(11990), + [anon_sym_BSLASHAvolcite] = ACTIONS(11990), + [anon_sym_BSLASHnotecite] = ACTIONS(11990), + [anon_sym_BSLASHpnotecite] = ACTIONS(11990), + [anon_sym_BSLASHPnotecite] = ACTIONS(11990), + [anon_sym_BSLASHfnotecite] = ACTIONS(11990), + [anon_sym_BSLASHusepackage] = ACTIONS(11990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11990), + [anon_sym_BSLASHinclude] = ACTIONS(11990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11990), + [anon_sym_BSLASHinput] = ACTIONS(11990), + [anon_sym_BSLASHsubfile] = ACTIONS(11990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11990), + [anon_sym_BSLASHbibliography] = ACTIONS(11990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11990), + [anon_sym_BSLASHincludesvg] = ACTIONS(11990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11990), + [anon_sym_BSLASHimport] = ACTIONS(11990), + [anon_sym_BSLASHsubimport] = ACTIONS(11990), + [anon_sym_BSLASHinputfrom] = ACTIONS(11990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11990), + [anon_sym_BSLASHincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHlabel] = ACTIONS(11990), + [anon_sym_BSLASHref] = ACTIONS(11990), + [anon_sym_BSLASHvref] = ACTIONS(11990), + [anon_sym_BSLASHVref] = ACTIONS(11990), + [anon_sym_BSLASHautoref] = ACTIONS(11990), + [anon_sym_BSLASHpageref] = ACTIONS(11990), + [anon_sym_BSLASHcref] = ACTIONS(11990), + [anon_sym_BSLASHCref] = ACTIONS(11990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnameCref] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHlabelcref] = ACTIONS(11990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11990), + [anon_sym_BSLASHeqref] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange] = ACTIONS(11990), + [anon_sym_BSLASHCrefrange] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewlabel] = ACTIONS(11990), + [anon_sym_BSLASHnewcommand] = ACTIONS(11990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11990), + [anon_sym_BSLASHgls] = ACTIONS(11990), + [anon_sym_BSLASHGls] = ACTIONS(11990), + [anon_sym_BSLASHGLS] = ACTIONS(11990), + [anon_sym_BSLASHglspl] = ACTIONS(11990), + [anon_sym_BSLASHGlspl] = ACTIONS(11990), + [anon_sym_BSLASHGLSpl] = ACTIONS(11990), + [anon_sym_BSLASHglsdisp] = ACTIONS(11990), + [anon_sym_BSLASHglslink] = ACTIONS(11990), + [anon_sym_BSLASHglstext] = ACTIONS(11990), + [anon_sym_BSLASHGlstext] = ACTIONS(11990), + [anon_sym_BSLASHGLStext] = ACTIONS(11990), + [anon_sym_BSLASHglsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11990), + [anon_sym_BSLASHglsplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSplural] = ACTIONS(11990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHglsname] = ACTIONS(11990), + [anon_sym_BSLASHGlsname] = ACTIONS(11990), + [anon_sym_BSLASHGLSname] = ACTIONS(11990), + [anon_sym_BSLASHglssymbol] = ACTIONS(11990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11990), + [anon_sym_BSLASHglsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11990), + [anon_sym_BSLASHglsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11990), + [anon_sym_BSLASHglsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11990), + [anon_sym_BSLASHglsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11990), + [anon_sym_BSLASHglsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11990), + [anon_sym_BSLASHnewacronym] = ACTIONS(11990), + [anon_sym_BSLASHacrshort] = ACTIONS(11990), + [anon_sym_BSLASHAcrshort] = ACTIONS(11990), + [anon_sym_BSLASHACRshort] = ACTIONS(11990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11990), + [anon_sym_BSLASHacrlong] = ACTIONS(11990), + [anon_sym_BSLASHAcrlong] = ACTIONS(11990), + [anon_sym_BSLASHACRlong] = ACTIONS(11990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11990), + [anon_sym_BSLASHacrfull] = ACTIONS(11990), + [anon_sym_BSLASHAcrfull] = ACTIONS(11990), + [anon_sym_BSLASHACRfull] = ACTIONS(11990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11990), + [anon_sym_BSLASHacs] = ACTIONS(11990), + [anon_sym_BSLASHAcs] = ACTIONS(11990), + [anon_sym_BSLASHacsp] = ACTIONS(11990), + [anon_sym_BSLASHAcsp] = ACTIONS(11990), + [anon_sym_BSLASHacl] = ACTIONS(11990), + [anon_sym_BSLASHAcl] = ACTIONS(11990), + [anon_sym_BSLASHaclp] = ACTIONS(11990), + [anon_sym_BSLASHAclp] = ACTIONS(11990), + [anon_sym_BSLASHacf] = ACTIONS(11990), + [anon_sym_BSLASHAcf] = ACTIONS(11990), + [anon_sym_BSLASHacfp] = ACTIONS(11990), + [anon_sym_BSLASHAcfp] = ACTIONS(11990), + [anon_sym_BSLASHac] = ACTIONS(11990), + [anon_sym_BSLASHAc] = ACTIONS(11990), + [anon_sym_BSLASHacp] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11990), + [anon_sym_BSLASHcolor] = ACTIONS(11990), + [anon_sym_BSLASHcolorbox] = ACTIONS(11990), + [anon_sym_BSLASHtextcolor] = ACTIONS(11990), + [anon_sym_BSLASHpagecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11990), + }, + [1141] = { + [sym_brace_group] = STATE(1139), + [sym_bracket_group] = STATE(1139), + [sym_paren_group] = STATE(1139), + [aux_sym_generic_command_repeat1] = STATE(1139), + [sym_generic_command_name] = ACTIONS(11998), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(11998), + [anon_sym_BSLASHitem] = ACTIONS(11998), + [anon_sym_LBRACK] = ACTIONS(12706), + [anon_sym_RBRACK] = ACTIONS(11996), + [anon_sym_LBRACE] = ACTIONS(10671), + [anon_sym_RBRACE] = ACTIONS(11996), + [anon_sym_LPAREN] = ACTIONS(12708), + [anon_sym_COMMA] = ACTIONS(11996), + [anon_sym_EQ] = ACTIONS(11996), + [sym_word] = ACTIONS(11996), + [sym_param] = ACTIONS(11996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11996), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11996), + [anon_sym_DOLLAR] = ACTIONS(11998), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11996), + [anon_sym_BSLASHbegin] = ACTIONS(11998), + [anon_sym_BSLASHcaption] = ACTIONS(11998), + [anon_sym_BSLASHcite] = ACTIONS(11998), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCite] = ACTIONS(11998), + [anon_sym_BSLASHnocite] = ACTIONS(11998), + [anon_sym_BSLASHcitet] = ACTIONS(11998), + [anon_sym_BSLASHcitep] = ACTIONS(11998), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteauthor] = ACTIONS(11998), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11998), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitetitle] = ACTIONS(11998), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteyear] = ACTIONS(11998), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitedate] = ACTIONS(11998), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteurl] = ACTIONS(11998), + [anon_sym_BSLASHfullcite] = ACTIONS(11998), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11998), + [anon_sym_BSLASHcitealt] = ACTIONS(11998), + [anon_sym_BSLASHcitealp] = ACTIONS(11998), + [anon_sym_BSLASHcitetext] = ACTIONS(11998), + [anon_sym_BSLASHparencite] = ACTIONS(11998), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHParencite] = ACTIONS(11998), + [anon_sym_BSLASHfootcite] = ACTIONS(11998), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11998), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11998), + [anon_sym_BSLASHtextcite] = ACTIONS(11998), + [anon_sym_BSLASHTextcite] = ACTIONS(11998), + [anon_sym_BSLASHsmartcite] = ACTIONS(11998), + [anon_sym_BSLASHSmartcite] = ACTIONS(11998), + [anon_sym_BSLASHsupercite] = ACTIONS(11998), + [anon_sym_BSLASHautocite] = ACTIONS(11998), + [anon_sym_BSLASHAutocite] = ACTIONS(11998), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHvolcite] = ACTIONS(11998), + [anon_sym_BSLASHVolcite] = ACTIONS(11998), + [anon_sym_BSLASHpvolcite] = ACTIONS(11998), + [anon_sym_BSLASHPvolcite] = ACTIONS(11998), + [anon_sym_BSLASHfvolcite] = ACTIONS(11998), + [anon_sym_BSLASHftvolcite] = ACTIONS(11998), + [anon_sym_BSLASHsvolcite] = ACTIONS(11998), + [anon_sym_BSLASHSvolcite] = ACTIONS(11998), + [anon_sym_BSLASHtvolcite] = ACTIONS(11998), + [anon_sym_BSLASHTvolcite] = ACTIONS(11998), + [anon_sym_BSLASHavolcite] = ACTIONS(11998), + [anon_sym_BSLASHAvolcite] = ACTIONS(11998), + [anon_sym_BSLASHnotecite] = ACTIONS(11998), + [anon_sym_BSLASHpnotecite] = ACTIONS(11998), + [anon_sym_BSLASHPnotecite] = ACTIONS(11998), + [anon_sym_BSLASHfnotecite] = ACTIONS(11998), + [anon_sym_BSLASHusepackage] = ACTIONS(11998), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11998), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11998), + [anon_sym_BSLASHinclude] = ACTIONS(11998), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11998), + [anon_sym_BSLASHinput] = ACTIONS(11998), + [anon_sym_BSLASHsubfile] = ACTIONS(11998), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11998), + [anon_sym_BSLASHbibliography] = ACTIONS(11998), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11998), + [anon_sym_BSLASHincludesvg] = ACTIONS(11998), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11998), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11998), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11998), + [anon_sym_BSLASHimport] = ACTIONS(11998), + [anon_sym_BSLASHsubimport] = ACTIONS(11998), + [anon_sym_BSLASHinputfrom] = ACTIONS(11998), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11998), + [anon_sym_BSLASHincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHlabel] = ACTIONS(11998), + [anon_sym_BSLASHref] = ACTIONS(11998), + [anon_sym_BSLASHvref] = ACTIONS(11998), + [anon_sym_BSLASHVref] = ACTIONS(11998), + [anon_sym_BSLASHautoref] = ACTIONS(11998), + [anon_sym_BSLASHpageref] = ACTIONS(11998), + [anon_sym_BSLASHcref] = ACTIONS(11998), + [anon_sym_BSLASHCref] = ACTIONS(11998), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnameCref] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHlabelcref] = ACTIONS(11998), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11998), + [anon_sym_BSLASHeqref] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange] = ACTIONS(11998), + [anon_sym_BSLASHCrefrange] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewlabel] = ACTIONS(11998), + [anon_sym_BSLASHnewcommand] = ACTIONS(11998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11998), + [anon_sym_BSLASHgls] = ACTIONS(11998), + [anon_sym_BSLASHGls] = ACTIONS(11998), + [anon_sym_BSLASHGLS] = ACTIONS(11998), + [anon_sym_BSLASHglspl] = ACTIONS(11998), + [anon_sym_BSLASHGlspl] = ACTIONS(11998), + [anon_sym_BSLASHGLSpl] = ACTIONS(11998), + [anon_sym_BSLASHglsdisp] = ACTIONS(11998), + [anon_sym_BSLASHglslink] = ACTIONS(11998), + [anon_sym_BSLASHglstext] = ACTIONS(11998), + [anon_sym_BSLASHGlstext] = ACTIONS(11998), + [anon_sym_BSLASHGLStext] = ACTIONS(11998), + [anon_sym_BSLASHglsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11998), + [anon_sym_BSLASHglsplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSplural] = ACTIONS(11998), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHglsname] = ACTIONS(11998), + [anon_sym_BSLASHGlsname] = ACTIONS(11998), + [anon_sym_BSLASHGLSname] = ACTIONS(11998), + [anon_sym_BSLASHglssymbol] = ACTIONS(11998), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11998), + [anon_sym_BSLASHglsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11998), + [anon_sym_BSLASHglsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11998), + [anon_sym_BSLASHglsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11998), + [anon_sym_BSLASHglsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11998), + [anon_sym_BSLASHglsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11998), + [anon_sym_BSLASHnewacronym] = ACTIONS(11998), + [anon_sym_BSLASHacrshort] = ACTIONS(11998), + [anon_sym_BSLASHAcrshort] = ACTIONS(11998), + [anon_sym_BSLASHACRshort] = ACTIONS(11998), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11998), + [anon_sym_BSLASHacrlong] = ACTIONS(11998), + [anon_sym_BSLASHAcrlong] = ACTIONS(11998), + [anon_sym_BSLASHACRlong] = ACTIONS(11998), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11998), + [anon_sym_BSLASHacrfull] = ACTIONS(11998), + [anon_sym_BSLASHAcrfull] = ACTIONS(11998), + [anon_sym_BSLASHACRfull] = ACTIONS(11998), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11998), + [anon_sym_BSLASHacs] = ACTIONS(11998), + [anon_sym_BSLASHAcs] = ACTIONS(11998), + [anon_sym_BSLASHacsp] = ACTIONS(11998), + [anon_sym_BSLASHAcsp] = ACTIONS(11998), + [anon_sym_BSLASHacl] = ACTIONS(11998), + [anon_sym_BSLASHAcl] = ACTIONS(11998), + [anon_sym_BSLASHaclp] = ACTIONS(11998), + [anon_sym_BSLASHAclp] = ACTIONS(11998), + [anon_sym_BSLASHacf] = ACTIONS(11998), + [anon_sym_BSLASHAcf] = ACTIONS(11998), + [anon_sym_BSLASHacfp] = ACTIONS(11998), + [anon_sym_BSLASHAcfp] = ACTIONS(11998), + [anon_sym_BSLASHac] = ACTIONS(11998), + [anon_sym_BSLASHAc] = ACTIONS(11998), + [anon_sym_BSLASHacp] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11998), + [anon_sym_BSLASHcolor] = ACTIONS(11998), + [anon_sym_BSLASHcolorbox] = ACTIONS(11998), + [anon_sym_BSLASHtextcolor] = ACTIONS(11998), + [anon_sym_BSLASHpagecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11998), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11998), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11998), + }, + [1142] = { + [sym__text_fragment] = STATE(1142), + [aux_sym_text_repeat1] = STATE(1142), + [sym_generic_command_name] = ACTIONS(12021), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12021), + [aux_sym_paragraph_token1] = ACTIONS(12021), + [aux_sym_subparagraph_token1] = ACTIONS(12021), + [anon_sym_BSLASHitem] = ACTIONS(12021), + [anon_sym_LBRACK] = ACTIONS(12019), + [anon_sym_RBRACK] = ACTIONS(12019), + [anon_sym_LBRACE] = ACTIONS(12019), + [anon_sym_RBRACE] = ACTIONS(12019), + [anon_sym_LPAREN] = ACTIONS(12019), + [anon_sym_COMMA] = ACTIONS(12710), + [anon_sym_EQ] = ACTIONS(12710), + [sym_word] = ACTIONS(12710), + [sym_param] = ACTIONS(12019), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12019), + [anon_sym_DOLLAR] = ACTIONS(12021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12019), + [anon_sym_BSLASHbegin] = ACTIONS(12021), + [anon_sym_BSLASHcaption] = ACTIONS(12021), + [anon_sym_BSLASHcite] = ACTIONS(12021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCite] = ACTIONS(12021), + [anon_sym_BSLASHnocite] = ACTIONS(12021), + [anon_sym_BSLASHcitet] = ACTIONS(12021), + [anon_sym_BSLASHcitep] = ACTIONS(12021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteauthor] = ACTIONS(12021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitetitle] = ACTIONS(12021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteyear] = ACTIONS(12021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitedate] = ACTIONS(12021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteurl] = ACTIONS(12021), + [anon_sym_BSLASHfullcite] = ACTIONS(12021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12021), + [anon_sym_BSLASHcitealt] = ACTIONS(12021), + [anon_sym_BSLASHcitealp] = ACTIONS(12021), + [anon_sym_BSLASHcitetext] = ACTIONS(12021), + [anon_sym_BSLASHparencite] = ACTIONS(12021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHParencite] = ACTIONS(12021), + [anon_sym_BSLASHfootcite] = ACTIONS(12021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12021), + [anon_sym_BSLASHtextcite] = ACTIONS(12021), + [anon_sym_BSLASHTextcite] = ACTIONS(12021), + [anon_sym_BSLASHsmartcite] = ACTIONS(12021), + [anon_sym_BSLASHSmartcite] = ACTIONS(12021), + [anon_sym_BSLASHsupercite] = ACTIONS(12021), + [anon_sym_BSLASHautocite] = ACTIONS(12021), + [anon_sym_BSLASHAutocite] = ACTIONS(12021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHvolcite] = ACTIONS(12021), + [anon_sym_BSLASHVolcite] = ACTIONS(12021), + [anon_sym_BSLASHpvolcite] = ACTIONS(12021), + [anon_sym_BSLASHPvolcite] = ACTIONS(12021), + [anon_sym_BSLASHfvolcite] = ACTIONS(12021), + [anon_sym_BSLASHftvolcite] = ACTIONS(12021), + [anon_sym_BSLASHsvolcite] = ACTIONS(12021), + [anon_sym_BSLASHSvolcite] = ACTIONS(12021), + [anon_sym_BSLASHtvolcite] = ACTIONS(12021), + [anon_sym_BSLASHTvolcite] = ACTIONS(12021), + [anon_sym_BSLASHavolcite] = ACTIONS(12021), + [anon_sym_BSLASHAvolcite] = ACTIONS(12021), + [anon_sym_BSLASHnotecite] = ACTIONS(12021), + [anon_sym_BSLASHpnotecite] = ACTIONS(12021), + [anon_sym_BSLASHPnotecite] = ACTIONS(12021), + [anon_sym_BSLASHfnotecite] = ACTIONS(12021), + [anon_sym_BSLASHusepackage] = ACTIONS(12021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12021), + [anon_sym_BSLASHinclude] = ACTIONS(12021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12021), + [anon_sym_BSLASHinput] = ACTIONS(12021), + [anon_sym_BSLASHsubfile] = ACTIONS(12021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12021), + [anon_sym_BSLASHbibliography] = ACTIONS(12021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12021), + [anon_sym_BSLASHincludesvg] = ACTIONS(12021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12021), + [anon_sym_BSLASHimport] = ACTIONS(12021), + [anon_sym_BSLASHsubimport] = ACTIONS(12021), + [anon_sym_BSLASHinputfrom] = ACTIONS(12021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12021), + [anon_sym_BSLASHincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHlabel] = ACTIONS(12021), + [anon_sym_BSLASHref] = ACTIONS(12021), + [anon_sym_BSLASHvref] = ACTIONS(12021), + [anon_sym_BSLASHVref] = ACTIONS(12021), + [anon_sym_BSLASHautoref] = ACTIONS(12021), + [anon_sym_BSLASHpageref] = ACTIONS(12021), + [anon_sym_BSLASHcref] = ACTIONS(12021), + [anon_sym_BSLASHCref] = ACTIONS(12021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnameCref] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHlabelcref] = ACTIONS(12021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12021), + [anon_sym_BSLASHeqref] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange] = ACTIONS(12021), + [anon_sym_BSLASHCrefrange] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewlabel] = ACTIONS(12021), + [anon_sym_BSLASHnewcommand] = ACTIONS(12021), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12021), + [anon_sym_BSLASHgls] = ACTIONS(12021), + [anon_sym_BSLASHGls] = ACTIONS(12021), + [anon_sym_BSLASHGLS] = ACTIONS(12021), + [anon_sym_BSLASHglspl] = ACTIONS(12021), + [anon_sym_BSLASHGlspl] = ACTIONS(12021), + [anon_sym_BSLASHGLSpl] = ACTIONS(12021), + [anon_sym_BSLASHglsdisp] = ACTIONS(12021), + [anon_sym_BSLASHglslink] = ACTIONS(12021), + [anon_sym_BSLASHglstext] = ACTIONS(12021), + [anon_sym_BSLASHGlstext] = ACTIONS(12021), + [anon_sym_BSLASHGLStext] = ACTIONS(12021), + [anon_sym_BSLASHglsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12021), + [anon_sym_BSLASHglsplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSplural] = ACTIONS(12021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHglsname] = ACTIONS(12021), + [anon_sym_BSLASHGlsname] = ACTIONS(12021), + [anon_sym_BSLASHGLSname] = ACTIONS(12021), + [anon_sym_BSLASHglssymbol] = ACTIONS(12021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12021), + [anon_sym_BSLASHglsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12021), + [anon_sym_BSLASHglsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12021), + [anon_sym_BSLASHglsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12021), + [anon_sym_BSLASHglsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12021), + [anon_sym_BSLASHglsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12021), + [anon_sym_BSLASHnewacronym] = ACTIONS(12021), + [anon_sym_BSLASHacrshort] = ACTIONS(12021), + [anon_sym_BSLASHAcrshort] = ACTIONS(12021), + [anon_sym_BSLASHACRshort] = ACTIONS(12021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12021), + [anon_sym_BSLASHacrlong] = ACTIONS(12021), + [anon_sym_BSLASHAcrlong] = ACTIONS(12021), + [anon_sym_BSLASHACRlong] = ACTIONS(12021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12021), + [anon_sym_BSLASHacrfull] = ACTIONS(12021), + [anon_sym_BSLASHAcrfull] = ACTIONS(12021), + [anon_sym_BSLASHACRfull] = ACTIONS(12021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12021), + [anon_sym_BSLASHacs] = ACTIONS(12021), + [anon_sym_BSLASHAcs] = ACTIONS(12021), + [anon_sym_BSLASHacsp] = ACTIONS(12021), + [anon_sym_BSLASHAcsp] = ACTIONS(12021), + [anon_sym_BSLASHacl] = ACTIONS(12021), + [anon_sym_BSLASHAcl] = ACTIONS(12021), + [anon_sym_BSLASHaclp] = ACTIONS(12021), + [anon_sym_BSLASHAclp] = ACTIONS(12021), + [anon_sym_BSLASHacf] = ACTIONS(12021), + [anon_sym_BSLASHAcf] = ACTIONS(12021), + [anon_sym_BSLASHacfp] = ACTIONS(12021), + [anon_sym_BSLASHAcfp] = ACTIONS(12021), + [anon_sym_BSLASHac] = ACTIONS(12021), + [anon_sym_BSLASHAc] = ACTIONS(12021), + [anon_sym_BSLASHacp] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12021), + [anon_sym_BSLASHcolor] = ACTIONS(12021), + [anon_sym_BSLASHcolorbox] = ACTIONS(12021), + [anon_sym_BSLASHtextcolor] = ACTIONS(12021), + [anon_sym_BSLASHpagecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12021), + }, + [1143] = { + [sym__text_fragment] = STATE(1142), + [aux_sym_text_repeat1] = STATE(1142), + [sym_generic_command_name] = ACTIONS(12015), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12015), + [aux_sym_paragraph_token1] = ACTIONS(12015), + [aux_sym_subparagraph_token1] = ACTIONS(12015), + [anon_sym_BSLASHitem] = ACTIONS(12015), + [anon_sym_LBRACK] = ACTIONS(12013), + [anon_sym_RBRACK] = ACTIONS(12013), + [anon_sym_LBRACE] = ACTIONS(12013), + [anon_sym_RBRACE] = ACTIONS(12013), + [anon_sym_LPAREN] = ACTIONS(12013), + [anon_sym_COMMA] = ACTIONS(12713), + [anon_sym_EQ] = ACTIONS(12713), + [sym_word] = ACTIONS(12713), + [sym_param] = ACTIONS(12013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12013), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12013), + [anon_sym_DOLLAR] = ACTIONS(12015), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12013), + [anon_sym_BSLASHbegin] = ACTIONS(12015), + [anon_sym_BSLASHcaption] = ACTIONS(12015), + [anon_sym_BSLASHcite] = ACTIONS(12015), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCite] = ACTIONS(12015), + [anon_sym_BSLASHnocite] = ACTIONS(12015), + [anon_sym_BSLASHcitet] = ACTIONS(12015), + [anon_sym_BSLASHcitep] = ACTIONS(12015), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteauthor] = ACTIONS(12015), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12015), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitetitle] = ACTIONS(12015), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteyear] = ACTIONS(12015), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitedate] = ACTIONS(12015), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteurl] = ACTIONS(12015), + [anon_sym_BSLASHfullcite] = ACTIONS(12015), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12015), + [anon_sym_BSLASHcitealt] = ACTIONS(12015), + [anon_sym_BSLASHcitealp] = ACTIONS(12015), + [anon_sym_BSLASHcitetext] = ACTIONS(12015), + [anon_sym_BSLASHparencite] = ACTIONS(12015), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHParencite] = ACTIONS(12015), + [anon_sym_BSLASHfootcite] = ACTIONS(12015), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12015), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12015), + [anon_sym_BSLASHtextcite] = ACTIONS(12015), + [anon_sym_BSLASHTextcite] = ACTIONS(12015), + [anon_sym_BSLASHsmartcite] = ACTIONS(12015), + [anon_sym_BSLASHSmartcite] = ACTIONS(12015), + [anon_sym_BSLASHsupercite] = ACTIONS(12015), + [anon_sym_BSLASHautocite] = ACTIONS(12015), + [anon_sym_BSLASHAutocite] = ACTIONS(12015), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHvolcite] = ACTIONS(12015), + [anon_sym_BSLASHVolcite] = ACTIONS(12015), + [anon_sym_BSLASHpvolcite] = ACTIONS(12015), + [anon_sym_BSLASHPvolcite] = ACTIONS(12015), + [anon_sym_BSLASHfvolcite] = ACTIONS(12015), + [anon_sym_BSLASHftvolcite] = ACTIONS(12015), + [anon_sym_BSLASHsvolcite] = ACTIONS(12015), + [anon_sym_BSLASHSvolcite] = ACTIONS(12015), + [anon_sym_BSLASHtvolcite] = ACTIONS(12015), + [anon_sym_BSLASHTvolcite] = ACTIONS(12015), + [anon_sym_BSLASHavolcite] = ACTIONS(12015), + [anon_sym_BSLASHAvolcite] = ACTIONS(12015), + [anon_sym_BSLASHnotecite] = ACTIONS(12015), + [anon_sym_BSLASHpnotecite] = ACTIONS(12015), + [anon_sym_BSLASHPnotecite] = ACTIONS(12015), + [anon_sym_BSLASHfnotecite] = ACTIONS(12015), + [anon_sym_BSLASHusepackage] = ACTIONS(12015), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12015), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12015), + [anon_sym_BSLASHinclude] = ACTIONS(12015), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12015), + [anon_sym_BSLASHinput] = ACTIONS(12015), + [anon_sym_BSLASHsubfile] = ACTIONS(12015), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12015), + [anon_sym_BSLASHbibliography] = ACTIONS(12015), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12015), + [anon_sym_BSLASHincludesvg] = ACTIONS(12015), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12015), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12015), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12015), + [anon_sym_BSLASHimport] = ACTIONS(12015), + [anon_sym_BSLASHsubimport] = ACTIONS(12015), + [anon_sym_BSLASHinputfrom] = ACTIONS(12015), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12015), + [anon_sym_BSLASHincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHlabel] = ACTIONS(12015), + [anon_sym_BSLASHref] = ACTIONS(12015), + [anon_sym_BSLASHvref] = ACTIONS(12015), + [anon_sym_BSLASHVref] = ACTIONS(12015), + [anon_sym_BSLASHautoref] = ACTIONS(12015), + [anon_sym_BSLASHpageref] = ACTIONS(12015), + [anon_sym_BSLASHcref] = ACTIONS(12015), + [anon_sym_BSLASHCref] = ACTIONS(12015), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnameCref] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHlabelcref] = ACTIONS(12015), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12015), + [anon_sym_BSLASHeqref] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange] = ACTIONS(12015), + [anon_sym_BSLASHCrefrange] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewlabel] = ACTIONS(12015), + [anon_sym_BSLASHnewcommand] = ACTIONS(12015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12015), + [anon_sym_BSLASHgls] = ACTIONS(12015), + [anon_sym_BSLASHGls] = ACTIONS(12015), + [anon_sym_BSLASHGLS] = ACTIONS(12015), + [anon_sym_BSLASHglspl] = ACTIONS(12015), + [anon_sym_BSLASHGlspl] = ACTIONS(12015), + [anon_sym_BSLASHGLSpl] = ACTIONS(12015), + [anon_sym_BSLASHglsdisp] = ACTIONS(12015), + [anon_sym_BSLASHglslink] = ACTIONS(12015), + [anon_sym_BSLASHglstext] = ACTIONS(12015), + [anon_sym_BSLASHGlstext] = ACTIONS(12015), + [anon_sym_BSLASHGLStext] = ACTIONS(12015), + [anon_sym_BSLASHglsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12015), + [anon_sym_BSLASHglsplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSplural] = ACTIONS(12015), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHglsname] = ACTIONS(12015), + [anon_sym_BSLASHGlsname] = ACTIONS(12015), + [anon_sym_BSLASHGLSname] = ACTIONS(12015), + [anon_sym_BSLASHglssymbol] = ACTIONS(12015), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12015), + [anon_sym_BSLASHglsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12015), + [anon_sym_BSLASHglsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12015), + [anon_sym_BSLASHglsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12015), + [anon_sym_BSLASHglsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12015), + [anon_sym_BSLASHglsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12015), + [anon_sym_BSLASHnewacronym] = ACTIONS(12015), + [anon_sym_BSLASHacrshort] = ACTIONS(12015), + [anon_sym_BSLASHAcrshort] = ACTIONS(12015), + [anon_sym_BSLASHACRshort] = ACTIONS(12015), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12015), + [anon_sym_BSLASHacrlong] = ACTIONS(12015), + [anon_sym_BSLASHAcrlong] = ACTIONS(12015), + [anon_sym_BSLASHACRlong] = ACTIONS(12015), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12015), + [anon_sym_BSLASHacrfull] = ACTIONS(12015), + [anon_sym_BSLASHAcrfull] = ACTIONS(12015), + [anon_sym_BSLASHACRfull] = ACTIONS(12015), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12015), + [anon_sym_BSLASHacs] = ACTIONS(12015), + [anon_sym_BSLASHAcs] = ACTIONS(12015), + [anon_sym_BSLASHacsp] = ACTIONS(12015), + [anon_sym_BSLASHAcsp] = ACTIONS(12015), + [anon_sym_BSLASHacl] = ACTIONS(12015), + [anon_sym_BSLASHAcl] = ACTIONS(12015), + [anon_sym_BSLASHaclp] = ACTIONS(12015), + [anon_sym_BSLASHAclp] = ACTIONS(12015), + [anon_sym_BSLASHacf] = ACTIONS(12015), + [anon_sym_BSLASHAcf] = ACTIONS(12015), + [anon_sym_BSLASHacfp] = ACTIONS(12015), + [anon_sym_BSLASHAcfp] = ACTIONS(12015), + [anon_sym_BSLASHac] = ACTIONS(12015), + [anon_sym_BSLASHAc] = ACTIONS(12015), + [anon_sym_BSLASHacp] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12015), + [anon_sym_BSLASHcolor] = ACTIONS(12015), + [anon_sym_BSLASHcolorbox] = ACTIONS(12015), + [anon_sym_BSLASHtextcolor] = ACTIONS(12015), + [anon_sym_BSLASHpagecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12015), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12015), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12015), + }, + [1144] = { + [sym_generic_command_name] = ACTIONS(12437), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12437), + [aux_sym_subsection_token1] = ACTIONS(12437), + [aux_sym_subsubsection_token1] = ACTIONS(12437), + [aux_sym_paragraph_token1] = ACTIONS(12437), + [aux_sym_subparagraph_token1] = ACTIONS(12437), + [anon_sym_BSLASHitem] = ACTIONS(12437), + [anon_sym_LBRACK] = ACTIONS(12435), + [anon_sym_RBRACK] = ACTIONS(12435), + [anon_sym_LBRACE] = ACTIONS(12435), + [anon_sym_RBRACE] = ACTIONS(12435), + [anon_sym_LPAREN] = ACTIONS(12435), + [anon_sym_COMMA] = ACTIONS(12435), + [anon_sym_EQ] = ACTIONS(12435), + [sym_word] = ACTIONS(12435), + [sym_param] = ACTIONS(12435), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12435), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12435), + [anon_sym_DOLLAR] = ACTIONS(12437), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12435), + [anon_sym_BSLASHbegin] = ACTIONS(12437), + [anon_sym_BSLASHcaption] = ACTIONS(12437), + [anon_sym_BSLASHcite] = ACTIONS(12437), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCite] = ACTIONS(12437), + [anon_sym_BSLASHnocite] = ACTIONS(12437), + [anon_sym_BSLASHcitet] = ACTIONS(12437), + [anon_sym_BSLASHcitep] = ACTIONS(12437), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteauthor] = ACTIONS(12437), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12437), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitetitle] = ACTIONS(12437), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteyear] = ACTIONS(12437), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitedate] = ACTIONS(12437), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteurl] = ACTIONS(12437), + [anon_sym_BSLASHfullcite] = ACTIONS(12437), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12437), + [anon_sym_BSLASHcitealt] = ACTIONS(12437), + [anon_sym_BSLASHcitealp] = ACTIONS(12437), + [anon_sym_BSLASHcitetext] = ACTIONS(12437), + [anon_sym_BSLASHparencite] = ACTIONS(12437), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHParencite] = ACTIONS(12437), + [anon_sym_BSLASHfootcite] = ACTIONS(12437), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12437), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12437), + [anon_sym_BSLASHtextcite] = ACTIONS(12437), + [anon_sym_BSLASHTextcite] = ACTIONS(12437), + [anon_sym_BSLASHsmartcite] = ACTIONS(12437), + [anon_sym_BSLASHSmartcite] = ACTIONS(12437), + [anon_sym_BSLASHsupercite] = ACTIONS(12437), + [anon_sym_BSLASHautocite] = ACTIONS(12437), + [anon_sym_BSLASHAutocite] = ACTIONS(12437), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHvolcite] = ACTIONS(12437), + [anon_sym_BSLASHVolcite] = ACTIONS(12437), + [anon_sym_BSLASHpvolcite] = ACTIONS(12437), + [anon_sym_BSLASHPvolcite] = ACTIONS(12437), + [anon_sym_BSLASHfvolcite] = ACTIONS(12437), + [anon_sym_BSLASHftvolcite] = ACTIONS(12437), + [anon_sym_BSLASHsvolcite] = ACTIONS(12437), + [anon_sym_BSLASHSvolcite] = ACTIONS(12437), + [anon_sym_BSLASHtvolcite] = ACTIONS(12437), + [anon_sym_BSLASHTvolcite] = ACTIONS(12437), + [anon_sym_BSLASHavolcite] = ACTIONS(12437), + [anon_sym_BSLASHAvolcite] = ACTIONS(12437), + [anon_sym_BSLASHnotecite] = ACTIONS(12437), + [anon_sym_BSLASHpnotecite] = ACTIONS(12437), + [anon_sym_BSLASHPnotecite] = ACTIONS(12437), + [anon_sym_BSLASHfnotecite] = ACTIONS(12437), + [anon_sym_BSLASHusepackage] = ACTIONS(12437), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12437), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12437), + [anon_sym_BSLASHinclude] = ACTIONS(12437), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12437), + [anon_sym_BSLASHinput] = ACTIONS(12437), + [anon_sym_BSLASHsubfile] = ACTIONS(12437), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12437), + [anon_sym_BSLASHbibliography] = ACTIONS(12437), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12437), + [anon_sym_BSLASHincludesvg] = ACTIONS(12437), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12437), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12437), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12437), + [anon_sym_BSLASHimport] = ACTIONS(12437), + [anon_sym_BSLASHsubimport] = ACTIONS(12437), + [anon_sym_BSLASHinputfrom] = ACTIONS(12437), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12437), + [anon_sym_BSLASHincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHlabel] = ACTIONS(12437), + [anon_sym_BSLASHref] = ACTIONS(12437), + [anon_sym_BSLASHvref] = ACTIONS(12437), + [anon_sym_BSLASHVref] = ACTIONS(12437), + [anon_sym_BSLASHautoref] = ACTIONS(12437), + [anon_sym_BSLASHpageref] = ACTIONS(12437), + [anon_sym_BSLASHcref] = ACTIONS(12437), + [anon_sym_BSLASHCref] = ACTIONS(12437), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnameCref] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHlabelcref] = ACTIONS(12437), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12437), + [anon_sym_BSLASHeqref] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange] = ACTIONS(12437), + [anon_sym_BSLASHCrefrange] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewlabel] = ACTIONS(12437), + [anon_sym_BSLASHnewcommand] = ACTIONS(12437), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12437), + [anon_sym_BSLASHgls] = ACTIONS(12437), + [anon_sym_BSLASHGls] = ACTIONS(12437), + [anon_sym_BSLASHGLS] = ACTIONS(12437), + [anon_sym_BSLASHglspl] = ACTIONS(12437), + [anon_sym_BSLASHGlspl] = ACTIONS(12437), + [anon_sym_BSLASHGLSpl] = ACTIONS(12437), + [anon_sym_BSLASHglsdisp] = ACTIONS(12437), + [anon_sym_BSLASHglslink] = ACTIONS(12437), + [anon_sym_BSLASHglstext] = ACTIONS(12437), + [anon_sym_BSLASHGlstext] = ACTIONS(12437), + [anon_sym_BSLASHGLStext] = ACTIONS(12437), + [anon_sym_BSLASHglsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12437), + [anon_sym_BSLASHglsplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSplural] = ACTIONS(12437), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHglsname] = ACTIONS(12437), + [anon_sym_BSLASHGlsname] = ACTIONS(12437), + [anon_sym_BSLASHGLSname] = ACTIONS(12437), + [anon_sym_BSLASHglssymbol] = ACTIONS(12437), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12437), + [anon_sym_BSLASHglsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12437), + [anon_sym_BSLASHglsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12437), + [anon_sym_BSLASHglsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12437), + [anon_sym_BSLASHglsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12437), + [anon_sym_BSLASHglsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12437), + [anon_sym_BSLASHnewacronym] = ACTIONS(12437), + [anon_sym_BSLASHacrshort] = ACTIONS(12437), + [anon_sym_BSLASHAcrshort] = ACTIONS(12437), + [anon_sym_BSLASHACRshort] = ACTIONS(12437), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12437), + [anon_sym_BSLASHacrlong] = ACTIONS(12437), + [anon_sym_BSLASHAcrlong] = ACTIONS(12437), + [anon_sym_BSLASHACRlong] = ACTIONS(12437), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12437), + [anon_sym_BSLASHacrfull] = ACTIONS(12437), + [anon_sym_BSLASHAcrfull] = ACTIONS(12437), + [anon_sym_BSLASHACRfull] = ACTIONS(12437), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12437), + [anon_sym_BSLASHacs] = ACTIONS(12437), + [anon_sym_BSLASHAcs] = ACTIONS(12437), + [anon_sym_BSLASHacsp] = ACTIONS(12437), + [anon_sym_BSLASHAcsp] = ACTIONS(12437), + [anon_sym_BSLASHacl] = ACTIONS(12437), + [anon_sym_BSLASHAcl] = ACTIONS(12437), + [anon_sym_BSLASHaclp] = ACTIONS(12437), + [anon_sym_BSLASHAclp] = ACTIONS(12437), + [anon_sym_BSLASHacf] = ACTIONS(12437), + [anon_sym_BSLASHAcf] = ACTIONS(12437), + [anon_sym_BSLASHacfp] = ACTIONS(12437), + [anon_sym_BSLASHAcfp] = ACTIONS(12437), + [anon_sym_BSLASHac] = ACTIONS(12437), + [anon_sym_BSLASHAc] = ACTIONS(12437), + [anon_sym_BSLASHacp] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12437), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12437), + [anon_sym_BSLASHcolor] = ACTIONS(12437), + [anon_sym_BSLASHcolorbox] = ACTIONS(12437), + [anon_sym_BSLASHtextcolor] = ACTIONS(12437), + [anon_sym_BSLASHpagecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12437), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12437), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12437), + }, + [1145] = { + [sym_generic_command_name] = ACTIONS(12185), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12185), + [aux_sym_subsection_token1] = ACTIONS(12185), + [aux_sym_subsubsection_token1] = ACTIONS(12185), + [aux_sym_paragraph_token1] = ACTIONS(12185), + [aux_sym_subparagraph_token1] = ACTIONS(12185), + [anon_sym_BSLASHitem] = ACTIONS(12185), + [anon_sym_LBRACK] = ACTIONS(12183), + [anon_sym_RBRACK] = ACTIONS(12183), + [anon_sym_LBRACE] = ACTIONS(12183), + [anon_sym_RBRACE] = ACTIONS(12183), + [anon_sym_LPAREN] = ACTIONS(12183), + [anon_sym_COMMA] = ACTIONS(12183), + [anon_sym_EQ] = ACTIONS(12183), + [sym_word] = ACTIONS(12183), + [sym_param] = ACTIONS(12183), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12183), + [anon_sym_DOLLAR] = ACTIONS(12185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12183), + [anon_sym_BSLASHbegin] = ACTIONS(12185), + [anon_sym_BSLASHcaption] = ACTIONS(12185), + [anon_sym_BSLASHcite] = ACTIONS(12185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCite] = ACTIONS(12185), + [anon_sym_BSLASHnocite] = ACTIONS(12185), + [anon_sym_BSLASHcitet] = ACTIONS(12185), + [anon_sym_BSLASHcitep] = ACTIONS(12185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteauthor] = ACTIONS(12185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitetitle] = ACTIONS(12185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteyear] = ACTIONS(12185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitedate] = ACTIONS(12185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteurl] = ACTIONS(12185), + [anon_sym_BSLASHfullcite] = ACTIONS(12185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12185), + [anon_sym_BSLASHcitealt] = ACTIONS(12185), + [anon_sym_BSLASHcitealp] = ACTIONS(12185), + [anon_sym_BSLASHcitetext] = ACTIONS(12185), + [anon_sym_BSLASHparencite] = ACTIONS(12185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHParencite] = ACTIONS(12185), + [anon_sym_BSLASHfootcite] = ACTIONS(12185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12185), + [anon_sym_BSLASHtextcite] = ACTIONS(12185), + [anon_sym_BSLASHTextcite] = ACTIONS(12185), + [anon_sym_BSLASHsmartcite] = ACTIONS(12185), + [anon_sym_BSLASHSmartcite] = ACTIONS(12185), + [anon_sym_BSLASHsupercite] = ACTIONS(12185), + [anon_sym_BSLASHautocite] = ACTIONS(12185), + [anon_sym_BSLASHAutocite] = ACTIONS(12185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHvolcite] = ACTIONS(12185), + [anon_sym_BSLASHVolcite] = ACTIONS(12185), + [anon_sym_BSLASHpvolcite] = ACTIONS(12185), + [anon_sym_BSLASHPvolcite] = ACTIONS(12185), + [anon_sym_BSLASHfvolcite] = ACTIONS(12185), + [anon_sym_BSLASHftvolcite] = ACTIONS(12185), + [anon_sym_BSLASHsvolcite] = ACTIONS(12185), + [anon_sym_BSLASHSvolcite] = ACTIONS(12185), + [anon_sym_BSLASHtvolcite] = ACTIONS(12185), + [anon_sym_BSLASHTvolcite] = ACTIONS(12185), + [anon_sym_BSLASHavolcite] = ACTIONS(12185), + [anon_sym_BSLASHAvolcite] = ACTIONS(12185), + [anon_sym_BSLASHnotecite] = ACTIONS(12185), + [anon_sym_BSLASHpnotecite] = ACTIONS(12185), + [anon_sym_BSLASHPnotecite] = ACTIONS(12185), + [anon_sym_BSLASHfnotecite] = ACTIONS(12185), + [anon_sym_BSLASHusepackage] = ACTIONS(12185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12185), + [anon_sym_BSLASHinclude] = ACTIONS(12185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12185), + [anon_sym_BSLASHinput] = ACTIONS(12185), + [anon_sym_BSLASHsubfile] = ACTIONS(12185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12185), + [anon_sym_BSLASHbibliography] = ACTIONS(12185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12185), + [anon_sym_BSLASHincludesvg] = ACTIONS(12185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12185), + [anon_sym_BSLASHimport] = ACTIONS(12185), + [anon_sym_BSLASHsubimport] = ACTIONS(12185), + [anon_sym_BSLASHinputfrom] = ACTIONS(12185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12185), + [anon_sym_BSLASHincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHlabel] = ACTIONS(12185), + [anon_sym_BSLASHref] = ACTIONS(12185), + [anon_sym_BSLASHvref] = ACTIONS(12185), + [anon_sym_BSLASHVref] = ACTIONS(12185), + [anon_sym_BSLASHautoref] = ACTIONS(12185), + [anon_sym_BSLASHpageref] = ACTIONS(12185), + [anon_sym_BSLASHcref] = ACTIONS(12185), + [anon_sym_BSLASHCref] = ACTIONS(12185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnameCref] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHlabelcref] = ACTIONS(12185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12185), + [anon_sym_BSLASHeqref] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange] = ACTIONS(12185), + [anon_sym_BSLASHCrefrange] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewlabel] = ACTIONS(12185), + [anon_sym_BSLASHnewcommand] = ACTIONS(12185), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12185), + [anon_sym_BSLASHgls] = ACTIONS(12185), + [anon_sym_BSLASHGls] = ACTIONS(12185), + [anon_sym_BSLASHGLS] = ACTIONS(12185), + [anon_sym_BSLASHglspl] = ACTIONS(12185), + [anon_sym_BSLASHGlspl] = ACTIONS(12185), + [anon_sym_BSLASHGLSpl] = ACTIONS(12185), + [anon_sym_BSLASHglsdisp] = ACTIONS(12185), + [anon_sym_BSLASHglslink] = ACTIONS(12185), + [anon_sym_BSLASHglstext] = ACTIONS(12185), + [anon_sym_BSLASHGlstext] = ACTIONS(12185), + [anon_sym_BSLASHGLStext] = ACTIONS(12185), + [anon_sym_BSLASHglsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12185), + [anon_sym_BSLASHglsplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSplural] = ACTIONS(12185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHglsname] = ACTIONS(12185), + [anon_sym_BSLASHGlsname] = ACTIONS(12185), + [anon_sym_BSLASHGLSname] = ACTIONS(12185), + [anon_sym_BSLASHglssymbol] = ACTIONS(12185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12185), + [anon_sym_BSLASHglsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12185), + [anon_sym_BSLASHglsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12185), + [anon_sym_BSLASHglsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12185), + [anon_sym_BSLASHglsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12185), + [anon_sym_BSLASHglsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12185), + [anon_sym_BSLASHnewacronym] = ACTIONS(12185), + [anon_sym_BSLASHacrshort] = ACTIONS(12185), + [anon_sym_BSLASHAcrshort] = ACTIONS(12185), + [anon_sym_BSLASHACRshort] = ACTIONS(12185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12185), + [anon_sym_BSLASHacrlong] = ACTIONS(12185), + [anon_sym_BSLASHAcrlong] = ACTIONS(12185), + [anon_sym_BSLASHACRlong] = ACTIONS(12185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12185), + [anon_sym_BSLASHacrfull] = ACTIONS(12185), + [anon_sym_BSLASHAcrfull] = ACTIONS(12185), + [anon_sym_BSLASHACRfull] = ACTIONS(12185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12185), + [anon_sym_BSLASHacs] = ACTIONS(12185), + [anon_sym_BSLASHAcs] = ACTIONS(12185), + [anon_sym_BSLASHacsp] = ACTIONS(12185), + [anon_sym_BSLASHAcsp] = ACTIONS(12185), + [anon_sym_BSLASHacl] = ACTIONS(12185), + [anon_sym_BSLASHAcl] = ACTIONS(12185), + [anon_sym_BSLASHaclp] = ACTIONS(12185), + [anon_sym_BSLASHAclp] = ACTIONS(12185), + [anon_sym_BSLASHacf] = ACTIONS(12185), + [anon_sym_BSLASHAcf] = ACTIONS(12185), + [anon_sym_BSLASHacfp] = ACTIONS(12185), + [anon_sym_BSLASHAcfp] = ACTIONS(12185), + [anon_sym_BSLASHac] = ACTIONS(12185), + [anon_sym_BSLASHAc] = ACTIONS(12185), + [anon_sym_BSLASHacp] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12185), + [anon_sym_BSLASHcolor] = ACTIONS(12185), + [anon_sym_BSLASHcolorbox] = ACTIONS(12185), + [anon_sym_BSLASHtextcolor] = ACTIONS(12185), + [anon_sym_BSLASHpagecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12185), + }, + [1146] = { + [sym_generic_command_name] = ACTIONS(12181), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12181), + [aux_sym_subsection_token1] = ACTIONS(12181), + [aux_sym_subsubsection_token1] = ACTIONS(12181), + [aux_sym_paragraph_token1] = ACTIONS(12181), + [aux_sym_subparagraph_token1] = ACTIONS(12181), + [anon_sym_BSLASHitem] = ACTIONS(12181), + [anon_sym_LBRACK] = ACTIONS(12179), + [anon_sym_RBRACK] = ACTIONS(12179), + [anon_sym_LBRACE] = ACTIONS(12179), + [anon_sym_RBRACE] = ACTIONS(12179), + [anon_sym_LPAREN] = ACTIONS(12179), + [anon_sym_COMMA] = ACTIONS(12179), + [anon_sym_EQ] = ACTIONS(12179), + [sym_word] = ACTIONS(12179), + [sym_param] = ACTIONS(12179), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12179), + [anon_sym_DOLLAR] = ACTIONS(12181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12179), + [anon_sym_BSLASHbegin] = ACTIONS(12181), + [anon_sym_BSLASHcaption] = ACTIONS(12181), + [anon_sym_BSLASHcite] = ACTIONS(12181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCite] = ACTIONS(12181), + [anon_sym_BSLASHnocite] = ACTIONS(12181), + [anon_sym_BSLASHcitet] = ACTIONS(12181), + [anon_sym_BSLASHcitep] = ACTIONS(12181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteauthor] = ACTIONS(12181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitetitle] = ACTIONS(12181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteyear] = ACTIONS(12181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitedate] = ACTIONS(12181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteurl] = ACTIONS(12181), + [anon_sym_BSLASHfullcite] = ACTIONS(12181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12181), + [anon_sym_BSLASHcitealt] = ACTIONS(12181), + [anon_sym_BSLASHcitealp] = ACTIONS(12181), + [anon_sym_BSLASHcitetext] = ACTIONS(12181), + [anon_sym_BSLASHparencite] = ACTIONS(12181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHParencite] = ACTIONS(12181), + [anon_sym_BSLASHfootcite] = ACTIONS(12181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12181), + [anon_sym_BSLASHtextcite] = ACTIONS(12181), + [anon_sym_BSLASHTextcite] = ACTIONS(12181), + [anon_sym_BSLASHsmartcite] = ACTIONS(12181), + [anon_sym_BSLASHSmartcite] = ACTIONS(12181), + [anon_sym_BSLASHsupercite] = ACTIONS(12181), + [anon_sym_BSLASHautocite] = ACTIONS(12181), + [anon_sym_BSLASHAutocite] = ACTIONS(12181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHvolcite] = ACTIONS(12181), + [anon_sym_BSLASHVolcite] = ACTIONS(12181), + [anon_sym_BSLASHpvolcite] = ACTIONS(12181), + [anon_sym_BSLASHPvolcite] = ACTIONS(12181), + [anon_sym_BSLASHfvolcite] = ACTIONS(12181), + [anon_sym_BSLASHftvolcite] = ACTIONS(12181), + [anon_sym_BSLASHsvolcite] = ACTIONS(12181), + [anon_sym_BSLASHSvolcite] = ACTIONS(12181), + [anon_sym_BSLASHtvolcite] = ACTIONS(12181), + [anon_sym_BSLASHTvolcite] = ACTIONS(12181), + [anon_sym_BSLASHavolcite] = ACTIONS(12181), + [anon_sym_BSLASHAvolcite] = ACTIONS(12181), + [anon_sym_BSLASHnotecite] = ACTIONS(12181), + [anon_sym_BSLASHpnotecite] = ACTIONS(12181), + [anon_sym_BSLASHPnotecite] = ACTIONS(12181), + [anon_sym_BSLASHfnotecite] = ACTIONS(12181), + [anon_sym_BSLASHusepackage] = ACTIONS(12181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12181), + [anon_sym_BSLASHinclude] = ACTIONS(12181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12181), + [anon_sym_BSLASHinput] = ACTIONS(12181), + [anon_sym_BSLASHsubfile] = ACTIONS(12181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12181), + [anon_sym_BSLASHbibliography] = ACTIONS(12181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12181), + [anon_sym_BSLASHincludesvg] = ACTIONS(12181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12181), + [anon_sym_BSLASHimport] = ACTIONS(12181), + [anon_sym_BSLASHsubimport] = ACTIONS(12181), + [anon_sym_BSLASHinputfrom] = ACTIONS(12181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12181), + [anon_sym_BSLASHincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHlabel] = ACTIONS(12181), + [anon_sym_BSLASHref] = ACTIONS(12181), + [anon_sym_BSLASHvref] = ACTIONS(12181), + [anon_sym_BSLASHVref] = ACTIONS(12181), + [anon_sym_BSLASHautoref] = ACTIONS(12181), + [anon_sym_BSLASHpageref] = ACTIONS(12181), + [anon_sym_BSLASHcref] = ACTIONS(12181), + [anon_sym_BSLASHCref] = ACTIONS(12181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnameCref] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHlabelcref] = ACTIONS(12181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12181), + [anon_sym_BSLASHeqref] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange] = ACTIONS(12181), + [anon_sym_BSLASHCrefrange] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewlabel] = ACTIONS(12181), + [anon_sym_BSLASHnewcommand] = ACTIONS(12181), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12181), + [anon_sym_BSLASHgls] = ACTIONS(12181), + [anon_sym_BSLASHGls] = ACTIONS(12181), + [anon_sym_BSLASHGLS] = ACTIONS(12181), + [anon_sym_BSLASHglspl] = ACTIONS(12181), + [anon_sym_BSLASHGlspl] = ACTIONS(12181), + [anon_sym_BSLASHGLSpl] = ACTIONS(12181), + [anon_sym_BSLASHglsdisp] = ACTIONS(12181), + [anon_sym_BSLASHglslink] = ACTIONS(12181), + [anon_sym_BSLASHglstext] = ACTIONS(12181), + [anon_sym_BSLASHGlstext] = ACTIONS(12181), + [anon_sym_BSLASHGLStext] = ACTIONS(12181), + [anon_sym_BSLASHglsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12181), + [anon_sym_BSLASHglsplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSplural] = ACTIONS(12181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHglsname] = ACTIONS(12181), + [anon_sym_BSLASHGlsname] = ACTIONS(12181), + [anon_sym_BSLASHGLSname] = ACTIONS(12181), + [anon_sym_BSLASHglssymbol] = ACTIONS(12181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12181), + [anon_sym_BSLASHglsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12181), + [anon_sym_BSLASHglsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12181), + [anon_sym_BSLASHglsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12181), + [anon_sym_BSLASHglsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12181), + [anon_sym_BSLASHglsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12181), + [anon_sym_BSLASHnewacronym] = ACTIONS(12181), + [anon_sym_BSLASHacrshort] = ACTIONS(12181), + [anon_sym_BSLASHAcrshort] = ACTIONS(12181), + [anon_sym_BSLASHACRshort] = ACTIONS(12181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12181), + [anon_sym_BSLASHacrlong] = ACTIONS(12181), + [anon_sym_BSLASHAcrlong] = ACTIONS(12181), + [anon_sym_BSLASHACRlong] = ACTIONS(12181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12181), + [anon_sym_BSLASHacrfull] = ACTIONS(12181), + [anon_sym_BSLASHAcrfull] = ACTIONS(12181), + [anon_sym_BSLASHACRfull] = ACTIONS(12181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12181), + [anon_sym_BSLASHacs] = ACTIONS(12181), + [anon_sym_BSLASHAcs] = ACTIONS(12181), + [anon_sym_BSLASHacsp] = ACTIONS(12181), + [anon_sym_BSLASHAcsp] = ACTIONS(12181), + [anon_sym_BSLASHacl] = ACTIONS(12181), + [anon_sym_BSLASHAcl] = ACTIONS(12181), + [anon_sym_BSLASHaclp] = ACTIONS(12181), + [anon_sym_BSLASHAclp] = ACTIONS(12181), + [anon_sym_BSLASHacf] = ACTIONS(12181), + [anon_sym_BSLASHAcf] = ACTIONS(12181), + [anon_sym_BSLASHacfp] = ACTIONS(12181), + [anon_sym_BSLASHAcfp] = ACTIONS(12181), + [anon_sym_BSLASHac] = ACTIONS(12181), + [anon_sym_BSLASHAc] = ACTIONS(12181), + [anon_sym_BSLASHacp] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12181), + [anon_sym_BSLASHcolor] = ACTIONS(12181), + [anon_sym_BSLASHcolorbox] = ACTIONS(12181), + [anon_sym_BSLASHtextcolor] = ACTIONS(12181), + [anon_sym_BSLASHpagecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12181), + }, + [1147] = { + [sym_generic_command_name] = ACTIONS(12120), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12120), + [aux_sym_subsection_token1] = ACTIONS(12120), + [aux_sym_subsubsection_token1] = ACTIONS(12120), + [aux_sym_paragraph_token1] = ACTIONS(12120), + [aux_sym_subparagraph_token1] = ACTIONS(12120), + [anon_sym_BSLASHitem] = ACTIONS(12120), + [anon_sym_LBRACK] = ACTIONS(12118), + [anon_sym_RBRACK] = ACTIONS(12118), + [anon_sym_LBRACE] = ACTIONS(12118), + [anon_sym_RBRACE] = ACTIONS(12118), + [anon_sym_LPAREN] = ACTIONS(12118), + [anon_sym_COMMA] = ACTIONS(12118), + [anon_sym_EQ] = ACTIONS(12118), + [sym_word] = ACTIONS(12118), + [sym_param] = ACTIONS(12118), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12118), + [anon_sym_DOLLAR] = ACTIONS(12120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12118), + [anon_sym_BSLASHbegin] = ACTIONS(12120), + [anon_sym_BSLASHcaption] = ACTIONS(12120), + [anon_sym_BSLASHcite] = ACTIONS(12120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCite] = ACTIONS(12120), + [anon_sym_BSLASHnocite] = ACTIONS(12120), + [anon_sym_BSLASHcitet] = ACTIONS(12120), + [anon_sym_BSLASHcitep] = ACTIONS(12120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteauthor] = ACTIONS(12120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitetitle] = ACTIONS(12120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteyear] = ACTIONS(12120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitedate] = ACTIONS(12120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteurl] = ACTIONS(12120), + [anon_sym_BSLASHfullcite] = ACTIONS(12120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12120), + [anon_sym_BSLASHcitealt] = ACTIONS(12120), + [anon_sym_BSLASHcitealp] = ACTIONS(12120), + [anon_sym_BSLASHcitetext] = ACTIONS(12120), + [anon_sym_BSLASHparencite] = ACTIONS(12120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHParencite] = ACTIONS(12120), + [anon_sym_BSLASHfootcite] = ACTIONS(12120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12120), + [anon_sym_BSLASHtextcite] = ACTIONS(12120), + [anon_sym_BSLASHTextcite] = ACTIONS(12120), + [anon_sym_BSLASHsmartcite] = ACTIONS(12120), + [anon_sym_BSLASHSmartcite] = ACTIONS(12120), + [anon_sym_BSLASHsupercite] = ACTIONS(12120), + [anon_sym_BSLASHautocite] = ACTIONS(12120), + [anon_sym_BSLASHAutocite] = ACTIONS(12120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHvolcite] = ACTIONS(12120), + [anon_sym_BSLASHVolcite] = ACTIONS(12120), + [anon_sym_BSLASHpvolcite] = ACTIONS(12120), + [anon_sym_BSLASHPvolcite] = ACTIONS(12120), + [anon_sym_BSLASHfvolcite] = ACTIONS(12120), + [anon_sym_BSLASHftvolcite] = ACTIONS(12120), + [anon_sym_BSLASHsvolcite] = ACTIONS(12120), + [anon_sym_BSLASHSvolcite] = ACTIONS(12120), + [anon_sym_BSLASHtvolcite] = ACTIONS(12120), + [anon_sym_BSLASHTvolcite] = ACTIONS(12120), + [anon_sym_BSLASHavolcite] = ACTIONS(12120), + [anon_sym_BSLASHAvolcite] = ACTIONS(12120), + [anon_sym_BSLASHnotecite] = ACTIONS(12120), + [anon_sym_BSLASHpnotecite] = ACTIONS(12120), + [anon_sym_BSLASHPnotecite] = ACTIONS(12120), + [anon_sym_BSLASHfnotecite] = ACTIONS(12120), + [anon_sym_BSLASHusepackage] = ACTIONS(12120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12120), + [anon_sym_BSLASHinclude] = ACTIONS(12120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12120), + [anon_sym_BSLASHinput] = ACTIONS(12120), + [anon_sym_BSLASHsubfile] = ACTIONS(12120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12120), + [anon_sym_BSLASHbibliography] = ACTIONS(12120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12120), + [anon_sym_BSLASHincludesvg] = ACTIONS(12120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12120), + [anon_sym_BSLASHimport] = ACTIONS(12120), + [anon_sym_BSLASHsubimport] = ACTIONS(12120), + [anon_sym_BSLASHinputfrom] = ACTIONS(12120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12120), + [anon_sym_BSLASHincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHlabel] = ACTIONS(12120), + [anon_sym_BSLASHref] = ACTIONS(12120), + [anon_sym_BSLASHvref] = ACTIONS(12120), + [anon_sym_BSLASHVref] = ACTIONS(12120), + [anon_sym_BSLASHautoref] = ACTIONS(12120), + [anon_sym_BSLASHpageref] = ACTIONS(12120), + [anon_sym_BSLASHcref] = ACTIONS(12120), + [anon_sym_BSLASHCref] = ACTIONS(12120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnameCref] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHlabelcref] = ACTIONS(12120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12120), + [anon_sym_BSLASHeqref] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange] = ACTIONS(12120), + [anon_sym_BSLASHCrefrange] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewlabel] = ACTIONS(12120), + [anon_sym_BSLASHnewcommand] = ACTIONS(12120), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12120), + [anon_sym_BSLASHgls] = ACTIONS(12120), + [anon_sym_BSLASHGls] = ACTIONS(12120), + [anon_sym_BSLASHGLS] = ACTIONS(12120), + [anon_sym_BSLASHglspl] = ACTIONS(12120), + [anon_sym_BSLASHGlspl] = ACTIONS(12120), + [anon_sym_BSLASHGLSpl] = ACTIONS(12120), + [anon_sym_BSLASHglsdisp] = ACTIONS(12120), + [anon_sym_BSLASHglslink] = ACTIONS(12120), + [anon_sym_BSLASHglstext] = ACTIONS(12120), + [anon_sym_BSLASHGlstext] = ACTIONS(12120), + [anon_sym_BSLASHGLStext] = ACTIONS(12120), + [anon_sym_BSLASHglsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12120), + [anon_sym_BSLASHglsplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSplural] = ACTIONS(12120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHglsname] = ACTIONS(12120), + [anon_sym_BSLASHGlsname] = ACTIONS(12120), + [anon_sym_BSLASHGLSname] = ACTIONS(12120), + [anon_sym_BSLASHglssymbol] = ACTIONS(12120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12120), + [anon_sym_BSLASHglsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12120), + [anon_sym_BSLASHglsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12120), + [anon_sym_BSLASHglsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12120), + [anon_sym_BSLASHglsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12120), + [anon_sym_BSLASHglsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12120), + [anon_sym_BSLASHnewacronym] = ACTIONS(12120), + [anon_sym_BSLASHacrshort] = ACTIONS(12120), + [anon_sym_BSLASHAcrshort] = ACTIONS(12120), + [anon_sym_BSLASHACRshort] = ACTIONS(12120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12120), + [anon_sym_BSLASHacrlong] = ACTIONS(12120), + [anon_sym_BSLASHAcrlong] = ACTIONS(12120), + [anon_sym_BSLASHACRlong] = ACTIONS(12120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12120), + [anon_sym_BSLASHacrfull] = ACTIONS(12120), + [anon_sym_BSLASHAcrfull] = ACTIONS(12120), + [anon_sym_BSLASHACRfull] = ACTIONS(12120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12120), + [anon_sym_BSLASHacs] = ACTIONS(12120), + [anon_sym_BSLASHAcs] = ACTIONS(12120), + [anon_sym_BSLASHacsp] = ACTIONS(12120), + [anon_sym_BSLASHAcsp] = ACTIONS(12120), + [anon_sym_BSLASHacl] = ACTIONS(12120), + [anon_sym_BSLASHAcl] = ACTIONS(12120), + [anon_sym_BSLASHaclp] = ACTIONS(12120), + [anon_sym_BSLASHAclp] = ACTIONS(12120), + [anon_sym_BSLASHacf] = ACTIONS(12120), + [anon_sym_BSLASHAcf] = ACTIONS(12120), + [anon_sym_BSLASHacfp] = ACTIONS(12120), + [anon_sym_BSLASHAcfp] = ACTIONS(12120), + [anon_sym_BSLASHac] = ACTIONS(12120), + [anon_sym_BSLASHAc] = ACTIONS(12120), + [anon_sym_BSLASHacp] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12120), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12120), + [anon_sym_BSLASHcolor] = ACTIONS(12120), + [anon_sym_BSLASHcolorbox] = ACTIONS(12120), + [anon_sym_BSLASHtextcolor] = ACTIONS(12120), + [anon_sym_BSLASHpagecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12120), + }, + [1148] = { + [sym_generic_command_name] = ACTIONS(12116), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12116), + [aux_sym_subsection_token1] = ACTIONS(12116), + [aux_sym_subsubsection_token1] = ACTIONS(12116), + [aux_sym_paragraph_token1] = ACTIONS(12116), + [aux_sym_subparagraph_token1] = ACTIONS(12116), + [anon_sym_BSLASHitem] = ACTIONS(12116), + [anon_sym_LBRACK] = ACTIONS(12114), + [anon_sym_RBRACK] = ACTIONS(12114), + [anon_sym_LBRACE] = ACTIONS(12114), + [anon_sym_RBRACE] = ACTIONS(12114), + [anon_sym_LPAREN] = ACTIONS(12114), + [anon_sym_COMMA] = ACTIONS(12114), + [anon_sym_EQ] = ACTIONS(12114), + [sym_word] = ACTIONS(12114), + [sym_param] = ACTIONS(12114), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12114), + [anon_sym_DOLLAR] = ACTIONS(12116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12114), + [anon_sym_BSLASHbegin] = ACTIONS(12116), + [anon_sym_BSLASHcaption] = ACTIONS(12116), + [anon_sym_BSLASHcite] = ACTIONS(12116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCite] = ACTIONS(12116), + [anon_sym_BSLASHnocite] = ACTIONS(12116), + [anon_sym_BSLASHcitet] = ACTIONS(12116), + [anon_sym_BSLASHcitep] = ACTIONS(12116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteauthor] = ACTIONS(12116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitetitle] = ACTIONS(12116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteyear] = ACTIONS(12116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitedate] = ACTIONS(12116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteurl] = ACTIONS(12116), + [anon_sym_BSLASHfullcite] = ACTIONS(12116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12116), + [anon_sym_BSLASHcitealt] = ACTIONS(12116), + [anon_sym_BSLASHcitealp] = ACTIONS(12116), + [anon_sym_BSLASHcitetext] = ACTIONS(12116), + [anon_sym_BSLASHparencite] = ACTIONS(12116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHParencite] = ACTIONS(12116), + [anon_sym_BSLASHfootcite] = ACTIONS(12116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12116), + [anon_sym_BSLASHtextcite] = ACTIONS(12116), + [anon_sym_BSLASHTextcite] = ACTIONS(12116), + [anon_sym_BSLASHsmartcite] = ACTIONS(12116), + [anon_sym_BSLASHSmartcite] = ACTIONS(12116), + [anon_sym_BSLASHsupercite] = ACTIONS(12116), + [anon_sym_BSLASHautocite] = ACTIONS(12116), + [anon_sym_BSLASHAutocite] = ACTIONS(12116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHvolcite] = ACTIONS(12116), + [anon_sym_BSLASHVolcite] = ACTIONS(12116), + [anon_sym_BSLASHpvolcite] = ACTIONS(12116), + [anon_sym_BSLASHPvolcite] = ACTIONS(12116), + [anon_sym_BSLASHfvolcite] = ACTIONS(12116), + [anon_sym_BSLASHftvolcite] = ACTIONS(12116), + [anon_sym_BSLASHsvolcite] = ACTIONS(12116), + [anon_sym_BSLASHSvolcite] = ACTIONS(12116), + [anon_sym_BSLASHtvolcite] = ACTIONS(12116), + [anon_sym_BSLASHTvolcite] = ACTIONS(12116), + [anon_sym_BSLASHavolcite] = ACTIONS(12116), + [anon_sym_BSLASHAvolcite] = ACTIONS(12116), + [anon_sym_BSLASHnotecite] = ACTIONS(12116), + [anon_sym_BSLASHpnotecite] = ACTIONS(12116), + [anon_sym_BSLASHPnotecite] = ACTIONS(12116), + [anon_sym_BSLASHfnotecite] = ACTIONS(12116), + [anon_sym_BSLASHusepackage] = ACTIONS(12116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12116), + [anon_sym_BSLASHinclude] = ACTIONS(12116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12116), + [anon_sym_BSLASHinput] = ACTIONS(12116), + [anon_sym_BSLASHsubfile] = ACTIONS(12116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12116), + [anon_sym_BSLASHbibliography] = ACTIONS(12116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12116), + [anon_sym_BSLASHincludesvg] = ACTIONS(12116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12116), + [anon_sym_BSLASHimport] = ACTIONS(12116), + [anon_sym_BSLASHsubimport] = ACTIONS(12116), + [anon_sym_BSLASHinputfrom] = ACTIONS(12116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12116), + [anon_sym_BSLASHincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHlabel] = ACTIONS(12116), + [anon_sym_BSLASHref] = ACTIONS(12116), + [anon_sym_BSLASHvref] = ACTIONS(12116), + [anon_sym_BSLASHVref] = ACTIONS(12116), + [anon_sym_BSLASHautoref] = ACTIONS(12116), + [anon_sym_BSLASHpageref] = ACTIONS(12116), + [anon_sym_BSLASHcref] = ACTIONS(12116), + [anon_sym_BSLASHCref] = ACTIONS(12116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnameCref] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHlabelcref] = ACTIONS(12116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12116), + [anon_sym_BSLASHeqref] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange] = ACTIONS(12116), + [anon_sym_BSLASHCrefrange] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewlabel] = ACTIONS(12116), + [anon_sym_BSLASHnewcommand] = ACTIONS(12116), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12116), + [anon_sym_BSLASHgls] = ACTIONS(12116), + [anon_sym_BSLASHGls] = ACTIONS(12116), + [anon_sym_BSLASHGLS] = ACTIONS(12116), + [anon_sym_BSLASHglspl] = ACTIONS(12116), + [anon_sym_BSLASHGlspl] = ACTIONS(12116), + [anon_sym_BSLASHGLSpl] = ACTIONS(12116), + [anon_sym_BSLASHglsdisp] = ACTIONS(12116), + [anon_sym_BSLASHglslink] = ACTIONS(12116), + [anon_sym_BSLASHglstext] = ACTIONS(12116), + [anon_sym_BSLASHGlstext] = ACTIONS(12116), + [anon_sym_BSLASHGLStext] = ACTIONS(12116), + [anon_sym_BSLASHglsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12116), + [anon_sym_BSLASHglsplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSplural] = ACTIONS(12116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHglsname] = ACTIONS(12116), + [anon_sym_BSLASHGlsname] = ACTIONS(12116), + [anon_sym_BSLASHGLSname] = ACTIONS(12116), + [anon_sym_BSLASHglssymbol] = ACTIONS(12116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12116), + [anon_sym_BSLASHglsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12116), + [anon_sym_BSLASHglsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12116), + [anon_sym_BSLASHglsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12116), + [anon_sym_BSLASHglsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12116), + [anon_sym_BSLASHglsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12116), + [anon_sym_BSLASHnewacronym] = ACTIONS(12116), + [anon_sym_BSLASHacrshort] = ACTIONS(12116), + [anon_sym_BSLASHAcrshort] = ACTIONS(12116), + [anon_sym_BSLASHACRshort] = ACTIONS(12116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12116), + [anon_sym_BSLASHacrlong] = ACTIONS(12116), + [anon_sym_BSLASHAcrlong] = ACTIONS(12116), + [anon_sym_BSLASHACRlong] = ACTIONS(12116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12116), + [anon_sym_BSLASHacrfull] = ACTIONS(12116), + [anon_sym_BSLASHAcrfull] = ACTIONS(12116), + [anon_sym_BSLASHACRfull] = ACTIONS(12116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12116), + [anon_sym_BSLASHacs] = ACTIONS(12116), + [anon_sym_BSLASHAcs] = ACTIONS(12116), + [anon_sym_BSLASHacsp] = ACTIONS(12116), + [anon_sym_BSLASHAcsp] = ACTIONS(12116), + [anon_sym_BSLASHacl] = ACTIONS(12116), + [anon_sym_BSLASHAcl] = ACTIONS(12116), + [anon_sym_BSLASHaclp] = ACTIONS(12116), + [anon_sym_BSLASHAclp] = ACTIONS(12116), + [anon_sym_BSLASHacf] = ACTIONS(12116), + [anon_sym_BSLASHAcf] = ACTIONS(12116), + [anon_sym_BSLASHacfp] = ACTIONS(12116), + [anon_sym_BSLASHAcfp] = ACTIONS(12116), + [anon_sym_BSLASHac] = ACTIONS(12116), + [anon_sym_BSLASHAc] = ACTIONS(12116), + [anon_sym_BSLASHacp] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12116), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12116), + [anon_sym_BSLASHcolor] = ACTIONS(12116), + [anon_sym_BSLASHcolorbox] = ACTIONS(12116), + [anon_sym_BSLASHtextcolor] = ACTIONS(12116), + [anon_sym_BSLASHpagecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12116), + }, + [1149] = { + [sym_generic_command_name] = ACTIONS(12193), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12193), + [aux_sym_subsection_token1] = ACTIONS(12193), + [aux_sym_subsubsection_token1] = ACTIONS(12193), + [aux_sym_paragraph_token1] = ACTIONS(12193), + [aux_sym_subparagraph_token1] = ACTIONS(12193), + [anon_sym_BSLASHitem] = ACTIONS(12193), + [anon_sym_LBRACK] = ACTIONS(12191), + [anon_sym_RBRACK] = ACTIONS(12191), + [anon_sym_LBRACE] = ACTIONS(12191), + [anon_sym_RBRACE] = ACTIONS(12191), + [anon_sym_LPAREN] = ACTIONS(12191), + [anon_sym_COMMA] = ACTIONS(12191), + [anon_sym_EQ] = ACTIONS(12191), + [sym_word] = ACTIONS(12191), + [sym_param] = ACTIONS(12191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12191), + [anon_sym_DOLLAR] = ACTIONS(12193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12191), + [anon_sym_BSLASHbegin] = ACTIONS(12193), + [anon_sym_BSLASHcaption] = ACTIONS(12193), + [anon_sym_BSLASHcite] = ACTIONS(12193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCite] = ACTIONS(12193), + [anon_sym_BSLASHnocite] = ACTIONS(12193), + [anon_sym_BSLASHcitet] = ACTIONS(12193), + [anon_sym_BSLASHcitep] = ACTIONS(12193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteauthor] = ACTIONS(12193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitetitle] = ACTIONS(12193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteyear] = ACTIONS(12193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitedate] = ACTIONS(12193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteurl] = ACTIONS(12193), + [anon_sym_BSLASHfullcite] = ACTIONS(12193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12193), + [anon_sym_BSLASHcitealt] = ACTIONS(12193), + [anon_sym_BSLASHcitealp] = ACTIONS(12193), + [anon_sym_BSLASHcitetext] = ACTIONS(12193), + [anon_sym_BSLASHparencite] = ACTIONS(12193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHParencite] = ACTIONS(12193), + [anon_sym_BSLASHfootcite] = ACTIONS(12193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12193), + [anon_sym_BSLASHtextcite] = ACTIONS(12193), + [anon_sym_BSLASHTextcite] = ACTIONS(12193), + [anon_sym_BSLASHsmartcite] = ACTIONS(12193), + [anon_sym_BSLASHSmartcite] = ACTIONS(12193), + [anon_sym_BSLASHsupercite] = ACTIONS(12193), + [anon_sym_BSLASHautocite] = ACTIONS(12193), + [anon_sym_BSLASHAutocite] = ACTIONS(12193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHvolcite] = ACTIONS(12193), + [anon_sym_BSLASHVolcite] = ACTIONS(12193), + [anon_sym_BSLASHpvolcite] = ACTIONS(12193), + [anon_sym_BSLASHPvolcite] = ACTIONS(12193), + [anon_sym_BSLASHfvolcite] = ACTIONS(12193), + [anon_sym_BSLASHftvolcite] = ACTIONS(12193), + [anon_sym_BSLASHsvolcite] = ACTIONS(12193), + [anon_sym_BSLASHSvolcite] = ACTIONS(12193), + [anon_sym_BSLASHtvolcite] = ACTIONS(12193), + [anon_sym_BSLASHTvolcite] = ACTIONS(12193), + [anon_sym_BSLASHavolcite] = ACTIONS(12193), + [anon_sym_BSLASHAvolcite] = ACTIONS(12193), + [anon_sym_BSLASHnotecite] = ACTIONS(12193), + [anon_sym_BSLASHpnotecite] = ACTIONS(12193), + [anon_sym_BSLASHPnotecite] = ACTIONS(12193), + [anon_sym_BSLASHfnotecite] = ACTIONS(12193), + [anon_sym_BSLASHusepackage] = ACTIONS(12193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12193), + [anon_sym_BSLASHinclude] = ACTIONS(12193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12193), + [anon_sym_BSLASHinput] = ACTIONS(12193), + [anon_sym_BSLASHsubfile] = ACTIONS(12193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12193), + [anon_sym_BSLASHbibliography] = ACTIONS(12193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12193), + [anon_sym_BSLASHincludesvg] = ACTIONS(12193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12193), + [anon_sym_BSLASHimport] = ACTIONS(12193), + [anon_sym_BSLASHsubimport] = ACTIONS(12193), + [anon_sym_BSLASHinputfrom] = ACTIONS(12193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12193), + [anon_sym_BSLASHincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHlabel] = ACTIONS(12193), + [anon_sym_BSLASHref] = ACTIONS(12193), + [anon_sym_BSLASHvref] = ACTIONS(12193), + [anon_sym_BSLASHVref] = ACTIONS(12193), + [anon_sym_BSLASHautoref] = ACTIONS(12193), + [anon_sym_BSLASHpageref] = ACTIONS(12193), + [anon_sym_BSLASHcref] = ACTIONS(12193), + [anon_sym_BSLASHCref] = ACTIONS(12193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnameCref] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHlabelcref] = ACTIONS(12193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12193), + [anon_sym_BSLASHeqref] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange] = ACTIONS(12193), + [anon_sym_BSLASHCrefrange] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewlabel] = ACTIONS(12193), + [anon_sym_BSLASHnewcommand] = ACTIONS(12193), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12193), + [anon_sym_BSLASHgls] = ACTIONS(12193), + [anon_sym_BSLASHGls] = ACTIONS(12193), + [anon_sym_BSLASHGLS] = ACTIONS(12193), + [anon_sym_BSLASHglspl] = ACTIONS(12193), + [anon_sym_BSLASHGlspl] = ACTIONS(12193), + [anon_sym_BSLASHGLSpl] = ACTIONS(12193), + [anon_sym_BSLASHglsdisp] = ACTIONS(12193), + [anon_sym_BSLASHglslink] = ACTIONS(12193), + [anon_sym_BSLASHglstext] = ACTIONS(12193), + [anon_sym_BSLASHGlstext] = ACTIONS(12193), + [anon_sym_BSLASHGLStext] = ACTIONS(12193), + [anon_sym_BSLASHglsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12193), + [anon_sym_BSLASHglsplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSplural] = ACTIONS(12193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHglsname] = ACTIONS(12193), + [anon_sym_BSLASHGlsname] = ACTIONS(12193), + [anon_sym_BSLASHGLSname] = ACTIONS(12193), + [anon_sym_BSLASHglssymbol] = ACTIONS(12193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12193), + [anon_sym_BSLASHglsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12193), + [anon_sym_BSLASHglsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12193), + [anon_sym_BSLASHglsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12193), + [anon_sym_BSLASHglsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12193), + [anon_sym_BSLASHglsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12193), + [anon_sym_BSLASHnewacronym] = ACTIONS(12193), + [anon_sym_BSLASHacrshort] = ACTIONS(12193), + [anon_sym_BSLASHAcrshort] = ACTIONS(12193), + [anon_sym_BSLASHACRshort] = ACTIONS(12193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12193), + [anon_sym_BSLASHacrlong] = ACTIONS(12193), + [anon_sym_BSLASHAcrlong] = ACTIONS(12193), + [anon_sym_BSLASHACRlong] = ACTIONS(12193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12193), + [anon_sym_BSLASHacrfull] = ACTIONS(12193), + [anon_sym_BSLASHAcrfull] = ACTIONS(12193), + [anon_sym_BSLASHACRfull] = ACTIONS(12193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12193), + [anon_sym_BSLASHacs] = ACTIONS(12193), + [anon_sym_BSLASHAcs] = ACTIONS(12193), + [anon_sym_BSLASHacsp] = ACTIONS(12193), + [anon_sym_BSLASHAcsp] = ACTIONS(12193), + [anon_sym_BSLASHacl] = ACTIONS(12193), + [anon_sym_BSLASHAcl] = ACTIONS(12193), + [anon_sym_BSLASHaclp] = ACTIONS(12193), + [anon_sym_BSLASHAclp] = ACTIONS(12193), + [anon_sym_BSLASHacf] = ACTIONS(12193), + [anon_sym_BSLASHAcf] = ACTIONS(12193), + [anon_sym_BSLASHacfp] = ACTIONS(12193), + [anon_sym_BSLASHAcfp] = ACTIONS(12193), + [anon_sym_BSLASHac] = ACTIONS(12193), + [anon_sym_BSLASHAc] = ACTIONS(12193), + [anon_sym_BSLASHacp] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12193), + [anon_sym_BSLASHcolor] = ACTIONS(12193), + [anon_sym_BSLASHcolorbox] = ACTIONS(12193), + [anon_sym_BSLASHtextcolor] = ACTIONS(12193), + [anon_sym_BSLASHpagecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12193), + }, + [1150] = { + [sym_generic_command_name] = ACTIONS(12201), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12201), + [aux_sym_subsection_token1] = ACTIONS(12201), + [aux_sym_subsubsection_token1] = ACTIONS(12201), + [aux_sym_paragraph_token1] = ACTIONS(12201), + [aux_sym_subparagraph_token1] = ACTIONS(12201), + [anon_sym_BSLASHitem] = ACTIONS(12201), + [anon_sym_LBRACK] = ACTIONS(12199), + [anon_sym_RBRACK] = ACTIONS(12199), + [anon_sym_LBRACE] = ACTIONS(12199), + [anon_sym_RBRACE] = ACTIONS(12199), + [anon_sym_LPAREN] = ACTIONS(12199), + [anon_sym_COMMA] = ACTIONS(12199), + [anon_sym_EQ] = ACTIONS(12199), + [sym_word] = ACTIONS(12199), + [sym_param] = ACTIONS(12199), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12199), + [anon_sym_DOLLAR] = ACTIONS(12201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12199), + [anon_sym_BSLASHbegin] = ACTIONS(12201), + [anon_sym_BSLASHcaption] = ACTIONS(12201), + [anon_sym_BSLASHcite] = ACTIONS(12201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCite] = ACTIONS(12201), + [anon_sym_BSLASHnocite] = ACTIONS(12201), + [anon_sym_BSLASHcitet] = ACTIONS(12201), + [anon_sym_BSLASHcitep] = ACTIONS(12201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteauthor] = ACTIONS(12201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitetitle] = ACTIONS(12201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteyear] = ACTIONS(12201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitedate] = ACTIONS(12201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteurl] = ACTIONS(12201), + [anon_sym_BSLASHfullcite] = ACTIONS(12201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12201), + [anon_sym_BSLASHcitealt] = ACTIONS(12201), + [anon_sym_BSLASHcitealp] = ACTIONS(12201), + [anon_sym_BSLASHcitetext] = ACTIONS(12201), + [anon_sym_BSLASHparencite] = ACTIONS(12201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHParencite] = ACTIONS(12201), + [anon_sym_BSLASHfootcite] = ACTIONS(12201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12201), + [anon_sym_BSLASHtextcite] = ACTIONS(12201), + [anon_sym_BSLASHTextcite] = ACTIONS(12201), + [anon_sym_BSLASHsmartcite] = ACTIONS(12201), + [anon_sym_BSLASHSmartcite] = ACTIONS(12201), + [anon_sym_BSLASHsupercite] = ACTIONS(12201), + [anon_sym_BSLASHautocite] = ACTIONS(12201), + [anon_sym_BSLASHAutocite] = ACTIONS(12201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHvolcite] = ACTIONS(12201), + [anon_sym_BSLASHVolcite] = ACTIONS(12201), + [anon_sym_BSLASHpvolcite] = ACTIONS(12201), + [anon_sym_BSLASHPvolcite] = ACTIONS(12201), + [anon_sym_BSLASHfvolcite] = ACTIONS(12201), + [anon_sym_BSLASHftvolcite] = ACTIONS(12201), + [anon_sym_BSLASHsvolcite] = ACTIONS(12201), + [anon_sym_BSLASHSvolcite] = ACTIONS(12201), + [anon_sym_BSLASHtvolcite] = ACTIONS(12201), + [anon_sym_BSLASHTvolcite] = ACTIONS(12201), + [anon_sym_BSLASHavolcite] = ACTIONS(12201), + [anon_sym_BSLASHAvolcite] = ACTIONS(12201), + [anon_sym_BSLASHnotecite] = ACTIONS(12201), + [anon_sym_BSLASHpnotecite] = ACTIONS(12201), + [anon_sym_BSLASHPnotecite] = ACTIONS(12201), + [anon_sym_BSLASHfnotecite] = ACTIONS(12201), + [anon_sym_BSLASHusepackage] = ACTIONS(12201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12201), + [anon_sym_BSLASHinclude] = ACTIONS(12201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12201), + [anon_sym_BSLASHinput] = ACTIONS(12201), + [anon_sym_BSLASHsubfile] = ACTIONS(12201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12201), + [anon_sym_BSLASHbibliography] = ACTIONS(12201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12201), + [anon_sym_BSLASHincludesvg] = ACTIONS(12201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12201), + [anon_sym_BSLASHimport] = ACTIONS(12201), + [anon_sym_BSLASHsubimport] = ACTIONS(12201), + [anon_sym_BSLASHinputfrom] = ACTIONS(12201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12201), + [anon_sym_BSLASHincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHlabel] = ACTIONS(12201), + [anon_sym_BSLASHref] = ACTIONS(12201), + [anon_sym_BSLASHvref] = ACTIONS(12201), + [anon_sym_BSLASHVref] = ACTIONS(12201), + [anon_sym_BSLASHautoref] = ACTIONS(12201), + [anon_sym_BSLASHpageref] = ACTIONS(12201), + [anon_sym_BSLASHcref] = ACTIONS(12201), + [anon_sym_BSLASHCref] = ACTIONS(12201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnameCref] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHlabelcref] = ACTIONS(12201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12201), + [anon_sym_BSLASHeqref] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange] = ACTIONS(12201), + [anon_sym_BSLASHCrefrange] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewlabel] = ACTIONS(12201), + [anon_sym_BSLASHnewcommand] = ACTIONS(12201), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12201), + [anon_sym_BSLASHgls] = ACTIONS(12201), + [anon_sym_BSLASHGls] = ACTIONS(12201), + [anon_sym_BSLASHGLS] = ACTIONS(12201), + [anon_sym_BSLASHglspl] = ACTIONS(12201), + [anon_sym_BSLASHGlspl] = ACTIONS(12201), + [anon_sym_BSLASHGLSpl] = ACTIONS(12201), + [anon_sym_BSLASHglsdisp] = ACTIONS(12201), + [anon_sym_BSLASHglslink] = ACTIONS(12201), + [anon_sym_BSLASHglstext] = ACTIONS(12201), + [anon_sym_BSLASHGlstext] = ACTIONS(12201), + [anon_sym_BSLASHGLStext] = ACTIONS(12201), + [anon_sym_BSLASHglsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12201), + [anon_sym_BSLASHglsplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSplural] = ACTIONS(12201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHglsname] = ACTIONS(12201), + [anon_sym_BSLASHGlsname] = ACTIONS(12201), + [anon_sym_BSLASHGLSname] = ACTIONS(12201), + [anon_sym_BSLASHglssymbol] = ACTIONS(12201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12201), + [anon_sym_BSLASHglsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12201), + [anon_sym_BSLASHglsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12201), + [anon_sym_BSLASHglsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12201), + [anon_sym_BSLASHglsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12201), + [anon_sym_BSLASHglsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12201), + [anon_sym_BSLASHnewacronym] = ACTIONS(12201), + [anon_sym_BSLASHacrshort] = ACTIONS(12201), + [anon_sym_BSLASHAcrshort] = ACTIONS(12201), + [anon_sym_BSLASHACRshort] = ACTIONS(12201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12201), + [anon_sym_BSLASHacrlong] = ACTIONS(12201), + [anon_sym_BSLASHAcrlong] = ACTIONS(12201), + [anon_sym_BSLASHACRlong] = ACTIONS(12201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12201), + [anon_sym_BSLASHacrfull] = ACTIONS(12201), + [anon_sym_BSLASHAcrfull] = ACTIONS(12201), + [anon_sym_BSLASHACRfull] = ACTIONS(12201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12201), + [anon_sym_BSLASHacs] = ACTIONS(12201), + [anon_sym_BSLASHAcs] = ACTIONS(12201), + [anon_sym_BSLASHacsp] = ACTIONS(12201), + [anon_sym_BSLASHAcsp] = ACTIONS(12201), + [anon_sym_BSLASHacl] = ACTIONS(12201), + [anon_sym_BSLASHAcl] = ACTIONS(12201), + [anon_sym_BSLASHaclp] = ACTIONS(12201), + [anon_sym_BSLASHAclp] = ACTIONS(12201), + [anon_sym_BSLASHacf] = ACTIONS(12201), + [anon_sym_BSLASHAcf] = ACTIONS(12201), + [anon_sym_BSLASHacfp] = ACTIONS(12201), + [anon_sym_BSLASHAcfp] = ACTIONS(12201), + [anon_sym_BSLASHac] = ACTIONS(12201), + [anon_sym_BSLASHAc] = ACTIONS(12201), + [anon_sym_BSLASHacp] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12201), + [anon_sym_BSLASHcolor] = ACTIONS(12201), + [anon_sym_BSLASHcolorbox] = ACTIONS(12201), + [anon_sym_BSLASHtextcolor] = ACTIONS(12201), + [anon_sym_BSLASHpagecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12201), + }, + [1151] = { + [sym_generic_command_name] = ACTIONS(12205), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12205), + [aux_sym_subsection_token1] = ACTIONS(12205), + [aux_sym_subsubsection_token1] = ACTIONS(12205), + [aux_sym_paragraph_token1] = ACTIONS(12205), + [aux_sym_subparagraph_token1] = ACTIONS(12205), + [anon_sym_BSLASHitem] = ACTIONS(12205), + [anon_sym_LBRACK] = ACTIONS(12203), + [anon_sym_RBRACK] = ACTIONS(12203), + [anon_sym_LBRACE] = ACTIONS(12203), + [anon_sym_RBRACE] = ACTIONS(12203), + [anon_sym_LPAREN] = ACTIONS(12203), + [anon_sym_COMMA] = ACTIONS(12203), + [anon_sym_EQ] = ACTIONS(12203), + [sym_word] = ACTIONS(12203), + [sym_param] = ACTIONS(12203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12203), + [anon_sym_DOLLAR] = ACTIONS(12205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12203), + [anon_sym_BSLASHbegin] = ACTIONS(12205), + [anon_sym_BSLASHcaption] = ACTIONS(12205), + [anon_sym_BSLASHcite] = ACTIONS(12205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCite] = ACTIONS(12205), + [anon_sym_BSLASHnocite] = ACTIONS(12205), + [anon_sym_BSLASHcitet] = ACTIONS(12205), + [anon_sym_BSLASHcitep] = ACTIONS(12205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteauthor] = ACTIONS(12205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitetitle] = ACTIONS(12205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteyear] = ACTIONS(12205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitedate] = ACTIONS(12205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteurl] = ACTIONS(12205), + [anon_sym_BSLASHfullcite] = ACTIONS(12205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12205), + [anon_sym_BSLASHcitealt] = ACTIONS(12205), + [anon_sym_BSLASHcitealp] = ACTIONS(12205), + [anon_sym_BSLASHcitetext] = ACTIONS(12205), + [anon_sym_BSLASHparencite] = ACTIONS(12205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHParencite] = ACTIONS(12205), + [anon_sym_BSLASHfootcite] = ACTIONS(12205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12205), + [anon_sym_BSLASHtextcite] = ACTIONS(12205), + [anon_sym_BSLASHTextcite] = ACTIONS(12205), + [anon_sym_BSLASHsmartcite] = ACTIONS(12205), + [anon_sym_BSLASHSmartcite] = ACTIONS(12205), + [anon_sym_BSLASHsupercite] = ACTIONS(12205), + [anon_sym_BSLASHautocite] = ACTIONS(12205), + [anon_sym_BSLASHAutocite] = ACTIONS(12205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHvolcite] = ACTIONS(12205), + [anon_sym_BSLASHVolcite] = ACTIONS(12205), + [anon_sym_BSLASHpvolcite] = ACTIONS(12205), + [anon_sym_BSLASHPvolcite] = ACTIONS(12205), + [anon_sym_BSLASHfvolcite] = ACTIONS(12205), + [anon_sym_BSLASHftvolcite] = ACTIONS(12205), + [anon_sym_BSLASHsvolcite] = ACTIONS(12205), + [anon_sym_BSLASHSvolcite] = ACTIONS(12205), + [anon_sym_BSLASHtvolcite] = ACTIONS(12205), + [anon_sym_BSLASHTvolcite] = ACTIONS(12205), + [anon_sym_BSLASHavolcite] = ACTIONS(12205), + [anon_sym_BSLASHAvolcite] = ACTIONS(12205), + [anon_sym_BSLASHnotecite] = ACTIONS(12205), + [anon_sym_BSLASHpnotecite] = ACTIONS(12205), + [anon_sym_BSLASHPnotecite] = ACTIONS(12205), + [anon_sym_BSLASHfnotecite] = ACTIONS(12205), + [anon_sym_BSLASHusepackage] = ACTIONS(12205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12205), + [anon_sym_BSLASHinclude] = ACTIONS(12205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12205), + [anon_sym_BSLASHinput] = ACTIONS(12205), + [anon_sym_BSLASHsubfile] = ACTIONS(12205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12205), + [anon_sym_BSLASHbibliography] = ACTIONS(12205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12205), + [anon_sym_BSLASHincludesvg] = ACTIONS(12205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12205), + [anon_sym_BSLASHimport] = ACTIONS(12205), + [anon_sym_BSLASHsubimport] = ACTIONS(12205), + [anon_sym_BSLASHinputfrom] = ACTIONS(12205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12205), + [anon_sym_BSLASHincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHlabel] = ACTIONS(12205), + [anon_sym_BSLASHref] = ACTIONS(12205), + [anon_sym_BSLASHvref] = ACTIONS(12205), + [anon_sym_BSLASHVref] = ACTIONS(12205), + [anon_sym_BSLASHautoref] = ACTIONS(12205), + [anon_sym_BSLASHpageref] = ACTIONS(12205), + [anon_sym_BSLASHcref] = ACTIONS(12205), + [anon_sym_BSLASHCref] = ACTIONS(12205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnameCref] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHlabelcref] = ACTIONS(12205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12205), + [anon_sym_BSLASHeqref] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange] = ACTIONS(12205), + [anon_sym_BSLASHCrefrange] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewlabel] = ACTIONS(12205), + [anon_sym_BSLASHnewcommand] = ACTIONS(12205), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12205), + [anon_sym_BSLASHgls] = ACTIONS(12205), + [anon_sym_BSLASHGls] = ACTIONS(12205), + [anon_sym_BSLASHGLS] = ACTIONS(12205), + [anon_sym_BSLASHglspl] = ACTIONS(12205), + [anon_sym_BSLASHGlspl] = ACTIONS(12205), + [anon_sym_BSLASHGLSpl] = ACTIONS(12205), + [anon_sym_BSLASHglsdisp] = ACTIONS(12205), + [anon_sym_BSLASHglslink] = ACTIONS(12205), + [anon_sym_BSLASHglstext] = ACTIONS(12205), + [anon_sym_BSLASHGlstext] = ACTIONS(12205), + [anon_sym_BSLASHGLStext] = ACTIONS(12205), + [anon_sym_BSLASHglsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12205), + [anon_sym_BSLASHglsplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSplural] = ACTIONS(12205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHglsname] = ACTIONS(12205), + [anon_sym_BSLASHGlsname] = ACTIONS(12205), + [anon_sym_BSLASHGLSname] = ACTIONS(12205), + [anon_sym_BSLASHglssymbol] = ACTIONS(12205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12205), + [anon_sym_BSLASHglsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12205), + [anon_sym_BSLASHglsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12205), + [anon_sym_BSLASHglsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12205), + [anon_sym_BSLASHglsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12205), + [anon_sym_BSLASHglsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12205), + [anon_sym_BSLASHnewacronym] = ACTIONS(12205), + [anon_sym_BSLASHacrshort] = ACTIONS(12205), + [anon_sym_BSLASHAcrshort] = ACTIONS(12205), + [anon_sym_BSLASHACRshort] = ACTIONS(12205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12205), + [anon_sym_BSLASHacrlong] = ACTIONS(12205), + [anon_sym_BSLASHAcrlong] = ACTIONS(12205), + [anon_sym_BSLASHACRlong] = ACTIONS(12205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12205), + [anon_sym_BSLASHacrfull] = ACTIONS(12205), + [anon_sym_BSLASHAcrfull] = ACTIONS(12205), + [anon_sym_BSLASHACRfull] = ACTIONS(12205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12205), + [anon_sym_BSLASHacs] = ACTIONS(12205), + [anon_sym_BSLASHAcs] = ACTIONS(12205), + [anon_sym_BSLASHacsp] = ACTIONS(12205), + [anon_sym_BSLASHAcsp] = ACTIONS(12205), + [anon_sym_BSLASHacl] = ACTIONS(12205), + [anon_sym_BSLASHAcl] = ACTIONS(12205), + [anon_sym_BSLASHaclp] = ACTIONS(12205), + [anon_sym_BSLASHAclp] = ACTIONS(12205), + [anon_sym_BSLASHacf] = ACTIONS(12205), + [anon_sym_BSLASHAcf] = ACTIONS(12205), + [anon_sym_BSLASHacfp] = ACTIONS(12205), + [anon_sym_BSLASHAcfp] = ACTIONS(12205), + [anon_sym_BSLASHac] = ACTIONS(12205), + [anon_sym_BSLASHAc] = ACTIONS(12205), + [anon_sym_BSLASHacp] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12205), + [anon_sym_BSLASHcolor] = ACTIONS(12205), + [anon_sym_BSLASHcolorbox] = ACTIONS(12205), + [anon_sym_BSLASHtextcolor] = ACTIONS(12205), + [anon_sym_BSLASHpagecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12205), + }, + [1152] = { + [sym_generic_command_name] = ACTIONS(12213), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12213), + [aux_sym_subsection_token1] = ACTIONS(12213), + [aux_sym_subsubsection_token1] = ACTIONS(12213), + [aux_sym_paragraph_token1] = ACTIONS(12213), + [aux_sym_subparagraph_token1] = ACTIONS(12213), + [anon_sym_BSLASHitem] = ACTIONS(12213), + [anon_sym_LBRACK] = ACTIONS(12211), + [anon_sym_RBRACK] = ACTIONS(12211), + [anon_sym_LBRACE] = ACTIONS(12211), + [anon_sym_RBRACE] = ACTIONS(12211), + [anon_sym_LPAREN] = ACTIONS(12211), + [anon_sym_COMMA] = ACTIONS(12211), + [anon_sym_EQ] = ACTIONS(12211), + [sym_word] = ACTIONS(12211), + [sym_param] = ACTIONS(12211), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12211), + [anon_sym_DOLLAR] = ACTIONS(12213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12211), + [anon_sym_BSLASHbegin] = ACTIONS(12213), + [anon_sym_BSLASHcaption] = ACTIONS(12213), + [anon_sym_BSLASHcite] = ACTIONS(12213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCite] = ACTIONS(12213), + [anon_sym_BSLASHnocite] = ACTIONS(12213), + [anon_sym_BSLASHcitet] = ACTIONS(12213), + [anon_sym_BSLASHcitep] = ACTIONS(12213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteauthor] = ACTIONS(12213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitetitle] = ACTIONS(12213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteyear] = ACTIONS(12213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitedate] = ACTIONS(12213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteurl] = ACTIONS(12213), + [anon_sym_BSLASHfullcite] = ACTIONS(12213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12213), + [anon_sym_BSLASHcitealt] = ACTIONS(12213), + [anon_sym_BSLASHcitealp] = ACTIONS(12213), + [anon_sym_BSLASHcitetext] = ACTIONS(12213), + [anon_sym_BSLASHparencite] = ACTIONS(12213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHParencite] = ACTIONS(12213), + [anon_sym_BSLASHfootcite] = ACTIONS(12213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12213), + [anon_sym_BSLASHtextcite] = ACTIONS(12213), + [anon_sym_BSLASHTextcite] = ACTIONS(12213), + [anon_sym_BSLASHsmartcite] = ACTIONS(12213), + [anon_sym_BSLASHSmartcite] = ACTIONS(12213), + [anon_sym_BSLASHsupercite] = ACTIONS(12213), + [anon_sym_BSLASHautocite] = ACTIONS(12213), + [anon_sym_BSLASHAutocite] = ACTIONS(12213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHvolcite] = ACTIONS(12213), + [anon_sym_BSLASHVolcite] = ACTIONS(12213), + [anon_sym_BSLASHpvolcite] = ACTIONS(12213), + [anon_sym_BSLASHPvolcite] = ACTIONS(12213), + [anon_sym_BSLASHfvolcite] = ACTIONS(12213), + [anon_sym_BSLASHftvolcite] = ACTIONS(12213), + [anon_sym_BSLASHsvolcite] = ACTIONS(12213), + [anon_sym_BSLASHSvolcite] = ACTIONS(12213), + [anon_sym_BSLASHtvolcite] = ACTIONS(12213), + [anon_sym_BSLASHTvolcite] = ACTIONS(12213), + [anon_sym_BSLASHavolcite] = ACTIONS(12213), + [anon_sym_BSLASHAvolcite] = ACTIONS(12213), + [anon_sym_BSLASHnotecite] = ACTIONS(12213), + [anon_sym_BSLASHpnotecite] = ACTIONS(12213), + [anon_sym_BSLASHPnotecite] = ACTIONS(12213), + [anon_sym_BSLASHfnotecite] = ACTIONS(12213), + [anon_sym_BSLASHusepackage] = ACTIONS(12213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12213), + [anon_sym_BSLASHinclude] = ACTIONS(12213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12213), + [anon_sym_BSLASHinput] = ACTIONS(12213), + [anon_sym_BSLASHsubfile] = ACTIONS(12213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12213), + [anon_sym_BSLASHbibliography] = ACTIONS(12213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12213), + [anon_sym_BSLASHincludesvg] = ACTIONS(12213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12213), + [anon_sym_BSLASHimport] = ACTIONS(12213), + [anon_sym_BSLASHsubimport] = ACTIONS(12213), + [anon_sym_BSLASHinputfrom] = ACTIONS(12213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12213), + [anon_sym_BSLASHincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHlabel] = ACTIONS(12213), + [anon_sym_BSLASHref] = ACTIONS(12213), + [anon_sym_BSLASHvref] = ACTIONS(12213), + [anon_sym_BSLASHVref] = ACTIONS(12213), + [anon_sym_BSLASHautoref] = ACTIONS(12213), + [anon_sym_BSLASHpageref] = ACTIONS(12213), + [anon_sym_BSLASHcref] = ACTIONS(12213), + [anon_sym_BSLASHCref] = ACTIONS(12213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnameCref] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHlabelcref] = ACTIONS(12213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12213), + [anon_sym_BSLASHeqref] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange] = ACTIONS(12213), + [anon_sym_BSLASHCrefrange] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewlabel] = ACTIONS(12213), + [anon_sym_BSLASHnewcommand] = ACTIONS(12213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12213), + [anon_sym_BSLASHgls] = ACTIONS(12213), + [anon_sym_BSLASHGls] = ACTIONS(12213), + [anon_sym_BSLASHGLS] = ACTIONS(12213), + [anon_sym_BSLASHglspl] = ACTIONS(12213), + [anon_sym_BSLASHGlspl] = ACTIONS(12213), + [anon_sym_BSLASHGLSpl] = ACTIONS(12213), + [anon_sym_BSLASHglsdisp] = ACTIONS(12213), + [anon_sym_BSLASHglslink] = ACTIONS(12213), + [anon_sym_BSLASHglstext] = ACTIONS(12213), + [anon_sym_BSLASHGlstext] = ACTIONS(12213), + [anon_sym_BSLASHGLStext] = ACTIONS(12213), + [anon_sym_BSLASHglsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12213), + [anon_sym_BSLASHglsplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSplural] = ACTIONS(12213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHglsname] = ACTIONS(12213), + [anon_sym_BSLASHGlsname] = ACTIONS(12213), + [anon_sym_BSLASHGLSname] = ACTIONS(12213), + [anon_sym_BSLASHglssymbol] = ACTIONS(12213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12213), + [anon_sym_BSLASHglsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12213), + [anon_sym_BSLASHglsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12213), + [anon_sym_BSLASHglsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12213), + [anon_sym_BSLASHglsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12213), + [anon_sym_BSLASHglsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12213), + [anon_sym_BSLASHnewacronym] = ACTIONS(12213), + [anon_sym_BSLASHacrshort] = ACTIONS(12213), + [anon_sym_BSLASHAcrshort] = ACTIONS(12213), + [anon_sym_BSLASHACRshort] = ACTIONS(12213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12213), + [anon_sym_BSLASHacrlong] = ACTIONS(12213), + [anon_sym_BSLASHAcrlong] = ACTIONS(12213), + [anon_sym_BSLASHACRlong] = ACTIONS(12213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12213), + [anon_sym_BSLASHacrfull] = ACTIONS(12213), + [anon_sym_BSLASHAcrfull] = ACTIONS(12213), + [anon_sym_BSLASHACRfull] = ACTIONS(12213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12213), + [anon_sym_BSLASHacs] = ACTIONS(12213), + [anon_sym_BSLASHAcs] = ACTIONS(12213), + [anon_sym_BSLASHacsp] = ACTIONS(12213), + [anon_sym_BSLASHAcsp] = ACTIONS(12213), + [anon_sym_BSLASHacl] = ACTIONS(12213), + [anon_sym_BSLASHAcl] = ACTIONS(12213), + [anon_sym_BSLASHaclp] = ACTIONS(12213), + [anon_sym_BSLASHAclp] = ACTIONS(12213), + [anon_sym_BSLASHacf] = ACTIONS(12213), + [anon_sym_BSLASHAcf] = ACTIONS(12213), + [anon_sym_BSLASHacfp] = ACTIONS(12213), + [anon_sym_BSLASHAcfp] = ACTIONS(12213), + [anon_sym_BSLASHac] = ACTIONS(12213), + [anon_sym_BSLASHAc] = ACTIONS(12213), + [anon_sym_BSLASHacp] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12213), + [anon_sym_BSLASHcolor] = ACTIONS(12213), + [anon_sym_BSLASHcolorbox] = ACTIONS(12213), + [anon_sym_BSLASHtextcolor] = ACTIONS(12213), + [anon_sym_BSLASHpagecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12213), + }, + [1153] = { + [sym_generic_command_name] = ACTIONS(12217), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12217), + [aux_sym_subsection_token1] = ACTIONS(12217), + [aux_sym_subsubsection_token1] = ACTIONS(12217), + [aux_sym_paragraph_token1] = ACTIONS(12217), + [aux_sym_subparagraph_token1] = ACTIONS(12217), + [anon_sym_BSLASHitem] = ACTIONS(12217), + [anon_sym_LBRACK] = ACTIONS(12215), + [anon_sym_RBRACK] = ACTIONS(12215), + [anon_sym_LBRACE] = ACTIONS(12215), + [anon_sym_RBRACE] = ACTIONS(12215), + [anon_sym_LPAREN] = ACTIONS(12215), + [anon_sym_COMMA] = ACTIONS(12215), + [anon_sym_EQ] = ACTIONS(12215), + [sym_word] = ACTIONS(12215), + [sym_param] = ACTIONS(12215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12215), + [anon_sym_DOLLAR] = ACTIONS(12217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12215), + [anon_sym_BSLASHbegin] = ACTIONS(12217), + [anon_sym_BSLASHcaption] = ACTIONS(12217), + [anon_sym_BSLASHcite] = ACTIONS(12217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCite] = ACTIONS(12217), + [anon_sym_BSLASHnocite] = ACTIONS(12217), + [anon_sym_BSLASHcitet] = ACTIONS(12217), + [anon_sym_BSLASHcitep] = ACTIONS(12217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteauthor] = ACTIONS(12217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitetitle] = ACTIONS(12217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteyear] = ACTIONS(12217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitedate] = ACTIONS(12217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteurl] = ACTIONS(12217), + [anon_sym_BSLASHfullcite] = ACTIONS(12217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12217), + [anon_sym_BSLASHcitealt] = ACTIONS(12217), + [anon_sym_BSLASHcitealp] = ACTIONS(12217), + [anon_sym_BSLASHcitetext] = ACTIONS(12217), + [anon_sym_BSLASHparencite] = ACTIONS(12217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHParencite] = ACTIONS(12217), + [anon_sym_BSLASHfootcite] = ACTIONS(12217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12217), + [anon_sym_BSLASHtextcite] = ACTIONS(12217), + [anon_sym_BSLASHTextcite] = ACTIONS(12217), + [anon_sym_BSLASHsmartcite] = ACTIONS(12217), + [anon_sym_BSLASHSmartcite] = ACTIONS(12217), + [anon_sym_BSLASHsupercite] = ACTIONS(12217), + [anon_sym_BSLASHautocite] = ACTIONS(12217), + [anon_sym_BSLASHAutocite] = ACTIONS(12217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHvolcite] = ACTIONS(12217), + [anon_sym_BSLASHVolcite] = ACTIONS(12217), + [anon_sym_BSLASHpvolcite] = ACTIONS(12217), + [anon_sym_BSLASHPvolcite] = ACTIONS(12217), + [anon_sym_BSLASHfvolcite] = ACTIONS(12217), + [anon_sym_BSLASHftvolcite] = ACTIONS(12217), + [anon_sym_BSLASHsvolcite] = ACTIONS(12217), + [anon_sym_BSLASHSvolcite] = ACTIONS(12217), + [anon_sym_BSLASHtvolcite] = ACTIONS(12217), + [anon_sym_BSLASHTvolcite] = ACTIONS(12217), + [anon_sym_BSLASHavolcite] = ACTIONS(12217), + [anon_sym_BSLASHAvolcite] = ACTIONS(12217), + [anon_sym_BSLASHnotecite] = ACTIONS(12217), + [anon_sym_BSLASHpnotecite] = ACTIONS(12217), + [anon_sym_BSLASHPnotecite] = ACTIONS(12217), + [anon_sym_BSLASHfnotecite] = ACTIONS(12217), + [anon_sym_BSLASHusepackage] = ACTIONS(12217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12217), + [anon_sym_BSLASHinclude] = ACTIONS(12217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12217), + [anon_sym_BSLASHinput] = ACTIONS(12217), + [anon_sym_BSLASHsubfile] = ACTIONS(12217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12217), + [anon_sym_BSLASHbibliography] = ACTIONS(12217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12217), + [anon_sym_BSLASHincludesvg] = ACTIONS(12217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12217), + [anon_sym_BSLASHimport] = ACTIONS(12217), + [anon_sym_BSLASHsubimport] = ACTIONS(12217), + [anon_sym_BSLASHinputfrom] = ACTIONS(12217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12217), + [anon_sym_BSLASHincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHlabel] = ACTIONS(12217), + [anon_sym_BSLASHref] = ACTIONS(12217), + [anon_sym_BSLASHvref] = ACTIONS(12217), + [anon_sym_BSLASHVref] = ACTIONS(12217), + [anon_sym_BSLASHautoref] = ACTIONS(12217), + [anon_sym_BSLASHpageref] = ACTIONS(12217), + [anon_sym_BSLASHcref] = ACTIONS(12217), + [anon_sym_BSLASHCref] = ACTIONS(12217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnameCref] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHlabelcref] = ACTIONS(12217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12217), + [anon_sym_BSLASHeqref] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange] = ACTIONS(12217), + [anon_sym_BSLASHCrefrange] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewlabel] = ACTIONS(12217), + [anon_sym_BSLASHnewcommand] = ACTIONS(12217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12217), + [anon_sym_BSLASHgls] = ACTIONS(12217), + [anon_sym_BSLASHGls] = ACTIONS(12217), + [anon_sym_BSLASHGLS] = ACTIONS(12217), + [anon_sym_BSLASHglspl] = ACTIONS(12217), + [anon_sym_BSLASHGlspl] = ACTIONS(12217), + [anon_sym_BSLASHGLSpl] = ACTIONS(12217), + [anon_sym_BSLASHglsdisp] = ACTIONS(12217), + [anon_sym_BSLASHglslink] = ACTIONS(12217), + [anon_sym_BSLASHglstext] = ACTIONS(12217), + [anon_sym_BSLASHGlstext] = ACTIONS(12217), + [anon_sym_BSLASHGLStext] = ACTIONS(12217), + [anon_sym_BSLASHglsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12217), + [anon_sym_BSLASHglsplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSplural] = ACTIONS(12217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHglsname] = ACTIONS(12217), + [anon_sym_BSLASHGlsname] = ACTIONS(12217), + [anon_sym_BSLASHGLSname] = ACTIONS(12217), + [anon_sym_BSLASHglssymbol] = ACTIONS(12217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12217), + [anon_sym_BSLASHglsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12217), + [anon_sym_BSLASHglsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12217), + [anon_sym_BSLASHglsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12217), + [anon_sym_BSLASHglsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12217), + [anon_sym_BSLASHglsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12217), + [anon_sym_BSLASHnewacronym] = ACTIONS(12217), + [anon_sym_BSLASHacrshort] = ACTIONS(12217), + [anon_sym_BSLASHAcrshort] = ACTIONS(12217), + [anon_sym_BSLASHACRshort] = ACTIONS(12217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12217), + [anon_sym_BSLASHacrlong] = ACTIONS(12217), + [anon_sym_BSLASHAcrlong] = ACTIONS(12217), + [anon_sym_BSLASHACRlong] = ACTIONS(12217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12217), + [anon_sym_BSLASHacrfull] = ACTIONS(12217), + [anon_sym_BSLASHAcrfull] = ACTIONS(12217), + [anon_sym_BSLASHACRfull] = ACTIONS(12217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12217), + [anon_sym_BSLASHacs] = ACTIONS(12217), + [anon_sym_BSLASHAcs] = ACTIONS(12217), + [anon_sym_BSLASHacsp] = ACTIONS(12217), + [anon_sym_BSLASHAcsp] = ACTIONS(12217), + [anon_sym_BSLASHacl] = ACTIONS(12217), + [anon_sym_BSLASHAcl] = ACTIONS(12217), + [anon_sym_BSLASHaclp] = ACTIONS(12217), + [anon_sym_BSLASHAclp] = ACTIONS(12217), + [anon_sym_BSLASHacf] = ACTIONS(12217), + [anon_sym_BSLASHAcf] = ACTIONS(12217), + [anon_sym_BSLASHacfp] = ACTIONS(12217), + [anon_sym_BSLASHAcfp] = ACTIONS(12217), + [anon_sym_BSLASHac] = ACTIONS(12217), + [anon_sym_BSLASHAc] = ACTIONS(12217), + [anon_sym_BSLASHacp] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12217), + [anon_sym_BSLASHcolor] = ACTIONS(12217), + [anon_sym_BSLASHcolorbox] = ACTIONS(12217), + [anon_sym_BSLASHtextcolor] = ACTIONS(12217), + [anon_sym_BSLASHpagecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12217), + }, + [1154] = { + [sym_brace_group] = STATE(3119), + [sym_generic_command_name] = ACTIONS(12054), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12054), + [aux_sym_subsubsection_token1] = ACTIONS(12054), + [aux_sym_paragraph_token1] = ACTIONS(12054), + [aux_sym_subparagraph_token1] = ACTIONS(12054), + [anon_sym_BSLASHitem] = ACTIONS(12054), + [anon_sym_LBRACK] = ACTIONS(12052), + [anon_sym_RBRACK] = ACTIONS(12052), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12052), + [anon_sym_LPAREN] = ACTIONS(12052), + [anon_sym_COMMA] = ACTIONS(12052), + [anon_sym_EQ] = ACTIONS(12052), + [sym_word] = ACTIONS(12052), + [sym_param] = ACTIONS(12052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12052), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12052), + [anon_sym_DOLLAR] = ACTIONS(12054), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12052), + [anon_sym_BSLASHbegin] = ACTIONS(12054), + [anon_sym_BSLASHcaption] = ACTIONS(12054), + [anon_sym_BSLASHcite] = ACTIONS(12054), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCite] = ACTIONS(12054), + [anon_sym_BSLASHnocite] = ACTIONS(12054), + [anon_sym_BSLASHcitet] = ACTIONS(12054), + [anon_sym_BSLASHcitep] = ACTIONS(12054), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteauthor] = ACTIONS(12054), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12054), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitetitle] = ACTIONS(12054), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteyear] = ACTIONS(12054), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitedate] = ACTIONS(12054), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteurl] = ACTIONS(12054), + [anon_sym_BSLASHfullcite] = ACTIONS(12054), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12054), + [anon_sym_BSLASHcitealt] = ACTIONS(12054), + [anon_sym_BSLASHcitealp] = ACTIONS(12054), + [anon_sym_BSLASHcitetext] = ACTIONS(12054), + [anon_sym_BSLASHparencite] = ACTIONS(12054), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHParencite] = ACTIONS(12054), + [anon_sym_BSLASHfootcite] = ACTIONS(12054), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12054), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12054), + [anon_sym_BSLASHtextcite] = ACTIONS(12054), + [anon_sym_BSLASHTextcite] = ACTIONS(12054), + [anon_sym_BSLASHsmartcite] = ACTIONS(12054), + [anon_sym_BSLASHSmartcite] = ACTIONS(12054), + [anon_sym_BSLASHsupercite] = ACTIONS(12054), + [anon_sym_BSLASHautocite] = ACTIONS(12054), + [anon_sym_BSLASHAutocite] = ACTIONS(12054), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHvolcite] = ACTIONS(12054), + [anon_sym_BSLASHVolcite] = ACTIONS(12054), + [anon_sym_BSLASHpvolcite] = ACTIONS(12054), + [anon_sym_BSLASHPvolcite] = ACTIONS(12054), + [anon_sym_BSLASHfvolcite] = ACTIONS(12054), + [anon_sym_BSLASHftvolcite] = ACTIONS(12054), + [anon_sym_BSLASHsvolcite] = ACTIONS(12054), + [anon_sym_BSLASHSvolcite] = ACTIONS(12054), + [anon_sym_BSLASHtvolcite] = ACTIONS(12054), + [anon_sym_BSLASHTvolcite] = ACTIONS(12054), + [anon_sym_BSLASHavolcite] = ACTIONS(12054), + [anon_sym_BSLASHAvolcite] = ACTIONS(12054), + [anon_sym_BSLASHnotecite] = ACTIONS(12054), + [anon_sym_BSLASHpnotecite] = ACTIONS(12054), + [anon_sym_BSLASHPnotecite] = ACTIONS(12054), + [anon_sym_BSLASHfnotecite] = ACTIONS(12054), + [anon_sym_BSLASHusepackage] = ACTIONS(12054), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12054), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12054), + [anon_sym_BSLASHinclude] = ACTIONS(12054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12054), + [anon_sym_BSLASHinput] = ACTIONS(12054), + [anon_sym_BSLASHsubfile] = ACTIONS(12054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12054), + [anon_sym_BSLASHbibliography] = ACTIONS(12054), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12054), + [anon_sym_BSLASHincludesvg] = ACTIONS(12054), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12054), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12054), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12054), + [anon_sym_BSLASHimport] = ACTIONS(12054), + [anon_sym_BSLASHsubimport] = ACTIONS(12054), + [anon_sym_BSLASHinputfrom] = ACTIONS(12054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12054), + [anon_sym_BSLASHincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHlabel] = ACTIONS(12054), + [anon_sym_BSLASHref] = ACTIONS(12054), + [anon_sym_BSLASHvref] = ACTIONS(12054), + [anon_sym_BSLASHVref] = ACTIONS(12054), + [anon_sym_BSLASHautoref] = ACTIONS(12054), + [anon_sym_BSLASHpageref] = ACTIONS(12054), + [anon_sym_BSLASHcref] = ACTIONS(12054), + [anon_sym_BSLASHCref] = ACTIONS(12054), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnameCref] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHlabelcref] = ACTIONS(12054), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12054), + [anon_sym_BSLASHeqref] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange] = ACTIONS(12054), + [anon_sym_BSLASHCrefrange] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewlabel] = ACTIONS(12054), + [anon_sym_BSLASHnewcommand] = ACTIONS(12054), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12054), + [anon_sym_BSLASHgls] = ACTIONS(12054), + [anon_sym_BSLASHGls] = ACTIONS(12054), + [anon_sym_BSLASHGLS] = ACTIONS(12054), + [anon_sym_BSLASHglspl] = ACTIONS(12054), + [anon_sym_BSLASHGlspl] = ACTIONS(12054), + [anon_sym_BSLASHGLSpl] = ACTIONS(12054), + [anon_sym_BSLASHglsdisp] = ACTIONS(12054), + [anon_sym_BSLASHglslink] = ACTIONS(12054), + [anon_sym_BSLASHglstext] = ACTIONS(12054), + [anon_sym_BSLASHGlstext] = ACTIONS(12054), + [anon_sym_BSLASHGLStext] = ACTIONS(12054), + [anon_sym_BSLASHglsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12054), + [anon_sym_BSLASHglsplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSplural] = ACTIONS(12054), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHglsname] = ACTIONS(12054), + [anon_sym_BSLASHGlsname] = ACTIONS(12054), + [anon_sym_BSLASHGLSname] = ACTIONS(12054), + [anon_sym_BSLASHglssymbol] = ACTIONS(12054), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12054), + [anon_sym_BSLASHglsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12054), + [anon_sym_BSLASHglsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12054), + [anon_sym_BSLASHglsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12054), + [anon_sym_BSLASHglsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12054), + [anon_sym_BSLASHglsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12054), + [anon_sym_BSLASHnewacronym] = ACTIONS(12054), + [anon_sym_BSLASHacrshort] = ACTIONS(12054), + [anon_sym_BSLASHAcrshort] = ACTIONS(12054), + [anon_sym_BSLASHACRshort] = ACTIONS(12054), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12054), + [anon_sym_BSLASHacrlong] = ACTIONS(12054), + [anon_sym_BSLASHAcrlong] = ACTIONS(12054), + [anon_sym_BSLASHACRlong] = ACTIONS(12054), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12054), + [anon_sym_BSLASHacrfull] = ACTIONS(12054), + [anon_sym_BSLASHAcrfull] = ACTIONS(12054), + [anon_sym_BSLASHACRfull] = ACTIONS(12054), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12054), + [anon_sym_BSLASHacs] = ACTIONS(12054), + [anon_sym_BSLASHAcs] = ACTIONS(12054), + [anon_sym_BSLASHacsp] = ACTIONS(12054), + [anon_sym_BSLASHAcsp] = ACTIONS(12054), + [anon_sym_BSLASHacl] = ACTIONS(12054), + [anon_sym_BSLASHAcl] = ACTIONS(12054), + [anon_sym_BSLASHaclp] = ACTIONS(12054), + [anon_sym_BSLASHAclp] = ACTIONS(12054), + [anon_sym_BSLASHacf] = ACTIONS(12054), + [anon_sym_BSLASHAcf] = ACTIONS(12054), + [anon_sym_BSLASHacfp] = ACTIONS(12054), + [anon_sym_BSLASHAcfp] = ACTIONS(12054), + [anon_sym_BSLASHac] = ACTIONS(12054), + [anon_sym_BSLASHAc] = ACTIONS(12054), + [anon_sym_BSLASHacp] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12054), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12054), + [anon_sym_BSLASHcolor] = ACTIONS(12054), + [anon_sym_BSLASHcolorbox] = ACTIONS(12054), + [anon_sym_BSLASHtextcolor] = ACTIONS(12054), + [anon_sym_BSLASHpagecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12054), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12054), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12054), + }, + [1155] = { + [sym_generic_command_name] = ACTIONS(12221), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12221), + [aux_sym_subsection_token1] = ACTIONS(12221), + [aux_sym_subsubsection_token1] = ACTIONS(12221), + [aux_sym_paragraph_token1] = ACTIONS(12221), + [aux_sym_subparagraph_token1] = ACTIONS(12221), + [anon_sym_BSLASHitem] = ACTIONS(12221), + [anon_sym_LBRACK] = ACTIONS(12219), + [anon_sym_RBRACK] = ACTIONS(12219), + [anon_sym_LBRACE] = ACTIONS(12715), + [anon_sym_RBRACE] = ACTIONS(12219), + [anon_sym_LPAREN] = ACTIONS(12219), + [anon_sym_COMMA] = ACTIONS(12219), + [anon_sym_EQ] = ACTIONS(12219), + [sym_word] = ACTIONS(12219), + [sym_param] = ACTIONS(12219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12219), + [anon_sym_DOLLAR] = ACTIONS(12221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12219), + [anon_sym_BSLASHbegin] = ACTIONS(12221), + [anon_sym_BSLASHcaption] = ACTIONS(12221), + [anon_sym_BSLASHcite] = ACTIONS(12221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCite] = ACTIONS(12221), + [anon_sym_BSLASHnocite] = ACTIONS(12221), + [anon_sym_BSLASHcitet] = ACTIONS(12221), + [anon_sym_BSLASHcitep] = ACTIONS(12221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteauthor] = ACTIONS(12221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitetitle] = ACTIONS(12221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteyear] = ACTIONS(12221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitedate] = ACTIONS(12221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteurl] = ACTIONS(12221), + [anon_sym_BSLASHfullcite] = ACTIONS(12221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12221), + [anon_sym_BSLASHcitealt] = ACTIONS(12221), + [anon_sym_BSLASHcitealp] = ACTIONS(12221), + [anon_sym_BSLASHcitetext] = ACTIONS(12221), + [anon_sym_BSLASHparencite] = ACTIONS(12221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHParencite] = ACTIONS(12221), + [anon_sym_BSLASHfootcite] = ACTIONS(12221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12221), + [anon_sym_BSLASHtextcite] = ACTIONS(12221), + [anon_sym_BSLASHTextcite] = ACTIONS(12221), + [anon_sym_BSLASHsmartcite] = ACTIONS(12221), + [anon_sym_BSLASHSmartcite] = ACTIONS(12221), + [anon_sym_BSLASHsupercite] = ACTIONS(12221), + [anon_sym_BSLASHautocite] = ACTIONS(12221), + [anon_sym_BSLASHAutocite] = ACTIONS(12221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHvolcite] = ACTIONS(12221), + [anon_sym_BSLASHVolcite] = ACTIONS(12221), + [anon_sym_BSLASHpvolcite] = ACTIONS(12221), + [anon_sym_BSLASHPvolcite] = ACTIONS(12221), + [anon_sym_BSLASHfvolcite] = ACTIONS(12221), + [anon_sym_BSLASHftvolcite] = ACTIONS(12221), + [anon_sym_BSLASHsvolcite] = ACTIONS(12221), + [anon_sym_BSLASHSvolcite] = ACTIONS(12221), + [anon_sym_BSLASHtvolcite] = ACTIONS(12221), + [anon_sym_BSLASHTvolcite] = ACTIONS(12221), + [anon_sym_BSLASHavolcite] = ACTIONS(12221), + [anon_sym_BSLASHAvolcite] = ACTIONS(12221), + [anon_sym_BSLASHnotecite] = ACTIONS(12221), + [anon_sym_BSLASHpnotecite] = ACTIONS(12221), + [anon_sym_BSLASHPnotecite] = ACTIONS(12221), + [anon_sym_BSLASHfnotecite] = ACTIONS(12221), + [anon_sym_BSLASHusepackage] = ACTIONS(12221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12221), + [anon_sym_BSLASHinclude] = ACTIONS(12221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12221), + [anon_sym_BSLASHinput] = ACTIONS(12221), + [anon_sym_BSLASHsubfile] = ACTIONS(12221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12221), + [anon_sym_BSLASHbibliography] = ACTIONS(12221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12221), + [anon_sym_BSLASHincludesvg] = ACTIONS(12221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12221), + [anon_sym_BSLASHimport] = ACTIONS(12221), + [anon_sym_BSLASHsubimport] = ACTIONS(12221), + [anon_sym_BSLASHinputfrom] = ACTIONS(12221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12221), + [anon_sym_BSLASHincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHlabel] = ACTIONS(12221), + [anon_sym_BSLASHref] = ACTIONS(12221), + [anon_sym_BSLASHvref] = ACTIONS(12221), + [anon_sym_BSLASHVref] = ACTIONS(12221), + [anon_sym_BSLASHautoref] = ACTIONS(12221), + [anon_sym_BSLASHpageref] = ACTIONS(12221), + [anon_sym_BSLASHcref] = ACTIONS(12221), + [anon_sym_BSLASHCref] = ACTIONS(12221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnameCref] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHlabelcref] = ACTIONS(12221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12221), + [anon_sym_BSLASHeqref] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange] = ACTIONS(12221), + [anon_sym_BSLASHCrefrange] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewlabel] = ACTIONS(12221), + [anon_sym_BSLASHnewcommand] = ACTIONS(12221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12221), + [anon_sym_BSLASHgls] = ACTIONS(12221), + [anon_sym_BSLASHGls] = ACTIONS(12221), + [anon_sym_BSLASHGLS] = ACTIONS(12221), + [anon_sym_BSLASHglspl] = ACTIONS(12221), + [anon_sym_BSLASHGlspl] = ACTIONS(12221), + [anon_sym_BSLASHGLSpl] = ACTIONS(12221), + [anon_sym_BSLASHglsdisp] = ACTIONS(12221), + [anon_sym_BSLASHglslink] = ACTIONS(12221), + [anon_sym_BSLASHglstext] = ACTIONS(12221), + [anon_sym_BSLASHGlstext] = ACTIONS(12221), + [anon_sym_BSLASHGLStext] = ACTIONS(12221), + [anon_sym_BSLASHglsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12221), + [anon_sym_BSLASHglsplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSplural] = ACTIONS(12221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHglsname] = ACTIONS(12221), + [anon_sym_BSLASHGlsname] = ACTIONS(12221), + [anon_sym_BSLASHGLSname] = ACTIONS(12221), + [anon_sym_BSLASHglssymbol] = ACTIONS(12221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12221), + [anon_sym_BSLASHglsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12221), + [anon_sym_BSLASHglsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12221), + [anon_sym_BSLASHglsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12221), + [anon_sym_BSLASHglsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12221), + [anon_sym_BSLASHglsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12221), + [anon_sym_BSLASHnewacronym] = ACTIONS(12221), + [anon_sym_BSLASHacrshort] = ACTIONS(12221), + [anon_sym_BSLASHAcrshort] = ACTIONS(12221), + [anon_sym_BSLASHACRshort] = ACTIONS(12221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12221), + [anon_sym_BSLASHacrlong] = ACTIONS(12221), + [anon_sym_BSLASHAcrlong] = ACTIONS(12221), + [anon_sym_BSLASHACRlong] = ACTIONS(12221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12221), + [anon_sym_BSLASHacrfull] = ACTIONS(12221), + [anon_sym_BSLASHAcrfull] = ACTIONS(12221), + [anon_sym_BSLASHACRfull] = ACTIONS(12221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12221), + [anon_sym_BSLASHacs] = ACTIONS(12221), + [anon_sym_BSLASHAcs] = ACTIONS(12221), + [anon_sym_BSLASHacsp] = ACTIONS(12221), + [anon_sym_BSLASHAcsp] = ACTIONS(12221), + [anon_sym_BSLASHacl] = ACTIONS(12221), + [anon_sym_BSLASHAcl] = ACTIONS(12221), + [anon_sym_BSLASHaclp] = ACTIONS(12221), + [anon_sym_BSLASHAclp] = ACTIONS(12221), + [anon_sym_BSLASHacf] = ACTIONS(12221), + [anon_sym_BSLASHAcf] = ACTIONS(12221), + [anon_sym_BSLASHacfp] = ACTIONS(12221), + [anon_sym_BSLASHAcfp] = ACTIONS(12221), + [anon_sym_BSLASHac] = ACTIONS(12221), + [anon_sym_BSLASHAc] = ACTIONS(12221), + [anon_sym_BSLASHacp] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12221), + [anon_sym_BSLASHcolor] = ACTIONS(12221), + [anon_sym_BSLASHcolorbox] = ACTIONS(12221), + [anon_sym_BSLASHtextcolor] = ACTIONS(12221), + [anon_sym_BSLASHpagecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12221), + }, + [1156] = { + [sym_generic_command_name] = ACTIONS(12108), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12108), + [aux_sym_subsection_token1] = ACTIONS(12108), + [aux_sym_subsubsection_token1] = ACTIONS(12108), + [aux_sym_paragraph_token1] = ACTIONS(12108), + [aux_sym_subparagraph_token1] = ACTIONS(12108), + [anon_sym_BSLASHitem] = ACTIONS(12108), + [anon_sym_LBRACK] = ACTIONS(12106), + [anon_sym_RBRACK] = ACTIONS(12106), + [anon_sym_LBRACE] = ACTIONS(12106), + [anon_sym_RBRACE] = ACTIONS(12106), + [anon_sym_LPAREN] = ACTIONS(12106), + [anon_sym_COMMA] = ACTIONS(12106), + [anon_sym_EQ] = ACTIONS(12106), + [sym_word] = ACTIONS(12106), + [sym_param] = ACTIONS(12106), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12106), + [anon_sym_DOLLAR] = ACTIONS(12108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12106), + [anon_sym_BSLASHbegin] = ACTIONS(12108), + [anon_sym_BSLASHcaption] = ACTIONS(12108), + [anon_sym_BSLASHcite] = ACTIONS(12108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCite] = ACTIONS(12108), + [anon_sym_BSLASHnocite] = ACTIONS(12108), + [anon_sym_BSLASHcitet] = ACTIONS(12108), + [anon_sym_BSLASHcitep] = ACTIONS(12108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteauthor] = ACTIONS(12108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitetitle] = ACTIONS(12108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteyear] = ACTIONS(12108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitedate] = ACTIONS(12108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteurl] = ACTIONS(12108), + [anon_sym_BSLASHfullcite] = ACTIONS(12108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12108), + [anon_sym_BSLASHcitealt] = ACTIONS(12108), + [anon_sym_BSLASHcitealp] = ACTIONS(12108), + [anon_sym_BSLASHcitetext] = ACTIONS(12108), + [anon_sym_BSLASHparencite] = ACTIONS(12108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHParencite] = ACTIONS(12108), + [anon_sym_BSLASHfootcite] = ACTIONS(12108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12108), + [anon_sym_BSLASHtextcite] = ACTIONS(12108), + [anon_sym_BSLASHTextcite] = ACTIONS(12108), + [anon_sym_BSLASHsmartcite] = ACTIONS(12108), + [anon_sym_BSLASHSmartcite] = ACTIONS(12108), + [anon_sym_BSLASHsupercite] = ACTIONS(12108), + [anon_sym_BSLASHautocite] = ACTIONS(12108), + [anon_sym_BSLASHAutocite] = ACTIONS(12108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHvolcite] = ACTIONS(12108), + [anon_sym_BSLASHVolcite] = ACTIONS(12108), + [anon_sym_BSLASHpvolcite] = ACTIONS(12108), + [anon_sym_BSLASHPvolcite] = ACTIONS(12108), + [anon_sym_BSLASHfvolcite] = ACTIONS(12108), + [anon_sym_BSLASHftvolcite] = ACTIONS(12108), + [anon_sym_BSLASHsvolcite] = ACTIONS(12108), + [anon_sym_BSLASHSvolcite] = ACTIONS(12108), + [anon_sym_BSLASHtvolcite] = ACTIONS(12108), + [anon_sym_BSLASHTvolcite] = ACTIONS(12108), + [anon_sym_BSLASHavolcite] = ACTIONS(12108), + [anon_sym_BSLASHAvolcite] = ACTIONS(12108), + [anon_sym_BSLASHnotecite] = ACTIONS(12108), + [anon_sym_BSLASHpnotecite] = ACTIONS(12108), + [anon_sym_BSLASHPnotecite] = ACTIONS(12108), + [anon_sym_BSLASHfnotecite] = ACTIONS(12108), + [anon_sym_BSLASHusepackage] = ACTIONS(12108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12108), + [anon_sym_BSLASHinclude] = ACTIONS(12108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12108), + [anon_sym_BSLASHinput] = ACTIONS(12108), + [anon_sym_BSLASHsubfile] = ACTIONS(12108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12108), + [anon_sym_BSLASHbibliography] = ACTIONS(12108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12108), + [anon_sym_BSLASHincludesvg] = ACTIONS(12108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12108), + [anon_sym_BSLASHimport] = ACTIONS(12108), + [anon_sym_BSLASHsubimport] = ACTIONS(12108), + [anon_sym_BSLASHinputfrom] = ACTIONS(12108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12108), + [anon_sym_BSLASHincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHlabel] = ACTIONS(12108), + [anon_sym_BSLASHref] = ACTIONS(12108), + [anon_sym_BSLASHvref] = ACTIONS(12108), + [anon_sym_BSLASHVref] = ACTIONS(12108), + [anon_sym_BSLASHautoref] = ACTIONS(12108), + [anon_sym_BSLASHpageref] = ACTIONS(12108), + [anon_sym_BSLASHcref] = ACTIONS(12108), + [anon_sym_BSLASHCref] = ACTIONS(12108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnameCref] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHlabelcref] = ACTIONS(12108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12108), + [anon_sym_BSLASHeqref] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange] = ACTIONS(12108), + [anon_sym_BSLASHCrefrange] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewlabel] = ACTIONS(12108), + [anon_sym_BSLASHnewcommand] = ACTIONS(12108), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12108), + [anon_sym_BSLASHgls] = ACTIONS(12108), + [anon_sym_BSLASHGls] = ACTIONS(12108), + [anon_sym_BSLASHGLS] = ACTIONS(12108), + [anon_sym_BSLASHglspl] = ACTIONS(12108), + [anon_sym_BSLASHGlspl] = ACTIONS(12108), + [anon_sym_BSLASHGLSpl] = ACTIONS(12108), + [anon_sym_BSLASHglsdisp] = ACTIONS(12108), + [anon_sym_BSLASHglslink] = ACTIONS(12108), + [anon_sym_BSLASHglstext] = ACTIONS(12108), + [anon_sym_BSLASHGlstext] = ACTIONS(12108), + [anon_sym_BSLASHGLStext] = ACTIONS(12108), + [anon_sym_BSLASHglsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12108), + [anon_sym_BSLASHglsplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSplural] = ACTIONS(12108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHglsname] = ACTIONS(12108), + [anon_sym_BSLASHGlsname] = ACTIONS(12108), + [anon_sym_BSLASHGLSname] = ACTIONS(12108), + [anon_sym_BSLASHglssymbol] = ACTIONS(12108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12108), + [anon_sym_BSLASHglsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12108), + [anon_sym_BSLASHglsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12108), + [anon_sym_BSLASHglsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12108), + [anon_sym_BSLASHglsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12108), + [anon_sym_BSLASHglsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12108), + [anon_sym_BSLASHnewacronym] = ACTIONS(12108), + [anon_sym_BSLASHacrshort] = ACTIONS(12108), + [anon_sym_BSLASHAcrshort] = ACTIONS(12108), + [anon_sym_BSLASHACRshort] = ACTIONS(12108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12108), + [anon_sym_BSLASHacrlong] = ACTIONS(12108), + [anon_sym_BSLASHAcrlong] = ACTIONS(12108), + [anon_sym_BSLASHACRlong] = ACTIONS(12108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12108), + [anon_sym_BSLASHacrfull] = ACTIONS(12108), + [anon_sym_BSLASHAcrfull] = ACTIONS(12108), + [anon_sym_BSLASHACRfull] = ACTIONS(12108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12108), + [anon_sym_BSLASHacs] = ACTIONS(12108), + [anon_sym_BSLASHAcs] = ACTIONS(12108), + [anon_sym_BSLASHacsp] = ACTIONS(12108), + [anon_sym_BSLASHAcsp] = ACTIONS(12108), + [anon_sym_BSLASHacl] = ACTIONS(12108), + [anon_sym_BSLASHAcl] = ACTIONS(12108), + [anon_sym_BSLASHaclp] = ACTIONS(12108), + [anon_sym_BSLASHAclp] = ACTIONS(12108), + [anon_sym_BSLASHacf] = ACTIONS(12108), + [anon_sym_BSLASHAcf] = ACTIONS(12108), + [anon_sym_BSLASHacfp] = ACTIONS(12108), + [anon_sym_BSLASHAcfp] = ACTIONS(12108), + [anon_sym_BSLASHac] = ACTIONS(12108), + [anon_sym_BSLASHAc] = ACTIONS(12108), + [anon_sym_BSLASHacp] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12108), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12108), + [anon_sym_BSLASHcolor] = ACTIONS(12108), + [anon_sym_BSLASHcolorbox] = ACTIONS(12108), + [anon_sym_BSLASHtextcolor] = ACTIONS(12108), + [anon_sym_BSLASHpagecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12108), + }, + [1157] = { + [sym_generic_command_name] = ACTIONS(12235), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12235), + [aux_sym_subsection_token1] = ACTIONS(12235), + [aux_sym_subsubsection_token1] = ACTIONS(12235), + [aux_sym_paragraph_token1] = ACTIONS(12235), + [aux_sym_subparagraph_token1] = ACTIONS(12235), + [anon_sym_BSLASHitem] = ACTIONS(12235), + [anon_sym_LBRACK] = ACTIONS(12233), + [anon_sym_RBRACK] = ACTIONS(12233), + [anon_sym_LBRACE] = ACTIONS(12233), + [anon_sym_RBRACE] = ACTIONS(12233), + [anon_sym_LPAREN] = ACTIONS(12233), + [anon_sym_COMMA] = ACTIONS(12233), + [anon_sym_EQ] = ACTIONS(12233), + [sym_word] = ACTIONS(12233), + [sym_param] = ACTIONS(12233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12233), + [anon_sym_DOLLAR] = ACTIONS(12235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12233), + [anon_sym_BSLASHbegin] = ACTIONS(12235), + [anon_sym_BSLASHcaption] = ACTIONS(12235), + [anon_sym_BSLASHcite] = ACTIONS(12235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCite] = ACTIONS(12235), + [anon_sym_BSLASHnocite] = ACTIONS(12235), + [anon_sym_BSLASHcitet] = ACTIONS(12235), + [anon_sym_BSLASHcitep] = ACTIONS(12235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteauthor] = ACTIONS(12235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitetitle] = ACTIONS(12235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteyear] = ACTIONS(12235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitedate] = ACTIONS(12235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteurl] = ACTIONS(12235), + [anon_sym_BSLASHfullcite] = ACTIONS(12235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12235), + [anon_sym_BSLASHcitealt] = ACTIONS(12235), + [anon_sym_BSLASHcitealp] = ACTIONS(12235), + [anon_sym_BSLASHcitetext] = ACTIONS(12235), + [anon_sym_BSLASHparencite] = ACTIONS(12235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHParencite] = ACTIONS(12235), + [anon_sym_BSLASHfootcite] = ACTIONS(12235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12235), + [anon_sym_BSLASHtextcite] = ACTIONS(12235), + [anon_sym_BSLASHTextcite] = ACTIONS(12235), + [anon_sym_BSLASHsmartcite] = ACTIONS(12235), + [anon_sym_BSLASHSmartcite] = ACTIONS(12235), + [anon_sym_BSLASHsupercite] = ACTIONS(12235), + [anon_sym_BSLASHautocite] = ACTIONS(12235), + [anon_sym_BSLASHAutocite] = ACTIONS(12235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHvolcite] = ACTIONS(12235), + [anon_sym_BSLASHVolcite] = ACTIONS(12235), + [anon_sym_BSLASHpvolcite] = ACTIONS(12235), + [anon_sym_BSLASHPvolcite] = ACTIONS(12235), + [anon_sym_BSLASHfvolcite] = ACTIONS(12235), + [anon_sym_BSLASHftvolcite] = ACTIONS(12235), + [anon_sym_BSLASHsvolcite] = ACTIONS(12235), + [anon_sym_BSLASHSvolcite] = ACTIONS(12235), + [anon_sym_BSLASHtvolcite] = ACTIONS(12235), + [anon_sym_BSLASHTvolcite] = ACTIONS(12235), + [anon_sym_BSLASHavolcite] = ACTIONS(12235), + [anon_sym_BSLASHAvolcite] = ACTIONS(12235), + [anon_sym_BSLASHnotecite] = ACTIONS(12235), + [anon_sym_BSLASHpnotecite] = ACTIONS(12235), + [anon_sym_BSLASHPnotecite] = ACTIONS(12235), + [anon_sym_BSLASHfnotecite] = ACTIONS(12235), + [anon_sym_BSLASHusepackage] = ACTIONS(12235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12235), + [anon_sym_BSLASHinclude] = ACTIONS(12235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12235), + [anon_sym_BSLASHinput] = ACTIONS(12235), + [anon_sym_BSLASHsubfile] = ACTIONS(12235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12235), + [anon_sym_BSLASHbibliography] = ACTIONS(12235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12235), + [anon_sym_BSLASHincludesvg] = ACTIONS(12235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12235), + [anon_sym_BSLASHimport] = ACTIONS(12235), + [anon_sym_BSLASHsubimport] = ACTIONS(12235), + [anon_sym_BSLASHinputfrom] = ACTIONS(12235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12235), + [anon_sym_BSLASHincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHlabel] = ACTIONS(12235), + [anon_sym_BSLASHref] = ACTIONS(12235), + [anon_sym_BSLASHvref] = ACTIONS(12235), + [anon_sym_BSLASHVref] = ACTIONS(12235), + [anon_sym_BSLASHautoref] = ACTIONS(12235), + [anon_sym_BSLASHpageref] = ACTIONS(12235), + [anon_sym_BSLASHcref] = ACTIONS(12235), + [anon_sym_BSLASHCref] = ACTIONS(12235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnameCref] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHlabelcref] = ACTIONS(12235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12235), + [anon_sym_BSLASHeqref] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange] = ACTIONS(12235), + [anon_sym_BSLASHCrefrange] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewlabel] = ACTIONS(12235), + [anon_sym_BSLASHnewcommand] = ACTIONS(12235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12235), + [anon_sym_BSLASHgls] = ACTIONS(12235), + [anon_sym_BSLASHGls] = ACTIONS(12235), + [anon_sym_BSLASHGLS] = ACTIONS(12235), + [anon_sym_BSLASHglspl] = ACTIONS(12235), + [anon_sym_BSLASHGlspl] = ACTIONS(12235), + [anon_sym_BSLASHGLSpl] = ACTIONS(12235), + [anon_sym_BSLASHglsdisp] = ACTIONS(12235), + [anon_sym_BSLASHglslink] = ACTIONS(12235), + [anon_sym_BSLASHglstext] = ACTIONS(12235), + [anon_sym_BSLASHGlstext] = ACTIONS(12235), + [anon_sym_BSLASHGLStext] = ACTIONS(12235), + [anon_sym_BSLASHglsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12235), + [anon_sym_BSLASHglsplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSplural] = ACTIONS(12235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHglsname] = ACTIONS(12235), + [anon_sym_BSLASHGlsname] = ACTIONS(12235), + [anon_sym_BSLASHGLSname] = ACTIONS(12235), + [anon_sym_BSLASHglssymbol] = ACTIONS(12235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12235), + [anon_sym_BSLASHglsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12235), + [anon_sym_BSLASHglsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12235), + [anon_sym_BSLASHglsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12235), + [anon_sym_BSLASHglsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12235), + [anon_sym_BSLASHglsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12235), + [anon_sym_BSLASHnewacronym] = ACTIONS(12235), + [anon_sym_BSLASHacrshort] = ACTIONS(12235), + [anon_sym_BSLASHAcrshort] = ACTIONS(12235), + [anon_sym_BSLASHACRshort] = ACTIONS(12235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12235), + [anon_sym_BSLASHacrlong] = ACTIONS(12235), + [anon_sym_BSLASHAcrlong] = ACTIONS(12235), + [anon_sym_BSLASHACRlong] = ACTIONS(12235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12235), + [anon_sym_BSLASHacrfull] = ACTIONS(12235), + [anon_sym_BSLASHAcrfull] = ACTIONS(12235), + [anon_sym_BSLASHACRfull] = ACTIONS(12235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12235), + [anon_sym_BSLASHacs] = ACTIONS(12235), + [anon_sym_BSLASHAcs] = ACTIONS(12235), + [anon_sym_BSLASHacsp] = ACTIONS(12235), + [anon_sym_BSLASHAcsp] = ACTIONS(12235), + [anon_sym_BSLASHacl] = ACTIONS(12235), + [anon_sym_BSLASHAcl] = ACTIONS(12235), + [anon_sym_BSLASHaclp] = ACTIONS(12235), + [anon_sym_BSLASHAclp] = ACTIONS(12235), + [anon_sym_BSLASHacf] = ACTIONS(12235), + [anon_sym_BSLASHAcf] = ACTIONS(12235), + [anon_sym_BSLASHacfp] = ACTIONS(12235), + [anon_sym_BSLASHAcfp] = ACTIONS(12235), + [anon_sym_BSLASHac] = ACTIONS(12235), + [anon_sym_BSLASHAc] = ACTIONS(12235), + [anon_sym_BSLASHacp] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12235), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12235), + [anon_sym_BSLASHcolor] = ACTIONS(12235), + [anon_sym_BSLASHcolorbox] = ACTIONS(12235), + [anon_sym_BSLASHtextcolor] = ACTIONS(12235), + [anon_sym_BSLASHpagecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12235), + }, + [1158] = { + [sym_generic_command_name] = ACTIONS(12239), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12239), + [aux_sym_subsection_token1] = ACTIONS(12239), + [aux_sym_subsubsection_token1] = ACTIONS(12239), + [aux_sym_paragraph_token1] = ACTIONS(12239), + [aux_sym_subparagraph_token1] = ACTIONS(12239), + [anon_sym_BSLASHitem] = ACTIONS(12239), + [anon_sym_LBRACK] = ACTIONS(12237), + [anon_sym_RBRACK] = ACTIONS(12237), + [anon_sym_LBRACE] = ACTIONS(12237), + [anon_sym_RBRACE] = ACTIONS(12237), + [anon_sym_LPAREN] = ACTIONS(12237), + [anon_sym_COMMA] = ACTIONS(12237), + [anon_sym_EQ] = ACTIONS(12237), + [sym_word] = ACTIONS(12237), + [sym_param] = ACTIONS(12237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12237), + [anon_sym_DOLLAR] = ACTIONS(12239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12237), + [anon_sym_BSLASHbegin] = ACTIONS(12239), + [anon_sym_BSLASHcaption] = ACTIONS(12239), + [anon_sym_BSLASHcite] = ACTIONS(12239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCite] = ACTIONS(12239), + [anon_sym_BSLASHnocite] = ACTIONS(12239), + [anon_sym_BSLASHcitet] = ACTIONS(12239), + [anon_sym_BSLASHcitep] = ACTIONS(12239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteauthor] = ACTIONS(12239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitetitle] = ACTIONS(12239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteyear] = ACTIONS(12239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitedate] = ACTIONS(12239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteurl] = ACTIONS(12239), + [anon_sym_BSLASHfullcite] = ACTIONS(12239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12239), + [anon_sym_BSLASHcitealt] = ACTIONS(12239), + [anon_sym_BSLASHcitealp] = ACTIONS(12239), + [anon_sym_BSLASHcitetext] = ACTIONS(12239), + [anon_sym_BSLASHparencite] = ACTIONS(12239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHParencite] = ACTIONS(12239), + [anon_sym_BSLASHfootcite] = ACTIONS(12239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12239), + [anon_sym_BSLASHtextcite] = ACTIONS(12239), + [anon_sym_BSLASHTextcite] = ACTIONS(12239), + [anon_sym_BSLASHsmartcite] = ACTIONS(12239), + [anon_sym_BSLASHSmartcite] = ACTIONS(12239), + [anon_sym_BSLASHsupercite] = ACTIONS(12239), + [anon_sym_BSLASHautocite] = ACTIONS(12239), + [anon_sym_BSLASHAutocite] = ACTIONS(12239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHvolcite] = ACTIONS(12239), + [anon_sym_BSLASHVolcite] = ACTIONS(12239), + [anon_sym_BSLASHpvolcite] = ACTIONS(12239), + [anon_sym_BSLASHPvolcite] = ACTIONS(12239), + [anon_sym_BSLASHfvolcite] = ACTIONS(12239), + [anon_sym_BSLASHftvolcite] = ACTIONS(12239), + [anon_sym_BSLASHsvolcite] = ACTIONS(12239), + [anon_sym_BSLASHSvolcite] = ACTIONS(12239), + [anon_sym_BSLASHtvolcite] = ACTIONS(12239), + [anon_sym_BSLASHTvolcite] = ACTIONS(12239), + [anon_sym_BSLASHavolcite] = ACTIONS(12239), + [anon_sym_BSLASHAvolcite] = ACTIONS(12239), + [anon_sym_BSLASHnotecite] = ACTIONS(12239), + [anon_sym_BSLASHpnotecite] = ACTIONS(12239), + [anon_sym_BSLASHPnotecite] = ACTIONS(12239), + [anon_sym_BSLASHfnotecite] = ACTIONS(12239), + [anon_sym_BSLASHusepackage] = ACTIONS(12239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12239), + [anon_sym_BSLASHinclude] = ACTIONS(12239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12239), + [anon_sym_BSLASHinput] = ACTIONS(12239), + [anon_sym_BSLASHsubfile] = ACTIONS(12239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12239), + [anon_sym_BSLASHbibliography] = ACTIONS(12239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12239), + [anon_sym_BSLASHincludesvg] = ACTIONS(12239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12239), + [anon_sym_BSLASHimport] = ACTIONS(12239), + [anon_sym_BSLASHsubimport] = ACTIONS(12239), + [anon_sym_BSLASHinputfrom] = ACTIONS(12239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12239), + [anon_sym_BSLASHincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHlabel] = ACTIONS(12239), + [anon_sym_BSLASHref] = ACTIONS(12239), + [anon_sym_BSLASHvref] = ACTIONS(12239), + [anon_sym_BSLASHVref] = ACTIONS(12239), + [anon_sym_BSLASHautoref] = ACTIONS(12239), + [anon_sym_BSLASHpageref] = ACTIONS(12239), + [anon_sym_BSLASHcref] = ACTIONS(12239), + [anon_sym_BSLASHCref] = ACTIONS(12239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnameCref] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHlabelcref] = ACTIONS(12239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12239), + [anon_sym_BSLASHeqref] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange] = ACTIONS(12239), + [anon_sym_BSLASHCrefrange] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewlabel] = ACTIONS(12239), + [anon_sym_BSLASHnewcommand] = ACTIONS(12239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12239), + [anon_sym_BSLASHgls] = ACTIONS(12239), + [anon_sym_BSLASHGls] = ACTIONS(12239), + [anon_sym_BSLASHGLS] = ACTIONS(12239), + [anon_sym_BSLASHglspl] = ACTIONS(12239), + [anon_sym_BSLASHGlspl] = ACTIONS(12239), + [anon_sym_BSLASHGLSpl] = ACTIONS(12239), + [anon_sym_BSLASHglsdisp] = ACTIONS(12239), + [anon_sym_BSLASHglslink] = ACTIONS(12239), + [anon_sym_BSLASHglstext] = ACTIONS(12239), + [anon_sym_BSLASHGlstext] = ACTIONS(12239), + [anon_sym_BSLASHGLStext] = ACTIONS(12239), + [anon_sym_BSLASHglsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12239), + [anon_sym_BSLASHglsplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSplural] = ACTIONS(12239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHglsname] = ACTIONS(12239), + [anon_sym_BSLASHGlsname] = ACTIONS(12239), + [anon_sym_BSLASHGLSname] = ACTIONS(12239), + [anon_sym_BSLASHglssymbol] = ACTIONS(12239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12239), + [anon_sym_BSLASHglsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12239), + [anon_sym_BSLASHglsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12239), + [anon_sym_BSLASHglsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12239), + [anon_sym_BSLASHglsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12239), + [anon_sym_BSLASHglsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12239), + [anon_sym_BSLASHnewacronym] = ACTIONS(12239), + [anon_sym_BSLASHacrshort] = ACTIONS(12239), + [anon_sym_BSLASHAcrshort] = ACTIONS(12239), + [anon_sym_BSLASHACRshort] = ACTIONS(12239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12239), + [anon_sym_BSLASHacrlong] = ACTIONS(12239), + [anon_sym_BSLASHAcrlong] = ACTIONS(12239), + [anon_sym_BSLASHACRlong] = ACTIONS(12239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12239), + [anon_sym_BSLASHacrfull] = ACTIONS(12239), + [anon_sym_BSLASHAcrfull] = ACTIONS(12239), + [anon_sym_BSLASHACRfull] = ACTIONS(12239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12239), + [anon_sym_BSLASHacs] = ACTIONS(12239), + [anon_sym_BSLASHAcs] = ACTIONS(12239), + [anon_sym_BSLASHacsp] = ACTIONS(12239), + [anon_sym_BSLASHAcsp] = ACTIONS(12239), + [anon_sym_BSLASHacl] = ACTIONS(12239), + [anon_sym_BSLASHAcl] = ACTIONS(12239), + [anon_sym_BSLASHaclp] = ACTIONS(12239), + [anon_sym_BSLASHAclp] = ACTIONS(12239), + [anon_sym_BSLASHacf] = ACTIONS(12239), + [anon_sym_BSLASHAcf] = ACTIONS(12239), + [anon_sym_BSLASHacfp] = ACTIONS(12239), + [anon_sym_BSLASHAcfp] = ACTIONS(12239), + [anon_sym_BSLASHac] = ACTIONS(12239), + [anon_sym_BSLASHAc] = ACTIONS(12239), + [anon_sym_BSLASHacp] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12239), + [anon_sym_BSLASHcolor] = ACTIONS(12239), + [anon_sym_BSLASHcolorbox] = ACTIONS(12239), + [anon_sym_BSLASHtextcolor] = ACTIONS(12239), + [anon_sym_BSLASHpagecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12239), + }, + [1159] = { + [sym_generic_command_name] = ACTIONS(12243), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12243), + [aux_sym_subsection_token1] = ACTIONS(12243), + [aux_sym_subsubsection_token1] = ACTIONS(12243), + [aux_sym_paragraph_token1] = ACTIONS(12243), + [aux_sym_subparagraph_token1] = ACTIONS(12243), + [anon_sym_BSLASHitem] = ACTIONS(12243), + [anon_sym_LBRACK] = ACTIONS(12241), + [anon_sym_RBRACK] = ACTIONS(12241), + [anon_sym_LBRACE] = ACTIONS(12241), + [anon_sym_RBRACE] = ACTIONS(12241), + [anon_sym_LPAREN] = ACTIONS(12241), + [anon_sym_COMMA] = ACTIONS(12241), + [anon_sym_EQ] = ACTIONS(12241), + [sym_word] = ACTIONS(12241), + [sym_param] = ACTIONS(12241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12241), + [anon_sym_DOLLAR] = ACTIONS(12243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12241), + [anon_sym_BSLASHbegin] = ACTIONS(12243), + [anon_sym_BSLASHcaption] = ACTIONS(12243), + [anon_sym_BSLASHcite] = ACTIONS(12243), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCite] = ACTIONS(12243), + [anon_sym_BSLASHnocite] = ACTIONS(12243), + [anon_sym_BSLASHcitet] = ACTIONS(12243), + [anon_sym_BSLASHcitep] = ACTIONS(12243), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteauthor] = ACTIONS(12243), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12243), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitetitle] = ACTIONS(12243), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteyear] = ACTIONS(12243), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitedate] = ACTIONS(12243), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteurl] = ACTIONS(12243), + [anon_sym_BSLASHfullcite] = ACTIONS(12243), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12243), + [anon_sym_BSLASHcitealt] = ACTIONS(12243), + [anon_sym_BSLASHcitealp] = ACTIONS(12243), + [anon_sym_BSLASHcitetext] = ACTIONS(12243), + [anon_sym_BSLASHparencite] = ACTIONS(12243), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHParencite] = ACTIONS(12243), + [anon_sym_BSLASHfootcite] = ACTIONS(12243), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12243), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12243), + [anon_sym_BSLASHtextcite] = ACTIONS(12243), + [anon_sym_BSLASHTextcite] = ACTIONS(12243), + [anon_sym_BSLASHsmartcite] = ACTIONS(12243), + [anon_sym_BSLASHSmartcite] = ACTIONS(12243), + [anon_sym_BSLASHsupercite] = ACTIONS(12243), + [anon_sym_BSLASHautocite] = ACTIONS(12243), + [anon_sym_BSLASHAutocite] = ACTIONS(12243), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHvolcite] = ACTIONS(12243), + [anon_sym_BSLASHVolcite] = ACTIONS(12243), + [anon_sym_BSLASHpvolcite] = ACTIONS(12243), + [anon_sym_BSLASHPvolcite] = ACTIONS(12243), + [anon_sym_BSLASHfvolcite] = ACTIONS(12243), + [anon_sym_BSLASHftvolcite] = ACTIONS(12243), + [anon_sym_BSLASHsvolcite] = ACTIONS(12243), + [anon_sym_BSLASHSvolcite] = ACTIONS(12243), + [anon_sym_BSLASHtvolcite] = ACTIONS(12243), + [anon_sym_BSLASHTvolcite] = ACTIONS(12243), + [anon_sym_BSLASHavolcite] = ACTIONS(12243), + [anon_sym_BSLASHAvolcite] = ACTIONS(12243), + [anon_sym_BSLASHnotecite] = ACTIONS(12243), + [anon_sym_BSLASHpnotecite] = ACTIONS(12243), + [anon_sym_BSLASHPnotecite] = ACTIONS(12243), + [anon_sym_BSLASHfnotecite] = ACTIONS(12243), + [anon_sym_BSLASHusepackage] = ACTIONS(12243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12243), + [anon_sym_BSLASHinclude] = ACTIONS(12243), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12243), + [anon_sym_BSLASHinput] = ACTIONS(12243), + [anon_sym_BSLASHsubfile] = ACTIONS(12243), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12243), + [anon_sym_BSLASHbibliography] = ACTIONS(12243), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12243), + [anon_sym_BSLASHincludesvg] = ACTIONS(12243), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12243), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12243), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12243), + [anon_sym_BSLASHimport] = ACTIONS(12243), + [anon_sym_BSLASHsubimport] = ACTIONS(12243), + [anon_sym_BSLASHinputfrom] = ACTIONS(12243), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12243), + [anon_sym_BSLASHincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHlabel] = ACTIONS(12243), + [anon_sym_BSLASHref] = ACTIONS(12243), + [anon_sym_BSLASHvref] = ACTIONS(12243), + [anon_sym_BSLASHVref] = ACTIONS(12243), + [anon_sym_BSLASHautoref] = ACTIONS(12243), + [anon_sym_BSLASHpageref] = ACTIONS(12243), + [anon_sym_BSLASHcref] = ACTIONS(12243), + [anon_sym_BSLASHCref] = ACTIONS(12243), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnameCref] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHlabelcref] = ACTIONS(12243), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12243), + [anon_sym_BSLASHeqref] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange] = ACTIONS(12243), + [anon_sym_BSLASHCrefrange] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewlabel] = ACTIONS(12243), + [anon_sym_BSLASHnewcommand] = ACTIONS(12243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12243), + [anon_sym_BSLASHgls] = ACTIONS(12243), + [anon_sym_BSLASHGls] = ACTIONS(12243), + [anon_sym_BSLASHGLS] = ACTIONS(12243), + [anon_sym_BSLASHglspl] = ACTIONS(12243), + [anon_sym_BSLASHGlspl] = ACTIONS(12243), + [anon_sym_BSLASHGLSpl] = ACTIONS(12243), + [anon_sym_BSLASHglsdisp] = ACTIONS(12243), + [anon_sym_BSLASHglslink] = ACTIONS(12243), + [anon_sym_BSLASHglstext] = ACTIONS(12243), + [anon_sym_BSLASHGlstext] = ACTIONS(12243), + [anon_sym_BSLASHGLStext] = ACTIONS(12243), + [anon_sym_BSLASHglsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12243), + [anon_sym_BSLASHglsplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSplural] = ACTIONS(12243), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHglsname] = ACTIONS(12243), + [anon_sym_BSLASHGlsname] = ACTIONS(12243), + [anon_sym_BSLASHGLSname] = ACTIONS(12243), + [anon_sym_BSLASHglssymbol] = ACTIONS(12243), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12243), + [anon_sym_BSLASHglsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12243), + [anon_sym_BSLASHglsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12243), + [anon_sym_BSLASHglsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12243), + [anon_sym_BSLASHglsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12243), + [anon_sym_BSLASHglsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12243), + [anon_sym_BSLASHnewacronym] = ACTIONS(12243), + [anon_sym_BSLASHacrshort] = ACTIONS(12243), + [anon_sym_BSLASHAcrshort] = ACTIONS(12243), + [anon_sym_BSLASHACRshort] = ACTIONS(12243), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12243), + [anon_sym_BSLASHacrlong] = ACTIONS(12243), + [anon_sym_BSLASHAcrlong] = ACTIONS(12243), + [anon_sym_BSLASHACRlong] = ACTIONS(12243), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12243), + [anon_sym_BSLASHacrfull] = ACTIONS(12243), + [anon_sym_BSLASHAcrfull] = ACTIONS(12243), + [anon_sym_BSLASHACRfull] = ACTIONS(12243), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12243), + [anon_sym_BSLASHacs] = ACTIONS(12243), + [anon_sym_BSLASHAcs] = ACTIONS(12243), + [anon_sym_BSLASHacsp] = ACTIONS(12243), + [anon_sym_BSLASHAcsp] = ACTIONS(12243), + [anon_sym_BSLASHacl] = ACTIONS(12243), + [anon_sym_BSLASHAcl] = ACTIONS(12243), + [anon_sym_BSLASHaclp] = ACTIONS(12243), + [anon_sym_BSLASHAclp] = ACTIONS(12243), + [anon_sym_BSLASHacf] = ACTIONS(12243), + [anon_sym_BSLASHAcf] = ACTIONS(12243), + [anon_sym_BSLASHacfp] = ACTIONS(12243), + [anon_sym_BSLASHAcfp] = ACTIONS(12243), + [anon_sym_BSLASHac] = ACTIONS(12243), + [anon_sym_BSLASHAc] = ACTIONS(12243), + [anon_sym_BSLASHacp] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12243), + [anon_sym_BSLASHcolor] = ACTIONS(12243), + [anon_sym_BSLASHcolorbox] = ACTIONS(12243), + [anon_sym_BSLASHtextcolor] = ACTIONS(12243), + [anon_sym_BSLASHpagecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12243), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12243), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12243), + }, + [1160] = { + [sym_generic_command_name] = ACTIONS(12247), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12247), + [aux_sym_subsection_token1] = ACTIONS(12247), + [aux_sym_subsubsection_token1] = ACTIONS(12247), + [aux_sym_paragraph_token1] = ACTIONS(12247), + [aux_sym_subparagraph_token1] = ACTIONS(12247), + [anon_sym_BSLASHitem] = ACTIONS(12247), + [anon_sym_LBRACK] = ACTIONS(12245), + [anon_sym_RBRACK] = ACTIONS(12245), + [anon_sym_LBRACE] = ACTIONS(12245), + [anon_sym_RBRACE] = ACTIONS(12245), + [anon_sym_LPAREN] = ACTIONS(12245), + [anon_sym_COMMA] = ACTIONS(12245), + [anon_sym_EQ] = ACTIONS(12245), + [sym_word] = ACTIONS(12245), + [sym_param] = ACTIONS(12245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12245), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12245), + [anon_sym_DOLLAR] = ACTIONS(12247), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12245), + [anon_sym_BSLASHbegin] = ACTIONS(12247), + [anon_sym_BSLASHcaption] = ACTIONS(12247), + [anon_sym_BSLASHcite] = ACTIONS(12247), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCite] = ACTIONS(12247), + [anon_sym_BSLASHnocite] = ACTIONS(12247), + [anon_sym_BSLASHcitet] = ACTIONS(12247), + [anon_sym_BSLASHcitep] = ACTIONS(12247), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteauthor] = ACTIONS(12247), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12247), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitetitle] = ACTIONS(12247), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteyear] = ACTIONS(12247), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitedate] = ACTIONS(12247), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteurl] = ACTIONS(12247), + [anon_sym_BSLASHfullcite] = ACTIONS(12247), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12247), + [anon_sym_BSLASHcitealt] = ACTIONS(12247), + [anon_sym_BSLASHcitealp] = ACTIONS(12247), + [anon_sym_BSLASHcitetext] = ACTIONS(12247), + [anon_sym_BSLASHparencite] = ACTIONS(12247), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHParencite] = ACTIONS(12247), + [anon_sym_BSLASHfootcite] = ACTIONS(12247), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12247), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12247), + [anon_sym_BSLASHtextcite] = ACTIONS(12247), + [anon_sym_BSLASHTextcite] = ACTIONS(12247), + [anon_sym_BSLASHsmartcite] = ACTIONS(12247), + [anon_sym_BSLASHSmartcite] = ACTIONS(12247), + [anon_sym_BSLASHsupercite] = ACTIONS(12247), + [anon_sym_BSLASHautocite] = ACTIONS(12247), + [anon_sym_BSLASHAutocite] = ACTIONS(12247), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHvolcite] = ACTIONS(12247), + [anon_sym_BSLASHVolcite] = ACTIONS(12247), + [anon_sym_BSLASHpvolcite] = ACTIONS(12247), + [anon_sym_BSLASHPvolcite] = ACTIONS(12247), + [anon_sym_BSLASHfvolcite] = ACTIONS(12247), + [anon_sym_BSLASHftvolcite] = ACTIONS(12247), + [anon_sym_BSLASHsvolcite] = ACTIONS(12247), + [anon_sym_BSLASHSvolcite] = ACTIONS(12247), + [anon_sym_BSLASHtvolcite] = ACTIONS(12247), + [anon_sym_BSLASHTvolcite] = ACTIONS(12247), + [anon_sym_BSLASHavolcite] = ACTIONS(12247), + [anon_sym_BSLASHAvolcite] = ACTIONS(12247), + [anon_sym_BSLASHnotecite] = ACTIONS(12247), + [anon_sym_BSLASHpnotecite] = ACTIONS(12247), + [anon_sym_BSLASHPnotecite] = ACTIONS(12247), + [anon_sym_BSLASHfnotecite] = ACTIONS(12247), + [anon_sym_BSLASHusepackage] = ACTIONS(12247), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12247), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12247), + [anon_sym_BSLASHinclude] = ACTIONS(12247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12247), + [anon_sym_BSLASHinput] = ACTIONS(12247), + [anon_sym_BSLASHsubfile] = ACTIONS(12247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12247), + [anon_sym_BSLASHbibliography] = ACTIONS(12247), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12247), + [anon_sym_BSLASHincludesvg] = ACTIONS(12247), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12247), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12247), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12247), + [anon_sym_BSLASHimport] = ACTIONS(12247), + [anon_sym_BSLASHsubimport] = ACTIONS(12247), + [anon_sym_BSLASHinputfrom] = ACTIONS(12247), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12247), + [anon_sym_BSLASHincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHlabel] = ACTIONS(12247), + [anon_sym_BSLASHref] = ACTIONS(12247), + [anon_sym_BSLASHvref] = ACTIONS(12247), + [anon_sym_BSLASHVref] = ACTIONS(12247), + [anon_sym_BSLASHautoref] = ACTIONS(12247), + [anon_sym_BSLASHpageref] = ACTIONS(12247), + [anon_sym_BSLASHcref] = ACTIONS(12247), + [anon_sym_BSLASHCref] = ACTIONS(12247), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnameCref] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHlabelcref] = ACTIONS(12247), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12247), + [anon_sym_BSLASHeqref] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange] = ACTIONS(12247), + [anon_sym_BSLASHCrefrange] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewlabel] = ACTIONS(12247), + [anon_sym_BSLASHnewcommand] = ACTIONS(12247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12247), + [anon_sym_BSLASHgls] = ACTIONS(12247), + [anon_sym_BSLASHGls] = ACTIONS(12247), + [anon_sym_BSLASHGLS] = ACTIONS(12247), + [anon_sym_BSLASHglspl] = ACTIONS(12247), + [anon_sym_BSLASHGlspl] = ACTIONS(12247), + [anon_sym_BSLASHGLSpl] = ACTIONS(12247), + [anon_sym_BSLASHglsdisp] = ACTIONS(12247), + [anon_sym_BSLASHglslink] = ACTIONS(12247), + [anon_sym_BSLASHglstext] = ACTIONS(12247), + [anon_sym_BSLASHGlstext] = ACTIONS(12247), + [anon_sym_BSLASHGLStext] = ACTIONS(12247), + [anon_sym_BSLASHglsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12247), + [anon_sym_BSLASHglsplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSplural] = ACTIONS(12247), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHglsname] = ACTIONS(12247), + [anon_sym_BSLASHGlsname] = ACTIONS(12247), + [anon_sym_BSLASHGLSname] = ACTIONS(12247), + [anon_sym_BSLASHglssymbol] = ACTIONS(12247), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12247), + [anon_sym_BSLASHglsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12247), + [anon_sym_BSLASHglsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12247), + [anon_sym_BSLASHglsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12247), + [anon_sym_BSLASHglsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12247), + [anon_sym_BSLASHglsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12247), + [anon_sym_BSLASHnewacronym] = ACTIONS(12247), + [anon_sym_BSLASHacrshort] = ACTIONS(12247), + [anon_sym_BSLASHAcrshort] = ACTIONS(12247), + [anon_sym_BSLASHACRshort] = ACTIONS(12247), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12247), + [anon_sym_BSLASHacrlong] = ACTIONS(12247), + [anon_sym_BSLASHAcrlong] = ACTIONS(12247), + [anon_sym_BSLASHACRlong] = ACTIONS(12247), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12247), + [anon_sym_BSLASHacrfull] = ACTIONS(12247), + [anon_sym_BSLASHAcrfull] = ACTIONS(12247), + [anon_sym_BSLASHACRfull] = ACTIONS(12247), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12247), + [anon_sym_BSLASHacs] = ACTIONS(12247), + [anon_sym_BSLASHAcs] = ACTIONS(12247), + [anon_sym_BSLASHacsp] = ACTIONS(12247), + [anon_sym_BSLASHAcsp] = ACTIONS(12247), + [anon_sym_BSLASHacl] = ACTIONS(12247), + [anon_sym_BSLASHAcl] = ACTIONS(12247), + [anon_sym_BSLASHaclp] = ACTIONS(12247), + [anon_sym_BSLASHAclp] = ACTIONS(12247), + [anon_sym_BSLASHacf] = ACTIONS(12247), + [anon_sym_BSLASHAcf] = ACTIONS(12247), + [anon_sym_BSLASHacfp] = ACTIONS(12247), + [anon_sym_BSLASHAcfp] = ACTIONS(12247), + [anon_sym_BSLASHac] = ACTIONS(12247), + [anon_sym_BSLASHAc] = ACTIONS(12247), + [anon_sym_BSLASHacp] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12247), + [anon_sym_BSLASHcolor] = ACTIONS(12247), + [anon_sym_BSLASHcolorbox] = ACTIONS(12247), + [anon_sym_BSLASHtextcolor] = ACTIONS(12247), + [anon_sym_BSLASHpagecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12247), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12247), + }, + [1161] = { + [sym_generic_command_name] = ACTIONS(12251), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12251), + [aux_sym_subsection_token1] = ACTIONS(12251), + [aux_sym_subsubsection_token1] = ACTIONS(12251), + [aux_sym_paragraph_token1] = ACTIONS(12251), + [aux_sym_subparagraph_token1] = ACTIONS(12251), + [anon_sym_BSLASHitem] = ACTIONS(12251), + [anon_sym_LBRACK] = ACTIONS(12249), + [anon_sym_RBRACK] = ACTIONS(12249), + [anon_sym_LBRACE] = ACTIONS(12249), + [anon_sym_RBRACE] = ACTIONS(12249), + [anon_sym_LPAREN] = ACTIONS(12249), + [anon_sym_COMMA] = ACTIONS(12249), + [anon_sym_EQ] = ACTIONS(12249), + [sym_word] = ACTIONS(12249), + [sym_param] = ACTIONS(12249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12249), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12249), + [anon_sym_DOLLAR] = ACTIONS(12251), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12249), + [anon_sym_BSLASHbegin] = ACTIONS(12251), + [anon_sym_BSLASHcaption] = ACTIONS(12251), + [anon_sym_BSLASHcite] = ACTIONS(12251), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCite] = ACTIONS(12251), + [anon_sym_BSLASHnocite] = ACTIONS(12251), + [anon_sym_BSLASHcitet] = ACTIONS(12251), + [anon_sym_BSLASHcitep] = ACTIONS(12251), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteauthor] = ACTIONS(12251), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12251), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitetitle] = ACTIONS(12251), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteyear] = ACTIONS(12251), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitedate] = ACTIONS(12251), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteurl] = ACTIONS(12251), + [anon_sym_BSLASHfullcite] = ACTIONS(12251), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12251), + [anon_sym_BSLASHcitealt] = ACTIONS(12251), + [anon_sym_BSLASHcitealp] = ACTIONS(12251), + [anon_sym_BSLASHcitetext] = ACTIONS(12251), + [anon_sym_BSLASHparencite] = ACTIONS(12251), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHParencite] = ACTIONS(12251), + [anon_sym_BSLASHfootcite] = ACTIONS(12251), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12251), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12251), + [anon_sym_BSLASHtextcite] = ACTIONS(12251), + [anon_sym_BSLASHTextcite] = ACTIONS(12251), + [anon_sym_BSLASHsmartcite] = ACTIONS(12251), + [anon_sym_BSLASHSmartcite] = ACTIONS(12251), + [anon_sym_BSLASHsupercite] = ACTIONS(12251), + [anon_sym_BSLASHautocite] = ACTIONS(12251), + [anon_sym_BSLASHAutocite] = ACTIONS(12251), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHvolcite] = ACTIONS(12251), + [anon_sym_BSLASHVolcite] = ACTIONS(12251), + [anon_sym_BSLASHpvolcite] = ACTIONS(12251), + [anon_sym_BSLASHPvolcite] = ACTIONS(12251), + [anon_sym_BSLASHfvolcite] = ACTIONS(12251), + [anon_sym_BSLASHftvolcite] = ACTIONS(12251), + [anon_sym_BSLASHsvolcite] = ACTIONS(12251), + [anon_sym_BSLASHSvolcite] = ACTIONS(12251), + [anon_sym_BSLASHtvolcite] = ACTIONS(12251), + [anon_sym_BSLASHTvolcite] = ACTIONS(12251), + [anon_sym_BSLASHavolcite] = ACTIONS(12251), + [anon_sym_BSLASHAvolcite] = ACTIONS(12251), + [anon_sym_BSLASHnotecite] = ACTIONS(12251), + [anon_sym_BSLASHpnotecite] = ACTIONS(12251), + [anon_sym_BSLASHPnotecite] = ACTIONS(12251), + [anon_sym_BSLASHfnotecite] = ACTIONS(12251), + [anon_sym_BSLASHusepackage] = ACTIONS(12251), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12251), + [anon_sym_BSLASHinclude] = ACTIONS(12251), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12251), + [anon_sym_BSLASHinput] = ACTIONS(12251), + [anon_sym_BSLASHsubfile] = ACTIONS(12251), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12251), + [anon_sym_BSLASHbibliography] = ACTIONS(12251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12251), + [anon_sym_BSLASHincludesvg] = ACTIONS(12251), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12251), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12251), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12251), + [anon_sym_BSLASHimport] = ACTIONS(12251), + [anon_sym_BSLASHsubimport] = ACTIONS(12251), + [anon_sym_BSLASHinputfrom] = ACTIONS(12251), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12251), + [anon_sym_BSLASHincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHlabel] = ACTIONS(12251), + [anon_sym_BSLASHref] = ACTIONS(12251), + [anon_sym_BSLASHvref] = ACTIONS(12251), + [anon_sym_BSLASHVref] = ACTIONS(12251), + [anon_sym_BSLASHautoref] = ACTIONS(12251), + [anon_sym_BSLASHpageref] = ACTIONS(12251), + [anon_sym_BSLASHcref] = ACTIONS(12251), + [anon_sym_BSLASHCref] = ACTIONS(12251), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnameCref] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHlabelcref] = ACTIONS(12251), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12251), + [anon_sym_BSLASHeqref] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange] = ACTIONS(12251), + [anon_sym_BSLASHCrefrange] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewlabel] = ACTIONS(12251), + [anon_sym_BSLASHnewcommand] = ACTIONS(12251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12251), + [anon_sym_BSLASHgls] = ACTIONS(12251), + [anon_sym_BSLASHGls] = ACTIONS(12251), + [anon_sym_BSLASHGLS] = ACTIONS(12251), + [anon_sym_BSLASHglspl] = ACTIONS(12251), + [anon_sym_BSLASHGlspl] = ACTIONS(12251), + [anon_sym_BSLASHGLSpl] = ACTIONS(12251), + [anon_sym_BSLASHglsdisp] = ACTIONS(12251), + [anon_sym_BSLASHglslink] = ACTIONS(12251), + [anon_sym_BSLASHglstext] = ACTIONS(12251), + [anon_sym_BSLASHGlstext] = ACTIONS(12251), + [anon_sym_BSLASHGLStext] = ACTIONS(12251), + [anon_sym_BSLASHglsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12251), + [anon_sym_BSLASHglsplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSplural] = ACTIONS(12251), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHglsname] = ACTIONS(12251), + [anon_sym_BSLASHGlsname] = ACTIONS(12251), + [anon_sym_BSLASHGLSname] = ACTIONS(12251), + [anon_sym_BSLASHglssymbol] = ACTIONS(12251), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12251), + [anon_sym_BSLASHglsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12251), + [anon_sym_BSLASHglsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12251), + [anon_sym_BSLASHglsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12251), + [anon_sym_BSLASHglsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12251), + [anon_sym_BSLASHglsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12251), + [anon_sym_BSLASHnewacronym] = ACTIONS(12251), + [anon_sym_BSLASHacrshort] = ACTIONS(12251), + [anon_sym_BSLASHAcrshort] = ACTIONS(12251), + [anon_sym_BSLASHACRshort] = ACTIONS(12251), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12251), + [anon_sym_BSLASHacrlong] = ACTIONS(12251), + [anon_sym_BSLASHAcrlong] = ACTIONS(12251), + [anon_sym_BSLASHACRlong] = ACTIONS(12251), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12251), + [anon_sym_BSLASHacrfull] = ACTIONS(12251), + [anon_sym_BSLASHAcrfull] = ACTIONS(12251), + [anon_sym_BSLASHACRfull] = ACTIONS(12251), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12251), + [anon_sym_BSLASHacs] = ACTIONS(12251), + [anon_sym_BSLASHAcs] = ACTIONS(12251), + [anon_sym_BSLASHacsp] = ACTIONS(12251), + [anon_sym_BSLASHAcsp] = ACTIONS(12251), + [anon_sym_BSLASHacl] = ACTIONS(12251), + [anon_sym_BSLASHAcl] = ACTIONS(12251), + [anon_sym_BSLASHaclp] = ACTIONS(12251), + [anon_sym_BSLASHAclp] = ACTIONS(12251), + [anon_sym_BSLASHacf] = ACTIONS(12251), + [anon_sym_BSLASHAcf] = ACTIONS(12251), + [anon_sym_BSLASHacfp] = ACTIONS(12251), + [anon_sym_BSLASHAcfp] = ACTIONS(12251), + [anon_sym_BSLASHac] = ACTIONS(12251), + [anon_sym_BSLASHAc] = ACTIONS(12251), + [anon_sym_BSLASHacp] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12251), + [anon_sym_BSLASHcolor] = ACTIONS(12251), + [anon_sym_BSLASHcolorbox] = ACTIONS(12251), + [anon_sym_BSLASHtextcolor] = ACTIONS(12251), + [anon_sym_BSLASHpagecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12251), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12251), + }, + [1162] = { + [sym_generic_command_name] = ACTIONS(12259), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12259), + [aux_sym_subsection_token1] = ACTIONS(12259), + [aux_sym_subsubsection_token1] = ACTIONS(12259), + [aux_sym_paragraph_token1] = ACTIONS(12259), + [aux_sym_subparagraph_token1] = ACTIONS(12259), + [anon_sym_BSLASHitem] = ACTIONS(12259), + [anon_sym_LBRACK] = ACTIONS(12257), + [anon_sym_RBRACK] = ACTIONS(12257), + [anon_sym_LBRACE] = ACTIONS(12257), + [anon_sym_RBRACE] = ACTIONS(12257), + [anon_sym_LPAREN] = ACTIONS(12257), + [anon_sym_COMMA] = ACTIONS(12257), + [anon_sym_EQ] = ACTIONS(12257), + [sym_word] = ACTIONS(12257), + [sym_param] = ACTIONS(12257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12257), + [anon_sym_DOLLAR] = ACTIONS(12259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12257), + [anon_sym_BSLASHbegin] = ACTIONS(12259), + [anon_sym_BSLASHcaption] = ACTIONS(12259), + [anon_sym_BSLASHcite] = ACTIONS(12259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCite] = ACTIONS(12259), + [anon_sym_BSLASHnocite] = ACTIONS(12259), + [anon_sym_BSLASHcitet] = ACTIONS(12259), + [anon_sym_BSLASHcitep] = ACTIONS(12259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteauthor] = ACTIONS(12259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitetitle] = ACTIONS(12259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteyear] = ACTIONS(12259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitedate] = ACTIONS(12259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteurl] = ACTIONS(12259), + [anon_sym_BSLASHfullcite] = ACTIONS(12259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12259), + [anon_sym_BSLASHcitealt] = ACTIONS(12259), + [anon_sym_BSLASHcitealp] = ACTIONS(12259), + [anon_sym_BSLASHcitetext] = ACTIONS(12259), + [anon_sym_BSLASHparencite] = ACTIONS(12259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHParencite] = ACTIONS(12259), + [anon_sym_BSLASHfootcite] = ACTIONS(12259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12259), + [anon_sym_BSLASHtextcite] = ACTIONS(12259), + [anon_sym_BSLASHTextcite] = ACTIONS(12259), + [anon_sym_BSLASHsmartcite] = ACTIONS(12259), + [anon_sym_BSLASHSmartcite] = ACTIONS(12259), + [anon_sym_BSLASHsupercite] = ACTIONS(12259), + [anon_sym_BSLASHautocite] = ACTIONS(12259), + [anon_sym_BSLASHAutocite] = ACTIONS(12259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHvolcite] = ACTIONS(12259), + [anon_sym_BSLASHVolcite] = ACTIONS(12259), + [anon_sym_BSLASHpvolcite] = ACTIONS(12259), + [anon_sym_BSLASHPvolcite] = ACTIONS(12259), + [anon_sym_BSLASHfvolcite] = ACTIONS(12259), + [anon_sym_BSLASHftvolcite] = ACTIONS(12259), + [anon_sym_BSLASHsvolcite] = ACTIONS(12259), + [anon_sym_BSLASHSvolcite] = ACTIONS(12259), + [anon_sym_BSLASHtvolcite] = ACTIONS(12259), + [anon_sym_BSLASHTvolcite] = ACTIONS(12259), + [anon_sym_BSLASHavolcite] = ACTIONS(12259), + [anon_sym_BSLASHAvolcite] = ACTIONS(12259), + [anon_sym_BSLASHnotecite] = ACTIONS(12259), + [anon_sym_BSLASHpnotecite] = ACTIONS(12259), + [anon_sym_BSLASHPnotecite] = ACTIONS(12259), + [anon_sym_BSLASHfnotecite] = ACTIONS(12259), + [anon_sym_BSLASHusepackage] = ACTIONS(12259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12259), + [anon_sym_BSLASHinclude] = ACTIONS(12259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12259), + [anon_sym_BSLASHinput] = ACTIONS(12259), + [anon_sym_BSLASHsubfile] = ACTIONS(12259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12259), + [anon_sym_BSLASHbibliography] = ACTIONS(12259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12259), + [anon_sym_BSLASHincludesvg] = ACTIONS(12259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12259), + [anon_sym_BSLASHimport] = ACTIONS(12259), + [anon_sym_BSLASHsubimport] = ACTIONS(12259), + [anon_sym_BSLASHinputfrom] = ACTIONS(12259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12259), + [anon_sym_BSLASHincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHlabel] = ACTIONS(12259), + [anon_sym_BSLASHref] = ACTIONS(12259), + [anon_sym_BSLASHvref] = ACTIONS(12259), + [anon_sym_BSLASHVref] = ACTIONS(12259), + [anon_sym_BSLASHautoref] = ACTIONS(12259), + [anon_sym_BSLASHpageref] = ACTIONS(12259), + [anon_sym_BSLASHcref] = ACTIONS(12259), + [anon_sym_BSLASHCref] = ACTIONS(12259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnameCref] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHlabelcref] = ACTIONS(12259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12259), + [anon_sym_BSLASHeqref] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange] = ACTIONS(12259), + [anon_sym_BSLASHCrefrange] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewlabel] = ACTIONS(12259), + [anon_sym_BSLASHnewcommand] = ACTIONS(12259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12259), + [anon_sym_BSLASHgls] = ACTIONS(12259), + [anon_sym_BSLASHGls] = ACTIONS(12259), + [anon_sym_BSLASHGLS] = ACTIONS(12259), + [anon_sym_BSLASHglspl] = ACTIONS(12259), + [anon_sym_BSLASHGlspl] = ACTIONS(12259), + [anon_sym_BSLASHGLSpl] = ACTIONS(12259), + [anon_sym_BSLASHglsdisp] = ACTIONS(12259), + [anon_sym_BSLASHglslink] = ACTIONS(12259), + [anon_sym_BSLASHglstext] = ACTIONS(12259), + [anon_sym_BSLASHGlstext] = ACTIONS(12259), + [anon_sym_BSLASHGLStext] = ACTIONS(12259), + [anon_sym_BSLASHglsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12259), + [anon_sym_BSLASHglsplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSplural] = ACTIONS(12259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHglsname] = ACTIONS(12259), + [anon_sym_BSLASHGlsname] = ACTIONS(12259), + [anon_sym_BSLASHGLSname] = ACTIONS(12259), + [anon_sym_BSLASHglssymbol] = ACTIONS(12259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12259), + [anon_sym_BSLASHglsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12259), + [anon_sym_BSLASHglsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12259), + [anon_sym_BSLASHglsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12259), + [anon_sym_BSLASHglsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12259), + [anon_sym_BSLASHglsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12259), + [anon_sym_BSLASHnewacronym] = ACTIONS(12259), + [anon_sym_BSLASHacrshort] = ACTIONS(12259), + [anon_sym_BSLASHAcrshort] = ACTIONS(12259), + [anon_sym_BSLASHACRshort] = ACTIONS(12259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12259), + [anon_sym_BSLASHacrlong] = ACTIONS(12259), + [anon_sym_BSLASHAcrlong] = ACTIONS(12259), + [anon_sym_BSLASHACRlong] = ACTIONS(12259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12259), + [anon_sym_BSLASHacrfull] = ACTIONS(12259), + [anon_sym_BSLASHAcrfull] = ACTIONS(12259), + [anon_sym_BSLASHACRfull] = ACTIONS(12259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12259), + [anon_sym_BSLASHacs] = ACTIONS(12259), + [anon_sym_BSLASHAcs] = ACTIONS(12259), + [anon_sym_BSLASHacsp] = ACTIONS(12259), + [anon_sym_BSLASHAcsp] = ACTIONS(12259), + [anon_sym_BSLASHacl] = ACTIONS(12259), + [anon_sym_BSLASHAcl] = ACTIONS(12259), + [anon_sym_BSLASHaclp] = ACTIONS(12259), + [anon_sym_BSLASHAclp] = ACTIONS(12259), + [anon_sym_BSLASHacf] = ACTIONS(12259), + [anon_sym_BSLASHAcf] = ACTIONS(12259), + [anon_sym_BSLASHacfp] = ACTIONS(12259), + [anon_sym_BSLASHAcfp] = ACTIONS(12259), + [anon_sym_BSLASHac] = ACTIONS(12259), + [anon_sym_BSLASHAc] = ACTIONS(12259), + [anon_sym_BSLASHacp] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12259), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12259), + [anon_sym_BSLASHcolor] = ACTIONS(12259), + [anon_sym_BSLASHcolorbox] = ACTIONS(12259), + [anon_sym_BSLASHtextcolor] = ACTIONS(12259), + [anon_sym_BSLASHpagecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12259), + }, + [1163] = { + [sym_generic_command_name] = ACTIONS(12263), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12263), + [aux_sym_subsection_token1] = ACTIONS(12263), + [aux_sym_subsubsection_token1] = ACTIONS(12263), + [aux_sym_paragraph_token1] = ACTIONS(12263), + [aux_sym_subparagraph_token1] = ACTIONS(12263), + [anon_sym_BSLASHitem] = ACTIONS(12263), + [anon_sym_LBRACK] = ACTIONS(12261), + [anon_sym_RBRACK] = ACTIONS(12261), + [anon_sym_LBRACE] = ACTIONS(12261), + [anon_sym_RBRACE] = ACTIONS(12261), + [anon_sym_LPAREN] = ACTIONS(12261), + [anon_sym_COMMA] = ACTIONS(12261), + [anon_sym_EQ] = ACTIONS(12261), + [sym_word] = ACTIONS(12261), + [sym_param] = ACTIONS(12261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12261), + [anon_sym_DOLLAR] = ACTIONS(12263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12261), + [anon_sym_BSLASHbegin] = ACTIONS(12263), + [anon_sym_BSLASHcaption] = ACTIONS(12263), + [anon_sym_BSLASHcite] = ACTIONS(12263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCite] = ACTIONS(12263), + [anon_sym_BSLASHnocite] = ACTIONS(12263), + [anon_sym_BSLASHcitet] = ACTIONS(12263), + [anon_sym_BSLASHcitep] = ACTIONS(12263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteauthor] = ACTIONS(12263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitetitle] = ACTIONS(12263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteyear] = ACTIONS(12263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitedate] = ACTIONS(12263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteurl] = ACTIONS(12263), + [anon_sym_BSLASHfullcite] = ACTIONS(12263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12263), + [anon_sym_BSLASHcitealt] = ACTIONS(12263), + [anon_sym_BSLASHcitealp] = ACTIONS(12263), + [anon_sym_BSLASHcitetext] = ACTIONS(12263), + [anon_sym_BSLASHparencite] = ACTIONS(12263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHParencite] = ACTIONS(12263), + [anon_sym_BSLASHfootcite] = ACTIONS(12263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12263), + [anon_sym_BSLASHtextcite] = ACTIONS(12263), + [anon_sym_BSLASHTextcite] = ACTIONS(12263), + [anon_sym_BSLASHsmartcite] = ACTIONS(12263), + [anon_sym_BSLASHSmartcite] = ACTIONS(12263), + [anon_sym_BSLASHsupercite] = ACTIONS(12263), + [anon_sym_BSLASHautocite] = ACTIONS(12263), + [anon_sym_BSLASHAutocite] = ACTIONS(12263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHvolcite] = ACTIONS(12263), + [anon_sym_BSLASHVolcite] = ACTIONS(12263), + [anon_sym_BSLASHpvolcite] = ACTIONS(12263), + [anon_sym_BSLASHPvolcite] = ACTIONS(12263), + [anon_sym_BSLASHfvolcite] = ACTIONS(12263), + [anon_sym_BSLASHftvolcite] = ACTIONS(12263), + [anon_sym_BSLASHsvolcite] = ACTIONS(12263), + [anon_sym_BSLASHSvolcite] = ACTIONS(12263), + [anon_sym_BSLASHtvolcite] = ACTIONS(12263), + [anon_sym_BSLASHTvolcite] = ACTIONS(12263), + [anon_sym_BSLASHavolcite] = ACTIONS(12263), + [anon_sym_BSLASHAvolcite] = ACTIONS(12263), + [anon_sym_BSLASHnotecite] = ACTIONS(12263), + [anon_sym_BSLASHpnotecite] = ACTIONS(12263), + [anon_sym_BSLASHPnotecite] = ACTIONS(12263), + [anon_sym_BSLASHfnotecite] = ACTIONS(12263), + [anon_sym_BSLASHusepackage] = ACTIONS(12263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12263), + [anon_sym_BSLASHinclude] = ACTIONS(12263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12263), + [anon_sym_BSLASHinput] = ACTIONS(12263), + [anon_sym_BSLASHsubfile] = ACTIONS(12263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12263), + [anon_sym_BSLASHbibliography] = ACTIONS(12263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12263), + [anon_sym_BSLASHincludesvg] = ACTIONS(12263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12263), + [anon_sym_BSLASHimport] = ACTIONS(12263), + [anon_sym_BSLASHsubimport] = ACTIONS(12263), + [anon_sym_BSLASHinputfrom] = ACTIONS(12263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12263), + [anon_sym_BSLASHincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHlabel] = ACTIONS(12263), + [anon_sym_BSLASHref] = ACTIONS(12263), + [anon_sym_BSLASHvref] = ACTIONS(12263), + [anon_sym_BSLASHVref] = ACTIONS(12263), + [anon_sym_BSLASHautoref] = ACTIONS(12263), + [anon_sym_BSLASHpageref] = ACTIONS(12263), + [anon_sym_BSLASHcref] = ACTIONS(12263), + [anon_sym_BSLASHCref] = ACTIONS(12263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnameCref] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHlabelcref] = ACTIONS(12263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12263), + [anon_sym_BSLASHeqref] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange] = ACTIONS(12263), + [anon_sym_BSLASHCrefrange] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewlabel] = ACTIONS(12263), + [anon_sym_BSLASHnewcommand] = ACTIONS(12263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12263), + [anon_sym_BSLASHgls] = ACTIONS(12263), + [anon_sym_BSLASHGls] = ACTIONS(12263), + [anon_sym_BSLASHGLS] = ACTIONS(12263), + [anon_sym_BSLASHglspl] = ACTIONS(12263), + [anon_sym_BSLASHGlspl] = ACTIONS(12263), + [anon_sym_BSLASHGLSpl] = ACTIONS(12263), + [anon_sym_BSLASHglsdisp] = ACTIONS(12263), + [anon_sym_BSLASHglslink] = ACTIONS(12263), + [anon_sym_BSLASHglstext] = ACTIONS(12263), + [anon_sym_BSLASHGlstext] = ACTIONS(12263), + [anon_sym_BSLASHGLStext] = ACTIONS(12263), + [anon_sym_BSLASHglsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12263), + [anon_sym_BSLASHglsplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSplural] = ACTIONS(12263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHglsname] = ACTIONS(12263), + [anon_sym_BSLASHGlsname] = ACTIONS(12263), + [anon_sym_BSLASHGLSname] = ACTIONS(12263), + [anon_sym_BSLASHglssymbol] = ACTIONS(12263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12263), + [anon_sym_BSLASHglsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12263), + [anon_sym_BSLASHglsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12263), + [anon_sym_BSLASHglsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12263), + [anon_sym_BSLASHglsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12263), + [anon_sym_BSLASHglsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12263), + [anon_sym_BSLASHnewacronym] = ACTIONS(12263), + [anon_sym_BSLASHacrshort] = ACTIONS(12263), + [anon_sym_BSLASHAcrshort] = ACTIONS(12263), + [anon_sym_BSLASHACRshort] = ACTIONS(12263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12263), + [anon_sym_BSLASHacrlong] = ACTIONS(12263), + [anon_sym_BSLASHAcrlong] = ACTIONS(12263), + [anon_sym_BSLASHACRlong] = ACTIONS(12263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12263), + [anon_sym_BSLASHacrfull] = ACTIONS(12263), + [anon_sym_BSLASHAcrfull] = ACTIONS(12263), + [anon_sym_BSLASHACRfull] = ACTIONS(12263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12263), + [anon_sym_BSLASHacs] = ACTIONS(12263), + [anon_sym_BSLASHAcs] = ACTIONS(12263), + [anon_sym_BSLASHacsp] = ACTIONS(12263), + [anon_sym_BSLASHAcsp] = ACTIONS(12263), + [anon_sym_BSLASHacl] = ACTIONS(12263), + [anon_sym_BSLASHAcl] = ACTIONS(12263), + [anon_sym_BSLASHaclp] = ACTIONS(12263), + [anon_sym_BSLASHAclp] = ACTIONS(12263), + [anon_sym_BSLASHacf] = ACTIONS(12263), + [anon_sym_BSLASHAcf] = ACTIONS(12263), + [anon_sym_BSLASHacfp] = ACTIONS(12263), + [anon_sym_BSLASHAcfp] = ACTIONS(12263), + [anon_sym_BSLASHac] = ACTIONS(12263), + [anon_sym_BSLASHAc] = ACTIONS(12263), + [anon_sym_BSLASHacp] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12263), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12263), + [anon_sym_BSLASHcolor] = ACTIONS(12263), + [anon_sym_BSLASHcolorbox] = ACTIONS(12263), + [anon_sym_BSLASHtextcolor] = ACTIONS(12263), + [anon_sym_BSLASHpagecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12263), + }, + [1164] = { + [sym_generic_command_name] = ACTIONS(12319), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12319), + [aux_sym_subsection_token1] = ACTIONS(12319), + [aux_sym_subsubsection_token1] = ACTIONS(12319), + [aux_sym_paragraph_token1] = ACTIONS(12319), + [aux_sym_subparagraph_token1] = ACTIONS(12319), + [anon_sym_BSLASHitem] = ACTIONS(12319), + [anon_sym_LBRACK] = ACTIONS(12317), + [anon_sym_RBRACK] = ACTIONS(12317), + [anon_sym_LBRACE] = ACTIONS(12317), + [anon_sym_RBRACE] = ACTIONS(12317), + [anon_sym_LPAREN] = ACTIONS(12317), + [anon_sym_COMMA] = ACTIONS(12317), + [anon_sym_EQ] = ACTIONS(12317), + [sym_word] = ACTIONS(12317), + [sym_param] = ACTIONS(12317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12317), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12317), + [anon_sym_DOLLAR] = ACTIONS(12319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12317), + [anon_sym_BSLASHbegin] = ACTIONS(12319), + [anon_sym_BSLASHcaption] = ACTIONS(12319), + [anon_sym_BSLASHcite] = ACTIONS(12319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCite] = ACTIONS(12319), + [anon_sym_BSLASHnocite] = ACTIONS(12319), + [anon_sym_BSLASHcitet] = ACTIONS(12319), + [anon_sym_BSLASHcitep] = ACTIONS(12319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteauthor] = ACTIONS(12319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitetitle] = ACTIONS(12319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteyear] = ACTIONS(12319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitedate] = ACTIONS(12319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteurl] = ACTIONS(12319), + [anon_sym_BSLASHfullcite] = ACTIONS(12319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12319), + [anon_sym_BSLASHcitealt] = ACTIONS(12319), + [anon_sym_BSLASHcitealp] = ACTIONS(12319), + [anon_sym_BSLASHcitetext] = ACTIONS(12319), + [anon_sym_BSLASHparencite] = ACTIONS(12319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHParencite] = ACTIONS(12319), + [anon_sym_BSLASHfootcite] = ACTIONS(12319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12319), + [anon_sym_BSLASHtextcite] = ACTIONS(12319), + [anon_sym_BSLASHTextcite] = ACTIONS(12319), + [anon_sym_BSLASHsmartcite] = ACTIONS(12319), + [anon_sym_BSLASHSmartcite] = ACTIONS(12319), + [anon_sym_BSLASHsupercite] = ACTIONS(12319), + [anon_sym_BSLASHautocite] = ACTIONS(12319), + [anon_sym_BSLASHAutocite] = ACTIONS(12319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHvolcite] = ACTIONS(12319), + [anon_sym_BSLASHVolcite] = ACTIONS(12319), + [anon_sym_BSLASHpvolcite] = ACTIONS(12319), + [anon_sym_BSLASHPvolcite] = ACTIONS(12319), + [anon_sym_BSLASHfvolcite] = ACTIONS(12319), + [anon_sym_BSLASHftvolcite] = ACTIONS(12319), + [anon_sym_BSLASHsvolcite] = ACTIONS(12319), + [anon_sym_BSLASHSvolcite] = ACTIONS(12319), + [anon_sym_BSLASHtvolcite] = ACTIONS(12319), + [anon_sym_BSLASHTvolcite] = ACTIONS(12319), + [anon_sym_BSLASHavolcite] = ACTIONS(12319), + [anon_sym_BSLASHAvolcite] = ACTIONS(12319), + [anon_sym_BSLASHnotecite] = ACTIONS(12319), + [anon_sym_BSLASHpnotecite] = ACTIONS(12319), + [anon_sym_BSLASHPnotecite] = ACTIONS(12319), + [anon_sym_BSLASHfnotecite] = ACTIONS(12319), + [anon_sym_BSLASHusepackage] = ACTIONS(12319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12319), + [anon_sym_BSLASHinclude] = ACTIONS(12319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12319), + [anon_sym_BSLASHinput] = ACTIONS(12319), + [anon_sym_BSLASHsubfile] = ACTIONS(12319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12319), + [anon_sym_BSLASHbibliography] = ACTIONS(12319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12319), + [anon_sym_BSLASHincludesvg] = ACTIONS(12319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12319), + [anon_sym_BSLASHimport] = ACTIONS(12319), + [anon_sym_BSLASHsubimport] = ACTIONS(12319), + [anon_sym_BSLASHinputfrom] = ACTIONS(12319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12319), + [anon_sym_BSLASHincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHlabel] = ACTIONS(12319), + [anon_sym_BSLASHref] = ACTIONS(12319), + [anon_sym_BSLASHvref] = ACTIONS(12319), + [anon_sym_BSLASHVref] = ACTIONS(12319), + [anon_sym_BSLASHautoref] = ACTIONS(12319), + [anon_sym_BSLASHpageref] = ACTIONS(12319), + [anon_sym_BSLASHcref] = ACTIONS(12319), + [anon_sym_BSLASHCref] = ACTIONS(12319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnameCref] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHlabelcref] = ACTIONS(12319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12319), + [anon_sym_BSLASHeqref] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange] = ACTIONS(12319), + [anon_sym_BSLASHCrefrange] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewlabel] = ACTIONS(12319), + [anon_sym_BSLASHnewcommand] = ACTIONS(12319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12319), + [anon_sym_BSLASHgls] = ACTIONS(12319), + [anon_sym_BSLASHGls] = ACTIONS(12319), + [anon_sym_BSLASHGLS] = ACTIONS(12319), + [anon_sym_BSLASHglspl] = ACTIONS(12319), + [anon_sym_BSLASHGlspl] = ACTIONS(12319), + [anon_sym_BSLASHGLSpl] = ACTIONS(12319), + [anon_sym_BSLASHglsdisp] = ACTIONS(12319), + [anon_sym_BSLASHglslink] = ACTIONS(12319), + [anon_sym_BSLASHglstext] = ACTIONS(12319), + [anon_sym_BSLASHGlstext] = ACTIONS(12319), + [anon_sym_BSLASHGLStext] = ACTIONS(12319), + [anon_sym_BSLASHglsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12319), + [anon_sym_BSLASHglsplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSplural] = ACTIONS(12319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHglsname] = ACTIONS(12319), + [anon_sym_BSLASHGlsname] = ACTIONS(12319), + [anon_sym_BSLASHGLSname] = ACTIONS(12319), + [anon_sym_BSLASHglssymbol] = ACTIONS(12319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12319), + [anon_sym_BSLASHglsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12319), + [anon_sym_BSLASHglsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12319), + [anon_sym_BSLASHglsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12319), + [anon_sym_BSLASHglsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12319), + [anon_sym_BSLASHglsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12319), + [anon_sym_BSLASHnewacronym] = ACTIONS(12319), + [anon_sym_BSLASHacrshort] = ACTIONS(12319), + [anon_sym_BSLASHAcrshort] = ACTIONS(12319), + [anon_sym_BSLASHACRshort] = ACTIONS(12319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12319), + [anon_sym_BSLASHacrlong] = ACTIONS(12319), + [anon_sym_BSLASHAcrlong] = ACTIONS(12319), + [anon_sym_BSLASHACRlong] = ACTIONS(12319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12319), + [anon_sym_BSLASHacrfull] = ACTIONS(12319), + [anon_sym_BSLASHAcrfull] = ACTIONS(12319), + [anon_sym_BSLASHACRfull] = ACTIONS(12319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12319), + [anon_sym_BSLASHacs] = ACTIONS(12319), + [anon_sym_BSLASHAcs] = ACTIONS(12319), + [anon_sym_BSLASHacsp] = ACTIONS(12319), + [anon_sym_BSLASHAcsp] = ACTIONS(12319), + [anon_sym_BSLASHacl] = ACTIONS(12319), + [anon_sym_BSLASHAcl] = ACTIONS(12319), + [anon_sym_BSLASHaclp] = ACTIONS(12319), + [anon_sym_BSLASHAclp] = ACTIONS(12319), + [anon_sym_BSLASHacf] = ACTIONS(12319), + [anon_sym_BSLASHAcf] = ACTIONS(12319), + [anon_sym_BSLASHacfp] = ACTIONS(12319), + [anon_sym_BSLASHAcfp] = ACTIONS(12319), + [anon_sym_BSLASHac] = ACTIONS(12319), + [anon_sym_BSLASHAc] = ACTIONS(12319), + [anon_sym_BSLASHacp] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12319), + [anon_sym_BSLASHcolor] = ACTIONS(12319), + [anon_sym_BSLASHcolorbox] = ACTIONS(12319), + [anon_sym_BSLASHtextcolor] = ACTIONS(12319), + [anon_sym_BSLASHpagecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12319), + }, + [1165] = { + [sym_generic_command_name] = ACTIONS(12267), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12267), + [aux_sym_subsection_token1] = ACTIONS(12267), + [aux_sym_subsubsection_token1] = ACTIONS(12267), + [aux_sym_paragraph_token1] = ACTIONS(12267), + [aux_sym_subparagraph_token1] = ACTIONS(12267), + [anon_sym_BSLASHitem] = ACTIONS(12267), + [anon_sym_LBRACK] = ACTIONS(12265), + [anon_sym_RBRACK] = ACTIONS(12265), + [anon_sym_LBRACE] = ACTIONS(12265), + [anon_sym_RBRACE] = ACTIONS(12265), + [anon_sym_LPAREN] = ACTIONS(12265), + [anon_sym_COMMA] = ACTIONS(12265), + [anon_sym_EQ] = ACTIONS(12265), + [sym_word] = ACTIONS(12265), + [sym_param] = ACTIONS(12265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12265), + [anon_sym_DOLLAR] = ACTIONS(12267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12265), + [anon_sym_BSLASHbegin] = ACTIONS(12267), + [anon_sym_BSLASHcaption] = ACTIONS(12267), + [anon_sym_BSLASHcite] = ACTIONS(12267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCite] = ACTIONS(12267), + [anon_sym_BSLASHnocite] = ACTIONS(12267), + [anon_sym_BSLASHcitet] = ACTIONS(12267), + [anon_sym_BSLASHcitep] = ACTIONS(12267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteauthor] = ACTIONS(12267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitetitle] = ACTIONS(12267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteyear] = ACTIONS(12267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitedate] = ACTIONS(12267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteurl] = ACTIONS(12267), + [anon_sym_BSLASHfullcite] = ACTIONS(12267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12267), + [anon_sym_BSLASHcitealt] = ACTIONS(12267), + [anon_sym_BSLASHcitealp] = ACTIONS(12267), + [anon_sym_BSLASHcitetext] = ACTIONS(12267), + [anon_sym_BSLASHparencite] = ACTIONS(12267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHParencite] = ACTIONS(12267), + [anon_sym_BSLASHfootcite] = ACTIONS(12267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12267), + [anon_sym_BSLASHtextcite] = ACTIONS(12267), + [anon_sym_BSLASHTextcite] = ACTIONS(12267), + [anon_sym_BSLASHsmartcite] = ACTIONS(12267), + [anon_sym_BSLASHSmartcite] = ACTIONS(12267), + [anon_sym_BSLASHsupercite] = ACTIONS(12267), + [anon_sym_BSLASHautocite] = ACTIONS(12267), + [anon_sym_BSLASHAutocite] = ACTIONS(12267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHvolcite] = ACTIONS(12267), + [anon_sym_BSLASHVolcite] = ACTIONS(12267), + [anon_sym_BSLASHpvolcite] = ACTIONS(12267), + [anon_sym_BSLASHPvolcite] = ACTIONS(12267), + [anon_sym_BSLASHfvolcite] = ACTIONS(12267), + [anon_sym_BSLASHftvolcite] = ACTIONS(12267), + [anon_sym_BSLASHsvolcite] = ACTIONS(12267), + [anon_sym_BSLASHSvolcite] = ACTIONS(12267), + [anon_sym_BSLASHtvolcite] = ACTIONS(12267), + [anon_sym_BSLASHTvolcite] = ACTIONS(12267), + [anon_sym_BSLASHavolcite] = ACTIONS(12267), + [anon_sym_BSLASHAvolcite] = ACTIONS(12267), + [anon_sym_BSLASHnotecite] = ACTIONS(12267), + [anon_sym_BSLASHpnotecite] = ACTIONS(12267), + [anon_sym_BSLASHPnotecite] = ACTIONS(12267), + [anon_sym_BSLASHfnotecite] = ACTIONS(12267), + [anon_sym_BSLASHusepackage] = ACTIONS(12267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12267), + [anon_sym_BSLASHinclude] = ACTIONS(12267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12267), + [anon_sym_BSLASHinput] = ACTIONS(12267), + [anon_sym_BSLASHsubfile] = ACTIONS(12267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12267), + [anon_sym_BSLASHbibliography] = ACTIONS(12267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12267), + [anon_sym_BSLASHincludesvg] = ACTIONS(12267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12267), + [anon_sym_BSLASHimport] = ACTIONS(12267), + [anon_sym_BSLASHsubimport] = ACTIONS(12267), + [anon_sym_BSLASHinputfrom] = ACTIONS(12267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12267), + [anon_sym_BSLASHincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHlabel] = ACTIONS(12267), + [anon_sym_BSLASHref] = ACTIONS(12267), + [anon_sym_BSLASHvref] = ACTIONS(12267), + [anon_sym_BSLASHVref] = ACTIONS(12267), + [anon_sym_BSLASHautoref] = ACTIONS(12267), + [anon_sym_BSLASHpageref] = ACTIONS(12267), + [anon_sym_BSLASHcref] = ACTIONS(12267), + [anon_sym_BSLASHCref] = ACTIONS(12267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnameCref] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHlabelcref] = ACTIONS(12267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12267), + [anon_sym_BSLASHeqref] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange] = ACTIONS(12267), + [anon_sym_BSLASHCrefrange] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewlabel] = ACTIONS(12267), + [anon_sym_BSLASHnewcommand] = ACTIONS(12267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12267), + [anon_sym_BSLASHgls] = ACTIONS(12267), + [anon_sym_BSLASHGls] = ACTIONS(12267), + [anon_sym_BSLASHGLS] = ACTIONS(12267), + [anon_sym_BSLASHglspl] = ACTIONS(12267), + [anon_sym_BSLASHGlspl] = ACTIONS(12267), + [anon_sym_BSLASHGLSpl] = ACTIONS(12267), + [anon_sym_BSLASHglsdisp] = ACTIONS(12267), + [anon_sym_BSLASHglslink] = ACTIONS(12267), + [anon_sym_BSLASHglstext] = ACTIONS(12267), + [anon_sym_BSLASHGlstext] = ACTIONS(12267), + [anon_sym_BSLASHGLStext] = ACTIONS(12267), + [anon_sym_BSLASHglsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12267), + [anon_sym_BSLASHglsplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSplural] = ACTIONS(12267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHglsname] = ACTIONS(12267), + [anon_sym_BSLASHGlsname] = ACTIONS(12267), + [anon_sym_BSLASHGLSname] = ACTIONS(12267), + [anon_sym_BSLASHglssymbol] = ACTIONS(12267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12267), + [anon_sym_BSLASHglsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12267), + [anon_sym_BSLASHglsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12267), + [anon_sym_BSLASHglsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12267), + [anon_sym_BSLASHglsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12267), + [anon_sym_BSLASHglsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12267), + [anon_sym_BSLASHnewacronym] = ACTIONS(12267), + [anon_sym_BSLASHacrshort] = ACTIONS(12267), + [anon_sym_BSLASHAcrshort] = ACTIONS(12267), + [anon_sym_BSLASHACRshort] = ACTIONS(12267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12267), + [anon_sym_BSLASHacrlong] = ACTIONS(12267), + [anon_sym_BSLASHAcrlong] = ACTIONS(12267), + [anon_sym_BSLASHACRlong] = ACTIONS(12267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12267), + [anon_sym_BSLASHacrfull] = ACTIONS(12267), + [anon_sym_BSLASHAcrfull] = ACTIONS(12267), + [anon_sym_BSLASHACRfull] = ACTIONS(12267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12267), + [anon_sym_BSLASHacs] = ACTIONS(12267), + [anon_sym_BSLASHAcs] = ACTIONS(12267), + [anon_sym_BSLASHacsp] = ACTIONS(12267), + [anon_sym_BSLASHAcsp] = ACTIONS(12267), + [anon_sym_BSLASHacl] = ACTIONS(12267), + [anon_sym_BSLASHAcl] = ACTIONS(12267), + [anon_sym_BSLASHaclp] = ACTIONS(12267), + [anon_sym_BSLASHAclp] = ACTIONS(12267), + [anon_sym_BSLASHacf] = ACTIONS(12267), + [anon_sym_BSLASHAcf] = ACTIONS(12267), + [anon_sym_BSLASHacfp] = ACTIONS(12267), + [anon_sym_BSLASHAcfp] = ACTIONS(12267), + [anon_sym_BSLASHac] = ACTIONS(12267), + [anon_sym_BSLASHAc] = ACTIONS(12267), + [anon_sym_BSLASHacp] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12267), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12267), + [anon_sym_BSLASHcolor] = ACTIONS(12267), + [anon_sym_BSLASHcolorbox] = ACTIONS(12267), + [anon_sym_BSLASHtextcolor] = ACTIONS(12267), + [anon_sym_BSLASHpagecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12267), + }, + [1166] = { + [sym_brace_group] = STATE(3127), + [sym_generic_command_name] = ACTIONS(12100), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12100), + [aux_sym_subsubsection_token1] = ACTIONS(12100), + [aux_sym_paragraph_token1] = ACTIONS(12100), + [aux_sym_subparagraph_token1] = ACTIONS(12100), + [anon_sym_BSLASHitem] = ACTIONS(12100), + [anon_sym_LBRACK] = ACTIONS(12098), + [anon_sym_RBRACK] = ACTIONS(12098), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12098), + [anon_sym_LPAREN] = ACTIONS(12098), + [anon_sym_COMMA] = ACTIONS(12098), + [anon_sym_EQ] = ACTIONS(12098), + [sym_word] = ACTIONS(12098), + [sym_param] = ACTIONS(12098), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12098), + [anon_sym_DOLLAR] = ACTIONS(12100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12098), + [anon_sym_BSLASHbegin] = ACTIONS(12100), + [anon_sym_BSLASHcaption] = ACTIONS(12100), + [anon_sym_BSLASHcite] = ACTIONS(12100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCite] = ACTIONS(12100), + [anon_sym_BSLASHnocite] = ACTIONS(12100), + [anon_sym_BSLASHcitet] = ACTIONS(12100), + [anon_sym_BSLASHcitep] = ACTIONS(12100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteauthor] = ACTIONS(12100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitetitle] = ACTIONS(12100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteyear] = ACTIONS(12100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitedate] = ACTIONS(12100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteurl] = ACTIONS(12100), + [anon_sym_BSLASHfullcite] = ACTIONS(12100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12100), + [anon_sym_BSLASHcitealt] = ACTIONS(12100), + [anon_sym_BSLASHcitealp] = ACTIONS(12100), + [anon_sym_BSLASHcitetext] = ACTIONS(12100), + [anon_sym_BSLASHparencite] = ACTIONS(12100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHParencite] = ACTIONS(12100), + [anon_sym_BSLASHfootcite] = ACTIONS(12100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12100), + [anon_sym_BSLASHtextcite] = ACTIONS(12100), + [anon_sym_BSLASHTextcite] = ACTIONS(12100), + [anon_sym_BSLASHsmartcite] = ACTIONS(12100), + [anon_sym_BSLASHSmartcite] = ACTIONS(12100), + [anon_sym_BSLASHsupercite] = ACTIONS(12100), + [anon_sym_BSLASHautocite] = ACTIONS(12100), + [anon_sym_BSLASHAutocite] = ACTIONS(12100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHvolcite] = ACTIONS(12100), + [anon_sym_BSLASHVolcite] = ACTIONS(12100), + [anon_sym_BSLASHpvolcite] = ACTIONS(12100), + [anon_sym_BSLASHPvolcite] = ACTIONS(12100), + [anon_sym_BSLASHfvolcite] = ACTIONS(12100), + [anon_sym_BSLASHftvolcite] = ACTIONS(12100), + [anon_sym_BSLASHsvolcite] = ACTIONS(12100), + [anon_sym_BSLASHSvolcite] = ACTIONS(12100), + [anon_sym_BSLASHtvolcite] = ACTIONS(12100), + [anon_sym_BSLASHTvolcite] = ACTIONS(12100), + [anon_sym_BSLASHavolcite] = ACTIONS(12100), + [anon_sym_BSLASHAvolcite] = ACTIONS(12100), + [anon_sym_BSLASHnotecite] = ACTIONS(12100), + [anon_sym_BSLASHpnotecite] = ACTIONS(12100), + [anon_sym_BSLASHPnotecite] = ACTIONS(12100), + [anon_sym_BSLASHfnotecite] = ACTIONS(12100), + [anon_sym_BSLASHusepackage] = ACTIONS(12100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12100), + [anon_sym_BSLASHinclude] = ACTIONS(12100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12100), + [anon_sym_BSLASHinput] = ACTIONS(12100), + [anon_sym_BSLASHsubfile] = ACTIONS(12100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12100), + [anon_sym_BSLASHbibliography] = ACTIONS(12100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12100), + [anon_sym_BSLASHincludesvg] = ACTIONS(12100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12100), + [anon_sym_BSLASHimport] = ACTIONS(12100), + [anon_sym_BSLASHsubimport] = ACTIONS(12100), + [anon_sym_BSLASHinputfrom] = ACTIONS(12100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12100), + [anon_sym_BSLASHincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHlabel] = ACTIONS(12100), + [anon_sym_BSLASHref] = ACTIONS(12100), + [anon_sym_BSLASHvref] = ACTIONS(12100), + [anon_sym_BSLASHVref] = ACTIONS(12100), + [anon_sym_BSLASHautoref] = ACTIONS(12100), + [anon_sym_BSLASHpageref] = ACTIONS(12100), + [anon_sym_BSLASHcref] = ACTIONS(12100), + [anon_sym_BSLASHCref] = ACTIONS(12100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnameCref] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHlabelcref] = ACTIONS(12100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12100), + [anon_sym_BSLASHeqref] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange] = ACTIONS(12100), + [anon_sym_BSLASHCrefrange] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewlabel] = ACTIONS(12100), + [anon_sym_BSLASHnewcommand] = ACTIONS(12100), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12100), + [anon_sym_BSLASHgls] = ACTIONS(12100), + [anon_sym_BSLASHGls] = ACTIONS(12100), + [anon_sym_BSLASHGLS] = ACTIONS(12100), + [anon_sym_BSLASHglspl] = ACTIONS(12100), + [anon_sym_BSLASHGlspl] = ACTIONS(12100), + [anon_sym_BSLASHGLSpl] = ACTIONS(12100), + [anon_sym_BSLASHglsdisp] = ACTIONS(12100), + [anon_sym_BSLASHglslink] = ACTIONS(12100), + [anon_sym_BSLASHglstext] = ACTIONS(12100), + [anon_sym_BSLASHGlstext] = ACTIONS(12100), + [anon_sym_BSLASHGLStext] = ACTIONS(12100), + [anon_sym_BSLASHglsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12100), + [anon_sym_BSLASHglsplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSplural] = ACTIONS(12100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHglsname] = ACTIONS(12100), + [anon_sym_BSLASHGlsname] = ACTIONS(12100), + [anon_sym_BSLASHGLSname] = ACTIONS(12100), + [anon_sym_BSLASHglssymbol] = ACTIONS(12100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12100), + [anon_sym_BSLASHglsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12100), + [anon_sym_BSLASHglsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12100), + [anon_sym_BSLASHglsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12100), + [anon_sym_BSLASHglsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12100), + [anon_sym_BSLASHglsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12100), + [anon_sym_BSLASHnewacronym] = ACTIONS(12100), + [anon_sym_BSLASHacrshort] = ACTIONS(12100), + [anon_sym_BSLASHAcrshort] = ACTIONS(12100), + [anon_sym_BSLASHACRshort] = ACTIONS(12100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12100), + [anon_sym_BSLASHacrlong] = ACTIONS(12100), + [anon_sym_BSLASHAcrlong] = ACTIONS(12100), + [anon_sym_BSLASHACRlong] = ACTIONS(12100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12100), + [anon_sym_BSLASHacrfull] = ACTIONS(12100), + [anon_sym_BSLASHAcrfull] = ACTIONS(12100), + [anon_sym_BSLASHACRfull] = ACTIONS(12100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12100), + [anon_sym_BSLASHacs] = ACTIONS(12100), + [anon_sym_BSLASHAcs] = ACTIONS(12100), + [anon_sym_BSLASHacsp] = ACTIONS(12100), + [anon_sym_BSLASHAcsp] = ACTIONS(12100), + [anon_sym_BSLASHacl] = ACTIONS(12100), + [anon_sym_BSLASHAcl] = ACTIONS(12100), + [anon_sym_BSLASHaclp] = ACTIONS(12100), + [anon_sym_BSLASHAclp] = ACTIONS(12100), + [anon_sym_BSLASHacf] = ACTIONS(12100), + [anon_sym_BSLASHAcf] = ACTIONS(12100), + [anon_sym_BSLASHacfp] = ACTIONS(12100), + [anon_sym_BSLASHAcfp] = ACTIONS(12100), + [anon_sym_BSLASHac] = ACTIONS(12100), + [anon_sym_BSLASHAc] = ACTIONS(12100), + [anon_sym_BSLASHacp] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12100), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12100), + [anon_sym_BSLASHcolor] = ACTIONS(12100), + [anon_sym_BSLASHcolorbox] = ACTIONS(12100), + [anon_sym_BSLASHtextcolor] = ACTIONS(12100), + [anon_sym_BSLASHpagecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12100), + }, + [1167] = { + [sym_generic_command_name] = ACTIONS(12271), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12271), + [aux_sym_subsection_token1] = ACTIONS(12271), + [aux_sym_subsubsection_token1] = ACTIONS(12271), + [aux_sym_paragraph_token1] = ACTIONS(12271), + [aux_sym_subparagraph_token1] = ACTIONS(12271), + [anon_sym_BSLASHitem] = ACTIONS(12271), + [anon_sym_LBRACK] = ACTIONS(12269), + [anon_sym_RBRACK] = ACTIONS(12269), + [anon_sym_LBRACE] = ACTIONS(12269), + [anon_sym_RBRACE] = ACTIONS(12269), + [anon_sym_LPAREN] = ACTIONS(12269), + [anon_sym_COMMA] = ACTIONS(12269), + [anon_sym_EQ] = ACTIONS(12269), + [sym_word] = ACTIONS(12269), + [sym_param] = ACTIONS(12269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12269), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12269), + [anon_sym_DOLLAR] = ACTIONS(12271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12269), + [anon_sym_BSLASHbegin] = ACTIONS(12271), + [anon_sym_BSLASHcaption] = ACTIONS(12271), + [anon_sym_BSLASHcite] = ACTIONS(12271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCite] = ACTIONS(12271), + [anon_sym_BSLASHnocite] = ACTIONS(12271), + [anon_sym_BSLASHcitet] = ACTIONS(12271), + [anon_sym_BSLASHcitep] = ACTIONS(12271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteauthor] = ACTIONS(12271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitetitle] = ACTIONS(12271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteyear] = ACTIONS(12271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitedate] = ACTIONS(12271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteurl] = ACTIONS(12271), + [anon_sym_BSLASHfullcite] = ACTIONS(12271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12271), + [anon_sym_BSLASHcitealt] = ACTIONS(12271), + [anon_sym_BSLASHcitealp] = ACTIONS(12271), + [anon_sym_BSLASHcitetext] = ACTIONS(12271), + [anon_sym_BSLASHparencite] = ACTIONS(12271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHParencite] = ACTIONS(12271), + [anon_sym_BSLASHfootcite] = ACTIONS(12271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12271), + [anon_sym_BSLASHtextcite] = ACTIONS(12271), + [anon_sym_BSLASHTextcite] = ACTIONS(12271), + [anon_sym_BSLASHsmartcite] = ACTIONS(12271), + [anon_sym_BSLASHSmartcite] = ACTIONS(12271), + [anon_sym_BSLASHsupercite] = ACTIONS(12271), + [anon_sym_BSLASHautocite] = ACTIONS(12271), + [anon_sym_BSLASHAutocite] = ACTIONS(12271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHvolcite] = ACTIONS(12271), + [anon_sym_BSLASHVolcite] = ACTIONS(12271), + [anon_sym_BSLASHpvolcite] = ACTIONS(12271), + [anon_sym_BSLASHPvolcite] = ACTIONS(12271), + [anon_sym_BSLASHfvolcite] = ACTIONS(12271), + [anon_sym_BSLASHftvolcite] = ACTIONS(12271), + [anon_sym_BSLASHsvolcite] = ACTIONS(12271), + [anon_sym_BSLASHSvolcite] = ACTIONS(12271), + [anon_sym_BSLASHtvolcite] = ACTIONS(12271), + [anon_sym_BSLASHTvolcite] = ACTIONS(12271), + [anon_sym_BSLASHavolcite] = ACTIONS(12271), + [anon_sym_BSLASHAvolcite] = ACTIONS(12271), + [anon_sym_BSLASHnotecite] = ACTIONS(12271), + [anon_sym_BSLASHpnotecite] = ACTIONS(12271), + [anon_sym_BSLASHPnotecite] = ACTIONS(12271), + [anon_sym_BSLASHfnotecite] = ACTIONS(12271), + [anon_sym_BSLASHusepackage] = ACTIONS(12271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12271), + [anon_sym_BSLASHinclude] = ACTIONS(12271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12271), + [anon_sym_BSLASHinput] = ACTIONS(12271), + [anon_sym_BSLASHsubfile] = ACTIONS(12271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12271), + [anon_sym_BSLASHbibliography] = ACTIONS(12271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12271), + [anon_sym_BSLASHincludesvg] = ACTIONS(12271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12271), + [anon_sym_BSLASHimport] = ACTIONS(12271), + [anon_sym_BSLASHsubimport] = ACTIONS(12271), + [anon_sym_BSLASHinputfrom] = ACTIONS(12271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12271), + [anon_sym_BSLASHincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHlabel] = ACTIONS(12271), + [anon_sym_BSLASHref] = ACTIONS(12271), + [anon_sym_BSLASHvref] = ACTIONS(12271), + [anon_sym_BSLASHVref] = ACTIONS(12271), + [anon_sym_BSLASHautoref] = ACTIONS(12271), + [anon_sym_BSLASHpageref] = ACTIONS(12271), + [anon_sym_BSLASHcref] = ACTIONS(12271), + [anon_sym_BSLASHCref] = ACTIONS(12271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnameCref] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHlabelcref] = ACTIONS(12271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12271), + [anon_sym_BSLASHeqref] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange] = ACTIONS(12271), + [anon_sym_BSLASHCrefrange] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewlabel] = ACTIONS(12271), + [anon_sym_BSLASHnewcommand] = ACTIONS(12271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12271), + [anon_sym_BSLASHgls] = ACTIONS(12271), + [anon_sym_BSLASHGls] = ACTIONS(12271), + [anon_sym_BSLASHGLS] = ACTIONS(12271), + [anon_sym_BSLASHglspl] = ACTIONS(12271), + [anon_sym_BSLASHGlspl] = ACTIONS(12271), + [anon_sym_BSLASHGLSpl] = ACTIONS(12271), + [anon_sym_BSLASHglsdisp] = ACTIONS(12271), + [anon_sym_BSLASHglslink] = ACTIONS(12271), + [anon_sym_BSLASHglstext] = ACTIONS(12271), + [anon_sym_BSLASHGlstext] = ACTIONS(12271), + [anon_sym_BSLASHGLStext] = ACTIONS(12271), + [anon_sym_BSLASHglsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12271), + [anon_sym_BSLASHglsplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSplural] = ACTIONS(12271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHglsname] = ACTIONS(12271), + [anon_sym_BSLASHGlsname] = ACTIONS(12271), + [anon_sym_BSLASHGLSname] = ACTIONS(12271), + [anon_sym_BSLASHglssymbol] = ACTIONS(12271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12271), + [anon_sym_BSLASHglsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12271), + [anon_sym_BSLASHglsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12271), + [anon_sym_BSLASHglsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12271), + [anon_sym_BSLASHglsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12271), + [anon_sym_BSLASHglsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12271), + [anon_sym_BSLASHnewacronym] = ACTIONS(12271), + [anon_sym_BSLASHacrshort] = ACTIONS(12271), + [anon_sym_BSLASHAcrshort] = ACTIONS(12271), + [anon_sym_BSLASHACRshort] = ACTIONS(12271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12271), + [anon_sym_BSLASHacrlong] = ACTIONS(12271), + [anon_sym_BSLASHAcrlong] = ACTIONS(12271), + [anon_sym_BSLASHACRlong] = ACTIONS(12271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12271), + [anon_sym_BSLASHacrfull] = ACTIONS(12271), + [anon_sym_BSLASHAcrfull] = ACTIONS(12271), + [anon_sym_BSLASHACRfull] = ACTIONS(12271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12271), + [anon_sym_BSLASHacs] = ACTIONS(12271), + [anon_sym_BSLASHAcs] = ACTIONS(12271), + [anon_sym_BSLASHacsp] = ACTIONS(12271), + [anon_sym_BSLASHAcsp] = ACTIONS(12271), + [anon_sym_BSLASHacl] = ACTIONS(12271), + [anon_sym_BSLASHAcl] = ACTIONS(12271), + [anon_sym_BSLASHaclp] = ACTIONS(12271), + [anon_sym_BSLASHAclp] = ACTIONS(12271), + [anon_sym_BSLASHacf] = ACTIONS(12271), + [anon_sym_BSLASHAcf] = ACTIONS(12271), + [anon_sym_BSLASHacfp] = ACTIONS(12271), + [anon_sym_BSLASHAcfp] = ACTIONS(12271), + [anon_sym_BSLASHac] = ACTIONS(12271), + [anon_sym_BSLASHAc] = ACTIONS(12271), + [anon_sym_BSLASHacp] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12271), + [anon_sym_BSLASHcolor] = ACTIONS(12271), + [anon_sym_BSLASHcolorbox] = ACTIONS(12271), + [anon_sym_BSLASHtextcolor] = ACTIONS(12271), + [anon_sym_BSLASHpagecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12271), + }, + [1168] = { + [sym_generic_command_name] = ACTIONS(12279), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12279), + [aux_sym_subsection_token1] = ACTIONS(12279), + [aux_sym_subsubsection_token1] = ACTIONS(12279), + [aux_sym_paragraph_token1] = ACTIONS(12279), + [aux_sym_subparagraph_token1] = ACTIONS(12279), + [anon_sym_BSLASHitem] = ACTIONS(12279), + [anon_sym_LBRACK] = ACTIONS(12277), + [anon_sym_RBRACK] = ACTIONS(12277), + [anon_sym_LBRACE] = ACTIONS(12277), + [anon_sym_RBRACE] = ACTIONS(12277), + [anon_sym_LPAREN] = ACTIONS(12277), + [anon_sym_COMMA] = ACTIONS(12277), + [anon_sym_EQ] = ACTIONS(12277), + [sym_word] = ACTIONS(12277), + [sym_param] = ACTIONS(12277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12277), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12277), + [anon_sym_DOLLAR] = ACTIONS(12279), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12277), + [anon_sym_BSLASHbegin] = ACTIONS(12279), + [anon_sym_BSLASHcaption] = ACTIONS(12279), + [anon_sym_BSLASHcite] = ACTIONS(12279), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCite] = ACTIONS(12279), + [anon_sym_BSLASHnocite] = ACTIONS(12279), + [anon_sym_BSLASHcitet] = ACTIONS(12279), + [anon_sym_BSLASHcitep] = ACTIONS(12279), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteauthor] = ACTIONS(12279), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12279), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitetitle] = ACTIONS(12279), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteyear] = ACTIONS(12279), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitedate] = ACTIONS(12279), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteurl] = ACTIONS(12279), + [anon_sym_BSLASHfullcite] = ACTIONS(12279), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12279), + [anon_sym_BSLASHcitealt] = ACTIONS(12279), + [anon_sym_BSLASHcitealp] = ACTIONS(12279), + [anon_sym_BSLASHcitetext] = ACTIONS(12279), + [anon_sym_BSLASHparencite] = ACTIONS(12279), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHParencite] = ACTIONS(12279), + [anon_sym_BSLASHfootcite] = ACTIONS(12279), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12279), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12279), + [anon_sym_BSLASHtextcite] = ACTIONS(12279), + [anon_sym_BSLASHTextcite] = ACTIONS(12279), + [anon_sym_BSLASHsmartcite] = ACTIONS(12279), + [anon_sym_BSLASHSmartcite] = ACTIONS(12279), + [anon_sym_BSLASHsupercite] = ACTIONS(12279), + [anon_sym_BSLASHautocite] = ACTIONS(12279), + [anon_sym_BSLASHAutocite] = ACTIONS(12279), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHvolcite] = ACTIONS(12279), + [anon_sym_BSLASHVolcite] = ACTIONS(12279), + [anon_sym_BSLASHpvolcite] = ACTIONS(12279), + [anon_sym_BSLASHPvolcite] = ACTIONS(12279), + [anon_sym_BSLASHfvolcite] = ACTIONS(12279), + [anon_sym_BSLASHftvolcite] = ACTIONS(12279), + [anon_sym_BSLASHsvolcite] = ACTIONS(12279), + [anon_sym_BSLASHSvolcite] = ACTIONS(12279), + [anon_sym_BSLASHtvolcite] = ACTIONS(12279), + [anon_sym_BSLASHTvolcite] = ACTIONS(12279), + [anon_sym_BSLASHavolcite] = ACTIONS(12279), + [anon_sym_BSLASHAvolcite] = ACTIONS(12279), + [anon_sym_BSLASHnotecite] = ACTIONS(12279), + [anon_sym_BSLASHpnotecite] = ACTIONS(12279), + [anon_sym_BSLASHPnotecite] = ACTIONS(12279), + [anon_sym_BSLASHfnotecite] = ACTIONS(12279), + [anon_sym_BSLASHusepackage] = ACTIONS(12279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12279), + [anon_sym_BSLASHinclude] = ACTIONS(12279), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12279), + [anon_sym_BSLASHinput] = ACTIONS(12279), + [anon_sym_BSLASHsubfile] = ACTIONS(12279), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12279), + [anon_sym_BSLASHbibliography] = ACTIONS(12279), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12279), + [anon_sym_BSLASHincludesvg] = ACTIONS(12279), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12279), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12279), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12279), + [anon_sym_BSLASHimport] = ACTIONS(12279), + [anon_sym_BSLASHsubimport] = ACTIONS(12279), + [anon_sym_BSLASHinputfrom] = ACTIONS(12279), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12279), + [anon_sym_BSLASHincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHlabel] = ACTIONS(12279), + [anon_sym_BSLASHref] = ACTIONS(12279), + [anon_sym_BSLASHvref] = ACTIONS(12279), + [anon_sym_BSLASHVref] = ACTIONS(12279), + [anon_sym_BSLASHautoref] = ACTIONS(12279), + [anon_sym_BSLASHpageref] = ACTIONS(12279), + [anon_sym_BSLASHcref] = ACTIONS(12279), + [anon_sym_BSLASHCref] = ACTIONS(12279), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnameCref] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHlabelcref] = ACTIONS(12279), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12279), + [anon_sym_BSLASHeqref] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange] = ACTIONS(12279), + [anon_sym_BSLASHCrefrange] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewlabel] = ACTIONS(12279), + [anon_sym_BSLASHnewcommand] = ACTIONS(12279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12279), + [anon_sym_BSLASHgls] = ACTIONS(12279), + [anon_sym_BSLASHGls] = ACTIONS(12279), + [anon_sym_BSLASHGLS] = ACTIONS(12279), + [anon_sym_BSLASHglspl] = ACTIONS(12279), + [anon_sym_BSLASHGlspl] = ACTIONS(12279), + [anon_sym_BSLASHGLSpl] = ACTIONS(12279), + [anon_sym_BSLASHglsdisp] = ACTIONS(12279), + [anon_sym_BSLASHglslink] = ACTIONS(12279), + [anon_sym_BSLASHglstext] = ACTIONS(12279), + [anon_sym_BSLASHGlstext] = ACTIONS(12279), + [anon_sym_BSLASHGLStext] = ACTIONS(12279), + [anon_sym_BSLASHglsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12279), + [anon_sym_BSLASHglsplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSplural] = ACTIONS(12279), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHglsname] = ACTIONS(12279), + [anon_sym_BSLASHGlsname] = ACTIONS(12279), + [anon_sym_BSLASHGLSname] = ACTIONS(12279), + [anon_sym_BSLASHglssymbol] = ACTIONS(12279), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12279), + [anon_sym_BSLASHglsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12279), + [anon_sym_BSLASHglsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12279), + [anon_sym_BSLASHglsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12279), + [anon_sym_BSLASHglsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12279), + [anon_sym_BSLASHglsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12279), + [anon_sym_BSLASHnewacronym] = ACTIONS(12279), + [anon_sym_BSLASHacrshort] = ACTIONS(12279), + [anon_sym_BSLASHAcrshort] = ACTIONS(12279), + [anon_sym_BSLASHACRshort] = ACTIONS(12279), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12279), + [anon_sym_BSLASHacrlong] = ACTIONS(12279), + [anon_sym_BSLASHAcrlong] = ACTIONS(12279), + [anon_sym_BSLASHACRlong] = ACTIONS(12279), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12279), + [anon_sym_BSLASHacrfull] = ACTIONS(12279), + [anon_sym_BSLASHAcrfull] = ACTIONS(12279), + [anon_sym_BSLASHACRfull] = ACTIONS(12279), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12279), + [anon_sym_BSLASHacs] = ACTIONS(12279), + [anon_sym_BSLASHAcs] = ACTIONS(12279), + [anon_sym_BSLASHacsp] = ACTIONS(12279), + [anon_sym_BSLASHAcsp] = ACTIONS(12279), + [anon_sym_BSLASHacl] = ACTIONS(12279), + [anon_sym_BSLASHAcl] = ACTIONS(12279), + [anon_sym_BSLASHaclp] = ACTIONS(12279), + [anon_sym_BSLASHAclp] = ACTIONS(12279), + [anon_sym_BSLASHacf] = ACTIONS(12279), + [anon_sym_BSLASHAcf] = ACTIONS(12279), + [anon_sym_BSLASHacfp] = ACTIONS(12279), + [anon_sym_BSLASHAcfp] = ACTIONS(12279), + [anon_sym_BSLASHac] = ACTIONS(12279), + [anon_sym_BSLASHAc] = ACTIONS(12279), + [anon_sym_BSLASHacp] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12279), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12279), + [anon_sym_BSLASHcolor] = ACTIONS(12279), + [anon_sym_BSLASHcolorbox] = ACTIONS(12279), + [anon_sym_BSLASHtextcolor] = ACTIONS(12279), + [anon_sym_BSLASHpagecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12279), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12279), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12279), + }, + [1169] = { + [sym_generic_command_name] = ACTIONS(12287), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12287), + [aux_sym_subsection_token1] = ACTIONS(12287), + [aux_sym_subsubsection_token1] = ACTIONS(12287), + [aux_sym_paragraph_token1] = ACTIONS(12287), + [aux_sym_subparagraph_token1] = ACTIONS(12287), + [anon_sym_BSLASHitem] = ACTIONS(12287), + [anon_sym_LBRACK] = ACTIONS(12285), + [anon_sym_RBRACK] = ACTIONS(12285), + [anon_sym_LBRACE] = ACTIONS(12285), + [anon_sym_RBRACE] = ACTIONS(12285), + [anon_sym_LPAREN] = ACTIONS(12285), + [anon_sym_COMMA] = ACTIONS(12285), + [anon_sym_EQ] = ACTIONS(12285), + [sym_word] = ACTIONS(12285), + [sym_param] = ACTIONS(12285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12285), + [anon_sym_DOLLAR] = ACTIONS(12287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12285), + [anon_sym_BSLASHbegin] = ACTIONS(12287), + [anon_sym_BSLASHcaption] = ACTIONS(12287), + [anon_sym_BSLASHcite] = ACTIONS(12287), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCite] = ACTIONS(12287), + [anon_sym_BSLASHnocite] = ACTIONS(12287), + [anon_sym_BSLASHcitet] = ACTIONS(12287), + [anon_sym_BSLASHcitep] = ACTIONS(12287), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteauthor] = ACTIONS(12287), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12287), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitetitle] = ACTIONS(12287), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteyear] = ACTIONS(12287), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitedate] = ACTIONS(12287), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteurl] = ACTIONS(12287), + [anon_sym_BSLASHfullcite] = ACTIONS(12287), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12287), + [anon_sym_BSLASHcitealt] = ACTIONS(12287), + [anon_sym_BSLASHcitealp] = ACTIONS(12287), + [anon_sym_BSLASHcitetext] = ACTIONS(12287), + [anon_sym_BSLASHparencite] = ACTIONS(12287), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHParencite] = ACTIONS(12287), + [anon_sym_BSLASHfootcite] = ACTIONS(12287), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12287), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12287), + [anon_sym_BSLASHtextcite] = ACTIONS(12287), + [anon_sym_BSLASHTextcite] = ACTIONS(12287), + [anon_sym_BSLASHsmartcite] = ACTIONS(12287), + [anon_sym_BSLASHSmartcite] = ACTIONS(12287), + [anon_sym_BSLASHsupercite] = ACTIONS(12287), + [anon_sym_BSLASHautocite] = ACTIONS(12287), + [anon_sym_BSLASHAutocite] = ACTIONS(12287), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHvolcite] = ACTIONS(12287), + [anon_sym_BSLASHVolcite] = ACTIONS(12287), + [anon_sym_BSLASHpvolcite] = ACTIONS(12287), + [anon_sym_BSLASHPvolcite] = ACTIONS(12287), + [anon_sym_BSLASHfvolcite] = ACTIONS(12287), + [anon_sym_BSLASHftvolcite] = ACTIONS(12287), + [anon_sym_BSLASHsvolcite] = ACTIONS(12287), + [anon_sym_BSLASHSvolcite] = ACTIONS(12287), + [anon_sym_BSLASHtvolcite] = ACTIONS(12287), + [anon_sym_BSLASHTvolcite] = ACTIONS(12287), + [anon_sym_BSLASHavolcite] = ACTIONS(12287), + [anon_sym_BSLASHAvolcite] = ACTIONS(12287), + [anon_sym_BSLASHnotecite] = ACTIONS(12287), + [anon_sym_BSLASHpnotecite] = ACTIONS(12287), + [anon_sym_BSLASHPnotecite] = ACTIONS(12287), + [anon_sym_BSLASHfnotecite] = ACTIONS(12287), + [anon_sym_BSLASHusepackage] = ACTIONS(12287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12287), + [anon_sym_BSLASHinclude] = ACTIONS(12287), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12287), + [anon_sym_BSLASHinput] = ACTIONS(12287), + [anon_sym_BSLASHsubfile] = ACTIONS(12287), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12287), + [anon_sym_BSLASHbibliography] = ACTIONS(12287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12287), + [anon_sym_BSLASHincludesvg] = ACTIONS(12287), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12287), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12287), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12287), + [anon_sym_BSLASHimport] = ACTIONS(12287), + [anon_sym_BSLASHsubimport] = ACTIONS(12287), + [anon_sym_BSLASHinputfrom] = ACTIONS(12287), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12287), + [anon_sym_BSLASHincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHlabel] = ACTIONS(12287), + [anon_sym_BSLASHref] = ACTIONS(12287), + [anon_sym_BSLASHvref] = ACTIONS(12287), + [anon_sym_BSLASHVref] = ACTIONS(12287), + [anon_sym_BSLASHautoref] = ACTIONS(12287), + [anon_sym_BSLASHpageref] = ACTIONS(12287), + [anon_sym_BSLASHcref] = ACTIONS(12287), + [anon_sym_BSLASHCref] = ACTIONS(12287), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnameCref] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHlabelcref] = ACTIONS(12287), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12287), + [anon_sym_BSLASHeqref] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange] = ACTIONS(12287), + [anon_sym_BSLASHCrefrange] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewlabel] = ACTIONS(12287), + [anon_sym_BSLASHnewcommand] = ACTIONS(12287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12287), + [anon_sym_BSLASHgls] = ACTIONS(12287), + [anon_sym_BSLASHGls] = ACTIONS(12287), + [anon_sym_BSLASHGLS] = ACTIONS(12287), + [anon_sym_BSLASHglspl] = ACTIONS(12287), + [anon_sym_BSLASHGlspl] = ACTIONS(12287), + [anon_sym_BSLASHGLSpl] = ACTIONS(12287), + [anon_sym_BSLASHglsdisp] = ACTIONS(12287), + [anon_sym_BSLASHglslink] = ACTIONS(12287), + [anon_sym_BSLASHglstext] = ACTIONS(12287), + [anon_sym_BSLASHGlstext] = ACTIONS(12287), + [anon_sym_BSLASHGLStext] = ACTIONS(12287), + [anon_sym_BSLASHglsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12287), + [anon_sym_BSLASHglsplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSplural] = ACTIONS(12287), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHglsname] = ACTIONS(12287), + [anon_sym_BSLASHGlsname] = ACTIONS(12287), + [anon_sym_BSLASHGLSname] = ACTIONS(12287), + [anon_sym_BSLASHglssymbol] = ACTIONS(12287), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12287), + [anon_sym_BSLASHglsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12287), + [anon_sym_BSLASHglsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12287), + [anon_sym_BSLASHglsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12287), + [anon_sym_BSLASHglsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12287), + [anon_sym_BSLASHglsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12287), + [anon_sym_BSLASHnewacronym] = ACTIONS(12287), + [anon_sym_BSLASHacrshort] = ACTIONS(12287), + [anon_sym_BSLASHAcrshort] = ACTIONS(12287), + [anon_sym_BSLASHACRshort] = ACTIONS(12287), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12287), + [anon_sym_BSLASHacrlong] = ACTIONS(12287), + [anon_sym_BSLASHAcrlong] = ACTIONS(12287), + [anon_sym_BSLASHACRlong] = ACTIONS(12287), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12287), + [anon_sym_BSLASHacrfull] = ACTIONS(12287), + [anon_sym_BSLASHAcrfull] = ACTIONS(12287), + [anon_sym_BSLASHACRfull] = ACTIONS(12287), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12287), + [anon_sym_BSLASHacs] = ACTIONS(12287), + [anon_sym_BSLASHAcs] = ACTIONS(12287), + [anon_sym_BSLASHacsp] = ACTIONS(12287), + [anon_sym_BSLASHAcsp] = ACTIONS(12287), + [anon_sym_BSLASHacl] = ACTIONS(12287), + [anon_sym_BSLASHAcl] = ACTIONS(12287), + [anon_sym_BSLASHaclp] = ACTIONS(12287), + [anon_sym_BSLASHAclp] = ACTIONS(12287), + [anon_sym_BSLASHacf] = ACTIONS(12287), + [anon_sym_BSLASHAcf] = ACTIONS(12287), + [anon_sym_BSLASHacfp] = ACTIONS(12287), + [anon_sym_BSLASHAcfp] = ACTIONS(12287), + [anon_sym_BSLASHac] = ACTIONS(12287), + [anon_sym_BSLASHAc] = ACTIONS(12287), + [anon_sym_BSLASHacp] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12287), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12287), + [anon_sym_BSLASHcolor] = ACTIONS(12287), + [anon_sym_BSLASHcolorbox] = ACTIONS(12287), + [anon_sym_BSLASHtextcolor] = ACTIONS(12287), + [anon_sym_BSLASHpagecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12287), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12287), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12287), + }, + [1170] = { + [sym_generic_command_name] = ACTIONS(12291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12291), + [aux_sym_subsection_token1] = ACTIONS(12291), + [aux_sym_subsubsection_token1] = ACTIONS(12291), + [aux_sym_paragraph_token1] = ACTIONS(12291), + [aux_sym_subparagraph_token1] = ACTIONS(12291), + [anon_sym_BSLASHitem] = ACTIONS(12291), + [anon_sym_LBRACK] = ACTIONS(12289), + [anon_sym_RBRACK] = ACTIONS(12289), + [anon_sym_LBRACE] = ACTIONS(12289), + [anon_sym_RBRACE] = ACTIONS(12289), + [anon_sym_LPAREN] = ACTIONS(12289), + [anon_sym_COMMA] = ACTIONS(12289), + [anon_sym_EQ] = ACTIONS(12289), + [sym_word] = ACTIONS(12289), + [sym_param] = ACTIONS(12289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12289), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12289), + [anon_sym_DOLLAR] = ACTIONS(12291), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12289), + [anon_sym_BSLASHbegin] = ACTIONS(12291), + [anon_sym_BSLASHcaption] = ACTIONS(12291), + [anon_sym_BSLASHcite] = ACTIONS(12291), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCite] = ACTIONS(12291), + [anon_sym_BSLASHnocite] = ACTIONS(12291), + [anon_sym_BSLASHcitet] = ACTIONS(12291), + [anon_sym_BSLASHcitep] = ACTIONS(12291), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteauthor] = ACTIONS(12291), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12291), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitetitle] = ACTIONS(12291), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteyear] = ACTIONS(12291), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitedate] = ACTIONS(12291), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteurl] = ACTIONS(12291), + [anon_sym_BSLASHfullcite] = ACTIONS(12291), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12291), + [anon_sym_BSLASHcitealt] = ACTIONS(12291), + [anon_sym_BSLASHcitealp] = ACTIONS(12291), + [anon_sym_BSLASHcitetext] = ACTIONS(12291), + [anon_sym_BSLASHparencite] = ACTIONS(12291), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHParencite] = ACTIONS(12291), + [anon_sym_BSLASHfootcite] = ACTIONS(12291), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12291), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12291), + [anon_sym_BSLASHtextcite] = ACTIONS(12291), + [anon_sym_BSLASHTextcite] = ACTIONS(12291), + [anon_sym_BSLASHsmartcite] = ACTIONS(12291), + [anon_sym_BSLASHSmartcite] = ACTIONS(12291), + [anon_sym_BSLASHsupercite] = ACTIONS(12291), + [anon_sym_BSLASHautocite] = ACTIONS(12291), + [anon_sym_BSLASHAutocite] = ACTIONS(12291), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHvolcite] = ACTIONS(12291), + [anon_sym_BSLASHVolcite] = ACTIONS(12291), + [anon_sym_BSLASHpvolcite] = ACTIONS(12291), + [anon_sym_BSLASHPvolcite] = ACTIONS(12291), + [anon_sym_BSLASHfvolcite] = ACTIONS(12291), + [anon_sym_BSLASHftvolcite] = ACTIONS(12291), + [anon_sym_BSLASHsvolcite] = ACTIONS(12291), + [anon_sym_BSLASHSvolcite] = ACTIONS(12291), + [anon_sym_BSLASHtvolcite] = ACTIONS(12291), + [anon_sym_BSLASHTvolcite] = ACTIONS(12291), + [anon_sym_BSLASHavolcite] = ACTIONS(12291), + [anon_sym_BSLASHAvolcite] = ACTIONS(12291), + [anon_sym_BSLASHnotecite] = ACTIONS(12291), + [anon_sym_BSLASHpnotecite] = ACTIONS(12291), + [anon_sym_BSLASHPnotecite] = ACTIONS(12291), + [anon_sym_BSLASHfnotecite] = ACTIONS(12291), + [anon_sym_BSLASHusepackage] = ACTIONS(12291), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12291), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12291), + [anon_sym_BSLASHinclude] = ACTIONS(12291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12291), + [anon_sym_BSLASHinput] = ACTIONS(12291), + [anon_sym_BSLASHsubfile] = ACTIONS(12291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12291), + [anon_sym_BSLASHbibliography] = ACTIONS(12291), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12291), + [anon_sym_BSLASHincludesvg] = ACTIONS(12291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12291), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12291), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12291), + [anon_sym_BSLASHimport] = ACTIONS(12291), + [anon_sym_BSLASHsubimport] = ACTIONS(12291), + [anon_sym_BSLASHinputfrom] = ACTIONS(12291), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12291), + [anon_sym_BSLASHincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHlabel] = ACTIONS(12291), + [anon_sym_BSLASHref] = ACTIONS(12291), + [anon_sym_BSLASHvref] = ACTIONS(12291), + [anon_sym_BSLASHVref] = ACTIONS(12291), + [anon_sym_BSLASHautoref] = ACTIONS(12291), + [anon_sym_BSLASHpageref] = ACTIONS(12291), + [anon_sym_BSLASHcref] = ACTIONS(12291), + [anon_sym_BSLASHCref] = ACTIONS(12291), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnameCref] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHlabelcref] = ACTIONS(12291), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12291), + [anon_sym_BSLASHeqref] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange] = ACTIONS(12291), + [anon_sym_BSLASHCrefrange] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewlabel] = ACTIONS(12291), + [anon_sym_BSLASHnewcommand] = ACTIONS(12291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12291), + [anon_sym_BSLASHgls] = ACTIONS(12291), + [anon_sym_BSLASHGls] = ACTIONS(12291), + [anon_sym_BSLASHGLS] = ACTIONS(12291), + [anon_sym_BSLASHglspl] = ACTIONS(12291), + [anon_sym_BSLASHGlspl] = ACTIONS(12291), + [anon_sym_BSLASHGLSpl] = ACTIONS(12291), + [anon_sym_BSLASHglsdisp] = ACTIONS(12291), + [anon_sym_BSLASHglslink] = ACTIONS(12291), + [anon_sym_BSLASHglstext] = ACTIONS(12291), + [anon_sym_BSLASHGlstext] = ACTIONS(12291), + [anon_sym_BSLASHGLStext] = ACTIONS(12291), + [anon_sym_BSLASHglsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12291), + [anon_sym_BSLASHglsplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSplural] = ACTIONS(12291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHglsname] = ACTIONS(12291), + [anon_sym_BSLASHGlsname] = ACTIONS(12291), + [anon_sym_BSLASHGLSname] = ACTIONS(12291), + [anon_sym_BSLASHglssymbol] = ACTIONS(12291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12291), + [anon_sym_BSLASHglsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12291), + [anon_sym_BSLASHglsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12291), + [anon_sym_BSLASHglsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12291), + [anon_sym_BSLASHglsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12291), + [anon_sym_BSLASHglsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12291), + [anon_sym_BSLASHnewacronym] = ACTIONS(12291), + [anon_sym_BSLASHacrshort] = ACTIONS(12291), + [anon_sym_BSLASHAcrshort] = ACTIONS(12291), + [anon_sym_BSLASHACRshort] = ACTIONS(12291), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12291), + [anon_sym_BSLASHacrlong] = ACTIONS(12291), + [anon_sym_BSLASHAcrlong] = ACTIONS(12291), + [anon_sym_BSLASHACRlong] = ACTIONS(12291), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12291), + [anon_sym_BSLASHacrfull] = ACTIONS(12291), + [anon_sym_BSLASHAcrfull] = ACTIONS(12291), + [anon_sym_BSLASHACRfull] = ACTIONS(12291), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12291), + [anon_sym_BSLASHacs] = ACTIONS(12291), + [anon_sym_BSLASHAcs] = ACTIONS(12291), + [anon_sym_BSLASHacsp] = ACTIONS(12291), + [anon_sym_BSLASHAcsp] = ACTIONS(12291), + [anon_sym_BSLASHacl] = ACTIONS(12291), + [anon_sym_BSLASHAcl] = ACTIONS(12291), + [anon_sym_BSLASHaclp] = ACTIONS(12291), + [anon_sym_BSLASHAclp] = ACTIONS(12291), + [anon_sym_BSLASHacf] = ACTIONS(12291), + [anon_sym_BSLASHAcf] = ACTIONS(12291), + [anon_sym_BSLASHacfp] = ACTIONS(12291), + [anon_sym_BSLASHAcfp] = ACTIONS(12291), + [anon_sym_BSLASHac] = ACTIONS(12291), + [anon_sym_BSLASHAc] = ACTIONS(12291), + [anon_sym_BSLASHacp] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12291), + [anon_sym_BSLASHcolor] = ACTIONS(12291), + [anon_sym_BSLASHcolorbox] = ACTIONS(12291), + [anon_sym_BSLASHtextcolor] = ACTIONS(12291), + [anon_sym_BSLASHpagecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12291), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12291), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12291), + }, + [1171] = { + [sym_generic_command_name] = ACTIONS(12295), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12295), + [aux_sym_subsection_token1] = ACTIONS(12295), + [aux_sym_subsubsection_token1] = ACTIONS(12295), + [aux_sym_paragraph_token1] = ACTIONS(12295), + [aux_sym_subparagraph_token1] = ACTIONS(12295), + [anon_sym_BSLASHitem] = ACTIONS(12295), + [anon_sym_LBRACK] = ACTIONS(12293), + [anon_sym_RBRACK] = ACTIONS(12293), + [anon_sym_LBRACE] = ACTIONS(12293), + [anon_sym_RBRACE] = ACTIONS(12293), + [anon_sym_LPAREN] = ACTIONS(12293), + [anon_sym_COMMA] = ACTIONS(12293), + [anon_sym_EQ] = ACTIONS(12293), + [sym_word] = ACTIONS(12293), + [sym_param] = ACTIONS(12293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12293), + [anon_sym_DOLLAR] = ACTIONS(12295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12293), + [anon_sym_BSLASHbegin] = ACTIONS(12295), + [anon_sym_BSLASHcaption] = ACTIONS(12295), + [anon_sym_BSLASHcite] = ACTIONS(12295), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCite] = ACTIONS(12295), + [anon_sym_BSLASHnocite] = ACTIONS(12295), + [anon_sym_BSLASHcitet] = ACTIONS(12295), + [anon_sym_BSLASHcitep] = ACTIONS(12295), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteauthor] = ACTIONS(12295), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12295), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitetitle] = ACTIONS(12295), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteyear] = ACTIONS(12295), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitedate] = ACTIONS(12295), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteurl] = ACTIONS(12295), + [anon_sym_BSLASHfullcite] = ACTIONS(12295), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12295), + [anon_sym_BSLASHcitealt] = ACTIONS(12295), + [anon_sym_BSLASHcitealp] = ACTIONS(12295), + [anon_sym_BSLASHcitetext] = ACTIONS(12295), + [anon_sym_BSLASHparencite] = ACTIONS(12295), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHParencite] = ACTIONS(12295), + [anon_sym_BSLASHfootcite] = ACTIONS(12295), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12295), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12295), + [anon_sym_BSLASHtextcite] = ACTIONS(12295), + [anon_sym_BSLASHTextcite] = ACTIONS(12295), + [anon_sym_BSLASHsmartcite] = ACTIONS(12295), + [anon_sym_BSLASHSmartcite] = ACTIONS(12295), + [anon_sym_BSLASHsupercite] = ACTIONS(12295), + [anon_sym_BSLASHautocite] = ACTIONS(12295), + [anon_sym_BSLASHAutocite] = ACTIONS(12295), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHvolcite] = ACTIONS(12295), + [anon_sym_BSLASHVolcite] = ACTIONS(12295), + [anon_sym_BSLASHpvolcite] = ACTIONS(12295), + [anon_sym_BSLASHPvolcite] = ACTIONS(12295), + [anon_sym_BSLASHfvolcite] = ACTIONS(12295), + [anon_sym_BSLASHftvolcite] = ACTIONS(12295), + [anon_sym_BSLASHsvolcite] = ACTIONS(12295), + [anon_sym_BSLASHSvolcite] = ACTIONS(12295), + [anon_sym_BSLASHtvolcite] = ACTIONS(12295), + [anon_sym_BSLASHTvolcite] = ACTIONS(12295), + [anon_sym_BSLASHavolcite] = ACTIONS(12295), + [anon_sym_BSLASHAvolcite] = ACTIONS(12295), + [anon_sym_BSLASHnotecite] = ACTIONS(12295), + [anon_sym_BSLASHpnotecite] = ACTIONS(12295), + [anon_sym_BSLASHPnotecite] = ACTIONS(12295), + [anon_sym_BSLASHfnotecite] = ACTIONS(12295), + [anon_sym_BSLASHusepackage] = ACTIONS(12295), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12295), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12295), + [anon_sym_BSLASHinclude] = ACTIONS(12295), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12295), + [anon_sym_BSLASHinput] = ACTIONS(12295), + [anon_sym_BSLASHsubfile] = ACTIONS(12295), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12295), + [anon_sym_BSLASHbibliography] = ACTIONS(12295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12295), + [anon_sym_BSLASHincludesvg] = ACTIONS(12295), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12295), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12295), + [anon_sym_BSLASHimport] = ACTIONS(12295), + [anon_sym_BSLASHsubimport] = ACTIONS(12295), + [anon_sym_BSLASHinputfrom] = ACTIONS(12295), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12295), + [anon_sym_BSLASHincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHlabel] = ACTIONS(12295), + [anon_sym_BSLASHref] = ACTIONS(12295), + [anon_sym_BSLASHvref] = ACTIONS(12295), + [anon_sym_BSLASHVref] = ACTIONS(12295), + [anon_sym_BSLASHautoref] = ACTIONS(12295), + [anon_sym_BSLASHpageref] = ACTIONS(12295), + [anon_sym_BSLASHcref] = ACTIONS(12295), + [anon_sym_BSLASHCref] = ACTIONS(12295), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnameCref] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHlabelcref] = ACTIONS(12295), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12295), + [anon_sym_BSLASHeqref] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange] = ACTIONS(12295), + [anon_sym_BSLASHCrefrange] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewlabel] = ACTIONS(12295), + [anon_sym_BSLASHnewcommand] = ACTIONS(12295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12295), + [anon_sym_BSLASHgls] = ACTIONS(12295), + [anon_sym_BSLASHGls] = ACTIONS(12295), + [anon_sym_BSLASHGLS] = ACTIONS(12295), + [anon_sym_BSLASHglspl] = ACTIONS(12295), + [anon_sym_BSLASHGlspl] = ACTIONS(12295), + [anon_sym_BSLASHGLSpl] = ACTIONS(12295), + [anon_sym_BSLASHglsdisp] = ACTIONS(12295), + [anon_sym_BSLASHglslink] = ACTIONS(12295), + [anon_sym_BSLASHglstext] = ACTIONS(12295), + [anon_sym_BSLASHGlstext] = ACTIONS(12295), + [anon_sym_BSLASHGLStext] = ACTIONS(12295), + [anon_sym_BSLASHglsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12295), + [anon_sym_BSLASHglsplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSplural] = ACTIONS(12295), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHglsname] = ACTIONS(12295), + [anon_sym_BSLASHGlsname] = ACTIONS(12295), + [anon_sym_BSLASHGLSname] = ACTIONS(12295), + [anon_sym_BSLASHglssymbol] = ACTIONS(12295), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12295), + [anon_sym_BSLASHglsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12295), + [anon_sym_BSLASHglsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12295), + [anon_sym_BSLASHglsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12295), + [anon_sym_BSLASHglsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12295), + [anon_sym_BSLASHglsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12295), + [anon_sym_BSLASHnewacronym] = ACTIONS(12295), + [anon_sym_BSLASHacrshort] = ACTIONS(12295), + [anon_sym_BSLASHAcrshort] = ACTIONS(12295), + [anon_sym_BSLASHACRshort] = ACTIONS(12295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12295), + [anon_sym_BSLASHacrlong] = ACTIONS(12295), + [anon_sym_BSLASHAcrlong] = ACTIONS(12295), + [anon_sym_BSLASHACRlong] = ACTIONS(12295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12295), + [anon_sym_BSLASHacrfull] = ACTIONS(12295), + [anon_sym_BSLASHAcrfull] = ACTIONS(12295), + [anon_sym_BSLASHACRfull] = ACTIONS(12295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12295), + [anon_sym_BSLASHacs] = ACTIONS(12295), + [anon_sym_BSLASHAcs] = ACTIONS(12295), + [anon_sym_BSLASHacsp] = ACTIONS(12295), + [anon_sym_BSLASHAcsp] = ACTIONS(12295), + [anon_sym_BSLASHacl] = ACTIONS(12295), + [anon_sym_BSLASHAcl] = ACTIONS(12295), + [anon_sym_BSLASHaclp] = ACTIONS(12295), + [anon_sym_BSLASHAclp] = ACTIONS(12295), + [anon_sym_BSLASHacf] = ACTIONS(12295), + [anon_sym_BSLASHAcf] = ACTIONS(12295), + [anon_sym_BSLASHacfp] = ACTIONS(12295), + [anon_sym_BSLASHAcfp] = ACTIONS(12295), + [anon_sym_BSLASHac] = ACTIONS(12295), + [anon_sym_BSLASHAc] = ACTIONS(12295), + [anon_sym_BSLASHacp] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12295), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12295), + [anon_sym_BSLASHcolor] = ACTIONS(12295), + [anon_sym_BSLASHcolorbox] = ACTIONS(12295), + [anon_sym_BSLASHtextcolor] = ACTIONS(12295), + [anon_sym_BSLASHpagecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12295), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12295), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12295), + }, + [1172] = { + [sym_generic_command_name] = ACTIONS(12303), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12303), + [aux_sym_subsection_token1] = ACTIONS(12303), + [aux_sym_subsubsection_token1] = ACTIONS(12303), + [aux_sym_paragraph_token1] = ACTIONS(12303), + [aux_sym_subparagraph_token1] = ACTIONS(12303), + [anon_sym_BSLASHitem] = ACTIONS(12303), + [anon_sym_LBRACK] = ACTIONS(12301), + [anon_sym_RBRACK] = ACTIONS(12301), + [anon_sym_LBRACE] = ACTIONS(12301), + [anon_sym_RBRACE] = ACTIONS(12301), + [anon_sym_LPAREN] = ACTIONS(12301), + [anon_sym_COMMA] = ACTIONS(12301), + [anon_sym_EQ] = ACTIONS(12301), + [sym_word] = ACTIONS(12301), + [sym_param] = ACTIONS(12301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12301), + [anon_sym_DOLLAR] = ACTIONS(12303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12301), + [anon_sym_BSLASHbegin] = ACTIONS(12303), + [anon_sym_BSLASHcaption] = ACTIONS(12303), + [anon_sym_BSLASHcite] = ACTIONS(12303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCite] = ACTIONS(12303), + [anon_sym_BSLASHnocite] = ACTIONS(12303), + [anon_sym_BSLASHcitet] = ACTIONS(12303), + [anon_sym_BSLASHcitep] = ACTIONS(12303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteauthor] = ACTIONS(12303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitetitle] = ACTIONS(12303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteyear] = ACTIONS(12303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitedate] = ACTIONS(12303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteurl] = ACTIONS(12303), + [anon_sym_BSLASHfullcite] = ACTIONS(12303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12303), + [anon_sym_BSLASHcitealt] = ACTIONS(12303), + [anon_sym_BSLASHcitealp] = ACTIONS(12303), + [anon_sym_BSLASHcitetext] = ACTIONS(12303), + [anon_sym_BSLASHparencite] = ACTIONS(12303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHParencite] = ACTIONS(12303), + [anon_sym_BSLASHfootcite] = ACTIONS(12303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12303), + [anon_sym_BSLASHtextcite] = ACTIONS(12303), + [anon_sym_BSLASHTextcite] = ACTIONS(12303), + [anon_sym_BSLASHsmartcite] = ACTIONS(12303), + [anon_sym_BSLASHSmartcite] = ACTIONS(12303), + [anon_sym_BSLASHsupercite] = ACTIONS(12303), + [anon_sym_BSLASHautocite] = ACTIONS(12303), + [anon_sym_BSLASHAutocite] = ACTIONS(12303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHvolcite] = ACTIONS(12303), + [anon_sym_BSLASHVolcite] = ACTIONS(12303), + [anon_sym_BSLASHpvolcite] = ACTIONS(12303), + [anon_sym_BSLASHPvolcite] = ACTIONS(12303), + [anon_sym_BSLASHfvolcite] = ACTIONS(12303), + [anon_sym_BSLASHftvolcite] = ACTIONS(12303), + [anon_sym_BSLASHsvolcite] = ACTIONS(12303), + [anon_sym_BSLASHSvolcite] = ACTIONS(12303), + [anon_sym_BSLASHtvolcite] = ACTIONS(12303), + [anon_sym_BSLASHTvolcite] = ACTIONS(12303), + [anon_sym_BSLASHavolcite] = ACTIONS(12303), + [anon_sym_BSLASHAvolcite] = ACTIONS(12303), + [anon_sym_BSLASHnotecite] = ACTIONS(12303), + [anon_sym_BSLASHpnotecite] = ACTIONS(12303), + [anon_sym_BSLASHPnotecite] = ACTIONS(12303), + [anon_sym_BSLASHfnotecite] = ACTIONS(12303), + [anon_sym_BSLASHusepackage] = ACTIONS(12303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12303), + [anon_sym_BSLASHinclude] = ACTIONS(12303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12303), + [anon_sym_BSLASHinput] = ACTIONS(12303), + [anon_sym_BSLASHsubfile] = ACTIONS(12303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12303), + [anon_sym_BSLASHbibliography] = ACTIONS(12303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12303), + [anon_sym_BSLASHincludesvg] = ACTIONS(12303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12303), + [anon_sym_BSLASHimport] = ACTIONS(12303), + [anon_sym_BSLASHsubimport] = ACTIONS(12303), + [anon_sym_BSLASHinputfrom] = ACTIONS(12303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12303), + [anon_sym_BSLASHincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHlabel] = ACTIONS(12303), + [anon_sym_BSLASHref] = ACTIONS(12303), + [anon_sym_BSLASHvref] = ACTIONS(12303), + [anon_sym_BSLASHVref] = ACTIONS(12303), + [anon_sym_BSLASHautoref] = ACTIONS(12303), + [anon_sym_BSLASHpageref] = ACTIONS(12303), + [anon_sym_BSLASHcref] = ACTIONS(12303), + [anon_sym_BSLASHCref] = ACTIONS(12303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnameCref] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHlabelcref] = ACTIONS(12303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12303), + [anon_sym_BSLASHeqref] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange] = ACTIONS(12303), + [anon_sym_BSLASHCrefrange] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewlabel] = ACTIONS(12303), + [anon_sym_BSLASHnewcommand] = ACTIONS(12303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12303), + [anon_sym_BSLASHgls] = ACTIONS(12303), + [anon_sym_BSLASHGls] = ACTIONS(12303), + [anon_sym_BSLASHGLS] = ACTIONS(12303), + [anon_sym_BSLASHglspl] = ACTIONS(12303), + [anon_sym_BSLASHGlspl] = ACTIONS(12303), + [anon_sym_BSLASHGLSpl] = ACTIONS(12303), + [anon_sym_BSLASHglsdisp] = ACTIONS(12303), + [anon_sym_BSLASHglslink] = ACTIONS(12303), + [anon_sym_BSLASHglstext] = ACTIONS(12303), + [anon_sym_BSLASHGlstext] = ACTIONS(12303), + [anon_sym_BSLASHGLStext] = ACTIONS(12303), + [anon_sym_BSLASHglsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12303), + [anon_sym_BSLASHglsplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSplural] = ACTIONS(12303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHglsname] = ACTIONS(12303), + [anon_sym_BSLASHGlsname] = ACTIONS(12303), + [anon_sym_BSLASHGLSname] = ACTIONS(12303), + [anon_sym_BSLASHglssymbol] = ACTIONS(12303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12303), + [anon_sym_BSLASHglsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12303), + [anon_sym_BSLASHglsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12303), + [anon_sym_BSLASHglsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12303), + [anon_sym_BSLASHglsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12303), + [anon_sym_BSLASHglsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12303), + [anon_sym_BSLASHnewacronym] = ACTIONS(12303), + [anon_sym_BSLASHacrshort] = ACTIONS(12303), + [anon_sym_BSLASHAcrshort] = ACTIONS(12303), + [anon_sym_BSLASHACRshort] = ACTIONS(12303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12303), + [anon_sym_BSLASHacrlong] = ACTIONS(12303), + [anon_sym_BSLASHAcrlong] = ACTIONS(12303), + [anon_sym_BSLASHACRlong] = ACTIONS(12303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12303), + [anon_sym_BSLASHacrfull] = ACTIONS(12303), + [anon_sym_BSLASHAcrfull] = ACTIONS(12303), + [anon_sym_BSLASHACRfull] = ACTIONS(12303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12303), + [anon_sym_BSLASHacs] = ACTIONS(12303), + [anon_sym_BSLASHAcs] = ACTIONS(12303), + [anon_sym_BSLASHacsp] = ACTIONS(12303), + [anon_sym_BSLASHAcsp] = ACTIONS(12303), + [anon_sym_BSLASHacl] = ACTIONS(12303), + [anon_sym_BSLASHAcl] = ACTIONS(12303), + [anon_sym_BSLASHaclp] = ACTIONS(12303), + [anon_sym_BSLASHAclp] = ACTIONS(12303), + [anon_sym_BSLASHacf] = ACTIONS(12303), + [anon_sym_BSLASHAcf] = ACTIONS(12303), + [anon_sym_BSLASHacfp] = ACTIONS(12303), + [anon_sym_BSLASHAcfp] = ACTIONS(12303), + [anon_sym_BSLASHac] = ACTIONS(12303), + [anon_sym_BSLASHAc] = ACTIONS(12303), + [anon_sym_BSLASHacp] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12303), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12303), + [anon_sym_BSLASHcolor] = ACTIONS(12303), + [anon_sym_BSLASHcolorbox] = ACTIONS(12303), + [anon_sym_BSLASHtextcolor] = ACTIONS(12303), + [anon_sym_BSLASHpagecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12303), + }, + [1173] = { + [sym_generic_command_name] = ACTIONS(12307), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12307), + [aux_sym_subsection_token1] = ACTIONS(12307), + [aux_sym_subsubsection_token1] = ACTIONS(12307), + [aux_sym_paragraph_token1] = ACTIONS(12307), + [aux_sym_subparagraph_token1] = ACTIONS(12307), + [anon_sym_BSLASHitem] = ACTIONS(12307), + [anon_sym_LBRACK] = ACTIONS(12305), + [anon_sym_RBRACK] = ACTIONS(12305), + [anon_sym_LBRACE] = ACTIONS(12305), + [anon_sym_RBRACE] = ACTIONS(12305), + [anon_sym_LPAREN] = ACTIONS(12305), + [anon_sym_COMMA] = ACTIONS(12305), + [anon_sym_EQ] = ACTIONS(12305), + [sym_word] = ACTIONS(12305), + [sym_param] = ACTIONS(12305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12305), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12305), + [anon_sym_DOLLAR] = ACTIONS(12307), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12305), + [anon_sym_BSLASHbegin] = ACTIONS(12307), + [anon_sym_BSLASHcaption] = ACTIONS(12307), + [anon_sym_BSLASHcite] = ACTIONS(12307), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCite] = ACTIONS(12307), + [anon_sym_BSLASHnocite] = ACTIONS(12307), + [anon_sym_BSLASHcitet] = ACTIONS(12307), + [anon_sym_BSLASHcitep] = ACTIONS(12307), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteauthor] = ACTIONS(12307), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12307), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitetitle] = ACTIONS(12307), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteyear] = ACTIONS(12307), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitedate] = ACTIONS(12307), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteurl] = ACTIONS(12307), + [anon_sym_BSLASHfullcite] = ACTIONS(12307), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12307), + [anon_sym_BSLASHcitealt] = ACTIONS(12307), + [anon_sym_BSLASHcitealp] = ACTIONS(12307), + [anon_sym_BSLASHcitetext] = ACTIONS(12307), + [anon_sym_BSLASHparencite] = ACTIONS(12307), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHParencite] = ACTIONS(12307), + [anon_sym_BSLASHfootcite] = ACTIONS(12307), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12307), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12307), + [anon_sym_BSLASHtextcite] = ACTIONS(12307), + [anon_sym_BSLASHTextcite] = ACTIONS(12307), + [anon_sym_BSLASHsmartcite] = ACTIONS(12307), + [anon_sym_BSLASHSmartcite] = ACTIONS(12307), + [anon_sym_BSLASHsupercite] = ACTIONS(12307), + [anon_sym_BSLASHautocite] = ACTIONS(12307), + [anon_sym_BSLASHAutocite] = ACTIONS(12307), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHvolcite] = ACTIONS(12307), + [anon_sym_BSLASHVolcite] = ACTIONS(12307), + [anon_sym_BSLASHpvolcite] = ACTIONS(12307), + [anon_sym_BSLASHPvolcite] = ACTIONS(12307), + [anon_sym_BSLASHfvolcite] = ACTIONS(12307), + [anon_sym_BSLASHftvolcite] = ACTIONS(12307), + [anon_sym_BSLASHsvolcite] = ACTIONS(12307), + [anon_sym_BSLASHSvolcite] = ACTIONS(12307), + [anon_sym_BSLASHtvolcite] = ACTIONS(12307), + [anon_sym_BSLASHTvolcite] = ACTIONS(12307), + [anon_sym_BSLASHavolcite] = ACTIONS(12307), + [anon_sym_BSLASHAvolcite] = ACTIONS(12307), + [anon_sym_BSLASHnotecite] = ACTIONS(12307), + [anon_sym_BSLASHpnotecite] = ACTIONS(12307), + [anon_sym_BSLASHPnotecite] = ACTIONS(12307), + [anon_sym_BSLASHfnotecite] = ACTIONS(12307), + [anon_sym_BSLASHusepackage] = ACTIONS(12307), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12307), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12307), + [anon_sym_BSLASHinclude] = ACTIONS(12307), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12307), + [anon_sym_BSLASHinput] = ACTIONS(12307), + [anon_sym_BSLASHsubfile] = ACTIONS(12307), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12307), + [anon_sym_BSLASHbibliography] = ACTIONS(12307), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12307), + [anon_sym_BSLASHincludesvg] = ACTIONS(12307), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12307), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12307), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12307), + [anon_sym_BSLASHimport] = ACTIONS(12307), + [anon_sym_BSLASHsubimport] = ACTIONS(12307), + [anon_sym_BSLASHinputfrom] = ACTIONS(12307), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12307), + [anon_sym_BSLASHincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHlabel] = ACTIONS(12307), + [anon_sym_BSLASHref] = ACTIONS(12307), + [anon_sym_BSLASHvref] = ACTIONS(12307), + [anon_sym_BSLASHVref] = ACTIONS(12307), + [anon_sym_BSLASHautoref] = ACTIONS(12307), + [anon_sym_BSLASHpageref] = ACTIONS(12307), + [anon_sym_BSLASHcref] = ACTIONS(12307), + [anon_sym_BSLASHCref] = ACTIONS(12307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnameCref] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHlabelcref] = ACTIONS(12307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12307), + [anon_sym_BSLASHeqref] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange] = ACTIONS(12307), + [anon_sym_BSLASHCrefrange] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewlabel] = ACTIONS(12307), + [anon_sym_BSLASHnewcommand] = ACTIONS(12307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12307), + [anon_sym_BSLASHgls] = ACTIONS(12307), + [anon_sym_BSLASHGls] = ACTIONS(12307), + [anon_sym_BSLASHGLS] = ACTIONS(12307), + [anon_sym_BSLASHglspl] = ACTIONS(12307), + [anon_sym_BSLASHGlspl] = ACTIONS(12307), + [anon_sym_BSLASHGLSpl] = ACTIONS(12307), + [anon_sym_BSLASHglsdisp] = ACTIONS(12307), + [anon_sym_BSLASHglslink] = ACTIONS(12307), + [anon_sym_BSLASHglstext] = ACTIONS(12307), + [anon_sym_BSLASHGlstext] = ACTIONS(12307), + [anon_sym_BSLASHGLStext] = ACTIONS(12307), + [anon_sym_BSLASHglsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12307), + [anon_sym_BSLASHglsplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSplural] = ACTIONS(12307), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHglsname] = ACTIONS(12307), + [anon_sym_BSLASHGlsname] = ACTIONS(12307), + [anon_sym_BSLASHGLSname] = ACTIONS(12307), + [anon_sym_BSLASHglssymbol] = ACTIONS(12307), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12307), + [anon_sym_BSLASHglsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12307), + [anon_sym_BSLASHglsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12307), + [anon_sym_BSLASHglsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12307), + [anon_sym_BSLASHglsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12307), + [anon_sym_BSLASHglsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12307), + [anon_sym_BSLASHnewacronym] = ACTIONS(12307), + [anon_sym_BSLASHacrshort] = ACTIONS(12307), + [anon_sym_BSLASHAcrshort] = ACTIONS(12307), + [anon_sym_BSLASHACRshort] = ACTIONS(12307), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12307), + [anon_sym_BSLASHacrlong] = ACTIONS(12307), + [anon_sym_BSLASHAcrlong] = ACTIONS(12307), + [anon_sym_BSLASHACRlong] = ACTIONS(12307), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12307), + [anon_sym_BSLASHacrfull] = ACTIONS(12307), + [anon_sym_BSLASHAcrfull] = ACTIONS(12307), + [anon_sym_BSLASHACRfull] = ACTIONS(12307), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12307), + [anon_sym_BSLASHacs] = ACTIONS(12307), + [anon_sym_BSLASHAcs] = ACTIONS(12307), + [anon_sym_BSLASHacsp] = ACTIONS(12307), + [anon_sym_BSLASHAcsp] = ACTIONS(12307), + [anon_sym_BSLASHacl] = ACTIONS(12307), + [anon_sym_BSLASHAcl] = ACTIONS(12307), + [anon_sym_BSLASHaclp] = ACTIONS(12307), + [anon_sym_BSLASHAclp] = ACTIONS(12307), + [anon_sym_BSLASHacf] = ACTIONS(12307), + [anon_sym_BSLASHAcf] = ACTIONS(12307), + [anon_sym_BSLASHacfp] = ACTIONS(12307), + [anon_sym_BSLASHAcfp] = ACTIONS(12307), + [anon_sym_BSLASHac] = ACTIONS(12307), + [anon_sym_BSLASHAc] = ACTIONS(12307), + [anon_sym_BSLASHacp] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12307), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12307), + [anon_sym_BSLASHcolor] = ACTIONS(12307), + [anon_sym_BSLASHcolorbox] = ACTIONS(12307), + [anon_sym_BSLASHtextcolor] = ACTIONS(12307), + [anon_sym_BSLASHpagecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12307), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12307), + }, + [1174] = { + [sym_generic_command_name] = ACTIONS(12315), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12315), + [aux_sym_subsection_token1] = ACTIONS(12315), + [aux_sym_subsubsection_token1] = ACTIONS(12315), + [aux_sym_paragraph_token1] = ACTIONS(12315), + [aux_sym_subparagraph_token1] = ACTIONS(12315), + [anon_sym_BSLASHitem] = ACTIONS(12315), + [anon_sym_LBRACK] = ACTIONS(12313), + [anon_sym_RBRACK] = ACTIONS(12313), + [anon_sym_LBRACE] = ACTIONS(12313), + [anon_sym_RBRACE] = ACTIONS(12313), + [anon_sym_LPAREN] = ACTIONS(12313), + [anon_sym_COMMA] = ACTIONS(12313), + [anon_sym_EQ] = ACTIONS(12313), + [sym_word] = ACTIONS(12313), + [sym_param] = ACTIONS(12313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12313), + [anon_sym_DOLLAR] = ACTIONS(12315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12313), + [anon_sym_BSLASHbegin] = ACTIONS(12315), + [anon_sym_BSLASHcaption] = ACTIONS(12315), + [anon_sym_BSLASHcite] = ACTIONS(12315), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCite] = ACTIONS(12315), + [anon_sym_BSLASHnocite] = ACTIONS(12315), + [anon_sym_BSLASHcitet] = ACTIONS(12315), + [anon_sym_BSLASHcitep] = ACTIONS(12315), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteauthor] = ACTIONS(12315), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12315), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitetitle] = ACTIONS(12315), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteyear] = ACTIONS(12315), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitedate] = ACTIONS(12315), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteurl] = ACTIONS(12315), + [anon_sym_BSLASHfullcite] = ACTIONS(12315), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12315), + [anon_sym_BSLASHcitealt] = ACTIONS(12315), + [anon_sym_BSLASHcitealp] = ACTIONS(12315), + [anon_sym_BSLASHcitetext] = ACTIONS(12315), + [anon_sym_BSLASHparencite] = ACTIONS(12315), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHParencite] = ACTIONS(12315), + [anon_sym_BSLASHfootcite] = ACTIONS(12315), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12315), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12315), + [anon_sym_BSLASHtextcite] = ACTIONS(12315), + [anon_sym_BSLASHTextcite] = ACTIONS(12315), + [anon_sym_BSLASHsmartcite] = ACTIONS(12315), + [anon_sym_BSLASHSmartcite] = ACTIONS(12315), + [anon_sym_BSLASHsupercite] = ACTIONS(12315), + [anon_sym_BSLASHautocite] = ACTIONS(12315), + [anon_sym_BSLASHAutocite] = ACTIONS(12315), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHvolcite] = ACTIONS(12315), + [anon_sym_BSLASHVolcite] = ACTIONS(12315), + [anon_sym_BSLASHpvolcite] = ACTIONS(12315), + [anon_sym_BSLASHPvolcite] = ACTIONS(12315), + [anon_sym_BSLASHfvolcite] = ACTIONS(12315), + [anon_sym_BSLASHftvolcite] = ACTIONS(12315), + [anon_sym_BSLASHsvolcite] = ACTIONS(12315), + [anon_sym_BSLASHSvolcite] = ACTIONS(12315), + [anon_sym_BSLASHtvolcite] = ACTIONS(12315), + [anon_sym_BSLASHTvolcite] = ACTIONS(12315), + [anon_sym_BSLASHavolcite] = ACTIONS(12315), + [anon_sym_BSLASHAvolcite] = ACTIONS(12315), + [anon_sym_BSLASHnotecite] = ACTIONS(12315), + [anon_sym_BSLASHpnotecite] = ACTIONS(12315), + [anon_sym_BSLASHPnotecite] = ACTIONS(12315), + [anon_sym_BSLASHfnotecite] = ACTIONS(12315), + [anon_sym_BSLASHusepackage] = ACTIONS(12315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12315), + [anon_sym_BSLASHinclude] = ACTIONS(12315), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12315), + [anon_sym_BSLASHinput] = ACTIONS(12315), + [anon_sym_BSLASHsubfile] = ACTIONS(12315), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12315), + [anon_sym_BSLASHbibliography] = ACTIONS(12315), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12315), + [anon_sym_BSLASHincludesvg] = ACTIONS(12315), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12315), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12315), + [anon_sym_BSLASHimport] = ACTIONS(12315), + [anon_sym_BSLASHsubimport] = ACTIONS(12315), + [anon_sym_BSLASHinputfrom] = ACTIONS(12315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12315), + [anon_sym_BSLASHincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHlabel] = ACTIONS(12315), + [anon_sym_BSLASHref] = ACTIONS(12315), + [anon_sym_BSLASHvref] = ACTIONS(12315), + [anon_sym_BSLASHVref] = ACTIONS(12315), + [anon_sym_BSLASHautoref] = ACTIONS(12315), + [anon_sym_BSLASHpageref] = ACTIONS(12315), + [anon_sym_BSLASHcref] = ACTIONS(12315), + [anon_sym_BSLASHCref] = ACTIONS(12315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnameCref] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHlabelcref] = ACTIONS(12315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12315), + [anon_sym_BSLASHeqref] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange] = ACTIONS(12315), + [anon_sym_BSLASHCrefrange] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewlabel] = ACTIONS(12315), + [anon_sym_BSLASHnewcommand] = ACTIONS(12315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12315), + [anon_sym_BSLASHgls] = ACTIONS(12315), + [anon_sym_BSLASHGls] = ACTIONS(12315), + [anon_sym_BSLASHGLS] = ACTIONS(12315), + [anon_sym_BSLASHglspl] = ACTIONS(12315), + [anon_sym_BSLASHGlspl] = ACTIONS(12315), + [anon_sym_BSLASHGLSpl] = ACTIONS(12315), + [anon_sym_BSLASHglsdisp] = ACTIONS(12315), + [anon_sym_BSLASHglslink] = ACTIONS(12315), + [anon_sym_BSLASHglstext] = ACTIONS(12315), + [anon_sym_BSLASHGlstext] = ACTIONS(12315), + [anon_sym_BSLASHGLStext] = ACTIONS(12315), + [anon_sym_BSLASHglsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12315), + [anon_sym_BSLASHglsplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSplural] = ACTIONS(12315), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHglsname] = ACTIONS(12315), + [anon_sym_BSLASHGlsname] = ACTIONS(12315), + [anon_sym_BSLASHGLSname] = ACTIONS(12315), + [anon_sym_BSLASHglssymbol] = ACTIONS(12315), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12315), + [anon_sym_BSLASHglsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12315), + [anon_sym_BSLASHglsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12315), + [anon_sym_BSLASHglsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12315), + [anon_sym_BSLASHglsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12315), + [anon_sym_BSLASHglsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12315), + [anon_sym_BSLASHnewacronym] = ACTIONS(12315), + [anon_sym_BSLASHacrshort] = ACTIONS(12315), + [anon_sym_BSLASHAcrshort] = ACTIONS(12315), + [anon_sym_BSLASHACRshort] = ACTIONS(12315), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12315), + [anon_sym_BSLASHacrlong] = ACTIONS(12315), + [anon_sym_BSLASHAcrlong] = ACTIONS(12315), + [anon_sym_BSLASHACRlong] = ACTIONS(12315), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12315), + [anon_sym_BSLASHacrfull] = ACTIONS(12315), + [anon_sym_BSLASHAcrfull] = ACTIONS(12315), + [anon_sym_BSLASHACRfull] = ACTIONS(12315), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12315), + [anon_sym_BSLASHacs] = ACTIONS(12315), + [anon_sym_BSLASHAcs] = ACTIONS(12315), + [anon_sym_BSLASHacsp] = ACTIONS(12315), + [anon_sym_BSLASHAcsp] = ACTIONS(12315), + [anon_sym_BSLASHacl] = ACTIONS(12315), + [anon_sym_BSLASHAcl] = ACTIONS(12315), + [anon_sym_BSLASHaclp] = ACTIONS(12315), + [anon_sym_BSLASHAclp] = ACTIONS(12315), + [anon_sym_BSLASHacf] = ACTIONS(12315), + [anon_sym_BSLASHAcf] = ACTIONS(12315), + [anon_sym_BSLASHacfp] = ACTIONS(12315), + [anon_sym_BSLASHAcfp] = ACTIONS(12315), + [anon_sym_BSLASHac] = ACTIONS(12315), + [anon_sym_BSLASHAc] = ACTIONS(12315), + [anon_sym_BSLASHacp] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12315), + [anon_sym_BSLASHcolor] = ACTIONS(12315), + [anon_sym_BSLASHcolorbox] = ACTIONS(12315), + [anon_sym_BSLASHtextcolor] = ACTIONS(12315), + [anon_sym_BSLASHpagecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12315), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12315), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12315), + }, + [1175] = { + [sym_generic_command_name] = ACTIONS(12335), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12335), + [aux_sym_subsection_token1] = ACTIONS(12335), + [aux_sym_subsubsection_token1] = ACTIONS(12335), + [aux_sym_paragraph_token1] = ACTIONS(12335), + [aux_sym_subparagraph_token1] = ACTIONS(12335), + [anon_sym_BSLASHitem] = ACTIONS(12335), + [anon_sym_LBRACK] = ACTIONS(12717), + [anon_sym_RBRACK] = ACTIONS(12333), + [anon_sym_LBRACE] = ACTIONS(12333), + [anon_sym_RBRACE] = ACTIONS(12333), + [anon_sym_LPAREN] = ACTIONS(12333), + [anon_sym_COMMA] = ACTIONS(12333), + [anon_sym_EQ] = ACTIONS(12333), + [sym_word] = ACTIONS(12333), + [sym_param] = ACTIONS(12333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12333), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12333), + [anon_sym_DOLLAR] = ACTIONS(12335), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12333), + [anon_sym_BSLASHbegin] = ACTIONS(12335), + [anon_sym_BSLASHcaption] = ACTIONS(12335), + [anon_sym_BSLASHcite] = ACTIONS(12335), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCite] = ACTIONS(12335), + [anon_sym_BSLASHnocite] = ACTIONS(12335), + [anon_sym_BSLASHcitet] = ACTIONS(12335), + [anon_sym_BSLASHcitep] = ACTIONS(12335), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteauthor] = ACTIONS(12335), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12335), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitetitle] = ACTIONS(12335), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteyear] = ACTIONS(12335), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitedate] = ACTIONS(12335), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteurl] = ACTIONS(12335), + [anon_sym_BSLASHfullcite] = ACTIONS(12335), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12335), + [anon_sym_BSLASHcitealt] = ACTIONS(12335), + [anon_sym_BSLASHcitealp] = ACTIONS(12335), + [anon_sym_BSLASHcitetext] = ACTIONS(12335), + [anon_sym_BSLASHparencite] = ACTIONS(12335), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHParencite] = ACTIONS(12335), + [anon_sym_BSLASHfootcite] = ACTIONS(12335), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12335), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12335), + [anon_sym_BSLASHtextcite] = ACTIONS(12335), + [anon_sym_BSLASHTextcite] = ACTIONS(12335), + [anon_sym_BSLASHsmartcite] = ACTIONS(12335), + [anon_sym_BSLASHSmartcite] = ACTIONS(12335), + [anon_sym_BSLASHsupercite] = ACTIONS(12335), + [anon_sym_BSLASHautocite] = ACTIONS(12335), + [anon_sym_BSLASHAutocite] = ACTIONS(12335), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHvolcite] = ACTIONS(12335), + [anon_sym_BSLASHVolcite] = ACTIONS(12335), + [anon_sym_BSLASHpvolcite] = ACTIONS(12335), + [anon_sym_BSLASHPvolcite] = ACTIONS(12335), + [anon_sym_BSLASHfvolcite] = ACTIONS(12335), + [anon_sym_BSLASHftvolcite] = ACTIONS(12335), + [anon_sym_BSLASHsvolcite] = ACTIONS(12335), + [anon_sym_BSLASHSvolcite] = ACTIONS(12335), + [anon_sym_BSLASHtvolcite] = ACTIONS(12335), + [anon_sym_BSLASHTvolcite] = ACTIONS(12335), + [anon_sym_BSLASHavolcite] = ACTIONS(12335), + [anon_sym_BSLASHAvolcite] = ACTIONS(12335), + [anon_sym_BSLASHnotecite] = ACTIONS(12335), + [anon_sym_BSLASHpnotecite] = ACTIONS(12335), + [anon_sym_BSLASHPnotecite] = ACTIONS(12335), + [anon_sym_BSLASHfnotecite] = ACTIONS(12335), + [anon_sym_BSLASHusepackage] = ACTIONS(12335), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12335), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12335), + [anon_sym_BSLASHinclude] = ACTIONS(12335), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12335), + [anon_sym_BSLASHinput] = ACTIONS(12335), + [anon_sym_BSLASHsubfile] = ACTIONS(12335), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12335), + [anon_sym_BSLASHbibliography] = ACTIONS(12335), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12335), + [anon_sym_BSLASHincludesvg] = ACTIONS(12335), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12335), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12335), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12335), + [anon_sym_BSLASHimport] = ACTIONS(12335), + [anon_sym_BSLASHsubimport] = ACTIONS(12335), + [anon_sym_BSLASHinputfrom] = ACTIONS(12335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12335), + [anon_sym_BSLASHincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHlabel] = ACTIONS(12335), + [anon_sym_BSLASHref] = ACTIONS(12335), + [anon_sym_BSLASHvref] = ACTIONS(12335), + [anon_sym_BSLASHVref] = ACTIONS(12335), + [anon_sym_BSLASHautoref] = ACTIONS(12335), + [anon_sym_BSLASHpageref] = ACTIONS(12335), + [anon_sym_BSLASHcref] = ACTIONS(12335), + [anon_sym_BSLASHCref] = ACTIONS(12335), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnameCref] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHlabelcref] = ACTIONS(12335), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12335), + [anon_sym_BSLASHeqref] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange] = ACTIONS(12335), + [anon_sym_BSLASHCrefrange] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewlabel] = ACTIONS(12335), + [anon_sym_BSLASHnewcommand] = ACTIONS(12335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12335), + [anon_sym_BSLASHgls] = ACTIONS(12335), + [anon_sym_BSLASHGls] = ACTIONS(12335), + [anon_sym_BSLASHGLS] = ACTIONS(12335), + [anon_sym_BSLASHglspl] = ACTIONS(12335), + [anon_sym_BSLASHGlspl] = ACTIONS(12335), + [anon_sym_BSLASHGLSpl] = ACTIONS(12335), + [anon_sym_BSLASHglsdisp] = ACTIONS(12335), + [anon_sym_BSLASHglslink] = ACTIONS(12335), + [anon_sym_BSLASHglstext] = ACTIONS(12335), + [anon_sym_BSLASHGlstext] = ACTIONS(12335), + [anon_sym_BSLASHGLStext] = ACTIONS(12335), + [anon_sym_BSLASHglsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12335), + [anon_sym_BSLASHglsplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSplural] = ACTIONS(12335), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHglsname] = ACTIONS(12335), + [anon_sym_BSLASHGlsname] = ACTIONS(12335), + [anon_sym_BSLASHGLSname] = ACTIONS(12335), + [anon_sym_BSLASHglssymbol] = ACTIONS(12335), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12335), + [anon_sym_BSLASHglsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12335), + [anon_sym_BSLASHglsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12335), + [anon_sym_BSLASHglsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12335), + [anon_sym_BSLASHglsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12335), + [anon_sym_BSLASHglsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12335), + [anon_sym_BSLASHnewacronym] = ACTIONS(12335), + [anon_sym_BSLASHacrshort] = ACTIONS(12335), + [anon_sym_BSLASHAcrshort] = ACTIONS(12335), + [anon_sym_BSLASHACRshort] = ACTIONS(12335), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12335), + [anon_sym_BSLASHacrlong] = ACTIONS(12335), + [anon_sym_BSLASHAcrlong] = ACTIONS(12335), + [anon_sym_BSLASHACRlong] = ACTIONS(12335), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12335), + [anon_sym_BSLASHacrfull] = ACTIONS(12335), + [anon_sym_BSLASHAcrfull] = ACTIONS(12335), + [anon_sym_BSLASHACRfull] = ACTIONS(12335), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12335), + [anon_sym_BSLASHacs] = ACTIONS(12335), + [anon_sym_BSLASHAcs] = ACTIONS(12335), + [anon_sym_BSLASHacsp] = ACTIONS(12335), + [anon_sym_BSLASHAcsp] = ACTIONS(12335), + [anon_sym_BSLASHacl] = ACTIONS(12335), + [anon_sym_BSLASHAcl] = ACTIONS(12335), + [anon_sym_BSLASHaclp] = ACTIONS(12335), + [anon_sym_BSLASHAclp] = ACTIONS(12335), + [anon_sym_BSLASHacf] = ACTIONS(12335), + [anon_sym_BSLASHAcf] = ACTIONS(12335), + [anon_sym_BSLASHacfp] = ACTIONS(12335), + [anon_sym_BSLASHAcfp] = ACTIONS(12335), + [anon_sym_BSLASHac] = ACTIONS(12335), + [anon_sym_BSLASHAc] = ACTIONS(12335), + [anon_sym_BSLASHacp] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12335), + [anon_sym_BSLASHcolor] = ACTIONS(12335), + [anon_sym_BSLASHcolorbox] = ACTIONS(12335), + [anon_sym_BSLASHtextcolor] = ACTIONS(12335), + [anon_sym_BSLASHpagecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12335), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12335), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12335), + }, + [1176] = { + [sym_generic_command_name] = ACTIONS(12341), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12341), + [aux_sym_subsection_token1] = ACTIONS(12341), + [aux_sym_subsubsection_token1] = ACTIONS(12341), + [aux_sym_paragraph_token1] = ACTIONS(12341), + [aux_sym_subparagraph_token1] = ACTIONS(12341), + [anon_sym_BSLASHitem] = ACTIONS(12341), + [anon_sym_LBRACK] = ACTIONS(12339), + [anon_sym_RBRACK] = ACTIONS(12339), + [anon_sym_LBRACE] = ACTIONS(12339), + [anon_sym_RBRACE] = ACTIONS(12339), + [anon_sym_LPAREN] = ACTIONS(12339), + [anon_sym_COMMA] = ACTIONS(12339), + [anon_sym_EQ] = ACTIONS(12339), + [sym_word] = ACTIONS(12339), + [sym_param] = ACTIONS(12339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12339), + [anon_sym_DOLLAR] = ACTIONS(12341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12339), + [anon_sym_BSLASHbegin] = ACTIONS(12341), + [anon_sym_BSLASHcaption] = ACTIONS(12341), + [anon_sym_BSLASHcite] = ACTIONS(12341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCite] = ACTIONS(12341), + [anon_sym_BSLASHnocite] = ACTIONS(12341), + [anon_sym_BSLASHcitet] = ACTIONS(12341), + [anon_sym_BSLASHcitep] = ACTIONS(12341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteauthor] = ACTIONS(12341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitetitle] = ACTIONS(12341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteyear] = ACTIONS(12341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitedate] = ACTIONS(12341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteurl] = ACTIONS(12341), + [anon_sym_BSLASHfullcite] = ACTIONS(12341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12341), + [anon_sym_BSLASHcitealt] = ACTIONS(12341), + [anon_sym_BSLASHcitealp] = ACTIONS(12341), + [anon_sym_BSLASHcitetext] = ACTIONS(12341), + [anon_sym_BSLASHparencite] = ACTIONS(12341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHParencite] = ACTIONS(12341), + [anon_sym_BSLASHfootcite] = ACTIONS(12341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12341), + [anon_sym_BSLASHtextcite] = ACTIONS(12341), + [anon_sym_BSLASHTextcite] = ACTIONS(12341), + [anon_sym_BSLASHsmartcite] = ACTIONS(12341), + [anon_sym_BSLASHSmartcite] = ACTIONS(12341), + [anon_sym_BSLASHsupercite] = ACTIONS(12341), + [anon_sym_BSLASHautocite] = ACTIONS(12341), + [anon_sym_BSLASHAutocite] = ACTIONS(12341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHvolcite] = ACTIONS(12341), + [anon_sym_BSLASHVolcite] = ACTIONS(12341), + [anon_sym_BSLASHpvolcite] = ACTIONS(12341), + [anon_sym_BSLASHPvolcite] = ACTIONS(12341), + [anon_sym_BSLASHfvolcite] = ACTIONS(12341), + [anon_sym_BSLASHftvolcite] = ACTIONS(12341), + [anon_sym_BSLASHsvolcite] = ACTIONS(12341), + [anon_sym_BSLASHSvolcite] = ACTIONS(12341), + [anon_sym_BSLASHtvolcite] = ACTIONS(12341), + [anon_sym_BSLASHTvolcite] = ACTIONS(12341), + [anon_sym_BSLASHavolcite] = ACTIONS(12341), + [anon_sym_BSLASHAvolcite] = ACTIONS(12341), + [anon_sym_BSLASHnotecite] = ACTIONS(12341), + [anon_sym_BSLASHpnotecite] = ACTIONS(12341), + [anon_sym_BSLASHPnotecite] = ACTIONS(12341), + [anon_sym_BSLASHfnotecite] = ACTIONS(12341), + [anon_sym_BSLASHusepackage] = ACTIONS(12341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12341), + [anon_sym_BSLASHinclude] = ACTIONS(12341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12341), + [anon_sym_BSLASHinput] = ACTIONS(12341), + [anon_sym_BSLASHsubfile] = ACTIONS(12341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12341), + [anon_sym_BSLASHbibliography] = ACTIONS(12341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12341), + [anon_sym_BSLASHincludesvg] = ACTIONS(12341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12341), + [anon_sym_BSLASHimport] = ACTIONS(12341), + [anon_sym_BSLASHsubimport] = ACTIONS(12341), + [anon_sym_BSLASHinputfrom] = ACTIONS(12341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12341), + [anon_sym_BSLASHincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHlabel] = ACTIONS(12341), + [anon_sym_BSLASHref] = ACTIONS(12341), + [anon_sym_BSLASHvref] = ACTIONS(12341), + [anon_sym_BSLASHVref] = ACTIONS(12341), + [anon_sym_BSLASHautoref] = ACTIONS(12341), + [anon_sym_BSLASHpageref] = ACTIONS(12341), + [anon_sym_BSLASHcref] = ACTIONS(12341), + [anon_sym_BSLASHCref] = ACTIONS(12341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnameCref] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHlabelcref] = ACTIONS(12341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12341), + [anon_sym_BSLASHeqref] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange] = ACTIONS(12341), + [anon_sym_BSLASHCrefrange] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewlabel] = ACTIONS(12341), + [anon_sym_BSLASHnewcommand] = ACTIONS(12341), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12341), + [anon_sym_BSLASHgls] = ACTIONS(12341), + [anon_sym_BSLASHGls] = ACTIONS(12341), + [anon_sym_BSLASHGLS] = ACTIONS(12341), + [anon_sym_BSLASHglspl] = ACTIONS(12341), + [anon_sym_BSLASHGlspl] = ACTIONS(12341), + [anon_sym_BSLASHGLSpl] = ACTIONS(12341), + [anon_sym_BSLASHglsdisp] = ACTIONS(12341), + [anon_sym_BSLASHglslink] = ACTIONS(12341), + [anon_sym_BSLASHglstext] = ACTIONS(12341), + [anon_sym_BSLASHGlstext] = ACTIONS(12341), + [anon_sym_BSLASHGLStext] = ACTIONS(12341), + [anon_sym_BSLASHglsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12341), + [anon_sym_BSLASHglsplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSplural] = ACTIONS(12341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHglsname] = ACTIONS(12341), + [anon_sym_BSLASHGlsname] = ACTIONS(12341), + [anon_sym_BSLASHGLSname] = ACTIONS(12341), + [anon_sym_BSLASHglssymbol] = ACTIONS(12341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12341), + [anon_sym_BSLASHglsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12341), + [anon_sym_BSLASHglsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12341), + [anon_sym_BSLASHglsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12341), + [anon_sym_BSLASHglsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12341), + [anon_sym_BSLASHglsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12341), + [anon_sym_BSLASHnewacronym] = ACTIONS(12341), + [anon_sym_BSLASHacrshort] = ACTIONS(12341), + [anon_sym_BSLASHAcrshort] = ACTIONS(12341), + [anon_sym_BSLASHACRshort] = ACTIONS(12341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12341), + [anon_sym_BSLASHacrlong] = ACTIONS(12341), + [anon_sym_BSLASHAcrlong] = ACTIONS(12341), + [anon_sym_BSLASHACRlong] = ACTIONS(12341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12341), + [anon_sym_BSLASHacrfull] = ACTIONS(12341), + [anon_sym_BSLASHAcrfull] = ACTIONS(12341), + [anon_sym_BSLASHACRfull] = ACTIONS(12341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12341), + [anon_sym_BSLASHacs] = ACTIONS(12341), + [anon_sym_BSLASHAcs] = ACTIONS(12341), + [anon_sym_BSLASHacsp] = ACTIONS(12341), + [anon_sym_BSLASHAcsp] = ACTIONS(12341), + [anon_sym_BSLASHacl] = ACTIONS(12341), + [anon_sym_BSLASHAcl] = ACTIONS(12341), + [anon_sym_BSLASHaclp] = ACTIONS(12341), + [anon_sym_BSLASHAclp] = ACTIONS(12341), + [anon_sym_BSLASHacf] = ACTIONS(12341), + [anon_sym_BSLASHAcf] = ACTIONS(12341), + [anon_sym_BSLASHacfp] = ACTIONS(12341), + [anon_sym_BSLASHAcfp] = ACTIONS(12341), + [anon_sym_BSLASHac] = ACTIONS(12341), + [anon_sym_BSLASHAc] = ACTIONS(12341), + [anon_sym_BSLASHacp] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12341), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12341), + [anon_sym_BSLASHcolor] = ACTIONS(12341), + [anon_sym_BSLASHcolorbox] = ACTIONS(12341), + [anon_sym_BSLASHtextcolor] = ACTIONS(12341), + [anon_sym_BSLASHpagecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12341), + }, + [1177] = { + [sym_generic_command_name] = ACTIONS(12353), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12353), + [aux_sym_subsection_token1] = ACTIONS(12353), + [aux_sym_subsubsection_token1] = ACTIONS(12353), + [aux_sym_paragraph_token1] = ACTIONS(12353), + [aux_sym_subparagraph_token1] = ACTIONS(12353), + [anon_sym_BSLASHitem] = ACTIONS(12353), + [anon_sym_LBRACK] = ACTIONS(12351), + [anon_sym_RBRACK] = ACTIONS(12351), + [anon_sym_LBRACE] = ACTIONS(12351), + [anon_sym_RBRACE] = ACTIONS(12351), + [anon_sym_LPAREN] = ACTIONS(12351), + [anon_sym_COMMA] = ACTIONS(12351), + [anon_sym_EQ] = ACTIONS(12351), + [sym_word] = ACTIONS(12351), + [sym_param] = ACTIONS(12351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12351), + [anon_sym_DOLLAR] = ACTIONS(12353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12351), + [anon_sym_BSLASHbegin] = ACTIONS(12353), + [anon_sym_BSLASHcaption] = ACTIONS(12353), + [anon_sym_BSLASHcite] = ACTIONS(12353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCite] = ACTIONS(12353), + [anon_sym_BSLASHnocite] = ACTIONS(12353), + [anon_sym_BSLASHcitet] = ACTIONS(12353), + [anon_sym_BSLASHcitep] = ACTIONS(12353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteauthor] = ACTIONS(12353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitetitle] = ACTIONS(12353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteyear] = ACTIONS(12353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitedate] = ACTIONS(12353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteurl] = ACTIONS(12353), + [anon_sym_BSLASHfullcite] = ACTIONS(12353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12353), + [anon_sym_BSLASHcitealt] = ACTIONS(12353), + [anon_sym_BSLASHcitealp] = ACTIONS(12353), + [anon_sym_BSLASHcitetext] = ACTIONS(12353), + [anon_sym_BSLASHparencite] = ACTIONS(12353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHParencite] = ACTIONS(12353), + [anon_sym_BSLASHfootcite] = ACTIONS(12353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12353), + [anon_sym_BSLASHtextcite] = ACTIONS(12353), + [anon_sym_BSLASHTextcite] = ACTIONS(12353), + [anon_sym_BSLASHsmartcite] = ACTIONS(12353), + [anon_sym_BSLASHSmartcite] = ACTIONS(12353), + [anon_sym_BSLASHsupercite] = ACTIONS(12353), + [anon_sym_BSLASHautocite] = ACTIONS(12353), + [anon_sym_BSLASHAutocite] = ACTIONS(12353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHvolcite] = ACTIONS(12353), + [anon_sym_BSLASHVolcite] = ACTIONS(12353), + [anon_sym_BSLASHpvolcite] = ACTIONS(12353), + [anon_sym_BSLASHPvolcite] = ACTIONS(12353), + [anon_sym_BSLASHfvolcite] = ACTIONS(12353), + [anon_sym_BSLASHftvolcite] = ACTIONS(12353), + [anon_sym_BSLASHsvolcite] = ACTIONS(12353), + [anon_sym_BSLASHSvolcite] = ACTIONS(12353), + [anon_sym_BSLASHtvolcite] = ACTIONS(12353), + [anon_sym_BSLASHTvolcite] = ACTIONS(12353), + [anon_sym_BSLASHavolcite] = ACTIONS(12353), + [anon_sym_BSLASHAvolcite] = ACTIONS(12353), + [anon_sym_BSLASHnotecite] = ACTIONS(12353), + [anon_sym_BSLASHpnotecite] = ACTIONS(12353), + [anon_sym_BSLASHPnotecite] = ACTIONS(12353), + [anon_sym_BSLASHfnotecite] = ACTIONS(12353), + [anon_sym_BSLASHusepackage] = ACTIONS(12353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12353), + [anon_sym_BSLASHinclude] = ACTIONS(12353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12353), + [anon_sym_BSLASHinput] = ACTIONS(12353), + [anon_sym_BSLASHsubfile] = ACTIONS(12353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12353), + [anon_sym_BSLASHbibliography] = ACTIONS(12353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12353), + [anon_sym_BSLASHincludesvg] = ACTIONS(12353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12353), + [anon_sym_BSLASHimport] = ACTIONS(12353), + [anon_sym_BSLASHsubimport] = ACTIONS(12353), + [anon_sym_BSLASHinputfrom] = ACTIONS(12353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12353), + [anon_sym_BSLASHincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHlabel] = ACTIONS(12353), + [anon_sym_BSLASHref] = ACTIONS(12353), + [anon_sym_BSLASHvref] = ACTIONS(12353), + [anon_sym_BSLASHVref] = ACTIONS(12353), + [anon_sym_BSLASHautoref] = ACTIONS(12353), + [anon_sym_BSLASHpageref] = ACTIONS(12353), + [anon_sym_BSLASHcref] = ACTIONS(12353), + [anon_sym_BSLASHCref] = ACTIONS(12353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnameCref] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHlabelcref] = ACTIONS(12353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12353), + [anon_sym_BSLASHeqref] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange] = ACTIONS(12353), + [anon_sym_BSLASHCrefrange] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewlabel] = ACTIONS(12353), + [anon_sym_BSLASHnewcommand] = ACTIONS(12353), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12353), + [anon_sym_BSLASHgls] = ACTIONS(12353), + [anon_sym_BSLASHGls] = ACTIONS(12353), + [anon_sym_BSLASHGLS] = ACTIONS(12353), + [anon_sym_BSLASHglspl] = ACTIONS(12353), + [anon_sym_BSLASHGlspl] = ACTIONS(12353), + [anon_sym_BSLASHGLSpl] = ACTIONS(12353), + [anon_sym_BSLASHglsdisp] = ACTIONS(12353), + [anon_sym_BSLASHglslink] = ACTIONS(12353), + [anon_sym_BSLASHglstext] = ACTIONS(12353), + [anon_sym_BSLASHGlstext] = ACTIONS(12353), + [anon_sym_BSLASHGLStext] = ACTIONS(12353), + [anon_sym_BSLASHglsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12353), + [anon_sym_BSLASHglsplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSplural] = ACTIONS(12353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHglsname] = ACTIONS(12353), + [anon_sym_BSLASHGlsname] = ACTIONS(12353), + [anon_sym_BSLASHGLSname] = ACTIONS(12353), + [anon_sym_BSLASHglssymbol] = ACTIONS(12353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12353), + [anon_sym_BSLASHglsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12353), + [anon_sym_BSLASHglsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12353), + [anon_sym_BSLASHglsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12353), + [anon_sym_BSLASHglsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12353), + [anon_sym_BSLASHglsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12353), + [anon_sym_BSLASHnewacronym] = ACTIONS(12353), + [anon_sym_BSLASHacrshort] = ACTIONS(12353), + [anon_sym_BSLASHAcrshort] = ACTIONS(12353), + [anon_sym_BSLASHACRshort] = ACTIONS(12353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12353), + [anon_sym_BSLASHacrlong] = ACTIONS(12353), + [anon_sym_BSLASHAcrlong] = ACTIONS(12353), + [anon_sym_BSLASHACRlong] = ACTIONS(12353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12353), + [anon_sym_BSLASHacrfull] = ACTIONS(12353), + [anon_sym_BSLASHAcrfull] = ACTIONS(12353), + [anon_sym_BSLASHACRfull] = ACTIONS(12353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12353), + [anon_sym_BSLASHacs] = ACTIONS(12353), + [anon_sym_BSLASHAcs] = ACTIONS(12353), + [anon_sym_BSLASHacsp] = ACTIONS(12353), + [anon_sym_BSLASHAcsp] = ACTIONS(12353), + [anon_sym_BSLASHacl] = ACTIONS(12353), + [anon_sym_BSLASHAcl] = ACTIONS(12353), + [anon_sym_BSLASHaclp] = ACTIONS(12353), + [anon_sym_BSLASHAclp] = ACTIONS(12353), + [anon_sym_BSLASHacf] = ACTIONS(12353), + [anon_sym_BSLASHAcf] = ACTIONS(12353), + [anon_sym_BSLASHacfp] = ACTIONS(12353), + [anon_sym_BSLASHAcfp] = ACTIONS(12353), + [anon_sym_BSLASHac] = ACTIONS(12353), + [anon_sym_BSLASHAc] = ACTIONS(12353), + [anon_sym_BSLASHacp] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12353), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12353), + [anon_sym_BSLASHcolor] = ACTIONS(12353), + [anon_sym_BSLASHcolorbox] = ACTIONS(12353), + [anon_sym_BSLASHtextcolor] = ACTIONS(12353), + [anon_sym_BSLASHpagecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12353), + }, + [1178] = { + [sym_generic_command_name] = ACTIONS(12357), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12357), + [aux_sym_subsection_token1] = ACTIONS(12357), + [aux_sym_subsubsection_token1] = ACTIONS(12357), + [aux_sym_paragraph_token1] = ACTIONS(12357), + [aux_sym_subparagraph_token1] = ACTIONS(12357), + [anon_sym_BSLASHitem] = ACTIONS(12357), + [anon_sym_LBRACK] = ACTIONS(12355), + [anon_sym_RBRACK] = ACTIONS(12355), + [anon_sym_LBRACE] = ACTIONS(12355), + [anon_sym_RBRACE] = ACTIONS(12355), + [anon_sym_LPAREN] = ACTIONS(12355), + [anon_sym_COMMA] = ACTIONS(12355), + [anon_sym_EQ] = ACTIONS(12355), + [sym_word] = ACTIONS(12355), + [sym_param] = ACTIONS(12355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12355), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12355), + [anon_sym_DOLLAR] = ACTIONS(12357), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12355), + [anon_sym_BSLASHbegin] = ACTIONS(12357), + [anon_sym_BSLASHcaption] = ACTIONS(12357), + [anon_sym_BSLASHcite] = ACTIONS(12357), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCite] = ACTIONS(12357), + [anon_sym_BSLASHnocite] = ACTIONS(12357), + [anon_sym_BSLASHcitet] = ACTIONS(12357), + [anon_sym_BSLASHcitep] = ACTIONS(12357), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteauthor] = ACTIONS(12357), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12357), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitetitle] = ACTIONS(12357), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteyear] = ACTIONS(12357), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitedate] = ACTIONS(12357), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteurl] = ACTIONS(12357), + [anon_sym_BSLASHfullcite] = ACTIONS(12357), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12357), + [anon_sym_BSLASHcitealt] = ACTIONS(12357), + [anon_sym_BSLASHcitealp] = ACTIONS(12357), + [anon_sym_BSLASHcitetext] = ACTIONS(12357), + [anon_sym_BSLASHparencite] = ACTIONS(12357), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHParencite] = ACTIONS(12357), + [anon_sym_BSLASHfootcite] = ACTIONS(12357), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12357), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12357), + [anon_sym_BSLASHtextcite] = ACTIONS(12357), + [anon_sym_BSLASHTextcite] = ACTIONS(12357), + [anon_sym_BSLASHsmartcite] = ACTIONS(12357), + [anon_sym_BSLASHSmartcite] = ACTIONS(12357), + [anon_sym_BSLASHsupercite] = ACTIONS(12357), + [anon_sym_BSLASHautocite] = ACTIONS(12357), + [anon_sym_BSLASHAutocite] = ACTIONS(12357), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHvolcite] = ACTIONS(12357), + [anon_sym_BSLASHVolcite] = ACTIONS(12357), + [anon_sym_BSLASHpvolcite] = ACTIONS(12357), + [anon_sym_BSLASHPvolcite] = ACTIONS(12357), + [anon_sym_BSLASHfvolcite] = ACTIONS(12357), + [anon_sym_BSLASHftvolcite] = ACTIONS(12357), + [anon_sym_BSLASHsvolcite] = ACTIONS(12357), + [anon_sym_BSLASHSvolcite] = ACTIONS(12357), + [anon_sym_BSLASHtvolcite] = ACTIONS(12357), + [anon_sym_BSLASHTvolcite] = ACTIONS(12357), + [anon_sym_BSLASHavolcite] = ACTIONS(12357), + [anon_sym_BSLASHAvolcite] = ACTIONS(12357), + [anon_sym_BSLASHnotecite] = ACTIONS(12357), + [anon_sym_BSLASHpnotecite] = ACTIONS(12357), + [anon_sym_BSLASHPnotecite] = ACTIONS(12357), + [anon_sym_BSLASHfnotecite] = ACTIONS(12357), + [anon_sym_BSLASHusepackage] = ACTIONS(12357), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12357), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12357), + [anon_sym_BSLASHinclude] = ACTIONS(12357), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12357), + [anon_sym_BSLASHinput] = ACTIONS(12357), + [anon_sym_BSLASHsubfile] = ACTIONS(12357), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12357), + [anon_sym_BSLASHbibliography] = ACTIONS(12357), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12357), + [anon_sym_BSLASHincludesvg] = ACTIONS(12357), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12357), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12357), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12357), + [anon_sym_BSLASHimport] = ACTIONS(12357), + [anon_sym_BSLASHsubimport] = ACTIONS(12357), + [anon_sym_BSLASHinputfrom] = ACTIONS(12357), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12357), + [anon_sym_BSLASHincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHlabel] = ACTIONS(12357), + [anon_sym_BSLASHref] = ACTIONS(12357), + [anon_sym_BSLASHvref] = ACTIONS(12357), + [anon_sym_BSLASHVref] = ACTIONS(12357), + [anon_sym_BSLASHautoref] = ACTIONS(12357), + [anon_sym_BSLASHpageref] = ACTIONS(12357), + [anon_sym_BSLASHcref] = ACTIONS(12357), + [anon_sym_BSLASHCref] = ACTIONS(12357), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnameCref] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHlabelcref] = ACTIONS(12357), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12357), + [anon_sym_BSLASHeqref] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange] = ACTIONS(12357), + [anon_sym_BSLASHCrefrange] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewlabel] = ACTIONS(12357), + [anon_sym_BSLASHnewcommand] = ACTIONS(12357), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12357), + [anon_sym_BSLASHgls] = ACTIONS(12357), + [anon_sym_BSLASHGls] = ACTIONS(12357), + [anon_sym_BSLASHGLS] = ACTIONS(12357), + [anon_sym_BSLASHglspl] = ACTIONS(12357), + [anon_sym_BSLASHGlspl] = ACTIONS(12357), + [anon_sym_BSLASHGLSpl] = ACTIONS(12357), + [anon_sym_BSLASHglsdisp] = ACTIONS(12357), + [anon_sym_BSLASHglslink] = ACTIONS(12357), + [anon_sym_BSLASHglstext] = ACTIONS(12357), + [anon_sym_BSLASHGlstext] = ACTIONS(12357), + [anon_sym_BSLASHGLStext] = ACTIONS(12357), + [anon_sym_BSLASHglsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12357), + [anon_sym_BSLASHglsplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSplural] = ACTIONS(12357), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHglsname] = ACTIONS(12357), + [anon_sym_BSLASHGlsname] = ACTIONS(12357), + [anon_sym_BSLASHGLSname] = ACTIONS(12357), + [anon_sym_BSLASHglssymbol] = ACTIONS(12357), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12357), + [anon_sym_BSLASHglsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12357), + [anon_sym_BSLASHglsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12357), + [anon_sym_BSLASHglsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12357), + [anon_sym_BSLASHglsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12357), + [anon_sym_BSLASHglsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12357), + [anon_sym_BSLASHnewacronym] = ACTIONS(12357), + [anon_sym_BSLASHacrshort] = ACTIONS(12357), + [anon_sym_BSLASHAcrshort] = ACTIONS(12357), + [anon_sym_BSLASHACRshort] = ACTIONS(12357), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12357), + [anon_sym_BSLASHacrlong] = ACTIONS(12357), + [anon_sym_BSLASHAcrlong] = ACTIONS(12357), + [anon_sym_BSLASHACRlong] = ACTIONS(12357), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12357), + [anon_sym_BSLASHacrfull] = ACTIONS(12357), + [anon_sym_BSLASHAcrfull] = ACTIONS(12357), + [anon_sym_BSLASHACRfull] = ACTIONS(12357), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12357), + [anon_sym_BSLASHacs] = ACTIONS(12357), + [anon_sym_BSLASHAcs] = ACTIONS(12357), + [anon_sym_BSLASHacsp] = ACTIONS(12357), + [anon_sym_BSLASHAcsp] = ACTIONS(12357), + [anon_sym_BSLASHacl] = ACTIONS(12357), + [anon_sym_BSLASHAcl] = ACTIONS(12357), + [anon_sym_BSLASHaclp] = ACTIONS(12357), + [anon_sym_BSLASHAclp] = ACTIONS(12357), + [anon_sym_BSLASHacf] = ACTIONS(12357), + [anon_sym_BSLASHAcf] = ACTIONS(12357), + [anon_sym_BSLASHacfp] = ACTIONS(12357), + [anon_sym_BSLASHAcfp] = ACTIONS(12357), + [anon_sym_BSLASHac] = ACTIONS(12357), + [anon_sym_BSLASHAc] = ACTIONS(12357), + [anon_sym_BSLASHacp] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12357), + [anon_sym_BSLASHcolor] = ACTIONS(12357), + [anon_sym_BSLASHcolorbox] = ACTIONS(12357), + [anon_sym_BSLASHtextcolor] = ACTIONS(12357), + [anon_sym_BSLASHpagecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12357), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12357), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12357), + }, + [1179] = { + [sym_generic_command_name] = ACTIONS(12361), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12361), + [aux_sym_subsection_token1] = ACTIONS(12361), + [aux_sym_subsubsection_token1] = ACTIONS(12361), + [aux_sym_paragraph_token1] = ACTIONS(12361), + [aux_sym_subparagraph_token1] = ACTIONS(12361), + [anon_sym_BSLASHitem] = ACTIONS(12361), + [anon_sym_LBRACK] = ACTIONS(12359), + [anon_sym_RBRACK] = ACTIONS(12359), + [anon_sym_LBRACE] = ACTIONS(12359), + [anon_sym_RBRACE] = ACTIONS(12359), + [anon_sym_LPAREN] = ACTIONS(12359), + [anon_sym_COMMA] = ACTIONS(12359), + [anon_sym_EQ] = ACTIONS(12359), + [sym_word] = ACTIONS(12359), + [sym_param] = ACTIONS(12359), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12359), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12359), + [anon_sym_DOLLAR] = ACTIONS(12361), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12359), + [anon_sym_BSLASHbegin] = ACTIONS(12361), + [anon_sym_BSLASHcaption] = ACTIONS(12361), + [anon_sym_BSLASHcite] = ACTIONS(12361), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCite] = ACTIONS(12361), + [anon_sym_BSLASHnocite] = ACTIONS(12361), + [anon_sym_BSLASHcitet] = ACTIONS(12361), + [anon_sym_BSLASHcitep] = ACTIONS(12361), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteauthor] = ACTIONS(12361), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12361), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitetitle] = ACTIONS(12361), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteyear] = ACTIONS(12361), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitedate] = ACTIONS(12361), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteurl] = ACTIONS(12361), + [anon_sym_BSLASHfullcite] = ACTIONS(12361), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12361), + [anon_sym_BSLASHcitealt] = ACTIONS(12361), + [anon_sym_BSLASHcitealp] = ACTIONS(12361), + [anon_sym_BSLASHcitetext] = ACTIONS(12361), + [anon_sym_BSLASHparencite] = ACTIONS(12361), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHParencite] = ACTIONS(12361), + [anon_sym_BSLASHfootcite] = ACTIONS(12361), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12361), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12361), + [anon_sym_BSLASHtextcite] = ACTIONS(12361), + [anon_sym_BSLASHTextcite] = ACTIONS(12361), + [anon_sym_BSLASHsmartcite] = ACTIONS(12361), + [anon_sym_BSLASHSmartcite] = ACTIONS(12361), + [anon_sym_BSLASHsupercite] = ACTIONS(12361), + [anon_sym_BSLASHautocite] = ACTIONS(12361), + [anon_sym_BSLASHAutocite] = ACTIONS(12361), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHvolcite] = ACTIONS(12361), + [anon_sym_BSLASHVolcite] = ACTIONS(12361), + [anon_sym_BSLASHpvolcite] = ACTIONS(12361), + [anon_sym_BSLASHPvolcite] = ACTIONS(12361), + [anon_sym_BSLASHfvolcite] = ACTIONS(12361), + [anon_sym_BSLASHftvolcite] = ACTIONS(12361), + [anon_sym_BSLASHsvolcite] = ACTIONS(12361), + [anon_sym_BSLASHSvolcite] = ACTIONS(12361), + [anon_sym_BSLASHtvolcite] = ACTIONS(12361), + [anon_sym_BSLASHTvolcite] = ACTIONS(12361), + [anon_sym_BSLASHavolcite] = ACTIONS(12361), + [anon_sym_BSLASHAvolcite] = ACTIONS(12361), + [anon_sym_BSLASHnotecite] = ACTIONS(12361), + [anon_sym_BSLASHpnotecite] = ACTIONS(12361), + [anon_sym_BSLASHPnotecite] = ACTIONS(12361), + [anon_sym_BSLASHfnotecite] = ACTIONS(12361), + [anon_sym_BSLASHusepackage] = ACTIONS(12361), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12361), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12361), + [anon_sym_BSLASHinclude] = ACTIONS(12361), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12361), + [anon_sym_BSLASHinput] = ACTIONS(12361), + [anon_sym_BSLASHsubfile] = ACTIONS(12361), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12361), + [anon_sym_BSLASHbibliography] = ACTIONS(12361), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12361), + [anon_sym_BSLASHincludesvg] = ACTIONS(12361), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12361), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12361), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12361), + [anon_sym_BSLASHimport] = ACTIONS(12361), + [anon_sym_BSLASHsubimport] = ACTIONS(12361), + [anon_sym_BSLASHinputfrom] = ACTIONS(12361), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12361), + [anon_sym_BSLASHincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHlabel] = ACTIONS(12361), + [anon_sym_BSLASHref] = ACTIONS(12361), + [anon_sym_BSLASHvref] = ACTIONS(12361), + [anon_sym_BSLASHVref] = ACTIONS(12361), + [anon_sym_BSLASHautoref] = ACTIONS(12361), + [anon_sym_BSLASHpageref] = ACTIONS(12361), + [anon_sym_BSLASHcref] = ACTIONS(12361), + [anon_sym_BSLASHCref] = ACTIONS(12361), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnameCref] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHlabelcref] = ACTIONS(12361), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12361), + [anon_sym_BSLASHeqref] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange] = ACTIONS(12361), + [anon_sym_BSLASHCrefrange] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewlabel] = ACTIONS(12361), + [anon_sym_BSLASHnewcommand] = ACTIONS(12361), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12361), + [anon_sym_BSLASHgls] = ACTIONS(12361), + [anon_sym_BSLASHGls] = ACTIONS(12361), + [anon_sym_BSLASHGLS] = ACTIONS(12361), + [anon_sym_BSLASHglspl] = ACTIONS(12361), + [anon_sym_BSLASHGlspl] = ACTIONS(12361), + [anon_sym_BSLASHGLSpl] = ACTIONS(12361), + [anon_sym_BSLASHglsdisp] = ACTIONS(12361), + [anon_sym_BSLASHglslink] = ACTIONS(12361), + [anon_sym_BSLASHglstext] = ACTIONS(12361), + [anon_sym_BSLASHGlstext] = ACTIONS(12361), + [anon_sym_BSLASHGLStext] = ACTIONS(12361), + [anon_sym_BSLASHglsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12361), + [anon_sym_BSLASHglsplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSplural] = ACTIONS(12361), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHglsname] = ACTIONS(12361), + [anon_sym_BSLASHGlsname] = ACTIONS(12361), + [anon_sym_BSLASHGLSname] = ACTIONS(12361), + [anon_sym_BSLASHglssymbol] = ACTIONS(12361), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12361), + [anon_sym_BSLASHglsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12361), + [anon_sym_BSLASHglsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12361), + [anon_sym_BSLASHglsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12361), + [anon_sym_BSLASHglsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12361), + [anon_sym_BSLASHglsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12361), + [anon_sym_BSLASHnewacronym] = ACTIONS(12361), + [anon_sym_BSLASHacrshort] = ACTIONS(12361), + [anon_sym_BSLASHAcrshort] = ACTIONS(12361), + [anon_sym_BSLASHACRshort] = ACTIONS(12361), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12361), + [anon_sym_BSLASHacrlong] = ACTIONS(12361), + [anon_sym_BSLASHAcrlong] = ACTIONS(12361), + [anon_sym_BSLASHACRlong] = ACTIONS(12361), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12361), + [anon_sym_BSLASHacrfull] = ACTIONS(12361), + [anon_sym_BSLASHAcrfull] = ACTIONS(12361), + [anon_sym_BSLASHACRfull] = ACTIONS(12361), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12361), + [anon_sym_BSLASHacs] = ACTIONS(12361), + [anon_sym_BSLASHAcs] = ACTIONS(12361), + [anon_sym_BSLASHacsp] = ACTIONS(12361), + [anon_sym_BSLASHAcsp] = ACTIONS(12361), + [anon_sym_BSLASHacl] = ACTIONS(12361), + [anon_sym_BSLASHAcl] = ACTIONS(12361), + [anon_sym_BSLASHaclp] = ACTIONS(12361), + [anon_sym_BSLASHAclp] = ACTIONS(12361), + [anon_sym_BSLASHacf] = ACTIONS(12361), + [anon_sym_BSLASHAcf] = ACTIONS(12361), + [anon_sym_BSLASHacfp] = ACTIONS(12361), + [anon_sym_BSLASHAcfp] = ACTIONS(12361), + [anon_sym_BSLASHac] = ACTIONS(12361), + [anon_sym_BSLASHAc] = ACTIONS(12361), + [anon_sym_BSLASHacp] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12361), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12361), + [anon_sym_BSLASHcolor] = ACTIONS(12361), + [anon_sym_BSLASHcolorbox] = ACTIONS(12361), + [anon_sym_BSLASHtextcolor] = ACTIONS(12361), + [anon_sym_BSLASHpagecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12361), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12361), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12361), + }, + [1180] = { + [sym_generic_command_name] = ACTIONS(12369), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12369), + [aux_sym_subsection_token1] = ACTIONS(12369), + [aux_sym_subsubsection_token1] = ACTIONS(12369), + [aux_sym_paragraph_token1] = ACTIONS(12369), + [aux_sym_subparagraph_token1] = ACTIONS(12369), + [anon_sym_BSLASHitem] = ACTIONS(12369), + [anon_sym_LBRACK] = ACTIONS(12367), + [anon_sym_RBRACK] = ACTIONS(12367), + [anon_sym_LBRACE] = ACTIONS(12367), + [anon_sym_RBRACE] = ACTIONS(12367), + [anon_sym_LPAREN] = ACTIONS(12367), + [anon_sym_COMMA] = ACTIONS(12367), + [anon_sym_EQ] = ACTIONS(12367), + [sym_word] = ACTIONS(12367), + [sym_param] = ACTIONS(12367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12367), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12367), + [anon_sym_DOLLAR] = ACTIONS(12369), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12367), + [anon_sym_BSLASHbegin] = ACTIONS(12369), + [anon_sym_BSLASHcaption] = ACTIONS(12369), + [anon_sym_BSLASHcite] = ACTIONS(12369), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCite] = ACTIONS(12369), + [anon_sym_BSLASHnocite] = ACTIONS(12369), + [anon_sym_BSLASHcitet] = ACTIONS(12369), + [anon_sym_BSLASHcitep] = ACTIONS(12369), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteauthor] = ACTIONS(12369), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12369), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitetitle] = ACTIONS(12369), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteyear] = ACTIONS(12369), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitedate] = ACTIONS(12369), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteurl] = ACTIONS(12369), + [anon_sym_BSLASHfullcite] = ACTIONS(12369), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12369), + [anon_sym_BSLASHcitealt] = ACTIONS(12369), + [anon_sym_BSLASHcitealp] = ACTIONS(12369), + [anon_sym_BSLASHcitetext] = ACTIONS(12369), + [anon_sym_BSLASHparencite] = ACTIONS(12369), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHParencite] = ACTIONS(12369), + [anon_sym_BSLASHfootcite] = ACTIONS(12369), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12369), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12369), + [anon_sym_BSLASHtextcite] = ACTIONS(12369), + [anon_sym_BSLASHTextcite] = ACTIONS(12369), + [anon_sym_BSLASHsmartcite] = ACTIONS(12369), + [anon_sym_BSLASHSmartcite] = ACTIONS(12369), + [anon_sym_BSLASHsupercite] = ACTIONS(12369), + [anon_sym_BSLASHautocite] = ACTIONS(12369), + [anon_sym_BSLASHAutocite] = ACTIONS(12369), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHvolcite] = ACTIONS(12369), + [anon_sym_BSLASHVolcite] = ACTIONS(12369), + [anon_sym_BSLASHpvolcite] = ACTIONS(12369), + [anon_sym_BSLASHPvolcite] = ACTIONS(12369), + [anon_sym_BSLASHfvolcite] = ACTIONS(12369), + [anon_sym_BSLASHftvolcite] = ACTIONS(12369), + [anon_sym_BSLASHsvolcite] = ACTIONS(12369), + [anon_sym_BSLASHSvolcite] = ACTIONS(12369), + [anon_sym_BSLASHtvolcite] = ACTIONS(12369), + [anon_sym_BSLASHTvolcite] = ACTIONS(12369), + [anon_sym_BSLASHavolcite] = ACTIONS(12369), + [anon_sym_BSLASHAvolcite] = ACTIONS(12369), + [anon_sym_BSLASHnotecite] = ACTIONS(12369), + [anon_sym_BSLASHpnotecite] = ACTIONS(12369), + [anon_sym_BSLASHPnotecite] = ACTIONS(12369), + [anon_sym_BSLASHfnotecite] = ACTIONS(12369), + [anon_sym_BSLASHusepackage] = ACTIONS(12369), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12369), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12369), + [anon_sym_BSLASHinclude] = ACTIONS(12369), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12369), + [anon_sym_BSLASHinput] = ACTIONS(12369), + [anon_sym_BSLASHsubfile] = ACTIONS(12369), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12369), + [anon_sym_BSLASHbibliography] = ACTIONS(12369), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12369), + [anon_sym_BSLASHincludesvg] = ACTIONS(12369), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12369), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12369), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12369), + [anon_sym_BSLASHimport] = ACTIONS(12369), + [anon_sym_BSLASHsubimport] = ACTIONS(12369), + [anon_sym_BSLASHinputfrom] = ACTIONS(12369), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12369), + [anon_sym_BSLASHincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHlabel] = ACTIONS(12369), + [anon_sym_BSLASHref] = ACTIONS(12369), + [anon_sym_BSLASHvref] = ACTIONS(12369), + [anon_sym_BSLASHVref] = ACTIONS(12369), + [anon_sym_BSLASHautoref] = ACTIONS(12369), + [anon_sym_BSLASHpageref] = ACTIONS(12369), + [anon_sym_BSLASHcref] = ACTIONS(12369), + [anon_sym_BSLASHCref] = ACTIONS(12369), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnameCref] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHlabelcref] = ACTIONS(12369), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12369), + [anon_sym_BSLASHeqref] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange] = ACTIONS(12369), + [anon_sym_BSLASHCrefrange] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewlabel] = ACTIONS(12369), + [anon_sym_BSLASHnewcommand] = ACTIONS(12369), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12369), + [anon_sym_BSLASHgls] = ACTIONS(12369), + [anon_sym_BSLASHGls] = ACTIONS(12369), + [anon_sym_BSLASHGLS] = ACTIONS(12369), + [anon_sym_BSLASHglspl] = ACTIONS(12369), + [anon_sym_BSLASHGlspl] = ACTIONS(12369), + [anon_sym_BSLASHGLSpl] = ACTIONS(12369), + [anon_sym_BSLASHglsdisp] = ACTIONS(12369), + [anon_sym_BSLASHglslink] = ACTIONS(12369), + [anon_sym_BSLASHglstext] = ACTIONS(12369), + [anon_sym_BSLASHGlstext] = ACTIONS(12369), + [anon_sym_BSLASHGLStext] = ACTIONS(12369), + [anon_sym_BSLASHglsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12369), + [anon_sym_BSLASHglsplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSplural] = ACTIONS(12369), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHglsname] = ACTIONS(12369), + [anon_sym_BSLASHGlsname] = ACTIONS(12369), + [anon_sym_BSLASHGLSname] = ACTIONS(12369), + [anon_sym_BSLASHglssymbol] = ACTIONS(12369), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12369), + [anon_sym_BSLASHglsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12369), + [anon_sym_BSLASHglsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12369), + [anon_sym_BSLASHglsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12369), + [anon_sym_BSLASHglsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12369), + [anon_sym_BSLASHglsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12369), + [anon_sym_BSLASHnewacronym] = ACTIONS(12369), + [anon_sym_BSLASHacrshort] = ACTIONS(12369), + [anon_sym_BSLASHAcrshort] = ACTIONS(12369), + [anon_sym_BSLASHACRshort] = ACTIONS(12369), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12369), + [anon_sym_BSLASHacrlong] = ACTIONS(12369), + [anon_sym_BSLASHAcrlong] = ACTIONS(12369), + [anon_sym_BSLASHACRlong] = ACTIONS(12369), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12369), + [anon_sym_BSLASHacrfull] = ACTIONS(12369), + [anon_sym_BSLASHAcrfull] = ACTIONS(12369), + [anon_sym_BSLASHACRfull] = ACTIONS(12369), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12369), + [anon_sym_BSLASHacs] = ACTIONS(12369), + [anon_sym_BSLASHAcs] = ACTIONS(12369), + [anon_sym_BSLASHacsp] = ACTIONS(12369), + [anon_sym_BSLASHAcsp] = ACTIONS(12369), + [anon_sym_BSLASHacl] = ACTIONS(12369), + [anon_sym_BSLASHAcl] = ACTIONS(12369), + [anon_sym_BSLASHaclp] = ACTIONS(12369), + [anon_sym_BSLASHAclp] = ACTIONS(12369), + [anon_sym_BSLASHacf] = ACTIONS(12369), + [anon_sym_BSLASHAcf] = ACTIONS(12369), + [anon_sym_BSLASHacfp] = ACTIONS(12369), + [anon_sym_BSLASHAcfp] = ACTIONS(12369), + [anon_sym_BSLASHac] = ACTIONS(12369), + [anon_sym_BSLASHAc] = ACTIONS(12369), + [anon_sym_BSLASHacp] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12369), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12369), + [anon_sym_BSLASHcolor] = ACTIONS(12369), + [anon_sym_BSLASHcolorbox] = ACTIONS(12369), + [anon_sym_BSLASHtextcolor] = ACTIONS(12369), + [anon_sym_BSLASHpagecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12369), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12369), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12369), + }, + [1181] = { + [sym_generic_command_name] = ACTIONS(12373), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12373), + [aux_sym_subsection_token1] = ACTIONS(12373), + [aux_sym_subsubsection_token1] = ACTIONS(12373), + [aux_sym_paragraph_token1] = ACTIONS(12373), + [aux_sym_subparagraph_token1] = ACTIONS(12373), + [anon_sym_BSLASHitem] = ACTIONS(12373), + [anon_sym_LBRACK] = ACTIONS(12371), + [anon_sym_RBRACK] = ACTIONS(12371), + [anon_sym_LBRACE] = ACTIONS(12371), + [anon_sym_RBRACE] = ACTIONS(12371), + [anon_sym_LPAREN] = ACTIONS(12371), + [anon_sym_COMMA] = ACTIONS(12371), + [anon_sym_EQ] = ACTIONS(12371), + [sym_word] = ACTIONS(12371), + [sym_param] = ACTIONS(12371), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12371), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12371), + [anon_sym_DOLLAR] = ACTIONS(12373), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12371), + [anon_sym_BSLASHbegin] = ACTIONS(12373), + [anon_sym_BSLASHcaption] = ACTIONS(12373), + [anon_sym_BSLASHcite] = ACTIONS(12373), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCite] = ACTIONS(12373), + [anon_sym_BSLASHnocite] = ACTIONS(12373), + [anon_sym_BSLASHcitet] = ACTIONS(12373), + [anon_sym_BSLASHcitep] = ACTIONS(12373), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteauthor] = ACTIONS(12373), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12373), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitetitle] = ACTIONS(12373), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteyear] = ACTIONS(12373), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitedate] = ACTIONS(12373), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteurl] = ACTIONS(12373), + [anon_sym_BSLASHfullcite] = ACTIONS(12373), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12373), + [anon_sym_BSLASHcitealt] = ACTIONS(12373), + [anon_sym_BSLASHcitealp] = ACTIONS(12373), + [anon_sym_BSLASHcitetext] = ACTIONS(12373), + [anon_sym_BSLASHparencite] = ACTIONS(12373), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHParencite] = ACTIONS(12373), + [anon_sym_BSLASHfootcite] = ACTIONS(12373), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12373), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12373), + [anon_sym_BSLASHtextcite] = ACTIONS(12373), + [anon_sym_BSLASHTextcite] = ACTIONS(12373), + [anon_sym_BSLASHsmartcite] = ACTIONS(12373), + [anon_sym_BSLASHSmartcite] = ACTIONS(12373), + [anon_sym_BSLASHsupercite] = ACTIONS(12373), + [anon_sym_BSLASHautocite] = ACTIONS(12373), + [anon_sym_BSLASHAutocite] = ACTIONS(12373), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHvolcite] = ACTIONS(12373), + [anon_sym_BSLASHVolcite] = ACTIONS(12373), + [anon_sym_BSLASHpvolcite] = ACTIONS(12373), + [anon_sym_BSLASHPvolcite] = ACTIONS(12373), + [anon_sym_BSLASHfvolcite] = ACTIONS(12373), + [anon_sym_BSLASHftvolcite] = ACTIONS(12373), + [anon_sym_BSLASHsvolcite] = ACTIONS(12373), + [anon_sym_BSLASHSvolcite] = ACTIONS(12373), + [anon_sym_BSLASHtvolcite] = ACTIONS(12373), + [anon_sym_BSLASHTvolcite] = ACTIONS(12373), + [anon_sym_BSLASHavolcite] = ACTIONS(12373), + [anon_sym_BSLASHAvolcite] = ACTIONS(12373), + [anon_sym_BSLASHnotecite] = ACTIONS(12373), + [anon_sym_BSLASHpnotecite] = ACTIONS(12373), + [anon_sym_BSLASHPnotecite] = ACTIONS(12373), + [anon_sym_BSLASHfnotecite] = ACTIONS(12373), + [anon_sym_BSLASHusepackage] = ACTIONS(12373), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12373), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12373), + [anon_sym_BSLASHinclude] = ACTIONS(12373), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12373), + [anon_sym_BSLASHinput] = ACTIONS(12373), + [anon_sym_BSLASHsubfile] = ACTIONS(12373), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12373), + [anon_sym_BSLASHbibliography] = ACTIONS(12373), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12373), + [anon_sym_BSLASHincludesvg] = ACTIONS(12373), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12373), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12373), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12373), + [anon_sym_BSLASHimport] = ACTIONS(12373), + [anon_sym_BSLASHsubimport] = ACTIONS(12373), + [anon_sym_BSLASHinputfrom] = ACTIONS(12373), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12373), + [anon_sym_BSLASHincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHlabel] = ACTIONS(12373), + [anon_sym_BSLASHref] = ACTIONS(12373), + [anon_sym_BSLASHvref] = ACTIONS(12373), + [anon_sym_BSLASHVref] = ACTIONS(12373), + [anon_sym_BSLASHautoref] = ACTIONS(12373), + [anon_sym_BSLASHpageref] = ACTIONS(12373), + [anon_sym_BSLASHcref] = ACTIONS(12373), + [anon_sym_BSLASHCref] = ACTIONS(12373), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnameCref] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHlabelcref] = ACTIONS(12373), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12373), + [anon_sym_BSLASHeqref] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange] = ACTIONS(12373), + [anon_sym_BSLASHCrefrange] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewlabel] = ACTIONS(12373), + [anon_sym_BSLASHnewcommand] = ACTIONS(12373), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12373), + [anon_sym_BSLASHgls] = ACTIONS(12373), + [anon_sym_BSLASHGls] = ACTIONS(12373), + [anon_sym_BSLASHGLS] = ACTIONS(12373), + [anon_sym_BSLASHglspl] = ACTIONS(12373), + [anon_sym_BSLASHGlspl] = ACTIONS(12373), + [anon_sym_BSLASHGLSpl] = ACTIONS(12373), + [anon_sym_BSLASHglsdisp] = ACTIONS(12373), + [anon_sym_BSLASHglslink] = ACTIONS(12373), + [anon_sym_BSLASHglstext] = ACTIONS(12373), + [anon_sym_BSLASHGlstext] = ACTIONS(12373), + [anon_sym_BSLASHGLStext] = ACTIONS(12373), + [anon_sym_BSLASHglsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12373), + [anon_sym_BSLASHglsplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSplural] = ACTIONS(12373), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHglsname] = ACTIONS(12373), + [anon_sym_BSLASHGlsname] = ACTIONS(12373), + [anon_sym_BSLASHGLSname] = ACTIONS(12373), + [anon_sym_BSLASHglssymbol] = ACTIONS(12373), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12373), + [anon_sym_BSLASHglsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12373), + [anon_sym_BSLASHglsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12373), + [anon_sym_BSLASHglsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12373), + [anon_sym_BSLASHglsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12373), + [anon_sym_BSLASHglsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12373), + [anon_sym_BSLASHnewacronym] = ACTIONS(12373), + [anon_sym_BSLASHacrshort] = ACTIONS(12373), + [anon_sym_BSLASHAcrshort] = ACTIONS(12373), + [anon_sym_BSLASHACRshort] = ACTIONS(12373), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12373), + [anon_sym_BSLASHacrlong] = ACTIONS(12373), + [anon_sym_BSLASHAcrlong] = ACTIONS(12373), + [anon_sym_BSLASHACRlong] = ACTIONS(12373), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12373), + [anon_sym_BSLASHacrfull] = ACTIONS(12373), + [anon_sym_BSLASHAcrfull] = ACTIONS(12373), + [anon_sym_BSLASHACRfull] = ACTIONS(12373), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12373), + [anon_sym_BSLASHacs] = ACTIONS(12373), + [anon_sym_BSLASHAcs] = ACTIONS(12373), + [anon_sym_BSLASHacsp] = ACTIONS(12373), + [anon_sym_BSLASHAcsp] = ACTIONS(12373), + [anon_sym_BSLASHacl] = ACTIONS(12373), + [anon_sym_BSLASHAcl] = ACTIONS(12373), + [anon_sym_BSLASHaclp] = ACTIONS(12373), + [anon_sym_BSLASHAclp] = ACTIONS(12373), + [anon_sym_BSLASHacf] = ACTIONS(12373), + [anon_sym_BSLASHAcf] = ACTIONS(12373), + [anon_sym_BSLASHacfp] = ACTIONS(12373), + [anon_sym_BSLASHAcfp] = ACTIONS(12373), + [anon_sym_BSLASHac] = ACTIONS(12373), + [anon_sym_BSLASHAc] = ACTIONS(12373), + [anon_sym_BSLASHacp] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12373), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12373), + [anon_sym_BSLASHcolor] = ACTIONS(12373), + [anon_sym_BSLASHcolorbox] = ACTIONS(12373), + [anon_sym_BSLASHtextcolor] = ACTIONS(12373), + [anon_sym_BSLASHpagecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12373), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12373), + }, + [1182] = { + [sym_generic_command_name] = ACTIONS(12377), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12377), + [aux_sym_subsection_token1] = ACTIONS(12377), + [aux_sym_subsubsection_token1] = ACTIONS(12377), + [aux_sym_paragraph_token1] = ACTIONS(12377), + [aux_sym_subparagraph_token1] = ACTIONS(12377), + [anon_sym_BSLASHitem] = ACTIONS(12377), + [anon_sym_LBRACK] = ACTIONS(12375), + [anon_sym_RBRACK] = ACTIONS(12375), + [anon_sym_LBRACE] = ACTIONS(12375), + [anon_sym_RBRACE] = ACTIONS(12375), + [anon_sym_LPAREN] = ACTIONS(12375), + [anon_sym_COMMA] = ACTIONS(12375), + [anon_sym_EQ] = ACTIONS(12375), + [sym_word] = ACTIONS(12375), + [sym_param] = ACTIONS(12375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12375), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12375), + [anon_sym_DOLLAR] = ACTIONS(12377), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12375), + [anon_sym_BSLASHbegin] = ACTIONS(12377), + [anon_sym_BSLASHcaption] = ACTIONS(12377), + [anon_sym_BSLASHcite] = ACTIONS(12377), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCite] = ACTIONS(12377), + [anon_sym_BSLASHnocite] = ACTIONS(12377), + [anon_sym_BSLASHcitet] = ACTIONS(12377), + [anon_sym_BSLASHcitep] = ACTIONS(12377), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteauthor] = ACTIONS(12377), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12377), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitetitle] = ACTIONS(12377), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteyear] = ACTIONS(12377), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitedate] = ACTIONS(12377), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteurl] = ACTIONS(12377), + [anon_sym_BSLASHfullcite] = ACTIONS(12377), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12377), + [anon_sym_BSLASHcitealt] = ACTIONS(12377), + [anon_sym_BSLASHcitealp] = ACTIONS(12377), + [anon_sym_BSLASHcitetext] = ACTIONS(12377), + [anon_sym_BSLASHparencite] = ACTIONS(12377), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHParencite] = ACTIONS(12377), + [anon_sym_BSLASHfootcite] = ACTIONS(12377), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12377), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12377), + [anon_sym_BSLASHtextcite] = ACTIONS(12377), + [anon_sym_BSLASHTextcite] = ACTIONS(12377), + [anon_sym_BSLASHsmartcite] = ACTIONS(12377), + [anon_sym_BSLASHSmartcite] = ACTIONS(12377), + [anon_sym_BSLASHsupercite] = ACTIONS(12377), + [anon_sym_BSLASHautocite] = ACTIONS(12377), + [anon_sym_BSLASHAutocite] = ACTIONS(12377), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHvolcite] = ACTIONS(12377), + [anon_sym_BSLASHVolcite] = ACTIONS(12377), + [anon_sym_BSLASHpvolcite] = ACTIONS(12377), + [anon_sym_BSLASHPvolcite] = ACTIONS(12377), + [anon_sym_BSLASHfvolcite] = ACTIONS(12377), + [anon_sym_BSLASHftvolcite] = ACTIONS(12377), + [anon_sym_BSLASHsvolcite] = ACTIONS(12377), + [anon_sym_BSLASHSvolcite] = ACTIONS(12377), + [anon_sym_BSLASHtvolcite] = ACTIONS(12377), + [anon_sym_BSLASHTvolcite] = ACTIONS(12377), + [anon_sym_BSLASHavolcite] = ACTIONS(12377), + [anon_sym_BSLASHAvolcite] = ACTIONS(12377), + [anon_sym_BSLASHnotecite] = ACTIONS(12377), + [anon_sym_BSLASHpnotecite] = ACTIONS(12377), + [anon_sym_BSLASHPnotecite] = ACTIONS(12377), + [anon_sym_BSLASHfnotecite] = ACTIONS(12377), + [anon_sym_BSLASHusepackage] = ACTIONS(12377), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12377), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12377), + [anon_sym_BSLASHinclude] = ACTIONS(12377), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12377), + [anon_sym_BSLASHinput] = ACTIONS(12377), + [anon_sym_BSLASHsubfile] = ACTIONS(12377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12377), + [anon_sym_BSLASHbibliography] = ACTIONS(12377), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12377), + [anon_sym_BSLASHincludesvg] = ACTIONS(12377), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12377), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12377), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12377), + [anon_sym_BSLASHimport] = ACTIONS(12377), + [anon_sym_BSLASHsubimport] = ACTIONS(12377), + [anon_sym_BSLASHinputfrom] = ACTIONS(12377), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12377), + [anon_sym_BSLASHincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHlabel] = ACTIONS(12377), + [anon_sym_BSLASHref] = ACTIONS(12377), + [anon_sym_BSLASHvref] = ACTIONS(12377), + [anon_sym_BSLASHVref] = ACTIONS(12377), + [anon_sym_BSLASHautoref] = ACTIONS(12377), + [anon_sym_BSLASHpageref] = ACTIONS(12377), + [anon_sym_BSLASHcref] = ACTIONS(12377), + [anon_sym_BSLASHCref] = ACTIONS(12377), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnameCref] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHlabelcref] = ACTIONS(12377), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12377), + [anon_sym_BSLASHeqref] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange] = ACTIONS(12377), + [anon_sym_BSLASHCrefrange] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewlabel] = ACTIONS(12377), + [anon_sym_BSLASHnewcommand] = ACTIONS(12377), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12377), + [anon_sym_BSLASHgls] = ACTIONS(12377), + [anon_sym_BSLASHGls] = ACTIONS(12377), + [anon_sym_BSLASHGLS] = ACTIONS(12377), + [anon_sym_BSLASHglspl] = ACTIONS(12377), + [anon_sym_BSLASHGlspl] = ACTIONS(12377), + [anon_sym_BSLASHGLSpl] = ACTIONS(12377), + [anon_sym_BSLASHglsdisp] = ACTIONS(12377), + [anon_sym_BSLASHglslink] = ACTIONS(12377), + [anon_sym_BSLASHglstext] = ACTIONS(12377), + [anon_sym_BSLASHGlstext] = ACTIONS(12377), + [anon_sym_BSLASHGLStext] = ACTIONS(12377), + [anon_sym_BSLASHglsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12377), + [anon_sym_BSLASHglsplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSplural] = ACTIONS(12377), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHglsname] = ACTIONS(12377), + [anon_sym_BSLASHGlsname] = ACTIONS(12377), + [anon_sym_BSLASHGLSname] = ACTIONS(12377), + [anon_sym_BSLASHglssymbol] = ACTIONS(12377), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12377), + [anon_sym_BSLASHglsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12377), + [anon_sym_BSLASHglsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12377), + [anon_sym_BSLASHglsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12377), + [anon_sym_BSLASHglsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12377), + [anon_sym_BSLASHglsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12377), + [anon_sym_BSLASHnewacronym] = ACTIONS(12377), + [anon_sym_BSLASHacrshort] = ACTIONS(12377), + [anon_sym_BSLASHAcrshort] = ACTIONS(12377), + [anon_sym_BSLASHACRshort] = ACTIONS(12377), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12377), + [anon_sym_BSLASHacrlong] = ACTIONS(12377), + [anon_sym_BSLASHAcrlong] = ACTIONS(12377), + [anon_sym_BSLASHACRlong] = ACTIONS(12377), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12377), + [anon_sym_BSLASHacrfull] = ACTIONS(12377), + [anon_sym_BSLASHAcrfull] = ACTIONS(12377), + [anon_sym_BSLASHACRfull] = ACTIONS(12377), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12377), + [anon_sym_BSLASHacs] = ACTIONS(12377), + [anon_sym_BSLASHAcs] = ACTIONS(12377), + [anon_sym_BSLASHacsp] = ACTIONS(12377), + [anon_sym_BSLASHAcsp] = ACTIONS(12377), + [anon_sym_BSLASHacl] = ACTIONS(12377), + [anon_sym_BSLASHAcl] = ACTIONS(12377), + [anon_sym_BSLASHaclp] = ACTIONS(12377), + [anon_sym_BSLASHAclp] = ACTIONS(12377), + [anon_sym_BSLASHacf] = ACTIONS(12377), + [anon_sym_BSLASHAcf] = ACTIONS(12377), + [anon_sym_BSLASHacfp] = ACTIONS(12377), + [anon_sym_BSLASHAcfp] = ACTIONS(12377), + [anon_sym_BSLASHac] = ACTIONS(12377), + [anon_sym_BSLASHAc] = ACTIONS(12377), + [anon_sym_BSLASHacp] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12377), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12377), + [anon_sym_BSLASHcolor] = ACTIONS(12377), + [anon_sym_BSLASHcolorbox] = ACTIONS(12377), + [anon_sym_BSLASHtextcolor] = ACTIONS(12377), + [anon_sym_BSLASHpagecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12377), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12377), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12377), + }, + [1183] = { + [sym_generic_command_name] = ACTIONS(12381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12381), + [aux_sym_subsection_token1] = ACTIONS(12381), + [aux_sym_subsubsection_token1] = ACTIONS(12381), + [aux_sym_paragraph_token1] = ACTIONS(12381), + [aux_sym_subparagraph_token1] = ACTIONS(12381), + [anon_sym_BSLASHitem] = ACTIONS(12381), + [anon_sym_LBRACK] = ACTIONS(12379), + [anon_sym_RBRACK] = ACTIONS(12379), + [anon_sym_LBRACE] = ACTIONS(12379), + [anon_sym_RBRACE] = ACTIONS(12379), + [anon_sym_LPAREN] = ACTIONS(12379), + [anon_sym_COMMA] = ACTIONS(12379), + [anon_sym_EQ] = ACTIONS(12379), + [sym_word] = ACTIONS(12379), + [sym_param] = ACTIONS(12379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12379), + [anon_sym_DOLLAR] = ACTIONS(12381), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12379), + [anon_sym_BSLASHbegin] = ACTIONS(12381), + [anon_sym_BSLASHcaption] = ACTIONS(12381), + [anon_sym_BSLASHcite] = ACTIONS(12381), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCite] = ACTIONS(12381), + [anon_sym_BSLASHnocite] = ACTIONS(12381), + [anon_sym_BSLASHcitet] = ACTIONS(12381), + [anon_sym_BSLASHcitep] = ACTIONS(12381), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteauthor] = ACTIONS(12381), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12381), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitetitle] = ACTIONS(12381), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteyear] = ACTIONS(12381), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitedate] = ACTIONS(12381), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteurl] = ACTIONS(12381), + [anon_sym_BSLASHfullcite] = ACTIONS(12381), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12381), + [anon_sym_BSLASHcitealt] = ACTIONS(12381), + [anon_sym_BSLASHcitealp] = ACTIONS(12381), + [anon_sym_BSLASHcitetext] = ACTIONS(12381), + [anon_sym_BSLASHparencite] = ACTIONS(12381), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHParencite] = ACTIONS(12381), + [anon_sym_BSLASHfootcite] = ACTIONS(12381), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12381), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12381), + [anon_sym_BSLASHtextcite] = ACTIONS(12381), + [anon_sym_BSLASHTextcite] = ACTIONS(12381), + [anon_sym_BSLASHsmartcite] = ACTIONS(12381), + [anon_sym_BSLASHSmartcite] = ACTIONS(12381), + [anon_sym_BSLASHsupercite] = ACTIONS(12381), + [anon_sym_BSLASHautocite] = ACTIONS(12381), + [anon_sym_BSLASHAutocite] = ACTIONS(12381), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHvolcite] = ACTIONS(12381), + [anon_sym_BSLASHVolcite] = ACTIONS(12381), + [anon_sym_BSLASHpvolcite] = ACTIONS(12381), + [anon_sym_BSLASHPvolcite] = ACTIONS(12381), + [anon_sym_BSLASHfvolcite] = ACTIONS(12381), + [anon_sym_BSLASHftvolcite] = ACTIONS(12381), + [anon_sym_BSLASHsvolcite] = ACTIONS(12381), + [anon_sym_BSLASHSvolcite] = ACTIONS(12381), + [anon_sym_BSLASHtvolcite] = ACTIONS(12381), + [anon_sym_BSLASHTvolcite] = ACTIONS(12381), + [anon_sym_BSLASHavolcite] = ACTIONS(12381), + [anon_sym_BSLASHAvolcite] = ACTIONS(12381), + [anon_sym_BSLASHnotecite] = ACTIONS(12381), + [anon_sym_BSLASHpnotecite] = ACTIONS(12381), + [anon_sym_BSLASHPnotecite] = ACTIONS(12381), + [anon_sym_BSLASHfnotecite] = ACTIONS(12381), + [anon_sym_BSLASHusepackage] = ACTIONS(12381), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12381), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12381), + [anon_sym_BSLASHinclude] = ACTIONS(12381), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12381), + [anon_sym_BSLASHinput] = ACTIONS(12381), + [anon_sym_BSLASHsubfile] = ACTIONS(12381), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12381), + [anon_sym_BSLASHbibliography] = ACTIONS(12381), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12381), + [anon_sym_BSLASHincludesvg] = ACTIONS(12381), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12381), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12381), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12381), + [anon_sym_BSLASHimport] = ACTIONS(12381), + [anon_sym_BSLASHsubimport] = ACTIONS(12381), + [anon_sym_BSLASHinputfrom] = ACTIONS(12381), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12381), + [anon_sym_BSLASHincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHlabel] = ACTIONS(12381), + [anon_sym_BSLASHref] = ACTIONS(12381), + [anon_sym_BSLASHvref] = ACTIONS(12381), + [anon_sym_BSLASHVref] = ACTIONS(12381), + [anon_sym_BSLASHautoref] = ACTIONS(12381), + [anon_sym_BSLASHpageref] = ACTIONS(12381), + [anon_sym_BSLASHcref] = ACTIONS(12381), + [anon_sym_BSLASHCref] = ACTIONS(12381), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnameCref] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHlabelcref] = ACTIONS(12381), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12381), + [anon_sym_BSLASHeqref] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange] = ACTIONS(12381), + [anon_sym_BSLASHCrefrange] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewlabel] = ACTIONS(12381), + [anon_sym_BSLASHnewcommand] = ACTIONS(12381), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12381), + [anon_sym_BSLASHgls] = ACTIONS(12381), + [anon_sym_BSLASHGls] = ACTIONS(12381), + [anon_sym_BSLASHGLS] = ACTIONS(12381), + [anon_sym_BSLASHglspl] = ACTIONS(12381), + [anon_sym_BSLASHGlspl] = ACTIONS(12381), + [anon_sym_BSLASHGLSpl] = ACTIONS(12381), + [anon_sym_BSLASHglsdisp] = ACTIONS(12381), + [anon_sym_BSLASHglslink] = ACTIONS(12381), + [anon_sym_BSLASHglstext] = ACTIONS(12381), + [anon_sym_BSLASHGlstext] = ACTIONS(12381), + [anon_sym_BSLASHGLStext] = ACTIONS(12381), + [anon_sym_BSLASHglsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12381), + [anon_sym_BSLASHglsplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSplural] = ACTIONS(12381), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHglsname] = ACTIONS(12381), + [anon_sym_BSLASHGlsname] = ACTIONS(12381), + [anon_sym_BSLASHGLSname] = ACTIONS(12381), + [anon_sym_BSLASHglssymbol] = ACTIONS(12381), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12381), + [anon_sym_BSLASHglsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12381), + [anon_sym_BSLASHglsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12381), + [anon_sym_BSLASHglsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12381), + [anon_sym_BSLASHglsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12381), + [anon_sym_BSLASHglsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12381), + [anon_sym_BSLASHnewacronym] = ACTIONS(12381), + [anon_sym_BSLASHacrshort] = ACTIONS(12381), + [anon_sym_BSLASHAcrshort] = ACTIONS(12381), + [anon_sym_BSLASHACRshort] = ACTIONS(12381), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12381), + [anon_sym_BSLASHacrlong] = ACTIONS(12381), + [anon_sym_BSLASHAcrlong] = ACTIONS(12381), + [anon_sym_BSLASHACRlong] = ACTIONS(12381), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12381), + [anon_sym_BSLASHacrfull] = ACTIONS(12381), + [anon_sym_BSLASHAcrfull] = ACTIONS(12381), + [anon_sym_BSLASHACRfull] = ACTIONS(12381), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12381), + [anon_sym_BSLASHacs] = ACTIONS(12381), + [anon_sym_BSLASHAcs] = ACTIONS(12381), + [anon_sym_BSLASHacsp] = ACTIONS(12381), + [anon_sym_BSLASHAcsp] = ACTIONS(12381), + [anon_sym_BSLASHacl] = ACTIONS(12381), + [anon_sym_BSLASHAcl] = ACTIONS(12381), + [anon_sym_BSLASHaclp] = ACTIONS(12381), + [anon_sym_BSLASHAclp] = ACTIONS(12381), + [anon_sym_BSLASHacf] = ACTIONS(12381), + [anon_sym_BSLASHAcf] = ACTIONS(12381), + [anon_sym_BSLASHacfp] = ACTIONS(12381), + [anon_sym_BSLASHAcfp] = ACTIONS(12381), + [anon_sym_BSLASHac] = ACTIONS(12381), + [anon_sym_BSLASHAc] = ACTIONS(12381), + [anon_sym_BSLASHacp] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12381), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12381), + [anon_sym_BSLASHcolor] = ACTIONS(12381), + [anon_sym_BSLASHcolorbox] = ACTIONS(12381), + [anon_sym_BSLASHtextcolor] = ACTIONS(12381), + [anon_sym_BSLASHpagecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12381), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12381), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12381), + }, + [1184] = { + [sym_generic_command_name] = ACTIONS(12393), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12393), + [aux_sym_subsection_token1] = ACTIONS(12393), + [aux_sym_subsubsection_token1] = ACTIONS(12393), + [aux_sym_paragraph_token1] = ACTIONS(12393), + [aux_sym_subparagraph_token1] = ACTIONS(12393), + [anon_sym_BSLASHitem] = ACTIONS(12393), + [anon_sym_LBRACK] = ACTIONS(12391), + [anon_sym_RBRACK] = ACTIONS(12391), + [anon_sym_LBRACE] = ACTIONS(12391), + [anon_sym_RBRACE] = ACTIONS(12391), + [anon_sym_LPAREN] = ACTIONS(12391), + [anon_sym_COMMA] = ACTIONS(12391), + [anon_sym_EQ] = ACTIONS(12391), + [sym_word] = ACTIONS(12391), + [sym_param] = ACTIONS(12391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12391), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12391), + [anon_sym_DOLLAR] = ACTIONS(12393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12391), + [anon_sym_BSLASHbegin] = ACTIONS(12393), + [anon_sym_BSLASHcaption] = ACTIONS(12393), + [anon_sym_BSLASHcite] = ACTIONS(12393), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCite] = ACTIONS(12393), + [anon_sym_BSLASHnocite] = ACTIONS(12393), + [anon_sym_BSLASHcitet] = ACTIONS(12393), + [anon_sym_BSLASHcitep] = ACTIONS(12393), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteauthor] = ACTIONS(12393), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12393), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitetitle] = ACTIONS(12393), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteyear] = ACTIONS(12393), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitedate] = ACTIONS(12393), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteurl] = ACTIONS(12393), + [anon_sym_BSLASHfullcite] = ACTIONS(12393), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12393), + [anon_sym_BSLASHcitealt] = ACTIONS(12393), + [anon_sym_BSLASHcitealp] = ACTIONS(12393), + [anon_sym_BSLASHcitetext] = ACTIONS(12393), + [anon_sym_BSLASHparencite] = ACTIONS(12393), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHParencite] = ACTIONS(12393), + [anon_sym_BSLASHfootcite] = ACTIONS(12393), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12393), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12393), + [anon_sym_BSLASHtextcite] = ACTIONS(12393), + [anon_sym_BSLASHTextcite] = ACTIONS(12393), + [anon_sym_BSLASHsmartcite] = ACTIONS(12393), + [anon_sym_BSLASHSmartcite] = ACTIONS(12393), + [anon_sym_BSLASHsupercite] = ACTIONS(12393), + [anon_sym_BSLASHautocite] = ACTIONS(12393), + [anon_sym_BSLASHAutocite] = ACTIONS(12393), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHvolcite] = ACTIONS(12393), + [anon_sym_BSLASHVolcite] = ACTIONS(12393), + [anon_sym_BSLASHpvolcite] = ACTIONS(12393), + [anon_sym_BSLASHPvolcite] = ACTIONS(12393), + [anon_sym_BSLASHfvolcite] = ACTIONS(12393), + [anon_sym_BSLASHftvolcite] = ACTIONS(12393), + [anon_sym_BSLASHsvolcite] = ACTIONS(12393), + [anon_sym_BSLASHSvolcite] = ACTIONS(12393), + [anon_sym_BSLASHtvolcite] = ACTIONS(12393), + [anon_sym_BSLASHTvolcite] = ACTIONS(12393), + [anon_sym_BSLASHavolcite] = ACTIONS(12393), + [anon_sym_BSLASHAvolcite] = ACTIONS(12393), + [anon_sym_BSLASHnotecite] = ACTIONS(12393), + [anon_sym_BSLASHpnotecite] = ACTIONS(12393), + [anon_sym_BSLASHPnotecite] = ACTIONS(12393), + [anon_sym_BSLASHfnotecite] = ACTIONS(12393), + [anon_sym_BSLASHusepackage] = ACTIONS(12393), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12393), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12393), + [anon_sym_BSLASHinclude] = ACTIONS(12393), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12393), + [anon_sym_BSLASHinput] = ACTIONS(12393), + [anon_sym_BSLASHsubfile] = ACTIONS(12393), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12393), + [anon_sym_BSLASHbibliography] = ACTIONS(12393), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12393), + [anon_sym_BSLASHincludesvg] = ACTIONS(12393), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12393), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12393), + [anon_sym_BSLASHimport] = ACTIONS(12393), + [anon_sym_BSLASHsubimport] = ACTIONS(12393), + [anon_sym_BSLASHinputfrom] = ACTIONS(12393), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12393), + [anon_sym_BSLASHincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHlabel] = ACTIONS(12393), + [anon_sym_BSLASHref] = ACTIONS(12393), + [anon_sym_BSLASHvref] = ACTIONS(12393), + [anon_sym_BSLASHVref] = ACTIONS(12393), + [anon_sym_BSLASHautoref] = ACTIONS(12393), + [anon_sym_BSLASHpageref] = ACTIONS(12393), + [anon_sym_BSLASHcref] = ACTIONS(12393), + [anon_sym_BSLASHCref] = ACTIONS(12393), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnameCref] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHlabelcref] = ACTIONS(12393), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12393), + [anon_sym_BSLASHeqref] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange] = ACTIONS(12393), + [anon_sym_BSLASHCrefrange] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewlabel] = ACTIONS(12393), + [anon_sym_BSLASHnewcommand] = ACTIONS(12393), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12393), + [anon_sym_BSLASHgls] = ACTIONS(12393), + [anon_sym_BSLASHGls] = ACTIONS(12393), + [anon_sym_BSLASHGLS] = ACTIONS(12393), + [anon_sym_BSLASHglspl] = ACTIONS(12393), + [anon_sym_BSLASHGlspl] = ACTIONS(12393), + [anon_sym_BSLASHGLSpl] = ACTIONS(12393), + [anon_sym_BSLASHglsdisp] = ACTIONS(12393), + [anon_sym_BSLASHglslink] = ACTIONS(12393), + [anon_sym_BSLASHglstext] = ACTIONS(12393), + [anon_sym_BSLASHGlstext] = ACTIONS(12393), + [anon_sym_BSLASHGLStext] = ACTIONS(12393), + [anon_sym_BSLASHglsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12393), + [anon_sym_BSLASHglsplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSplural] = ACTIONS(12393), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHglsname] = ACTIONS(12393), + [anon_sym_BSLASHGlsname] = ACTIONS(12393), + [anon_sym_BSLASHGLSname] = ACTIONS(12393), + [anon_sym_BSLASHglssymbol] = ACTIONS(12393), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12393), + [anon_sym_BSLASHglsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12393), + [anon_sym_BSLASHglsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12393), + [anon_sym_BSLASHglsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12393), + [anon_sym_BSLASHglsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12393), + [anon_sym_BSLASHglsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12393), + [anon_sym_BSLASHnewacronym] = ACTIONS(12393), + [anon_sym_BSLASHacrshort] = ACTIONS(12393), + [anon_sym_BSLASHAcrshort] = ACTIONS(12393), + [anon_sym_BSLASHACRshort] = ACTIONS(12393), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12393), + [anon_sym_BSLASHacrlong] = ACTIONS(12393), + [anon_sym_BSLASHAcrlong] = ACTIONS(12393), + [anon_sym_BSLASHACRlong] = ACTIONS(12393), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12393), + [anon_sym_BSLASHacrfull] = ACTIONS(12393), + [anon_sym_BSLASHAcrfull] = ACTIONS(12393), + [anon_sym_BSLASHACRfull] = ACTIONS(12393), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12393), + [anon_sym_BSLASHacs] = ACTIONS(12393), + [anon_sym_BSLASHAcs] = ACTIONS(12393), + [anon_sym_BSLASHacsp] = ACTIONS(12393), + [anon_sym_BSLASHAcsp] = ACTIONS(12393), + [anon_sym_BSLASHacl] = ACTIONS(12393), + [anon_sym_BSLASHAcl] = ACTIONS(12393), + [anon_sym_BSLASHaclp] = ACTIONS(12393), + [anon_sym_BSLASHAclp] = ACTIONS(12393), + [anon_sym_BSLASHacf] = ACTIONS(12393), + [anon_sym_BSLASHAcf] = ACTIONS(12393), + [anon_sym_BSLASHacfp] = ACTIONS(12393), + [anon_sym_BSLASHAcfp] = ACTIONS(12393), + [anon_sym_BSLASHac] = ACTIONS(12393), + [anon_sym_BSLASHAc] = ACTIONS(12393), + [anon_sym_BSLASHacp] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12393), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12393), + [anon_sym_BSLASHcolor] = ACTIONS(12393), + [anon_sym_BSLASHcolorbox] = ACTIONS(12393), + [anon_sym_BSLASHtextcolor] = ACTIONS(12393), + [anon_sym_BSLASHpagecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12393), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12393), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12393), + }, + [1185] = { + [sym_generic_command_name] = ACTIONS(12397), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12397), + [aux_sym_subsection_token1] = ACTIONS(12397), + [aux_sym_subsubsection_token1] = ACTIONS(12397), + [aux_sym_paragraph_token1] = ACTIONS(12397), + [aux_sym_subparagraph_token1] = ACTIONS(12397), + [anon_sym_BSLASHitem] = ACTIONS(12397), + [anon_sym_LBRACK] = ACTIONS(12395), + [anon_sym_RBRACK] = ACTIONS(12395), + [anon_sym_LBRACE] = ACTIONS(12395), + [anon_sym_RBRACE] = ACTIONS(12395), + [anon_sym_LPAREN] = ACTIONS(12395), + [anon_sym_COMMA] = ACTIONS(12395), + [anon_sym_EQ] = ACTIONS(12395), + [sym_word] = ACTIONS(12395), + [sym_param] = ACTIONS(12395), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12395), + [anon_sym_DOLLAR] = ACTIONS(12397), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12395), + [anon_sym_BSLASHbegin] = ACTIONS(12397), + [anon_sym_BSLASHcaption] = ACTIONS(12397), + [anon_sym_BSLASHcite] = ACTIONS(12397), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCite] = ACTIONS(12397), + [anon_sym_BSLASHnocite] = ACTIONS(12397), + [anon_sym_BSLASHcitet] = ACTIONS(12397), + [anon_sym_BSLASHcitep] = ACTIONS(12397), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteauthor] = ACTIONS(12397), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12397), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitetitle] = ACTIONS(12397), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteyear] = ACTIONS(12397), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitedate] = ACTIONS(12397), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteurl] = ACTIONS(12397), + [anon_sym_BSLASHfullcite] = ACTIONS(12397), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12397), + [anon_sym_BSLASHcitealt] = ACTIONS(12397), + [anon_sym_BSLASHcitealp] = ACTIONS(12397), + [anon_sym_BSLASHcitetext] = ACTIONS(12397), + [anon_sym_BSLASHparencite] = ACTIONS(12397), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHParencite] = ACTIONS(12397), + [anon_sym_BSLASHfootcite] = ACTIONS(12397), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12397), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12397), + [anon_sym_BSLASHtextcite] = ACTIONS(12397), + [anon_sym_BSLASHTextcite] = ACTIONS(12397), + [anon_sym_BSLASHsmartcite] = ACTIONS(12397), + [anon_sym_BSLASHSmartcite] = ACTIONS(12397), + [anon_sym_BSLASHsupercite] = ACTIONS(12397), + [anon_sym_BSLASHautocite] = ACTIONS(12397), + [anon_sym_BSLASHAutocite] = ACTIONS(12397), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHvolcite] = ACTIONS(12397), + [anon_sym_BSLASHVolcite] = ACTIONS(12397), + [anon_sym_BSLASHpvolcite] = ACTIONS(12397), + [anon_sym_BSLASHPvolcite] = ACTIONS(12397), + [anon_sym_BSLASHfvolcite] = ACTIONS(12397), + [anon_sym_BSLASHftvolcite] = ACTIONS(12397), + [anon_sym_BSLASHsvolcite] = ACTIONS(12397), + [anon_sym_BSLASHSvolcite] = ACTIONS(12397), + [anon_sym_BSLASHtvolcite] = ACTIONS(12397), + [anon_sym_BSLASHTvolcite] = ACTIONS(12397), + [anon_sym_BSLASHavolcite] = ACTIONS(12397), + [anon_sym_BSLASHAvolcite] = ACTIONS(12397), + [anon_sym_BSLASHnotecite] = ACTIONS(12397), + [anon_sym_BSLASHpnotecite] = ACTIONS(12397), + [anon_sym_BSLASHPnotecite] = ACTIONS(12397), + [anon_sym_BSLASHfnotecite] = ACTIONS(12397), + [anon_sym_BSLASHusepackage] = ACTIONS(12397), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12397), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12397), + [anon_sym_BSLASHinclude] = ACTIONS(12397), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12397), + [anon_sym_BSLASHinput] = ACTIONS(12397), + [anon_sym_BSLASHsubfile] = ACTIONS(12397), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12397), + [anon_sym_BSLASHbibliography] = ACTIONS(12397), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12397), + [anon_sym_BSLASHincludesvg] = ACTIONS(12397), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12397), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12397), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12397), + [anon_sym_BSLASHimport] = ACTIONS(12397), + [anon_sym_BSLASHsubimport] = ACTIONS(12397), + [anon_sym_BSLASHinputfrom] = ACTIONS(12397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12397), + [anon_sym_BSLASHincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHlabel] = ACTIONS(12397), + [anon_sym_BSLASHref] = ACTIONS(12397), + [anon_sym_BSLASHvref] = ACTIONS(12397), + [anon_sym_BSLASHVref] = ACTIONS(12397), + [anon_sym_BSLASHautoref] = ACTIONS(12397), + [anon_sym_BSLASHpageref] = ACTIONS(12397), + [anon_sym_BSLASHcref] = ACTIONS(12397), + [anon_sym_BSLASHCref] = ACTIONS(12397), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnameCref] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHlabelcref] = ACTIONS(12397), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12397), + [anon_sym_BSLASHeqref] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange] = ACTIONS(12397), + [anon_sym_BSLASHCrefrange] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewlabel] = ACTIONS(12397), + [anon_sym_BSLASHnewcommand] = ACTIONS(12397), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12397), + [anon_sym_BSLASHgls] = ACTIONS(12397), + [anon_sym_BSLASHGls] = ACTIONS(12397), + [anon_sym_BSLASHGLS] = ACTIONS(12397), + [anon_sym_BSLASHglspl] = ACTIONS(12397), + [anon_sym_BSLASHGlspl] = ACTIONS(12397), + [anon_sym_BSLASHGLSpl] = ACTIONS(12397), + [anon_sym_BSLASHglsdisp] = ACTIONS(12397), + [anon_sym_BSLASHglslink] = ACTIONS(12397), + [anon_sym_BSLASHglstext] = ACTIONS(12397), + [anon_sym_BSLASHGlstext] = ACTIONS(12397), + [anon_sym_BSLASHGLStext] = ACTIONS(12397), + [anon_sym_BSLASHglsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12397), + [anon_sym_BSLASHglsplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSplural] = ACTIONS(12397), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHglsname] = ACTIONS(12397), + [anon_sym_BSLASHGlsname] = ACTIONS(12397), + [anon_sym_BSLASHGLSname] = ACTIONS(12397), + [anon_sym_BSLASHglssymbol] = ACTIONS(12397), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12397), + [anon_sym_BSLASHglsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12397), + [anon_sym_BSLASHglsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12397), + [anon_sym_BSLASHglsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12397), + [anon_sym_BSLASHglsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12397), + [anon_sym_BSLASHglsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12397), + [anon_sym_BSLASHnewacronym] = ACTIONS(12397), + [anon_sym_BSLASHacrshort] = ACTIONS(12397), + [anon_sym_BSLASHAcrshort] = ACTIONS(12397), + [anon_sym_BSLASHACRshort] = ACTIONS(12397), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12397), + [anon_sym_BSLASHacrlong] = ACTIONS(12397), + [anon_sym_BSLASHAcrlong] = ACTIONS(12397), + [anon_sym_BSLASHACRlong] = ACTIONS(12397), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12397), + [anon_sym_BSLASHacrfull] = ACTIONS(12397), + [anon_sym_BSLASHAcrfull] = ACTIONS(12397), + [anon_sym_BSLASHACRfull] = ACTIONS(12397), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12397), + [anon_sym_BSLASHacs] = ACTIONS(12397), + [anon_sym_BSLASHAcs] = ACTIONS(12397), + [anon_sym_BSLASHacsp] = ACTIONS(12397), + [anon_sym_BSLASHAcsp] = ACTIONS(12397), + [anon_sym_BSLASHacl] = ACTIONS(12397), + [anon_sym_BSLASHAcl] = ACTIONS(12397), + [anon_sym_BSLASHaclp] = ACTIONS(12397), + [anon_sym_BSLASHAclp] = ACTIONS(12397), + [anon_sym_BSLASHacf] = ACTIONS(12397), + [anon_sym_BSLASHAcf] = ACTIONS(12397), + [anon_sym_BSLASHacfp] = ACTIONS(12397), + [anon_sym_BSLASHAcfp] = ACTIONS(12397), + [anon_sym_BSLASHac] = ACTIONS(12397), + [anon_sym_BSLASHAc] = ACTIONS(12397), + [anon_sym_BSLASHacp] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12397), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12397), + [anon_sym_BSLASHcolor] = ACTIONS(12397), + [anon_sym_BSLASHcolorbox] = ACTIONS(12397), + [anon_sym_BSLASHtextcolor] = ACTIONS(12397), + [anon_sym_BSLASHpagecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12397), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12397), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12397), + }, + [1186] = { + [sym_generic_command_name] = ACTIONS(12401), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12401), + [aux_sym_subsection_token1] = ACTIONS(12401), + [aux_sym_subsubsection_token1] = ACTIONS(12401), + [aux_sym_paragraph_token1] = ACTIONS(12401), + [aux_sym_subparagraph_token1] = ACTIONS(12401), + [anon_sym_BSLASHitem] = ACTIONS(12401), + [anon_sym_LBRACK] = ACTIONS(12399), + [anon_sym_RBRACK] = ACTIONS(12399), + [anon_sym_LBRACE] = ACTIONS(12399), + [anon_sym_RBRACE] = ACTIONS(12399), + [anon_sym_LPAREN] = ACTIONS(12399), + [anon_sym_COMMA] = ACTIONS(12399), + [anon_sym_EQ] = ACTIONS(12399), + [sym_word] = ACTIONS(12399), + [sym_param] = ACTIONS(12399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12399), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12399), + [anon_sym_DOLLAR] = ACTIONS(12401), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12399), + [anon_sym_BSLASHbegin] = ACTIONS(12401), + [anon_sym_BSLASHcaption] = ACTIONS(12401), + [anon_sym_BSLASHcite] = ACTIONS(12401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCite] = ACTIONS(12401), + [anon_sym_BSLASHnocite] = ACTIONS(12401), + [anon_sym_BSLASHcitet] = ACTIONS(12401), + [anon_sym_BSLASHcitep] = ACTIONS(12401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteauthor] = ACTIONS(12401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitetitle] = ACTIONS(12401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteyear] = ACTIONS(12401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitedate] = ACTIONS(12401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteurl] = ACTIONS(12401), + [anon_sym_BSLASHfullcite] = ACTIONS(12401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12401), + [anon_sym_BSLASHcitealt] = ACTIONS(12401), + [anon_sym_BSLASHcitealp] = ACTIONS(12401), + [anon_sym_BSLASHcitetext] = ACTIONS(12401), + [anon_sym_BSLASHparencite] = ACTIONS(12401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHParencite] = ACTIONS(12401), + [anon_sym_BSLASHfootcite] = ACTIONS(12401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12401), + [anon_sym_BSLASHtextcite] = ACTIONS(12401), + [anon_sym_BSLASHTextcite] = ACTIONS(12401), + [anon_sym_BSLASHsmartcite] = ACTIONS(12401), + [anon_sym_BSLASHSmartcite] = ACTIONS(12401), + [anon_sym_BSLASHsupercite] = ACTIONS(12401), + [anon_sym_BSLASHautocite] = ACTIONS(12401), + [anon_sym_BSLASHAutocite] = ACTIONS(12401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHvolcite] = ACTIONS(12401), + [anon_sym_BSLASHVolcite] = ACTIONS(12401), + [anon_sym_BSLASHpvolcite] = ACTIONS(12401), + [anon_sym_BSLASHPvolcite] = ACTIONS(12401), + [anon_sym_BSLASHfvolcite] = ACTIONS(12401), + [anon_sym_BSLASHftvolcite] = ACTIONS(12401), + [anon_sym_BSLASHsvolcite] = ACTIONS(12401), + [anon_sym_BSLASHSvolcite] = ACTIONS(12401), + [anon_sym_BSLASHtvolcite] = ACTIONS(12401), + [anon_sym_BSLASHTvolcite] = ACTIONS(12401), + [anon_sym_BSLASHavolcite] = ACTIONS(12401), + [anon_sym_BSLASHAvolcite] = ACTIONS(12401), + [anon_sym_BSLASHnotecite] = ACTIONS(12401), + [anon_sym_BSLASHpnotecite] = ACTIONS(12401), + [anon_sym_BSLASHPnotecite] = ACTIONS(12401), + [anon_sym_BSLASHfnotecite] = ACTIONS(12401), + [anon_sym_BSLASHusepackage] = ACTIONS(12401), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12401), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12401), + [anon_sym_BSLASHinclude] = ACTIONS(12401), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12401), + [anon_sym_BSLASHinput] = ACTIONS(12401), + [anon_sym_BSLASHsubfile] = ACTIONS(12401), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12401), + [anon_sym_BSLASHbibliography] = ACTIONS(12401), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12401), + [anon_sym_BSLASHincludesvg] = ACTIONS(12401), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12401), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12401), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12401), + [anon_sym_BSLASHimport] = ACTIONS(12401), + [anon_sym_BSLASHsubimport] = ACTIONS(12401), + [anon_sym_BSLASHinputfrom] = ACTIONS(12401), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12401), + [anon_sym_BSLASHincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHlabel] = ACTIONS(12401), + [anon_sym_BSLASHref] = ACTIONS(12401), + [anon_sym_BSLASHvref] = ACTIONS(12401), + [anon_sym_BSLASHVref] = ACTIONS(12401), + [anon_sym_BSLASHautoref] = ACTIONS(12401), + [anon_sym_BSLASHpageref] = ACTIONS(12401), + [anon_sym_BSLASHcref] = ACTIONS(12401), + [anon_sym_BSLASHCref] = ACTIONS(12401), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnameCref] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHlabelcref] = ACTIONS(12401), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12401), + [anon_sym_BSLASHeqref] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange] = ACTIONS(12401), + [anon_sym_BSLASHCrefrange] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewlabel] = ACTIONS(12401), + [anon_sym_BSLASHnewcommand] = ACTIONS(12401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12401), + [anon_sym_BSLASHgls] = ACTIONS(12401), + [anon_sym_BSLASHGls] = ACTIONS(12401), + [anon_sym_BSLASHGLS] = ACTIONS(12401), + [anon_sym_BSLASHglspl] = ACTIONS(12401), + [anon_sym_BSLASHGlspl] = ACTIONS(12401), + [anon_sym_BSLASHGLSpl] = ACTIONS(12401), + [anon_sym_BSLASHglsdisp] = ACTIONS(12401), + [anon_sym_BSLASHglslink] = ACTIONS(12401), + [anon_sym_BSLASHglstext] = ACTIONS(12401), + [anon_sym_BSLASHGlstext] = ACTIONS(12401), + [anon_sym_BSLASHGLStext] = ACTIONS(12401), + [anon_sym_BSLASHglsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12401), + [anon_sym_BSLASHglsplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSplural] = ACTIONS(12401), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHglsname] = ACTIONS(12401), + [anon_sym_BSLASHGlsname] = ACTIONS(12401), + [anon_sym_BSLASHGLSname] = ACTIONS(12401), + [anon_sym_BSLASHglssymbol] = ACTIONS(12401), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12401), + [anon_sym_BSLASHglsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12401), + [anon_sym_BSLASHglsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12401), + [anon_sym_BSLASHglsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12401), + [anon_sym_BSLASHglsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12401), + [anon_sym_BSLASHglsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12401), + [anon_sym_BSLASHnewacronym] = ACTIONS(12401), + [anon_sym_BSLASHacrshort] = ACTIONS(12401), + [anon_sym_BSLASHAcrshort] = ACTIONS(12401), + [anon_sym_BSLASHACRshort] = ACTIONS(12401), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12401), + [anon_sym_BSLASHacrlong] = ACTIONS(12401), + [anon_sym_BSLASHAcrlong] = ACTIONS(12401), + [anon_sym_BSLASHACRlong] = ACTIONS(12401), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12401), + [anon_sym_BSLASHacrfull] = ACTIONS(12401), + [anon_sym_BSLASHAcrfull] = ACTIONS(12401), + [anon_sym_BSLASHACRfull] = ACTIONS(12401), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12401), + [anon_sym_BSLASHacs] = ACTIONS(12401), + [anon_sym_BSLASHAcs] = ACTIONS(12401), + [anon_sym_BSLASHacsp] = ACTIONS(12401), + [anon_sym_BSLASHAcsp] = ACTIONS(12401), + [anon_sym_BSLASHacl] = ACTIONS(12401), + [anon_sym_BSLASHAcl] = ACTIONS(12401), + [anon_sym_BSLASHaclp] = ACTIONS(12401), + [anon_sym_BSLASHAclp] = ACTIONS(12401), + [anon_sym_BSLASHacf] = ACTIONS(12401), + [anon_sym_BSLASHAcf] = ACTIONS(12401), + [anon_sym_BSLASHacfp] = ACTIONS(12401), + [anon_sym_BSLASHAcfp] = ACTIONS(12401), + [anon_sym_BSLASHac] = ACTIONS(12401), + [anon_sym_BSLASHAc] = ACTIONS(12401), + [anon_sym_BSLASHacp] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12401), + [anon_sym_BSLASHcolor] = ACTIONS(12401), + [anon_sym_BSLASHcolorbox] = ACTIONS(12401), + [anon_sym_BSLASHtextcolor] = ACTIONS(12401), + [anon_sym_BSLASHpagecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12401), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12401), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12401), + }, + [1187] = { + [sym_generic_command_name] = ACTIONS(12405), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12405), + [aux_sym_subsection_token1] = ACTIONS(12405), + [aux_sym_subsubsection_token1] = ACTIONS(12405), + [aux_sym_paragraph_token1] = ACTIONS(12405), + [aux_sym_subparagraph_token1] = ACTIONS(12405), + [anon_sym_BSLASHitem] = ACTIONS(12405), + [anon_sym_LBRACK] = ACTIONS(12403), + [anon_sym_RBRACK] = ACTIONS(12403), + [anon_sym_LBRACE] = ACTIONS(12403), + [anon_sym_RBRACE] = ACTIONS(12403), + [anon_sym_LPAREN] = ACTIONS(12403), + [anon_sym_COMMA] = ACTIONS(12403), + [anon_sym_EQ] = ACTIONS(12403), + [sym_word] = ACTIONS(12403), + [sym_param] = ACTIONS(12403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12403), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12403), + [anon_sym_DOLLAR] = ACTIONS(12405), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12403), + [anon_sym_BSLASHbegin] = ACTIONS(12405), + [anon_sym_BSLASHcaption] = ACTIONS(12405), + [anon_sym_BSLASHcite] = ACTIONS(12405), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCite] = ACTIONS(12405), + [anon_sym_BSLASHnocite] = ACTIONS(12405), + [anon_sym_BSLASHcitet] = ACTIONS(12405), + [anon_sym_BSLASHcitep] = ACTIONS(12405), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteauthor] = ACTIONS(12405), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12405), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitetitle] = ACTIONS(12405), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteyear] = ACTIONS(12405), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitedate] = ACTIONS(12405), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteurl] = ACTIONS(12405), + [anon_sym_BSLASHfullcite] = ACTIONS(12405), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12405), + [anon_sym_BSLASHcitealt] = ACTIONS(12405), + [anon_sym_BSLASHcitealp] = ACTIONS(12405), + [anon_sym_BSLASHcitetext] = ACTIONS(12405), + [anon_sym_BSLASHparencite] = ACTIONS(12405), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHParencite] = ACTIONS(12405), + [anon_sym_BSLASHfootcite] = ACTIONS(12405), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12405), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12405), + [anon_sym_BSLASHtextcite] = ACTIONS(12405), + [anon_sym_BSLASHTextcite] = ACTIONS(12405), + [anon_sym_BSLASHsmartcite] = ACTIONS(12405), + [anon_sym_BSLASHSmartcite] = ACTIONS(12405), + [anon_sym_BSLASHsupercite] = ACTIONS(12405), + [anon_sym_BSLASHautocite] = ACTIONS(12405), + [anon_sym_BSLASHAutocite] = ACTIONS(12405), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHvolcite] = ACTIONS(12405), + [anon_sym_BSLASHVolcite] = ACTIONS(12405), + [anon_sym_BSLASHpvolcite] = ACTIONS(12405), + [anon_sym_BSLASHPvolcite] = ACTIONS(12405), + [anon_sym_BSLASHfvolcite] = ACTIONS(12405), + [anon_sym_BSLASHftvolcite] = ACTIONS(12405), + [anon_sym_BSLASHsvolcite] = ACTIONS(12405), + [anon_sym_BSLASHSvolcite] = ACTIONS(12405), + [anon_sym_BSLASHtvolcite] = ACTIONS(12405), + [anon_sym_BSLASHTvolcite] = ACTIONS(12405), + [anon_sym_BSLASHavolcite] = ACTIONS(12405), + [anon_sym_BSLASHAvolcite] = ACTIONS(12405), + [anon_sym_BSLASHnotecite] = ACTIONS(12405), + [anon_sym_BSLASHpnotecite] = ACTIONS(12405), + [anon_sym_BSLASHPnotecite] = ACTIONS(12405), + [anon_sym_BSLASHfnotecite] = ACTIONS(12405), + [anon_sym_BSLASHusepackage] = ACTIONS(12405), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12405), + [anon_sym_BSLASHinclude] = ACTIONS(12405), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12405), + [anon_sym_BSLASHinput] = ACTIONS(12405), + [anon_sym_BSLASHsubfile] = ACTIONS(12405), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12405), + [anon_sym_BSLASHbibliography] = ACTIONS(12405), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12405), + [anon_sym_BSLASHincludesvg] = ACTIONS(12405), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12405), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12405), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12405), + [anon_sym_BSLASHimport] = ACTIONS(12405), + [anon_sym_BSLASHsubimport] = ACTIONS(12405), + [anon_sym_BSLASHinputfrom] = ACTIONS(12405), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12405), + [anon_sym_BSLASHincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHlabel] = ACTIONS(12405), + [anon_sym_BSLASHref] = ACTIONS(12405), + [anon_sym_BSLASHvref] = ACTIONS(12405), + [anon_sym_BSLASHVref] = ACTIONS(12405), + [anon_sym_BSLASHautoref] = ACTIONS(12405), + [anon_sym_BSLASHpageref] = ACTIONS(12405), + [anon_sym_BSLASHcref] = ACTIONS(12405), + [anon_sym_BSLASHCref] = ACTIONS(12405), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnameCref] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHlabelcref] = ACTIONS(12405), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12405), + [anon_sym_BSLASHeqref] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange] = ACTIONS(12405), + [anon_sym_BSLASHCrefrange] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewlabel] = ACTIONS(12405), + [anon_sym_BSLASHnewcommand] = ACTIONS(12405), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12405), + [anon_sym_BSLASHgls] = ACTIONS(12405), + [anon_sym_BSLASHGls] = ACTIONS(12405), + [anon_sym_BSLASHGLS] = ACTIONS(12405), + [anon_sym_BSLASHglspl] = ACTIONS(12405), + [anon_sym_BSLASHGlspl] = ACTIONS(12405), + [anon_sym_BSLASHGLSpl] = ACTIONS(12405), + [anon_sym_BSLASHglsdisp] = ACTIONS(12405), + [anon_sym_BSLASHglslink] = ACTIONS(12405), + [anon_sym_BSLASHglstext] = ACTIONS(12405), + [anon_sym_BSLASHGlstext] = ACTIONS(12405), + [anon_sym_BSLASHGLStext] = ACTIONS(12405), + [anon_sym_BSLASHglsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12405), + [anon_sym_BSLASHglsplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSplural] = ACTIONS(12405), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHglsname] = ACTIONS(12405), + [anon_sym_BSLASHGlsname] = ACTIONS(12405), + [anon_sym_BSLASHGLSname] = ACTIONS(12405), + [anon_sym_BSLASHglssymbol] = ACTIONS(12405), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12405), + [anon_sym_BSLASHglsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12405), + [anon_sym_BSLASHglsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12405), + [anon_sym_BSLASHglsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12405), + [anon_sym_BSLASHglsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12405), + [anon_sym_BSLASHglsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12405), + [anon_sym_BSLASHnewacronym] = ACTIONS(12405), + [anon_sym_BSLASHacrshort] = ACTIONS(12405), + [anon_sym_BSLASHAcrshort] = ACTIONS(12405), + [anon_sym_BSLASHACRshort] = ACTIONS(12405), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12405), + [anon_sym_BSLASHacrlong] = ACTIONS(12405), + [anon_sym_BSLASHAcrlong] = ACTIONS(12405), + [anon_sym_BSLASHACRlong] = ACTIONS(12405), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12405), + [anon_sym_BSLASHacrfull] = ACTIONS(12405), + [anon_sym_BSLASHAcrfull] = ACTIONS(12405), + [anon_sym_BSLASHACRfull] = ACTIONS(12405), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12405), + [anon_sym_BSLASHacs] = ACTIONS(12405), + [anon_sym_BSLASHAcs] = ACTIONS(12405), + [anon_sym_BSLASHacsp] = ACTIONS(12405), + [anon_sym_BSLASHAcsp] = ACTIONS(12405), + [anon_sym_BSLASHacl] = ACTIONS(12405), + [anon_sym_BSLASHAcl] = ACTIONS(12405), + [anon_sym_BSLASHaclp] = ACTIONS(12405), + [anon_sym_BSLASHAclp] = ACTIONS(12405), + [anon_sym_BSLASHacf] = ACTIONS(12405), + [anon_sym_BSLASHAcf] = ACTIONS(12405), + [anon_sym_BSLASHacfp] = ACTIONS(12405), + [anon_sym_BSLASHAcfp] = ACTIONS(12405), + [anon_sym_BSLASHac] = ACTIONS(12405), + [anon_sym_BSLASHAc] = ACTIONS(12405), + [anon_sym_BSLASHacp] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12405), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12405), + [anon_sym_BSLASHcolor] = ACTIONS(12405), + [anon_sym_BSLASHcolorbox] = ACTIONS(12405), + [anon_sym_BSLASHtextcolor] = ACTIONS(12405), + [anon_sym_BSLASHpagecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12405), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12405), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12405), + }, + [1188] = { + [sym_generic_command_name] = ACTIONS(12409), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12409), + [aux_sym_subsection_token1] = ACTIONS(12409), + [aux_sym_subsubsection_token1] = ACTIONS(12409), + [aux_sym_paragraph_token1] = ACTIONS(12409), + [aux_sym_subparagraph_token1] = ACTIONS(12409), + [anon_sym_BSLASHitem] = ACTIONS(12409), + [anon_sym_LBRACK] = ACTIONS(12407), + [anon_sym_RBRACK] = ACTIONS(12407), + [anon_sym_LBRACE] = ACTIONS(12407), + [anon_sym_RBRACE] = ACTIONS(12407), + [anon_sym_LPAREN] = ACTIONS(12407), + [anon_sym_COMMA] = ACTIONS(12407), + [anon_sym_EQ] = ACTIONS(12407), + [sym_word] = ACTIONS(12407), + [sym_param] = ACTIONS(12407), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12407), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12407), + [anon_sym_DOLLAR] = ACTIONS(12409), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12407), + [anon_sym_BSLASHbegin] = ACTIONS(12409), + [anon_sym_BSLASHcaption] = ACTIONS(12409), + [anon_sym_BSLASHcite] = ACTIONS(12409), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCite] = ACTIONS(12409), + [anon_sym_BSLASHnocite] = ACTIONS(12409), + [anon_sym_BSLASHcitet] = ACTIONS(12409), + [anon_sym_BSLASHcitep] = ACTIONS(12409), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteauthor] = ACTIONS(12409), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12409), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitetitle] = ACTIONS(12409), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteyear] = ACTIONS(12409), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitedate] = ACTIONS(12409), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteurl] = ACTIONS(12409), + [anon_sym_BSLASHfullcite] = ACTIONS(12409), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12409), + [anon_sym_BSLASHcitealt] = ACTIONS(12409), + [anon_sym_BSLASHcitealp] = ACTIONS(12409), + [anon_sym_BSLASHcitetext] = ACTIONS(12409), + [anon_sym_BSLASHparencite] = ACTIONS(12409), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHParencite] = ACTIONS(12409), + [anon_sym_BSLASHfootcite] = ACTIONS(12409), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12409), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12409), + [anon_sym_BSLASHtextcite] = ACTIONS(12409), + [anon_sym_BSLASHTextcite] = ACTIONS(12409), + [anon_sym_BSLASHsmartcite] = ACTIONS(12409), + [anon_sym_BSLASHSmartcite] = ACTIONS(12409), + [anon_sym_BSLASHsupercite] = ACTIONS(12409), + [anon_sym_BSLASHautocite] = ACTIONS(12409), + [anon_sym_BSLASHAutocite] = ACTIONS(12409), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHvolcite] = ACTIONS(12409), + [anon_sym_BSLASHVolcite] = ACTIONS(12409), + [anon_sym_BSLASHpvolcite] = ACTIONS(12409), + [anon_sym_BSLASHPvolcite] = ACTIONS(12409), + [anon_sym_BSLASHfvolcite] = ACTIONS(12409), + [anon_sym_BSLASHftvolcite] = ACTIONS(12409), + [anon_sym_BSLASHsvolcite] = ACTIONS(12409), + [anon_sym_BSLASHSvolcite] = ACTIONS(12409), + [anon_sym_BSLASHtvolcite] = ACTIONS(12409), + [anon_sym_BSLASHTvolcite] = ACTIONS(12409), + [anon_sym_BSLASHavolcite] = ACTIONS(12409), + [anon_sym_BSLASHAvolcite] = ACTIONS(12409), + [anon_sym_BSLASHnotecite] = ACTIONS(12409), + [anon_sym_BSLASHpnotecite] = ACTIONS(12409), + [anon_sym_BSLASHPnotecite] = ACTIONS(12409), + [anon_sym_BSLASHfnotecite] = ACTIONS(12409), + [anon_sym_BSLASHusepackage] = ACTIONS(12409), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12409), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12409), + [anon_sym_BSLASHinclude] = ACTIONS(12409), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12409), + [anon_sym_BSLASHinput] = ACTIONS(12409), + [anon_sym_BSLASHsubfile] = ACTIONS(12409), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12409), + [anon_sym_BSLASHbibliography] = ACTIONS(12409), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12409), + [anon_sym_BSLASHincludesvg] = ACTIONS(12409), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12409), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12409), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12409), + [anon_sym_BSLASHimport] = ACTIONS(12409), + [anon_sym_BSLASHsubimport] = ACTIONS(12409), + [anon_sym_BSLASHinputfrom] = ACTIONS(12409), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12409), + [anon_sym_BSLASHincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHlabel] = ACTIONS(12409), + [anon_sym_BSLASHref] = ACTIONS(12409), + [anon_sym_BSLASHvref] = ACTIONS(12409), + [anon_sym_BSLASHVref] = ACTIONS(12409), + [anon_sym_BSLASHautoref] = ACTIONS(12409), + [anon_sym_BSLASHpageref] = ACTIONS(12409), + [anon_sym_BSLASHcref] = ACTIONS(12409), + [anon_sym_BSLASHCref] = ACTIONS(12409), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnameCref] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHlabelcref] = ACTIONS(12409), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12409), + [anon_sym_BSLASHeqref] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange] = ACTIONS(12409), + [anon_sym_BSLASHCrefrange] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewlabel] = ACTIONS(12409), + [anon_sym_BSLASHnewcommand] = ACTIONS(12409), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12409), + [anon_sym_BSLASHgls] = ACTIONS(12409), + [anon_sym_BSLASHGls] = ACTIONS(12409), + [anon_sym_BSLASHGLS] = ACTIONS(12409), + [anon_sym_BSLASHglspl] = ACTIONS(12409), + [anon_sym_BSLASHGlspl] = ACTIONS(12409), + [anon_sym_BSLASHGLSpl] = ACTIONS(12409), + [anon_sym_BSLASHglsdisp] = ACTIONS(12409), + [anon_sym_BSLASHglslink] = ACTIONS(12409), + [anon_sym_BSLASHglstext] = ACTIONS(12409), + [anon_sym_BSLASHGlstext] = ACTIONS(12409), + [anon_sym_BSLASHGLStext] = ACTIONS(12409), + [anon_sym_BSLASHglsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12409), + [anon_sym_BSLASHglsplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSplural] = ACTIONS(12409), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHglsname] = ACTIONS(12409), + [anon_sym_BSLASHGlsname] = ACTIONS(12409), + [anon_sym_BSLASHGLSname] = ACTIONS(12409), + [anon_sym_BSLASHglssymbol] = ACTIONS(12409), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12409), + [anon_sym_BSLASHglsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12409), + [anon_sym_BSLASHglsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12409), + [anon_sym_BSLASHglsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12409), + [anon_sym_BSLASHglsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12409), + [anon_sym_BSLASHglsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12409), + [anon_sym_BSLASHnewacronym] = ACTIONS(12409), + [anon_sym_BSLASHacrshort] = ACTIONS(12409), + [anon_sym_BSLASHAcrshort] = ACTIONS(12409), + [anon_sym_BSLASHACRshort] = ACTIONS(12409), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12409), + [anon_sym_BSLASHacrlong] = ACTIONS(12409), + [anon_sym_BSLASHAcrlong] = ACTIONS(12409), + [anon_sym_BSLASHACRlong] = ACTIONS(12409), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12409), + [anon_sym_BSLASHacrfull] = ACTIONS(12409), + [anon_sym_BSLASHAcrfull] = ACTIONS(12409), + [anon_sym_BSLASHACRfull] = ACTIONS(12409), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12409), + [anon_sym_BSLASHacs] = ACTIONS(12409), + [anon_sym_BSLASHAcs] = ACTIONS(12409), + [anon_sym_BSLASHacsp] = ACTIONS(12409), + [anon_sym_BSLASHAcsp] = ACTIONS(12409), + [anon_sym_BSLASHacl] = ACTIONS(12409), + [anon_sym_BSLASHAcl] = ACTIONS(12409), + [anon_sym_BSLASHaclp] = ACTIONS(12409), + [anon_sym_BSLASHAclp] = ACTIONS(12409), + [anon_sym_BSLASHacf] = ACTIONS(12409), + [anon_sym_BSLASHAcf] = ACTIONS(12409), + [anon_sym_BSLASHacfp] = ACTIONS(12409), + [anon_sym_BSLASHAcfp] = ACTIONS(12409), + [anon_sym_BSLASHac] = ACTIONS(12409), + [anon_sym_BSLASHAc] = ACTIONS(12409), + [anon_sym_BSLASHacp] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12409), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12409), + [anon_sym_BSLASHcolor] = ACTIONS(12409), + [anon_sym_BSLASHcolorbox] = ACTIONS(12409), + [anon_sym_BSLASHtextcolor] = ACTIONS(12409), + [anon_sym_BSLASHpagecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12409), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12409), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12409), + }, + [1189] = { + [sym_generic_command_name] = ACTIONS(12413), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12413), + [aux_sym_subsection_token1] = ACTIONS(12413), + [aux_sym_subsubsection_token1] = ACTIONS(12413), + [aux_sym_paragraph_token1] = ACTIONS(12413), + [aux_sym_subparagraph_token1] = ACTIONS(12413), + [anon_sym_BSLASHitem] = ACTIONS(12413), + [anon_sym_LBRACK] = ACTIONS(12411), + [anon_sym_RBRACK] = ACTIONS(12411), + [anon_sym_LBRACE] = ACTIONS(12411), + [anon_sym_RBRACE] = ACTIONS(12411), + [anon_sym_LPAREN] = ACTIONS(12411), + [anon_sym_COMMA] = ACTIONS(12411), + [anon_sym_EQ] = ACTIONS(12411), + [sym_word] = ACTIONS(12411), + [sym_param] = ACTIONS(12411), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12411), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12411), + [anon_sym_DOLLAR] = ACTIONS(12413), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12411), + [anon_sym_BSLASHbegin] = ACTIONS(12413), + [anon_sym_BSLASHcaption] = ACTIONS(12413), + [anon_sym_BSLASHcite] = ACTIONS(12413), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCite] = ACTIONS(12413), + [anon_sym_BSLASHnocite] = ACTIONS(12413), + [anon_sym_BSLASHcitet] = ACTIONS(12413), + [anon_sym_BSLASHcitep] = ACTIONS(12413), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteauthor] = ACTIONS(12413), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12413), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitetitle] = ACTIONS(12413), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteyear] = ACTIONS(12413), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitedate] = ACTIONS(12413), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteurl] = ACTIONS(12413), + [anon_sym_BSLASHfullcite] = ACTIONS(12413), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12413), + [anon_sym_BSLASHcitealt] = ACTIONS(12413), + [anon_sym_BSLASHcitealp] = ACTIONS(12413), + [anon_sym_BSLASHcitetext] = ACTIONS(12413), + [anon_sym_BSLASHparencite] = ACTIONS(12413), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHParencite] = ACTIONS(12413), + [anon_sym_BSLASHfootcite] = ACTIONS(12413), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12413), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12413), + [anon_sym_BSLASHtextcite] = ACTIONS(12413), + [anon_sym_BSLASHTextcite] = ACTIONS(12413), + [anon_sym_BSLASHsmartcite] = ACTIONS(12413), + [anon_sym_BSLASHSmartcite] = ACTIONS(12413), + [anon_sym_BSLASHsupercite] = ACTIONS(12413), + [anon_sym_BSLASHautocite] = ACTIONS(12413), + [anon_sym_BSLASHAutocite] = ACTIONS(12413), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHvolcite] = ACTIONS(12413), + [anon_sym_BSLASHVolcite] = ACTIONS(12413), + [anon_sym_BSLASHpvolcite] = ACTIONS(12413), + [anon_sym_BSLASHPvolcite] = ACTIONS(12413), + [anon_sym_BSLASHfvolcite] = ACTIONS(12413), + [anon_sym_BSLASHftvolcite] = ACTIONS(12413), + [anon_sym_BSLASHsvolcite] = ACTIONS(12413), + [anon_sym_BSLASHSvolcite] = ACTIONS(12413), + [anon_sym_BSLASHtvolcite] = ACTIONS(12413), + [anon_sym_BSLASHTvolcite] = ACTIONS(12413), + [anon_sym_BSLASHavolcite] = ACTIONS(12413), + [anon_sym_BSLASHAvolcite] = ACTIONS(12413), + [anon_sym_BSLASHnotecite] = ACTIONS(12413), + [anon_sym_BSLASHpnotecite] = ACTIONS(12413), + [anon_sym_BSLASHPnotecite] = ACTIONS(12413), + [anon_sym_BSLASHfnotecite] = ACTIONS(12413), + [anon_sym_BSLASHusepackage] = ACTIONS(12413), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12413), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12413), + [anon_sym_BSLASHinclude] = ACTIONS(12413), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12413), + [anon_sym_BSLASHinput] = ACTIONS(12413), + [anon_sym_BSLASHsubfile] = ACTIONS(12413), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12413), + [anon_sym_BSLASHbibliography] = ACTIONS(12413), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12413), + [anon_sym_BSLASHincludesvg] = ACTIONS(12413), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12413), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12413), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12413), + [anon_sym_BSLASHimport] = ACTIONS(12413), + [anon_sym_BSLASHsubimport] = ACTIONS(12413), + [anon_sym_BSLASHinputfrom] = ACTIONS(12413), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12413), + [anon_sym_BSLASHincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHlabel] = ACTIONS(12413), + [anon_sym_BSLASHref] = ACTIONS(12413), + [anon_sym_BSLASHvref] = ACTIONS(12413), + [anon_sym_BSLASHVref] = ACTIONS(12413), + [anon_sym_BSLASHautoref] = ACTIONS(12413), + [anon_sym_BSLASHpageref] = ACTIONS(12413), + [anon_sym_BSLASHcref] = ACTIONS(12413), + [anon_sym_BSLASHCref] = ACTIONS(12413), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnameCref] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHlabelcref] = ACTIONS(12413), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12413), + [anon_sym_BSLASHeqref] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange] = ACTIONS(12413), + [anon_sym_BSLASHCrefrange] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewlabel] = ACTIONS(12413), + [anon_sym_BSLASHnewcommand] = ACTIONS(12413), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12413), + [anon_sym_BSLASHgls] = ACTIONS(12413), + [anon_sym_BSLASHGls] = ACTIONS(12413), + [anon_sym_BSLASHGLS] = ACTIONS(12413), + [anon_sym_BSLASHglspl] = ACTIONS(12413), + [anon_sym_BSLASHGlspl] = ACTIONS(12413), + [anon_sym_BSLASHGLSpl] = ACTIONS(12413), + [anon_sym_BSLASHglsdisp] = ACTIONS(12413), + [anon_sym_BSLASHglslink] = ACTIONS(12413), + [anon_sym_BSLASHglstext] = ACTIONS(12413), + [anon_sym_BSLASHGlstext] = ACTIONS(12413), + [anon_sym_BSLASHGLStext] = ACTIONS(12413), + [anon_sym_BSLASHglsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12413), + [anon_sym_BSLASHglsplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSplural] = ACTIONS(12413), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHglsname] = ACTIONS(12413), + [anon_sym_BSLASHGlsname] = ACTIONS(12413), + [anon_sym_BSLASHGLSname] = ACTIONS(12413), + [anon_sym_BSLASHglssymbol] = ACTIONS(12413), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12413), + [anon_sym_BSLASHglsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12413), + [anon_sym_BSLASHglsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12413), + [anon_sym_BSLASHglsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12413), + [anon_sym_BSLASHglsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12413), + [anon_sym_BSLASHglsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12413), + [anon_sym_BSLASHnewacronym] = ACTIONS(12413), + [anon_sym_BSLASHacrshort] = ACTIONS(12413), + [anon_sym_BSLASHAcrshort] = ACTIONS(12413), + [anon_sym_BSLASHACRshort] = ACTIONS(12413), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12413), + [anon_sym_BSLASHacrlong] = ACTIONS(12413), + [anon_sym_BSLASHAcrlong] = ACTIONS(12413), + [anon_sym_BSLASHACRlong] = ACTIONS(12413), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12413), + [anon_sym_BSLASHacrfull] = ACTIONS(12413), + [anon_sym_BSLASHAcrfull] = ACTIONS(12413), + [anon_sym_BSLASHACRfull] = ACTIONS(12413), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12413), + [anon_sym_BSLASHacs] = ACTIONS(12413), + [anon_sym_BSLASHAcs] = ACTIONS(12413), + [anon_sym_BSLASHacsp] = ACTIONS(12413), + [anon_sym_BSLASHAcsp] = ACTIONS(12413), + [anon_sym_BSLASHacl] = ACTIONS(12413), + [anon_sym_BSLASHAcl] = ACTIONS(12413), + [anon_sym_BSLASHaclp] = ACTIONS(12413), + [anon_sym_BSLASHAclp] = ACTIONS(12413), + [anon_sym_BSLASHacf] = ACTIONS(12413), + [anon_sym_BSLASHAcf] = ACTIONS(12413), + [anon_sym_BSLASHacfp] = ACTIONS(12413), + [anon_sym_BSLASHAcfp] = ACTIONS(12413), + [anon_sym_BSLASHac] = ACTIONS(12413), + [anon_sym_BSLASHAc] = ACTIONS(12413), + [anon_sym_BSLASHacp] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12413), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12413), + [anon_sym_BSLASHcolor] = ACTIONS(12413), + [anon_sym_BSLASHcolorbox] = ACTIONS(12413), + [anon_sym_BSLASHtextcolor] = ACTIONS(12413), + [anon_sym_BSLASHpagecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12413), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12413), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12413), + }, + [1190] = { + [sym_generic_command_name] = ACTIONS(12421), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12421), + [aux_sym_subsection_token1] = ACTIONS(12421), + [aux_sym_subsubsection_token1] = ACTIONS(12421), + [aux_sym_paragraph_token1] = ACTIONS(12421), + [aux_sym_subparagraph_token1] = ACTIONS(12421), + [anon_sym_BSLASHitem] = ACTIONS(12421), + [anon_sym_LBRACK] = ACTIONS(12419), + [anon_sym_RBRACK] = ACTIONS(12419), + [anon_sym_LBRACE] = ACTIONS(12419), + [anon_sym_RBRACE] = ACTIONS(12419), + [anon_sym_LPAREN] = ACTIONS(12419), + [anon_sym_COMMA] = ACTIONS(12419), + [anon_sym_EQ] = ACTIONS(12419), + [sym_word] = ACTIONS(12419), + [sym_param] = ACTIONS(12419), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12419), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12419), + [anon_sym_DOLLAR] = ACTIONS(12421), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12419), + [anon_sym_BSLASHbegin] = ACTIONS(12421), + [anon_sym_BSLASHcaption] = ACTIONS(12421), + [anon_sym_BSLASHcite] = ACTIONS(12421), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCite] = ACTIONS(12421), + [anon_sym_BSLASHnocite] = ACTIONS(12421), + [anon_sym_BSLASHcitet] = ACTIONS(12421), + [anon_sym_BSLASHcitep] = ACTIONS(12421), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteauthor] = ACTIONS(12421), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12421), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitetitle] = ACTIONS(12421), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteyear] = ACTIONS(12421), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitedate] = ACTIONS(12421), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteurl] = ACTIONS(12421), + [anon_sym_BSLASHfullcite] = ACTIONS(12421), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12421), + [anon_sym_BSLASHcitealt] = ACTIONS(12421), + [anon_sym_BSLASHcitealp] = ACTIONS(12421), + [anon_sym_BSLASHcitetext] = ACTIONS(12421), + [anon_sym_BSLASHparencite] = ACTIONS(12421), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHParencite] = ACTIONS(12421), + [anon_sym_BSLASHfootcite] = ACTIONS(12421), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12421), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12421), + [anon_sym_BSLASHtextcite] = ACTIONS(12421), + [anon_sym_BSLASHTextcite] = ACTIONS(12421), + [anon_sym_BSLASHsmartcite] = ACTIONS(12421), + [anon_sym_BSLASHSmartcite] = ACTIONS(12421), + [anon_sym_BSLASHsupercite] = ACTIONS(12421), + [anon_sym_BSLASHautocite] = ACTIONS(12421), + [anon_sym_BSLASHAutocite] = ACTIONS(12421), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHvolcite] = ACTIONS(12421), + [anon_sym_BSLASHVolcite] = ACTIONS(12421), + [anon_sym_BSLASHpvolcite] = ACTIONS(12421), + [anon_sym_BSLASHPvolcite] = ACTIONS(12421), + [anon_sym_BSLASHfvolcite] = ACTIONS(12421), + [anon_sym_BSLASHftvolcite] = ACTIONS(12421), + [anon_sym_BSLASHsvolcite] = ACTIONS(12421), + [anon_sym_BSLASHSvolcite] = ACTIONS(12421), + [anon_sym_BSLASHtvolcite] = ACTIONS(12421), + [anon_sym_BSLASHTvolcite] = ACTIONS(12421), + [anon_sym_BSLASHavolcite] = ACTIONS(12421), + [anon_sym_BSLASHAvolcite] = ACTIONS(12421), + [anon_sym_BSLASHnotecite] = ACTIONS(12421), + [anon_sym_BSLASHpnotecite] = ACTIONS(12421), + [anon_sym_BSLASHPnotecite] = ACTIONS(12421), + [anon_sym_BSLASHfnotecite] = ACTIONS(12421), + [anon_sym_BSLASHusepackage] = ACTIONS(12421), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12421), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12421), + [anon_sym_BSLASHinclude] = ACTIONS(12421), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12421), + [anon_sym_BSLASHinput] = ACTIONS(12421), + [anon_sym_BSLASHsubfile] = ACTIONS(12421), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12421), + [anon_sym_BSLASHbibliography] = ACTIONS(12421), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12421), + [anon_sym_BSLASHincludesvg] = ACTIONS(12421), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12421), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12421), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12421), + [anon_sym_BSLASHimport] = ACTIONS(12421), + [anon_sym_BSLASHsubimport] = ACTIONS(12421), + [anon_sym_BSLASHinputfrom] = ACTIONS(12421), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12421), + [anon_sym_BSLASHincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHlabel] = ACTIONS(12421), + [anon_sym_BSLASHref] = ACTIONS(12421), + [anon_sym_BSLASHvref] = ACTIONS(12421), + [anon_sym_BSLASHVref] = ACTIONS(12421), + [anon_sym_BSLASHautoref] = ACTIONS(12421), + [anon_sym_BSLASHpageref] = ACTIONS(12421), + [anon_sym_BSLASHcref] = ACTIONS(12421), + [anon_sym_BSLASHCref] = ACTIONS(12421), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnameCref] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHlabelcref] = ACTIONS(12421), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12421), + [anon_sym_BSLASHeqref] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange] = ACTIONS(12421), + [anon_sym_BSLASHCrefrange] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewlabel] = ACTIONS(12421), + [anon_sym_BSLASHnewcommand] = ACTIONS(12421), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12421), + [anon_sym_BSLASHgls] = ACTIONS(12421), + [anon_sym_BSLASHGls] = ACTIONS(12421), + [anon_sym_BSLASHGLS] = ACTIONS(12421), + [anon_sym_BSLASHglspl] = ACTIONS(12421), + [anon_sym_BSLASHGlspl] = ACTIONS(12421), + [anon_sym_BSLASHGLSpl] = ACTIONS(12421), + [anon_sym_BSLASHglsdisp] = ACTIONS(12421), + [anon_sym_BSLASHglslink] = ACTIONS(12421), + [anon_sym_BSLASHglstext] = ACTIONS(12421), + [anon_sym_BSLASHGlstext] = ACTIONS(12421), + [anon_sym_BSLASHGLStext] = ACTIONS(12421), + [anon_sym_BSLASHglsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12421), + [anon_sym_BSLASHglsplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSplural] = ACTIONS(12421), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHglsname] = ACTIONS(12421), + [anon_sym_BSLASHGlsname] = ACTIONS(12421), + [anon_sym_BSLASHGLSname] = ACTIONS(12421), + [anon_sym_BSLASHglssymbol] = ACTIONS(12421), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12421), + [anon_sym_BSLASHglsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12421), + [anon_sym_BSLASHglsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12421), + [anon_sym_BSLASHglsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12421), + [anon_sym_BSLASHglsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12421), + [anon_sym_BSLASHglsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12421), + [anon_sym_BSLASHnewacronym] = ACTIONS(12421), + [anon_sym_BSLASHacrshort] = ACTIONS(12421), + [anon_sym_BSLASHAcrshort] = ACTIONS(12421), + [anon_sym_BSLASHACRshort] = ACTIONS(12421), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12421), + [anon_sym_BSLASHacrlong] = ACTIONS(12421), + [anon_sym_BSLASHAcrlong] = ACTIONS(12421), + [anon_sym_BSLASHACRlong] = ACTIONS(12421), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12421), + [anon_sym_BSLASHacrfull] = ACTIONS(12421), + [anon_sym_BSLASHAcrfull] = ACTIONS(12421), + [anon_sym_BSLASHACRfull] = ACTIONS(12421), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12421), + [anon_sym_BSLASHacs] = ACTIONS(12421), + [anon_sym_BSLASHAcs] = ACTIONS(12421), + [anon_sym_BSLASHacsp] = ACTIONS(12421), + [anon_sym_BSLASHAcsp] = ACTIONS(12421), + [anon_sym_BSLASHacl] = ACTIONS(12421), + [anon_sym_BSLASHAcl] = ACTIONS(12421), + [anon_sym_BSLASHaclp] = ACTIONS(12421), + [anon_sym_BSLASHAclp] = ACTIONS(12421), + [anon_sym_BSLASHacf] = ACTIONS(12421), + [anon_sym_BSLASHAcf] = ACTIONS(12421), + [anon_sym_BSLASHacfp] = ACTIONS(12421), + [anon_sym_BSLASHAcfp] = ACTIONS(12421), + [anon_sym_BSLASHac] = ACTIONS(12421), + [anon_sym_BSLASHAc] = ACTIONS(12421), + [anon_sym_BSLASHacp] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12421), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12421), + [anon_sym_BSLASHcolor] = ACTIONS(12421), + [anon_sym_BSLASHcolorbox] = ACTIONS(12421), + [anon_sym_BSLASHtextcolor] = ACTIONS(12421), + [anon_sym_BSLASHpagecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12421), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12421), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12421), + }, + [1191] = { + [sym_generic_command_name] = ACTIONS(12425), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12425), + [aux_sym_subsection_token1] = ACTIONS(12425), + [aux_sym_subsubsection_token1] = ACTIONS(12425), + [aux_sym_paragraph_token1] = ACTIONS(12425), + [aux_sym_subparagraph_token1] = ACTIONS(12425), + [anon_sym_BSLASHitem] = ACTIONS(12425), + [anon_sym_LBRACK] = ACTIONS(12423), + [anon_sym_RBRACK] = ACTIONS(12423), + [anon_sym_LBRACE] = ACTIONS(12423), + [anon_sym_RBRACE] = ACTIONS(12423), + [anon_sym_LPAREN] = ACTIONS(12423), + [anon_sym_COMMA] = ACTIONS(12423), + [anon_sym_EQ] = ACTIONS(12423), + [sym_word] = ACTIONS(12423), + [sym_param] = ACTIONS(12423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12423), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12423), + [anon_sym_DOLLAR] = ACTIONS(12425), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12423), + [anon_sym_BSLASHbegin] = ACTIONS(12425), + [anon_sym_BSLASHcaption] = ACTIONS(12425), + [anon_sym_BSLASHcite] = ACTIONS(12425), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCite] = ACTIONS(12425), + [anon_sym_BSLASHnocite] = ACTIONS(12425), + [anon_sym_BSLASHcitet] = ACTIONS(12425), + [anon_sym_BSLASHcitep] = ACTIONS(12425), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteauthor] = ACTIONS(12425), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12425), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitetitle] = ACTIONS(12425), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteyear] = ACTIONS(12425), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitedate] = ACTIONS(12425), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteurl] = ACTIONS(12425), + [anon_sym_BSLASHfullcite] = ACTIONS(12425), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12425), + [anon_sym_BSLASHcitealt] = ACTIONS(12425), + [anon_sym_BSLASHcitealp] = ACTIONS(12425), + [anon_sym_BSLASHcitetext] = ACTIONS(12425), + [anon_sym_BSLASHparencite] = ACTIONS(12425), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHParencite] = ACTIONS(12425), + [anon_sym_BSLASHfootcite] = ACTIONS(12425), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12425), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12425), + [anon_sym_BSLASHtextcite] = ACTIONS(12425), + [anon_sym_BSLASHTextcite] = ACTIONS(12425), + [anon_sym_BSLASHsmartcite] = ACTIONS(12425), + [anon_sym_BSLASHSmartcite] = ACTIONS(12425), + [anon_sym_BSLASHsupercite] = ACTIONS(12425), + [anon_sym_BSLASHautocite] = ACTIONS(12425), + [anon_sym_BSLASHAutocite] = ACTIONS(12425), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHvolcite] = ACTIONS(12425), + [anon_sym_BSLASHVolcite] = ACTIONS(12425), + [anon_sym_BSLASHpvolcite] = ACTIONS(12425), + [anon_sym_BSLASHPvolcite] = ACTIONS(12425), + [anon_sym_BSLASHfvolcite] = ACTIONS(12425), + [anon_sym_BSLASHftvolcite] = ACTIONS(12425), + [anon_sym_BSLASHsvolcite] = ACTIONS(12425), + [anon_sym_BSLASHSvolcite] = ACTIONS(12425), + [anon_sym_BSLASHtvolcite] = ACTIONS(12425), + [anon_sym_BSLASHTvolcite] = ACTIONS(12425), + [anon_sym_BSLASHavolcite] = ACTIONS(12425), + [anon_sym_BSLASHAvolcite] = ACTIONS(12425), + [anon_sym_BSLASHnotecite] = ACTIONS(12425), + [anon_sym_BSLASHpnotecite] = ACTIONS(12425), + [anon_sym_BSLASHPnotecite] = ACTIONS(12425), + [anon_sym_BSLASHfnotecite] = ACTIONS(12425), + [anon_sym_BSLASHusepackage] = ACTIONS(12425), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12425), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12425), + [anon_sym_BSLASHinclude] = ACTIONS(12425), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12425), + [anon_sym_BSLASHinput] = ACTIONS(12425), + [anon_sym_BSLASHsubfile] = ACTIONS(12425), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12425), + [anon_sym_BSLASHbibliography] = ACTIONS(12425), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12425), + [anon_sym_BSLASHincludesvg] = ACTIONS(12425), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12425), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12425), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12425), + [anon_sym_BSLASHimport] = ACTIONS(12425), + [anon_sym_BSLASHsubimport] = ACTIONS(12425), + [anon_sym_BSLASHinputfrom] = ACTIONS(12425), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12425), + [anon_sym_BSLASHincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHlabel] = ACTIONS(12425), + [anon_sym_BSLASHref] = ACTIONS(12425), + [anon_sym_BSLASHvref] = ACTIONS(12425), + [anon_sym_BSLASHVref] = ACTIONS(12425), + [anon_sym_BSLASHautoref] = ACTIONS(12425), + [anon_sym_BSLASHpageref] = ACTIONS(12425), + [anon_sym_BSLASHcref] = ACTIONS(12425), + [anon_sym_BSLASHCref] = ACTIONS(12425), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnameCref] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHlabelcref] = ACTIONS(12425), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12425), + [anon_sym_BSLASHeqref] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange] = ACTIONS(12425), + [anon_sym_BSLASHCrefrange] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewlabel] = ACTIONS(12425), + [anon_sym_BSLASHnewcommand] = ACTIONS(12425), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12425), + [anon_sym_BSLASHgls] = ACTIONS(12425), + [anon_sym_BSLASHGls] = ACTIONS(12425), + [anon_sym_BSLASHGLS] = ACTIONS(12425), + [anon_sym_BSLASHglspl] = ACTIONS(12425), + [anon_sym_BSLASHGlspl] = ACTIONS(12425), + [anon_sym_BSLASHGLSpl] = ACTIONS(12425), + [anon_sym_BSLASHglsdisp] = ACTIONS(12425), + [anon_sym_BSLASHglslink] = ACTIONS(12425), + [anon_sym_BSLASHglstext] = ACTIONS(12425), + [anon_sym_BSLASHGlstext] = ACTIONS(12425), + [anon_sym_BSLASHGLStext] = ACTIONS(12425), + [anon_sym_BSLASHglsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12425), + [anon_sym_BSLASHglsplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSplural] = ACTIONS(12425), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHglsname] = ACTIONS(12425), + [anon_sym_BSLASHGlsname] = ACTIONS(12425), + [anon_sym_BSLASHGLSname] = ACTIONS(12425), + [anon_sym_BSLASHglssymbol] = ACTIONS(12425), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12425), + [anon_sym_BSLASHglsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12425), + [anon_sym_BSLASHglsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12425), + [anon_sym_BSLASHglsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12425), + [anon_sym_BSLASHglsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12425), + [anon_sym_BSLASHglsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12425), + [anon_sym_BSLASHnewacronym] = ACTIONS(12425), + [anon_sym_BSLASHacrshort] = ACTIONS(12425), + [anon_sym_BSLASHAcrshort] = ACTIONS(12425), + [anon_sym_BSLASHACRshort] = ACTIONS(12425), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12425), + [anon_sym_BSLASHacrlong] = ACTIONS(12425), + [anon_sym_BSLASHAcrlong] = ACTIONS(12425), + [anon_sym_BSLASHACRlong] = ACTIONS(12425), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12425), + [anon_sym_BSLASHacrfull] = ACTIONS(12425), + [anon_sym_BSLASHAcrfull] = ACTIONS(12425), + [anon_sym_BSLASHACRfull] = ACTIONS(12425), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12425), + [anon_sym_BSLASHacs] = ACTIONS(12425), + [anon_sym_BSLASHAcs] = ACTIONS(12425), + [anon_sym_BSLASHacsp] = ACTIONS(12425), + [anon_sym_BSLASHAcsp] = ACTIONS(12425), + [anon_sym_BSLASHacl] = ACTIONS(12425), + [anon_sym_BSLASHAcl] = ACTIONS(12425), + [anon_sym_BSLASHaclp] = ACTIONS(12425), + [anon_sym_BSLASHAclp] = ACTIONS(12425), + [anon_sym_BSLASHacf] = ACTIONS(12425), + [anon_sym_BSLASHAcf] = ACTIONS(12425), + [anon_sym_BSLASHacfp] = ACTIONS(12425), + [anon_sym_BSLASHAcfp] = ACTIONS(12425), + [anon_sym_BSLASHac] = ACTIONS(12425), + [anon_sym_BSLASHAc] = ACTIONS(12425), + [anon_sym_BSLASHacp] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12425), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12425), + [anon_sym_BSLASHcolor] = ACTIONS(12425), + [anon_sym_BSLASHcolorbox] = ACTIONS(12425), + [anon_sym_BSLASHtextcolor] = ACTIONS(12425), + [anon_sym_BSLASHpagecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12425), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12425), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12425), + }, + [1192] = { + [sym_generic_command_name] = ACTIONS(12429), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12429), + [aux_sym_subsection_token1] = ACTIONS(12429), + [aux_sym_subsubsection_token1] = ACTIONS(12429), + [aux_sym_paragraph_token1] = ACTIONS(12429), + [aux_sym_subparagraph_token1] = ACTIONS(12429), + [anon_sym_BSLASHitem] = ACTIONS(12429), + [anon_sym_LBRACK] = ACTIONS(12427), + [anon_sym_RBRACK] = ACTIONS(12427), + [anon_sym_LBRACE] = ACTIONS(12427), + [anon_sym_RBRACE] = ACTIONS(12427), + [anon_sym_LPAREN] = ACTIONS(12427), + [anon_sym_COMMA] = ACTIONS(12427), + [anon_sym_EQ] = ACTIONS(12427), + [sym_word] = ACTIONS(12427), + [sym_param] = ACTIONS(12427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12427), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12427), + [anon_sym_DOLLAR] = ACTIONS(12429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12427), + [anon_sym_BSLASHbegin] = ACTIONS(12429), + [anon_sym_BSLASHcaption] = ACTIONS(12429), + [anon_sym_BSLASHcite] = ACTIONS(12429), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCite] = ACTIONS(12429), + [anon_sym_BSLASHnocite] = ACTIONS(12429), + [anon_sym_BSLASHcitet] = ACTIONS(12429), + [anon_sym_BSLASHcitep] = ACTIONS(12429), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteauthor] = ACTIONS(12429), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12429), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitetitle] = ACTIONS(12429), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteyear] = ACTIONS(12429), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitedate] = ACTIONS(12429), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteurl] = ACTIONS(12429), + [anon_sym_BSLASHfullcite] = ACTIONS(12429), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12429), + [anon_sym_BSLASHcitealt] = ACTIONS(12429), + [anon_sym_BSLASHcitealp] = ACTIONS(12429), + [anon_sym_BSLASHcitetext] = ACTIONS(12429), + [anon_sym_BSLASHparencite] = ACTIONS(12429), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHParencite] = ACTIONS(12429), + [anon_sym_BSLASHfootcite] = ACTIONS(12429), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12429), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12429), + [anon_sym_BSLASHtextcite] = ACTIONS(12429), + [anon_sym_BSLASHTextcite] = ACTIONS(12429), + [anon_sym_BSLASHsmartcite] = ACTIONS(12429), + [anon_sym_BSLASHSmartcite] = ACTIONS(12429), + [anon_sym_BSLASHsupercite] = ACTIONS(12429), + [anon_sym_BSLASHautocite] = ACTIONS(12429), + [anon_sym_BSLASHAutocite] = ACTIONS(12429), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHvolcite] = ACTIONS(12429), + [anon_sym_BSLASHVolcite] = ACTIONS(12429), + [anon_sym_BSLASHpvolcite] = ACTIONS(12429), + [anon_sym_BSLASHPvolcite] = ACTIONS(12429), + [anon_sym_BSLASHfvolcite] = ACTIONS(12429), + [anon_sym_BSLASHftvolcite] = ACTIONS(12429), + [anon_sym_BSLASHsvolcite] = ACTIONS(12429), + [anon_sym_BSLASHSvolcite] = ACTIONS(12429), + [anon_sym_BSLASHtvolcite] = ACTIONS(12429), + [anon_sym_BSLASHTvolcite] = ACTIONS(12429), + [anon_sym_BSLASHavolcite] = ACTIONS(12429), + [anon_sym_BSLASHAvolcite] = ACTIONS(12429), + [anon_sym_BSLASHnotecite] = ACTIONS(12429), + [anon_sym_BSLASHpnotecite] = ACTIONS(12429), + [anon_sym_BSLASHPnotecite] = ACTIONS(12429), + [anon_sym_BSLASHfnotecite] = ACTIONS(12429), + [anon_sym_BSLASHusepackage] = ACTIONS(12429), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12429), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12429), + [anon_sym_BSLASHinclude] = ACTIONS(12429), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12429), + [anon_sym_BSLASHinput] = ACTIONS(12429), + [anon_sym_BSLASHsubfile] = ACTIONS(12429), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12429), + [anon_sym_BSLASHbibliography] = ACTIONS(12429), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12429), + [anon_sym_BSLASHincludesvg] = ACTIONS(12429), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12429), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12429), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12429), + [anon_sym_BSLASHimport] = ACTIONS(12429), + [anon_sym_BSLASHsubimport] = ACTIONS(12429), + [anon_sym_BSLASHinputfrom] = ACTIONS(12429), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12429), + [anon_sym_BSLASHincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHlabel] = ACTIONS(12429), + [anon_sym_BSLASHref] = ACTIONS(12429), + [anon_sym_BSLASHvref] = ACTIONS(12429), + [anon_sym_BSLASHVref] = ACTIONS(12429), + [anon_sym_BSLASHautoref] = ACTIONS(12429), + [anon_sym_BSLASHpageref] = ACTIONS(12429), + [anon_sym_BSLASHcref] = ACTIONS(12429), + [anon_sym_BSLASHCref] = ACTIONS(12429), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnameCref] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHlabelcref] = ACTIONS(12429), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12429), + [anon_sym_BSLASHeqref] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange] = ACTIONS(12429), + [anon_sym_BSLASHCrefrange] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewlabel] = ACTIONS(12429), + [anon_sym_BSLASHnewcommand] = ACTIONS(12429), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12429), + [anon_sym_BSLASHgls] = ACTIONS(12429), + [anon_sym_BSLASHGls] = ACTIONS(12429), + [anon_sym_BSLASHGLS] = ACTIONS(12429), + [anon_sym_BSLASHglspl] = ACTIONS(12429), + [anon_sym_BSLASHGlspl] = ACTIONS(12429), + [anon_sym_BSLASHGLSpl] = ACTIONS(12429), + [anon_sym_BSLASHglsdisp] = ACTIONS(12429), + [anon_sym_BSLASHglslink] = ACTIONS(12429), + [anon_sym_BSLASHglstext] = ACTIONS(12429), + [anon_sym_BSLASHGlstext] = ACTIONS(12429), + [anon_sym_BSLASHGLStext] = ACTIONS(12429), + [anon_sym_BSLASHglsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12429), + [anon_sym_BSLASHglsplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSplural] = ACTIONS(12429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHglsname] = ACTIONS(12429), + [anon_sym_BSLASHGlsname] = ACTIONS(12429), + [anon_sym_BSLASHGLSname] = ACTIONS(12429), + [anon_sym_BSLASHglssymbol] = ACTIONS(12429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12429), + [anon_sym_BSLASHglsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12429), + [anon_sym_BSLASHglsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12429), + [anon_sym_BSLASHglsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12429), + [anon_sym_BSLASHglsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12429), + [anon_sym_BSLASHglsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12429), + [anon_sym_BSLASHnewacronym] = ACTIONS(12429), + [anon_sym_BSLASHacrshort] = ACTIONS(12429), + [anon_sym_BSLASHAcrshort] = ACTIONS(12429), + [anon_sym_BSLASHACRshort] = ACTIONS(12429), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12429), + [anon_sym_BSLASHacrlong] = ACTIONS(12429), + [anon_sym_BSLASHAcrlong] = ACTIONS(12429), + [anon_sym_BSLASHACRlong] = ACTIONS(12429), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12429), + [anon_sym_BSLASHacrfull] = ACTIONS(12429), + [anon_sym_BSLASHAcrfull] = ACTIONS(12429), + [anon_sym_BSLASHACRfull] = ACTIONS(12429), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12429), + [anon_sym_BSLASHacs] = ACTIONS(12429), + [anon_sym_BSLASHAcs] = ACTIONS(12429), + [anon_sym_BSLASHacsp] = ACTIONS(12429), + [anon_sym_BSLASHAcsp] = ACTIONS(12429), + [anon_sym_BSLASHacl] = ACTIONS(12429), + [anon_sym_BSLASHAcl] = ACTIONS(12429), + [anon_sym_BSLASHaclp] = ACTIONS(12429), + [anon_sym_BSLASHAclp] = ACTIONS(12429), + [anon_sym_BSLASHacf] = ACTIONS(12429), + [anon_sym_BSLASHAcf] = ACTIONS(12429), + [anon_sym_BSLASHacfp] = ACTIONS(12429), + [anon_sym_BSLASHAcfp] = ACTIONS(12429), + [anon_sym_BSLASHac] = ACTIONS(12429), + [anon_sym_BSLASHAc] = ACTIONS(12429), + [anon_sym_BSLASHacp] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12429), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12429), + [anon_sym_BSLASHcolor] = ACTIONS(12429), + [anon_sym_BSLASHcolorbox] = ACTIONS(12429), + [anon_sym_BSLASHtextcolor] = ACTIONS(12429), + [anon_sym_BSLASHpagecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12429), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12429), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12429), + }, + [1193] = { + [sym_generic_command_name] = ACTIONS(12433), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12433), + [aux_sym_subsection_token1] = ACTIONS(12433), + [aux_sym_subsubsection_token1] = ACTIONS(12433), + [aux_sym_paragraph_token1] = ACTIONS(12433), + [aux_sym_subparagraph_token1] = ACTIONS(12433), + [anon_sym_BSLASHitem] = ACTIONS(12433), + [anon_sym_LBRACK] = ACTIONS(12431), + [anon_sym_RBRACK] = ACTIONS(12431), + [anon_sym_LBRACE] = ACTIONS(12431), + [anon_sym_RBRACE] = ACTIONS(12431), + [anon_sym_LPAREN] = ACTIONS(12431), + [anon_sym_COMMA] = ACTIONS(12431), + [anon_sym_EQ] = ACTIONS(12431), + [sym_word] = ACTIONS(12431), + [sym_param] = ACTIONS(12431), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12431), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12431), + [anon_sym_DOLLAR] = ACTIONS(12433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12431), + [anon_sym_BSLASHbegin] = ACTIONS(12433), + [anon_sym_BSLASHcaption] = ACTIONS(12433), + [anon_sym_BSLASHcite] = ACTIONS(12433), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCite] = ACTIONS(12433), + [anon_sym_BSLASHnocite] = ACTIONS(12433), + [anon_sym_BSLASHcitet] = ACTIONS(12433), + [anon_sym_BSLASHcitep] = ACTIONS(12433), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteauthor] = ACTIONS(12433), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12433), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitetitle] = ACTIONS(12433), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteyear] = ACTIONS(12433), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitedate] = ACTIONS(12433), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteurl] = ACTIONS(12433), + [anon_sym_BSLASHfullcite] = ACTIONS(12433), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12433), + [anon_sym_BSLASHcitealt] = ACTIONS(12433), + [anon_sym_BSLASHcitealp] = ACTIONS(12433), + [anon_sym_BSLASHcitetext] = ACTIONS(12433), + [anon_sym_BSLASHparencite] = ACTIONS(12433), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHParencite] = ACTIONS(12433), + [anon_sym_BSLASHfootcite] = ACTIONS(12433), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12433), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12433), + [anon_sym_BSLASHtextcite] = ACTIONS(12433), + [anon_sym_BSLASHTextcite] = ACTIONS(12433), + [anon_sym_BSLASHsmartcite] = ACTIONS(12433), + [anon_sym_BSLASHSmartcite] = ACTIONS(12433), + [anon_sym_BSLASHsupercite] = ACTIONS(12433), + [anon_sym_BSLASHautocite] = ACTIONS(12433), + [anon_sym_BSLASHAutocite] = ACTIONS(12433), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHvolcite] = ACTIONS(12433), + [anon_sym_BSLASHVolcite] = ACTIONS(12433), + [anon_sym_BSLASHpvolcite] = ACTIONS(12433), + [anon_sym_BSLASHPvolcite] = ACTIONS(12433), + [anon_sym_BSLASHfvolcite] = ACTIONS(12433), + [anon_sym_BSLASHftvolcite] = ACTIONS(12433), + [anon_sym_BSLASHsvolcite] = ACTIONS(12433), + [anon_sym_BSLASHSvolcite] = ACTIONS(12433), + [anon_sym_BSLASHtvolcite] = ACTIONS(12433), + [anon_sym_BSLASHTvolcite] = ACTIONS(12433), + [anon_sym_BSLASHavolcite] = ACTIONS(12433), + [anon_sym_BSLASHAvolcite] = ACTIONS(12433), + [anon_sym_BSLASHnotecite] = ACTIONS(12433), + [anon_sym_BSLASHpnotecite] = ACTIONS(12433), + [anon_sym_BSLASHPnotecite] = ACTIONS(12433), + [anon_sym_BSLASHfnotecite] = ACTIONS(12433), + [anon_sym_BSLASHusepackage] = ACTIONS(12433), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12433), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12433), + [anon_sym_BSLASHinclude] = ACTIONS(12433), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12433), + [anon_sym_BSLASHinput] = ACTIONS(12433), + [anon_sym_BSLASHsubfile] = ACTIONS(12433), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12433), + [anon_sym_BSLASHbibliography] = ACTIONS(12433), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12433), + [anon_sym_BSLASHincludesvg] = ACTIONS(12433), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12433), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12433), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12433), + [anon_sym_BSLASHimport] = ACTIONS(12433), + [anon_sym_BSLASHsubimport] = ACTIONS(12433), + [anon_sym_BSLASHinputfrom] = ACTIONS(12433), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12433), + [anon_sym_BSLASHincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHlabel] = ACTIONS(12433), + [anon_sym_BSLASHref] = ACTIONS(12433), + [anon_sym_BSLASHvref] = ACTIONS(12433), + [anon_sym_BSLASHVref] = ACTIONS(12433), + [anon_sym_BSLASHautoref] = ACTIONS(12433), + [anon_sym_BSLASHpageref] = ACTIONS(12433), + [anon_sym_BSLASHcref] = ACTIONS(12433), + [anon_sym_BSLASHCref] = ACTIONS(12433), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnameCref] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHlabelcref] = ACTIONS(12433), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12433), + [anon_sym_BSLASHeqref] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange] = ACTIONS(12433), + [anon_sym_BSLASHCrefrange] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewlabel] = ACTIONS(12433), + [anon_sym_BSLASHnewcommand] = ACTIONS(12433), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12433), + [anon_sym_BSLASHgls] = ACTIONS(12433), + [anon_sym_BSLASHGls] = ACTIONS(12433), + [anon_sym_BSLASHGLS] = ACTIONS(12433), + [anon_sym_BSLASHglspl] = ACTIONS(12433), + [anon_sym_BSLASHGlspl] = ACTIONS(12433), + [anon_sym_BSLASHGLSpl] = ACTIONS(12433), + [anon_sym_BSLASHglsdisp] = ACTIONS(12433), + [anon_sym_BSLASHglslink] = ACTIONS(12433), + [anon_sym_BSLASHglstext] = ACTIONS(12433), + [anon_sym_BSLASHGlstext] = ACTIONS(12433), + [anon_sym_BSLASHGLStext] = ACTIONS(12433), + [anon_sym_BSLASHglsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12433), + [anon_sym_BSLASHglsplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSplural] = ACTIONS(12433), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHglsname] = ACTIONS(12433), + [anon_sym_BSLASHGlsname] = ACTIONS(12433), + [anon_sym_BSLASHGLSname] = ACTIONS(12433), + [anon_sym_BSLASHglssymbol] = ACTIONS(12433), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12433), + [anon_sym_BSLASHglsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12433), + [anon_sym_BSLASHglsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12433), + [anon_sym_BSLASHglsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12433), + [anon_sym_BSLASHglsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12433), + [anon_sym_BSLASHglsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12433), + [anon_sym_BSLASHnewacronym] = ACTIONS(12433), + [anon_sym_BSLASHacrshort] = ACTIONS(12433), + [anon_sym_BSLASHAcrshort] = ACTIONS(12433), + [anon_sym_BSLASHACRshort] = ACTIONS(12433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12433), + [anon_sym_BSLASHacrlong] = ACTIONS(12433), + [anon_sym_BSLASHAcrlong] = ACTIONS(12433), + [anon_sym_BSLASHACRlong] = ACTIONS(12433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12433), + [anon_sym_BSLASHacrfull] = ACTIONS(12433), + [anon_sym_BSLASHAcrfull] = ACTIONS(12433), + [anon_sym_BSLASHACRfull] = ACTIONS(12433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12433), + [anon_sym_BSLASHacs] = ACTIONS(12433), + [anon_sym_BSLASHAcs] = ACTIONS(12433), + [anon_sym_BSLASHacsp] = ACTIONS(12433), + [anon_sym_BSLASHAcsp] = ACTIONS(12433), + [anon_sym_BSLASHacl] = ACTIONS(12433), + [anon_sym_BSLASHAcl] = ACTIONS(12433), + [anon_sym_BSLASHaclp] = ACTIONS(12433), + [anon_sym_BSLASHAclp] = ACTIONS(12433), + [anon_sym_BSLASHacf] = ACTIONS(12433), + [anon_sym_BSLASHAcf] = ACTIONS(12433), + [anon_sym_BSLASHacfp] = ACTIONS(12433), + [anon_sym_BSLASHAcfp] = ACTIONS(12433), + [anon_sym_BSLASHac] = ACTIONS(12433), + [anon_sym_BSLASHAc] = ACTIONS(12433), + [anon_sym_BSLASHacp] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12433), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12433), + [anon_sym_BSLASHcolor] = ACTIONS(12433), + [anon_sym_BSLASHcolorbox] = ACTIONS(12433), + [anon_sym_BSLASHtextcolor] = ACTIONS(12433), + [anon_sym_BSLASHpagecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12433), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12433), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12433), + }, + [1194] = { + [sym_generic_command_name] = ACTIONS(12227), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12227), + [aux_sym_subsection_token1] = ACTIONS(12227), + [aux_sym_subsubsection_token1] = ACTIONS(12227), + [aux_sym_paragraph_token1] = ACTIONS(12227), + [aux_sym_subparagraph_token1] = ACTIONS(12227), + [anon_sym_BSLASHitem] = ACTIONS(12227), + [anon_sym_LBRACK] = ACTIONS(12225), + [anon_sym_RBRACK] = ACTIONS(12225), + [anon_sym_LBRACE] = ACTIONS(12225), + [anon_sym_RBRACE] = ACTIONS(12225), + [anon_sym_LPAREN] = ACTIONS(12225), + [anon_sym_COMMA] = ACTIONS(12225), + [anon_sym_EQ] = ACTIONS(12225), + [sym_word] = ACTIONS(12225), + [sym_param] = ACTIONS(12225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12225), + [anon_sym_DOLLAR] = ACTIONS(12227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12225), + [anon_sym_BSLASHbegin] = ACTIONS(12227), + [anon_sym_BSLASHcaption] = ACTIONS(12227), + [anon_sym_BSLASHcite] = ACTIONS(12227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCite] = ACTIONS(12227), + [anon_sym_BSLASHnocite] = ACTIONS(12227), + [anon_sym_BSLASHcitet] = ACTIONS(12227), + [anon_sym_BSLASHcitep] = ACTIONS(12227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteauthor] = ACTIONS(12227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitetitle] = ACTIONS(12227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteyear] = ACTIONS(12227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitedate] = ACTIONS(12227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteurl] = ACTIONS(12227), + [anon_sym_BSLASHfullcite] = ACTIONS(12227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12227), + [anon_sym_BSLASHcitealt] = ACTIONS(12227), + [anon_sym_BSLASHcitealp] = ACTIONS(12227), + [anon_sym_BSLASHcitetext] = ACTIONS(12227), + [anon_sym_BSLASHparencite] = ACTIONS(12227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHParencite] = ACTIONS(12227), + [anon_sym_BSLASHfootcite] = ACTIONS(12227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12227), + [anon_sym_BSLASHtextcite] = ACTIONS(12227), + [anon_sym_BSLASHTextcite] = ACTIONS(12227), + [anon_sym_BSLASHsmartcite] = ACTIONS(12227), + [anon_sym_BSLASHSmartcite] = ACTIONS(12227), + [anon_sym_BSLASHsupercite] = ACTIONS(12227), + [anon_sym_BSLASHautocite] = ACTIONS(12227), + [anon_sym_BSLASHAutocite] = ACTIONS(12227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHvolcite] = ACTIONS(12227), + [anon_sym_BSLASHVolcite] = ACTIONS(12227), + [anon_sym_BSLASHpvolcite] = ACTIONS(12227), + [anon_sym_BSLASHPvolcite] = ACTIONS(12227), + [anon_sym_BSLASHfvolcite] = ACTIONS(12227), + [anon_sym_BSLASHftvolcite] = ACTIONS(12227), + [anon_sym_BSLASHsvolcite] = ACTIONS(12227), + [anon_sym_BSLASHSvolcite] = ACTIONS(12227), + [anon_sym_BSLASHtvolcite] = ACTIONS(12227), + [anon_sym_BSLASHTvolcite] = ACTIONS(12227), + [anon_sym_BSLASHavolcite] = ACTIONS(12227), + [anon_sym_BSLASHAvolcite] = ACTIONS(12227), + [anon_sym_BSLASHnotecite] = ACTIONS(12227), + [anon_sym_BSLASHpnotecite] = ACTIONS(12227), + [anon_sym_BSLASHPnotecite] = ACTIONS(12227), + [anon_sym_BSLASHfnotecite] = ACTIONS(12227), + [anon_sym_BSLASHusepackage] = ACTIONS(12227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12227), + [anon_sym_BSLASHinclude] = ACTIONS(12227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12227), + [anon_sym_BSLASHinput] = ACTIONS(12227), + [anon_sym_BSLASHsubfile] = ACTIONS(12227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12227), + [anon_sym_BSLASHbibliography] = ACTIONS(12227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12227), + [anon_sym_BSLASHincludesvg] = ACTIONS(12227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12227), + [anon_sym_BSLASHimport] = ACTIONS(12227), + [anon_sym_BSLASHsubimport] = ACTIONS(12227), + [anon_sym_BSLASHinputfrom] = ACTIONS(12227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12227), + [anon_sym_BSLASHincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHlabel] = ACTIONS(12227), + [anon_sym_BSLASHref] = ACTIONS(12227), + [anon_sym_BSLASHvref] = ACTIONS(12227), + [anon_sym_BSLASHVref] = ACTIONS(12227), + [anon_sym_BSLASHautoref] = ACTIONS(12227), + [anon_sym_BSLASHpageref] = ACTIONS(12227), + [anon_sym_BSLASHcref] = ACTIONS(12227), + [anon_sym_BSLASHCref] = ACTIONS(12227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnameCref] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHlabelcref] = ACTIONS(12227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12227), + [anon_sym_BSLASHeqref] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange] = ACTIONS(12227), + [anon_sym_BSLASHCrefrange] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewlabel] = ACTIONS(12227), + [anon_sym_BSLASHnewcommand] = ACTIONS(12227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12227), + [anon_sym_BSLASHgls] = ACTIONS(12227), + [anon_sym_BSLASHGls] = ACTIONS(12227), + [anon_sym_BSLASHGLS] = ACTIONS(12227), + [anon_sym_BSLASHglspl] = ACTIONS(12227), + [anon_sym_BSLASHGlspl] = ACTIONS(12227), + [anon_sym_BSLASHGLSpl] = ACTIONS(12227), + [anon_sym_BSLASHglsdisp] = ACTIONS(12227), + [anon_sym_BSLASHglslink] = ACTIONS(12227), + [anon_sym_BSLASHglstext] = ACTIONS(12227), + [anon_sym_BSLASHGlstext] = ACTIONS(12227), + [anon_sym_BSLASHGLStext] = ACTIONS(12227), + [anon_sym_BSLASHglsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12227), + [anon_sym_BSLASHglsplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSplural] = ACTIONS(12227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHglsname] = ACTIONS(12227), + [anon_sym_BSLASHGlsname] = ACTIONS(12227), + [anon_sym_BSLASHGLSname] = ACTIONS(12227), + [anon_sym_BSLASHglssymbol] = ACTIONS(12227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12227), + [anon_sym_BSLASHglsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12227), + [anon_sym_BSLASHglsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12227), + [anon_sym_BSLASHglsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12227), + [anon_sym_BSLASHglsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12227), + [anon_sym_BSLASHglsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12227), + [anon_sym_BSLASHnewacronym] = ACTIONS(12227), + [anon_sym_BSLASHacrshort] = ACTIONS(12227), + [anon_sym_BSLASHAcrshort] = ACTIONS(12227), + [anon_sym_BSLASHACRshort] = ACTIONS(12227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12227), + [anon_sym_BSLASHacrlong] = ACTIONS(12227), + [anon_sym_BSLASHAcrlong] = ACTIONS(12227), + [anon_sym_BSLASHACRlong] = ACTIONS(12227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12227), + [anon_sym_BSLASHacrfull] = ACTIONS(12227), + [anon_sym_BSLASHAcrfull] = ACTIONS(12227), + [anon_sym_BSLASHACRfull] = ACTIONS(12227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12227), + [anon_sym_BSLASHacs] = ACTIONS(12227), + [anon_sym_BSLASHAcs] = ACTIONS(12227), + [anon_sym_BSLASHacsp] = ACTIONS(12227), + [anon_sym_BSLASHAcsp] = ACTIONS(12227), + [anon_sym_BSLASHacl] = ACTIONS(12227), + [anon_sym_BSLASHAcl] = ACTIONS(12227), + [anon_sym_BSLASHaclp] = ACTIONS(12227), + [anon_sym_BSLASHAclp] = ACTIONS(12227), + [anon_sym_BSLASHacf] = ACTIONS(12227), + [anon_sym_BSLASHAcf] = ACTIONS(12227), + [anon_sym_BSLASHacfp] = ACTIONS(12227), + [anon_sym_BSLASHAcfp] = ACTIONS(12227), + [anon_sym_BSLASHac] = ACTIONS(12227), + [anon_sym_BSLASHAc] = ACTIONS(12227), + [anon_sym_BSLASHacp] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12227), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12227), + [anon_sym_BSLASHcolor] = ACTIONS(12227), + [anon_sym_BSLASHcolorbox] = ACTIONS(12227), + [anon_sym_BSLASHtextcolor] = ACTIONS(12227), + [anon_sym_BSLASHpagecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12227), + }, + [1195] = { + [sym_generic_command_name] = ACTIONS(12441), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12441), + [aux_sym_subsection_token1] = ACTIONS(12441), + [aux_sym_subsubsection_token1] = ACTIONS(12441), + [aux_sym_paragraph_token1] = ACTIONS(12441), + [aux_sym_subparagraph_token1] = ACTIONS(12441), + [anon_sym_BSLASHitem] = ACTIONS(12441), + [anon_sym_LBRACK] = ACTIONS(12439), + [anon_sym_RBRACK] = ACTIONS(12439), + [anon_sym_LBRACE] = ACTIONS(12439), + [anon_sym_RBRACE] = ACTIONS(12439), + [anon_sym_LPAREN] = ACTIONS(12439), + [anon_sym_COMMA] = ACTIONS(12439), + [anon_sym_EQ] = ACTIONS(12439), + [sym_word] = ACTIONS(12439), + [sym_param] = ACTIONS(12439), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12439), + [anon_sym_DOLLAR] = ACTIONS(12441), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12439), + [anon_sym_BSLASHbegin] = ACTIONS(12441), + [anon_sym_BSLASHcaption] = ACTIONS(12441), + [anon_sym_BSLASHcite] = ACTIONS(12441), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCite] = ACTIONS(12441), + [anon_sym_BSLASHnocite] = ACTIONS(12441), + [anon_sym_BSLASHcitet] = ACTIONS(12441), + [anon_sym_BSLASHcitep] = ACTIONS(12441), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteauthor] = ACTIONS(12441), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12441), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitetitle] = ACTIONS(12441), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteyear] = ACTIONS(12441), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitedate] = ACTIONS(12441), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteurl] = ACTIONS(12441), + [anon_sym_BSLASHfullcite] = ACTIONS(12441), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12441), + [anon_sym_BSLASHcitealt] = ACTIONS(12441), + [anon_sym_BSLASHcitealp] = ACTIONS(12441), + [anon_sym_BSLASHcitetext] = ACTIONS(12441), + [anon_sym_BSLASHparencite] = ACTIONS(12441), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHParencite] = ACTIONS(12441), + [anon_sym_BSLASHfootcite] = ACTIONS(12441), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12441), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12441), + [anon_sym_BSLASHtextcite] = ACTIONS(12441), + [anon_sym_BSLASHTextcite] = ACTIONS(12441), + [anon_sym_BSLASHsmartcite] = ACTIONS(12441), + [anon_sym_BSLASHSmartcite] = ACTIONS(12441), + [anon_sym_BSLASHsupercite] = ACTIONS(12441), + [anon_sym_BSLASHautocite] = ACTIONS(12441), + [anon_sym_BSLASHAutocite] = ACTIONS(12441), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHvolcite] = ACTIONS(12441), + [anon_sym_BSLASHVolcite] = ACTIONS(12441), + [anon_sym_BSLASHpvolcite] = ACTIONS(12441), + [anon_sym_BSLASHPvolcite] = ACTIONS(12441), + [anon_sym_BSLASHfvolcite] = ACTIONS(12441), + [anon_sym_BSLASHftvolcite] = ACTIONS(12441), + [anon_sym_BSLASHsvolcite] = ACTIONS(12441), + [anon_sym_BSLASHSvolcite] = ACTIONS(12441), + [anon_sym_BSLASHtvolcite] = ACTIONS(12441), + [anon_sym_BSLASHTvolcite] = ACTIONS(12441), + [anon_sym_BSLASHavolcite] = ACTIONS(12441), + [anon_sym_BSLASHAvolcite] = ACTIONS(12441), + [anon_sym_BSLASHnotecite] = ACTIONS(12441), + [anon_sym_BSLASHpnotecite] = ACTIONS(12441), + [anon_sym_BSLASHPnotecite] = ACTIONS(12441), + [anon_sym_BSLASHfnotecite] = ACTIONS(12441), + [anon_sym_BSLASHusepackage] = ACTIONS(12441), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12441), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12441), + [anon_sym_BSLASHinclude] = ACTIONS(12441), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12441), + [anon_sym_BSLASHinput] = ACTIONS(12441), + [anon_sym_BSLASHsubfile] = ACTIONS(12441), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12441), + [anon_sym_BSLASHbibliography] = ACTIONS(12441), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12441), + [anon_sym_BSLASHincludesvg] = ACTIONS(12441), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12441), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12441), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12441), + [anon_sym_BSLASHimport] = ACTIONS(12441), + [anon_sym_BSLASHsubimport] = ACTIONS(12441), + [anon_sym_BSLASHinputfrom] = ACTIONS(12441), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12441), + [anon_sym_BSLASHincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHlabel] = ACTIONS(12441), + [anon_sym_BSLASHref] = ACTIONS(12441), + [anon_sym_BSLASHvref] = ACTIONS(12441), + [anon_sym_BSLASHVref] = ACTIONS(12441), + [anon_sym_BSLASHautoref] = ACTIONS(12441), + [anon_sym_BSLASHpageref] = ACTIONS(12441), + [anon_sym_BSLASHcref] = ACTIONS(12441), + [anon_sym_BSLASHCref] = ACTIONS(12441), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnameCref] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHlabelcref] = ACTIONS(12441), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12441), + [anon_sym_BSLASHeqref] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange] = ACTIONS(12441), + [anon_sym_BSLASHCrefrange] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewlabel] = ACTIONS(12441), + [anon_sym_BSLASHnewcommand] = ACTIONS(12441), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12441), + [anon_sym_BSLASHgls] = ACTIONS(12441), + [anon_sym_BSLASHGls] = ACTIONS(12441), + [anon_sym_BSLASHGLS] = ACTIONS(12441), + [anon_sym_BSLASHglspl] = ACTIONS(12441), + [anon_sym_BSLASHGlspl] = ACTIONS(12441), + [anon_sym_BSLASHGLSpl] = ACTIONS(12441), + [anon_sym_BSLASHglsdisp] = ACTIONS(12441), + [anon_sym_BSLASHglslink] = ACTIONS(12441), + [anon_sym_BSLASHglstext] = ACTIONS(12441), + [anon_sym_BSLASHGlstext] = ACTIONS(12441), + [anon_sym_BSLASHGLStext] = ACTIONS(12441), + [anon_sym_BSLASHglsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12441), + [anon_sym_BSLASHglsplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSplural] = ACTIONS(12441), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHglsname] = ACTIONS(12441), + [anon_sym_BSLASHGlsname] = ACTIONS(12441), + [anon_sym_BSLASHGLSname] = ACTIONS(12441), + [anon_sym_BSLASHglssymbol] = ACTIONS(12441), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12441), + [anon_sym_BSLASHglsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12441), + [anon_sym_BSLASHglsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12441), + [anon_sym_BSLASHglsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12441), + [anon_sym_BSLASHglsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12441), + [anon_sym_BSLASHglsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12441), + [anon_sym_BSLASHnewacronym] = ACTIONS(12441), + [anon_sym_BSLASHacrshort] = ACTIONS(12441), + [anon_sym_BSLASHAcrshort] = ACTIONS(12441), + [anon_sym_BSLASHACRshort] = ACTIONS(12441), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12441), + [anon_sym_BSLASHacrlong] = ACTIONS(12441), + [anon_sym_BSLASHAcrlong] = ACTIONS(12441), + [anon_sym_BSLASHACRlong] = ACTIONS(12441), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12441), + [anon_sym_BSLASHacrfull] = ACTIONS(12441), + [anon_sym_BSLASHAcrfull] = ACTIONS(12441), + [anon_sym_BSLASHACRfull] = ACTIONS(12441), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12441), + [anon_sym_BSLASHacs] = ACTIONS(12441), + [anon_sym_BSLASHAcs] = ACTIONS(12441), + [anon_sym_BSLASHacsp] = ACTIONS(12441), + [anon_sym_BSLASHAcsp] = ACTIONS(12441), + [anon_sym_BSLASHacl] = ACTIONS(12441), + [anon_sym_BSLASHAcl] = ACTIONS(12441), + [anon_sym_BSLASHaclp] = ACTIONS(12441), + [anon_sym_BSLASHAclp] = ACTIONS(12441), + [anon_sym_BSLASHacf] = ACTIONS(12441), + [anon_sym_BSLASHAcf] = ACTIONS(12441), + [anon_sym_BSLASHacfp] = ACTIONS(12441), + [anon_sym_BSLASHAcfp] = ACTIONS(12441), + [anon_sym_BSLASHac] = ACTIONS(12441), + [anon_sym_BSLASHAc] = ACTIONS(12441), + [anon_sym_BSLASHacp] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12441), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12441), + [anon_sym_BSLASHcolor] = ACTIONS(12441), + [anon_sym_BSLASHcolorbox] = ACTIONS(12441), + [anon_sym_BSLASHtextcolor] = ACTIONS(12441), + [anon_sym_BSLASHpagecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12441), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12441), + }, + [1196] = { + [sym_generic_command_name] = ACTIONS(12445), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12445), + [aux_sym_subsection_token1] = ACTIONS(12445), + [aux_sym_subsubsection_token1] = ACTIONS(12445), + [aux_sym_paragraph_token1] = ACTIONS(12445), + [aux_sym_subparagraph_token1] = ACTIONS(12445), + [anon_sym_BSLASHitem] = ACTIONS(12445), + [anon_sym_LBRACK] = ACTIONS(12443), + [anon_sym_RBRACK] = ACTIONS(12443), + [anon_sym_LBRACE] = ACTIONS(12443), + [anon_sym_RBRACE] = ACTIONS(12443), + [anon_sym_LPAREN] = ACTIONS(12443), + [anon_sym_COMMA] = ACTIONS(12443), + [anon_sym_EQ] = ACTIONS(12443), + [sym_word] = ACTIONS(12443), + [sym_param] = ACTIONS(12443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12443), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12443), + [anon_sym_DOLLAR] = ACTIONS(12445), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12443), + [anon_sym_BSLASHbegin] = ACTIONS(12445), + [anon_sym_BSLASHcaption] = ACTIONS(12445), + [anon_sym_BSLASHcite] = ACTIONS(12445), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCite] = ACTIONS(12445), + [anon_sym_BSLASHnocite] = ACTIONS(12445), + [anon_sym_BSLASHcitet] = ACTIONS(12445), + [anon_sym_BSLASHcitep] = ACTIONS(12445), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteauthor] = ACTIONS(12445), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12445), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitetitle] = ACTIONS(12445), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteyear] = ACTIONS(12445), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitedate] = ACTIONS(12445), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteurl] = ACTIONS(12445), + [anon_sym_BSLASHfullcite] = ACTIONS(12445), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12445), + [anon_sym_BSLASHcitealt] = ACTIONS(12445), + [anon_sym_BSLASHcitealp] = ACTIONS(12445), + [anon_sym_BSLASHcitetext] = ACTIONS(12445), + [anon_sym_BSLASHparencite] = ACTIONS(12445), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHParencite] = ACTIONS(12445), + [anon_sym_BSLASHfootcite] = ACTIONS(12445), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12445), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12445), + [anon_sym_BSLASHtextcite] = ACTIONS(12445), + [anon_sym_BSLASHTextcite] = ACTIONS(12445), + [anon_sym_BSLASHsmartcite] = ACTIONS(12445), + [anon_sym_BSLASHSmartcite] = ACTIONS(12445), + [anon_sym_BSLASHsupercite] = ACTIONS(12445), + [anon_sym_BSLASHautocite] = ACTIONS(12445), + [anon_sym_BSLASHAutocite] = ACTIONS(12445), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHvolcite] = ACTIONS(12445), + [anon_sym_BSLASHVolcite] = ACTIONS(12445), + [anon_sym_BSLASHpvolcite] = ACTIONS(12445), + [anon_sym_BSLASHPvolcite] = ACTIONS(12445), + [anon_sym_BSLASHfvolcite] = ACTIONS(12445), + [anon_sym_BSLASHftvolcite] = ACTIONS(12445), + [anon_sym_BSLASHsvolcite] = ACTIONS(12445), + [anon_sym_BSLASHSvolcite] = ACTIONS(12445), + [anon_sym_BSLASHtvolcite] = ACTIONS(12445), + [anon_sym_BSLASHTvolcite] = ACTIONS(12445), + [anon_sym_BSLASHavolcite] = ACTIONS(12445), + [anon_sym_BSLASHAvolcite] = ACTIONS(12445), + [anon_sym_BSLASHnotecite] = ACTIONS(12445), + [anon_sym_BSLASHpnotecite] = ACTIONS(12445), + [anon_sym_BSLASHPnotecite] = ACTIONS(12445), + [anon_sym_BSLASHfnotecite] = ACTIONS(12445), + [anon_sym_BSLASHusepackage] = ACTIONS(12445), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12445), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12445), + [anon_sym_BSLASHinclude] = ACTIONS(12445), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12445), + [anon_sym_BSLASHinput] = ACTIONS(12445), + [anon_sym_BSLASHsubfile] = ACTIONS(12445), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12445), + [anon_sym_BSLASHbibliography] = ACTIONS(12445), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12445), + [anon_sym_BSLASHincludesvg] = ACTIONS(12445), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12445), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12445), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12445), + [anon_sym_BSLASHimport] = ACTIONS(12445), + [anon_sym_BSLASHsubimport] = ACTIONS(12445), + [anon_sym_BSLASHinputfrom] = ACTIONS(12445), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12445), + [anon_sym_BSLASHincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHlabel] = ACTIONS(12445), + [anon_sym_BSLASHref] = ACTIONS(12445), + [anon_sym_BSLASHvref] = ACTIONS(12445), + [anon_sym_BSLASHVref] = ACTIONS(12445), + [anon_sym_BSLASHautoref] = ACTIONS(12445), + [anon_sym_BSLASHpageref] = ACTIONS(12445), + [anon_sym_BSLASHcref] = ACTIONS(12445), + [anon_sym_BSLASHCref] = ACTIONS(12445), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnameCref] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHlabelcref] = ACTIONS(12445), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12445), + [anon_sym_BSLASHeqref] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange] = ACTIONS(12445), + [anon_sym_BSLASHCrefrange] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewlabel] = ACTIONS(12445), + [anon_sym_BSLASHnewcommand] = ACTIONS(12445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12445), + [anon_sym_BSLASHgls] = ACTIONS(12445), + [anon_sym_BSLASHGls] = ACTIONS(12445), + [anon_sym_BSLASHGLS] = ACTIONS(12445), + [anon_sym_BSLASHglspl] = ACTIONS(12445), + [anon_sym_BSLASHGlspl] = ACTIONS(12445), + [anon_sym_BSLASHGLSpl] = ACTIONS(12445), + [anon_sym_BSLASHglsdisp] = ACTIONS(12445), + [anon_sym_BSLASHglslink] = ACTIONS(12445), + [anon_sym_BSLASHglstext] = ACTIONS(12445), + [anon_sym_BSLASHGlstext] = ACTIONS(12445), + [anon_sym_BSLASHGLStext] = ACTIONS(12445), + [anon_sym_BSLASHglsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12445), + [anon_sym_BSLASHglsplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSplural] = ACTIONS(12445), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHglsname] = ACTIONS(12445), + [anon_sym_BSLASHGlsname] = ACTIONS(12445), + [anon_sym_BSLASHGLSname] = ACTIONS(12445), + [anon_sym_BSLASHglssymbol] = ACTIONS(12445), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12445), + [anon_sym_BSLASHglsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12445), + [anon_sym_BSLASHglsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12445), + [anon_sym_BSLASHglsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12445), + [anon_sym_BSLASHglsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12445), + [anon_sym_BSLASHglsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12445), + [anon_sym_BSLASHnewacronym] = ACTIONS(12445), + [anon_sym_BSLASHacrshort] = ACTIONS(12445), + [anon_sym_BSLASHAcrshort] = ACTIONS(12445), + [anon_sym_BSLASHACRshort] = ACTIONS(12445), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12445), + [anon_sym_BSLASHacrlong] = ACTIONS(12445), + [anon_sym_BSLASHAcrlong] = ACTIONS(12445), + [anon_sym_BSLASHACRlong] = ACTIONS(12445), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12445), + [anon_sym_BSLASHacrfull] = ACTIONS(12445), + [anon_sym_BSLASHAcrfull] = ACTIONS(12445), + [anon_sym_BSLASHACRfull] = ACTIONS(12445), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12445), + [anon_sym_BSLASHacs] = ACTIONS(12445), + [anon_sym_BSLASHAcs] = ACTIONS(12445), + [anon_sym_BSLASHacsp] = ACTIONS(12445), + [anon_sym_BSLASHAcsp] = ACTIONS(12445), + [anon_sym_BSLASHacl] = ACTIONS(12445), + [anon_sym_BSLASHAcl] = ACTIONS(12445), + [anon_sym_BSLASHaclp] = ACTIONS(12445), + [anon_sym_BSLASHAclp] = ACTIONS(12445), + [anon_sym_BSLASHacf] = ACTIONS(12445), + [anon_sym_BSLASHAcf] = ACTIONS(12445), + [anon_sym_BSLASHacfp] = ACTIONS(12445), + [anon_sym_BSLASHAcfp] = ACTIONS(12445), + [anon_sym_BSLASHac] = ACTIONS(12445), + [anon_sym_BSLASHAc] = ACTIONS(12445), + [anon_sym_BSLASHacp] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12445), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12445), + [anon_sym_BSLASHcolor] = ACTIONS(12445), + [anon_sym_BSLASHcolorbox] = ACTIONS(12445), + [anon_sym_BSLASHtextcolor] = ACTIONS(12445), + [anon_sym_BSLASHpagecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12445), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12445), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12445), + }, + [1197] = { + [sym_brace_group] = STATE(3125), + [sym_generic_command_name] = ACTIONS(12028), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12028), + [aux_sym_subsubsection_token1] = ACTIONS(12028), + [aux_sym_paragraph_token1] = ACTIONS(12028), + [aux_sym_subparagraph_token1] = ACTIONS(12028), + [anon_sym_BSLASHitem] = ACTIONS(12028), + [anon_sym_LBRACK] = ACTIONS(12026), + [anon_sym_RBRACK] = ACTIONS(12026), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12026), + [anon_sym_LPAREN] = ACTIONS(12026), + [anon_sym_COMMA] = ACTIONS(12026), + [anon_sym_EQ] = ACTIONS(12026), + [sym_word] = ACTIONS(12026), + [sym_param] = ACTIONS(12026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12026), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12026), + [anon_sym_DOLLAR] = ACTIONS(12028), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12026), + [anon_sym_BSLASHbegin] = ACTIONS(12028), + [anon_sym_BSLASHcaption] = ACTIONS(12028), + [anon_sym_BSLASHcite] = ACTIONS(12028), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCite] = ACTIONS(12028), + [anon_sym_BSLASHnocite] = ACTIONS(12028), + [anon_sym_BSLASHcitet] = ACTIONS(12028), + [anon_sym_BSLASHcitep] = ACTIONS(12028), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteauthor] = ACTIONS(12028), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12028), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitetitle] = ACTIONS(12028), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteyear] = ACTIONS(12028), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitedate] = ACTIONS(12028), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteurl] = ACTIONS(12028), + [anon_sym_BSLASHfullcite] = ACTIONS(12028), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12028), + [anon_sym_BSLASHcitealt] = ACTIONS(12028), + [anon_sym_BSLASHcitealp] = ACTIONS(12028), + [anon_sym_BSLASHcitetext] = ACTIONS(12028), + [anon_sym_BSLASHparencite] = ACTIONS(12028), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHParencite] = ACTIONS(12028), + [anon_sym_BSLASHfootcite] = ACTIONS(12028), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12028), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12028), + [anon_sym_BSLASHtextcite] = ACTIONS(12028), + [anon_sym_BSLASHTextcite] = ACTIONS(12028), + [anon_sym_BSLASHsmartcite] = ACTIONS(12028), + [anon_sym_BSLASHSmartcite] = ACTIONS(12028), + [anon_sym_BSLASHsupercite] = ACTIONS(12028), + [anon_sym_BSLASHautocite] = ACTIONS(12028), + [anon_sym_BSLASHAutocite] = ACTIONS(12028), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHvolcite] = ACTIONS(12028), + [anon_sym_BSLASHVolcite] = ACTIONS(12028), + [anon_sym_BSLASHpvolcite] = ACTIONS(12028), + [anon_sym_BSLASHPvolcite] = ACTIONS(12028), + [anon_sym_BSLASHfvolcite] = ACTIONS(12028), + [anon_sym_BSLASHftvolcite] = ACTIONS(12028), + [anon_sym_BSLASHsvolcite] = ACTIONS(12028), + [anon_sym_BSLASHSvolcite] = ACTIONS(12028), + [anon_sym_BSLASHtvolcite] = ACTIONS(12028), + [anon_sym_BSLASHTvolcite] = ACTIONS(12028), + [anon_sym_BSLASHavolcite] = ACTIONS(12028), + [anon_sym_BSLASHAvolcite] = ACTIONS(12028), + [anon_sym_BSLASHnotecite] = ACTIONS(12028), + [anon_sym_BSLASHpnotecite] = ACTIONS(12028), + [anon_sym_BSLASHPnotecite] = ACTIONS(12028), + [anon_sym_BSLASHfnotecite] = ACTIONS(12028), + [anon_sym_BSLASHusepackage] = ACTIONS(12028), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12028), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12028), + [anon_sym_BSLASHinclude] = ACTIONS(12028), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12028), + [anon_sym_BSLASHinput] = ACTIONS(12028), + [anon_sym_BSLASHsubfile] = ACTIONS(12028), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12028), + [anon_sym_BSLASHbibliography] = ACTIONS(12028), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12028), + [anon_sym_BSLASHincludesvg] = ACTIONS(12028), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12028), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12028), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12028), + [anon_sym_BSLASHimport] = ACTIONS(12028), + [anon_sym_BSLASHsubimport] = ACTIONS(12028), + [anon_sym_BSLASHinputfrom] = ACTIONS(12028), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12028), + [anon_sym_BSLASHincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHlabel] = ACTIONS(12028), + [anon_sym_BSLASHref] = ACTIONS(12028), + [anon_sym_BSLASHvref] = ACTIONS(12028), + [anon_sym_BSLASHVref] = ACTIONS(12028), + [anon_sym_BSLASHautoref] = ACTIONS(12028), + [anon_sym_BSLASHpageref] = ACTIONS(12028), + [anon_sym_BSLASHcref] = ACTIONS(12028), + [anon_sym_BSLASHCref] = ACTIONS(12028), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnameCref] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHlabelcref] = ACTIONS(12028), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12028), + [anon_sym_BSLASHeqref] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange] = ACTIONS(12028), + [anon_sym_BSLASHCrefrange] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewlabel] = ACTIONS(12028), + [anon_sym_BSLASHnewcommand] = ACTIONS(12028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12028), + [anon_sym_BSLASHgls] = ACTIONS(12028), + [anon_sym_BSLASHGls] = ACTIONS(12028), + [anon_sym_BSLASHGLS] = ACTIONS(12028), + [anon_sym_BSLASHglspl] = ACTIONS(12028), + [anon_sym_BSLASHGlspl] = ACTIONS(12028), + [anon_sym_BSLASHGLSpl] = ACTIONS(12028), + [anon_sym_BSLASHglsdisp] = ACTIONS(12028), + [anon_sym_BSLASHglslink] = ACTIONS(12028), + [anon_sym_BSLASHglstext] = ACTIONS(12028), + [anon_sym_BSLASHGlstext] = ACTIONS(12028), + [anon_sym_BSLASHGLStext] = ACTIONS(12028), + [anon_sym_BSLASHglsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12028), + [anon_sym_BSLASHglsplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSplural] = ACTIONS(12028), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHglsname] = ACTIONS(12028), + [anon_sym_BSLASHGlsname] = ACTIONS(12028), + [anon_sym_BSLASHGLSname] = ACTIONS(12028), + [anon_sym_BSLASHglssymbol] = ACTIONS(12028), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12028), + [anon_sym_BSLASHglsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12028), + [anon_sym_BSLASHglsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12028), + [anon_sym_BSLASHglsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12028), + [anon_sym_BSLASHglsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12028), + [anon_sym_BSLASHglsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12028), + [anon_sym_BSLASHnewacronym] = ACTIONS(12028), + [anon_sym_BSLASHacrshort] = ACTIONS(12028), + [anon_sym_BSLASHAcrshort] = ACTIONS(12028), + [anon_sym_BSLASHACRshort] = ACTIONS(12028), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12028), + [anon_sym_BSLASHacrlong] = ACTIONS(12028), + [anon_sym_BSLASHAcrlong] = ACTIONS(12028), + [anon_sym_BSLASHACRlong] = ACTIONS(12028), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12028), + [anon_sym_BSLASHacrfull] = ACTIONS(12028), + [anon_sym_BSLASHAcrfull] = ACTIONS(12028), + [anon_sym_BSLASHACRfull] = ACTIONS(12028), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12028), + [anon_sym_BSLASHacs] = ACTIONS(12028), + [anon_sym_BSLASHAcs] = ACTIONS(12028), + [anon_sym_BSLASHacsp] = ACTIONS(12028), + [anon_sym_BSLASHAcsp] = ACTIONS(12028), + [anon_sym_BSLASHacl] = ACTIONS(12028), + [anon_sym_BSLASHAcl] = ACTIONS(12028), + [anon_sym_BSLASHaclp] = ACTIONS(12028), + [anon_sym_BSLASHAclp] = ACTIONS(12028), + [anon_sym_BSLASHacf] = ACTIONS(12028), + [anon_sym_BSLASHAcf] = ACTIONS(12028), + [anon_sym_BSLASHacfp] = ACTIONS(12028), + [anon_sym_BSLASHAcfp] = ACTIONS(12028), + [anon_sym_BSLASHac] = ACTIONS(12028), + [anon_sym_BSLASHAc] = ACTIONS(12028), + [anon_sym_BSLASHacp] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12028), + [anon_sym_BSLASHcolor] = ACTIONS(12028), + [anon_sym_BSLASHcolorbox] = ACTIONS(12028), + [anon_sym_BSLASHtextcolor] = ACTIONS(12028), + [anon_sym_BSLASHpagecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12028), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12028), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12028), + }, + [1198] = { + [sym_generic_command_name] = ACTIONS(12449), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12449), + [aux_sym_subsection_token1] = ACTIONS(12449), + [aux_sym_subsubsection_token1] = ACTIONS(12449), + [aux_sym_paragraph_token1] = ACTIONS(12449), + [aux_sym_subparagraph_token1] = ACTIONS(12449), + [anon_sym_BSLASHitem] = ACTIONS(12449), + [anon_sym_LBRACK] = ACTIONS(12447), + [anon_sym_RBRACK] = ACTIONS(12447), + [anon_sym_LBRACE] = ACTIONS(12447), + [anon_sym_RBRACE] = ACTIONS(12447), + [anon_sym_LPAREN] = ACTIONS(12447), + [anon_sym_COMMA] = ACTIONS(12447), + [anon_sym_EQ] = ACTIONS(12447), + [sym_word] = ACTIONS(12447), + [sym_param] = ACTIONS(12447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12447), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12447), + [anon_sym_DOLLAR] = ACTIONS(12449), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12447), + [anon_sym_BSLASHbegin] = ACTIONS(12449), + [anon_sym_BSLASHcaption] = ACTIONS(12449), + [anon_sym_BSLASHcite] = ACTIONS(12449), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCite] = ACTIONS(12449), + [anon_sym_BSLASHnocite] = ACTIONS(12449), + [anon_sym_BSLASHcitet] = ACTIONS(12449), + [anon_sym_BSLASHcitep] = ACTIONS(12449), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteauthor] = ACTIONS(12449), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12449), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitetitle] = ACTIONS(12449), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteyear] = ACTIONS(12449), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitedate] = ACTIONS(12449), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteurl] = ACTIONS(12449), + [anon_sym_BSLASHfullcite] = ACTIONS(12449), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12449), + [anon_sym_BSLASHcitealt] = ACTIONS(12449), + [anon_sym_BSLASHcitealp] = ACTIONS(12449), + [anon_sym_BSLASHcitetext] = ACTIONS(12449), + [anon_sym_BSLASHparencite] = ACTIONS(12449), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHParencite] = ACTIONS(12449), + [anon_sym_BSLASHfootcite] = ACTIONS(12449), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12449), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12449), + [anon_sym_BSLASHtextcite] = ACTIONS(12449), + [anon_sym_BSLASHTextcite] = ACTIONS(12449), + [anon_sym_BSLASHsmartcite] = ACTIONS(12449), + [anon_sym_BSLASHSmartcite] = ACTIONS(12449), + [anon_sym_BSLASHsupercite] = ACTIONS(12449), + [anon_sym_BSLASHautocite] = ACTIONS(12449), + [anon_sym_BSLASHAutocite] = ACTIONS(12449), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHvolcite] = ACTIONS(12449), + [anon_sym_BSLASHVolcite] = ACTIONS(12449), + [anon_sym_BSLASHpvolcite] = ACTIONS(12449), + [anon_sym_BSLASHPvolcite] = ACTIONS(12449), + [anon_sym_BSLASHfvolcite] = ACTIONS(12449), + [anon_sym_BSLASHftvolcite] = ACTIONS(12449), + [anon_sym_BSLASHsvolcite] = ACTIONS(12449), + [anon_sym_BSLASHSvolcite] = ACTIONS(12449), + [anon_sym_BSLASHtvolcite] = ACTIONS(12449), + [anon_sym_BSLASHTvolcite] = ACTIONS(12449), + [anon_sym_BSLASHavolcite] = ACTIONS(12449), + [anon_sym_BSLASHAvolcite] = ACTIONS(12449), + [anon_sym_BSLASHnotecite] = ACTIONS(12449), + [anon_sym_BSLASHpnotecite] = ACTIONS(12449), + [anon_sym_BSLASHPnotecite] = ACTIONS(12449), + [anon_sym_BSLASHfnotecite] = ACTIONS(12449), + [anon_sym_BSLASHusepackage] = ACTIONS(12449), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12449), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12449), + [anon_sym_BSLASHinclude] = ACTIONS(12449), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12449), + [anon_sym_BSLASHinput] = ACTIONS(12449), + [anon_sym_BSLASHsubfile] = ACTIONS(12449), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12449), + [anon_sym_BSLASHbibliography] = ACTIONS(12449), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12449), + [anon_sym_BSLASHincludesvg] = ACTIONS(12449), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12449), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12449), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12449), + [anon_sym_BSLASHimport] = ACTIONS(12449), + [anon_sym_BSLASHsubimport] = ACTIONS(12449), + [anon_sym_BSLASHinputfrom] = ACTIONS(12449), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12449), + [anon_sym_BSLASHincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHlabel] = ACTIONS(12449), + [anon_sym_BSLASHref] = ACTIONS(12449), + [anon_sym_BSLASHvref] = ACTIONS(12449), + [anon_sym_BSLASHVref] = ACTIONS(12449), + [anon_sym_BSLASHautoref] = ACTIONS(12449), + [anon_sym_BSLASHpageref] = ACTIONS(12449), + [anon_sym_BSLASHcref] = ACTIONS(12449), + [anon_sym_BSLASHCref] = ACTIONS(12449), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnameCref] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHlabelcref] = ACTIONS(12449), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12449), + [anon_sym_BSLASHeqref] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange] = ACTIONS(12449), + [anon_sym_BSLASHCrefrange] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewlabel] = ACTIONS(12449), + [anon_sym_BSLASHnewcommand] = ACTIONS(12449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12449), + [anon_sym_BSLASHgls] = ACTIONS(12449), + [anon_sym_BSLASHGls] = ACTIONS(12449), + [anon_sym_BSLASHGLS] = ACTIONS(12449), + [anon_sym_BSLASHglspl] = ACTIONS(12449), + [anon_sym_BSLASHGlspl] = ACTIONS(12449), + [anon_sym_BSLASHGLSpl] = ACTIONS(12449), + [anon_sym_BSLASHglsdisp] = ACTIONS(12449), + [anon_sym_BSLASHglslink] = ACTIONS(12449), + [anon_sym_BSLASHglstext] = ACTIONS(12449), + [anon_sym_BSLASHGlstext] = ACTIONS(12449), + [anon_sym_BSLASHGLStext] = ACTIONS(12449), + [anon_sym_BSLASHglsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12449), + [anon_sym_BSLASHglsplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSplural] = ACTIONS(12449), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHglsname] = ACTIONS(12449), + [anon_sym_BSLASHGlsname] = ACTIONS(12449), + [anon_sym_BSLASHGLSname] = ACTIONS(12449), + [anon_sym_BSLASHglssymbol] = ACTIONS(12449), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12449), + [anon_sym_BSLASHglsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12449), + [anon_sym_BSLASHglsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12449), + [anon_sym_BSLASHglsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12449), + [anon_sym_BSLASHglsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12449), + [anon_sym_BSLASHglsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12449), + [anon_sym_BSLASHnewacronym] = ACTIONS(12449), + [anon_sym_BSLASHacrshort] = ACTIONS(12449), + [anon_sym_BSLASHAcrshort] = ACTIONS(12449), + [anon_sym_BSLASHACRshort] = ACTIONS(12449), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12449), + [anon_sym_BSLASHacrlong] = ACTIONS(12449), + [anon_sym_BSLASHAcrlong] = ACTIONS(12449), + [anon_sym_BSLASHACRlong] = ACTIONS(12449), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12449), + [anon_sym_BSLASHacrfull] = ACTIONS(12449), + [anon_sym_BSLASHAcrfull] = ACTIONS(12449), + [anon_sym_BSLASHACRfull] = ACTIONS(12449), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12449), + [anon_sym_BSLASHacs] = ACTIONS(12449), + [anon_sym_BSLASHAcs] = ACTIONS(12449), + [anon_sym_BSLASHacsp] = ACTIONS(12449), + [anon_sym_BSLASHAcsp] = ACTIONS(12449), + [anon_sym_BSLASHacl] = ACTIONS(12449), + [anon_sym_BSLASHAcl] = ACTIONS(12449), + [anon_sym_BSLASHaclp] = ACTIONS(12449), + [anon_sym_BSLASHAclp] = ACTIONS(12449), + [anon_sym_BSLASHacf] = ACTIONS(12449), + [anon_sym_BSLASHAcf] = ACTIONS(12449), + [anon_sym_BSLASHacfp] = ACTIONS(12449), + [anon_sym_BSLASHAcfp] = ACTIONS(12449), + [anon_sym_BSLASHac] = ACTIONS(12449), + [anon_sym_BSLASHAc] = ACTIONS(12449), + [anon_sym_BSLASHacp] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12449), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12449), + [anon_sym_BSLASHcolor] = ACTIONS(12449), + [anon_sym_BSLASHcolorbox] = ACTIONS(12449), + [anon_sym_BSLASHtextcolor] = ACTIONS(12449), + [anon_sym_BSLASHpagecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12449), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12449), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12449), + }, + [1199] = { + [sym_generic_command_name] = ACTIONS(12453), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12453), + [aux_sym_subsection_token1] = ACTIONS(12453), + [aux_sym_subsubsection_token1] = ACTIONS(12453), + [aux_sym_paragraph_token1] = ACTIONS(12453), + [aux_sym_subparagraph_token1] = ACTIONS(12453), + [anon_sym_BSLASHitem] = ACTIONS(12453), + [anon_sym_LBRACK] = ACTIONS(12451), + [anon_sym_RBRACK] = ACTIONS(12451), + [anon_sym_LBRACE] = ACTIONS(12451), + [anon_sym_RBRACE] = ACTIONS(12451), + [anon_sym_LPAREN] = ACTIONS(12451), + [anon_sym_COMMA] = ACTIONS(12451), + [anon_sym_EQ] = ACTIONS(12451), + [sym_word] = ACTIONS(12451), + [sym_param] = ACTIONS(12451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12451), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12451), + [anon_sym_DOLLAR] = ACTIONS(12453), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12451), + [anon_sym_BSLASHbegin] = ACTIONS(12453), + [anon_sym_BSLASHcaption] = ACTIONS(12453), + [anon_sym_BSLASHcite] = ACTIONS(12453), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCite] = ACTIONS(12453), + [anon_sym_BSLASHnocite] = ACTIONS(12453), + [anon_sym_BSLASHcitet] = ACTIONS(12453), + [anon_sym_BSLASHcitep] = ACTIONS(12453), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteauthor] = ACTIONS(12453), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12453), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitetitle] = ACTIONS(12453), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteyear] = ACTIONS(12453), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitedate] = ACTIONS(12453), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteurl] = ACTIONS(12453), + [anon_sym_BSLASHfullcite] = ACTIONS(12453), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12453), + [anon_sym_BSLASHcitealt] = ACTIONS(12453), + [anon_sym_BSLASHcitealp] = ACTIONS(12453), + [anon_sym_BSLASHcitetext] = ACTIONS(12453), + [anon_sym_BSLASHparencite] = ACTIONS(12453), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHParencite] = ACTIONS(12453), + [anon_sym_BSLASHfootcite] = ACTIONS(12453), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12453), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12453), + [anon_sym_BSLASHtextcite] = ACTIONS(12453), + [anon_sym_BSLASHTextcite] = ACTIONS(12453), + [anon_sym_BSLASHsmartcite] = ACTIONS(12453), + [anon_sym_BSLASHSmartcite] = ACTIONS(12453), + [anon_sym_BSLASHsupercite] = ACTIONS(12453), + [anon_sym_BSLASHautocite] = ACTIONS(12453), + [anon_sym_BSLASHAutocite] = ACTIONS(12453), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHvolcite] = ACTIONS(12453), + [anon_sym_BSLASHVolcite] = ACTIONS(12453), + [anon_sym_BSLASHpvolcite] = ACTIONS(12453), + [anon_sym_BSLASHPvolcite] = ACTIONS(12453), + [anon_sym_BSLASHfvolcite] = ACTIONS(12453), + [anon_sym_BSLASHftvolcite] = ACTIONS(12453), + [anon_sym_BSLASHsvolcite] = ACTIONS(12453), + [anon_sym_BSLASHSvolcite] = ACTIONS(12453), + [anon_sym_BSLASHtvolcite] = ACTIONS(12453), + [anon_sym_BSLASHTvolcite] = ACTIONS(12453), + [anon_sym_BSLASHavolcite] = ACTIONS(12453), + [anon_sym_BSLASHAvolcite] = ACTIONS(12453), + [anon_sym_BSLASHnotecite] = ACTIONS(12453), + [anon_sym_BSLASHpnotecite] = ACTIONS(12453), + [anon_sym_BSLASHPnotecite] = ACTIONS(12453), + [anon_sym_BSLASHfnotecite] = ACTIONS(12453), + [anon_sym_BSLASHusepackage] = ACTIONS(12453), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12453), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12453), + [anon_sym_BSLASHinclude] = ACTIONS(12453), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12453), + [anon_sym_BSLASHinput] = ACTIONS(12453), + [anon_sym_BSLASHsubfile] = ACTIONS(12453), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12453), + [anon_sym_BSLASHbibliography] = ACTIONS(12453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12453), + [anon_sym_BSLASHincludesvg] = ACTIONS(12453), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12453), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12453), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12453), + [anon_sym_BSLASHimport] = ACTIONS(12453), + [anon_sym_BSLASHsubimport] = ACTIONS(12453), + [anon_sym_BSLASHinputfrom] = ACTIONS(12453), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12453), + [anon_sym_BSLASHincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHlabel] = ACTIONS(12453), + [anon_sym_BSLASHref] = ACTIONS(12453), + [anon_sym_BSLASHvref] = ACTIONS(12453), + [anon_sym_BSLASHVref] = ACTIONS(12453), + [anon_sym_BSLASHautoref] = ACTIONS(12453), + [anon_sym_BSLASHpageref] = ACTIONS(12453), + [anon_sym_BSLASHcref] = ACTIONS(12453), + [anon_sym_BSLASHCref] = ACTIONS(12453), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnameCref] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHlabelcref] = ACTIONS(12453), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12453), + [anon_sym_BSLASHeqref] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange] = ACTIONS(12453), + [anon_sym_BSLASHCrefrange] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewlabel] = ACTIONS(12453), + [anon_sym_BSLASHnewcommand] = ACTIONS(12453), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12453), + [anon_sym_BSLASHgls] = ACTIONS(12453), + [anon_sym_BSLASHGls] = ACTIONS(12453), + [anon_sym_BSLASHGLS] = ACTIONS(12453), + [anon_sym_BSLASHglspl] = ACTIONS(12453), + [anon_sym_BSLASHGlspl] = ACTIONS(12453), + [anon_sym_BSLASHGLSpl] = ACTIONS(12453), + [anon_sym_BSLASHglsdisp] = ACTIONS(12453), + [anon_sym_BSLASHglslink] = ACTIONS(12453), + [anon_sym_BSLASHglstext] = ACTIONS(12453), + [anon_sym_BSLASHGlstext] = ACTIONS(12453), + [anon_sym_BSLASHGLStext] = ACTIONS(12453), + [anon_sym_BSLASHglsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12453), + [anon_sym_BSLASHglsplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSplural] = ACTIONS(12453), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHglsname] = ACTIONS(12453), + [anon_sym_BSLASHGlsname] = ACTIONS(12453), + [anon_sym_BSLASHGLSname] = ACTIONS(12453), + [anon_sym_BSLASHglssymbol] = ACTIONS(12453), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12453), + [anon_sym_BSLASHglsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12453), + [anon_sym_BSLASHglsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12453), + [anon_sym_BSLASHglsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12453), + [anon_sym_BSLASHglsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12453), + [anon_sym_BSLASHglsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12453), + [anon_sym_BSLASHnewacronym] = ACTIONS(12453), + [anon_sym_BSLASHacrshort] = ACTIONS(12453), + [anon_sym_BSLASHAcrshort] = ACTIONS(12453), + [anon_sym_BSLASHACRshort] = ACTIONS(12453), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12453), + [anon_sym_BSLASHacrlong] = ACTIONS(12453), + [anon_sym_BSLASHAcrlong] = ACTIONS(12453), + [anon_sym_BSLASHACRlong] = ACTIONS(12453), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12453), + [anon_sym_BSLASHacrfull] = ACTIONS(12453), + [anon_sym_BSLASHAcrfull] = ACTIONS(12453), + [anon_sym_BSLASHACRfull] = ACTIONS(12453), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12453), + [anon_sym_BSLASHacs] = ACTIONS(12453), + [anon_sym_BSLASHAcs] = ACTIONS(12453), + [anon_sym_BSLASHacsp] = ACTIONS(12453), + [anon_sym_BSLASHAcsp] = ACTIONS(12453), + [anon_sym_BSLASHacl] = ACTIONS(12453), + [anon_sym_BSLASHAcl] = ACTIONS(12453), + [anon_sym_BSLASHaclp] = ACTIONS(12453), + [anon_sym_BSLASHAclp] = ACTIONS(12453), + [anon_sym_BSLASHacf] = ACTIONS(12453), + [anon_sym_BSLASHAcf] = ACTIONS(12453), + [anon_sym_BSLASHacfp] = ACTIONS(12453), + [anon_sym_BSLASHAcfp] = ACTIONS(12453), + [anon_sym_BSLASHac] = ACTIONS(12453), + [anon_sym_BSLASHAc] = ACTIONS(12453), + [anon_sym_BSLASHacp] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12453), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12453), + [anon_sym_BSLASHcolor] = ACTIONS(12453), + [anon_sym_BSLASHcolorbox] = ACTIONS(12453), + [anon_sym_BSLASHtextcolor] = ACTIONS(12453), + [anon_sym_BSLASHpagecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12453), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12453), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12453), + }, + [1200] = { + [sym_generic_command_name] = ACTIONS(12461), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12461), + [aux_sym_subsection_token1] = ACTIONS(12461), + [aux_sym_subsubsection_token1] = ACTIONS(12461), + [aux_sym_paragraph_token1] = ACTIONS(12461), + [aux_sym_subparagraph_token1] = ACTIONS(12461), + [anon_sym_BSLASHitem] = ACTIONS(12461), + [anon_sym_LBRACK] = ACTIONS(12459), + [anon_sym_RBRACK] = ACTIONS(12459), + [anon_sym_LBRACE] = ACTIONS(12459), + [anon_sym_RBRACE] = ACTIONS(12459), + [anon_sym_LPAREN] = ACTIONS(12459), + [anon_sym_COMMA] = ACTIONS(12459), + [anon_sym_EQ] = ACTIONS(12459), + [sym_word] = ACTIONS(12459), + [sym_param] = ACTIONS(12459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12459), + [anon_sym_DOLLAR] = ACTIONS(12461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12459), + [anon_sym_BSLASHbegin] = ACTIONS(12461), + [anon_sym_BSLASHcaption] = ACTIONS(12461), + [anon_sym_BSLASHcite] = ACTIONS(12461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCite] = ACTIONS(12461), + [anon_sym_BSLASHnocite] = ACTIONS(12461), + [anon_sym_BSLASHcitet] = ACTIONS(12461), + [anon_sym_BSLASHcitep] = ACTIONS(12461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteauthor] = ACTIONS(12461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitetitle] = ACTIONS(12461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteyear] = ACTIONS(12461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitedate] = ACTIONS(12461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteurl] = ACTIONS(12461), + [anon_sym_BSLASHfullcite] = ACTIONS(12461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12461), + [anon_sym_BSLASHcitealt] = ACTIONS(12461), + [anon_sym_BSLASHcitealp] = ACTIONS(12461), + [anon_sym_BSLASHcitetext] = ACTIONS(12461), + [anon_sym_BSLASHparencite] = ACTIONS(12461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHParencite] = ACTIONS(12461), + [anon_sym_BSLASHfootcite] = ACTIONS(12461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12461), + [anon_sym_BSLASHtextcite] = ACTIONS(12461), + [anon_sym_BSLASHTextcite] = ACTIONS(12461), + [anon_sym_BSLASHsmartcite] = ACTIONS(12461), + [anon_sym_BSLASHSmartcite] = ACTIONS(12461), + [anon_sym_BSLASHsupercite] = ACTIONS(12461), + [anon_sym_BSLASHautocite] = ACTIONS(12461), + [anon_sym_BSLASHAutocite] = ACTIONS(12461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHvolcite] = ACTIONS(12461), + [anon_sym_BSLASHVolcite] = ACTIONS(12461), + [anon_sym_BSLASHpvolcite] = ACTIONS(12461), + [anon_sym_BSLASHPvolcite] = ACTIONS(12461), + [anon_sym_BSLASHfvolcite] = ACTIONS(12461), + [anon_sym_BSLASHftvolcite] = ACTIONS(12461), + [anon_sym_BSLASHsvolcite] = ACTIONS(12461), + [anon_sym_BSLASHSvolcite] = ACTIONS(12461), + [anon_sym_BSLASHtvolcite] = ACTIONS(12461), + [anon_sym_BSLASHTvolcite] = ACTIONS(12461), + [anon_sym_BSLASHavolcite] = ACTIONS(12461), + [anon_sym_BSLASHAvolcite] = ACTIONS(12461), + [anon_sym_BSLASHnotecite] = ACTIONS(12461), + [anon_sym_BSLASHpnotecite] = ACTIONS(12461), + [anon_sym_BSLASHPnotecite] = ACTIONS(12461), + [anon_sym_BSLASHfnotecite] = ACTIONS(12461), + [anon_sym_BSLASHusepackage] = ACTIONS(12461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12461), + [anon_sym_BSLASHinclude] = ACTIONS(12461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12461), + [anon_sym_BSLASHinput] = ACTIONS(12461), + [anon_sym_BSLASHsubfile] = ACTIONS(12461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12461), + [anon_sym_BSLASHbibliography] = ACTIONS(12461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12461), + [anon_sym_BSLASHincludesvg] = ACTIONS(12461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12461), + [anon_sym_BSLASHimport] = ACTIONS(12461), + [anon_sym_BSLASHsubimport] = ACTIONS(12461), + [anon_sym_BSLASHinputfrom] = ACTIONS(12461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12461), + [anon_sym_BSLASHincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHlabel] = ACTIONS(12461), + [anon_sym_BSLASHref] = ACTIONS(12461), + [anon_sym_BSLASHvref] = ACTIONS(12461), + [anon_sym_BSLASHVref] = ACTIONS(12461), + [anon_sym_BSLASHautoref] = ACTIONS(12461), + [anon_sym_BSLASHpageref] = ACTIONS(12461), + [anon_sym_BSLASHcref] = ACTIONS(12461), + [anon_sym_BSLASHCref] = ACTIONS(12461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnameCref] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHlabelcref] = ACTIONS(12461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12461), + [anon_sym_BSLASHeqref] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange] = ACTIONS(12461), + [anon_sym_BSLASHCrefrange] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewlabel] = ACTIONS(12461), + [anon_sym_BSLASHnewcommand] = ACTIONS(12461), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12461), + [anon_sym_BSLASHgls] = ACTIONS(12461), + [anon_sym_BSLASHGls] = ACTIONS(12461), + [anon_sym_BSLASHGLS] = ACTIONS(12461), + [anon_sym_BSLASHglspl] = ACTIONS(12461), + [anon_sym_BSLASHGlspl] = ACTIONS(12461), + [anon_sym_BSLASHGLSpl] = ACTIONS(12461), + [anon_sym_BSLASHglsdisp] = ACTIONS(12461), + [anon_sym_BSLASHglslink] = ACTIONS(12461), + [anon_sym_BSLASHglstext] = ACTIONS(12461), + [anon_sym_BSLASHGlstext] = ACTIONS(12461), + [anon_sym_BSLASHGLStext] = ACTIONS(12461), + [anon_sym_BSLASHglsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12461), + [anon_sym_BSLASHglsplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSplural] = ACTIONS(12461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHglsname] = ACTIONS(12461), + [anon_sym_BSLASHGlsname] = ACTIONS(12461), + [anon_sym_BSLASHGLSname] = ACTIONS(12461), + [anon_sym_BSLASHglssymbol] = ACTIONS(12461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12461), + [anon_sym_BSLASHglsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12461), + [anon_sym_BSLASHglsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12461), + [anon_sym_BSLASHglsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12461), + [anon_sym_BSLASHglsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12461), + [anon_sym_BSLASHglsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12461), + [anon_sym_BSLASHnewacronym] = ACTIONS(12461), + [anon_sym_BSLASHacrshort] = ACTIONS(12461), + [anon_sym_BSLASHAcrshort] = ACTIONS(12461), + [anon_sym_BSLASHACRshort] = ACTIONS(12461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12461), + [anon_sym_BSLASHacrlong] = ACTIONS(12461), + [anon_sym_BSLASHAcrlong] = ACTIONS(12461), + [anon_sym_BSLASHACRlong] = ACTIONS(12461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12461), + [anon_sym_BSLASHacrfull] = ACTIONS(12461), + [anon_sym_BSLASHAcrfull] = ACTIONS(12461), + [anon_sym_BSLASHACRfull] = ACTIONS(12461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12461), + [anon_sym_BSLASHacs] = ACTIONS(12461), + [anon_sym_BSLASHAcs] = ACTIONS(12461), + [anon_sym_BSLASHacsp] = ACTIONS(12461), + [anon_sym_BSLASHAcsp] = ACTIONS(12461), + [anon_sym_BSLASHacl] = ACTIONS(12461), + [anon_sym_BSLASHAcl] = ACTIONS(12461), + [anon_sym_BSLASHaclp] = ACTIONS(12461), + [anon_sym_BSLASHAclp] = ACTIONS(12461), + [anon_sym_BSLASHacf] = ACTIONS(12461), + [anon_sym_BSLASHAcf] = ACTIONS(12461), + [anon_sym_BSLASHacfp] = ACTIONS(12461), + [anon_sym_BSLASHAcfp] = ACTIONS(12461), + [anon_sym_BSLASHac] = ACTIONS(12461), + [anon_sym_BSLASHAc] = ACTIONS(12461), + [anon_sym_BSLASHacp] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12461), + [anon_sym_BSLASHcolor] = ACTIONS(12461), + [anon_sym_BSLASHcolorbox] = ACTIONS(12461), + [anon_sym_BSLASHtextcolor] = ACTIONS(12461), + [anon_sym_BSLASHpagecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12461), + }, + [1201] = { + [sym_generic_command_name] = ACTIONS(12323), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12323), + [aux_sym_subsection_token1] = ACTIONS(12323), + [aux_sym_subsubsection_token1] = ACTIONS(12323), + [aux_sym_paragraph_token1] = ACTIONS(12323), + [aux_sym_subparagraph_token1] = ACTIONS(12323), + [anon_sym_BSLASHitem] = ACTIONS(12323), + [anon_sym_LBRACK] = ACTIONS(12321), + [anon_sym_RBRACK] = ACTIONS(12321), + [anon_sym_LBRACE] = ACTIONS(12321), + [anon_sym_RBRACE] = ACTIONS(12321), + [anon_sym_LPAREN] = ACTIONS(12321), + [anon_sym_COMMA] = ACTIONS(12321), + [anon_sym_EQ] = ACTIONS(12321), + [sym_word] = ACTIONS(12321), + [sym_param] = ACTIONS(12321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12321), + [anon_sym_DOLLAR] = ACTIONS(12323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12321), + [anon_sym_BSLASHbegin] = ACTIONS(12323), + [anon_sym_BSLASHcaption] = ACTIONS(12323), + [anon_sym_BSLASHcite] = ACTIONS(12323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCite] = ACTIONS(12323), + [anon_sym_BSLASHnocite] = ACTIONS(12323), + [anon_sym_BSLASHcitet] = ACTIONS(12323), + [anon_sym_BSLASHcitep] = ACTIONS(12323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteauthor] = ACTIONS(12323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitetitle] = ACTIONS(12323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteyear] = ACTIONS(12323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitedate] = ACTIONS(12323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteurl] = ACTIONS(12323), + [anon_sym_BSLASHfullcite] = ACTIONS(12323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12323), + [anon_sym_BSLASHcitealt] = ACTIONS(12323), + [anon_sym_BSLASHcitealp] = ACTIONS(12323), + [anon_sym_BSLASHcitetext] = ACTIONS(12323), + [anon_sym_BSLASHparencite] = ACTIONS(12323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHParencite] = ACTIONS(12323), + [anon_sym_BSLASHfootcite] = ACTIONS(12323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12323), + [anon_sym_BSLASHtextcite] = ACTIONS(12323), + [anon_sym_BSLASHTextcite] = ACTIONS(12323), + [anon_sym_BSLASHsmartcite] = ACTIONS(12323), + [anon_sym_BSLASHSmartcite] = ACTIONS(12323), + [anon_sym_BSLASHsupercite] = ACTIONS(12323), + [anon_sym_BSLASHautocite] = ACTIONS(12323), + [anon_sym_BSLASHAutocite] = ACTIONS(12323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHvolcite] = ACTIONS(12323), + [anon_sym_BSLASHVolcite] = ACTIONS(12323), + [anon_sym_BSLASHpvolcite] = ACTIONS(12323), + [anon_sym_BSLASHPvolcite] = ACTIONS(12323), + [anon_sym_BSLASHfvolcite] = ACTIONS(12323), + [anon_sym_BSLASHftvolcite] = ACTIONS(12323), + [anon_sym_BSLASHsvolcite] = ACTIONS(12323), + [anon_sym_BSLASHSvolcite] = ACTIONS(12323), + [anon_sym_BSLASHtvolcite] = ACTIONS(12323), + [anon_sym_BSLASHTvolcite] = ACTIONS(12323), + [anon_sym_BSLASHavolcite] = ACTIONS(12323), + [anon_sym_BSLASHAvolcite] = ACTIONS(12323), + [anon_sym_BSLASHnotecite] = ACTIONS(12323), + [anon_sym_BSLASHpnotecite] = ACTIONS(12323), + [anon_sym_BSLASHPnotecite] = ACTIONS(12323), + [anon_sym_BSLASHfnotecite] = ACTIONS(12323), + [anon_sym_BSLASHusepackage] = ACTIONS(12323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12323), + [anon_sym_BSLASHinclude] = ACTIONS(12323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12323), + [anon_sym_BSLASHinput] = ACTIONS(12323), + [anon_sym_BSLASHsubfile] = ACTIONS(12323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12323), + [anon_sym_BSLASHbibliography] = ACTIONS(12323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12323), + [anon_sym_BSLASHincludesvg] = ACTIONS(12323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12323), + [anon_sym_BSLASHimport] = ACTIONS(12323), + [anon_sym_BSLASHsubimport] = ACTIONS(12323), + [anon_sym_BSLASHinputfrom] = ACTIONS(12323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12323), + [anon_sym_BSLASHincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHlabel] = ACTIONS(12323), + [anon_sym_BSLASHref] = ACTIONS(12323), + [anon_sym_BSLASHvref] = ACTIONS(12323), + [anon_sym_BSLASHVref] = ACTIONS(12323), + [anon_sym_BSLASHautoref] = ACTIONS(12323), + [anon_sym_BSLASHpageref] = ACTIONS(12323), + [anon_sym_BSLASHcref] = ACTIONS(12323), + [anon_sym_BSLASHCref] = ACTIONS(12323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnameCref] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHlabelcref] = ACTIONS(12323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12323), + [anon_sym_BSLASHeqref] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange] = ACTIONS(12323), + [anon_sym_BSLASHCrefrange] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewlabel] = ACTIONS(12323), + [anon_sym_BSLASHnewcommand] = ACTIONS(12323), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12323), + [anon_sym_BSLASHgls] = ACTIONS(12323), + [anon_sym_BSLASHGls] = ACTIONS(12323), + [anon_sym_BSLASHGLS] = ACTIONS(12323), + [anon_sym_BSLASHglspl] = ACTIONS(12323), + [anon_sym_BSLASHGlspl] = ACTIONS(12323), + [anon_sym_BSLASHGLSpl] = ACTIONS(12323), + [anon_sym_BSLASHglsdisp] = ACTIONS(12323), + [anon_sym_BSLASHglslink] = ACTIONS(12323), + [anon_sym_BSLASHglstext] = ACTIONS(12323), + [anon_sym_BSLASHGlstext] = ACTIONS(12323), + [anon_sym_BSLASHGLStext] = ACTIONS(12323), + [anon_sym_BSLASHglsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12323), + [anon_sym_BSLASHglsplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSplural] = ACTIONS(12323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHglsname] = ACTIONS(12323), + [anon_sym_BSLASHGlsname] = ACTIONS(12323), + [anon_sym_BSLASHGLSname] = ACTIONS(12323), + [anon_sym_BSLASHglssymbol] = ACTIONS(12323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12323), + [anon_sym_BSLASHglsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12323), + [anon_sym_BSLASHglsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12323), + [anon_sym_BSLASHglsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12323), + [anon_sym_BSLASHglsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12323), + [anon_sym_BSLASHglsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12323), + [anon_sym_BSLASHnewacronym] = ACTIONS(12323), + [anon_sym_BSLASHacrshort] = ACTIONS(12323), + [anon_sym_BSLASHAcrshort] = ACTIONS(12323), + [anon_sym_BSLASHACRshort] = ACTIONS(12323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12323), + [anon_sym_BSLASHacrlong] = ACTIONS(12323), + [anon_sym_BSLASHAcrlong] = ACTIONS(12323), + [anon_sym_BSLASHACRlong] = ACTIONS(12323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12323), + [anon_sym_BSLASHacrfull] = ACTIONS(12323), + [anon_sym_BSLASHAcrfull] = ACTIONS(12323), + [anon_sym_BSLASHACRfull] = ACTIONS(12323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12323), + [anon_sym_BSLASHacs] = ACTIONS(12323), + [anon_sym_BSLASHAcs] = ACTIONS(12323), + [anon_sym_BSLASHacsp] = ACTIONS(12323), + [anon_sym_BSLASHAcsp] = ACTIONS(12323), + [anon_sym_BSLASHacl] = ACTIONS(12323), + [anon_sym_BSLASHAcl] = ACTIONS(12323), + [anon_sym_BSLASHaclp] = ACTIONS(12323), + [anon_sym_BSLASHAclp] = ACTIONS(12323), + [anon_sym_BSLASHacf] = ACTIONS(12323), + [anon_sym_BSLASHAcf] = ACTIONS(12323), + [anon_sym_BSLASHacfp] = ACTIONS(12323), + [anon_sym_BSLASHAcfp] = ACTIONS(12323), + [anon_sym_BSLASHac] = ACTIONS(12323), + [anon_sym_BSLASHAc] = ACTIONS(12323), + [anon_sym_BSLASHacp] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12323), + [anon_sym_BSLASHcolor] = ACTIONS(12323), + [anon_sym_BSLASHcolorbox] = ACTIONS(12323), + [anon_sym_BSLASHtextcolor] = ACTIONS(12323), + [anon_sym_BSLASHpagecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12323), + }, + [1202] = { + [sym_generic_command_name] = ACTIONS(12465), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12465), + [aux_sym_subsection_token1] = ACTIONS(12465), + [aux_sym_subsubsection_token1] = ACTIONS(12465), + [aux_sym_paragraph_token1] = ACTIONS(12465), + [aux_sym_subparagraph_token1] = ACTIONS(12465), + [anon_sym_BSLASHitem] = ACTIONS(12465), + [anon_sym_LBRACK] = ACTIONS(12463), + [anon_sym_RBRACK] = ACTIONS(12463), + [anon_sym_LBRACE] = ACTIONS(12463), + [anon_sym_RBRACE] = ACTIONS(12463), + [anon_sym_LPAREN] = ACTIONS(12463), + [anon_sym_COMMA] = ACTIONS(12463), + [anon_sym_EQ] = ACTIONS(12463), + [sym_word] = ACTIONS(12463), + [sym_param] = ACTIONS(12463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12463), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12463), + [anon_sym_DOLLAR] = ACTIONS(12465), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12463), + [anon_sym_BSLASHbegin] = ACTIONS(12465), + [anon_sym_BSLASHcaption] = ACTIONS(12465), + [anon_sym_BSLASHcite] = ACTIONS(12465), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCite] = ACTIONS(12465), + [anon_sym_BSLASHnocite] = ACTIONS(12465), + [anon_sym_BSLASHcitet] = ACTIONS(12465), + [anon_sym_BSLASHcitep] = ACTIONS(12465), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteauthor] = ACTIONS(12465), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12465), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitetitle] = ACTIONS(12465), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteyear] = ACTIONS(12465), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitedate] = ACTIONS(12465), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteurl] = ACTIONS(12465), + [anon_sym_BSLASHfullcite] = ACTIONS(12465), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12465), + [anon_sym_BSLASHcitealt] = ACTIONS(12465), + [anon_sym_BSLASHcitealp] = ACTIONS(12465), + [anon_sym_BSLASHcitetext] = ACTIONS(12465), + [anon_sym_BSLASHparencite] = ACTIONS(12465), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHParencite] = ACTIONS(12465), + [anon_sym_BSLASHfootcite] = ACTIONS(12465), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12465), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12465), + [anon_sym_BSLASHtextcite] = ACTIONS(12465), + [anon_sym_BSLASHTextcite] = ACTIONS(12465), + [anon_sym_BSLASHsmartcite] = ACTIONS(12465), + [anon_sym_BSLASHSmartcite] = ACTIONS(12465), + [anon_sym_BSLASHsupercite] = ACTIONS(12465), + [anon_sym_BSLASHautocite] = ACTIONS(12465), + [anon_sym_BSLASHAutocite] = ACTIONS(12465), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHvolcite] = ACTIONS(12465), + [anon_sym_BSLASHVolcite] = ACTIONS(12465), + [anon_sym_BSLASHpvolcite] = ACTIONS(12465), + [anon_sym_BSLASHPvolcite] = ACTIONS(12465), + [anon_sym_BSLASHfvolcite] = ACTIONS(12465), + [anon_sym_BSLASHftvolcite] = ACTIONS(12465), + [anon_sym_BSLASHsvolcite] = ACTIONS(12465), + [anon_sym_BSLASHSvolcite] = ACTIONS(12465), + [anon_sym_BSLASHtvolcite] = ACTIONS(12465), + [anon_sym_BSLASHTvolcite] = ACTIONS(12465), + [anon_sym_BSLASHavolcite] = ACTIONS(12465), + [anon_sym_BSLASHAvolcite] = ACTIONS(12465), + [anon_sym_BSLASHnotecite] = ACTIONS(12465), + [anon_sym_BSLASHpnotecite] = ACTIONS(12465), + [anon_sym_BSLASHPnotecite] = ACTIONS(12465), + [anon_sym_BSLASHfnotecite] = ACTIONS(12465), + [anon_sym_BSLASHusepackage] = ACTIONS(12465), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12465), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12465), + [anon_sym_BSLASHinclude] = ACTIONS(12465), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12465), + [anon_sym_BSLASHinput] = ACTIONS(12465), + [anon_sym_BSLASHsubfile] = ACTIONS(12465), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12465), + [anon_sym_BSLASHbibliography] = ACTIONS(12465), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12465), + [anon_sym_BSLASHincludesvg] = ACTIONS(12465), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12465), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12465), + [anon_sym_BSLASHimport] = ACTIONS(12465), + [anon_sym_BSLASHsubimport] = ACTIONS(12465), + [anon_sym_BSLASHinputfrom] = ACTIONS(12465), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12465), + [anon_sym_BSLASHincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHlabel] = ACTIONS(12465), + [anon_sym_BSLASHref] = ACTIONS(12465), + [anon_sym_BSLASHvref] = ACTIONS(12465), + [anon_sym_BSLASHVref] = ACTIONS(12465), + [anon_sym_BSLASHautoref] = ACTIONS(12465), + [anon_sym_BSLASHpageref] = ACTIONS(12465), + [anon_sym_BSLASHcref] = ACTIONS(12465), + [anon_sym_BSLASHCref] = ACTIONS(12465), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnameCref] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHlabelcref] = ACTIONS(12465), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12465), + [anon_sym_BSLASHeqref] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange] = ACTIONS(12465), + [anon_sym_BSLASHCrefrange] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewlabel] = ACTIONS(12465), + [anon_sym_BSLASHnewcommand] = ACTIONS(12465), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12465), + [anon_sym_BSLASHgls] = ACTIONS(12465), + [anon_sym_BSLASHGls] = ACTIONS(12465), + [anon_sym_BSLASHGLS] = ACTIONS(12465), + [anon_sym_BSLASHglspl] = ACTIONS(12465), + [anon_sym_BSLASHGlspl] = ACTIONS(12465), + [anon_sym_BSLASHGLSpl] = ACTIONS(12465), + [anon_sym_BSLASHglsdisp] = ACTIONS(12465), + [anon_sym_BSLASHglslink] = ACTIONS(12465), + [anon_sym_BSLASHglstext] = ACTIONS(12465), + [anon_sym_BSLASHGlstext] = ACTIONS(12465), + [anon_sym_BSLASHGLStext] = ACTIONS(12465), + [anon_sym_BSLASHglsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12465), + [anon_sym_BSLASHglsplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSplural] = ACTIONS(12465), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHglsname] = ACTIONS(12465), + [anon_sym_BSLASHGlsname] = ACTIONS(12465), + [anon_sym_BSLASHGLSname] = ACTIONS(12465), + [anon_sym_BSLASHglssymbol] = ACTIONS(12465), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12465), + [anon_sym_BSLASHglsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12465), + [anon_sym_BSLASHglsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12465), + [anon_sym_BSLASHglsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12465), + [anon_sym_BSLASHglsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12465), + [anon_sym_BSLASHglsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12465), + [anon_sym_BSLASHnewacronym] = ACTIONS(12465), + [anon_sym_BSLASHacrshort] = ACTIONS(12465), + [anon_sym_BSLASHAcrshort] = ACTIONS(12465), + [anon_sym_BSLASHACRshort] = ACTIONS(12465), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12465), + [anon_sym_BSLASHacrlong] = ACTIONS(12465), + [anon_sym_BSLASHAcrlong] = ACTIONS(12465), + [anon_sym_BSLASHACRlong] = ACTIONS(12465), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12465), + [anon_sym_BSLASHacrfull] = ACTIONS(12465), + [anon_sym_BSLASHAcrfull] = ACTIONS(12465), + [anon_sym_BSLASHACRfull] = ACTIONS(12465), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12465), + [anon_sym_BSLASHacs] = ACTIONS(12465), + [anon_sym_BSLASHAcs] = ACTIONS(12465), + [anon_sym_BSLASHacsp] = ACTIONS(12465), + [anon_sym_BSLASHAcsp] = ACTIONS(12465), + [anon_sym_BSLASHacl] = ACTIONS(12465), + [anon_sym_BSLASHAcl] = ACTIONS(12465), + [anon_sym_BSLASHaclp] = ACTIONS(12465), + [anon_sym_BSLASHAclp] = ACTIONS(12465), + [anon_sym_BSLASHacf] = ACTIONS(12465), + [anon_sym_BSLASHAcf] = ACTIONS(12465), + [anon_sym_BSLASHacfp] = ACTIONS(12465), + [anon_sym_BSLASHAcfp] = ACTIONS(12465), + [anon_sym_BSLASHac] = ACTIONS(12465), + [anon_sym_BSLASHAc] = ACTIONS(12465), + [anon_sym_BSLASHacp] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12465), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12465), + [anon_sym_BSLASHcolor] = ACTIONS(12465), + [anon_sym_BSLASHcolorbox] = ACTIONS(12465), + [anon_sym_BSLASHtextcolor] = ACTIONS(12465), + [anon_sym_BSLASHpagecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12465), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12465), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12465), + }, + [1203] = { + [sym_generic_command_name] = ACTIONS(12469), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12469), + [aux_sym_subsection_token1] = ACTIONS(12469), + [aux_sym_subsubsection_token1] = ACTIONS(12469), + [aux_sym_paragraph_token1] = ACTIONS(12469), + [aux_sym_subparagraph_token1] = ACTIONS(12469), + [anon_sym_BSLASHitem] = ACTIONS(12469), + [anon_sym_LBRACK] = ACTIONS(12467), + [anon_sym_RBRACK] = ACTIONS(12467), + [anon_sym_LBRACE] = ACTIONS(12467), + [anon_sym_RBRACE] = ACTIONS(12467), + [anon_sym_LPAREN] = ACTIONS(12467), + [anon_sym_COMMA] = ACTIONS(12467), + [anon_sym_EQ] = ACTIONS(12467), + [sym_word] = ACTIONS(12467), + [sym_param] = ACTIONS(12467), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12467), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12467), + [anon_sym_DOLLAR] = ACTIONS(12469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12467), + [anon_sym_BSLASHbegin] = ACTIONS(12469), + [anon_sym_BSLASHcaption] = ACTIONS(12469), + [anon_sym_BSLASHcite] = ACTIONS(12469), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCite] = ACTIONS(12469), + [anon_sym_BSLASHnocite] = ACTIONS(12469), + [anon_sym_BSLASHcitet] = ACTIONS(12469), + [anon_sym_BSLASHcitep] = ACTIONS(12469), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteauthor] = ACTIONS(12469), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12469), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitetitle] = ACTIONS(12469), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteyear] = ACTIONS(12469), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitedate] = ACTIONS(12469), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteurl] = ACTIONS(12469), + [anon_sym_BSLASHfullcite] = ACTIONS(12469), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12469), + [anon_sym_BSLASHcitealt] = ACTIONS(12469), + [anon_sym_BSLASHcitealp] = ACTIONS(12469), + [anon_sym_BSLASHcitetext] = ACTIONS(12469), + [anon_sym_BSLASHparencite] = ACTIONS(12469), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHParencite] = ACTIONS(12469), + [anon_sym_BSLASHfootcite] = ACTIONS(12469), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12469), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12469), + [anon_sym_BSLASHtextcite] = ACTIONS(12469), + [anon_sym_BSLASHTextcite] = ACTIONS(12469), + [anon_sym_BSLASHsmartcite] = ACTIONS(12469), + [anon_sym_BSLASHSmartcite] = ACTIONS(12469), + [anon_sym_BSLASHsupercite] = ACTIONS(12469), + [anon_sym_BSLASHautocite] = ACTIONS(12469), + [anon_sym_BSLASHAutocite] = ACTIONS(12469), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHvolcite] = ACTIONS(12469), + [anon_sym_BSLASHVolcite] = ACTIONS(12469), + [anon_sym_BSLASHpvolcite] = ACTIONS(12469), + [anon_sym_BSLASHPvolcite] = ACTIONS(12469), + [anon_sym_BSLASHfvolcite] = ACTIONS(12469), + [anon_sym_BSLASHftvolcite] = ACTIONS(12469), + [anon_sym_BSLASHsvolcite] = ACTIONS(12469), + [anon_sym_BSLASHSvolcite] = ACTIONS(12469), + [anon_sym_BSLASHtvolcite] = ACTIONS(12469), + [anon_sym_BSLASHTvolcite] = ACTIONS(12469), + [anon_sym_BSLASHavolcite] = ACTIONS(12469), + [anon_sym_BSLASHAvolcite] = ACTIONS(12469), + [anon_sym_BSLASHnotecite] = ACTIONS(12469), + [anon_sym_BSLASHpnotecite] = ACTIONS(12469), + [anon_sym_BSLASHPnotecite] = ACTIONS(12469), + [anon_sym_BSLASHfnotecite] = ACTIONS(12469), + [anon_sym_BSLASHusepackage] = ACTIONS(12469), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12469), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12469), + [anon_sym_BSLASHinclude] = ACTIONS(12469), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12469), + [anon_sym_BSLASHinput] = ACTIONS(12469), + [anon_sym_BSLASHsubfile] = ACTIONS(12469), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12469), + [anon_sym_BSLASHbibliography] = ACTIONS(12469), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12469), + [anon_sym_BSLASHincludesvg] = ACTIONS(12469), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12469), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12469), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12469), + [anon_sym_BSLASHimport] = ACTIONS(12469), + [anon_sym_BSLASHsubimport] = ACTIONS(12469), + [anon_sym_BSLASHinputfrom] = ACTIONS(12469), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12469), + [anon_sym_BSLASHincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHlabel] = ACTIONS(12469), + [anon_sym_BSLASHref] = ACTIONS(12469), + [anon_sym_BSLASHvref] = ACTIONS(12469), + [anon_sym_BSLASHVref] = ACTIONS(12469), + [anon_sym_BSLASHautoref] = ACTIONS(12469), + [anon_sym_BSLASHpageref] = ACTIONS(12469), + [anon_sym_BSLASHcref] = ACTIONS(12469), + [anon_sym_BSLASHCref] = ACTIONS(12469), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnameCref] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHlabelcref] = ACTIONS(12469), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12469), + [anon_sym_BSLASHeqref] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange] = ACTIONS(12469), + [anon_sym_BSLASHCrefrange] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewlabel] = ACTIONS(12469), + [anon_sym_BSLASHnewcommand] = ACTIONS(12469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12469), + [anon_sym_BSLASHgls] = ACTIONS(12469), + [anon_sym_BSLASHGls] = ACTIONS(12469), + [anon_sym_BSLASHGLS] = ACTIONS(12469), + [anon_sym_BSLASHglspl] = ACTIONS(12469), + [anon_sym_BSLASHGlspl] = ACTIONS(12469), + [anon_sym_BSLASHGLSpl] = ACTIONS(12469), + [anon_sym_BSLASHglsdisp] = ACTIONS(12469), + [anon_sym_BSLASHglslink] = ACTIONS(12469), + [anon_sym_BSLASHglstext] = ACTIONS(12469), + [anon_sym_BSLASHGlstext] = ACTIONS(12469), + [anon_sym_BSLASHGLStext] = ACTIONS(12469), + [anon_sym_BSLASHglsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12469), + [anon_sym_BSLASHglsplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSplural] = ACTIONS(12469), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHglsname] = ACTIONS(12469), + [anon_sym_BSLASHGlsname] = ACTIONS(12469), + [anon_sym_BSLASHGLSname] = ACTIONS(12469), + [anon_sym_BSLASHglssymbol] = ACTIONS(12469), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12469), + [anon_sym_BSLASHglsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12469), + [anon_sym_BSLASHglsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12469), + [anon_sym_BSLASHglsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12469), + [anon_sym_BSLASHglsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12469), + [anon_sym_BSLASHglsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12469), + [anon_sym_BSLASHnewacronym] = ACTIONS(12469), + [anon_sym_BSLASHacrshort] = ACTIONS(12469), + [anon_sym_BSLASHAcrshort] = ACTIONS(12469), + [anon_sym_BSLASHACRshort] = ACTIONS(12469), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12469), + [anon_sym_BSLASHacrlong] = ACTIONS(12469), + [anon_sym_BSLASHAcrlong] = ACTIONS(12469), + [anon_sym_BSLASHACRlong] = ACTIONS(12469), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12469), + [anon_sym_BSLASHacrfull] = ACTIONS(12469), + [anon_sym_BSLASHAcrfull] = ACTIONS(12469), + [anon_sym_BSLASHACRfull] = ACTIONS(12469), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12469), + [anon_sym_BSLASHacs] = ACTIONS(12469), + [anon_sym_BSLASHAcs] = ACTIONS(12469), + [anon_sym_BSLASHacsp] = ACTIONS(12469), + [anon_sym_BSLASHAcsp] = ACTIONS(12469), + [anon_sym_BSLASHacl] = ACTIONS(12469), + [anon_sym_BSLASHAcl] = ACTIONS(12469), + [anon_sym_BSLASHaclp] = ACTIONS(12469), + [anon_sym_BSLASHAclp] = ACTIONS(12469), + [anon_sym_BSLASHacf] = ACTIONS(12469), + [anon_sym_BSLASHAcf] = ACTIONS(12469), + [anon_sym_BSLASHacfp] = ACTIONS(12469), + [anon_sym_BSLASHAcfp] = ACTIONS(12469), + [anon_sym_BSLASHac] = ACTIONS(12469), + [anon_sym_BSLASHAc] = ACTIONS(12469), + [anon_sym_BSLASHacp] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12469), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12469), + [anon_sym_BSLASHcolor] = ACTIONS(12469), + [anon_sym_BSLASHcolorbox] = ACTIONS(12469), + [anon_sym_BSLASHtextcolor] = ACTIONS(12469), + [anon_sym_BSLASHpagecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12469), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12469), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12469), + }, + [1204] = { + [sym_generic_command_name] = ACTIONS(12477), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12477), + [aux_sym_subsection_token1] = ACTIONS(12477), + [aux_sym_subsubsection_token1] = ACTIONS(12477), + [aux_sym_paragraph_token1] = ACTIONS(12477), + [aux_sym_subparagraph_token1] = ACTIONS(12477), + [anon_sym_BSLASHitem] = ACTIONS(12477), + [anon_sym_LBRACK] = ACTIONS(12475), + [anon_sym_RBRACK] = ACTIONS(12475), + [anon_sym_LBRACE] = ACTIONS(12475), + [anon_sym_RBRACE] = ACTIONS(12475), + [anon_sym_LPAREN] = ACTIONS(12475), + [anon_sym_COMMA] = ACTIONS(12475), + [anon_sym_EQ] = ACTIONS(12475), + [sym_word] = ACTIONS(12475), + [sym_param] = ACTIONS(12475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12475), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12475), + [anon_sym_DOLLAR] = ACTIONS(12477), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12475), + [anon_sym_BSLASHbegin] = ACTIONS(12477), + [anon_sym_BSLASHcaption] = ACTIONS(12477), + [anon_sym_BSLASHcite] = ACTIONS(12477), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCite] = ACTIONS(12477), + [anon_sym_BSLASHnocite] = ACTIONS(12477), + [anon_sym_BSLASHcitet] = ACTIONS(12477), + [anon_sym_BSLASHcitep] = ACTIONS(12477), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteauthor] = ACTIONS(12477), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12477), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitetitle] = ACTIONS(12477), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteyear] = ACTIONS(12477), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitedate] = ACTIONS(12477), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteurl] = ACTIONS(12477), + [anon_sym_BSLASHfullcite] = ACTIONS(12477), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12477), + [anon_sym_BSLASHcitealt] = ACTIONS(12477), + [anon_sym_BSLASHcitealp] = ACTIONS(12477), + [anon_sym_BSLASHcitetext] = ACTIONS(12477), + [anon_sym_BSLASHparencite] = ACTIONS(12477), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHParencite] = ACTIONS(12477), + [anon_sym_BSLASHfootcite] = ACTIONS(12477), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12477), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12477), + [anon_sym_BSLASHtextcite] = ACTIONS(12477), + [anon_sym_BSLASHTextcite] = ACTIONS(12477), + [anon_sym_BSLASHsmartcite] = ACTIONS(12477), + [anon_sym_BSLASHSmartcite] = ACTIONS(12477), + [anon_sym_BSLASHsupercite] = ACTIONS(12477), + [anon_sym_BSLASHautocite] = ACTIONS(12477), + [anon_sym_BSLASHAutocite] = ACTIONS(12477), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHvolcite] = ACTIONS(12477), + [anon_sym_BSLASHVolcite] = ACTIONS(12477), + [anon_sym_BSLASHpvolcite] = ACTIONS(12477), + [anon_sym_BSLASHPvolcite] = ACTIONS(12477), + [anon_sym_BSLASHfvolcite] = ACTIONS(12477), + [anon_sym_BSLASHftvolcite] = ACTIONS(12477), + [anon_sym_BSLASHsvolcite] = ACTIONS(12477), + [anon_sym_BSLASHSvolcite] = ACTIONS(12477), + [anon_sym_BSLASHtvolcite] = ACTIONS(12477), + [anon_sym_BSLASHTvolcite] = ACTIONS(12477), + [anon_sym_BSLASHavolcite] = ACTIONS(12477), + [anon_sym_BSLASHAvolcite] = ACTIONS(12477), + [anon_sym_BSLASHnotecite] = ACTIONS(12477), + [anon_sym_BSLASHpnotecite] = ACTIONS(12477), + [anon_sym_BSLASHPnotecite] = ACTIONS(12477), + [anon_sym_BSLASHfnotecite] = ACTIONS(12477), + [anon_sym_BSLASHusepackage] = ACTIONS(12477), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12477), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12477), + [anon_sym_BSLASHinclude] = ACTIONS(12477), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12477), + [anon_sym_BSLASHinput] = ACTIONS(12477), + [anon_sym_BSLASHsubfile] = ACTIONS(12477), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12477), + [anon_sym_BSLASHbibliography] = ACTIONS(12477), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12477), + [anon_sym_BSLASHincludesvg] = ACTIONS(12477), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12477), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12477), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12477), + [anon_sym_BSLASHimport] = ACTIONS(12477), + [anon_sym_BSLASHsubimport] = ACTIONS(12477), + [anon_sym_BSLASHinputfrom] = ACTIONS(12477), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12477), + [anon_sym_BSLASHincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHlabel] = ACTIONS(12477), + [anon_sym_BSLASHref] = ACTIONS(12477), + [anon_sym_BSLASHvref] = ACTIONS(12477), + [anon_sym_BSLASHVref] = ACTIONS(12477), + [anon_sym_BSLASHautoref] = ACTIONS(12477), + [anon_sym_BSLASHpageref] = ACTIONS(12477), + [anon_sym_BSLASHcref] = ACTIONS(12477), + [anon_sym_BSLASHCref] = ACTIONS(12477), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnameCref] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHlabelcref] = ACTIONS(12477), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12477), + [anon_sym_BSLASHeqref] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange] = ACTIONS(12477), + [anon_sym_BSLASHCrefrange] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewlabel] = ACTIONS(12477), + [anon_sym_BSLASHnewcommand] = ACTIONS(12477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12477), + [anon_sym_BSLASHgls] = ACTIONS(12477), + [anon_sym_BSLASHGls] = ACTIONS(12477), + [anon_sym_BSLASHGLS] = ACTIONS(12477), + [anon_sym_BSLASHglspl] = ACTIONS(12477), + [anon_sym_BSLASHGlspl] = ACTIONS(12477), + [anon_sym_BSLASHGLSpl] = ACTIONS(12477), + [anon_sym_BSLASHglsdisp] = ACTIONS(12477), + [anon_sym_BSLASHglslink] = ACTIONS(12477), + [anon_sym_BSLASHglstext] = ACTIONS(12477), + [anon_sym_BSLASHGlstext] = ACTIONS(12477), + [anon_sym_BSLASHGLStext] = ACTIONS(12477), + [anon_sym_BSLASHglsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12477), + [anon_sym_BSLASHglsplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSplural] = ACTIONS(12477), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHglsname] = ACTIONS(12477), + [anon_sym_BSLASHGlsname] = ACTIONS(12477), + [anon_sym_BSLASHGLSname] = ACTIONS(12477), + [anon_sym_BSLASHglssymbol] = ACTIONS(12477), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12477), + [anon_sym_BSLASHglsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12477), + [anon_sym_BSLASHglsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12477), + [anon_sym_BSLASHglsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12477), + [anon_sym_BSLASHglsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12477), + [anon_sym_BSLASHglsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12477), + [anon_sym_BSLASHnewacronym] = ACTIONS(12477), + [anon_sym_BSLASHacrshort] = ACTIONS(12477), + [anon_sym_BSLASHAcrshort] = ACTIONS(12477), + [anon_sym_BSLASHACRshort] = ACTIONS(12477), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12477), + [anon_sym_BSLASHacrlong] = ACTIONS(12477), + [anon_sym_BSLASHAcrlong] = ACTIONS(12477), + [anon_sym_BSLASHACRlong] = ACTIONS(12477), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12477), + [anon_sym_BSLASHacrfull] = ACTIONS(12477), + [anon_sym_BSLASHAcrfull] = ACTIONS(12477), + [anon_sym_BSLASHACRfull] = ACTIONS(12477), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12477), + [anon_sym_BSLASHacs] = ACTIONS(12477), + [anon_sym_BSLASHAcs] = ACTIONS(12477), + [anon_sym_BSLASHacsp] = ACTIONS(12477), + [anon_sym_BSLASHAcsp] = ACTIONS(12477), + [anon_sym_BSLASHacl] = ACTIONS(12477), + [anon_sym_BSLASHAcl] = ACTIONS(12477), + [anon_sym_BSLASHaclp] = ACTIONS(12477), + [anon_sym_BSLASHAclp] = ACTIONS(12477), + [anon_sym_BSLASHacf] = ACTIONS(12477), + [anon_sym_BSLASHAcf] = ACTIONS(12477), + [anon_sym_BSLASHacfp] = ACTIONS(12477), + [anon_sym_BSLASHAcfp] = ACTIONS(12477), + [anon_sym_BSLASHac] = ACTIONS(12477), + [anon_sym_BSLASHAc] = ACTIONS(12477), + [anon_sym_BSLASHacp] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12477), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12477), + [anon_sym_BSLASHcolor] = ACTIONS(12477), + [anon_sym_BSLASHcolorbox] = ACTIONS(12477), + [anon_sym_BSLASHtextcolor] = ACTIONS(12477), + [anon_sym_BSLASHpagecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12477), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12477), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12477), + }, + [1205] = { + [sym_generic_command_name] = ACTIONS(12481), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12481), + [aux_sym_subsection_token1] = ACTIONS(12481), + [aux_sym_subsubsection_token1] = ACTIONS(12481), + [aux_sym_paragraph_token1] = ACTIONS(12481), + [aux_sym_subparagraph_token1] = ACTIONS(12481), + [anon_sym_BSLASHitem] = ACTIONS(12481), + [anon_sym_LBRACK] = ACTIONS(12479), + [anon_sym_RBRACK] = ACTIONS(12479), + [anon_sym_LBRACE] = ACTIONS(12479), + [anon_sym_RBRACE] = ACTIONS(12479), + [anon_sym_LPAREN] = ACTIONS(12479), + [anon_sym_COMMA] = ACTIONS(12479), + [anon_sym_EQ] = ACTIONS(12479), + [sym_word] = ACTIONS(12479), + [sym_param] = ACTIONS(12479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12479), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12479), + [anon_sym_DOLLAR] = ACTIONS(12481), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12479), + [anon_sym_BSLASHbegin] = ACTIONS(12481), + [anon_sym_BSLASHcaption] = ACTIONS(12481), + [anon_sym_BSLASHcite] = ACTIONS(12481), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCite] = ACTIONS(12481), + [anon_sym_BSLASHnocite] = ACTIONS(12481), + [anon_sym_BSLASHcitet] = ACTIONS(12481), + [anon_sym_BSLASHcitep] = ACTIONS(12481), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteauthor] = ACTIONS(12481), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12481), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitetitle] = ACTIONS(12481), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteyear] = ACTIONS(12481), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitedate] = ACTIONS(12481), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteurl] = ACTIONS(12481), + [anon_sym_BSLASHfullcite] = ACTIONS(12481), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12481), + [anon_sym_BSLASHcitealt] = ACTIONS(12481), + [anon_sym_BSLASHcitealp] = ACTIONS(12481), + [anon_sym_BSLASHcitetext] = ACTIONS(12481), + [anon_sym_BSLASHparencite] = ACTIONS(12481), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHParencite] = ACTIONS(12481), + [anon_sym_BSLASHfootcite] = ACTIONS(12481), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12481), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12481), + [anon_sym_BSLASHtextcite] = ACTIONS(12481), + [anon_sym_BSLASHTextcite] = ACTIONS(12481), + [anon_sym_BSLASHsmartcite] = ACTIONS(12481), + [anon_sym_BSLASHSmartcite] = ACTIONS(12481), + [anon_sym_BSLASHsupercite] = ACTIONS(12481), + [anon_sym_BSLASHautocite] = ACTIONS(12481), + [anon_sym_BSLASHAutocite] = ACTIONS(12481), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHvolcite] = ACTIONS(12481), + [anon_sym_BSLASHVolcite] = ACTIONS(12481), + [anon_sym_BSLASHpvolcite] = ACTIONS(12481), + [anon_sym_BSLASHPvolcite] = ACTIONS(12481), + [anon_sym_BSLASHfvolcite] = ACTIONS(12481), + [anon_sym_BSLASHftvolcite] = ACTIONS(12481), + [anon_sym_BSLASHsvolcite] = ACTIONS(12481), + [anon_sym_BSLASHSvolcite] = ACTIONS(12481), + [anon_sym_BSLASHtvolcite] = ACTIONS(12481), + [anon_sym_BSLASHTvolcite] = ACTIONS(12481), + [anon_sym_BSLASHavolcite] = ACTIONS(12481), + [anon_sym_BSLASHAvolcite] = ACTIONS(12481), + [anon_sym_BSLASHnotecite] = ACTIONS(12481), + [anon_sym_BSLASHpnotecite] = ACTIONS(12481), + [anon_sym_BSLASHPnotecite] = ACTIONS(12481), + [anon_sym_BSLASHfnotecite] = ACTIONS(12481), + [anon_sym_BSLASHusepackage] = ACTIONS(12481), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12481), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12481), + [anon_sym_BSLASHinclude] = ACTIONS(12481), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12481), + [anon_sym_BSLASHinput] = ACTIONS(12481), + [anon_sym_BSLASHsubfile] = ACTIONS(12481), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12481), + [anon_sym_BSLASHbibliography] = ACTIONS(12481), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12481), + [anon_sym_BSLASHincludesvg] = ACTIONS(12481), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12481), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12481), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12481), + [anon_sym_BSLASHimport] = ACTIONS(12481), + [anon_sym_BSLASHsubimport] = ACTIONS(12481), + [anon_sym_BSLASHinputfrom] = ACTIONS(12481), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12481), + [anon_sym_BSLASHincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHlabel] = ACTIONS(12481), + [anon_sym_BSLASHref] = ACTIONS(12481), + [anon_sym_BSLASHvref] = ACTIONS(12481), + [anon_sym_BSLASHVref] = ACTIONS(12481), + [anon_sym_BSLASHautoref] = ACTIONS(12481), + [anon_sym_BSLASHpageref] = ACTIONS(12481), + [anon_sym_BSLASHcref] = ACTIONS(12481), + [anon_sym_BSLASHCref] = ACTIONS(12481), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnameCref] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHlabelcref] = ACTIONS(12481), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12481), + [anon_sym_BSLASHeqref] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange] = ACTIONS(12481), + [anon_sym_BSLASHCrefrange] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewlabel] = ACTIONS(12481), + [anon_sym_BSLASHnewcommand] = ACTIONS(12481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12481), + [anon_sym_BSLASHgls] = ACTIONS(12481), + [anon_sym_BSLASHGls] = ACTIONS(12481), + [anon_sym_BSLASHGLS] = ACTIONS(12481), + [anon_sym_BSLASHglspl] = ACTIONS(12481), + [anon_sym_BSLASHGlspl] = ACTIONS(12481), + [anon_sym_BSLASHGLSpl] = ACTIONS(12481), + [anon_sym_BSLASHglsdisp] = ACTIONS(12481), + [anon_sym_BSLASHglslink] = ACTIONS(12481), + [anon_sym_BSLASHglstext] = ACTIONS(12481), + [anon_sym_BSLASHGlstext] = ACTIONS(12481), + [anon_sym_BSLASHGLStext] = ACTIONS(12481), + [anon_sym_BSLASHglsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12481), + [anon_sym_BSLASHglsplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSplural] = ACTIONS(12481), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHglsname] = ACTIONS(12481), + [anon_sym_BSLASHGlsname] = ACTIONS(12481), + [anon_sym_BSLASHGLSname] = ACTIONS(12481), + [anon_sym_BSLASHglssymbol] = ACTIONS(12481), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12481), + [anon_sym_BSLASHglsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12481), + [anon_sym_BSLASHglsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12481), + [anon_sym_BSLASHglsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12481), + [anon_sym_BSLASHglsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12481), + [anon_sym_BSLASHglsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12481), + [anon_sym_BSLASHnewacronym] = ACTIONS(12481), + [anon_sym_BSLASHacrshort] = ACTIONS(12481), + [anon_sym_BSLASHAcrshort] = ACTIONS(12481), + [anon_sym_BSLASHACRshort] = ACTIONS(12481), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12481), + [anon_sym_BSLASHacrlong] = ACTIONS(12481), + [anon_sym_BSLASHAcrlong] = ACTIONS(12481), + [anon_sym_BSLASHACRlong] = ACTIONS(12481), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12481), + [anon_sym_BSLASHacrfull] = ACTIONS(12481), + [anon_sym_BSLASHAcrfull] = ACTIONS(12481), + [anon_sym_BSLASHACRfull] = ACTIONS(12481), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12481), + [anon_sym_BSLASHacs] = ACTIONS(12481), + [anon_sym_BSLASHAcs] = ACTIONS(12481), + [anon_sym_BSLASHacsp] = ACTIONS(12481), + [anon_sym_BSLASHAcsp] = ACTIONS(12481), + [anon_sym_BSLASHacl] = ACTIONS(12481), + [anon_sym_BSLASHAcl] = ACTIONS(12481), + [anon_sym_BSLASHaclp] = ACTIONS(12481), + [anon_sym_BSLASHAclp] = ACTIONS(12481), + [anon_sym_BSLASHacf] = ACTIONS(12481), + [anon_sym_BSLASHAcf] = ACTIONS(12481), + [anon_sym_BSLASHacfp] = ACTIONS(12481), + [anon_sym_BSLASHAcfp] = ACTIONS(12481), + [anon_sym_BSLASHac] = ACTIONS(12481), + [anon_sym_BSLASHAc] = ACTIONS(12481), + [anon_sym_BSLASHacp] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12481), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12481), + [anon_sym_BSLASHcolor] = ACTIONS(12481), + [anon_sym_BSLASHcolorbox] = ACTIONS(12481), + [anon_sym_BSLASHtextcolor] = ACTIONS(12481), + [anon_sym_BSLASHpagecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12481), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12481), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12481), + }, + [1206] = { + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(117), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [1207] = { + [sym_generic_command_name] = ACTIONS(12485), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12485), + [aux_sym_subsection_token1] = ACTIONS(12485), + [aux_sym_subsubsection_token1] = ACTIONS(12485), + [aux_sym_paragraph_token1] = ACTIONS(12485), + [aux_sym_subparagraph_token1] = ACTIONS(12485), + [anon_sym_BSLASHitem] = ACTIONS(12485), + [anon_sym_LBRACK] = ACTIONS(12483), + [anon_sym_RBRACK] = ACTIONS(12483), + [anon_sym_LBRACE] = ACTIONS(12483), + [anon_sym_RBRACE] = ACTIONS(12483), + [anon_sym_LPAREN] = ACTIONS(12483), + [anon_sym_COMMA] = ACTIONS(12483), + [anon_sym_EQ] = ACTIONS(12483), + [sym_word] = ACTIONS(12483), + [sym_param] = ACTIONS(12483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12483), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12483), + [anon_sym_DOLLAR] = ACTIONS(12485), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12483), + [anon_sym_BSLASHbegin] = ACTIONS(12485), + [anon_sym_BSLASHcaption] = ACTIONS(12485), + [anon_sym_BSLASHcite] = ACTIONS(12485), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCite] = ACTIONS(12485), + [anon_sym_BSLASHnocite] = ACTIONS(12485), + [anon_sym_BSLASHcitet] = ACTIONS(12485), + [anon_sym_BSLASHcitep] = ACTIONS(12485), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteauthor] = ACTIONS(12485), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12485), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitetitle] = ACTIONS(12485), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteyear] = ACTIONS(12485), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitedate] = ACTIONS(12485), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteurl] = ACTIONS(12485), + [anon_sym_BSLASHfullcite] = ACTIONS(12485), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12485), + [anon_sym_BSLASHcitealt] = ACTIONS(12485), + [anon_sym_BSLASHcitealp] = ACTIONS(12485), + [anon_sym_BSLASHcitetext] = ACTIONS(12485), + [anon_sym_BSLASHparencite] = ACTIONS(12485), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHParencite] = ACTIONS(12485), + [anon_sym_BSLASHfootcite] = ACTIONS(12485), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12485), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12485), + [anon_sym_BSLASHtextcite] = ACTIONS(12485), + [anon_sym_BSLASHTextcite] = ACTIONS(12485), + [anon_sym_BSLASHsmartcite] = ACTIONS(12485), + [anon_sym_BSLASHSmartcite] = ACTIONS(12485), + [anon_sym_BSLASHsupercite] = ACTIONS(12485), + [anon_sym_BSLASHautocite] = ACTIONS(12485), + [anon_sym_BSLASHAutocite] = ACTIONS(12485), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHvolcite] = ACTIONS(12485), + [anon_sym_BSLASHVolcite] = ACTIONS(12485), + [anon_sym_BSLASHpvolcite] = ACTIONS(12485), + [anon_sym_BSLASHPvolcite] = ACTIONS(12485), + [anon_sym_BSLASHfvolcite] = ACTIONS(12485), + [anon_sym_BSLASHftvolcite] = ACTIONS(12485), + [anon_sym_BSLASHsvolcite] = ACTIONS(12485), + [anon_sym_BSLASHSvolcite] = ACTIONS(12485), + [anon_sym_BSLASHtvolcite] = ACTIONS(12485), + [anon_sym_BSLASHTvolcite] = ACTIONS(12485), + [anon_sym_BSLASHavolcite] = ACTIONS(12485), + [anon_sym_BSLASHAvolcite] = ACTIONS(12485), + [anon_sym_BSLASHnotecite] = ACTIONS(12485), + [anon_sym_BSLASHpnotecite] = ACTIONS(12485), + [anon_sym_BSLASHPnotecite] = ACTIONS(12485), + [anon_sym_BSLASHfnotecite] = ACTIONS(12485), + [anon_sym_BSLASHusepackage] = ACTIONS(12485), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12485), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12485), + [anon_sym_BSLASHinclude] = ACTIONS(12485), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12485), + [anon_sym_BSLASHinput] = ACTIONS(12485), + [anon_sym_BSLASHsubfile] = ACTIONS(12485), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12485), + [anon_sym_BSLASHbibliography] = ACTIONS(12485), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12485), + [anon_sym_BSLASHincludesvg] = ACTIONS(12485), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12485), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12485), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12485), + [anon_sym_BSLASHimport] = ACTIONS(12485), + [anon_sym_BSLASHsubimport] = ACTIONS(12485), + [anon_sym_BSLASHinputfrom] = ACTIONS(12485), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12485), + [anon_sym_BSLASHincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHlabel] = ACTIONS(12485), + [anon_sym_BSLASHref] = ACTIONS(12485), + [anon_sym_BSLASHvref] = ACTIONS(12485), + [anon_sym_BSLASHVref] = ACTIONS(12485), + [anon_sym_BSLASHautoref] = ACTIONS(12485), + [anon_sym_BSLASHpageref] = ACTIONS(12485), + [anon_sym_BSLASHcref] = ACTIONS(12485), + [anon_sym_BSLASHCref] = ACTIONS(12485), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnameCref] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHlabelcref] = ACTIONS(12485), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12485), + [anon_sym_BSLASHeqref] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange] = ACTIONS(12485), + [anon_sym_BSLASHCrefrange] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewlabel] = ACTIONS(12485), + [anon_sym_BSLASHnewcommand] = ACTIONS(12485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12485), + [anon_sym_BSLASHgls] = ACTIONS(12485), + [anon_sym_BSLASHGls] = ACTIONS(12485), + [anon_sym_BSLASHGLS] = ACTIONS(12485), + [anon_sym_BSLASHglspl] = ACTIONS(12485), + [anon_sym_BSLASHGlspl] = ACTIONS(12485), + [anon_sym_BSLASHGLSpl] = ACTIONS(12485), + [anon_sym_BSLASHglsdisp] = ACTIONS(12485), + [anon_sym_BSLASHglslink] = ACTIONS(12485), + [anon_sym_BSLASHglstext] = ACTIONS(12485), + [anon_sym_BSLASHGlstext] = ACTIONS(12485), + [anon_sym_BSLASHGLStext] = ACTIONS(12485), + [anon_sym_BSLASHglsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12485), + [anon_sym_BSLASHglsplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSplural] = ACTIONS(12485), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHglsname] = ACTIONS(12485), + [anon_sym_BSLASHGlsname] = ACTIONS(12485), + [anon_sym_BSLASHGLSname] = ACTIONS(12485), + [anon_sym_BSLASHglssymbol] = ACTIONS(12485), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12485), + [anon_sym_BSLASHglsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12485), + [anon_sym_BSLASHglsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12485), + [anon_sym_BSLASHglsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12485), + [anon_sym_BSLASHglsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12485), + [anon_sym_BSLASHglsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12485), + [anon_sym_BSLASHnewacronym] = ACTIONS(12485), + [anon_sym_BSLASHacrshort] = ACTIONS(12485), + [anon_sym_BSLASHAcrshort] = ACTIONS(12485), + [anon_sym_BSLASHACRshort] = ACTIONS(12485), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12485), + [anon_sym_BSLASHacrlong] = ACTIONS(12485), + [anon_sym_BSLASHAcrlong] = ACTIONS(12485), + [anon_sym_BSLASHACRlong] = ACTIONS(12485), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12485), + [anon_sym_BSLASHacrfull] = ACTIONS(12485), + [anon_sym_BSLASHAcrfull] = ACTIONS(12485), + [anon_sym_BSLASHACRfull] = ACTIONS(12485), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12485), + [anon_sym_BSLASHacs] = ACTIONS(12485), + [anon_sym_BSLASHAcs] = ACTIONS(12485), + [anon_sym_BSLASHacsp] = ACTIONS(12485), + [anon_sym_BSLASHAcsp] = ACTIONS(12485), + [anon_sym_BSLASHacl] = ACTIONS(12485), + [anon_sym_BSLASHAcl] = ACTIONS(12485), + [anon_sym_BSLASHaclp] = ACTIONS(12485), + [anon_sym_BSLASHAclp] = ACTIONS(12485), + [anon_sym_BSLASHacf] = ACTIONS(12485), + [anon_sym_BSLASHAcf] = ACTIONS(12485), + [anon_sym_BSLASHacfp] = ACTIONS(12485), + [anon_sym_BSLASHAcfp] = ACTIONS(12485), + [anon_sym_BSLASHac] = ACTIONS(12485), + [anon_sym_BSLASHAc] = ACTIONS(12485), + [anon_sym_BSLASHacp] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12485), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12485), + [anon_sym_BSLASHcolor] = ACTIONS(12485), + [anon_sym_BSLASHcolorbox] = ACTIONS(12485), + [anon_sym_BSLASHtextcolor] = ACTIONS(12485), + [anon_sym_BSLASHpagecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12485), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12485), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12485), + }, + [1208] = { + [sym_generic_command_name] = ACTIONS(12493), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12493), + [aux_sym_subsection_token1] = ACTIONS(12493), + [aux_sym_subsubsection_token1] = ACTIONS(12493), + [aux_sym_paragraph_token1] = ACTIONS(12493), + [aux_sym_subparagraph_token1] = ACTIONS(12493), + [anon_sym_BSLASHitem] = ACTIONS(12493), + [anon_sym_LBRACK] = ACTIONS(12491), + [anon_sym_RBRACK] = ACTIONS(12491), + [anon_sym_LBRACE] = ACTIONS(12491), + [anon_sym_RBRACE] = ACTIONS(12491), + [anon_sym_LPAREN] = ACTIONS(12491), + [anon_sym_COMMA] = ACTIONS(12491), + [anon_sym_EQ] = ACTIONS(12491), + [sym_word] = ACTIONS(12491), + [sym_param] = ACTIONS(12491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12491), + [anon_sym_DOLLAR] = ACTIONS(12493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12491), + [anon_sym_BSLASHbegin] = ACTIONS(12493), + [anon_sym_BSLASHcaption] = ACTIONS(12493), + [anon_sym_BSLASHcite] = ACTIONS(12493), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCite] = ACTIONS(12493), + [anon_sym_BSLASHnocite] = ACTIONS(12493), + [anon_sym_BSLASHcitet] = ACTIONS(12493), + [anon_sym_BSLASHcitep] = ACTIONS(12493), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteauthor] = ACTIONS(12493), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12493), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitetitle] = ACTIONS(12493), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteyear] = ACTIONS(12493), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitedate] = ACTIONS(12493), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteurl] = ACTIONS(12493), + [anon_sym_BSLASHfullcite] = ACTIONS(12493), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12493), + [anon_sym_BSLASHcitealt] = ACTIONS(12493), + [anon_sym_BSLASHcitealp] = ACTIONS(12493), + [anon_sym_BSLASHcitetext] = ACTIONS(12493), + [anon_sym_BSLASHparencite] = ACTIONS(12493), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHParencite] = ACTIONS(12493), + [anon_sym_BSLASHfootcite] = ACTIONS(12493), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12493), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12493), + [anon_sym_BSLASHtextcite] = ACTIONS(12493), + [anon_sym_BSLASHTextcite] = ACTIONS(12493), + [anon_sym_BSLASHsmartcite] = ACTIONS(12493), + [anon_sym_BSLASHSmartcite] = ACTIONS(12493), + [anon_sym_BSLASHsupercite] = ACTIONS(12493), + [anon_sym_BSLASHautocite] = ACTIONS(12493), + [anon_sym_BSLASHAutocite] = ACTIONS(12493), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHvolcite] = ACTIONS(12493), + [anon_sym_BSLASHVolcite] = ACTIONS(12493), + [anon_sym_BSLASHpvolcite] = ACTIONS(12493), + [anon_sym_BSLASHPvolcite] = ACTIONS(12493), + [anon_sym_BSLASHfvolcite] = ACTIONS(12493), + [anon_sym_BSLASHftvolcite] = ACTIONS(12493), + [anon_sym_BSLASHsvolcite] = ACTIONS(12493), + [anon_sym_BSLASHSvolcite] = ACTIONS(12493), + [anon_sym_BSLASHtvolcite] = ACTIONS(12493), + [anon_sym_BSLASHTvolcite] = ACTIONS(12493), + [anon_sym_BSLASHavolcite] = ACTIONS(12493), + [anon_sym_BSLASHAvolcite] = ACTIONS(12493), + [anon_sym_BSLASHnotecite] = ACTIONS(12493), + [anon_sym_BSLASHpnotecite] = ACTIONS(12493), + [anon_sym_BSLASHPnotecite] = ACTIONS(12493), + [anon_sym_BSLASHfnotecite] = ACTIONS(12493), + [anon_sym_BSLASHusepackage] = ACTIONS(12493), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12493), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12493), + [anon_sym_BSLASHinclude] = ACTIONS(12493), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12493), + [anon_sym_BSLASHinput] = ACTIONS(12493), + [anon_sym_BSLASHsubfile] = ACTIONS(12493), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12493), + [anon_sym_BSLASHbibliography] = ACTIONS(12493), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12493), + [anon_sym_BSLASHincludesvg] = ACTIONS(12493), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12493), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12493), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12493), + [anon_sym_BSLASHimport] = ACTIONS(12493), + [anon_sym_BSLASHsubimport] = ACTIONS(12493), + [anon_sym_BSLASHinputfrom] = ACTIONS(12493), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12493), + [anon_sym_BSLASHincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHlabel] = ACTIONS(12493), + [anon_sym_BSLASHref] = ACTIONS(12493), + [anon_sym_BSLASHvref] = ACTIONS(12493), + [anon_sym_BSLASHVref] = ACTIONS(12493), + [anon_sym_BSLASHautoref] = ACTIONS(12493), + [anon_sym_BSLASHpageref] = ACTIONS(12493), + [anon_sym_BSLASHcref] = ACTIONS(12493), + [anon_sym_BSLASHCref] = ACTIONS(12493), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnameCref] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHlabelcref] = ACTIONS(12493), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12493), + [anon_sym_BSLASHeqref] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange] = ACTIONS(12493), + [anon_sym_BSLASHCrefrange] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewlabel] = ACTIONS(12493), + [anon_sym_BSLASHnewcommand] = ACTIONS(12493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12493), + [anon_sym_BSLASHgls] = ACTIONS(12493), + [anon_sym_BSLASHGls] = ACTIONS(12493), + [anon_sym_BSLASHGLS] = ACTIONS(12493), + [anon_sym_BSLASHglspl] = ACTIONS(12493), + [anon_sym_BSLASHGlspl] = ACTIONS(12493), + [anon_sym_BSLASHGLSpl] = ACTIONS(12493), + [anon_sym_BSLASHglsdisp] = ACTIONS(12493), + [anon_sym_BSLASHglslink] = ACTIONS(12493), + [anon_sym_BSLASHglstext] = ACTIONS(12493), + [anon_sym_BSLASHGlstext] = ACTIONS(12493), + [anon_sym_BSLASHGLStext] = ACTIONS(12493), + [anon_sym_BSLASHglsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12493), + [anon_sym_BSLASHglsplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSplural] = ACTIONS(12493), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHglsname] = ACTIONS(12493), + [anon_sym_BSLASHGlsname] = ACTIONS(12493), + [anon_sym_BSLASHGLSname] = ACTIONS(12493), + [anon_sym_BSLASHglssymbol] = ACTIONS(12493), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12493), + [anon_sym_BSLASHglsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12493), + [anon_sym_BSLASHglsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12493), + [anon_sym_BSLASHglsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12493), + [anon_sym_BSLASHglsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12493), + [anon_sym_BSLASHglsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12493), + [anon_sym_BSLASHnewacronym] = ACTIONS(12493), + [anon_sym_BSLASHacrshort] = ACTIONS(12493), + [anon_sym_BSLASHAcrshort] = ACTIONS(12493), + [anon_sym_BSLASHACRshort] = ACTIONS(12493), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12493), + [anon_sym_BSLASHacrlong] = ACTIONS(12493), + [anon_sym_BSLASHAcrlong] = ACTIONS(12493), + [anon_sym_BSLASHACRlong] = ACTIONS(12493), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12493), + [anon_sym_BSLASHacrfull] = ACTIONS(12493), + [anon_sym_BSLASHAcrfull] = ACTIONS(12493), + [anon_sym_BSLASHACRfull] = ACTIONS(12493), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12493), + [anon_sym_BSLASHacs] = ACTIONS(12493), + [anon_sym_BSLASHAcs] = ACTIONS(12493), + [anon_sym_BSLASHacsp] = ACTIONS(12493), + [anon_sym_BSLASHAcsp] = ACTIONS(12493), + [anon_sym_BSLASHacl] = ACTIONS(12493), + [anon_sym_BSLASHAcl] = ACTIONS(12493), + [anon_sym_BSLASHaclp] = ACTIONS(12493), + [anon_sym_BSLASHAclp] = ACTIONS(12493), + [anon_sym_BSLASHacf] = ACTIONS(12493), + [anon_sym_BSLASHAcf] = ACTIONS(12493), + [anon_sym_BSLASHacfp] = ACTIONS(12493), + [anon_sym_BSLASHAcfp] = ACTIONS(12493), + [anon_sym_BSLASHac] = ACTIONS(12493), + [anon_sym_BSLASHAc] = ACTIONS(12493), + [anon_sym_BSLASHacp] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12493), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12493), + [anon_sym_BSLASHcolor] = ACTIONS(12493), + [anon_sym_BSLASHcolorbox] = ACTIONS(12493), + [anon_sym_BSLASHtextcolor] = ACTIONS(12493), + [anon_sym_BSLASHpagecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12493), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12493), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12493), + }, + [1209] = { + [sym_generic_command_name] = ACTIONS(12124), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12124), + [aux_sym_subsection_token1] = ACTIONS(12124), + [aux_sym_subsubsection_token1] = ACTIONS(12124), + [aux_sym_paragraph_token1] = ACTIONS(12124), + [aux_sym_subparagraph_token1] = ACTIONS(12124), + [anon_sym_BSLASHitem] = ACTIONS(12124), + [anon_sym_LBRACK] = ACTIONS(12122), + [anon_sym_RBRACK] = ACTIONS(12122), + [anon_sym_LBRACE] = ACTIONS(12122), + [anon_sym_RBRACE] = ACTIONS(12122), + [anon_sym_LPAREN] = ACTIONS(12122), + [anon_sym_COMMA] = ACTIONS(12122), + [anon_sym_EQ] = ACTIONS(12122), + [sym_word] = ACTIONS(12122), + [sym_param] = ACTIONS(12122), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12122), + [anon_sym_DOLLAR] = ACTIONS(12124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12122), + [anon_sym_BSLASHbegin] = ACTIONS(12124), + [anon_sym_BSLASHcaption] = ACTIONS(12124), + [anon_sym_BSLASHcite] = ACTIONS(12124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCite] = ACTIONS(12124), + [anon_sym_BSLASHnocite] = ACTIONS(12124), + [anon_sym_BSLASHcitet] = ACTIONS(12124), + [anon_sym_BSLASHcitep] = ACTIONS(12124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteauthor] = ACTIONS(12124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitetitle] = ACTIONS(12124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteyear] = ACTIONS(12124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitedate] = ACTIONS(12124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteurl] = ACTIONS(12124), + [anon_sym_BSLASHfullcite] = ACTIONS(12124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12124), + [anon_sym_BSLASHcitealt] = ACTIONS(12124), + [anon_sym_BSLASHcitealp] = ACTIONS(12124), + [anon_sym_BSLASHcitetext] = ACTIONS(12124), + [anon_sym_BSLASHparencite] = ACTIONS(12124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHParencite] = ACTIONS(12124), + [anon_sym_BSLASHfootcite] = ACTIONS(12124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12124), + [anon_sym_BSLASHtextcite] = ACTIONS(12124), + [anon_sym_BSLASHTextcite] = ACTIONS(12124), + [anon_sym_BSLASHsmartcite] = ACTIONS(12124), + [anon_sym_BSLASHSmartcite] = ACTIONS(12124), + [anon_sym_BSLASHsupercite] = ACTIONS(12124), + [anon_sym_BSLASHautocite] = ACTIONS(12124), + [anon_sym_BSLASHAutocite] = ACTIONS(12124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHvolcite] = ACTIONS(12124), + [anon_sym_BSLASHVolcite] = ACTIONS(12124), + [anon_sym_BSLASHpvolcite] = ACTIONS(12124), + [anon_sym_BSLASHPvolcite] = ACTIONS(12124), + [anon_sym_BSLASHfvolcite] = ACTIONS(12124), + [anon_sym_BSLASHftvolcite] = ACTIONS(12124), + [anon_sym_BSLASHsvolcite] = ACTIONS(12124), + [anon_sym_BSLASHSvolcite] = ACTIONS(12124), + [anon_sym_BSLASHtvolcite] = ACTIONS(12124), + [anon_sym_BSLASHTvolcite] = ACTIONS(12124), + [anon_sym_BSLASHavolcite] = ACTIONS(12124), + [anon_sym_BSLASHAvolcite] = ACTIONS(12124), + [anon_sym_BSLASHnotecite] = ACTIONS(12124), + [anon_sym_BSLASHpnotecite] = ACTIONS(12124), + [anon_sym_BSLASHPnotecite] = ACTIONS(12124), + [anon_sym_BSLASHfnotecite] = ACTIONS(12124), + [anon_sym_BSLASHusepackage] = ACTIONS(12124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12124), + [anon_sym_BSLASHinclude] = ACTIONS(12124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12124), + [anon_sym_BSLASHinput] = ACTIONS(12124), + [anon_sym_BSLASHsubfile] = ACTIONS(12124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12124), + [anon_sym_BSLASHbibliography] = ACTIONS(12124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12124), + [anon_sym_BSLASHincludesvg] = ACTIONS(12124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12124), + [anon_sym_BSLASHimport] = ACTIONS(12124), + [anon_sym_BSLASHsubimport] = ACTIONS(12124), + [anon_sym_BSLASHinputfrom] = ACTIONS(12124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12124), + [anon_sym_BSLASHincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHlabel] = ACTIONS(12124), + [anon_sym_BSLASHref] = ACTIONS(12124), + [anon_sym_BSLASHvref] = ACTIONS(12124), + [anon_sym_BSLASHVref] = ACTIONS(12124), + [anon_sym_BSLASHautoref] = ACTIONS(12124), + [anon_sym_BSLASHpageref] = ACTIONS(12124), + [anon_sym_BSLASHcref] = ACTIONS(12124), + [anon_sym_BSLASHCref] = ACTIONS(12124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnameCref] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHlabelcref] = ACTIONS(12124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12124), + [anon_sym_BSLASHeqref] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange] = ACTIONS(12124), + [anon_sym_BSLASHCrefrange] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewlabel] = ACTIONS(12124), + [anon_sym_BSLASHnewcommand] = ACTIONS(12124), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12124), + [anon_sym_BSLASHgls] = ACTIONS(12124), + [anon_sym_BSLASHGls] = ACTIONS(12124), + [anon_sym_BSLASHGLS] = ACTIONS(12124), + [anon_sym_BSLASHglspl] = ACTIONS(12124), + [anon_sym_BSLASHGlspl] = ACTIONS(12124), + [anon_sym_BSLASHGLSpl] = ACTIONS(12124), + [anon_sym_BSLASHglsdisp] = ACTIONS(12124), + [anon_sym_BSLASHglslink] = ACTIONS(12124), + [anon_sym_BSLASHglstext] = ACTIONS(12124), + [anon_sym_BSLASHGlstext] = ACTIONS(12124), + [anon_sym_BSLASHGLStext] = ACTIONS(12124), + [anon_sym_BSLASHglsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12124), + [anon_sym_BSLASHglsplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSplural] = ACTIONS(12124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHglsname] = ACTIONS(12124), + [anon_sym_BSLASHGlsname] = ACTIONS(12124), + [anon_sym_BSLASHGLSname] = ACTIONS(12124), + [anon_sym_BSLASHglssymbol] = ACTIONS(12124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12124), + [anon_sym_BSLASHglsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12124), + [anon_sym_BSLASHglsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12124), + [anon_sym_BSLASHglsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12124), + [anon_sym_BSLASHglsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12124), + [anon_sym_BSLASHglsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12124), + [anon_sym_BSLASHnewacronym] = ACTIONS(12124), + [anon_sym_BSLASHacrshort] = ACTIONS(12124), + [anon_sym_BSLASHAcrshort] = ACTIONS(12124), + [anon_sym_BSLASHACRshort] = ACTIONS(12124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12124), + [anon_sym_BSLASHacrlong] = ACTIONS(12124), + [anon_sym_BSLASHAcrlong] = ACTIONS(12124), + [anon_sym_BSLASHACRlong] = ACTIONS(12124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12124), + [anon_sym_BSLASHacrfull] = ACTIONS(12124), + [anon_sym_BSLASHAcrfull] = ACTIONS(12124), + [anon_sym_BSLASHACRfull] = ACTIONS(12124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12124), + [anon_sym_BSLASHacs] = ACTIONS(12124), + [anon_sym_BSLASHAcs] = ACTIONS(12124), + [anon_sym_BSLASHacsp] = ACTIONS(12124), + [anon_sym_BSLASHAcsp] = ACTIONS(12124), + [anon_sym_BSLASHacl] = ACTIONS(12124), + [anon_sym_BSLASHAcl] = ACTIONS(12124), + [anon_sym_BSLASHaclp] = ACTIONS(12124), + [anon_sym_BSLASHAclp] = ACTIONS(12124), + [anon_sym_BSLASHacf] = ACTIONS(12124), + [anon_sym_BSLASHAcf] = ACTIONS(12124), + [anon_sym_BSLASHacfp] = ACTIONS(12124), + [anon_sym_BSLASHAcfp] = ACTIONS(12124), + [anon_sym_BSLASHac] = ACTIONS(12124), + [anon_sym_BSLASHAc] = ACTIONS(12124), + [anon_sym_BSLASHacp] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12124), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12124), + [anon_sym_BSLASHcolor] = ACTIONS(12124), + [anon_sym_BSLASHcolorbox] = ACTIONS(12124), + [anon_sym_BSLASHtextcolor] = ACTIONS(12124), + [anon_sym_BSLASHpagecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12124), + }, + [1210] = { + [sym_generic_command_name] = ACTIONS(12497), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12497), + [aux_sym_subsection_token1] = ACTIONS(12497), + [aux_sym_subsubsection_token1] = ACTIONS(12497), + [aux_sym_paragraph_token1] = ACTIONS(12497), + [aux_sym_subparagraph_token1] = ACTIONS(12497), + [anon_sym_BSLASHitem] = ACTIONS(12497), + [anon_sym_LBRACK] = ACTIONS(12495), + [anon_sym_RBRACK] = ACTIONS(12495), + [anon_sym_LBRACE] = ACTIONS(12495), + [anon_sym_RBRACE] = ACTIONS(12495), + [anon_sym_LPAREN] = ACTIONS(12495), + [anon_sym_COMMA] = ACTIONS(12495), + [anon_sym_EQ] = ACTIONS(12495), + [sym_word] = ACTIONS(12495), + [sym_param] = ACTIONS(12495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12495), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12495), + [anon_sym_DOLLAR] = ACTIONS(12497), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12495), + [anon_sym_BSLASHbegin] = ACTIONS(12497), + [anon_sym_BSLASHcaption] = ACTIONS(12497), + [anon_sym_BSLASHcite] = ACTIONS(12497), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCite] = ACTIONS(12497), + [anon_sym_BSLASHnocite] = ACTIONS(12497), + [anon_sym_BSLASHcitet] = ACTIONS(12497), + [anon_sym_BSLASHcitep] = ACTIONS(12497), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteauthor] = ACTIONS(12497), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12497), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitetitle] = ACTIONS(12497), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteyear] = ACTIONS(12497), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitedate] = ACTIONS(12497), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteurl] = ACTIONS(12497), + [anon_sym_BSLASHfullcite] = ACTIONS(12497), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12497), + [anon_sym_BSLASHcitealt] = ACTIONS(12497), + [anon_sym_BSLASHcitealp] = ACTIONS(12497), + [anon_sym_BSLASHcitetext] = ACTIONS(12497), + [anon_sym_BSLASHparencite] = ACTIONS(12497), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHParencite] = ACTIONS(12497), + [anon_sym_BSLASHfootcite] = ACTIONS(12497), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12497), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12497), + [anon_sym_BSLASHtextcite] = ACTIONS(12497), + [anon_sym_BSLASHTextcite] = ACTIONS(12497), + [anon_sym_BSLASHsmartcite] = ACTIONS(12497), + [anon_sym_BSLASHSmartcite] = ACTIONS(12497), + [anon_sym_BSLASHsupercite] = ACTIONS(12497), + [anon_sym_BSLASHautocite] = ACTIONS(12497), + [anon_sym_BSLASHAutocite] = ACTIONS(12497), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHvolcite] = ACTIONS(12497), + [anon_sym_BSLASHVolcite] = ACTIONS(12497), + [anon_sym_BSLASHpvolcite] = ACTIONS(12497), + [anon_sym_BSLASHPvolcite] = ACTIONS(12497), + [anon_sym_BSLASHfvolcite] = ACTIONS(12497), + [anon_sym_BSLASHftvolcite] = ACTIONS(12497), + [anon_sym_BSLASHsvolcite] = ACTIONS(12497), + [anon_sym_BSLASHSvolcite] = ACTIONS(12497), + [anon_sym_BSLASHtvolcite] = ACTIONS(12497), + [anon_sym_BSLASHTvolcite] = ACTIONS(12497), + [anon_sym_BSLASHavolcite] = ACTIONS(12497), + [anon_sym_BSLASHAvolcite] = ACTIONS(12497), + [anon_sym_BSLASHnotecite] = ACTIONS(12497), + [anon_sym_BSLASHpnotecite] = ACTIONS(12497), + [anon_sym_BSLASHPnotecite] = ACTIONS(12497), + [anon_sym_BSLASHfnotecite] = ACTIONS(12497), + [anon_sym_BSLASHusepackage] = ACTIONS(12497), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12497), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12497), + [anon_sym_BSLASHinclude] = ACTIONS(12497), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12497), + [anon_sym_BSLASHinput] = ACTIONS(12497), + [anon_sym_BSLASHsubfile] = ACTIONS(12497), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12497), + [anon_sym_BSLASHbibliography] = ACTIONS(12497), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12497), + [anon_sym_BSLASHincludesvg] = ACTIONS(12497), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12497), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12497), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12497), + [anon_sym_BSLASHimport] = ACTIONS(12497), + [anon_sym_BSLASHsubimport] = ACTIONS(12497), + [anon_sym_BSLASHinputfrom] = ACTIONS(12497), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12497), + [anon_sym_BSLASHincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHlabel] = ACTIONS(12497), + [anon_sym_BSLASHref] = ACTIONS(12497), + [anon_sym_BSLASHvref] = ACTIONS(12497), + [anon_sym_BSLASHVref] = ACTIONS(12497), + [anon_sym_BSLASHautoref] = ACTIONS(12497), + [anon_sym_BSLASHpageref] = ACTIONS(12497), + [anon_sym_BSLASHcref] = ACTIONS(12497), + [anon_sym_BSLASHCref] = ACTIONS(12497), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnameCref] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHlabelcref] = ACTIONS(12497), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12497), + [anon_sym_BSLASHeqref] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange] = ACTIONS(12497), + [anon_sym_BSLASHCrefrange] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewlabel] = ACTIONS(12497), + [anon_sym_BSLASHnewcommand] = ACTIONS(12497), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12497), + [anon_sym_BSLASHgls] = ACTIONS(12497), + [anon_sym_BSLASHGls] = ACTIONS(12497), + [anon_sym_BSLASHGLS] = ACTIONS(12497), + [anon_sym_BSLASHglspl] = ACTIONS(12497), + [anon_sym_BSLASHGlspl] = ACTIONS(12497), + [anon_sym_BSLASHGLSpl] = ACTIONS(12497), + [anon_sym_BSLASHglsdisp] = ACTIONS(12497), + [anon_sym_BSLASHglslink] = ACTIONS(12497), + [anon_sym_BSLASHglstext] = ACTIONS(12497), + [anon_sym_BSLASHGlstext] = ACTIONS(12497), + [anon_sym_BSLASHGLStext] = ACTIONS(12497), + [anon_sym_BSLASHglsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12497), + [anon_sym_BSLASHglsplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSplural] = ACTIONS(12497), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHglsname] = ACTIONS(12497), + [anon_sym_BSLASHGlsname] = ACTIONS(12497), + [anon_sym_BSLASHGLSname] = ACTIONS(12497), + [anon_sym_BSLASHglssymbol] = ACTIONS(12497), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12497), + [anon_sym_BSLASHglsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12497), + [anon_sym_BSLASHglsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12497), + [anon_sym_BSLASHglsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12497), + [anon_sym_BSLASHglsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12497), + [anon_sym_BSLASHglsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12497), + [anon_sym_BSLASHnewacronym] = ACTIONS(12497), + [anon_sym_BSLASHacrshort] = ACTIONS(12497), + [anon_sym_BSLASHAcrshort] = ACTIONS(12497), + [anon_sym_BSLASHACRshort] = ACTIONS(12497), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12497), + [anon_sym_BSLASHacrlong] = ACTIONS(12497), + [anon_sym_BSLASHAcrlong] = ACTIONS(12497), + [anon_sym_BSLASHACRlong] = ACTIONS(12497), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12497), + [anon_sym_BSLASHacrfull] = ACTIONS(12497), + [anon_sym_BSLASHAcrfull] = ACTIONS(12497), + [anon_sym_BSLASHACRfull] = ACTIONS(12497), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12497), + [anon_sym_BSLASHacs] = ACTIONS(12497), + [anon_sym_BSLASHAcs] = ACTIONS(12497), + [anon_sym_BSLASHacsp] = ACTIONS(12497), + [anon_sym_BSLASHAcsp] = ACTIONS(12497), + [anon_sym_BSLASHacl] = ACTIONS(12497), + [anon_sym_BSLASHAcl] = ACTIONS(12497), + [anon_sym_BSLASHaclp] = ACTIONS(12497), + [anon_sym_BSLASHAclp] = ACTIONS(12497), + [anon_sym_BSLASHacf] = ACTIONS(12497), + [anon_sym_BSLASHAcf] = ACTIONS(12497), + [anon_sym_BSLASHacfp] = ACTIONS(12497), + [anon_sym_BSLASHAcfp] = ACTIONS(12497), + [anon_sym_BSLASHac] = ACTIONS(12497), + [anon_sym_BSLASHAc] = ACTIONS(12497), + [anon_sym_BSLASHacp] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12497), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12497), + [anon_sym_BSLASHcolor] = ACTIONS(12497), + [anon_sym_BSLASHcolorbox] = ACTIONS(12497), + [anon_sym_BSLASHtextcolor] = ACTIONS(12497), + [anon_sym_BSLASHpagecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12497), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12497), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12497), + }, + [1211] = { + [sym_generic_command_name] = ACTIONS(12501), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12501), + [aux_sym_subsection_token1] = ACTIONS(12501), + [aux_sym_subsubsection_token1] = ACTIONS(12501), + [aux_sym_paragraph_token1] = ACTIONS(12501), + [aux_sym_subparagraph_token1] = ACTIONS(12501), + [anon_sym_BSLASHitem] = ACTIONS(12501), + [anon_sym_LBRACK] = ACTIONS(12499), + [anon_sym_RBRACK] = ACTIONS(12499), + [anon_sym_LBRACE] = ACTIONS(12499), + [anon_sym_RBRACE] = ACTIONS(12499), + [anon_sym_LPAREN] = ACTIONS(12499), + [anon_sym_COMMA] = ACTIONS(12499), + [anon_sym_EQ] = ACTIONS(12499), + [sym_word] = ACTIONS(12499), + [sym_param] = ACTIONS(12499), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12499), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12499), + [anon_sym_DOLLAR] = ACTIONS(12501), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12499), + [anon_sym_BSLASHbegin] = ACTIONS(12501), + [anon_sym_BSLASHcaption] = ACTIONS(12501), + [anon_sym_BSLASHcite] = ACTIONS(12501), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCite] = ACTIONS(12501), + [anon_sym_BSLASHnocite] = ACTIONS(12501), + [anon_sym_BSLASHcitet] = ACTIONS(12501), + [anon_sym_BSLASHcitep] = ACTIONS(12501), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteauthor] = ACTIONS(12501), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12501), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitetitle] = ACTIONS(12501), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteyear] = ACTIONS(12501), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitedate] = ACTIONS(12501), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteurl] = ACTIONS(12501), + [anon_sym_BSLASHfullcite] = ACTIONS(12501), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12501), + [anon_sym_BSLASHcitealt] = ACTIONS(12501), + [anon_sym_BSLASHcitealp] = ACTIONS(12501), + [anon_sym_BSLASHcitetext] = ACTIONS(12501), + [anon_sym_BSLASHparencite] = ACTIONS(12501), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHParencite] = ACTIONS(12501), + [anon_sym_BSLASHfootcite] = ACTIONS(12501), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12501), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12501), + [anon_sym_BSLASHtextcite] = ACTIONS(12501), + [anon_sym_BSLASHTextcite] = ACTIONS(12501), + [anon_sym_BSLASHsmartcite] = ACTIONS(12501), + [anon_sym_BSLASHSmartcite] = ACTIONS(12501), + [anon_sym_BSLASHsupercite] = ACTIONS(12501), + [anon_sym_BSLASHautocite] = ACTIONS(12501), + [anon_sym_BSLASHAutocite] = ACTIONS(12501), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHvolcite] = ACTIONS(12501), + [anon_sym_BSLASHVolcite] = ACTIONS(12501), + [anon_sym_BSLASHpvolcite] = ACTIONS(12501), + [anon_sym_BSLASHPvolcite] = ACTIONS(12501), + [anon_sym_BSLASHfvolcite] = ACTIONS(12501), + [anon_sym_BSLASHftvolcite] = ACTIONS(12501), + [anon_sym_BSLASHsvolcite] = ACTIONS(12501), + [anon_sym_BSLASHSvolcite] = ACTIONS(12501), + [anon_sym_BSLASHtvolcite] = ACTIONS(12501), + [anon_sym_BSLASHTvolcite] = ACTIONS(12501), + [anon_sym_BSLASHavolcite] = ACTIONS(12501), + [anon_sym_BSLASHAvolcite] = ACTIONS(12501), + [anon_sym_BSLASHnotecite] = ACTIONS(12501), + [anon_sym_BSLASHpnotecite] = ACTIONS(12501), + [anon_sym_BSLASHPnotecite] = ACTIONS(12501), + [anon_sym_BSLASHfnotecite] = ACTIONS(12501), + [anon_sym_BSLASHusepackage] = ACTIONS(12501), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12501), + [anon_sym_BSLASHinclude] = ACTIONS(12501), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12501), + [anon_sym_BSLASHinput] = ACTIONS(12501), + [anon_sym_BSLASHsubfile] = ACTIONS(12501), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12501), + [anon_sym_BSLASHbibliography] = ACTIONS(12501), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12501), + [anon_sym_BSLASHincludesvg] = ACTIONS(12501), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12501), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12501), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12501), + [anon_sym_BSLASHimport] = ACTIONS(12501), + [anon_sym_BSLASHsubimport] = ACTIONS(12501), + [anon_sym_BSLASHinputfrom] = ACTIONS(12501), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12501), + [anon_sym_BSLASHincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHlabel] = ACTIONS(12501), + [anon_sym_BSLASHref] = ACTIONS(12501), + [anon_sym_BSLASHvref] = ACTIONS(12501), + [anon_sym_BSLASHVref] = ACTIONS(12501), + [anon_sym_BSLASHautoref] = ACTIONS(12501), + [anon_sym_BSLASHpageref] = ACTIONS(12501), + [anon_sym_BSLASHcref] = ACTIONS(12501), + [anon_sym_BSLASHCref] = ACTIONS(12501), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnameCref] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHlabelcref] = ACTIONS(12501), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12501), + [anon_sym_BSLASHeqref] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange] = ACTIONS(12501), + [anon_sym_BSLASHCrefrange] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewlabel] = ACTIONS(12501), + [anon_sym_BSLASHnewcommand] = ACTIONS(12501), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12501), + [anon_sym_BSLASHgls] = ACTIONS(12501), + [anon_sym_BSLASHGls] = ACTIONS(12501), + [anon_sym_BSLASHGLS] = ACTIONS(12501), + [anon_sym_BSLASHglspl] = ACTIONS(12501), + [anon_sym_BSLASHGlspl] = ACTIONS(12501), + [anon_sym_BSLASHGLSpl] = ACTIONS(12501), + [anon_sym_BSLASHglsdisp] = ACTIONS(12501), + [anon_sym_BSLASHglslink] = ACTIONS(12501), + [anon_sym_BSLASHglstext] = ACTIONS(12501), + [anon_sym_BSLASHGlstext] = ACTIONS(12501), + [anon_sym_BSLASHGLStext] = ACTIONS(12501), + [anon_sym_BSLASHglsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12501), + [anon_sym_BSLASHglsplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSplural] = ACTIONS(12501), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHglsname] = ACTIONS(12501), + [anon_sym_BSLASHGlsname] = ACTIONS(12501), + [anon_sym_BSLASHGLSname] = ACTIONS(12501), + [anon_sym_BSLASHglssymbol] = ACTIONS(12501), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12501), + [anon_sym_BSLASHglsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12501), + [anon_sym_BSLASHglsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12501), + [anon_sym_BSLASHglsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12501), + [anon_sym_BSLASHglsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12501), + [anon_sym_BSLASHglsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12501), + [anon_sym_BSLASHnewacronym] = ACTIONS(12501), + [anon_sym_BSLASHacrshort] = ACTIONS(12501), + [anon_sym_BSLASHAcrshort] = ACTIONS(12501), + [anon_sym_BSLASHACRshort] = ACTIONS(12501), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12501), + [anon_sym_BSLASHacrlong] = ACTIONS(12501), + [anon_sym_BSLASHAcrlong] = ACTIONS(12501), + [anon_sym_BSLASHACRlong] = ACTIONS(12501), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12501), + [anon_sym_BSLASHacrfull] = ACTIONS(12501), + [anon_sym_BSLASHAcrfull] = ACTIONS(12501), + [anon_sym_BSLASHACRfull] = ACTIONS(12501), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12501), + [anon_sym_BSLASHacs] = ACTIONS(12501), + [anon_sym_BSLASHAcs] = ACTIONS(12501), + [anon_sym_BSLASHacsp] = ACTIONS(12501), + [anon_sym_BSLASHAcsp] = ACTIONS(12501), + [anon_sym_BSLASHacl] = ACTIONS(12501), + [anon_sym_BSLASHAcl] = ACTIONS(12501), + [anon_sym_BSLASHaclp] = ACTIONS(12501), + [anon_sym_BSLASHAclp] = ACTIONS(12501), + [anon_sym_BSLASHacf] = ACTIONS(12501), + [anon_sym_BSLASHAcf] = ACTIONS(12501), + [anon_sym_BSLASHacfp] = ACTIONS(12501), + [anon_sym_BSLASHAcfp] = ACTIONS(12501), + [anon_sym_BSLASHac] = ACTIONS(12501), + [anon_sym_BSLASHAc] = ACTIONS(12501), + [anon_sym_BSLASHacp] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12501), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12501), + [anon_sym_BSLASHcolor] = ACTIONS(12501), + [anon_sym_BSLASHcolorbox] = ACTIONS(12501), + [anon_sym_BSLASHtextcolor] = ACTIONS(12501), + [anon_sym_BSLASHpagecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12501), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12501), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12501), + }, + [1212] = { + [sym_generic_command_name] = ACTIONS(12509), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12509), + [aux_sym_subsection_token1] = ACTIONS(12509), + [aux_sym_subsubsection_token1] = ACTIONS(12509), + [aux_sym_paragraph_token1] = ACTIONS(12509), + [aux_sym_subparagraph_token1] = ACTIONS(12509), + [anon_sym_BSLASHitem] = ACTIONS(12509), + [anon_sym_LBRACK] = ACTIONS(12507), + [anon_sym_RBRACK] = ACTIONS(12507), + [anon_sym_LBRACE] = ACTIONS(12507), + [anon_sym_RBRACE] = ACTIONS(12507), + [anon_sym_LPAREN] = ACTIONS(12507), + [anon_sym_COMMA] = ACTIONS(12507), + [anon_sym_EQ] = ACTIONS(12507), + [sym_word] = ACTIONS(12507), + [sym_param] = ACTIONS(12507), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12507), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12507), + [anon_sym_DOLLAR] = ACTIONS(12509), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12507), + [anon_sym_BSLASHbegin] = ACTIONS(12509), + [anon_sym_BSLASHcaption] = ACTIONS(12509), + [anon_sym_BSLASHcite] = ACTIONS(12509), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCite] = ACTIONS(12509), + [anon_sym_BSLASHnocite] = ACTIONS(12509), + [anon_sym_BSLASHcitet] = ACTIONS(12509), + [anon_sym_BSLASHcitep] = ACTIONS(12509), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteauthor] = ACTIONS(12509), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12509), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitetitle] = ACTIONS(12509), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteyear] = ACTIONS(12509), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitedate] = ACTIONS(12509), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteurl] = ACTIONS(12509), + [anon_sym_BSLASHfullcite] = ACTIONS(12509), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12509), + [anon_sym_BSLASHcitealt] = ACTIONS(12509), + [anon_sym_BSLASHcitealp] = ACTIONS(12509), + [anon_sym_BSLASHcitetext] = ACTIONS(12509), + [anon_sym_BSLASHparencite] = ACTIONS(12509), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHParencite] = ACTIONS(12509), + [anon_sym_BSLASHfootcite] = ACTIONS(12509), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12509), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12509), + [anon_sym_BSLASHtextcite] = ACTIONS(12509), + [anon_sym_BSLASHTextcite] = ACTIONS(12509), + [anon_sym_BSLASHsmartcite] = ACTIONS(12509), + [anon_sym_BSLASHSmartcite] = ACTIONS(12509), + [anon_sym_BSLASHsupercite] = ACTIONS(12509), + [anon_sym_BSLASHautocite] = ACTIONS(12509), + [anon_sym_BSLASHAutocite] = ACTIONS(12509), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHvolcite] = ACTIONS(12509), + [anon_sym_BSLASHVolcite] = ACTIONS(12509), + [anon_sym_BSLASHpvolcite] = ACTIONS(12509), + [anon_sym_BSLASHPvolcite] = ACTIONS(12509), + [anon_sym_BSLASHfvolcite] = ACTIONS(12509), + [anon_sym_BSLASHftvolcite] = ACTIONS(12509), + [anon_sym_BSLASHsvolcite] = ACTIONS(12509), + [anon_sym_BSLASHSvolcite] = ACTIONS(12509), + [anon_sym_BSLASHtvolcite] = ACTIONS(12509), + [anon_sym_BSLASHTvolcite] = ACTIONS(12509), + [anon_sym_BSLASHavolcite] = ACTIONS(12509), + [anon_sym_BSLASHAvolcite] = ACTIONS(12509), + [anon_sym_BSLASHnotecite] = ACTIONS(12509), + [anon_sym_BSLASHpnotecite] = ACTIONS(12509), + [anon_sym_BSLASHPnotecite] = ACTIONS(12509), + [anon_sym_BSLASHfnotecite] = ACTIONS(12509), + [anon_sym_BSLASHusepackage] = ACTIONS(12509), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12509), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12509), + [anon_sym_BSLASHinclude] = ACTIONS(12509), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12509), + [anon_sym_BSLASHinput] = ACTIONS(12509), + [anon_sym_BSLASHsubfile] = ACTIONS(12509), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12509), + [anon_sym_BSLASHbibliography] = ACTIONS(12509), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12509), + [anon_sym_BSLASHincludesvg] = ACTIONS(12509), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12509), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12509), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12509), + [anon_sym_BSLASHimport] = ACTIONS(12509), + [anon_sym_BSLASHsubimport] = ACTIONS(12509), + [anon_sym_BSLASHinputfrom] = ACTIONS(12509), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12509), + [anon_sym_BSLASHincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHlabel] = ACTIONS(12509), + [anon_sym_BSLASHref] = ACTIONS(12509), + [anon_sym_BSLASHvref] = ACTIONS(12509), + [anon_sym_BSLASHVref] = ACTIONS(12509), + [anon_sym_BSLASHautoref] = ACTIONS(12509), + [anon_sym_BSLASHpageref] = ACTIONS(12509), + [anon_sym_BSLASHcref] = ACTIONS(12509), + [anon_sym_BSLASHCref] = ACTIONS(12509), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnameCref] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHlabelcref] = ACTIONS(12509), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12509), + [anon_sym_BSLASHeqref] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange] = ACTIONS(12509), + [anon_sym_BSLASHCrefrange] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewlabel] = ACTIONS(12509), + [anon_sym_BSLASHnewcommand] = ACTIONS(12509), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12509), + [anon_sym_BSLASHgls] = ACTIONS(12509), + [anon_sym_BSLASHGls] = ACTIONS(12509), + [anon_sym_BSLASHGLS] = ACTIONS(12509), + [anon_sym_BSLASHglspl] = ACTIONS(12509), + [anon_sym_BSLASHGlspl] = ACTIONS(12509), + [anon_sym_BSLASHGLSpl] = ACTIONS(12509), + [anon_sym_BSLASHglsdisp] = ACTIONS(12509), + [anon_sym_BSLASHglslink] = ACTIONS(12509), + [anon_sym_BSLASHglstext] = ACTIONS(12509), + [anon_sym_BSLASHGlstext] = ACTIONS(12509), + [anon_sym_BSLASHGLStext] = ACTIONS(12509), + [anon_sym_BSLASHglsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12509), + [anon_sym_BSLASHglsplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSplural] = ACTIONS(12509), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHglsname] = ACTIONS(12509), + [anon_sym_BSLASHGlsname] = ACTIONS(12509), + [anon_sym_BSLASHGLSname] = ACTIONS(12509), + [anon_sym_BSLASHglssymbol] = ACTIONS(12509), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12509), + [anon_sym_BSLASHglsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12509), + [anon_sym_BSLASHglsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12509), + [anon_sym_BSLASHglsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12509), + [anon_sym_BSLASHglsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12509), + [anon_sym_BSLASHglsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12509), + [anon_sym_BSLASHnewacronym] = ACTIONS(12509), + [anon_sym_BSLASHacrshort] = ACTIONS(12509), + [anon_sym_BSLASHAcrshort] = ACTIONS(12509), + [anon_sym_BSLASHACRshort] = ACTIONS(12509), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12509), + [anon_sym_BSLASHacrlong] = ACTIONS(12509), + [anon_sym_BSLASHAcrlong] = ACTIONS(12509), + [anon_sym_BSLASHACRlong] = ACTIONS(12509), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12509), + [anon_sym_BSLASHacrfull] = ACTIONS(12509), + [anon_sym_BSLASHAcrfull] = ACTIONS(12509), + [anon_sym_BSLASHACRfull] = ACTIONS(12509), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12509), + [anon_sym_BSLASHacs] = ACTIONS(12509), + [anon_sym_BSLASHAcs] = ACTIONS(12509), + [anon_sym_BSLASHacsp] = ACTIONS(12509), + [anon_sym_BSLASHAcsp] = ACTIONS(12509), + [anon_sym_BSLASHacl] = ACTIONS(12509), + [anon_sym_BSLASHAcl] = ACTIONS(12509), + [anon_sym_BSLASHaclp] = ACTIONS(12509), + [anon_sym_BSLASHAclp] = ACTIONS(12509), + [anon_sym_BSLASHacf] = ACTIONS(12509), + [anon_sym_BSLASHAcf] = ACTIONS(12509), + [anon_sym_BSLASHacfp] = ACTIONS(12509), + [anon_sym_BSLASHAcfp] = ACTIONS(12509), + [anon_sym_BSLASHac] = ACTIONS(12509), + [anon_sym_BSLASHAc] = ACTIONS(12509), + [anon_sym_BSLASHacp] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12509), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12509), + [anon_sym_BSLASHcolor] = ACTIONS(12509), + [anon_sym_BSLASHcolorbox] = ACTIONS(12509), + [anon_sym_BSLASHtextcolor] = ACTIONS(12509), + [anon_sym_BSLASHpagecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12509), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12509), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12509), + }, + [1213] = { + [sym_generic_command_name] = ACTIONS(12513), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12513), + [aux_sym_subsection_token1] = ACTIONS(12513), + [aux_sym_subsubsection_token1] = ACTIONS(12513), + [aux_sym_paragraph_token1] = ACTIONS(12513), + [aux_sym_subparagraph_token1] = ACTIONS(12513), + [anon_sym_BSLASHitem] = ACTIONS(12513), + [anon_sym_LBRACK] = ACTIONS(12511), + [anon_sym_RBRACK] = ACTIONS(12511), + [anon_sym_LBRACE] = ACTIONS(12719), + [anon_sym_RBRACE] = ACTIONS(12511), + [anon_sym_LPAREN] = ACTIONS(12511), + [anon_sym_COMMA] = ACTIONS(12511), + [anon_sym_EQ] = ACTIONS(12511), + [sym_word] = ACTIONS(12511), + [sym_param] = ACTIONS(12511), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12511), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12511), + [anon_sym_DOLLAR] = ACTIONS(12513), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12511), + [anon_sym_BSLASHbegin] = ACTIONS(12513), + [anon_sym_BSLASHcaption] = ACTIONS(12513), + [anon_sym_BSLASHcite] = ACTIONS(12513), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCite] = ACTIONS(12513), + [anon_sym_BSLASHnocite] = ACTIONS(12513), + [anon_sym_BSLASHcitet] = ACTIONS(12513), + [anon_sym_BSLASHcitep] = ACTIONS(12513), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteauthor] = ACTIONS(12513), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12513), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitetitle] = ACTIONS(12513), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteyear] = ACTIONS(12513), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitedate] = ACTIONS(12513), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteurl] = ACTIONS(12513), + [anon_sym_BSLASHfullcite] = ACTIONS(12513), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12513), + [anon_sym_BSLASHcitealt] = ACTIONS(12513), + [anon_sym_BSLASHcitealp] = ACTIONS(12513), + [anon_sym_BSLASHcitetext] = ACTIONS(12513), + [anon_sym_BSLASHparencite] = ACTIONS(12513), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHParencite] = ACTIONS(12513), + [anon_sym_BSLASHfootcite] = ACTIONS(12513), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12513), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12513), + [anon_sym_BSLASHtextcite] = ACTIONS(12513), + [anon_sym_BSLASHTextcite] = ACTIONS(12513), + [anon_sym_BSLASHsmartcite] = ACTIONS(12513), + [anon_sym_BSLASHSmartcite] = ACTIONS(12513), + [anon_sym_BSLASHsupercite] = ACTIONS(12513), + [anon_sym_BSLASHautocite] = ACTIONS(12513), + [anon_sym_BSLASHAutocite] = ACTIONS(12513), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHvolcite] = ACTIONS(12513), + [anon_sym_BSLASHVolcite] = ACTIONS(12513), + [anon_sym_BSLASHpvolcite] = ACTIONS(12513), + [anon_sym_BSLASHPvolcite] = ACTIONS(12513), + [anon_sym_BSLASHfvolcite] = ACTIONS(12513), + [anon_sym_BSLASHftvolcite] = ACTIONS(12513), + [anon_sym_BSLASHsvolcite] = ACTIONS(12513), + [anon_sym_BSLASHSvolcite] = ACTIONS(12513), + [anon_sym_BSLASHtvolcite] = ACTIONS(12513), + [anon_sym_BSLASHTvolcite] = ACTIONS(12513), + [anon_sym_BSLASHavolcite] = ACTIONS(12513), + [anon_sym_BSLASHAvolcite] = ACTIONS(12513), + [anon_sym_BSLASHnotecite] = ACTIONS(12513), + [anon_sym_BSLASHpnotecite] = ACTIONS(12513), + [anon_sym_BSLASHPnotecite] = ACTIONS(12513), + [anon_sym_BSLASHfnotecite] = ACTIONS(12513), + [anon_sym_BSLASHusepackage] = ACTIONS(12513), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12513), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12513), + [anon_sym_BSLASHinclude] = ACTIONS(12513), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12513), + [anon_sym_BSLASHinput] = ACTIONS(12513), + [anon_sym_BSLASHsubfile] = ACTIONS(12513), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12513), + [anon_sym_BSLASHbibliography] = ACTIONS(12513), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12513), + [anon_sym_BSLASHincludesvg] = ACTIONS(12513), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12513), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12513), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12513), + [anon_sym_BSLASHimport] = ACTIONS(12513), + [anon_sym_BSLASHsubimport] = ACTIONS(12513), + [anon_sym_BSLASHinputfrom] = ACTIONS(12513), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12513), + [anon_sym_BSLASHincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHlabel] = ACTIONS(12513), + [anon_sym_BSLASHref] = ACTIONS(12513), + [anon_sym_BSLASHvref] = ACTIONS(12513), + [anon_sym_BSLASHVref] = ACTIONS(12513), + [anon_sym_BSLASHautoref] = ACTIONS(12513), + [anon_sym_BSLASHpageref] = ACTIONS(12513), + [anon_sym_BSLASHcref] = ACTIONS(12513), + [anon_sym_BSLASHCref] = ACTIONS(12513), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnameCref] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHlabelcref] = ACTIONS(12513), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12513), + [anon_sym_BSLASHeqref] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange] = ACTIONS(12513), + [anon_sym_BSLASHCrefrange] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewlabel] = ACTIONS(12513), + [anon_sym_BSLASHnewcommand] = ACTIONS(12513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12513), + [anon_sym_BSLASHgls] = ACTIONS(12513), + [anon_sym_BSLASHGls] = ACTIONS(12513), + [anon_sym_BSLASHGLS] = ACTIONS(12513), + [anon_sym_BSLASHglspl] = ACTIONS(12513), + [anon_sym_BSLASHGlspl] = ACTIONS(12513), + [anon_sym_BSLASHGLSpl] = ACTIONS(12513), + [anon_sym_BSLASHglsdisp] = ACTIONS(12513), + [anon_sym_BSLASHglslink] = ACTIONS(12513), + [anon_sym_BSLASHglstext] = ACTIONS(12513), + [anon_sym_BSLASHGlstext] = ACTIONS(12513), + [anon_sym_BSLASHGLStext] = ACTIONS(12513), + [anon_sym_BSLASHglsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12513), + [anon_sym_BSLASHglsplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSplural] = ACTIONS(12513), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHglsname] = ACTIONS(12513), + [anon_sym_BSLASHGlsname] = ACTIONS(12513), + [anon_sym_BSLASHGLSname] = ACTIONS(12513), + [anon_sym_BSLASHglssymbol] = ACTIONS(12513), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12513), + [anon_sym_BSLASHglsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12513), + [anon_sym_BSLASHglsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12513), + [anon_sym_BSLASHglsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12513), + [anon_sym_BSLASHglsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12513), + [anon_sym_BSLASHglsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12513), + [anon_sym_BSLASHnewacronym] = ACTIONS(12513), + [anon_sym_BSLASHacrshort] = ACTIONS(12513), + [anon_sym_BSLASHAcrshort] = ACTIONS(12513), + [anon_sym_BSLASHACRshort] = ACTIONS(12513), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12513), + [anon_sym_BSLASHacrlong] = ACTIONS(12513), + [anon_sym_BSLASHAcrlong] = ACTIONS(12513), + [anon_sym_BSLASHACRlong] = ACTIONS(12513), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12513), + [anon_sym_BSLASHacrfull] = ACTIONS(12513), + [anon_sym_BSLASHAcrfull] = ACTIONS(12513), + [anon_sym_BSLASHACRfull] = ACTIONS(12513), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12513), + [anon_sym_BSLASHacs] = ACTIONS(12513), + [anon_sym_BSLASHAcs] = ACTIONS(12513), + [anon_sym_BSLASHacsp] = ACTIONS(12513), + [anon_sym_BSLASHAcsp] = ACTIONS(12513), + [anon_sym_BSLASHacl] = ACTIONS(12513), + [anon_sym_BSLASHAcl] = ACTIONS(12513), + [anon_sym_BSLASHaclp] = ACTIONS(12513), + [anon_sym_BSLASHAclp] = ACTIONS(12513), + [anon_sym_BSLASHacf] = ACTIONS(12513), + [anon_sym_BSLASHAcf] = ACTIONS(12513), + [anon_sym_BSLASHacfp] = ACTIONS(12513), + [anon_sym_BSLASHAcfp] = ACTIONS(12513), + [anon_sym_BSLASHac] = ACTIONS(12513), + [anon_sym_BSLASHAc] = ACTIONS(12513), + [anon_sym_BSLASHacp] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12513), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12513), + [anon_sym_BSLASHcolor] = ACTIONS(12513), + [anon_sym_BSLASHcolorbox] = ACTIONS(12513), + [anon_sym_BSLASHtextcolor] = ACTIONS(12513), + [anon_sym_BSLASHpagecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12513), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12513), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12513), + }, + [1214] = { + [sym_generic_command_name] = ACTIONS(12519), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12519), + [aux_sym_subsection_token1] = ACTIONS(12519), + [aux_sym_subsubsection_token1] = ACTIONS(12519), + [aux_sym_paragraph_token1] = ACTIONS(12519), + [aux_sym_subparagraph_token1] = ACTIONS(12519), + [anon_sym_BSLASHitem] = ACTIONS(12519), + [anon_sym_LBRACK] = ACTIONS(12517), + [anon_sym_RBRACK] = ACTIONS(12517), + [anon_sym_LBRACE] = ACTIONS(12517), + [anon_sym_RBRACE] = ACTIONS(12517), + [anon_sym_LPAREN] = ACTIONS(12517), + [anon_sym_COMMA] = ACTIONS(12517), + [anon_sym_EQ] = ACTIONS(12517), + [sym_word] = ACTIONS(12517), + [sym_param] = ACTIONS(12517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12517), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12517), + [anon_sym_DOLLAR] = ACTIONS(12519), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12517), + [anon_sym_BSLASHbegin] = ACTIONS(12519), + [anon_sym_BSLASHcaption] = ACTIONS(12519), + [anon_sym_BSLASHcite] = ACTIONS(12519), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCite] = ACTIONS(12519), + [anon_sym_BSLASHnocite] = ACTIONS(12519), + [anon_sym_BSLASHcitet] = ACTIONS(12519), + [anon_sym_BSLASHcitep] = ACTIONS(12519), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteauthor] = ACTIONS(12519), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12519), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitetitle] = ACTIONS(12519), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteyear] = ACTIONS(12519), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitedate] = ACTIONS(12519), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteurl] = ACTIONS(12519), + [anon_sym_BSLASHfullcite] = ACTIONS(12519), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12519), + [anon_sym_BSLASHcitealt] = ACTIONS(12519), + [anon_sym_BSLASHcitealp] = ACTIONS(12519), + [anon_sym_BSLASHcitetext] = ACTIONS(12519), + [anon_sym_BSLASHparencite] = ACTIONS(12519), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHParencite] = ACTIONS(12519), + [anon_sym_BSLASHfootcite] = ACTIONS(12519), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12519), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12519), + [anon_sym_BSLASHtextcite] = ACTIONS(12519), + [anon_sym_BSLASHTextcite] = ACTIONS(12519), + [anon_sym_BSLASHsmartcite] = ACTIONS(12519), + [anon_sym_BSLASHSmartcite] = ACTIONS(12519), + [anon_sym_BSLASHsupercite] = ACTIONS(12519), + [anon_sym_BSLASHautocite] = ACTIONS(12519), + [anon_sym_BSLASHAutocite] = ACTIONS(12519), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHvolcite] = ACTIONS(12519), + [anon_sym_BSLASHVolcite] = ACTIONS(12519), + [anon_sym_BSLASHpvolcite] = ACTIONS(12519), + [anon_sym_BSLASHPvolcite] = ACTIONS(12519), + [anon_sym_BSLASHfvolcite] = ACTIONS(12519), + [anon_sym_BSLASHftvolcite] = ACTIONS(12519), + [anon_sym_BSLASHsvolcite] = ACTIONS(12519), + [anon_sym_BSLASHSvolcite] = ACTIONS(12519), + [anon_sym_BSLASHtvolcite] = ACTIONS(12519), + [anon_sym_BSLASHTvolcite] = ACTIONS(12519), + [anon_sym_BSLASHavolcite] = ACTIONS(12519), + [anon_sym_BSLASHAvolcite] = ACTIONS(12519), + [anon_sym_BSLASHnotecite] = ACTIONS(12519), + [anon_sym_BSLASHpnotecite] = ACTIONS(12519), + [anon_sym_BSLASHPnotecite] = ACTIONS(12519), + [anon_sym_BSLASHfnotecite] = ACTIONS(12519), + [anon_sym_BSLASHusepackage] = ACTIONS(12519), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12519), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12519), + [anon_sym_BSLASHinclude] = ACTIONS(12519), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12519), + [anon_sym_BSLASHinput] = ACTIONS(12519), + [anon_sym_BSLASHsubfile] = ACTIONS(12519), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12519), + [anon_sym_BSLASHbibliography] = ACTIONS(12519), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12519), + [anon_sym_BSLASHincludesvg] = ACTIONS(12519), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12519), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12519), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12519), + [anon_sym_BSLASHimport] = ACTIONS(12519), + [anon_sym_BSLASHsubimport] = ACTIONS(12519), + [anon_sym_BSLASHinputfrom] = ACTIONS(12519), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12519), + [anon_sym_BSLASHincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHlabel] = ACTIONS(12519), + [anon_sym_BSLASHref] = ACTIONS(12519), + [anon_sym_BSLASHvref] = ACTIONS(12519), + [anon_sym_BSLASHVref] = ACTIONS(12519), + [anon_sym_BSLASHautoref] = ACTIONS(12519), + [anon_sym_BSLASHpageref] = ACTIONS(12519), + [anon_sym_BSLASHcref] = ACTIONS(12519), + [anon_sym_BSLASHCref] = ACTIONS(12519), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnameCref] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHlabelcref] = ACTIONS(12519), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12519), + [anon_sym_BSLASHeqref] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange] = ACTIONS(12519), + [anon_sym_BSLASHCrefrange] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewlabel] = ACTIONS(12519), + [anon_sym_BSLASHnewcommand] = ACTIONS(12519), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12519), + [anon_sym_BSLASHgls] = ACTIONS(12519), + [anon_sym_BSLASHGls] = ACTIONS(12519), + [anon_sym_BSLASHGLS] = ACTIONS(12519), + [anon_sym_BSLASHglspl] = ACTIONS(12519), + [anon_sym_BSLASHGlspl] = ACTIONS(12519), + [anon_sym_BSLASHGLSpl] = ACTIONS(12519), + [anon_sym_BSLASHglsdisp] = ACTIONS(12519), + [anon_sym_BSLASHglslink] = ACTIONS(12519), + [anon_sym_BSLASHglstext] = ACTIONS(12519), + [anon_sym_BSLASHGlstext] = ACTIONS(12519), + [anon_sym_BSLASHGLStext] = ACTIONS(12519), + [anon_sym_BSLASHglsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12519), + [anon_sym_BSLASHglsplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSplural] = ACTIONS(12519), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHglsname] = ACTIONS(12519), + [anon_sym_BSLASHGlsname] = ACTIONS(12519), + [anon_sym_BSLASHGLSname] = ACTIONS(12519), + [anon_sym_BSLASHglssymbol] = ACTIONS(12519), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12519), + [anon_sym_BSLASHglsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12519), + [anon_sym_BSLASHglsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12519), + [anon_sym_BSLASHglsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12519), + [anon_sym_BSLASHglsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12519), + [anon_sym_BSLASHglsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12519), + [anon_sym_BSLASHnewacronym] = ACTIONS(12519), + [anon_sym_BSLASHacrshort] = ACTIONS(12519), + [anon_sym_BSLASHAcrshort] = ACTIONS(12519), + [anon_sym_BSLASHACRshort] = ACTIONS(12519), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12519), + [anon_sym_BSLASHacrlong] = ACTIONS(12519), + [anon_sym_BSLASHAcrlong] = ACTIONS(12519), + [anon_sym_BSLASHACRlong] = ACTIONS(12519), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12519), + [anon_sym_BSLASHacrfull] = ACTIONS(12519), + [anon_sym_BSLASHAcrfull] = ACTIONS(12519), + [anon_sym_BSLASHACRfull] = ACTIONS(12519), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12519), + [anon_sym_BSLASHacs] = ACTIONS(12519), + [anon_sym_BSLASHAcs] = ACTIONS(12519), + [anon_sym_BSLASHacsp] = ACTIONS(12519), + [anon_sym_BSLASHAcsp] = ACTIONS(12519), + [anon_sym_BSLASHacl] = ACTIONS(12519), + [anon_sym_BSLASHAcl] = ACTIONS(12519), + [anon_sym_BSLASHaclp] = ACTIONS(12519), + [anon_sym_BSLASHAclp] = ACTIONS(12519), + [anon_sym_BSLASHacf] = ACTIONS(12519), + [anon_sym_BSLASHAcf] = ACTIONS(12519), + [anon_sym_BSLASHacfp] = ACTIONS(12519), + [anon_sym_BSLASHAcfp] = ACTIONS(12519), + [anon_sym_BSLASHac] = ACTIONS(12519), + [anon_sym_BSLASHAc] = ACTIONS(12519), + [anon_sym_BSLASHacp] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12519), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12519), + [anon_sym_BSLASHcolor] = ACTIONS(12519), + [anon_sym_BSLASHcolorbox] = ACTIONS(12519), + [anon_sym_BSLASHtextcolor] = ACTIONS(12519), + [anon_sym_BSLASHpagecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12519), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12519), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12519), + }, + [1215] = { + [sym_generic_command_name] = ACTIONS(12523), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12523), + [aux_sym_subsection_token1] = ACTIONS(12523), + [aux_sym_subsubsection_token1] = ACTIONS(12523), + [aux_sym_paragraph_token1] = ACTIONS(12523), + [aux_sym_subparagraph_token1] = ACTIONS(12523), + [anon_sym_BSLASHitem] = ACTIONS(12523), + [anon_sym_LBRACK] = ACTIONS(12521), + [anon_sym_RBRACK] = ACTIONS(12521), + [anon_sym_LBRACE] = ACTIONS(12521), + [anon_sym_RBRACE] = ACTIONS(12521), + [anon_sym_LPAREN] = ACTIONS(12521), + [anon_sym_COMMA] = ACTIONS(12521), + [anon_sym_EQ] = ACTIONS(12521), + [sym_word] = ACTIONS(12521), + [sym_param] = ACTIONS(12521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12521), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12521), + [anon_sym_DOLLAR] = ACTIONS(12523), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12521), + [anon_sym_BSLASHbegin] = ACTIONS(12523), + [anon_sym_BSLASHcaption] = ACTIONS(12523), + [anon_sym_BSLASHcite] = ACTIONS(12523), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCite] = ACTIONS(12523), + [anon_sym_BSLASHnocite] = ACTIONS(12523), + [anon_sym_BSLASHcitet] = ACTIONS(12523), + [anon_sym_BSLASHcitep] = ACTIONS(12523), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteauthor] = ACTIONS(12523), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12523), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitetitle] = ACTIONS(12523), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteyear] = ACTIONS(12523), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitedate] = ACTIONS(12523), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteurl] = ACTIONS(12523), + [anon_sym_BSLASHfullcite] = ACTIONS(12523), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12523), + [anon_sym_BSLASHcitealt] = ACTIONS(12523), + [anon_sym_BSLASHcitealp] = ACTIONS(12523), + [anon_sym_BSLASHcitetext] = ACTIONS(12523), + [anon_sym_BSLASHparencite] = ACTIONS(12523), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHParencite] = ACTIONS(12523), + [anon_sym_BSLASHfootcite] = ACTIONS(12523), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12523), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12523), + [anon_sym_BSLASHtextcite] = ACTIONS(12523), + [anon_sym_BSLASHTextcite] = ACTIONS(12523), + [anon_sym_BSLASHsmartcite] = ACTIONS(12523), + [anon_sym_BSLASHSmartcite] = ACTIONS(12523), + [anon_sym_BSLASHsupercite] = ACTIONS(12523), + [anon_sym_BSLASHautocite] = ACTIONS(12523), + [anon_sym_BSLASHAutocite] = ACTIONS(12523), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHvolcite] = ACTIONS(12523), + [anon_sym_BSLASHVolcite] = ACTIONS(12523), + [anon_sym_BSLASHpvolcite] = ACTIONS(12523), + [anon_sym_BSLASHPvolcite] = ACTIONS(12523), + [anon_sym_BSLASHfvolcite] = ACTIONS(12523), + [anon_sym_BSLASHftvolcite] = ACTIONS(12523), + [anon_sym_BSLASHsvolcite] = ACTIONS(12523), + [anon_sym_BSLASHSvolcite] = ACTIONS(12523), + [anon_sym_BSLASHtvolcite] = ACTIONS(12523), + [anon_sym_BSLASHTvolcite] = ACTIONS(12523), + [anon_sym_BSLASHavolcite] = ACTIONS(12523), + [anon_sym_BSLASHAvolcite] = ACTIONS(12523), + [anon_sym_BSLASHnotecite] = ACTIONS(12523), + [anon_sym_BSLASHpnotecite] = ACTIONS(12523), + [anon_sym_BSLASHPnotecite] = ACTIONS(12523), + [anon_sym_BSLASHfnotecite] = ACTIONS(12523), + [anon_sym_BSLASHusepackage] = ACTIONS(12523), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12523), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12523), + [anon_sym_BSLASHinclude] = ACTIONS(12523), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12523), + [anon_sym_BSLASHinput] = ACTIONS(12523), + [anon_sym_BSLASHsubfile] = ACTIONS(12523), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12523), + [anon_sym_BSLASHbibliography] = ACTIONS(12523), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12523), + [anon_sym_BSLASHincludesvg] = ACTIONS(12523), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12523), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12523), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12523), + [anon_sym_BSLASHimport] = ACTIONS(12523), + [anon_sym_BSLASHsubimport] = ACTIONS(12523), + [anon_sym_BSLASHinputfrom] = ACTIONS(12523), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12523), + [anon_sym_BSLASHincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHlabel] = ACTIONS(12523), + [anon_sym_BSLASHref] = ACTIONS(12523), + [anon_sym_BSLASHvref] = ACTIONS(12523), + [anon_sym_BSLASHVref] = ACTIONS(12523), + [anon_sym_BSLASHautoref] = ACTIONS(12523), + [anon_sym_BSLASHpageref] = ACTIONS(12523), + [anon_sym_BSLASHcref] = ACTIONS(12523), + [anon_sym_BSLASHCref] = ACTIONS(12523), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnameCref] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHlabelcref] = ACTIONS(12523), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12523), + [anon_sym_BSLASHeqref] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange] = ACTIONS(12523), + [anon_sym_BSLASHCrefrange] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewlabel] = ACTIONS(12523), + [anon_sym_BSLASHnewcommand] = ACTIONS(12523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12523), + [anon_sym_BSLASHgls] = ACTIONS(12523), + [anon_sym_BSLASHGls] = ACTIONS(12523), + [anon_sym_BSLASHGLS] = ACTIONS(12523), + [anon_sym_BSLASHglspl] = ACTIONS(12523), + [anon_sym_BSLASHGlspl] = ACTIONS(12523), + [anon_sym_BSLASHGLSpl] = ACTIONS(12523), + [anon_sym_BSLASHglsdisp] = ACTIONS(12523), + [anon_sym_BSLASHglslink] = ACTIONS(12523), + [anon_sym_BSLASHglstext] = ACTIONS(12523), + [anon_sym_BSLASHGlstext] = ACTIONS(12523), + [anon_sym_BSLASHGLStext] = ACTIONS(12523), + [anon_sym_BSLASHglsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12523), + [anon_sym_BSLASHglsplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSplural] = ACTIONS(12523), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHglsname] = ACTIONS(12523), + [anon_sym_BSLASHGlsname] = ACTIONS(12523), + [anon_sym_BSLASHGLSname] = ACTIONS(12523), + [anon_sym_BSLASHglssymbol] = ACTIONS(12523), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12523), + [anon_sym_BSLASHglsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12523), + [anon_sym_BSLASHglsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12523), + [anon_sym_BSLASHglsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12523), + [anon_sym_BSLASHglsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12523), + [anon_sym_BSLASHglsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12523), + [anon_sym_BSLASHnewacronym] = ACTIONS(12523), + [anon_sym_BSLASHacrshort] = ACTIONS(12523), + [anon_sym_BSLASHAcrshort] = ACTIONS(12523), + [anon_sym_BSLASHACRshort] = ACTIONS(12523), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12523), + [anon_sym_BSLASHacrlong] = ACTIONS(12523), + [anon_sym_BSLASHAcrlong] = ACTIONS(12523), + [anon_sym_BSLASHACRlong] = ACTIONS(12523), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12523), + [anon_sym_BSLASHacrfull] = ACTIONS(12523), + [anon_sym_BSLASHAcrfull] = ACTIONS(12523), + [anon_sym_BSLASHACRfull] = ACTIONS(12523), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12523), + [anon_sym_BSLASHacs] = ACTIONS(12523), + [anon_sym_BSLASHAcs] = ACTIONS(12523), + [anon_sym_BSLASHacsp] = ACTIONS(12523), + [anon_sym_BSLASHAcsp] = ACTIONS(12523), + [anon_sym_BSLASHacl] = ACTIONS(12523), + [anon_sym_BSLASHAcl] = ACTIONS(12523), + [anon_sym_BSLASHaclp] = ACTIONS(12523), + [anon_sym_BSLASHAclp] = ACTIONS(12523), + [anon_sym_BSLASHacf] = ACTIONS(12523), + [anon_sym_BSLASHAcf] = ACTIONS(12523), + [anon_sym_BSLASHacfp] = ACTIONS(12523), + [anon_sym_BSLASHAcfp] = ACTIONS(12523), + [anon_sym_BSLASHac] = ACTIONS(12523), + [anon_sym_BSLASHAc] = ACTIONS(12523), + [anon_sym_BSLASHacp] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12523), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12523), + [anon_sym_BSLASHcolor] = ACTIONS(12523), + [anon_sym_BSLASHcolorbox] = ACTIONS(12523), + [anon_sym_BSLASHtextcolor] = ACTIONS(12523), + [anon_sym_BSLASHpagecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12523), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12523), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12523), + }, + [1216] = { + [sym_brace_group] = STATE(3124), + [sym_generic_command_name] = ACTIONS(12092), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12092), + [aux_sym_subsubsection_token1] = ACTIONS(12092), + [aux_sym_paragraph_token1] = ACTIONS(12092), + [aux_sym_subparagraph_token1] = ACTIONS(12092), + [anon_sym_BSLASHitem] = ACTIONS(12092), + [anon_sym_LBRACK] = ACTIONS(12090), + [anon_sym_RBRACK] = ACTIONS(12090), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12090), + [anon_sym_LPAREN] = ACTIONS(12090), + [anon_sym_COMMA] = ACTIONS(12090), + [anon_sym_EQ] = ACTIONS(12090), + [sym_word] = ACTIONS(12090), + [sym_param] = ACTIONS(12090), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12090), + [anon_sym_DOLLAR] = ACTIONS(12092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12090), + [anon_sym_BSLASHbegin] = ACTIONS(12092), + [anon_sym_BSLASHcaption] = ACTIONS(12092), + [anon_sym_BSLASHcite] = ACTIONS(12092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCite] = ACTIONS(12092), + [anon_sym_BSLASHnocite] = ACTIONS(12092), + [anon_sym_BSLASHcitet] = ACTIONS(12092), + [anon_sym_BSLASHcitep] = ACTIONS(12092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteauthor] = ACTIONS(12092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitetitle] = ACTIONS(12092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteyear] = ACTIONS(12092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitedate] = ACTIONS(12092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteurl] = ACTIONS(12092), + [anon_sym_BSLASHfullcite] = ACTIONS(12092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12092), + [anon_sym_BSLASHcitealt] = ACTIONS(12092), + [anon_sym_BSLASHcitealp] = ACTIONS(12092), + [anon_sym_BSLASHcitetext] = ACTIONS(12092), + [anon_sym_BSLASHparencite] = ACTIONS(12092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHParencite] = ACTIONS(12092), + [anon_sym_BSLASHfootcite] = ACTIONS(12092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12092), + [anon_sym_BSLASHtextcite] = ACTIONS(12092), + [anon_sym_BSLASHTextcite] = ACTIONS(12092), + [anon_sym_BSLASHsmartcite] = ACTIONS(12092), + [anon_sym_BSLASHSmartcite] = ACTIONS(12092), + [anon_sym_BSLASHsupercite] = ACTIONS(12092), + [anon_sym_BSLASHautocite] = ACTIONS(12092), + [anon_sym_BSLASHAutocite] = ACTIONS(12092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHvolcite] = ACTIONS(12092), + [anon_sym_BSLASHVolcite] = ACTIONS(12092), + [anon_sym_BSLASHpvolcite] = ACTIONS(12092), + [anon_sym_BSLASHPvolcite] = ACTIONS(12092), + [anon_sym_BSLASHfvolcite] = ACTIONS(12092), + [anon_sym_BSLASHftvolcite] = ACTIONS(12092), + [anon_sym_BSLASHsvolcite] = ACTIONS(12092), + [anon_sym_BSLASHSvolcite] = ACTIONS(12092), + [anon_sym_BSLASHtvolcite] = ACTIONS(12092), + [anon_sym_BSLASHTvolcite] = ACTIONS(12092), + [anon_sym_BSLASHavolcite] = ACTIONS(12092), + [anon_sym_BSLASHAvolcite] = ACTIONS(12092), + [anon_sym_BSLASHnotecite] = ACTIONS(12092), + [anon_sym_BSLASHpnotecite] = ACTIONS(12092), + [anon_sym_BSLASHPnotecite] = ACTIONS(12092), + [anon_sym_BSLASHfnotecite] = ACTIONS(12092), + [anon_sym_BSLASHusepackage] = ACTIONS(12092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12092), + [anon_sym_BSLASHinclude] = ACTIONS(12092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12092), + [anon_sym_BSLASHinput] = ACTIONS(12092), + [anon_sym_BSLASHsubfile] = ACTIONS(12092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12092), + [anon_sym_BSLASHbibliography] = ACTIONS(12092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12092), + [anon_sym_BSLASHincludesvg] = ACTIONS(12092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12092), + [anon_sym_BSLASHimport] = ACTIONS(12092), + [anon_sym_BSLASHsubimport] = ACTIONS(12092), + [anon_sym_BSLASHinputfrom] = ACTIONS(12092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12092), + [anon_sym_BSLASHincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHlabel] = ACTIONS(12092), + [anon_sym_BSLASHref] = ACTIONS(12092), + [anon_sym_BSLASHvref] = ACTIONS(12092), + [anon_sym_BSLASHVref] = ACTIONS(12092), + [anon_sym_BSLASHautoref] = ACTIONS(12092), + [anon_sym_BSLASHpageref] = ACTIONS(12092), + [anon_sym_BSLASHcref] = ACTIONS(12092), + [anon_sym_BSLASHCref] = ACTIONS(12092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnameCref] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHlabelcref] = ACTIONS(12092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12092), + [anon_sym_BSLASHeqref] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange] = ACTIONS(12092), + [anon_sym_BSLASHCrefrange] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewlabel] = ACTIONS(12092), + [anon_sym_BSLASHnewcommand] = ACTIONS(12092), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12092), + [anon_sym_BSLASHgls] = ACTIONS(12092), + [anon_sym_BSLASHGls] = ACTIONS(12092), + [anon_sym_BSLASHGLS] = ACTIONS(12092), + [anon_sym_BSLASHglspl] = ACTIONS(12092), + [anon_sym_BSLASHGlspl] = ACTIONS(12092), + [anon_sym_BSLASHGLSpl] = ACTIONS(12092), + [anon_sym_BSLASHglsdisp] = ACTIONS(12092), + [anon_sym_BSLASHglslink] = ACTIONS(12092), + [anon_sym_BSLASHglstext] = ACTIONS(12092), + [anon_sym_BSLASHGlstext] = ACTIONS(12092), + [anon_sym_BSLASHGLStext] = ACTIONS(12092), + [anon_sym_BSLASHglsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12092), + [anon_sym_BSLASHglsplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSplural] = ACTIONS(12092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHglsname] = ACTIONS(12092), + [anon_sym_BSLASHGlsname] = ACTIONS(12092), + [anon_sym_BSLASHGLSname] = ACTIONS(12092), + [anon_sym_BSLASHglssymbol] = ACTIONS(12092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12092), + [anon_sym_BSLASHglsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12092), + [anon_sym_BSLASHglsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12092), + [anon_sym_BSLASHglsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12092), + [anon_sym_BSLASHglsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12092), + [anon_sym_BSLASHglsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12092), + [anon_sym_BSLASHnewacronym] = ACTIONS(12092), + [anon_sym_BSLASHacrshort] = ACTIONS(12092), + [anon_sym_BSLASHAcrshort] = ACTIONS(12092), + [anon_sym_BSLASHACRshort] = ACTIONS(12092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12092), + [anon_sym_BSLASHacrlong] = ACTIONS(12092), + [anon_sym_BSLASHAcrlong] = ACTIONS(12092), + [anon_sym_BSLASHACRlong] = ACTIONS(12092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12092), + [anon_sym_BSLASHacrfull] = ACTIONS(12092), + [anon_sym_BSLASHAcrfull] = ACTIONS(12092), + [anon_sym_BSLASHACRfull] = ACTIONS(12092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12092), + [anon_sym_BSLASHacs] = ACTIONS(12092), + [anon_sym_BSLASHAcs] = ACTIONS(12092), + [anon_sym_BSLASHacsp] = ACTIONS(12092), + [anon_sym_BSLASHAcsp] = ACTIONS(12092), + [anon_sym_BSLASHacl] = ACTIONS(12092), + [anon_sym_BSLASHAcl] = ACTIONS(12092), + [anon_sym_BSLASHaclp] = ACTIONS(12092), + [anon_sym_BSLASHAclp] = ACTIONS(12092), + [anon_sym_BSLASHacf] = ACTIONS(12092), + [anon_sym_BSLASHAcf] = ACTIONS(12092), + [anon_sym_BSLASHacfp] = ACTIONS(12092), + [anon_sym_BSLASHAcfp] = ACTIONS(12092), + [anon_sym_BSLASHac] = ACTIONS(12092), + [anon_sym_BSLASHAc] = ACTIONS(12092), + [anon_sym_BSLASHacp] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12092), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12092), + [anon_sym_BSLASHcolor] = ACTIONS(12092), + [anon_sym_BSLASHcolorbox] = ACTIONS(12092), + [anon_sym_BSLASHtextcolor] = ACTIONS(12092), + [anon_sym_BSLASHpagecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12092), + }, + [1217] = { + [sym_generic_command_name] = ACTIONS(12128), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12128), + [aux_sym_subsection_token1] = ACTIONS(12128), + [aux_sym_subsubsection_token1] = ACTIONS(12128), + [aux_sym_paragraph_token1] = ACTIONS(12128), + [aux_sym_subparagraph_token1] = ACTIONS(12128), + [anon_sym_BSLASHitem] = ACTIONS(12128), + [anon_sym_LBRACK] = ACTIONS(12126), + [anon_sym_RBRACK] = ACTIONS(12126), + [anon_sym_LBRACE] = ACTIONS(12126), + [anon_sym_RBRACE] = ACTIONS(12126), + [anon_sym_LPAREN] = ACTIONS(12126), + [anon_sym_COMMA] = ACTIONS(12126), + [anon_sym_EQ] = ACTIONS(12126), + [sym_word] = ACTIONS(12126), + [sym_param] = ACTIONS(12126), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12126), + [anon_sym_DOLLAR] = ACTIONS(12128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12126), + [anon_sym_BSLASHbegin] = ACTIONS(12128), + [anon_sym_BSLASHcaption] = ACTIONS(12128), + [anon_sym_BSLASHcite] = ACTIONS(12128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCite] = ACTIONS(12128), + [anon_sym_BSLASHnocite] = ACTIONS(12128), + [anon_sym_BSLASHcitet] = ACTIONS(12128), + [anon_sym_BSLASHcitep] = ACTIONS(12128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteauthor] = ACTIONS(12128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitetitle] = ACTIONS(12128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteyear] = ACTIONS(12128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitedate] = ACTIONS(12128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteurl] = ACTIONS(12128), + [anon_sym_BSLASHfullcite] = ACTIONS(12128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12128), + [anon_sym_BSLASHcitealt] = ACTIONS(12128), + [anon_sym_BSLASHcitealp] = ACTIONS(12128), + [anon_sym_BSLASHcitetext] = ACTIONS(12128), + [anon_sym_BSLASHparencite] = ACTIONS(12128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHParencite] = ACTIONS(12128), + [anon_sym_BSLASHfootcite] = ACTIONS(12128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12128), + [anon_sym_BSLASHtextcite] = ACTIONS(12128), + [anon_sym_BSLASHTextcite] = ACTIONS(12128), + [anon_sym_BSLASHsmartcite] = ACTIONS(12128), + [anon_sym_BSLASHSmartcite] = ACTIONS(12128), + [anon_sym_BSLASHsupercite] = ACTIONS(12128), + [anon_sym_BSLASHautocite] = ACTIONS(12128), + [anon_sym_BSLASHAutocite] = ACTIONS(12128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHvolcite] = ACTIONS(12128), + [anon_sym_BSLASHVolcite] = ACTIONS(12128), + [anon_sym_BSLASHpvolcite] = ACTIONS(12128), + [anon_sym_BSLASHPvolcite] = ACTIONS(12128), + [anon_sym_BSLASHfvolcite] = ACTIONS(12128), + [anon_sym_BSLASHftvolcite] = ACTIONS(12128), + [anon_sym_BSLASHsvolcite] = ACTIONS(12128), + [anon_sym_BSLASHSvolcite] = ACTIONS(12128), + [anon_sym_BSLASHtvolcite] = ACTIONS(12128), + [anon_sym_BSLASHTvolcite] = ACTIONS(12128), + [anon_sym_BSLASHavolcite] = ACTIONS(12128), + [anon_sym_BSLASHAvolcite] = ACTIONS(12128), + [anon_sym_BSLASHnotecite] = ACTIONS(12128), + [anon_sym_BSLASHpnotecite] = ACTIONS(12128), + [anon_sym_BSLASHPnotecite] = ACTIONS(12128), + [anon_sym_BSLASHfnotecite] = ACTIONS(12128), + [anon_sym_BSLASHusepackage] = ACTIONS(12128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12128), + [anon_sym_BSLASHinclude] = ACTIONS(12128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12128), + [anon_sym_BSLASHinput] = ACTIONS(12128), + [anon_sym_BSLASHsubfile] = ACTIONS(12128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12128), + [anon_sym_BSLASHbibliography] = ACTIONS(12128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12128), + [anon_sym_BSLASHincludesvg] = ACTIONS(12128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12128), + [anon_sym_BSLASHimport] = ACTIONS(12128), + [anon_sym_BSLASHsubimport] = ACTIONS(12128), + [anon_sym_BSLASHinputfrom] = ACTIONS(12128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12128), + [anon_sym_BSLASHincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHlabel] = ACTIONS(12128), + [anon_sym_BSLASHref] = ACTIONS(12128), + [anon_sym_BSLASHvref] = ACTIONS(12128), + [anon_sym_BSLASHVref] = ACTIONS(12128), + [anon_sym_BSLASHautoref] = ACTIONS(12128), + [anon_sym_BSLASHpageref] = ACTIONS(12128), + [anon_sym_BSLASHcref] = ACTIONS(12128), + [anon_sym_BSLASHCref] = ACTIONS(12128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnameCref] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHlabelcref] = ACTIONS(12128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12128), + [anon_sym_BSLASHeqref] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange] = ACTIONS(12128), + [anon_sym_BSLASHCrefrange] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewlabel] = ACTIONS(12128), + [anon_sym_BSLASHnewcommand] = ACTIONS(12128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12128), + [anon_sym_BSLASHgls] = ACTIONS(12128), + [anon_sym_BSLASHGls] = ACTIONS(12128), + [anon_sym_BSLASHGLS] = ACTIONS(12128), + [anon_sym_BSLASHglspl] = ACTIONS(12128), + [anon_sym_BSLASHGlspl] = ACTIONS(12128), + [anon_sym_BSLASHGLSpl] = ACTIONS(12128), + [anon_sym_BSLASHglsdisp] = ACTIONS(12128), + [anon_sym_BSLASHglslink] = ACTIONS(12128), + [anon_sym_BSLASHglstext] = ACTIONS(12128), + [anon_sym_BSLASHGlstext] = ACTIONS(12128), + [anon_sym_BSLASHGLStext] = ACTIONS(12128), + [anon_sym_BSLASHglsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12128), + [anon_sym_BSLASHglsplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSplural] = ACTIONS(12128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHglsname] = ACTIONS(12128), + [anon_sym_BSLASHGlsname] = ACTIONS(12128), + [anon_sym_BSLASHGLSname] = ACTIONS(12128), + [anon_sym_BSLASHglssymbol] = ACTIONS(12128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12128), + [anon_sym_BSLASHglsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12128), + [anon_sym_BSLASHglsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12128), + [anon_sym_BSLASHglsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12128), + [anon_sym_BSLASHglsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12128), + [anon_sym_BSLASHglsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12128), + [anon_sym_BSLASHnewacronym] = ACTIONS(12128), + [anon_sym_BSLASHacrshort] = ACTIONS(12128), + [anon_sym_BSLASHAcrshort] = ACTIONS(12128), + [anon_sym_BSLASHACRshort] = ACTIONS(12128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12128), + [anon_sym_BSLASHacrlong] = ACTIONS(12128), + [anon_sym_BSLASHAcrlong] = ACTIONS(12128), + [anon_sym_BSLASHACRlong] = ACTIONS(12128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12128), + [anon_sym_BSLASHacrfull] = ACTIONS(12128), + [anon_sym_BSLASHAcrfull] = ACTIONS(12128), + [anon_sym_BSLASHACRfull] = ACTIONS(12128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12128), + [anon_sym_BSLASHacs] = ACTIONS(12128), + [anon_sym_BSLASHAcs] = ACTIONS(12128), + [anon_sym_BSLASHacsp] = ACTIONS(12128), + [anon_sym_BSLASHAcsp] = ACTIONS(12128), + [anon_sym_BSLASHacl] = ACTIONS(12128), + [anon_sym_BSLASHAcl] = ACTIONS(12128), + [anon_sym_BSLASHaclp] = ACTIONS(12128), + [anon_sym_BSLASHAclp] = ACTIONS(12128), + [anon_sym_BSLASHacf] = ACTIONS(12128), + [anon_sym_BSLASHAcf] = ACTIONS(12128), + [anon_sym_BSLASHacfp] = ACTIONS(12128), + [anon_sym_BSLASHAcfp] = ACTIONS(12128), + [anon_sym_BSLASHac] = ACTIONS(12128), + [anon_sym_BSLASHAc] = ACTIONS(12128), + [anon_sym_BSLASHacp] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12128), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12128), + [anon_sym_BSLASHcolor] = ACTIONS(12128), + [anon_sym_BSLASHcolorbox] = ACTIONS(12128), + [anon_sym_BSLASHtextcolor] = ACTIONS(12128), + [anon_sym_BSLASHpagecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12128), + }, + [1218] = { + [sym_generic_command_name] = ACTIONS(12527), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12527), + [aux_sym_subsection_token1] = ACTIONS(12527), + [aux_sym_subsubsection_token1] = ACTIONS(12527), + [aux_sym_paragraph_token1] = ACTIONS(12527), + [aux_sym_subparagraph_token1] = ACTIONS(12527), + [anon_sym_BSLASHitem] = ACTIONS(12527), + [anon_sym_LBRACK] = ACTIONS(12525), + [anon_sym_RBRACK] = ACTIONS(12525), + [anon_sym_LBRACE] = ACTIONS(12525), + [anon_sym_RBRACE] = ACTIONS(12525), + [anon_sym_LPAREN] = ACTIONS(12525), + [anon_sym_COMMA] = ACTIONS(12525), + [anon_sym_EQ] = ACTIONS(12525), + [sym_word] = ACTIONS(12525), + [sym_param] = ACTIONS(12525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12525), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12525), + [anon_sym_DOLLAR] = ACTIONS(12527), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12525), + [anon_sym_BSLASHbegin] = ACTIONS(12527), + [anon_sym_BSLASHcaption] = ACTIONS(12527), + [anon_sym_BSLASHcite] = ACTIONS(12527), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCite] = ACTIONS(12527), + [anon_sym_BSLASHnocite] = ACTIONS(12527), + [anon_sym_BSLASHcitet] = ACTIONS(12527), + [anon_sym_BSLASHcitep] = ACTIONS(12527), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteauthor] = ACTIONS(12527), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12527), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitetitle] = ACTIONS(12527), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteyear] = ACTIONS(12527), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitedate] = ACTIONS(12527), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteurl] = ACTIONS(12527), + [anon_sym_BSLASHfullcite] = ACTIONS(12527), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12527), + [anon_sym_BSLASHcitealt] = ACTIONS(12527), + [anon_sym_BSLASHcitealp] = ACTIONS(12527), + [anon_sym_BSLASHcitetext] = ACTIONS(12527), + [anon_sym_BSLASHparencite] = ACTIONS(12527), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHParencite] = ACTIONS(12527), + [anon_sym_BSLASHfootcite] = ACTIONS(12527), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12527), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12527), + [anon_sym_BSLASHtextcite] = ACTIONS(12527), + [anon_sym_BSLASHTextcite] = ACTIONS(12527), + [anon_sym_BSLASHsmartcite] = ACTIONS(12527), + [anon_sym_BSLASHSmartcite] = ACTIONS(12527), + [anon_sym_BSLASHsupercite] = ACTIONS(12527), + [anon_sym_BSLASHautocite] = ACTIONS(12527), + [anon_sym_BSLASHAutocite] = ACTIONS(12527), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHvolcite] = ACTIONS(12527), + [anon_sym_BSLASHVolcite] = ACTIONS(12527), + [anon_sym_BSLASHpvolcite] = ACTIONS(12527), + [anon_sym_BSLASHPvolcite] = ACTIONS(12527), + [anon_sym_BSLASHfvolcite] = ACTIONS(12527), + [anon_sym_BSLASHftvolcite] = ACTIONS(12527), + [anon_sym_BSLASHsvolcite] = ACTIONS(12527), + [anon_sym_BSLASHSvolcite] = ACTIONS(12527), + [anon_sym_BSLASHtvolcite] = ACTIONS(12527), + [anon_sym_BSLASHTvolcite] = ACTIONS(12527), + [anon_sym_BSLASHavolcite] = ACTIONS(12527), + [anon_sym_BSLASHAvolcite] = ACTIONS(12527), + [anon_sym_BSLASHnotecite] = ACTIONS(12527), + [anon_sym_BSLASHpnotecite] = ACTIONS(12527), + [anon_sym_BSLASHPnotecite] = ACTIONS(12527), + [anon_sym_BSLASHfnotecite] = ACTIONS(12527), + [anon_sym_BSLASHusepackage] = ACTIONS(12527), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12527), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12527), + [anon_sym_BSLASHinclude] = ACTIONS(12527), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12527), + [anon_sym_BSLASHinput] = ACTIONS(12527), + [anon_sym_BSLASHsubfile] = ACTIONS(12527), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12527), + [anon_sym_BSLASHbibliography] = ACTIONS(12527), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12527), + [anon_sym_BSLASHincludesvg] = ACTIONS(12527), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12527), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12527), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12527), + [anon_sym_BSLASHimport] = ACTIONS(12527), + [anon_sym_BSLASHsubimport] = ACTIONS(12527), + [anon_sym_BSLASHinputfrom] = ACTIONS(12527), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12527), + [anon_sym_BSLASHincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHlabel] = ACTIONS(12527), + [anon_sym_BSLASHref] = ACTIONS(12527), + [anon_sym_BSLASHvref] = ACTIONS(12527), + [anon_sym_BSLASHVref] = ACTIONS(12527), + [anon_sym_BSLASHautoref] = ACTIONS(12527), + [anon_sym_BSLASHpageref] = ACTIONS(12527), + [anon_sym_BSLASHcref] = ACTIONS(12527), + [anon_sym_BSLASHCref] = ACTIONS(12527), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnameCref] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHlabelcref] = ACTIONS(12527), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12527), + [anon_sym_BSLASHeqref] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange] = ACTIONS(12527), + [anon_sym_BSLASHCrefrange] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewlabel] = ACTIONS(12527), + [anon_sym_BSLASHnewcommand] = ACTIONS(12527), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12527), + [anon_sym_BSLASHgls] = ACTIONS(12527), + [anon_sym_BSLASHGls] = ACTIONS(12527), + [anon_sym_BSLASHGLS] = ACTIONS(12527), + [anon_sym_BSLASHglspl] = ACTIONS(12527), + [anon_sym_BSLASHGlspl] = ACTIONS(12527), + [anon_sym_BSLASHGLSpl] = ACTIONS(12527), + [anon_sym_BSLASHglsdisp] = ACTIONS(12527), + [anon_sym_BSLASHglslink] = ACTIONS(12527), + [anon_sym_BSLASHglstext] = ACTIONS(12527), + [anon_sym_BSLASHGlstext] = ACTIONS(12527), + [anon_sym_BSLASHGLStext] = ACTIONS(12527), + [anon_sym_BSLASHglsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12527), + [anon_sym_BSLASHglsplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSplural] = ACTIONS(12527), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHglsname] = ACTIONS(12527), + [anon_sym_BSLASHGlsname] = ACTIONS(12527), + [anon_sym_BSLASHGLSname] = ACTIONS(12527), + [anon_sym_BSLASHglssymbol] = ACTIONS(12527), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12527), + [anon_sym_BSLASHglsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12527), + [anon_sym_BSLASHglsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12527), + [anon_sym_BSLASHglsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12527), + [anon_sym_BSLASHglsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12527), + [anon_sym_BSLASHglsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12527), + [anon_sym_BSLASHnewacronym] = ACTIONS(12527), + [anon_sym_BSLASHacrshort] = ACTIONS(12527), + [anon_sym_BSLASHAcrshort] = ACTIONS(12527), + [anon_sym_BSLASHACRshort] = ACTIONS(12527), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12527), + [anon_sym_BSLASHacrlong] = ACTIONS(12527), + [anon_sym_BSLASHAcrlong] = ACTIONS(12527), + [anon_sym_BSLASHACRlong] = ACTIONS(12527), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12527), + [anon_sym_BSLASHacrfull] = ACTIONS(12527), + [anon_sym_BSLASHAcrfull] = ACTIONS(12527), + [anon_sym_BSLASHACRfull] = ACTIONS(12527), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12527), + [anon_sym_BSLASHacs] = ACTIONS(12527), + [anon_sym_BSLASHAcs] = ACTIONS(12527), + [anon_sym_BSLASHacsp] = ACTIONS(12527), + [anon_sym_BSLASHAcsp] = ACTIONS(12527), + [anon_sym_BSLASHacl] = ACTIONS(12527), + [anon_sym_BSLASHAcl] = ACTIONS(12527), + [anon_sym_BSLASHaclp] = ACTIONS(12527), + [anon_sym_BSLASHAclp] = ACTIONS(12527), + [anon_sym_BSLASHacf] = ACTIONS(12527), + [anon_sym_BSLASHAcf] = ACTIONS(12527), + [anon_sym_BSLASHacfp] = ACTIONS(12527), + [anon_sym_BSLASHAcfp] = ACTIONS(12527), + [anon_sym_BSLASHac] = ACTIONS(12527), + [anon_sym_BSLASHAc] = ACTIONS(12527), + [anon_sym_BSLASHacp] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12527), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12527), + [anon_sym_BSLASHcolor] = ACTIONS(12527), + [anon_sym_BSLASHcolorbox] = ACTIONS(12527), + [anon_sym_BSLASHtextcolor] = ACTIONS(12527), + [anon_sym_BSLASHpagecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12527), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12527), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12527), + }, + [1219] = { + [sym_generic_command_name] = ACTIONS(12531), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12531), + [aux_sym_subsection_token1] = ACTIONS(12531), + [aux_sym_subsubsection_token1] = ACTIONS(12531), + [aux_sym_paragraph_token1] = ACTIONS(12531), + [aux_sym_subparagraph_token1] = ACTIONS(12531), + [anon_sym_BSLASHitem] = ACTIONS(12531), + [anon_sym_LBRACK] = ACTIONS(12529), + [anon_sym_RBRACK] = ACTIONS(12529), + [anon_sym_LBRACE] = ACTIONS(12529), + [anon_sym_RBRACE] = ACTIONS(12529), + [anon_sym_LPAREN] = ACTIONS(12529), + [anon_sym_COMMA] = ACTIONS(12529), + [anon_sym_EQ] = ACTIONS(12529), + [sym_word] = ACTIONS(12529), + [sym_param] = ACTIONS(12529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12529), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12529), + [anon_sym_DOLLAR] = ACTIONS(12531), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12529), + [anon_sym_BSLASHbegin] = ACTIONS(12531), + [anon_sym_BSLASHcaption] = ACTIONS(12531), + [anon_sym_BSLASHcite] = ACTIONS(12531), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCite] = ACTIONS(12531), + [anon_sym_BSLASHnocite] = ACTIONS(12531), + [anon_sym_BSLASHcitet] = ACTIONS(12531), + [anon_sym_BSLASHcitep] = ACTIONS(12531), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteauthor] = ACTIONS(12531), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12531), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitetitle] = ACTIONS(12531), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteyear] = ACTIONS(12531), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitedate] = ACTIONS(12531), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteurl] = ACTIONS(12531), + [anon_sym_BSLASHfullcite] = ACTIONS(12531), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12531), + [anon_sym_BSLASHcitealt] = ACTIONS(12531), + [anon_sym_BSLASHcitealp] = ACTIONS(12531), + [anon_sym_BSLASHcitetext] = ACTIONS(12531), + [anon_sym_BSLASHparencite] = ACTIONS(12531), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHParencite] = ACTIONS(12531), + [anon_sym_BSLASHfootcite] = ACTIONS(12531), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12531), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12531), + [anon_sym_BSLASHtextcite] = ACTIONS(12531), + [anon_sym_BSLASHTextcite] = ACTIONS(12531), + [anon_sym_BSLASHsmartcite] = ACTIONS(12531), + [anon_sym_BSLASHSmartcite] = ACTIONS(12531), + [anon_sym_BSLASHsupercite] = ACTIONS(12531), + [anon_sym_BSLASHautocite] = ACTIONS(12531), + [anon_sym_BSLASHAutocite] = ACTIONS(12531), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHvolcite] = ACTIONS(12531), + [anon_sym_BSLASHVolcite] = ACTIONS(12531), + [anon_sym_BSLASHpvolcite] = ACTIONS(12531), + [anon_sym_BSLASHPvolcite] = ACTIONS(12531), + [anon_sym_BSLASHfvolcite] = ACTIONS(12531), + [anon_sym_BSLASHftvolcite] = ACTIONS(12531), + [anon_sym_BSLASHsvolcite] = ACTIONS(12531), + [anon_sym_BSLASHSvolcite] = ACTIONS(12531), + [anon_sym_BSLASHtvolcite] = ACTIONS(12531), + [anon_sym_BSLASHTvolcite] = ACTIONS(12531), + [anon_sym_BSLASHavolcite] = ACTIONS(12531), + [anon_sym_BSLASHAvolcite] = ACTIONS(12531), + [anon_sym_BSLASHnotecite] = ACTIONS(12531), + [anon_sym_BSLASHpnotecite] = ACTIONS(12531), + [anon_sym_BSLASHPnotecite] = ACTIONS(12531), + [anon_sym_BSLASHfnotecite] = ACTIONS(12531), + [anon_sym_BSLASHusepackage] = ACTIONS(12531), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12531), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12531), + [anon_sym_BSLASHinclude] = ACTIONS(12531), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12531), + [anon_sym_BSLASHinput] = ACTIONS(12531), + [anon_sym_BSLASHsubfile] = ACTIONS(12531), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12531), + [anon_sym_BSLASHbibliography] = ACTIONS(12531), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12531), + [anon_sym_BSLASHincludesvg] = ACTIONS(12531), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12531), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12531), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12531), + [anon_sym_BSLASHimport] = ACTIONS(12531), + [anon_sym_BSLASHsubimport] = ACTIONS(12531), + [anon_sym_BSLASHinputfrom] = ACTIONS(12531), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12531), + [anon_sym_BSLASHincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHlabel] = ACTIONS(12531), + [anon_sym_BSLASHref] = ACTIONS(12531), + [anon_sym_BSLASHvref] = ACTIONS(12531), + [anon_sym_BSLASHVref] = ACTIONS(12531), + [anon_sym_BSLASHautoref] = ACTIONS(12531), + [anon_sym_BSLASHpageref] = ACTIONS(12531), + [anon_sym_BSLASHcref] = ACTIONS(12531), + [anon_sym_BSLASHCref] = ACTIONS(12531), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnameCref] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHlabelcref] = ACTIONS(12531), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12531), + [anon_sym_BSLASHeqref] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange] = ACTIONS(12531), + [anon_sym_BSLASHCrefrange] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewlabel] = ACTIONS(12531), + [anon_sym_BSLASHnewcommand] = ACTIONS(12531), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12531), + [anon_sym_BSLASHgls] = ACTIONS(12531), + [anon_sym_BSLASHGls] = ACTIONS(12531), + [anon_sym_BSLASHGLS] = ACTIONS(12531), + [anon_sym_BSLASHglspl] = ACTIONS(12531), + [anon_sym_BSLASHGlspl] = ACTIONS(12531), + [anon_sym_BSLASHGLSpl] = ACTIONS(12531), + [anon_sym_BSLASHglsdisp] = ACTIONS(12531), + [anon_sym_BSLASHglslink] = ACTIONS(12531), + [anon_sym_BSLASHglstext] = ACTIONS(12531), + [anon_sym_BSLASHGlstext] = ACTIONS(12531), + [anon_sym_BSLASHGLStext] = ACTIONS(12531), + [anon_sym_BSLASHglsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12531), + [anon_sym_BSLASHglsplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSplural] = ACTIONS(12531), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHglsname] = ACTIONS(12531), + [anon_sym_BSLASHGlsname] = ACTIONS(12531), + [anon_sym_BSLASHGLSname] = ACTIONS(12531), + [anon_sym_BSLASHglssymbol] = ACTIONS(12531), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12531), + [anon_sym_BSLASHglsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12531), + [anon_sym_BSLASHglsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12531), + [anon_sym_BSLASHglsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12531), + [anon_sym_BSLASHglsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12531), + [anon_sym_BSLASHglsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12531), + [anon_sym_BSLASHnewacronym] = ACTIONS(12531), + [anon_sym_BSLASHacrshort] = ACTIONS(12531), + [anon_sym_BSLASHAcrshort] = ACTIONS(12531), + [anon_sym_BSLASHACRshort] = ACTIONS(12531), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12531), + [anon_sym_BSLASHacrlong] = ACTIONS(12531), + [anon_sym_BSLASHAcrlong] = ACTIONS(12531), + [anon_sym_BSLASHACRlong] = ACTIONS(12531), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12531), + [anon_sym_BSLASHacrfull] = ACTIONS(12531), + [anon_sym_BSLASHAcrfull] = ACTIONS(12531), + [anon_sym_BSLASHACRfull] = ACTIONS(12531), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12531), + [anon_sym_BSLASHacs] = ACTIONS(12531), + [anon_sym_BSLASHAcs] = ACTIONS(12531), + [anon_sym_BSLASHacsp] = ACTIONS(12531), + [anon_sym_BSLASHAcsp] = ACTIONS(12531), + [anon_sym_BSLASHacl] = ACTIONS(12531), + [anon_sym_BSLASHAcl] = ACTIONS(12531), + [anon_sym_BSLASHaclp] = ACTIONS(12531), + [anon_sym_BSLASHAclp] = ACTIONS(12531), + [anon_sym_BSLASHacf] = ACTIONS(12531), + [anon_sym_BSLASHAcf] = ACTIONS(12531), + [anon_sym_BSLASHacfp] = ACTIONS(12531), + [anon_sym_BSLASHAcfp] = ACTIONS(12531), + [anon_sym_BSLASHac] = ACTIONS(12531), + [anon_sym_BSLASHAc] = ACTIONS(12531), + [anon_sym_BSLASHacp] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12531), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12531), + [anon_sym_BSLASHcolor] = ACTIONS(12531), + [anon_sym_BSLASHcolorbox] = ACTIONS(12531), + [anon_sym_BSLASHtextcolor] = ACTIONS(12531), + [anon_sym_BSLASHpagecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12531), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12531), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12531), + }, + [1220] = { + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(123), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [1221] = { + [sym_generic_command_name] = ACTIONS(12539), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12539), + [aux_sym_subsection_token1] = ACTIONS(12539), + [aux_sym_subsubsection_token1] = ACTIONS(12539), + [aux_sym_paragraph_token1] = ACTIONS(12539), + [aux_sym_subparagraph_token1] = ACTIONS(12539), + [anon_sym_BSLASHitem] = ACTIONS(12539), + [anon_sym_LBRACK] = ACTIONS(12537), + [anon_sym_RBRACK] = ACTIONS(12537), + [anon_sym_LBRACE] = ACTIONS(12537), + [anon_sym_RBRACE] = ACTIONS(12537), + [anon_sym_LPAREN] = ACTIONS(12537), + [anon_sym_COMMA] = ACTIONS(12537), + [anon_sym_EQ] = ACTIONS(12537), + [sym_word] = ACTIONS(12537), + [sym_param] = ACTIONS(12537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12537), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12537), + [anon_sym_DOLLAR] = ACTIONS(12539), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12537), + [anon_sym_BSLASHbegin] = ACTIONS(12539), + [anon_sym_BSLASHcaption] = ACTIONS(12539), + [anon_sym_BSLASHcite] = ACTIONS(12539), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCite] = ACTIONS(12539), + [anon_sym_BSLASHnocite] = ACTIONS(12539), + [anon_sym_BSLASHcitet] = ACTIONS(12539), + [anon_sym_BSLASHcitep] = ACTIONS(12539), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteauthor] = ACTIONS(12539), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12539), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitetitle] = ACTIONS(12539), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteyear] = ACTIONS(12539), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitedate] = ACTIONS(12539), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteurl] = ACTIONS(12539), + [anon_sym_BSLASHfullcite] = ACTIONS(12539), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12539), + [anon_sym_BSLASHcitealt] = ACTIONS(12539), + [anon_sym_BSLASHcitealp] = ACTIONS(12539), + [anon_sym_BSLASHcitetext] = ACTIONS(12539), + [anon_sym_BSLASHparencite] = ACTIONS(12539), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHParencite] = ACTIONS(12539), + [anon_sym_BSLASHfootcite] = ACTIONS(12539), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12539), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12539), + [anon_sym_BSLASHtextcite] = ACTIONS(12539), + [anon_sym_BSLASHTextcite] = ACTIONS(12539), + [anon_sym_BSLASHsmartcite] = ACTIONS(12539), + [anon_sym_BSLASHSmartcite] = ACTIONS(12539), + [anon_sym_BSLASHsupercite] = ACTIONS(12539), + [anon_sym_BSLASHautocite] = ACTIONS(12539), + [anon_sym_BSLASHAutocite] = ACTIONS(12539), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHvolcite] = ACTIONS(12539), + [anon_sym_BSLASHVolcite] = ACTIONS(12539), + [anon_sym_BSLASHpvolcite] = ACTIONS(12539), + [anon_sym_BSLASHPvolcite] = ACTIONS(12539), + [anon_sym_BSLASHfvolcite] = ACTIONS(12539), + [anon_sym_BSLASHftvolcite] = ACTIONS(12539), + [anon_sym_BSLASHsvolcite] = ACTIONS(12539), + [anon_sym_BSLASHSvolcite] = ACTIONS(12539), + [anon_sym_BSLASHtvolcite] = ACTIONS(12539), + [anon_sym_BSLASHTvolcite] = ACTIONS(12539), + [anon_sym_BSLASHavolcite] = ACTIONS(12539), + [anon_sym_BSLASHAvolcite] = ACTIONS(12539), + [anon_sym_BSLASHnotecite] = ACTIONS(12539), + [anon_sym_BSLASHpnotecite] = ACTIONS(12539), + [anon_sym_BSLASHPnotecite] = ACTIONS(12539), + [anon_sym_BSLASHfnotecite] = ACTIONS(12539), + [anon_sym_BSLASHusepackage] = ACTIONS(12539), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12539), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12539), + [anon_sym_BSLASHinclude] = ACTIONS(12539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12539), + [anon_sym_BSLASHinput] = ACTIONS(12539), + [anon_sym_BSLASHsubfile] = ACTIONS(12539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12539), + [anon_sym_BSLASHbibliography] = ACTIONS(12539), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12539), + [anon_sym_BSLASHincludesvg] = ACTIONS(12539), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12539), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12539), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12539), + [anon_sym_BSLASHimport] = ACTIONS(12539), + [anon_sym_BSLASHsubimport] = ACTIONS(12539), + [anon_sym_BSLASHinputfrom] = ACTIONS(12539), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12539), + [anon_sym_BSLASHincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHlabel] = ACTIONS(12539), + [anon_sym_BSLASHref] = ACTIONS(12539), + [anon_sym_BSLASHvref] = ACTIONS(12539), + [anon_sym_BSLASHVref] = ACTIONS(12539), + [anon_sym_BSLASHautoref] = ACTIONS(12539), + [anon_sym_BSLASHpageref] = ACTIONS(12539), + [anon_sym_BSLASHcref] = ACTIONS(12539), + [anon_sym_BSLASHCref] = ACTIONS(12539), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnameCref] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHlabelcref] = ACTIONS(12539), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12539), + [anon_sym_BSLASHeqref] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange] = ACTIONS(12539), + [anon_sym_BSLASHCrefrange] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewlabel] = ACTIONS(12539), + [anon_sym_BSLASHnewcommand] = ACTIONS(12539), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12539), + [anon_sym_BSLASHgls] = ACTIONS(12539), + [anon_sym_BSLASHGls] = ACTIONS(12539), + [anon_sym_BSLASHGLS] = ACTIONS(12539), + [anon_sym_BSLASHglspl] = ACTIONS(12539), + [anon_sym_BSLASHGlspl] = ACTIONS(12539), + [anon_sym_BSLASHGLSpl] = ACTIONS(12539), + [anon_sym_BSLASHglsdisp] = ACTIONS(12539), + [anon_sym_BSLASHglslink] = ACTIONS(12539), + [anon_sym_BSLASHglstext] = ACTIONS(12539), + [anon_sym_BSLASHGlstext] = ACTIONS(12539), + [anon_sym_BSLASHGLStext] = ACTIONS(12539), + [anon_sym_BSLASHglsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12539), + [anon_sym_BSLASHglsplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSplural] = ACTIONS(12539), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHglsname] = ACTIONS(12539), + [anon_sym_BSLASHGlsname] = ACTIONS(12539), + [anon_sym_BSLASHGLSname] = ACTIONS(12539), + [anon_sym_BSLASHglssymbol] = ACTIONS(12539), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12539), + [anon_sym_BSLASHglsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12539), + [anon_sym_BSLASHglsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12539), + [anon_sym_BSLASHglsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12539), + [anon_sym_BSLASHglsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12539), + [anon_sym_BSLASHglsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12539), + [anon_sym_BSLASHnewacronym] = ACTIONS(12539), + [anon_sym_BSLASHacrshort] = ACTIONS(12539), + [anon_sym_BSLASHAcrshort] = ACTIONS(12539), + [anon_sym_BSLASHACRshort] = ACTIONS(12539), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12539), + [anon_sym_BSLASHacrlong] = ACTIONS(12539), + [anon_sym_BSLASHAcrlong] = ACTIONS(12539), + [anon_sym_BSLASHACRlong] = ACTIONS(12539), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12539), + [anon_sym_BSLASHacrfull] = ACTIONS(12539), + [anon_sym_BSLASHAcrfull] = ACTIONS(12539), + [anon_sym_BSLASHACRfull] = ACTIONS(12539), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12539), + [anon_sym_BSLASHacs] = ACTIONS(12539), + [anon_sym_BSLASHAcs] = ACTIONS(12539), + [anon_sym_BSLASHacsp] = ACTIONS(12539), + [anon_sym_BSLASHAcsp] = ACTIONS(12539), + [anon_sym_BSLASHacl] = ACTIONS(12539), + [anon_sym_BSLASHAcl] = ACTIONS(12539), + [anon_sym_BSLASHaclp] = ACTIONS(12539), + [anon_sym_BSLASHAclp] = ACTIONS(12539), + [anon_sym_BSLASHacf] = ACTIONS(12539), + [anon_sym_BSLASHAcf] = ACTIONS(12539), + [anon_sym_BSLASHacfp] = ACTIONS(12539), + [anon_sym_BSLASHAcfp] = ACTIONS(12539), + [anon_sym_BSLASHac] = ACTIONS(12539), + [anon_sym_BSLASHAc] = ACTIONS(12539), + [anon_sym_BSLASHacp] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12539), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12539), + [anon_sym_BSLASHcolor] = ACTIONS(12539), + [anon_sym_BSLASHcolorbox] = ACTIONS(12539), + [anon_sym_BSLASHtextcolor] = ACTIONS(12539), + [anon_sym_BSLASHpagecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12539), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12539), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12539), + }, + [1222] = { + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(127), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [1223] = { + [sym_generic_command_name] = ACTIONS(12136), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12136), + [aux_sym_subsection_token1] = ACTIONS(12136), + [aux_sym_subsubsection_token1] = ACTIONS(12136), + [aux_sym_paragraph_token1] = ACTIONS(12136), + [aux_sym_subparagraph_token1] = ACTIONS(12136), + [anon_sym_BSLASHitem] = ACTIONS(12136), + [anon_sym_LBRACK] = ACTIONS(12134), + [anon_sym_RBRACK] = ACTIONS(12134), + [anon_sym_LBRACE] = ACTIONS(12134), + [anon_sym_RBRACE] = ACTIONS(12134), + [anon_sym_LPAREN] = ACTIONS(12134), + [anon_sym_COMMA] = ACTIONS(12134), + [anon_sym_EQ] = ACTIONS(12134), + [sym_word] = ACTIONS(12134), + [sym_param] = ACTIONS(12134), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12134), + [anon_sym_DOLLAR] = ACTIONS(12136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12134), + [anon_sym_BSLASHbegin] = ACTIONS(12136), + [anon_sym_BSLASHcaption] = ACTIONS(12136), + [anon_sym_BSLASHcite] = ACTIONS(12136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCite] = ACTIONS(12136), + [anon_sym_BSLASHnocite] = ACTIONS(12136), + [anon_sym_BSLASHcitet] = ACTIONS(12136), + [anon_sym_BSLASHcitep] = ACTIONS(12136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteauthor] = ACTIONS(12136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitetitle] = ACTIONS(12136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteyear] = ACTIONS(12136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitedate] = ACTIONS(12136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteurl] = ACTIONS(12136), + [anon_sym_BSLASHfullcite] = ACTIONS(12136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12136), + [anon_sym_BSLASHcitealt] = ACTIONS(12136), + [anon_sym_BSLASHcitealp] = ACTIONS(12136), + [anon_sym_BSLASHcitetext] = ACTIONS(12136), + [anon_sym_BSLASHparencite] = ACTIONS(12136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHParencite] = ACTIONS(12136), + [anon_sym_BSLASHfootcite] = ACTIONS(12136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12136), + [anon_sym_BSLASHtextcite] = ACTIONS(12136), + [anon_sym_BSLASHTextcite] = ACTIONS(12136), + [anon_sym_BSLASHsmartcite] = ACTIONS(12136), + [anon_sym_BSLASHSmartcite] = ACTIONS(12136), + [anon_sym_BSLASHsupercite] = ACTIONS(12136), + [anon_sym_BSLASHautocite] = ACTIONS(12136), + [anon_sym_BSLASHAutocite] = ACTIONS(12136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHvolcite] = ACTIONS(12136), + [anon_sym_BSLASHVolcite] = ACTIONS(12136), + [anon_sym_BSLASHpvolcite] = ACTIONS(12136), + [anon_sym_BSLASHPvolcite] = ACTIONS(12136), + [anon_sym_BSLASHfvolcite] = ACTIONS(12136), + [anon_sym_BSLASHftvolcite] = ACTIONS(12136), + [anon_sym_BSLASHsvolcite] = ACTIONS(12136), + [anon_sym_BSLASHSvolcite] = ACTIONS(12136), + [anon_sym_BSLASHtvolcite] = ACTIONS(12136), + [anon_sym_BSLASHTvolcite] = ACTIONS(12136), + [anon_sym_BSLASHavolcite] = ACTIONS(12136), + [anon_sym_BSLASHAvolcite] = ACTIONS(12136), + [anon_sym_BSLASHnotecite] = ACTIONS(12136), + [anon_sym_BSLASHpnotecite] = ACTIONS(12136), + [anon_sym_BSLASHPnotecite] = ACTIONS(12136), + [anon_sym_BSLASHfnotecite] = ACTIONS(12136), + [anon_sym_BSLASHusepackage] = ACTIONS(12136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12136), + [anon_sym_BSLASHinclude] = ACTIONS(12136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12136), + [anon_sym_BSLASHinput] = ACTIONS(12136), + [anon_sym_BSLASHsubfile] = ACTIONS(12136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12136), + [anon_sym_BSLASHbibliography] = ACTIONS(12136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12136), + [anon_sym_BSLASHincludesvg] = ACTIONS(12136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12136), + [anon_sym_BSLASHimport] = ACTIONS(12136), + [anon_sym_BSLASHsubimport] = ACTIONS(12136), + [anon_sym_BSLASHinputfrom] = ACTIONS(12136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12136), + [anon_sym_BSLASHincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHlabel] = ACTIONS(12136), + [anon_sym_BSLASHref] = ACTIONS(12136), + [anon_sym_BSLASHvref] = ACTIONS(12136), + [anon_sym_BSLASHVref] = ACTIONS(12136), + [anon_sym_BSLASHautoref] = ACTIONS(12136), + [anon_sym_BSLASHpageref] = ACTIONS(12136), + [anon_sym_BSLASHcref] = ACTIONS(12136), + [anon_sym_BSLASHCref] = ACTIONS(12136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnameCref] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHlabelcref] = ACTIONS(12136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12136), + [anon_sym_BSLASHeqref] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange] = ACTIONS(12136), + [anon_sym_BSLASHCrefrange] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewlabel] = ACTIONS(12136), + [anon_sym_BSLASHnewcommand] = ACTIONS(12136), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12136), + [anon_sym_BSLASHgls] = ACTIONS(12136), + [anon_sym_BSLASHGls] = ACTIONS(12136), + [anon_sym_BSLASHGLS] = ACTIONS(12136), + [anon_sym_BSLASHglspl] = ACTIONS(12136), + [anon_sym_BSLASHGlspl] = ACTIONS(12136), + [anon_sym_BSLASHGLSpl] = ACTIONS(12136), + [anon_sym_BSLASHglsdisp] = ACTIONS(12136), + [anon_sym_BSLASHglslink] = ACTIONS(12136), + [anon_sym_BSLASHglstext] = ACTIONS(12136), + [anon_sym_BSLASHGlstext] = ACTIONS(12136), + [anon_sym_BSLASHGLStext] = ACTIONS(12136), + [anon_sym_BSLASHglsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12136), + [anon_sym_BSLASHglsplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSplural] = ACTIONS(12136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHglsname] = ACTIONS(12136), + [anon_sym_BSLASHGlsname] = ACTIONS(12136), + [anon_sym_BSLASHGLSname] = ACTIONS(12136), + [anon_sym_BSLASHglssymbol] = ACTIONS(12136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12136), + [anon_sym_BSLASHglsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12136), + [anon_sym_BSLASHglsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12136), + [anon_sym_BSLASHglsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12136), + [anon_sym_BSLASHglsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12136), + [anon_sym_BSLASHglsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12136), + [anon_sym_BSLASHnewacronym] = ACTIONS(12136), + [anon_sym_BSLASHacrshort] = ACTIONS(12136), + [anon_sym_BSLASHAcrshort] = ACTIONS(12136), + [anon_sym_BSLASHACRshort] = ACTIONS(12136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12136), + [anon_sym_BSLASHacrlong] = ACTIONS(12136), + [anon_sym_BSLASHAcrlong] = ACTIONS(12136), + [anon_sym_BSLASHACRlong] = ACTIONS(12136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12136), + [anon_sym_BSLASHacrfull] = ACTIONS(12136), + [anon_sym_BSLASHAcrfull] = ACTIONS(12136), + [anon_sym_BSLASHACRfull] = ACTIONS(12136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12136), + [anon_sym_BSLASHacs] = ACTIONS(12136), + [anon_sym_BSLASHAcs] = ACTIONS(12136), + [anon_sym_BSLASHacsp] = ACTIONS(12136), + [anon_sym_BSLASHAcsp] = ACTIONS(12136), + [anon_sym_BSLASHacl] = ACTIONS(12136), + [anon_sym_BSLASHAcl] = ACTIONS(12136), + [anon_sym_BSLASHaclp] = ACTIONS(12136), + [anon_sym_BSLASHAclp] = ACTIONS(12136), + [anon_sym_BSLASHacf] = ACTIONS(12136), + [anon_sym_BSLASHAcf] = ACTIONS(12136), + [anon_sym_BSLASHacfp] = ACTIONS(12136), + [anon_sym_BSLASHAcfp] = ACTIONS(12136), + [anon_sym_BSLASHac] = ACTIONS(12136), + [anon_sym_BSLASHAc] = ACTIONS(12136), + [anon_sym_BSLASHacp] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12136), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12136), + [anon_sym_BSLASHcolor] = ACTIONS(12136), + [anon_sym_BSLASHcolorbox] = ACTIONS(12136), + [anon_sym_BSLASHtextcolor] = ACTIONS(12136), + [anon_sym_BSLASHpagecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12136), + }, + [1224] = { + [sym_generic_command_name] = ACTIONS(12140), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12140), + [aux_sym_subsection_token1] = ACTIONS(12140), + [aux_sym_subsubsection_token1] = ACTIONS(12140), + [aux_sym_paragraph_token1] = ACTIONS(12140), + [aux_sym_subparagraph_token1] = ACTIONS(12140), + [anon_sym_BSLASHitem] = ACTIONS(12140), + [anon_sym_LBRACK] = ACTIONS(12138), + [anon_sym_RBRACK] = ACTIONS(12138), + [anon_sym_LBRACE] = ACTIONS(12138), + [anon_sym_RBRACE] = ACTIONS(12138), + [anon_sym_LPAREN] = ACTIONS(12138), + [anon_sym_COMMA] = ACTIONS(12138), + [anon_sym_EQ] = ACTIONS(12138), + [sym_word] = ACTIONS(12138), + [sym_param] = ACTIONS(12138), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12138), + [anon_sym_DOLLAR] = ACTIONS(12140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12138), + [anon_sym_BSLASHbegin] = ACTIONS(12140), + [anon_sym_BSLASHcaption] = ACTIONS(12140), + [anon_sym_BSLASHcite] = ACTIONS(12140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCite] = ACTIONS(12140), + [anon_sym_BSLASHnocite] = ACTIONS(12140), + [anon_sym_BSLASHcitet] = ACTIONS(12140), + [anon_sym_BSLASHcitep] = ACTIONS(12140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteauthor] = ACTIONS(12140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitetitle] = ACTIONS(12140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteyear] = ACTIONS(12140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitedate] = ACTIONS(12140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteurl] = ACTIONS(12140), + [anon_sym_BSLASHfullcite] = ACTIONS(12140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12140), + [anon_sym_BSLASHcitealt] = ACTIONS(12140), + [anon_sym_BSLASHcitealp] = ACTIONS(12140), + [anon_sym_BSLASHcitetext] = ACTIONS(12140), + [anon_sym_BSLASHparencite] = ACTIONS(12140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHParencite] = ACTIONS(12140), + [anon_sym_BSLASHfootcite] = ACTIONS(12140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12140), + [anon_sym_BSLASHtextcite] = ACTIONS(12140), + [anon_sym_BSLASHTextcite] = ACTIONS(12140), + [anon_sym_BSLASHsmartcite] = ACTIONS(12140), + [anon_sym_BSLASHSmartcite] = ACTIONS(12140), + [anon_sym_BSLASHsupercite] = ACTIONS(12140), + [anon_sym_BSLASHautocite] = ACTIONS(12140), + [anon_sym_BSLASHAutocite] = ACTIONS(12140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHvolcite] = ACTIONS(12140), + [anon_sym_BSLASHVolcite] = ACTIONS(12140), + [anon_sym_BSLASHpvolcite] = ACTIONS(12140), + [anon_sym_BSLASHPvolcite] = ACTIONS(12140), + [anon_sym_BSLASHfvolcite] = ACTIONS(12140), + [anon_sym_BSLASHftvolcite] = ACTIONS(12140), + [anon_sym_BSLASHsvolcite] = ACTIONS(12140), + [anon_sym_BSLASHSvolcite] = ACTIONS(12140), + [anon_sym_BSLASHtvolcite] = ACTIONS(12140), + [anon_sym_BSLASHTvolcite] = ACTIONS(12140), + [anon_sym_BSLASHavolcite] = ACTIONS(12140), + [anon_sym_BSLASHAvolcite] = ACTIONS(12140), + [anon_sym_BSLASHnotecite] = ACTIONS(12140), + [anon_sym_BSLASHpnotecite] = ACTIONS(12140), + [anon_sym_BSLASHPnotecite] = ACTIONS(12140), + [anon_sym_BSLASHfnotecite] = ACTIONS(12140), + [anon_sym_BSLASHusepackage] = ACTIONS(12140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12140), + [anon_sym_BSLASHinclude] = ACTIONS(12140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12140), + [anon_sym_BSLASHinput] = ACTIONS(12140), + [anon_sym_BSLASHsubfile] = ACTIONS(12140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12140), + [anon_sym_BSLASHbibliography] = ACTIONS(12140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12140), + [anon_sym_BSLASHincludesvg] = ACTIONS(12140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12140), + [anon_sym_BSLASHimport] = ACTIONS(12140), + [anon_sym_BSLASHsubimport] = ACTIONS(12140), + [anon_sym_BSLASHinputfrom] = ACTIONS(12140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12140), + [anon_sym_BSLASHincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHlabel] = ACTIONS(12140), + [anon_sym_BSLASHref] = ACTIONS(12140), + [anon_sym_BSLASHvref] = ACTIONS(12140), + [anon_sym_BSLASHVref] = ACTIONS(12140), + [anon_sym_BSLASHautoref] = ACTIONS(12140), + [anon_sym_BSLASHpageref] = ACTIONS(12140), + [anon_sym_BSLASHcref] = ACTIONS(12140), + [anon_sym_BSLASHCref] = ACTIONS(12140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnameCref] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHlabelcref] = ACTIONS(12140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12140), + [anon_sym_BSLASHeqref] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange] = ACTIONS(12140), + [anon_sym_BSLASHCrefrange] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewlabel] = ACTIONS(12140), + [anon_sym_BSLASHnewcommand] = ACTIONS(12140), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12140), + [anon_sym_BSLASHgls] = ACTIONS(12140), + [anon_sym_BSLASHGls] = ACTIONS(12140), + [anon_sym_BSLASHGLS] = ACTIONS(12140), + [anon_sym_BSLASHglspl] = ACTIONS(12140), + [anon_sym_BSLASHGlspl] = ACTIONS(12140), + [anon_sym_BSLASHGLSpl] = ACTIONS(12140), + [anon_sym_BSLASHglsdisp] = ACTIONS(12140), + [anon_sym_BSLASHglslink] = ACTIONS(12140), + [anon_sym_BSLASHglstext] = ACTIONS(12140), + [anon_sym_BSLASHGlstext] = ACTIONS(12140), + [anon_sym_BSLASHGLStext] = ACTIONS(12140), + [anon_sym_BSLASHglsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12140), + [anon_sym_BSLASHglsplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSplural] = ACTIONS(12140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHglsname] = ACTIONS(12140), + [anon_sym_BSLASHGlsname] = ACTIONS(12140), + [anon_sym_BSLASHGLSname] = ACTIONS(12140), + [anon_sym_BSLASHglssymbol] = ACTIONS(12140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12140), + [anon_sym_BSLASHglsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12140), + [anon_sym_BSLASHglsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12140), + [anon_sym_BSLASHglsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12140), + [anon_sym_BSLASHglsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12140), + [anon_sym_BSLASHglsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12140), + [anon_sym_BSLASHnewacronym] = ACTIONS(12140), + [anon_sym_BSLASHacrshort] = ACTIONS(12140), + [anon_sym_BSLASHAcrshort] = ACTIONS(12140), + [anon_sym_BSLASHACRshort] = ACTIONS(12140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12140), + [anon_sym_BSLASHacrlong] = ACTIONS(12140), + [anon_sym_BSLASHAcrlong] = ACTIONS(12140), + [anon_sym_BSLASHACRlong] = ACTIONS(12140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12140), + [anon_sym_BSLASHacrfull] = ACTIONS(12140), + [anon_sym_BSLASHAcrfull] = ACTIONS(12140), + [anon_sym_BSLASHACRfull] = ACTIONS(12140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12140), + [anon_sym_BSLASHacs] = ACTIONS(12140), + [anon_sym_BSLASHAcs] = ACTIONS(12140), + [anon_sym_BSLASHacsp] = ACTIONS(12140), + [anon_sym_BSLASHAcsp] = ACTIONS(12140), + [anon_sym_BSLASHacl] = ACTIONS(12140), + [anon_sym_BSLASHAcl] = ACTIONS(12140), + [anon_sym_BSLASHaclp] = ACTIONS(12140), + [anon_sym_BSLASHAclp] = ACTIONS(12140), + [anon_sym_BSLASHacf] = ACTIONS(12140), + [anon_sym_BSLASHAcf] = ACTIONS(12140), + [anon_sym_BSLASHacfp] = ACTIONS(12140), + [anon_sym_BSLASHAcfp] = ACTIONS(12140), + [anon_sym_BSLASHac] = ACTIONS(12140), + [anon_sym_BSLASHAc] = ACTIONS(12140), + [anon_sym_BSLASHacp] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12140), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12140), + [anon_sym_BSLASHcolor] = ACTIONS(12140), + [anon_sym_BSLASHcolorbox] = ACTIONS(12140), + [anon_sym_BSLASHtextcolor] = ACTIONS(12140), + [anon_sym_BSLASHpagecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12140), + }, + [1225] = { + [sym_generic_command_name] = ACTIONS(12144), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12144), + [aux_sym_subsection_token1] = ACTIONS(12144), + [aux_sym_subsubsection_token1] = ACTIONS(12144), + [aux_sym_paragraph_token1] = ACTIONS(12144), + [aux_sym_subparagraph_token1] = ACTIONS(12144), + [anon_sym_BSLASHitem] = ACTIONS(12144), + [anon_sym_LBRACK] = ACTIONS(12142), + [anon_sym_RBRACK] = ACTIONS(12142), + [anon_sym_LBRACE] = ACTIONS(12142), + [anon_sym_RBRACE] = ACTIONS(12142), + [anon_sym_LPAREN] = ACTIONS(12142), + [anon_sym_COMMA] = ACTIONS(12142), + [anon_sym_EQ] = ACTIONS(12142), + [sym_word] = ACTIONS(12142), + [sym_param] = ACTIONS(12142), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12142), + [anon_sym_DOLLAR] = ACTIONS(12144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12142), + [anon_sym_BSLASHbegin] = ACTIONS(12144), + [anon_sym_BSLASHcaption] = ACTIONS(12144), + [anon_sym_BSLASHcite] = ACTIONS(12144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCite] = ACTIONS(12144), + [anon_sym_BSLASHnocite] = ACTIONS(12144), + [anon_sym_BSLASHcitet] = ACTIONS(12144), + [anon_sym_BSLASHcitep] = ACTIONS(12144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteauthor] = ACTIONS(12144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitetitle] = ACTIONS(12144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteyear] = ACTIONS(12144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitedate] = ACTIONS(12144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteurl] = ACTIONS(12144), + [anon_sym_BSLASHfullcite] = ACTIONS(12144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12144), + [anon_sym_BSLASHcitealt] = ACTIONS(12144), + [anon_sym_BSLASHcitealp] = ACTIONS(12144), + [anon_sym_BSLASHcitetext] = ACTIONS(12144), + [anon_sym_BSLASHparencite] = ACTIONS(12144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHParencite] = ACTIONS(12144), + [anon_sym_BSLASHfootcite] = ACTIONS(12144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12144), + [anon_sym_BSLASHtextcite] = ACTIONS(12144), + [anon_sym_BSLASHTextcite] = ACTIONS(12144), + [anon_sym_BSLASHsmartcite] = ACTIONS(12144), + [anon_sym_BSLASHSmartcite] = ACTIONS(12144), + [anon_sym_BSLASHsupercite] = ACTIONS(12144), + [anon_sym_BSLASHautocite] = ACTIONS(12144), + [anon_sym_BSLASHAutocite] = ACTIONS(12144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHvolcite] = ACTIONS(12144), + [anon_sym_BSLASHVolcite] = ACTIONS(12144), + [anon_sym_BSLASHpvolcite] = ACTIONS(12144), + [anon_sym_BSLASHPvolcite] = ACTIONS(12144), + [anon_sym_BSLASHfvolcite] = ACTIONS(12144), + [anon_sym_BSLASHftvolcite] = ACTIONS(12144), + [anon_sym_BSLASHsvolcite] = ACTIONS(12144), + [anon_sym_BSLASHSvolcite] = ACTIONS(12144), + [anon_sym_BSLASHtvolcite] = ACTIONS(12144), + [anon_sym_BSLASHTvolcite] = ACTIONS(12144), + [anon_sym_BSLASHavolcite] = ACTIONS(12144), + [anon_sym_BSLASHAvolcite] = ACTIONS(12144), + [anon_sym_BSLASHnotecite] = ACTIONS(12144), + [anon_sym_BSLASHpnotecite] = ACTIONS(12144), + [anon_sym_BSLASHPnotecite] = ACTIONS(12144), + [anon_sym_BSLASHfnotecite] = ACTIONS(12144), + [anon_sym_BSLASHusepackage] = ACTIONS(12144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12144), + [anon_sym_BSLASHinclude] = ACTIONS(12144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12144), + [anon_sym_BSLASHinput] = ACTIONS(12144), + [anon_sym_BSLASHsubfile] = ACTIONS(12144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12144), + [anon_sym_BSLASHbibliography] = ACTIONS(12144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12144), + [anon_sym_BSLASHincludesvg] = ACTIONS(12144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12144), + [anon_sym_BSLASHimport] = ACTIONS(12144), + [anon_sym_BSLASHsubimport] = ACTIONS(12144), + [anon_sym_BSLASHinputfrom] = ACTIONS(12144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12144), + [anon_sym_BSLASHincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHlabel] = ACTIONS(12144), + [anon_sym_BSLASHref] = ACTIONS(12144), + [anon_sym_BSLASHvref] = ACTIONS(12144), + [anon_sym_BSLASHVref] = ACTIONS(12144), + [anon_sym_BSLASHautoref] = ACTIONS(12144), + [anon_sym_BSLASHpageref] = ACTIONS(12144), + [anon_sym_BSLASHcref] = ACTIONS(12144), + [anon_sym_BSLASHCref] = ACTIONS(12144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnameCref] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHlabelcref] = ACTIONS(12144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12144), + [anon_sym_BSLASHeqref] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange] = ACTIONS(12144), + [anon_sym_BSLASHCrefrange] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewlabel] = ACTIONS(12144), + [anon_sym_BSLASHnewcommand] = ACTIONS(12144), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12144), + [anon_sym_BSLASHgls] = ACTIONS(12144), + [anon_sym_BSLASHGls] = ACTIONS(12144), + [anon_sym_BSLASHGLS] = ACTIONS(12144), + [anon_sym_BSLASHglspl] = ACTIONS(12144), + [anon_sym_BSLASHGlspl] = ACTIONS(12144), + [anon_sym_BSLASHGLSpl] = ACTIONS(12144), + [anon_sym_BSLASHglsdisp] = ACTIONS(12144), + [anon_sym_BSLASHglslink] = ACTIONS(12144), + [anon_sym_BSLASHglstext] = ACTIONS(12144), + [anon_sym_BSLASHGlstext] = ACTIONS(12144), + [anon_sym_BSLASHGLStext] = ACTIONS(12144), + [anon_sym_BSLASHglsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12144), + [anon_sym_BSLASHglsplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSplural] = ACTIONS(12144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHglsname] = ACTIONS(12144), + [anon_sym_BSLASHGlsname] = ACTIONS(12144), + [anon_sym_BSLASHGLSname] = ACTIONS(12144), + [anon_sym_BSLASHglssymbol] = ACTIONS(12144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12144), + [anon_sym_BSLASHglsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12144), + [anon_sym_BSLASHglsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12144), + [anon_sym_BSLASHglsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12144), + [anon_sym_BSLASHglsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12144), + [anon_sym_BSLASHglsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12144), + [anon_sym_BSLASHnewacronym] = ACTIONS(12144), + [anon_sym_BSLASHacrshort] = ACTIONS(12144), + [anon_sym_BSLASHAcrshort] = ACTIONS(12144), + [anon_sym_BSLASHACRshort] = ACTIONS(12144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12144), + [anon_sym_BSLASHacrlong] = ACTIONS(12144), + [anon_sym_BSLASHAcrlong] = ACTIONS(12144), + [anon_sym_BSLASHACRlong] = ACTIONS(12144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12144), + [anon_sym_BSLASHacrfull] = ACTIONS(12144), + [anon_sym_BSLASHAcrfull] = ACTIONS(12144), + [anon_sym_BSLASHACRfull] = ACTIONS(12144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12144), + [anon_sym_BSLASHacs] = ACTIONS(12144), + [anon_sym_BSLASHAcs] = ACTIONS(12144), + [anon_sym_BSLASHacsp] = ACTIONS(12144), + [anon_sym_BSLASHAcsp] = ACTIONS(12144), + [anon_sym_BSLASHacl] = ACTIONS(12144), + [anon_sym_BSLASHAcl] = ACTIONS(12144), + [anon_sym_BSLASHaclp] = ACTIONS(12144), + [anon_sym_BSLASHAclp] = ACTIONS(12144), + [anon_sym_BSLASHacf] = ACTIONS(12144), + [anon_sym_BSLASHAcf] = ACTIONS(12144), + [anon_sym_BSLASHacfp] = ACTIONS(12144), + [anon_sym_BSLASHAcfp] = ACTIONS(12144), + [anon_sym_BSLASHac] = ACTIONS(12144), + [anon_sym_BSLASHAc] = ACTIONS(12144), + [anon_sym_BSLASHacp] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12144), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12144), + [anon_sym_BSLASHcolor] = ACTIONS(12144), + [anon_sym_BSLASHcolorbox] = ACTIONS(12144), + [anon_sym_BSLASHtextcolor] = ACTIONS(12144), + [anon_sym_BSLASHpagecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12144), + }, + [1226] = { + [sym_generic_command_name] = ACTIONS(12148), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12148), + [aux_sym_subsection_token1] = ACTIONS(12148), + [aux_sym_subsubsection_token1] = ACTIONS(12148), + [aux_sym_paragraph_token1] = ACTIONS(12148), + [aux_sym_subparagraph_token1] = ACTIONS(12148), + [anon_sym_BSLASHitem] = ACTIONS(12148), + [anon_sym_LBRACK] = ACTIONS(12146), + [anon_sym_RBRACK] = ACTIONS(12146), + [anon_sym_LBRACE] = ACTIONS(12146), + [anon_sym_RBRACE] = ACTIONS(12146), + [anon_sym_LPAREN] = ACTIONS(12146), + [anon_sym_COMMA] = ACTIONS(12146), + [anon_sym_EQ] = ACTIONS(12146), + [sym_word] = ACTIONS(12146), + [sym_param] = ACTIONS(12146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12146), + [anon_sym_DOLLAR] = ACTIONS(12148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12146), + [anon_sym_BSLASHbegin] = ACTIONS(12148), + [anon_sym_BSLASHcaption] = ACTIONS(12148), + [anon_sym_BSLASHcite] = ACTIONS(12148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCite] = ACTIONS(12148), + [anon_sym_BSLASHnocite] = ACTIONS(12148), + [anon_sym_BSLASHcitet] = ACTIONS(12148), + [anon_sym_BSLASHcitep] = ACTIONS(12148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteauthor] = ACTIONS(12148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitetitle] = ACTIONS(12148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteyear] = ACTIONS(12148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitedate] = ACTIONS(12148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteurl] = ACTIONS(12148), + [anon_sym_BSLASHfullcite] = ACTIONS(12148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12148), + [anon_sym_BSLASHcitealt] = ACTIONS(12148), + [anon_sym_BSLASHcitealp] = ACTIONS(12148), + [anon_sym_BSLASHcitetext] = ACTIONS(12148), + [anon_sym_BSLASHparencite] = ACTIONS(12148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHParencite] = ACTIONS(12148), + [anon_sym_BSLASHfootcite] = ACTIONS(12148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12148), + [anon_sym_BSLASHtextcite] = ACTIONS(12148), + [anon_sym_BSLASHTextcite] = ACTIONS(12148), + [anon_sym_BSLASHsmartcite] = ACTIONS(12148), + [anon_sym_BSLASHSmartcite] = ACTIONS(12148), + [anon_sym_BSLASHsupercite] = ACTIONS(12148), + [anon_sym_BSLASHautocite] = ACTIONS(12148), + [anon_sym_BSLASHAutocite] = ACTIONS(12148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHvolcite] = ACTIONS(12148), + [anon_sym_BSLASHVolcite] = ACTIONS(12148), + [anon_sym_BSLASHpvolcite] = ACTIONS(12148), + [anon_sym_BSLASHPvolcite] = ACTIONS(12148), + [anon_sym_BSLASHfvolcite] = ACTIONS(12148), + [anon_sym_BSLASHftvolcite] = ACTIONS(12148), + [anon_sym_BSLASHsvolcite] = ACTIONS(12148), + [anon_sym_BSLASHSvolcite] = ACTIONS(12148), + [anon_sym_BSLASHtvolcite] = ACTIONS(12148), + [anon_sym_BSLASHTvolcite] = ACTIONS(12148), + [anon_sym_BSLASHavolcite] = ACTIONS(12148), + [anon_sym_BSLASHAvolcite] = ACTIONS(12148), + [anon_sym_BSLASHnotecite] = ACTIONS(12148), + [anon_sym_BSLASHpnotecite] = ACTIONS(12148), + [anon_sym_BSLASHPnotecite] = ACTIONS(12148), + [anon_sym_BSLASHfnotecite] = ACTIONS(12148), + [anon_sym_BSLASHusepackage] = ACTIONS(12148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12148), + [anon_sym_BSLASHinclude] = ACTIONS(12148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12148), + [anon_sym_BSLASHinput] = ACTIONS(12148), + [anon_sym_BSLASHsubfile] = ACTIONS(12148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12148), + [anon_sym_BSLASHbibliography] = ACTIONS(12148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12148), + [anon_sym_BSLASHincludesvg] = ACTIONS(12148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12148), + [anon_sym_BSLASHimport] = ACTIONS(12148), + [anon_sym_BSLASHsubimport] = ACTIONS(12148), + [anon_sym_BSLASHinputfrom] = ACTIONS(12148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12148), + [anon_sym_BSLASHincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHlabel] = ACTIONS(12148), + [anon_sym_BSLASHref] = ACTIONS(12148), + [anon_sym_BSLASHvref] = ACTIONS(12148), + [anon_sym_BSLASHVref] = ACTIONS(12148), + [anon_sym_BSLASHautoref] = ACTIONS(12148), + [anon_sym_BSLASHpageref] = ACTIONS(12148), + [anon_sym_BSLASHcref] = ACTIONS(12148), + [anon_sym_BSLASHCref] = ACTIONS(12148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnameCref] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHlabelcref] = ACTIONS(12148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12148), + [anon_sym_BSLASHeqref] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange] = ACTIONS(12148), + [anon_sym_BSLASHCrefrange] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewlabel] = ACTIONS(12148), + [anon_sym_BSLASHnewcommand] = ACTIONS(12148), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12148), + [anon_sym_BSLASHgls] = ACTIONS(12148), + [anon_sym_BSLASHGls] = ACTIONS(12148), + [anon_sym_BSLASHGLS] = ACTIONS(12148), + [anon_sym_BSLASHglspl] = ACTIONS(12148), + [anon_sym_BSLASHGlspl] = ACTIONS(12148), + [anon_sym_BSLASHGLSpl] = ACTIONS(12148), + [anon_sym_BSLASHglsdisp] = ACTIONS(12148), + [anon_sym_BSLASHglslink] = ACTIONS(12148), + [anon_sym_BSLASHglstext] = ACTIONS(12148), + [anon_sym_BSLASHGlstext] = ACTIONS(12148), + [anon_sym_BSLASHGLStext] = ACTIONS(12148), + [anon_sym_BSLASHglsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12148), + [anon_sym_BSLASHglsplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSplural] = ACTIONS(12148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHglsname] = ACTIONS(12148), + [anon_sym_BSLASHGlsname] = ACTIONS(12148), + [anon_sym_BSLASHGLSname] = ACTIONS(12148), + [anon_sym_BSLASHglssymbol] = ACTIONS(12148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12148), + [anon_sym_BSLASHglsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12148), + [anon_sym_BSLASHglsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12148), + [anon_sym_BSLASHglsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12148), + [anon_sym_BSLASHglsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12148), + [anon_sym_BSLASHglsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12148), + [anon_sym_BSLASHnewacronym] = ACTIONS(12148), + [anon_sym_BSLASHacrshort] = ACTIONS(12148), + [anon_sym_BSLASHAcrshort] = ACTIONS(12148), + [anon_sym_BSLASHACRshort] = ACTIONS(12148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12148), + [anon_sym_BSLASHacrlong] = ACTIONS(12148), + [anon_sym_BSLASHAcrlong] = ACTIONS(12148), + [anon_sym_BSLASHACRlong] = ACTIONS(12148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12148), + [anon_sym_BSLASHacrfull] = ACTIONS(12148), + [anon_sym_BSLASHAcrfull] = ACTIONS(12148), + [anon_sym_BSLASHACRfull] = ACTIONS(12148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12148), + [anon_sym_BSLASHacs] = ACTIONS(12148), + [anon_sym_BSLASHAcs] = ACTIONS(12148), + [anon_sym_BSLASHacsp] = ACTIONS(12148), + [anon_sym_BSLASHAcsp] = ACTIONS(12148), + [anon_sym_BSLASHacl] = ACTIONS(12148), + [anon_sym_BSLASHAcl] = ACTIONS(12148), + [anon_sym_BSLASHaclp] = ACTIONS(12148), + [anon_sym_BSLASHAclp] = ACTIONS(12148), + [anon_sym_BSLASHacf] = ACTIONS(12148), + [anon_sym_BSLASHAcf] = ACTIONS(12148), + [anon_sym_BSLASHacfp] = ACTIONS(12148), + [anon_sym_BSLASHAcfp] = ACTIONS(12148), + [anon_sym_BSLASHac] = ACTIONS(12148), + [anon_sym_BSLASHAc] = ACTIONS(12148), + [anon_sym_BSLASHacp] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12148), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12148), + [anon_sym_BSLASHcolor] = ACTIONS(12148), + [anon_sym_BSLASHcolorbox] = ACTIONS(12148), + [anon_sym_BSLASHtextcolor] = ACTIONS(12148), + [anon_sym_BSLASHpagecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12148), + }, + [1227] = { + [sym_generic_command_name] = ACTIONS(12152), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12152), + [aux_sym_subsection_token1] = ACTIONS(12152), + [aux_sym_subsubsection_token1] = ACTIONS(12152), + [aux_sym_paragraph_token1] = ACTIONS(12152), + [aux_sym_subparagraph_token1] = ACTIONS(12152), + [anon_sym_BSLASHitem] = ACTIONS(12152), + [anon_sym_LBRACK] = ACTIONS(12150), + [anon_sym_RBRACK] = ACTIONS(12150), + [anon_sym_LBRACE] = ACTIONS(12150), + [anon_sym_RBRACE] = ACTIONS(12150), + [anon_sym_LPAREN] = ACTIONS(12150), + [anon_sym_COMMA] = ACTIONS(12150), + [anon_sym_EQ] = ACTIONS(12150), + [sym_word] = ACTIONS(12150), + [sym_param] = ACTIONS(12150), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12150), + [anon_sym_DOLLAR] = ACTIONS(12152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12150), + [anon_sym_BSLASHbegin] = ACTIONS(12152), + [anon_sym_BSLASHcaption] = ACTIONS(12152), + [anon_sym_BSLASHcite] = ACTIONS(12152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCite] = ACTIONS(12152), + [anon_sym_BSLASHnocite] = ACTIONS(12152), + [anon_sym_BSLASHcitet] = ACTIONS(12152), + [anon_sym_BSLASHcitep] = ACTIONS(12152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteauthor] = ACTIONS(12152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitetitle] = ACTIONS(12152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteyear] = ACTIONS(12152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitedate] = ACTIONS(12152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteurl] = ACTIONS(12152), + [anon_sym_BSLASHfullcite] = ACTIONS(12152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12152), + [anon_sym_BSLASHcitealt] = ACTIONS(12152), + [anon_sym_BSLASHcitealp] = ACTIONS(12152), + [anon_sym_BSLASHcitetext] = ACTIONS(12152), + [anon_sym_BSLASHparencite] = ACTIONS(12152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHParencite] = ACTIONS(12152), + [anon_sym_BSLASHfootcite] = ACTIONS(12152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12152), + [anon_sym_BSLASHtextcite] = ACTIONS(12152), + [anon_sym_BSLASHTextcite] = ACTIONS(12152), + [anon_sym_BSLASHsmartcite] = ACTIONS(12152), + [anon_sym_BSLASHSmartcite] = ACTIONS(12152), + [anon_sym_BSLASHsupercite] = ACTIONS(12152), + [anon_sym_BSLASHautocite] = ACTIONS(12152), + [anon_sym_BSLASHAutocite] = ACTIONS(12152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHvolcite] = ACTIONS(12152), + [anon_sym_BSLASHVolcite] = ACTIONS(12152), + [anon_sym_BSLASHpvolcite] = ACTIONS(12152), + [anon_sym_BSLASHPvolcite] = ACTIONS(12152), + [anon_sym_BSLASHfvolcite] = ACTIONS(12152), + [anon_sym_BSLASHftvolcite] = ACTIONS(12152), + [anon_sym_BSLASHsvolcite] = ACTIONS(12152), + [anon_sym_BSLASHSvolcite] = ACTIONS(12152), + [anon_sym_BSLASHtvolcite] = ACTIONS(12152), + [anon_sym_BSLASHTvolcite] = ACTIONS(12152), + [anon_sym_BSLASHavolcite] = ACTIONS(12152), + [anon_sym_BSLASHAvolcite] = ACTIONS(12152), + [anon_sym_BSLASHnotecite] = ACTIONS(12152), + [anon_sym_BSLASHpnotecite] = ACTIONS(12152), + [anon_sym_BSLASHPnotecite] = ACTIONS(12152), + [anon_sym_BSLASHfnotecite] = ACTIONS(12152), + [anon_sym_BSLASHusepackage] = ACTIONS(12152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12152), + [anon_sym_BSLASHinclude] = ACTIONS(12152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12152), + [anon_sym_BSLASHinput] = ACTIONS(12152), + [anon_sym_BSLASHsubfile] = ACTIONS(12152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12152), + [anon_sym_BSLASHbibliography] = ACTIONS(12152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12152), + [anon_sym_BSLASHincludesvg] = ACTIONS(12152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12152), + [anon_sym_BSLASHimport] = ACTIONS(12152), + [anon_sym_BSLASHsubimport] = ACTIONS(12152), + [anon_sym_BSLASHinputfrom] = ACTIONS(12152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12152), + [anon_sym_BSLASHincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHlabel] = ACTIONS(12152), + [anon_sym_BSLASHref] = ACTIONS(12152), + [anon_sym_BSLASHvref] = ACTIONS(12152), + [anon_sym_BSLASHVref] = ACTIONS(12152), + [anon_sym_BSLASHautoref] = ACTIONS(12152), + [anon_sym_BSLASHpageref] = ACTIONS(12152), + [anon_sym_BSLASHcref] = ACTIONS(12152), + [anon_sym_BSLASHCref] = ACTIONS(12152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnameCref] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHlabelcref] = ACTIONS(12152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12152), + [anon_sym_BSLASHeqref] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange] = ACTIONS(12152), + [anon_sym_BSLASHCrefrange] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewlabel] = ACTIONS(12152), + [anon_sym_BSLASHnewcommand] = ACTIONS(12152), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12152), + [anon_sym_BSLASHgls] = ACTIONS(12152), + [anon_sym_BSLASHGls] = ACTIONS(12152), + [anon_sym_BSLASHGLS] = ACTIONS(12152), + [anon_sym_BSLASHglspl] = ACTIONS(12152), + [anon_sym_BSLASHGlspl] = ACTIONS(12152), + [anon_sym_BSLASHGLSpl] = ACTIONS(12152), + [anon_sym_BSLASHglsdisp] = ACTIONS(12152), + [anon_sym_BSLASHglslink] = ACTIONS(12152), + [anon_sym_BSLASHglstext] = ACTIONS(12152), + [anon_sym_BSLASHGlstext] = ACTIONS(12152), + [anon_sym_BSLASHGLStext] = ACTIONS(12152), + [anon_sym_BSLASHglsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12152), + [anon_sym_BSLASHglsplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSplural] = ACTIONS(12152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHglsname] = ACTIONS(12152), + [anon_sym_BSLASHGlsname] = ACTIONS(12152), + [anon_sym_BSLASHGLSname] = ACTIONS(12152), + [anon_sym_BSLASHglssymbol] = ACTIONS(12152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12152), + [anon_sym_BSLASHglsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12152), + [anon_sym_BSLASHglsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12152), + [anon_sym_BSLASHglsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12152), + [anon_sym_BSLASHglsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12152), + [anon_sym_BSLASHglsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12152), + [anon_sym_BSLASHnewacronym] = ACTIONS(12152), + [anon_sym_BSLASHacrshort] = ACTIONS(12152), + [anon_sym_BSLASHAcrshort] = ACTIONS(12152), + [anon_sym_BSLASHACRshort] = ACTIONS(12152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12152), + [anon_sym_BSLASHacrlong] = ACTIONS(12152), + [anon_sym_BSLASHAcrlong] = ACTIONS(12152), + [anon_sym_BSLASHACRlong] = ACTIONS(12152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12152), + [anon_sym_BSLASHacrfull] = ACTIONS(12152), + [anon_sym_BSLASHAcrfull] = ACTIONS(12152), + [anon_sym_BSLASHACRfull] = ACTIONS(12152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12152), + [anon_sym_BSLASHacs] = ACTIONS(12152), + [anon_sym_BSLASHAcs] = ACTIONS(12152), + [anon_sym_BSLASHacsp] = ACTIONS(12152), + [anon_sym_BSLASHAcsp] = ACTIONS(12152), + [anon_sym_BSLASHacl] = ACTIONS(12152), + [anon_sym_BSLASHAcl] = ACTIONS(12152), + [anon_sym_BSLASHaclp] = ACTIONS(12152), + [anon_sym_BSLASHAclp] = ACTIONS(12152), + [anon_sym_BSLASHacf] = ACTIONS(12152), + [anon_sym_BSLASHAcf] = ACTIONS(12152), + [anon_sym_BSLASHacfp] = ACTIONS(12152), + [anon_sym_BSLASHAcfp] = ACTIONS(12152), + [anon_sym_BSLASHac] = ACTIONS(12152), + [anon_sym_BSLASHAc] = ACTIONS(12152), + [anon_sym_BSLASHacp] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12152), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12152), + [anon_sym_BSLASHcolor] = ACTIONS(12152), + [anon_sym_BSLASHcolorbox] = ACTIONS(12152), + [anon_sym_BSLASHtextcolor] = ACTIONS(12152), + [anon_sym_BSLASHpagecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12152), + }, + [1228] = { + [sym_generic_command_name] = ACTIONS(12156), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12156), + [aux_sym_subsection_token1] = ACTIONS(12156), + [aux_sym_subsubsection_token1] = ACTIONS(12156), + [aux_sym_paragraph_token1] = ACTIONS(12156), + [aux_sym_subparagraph_token1] = ACTIONS(12156), + [anon_sym_BSLASHitem] = ACTIONS(12156), + [anon_sym_LBRACK] = ACTIONS(12154), + [anon_sym_RBRACK] = ACTIONS(12154), + [anon_sym_LBRACE] = ACTIONS(12154), + [anon_sym_RBRACE] = ACTIONS(12154), + [anon_sym_LPAREN] = ACTIONS(12154), + [anon_sym_COMMA] = ACTIONS(12154), + [anon_sym_EQ] = ACTIONS(12154), + [sym_word] = ACTIONS(12154), + [sym_param] = ACTIONS(12154), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12154), + [anon_sym_DOLLAR] = ACTIONS(12156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12154), + [anon_sym_BSLASHbegin] = ACTIONS(12156), + [anon_sym_BSLASHcaption] = ACTIONS(12156), + [anon_sym_BSLASHcite] = ACTIONS(12156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCite] = ACTIONS(12156), + [anon_sym_BSLASHnocite] = ACTIONS(12156), + [anon_sym_BSLASHcitet] = ACTIONS(12156), + [anon_sym_BSLASHcitep] = ACTIONS(12156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteauthor] = ACTIONS(12156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitetitle] = ACTIONS(12156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteyear] = ACTIONS(12156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitedate] = ACTIONS(12156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteurl] = ACTIONS(12156), + [anon_sym_BSLASHfullcite] = ACTIONS(12156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12156), + [anon_sym_BSLASHcitealt] = ACTIONS(12156), + [anon_sym_BSLASHcitealp] = ACTIONS(12156), + [anon_sym_BSLASHcitetext] = ACTIONS(12156), + [anon_sym_BSLASHparencite] = ACTIONS(12156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHParencite] = ACTIONS(12156), + [anon_sym_BSLASHfootcite] = ACTIONS(12156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12156), + [anon_sym_BSLASHtextcite] = ACTIONS(12156), + [anon_sym_BSLASHTextcite] = ACTIONS(12156), + [anon_sym_BSLASHsmartcite] = ACTIONS(12156), + [anon_sym_BSLASHSmartcite] = ACTIONS(12156), + [anon_sym_BSLASHsupercite] = ACTIONS(12156), + [anon_sym_BSLASHautocite] = ACTIONS(12156), + [anon_sym_BSLASHAutocite] = ACTIONS(12156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHvolcite] = ACTIONS(12156), + [anon_sym_BSLASHVolcite] = ACTIONS(12156), + [anon_sym_BSLASHpvolcite] = ACTIONS(12156), + [anon_sym_BSLASHPvolcite] = ACTIONS(12156), + [anon_sym_BSLASHfvolcite] = ACTIONS(12156), + [anon_sym_BSLASHftvolcite] = ACTIONS(12156), + [anon_sym_BSLASHsvolcite] = ACTIONS(12156), + [anon_sym_BSLASHSvolcite] = ACTIONS(12156), + [anon_sym_BSLASHtvolcite] = ACTIONS(12156), + [anon_sym_BSLASHTvolcite] = ACTIONS(12156), + [anon_sym_BSLASHavolcite] = ACTIONS(12156), + [anon_sym_BSLASHAvolcite] = ACTIONS(12156), + [anon_sym_BSLASHnotecite] = ACTIONS(12156), + [anon_sym_BSLASHpnotecite] = ACTIONS(12156), + [anon_sym_BSLASHPnotecite] = ACTIONS(12156), + [anon_sym_BSLASHfnotecite] = ACTIONS(12156), + [anon_sym_BSLASHusepackage] = ACTIONS(12156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12156), + [anon_sym_BSLASHinclude] = ACTIONS(12156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12156), + [anon_sym_BSLASHinput] = ACTIONS(12156), + [anon_sym_BSLASHsubfile] = ACTIONS(12156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12156), + [anon_sym_BSLASHbibliography] = ACTIONS(12156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12156), + [anon_sym_BSLASHincludesvg] = ACTIONS(12156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12156), + [anon_sym_BSLASHimport] = ACTIONS(12156), + [anon_sym_BSLASHsubimport] = ACTIONS(12156), + [anon_sym_BSLASHinputfrom] = ACTIONS(12156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12156), + [anon_sym_BSLASHincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHlabel] = ACTIONS(12156), + [anon_sym_BSLASHref] = ACTIONS(12156), + [anon_sym_BSLASHvref] = ACTIONS(12156), + [anon_sym_BSLASHVref] = ACTIONS(12156), + [anon_sym_BSLASHautoref] = ACTIONS(12156), + [anon_sym_BSLASHpageref] = ACTIONS(12156), + [anon_sym_BSLASHcref] = ACTIONS(12156), + [anon_sym_BSLASHCref] = ACTIONS(12156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnameCref] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHlabelcref] = ACTIONS(12156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12156), + [anon_sym_BSLASHeqref] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange] = ACTIONS(12156), + [anon_sym_BSLASHCrefrange] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewlabel] = ACTIONS(12156), + [anon_sym_BSLASHnewcommand] = ACTIONS(12156), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12156), + [anon_sym_BSLASHgls] = ACTIONS(12156), + [anon_sym_BSLASHGls] = ACTIONS(12156), + [anon_sym_BSLASHGLS] = ACTIONS(12156), + [anon_sym_BSLASHglspl] = ACTIONS(12156), + [anon_sym_BSLASHGlspl] = ACTIONS(12156), + [anon_sym_BSLASHGLSpl] = ACTIONS(12156), + [anon_sym_BSLASHglsdisp] = ACTIONS(12156), + [anon_sym_BSLASHglslink] = ACTIONS(12156), + [anon_sym_BSLASHglstext] = ACTIONS(12156), + [anon_sym_BSLASHGlstext] = ACTIONS(12156), + [anon_sym_BSLASHGLStext] = ACTIONS(12156), + [anon_sym_BSLASHglsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12156), + [anon_sym_BSLASHglsplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSplural] = ACTIONS(12156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHglsname] = ACTIONS(12156), + [anon_sym_BSLASHGlsname] = ACTIONS(12156), + [anon_sym_BSLASHGLSname] = ACTIONS(12156), + [anon_sym_BSLASHglssymbol] = ACTIONS(12156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12156), + [anon_sym_BSLASHglsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12156), + [anon_sym_BSLASHglsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12156), + [anon_sym_BSLASHglsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12156), + [anon_sym_BSLASHglsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12156), + [anon_sym_BSLASHglsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12156), + [anon_sym_BSLASHnewacronym] = ACTIONS(12156), + [anon_sym_BSLASHacrshort] = ACTIONS(12156), + [anon_sym_BSLASHAcrshort] = ACTIONS(12156), + [anon_sym_BSLASHACRshort] = ACTIONS(12156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12156), + [anon_sym_BSLASHacrlong] = ACTIONS(12156), + [anon_sym_BSLASHAcrlong] = ACTIONS(12156), + [anon_sym_BSLASHACRlong] = ACTIONS(12156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12156), + [anon_sym_BSLASHacrfull] = ACTIONS(12156), + [anon_sym_BSLASHAcrfull] = ACTIONS(12156), + [anon_sym_BSLASHACRfull] = ACTIONS(12156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12156), + [anon_sym_BSLASHacs] = ACTIONS(12156), + [anon_sym_BSLASHAcs] = ACTIONS(12156), + [anon_sym_BSLASHacsp] = ACTIONS(12156), + [anon_sym_BSLASHAcsp] = ACTIONS(12156), + [anon_sym_BSLASHacl] = ACTIONS(12156), + [anon_sym_BSLASHAcl] = ACTIONS(12156), + [anon_sym_BSLASHaclp] = ACTIONS(12156), + [anon_sym_BSLASHAclp] = ACTIONS(12156), + [anon_sym_BSLASHacf] = ACTIONS(12156), + [anon_sym_BSLASHAcf] = ACTIONS(12156), + [anon_sym_BSLASHacfp] = ACTIONS(12156), + [anon_sym_BSLASHAcfp] = ACTIONS(12156), + [anon_sym_BSLASHac] = ACTIONS(12156), + [anon_sym_BSLASHAc] = ACTIONS(12156), + [anon_sym_BSLASHacp] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12156), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12156), + [anon_sym_BSLASHcolor] = ACTIONS(12156), + [anon_sym_BSLASHcolorbox] = ACTIONS(12156), + [anon_sym_BSLASHtextcolor] = ACTIONS(12156), + [anon_sym_BSLASHpagecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12156), + }, + [1229] = { + [sym_generic_command_name] = ACTIONS(12160), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12160), + [aux_sym_subsection_token1] = ACTIONS(12160), + [aux_sym_subsubsection_token1] = ACTIONS(12160), + [aux_sym_paragraph_token1] = ACTIONS(12160), + [aux_sym_subparagraph_token1] = ACTIONS(12160), + [anon_sym_BSLASHitem] = ACTIONS(12160), + [anon_sym_LBRACK] = ACTIONS(12158), + [anon_sym_RBRACK] = ACTIONS(12158), + [anon_sym_LBRACE] = ACTIONS(12158), + [anon_sym_RBRACE] = ACTIONS(12158), + [anon_sym_LPAREN] = ACTIONS(12158), + [anon_sym_COMMA] = ACTIONS(12158), + [anon_sym_EQ] = ACTIONS(12158), + [sym_word] = ACTIONS(12158), + [sym_param] = ACTIONS(12158), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12158), + [anon_sym_DOLLAR] = ACTIONS(12160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12158), + [anon_sym_BSLASHbegin] = ACTIONS(12160), + [anon_sym_BSLASHcaption] = ACTIONS(12160), + [anon_sym_BSLASHcite] = ACTIONS(12160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCite] = ACTIONS(12160), + [anon_sym_BSLASHnocite] = ACTIONS(12160), + [anon_sym_BSLASHcitet] = ACTIONS(12160), + [anon_sym_BSLASHcitep] = ACTIONS(12160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteauthor] = ACTIONS(12160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitetitle] = ACTIONS(12160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteyear] = ACTIONS(12160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitedate] = ACTIONS(12160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteurl] = ACTIONS(12160), + [anon_sym_BSLASHfullcite] = ACTIONS(12160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12160), + [anon_sym_BSLASHcitealt] = ACTIONS(12160), + [anon_sym_BSLASHcitealp] = ACTIONS(12160), + [anon_sym_BSLASHcitetext] = ACTIONS(12160), + [anon_sym_BSLASHparencite] = ACTIONS(12160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHParencite] = ACTIONS(12160), + [anon_sym_BSLASHfootcite] = ACTIONS(12160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12160), + [anon_sym_BSLASHtextcite] = ACTIONS(12160), + [anon_sym_BSLASHTextcite] = ACTIONS(12160), + [anon_sym_BSLASHsmartcite] = ACTIONS(12160), + [anon_sym_BSLASHSmartcite] = ACTIONS(12160), + [anon_sym_BSLASHsupercite] = ACTIONS(12160), + [anon_sym_BSLASHautocite] = ACTIONS(12160), + [anon_sym_BSLASHAutocite] = ACTIONS(12160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHvolcite] = ACTIONS(12160), + [anon_sym_BSLASHVolcite] = ACTIONS(12160), + [anon_sym_BSLASHpvolcite] = ACTIONS(12160), + [anon_sym_BSLASHPvolcite] = ACTIONS(12160), + [anon_sym_BSLASHfvolcite] = ACTIONS(12160), + [anon_sym_BSLASHftvolcite] = ACTIONS(12160), + [anon_sym_BSLASHsvolcite] = ACTIONS(12160), + [anon_sym_BSLASHSvolcite] = ACTIONS(12160), + [anon_sym_BSLASHtvolcite] = ACTIONS(12160), + [anon_sym_BSLASHTvolcite] = ACTIONS(12160), + [anon_sym_BSLASHavolcite] = ACTIONS(12160), + [anon_sym_BSLASHAvolcite] = ACTIONS(12160), + [anon_sym_BSLASHnotecite] = ACTIONS(12160), + [anon_sym_BSLASHpnotecite] = ACTIONS(12160), + [anon_sym_BSLASHPnotecite] = ACTIONS(12160), + [anon_sym_BSLASHfnotecite] = ACTIONS(12160), + [anon_sym_BSLASHusepackage] = ACTIONS(12160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12160), + [anon_sym_BSLASHinclude] = ACTIONS(12160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12160), + [anon_sym_BSLASHinput] = ACTIONS(12160), + [anon_sym_BSLASHsubfile] = ACTIONS(12160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12160), + [anon_sym_BSLASHbibliography] = ACTIONS(12160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12160), + [anon_sym_BSLASHincludesvg] = ACTIONS(12160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12160), + [anon_sym_BSLASHimport] = ACTIONS(12160), + [anon_sym_BSLASHsubimport] = ACTIONS(12160), + [anon_sym_BSLASHinputfrom] = ACTIONS(12160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12160), + [anon_sym_BSLASHincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHlabel] = ACTIONS(12160), + [anon_sym_BSLASHref] = ACTIONS(12160), + [anon_sym_BSLASHvref] = ACTIONS(12160), + [anon_sym_BSLASHVref] = ACTIONS(12160), + [anon_sym_BSLASHautoref] = ACTIONS(12160), + [anon_sym_BSLASHpageref] = ACTIONS(12160), + [anon_sym_BSLASHcref] = ACTIONS(12160), + [anon_sym_BSLASHCref] = ACTIONS(12160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnameCref] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHlabelcref] = ACTIONS(12160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12160), + [anon_sym_BSLASHeqref] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange] = ACTIONS(12160), + [anon_sym_BSLASHCrefrange] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewlabel] = ACTIONS(12160), + [anon_sym_BSLASHnewcommand] = ACTIONS(12160), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12160), + [anon_sym_BSLASHgls] = ACTIONS(12160), + [anon_sym_BSLASHGls] = ACTIONS(12160), + [anon_sym_BSLASHGLS] = ACTIONS(12160), + [anon_sym_BSLASHglspl] = ACTIONS(12160), + [anon_sym_BSLASHGlspl] = ACTIONS(12160), + [anon_sym_BSLASHGLSpl] = ACTIONS(12160), + [anon_sym_BSLASHglsdisp] = ACTIONS(12160), + [anon_sym_BSLASHglslink] = ACTIONS(12160), + [anon_sym_BSLASHglstext] = ACTIONS(12160), + [anon_sym_BSLASHGlstext] = ACTIONS(12160), + [anon_sym_BSLASHGLStext] = ACTIONS(12160), + [anon_sym_BSLASHglsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12160), + [anon_sym_BSLASHglsplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSplural] = ACTIONS(12160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHglsname] = ACTIONS(12160), + [anon_sym_BSLASHGlsname] = ACTIONS(12160), + [anon_sym_BSLASHGLSname] = ACTIONS(12160), + [anon_sym_BSLASHglssymbol] = ACTIONS(12160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12160), + [anon_sym_BSLASHglsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12160), + [anon_sym_BSLASHglsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12160), + [anon_sym_BSLASHglsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12160), + [anon_sym_BSLASHglsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12160), + [anon_sym_BSLASHglsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12160), + [anon_sym_BSLASHnewacronym] = ACTIONS(12160), + [anon_sym_BSLASHacrshort] = ACTIONS(12160), + [anon_sym_BSLASHAcrshort] = ACTIONS(12160), + [anon_sym_BSLASHACRshort] = ACTIONS(12160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12160), + [anon_sym_BSLASHacrlong] = ACTIONS(12160), + [anon_sym_BSLASHAcrlong] = ACTIONS(12160), + [anon_sym_BSLASHACRlong] = ACTIONS(12160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12160), + [anon_sym_BSLASHacrfull] = ACTIONS(12160), + [anon_sym_BSLASHAcrfull] = ACTIONS(12160), + [anon_sym_BSLASHACRfull] = ACTIONS(12160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12160), + [anon_sym_BSLASHacs] = ACTIONS(12160), + [anon_sym_BSLASHAcs] = ACTIONS(12160), + [anon_sym_BSLASHacsp] = ACTIONS(12160), + [anon_sym_BSLASHAcsp] = ACTIONS(12160), + [anon_sym_BSLASHacl] = ACTIONS(12160), + [anon_sym_BSLASHAcl] = ACTIONS(12160), + [anon_sym_BSLASHaclp] = ACTIONS(12160), + [anon_sym_BSLASHAclp] = ACTIONS(12160), + [anon_sym_BSLASHacf] = ACTIONS(12160), + [anon_sym_BSLASHAcf] = ACTIONS(12160), + [anon_sym_BSLASHacfp] = ACTIONS(12160), + [anon_sym_BSLASHAcfp] = ACTIONS(12160), + [anon_sym_BSLASHac] = ACTIONS(12160), + [anon_sym_BSLASHAc] = ACTIONS(12160), + [anon_sym_BSLASHacp] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12160), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12160), + [anon_sym_BSLASHcolor] = ACTIONS(12160), + [anon_sym_BSLASHcolorbox] = ACTIONS(12160), + [anon_sym_BSLASHtextcolor] = ACTIONS(12160), + [anon_sym_BSLASHpagecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12160), + }, + [1230] = { + [sym_generic_command_name] = ACTIONS(12173), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12173), + [aux_sym_subsection_token1] = ACTIONS(12173), + [aux_sym_subsubsection_token1] = ACTIONS(12173), + [aux_sym_paragraph_token1] = ACTIONS(12173), + [aux_sym_subparagraph_token1] = ACTIONS(12173), + [anon_sym_BSLASHitem] = ACTIONS(12173), + [anon_sym_LBRACK] = ACTIONS(12171), + [anon_sym_RBRACK] = ACTIONS(12171), + [anon_sym_LBRACE] = ACTIONS(12171), + [anon_sym_RBRACE] = ACTIONS(12171), + [anon_sym_LPAREN] = ACTIONS(12171), + [anon_sym_COMMA] = ACTIONS(12171), + [anon_sym_EQ] = ACTIONS(12171), + [sym_word] = ACTIONS(12171), + [sym_param] = ACTIONS(12171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12171), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12171), + [anon_sym_DOLLAR] = ACTIONS(12173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12171), + [anon_sym_BSLASHbegin] = ACTIONS(12173), + [anon_sym_BSLASHcaption] = ACTIONS(12173), + [anon_sym_BSLASHcite] = ACTIONS(12173), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCite] = ACTIONS(12173), + [anon_sym_BSLASHnocite] = ACTIONS(12173), + [anon_sym_BSLASHcitet] = ACTIONS(12173), + [anon_sym_BSLASHcitep] = ACTIONS(12173), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteauthor] = ACTIONS(12173), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12173), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitetitle] = ACTIONS(12173), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteyear] = ACTIONS(12173), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitedate] = ACTIONS(12173), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteurl] = ACTIONS(12173), + [anon_sym_BSLASHfullcite] = ACTIONS(12173), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12173), + [anon_sym_BSLASHcitealt] = ACTIONS(12173), + [anon_sym_BSLASHcitealp] = ACTIONS(12173), + [anon_sym_BSLASHcitetext] = ACTIONS(12173), + [anon_sym_BSLASHparencite] = ACTIONS(12173), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHParencite] = ACTIONS(12173), + [anon_sym_BSLASHfootcite] = ACTIONS(12173), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12173), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12173), + [anon_sym_BSLASHtextcite] = ACTIONS(12173), + [anon_sym_BSLASHTextcite] = ACTIONS(12173), + [anon_sym_BSLASHsmartcite] = ACTIONS(12173), + [anon_sym_BSLASHSmartcite] = ACTIONS(12173), + [anon_sym_BSLASHsupercite] = ACTIONS(12173), + [anon_sym_BSLASHautocite] = ACTIONS(12173), + [anon_sym_BSLASHAutocite] = ACTIONS(12173), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHvolcite] = ACTIONS(12173), + [anon_sym_BSLASHVolcite] = ACTIONS(12173), + [anon_sym_BSLASHpvolcite] = ACTIONS(12173), + [anon_sym_BSLASHPvolcite] = ACTIONS(12173), + [anon_sym_BSLASHfvolcite] = ACTIONS(12173), + [anon_sym_BSLASHftvolcite] = ACTIONS(12173), + [anon_sym_BSLASHsvolcite] = ACTIONS(12173), + [anon_sym_BSLASHSvolcite] = ACTIONS(12173), + [anon_sym_BSLASHtvolcite] = ACTIONS(12173), + [anon_sym_BSLASHTvolcite] = ACTIONS(12173), + [anon_sym_BSLASHavolcite] = ACTIONS(12173), + [anon_sym_BSLASHAvolcite] = ACTIONS(12173), + [anon_sym_BSLASHnotecite] = ACTIONS(12173), + [anon_sym_BSLASHpnotecite] = ACTIONS(12173), + [anon_sym_BSLASHPnotecite] = ACTIONS(12173), + [anon_sym_BSLASHfnotecite] = ACTIONS(12173), + [anon_sym_BSLASHusepackage] = ACTIONS(12173), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12173), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12173), + [anon_sym_BSLASHinclude] = ACTIONS(12173), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12173), + [anon_sym_BSLASHinput] = ACTIONS(12173), + [anon_sym_BSLASHsubfile] = ACTIONS(12173), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12173), + [anon_sym_BSLASHbibliography] = ACTIONS(12173), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12173), + [anon_sym_BSLASHincludesvg] = ACTIONS(12173), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12173), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12173), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12173), + [anon_sym_BSLASHimport] = ACTIONS(12173), + [anon_sym_BSLASHsubimport] = ACTIONS(12173), + [anon_sym_BSLASHinputfrom] = ACTIONS(12173), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12173), + [anon_sym_BSLASHincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHlabel] = ACTIONS(12173), + [anon_sym_BSLASHref] = ACTIONS(12173), + [anon_sym_BSLASHvref] = ACTIONS(12173), + [anon_sym_BSLASHVref] = ACTIONS(12173), + [anon_sym_BSLASHautoref] = ACTIONS(12173), + [anon_sym_BSLASHpageref] = ACTIONS(12173), + [anon_sym_BSLASHcref] = ACTIONS(12173), + [anon_sym_BSLASHCref] = ACTIONS(12173), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnameCref] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHlabelcref] = ACTIONS(12173), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12173), + [anon_sym_BSLASHeqref] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange] = ACTIONS(12173), + [anon_sym_BSLASHCrefrange] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewlabel] = ACTIONS(12173), + [anon_sym_BSLASHnewcommand] = ACTIONS(12173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12173), + [anon_sym_BSLASHgls] = ACTIONS(12173), + [anon_sym_BSLASHGls] = ACTIONS(12173), + [anon_sym_BSLASHGLS] = ACTIONS(12173), + [anon_sym_BSLASHglspl] = ACTIONS(12173), + [anon_sym_BSLASHGlspl] = ACTIONS(12173), + [anon_sym_BSLASHGLSpl] = ACTIONS(12173), + [anon_sym_BSLASHglsdisp] = ACTIONS(12173), + [anon_sym_BSLASHglslink] = ACTIONS(12173), + [anon_sym_BSLASHglstext] = ACTIONS(12173), + [anon_sym_BSLASHGlstext] = ACTIONS(12173), + [anon_sym_BSLASHGLStext] = ACTIONS(12173), + [anon_sym_BSLASHglsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12173), + [anon_sym_BSLASHglsplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSplural] = ACTIONS(12173), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHglsname] = ACTIONS(12173), + [anon_sym_BSLASHGlsname] = ACTIONS(12173), + [anon_sym_BSLASHGLSname] = ACTIONS(12173), + [anon_sym_BSLASHglssymbol] = ACTIONS(12173), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12173), + [anon_sym_BSLASHglsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12173), + [anon_sym_BSLASHglsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12173), + [anon_sym_BSLASHglsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12173), + [anon_sym_BSLASHglsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12173), + [anon_sym_BSLASHglsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12173), + [anon_sym_BSLASHnewacronym] = ACTIONS(12173), + [anon_sym_BSLASHacrshort] = ACTIONS(12173), + [anon_sym_BSLASHAcrshort] = ACTIONS(12173), + [anon_sym_BSLASHACRshort] = ACTIONS(12173), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12173), + [anon_sym_BSLASHacrlong] = ACTIONS(12173), + [anon_sym_BSLASHAcrlong] = ACTIONS(12173), + [anon_sym_BSLASHACRlong] = ACTIONS(12173), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12173), + [anon_sym_BSLASHacrfull] = ACTIONS(12173), + [anon_sym_BSLASHAcrfull] = ACTIONS(12173), + [anon_sym_BSLASHACRfull] = ACTIONS(12173), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12173), + [anon_sym_BSLASHacs] = ACTIONS(12173), + [anon_sym_BSLASHAcs] = ACTIONS(12173), + [anon_sym_BSLASHacsp] = ACTIONS(12173), + [anon_sym_BSLASHAcsp] = ACTIONS(12173), + [anon_sym_BSLASHacl] = ACTIONS(12173), + [anon_sym_BSLASHAcl] = ACTIONS(12173), + [anon_sym_BSLASHaclp] = ACTIONS(12173), + [anon_sym_BSLASHAclp] = ACTIONS(12173), + [anon_sym_BSLASHacf] = ACTIONS(12173), + [anon_sym_BSLASHAcf] = ACTIONS(12173), + [anon_sym_BSLASHacfp] = ACTIONS(12173), + [anon_sym_BSLASHAcfp] = ACTIONS(12173), + [anon_sym_BSLASHac] = ACTIONS(12173), + [anon_sym_BSLASHAc] = ACTIONS(12173), + [anon_sym_BSLASHacp] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12173), + [anon_sym_BSLASHcolor] = ACTIONS(12173), + [anon_sym_BSLASHcolorbox] = ACTIONS(12173), + [anon_sym_BSLASHtextcolor] = ACTIONS(12173), + [anon_sym_BSLASHpagecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12173), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12173), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12173), + }, + [1231] = { + [sym_generic_command_name] = ACTIONS(12177), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12177), + [aux_sym_subsection_token1] = ACTIONS(12177), + [aux_sym_subsubsection_token1] = ACTIONS(12177), + [aux_sym_paragraph_token1] = ACTIONS(12177), + [aux_sym_subparagraph_token1] = ACTIONS(12177), + [anon_sym_BSLASHitem] = ACTIONS(12177), + [anon_sym_LBRACK] = ACTIONS(12175), + [anon_sym_RBRACK] = ACTIONS(12175), + [anon_sym_LBRACE] = ACTIONS(12175), + [anon_sym_RBRACE] = ACTIONS(12175), + [anon_sym_LPAREN] = ACTIONS(12175), + [anon_sym_COMMA] = ACTIONS(12175), + [anon_sym_EQ] = ACTIONS(12175), + [sym_word] = ACTIONS(12175), + [sym_param] = ACTIONS(12175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12175), + [anon_sym_DOLLAR] = ACTIONS(12177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12175), + [anon_sym_BSLASHbegin] = ACTIONS(12177), + [anon_sym_BSLASHcaption] = ACTIONS(12177), + [anon_sym_BSLASHcite] = ACTIONS(12177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCite] = ACTIONS(12177), + [anon_sym_BSLASHnocite] = ACTIONS(12177), + [anon_sym_BSLASHcitet] = ACTIONS(12177), + [anon_sym_BSLASHcitep] = ACTIONS(12177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteauthor] = ACTIONS(12177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitetitle] = ACTIONS(12177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteyear] = ACTIONS(12177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitedate] = ACTIONS(12177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteurl] = ACTIONS(12177), + [anon_sym_BSLASHfullcite] = ACTIONS(12177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12177), + [anon_sym_BSLASHcitealt] = ACTIONS(12177), + [anon_sym_BSLASHcitealp] = ACTIONS(12177), + [anon_sym_BSLASHcitetext] = ACTIONS(12177), + [anon_sym_BSLASHparencite] = ACTIONS(12177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHParencite] = ACTIONS(12177), + [anon_sym_BSLASHfootcite] = ACTIONS(12177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12177), + [anon_sym_BSLASHtextcite] = ACTIONS(12177), + [anon_sym_BSLASHTextcite] = ACTIONS(12177), + [anon_sym_BSLASHsmartcite] = ACTIONS(12177), + [anon_sym_BSLASHSmartcite] = ACTIONS(12177), + [anon_sym_BSLASHsupercite] = ACTIONS(12177), + [anon_sym_BSLASHautocite] = ACTIONS(12177), + [anon_sym_BSLASHAutocite] = ACTIONS(12177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHvolcite] = ACTIONS(12177), + [anon_sym_BSLASHVolcite] = ACTIONS(12177), + [anon_sym_BSLASHpvolcite] = ACTIONS(12177), + [anon_sym_BSLASHPvolcite] = ACTIONS(12177), + [anon_sym_BSLASHfvolcite] = ACTIONS(12177), + [anon_sym_BSLASHftvolcite] = ACTIONS(12177), + [anon_sym_BSLASHsvolcite] = ACTIONS(12177), + [anon_sym_BSLASHSvolcite] = ACTIONS(12177), + [anon_sym_BSLASHtvolcite] = ACTIONS(12177), + [anon_sym_BSLASHTvolcite] = ACTIONS(12177), + [anon_sym_BSLASHavolcite] = ACTIONS(12177), + [anon_sym_BSLASHAvolcite] = ACTIONS(12177), + [anon_sym_BSLASHnotecite] = ACTIONS(12177), + [anon_sym_BSLASHpnotecite] = ACTIONS(12177), + [anon_sym_BSLASHPnotecite] = ACTIONS(12177), + [anon_sym_BSLASHfnotecite] = ACTIONS(12177), + [anon_sym_BSLASHusepackage] = ACTIONS(12177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12177), + [anon_sym_BSLASHinclude] = ACTIONS(12177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12177), + [anon_sym_BSLASHinput] = ACTIONS(12177), + [anon_sym_BSLASHsubfile] = ACTIONS(12177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12177), + [anon_sym_BSLASHbibliography] = ACTIONS(12177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12177), + [anon_sym_BSLASHincludesvg] = ACTIONS(12177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12177), + [anon_sym_BSLASHimport] = ACTIONS(12177), + [anon_sym_BSLASHsubimport] = ACTIONS(12177), + [anon_sym_BSLASHinputfrom] = ACTIONS(12177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12177), + [anon_sym_BSLASHincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHlabel] = ACTIONS(12177), + [anon_sym_BSLASHref] = ACTIONS(12177), + [anon_sym_BSLASHvref] = ACTIONS(12177), + [anon_sym_BSLASHVref] = ACTIONS(12177), + [anon_sym_BSLASHautoref] = ACTIONS(12177), + [anon_sym_BSLASHpageref] = ACTIONS(12177), + [anon_sym_BSLASHcref] = ACTIONS(12177), + [anon_sym_BSLASHCref] = ACTIONS(12177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnameCref] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHlabelcref] = ACTIONS(12177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12177), + [anon_sym_BSLASHeqref] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange] = ACTIONS(12177), + [anon_sym_BSLASHCrefrange] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewlabel] = ACTIONS(12177), + [anon_sym_BSLASHnewcommand] = ACTIONS(12177), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12177), + [anon_sym_BSLASHgls] = ACTIONS(12177), + [anon_sym_BSLASHGls] = ACTIONS(12177), + [anon_sym_BSLASHGLS] = ACTIONS(12177), + [anon_sym_BSLASHglspl] = ACTIONS(12177), + [anon_sym_BSLASHGlspl] = ACTIONS(12177), + [anon_sym_BSLASHGLSpl] = ACTIONS(12177), + [anon_sym_BSLASHglsdisp] = ACTIONS(12177), + [anon_sym_BSLASHglslink] = ACTIONS(12177), + [anon_sym_BSLASHglstext] = ACTIONS(12177), + [anon_sym_BSLASHGlstext] = ACTIONS(12177), + [anon_sym_BSLASHGLStext] = ACTIONS(12177), + [anon_sym_BSLASHglsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12177), + [anon_sym_BSLASHglsplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSplural] = ACTIONS(12177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHglsname] = ACTIONS(12177), + [anon_sym_BSLASHGlsname] = ACTIONS(12177), + [anon_sym_BSLASHGLSname] = ACTIONS(12177), + [anon_sym_BSLASHglssymbol] = ACTIONS(12177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12177), + [anon_sym_BSLASHglsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12177), + [anon_sym_BSLASHglsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12177), + [anon_sym_BSLASHglsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12177), + [anon_sym_BSLASHglsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12177), + [anon_sym_BSLASHglsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12177), + [anon_sym_BSLASHnewacronym] = ACTIONS(12177), + [anon_sym_BSLASHacrshort] = ACTIONS(12177), + [anon_sym_BSLASHAcrshort] = ACTIONS(12177), + [anon_sym_BSLASHACRshort] = ACTIONS(12177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12177), + [anon_sym_BSLASHacrlong] = ACTIONS(12177), + [anon_sym_BSLASHAcrlong] = ACTIONS(12177), + [anon_sym_BSLASHACRlong] = ACTIONS(12177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12177), + [anon_sym_BSLASHacrfull] = ACTIONS(12177), + [anon_sym_BSLASHAcrfull] = ACTIONS(12177), + [anon_sym_BSLASHACRfull] = ACTIONS(12177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12177), + [anon_sym_BSLASHacs] = ACTIONS(12177), + [anon_sym_BSLASHAcs] = ACTIONS(12177), + [anon_sym_BSLASHacsp] = ACTIONS(12177), + [anon_sym_BSLASHAcsp] = ACTIONS(12177), + [anon_sym_BSLASHacl] = ACTIONS(12177), + [anon_sym_BSLASHAcl] = ACTIONS(12177), + [anon_sym_BSLASHaclp] = ACTIONS(12177), + [anon_sym_BSLASHAclp] = ACTIONS(12177), + [anon_sym_BSLASHacf] = ACTIONS(12177), + [anon_sym_BSLASHAcf] = ACTIONS(12177), + [anon_sym_BSLASHacfp] = ACTIONS(12177), + [anon_sym_BSLASHAcfp] = ACTIONS(12177), + [anon_sym_BSLASHac] = ACTIONS(12177), + [anon_sym_BSLASHAc] = ACTIONS(12177), + [anon_sym_BSLASHacp] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12177), + [anon_sym_BSLASHcolor] = ACTIONS(12177), + [anon_sym_BSLASHcolorbox] = ACTIONS(12177), + [anon_sym_BSLASHtextcolor] = ACTIONS(12177), + [anon_sym_BSLASHpagecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12177), + }, + [1232] = { + [sym_generic_command_name] = ACTIONS(12197), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12197), + [aux_sym_subsection_token1] = ACTIONS(12197), + [aux_sym_subsubsection_token1] = ACTIONS(12197), + [aux_sym_paragraph_token1] = ACTIONS(12197), + [aux_sym_subparagraph_token1] = ACTIONS(12197), + [anon_sym_BSLASHitem] = ACTIONS(12197), + [anon_sym_LBRACK] = ACTIONS(12195), + [anon_sym_RBRACK] = ACTIONS(12195), + [anon_sym_LBRACE] = ACTIONS(12195), + [anon_sym_RBRACE] = ACTIONS(12195), + [anon_sym_LPAREN] = ACTIONS(12195), + [anon_sym_COMMA] = ACTIONS(12195), + [anon_sym_EQ] = ACTIONS(12195), + [sym_word] = ACTIONS(12195), + [sym_param] = ACTIONS(12195), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12195), + [anon_sym_DOLLAR] = ACTIONS(12197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12195), + [anon_sym_BSLASHbegin] = ACTIONS(12197), + [anon_sym_BSLASHcaption] = ACTIONS(12197), + [anon_sym_BSLASHcite] = ACTIONS(12197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCite] = ACTIONS(12197), + [anon_sym_BSLASHnocite] = ACTIONS(12197), + [anon_sym_BSLASHcitet] = ACTIONS(12197), + [anon_sym_BSLASHcitep] = ACTIONS(12197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteauthor] = ACTIONS(12197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitetitle] = ACTIONS(12197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteyear] = ACTIONS(12197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitedate] = ACTIONS(12197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteurl] = ACTIONS(12197), + [anon_sym_BSLASHfullcite] = ACTIONS(12197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12197), + [anon_sym_BSLASHcitealt] = ACTIONS(12197), + [anon_sym_BSLASHcitealp] = ACTIONS(12197), + [anon_sym_BSLASHcitetext] = ACTIONS(12197), + [anon_sym_BSLASHparencite] = ACTIONS(12197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHParencite] = ACTIONS(12197), + [anon_sym_BSLASHfootcite] = ACTIONS(12197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12197), + [anon_sym_BSLASHtextcite] = ACTIONS(12197), + [anon_sym_BSLASHTextcite] = ACTIONS(12197), + [anon_sym_BSLASHsmartcite] = ACTIONS(12197), + [anon_sym_BSLASHSmartcite] = ACTIONS(12197), + [anon_sym_BSLASHsupercite] = ACTIONS(12197), + [anon_sym_BSLASHautocite] = ACTIONS(12197), + [anon_sym_BSLASHAutocite] = ACTIONS(12197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHvolcite] = ACTIONS(12197), + [anon_sym_BSLASHVolcite] = ACTIONS(12197), + [anon_sym_BSLASHpvolcite] = ACTIONS(12197), + [anon_sym_BSLASHPvolcite] = ACTIONS(12197), + [anon_sym_BSLASHfvolcite] = ACTIONS(12197), + [anon_sym_BSLASHftvolcite] = ACTIONS(12197), + [anon_sym_BSLASHsvolcite] = ACTIONS(12197), + [anon_sym_BSLASHSvolcite] = ACTIONS(12197), + [anon_sym_BSLASHtvolcite] = ACTIONS(12197), + [anon_sym_BSLASHTvolcite] = ACTIONS(12197), + [anon_sym_BSLASHavolcite] = ACTIONS(12197), + [anon_sym_BSLASHAvolcite] = ACTIONS(12197), + [anon_sym_BSLASHnotecite] = ACTIONS(12197), + [anon_sym_BSLASHpnotecite] = ACTIONS(12197), + [anon_sym_BSLASHPnotecite] = ACTIONS(12197), + [anon_sym_BSLASHfnotecite] = ACTIONS(12197), + [anon_sym_BSLASHusepackage] = ACTIONS(12197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12197), + [anon_sym_BSLASHinclude] = ACTIONS(12197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12197), + [anon_sym_BSLASHinput] = ACTIONS(12197), + [anon_sym_BSLASHsubfile] = ACTIONS(12197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12197), + [anon_sym_BSLASHbibliography] = ACTIONS(12197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12197), + [anon_sym_BSLASHincludesvg] = ACTIONS(12197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12197), + [anon_sym_BSLASHimport] = ACTIONS(12197), + [anon_sym_BSLASHsubimport] = ACTIONS(12197), + [anon_sym_BSLASHinputfrom] = ACTIONS(12197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12197), + [anon_sym_BSLASHincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHlabel] = ACTIONS(12197), + [anon_sym_BSLASHref] = ACTIONS(12197), + [anon_sym_BSLASHvref] = ACTIONS(12197), + [anon_sym_BSLASHVref] = ACTIONS(12197), + [anon_sym_BSLASHautoref] = ACTIONS(12197), + [anon_sym_BSLASHpageref] = ACTIONS(12197), + [anon_sym_BSLASHcref] = ACTIONS(12197), + [anon_sym_BSLASHCref] = ACTIONS(12197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnameCref] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHlabelcref] = ACTIONS(12197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12197), + [anon_sym_BSLASHeqref] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange] = ACTIONS(12197), + [anon_sym_BSLASHCrefrange] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewlabel] = ACTIONS(12197), + [anon_sym_BSLASHnewcommand] = ACTIONS(12197), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12197), + [anon_sym_BSLASHgls] = ACTIONS(12197), + [anon_sym_BSLASHGls] = ACTIONS(12197), + [anon_sym_BSLASHGLS] = ACTIONS(12197), + [anon_sym_BSLASHglspl] = ACTIONS(12197), + [anon_sym_BSLASHGlspl] = ACTIONS(12197), + [anon_sym_BSLASHGLSpl] = ACTIONS(12197), + [anon_sym_BSLASHglsdisp] = ACTIONS(12197), + [anon_sym_BSLASHglslink] = ACTIONS(12197), + [anon_sym_BSLASHglstext] = ACTIONS(12197), + [anon_sym_BSLASHGlstext] = ACTIONS(12197), + [anon_sym_BSLASHGLStext] = ACTIONS(12197), + [anon_sym_BSLASHglsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12197), + [anon_sym_BSLASHglsplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSplural] = ACTIONS(12197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHglsname] = ACTIONS(12197), + [anon_sym_BSLASHGlsname] = ACTIONS(12197), + [anon_sym_BSLASHGLSname] = ACTIONS(12197), + [anon_sym_BSLASHglssymbol] = ACTIONS(12197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12197), + [anon_sym_BSLASHglsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12197), + [anon_sym_BSLASHglsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12197), + [anon_sym_BSLASHglsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12197), + [anon_sym_BSLASHglsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12197), + [anon_sym_BSLASHglsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12197), + [anon_sym_BSLASHnewacronym] = ACTIONS(12197), + [anon_sym_BSLASHacrshort] = ACTIONS(12197), + [anon_sym_BSLASHAcrshort] = ACTIONS(12197), + [anon_sym_BSLASHACRshort] = ACTIONS(12197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12197), + [anon_sym_BSLASHacrlong] = ACTIONS(12197), + [anon_sym_BSLASHAcrlong] = ACTIONS(12197), + [anon_sym_BSLASHACRlong] = ACTIONS(12197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12197), + [anon_sym_BSLASHacrfull] = ACTIONS(12197), + [anon_sym_BSLASHAcrfull] = ACTIONS(12197), + [anon_sym_BSLASHACRfull] = ACTIONS(12197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12197), + [anon_sym_BSLASHacs] = ACTIONS(12197), + [anon_sym_BSLASHAcs] = ACTIONS(12197), + [anon_sym_BSLASHacsp] = ACTIONS(12197), + [anon_sym_BSLASHAcsp] = ACTIONS(12197), + [anon_sym_BSLASHacl] = ACTIONS(12197), + [anon_sym_BSLASHAcl] = ACTIONS(12197), + [anon_sym_BSLASHaclp] = ACTIONS(12197), + [anon_sym_BSLASHAclp] = ACTIONS(12197), + [anon_sym_BSLASHacf] = ACTIONS(12197), + [anon_sym_BSLASHAcf] = ACTIONS(12197), + [anon_sym_BSLASHacfp] = ACTIONS(12197), + [anon_sym_BSLASHAcfp] = ACTIONS(12197), + [anon_sym_BSLASHac] = ACTIONS(12197), + [anon_sym_BSLASHAc] = ACTIONS(12197), + [anon_sym_BSLASHacp] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12197), + [anon_sym_BSLASHcolor] = ACTIONS(12197), + [anon_sym_BSLASHcolorbox] = ACTIONS(12197), + [anon_sym_BSLASHtextcolor] = ACTIONS(12197), + [anon_sym_BSLASHpagecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12197), + }, + [1233] = { + [sym_generic_command_name] = ACTIONS(12209), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12209), + [aux_sym_subsection_token1] = ACTIONS(12209), + [aux_sym_subsubsection_token1] = ACTIONS(12209), + [aux_sym_paragraph_token1] = ACTIONS(12209), + [aux_sym_subparagraph_token1] = ACTIONS(12209), + [anon_sym_BSLASHitem] = ACTIONS(12209), + [anon_sym_LBRACK] = ACTIONS(12207), + [anon_sym_RBRACK] = ACTIONS(12207), + [anon_sym_LBRACE] = ACTIONS(12207), + [anon_sym_RBRACE] = ACTIONS(12207), + [anon_sym_LPAREN] = ACTIONS(12207), + [anon_sym_COMMA] = ACTIONS(12207), + [anon_sym_EQ] = ACTIONS(12207), + [sym_word] = ACTIONS(12207), + [sym_param] = ACTIONS(12207), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12207), + [anon_sym_DOLLAR] = ACTIONS(12209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12207), + [anon_sym_BSLASHbegin] = ACTIONS(12209), + [anon_sym_BSLASHcaption] = ACTIONS(12209), + [anon_sym_BSLASHcite] = ACTIONS(12209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCite] = ACTIONS(12209), + [anon_sym_BSLASHnocite] = ACTIONS(12209), + [anon_sym_BSLASHcitet] = ACTIONS(12209), + [anon_sym_BSLASHcitep] = ACTIONS(12209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteauthor] = ACTIONS(12209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitetitle] = ACTIONS(12209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteyear] = ACTIONS(12209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitedate] = ACTIONS(12209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteurl] = ACTIONS(12209), + [anon_sym_BSLASHfullcite] = ACTIONS(12209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12209), + [anon_sym_BSLASHcitealt] = ACTIONS(12209), + [anon_sym_BSLASHcitealp] = ACTIONS(12209), + [anon_sym_BSLASHcitetext] = ACTIONS(12209), + [anon_sym_BSLASHparencite] = ACTIONS(12209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHParencite] = ACTIONS(12209), + [anon_sym_BSLASHfootcite] = ACTIONS(12209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12209), + [anon_sym_BSLASHtextcite] = ACTIONS(12209), + [anon_sym_BSLASHTextcite] = ACTIONS(12209), + [anon_sym_BSLASHsmartcite] = ACTIONS(12209), + [anon_sym_BSLASHSmartcite] = ACTIONS(12209), + [anon_sym_BSLASHsupercite] = ACTIONS(12209), + [anon_sym_BSLASHautocite] = ACTIONS(12209), + [anon_sym_BSLASHAutocite] = ACTIONS(12209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHvolcite] = ACTIONS(12209), + [anon_sym_BSLASHVolcite] = ACTIONS(12209), + [anon_sym_BSLASHpvolcite] = ACTIONS(12209), + [anon_sym_BSLASHPvolcite] = ACTIONS(12209), + [anon_sym_BSLASHfvolcite] = ACTIONS(12209), + [anon_sym_BSLASHftvolcite] = ACTIONS(12209), + [anon_sym_BSLASHsvolcite] = ACTIONS(12209), + [anon_sym_BSLASHSvolcite] = ACTIONS(12209), + [anon_sym_BSLASHtvolcite] = ACTIONS(12209), + [anon_sym_BSLASHTvolcite] = ACTIONS(12209), + [anon_sym_BSLASHavolcite] = ACTIONS(12209), + [anon_sym_BSLASHAvolcite] = ACTIONS(12209), + [anon_sym_BSLASHnotecite] = ACTIONS(12209), + [anon_sym_BSLASHpnotecite] = ACTIONS(12209), + [anon_sym_BSLASHPnotecite] = ACTIONS(12209), + [anon_sym_BSLASHfnotecite] = ACTIONS(12209), + [anon_sym_BSLASHusepackage] = ACTIONS(12209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12209), + [anon_sym_BSLASHinclude] = ACTIONS(12209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12209), + [anon_sym_BSLASHinput] = ACTIONS(12209), + [anon_sym_BSLASHsubfile] = ACTIONS(12209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12209), + [anon_sym_BSLASHbibliography] = ACTIONS(12209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12209), + [anon_sym_BSLASHincludesvg] = ACTIONS(12209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12209), + [anon_sym_BSLASHimport] = ACTIONS(12209), + [anon_sym_BSLASHsubimport] = ACTIONS(12209), + [anon_sym_BSLASHinputfrom] = ACTIONS(12209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12209), + [anon_sym_BSLASHincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHlabel] = ACTIONS(12209), + [anon_sym_BSLASHref] = ACTIONS(12209), + [anon_sym_BSLASHvref] = ACTIONS(12209), + [anon_sym_BSLASHVref] = ACTIONS(12209), + [anon_sym_BSLASHautoref] = ACTIONS(12209), + [anon_sym_BSLASHpageref] = ACTIONS(12209), + [anon_sym_BSLASHcref] = ACTIONS(12209), + [anon_sym_BSLASHCref] = ACTIONS(12209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnameCref] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHlabelcref] = ACTIONS(12209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12209), + [anon_sym_BSLASHeqref] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange] = ACTIONS(12209), + [anon_sym_BSLASHCrefrange] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewlabel] = ACTIONS(12209), + [anon_sym_BSLASHnewcommand] = ACTIONS(12209), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12209), + [anon_sym_BSLASHgls] = ACTIONS(12209), + [anon_sym_BSLASHGls] = ACTIONS(12209), + [anon_sym_BSLASHGLS] = ACTIONS(12209), + [anon_sym_BSLASHglspl] = ACTIONS(12209), + [anon_sym_BSLASHGlspl] = ACTIONS(12209), + [anon_sym_BSLASHGLSpl] = ACTIONS(12209), + [anon_sym_BSLASHglsdisp] = ACTIONS(12209), + [anon_sym_BSLASHglslink] = ACTIONS(12209), + [anon_sym_BSLASHglstext] = ACTIONS(12209), + [anon_sym_BSLASHGlstext] = ACTIONS(12209), + [anon_sym_BSLASHGLStext] = ACTIONS(12209), + [anon_sym_BSLASHglsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12209), + [anon_sym_BSLASHglsplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSplural] = ACTIONS(12209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHglsname] = ACTIONS(12209), + [anon_sym_BSLASHGlsname] = ACTIONS(12209), + [anon_sym_BSLASHGLSname] = ACTIONS(12209), + [anon_sym_BSLASHglssymbol] = ACTIONS(12209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12209), + [anon_sym_BSLASHglsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12209), + [anon_sym_BSLASHglsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12209), + [anon_sym_BSLASHglsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12209), + [anon_sym_BSLASHglsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12209), + [anon_sym_BSLASHglsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12209), + [anon_sym_BSLASHnewacronym] = ACTIONS(12209), + [anon_sym_BSLASHacrshort] = ACTIONS(12209), + [anon_sym_BSLASHAcrshort] = ACTIONS(12209), + [anon_sym_BSLASHACRshort] = ACTIONS(12209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12209), + [anon_sym_BSLASHacrlong] = ACTIONS(12209), + [anon_sym_BSLASHAcrlong] = ACTIONS(12209), + [anon_sym_BSLASHACRlong] = ACTIONS(12209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12209), + [anon_sym_BSLASHacrfull] = ACTIONS(12209), + [anon_sym_BSLASHAcrfull] = ACTIONS(12209), + [anon_sym_BSLASHACRfull] = ACTIONS(12209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12209), + [anon_sym_BSLASHacs] = ACTIONS(12209), + [anon_sym_BSLASHAcs] = ACTIONS(12209), + [anon_sym_BSLASHacsp] = ACTIONS(12209), + [anon_sym_BSLASHAcsp] = ACTIONS(12209), + [anon_sym_BSLASHacl] = ACTIONS(12209), + [anon_sym_BSLASHAcl] = ACTIONS(12209), + [anon_sym_BSLASHaclp] = ACTIONS(12209), + [anon_sym_BSLASHAclp] = ACTIONS(12209), + [anon_sym_BSLASHacf] = ACTIONS(12209), + [anon_sym_BSLASHAcf] = ACTIONS(12209), + [anon_sym_BSLASHacfp] = ACTIONS(12209), + [anon_sym_BSLASHAcfp] = ACTIONS(12209), + [anon_sym_BSLASHac] = ACTIONS(12209), + [anon_sym_BSLASHAc] = ACTIONS(12209), + [anon_sym_BSLASHacp] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12209), + [anon_sym_BSLASHcolor] = ACTIONS(12209), + [anon_sym_BSLASHcolorbox] = ACTIONS(12209), + [anon_sym_BSLASHtextcolor] = ACTIONS(12209), + [anon_sym_BSLASHpagecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12209), + }, + [1234] = { + [sym_generic_command_name] = ACTIONS(12275), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12275), + [aux_sym_subsection_token1] = ACTIONS(12275), + [aux_sym_subsubsection_token1] = ACTIONS(12275), + [aux_sym_paragraph_token1] = ACTIONS(12275), + [aux_sym_subparagraph_token1] = ACTIONS(12275), + [anon_sym_BSLASHitem] = ACTIONS(12275), + [anon_sym_LBRACK] = ACTIONS(12273), + [anon_sym_RBRACK] = ACTIONS(12273), + [anon_sym_LBRACE] = ACTIONS(12273), + [anon_sym_RBRACE] = ACTIONS(12273), + [anon_sym_LPAREN] = ACTIONS(12273), + [anon_sym_COMMA] = ACTIONS(12273), + [anon_sym_EQ] = ACTIONS(12273), + [sym_word] = ACTIONS(12273), + [sym_param] = ACTIONS(12273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12273), + [anon_sym_DOLLAR] = ACTIONS(12275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12273), + [anon_sym_BSLASHbegin] = ACTIONS(12275), + [anon_sym_BSLASHcaption] = ACTIONS(12275), + [anon_sym_BSLASHcite] = ACTIONS(12275), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCite] = ACTIONS(12275), + [anon_sym_BSLASHnocite] = ACTIONS(12275), + [anon_sym_BSLASHcitet] = ACTIONS(12275), + [anon_sym_BSLASHcitep] = ACTIONS(12275), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteauthor] = ACTIONS(12275), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12275), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitetitle] = ACTIONS(12275), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteyear] = ACTIONS(12275), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitedate] = ACTIONS(12275), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteurl] = ACTIONS(12275), + [anon_sym_BSLASHfullcite] = ACTIONS(12275), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12275), + [anon_sym_BSLASHcitealt] = ACTIONS(12275), + [anon_sym_BSLASHcitealp] = ACTIONS(12275), + [anon_sym_BSLASHcitetext] = ACTIONS(12275), + [anon_sym_BSLASHparencite] = ACTIONS(12275), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHParencite] = ACTIONS(12275), + [anon_sym_BSLASHfootcite] = ACTIONS(12275), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12275), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12275), + [anon_sym_BSLASHtextcite] = ACTIONS(12275), + [anon_sym_BSLASHTextcite] = ACTIONS(12275), + [anon_sym_BSLASHsmartcite] = ACTIONS(12275), + [anon_sym_BSLASHSmartcite] = ACTIONS(12275), + [anon_sym_BSLASHsupercite] = ACTIONS(12275), + [anon_sym_BSLASHautocite] = ACTIONS(12275), + [anon_sym_BSLASHAutocite] = ACTIONS(12275), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHvolcite] = ACTIONS(12275), + [anon_sym_BSLASHVolcite] = ACTIONS(12275), + [anon_sym_BSLASHpvolcite] = ACTIONS(12275), + [anon_sym_BSLASHPvolcite] = ACTIONS(12275), + [anon_sym_BSLASHfvolcite] = ACTIONS(12275), + [anon_sym_BSLASHftvolcite] = ACTIONS(12275), + [anon_sym_BSLASHsvolcite] = ACTIONS(12275), + [anon_sym_BSLASHSvolcite] = ACTIONS(12275), + [anon_sym_BSLASHtvolcite] = ACTIONS(12275), + [anon_sym_BSLASHTvolcite] = ACTIONS(12275), + [anon_sym_BSLASHavolcite] = ACTIONS(12275), + [anon_sym_BSLASHAvolcite] = ACTIONS(12275), + [anon_sym_BSLASHnotecite] = ACTIONS(12275), + [anon_sym_BSLASHpnotecite] = ACTIONS(12275), + [anon_sym_BSLASHPnotecite] = ACTIONS(12275), + [anon_sym_BSLASHfnotecite] = ACTIONS(12275), + [anon_sym_BSLASHusepackage] = ACTIONS(12275), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12275), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12275), + [anon_sym_BSLASHinclude] = ACTIONS(12275), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12275), + [anon_sym_BSLASHinput] = ACTIONS(12275), + [anon_sym_BSLASHsubfile] = ACTIONS(12275), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12275), + [anon_sym_BSLASHbibliography] = ACTIONS(12275), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12275), + [anon_sym_BSLASHincludesvg] = ACTIONS(12275), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12275), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12275), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12275), + [anon_sym_BSLASHimport] = ACTIONS(12275), + [anon_sym_BSLASHsubimport] = ACTIONS(12275), + [anon_sym_BSLASHinputfrom] = ACTIONS(12275), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12275), + [anon_sym_BSLASHincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHlabel] = ACTIONS(12275), + [anon_sym_BSLASHref] = ACTIONS(12275), + [anon_sym_BSLASHvref] = ACTIONS(12275), + [anon_sym_BSLASHVref] = ACTIONS(12275), + [anon_sym_BSLASHautoref] = ACTIONS(12275), + [anon_sym_BSLASHpageref] = ACTIONS(12275), + [anon_sym_BSLASHcref] = ACTIONS(12275), + [anon_sym_BSLASHCref] = ACTIONS(12275), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnameCref] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHlabelcref] = ACTIONS(12275), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12275), + [anon_sym_BSLASHeqref] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange] = ACTIONS(12275), + [anon_sym_BSLASHCrefrange] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewlabel] = ACTIONS(12275), + [anon_sym_BSLASHnewcommand] = ACTIONS(12275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12275), + [anon_sym_BSLASHgls] = ACTIONS(12275), + [anon_sym_BSLASHGls] = ACTIONS(12275), + [anon_sym_BSLASHGLS] = ACTIONS(12275), + [anon_sym_BSLASHglspl] = ACTIONS(12275), + [anon_sym_BSLASHGlspl] = ACTIONS(12275), + [anon_sym_BSLASHGLSpl] = ACTIONS(12275), + [anon_sym_BSLASHglsdisp] = ACTIONS(12275), + [anon_sym_BSLASHglslink] = ACTIONS(12275), + [anon_sym_BSLASHglstext] = ACTIONS(12275), + [anon_sym_BSLASHGlstext] = ACTIONS(12275), + [anon_sym_BSLASHGLStext] = ACTIONS(12275), + [anon_sym_BSLASHglsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12275), + [anon_sym_BSLASHglsplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSplural] = ACTIONS(12275), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHglsname] = ACTIONS(12275), + [anon_sym_BSLASHGlsname] = ACTIONS(12275), + [anon_sym_BSLASHGLSname] = ACTIONS(12275), + [anon_sym_BSLASHglssymbol] = ACTIONS(12275), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12275), + [anon_sym_BSLASHglsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12275), + [anon_sym_BSLASHglsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12275), + [anon_sym_BSLASHglsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12275), + [anon_sym_BSLASHglsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12275), + [anon_sym_BSLASHglsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12275), + [anon_sym_BSLASHnewacronym] = ACTIONS(12275), + [anon_sym_BSLASHacrshort] = ACTIONS(12275), + [anon_sym_BSLASHAcrshort] = ACTIONS(12275), + [anon_sym_BSLASHACRshort] = ACTIONS(12275), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12275), + [anon_sym_BSLASHacrlong] = ACTIONS(12275), + [anon_sym_BSLASHAcrlong] = ACTIONS(12275), + [anon_sym_BSLASHACRlong] = ACTIONS(12275), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12275), + [anon_sym_BSLASHacrfull] = ACTIONS(12275), + [anon_sym_BSLASHAcrfull] = ACTIONS(12275), + [anon_sym_BSLASHACRfull] = ACTIONS(12275), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12275), + [anon_sym_BSLASHacs] = ACTIONS(12275), + [anon_sym_BSLASHAcs] = ACTIONS(12275), + [anon_sym_BSLASHacsp] = ACTIONS(12275), + [anon_sym_BSLASHAcsp] = ACTIONS(12275), + [anon_sym_BSLASHacl] = ACTIONS(12275), + [anon_sym_BSLASHAcl] = ACTIONS(12275), + [anon_sym_BSLASHaclp] = ACTIONS(12275), + [anon_sym_BSLASHAclp] = ACTIONS(12275), + [anon_sym_BSLASHacf] = ACTIONS(12275), + [anon_sym_BSLASHAcf] = ACTIONS(12275), + [anon_sym_BSLASHacfp] = ACTIONS(12275), + [anon_sym_BSLASHAcfp] = ACTIONS(12275), + [anon_sym_BSLASHac] = ACTIONS(12275), + [anon_sym_BSLASHAc] = ACTIONS(12275), + [anon_sym_BSLASHacp] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12275), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12275), + [anon_sym_BSLASHcolor] = ACTIONS(12275), + [anon_sym_BSLASHcolorbox] = ACTIONS(12275), + [anon_sym_BSLASHtextcolor] = ACTIONS(12275), + [anon_sym_BSLASHpagecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12275), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12275), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12275), + }, + [1235] = { + [sym_generic_command_name] = ACTIONS(12283), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12283), + [aux_sym_subsection_token1] = ACTIONS(12283), + [aux_sym_subsubsection_token1] = ACTIONS(12283), + [aux_sym_paragraph_token1] = ACTIONS(12283), + [aux_sym_subparagraph_token1] = ACTIONS(12283), + [anon_sym_BSLASHitem] = ACTIONS(12283), + [anon_sym_LBRACK] = ACTIONS(12281), + [anon_sym_RBRACK] = ACTIONS(12281), + [anon_sym_LBRACE] = ACTIONS(12281), + [anon_sym_RBRACE] = ACTIONS(12281), + [anon_sym_LPAREN] = ACTIONS(12281), + [anon_sym_COMMA] = ACTIONS(12281), + [anon_sym_EQ] = ACTIONS(12281), + [sym_word] = ACTIONS(12281), + [sym_param] = ACTIONS(12281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12281), + [anon_sym_DOLLAR] = ACTIONS(12283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12281), + [anon_sym_BSLASHbegin] = ACTIONS(12283), + [anon_sym_BSLASHcaption] = ACTIONS(12283), + [anon_sym_BSLASHcite] = ACTIONS(12283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCite] = ACTIONS(12283), + [anon_sym_BSLASHnocite] = ACTIONS(12283), + [anon_sym_BSLASHcitet] = ACTIONS(12283), + [anon_sym_BSLASHcitep] = ACTIONS(12283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteauthor] = ACTIONS(12283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitetitle] = ACTIONS(12283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteyear] = ACTIONS(12283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitedate] = ACTIONS(12283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteurl] = ACTIONS(12283), + [anon_sym_BSLASHfullcite] = ACTIONS(12283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12283), + [anon_sym_BSLASHcitealt] = ACTIONS(12283), + [anon_sym_BSLASHcitealp] = ACTIONS(12283), + [anon_sym_BSLASHcitetext] = ACTIONS(12283), + [anon_sym_BSLASHparencite] = ACTIONS(12283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHParencite] = ACTIONS(12283), + [anon_sym_BSLASHfootcite] = ACTIONS(12283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12283), + [anon_sym_BSLASHtextcite] = ACTIONS(12283), + [anon_sym_BSLASHTextcite] = ACTIONS(12283), + [anon_sym_BSLASHsmartcite] = ACTIONS(12283), + [anon_sym_BSLASHSmartcite] = ACTIONS(12283), + [anon_sym_BSLASHsupercite] = ACTIONS(12283), + [anon_sym_BSLASHautocite] = ACTIONS(12283), + [anon_sym_BSLASHAutocite] = ACTIONS(12283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHvolcite] = ACTIONS(12283), + [anon_sym_BSLASHVolcite] = ACTIONS(12283), + [anon_sym_BSLASHpvolcite] = ACTIONS(12283), + [anon_sym_BSLASHPvolcite] = ACTIONS(12283), + [anon_sym_BSLASHfvolcite] = ACTIONS(12283), + [anon_sym_BSLASHftvolcite] = ACTIONS(12283), + [anon_sym_BSLASHsvolcite] = ACTIONS(12283), + [anon_sym_BSLASHSvolcite] = ACTIONS(12283), + [anon_sym_BSLASHtvolcite] = ACTIONS(12283), + [anon_sym_BSLASHTvolcite] = ACTIONS(12283), + [anon_sym_BSLASHavolcite] = ACTIONS(12283), + [anon_sym_BSLASHAvolcite] = ACTIONS(12283), + [anon_sym_BSLASHnotecite] = ACTIONS(12283), + [anon_sym_BSLASHpnotecite] = ACTIONS(12283), + [anon_sym_BSLASHPnotecite] = ACTIONS(12283), + [anon_sym_BSLASHfnotecite] = ACTIONS(12283), + [anon_sym_BSLASHusepackage] = ACTIONS(12283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12283), + [anon_sym_BSLASHinclude] = ACTIONS(12283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12283), + [anon_sym_BSLASHinput] = ACTIONS(12283), + [anon_sym_BSLASHsubfile] = ACTIONS(12283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12283), + [anon_sym_BSLASHbibliography] = ACTIONS(12283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12283), + [anon_sym_BSLASHincludesvg] = ACTIONS(12283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12283), + [anon_sym_BSLASHimport] = ACTIONS(12283), + [anon_sym_BSLASHsubimport] = ACTIONS(12283), + [anon_sym_BSLASHinputfrom] = ACTIONS(12283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12283), + [anon_sym_BSLASHincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHlabel] = ACTIONS(12283), + [anon_sym_BSLASHref] = ACTIONS(12283), + [anon_sym_BSLASHvref] = ACTIONS(12283), + [anon_sym_BSLASHVref] = ACTIONS(12283), + [anon_sym_BSLASHautoref] = ACTIONS(12283), + [anon_sym_BSLASHpageref] = ACTIONS(12283), + [anon_sym_BSLASHcref] = ACTIONS(12283), + [anon_sym_BSLASHCref] = ACTIONS(12283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnameCref] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHlabelcref] = ACTIONS(12283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12283), + [anon_sym_BSLASHeqref] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange] = ACTIONS(12283), + [anon_sym_BSLASHCrefrange] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewlabel] = ACTIONS(12283), + [anon_sym_BSLASHnewcommand] = ACTIONS(12283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12283), + [anon_sym_BSLASHgls] = ACTIONS(12283), + [anon_sym_BSLASHGls] = ACTIONS(12283), + [anon_sym_BSLASHGLS] = ACTIONS(12283), + [anon_sym_BSLASHglspl] = ACTIONS(12283), + [anon_sym_BSLASHGlspl] = ACTIONS(12283), + [anon_sym_BSLASHGLSpl] = ACTIONS(12283), + [anon_sym_BSLASHglsdisp] = ACTIONS(12283), + [anon_sym_BSLASHglslink] = ACTIONS(12283), + [anon_sym_BSLASHglstext] = ACTIONS(12283), + [anon_sym_BSLASHGlstext] = ACTIONS(12283), + [anon_sym_BSLASHGLStext] = ACTIONS(12283), + [anon_sym_BSLASHglsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12283), + [anon_sym_BSLASHglsplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSplural] = ACTIONS(12283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHglsname] = ACTIONS(12283), + [anon_sym_BSLASHGlsname] = ACTIONS(12283), + [anon_sym_BSLASHGLSname] = ACTIONS(12283), + [anon_sym_BSLASHglssymbol] = ACTIONS(12283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12283), + [anon_sym_BSLASHglsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12283), + [anon_sym_BSLASHglsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12283), + [anon_sym_BSLASHglsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12283), + [anon_sym_BSLASHglsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12283), + [anon_sym_BSLASHglsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12283), + [anon_sym_BSLASHnewacronym] = ACTIONS(12283), + [anon_sym_BSLASHacrshort] = ACTIONS(12283), + [anon_sym_BSLASHAcrshort] = ACTIONS(12283), + [anon_sym_BSLASHACRshort] = ACTIONS(12283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12283), + [anon_sym_BSLASHacrlong] = ACTIONS(12283), + [anon_sym_BSLASHAcrlong] = ACTIONS(12283), + [anon_sym_BSLASHACRlong] = ACTIONS(12283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12283), + [anon_sym_BSLASHacrfull] = ACTIONS(12283), + [anon_sym_BSLASHAcrfull] = ACTIONS(12283), + [anon_sym_BSLASHACRfull] = ACTIONS(12283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12283), + [anon_sym_BSLASHacs] = ACTIONS(12283), + [anon_sym_BSLASHAcs] = ACTIONS(12283), + [anon_sym_BSLASHacsp] = ACTIONS(12283), + [anon_sym_BSLASHAcsp] = ACTIONS(12283), + [anon_sym_BSLASHacl] = ACTIONS(12283), + [anon_sym_BSLASHAcl] = ACTIONS(12283), + [anon_sym_BSLASHaclp] = ACTIONS(12283), + [anon_sym_BSLASHAclp] = ACTIONS(12283), + [anon_sym_BSLASHacf] = ACTIONS(12283), + [anon_sym_BSLASHAcf] = ACTIONS(12283), + [anon_sym_BSLASHacfp] = ACTIONS(12283), + [anon_sym_BSLASHAcfp] = ACTIONS(12283), + [anon_sym_BSLASHac] = ACTIONS(12283), + [anon_sym_BSLASHAc] = ACTIONS(12283), + [anon_sym_BSLASHacp] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12283), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12283), + [anon_sym_BSLASHcolor] = ACTIONS(12283), + [anon_sym_BSLASHcolorbox] = ACTIONS(12283), + [anon_sym_BSLASHtextcolor] = ACTIONS(12283), + [anon_sym_BSLASHpagecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12283), + }, + [1236] = { + [sym_generic_command_name] = ACTIONS(12299), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12299), + [aux_sym_subsection_token1] = ACTIONS(12299), + [aux_sym_subsubsection_token1] = ACTIONS(12299), + [aux_sym_paragraph_token1] = ACTIONS(12299), + [aux_sym_subparagraph_token1] = ACTIONS(12299), + [anon_sym_BSLASHitem] = ACTIONS(12299), + [anon_sym_LBRACK] = ACTIONS(12297), + [anon_sym_RBRACK] = ACTIONS(12297), + [anon_sym_LBRACE] = ACTIONS(12297), + [anon_sym_RBRACE] = ACTIONS(12297), + [anon_sym_LPAREN] = ACTIONS(12297), + [anon_sym_COMMA] = ACTIONS(12297), + [anon_sym_EQ] = ACTIONS(12297), + [sym_word] = ACTIONS(12297), + [sym_param] = ACTIONS(12297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12297), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12297), + [anon_sym_DOLLAR] = ACTIONS(12299), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12297), + [anon_sym_BSLASHbegin] = ACTIONS(12299), + [anon_sym_BSLASHcaption] = ACTIONS(12299), + [anon_sym_BSLASHcite] = ACTIONS(12299), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCite] = ACTIONS(12299), + [anon_sym_BSLASHnocite] = ACTIONS(12299), + [anon_sym_BSLASHcitet] = ACTIONS(12299), + [anon_sym_BSLASHcitep] = ACTIONS(12299), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteauthor] = ACTIONS(12299), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12299), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitetitle] = ACTIONS(12299), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteyear] = ACTIONS(12299), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitedate] = ACTIONS(12299), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteurl] = ACTIONS(12299), + [anon_sym_BSLASHfullcite] = ACTIONS(12299), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12299), + [anon_sym_BSLASHcitealt] = ACTIONS(12299), + [anon_sym_BSLASHcitealp] = ACTIONS(12299), + [anon_sym_BSLASHcitetext] = ACTIONS(12299), + [anon_sym_BSLASHparencite] = ACTIONS(12299), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHParencite] = ACTIONS(12299), + [anon_sym_BSLASHfootcite] = ACTIONS(12299), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12299), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12299), + [anon_sym_BSLASHtextcite] = ACTIONS(12299), + [anon_sym_BSLASHTextcite] = ACTIONS(12299), + [anon_sym_BSLASHsmartcite] = ACTIONS(12299), + [anon_sym_BSLASHSmartcite] = ACTIONS(12299), + [anon_sym_BSLASHsupercite] = ACTIONS(12299), + [anon_sym_BSLASHautocite] = ACTIONS(12299), + [anon_sym_BSLASHAutocite] = ACTIONS(12299), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHvolcite] = ACTIONS(12299), + [anon_sym_BSLASHVolcite] = ACTIONS(12299), + [anon_sym_BSLASHpvolcite] = ACTIONS(12299), + [anon_sym_BSLASHPvolcite] = ACTIONS(12299), + [anon_sym_BSLASHfvolcite] = ACTIONS(12299), + [anon_sym_BSLASHftvolcite] = ACTIONS(12299), + [anon_sym_BSLASHsvolcite] = ACTIONS(12299), + [anon_sym_BSLASHSvolcite] = ACTIONS(12299), + [anon_sym_BSLASHtvolcite] = ACTIONS(12299), + [anon_sym_BSLASHTvolcite] = ACTIONS(12299), + [anon_sym_BSLASHavolcite] = ACTIONS(12299), + [anon_sym_BSLASHAvolcite] = ACTIONS(12299), + [anon_sym_BSLASHnotecite] = ACTIONS(12299), + [anon_sym_BSLASHpnotecite] = ACTIONS(12299), + [anon_sym_BSLASHPnotecite] = ACTIONS(12299), + [anon_sym_BSLASHfnotecite] = ACTIONS(12299), + [anon_sym_BSLASHusepackage] = ACTIONS(12299), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12299), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12299), + [anon_sym_BSLASHinclude] = ACTIONS(12299), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12299), + [anon_sym_BSLASHinput] = ACTIONS(12299), + [anon_sym_BSLASHsubfile] = ACTIONS(12299), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12299), + [anon_sym_BSLASHbibliography] = ACTIONS(12299), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12299), + [anon_sym_BSLASHincludesvg] = ACTIONS(12299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12299), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12299), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12299), + [anon_sym_BSLASHimport] = ACTIONS(12299), + [anon_sym_BSLASHsubimport] = ACTIONS(12299), + [anon_sym_BSLASHinputfrom] = ACTIONS(12299), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12299), + [anon_sym_BSLASHincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHlabel] = ACTIONS(12299), + [anon_sym_BSLASHref] = ACTIONS(12299), + [anon_sym_BSLASHvref] = ACTIONS(12299), + [anon_sym_BSLASHVref] = ACTIONS(12299), + [anon_sym_BSLASHautoref] = ACTIONS(12299), + [anon_sym_BSLASHpageref] = ACTIONS(12299), + [anon_sym_BSLASHcref] = ACTIONS(12299), + [anon_sym_BSLASHCref] = ACTIONS(12299), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnameCref] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHlabelcref] = ACTIONS(12299), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12299), + [anon_sym_BSLASHeqref] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange] = ACTIONS(12299), + [anon_sym_BSLASHCrefrange] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewlabel] = ACTIONS(12299), + [anon_sym_BSLASHnewcommand] = ACTIONS(12299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12299), + [anon_sym_BSLASHgls] = ACTIONS(12299), + [anon_sym_BSLASHGls] = ACTIONS(12299), + [anon_sym_BSLASHGLS] = ACTIONS(12299), + [anon_sym_BSLASHglspl] = ACTIONS(12299), + [anon_sym_BSLASHGlspl] = ACTIONS(12299), + [anon_sym_BSLASHGLSpl] = ACTIONS(12299), + [anon_sym_BSLASHglsdisp] = ACTIONS(12299), + [anon_sym_BSLASHglslink] = ACTIONS(12299), + [anon_sym_BSLASHglstext] = ACTIONS(12299), + [anon_sym_BSLASHGlstext] = ACTIONS(12299), + [anon_sym_BSLASHGLStext] = ACTIONS(12299), + [anon_sym_BSLASHglsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12299), + [anon_sym_BSLASHglsplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSplural] = ACTIONS(12299), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHglsname] = ACTIONS(12299), + [anon_sym_BSLASHGlsname] = ACTIONS(12299), + [anon_sym_BSLASHGLSname] = ACTIONS(12299), + [anon_sym_BSLASHglssymbol] = ACTIONS(12299), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12299), + [anon_sym_BSLASHglsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12299), + [anon_sym_BSLASHglsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12299), + [anon_sym_BSLASHglsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12299), + [anon_sym_BSLASHglsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12299), + [anon_sym_BSLASHglsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12299), + [anon_sym_BSLASHnewacronym] = ACTIONS(12299), + [anon_sym_BSLASHacrshort] = ACTIONS(12299), + [anon_sym_BSLASHAcrshort] = ACTIONS(12299), + [anon_sym_BSLASHACRshort] = ACTIONS(12299), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12299), + [anon_sym_BSLASHacrlong] = ACTIONS(12299), + [anon_sym_BSLASHAcrlong] = ACTIONS(12299), + [anon_sym_BSLASHACRlong] = ACTIONS(12299), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12299), + [anon_sym_BSLASHacrfull] = ACTIONS(12299), + [anon_sym_BSLASHAcrfull] = ACTIONS(12299), + [anon_sym_BSLASHACRfull] = ACTIONS(12299), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12299), + [anon_sym_BSLASHacs] = ACTIONS(12299), + [anon_sym_BSLASHAcs] = ACTIONS(12299), + [anon_sym_BSLASHacsp] = ACTIONS(12299), + [anon_sym_BSLASHAcsp] = ACTIONS(12299), + [anon_sym_BSLASHacl] = ACTIONS(12299), + [anon_sym_BSLASHAcl] = ACTIONS(12299), + [anon_sym_BSLASHaclp] = ACTIONS(12299), + [anon_sym_BSLASHAclp] = ACTIONS(12299), + [anon_sym_BSLASHacf] = ACTIONS(12299), + [anon_sym_BSLASHAcf] = ACTIONS(12299), + [anon_sym_BSLASHacfp] = ACTIONS(12299), + [anon_sym_BSLASHAcfp] = ACTIONS(12299), + [anon_sym_BSLASHac] = ACTIONS(12299), + [anon_sym_BSLASHAc] = ACTIONS(12299), + [anon_sym_BSLASHacp] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12299), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12299), + [anon_sym_BSLASHcolor] = ACTIONS(12299), + [anon_sym_BSLASHcolorbox] = ACTIONS(12299), + [anon_sym_BSLASHtextcolor] = ACTIONS(12299), + [anon_sym_BSLASHpagecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12299), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12299), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12299), + }, + [1237] = { + [sym_generic_command_name] = ACTIONS(12543), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12543), + [aux_sym_subsection_token1] = ACTIONS(12543), + [aux_sym_subsubsection_token1] = ACTIONS(12543), + [aux_sym_paragraph_token1] = ACTIONS(12543), + [aux_sym_subparagraph_token1] = ACTIONS(12543), + [anon_sym_BSLASHitem] = ACTIONS(12543), + [anon_sym_LBRACK] = ACTIONS(12541), + [anon_sym_RBRACK] = ACTIONS(12541), + [anon_sym_LBRACE] = ACTIONS(12541), + [anon_sym_RBRACE] = ACTIONS(12541), + [anon_sym_LPAREN] = ACTIONS(12541), + [anon_sym_COMMA] = ACTIONS(12541), + [anon_sym_EQ] = ACTIONS(12541), + [sym_word] = ACTIONS(12541), + [sym_param] = ACTIONS(12541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12541), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12541), + [anon_sym_DOLLAR] = ACTIONS(12543), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12541), + [anon_sym_BSLASHbegin] = ACTIONS(12543), + [anon_sym_BSLASHcaption] = ACTIONS(12543), + [anon_sym_BSLASHcite] = ACTIONS(12543), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCite] = ACTIONS(12543), + [anon_sym_BSLASHnocite] = ACTIONS(12543), + [anon_sym_BSLASHcitet] = ACTIONS(12543), + [anon_sym_BSLASHcitep] = ACTIONS(12543), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteauthor] = ACTIONS(12543), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12543), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitetitle] = ACTIONS(12543), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteyear] = ACTIONS(12543), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitedate] = ACTIONS(12543), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteurl] = ACTIONS(12543), + [anon_sym_BSLASHfullcite] = ACTIONS(12543), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12543), + [anon_sym_BSLASHcitealt] = ACTIONS(12543), + [anon_sym_BSLASHcitealp] = ACTIONS(12543), + [anon_sym_BSLASHcitetext] = ACTIONS(12543), + [anon_sym_BSLASHparencite] = ACTIONS(12543), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHParencite] = ACTIONS(12543), + [anon_sym_BSLASHfootcite] = ACTIONS(12543), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12543), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12543), + [anon_sym_BSLASHtextcite] = ACTIONS(12543), + [anon_sym_BSLASHTextcite] = ACTIONS(12543), + [anon_sym_BSLASHsmartcite] = ACTIONS(12543), + [anon_sym_BSLASHSmartcite] = ACTIONS(12543), + [anon_sym_BSLASHsupercite] = ACTIONS(12543), + [anon_sym_BSLASHautocite] = ACTIONS(12543), + [anon_sym_BSLASHAutocite] = ACTIONS(12543), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHvolcite] = ACTIONS(12543), + [anon_sym_BSLASHVolcite] = ACTIONS(12543), + [anon_sym_BSLASHpvolcite] = ACTIONS(12543), + [anon_sym_BSLASHPvolcite] = ACTIONS(12543), + [anon_sym_BSLASHfvolcite] = ACTIONS(12543), + [anon_sym_BSLASHftvolcite] = ACTIONS(12543), + [anon_sym_BSLASHsvolcite] = ACTIONS(12543), + [anon_sym_BSLASHSvolcite] = ACTIONS(12543), + [anon_sym_BSLASHtvolcite] = ACTIONS(12543), + [anon_sym_BSLASHTvolcite] = ACTIONS(12543), + [anon_sym_BSLASHavolcite] = ACTIONS(12543), + [anon_sym_BSLASHAvolcite] = ACTIONS(12543), + [anon_sym_BSLASHnotecite] = ACTIONS(12543), + [anon_sym_BSLASHpnotecite] = ACTIONS(12543), + [anon_sym_BSLASHPnotecite] = ACTIONS(12543), + [anon_sym_BSLASHfnotecite] = ACTIONS(12543), + [anon_sym_BSLASHusepackage] = ACTIONS(12543), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12543), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12543), + [anon_sym_BSLASHinclude] = ACTIONS(12543), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12543), + [anon_sym_BSLASHinput] = ACTIONS(12543), + [anon_sym_BSLASHsubfile] = ACTIONS(12543), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12543), + [anon_sym_BSLASHbibliography] = ACTIONS(12543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12543), + [anon_sym_BSLASHincludesvg] = ACTIONS(12543), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12543), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12543), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12543), + [anon_sym_BSLASHimport] = ACTIONS(12543), + [anon_sym_BSLASHsubimport] = ACTIONS(12543), + [anon_sym_BSLASHinputfrom] = ACTIONS(12543), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12543), + [anon_sym_BSLASHincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHlabel] = ACTIONS(12543), + [anon_sym_BSLASHref] = ACTIONS(12543), + [anon_sym_BSLASHvref] = ACTIONS(12543), + [anon_sym_BSLASHVref] = ACTIONS(12543), + [anon_sym_BSLASHautoref] = ACTIONS(12543), + [anon_sym_BSLASHpageref] = ACTIONS(12543), + [anon_sym_BSLASHcref] = ACTIONS(12543), + [anon_sym_BSLASHCref] = ACTIONS(12543), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnameCref] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHlabelcref] = ACTIONS(12543), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12543), + [anon_sym_BSLASHeqref] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange] = ACTIONS(12543), + [anon_sym_BSLASHCrefrange] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewlabel] = ACTIONS(12543), + [anon_sym_BSLASHnewcommand] = ACTIONS(12543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12543), + [anon_sym_BSLASHgls] = ACTIONS(12543), + [anon_sym_BSLASHGls] = ACTIONS(12543), + [anon_sym_BSLASHGLS] = ACTIONS(12543), + [anon_sym_BSLASHglspl] = ACTIONS(12543), + [anon_sym_BSLASHGlspl] = ACTIONS(12543), + [anon_sym_BSLASHGLSpl] = ACTIONS(12543), + [anon_sym_BSLASHglsdisp] = ACTIONS(12543), + [anon_sym_BSLASHglslink] = ACTIONS(12543), + [anon_sym_BSLASHglstext] = ACTIONS(12543), + [anon_sym_BSLASHGlstext] = ACTIONS(12543), + [anon_sym_BSLASHGLStext] = ACTIONS(12543), + [anon_sym_BSLASHglsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12543), + [anon_sym_BSLASHglsplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSplural] = ACTIONS(12543), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHglsname] = ACTIONS(12543), + [anon_sym_BSLASHGlsname] = ACTIONS(12543), + [anon_sym_BSLASHGLSname] = ACTIONS(12543), + [anon_sym_BSLASHglssymbol] = ACTIONS(12543), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12543), + [anon_sym_BSLASHglsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12543), + [anon_sym_BSLASHglsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12543), + [anon_sym_BSLASHglsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12543), + [anon_sym_BSLASHglsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12543), + [anon_sym_BSLASHglsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12543), + [anon_sym_BSLASHnewacronym] = ACTIONS(12543), + [anon_sym_BSLASHacrshort] = ACTIONS(12543), + [anon_sym_BSLASHAcrshort] = ACTIONS(12543), + [anon_sym_BSLASHACRshort] = ACTIONS(12543), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12543), + [anon_sym_BSLASHacrlong] = ACTIONS(12543), + [anon_sym_BSLASHAcrlong] = ACTIONS(12543), + [anon_sym_BSLASHACRlong] = ACTIONS(12543), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12543), + [anon_sym_BSLASHacrfull] = ACTIONS(12543), + [anon_sym_BSLASHAcrfull] = ACTIONS(12543), + [anon_sym_BSLASHACRfull] = ACTIONS(12543), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12543), + [anon_sym_BSLASHacs] = ACTIONS(12543), + [anon_sym_BSLASHAcs] = ACTIONS(12543), + [anon_sym_BSLASHacsp] = ACTIONS(12543), + [anon_sym_BSLASHAcsp] = ACTIONS(12543), + [anon_sym_BSLASHacl] = ACTIONS(12543), + [anon_sym_BSLASHAcl] = ACTIONS(12543), + [anon_sym_BSLASHaclp] = ACTIONS(12543), + [anon_sym_BSLASHAclp] = ACTIONS(12543), + [anon_sym_BSLASHacf] = ACTIONS(12543), + [anon_sym_BSLASHAcf] = ACTIONS(12543), + [anon_sym_BSLASHacfp] = ACTIONS(12543), + [anon_sym_BSLASHAcfp] = ACTIONS(12543), + [anon_sym_BSLASHac] = ACTIONS(12543), + [anon_sym_BSLASHAc] = ACTIONS(12543), + [anon_sym_BSLASHacp] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12543), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12543), + [anon_sym_BSLASHcolor] = ACTIONS(12543), + [anon_sym_BSLASHcolorbox] = ACTIONS(12543), + [anon_sym_BSLASHtextcolor] = ACTIONS(12543), + [anon_sym_BSLASHpagecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12543), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12543), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12543), + }, + [1238] = { + [sym_generic_command_name] = ACTIONS(12311), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12311), + [aux_sym_subsection_token1] = ACTIONS(12311), + [aux_sym_subsubsection_token1] = ACTIONS(12311), + [aux_sym_paragraph_token1] = ACTIONS(12311), + [aux_sym_subparagraph_token1] = ACTIONS(12311), + [anon_sym_BSLASHitem] = ACTIONS(12311), + [anon_sym_LBRACK] = ACTIONS(12309), + [anon_sym_RBRACK] = ACTIONS(12309), + [anon_sym_LBRACE] = ACTIONS(12309), + [anon_sym_RBRACE] = ACTIONS(12309), + [anon_sym_LPAREN] = ACTIONS(12309), + [anon_sym_COMMA] = ACTIONS(12309), + [anon_sym_EQ] = ACTIONS(12309), + [sym_word] = ACTIONS(12309), + [sym_param] = ACTIONS(12309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12309), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12309), + [anon_sym_DOLLAR] = ACTIONS(12311), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12309), + [anon_sym_BSLASHbegin] = ACTIONS(12311), + [anon_sym_BSLASHcaption] = ACTIONS(12311), + [anon_sym_BSLASHcite] = ACTIONS(12311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCite] = ACTIONS(12311), + [anon_sym_BSLASHnocite] = ACTIONS(12311), + [anon_sym_BSLASHcitet] = ACTIONS(12311), + [anon_sym_BSLASHcitep] = ACTIONS(12311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteauthor] = ACTIONS(12311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitetitle] = ACTIONS(12311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteyear] = ACTIONS(12311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitedate] = ACTIONS(12311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteurl] = ACTIONS(12311), + [anon_sym_BSLASHfullcite] = ACTIONS(12311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12311), + [anon_sym_BSLASHcitealt] = ACTIONS(12311), + [anon_sym_BSLASHcitealp] = ACTIONS(12311), + [anon_sym_BSLASHcitetext] = ACTIONS(12311), + [anon_sym_BSLASHparencite] = ACTIONS(12311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHParencite] = ACTIONS(12311), + [anon_sym_BSLASHfootcite] = ACTIONS(12311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12311), + [anon_sym_BSLASHtextcite] = ACTIONS(12311), + [anon_sym_BSLASHTextcite] = ACTIONS(12311), + [anon_sym_BSLASHsmartcite] = ACTIONS(12311), + [anon_sym_BSLASHSmartcite] = ACTIONS(12311), + [anon_sym_BSLASHsupercite] = ACTIONS(12311), + [anon_sym_BSLASHautocite] = ACTIONS(12311), + [anon_sym_BSLASHAutocite] = ACTIONS(12311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHvolcite] = ACTIONS(12311), + [anon_sym_BSLASHVolcite] = ACTIONS(12311), + [anon_sym_BSLASHpvolcite] = ACTIONS(12311), + [anon_sym_BSLASHPvolcite] = ACTIONS(12311), + [anon_sym_BSLASHfvolcite] = ACTIONS(12311), + [anon_sym_BSLASHftvolcite] = ACTIONS(12311), + [anon_sym_BSLASHsvolcite] = ACTIONS(12311), + [anon_sym_BSLASHSvolcite] = ACTIONS(12311), + [anon_sym_BSLASHtvolcite] = ACTIONS(12311), + [anon_sym_BSLASHTvolcite] = ACTIONS(12311), + [anon_sym_BSLASHavolcite] = ACTIONS(12311), + [anon_sym_BSLASHAvolcite] = ACTIONS(12311), + [anon_sym_BSLASHnotecite] = ACTIONS(12311), + [anon_sym_BSLASHpnotecite] = ACTIONS(12311), + [anon_sym_BSLASHPnotecite] = ACTIONS(12311), + [anon_sym_BSLASHfnotecite] = ACTIONS(12311), + [anon_sym_BSLASHusepackage] = ACTIONS(12311), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12311), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12311), + [anon_sym_BSLASHinclude] = ACTIONS(12311), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12311), + [anon_sym_BSLASHinput] = ACTIONS(12311), + [anon_sym_BSLASHsubfile] = ACTIONS(12311), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12311), + [anon_sym_BSLASHbibliography] = ACTIONS(12311), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12311), + [anon_sym_BSLASHincludesvg] = ACTIONS(12311), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12311), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12311), + [anon_sym_BSLASHimport] = ACTIONS(12311), + [anon_sym_BSLASHsubimport] = ACTIONS(12311), + [anon_sym_BSLASHinputfrom] = ACTIONS(12311), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12311), + [anon_sym_BSLASHincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHlabel] = ACTIONS(12311), + [anon_sym_BSLASHref] = ACTIONS(12311), + [anon_sym_BSLASHvref] = ACTIONS(12311), + [anon_sym_BSLASHVref] = ACTIONS(12311), + [anon_sym_BSLASHautoref] = ACTIONS(12311), + [anon_sym_BSLASHpageref] = ACTIONS(12311), + [anon_sym_BSLASHcref] = ACTIONS(12311), + [anon_sym_BSLASHCref] = ACTIONS(12311), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnameCref] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHlabelcref] = ACTIONS(12311), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12311), + [anon_sym_BSLASHeqref] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange] = ACTIONS(12311), + [anon_sym_BSLASHCrefrange] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewlabel] = ACTIONS(12311), + [anon_sym_BSLASHnewcommand] = ACTIONS(12311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12311), + [anon_sym_BSLASHgls] = ACTIONS(12311), + [anon_sym_BSLASHGls] = ACTIONS(12311), + [anon_sym_BSLASHGLS] = ACTIONS(12311), + [anon_sym_BSLASHglspl] = ACTIONS(12311), + [anon_sym_BSLASHGlspl] = ACTIONS(12311), + [anon_sym_BSLASHGLSpl] = ACTIONS(12311), + [anon_sym_BSLASHglsdisp] = ACTIONS(12311), + [anon_sym_BSLASHglslink] = ACTIONS(12311), + [anon_sym_BSLASHglstext] = ACTIONS(12311), + [anon_sym_BSLASHGlstext] = ACTIONS(12311), + [anon_sym_BSLASHGLStext] = ACTIONS(12311), + [anon_sym_BSLASHglsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12311), + [anon_sym_BSLASHglsplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSplural] = ACTIONS(12311), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHglsname] = ACTIONS(12311), + [anon_sym_BSLASHGlsname] = ACTIONS(12311), + [anon_sym_BSLASHGLSname] = ACTIONS(12311), + [anon_sym_BSLASHglssymbol] = ACTIONS(12311), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12311), + [anon_sym_BSLASHglsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12311), + [anon_sym_BSLASHglsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12311), + [anon_sym_BSLASHglsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12311), + [anon_sym_BSLASHglsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12311), + [anon_sym_BSLASHglsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12311), + [anon_sym_BSLASHnewacronym] = ACTIONS(12311), + [anon_sym_BSLASHacrshort] = ACTIONS(12311), + [anon_sym_BSLASHAcrshort] = ACTIONS(12311), + [anon_sym_BSLASHACRshort] = ACTIONS(12311), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12311), + [anon_sym_BSLASHacrlong] = ACTIONS(12311), + [anon_sym_BSLASHAcrlong] = ACTIONS(12311), + [anon_sym_BSLASHACRlong] = ACTIONS(12311), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12311), + [anon_sym_BSLASHacrfull] = ACTIONS(12311), + [anon_sym_BSLASHAcrfull] = ACTIONS(12311), + [anon_sym_BSLASHACRfull] = ACTIONS(12311), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12311), + [anon_sym_BSLASHacs] = ACTIONS(12311), + [anon_sym_BSLASHAcs] = ACTIONS(12311), + [anon_sym_BSLASHacsp] = ACTIONS(12311), + [anon_sym_BSLASHAcsp] = ACTIONS(12311), + [anon_sym_BSLASHacl] = ACTIONS(12311), + [anon_sym_BSLASHAcl] = ACTIONS(12311), + [anon_sym_BSLASHaclp] = ACTIONS(12311), + [anon_sym_BSLASHAclp] = ACTIONS(12311), + [anon_sym_BSLASHacf] = ACTIONS(12311), + [anon_sym_BSLASHAcf] = ACTIONS(12311), + [anon_sym_BSLASHacfp] = ACTIONS(12311), + [anon_sym_BSLASHAcfp] = ACTIONS(12311), + [anon_sym_BSLASHac] = ACTIONS(12311), + [anon_sym_BSLASHAc] = ACTIONS(12311), + [anon_sym_BSLASHacp] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12311), + [anon_sym_BSLASHcolor] = ACTIONS(12311), + [anon_sym_BSLASHcolorbox] = ACTIONS(12311), + [anon_sym_BSLASHtextcolor] = ACTIONS(12311), + [anon_sym_BSLASHpagecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12311), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12311), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12311), + }, + [1239] = { + [sym_generic_command_name] = ACTIONS(12327), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12327), + [aux_sym_subsection_token1] = ACTIONS(12327), + [aux_sym_subsubsection_token1] = ACTIONS(12327), + [aux_sym_paragraph_token1] = ACTIONS(12327), + [aux_sym_subparagraph_token1] = ACTIONS(12327), + [anon_sym_BSLASHitem] = ACTIONS(12327), + [anon_sym_LBRACK] = ACTIONS(12325), + [anon_sym_RBRACK] = ACTIONS(12325), + [anon_sym_LBRACE] = ACTIONS(12325), + [anon_sym_RBRACE] = ACTIONS(12325), + [anon_sym_LPAREN] = ACTIONS(12325), + [anon_sym_COMMA] = ACTIONS(12325), + [anon_sym_EQ] = ACTIONS(12325), + [sym_word] = ACTIONS(12325), + [sym_param] = ACTIONS(12325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12325), + [anon_sym_DOLLAR] = ACTIONS(12327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12325), + [anon_sym_BSLASHbegin] = ACTIONS(12327), + [anon_sym_BSLASHcaption] = ACTIONS(12327), + [anon_sym_BSLASHcite] = ACTIONS(12327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCite] = ACTIONS(12327), + [anon_sym_BSLASHnocite] = ACTIONS(12327), + [anon_sym_BSLASHcitet] = ACTIONS(12327), + [anon_sym_BSLASHcitep] = ACTIONS(12327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteauthor] = ACTIONS(12327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitetitle] = ACTIONS(12327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteyear] = ACTIONS(12327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitedate] = ACTIONS(12327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteurl] = ACTIONS(12327), + [anon_sym_BSLASHfullcite] = ACTIONS(12327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12327), + [anon_sym_BSLASHcitealt] = ACTIONS(12327), + [anon_sym_BSLASHcitealp] = ACTIONS(12327), + [anon_sym_BSLASHcitetext] = ACTIONS(12327), + [anon_sym_BSLASHparencite] = ACTIONS(12327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHParencite] = ACTIONS(12327), + [anon_sym_BSLASHfootcite] = ACTIONS(12327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12327), + [anon_sym_BSLASHtextcite] = ACTIONS(12327), + [anon_sym_BSLASHTextcite] = ACTIONS(12327), + [anon_sym_BSLASHsmartcite] = ACTIONS(12327), + [anon_sym_BSLASHSmartcite] = ACTIONS(12327), + [anon_sym_BSLASHsupercite] = ACTIONS(12327), + [anon_sym_BSLASHautocite] = ACTIONS(12327), + [anon_sym_BSLASHAutocite] = ACTIONS(12327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHvolcite] = ACTIONS(12327), + [anon_sym_BSLASHVolcite] = ACTIONS(12327), + [anon_sym_BSLASHpvolcite] = ACTIONS(12327), + [anon_sym_BSLASHPvolcite] = ACTIONS(12327), + [anon_sym_BSLASHfvolcite] = ACTIONS(12327), + [anon_sym_BSLASHftvolcite] = ACTIONS(12327), + [anon_sym_BSLASHsvolcite] = ACTIONS(12327), + [anon_sym_BSLASHSvolcite] = ACTIONS(12327), + [anon_sym_BSLASHtvolcite] = ACTIONS(12327), + [anon_sym_BSLASHTvolcite] = ACTIONS(12327), + [anon_sym_BSLASHavolcite] = ACTIONS(12327), + [anon_sym_BSLASHAvolcite] = ACTIONS(12327), + [anon_sym_BSLASHnotecite] = ACTIONS(12327), + [anon_sym_BSLASHpnotecite] = ACTIONS(12327), + [anon_sym_BSLASHPnotecite] = ACTIONS(12327), + [anon_sym_BSLASHfnotecite] = ACTIONS(12327), + [anon_sym_BSLASHusepackage] = ACTIONS(12327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12327), + [anon_sym_BSLASHinclude] = ACTIONS(12327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12327), + [anon_sym_BSLASHinput] = ACTIONS(12327), + [anon_sym_BSLASHsubfile] = ACTIONS(12327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12327), + [anon_sym_BSLASHbibliography] = ACTIONS(12327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12327), + [anon_sym_BSLASHincludesvg] = ACTIONS(12327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12327), + [anon_sym_BSLASHimport] = ACTIONS(12327), + [anon_sym_BSLASHsubimport] = ACTIONS(12327), + [anon_sym_BSLASHinputfrom] = ACTIONS(12327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12327), + [anon_sym_BSLASHincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHlabel] = ACTIONS(12327), + [anon_sym_BSLASHref] = ACTIONS(12327), + [anon_sym_BSLASHvref] = ACTIONS(12327), + [anon_sym_BSLASHVref] = ACTIONS(12327), + [anon_sym_BSLASHautoref] = ACTIONS(12327), + [anon_sym_BSLASHpageref] = ACTIONS(12327), + [anon_sym_BSLASHcref] = ACTIONS(12327), + [anon_sym_BSLASHCref] = ACTIONS(12327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnameCref] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHlabelcref] = ACTIONS(12327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12327), + [anon_sym_BSLASHeqref] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange] = ACTIONS(12327), + [anon_sym_BSLASHCrefrange] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewlabel] = ACTIONS(12327), + [anon_sym_BSLASHnewcommand] = ACTIONS(12327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12327), + [anon_sym_BSLASHgls] = ACTIONS(12327), + [anon_sym_BSLASHGls] = ACTIONS(12327), + [anon_sym_BSLASHGLS] = ACTIONS(12327), + [anon_sym_BSLASHglspl] = ACTIONS(12327), + [anon_sym_BSLASHGlspl] = ACTIONS(12327), + [anon_sym_BSLASHGLSpl] = ACTIONS(12327), + [anon_sym_BSLASHglsdisp] = ACTIONS(12327), + [anon_sym_BSLASHglslink] = ACTIONS(12327), + [anon_sym_BSLASHglstext] = ACTIONS(12327), + [anon_sym_BSLASHGlstext] = ACTIONS(12327), + [anon_sym_BSLASHGLStext] = ACTIONS(12327), + [anon_sym_BSLASHglsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12327), + [anon_sym_BSLASHglsplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSplural] = ACTIONS(12327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHglsname] = ACTIONS(12327), + [anon_sym_BSLASHGlsname] = ACTIONS(12327), + [anon_sym_BSLASHGLSname] = ACTIONS(12327), + [anon_sym_BSLASHglssymbol] = ACTIONS(12327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12327), + [anon_sym_BSLASHglsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12327), + [anon_sym_BSLASHglsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12327), + [anon_sym_BSLASHglsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12327), + [anon_sym_BSLASHglsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12327), + [anon_sym_BSLASHglsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12327), + [anon_sym_BSLASHnewacronym] = ACTIONS(12327), + [anon_sym_BSLASHacrshort] = ACTIONS(12327), + [anon_sym_BSLASHAcrshort] = ACTIONS(12327), + [anon_sym_BSLASHACRshort] = ACTIONS(12327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12327), + [anon_sym_BSLASHacrlong] = ACTIONS(12327), + [anon_sym_BSLASHAcrlong] = ACTIONS(12327), + [anon_sym_BSLASHACRlong] = ACTIONS(12327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12327), + [anon_sym_BSLASHacrfull] = ACTIONS(12327), + [anon_sym_BSLASHAcrfull] = ACTIONS(12327), + [anon_sym_BSLASHACRfull] = ACTIONS(12327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12327), + [anon_sym_BSLASHacs] = ACTIONS(12327), + [anon_sym_BSLASHAcs] = ACTIONS(12327), + [anon_sym_BSLASHacsp] = ACTIONS(12327), + [anon_sym_BSLASHAcsp] = ACTIONS(12327), + [anon_sym_BSLASHacl] = ACTIONS(12327), + [anon_sym_BSLASHAcl] = ACTIONS(12327), + [anon_sym_BSLASHaclp] = ACTIONS(12327), + [anon_sym_BSLASHAclp] = ACTIONS(12327), + [anon_sym_BSLASHacf] = ACTIONS(12327), + [anon_sym_BSLASHAcf] = ACTIONS(12327), + [anon_sym_BSLASHacfp] = ACTIONS(12327), + [anon_sym_BSLASHAcfp] = ACTIONS(12327), + [anon_sym_BSLASHac] = ACTIONS(12327), + [anon_sym_BSLASHAc] = ACTIONS(12327), + [anon_sym_BSLASHacp] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12327), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12327), + [anon_sym_BSLASHcolor] = ACTIONS(12327), + [anon_sym_BSLASHcolorbox] = ACTIONS(12327), + [anon_sym_BSLASHtextcolor] = ACTIONS(12327), + [anon_sym_BSLASHpagecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12327), + }, + [1240] = { + [sym_generic_command_name] = ACTIONS(12331), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12331), + [aux_sym_subsection_token1] = ACTIONS(12331), + [aux_sym_subsubsection_token1] = ACTIONS(12331), + [aux_sym_paragraph_token1] = ACTIONS(12331), + [aux_sym_subparagraph_token1] = ACTIONS(12331), + [anon_sym_BSLASHitem] = ACTIONS(12331), + [anon_sym_LBRACK] = ACTIONS(12329), + [anon_sym_RBRACK] = ACTIONS(12329), + [anon_sym_LBRACE] = ACTIONS(12329), + [anon_sym_RBRACE] = ACTIONS(12329), + [anon_sym_LPAREN] = ACTIONS(12329), + [anon_sym_COMMA] = ACTIONS(12329), + [anon_sym_EQ] = ACTIONS(12329), + [sym_word] = ACTIONS(12329), + [sym_param] = ACTIONS(12329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12329), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12329), + [anon_sym_DOLLAR] = ACTIONS(12331), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12329), + [anon_sym_BSLASHbegin] = ACTIONS(12331), + [anon_sym_BSLASHcaption] = ACTIONS(12331), + [anon_sym_BSLASHcite] = ACTIONS(12331), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCite] = ACTIONS(12331), + [anon_sym_BSLASHnocite] = ACTIONS(12331), + [anon_sym_BSLASHcitet] = ACTIONS(12331), + [anon_sym_BSLASHcitep] = ACTIONS(12331), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteauthor] = ACTIONS(12331), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12331), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitetitle] = ACTIONS(12331), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteyear] = ACTIONS(12331), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitedate] = ACTIONS(12331), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteurl] = ACTIONS(12331), + [anon_sym_BSLASHfullcite] = ACTIONS(12331), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12331), + [anon_sym_BSLASHcitealt] = ACTIONS(12331), + [anon_sym_BSLASHcitealp] = ACTIONS(12331), + [anon_sym_BSLASHcitetext] = ACTIONS(12331), + [anon_sym_BSLASHparencite] = ACTIONS(12331), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHParencite] = ACTIONS(12331), + [anon_sym_BSLASHfootcite] = ACTIONS(12331), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12331), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12331), + [anon_sym_BSLASHtextcite] = ACTIONS(12331), + [anon_sym_BSLASHTextcite] = ACTIONS(12331), + [anon_sym_BSLASHsmartcite] = ACTIONS(12331), + [anon_sym_BSLASHSmartcite] = ACTIONS(12331), + [anon_sym_BSLASHsupercite] = ACTIONS(12331), + [anon_sym_BSLASHautocite] = ACTIONS(12331), + [anon_sym_BSLASHAutocite] = ACTIONS(12331), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHvolcite] = ACTIONS(12331), + [anon_sym_BSLASHVolcite] = ACTIONS(12331), + [anon_sym_BSLASHpvolcite] = ACTIONS(12331), + [anon_sym_BSLASHPvolcite] = ACTIONS(12331), + [anon_sym_BSLASHfvolcite] = ACTIONS(12331), + [anon_sym_BSLASHftvolcite] = ACTIONS(12331), + [anon_sym_BSLASHsvolcite] = ACTIONS(12331), + [anon_sym_BSLASHSvolcite] = ACTIONS(12331), + [anon_sym_BSLASHtvolcite] = ACTIONS(12331), + [anon_sym_BSLASHTvolcite] = ACTIONS(12331), + [anon_sym_BSLASHavolcite] = ACTIONS(12331), + [anon_sym_BSLASHAvolcite] = ACTIONS(12331), + [anon_sym_BSLASHnotecite] = ACTIONS(12331), + [anon_sym_BSLASHpnotecite] = ACTIONS(12331), + [anon_sym_BSLASHPnotecite] = ACTIONS(12331), + [anon_sym_BSLASHfnotecite] = ACTIONS(12331), + [anon_sym_BSLASHusepackage] = ACTIONS(12331), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12331), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12331), + [anon_sym_BSLASHinclude] = ACTIONS(12331), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12331), + [anon_sym_BSLASHinput] = ACTIONS(12331), + [anon_sym_BSLASHsubfile] = ACTIONS(12331), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12331), + [anon_sym_BSLASHbibliography] = ACTIONS(12331), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12331), + [anon_sym_BSLASHincludesvg] = ACTIONS(12331), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12331), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12331), + [anon_sym_BSLASHimport] = ACTIONS(12331), + [anon_sym_BSLASHsubimport] = ACTIONS(12331), + [anon_sym_BSLASHinputfrom] = ACTIONS(12331), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12331), + [anon_sym_BSLASHincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHlabel] = ACTIONS(12331), + [anon_sym_BSLASHref] = ACTIONS(12331), + [anon_sym_BSLASHvref] = ACTIONS(12331), + [anon_sym_BSLASHVref] = ACTIONS(12331), + [anon_sym_BSLASHautoref] = ACTIONS(12331), + [anon_sym_BSLASHpageref] = ACTIONS(12331), + [anon_sym_BSLASHcref] = ACTIONS(12331), + [anon_sym_BSLASHCref] = ACTIONS(12331), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnameCref] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHlabelcref] = ACTIONS(12331), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12331), + [anon_sym_BSLASHeqref] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange] = ACTIONS(12331), + [anon_sym_BSLASHCrefrange] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewlabel] = ACTIONS(12331), + [anon_sym_BSLASHnewcommand] = ACTIONS(12331), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12331), + [anon_sym_BSLASHgls] = ACTIONS(12331), + [anon_sym_BSLASHGls] = ACTIONS(12331), + [anon_sym_BSLASHGLS] = ACTIONS(12331), + [anon_sym_BSLASHglspl] = ACTIONS(12331), + [anon_sym_BSLASHGlspl] = ACTIONS(12331), + [anon_sym_BSLASHGLSpl] = ACTIONS(12331), + [anon_sym_BSLASHglsdisp] = ACTIONS(12331), + [anon_sym_BSLASHglslink] = ACTIONS(12331), + [anon_sym_BSLASHglstext] = ACTIONS(12331), + [anon_sym_BSLASHGlstext] = ACTIONS(12331), + [anon_sym_BSLASHGLStext] = ACTIONS(12331), + [anon_sym_BSLASHglsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12331), + [anon_sym_BSLASHglsplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSplural] = ACTIONS(12331), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHglsname] = ACTIONS(12331), + [anon_sym_BSLASHGlsname] = ACTIONS(12331), + [anon_sym_BSLASHGLSname] = ACTIONS(12331), + [anon_sym_BSLASHglssymbol] = ACTIONS(12331), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12331), + [anon_sym_BSLASHglsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12331), + [anon_sym_BSLASHglsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12331), + [anon_sym_BSLASHglsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12331), + [anon_sym_BSLASHglsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12331), + [anon_sym_BSLASHglsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12331), + [anon_sym_BSLASHnewacronym] = ACTIONS(12331), + [anon_sym_BSLASHacrshort] = ACTIONS(12331), + [anon_sym_BSLASHAcrshort] = ACTIONS(12331), + [anon_sym_BSLASHACRshort] = ACTIONS(12331), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12331), + [anon_sym_BSLASHacrlong] = ACTIONS(12331), + [anon_sym_BSLASHAcrlong] = ACTIONS(12331), + [anon_sym_BSLASHACRlong] = ACTIONS(12331), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12331), + [anon_sym_BSLASHacrfull] = ACTIONS(12331), + [anon_sym_BSLASHAcrfull] = ACTIONS(12331), + [anon_sym_BSLASHACRfull] = ACTIONS(12331), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12331), + [anon_sym_BSLASHacs] = ACTIONS(12331), + [anon_sym_BSLASHAcs] = ACTIONS(12331), + [anon_sym_BSLASHacsp] = ACTIONS(12331), + [anon_sym_BSLASHAcsp] = ACTIONS(12331), + [anon_sym_BSLASHacl] = ACTIONS(12331), + [anon_sym_BSLASHAcl] = ACTIONS(12331), + [anon_sym_BSLASHaclp] = ACTIONS(12331), + [anon_sym_BSLASHAclp] = ACTIONS(12331), + [anon_sym_BSLASHacf] = ACTIONS(12331), + [anon_sym_BSLASHAcf] = ACTIONS(12331), + [anon_sym_BSLASHacfp] = ACTIONS(12331), + [anon_sym_BSLASHAcfp] = ACTIONS(12331), + [anon_sym_BSLASHac] = ACTIONS(12331), + [anon_sym_BSLASHAc] = ACTIONS(12331), + [anon_sym_BSLASHacp] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12331), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12331), + [anon_sym_BSLASHcolor] = ACTIONS(12331), + [anon_sym_BSLASHcolorbox] = ACTIONS(12331), + [anon_sym_BSLASHtextcolor] = ACTIONS(12331), + [anon_sym_BSLASHpagecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12331), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12331), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12331), + }, + [1241] = { + [sym_generic_command_name] = ACTIONS(12104), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12104), + [aux_sym_subsection_token1] = ACTIONS(12104), + [aux_sym_subsubsection_token1] = ACTIONS(12104), + [aux_sym_paragraph_token1] = ACTIONS(12104), + [aux_sym_subparagraph_token1] = ACTIONS(12104), + [anon_sym_BSLASHitem] = ACTIONS(12104), + [anon_sym_LBRACK] = ACTIONS(12102), + [anon_sym_RBRACK] = ACTIONS(12102), + [anon_sym_LBRACE] = ACTIONS(12102), + [anon_sym_RBRACE] = ACTIONS(12102), + [anon_sym_LPAREN] = ACTIONS(12102), + [anon_sym_COMMA] = ACTIONS(12102), + [anon_sym_EQ] = ACTIONS(12102), + [sym_word] = ACTIONS(12102), + [sym_param] = ACTIONS(12102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12102), + [anon_sym_DOLLAR] = ACTIONS(12104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12102), + [anon_sym_BSLASHbegin] = ACTIONS(12104), + [anon_sym_BSLASHcaption] = ACTIONS(12104), + [anon_sym_BSLASHcite] = ACTIONS(12104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCite] = ACTIONS(12104), + [anon_sym_BSLASHnocite] = ACTIONS(12104), + [anon_sym_BSLASHcitet] = ACTIONS(12104), + [anon_sym_BSLASHcitep] = ACTIONS(12104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteauthor] = ACTIONS(12104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitetitle] = ACTIONS(12104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteyear] = ACTIONS(12104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitedate] = ACTIONS(12104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteurl] = ACTIONS(12104), + [anon_sym_BSLASHfullcite] = ACTIONS(12104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12104), + [anon_sym_BSLASHcitealt] = ACTIONS(12104), + [anon_sym_BSLASHcitealp] = ACTIONS(12104), + [anon_sym_BSLASHcitetext] = ACTIONS(12104), + [anon_sym_BSLASHparencite] = ACTIONS(12104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHParencite] = ACTIONS(12104), + [anon_sym_BSLASHfootcite] = ACTIONS(12104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12104), + [anon_sym_BSLASHtextcite] = ACTIONS(12104), + [anon_sym_BSLASHTextcite] = ACTIONS(12104), + [anon_sym_BSLASHsmartcite] = ACTIONS(12104), + [anon_sym_BSLASHSmartcite] = ACTIONS(12104), + [anon_sym_BSLASHsupercite] = ACTIONS(12104), + [anon_sym_BSLASHautocite] = ACTIONS(12104), + [anon_sym_BSLASHAutocite] = ACTIONS(12104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHvolcite] = ACTIONS(12104), + [anon_sym_BSLASHVolcite] = ACTIONS(12104), + [anon_sym_BSLASHpvolcite] = ACTIONS(12104), + [anon_sym_BSLASHPvolcite] = ACTIONS(12104), + [anon_sym_BSLASHfvolcite] = ACTIONS(12104), + [anon_sym_BSLASHftvolcite] = ACTIONS(12104), + [anon_sym_BSLASHsvolcite] = ACTIONS(12104), + [anon_sym_BSLASHSvolcite] = ACTIONS(12104), + [anon_sym_BSLASHtvolcite] = ACTIONS(12104), + [anon_sym_BSLASHTvolcite] = ACTIONS(12104), + [anon_sym_BSLASHavolcite] = ACTIONS(12104), + [anon_sym_BSLASHAvolcite] = ACTIONS(12104), + [anon_sym_BSLASHnotecite] = ACTIONS(12104), + [anon_sym_BSLASHpnotecite] = ACTIONS(12104), + [anon_sym_BSLASHPnotecite] = ACTIONS(12104), + [anon_sym_BSLASHfnotecite] = ACTIONS(12104), + [anon_sym_BSLASHusepackage] = ACTIONS(12104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12104), + [anon_sym_BSLASHinclude] = ACTIONS(12104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12104), + [anon_sym_BSLASHinput] = ACTIONS(12104), + [anon_sym_BSLASHsubfile] = ACTIONS(12104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12104), + [anon_sym_BSLASHbibliography] = ACTIONS(12104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12104), + [anon_sym_BSLASHincludesvg] = ACTIONS(12104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12104), + [anon_sym_BSLASHimport] = ACTIONS(12104), + [anon_sym_BSLASHsubimport] = ACTIONS(12104), + [anon_sym_BSLASHinputfrom] = ACTIONS(12104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12104), + [anon_sym_BSLASHincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHlabel] = ACTIONS(12104), + [anon_sym_BSLASHref] = ACTIONS(12104), + [anon_sym_BSLASHvref] = ACTIONS(12104), + [anon_sym_BSLASHVref] = ACTIONS(12104), + [anon_sym_BSLASHautoref] = ACTIONS(12104), + [anon_sym_BSLASHpageref] = ACTIONS(12104), + [anon_sym_BSLASHcref] = ACTIONS(12104), + [anon_sym_BSLASHCref] = ACTIONS(12104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnameCref] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHlabelcref] = ACTIONS(12104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12104), + [anon_sym_BSLASHeqref] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange] = ACTIONS(12104), + [anon_sym_BSLASHCrefrange] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewlabel] = ACTIONS(12104), + [anon_sym_BSLASHnewcommand] = ACTIONS(12104), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12104), + [anon_sym_BSLASHgls] = ACTIONS(12104), + [anon_sym_BSLASHGls] = ACTIONS(12104), + [anon_sym_BSLASHGLS] = ACTIONS(12104), + [anon_sym_BSLASHglspl] = ACTIONS(12104), + [anon_sym_BSLASHGlspl] = ACTIONS(12104), + [anon_sym_BSLASHGLSpl] = ACTIONS(12104), + [anon_sym_BSLASHglsdisp] = ACTIONS(12104), + [anon_sym_BSLASHglslink] = ACTIONS(12104), + [anon_sym_BSLASHglstext] = ACTIONS(12104), + [anon_sym_BSLASHGlstext] = ACTIONS(12104), + [anon_sym_BSLASHGLStext] = ACTIONS(12104), + [anon_sym_BSLASHglsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12104), + [anon_sym_BSLASHglsplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSplural] = ACTIONS(12104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHglsname] = ACTIONS(12104), + [anon_sym_BSLASHGlsname] = ACTIONS(12104), + [anon_sym_BSLASHGLSname] = ACTIONS(12104), + [anon_sym_BSLASHglssymbol] = ACTIONS(12104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12104), + [anon_sym_BSLASHglsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12104), + [anon_sym_BSLASHglsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12104), + [anon_sym_BSLASHglsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12104), + [anon_sym_BSLASHglsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12104), + [anon_sym_BSLASHglsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12104), + [anon_sym_BSLASHnewacronym] = ACTIONS(12104), + [anon_sym_BSLASHacrshort] = ACTIONS(12104), + [anon_sym_BSLASHAcrshort] = ACTIONS(12104), + [anon_sym_BSLASHACRshort] = ACTIONS(12104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12104), + [anon_sym_BSLASHacrlong] = ACTIONS(12104), + [anon_sym_BSLASHAcrlong] = ACTIONS(12104), + [anon_sym_BSLASHACRlong] = ACTIONS(12104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12104), + [anon_sym_BSLASHacrfull] = ACTIONS(12104), + [anon_sym_BSLASHAcrfull] = ACTIONS(12104), + [anon_sym_BSLASHACRfull] = ACTIONS(12104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12104), + [anon_sym_BSLASHacs] = ACTIONS(12104), + [anon_sym_BSLASHAcs] = ACTIONS(12104), + [anon_sym_BSLASHacsp] = ACTIONS(12104), + [anon_sym_BSLASHAcsp] = ACTIONS(12104), + [anon_sym_BSLASHacl] = ACTIONS(12104), + [anon_sym_BSLASHAcl] = ACTIONS(12104), + [anon_sym_BSLASHaclp] = ACTIONS(12104), + [anon_sym_BSLASHAclp] = ACTIONS(12104), + [anon_sym_BSLASHacf] = ACTIONS(12104), + [anon_sym_BSLASHAcf] = ACTIONS(12104), + [anon_sym_BSLASHacfp] = ACTIONS(12104), + [anon_sym_BSLASHAcfp] = ACTIONS(12104), + [anon_sym_BSLASHac] = ACTIONS(12104), + [anon_sym_BSLASHAc] = ACTIONS(12104), + [anon_sym_BSLASHacp] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12104), + [anon_sym_BSLASHcolor] = ACTIONS(12104), + [anon_sym_BSLASHcolorbox] = ACTIONS(12104), + [anon_sym_BSLASHtextcolor] = ACTIONS(12104), + [anon_sym_BSLASHpagecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12104), + }, + [1242] = { + [sym_generic_command_name] = ACTIONS(12345), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12345), + [aux_sym_subsection_token1] = ACTIONS(12345), + [aux_sym_subsubsection_token1] = ACTIONS(12345), + [aux_sym_paragraph_token1] = ACTIONS(12345), + [aux_sym_subparagraph_token1] = ACTIONS(12345), + [anon_sym_BSLASHitem] = ACTIONS(12345), + [anon_sym_LBRACK] = ACTIONS(12343), + [anon_sym_RBRACK] = ACTIONS(12343), + [anon_sym_LBRACE] = ACTIONS(12343), + [anon_sym_RBRACE] = ACTIONS(12343), + [anon_sym_LPAREN] = ACTIONS(12343), + [anon_sym_COMMA] = ACTIONS(12343), + [anon_sym_EQ] = ACTIONS(12343), + [sym_word] = ACTIONS(12343), + [sym_param] = ACTIONS(12343), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12343), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12343), + [anon_sym_DOLLAR] = ACTIONS(12345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12343), + [anon_sym_BSLASHbegin] = ACTIONS(12345), + [anon_sym_BSLASHcaption] = ACTIONS(12345), + [anon_sym_BSLASHcite] = ACTIONS(12345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCite] = ACTIONS(12345), + [anon_sym_BSLASHnocite] = ACTIONS(12345), + [anon_sym_BSLASHcitet] = ACTIONS(12345), + [anon_sym_BSLASHcitep] = ACTIONS(12345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteauthor] = ACTIONS(12345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitetitle] = ACTIONS(12345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteyear] = ACTIONS(12345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitedate] = ACTIONS(12345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteurl] = ACTIONS(12345), + [anon_sym_BSLASHfullcite] = ACTIONS(12345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12345), + [anon_sym_BSLASHcitealt] = ACTIONS(12345), + [anon_sym_BSLASHcitealp] = ACTIONS(12345), + [anon_sym_BSLASHcitetext] = ACTIONS(12345), + [anon_sym_BSLASHparencite] = ACTIONS(12345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHParencite] = ACTIONS(12345), + [anon_sym_BSLASHfootcite] = ACTIONS(12345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12345), + [anon_sym_BSLASHtextcite] = ACTIONS(12345), + [anon_sym_BSLASHTextcite] = ACTIONS(12345), + [anon_sym_BSLASHsmartcite] = ACTIONS(12345), + [anon_sym_BSLASHSmartcite] = ACTIONS(12345), + [anon_sym_BSLASHsupercite] = ACTIONS(12345), + [anon_sym_BSLASHautocite] = ACTIONS(12345), + [anon_sym_BSLASHAutocite] = ACTIONS(12345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHvolcite] = ACTIONS(12345), + [anon_sym_BSLASHVolcite] = ACTIONS(12345), + [anon_sym_BSLASHpvolcite] = ACTIONS(12345), + [anon_sym_BSLASHPvolcite] = ACTIONS(12345), + [anon_sym_BSLASHfvolcite] = ACTIONS(12345), + [anon_sym_BSLASHftvolcite] = ACTIONS(12345), + [anon_sym_BSLASHsvolcite] = ACTIONS(12345), + [anon_sym_BSLASHSvolcite] = ACTIONS(12345), + [anon_sym_BSLASHtvolcite] = ACTIONS(12345), + [anon_sym_BSLASHTvolcite] = ACTIONS(12345), + [anon_sym_BSLASHavolcite] = ACTIONS(12345), + [anon_sym_BSLASHAvolcite] = ACTIONS(12345), + [anon_sym_BSLASHnotecite] = ACTIONS(12345), + [anon_sym_BSLASHpnotecite] = ACTIONS(12345), + [anon_sym_BSLASHPnotecite] = ACTIONS(12345), + [anon_sym_BSLASHfnotecite] = ACTIONS(12345), + [anon_sym_BSLASHusepackage] = ACTIONS(12345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12345), + [anon_sym_BSLASHinclude] = ACTIONS(12345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12345), + [anon_sym_BSLASHinput] = ACTIONS(12345), + [anon_sym_BSLASHsubfile] = ACTIONS(12345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12345), + [anon_sym_BSLASHbibliography] = ACTIONS(12345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12345), + [anon_sym_BSLASHincludesvg] = ACTIONS(12345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12345), + [anon_sym_BSLASHimport] = ACTIONS(12345), + [anon_sym_BSLASHsubimport] = ACTIONS(12345), + [anon_sym_BSLASHinputfrom] = ACTIONS(12345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12345), + [anon_sym_BSLASHincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHlabel] = ACTIONS(12345), + [anon_sym_BSLASHref] = ACTIONS(12345), + [anon_sym_BSLASHvref] = ACTIONS(12345), + [anon_sym_BSLASHVref] = ACTIONS(12345), + [anon_sym_BSLASHautoref] = ACTIONS(12345), + [anon_sym_BSLASHpageref] = ACTIONS(12345), + [anon_sym_BSLASHcref] = ACTIONS(12345), + [anon_sym_BSLASHCref] = ACTIONS(12345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnameCref] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHlabelcref] = ACTIONS(12345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12345), + [anon_sym_BSLASHeqref] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange] = ACTIONS(12345), + [anon_sym_BSLASHCrefrange] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewlabel] = ACTIONS(12345), + [anon_sym_BSLASHnewcommand] = ACTIONS(12345), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12345), + [anon_sym_BSLASHgls] = ACTIONS(12345), + [anon_sym_BSLASHGls] = ACTIONS(12345), + [anon_sym_BSLASHGLS] = ACTIONS(12345), + [anon_sym_BSLASHglspl] = ACTIONS(12345), + [anon_sym_BSLASHGlspl] = ACTIONS(12345), + [anon_sym_BSLASHGLSpl] = ACTIONS(12345), + [anon_sym_BSLASHglsdisp] = ACTIONS(12345), + [anon_sym_BSLASHglslink] = ACTIONS(12345), + [anon_sym_BSLASHglstext] = ACTIONS(12345), + [anon_sym_BSLASHGlstext] = ACTIONS(12345), + [anon_sym_BSLASHGLStext] = ACTIONS(12345), + [anon_sym_BSLASHglsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12345), + [anon_sym_BSLASHglsplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSplural] = ACTIONS(12345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHglsname] = ACTIONS(12345), + [anon_sym_BSLASHGlsname] = ACTIONS(12345), + [anon_sym_BSLASHGLSname] = ACTIONS(12345), + [anon_sym_BSLASHglssymbol] = ACTIONS(12345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12345), + [anon_sym_BSLASHglsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12345), + [anon_sym_BSLASHglsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12345), + [anon_sym_BSLASHglsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12345), + [anon_sym_BSLASHglsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12345), + [anon_sym_BSLASHglsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12345), + [anon_sym_BSLASHnewacronym] = ACTIONS(12345), + [anon_sym_BSLASHacrshort] = ACTIONS(12345), + [anon_sym_BSLASHAcrshort] = ACTIONS(12345), + [anon_sym_BSLASHACRshort] = ACTIONS(12345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12345), + [anon_sym_BSLASHacrlong] = ACTIONS(12345), + [anon_sym_BSLASHAcrlong] = ACTIONS(12345), + [anon_sym_BSLASHACRlong] = ACTIONS(12345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12345), + [anon_sym_BSLASHacrfull] = ACTIONS(12345), + [anon_sym_BSLASHAcrfull] = ACTIONS(12345), + [anon_sym_BSLASHACRfull] = ACTIONS(12345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12345), + [anon_sym_BSLASHacs] = ACTIONS(12345), + [anon_sym_BSLASHAcs] = ACTIONS(12345), + [anon_sym_BSLASHacsp] = ACTIONS(12345), + [anon_sym_BSLASHAcsp] = ACTIONS(12345), + [anon_sym_BSLASHacl] = ACTIONS(12345), + [anon_sym_BSLASHAcl] = ACTIONS(12345), + [anon_sym_BSLASHaclp] = ACTIONS(12345), + [anon_sym_BSLASHAclp] = ACTIONS(12345), + [anon_sym_BSLASHacf] = ACTIONS(12345), + [anon_sym_BSLASHAcf] = ACTIONS(12345), + [anon_sym_BSLASHacfp] = ACTIONS(12345), + [anon_sym_BSLASHAcfp] = ACTIONS(12345), + [anon_sym_BSLASHac] = ACTIONS(12345), + [anon_sym_BSLASHAc] = ACTIONS(12345), + [anon_sym_BSLASHacp] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12345), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12345), + [anon_sym_BSLASHcolor] = ACTIONS(12345), + [anon_sym_BSLASHcolorbox] = ACTIONS(12345), + [anon_sym_BSLASHtextcolor] = ACTIONS(12345), + [anon_sym_BSLASHpagecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12345), + }, + [1243] = { + [sym_generic_command_name] = ACTIONS(12547), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12547), + [aux_sym_subsection_token1] = ACTIONS(12547), + [aux_sym_subsubsection_token1] = ACTIONS(12547), + [aux_sym_paragraph_token1] = ACTIONS(12547), + [aux_sym_subparagraph_token1] = ACTIONS(12547), + [anon_sym_BSLASHitem] = ACTIONS(12547), + [anon_sym_LBRACK] = ACTIONS(12545), + [anon_sym_RBRACK] = ACTIONS(12545), + [anon_sym_LBRACE] = ACTIONS(12545), + [anon_sym_RBRACE] = ACTIONS(12545), + [anon_sym_LPAREN] = ACTIONS(12545), + [anon_sym_COMMA] = ACTIONS(12545), + [anon_sym_EQ] = ACTIONS(12545), + [sym_word] = ACTIONS(12545), + [sym_param] = ACTIONS(12545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12545), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12545), + [anon_sym_DOLLAR] = ACTIONS(12547), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12545), + [anon_sym_BSLASHbegin] = ACTIONS(12547), + [anon_sym_BSLASHcaption] = ACTIONS(12547), + [anon_sym_BSLASHcite] = ACTIONS(12547), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCite] = ACTIONS(12547), + [anon_sym_BSLASHnocite] = ACTIONS(12547), + [anon_sym_BSLASHcitet] = ACTIONS(12547), + [anon_sym_BSLASHcitep] = ACTIONS(12547), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteauthor] = ACTIONS(12547), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12547), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitetitle] = ACTIONS(12547), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteyear] = ACTIONS(12547), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitedate] = ACTIONS(12547), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteurl] = ACTIONS(12547), + [anon_sym_BSLASHfullcite] = ACTIONS(12547), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12547), + [anon_sym_BSLASHcitealt] = ACTIONS(12547), + [anon_sym_BSLASHcitealp] = ACTIONS(12547), + [anon_sym_BSLASHcitetext] = ACTIONS(12547), + [anon_sym_BSLASHparencite] = ACTIONS(12547), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHParencite] = ACTIONS(12547), + [anon_sym_BSLASHfootcite] = ACTIONS(12547), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12547), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12547), + [anon_sym_BSLASHtextcite] = ACTIONS(12547), + [anon_sym_BSLASHTextcite] = ACTIONS(12547), + [anon_sym_BSLASHsmartcite] = ACTIONS(12547), + [anon_sym_BSLASHSmartcite] = ACTIONS(12547), + [anon_sym_BSLASHsupercite] = ACTIONS(12547), + [anon_sym_BSLASHautocite] = ACTIONS(12547), + [anon_sym_BSLASHAutocite] = ACTIONS(12547), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHvolcite] = ACTIONS(12547), + [anon_sym_BSLASHVolcite] = ACTIONS(12547), + [anon_sym_BSLASHpvolcite] = ACTIONS(12547), + [anon_sym_BSLASHPvolcite] = ACTIONS(12547), + [anon_sym_BSLASHfvolcite] = ACTIONS(12547), + [anon_sym_BSLASHftvolcite] = ACTIONS(12547), + [anon_sym_BSLASHsvolcite] = ACTIONS(12547), + [anon_sym_BSLASHSvolcite] = ACTIONS(12547), + [anon_sym_BSLASHtvolcite] = ACTIONS(12547), + [anon_sym_BSLASHTvolcite] = ACTIONS(12547), + [anon_sym_BSLASHavolcite] = ACTIONS(12547), + [anon_sym_BSLASHAvolcite] = ACTIONS(12547), + [anon_sym_BSLASHnotecite] = ACTIONS(12547), + [anon_sym_BSLASHpnotecite] = ACTIONS(12547), + [anon_sym_BSLASHPnotecite] = ACTIONS(12547), + [anon_sym_BSLASHfnotecite] = ACTIONS(12547), + [anon_sym_BSLASHusepackage] = ACTIONS(12547), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12547), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12547), + [anon_sym_BSLASHinclude] = ACTIONS(12547), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12547), + [anon_sym_BSLASHinput] = ACTIONS(12547), + [anon_sym_BSLASHsubfile] = ACTIONS(12547), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12547), + [anon_sym_BSLASHbibliography] = ACTIONS(12547), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12547), + [anon_sym_BSLASHincludesvg] = ACTIONS(12547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12547), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12547), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12547), + [anon_sym_BSLASHimport] = ACTIONS(12547), + [anon_sym_BSLASHsubimport] = ACTIONS(12547), + [anon_sym_BSLASHinputfrom] = ACTIONS(12547), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12547), + [anon_sym_BSLASHincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHlabel] = ACTIONS(12547), + [anon_sym_BSLASHref] = ACTIONS(12547), + [anon_sym_BSLASHvref] = ACTIONS(12547), + [anon_sym_BSLASHVref] = ACTIONS(12547), + [anon_sym_BSLASHautoref] = ACTIONS(12547), + [anon_sym_BSLASHpageref] = ACTIONS(12547), + [anon_sym_BSLASHcref] = ACTIONS(12547), + [anon_sym_BSLASHCref] = ACTIONS(12547), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnameCref] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHlabelcref] = ACTIONS(12547), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12547), + [anon_sym_BSLASHeqref] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange] = ACTIONS(12547), + [anon_sym_BSLASHCrefrange] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewlabel] = ACTIONS(12547), + [anon_sym_BSLASHnewcommand] = ACTIONS(12547), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12547), + [anon_sym_BSLASHgls] = ACTIONS(12547), + [anon_sym_BSLASHGls] = ACTIONS(12547), + [anon_sym_BSLASHGLS] = ACTIONS(12547), + [anon_sym_BSLASHglspl] = ACTIONS(12547), + [anon_sym_BSLASHGlspl] = ACTIONS(12547), + [anon_sym_BSLASHGLSpl] = ACTIONS(12547), + [anon_sym_BSLASHglsdisp] = ACTIONS(12547), + [anon_sym_BSLASHglslink] = ACTIONS(12547), + [anon_sym_BSLASHglstext] = ACTIONS(12547), + [anon_sym_BSLASHGlstext] = ACTIONS(12547), + [anon_sym_BSLASHGLStext] = ACTIONS(12547), + [anon_sym_BSLASHglsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12547), + [anon_sym_BSLASHglsplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSplural] = ACTIONS(12547), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHglsname] = ACTIONS(12547), + [anon_sym_BSLASHGlsname] = ACTIONS(12547), + [anon_sym_BSLASHGLSname] = ACTIONS(12547), + [anon_sym_BSLASHglssymbol] = ACTIONS(12547), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12547), + [anon_sym_BSLASHglsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12547), + [anon_sym_BSLASHglsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12547), + [anon_sym_BSLASHglsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12547), + [anon_sym_BSLASHglsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12547), + [anon_sym_BSLASHglsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12547), + [anon_sym_BSLASHnewacronym] = ACTIONS(12547), + [anon_sym_BSLASHacrshort] = ACTIONS(12547), + [anon_sym_BSLASHAcrshort] = ACTIONS(12547), + [anon_sym_BSLASHACRshort] = ACTIONS(12547), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12547), + [anon_sym_BSLASHacrlong] = ACTIONS(12547), + [anon_sym_BSLASHAcrlong] = ACTIONS(12547), + [anon_sym_BSLASHACRlong] = ACTIONS(12547), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12547), + [anon_sym_BSLASHacrfull] = ACTIONS(12547), + [anon_sym_BSLASHAcrfull] = ACTIONS(12547), + [anon_sym_BSLASHACRfull] = ACTIONS(12547), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12547), + [anon_sym_BSLASHacs] = ACTIONS(12547), + [anon_sym_BSLASHAcs] = ACTIONS(12547), + [anon_sym_BSLASHacsp] = ACTIONS(12547), + [anon_sym_BSLASHAcsp] = ACTIONS(12547), + [anon_sym_BSLASHacl] = ACTIONS(12547), + [anon_sym_BSLASHAcl] = ACTIONS(12547), + [anon_sym_BSLASHaclp] = ACTIONS(12547), + [anon_sym_BSLASHAclp] = ACTIONS(12547), + [anon_sym_BSLASHacf] = ACTIONS(12547), + [anon_sym_BSLASHAcf] = ACTIONS(12547), + [anon_sym_BSLASHacfp] = ACTIONS(12547), + [anon_sym_BSLASHAcfp] = ACTIONS(12547), + [anon_sym_BSLASHac] = ACTIONS(12547), + [anon_sym_BSLASHAc] = ACTIONS(12547), + [anon_sym_BSLASHacp] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12547), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12547), + [anon_sym_BSLASHcolor] = ACTIONS(12547), + [anon_sym_BSLASHcolorbox] = ACTIONS(12547), + [anon_sym_BSLASHtextcolor] = ACTIONS(12547), + [anon_sym_BSLASHpagecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12547), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12547), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12547), + }, + [1244] = { + [sym_generic_command_name] = ACTIONS(12255), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12255), + [aux_sym_subsection_token1] = ACTIONS(12255), + [aux_sym_subsubsection_token1] = ACTIONS(12255), + [aux_sym_paragraph_token1] = ACTIONS(12255), + [aux_sym_subparagraph_token1] = ACTIONS(12255), + [anon_sym_BSLASHitem] = ACTIONS(12255), + [anon_sym_LBRACK] = ACTIONS(12253), + [anon_sym_RBRACK] = ACTIONS(12253), + [anon_sym_LBRACE] = ACTIONS(12253), + [anon_sym_RBRACE] = ACTIONS(12253), + [anon_sym_LPAREN] = ACTIONS(12253), + [anon_sym_COMMA] = ACTIONS(12253), + [anon_sym_EQ] = ACTIONS(12253), + [sym_word] = ACTIONS(12253), + [sym_param] = ACTIONS(12253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12253), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12253), + [anon_sym_DOLLAR] = ACTIONS(12255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12253), + [anon_sym_BSLASHbegin] = ACTIONS(12255), + [anon_sym_BSLASHcaption] = ACTIONS(12255), + [anon_sym_BSLASHcite] = ACTIONS(12255), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCite] = ACTIONS(12255), + [anon_sym_BSLASHnocite] = ACTIONS(12255), + [anon_sym_BSLASHcitet] = ACTIONS(12255), + [anon_sym_BSLASHcitep] = ACTIONS(12255), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteauthor] = ACTIONS(12255), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12255), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitetitle] = ACTIONS(12255), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteyear] = ACTIONS(12255), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitedate] = ACTIONS(12255), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteurl] = ACTIONS(12255), + [anon_sym_BSLASHfullcite] = ACTIONS(12255), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12255), + [anon_sym_BSLASHcitealt] = ACTIONS(12255), + [anon_sym_BSLASHcitealp] = ACTIONS(12255), + [anon_sym_BSLASHcitetext] = ACTIONS(12255), + [anon_sym_BSLASHparencite] = ACTIONS(12255), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHParencite] = ACTIONS(12255), + [anon_sym_BSLASHfootcite] = ACTIONS(12255), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12255), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12255), + [anon_sym_BSLASHtextcite] = ACTIONS(12255), + [anon_sym_BSLASHTextcite] = ACTIONS(12255), + [anon_sym_BSLASHsmartcite] = ACTIONS(12255), + [anon_sym_BSLASHSmartcite] = ACTIONS(12255), + [anon_sym_BSLASHsupercite] = ACTIONS(12255), + [anon_sym_BSLASHautocite] = ACTIONS(12255), + [anon_sym_BSLASHAutocite] = ACTIONS(12255), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHvolcite] = ACTIONS(12255), + [anon_sym_BSLASHVolcite] = ACTIONS(12255), + [anon_sym_BSLASHpvolcite] = ACTIONS(12255), + [anon_sym_BSLASHPvolcite] = ACTIONS(12255), + [anon_sym_BSLASHfvolcite] = ACTIONS(12255), + [anon_sym_BSLASHftvolcite] = ACTIONS(12255), + [anon_sym_BSLASHsvolcite] = ACTIONS(12255), + [anon_sym_BSLASHSvolcite] = ACTIONS(12255), + [anon_sym_BSLASHtvolcite] = ACTIONS(12255), + [anon_sym_BSLASHTvolcite] = ACTIONS(12255), + [anon_sym_BSLASHavolcite] = ACTIONS(12255), + [anon_sym_BSLASHAvolcite] = ACTIONS(12255), + [anon_sym_BSLASHnotecite] = ACTIONS(12255), + [anon_sym_BSLASHpnotecite] = ACTIONS(12255), + [anon_sym_BSLASHPnotecite] = ACTIONS(12255), + [anon_sym_BSLASHfnotecite] = ACTIONS(12255), + [anon_sym_BSLASHusepackage] = ACTIONS(12255), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12255), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12255), + [anon_sym_BSLASHinclude] = ACTIONS(12255), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12255), + [anon_sym_BSLASHinput] = ACTIONS(12255), + [anon_sym_BSLASHsubfile] = ACTIONS(12255), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12255), + [anon_sym_BSLASHbibliography] = ACTIONS(12255), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12255), + [anon_sym_BSLASHincludesvg] = ACTIONS(12255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12255), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12255), + [anon_sym_BSLASHimport] = ACTIONS(12255), + [anon_sym_BSLASHsubimport] = ACTIONS(12255), + [anon_sym_BSLASHinputfrom] = ACTIONS(12255), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12255), + [anon_sym_BSLASHincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHlabel] = ACTIONS(12255), + [anon_sym_BSLASHref] = ACTIONS(12255), + [anon_sym_BSLASHvref] = ACTIONS(12255), + [anon_sym_BSLASHVref] = ACTIONS(12255), + [anon_sym_BSLASHautoref] = ACTIONS(12255), + [anon_sym_BSLASHpageref] = ACTIONS(12255), + [anon_sym_BSLASHcref] = ACTIONS(12255), + [anon_sym_BSLASHCref] = ACTIONS(12255), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnameCref] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHlabelcref] = ACTIONS(12255), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12255), + [anon_sym_BSLASHeqref] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange] = ACTIONS(12255), + [anon_sym_BSLASHCrefrange] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewlabel] = ACTIONS(12255), + [anon_sym_BSLASHnewcommand] = ACTIONS(12255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12255), + [anon_sym_BSLASHgls] = ACTIONS(12255), + [anon_sym_BSLASHGls] = ACTIONS(12255), + [anon_sym_BSLASHGLS] = ACTIONS(12255), + [anon_sym_BSLASHglspl] = ACTIONS(12255), + [anon_sym_BSLASHGlspl] = ACTIONS(12255), + [anon_sym_BSLASHGLSpl] = ACTIONS(12255), + [anon_sym_BSLASHglsdisp] = ACTIONS(12255), + [anon_sym_BSLASHglslink] = ACTIONS(12255), + [anon_sym_BSLASHglstext] = ACTIONS(12255), + [anon_sym_BSLASHGlstext] = ACTIONS(12255), + [anon_sym_BSLASHGLStext] = ACTIONS(12255), + [anon_sym_BSLASHglsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12255), + [anon_sym_BSLASHglsplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSplural] = ACTIONS(12255), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHglsname] = ACTIONS(12255), + [anon_sym_BSLASHGlsname] = ACTIONS(12255), + [anon_sym_BSLASHGLSname] = ACTIONS(12255), + [anon_sym_BSLASHglssymbol] = ACTIONS(12255), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12255), + [anon_sym_BSLASHglsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12255), + [anon_sym_BSLASHglsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12255), + [anon_sym_BSLASHglsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12255), + [anon_sym_BSLASHglsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12255), + [anon_sym_BSLASHglsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12255), + [anon_sym_BSLASHnewacronym] = ACTIONS(12255), + [anon_sym_BSLASHacrshort] = ACTIONS(12255), + [anon_sym_BSLASHAcrshort] = ACTIONS(12255), + [anon_sym_BSLASHACRshort] = ACTIONS(12255), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12255), + [anon_sym_BSLASHacrlong] = ACTIONS(12255), + [anon_sym_BSLASHAcrlong] = ACTIONS(12255), + [anon_sym_BSLASHACRlong] = ACTIONS(12255), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12255), + [anon_sym_BSLASHacrfull] = ACTIONS(12255), + [anon_sym_BSLASHAcrfull] = ACTIONS(12255), + [anon_sym_BSLASHACRfull] = ACTIONS(12255), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12255), + [anon_sym_BSLASHacs] = ACTIONS(12255), + [anon_sym_BSLASHAcs] = ACTIONS(12255), + [anon_sym_BSLASHacsp] = ACTIONS(12255), + [anon_sym_BSLASHAcsp] = ACTIONS(12255), + [anon_sym_BSLASHacl] = ACTIONS(12255), + [anon_sym_BSLASHAcl] = ACTIONS(12255), + [anon_sym_BSLASHaclp] = ACTIONS(12255), + [anon_sym_BSLASHAclp] = ACTIONS(12255), + [anon_sym_BSLASHacf] = ACTIONS(12255), + [anon_sym_BSLASHAcf] = ACTIONS(12255), + [anon_sym_BSLASHacfp] = ACTIONS(12255), + [anon_sym_BSLASHAcfp] = ACTIONS(12255), + [anon_sym_BSLASHac] = ACTIONS(12255), + [anon_sym_BSLASHAc] = ACTIONS(12255), + [anon_sym_BSLASHacp] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12255), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12255), + [anon_sym_BSLASHcolor] = ACTIONS(12255), + [anon_sym_BSLASHcolorbox] = ACTIONS(12255), + [anon_sym_BSLASHtextcolor] = ACTIONS(12255), + [anon_sym_BSLASHpagecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12255), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12255), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12255), + }, + [1245] = { + [sym_generic_command_name] = ACTIONS(12559), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12559), + [aux_sym_subsection_token1] = ACTIONS(12559), + [aux_sym_subsubsection_token1] = ACTIONS(12559), + [aux_sym_paragraph_token1] = ACTIONS(12559), + [aux_sym_subparagraph_token1] = ACTIONS(12559), + [anon_sym_BSLASHitem] = ACTIONS(12559), + [anon_sym_LBRACK] = ACTIONS(12557), + [anon_sym_RBRACK] = ACTIONS(12557), + [anon_sym_LBRACE] = ACTIONS(12557), + [anon_sym_RBRACE] = ACTIONS(12557), + [anon_sym_LPAREN] = ACTIONS(12557), + [anon_sym_COMMA] = ACTIONS(12557), + [anon_sym_EQ] = ACTIONS(12557), + [sym_word] = ACTIONS(12557), + [sym_param] = ACTIONS(12557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12557), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12557), + [anon_sym_DOLLAR] = ACTIONS(12559), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12557), + [anon_sym_BSLASHbegin] = ACTIONS(12559), + [anon_sym_BSLASHcaption] = ACTIONS(12559), + [anon_sym_BSLASHcite] = ACTIONS(12559), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCite] = ACTIONS(12559), + [anon_sym_BSLASHnocite] = ACTIONS(12559), + [anon_sym_BSLASHcitet] = ACTIONS(12559), + [anon_sym_BSLASHcitep] = ACTIONS(12559), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteauthor] = ACTIONS(12559), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12559), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitetitle] = ACTIONS(12559), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteyear] = ACTIONS(12559), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitedate] = ACTIONS(12559), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteurl] = ACTIONS(12559), + [anon_sym_BSLASHfullcite] = ACTIONS(12559), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12559), + [anon_sym_BSLASHcitealt] = ACTIONS(12559), + [anon_sym_BSLASHcitealp] = ACTIONS(12559), + [anon_sym_BSLASHcitetext] = ACTIONS(12559), + [anon_sym_BSLASHparencite] = ACTIONS(12559), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHParencite] = ACTIONS(12559), + [anon_sym_BSLASHfootcite] = ACTIONS(12559), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12559), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12559), + [anon_sym_BSLASHtextcite] = ACTIONS(12559), + [anon_sym_BSLASHTextcite] = ACTIONS(12559), + [anon_sym_BSLASHsmartcite] = ACTIONS(12559), + [anon_sym_BSLASHSmartcite] = ACTIONS(12559), + [anon_sym_BSLASHsupercite] = ACTIONS(12559), + [anon_sym_BSLASHautocite] = ACTIONS(12559), + [anon_sym_BSLASHAutocite] = ACTIONS(12559), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHvolcite] = ACTIONS(12559), + [anon_sym_BSLASHVolcite] = ACTIONS(12559), + [anon_sym_BSLASHpvolcite] = ACTIONS(12559), + [anon_sym_BSLASHPvolcite] = ACTIONS(12559), + [anon_sym_BSLASHfvolcite] = ACTIONS(12559), + [anon_sym_BSLASHftvolcite] = ACTIONS(12559), + [anon_sym_BSLASHsvolcite] = ACTIONS(12559), + [anon_sym_BSLASHSvolcite] = ACTIONS(12559), + [anon_sym_BSLASHtvolcite] = ACTIONS(12559), + [anon_sym_BSLASHTvolcite] = ACTIONS(12559), + [anon_sym_BSLASHavolcite] = ACTIONS(12559), + [anon_sym_BSLASHAvolcite] = ACTIONS(12559), + [anon_sym_BSLASHnotecite] = ACTIONS(12559), + [anon_sym_BSLASHpnotecite] = ACTIONS(12559), + [anon_sym_BSLASHPnotecite] = ACTIONS(12559), + [anon_sym_BSLASHfnotecite] = ACTIONS(12559), + [anon_sym_BSLASHusepackage] = ACTIONS(12559), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12559), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12559), + [anon_sym_BSLASHinclude] = ACTIONS(12559), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12559), + [anon_sym_BSLASHinput] = ACTIONS(12559), + [anon_sym_BSLASHsubfile] = ACTIONS(12559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12559), + [anon_sym_BSLASHbibliography] = ACTIONS(12559), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12559), + [anon_sym_BSLASHincludesvg] = ACTIONS(12559), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12559), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12559), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12559), + [anon_sym_BSLASHimport] = ACTIONS(12559), + [anon_sym_BSLASHsubimport] = ACTIONS(12559), + [anon_sym_BSLASHinputfrom] = ACTIONS(12559), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12559), + [anon_sym_BSLASHincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHlabel] = ACTIONS(12559), + [anon_sym_BSLASHref] = ACTIONS(12559), + [anon_sym_BSLASHvref] = ACTIONS(12559), + [anon_sym_BSLASHVref] = ACTIONS(12559), + [anon_sym_BSLASHautoref] = ACTIONS(12559), + [anon_sym_BSLASHpageref] = ACTIONS(12559), + [anon_sym_BSLASHcref] = ACTIONS(12559), + [anon_sym_BSLASHCref] = ACTIONS(12559), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnameCref] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHlabelcref] = ACTIONS(12559), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12559), + [anon_sym_BSLASHeqref] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange] = ACTIONS(12559), + [anon_sym_BSLASHCrefrange] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewlabel] = ACTIONS(12559), + [anon_sym_BSLASHnewcommand] = ACTIONS(12559), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12559), + [anon_sym_BSLASHgls] = ACTIONS(12559), + [anon_sym_BSLASHGls] = ACTIONS(12559), + [anon_sym_BSLASHGLS] = ACTIONS(12559), + [anon_sym_BSLASHglspl] = ACTIONS(12559), + [anon_sym_BSLASHGlspl] = ACTIONS(12559), + [anon_sym_BSLASHGLSpl] = ACTIONS(12559), + [anon_sym_BSLASHglsdisp] = ACTIONS(12559), + [anon_sym_BSLASHglslink] = ACTIONS(12559), + [anon_sym_BSLASHglstext] = ACTIONS(12559), + [anon_sym_BSLASHGlstext] = ACTIONS(12559), + [anon_sym_BSLASHGLStext] = ACTIONS(12559), + [anon_sym_BSLASHglsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12559), + [anon_sym_BSLASHglsplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSplural] = ACTIONS(12559), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHglsname] = ACTIONS(12559), + [anon_sym_BSLASHGlsname] = ACTIONS(12559), + [anon_sym_BSLASHGLSname] = ACTIONS(12559), + [anon_sym_BSLASHglssymbol] = ACTIONS(12559), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12559), + [anon_sym_BSLASHglsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12559), + [anon_sym_BSLASHglsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12559), + [anon_sym_BSLASHglsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12559), + [anon_sym_BSLASHglsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12559), + [anon_sym_BSLASHglsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12559), + [anon_sym_BSLASHnewacronym] = ACTIONS(12559), + [anon_sym_BSLASHacrshort] = ACTIONS(12559), + [anon_sym_BSLASHAcrshort] = ACTIONS(12559), + [anon_sym_BSLASHACRshort] = ACTIONS(12559), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12559), + [anon_sym_BSLASHacrlong] = ACTIONS(12559), + [anon_sym_BSLASHAcrlong] = ACTIONS(12559), + [anon_sym_BSLASHACRlong] = ACTIONS(12559), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12559), + [anon_sym_BSLASHacrfull] = ACTIONS(12559), + [anon_sym_BSLASHAcrfull] = ACTIONS(12559), + [anon_sym_BSLASHACRfull] = ACTIONS(12559), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12559), + [anon_sym_BSLASHacs] = ACTIONS(12559), + [anon_sym_BSLASHAcs] = ACTIONS(12559), + [anon_sym_BSLASHacsp] = ACTIONS(12559), + [anon_sym_BSLASHAcsp] = ACTIONS(12559), + [anon_sym_BSLASHacl] = ACTIONS(12559), + [anon_sym_BSLASHAcl] = ACTIONS(12559), + [anon_sym_BSLASHaclp] = ACTIONS(12559), + [anon_sym_BSLASHAclp] = ACTIONS(12559), + [anon_sym_BSLASHacf] = ACTIONS(12559), + [anon_sym_BSLASHAcf] = ACTIONS(12559), + [anon_sym_BSLASHacfp] = ACTIONS(12559), + [anon_sym_BSLASHAcfp] = ACTIONS(12559), + [anon_sym_BSLASHac] = ACTIONS(12559), + [anon_sym_BSLASHAc] = ACTIONS(12559), + [anon_sym_BSLASHacp] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12559), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12559), + [anon_sym_BSLASHcolor] = ACTIONS(12559), + [anon_sym_BSLASHcolorbox] = ACTIONS(12559), + [anon_sym_BSLASHtextcolor] = ACTIONS(12559), + [anon_sym_BSLASHpagecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12559), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12559), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12559), + }, + [1246] = { + [sym_generic_command_name] = ACTIONS(12555), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12555), + [aux_sym_subsection_token1] = ACTIONS(12555), + [aux_sym_subsubsection_token1] = ACTIONS(12555), + [aux_sym_paragraph_token1] = ACTIONS(12555), + [aux_sym_subparagraph_token1] = ACTIONS(12555), + [anon_sym_BSLASHitem] = ACTIONS(12555), + [anon_sym_LBRACK] = ACTIONS(12553), + [anon_sym_RBRACK] = ACTIONS(12553), + [anon_sym_LBRACE] = ACTIONS(12553), + [anon_sym_RBRACE] = ACTIONS(12553), + [anon_sym_LPAREN] = ACTIONS(12553), + [anon_sym_COMMA] = ACTIONS(12553), + [anon_sym_EQ] = ACTIONS(12553), + [sym_word] = ACTIONS(12553), + [sym_param] = ACTIONS(12553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12553), + [anon_sym_DOLLAR] = ACTIONS(12555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12553), + [anon_sym_BSLASHbegin] = ACTIONS(12555), + [anon_sym_BSLASHcaption] = ACTIONS(12555), + [anon_sym_BSLASHcite] = ACTIONS(12555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCite] = ACTIONS(12555), + [anon_sym_BSLASHnocite] = ACTIONS(12555), + [anon_sym_BSLASHcitet] = ACTIONS(12555), + [anon_sym_BSLASHcitep] = ACTIONS(12555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteauthor] = ACTIONS(12555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitetitle] = ACTIONS(12555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteyear] = ACTIONS(12555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitedate] = ACTIONS(12555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteurl] = ACTIONS(12555), + [anon_sym_BSLASHfullcite] = ACTIONS(12555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12555), + [anon_sym_BSLASHcitealt] = ACTIONS(12555), + [anon_sym_BSLASHcitealp] = ACTIONS(12555), + [anon_sym_BSLASHcitetext] = ACTIONS(12555), + [anon_sym_BSLASHparencite] = ACTIONS(12555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHParencite] = ACTIONS(12555), + [anon_sym_BSLASHfootcite] = ACTIONS(12555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12555), + [anon_sym_BSLASHtextcite] = ACTIONS(12555), + [anon_sym_BSLASHTextcite] = ACTIONS(12555), + [anon_sym_BSLASHsmartcite] = ACTIONS(12555), + [anon_sym_BSLASHSmartcite] = ACTIONS(12555), + [anon_sym_BSLASHsupercite] = ACTIONS(12555), + [anon_sym_BSLASHautocite] = ACTIONS(12555), + [anon_sym_BSLASHAutocite] = ACTIONS(12555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHvolcite] = ACTIONS(12555), + [anon_sym_BSLASHVolcite] = ACTIONS(12555), + [anon_sym_BSLASHpvolcite] = ACTIONS(12555), + [anon_sym_BSLASHPvolcite] = ACTIONS(12555), + [anon_sym_BSLASHfvolcite] = ACTIONS(12555), + [anon_sym_BSLASHftvolcite] = ACTIONS(12555), + [anon_sym_BSLASHsvolcite] = ACTIONS(12555), + [anon_sym_BSLASHSvolcite] = ACTIONS(12555), + [anon_sym_BSLASHtvolcite] = ACTIONS(12555), + [anon_sym_BSLASHTvolcite] = ACTIONS(12555), + [anon_sym_BSLASHavolcite] = ACTIONS(12555), + [anon_sym_BSLASHAvolcite] = ACTIONS(12555), + [anon_sym_BSLASHnotecite] = ACTIONS(12555), + [anon_sym_BSLASHpnotecite] = ACTIONS(12555), + [anon_sym_BSLASHPnotecite] = ACTIONS(12555), + [anon_sym_BSLASHfnotecite] = ACTIONS(12555), + [anon_sym_BSLASHusepackage] = ACTIONS(12555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12555), + [anon_sym_BSLASHinclude] = ACTIONS(12555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12555), + [anon_sym_BSLASHinput] = ACTIONS(12555), + [anon_sym_BSLASHsubfile] = ACTIONS(12555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12555), + [anon_sym_BSLASHbibliography] = ACTIONS(12555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12555), + [anon_sym_BSLASHincludesvg] = ACTIONS(12555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12555), + [anon_sym_BSLASHimport] = ACTIONS(12555), + [anon_sym_BSLASHsubimport] = ACTIONS(12555), + [anon_sym_BSLASHinputfrom] = ACTIONS(12555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12555), + [anon_sym_BSLASHincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHlabel] = ACTIONS(12555), + [anon_sym_BSLASHref] = ACTIONS(12555), + [anon_sym_BSLASHvref] = ACTIONS(12555), + [anon_sym_BSLASHVref] = ACTIONS(12555), + [anon_sym_BSLASHautoref] = ACTIONS(12555), + [anon_sym_BSLASHpageref] = ACTIONS(12555), + [anon_sym_BSLASHcref] = ACTIONS(12555), + [anon_sym_BSLASHCref] = ACTIONS(12555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnameCref] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHlabelcref] = ACTIONS(12555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12555), + [anon_sym_BSLASHeqref] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange] = ACTIONS(12555), + [anon_sym_BSLASHCrefrange] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewlabel] = ACTIONS(12555), + [anon_sym_BSLASHnewcommand] = ACTIONS(12555), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12555), + [anon_sym_BSLASHgls] = ACTIONS(12555), + [anon_sym_BSLASHGls] = ACTIONS(12555), + [anon_sym_BSLASHGLS] = ACTIONS(12555), + [anon_sym_BSLASHglspl] = ACTIONS(12555), + [anon_sym_BSLASHGlspl] = ACTIONS(12555), + [anon_sym_BSLASHGLSpl] = ACTIONS(12555), + [anon_sym_BSLASHglsdisp] = ACTIONS(12555), + [anon_sym_BSLASHglslink] = ACTIONS(12555), + [anon_sym_BSLASHglstext] = ACTIONS(12555), + [anon_sym_BSLASHGlstext] = ACTIONS(12555), + [anon_sym_BSLASHGLStext] = ACTIONS(12555), + [anon_sym_BSLASHglsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12555), + [anon_sym_BSLASHglsplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSplural] = ACTIONS(12555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHglsname] = ACTIONS(12555), + [anon_sym_BSLASHGlsname] = ACTIONS(12555), + [anon_sym_BSLASHGLSname] = ACTIONS(12555), + [anon_sym_BSLASHglssymbol] = ACTIONS(12555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12555), + [anon_sym_BSLASHglsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12555), + [anon_sym_BSLASHglsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12555), + [anon_sym_BSLASHglsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12555), + [anon_sym_BSLASHglsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12555), + [anon_sym_BSLASHglsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12555), + [anon_sym_BSLASHnewacronym] = ACTIONS(12555), + [anon_sym_BSLASHacrshort] = ACTIONS(12555), + [anon_sym_BSLASHAcrshort] = ACTIONS(12555), + [anon_sym_BSLASHACRshort] = ACTIONS(12555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12555), + [anon_sym_BSLASHacrlong] = ACTIONS(12555), + [anon_sym_BSLASHAcrlong] = ACTIONS(12555), + [anon_sym_BSLASHACRlong] = ACTIONS(12555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12555), + [anon_sym_BSLASHacrfull] = ACTIONS(12555), + [anon_sym_BSLASHAcrfull] = ACTIONS(12555), + [anon_sym_BSLASHACRfull] = ACTIONS(12555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12555), + [anon_sym_BSLASHacs] = ACTIONS(12555), + [anon_sym_BSLASHAcs] = ACTIONS(12555), + [anon_sym_BSLASHacsp] = ACTIONS(12555), + [anon_sym_BSLASHAcsp] = ACTIONS(12555), + [anon_sym_BSLASHacl] = ACTIONS(12555), + [anon_sym_BSLASHAcl] = ACTIONS(12555), + [anon_sym_BSLASHaclp] = ACTIONS(12555), + [anon_sym_BSLASHAclp] = ACTIONS(12555), + [anon_sym_BSLASHacf] = ACTIONS(12555), + [anon_sym_BSLASHAcf] = ACTIONS(12555), + [anon_sym_BSLASHacfp] = ACTIONS(12555), + [anon_sym_BSLASHAcfp] = ACTIONS(12555), + [anon_sym_BSLASHac] = ACTIONS(12555), + [anon_sym_BSLASHAc] = ACTIONS(12555), + [anon_sym_BSLASHacp] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12555), + [anon_sym_BSLASHcolor] = ACTIONS(12555), + [anon_sym_BSLASHcolorbox] = ACTIONS(12555), + [anon_sym_BSLASHtextcolor] = ACTIONS(12555), + [anon_sym_BSLASHpagecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12555), + }, + [1247] = { + [sym_brace_group] = STATE(3122), + [sym_generic_command_name] = ACTIONS(12088), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12088), + [aux_sym_subsubsection_token1] = ACTIONS(12088), + [aux_sym_paragraph_token1] = ACTIONS(12088), + [aux_sym_subparagraph_token1] = ACTIONS(12088), + [anon_sym_BSLASHitem] = ACTIONS(12088), + [anon_sym_LBRACK] = ACTIONS(12086), + [anon_sym_RBRACK] = ACTIONS(12086), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12086), + [anon_sym_LPAREN] = ACTIONS(12086), + [anon_sym_COMMA] = ACTIONS(12086), + [anon_sym_EQ] = ACTIONS(12086), + [sym_word] = ACTIONS(12086), + [sym_param] = ACTIONS(12086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12086), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12086), + [anon_sym_DOLLAR] = ACTIONS(12088), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12086), + [anon_sym_BSLASHbegin] = ACTIONS(12088), + [anon_sym_BSLASHcaption] = ACTIONS(12088), + [anon_sym_BSLASHcite] = ACTIONS(12088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCite] = ACTIONS(12088), + [anon_sym_BSLASHnocite] = ACTIONS(12088), + [anon_sym_BSLASHcitet] = ACTIONS(12088), + [anon_sym_BSLASHcitep] = ACTIONS(12088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteauthor] = ACTIONS(12088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitetitle] = ACTIONS(12088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteyear] = ACTIONS(12088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitedate] = ACTIONS(12088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteurl] = ACTIONS(12088), + [anon_sym_BSLASHfullcite] = ACTIONS(12088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12088), + [anon_sym_BSLASHcitealt] = ACTIONS(12088), + [anon_sym_BSLASHcitealp] = ACTIONS(12088), + [anon_sym_BSLASHcitetext] = ACTIONS(12088), + [anon_sym_BSLASHparencite] = ACTIONS(12088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHParencite] = ACTIONS(12088), + [anon_sym_BSLASHfootcite] = ACTIONS(12088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12088), + [anon_sym_BSLASHtextcite] = ACTIONS(12088), + [anon_sym_BSLASHTextcite] = ACTIONS(12088), + [anon_sym_BSLASHsmartcite] = ACTIONS(12088), + [anon_sym_BSLASHSmartcite] = ACTIONS(12088), + [anon_sym_BSLASHsupercite] = ACTIONS(12088), + [anon_sym_BSLASHautocite] = ACTIONS(12088), + [anon_sym_BSLASHAutocite] = ACTIONS(12088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHvolcite] = ACTIONS(12088), + [anon_sym_BSLASHVolcite] = ACTIONS(12088), + [anon_sym_BSLASHpvolcite] = ACTIONS(12088), + [anon_sym_BSLASHPvolcite] = ACTIONS(12088), + [anon_sym_BSLASHfvolcite] = ACTIONS(12088), + [anon_sym_BSLASHftvolcite] = ACTIONS(12088), + [anon_sym_BSLASHsvolcite] = ACTIONS(12088), + [anon_sym_BSLASHSvolcite] = ACTIONS(12088), + [anon_sym_BSLASHtvolcite] = ACTIONS(12088), + [anon_sym_BSLASHTvolcite] = ACTIONS(12088), + [anon_sym_BSLASHavolcite] = ACTIONS(12088), + [anon_sym_BSLASHAvolcite] = ACTIONS(12088), + [anon_sym_BSLASHnotecite] = ACTIONS(12088), + [anon_sym_BSLASHpnotecite] = ACTIONS(12088), + [anon_sym_BSLASHPnotecite] = ACTIONS(12088), + [anon_sym_BSLASHfnotecite] = ACTIONS(12088), + [anon_sym_BSLASHusepackage] = ACTIONS(12088), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12088), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12088), + [anon_sym_BSLASHinclude] = ACTIONS(12088), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12088), + [anon_sym_BSLASHinput] = ACTIONS(12088), + [anon_sym_BSLASHsubfile] = ACTIONS(12088), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12088), + [anon_sym_BSLASHbibliography] = ACTIONS(12088), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12088), + [anon_sym_BSLASHincludesvg] = ACTIONS(12088), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12088), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12088), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12088), + [anon_sym_BSLASHimport] = ACTIONS(12088), + [anon_sym_BSLASHsubimport] = ACTIONS(12088), + [anon_sym_BSLASHinputfrom] = ACTIONS(12088), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12088), + [anon_sym_BSLASHincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHlabel] = ACTIONS(12088), + [anon_sym_BSLASHref] = ACTIONS(12088), + [anon_sym_BSLASHvref] = ACTIONS(12088), + [anon_sym_BSLASHVref] = ACTIONS(12088), + [anon_sym_BSLASHautoref] = ACTIONS(12088), + [anon_sym_BSLASHpageref] = ACTIONS(12088), + [anon_sym_BSLASHcref] = ACTIONS(12088), + [anon_sym_BSLASHCref] = ACTIONS(12088), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnameCref] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHlabelcref] = ACTIONS(12088), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12088), + [anon_sym_BSLASHeqref] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange] = ACTIONS(12088), + [anon_sym_BSLASHCrefrange] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewlabel] = ACTIONS(12088), + [anon_sym_BSLASHnewcommand] = ACTIONS(12088), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12088), + [anon_sym_BSLASHgls] = ACTIONS(12088), + [anon_sym_BSLASHGls] = ACTIONS(12088), + [anon_sym_BSLASHGLS] = ACTIONS(12088), + [anon_sym_BSLASHglspl] = ACTIONS(12088), + [anon_sym_BSLASHGlspl] = ACTIONS(12088), + [anon_sym_BSLASHGLSpl] = ACTIONS(12088), + [anon_sym_BSLASHglsdisp] = ACTIONS(12088), + [anon_sym_BSLASHglslink] = ACTIONS(12088), + [anon_sym_BSLASHglstext] = ACTIONS(12088), + [anon_sym_BSLASHGlstext] = ACTIONS(12088), + [anon_sym_BSLASHGLStext] = ACTIONS(12088), + [anon_sym_BSLASHglsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12088), + [anon_sym_BSLASHglsplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSplural] = ACTIONS(12088), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHglsname] = ACTIONS(12088), + [anon_sym_BSLASHGlsname] = ACTIONS(12088), + [anon_sym_BSLASHGLSname] = ACTIONS(12088), + [anon_sym_BSLASHglssymbol] = ACTIONS(12088), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12088), + [anon_sym_BSLASHglsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12088), + [anon_sym_BSLASHglsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12088), + [anon_sym_BSLASHglsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12088), + [anon_sym_BSLASHglsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12088), + [anon_sym_BSLASHglsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12088), + [anon_sym_BSLASHnewacronym] = ACTIONS(12088), + [anon_sym_BSLASHacrshort] = ACTIONS(12088), + [anon_sym_BSLASHAcrshort] = ACTIONS(12088), + [anon_sym_BSLASHACRshort] = ACTIONS(12088), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12088), + [anon_sym_BSLASHacrlong] = ACTIONS(12088), + [anon_sym_BSLASHAcrlong] = ACTIONS(12088), + [anon_sym_BSLASHACRlong] = ACTIONS(12088), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12088), + [anon_sym_BSLASHacrfull] = ACTIONS(12088), + [anon_sym_BSLASHAcrfull] = ACTIONS(12088), + [anon_sym_BSLASHACRfull] = ACTIONS(12088), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12088), + [anon_sym_BSLASHacs] = ACTIONS(12088), + [anon_sym_BSLASHAcs] = ACTIONS(12088), + [anon_sym_BSLASHacsp] = ACTIONS(12088), + [anon_sym_BSLASHAcsp] = ACTIONS(12088), + [anon_sym_BSLASHacl] = ACTIONS(12088), + [anon_sym_BSLASHAcl] = ACTIONS(12088), + [anon_sym_BSLASHaclp] = ACTIONS(12088), + [anon_sym_BSLASHAclp] = ACTIONS(12088), + [anon_sym_BSLASHacf] = ACTIONS(12088), + [anon_sym_BSLASHAcf] = ACTIONS(12088), + [anon_sym_BSLASHacfp] = ACTIONS(12088), + [anon_sym_BSLASHAcfp] = ACTIONS(12088), + [anon_sym_BSLASHac] = ACTIONS(12088), + [anon_sym_BSLASHAc] = ACTIONS(12088), + [anon_sym_BSLASHacp] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12088), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12088), + [anon_sym_BSLASHcolor] = ACTIONS(12088), + [anon_sym_BSLASHcolorbox] = ACTIONS(12088), + [anon_sym_BSLASHtextcolor] = ACTIONS(12088), + [anon_sym_BSLASHpagecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12088), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12088), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12088), + }, + [1248] = { + [sym_generic_command_name] = ACTIONS(12551), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12551), + [aux_sym_subsection_token1] = ACTIONS(12551), + [aux_sym_subsubsection_token1] = ACTIONS(12551), + [aux_sym_paragraph_token1] = ACTIONS(12551), + [aux_sym_subparagraph_token1] = ACTIONS(12551), + [anon_sym_BSLASHitem] = ACTIONS(12551), + [anon_sym_LBRACK] = ACTIONS(12549), + [anon_sym_RBRACK] = ACTIONS(12549), + [anon_sym_LBRACE] = ACTIONS(12549), + [anon_sym_RBRACE] = ACTIONS(12549), + [anon_sym_LPAREN] = ACTIONS(12549), + [anon_sym_COMMA] = ACTIONS(12549), + [anon_sym_EQ] = ACTIONS(12549), + [sym_word] = ACTIONS(12549), + [sym_param] = ACTIONS(12549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12549), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12549), + [anon_sym_DOLLAR] = ACTIONS(12551), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12549), + [anon_sym_BSLASHbegin] = ACTIONS(12551), + [anon_sym_BSLASHcaption] = ACTIONS(12551), + [anon_sym_BSLASHcite] = ACTIONS(12551), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCite] = ACTIONS(12551), + [anon_sym_BSLASHnocite] = ACTIONS(12551), + [anon_sym_BSLASHcitet] = ACTIONS(12551), + [anon_sym_BSLASHcitep] = ACTIONS(12551), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteauthor] = ACTIONS(12551), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12551), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitetitle] = ACTIONS(12551), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteyear] = ACTIONS(12551), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitedate] = ACTIONS(12551), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteurl] = ACTIONS(12551), + [anon_sym_BSLASHfullcite] = ACTIONS(12551), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12551), + [anon_sym_BSLASHcitealt] = ACTIONS(12551), + [anon_sym_BSLASHcitealp] = ACTIONS(12551), + [anon_sym_BSLASHcitetext] = ACTIONS(12551), + [anon_sym_BSLASHparencite] = ACTIONS(12551), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHParencite] = ACTIONS(12551), + [anon_sym_BSLASHfootcite] = ACTIONS(12551), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12551), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12551), + [anon_sym_BSLASHtextcite] = ACTIONS(12551), + [anon_sym_BSLASHTextcite] = ACTIONS(12551), + [anon_sym_BSLASHsmartcite] = ACTIONS(12551), + [anon_sym_BSLASHSmartcite] = ACTIONS(12551), + [anon_sym_BSLASHsupercite] = ACTIONS(12551), + [anon_sym_BSLASHautocite] = ACTIONS(12551), + [anon_sym_BSLASHAutocite] = ACTIONS(12551), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHvolcite] = ACTIONS(12551), + [anon_sym_BSLASHVolcite] = ACTIONS(12551), + [anon_sym_BSLASHpvolcite] = ACTIONS(12551), + [anon_sym_BSLASHPvolcite] = ACTIONS(12551), + [anon_sym_BSLASHfvolcite] = ACTIONS(12551), + [anon_sym_BSLASHftvolcite] = ACTIONS(12551), + [anon_sym_BSLASHsvolcite] = ACTIONS(12551), + [anon_sym_BSLASHSvolcite] = ACTIONS(12551), + [anon_sym_BSLASHtvolcite] = ACTIONS(12551), + [anon_sym_BSLASHTvolcite] = ACTIONS(12551), + [anon_sym_BSLASHavolcite] = ACTIONS(12551), + [anon_sym_BSLASHAvolcite] = ACTIONS(12551), + [anon_sym_BSLASHnotecite] = ACTIONS(12551), + [anon_sym_BSLASHpnotecite] = ACTIONS(12551), + [anon_sym_BSLASHPnotecite] = ACTIONS(12551), + [anon_sym_BSLASHfnotecite] = ACTIONS(12551), + [anon_sym_BSLASHusepackage] = ACTIONS(12551), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12551), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12551), + [anon_sym_BSLASHinclude] = ACTIONS(12551), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12551), + [anon_sym_BSLASHinput] = ACTIONS(12551), + [anon_sym_BSLASHsubfile] = ACTIONS(12551), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12551), + [anon_sym_BSLASHbibliography] = ACTIONS(12551), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12551), + [anon_sym_BSLASHincludesvg] = ACTIONS(12551), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12551), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12551), + [anon_sym_BSLASHimport] = ACTIONS(12551), + [anon_sym_BSLASHsubimport] = ACTIONS(12551), + [anon_sym_BSLASHinputfrom] = ACTIONS(12551), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12551), + [anon_sym_BSLASHincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHlabel] = ACTIONS(12551), + [anon_sym_BSLASHref] = ACTIONS(12551), + [anon_sym_BSLASHvref] = ACTIONS(12551), + [anon_sym_BSLASHVref] = ACTIONS(12551), + [anon_sym_BSLASHautoref] = ACTIONS(12551), + [anon_sym_BSLASHpageref] = ACTIONS(12551), + [anon_sym_BSLASHcref] = ACTIONS(12551), + [anon_sym_BSLASHCref] = ACTIONS(12551), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnameCref] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHlabelcref] = ACTIONS(12551), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12551), + [anon_sym_BSLASHeqref] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange] = ACTIONS(12551), + [anon_sym_BSLASHCrefrange] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewlabel] = ACTIONS(12551), + [anon_sym_BSLASHnewcommand] = ACTIONS(12551), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12551), + [anon_sym_BSLASHgls] = ACTIONS(12551), + [anon_sym_BSLASHGls] = ACTIONS(12551), + [anon_sym_BSLASHGLS] = ACTIONS(12551), + [anon_sym_BSLASHglspl] = ACTIONS(12551), + [anon_sym_BSLASHGlspl] = ACTIONS(12551), + [anon_sym_BSLASHGLSpl] = ACTIONS(12551), + [anon_sym_BSLASHglsdisp] = ACTIONS(12551), + [anon_sym_BSLASHglslink] = ACTIONS(12551), + [anon_sym_BSLASHglstext] = ACTIONS(12551), + [anon_sym_BSLASHGlstext] = ACTIONS(12551), + [anon_sym_BSLASHGLStext] = ACTIONS(12551), + [anon_sym_BSLASHglsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12551), + [anon_sym_BSLASHglsplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSplural] = ACTIONS(12551), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHglsname] = ACTIONS(12551), + [anon_sym_BSLASHGlsname] = ACTIONS(12551), + [anon_sym_BSLASHGLSname] = ACTIONS(12551), + [anon_sym_BSLASHglssymbol] = ACTIONS(12551), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12551), + [anon_sym_BSLASHglsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12551), + [anon_sym_BSLASHglsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12551), + [anon_sym_BSLASHglsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12551), + [anon_sym_BSLASHglsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12551), + [anon_sym_BSLASHglsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12551), + [anon_sym_BSLASHnewacronym] = ACTIONS(12551), + [anon_sym_BSLASHacrshort] = ACTIONS(12551), + [anon_sym_BSLASHAcrshort] = ACTIONS(12551), + [anon_sym_BSLASHACRshort] = ACTIONS(12551), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12551), + [anon_sym_BSLASHacrlong] = ACTIONS(12551), + [anon_sym_BSLASHAcrlong] = ACTIONS(12551), + [anon_sym_BSLASHACRlong] = ACTIONS(12551), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12551), + [anon_sym_BSLASHacrfull] = ACTIONS(12551), + [anon_sym_BSLASHAcrfull] = ACTIONS(12551), + [anon_sym_BSLASHACRfull] = ACTIONS(12551), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12551), + [anon_sym_BSLASHacs] = ACTIONS(12551), + [anon_sym_BSLASHAcs] = ACTIONS(12551), + [anon_sym_BSLASHacsp] = ACTIONS(12551), + [anon_sym_BSLASHAcsp] = ACTIONS(12551), + [anon_sym_BSLASHacl] = ACTIONS(12551), + [anon_sym_BSLASHAcl] = ACTIONS(12551), + [anon_sym_BSLASHaclp] = ACTIONS(12551), + [anon_sym_BSLASHAclp] = ACTIONS(12551), + [anon_sym_BSLASHacf] = ACTIONS(12551), + [anon_sym_BSLASHAcf] = ACTIONS(12551), + [anon_sym_BSLASHacfp] = ACTIONS(12551), + [anon_sym_BSLASHAcfp] = ACTIONS(12551), + [anon_sym_BSLASHac] = ACTIONS(12551), + [anon_sym_BSLASHAc] = ACTIONS(12551), + [anon_sym_BSLASHacp] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12551), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12551), + [anon_sym_BSLASHcolor] = ACTIONS(12551), + [anon_sym_BSLASHcolorbox] = ACTIONS(12551), + [anon_sym_BSLASHtextcolor] = ACTIONS(12551), + [anon_sym_BSLASHpagecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12551), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12551), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12551), + }, + [1249] = { + [sym_generic_command_name] = ACTIONS(12231), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12231), + [aux_sym_subsection_token1] = ACTIONS(12231), + [aux_sym_subsubsection_token1] = ACTIONS(12231), + [aux_sym_paragraph_token1] = ACTIONS(12231), + [aux_sym_subparagraph_token1] = ACTIONS(12231), + [anon_sym_BSLASHitem] = ACTIONS(12231), + [anon_sym_LBRACK] = ACTIONS(12229), + [anon_sym_RBRACK] = ACTIONS(12229), + [anon_sym_LBRACE] = ACTIONS(12229), + [anon_sym_RBRACE] = ACTIONS(12229), + [anon_sym_LPAREN] = ACTIONS(12229), + [anon_sym_COMMA] = ACTIONS(12229), + [anon_sym_EQ] = ACTIONS(12229), + [sym_word] = ACTIONS(12229), + [sym_param] = ACTIONS(12229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12229), + [anon_sym_DOLLAR] = ACTIONS(12231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12229), + [anon_sym_BSLASHbegin] = ACTIONS(12231), + [anon_sym_BSLASHcaption] = ACTIONS(12231), + [anon_sym_BSLASHcite] = ACTIONS(12231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCite] = ACTIONS(12231), + [anon_sym_BSLASHnocite] = ACTIONS(12231), + [anon_sym_BSLASHcitet] = ACTIONS(12231), + [anon_sym_BSLASHcitep] = ACTIONS(12231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteauthor] = ACTIONS(12231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitetitle] = ACTIONS(12231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteyear] = ACTIONS(12231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitedate] = ACTIONS(12231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteurl] = ACTIONS(12231), + [anon_sym_BSLASHfullcite] = ACTIONS(12231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12231), + [anon_sym_BSLASHcitealt] = ACTIONS(12231), + [anon_sym_BSLASHcitealp] = ACTIONS(12231), + [anon_sym_BSLASHcitetext] = ACTIONS(12231), + [anon_sym_BSLASHparencite] = ACTIONS(12231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHParencite] = ACTIONS(12231), + [anon_sym_BSLASHfootcite] = ACTIONS(12231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12231), + [anon_sym_BSLASHtextcite] = ACTIONS(12231), + [anon_sym_BSLASHTextcite] = ACTIONS(12231), + [anon_sym_BSLASHsmartcite] = ACTIONS(12231), + [anon_sym_BSLASHSmartcite] = ACTIONS(12231), + [anon_sym_BSLASHsupercite] = ACTIONS(12231), + [anon_sym_BSLASHautocite] = ACTIONS(12231), + [anon_sym_BSLASHAutocite] = ACTIONS(12231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHvolcite] = ACTIONS(12231), + [anon_sym_BSLASHVolcite] = ACTIONS(12231), + [anon_sym_BSLASHpvolcite] = ACTIONS(12231), + [anon_sym_BSLASHPvolcite] = ACTIONS(12231), + [anon_sym_BSLASHfvolcite] = ACTIONS(12231), + [anon_sym_BSLASHftvolcite] = ACTIONS(12231), + [anon_sym_BSLASHsvolcite] = ACTIONS(12231), + [anon_sym_BSLASHSvolcite] = ACTIONS(12231), + [anon_sym_BSLASHtvolcite] = ACTIONS(12231), + [anon_sym_BSLASHTvolcite] = ACTIONS(12231), + [anon_sym_BSLASHavolcite] = ACTIONS(12231), + [anon_sym_BSLASHAvolcite] = ACTIONS(12231), + [anon_sym_BSLASHnotecite] = ACTIONS(12231), + [anon_sym_BSLASHpnotecite] = ACTIONS(12231), + [anon_sym_BSLASHPnotecite] = ACTIONS(12231), + [anon_sym_BSLASHfnotecite] = ACTIONS(12231), + [anon_sym_BSLASHusepackage] = ACTIONS(12231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12231), + [anon_sym_BSLASHinclude] = ACTIONS(12231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12231), + [anon_sym_BSLASHinput] = ACTIONS(12231), + [anon_sym_BSLASHsubfile] = ACTIONS(12231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12231), + [anon_sym_BSLASHbibliography] = ACTIONS(12231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12231), + [anon_sym_BSLASHincludesvg] = ACTIONS(12231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12231), + [anon_sym_BSLASHimport] = ACTIONS(12231), + [anon_sym_BSLASHsubimport] = ACTIONS(12231), + [anon_sym_BSLASHinputfrom] = ACTIONS(12231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12231), + [anon_sym_BSLASHincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHlabel] = ACTIONS(12231), + [anon_sym_BSLASHref] = ACTIONS(12231), + [anon_sym_BSLASHvref] = ACTIONS(12231), + [anon_sym_BSLASHVref] = ACTIONS(12231), + [anon_sym_BSLASHautoref] = ACTIONS(12231), + [anon_sym_BSLASHpageref] = ACTIONS(12231), + [anon_sym_BSLASHcref] = ACTIONS(12231), + [anon_sym_BSLASHCref] = ACTIONS(12231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnameCref] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHlabelcref] = ACTIONS(12231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12231), + [anon_sym_BSLASHeqref] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange] = ACTIONS(12231), + [anon_sym_BSLASHCrefrange] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewlabel] = ACTIONS(12231), + [anon_sym_BSLASHnewcommand] = ACTIONS(12231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12231), + [anon_sym_BSLASHgls] = ACTIONS(12231), + [anon_sym_BSLASHGls] = ACTIONS(12231), + [anon_sym_BSLASHGLS] = ACTIONS(12231), + [anon_sym_BSLASHglspl] = ACTIONS(12231), + [anon_sym_BSLASHGlspl] = ACTIONS(12231), + [anon_sym_BSLASHGLSpl] = ACTIONS(12231), + [anon_sym_BSLASHglsdisp] = ACTIONS(12231), + [anon_sym_BSLASHglslink] = ACTIONS(12231), + [anon_sym_BSLASHglstext] = ACTIONS(12231), + [anon_sym_BSLASHGlstext] = ACTIONS(12231), + [anon_sym_BSLASHGLStext] = ACTIONS(12231), + [anon_sym_BSLASHglsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12231), + [anon_sym_BSLASHglsplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSplural] = ACTIONS(12231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHglsname] = ACTIONS(12231), + [anon_sym_BSLASHGlsname] = ACTIONS(12231), + [anon_sym_BSLASHGLSname] = ACTIONS(12231), + [anon_sym_BSLASHglssymbol] = ACTIONS(12231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12231), + [anon_sym_BSLASHglsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12231), + [anon_sym_BSLASHglsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12231), + [anon_sym_BSLASHglsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12231), + [anon_sym_BSLASHglsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12231), + [anon_sym_BSLASHglsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12231), + [anon_sym_BSLASHnewacronym] = ACTIONS(12231), + [anon_sym_BSLASHacrshort] = ACTIONS(12231), + [anon_sym_BSLASHAcrshort] = ACTIONS(12231), + [anon_sym_BSLASHACRshort] = ACTIONS(12231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12231), + [anon_sym_BSLASHacrlong] = ACTIONS(12231), + [anon_sym_BSLASHAcrlong] = ACTIONS(12231), + [anon_sym_BSLASHACRlong] = ACTIONS(12231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12231), + [anon_sym_BSLASHacrfull] = ACTIONS(12231), + [anon_sym_BSLASHAcrfull] = ACTIONS(12231), + [anon_sym_BSLASHACRfull] = ACTIONS(12231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12231), + [anon_sym_BSLASHacs] = ACTIONS(12231), + [anon_sym_BSLASHAcs] = ACTIONS(12231), + [anon_sym_BSLASHacsp] = ACTIONS(12231), + [anon_sym_BSLASHAcsp] = ACTIONS(12231), + [anon_sym_BSLASHacl] = ACTIONS(12231), + [anon_sym_BSLASHAcl] = ACTIONS(12231), + [anon_sym_BSLASHaclp] = ACTIONS(12231), + [anon_sym_BSLASHAclp] = ACTIONS(12231), + [anon_sym_BSLASHacf] = ACTIONS(12231), + [anon_sym_BSLASHAcf] = ACTIONS(12231), + [anon_sym_BSLASHacfp] = ACTIONS(12231), + [anon_sym_BSLASHAcfp] = ACTIONS(12231), + [anon_sym_BSLASHac] = ACTIONS(12231), + [anon_sym_BSLASHAc] = ACTIONS(12231), + [anon_sym_BSLASHacp] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12231), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12231), + [anon_sym_BSLASHcolor] = ACTIONS(12231), + [anon_sym_BSLASHcolorbox] = ACTIONS(12231), + [anon_sym_BSLASHtextcolor] = ACTIONS(12231), + [anon_sym_BSLASHpagecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12231), + }, + [1250] = { + [sym_generic_command_name] = ACTIONS(12365), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12365), + [aux_sym_subsection_token1] = ACTIONS(12365), + [aux_sym_subsubsection_token1] = ACTIONS(12365), + [aux_sym_paragraph_token1] = ACTIONS(12365), + [aux_sym_subparagraph_token1] = ACTIONS(12365), + [anon_sym_BSLASHitem] = ACTIONS(12365), + [anon_sym_LBRACK] = ACTIONS(12363), + [anon_sym_RBRACK] = ACTIONS(12363), + [anon_sym_LBRACE] = ACTIONS(12363), + [anon_sym_RBRACE] = ACTIONS(12363), + [anon_sym_LPAREN] = ACTIONS(12363), + [anon_sym_COMMA] = ACTIONS(12363), + [anon_sym_EQ] = ACTIONS(12363), + [sym_word] = ACTIONS(12363), + [sym_param] = ACTIONS(12363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12363), + [anon_sym_DOLLAR] = ACTIONS(12365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12363), + [anon_sym_BSLASHbegin] = ACTIONS(12365), + [anon_sym_BSLASHcaption] = ACTIONS(12365), + [anon_sym_BSLASHcite] = ACTIONS(12365), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCite] = ACTIONS(12365), + [anon_sym_BSLASHnocite] = ACTIONS(12365), + [anon_sym_BSLASHcitet] = ACTIONS(12365), + [anon_sym_BSLASHcitep] = ACTIONS(12365), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteauthor] = ACTIONS(12365), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12365), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitetitle] = ACTIONS(12365), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteyear] = ACTIONS(12365), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitedate] = ACTIONS(12365), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteurl] = ACTIONS(12365), + [anon_sym_BSLASHfullcite] = ACTIONS(12365), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12365), + [anon_sym_BSLASHcitealt] = ACTIONS(12365), + [anon_sym_BSLASHcitealp] = ACTIONS(12365), + [anon_sym_BSLASHcitetext] = ACTIONS(12365), + [anon_sym_BSLASHparencite] = ACTIONS(12365), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHParencite] = ACTIONS(12365), + [anon_sym_BSLASHfootcite] = ACTIONS(12365), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12365), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12365), + [anon_sym_BSLASHtextcite] = ACTIONS(12365), + [anon_sym_BSLASHTextcite] = ACTIONS(12365), + [anon_sym_BSLASHsmartcite] = ACTIONS(12365), + [anon_sym_BSLASHSmartcite] = ACTIONS(12365), + [anon_sym_BSLASHsupercite] = ACTIONS(12365), + [anon_sym_BSLASHautocite] = ACTIONS(12365), + [anon_sym_BSLASHAutocite] = ACTIONS(12365), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHvolcite] = ACTIONS(12365), + [anon_sym_BSLASHVolcite] = ACTIONS(12365), + [anon_sym_BSLASHpvolcite] = ACTIONS(12365), + [anon_sym_BSLASHPvolcite] = ACTIONS(12365), + [anon_sym_BSLASHfvolcite] = ACTIONS(12365), + [anon_sym_BSLASHftvolcite] = ACTIONS(12365), + [anon_sym_BSLASHsvolcite] = ACTIONS(12365), + [anon_sym_BSLASHSvolcite] = ACTIONS(12365), + [anon_sym_BSLASHtvolcite] = ACTIONS(12365), + [anon_sym_BSLASHTvolcite] = ACTIONS(12365), + [anon_sym_BSLASHavolcite] = ACTIONS(12365), + [anon_sym_BSLASHAvolcite] = ACTIONS(12365), + [anon_sym_BSLASHnotecite] = ACTIONS(12365), + [anon_sym_BSLASHpnotecite] = ACTIONS(12365), + [anon_sym_BSLASHPnotecite] = ACTIONS(12365), + [anon_sym_BSLASHfnotecite] = ACTIONS(12365), + [anon_sym_BSLASHusepackage] = ACTIONS(12365), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12365), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12365), + [anon_sym_BSLASHinclude] = ACTIONS(12365), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12365), + [anon_sym_BSLASHinput] = ACTIONS(12365), + [anon_sym_BSLASHsubfile] = ACTIONS(12365), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12365), + [anon_sym_BSLASHbibliography] = ACTIONS(12365), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12365), + [anon_sym_BSLASHincludesvg] = ACTIONS(12365), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12365), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12365), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12365), + [anon_sym_BSLASHimport] = ACTIONS(12365), + [anon_sym_BSLASHsubimport] = ACTIONS(12365), + [anon_sym_BSLASHinputfrom] = ACTIONS(12365), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12365), + [anon_sym_BSLASHincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHlabel] = ACTIONS(12365), + [anon_sym_BSLASHref] = ACTIONS(12365), + [anon_sym_BSLASHvref] = ACTIONS(12365), + [anon_sym_BSLASHVref] = ACTIONS(12365), + [anon_sym_BSLASHautoref] = ACTIONS(12365), + [anon_sym_BSLASHpageref] = ACTIONS(12365), + [anon_sym_BSLASHcref] = ACTIONS(12365), + [anon_sym_BSLASHCref] = ACTIONS(12365), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnameCref] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHlabelcref] = ACTIONS(12365), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12365), + [anon_sym_BSLASHeqref] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange] = ACTIONS(12365), + [anon_sym_BSLASHCrefrange] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewlabel] = ACTIONS(12365), + [anon_sym_BSLASHnewcommand] = ACTIONS(12365), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12365), + [anon_sym_BSLASHgls] = ACTIONS(12365), + [anon_sym_BSLASHGls] = ACTIONS(12365), + [anon_sym_BSLASHGLS] = ACTIONS(12365), + [anon_sym_BSLASHglspl] = ACTIONS(12365), + [anon_sym_BSLASHGlspl] = ACTIONS(12365), + [anon_sym_BSLASHGLSpl] = ACTIONS(12365), + [anon_sym_BSLASHglsdisp] = ACTIONS(12365), + [anon_sym_BSLASHglslink] = ACTIONS(12365), + [anon_sym_BSLASHglstext] = ACTIONS(12365), + [anon_sym_BSLASHGlstext] = ACTIONS(12365), + [anon_sym_BSLASHGLStext] = ACTIONS(12365), + [anon_sym_BSLASHglsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12365), + [anon_sym_BSLASHglsplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSplural] = ACTIONS(12365), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHglsname] = ACTIONS(12365), + [anon_sym_BSLASHGlsname] = ACTIONS(12365), + [anon_sym_BSLASHGLSname] = ACTIONS(12365), + [anon_sym_BSLASHglssymbol] = ACTIONS(12365), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12365), + [anon_sym_BSLASHglsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12365), + [anon_sym_BSLASHglsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12365), + [anon_sym_BSLASHglsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12365), + [anon_sym_BSLASHglsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12365), + [anon_sym_BSLASHglsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12365), + [anon_sym_BSLASHnewacronym] = ACTIONS(12365), + [anon_sym_BSLASHacrshort] = ACTIONS(12365), + [anon_sym_BSLASHAcrshort] = ACTIONS(12365), + [anon_sym_BSLASHACRshort] = ACTIONS(12365), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12365), + [anon_sym_BSLASHacrlong] = ACTIONS(12365), + [anon_sym_BSLASHAcrlong] = ACTIONS(12365), + [anon_sym_BSLASHACRlong] = ACTIONS(12365), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12365), + [anon_sym_BSLASHacrfull] = ACTIONS(12365), + [anon_sym_BSLASHAcrfull] = ACTIONS(12365), + [anon_sym_BSLASHACRfull] = ACTIONS(12365), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12365), + [anon_sym_BSLASHacs] = ACTIONS(12365), + [anon_sym_BSLASHAcs] = ACTIONS(12365), + [anon_sym_BSLASHacsp] = ACTIONS(12365), + [anon_sym_BSLASHAcsp] = ACTIONS(12365), + [anon_sym_BSLASHacl] = ACTIONS(12365), + [anon_sym_BSLASHAcl] = ACTIONS(12365), + [anon_sym_BSLASHaclp] = ACTIONS(12365), + [anon_sym_BSLASHAclp] = ACTIONS(12365), + [anon_sym_BSLASHacf] = ACTIONS(12365), + [anon_sym_BSLASHAcf] = ACTIONS(12365), + [anon_sym_BSLASHacfp] = ACTIONS(12365), + [anon_sym_BSLASHAcfp] = ACTIONS(12365), + [anon_sym_BSLASHac] = ACTIONS(12365), + [anon_sym_BSLASHAc] = ACTIONS(12365), + [anon_sym_BSLASHacp] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12365), + [anon_sym_BSLASHcolor] = ACTIONS(12365), + [anon_sym_BSLASHcolorbox] = ACTIONS(12365), + [anon_sym_BSLASHtextcolor] = ACTIONS(12365), + [anon_sym_BSLASHpagecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12365), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12365), + }, + [1251] = { + [sym_generic_command_name] = ACTIONS(12385), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12385), + [aux_sym_subsection_token1] = ACTIONS(12385), + [aux_sym_subsubsection_token1] = ACTIONS(12385), + [aux_sym_paragraph_token1] = ACTIONS(12385), + [aux_sym_subparagraph_token1] = ACTIONS(12385), + [anon_sym_BSLASHitem] = ACTIONS(12385), + [anon_sym_LBRACK] = ACTIONS(12383), + [anon_sym_RBRACK] = ACTIONS(12383), + [anon_sym_LBRACE] = ACTIONS(12383), + [anon_sym_RBRACE] = ACTIONS(12383), + [anon_sym_LPAREN] = ACTIONS(12383), + [anon_sym_COMMA] = ACTIONS(12383), + [anon_sym_EQ] = ACTIONS(12383), + [sym_word] = ACTIONS(12383), + [sym_param] = ACTIONS(12383), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12383), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12383), + [anon_sym_DOLLAR] = ACTIONS(12385), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12383), + [anon_sym_BSLASHbegin] = ACTIONS(12385), + [anon_sym_BSLASHcaption] = ACTIONS(12385), + [anon_sym_BSLASHcite] = ACTIONS(12385), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCite] = ACTIONS(12385), + [anon_sym_BSLASHnocite] = ACTIONS(12385), + [anon_sym_BSLASHcitet] = ACTIONS(12385), + [anon_sym_BSLASHcitep] = ACTIONS(12385), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteauthor] = ACTIONS(12385), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12385), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitetitle] = ACTIONS(12385), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteyear] = ACTIONS(12385), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitedate] = ACTIONS(12385), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteurl] = ACTIONS(12385), + [anon_sym_BSLASHfullcite] = ACTIONS(12385), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12385), + [anon_sym_BSLASHcitealt] = ACTIONS(12385), + [anon_sym_BSLASHcitealp] = ACTIONS(12385), + [anon_sym_BSLASHcitetext] = ACTIONS(12385), + [anon_sym_BSLASHparencite] = ACTIONS(12385), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHParencite] = ACTIONS(12385), + [anon_sym_BSLASHfootcite] = ACTIONS(12385), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12385), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12385), + [anon_sym_BSLASHtextcite] = ACTIONS(12385), + [anon_sym_BSLASHTextcite] = ACTIONS(12385), + [anon_sym_BSLASHsmartcite] = ACTIONS(12385), + [anon_sym_BSLASHSmartcite] = ACTIONS(12385), + [anon_sym_BSLASHsupercite] = ACTIONS(12385), + [anon_sym_BSLASHautocite] = ACTIONS(12385), + [anon_sym_BSLASHAutocite] = ACTIONS(12385), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHvolcite] = ACTIONS(12385), + [anon_sym_BSLASHVolcite] = ACTIONS(12385), + [anon_sym_BSLASHpvolcite] = ACTIONS(12385), + [anon_sym_BSLASHPvolcite] = ACTIONS(12385), + [anon_sym_BSLASHfvolcite] = ACTIONS(12385), + [anon_sym_BSLASHftvolcite] = ACTIONS(12385), + [anon_sym_BSLASHsvolcite] = ACTIONS(12385), + [anon_sym_BSLASHSvolcite] = ACTIONS(12385), + [anon_sym_BSLASHtvolcite] = ACTIONS(12385), + [anon_sym_BSLASHTvolcite] = ACTIONS(12385), + [anon_sym_BSLASHavolcite] = ACTIONS(12385), + [anon_sym_BSLASHAvolcite] = ACTIONS(12385), + [anon_sym_BSLASHnotecite] = ACTIONS(12385), + [anon_sym_BSLASHpnotecite] = ACTIONS(12385), + [anon_sym_BSLASHPnotecite] = ACTIONS(12385), + [anon_sym_BSLASHfnotecite] = ACTIONS(12385), + [anon_sym_BSLASHusepackage] = ACTIONS(12385), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12385), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12385), + [anon_sym_BSLASHinclude] = ACTIONS(12385), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12385), + [anon_sym_BSLASHinput] = ACTIONS(12385), + [anon_sym_BSLASHsubfile] = ACTIONS(12385), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12385), + [anon_sym_BSLASHbibliography] = ACTIONS(12385), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12385), + [anon_sym_BSLASHincludesvg] = ACTIONS(12385), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12385), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12385), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12385), + [anon_sym_BSLASHimport] = ACTIONS(12385), + [anon_sym_BSLASHsubimport] = ACTIONS(12385), + [anon_sym_BSLASHinputfrom] = ACTIONS(12385), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12385), + [anon_sym_BSLASHincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHlabel] = ACTIONS(12385), + [anon_sym_BSLASHref] = ACTIONS(12385), + [anon_sym_BSLASHvref] = ACTIONS(12385), + [anon_sym_BSLASHVref] = ACTIONS(12385), + [anon_sym_BSLASHautoref] = ACTIONS(12385), + [anon_sym_BSLASHpageref] = ACTIONS(12385), + [anon_sym_BSLASHcref] = ACTIONS(12385), + [anon_sym_BSLASHCref] = ACTIONS(12385), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnameCref] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHlabelcref] = ACTIONS(12385), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12385), + [anon_sym_BSLASHeqref] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange] = ACTIONS(12385), + [anon_sym_BSLASHCrefrange] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewlabel] = ACTIONS(12385), + [anon_sym_BSLASHnewcommand] = ACTIONS(12385), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12385), + [anon_sym_BSLASHgls] = ACTIONS(12385), + [anon_sym_BSLASHGls] = ACTIONS(12385), + [anon_sym_BSLASHGLS] = ACTIONS(12385), + [anon_sym_BSLASHglspl] = ACTIONS(12385), + [anon_sym_BSLASHGlspl] = ACTIONS(12385), + [anon_sym_BSLASHGLSpl] = ACTIONS(12385), + [anon_sym_BSLASHglsdisp] = ACTIONS(12385), + [anon_sym_BSLASHglslink] = ACTIONS(12385), + [anon_sym_BSLASHglstext] = ACTIONS(12385), + [anon_sym_BSLASHGlstext] = ACTIONS(12385), + [anon_sym_BSLASHGLStext] = ACTIONS(12385), + [anon_sym_BSLASHglsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12385), + [anon_sym_BSLASHglsplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSplural] = ACTIONS(12385), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHglsname] = ACTIONS(12385), + [anon_sym_BSLASHGlsname] = ACTIONS(12385), + [anon_sym_BSLASHGLSname] = ACTIONS(12385), + [anon_sym_BSLASHglssymbol] = ACTIONS(12385), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12385), + [anon_sym_BSLASHglsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12385), + [anon_sym_BSLASHglsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12385), + [anon_sym_BSLASHglsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12385), + [anon_sym_BSLASHglsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12385), + [anon_sym_BSLASHglsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12385), + [anon_sym_BSLASHnewacronym] = ACTIONS(12385), + [anon_sym_BSLASHacrshort] = ACTIONS(12385), + [anon_sym_BSLASHAcrshort] = ACTIONS(12385), + [anon_sym_BSLASHACRshort] = ACTIONS(12385), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12385), + [anon_sym_BSLASHacrlong] = ACTIONS(12385), + [anon_sym_BSLASHAcrlong] = ACTIONS(12385), + [anon_sym_BSLASHACRlong] = ACTIONS(12385), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12385), + [anon_sym_BSLASHacrfull] = ACTIONS(12385), + [anon_sym_BSLASHAcrfull] = ACTIONS(12385), + [anon_sym_BSLASHACRfull] = ACTIONS(12385), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12385), + [anon_sym_BSLASHacs] = ACTIONS(12385), + [anon_sym_BSLASHAcs] = ACTIONS(12385), + [anon_sym_BSLASHacsp] = ACTIONS(12385), + [anon_sym_BSLASHAcsp] = ACTIONS(12385), + [anon_sym_BSLASHacl] = ACTIONS(12385), + [anon_sym_BSLASHAcl] = ACTIONS(12385), + [anon_sym_BSLASHaclp] = ACTIONS(12385), + [anon_sym_BSLASHAclp] = ACTIONS(12385), + [anon_sym_BSLASHacf] = ACTIONS(12385), + [anon_sym_BSLASHAcf] = ACTIONS(12385), + [anon_sym_BSLASHacfp] = ACTIONS(12385), + [anon_sym_BSLASHAcfp] = ACTIONS(12385), + [anon_sym_BSLASHac] = ACTIONS(12385), + [anon_sym_BSLASHAc] = ACTIONS(12385), + [anon_sym_BSLASHacp] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12385), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12385), + [anon_sym_BSLASHcolor] = ACTIONS(12385), + [anon_sym_BSLASHcolorbox] = ACTIONS(12385), + [anon_sym_BSLASHtextcolor] = ACTIONS(12385), + [anon_sym_BSLASHpagecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12385), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12385), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12385), + }, + [1252] = { + [sym_generic_command_name] = ACTIONS(12389), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12389), + [aux_sym_subsection_token1] = ACTIONS(12389), + [aux_sym_subsubsection_token1] = ACTIONS(12389), + [aux_sym_paragraph_token1] = ACTIONS(12389), + [aux_sym_subparagraph_token1] = ACTIONS(12389), + [anon_sym_BSLASHitem] = ACTIONS(12389), + [anon_sym_LBRACK] = ACTIONS(12387), + [anon_sym_RBRACK] = ACTIONS(12387), + [anon_sym_LBRACE] = ACTIONS(12387), + [anon_sym_RBRACE] = ACTIONS(12387), + [anon_sym_LPAREN] = ACTIONS(12387), + [anon_sym_COMMA] = ACTIONS(12387), + [anon_sym_EQ] = ACTIONS(12387), + [sym_word] = ACTIONS(12387), + [sym_param] = ACTIONS(12387), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12387), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12387), + [anon_sym_DOLLAR] = ACTIONS(12389), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12387), + [anon_sym_BSLASHbegin] = ACTIONS(12389), + [anon_sym_BSLASHcaption] = ACTIONS(12389), + [anon_sym_BSLASHcite] = ACTIONS(12389), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCite] = ACTIONS(12389), + [anon_sym_BSLASHnocite] = ACTIONS(12389), + [anon_sym_BSLASHcitet] = ACTIONS(12389), + [anon_sym_BSLASHcitep] = ACTIONS(12389), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteauthor] = ACTIONS(12389), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12389), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitetitle] = ACTIONS(12389), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteyear] = ACTIONS(12389), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitedate] = ACTIONS(12389), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteurl] = ACTIONS(12389), + [anon_sym_BSLASHfullcite] = ACTIONS(12389), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12389), + [anon_sym_BSLASHcitealt] = ACTIONS(12389), + [anon_sym_BSLASHcitealp] = ACTIONS(12389), + [anon_sym_BSLASHcitetext] = ACTIONS(12389), + [anon_sym_BSLASHparencite] = ACTIONS(12389), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHParencite] = ACTIONS(12389), + [anon_sym_BSLASHfootcite] = ACTIONS(12389), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12389), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12389), + [anon_sym_BSLASHtextcite] = ACTIONS(12389), + [anon_sym_BSLASHTextcite] = ACTIONS(12389), + [anon_sym_BSLASHsmartcite] = ACTIONS(12389), + [anon_sym_BSLASHSmartcite] = ACTIONS(12389), + [anon_sym_BSLASHsupercite] = ACTIONS(12389), + [anon_sym_BSLASHautocite] = ACTIONS(12389), + [anon_sym_BSLASHAutocite] = ACTIONS(12389), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHvolcite] = ACTIONS(12389), + [anon_sym_BSLASHVolcite] = ACTIONS(12389), + [anon_sym_BSLASHpvolcite] = ACTIONS(12389), + [anon_sym_BSLASHPvolcite] = ACTIONS(12389), + [anon_sym_BSLASHfvolcite] = ACTIONS(12389), + [anon_sym_BSLASHftvolcite] = ACTIONS(12389), + [anon_sym_BSLASHsvolcite] = ACTIONS(12389), + [anon_sym_BSLASHSvolcite] = ACTIONS(12389), + [anon_sym_BSLASHtvolcite] = ACTIONS(12389), + [anon_sym_BSLASHTvolcite] = ACTIONS(12389), + [anon_sym_BSLASHavolcite] = ACTIONS(12389), + [anon_sym_BSLASHAvolcite] = ACTIONS(12389), + [anon_sym_BSLASHnotecite] = ACTIONS(12389), + [anon_sym_BSLASHpnotecite] = ACTIONS(12389), + [anon_sym_BSLASHPnotecite] = ACTIONS(12389), + [anon_sym_BSLASHfnotecite] = ACTIONS(12389), + [anon_sym_BSLASHusepackage] = ACTIONS(12389), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12389), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12389), + [anon_sym_BSLASHinclude] = ACTIONS(12389), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12389), + [anon_sym_BSLASHinput] = ACTIONS(12389), + [anon_sym_BSLASHsubfile] = ACTIONS(12389), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12389), + [anon_sym_BSLASHbibliography] = ACTIONS(12389), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12389), + [anon_sym_BSLASHincludesvg] = ACTIONS(12389), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12389), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12389), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12389), + [anon_sym_BSLASHimport] = ACTIONS(12389), + [anon_sym_BSLASHsubimport] = ACTIONS(12389), + [anon_sym_BSLASHinputfrom] = ACTIONS(12389), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12389), + [anon_sym_BSLASHincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHlabel] = ACTIONS(12389), + [anon_sym_BSLASHref] = ACTIONS(12389), + [anon_sym_BSLASHvref] = ACTIONS(12389), + [anon_sym_BSLASHVref] = ACTIONS(12389), + [anon_sym_BSLASHautoref] = ACTIONS(12389), + [anon_sym_BSLASHpageref] = ACTIONS(12389), + [anon_sym_BSLASHcref] = ACTIONS(12389), + [anon_sym_BSLASHCref] = ACTIONS(12389), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnameCref] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHlabelcref] = ACTIONS(12389), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12389), + [anon_sym_BSLASHeqref] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange] = ACTIONS(12389), + [anon_sym_BSLASHCrefrange] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewlabel] = ACTIONS(12389), + [anon_sym_BSLASHnewcommand] = ACTIONS(12389), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12389), + [anon_sym_BSLASHgls] = ACTIONS(12389), + [anon_sym_BSLASHGls] = ACTIONS(12389), + [anon_sym_BSLASHGLS] = ACTIONS(12389), + [anon_sym_BSLASHglspl] = ACTIONS(12389), + [anon_sym_BSLASHGlspl] = ACTIONS(12389), + [anon_sym_BSLASHGLSpl] = ACTIONS(12389), + [anon_sym_BSLASHglsdisp] = ACTIONS(12389), + [anon_sym_BSLASHglslink] = ACTIONS(12389), + [anon_sym_BSLASHglstext] = ACTIONS(12389), + [anon_sym_BSLASHGlstext] = ACTIONS(12389), + [anon_sym_BSLASHGLStext] = ACTIONS(12389), + [anon_sym_BSLASHglsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12389), + [anon_sym_BSLASHglsplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSplural] = ACTIONS(12389), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHglsname] = ACTIONS(12389), + [anon_sym_BSLASHGlsname] = ACTIONS(12389), + [anon_sym_BSLASHGLSname] = ACTIONS(12389), + [anon_sym_BSLASHglssymbol] = ACTIONS(12389), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12389), + [anon_sym_BSLASHglsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12389), + [anon_sym_BSLASHglsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12389), + [anon_sym_BSLASHglsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12389), + [anon_sym_BSLASHglsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12389), + [anon_sym_BSLASHglsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12389), + [anon_sym_BSLASHnewacronym] = ACTIONS(12389), + [anon_sym_BSLASHacrshort] = ACTIONS(12389), + [anon_sym_BSLASHAcrshort] = ACTIONS(12389), + [anon_sym_BSLASHACRshort] = ACTIONS(12389), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12389), + [anon_sym_BSLASHacrlong] = ACTIONS(12389), + [anon_sym_BSLASHAcrlong] = ACTIONS(12389), + [anon_sym_BSLASHACRlong] = ACTIONS(12389), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12389), + [anon_sym_BSLASHacrfull] = ACTIONS(12389), + [anon_sym_BSLASHAcrfull] = ACTIONS(12389), + [anon_sym_BSLASHACRfull] = ACTIONS(12389), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12389), + [anon_sym_BSLASHacs] = ACTIONS(12389), + [anon_sym_BSLASHAcs] = ACTIONS(12389), + [anon_sym_BSLASHacsp] = ACTIONS(12389), + [anon_sym_BSLASHAcsp] = ACTIONS(12389), + [anon_sym_BSLASHacl] = ACTIONS(12389), + [anon_sym_BSLASHAcl] = ACTIONS(12389), + [anon_sym_BSLASHaclp] = ACTIONS(12389), + [anon_sym_BSLASHAclp] = ACTIONS(12389), + [anon_sym_BSLASHacf] = ACTIONS(12389), + [anon_sym_BSLASHAcf] = ACTIONS(12389), + [anon_sym_BSLASHacfp] = ACTIONS(12389), + [anon_sym_BSLASHAcfp] = ACTIONS(12389), + [anon_sym_BSLASHac] = ACTIONS(12389), + [anon_sym_BSLASHAc] = ACTIONS(12389), + [anon_sym_BSLASHacp] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12389), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12389), + [anon_sym_BSLASHcolor] = ACTIONS(12389), + [anon_sym_BSLASHcolorbox] = ACTIONS(12389), + [anon_sym_BSLASHtextcolor] = ACTIONS(12389), + [anon_sym_BSLASHpagecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12389), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12389), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12389), + }, + [1253] = { + [sym_generic_command_name] = ACTIONS(12417), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12417), + [aux_sym_subsection_token1] = ACTIONS(12417), + [aux_sym_subsubsection_token1] = ACTIONS(12417), + [aux_sym_paragraph_token1] = ACTIONS(12417), + [aux_sym_subparagraph_token1] = ACTIONS(12417), + [anon_sym_BSLASHitem] = ACTIONS(12417), + [anon_sym_LBRACK] = ACTIONS(12415), + [anon_sym_RBRACK] = ACTIONS(12415), + [anon_sym_LBRACE] = ACTIONS(12415), + [anon_sym_RBRACE] = ACTIONS(12415), + [anon_sym_LPAREN] = ACTIONS(12415), + [anon_sym_COMMA] = ACTIONS(12415), + [anon_sym_EQ] = ACTIONS(12415), + [sym_word] = ACTIONS(12415), + [sym_param] = ACTIONS(12415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12415), + [anon_sym_DOLLAR] = ACTIONS(12417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12415), + [anon_sym_BSLASHbegin] = ACTIONS(12417), + [anon_sym_BSLASHcaption] = ACTIONS(12417), + [anon_sym_BSLASHcite] = ACTIONS(12417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCite] = ACTIONS(12417), + [anon_sym_BSLASHnocite] = ACTIONS(12417), + [anon_sym_BSLASHcitet] = ACTIONS(12417), + [anon_sym_BSLASHcitep] = ACTIONS(12417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteauthor] = ACTIONS(12417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitetitle] = ACTIONS(12417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteyear] = ACTIONS(12417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitedate] = ACTIONS(12417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteurl] = ACTIONS(12417), + [anon_sym_BSLASHfullcite] = ACTIONS(12417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12417), + [anon_sym_BSLASHcitealt] = ACTIONS(12417), + [anon_sym_BSLASHcitealp] = ACTIONS(12417), + [anon_sym_BSLASHcitetext] = ACTIONS(12417), + [anon_sym_BSLASHparencite] = ACTIONS(12417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHParencite] = ACTIONS(12417), + [anon_sym_BSLASHfootcite] = ACTIONS(12417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12417), + [anon_sym_BSLASHtextcite] = ACTIONS(12417), + [anon_sym_BSLASHTextcite] = ACTIONS(12417), + [anon_sym_BSLASHsmartcite] = ACTIONS(12417), + [anon_sym_BSLASHSmartcite] = ACTIONS(12417), + [anon_sym_BSLASHsupercite] = ACTIONS(12417), + [anon_sym_BSLASHautocite] = ACTIONS(12417), + [anon_sym_BSLASHAutocite] = ACTIONS(12417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHvolcite] = ACTIONS(12417), + [anon_sym_BSLASHVolcite] = ACTIONS(12417), + [anon_sym_BSLASHpvolcite] = ACTIONS(12417), + [anon_sym_BSLASHPvolcite] = ACTIONS(12417), + [anon_sym_BSLASHfvolcite] = ACTIONS(12417), + [anon_sym_BSLASHftvolcite] = ACTIONS(12417), + [anon_sym_BSLASHsvolcite] = ACTIONS(12417), + [anon_sym_BSLASHSvolcite] = ACTIONS(12417), + [anon_sym_BSLASHtvolcite] = ACTIONS(12417), + [anon_sym_BSLASHTvolcite] = ACTIONS(12417), + [anon_sym_BSLASHavolcite] = ACTIONS(12417), + [anon_sym_BSLASHAvolcite] = ACTIONS(12417), + [anon_sym_BSLASHnotecite] = ACTIONS(12417), + [anon_sym_BSLASHpnotecite] = ACTIONS(12417), + [anon_sym_BSLASHPnotecite] = ACTIONS(12417), + [anon_sym_BSLASHfnotecite] = ACTIONS(12417), + [anon_sym_BSLASHusepackage] = ACTIONS(12417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12417), + [anon_sym_BSLASHinclude] = ACTIONS(12417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12417), + [anon_sym_BSLASHinput] = ACTIONS(12417), + [anon_sym_BSLASHsubfile] = ACTIONS(12417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12417), + [anon_sym_BSLASHbibliography] = ACTIONS(12417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12417), + [anon_sym_BSLASHincludesvg] = ACTIONS(12417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12417), + [anon_sym_BSLASHimport] = ACTIONS(12417), + [anon_sym_BSLASHsubimport] = ACTIONS(12417), + [anon_sym_BSLASHinputfrom] = ACTIONS(12417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12417), + [anon_sym_BSLASHincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHlabel] = ACTIONS(12417), + [anon_sym_BSLASHref] = ACTIONS(12417), + [anon_sym_BSLASHvref] = ACTIONS(12417), + [anon_sym_BSLASHVref] = ACTIONS(12417), + [anon_sym_BSLASHautoref] = ACTIONS(12417), + [anon_sym_BSLASHpageref] = ACTIONS(12417), + [anon_sym_BSLASHcref] = ACTIONS(12417), + [anon_sym_BSLASHCref] = ACTIONS(12417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnameCref] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHlabelcref] = ACTIONS(12417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12417), + [anon_sym_BSLASHeqref] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange] = ACTIONS(12417), + [anon_sym_BSLASHCrefrange] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewlabel] = ACTIONS(12417), + [anon_sym_BSLASHnewcommand] = ACTIONS(12417), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12417), + [anon_sym_BSLASHgls] = ACTIONS(12417), + [anon_sym_BSLASHGls] = ACTIONS(12417), + [anon_sym_BSLASHGLS] = ACTIONS(12417), + [anon_sym_BSLASHglspl] = ACTIONS(12417), + [anon_sym_BSLASHGlspl] = ACTIONS(12417), + [anon_sym_BSLASHGLSpl] = ACTIONS(12417), + [anon_sym_BSLASHglsdisp] = ACTIONS(12417), + [anon_sym_BSLASHglslink] = ACTIONS(12417), + [anon_sym_BSLASHglstext] = ACTIONS(12417), + [anon_sym_BSLASHGlstext] = ACTIONS(12417), + [anon_sym_BSLASHGLStext] = ACTIONS(12417), + [anon_sym_BSLASHglsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12417), + [anon_sym_BSLASHglsplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSplural] = ACTIONS(12417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHglsname] = ACTIONS(12417), + [anon_sym_BSLASHGlsname] = ACTIONS(12417), + [anon_sym_BSLASHGLSname] = ACTIONS(12417), + [anon_sym_BSLASHglssymbol] = ACTIONS(12417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12417), + [anon_sym_BSLASHglsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12417), + [anon_sym_BSLASHglsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12417), + [anon_sym_BSLASHglsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12417), + [anon_sym_BSLASHglsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12417), + [anon_sym_BSLASHglsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12417), + [anon_sym_BSLASHnewacronym] = ACTIONS(12417), + [anon_sym_BSLASHacrshort] = ACTIONS(12417), + [anon_sym_BSLASHAcrshort] = ACTIONS(12417), + [anon_sym_BSLASHACRshort] = ACTIONS(12417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12417), + [anon_sym_BSLASHacrlong] = ACTIONS(12417), + [anon_sym_BSLASHAcrlong] = ACTIONS(12417), + [anon_sym_BSLASHACRlong] = ACTIONS(12417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12417), + [anon_sym_BSLASHacrfull] = ACTIONS(12417), + [anon_sym_BSLASHAcrfull] = ACTIONS(12417), + [anon_sym_BSLASHACRfull] = ACTIONS(12417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12417), + [anon_sym_BSLASHacs] = ACTIONS(12417), + [anon_sym_BSLASHAcs] = ACTIONS(12417), + [anon_sym_BSLASHacsp] = ACTIONS(12417), + [anon_sym_BSLASHAcsp] = ACTIONS(12417), + [anon_sym_BSLASHacl] = ACTIONS(12417), + [anon_sym_BSLASHAcl] = ACTIONS(12417), + [anon_sym_BSLASHaclp] = ACTIONS(12417), + [anon_sym_BSLASHAclp] = ACTIONS(12417), + [anon_sym_BSLASHacf] = ACTIONS(12417), + [anon_sym_BSLASHAcf] = ACTIONS(12417), + [anon_sym_BSLASHacfp] = ACTIONS(12417), + [anon_sym_BSLASHAcfp] = ACTIONS(12417), + [anon_sym_BSLASHac] = ACTIONS(12417), + [anon_sym_BSLASHAc] = ACTIONS(12417), + [anon_sym_BSLASHacp] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12417), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12417), + [anon_sym_BSLASHcolor] = ACTIONS(12417), + [anon_sym_BSLASHcolorbox] = ACTIONS(12417), + [anon_sym_BSLASHtextcolor] = ACTIONS(12417), + [anon_sym_BSLASHpagecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12417), + }, + [1254] = { + [sym_generic_command_name] = ACTIONS(12457), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12457), + [aux_sym_subsection_token1] = ACTIONS(12457), + [aux_sym_subsubsection_token1] = ACTIONS(12457), + [aux_sym_paragraph_token1] = ACTIONS(12457), + [aux_sym_subparagraph_token1] = ACTIONS(12457), + [anon_sym_BSLASHitem] = ACTIONS(12457), + [anon_sym_LBRACK] = ACTIONS(12455), + [anon_sym_RBRACK] = ACTIONS(12455), + [anon_sym_LBRACE] = ACTIONS(12455), + [anon_sym_RBRACE] = ACTIONS(12455), + [anon_sym_LPAREN] = ACTIONS(12455), + [anon_sym_COMMA] = ACTIONS(12455), + [anon_sym_EQ] = ACTIONS(12455), + [sym_word] = ACTIONS(12455), + [sym_param] = ACTIONS(12455), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12455), + [anon_sym_DOLLAR] = ACTIONS(12457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12455), + [anon_sym_BSLASHbegin] = ACTIONS(12457), + [anon_sym_BSLASHcaption] = ACTIONS(12457), + [anon_sym_BSLASHcite] = ACTIONS(12457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCite] = ACTIONS(12457), + [anon_sym_BSLASHnocite] = ACTIONS(12457), + [anon_sym_BSLASHcitet] = ACTIONS(12457), + [anon_sym_BSLASHcitep] = ACTIONS(12457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteauthor] = ACTIONS(12457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitetitle] = ACTIONS(12457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteyear] = ACTIONS(12457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitedate] = ACTIONS(12457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteurl] = ACTIONS(12457), + [anon_sym_BSLASHfullcite] = ACTIONS(12457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12457), + [anon_sym_BSLASHcitealt] = ACTIONS(12457), + [anon_sym_BSLASHcitealp] = ACTIONS(12457), + [anon_sym_BSLASHcitetext] = ACTIONS(12457), + [anon_sym_BSLASHparencite] = ACTIONS(12457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHParencite] = ACTIONS(12457), + [anon_sym_BSLASHfootcite] = ACTIONS(12457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12457), + [anon_sym_BSLASHtextcite] = ACTIONS(12457), + [anon_sym_BSLASHTextcite] = ACTIONS(12457), + [anon_sym_BSLASHsmartcite] = ACTIONS(12457), + [anon_sym_BSLASHSmartcite] = ACTIONS(12457), + [anon_sym_BSLASHsupercite] = ACTIONS(12457), + [anon_sym_BSLASHautocite] = ACTIONS(12457), + [anon_sym_BSLASHAutocite] = ACTIONS(12457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHvolcite] = ACTIONS(12457), + [anon_sym_BSLASHVolcite] = ACTIONS(12457), + [anon_sym_BSLASHpvolcite] = ACTIONS(12457), + [anon_sym_BSLASHPvolcite] = ACTIONS(12457), + [anon_sym_BSLASHfvolcite] = ACTIONS(12457), + [anon_sym_BSLASHftvolcite] = ACTIONS(12457), + [anon_sym_BSLASHsvolcite] = ACTIONS(12457), + [anon_sym_BSLASHSvolcite] = ACTIONS(12457), + [anon_sym_BSLASHtvolcite] = ACTIONS(12457), + [anon_sym_BSLASHTvolcite] = ACTIONS(12457), + [anon_sym_BSLASHavolcite] = ACTIONS(12457), + [anon_sym_BSLASHAvolcite] = ACTIONS(12457), + [anon_sym_BSLASHnotecite] = ACTIONS(12457), + [anon_sym_BSLASHpnotecite] = ACTIONS(12457), + [anon_sym_BSLASHPnotecite] = ACTIONS(12457), + [anon_sym_BSLASHfnotecite] = ACTIONS(12457), + [anon_sym_BSLASHusepackage] = ACTIONS(12457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12457), + [anon_sym_BSLASHinclude] = ACTIONS(12457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12457), + [anon_sym_BSLASHinput] = ACTIONS(12457), + [anon_sym_BSLASHsubfile] = ACTIONS(12457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12457), + [anon_sym_BSLASHbibliography] = ACTIONS(12457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12457), + [anon_sym_BSLASHincludesvg] = ACTIONS(12457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12457), + [anon_sym_BSLASHimport] = ACTIONS(12457), + [anon_sym_BSLASHsubimport] = ACTIONS(12457), + [anon_sym_BSLASHinputfrom] = ACTIONS(12457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12457), + [anon_sym_BSLASHincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHlabel] = ACTIONS(12457), + [anon_sym_BSLASHref] = ACTIONS(12457), + [anon_sym_BSLASHvref] = ACTIONS(12457), + [anon_sym_BSLASHVref] = ACTIONS(12457), + [anon_sym_BSLASHautoref] = ACTIONS(12457), + [anon_sym_BSLASHpageref] = ACTIONS(12457), + [anon_sym_BSLASHcref] = ACTIONS(12457), + [anon_sym_BSLASHCref] = ACTIONS(12457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnameCref] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHlabelcref] = ACTIONS(12457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12457), + [anon_sym_BSLASHeqref] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange] = ACTIONS(12457), + [anon_sym_BSLASHCrefrange] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewlabel] = ACTIONS(12457), + [anon_sym_BSLASHnewcommand] = ACTIONS(12457), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12457), + [anon_sym_BSLASHgls] = ACTIONS(12457), + [anon_sym_BSLASHGls] = ACTIONS(12457), + [anon_sym_BSLASHGLS] = ACTIONS(12457), + [anon_sym_BSLASHglspl] = ACTIONS(12457), + [anon_sym_BSLASHGlspl] = ACTIONS(12457), + [anon_sym_BSLASHGLSpl] = ACTIONS(12457), + [anon_sym_BSLASHglsdisp] = ACTIONS(12457), + [anon_sym_BSLASHglslink] = ACTIONS(12457), + [anon_sym_BSLASHglstext] = ACTIONS(12457), + [anon_sym_BSLASHGlstext] = ACTIONS(12457), + [anon_sym_BSLASHGLStext] = ACTIONS(12457), + [anon_sym_BSLASHglsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12457), + [anon_sym_BSLASHglsplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSplural] = ACTIONS(12457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHglsname] = ACTIONS(12457), + [anon_sym_BSLASHGlsname] = ACTIONS(12457), + [anon_sym_BSLASHGLSname] = ACTIONS(12457), + [anon_sym_BSLASHglssymbol] = ACTIONS(12457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12457), + [anon_sym_BSLASHglsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12457), + [anon_sym_BSLASHglsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12457), + [anon_sym_BSLASHglsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12457), + [anon_sym_BSLASHglsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12457), + [anon_sym_BSLASHglsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12457), + [anon_sym_BSLASHnewacronym] = ACTIONS(12457), + [anon_sym_BSLASHacrshort] = ACTIONS(12457), + [anon_sym_BSLASHAcrshort] = ACTIONS(12457), + [anon_sym_BSLASHACRshort] = ACTIONS(12457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12457), + [anon_sym_BSLASHacrlong] = ACTIONS(12457), + [anon_sym_BSLASHAcrlong] = ACTIONS(12457), + [anon_sym_BSLASHACRlong] = ACTIONS(12457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12457), + [anon_sym_BSLASHacrfull] = ACTIONS(12457), + [anon_sym_BSLASHAcrfull] = ACTIONS(12457), + [anon_sym_BSLASHACRfull] = ACTIONS(12457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12457), + [anon_sym_BSLASHacs] = ACTIONS(12457), + [anon_sym_BSLASHAcs] = ACTIONS(12457), + [anon_sym_BSLASHacsp] = ACTIONS(12457), + [anon_sym_BSLASHAcsp] = ACTIONS(12457), + [anon_sym_BSLASHacl] = ACTIONS(12457), + [anon_sym_BSLASHAcl] = ACTIONS(12457), + [anon_sym_BSLASHaclp] = ACTIONS(12457), + [anon_sym_BSLASHAclp] = ACTIONS(12457), + [anon_sym_BSLASHacf] = ACTIONS(12457), + [anon_sym_BSLASHAcf] = ACTIONS(12457), + [anon_sym_BSLASHacfp] = ACTIONS(12457), + [anon_sym_BSLASHAcfp] = ACTIONS(12457), + [anon_sym_BSLASHac] = ACTIONS(12457), + [anon_sym_BSLASHAc] = ACTIONS(12457), + [anon_sym_BSLASHacp] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12457), + [anon_sym_BSLASHcolor] = ACTIONS(12457), + [anon_sym_BSLASHcolorbox] = ACTIONS(12457), + [anon_sym_BSLASHtextcolor] = ACTIONS(12457), + [anon_sym_BSLASHpagecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12457), + }, + [1255] = { + [sym_generic_command_name] = ACTIONS(12473), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12473), + [aux_sym_subsection_token1] = ACTIONS(12473), + [aux_sym_subsubsection_token1] = ACTIONS(12473), + [aux_sym_paragraph_token1] = ACTIONS(12473), + [aux_sym_subparagraph_token1] = ACTIONS(12473), + [anon_sym_BSLASHitem] = ACTIONS(12473), + [anon_sym_LBRACK] = ACTIONS(12471), + [anon_sym_RBRACK] = ACTIONS(12471), + [anon_sym_LBRACE] = ACTIONS(12471), + [anon_sym_RBRACE] = ACTIONS(12471), + [anon_sym_LPAREN] = ACTIONS(12471), + [anon_sym_COMMA] = ACTIONS(12471), + [anon_sym_EQ] = ACTIONS(12471), + [sym_word] = ACTIONS(12471), + [sym_param] = ACTIONS(12471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12471), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12471), + [anon_sym_DOLLAR] = ACTIONS(12473), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12471), + [anon_sym_BSLASHbegin] = ACTIONS(12473), + [anon_sym_BSLASHcaption] = ACTIONS(12473), + [anon_sym_BSLASHcite] = ACTIONS(12473), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCite] = ACTIONS(12473), + [anon_sym_BSLASHnocite] = ACTIONS(12473), + [anon_sym_BSLASHcitet] = ACTIONS(12473), + [anon_sym_BSLASHcitep] = ACTIONS(12473), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteauthor] = ACTIONS(12473), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12473), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitetitle] = ACTIONS(12473), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteyear] = ACTIONS(12473), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitedate] = ACTIONS(12473), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteurl] = ACTIONS(12473), + [anon_sym_BSLASHfullcite] = ACTIONS(12473), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12473), + [anon_sym_BSLASHcitealt] = ACTIONS(12473), + [anon_sym_BSLASHcitealp] = ACTIONS(12473), + [anon_sym_BSLASHcitetext] = ACTIONS(12473), + [anon_sym_BSLASHparencite] = ACTIONS(12473), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHParencite] = ACTIONS(12473), + [anon_sym_BSLASHfootcite] = ACTIONS(12473), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12473), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12473), + [anon_sym_BSLASHtextcite] = ACTIONS(12473), + [anon_sym_BSLASHTextcite] = ACTIONS(12473), + [anon_sym_BSLASHsmartcite] = ACTIONS(12473), + [anon_sym_BSLASHSmartcite] = ACTIONS(12473), + [anon_sym_BSLASHsupercite] = ACTIONS(12473), + [anon_sym_BSLASHautocite] = ACTIONS(12473), + [anon_sym_BSLASHAutocite] = ACTIONS(12473), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHvolcite] = ACTIONS(12473), + [anon_sym_BSLASHVolcite] = ACTIONS(12473), + [anon_sym_BSLASHpvolcite] = ACTIONS(12473), + [anon_sym_BSLASHPvolcite] = ACTIONS(12473), + [anon_sym_BSLASHfvolcite] = ACTIONS(12473), + [anon_sym_BSLASHftvolcite] = ACTIONS(12473), + [anon_sym_BSLASHsvolcite] = ACTIONS(12473), + [anon_sym_BSLASHSvolcite] = ACTIONS(12473), + [anon_sym_BSLASHtvolcite] = ACTIONS(12473), + [anon_sym_BSLASHTvolcite] = ACTIONS(12473), + [anon_sym_BSLASHavolcite] = ACTIONS(12473), + [anon_sym_BSLASHAvolcite] = ACTIONS(12473), + [anon_sym_BSLASHnotecite] = ACTIONS(12473), + [anon_sym_BSLASHpnotecite] = ACTIONS(12473), + [anon_sym_BSLASHPnotecite] = ACTIONS(12473), + [anon_sym_BSLASHfnotecite] = ACTIONS(12473), + [anon_sym_BSLASHusepackage] = ACTIONS(12473), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12473), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12473), + [anon_sym_BSLASHinclude] = ACTIONS(12473), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12473), + [anon_sym_BSLASHinput] = ACTIONS(12473), + [anon_sym_BSLASHsubfile] = ACTIONS(12473), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12473), + [anon_sym_BSLASHbibliography] = ACTIONS(12473), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12473), + [anon_sym_BSLASHincludesvg] = ACTIONS(12473), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12473), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12473), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12473), + [anon_sym_BSLASHimport] = ACTIONS(12473), + [anon_sym_BSLASHsubimport] = ACTIONS(12473), + [anon_sym_BSLASHinputfrom] = ACTIONS(12473), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12473), + [anon_sym_BSLASHincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHlabel] = ACTIONS(12473), + [anon_sym_BSLASHref] = ACTIONS(12473), + [anon_sym_BSLASHvref] = ACTIONS(12473), + [anon_sym_BSLASHVref] = ACTIONS(12473), + [anon_sym_BSLASHautoref] = ACTIONS(12473), + [anon_sym_BSLASHpageref] = ACTIONS(12473), + [anon_sym_BSLASHcref] = ACTIONS(12473), + [anon_sym_BSLASHCref] = ACTIONS(12473), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnameCref] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHlabelcref] = ACTIONS(12473), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12473), + [anon_sym_BSLASHeqref] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange] = ACTIONS(12473), + [anon_sym_BSLASHCrefrange] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewlabel] = ACTIONS(12473), + [anon_sym_BSLASHnewcommand] = ACTIONS(12473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12473), + [anon_sym_BSLASHgls] = ACTIONS(12473), + [anon_sym_BSLASHGls] = ACTIONS(12473), + [anon_sym_BSLASHGLS] = ACTIONS(12473), + [anon_sym_BSLASHglspl] = ACTIONS(12473), + [anon_sym_BSLASHGlspl] = ACTIONS(12473), + [anon_sym_BSLASHGLSpl] = ACTIONS(12473), + [anon_sym_BSLASHglsdisp] = ACTIONS(12473), + [anon_sym_BSLASHglslink] = ACTIONS(12473), + [anon_sym_BSLASHglstext] = ACTIONS(12473), + [anon_sym_BSLASHGlstext] = ACTIONS(12473), + [anon_sym_BSLASHGLStext] = ACTIONS(12473), + [anon_sym_BSLASHglsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12473), + [anon_sym_BSLASHglsplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSplural] = ACTIONS(12473), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHglsname] = ACTIONS(12473), + [anon_sym_BSLASHGlsname] = ACTIONS(12473), + [anon_sym_BSLASHGLSname] = ACTIONS(12473), + [anon_sym_BSLASHglssymbol] = ACTIONS(12473), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12473), + [anon_sym_BSLASHglsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12473), + [anon_sym_BSLASHglsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12473), + [anon_sym_BSLASHglsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12473), + [anon_sym_BSLASHglsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12473), + [anon_sym_BSLASHglsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12473), + [anon_sym_BSLASHnewacronym] = ACTIONS(12473), + [anon_sym_BSLASHacrshort] = ACTIONS(12473), + [anon_sym_BSLASHAcrshort] = ACTIONS(12473), + [anon_sym_BSLASHACRshort] = ACTIONS(12473), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12473), + [anon_sym_BSLASHacrlong] = ACTIONS(12473), + [anon_sym_BSLASHAcrlong] = ACTIONS(12473), + [anon_sym_BSLASHACRlong] = ACTIONS(12473), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12473), + [anon_sym_BSLASHacrfull] = ACTIONS(12473), + [anon_sym_BSLASHAcrfull] = ACTIONS(12473), + [anon_sym_BSLASHACRfull] = ACTIONS(12473), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12473), + [anon_sym_BSLASHacs] = ACTIONS(12473), + [anon_sym_BSLASHAcs] = ACTIONS(12473), + [anon_sym_BSLASHacsp] = ACTIONS(12473), + [anon_sym_BSLASHAcsp] = ACTIONS(12473), + [anon_sym_BSLASHacl] = ACTIONS(12473), + [anon_sym_BSLASHAcl] = ACTIONS(12473), + [anon_sym_BSLASHaclp] = ACTIONS(12473), + [anon_sym_BSLASHAclp] = ACTIONS(12473), + [anon_sym_BSLASHacf] = ACTIONS(12473), + [anon_sym_BSLASHAcf] = ACTIONS(12473), + [anon_sym_BSLASHacfp] = ACTIONS(12473), + [anon_sym_BSLASHAcfp] = ACTIONS(12473), + [anon_sym_BSLASHac] = ACTIONS(12473), + [anon_sym_BSLASHAc] = ACTIONS(12473), + [anon_sym_BSLASHacp] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12473), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12473), + [anon_sym_BSLASHcolor] = ACTIONS(12473), + [anon_sym_BSLASHcolorbox] = ACTIONS(12473), + [anon_sym_BSLASHtextcolor] = ACTIONS(12473), + [anon_sym_BSLASHpagecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12473), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12473), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12473), + }, + [1256] = { + [sym_generic_command_name] = ACTIONS(12489), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12489), + [aux_sym_subsection_token1] = ACTIONS(12489), + [aux_sym_subsubsection_token1] = ACTIONS(12489), + [aux_sym_paragraph_token1] = ACTIONS(12489), + [aux_sym_subparagraph_token1] = ACTIONS(12489), + [anon_sym_BSLASHitem] = ACTIONS(12489), + [anon_sym_LBRACK] = ACTIONS(12487), + [anon_sym_RBRACK] = ACTIONS(12487), + [anon_sym_LBRACE] = ACTIONS(12487), + [anon_sym_RBRACE] = ACTIONS(12487), + [anon_sym_LPAREN] = ACTIONS(12487), + [anon_sym_COMMA] = ACTIONS(12487), + [anon_sym_EQ] = ACTIONS(12487), + [sym_word] = ACTIONS(12487), + [sym_param] = ACTIONS(12487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12487), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12487), + [anon_sym_DOLLAR] = ACTIONS(12489), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12487), + [anon_sym_BSLASHbegin] = ACTIONS(12489), + [anon_sym_BSLASHcaption] = ACTIONS(12489), + [anon_sym_BSLASHcite] = ACTIONS(12489), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCite] = ACTIONS(12489), + [anon_sym_BSLASHnocite] = ACTIONS(12489), + [anon_sym_BSLASHcitet] = ACTIONS(12489), + [anon_sym_BSLASHcitep] = ACTIONS(12489), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteauthor] = ACTIONS(12489), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12489), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitetitle] = ACTIONS(12489), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteyear] = ACTIONS(12489), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitedate] = ACTIONS(12489), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteurl] = ACTIONS(12489), + [anon_sym_BSLASHfullcite] = ACTIONS(12489), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12489), + [anon_sym_BSLASHcitealt] = ACTIONS(12489), + [anon_sym_BSLASHcitealp] = ACTIONS(12489), + [anon_sym_BSLASHcitetext] = ACTIONS(12489), + [anon_sym_BSLASHparencite] = ACTIONS(12489), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHParencite] = ACTIONS(12489), + [anon_sym_BSLASHfootcite] = ACTIONS(12489), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12489), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12489), + [anon_sym_BSLASHtextcite] = ACTIONS(12489), + [anon_sym_BSLASHTextcite] = ACTIONS(12489), + [anon_sym_BSLASHsmartcite] = ACTIONS(12489), + [anon_sym_BSLASHSmartcite] = ACTIONS(12489), + [anon_sym_BSLASHsupercite] = ACTIONS(12489), + [anon_sym_BSLASHautocite] = ACTIONS(12489), + [anon_sym_BSLASHAutocite] = ACTIONS(12489), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHvolcite] = ACTIONS(12489), + [anon_sym_BSLASHVolcite] = ACTIONS(12489), + [anon_sym_BSLASHpvolcite] = ACTIONS(12489), + [anon_sym_BSLASHPvolcite] = ACTIONS(12489), + [anon_sym_BSLASHfvolcite] = ACTIONS(12489), + [anon_sym_BSLASHftvolcite] = ACTIONS(12489), + [anon_sym_BSLASHsvolcite] = ACTIONS(12489), + [anon_sym_BSLASHSvolcite] = ACTIONS(12489), + [anon_sym_BSLASHtvolcite] = ACTIONS(12489), + [anon_sym_BSLASHTvolcite] = ACTIONS(12489), + [anon_sym_BSLASHavolcite] = ACTIONS(12489), + [anon_sym_BSLASHAvolcite] = ACTIONS(12489), + [anon_sym_BSLASHnotecite] = ACTIONS(12489), + [anon_sym_BSLASHpnotecite] = ACTIONS(12489), + [anon_sym_BSLASHPnotecite] = ACTIONS(12489), + [anon_sym_BSLASHfnotecite] = ACTIONS(12489), + [anon_sym_BSLASHusepackage] = ACTIONS(12489), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12489), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12489), + [anon_sym_BSLASHinclude] = ACTIONS(12489), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12489), + [anon_sym_BSLASHinput] = ACTIONS(12489), + [anon_sym_BSLASHsubfile] = ACTIONS(12489), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12489), + [anon_sym_BSLASHbibliography] = ACTIONS(12489), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12489), + [anon_sym_BSLASHincludesvg] = ACTIONS(12489), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12489), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12489), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12489), + [anon_sym_BSLASHimport] = ACTIONS(12489), + [anon_sym_BSLASHsubimport] = ACTIONS(12489), + [anon_sym_BSLASHinputfrom] = ACTIONS(12489), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12489), + [anon_sym_BSLASHincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHlabel] = ACTIONS(12489), + [anon_sym_BSLASHref] = ACTIONS(12489), + [anon_sym_BSLASHvref] = ACTIONS(12489), + [anon_sym_BSLASHVref] = ACTIONS(12489), + [anon_sym_BSLASHautoref] = ACTIONS(12489), + [anon_sym_BSLASHpageref] = ACTIONS(12489), + [anon_sym_BSLASHcref] = ACTIONS(12489), + [anon_sym_BSLASHCref] = ACTIONS(12489), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnameCref] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHlabelcref] = ACTIONS(12489), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12489), + [anon_sym_BSLASHeqref] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange] = ACTIONS(12489), + [anon_sym_BSLASHCrefrange] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewlabel] = ACTIONS(12489), + [anon_sym_BSLASHnewcommand] = ACTIONS(12489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12489), + [anon_sym_BSLASHgls] = ACTIONS(12489), + [anon_sym_BSLASHGls] = ACTIONS(12489), + [anon_sym_BSLASHGLS] = ACTIONS(12489), + [anon_sym_BSLASHglspl] = ACTIONS(12489), + [anon_sym_BSLASHGlspl] = ACTIONS(12489), + [anon_sym_BSLASHGLSpl] = ACTIONS(12489), + [anon_sym_BSLASHglsdisp] = ACTIONS(12489), + [anon_sym_BSLASHglslink] = ACTIONS(12489), + [anon_sym_BSLASHglstext] = ACTIONS(12489), + [anon_sym_BSLASHGlstext] = ACTIONS(12489), + [anon_sym_BSLASHGLStext] = ACTIONS(12489), + [anon_sym_BSLASHglsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12489), + [anon_sym_BSLASHglsplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSplural] = ACTIONS(12489), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHglsname] = ACTIONS(12489), + [anon_sym_BSLASHGlsname] = ACTIONS(12489), + [anon_sym_BSLASHGLSname] = ACTIONS(12489), + [anon_sym_BSLASHglssymbol] = ACTIONS(12489), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12489), + [anon_sym_BSLASHglsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12489), + [anon_sym_BSLASHglsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12489), + [anon_sym_BSLASHglsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12489), + [anon_sym_BSLASHglsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12489), + [anon_sym_BSLASHglsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12489), + [anon_sym_BSLASHnewacronym] = ACTIONS(12489), + [anon_sym_BSLASHacrshort] = ACTIONS(12489), + [anon_sym_BSLASHAcrshort] = ACTIONS(12489), + [anon_sym_BSLASHACRshort] = ACTIONS(12489), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12489), + [anon_sym_BSLASHacrlong] = ACTIONS(12489), + [anon_sym_BSLASHAcrlong] = ACTIONS(12489), + [anon_sym_BSLASHACRlong] = ACTIONS(12489), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12489), + [anon_sym_BSLASHacrfull] = ACTIONS(12489), + [anon_sym_BSLASHAcrfull] = ACTIONS(12489), + [anon_sym_BSLASHACRfull] = ACTIONS(12489), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12489), + [anon_sym_BSLASHacs] = ACTIONS(12489), + [anon_sym_BSLASHAcs] = ACTIONS(12489), + [anon_sym_BSLASHacsp] = ACTIONS(12489), + [anon_sym_BSLASHAcsp] = ACTIONS(12489), + [anon_sym_BSLASHacl] = ACTIONS(12489), + [anon_sym_BSLASHAcl] = ACTIONS(12489), + [anon_sym_BSLASHaclp] = ACTIONS(12489), + [anon_sym_BSLASHAclp] = ACTIONS(12489), + [anon_sym_BSLASHacf] = ACTIONS(12489), + [anon_sym_BSLASHAcf] = ACTIONS(12489), + [anon_sym_BSLASHacfp] = ACTIONS(12489), + [anon_sym_BSLASHAcfp] = ACTIONS(12489), + [anon_sym_BSLASHac] = ACTIONS(12489), + [anon_sym_BSLASHAc] = ACTIONS(12489), + [anon_sym_BSLASHacp] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12489), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12489), + [anon_sym_BSLASHcolor] = ACTIONS(12489), + [anon_sym_BSLASHcolorbox] = ACTIONS(12489), + [anon_sym_BSLASHtextcolor] = ACTIONS(12489), + [anon_sym_BSLASHpagecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12489), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12489), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12489), + }, + [1257] = { + [sym_generic_command_name] = ACTIONS(12505), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12505), + [aux_sym_subsection_token1] = ACTIONS(12505), + [aux_sym_subsubsection_token1] = ACTIONS(12505), + [aux_sym_paragraph_token1] = ACTIONS(12505), + [aux_sym_subparagraph_token1] = ACTIONS(12505), + [anon_sym_BSLASHitem] = ACTIONS(12505), + [anon_sym_LBRACK] = ACTIONS(12503), + [anon_sym_RBRACK] = ACTIONS(12503), + [anon_sym_LBRACE] = ACTIONS(12503), + [anon_sym_RBRACE] = ACTIONS(12503), + [anon_sym_LPAREN] = ACTIONS(12503), + [anon_sym_COMMA] = ACTIONS(12503), + [anon_sym_EQ] = ACTIONS(12503), + [sym_word] = ACTIONS(12503), + [sym_param] = ACTIONS(12503), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12503), + [anon_sym_DOLLAR] = ACTIONS(12505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12503), + [anon_sym_BSLASHbegin] = ACTIONS(12505), + [anon_sym_BSLASHcaption] = ACTIONS(12505), + [anon_sym_BSLASHcite] = ACTIONS(12505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCite] = ACTIONS(12505), + [anon_sym_BSLASHnocite] = ACTIONS(12505), + [anon_sym_BSLASHcitet] = ACTIONS(12505), + [anon_sym_BSLASHcitep] = ACTIONS(12505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteauthor] = ACTIONS(12505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitetitle] = ACTIONS(12505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteyear] = ACTIONS(12505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitedate] = ACTIONS(12505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteurl] = ACTIONS(12505), + [anon_sym_BSLASHfullcite] = ACTIONS(12505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12505), + [anon_sym_BSLASHcitealt] = ACTIONS(12505), + [anon_sym_BSLASHcitealp] = ACTIONS(12505), + [anon_sym_BSLASHcitetext] = ACTIONS(12505), + [anon_sym_BSLASHparencite] = ACTIONS(12505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHParencite] = ACTIONS(12505), + [anon_sym_BSLASHfootcite] = ACTIONS(12505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12505), + [anon_sym_BSLASHtextcite] = ACTIONS(12505), + [anon_sym_BSLASHTextcite] = ACTIONS(12505), + [anon_sym_BSLASHsmartcite] = ACTIONS(12505), + [anon_sym_BSLASHSmartcite] = ACTIONS(12505), + [anon_sym_BSLASHsupercite] = ACTIONS(12505), + [anon_sym_BSLASHautocite] = ACTIONS(12505), + [anon_sym_BSLASHAutocite] = ACTIONS(12505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHvolcite] = ACTIONS(12505), + [anon_sym_BSLASHVolcite] = ACTIONS(12505), + [anon_sym_BSLASHpvolcite] = ACTIONS(12505), + [anon_sym_BSLASHPvolcite] = ACTIONS(12505), + [anon_sym_BSLASHfvolcite] = ACTIONS(12505), + [anon_sym_BSLASHftvolcite] = ACTIONS(12505), + [anon_sym_BSLASHsvolcite] = ACTIONS(12505), + [anon_sym_BSLASHSvolcite] = ACTIONS(12505), + [anon_sym_BSLASHtvolcite] = ACTIONS(12505), + [anon_sym_BSLASHTvolcite] = ACTIONS(12505), + [anon_sym_BSLASHavolcite] = ACTIONS(12505), + [anon_sym_BSLASHAvolcite] = ACTIONS(12505), + [anon_sym_BSLASHnotecite] = ACTIONS(12505), + [anon_sym_BSLASHpnotecite] = ACTIONS(12505), + [anon_sym_BSLASHPnotecite] = ACTIONS(12505), + [anon_sym_BSLASHfnotecite] = ACTIONS(12505), + [anon_sym_BSLASHusepackage] = ACTIONS(12505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12505), + [anon_sym_BSLASHinclude] = ACTIONS(12505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12505), + [anon_sym_BSLASHinput] = ACTIONS(12505), + [anon_sym_BSLASHsubfile] = ACTIONS(12505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12505), + [anon_sym_BSLASHbibliography] = ACTIONS(12505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12505), + [anon_sym_BSLASHincludesvg] = ACTIONS(12505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12505), + [anon_sym_BSLASHimport] = ACTIONS(12505), + [anon_sym_BSLASHsubimport] = ACTIONS(12505), + [anon_sym_BSLASHinputfrom] = ACTIONS(12505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12505), + [anon_sym_BSLASHincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHlabel] = ACTIONS(12505), + [anon_sym_BSLASHref] = ACTIONS(12505), + [anon_sym_BSLASHvref] = ACTIONS(12505), + [anon_sym_BSLASHVref] = ACTIONS(12505), + [anon_sym_BSLASHautoref] = ACTIONS(12505), + [anon_sym_BSLASHpageref] = ACTIONS(12505), + [anon_sym_BSLASHcref] = ACTIONS(12505), + [anon_sym_BSLASHCref] = ACTIONS(12505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnameCref] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHlabelcref] = ACTIONS(12505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12505), + [anon_sym_BSLASHeqref] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange] = ACTIONS(12505), + [anon_sym_BSLASHCrefrange] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewlabel] = ACTIONS(12505), + [anon_sym_BSLASHnewcommand] = ACTIONS(12505), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12505), + [anon_sym_BSLASHgls] = ACTIONS(12505), + [anon_sym_BSLASHGls] = ACTIONS(12505), + [anon_sym_BSLASHGLS] = ACTIONS(12505), + [anon_sym_BSLASHglspl] = ACTIONS(12505), + [anon_sym_BSLASHGlspl] = ACTIONS(12505), + [anon_sym_BSLASHGLSpl] = ACTIONS(12505), + [anon_sym_BSLASHglsdisp] = ACTIONS(12505), + [anon_sym_BSLASHglslink] = ACTIONS(12505), + [anon_sym_BSLASHglstext] = ACTIONS(12505), + [anon_sym_BSLASHGlstext] = ACTIONS(12505), + [anon_sym_BSLASHGLStext] = ACTIONS(12505), + [anon_sym_BSLASHglsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12505), + [anon_sym_BSLASHglsplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSplural] = ACTIONS(12505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHglsname] = ACTIONS(12505), + [anon_sym_BSLASHGlsname] = ACTIONS(12505), + [anon_sym_BSLASHGLSname] = ACTIONS(12505), + [anon_sym_BSLASHglssymbol] = ACTIONS(12505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12505), + [anon_sym_BSLASHglsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12505), + [anon_sym_BSLASHglsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12505), + [anon_sym_BSLASHglsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12505), + [anon_sym_BSLASHglsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12505), + [anon_sym_BSLASHglsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12505), + [anon_sym_BSLASHnewacronym] = ACTIONS(12505), + [anon_sym_BSLASHacrshort] = ACTIONS(12505), + [anon_sym_BSLASHAcrshort] = ACTIONS(12505), + [anon_sym_BSLASHACRshort] = ACTIONS(12505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12505), + [anon_sym_BSLASHacrlong] = ACTIONS(12505), + [anon_sym_BSLASHAcrlong] = ACTIONS(12505), + [anon_sym_BSLASHACRlong] = ACTIONS(12505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12505), + [anon_sym_BSLASHacrfull] = ACTIONS(12505), + [anon_sym_BSLASHAcrfull] = ACTIONS(12505), + [anon_sym_BSLASHACRfull] = ACTIONS(12505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12505), + [anon_sym_BSLASHacs] = ACTIONS(12505), + [anon_sym_BSLASHAcs] = ACTIONS(12505), + [anon_sym_BSLASHacsp] = ACTIONS(12505), + [anon_sym_BSLASHAcsp] = ACTIONS(12505), + [anon_sym_BSLASHacl] = ACTIONS(12505), + [anon_sym_BSLASHAcl] = ACTIONS(12505), + [anon_sym_BSLASHaclp] = ACTIONS(12505), + [anon_sym_BSLASHAclp] = ACTIONS(12505), + [anon_sym_BSLASHacf] = ACTIONS(12505), + [anon_sym_BSLASHAcf] = ACTIONS(12505), + [anon_sym_BSLASHacfp] = ACTIONS(12505), + [anon_sym_BSLASHAcfp] = ACTIONS(12505), + [anon_sym_BSLASHac] = ACTIONS(12505), + [anon_sym_BSLASHAc] = ACTIONS(12505), + [anon_sym_BSLASHacp] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12505), + [anon_sym_BSLASHcolor] = ACTIONS(12505), + [anon_sym_BSLASHcolorbox] = ACTIONS(12505), + [anon_sym_BSLASHtextcolor] = ACTIONS(12505), + [anon_sym_BSLASHpagecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12505), + }, + [1258] = { + [sym_generic_command_name] = ACTIONS(12535), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_section_token1] = ACTIONS(12535), + [aux_sym_subsection_token1] = ACTIONS(12535), + [aux_sym_subsubsection_token1] = ACTIONS(12535), + [aux_sym_paragraph_token1] = ACTIONS(12535), + [aux_sym_subparagraph_token1] = ACTIONS(12535), + [anon_sym_BSLASHitem] = ACTIONS(12535), + [anon_sym_LBRACK] = ACTIONS(12533), + [anon_sym_RBRACK] = ACTIONS(12533), + [anon_sym_LBRACE] = ACTIONS(12533), + [anon_sym_RBRACE] = ACTIONS(12533), + [anon_sym_LPAREN] = ACTIONS(12533), + [anon_sym_COMMA] = ACTIONS(12533), + [anon_sym_EQ] = ACTIONS(12533), + [sym_word] = ACTIONS(12533), + [sym_param] = ACTIONS(12533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12533), + [anon_sym_DOLLAR] = ACTIONS(12535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12533), + [anon_sym_BSLASHbegin] = ACTIONS(12535), + [anon_sym_BSLASHcaption] = ACTIONS(12535), + [anon_sym_BSLASHcite] = ACTIONS(12535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCite] = ACTIONS(12535), + [anon_sym_BSLASHnocite] = ACTIONS(12535), + [anon_sym_BSLASHcitet] = ACTIONS(12535), + [anon_sym_BSLASHcitep] = ACTIONS(12535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteauthor] = ACTIONS(12535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitetitle] = ACTIONS(12535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteyear] = ACTIONS(12535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitedate] = ACTIONS(12535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteurl] = ACTIONS(12535), + [anon_sym_BSLASHfullcite] = ACTIONS(12535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12535), + [anon_sym_BSLASHcitealt] = ACTIONS(12535), + [anon_sym_BSLASHcitealp] = ACTIONS(12535), + [anon_sym_BSLASHcitetext] = ACTIONS(12535), + [anon_sym_BSLASHparencite] = ACTIONS(12535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHParencite] = ACTIONS(12535), + [anon_sym_BSLASHfootcite] = ACTIONS(12535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12535), + [anon_sym_BSLASHtextcite] = ACTIONS(12535), + [anon_sym_BSLASHTextcite] = ACTIONS(12535), + [anon_sym_BSLASHsmartcite] = ACTIONS(12535), + [anon_sym_BSLASHSmartcite] = ACTIONS(12535), + [anon_sym_BSLASHsupercite] = ACTIONS(12535), + [anon_sym_BSLASHautocite] = ACTIONS(12535), + [anon_sym_BSLASHAutocite] = ACTIONS(12535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHvolcite] = ACTIONS(12535), + [anon_sym_BSLASHVolcite] = ACTIONS(12535), + [anon_sym_BSLASHpvolcite] = ACTIONS(12535), + [anon_sym_BSLASHPvolcite] = ACTIONS(12535), + [anon_sym_BSLASHfvolcite] = ACTIONS(12535), + [anon_sym_BSLASHftvolcite] = ACTIONS(12535), + [anon_sym_BSLASHsvolcite] = ACTIONS(12535), + [anon_sym_BSLASHSvolcite] = ACTIONS(12535), + [anon_sym_BSLASHtvolcite] = ACTIONS(12535), + [anon_sym_BSLASHTvolcite] = ACTIONS(12535), + [anon_sym_BSLASHavolcite] = ACTIONS(12535), + [anon_sym_BSLASHAvolcite] = ACTIONS(12535), + [anon_sym_BSLASHnotecite] = ACTIONS(12535), + [anon_sym_BSLASHpnotecite] = ACTIONS(12535), + [anon_sym_BSLASHPnotecite] = ACTIONS(12535), + [anon_sym_BSLASHfnotecite] = ACTIONS(12535), + [anon_sym_BSLASHusepackage] = ACTIONS(12535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12535), + [anon_sym_BSLASHinclude] = ACTIONS(12535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12535), + [anon_sym_BSLASHinput] = ACTIONS(12535), + [anon_sym_BSLASHsubfile] = ACTIONS(12535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12535), + [anon_sym_BSLASHbibliography] = ACTIONS(12535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12535), + [anon_sym_BSLASHincludesvg] = ACTIONS(12535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12535), + [anon_sym_BSLASHimport] = ACTIONS(12535), + [anon_sym_BSLASHsubimport] = ACTIONS(12535), + [anon_sym_BSLASHinputfrom] = ACTIONS(12535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12535), + [anon_sym_BSLASHincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHlabel] = ACTIONS(12535), + [anon_sym_BSLASHref] = ACTIONS(12535), + [anon_sym_BSLASHvref] = ACTIONS(12535), + [anon_sym_BSLASHVref] = ACTIONS(12535), + [anon_sym_BSLASHautoref] = ACTIONS(12535), + [anon_sym_BSLASHpageref] = ACTIONS(12535), + [anon_sym_BSLASHcref] = ACTIONS(12535), + [anon_sym_BSLASHCref] = ACTIONS(12535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnameCref] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHlabelcref] = ACTIONS(12535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12535), + [anon_sym_BSLASHeqref] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange] = ACTIONS(12535), + [anon_sym_BSLASHCrefrange] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewlabel] = ACTIONS(12535), + [anon_sym_BSLASHnewcommand] = ACTIONS(12535), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12535), + [anon_sym_BSLASHgls] = ACTIONS(12535), + [anon_sym_BSLASHGls] = ACTIONS(12535), + [anon_sym_BSLASHGLS] = ACTIONS(12535), + [anon_sym_BSLASHglspl] = ACTIONS(12535), + [anon_sym_BSLASHGlspl] = ACTIONS(12535), + [anon_sym_BSLASHGLSpl] = ACTIONS(12535), + [anon_sym_BSLASHglsdisp] = ACTIONS(12535), + [anon_sym_BSLASHglslink] = ACTIONS(12535), + [anon_sym_BSLASHglstext] = ACTIONS(12535), + [anon_sym_BSLASHGlstext] = ACTIONS(12535), + [anon_sym_BSLASHGLStext] = ACTIONS(12535), + [anon_sym_BSLASHglsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12535), + [anon_sym_BSLASHglsplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSplural] = ACTIONS(12535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHglsname] = ACTIONS(12535), + [anon_sym_BSLASHGlsname] = ACTIONS(12535), + [anon_sym_BSLASHGLSname] = ACTIONS(12535), + [anon_sym_BSLASHglssymbol] = ACTIONS(12535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12535), + [anon_sym_BSLASHglsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12535), + [anon_sym_BSLASHglsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12535), + [anon_sym_BSLASHglsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12535), + [anon_sym_BSLASHglsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12535), + [anon_sym_BSLASHglsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12535), + [anon_sym_BSLASHnewacronym] = ACTIONS(12535), + [anon_sym_BSLASHacrshort] = ACTIONS(12535), + [anon_sym_BSLASHAcrshort] = ACTIONS(12535), + [anon_sym_BSLASHACRshort] = ACTIONS(12535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12535), + [anon_sym_BSLASHacrlong] = ACTIONS(12535), + [anon_sym_BSLASHAcrlong] = ACTIONS(12535), + [anon_sym_BSLASHACRlong] = ACTIONS(12535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12535), + [anon_sym_BSLASHacrfull] = ACTIONS(12535), + [anon_sym_BSLASHAcrfull] = ACTIONS(12535), + [anon_sym_BSLASHACRfull] = ACTIONS(12535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12535), + [anon_sym_BSLASHacs] = ACTIONS(12535), + [anon_sym_BSLASHAcs] = ACTIONS(12535), + [anon_sym_BSLASHacsp] = ACTIONS(12535), + [anon_sym_BSLASHAcsp] = ACTIONS(12535), + [anon_sym_BSLASHacl] = ACTIONS(12535), + [anon_sym_BSLASHAcl] = ACTIONS(12535), + [anon_sym_BSLASHaclp] = ACTIONS(12535), + [anon_sym_BSLASHAclp] = ACTIONS(12535), + [anon_sym_BSLASHacf] = ACTIONS(12535), + [anon_sym_BSLASHAcf] = ACTIONS(12535), + [anon_sym_BSLASHacfp] = ACTIONS(12535), + [anon_sym_BSLASHAcfp] = ACTIONS(12535), + [anon_sym_BSLASHac] = ACTIONS(12535), + [anon_sym_BSLASHAc] = ACTIONS(12535), + [anon_sym_BSLASHacp] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12535), + [anon_sym_BSLASHcolor] = ACTIONS(12535), + [anon_sym_BSLASHcolorbox] = ACTIONS(12535), + [anon_sym_BSLASHtextcolor] = ACTIONS(12535), + [anon_sym_BSLASHpagecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12535), + }, + [1259] = { + [sym_generic_command_name] = ACTIONS(12217), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12217), + [aux_sym_subsubsection_token1] = ACTIONS(12217), + [aux_sym_paragraph_token1] = ACTIONS(12217), + [aux_sym_subparagraph_token1] = ACTIONS(12217), + [anon_sym_BSLASHitem] = ACTIONS(12217), + [anon_sym_LBRACK] = ACTIONS(12215), + [anon_sym_RBRACK] = ACTIONS(12215), + [anon_sym_LBRACE] = ACTIONS(12215), + [anon_sym_RBRACE] = ACTIONS(12215), + [anon_sym_LPAREN] = ACTIONS(12215), + [anon_sym_COMMA] = ACTIONS(12215), + [anon_sym_EQ] = ACTIONS(12215), + [sym_word] = ACTIONS(12215), + [sym_param] = ACTIONS(12215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12215), + [anon_sym_DOLLAR] = ACTIONS(12217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12215), + [anon_sym_BSLASHbegin] = ACTIONS(12217), + [anon_sym_BSLASHcaption] = ACTIONS(12217), + [anon_sym_BSLASHcite] = ACTIONS(12217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCite] = ACTIONS(12217), + [anon_sym_BSLASHnocite] = ACTIONS(12217), + [anon_sym_BSLASHcitet] = ACTIONS(12217), + [anon_sym_BSLASHcitep] = ACTIONS(12217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteauthor] = ACTIONS(12217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitetitle] = ACTIONS(12217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteyear] = ACTIONS(12217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitedate] = ACTIONS(12217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteurl] = ACTIONS(12217), + [anon_sym_BSLASHfullcite] = ACTIONS(12217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12217), + [anon_sym_BSLASHcitealt] = ACTIONS(12217), + [anon_sym_BSLASHcitealp] = ACTIONS(12217), + [anon_sym_BSLASHcitetext] = ACTIONS(12217), + [anon_sym_BSLASHparencite] = ACTIONS(12217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHParencite] = ACTIONS(12217), + [anon_sym_BSLASHfootcite] = ACTIONS(12217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12217), + [anon_sym_BSLASHtextcite] = ACTIONS(12217), + [anon_sym_BSLASHTextcite] = ACTIONS(12217), + [anon_sym_BSLASHsmartcite] = ACTIONS(12217), + [anon_sym_BSLASHSmartcite] = ACTIONS(12217), + [anon_sym_BSLASHsupercite] = ACTIONS(12217), + [anon_sym_BSLASHautocite] = ACTIONS(12217), + [anon_sym_BSLASHAutocite] = ACTIONS(12217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHvolcite] = ACTIONS(12217), + [anon_sym_BSLASHVolcite] = ACTIONS(12217), + [anon_sym_BSLASHpvolcite] = ACTIONS(12217), + [anon_sym_BSLASHPvolcite] = ACTIONS(12217), + [anon_sym_BSLASHfvolcite] = ACTIONS(12217), + [anon_sym_BSLASHftvolcite] = ACTIONS(12217), + [anon_sym_BSLASHsvolcite] = ACTIONS(12217), + [anon_sym_BSLASHSvolcite] = ACTIONS(12217), + [anon_sym_BSLASHtvolcite] = ACTIONS(12217), + [anon_sym_BSLASHTvolcite] = ACTIONS(12217), + [anon_sym_BSLASHavolcite] = ACTIONS(12217), + [anon_sym_BSLASHAvolcite] = ACTIONS(12217), + [anon_sym_BSLASHnotecite] = ACTIONS(12217), + [anon_sym_BSLASHpnotecite] = ACTIONS(12217), + [anon_sym_BSLASHPnotecite] = ACTIONS(12217), + [anon_sym_BSLASHfnotecite] = ACTIONS(12217), + [anon_sym_BSLASHusepackage] = ACTIONS(12217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12217), + [anon_sym_BSLASHinclude] = ACTIONS(12217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12217), + [anon_sym_BSLASHinput] = ACTIONS(12217), + [anon_sym_BSLASHsubfile] = ACTIONS(12217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12217), + [anon_sym_BSLASHbibliography] = ACTIONS(12217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12217), + [anon_sym_BSLASHincludesvg] = ACTIONS(12217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12217), + [anon_sym_BSLASHimport] = ACTIONS(12217), + [anon_sym_BSLASHsubimport] = ACTIONS(12217), + [anon_sym_BSLASHinputfrom] = ACTIONS(12217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12217), + [anon_sym_BSLASHincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHlabel] = ACTIONS(12217), + [anon_sym_BSLASHref] = ACTIONS(12217), + [anon_sym_BSLASHvref] = ACTIONS(12217), + [anon_sym_BSLASHVref] = ACTIONS(12217), + [anon_sym_BSLASHautoref] = ACTIONS(12217), + [anon_sym_BSLASHpageref] = ACTIONS(12217), + [anon_sym_BSLASHcref] = ACTIONS(12217), + [anon_sym_BSLASHCref] = ACTIONS(12217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnameCref] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHlabelcref] = ACTIONS(12217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12217), + [anon_sym_BSLASHeqref] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange] = ACTIONS(12217), + [anon_sym_BSLASHCrefrange] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewlabel] = ACTIONS(12217), + [anon_sym_BSLASHnewcommand] = ACTIONS(12217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12217), + [anon_sym_BSLASHgls] = ACTIONS(12217), + [anon_sym_BSLASHGls] = ACTIONS(12217), + [anon_sym_BSLASHGLS] = ACTIONS(12217), + [anon_sym_BSLASHglspl] = ACTIONS(12217), + [anon_sym_BSLASHGlspl] = ACTIONS(12217), + [anon_sym_BSLASHGLSpl] = ACTIONS(12217), + [anon_sym_BSLASHglsdisp] = ACTIONS(12217), + [anon_sym_BSLASHglslink] = ACTIONS(12217), + [anon_sym_BSLASHglstext] = ACTIONS(12217), + [anon_sym_BSLASHGlstext] = ACTIONS(12217), + [anon_sym_BSLASHGLStext] = ACTIONS(12217), + [anon_sym_BSLASHglsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12217), + [anon_sym_BSLASHglsplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSplural] = ACTIONS(12217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHglsname] = ACTIONS(12217), + [anon_sym_BSLASHGlsname] = ACTIONS(12217), + [anon_sym_BSLASHGLSname] = ACTIONS(12217), + [anon_sym_BSLASHglssymbol] = ACTIONS(12217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12217), + [anon_sym_BSLASHglsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12217), + [anon_sym_BSLASHglsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12217), + [anon_sym_BSLASHglsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12217), + [anon_sym_BSLASHglsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12217), + [anon_sym_BSLASHglsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12217), + [anon_sym_BSLASHnewacronym] = ACTIONS(12217), + [anon_sym_BSLASHacrshort] = ACTIONS(12217), + [anon_sym_BSLASHAcrshort] = ACTIONS(12217), + [anon_sym_BSLASHACRshort] = ACTIONS(12217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12217), + [anon_sym_BSLASHacrlong] = ACTIONS(12217), + [anon_sym_BSLASHAcrlong] = ACTIONS(12217), + [anon_sym_BSLASHACRlong] = ACTIONS(12217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12217), + [anon_sym_BSLASHacrfull] = ACTIONS(12217), + [anon_sym_BSLASHAcrfull] = ACTIONS(12217), + [anon_sym_BSLASHACRfull] = ACTIONS(12217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12217), + [anon_sym_BSLASHacs] = ACTIONS(12217), + [anon_sym_BSLASHAcs] = ACTIONS(12217), + [anon_sym_BSLASHacsp] = ACTIONS(12217), + [anon_sym_BSLASHAcsp] = ACTIONS(12217), + [anon_sym_BSLASHacl] = ACTIONS(12217), + [anon_sym_BSLASHAcl] = ACTIONS(12217), + [anon_sym_BSLASHaclp] = ACTIONS(12217), + [anon_sym_BSLASHAclp] = ACTIONS(12217), + [anon_sym_BSLASHacf] = ACTIONS(12217), + [anon_sym_BSLASHAcf] = ACTIONS(12217), + [anon_sym_BSLASHacfp] = ACTIONS(12217), + [anon_sym_BSLASHAcfp] = ACTIONS(12217), + [anon_sym_BSLASHac] = ACTIONS(12217), + [anon_sym_BSLASHAc] = ACTIONS(12217), + [anon_sym_BSLASHacp] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12217), + [anon_sym_BSLASHcolor] = ACTIONS(12217), + [anon_sym_BSLASHcolorbox] = ACTIONS(12217), + [anon_sym_BSLASHtextcolor] = ACTIONS(12217), + [anon_sym_BSLASHpagecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12217), + }, + [1260] = { + [sym_generic_command_name] = ACTIONS(12221), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12221), + [aux_sym_subsubsection_token1] = ACTIONS(12221), + [aux_sym_paragraph_token1] = ACTIONS(12221), + [aux_sym_subparagraph_token1] = ACTIONS(12221), + [anon_sym_BSLASHitem] = ACTIONS(12221), + [anon_sym_LBRACK] = ACTIONS(12219), + [anon_sym_RBRACK] = ACTIONS(12219), + [anon_sym_LBRACE] = ACTIONS(12721), + [anon_sym_RBRACE] = ACTIONS(12219), + [anon_sym_LPAREN] = ACTIONS(12219), + [anon_sym_COMMA] = ACTIONS(12219), + [anon_sym_EQ] = ACTIONS(12219), + [sym_word] = ACTIONS(12219), + [sym_param] = ACTIONS(12219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12219), + [anon_sym_DOLLAR] = ACTIONS(12221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12219), + [anon_sym_BSLASHbegin] = ACTIONS(12221), + [anon_sym_BSLASHcaption] = ACTIONS(12221), + [anon_sym_BSLASHcite] = ACTIONS(12221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCite] = ACTIONS(12221), + [anon_sym_BSLASHnocite] = ACTIONS(12221), + [anon_sym_BSLASHcitet] = ACTIONS(12221), + [anon_sym_BSLASHcitep] = ACTIONS(12221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteauthor] = ACTIONS(12221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitetitle] = ACTIONS(12221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteyear] = ACTIONS(12221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitedate] = ACTIONS(12221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteurl] = ACTIONS(12221), + [anon_sym_BSLASHfullcite] = ACTIONS(12221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12221), + [anon_sym_BSLASHcitealt] = ACTIONS(12221), + [anon_sym_BSLASHcitealp] = ACTIONS(12221), + [anon_sym_BSLASHcitetext] = ACTIONS(12221), + [anon_sym_BSLASHparencite] = ACTIONS(12221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHParencite] = ACTIONS(12221), + [anon_sym_BSLASHfootcite] = ACTIONS(12221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12221), + [anon_sym_BSLASHtextcite] = ACTIONS(12221), + [anon_sym_BSLASHTextcite] = ACTIONS(12221), + [anon_sym_BSLASHsmartcite] = ACTIONS(12221), + [anon_sym_BSLASHSmartcite] = ACTIONS(12221), + [anon_sym_BSLASHsupercite] = ACTIONS(12221), + [anon_sym_BSLASHautocite] = ACTIONS(12221), + [anon_sym_BSLASHAutocite] = ACTIONS(12221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHvolcite] = ACTIONS(12221), + [anon_sym_BSLASHVolcite] = ACTIONS(12221), + [anon_sym_BSLASHpvolcite] = ACTIONS(12221), + [anon_sym_BSLASHPvolcite] = ACTIONS(12221), + [anon_sym_BSLASHfvolcite] = ACTIONS(12221), + [anon_sym_BSLASHftvolcite] = ACTIONS(12221), + [anon_sym_BSLASHsvolcite] = ACTIONS(12221), + [anon_sym_BSLASHSvolcite] = ACTIONS(12221), + [anon_sym_BSLASHtvolcite] = ACTIONS(12221), + [anon_sym_BSLASHTvolcite] = ACTIONS(12221), + [anon_sym_BSLASHavolcite] = ACTIONS(12221), + [anon_sym_BSLASHAvolcite] = ACTIONS(12221), + [anon_sym_BSLASHnotecite] = ACTIONS(12221), + [anon_sym_BSLASHpnotecite] = ACTIONS(12221), + [anon_sym_BSLASHPnotecite] = ACTIONS(12221), + [anon_sym_BSLASHfnotecite] = ACTIONS(12221), + [anon_sym_BSLASHusepackage] = ACTIONS(12221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12221), + [anon_sym_BSLASHinclude] = ACTIONS(12221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12221), + [anon_sym_BSLASHinput] = ACTIONS(12221), + [anon_sym_BSLASHsubfile] = ACTIONS(12221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12221), + [anon_sym_BSLASHbibliography] = ACTIONS(12221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12221), + [anon_sym_BSLASHincludesvg] = ACTIONS(12221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12221), + [anon_sym_BSLASHimport] = ACTIONS(12221), + [anon_sym_BSLASHsubimport] = ACTIONS(12221), + [anon_sym_BSLASHinputfrom] = ACTIONS(12221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12221), + [anon_sym_BSLASHincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHlabel] = ACTIONS(12221), + [anon_sym_BSLASHref] = ACTIONS(12221), + [anon_sym_BSLASHvref] = ACTIONS(12221), + [anon_sym_BSLASHVref] = ACTIONS(12221), + [anon_sym_BSLASHautoref] = ACTIONS(12221), + [anon_sym_BSLASHpageref] = ACTIONS(12221), + [anon_sym_BSLASHcref] = ACTIONS(12221), + [anon_sym_BSLASHCref] = ACTIONS(12221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnameCref] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHlabelcref] = ACTIONS(12221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12221), + [anon_sym_BSLASHeqref] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange] = ACTIONS(12221), + [anon_sym_BSLASHCrefrange] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewlabel] = ACTIONS(12221), + [anon_sym_BSLASHnewcommand] = ACTIONS(12221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12221), + [anon_sym_BSLASHgls] = ACTIONS(12221), + [anon_sym_BSLASHGls] = ACTIONS(12221), + [anon_sym_BSLASHGLS] = ACTIONS(12221), + [anon_sym_BSLASHglspl] = ACTIONS(12221), + [anon_sym_BSLASHGlspl] = ACTIONS(12221), + [anon_sym_BSLASHGLSpl] = ACTIONS(12221), + [anon_sym_BSLASHglsdisp] = ACTIONS(12221), + [anon_sym_BSLASHglslink] = ACTIONS(12221), + [anon_sym_BSLASHglstext] = ACTIONS(12221), + [anon_sym_BSLASHGlstext] = ACTIONS(12221), + [anon_sym_BSLASHGLStext] = ACTIONS(12221), + [anon_sym_BSLASHglsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12221), + [anon_sym_BSLASHglsplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSplural] = ACTIONS(12221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHglsname] = ACTIONS(12221), + [anon_sym_BSLASHGlsname] = ACTIONS(12221), + [anon_sym_BSLASHGLSname] = ACTIONS(12221), + [anon_sym_BSLASHglssymbol] = ACTIONS(12221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12221), + [anon_sym_BSLASHglsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12221), + [anon_sym_BSLASHglsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12221), + [anon_sym_BSLASHglsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12221), + [anon_sym_BSLASHglsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12221), + [anon_sym_BSLASHglsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12221), + [anon_sym_BSLASHnewacronym] = ACTIONS(12221), + [anon_sym_BSLASHacrshort] = ACTIONS(12221), + [anon_sym_BSLASHAcrshort] = ACTIONS(12221), + [anon_sym_BSLASHACRshort] = ACTIONS(12221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12221), + [anon_sym_BSLASHacrlong] = ACTIONS(12221), + [anon_sym_BSLASHAcrlong] = ACTIONS(12221), + [anon_sym_BSLASHACRlong] = ACTIONS(12221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12221), + [anon_sym_BSLASHacrfull] = ACTIONS(12221), + [anon_sym_BSLASHAcrfull] = ACTIONS(12221), + [anon_sym_BSLASHACRfull] = ACTIONS(12221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12221), + [anon_sym_BSLASHacs] = ACTIONS(12221), + [anon_sym_BSLASHAcs] = ACTIONS(12221), + [anon_sym_BSLASHacsp] = ACTIONS(12221), + [anon_sym_BSLASHAcsp] = ACTIONS(12221), + [anon_sym_BSLASHacl] = ACTIONS(12221), + [anon_sym_BSLASHAcl] = ACTIONS(12221), + [anon_sym_BSLASHaclp] = ACTIONS(12221), + [anon_sym_BSLASHAclp] = ACTIONS(12221), + [anon_sym_BSLASHacf] = ACTIONS(12221), + [anon_sym_BSLASHAcf] = ACTIONS(12221), + [anon_sym_BSLASHacfp] = ACTIONS(12221), + [anon_sym_BSLASHAcfp] = ACTIONS(12221), + [anon_sym_BSLASHac] = ACTIONS(12221), + [anon_sym_BSLASHAc] = ACTIONS(12221), + [anon_sym_BSLASHacp] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12221), + [anon_sym_BSLASHcolor] = ACTIONS(12221), + [anon_sym_BSLASHcolorbox] = ACTIONS(12221), + [anon_sym_BSLASHtextcolor] = ACTIONS(12221), + [anon_sym_BSLASHpagecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12221), + }, + [1261] = { + [sym_brace_group] = STATE(3077), + [sym_generic_command_name] = ACTIONS(12058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12058), + [aux_sym_paragraph_token1] = ACTIONS(12058), + [aux_sym_subparagraph_token1] = ACTIONS(12058), + [anon_sym_BSLASHitem] = ACTIONS(12058), + [anon_sym_LBRACK] = ACTIONS(12056), + [anon_sym_RBRACK] = ACTIONS(12056), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12056), + [anon_sym_LPAREN] = ACTIONS(12056), + [anon_sym_COMMA] = ACTIONS(12056), + [anon_sym_EQ] = ACTIONS(12056), + [sym_word] = ACTIONS(12056), + [sym_param] = ACTIONS(12056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12056), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12056), + [anon_sym_DOLLAR] = ACTIONS(12058), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12056), + [anon_sym_BSLASHbegin] = ACTIONS(12058), + [anon_sym_BSLASHcaption] = ACTIONS(12058), + [anon_sym_BSLASHcite] = ACTIONS(12058), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCite] = ACTIONS(12058), + [anon_sym_BSLASHnocite] = ACTIONS(12058), + [anon_sym_BSLASHcitet] = ACTIONS(12058), + [anon_sym_BSLASHcitep] = ACTIONS(12058), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteauthor] = ACTIONS(12058), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12058), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitetitle] = ACTIONS(12058), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteyear] = ACTIONS(12058), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitedate] = ACTIONS(12058), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteurl] = ACTIONS(12058), + [anon_sym_BSLASHfullcite] = ACTIONS(12058), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12058), + [anon_sym_BSLASHcitealt] = ACTIONS(12058), + [anon_sym_BSLASHcitealp] = ACTIONS(12058), + [anon_sym_BSLASHcitetext] = ACTIONS(12058), + [anon_sym_BSLASHparencite] = ACTIONS(12058), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHParencite] = ACTIONS(12058), + [anon_sym_BSLASHfootcite] = ACTIONS(12058), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12058), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12058), + [anon_sym_BSLASHtextcite] = ACTIONS(12058), + [anon_sym_BSLASHTextcite] = ACTIONS(12058), + [anon_sym_BSLASHsmartcite] = ACTIONS(12058), + [anon_sym_BSLASHSmartcite] = ACTIONS(12058), + [anon_sym_BSLASHsupercite] = ACTIONS(12058), + [anon_sym_BSLASHautocite] = ACTIONS(12058), + [anon_sym_BSLASHAutocite] = ACTIONS(12058), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHvolcite] = ACTIONS(12058), + [anon_sym_BSLASHVolcite] = ACTIONS(12058), + [anon_sym_BSLASHpvolcite] = ACTIONS(12058), + [anon_sym_BSLASHPvolcite] = ACTIONS(12058), + [anon_sym_BSLASHfvolcite] = ACTIONS(12058), + [anon_sym_BSLASHftvolcite] = ACTIONS(12058), + [anon_sym_BSLASHsvolcite] = ACTIONS(12058), + [anon_sym_BSLASHSvolcite] = ACTIONS(12058), + [anon_sym_BSLASHtvolcite] = ACTIONS(12058), + [anon_sym_BSLASHTvolcite] = ACTIONS(12058), + [anon_sym_BSLASHavolcite] = ACTIONS(12058), + [anon_sym_BSLASHAvolcite] = ACTIONS(12058), + [anon_sym_BSLASHnotecite] = ACTIONS(12058), + [anon_sym_BSLASHpnotecite] = ACTIONS(12058), + [anon_sym_BSLASHPnotecite] = ACTIONS(12058), + [anon_sym_BSLASHfnotecite] = ACTIONS(12058), + [anon_sym_BSLASHusepackage] = ACTIONS(12058), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12058), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12058), + [anon_sym_BSLASHinclude] = ACTIONS(12058), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12058), + [anon_sym_BSLASHinput] = ACTIONS(12058), + [anon_sym_BSLASHsubfile] = ACTIONS(12058), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12058), + [anon_sym_BSLASHbibliography] = ACTIONS(12058), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12058), + [anon_sym_BSLASHincludesvg] = ACTIONS(12058), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12058), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12058), + [anon_sym_BSLASHimport] = ACTIONS(12058), + [anon_sym_BSLASHsubimport] = ACTIONS(12058), + [anon_sym_BSLASHinputfrom] = ACTIONS(12058), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12058), + [anon_sym_BSLASHincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHlabel] = ACTIONS(12058), + [anon_sym_BSLASHref] = ACTIONS(12058), + [anon_sym_BSLASHvref] = ACTIONS(12058), + [anon_sym_BSLASHVref] = ACTIONS(12058), + [anon_sym_BSLASHautoref] = ACTIONS(12058), + [anon_sym_BSLASHpageref] = ACTIONS(12058), + [anon_sym_BSLASHcref] = ACTIONS(12058), + [anon_sym_BSLASHCref] = ACTIONS(12058), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnameCref] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHlabelcref] = ACTIONS(12058), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12058), + [anon_sym_BSLASHeqref] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange] = ACTIONS(12058), + [anon_sym_BSLASHCrefrange] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewlabel] = ACTIONS(12058), + [anon_sym_BSLASHnewcommand] = ACTIONS(12058), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12058), + [anon_sym_BSLASHgls] = ACTIONS(12058), + [anon_sym_BSLASHGls] = ACTIONS(12058), + [anon_sym_BSLASHGLS] = ACTIONS(12058), + [anon_sym_BSLASHglspl] = ACTIONS(12058), + [anon_sym_BSLASHGlspl] = ACTIONS(12058), + [anon_sym_BSLASHGLSpl] = ACTIONS(12058), + [anon_sym_BSLASHglsdisp] = ACTIONS(12058), + [anon_sym_BSLASHglslink] = ACTIONS(12058), + [anon_sym_BSLASHglstext] = ACTIONS(12058), + [anon_sym_BSLASHGlstext] = ACTIONS(12058), + [anon_sym_BSLASHGLStext] = ACTIONS(12058), + [anon_sym_BSLASHglsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12058), + [anon_sym_BSLASHglsplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSplural] = ACTIONS(12058), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHglsname] = ACTIONS(12058), + [anon_sym_BSLASHGlsname] = ACTIONS(12058), + [anon_sym_BSLASHGLSname] = ACTIONS(12058), + [anon_sym_BSLASHglssymbol] = ACTIONS(12058), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12058), + [anon_sym_BSLASHglsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12058), + [anon_sym_BSLASHglsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12058), + [anon_sym_BSLASHglsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12058), + [anon_sym_BSLASHglsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12058), + [anon_sym_BSLASHglsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12058), + [anon_sym_BSLASHnewacronym] = ACTIONS(12058), + [anon_sym_BSLASHacrshort] = ACTIONS(12058), + [anon_sym_BSLASHAcrshort] = ACTIONS(12058), + [anon_sym_BSLASHACRshort] = ACTIONS(12058), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12058), + [anon_sym_BSLASHacrlong] = ACTIONS(12058), + [anon_sym_BSLASHAcrlong] = ACTIONS(12058), + [anon_sym_BSLASHACRlong] = ACTIONS(12058), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12058), + [anon_sym_BSLASHacrfull] = ACTIONS(12058), + [anon_sym_BSLASHAcrfull] = ACTIONS(12058), + [anon_sym_BSLASHACRfull] = ACTIONS(12058), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12058), + [anon_sym_BSLASHacs] = ACTIONS(12058), + [anon_sym_BSLASHAcs] = ACTIONS(12058), + [anon_sym_BSLASHacsp] = ACTIONS(12058), + [anon_sym_BSLASHAcsp] = ACTIONS(12058), + [anon_sym_BSLASHacl] = ACTIONS(12058), + [anon_sym_BSLASHAcl] = ACTIONS(12058), + [anon_sym_BSLASHaclp] = ACTIONS(12058), + [anon_sym_BSLASHAclp] = ACTIONS(12058), + [anon_sym_BSLASHacf] = ACTIONS(12058), + [anon_sym_BSLASHAcf] = ACTIONS(12058), + [anon_sym_BSLASHacfp] = ACTIONS(12058), + [anon_sym_BSLASHAcfp] = ACTIONS(12058), + [anon_sym_BSLASHac] = ACTIONS(12058), + [anon_sym_BSLASHAc] = ACTIONS(12058), + [anon_sym_BSLASHacp] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12058), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12058), + [anon_sym_BSLASHcolor] = ACTIONS(12058), + [anon_sym_BSLASHcolorbox] = ACTIONS(12058), + [anon_sym_BSLASHtextcolor] = ACTIONS(12058), + [anon_sym_BSLASHpagecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12058), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12058), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12058), + }, + [1262] = { + [sym_generic_command_name] = ACTIONS(12235), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12235), + [aux_sym_subsubsection_token1] = ACTIONS(12235), + [aux_sym_paragraph_token1] = ACTIONS(12235), + [aux_sym_subparagraph_token1] = ACTIONS(12235), + [anon_sym_BSLASHitem] = ACTIONS(12235), + [anon_sym_LBRACK] = ACTIONS(12233), + [anon_sym_RBRACK] = ACTIONS(12233), + [anon_sym_LBRACE] = ACTIONS(12233), + [anon_sym_RBRACE] = ACTIONS(12233), + [anon_sym_LPAREN] = ACTIONS(12233), + [anon_sym_COMMA] = ACTIONS(12233), + [anon_sym_EQ] = ACTIONS(12233), + [sym_word] = ACTIONS(12233), + [sym_param] = ACTIONS(12233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12233), + [anon_sym_DOLLAR] = ACTIONS(12235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12233), + [anon_sym_BSLASHbegin] = ACTIONS(12235), + [anon_sym_BSLASHcaption] = ACTIONS(12235), + [anon_sym_BSLASHcite] = ACTIONS(12235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCite] = ACTIONS(12235), + [anon_sym_BSLASHnocite] = ACTIONS(12235), + [anon_sym_BSLASHcitet] = ACTIONS(12235), + [anon_sym_BSLASHcitep] = ACTIONS(12235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteauthor] = ACTIONS(12235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitetitle] = ACTIONS(12235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteyear] = ACTIONS(12235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitedate] = ACTIONS(12235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteurl] = ACTIONS(12235), + [anon_sym_BSLASHfullcite] = ACTIONS(12235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12235), + [anon_sym_BSLASHcitealt] = ACTIONS(12235), + [anon_sym_BSLASHcitealp] = ACTIONS(12235), + [anon_sym_BSLASHcitetext] = ACTIONS(12235), + [anon_sym_BSLASHparencite] = ACTIONS(12235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHParencite] = ACTIONS(12235), + [anon_sym_BSLASHfootcite] = ACTIONS(12235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12235), + [anon_sym_BSLASHtextcite] = ACTIONS(12235), + [anon_sym_BSLASHTextcite] = ACTIONS(12235), + [anon_sym_BSLASHsmartcite] = ACTIONS(12235), + [anon_sym_BSLASHSmartcite] = ACTIONS(12235), + [anon_sym_BSLASHsupercite] = ACTIONS(12235), + [anon_sym_BSLASHautocite] = ACTIONS(12235), + [anon_sym_BSLASHAutocite] = ACTIONS(12235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHvolcite] = ACTIONS(12235), + [anon_sym_BSLASHVolcite] = ACTIONS(12235), + [anon_sym_BSLASHpvolcite] = ACTIONS(12235), + [anon_sym_BSLASHPvolcite] = ACTIONS(12235), + [anon_sym_BSLASHfvolcite] = ACTIONS(12235), + [anon_sym_BSLASHftvolcite] = ACTIONS(12235), + [anon_sym_BSLASHsvolcite] = ACTIONS(12235), + [anon_sym_BSLASHSvolcite] = ACTIONS(12235), + [anon_sym_BSLASHtvolcite] = ACTIONS(12235), + [anon_sym_BSLASHTvolcite] = ACTIONS(12235), + [anon_sym_BSLASHavolcite] = ACTIONS(12235), + [anon_sym_BSLASHAvolcite] = ACTIONS(12235), + [anon_sym_BSLASHnotecite] = ACTIONS(12235), + [anon_sym_BSLASHpnotecite] = ACTIONS(12235), + [anon_sym_BSLASHPnotecite] = ACTIONS(12235), + [anon_sym_BSLASHfnotecite] = ACTIONS(12235), + [anon_sym_BSLASHusepackage] = ACTIONS(12235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12235), + [anon_sym_BSLASHinclude] = ACTIONS(12235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12235), + [anon_sym_BSLASHinput] = ACTIONS(12235), + [anon_sym_BSLASHsubfile] = ACTIONS(12235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12235), + [anon_sym_BSLASHbibliography] = ACTIONS(12235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12235), + [anon_sym_BSLASHincludesvg] = ACTIONS(12235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12235), + [anon_sym_BSLASHimport] = ACTIONS(12235), + [anon_sym_BSLASHsubimport] = ACTIONS(12235), + [anon_sym_BSLASHinputfrom] = ACTIONS(12235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12235), + [anon_sym_BSLASHincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHlabel] = ACTIONS(12235), + [anon_sym_BSLASHref] = ACTIONS(12235), + [anon_sym_BSLASHvref] = ACTIONS(12235), + [anon_sym_BSLASHVref] = ACTIONS(12235), + [anon_sym_BSLASHautoref] = ACTIONS(12235), + [anon_sym_BSLASHpageref] = ACTIONS(12235), + [anon_sym_BSLASHcref] = ACTIONS(12235), + [anon_sym_BSLASHCref] = ACTIONS(12235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnameCref] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHlabelcref] = ACTIONS(12235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12235), + [anon_sym_BSLASHeqref] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange] = ACTIONS(12235), + [anon_sym_BSLASHCrefrange] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewlabel] = ACTIONS(12235), + [anon_sym_BSLASHnewcommand] = ACTIONS(12235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12235), + [anon_sym_BSLASHgls] = ACTIONS(12235), + [anon_sym_BSLASHGls] = ACTIONS(12235), + [anon_sym_BSLASHGLS] = ACTIONS(12235), + [anon_sym_BSLASHglspl] = ACTIONS(12235), + [anon_sym_BSLASHGlspl] = ACTIONS(12235), + [anon_sym_BSLASHGLSpl] = ACTIONS(12235), + [anon_sym_BSLASHglsdisp] = ACTIONS(12235), + [anon_sym_BSLASHglslink] = ACTIONS(12235), + [anon_sym_BSLASHglstext] = ACTIONS(12235), + [anon_sym_BSLASHGlstext] = ACTIONS(12235), + [anon_sym_BSLASHGLStext] = ACTIONS(12235), + [anon_sym_BSLASHglsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12235), + [anon_sym_BSLASHglsplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSplural] = ACTIONS(12235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHglsname] = ACTIONS(12235), + [anon_sym_BSLASHGlsname] = ACTIONS(12235), + [anon_sym_BSLASHGLSname] = ACTIONS(12235), + [anon_sym_BSLASHglssymbol] = ACTIONS(12235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12235), + [anon_sym_BSLASHglsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12235), + [anon_sym_BSLASHglsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12235), + [anon_sym_BSLASHglsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12235), + [anon_sym_BSLASHglsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12235), + [anon_sym_BSLASHglsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12235), + [anon_sym_BSLASHnewacronym] = ACTIONS(12235), + [anon_sym_BSLASHacrshort] = ACTIONS(12235), + [anon_sym_BSLASHAcrshort] = ACTIONS(12235), + [anon_sym_BSLASHACRshort] = ACTIONS(12235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12235), + [anon_sym_BSLASHacrlong] = ACTIONS(12235), + [anon_sym_BSLASHAcrlong] = ACTIONS(12235), + [anon_sym_BSLASHACRlong] = ACTIONS(12235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12235), + [anon_sym_BSLASHacrfull] = ACTIONS(12235), + [anon_sym_BSLASHAcrfull] = ACTIONS(12235), + [anon_sym_BSLASHACRfull] = ACTIONS(12235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12235), + [anon_sym_BSLASHacs] = ACTIONS(12235), + [anon_sym_BSLASHAcs] = ACTIONS(12235), + [anon_sym_BSLASHacsp] = ACTIONS(12235), + [anon_sym_BSLASHAcsp] = ACTIONS(12235), + [anon_sym_BSLASHacl] = ACTIONS(12235), + [anon_sym_BSLASHAcl] = ACTIONS(12235), + [anon_sym_BSLASHaclp] = ACTIONS(12235), + [anon_sym_BSLASHAclp] = ACTIONS(12235), + [anon_sym_BSLASHacf] = ACTIONS(12235), + [anon_sym_BSLASHAcf] = ACTIONS(12235), + [anon_sym_BSLASHacfp] = ACTIONS(12235), + [anon_sym_BSLASHAcfp] = ACTIONS(12235), + [anon_sym_BSLASHac] = ACTIONS(12235), + [anon_sym_BSLASHAc] = ACTIONS(12235), + [anon_sym_BSLASHacp] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12235), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12235), + [anon_sym_BSLASHcolor] = ACTIONS(12235), + [anon_sym_BSLASHcolorbox] = ACTIONS(12235), + [anon_sym_BSLASHtextcolor] = ACTIONS(12235), + [anon_sym_BSLASHpagecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12235), + }, + [1263] = { + [sym_generic_command_name] = ACTIONS(12239), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12239), + [aux_sym_subsubsection_token1] = ACTIONS(12239), + [aux_sym_paragraph_token1] = ACTIONS(12239), + [aux_sym_subparagraph_token1] = ACTIONS(12239), + [anon_sym_BSLASHitem] = ACTIONS(12239), + [anon_sym_LBRACK] = ACTIONS(12237), + [anon_sym_RBRACK] = ACTIONS(12237), + [anon_sym_LBRACE] = ACTIONS(12237), + [anon_sym_RBRACE] = ACTIONS(12237), + [anon_sym_LPAREN] = ACTIONS(12237), + [anon_sym_COMMA] = ACTIONS(12237), + [anon_sym_EQ] = ACTIONS(12237), + [sym_word] = ACTIONS(12237), + [sym_param] = ACTIONS(12237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12237), + [anon_sym_DOLLAR] = ACTIONS(12239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12237), + [anon_sym_BSLASHbegin] = ACTIONS(12239), + [anon_sym_BSLASHcaption] = ACTIONS(12239), + [anon_sym_BSLASHcite] = ACTIONS(12239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCite] = ACTIONS(12239), + [anon_sym_BSLASHnocite] = ACTIONS(12239), + [anon_sym_BSLASHcitet] = ACTIONS(12239), + [anon_sym_BSLASHcitep] = ACTIONS(12239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteauthor] = ACTIONS(12239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitetitle] = ACTIONS(12239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteyear] = ACTIONS(12239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitedate] = ACTIONS(12239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteurl] = ACTIONS(12239), + [anon_sym_BSLASHfullcite] = ACTIONS(12239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12239), + [anon_sym_BSLASHcitealt] = ACTIONS(12239), + [anon_sym_BSLASHcitealp] = ACTIONS(12239), + [anon_sym_BSLASHcitetext] = ACTIONS(12239), + [anon_sym_BSLASHparencite] = ACTIONS(12239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHParencite] = ACTIONS(12239), + [anon_sym_BSLASHfootcite] = ACTIONS(12239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12239), + [anon_sym_BSLASHtextcite] = ACTIONS(12239), + [anon_sym_BSLASHTextcite] = ACTIONS(12239), + [anon_sym_BSLASHsmartcite] = ACTIONS(12239), + [anon_sym_BSLASHSmartcite] = ACTIONS(12239), + [anon_sym_BSLASHsupercite] = ACTIONS(12239), + [anon_sym_BSLASHautocite] = ACTIONS(12239), + [anon_sym_BSLASHAutocite] = ACTIONS(12239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHvolcite] = ACTIONS(12239), + [anon_sym_BSLASHVolcite] = ACTIONS(12239), + [anon_sym_BSLASHpvolcite] = ACTIONS(12239), + [anon_sym_BSLASHPvolcite] = ACTIONS(12239), + [anon_sym_BSLASHfvolcite] = ACTIONS(12239), + [anon_sym_BSLASHftvolcite] = ACTIONS(12239), + [anon_sym_BSLASHsvolcite] = ACTIONS(12239), + [anon_sym_BSLASHSvolcite] = ACTIONS(12239), + [anon_sym_BSLASHtvolcite] = ACTIONS(12239), + [anon_sym_BSLASHTvolcite] = ACTIONS(12239), + [anon_sym_BSLASHavolcite] = ACTIONS(12239), + [anon_sym_BSLASHAvolcite] = ACTIONS(12239), + [anon_sym_BSLASHnotecite] = ACTIONS(12239), + [anon_sym_BSLASHpnotecite] = ACTIONS(12239), + [anon_sym_BSLASHPnotecite] = ACTIONS(12239), + [anon_sym_BSLASHfnotecite] = ACTIONS(12239), + [anon_sym_BSLASHusepackage] = ACTIONS(12239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12239), + [anon_sym_BSLASHinclude] = ACTIONS(12239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12239), + [anon_sym_BSLASHinput] = ACTIONS(12239), + [anon_sym_BSLASHsubfile] = ACTIONS(12239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12239), + [anon_sym_BSLASHbibliography] = ACTIONS(12239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12239), + [anon_sym_BSLASHincludesvg] = ACTIONS(12239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12239), + [anon_sym_BSLASHimport] = ACTIONS(12239), + [anon_sym_BSLASHsubimport] = ACTIONS(12239), + [anon_sym_BSLASHinputfrom] = ACTIONS(12239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12239), + [anon_sym_BSLASHincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHlabel] = ACTIONS(12239), + [anon_sym_BSLASHref] = ACTIONS(12239), + [anon_sym_BSLASHvref] = ACTIONS(12239), + [anon_sym_BSLASHVref] = ACTIONS(12239), + [anon_sym_BSLASHautoref] = ACTIONS(12239), + [anon_sym_BSLASHpageref] = ACTIONS(12239), + [anon_sym_BSLASHcref] = ACTIONS(12239), + [anon_sym_BSLASHCref] = ACTIONS(12239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnameCref] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHlabelcref] = ACTIONS(12239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12239), + [anon_sym_BSLASHeqref] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange] = ACTIONS(12239), + [anon_sym_BSLASHCrefrange] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewlabel] = ACTIONS(12239), + [anon_sym_BSLASHnewcommand] = ACTIONS(12239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12239), + [anon_sym_BSLASHgls] = ACTIONS(12239), + [anon_sym_BSLASHGls] = ACTIONS(12239), + [anon_sym_BSLASHGLS] = ACTIONS(12239), + [anon_sym_BSLASHglspl] = ACTIONS(12239), + [anon_sym_BSLASHGlspl] = ACTIONS(12239), + [anon_sym_BSLASHGLSpl] = ACTIONS(12239), + [anon_sym_BSLASHglsdisp] = ACTIONS(12239), + [anon_sym_BSLASHglslink] = ACTIONS(12239), + [anon_sym_BSLASHglstext] = ACTIONS(12239), + [anon_sym_BSLASHGlstext] = ACTIONS(12239), + [anon_sym_BSLASHGLStext] = ACTIONS(12239), + [anon_sym_BSLASHglsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12239), + [anon_sym_BSLASHglsplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSplural] = ACTIONS(12239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHglsname] = ACTIONS(12239), + [anon_sym_BSLASHGlsname] = ACTIONS(12239), + [anon_sym_BSLASHGLSname] = ACTIONS(12239), + [anon_sym_BSLASHglssymbol] = ACTIONS(12239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12239), + [anon_sym_BSLASHglsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12239), + [anon_sym_BSLASHglsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12239), + [anon_sym_BSLASHglsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12239), + [anon_sym_BSLASHglsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12239), + [anon_sym_BSLASHglsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12239), + [anon_sym_BSLASHnewacronym] = ACTIONS(12239), + [anon_sym_BSLASHacrshort] = ACTIONS(12239), + [anon_sym_BSLASHAcrshort] = ACTIONS(12239), + [anon_sym_BSLASHACRshort] = ACTIONS(12239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12239), + [anon_sym_BSLASHacrlong] = ACTIONS(12239), + [anon_sym_BSLASHAcrlong] = ACTIONS(12239), + [anon_sym_BSLASHACRlong] = ACTIONS(12239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12239), + [anon_sym_BSLASHacrfull] = ACTIONS(12239), + [anon_sym_BSLASHAcrfull] = ACTIONS(12239), + [anon_sym_BSLASHACRfull] = ACTIONS(12239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12239), + [anon_sym_BSLASHacs] = ACTIONS(12239), + [anon_sym_BSLASHAcs] = ACTIONS(12239), + [anon_sym_BSLASHacsp] = ACTIONS(12239), + [anon_sym_BSLASHAcsp] = ACTIONS(12239), + [anon_sym_BSLASHacl] = ACTIONS(12239), + [anon_sym_BSLASHAcl] = ACTIONS(12239), + [anon_sym_BSLASHaclp] = ACTIONS(12239), + [anon_sym_BSLASHAclp] = ACTIONS(12239), + [anon_sym_BSLASHacf] = ACTIONS(12239), + [anon_sym_BSLASHAcf] = ACTIONS(12239), + [anon_sym_BSLASHacfp] = ACTIONS(12239), + [anon_sym_BSLASHAcfp] = ACTIONS(12239), + [anon_sym_BSLASHac] = ACTIONS(12239), + [anon_sym_BSLASHAc] = ACTIONS(12239), + [anon_sym_BSLASHacp] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12239), + [anon_sym_BSLASHcolor] = ACTIONS(12239), + [anon_sym_BSLASHcolorbox] = ACTIONS(12239), + [anon_sym_BSLASHtextcolor] = ACTIONS(12239), + [anon_sym_BSLASHpagecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12239), + }, + [1264] = { + [sym__text_fragment] = STATE(1358), + [aux_sym_text_repeat1] = STATE(1358), + [sym_generic_command_name] = ACTIONS(12015), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12015), + [aux_sym_subparagraph_token1] = ACTIONS(12015), + [anon_sym_BSLASHitem] = ACTIONS(12015), + [anon_sym_LBRACK] = ACTIONS(12013), + [anon_sym_RBRACK] = ACTIONS(12013), + [anon_sym_LBRACE] = ACTIONS(12013), + [anon_sym_RBRACE] = ACTIONS(12013), + [anon_sym_LPAREN] = ACTIONS(12013), + [anon_sym_COMMA] = ACTIONS(12723), + [anon_sym_EQ] = ACTIONS(12723), + [sym_word] = ACTIONS(12723), + [sym_param] = ACTIONS(12013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12013), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12013), + [anon_sym_DOLLAR] = ACTIONS(12015), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12013), + [anon_sym_BSLASHbegin] = ACTIONS(12015), + [anon_sym_BSLASHcaption] = ACTIONS(12015), + [anon_sym_BSLASHcite] = ACTIONS(12015), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCite] = ACTIONS(12015), + [anon_sym_BSLASHnocite] = ACTIONS(12015), + [anon_sym_BSLASHcitet] = ACTIONS(12015), + [anon_sym_BSLASHcitep] = ACTIONS(12015), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteauthor] = ACTIONS(12015), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12015), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitetitle] = ACTIONS(12015), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteyear] = ACTIONS(12015), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitedate] = ACTIONS(12015), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteurl] = ACTIONS(12015), + [anon_sym_BSLASHfullcite] = ACTIONS(12015), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12015), + [anon_sym_BSLASHcitealt] = ACTIONS(12015), + [anon_sym_BSLASHcitealp] = ACTIONS(12015), + [anon_sym_BSLASHcitetext] = ACTIONS(12015), + [anon_sym_BSLASHparencite] = ACTIONS(12015), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHParencite] = ACTIONS(12015), + [anon_sym_BSLASHfootcite] = ACTIONS(12015), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12015), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12015), + [anon_sym_BSLASHtextcite] = ACTIONS(12015), + [anon_sym_BSLASHTextcite] = ACTIONS(12015), + [anon_sym_BSLASHsmartcite] = ACTIONS(12015), + [anon_sym_BSLASHSmartcite] = ACTIONS(12015), + [anon_sym_BSLASHsupercite] = ACTIONS(12015), + [anon_sym_BSLASHautocite] = ACTIONS(12015), + [anon_sym_BSLASHAutocite] = ACTIONS(12015), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHvolcite] = ACTIONS(12015), + [anon_sym_BSLASHVolcite] = ACTIONS(12015), + [anon_sym_BSLASHpvolcite] = ACTIONS(12015), + [anon_sym_BSLASHPvolcite] = ACTIONS(12015), + [anon_sym_BSLASHfvolcite] = ACTIONS(12015), + [anon_sym_BSLASHftvolcite] = ACTIONS(12015), + [anon_sym_BSLASHsvolcite] = ACTIONS(12015), + [anon_sym_BSLASHSvolcite] = ACTIONS(12015), + [anon_sym_BSLASHtvolcite] = ACTIONS(12015), + [anon_sym_BSLASHTvolcite] = ACTIONS(12015), + [anon_sym_BSLASHavolcite] = ACTIONS(12015), + [anon_sym_BSLASHAvolcite] = ACTIONS(12015), + [anon_sym_BSLASHnotecite] = ACTIONS(12015), + [anon_sym_BSLASHpnotecite] = ACTIONS(12015), + [anon_sym_BSLASHPnotecite] = ACTIONS(12015), + [anon_sym_BSLASHfnotecite] = ACTIONS(12015), + [anon_sym_BSLASHusepackage] = ACTIONS(12015), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12015), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12015), + [anon_sym_BSLASHinclude] = ACTIONS(12015), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12015), + [anon_sym_BSLASHinput] = ACTIONS(12015), + [anon_sym_BSLASHsubfile] = ACTIONS(12015), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12015), + [anon_sym_BSLASHbibliography] = ACTIONS(12015), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12015), + [anon_sym_BSLASHincludesvg] = ACTIONS(12015), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12015), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12015), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12015), + [anon_sym_BSLASHimport] = ACTIONS(12015), + [anon_sym_BSLASHsubimport] = ACTIONS(12015), + [anon_sym_BSLASHinputfrom] = ACTIONS(12015), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12015), + [anon_sym_BSLASHincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHlabel] = ACTIONS(12015), + [anon_sym_BSLASHref] = ACTIONS(12015), + [anon_sym_BSLASHvref] = ACTIONS(12015), + [anon_sym_BSLASHVref] = ACTIONS(12015), + [anon_sym_BSLASHautoref] = ACTIONS(12015), + [anon_sym_BSLASHpageref] = ACTIONS(12015), + [anon_sym_BSLASHcref] = ACTIONS(12015), + [anon_sym_BSLASHCref] = ACTIONS(12015), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnameCref] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHlabelcref] = ACTIONS(12015), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12015), + [anon_sym_BSLASHeqref] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange] = ACTIONS(12015), + [anon_sym_BSLASHCrefrange] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewlabel] = ACTIONS(12015), + [anon_sym_BSLASHnewcommand] = ACTIONS(12015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12015), + [anon_sym_BSLASHgls] = ACTIONS(12015), + [anon_sym_BSLASHGls] = ACTIONS(12015), + [anon_sym_BSLASHGLS] = ACTIONS(12015), + [anon_sym_BSLASHglspl] = ACTIONS(12015), + [anon_sym_BSLASHGlspl] = ACTIONS(12015), + [anon_sym_BSLASHGLSpl] = ACTIONS(12015), + [anon_sym_BSLASHglsdisp] = ACTIONS(12015), + [anon_sym_BSLASHglslink] = ACTIONS(12015), + [anon_sym_BSLASHglstext] = ACTIONS(12015), + [anon_sym_BSLASHGlstext] = ACTIONS(12015), + [anon_sym_BSLASHGLStext] = ACTIONS(12015), + [anon_sym_BSLASHglsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12015), + [anon_sym_BSLASHglsplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSplural] = ACTIONS(12015), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHglsname] = ACTIONS(12015), + [anon_sym_BSLASHGlsname] = ACTIONS(12015), + [anon_sym_BSLASHGLSname] = ACTIONS(12015), + [anon_sym_BSLASHglssymbol] = ACTIONS(12015), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12015), + [anon_sym_BSLASHglsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12015), + [anon_sym_BSLASHglsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12015), + [anon_sym_BSLASHglsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12015), + [anon_sym_BSLASHglsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12015), + [anon_sym_BSLASHglsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12015), + [anon_sym_BSLASHnewacronym] = ACTIONS(12015), + [anon_sym_BSLASHacrshort] = ACTIONS(12015), + [anon_sym_BSLASHAcrshort] = ACTIONS(12015), + [anon_sym_BSLASHACRshort] = ACTIONS(12015), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12015), + [anon_sym_BSLASHacrlong] = ACTIONS(12015), + [anon_sym_BSLASHAcrlong] = ACTIONS(12015), + [anon_sym_BSLASHACRlong] = ACTIONS(12015), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12015), + [anon_sym_BSLASHacrfull] = ACTIONS(12015), + [anon_sym_BSLASHAcrfull] = ACTIONS(12015), + [anon_sym_BSLASHACRfull] = ACTIONS(12015), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12015), + [anon_sym_BSLASHacs] = ACTIONS(12015), + [anon_sym_BSLASHAcs] = ACTIONS(12015), + [anon_sym_BSLASHacsp] = ACTIONS(12015), + [anon_sym_BSLASHAcsp] = ACTIONS(12015), + [anon_sym_BSLASHacl] = ACTIONS(12015), + [anon_sym_BSLASHAcl] = ACTIONS(12015), + [anon_sym_BSLASHaclp] = ACTIONS(12015), + [anon_sym_BSLASHAclp] = ACTIONS(12015), + [anon_sym_BSLASHacf] = ACTIONS(12015), + [anon_sym_BSLASHAcf] = ACTIONS(12015), + [anon_sym_BSLASHacfp] = ACTIONS(12015), + [anon_sym_BSLASHAcfp] = ACTIONS(12015), + [anon_sym_BSLASHac] = ACTIONS(12015), + [anon_sym_BSLASHAc] = ACTIONS(12015), + [anon_sym_BSLASHacp] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12015), + [anon_sym_BSLASHcolor] = ACTIONS(12015), + [anon_sym_BSLASHcolorbox] = ACTIONS(12015), + [anon_sym_BSLASHtextcolor] = ACTIONS(12015), + [anon_sym_BSLASHpagecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12015), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12015), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12015), + }, + [1265] = { + [sym_generic_command_name] = ACTIONS(12108), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12108), + [aux_sym_subsubsection_token1] = ACTIONS(12108), + [aux_sym_paragraph_token1] = ACTIONS(12108), + [aux_sym_subparagraph_token1] = ACTIONS(12108), + [anon_sym_BSLASHitem] = ACTIONS(12108), + [anon_sym_LBRACK] = ACTIONS(12106), + [anon_sym_RBRACK] = ACTIONS(12106), + [anon_sym_LBRACE] = ACTIONS(12106), + [anon_sym_RBRACE] = ACTIONS(12106), + [anon_sym_LPAREN] = ACTIONS(12106), + [anon_sym_COMMA] = ACTIONS(12106), + [anon_sym_EQ] = ACTIONS(12106), + [sym_word] = ACTIONS(12106), + [sym_param] = ACTIONS(12106), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12106), + [anon_sym_DOLLAR] = ACTIONS(12108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12106), + [anon_sym_BSLASHbegin] = ACTIONS(12108), + [anon_sym_BSLASHcaption] = ACTIONS(12108), + [anon_sym_BSLASHcite] = ACTIONS(12108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCite] = ACTIONS(12108), + [anon_sym_BSLASHnocite] = ACTIONS(12108), + [anon_sym_BSLASHcitet] = ACTIONS(12108), + [anon_sym_BSLASHcitep] = ACTIONS(12108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteauthor] = ACTIONS(12108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitetitle] = ACTIONS(12108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteyear] = ACTIONS(12108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitedate] = ACTIONS(12108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteurl] = ACTIONS(12108), + [anon_sym_BSLASHfullcite] = ACTIONS(12108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12108), + [anon_sym_BSLASHcitealt] = ACTIONS(12108), + [anon_sym_BSLASHcitealp] = ACTIONS(12108), + [anon_sym_BSLASHcitetext] = ACTIONS(12108), + [anon_sym_BSLASHparencite] = ACTIONS(12108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHParencite] = ACTIONS(12108), + [anon_sym_BSLASHfootcite] = ACTIONS(12108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12108), + [anon_sym_BSLASHtextcite] = ACTIONS(12108), + [anon_sym_BSLASHTextcite] = ACTIONS(12108), + [anon_sym_BSLASHsmartcite] = ACTIONS(12108), + [anon_sym_BSLASHSmartcite] = ACTIONS(12108), + [anon_sym_BSLASHsupercite] = ACTIONS(12108), + [anon_sym_BSLASHautocite] = ACTIONS(12108), + [anon_sym_BSLASHAutocite] = ACTIONS(12108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHvolcite] = ACTIONS(12108), + [anon_sym_BSLASHVolcite] = ACTIONS(12108), + [anon_sym_BSLASHpvolcite] = ACTIONS(12108), + [anon_sym_BSLASHPvolcite] = ACTIONS(12108), + [anon_sym_BSLASHfvolcite] = ACTIONS(12108), + [anon_sym_BSLASHftvolcite] = ACTIONS(12108), + [anon_sym_BSLASHsvolcite] = ACTIONS(12108), + [anon_sym_BSLASHSvolcite] = ACTIONS(12108), + [anon_sym_BSLASHtvolcite] = ACTIONS(12108), + [anon_sym_BSLASHTvolcite] = ACTIONS(12108), + [anon_sym_BSLASHavolcite] = ACTIONS(12108), + [anon_sym_BSLASHAvolcite] = ACTIONS(12108), + [anon_sym_BSLASHnotecite] = ACTIONS(12108), + [anon_sym_BSLASHpnotecite] = ACTIONS(12108), + [anon_sym_BSLASHPnotecite] = ACTIONS(12108), + [anon_sym_BSLASHfnotecite] = ACTIONS(12108), + [anon_sym_BSLASHusepackage] = ACTIONS(12108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12108), + [anon_sym_BSLASHinclude] = ACTIONS(12108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12108), + [anon_sym_BSLASHinput] = ACTIONS(12108), + [anon_sym_BSLASHsubfile] = ACTIONS(12108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12108), + [anon_sym_BSLASHbibliography] = ACTIONS(12108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12108), + [anon_sym_BSLASHincludesvg] = ACTIONS(12108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12108), + [anon_sym_BSLASHimport] = ACTIONS(12108), + [anon_sym_BSLASHsubimport] = ACTIONS(12108), + [anon_sym_BSLASHinputfrom] = ACTIONS(12108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12108), + [anon_sym_BSLASHincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHlabel] = ACTIONS(12108), + [anon_sym_BSLASHref] = ACTIONS(12108), + [anon_sym_BSLASHvref] = ACTIONS(12108), + [anon_sym_BSLASHVref] = ACTIONS(12108), + [anon_sym_BSLASHautoref] = ACTIONS(12108), + [anon_sym_BSLASHpageref] = ACTIONS(12108), + [anon_sym_BSLASHcref] = ACTIONS(12108), + [anon_sym_BSLASHCref] = ACTIONS(12108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnameCref] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHlabelcref] = ACTIONS(12108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12108), + [anon_sym_BSLASHeqref] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange] = ACTIONS(12108), + [anon_sym_BSLASHCrefrange] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewlabel] = ACTIONS(12108), + [anon_sym_BSLASHnewcommand] = ACTIONS(12108), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12108), + [anon_sym_BSLASHgls] = ACTIONS(12108), + [anon_sym_BSLASHGls] = ACTIONS(12108), + [anon_sym_BSLASHGLS] = ACTIONS(12108), + [anon_sym_BSLASHglspl] = ACTIONS(12108), + [anon_sym_BSLASHGlspl] = ACTIONS(12108), + [anon_sym_BSLASHGLSpl] = ACTIONS(12108), + [anon_sym_BSLASHglsdisp] = ACTIONS(12108), + [anon_sym_BSLASHglslink] = ACTIONS(12108), + [anon_sym_BSLASHglstext] = ACTIONS(12108), + [anon_sym_BSLASHGlstext] = ACTIONS(12108), + [anon_sym_BSLASHGLStext] = ACTIONS(12108), + [anon_sym_BSLASHglsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12108), + [anon_sym_BSLASHglsplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSplural] = ACTIONS(12108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHglsname] = ACTIONS(12108), + [anon_sym_BSLASHGlsname] = ACTIONS(12108), + [anon_sym_BSLASHGLSname] = ACTIONS(12108), + [anon_sym_BSLASHglssymbol] = ACTIONS(12108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12108), + [anon_sym_BSLASHglsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12108), + [anon_sym_BSLASHglsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12108), + [anon_sym_BSLASHglsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12108), + [anon_sym_BSLASHglsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12108), + [anon_sym_BSLASHglsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12108), + [anon_sym_BSLASHnewacronym] = ACTIONS(12108), + [anon_sym_BSLASHacrshort] = ACTIONS(12108), + [anon_sym_BSLASHAcrshort] = ACTIONS(12108), + [anon_sym_BSLASHACRshort] = ACTIONS(12108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12108), + [anon_sym_BSLASHacrlong] = ACTIONS(12108), + [anon_sym_BSLASHAcrlong] = ACTIONS(12108), + [anon_sym_BSLASHACRlong] = ACTIONS(12108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12108), + [anon_sym_BSLASHacrfull] = ACTIONS(12108), + [anon_sym_BSLASHAcrfull] = ACTIONS(12108), + [anon_sym_BSLASHACRfull] = ACTIONS(12108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12108), + [anon_sym_BSLASHacs] = ACTIONS(12108), + [anon_sym_BSLASHAcs] = ACTIONS(12108), + [anon_sym_BSLASHacsp] = ACTIONS(12108), + [anon_sym_BSLASHAcsp] = ACTIONS(12108), + [anon_sym_BSLASHacl] = ACTIONS(12108), + [anon_sym_BSLASHAcl] = ACTIONS(12108), + [anon_sym_BSLASHaclp] = ACTIONS(12108), + [anon_sym_BSLASHAclp] = ACTIONS(12108), + [anon_sym_BSLASHacf] = ACTIONS(12108), + [anon_sym_BSLASHAcf] = ACTIONS(12108), + [anon_sym_BSLASHacfp] = ACTIONS(12108), + [anon_sym_BSLASHAcfp] = ACTIONS(12108), + [anon_sym_BSLASHac] = ACTIONS(12108), + [anon_sym_BSLASHAc] = ACTIONS(12108), + [anon_sym_BSLASHacp] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12108), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12108), + [anon_sym_BSLASHcolor] = ACTIONS(12108), + [anon_sym_BSLASHcolorbox] = ACTIONS(12108), + [anon_sym_BSLASHtextcolor] = ACTIONS(12108), + [anon_sym_BSLASHpagecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12108), + }, + [1266] = { + [sym_generic_command_name] = ACTIONS(12247), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12247), + [aux_sym_subsubsection_token1] = ACTIONS(12247), + [aux_sym_paragraph_token1] = ACTIONS(12247), + [aux_sym_subparagraph_token1] = ACTIONS(12247), + [anon_sym_BSLASHitem] = ACTIONS(12247), + [anon_sym_LBRACK] = ACTIONS(12245), + [anon_sym_RBRACK] = ACTIONS(12245), + [anon_sym_LBRACE] = ACTIONS(12245), + [anon_sym_RBRACE] = ACTIONS(12245), + [anon_sym_LPAREN] = ACTIONS(12245), + [anon_sym_COMMA] = ACTIONS(12245), + [anon_sym_EQ] = ACTIONS(12245), + [sym_word] = ACTIONS(12245), + [sym_param] = ACTIONS(12245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12245), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12245), + [anon_sym_DOLLAR] = ACTIONS(12247), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12245), + [anon_sym_BSLASHbegin] = ACTIONS(12247), + [anon_sym_BSLASHcaption] = ACTIONS(12247), + [anon_sym_BSLASHcite] = ACTIONS(12247), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCite] = ACTIONS(12247), + [anon_sym_BSLASHnocite] = ACTIONS(12247), + [anon_sym_BSLASHcitet] = ACTIONS(12247), + [anon_sym_BSLASHcitep] = ACTIONS(12247), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteauthor] = ACTIONS(12247), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12247), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitetitle] = ACTIONS(12247), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteyear] = ACTIONS(12247), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitedate] = ACTIONS(12247), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteurl] = ACTIONS(12247), + [anon_sym_BSLASHfullcite] = ACTIONS(12247), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12247), + [anon_sym_BSLASHcitealt] = ACTIONS(12247), + [anon_sym_BSLASHcitealp] = ACTIONS(12247), + [anon_sym_BSLASHcitetext] = ACTIONS(12247), + [anon_sym_BSLASHparencite] = ACTIONS(12247), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHParencite] = ACTIONS(12247), + [anon_sym_BSLASHfootcite] = ACTIONS(12247), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12247), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12247), + [anon_sym_BSLASHtextcite] = ACTIONS(12247), + [anon_sym_BSLASHTextcite] = ACTIONS(12247), + [anon_sym_BSLASHsmartcite] = ACTIONS(12247), + [anon_sym_BSLASHSmartcite] = ACTIONS(12247), + [anon_sym_BSLASHsupercite] = ACTIONS(12247), + [anon_sym_BSLASHautocite] = ACTIONS(12247), + [anon_sym_BSLASHAutocite] = ACTIONS(12247), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHvolcite] = ACTIONS(12247), + [anon_sym_BSLASHVolcite] = ACTIONS(12247), + [anon_sym_BSLASHpvolcite] = ACTIONS(12247), + [anon_sym_BSLASHPvolcite] = ACTIONS(12247), + [anon_sym_BSLASHfvolcite] = ACTIONS(12247), + [anon_sym_BSLASHftvolcite] = ACTIONS(12247), + [anon_sym_BSLASHsvolcite] = ACTIONS(12247), + [anon_sym_BSLASHSvolcite] = ACTIONS(12247), + [anon_sym_BSLASHtvolcite] = ACTIONS(12247), + [anon_sym_BSLASHTvolcite] = ACTIONS(12247), + [anon_sym_BSLASHavolcite] = ACTIONS(12247), + [anon_sym_BSLASHAvolcite] = ACTIONS(12247), + [anon_sym_BSLASHnotecite] = ACTIONS(12247), + [anon_sym_BSLASHpnotecite] = ACTIONS(12247), + [anon_sym_BSLASHPnotecite] = ACTIONS(12247), + [anon_sym_BSLASHfnotecite] = ACTIONS(12247), + [anon_sym_BSLASHusepackage] = ACTIONS(12247), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12247), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12247), + [anon_sym_BSLASHinclude] = ACTIONS(12247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12247), + [anon_sym_BSLASHinput] = ACTIONS(12247), + [anon_sym_BSLASHsubfile] = ACTIONS(12247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12247), + [anon_sym_BSLASHbibliography] = ACTIONS(12247), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12247), + [anon_sym_BSLASHincludesvg] = ACTIONS(12247), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12247), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12247), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12247), + [anon_sym_BSLASHimport] = ACTIONS(12247), + [anon_sym_BSLASHsubimport] = ACTIONS(12247), + [anon_sym_BSLASHinputfrom] = ACTIONS(12247), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12247), + [anon_sym_BSLASHincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHlabel] = ACTIONS(12247), + [anon_sym_BSLASHref] = ACTIONS(12247), + [anon_sym_BSLASHvref] = ACTIONS(12247), + [anon_sym_BSLASHVref] = ACTIONS(12247), + [anon_sym_BSLASHautoref] = ACTIONS(12247), + [anon_sym_BSLASHpageref] = ACTIONS(12247), + [anon_sym_BSLASHcref] = ACTIONS(12247), + [anon_sym_BSLASHCref] = ACTIONS(12247), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnameCref] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHlabelcref] = ACTIONS(12247), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12247), + [anon_sym_BSLASHeqref] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange] = ACTIONS(12247), + [anon_sym_BSLASHCrefrange] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewlabel] = ACTIONS(12247), + [anon_sym_BSLASHnewcommand] = ACTIONS(12247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12247), + [anon_sym_BSLASHgls] = ACTIONS(12247), + [anon_sym_BSLASHGls] = ACTIONS(12247), + [anon_sym_BSLASHGLS] = ACTIONS(12247), + [anon_sym_BSLASHglspl] = ACTIONS(12247), + [anon_sym_BSLASHGlspl] = ACTIONS(12247), + [anon_sym_BSLASHGLSpl] = ACTIONS(12247), + [anon_sym_BSLASHglsdisp] = ACTIONS(12247), + [anon_sym_BSLASHglslink] = ACTIONS(12247), + [anon_sym_BSLASHglstext] = ACTIONS(12247), + [anon_sym_BSLASHGlstext] = ACTIONS(12247), + [anon_sym_BSLASHGLStext] = ACTIONS(12247), + [anon_sym_BSLASHglsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12247), + [anon_sym_BSLASHglsplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSplural] = ACTIONS(12247), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHglsname] = ACTIONS(12247), + [anon_sym_BSLASHGlsname] = ACTIONS(12247), + [anon_sym_BSLASHGLSname] = ACTIONS(12247), + [anon_sym_BSLASHglssymbol] = ACTIONS(12247), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12247), + [anon_sym_BSLASHglsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12247), + [anon_sym_BSLASHglsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12247), + [anon_sym_BSLASHglsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12247), + [anon_sym_BSLASHglsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12247), + [anon_sym_BSLASHglsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12247), + [anon_sym_BSLASHnewacronym] = ACTIONS(12247), + [anon_sym_BSLASHacrshort] = ACTIONS(12247), + [anon_sym_BSLASHAcrshort] = ACTIONS(12247), + [anon_sym_BSLASHACRshort] = ACTIONS(12247), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12247), + [anon_sym_BSLASHacrlong] = ACTIONS(12247), + [anon_sym_BSLASHAcrlong] = ACTIONS(12247), + [anon_sym_BSLASHACRlong] = ACTIONS(12247), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12247), + [anon_sym_BSLASHacrfull] = ACTIONS(12247), + [anon_sym_BSLASHAcrfull] = ACTIONS(12247), + [anon_sym_BSLASHACRfull] = ACTIONS(12247), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12247), + [anon_sym_BSLASHacs] = ACTIONS(12247), + [anon_sym_BSLASHAcs] = ACTIONS(12247), + [anon_sym_BSLASHacsp] = ACTIONS(12247), + [anon_sym_BSLASHAcsp] = ACTIONS(12247), + [anon_sym_BSLASHacl] = ACTIONS(12247), + [anon_sym_BSLASHAcl] = ACTIONS(12247), + [anon_sym_BSLASHaclp] = ACTIONS(12247), + [anon_sym_BSLASHAclp] = ACTIONS(12247), + [anon_sym_BSLASHacf] = ACTIONS(12247), + [anon_sym_BSLASHAcf] = ACTIONS(12247), + [anon_sym_BSLASHacfp] = ACTIONS(12247), + [anon_sym_BSLASHAcfp] = ACTIONS(12247), + [anon_sym_BSLASHac] = ACTIONS(12247), + [anon_sym_BSLASHAc] = ACTIONS(12247), + [anon_sym_BSLASHacp] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12247), + [anon_sym_BSLASHcolor] = ACTIONS(12247), + [anon_sym_BSLASHcolorbox] = ACTIONS(12247), + [anon_sym_BSLASHtextcolor] = ACTIONS(12247), + [anon_sym_BSLASHpagecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12247), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12247), + }, + [1267] = { + [sym_generic_command_name] = ACTIONS(12189), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12189), + [aux_sym_subsubsection_token1] = ACTIONS(12189), + [aux_sym_paragraph_token1] = ACTIONS(12189), + [aux_sym_subparagraph_token1] = ACTIONS(12189), + [anon_sym_BSLASHitem] = ACTIONS(12189), + [anon_sym_LBRACK] = ACTIONS(12187), + [anon_sym_RBRACK] = ACTIONS(12187), + [anon_sym_LBRACE] = ACTIONS(12187), + [anon_sym_RBRACE] = ACTIONS(12187), + [anon_sym_LPAREN] = ACTIONS(12187), + [anon_sym_COMMA] = ACTIONS(12187), + [anon_sym_EQ] = ACTIONS(12187), + [sym_word] = ACTIONS(12187), + [sym_param] = ACTIONS(12187), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12187), + [anon_sym_DOLLAR] = ACTIONS(12189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12187), + [anon_sym_BSLASHbegin] = ACTIONS(12189), + [anon_sym_BSLASHcaption] = ACTIONS(12189), + [anon_sym_BSLASHcite] = ACTIONS(12189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCite] = ACTIONS(12189), + [anon_sym_BSLASHnocite] = ACTIONS(12189), + [anon_sym_BSLASHcitet] = ACTIONS(12189), + [anon_sym_BSLASHcitep] = ACTIONS(12189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteauthor] = ACTIONS(12189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitetitle] = ACTIONS(12189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteyear] = ACTIONS(12189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitedate] = ACTIONS(12189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteurl] = ACTIONS(12189), + [anon_sym_BSLASHfullcite] = ACTIONS(12189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12189), + [anon_sym_BSLASHcitealt] = ACTIONS(12189), + [anon_sym_BSLASHcitealp] = ACTIONS(12189), + [anon_sym_BSLASHcitetext] = ACTIONS(12189), + [anon_sym_BSLASHparencite] = ACTIONS(12189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHParencite] = ACTIONS(12189), + [anon_sym_BSLASHfootcite] = ACTIONS(12189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12189), + [anon_sym_BSLASHtextcite] = ACTIONS(12189), + [anon_sym_BSLASHTextcite] = ACTIONS(12189), + [anon_sym_BSLASHsmartcite] = ACTIONS(12189), + [anon_sym_BSLASHSmartcite] = ACTIONS(12189), + [anon_sym_BSLASHsupercite] = ACTIONS(12189), + [anon_sym_BSLASHautocite] = ACTIONS(12189), + [anon_sym_BSLASHAutocite] = ACTIONS(12189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHvolcite] = ACTIONS(12189), + [anon_sym_BSLASHVolcite] = ACTIONS(12189), + [anon_sym_BSLASHpvolcite] = ACTIONS(12189), + [anon_sym_BSLASHPvolcite] = ACTIONS(12189), + [anon_sym_BSLASHfvolcite] = ACTIONS(12189), + [anon_sym_BSLASHftvolcite] = ACTIONS(12189), + [anon_sym_BSLASHsvolcite] = ACTIONS(12189), + [anon_sym_BSLASHSvolcite] = ACTIONS(12189), + [anon_sym_BSLASHtvolcite] = ACTIONS(12189), + [anon_sym_BSLASHTvolcite] = ACTIONS(12189), + [anon_sym_BSLASHavolcite] = ACTIONS(12189), + [anon_sym_BSLASHAvolcite] = ACTIONS(12189), + [anon_sym_BSLASHnotecite] = ACTIONS(12189), + [anon_sym_BSLASHpnotecite] = ACTIONS(12189), + [anon_sym_BSLASHPnotecite] = ACTIONS(12189), + [anon_sym_BSLASHfnotecite] = ACTIONS(12189), + [anon_sym_BSLASHusepackage] = ACTIONS(12189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12189), + [anon_sym_BSLASHinclude] = ACTIONS(12189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12189), + [anon_sym_BSLASHinput] = ACTIONS(12189), + [anon_sym_BSLASHsubfile] = ACTIONS(12189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12189), + [anon_sym_BSLASHbibliography] = ACTIONS(12189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12189), + [anon_sym_BSLASHincludesvg] = ACTIONS(12189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12189), + [anon_sym_BSLASHimport] = ACTIONS(12189), + [anon_sym_BSLASHsubimport] = ACTIONS(12189), + [anon_sym_BSLASHinputfrom] = ACTIONS(12189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12189), + [anon_sym_BSLASHincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHlabel] = ACTIONS(12189), + [anon_sym_BSLASHref] = ACTIONS(12189), + [anon_sym_BSLASHvref] = ACTIONS(12189), + [anon_sym_BSLASHVref] = ACTIONS(12189), + [anon_sym_BSLASHautoref] = ACTIONS(12189), + [anon_sym_BSLASHpageref] = ACTIONS(12189), + [anon_sym_BSLASHcref] = ACTIONS(12189), + [anon_sym_BSLASHCref] = ACTIONS(12189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnameCref] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHlabelcref] = ACTIONS(12189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12189), + [anon_sym_BSLASHeqref] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange] = ACTIONS(12189), + [anon_sym_BSLASHCrefrange] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewlabel] = ACTIONS(12189), + [anon_sym_BSLASHnewcommand] = ACTIONS(12189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12189), + [anon_sym_BSLASHgls] = ACTIONS(12189), + [anon_sym_BSLASHGls] = ACTIONS(12189), + [anon_sym_BSLASHGLS] = ACTIONS(12189), + [anon_sym_BSLASHglspl] = ACTIONS(12189), + [anon_sym_BSLASHGlspl] = ACTIONS(12189), + [anon_sym_BSLASHGLSpl] = ACTIONS(12189), + [anon_sym_BSLASHglsdisp] = ACTIONS(12189), + [anon_sym_BSLASHglslink] = ACTIONS(12189), + [anon_sym_BSLASHglstext] = ACTIONS(12189), + [anon_sym_BSLASHGlstext] = ACTIONS(12189), + [anon_sym_BSLASHGLStext] = ACTIONS(12189), + [anon_sym_BSLASHglsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12189), + [anon_sym_BSLASHglsplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSplural] = ACTIONS(12189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHglsname] = ACTIONS(12189), + [anon_sym_BSLASHGlsname] = ACTIONS(12189), + [anon_sym_BSLASHGLSname] = ACTIONS(12189), + [anon_sym_BSLASHglssymbol] = ACTIONS(12189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12189), + [anon_sym_BSLASHglsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12189), + [anon_sym_BSLASHglsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12189), + [anon_sym_BSLASHglsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12189), + [anon_sym_BSLASHglsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12189), + [anon_sym_BSLASHglsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12189), + [anon_sym_BSLASHnewacronym] = ACTIONS(12189), + [anon_sym_BSLASHacrshort] = ACTIONS(12189), + [anon_sym_BSLASHAcrshort] = ACTIONS(12189), + [anon_sym_BSLASHACRshort] = ACTIONS(12189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12189), + [anon_sym_BSLASHacrlong] = ACTIONS(12189), + [anon_sym_BSLASHAcrlong] = ACTIONS(12189), + [anon_sym_BSLASHACRlong] = ACTIONS(12189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12189), + [anon_sym_BSLASHacrfull] = ACTIONS(12189), + [anon_sym_BSLASHAcrfull] = ACTIONS(12189), + [anon_sym_BSLASHACRfull] = ACTIONS(12189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12189), + [anon_sym_BSLASHacs] = ACTIONS(12189), + [anon_sym_BSLASHAcs] = ACTIONS(12189), + [anon_sym_BSLASHacsp] = ACTIONS(12189), + [anon_sym_BSLASHAcsp] = ACTIONS(12189), + [anon_sym_BSLASHacl] = ACTIONS(12189), + [anon_sym_BSLASHAcl] = ACTIONS(12189), + [anon_sym_BSLASHaclp] = ACTIONS(12189), + [anon_sym_BSLASHAclp] = ACTIONS(12189), + [anon_sym_BSLASHacf] = ACTIONS(12189), + [anon_sym_BSLASHAcf] = ACTIONS(12189), + [anon_sym_BSLASHacfp] = ACTIONS(12189), + [anon_sym_BSLASHAcfp] = ACTIONS(12189), + [anon_sym_BSLASHac] = ACTIONS(12189), + [anon_sym_BSLASHAc] = ACTIONS(12189), + [anon_sym_BSLASHacp] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12189), + [anon_sym_BSLASHcolor] = ACTIONS(12189), + [anon_sym_BSLASHcolorbox] = ACTIONS(12189), + [anon_sym_BSLASHtextcolor] = ACTIONS(12189), + [anon_sym_BSLASHpagecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12189), + }, + [1268] = { + [sym_generic_command_name] = ACTIONS(12132), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12132), + [aux_sym_subsubsection_token1] = ACTIONS(12132), + [aux_sym_paragraph_token1] = ACTIONS(12132), + [aux_sym_subparagraph_token1] = ACTIONS(12132), + [anon_sym_BSLASHitem] = ACTIONS(12132), + [anon_sym_LBRACK] = ACTIONS(12130), + [anon_sym_RBRACK] = ACTIONS(12130), + [anon_sym_LBRACE] = ACTIONS(12130), + [anon_sym_RBRACE] = ACTIONS(12130), + [anon_sym_LPAREN] = ACTIONS(12130), + [anon_sym_COMMA] = ACTIONS(12130), + [anon_sym_EQ] = ACTIONS(12130), + [sym_word] = ACTIONS(12130), + [sym_param] = ACTIONS(12130), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12130), + [anon_sym_DOLLAR] = ACTIONS(12132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12130), + [anon_sym_BSLASHbegin] = ACTIONS(12132), + [anon_sym_BSLASHcaption] = ACTIONS(12132), + [anon_sym_BSLASHcite] = ACTIONS(12132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCite] = ACTIONS(12132), + [anon_sym_BSLASHnocite] = ACTIONS(12132), + [anon_sym_BSLASHcitet] = ACTIONS(12132), + [anon_sym_BSLASHcitep] = ACTIONS(12132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteauthor] = ACTIONS(12132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitetitle] = ACTIONS(12132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteyear] = ACTIONS(12132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitedate] = ACTIONS(12132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteurl] = ACTIONS(12132), + [anon_sym_BSLASHfullcite] = ACTIONS(12132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12132), + [anon_sym_BSLASHcitealt] = ACTIONS(12132), + [anon_sym_BSLASHcitealp] = ACTIONS(12132), + [anon_sym_BSLASHcitetext] = ACTIONS(12132), + [anon_sym_BSLASHparencite] = ACTIONS(12132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHParencite] = ACTIONS(12132), + [anon_sym_BSLASHfootcite] = ACTIONS(12132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12132), + [anon_sym_BSLASHtextcite] = ACTIONS(12132), + [anon_sym_BSLASHTextcite] = ACTIONS(12132), + [anon_sym_BSLASHsmartcite] = ACTIONS(12132), + [anon_sym_BSLASHSmartcite] = ACTIONS(12132), + [anon_sym_BSLASHsupercite] = ACTIONS(12132), + [anon_sym_BSLASHautocite] = ACTIONS(12132), + [anon_sym_BSLASHAutocite] = ACTIONS(12132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHvolcite] = ACTIONS(12132), + [anon_sym_BSLASHVolcite] = ACTIONS(12132), + [anon_sym_BSLASHpvolcite] = ACTIONS(12132), + [anon_sym_BSLASHPvolcite] = ACTIONS(12132), + [anon_sym_BSLASHfvolcite] = ACTIONS(12132), + [anon_sym_BSLASHftvolcite] = ACTIONS(12132), + [anon_sym_BSLASHsvolcite] = ACTIONS(12132), + [anon_sym_BSLASHSvolcite] = ACTIONS(12132), + [anon_sym_BSLASHtvolcite] = ACTIONS(12132), + [anon_sym_BSLASHTvolcite] = ACTIONS(12132), + [anon_sym_BSLASHavolcite] = ACTIONS(12132), + [anon_sym_BSLASHAvolcite] = ACTIONS(12132), + [anon_sym_BSLASHnotecite] = ACTIONS(12132), + [anon_sym_BSLASHpnotecite] = ACTIONS(12132), + [anon_sym_BSLASHPnotecite] = ACTIONS(12132), + [anon_sym_BSLASHfnotecite] = ACTIONS(12132), + [anon_sym_BSLASHusepackage] = ACTIONS(12132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12132), + [anon_sym_BSLASHinclude] = ACTIONS(12132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12132), + [anon_sym_BSLASHinput] = ACTIONS(12132), + [anon_sym_BSLASHsubfile] = ACTIONS(12132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12132), + [anon_sym_BSLASHbibliography] = ACTIONS(12132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12132), + [anon_sym_BSLASHincludesvg] = ACTIONS(12132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12132), + [anon_sym_BSLASHimport] = ACTIONS(12132), + [anon_sym_BSLASHsubimport] = ACTIONS(12132), + [anon_sym_BSLASHinputfrom] = ACTIONS(12132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12132), + [anon_sym_BSLASHincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHlabel] = ACTIONS(12132), + [anon_sym_BSLASHref] = ACTIONS(12132), + [anon_sym_BSLASHvref] = ACTIONS(12132), + [anon_sym_BSLASHVref] = ACTIONS(12132), + [anon_sym_BSLASHautoref] = ACTIONS(12132), + [anon_sym_BSLASHpageref] = ACTIONS(12132), + [anon_sym_BSLASHcref] = ACTIONS(12132), + [anon_sym_BSLASHCref] = ACTIONS(12132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnameCref] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHlabelcref] = ACTIONS(12132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12132), + [anon_sym_BSLASHeqref] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange] = ACTIONS(12132), + [anon_sym_BSLASHCrefrange] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewlabel] = ACTIONS(12132), + [anon_sym_BSLASHnewcommand] = ACTIONS(12132), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12132), + [anon_sym_BSLASHgls] = ACTIONS(12132), + [anon_sym_BSLASHGls] = ACTIONS(12132), + [anon_sym_BSLASHGLS] = ACTIONS(12132), + [anon_sym_BSLASHglspl] = ACTIONS(12132), + [anon_sym_BSLASHGlspl] = ACTIONS(12132), + [anon_sym_BSLASHGLSpl] = ACTIONS(12132), + [anon_sym_BSLASHglsdisp] = ACTIONS(12132), + [anon_sym_BSLASHglslink] = ACTIONS(12132), + [anon_sym_BSLASHglstext] = ACTIONS(12132), + [anon_sym_BSLASHGlstext] = ACTIONS(12132), + [anon_sym_BSLASHGLStext] = ACTIONS(12132), + [anon_sym_BSLASHglsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12132), + [anon_sym_BSLASHglsplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSplural] = ACTIONS(12132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHglsname] = ACTIONS(12132), + [anon_sym_BSLASHGlsname] = ACTIONS(12132), + [anon_sym_BSLASHGLSname] = ACTIONS(12132), + [anon_sym_BSLASHglssymbol] = ACTIONS(12132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12132), + [anon_sym_BSLASHglsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12132), + [anon_sym_BSLASHglsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12132), + [anon_sym_BSLASHglsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12132), + [anon_sym_BSLASHglsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12132), + [anon_sym_BSLASHglsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12132), + [anon_sym_BSLASHnewacronym] = ACTIONS(12132), + [anon_sym_BSLASHacrshort] = ACTIONS(12132), + [anon_sym_BSLASHAcrshort] = ACTIONS(12132), + [anon_sym_BSLASHACRshort] = ACTIONS(12132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12132), + [anon_sym_BSLASHacrlong] = ACTIONS(12132), + [anon_sym_BSLASHAcrlong] = ACTIONS(12132), + [anon_sym_BSLASHACRlong] = ACTIONS(12132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12132), + [anon_sym_BSLASHacrfull] = ACTIONS(12132), + [anon_sym_BSLASHAcrfull] = ACTIONS(12132), + [anon_sym_BSLASHACRfull] = ACTIONS(12132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12132), + [anon_sym_BSLASHacs] = ACTIONS(12132), + [anon_sym_BSLASHAcs] = ACTIONS(12132), + [anon_sym_BSLASHacsp] = ACTIONS(12132), + [anon_sym_BSLASHAcsp] = ACTIONS(12132), + [anon_sym_BSLASHacl] = ACTIONS(12132), + [anon_sym_BSLASHAcl] = ACTIONS(12132), + [anon_sym_BSLASHaclp] = ACTIONS(12132), + [anon_sym_BSLASHAclp] = ACTIONS(12132), + [anon_sym_BSLASHacf] = ACTIONS(12132), + [anon_sym_BSLASHAcf] = ACTIONS(12132), + [anon_sym_BSLASHacfp] = ACTIONS(12132), + [anon_sym_BSLASHAcfp] = ACTIONS(12132), + [anon_sym_BSLASHac] = ACTIONS(12132), + [anon_sym_BSLASHAc] = ACTIONS(12132), + [anon_sym_BSLASHacp] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12132), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12132), + [anon_sym_BSLASHcolor] = ACTIONS(12132), + [anon_sym_BSLASHcolorbox] = ACTIONS(12132), + [anon_sym_BSLASHtextcolor] = ACTIONS(12132), + [anon_sym_BSLASHpagecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12132), + }, + [1269] = { + [sym_generic_command_name] = ACTIONS(12251), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12251), + [aux_sym_subsubsection_token1] = ACTIONS(12251), + [aux_sym_paragraph_token1] = ACTIONS(12251), + [aux_sym_subparagraph_token1] = ACTIONS(12251), + [anon_sym_BSLASHitem] = ACTIONS(12251), + [anon_sym_LBRACK] = ACTIONS(12249), + [anon_sym_RBRACK] = ACTIONS(12249), + [anon_sym_LBRACE] = ACTIONS(12249), + [anon_sym_RBRACE] = ACTIONS(12249), + [anon_sym_LPAREN] = ACTIONS(12249), + [anon_sym_COMMA] = ACTIONS(12249), + [anon_sym_EQ] = ACTIONS(12249), + [sym_word] = ACTIONS(12249), + [sym_param] = ACTIONS(12249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12249), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12249), + [anon_sym_DOLLAR] = ACTIONS(12251), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12249), + [anon_sym_BSLASHbegin] = ACTIONS(12251), + [anon_sym_BSLASHcaption] = ACTIONS(12251), + [anon_sym_BSLASHcite] = ACTIONS(12251), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCite] = ACTIONS(12251), + [anon_sym_BSLASHnocite] = ACTIONS(12251), + [anon_sym_BSLASHcitet] = ACTIONS(12251), + [anon_sym_BSLASHcitep] = ACTIONS(12251), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteauthor] = ACTIONS(12251), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12251), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitetitle] = ACTIONS(12251), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteyear] = ACTIONS(12251), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitedate] = ACTIONS(12251), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteurl] = ACTIONS(12251), + [anon_sym_BSLASHfullcite] = ACTIONS(12251), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12251), + [anon_sym_BSLASHcitealt] = ACTIONS(12251), + [anon_sym_BSLASHcitealp] = ACTIONS(12251), + [anon_sym_BSLASHcitetext] = ACTIONS(12251), + [anon_sym_BSLASHparencite] = ACTIONS(12251), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHParencite] = ACTIONS(12251), + [anon_sym_BSLASHfootcite] = ACTIONS(12251), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12251), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12251), + [anon_sym_BSLASHtextcite] = ACTIONS(12251), + [anon_sym_BSLASHTextcite] = ACTIONS(12251), + [anon_sym_BSLASHsmartcite] = ACTIONS(12251), + [anon_sym_BSLASHSmartcite] = ACTIONS(12251), + [anon_sym_BSLASHsupercite] = ACTIONS(12251), + [anon_sym_BSLASHautocite] = ACTIONS(12251), + [anon_sym_BSLASHAutocite] = ACTIONS(12251), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHvolcite] = ACTIONS(12251), + [anon_sym_BSLASHVolcite] = ACTIONS(12251), + [anon_sym_BSLASHpvolcite] = ACTIONS(12251), + [anon_sym_BSLASHPvolcite] = ACTIONS(12251), + [anon_sym_BSLASHfvolcite] = ACTIONS(12251), + [anon_sym_BSLASHftvolcite] = ACTIONS(12251), + [anon_sym_BSLASHsvolcite] = ACTIONS(12251), + [anon_sym_BSLASHSvolcite] = ACTIONS(12251), + [anon_sym_BSLASHtvolcite] = ACTIONS(12251), + [anon_sym_BSLASHTvolcite] = ACTIONS(12251), + [anon_sym_BSLASHavolcite] = ACTIONS(12251), + [anon_sym_BSLASHAvolcite] = ACTIONS(12251), + [anon_sym_BSLASHnotecite] = ACTIONS(12251), + [anon_sym_BSLASHpnotecite] = ACTIONS(12251), + [anon_sym_BSLASHPnotecite] = ACTIONS(12251), + [anon_sym_BSLASHfnotecite] = ACTIONS(12251), + [anon_sym_BSLASHusepackage] = ACTIONS(12251), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12251), + [anon_sym_BSLASHinclude] = ACTIONS(12251), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12251), + [anon_sym_BSLASHinput] = ACTIONS(12251), + [anon_sym_BSLASHsubfile] = ACTIONS(12251), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12251), + [anon_sym_BSLASHbibliography] = ACTIONS(12251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12251), + [anon_sym_BSLASHincludesvg] = ACTIONS(12251), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12251), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12251), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12251), + [anon_sym_BSLASHimport] = ACTIONS(12251), + [anon_sym_BSLASHsubimport] = ACTIONS(12251), + [anon_sym_BSLASHinputfrom] = ACTIONS(12251), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12251), + [anon_sym_BSLASHincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHlabel] = ACTIONS(12251), + [anon_sym_BSLASHref] = ACTIONS(12251), + [anon_sym_BSLASHvref] = ACTIONS(12251), + [anon_sym_BSLASHVref] = ACTIONS(12251), + [anon_sym_BSLASHautoref] = ACTIONS(12251), + [anon_sym_BSLASHpageref] = ACTIONS(12251), + [anon_sym_BSLASHcref] = ACTIONS(12251), + [anon_sym_BSLASHCref] = ACTIONS(12251), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnameCref] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHlabelcref] = ACTIONS(12251), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12251), + [anon_sym_BSLASHeqref] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange] = ACTIONS(12251), + [anon_sym_BSLASHCrefrange] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewlabel] = ACTIONS(12251), + [anon_sym_BSLASHnewcommand] = ACTIONS(12251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12251), + [anon_sym_BSLASHgls] = ACTIONS(12251), + [anon_sym_BSLASHGls] = ACTIONS(12251), + [anon_sym_BSLASHGLS] = ACTIONS(12251), + [anon_sym_BSLASHglspl] = ACTIONS(12251), + [anon_sym_BSLASHGlspl] = ACTIONS(12251), + [anon_sym_BSLASHGLSpl] = ACTIONS(12251), + [anon_sym_BSLASHglsdisp] = ACTIONS(12251), + [anon_sym_BSLASHglslink] = ACTIONS(12251), + [anon_sym_BSLASHglstext] = ACTIONS(12251), + [anon_sym_BSLASHGlstext] = ACTIONS(12251), + [anon_sym_BSLASHGLStext] = ACTIONS(12251), + [anon_sym_BSLASHglsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12251), + [anon_sym_BSLASHglsplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSplural] = ACTIONS(12251), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHglsname] = ACTIONS(12251), + [anon_sym_BSLASHGlsname] = ACTIONS(12251), + [anon_sym_BSLASHGLSname] = ACTIONS(12251), + [anon_sym_BSLASHglssymbol] = ACTIONS(12251), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12251), + [anon_sym_BSLASHglsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12251), + [anon_sym_BSLASHglsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12251), + [anon_sym_BSLASHglsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12251), + [anon_sym_BSLASHglsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12251), + [anon_sym_BSLASHglsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12251), + [anon_sym_BSLASHnewacronym] = ACTIONS(12251), + [anon_sym_BSLASHacrshort] = ACTIONS(12251), + [anon_sym_BSLASHAcrshort] = ACTIONS(12251), + [anon_sym_BSLASHACRshort] = ACTIONS(12251), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12251), + [anon_sym_BSLASHacrlong] = ACTIONS(12251), + [anon_sym_BSLASHAcrlong] = ACTIONS(12251), + [anon_sym_BSLASHACRlong] = ACTIONS(12251), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12251), + [anon_sym_BSLASHacrfull] = ACTIONS(12251), + [anon_sym_BSLASHAcrfull] = ACTIONS(12251), + [anon_sym_BSLASHACRfull] = ACTIONS(12251), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12251), + [anon_sym_BSLASHacs] = ACTIONS(12251), + [anon_sym_BSLASHAcs] = ACTIONS(12251), + [anon_sym_BSLASHacsp] = ACTIONS(12251), + [anon_sym_BSLASHAcsp] = ACTIONS(12251), + [anon_sym_BSLASHacl] = ACTIONS(12251), + [anon_sym_BSLASHAcl] = ACTIONS(12251), + [anon_sym_BSLASHaclp] = ACTIONS(12251), + [anon_sym_BSLASHAclp] = ACTIONS(12251), + [anon_sym_BSLASHacf] = ACTIONS(12251), + [anon_sym_BSLASHAcf] = ACTIONS(12251), + [anon_sym_BSLASHacfp] = ACTIONS(12251), + [anon_sym_BSLASHAcfp] = ACTIONS(12251), + [anon_sym_BSLASHac] = ACTIONS(12251), + [anon_sym_BSLASHAc] = ACTIONS(12251), + [anon_sym_BSLASHacp] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12251), + [anon_sym_BSLASHcolor] = ACTIONS(12251), + [anon_sym_BSLASHcolorbox] = ACTIONS(12251), + [anon_sym_BSLASHtextcolor] = ACTIONS(12251), + [anon_sym_BSLASHpagecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12251), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12251), + }, + [1270] = { + [sym_generic_command_name] = ACTIONS(12259), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12259), + [aux_sym_subsubsection_token1] = ACTIONS(12259), + [aux_sym_paragraph_token1] = ACTIONS(12259), + [aux_sym_subparagraph_token1] = ACTIONS(12259), + [anon_sym_BSLASHitem] = ACTIONS(12259), + [anon_sym_LBRACK] = ACTIONS(12257), + [anon_sym_RBRACK] = ACTIONS(12257), + [anon_sym_LBRACE] = ACTIONS(12257), + [anon_sym_RBRACE] = ACTIONS(12257), + [anon_sym_LPAREN] = ACTIONS(12257), + [anon_sym_COMMA] = ACTIONS(12257), + [anon_sym_EQ] = ACTIONS(12257), + [sym_word] = ACTIONS(12257), + [sym_param] = ACTIONS(12257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12257), + [anon_sym_DOLLAR] = ACTIONS(12259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12257), + [anon_sym_BSLASHbegin] = ACTIONS(12259), + [anon_sym_BSLASHcaption] = ACTIONS(12259), + [anon_sym_BSLASHcite] = ACTIONS(12259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCite] = ACTIONS(12259), + [anon_sym_BSLASHnocite] = ACTIONS(12259), + [anon_sym_BSLASHcitet] = ACTIONS(12259), + [anon_sym_BSLASHcitep] = ACTIONS(12259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteauthor] = ACTIONS(12259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitetitle] = ACTIONS(12259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteyear] = ACTIONS(12259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitedate] = ACTIONS(12259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteurl] = ACTIONS(12259), + [anon_sym_BSLASHfullcite] = ACTIONS(12259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12259), + [anon_sym_BSLASHcitealt] = ACTIONS(12259), + [anon_sym_BSLASHcitealp] = ACTIONS(12259), + [anon_sym_BSLASHcitetext] = ACTIONS(12259), + [anon_sym_BSLASHparencite] = ACTIONS(12259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHParencite] = ACTIONS(12259), + [anon_sym_BSLASHfootcite] = ACTIONS(12259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12259), + [anon_sym_BSLASHtextcite] = ACTIONS(12259), + [anon_sym_BSLASHTextcite] = ACTIONS(12259), + [anon_sym_BSLASHsmartcite] = ACTIONS(12259), + [anon_sym_BSLASHSmartcite] = ACTIONS(12259), + [anon_sym_BSLASHsupercite] = ACTIONS(12259), + [anon_sym_BSLASHautocite] = ACTIONS(12259), + [anon_sym_BSLASHAutocite] = ACTIONS(12259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHvolcite] = ACTIONS(12259), + [anon_sym_BSLASHVolcite] = ACTIONS(12259), + [anon_sym_BSLASHpvolcite] = ACTIONS(12259), + [anon_sym_BSLASHPvolcite] = ACTIONS(12259), + [anon_sym_BSLASHfvolcite] = ACTIONS(12259), + [anon_sym_BSLASHftvolcite] = ACTIONS(12259), + [anon_sym_BSLASHsvolcite] = ACTIONS(12259), + [anon_sym_BSLASHSvolcite] = ACTIONS(12259), + [anon_sym_BSLASHtvolcite] = ACTIONS(12259), + [anon_sym_BSLASHTvolcite] = ACTIONS(12259), + [anon_sym_BSLASHavolcite] = ACTIONS(12259), + [anon_sym_BSLASHAvolcite] = ACTIONS(12259), + [anon_sym_BSLASHnotecite] = ACTIONS(12259), + [anon_sym_BSLASHpnotecite] = ACTIONS(12259), + [anon_sym_BSLASHPnotecite] = ACTIONS(12259), + [anon_sym_BSLASHfnotecite] = ACTIONS(12259), + [anon_sym_BSLASHusepackage] = ACTIONS(12259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12259), + [anon_sym_BSLASHinclude] = ACTIONS(12259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12259), + [anon_sym_BSLASHinput] = ACTIONS(12259), + [anon_sym_BSLASHsubfile] = ACTIONS(12259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12259), + [anon_sym_BSLASHbibliography] = ACTIONS(12259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12259), + [anon_sym_BSLASHincludesvg] = ACTIONS(12259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12259), + [anon_sym_BSLASHimport] = ACTIONS(12259), + [anon_sym_BSLASHsubimport] = ACTIONS(12259), + [anon_sym_BSLASHinputfrom] = ACTIONS(12259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12259), + [anon_sym_BSLASHincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHlabel] = ACTIONS(12259), + [anon_sym_BSLASHref] = ACTIONS(12259), + [anon_sym_BSLASHvref] = ACTIONS(12259), + [anon_sym_BSLASHVref] = ACTIONS(12259), + [anon_sym_BSLASHautoref] = ACTIONS(12259), + [anon_sym_BSLASHpageref] = ACTIONS(12259), + [anon_sym_BSLASHcref] = ACTIONS(12259), + [anon_sym_BSLASHCref] = ACTIONS(12259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnameCref] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHlabelcref] = ACTIONS(12259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12259), + [anon_sym_BSLASHeqref] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange] = ACTIONS(12259), + [anon_sym_BSLASHCrefrange] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewlabel] = ACTIONS(12259), + [anon_sym_BSLASHnewcommand] = ACTIONS(12259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12259), + [anon_sym_BSLASHgls] = ACTIONS(12259), + [anon_sym_BSLASHGls] = ACTIONS(12259), + [anon_sym_BSLASHGLS] = ACTIONS(12259), + [anon_sym_BSLASHglspl] = ACTIONS(12259), + [anon_sym_BSLASHGlspl] = ACTIONS(12259), + [anon_sym_BSLASHGLSpl] = ACTIONS(12259), + [anon_sym_BSLASHglsdisp] = ACTIONS(12259), + [anon_sym_BSLASHglslink] = ACTIONS(12259), + [anon_sym_BSLASHglstext] = ACTIONS(12259), + [anon_sym_BSLASHGlstext] = ACTIONS(12259), + [anon_sym_BSLASHGLStext] = ACTIONS(12259), + [anon_sym_BSLASHglsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12259), + [anon_sym_BSLASHglsplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSplural] = ACTIONS(12259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHglsname] = ACTIONS(12259), + [anon_sym_BSLASHGlsname] = ACTIONS(12259), + [anon_sym_BSLASHGLSname] = ACTIONS(12259), + [anon_sym_BSLASHglssymbol] = ACTIONS(12259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12259), + [anon_sym_BSLASHglsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12259), + [anon_sym_BSLASHglsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12259), + [anon_sym_BSLASHglsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12259), + [anon_sym_BSLASHglsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12259), + [anon_sym_BSLASHglsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12259), + [anon_sym_BSLASHnewacronym] = ACTIONS(12259), + [anon_sym_BSLASHacrshort] = ACTIONS(12259), + [anon_sym_BSLASHAcrshort] = ACTIONS(12259), + [anon_sym_BSLASHACRshort] = ACTIONS(12259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12259), + [anon_sym_BSLASHacrlong] = ACTIONS(12259), + [anon_sym_BSLASHAcrlong] = ACTIONS(12259), + [anon_sym_BSLASHACRlong] = ACTIONS(12259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12259), + [anon_sym_BSLASHacrfull] = ACTIONS(12259), + [anon_sym_BSLASHAcrfull] = ACTIONS(12259), + [anon_sym_BSLASHACRfull] = ACTIONS(12259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12259), + [anon_sym_BSLASHacs] = ACTIONS(12259), + [anon_sym_BSLASHAcs] = ACTIONS(12259), + [anon_sym_BSLASHacsp] = ACTIONS(12259), + [anon_sym_BSLASHAcsp] = ACTIONS(12259), + [anon_sym_BSLASHacl] = ACTIONS(12259), + [anon_sym_BSLASHAcl] = ACTIONS(12259), + [anon_sym_BSLASHaclp] = ACTIONS(12259), + [anon_sym_BSLASHAclp] = ACTIONS(12259), + [anon_sym_BSLASHacf] = ACTIONS(12259), + [anon_sym_BSLASHAcf] = ACTIONS(12259), + [anon_sym_BSLASHacfp] = ACTIONS(12259), + [anon_sym_BSLASHAcfp] = ACTIONS(12259), + [anon_sym_BSLASHac] = ACTIONS(12259), + [anon_sym_BSLASHAc] = ACTIONS(12259), + [anon_sym_BSLASHacp] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12259), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12259), + [anon_sym_BSLASHcolor] = ACTIONS(12259), + [anon_sym_BSLASHcolorbox] = ACTIONS(12259), + [anon_sym_BSLASHtextcolor] = ACTIONS(12259), + [anon_sym_BSLASHpagecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12259), + }, + [1271] = { + [sym_generic_command_name] = ACTIONS(12263), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12263), + [aux_sym_subsubsection_token1] = ACTIONS(12263), + [aux_sym_paragraph_token1] = ACTIONS(12263), + [aux_sym_subparagraph_token1] = ACTIONS(12263), + [anon_sym_BSLASHitem] = ACTIONS(12263), + [anon_sym_LBRACK] = ACTIONS(12261), + [anon_sym_RBRACK] = ACTIONS(12261), + [anon_sym_LBRACE] = ACTIONS(12261), + [anon_sym_RBRACE] = ACTIONS(12261), + [anon_sym_LPAREN] = ACTIONS(12261), + [anon_sym_COMMA] = ACTIONS(12261), + [anon_sym_EQ] = ACTIONS(12261), + [sym_word] = ACTIONS(12261), + [sym_param] = ACTIONS(12261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12261), + [anon_sym_DOLLAR] = ACTIONS(12263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12261), + [anon_sym_BSLASHbegin] = ACTIONS(12263), + [anon_sym_BSLASHcaption] = ACTIONS(12263), + [anon_sym_BSLASHcite] = ACTIONS(12263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCite] = ACTIONS(12263), + [anon_sym_BSLASHnocite] = ACTIONS(12263), + [anon_sym_BSLASHcitet] = ACTIONS(12263), + [anon_sym_BSLASHcitep] = ACTIONS(12263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteauthor] = ACTIONS(12263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitetitle] = ACTIONS(12263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteyear] = ACTIONS(12263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitedate] = ACTIONS(12263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteurl] = ACTIONS(12263), + [anon_sym_BSLASHfullcite] = ACTIONS(12263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12263), + [anon_sym_BSLASHcitealt] = ACTIONS(12263), + [anon_sym_BSLASHcitealp] = ACTIONS(12263), + [anon_sym_BSLASHcitetext] = ACTIONS(12263), + [anon_sym_BSLASHparencite] = ACTIONS(12263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHParencite] = ACTIONS(12263), + [anon_sym_BSLASHfootcite] = ACTIONS(12263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12263), + [anon_sym_BSLASHtextcite] = ACTIONS(12263), + [anon_sym_BSLASHTextcite] = ACTIONS(12263), + [anon_sym_BSLASHsmartcite] = ACTIONS(12263), + [anon_sym_BSLASHSmartcite] = ACTIONS(12263), + [anon_sym_BSLASHsupercite] = ACTIONS(12263), + [anon_sym_BSLASHautocite] = ACTIONS(12263), + [anon_sym_BSLASHAutocite] = ACTIONS(12263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHvolcite] = ACTIONS(12263), + [anon_sym_BSLASHVolcite] = ACTIONS(12263), + [anon_sym_BSLASHpvolcite] = ACTIONS(12263), + [anon_sym_BSLASHPvolcite] = ACTIONS(12263), + [anon_sym_BSLASHfvolcite] = ACTIONS(12263), + [anon_sym_BSLASHftvolcite] = ACTIONS(12263), + [anon_sym_BSLASHsvolcite] = ACTIONS(12263), + [anon_sym_BSLASHSvolcite] = ACTIONS(12263), + [anon_sym_BSLASHtvolcite] = ACTIONS(12263), + [anon_sym_BSLASHTvolcite] = ACTIONS(12263), + [anon_sym_BSLASHavolcite] = ACTIONS(12263), + [anon_sym_BSLASHAvolcite] = ACTIONS(12263), + [anon_sym_BSLASHnotecite] = ACTIONS(12263), + [anon_sym_BSLASHpnotecite] = ACTIONS(12263), + [anon_sym_BSLASHPnotecite] = ACTIONS(12263), + [anon_sym_BSLASHfnotecite] = ACTIONS(12263), + [anon_sym_BSLASHusepackage] = ACTIONS(12263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12263), + [anon_sym_BSLASHinclude] = ACTIONS(12263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12263), + [anon_sym_BSLASHinput] = ACTIONS(12263), + [anon_sym_BSLASHsubfile] = ACTIONS(12263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12263), + [anon_sym_BSLASHbibliography] = ACTIONS(12263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12263), + [anon_sym_BSLASHincludesvg] = ACTIONS(12263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12263), + [anon_sym_BSLASHimport] = ACTIONS(12263), + [anon_sym_BSLASHsubimport] = ACTIONS(12263), + [anon_sym_BSLASHinputfrom] = ACTIONS(12263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12263), + [anon_sym_BSLASHincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHlabel] = ACTIONS(12263), + [anon_sym_BSLASHref] = ACTIONS(12263), + [anon_sym_BSLASHvref] = ACTIONS(12263), + [anon_sym_BSLASHVref] = ACTIONS(12263), + [anon_sym_BSLASHautoref] = ACTIONS(12263), + [anon_sym_BSLASHpageref] = ACTIONS(12263), + [anon_sym_BSLASHcref] = ACTIONS(12263), + [anon_sym_BSLASHCref] = ACTIONS(12263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnameCref] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHlabelcref] = ACTIONS(12263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12263), + [anon_sym_BSLASHeqref] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange] = ACTIONS(12263), + [anon_sym_BSLASHCrefrange] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewlabel] = ACTIONS(12263), + [anon_sym_BSLASHnewcommand] = ACTIONS(12263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12263), + [anon_sym_BSLASHgls] = ACTIONS(12263), + [anon_sym_BSLASHGls] = ACTIONS(12263), + [anon_sym_BSLASHGLS] = ACTIONS(12263), + [anon_sym_BSLASHglspl] = ACTIONS(12263), + [anon_sym_BSLASHGlspl] = ACTIONS(12263), + [anon_sym_BSLASHGLSpl] = ACTIONS(12263), + [anon_sym_BSLASHglsdisp] = ACTIONS(12263), + [anon_sym_BSLASHglslink] = ACTIONS(12263), + [anon_sym_BSLASHglstext] = ACTIONS(12263), + [anon_sym_BSLASHGlstext] = ACTIONS(12263), + [anon_sym_BSLASHGLStext] = ACTIONS(12263), + [anon_sym_BSLASHglsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12263), + [anon_sym_BSLASHglsplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSplural] = ACTIONS(12263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHglsname] = ACTIONS(12263), + [anon_sym_BSLASHGlsname] = ACTIONS(12263), + [anon_sym_BSLASHGLSname] = ACTIONS(12263), + [anon_sym_BSLASHglssymbol] = ACTIONS(12263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12263), + [anon_sym_BSLASHglsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12263), + [anon_sym_BSLASHglsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12263), + [anon_sym_BSLASHglsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12263), + [anon_sym_BSLASHglsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12263), + [anon_sym_BSLASHglsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12263), + [anon_sym_BSLASHnewacronym] = ACTIONS(12263), + [anon_sym_BSLASHacrshort] = ACTIONS(12263), + [anon_sym_BSLASHAcrshort] = ACTIONS(12263), + [anon_sym_BSLASHACRshort] = ACTIONS(12263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12263), + [anon_sym_BSLASHacrlong] = ACTIONS(12263), + [anon_sym_BSLASHAcrlong] = ACTIONS(12263), + [anon_sym_BSLASHACRlong] = ACTIONS(12263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12263), + [anon_sym_BSLASHacrfull] = ACTIONS(12263), + [anon_sym_BSLASHAcrfull] = ACTIONS(12263), + [anon_sym_BSLASHACRfull] = ACTIONS(12263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12263), + [anon_sym_BSLASHacs] = ACTIONS(12263), + [anon_sym_BSLASHAcs] = ACTIONS(12263), + [anon_sym_BSLASHacsp] = ACTIONS(12263), + [anon_sym_BSLASHAcsp] = ACTIONS(12263), + [anon_sym_BSLASHacl] = ACTIONS(12263), + [anon_sym_BSLASHAcl] = ACTIONS(12263), + [anon_sym_BSLASHaclp] = ACTIONS(12263), + [anon_sym_BSLASHAclp] = ACTIONS(12263), + [anon_sym_BSLASHacf] = ACTIONS(12263), + [anon_sym_BSLASHAcf] = ACTIONS(12263), + [anon_sym_BSLASHacfp] = ACTIONS(12263), + [anon_sym_BSLASHAcfp] = ACTIONS(12263), + [anon_sym_BSLASHac] = ACTIONS(12263), + [anon_sym_BSLASHAc] = ACTIONS(12263), + [anon_sym_BSLASHacp] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12263), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12263), + [anon_sym_BSLASHcolor] = ACTIONS(12263), + [anon_sym_BSLASHcolorbox] = ACTIONS(12263), + [anon_sym_BSLASHtextcolor] = ACTIONS(12263), + [anon_sym_BSLASHpagecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12263), + }, + [1272] = { + [sym_generic_command_name] = ACTIONS(12319), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12319), + [aux_sym_subsubsection_token1] = ACTIONS(12319), + [aux_sym_paragraph_token1] = ACTIONS(12319), + [aux_sym_subparagraph_token1] = ACTIONS(12319), + [anon_sym_BSLASHitem] = ACTIONS(12319), + [anon_sym_LBRACK] = ACTIONS(12317), + [anon_sym_RBRACK] = ACTIONS(12317), + [anon_sym_LBRACE] = ACTIONS(12317), + [anon_sym_RBRACE] = ACTIONS(12317), + [anon_sym_LPAREN] = ACTIONS(12317), + [anon_sym_COMMA] = ACTIONS(12317), + [anon_sym_EQ] = ACTIONS(12317), + [sym_word] = ACTIONS(12317), + [sym_param] = ACTIONS(12317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12317), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12317), + [anon_sym_DOLLAR] = ACTIONS(12319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12317), + [anon_sym_BSLASHbegin] = ACTIONS(12319), + [anon_sym_BSLASHcaption] = ACTIONS(12319), + [anon_sym_BSLASHcite] = ACTIONS(12319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCite] = ACTIONS(12319), + [anon_sym_BSLASHnocite] = ACTIONS(12319), + [anon_sym_BSLASHcitet] = ACTIONS(12319), + [anon_sym_BSLASHcitep] = ACTIONS(12319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteauthor] = ACTIONS(12319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitetitle] = ACTIONS(12319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteyear] = ACTIONS(12319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitedate] = ACTIONS(12319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteurl] = ACTIONS(12319), + [anon_sym_BSLASHfullcite] = ACTIONS(12319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12319), + [anon_sym_BSLASHcitealt] = ACTIONS(12319), + [anon_sym_BSLASHcitealp] = ACTIONS(12319), + [anon_sym_BSLASHcitetext] = ACTIONS(12319), + [anon_sym_BSLASHparencite] = ACTIONS(12319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHParencite] = ACTIONS(12319), + [anon_sym_BSLASHfootcite] = ACTIONS(12319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12319), + [anon_sym_BSLASHtextcite] = ACTIONS(12319), + [anon_sym_BSLASHTextcite] = ACTIONS(12319), + [anon_sym_BSLASHsmartcite] = ACTIONS(12319), + [anon_sym_BSLASHSmartcite] = ACTIONS(12319), + [anon_sym_BSLASHsupercite] = ACTIONS(12319), + [anon_sym_BSLASHautocite] = ACTIONS(12319), + [anon_sym_BSLASHAutocite] = ACTIONS(12319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHvolcite] = ACTIONS(12319), + [anon_sym_BSLASHVolcite] = ACTIONS(12319), + [anon_sym_BSLASHpvolcite] = ACTIONS(12319), + [anon_sym_BSLASHPvolcite] = ACTIONS(12319), + [anon_sym_BSLASHfvolcite] = ACTIONS(12319), + [anon_sym_BSLASHftvolcite] = ACTIONS(12319), + [anon_sym_BSLASHsvolcite] = ACTIONS(12319), + [anon_sym_BSLASHSvolcite] = ACTIONS(12319), + [anon_sym_BSLASHtvolcite] = ACTIONS(12319), + [anon_sym_BSLASHTvolcite] = ACTIONS(12319), + [anon_sym_BSLASHavolcite] = ACTIONS(12319), + [anon_sym_BSLASHAvolcite] = ACTIONS(12319), + [anon_sym_BSLASHnotecite] = ACTIONS(12319), + [anon_sym_BSLASHpnotecite] = ACTIONS(12319), + [anon_sym_BSLASHPnotecite] = ACTIONS(12319), + [anon_sym_BSLASHfnotecite] = ACTIONS(12319), + [anon_sym_BSLASHusepackage] = ACTIONS(12319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12319), + [anon_sym_BSLASHinclude] = ACTIONS(12319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12319), + [anon_sym_BSLASHinput] = ACTIONS(12319), + [anon_sym_BSLASHsubfile] = ACTIONS(12319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12319), + [anon_sym_BSLASHbibliography] = ACTIONS(12319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12319), + [anon_sym_BSLASHincludesvg] = ACTIONS(12319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12319), + [anon_sym_BSLASHimport] = ACTIONS(12319), + [anon_sym_BSLASHsubimport] = ACTIONS(12319), + [anon_sym_BSLASHinputfrom] = ACTIONS(12319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12319), + [anon_sym_BSLASHincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHlabel] = ACTIONS(12319), + [anon_sym_BSLASHref] = ACTIONS(12319), + [anon_sym_BSLASHvref] = ACTIONS(12319), + [anon_sym_BSLASHVref] = ACTIONS(12319), + [anon_sym_BSLASHautoref] = ACTIONS(12319), + [anon_sym_BSLASHpageref] = ACTIONS(12319), + [anon_sym_BSLASHcref] = ACTIONS(12319), + [anon_sym_BSLASHCref] = ACTIONS(12319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnameCref] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHlabelcref] = ACTIONS(12319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12319), + [anon_sym_BSLASHeqref] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange] = ACTIONS(12319), + [anon_sym_BSLASHCrefrange] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewlabel] = ACTIONS(12319), + [anon_sym_BSLASHnewcommand] = ACTIONS(12319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12319), + [anon_sym_BSLASHgls] = ACTIONS(12319), + [anon_sym_BSLASHGls] = ACTIONS(12319), + [anon_sym_BSLASHGLS] = ACTIONS(12319), + [anon_sym_BSLASHglspl] = ACTIONS(12319), + [anon_sym_BSLASHGlspl] = ACTIONS(12319), + [anon_sym_BSLASHGLSpl] = ACTIONS(12319), + [anon_sym_BSLASHglsdisp] = ACTIONS(12319), + [anon_sym_BSLASHglslink] = ACTIONS(12319), + [anon_sym_BSLASHglstext] = ACTIONS(12319), + [anon_sym_BSLASHGlstext] = ACTIONS(12319), + [anon_sym_BSLASHGLStext] = ACTIONS(12319), + [anon_sym_BSLASHglsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12319), + [anon_sym_BSLASHglsplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSplural] = ACTIONS(12319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHglsname] = ACTIONS(12319), + [anon_sym_BSLASHGlsname] = ACTIONS(12319), + [anon_sym_BSLASHGLSname] = ACTIONS(12319), + [anon_sym_BSLASHglssymbol] = ACTIONS(12319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12319), + [anon_sym_BSLASHglsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12319), + [anon_sym_BSLASHglsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12319), + [anon_sym_BSLASHglsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12319), + [anon_sym_BSLASHglsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12319), + [anon_sym_BSLASHglsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12319), + [anon_sym_BSLASHnewacronym] = ACTIONS(12319), + [anon_sym_BSLASHacrshort] = ACTIONS(12319), + [anon_sym_BSLASHAcrshort] = ACTIONS(12319), + [anon_sym_BSLASHACRshort] = ACTIONS(12319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12319), + [anon_sym_BSLASHacrlong] = ACTIONS(12319), + [anon_sym_BSLASHAcrlong] = ACTIONS(12319), + [anon_sym_BSLASHACRlong] = ACTIONS(12319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12319), + [anon_sym_BSLASHacrfull] = ACTIONS(12319), + [anon_sym_BSLASHAcrfull] = ACTIONS(12319), + [anon_sym_BSLASHACRfull] = ACTIONS(12319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12319), + [anon_sym_BSLASHacs] = ACTIONS(12319), + [anon_sym_BSLASHAcs] = ACTIONS(12319), + [anon_sym_BSLASHacsp] = ACTIONS(12319), + [anon_sym_BSLASHAcsp] = ACTIONS(12319), + [anon_sym_BSLASHacl] = ACTIONS(12319), + [anon_sym_BSLASHAcl] = ACTIONS(12319), + [anon_sym_BSLASHaclp] = ACTIONS(12319), + [anon_sym_BSLASHAclp] = ACTIONS(12319), + [anon_sym_BSLASHacf] = ACTIONS(12319), + [anon_sym_BSLASHAcf] = ACTIONS(12319), + [anon_sym_BSLASHacfp] = ACTIONS(12319), + [anon_sym_BSLASHAcfp] = ACTIONS(12319), + [anon_sym_BSLASHac] = ACTIONS(12319), + [anon_sym_BSLASHAc] = ACTIONS(12319), + [anon_sym_BSLASHacp] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12319), + [anon_sym_BSLASHcolor] = ACTIONS(12319), + [anon_sym_BSLASHcolorbox] = ACTIONS(12319), + [anon_sym_BSLASHtextcolor] = ACTIONS(12319), + [anon_sym_BSLASHpagecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12319), + }, + [1273] = { + [sym_generic_command_name] = ACTIONS(12267), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12267), + [aux_sym_subsubsection_token1] = ACTIONS(12267), + [aux_sym_paragraph_token1] = ACTIONS(12267), + [aux_sym_subparagraph_token1] = ACTIONS(12267), + [anon_sym_BSLASHitem] = ACTIONS(12267), + [anon_sym_LBRACK] = ACTIONS(12265), + [anon_sym_RBRACK] = ACTIONS(12265), + [anon_sym_LBRACE] = ACTIONS(12265), + [anon_sym_RBRACE] = ACTIONS(12265), + [anon_sym_LPAREN] = ACTIONS(12265), + [anon_sym_COMMA] = ACTIONS(12265), + [anon_sym_EQ] = ACTIONS(12265), + [sym_word] = ACTIONS(12265), + [sym_param] = ACTIONS(12265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12265), + [anon_sym_DOLLAR] = ACTIONS(12267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12265), + [anon_sym_BSLASHbegin] = ACTIONS(12267), + [anon_sym_BSLASHcaption] = ACTIONS(12267), + [anon_sym_BSLASHcite] = ACTIONS(12267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCite] = ACTIONS(12267), + [anon_sym_BSLASHnocite] = ACTIONS(12267), + [anon_sym_BSLASHcitet] = ACTIONS(12267), + [anon_sym_BSLASHcitep] = ACTIONS(12267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteauthor] = ACTIONS(12267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitetitle] = ACTIONS(12267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteyear] = ACTIONS(12267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitedate] = ACTIONS(12267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteurl] = ACTIONS(12267), + [anon_sym_BSLASHfullcite] = ACTIONS(12267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12267), + [anon_sym_BSLASHcitealt] = ACTIONS(12267), + [anon_sym_BSLASHcitealp] = ACTIONS(12267), + [anon_sym_BSLASHcitetext] = ACTIONS(12267), + [anon_sym_BSLASHparencite] = ACTIONS(12267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHParencite] = ACTIONS(12267), + [anon_sym_BSLASHfootcite] = ACTIONS(12267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12267), + [anon_sym_BSLASHtextcite] = ACTIONS(12267), + [anon_sym_BSLASHTextcite] = ACTIONS(12267), + [anon_sym_BSLASHsmartcite] = ACTIONS(12267), + [anon_sym_BSLASHSmartcite] = ACTIONS(12267), + [anon_sym_BSLASHsupercite] = ACTIONS(12267), + [anon_sym_BSLASHautocite] = ACTIONS(12267), + [anon_sym_BSLASHAutocite] = ACTIONS(12267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHvolcite] = ACTIONS(12267), + [anon_sym_BSLASHVolcite] = ACTIONS(12267), + [anon_sym_BSLASHpvolcite] = ACTIONS(12267), + [anon_sym_BSLASHPvolcite] = ACTIONS(12267), + [anon_sym_BSLASHfvolcite] = ACTIONS(12267), + [anon_sym_BSLASHftvolcite] = ACTIONS(12267), + [anon_sym_BSLASHsvolcite] = ACTIONS(12267), + [anon_sym_BSLASHSvolcite] = ACTIONS(12267), + [anon_sym_BSLASHtvolcite] = ACTIONS(12267), + [anon_sym_BSLASHTvolcite] = ACTIONS(12267), + [anon_sym_BSLASHavolcite] = ACTIONS(12267), + [anon_sym_BSLASHAvolcite] = ACTIONS(12267), + [anon_sym_BSLASHnotecite] = ACTIONS(12267), + [anon_sym_BSLASHpnotecite] = ACTIONS(12267), + [anon_sym_BSLASHPnotecite] = ACTIONS(12267), + [anon_sym_BSLASHfnotecite] = ACTIONS(12267), + [anon_sym_BSLASHusepackage] = ACTIONS(12267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12267), + [anon_sym_BSLASHinclude] = ACTIONS(12267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12267), + [anon_sym_BSLASHinput] = ACTIONS(12267), + [anon_sym_BSLASHsubfile] = ACTIONS(12267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12267), + [anon_sym_BSLASHbibliography] = ACTIONS(12267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12267), + [anon_sym_BSLASHincludesvg] = ACTIONS(12267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12267), + [anon_sym_BSLASHimport] = ACTIONS(12267), + [anon_sym_BSLASHsubimport] = ACTIONS(12267), + [anon_sym_BSLASHinputfrom] = ACTIONS(12267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12267), + [anon_sym_BSLASHincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHlabel] = ACTIONS(12267), + [anon_sym_BSLASHref] = ACTIONS(12267), + [anon_sym_BSLASHvref] = ACTIONS(12267), + [anon_sym_BSLASHVref] = ACTIONS(12267), + [anon_sym_BSLASHautoref] = ACTIONS(12267), + [anon_sym_BSLASHpageref] = ACTIONS(12267), + [anon_sym_BSLASHcref] = ACTIONS(12267), + [anon_sym_BSLASHCref] = ACTIONS(12267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnameCref] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHlabelcref] = ACTIONS(12267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12267), + [anon_sym_BSLASHeqref] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange] = ACTIONS(12267), + [anon_sym_BSLASHCrefrange] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewlabel] = ACTIONS(12267), + [anon_sym_BSLASHnewcommand] = ACTIONS(12267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12267), + [anon_sym_BSLASHgls] = ACTIONS(12267), + [anon_sym_BSLASHGls] = ACTIONS(12267), + [anon_sym_BSLASHGLS] = ACTIONS(12267), + [anon_sym_BSLASHglspl] = ACTIONS(12267), + [anon_sym_BSLASHGlspl] = ACTIONS(12267), + [anon_sym_BSLASHGLSpl] = ACTIONS(12267), + [anon_sym_BSLASHglsdisp] = ACTIONS(12267), + [anon_sym_BSLASHglslink] = ACTIONS(12267), + [anon_sym_BSLASHglstext] = ACTIONS(12267), + [anon_sym_BSLASHGlstext] = ACTIONS(12267), + [anon_sym_BSLASHGLStext] = ACTIONS(12267), + [anon_sym_BSLASHglsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12267), + [anon_sym_BSLASHglsplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSplural] = ACTIONS(12267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHglsname] = ACTIONS(12267), + [anon_sym_BSLASHGlsname] = ACTIONS(12267), + [anon_sym_BSLASHGLSname] = ACTIONS(12267), + [anon_sym_BSLASHglssymbol] = ACTIONS(12267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12267), + [anon_sym_BSLASHglsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12267), + [anon_sym_BSLASHglsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12267), + [anon_sym_BSLASHglsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12267), + [anon_sym_BSLASHglsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12267), + [anon_sym_BSLASHglsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12267), + [anon_sym_BSLASHnewacronym] = ACTIONS(12267), + [anon_sym_BSLASHacrshort] = ACTIONS(12267), + [anon_sym_BSLASHAcrshort] = ACTIONS(12267), + [anon_sym_BSLASHACRshort] = ACTIONS(12267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12267), + [anon_sym_BSLASHacrlong] = ACTIONS(12267), + [anon_sym_BSLASHAcrlong] = ACTIONS(12267), + [anon_sym_BSLASHACRlong] = ACTIONS(12267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12267), + [anon_sym_BSLASHacrfull] = ACTIONS(12267), + [anon_sym_BSLASHAcrfull] = ACTIONS(12267), + [anon_sym_BSLASHACRfull] = ACTIONS(12267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12267), + [anon_sym_BSLASHacs] = ACTIONS(12267), + [anon_sym_BSLASHAcs] = ACTIONS(12267), + [anon_sym_BSLASHacsp] = ACTIONS(12267), + [anon_sym_BSLASHAcsp] = ACTIONS(12267), + [anon_sym_BSLASHacl] = ACTIONS(12267), + [anon_sym_BSLASHAcl] = ACTIONS(12267), + [anon_sym_BSLASHaclp] = ACTIONS(12267), + [anon_sym_BSLASHAclp] = ACTIONS(12267), + [anon_sym_BSLASHacf] = ACTIONS(12267), + [anon_sym_BSLASHAcf] = ACTIONS(12267), + [anon_sym_BSLASHacfp] = ACTIONS(12267), + [anon_sym_BSLASHAcfp] = ACTIONS(12267), + [anon_sym_BSLASHac] = ACTIONS(12267), + [anon_sym_BSLASHAc] = ACTIONS(12267), + [anon_sym_BSLASHacp] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12267), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12267), + [anon_sym_BSLASHcolor] = ACTIONS(12267), + [anon_sym_BSLASHcolorbox] = ACTIONS(12267), + [anon_sym_BSLASHtextcolor] = ACTIONS(12267), + [anon_sym_BSLASHpagecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12267), + }, + [1274] = { + [sym_generic_command_name] = ACTIONS(12271), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12271), + [aux_sym_subsubsection_token1] = ACTIONS(12271), + [aux_sym_paragraph_token1] = ACTIONS(12271), + [aux_sym_subparagraph_token1] = ACTIONS(12271), + [anon_sym_BSLASHitem] = ACTIONS(12271), + [anon_sym_LBRACK] = ACTIONS(12269), + [anon_sym_RBRACK] = ACTIONS(12269), + [anon_sym_LBRACE] = ACTIONS(12269), + [anon_sym_RBRACE] = ACTIONS(12269), + [anon_sym_LPAREN] = ACTIONS(12269), + [anon_sym_COMMA] = ACTIONS(12269), + [anon_sym_EQ] = ACTIONS(12269), + [sym_word] = ACTIONS(12269), + [sym_param] = ACTIONS(12269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12269), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12269), + [anon_sym_DOLLAR] = ACTIONS(12271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12269), + [anon_sym_BSLASHbegin] = ACTIONS(12271), + [anon_sym_BSLASHcaption] = ACTIONS(12271), + [anon_sym_BSLASHcite] = ACTIONS(12271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCite] = ACTIONS(12271), + [anon_sym_BSLASHnocite] = ACTIONS(12271), + [anon_sym_BSLASHcitet] = ACTIONS(12271), + [anon_sym_BSLASHcitep] = ACTIONS(12271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteauthor] = ACTIONS(12271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitetitle] = ACTIONS(12271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteyear] = ACTIONS(12271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitedate] = ACTIONS(12271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteurl] = ACTIONS(12271), + [anon_sym_BSLASHfullcite] = ACTIONS(12271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12271), + [anon_sym_BSLASHcitealt] = ACTIONS(12271), + [anon_sym_BSLASHcitealp] = ACTIONS(12271), + [anon_sym_BSLASHcitetext] = ACTIONS(12271), + [anon_sym_BSLASHparencite] = ACTIONS(12271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHParencite] = ACTIONS(12271), + [anon_sym_BSLASHfootcite] = ACTIONS(12271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12271), + [anon_sym_BSLASHtextcite] = ACTIONS(12271), + [anon_sym_BSLASHTextcite] = ACTIONS(12271), + [anon_sym_BSLASHsmartcite] = ACTIONS(12271), + [anon_sym_BSLASHSmartcite] = ACTIONS(12271), + [anon_sym_BSLASHsupercite] = ACTIONS(12271), + [anon_sym_BSLASHautocite] = ACTIONS(12271), + [anon_sym_BSLASHAutocite] = ACTIONS(12271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHvolcite] = ACTIONS(12271), + [anon_sym_BSLASHVolcite] = ACTIONS(12271), + [anon_sym_BSLASHpvolcite] = ACTIONS(12271), + [anon_sym_BSLASHPvolcite] = ACTIONS(12271), + [anon_sym_BSLASHfvolcite] = ACTIONS(12271), + [anon_sym_BSLASHftvolcite] = ACTIONS(12271), + [anon_sym_BSLASHsvolcite] = ACTIONS(12271), + [anon_sym_BSLASHSvolcite] = ACTIONS(12271), + [anon_sym_BSLASHtvolcite] = ACTIONS(12271), + [anon_sym_BSLASHTvolcite] = ACTIONS(12271), + [anon_sym_BSLASHavolcite] = ACTIONS(12271), + [anon_sym_BSLASHAvolcite] = ACTIONS(12271), + [anon_sym_BSLASHnotecite] = ACTIONS(12271), + [anon_sym_BSLASHpnotecite] = ACTIONS(12271), + [anon_sym_BSLASHPnotecite] = ACTIONS(12271), + [anon_sym_BSLASHfnotecite] = ACTIONS(12271), + [anon_sym_BSLASHusepackage] = ACTIONS(12271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12271), + [anon_sym_BSLASHinclude] = ACTIONS(12271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12271), + [anon_sym_BSLASHinput] = ACTIONS(12271), + [anon_sym_BSLASHsubfile] = ACTIONS(12271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12271), + [anon_sym_BSLASHbibliography] = ACTIONS(12271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12271), + [anon_sym_BSLASHincludesvg] = ACTIONS(12271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12271), + [anon_sym_BSLASHimport] = ACTIONS(12271), + [anon_sym_BSLASHsubimport] = ACTIONS(12271), + [anon_sym_BSLASHinputfrom] = ACTIONS(12271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12271), + [anon_sym_BSLASHincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHlabel] = ACTIONS(12271), + [anon_sym_BSLASHref] = ACTIONS(12271), + [anon_sym_BSLASHvref] = ACTIONS(12271), + [anon_sym_BSLASHVref] = ACTIONS(12271), + [anon_sym_BSLASHautoref] = ACTIONS(12271), + [anon_sym_BSLASHpageref] = ACTIONS(12271), + [anon_sym_BSLASHcref] = ACTIONS(12271), + [anon_sym_BSLASHCref] = ACTIONS(12271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnameCref] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHlabelcref] = ACTIONS(12271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12271), + [anon_sym_BSLASHeqref] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange] = ACTIONS(12271), + [anon_sym_BSLASHCrefrange] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewlabel] = ACTIONS(12271), + [anon_sym_BSLASHnewcommand] = ACTIONS(12271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12271), + [anon_sym_BSLASHgls] = ACTIONS(12271), + [anon_sym_BSLASHGls] = ACTIONS(12271), + [anon_sym_BSLASHGLS] = ACTIONS(12271), + [anon_sym_BSLASHglspl] = ACTIONS(12271), + [anon_sym_BSLASHGlspl] = ACTIONS(12271), + [anon_sym_BSLASHGLSpl] = ACTIONS(12271), + [anon_sym_BSLASHglsdisp] = ACTIONS(12271), + [anon_sym_BSLASHglslink] = ACTIONS(12271), + [anon_sym_BSLASHglstext] = ACTIONS(12271), + [anon_sym_BSLASHGlstext] = ACTIONS(12271), + [anon_sym_BSLASHGLStext] = ACTIONS(12271), + [anon_sym_BSLASHglsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12271), + [anon_sym_BSLASHglsplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSplural] = ACTIONS(12271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHglsname] = ACTIONS(12271), + [anon_sym_BSLASHGlsname] = ACTIONS(12271), + [anon_sym_BSLASHGLSname] = ACTIONS(12271), + [anon_sym_BSLASHglssymbol] = ACTIONS(12271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12271), + [anon_sym_BSLASHglsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12271), + [anon_sym_BSLASHglsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12271), + [anon_sym_BSLASHglsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12271), + [anon_sym_BSLASHglsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12271), + [anon_sym_BSLASHglsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12271), + [anon_sym_BSLASHnewacronym] = ACTIONS(12271), + [anon_sym_BSLASHacrshort] = ACTIONS(12271), + [anon_sym_BSLASHAcrshort] = ACTIONS(12271), + [anon_sym_BSLASHACRshort] = ACTIONS(12271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12271), + [anon_sym_BSLASHacrlong] = ACTIONS(12271), + [anon_sym_BSLASHAcrlong] = ACTIONS(12271), + [anon_sym_BSLASHACRlong] = ACTIONS(12271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12271), + [anon_sym_BSLASHacrfull] = ACTIONS(12271), + [anon_sym_BSLASHAcrfull] = ACTIONS(12271), + [anon_sym_BSLASHACRfull] = ACTIONS(12271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12271), + [anon_sym_BSLASHacs] = ACTIONS(12271), + [anon_sym_BSLASHAcs] = ACTIONS(12271), + [anon_sym_BSLASHacsp] = ACTIONS(12271), + [anon_sym_BSLASHAcsp] = ACTIONS(12271), + [anon_sym_BSLASHacl] = ACTIONS(12271), + [anon_sym_BSLASHAcl] = ACTIONS(12271), + [anon_sym_BSLASHaclp] = ACTIONS(12271), + [anon_sym_BSLASHAclp] = ACTIONS(12271), + [anon_sym_BSLASHacf] = ACTIONS(12271), + [anon_sym_BSLASHAcf] = ACTIONS(12271), + [anon_sym_BSLASHacfp] = ACTIONS(12271), + [anon_sym_BSLASHAcfp] = ACTIONS(12271), + [anon_sym_BSLASHac] = ACTIONS(12271), + [anon_sym_BSLASHAc] = ACTIONS(12271), + [anon_sym_BSLASHacp] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12271), + [anon_sym_BSLASHcolor] = ACTIONS(12271), + [anon_sym_BSLASHcolorbox] = ACTIONS(12271), + [anon_sym_BSLASHtextcolor] = ACTIONS(12271), + [anon_sym_BSLASHpagecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12271), + }, + [1275] = { + [sym_generic_command_name] = ACTIONS(12213), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12213), + [aux_sym_subsubsection_token1] = ACTIONS(12213), + [aux_sym_paragraph_token1] = ACTIONS(12213), + [aux_sym_subparagraph_token1] = ACTIONS(12213), + [anon_sym_BSLASHitem] = ACTIONS(12213), + [anon_sym_LBRACK] = ACTIONS(12211), + [anon_sym_RBRACK] = ACTIONS(12211), + [anon_sym_LBRACE] = ACTIONS(12211), + [anon_sym_RBRACE] = ACTIONS(12211), + [anon_sym_LPAREN] = ACTIONS(12211), + [anon_sym_COMMA] = ACTIONS(12211), + [anon_sym_EQ] = ACTIONS(12211), + [sym_word] = ACTIONS(12211), + [sym_param] = ACTIONS(12211), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12211), + [anon_sym_DOLLAR] = ACTIONS(12213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12211), + [anon_sym_BSLASHbegin] = ACTIONS(12213), + [anon_sym_BSLASHcaption] = ACTIONS(12213), + [anon_sym_BSLASHcite] = ACTIONS(12213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCite] = ACTIONS(12213), + [anon_sym_BSLASHnocite] = ACTIONS(12213), + [anon_sym_BSLASHcitet] = ACTIONS(12213), + [anon_sym_BSLASHcitep] = ACTIONS(12213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteauthor] = ACTIONS(12213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitetitle] = ACTIONS(12213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteyear] = ACTIONS(12213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitedate] = ACTIONS(12213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteurl] = ACTIONS(12213), + [anon_sym_BSLASHfullcite] = ACTIONS(12213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12213), + [anon_sym_BSLASHcitealt] = ACTIONS(12213), + [anon_sym_BSLASHcitealp] = ACTIONS(12213), + [anon_sym_BSLASHcitetext] = ACTIONS(12213), + [anon_sym_BSLASHparencite] = ACTIONS(12213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHParencite] = ACTIONS(12213), + [anon_sym_BSLASHfootcite] = ACTIONS(12213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12213), + [anon_sym_BSLASHtextcite] = ACTIONS(12213), + [anon_sym_BSLASHTextcite] = ACTIONS(12213), + [anon_sym_BSLASHsmartcite] = ACTIONS(12213), + [anon_sym_BSLASHSmartcite] = ACTIONS(12213), + [anon_sym_BSLASHsupercite] = ACTIONS(12213), + [anon_sym_BSLASHautocite] = ACTIONS(12213), + [anon_sym_BSLASHAutocite] = ACTIONS(12213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHvolcite] = ACTIONS(12213), + [anon_sym_BSLASHVolcite] = ACTIONS(12213), + [anon_sym_BSLASHpvolcite] = ACTIONS(12213), + [anon_sym_BSLASHPvolcite] = ACTIONS(12213), + [anon_sym_BSLASHfvolcite] = ACTIONS(12213), + [anon_sym_BSLASHftvolcite] = ACTIONS(12213), + [anon_sym_BSLASHsvolcite] = ACTIONS(12213), + [anon_sym_BSLASHSvolcite] = ACTIONS(12213), + [anon_sym_BSLASHtvolcite] = ACTIONS(12213), + [anon_sym_BSLASHTvolcite] = ACTIONS(12213), + [anon_sym_BSLASHavolcite] = ACTIONS(12213), + [anon_sym_BSLASHAvolcite] = ACTIONS(12213), + [anon_sym_BSLASHnotecite] = ACTIONS(12213), + [anon_sym_BSLASHpnotecite] = ACTIONS(12213), + [anon_sym_BSLASHPnotecite] = ACTIONS(12213), + [anon_sym_BSLASHfnotecite] = ACTIONS(12213), + [anon_sym_BSLASHusepackage] = ACTIONS(12213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12213), + [anon_sym_BSLASHinclude] = ACTIONS(12213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12213), + [anon_sym_BSLASHinput] = ACTIONS(12213), + [anon_sym_BSLASHsubfile] = ACTIONS(12213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12213), + [anon_sym_BSLASHbibliography] = ACTIONS(12213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12213), + [anon_sym_BSLASHincludesvg] = ACTIONS(12213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12213), + [anon_sym_BSLASHimport] = ACTIONS(12213), + [anon_sym_BSLASHsubimport] = ACTIONS(12213), + [anon_sym_BSLASHinputfrom] = ACTIONS(12213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12213), + [anon_sym_BSLASHincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHlabel] = ACTIONS(12213), + [anon_sym_BSLASHref] = ACTIONS(12213), + [anon_sym_BSLASHvref] = ACTIONS(12213), + [anon_sym_BSLASHVref] = ACTIONS(12213), + [anon_sym_BSLASHautoref] = ACTIONS(12213), + [anon_sym_BSLASHpageref] = ACTIONS(12213), + [anon_sym_BSLASHcref] = ACTIONS(12213), + [anon_sym_BSLASHCref] = ACTIONS(12213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnameCref] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHlabelcref] = ACTIONS(12213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12213), + [anon_sym_BSLASHeqref] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange] = ACTIONS(12213), + [anon_sym_BSLASHCrefrange] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewlabel] = ACTIONS(12213), + [anon_sym_BSLASHnewcommand] = ACTIONS(12213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12213), + [anon_sym_BSLASHgls] = ACTIONS(12213), + [anon_sym_BSLASHGls] = ACTIONS(12213), + [anon_sym_BSLASHGLS] = ACTIONS(12213), + [anon_sym_BSLASHglspl] = ACTIONS(12213), + [anon_sym_BSLASHGlspl] = ACTIONS(12213), + [anon_sym_BSLASHGLSpl] = ACTIONS(12213), + [anon_sym_BSLASHglsdisp] = ACTIONS(12213), + [anon_sym_BSLASHglslink] = ACTIONS(12213), + [anon_sym_BSLASHglstext] = ACTIONS(12213), + [anon_sym_BSLASHGlstext] = ACTIONS(12213), + [anon_sym_BSLASHGLStext] = ACTIONS(12213), + [anon_sym_BSLASHglsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12213), + [anon_sym_BSLASHglsplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSplural] = ACTIONS(12213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHglsname] = ACTIONS(12213), + [anon_sym_BSLASHGlsname] = ACTIONS(12213), + [anon_sym_BSLASHGLSname] = ACTIONS(12213), + [anon_sym_BSLASHglssymbol] = ACTIONS(12213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12213), + [anon_sym_BSLASHglsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12213), + [anon_sym_BSLASHglsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12213), + [anon_sym_BSLASHglsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12213), + [anon_sym_BSLASHglsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12213), + [anon_sym_BSLASHglsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12213), + [anon_sym_BSLASHnewacronym] = ACTIONS(12213), + [anon_sym_BSLASHacrshort] = ACTIONS(12213), + [anon_sym_BSLASHAcrshort] = ACTIONS(12213), + [anon_sym_BSLASHACRshort] = ACTIONS(12213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12213), + [anon_sym_BSLASHacrlong] = ACTIONS(12213), + [anon_sym_BSLASHAcrlong] = ACTIONS(12213), + [anon_sym_BSLASHACRlong] = ACTIONS(12213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12213), + [anon_sym_BSLASHacrfull] = ACTIONS(12213), + [anon_sym_BSLASHAcrfull] = ACTIONS(12213), + [anon_sym_BSLASHACRfull] = ACTIONS(12213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12213), + [anon_sym_BSLASHacs] = ACTIONS(12213), + [anon_sym_BSLASHAcs] = ACTIONS(12213), + [anon_sym_BSLASHacsp] = ACTIONS(12213), + [anon_sym_BSLASHAcsp] = ACTIONS(12213), + [anon_sym_BSLASHacl] = ACTIONS(12213), + [anon_sym_BSLASHAcl] = ACTIONS(12213), + [anon_sym_BSLASHaclp] = ACTIONS(12213), + [anon_sym_BSLASHAclp] = ACTIONS(12213), + [anon_sym_BSLASHacf] = ACTIONS(12213), + [anon_sym_BSLASHAcf] = ACTIONS(12213), + [anon_sym_BSLASHacfp] = ACTIONS(12213), + [anon_sym_BSLASHAcfp] = ACTIONS(12213), + [anon_sym_BSLASHac] = ACTIONS(12213), + [anon_sym_BSLASHAc] = ACTIONS(12213), + [anon_sym_BSLASHacp] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12213), + [anon_sym_BSLASHcolor] = ACTIONS(12213), + [anon_sym_BSLASHcolorbox] = ACTIONS(12213), + [anon_sym_BSLASHtextcolor] = ACTIONS(12213), + [anon_sym_BSLASHpagecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12213), + }, + [1276] = { + [sym_generic_command_name] = ACTIONS(12279), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12279), + [aux_sym_subsubsection_token1] = ACTIONS(12279), + [aux_sym_paragraph_token1] = ACTIONS(12279), + [aux_sym_subparagraph_token1] = ACTIONS(12279), + [anon_sym_BSLASHitem] = ACTIONS(12279), + [anon_sym_LBRACK] = ACTIONS(12277), + [anon_sym_RBRACK] = ACTIONS(12277), + [anon_sym_LBRACE] = ACTIONS(12277), + [anon_sym_RBRACE] = ACTIONS(12277), + [anon_sym_LPAREN] = ACTIONS(12277), + [anon_sym_COMMA] = ACTIONS(12277), + [anon_sym_EQ] = ACTIONS(12277), + [sym_word] = ACTIONS(12277), + [sym_param] = ACTIONS(12277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12277), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12277), + [anon_sym_DOLLAR] = ACTIONS(12279), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12277), + [anon_sym_BSLASHbegin] = ACTIONS(12279), + [anon_sym_BSLASHcaption] = ACTIONS(12279), + [anon_sym_BSLASHcite] = ACTIONS(12279), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCite] = ACTIONS(12279), + [anon_sym_BSLASHnocite] = ACTIONS(12279), + [anon_sym_BSLASHcitet] = ACTIONS(12279), + [anon_sym_BSLASHcitep] = ACTIONS(12279), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteauthor] = ACTIONS(12279), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12279), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitetitle] = ACTIONS(12279), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteyear] = ACTIONS(12279), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitedate] = ACTIONS(12279), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteurl] = ACTIONS(12279), + [anon_sym_BSLASHfullcite] = ACTIONS(12279), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12279), + [anon_sym_BSLASHcitealt] = ACTIONS(12279), + [anon_sym_BSLASHcitealp] = ACTIONS(12279), + [anon_sym_BSLASHcitetext] = ACTIONS(12279), + [anon_sym_BSLASHparencite] = ACTIONS(12279), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHParencite] = ACTIONS(12279), + [anon_sym_BSLASHfootcite] = ACTIONS(12279), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12279), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12279), + [anon_sym_BSLASHtextcite] = ACTIONS(12279), + [anon_sym_BSLASHTextcite] = ACTIONS(12279), + [anon_sym_BSLASHsmartcite] = ACTIONS(12279), + [anon_sym_BSLASHSmartcite] = ACTIONS(12279), + [anon_sym_BSLASHsupercite] = ACTIONS(12279), + [anon_sym_BSLASHautocite] = ACTIONS(12279), + [anon_sym_BSLASHAutocite] = ACTIONS(12279), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHvolcite] = ACTIONS(12279), + [anon_sym_BSLASHVolcite] = ACTIONS(12279), + [anon_sym_BSLASHpvolcite] = ACTIONS(12279), + [anon_sym_BSLASHPvolcite] = ACTIONS(12279), + [anon_sym_BSLASHfvolcite] = ACTIONS(12279), + [anon_sym_BSLASHftvolcite] = ACTIONS(12279), + [anon_sym_BSLASHsvolcite] = ACTIONS(12279), + [anon_sym_BSLASHSvolcite] = ACTIONS(12279), + [anon_sym_BSLASHtvolcite] = ACTIONS(12279), + [anon_sym_BSLASHTvolcite] = ACTIONS(12279), + [anon_sym_BSLASHavolcite] = ACTIONS(12279), + [anon_sym_BSLASHAvolcite] = ACTIONS(12279), + [anon_sym_BSLASHnotecite] = ACTIONS(12279), + [anon_sym_BSLASHpnotecite] = ACTIONS(12279), + [anon_sym_BSLASHPnotecite] = ACTIONS(12279), + [anon_sym_BSLASHfnotecite] = ACTIONS(12279), + [anon_sym_BSLASHusepackage] = ACTIONS(12279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12279), + [anon_sym_BSLASHinclude] = ACTIONS(12279), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12279), + [anon_sym_BSLASHinput] = ACTIONS(12279), + [anon_sym_BSLASHsubfile] = ACTIONS(12279), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12279), + [anon_sym_BSLASHbibliography] = ACTIONS(12279), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12279), + [anon_sym_BSLASHincludesvg] = ACTIONS(12279), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12279), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12279), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12279), + [anon_sym_BSLASHimport] = ACTIONS(12279), + [anon_sym_BSLASHsubimport] = ACTIONS(12279), + [anon_sym_BSLASHinputfrom] = ACTIONS(12279), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12279), + [anon_sym_BSLASHincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHlabel] = ACTIONS(12279), + [anon_sym_BSLASHref] = ACTIONS(12279), + [anon_sym_BSLASHvref] = ACTIONS(12279), + [anon_sym_BSLASHVref] = ACTIONS(12279), + [anon_sym_BSLASHautoref] = ACTIONS(12279), + [anon_sym_BSLASHpageref] = ACTIONS(12279), + [anon_sym_BSLASHcref] = ACTIONS(12279), + [anon_sym_BSLASHCref] = ACTIONS(12279), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnameCref] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHlabelcref] = ACTIONS(12279), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12279), + [anon_sym_BSLASHeqref] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange] = ACTIONS(12279), + [anon_sym_BSLASHCrefrange] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewlabel] = ACTIONS(12279), + [anon_sym_BSLASHnewcommand] = ACTIONS(12279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12279), + [anon_sym_BSLASHgls] = ACTIONS(12279), + [anon_sym_BSLASHGls] = ACTIONS(12279), + [anon_sym_BSLASHGLS] = ACTIONS(12279), + [anon_sym_BSLASHglspl] = ACTIONS(12279), + [anon_sym_BSLASHGlspl] = ACTIONS(12279), + [anon_sym_BSLASHGLSpl] = ACTIONS(12279), + [anon_sym_BSLASHglsdisp] = ACTIONS(12279), + [anon_sym_BSLASHglslink] = ACTIONS(12279), + [anon_sym_BSLASHglstext] = ACTIONS(12279), + [anon_sym_BSLASHGlstext] = ACTIONS(12279), + [anon_sym_BSLASHGLStext] = ACTIONS(12279), + [anon_sym_BSLASHglsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12279), + [anon_sym_BSLASHglsplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSplural] = ACTIONS(12279), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHglsname] = ACTIONS(12279), + [anon_sym_BSLASHGlsname] = ACTIONS(12279), + [anon_sym_BSLASHGLSname] = ACTIONS(12279), + [anon_sym_BSLASHglssymbol] = ACTIONS(12279), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12279), + [anon_sym_BSLASHglsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12279), + [anon_sym_BSLASHglsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12279), + [anon_sym_BSLASHglsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12279), + [anon_sym_BSLASHglsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12279), + [anon_sym_BSLASHglsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12279), + [anon_sym_BSLASHnewacronym] = ACTIONS(12279), + [anon_sym_BSLASHacrshort] = ACTIONS(12279), + [anon_sym_BSLASHAcrshort] = ACTIONS(12279), + [anon_sym_BSLASHACRshort] = ACTIONS(12279), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12279), + [anon_sym_BSLASHacrlong] = ACTIONS(12279), + [anon_sym_BSLASHAcrlong] = ACTIONS(12279), + [anon_sym_BSLASHACRlong] = ACTIONS(12279), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12279), + [anon_sym_BSLASHacrfull] = ACTIONS(12279), + [anon_sym_BSLASHAcrfull] = ACTIONS(12279), + [anon_sym_BSLASHACRfull] = ACTIONS(12279), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12279), + [anon_sym_BSLASHacs] = ACTIONS(12279), + [anon_sym_BSLASHAcs] = ACTIONS(12279), + [anon_sym_BSLASHacsp] = ACTIONS(12279), + [anon_sym_BSLASHAcsp] = ACTIONS(12279), + [anon_sym_BSLASHacl] = ACTIONS(12279), + [anon_sym_BSLASHAcl] = ACTIONS(12279), + [anon_sym_BSLASHaclp] = ACTIONS(12279), + [anon_sym_BSLASHAclp] = ACTIONS(12279), + [anon_sym_BSLASHacf] = ACTIONS(12279), + [anon_sym_BSLASHAcf] = ACTIONS(12279), + [anon_sym_BSLASHacfp] = ACTIONS(12279), + [anon_sym_BSLASHAcfp] = ACTIONS(12279), + [anon_sym_BSLASHac] = ACTIONS(12279), + [anon_sym_BSLASHAc] = ACTIONS(12279), + [anon_sym_BSLASHacp] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12279), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12279), + [anon_sym_BSLASHcolor] = ACTIONS(12279), + [anon_sym_BSLASHcolorbox] = ACTIONS(12279), + [anon_sym_BSLASHtextcolor] = ACTIONS(12279), + [anon_sym_BSLASHpagecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12279), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12279), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12279), + }, + [1277] = { + [sym_generic_command_name] = ACTIONS(12287), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12287), + [aux_sym_subsubsection_token1] = ACTIONS(12287), + [aux_sym_paragraph_token1] = ACTIONS(12287), + [aux_sym_subparagraph_token1] = ACTIONS(12287), + [anon_sym_BSLASHitem] = ACTIONS(12287), + [anon_sym_LBRACK] = ACTIONS(12285), + [anon_sym_RBRACK] = ACTIONS(12285), + [anon_sym_LBRACE] = ACTIONS(12285), + [anon_sym_RBRACE] = ACTIONS(12285), + [anon_sym_LPAREN] = ACTIONS(12285), + [anon_sym_COMMA] = ACTIONS(12285), + [anon_sym_EQ] = ACTIONS(12285), + [sym_word] = ACTIONS(12285), + [sym_param] = ACTIONS(12285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12285), + [anon_sym_DOLLAR] = ACTIONS(12287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12285), + [anon_sym_BSLASHbegin] = ACTIONS(12287), + [anon_sym_BSLASHcaption] = ACTIONS(12287), + [anon_sym_BSLASHcite] = ACTIONS(12287), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCite] = ACTIONS(12287), + [anon_sym_BSLASHnocite] = ACTIONS(12287), + [anon_sym_BSLASHcitet] = ACTIONS(12287), + [anon_sym_BSLASHcitep] = ACTIONS(12287), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteauthor] = ACTIONS(12287), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12287), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitetitle] = ACTIONS(12287), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteyear] = ACTIONS(12287), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitedate] = ACTIONS(12287), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteurl] = ACTIONS(12287), + [anon_sym_BSLASHfullcite] = ACTIONS(12287), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12287), + [anon_sym_BSLASHcitealt] = ACTIONS(12287), + [anon_sym_BSLASHcitealp] = ACTIONS(12287), + [anon_sym_BSLASHcitetext] = ACTIONS(12287), + [anon_sym_BSLASHparencite] = ACTIONS(12287), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHParencite] = ACTIONS(12287), + [anon_sym_BSLASHfootcite] = ACTIONS(12287), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12287), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12287), + [anon_sym_BSLASHtextcite] = ACTIONS(12287), + [anon_sym_BSLASHTextcite] = ACTIONS(12287), + [anon_sym_BSLASHsmartcite] = ACTIONS(12287), + [anon_sym_BSLASHSmartcite] = ACTIONS(12287), + [anon_sym_BSLASHsupercite] = ACTIONS(12287), + [anon_sym_BSLASHautocite] = ACTIONS(12287), + [anon_sym_BSLASHAutocite] = ACTIONS(12287), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHvolcite] = ACTIONS(12287), + [anon_sym_BSLASHVolcite] = ACTIONS(12287), + [anon_sym_BSLASHpvolcite] = ACTIONS(12287), + [anon_sym_BSLASHPvolcite] = ACTIONS(12287), + [anon_sym_BSLASHfvolcite] = ACTIONS(12287), + [anon_sym_BSLASHftvolcite] = ACTIONS(12287), + [anon_sym_BSLASHsvolcite] = ACTIONS(12287), + [anon_sym_BSLASHSvolcite] = ACTIONS(12287), + [anon_sym_BSLASHtvolcite] = ACTIONS(12287), + [anon_sym_BSLASHTvolcite] = ACTIONS(12287), + [anon_sym_BSLASHavolcite] = ACTIONS(12287), + [anon_sym_BSLASHAvolcite] = ACTIONS(12287), + [anon_sym_BSLASHnotecite] = ACTIONS(12287), + [anon_sym_BSLASHpnotecite] = ACTIONS(12287), + [anon_sym_BSLASHPnotecite] = ACTIONS(12287), + [anon_sym_BSLASHfnotecite] = ACTIONS(12287), + [anon_sym_BSLASHusepackage] = ACTIONS(12287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12287), + [anon_sym_BSLASHinclude] = ACTIONS(12287), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12287), + [anon_sym_BSLASHinput] = ACTIONS(12287), + [anon_sym_BSLASHsubfile] = ACTIONS(12287), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12287), + [anon_sym_BSLASHbibliography] = ACTIONS(12287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12287), + [anon_sym_BSLASHincludesvg] = ACTIONS(12287), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12287), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12287), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12287), + [anon_sym_BSLASHimport] = ACTIONS(12287), + [anon_sym_BSLASHsubimport] = ACTIONS(12287), + [anon_sym_BSLASHinputfrom] = ACTIONS(12287), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12287), + [anon_sym_BSLASHincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHlabel] = ACTIONS(12287), + [anon_sym_BSLASHref] = ACTIONS(12287), + [anon_sym_BSLASHvref] = ACTIONS(12287), + [anon_sym_BSLASHVref] = ACTIONS(12287), + [anon_sym_BSLASHautoref] = ACTIONS(12287), + [anon_sym_BSLASHpageref] = ACTIONS(12287), + [anon_sym_BSLASHcref] = ACTIONS(12287), + [anon_sym_BSLASHCref] = ACTIONS(12287), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnameCref] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHlabelcref] = ACTIONS(12287), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12287), + [anon_sym_BSLASHeqref] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange] = ACTIONS(12287), + [anon_sym_BSLASHCrefrange] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewlabel] = ACTIONS(12287), + [anon_sym_BSLASHnewcommand] = ACTIONS(12287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12287), + [anon_sym_BSLASHgls] = ACTIONS(12287), + [anon_sym_BSLASHGls] = ACTIONS(12287), + [anon_sym_BSLASHGLS] = ACTIONS(12287), + [anon_sym_BSLASHglspl] = ACTIONS(12287), + [anon_sym_BSLASHGlspl] = ACTIONS(12287), + [anon_sym_BSLASHGLSpl] = ACTIONS(12287), + [anon_sym_BSLASHglsdisp] = ACTIONS(12287), + [anon_sym_BSLASHglslink] = ACTIONS(12287), + [anon_sym_BSLASHglstext] = ACTIONS(12287), + [anon_sym_BSLASHGlstext] = ACTIONS(12287), + [anon_sym_BSLASHGLStext] = ACTIONS(12287), + [anon_sym_BSLASHglsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12287), + [anon_sym_BSLASHglsplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSplural] = ACTIONS(12287), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHglsname] = ACTIONS(12287), + [anon_sym_BSLASHGlsname] = ACTIONS(12287), + [anon_sym_BSLASHGLSname] = ACTIONS(12287), + [anon_sym_BSLASHglssymbol] = ACTIONS(12287), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12287), + [anon_sym_BSLASHglsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12287), + [anon_sym_BSLASHglsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12287), + [anon_sym_BSLASHglsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12287), + [anon_sym_BSLASHglsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12287), + [anon_sym_BSLASHglsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12287), + [anon_sym_BSLASHnewacronym] = ACTIONS(12287), + [anon_sym_BSLASHacrshort] = ACTIONS(12287), + [anon_sym_BSLASHAcrshort] = ACTIONS(12287), + [anon_sym_BSLASHACRshort] = ACTIONS(12287), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12287), + [anon_sym_BSLASHacrlong] = ACTIONS(12287), + [anon_sym_BSLASHAcrlong] = ACTIONS(12287), + [anon_sym_BSLASHACRlong] = ACTIONS(12287), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12287), + [anon_sym_BSLASHacrfull] = ACTIONS(12287), + [anon_sym_BSLASHAcrfull] = ACTIONS(12287), + [anon_sym_BSLASHACRfull] = ACTIONS(12287), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12287), + [anon_sym_BSLASHacs] = ACTIONS(12287), + [anon_sym_BSLASHAcs] = ACTIONS(12287), + [anon_sym_BSLASHacsp] = ACTIONS(12287), + [anon_sym_BSLASHAcsp] = ACTIONS(12287), + [anon_sym_BSLASHacl] = ACTIONS(12287), + [anon_sym_BSLASHAcl] = ACTIONS(12287), + [anon_sym_BSLASHaclp] = ACTIONS(12287), + [anon_sym_BSLASHAclp] = ACTIONS(12287), + [anon_sym_BSLASHacf] = ACTIONS(12287), + [anon_sym_BSLASHAcf] = ACTIONS(12287), + [anon_sym_BSLASHacfp] = ACTIONS(12287), + [anon_sym_BSLASHAcfp] = ACTIONS(12287), + [anon_sym_BSLASHac] = ACTIONS(12287), + [anon_sym_BSLASHAc] = ACTIONS(12287), + [anon_sym_BSLASHacp] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12287), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12287), + [anon_sym_BSLASHcolor] = ACTIONS(12287), + [anon_sym_BSLASHcolorbox] = ACTIONS(12287), + [anon_sym_BSLASHtextcolor] = ACTIONS(12287), + [anon_sym_BSLASHpagecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12287), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12287), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12287), + }, + [1278] = { + [sym_generic_command_name] = ACTIONS(12291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12291), + [aux_sym_subsubsection_token1] = ACTIONS(12291), + [aux_sym_paragraph_token1] = ACTIONS(12291), + [aux_sym_subparagraph_token1] = ACTIONS(12291), + [anon_sym_BSLASHitem] = ACTIONS(12291), + [anon_sym_LBRACK] = ACTIONS(12289), + [anon_sym_RBRACK] = ACTIONS(12289), + [anon_sym_LBRACE] = ACTIONS(12289), + [anon_sym_RBRACE] = ACTIONS(12289), + [anon_sym_LPAREN] = ACTIONS(12289), + [anon_sym_COMMA] = ACTIONS(12289), + [anon_sym_EQ] = ACTIONS(12289), + [sym_word] = ACTIONS(12289), + [sym_param] = ACTIONS(12289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12289), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12289), + [anon_sym_DOLLAR] = ACTIONS(12291), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12289), + [anon_sym_BSLASHbegin] = ACTIONS(12291), + [anon_sym_BSLASHcaption] = ACTIONS(12291), + [anon_sym_BSLASHcite] = ACTIONS(12291), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCite] = ACTIONS(12291), + [anon_sym_BSLASHnocite] = ACTIONS(12291), + [anon_sym_BSLASHcitet] = ACTIONS(12291), + [anon_sym_BSLASHcitep] = ACTIONS(12291), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteauthor] = ACTIONS(12291), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12291), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitetitle] = ACTIONS(12291), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteyear] = ACTIONS(12291), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitedate] = ACTIONS(12291), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteurl] = ACTIONS(12291), + [anon_sym_BSLASHfullcite] = ACTIONS(12291), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12291), + [anon_sym_BSLASHcitealt] = ACTIONS(12291), + [anon_sym_BSLASHcitealp] = ACTIONS(12291), + [anon_sym_BSLASHcitetext] = ACTIONS(12291), + [anon_sym_BSLASHparencite] = ACTIONS(12291), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHParencite] = ACTIONS(12291), + [anon_sym_BSLASHfootcite] = ACTIONS(12291), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12291), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12291), + [anon_sym_BSLASHtextcite] = ACTIONS(12291), + [anon_sym_BSLASHTextcite] = ACTIONS(12291), + [anon_sym_BSLASHsmartcite] = ACTIONS(12291), + [anon_sym_BSLASHSmartcite] = ACTIONS(12291), + [anon_sym_BSLASHsupercite] = ACTIONS(12291), + [anon_sym_BSLASHautocite] = ACTIONS(12291), + [anon_sym_BSLASHAutocite] = ACTIONS(12291), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHvolcite] = ACTIONS(12291), + [anon_sym_BSLASHVolcite] = ACTIONS(12291), + [anon_sym_BSLASHpvolcite] = ACTIONS(12291), + [anon_sym_BSLASHPvolcite] = ACTIONS(12291), + [anon_sym_BSLASHfvolcite] = ACTIONS(12291), + [anon_sym_BSLASHftvolcite] = ACTIONS(12291), + [anon_sym_BSLASHsvolcite] = ACTIONS(12291), + [anon_sym_BSLASHSvolcite] = ACTIONS(12291), + [anon_sym_BSLASHtvolcite] = ACTIONS(12291), + [anon_sym_BSLASHTvolcite] = ACTIONS(12291), + [anon_sym_BSLASHavolcite] = ACTIONS(12291), + [anon_sym_BSLASHAvolcite] = ACTIONS(12291), + [anon_sym_BSLASHnotecite] = ACTIONS(12291), + [anon_sym_BSLASHpnotecite] = ACTIONS(12291), + [anon_sym_BSLASHPnotecite] = ACTIONS(12291), + [anon_sym_BSLASHfnotecite] = ACTIONS(12291), + [anon_sym_BSLASHusepackage] = ACTIONS(12291), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12291), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12291), + [anon_sym_BSLASHinclude] = ACTIONS(12291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12291), + [anon_sym_BSLASHinput] = ACTIONS(12291), + [anon_sym_BSLASHsubfile] = ACTIONS(12291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12291), + [anon_sym_BSLASHbibliography] = ACTIONS(12291), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12291), + [anon_sym_BSLASHincludesvg] = ACTIONS(12291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12291), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12291), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12291), + [anon_sym_BSLASHimport] = ACTIONS(12291), + [anon_sym_BSLASHsubimport] = ACTIONS(12291), + [anon_sym_BSLASHinputfrom] = ACTIONS(12291), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12291), + [anon_sym_BSLASHincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHlabel] = ACTIONS(12291), + [anon_sym_BSLASHref] = ACTIONS(12291), + [anon_sym_BSLASHvref] = ACTIONS(12291), + [anon_sym_BSLASHVref] = ACTIONS(12291), + [anon_sym_BSLASHautoref] = ACTIONS(12291), + [anon_sym_BSLASHpageref] = ACTIONS(12291), + [anon_sym_BSLASHcref] = ACTIONS(12291), + [anon_sym_BSLASHCref] = ACTIONS(12291), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnameCref] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHlabelcref] = ACTIONS(12291), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12291), + [anon_sym_BSLASHeqref] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange] = ACTIONS(12291), + [anon_sym_BSLASHCrefrange] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewlabel] = ACTIONS(12291), + [anon_sym_BSLASHnewcommand] = ACTIONS(12291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12291), + [anon_sym_BSLASHgls] = ACTIONS(12291), + [anon_sym_BSLASHGls] = ACTIONS(12291), + [anon_sym_BSLASHGLS] = ACTIONS(12291), + [anon_sym_BSLASHglspl] = ACTIONS(12291), + [anon_sym_BSLASHGlspl] = ACTIONS(12291), + [anon_sym_BSLASHGLSpl] = ACTIONS(12291), + [anon_sym_BSLASHglsdisp] = ACTIONS(12291), + [anon_sym_BSLASHglslink] = ACTIONS(12291), + [anon_sym_BSLASHglstext] = ACTIONS(12291), + [anon_sym_BSLASHGlstext] = ACTIONS(12291), + [anon_sym_BSLASHGLStext] = ACTIONS(12291), + [anon_sym_BSLASHglsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12291), + [anon_sym_BSLASHglsplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSplural] = ACTIONS(12291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHglsname] = ACTIONS(12291), + [anon_sym_BSLASHGlsname] = ACTIONS(12291), + [anon_sym_BSLASHGLSname] = ACTIONS(12291), + [anon_sym_BSLASHglssymbol] = ACTIONS(12291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12291), + [anon_sym_BSLASHglsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12291), + [anon_sym_BSLASHglsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12291), + [anon_sym_BSLASHglsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12291), + [anon_sym_BSLASHglsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12291), + [anon_sym_BSLASHglsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12291), + [anon_sym_BSLASHnewacronym] = ACTIONS(12291), + [anon_sym_BSLASHacrshort] = ACTIONS(12291), + [anon_sym_BSLASHAcrshort] = ACTIONS(12291), + [anon_sym_BSLASHACRshort] = ACTIONS(12291), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12291), + [anon_sym_BSLASHacrlong] = ACTIONS(12291), + [anon_sym_BSLASHAcrlong] = ACTIONS(12291), + [anon_sym_BSLASHACRlong] = ACTIONS(12291), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12291), + [anon_sym_BSLASHacrfull] = ACTIONS(12291), + [anon_sym_BSLASHAcrfull] = ACTIONS(12291), + [anon_sym_BSLASHACRfull] = ACTIONS(12291), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12291), + [anon_sym_BSLASHacs] = ACTIONS(12291), + [anon_sym_BSLASHAcs] = ACTIONS(12291), + [anon_sym_BSLASHacsp] = ACTIONS(12291), + [anon_sym_BSLASHAcsp] = ACTIONS(12291), + [anon_sym_BSLASHacl] = ACTIONS(12291), + [anon_sym_BSLASHAcl] = ACTIONS(12291), + [anon_sym_BSLASHaclp] = ACTIONS(12291), + [anon_sym_BSLASHAclp] = ACTIONS(12291), + [anon_sym_BSLASHacf] = ACTIONS(12291), + [anon_sym_BSLASHAcf] = ACTIONS(12291), + [anon_sym_BSLASHacfp] = ACTIONS(12291), + [anon_sym_BSLASHAcfp] = ACTIONS(12291), + [anon_sym_BSLASHac] = ACTIONS(12291), + [anon_sym_BSLASHAc] = ACTIONS(12291), + [anon_sym_BSLASHacp] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12291), + [anon_sym_BSLASHcolor] = ACTIONS(12291), + [anon_sym_BSLASHcolorbox] = ACTIONS(12291), + [anon_sym_BSLASHtextcolor] = ACTIONS(12291), + [anon_sym_BSLASHpagecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12291), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12291), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12291), + }, + [1279] = { + [sym_generic_command_name] = ACTIONS(12205), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12205), + [aux_sym_subsubsection_token1] = ACTIONS(12205), + [aux_sym_paragraph_token1] = ACTIONS(12205), + [aux_sym_subparagraph_token1] = ACTIONS(12205), + [anon_sym_BSLASHitem] = ACTIONS(12205), + [anon_sym_LBRACK] = ACTIONS(12203), + [anon_sym_RBRACK] = ACTIONS(12203), + [anon_sym_LBRACE] = ACTIONS(12203), + [anon_sym_RBRACE] = ACTIONS(12203), + [anon_sym_LPAREN] = ACTIONS(12203), + [anon_sym_COMMA] = ACTIONS(12203), + [anon_sym_EQ] = ACTIONS(12203), + [sym_word] = ACTIONS(12203), + [sym_param] = ACTIONS(12203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12203), + [anon_sym_DOLLAR] = ACTIONS(12205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12203), + [anon_sym_BSLASHbegin] = ACTIONS(12205), + [anon_sym_BSLASHcaption] = ACTIONS(12205), + [anon_sym_BSLASHcite] = ACTIONS(12205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCite] = ACTIONS(12205), + [anon_sym_BSLASHnocite] = ACTIONS(12205), + [anon_sym_BSLASHcitet] = ACTIONS(12205), + [anon_sym_BSLASHcitep] = ACTIONS(12205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteauthor] = ACTIONS(12205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitetitle] = ACTIONS(12205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteyear] = ACTIONS(12205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitedate] = ACTIONS(12205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteurl] = ACTIONS(12205), + [anon_sym_BSLASHfullcite] = ACTIONS(12205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12205), + [anon_sym_BSLASHcitealt] = ACTIONS(12205), + [anon_sym_BSLASHcitealp] = ACTIONS(12205), + [anon_sym_BSLASHcitetext] = ACTIONS(12205), + [anon_sym_BSLASHparencite] = ACTIONS(12205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHParencite] = ACTIONS(12205), + [anon_sym_BSLASHfootcite] = ACTIONS(12205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12205), + [anon_sym_BSLASHtextcite] = ACTIONS(12205), + [anon_sym_BSLASHTextcite] = ACTIONS(12205), + [anon_sym_BSLASHsmartcite] = ACTIONS(12205), + [anon_sym_BSLASHSmartcite] = ACTIONS(12205), + [anon_sym_BSLASHsupercite] = ACTIONS(12205), + [anon_sym_BSLASHautocite] = ACTIONS(12205), + [anon_sym_BSLASHAutocite] = ACTIONS(12205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHvolcite] = ACTIONS(12205), + [anon_sym_BSLASHVolcite] = ACTIONS(12205), + [anon_sym_BSLASHpvolcite] = ACTIONS(12205), + [anon_sym_BSLASHPvolcite] = ACTIONS(12205), + [anon_sym_BSLASHfvolcite] = ACTIONS(12205), + [anon_sym_BSLASHftvolcite] = ACTIONS(12205), + [anon_sym_BSLASHsvolcite] = ACTIONS(12205), + [anon_sym_BSLASHSvolcite] = ACTIONS(12205), + [anon_sym_BSLASHtvolcite] = ACTIONS(12205), + [anon_sym_BSLASHTvolcite] = ACTIONS(12205), + [anon_sym_BSLASHavolcite] = ACTIONS(12205), + [anon_sym_BSLASHAvolcite] = ACTIONS(12205), + [anon_sym_BSLASHnotecite] = ACTIONS(12205), + [anon_sym_BSLASHpnotecite] = ACTIONS(12205), + [anon_sym_BSLASHPnotecite] = ACTIONS(12205), + [anon_sym_BSLASHfnotecite] = ACTIONS(12205), + [anon_sym_BSLASHusepackage] = ACTIONS(12205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12205), + [anon_sym_BSLASHinclude] = ACTIONS(12205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12205), + [anon_sym_BSLASHinput] = ACTIONS(12205), + [anon_sym_BSLASHsubfile] = ACTIONS(12205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12205), + [anon_sym_BSLASHbibliography] = ACTIONS(12205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12205), + [anon_sym_BSLASHincludesvg] = ACTIONS(12205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12205), + [anon_sym_BSLASHimport] = ACTIONS(12205), + [anon_sym_BSLASHsubimport] = ACTIONS(12205), + [anon_sym_BSLASHinputfrom] = ACTIONS(12205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12205), + [anon_sym_BSLASHincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHlabel] = ACTIONS(12205), + [anon_sym_BSLASHref] = ACTIONS(12205), + [anon_sym_BSLASHvref] = ACTIONS(12205), + [anon_sym_BSLASHVref] = ACTIONS(12205), + [anon_sym_BSLASHautoref] = ACTIONS(12205), + [anon_sym_BSLASHpageref] = ACTIONS(12205), + [anon_sym_BSLASHcref] = ACTIONS(12205), + [anon_sym_BSLASHCref] = ACTIONS(12205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnameCref] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHlabelcref] = ACTIONS(12205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12205), + [anon_sym_BSLASHeqref] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange] = ACTIONS(12205), + [anon_sym_BSLASHCrefrange] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewlabel] = ACTIONS(12205), + [anon_sym_BSLASHnewcommand] = ACTIONS(12205), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12205), + [anon_sym_BSLASHgls] = ACTIONS(12205), + [anon_sym_BSLASHGls] = ACTIONS(12205), + [anon_sym_BSLASHGLS] = ACTIONS(12205), + [anon_sym_BSLASHglspl] = ACTIONS(12205), + [anon_sym_BSLASHGlspl] = ACTIONS(12205), + [anon_sym_BSLASHGLSpl] = ACTIONS(12205), + [anon_sym_BSLASHglsdisp] = ACTIONS(12205), + [anon_sym_BSLASHglslink] = ACTIONS(12205), + [anon_sym_BSLASHglstext] = ACTIONS(12205), + [anon_sym_BSLASHGlstext] = ACTIONS(12205), + [anon_sym_BSLASHGLStext] = ACTIONS(12205), + [anon_sym_BSLASHglsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12205), + [anon_sym_BSLASHglsplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSplural] = ACTIONS(12205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHglsname] = ACTIONS(12205), + [anon_sym_BSLASHGlsname] = ACTIONS(12205), + [anon_sym_BSLASHGLSname] = ACTIONS(12205), + [anon_sym_BSLASHglssymbol] = ACTIONS(12205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12205), + [anon_sym_BSLASHglsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12205), + [anon_sym_BSLASHglsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12205), + [anon_sym_BSLASHglsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12205), + [anon_sym_BSLASHglsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12205), + [anon_sym_BSLASHglsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12205), + [anon_sym_BSLASHnewacronym] = ACTIONS(12205), + [anon_sym_BSLASHacrshort] = ACTIONS(12205), + [anon_sym_BSLASHAcrshort] = ACTIONS(12205), + [anon_sym_BSLASHACRshort] = ACTIONS(12205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12205), + [anon_sym_BSLASHacrlong] = ACTIONS(12205), + [anon_sym_BSLASHAcrlong] = ACTIONS(12205), + [anon_sym_BSLASHACRlong] = ACTIONS(12205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12205), + [anon_sym_BSLASHacrfull] = ACTIONS(12205), + [anon_sym_BSLASHAcrfull] = ACTIONS(12205), + [anon_sym_BSLASHACRfull] = ACTIONS(12205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12205), + [anon_sym_BSLASHacs] = ACTIONS(12205), + [anon_sym_BSLASHAcs] = ACTIONS(12205), + [anon_sym_BSLASHacsp] = ACTIONS(12205), + [anon_sym_BSLASHAcsp] = ACTIONS(12205), + [anon_sym_BSLASHacl] = ACTIONS(12205), + [anon_sym_BSLASHAcl] = ACTIONS(12205), + [anon_sym_BSLASHaclp] = ACTIONS(12205), + [anon_sym_BSLASHAclp] = ACTIONS(12205), + [anon_sym_BSLASHacf] = ACTIONS(12205), + [anon_sym_BSLASHAcf] = ACTIONS(12205), + [anon_sym_BSLASHacfp] = ACTIONS(12205), + [anon_sym_BSLASHAcfp] = ACTIONS(12205), + [anon_sym_BSLASHac] = ACTIONS(12205), + [anon_sym_BSLASHAc] = ACTIONS(12205), + [anon_sym_BSLASHacp] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12205), + [anon_sym_BSLASHcolor] = ACTIONS(12205), + [anon_sym_BSLASHcolorbox] = ACTIONS(12205), + [anon_sym_BSLASHtextcolor] = ACTIONS(12205), + [anon_sym_BSLASHpagecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12205), + }, + [1280] = { + [sym_generic_command_name] = ACTIONS(12295), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12295), + [aux_sym_subsubsection_token1] = ACTIONS(12295), + [aux_sym_paragraph_token1] = ACTIONS(12295), + [aux_sym_subparagraph_token1] = ACTIONS(12295), + [anon_sym_BSLASHitem] = ACTIONS(12295), + [anon_sym_LBRACK] = ACTIONS(12293), + [anon_sym_RBRACK] = ACTIONS(12293), + [anon_sym_LBRACE] = ACTIONS(12293), + [anon_sym_RBRACE] = ACTIONS(12293), + [anon_sym_LPAREN] = ACTIONS(12293), + [anon_sym_COMMA] = ACTIONS(12293), + [anon_sym_EQ] = ACTIONS(12293), + [sym_word] = ACTIONS(12293), + [sym_param] = ACTIONS(12293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12293), + [anon_sym_DOLLAR] = ACTIONS(12295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12293), + [anon_sym_BSLASHbegin] = ACTIONS(12295), + [anon_sym_BSLASHcaption] = ACTIONS(12295), + [anon_sym_BSLASHcite] = ACTIONS(12295), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCite] = ACTIONS(12295), + [anon_sym_BSLASHnocite] = ACTIONS(12295), + [anon_sym_BSLASHcitet] = ACTIONS(12295), + [anon_sym_BSLASHcitep] = ACTIONS(12295), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteauthor] = ACTIONS(12295), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12295), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitetitle] = ACTIONS(12295), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteyear] = ACTIONS(12295), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitedate] = ACTIONS(12295), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteurl] = ACTIONS(12295), + [anon_sym_BSLASHfullcite] = ACTIONS(12295), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12295), + [anon_sym_BSLASHcitealt] = ACTIONS(12295), + [anon_sym_BSLASHcitealp] = ACTIONS(12295), + [anon_sym_BSLASHcitetext] = ACTIONS(12295), + [anon_sym_BSLASHparencite] = ACTIONS(12295), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHParencite] = ACTIONS(12295), + [anon_sym_BSLASHfootcite] = ACTIONS(12295), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12295), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12295), + [anon_sym_BSLASHtextcite] = ACTIONS(12295), + [anon_sym_BSLASHTextcite] = ACTIONS(12295), + [anon_sym_BSLASHsmartcite] = ACTIONS(12295), + [anon_sym_BSLASHSmartcite] = ACTIONS(12295), + [anon_sym_BSLASHsupercite] = ACTIONS(12295), + [anon_sym_BSLASHautocite] = ACTIONS(12295), + [anon_sym_BSLASHAutocite] = ACTIONS(12295), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHvolcite] = ACTIONS(12295), + [anon_sym_BSLASHVolcite] = ACTIONS(12295), + [anon_sym_BSLASHpvolcite] = ACTIONS(12295), + [anon_sym_BSLASHPvolcite] = ACTIONS(12295), + [anon_sym_BSLASHfvolcite] = ACTIONS(12295), + [anon_sym_BSLASHftvolcite] = ACTIONS(12295), + [anon_sym_BSLASHsvolcite] = ACTIONS(12295), + [anon_sym_BSLASHSvolcite] = ACTIONS(12295), + [anon_sym_BSLASHtvolcite] = ACTIONS(12295), + [anon_sym_BSLASHTvolcite] = ACTIONS(12295), + [anon_sym_BSLASHavolcite] = ACTIONS(12295), + [anon_sym_BSLASHAvolcite] = ACTIONS(12295), + [anon_sym_BSLASHnotecite] = ACTIONS(12295), + [anon_sym_BSLASHpnotecite] = ACTIONS(12295), + [anon_sym_BSLASHPnotecite] = ACTIONS(12295), + [anon_sym_BSLASHfnotecite] = ACTIONS(12295), + [anon_sym_BSLASHusepackage] = ACTIONS(12295), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12295), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12295), + [anon_sym_BSLASHinclude] = ACTIONS(12295), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12295), + [anon_sym_BSLASHinput] = ACTIONS(12295), + [anon_sym_BSLASHsubfile] = ACTIONS(12295), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12295), + [anon_sym_BSLASHbibliography] = ACTIONS(12295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12295), + [anon_sym_BSLASHincludesvg] = ACTIONS(12295), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12295), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12295), + [anon_sym_BSLASHimport] = ACTIONS(12295), + [anon_sym_BSLASHsubimport] = ACTIONS(12295), + [anon_sym_BSLASHinputfrom] = ACTIONS(12295), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12295), + [anon_sym_BSLASHincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHlabel] = ACTIONS(12295), + [anon_sym_BSLASHref] = ACTIONS(12295), + [anon_sym_BSLASHvref] = ACTIONS(12295), + [anon_sym_BSLASHVref] = ACTIONS(12295), + [anon_sym_BSLASHautoref] = ACTIONS(12295), + [anon_sym_BSLASHpageref] = ACTIONS(12295), + [anon_sym_BSLASHcref] = ACTIONS(12295), + [anon_sym_BSLASHCref] = ACTIONS(12295), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnameCref] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHlabelcref] = ACTIONS(12295), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12295), + [anon_sym_BSLASHeqref] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange] = ACTIONS(12295), + [anon_sym_BSLASHCrefrange] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewlabel] = ACTIONS(12295), + [anon_sym_BSLASHnewcommand] = ACTIONS(12295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12295), + [anon_sym_BSLASHgls] = ACTIONS(12295), + [anon_sym_BSLASHGls] = ACTIONS(12295), + [anon_sym_BSLASHGLS] = ACTIONS(12295), + [anon_sym_BSLASHglspl] = ACTIONS(12295), + [anon_sym_BSLASHGlspl] = ACTIONS(12295), + [anon_sym_BSLASHGLSpl] = ACTIONS(12295), + [anon_sym_BSLASHglsdisp] = ACTIONS(12295), + [anon_sym_BSLASHglslink] = ACTIONS(12295), + [anon_sym_BSLASHglstext] = ACTIONS(12295), + [anon_sym_BSLASHGlstext] = ACTIONS(12295), + [anon_sym_BSLASHGLStext] = ACTIONS(12295), + [anon_sym_BSLASHglsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12295), + [anon_sym_BSLASHglsplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSplural] = ACTIONS(12295), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHglsname] = ACTIONS(12295), + [anon_sym_BSLASHGlsname] = ACTIONS(12295), + [anon_sym_BSLASHGLSname] = ACTIONS(12295), + [anon_sym_BSLASHglssymbol] = ACTIONS(12295), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12295), + [anon_sym_BSLASHglsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12295), + [anon_sym_BSLASHglsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12295), + [anon_sym_BSLASHglsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12295), + [anon_sym_BSLASHglsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12295), + [anon_sym_BSLASHglsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12295), + [anon_sym_BSLASHnewacronym] = ACTIONS(12295), + [anon_sym_BSLASHacrshort] = ACTIONS(12295), + [anon_sym_BSLASHAcrshort] = ACTIONS(12295), + [anon_sym_BSLASHACRshort] = ACTIONS(12295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12295), + [anon_sym_BSLASHacrlong] = ACTIONS(12295), + [anon_sym_BSLASHAcrlong] = ACTIONS(12295), + [anon_sym_BSLASHACRlong] = ACTIONS(12295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12295), + [anon_sym_BSLASHacrfull] = ACTIONS(12295), + [anon_sym_BSLASHAcrfull] = ACTIONS(12295), + [anon_sym_BSLASHACRfull] = ACTIONS(12295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12295), + [anon_sym_BSLASHacs] = ACTIONS(12295), + [anon_sym_BSLASHAcs] = ACTIONS(12295), + [anon_sym_BSLASHacsp] = ACTIONS(12295), + [anon_sym_BSLASHAcsp] = ACTIONS(12295), + [anon_sym_BSLASHacl] = ACTIONS(12295), + [anon_sym_BSLASHAcl] = ACTIONS(12295), + [anon_sym_BSLASHaclp] = ACTIONS(12295), + [anon_sym_BSLASHAclp] = ACTIONS(12295), + [anon_sym_BSLASHacf] = ACTIONS(12295), + [anon_sym_BSLASHAcf] = ACTIONS(12295), + [anon_sym_BSLASHacfp] = ACTIONS(12295), + [anon_sym_BSLASHAcfp] = ACTIONS(12295), + [anon_sym_BSLASHac] = ACTIONS(12295), + [anon_sym_BSLASHAc] = ACTIONS(12295), + [anon_sym_BSLASHacp] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12295), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12295), + [anon_sym_BSLASHcolor] = ACTIONS(12295), + [anon_sym_BSLASHcolorbox] = ACTIONS(12295), + [anon_sym_BSLASHtextcolor] = ACTIONS(12295), + [anon_sym_BSLASHpagecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12295), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12295), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12295), + }, + [1281] = { + [sym_generic_command_name] = ACTIONS(12349), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12349), + [aux_sym_subsubsection_token1] = ACTIONS(12349), + [aux_sym_paragraph_token1] = ACTIONS(12349), + [aux_sym_subparagraph_token1] = ACTIONS(12349), + [anon_sym_BSLASHitem] = ACTIONS(12349), + [anon_sym_LBRACK] = ACTIONS(12347), + [anon_sym_RBRACK] = ACTIONS(12347), + [anon_sym_LBRACE] = ACTIONS(12347), + [anon_sym_RBRACE] = ACTIONS(12347), + [anon_sym_LPAREN] = ACTIONS(12347), + [anon_sym_COMMA] = ACTIONS(12347), + [anon_sym_EQ] = ACTIONS(12347), + [sym_word] = ACTIONS(12347), + [sym_param] = ACTIONS(12347), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12347), + [anon_sym_DOLLAR] = ACTIONS(12349), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12347), + [anon_sym_BSLASHbegin] = ACTIONS(12349), + [anon_sym_BSLASHcaption] = ACTIONS(12349), + [anon_sym_BSLASHcite] = ACTIONS(12349), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCite] = ACTIONS(12349), + [anon_sym_BSLASHnocite] = ACTIONS(12349), + [anon_sym_BSLASHcitet] = ACTIONS(12349), + [anon_sym_BSLASHcitep] = ACTIONS(12349), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteauthor] = ACTIONS(12349), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12349), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitetitle] = ACTIONS(12349), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteyear] = ACTIONS(12349), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitedate] = ACTIONS(12349), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteurl] = ACTIONS(12349), + [anon_sym_BSLASHfullcite] = ACTIONS(12349), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12349), + [anon_sym_BSLASHcitealt] = ACTIONS(12349), + [anon_sym_BSLASHcitealp] = ACTIONS(12349), + [anon_sym_BSLASHcitetext] = ACTIONS(12349), + [anon_sym_BSLASHparencite] = ACTIONS(12349), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHParencite] = ACTIONS(12349), + [anon_sym_BSLASHfootcite] = ACTIONS(12349), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12349), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12349), + [anon_sym_BSLASHtextcite] = ACTIONS(12349), + [anon_sym_BSLASHTextcite] = ACTIONS(12349), + [anon_sym_BSLASHsmartcite] = ACTIONS(12349), + [anon_sym_BSLASHSmartcite] = ACTIONS(12349), + [anon_sym_BSLASHsupercite] = ACTIONS(12349), + [anon_sym_BSLASHautocite] = ACTIONS(12349), + [anon_sym_BSLASHAutocite] = ACTIONS(12349), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHvolcite] = ACTIONS(12349), + [anon_sym_BSLASHVolcite] = ACTIONS(12349), + [anon_sym_BSLASHpvolcite] = ACTIONS(12349), + [anon_sym_BSLASHPvolcite] = ACTIONS(12349), + [anon_sym_BSLASHfvolcite] = ACTIONS(12349), + [anon_sym_BSLASHftvolcite] = ACTIONS(12349), + [anon_sym_BSLASHsvolcite] = ACTIONS(12349), + [anon_sym_BSLASHSvolcite] = ACTIONS(12349), + [anon_sym_BSLASHtvolcite] = ACTIONS(12349), + [anon_sym_BSLASHTvolcite] = ACTIONS(12349), + [anon_sym_BSLASHavolcite] = ACTIONS(12349), + [anon_sym_BSLASHAvolcite] = ACTIONS(12349), + [anon_sym_BSLASHnotecite] = ACTIONS(12349), + [anon_sym_BSLASHpnotecite] = ACTIONS(12349), + [anon_sym_BSLASHPnotecite] = ACTIONS(12349), + [anon_sym_BSLASHfnotecite] = ACTIONS(12349), + [anon_sym_BSLASHusepackage] = ACTIONS(12349), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12349), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12349), + [anon_sym_BSLASHinclude] = ACTIONS(12349), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12349), + [anon_sym_BSLASHinput] = ACTIONS(12349), + [anon_sym_BSLASHsubfile] = ACTIONS(12349), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12349), + [anon_sym_BSLASHbibliography] = ACTIONS(12349), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12349), + [anon_sym_BSLASHincludesvg] = ACTIONS(12349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12349), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12349), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12349), + [anon_sym_BSLASHimport] = ACTIONS(12349), + [anon_sym_BSLASHsubimport] = ACTIONS(12349), + [anon_sym_BSLASHinputfrom] = ACTIONS(12349), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12349), + [anon_sym_BSLASHincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHlabel] = ACTIONS(12349), + [anon_sym_BSLASHref] = ACTIONS(12349), + [anon_sym_BSLASHvref] = ACTIONS(12349), + [anon_sym_BSLASHVref] = ACTIONS(12349), + [anon_sym_BSLASHautoref] = ACTIONS(12349), + [anon_sym_BSLASHpageref] = ACTIONS(12349), + [anon_sym_BSLASHcref] = ACTIONS(12349), + [anon_sym_BSLASHCref] = ACTIONS(12349), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnameCref] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHlabelcref] = ACTIONS(12349), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12349), + [anon_sym_BSLASHeqref] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange] = ACTIONS(12349), + [anon_sym_BSLASHCrefrange] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewlabel] = ACTIONS(12349), + [anon_sym_BSLASHnewcommand] = ACTIONS(12349), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12349), + [anon_sym_BSLASHgls] = ACTIONS(12349), + [anon_sym_BSLASHGls] = ACTIONS(12349), + [anon_sym_BSLASHGLS] = ACTIONS(12349), + [anon_sym_BSLASHglspl] = ACTIONS(12349), + [anon_sym_BSLASHGlspl] = ACTIONS(12349), + [anon_sym_BSLASHGLSpl] = ACTIONS(12349), + [anon_sym_BSLASHglsdisp] = ACTIONS(12349), + [anon_sym_BSLASHglslink] = ACTIONS(12349), + [anon_sym_BSLASHglstext] = ACTIONS(12349), + [anon_sym_BSLASHGlstext] = ACTIONS(12349), + [anon_sym_BSLASHGLStext] = ACTIONS(12349), + [anon_sym_BSLASHglsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12349), + [anon_sym_BSLASHglsplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSplural] = ACTIONS(12349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHglsname] = ACTIONS(12349), + [anon_sym_BSLASHGlsname] = ACTIONS(12349), + [anon_sym_BSLASHGLSname] = ACTIONS(12349), + [anon_sym_BSLASHglssymbol] = ACTIONS(12349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12349), + [anon_sym_BSLASHglsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12349), + [anon_sym_BSLASHglsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12349), + [anon_sym_BSLASHglsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12349), + [anon_sym_BSLASHglsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12349), + [anon_sym_BSLASHglsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12349), + [anon_sym_BSLASHnewacronym] = ACTIONS(12349), + [anon_sym_BSLASHacrshort] = ACTIONS(12349), + [anon_sym_BSLASHAcrshort] = ACTIONS(12349), + [anon_sym_BSLASHACRshort] = ACTIONS(12349), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12349), + [anon_sym_BSLASHacrlong] = ACTIONS(12349), + [anon_sym_BSLASHAcrlong] = ACTIONS(12349), + [anon_sym_BSLASHACRlong] = ACTIONS(12349), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12349), + [anon_sym_BSLASHacrfull] = ACTIONS(12349), + [anon_sym_BSLASHAcrfull] = ACTIONS(12349), + [anon_sym_BSLASHACRfull] = ACTIONS(12349), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12349), + [anon_sym_BSLASHacs] = ACTIONS(12349), + [anon_sym_BSLASHAcs] = ACTIONS(12349), + [anon_sym_BSLASHacsp] = ACTIONS(12349), + [anon_sym_BSLASHAcsp] = ACTIONS(12349), + [anon_sym_BSLASHacl] = ACTIONS(12349), + [anon_sym_BSLASHAcl] = ACTIONS(12349), + [anon_sym_BSLASHaclp] = ACTIONS(12349), + [anon_sym_BSLASHAclp] = ACTIONS(12349), + [anon_sym_BSLASHacf] = ACTIONS(12349), + [anon_sym_BSLASHAcf] = ACTIONS(12349), + [anon_sym_BSLASHacfp] = ACTIONS(12349), + [anon_sym_BSLASHAcfp] = ACTIONS(12349), + [anon_sym_BSLASHac] = ACTIONS(12349), + [anon_sym_BSLASHAc] = ACTIONS(12349), + [anon_sym_BSLASHacp] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12349), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12349), + [anon_sym_BSLASHcolor] = ACTIONS(12349), + [anon_sym_BSLASHcolorbox] = ACTIONS(12349), + [anon_sym_BSLASHtextcolor] = ACTIONS(12349), + [anon_sym_BSLASHpagecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12349), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12349), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12349), + }, + [1282] = { + [sym_generic_command_name] = ACTIONS(12303), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12303), + [aux_sym_subsubsection_token1] = ACTIONS(12303), + [aux_sym_paragraph_token1] = ACTIONS(12303), + [aux_sym_subparagraph_token1] = ACTIONS(12303), + [anon_sym_BSLASHitem] = ACTIONS(12303), + [anon_sym_LBRACK] = ACTIONS(12301), + [anon_sym_RBRACK] = ACTIONS(12301), + [anon_sym_LBRACE] = ACTIONS(12301), + [anon_sym_RBRACE] = ACTIONS(12301), + [anon_sym_LPAREN] = ACTIONS(12301), + [anon_sym_COMMA] = ACTIONS(12301), + [anon_sym_EQ] = ACTIONS(12301), + [sym_word] = ACTIONS(12301), + [sym_param] = ACTIONS(12301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12301), + [anon_sym_DOLLAR] = ACTIONS(12303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12301), + [anon_sym_BSLASHbegin] = ACTIONS(12303), + [anon_sym_BSLASHcaption] = ACTIONS(12303), + [anon_sym_BSLASHcite] = ACTIONS(12303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCite] = ACTIONS(12303), + [anon_sym_BSLASHnocite] = ACTIONS(12303), + [anon_sym_BSLASHcitet] = ACTIONS(12303), + [anon_sym_BSLASHcitep] = ACTIONS(12303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteauthor] = ACTIONS(12303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitetitle] = ACTIONS(12303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteyear] = ACTIONS(12303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitedate] = ACTIONS(12303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteurl] = ACTIONS(12303), + [anon_sym_BSLASHfullcite] = ACTIONS(12303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12303), + [anon_sym_BSLASHcitealt] = ACTIONS(12303), + [anon_sym_BSLASHcitealp] = ACTIONS(12303), + [anon_sym_BSLASHcitetext] = ACTIONS(12303), + [anon_sym_BSLASHparencite] = ACTIONS(12303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHParencite] = ACTIONS(12303), + [anon_sym_BSLASHfootcite] = ACTIONS(12303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12303), + [anon_sym_BSLASHtextcite] = ACTIONS(12303), + [anon_sym_BSLASHTextcite] = ACTIONS(12303), + [anon_sym_BSLASHsmartcite] = ACTIONS(12303), + [anon_sym_BSLASHSmartcite] = ACTIONS(12303), + [anon_sym_BSLASHsupercite] = ACTIONS(12303), + [anon_sym_BSLASHautocite] = ACTIONS(12303), + [anon_sym_BSLASHAutocite] = ACTIONS(12303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHvolcite] = ACTIONS(12303), + [anon_sym_BSLASHVolcite] = ACTIONS(12303), + [anon_sym_BSLASHpvolcite] = ACTIONS(12303), + [anon_sym_BSLASHPvolcite] = ACTIONS(12303), + [anon_sym_BSLASHfvolcite] = ACTIONS(12303), + [anon_sym_BSLASHftvolcite] = ACTIONS(12303), + [anon_sym_BSLASHsvolcite] = ACTIONS(12303), + [anon_sym_BSLASHSvolcite] = ACTIONS(12303), + [anon_sym_BSLASHtvolcite] = ACTIONS(12303), + [anon_sym_BSLASHTvolcite] = ACTIONS(12303), + [anon_sym_BSLASHavolcite] = ACTIONS(12303), + [anon_sym_BSLASHAvolcite] = ACTIONS(12303), + [anon_sym_BSLASHnotecite] = ACTIONS(12303), + [anon_sym_BSLASHpnotecite] = ACTIONS(12303), + [anon_sym_BSLASHPnotecite] = ACTIONS(12303), + [anon_sym_BSLASHfnotecite] = ACTIONS(12303), + [anon_sym_BSLASHusepackage] = ACTIONS(12303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12303), + [anon_sym_BSLASHinclude] = ACTIONS(12303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12303), + [anon_sym_BSLASHinput] = ACTIONS(12303), + [anon_sym_BSLASHsubfile] = ACTIONS(12303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12303), + [anon_sym_BSLASHbibliography] = ACTIONS(12303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12303), + [anon_sym_BSLASHincludesvg] = ACTIONS(12303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12303), + [anon_sym_BSLASHimport] = ACTIONS(12303), + [anon_sym_BSLASHsubimport] = ACTIONS(12303), + [anon_sym_BSLASHinputfrom] = ACTIONS(12303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12303), + [anon_sym_BSLASHincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHlabel] = ACTIONS(12303), + [anon_sym_BSLASHref] = ACTIONS(12303), + [anon_sym_BSLASHvref] = ACTIONS(12303), + [anon_sym_BSLASHVref] = ACTIONS(12303), + [anon_sym_BSLASHautoref] = ACTIONS(12303), + [anon_sym_BSLASHpageref] = ACTIONS(12303), + [anon_sym_BSLASHcref] = ACTIONS(12303), + [anon_sym_BSLASHCref] = ACTIONS(12303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnameCref] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHlabelcref] = ACTIONS(12303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12303), + [anon_sym_BSLASHeqref] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange] = ACTIONS(12303), + [anon_sym_BSLASHCrefrange] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewlabel] = ACTIONS(12303), + [anon_sym_BSLASHnewcommand] = ACTIONS(12303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12303), + [anon_sym_BSLASHgls] = ACTIONS(12303), + [anon_sym_BSLASHGls] = ACTIONS(12303), + [anon_sym_BSLASHGLS] = ACTIONS(12303), + [anon_sym_BSLASHglspl] = ACTIONS(12303), + [anon_sym_BSLASHGlspl] = ACTIONS(12303), + [anon_sym_BSLASHGLSpl] = ACTIONS(12303), + [anon_sym_BSLASHglsdisp] = ACTIONS(12303), + [anon_sym_BSLASHglslink] = ACTIONS(12303), + [anon_sym_BSLASHglstext] = ACTIONS(12303), + [anon_sym_BSLASHGlstext] = ACTIONS(12303), + [anon_sym_BSLASHGLStext] = ACTIONS(12303), + [anon_sym_BSLASHglsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12303), + [anon_sym_BSLASHglsplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSplural] = ACTIONS(12303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHglsname] = ACTIONS(12303), + [anon_sym_BSLASHGlsname] = ACTIONS(12303), + [anon_sym_BSLASHGLSname] = ACTIONS(12303), + [anon_sym_BSLASHglssymbol] = ACTIONS(12303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12303), + [anon_sym_BSLASHglsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12303), + [anon_sym_BSLASHglsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12303), + [anon_sym_BSLASHglsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12303), + [anon_sym_BSLASHglsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12303), + [anon_sym_BSLASHglsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12303), + [anon_sym_BSLASHnewacronym] = ACTIONS(12303), + [anon_sym_BSLASHacrshort] = ACTIONS(12303), + [anon_sym_BSLASHAcrshort] = ACTIONS(12303), + [anon_sym_BSLASHACRshort] = ACTIONS(12303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12303), + [anon_sym_BSLASHacrlong] = ACTIONS(12303), + [anon_sym_BSLASHAcrlong] = ACTIONS(12303), + [anon_sym_BSLASHACRlong] = ACTIONS(12303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12303), + [anon_sym_BSLASHacrfull] = ACTIONS(12303), + [anon_sym_BSLASHAcrfull] = ACTIONS(12303), + [anon_sym_BSLASHACRfull] = ACTIONS(12303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12303), + [anon_sym_BSLASHacs] = ACTIONS(12303), + [anon_sym_BSLASHAcs] = ACTIONS(12303), + [anon_sym_BSLASHacsp] = ACTIONS(12303), + [anon_sym_BSLASHAcsp] = ACTIONS(12303), + [anon_sym_BSLASHacl] = ACTIONS(12303), + [anon_sym_BSLASHAcl] = ACTIONS(12303), + [anon_sym_BSLASHaclp] = ACTIONS(12303), + [anon_sym_BSLASHAclp] = ACTIONS(12303), + [anon_sym_BSLASHacf] = ACTIONS(12303), + [anon_sym_BSLASHAcf] = ACTIONS(12303), + [anon_sym_BSLASHacfp] = ACTIONS(12303), + [anon_sym_BSLASHAcfp] = ACTIONS(12303), + [anon_sym_BSLASHac] = ACTIONS(12303), + [anon_sym_BSLASHAc] = ACTIONS(12303), + [anon_sym_BSLASHacp] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12303), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12303), + [anon_sym_BSLASHcolor] = ACTIONS(12303), + [anon_sym_BSLASHcolorbox] = ACTIONS(12303), + [anon_sym_BSLASHtextcolor] = ACTIONS(12303), + [anon_sym_BSLASHpagecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12303), + }, + [1283] = { + [sym_generic_command_name] = ACTIONS(12307), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12307), + [aux_sym_subsubsection_token1] = ACTIONS(12307), + [aux_sym_paragraph_token1] = ACTIONS(12307), + [aux_sym_subparagraph_token1] = ACTIONS(12307), + [anon_sym_BSLASHitem] = ACTIONS(12307), + [anon_sym_LBRACK] = ACTIONS(12305), + [anon_sym_RBRACK] = ACTIONS(12305), + [anon_sym_LBRACE] = ACTIONS(12305), + [anon_sym_RBRACE] = ACTIONS(12305), + [anon_sym_LPAREN] = ACTIONS(12305), + [anon_sym_COMMA] = ACTIONS(12305), + [anon_sym_EQ] = ACTIONS(12305), + [sym_word] = ACTIONS(12305), + [sym_param] = ACTIONS(12305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12305), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12305), + [anon_sym_DOLLAR] = ACTIONS(12307), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12305), + [anon_sym_BSLASHbegin] = ACTIONS(12307), + [anon_sym_BSLASHcaption] = ACTIONS(12307), + [anon_sym_BSLASHcite] = ACTIONS(12307), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCite] = ACTIONS(12307), + [anon_sym_BSLASHnocite] = ACTIONS(12307), + [anon_sym_BSLASHcitet] = ACTIONS(12307), + [anon_sym_BSLASHcitep] = ACTIONS(12307), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteauthor] = ACTIONS(12307), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12307), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitetitle] = ACTIONS(12307), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteyear] = ACTIONS(12307), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitedate] = ACTIONS(12307), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteurl] = ACTIONS(12307), + [anon_sym_BSLASHfullcite] = ACTIONS(12307), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12307), + [anon_sym_BSLASHcitealt] = ACTIONS(12307), + [anon_sym_BSLASHcitealp] = ACTIONS(12307), + [anon_sym_BSLASHcitetext] = ACTIONS(12307), + [anon_sym_BSLASHparencite] = ACTIONS(12307), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHParencite] = ACTIONS(12307), + [anon_sym_BSLASHfootcite] = ACTIONS(12307), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12307), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12307), + [anon_sym_BSLASHtextcite] = ACTIONS(12307), + [anon_sym_BSLASHTextcite] = ACTIONS(12307), + [anon_sym_BSLASHsmartcite] = ACTIONS(12307), + [anon_sym_BSLASHSmartcite] = ACTIONS(12307), + [anon_sym_BSLASHsupercite] = ACTIONS(12307), + [anon_sym_BSLASHautocite] = ACTIONS(12307), + [anon_sym_BSLASHAutocite] = ACTIONS(12307), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHvolcite] = ACTIONS(12307), + [anon_sym_BSLASHVolcite] = ACTIONS(12307), + [anon_sym_BSLASHpvolcite] = ACTIONS(12307), + [anon_sym_BSLASHPvolcite] = ACTIONS(12307), + [anon_sym_BSLASHfvolcite] = ACTIONS(12307), + [anon_sym_BSLASHftvolcite] = ACTIONS(12307), + [anon_sym_BSLASHsvolcite] = ACTIONS(12307), + [anon_sym_BSLASHSvolcite] = ACTIONS(12307), + [anon_sym_BSLASHtvolcite] = ACTIONS(12307), + [anon_sym_BSLASHTvolcite] = ACTIONS(12307), + [anon_sym_BSLASHavolcite] = ACTIONS(12307), + [anon_sym_BSLASHAvolcite] = ACTIONS(12307), + [anon_sym_BSLASHnotecite] = ACTIONS(12307), + [anon_sym_BSLASHpnotecite] = ACTIONS(12307), + [anon_sym_BSLASHPnotecite] = ACTIONS(12307), + [anon_sym_BSLASHfnotecite] = ACTIONS(12307), + [anon_sym_BSLASHusepackage] = ACTIONS(12307), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12307), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12307), + [anon_sym_BSLASHinclude] = ACTIONS(12307), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12307), + [anon_sym_BSLASHinput] = ACTIONS(12307), + [anon_sym_BSLASHsubfile] = ACTIONS(12307), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12307), + [anon_sym_BSLASHbibliography] = ACTIONS(12307), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12307), + [anon_sym_BSLASHincludesvg] = ACTIONS(12307), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12307), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12307), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12307), + [anon_sym_BSLASHimport] = ACTIONS(12307), + [anon_sym_BSLASHsubimport] = ACTIONS(12307), + [anon_sym_BSLASHinputfrom] = ACTIONS(12307), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12307), + [anon_sym_BSLASHincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHlabel] = ACTIONS(12307), + [anon_sym_BSLASHref] = ACTIONS(12307), + [anon_sym_BSLASHvref] = ACTIONS(12307), + [anon_sym_BSLASHVref] = ACTIONS(12307), + [anon_sym_BSLASHautoref] = ACTIONS(12307), + [anon_sym_BSLASHpageref] = ACTIONS(12307), + [anon_sym_BSLASHcref] = ACTIONS(12307), + [anon_sym_BSLASHCref] = ACTIONS(12307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnameCref] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHlabelcref] = ACTIONS(12307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12307), + [anon_sym_BSLASHeqref] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange] = ACTIONS(12307), + [anon_sym_BSLASHCrefrange] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewlabel] = ACTIONS(12307), + [anon_sym_BSLASHnewcommand] = ACTIONS(12307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12307), + [anon_sym_BSLASHgls] = ACTIONS(12307), + [anon_sym_BSLASHGls] = ACTIONS(12307), + [anon_sym_BSLASHGLS] = ACTIONS(12307), + [anon_sym_BSLASHglspl] = ACTIONS(12307), + [anon_sym_BSLASHGlspl] = ACTIONS(12307), + [anon_sym_BSLASHGLSpl] = ACTIONS(12307), + [anon_sym_BSLASHglsdisp] = ACTIONS(12307), + [anon_sym_BSLASHglslink] = ACTIONS(12307), + [anon_sym_BSLASHglstext] = ACTIONS(12307), + [anon_sym_BSLASHGlstext] = ACTIONS(12307), + [anon_sym_BSLASHGLStext] = ACTIONS(12307), + [anon_sym_BSLASHglsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12307), + [anon_sym_BSLASHglsplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSplural] = ACTIONS(12307), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHglsname] = ACTIONS(12307), + [anon_sym_BSLASHGlsname] = ACTIONS(12307), + [anon_sym_BSLASHGLSname] = ACTIONS(12307), + [anon_sym_BSLASHglssymbol] = ACTIONS(12307), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12307), + [anon_sym_BSLASHglsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12307), + [anon_sym_BSLASHglsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12307), + [anon_sym_BSLASHglsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12307), + [anon_sym_BSLASHglsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12307), + [anon_sym_BSLASHglsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12307), + [anon_sym_BSLASHnewacronym] = ACTIONS(12307), + [anon_sym_BSLASHacrshort] = ACTIONS(12307), + [anon_sym_BSLASHAcrshort] = ACTIONS(12307), + [anon_sym_BSLASHACRshort] = ACTIONS(12307), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12307), + [anon_sym_BSLASHacrlong] = ACTIONS(12307), + [anon_sym_BSLASHAcrlong] = ACTIONS(12307), + [anon_sym_BSLASHACRlong] = ACTIONS(12307), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12307), + [anon_sym_BSLASHacrfull] = ACTIONS(12307), + [anon_sym_BSLASHAcrfull] = ACTIONS(12307), + [anon_sym_BSLASHACRfull] = ACTIONS(12307), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12307), + [anon_sym_BSLASHacs] = ACTIONS(12307), + [anon_sym_BSLASHAcs] = ACTIONS(12307), + [anon_sym_BSLASHacsp] = ACTIONS(12307), + [anon_sym_BSLASHAcsp] = ACTIONS(12307), + [anon_sym_BSLASHacl] = ACTIONS(12307), + [anon_sym_BSLASHAcl] = ACTIONS(12307), + [anon_sym_BSLASHaclp] = ACTIONS(12307), + [anon_sym_BSLASHAclp] = ACTIONS(12307), + [anon_sym_BSLASHacf] = ACTIONS(12307), + [anon_sym_BSLASHAcf] = ACTIONS(12307), + [anon_sym_BSLASHacfp] = ACTIONS(12307), + [anon_sym_BSLASHAcfp] = ACTIONS(12307), + [anon_sym_BSLASHac] = ACTIONS(12307), + [anon_sym_BSLASHAc] = ACTIONS(12307), + [anon_sym_BSLASHacp] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12307), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12307), + [anon_sym_BSLASHcolor] = ACTIONS(12307), + [anon_sym_BSLASHcolorbox] = ACTIONS(12307), + [anon_sym_BSLASHtextcolor] = ACTIONS(12307), + [anon_sym_BSLASHpagecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12307), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12307), + }, + [1284] = { + [sym_generic_command_name] = ACTIONS(12315), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12315), + [aux_sym_subsubsection_token1] = ACTIONS(12315), + [aux_sym_paragraph_token1] = ACTIONS(12315), + [aux_sym_subparagraph_token1] = ACTIONS(12315), + [anon_sym_BSLASHitem] = ACTIONS(12315), + [anon_sym_LBRACK] = ACTIONS(12313), + [anon_sym_RBRACK] = ACTIONS(12313), + [anon_sym_LBRACE] = ACTIONS(12313), + [anon_sym_RBRACE] = ACTIONS(12313), + [anon_sym_LPAREN] = ACTIONS(12313), + [anon_sym_COMMA] = ACTIONS(12313), + [anon_sym_EQ] = ACTIONS(12313), + [sym_word] = ACTIONS(12313), + [sym_param] = ACTIONS(12313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12313), + [anon_sym_DOLLAR] = ACTIONS(12315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12313), + [anon_sym_BSLASHbegin] = ACTIONS(12315), + [anon_sym_BSLASHcaption] = ACTIONS(12315), + [anon_sym_BSLASHcite] = ACTIONS(12315), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCite] = ACTIONS(12315), + [anon_sym_BSLASHnocite] = ACTIONS(12315), + [anon_sym_BSLASHcitet] = ACTIONS(12315), + [anon_sym_BSLASHcitep] = ACTIONS(12315), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteauthor] = ACTIONS(12315), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12315), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitetitle] = ACTIONS(12315), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteyear] = ACTIONS(12315), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitedate] = ACTIONS(12315), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteurl] = ACTIONS(12315), + [anon_sym_BSLASHfullcite] = ACTIONS(12315), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12315), + [anon_sym_BSLASHcitealt] = ACTIONS(12315), + [anon_sym_BSLASHcitealp] = ACTIONS(12315), + [anon_sym_BSLASHcitetext] = ACTIONS(12315), + [anon_sym_BSLASHparencite] = ACTIONS(12315), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHParencite] = ACTIONS(12315), + [anon_sym_BSLASHfootcite] = ACTIONS(12315), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12315), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12315), + [anon_sym_BSLASHtextcite] = ACTIONS(12315), + [anon_sym_BSLASHTextcite] = ACTIONS(12315), + [anon_sym_BSLASHsmartcite] = ACTIONS(12315), + [anon_sym_BSLASHSmartcite] = ACTIONS(12315), + [anon_sym_BSLASHsupercite] = ACTIONS(12315), + [anon_sym_BSLASHautocite] = ACTIONS(12315), + [anon_sym_BSLASHAutocite] = ACTIONS(12315), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHvolcite] = ACTIONS(12315), + [anon_sym_BSLASHVolcite] = ACTIONS(12315), + [anon_sym_BSLASHpvolcite] = ACTIONS(12315), + [anon_sym_BSLASHPvolcite] = ACTIONS(12315), + [anon_sym_BSLASHfvolcite] = ACTIONS(12315), + [anon_sym_BSLASHftvolcite] = ACTIONS(12315), + [anon_sym_BSLASHsvolcite] = ACTIONS(12315), + [anon_sym_BSLASHSvolcite] = ACTIONS(12315), + [anon_sym_BSLASHtvolcite] = ACTIONS(12315), + [anon_sym_BSLASHTvolcite] = ACTIONS(12315), + [anon_sym_BSLASHavolcite] = ACTIONS(12315), + [anon_sym_BSLASHAvolcite] = ACTIONS(12315), + [anon_sym_BSLASHnotecite] = ACTIONS(12315), + [anon_sym_BSLASHpnotecite] = ACTIONS(12315), + [anon_sym_BSLASHPnotecite] = ACTIONS(12315), + [anon_sym_BSLASHfnotecite] = ACTIONS(12315), + [anon_sym_BSLASHusepackage] = ACTIONS(12315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12315), + [anon_sym_BSLASHinclude] = ACTIONS(12315), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12315), + [anon_sym_BSLASHinput] = ACTIONS(12315), + [anon_sym_BSLASHsubfile] = ACTIONS(12315), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12315), + [anon_sym_BSLASHbibliography] = ACTIONS(12315), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12315), + [anon_sym_BSLASHincludesvg] = ACTIONS(12315), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12315), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12315), + [anon_sym_BSLASHimport] = ACTIONS(12315), + [anon_sym_BSLASHsubimport] = ACTIONS(12315), + [anon_sym_BSLASHinputfrom] = ACTIONS(12315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12315), + [anon_sym_BSLASHincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHlabel] = ACTIONS(12315), + [anon_sym_BSLASHref] = ACTIONS(12315), + [anon_sym_BSLASHvref] = ACTIONS(12315), + [anon_sym_BSLASHVref] = ACTIONS(12315), + [anon_sym_BSLASHautoref] = ACTIONS(12315), + [anon_sym_BSLASHpageref] = ACTIONS(12315), + [anon_sym_BSLASHcref] = ACTIONS(12315), + [anon_sym_BSLASHCref] = ACTIONS(12315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnameCref] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHlabelcref] = ACTIONS(12315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12315), + [anon_sym_BSLASHeqref] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange] = ACTIONS(12315), + [anon_sym_BSLASHCrefrange] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewlabel] = ACTIONS(12315), + [anon_sym_BSLASHnewcommand] = ACTIONS(12315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12315), + [anon_sym_BSLASHgls] = ACTIONS(12315), + [anon_sym_BSLASHGls] = ACTIONS(12315), + [anon_sym_BSLASHGLS] = ACTIONS(12315), + [anon_sym_BSLASHglspl] = ACTIONS(12315), + [anon_sym_BSLASHGlspl] = ACTIONS(12315), + [anon_sym_BSLASHGLSpl] = ACTIONS(12315), + [anon_sym_BSLASHglsdisp] = ACTIONS(12315), + [anon_sym_BSLASHglslink] = ACTIONS(12315), + [anon_sym_BSLASHglstext] = ACTIONS(12315), + [anon_sym_BSLASHGlstext] = ACTIONS(12315), + [anon_sym_BSLASHGLStext] = ACTIONS(12315), + [anon_sym_BSLASHglsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12315), + [anon_sym_BSLASHglsplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSplural] = ACTIONS(12315), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHglsname] = ACTIONS(12315), + [anon_sym_BSLASHGlsname] = ACTIONS(12315), + [anon_sym_BSLASHGLSname] = ACTIONS(12315), + [anon_sym_BSLASHglssymbol] = ACTIONS(12315), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12315), + [anon_sym_BSLASHglsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12315), + [anon_sym_BSLASHglsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12315), + [anon_sym_BSLASHglsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12315), + [anon_sym_BSLASHglsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12315), + [anon_sym_BSLASHglsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12315), + [anon_sym_BSLASHnewacronym] = ACTIONS(12315), + [anon_sym_BSLASHacrshort] = ACTIONS(12315), + [anon_sym_BSLASHAcrshort] = ACTIONS(12315), + [anon_sym_BSLASHACRshort] = ACTIONS(12315), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12315), + [anon_sym_BSLASHacrlong] = ACTIONS(12315), + [anon_sym_BSLASHAcrlong] = ACTIONS(12315), + [anon_sym_BSLASHACRlong] = ACTIONS(12315), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12315), + [anon_sym_BSLASHacrfull] = ACTIONS(12315), + [anon_sym_BSLASHAcrfull] = ACTIONS(12315), + [anon_sym_BSLASHACRfull] = ACTIONS(12315), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12315), + [anon_sym_BSLASHacs] = ACTIONS(12315), + [anon_sym_BSLASHAcs] = ACTIONS(12315), + [anon_sym_BSLASHacsp] = ACTIONS(12315), + [anon_sym_BSLASHAcsp] = ACTIONS(12315), + [anon_sym_BSLASHacl] = ACTIONS(12315), + [anon_sym_BSLASHAcl] = ACTIONS(12315), + [anon_sym_BSLASHaclp] = ACTIONS(12315), + [anon_sym_BSLASHAclp] = ACTIONS(12315), + [anon_sym_BSLASHacf] = ACTIONS(12315), + [anon_sym_BSLASHAcf] = ACTIONS(12315), + [anon_sym_BSLASHacfp] = ACTIONS(12315), + [anon_sym_BSLASHAcfp] = ACTIONS(12315), + [anon_sym_BSLASHac] = ACTIONS(12315), + [anon_sym_BSLASHAc] = ACTIONS(12315), + [anon_sym_BSLASHacp] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12315), + [anon_sym_BSLASHcolor] = ACTIONS(12315), + [anon_sym_BSLASHcolorbox] = ACTIONS(12315), + [anon_sym_BSLASHtextcolor] = ACTIONS(12315), + [anon_sym_BSLASHpagecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12315), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12315), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12315), + }, + [1285] = { + [sym_generic_command_name] = ACTIONS(12335), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12335), + [aux_sym_subsubsection_token1] = ACTIONS(12335), + [aux_sym_paragraph_token1] = ACTIONS(12335), + [aux_sym_subparagraph_token1] = ACTIONS(12335), + [anon_sym_BSLASHitem] = ACTIONS(12335), + [anon_sym_LBRACK] = ACTIONS(12725), + [anon_sym_RBRACK] = ACTIONS(12333), + [anon_sym_LBRACE] = ACTIONS(12333), + [anon_sym_RBRACE] = ACTIONS(12333), + [anon_sym_LPAREN] = ACTIONS(12333), + [anon_sym_COMMA] = ACTIONS(12333), + [anon_sym_EQ] = ACTIONS(12333), + [sym_word] = ACTIONS(12333), + [sym_param] = ACTIONS(12333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12333), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12333), + [anon_sym_DOLLAR] = ACTIONS(12335), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12333), + [anon_sym_BSLASHbegin] = ACTIONS(12335), + [anon_sym_BSLASHcaption] = ACTIONS(12335), + [anon_sym_BSLASHcite] = ACTIONS(12335), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCite] = ACTIONS(12335), + [anon_sym_BSLASHnocite] = ACTIONS(12335), + [anon_sym_BSLASHcitet] = ACTIONS(12335), + [anon_sym_BSLASHcitep] = ACTIONS(12335), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteauthor] = ACTIONS(12335), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12335), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitetitle] = ACTIONS(12335), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteyear] = ACTIONS(12335), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitedate] = ACTIONS(12335), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteurl] = ACTIONS(12335), + [anon_sym_BSLASHfullcite] = ACTIONS(12335), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12335), + [anon_sym_BSLASHcitealt] = ACTIONS(12335), + [anon_sym_BSLASHcitealp] = ACTIONS(12335), + [anon_sym_BSLASHcitetext] = ACTIONS(12335), + [anon_sym_BSLASHparencite] = ACTIONS(12335), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHParencite] = ACTIONS(12335), + [anon_sym_BSLASHfootcite] = ACTIONS(12335), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12335), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12335), + [anon_sym_BSLASHtextcite] = ACTIONS(12335), + [anon_sym_BSLASHTextcite] = ACTIONS(12335), + [anon_sym_BSLASHsmartcite] = ACTIONS(12335), + [anon_sym_BSLASHSmartcite] = ACTIONS(12335), + [anon_sym_BSLASHsupercite] = ACTIONS(12335), + [anon_sym_BSLASHautocite] = ACTIONS(12335), + [anon_sym_BSLASHAutocite] = ACTIONS(12335), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHvolcite] = ACTIONS(12335), + [anon_sym_BSLASHVolcite] = ACTIONS(12335), + [anon_sym_BSLASHpvolcite] = ACTIONS(12335), + [anon_sym_BSLASHPvolcite] = ACTIONS(12335), + [anon_sym_BSLASHfvolcite] = ACTIONS(12335), + [anon_sym_BSLASHftvolcite] = ACTIONS(12335), + [anon_sym_BSLASHsvolcite] = ACTIONS(12335), + [anon_sym_BSLASHSvolcite] = ACTIONS(12335), + [anon_sym_BSLASHtvolcite] = ACTIONS(12335), + [anon_sym_BSLASHTvolcite] = ACTIONS(12335), + [anon_sym_BSLASHavolcite] = ACTIONS(12335), + [anon_sym_BSLASHAvolcite] = ACTIONS(12335), + [anon_sym_BSLASHnotecite] = ACTIONS(12335), + [anon_sym_BSLASHpnotecite] = ACTIONS(12335), + [anon_sym_BSLASHPnotecite] = ACTIONS(12335), + [anon_sym_BSLASHfnotecite] = ACTIONS(12335), + [anon_sym_BSLASHusepackage] = ACTIONS(12335), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12335), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12335), + [anon_sym_BSLASHinclude] = ACTIONS(12335), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12335), + [anon_sym_BSLASHinput] = ACTIONS(12335), + [anon_sym_BSLASHsubfile] = ACTIONS(12335), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12335), + [anon_sym_BSLASHbibliography] = ACTIONS(12335), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12335), + [anon_sym_BSLASHincludesvg] = ACTIONS(12335), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12335), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12335), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12335), + [anon_sym_BSLASHimport] = ACTIONS(12335), + [anon_sym_BSLASHsubimport] = ACTIONS(12335), + [anon_sym_BSLASHinputfrom] = ACTIONS(12335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12335), + [anon_sym_BSLASHincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHlabel] = ACTIONS(12335), + [anon_sym_BSLASHref] = ACTIONS(12335), + [anon_sym_BSLASHvref] = ACTIONS(12335), + [anon_sym_BSLASHVref] = ACTIONS(12335), + [anon_sym_BSLASHautoref] = ACTIONS(12335), + [anon_sym_BSLASHpageref] = ACTIONS(12335), + [anon_sym_BSLASHcref] = ACTIONS(12335), + [anon_sym_BSLASHCref] = ACTIONS(12335), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnameCref] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHlabelcref] = ACTIONS(12335), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12335), + [anon_sym_BSLASHeqref] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange] = ACTIONS(12335), + [anon_sym_BSLASHCrefrange] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewlabel] = ACTIONS(12335), + [anon_sym_BSLASHnewcommand] = ACTIONS(12335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12335), + [anon_sym_BSLASHgls] = ACTIONS(12335), + [anon_sym_BSLASHGls] = ACTIONS(12335), + [anon_sym_BSLASHGLS] = ACTIONS(12335), + [anon_sym_BSLASHglspl] = ACTIONS(12335), + [anon_sym_BSLASHGlspl] = ACTIONS(12335), + [anon_sym_BSLASHGLSpl] = ACTIONS(12335), + [anon_sym_BSLASHglsdisp] = ACTIONS(12335), + [anon_sym_BSLASHglslink] = ACTIONS(12335), + [anon_sym_BSLASHglstext] = ACTIONS(12335), + [anon_sym_BSLASHGlstext] = ACTIONS(12335), + [anon_sym_BSLASHGLStext] = ACTIONS(12335), + [anon_sym_BSLASHglsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12335), + [anon_sym_BSLASHglsplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSplural] = ACTIONS(12335), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHglsname] = ACTIONS(12335), + [anon_sym_BSLASHGlsname] = ACTIONS(12335), + [anon_sym_BSLASHGLSname] = ACTIONS(12335), + [anon_sym_BSLASHglssymbol] = ACTIONS(12335), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12335), + [anon_sym_BSLASHglsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12335), + [anon_sym_BSLASHglsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12335), + [anon_sym_BSLASHglsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12335), + [anon_sym_BSLASHglsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12335), + [anon_sym_BSLASHglsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12335), + [anon_sym_BSLASHnewacronym] = ACTIONS(12335), + [anon_sym_BSLASHacrshort] = ACTIONS(12335), + [anon_sym_BSLASHAcrshort] = ACTIONS(12335), + [anon_sym_BSLASHACRshort] = ACTIONS(12335), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12335), + [anon_sym_BSLASHacrlong] = ACTIONS(12335), + [anon_sym_BSLASHAcrlong] = ACTIONS(12335), + [anon_sym_BSLASHACRlong] = ACTIONS(12335), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12335), + [anon_sym_BSLASHacrfull] = ACTIONS(12335), + [anon_sym_BSLASHAcrfull] = ACTIONS(12335), + [anon_sym_BSLASHACRfull] = ACTIONS(12335), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12335), + [anon_sym_BSLASHacs] = ACTIONS(12335), + [anon_sym_BSLASHAcs] = ACTIONS(12335), + [anon_sym_BSLASHacsp] = ACTIONS(12335), + [anon_sym_BSLASHAcsp] = ACTIONS(12335), + [anon_sym_BSLASHacl] = ACTIONS(12335), + [anon_sym_BSLASHAcl] = ACTIONS(12335), + [anon_sym_BSLASHaclp] = ACTIONS(12335), + [anon_sym_BSLASHAclp] = ACTIONS(12335), + [anon_sym_BSLASHacf] = ACTIONS(12335), + [anon_sym_BSLASHAcf] = ACTIONS(12335), + [anon_sym_BSLASHacfp] = ACTIONS(12335), + [anon_sym_BSLASHAcfp] = ACTIONS(12335), + [anon_sym_BSLASHac] = ACTIONS(12335), + [anon_sym_BSLASHAc] = ACTIONS(12335), + [anon_sym_BSLASHacp] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12335), + [anon_sym_BSLASHcolor] = ACTIONS(12335), + [anon_sym_BSLASHcolorbox] = ACTIONS(12335), + [anon_sym_BSLASHtextcolor] = ACTIONS(12335), + [anon_sym_BSLASHpagecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12335), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12335), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12335), + }, + [1286] = { + [sym_generic_command_name] = ACTIONS(12341), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12341), + [aux_sym_subsubsection_token1] = ACTIONS(12341), + [aux_sym_paragraph_token1] = ACTIONS(12341), + [aux_sym_subparagraph_token1] = ACTIONS(12341), + [anon_sym_BSLASHitem] = ACTIONS(12341), + [anon_sym_LBRACK] = ACTIONS(12339), + [anon_sym_RBRACK] = ACTIONS(12339), + [anon_sym_LBRACE] = ACTIONS(12339), + [anon_sym_RBRACE] = ACTIONS(12339), + [anon_sym_LPAREN] = ACTIONS(12339), + [anon_sym_COMMA] = ACTIONS(12339), + [anon_sym_EQ] = ACTIONS(12339), + [sym_word] = ACTIONS(12339), + [sym_param] = ACTIONS(12339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12339), + [anon_sym_DOLLAR] = ACTIONS(12341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12339), + [anon_sym_BSLASHbegin] = ACTIONS(12341), + [anon_sym_BSLASHcaption] = ACTIONS(12341), + [anon_sym_BSLASHcite] = ACTIONS(12341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCite] = ACTIONS(12341), + [anon_sym_BSLASHnocite] = ACTIONS(12341), + [anon_sym_BSLASHcitet] = ACTIONS(12341), + [anon_sym_BSLASHcitep] = ACTIONS(12341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteauthor] = ACTIONS(12341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitetitle] = ACTIONS(12341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteyear] = ACTIONS(12341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitedate] = ACTIONS(12341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteurl] = ACTIONS(12341), + [anon_sym_BSLASHfullcite] = ACTIONS(12341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12341), + [anon_sym_BSLASHcitealt] = ACTIONS(12341), + [anon_sym_BSLASHcitealp] = ACTIONS(12341), + [anon_sym_BSLASHcitetext] = ACTIONS(12341), + [anon_sym_BSLASHparencite] = ACTIONS(12341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHParencite] = ACTIONS(12341), + [anon_sym_BSLASHfootcite] = ACTIONS(12341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12341), + [anon_sym_BSLASHtextcite] = ACTIONS(12341), + [anon_sym_BSLASHTextcite] = ACTIONS(12341), + [anon_sym_BSLASHsmartcite] = ACTIONS(12341), + [anon_sym_BSLASHSmartcite] = ACTIONS(12341), + [anon_sym_BSLASHsupercite] = ACTIONS(12341), + [anon_sym_BSLASHautocite] = ACTIONS(12341), + [anon_sym_BSLASHAutocite] = ACTIONS(12341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHvolcite] = ACTIONS(12341), + [anon_sym_BSLASHVolcite] = ACTIONS(12341), + [anon_sym_BSLASHpvolcite] = ACTIONS(12341), + [anon_sym_BSLASHPvolcite] = ACTIONS(12341), + [anon_sym_BSLASHfvolcite] = ACTIONS(12341), + [anon_sym_BSLASHftvolcite] = ACTIONS(12341), + [anon_sym_BSLASHsvolcite] = ACTIONS(12341), + [anon_sym_BSLASHSvolcite] = ACTIONS(12341), + [anon_sym_BSLASHtvolcite] = ACTIONS(12341), + [anon_sym_BSLASHTvolcite] = ACTIONS(12341), + [anon_sym_BSLASHavolcite] = ACTIONS(12341), + [anon_sym_BSLASHAvolcite] = ACTIONS(12341), + [anon_sym_BSLASHnotecite] = ACTIONS(12341), + [anon_sym_BSLASHpnotecite] = ACTIONS(12341), + [anon_sym_BSLASHPnotecite] = ACTIONS(12341), + [anon_sym_BSLASHfnotecite] = ACTIONS(12341), + [anon_sym_BSLASHusepackage] = ACTIONS(12341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12341), + [anon_sym_BSLASHinclude] = ACTIONS(12341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12341), + [anon_sym_BSLASHinput] = ACTIONS(12341), + [anon_sym_BSLASHsubfile] = ACTIONS(12341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12341), + [anon_sym_BSLASHbibliography] = ACTIONS(12341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12341), + [anon_sym_BSLASHincludesvg] = ACTIONS(12341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12341), + [anon_sym_BSLASHimport] = ACTIONS(12341), + [anon_sym_BSLASHsubimport] = ACTIONS(12341), + [anon_sym_BSLASHinputfrom] = ACTIONS(12341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12341), + [anon_sym_BSLASHincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHlabel] = ACTIONS(12341), + [anon_sym_BSLASHref] = ACTIONS(12341), + [anon_sym_BSLASHvref] = ACTIONS(12341), + [anon_sym_BSLASHVref] = ACTIONS(12341), + [anon_sym_BSLASHautoref] = ACTIONS(12341), + [anon_sym_BSLASHpageref] = ACTIONS(12341), + [anon_sym_BSLASHcref] = ACTIONS(12341), + [anon_sym_BSLASHCref] = ACTIONS(12341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnameCref] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHlabelcref] = ACTIONS(12341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12341), + [anon_sym_BSLASHeqref] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange] = ACTIONS(12341), + [anon_sym_BSLASHCrefrange] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewlabel] = ACTIONS(12341), + [anon_sym_BSLASHnewcommand] = ACTIONS(12341), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12341), + [anon_sym_BSLASHgls] = ACTIONS(12341), + [anon_sym_BSLASHGls] = ACTIONS(12341), + [anon_sym_BSLASHGLS] = ACTIONS(12341), + [anon_sym_BSLASHglspl] = ACTIONS(12341), + [anon_sym_BSLASHGlspl] = ACTIONS(12341), + [anon_sym_BSLASHGLSpl] = ACTIONS(12341), + [anon_sym_BSLASHglsdisp] = ACTIONS(12341), + [anon_sym_BSLASHglslink] = ACTIONS(12341), + [anon_sym_BSLASHglstext] = ACTIONS(12341), + [anon_sym_BSLASHGlstext] = ACTIONS(12341), + [anon_sym_BSLASHGLStext] = ACTIONS(12341), + [anon_sym_BSLASHglsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12341), + [anon_sym_BSLASHglsplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSplural] = ACTIONS(12341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHglsname] = ACTIONS(12341), + [anon_sym_BSLASHGlsname] = ACTIONS(12341), + [anon_sym_BSLASHGLSname] = ACTIONS(12341), + [anon_sym_BSLASHglssymbol] = ACTIONS(12341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12341), + [anon_sym_BSLASHglsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12341), + [anon_sym_BSLASHglsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12341), + [anon_sym_BSLASHglsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12341), + [anon_sym_BSLASHglsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12341), + [anon_sym_BSLASHglsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12341), + [anon_sym_BSLASHnewacronym] = ACTIONS(12341), + [anon_sym_BSLASHacrshort] = ACTIONS(12341), + [anon_sym_BSLASHAcrshort] = ACTIONS(12341), + [anon_sym_BSLASHACRshort] = ACTIONS(12341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12341), + [anon_sym_BSLASHacrlong] = ACTIONS(12341), + [anon_sym_BSLASHAcrlong] = ACTIONS(12341), + [anon_sym_BSLASHACRlong] = ACTIONS(12341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12341), + [anon_sym_BSLASHacrfull] = ACTIONS(12341), + [anon_sym_BSLASHAcrfull] = ACTIONS(12341), + [anon_sym_BSLASHACRfull] = ACTIONS(12341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12341), + [anon_sym_BSLASHacs] = ACTIONS(12341), + [anon_sym_BSLASHAcs] = ACTIONS(12341), + [anon_sym_BSLASHacsp] = ACTIONS(12341), + [anon_sym_BSLASHAcsp] = ACTIONS(12341), + [anon_sym_BSLASHacl] = ACTIONS(12341), + [anon_sym_BSLASHAcl] = ACTIONS(12341), + [anon_sym_BSLASHaclp] = ACTIONS(12341), + [anon_sym_BSLASHAclp] = ACTIONS(12341), + [anon_sym_BSLASHacf] = ACTIONS(12341), + [anon_sym_BSLASHAcf] = ACTIONS(12341), + [anon_sym_BSLASHacfp] = ACTIONS(12341), + [anon_sym_BSLASHAcfp] = ACTIONS(12341), + [anon_sym_BSLASHac] = ACTIONS(12341), + [anon_sym_BSLASHAc] = ACTIONS(12341), + [anon_sym_BSLASHacp] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12341), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12341), + [anon_sym_BSLASHcolor] = ACTIONS(12341), + [anon_sym_BSLASHcolorbox] = ACTIONS(12341), + [anon_sym_BSLASHtextcolor] = ACTIONS(12341), + [anon_sym_BSLASHpagecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12341), + }, + [1287] = { + [sym_generic_command_name] = ACTIONS(12353), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12353), + [aux_sym_subsubsection_token1] = ACTIONS(12353), + [aux_sym_paragraph_token1] = ACTIONS(12353), + [aux_sym_subparagraph_token1] = ACTIONS(12353), + [anon_sym_BSLASHitem] = ACTIONS(12353), + [anon_sym_LBRACK] = ACTIONS(12351), + [anon_sym_RBRACK] = ACTIONS(12351), + [anon_sym_LBRACE] = ACTIONS(12351), + [anon_sym_RBRACE] = ACTIONS(12351), + [anon_sym_LPAREN] = ACTIONS(12351), + [anon_sym_COMMA] = ACTIONS(12351), + [anon_sym_EQ] = ACTIONS(12351), + [sym_word] = ACTIONS(12351), + [sym_param] = ACTIONS(12351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12351), + [anon_sym_DOLLAR] = ACTIONS(12353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12351), + [anon_sym_BSLASHbegin] = ACTIONS(12353), + [anon_sym_BSLASHcaption] = ACTIONS(12353), + [anon_sym_BSLASHcite] = ACTIONS(12353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCite] = ACTIONS(12353), + [anon_sym_BSLASHnocite] = ACTIONS(12353), + [anon_sym_BSLASHcitet] = ACTIONS(12353), + [anon_sym_BSLASHcitep] = ACTIONS(12353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteauthor] = ACTIONS(12353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitetitle] = ACTIONS(12353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteyear] = ACTIONS(12353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitedate] = ACTIONS(12353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteurl] = ACTIONS(12353), + [anon_sym_BSLASHfullcite] = ACTIONS(12353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12353), + [anon_sym_BSLASHcitealt] = ACTIONS(12353), + [anon_sym_BSLASHcitealp] = ACTIONS(12353), + [anon_sym_BSLASHcitetext] = ACTIONS(12353), + [anon_sym_BSLASHparencite] = ACTIONS(12353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHParencite] = ACTIONS(12353), + [anon_sym_BSLASHfootcite] = ACTIONS(12353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12353), + [anon_sym_BSLASHtextcite] = ACTIONS(12353), + [anon_sym_BSLASHTextcite] = ACTIONS(12353), + [anon_sym_BSLASHsmartcite] = ACTIONS(12353), + [anon_sym_BSLASHSmartcite] = ACTIONS(12353), + [anon_sym_BSLASHsupercite] = ACTIONS(12353), + [anon_sym_BSLASHautocite] = ACTIONS(12353), + [anon_sym_BSLASHAutocite] = ACTIONS(12353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHvolcite] = ACTIONS(12353), + [anon_sym_BSLASHVolcite] = ACTIONS(12353), + [anon_sym_BSLASHpvolcite] = ACTIONS(12353), + [anon_sym_BSLASHPvolcite] = ACTIONS(12353), + [anon_sym_BSLASHfvolcite] = ACTIONS(12353), + [anon_sym_BSLASHftvolcite] = ACTIONS(12353), + [anon_sym_BSLASHsvolcite] = ACTIONS(12353), + [anon_sym_BSLASHSvolcite] = ACTIONS(12353), + [anon_sym_BSLASHtvolcite] = ACTIONS(12353), + [anon_sym_BSLASHTvolcite] = ACTIONS(12353), + [anon_sym_BSLASHavolcite] = ACTIONS(12353), + [anon_sym_BSLASHAvolcite] = ACTIONS(12353), + [anon_sym_BSLASHnotecite] = ACTIONS(12353), + [anon_sym_BSLASHpnotecite] = ACTIONS(12353), + [anon_sym_BSLASHPnotecite] = ACTIONS(12353), + [anon_sym_BSLASHfnotecite] = ACTIONS(12353), + [anon_sym_BSLASHusepackage] = ACTIONS(12353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12353), + [anon_sym_BSLASHinclude] = ACTIONS(12353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12353), + [anon_sym_BSLASHinput] = ACTIONS(12353), + [anon_sym_BSLASHsubfile] = ACTIONS(12353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12353), + [anon_sym_BSLASHbibliography] = ACTIONS(12353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12353), + [anon_sym_BSLASHincludesvg] = ACTIONS(12353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12353), + [anon_sym_BSLASHimport] = ACTIONS(12353), + [anon_sym_BSLASHsubimport] = ACTIONS(12353), + [anon_sym_BSLASHinputfrom] = ACTIONS(12353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12353), + [anon_sym_BSLASHincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHlabel] = ACTIONS(12353), + [anon_sym_BSLASHref] = ACTIONS(12353), + [anon_sym_BSLASHvref] = ACTIONS(12353), + [anon_sym_BSLASHVref] = ACTIONS(12353), + [anon_sym_BSLASHautoref] = ACTIONS(12353), + [anon_sym_BSLASHpageref] = ACTIONS(12353), + [anon_sym_BSLASHcref] = ACTIONS(12353), + [anon_sym_BSLASHCref] = ACTIONS(12353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnameCref] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHlabelcref] = ACTIONS(12353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12353), + [anon_sym_BSLASHeqref] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange] = ACTIONS(12353), + [anon_sym_BSLASHCrefrange] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewlabel] = ACTIONS(12353), + [anon_sym_BSLASHnewcommand] = ACTIONS(12353), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12353), + [anon_sym_BSLASHgls] = ACTIONS(12353), + [anon_sym_BSLASHGls] = ACTIONS(12353), + [anon_sym_BSLASHGLS] = ACTIONS(12353), + [anon_sym_BSLASHglspl] = ACTIONS(12353), + [anon_sym_BSLASHGlspl] = ACTIONS(12353), + [anon_sym_BSLASHGLSpl] = ACTIONS(12353), + [anon_sym_BSLASHglsdisp] = ACTIONS(12353), + [anon_sym_BSLASHglslink] = ACTIONS(12353), + [anon_sym_BSLASHglstext] = ACTIONS(12353), + [anon_sym_BSLASHGlstext] = ACTIONS(12353), + [anon_sym_BSLASHGLStext] = ACTIONS(12353), + [anon_sym_BSLASHglsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12353), + [anon_sym_BSLASHglsplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSplural] = ACTIONS(12353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHglsname] = ACTIONS(12353), + [anon_sym_BSLASHGlsname] = ACTIONS(12353), + [anon_sym_BSLASHGLSname] = ACTIONS(12353), + [anon_sym_BSLASHglssymbol] = ACTIONS(12353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12353), + [anon_sym_BSLASHglsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12353), + [anon_sym_BSLASHglsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12353), + [anon_sym_BSLASHglsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12353), + [anon_sym_BSLASHglsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12353), + [anon_sym_BSLASHglsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12353), + [anon_sym_BSLASHnewacronym] = ACTIONS(12353), + [anon_sym_BSLASHacrshort] = ACTIONS(12353), + [anon_sym_BSLASHAcrshort] = ACTIONS(12353), + [anon_sym_BSLASHACRshort] = ACTIONS(12353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12353), + [anon_sym_BSLASHacrlong] = ACTIONS(12353), + [anon_sym_BSLASHAcrlong] = ACTIONS(12353), + [anon_sym_BSLASHACRlong] = ACTIONS(12353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12353), + [anon_sym_BSLASHacrfull] = ACTIONS(12353), + [anon_sym_BSLASHAcrfull] = ACTIONS(12353), + [anon_sym_BSLASHACRfull] = ACTIONS(12353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12353), + [anon_sym_BSLASHacs] = ACTIONS(12353), + [anon_sym_BSLASHAcs] = ACTIONS(12353), + [anon_sym_BSLASHacsp] = ACTIONS(12353), + [anon_sym_BSLASHAcsp] = ACTIONS(12353), + [anon_sym_BSLASHacl] = ACTIONS(12353), + [anon_sym_BSLASHAcl] = ACTIONS(12353), + [anon_sym_BSLASHaclp] = ACTIONS(12353), + [anon_sym_BSLASHAclp] = ACTIONS(12353), + [anon_sym_BSLASHacf] = ACTIONS(12353), + [anon_sym_BSLASHAcf] = ACTIONS(12353), + [anon_sym_BSLASHacfp] = ACTIONS(12353), + [anon_sym_BSLASHAcfp] = ACTIONS(12353), + [anon_sym_BSLASHac] = ACTIONS(12353), + [anon_sym_BSLASHAc] = ACTIONS(12353), + [anon_sym_BSLASHacp] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12353), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12353), + [anon_sym_BSLASHcolor] = ACTIONS(12353), + [anon_sym_BSLASHcolorbox] = ACTIONS(12353), + [anon_sym_BSLASHtextcolor] = ACTIONS(12353), + [anon_sym_BSLASHpagecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12353), + }, + [1288] = { + [sym_generic_command_name] = ACTIONS(12357), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12357), + [aux_sym_subsubsection_token1] = ACTIONS(12357), + [aux_sym_paragraph_token1] = ACTIONS(12357), + [aux_sym_subparagraph_token1] = ACTIONS(12357), + [anon_sym_BSLASHitem] = ACTIONS(12357), + [anon_sym_LBRACK] = ACTIONS(12355), + [anon_sym_RBRACK] = ACTIONS(12355), + [anon_sym_LBRACE] = ACTIONS(12355), + [anon_sym_RBRACE] = ACTIONS(12355), + [anon_sym_LPAREN] = ACTIONS(12355), + [anon_sym_COMMA] = ACTIONS(12355), + [anon_sym_EQ] = ACTIONS(12355), + [sym_word] = ACTIONS(12355), + [sym_param] = ACTIONS(12355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12355), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12355), + [anon_sym_DOLLAR] = ACTIONS(12357), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12355), + [anon_sym_BSLASHbegin] = ACTIONS(12357), + [anon_sym_BSLASHcaption] = ACTIONS(12357), + [anon_sym_BSLASHcite] = ACTIONS(12357), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCite] = ACTIONS(12357), + [anon_sym_BSLASHnocite] = ACTIONS(12357), + [anon_sym_BSLASHcitet] = ACTIONS(12357), + [anon_sym_BSLASHcitep] = ACTIONS(12357), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteauthor] = ACTIONS(12357), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12357), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitetitle] = ACTIONS(12357), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteyear] = ACTIONS(12357), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitedate] = ACTIONS(12357), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteurl] = ACTIONS(12357), + [anon_sym_BSLASHfullcite] = ACTIONS(12357), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12357), + [anon_sym_BSLASHcitealt] = ACTIONS(12357), + [anon_sym_BSLASHcitealp] = ACTIONS(12357), + [anon_sym_BSLASHcitetext] = ACTIONS(12357), + [anon_sym_BSLASHparencite] = ACTIONS(12357), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHParencite] = ACTIONS(12357), + [anon_sym_BSLASHfootcite] = ACTIONS(12357), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12357), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12357), + [anon_sym_BSLASHtextcite] = ACTIONS(12357), + [anon_sym_BSLASHTextcite] = ACTIONS(12357), + [anon_sym_BSLASHsmartcite] = ACTIONS(12357), + [anon_sym_BSLASHSmartcite] = ACTIONS(12357), + [anon_sym_BSLASHsupercite] = ACTIONS(12357), + [anon_sym_BSLASHautocite] = ACTIONS(12357), + [anon_sym_BSLASHAutocite] = ACTIONS(12357), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHvolcite] = ACTIONS(12357), + [anon_sym_BSLASHVolcite] = ACTIONS(12357), + [anon_sym_BSLASHpvolcite] = ACTIONS(12357), + [anon_sym_BSLASHPvolcite] = ACTIONS(12357), + [anon_sym_BSLASHfvolcite] = ACTIONS(12357), + [anon_sym_BSLASHftvolcite] = ACTIONS(12357), + [anon_sym_BSLASHsvolcite] = ACTIONS(12357), + [anon_sym_BSLASHSvolcite] = ACTIONS(12357), + [anon_sym_BSLASHtvolcite] = ACTIONS(12357), + [anon_sym_BSLASHTvolcite] = ACTIONS(12357), + [anon_sym_BSLASHavolcite] = ACTIONS(12357), + [anon_sym_BSLASHAvolcite] = ACTIONS(12357), + [anon_sym_BSLASHnotecite] = ACTIONS(12357), + [anon_sym_BSLASHpnotecite] = ACTIONS(12357), + [anon_sym_BSLASHPnotecite] = ACTIONS(12357), + [anon_sym_BSLASHfnotecite] = ACTIONS(12357), + [anon_sym_BSLASHusepackage] = ACTIONS(12357), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12357), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12357), + [anon_sym_BSLASHinclude] = ACTIONS(12357), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12357), + [anon_sym_BSLASHinput] = ACTIONS(12357), + [anon_sym_BSLASHsubfile] = ACTIONS(12357), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12357), + [anon_sym_BSLASHbibliography] = ACTIONS(12357), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12357), + [anon_sym_BSLASHincludesvg] = ACTIONS(12357), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12357), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12357), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12357), + [anon_sym_BSLASHimport] = ACTIONS(12357), + [anon_sym_BSLASHsubimport] = ACTIONS(12357), + [anon_sym_BSLASHinputfrom] = ACTIONS(12357), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12357), + [anon_sym_BSLASHincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHlabel] = ACTIONS(12357), + [anon_sym_BSLASHref] = ACTIONS(12357), + [anon_sym_BSLASHvref] = ACTIONS(12357), + [anon_sym_BSLASHVref] = ACTIONS(12357), + [anon_sym_BSLASHautoref] = ACTIONS(12357), + [anon_sym_BSLASHpageref] = ACTIONS(12357), + [anon_sym_BSLASHcref] = ACTIONS(12357), + [anon_sym_BSLASHCref] = ACTIONS(12357), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnameCref] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHlabelcref] = ACTIONS(12357), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12357), + [anon_sym_BSLASHeqref] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange] = ACTIONS(12357), + [anon_sym_BSLASHCrefrange] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewlabel] = ACTIONS(12357), + [anon_sym_BSLASHnewcommand] = ACTIONS(12357), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12357), + [anon_sym_BSLASHgls] = ACTIONS(12357), + [anon_sym_BSLASHGls] = ACTIONS(12357), + [anon_sym_BSLASHGLS] = ACTIONS(12357), + [anon_sym_BSLASHglspl] = ACTIONS(12357), + [anon_sym_BSLASHGlspl] = ACTIONS(12357), + [anon_sym_BSLASHGLSpl] = ACTIONS(12357), + [anon_sym_BSLASHglsdisp] = ACTIONS(12357), + [anon_sym_BSLASHglslink] = ACTIONS(12357), + [anon_sym_BSLASHglstext] = ACTIONS(12357), + [anon_sym_BSLASHGlstext] = ACTIONS(12357), + [anon_sym_BSLASHGLStext] = ACTIONS(12357), + [anon_sym_BSLASHglsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12357), + [anon_sym_BSLASHglsplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSplural] = ACTIONS(12357), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHglsname] = ACTIONS(12357), + [anon_sym_BSLASHGlsname] = ACTIONS(12357), + [anon_sym_BSLASHGLSname] = ACTIONS(12357), + [anon_sym_BSLASHglssymbol] = ACTIONS(12357), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12357), + [anon_sym_BSLASHglsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12357), + [anon_sym_BSLASHglsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12357), + [anon_sym_BSLASHglsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12357), + [anon_sym_BSLASHglsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12357), + [anon_sym_BSLASHglsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12357), + [anon_sym_BSLASHnewacronym] = ACTIONS(12357), + [anon_sym_BSLASHacrshort] = ACTIONS(12357), + [anon_sym_BSLASHAcrshort] = ACTIONS(12357), + [anon_sym_BSLASHACRshort] = ACTIONS(12357), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12357), + [anon_sym_BSLASHacrlong] = ACTIONS(12357), + [anon_sym_BSLASHAcrlong] = ACTIONS(12357), + [anon_sym_BSLASHACRlong] = ACTIONS(12357), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12357), + [anon_sym_BSLASHacrfull] = ACTIONS(12357), + [anon_sym_BSLASHAcrfull] = ACTIONS(12357), + [anon_sym_BSLASHACRfull] = ACTIONS(12357), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12357), + [anon_sym_BSLASHacs] = ACTIONS(12357), + [anon_sym_BSLASHAcs] = ACTIONS(12357), + [anon_sym_BSLASHacsp] = ACTIONS(12357), + [anon_sym_BSLASHAcsp] = ACTIONS(12357), + [anon_sym_BSLASHacl] = ACTIONS(12357), + [anon_sym_BSLASHAcl] = ACTIONS(12357), + [anon_sym_BSLASHaclp] = ACTIONS(12357), + [anon_sym_BSLASHAclp] = ACTIONS(12357), + [anon_sym_BSLASHacf] = ACTIONS(12357), + [anon_sym_BSLASHAcf] = ACTIONS(12357), + [anon_sym_BSLASHacfp] = ACTIONS(12357), + [anon_sym_BSLASHAcfp] = ACTIONS(12357), + [anon_sym_BSLASHac] = ACTIONS(12357), + [anon_sym_BSLASHAc] = ACTIONS(12357), + [anon_sym_BSLASHacp] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12357), + [anon_sym_BSLASHcolor] = ACTIONS(12357), + [anon_sym_BSLASHcolorbox] = ACTIONS(12357), + [anon_sym_BSLASHtextcolor] = ACTIONS(12357), + [anon_sym_BSLASHpagecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12357), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12357), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12357), + }, + [1289] = { + [sym_generic_command_name] = ACTIONS(12361), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12361), + [aux_sym_subsubsection_token1] = ACTIONS(12361), + [aux_sym_paragraph_token1] = ACTIONS(12361), + [aux_sym_subparagraph_token1] = ACTIONS(12361), + [anon_sym_BSLASHitem] = ACTIONS(12361), + [anon_sym_LBRACK] = ACTIONS(12359), + [anon_sym_RBRACK] = ACTIONS(12359), + [anon_sym_LBRACE] = ACTIONS(12359), + [anon_sym_RBRACE] = ACTIONS(12359), + [anon_sym_LPAREN] = ACTIONS(12359), + [anon_sym_COMMA] = ACTIONS(12359), + [anon_sym_EQ] = ACTIONS(12359), + [sym_word] = ACTIONS(12359), + [sym_param] = ACTIONS(12359), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12359), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12359), + [anon_sym_DOLLAR] = ACTIONS(12361), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12359), + [anon_sym_BSLASHbegin] = ACTIONS(12361), + [anon_sym_BSLASHcaption] = ACTIONS(12361), + [anon_sym_BSLASHcite] = ACTIONS(12361), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCite] = ACTIONS(12361), + [anon_sym_BSLASHnocite] = ACTIONS(12361), + [anon_sym_BSLASHcitet] = ACTIONS(12361), + [anon_sym_BSLASHcitep] = ACTIONS(12361), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteauthor] = ACTIONS(12361), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12361), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitetitle] = ACTIONS(12361), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteyear] = ACTIONS(12361), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitedate] = ACTIONS(12361), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteurl] = ACTIONS(12361), + [anon_sym_BSLASHfullcite] = ACTIONS(12361), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12361), + [anon_sym_BSLASHcitealt] = ACTIONS(12361), + [anon_sym_BSLASHcitealp] = ACTIONS(12361), + [anon_sym_BSLASHcitetext] = ACTIONS(12361), + [anon_sym_BSLASHparencite] = ACTIONS(12361), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHParencite] = ACTIONS(12361), + [anon_sym_BSLASHfootcite] = ACTIONS(12361), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12361), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12361), + [anon_sym_BSLASHtextcite] = ACTIONS(12361), + [anon_sym_BSLASHTextcite] = ACTIONS(12361), + [anon_sym_BSLASHsmartcite] = ACTIONS(12361), + [anon_sym_BSLASHSmartcite] = ACTIONS(12361), + [anon_sym_BSLASHsupercite] = ACTIONS(12361), + [anon_sym_BSLASHautocite] = ACTIONS(12361), + [anon_sym_BSLASHAutocite] = ACTIONS(12361), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHvolcite] = ACTIONS(12361), + [anon_sym_BSLASHVolcite] = ACTIONS(12361), + [anon_sym_BSLASHpvolcite] = ACTIONS(12361), + [anon_sym_BSLASHPvolcite] = ACTIONS(12361), + [anon_sym_BSLASHfvolcite] = ACTIONS(12361), + [anon_sym_BSLASHftvolcite] = ACTIONS(12361), + [anon_sym_BSLASHsvolcite] = ACTIONS(12361), + [anon_sym_BSLASHSvolcite] = ACTIONS(12361), + [anon_sym_BSLASHtvolcite] = ACTIONS(12361), + [anon_sym_BSLASHTvolcite] = ACTIONS(12361), + [anon_sym_BSLASHavolcite] = ACTIONS(12361), + [anon_sym_BSLASHAvolcite] = ACTIONS(12361), + [anon_sym_BSLASHnotecite] = ACTIONS(12361), + [anon_sym_BSLASHpnotecite] = ACTIONS(12361), + [anon_sym_BSLASHPnotecite] = ACTIONS(12361), + [anon_sym_BSLASHfnotecite] = ACTIONS(12361), + [anon_sym_BSLASHusepackage] = ACTIONS(12361), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12361), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12361), + [anon_sym_BSLASHinclude] = ACTIONS(12361), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12361), + [anon_sym_BSLASHinput] = ACTIONS(12361), + [anon_sym_BSLASHsubfile] = ACTIONS(12361), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12361), + [anon_sym_BSLASHbibliography] = ACTIONS(12361), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12361), + [anon_sym_BSLASHincludesvg] = ACTIONS(12361), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12361), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12361), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12361), + [anon_sym_BSLASHimport] = ACTIONS(12361), + [anon_sym_BSLASHsubimport] = ACTIONS(12361), + [anon_sym_BSLASHinputfrom] = ACTIONS(12361), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12361), + [anon_sym_BSLASHincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHlabel] = ACTIONS(12361), + [anon_sym_BSLASHref] = ACTIONS(12361), + [anon_sym_BSLASHvref] = ACTIONS(12361), + [anon_sym_BSLASHVref] = ACTIONS(12361), + [anon_sym_BSLASHautoref] = ACTIONS(12361), + [anon_sym_BSLASHpageref] = ACTIONS(12361), + [anon_sym_BSLASHcref] = ACTIONS(12361), + [anon_sym_BSLASHCref] = ACTIONS(12361), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnameCref] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHlabelcref] = ACTIONS(12361), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12361), + [anon_sym_BSLASHeqref] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange] = ACTIONS(12361), + [anon_sym_BSLASHCrefrange] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewlabel] = ACTIONS(12361), + [anon_sym_BSLASHnewcommand] = ACTIONS(12361), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12361), + [anon_sym_BSLASHgls] = ACTIONS(12361), + [anon_sym_BSLASHGls] = ACTIONS(12361), + [anon_sym_BSLASHGLS] = ACTIONS(12361), + [anon_sym_BSLASHglspl] = ACTIONS(12361), + [anon_sym_BSLASHGlspl] = ACTIONS(12361), + [anon_sym_BSLASHGLSpl] = ACTIONS(12361), + [anon_sym_BSLASHglsdisp] = ACTIONS(12361), + [anon_sym_BSLASHglslink] = ACTIONS(12361), + [anon_sym_BSLASHglstext] = ACTIONS(12361), + [anon_sym_BSLASHGlstext] = ACTIONS(12361), + [anon_sym_BSLASHGLStext] = ACTIONS(12361), + [anon_sym_BSLASHglsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12361), + [anon_sym_BSLASHglsplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSplural] = ACTIONS(12361), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHglsname] = ACTIONS(12361), + [anon_sym_BSLASHGlsname] = ACTIONS(12361), + [anon_sym_BSLASHGLSname] = ACTIONS(12361), + [anon_sym_BSLASHglssymbol] = ACTIONS(12361), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12361), + [anon_sym_BSLASHglsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12361), + [anon_sym_BSLASHglsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12361), + [anon_sym_BSLASHglsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12361), + [anon_sym_BSLASHglsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12361), + [anon_sym_BSLASHglsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12361), + [anon_sym_BSLASHnewacronym] = ACTIONS(12361), + [anon_sym_BSLASHacrshort] = ACTIONS(12361), + [anon_sym_BSLASHAcrshort] = ACTIONS(12361), + [anon_sym_BSLASHACRshort] = ACTIONS(12361), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12361), + [anon_sym_BSLASHacrlong] = ACTIONS(12361), + [anon_sym_BSLASHAcrlong] = ACTIONS(12361), + [anon_sym_BSLASHACRlong] = ACTIONS(12361), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12361), + [anon_sym_BSLASHacrfull] = ACTIONS(12361), + [anon_sym_BSLASHAcrfull] = ACTIONS(12361), + [anon_sym_BSLASHACRfull] = ACTIONS(12361), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12361), + [anon_sym_BSLASHacs] = ACTIONS(12361), + [anon_sym_BSLASHAcs] = ACTIONS(12361), + [anon_sym_BSLASHacsp] = ACTIONS(12361), + [anon_sym_BSLASHAcsp] = ACTIONS(12361), + [anon_sym_BSLASHacl] = ACTIONS(12361), + [anon_sym_BSLASHAcl] = ACTIONS(12361), + [anon_sym_BSLASHaclp] = ACTIONS(12361), + [anon_sym_BSLASHAclp] = ACTIONS(12361), + [anon_sym_BSLASHacf] = ACTIONS(12361), + [anon_sym_BSLASHAcf] = ACTIONS(12361), + [anon_sym_BSLASHacfp] = ACTIONS(12361), + [anon_sym_BSLASHAcfp] = ACTIONS(12361), + [anon_sym_BSLASHac] = ACTIONS(12361), + [anon_sym_BSLASHAc] = ACTIONS(12361), + [anon_sym_BSLASHacp] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12361), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12361), + [anon_sym_BSLASHcolor] = ACTIONS(12361), + [anon_sym_BSLASHcolorbox] = ACTIONS(12361), + [anon_sym_BSLASHtextcolor] = ACTIONS(12361), + [anon_sym_BSLASHpagecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12361), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12361), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12361), + }, + [1290] = { + [sym_generic_command_name] = ACTIONS(12369), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12369), + [aux_sym_subsubsection_token1] = ACTIONS(12369), + [aux_sym_paragraph_token1] = ACTIONS(12369), + [aux_sym_subparagraph_token1] = ACTIONS(12369), + [anon_sym_BSLASHitem] = ACTIONS(12369), + [anon_sym_LBRACK] = ACTIONS(12367), + [anon_sym_RBRACK] = ACTIONS(12367), + [anon_sym_LBRACE] = ACTIONS(12367), + [anon_sym_RBRACE] = ACTIONS(12367), + [anon_sym_LPAREN] = ACTIONS(12367), + [anon_sym_COMMA] = ACTIONS(12367), + [anon_sym_EQ] = ACTIONS(12367), + [sym_word] = ACTIONS(12367), + [sym_param] = ACTIONS(12367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12367), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12367), + [anon_sym_DOLLAR] = ACTIONS(12369), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12367), + [anon_sym_BSLASHbegin] = ACTIONS(12369), + [anon_sym_BSLASHcaption] = ACTIONS(12369), + [anon_sym_BSLASHcite] = ACTIONS(12369), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCite] = ACTIONS(12369), + [anon_sym_BSLASHnocite] = ACTIONS(12369), + [anon_sym_BSLASHcitet] = ACTIONS(12369), + [anon_sym_BSLASHcitep] = ACTIONS(12369), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteauthor] = ACTIONS(12369), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12369), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitetitle] = ACTIONS(12369), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteyear] = ACTIONS(12369), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitedate] = ACTIONS(12369), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteurl] = ACTIONS(12369), + [anon_sym_BSLASHfullcite] = ACTIONS(12369), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12369), + [anon_sym_BSLASHcitealt] = ACTIONS(12369), + [anon_sym_BSLASHcitealp] = ACTIONS(12369), + [anon_sym_BSLASHcitetext] = ACTIONS(12369), + [anon_sym_BSLASHparencite] = ACTIONS(12369), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHParencite] = ACTIONS(12369), + [anon_sym_BSLASHfootcite] = ACTIONS(12369), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12369), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12369), + [anon_sym_BSLASHtextcite] = ACTIONS(12369), + [anon_sym_BSLASHTextcite] = ACTIONS(12369), + [anon_sym_BSLASHsmartcite] = ACTIONS(12369), + [anon_sym_BSLASHSmartcite] = ACTIONS(12369), + [anon_sym_BSLASHsupercite] = ACTIONS(12369), + [anon_sym_BSLASHautocite] = ACTIONS(12369), + [anon_sym_BSLASHAutocite] = ACTIONS(12369), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHvolcite] = ACTIONS(12369), + [anon_sym_BSLASHVolcite] = ACTIONS(12369), + [anon_sym_BSLASHpvolcite] = ACTIONS(12369), + [anon_sym_BSLASHPvolcite] = ACTIONS(12369), + [anon_sym_BSLASHfvolcite] = ACTIONS(12369), + [anon_sym_BSLASHftvolcite] = ACTIONS(12369), + [anon_sym_BSLASHsvolcite] = ACTIONS(12369), + [anon_sym_BSLASHSvolcite] = ACTIONS(12369), + [anon_sym_BSLASHtvolcite] = ACTIONS(12369), + [anon_sym_BSLASHTvolcite] = ACTIONS(12369), + [anon_sym_BSLASHavolcite] = ACTIONS(12369), + [anon_sym_BSLASHAvolcite] = ACTIONS(12369), + [anon_sym_BSLASHnotecite] = ACTIONS(12369), + [anon_sym_BSLASHpnotecite] = ACTIONS(12369), + [anon_sym_BSLASHPnotecite] = ACTIONS(12369), + [anon_sym_BSLASHfnotecite] = ACTIONS(12369), + [anon_sym_BSLASHusepackage] = ACTIONS(12369), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12369), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12369), + [anon_sym_BSLASHinclude] = ACTIONS(12369), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12369), + [anon_sym_BSLASHinput] = ACTIONS(12369), + [anon_sym_BSLASHsubfile] = ACTIONS(12369), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12369), + [anon_sym_BSLASHbibliography] = ACTIONS(12369), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12369), + [anon_sym_BSLASHincludesvg] = ACTIONS(12369), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12369), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12369), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12369), + [anon_sym_BSLASHimport] = ACTIONS(12369), + [anon_sym_BSLASHsubimport] = ACTIONS(12369), + [anon_sym_BSLASHinputfrom] = ACTIONS(12369), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12369), + [anon_sym_BSLASHincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHlabel] = ACTIONS(12369), + [anon_sym_BSLASHref] = ACTIONS(12369), + [anon_sym_BSLASHvref] = ACTIONS(12369), + [anon_sym_BSLASHVref] = ACTIONS(12369), + [anon_sym_BSLASHautoref] = ACTIONS(12369), + [anon_sym_BSLASHpageref] = ACTIONS(12369), + [anon_sym_BSLASHcref] = ACTIONS(12369), + [anon_sym_BSLASHCref] = ACTIONS(12369), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnameCref] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHlabelcref] = ACTIONS(12369), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12369), + [anon_sym_BSLASHeqref] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange] = ACTIONS(12369), + [anon_sym_BSLASHCrefrange] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewlabel] = ACTIONS(12369), + [anon_sym_BSLASHnewcommand] = ACTIONS(12369), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12369), + [anon_sym_BSLASHgls] = ACTIONS(12369), + [anon_sym_BSLASHGls] = ACTIONS(12369), + [anon_sym_BSLASHGLS] = ACTIONS(12369), + [anon_sym_BSLASHglspl] = ACTIONS(12369), + [anon_sym_BSLASHGlspl] = ACTIONS(12369), + [anon_sym_BSLASHGLSpl] = ACTIONS(12369), + [anon_sym_BSLASHglsdisp] = ACTIONS(12369), + [anon_sym_BSLASHglslink] = ACTIONS(12369), + [anon_sym_BSLASHglstext] = ACTIONS(12369), + [anon_sym_BSLASHGlstext] = ACTIONS(12369), + [anon_sym_BSLASHGLStext] = ACTIONS(12369), + [anon_sym_BSLASHglsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12369), + [anon_sym_BSLASHglsplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSplural] = ACTIONS(12369), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHglsname] = ACTIONS(12369), + [anon_sym_BSLASHGlsname] = ACTIONS(12369), + [anon_sym_BSLASHGLSname] = ACTIONS(12369), + [anon_sym_BSLASHglssymbol] = ACTIONS(12369), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12369), + [anon_sym_BSLASHglsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12369), + [anon_sym_BSLASHglsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12369), + [anon_sym_BSLASHglsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12369), + [anon_sym_BSLASHglsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12369), + [anon_sym_BSLASHglsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12369), + [anon_sym_BSLASHnewacronym] = ACTIONS(12369), + [anon_sym_BSLASHacrshort] = ACTIONS(12369), + [anon_sym_BSLASHAcrshort] = ACTIONS(12369), + [anon_sym_BSLASHACRshort] = ACTIONS(12369), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12369), + [anon_sym_BSLASHacrlong] = ACTIONS(12369), + [anon_sym_BSLASHAcrlong] = ACTIONS(12369), + [anon_sym_BSLASHACRlong] = ACTIONS(12369), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12369), + [anon_sym_BSLASHacrfull] = ACTIONS(12369), + [anon_sym_BSLASHAcrfull] = ACTIONS(12369), + [anon_sym_BSLASHACRfull] = ACTIONS(12369), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12369), + [anon_sym_BSLASHacs] = ACTIONS(12369), + [anon_sym_BSLASHAcs] = ACTIONS(12369), + [anon_sym_BSLASHacsp] = ACTIONS(12369), + [anon_sym_BSLASHAcsp] = ACTIONS(12369), + [anon_sym_BSLASHacl] = ACTIONS(12369), + [anon_sym_BSLASHAcl] = ACTIONS(12369), + [anon_sym_BSLASHaclp] = ACTIONS(12369), + [anon_sym_BSLASHAclp] = ACTIONS(12369), + [anon_sym_BSLASHacf] = ACTIONS(12369), + [anon_sym_BSLASHAcf] = ACTIONS(12369), + [anon_sym_BSLASHacfp] = ACTIONS(12369), + [anon_sym_BSLASHAcfp] = ACTIONS(12369), + [anon_sym_BSLASHac] = ACTIONS(12369), + [anon_sym_BSLASHAc] = ACTIONS(12369), + [anon_sym_BSLASHacp] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12369), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12369), + [anon_sym_BSLASHcolor] = ACTIONS(12369), + [anon_sym_BSLASHcolorbox] = ACTIONS(12369), + [anon_sym_BSLASHtextcolor] = ACTIONS(12369), + [anon_sym_BSLASHpagecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12369), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12369), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12369), + }, + [1291] = { + [sym_generic_command_name] = ACTIONS(12373), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12373), + [aux_sym_subsubsection_token1] = ACTIONS(12373), + [aux_sym_paragraph_token1] = ACTIONS(12373), + [aux_sym_subparagraph_token1] = ACTIONS(12373), + [anon_sym_BSLASHitem] = ACTIONS(12373), + [anon_sym_LBRACK] = ACTIONS(12371), + [anon_sym_RBRACK] = ACTIONS(12371), + [anon_sym_LBRACE] = ACTIONS(12371), + [anon_sym_RBRACE] = ACTIONS(12371), + [anon_sym_LPAREN] = ACTIONS(12371), + [anon_sym_COMMA] = ACTIONS(12371), + [anon_sym_EQ] = ACTIONS(12371), + [sym_word] = ACTIONS(12371), + [sym_param] = ACTIONS(12371), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12371), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12371), + [anon_sym_DOLLAR] = ACTIONS(12373), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12371), + [anon_sym_BSLASHbegin] = ACTIONS(12373), + [anon_sym_BSLASHcaption] = ACTIONS(12373), + [anon_sym_BSLASHcite] = ACTIONS(12373), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCite] = ACTIONS(12373), + [anon_sym_BSLASHnocite] = ACTIONS(12373), + [anon_sym_BSLASHcitet] = ACTIONS(12373), + [anon_sym_BSLASHcitep] = ACTIONS(12373), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteauthor] = ACTIONS(12373), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12373), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitetitle] = ACTIONS(12373), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteyear] = ACTIONS(12373), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitedate] = ACTIONS(12373), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteurl] = ACTIONS(12373), + [anon_sym_BSLASHfullcite] = ACTIONS(12373), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12373), + [anon_sym_BSLASHcitealt] = ACTIONS(12373), + [anon_sym_BSLASHcitealp] = ACTIONS(12373), + [anon_sym_BSLASHcitetext] = ACTIONS(12373), + [anon_sym_BSLASHparencite] = ACTIONS(12373), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHParencite] = ACTIONS(12373), + [anon_sym_BSLASHfootcite] = ACTIONS(12373), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12373), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12373), + [anon_sym_BSLASHtextcite] = ACTIONS(12373), + [anon_sym_BSLASHTextcite] = ACTIONS(12373), + [anon_sym_BSLASHsmartcite] = ACTIONS(12373), + [anon_sym_BSLASHSmartcite] = ACTIONS(12373), + [anon_sym_BSLASHsupercite] = ACTIONS(12373), + [anon_sym_BSLASHautocite] = ACTIONS(12373), + [anon_sym_BSLASHAutocite] = ACTIONS(12373), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHvolcite] = ACTIONS(12373), + [anon_sym_BSLASHVolcite] = ACTIONS(12373), + [anon_sym_BSLASHpvolcite] = ACTIONS(12373), + [anon_sym_BSLASHPvolcite] = ACTIONS(12373), + [anon_sym_BSLASHfvolcite] = ACTIONS(12373), + [anon_sym_BSLASHftvolcite] = ACTIONS(12373), + [anon_sym_BSLASHsvolcite] = ACTIONS(12373), + [anon_sym_BSLASHSvolcite] = ACTIONS(12373), + [anon_sym_BSLASHtvolcite] = ACTIONS(12373), + [anon_sym_BSLASHTvolcite] = ACTIONS(12373), + [anon_sym_BSLASHavolcite] = ACTIONS(12373), + [anon_sym_BSLASHAvolcite] = ACTIONS(12373), + [anon_sym_BSLASHnotecite] = ACTIONS(12373), + [anon_sym_BSLASHpnotecite] = ACTIONS(12373), + [anon_sym_BSLASHPnotecite] = ACTIONS(12373), + [anon_sym_BSLASHfnotecite] = ACTIONS(12373), + [anon_sym_BSLASHusepackage] = ACTIONS(12373), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12373), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12373), + [anon_sym_BSLASHinclude] = ACTIONS(12373), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12373), + [anon_sym_BSLASHinput] = ACTIONS(12373), + [anon_sym_BSLASHsubfile] = ACTIONS(12373), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12373), + [anon_sym_BSLASHbibliography] = ACTIONS(12373), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12373), + [anon_sym_BSLASHincludesvg] = ACTIONS(12373), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12373), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12373), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12373), + [anon_sym_BSLASHimport] = ACTIONS(12373), + [anon_sym_BSLASHsubimport] = ACTIONS(12373), + [anon_sym_BSLASHinputfrom] = ACTIONS(12373), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12373), + [anon_sym_BSLASHincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHlabel] = ACTIONS(12373), + [anon_sym_BSLASHref] = ACTIONS(12373), + [anon_sym_BSLASHvref] = ACTIONS(12373), + [anon_sym_BSLASHVref] = ACTIONS(12373), + [anon_sym_BSLASHautoref] = ACTIONS(12373), + [anon_sym_BSLASHpageref] = ACTIONS(12373), + [anon_sym_BSLASHcref] = ACTIONS(12373), + [anon_sym_BSLASHCref] = ACTIONS(12373), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnameCref] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHlabelcref] = ACTIONS(12373), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12373), + [anon_sym_BSLASHeqref] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange] = ACTIONS(12373), + [anon_sym_BSLASHCrefrange] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewlabel] = ACTIONS(12373), + [anon_sym_BSLASHnewcommand] = ACTIONS(12373), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12373), + [anon_sym_BSLASHgls] = ACTIONS(12373), + [anon_sym_BSLASHGls] = ACTIONS(12373), + [anon_sym_BSLASHGLS] = ACTIONS(12373), + [anon_sym_BSLASHglspl] = ACTIONS(12373), + [anon_sym_BSLASHGlspl] = ACTIONS(12373), + [anon_sym_BSLASHGLSpl] = ACTIONS(12373), + [anon_sym_BSLASHglsdisp] = ACTIONS(12373), + [anon_sym_BSLASHglslink] = ACTIONS(12373), + [anon_sym_BSLASHglstext] = ACTIONS(12373), + [anon_sym_BSLASHGlstext] = ACTIONS(12373), + [anon_sym_BSLASHGLStext] = ACTIONS(12373), + [anon_sym_BSLASHglsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12373), + [anon_sym_BSLASHglsplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSplural] = ACTIONS(12373), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHglsname] = ACTIONS(12373), + [anon_sym_BSLASHGlsname] = ACTIONS(12373), + [anon_sym_BSLASHGLSname] = ACTIONS(12373), + [anon_sym_BSLASHglssymbol] = ACTIONS(12373), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12373), + [anon_sym_BSLASHglsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12373), + [anon_sym_BSLASHglsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12373), + [anon_sym_BSLASHglsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12373), + [anon_sym_BSLASHglsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12373), + [anon_sym_BSLASHglsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12373), + [anon_sym_BSLASHnewacronym] = ACTIONS(12373), + [anon_sym_BSLASHacrshort] = ACTIONS(12373), + [anon_sym_BSLASHAcrshort] = ACTIONS(12373), + [anon_sym_BSLASHACRshort] = ACTIONS(12373), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12373), + [anon_sym_BSLASHacrlong] = ACTIONS(12373), + [anon_sym_BSLASHAcrlong] = ACTIONS(12373), + [anon_sym_BSLASHACRlong] = ACTIONS(12373), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12373), + [anon_sym_BSLASHacrfull] = ACTIONS(12373), + [anon_sym_BSLASHAcrfull] = ACTIONS(12373), + [anon_sym_BSLASHACRfull] = ACTIONS(12373), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12373), + [anon_sym_BSLASHacs] = ACTIONS(12373), + [anon_sym_BSLASHAcs] = ACTIONS(12373), + [anon_sym_BSLASHacsp] = ACTIONS(12373), + [anon_sym_BSLASHAcsp] = ACTIONS(12373), + [anon_sym_BSLASHacl] = ACTIONS(12373), + [anon_sym_BSLASHAcl] = ACTIONS(12373), + [anon_sym_BSLASHaclp] = ACTIONS(12373), + [anon_sym_BSLASHAclp] = ACTIONS(12373), + [anon_sym_BSLASHacf] = ACTIONS(12373), + [anon_sym_BSLASHAcf] = ACTIONS(12373), + [anon_sym_BSLASHacfp] = ACTIONS(12373), + [anon_sym_BSLASHAcfp] = ACTIONS(12373), + [anon_sym_BSLASHac] = ACTIONS(12373), + [anon_sym_BSLASHAc] = ACTIONS(12373), + [anon_sym_BSLASHacp] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12373), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12373), + [anon_sym_BSLASHcolor] = ACTIONS(12373), + [anon_sym_BSLASHcolorbox] = ACTIONS(12373), + [anon_sym_BSLASHtextcolor] = ACTIONS(12373), + [anon_sym_BSLASHpagecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12373), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12373), + }, + [1292] = { + [sym_generic_command_name] = ACTIONS(12377), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12377), + [aux_sym_subsubsection_token1] = ACTIONS(12377), + [aux_sym_paragraph_token1] = ACTIONS(12377), + [aux_sym_subparagraph_token1] = ACTIONS(12377), + [anon_sym_BSLASHitem] = ACTIONS(12377), + [anon_sym_LBRACK] = ACTIONS(12375), + [anon_sym_RBRACK] = ACTIONS(12375), + [anon_sym_LBRACE] = ACTIONS(12375), + [anon_sym_RBRACE] = ACTIONS(12375), + [anon_sym_LPAREN] = ACTIONS(12375), + [anon_sym_COMMA] = ACTIONS(12375), + [anon_sym_EQ] = ACTIONS(12375), + [sym_word] = ACTIONS(12375), + [sym_param] = ACTIONS(12375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12375), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12375), + [anon_sym_DOLLAR] = ACTIONS(12377), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12375), + [anon_sym_BSLASHbegin] = ACTIONS(12377), + [anon_sym_BSLASHcaption] = ACTIONS(12377), + [anon_sym_BSLASHcite] = ACTIONS(12377), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCite] = ACTIONS(12377), + [anon_sym_BSLASHnocite] = ACTIONS(12377), + [anon_sym_BSLASHcitet] = ACTIONS(12377), + [anon_sym_BSLASHcitep] = ACTIONS(12377), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteauthor] = ACTIONS(12377), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12377), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitetitle] = ACTIONS(12377), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteyear] = ACTIONS(12377), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitedate] = ACTIONS(12377), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteurl] = ACTIONS(12377), + [anon_sym_BSLASHfullcite] = ACTIONS(12377), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12377), + [anon_sym_BSLASHcitealt] = ACTIONS(12377), + [anon_sym_BSLASHcitealp] = ACTIONS(12377), + [anon_sym_BSLASHcitetext] = ACTIONS(12377), + [anon_sym_BSLASHparencite] = ACTIONS(12377), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHParencite] = ACTIONS(12377), + [anon_sym_BSLASHfootcite] = ACTIONS(12377), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12377), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12377), + [anon_sym_BSLASHtextcite] = ACTIONS(12377), + [anon_sym_BSLASHTextcite] = ACTIONS(12377), + [anon_sym_BSLASHsmartcite] = ACTIONS(12377), + [anon_sym_BSLASHSmartcite] = ACTIONS(12377), + [anon_sym_BSLASHsupercite] = ACTIONS(12377), + [anon_sym_BSLASHautocite] = ACTIONS(12377), + [anon_sym_BSLASHAutocite] = ACTIONS(12377), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHvolcite] = ACTIONS(12377), + [anon_sym_BSLASHVolcite] = ACTIONS(12377), + [anon_sym_BSLASHpvolcite] = ACTIONS(12377), + [anon_sym_BSLASHPvolcite] = ACTIONS(12377), + [anon_sym_BSLASHfvolcite] = ACTIONS(12377), + [anon_sym_BSLASHftvolcite] = ACTIONS(12377), + [anon_sym_BSLASHsvolcite] = ACTIONS(12377), + [anon_sym_BSLASHSvolcite] = ACTIONS(12377), + [anon_sym_BSLASHtvolcite] = ACTIONS(12377), + [anon_sym_BSLASHTvolcite] = ACTIONS(12377), + [anon_sym_BSLASHavolcite] = ACTIONS(12377), + [anon_sym_BSLASHAvolcite] = ACTIONS(12377), + [anon_sym_BSLASHnotecite] = ACTIONS(12377), + [anon_sym_BSLASHpnotecite] = ACTIONS(12377), + [anon_sym_BSLASHPnotecite] = ACTIONS(12377), + [anon_sym_BSLASHfnotecite] = ACTIONS(12377), + [anon_sym_BSLASHusepackage] = ACTIONS(12377), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12377), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12377), + [anon_sym_BSLASHinclude] = ACTIONS(12377), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12377), + [anon_sym_BSLASHinput] = ACTIONS(12377), + [anon_sym_BSLASHsubfile] = ACTIONS(12377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12377), + [anon_sym_BSLASHbibliography] = ACTIONS(12377), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12377), + [anon_sym_BSLASHincludesvg] = ACTIONS(12377), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12377), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12377), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12377), + [anon_sym_BSLASHimport] = ACTIONS(12377), + [anon_sym_BSLASHsubimport] = ACTIONS(12377), + [anon_sym_BSLASHinputfrom] = ACTIONS(12377), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12377), + [anon_sym_BSLASHincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHlabel] = ACTIONS(12377), + [anon_sym_BSLASHref] = ACTIONS(12377), + [anon_sym_BSLASHvref] = ACTIONS(12377), + [anon_sym_BSLASHVref] = ACTIONS(12377), + [anon_sym_BSLASHautoref] = ACTIONS(12377), + [anon_sym_BSLASHpageref] = ACTIONS(12377), + [anon_sym_BSLASHcref] = ACTIONS(12377), + [anon_sym_BSLASHCref] = ACTIONS(12377), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnameCref] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHlabelcref] = ACTIONS(12377), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12377), + [anon_sym_BSLASHeqref] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange] = ACTIONS(12377), + [anon_sym_BSLASHCrefrange] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewlabel] = ACTIONS(12377), + [anon_sym_BSLASHnewcommand] = ACTIONS(12377), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12377), + [anon_sym_BSLASHgls] = ACTIONS(12377), + [anon_sym_BSLASHGls] = ACTIONS(12377), + [anon_sym_BSLASHGLS] = ACTIONS(12377), + [anon_sym_BSLASHglspl] = ACTIONS(12377), + [anon_sym_BSLASHGlspl] = ACTIONS(12377), + [anon_sym_BSLASHGLSpl] = ACTIONS(12377), + [anon_sym_BSLASHglsdisp] = ACTIONS(12377), + [anon_sym_BSLASHglslink] = ACTIONS(12377), + [anon_sym_BSLASHglstext] = ACTIONS(12377), + [anon_sym_BSLASHGlstext] = ACTIONS(12377), + [anon_sym_BSLASHGLStext] = ACTIONS(12377), + [anon_sym_BSLASHglsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12377), + [anon_sym_BSLASHglsplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSplural] = ACTIONS(12377), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHglsname] = ACTIONS(12377), + [anon_sym_BSLASHGlsname] = ACTIONS(12377), + [anon_sym_BSLASHGLSname] = ACTIONS(12377), + [anon_sym_BSLASHglssymbol] = ACTIONS(12377), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12377), + [anon_sym_BSLASHglsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12377), + [anon_sym_BSLASHglsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12377), + [anon_sym_BSLASHglsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12377), + [anon_sym_BSLASHglsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12377), + [anon_sym_BSLASHglsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12377), + [anon_sym_BSLASHnewacronym] = ACTIONS(12377), + [anon_sym_BSLASHacrshort] = ACTIONS(12377), + [anon_sym_BSLASHAcrshort] = ACTIONS(12377), + [anon_sym_BSLASHACRshort] = ACTIONS(12377), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12377), + [anon_sym_BSLASHacrlong] = ACTIONS(12377), + [anon_sym_BSLASHAcrlong] = ACTIONS(12377), + [anon_sym_BSLASHACRlong] = ACTIONS(12377), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12377), + [anon_sym_BSLASHacrfull] = ACTIONS(12377), + [anon_sym_BSLASHAcrfull] = ACTIONS(12377), + [anon_sym_BSLASHACRfull] = ACTIONS(12377), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12377), + [anon_sym_BSLASHacs] = ACTIONS(12377), + [anon_sym_BSLASHAcs] = ACTIONS(12377), + [anon_sym_BSLASHacsp] = ACTIONS(12377), + [anon_sym_BSLASHAcsp] = ACTIONS(12377), + [anon_sym_BSLASHacl] = ACTIONS(12377), + [anon_sym_BSLASHAcl] = ACTIONS(12377), + [anon_sym_BSLASHaclp] = ACTIONS(12377), + [anon_sym_BSLASHAclp] = ACTIONS(12377), + [anon_sym_BSLASHacf] = ACTIONS(12377), + [anon_sym_BSLASHAcf] = ACTIONS(12377), + [anon_sym_BSLASHacfp] = ACTIONS(12377), + [anon_sym_BSLASHAcfp] = ACTIONS(12377), + [anon_sym_BSLASHac] = ACTIONS(12377), + [anon_sym_BSLASHAc] = ACTIONS(12377), + [anon_sym_BSLASHacp] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12377), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12377), + [anon_sym_BSLASHcolor] = ACTIONS(12377), + [anon_sym_BSLASHcolorbox] = ACTIONS(12377), + [anon_sym_BSLASHtextcolor] = ACTIONS(12377), + [anon_sym_BSLASHpagecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12377), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12377), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12377), + }, + [1293] = { + [sym_generic_command_name] = ACTIONS(12381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12381), + [aux_sym_subsubsection_token1] = ACTIONS(12381), + [aux_sym_paragraph_token1] = ACTIONS(12381), + [aux_sym_subparagraph_token1] = ACTIONS(12381), + [anon_sym_BSLASHitem] = ACTIONS(12381), + [anon_sym_LBRACK] = ACTIONS(12379), + [anon_sym_RBRACK] = ACTIONS(12379), + [anon_sym_LBRACE] = ACTIONS(12379), + [anon_sym_RBRACE] = ACTIONS(12379), + [anon_sym_LPAREN] = ACTIONS(12379), + [anon_sym_COMMA] = ACTIONS(12379), + [anon_sym_EQ] = ACTIONS(12379), + [sym_word] = ACTIONS(12379), + [sym_param] = ACTIONS(12379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12379), + [anon_sym_DOLLAR] = ACTIONS(12381), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12379), + [anon_sym_BSLASHbegin] = ACTIONS(12381), + [anon_sym_BSLASHcaption] = ACTIONS(12381), + [anon_sym_BSLASHcite] = ACTIONS(12381), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCite] = ACTIONS(12381), + [anon_sym_BSLASHnocite] = ACTIONS(12381), + [anon_sym_BSLASHcitet] = ACTIONS(12381), + [anon_sym_BSLASHcitep] = ACTIONS(12381), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteauthor] = ACTIONS(12381), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12381), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitetitle] = ACTIONS(12381), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteyear] = ACTIONS(12381), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitedate] = ACTIONS(12381), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteurl] = ACTIONS(12381), + [anon_sym_BSLASHfullcite] = ACTIONS(12381), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12381), + [anon_sym_BSLASHcitealt] = ACTIONS(12381), + [anon_sym_BSLASHcitealp] = ACTIONS(12381), + [anon_sym_BSLASHcitetext] = ACTIONS(12381), + [anon_sym_BSLASHparencite] = ACTIONS(12381), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHParencite] = ACTIONS(12381), + [anon_sym_BSLASHfootcite] = ACTIONS(12381), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12381), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12381), + [anon_sym_BSLASHtextcite] = ACTIONS(12381), + [anon_sym_BSLASHTextcite] = ACTIONS(12381), + [anon_sym_BSLASHsmartcite] = ACTIONS(12381), + [anon_sym_BSLASHSmartcite] = ACTIONS(12381), + [anon_sym_BSLASHsupercite] = ACTIONS(12381), + [anon_sym_BSLASHautocite] = ACTIONS(12381), + [anon_sym_BSLASHAutocite] = ACTIONS(12381), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHvolcite] = ACTIONS(12381), + [anon_sym_BSLASHVolcite] = ACTIONS(12381), + [anon_sym_BSLASHpvolcite] = ACTIONS(12381), + [anon_sym_BSLASHPvolcite] = ACTIONS(12381), + [anon_sym_BSLASHfvolcite] = ACTIONS(12381), + [anon_sym_BSLASHftvolcite] = ACTIONS(12381), + [anon_sym_BSLASHsvolcite] = ACTIONS(12381), + [anon_sym_BSLASHSvolcite] = ACTIONS(12381), + [anon_sym_BSLASHtvolcite] = ACTIONS(12381), + [anon_sym_BSLASHTvolcite] = ACTIONS(12381), + [anon_sym_BSLASHavolcite] = ACTIONS(12381), + [anon_sym_BSLASHAvolcite] = ACTIONS(12381), + [anon_sym_BSLASHnotecite] = ACTIONS(12381), + [anon_sym_BSLASHpnotecite] = ACTIONS(12381), + [anon_sym_BSLASHPnotecite] = ACTIONS(12381), + [anon_sym_BSLASHfnotecite] = ACTIONS(12381), + [anon_sym_BSLASHusepackage] = ACTIONS(12381), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12381), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12381), + [anon_sym_BSLASHinclude] = ACTIONS(12381), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12381), + [anon_sym_BSLASHinput] = ACTIONS(12381), + [anon_sym_BSLASHsubfile] = ACTIONS(12381), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12381), + [anon_sym_BSLASHbibliography] = ACTIONS(12381), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12381), + [anon_sym_BSLASHincludesvg] = ACTIONS(12381), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12381), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12381), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12381), + [anon_sym_BSLASHimport] = ACTIONS(12381), + [anon_sym_BSLASHsubimport] = ACTIONS(12381), + [anon_sym_BSLASHinputfrom] = ACTIONS(12381), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12381), + [anon_sym_BSLASHincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHlabel] = ACTIONS(12381), + [anon_sym_BSLASHref] = ACTIONS(12381), + [anon_sym_BSLASHvref] = ACTIONS(12381), + [anon_sym_BSLASHVref] = ACTIONS(12381), + [anon_sym_BSLASHautoref] = ACTIONS(12381), + [anon_sym_BSLASHpageref] = ACTIONS(12381), + [anon_sym_BSLASHcref] = ACTIONS(12381), + [anon_sym_BSLASHCref] = ACTIONS(12381), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnameCref] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHlabelcref] = ACTIONS(12381), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12381), + [anon_sym_BSLASHeqref] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange] = ACTIONS(12381), + [anon_sym_BSLASHCrefrange] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewlabel] = ACTIONS(12381), + [anon_sym_BSLASHnewcommand] = ACTIONS(12381), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12381), + [anon_sym_BSLASHgls] = ACTIONS(12381), + [anon_sym_BSLASHGls] = ACTIONS(12381), + [anon_sym_BSLASHGLS] = ACTIONS(12381), + [anon_sym_BSLASHglspl] = ACTIONS(12381), + [anon_sym_BSLASHGlspl] = ACTIONS(12381), + [anon_sym_BSLASHGLSpl] = ACTIONS(12381), + [anon_sym_BSLASHglsdisp] = ACTIONS(12381), + [anon_sym_BSLASHglslink] = ACTIONS(12381), + [anon_sym_BSLASHglstext] = ACTIONS(12381), + [anon_sym_BSLASHGlstext] = ACTIONS(12381), + [anon_sym_BSLASHGLStext] = ACTIONS(12381), + [anon_sym_BSLASHglsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12381), + [anon_sym_BSLASHglsplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSplural] = ACTIONS(12381), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHglsname] = ACTIONS(12381), + [anon_sym_BSLASHGlsname] = ACTIONS(12381), + [anon_sym_BSLASHGLSname] = ACTIONS(12381), + [anon_sym_BSLASHglssymbol] = ACTIONS(12381), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12381), + [anon_sym_BSLASHglsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12381), + [anon_sym_BSLASHglsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12381), + [anon_sym_BSLASHglsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12381), + [anon_sym_BSLASHglsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12381), + [anon_sym_BSLASHglsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12381), + [anon_sym_BSLASHnewacronym] = ACTIONS(12381), + [anon_sym_BSLASHacrshort] = ACTIONS(12381), + [anon_sym_BSLASHAcrshort] = ACTIONS(12381), + [anon_sym_BSLASHACRshort] = ACTIONS(12381), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12381), + [anon_sym_BSLASHacrlong] = ACTIONS(12381), + [anon_sym_BSLASHAcrlong] = ACTIONS(12381), + [anon_sym_BSLASHACRlong] = ACTIONS(12381), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12381), + [anon_sym_BSLASHacrfull] = ACTIONS(12381), + [anon_sym_BSLASHAcrfull] = ACTIONS(12381), + [anon_sym_BSLASHACRfull] = ACTIONS(12381), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12381), + [anon_sym_BSLASHacs] = ACTIONS(12381), + [anon_sym_BSLASHAcs] = ACTIONS(12381), + [anon_sym_BSLASHacsp] = ACTIONS(12381), + [anon_sym_BSLASHAcsp] = ACTIONS(12381), + [anon_sym_BSLASHacl] = ACTIONS(12381), + [anon_sym_BSLASHAcl] = ACTIONS(12381), + [anon_sym_BSLASHaclp] = ACTIONS(12381), + [anon_sym_BSLASHAclp] = ACTIONS(12381), + [anon_sym_BSLASHacf] = ACTIONS(12381), + [anon_sym_BSLASHAcf] = ACTIONS(12381), + [anon_sym_BSLASHacfp] = ACTIONS(12381), + [anon_sym_BSLASHAcfp] = ACTIONS(12381), + [anon_sym_BSLASHac] = ACTIONS(12381), + [anon_sym_BSLASHAc] = ACTIONS(12381), + [anon_sym_BSLASHacp] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12381), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12381), + [anon_sym_BSLASHcolor] = ACTIONS(12381), + [anon_sym_BSLASHcolorbox] = ACTIONS(12381), + [anon_sym_BSLASHtextcolor] = ACTIONS(12381), + [anon_sym_BSLASHpagecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12381), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12381), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12381), + }, + [1294] = { + [sym_generic_command_name] = ACTIONS(12393), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12393), + [aux_sym_subsubsection_token1] = ACTIONS(12393), + [aux_sym_paragraph_token1] = ACTIONS(12393), + [aux_sym_subparagraph_token1] = ACTIONS(12393), + [anon_sym_BSLASHitem] = ACTIONS(12393), + [anon_sym_LBRACK] = ACTIONS(12391), + [anon_sym_RBRACK] = ACTIONS(12391), + [anon_sym_LBRACE] = ACTIONS(12391), + [anon_sym_RBRACE] = ACTIONS(12391), + [anon_sym_LPAREN] = ACTIONS(12391), + [anon_sym_COMMA] = ACTIONS(12391), + [anon_sym_EQ] = ACTIONS(12391), + [sym_word] = ACTIONS(12391), + [sym_param] = ACTIONS(12391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12391), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12391), + [anon_sym_DOLLAR] = ACTIONS(12393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12391), + [anon_sym_BSLASHbegin] = ACTIONS(12393), + [anon_sym_BSLASHcaption] = ACTIONS(12393), + [anon_sym_BSLASHcite] = ACTIONS(12393), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCite] = ACTIONS(12393), + [anon_sym_BSLASHnocite] = ACTIONS(12393), + [anon_sym_BSLASHcitet] = ACTIONS(12393), + [anon_sym_BSLASHcitep] = ACTIONS(12393), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteauthor] = ACTIONS(12393), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12393), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitetitle] = ACTIONS(12393), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteyear] = ACTIONS(12393), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitedate] = ACTIONS(12393), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteurl] = ACTIONS(12393), + [anon_sym_BSLASHfullcite] = ACTIONS(12393), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12393), + [anon_sym_BSLASHcitealt] = ACTIONS(12393), + [anon_sym_BSLASHcitealp] = ACTIONS(12393), + [anon_sym_BSLASHcitetext] = ACTIONS(12393), + [anon_sym_BSLASHparencite] = ACTIONS(12393), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHParencite] = ACTIONS(12393), + [anon_sym_BSLASHfootcite] = ACTIONS(12393), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12393), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12393), + [anon_sym_BSLASHtextcite] = ACTIONS(12393), + [anon_sym_BSLASHTextcite] = ACTIONS(12393), + [anon_sym_BSLASHsmartcite] = ACTIONS(12393), + [anon_sym_BSLASHSmartcite] = ACTIONS(12393), + [anon_sym_BSLASHsupercite] = ACTIONS(12393), + [anon_sym_BSLASHautocite] = ACTIONS(12393), + [anon_sym_BSLASHAutocite] = ACTIONS(12393), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHvolcite] = ACTIONS(12393), + [anon_sym_BSLASHVolcite] = ACTIONS(12393), + [anon_sym_BSLASHpvolcite] = ACTIONS(12393), + [anon_sym_BSLASHPvolcite] = ACTIONS(12393), + [anon_sym_BSLASHfvolcite] = ACTIONS(12393), + [anon_sym_BSLASHftvolcite] = ACTIONS(12393), + [anon_sym_BSLASHsvolcite] = ACTIONS(12393), + [anon_sym_BSLASHSvolcite] = ACTIONS(12393), + [anon_sym_BSLASHtvolcite] = ACTIONS(12393), + [anon_sym_BSLASHTvolcite] = ACTIONS(12393), + [anon_sym_BSLASHavolcite] = ACTIONS(12393), + [anon_sym_BSLASHAvolcite] = ACTIONS(12393), + [anon_sym_BSLASHnotecite] = ACTIONS(12393), + [anon_sym_BSLASHpnotecite] = ACTIONS(12393), + [anon_sym_BSLASHPnotecite] = ACTIONS(12393), + [anon_sym_BSLASHfnotecite] = ACTIONS(12393), + [anon_sym_BSLASHusepackage] = ACTIONS(12393), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12393), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12393), + [anon_sym_BSLASHinclude] = ACTIONS(12393), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12393), + [anon_sym_BSLASHinput] = ACTIONS(12393), + [anon_sym_BSLASHsubfile] = ACTIONS(12393), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12393), + [anon_sym_BSLASHbibliography] = ACTIONS(12393), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12393), + [anon_sym_BSLASHincludesvg] = ACTIONS(12393), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12393), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12393), + [anon_sym_BSLASHimport] = ACTIONS(12393), + [anon_sym_BSLASHsubimport] = ACTIONS(12393), + [anon_sym_BSLASHinputfrom] = ACTIONS(12393), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12393), + [anon_sym_BSLASHincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHlabel] = ACTIONS(12393), + [anon_sym_BSLASHref] = ACTIONS(12393), + [anon_sym_BSLASHvref] = ACTIONS(12393), + [anon_sym_BSLASHVref] = ACTIONS(12393), + [anon_sym_BSLASHautoref] = ACTIONS(12393), + [anon_sym_BSLASHpageref] = ACTIONS(12393), + [anon_sym_BSLASHcref] = ACTIONS(12393), + [anon_sym_BSLASHCref] = ACTIONS(12393), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnameCref] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHlabelcref] = ACTIONS(12393), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12393), + [anon_sym_BSLASHeqref] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange] = ACTIONS(12393), + [anon_sym_BSLASHCrefrange] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewlabel] = ACTIONS(12393), + [anon_sym_BSLASHnewcommand] = ACTIONS(12393), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12393), + [anon_sym_BSLASHgls] = ACTIONS(12393), + [anon_sym_BSLASHGls] = ACTIONS(12393), + [anon_sym_BSLASHGLS] = ACTIONS(12393), + [anon_sym_BSLASHglspl] = ACTIONS(12393), + [anon_sym_BSLASHGlspl] = ACTIONS(12393), + [anon_sym_BSLASHGLSpl] = ACTIONS(12393), + [anon_sym_BSLASHglsdisp] = ACTIONS(12393), + [anon_sym_BSLASHglslink] = ACTIONS(12393), + [anon_sym_BSLASHglstext] = ACTIONS(12393), + [anon_sym_BSLASHGlstext] = ACTIONS(12393), + [anon_sym_BSLASHGLStext] = ACTIONS(12393), + [anon_sym_BSLASHglsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12393), + [anon_sym_BSLASHglsplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSplural] = ACTIONS(12393), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHglsname] = ACTIONS(12393), + [anon_sym_BSLASHGlsname] = ACTIONS(12393), + [anon_sym_BSLASHGLSname] = ACTIONS(12393), + [anon_sym_BSLASHglssymbol] = ACTIONS(12393), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12393), + [anon_sym_BSLASHglsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12393), + [anon_sym_BSLASHglsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12393), + [anon_sym_BSLASHglsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12393), + [anon_sym_BSLASHglsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12393), + [anon_sym_BSLASHglsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12393), + [anon_sym_BSLASHnewacronym] = ACTIONS(12393), + [anon_sym_BSLASHacrshort] = ACTIONS(12393), + [anon_sym_BSLASHAcrshort] = ACTIONS(12393), + [anon_sym_BSLASHACRshort] = ACTIONS(12393), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12393), + [anon_sym_BSLASHacrlong] = ACTIONS(12393), + [anon_sym_BSLASHAcrlong] = ACTIONS(12393), + [anon_sym_BSLASHACRlong] = ACTIONS(12393), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12393), + [anon_sym_BSLASHacrfull] = ACTIONS(12393), + [anon_sym_BSLASHAcrfull] = ACTIONS(12393), + [anon_sym_BSLASHACRfull] = ACTIONS(12393), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12393), + [anon_sym_BSLASHacs] = ACTIONS(12393), + [anon_sym_BSLASHAcs] = ACTIONS(12393), + [anon_sym_BSLASHacsp] = ACTIONS(12393), + [anon_sym_BSLASHAcsp] = ACTIONS(12393), + [anon_sym_BSLASHacl] = ACTIONS(12393), + [anon_sym_BSLASHAcl] = ACTIONS(12393), + [anon_sym_BSLASHaclp] = ACTIONS(12393), + [anon_sym_BSLASHAclp] = ACTIONS(12393), + [anon_sym_BSLASHacf] = ACTIONS(12393), + [anon_sym_BSLASHAcf] = ACTIONS(12393), + [anon_sym_BSLASHacfp] = ACTIONS(12393), + [anon_sym_BSLASHAcfp] = ACTIONS(12393), + [anon_sym_BSLASHac] = ACTIONS(12393), + [anon_sym_BSLASHAc] = ACTIONS(12393), + [anon_sym_BSLASHacp] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12393), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12393), + [anon_sym_BSLASHcolor] = ACTIONS(12393), + [anon_sym_BSLASHcolorbox] = ACTIONS(12393), + [anon_sym_BSLASHtextcolor] = ACTIONS(12393), + [anon_sym_BSLASHpagecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12393), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12393), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12393), + }, + [1295] = { + [sym_generic_command_name] = ACTIONS(12397), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12397), + [aux_sym_subsubsection_token1] = ACTIONS(12397), + [aux_sym_paragraph_token1] = ACTIONS(12397), + [aux_sym_subparagraph_token1] = ACTIONS(12397), + [anon_sym_BSLASHitem] = ACTIONS(12397), + [anon_sym_LBRACK] = ACTIONS(12395), + [anon_sym_RBRACK] = ACTIONS(12395), + [anon_sym_LBRACE] = ACTIONS(12395), + [anon_sym_RBRACE] = ACTIONS(12395), + [anon_sym_LPAREN] = ACTIONS(12395), + [anon_sym_COMMA] = ACTIONS(12395), + [anon_sym_EQ] = ACTIONS(12395), + [sym_word] = ACTIONS(12395), + [sym_param] = ACTIONS(12395), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12395), + [anon_sym_DOLLAR] = ACTIONS(12397), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12395), + [anon_sym_BSLASHbegin] = ACTIONS(12397), + [anon_sym_BSLASHcaption] = ACTIONS(12397), + [anon_sym_BSLASHcite] = ACTIONS(12397), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCite] = ACTIONS(12397), + [anon_sym_BSLASHnocite] = ACTIONS(12397), + [anon_sym_BSLASHcitet] = ACTIONS(12397), + [anon_sym_BSLASHcitep] = ACTIONS(12397), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteauthor] = ACTIONS(12397), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12397), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitetitle] = ACTIONS(12397), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteyear] = ACTIONS(12397), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitedate] = ACTIONS(12397), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteurl] = ACTIONS(12397), + [anon_sym_BSLASHfullcite] = ACTIONS(12397), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12397), + [anon_sym_BSLASHcitealt] = ACTIONS(12397), + [anon_sym_BSLASHcitealp] = ACTIONS(12397), + [anon_sym_BSLASHcitetext] = ACTIONS(12397), + [anon_sym_BSLASHparencite] = ACTIONS(12397), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHParencite] = ACTIONS(12397), + [anon_sym_BSLASHfootcite] = ACTIONS(12397), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12397), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12397), + [anon_sym_BSLASHtextcite] = ACTIONS(12397), + [anon_sym_BSLASHTextcite] = ACTIONS(12397), + [anon_sym_BSLASHsmartcite] = ACTIONS(12397), + [anon_sym_BSLASHSmartcite] = ACTIONS(12397), + [anon_sym_BSLASHsupercite] = ACTIONS(12397), + [anon_sym_BSLASHautocite] = ACTIONS(12397), + [anon_sym_BSLASHAutocite] = ACTIONS(12397), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHvolcite] = ACTIONS(12397), + [anon_sym_BSLASHVolcite] = ACTIONS(12397), + [anon_sym_BSLASHpvolcite] = ACTIONS(12397), + [anon_sym_BSLASHPvolcite] = ACTIONS(12397), + [anon_sym_BSLASHfvolcite] = ACTIONS(12397), + [anon_sym_BSLASHftvolcite] = ACTIONS(12397), + [anon_sym_BSLASHsvolcite] = ACTIONS(12397), + [anon_sym_BSLASHSvolcite] = ACTIONS(12397), + [anon_sym_BSLASHtvolcite] = ACTIONS(12397), + [anon_sym_BSLASHTvolcite] = ACTIONS(12397), + [anon_sym_BSLASHavolcite] = ACTIONS(12397), + [anon_sym_BSLASHAvolcite] = ACTIONS(12397), + [anon_sym_BSLASHnotecite] = ACTIONS(12397), + [anon_sym_BSLASHpnotecite] = ACTIONS(12397), + [anon_sym_BSLASHPnotecite] = ACTIONS(12397), + [anon_sym_BSLASHfnotecite] = ACTIONS(12397), + [anon_sym_BSLASHusepackage] = ACTIONS(12397), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12397), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12397), + [anon_sym_BSLASHinclude] = ACTIONS(12397), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12397), + [anon_sym_BSLASHinput] = ACTIONS(12397), + [anon_sym_BSLASHsubfile] = ACTIONS(12397), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12397), + [anon_sym_BSLASHbibliography] = ACTIONS(12397), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12397), + [anon_sym_BSLASHincludesvg] = ACTIONS(12397), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12397), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12397), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12397), + [anon_sym_BSLASHimport] = ACTIONS(12397), + [anon_sym_BSLASHsubimport] = ACTIONS(12397), + [anon_sym_BSLASHinputfrom] = ACTIONS(12397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12397), + [anon_sym_BSLASHincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHlabel] = ACTIONS(12397), + [anon_sym_BSLASHref] = ACTIONS(12397), + [anon_sym_BSLASHvref] = ACTIONS(12397), + [anon_sym_BSLASHVref] = ACTIONS(12397), + [anon_sym_BSLASHautoref] = ACTIONS(12397), + [anon_sym_BSLASHpageref] = ACTIONS(12397), + [anon_sym_BSLASHcref] = ACTIONS(12397), + [anon_sym_BSLASHCref] = ACTIONS(12397), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnameCref] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHlabelcref] = ACTIONS(12397), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12397), + [anon_sym_BSLASHeqref] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange] = ACTIONS(12397), + [anon_sym_BSLASHCrefrange] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewlabel] = ACTIONS(12397), + [anon_sym_BSLASHnewcommand] = ACTIONS(12397), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12397), + [anon_sym_BSLASHgls] = ACTIONS(12397), + [anon_sym_BSLASHGls] = ACTIONS(12397), + [anon_sym_BSLASHGLS] = ACTIONS(12397), + [anon_sym_BSLASHglspl] = ACTIONS(12397), + [anon_sym_BSLASHGlspl] = ACTIONS(12397), + [anon_sym_BSLASHGLSpl] = ACTIONS(12397), + [anon_sym_BSLASHglsdisp] = ACTIONS(12397), + [anon_sym_BSLASHglslink] = ACTIONS(12397), + [anon_sym_BSLASHglstext] = ACTIONS(12397), + [anon_sym_BSLASHGlstext] = ACTIONS(12397), + [anon_sym_BSLASHGLStext] = ACTIONS(12397), + [anon_sym_BSLASHglsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12397), + [anon_sym_BSLASHglsplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSplural] = ACTIONS(12397), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHglsname] = ACTIONS(12397), + [anon_sym_BSLASHGlsname] = ACTIONS(12397), + [anon_sym_BSLASHGLSname] = ACTIONS(12397), + [anon_sym_BSLASHglssymbol] = ACTIONS(12397), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12397), + [anon_sym_BSLASHglsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12397), + [anon_sym_BSLASHglsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12397), + [anon_sym_BSLASHglsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12397), + [anon_sym_BSLASHglsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12397), + [anon_sym_BSLASHglsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12397), + [anon_sym_BSLASHnewacronym] = ACTIONS(12397), + [anon_sym_BSLASHacrshort] = ACTIONS(12397), + [anon_sym_BSLASHAcrshort] = ACTIONS(12397), + [anon_sym_BSLASHACRshort] = ACTIONS(12397), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12397), + [anon_sym_BSLASHacrlong] = ACTIONS(12397), + [anon_sym_BSLASHAcrlong] = ACTIONS(12397), + [anon_sym_BSLASHACRlong] = ACTIONS(12397), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12397), + [anon_sym_BSLASHacrfull] = ACTIONS(12397), + [anon_sym_BSLASHAcrfull] = ACTIONS(12397), + [anon_sym_BSLASHACRfull] = ACTIONS(12397), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12397), + [anon_sym_BSLASHacs] = ACTIONS(12397), + [anon_sym_BSLASHAcs] = ACTIONS(12397), + [anon_sym_BSLASHacsp] = ACTIONS(12397), + [anon_sym_BSLASHAcsp] = ACTIONS(12397), + [anon_sym_BSLASHacl] = ACTIONS(12397), + [anon_sym_BSLASHAcl] = ACTIONS(12397), + [anon_sym_BSLASHaclp] = ACTIONS(12397), + [anon_sym_BSLASHAclp] = ACTIONS(12397), + [anon_sym_BSLASHacf] = ACTIONS(12397), + [anon_sym_BSLASHAcf] = ACTIONS(12397), + [anon_sym_BSLASHacfp] = ACTIONS(12397), + [anon_sym_BSLASHAcfp] = ACTIONS(12397), + [anon_sym_BSLASHac] = ACTIONS(12397), + [anon_sym_BSLASHAc] = ACTIONS(12397), + [anon_sym_BSLASHacp] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12397), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12397), + [anon_sym_BSLASHcolor] = ACTIONS(12397), + [anon_sym_BSLASHcolorbox] = ACTIONS(12397), + [anon_sym_BSLASHtextcolor] = ACTIONS(12397), + [anon_sym_BSLASHpagecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12397), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12397), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12397), + }, + [1296] = { + [sym_generic_command_name] = ACTIONS(12401), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12401), + [aux_sym_subsubsection_token1] = ACTIONS(12401), + [aux_sym_paragraph_token1] = ACTIONS(12401), + [aux_sym_subparagraph_token1] = ACTIONS(12401), + [anon_sym_BSLASHitem] = ACTIONS(12401), + [anon_sym_LBRACK] = ACTIONS(12399), + [anon_sym_RBRACK] = ACTIONS(12399), + [anon_sym_LBRACE] = ACTIONS(12399), + [anon_sym_RBRACE] = ACTIONS(12399), + [anon_sym_LPAREN] = ACTIONS(12399), + [anon_sym_COMMA] = ACTIONS(12399), + [anon_sym_EQ] = ACTIONS(12399), + [sym_word] = ACTIONS(12399), + [sym_param] = ACTIONS(12399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12399), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12399), + [anon_sym_DOLLAR] = ACTIONS(12401), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12399), + [anon_sym_BSLASHbegin] = ACTIONS(12401), + [anon_sym_BSLASHcaption] = ACTIONS(12401), + [anon_sym_BSLASHcite] = ACTIONS(12401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCite] = ACTIONS(12401), + [anon_sym_BSLASHnocite] = ACTIONS(12401), + [anon_sym_BSLASHcitet] = ACTIONS(12401), + [anon_sym_BSLASHcitep] = ACTIONS(12401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteauthor] = ACTIONS(12401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitetitle] = ACTIONS(12401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteyear] = ACTIONS(12401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitedate] = ACTIONS(12401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteurl] = ACTIONS(12401), + [anon_sym_BSLASHfullcite] = ACTIONS(12401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12401), + [anon_sym_BSLASHcitealt] = ACTIONS(12401), + [anon_sym_BSLASHcitealp] = ACTIONS(12401), + [anon_sym_BSLASHcitetext] = ACTIONS(12401), + [anon_sym_BSLASHparencite] = ACTIONS(12401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHParencite] = ACTIONS(12401), + [anon_sym_BSLASHfootcite] = ACTIONS(12401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12401), + [anon_sym_BSLASHtextcite] = ACTIONS(12401), + [anon_sym_BSLASHTextcite] = ACTIONS(12401), + [anon_sym_BSLASHsmartcite] = ACTIONS(12401), + [anon_sym_BSLASHSmartcite] = ACTIONS(12401), + [anon_sym_BSLASHsupercite] = ACTIONS(12401), + [anon_sym_BSLASHautocite] = ACTIONS(12401), + [anon_sym_BSLASHAutocite] = ACTIONS(12401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHvolcite] = ACTIONS(12401), + [anon_sym_BSLASHVolcite] = ACTIONS(12401), + [anon_sym_BSLASHpvolcite] = ACTIONS(12401), + [anon_sym_BSLASHPvolcite] = ACTIONS(12401), + [anon_sym_BSLASHfvolcite] = ACTIONS(12401), + [anon_sym_BSLASHftvolcite] = ACTIONS(12401), + [anon_sym_BSLASHsvolcite] = ACTIONS(12401), + [anon_sym_BSLASHSvolcite] = ACTIONS(12401), + [anon_sym_BSLASHtvolcite] = ACTIONS(12401), + [anon_sym_BSLASHTvolcite] = ACTIONS(12401), + [anon_sym_BSLASHavolcite] = ACTIONS(12401), + [anon_sym_BSLASHAvolcite] = ACTIONS(12401), + [anon_sym_BSLASHnotecite] = ACTIONS(12401), + [anon_sym_BSLASHpnotecite] = ACTIONS(12401), + [anon_sym_BSLASHPnotecite] = ACTIONS(12401), + [anon_sym_BSLASHfnotecite] = ACTIONS(12401), + [anon_sym_BSLASHusepackage] = ACTIONS(12401), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12401), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12401), + [anon_sym_BSLASHinclude] = ACTIONS(12401), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12401), + [anon_sym_BSLASHinput] = ACTIONS(12401), + [anon_sym_BSLASHsubfile] = ACTIONS(12401), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12401), + [anon_sym_BSLASHbibliography] = ACTIONS(12401), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12401), + [anon_sym_BSLASHincludesvg] = ACTIONS(12401), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12401), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12401), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12401), + [anon_sym_BSLASHimport] = ACTIONS(12401), + [anon_sym_BSLASHsubimport] = ACTIONS(12401), + [anon_sym_BSLASHinputfrom] = ACTIONS(12401), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12401), + [anon_sym_BSLASHincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHlabel] = ACTIONS(12401), + [anon_sym_BSLASHref] = ACTIONS(12401), + [anon_sym_BSLASHvref] = ACTIONS(12401), + [anon_sym_BSLASHVref] = ACTIONS(12401), + [anon_sym_BSLASHautoref] = ACTIONS(12401), + [anon_sym_BSLASHpageref] = ACTIONS(12401), + [anon_sym_BSLASHcref] = ACTIONS(12401), + [anon_sym_BSLASHCref] = ACTIONS(12401), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnameCref] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHlabelcref] = ACTIONS(12401), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12401), + [anon_sym_BSLASHeqref] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange] = ACTIONS(12401), + [anon_sym_BSLASHCrefrange] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewlabel] = ACTIONS(12401), + [anon_sym_BSLASHnewcommand] = ACTIONS(12401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12401), + [anon_sym_BSLASHgls] = ACTIONS(12401), + [anon_sym_BSLASHGls] = ACTIONS(12401), + [anon_sym_BSLASHGLS] = ACTIONS(12401), + [anon_sym_BSLASHglspl] = ACTIONS(12401), + [anon_sym_BSLASHGlspl] = ACTIONS(12401), + [anon_sym_BSLASHGLSpl] = ACTIONS(12401), + [anon_sym_BSLASHglsdisp] = ACTIONS(12401), + [anon_sym_BSLASHglslink] = ACTIONS(12401), + [anon_sym_BSLASHglstext] = ACTIONS(12401), + [anon_sym_BSLASHGlstext] = ACTIONS(12401), + [anon_sym_BSLASHGLStext] = ACTIONS(12401), + [anon_sym_BSLASHglsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12401), + [anon_sym_BSLASHglsplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSplural] = ACTIONS(12401), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHglsname] = ACTIONS(12401), + [anon_sym_BSLASHGlsname] = ACTIONS(12401), + [anon_sym_BSLASHGLSname] = ACTIONS(12401), + [anon_sym_BSLASHglssymbol] = ACTIONS(12401), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12401), + [anon_sym_BSLASHglsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12401), + [anon_sym_BSLASHglsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12401), + [anon_sym_BSLASHglsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12401), + [anon_sym_BSLASHglsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12401), + [anon_sym_BSLASHglsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12401), + [anon_sym_BSLASHnewacronym] = ACTIONS(12401), + [anon_sym_BSLASHacrshort] = ACTIONS(12401), + [anon_sym_BSLASHAcrshort] = ACTIONS(12401), + [anon_sym_BSLASHACRshort] = ACTIONS(12401), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12401), + [anon_sym_BSLASHacrlong] = ACTIONS(12401), + [anon_sym_BSLASHAcrlong] = ACTIONS(12401), + [anon_sym_BSLASHACRlong] = ACTIONS(12401), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12401), + [anon_sym_BSLASHacrfull] = ACTIONS(12401), + [anon_sym_BSLASHAcrfull] = ACTIONS(12401), + [anon_sym_BSLASHACRfull] = ACTIONS(12401), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12401), + [anon_sym_BSLASHacs] = ACTIONS(12401), + [anon_sym_BSLASHAcs] = ACTIONS(12401), + [anon_sym_BSLASHacsp] = ACTIONS(12401), + [anon_sym_BSLASHAcsp] = ACTIONS(12401), + [anon_sym_BSLASHacl] = ACTIONS(12401), + [anon_sym_BSLASHAcl] = ACTIONS(12401), + [anon_sym_BSLASHaclp] = ACTIONS(12401), + [anon_sym_BSLASHAclp] = ACTIONS(12401), + [anon_sym_BSLASHacf] = ACTIONS(12401), + [anon_sym_BSLASHAcf] = ACTIONS(12401), + [anon_sym_BSLASHacfp] = ACTIONS(12401), + [anon_sym_BSLASHAcfp] = ACTIONS(12401), + [anon_sym_BSLASHac] = ACTIONS(12401), + [anon_sym_BSLASHAc] = ACTIONS(12401), + [anon_sym_BSLASHacp] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12401), + [anon_sym_BSLASHcolor] = ACTIONS(12401), + [anon_sym_BSLASHcolorbox] = ACTIONS(12401), + [anon_sym_BSLASHtextcolor] = ACTIONS(12401), + [anon_sym_BSLASHpagecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12401), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12401), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12401), + }, + [1297] = { + [sym_generic_command_name] = ACTIONS(12405), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12405), + [aux_sym_subsubsection_token1] = ACTIONS(12405), + [aux_sym_paragraph_token1] = ACTIONS(12405), + [aux_sym_subparagraph_token1] = ACTIONS(12405), + [anon_sym_BSLASHitem] = ACTIONS(12405), + [anon_sym_LBRACK] = ACTIONS(12403), + [anon_sym_RBRACK] = ACTIONS(12403), + [anon_sym_LBRACE] = ACTIONS(12403), + [anon_sym_RBRACE] = ACTIONS(12403), + [anon_sym_LPAREN] = ACTIONS(12403), + [anon_sym_COMMA] = ACTIONS(12403), + [anon_sym_EQ] = ACTIONS(12403), + [sym_word] = ACTIONS(12403), + [sym_param] = ACTIONS(12403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12403), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12403), + [anon_sym_DOLLAR] = ACTIONS(12405), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12403), + [anon_sym_BSLASHbegin] = ACTIONS(12405), + [anon_sym_BSLASHcaption] = ACTIONS(12405), + [anon_sym_BSLASHcite] = ACTIONS(12405), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCite] = ACTIONS(12405), + [anon_sym_BSLASHnocite] = ACTIONS(12405), + [anon_sym_BSLASHcitet] = ACTIONS(12405), + [anon_sym_BSLASHcitep] = ACTIONS(12405), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteauthor] = ACTIONS(12405), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12405), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitetitle] = ACTIONS(12405), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteyear] = ACTIONS(12405), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitedate] = ACTIONS(12405), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteurl] = ACTIONS(12405), + [anon_sym_BSLASHfullcite] = ACTIONS(12405), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12405), + [anon_sym_BSLASHcitealt] = ACTIONS(12405), + [anon_sym_BSLASHcitealp] = ACTIONS(12405), + [anon_sym_BSLASHcitetext] = ACTIONS(12405), + [anon_sym_BSLASHparencite] = ACTIONS(12405), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHParencite] = ACTIONS(12405), + [anon_sym_BSLASHfootcite] = ACTIONS(12405), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12405), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12405), + [anon_sym_BSLASHtextcite] = ACTIONS(12405), + [anon_sym_BSLASHTextcite] = ACTIONS(12405), + [anon_sym_BSLASHsmartcite] = ACTIONS(12405), + [anon_sym_BSLASHSmartcite] = ACTIONS(12405), + [anon_sym_BSLASHsupercite] = ACTIONS(12405), + [anon_sym_BSLASHautocite] = ACTIONS(12405), + [anon_sym_BSLASHAutocite] = ACTIONS(12405), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHvolcite] = ACTIONS(12405), + [anon_sym_BSLASHVolcite] = ACTIONS(12405), + [anon_sym_BSLASHpvolcite] = ACTIONS(12405), + [anon_sym_BSLASHPvolcite] = ACTIONS(12405), + [anon_sym_BSLASHfvolcite] = ACTIONS(12405), + [anon_sym_BSLASHftvolcite] = ACTIONS(12405), + [anon_sym_BSLASHsvolcite] = ACTIONS(12405), + [anon_sym_BSLASHSvolcite] = ACTIONS(12405), + [anon_sym_BSLASHtvolcite] = ACTIONS(12405), + [anon_sym_BSLASHTvolcite] = ACTIONS(12405), + [anon_sym_BSLASHavolcite] = ACTIONS(12405), + [anon_sym_BSLASHAvolcite] = ACTIONS(12405), + [anon_sym_BSLASHnotecite] = ACTIONS(12405), + [anon_sym_BSLASHpnotecite] = ACTIONS(12405), + [anon_sym_BSLASHPnotecite] = ACTIONS(12405), + [anon_sym_BSLASHfnotecite] = ACTIONS(12405), + [anon_sym_BSLASHusepackage] = ACTIONS(12405), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12405), + [anon_sym_BSLASHinclude] = ACTIONS(12405), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12405), + [anon_sym_BSLASHinput] = ACTIONS(12405), + [anon_sym_BSLASHsubfile] = ACTIONS(12405), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12405), + [anon_sym_BSLASHbibliography] = ACTIONS(12405), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12405), + [anon_sym_BSLASHincludesvg] = ACTIONS(12405), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12405), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12405), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12405), + [anon_sym_BSLASHimport] = ACTIONS(12405), + [anon_sym_BSLASHsubimport] = ACTIONS(12405), + [anon_sym_BSLASHinputfrom] = ACTIONS(12405), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12405), + [anon_sym_BSLASHincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHlabel] = ACTIONS(12405), + [anon_sym_BSLASHref] = ACTIONS(12405), + [anon_sym_BSLASHvref] = ACTIONS(12405), + [anon_sym_BSLASHVref] = ACTIONS(12405), + [anon_sym_BSLASHautoref] = ACTIONS(12405), + [anon_sym_BSLASHpageref] = ACTIONS(12405), + [anon_sym_BSLASHcref] = ACTIONS(12405), + [anon_sym_BSLASHCref] = ACTIONS(12405), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnameCref] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHlabelcref] = ACTIONS(12405), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12405), + [anon_sym_BSLASHeqref] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange] = ACTIONS(12405), + [anon_sym_BSLASHCrefrange] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewlabel] = ACTIONS(12405), + [anon_sym_BSLASHnewcommand] = ACTIONS(12405), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12405), + [anon_sym_BSLASHgls] = ACTIONS(12405), + [anon_sym_BSLASHGls] = ACTIONS(12405), + [anon_sym_BSLASHGLS] = ACTIONS(12405), + [anon_sym_BSLASHglspl] = ACTIONS(12405), + [anon_sym_BSLASHGlspl] = ACTIONS(12405), + [anon_sym_BSLASHGLSpl] = ACTIONS(12405), + [anon_sym_BSLASHglsdisp] = ACTIONS(12405), + [anon_sym_BSLASHglslink] = ACTIONS(12405), + [anon_sym_BSLASHglstext] = ACTIONS(12405), + [anon_sym_BSLASHGlstext] = ACTIONS(12405), + [anon_sym_BSLASHGLStext] = ACTIONS(12405), + [anon_sym_BSLASHglsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12405), + [anon_sym_BSLASHglsplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSplural] = ACTIONS(12405), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHglsname] = ACTIONS(12405), + [anon_sym_BSLASHGlsname] = ACTIONS(12405), + [anon_sym_BSLASHGLSname] = ACTIONS(12405), + [anon_sym_BSLASHglssymbol] = ACTIONS(12405), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12405), + [anon_sym_BSLASHglsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12405), + [anon_sym_BSLASHglsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12405), + [anon_sym_BSLASHglsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12405), + [anon_sym_BSLASHglsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12405), + [anon_sym_BSLASHglsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12405), + [anon_sym_BSLASHnewacronym] = ACTIONS(12405), + [anon_sym_BSLASHacrshort] = ACTIONS(12405), + [anon_sym_BSLASHAcrshort] = ACTIONS(12405), + [anon_sym_BSLASHACRshort] = ACTIONS(12405), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12405), + [anon_sym_BSLASHacrlong] = ACTIONS(12405), + [anon_sym_BSLASHAcrlong] = ACTIONS(12405), + [anon_sym_BSLASHACRlong] = ACTIONS(12405), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12405), + [anon_sym_BSLASHacrfull] = ACTIONS(12405), + [anon_sym_BSLASHAcrfull] = ACTIONS(12405), + [anon_sym_BSLASHACRfull] = ACTIONS(12405), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12405), + [anon_sym_BSLASHacs] = ACTIONS(12405), + [anon_sym_BSLASHAcs] = ACTIONS(12405), + [anon_sym_BSLASHacsp] = ACTIONS(12405), + [anon_sym_BSLASHAcsp] = ACTIONS(12405), + [anon_sym_BSLASHacl] = ACTIONS(12405), + [anon_sym_BSLASHAcl] = ACTIONS(12405), + [anon_sym_BSLASHaclp] = ACTIONS(12405), + [anon_sym_BSLASHAclp] = ACTIONS(12405), + [anon_sym_BSLASHacf] = ACTIONS(12405), + [anon_sym_BSLASHAcf] = ACTIONS(12405), + [anon_sym_BSLASHacfp] = ACTIONS(12405), + [anon_sym_BSLASHAcfp] = ACTIONS(12405), + [anon_sym_BSLASHac] = ACTIONS(12405), + [anon_sym_BSLASHAc] = ACTIONS(12405), + [anon_sym_BSLASHacp] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12405), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12405), + [anon_sym_BSLASHcolor] = ACTIONS(12405), + [anon_sym_BSLASHcolorbox] = ACTIONS(12405), + [anon_sym_BSLASHtextcolor] = ACTIONS(12405), + [anon_sym_BSLASHpagecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12405), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12405), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12405), + }, + [1298] = { + [sym_generic_command_name] = ACTIONS(12409), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12409), + [aux_sym_subsubsection_token1] = ACTIONS(12409), + [aux_sym_paragraph_token1] = ACTIONS(12409), + [aux_sym_subparagraph_token1] = ACTIONS(12409), + [anon_sym_BSLASHitem] = ACTIONS(12409), + [anon_sym_LBRACK] = ACTIONS(12407), + [anon_sym_RBRACK] = ACTIONS(12407), + [anon_sym_LBRACE] = ACTIONS(12407), + [anon_sym_RBRACE] = ACTIONS(12407), + [anon_sym_LPAREN] = ACTIONS(12407), + [anon_sym_COMMA] = ACTIONS(12407), + [anon_sym_EQ] = ACTIONS(12407), + [sym_word] = ACTIONS(12407), + [sym_param] = ACTIONS(12407), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12407), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12407), + [anon_sym_DOLLAR] = ACTIONS(12409), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12407), + [anon_sym_BSLASHbegin] = ACTIONS(12409), + [anon_sym_BSLASHcaption] = ACTIONS(12409), + [anon_sym_BSLASHcite] = ACTIONS(12409), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCite] = ACTIONS(12409), + [anon_sym_BSLASHnocite] = ACTIONS(12409), + [anon_sym_BSLASHcitet] = ACTIONS(12409), + [anon_sym_BSLASHcitep] = ACTIONS(12409), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteauthor] = ACTIONS(12409), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12409), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitetitle] = ACTIONS(12409), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteyear] = ACTIONS(12409), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitedate] = ACTIONS(12409), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteurl] = ACTIONS(12409), + [anon_sym_BSLASHfullcite] = ACTIONS(12409), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12409), + [anon_sym_BSLASHcitealt] = ACTIONS(12409), + [anon_sym_BSLASHcitealp] = ACTIONS(12409), + [anon_sym_BSLASHcitetext] = ACTIONS(12409), + [anon_sym_BSLASHparencite] = ACTIONS(12409), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHParencite] = ACTIONS(12409), + [anon_sym_BSLASHfootcite] = ACTIONS(12409), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12409), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12409), + [anon_sym_BSLASHtextcite] = ACTIONS(12409), + [anon_sym_BSLASHTextcite] = ACTIONS(12409), + [anon_sym_BSLASHsmartcite] = ACTIONS(12409), + [anon_sym_BSLASHSmartcite] = ACTIONS(12409), + [anon_sym_BSLASHsupercite] = ACTIONS(12409), + [anon_sym_BSLASHautocite] = ACTIONS(12409), + [anon_sym_BSLASHAutocite] = ACTIONS(12409), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHvolcite] = ACTIONS(12409), + [anon_sym_BSLASHVolcite] = ACTIONS(12409), + [anon_sym_BSLASHpvolcite] = ACTIONS(12409), + [anon_sym_BSLASHPvolcite] = ACTIONS(12409), + [anon_sym_BSLASHfvolcite] = ACTIONS(12409), + [anon_sym_BSLASHftvolcite] = ACTIONS(12409), + [anon_sym_BSLASHsvolcite] = ACTIONS(12409), + [anon_sym_BSLASHSvolcite] = ACTIONS(12409), + [anon_sym_BSLASHtvolcite] = ACTIONS(12409), + [anon_sym_BSLASHTvolcite] = ACTIONS(12409), + [anon_sym_BSLASHavolcite] = ACTIONS(12409), + [anon_sym_BSLASHAvolcite] = ACTIONS(12409), + [anon_sym_BSLASHnotecite] = ACTIONS(12409), + [anon_sym_BSLASHpnotecite] = ACTIONS(12409), + [anon_sym_BSLASHPnotecite] = ACTIONS(12409), + [anon_sym_BSLASHfnotecite] = ACTIONS(12409), + [anon_sym_BSLASHusepackage] = ACTIONS(12409), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12409), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12409), + [anon_sym_BSLASHinclude] = ACTIONS(12409), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12409), + [anon_sym_BSLASHinput] = ACTIONS(12409), + [anon_sym_BSLASHsubfile] = ACTIONS(12409), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12409), + [anon_sym_BSLASHbibliography] = ACTIONS(12409), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12409), + [anon_sym_BSLASHincludesvg] = ACTIONS(12409), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12409), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12409), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12409), + [anon_sym_BSLASHimport] = ACTIONS(12409), + [anon_sym_BSLASHsubimport] = ACTIONS(12409), + [anon_sym_BSLASHinputfrom] = ACTIONS(12409), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12409), + [anon_sym_BSLASHincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHlabel] = ACTIONS(12409), + [anon_sym_BSLASHref] = ACTIONS(12409), + [anon_sym_BSLASHvref] = ACTIONS(12409), + [anon_sym_BSLASHVref] = ACTIONS(12409), + [anon_sym_BSLASHautoref] = ACTIONS(12409), + [anon_sym_BSLASHpageref] = ACTIONS(12409), + [anon_sym_BSLASHcref] = ACTIONS(12409), + [anon_sym_BSLASHCref] = ACTIONS(12409), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnameCref] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHlabelcref] = ACTIONS(12409), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12409), + [anon_sym_BSLASHeqref] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange] = ACTIONS(12409), + [anon_sym_BSLASHCrefrange] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewlabel] = ACTIONS(12409), + [anon_sym_BSLASHnewcommand] = ACTIONS(12409), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12409), + [anon_sym_BSLASHgls] = ACTIONS(12409), + [anon_sym_BSLASHGls] = ACTIONS(12409), + [anon_sym_BSLASHGLS] = ACTIONS(12409), + [anon_sym_BSLASHglspl] = ACTIONS(12409), + [anon_sym_BSLASHGlspl] = ACTIONS(12409), + [anon_sym_BSLASHGLSpl] = ACTIONS(12409), + [anon_sym_BSLASHglsdisp] = ACTIONS(12409), + [anon_sym_BSLASHglslink] = ACTIONS(12409), + [anon_sym_BSLASHglstext] = ACTIONS(12409), + [anon_sym_BSLASHGlstext] = ACTIONS(12409), + [anon_sym_BSLASHGLStext] = ACTIONS(12409), + [anon_sym_BSLASHglsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12409), + [anon_sym_BSLASHglsplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSplural] = ACTIONS(12409), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHglsname] = ACTIONS(12409), + [anon_sym_BSLASHGlsname] = ACTIONS(12409), + [anon_sym_BSLASHGLSname] = ACTIONS(12409), + [anon_sym_BSLASHglssymbol] = ACTIONS(12409), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12409), + [anon_sym_BSLASHglsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12409), + [anon_sym_BSLASHglsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12409), + [anon_sym_BSLASHglsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12409), + [anon_sym_BSLASHglsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12409), + [anon_sym_BSLASHglsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12409), + [anon_sym_BSLASHnewacronym] = ACTIONS(12409), + [anon_sym_BSLASHacrshort] = ACTIONS(12409), + [anon_sym_BSLASHAcrshort] = ACTIONS(12409), + [anon_sym_BSLASHACRshort] = ACTIONS(12409), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12409), + [anon_sym_BSLASHacrlong] = ACTIONS(12409), + [anon_sym_BSLASHAcrlong] = ACTIONS(12409), + [anon_sym_BSLASHACRlong] = ACTIONS(12409), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12409), + [anon_sym_BSLASHacrfull] = ACTIONS(12409), + [anon_sym_BSLASHAcrfull] = ACTIONS(12409), + [anon_sym_BSLASHACRfull] = ACTIONS(12409), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12409), + [anon_sym_BSLASHacs] = ACTIONS(12409), + [anon_sym_BSLASHAcs] = ACTIONS(12409), + [anon_sym_BSLASHacsp] = ACTIONS(12409), + [anon_sym_BSLASHAcsp] = ACTIONS(12409), + [anon_sym_BSLASHacl] = ACTIONS(12409), + [anon_sym_BSLASHAcl] = ACTIONS(12409), + [anon_sym_BSLASHaclp] = ACTIONS(12409), + [anon_sym_BSLASHAclp] = ACTIONS(12409), + [anon_sym_BSLASHacf] = ACTIONS(12409), + [anon_sym_BSLASHAcf] = ACTIONS(12409), + [anon_sym_BSLASHacfp] = ACTIONS(12409), + [anon_sym_BSLASHAcfp] = ACTIONS(12409), + [anon_sym_BSLASHac] = ACTIONS(12409), + [anon_sym_BSLASHAc] = ACTIONS(12409), + [anon_sym_BSLASHacp] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12409), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12409), + [anon_sym_BSLASHcolor] = ACTIONS(12409), + [anon_sym_BSLASHcolorbox] = ACTIONS(12409), + [anon_sym_BSLASHtextcolor] = ACTIONS(12409), + [anon_sym_BSLASHpagecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12409), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12409), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12409), + }, + [1299] = { + [sym_generic_command_name] = ACTIONS(12413), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12413), + [aux_sym_subsubsection_token1] = ACTIONS(12413), + [aux_sym_paragraph_token1] = ACTIONS(12413), + [aux_sym_subparagraph_token1] = ACTIONS(12413), + [anon_sym_BSLASHitem] = ACTIONS(12413), + [anon_sym_LBRACK] = ACTIONS(12411), + [anon_sym_RBRACK] = ACTIONS(12411), + [anon_sym_LBRACE] = ACTIONS(12411), + [anon_sym_RBRACE] = ACTIONS(12411), + [anon_sym_LPAREN] = ACTIONS(12411), + [anon_sym_COMMA] = ACTIONS(12411), + [anon_sym_EQ] = ACTIONS(12411), + [sym_word] = ACTIONS(12411), + [sym_param] = ACTIONS(12411), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12411), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12411), + [anon_sym_DOLLAR] = ACTIONS(12413), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12411), + [anon_sym_BSLASHbegin] = ACTIONS(12413), + [anon_sym_BSLASHcaption] = ACTIONS(12413), + [anon_sym_BSLASHcite] = ACTIONS(12413), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCite] = ACTIONS(12413), + [anon_sym_BSLASHnocite] = ACTIONS(12413), + [anon_sym_BSLASHcitet] = ACTIONS(12413), + [anon_sym_BSLASHcitep] = ACTIONS(12413), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteauthor] = ACTIONS(12413), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12413), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitetitle] = ACTIONS(12413), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteyear] = ACTIONS(12413), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitedate] = ACTIONS(12413), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteurl] = ACTIONS(12413), + [anon_sym_BSLASHfullcite] = ACTIONS(12413), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12413), + [anon_sym_BSLASHcitealt] = ACTIONS(12413), + [anon_sym_BSLASHcitealp] = ACTIONS(12413), + [anon_sym_BSLASHcitetext] = ACTIONS(12413), + [anon_sym_BSLASHparencite] = ACTIONS(12413), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHParencite] = ACTIONS(12413), + [anon_sym_BSLASHfootcite] = ACTIONS(12413), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12413), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12413), + [anon_sym_BSLASHtextcite] = ACTIONS(12413), + [anon_sym_BSLASHTextcite] = ACTIONS(12413), + [anon_sym_BSLASHsmartcite] = ACTIONS(12413), + [anon_sym_BSLASHSmartcite] = ACTIONS(12413), + [anon_sym_BSLASHsupercite] = ACTIONS(12413), + [anon_sym_BSLASHautocite] = ACTIONS(12413), + [anon_sym_BSLASHAutocite] = ACTIONS(12413), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHvolcite] = ACTIONS(12413), + [anon_sym_BSLASHVolcite] = ACTIONS(12413), + [anon_sym_BSLASHpvolcite] = ACTIONS(12413), + [anon_sym_BSLASHPvolcite] = ACTIONS(12413), + [anon_sym_BSLASHfvolcite] = ACTIONS(12413), + [anon_sym_BSLASHftvolcite] = ACTIONS(12413), + [anon_sym_BSLASHsvolcite] = ACTIONS(12413), + [anon_sym_BSLASHSvolcite] = ACTIONS(12413), + [anon_sym_BSLASHtvolcite] = ACTIONS(12413), + [anon_sym_BSLASHTvolcite] = ACTIONS(12413), + [anon_sym_BSLASHavolcite] = ACTIONS(12413), + [anon_sym_BSLASHAvolcite] = ACTIONS(12413), + [anon_sym_BSLASHnotecite] = ACTIONS(12413), + [anon_sym_BSLASHpnotecite] = ACTIONS(12413), + [anon_sym_BSLASHPnotecite] = ACTIONS(12413), + [anon_sym_BSLASHfnotecite] = ACTIONS(12413), + [anon_sym_BSLASHusepackage] = ACTIONS(12413), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12413), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12413), + [anon_sym_BSLASHinclude] = ACTIONS(12413), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12413), + [anon_sym_BSLASHinput] = ACTIONS(12413), + [anon_sym_BSLASHsubfile] = ACTIONS(12413), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12413), + [anon_sym_BSLASHbibliography] = ACTIONS(12413), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12413), + [anon_sym_BSLASHincludesvg] = ACTIONS(12413), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12413), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12413), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12413), + [anon_sym_BSLASHimport] = ACTIONS(12413), + [anon_sym_BSLASHsubimport] = ACTIONS(12413), + [anon_sym_BSLASHinputfrom] = ACTIONS(12413), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12413), + [anon_sym_BSLASHincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHlabel] = ACTIONS(12413), + [anon_sym_BSLASHref] = ACTIONS(12413), + [anon_sym_BSLASHvref] = ACTIONS(12413), + [anon_sym_BSLASHVref] = ACTIONS(12413), + [anon_sym_BSLASHautoref] = ACTIONS(12413), + [anon_sym_BSLASHpageref] = ACTIONS(12413), + [anon_sym_BSLASHcref] = ACTIONS(12413), + [anon_sym_BSLASHCref] = ACTIONS(12413), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnameCref] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHlabelcref] = ACTIONS(12413), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12413), + [anon_sym_BSLASHeqref] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange] = ACTIONS(12413), + [anon_sym_BSLASHCrefrange] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewlabel] = ACTIONS(12413), + [anon_sym_BSLASHnewcommand] = ACTIONS(12413), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12413), + [anon_sym_BSLASHgls] = ACTIONS(12413), + [anon_sym_BSLASHGls] = ACTIONS(12413), + [anon_sym_BSLASHGLS] = ACTIONS(12413), + [anon_sym_BSLASHglspl] = ACTIONS(12413), + [anon_sym_BSLASHGlspl] = ACTIONS(12413), + [anon_sym_BSLASHGLSpl] = ACTIONS(12413), + [anon_sym_BSLASHglsdisp] = ACTIONS(12413), + [anon_sym_BSLASHglslink] = ACTIONS(12413), + [anon_sym_BSLASHglstext] = ACTIONS(12413), + [anon_sym_BSLASHGlstext] = ACTIONS(12413), + [anon_sym_BSLASHGLStext] = ACTIONS(12413), + [anon_sym_BSLASHglsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12413), + [anon_sym_BSLASHglsplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSplural] = ACTIONS(12413), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHglsname] = ACTIONS(12413), + [anon_sym_BSLASHGlsname] = ACTIONS(12413), + [anon_sym_BSLASHGLSname] = ACTIONS(12413), + [anon_sym_BSLASHglssymbol] = ACTIONS(12413), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12413), + [anon_sym_BSLASHglsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12413), + [anon_sym_BSLASHglsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12413), + [anon_sym_BSLASHglsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12413), + [anon_sym_BSLASHglsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12413), + [anon_sym_BSLASHglsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12413), + [anon_sym_BSLASHnewacronym] = ACTIONS(12413), + [anon_sym_BSLASHacrshort] = ACTIONS(12413), + [anon_sym_BSLASHAcrshort] = ACTIONS(12413), + [anon_sym_BSLASHACRshort] = ACTIONS(12413), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12413), + [anon_sym_BSLASHacrlong] = ACTIONS(12413), + [anon_sym_BSLASHAcrlong] = ACTIONS(12413), + [anon_sym_BSLASHACRlong] = ACTIONS(12413), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12413), + [anon_sym_BSLASHacrfull] = ACTIONS(12413), + [anon_sym_BSLASHAcrfull] = ACTIONS(12413), + [anon_sym_BSLASHACRfull] = ACTIONS(12413), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12413), + [anon_sym_BSLASHacs] = ACTIONS(12413), + [anon_sym_BSLASHAcs] = ACTIONS(12413), + [anon_sym_BSLASHacsp] = ACTIONS(12413), + [anon_sym_BSLASHAcsp] = ACTIONS(12413), + [anon_sym_BSLASHacl] = ACTIONS(12413), + [anon_sym_BSLASHAcl] = ACTIONS(12413), + [anon_sym_BSLASHaclp] = ACTIONS(12413), + [anon_sym_BSLASHAclp] = ACTIONS(12413), + [anon_sym_BSLASHacf] = ACTIONS(12413), + [anon_sym_BSLASHAcf] = ACTIONS(12413), + [anon_sym_BSLASHacfp] = ACTIONS(12413), + [anon_sym_BSLASHAcfp] = ACTIONS(12413), + [anon_sym_BSLASHac] = ACTIONS(12413), + [anon_sym_BSLASHAc] = ACTIONS(12413), + [anon_sym_BSLASHacp] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12413), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12413), + [anon_sym_BSLASHcolor] = ACTIONS(12413), + [anon_sym_BSLASHcolorbox] = ACTIONS(12413), + [anon_sym_BSLASHtextcolor] = ACTIONS(12413), + [anon_sym_BSLASHpagecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12413), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12413), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12413), + }, + [1300] = { + [sym_generic_command_name] = ACTIONS(12421), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12421), + [aux_sym_subsubsection_token1] = ACTIONS(12421), + [aux_sym_paragraph_token1] = ACTIONS(12421), + [aux_sym_subparagraph_token1] = ACTIONS(12421), + [anon_sym_BSLASHitem] = ACTIONS(12421), + [anon_sym_LBRACK] = ACTIONS(12419), + [anon_sym_RBRACK] = ACTIONS(12419), + [anon_sym_LBRACE] = ACTIONS(12419), + [anon_sym_RBRACE] = ACTIONS(12419), + [anon_sym_LPAREN] = ACTIONS(12419), + [anon_sym_COMMA] = ACTIONS(12419), + [anon_sym_EQ] = ACTIONS(12419), + [sym_word] = ACTIONS(12419), + [sym_param] = ACTIONS(12419), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12419), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12419), + [anon_sym_DOLLAR] = ACTIONS(12421), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12419), + [anon_sym_BSLASHbegin] = ACTIONS(12421), + [anon_sym_BSLASHcaption] = ACTIONS(12421), + [anon_sym_BSLASHcite] = ACTIONS(12421), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCite] = ACTIONS(12421), + [anon_sym_BSLASHnocite] = ACTIONS(12421), + [anon_sym_BSLASHcitet] = ACTIONS(12421), + [anon_sym_BSLASHcitep] = ACTIONS(12421), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteauthor] = ACTIONS(12421), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12421), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitetitle] = ACTIONS(12421), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteyear] = ACTIONS(12421), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitedate] = ACTIONS(12421), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteurl] = ACTIONS(12421), + [anon_sym_BSLASHfullcite] = ACTIONS(12421), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12421), + [anon_sym_BSLASHcitealt] = ACTIONS(12421), + [anon_sym_BSLASHcitealp] = ACTIONS(12421), + [anon_sym_BSLASHcitetext] = ACTIONS(12421), + [anon_sym_BSLASHparencite] = ACTIONS(12421), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHParencite] = ACTIONS(12421), + [anon_sym_BSLASHfootcite] = ACTIONS(12421), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12421), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12421), + [anon_sym_BSLASHtextcite] = ACTIONS(12421), + [anon_sym_BSLASHTextcite] = ACTIONS(12421), + [anon_sym_BSLASHsmartcite] = ACTIONS(12421), + [anon_sym_BSLASHSmartcite] = ACTIONS(12421), + [anon_sym_BSLASHsupercite] = ACTIONS(12421), + [anon_sym_BSLASHautocite] = ACTIONS(12421), + [anon_sym_BSLASHAutocite] = ACTIONS(12421), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHvolcite] = ACTIONS(12421), + [anon_sym_BSLASHVolcite] = ACTIONS(12421), + [anon_sym_BSLASHpvolcite] = ACTIONS(12421), + [anon_sym_BSLASHPvolcite] = ACTIONS(12421), + [anon_sym_BSLASHfvolcite] = ACTIONS(12421), + [anon_sym_BSLASHftvolcite] = ACTIONS(12421), + [anon_sym_BSLASHsvolcite] = ACTIONS(12421), + [anon_sym_BSLASHSvolcite] = ACTIONS(12421), + [anon_sym_BSLASHtvolcite] = ACTIONS(12421), + [anon_sym_BSLASHTvolcite] = ACTIONS(12421), + [anon_sym_BSLASHavolcite] = ACTIONS(12421), + [anon_sym_BSLASHAvolcite] = ACTIONS(12421), + [anon_sym_BSLASHnotecite] = ACTIONS(12421), + [anon_sym_BSLASHpnotecite] = ACTIONS(12421), + [anon_sym_BSLASHPnotecite] = ACTIONS(12421), + [anon_sym_BSLASHfnotecite] = ACTIONS(12421), + [anon_sym_BSLASHusepackage] = ACTIONS(12421), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12421), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12421), + [anon_sym_BSLASHinclude] = ACTIONS(12421), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12421), + [anon_sym_BSLASHinput] = ACTIONS(12421), + [anon_sym_BSLASHsubfile] = ACTIONS(12421), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12421), + [anon_sym_BSLASHbibliography] = ACTIONS(12421), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12421), + [anon_sym_BSLASHincludesvg] = ACTIONS(12421), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12421), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12421), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12421), + [anon_sym_BSLASHimport] = ACTIONS(12421), + [anon_sym_BSLASHsubimport] = ACTIONS(12421), + [anon_sym_BSLASHinputfrom] = ACTIONS(12421), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12421), + [anon_sym_BSLASHincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHlabel] = ACTIONS(12421), + [anon_sym_BSLASHref] = ACTIONS(12421), + [anon_sym_BSLASHvref] = ACTIONS(12421), + [anon_sym_BSLASHVref] = ACTIONS(12421), + [anon_sym_BSLASHautoref] = ACTIONS(12421), + [anon_sym_BSLASHpageref] = ACTIONS(12421), + [anon_sym_BSLASHcref] = ACTIONS(12421), + [anon_sym_BSLASHCref] = ACTIONS(12421), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnameCref] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHlabelcref] = ACTIONS(12421), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12421), + [anon_sym_BSLASHeqref] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange] = ACTIONS(12421), + [anon_sym_BSLASHCrefrange] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewlabel] = ACTIONS(12421), + [anon_sym_BSLASHnewcommand] = ACTIONS(12421), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12421), + [anon_sym_BSLASHgls] = ACTIONS(12421), + [anon_sym_BSLASHGls] = ACTIONS(12421), + [anon_sym_BSLASHGLS] = ACTIONS(12421), + [anon_sym_BSLASHglspl] = ACTIONS(12421), + [anon_sym_BSLASHGlspl] = ACTIONS(12421), + [anon_sym_BSLASHGLSpl] = ACTIONS(12421), + [anon_sym_BSLASHglsdisp] = ACTIONS(12421), + [anon_sym_BSLASHglslink] = ACTIONS(12421), + [anon_sym_BSLASHglstext] = ACTIONS(12421), + [anon_sym_BSLASHGlstext] = ACTIONS(12421), + [anon_sym_BSLASHGLStext] = ACTIONS(12421), + [anon_sym_BSLASHglsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12421), + [anon_sym_BSLASHglsplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSplural] = ACTIONS(12421), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHglsname] = ACTIONS(12421), + [anon_sym_BSLASHGlsname] = ACTIONS(12421), + [anon_sym_BSLASHGLSname] = ACTIONS(12421), + [anon_sym_BSLASHglssymbol] = ACTIONS(12421), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12421), + [anon_sym_BSLASHglsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12421), + [anon_sym_BSLASHglsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12421), + [anon_sym_BSLASHglsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12421), + [anon_sym_BSLASHglsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12421), + [anon_sym_BSLASHglsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12421), + [anon_sym_BSLASHnewacronym] = ACTIONS(12421), + [anon_sym_BSLASHacrshort] = ACTIONS(12421), + [anon_sym_BSLASHAcrshort] = ACTIONS(12421), + [anon_sym_BSLASHACRshort] = ACTIONS(12421), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12421), + [anon_sym_BSLASHacrlong] = ACTIONS(12421), + [anon_sym_BSLASHAcrlong] = ACTIONS(12421), + [anon_sym_BSLASHACRlong] = ACTIONS(12421), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12421), + [anon_sym_BSLASHacrfull] = ACTIONS(12421), + [anon_sym_BSLASHAcrfull] = ACTIONS(12421), + [anon_sym_BSLASHACRfull] = ACTIONS(12421), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12421), + [anon_sym_BSLASHacs] = ACTIONS(12421), + [anon_sym_BSLASHAcs] = ACTIONS(12421), + [anon_sym_BSLASHacsp] = ACTIONS(12421), + [anon_sym_BSLASHAcsp] = ACTIONS(12421), + [anon_sym_BSLASHacl] = ACTIONS(12421), + [anon_sym_BSLASHAcl] = ACTIONS(12421), + [anon_sym_BSLASHaclp] = ACTIONS(12421), + [anon_sym_BSLASHAclp] = ACTIONS(12421), + [anon_sym_BSLASHacf] = ACTIONS(12421), + [anon_sym_BSLASHAcf] = ACTIONS(12421), + [anon_sym_BSLASHacfp] = ACTIONS(12421), + [anon_sym_BSLASHAcfp] = ACTIONS(12421), + [anon_sym_BSLASHac] = ACTIONS(12421), + [anon_sym_BSLASHAc] = ACTIONS(12421), + [anon_sym_BSLASHacp] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12421), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12421), + [anon_sym_BSLASHcolor] = ACTIONS(12421), + [anon_sym_BSLASHcolorbox] = ACTIONS(12421), + [anon_sym_BSLASHtextcolor] = ACTIONS(12421), + [anon_sym_BSLASHpagecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12421), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12421), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12421), + }, + [1301] = { + [sym_generic_command_name] = ACTIONS(12425), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12425), + [aux_sym_subsubsection_token1] = ACTIONS(12425), + [aux_sym_paragraph_token1] = ACTIONS(12425), + [aux_sym_subparagraph_token1] = ACTIONS(12425), + [anon_sym_BSLASHitem] = ACTIONS(12425), + [anon_sym_LBRACK] = ACTIONS(12423), + [anon_sym_RBRACK] = ACTIONS(12423), + [anon_sym_LBRACE] = ACTIONS(12423), + [anon_sym_RBRACE] = ACTIONS(12423), + [anon_sym_LPAREN] = ACTIONS(12423), + [anon_sym_COMMA] = ACTIONS(12423), + [anon_sym_EQ] = ACTIONS(12423), + [sym_word] = ACTIONS(12423), + [sym_param] = ACTIONS(12423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12423), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12423), + [anon_sym_DOLLAR] = ACTIONS(12425), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12423), + [anon_sym_BSLASHbegin] = ACTIONS(12425), + [anon_sym_BSLASHcaption] = ACTIONS(12425), + [anon_sym_BSLASHcite] = ACTIONS(12425), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCite] = ACTIONS(12425), + [anon_sym_BSLASHnocite] = ACTIONS(12425), + [anon_sym_BSLASHcitet] = ACTIONS(12425), + [anon_sym_BSLASHcitep] = ACTIONS(12425), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteauthor] = ACTIONS(12425), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12425), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitetitle] = ACTIONS(12425), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteyear] = ACTIONS(12425), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitedate] = ACTIONS(12425), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteurl] = ACTIONS(12425), + [anon_sym_BSLASHfullcite] = ACTIONS(12425), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12425), + [anon_sym_BSLASHcitealt] = ACTIONS(12425), + [anon_sym_BSLASHcitealp] = ACTIONS(12425), + [anon_sym_BSLASHcitetext] = ACTIONS(12425), + [anon_sym_BSLASHparencite] = ACTIONS(12425), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHParencite] = ACTIONS(12425), + [anon_sym_BSLASHfootcite] = ACTIONS(12425), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12425), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12425), + [anon_sym_BSLASHtextcite] = ACTIONS(12425), + [anon_sym_BSLASHTextcite] = ACTIONS(12425), + [anon_sym_BSLASHsmartcite] = ACTIONS(12425), + [anon_sym_BSLASHSmartcite] = ACTIONS(12425), + [anon_sym_BSLASHsupercite] = ACTIONS(12425), + [anon_sym_BSLASHautocite] = ACTIONS(12425), + [anon_sym_BSLASHAutocite] = ACTIONS(12425), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHvolcite] = ACTIONS(12425), + [anon_sym_BSLASHVolcite] = ACTIONS(12425), + [anon_sym_BSLASHpvolcite] = ACTIONS(12425), + [anon_sym_BSLASHPvolcite] = ACTIONS(12425), + [anon_sym_BSLASHfvolcite] = ACTIONS(12425), + [anon_sym_BSLASHftvolcite] = ACTIONS(12425), + [anon_sym_BSLASHsvolcite] = ACTIONS(12425), + [anon_sym_BSLASHSvolcite] = ACTIONS(12425), + [anon_sym_BSLASHtvolcite] = ACTIONS(12425), + [anon_sym_BSLASHTvolcite] = ACTIONS(12425), + [anon_sym_BSLASHavolcite] = ACTIONS(12425), + [anon_sym_BSLASHAvolcite] = ACTIONS(12425), + [anon_sym_BSLASHnotecite] = ACTIONS(12425), + [anon_sym_BSLASHpnotecite] = ACTIONS(12425), + [anon_sym_BSLASHPnotecite] = ACTIONS(12425), + [anon_sym_BSLASHfnotecite] = ACTIONS(12425), + [anon_sym_BSLASHusepackage] = ACTIONS(12425), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12425), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12425), + [anon_sym_BSLASHinclude] = ACTIONS(12425), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12425), + [anon_sym_BSLASHinput] = ACTIONS(12425), + [anon_sym_BSLASHsubfile] = ACTIONS(12425), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12425), + [anon_sym_BSLASHbibliography] = ACTIONS(12425), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12425), + [anon_sym_BSLASHincludesvg] = ACTIONS(12425), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12425), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12425), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12425), + [anon_sym_BSLASHimport] = ACTIONS(12425), + [anon_sym_BSLASHsubimport] = ACTIONS(12425), + [anon_sym_BSLASHinputfrom] = ACTIONS(12425), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12425), + [anon_sym_BSLASHincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHlabel] = ACTIONS(12425), + [anon_sym_BSLASHref] = ACTIONS(12425), + [anon_sym_BSLASHvref] = ACTIONS(12425), + [anon_sym_BSLASHVref] = ACTIONS(12425), + [anon_sym_BSLASHautoref] = ACTIONS(12425), + [anon_sym_BSLASHpageref] = ACTIONS(12425), + [anon_sym_BSLASHcref] = ACTIONS(12425), + [anon_sym_BSLASHCref] = ACTIONS(12425), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnameCref] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHlabelcref] = ACTIONS(12425), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12425), + [anon_sym_BSLASHeqref] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange] = ACTIONS(12425), + [anon_sym_BSLASHCrefrange] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewlabel] = ACTIONS(12425), + [anon_sym_BSLASHnewcommand] = ACTIONS(12425), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12425), + [anon_sym_BSLASHgls] = ACTIONS(12425), + [anon_sym_BSLASHGls] = ACTIONS(12425), + [anon_sym_BSLASHGLS] = ACTIONS(12425), + [anon_sym_BSLASHglspl] = ACTIONS(12425), + [anon_sym_BSLASHGlspl] = ACTIONS(12425), + [anon_sym_BSLASHGLSpl] = ACTIONS(12425), + [anon_sym_BSLASHglsdisp] = ACTIONS(12425), + [anon_sym_BSLASHglslink] = ACTIONS(12425), + [anon_sym_BSLASHglstext] = ACTIONS(12425), + [anon_sym_BSLASHGlstext] = ACTIONS(12425), + [anon_sym_BSLASHGLStext] = ACTIONS(12425), + [anon_sym_BSLASHglsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12425), + [anon_sym_BSLASHglsplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSplural] = ACTIONS(12425), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHglsname] = ACTIONS(12425), + [anon_sym_BSLASHGlsname] = ACTIONS(12425), + [anon_sym_BSLASHGLSname] = ACTIONS(12425), + [anon_sym_BSLASHglssymbol] = ACTIONS(12425), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12425), + [anon_sym_BSLASHglsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12425), + [anon_sym_BSLASHglsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12425), + [anon_sym_BSLASHglsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12425), + [anon_sym_BSLASHglsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12425), + [anon_sym_BSLASHglsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12425), + [anon_sym_BSLASHnewacronym] = ACTIONS(12425), + [anon_sym_BSLASHacrshort] = ACTIONS(12425), + [anon_sym_BSLASHAcrshort] = ACTIONS(12425), + [anon_sym_BSLASHACRshort] = ACTIONS(12425), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12425), + [anon_sym_BSLASHacrlong] = ACTIONS(12425), + [anon_sym_BSLASHAcrlong] = ACTIONS(12425), + [anon_sym_BSLASHACRlong] = ACTIONS(12425), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12425), + [anon_sym_BSLASHacrfull] = ACTIONS(12425), + [anon_sym_BSLASHAcrfull] = ACTIONS(12425), + [anon_sym_BSLASHACRfull] = ACTIONS(12425), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12425), + [anon_sym_BSLASHacs] = ACTIONS(12425), + [anon_sym_BSLASHAcs] = ACTIONS(12425), + [anon_sym_BSLASHacsp] = ACTIONS(12425), + [anon_sym_BSLASHAcsp] = ACTIONS(12425), + [anon_sym_BSLASHacl] = ACTIONS(12425), + [anon_sym_BSLASHAcl] = ACTIONS(12425), + [anon_sym_BSLASHaclp] = ACTIONS(12425), + [anon_sym_BSLASHAclp] = ACTIONS(12425), + [anon_sym_BSLASHacf] = ACTIONS(12425), + [anon_sym_BSLASHAcf] = ACTIONS(12425), + [anon_sym_BSLASHacfp] = ACTIONS(12425), + [anon_sym_BSLASHAcfp] = ACTIONS(12425), + [anon_sym_BSLASHac] = ACTIONS(12425), + [anon_sym_BSLASHAc] = ACTIONS(12425), + [anon_sym_BSLASHacp] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12425), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12425), + [anon_sym_BSLASHcolor] = ACTIONS(12425), + [anon_sym_BSLASHcolorbox] = ACTIONS(12425), + [anon_sym_BSLASHtextcolor] = ACTIONS(12425), + [anon_sym_BSLASHpagecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12425), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12425), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12425), + }, + [1302] = { + [sym_generic_command_name] = ACTIONS(12429), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12429), + [aux_sym_subsubsection_token1] = ACTIONS(12429), + [aux_sym_paragraph_token1] = ACTIONS(12429), + [aux_sym_subparagraph_token1] = ACTIONS(12429), + [anon_sym_BSLASHitem] = ACTIONS(12429), + [anon_sym_LBRACK] = ACTIONS(12427), + [anon_sym_RBRACK] = ACTIONS(12427), + [anon_sym_LBRACE] = ACTIONS(12427), + [anon_sym_RBRACE] = ACTIONS(12427), + [anon_sym_LPAREN] = ACTIONS(12427), + [anon_sym_COMMA] = ACTIONS(12427), + [anon_sym_EQ] = ACTIONS(12427), + [sym_word] = ACTIONS(12427), + [sym_param] = ACTIONS(12427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12427), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12427), + [anon_sym_DOLLAR] = ACTIONS(12429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12427), + [anon_sym_BSLASHbegin] = ACTIONS(12429), + [anon_sym_BSLASHcaption] = ACTIONS(12429), + [anon_sym_BSLASHcite] = ACTIONS(12429), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCite] = ACTIONS(12429), + [anon_sym_BSLASHnocite] = ACTIONS(12429), + [anon_sym_BSLASHcitet] = ACTIONS(12429), + [anon_sym_BSLASHcitep] = ACTIONS(12429), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteauthor] = ACTIONS(12429), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12429), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitetitle] = ACTIONS(12429), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteyear] = ACTIONS(12429), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitedate] = ACTIONS(12429), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteurl] = ACTIONS(12429), + [anon_sym_BSLASHfullcite] = ACTIONS(12429), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12429), + [anon_sym_BSLASHcitealt] = ACTIONS(12429), + [anon_sym_BSLASHcitealp] = ACTIONS(12429), + [anon_sym_BSLASHcitetext] = ACTIONS(12429), + [anon_sym_BSLASHparencite] = ACTIONS(12429), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHParencite] = ACTIONS(12429), + [anon_sym_BSLASHfootcite] = ACTIONS(12429), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12429), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12429), + [anon_sym_BSLASHtextcite] = ACTIONS(12429), + [anon_sym_BSLASHTextcite] = ACTIONS(12429), + [anon_sym_BSLASHsmartcite] = ACTIONS(12429), + [anon_sym_BSLASHSmartcite] = ACTIONS(12429), + [anon_sym_BSLASHsupercite] = ACTIONS(12429), + [anon_sym_BSLASHautocite] = ACTIONS(12429), + [anon_sym_BSLASHAutocite] = ACTIONS(12429), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHvolcite] = ACTIONS(12429), + [anon_sym_BSLASHVolcite] = ACTIONS(12429), + [anon_sym_BSLASHpvolcite] = ACTIONS(12429), + [anon_sym_BSLASHPvolcite] = ACTIONS(12429), + [anon_sym_BSLASHfvolcite] = ACTIONS(12429), + [anon_sym_BSLASHftvolcite] = ACTIONS(12429), + [anon_sym_BSLASHsvolcite] = ACTIONS(12429), + [anon_sym_BSLASHSvolcite] = ACTIONS(12429), + [anon_sym_BSLASHtvolcite] = ACTIONS(12429), + [anon_sym_BSLASHTvolcite] = ACTIONS(12429), + [anon_sym_BSLASHavolcite] = ACTIONS(12429), + [anon_sym_BSLASHAvolcite] = ACTIONS(12429), + [anon_sym_BSLASHnotecite] = ACTIONS(12429), + [anon_sym_BSLASHpnotecite] = ACTIONS(12429), + [anon_sym_BSLASHPnotecite] = ACTIONS(12429), + [anon_sym_BSLASHfnotecite] = ACTIONS(12429), + [anon_sym_BSLASHusepackage] = ACTIONS(12429), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12429), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12429), + [anon_sym_BSLASHinclude] = ACTIONS(12429), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12429), + [anon_sym_BSLASHinput] = ACTIONS(12429), + [anon_sym_BSLASHsubfile] = ACTIONS(12429), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12429), + [anon_sym_BSLASHbibliography] = ACTIONS(12429), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12429), + [anon_sym_BSLASHincludesvg] = ACTIONS(12429), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12429), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12429), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12429), + [anon_sym_BSLASHimport] = ACTIONS(12429), + [anon_sym_BSLASHsubimport] = ACTIONS(12429), + [anon_sym_BSLASHinputfrom] = ACTIONS(12429), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12429), + [anon_sym_BSLASHincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHlabel] = ACTIONS(12429), + [anon_sym_BSLASHref] = ACTIONS(12429), + [anon_sym_BSLASHvref] = ACTIONS(12429), + [anon_sym_BSLASHVref] = ACTIONS(12429), + [anon_sym_BSLASHautoref] = ACTIONS(12429), + [anon_sym_BSLASHpageref] = ACTIONS(12429), + [anon_sym_BSLASHcref] = ACTIONS(12429), + [anon_sym_BSLASHCref] = ACTIONS(12429), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnameCref] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHlabelcref] = ACTIONS(12429), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12429), + [anon_sym_BSLASHeqref] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange] = ACTIONS(12429), + [anon_sym_BSLASHCrefrange] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewlabel] = ACTIONS(12429), + [anon_sym_BSLASHnewcommand] = ACTIONS(12429), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12429), + [anon_sym_BSLASHgls] = ACTIONS(12429), + [anon_sym_BSLASHGls] = ACTIONS(12429), + [anon_sym_BSLASHGLS] = ACTIONS(12429), + [anon_sym_BSLASHglspl] = ACTIONS(12429), + [anon_sym_BSLASHGlspl] = ACTIONS(12429), + [anon_sym_BSLASHGLSpl] = ACTIONS(12429), + [anon_sym_BSLASHglsdisp] = ACTIONS(12429), + [anon_sym_BSLASHglslink] = ACTIONS(12429), + [anon_sym_BSLASHglstext] = ACTIONS(12429), + [anon_sym_BSLASHGlstext] = ACTIONS(12429), + [anon_sym_BSLASHGLStext] = ACTIONS(12429), + [anon_sym_BSLASHglsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12429), + [anon_sym_BSLASHglsplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSplural] = ACTIONS(12429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHglsname] = ACTIONS(12429), + [anon_sym_BSLASHGlsname] = ACTIONS(12429), + [anon_sym_BSLASHGLSname] = ACTIONS(12429), + [anon_sym_BSLASHglssymbol] = ACTIONS(12429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12429), + [anon_sym_BSLASHglsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12429), + [anon_sym_BSLASHglsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12429), + [anon_sym_BSLASHglsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12429), + [anon_sym_BSLASHglsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12429), + [anon_sym_BSLASHglsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12429), + [anon_sym_BSLASHnewacronym] = ACTIONS(12429), + [anon_sym_BSLASHacrshort] = ACTIONS(12429), + [anon_sym_BSLASHAcrshort] = ACTIONS(12429), + [anon_sym_BSLASHACRshort] = ACTIONS(12429), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12429), + [anon_sym_BSLASHacrlong] = ACTIONS(12429), + [anon_sym_BSLASHAcrlong] = ACTIONS(12429), + [anon_sym_BSLASHACRlong] = ACTIONS(12429), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12429), + [anon_sym_BSLASHacrfull] = ACTIONS(12429), + [anon_sym_BSLASHAcrfull] = ACTIONS(12429), + [anon_sym_BSLASHACRfull] = ACTIONS(12429), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12429), + [anon_sym_BSLASHacs] = ACTIONS(12429), + [anon_sym_BSLASHAcs] = ACTIONS(12429), + [anon_sym_BSLASHacsp] = ACTIONS(12429), + [anon_sym_BSLASHAcsp] = ACTIONS(12429), + [anon_sym_BSLASHacl] = ACTIONS(12429), + [anon_sym_BSLASHAcl] = ACTIONS(12429), + [anon_sym_BSLASHaclp] = ACTIONS(12429), + [anon_sym_BSLASHAclp] = ACTIONS(12429), + [anon_sym_BSLASHacf] = ACTIONS(12429), + [anon_sym_BSLASHAcf] = ACTIONS(12429), + [anon_sym_BSLASHacfp] = ACTIONS(12429), + [anon_sym_BSLASHAcfp] = ACTIONS(12429), + [anon_sym_BSLASHac] = ACTIONS(12429), + [anon_sym_BSLASHAc] = ACTIONS(12429), + [anon_sym_BSLASHacp] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12429), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12429), + [anon_sym_BSLASHcolor] = ACTIONS(12429), + [anon_sym_BSLASHcolorbox] = ACTIONS(12429), + [anon_sym_BSLASHtextcolor] = ACTIONS(12429), + [anon_sym_BSLASHpagecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12429), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12429), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12429), + }, + [1303] = { + [sym_generic_command_name] = ACTIONS(12433), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12433), + [aux_sym_subsubsection_token1] = ACTIONS(12433), + [aux_sym_paragraph_token1] = ACTIONS(12433), + [aux_sym_subparagraph_token1] = ACTIONS(12433), + [anon_sym_BSLASHitem] = ACTIONS(12433), + [anon_sym_LBRACK] = ACTIONS(12431), + [anon_sym_RBRACK] = ACTIONS(12431), + [anon_sym_LBRACE] = ACTIONS(12431), + [anon_sym_RBRACE] = ACTIONS(12431), + [anon_sym_LPAREN] = ACTIONS(12431), + [anon_sym_COMMA] = ACTIONS(12431), + [anon_sym_EQ] = ACTIONS(12431), + [sym_word] = ACTIONS(12431), + [sym_param] = ACTIONS(12431), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12431), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12431), + [anon_sym_DOLLAR] = ACTIONS(12433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12431), + [anon_sym_BSLASHbegin] = ACTIONS(12433), + [anon_sym_BSLASHcaption] = ACTIONS(12433), + [anon_sym_BSLASHcite] = ACTIONS(12433), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCite] = ACTIONS(12433), + [anon_sym_BSLASHnocite] = ACTIONS(12433), + [anon_sym_BSLASHcitet] = ACTIONS(12433), + [anon_sym_BSLASHcitep] = ACTIONS(12433), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteauthor] = ACTIONS(12433), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12433), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitetitle] = ACTIONS(12433), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteyear] = ACTIONS(12433), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitedate] = ACTIONS(12433), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteurl] = ACTIONS(12433), + [anon_sym_BSLASHfullcite] = ACTIONS(12433), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12433), + [anon_sym_BSLASHcitealt] = ACTIONS(12433), + [anon_sym_BSLASHcitealp] = ACTIONS(12433), + [anon_sym_BSLASHcitetext] = ACTIONS(12433), + [anon_sym_BSLASHparencite] = ACTIONS(12433), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHParencite] = ACTIONS(12433), + [anon_sym_BSLASHfootcite] = ACTIONS(12433), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12433), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12433), + [anon_sym_BSLASHtextcite] = ACTIONS(12433), + [anon_sym_BSLASHTextcite] = ACTIONS(12433), + [anon_sym_BSLASHsmartcite] = ACTIONS(12433), + [anon_sym_BSLASHSmartcite] = ACTIONS(12433), + [anon_sym_BSLASHsupercite] = ACTIONS(12433), + [anon_sym_BSLASHautocite] = ACTIONS(12433), + [anon_sym_BSLASHAutocite] = ACTIONS(12433), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHvolcite] = ACTIONS(12433), + [anon_sym_BSLASHVolcite] = ACTIONS(12433), + [anon_sym_BSLASHpvolcite] = ACTIONS(12433), + [anon_sym_BSLASHPvolcite] = ACTIONS(12433), + [anon_sym_BSLASHfvolcite] = ACTIONS(12433), + [anon_sym_BSLASHftvolcite] = ACTIONS(12433), + [anon_sym_BSLASHsvolcite] = ACTIONS(12433), + [anon_sym_BSLASHSvolcite] = ACTIONS(12433), + [anon_sym_BSLASHtvolcite] = ACTIONS(12433), + [anon_sym_BSLASHTvolcite] = ACTIONS(12433), + [anon_sym_BSLASHavolcite] = ACTIONS(12433), + [anon_sym_BSLASHAvolcite] = ACTIONS(12433), + [anon_sym_BSLASHnotecite] = ACTIONS(12433), + [anon_sym_BSLASHpnotecite] = ACTIONS(12433), + [anon_sym_BSLASHPnotecite] = ACTIONS(12433), + [anon_sym_BSLASHfnotecite] = ACTIONS(12433), + [anon_sym_BSLASHusepackage] = ACTIONS(12433), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12433), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12433), + [anon_sym_BSLASHinclude] = ACTIONS(12433), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12433), + [anon_sym_BSLASHinput] = ACTIONS(12433), + [anon_sym_BSLASHsubfile] = ACTIONS(12433), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12433), + [anon_sym_BSLASHbibliography] = ACTIONS(12433), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12433), + [anon_sym_BSLASHincludesvg] = ACTIONS(12433), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12433), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12433), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12433), + [anon_sym_BSLASHimport] = ACTIONS(12433), + [anon_sym_BSLASHsubimport] = ACTIONS(12433), + [anon_sym_BSLASHinputfrom] = ACTIONS(12433), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12433), + [anon_sym_BSLASHincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHlabel] = ACTIONS(12433), + [anon_sym_BSLASHref] = ACTIONS(12433), + [anon_sym_BSLASHvref] = ACTIONS(12433), + [anon_sym_BSLASHVref] = ACTIONS(12433), + [anon_sym_BSLASHautoref] = ACTIONS(12433), + [anon_sym_BSLASHpageref] = ACTIONS(12433), + [anon_sym_BSLASHcref] = ACTIONS(12433), + [anon_sym_BSLASHCref] = ACTIONS(12433), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnameCref] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHlabelcref] = ACTIONS(12433), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12433), + [anon_sym_BSLASHeqref] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange] = ACTIONS(12433), + [anon_sym_BSLASHCrefrange] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewlabel] = ACTIONS(12433), + [anon_sym_BSLASHnewcommand] = ACTIONS(12433), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12433), + [anon_sym_BSLASHgls] = ACTIONS(12433), + [anon_sym_BSLASHGls] = ACTIONS(12433), + [anon_sym_BSLASHGLS] = ACTIONS(12433), + [anon_sym_BSLASHglspl] = ACTIONS(12433), + [anon_sym_BSLASHGlspl] = ACTIONS(12433), + [anon_sym_BSLASHGLSpl] = ACTIONS(12433), + [anon_sym_BSLASHglsdisp] = ACTIONS(12433), + [anon_sym_BSLASHglslink] = ACTIONS(12433), + [anon_sym_BSLASHglstext] = ACTIONS(12433), + [anon_sym_BSLASHGlstext] = ACTIONS(12433), + [anon_sym_BSLASHGLStext] = ACTIONS(12433), + [anon_sym_BSLASHglsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12433), + [anon_sym_BSLASHglsplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSplural] = ACTIONS(12433), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHglsname] = ACTIONS(12433), + [anon_sym_BSLASHGlsname] = ACTIONS(12433), + [anon_sym_BSLASHGLSname] = ACTIONS(12433), + [anon_sym_BSLASHglssymbol] = ACTIONS(12433), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12433), + [anon_sym_BSLASHglsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12433), + [anon_sym_BSLASHglsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12433), + [anon_sym_BSLASHglsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12433), + [anon_sym_BSLASHglsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12433), + [anon_sym_BSLASHglsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12433), + [anon_sym_BSLASHnewacronym] = ACTIONS(12433), + [anon_sym_BSLASHacrshort] = ACTIONS(12433), + [anon_sym_BSLASHAcrshort] = ACTIONS(12433), + [anon_sym_BSLASHACRshort] = ACTIONS(12433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12433), + [anon_sym_BSLASHacrlong] = ACTIONS(12433), + [anon_sym_BSLASHAcrlong] = ACTIONS(12433), + [anon_sym_BSLASHACRlong] = ACTIONS(12433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12433), + [anon_sym_BSLASHacrfull] = ACTIONS(12433), + [anon_sym_BSLASHAcrfull] = ACTIONS(12433), + [anon_sym_BSLASHACRfull] = ACTIONS(12433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12433), + [anon_sym_BSLASHacs] = ACTIONS(12433), + [anon_sym_BSLASHAcs] = ACTIONS(12433), + [anon_sym_BSLASHacsp] = ACTIONS(12433), + [anon_sym_BSLASHAcsp] = ACTIONS(12433), + [anon_sym_BSLASHacl] = ACTIONS(12433), + [anon_sym_BSLASHAcl] = ACTIONS(12433), + [anon_sym_BSLASHaclp] = ACTIONS(12433), + [anon_sym_BSLASHAclp] = ACTIONS(12433), + [anon_sym_BSLASHacf] = ACTIONS(12433), + [anon_sym_BSLASHAcf] = ACTIONS(12433), + [anon_sym_BSLASHacfp] = ACTIONS(12433), + [anon_sym_BSLASHAcfp] = ACTIONS(12433), + [anon_sym_BSLASHac] = ACTIONS(12433), + [anon_sym_BSLASHAc] = ACTIONS(12433), + [anon_sym_BSLASHacp] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12433), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12433), + [anon_sym_BSLASHcolor] = ACTIONS(12433), + [anon_sym_BSLASHcolorbox] = ACTIONS(12433), + [anon_sym_BSLASHtextcolor] = ACTIONS(12433), + [anon_sym_BSLASHpagecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12433), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12433), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12433), + }, + [1304] = { + [sym_generic_command_name] = ACTIONS(12227), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12227), + [aux_sym_subsubsection_token1] = ACTIONS(12227), + [aux_sym_paragraph_token1] = ACTIONS(12227), + [aux_sym_subparagraph_token1] = ACTIONS(12227), + [anon_sym_BSLASHitem] = ACTIONS(12227), + [anon_sym_LBRACK] = ACTIONS(12225), + [anon_sym_RBRACK] = ACTIONS(12225), + [anon_sym_LBRACE] = ACTIONS(12225), + [anon_sym_RBRACE] = ACTIONS(12225), + [anon_sym_LPAREN] = ACTIONS(12225), + [anon_sym_COMMA] = ACTIONS(12225), + [anon_sym_EQ] = ACTIONS(12225), + [sym_word] = ACTIONS(12225), + [sym_param] = ACTIONS(12225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12225), + [anon_sym_DOLLAR] = ACTIONS(12227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12225), + [anon_sym_BSLASHbegin] = ACTIONS(12227), + [anon_sym_BSLASHcaption] = ACTIONS(12227), + [anon_sym_BSLASHcite] = ACTIONS(12227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCite] = ACTIONS(12227), + [anon_sym_BSLASHnocite] = ACTIONS(12227), + [anon_sym_BSLASHcitet] = ACTIONS(12227), + [anon_sym_BSLASHcitep] = ACTIONS(12227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteauthor] = ACTIONS(12227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitetitle] = ACTIONS(12227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteyear] = ACTIONS(12227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitedate] = ACTIONS(12227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteurl] = ACTIONS(12227), + [anon_sym_BSLASHfullcite] = ACTIONS(12227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12227), + [anon_sym_BSLASHcitealt] = ACTIONS(12227), + [anon_sym_BSLASHcitealp] = ACTIONS(12227), + [anon_sym_BSLASHcitetext] = ACTIONS(12227), + [anon_sym_BSLASHparencite] = ACTIONS(12227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHParencite] = ACTIONS(12227), + [anon_sym_BSLASHfootcite] = ACTIONS(12227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12227), + [anon_sym_BSLASHtextcite] = ACTIONS(12227), + [anon_sym_BSLASHTextcite] = ACTIONS(12227), + [anon_sym_BSLASHsmartcite] = ACTIONS(12227), + [anon_sym_BSLASHSmartcite] = ACTIONS(12227), + [anon_sym_BSLASHsupercite] = ACTIONS(12227), + [anon_sym_BSLASHautocite] = ACTIONS(12227), + [anon_sym_BSLASHAutocite] = ACTIONS(12227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHvolcite] = ACTIONS(12227), + [anon_sym_BSLASHVolcite] = ACTIONS(12227), + [anon_sym_BSLASHpvolcite] = ACTIONS(12227), + [anon_sym_BSLASHPvolcite] = ACTIONS(12227), + [anon_sym_BSLASHfvolcite] = ACTIONS(12227), + [anon_sym_BSLASHftvolcite] = ACTIONS(12227), + [anon_sym_BSLASHsvolcite] = ACTIONS(12227), + [anon_sym_BSLASHSvolcite] = ACTIONS(12227), + [anon_sym_BSLASHtvolcite] = ACTIONS(12227), + [anon_sym_BSLASHTvolcite] = ACTIONS(12227), + [anon_sym_BSLASHavolcite] = ACTIONS(12227), + [anon_sym_BSLASHAvolcite] = ACTIONS(12227), + [anon_sym_BSLASHnotecite] = ACTIONS(12227), + [anon_sym_BSLASHpnotecite] = ACTIONS(12227), + [anon_sym_BSLASHPnotecite] = ACTIONS(12227), + [anon_sym_BSLASHfnotecite] = ACTIONS(12227), + [anon_sym_BSLASHusepackage] = ACTIONS(12227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12227), + [anon_sym_BSLASHinclude] = ACTIONS(12227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12227), + [anon_sym_BSLASHinput] = ACTIONS(12227), + [anon_sym_BSLASHsubfile] = ACTIONS(12227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12227), + [anon_sym_BSLASHbibliography] = ACTIONS(12227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12227), + [anon_sym_BSLASHincludesvg] = ACTIONS(12227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12227), + [anon_sym_BSLASHimport] = ACTIONS(12227), + [anon_sym_BSLASHsubimport] = ACTIONS(12227), + [anon_sym_BSLASHinputfrom] = ACTIONS(12227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12227), + [anon_sym_BSLASHincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHlabel] = ACTIONS(12227), + [anon_sym_BSLASHref] = ACTIONS(12227), + [anon_sym_BSLASHvref] = ACTIONS(12227), + [anon_sym_BSLASHVref] = ACTIONS(12227), + [anon_sym_BSLASHautoref] = ACTIONS(12227), + [anon_sym_BSLASHpageref] = ACTIONS(12227), + [anon_sym_BSLASHcref] = ACTIONS(12227), + [anon_sym_BSLASHCref] = ACTIONS(12227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnameCref] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHlabelcref] = ACTIONS(12227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12227), + [anon_sym_BSLASHeqref] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange] = ACTIONS(12227), + [anon_sym_BSLASHCrefrange] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewlabel] = ACTIONS(12227), + [anon_sym_BSLASHnewcommand] = ACTIONS(12227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12227), + [anon_sym_BSLASHgls] = ACTIONS(12227), + [anon_sym_BSLASHGls] = ACTIONS(12227), + [anon_sym_BSLASHGLS] = ACTIONS(12227), + [anon_sym_BSLASHglspl] = ACTIONS(12227), + [anon_sym_BSLASHGlspl] = ACTIONS(12227), + [anon_sym_BSLASHGLSpl] = ACTIONS(12227), + [anon_sym_BSLASHglsdisp] = ACTIONS(12227), + [anon_sym_BSLASHglslink] = ACTIONS(12227), + [anon_sym_BSLASHglstext] = ACTIONS(12227), + [anon_sym_BSLASHGlstext] = ACTIONS(12227), + [anon_sym_BSLASHGLStext] = ACTIONS(12227), + [anon_sym_BSLASHglsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12227), + [anon_sym_BSLASHglsplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSplural] = ACTIONS(12227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHglsname] = ACTIONS(12227), + [anon_sym_BSLASHGlsname] = ACTIONS(12227), + [anon_sym_BSLASHGLSname] = ACTIONS(12227), + [anon_sym_BSLASHglssymbol] = ACTIONS(12227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12227), + [anon_sym_BSLASHglsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12227), + [anon_sym_BSLASHglsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12227), + [anon_sym_BSLASHglsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12227), + [anon_sym_BSLASHglsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12227), + [anon_sym_BSLASHglsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12227), + [anon_sym_BSLASHnewacronym] = ACTIONS(12227), + [anon_sym_BSLASHacrshort] = ACTIONS(12227), + [anon_sym_BSLASHAcrshort] = ACTIONS(12227), + [anon_sym_BSLASHACRshort] = ACTIONS(12227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12227), + [anon_sym_BSLASHacrlong] = ACTIONS(12227), + [anon_sym_BSLASHAcrlong] = ACTIONS(12227), + [anon_sym_BSLASHACRlong] = ACTIONS(12227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12227), + [anon_sym_BSLASHacrfull] = ACTIONS(12227), + [anon_sym_BSLASHAcrfull] = ACTIONS(12227), + [anon_sym_BSLASHACRfull] = ACTIONS(12227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12227), + [anon_sym_BSLASHacs] = ACTIONS(12227), + [anon_sym_BSLASHAcs] = ACTIONS(12227), + [anon_sym_BSLASHacsp] = ACTIONS(12227), + [anon_sym_BSLASHAcsp] = ACTIONS(12227), + [anon_sym_BSLASHacl] = ACTIONS(12227), + [anon_sym_BSLASHAcl] = ACTIONS(12227), + [anon_sym_BSLASHaclp] = ACTIONS(12227), + [anon_sym_BSLASHAclp] = ACTIONS(12227), + [anon_sym_BSLASHacf] = ACTIONS(12227), + [anon_sym_BSLASHAcf] = ACTIONS(12227), + [anon_sym_BSLASHacfp] = ACTIONS(12227), + [anon_sym_BSLASHAcfp] = ACTIONS(12227), + [anon_sym_BSLASHac] = ACTIONS(12227), + [anon_sym_BSLASHAc] = ACTIONS(12227), + [anon_sym_BSLASHacp] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12227), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12227), + [anon_sym_BSLASHcolor] = ACTIONS(12227), + [anon_sym_BSLASHcolorbox] = ACTIONS(12227), + [anon_sym_BSLASHtextcolor] = ACTIONS(12227), + [anon_sym_BSLASHpagecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12227), + }, + [1305] = { + [sym_generic_command_name] = ACTIONS(12441), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12441), + [aux_sym_subsubsection_token1] = ACTIONS(12441), + [aux_sym_paragraph_token1] = ACTIONS(12441), + [aux_sym_subparagraph_token1] = ACTIONS(12441), + [anon_sym_BSLASHitem] = ACTIONS(12441), + [anon_sym_LBRACK] = ACTIONS(12439), + [anon_sym_RBRACK] = ACTIONS(12439), + [anon_sym_LBRACE] = ACTIONS(12439), + [anon_sym_RBRACE] = ACTIONS(12439), + [anon_sym_LPAREN] = ACTIONS(12439), + [anon_sym_COMMA] = ACTIONS(12439), + [anon_sym_EQ] = ACTIONS(12439), + [sym_word] = ACTIONS(12439), + [sym_param] = ACTIONS(12439), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12439), + [anon_sym_DOLLAR] = ACTIONS(12441), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12439), + [anon_sym_BSLASHbegin] = ACTIONS(12441), + [anon_sym_BSLASHcaption] = ACTIONS(12441), + [anon_sym_BSLASHcite] = ACTIONS(12441), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCite] = ACTIONS(12441), + [anon_sym_BSLASHnocite] = ACTIONS(12441), + [anon_sym_BSLASHcitet] = ACTIONS(12441), + [anon_sym_BSLASHcitep] = ACTIONS(12441), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteauthor] = ACTIONS(12441), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12441), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitetitle] = ACTIONS(12441), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteyear] = ACTIONS(12441), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitedate] = ACTIONS(12441), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteurl] = ACTIONS(12441), + [anon_sym_BSLASHfullcite] = ACTIONS(12441), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12441), + [anon_sym_BSLASHcitealt] = ACTIONS(12441), + [anon_sym_BSLASHcitealp] = ACTIONS(12441), + [anon_sym_BSLASHcitetext] = ACTIONS(12441), + [anon_sym_BSLASHparencite] = ACTIONS(12441), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHParencite] = ACTIONS(12441), + [anon_sym_BSLASHfootcite] = ACTIONS(12441), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12441), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12441), + [anon_sym_BSLASHtextcite] = ACTIONS(12441), + [anon_sym_BSLASHTextcite] = ACTIONS(12441), + [anon_sym_BSLASHsmartcite] = ACTIONS(12441), + [anon_sym_BSLASHSmartcite] = ACTIONS(12441), + [anon_sym_BSLASHsupercite] = ACTIONS(12441), + [anon_sym_BSLASHautocite] = ACTIONS(12441), + [anon_sym_BSLASHAutocite] = ACTIONS(12441), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHvolcite] = ACTIONS(12441), + [anon_sym_BSLASHVolcite] = ACTIONS(12441), + [anon_sym_BSLASHpvolcite] = ACTIONS(12441), + [anon_sym_BSLASHPvolcite] = ACTIONS(12441), + [anon_sym_BSLASHfvolcite] = ACTIONS(12441), + [anon_sym_BSLASHftvolcite] = ACTIONS(12441), + [anon_sym_BSLASHsvolcite] = ACTIONS(12441), + [anon_sym_BSLASHSvolcite] = ACTIONS(12441), + [anon_sym_BSLASHtvolcite] = ACTIONS(12441), + [anon_sym_BSLASHTvolcite] = ACTIONS(12441), + [anon_sym_BSLASHavolcite] = ACTIONS(12441), + [anon_sym_BSLASHAvolcite] = ACTIONS(12441), + [anon_sym_BSLASHnotecite] = ACTIONS(12441), + [anon_sym_BSLASHpnotecite] = ACTIONS(12441), + [anon_sym_BSLASHPnotecite] = ACTIONS(12441), + [anon_sym_BSLASHfnotecite] = ACTIONS(12441), + [anon_sym_BSLASHusepackage] = ACTIONS(12441), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12441), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12441), + [anon_sym_BSLASHinclude] = ACTIONS(12441), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12441), + [anon_sym_BSLASHinput] = ACTIONS(12441), + [anon_sym_BSLASHsubfile] = ACTIONS(12441), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12441), + [anon_sym_BSLASHbibliography] = ACTIONS(12441), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12441), + [anon_sym_BSLASHincludesvg] = ACTIONS(12441), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12441), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12441), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12441), + [anon_sym_BSLASHimport] = ACTIONS(12441), + [anon_sym_BSLASHsubimport] = ACTIONS(12441), + [anon_sym_BSLASHinputfrom] = ACTIONS(12441), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12441), + [anon_sym_BSLASHincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHlabel] = ACTIONS(12441), + [anon_sym_BSLASHref] = ACTIONS(12441), + [anon_sym_BSLASHvref] = ACTIONS(12441), + [anon_sym_BSLASHVref] = ACTIONS(12441), + [anon_sym_BSLASHautoref] = ACTIONS(12441), + [anon_sym_BSLASHpageref] = ACTIONS(12441), + [anon_sym_BSLASHcref] = ACTIONS(12441), + [anon_sym_BSLASHCref] = ACTIONS(12441), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnameCref] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHlabelcref] = ACTIONS(12441), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12441), + [anon_sym_BSLASHeqref] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange] = ACTIONS(12441), + [anon_sym_BSLASHCrefrange] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewlabel] = ACTIONS(12441), + [anon_sym_BSLASHnewcommand] = ACTIONS(12441), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12441), + [anon_sym_BSLASHgls] = ACTIONS(12441), + [anon_sym_BSLASHGls] = ACTIONS(12441), + [anon_sym_BSLASHGLS] = ACTIONS(12441), + [anon_sym_BSLASHglspl] = ACTIONS(12441), + [anon_sym_BSLASHGlspl] = ACTIONS(12441), + [anon_sym_BSLASHGLSpl] = ACTIONS(12441), + [anon_sym_BSLASHglsdisp] = ACTIONS(12441), + [anon_sym_BSLASHglslink] = ACTIONS(12441), + [anon_sym_BSLASHglstext] = ACTIONS(12441), + [anon_sym_BSLASHGlstext] = ACTIONS(12441), + [anon_sym_BSLASHGLStext] = ACTIONS(12441), + [anon_sym_BSLASHglsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12441), + [anon_sym_BSLASHglsplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSplural] = ACTIONS(12441), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHglsname] = ACTIONS(12441), + [anon_sym_BSLASHGlsname] = ACTIONS(12441), + [anon_sym_BSLASHGLSname] = ACTIONS(12441), + [anon_sym_BSLASHglssymbol] = ACTIONS(12441), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12441), + [anon_sym_BSLASHglsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12441), + [anon_sym_BSLASHglsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12441), + [anon_sym_BSLASHglsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12441), + [anon_sym_BSLASHglsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12441), + [anon_sym_BSLASHglsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12441), + [anon_sym_BSLASHnewacronym] = ACTIONS(12441), + [anon_sym_BSLASHacrshort] = ACTIONS(12441), + [anon_sym_BSLASHAcrshort] = ACTIONS(12441), + [anon_sym_BSLASHACRshort] = ACTIONS(12441), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12441), + [anon_sym_BSLASHacrlong] = ACTIONS(12441), + [anon_sym_BSLASHAcrlong] = ACTIONS(12441), + [anon_sym_BSLASHACRlong] = ACTIONS(12441), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12441), + [anon_sym_BSLASHacrfull] = ACTIONS(12441), + [anon_sym_BSLASHAcrfull] = ACTIONS(12441), + [anon_sym_BSLASHACRfull] = ACTIONS(12441), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12441), + [anon_sym_BSLASHacs] = ACTIONS(12441), + [anon_sym_BSLASHAcs] = ACTIONS(12441), + [anon_sym_BSLASHacsp] = ACTIONS(12441), + [anon_sym_BSLASHAcsp] = ACTIONS(12441), + [anon_sym_BSLASHacl] = ACTIONS(12441), + [anon_sym_BSLASHAcl] = ACTIONS(12441), + [anon_sym_BSLASHaclp] = ACTIONS(12441), + [anon_sym_BSLASHAclp] = ACTIONS(12441), + [anon_sym_BSLASHacf] = ACTIONS(12441), + [anon_sym_BSLASHAcf] = ACTIONS(12441), + [anon_sym_BSLASHacfp] = ACTIONS(12441), + [anon_sym_BSLASHAcfp] = ACTIONS(12441), + [anon_sym_BSLASHac] = ACTIONS(12441), + [anon_sym_BSLASHAc] = ACTIONS(12441), + [anon_sym_BSLASHacp] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12441), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12441), + [anon_sym_BSLASHcolor] = ACTIONS(12441), + [anon_sym_BSLASHcolorbox] = ACTIONS(12441), + [anon_sym_BSLASHtextcolor] = ACTIONS(12441), + [anon_sym_BSLASHpagecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12441), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12441), + }, + [1306] = { + [sym_generic_command_name] = ACTIONS(12445), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12445), + [aux_sym_subsubsection_token1] = ACTIONS(12445), + [aux_sym_paragraph_token1] = ACTIONS(12445), + [aux_sym_subparagraph_token1] = ACTIONS(12445), + [anon_sym_BSLASHitem] = ACTIONS(12445), + [anon_sym_LBRACK] = ACTIONS(12443), + [anon_sym_RBRACK] = ACTIONS(12443), + [anon_sym_LBRACE] = ACTIONS(12443), + [anon_sym_RBRACE] = ACTIONS(12443), + [anon_sym_LPAREN] = ACTIONS(12443), + [anon_sym_COMMA] = ACTIONS(12443), + [anon_sym_EQ] = ACTIONS(12443), + [sym_word] = ACTIONS(12443), + [sym_param] = ACTIONS(12443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12443), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12443), + [anon_sym_DOLLAR] = ACTIONS(12445), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12443), + [anon_sym_BSLASHbegin] = ACTIONS(12445), + [anon_sym_BSLASHcaption] = ACTIONS(12445), + [anon_sym_BSLASHcite] = ACTIONS(12445), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCite] = ACTIONS(12445), + [anon_sym_BSLASHnocite] = ACTIONS(12445), + [anon_sym_BSLASHcitet] = ACTIONS(12445), + [anon_sym_BSLASHcitep] = ACTIONS(12445), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteauthor] = ACTIONS(12445), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12445), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitetitle] = ACTIONS(12445), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteyear] = ACTIONS(12445), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitedate] = ACTIONS(12445), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteurl] = ACTIONS(12445), + [anon_sym_BSLASHfullcite] = ACTIONS(12445), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12445), + [anon_sym_BSLASHcitealt] = ACTIONS(12445), + [anon_sym_BSLASHcitealp] = ACTIONS(12445), + [anon_sym_BSLASHcitetext] = ACTIONS(12445), + [anon_sym_BSLASHparencite] = ACTIONS(12445), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHParencite] = ACTIONS(12445), + [anon_sym_BSLASHfootcite] = ACTIONS(12445), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12445), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12445), + [anon_sym_BSLASHtextcite] = ACTIONS(12445), + [anon_sym_BSLASHTextcite] = ACTIONS(12445), + [anon_sym_BSLASHsmartcite] = ACTIONS(12445), + [anon_sym_BSLASHSmartcite] = ACTIONS(12445), + [anon_sym_BSLASHsupercite] = ACTIONS(12445), + [anon_sym_BSLASHautocite] = ACTIONS(12445), + [anon_sym_BSLASHAutocite] = ACTIONS(12445), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHvolcite] = ACTIONS(12445), + [anon_sym_BSLASHVolcite] = ACTIONS(12445), + [anon_sym_BSLASHpvolcite] = ACTIONS(12445), + [anon_sym_BSLASHPvolcite] = ACTIONS(12445), + [anon_sym_BSLASHfvolcite] = ACTIONS(12445), + [anon_sym_BSLASHftvolcite] = ACTIONS(12445), + [anon_sym_BSLASHsvolcite] = ACTIONS(12445), + [anon_sym_BSLASHSvolcite] = ACTIONS(12445), + [anon_sym_BSLASHtvolcite] = ACTIONS(12445), + [anon_sym_BSLASHTvolcite] = ACTIONS(12445), + [anon_sym_BSLASHavolcite] = ACTIONS(12445), + [anon_sym_BSLASHAvolcite] = ACTIONS(12445), + [anon_sym_BSLASHnotecite] = ACTIONS(12445), + [anon_sym_BSLASHpnotecite] = ACTIONS(12445), + [anon_sym_BSLASHPnotecite] = ACTIONS(12445), + [anon_sym_BSLASHfnotecite] = ACTIONS(12445), + [anon_sym_BSLASHusepackage] = ACTIONS(12445), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12445), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12445), + [anon_sym_BSLASHinclude] = ACTIONS(12445), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12445), + [anon_sym_BSLASHinput] = ACTIONS(12445), + [anon_sym_BSLASHsubfile] = ACTIONS(12445), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12445), + [anon_sym_BSLASHbibliography] = ACTIONS(12445), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12445), + [anon_sym_BSLASHincludesvg] = ACTIONS(12445), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12445), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12445), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12445), + [anon_sym_BSLASHimport] = ACTIONS(12445), + [anon_sym_BSLASHsubimport] = ACTIONS(12445), + [anon_sym_BSLASHinputfrom] = ACTIONS(12445), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12445), + [anon_sym_BSLASHincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHlabel] = ACTIONS(12445), + [anon_sym_BSLASHref] = ACTIONS(12445), + [anon_sym_BSLASHvref] = ACTIONS(12445), + [anon_sym_BSLASHVref] = ACTIONS(12445), + [anon_sym_BSLASHautoref] = ACTIONS(12445), + [anon_sym_BSLASHpageref] = ACTIONS(12445), + [anon_sym_BSLASHcref] = ACTIONS(12445), + [anon_sym_BSLASHCref] = ACTIONS(12445), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnameCref] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHlabelcref] = ACTIONS(12445), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12445), + [anon_sym_BSLASHeqref] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange] = ACTIONS(12445), + [anon_sym_BSLASHCrefrange] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewlabel] = ACTIONS(12445), + [anon_sym_BSLASHnewcommand] = ACTIONS(12445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12445), + [anon_sym_BSLASHgls] = ACTIONS(12445), + [anon_sym_BSLASHGls] = ACTIONS(12445), + [anon_sym_BSLASHGLS] = ACTIONS(12445), + [anon_sym_BSLASHglspl] = ACTIONS(12445), + [anon_sym_BSLASHGlspl] = ACTIONS(12445), + [anon_sym_BSLASHGLSpl] = ACTIONS(12445), + [anon_sym_BSLASHglsdisp] = ACTIONS(12445), + [anon_sym_BSLASHglslink] = ACTIONS(12445), + [anon_sym_BSLASHglstext] = ACTIONS(12445), + [anon_sym_BSLASHGlstext] = ACTIONS(12445), + [anon_sym_BSLASHGLStext] = ACTIONS(12445), + [anon_sym_BSLASHglsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12445), + [anon_sym_BSLASHglsplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSplural] = ACTIONS(12445), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHglsname] = ACTIONS(12445), + [anon_sym_BSLASHGlsname] = ACTIONS(12445), + [anon_sym_BSLASHGLSname] = ACTIONS(12445), + [anon_sym_BSLASHglssymbol] = ACTIONS(12445), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12445), + [anon_sym_BSLASHglsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12445), + [anon_sym_BSLASHglsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12445), + [anon_sym_BSLASHglsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12445), + [anon_sym_BSLASHglsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12445), + [anon_sym_BSLASHglsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12445), + [anon_sym_BSLASHnewacronym] = ACTIONS(12445), + [anon_sym_BSLASHacrshort] = ACTIONS(12445), + [anon_sym_BSLASHAcrshort] = ACTIONS(12445), + [anon_sym_BSLASHACRshort] = ACTIONS(12445), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12445), + [anon_sym_BSLASHacrlong] = ACTIONS(12445), + [anon_sym_BSLASHAcrlong] = ACTIONS(12445), + [anon_sym_BSLASHACRlong] = ACTIONS(12445), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12445), + [anon_sym_BSLASHacrfull] = ACTIONS(12445), + [anon_sym_BSLASHAcrfull] = ACTIONS(12445), + [anon_sym_BSLASHACRfull] = ACTIONS(12445), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12445), + [anon_sym_BSLASHacs] = ACTIONS(12445), + [anon_sym_BSLASHAcs] = ACTIONS(12445), + [anon_sym_BSLASHacsp] = ACTIONS(12445), + [anon_sym_BSLASHAcsp] = ACTIONS(12445), + [anon_sym_BSLASHacl] = ACTIONS(12445), + [anon_sym_BSLASHAcl] = ACTIONS(12445), + [anon_sym_BSLASHaclp] = ACTIONS(12445), + [anon_sym_BSLASHAclp] = ACTIONS(12445), + [anon_sym_BSLASHacf] = ACTIONS(12445), + [anon_sym_BSLASHAcf] = ACTIONS(12445), + [anon_sym_BSLASHacfp] = ACTIONS(12445), + [anon_sym_BSLASHAcfp] = ACTIONS(12445), + [anon_sym_BSLASHac] = ACTIONS(12445), + [anon_sym_BSLASHAc] = ACTIONS(12445), + [anon_sym_BSLASHacp] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12445), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12445), + [anon_sym_BSLASHcolor] = ACTIONS(12445), + [anon_sym_BSLASHcolorbox] = ACTIONS(12445), + [anon_sym_BSLASHtextcolor] = ACTIONS(12445), + [anon_sym_BSLASHpagecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12445), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12445), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12445), + }, + [1307] = { + [sym_generic_command_name] = ACTIONS(12201), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12201), + [aux_sym_subsubsection_token1] = ACTIONS(12201), + [aux_sym_paragraph_token1] = ACTIONS(12201), + [aux_sym_subparagraph_token1] = ACTIONS(12201), + [anon_sym_BSLASHitem] = ACTIONS(12201), + [anon_sym_LBRACK] = ACTIONS(12199), + [anon_sym_RBRACK] = ACTIONS(12199), + [anon_sym_LBRACE] = ACTIONS(12199), + [anon_sym_RBRACE] = ACTIONS(12199), + [anon_sym_LPAREN] = ACTIONS(12199), + [anon_sym_COMMA] = ACTIONS(12199), + [anon_sym_EQ] = ACTIONS(12199), + [sym_word] = ACTIONS(12199), + [sym_param] = ACTIONS(12199), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12199), + [anon_sym_DOLLAR] = ACTIONS(12201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12199), + [anon_sym_BSLASHbegin] = ACTIONS(12201), + [anon_sym_BSLASHcaption] = ACTIONS(12201), + [anon_sym_BSLASHcite] = ACTIONS(12201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCite] = ACTIONS(12201), + [anon_sym_BSLASHnocite] = ACTIONS(12201), + [anon_sym_BSLASHcitet] = ACTIONS(12201), + [anon_sym_BSLASHcitep] = ACTIONS(12201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteauthor] = ACTIONS(12201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitetitle] = ACTIONS(12201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteyear] = ACTIONS(12201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitedate] = ACTIONS(12201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteurl] = ACTIONS(12201), + [anon_sym_BSLASHfullcite] = ACTIONS(12201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12201), + [anon_sym_BSLASHcitealt] = ACTIONS(12201), + [anon_sym_BSLASHcitealp] = ACTIONS(12201), + [anon_sym_BSLASHcitetext] = ACTIONS(12201), + [anon_sym_BSLASHparencite] = ACTIONS(12201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHParencite] = ACTIONS(12201), + [anon_sym_BSLASHfootcite] = ACTIONS(12201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12201), + [anon_sym_BSLASHtextcite] = ACTIONS(12201), + [anon_sym_BSLASHTextcite] = ACTIONS(12201), + [anon_sym_BSLASHsmartcite] = ACTIONS(12201), + [anon_sym_BSLASHSmartcite] = ACTIONS(12201), + [anon_sym_BSLASHsupercite] = ACTIONS(12201), + [anon_sym_BSLASHautocite] = ACTIONS(12201), + [anon_sym_BSLASHAutocite] = ACTIONS(12201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHvolcite] = ACTIONS(12201), + [anon_sym_BSLASHVolcite] = ACTIONS(12201), + [anon_sym_BSLASHpvolcite] = ACTIONS(12201), + [anon_sym_BSLASHPvolcite] = ACTIONS(12201), + [anon_sym_BSLASHfvolcite] = ACTIONS(12201), + [anon_sym_BSLASHftvolcite] = ACTIONS(12201), + [anon_sym_BSLASHsvolcite] = ACTIONS(12201), + [anon_sym_BSLASHSvolcite] = ACTIONS(12201), + [anon_sym_BSLASHtvolcite] = ACTIONS(12201), + [anon_sym_BSLASHTvolcite] = ACTIONS(12201), + [anon_sym_BSLASHavolcite] = ACTIONS(12201), + [anon_sym_BSLASHAvolcite] = ACTIONS(12201), + [anon_sym_BSLASHnotecite] = ACTIONS(12201), + [anon_sym_BSLASHpnotecite] = ACTIONS(12201), + [anon_sym_BSLASHPnotecite] = ACTIONS(12201), + [anon_sym_BSLASHfnotecite] = ACTIONS(12201), + [anon_sym_BSLASHusepackage] = ACTIONS(12201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12201), + [anon_sym_BSLASHinclude] = ACTIONS(12201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12201), + [anon_sym_BSLASHinput] = ACTIONS(12201), + [anon_sym_BSLASHsubfile] = ACTIONS(12201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12201), + [anon_sym_BSLASHbibliography] = ACTIONS(12201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12201), + [anon_sym_BSLASHincludesvg] = ACTIONS(12201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12201), + [anon_sym_BSLASHimport] = ACTIONS(12201), + [anon_sym_BSLASHsubimport] = ACTIONS(12201), + [anon_sym_BSLASHinputfrom] = ACTIONS(12201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12201), + [anon_sym_BSLASHincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHlabel] = ACTIONS(12201), + [anon_sym_BSLASHref] = ACTIONS(12201), + [anon_sym_BSLASHvref] = ACTIONS(12201), + [anon_sym_BSLASHVref] = ACTIONS(12201), + [anon_sym_BSLASHautoref] = ACTIONS(12201), + [anon_sym_BSLASHpageref] = ACTIONS(12201), + [anon_sym_BSLASHcref] = ACTIONS(12201), + [anon_sym_BSLASHCref] = ACTIONS(12201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnameCref] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHlabelcref] = ACTIONS(12201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12201), + [anon_sym_BSLASHeqref] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange] = ACTIONS(12201), + [anon_sym_BSLASHCrefrange] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewlabel] = ACTIONS(12201), + [anon_sym_BSLASHnewcommand] = ACTIONS(12201), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12201), + [anon_sym_BSLASHgls] = ACTIONS(12201), + [anon_sym_BSLASHGls] = ACTIONS(12201), + [anon_sym_BSLASHGLS] = ACTIONS(12201), + [anon_sym_BSLASHglspl] = ACTIONS(12201), + [anon_sym_BSLASHGlspl] = ACTIONS(12201), + [anon_sym_BSLASHGLSpl] = ACTIONS(12201), + [anon_sym_BSLASHglsdisp] = ACTIONS(12201), + [anon_sym_BSLASHglslink] = ACTIONS(12201), + [anon_sym_BSLASHglstext] = ACTIONS(12201), + [anon_sym_BSLASHGlstext] = ACTIONS(12201), + [anon_sym_BSLASHGLStext] = ACTIONS(12201), + [anon_sym_BSLASHglsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12201), + [anon_sym_BSLASHglsplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSplural] = ACTIONS(12201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHglsname] = ACTIONS(12201), + [anon_sym_BSLASHGlsname] = ACTIONS(12201), + [anon_sym_BSLASHGLSname] = ACTIONS(12201), + [anon_sym_BSLASHglssymbol] = ACTIONS(12201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12201), + [anon_sym_BSLASHglsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12201), + [anon_sym_BSLASHglsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12201), + [anon_sym_BSLASHglsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12201), + [anon_sym_BSLASHglsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12201), + [anon_sym_BSLASHglsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12201), + [anon_sym_BSLASHnewacronym] = ACTIONS(12201), + [anon_sym_BSLASHacrshort] = ACTIONS(12201), + [anon_sym_BSLASHAcrshort] = ACTIONS(12201), + [anon_sym_BSLASHACRshort] = ACTIONS(12201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12201), + [anon_sym_BSLASHacrlong] = ACTIONS(12201), + [anon_sym_BSLASHAcrlong] = ACTIONS(12201), + [anon_sym_BSLASHACRlong] = ACTIONS(12201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12201), + [anon_sym_BSLASHacrfull] = ACTIONS(12201), + [anon_sym_BSLASHAcrfull] = ACTIONS(12201), + [anon_sym_BSLASHACRfull] = ACTIONS(12201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12201), + [anon_sym_BSLASHacs] = ACTIONS(12201), + [anon_sym_BSLASHAcs] = ACTIONS(12201), + [anon_sym_BSLASHacsp] = ACTIONS(12201), + [anon_sym_BSLASHAcsp] = ACTIONS(12201), + [anon_sym_BSLASHacl] = ACTIONS(12201), + [anon_sym_BSLASHAcl] = ACTIONS(12201), + [anon_sym_BSLASHaclp] = ACTIONS(12201), + [anon_sym_BSLASHAclp] = ACTIONS(12201), + [anon_sym_BSLASHacf] = ACTIONS(12201), + [anon_sym_BSLASHAcf] = ACTIONS(12201), + [anon_sym_BSLASHacfp] = ACTIONS(12201), + [anon_sym_BSLASHAcfp] = ACTIONS(12201), + [anon_sym_BSLASHac] = ACTIONS(12201), + [anon_sym_BSLASHAc] = ACTIONS(12201), + [anon_sym_BSLASHacp] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12201), + [anon_sym_BSLASHcolor] = ACTIONS(12201), + [anon_sym_BSLASHcolorbox] = ACTIONS(12201), + [anon_sym_BSLASHtextcolor] = ACTIONS(12201), + [anon_sym_BSLASHpagecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12201), + }, + [1308] = { + [sym_generic_command_name] = ACTIONS(12449), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12449), + [aux_sym_subsubsection_token1] = ACTIONS(12449), + [aux_sym_paragraph_token1] = ACTIONS(12449), + [aux_sym_subparagraph_token1] = ACTIONS(12449), + [anon_sym_BSLASHitem] = ACTIONS(12449), + [anon_sym_LBRACK] = ACTIONS(12447), + [anon_sym_RBRACK] = ACTIONS(12447), + [anon_sym_LBRACE] = ACTIONS(12447), + [anon_sym_RBRACE] = ACTIONS(12447), + [anon_sym_LPAREN] = ACTIONS(12447), + [anon_sym_COMMA] = ACTIONS(12447), + [anon_sym_EQ] = ACTIONS(12447), + [sym_word] = ACTIONS(12447), + [sym_param] = ACTIONS(12447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12447), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12447), + [anon_sym_DOLLAR] = ACTIONS(12449), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12447), + [anon_sym_BSLASHbegin] = ACTIONS(12449), + [anon_sym_BSLASHcaption] = ACTIONS(12449), + [anon_sym_BSLASHcite] = ACTIONS(12449), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCite] = ACTIONS(12449), + [anon_sym_BSLASHnocite] = ACTIONS(12449), + [anon_sym_BSLASHcitet] = ACTIONS(12449), + [anon_sym_BSLASHcitep] = ACTIONS(12449), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteauthor] = ACTIONS(12449), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12449), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitetitle] = ACTIONS(12449), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteyear] = ACTIONS(12449), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitedate] = ACTIONS(12449), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteurl] = ACTIONS(12449), + [anon_sym_BSLASHfullcite] = ACTIONS(12449), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12449), + [anon_sym_BSLASHcitealt] = ACTIONS(12449), + [anon_sym_BSLASHcitealp] = ACTIONS(12449), + [anon_sym_BSLASHcitetext] = ACTIONS(12449), + [anon_sym_BSLASHparencite] = ACTIONS(12449), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHParencite] = ACTIONS(12449), + [anon_sym_BSLASHfootcite] = ACTIONS(12449), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12449), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12449), + [anon_sym_BSLASHtextcite] = ACTIONS(12449), + [anon_sym_BSLASHTextcite] = ACTIONS(12449), + [anon_sym_BSLASHsmartcite] = ACTIONS(12449), + [anon_sym_BSLASHSmartcite] = ACTIONS(12449), + [anon_sym_BSLASHsupercite] = ACTIONS(12449), + [anon_sym_BSLASHautocite] = ACTIONS(12449), + [anon_sym_BSLASHAutocite] = ACTIONS(12449), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHvolcite] = ACTIONS(12449), + [anon_sym_BSLASHVolcite] = ACTIONS(12449), + [anon_sym_BSLASHpvolcite] = ACTIONS(12449), + [anon_sym_BSLASHPvolcite] = ACTIONS(12449), + [anon_sym_BSLASHfvolcite] = ACTIONS(12449), + [anon_sym_BSLASHftvolcite] = ACTIONS(12449), + [anon_sym_BSLASHsvolcite] = ACTIONS(12449), + [anon_sym_BSLASHSvolcite] = ACTIONS(12449), + [anon_sym_BSLASHtvolcite] = ACTIONS(12449), + [anon_sym_BSLASHTvolcite] = ACTIONS(12449), + [anon_sym_BSLASHavolcite] = ACTIONS(12449), + [anon_sym_BSLASHAvolcite] = ACTIONS(12449), + [anon_sym_BSLASHnotecite] = ACTIONS(12449), + [anon_sym_BSLASHpnotecite] = ACTIONS(12449), + [anon_sym_BSLASHPnotecite] = ACTIONS(12449), + [anon_sym_BSLASHfnotecite] = ACTIONS(12449), + [anon_sym_BSLASHusepackage] = ACTIONS(12449), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12449), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12449), + [anon_sym_BSLASHinclude] = ACTIONS(12449), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12449), + [anon_sym_BSLASHinput] = ACTIONS(12449), + [anon_sym_BSLASHsubfile] = ACTIONS(12449), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12449), + [anon_sym_BSLASHbibliography] = ACTIONS(12449), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12449), + [anon_sym_BSLASHincludesvg] = ACTIONS(12449), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12449), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12449), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12449), + [anon_sym_BSLASHimport] = ACTIONS(12449), + [anon_sym_BSLASHsubimport] = ACTIONS(12449), + [anon_sym_BSLASHinputfrom] = ACTIONS(12449), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12449), + [anon_sym_BSLASHincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHlabel] = ACTIONS(12449), + [anon_sym_BSLASHref] = ACTIONS(12449), + [anon_sym_BSLASHvref] = ACTIONS(12449), + [anon_sym_BSLASHVref] = ACTIONS(12449), + [anon_sym_BSLASHautoref] = ACTIONS(12449), + [anon_sym_BSLASHpageref] = ACTIONS(12449), + [anon_sym_BSLASHcref] = ACTIONS(12449), + [anon_sym_BSLASHCref] = ACTIONS(12449), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnameCref] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHlabelcref] = ACTIONS(12449), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12449), + [anon_sym_BSLASHeqref] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange] = ACTIONS(12449), + [anon_sym_BSLASHCrefrange] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewlabel] = ACTIONS(12449), + [anon_sym_BSLASHnewcommand] = ACTIONS(12449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12449), + [anon_sym_BSLASHgls] = ACTIONS(12449), + [anon_sym_BSLASHGls] = ACTIONS(12449), + [anon_sym_BSLASHGLS] = ACTIONS(12449), + [anon_sym_BSLASHglspl] = ACTIONS(12449), + [anon_sym_BSLASHGlspl] = ACTIONS(12449), + [anon_sym_BSLASHGLSpl] = ACTIONS(12449), + [anon_sym_BSLASHglsdisp] = ACTIONS(12449), + [anon_sym_BSLASHglslink] = ACTIONS(12449), + [anon_sym_BSLASHglstext] = ACTIONS(12449), + [anon_sym_BSLASHGlstext] = ACTIONS(12449), + [anon_sym_BSLASHGLStext] = ACTIONS(12449), + [anon_sym_BSLASHglsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12449), + [anon_sym_BSLASHglsplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSplural] = ACTIONS(12449), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHglsname] = ACTIONS(12449), + [anon_sym_BSLASHGlsname] = ACTIONS(12449), + [anon_sym_BSLASHGLSname] = ACTIONS(12449), + [anon_sym_BSLASHglssymbol] = ACTIONS(12449), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12449), + [anon_sym_BSLASHglsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12449), + [anon_sym_BSLASHglsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12449), + [anon_sym_BSLASHglsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12449), + [anon_sym_BSLASHglsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12449), + [anon_sym_BSLASHglsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12449), + [anon_sym_BSLASHnewacronym] = ACTIONS(12449), + [anon_sym_BSLASHacrshort] = ACTIONS(12449), + [anon_sym_BSLASHAcrshort] = ACTIONS(12449), + [anon_sym_BSLASHACRshort] = ACTIONS(12449), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12449), + [anon_sym_BSLASHacrlong] = ACTIONS(12449), + [anon_sym_BSLASHAcrlong] = ACTIONS(12449), + [anon_sym_BSLASHACRlong] = ACTIONS(12449), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12449), + [anon_sym_BSLASHacrfull] = ACTIONS(12449), + [anon_sym_BSLASHAcrfull] = ACTIONS(12449), + [anon_sym_BSLASHACRfull] = ACTIONS(12449), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12449), + [anon_sym_BSLASHacs] = ACTIONS(12449), + [anon_sym_BSLASHAcs] = ACTIONS(12449), + [anon_sym_BSLASHacsp] = ACTIONS(12449), + [anon_sym_BSLASHAcsp] = ACTIONS(12449), + [anon_sym_BSLASHacl] = ACTIONS(12449), + [anon_sym_BSLASHAcl] = ACTIONS(12449), + [anon_sym_BSLASHaclp] = ACTIONS(12449), + [anon_sym_BSLASHAclp] = ACTIONS(12449), + [anon_sym_BSLASHacf] = ACTIONS(12449), + [anon_sym_BSLASHAcf] = ACTIONS(12449), + [anon_sym_BSLASHacfp] = ACTIONS(12449), + [anon_sym_BSLASHAcfp] = ACTIONS(12449), + [anon_sym_BSLASHac] = ACTIONS(12449), + [anon_sym_BSLASHAc] = ACTIONS(12449), + [anon_sym_BSLASHacp] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12449), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12449), + [anon_sym_BSLASHcolor] = ACTIONS(12449), + [anon_sym_BSLASHcolorbox] = ACTIONS(12449), + [anon_sym_BSLASHtextcolor] = ACTIONS(12449), + [anon_sym_BSLASHpagecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12449), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12449), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12449), + }, + [1309] = { + [sym_generic_command_name] = ACTIONS(12453), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12453), + [aux_sym_subsubsection_token1] = ACTIONS(12453), + [aux_sym_paragraph_token1] = ACTIONS(12453), + [aux_sym_subparagraph_token1] = ACTIONS(12453), + [anon_sym_BSLASHitem] = ACTIONS(12453), + [anon_sym_LBRACK] = ACTIONS(12451), + [anon_sym_RBRACK] = ACTIONS(12451), + [anon_sym_LBRACE] = ACTIONS(12451), + [anon_sym_RBRACE] = ACTIONS(12451), + [anon_sym_LPAREN] = ACTIONS(12451), + [anon_sym_COMMA] = ACTIONS(12451), + [anon_sym_EQ] = ACTIONS(12451), + [sym_word] = ACTIONS(12451), + [sym_param] = ACTIONS(12451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12451), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12451), + [anon_sym_DOLLAR] = ACTIONS(12453), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12451), + [anon_sym_BSLASHbegin] = ACTIONS(12453), + [anon_sym_BSLASHcaption] = ACTIONS(12453), + [anon_sym_BSLASHcite] = ACTIONS(12453), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCite] = ACTIONS(12453), + [anon_sym_BSLASHnocite] = ACTIONS(12453), + [anon_sym_BSLASHcitet] = ACTIONS(12453), + [anon_sym_BSLASHcitep] = ACTIONS(12453), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteauthor] = ACTIONS(12453), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12453), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitetitle] = ACTIONS(12453), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteyear] = ACTIONS(12453), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitedate] = ACTIONS(12453), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteurl] = ACTIONS(12453), + [anon_sym_BSLASHfullcite] = ACTIONS(12453), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12453), + [anon_sym_BSLASHcitealt] = ACTIONS(12453), + [anon_sym_BSLASHcitealp] = ACTIONS(12453), + [anon_sym_BSLASHcitetext] = ACTIONS(12453), + [anon_sym_BSLASHparencite] = ACTIONS(12453), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHParencite] = ACTIONS(12453), + [anon_sym_BSLASHfootcite] = ACTIONS(12453), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12453), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12453), + [anon_sym_BSLASHtextcite] = ACTIONS(12453), + [anon_sym_BSLASHTextcite] = ACTIONS(12453), + [anon_sym_BSLASHsmartcite] = ACTIONS(12453), + [anon_sym_BSLASHSmartcite] = ACTIONS(12453), + [anon_sym_BSLASHsupercite] = ACTIONS(12453), + [anon_sym_BSLASHautocite] = ACTIONS(12453), + [anon_sym_BSLASHAutocite] = ACTIONS(12453), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHvolcite] = ACTIONS(12453), + [anon_sym_BSLASHVolcite] = ACTIONS(12453), + [anon_sym_BSLASHpvolcite] = ACTIONS(12453), + [anon_sym_BSLASHPvolcite] = ACTIONS(12453), + [anon_sym_BSLASHfvolcite] = ACTIONS(12453), + [anon_sym_BSLASHftvolcite] = ACTIONS(12453), + [anon_sym_BSLASHsvolcite] = ACTIONS(12453), + [anon_sym_BSLASHSvolcite] = ACTIONS(12453), + [anon_sym_BSLASHtvolcite] = ACTIONS(12453), + [anon_sym_BSLASHTvolcite] = ACTIONS(12453), + [anon_sym_BSLASHavolcite] = ACTIONS(12453), + [anon_sym_BSLASHAvolcite] = ACTIONS(12453), + [anon_sym_BSLASHnotecite] = ACTIONS(12453), + [anon_sym_BSLASHpnotecite] = ACTIONS(12453), + [anon_sym_BSLASHPnotecite] = ACTIONS(12453), + [anon_sym_BSLASHfnotecite] = ACTIONS(12453), + [anon_sym_BSLASHusepackage] = ACTIONS(12453), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12453), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12453), + [anon_sym_BSLASHinclude] = ACTIONS(12453), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12453), + [anon_sym_BSLASHinput] = ACTIONS(12453), + [anon_sym_BSLASHsubfile] = ACTIONS(12453), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12453), + [anon_sym_BSLASHbibliography] = ACTIONS(12453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12453), + [anon_sym_BSLASHincludesvg] = ACTIONS(12453), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12453), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12453), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12453), + [anon_sym_BSLASHimport] = ACTIONS(12453), + [anon_sym_BSLASHsubimport] = ACTIONS(12453), + [anon_sym_BSLASHinputfrom] = ACTIONS(12453), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12453), + [anon_sym_BSLASHincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHlabel] = ACTIONS(12453), + [anon_sym_BSLASHref] = ACTIONS(12453), + [anon_sym_BSLASHvref] = ACTIONS(12453), + [anon_sym_BSLASHVref] = ACTIONS(12453), + [anon_sym_BSLASHautoref] = ACTIONS(12453), + [anon_sym_BSLASHpageref] = ACTIONS(12453), + [anon_sym_BSLASHcref] = ACTIONS(12453), + [anon_sym_BSLASHCref] = ACTIONS(12453), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnameCref] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHlabelcref] = ACTIONS(12453), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12453), + [anon_sym_BSLASHeqref] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange] = ACTIONS(12453), + [anon_sym_BSLASHCrefrange] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewlabel] = ACTIONS(12453), + [anon_sym_BSLASHnewcommand] = ACTIONS(12453), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12453), + [anon_sym_BSLASHgls] = ACTIONS(12453), + [anon_sym_BSLASHGls] = ACTIONS(12453), + [anon_sym_BSLASHGLS] = ACTIONS(12453), + [anon_sym_BSLASHglspl] = ACTIONS(12453), + [anon_sym_BSLASHGlspl] = ACTIONS(12453), + [anon_sym_BSLASHGLSpl] = ACTIONS(12453), + [anon_sym_BSLASHglsdisp] = ACTIONS(12453), + [anon_sym_BSLASHglslink] = ACTIONS(12453), + [anon_sym_BSLASHglstext] = ACTIONS(12453), + [anon_sym_BSLASHGlstext] = ACTIONS(12453), + [anon_sym_BSLASHGLStext] = ACTIONS(12453), + [anon_sym_BSLASHglsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12453), + [anon_sym_BSLASHglsplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSplural] = ACTIONS(12453), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHglsname] = ACTIONS(12453), + [anon_sym_BSLASHGlsname] = ACTIONS(12453), + [anon_sym_BSLASHGLSname] = ACTIONS(12453), + [anon_sym_BSLASHglssymbol] = ACTIONS(12453), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12453), + [anon_sym_BSLASHglsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12453), + [anon_sym_BSLASHglsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12453), + [anon_sym_BSLASHglsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12453), + [anon_sym_BSLASHglsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12453), + [anon_sym_BSLASHglsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12453), + [anon_sym_BSLASHnewacronym] = ACTIONS(12453), + [anon_sym_BSLASHacrshort] = ACTIONS(12453), + [anon_sym_BSLASHAcrshort] = ACTIONS(12453), + [anon_sym_BSLASHACRshort] = ACTIONS(12453), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12453), + [anon_sym_BSLASHacrlong] = ACTIONS(12453), + [anon_sym_BSLASHAcrlong] = ACTIONS(12453), + [anon_sym_BSLASHACRlong] = ACTIONS(12453), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12453), + [anon_sym_BSLASHacrfull] = ACTIONS(12453), + [anon_sym_BSLASHAcrfull] = ACTIONS(12453), + [anon_sym_BSLASHACRfull] = ACTIONS(12453), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12453), + [anon_sym_BSLASHacs] = ACTIONS(12453), + [anon_sym_BSLASHAcs] = ACTIONS(12453), + [anon_sym_BSLASHacsp] = ACTIONS(12453), + [anon_sym_BSLASHAcsp] = ACTIONS(12453), + [anon_sym_BSLASHacl] = ACTIONS(12453), + [anon_sym_BSLASHAcl] = ACTIONS(12453), + [anon_sym_BSLASHaclp] = ACTIONS(12453), + [anon_sym_BSLASHAclp] = ACTIONS(12453), + [anon_sym_BSLASHacf] = ACTIONS(12453), + [anon_sym_BSLASHAcf] = ACTIONS(12453), + [anon_sym_BSLASHacfp] = ACTIONS(12453), + [anon_sym_BSLASHAcfp] = ACTIONS(12453), + [anon_sym_BSLASHac] = ACTIONS(12453), + [anon_sym_BSLASHAc] = ACTIONS(12453), + [anon_sym_BSLASHacp] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12453), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12453), + [anon_sym_BSLASHcolor] = ACTIONS(12453), + [anon_sym_BSLASHcolorbox] = ACTIONS(12453), + [anon_sym_BSLASHtextcolor] = ACTIONS(12453), + [anon_sym_BSLASHpagecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12453), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12453), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12453), + }, + [1310] = { + [sym_generic_command_name] = ACTIONS(12461), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12461), + [aux_sym_subsubsection_token1] = ACTIONS(12461), + [aux_sym_paragraph_token1] = ACTIONS(12461), + [aux_sym_subparagraph_token1] = ACTIONS(12461), + [anon_sym_BSLASHitem] = ACTIONS(12461), + [anon_sym_LBRACK] = ACTIONS(12459), + [anon_sym_RBRACK] = ACTIONS(12459), + [anon_sym_LBRACE] = ACTIONS(12459), + [anon_sym_RBRACE] = ACTIONS(12459), + [anon_sym_LPAREN] = ACTIONS(12459), + [anon_sym_COMMA] = ACTIONS(12459), + [anon_sym_EQ] = ACTIONS(12459), + [sym_word] = ACTIONS(12459), + [sym_param] = ACTIONS(12459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12459), + [anon_sym_DOLLAR] = ACTIONS(12461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12459), + [anon_sym_BSLASHbegin] = ACTIONS(12461), + [anon_sym_BSLASHcaption] = ACTIONS(12461), + [anon_sym_BSLASHcite] = ACTIONS(12461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCite] = ACTIONS(12461), + [anon_sym_BSLASHnocite] = ACTIONS(12461), + [anon_sym_BSLASHcitet] = ACTIONS(12461), + [anon_sym_BSLASHcitep] = ACTIONS(12461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteauthor] = ACTIONS(12461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitetitle] = ACTIONS(12461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteyear] = ACTIONS(12461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitedate] = ACTIONS(12461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteurl] = ACTIONS(12461), + [anon_sym_BSLASHfullcite] = ACTIONS(12461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12461), + [anon_sym_BSLASHcitealt] = ACTIONS(12461), + [anon_sym_BSLASHcitealp] = ACTIONS(12461), + [anon_sym_BSLASHcitetext] = ACTIONS(12461), + [anon_sym_BSLASHparencite] = ACTIONS(12461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHParencite] = ACTIONS(12461), + [anon_sym_BSLASHfootcite] = ACTIONS(12461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12461), + [anon_sym_BSLASHtextcite] = ACTIONS(12461), + [anon_sym_BSLASHTextcite] = ACTIONS(12461), + [anon_sym_BSLASHsmartcite] = ACTIONS(12461), + [anon_sym_BSLASHSmartcite] = ACTIONS(12461), + [anon_sym_BSLASHsupercite] = ACTIONS(12461), + [anon_sym_BSLASHautocite] = ACTIONS(12461), + [anon_sym_BSLASHAutocite] = ACTIONS(12461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHvolcite] = ACTIONS(12461), + [anon_sym_BSLASHVolcite] = ACTIONS(12461), + [anon_sym_BSLASHpvolcite] = ACTIONS(12461), + [anon_sym_BSLASHPvolcite] = ACTIONS(12461), + [anon_sym_BSLASHfvolcite] = ACTIONS(12461), + [anon_sym_BSLASHftvolcite] = ACTIONS(12461), + [anon_sym_BSLASHsvolcite] = ACTIONS(12461), + [anon_sym_BSLASHSvolcite] = ACTIONS(12461), + [anon_sym_BSLASHtvolcite] = ACTIONS(12461), + [anon_sym_BSLASHTvolcite] = ACTIONS(12461), + [anon_sym_BSLASHavolcite] = ACTIONS(12461), + [anon_sym_BSLASHAvolcite] = ACTIONS(12461), + [anon_sym_BSLASHnotecite] = ACTIONS(12461), + [anon_sym_BSLASHpnotecite] = ACTIONS(12461), + [anon_sym_BSLASHPnotecite] = ACTIONS(12461), + [anon_sym_BSLASHfnotecite] = ACTIONS(12461), + [anon_sym_BSLASHusepackage] = ACTIONS(12461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12461), + [anon_sym_BSLASHinclude] = ACTIONS(12461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12461), + [anon_sym_BSLASHinput] = ACTIONS(12461), + [anon_sym_BSLASHsubfile] = ACTIONS(12461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12461), + [anon_sym_BSLASHbibliography] = ACTIONS(12461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12461), + [anon_sym_BSLASHincludesvg] = ACTIONS(12461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12461), + [anon_sym_BSLASHimport] = ACTIONS(12461), + [anon_sym_BSLASHsubimport] = ACTIONS(12461), + [anon_sym_BSLASHinputfrom] = ACTIONS(12461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12461), + [anon_sym_BSLASHincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHlabel] = ACTIONS(12461), + [anon_sym_BSLASHref] = ACTIONS(12461), + [anon_sym_BSLASHvref] = ACTIONS(12461), + [anon_sym_BSLASHVref] = ACTIONS(12461), + [anon_sym_BSLASHautoref] = ACTIONS(12461), + [anon_sym_BSLASHpageref] = ACTIONS(12461), + [anon_sym_BSLASHcref] = ACTIONS(12461), + [anon_sym_BSLASHCref] = ACTIONS(12461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnameCref] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHlabelcref] = ACTIONS(12461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12461), + [anon_sym_BSLASHeqref] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange] = ACTIONS(12461), + [anon_sym_BSLASHCrefrange] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewlabel] = ACTIONS(12461), + [anon_sym_BSLASHnewcommand] = ACTIONS(12461), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12461), + [anon_sym_BSLASHgls] = ACTIONS(12461), + [anon_sym_BSLASHGls] = ACTIONS(12461), + [anon_sym_BSLASHGLS] = ACTIONS(12461), + [anon_sym_BSLASHglspl] = ACTIONS(12461), + [anon_sym_BSLASHGlspl] = ACTIONS(12461), + [anon_sym_BSLASHGLSpl] = ACTIONS(12461), + [anon_sym_BSLASHglsdisp] = ACTIONS(12461), + [anon_sym_BSLASHglslink] = ACTIONS(12461), + [anon_sym_BSLASHglstext] = ACTIONS(12461), + [anon_sym_BSLASHGlstext] = ACTIONS(12461), + [anon_sym_BSLASHGLStext] = ACTIONS(12461), + [anon_sym_BSLASHglsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12461), + [anon_sym_BSLASHglsplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSplural] = ACTIONS(12461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHglsname] = ACTIONS(12461), + [anon_sym_BSLASHGlsname] = ACTIONS(12461), + [anon_sym_BSLASHGLSname] = ACTIONS(12461), + [anon_sym_BSLASHglssymbol] = ACTIONS(12461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12461), + [anon_sym_BSLASHglsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12461), + [anon_sym_BSLASHglsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12461), + [anon_sym_BSLASHglsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12461), + [anon_sym_BSLASHglsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12461), + [anon_sym_BSLASHglsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12461), + [anon_sym_BSLASHnewacronym] = ACTIONS(12461), + [anon_sym_BSLASHacrshort] = ACTIONS(12461), + [anon_sym_BSLASHAcrshort] = ACTIONS(12461), + [anon_sym_BSLASHACRshort] = ACTIONS(12461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12461), + [anon_sym_BSLASHacrlong] = ACTIONS(12461), + [anon_sym_BSLASHAcrlong] = ACTIONS(12461), + [anon_sym_BSLASHACRlong] = ACTIONS(12461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12461), + [anon_sym_BSLASHacrfull] = ACTIONS(12461), + [anon_sym_BSLASHAcrfull] = ACTIONS(12461), + [anon_sym_BSLASHACRfull] = ACTIONS(12461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12461), + [anon_sym_BSLASHacs] = ACTIONS(12461), + [anon_sym_BSLASHAcs] = ACTIONS(12461), + [anon_sym_BSLASHacsp] = ACTIONS(12461), + [anon_sym_BSLASHAcsp] = ACTIONS(12461), + [anon_sym_BSLASHacl] = ACTIONS(12461), + [anon_sym_BSLASHAcl] = ACTIONS(12461), + [anon_sym_BSLASHaclp] = ACTIONS(12461), + [anon_sym_BSLASHAclp] = ACTIONS(12461), + [anon_sym_BSLASHacf] = ACTIONS(12461), + [anon_sym_BSLASHAcf] = ACTIONS(12461), + [anon_sym_BSLASHacfp] = ACTIONS(12461), + [anon_sym_BSLASHAcfp] = ACTIONS(12461), + [anon_sym_BSLASHac] = ACTIONS(12461), + [anon_sym_BSLASHAc] = ACTIONS(12461), + [anon_sym_BSLASHacp] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12461), + [anon_sym_BSLASHcolor] = ACTIONS(12461), + [anon_sym_BSLASHcolorbox] = ACTIONS(12461), + [anon_sym_BSLASHtextcolor] = ACTIONS(12461), + [anon_sym_BSLASHpagecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12461), + }, + [1311] = { + [sym_generic_command_name] = ACTIONS(12465), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12465), + [aux_sym_subsubsection_token1] = ACTIONS(12465), + [aux_sym_paragraph_token1] = ACTIONS(12465), + [aux_sym_subparagraph_token1] = ACTIONS(12465), + [anon_sym_BSLASHitem] = ACTIONS(12465), + [anon_sym_LBRACK] = ACTIONS(12463), + [anon_sym_RBRACK] = ACTIONS(12463), + [anon_sym_LBRACE] = ACTIONS(12463), + [anon_sym_RBRACE] = ACTIONS(12463), + [anon_sym_LPAREN] = ACTIONS(12463), + [anon_sym_COMMA] = ACTIONS(12463), + [anon_sym_EQ] = ACTIONS(12463), + [sym_word] = ACTIONS(12463), + [sym_param] = ACTIONS(12463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12463), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12463), + [anon_sym_DOLLAR] = ACTIONS(12465), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12463), + [anon_sym_BSLASHbegin] = ACTIONS(12465), + [anon_sym_BSLASHcaption] = ACTIONS(12465), + [anon_sym_BSLASHcite] = ACTIONS(12465), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCite] = ACTIONS(12465), + [anon_sym_BSLASHnocite] = ACTIONS(12465), + [anon_sym_BSLASHcitet] = ACTIONS(12465), + [anon_sym_BSLASHcitep] = ACTIONS(12465), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteauthor] = ACTIONS(12465), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12465), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitetitle] = ACTIONS(12465), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteyear] = ACTIONS(12465), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitedate] = ACTIONS(12465), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteurl] = ACTIONS(12465), + [anon_sym_BSLASHfullcite] = ACTIONS(12465), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12465), + [anon_sym_BSLASHcitealt] = ACTIONS(12465), + [anon_sym_BSLASHcitealp] = ACTIONS(12465), + [anon_sym_BSLASHcitetext] = ACTIONS(12465), + [anon_sym_BSLASHparencite] = ACTIONS(12465), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHParencite] = ACTIONS(12465), + [anon_sym_BSLASHfootcite] = ACTIONS(12465), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12465), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12465), + [anon_sym_BSLASHtextcite] = ACTIONS(12465), + [anon_sym_BSLASHTextcite] = ACTIONS(12465), + [anon_sym_BSLASHsmartcite] = ACTIONS(12465), + [anon_sym_BSLASHSmartcite] = ACTIONS(12465), + [anon_sym_BSLASHsupercite] = ACTIONS(12465), + [anon_sym_BSLASHautocite] = ACTIONS(12465), + [anon_sym_BSLASHAutocite] = ACTIONS(12465), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHvolcite] = ACTIONS(12465), + [anon_sym_BSLASHVolcite] = ACTIONS(12465), + [anon_sym_BSLASHpvolcite] = ACTIONS(12465), + [anon_sym_BSLASHPvolcite] = ACTIONS(12465), + [anon_sym_BSLASHfvolcite] = ACTIONS(12465), + [anon_sym_BSLASHftvolcite] = ACTIONS(12465), + [anon_sym_BSLASHsvolcite] = ACTIONS(12465), + [anon_sym_BSLASHSvolcite] = ACTIONS(12465), + [anon_sym_BSLASHtvolcite] = ACTIONS(12465), + [anon_sym_BSLASHTvolcite] = ACTIONS(12465), + [anon_sym_BSLASHavolcite] = ACTIONS(12465), + [anon_sym_BSLASHAvolcite] = ACTIONS(12465), + [anon_sym_BSLASHnotecite] = ACTIONS(12465), + [anon_sym_BSLASHpnotecite] = ACTIONS(12465), + [anon_sym_BSLASHPnotecite] = ACTIONS(12465), + [anon_sym_BSLASHfnotecite] = ACTIONS(12465), + [anon_sym_BSLASHusepackage] = ACTIONS(12465), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12465), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12465), + [anon_sym_BSLASHinclude] = ACTIONS(12465), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12465), + [anon_sym_BSLASHinput] = ACTIONS(12465), + [anon_sym_BSLASHsubfile] = ACTIONS(12465), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12465), + [anon_sym_BSLASHbibliography] = ACTIONS(12465), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12465), + [anon_sym_BSLASHincludesvg] = ACTIONS(12465), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12465), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12465), + [anon_sym_BSLASHimport] = ACTIONS(12465), + [anon_sym_BSLASHsubimport] = ACTIONS(12465), + [anon_sym_BSLASHinputfrom] = ACTIONS(12465), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12465), + [anon_sym_BSLASHincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHlabel] = ACTIONS(12465), + [anon_sym_BSLASHref] = ACTIONS(12465), + [anon_sym_BSLASHvref] = ACTIONS(12465), + [anon_sym_BSLASHVref] = ACTIONS(12465), + [anon_sym_BSLASHautoref] = ACTIONS(12465), + [anon_sym_BSLASHpageref] = ACTIONS(12465), + [anon_sym_BSLASHcref] = ACTIONS(12465), + [anon_sym_BSLASHCref] = ACTIONS(12465), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnameCref] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHlabelcref] = ACTIONS(12465), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12465), + [anon_sym_BSLASHeqref] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange] = ACTIONS(12465), + [anon_sym_BSLASHCrefrange] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewlabel] = ACTIONS(12465), + [anon_sym_BSLASHnewcommand] = ACTIONS(12465), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12465), + [anon_sym_BSLASHgls] = ACTIONS(12465), + [anon_sym_BSLASHGls] = ACTIONS(12465), + [anon_sym_BSLASHGLS] = ACTIONS(12465), + [anon_sym_BSLASHglspl] = ACTIONS(12465), + [anon_sym_BSLASHGlspl] = ACTIONS(12465), + [anon_sym_BSLASHGLSpl] = ACTIONS(12465), + [anon_sym_BSLASHglsdisp] = ACTIONS(12465), + [anon_sym_BSLASHglslink] = ACTIONS(12465), + [anon_sym_BSLASHglstext] = ACTIONS(12465), + [anon_sym_BSLASHGlstext] = ACTIONS(12465), + [anon_sym_BSLASHGLStext] = ACTIONS(12465), + [anon_sym_BSLASHglsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12465), + [anon_sym_BSLASHglsplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSplural] = ACTIONS(12465), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHglsname] = ACTIONS(12465), + [anon_sym_BSLASHGlsname] = ACTIONS(12465), + [anon_sym_BSLASHGLSname] = ACTIONS(12465), + [anon_sym_BSLASHglssymbol] = ACTIONS(12465), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12465), + [anon_sym_BSLASHglsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12465), + [anon_sym_BSLASHglsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12465), + [anon_sym_BSLASHglsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12465), + [anon_sym_BSLASHglsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12465), + [anon_sym_BSLASHglsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12465), + [anon_sym_BSLASHnewacronym] = ACTIONS(12465), + [anon_sym_BSLASHacrshort] = ACTIONS(12465), + [anon_sym_BSLASHAcrshort] = ACTIONS(12465), + [anon_sym_BSLASHACRshort] = ACTIONS(12465), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12465), + [anon_sym_BSLASHacrlong] = ACTIONS(12465), + [anon_sym_BSLASHAcrlong] = ACTIONS(12465), + [anon_sym_BSLASHACRlong] = ACTIONS(12465), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12465), + [anon_sym_BSLASHacrfull] = ACTIONS(12465), + [anon_sym_BSLASHAcrfull] = ACTIONS(12465), + [anon_sym_BSLASHACRfull] = ACTIONS(12465), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12465), + [anon_sym_BSLASHacs] = ACTIONS(12465), + [anon_sym_BSLASHAcs] = ACTIONS(12465), + [anon_sym_BSLASHacsp] = ACTIONS(12465), + [anon_sym_BSLASHAcsp] = ACTIONS(12465), + [anon_sym_BSLASHacl] = ACTIONS(12465), + [anon_sym_BSLASHAcl] = ACTIONS(12465), + [anon_sym_BSLASHaclp] = ACTIONS(12465), + [anon_sym_BSLASHAclp] = ACTIONS(12465), + [anon_sym_BSLASHacf] = ACTIONS(12465), + [anon_sym_BSLASHAcf] = ACTIONS(12465), + [anon_sym_BSLASHacfp] = ACTIONS(12465), + [anon_sym_BSLASHAcfp] = ACTIONS(12465), + [anon_sym_BSLASHac] = ACTIONS(12465), + [anon_sym_BSLASHAc] = ACTIONS(12465), + [anon_sym_BSLASHacp] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12465), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12465), + [anon_sym_BSLASHcolor] = ACTIONS(12465), + [anon_sym_BSLASHcolorbox] = ACTIONS(12465), + [anon_sym_BSLASHtextcolor] = ACTIONS(12465), + [anon_sym_BSLASHpagecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12465), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12465), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12465), + }, + [1312] = { + [sym_generic_command_name] = ACTIONS(12469), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12469), + [aux_sym_subsubsection_token1] = ACTIONS(12469), + [aux_sym_paragraph_token1] = ACTIONS(12469), + [aux_sym_subparagraph_token1] = ACTIONS(12469), + [anon_sym_BSLASHitem] = ACTIONS(12469), + [anon_sym_LBRACK] = ACTIONS(12467), + [anon_sym_RBRACK] = ACTIONS(12467), + [anon_sym_LBRACE] = ACTIONS(12467), + [anon_sym_RBRACE] = ACTIONS(12467), + [anon_sym_LPAREN] = ACTIONS(12467), + [anon_sym_COMMA] = ACTIONS(12467), + [anon_sym_EQ] = ACTIONS(12467), + [sym_word] = ACTIONS(12467), + [sym_param] = ACTIONS(12467), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12467), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12467), + [anon_sym_DOLLAR] = ACTIONS(12469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12467), + [anon_sym_BSLASHbegin] = ACTIONS(12469), + [anon_sym_BSLASHcaption] = ACTIONS(12469), + [anon_sym_BSLASHcite] = ACTIONS(12469), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCite] = ACTIONS(12469), + [anon_sym_BSLASHnocite] = ACTIONS(12469), + [anon_sym_BSLASHcitet] = ACTIONS(12469), + [anon_sym_BSLASHcitep] = ACTIONS(12469), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteauthor] = ACTIONS(12469), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12469), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitetitle] = ACTIONS(12469), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteyear] = ACTIONS(12469), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitedate] = ACTIONS(12469), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteurl] = ACTIONS(12469), + [anon_sym_BSLASHfullcite] = ACTIONS(12469), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12469), + [anon_sym_BSLASHcitealt] = ACTIONS(12469), + [anon_sym_BSLASHcitealp] = ACTIONS(12469), + [anon_sym_BSLASHcitetext] = ACTIONS(12469), + [anon_sym_BSLASHparencite] = ACTIONS(12469), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHParencite] = ACTIONS(12469), + [anon_sym_BSLASHfootcite] = ACTIONS(12469), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12469), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12469), + [anon_sym_BSLASHtextcite] = ACTIONS(12469), + [anon_sym_BSLASHTextcite] = ACTIONS(12469), + [anon_sym_BSLASHsmartcite] = ACTIONS(12469), + [anon_sym_BSLASHSmartcite] = ACTIONS(12469), + [anon_sym_BSLASHsupercite] = ACTIONS(12469), + [anon_sym_BSLASHautocite] = ACTIONS(12469), + [anon_sym_BSLASHAutocite] = ACTIONS(12469), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHvolcite] = ACTIONS(12469), + [anon_sym_BSLASHVolcite] = ACTIONS(12469), + [anon_sym_BSLASHpvolcite] = ACTIONS(12469), + [anon_sym_BSLASHPvolcite] = ACTIONS(12469), + [anon_sym_BSLASHfvolcite] = ACTIONS(12469), + [anon_sym_BSLASHftvolcite] = ACTIONS(12469), + [anon_sym_BSLASHsvolcite] = ACTIONS(12469), + [anon_sym_BSLASHSvolcite] = ACTIONS(12469), + [anon_sym_BSLASHtvolcite] = ACTIONS(12469), + [anon_sym_BSLASHTvolcite] = ACTIONS(12469), + [anon_sym_BSLASHavolcite] = ACTIONS(12469), + [anon_sym_BSLASHAvolcite] = ACTIONS(12469), + [anon_sym_BSLASHnotecite] = ACTIONS(12469), + [anon_sym_BSLASHpnotecite] = ACTIONS(12469), + [anon_sym_BSLASHPnotecite] = ACTIONS(12469), + [anon_sym_BSLASHfnotecite] = ACTIONS(12469), + [anon_sym_BSLASHusepackage] = ACTIONS(12469), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12469), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12469), + [anon_sym_BSLASHinclude] = ACTIONS(12469), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12469), + [anon_sym_BSLASHinput] = ACTIONS(12469), + [anon_sym_BSLASHsubfile] = ACTIONS(12469), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12469), + [anon_sym_BSLASHbibliography] = ACTIONS(12469), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12469), + [anon_sym_BSLASHincludesvg] = ACTIONS(12469), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12469), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12469), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12469), + [anon_sym_BSLASHimport] = ACTIONS(12469), + [anon_sym_BSLASHsubimport] = ACTIONS(12469), + [anon_sym_BSLASHinputfrom] = ACTIONS(12469), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12469), + [anon_sym_BSLASHincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHlabel] = ACTIONS(12469), + [anon_sym_BSLASHref] = ACTIONS(12469), + [anon_sym_BSLASHvref] = ACTIONS(12469), + [anon_sym_BSLASHVref] = ACTIONS(12469), + [anon_sym_BSLASHautoref] = ACTIONS(12469), + [anon_sym_BSLASHpageref] = ACTIONS(12469), + [anon_sym_BSLASHcref] = ACTIONS(12469), + [anon_sym_BSLASHCref] = ACTIONS(12469), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnameCref] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHlabelcref] = ACTIONS(12469), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12469), + [anon_sym_BSLASHeqref] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange] = ACTIONS(12469), + [anon_sym_BSLASHCrefrange] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewlabel] = ACTIONS(12469), + [anon_sym_BSLASHnewcommand] = ACTIONS(12469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12469), + [anon_sym_BSLASHgls] = ACTIONS(12469), + [anon_sym_BSLASHGls] = ACTIONS(12469), + [anon_sym_BSLASHGLS] = ACTIONS(12469), + [anon_sym_BSLASHglspl] = ACTIONS(12469), + [anon_sym_BSLASHGlspl] = ACTIONS(12469), + [anon_sym_BSLASHGLSpl] = ACTIONS(12469), + [anon_sym_BSLASHglsdisp] = ACTIONS(12469), + [anon_sym_BSLASHglslink] = ACTIONS(12469), + [anon_sym_BSLASHglstext] = ACTIONS(12469), + [anon_sym_BSLASHGlstext] = ACTIONS(12469), + [anon_sym_BSLASHGLStext] = ACTIONS(12469), + [anon_sym_BSLASHglsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12469), + [anon_sym_BSLASHglsplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSplural] = ACTIONS(12469), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHglsname] = ACTIONS(12469), + [anon_sym_BSLASHGlsname] = ACTIONS(12469), + [anon_sym_BSLASHGLSname] = ACTIONS(12469), + [anon_sym_BSLASHglssymbol] = ACTIONS(12469), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12469), + [anon_sym_BSLASHglsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12469), + [anon_sym_BSLASHglsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12469), + [anon_sym_BSLASHglsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12469), + [anon_sym_BSLASHglsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12469), + [anon_sym_BSLASHglsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12469), + [anon_sym_BSLASHnewacronym] = ACTIONS(12469), + [anon_sym_BSLASHacrshort] = ACTIONS(12469), + [anon_sym_BSLASHAcrshort] = ACTIONS(12469), + [anon_sym_BSLASHACRshort] = ACTIONS(12469), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12469), + [anon_sym_BSLASHacrlong] = ACTIONS(12469), + [anon_sym_BSLASHAcrlong] = ACTIONS(12469), + [anon_sym_BSLASHACRlong] = ACTIONS(12469), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12469), + [anon_sym_BSLASHacrfull] = ACTIONS(12469), + [anon_sym_BSLASHAcrfull] = ACTIONS(12469), + [anon_sym_BSLASHACRfull] = ACTIONS(12469), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12469), + [anon_sym_BSLASHacs] = ACTIONS(12469), + [anon_sym_BSLASHAcs] = ACTIONS(12469), + [anon_sym_BSLASHacsp] = ACTIONS(12469), + [anon_sym_BSLASHAcsp] = ACTIONS(12469), + [anon_sym_BSLASHacl] = ACTIONS(12469), + [anon_sym_BSLASHAcl] = ACTIONS(12469), + [anon_sym_BSLASHaclp] = ACTIONS(12469), + [anon_sym_BSLASHAclp] = ACTIONS(12469), + [anon_sym_BSLASHacf] = ACTIONS(12469), + [anon_sym_BSLASHAcf] = ACTIONS(12469), + [anon_sym_BSLASHacfp] = ACTIONS(12469), + [anon_sym_BSLASHAcfp] = ACTIONS(12469), + [anon_sym_BSLASHac] = ACTIONS(12469), + [anon_sym_BSLASHAc] = ACTIONS(12469), + [anon_sym_BSLASHacp] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12469), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12469), + [anon_sym_BSLASHcolor] = ACTIONS(12469), + [anon_sym_BSLASHcolorbox] = ACTIONS(12469), + [anon_sym_BSLASHtextcolor] = ACTIONS(12469), + [anon_sym_BSLASHpagecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12469), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12469), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12469), + }, + [1313] = { + [sym_generic_command_name] = ACTIONS(12477), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12477), + [aux_sym_subsubsection_token1] = ACTIONS(12477), + [aux_sym_paragraph_token1] = ACTIONS(12477), + [aux_sym_subparagraph_token1] = ACTIONS(12477), + [anon_sym_BSLASHitem] = ACTIONS(12477), + [anon_sym_LBRACK] = ACTIONS(12475), + [anon_sym_RBRACK] = ACTIONS(12475), + [anon_sym_LBRACE] = ACTIONS(12475), + [anon_sym_RBRACE] = ACTIONS(12475), + [anon_sym_LPAREN] = ACTIONS(12475), + [anon_sym_COMMA] = ACTIONS(12475), + [anon_sym_EQ] = ACTIONS(12475), + [sym_word] = ACTIONS(12475), + [sym_param] = ACTIONS(12475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12475), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12475), + [anon_sym_DOLLAR] = ACTIONS(12477), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12475), + [anon_sym_BSLASHbegin] = ACTIONS(12477), + [anon_sym_BSLASHcaption] = ACTIONS(12477), + [anon_sym_BSLASHcite] = ACTIONS(12477), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCite] = ACTIONS(12477), + [anon_sym_BSLASHnocite] = ACTIONS(12477), + [anon_sym_BSLASHcitet] = ACTIONS(12477), + [anon_sym_BSLASHcitep] = ACTIONS(12477), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteauthor] = ACTIONS(12477), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12477), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitetitle] = ACTIONS(12477), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteyear] = ACTIONS(12477), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitedate] = ACTIONS(12477), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteurl] = ACTIONS(12477), + [anon_sym_BSLASHfullcite] = ACTIONS(12477), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12477), + [anon_sym_BSLASHcitealt] = ACTIONS(12477), + [anon_sym_BSLASHcitealp] = ACTIONS(12477), + [anon_sym_BSLASHcitetext] = ACTIONS(12477), + [anon_sym_BSLASHparencite] = ACTIONS(12477), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHParencite] = ACTIONS(12477), + [anon_sym_BSLASHfootcite] = ACTIONS(12477), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12477), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12477), + [anon_sym_BSLASHtextcite] = ACTIONS(12477), + [anon_sym_BSLASHTextcite] = ACTIONS(12477), + [anon_sym_BSLASHsmartcite] = ACTIONS(12477), + [anon_sym_BSLASHSmartcite] = ACTIONS(12477), + [anon_sym_BSLASHsupercite] = ACTIONS(12477), + [anon_sym_BSLASHautocite] = ACTIONS(12477), + [anon_sym_BSLASHAutocite] = ACTIONS(12477), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHvolcite] = ACTIONS(12477), + [anon_sym_BSLASHVolcite] = ACTIONS(12477), + [anon_sym_BSLASHpvolcite] = ACTIONS(12477), + [anon_sym_BSLASHPvolcite] = ACTIONS(12477), + [anon_sym_BSLASHfvolcite] = ACTIONS(12477), + [anon_sym_BSLASHftvolcite] = ACTIONS(12477), + [anon_sym_BSLASHsvolcite] = ACTIONS(12477), + [anon_sym_BSLASHSvolcite] = ACTIONS(12477), + [anon_sym_BSLASHtvolcite] = ACTIONS(12477), + [anon_sym_BSLASHTvolcite] = ACTIONS(12477), + [anon_sym_BSLASHavolcite] = ACTIONS(12477), + [anon_sym_BSLASHAvolcite] = ACTIONS(12477), + [anon_sym_BSLASHnotecite] = ACTIONS(12477), + [anon_sym_BSLASHpnotecite] = ACTIONS(12477), + [anon_sym_BSLASHPnotecite] = ACTIONS(12477), + [anon_sym_BSLASHfnotecite] = ACTIONS(12477), + [anon_sym_BSLASHusepackage] = ACTIONS(12477), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12477), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12477), + [anon_sym_BSLASHinclude] = ACTIONS(12477), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12477), + [anon_sym_BSLASHinput] = ACTIONS(12477), + [anon_sym_BSLASHsubfile] = ACTIONS(12477), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12477), + [anon_sym_BSLASHbibliography] = ACTIONS(12477), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12477), + [anon_sym_BSLASHincludesvg] = ACTIONS(12477), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12477), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12477), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12477), + [anon_sym_BSLASHimport] = ACTIONS(12477), + [anon_sym_BSLASHsubimport] = ACTIONS(12477), + [anon_sym_BSLASHinputfrom] = ACTIONS(12477), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12477), + [anon_sym_BSLASHincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHlabel] = ACTIONS(12477), + [anon_sym_BSLASHref] = ACTIONS(12477), + [anon_sym_BSLASHvref] = ACTIONS(12477), + [anon_sym_BSLASHVref] = ACTIONS(12477), + [anon_sym_BSLASHautoref] = ACTIONS(12477), + [anon_sym_BSLASHpageref] = ACTIONS(12477), + [anon_sym_BSLASHcref] = ACTIONS(12477), + [anon_sym_BSLASHCref] = ACTIONS(12477), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnameCref] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHlabelcref] = ACTIONS(12477), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12477), + [anon_sym_BSLASHeqref] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange] = ACTIONS(12477), + [anon_sym_BSLASHCrefrange] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewlabel] = ACTIONS(12477), + [anon_sym_BSLASHnewcommand] = ACTIONS(12477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12477), + [anon_sym_BSLASHgls] = ACTIONS(12477), + [anon_sym_BSLASHGls] = ACTIONS(12477), + [anon_sym_BSLASHGLS] = ACTIONS(12477), + [anon_sym_BSLASHglspl] = ACTIONS(12477), + [anon_sym_BSLASHGlspl] = ACTIONS(12477), + [anon_sym_BSLASHGLSpl] = ACTIONS(12477), + [anon_sym_BSLASHglsdisp] = ACTIONS(12477), + [anon_sym_BSLASHglslink] = ACTIONS(12477), + [anon_sym_BSLASHglstext] = ACTIONS(12477), + [anon_sym_BSLASHGlstext] = ACTIONS(12477), + [anon_sym_BSLASHGLStext] = ACTIONS(12477), + [anon_sym_BSLASHglsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12477), + [anon_sym_BSLASHglsplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSplural] = ACTIONS(12477), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHglsname] = ACTIONS(12477), + [anon_sym_BSLASHGlsname] = ACTIONS(12477), + [anon_sym_BSLASHGLSname] = ACTIONS(12477), + [anon_sym_BSLASHglssymbol] = ACTIONS(12477), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12477), + [anon_sym_BSLASHglsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12477), + [anon_sym_BSLASHglsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12477), + [anon_sym_BSLASHglsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12477), + [anon_sym_BSLASHglsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12477), + [anon_sym_BSLASHglsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12477), + [anon_sym_BSLASHnewacronym] = ACTIONS(12477), + [anon_sym_BSLASHacrshort] = ACTIONS(12477), + [anon_sym_BSLASHAcrshort] = ACTIONS(12477), + [anon_sym_BSLASHACRshort] = ACTIONS(12477), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12477), + [anon_sym_BSLASHacrlong] = ACTIONS(12477), + [anon_sym_BSLASHAcrlong] = ACTIONS(12477), + [anon_sym_BSLASHACRlong] = ACTIONS(12477), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12477), + [anon_sym_BSLASHacrfull] = ACTIONS(12477), + [anon_sym_BSLASHAcrfull] = ACTIONS(12477), + [anon_sym_BSLASHACRfull] = ACTIONS(12477), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12477), + [anon_sym_BSLASHacs] = ACTIONS(12477), + [anon_sym_BSLASHAcs] = ACTIONS(12477), + [anon_sym_BSLASHacsp] = ACTIONS(12477), + [anon_sym_BSLASHAcsp] = ACTIONS(12477), + [anon_sym_BSLASHacl] = ACTIONS(12477), + [anon_sym_BSLASHAcl] = ACTIONS(12477), + [anon_sym_BSLASHaclp] = ACTIONS(12477), + [anon_sym_BSLASHAclp] = ACTIONS(12477), + [anon_sym_BSLASHacf] = ACTIONS(12477), + [anon_sym_BSLASHAcf] = ACTIONS(12477), + [anon_sym_BSLASHacfp] = ACTIONS(12477), + [anon_sym_BSLASHAcfp] = ACTIONS(12477), + [anon_sym_BSLASHac] = ACTIONS(12477), + [anon_sym_BSLASHAc] = ACTIONS(12477), + [anon_sym_BSLASHacp] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12477), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12477), + [anon_sym_BSLASHcolor] = ACTIONS(12477), + [anon_sym_BSLASHcolorbox] = ACTIONS(12477), + [anon_sym_BSLASHtextcolor] = ACTIONS(12477), + [anon_sym_BSLASHpagecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12477), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12477), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12477), + }, + [1314] = { + [sym_generic_command_name] = ACTIONS(12481), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12481), + [aux_sym_subsubsection_token1] = ACTIONS(12481), + [aux_sym_paragraph_token1] = ACTIONS(12481), + [aux_sym_subparagraph_token1] = ACTIONS(12481), + [anon_sym_BSLASHitem] = ACTIONS(12481), + [anon_sym_LBRACK] = ACTIONS(12479), + [anon_sym_RBRACK] = ACTIONS(12479), + [anon_sym_LBRACE] = ACTIONS(12479), + [anon_sym_RBRACE] = ACTIONS(12479), + [anon_sym_LPAREN] = ACTIONS(12479), + [anon_sym_COMMA] = ACTIONS(12479), + [anon_sym_EQ] = ACTIONS(12479), + [sym_word] = ACTIONS(12479), + [sym_param] = ACTIONS(12479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12479), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12479), + [anon_sym_DOLLAR] = ACTIONS(12481), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12479), + [anon_sym_BSLASHbegin] = ACTIONS(12481), + [anon_sym_BSLASHcaption] = ACTIONS(12481), + [anon_sym_BSLASHcite] = ACTIONS(12481), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCite] = ACTIONS(12481), + [anon_sym_BSLASHnocite] = ACTIONS(12481), + [anon_sym_BSLASHcitet] = ACTIONS(12481), + [anon_sym_BSLASHcitep] = ACTIONS(12481), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteauthor] = ACTIONS(12481), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12481), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitetitle] = ACTIONS(12481), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteyear] = ACTIONS(12481), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitedate] = ACTIONS(12481), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteurl] = ACTIONS(12481), + [anon_sym_BSLASHfullcite] = ACTIONS(12481), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12481), + [anon_sym_BSLASHcitealt] = ACTIONS(12481), + [anon_sym_BSLASHcitealp] = ACTIONS(12481), + [anon_sym_BSLASHcitetext] = ACTIONS(12481), + [anon_sym_BSLASHparencite] = ACTIONS(12481), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHParencite] = ACTIONS(12481), + [anon_sym_BSLASHfootcite] = ACTIONS(12481), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12481), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12481), + [anon_sym_BSLASHtextcite] = ACTIONS(12481), + [anon_sym_BSLASHTextcite] = ACTIONS(12481), + [anon_sym_BSLASHsmartcite] = ACTIONS(12481), + [anon_sym_BSLASHSmartcite] = ACTIONS(12481), + [anon_sym_BSLASHsupercite] = ACTIONS(12481), + [anon_sym_BSLASHautocite] = ACTIONS(12481), + [anon_sym_BSLASHAutocite] = ACTIONS(12481), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHvolcite] = ACTIONS(12481), + [anon_sym_BSLASHVolcite] = ACTIONS(12481), + [anon_sym_BSLASHpvolcite] = ACTIONS(12481), + [anon_sym_BSLASHPvolcite] = ACTIONS(12481), + [anon_sym_BSLASHfvolcite] = ACTIONS(12481), + [anon_sym_BSLASHftvolcite] = ACTIONS(12481), + [anon_sym_BSLASHsvolcite] = ACTIONS(12481), + [anon_sym_BSLASHSvolcite] = ACTIONS(12481), + [anon_sym_BSLASHtvolcite] = ACTIONS(12481), + [anon_sym_BSLASHTvolcite] = ACTIONS(12481), + [anon_sym_BSLASHavolcite] = ACTIONS(12481), + [anon_sym_BSLASHAvolcite] = ACTIONS(12481), + [anon_sym_BSLASHnotecite] = ACTIONS(12481), + [anon_sym_BSLASHpnotecite] = ACTIONS(12481), + [anon_sym_BSLASHPnotecite] = ACTIONS(12481), + [anon_sym_BSLASHfnotecite] = ACTIONS(12481), + [anon_sym_BSLASHusepackage] = ACTIONS(12481), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12481), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12481), + [anon_sym_BSLASHinclude] = ACTIONS(12481), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12481), + [anon_sym_BSLASHinput] = ACTIONS(12481), + [anon_sym_BSLASHsubfile] = ACTIONS(12481), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12481), + [anon_sym_BSLASHbibliography] = ACTIONS(12481), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12481), + [anon_sym_BSLASHincludesvg] = ACTIONS(12481), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12481), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12481), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12481), + [anon_sym_BSLASHimport] = ACTIONS(12481), + [anon_sym_BSLASHsubimport] = ACTIONS(12481), + [anon_sym_BSLASHinputfrom] = ACTIONS(12481), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12481), + [anon_sym_BSLASHincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHlabel] = ACTIONS(12481), + [anon_sym_BSLASHref] = ACTIONS(12481), + [anon_sym_BSLASHvref] = ACTIONS(12481), + [anon_sym_BSLASHVref] = ACTIONS(12481), + [anon_sym_BSLASHautoref] = ACTIONS(12481), + [anon_sym_BSLASHpageref] = ACTIONS(12481), + [anon_sym_BSLASHcref] = ACTIONS(12481), + [anon_sym_BSLASHCref] = ACTIONS(12481), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnameCref] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHlabelcref] = ACTIONS(12481), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12481), + [anon_sym_BSLASHeqref] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange] = ACTIONS(12481), + [anon_sym_BSLASHCrefrange] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewlabel] = ACTIONS(12481), + [anon_sym_BSLASHnewcommand] = ACTIONS(12481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12481), + [anon_sym_BSLASHgls] = ACTIONS(12481), + [anon_sym_BSLASHGls] = ACTIONS(12481), + [anon_sym_BSLASHGLS] = ACTIONS(12481), + [anon_sym_BSLASHglspl] = ACTIONS(12481), + [anon_sym_BSLASHGlspl] = ACTIONS(12481), + [anon_sym_BSLASHGLSpl] = ACTIONS(12481), + [anon_sym_BSLASHglsdisp] = ACTIONS(12481), + [anon_sym_BSLASHglslink] = ACTIONS(12481), + [anon_sym_BSLASHglstext] = ACTIONS(12481), + [anon_sym_BSLASHGlstext] = ACTIONS(12481), + [anon_sym_BSLASHGLStext] = ACTIONS(12481), + [anon_sym_BSLASHglsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12481), + [anon_sym_BSLASHglsplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSplural] = ACTIONS(12481), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHglsname] = ACTIONS(12481), + [anon_sym_BSLASHGlsname] = ACTIONS(12481), + [anon_sym_BSLASHGLSname] = ACTIONS(12481), + [anon_sym_BSLASHglssymbol] = ACTIONS(12481), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12481), + [anon_sym_BSLASHglsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12481), + [anon_sym_BSLASHglsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12481), + [anon_sym_BSLASHglsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12481), + [anon_sym_BSLASHglsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12481), + [anon_sym_BSLASHglsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12481), + [anon_sym_BSLASHnewacronym] = ACTIONS(12481), + [anon_sym_BSLASHacrshort] = ACTIONS(12481), + [anon_sym_BSLASHAcrshort] = ACTIONS(12481), + [anon_sym_BSLASHACRshort] = ACTIONS(12481), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12481), + [anon_sym_BSLASHacrlong] = ACTIONS(12481), + [anon_sym_BSLASHAcrlong] = ACTIONS(12481), + [anon_sym_BSLASHACRlong] = ACTIONS(12481), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12481), + [anon_sym_BSLASHacrfull] = ACTIONS(12481), + [anon_sym_BSLASHAcrfull] = ACTIONS(12481), + [anon_sym_BSLASHACRfull] = ACTIONS(12481), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12481), + [anon_sym_BSLASHacs] = ACTIONS(12481), + [anon_sym_BSLASHAcs] = ACTIONS(12481), + [anon_sym_BSLASHacsp] = ACTIONS(12481), + [anon_sym_BSLASHAcsp] = ACTIONS(12481), + [anon_sym_BSLASHacl] = ACTIONS(12481), + [anon_sym_BSLASHAcl] = ACTIONS(12481), + [anon_sym_BSLASHaclp] = ACTIONS(12481), + [anon_sym_BSLASHAclp] = ACTIONS(12481), + [anon_sym_BSLASHacf] = ACTIONS(12481), + [anon_sym_BSLASHAcf] = ACTIONS(12481), + [anon_sym_BSLASHacfp] = ACTIONS(12481), + [anon_sym_BSLASHAcfp] = ACTIONS(12481), + [anon_sym_BSLASHac] = ACTIONS(12481), + [anon_sym_BSLASHAc] = ACTIONS(12481), + [anon_sym_BSLASHacp] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12481), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12481), + [anon_sym_BSLASHcolor] = ACTIONS(12481), + [anon_sym_BSLASHcolorbox] = ACTIONS(12481), + [anon_sym_BSLASHtextcolor] = ACTIONS(12481), + [anon_sym_BSLASHpagecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12481), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12481), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12481), + }, + [1315] = { + [sym_generic_command_name] = ACTIONS(12493), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12493), + [aux_sym_subsubsection_token1] = ACTIONS(12493), + [aux_sym_paragraph_token1] = ACTIONS(12493), + [aux_sym_subparagraph_token1] = ACTIONS(12493), + [anon_sym_BSLASHitem] = ACTIONS(12493), + [anon_sym_LBRACK] = ACTIONS(12491), + [anon_sym_RBRACK] = ACTIONS(12491), + [anon_sym_LBRACE] = ACTIONS(12491), + [anon_sym_RBRACE] = ACTIONS(12491), + [anon_sym_LPAREN] = ACTIONS(12491), + [anon_sym_COMMA] = ACTIONS(12491), + [anon_sym_EQ] = ACTIONS(12491), + [sym_word] = ACTIONS(12491), + [sym_param] = ACTIONS(12491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12491), + [anon_sym_DOLLAR] = ACTIONS(12493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12491), + [anon_sym_BSLASHbegin] = ACTIONS(12493), + [anon_sym_BSLASHcaption] = ACTIONS(12493), + [anon_sym_BSLASHcite] = ACTIONS(12493), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCite] = ACTIONS(12493), + [anon_sym_BSLASHnocite] = ACTIONS(12493), + [anon_sym_BSLASHcitet] = ACTIONS(12493), + [anon_sym_BSLASHcitep] = ACTIONS(12493), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteauthor] = ACTIONS(12493), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12493), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitetitle] = ACTIONS(12493), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteyear] = ACTIONS(12493), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitedate] = ACTIONS(12493), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteurl] = ACTIONS(12493), + [anon_sym_BSLASHfullcite] = ACTIONS(12493), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12493), + [anon_sym_BSLASHcitealt] = ACTIONS(12493), + [anon_sym_BSLASHcitealp] = ACTIONS(12493), + [anon_sym_BSLASHcitetext] = ACTIONS(12493), + [anon_sym_BSLASHparencite] = ACTIONS(12493), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHParencite] = ACTIONS(12493), + [anon_sym_BSLASHfootcite] = ACTIONS(12493), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12493), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12493), + [anon_sym_BSLASHtextcite] = ACTIONS(12493), + [anon_sym_BSLASHTextcite] = ACTIONS(12493), + [anon_sym_BSLASHsmartcite] = ACTIONS(12493), + [anon_sym_BSLASHSmartcite] = ACTIONS(12493), + [anon_sym_BSLASHsupercite] = ACTIONS(12493), + [anon_sym_BSLASHautocite] = ACTIONS(12493), + [anon_sym_BSLASHAutocite] = ACTIONS(12493), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHvolcite] = ACTIONS(12493), + [anon_sym_BSLASHVolcite] = ACTIONS(12493), + [anon_sym_BSLASHpvolcite] = ACTIONS(12493), + [anon_sym_BSLASHPvolcite] = ACTIONS(12493), + [anon_sym_BSLASHfvolcite] = ACTIONS(12493), + [anon_sym_BSLASHftvolcite] = ACTIONS(12493), + [anon_sym_BSLASHsvolcite] = ACTIONS(12493), + [anon_sym_BSLASHSvolcite] = ACTIONS(12493), + [anon_sym_BSLASHtvolcite] = ACTIONS(12493), + [anon_sym_BSLASHTvolcite] = ACTIONS(12493), + [anon_sym_BSLASHavolcite] = ACTIONS(12493), + [anon_sym_BSLASHAvolcite] = ACTIONS(12493), + [anon_sym_BSLASHnotecite] = ACTIONS(12493), + [anon_sym_BSLASHpnotecite] = ACTIONS(12493), + [anon_sym_BSLASHPnotecite] = ACTIONS(12493), + [anon_sym_BSLASHfnotecite] = ACTIONS(12493), + [anon_sym_BSLASHusepackage] = ACTIONS(12493), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12493), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12493), + [anon_sym_BSLASHinclude] = ACTIONS(12493), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12493), + [anon_sym_BSLASHinput] = ACTIONS(12493), + [anon_sym_BSLASHsubfile] = ACTIONS(12493), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12493), + [anon_sym_BSLASHbibliography] = ACTIONS(12493), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12493), + [anon_sym_BSLASHincludesvg] = ACTIONS(12493), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12493), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12493), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12493), + [anon_sym_BSLASHimport] = ACTIONS(12493), + [anon_sym_BSLASHsubimport] = ACTIONS(12493), + [anon_sym_BSLASHinputfrom] = ACTIONS(12493), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12493), + [anon_sym_BSLASHincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHlabel] = ACTIONS(12493), + [anon_sym_BSLASHref] = ACTIONS(12493), + [anon_sym_BSLASHvref] = ACTIONS(12493), + [anon_sym_BSLASHVref] = ACTIONS(12493), + [anon_sym_BSLASHautoref] = ACTIONS(12493), + [anon_sym_BSLASHpageref] = ACTIONS(12493), + [anon_sym_BSLASHcref] = ACTIONS(12493), + [anon_sym_BSLASHCref] = ACTIONS(12493), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnameCref] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHlabelcref] = ACTIONS(12493), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12493), + [anon_sym_BSLASHeqref] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange] = ACTIONS(12493), + [anon_sym_BSLASHCrefrange] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewlabel] = ACTIONS(12493), + [anon_sym_BSLASHnewcommand] = ACTIONS(12493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12493), + [anon_sym_BSLASHgls] = ACTIONS(12493), + [anon_sym_BSLASHGls] = ACTIONS(12493), + [anon_sym_BSLASHGLS] = ACTIONS(12493), + [anon_sym_BSLASHglspl] = ACTIONS(12493), + [anon_sym_BSLASHGlspl] = ACTIONS(12493), + [anon_sym_BSLASHGLSpl] = ACTIONS(12493), + [anon_sym_BSLASHglsdisp] = ACTIONS(12493), + [anon_sym_BSLASHglslink] = ACTIONS(12493), + [anon_sym_BSLASHglstext] = ACTIONS(12493), + [anon_sym_BSLASHGlstext] = ACTIONS(12493), + [anon_sym_BSLASHGLStext] = ACTIONS(12493), + [anon_sym_BSLASHglsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12493), + [anon_sym_BSLASHglsplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSplural] = ACTIONS(12493), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHglsname] = ACTIONS(12493), + [anon_sym_BSLASHGlsname] = ACTIONS(12493), + [anon_sym_BSLASHGLSname] = ACTIONS(12493), + [anon_sym_BSLASHglssymbol] = ACTIONS(12493), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12493), + [anon_sym_BSLASHglsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12493), + [anon_sym_BSLASHglsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12493), + [anon_sym_BSLASHglsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12493), + [anon_sym_BSLASHglsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12493), + [anon_sym_BSLASHglsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12493), + [anon_sym_BSLASHnewacronym] = ACTIONS(12493), + [anon_sym_BSLASHacrshort] = ACTIONS(12493), + [anon_sym_BSLASHAcrshort] = ACTIONS(12493), + [anon_sym_BSLASHACRshort] = ACTIONS(12493), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12493), + [anon_sym_BSLASHacrlong] = ACTIONS(12493), + [anon_sym_BSLASHAcrlong] = ACTIONS(12493), + [anon_sym_BSLASHACRlong] = ACTIONS(12493), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12493), + [anon_sym_BSLASHacrfull] = ACTIONS(12493), + [anon_sym_BSLASHAcrfull] = ACTIONS(12493), + [anon_sym_BSLASHACRfull] = ACTIONS(12493), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12493), + [anon_sym_BSLASHacs] = ACTIONS(12493), + [anon_sym_BSLASHAcs] = ACTIONS(12493), + [anon_sym_BSLASHacsp] = ACTIONS(12493), + [anon_sym_BSLASHAcsp] = ACTIONS(12493), + [anon_sym_BSLASHacl] = ACTIONS(12493), + [anon_sym_BSLASHAcl] = ACTIONS(12493), + [anon_sym_BSLASHaclp] = ACTIONS(12493), + [anon_sym_BSLASHAclp] = ACTIONS(12493), + [anon_sym_BSLASHacf] = ACTIONS(12493), + [anon_sym_BSLASHAcf] = ACTIONS(12493), + [anon_sym_BSLASHacfp] = ACTIONS(12493), + [anon_sym_BSLASHAcfp] = ACTIONS(12493), + [anon_sym_BSLASHac] = ACTIONS(12493), + [anon_sym_BSLASHAc] = ACTIONS(12493), + [anon_sym_BSLASHacp] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12493), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12493), + [anon_sym_BSLASHcolor] = ACTIONS(12493), + [anon_sym_BSLASHcolorbox] = ACTIONS(12493), + [anon_sym_BSLASHtextcolor] = ACTIONS(12493), + [anon_sym_BSLASHpagecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12493), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12493), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12493), + }, + [1316] = { + [sym_generic_command_name] = ACTIONS(12497), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12497), + [aux_sym_subsubsection_token1] = ACTIONS(12497), + [aux_sym_paragraph_token1] = ACTIONS(12497), + [aux_sym_subparagraph_token1] = ACTIONS(12497), + [anon_sym_BSLASHitem] = ACTIONS(12497), + [anon_sym_LBRACK] = ACTIONS(12495), + [anon_sym_RBRACK] = ACTIONS(12495), + [anon_sym_LBRACE] = ACTIONS(12495), + [anon_sym_RBRACE] = ACTIONS(12495), + [anon_sym_LPAREN] = ACTIONS(12495), + [anon_sym_COMMA] = ACTIONS(12495), + [anon_sym_EQ] = ACTIONS(12495), + [sym_word] = ACTIONS(12495), + [sym_param] = ACTIONS(12495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12495), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12495), + [anon_sym_DOLLAR] = ACTIONS(12497), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12495), + [anon_sym_BSLASHbegin] = ACTIONS(12497), + [anon_sym_BSLASHcaption] = ACTIONS(12497), + [anon_sym_BSLASHcite] = ACTIONS(12497), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCite] = ACTIONS(12497), + [anon_sym_BSLASHnocite] = ACTIONS(12497), + [anon_sym_BSLASHcitet] = ACTIONS(12497), + [anon_sym_BSLASHcitep] = ACTIONS(12497), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteauthor] = ACTIONS(12497), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12497), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitetitle] = ACTIONS(12497), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteyear] = ACTIONS(12497), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitedate] = ACTIONS(12497), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteurl] = ACTIONS(12497), + [anon_sym_BSLASHfullcite] = ACTIONS(12497), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12497), + [anon_sym_BSLASHcitealt] = ACTIONS(12497), + [anon_sym_BSLASHcitealp] = ACTIONS(12497), + [anon_sym_BSLASHcitetext] = ACTIONS(12497), + [anon_sym_BSLASHparencite] = ACTIONS(12497), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHParencite] = ACTIONS(12497), + [anon_sym_BSLASHfootcite] = ACTIONS(12497), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12497), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12497), + [anon_sym_BSLASHtextcite] = ACTIONS(12497), + [anon_sym_BSLASHTextcite] = ACTIONS(12497), + [anon_sym_BSLASHsmartcite] = ACTIONS(12497), + [anon_sym_BSLASHSmartcite] = ACTIONS(12497), + [anon_sym_BSLASHsupercite] = ACTIONS(12497), + [anon_sym_BSLASHautocite] = ACTIONS(12497), + [anon_sym_BSLASHAutocite] = ACTIONS(12497), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHvolcite] = ACTIONS(12497), + [anon_sym_BSLASHVolcite] = ACTIONS(12497), + [anon_sym_BSLASHpvolcite] = ACTIONS(12497), + [anon_sym_BSLASHPvolcite] = ACTIONS(12497), + [anon_sym_BSLASHfvolcite] = ACTIONS(12497), + [anon_sym_BSLASHftvolcite] = ACTIONS(12497), + [anon_sym_BSLASHsvolcite] = ACTIONS(12497), + [anon_sym_BSLASHSvolcite] = ACTIONS(12497), + [anon_sym_BSLASHtvolcite] = ACTIONS(12497), + [anon_sym_BSLASHTvolcite] = ACTIONS(12497), + [anon_sym_BSLASHavolcite] = ACTIONS(12497), + [anon_sym_BSLASHAvolcite] = ACTIONS(12497), + [anon_sym_BSLASHnotecite] = ACTIONS(12497), + [anon_sym_BSLASHpnotecite] = ACTIONS(12497), + [anon_sym_BSLASHPnotecite] = ACTIONS(12497), + [anon_sym_BSLASHfnotecite] = ACTIONS(12497), + [anon_sym_BSLASHusepackage] = ACTIONS(12497), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12497), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12497), + [anon_sym_BSLASHinclude] = ACTIONS(12497), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12497), + [anon_sym_BSLASHinput] = ACTIONS(12497), + [anon_sym_BSLASHsubfile] = ACTIONS(12497), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12497), + [anon_sym_BSLASHbibliography] = ACTIONS(12497), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12497), + [anon_sym_BSLASHincludesvg] = ACTIONS(12497), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12497), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12497), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12497), + [anon_sym_BSLASHimport] = ACTIONS(12497), + [anon_sym_BSLASHsubimport] = ACTIONS(12497), + [anon_sym_BSLASHinputfrom] = ACTIONS(12497), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12497), + [anon_sym_BSLASHincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHlabel] = ACTIONS(12497), + [anon_sym_BSLASHref] = ACTIONS(12497), + [anon_sym_BSLASHvref] = ACTIONS(12497), + [anon_sym_BSLASHVref] = ACTIONS(12497), + [anon_sym_BSLASHautoref] = ACTIONS(12497), + [anon_sym_BSLASHpageref] = ACTIONS(12497), + [anon_sym_BSLASHcref] = ACTIONS(12497), + [anon_sym_BSLASHCref] = ACTIONS(12497), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnameCref] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHlabelcref] = ACTIONS(12497), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12497), + [anon_sym_BSLASHeqref] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange] = ACTIONS(12497), + [anon_sym_BSLASHCrefrange] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewlabel] = ACTIONS(12497), + [anon_sym_BSLASHnewcommand] = ACTIONS(12497), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12497), + [anon_sym_BSLASHgls] = ACTIONS(12497), + [anon_sym_BSLASHGls] = ACTIONS(12497), + [anon_sym_BSLASHGLS] = ACTIONS(12497), + [anon_sym_BSLASHglspl] = ACTIONS(12497), + [anon_sym_BSLASHGlspl] = ACTIONS(12497), + [anon_sym_BSLASHGLSpl] = ACTIONS(12497), + [anon_sym_BSLASHglsdisp] = ACTIONS(12497), + [anon_sym_BSLASHglslink] = ACTIONS(12497), + [anon_sym_BSLASHglstext] = ACTIONS(12497), + [anon_sym_BSLASHGlstext] = ACTIONS(12497), + [anon_sym_BSLASHGLStext] = ACTIONS(12497), + [anon_sym_BSLASHglsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12497), + [anon_sym_BSLASHglsplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSplural] = ACTIONS(12497), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHglsname] = ACTIONS(12497), + [anon_sym_BSLASHGlsname] = ACTIONS(12497), + [anon_sym_BSLASHGLSname] = ACTIONS(12497), + [anon_sym_BSLASHglssymbol] = ACTIONS(12497), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12497), + [anon_sym_BSLASHglsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12497), + [anon_sym_BSLASHglsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12497), + [anon_sym_BSLASHglsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12497), + [anon_sym_BSLASHglsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12497), + [anon_sym_BSLASHglsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12497), + [anon_sym_BSLASHnewacronym] = ACTIONS(12497), + [anon_sym_BSLASHacrshort] = ACTIONS(12497), + [anon_sym_BSLASHAcrshort] = ACTIONS(12497), + [anon_sym_BSLASHACRshort] = ACTIONS(12497), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12497), + [anon_sym_BSLASHacrlong] = ACTIONS(12497), + [anon_sym_BSLASHAcrlong] = ACTIONS(12497), + [anon_sym_BSLASHACRlong] = ACTIONS(12497), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12497), + [anon_sym_BSLASHacrfull] = ACTIONS(12497), + [anon_sym_BSLASHAcrfull] = ACTIONS(12497), + [anon_sym_BSLASHACRfull] = ACTIONS(12497), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12497), + [anon_sym_BSLASHacs] = ACTIONS(12497), + [anon_sym_BSLASHAcs] = ACTIONS(12497), + [anon_sym_BSLASHacsp] = ACTIONS(12497), + [anon_sym_BSLASHAcsp] = ACTIONS(12497), + [anon_sym_BSLASHacl] = ACTIONS(12497), + [anon_sym_BSLASHAcl] = ACTIONS(12497), + [anon_sym_BSLASHaclp] = ACTIONS(12497), + [anon_sym_BSLASHAclp] = ACTIONS(12497), + [anon_sym_BSLASHacf] = ACTIONS(12497), + [anon_sym_BSLASHAcf] = ACTIONS(12497), + [anon_sym_BSLASHacfp] = ACTIONS(12497), + [anon_sym_BSLASHAcfp] = ACTIONS(12497), + [anon_sym_BSLASHac] = ACTIONS(12497), + [anon_sym_BSLASHAc] = ACTIONS(12497), + [anon_sym_BSLASHacp] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12497), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12497), + [anon_sym_BSLASHcolor] = ACTIONS(12497), + [anon_sym_BSLASHcolorbox] = ACTIONS(12497), + [anon_sym_BSLASHtextcolor] = ACTIONS(12497), + [anon_sym_BSLASHpagecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12497), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12497), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12497), + }, + [1317] = { + [sym_generic_command_name] = ACTIONS(12501), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12501), + [aux_sym_subsubsection_token1] = ACTIONS(12501), + [aux_sym_paragraph_token1] = ACTIONS(12501), + [aux_sym_subparagraph_token1] = ACTIONS(12501), + [anon_sym_BSLASHitem] = ACTIONS(12501), + [anon_sym_LBRACK] = ACTIONS(12499), + [anon_sym_RBRACK] = ACTIONS(12499), + [anon_sym_LBRACE] = ACTIONS(12499), + [anon_sym_RBRACE] = ACTIONS(12499), + [anon_sym_LPAREN] = ACTIONS(12499), + [anon_sym_COMMA] = ACTIONS(12499), + [anon_sym_EQ] = ACTIONS(12499), + [sym_word] = ACTIONS(12499), + [sym_param] = ACTIONS(12499), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12499), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12499), + [anon_sym_DOLLAR] = ACTIONS(12501), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12499), + [anon_sym_BSLASHbegin] = ACTIONS(12501), + [anon_sym_BSLASHcaption] = ACTIONS(12501), + [anon_sym_BSLASHcite] = ACTIONS(12501), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCite] = ACTIONS(12501), + [anon_sym_BSLASHnocite] = ACTIONS(12501), + [anon_sym_BSLASHcitet] = ACTIONS(12501), + [anon_sym_BSLASHcitep] = ACTIONS(12501), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteauthor] = ACTIONS(12501), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12501), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitetitle] = ACTIONS(12501), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteyear] = ACTIONS(12501), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitedate] = ACTIONS(12501), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteurl] = ACTIONS(12501), + [anon_sym_BSLASHfullcite] = ACTIONS(12501), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12501), + [anon_sym_BSLASHcitealt] = ACTIONS(12501), + [anon_sym_BSLASHcitealp] = ACTIONS(12501), + [anon_sym_BSLASHcitetext] = ACTIONS(12501), + [anon_sym_BSLASHparencite] = ACTIONS(12501), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHParencite] = ACTIONS(12501), + [anon_sym_BSLASHfootcite] = ACTIONS(12501), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12501), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12501), + [anon_sym_BSLASHtextcite] = ACTIONS(12501), + [anon_sym_BSLASHTextcite] = ACTIONS(12501), + [anon_sym_BSLASHsmartcite] = ACTIONS(12501), + [anon_sym_BSLASHSmartcite] = ACTIONS(12501), + [anon_sym_BSLASHsupercite] = ACTIONS(12501), + [anon_sym_BSLASHautocite] = ACTIONS(12501), + [anon_sym_BSLASHAutocite] = ACTIONS(12501), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHvolcite] = ACTIONS(12501), + [anon_sym_BSLASHVolcite] = ACTIONS(12501), + [anon_sym_BSLASHpvolcite] = ACTIONS(12501), + [anon_sym_BSLASHPvolcite] = ACTIONS(12501), + [anon_sym_BSLASHfvolcite] = ACTIONS(12501), + [anon_sym_BSLASHftvolcite] = ACTIONS(12501), + [anon_sym_BSLASHsvolcite] = ACTIONS(12501), + [anon_sym_BSLASHSvolcite] = ACTIONS(12501), + [anon_sym_BSLASHtvolcite] = ACTIONS(12501), + [anon_sym_BSLASHTvolcite] = ACTIONS(12501), + [anon_sym_BSLASHavolcite] = ACTIONS(12501), + [anon_sym_BSLASHAvolcite] = ACTIONS(12501), + [anon_sym_BSLASHnotecite] = ACTIONS(12501), + [anon_sym_BSLASHpnotecite] = ACTIONS(12501), + [anon_sym_BSLASHPnotecite] = ACTIONS(12501), + [anon_sym_BSLASHfnotecite] = ACTIONS(12501), + [anon_sym_BSLASHusepackage] = ACTIONS(12501), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12501), + [anon_sym_BSLASHinclude] = ACTIONS(12501), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12501), + [anon_sym_BSLASHinput] = ACTIONS(12501), + [anon_sym_BSLASHsubfile] = ACTIONS(12501), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12501), + [anon_sym_BSLASHbibliography] = ACTIONS(12501), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12501), + [anon_sym_BSLASHincludesvg] = ACTIONS(12501), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12501), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12501), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12501), + [anon_sym_BSLASHimport] = ACTIONS(12501), + [anon_sym_BSLASHsubimport] = ACTIONS(12501), + [anon_sym_BSLASHinputfrom] = ACTIONS(12501), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12501), + [anon_sym_BSLASHincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHlabel] = ACTIONS(12501), + [anon_sym_BSLASHref] = ACTIONS(12501), + [anon_sym_BSLASHvref] = ACTIONS(12501), + [anon_sym_BSLASHVref] = ACTIONS(12501), + [anon_sym_BSLASHautoref] = ACTIONS(12501), + [anon_sym_BSLASHpageref] = ACTIONS(12501), + [anon_sym_BSLASHcref] = ACTIONS(12501), + [anon_sym_BSLASHCref] = ACTIONS(12501), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnameCref] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHlabelcref] = ACTIONS(12501), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12501), + [anon_sym_BSLASHeqref] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange] = ACTIONS(12501), + [anon_sym_BSLASHCrefrange] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewlabel] = ACTIONS(12501), + [anon_sym_BSLASHnewcommand] = ACTIONS(12501), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12501), + [anon_sym_BSLASHgls] = ACTIONS(12501), + [anon_sym_BSLASHGls] = ACTIONS(12501), + [anon_sym_BSLASHGLS] = ACTIONS(12501), + [anon_sym_BSLASHglspl] = ACTIONS(12501), + [anon_sym_BSLASHGlspl] = ACTIONS(12501), + [anon_sym_BSLASHGLSpl] = ACTIONS(12501), + [anon_sym_BSLASHglsdisp] = ACTIONS(12501), + [anon_sym_BSLASHglslink] = ACTIONS(12501), + [anon_sym_BSLASHglstext] = ACTIONS(12501), + [anon_sym_BSLASHGlstext] = ACTIONS(12501), + [anon_sym_BSLASHGLStext] = ACTIONS(12501), + [anon_sym_BSLASHglsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12501), + [anon_sym_BSLASHglsplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSplural] = ACTIONS(12501), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHglsname] = ACTIONS(12501), + [anon_sym_BSLASHGlsname] = ACTIONS(12501), + [anon_sym_BSLASHGLSname] = ACTIONS(12501), + [anon_sym_BSLASHglssymbol] = ACTIONS(12501), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12501), + [anon_sym_BSLASHglsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12501), + [anon_sym_BSLASHglsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12501), + [anon_sym_BSLASHglsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12501), + [anon_sym_BSLASHglsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12501), + [anon_sym_BSLASHglsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12501), + [anon_sym_BSLASHnewacronym] = ACTIONS(12501), + [anon_sym_BSLASHacrshort] = ACTIONS(12501), + [anon_sym_BSLASHAcrshort] = ACTIONS(12501), + [anon_sym_BSLASHACRshort] = ACTIONS(12501), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12501), + [anon_sym_BSLASHacrlong] = ACTIONS(12501), + [anon_sym_BSLASHAcrlong] = ACTIONS(12501), + [anon_sym_BSLASHACRlong] = ACTIONS(12501), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12501), + [anon_sym_BSLASHacrfull] = ACTIONS(12501), + [anon_sym_BSLASHAcrfull] = ACTIONS(12501), + [anon_sym_BSLASHACRfull] = ACTIONS(12501), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12501), + [anon_sym_BSLASHacs] = ACTIONS(12501), + [anon_sym_BSLASHAcs] = ACTIONS(12501), + [anon_sym_BSLASHacsp] = ACTIONS(12501), + [anon_sym_BSLASHAcsp] = ACTIONS(12501), + [anon_sym_BSLASHacl] = ACTIONS(12501), + [anon_sym_BSLASHAcl] = ACTIONS(12501), + [anon_sym_BSLASHaclp] = ACTIONS(12501), + [anon_sym_BSLASHAclp] = ACTIONS(12501), + [anon_sym_BSLASHacf] = ACTIONS(12501), + [anon_sym_BSLASHAcf] = ACTIONS(12501), + [anon_sym_BSLASHacfp] = ACTIONS(12501), + [anon_sym_BSLASHAcfp] = ACTIONS(12501), + [anon_sym_BSLASHac] = ACTIONS(12501), + [anon_sym_BSLASHAc] = ACTIONS(12501), + [anon_sym_BSLASHacp] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12501), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12501), + [anon_sym_BSLASHcolor] = ACTIONS(12501), + [anon_sym_BSLASHcolorbox] = ACTIONS(12501), + [anon_sym_BSLASHtextcolor] = ACTIONS(12501), + [anon_sym_BSLASHpagecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12501), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12501), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12501), + }, + [1318] = { + [sym_generic_command_name] = ACTIONS(12509), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12509), + [aux_sym_subsubsection_token1] = ACTIONS(12509), + [aux_sym_paragraph_token1] = ACTIONS(12509), + [aux_sym_subparagraph_token1] = ACTIONS(12509), + [anon_sym_BSLASHitem] = ACTIONS(12509), + [anon_sym_LBRACK] = ACTIONS(12507), + [anon_sym_RBRACK] = ACTIONS(12507), + [anon_sym_LBRACE] = ACTIONS(12507), + [anon_sym_RBRACE] = ACTIONS(12507), + [anon_sym_LPAREN] = ACTIONS(12507), + [anon_sym_COMMA] = ACTIONS(12507), + [anon_sym_EQ] = ACTIONS(12507), + [sym_word] = ACTIONS(12507), + [sym_param] = ACTIONS(12507), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12507), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12507), + [anon_sym_DOLLAR] = ACTIONS(12509), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12507), + [anon_sym_BSLASHbegin] = ACTIONS(12509), + [anon_sym_BSLASHcaption] = ACTIONS(12509), + [anon_sym_BSLASHcite] = ACTIONS(12509), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCite] = ACTIONS(12509), + [anon_sym_BSLASHnocite] = ACTIONS(12509), + [anon_sym_BSLASHcitet] = ACTIONS(12509), + [anon_sym_BSLASHcitep] = ACTIONS(12509), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteauthor] = ACTIONS(12509), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12509), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitetitle] = ACTIONS(12509), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteyear] = ACTIONS(12509), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitedate] = ACTIONS(12509), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteurl] = ACTIONS(12509), + [anon_sym_BSLASHfullcite] = ACTIONS(12509), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12509), + [anon_sym_BSLASHcitealt] = ACTIONS(12509), + [anon_sym_BSLASHcitealp] = ACTIONS(12509), + [anon_sym_BSLASHcitetext] = ACTIONS(12509), + [anon_sym_BSLASHparencite] = ACTIONS(12509), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHParencite] = ACTIONS(12509), + [anon_sym_BSLASHfootcite] = ACTIONS(12509), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12509), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12509), + [anon_sym_BSLASHtextcite] = ACTIONS(12509), + [anon_sym_BSLASHTextcite] = ACTIONS(12509), + [anon_sym_BSLASHsmartcite] = ACTIONS(12509), + [anon_sym_BSLASHSmartcite] = ACTIONS(12509), + [anon_sym_BSLASHsupercite] = ACTIONS(12509), + [anon_sym_BSLASHautocite] = ACTIONS(12509), + [anon_sym_BSLASHAutocite] = ACTIONS(12509), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHvolcite] = ACTIONS(12509), + [anon_sym_BSLASHVolcite] = ACTIONS(12509), + [anon_sym_BSLASHpvolcite] = ACTIONS(12509), + [anon_sym_BSLASHPvolcite] = ACTIONS(12509), + [anon_sym_BSLASHfvolcite] = ACTIONS(12509), + [anon_sym_BSLASHftvolcite] = ACTIONS(12509), + [anon_sym_BSLASHsvolcite] = ACTIONS(12509), + [anon_sym_BSLASHSvolcite] = ACTIONS(12509), + [anon_sym_BSLASHtvolcite] = ACTIONS(12509), + [anon_sym_BSLASHTvolcite] = ACTIONS(12509), + [anon_sym_BSLASHavolcite] = ACTIONS(12509), + [anon_sym_BSLASHAvolcite] = ACTIONS(12509), + [anon_sym_BSLASHnotecite] = ACTIONS(12509), + [anon_sym_BSLASHpnotecite] = ACTIONS(12509), + [anon_sym_BSLASHPnotecite] = ACTIONS(12509), + [anon_sym_BSLASHfnotecite] = ACTIONS(12509), + [anon_sym_BSLASHusepackage] = ACTIONS(12509), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12509), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12509), + [anon_sym_BSLASHinclude] = ACTIONS(12509), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12509), + [anon_sym_BSLASHinput] = ACTIONS(12509), + [anon_sym_BSLASHsubfile] = ACTIONS(12509), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12509), + [anon_sym_BSLASHbibliography] = ACTIONS(12509), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12509), + [anon_sym_BSLASHincludesvg] = ACTIONS(12509), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12509), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12509), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12509), + [anon_sym_BSLASHimport] = ACTIONS(12509), + [anon_sym_BSLASHsubimport] = ACTIONS(12509), + [anon_sym_BSLASHinputfrom] = ACTIONS(12509), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12509), + [anon_sym_BSLASHincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHlabel] = ACTIONS(12509), + [anon_sym_BSLASHref] = ACTIONS(12509), + [anon_sym_BSLASHvref] = ACTIONS(12509), + [anon_sym_BSLASHVref] = ACTIONS(12509), + [anon_sym_BSLASHautoref] = ACTIONS(12509), + [anon_sym_BSLASHpageref] = ACTIONS(12509), + [anon_sym_BSLASHcref] = ACTIONS(12509), + [anon_sym_BSLASHCref] = ACTIONS(12509), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnameCref] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHlabelcref] = ACTIONS(12509), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12509), + [anon_sym_BSLASHeqref] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange] = ACTIONS(12509), + [anon_sym_BSLASHCrefrange] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewlabel] = ACTIONS(12509), + [anon_sym_BSLASHnewcommand] = ACTIONS(12509), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12509), + [anon_sym_BSLASHgls] = ACTIONS(12509), + [anon_sym_BSLASHGls] = ACTIONS(12509), + [anon_sym_BSLASHGLS] = ACTIONS(12509), + [anon_sym_BSLASHglspl] = ACTIONS(12509), + [anon_sym_BSLASHGlspl] = ACTIONS(12509), + [anon_sym_BSLASHGLSpl] = ACTIONS(12509), + [anon_sym_BSLASHglsdisp] = ACTIONS(12509), + [anon_sym_BSLASHglslink] = ACTIONS(12509), + [anon_sym_BSLASHglstext] = ACTIONS(12509), + [anon_sym_BSLASHGlstext] = ACTIONS(12509), + [anon_sym_BSLASHGLStext] = ACTIONS(12509), + [anon_sym_BSLASHglsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12509), + [anon_sym_BSLASHglsplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSplural] = ACTIONS(12509), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHglsname] = ACTIONS(12509), + [anon_sym_BSLASHGlsname] = ACTIONS(12509), + [anon_sym_BSLASHGLSname] = ACTIONS(12509), + [anon_sym_BSLASHglssymbol] = ACTIONS(12509), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12509), + [anon_sym_BSLASHglsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12509), + [anon_sym_BSLASHglsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12509), + [anon_sym_BSLASHglsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12509), + [anon_sym_BSLASHglsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12509), + [anon_sym_BSLASHglsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12509), + [anon_sym_BSLASHnewacronym] = ACTIONS(12509), + [anon_sym_BSLASHacrshort] = ACTIONS(12509), + [anon_sym_BSLASHAcrshort] = ACTIONS(12509), + [anon_sym_BSLASHACRshort] = ACTIONS(12509), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12509), + [anon_sym_BSLASHacrlong] = ACTIONS(12509), + [anon_sym_BSLASHAcrlong] = ACTIONS(12509), + [anon_sym_BSLASHACRlong] = ACTIONS(12509), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12509), + [anon_sym_BSLASHacrfull] = ACTIONS(12509), + [anon_sym_BSLASHAcrfull] = ACTIONS(12509), + [anon_sym_BSLASHACRfull] = ACTIONS(12509), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12509), + [anon_sym_BSLASHacs] = ACTIONS(12509), + [anon_sym_BSLASHAcs] = ACTIONS(12509), + [anon_sym_BSLASHacsp] = ACTIONS(12509), + [anon_sym_BSLASHAcsp] = ACTIONS(12509), + [anon_sym_BSLASHacl] = ACTIONS(12509), + [anon_sym_BSLASHAcl] = ACTIONS(12509), + [anon_sym_BSLASHaclp] = ACTIONS(12509), + [anon_sym_BSLASHAclp] = ACTIONS(12509), + [anon_sym_BSLASHacf] = ACTIONS(12509), + [anon_sym_BSLASHAcf] = ACTIONS(12509), + [anon_sym_BSLASHacfp] = ACTIONS(12509), + [anon_sym_BSLASHAcfp] = ACTIONS(12509), + [anon_sym_BSLASHac] = ACTIONS(12509), + [anon_sym_BSLASHAc] = ACTIONS(12509), + [anon_sym_BSLASHacp] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12509), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12509), + [anon_sym_BSLASHcolor] = ACTIONS(12509), + [anon_sym_BSLASHcolorbox] = ACTIONS(12509), + [anon_sym_BSLASHtextcolor] = ACTIONS(12509), + [anon_sym_BSLASHpagecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12509), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12509), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12509), + }, + [1319] = { + [sym_generic_command_name] = ACTIONS(12513), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12513), + [aux_sym_subsubsection_token1] = ACTIONS(12513), + [aux_sym_paragraph_token1] = ACTIONS(12513), + [aux_sym_subparagraph_token1] = ACTIONS(12513), + [anon_sym_BSLASHitem] = ACTIONS(12513), + [anon_sym_LBRACK] = ACTIONS(12511), + [anon_sym_RBRACK] = ACTIONS(12511), + [anon_sym_LBRACE] = ACTIONS(12727), + [anon_sym_RBRACE] = ACTIONS(12511), + [anon_sym_LPAREN] = ACTIONS(12511), + [anon_sym_COMMA] = ACTIONS(12511), + [anon_sym_EQ] = ACTIONS(12511), + [sym_word] = ACTIONS(12511), + [sym_param] = ACTIONS(12511), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12511), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12511), + [anon_sym_DOLLAR] = ACTIONS(12513), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12511), + [anon_sym_BSLASHbegin] = ACTIONS(12513), + [anon_sym_BSLASHcaption] = ACTIONS(12513), + [anon_sym_BSLASHcite] = ACTIONS(12513), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCite] = ACTIONS(12513), + [anon_sym_BSLASHnocite] = ACTIONS(12513), + [anon_sym_BSLASHcitet] = ACTIONS(12513), + [anon_sym_BSLASHcitep] = ACTIONS(12513), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteauthor] = ACTIONS(12513), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12513), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitetitle] = ACTIONS(12513), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteyear] = ACTIONS(12513), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitedate] = ACTIONS(12513), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteurl] = ACTIONS(12513), + [anon_sym_BSLASHfullcite] = ACTIONS(12513), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12513), + [anon_sym_BSLASHcitealt] = ACTIONS(12513), + [anon_sym_BSLASHcitealp] = ACTIONS(12513), + [anon_sym_BSLASHcitetext] = ACTIONS(12513), + [anon_sym_BSLASHparencite] = ACTIONS(12513), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHParencite] = ACTIONS(12513), + [anon_sym_BSLASHfootcite] = ACTIONS(12513), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12513), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12513), + [anon_sym_BSLASHtextcite] = ACTIONS(12513), + [anon_sym_BSLASHTextcite] = ACTIONS(12513), + [anon_sym_BSLASHsmartcite] = ACTIONS(12513), + [anon_sym_BSLASHSmartcite] = ACTIONS(12513), + [anon_sym_BSLASHsupercite] = ACTIONS(12513), + [anon_sym_BSLASHautocite] = ACTIONS(12513), + [anon_sym_BSLASHAutocite] = ACTIONS(12513), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHvolcite] = ACTIONS(12513), + [anon_sym_BSLASHVolcite] = ACTIONS(12513), + [anon_sym_BSLASHpvolcite] = ACTIONS(12513), + [anon_sym_BSLASHPvolcite] = ACTIONS(12513), + [anon_sym_BSLASHfvolcite] = ACTIONS(12513), + [anon_sym_BSLASHftvolcite] = ACTIONS(12513), + [anon_sym_BSLASHsvolcite] = ACTIONS(12513), + [anon_sym_BSLASHSvolcite] = ACTIONS(12513), + [anon_sym_BSLASHtvolcite] = ACTIONS(12513), + [anon_sym_BSLASHTvolcite] = ACTIONS(12513), + [anon_sym_BSLASHavolcite] = ACTIONS(12513), + [anon_sym_BSLASHAvolcite] = ACTIONS(12513), + [anon_sym_BSLASHnotecite] = ACTIONS(12513), + [anon_sym_BSLASHpnotecite] = ACTIONS(12513), + [anon_sym_BSLASHPnotecite] = ACTIONS(12513), + [anon_sym_BSLASHfnotecite] = ACTIONS(12513), + [anon_sym_BSLASHusepackage] = ACTIONS(12513), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12513), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12513), + [anon_sym_BSLASHinclude] = ACTIONS(12513), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12513), + [anon_sym_BSLASHinput] = ACTIONS(12513), + [anon_sym_BSLASHsubfile] = ACTIONS(12513), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12513), + [anon_sym_BSLASHbibliography] = ACTIONS(12513), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12513), + [anon_sym_BSLASHincludesvg] = ACTIONS(12513), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12513), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12513), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12513), + [anon_sym_BSLASHimport] = ACTIONS(12513), + [anon_sym_BSLASHsubimport] = ACTIONS(12513), + [anon_sym_BSLASHinputfrom] = ACTIONS(12513), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12513), + [anon_sym_BSLASHincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHlabel] = ACTIONS(12513), + [anon_sym_BSLASHref] = ACTIONS(12513), + [anon_sym_BSLASHvref] = ACTIONS(12513), + [anon_sym_BSLASHVref] = ACTIONS(12513), + [anon_sym_BSLASHautoref] = ACTIONS(12513), + [anon_sym_BSLASHpageref] = ACTIONS(12513), + [anon_sym_BSLASHcref] = ACTIONS(12513), + [anon_sym_BSLASHCref] = ACTIONS(12513), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnameCref] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHlabelcref] = ACTIONS(12513), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12513), + [anon_sym_BSLASHeqref] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange] = ACTIONS(12513), + [anon_sym_BSLASHCrefrange] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewlabel] = ACTIONS(12513), + [anon_sym_BSLASHnewcommand] = ACTIONS(12513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12513), + [anon_sym_BSLASHgls] = ACTIONS(12513), + [anon_sym_BSLASHGls] = ACTIONS(12513), + [anon_sym_BSLASHGLS] = ACTIONS(12513), + [anon_sym_BSLASHglspl] = ACTIONS(12513), + [anon_sym_BSLASHGlspl] = ACTIONS(12513), + [anon_sym_BSLASHGLSpl] = ACTIONS(12513), + [anon_sym_BSLASHglsdisp] = ACTIONS(12513), + [anon_sym_BSLASHglslink] = ACTIONS(12513), + [anon_sym_BSLASHglstext] = ACTIONS(12513), + [anon_sym_BSLASHGlstext] = ACTIONS(12513), + [anon_sym_BSLASHGLStext] = ACTIONS(12513), + [anon_sym_BSLASHglsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12513), + [anon_sym_BSLASHglsplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSplural] = ACTIONS(12513), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHglsname] = ACTIONS(12513), + [anon_sym_BSLASHGlsname] = ACTIONS(12513), + [anon_sym_BSLASHGLSname] = ACTIONS(12513), + [anon_sym_BSLASHglssymbol] = ACTIONS(12513), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12513), + [anon_sym_BSLASHglsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12513), + [anon_sym_BSLASHglsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12513), + [anon_sym_BSLASHglsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12513), + [anon_sym_BSLASHglsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12513), + [anon_sym_BSLASHglsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12513), + [anon_sym_BSLASHnewacronym] = ACTIONS(12513), + [anon_sym_BSLASHacrshort] = ACTIONS(12513), + [anon_sym_BSLASHAcrshort] = ACTIONS(12513), + [anon_sym_BSLASHACRshort] = ACTIONS(12513), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12513), + [anon_sym_BSLASHacrlong] = ACTIONS(12513), + [anon_sym_BSLASHAcrlong] = ACTIONS(12513), + [anon_sym_BSLASHACRlong] = ACTIONS(12513), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12513), + [anon_sym_BSLASHacrfull] = ACTIONS(12513), + [anon_sym_BSLASHAcrfull] = ACTIONS(12513), + [anon_sym_BSLASHACRfull] = ACTIONS(12513), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12513), + [anon_sym_BSLASHacs] = ACTIONS(12513), + [anon_sym_BSLASHAcs] = ACTIONS(12513), + [anon_sym_BSLASHacsp] = ACTIONS(12513), + [anon_sym_BSLASHAcsp] = ACTIONS(12513), + [anon_sym_BSLASHacl] = ACTIONS(12513), + [anon_sym_BSLASHAcl] = ACTIONS(12513), + [anon_sym_BSLASHaclp] = ACTIONS(12513), + [anon_sym_BSLASHAclp] = ACTIONS(12513), + [anon_sym_BSLASHacf] = ACTIONS(12513), + [anon_sym_BSLASHAcf] = ACTIONS(12513), + [anon_sym_BSLASHacfp] = ACTIONS(12513), + [anon_sym_BSLASHAcfp] = ACTIONS(12513), + [anon_sym_BSLASHac] = ACTIONS(12513), + [anon_sym_BSLASHAc] = ACTIONS(12513), + [anon_sym_BSLASHacp] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12513), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12513), + [anon_sym_BSLASHcolor] = ACTIONS(12513), + [anon_sym_BSLASHcolorbox] = ACTIONS(12513), + [anon_sym_BSLASHtextcolor] = ACTIONS(12513), + [anon_sym_BSLASHpagecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12513), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12513), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12513), + }, + [1320] = { + [sym_generic_command_name] = ACTIONS(12519), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12519), + [aux_sym_subsubsection_token1] = ACTIONS(12519), + [aux_sym_paragraph_token1] = ACTIONS(12519), + [aux_sym_subparagraph_token1] = ACTIONS(12519), + [anon_sym_BSLASHitem] = ACTIONS(12519), + [anon_sym_LBRACK] = ACTIONS(12517), + [anon_sym_RBRACK] = ACTIONS(12517), + [anon_sym_LBRACE] = ACTIONS(12517), + [anon_sym_RBRACE] = ACTIONS(12517), + [anon_sym_LPAREN] = ACTIONS(12517), + [anon_sym_COMMA] = ACTIONS(12517), + [anon_sym_EQ] = ACTIONS(12517), + [sym_word] = ACTIONS(12517), + [sym_param] = ACTIONS(12517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12517), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12517), + [anon_sym_DOLLAR] = ACTIONS(12519), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12517), + [anon_sym_BSLASHbegin] = ACTIONS(12519), + [anon_sym_BSLASHcaption] = ACTIONS(12519), + [anon_sym_BSLASHcite] = ACTIONS(12519), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCite] = ACTIONS(12519), + [anon_sym_BSLASHnocite] = ACTIONS(12519), + [anon_sym_BSLASHcitet] = ACTIONS(12519), + [anon_sym_BSLASHcitep] = ACTIONS(12519), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteauthor] = ACTIONS(12519), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12519), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitetitle] = ACTIONS(12519), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteyear] = ACTIONS(12519), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitedate] = ACTIONS(12519), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteurl] = ACTIONS(12519), + [anon_sym_BSLASHfullcite] = ACTIONS(12519), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12519), + [anon_sym_BSLASHcitealt] = ACTIONS(12519), + [anon_sym_BSLASHcitealp] = ACTIONS(12519), + [anon_sym_BSLASHcitetext] = ACTIONS(12519), + [anon_sym_BSLASHparencite] = ACTIONS(12519), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHParencite] = ACTIONS(12519), + [anon_sym_BSLASHfootcite] = ACTIONS(12519), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12519), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12519), + [anon_sym_BSLASHtextcite] = ACTIONS(12519), + [anon_sym_BSLASHTextcite] = ACTIONS(12519), + [anon_sym_BSLASHsmartcite] = ACTIONS(12519), + [anon_sym_BSLASHSmartcite] = ACTIONS(12519), + [anon_sym_BSLASHsupercite] = ACTIONS(12519), + [anon_sym_BSLASHautocite] = ACTIONS(12519), + [anon_sym_BSLASHAutocite] = ACTIONS(12519), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHvolcite] = ACTIONS(12519), + [anon_sym_BSLASHVolcite] = ACTIONS(12519), + [anon_sym_BSLASHpvolcite] = ACTIONS(12519), + [anon_sym_BSLASHPvolcite] = ACTIONS(12519), + [anon_sym_BSLASHfvolcite] = ACTIONS(12519), + [anon_sym_BSLASHftvolcite] = ACTIONS(12519), + [anon_sym_BSLASHsvolcite] = ACTIONS(12519), + [anon_sym_BSLASHSvolcite] = ACTIONS(12519), + [anon_sym_BSLASHtvolcite] = ACTIONS(12519), + [anon_sym_BSLASHTvolcite] = ACTIONS(12519), + [anon_sym_BSLASHavolcite] = ACTIONS(12519), + [anon_sym_BSLASHAvolcite] = ACTIONS(12519), + [anon_sym_BSLASHnotecite] = ACTIONS(12519), + [anon_sym_BSLASHpnotecite] = ACTIONS(12519), + [anon_sym_BSLASHPnotecite] = ACTIONS(12519), + [anon_sym_BSLASHfnotecite] = ACTIONS(12519), + [anon_sym_BSLASHusepackage] = ACTIONS(12519), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12519), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12519), + [anon_sym_BSLASHinclude] = ACTIONS(12519), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12519), + [anon_sym_BSLASHinput] = ACTIONS(12519), + [anon_sym_BSLASHsubfile] = ACTIONS(12519), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12519), + [anon_sym_BSLASHbibliography] = ACTIONS(12519), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12519), + [anon_sym_BSLASHincludesvg] = ACTIONS(12519), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12519), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12519), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12519), + [anon_sym_BSLASHimport] = ACTIONS(12519), + [anon_sym_BSLASHsubimport] = ACTIONS(12519), + [anon_sym_BSLASHinputfrom] = ACTIONS(12519), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12519), + [anon_sym_BSLASHincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHlabel] = ACTIONS(12519), + [anon_sym_BSLASHref] = ACTIONS(12519), + [anon_sym_BSLASHvref] = ACTIONS(12519), + [anon_sym_BSLASHVref] = ACTIONS(12519), + [anon_sym_BSLASHautoref] = ACTIONS(12519), + [anon_sym_BSLASHpageref] = ACTIONS(12519), + [anon_sym_BSLASHcref] = ACTIONS(12519), + [anon_sym_BSLASHCref] = ACTIONS(12519), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnameCref] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHlabelcref] = ACTIONS(12519), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12519), + [anon_sym_BSLASHeqref] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange] = ACTIONS(12519), + [anon_sym_BSLASHCrefrange] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewlabel] = ACTIONS(12519), + [anon_sym_BSLASHnewcommand] = ACTIONS(12519), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12519), + [anon_sym_BSLASHgls] = ACTIONS(12519), + [anon_sym_BSLASHGls] = ACTIONS(12519), + [anon_sym_BSLASHGLS] = ACTIONS(12519), + [anon_sym_BSLASHglspl] = ACTIONS(12519), + [anon_sym_BSLASHGlspl] = ACTIONS(12519), + [anon_sym_BSLASHGLSpl] = ACTIONS(12519), + [anon_sym_BSLASHglsdisp] = ACTIONS(12519), + [anon_sym_BSLASHglslink] = ACTIONS(12519), + [anon_sym_BSLASHglstext] = ACTIONS(12519), + [anon_sym_BSLASHGlstext] = ACTIONS(12519), + [anon_sym_BSLASHGLStext] = ACTIONS(12519), + [anon_sym_BSLASHglsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12519), + [anon_sym_BSLASHglsplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSplural] = ACTIONS(12519), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHglsname] = ACTIONS(12519), + [anon_sym_BSLASHGlsname] = ACTIONS(12519), + [anon_sym_BSLASHGLSname] = ACTIONS(12519), + [anon_sym_BSLASHglssymbol] = ACTIONS(12519), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12519), + [anon_sym_BSLASHglsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12519), + [anon_sym_BSLASHglsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12519), + [anon_sym_BSLASHglsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12519), + [anon_sym_BSLASHglsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12519), + [anon_sym_BSLASHglsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12519), + [anon_sym_BSLASHnewacronym] = ACTIONS(12519), + [anon_sym_BSLASHacrshort] = ACTIONS(12519), + [anon_sym_BSLASHAcrshort] = ACTIONS(12519), + [anon_sym_BSLASHACRshort] = ACTIONS(12519), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12519), + [anon_sym_BSLASHacrlong] = ACTIONS(12519), + [anon_sym_BSLASHAcrlong] = ACTIONS(12519), + [anon_sym_BSLASHACRlong] = ACTIONS(12519), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12519), + [anon_sym_BSLASHacrfull] = ACTIONS(12519), + [anon_sym_BSLASHAcrfull] = ACTIONS(12519), + [anon_sym_BSLASHACRfull] = ACTIONS(12519), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12519), + [anon_sym_BSLASHacs] = ACTIONS(12519), + [anon_sym_BSLASHAcs] = ACTIONS(12519), + [anon_sym_BSLASHacsp] = ACTIONS(12519), + [anon_sym_BSLASHAcsp] = ACTIONS(12519), + [anon_sym_BSLASHacl] = ACTIONS(12519), + [anon_sym_BSLASHAcl] = ACTIONS(12519), + [anon_sym_BSLASHaclp] = ACTIONS(12519), + [anon_sym_BSLASHAclp] = ACTIONS(12519), + [anon_sym_BSLASHacf] = ACTIONS(12519), + [anon_sym_BSLASHAcf] = ACTIONS(12519), + [anon_sym_BSLASHacfp] = ACTIONS(12519), + [anon_sym_BSLASHAcfp] = ACTIONS(12519), + [anon_sym_BSLASHac] = ACTIONS(12519), + [anon_sym_BSLASHAc] = ACTIONS(12519), + [anon_sym_BSLASHacp] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12519), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12519), + [anon_sym_BSLASHcolor] = ACTIONS(12519), + [anon_sym_BSLASHcolorbox] = ACTIONS(12519), + [anon_sym_BSLASHtextcolor] = ACTIONS(12519), + [anon_sym_BSLASHpagecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12519), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12519), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12519), + }, + [1321] = { + [sym_generic_command_name] = ACTIONS(12193), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12193), + [aux_sym_subsubsection_token1] = ACTIONS(12193), + [aux_sym_paragraph_token1] = ACTIONS(12193), + [aux_sym_subparagraph_token1] = ACTIONS(12193), + [anon_sym_BSLASHitem] = ACTIONS(12193), + [anon_sym_LBRACK] = ACTIONS(12191), + [anon_sym_RBRACK] = ACTIONS(12191), + [anon_sym_LBRACE] = ACTIONS(12191), + [anon_sym_RBRACE] = ACTIONS(12191), + [anon_sym_LPAREN] = ACTIONS(12191), + [anon_sym_COMMA] = ACTIONS(12191), + [anon_sym_EQ] = ACTIONS(12191), + [sym_word] = ACTIONS(12191), + [sym_param] = ACTIONS(12191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12191), + [anon_sym_DOLLAR] = ACTIONS(12193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12191), + [anon_sym_BSLASHbegin] = ACTIONS(12193), + [anon_sym_BSLASHcaption] = ACTIONS(12193), + [anon_sym_BSLASHcite] = ACTIONS(12193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCite] = ACTIONS(12193), + [anon_sym_BSLASHnocite] = ACTIONS(12193), + [anon_sym_BSLASHcitet] = ACTIONS(12193), + [anon_sym_BSLASHcitep] = ACTIONS(12193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteauthor] = ACTIONS(12193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitetitle] = ACTIONS(12193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteyear] = ACTIONS(12193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitedate] = ACTIONS(12193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteurl] = ACTIONS(12193), + [anon_sym_BSLASHfullcite] = ACTIONS(12193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12193), + [anon_sym_BSLASHcitealt] = ACTIONS(12193), + [anon_sym_BSLASHcitealp] = ACTIONS(12193), + [anon_sym_BSLASHcitetext] = ACTIONS(12193), + [anon_sym_BSLASHparencite] = ACTIONS(12193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHParencite] = ACTIONS(12193), + [anon_sym_BSLASHfootcite] = ACTIONS(12193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12193), + [anon_sym_BSLASHtextcite] = ACTIONS(12193), + [anon_sym_BSLASHTextcite] = ACTIONS(12193), + [anon_sym_BSLASHsmartcite] = ACTIONS(12193), + [anon_sym_BSLASHSmartcite] = ACTIONS(12193), + [anon_sym_BSLASHsupercite] = ACTIONS(12193), + [anon_sym_BSLASHautocite] = ACTIONS(12193), + [anon_sym_BSLASHAutocite] = ACTIONS(12193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHvolcite] = ACTIONS(12193), + [anon_sym_BSLASHVolcite] = ACTIONS(12193), + [anon_sym_BSLASHpvolcite] = ACTIONS(12193), + [anon_sym_BSLASHPvolcite] = ACTIONS(12193), + [anon_sym_BSLASHfvolcite] = ACTIONS(12193), + [anon_sym_BSLASHftvolcite] = ACTIONS(12193), + [anon_sym_BSLASHsvolcite] = ACTIONS(12193), + [anon_sym_BSLASHSvolcite] = ACTIONS(12193), + [anon_sym_BSLASHtvolcite] = ACTIONS(12193), + [anon_sym_BSLASHTvolcite] = ACTIONS(12193), + [anon_sym_BSLASHavolcite] = ACTIONS(12193), + [anon_sym_BSLASHAvolcite] = ACTIONS(12193), + [anon_sym_BSLASHnotecite] = ACTIONS(12193), + [anon_sym_BSLASHpnotecite] = ACTIONS(12193), + [anon_sym_BSLASHPnotecite] = ACTIONS(12193), + [anon_sym_BSLASHfnotecite] = ACTIONS(12193), + [anon_sym_BSLASHusepackage] = ACTIONS(12193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12193), + [anon_sym_BSLASHinclude] = ACTIONS(12193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12193), + [anon_sym_BSLASHinput] = ACTIONS(12193), + [anon_sym_BSLASHsubfile] = ACTIONS(12193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12193), + [anon_sym_BSLASHbibliography] = ACTIONS(12193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12193), + [anon_sym_BSLASHincludesvg] = ACTIONS(12193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12193), + [anon_sym_BSLASHimport] = ACTIONS(12193), + [anon_sym_BSLASHsubimport] = ACTIONS(12193), + [anon_sym_BSLASHinputfrom] = ACTIONS(12193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12193), + [anon_sym_BSLASHincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHlabel] = ACTIONS(12193), + [anon_sym_BSLASHref] = ACTIONS(12193), + [anon_sym_BSLASHvref] = ACTIONS(12193), + [anon_sym_BSLASHVref] = ACTIONS(12193), + [anon_sym_BSLASHautoref] = ACTIONS(12193), + [anon_sym_BSLASHpageref] = ACTIONS(12193), + [anon_sym_BSLASHcref] = ACTIONS(12193), + [anon_sym_BSLASHCref] = ACTIONS(12193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnameCref] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHlabelcref] = ACTIONS(12193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12193), + [anon_sym_BSLASHeqref] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange] = ACTIONS(12193), + [anon_sym_BSLASHCrefrange] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewlabel] = ACTIONS(12193), + [anon_sym_BSLASHnewcommand] = ACTIONS(12193), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12193), + [anon_sym_BSLASHgls] = ACTIONS(12193), + [anon_sym_BSLASHGls] = ACTIONS(12193), + [anon_sym_BSLASHGLS] = ACTIONS(12193), + [anon_sym_BSLASHglspl] = ACTIONS(12193), + [anon_sym_BSLASHGlspl] = ACTIONS(12193), + [anon_sym_BSLASHGLSpl] = ACTIONS(12193), + [anon_sym_BSLASHglsdisp] = ACTIONS(12193), + [anon_sym_BSLASHglslink] = ACTIONS(12193), + [anon_sym_BSLASHglstext] = ACTIONS(12193), + [anon_sym_BSLASHGlstext] = ACTIONS(12193), + [anon_sym_BSLASHGLStext] = ACTIONS(12193), + [anon_sym_BSLASHglsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12193), + [anon_sym_BSLASHglsplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSplural] = ACTIONS(12193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHglsname] = ACTIONS(12193), + [anon_sym_BSLASHGlsname] = ACTIONS(12193), + [anon_sym_BSLASHGLSname] = ACTIONS(12193), + [anon_sym_BSLASHglssymbol] = ACTIONS(12193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12193), + [anon_sym_BSLASHglsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12193), + [anon_sym_BSLASHglsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12193), + [anon_sym_BSLASHglsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12193), + [anon_sym_BSLASHglsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12193), + [anon_sym_BSLASHglsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12193), + [anon_sym_BSLASHnewacronym] = ACTIONS(12193), + [anon_sym_BSLASHacrshort] = ACTIONS(12193), + [anon_sym_BSLASHAcrshort] = ACTIONS(12193), + [anon_sym_BSLASHACRshort] = ACTIONS(12193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12193), + [anon_sym_BSLASHacrlong] = ACTIONS(12193), + [anon_sym_BSLASHAcrlong] = ACTIONS(12193), + [anon_sym_BSLASHACRlong] = ACTIONS(12193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12193), + [anon_sym_BSLASHacrfull] = ACTIONS(12193), + [anon_sym_BSLASHAcrfull] = ACTIONS(12193), + [anon_sym_BSLASHACRfull] = ACTIONS(12193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12193), + [anon_sym_BSLASHacs] = ACTIONS(12193), + [anon_sym_BSLASHAcs] = ACTIONS(12193), + [anon_sym_BSLASHacsp] = ACTIONS(12193), + [anon_sym_BSLASHAcsp] = ACTIONS(12193), + [anon_sym_BSLASHacl] = ACTIONS(12193), + [anon_sym_BSLASHAcl] = ACTIONS(12193), + [anon_sym_BSLASHaclp] = ACTIONS(12193), + [anon_sym_BSLASHAclp] = ACTIONS(12193), + [anon_sym_BSLASHacf] = ACTIONS(12193), + [anon_sym_BSLASHAcf] = ACTIONS(12193), + [anon_sym_BSLASHacfp] = ACTIONS(12193), + [anon_sym_BSLASHAcfp] = ACTIONS(12193), + [anon_sym_BSLASHac] = ACTIONS(12193), + [anon_sym_BSLASHAc] = ACTIONS(12193), + [anon_sym_BSLASHacp] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12193), + [anon_sym_BSLASHcolor] = ACTIONS(12193), + [anon_sym_BSLASHcolorbox] = ACTIONS(12193), + [anon_sym_BSLASHtextcolor] = ACTIONS(12193), + [anon_sym_BSLASHpagecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12193), + }, + [1322] = { + [sym_generic_command_name] = ACTIONS(12243), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12243), + [aux_sym_subsubsection_token1] = ACTIONS(12243), + [aux_sym_paragraph_token1] = ACTIONS(12243), + [aux_sym_subparagraph_token1] = ACTIONS(12243), + [anon_sym_BSLASHitem] = ACTIONS(12243), + [anon_sym_LBRACK] = ACTIONS(12241), + [anon_sym_RBRACK] = ACTIONS(12241), + [anon_sym_LBRACE] = ACTIONS(12241), + [anon_sym_RBRACE] = ACTIONS(12241), + [anon_sym_LPAREN] = ACTIONS(12241), + [anon_sym_COMMA] = ACTIONS(12241), + [anon_sym_EQ] = ACTIONS(12241), + [sym_word] = ACTIONS(12241), + [sym_param] = ACTIONS(12241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12241), + [anon_sym_DOLLAR] = ACTIONS(12243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12241), + [anon_sym_BSLASHbegin] = ACTIONS(12243), + [anon_sym_BSLASHcaption] = ACTIONS(12243), + [anon_sym_BSLASHcite] = ACTIONS(12243), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCite] = ACTIONS(12243), + [anon_sym_BSLASHnocite] = ACTIONS(12243), + [anon_sym_BSLASHcitet] = ACTIONS(12243), + [anon_sym_BSLASHcitep] = ACTIONS(12243), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteauthor] = ACTIONS(12243), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12243), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitetitle] = ACTIONS(12243), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteyear] = ACTIONS(12243), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitedate] = ACTIONS(12243), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteurl] = ACTIONS(12243), + [anon_sym_BSLASHfullcite] = ACTIONS(12243), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12243), + [anon_sym_BSLASHcitealt] = ACTIONS(12243), + [anon_sym_BSLASHcitealp] = ACTIONS(12243), + [anon_sym_BSLASHcitetext] = ACTIONS(12243), + [anon_sym_BSLASHparencite] = ACTIONS(12243), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHParencite] = ACTIONS(12243), + [anon_sym_BSLASHfootcite] = ACTIONS(12243), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12243), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12243), + [anon_sym_BSLASHtextcite] = ACTIONS(12243), + [anon_sym_BSLASHTextcite] = ACTIONS(12243), + [anon_sym_BSLASHsmartcite] = ACTIONS(12243), + [anon_sym_BSLASHSmartcite] = ACTIONS(12243), + [anon_sym_BSLASHsupercite] = ACTIONS(12243), + [anon_sym_BSLASHautocite] = ACTIONS(12243), + [anon_sym_BSLASHAutocite] = ACTIONS(12243), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHvolcite] = ACTIONS(12243), + [anon_sym_BSLASHVolcite] = ACTIONS(12243), + [anon_sym_BSLASHpvolcite] = ACTIONS(12243), + [anon_sym_BSLASHPvolcite] = ACTIONS(12243), + [anon_sym_BSLASHfvolcite] = ACTIONS(12243), + [anon_sym_BSLASHftvolcite] = ACTIONS(12243), + [anon_sym_BSLASHsvolcite] = ACTIONS(12243), + [anon_sym_BSLASHSvolcite] = ACTIONS(12243), + [anon_sym_BSLASHtvolcite] = ACTIONS(12243), + [anon_sym_BSLASHTvolcite] = ACTIONS(12243), + [anon_sym_BSLASHavolcite] = ACTIONS(12243), + [anon_sym_BSLASHAvolcite] = ACTIONS(12243), + [anon_sym_BSLASHnotecite] = ACTIONS(12243), + [anon_sym_BSLASHpnotecite] = ACTIONS(12243), + [anon_sym_BSLASHPnotecite] = ACTIONS(12243), + [anon_sym_BSLASHfnotecite] = ACTIONS(12243), + [anon_sym_BSLASHusepackage] = ACTIONS(12243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12243), + [anon_sym_BSLASHinclude] = ACTIONS(12243), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12243), + [anon_sym_BSLASHinput] = ACTIONS(12243), + [anon_sym_BSLASHsubfile] = ACTIONS(12243), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12243), + [anon_sym_BSLASHbibliography] = ACTIONS(12243), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12243), + [anon_sym_BSLASHincludesvg] = ACTIONS(12243), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12243), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12243), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12243), + [anon_sym_BSLASHimport] = ACTIONS(12243), + [anon_sym_BSLASHsubimport] = ACTIONS(12243), + [anon_sym_BSLASHinputfrom] = ACTIONS(12243), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12243), + [anon_sym_BSLASHincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHlabel] = ACTIONS(12243), + [anon_sym_BSLASHref] = ACTIONS(12243), + [anon_sym_BSLASHvref] = ACTIONS(12243), + [anon_sym_BSLASHVref] = ACTIONS(12243), + [anon_sym_BSLASHautoref] = ACTIONS(12243), + [anon_sym_BSLASHpageref] = ACTIONS(12243), + [anon_sym_BSLASHcref] = ACTIONS(12243), + [anon_sym_BSLASHCref] = ACTIONS(12243), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnameCref] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHlabelcref] = ACTIONS(12243), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12243), + [anon_sym_BSLASHeqref] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange] = ACTIONS(12243), + [anon_sym_BSLASHCrefrange] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewlabel] = ACTIONS(12243), + [anon_sym_BSLASHnewcommand] = ACTIONS(12243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12243), + [anon_sym_BSLASHgls] = ACTIONS(12243), + [anon_sym_BSLASHGls] = ACTIONS(12243), + [anon_sym_BSLASHGLS] = ACTIONS(12243), + [anon_sym_BSLASHglspl] = ACTIONS(12243), + [anon_sym_BSLASHGlspl] = ACTIONS(12243), + [anon_sym_BSLASHGLSpl] = ACTIONS(12243), + [anon_sym_BSLASHglsdisp] = ACTIONS(12243), + [anon_sym_BSLASHglslink] = ACTIONS(12243), + [anon_sym_BSLASHglstext] = ACTIONS(12243), + [anon_sym_BSLASHGlstext] = ACTIONS(12243), + [anon_sym_BSLASHGLStext] = ACTIONS(12243), + [anon_sym_BSLASHglsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12243), + [anon_sym_BSLASHglsplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSplural] = ACTIONS(12243), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHglsname] = ACTIONS(12243), + [anon_sym_BSLASHGlsname] = ACTIONS(12243), + [anon_sym_BSLASHGLSname] = ACTIONS(12243), + [anon_sym_BSLASHglssymbol] = ACTIONS(12243), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12243), + [anon_sym_BSLASHglsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12243), + [anon_sym_BSLASHglsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12243), + [anon_sym_BSLASHglsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12243), + [anon_sym_BSLASHglsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12243), + [anon_sym_BSLASHglsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12243), + [anon_sym_BSLASHnewacronym] = ACTIONS(12243), + [anon_sym_BSLASHacrshort] = ACTIONS(12243), + [anon_sym_BSLASHAcrshort] = ACTIONS(12243), + [anon_sym_BSLASHACRshort] = ACTIONS(12243), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12243), + [anon_sym_BSLASHacrlong] = ACTIONS(12243), + [anon_sym_BSLASHAcrlong] = ACTIONS(12243), + [anon_sym_BSLASHACRlong] = ACTIONS(12243), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12243), + [anon_sym_BSLASHacrfull] = ACTIONS(12243), + [anon_sym_BSLASHAcrfull] = ACTIONS(12243), + [anon_sym_BSLASHACRfull] = ACTIONS(12243), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12243), + [anon_sym_BSLASHacs] = ACTIONS(12243), + [anon_sym_BSLASHAcs] = ACTIONS(12243), + [anon_sym_BSLASHacsp] = ACTIONS(12243), + [anon_sym_BSLASHAcsp] = ACTIONS(12243), + [anon_sym_BSLASHacl] = ACTIONS(12243), + [anon_sym_BSLASHAcl] = ACTIONS(12243), + [anon_sym_BSLASHaclp] = ACTIONS(12243), + [anon_sym_BSLASHAclp] = ACTIONS(12243), + [anon_sym_BSLASHacf] = ACTIONS(12243), + [anon_sym_BSLASHAcf] = ACTIONS(12243), + [anon_sym_BSLASHacfp] = ACTIONS(12243), + [anon_sym_BSLASHAcfp] = ACTIONS(12243), + [anon_sym_BSLASHac] = ACTIONS(12243), + [anon_sym_BSLASHAc] = ACTIONS(12243), + [anon_sym_BSLASHacp] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12243), + [anon_sym_BSLASHcolor] = ACTIONS(12243), + [anon_sym_BSLASHcolorbox] = ACTIONS(12243), + [anon_sym_BSLASHtextcolor] = ACTIONS(12243), + [anon_sym_BSLASHpagecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12243), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12243), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12243), + }, + [1323] = { + [sym_generic_command_name] = ACTIONS(12523), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12523), + [aux_sym_subsubsection_token1] = ACTIONS(12523), + [aux_sym_paragraph_token1] = ACTIONS(12523), + [aux_sym_subparagraph_token1] = ACTIONS(12523), + [anon_sym_BSLASHitem] = ACTIONS(12523), + [anon_sym_LBRACK] = ACTIONS(12521), + [anon_sym_RBRACK] = ACTIONS(12521), + [anon_sym_LBRACE] = ACTIONS(12521), + [anon_sym_RBRACE] = ACTIONS(12521), + [anon_sym_LPAREN] = ACTIONS(12521), + [anon_sym_COMMA] = ACTIONS(12521), + [anon_sym_EQ] = ACTIONS(12521), + [sym_word] = ACTIONS(12521), + [sym_param] = ACTIONS(12521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12521), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12521), + [anon_sym_DOLLAR] = ACTIONS(12523), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12521), + [anon_sym_BSLASHbegin] = ACTIONS(12523), + [anon_sym_BSLASHcaption] = ACTIONS(12523), + [anon_sym_BSLASHcite] = ACTIONS(12523), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCite] = ACTIONS(12523), + [anon_sym_BSLASHnocite] = ACTIONS(12523), + [anon_sym_BSLASHcitet] = ACTIONS(12523), + [anon_sym_BSLASHcitep] = ACTIONS(12523), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteauthor] = ACTIONS(12523), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12523), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitetitle] = ACTIONS(12523), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteyear] = ACTIONS(12523), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitedate] = ACTIONS(12523), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteurl] = ACTIONS(12523), + [anon_sym_BSLASHfullcite] = ACTIONS(12523), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12523), + [anon_sym_BSLASHcitealt] = ACTIONS(12523), + [anon_sym_BSLASHcitealp] = ACTIONS(12523), + [anon_sym_BSLASHcitetext] = ACTIONS(12523), + [anon_sym_BSLASHparencite] = ACTIONS(12523), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHParencite] = ACTIONS(12523), + [anon_sym_BSLASHfootcite] = ACTIONS(12523), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12523), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12523), + [anon_sym_BSLASHtextcite] = ACTIONS(12523), + [anon_sym_BSLASHTextcite] = ACTIONS(12523), + [anon_sym_BSLASHsmartcite] = ACTIONS(12523), + [anon_sym_BSLASHSmartcite] = ACTIONS(12523), + [anon_sym_BSLASHsupercite] = ACTIONS(12523), + [anon_sym_BSLASHautocite] = ACTIONS(12523), + [anon_sym_BSLASHAutocite] = ACTIONS(12523), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHvolcite] = ACTIONS(12523), + [anon_sym_BSLASHVolcite] = ACTIONS(12523), + [anon_sym_BSLASHpvolcite] = ACTIONS(12523), + [anon_sym_BSLASHPvolcite] = ACTIONS(12523), + [anon_sym_BSLASHfvolcite] = ACTIONS(12523), + [anon_sym_BSLASHftvolcite] = ACTIONS(12523), + [anon_sym_BSLASHsvolcite] = ACTIONS(12523), + [anon_sym_BSLASHSvolcite] = ACTIONS(12523), + [anon_sym_BSLASHtvolcite] = ACTIONS(12523), + [anon_sym_BSLASHTvolcite] = ACTIONS(12523), + [anon_sym_BSLASHavolcite] = ACTIONS(12523), + [anon_sym_BSLASHAvolcite] = ACTIONS(12523), + [anon_sym_BSLASHnotecite] = ACTIONS(12523), + [anon_sym_BSLASHpnotecite] = ACTIONS(12523), + [anon_sym_BSLASHPnotecite] = ACTIONS(12523), + [anon_sym_BSLASHfnotecite] = ACTIONS(12523), + [anon_sym_BSLASHusepackage] = ACTIONS(12523), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12523), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12523), + [anon_sym_BSLASHinclude] = ACTIONS(12523), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12523), + [anon_sym_BSLASHinput] = ACTIONS(12523), + [anon_sym_BSLASHsubfile] = ACTIONS(12523), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12523), + [anon_sym_BSLASHbibliography] = ACTIONS(12523), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12523), + [anon_sym_BSLASHincludesvg] = ACTIONS(12523), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12523), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12523), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12523), + [anon_sym_BSLASHimport] = ACTIONS(12523), + [anon_sym_BSLASHsubimport] = ACTIONS(12523), + [anon_sym_BSLASHinputfrom] = ACTIONS(12523), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12523), + [anon_sym_BSLASHincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHlabel] = ACTIONS(12523), + [anon_sym_BSLASHref] = ACTIONS(12523), + [anon_sym_BSLASHvref] = ACTIONS(12523), + [anon_sym_BSLASHVref] = ACTIONS(12523), + [anon_sym_BSLASHautoref] = ACTIONS(12523), + [anon_sym_BSLASHpageref] = ACTIONS(12523), + [anon_sym_BSLASHcref] = ACTIONS(12523), + [anon_sym_BSLASHCref] = ACTIONS(12523), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnameCref] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHlabelcref] = ACTIONS(12523), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12523), + [anon_sym_BSLASHeqref] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange] = ACTIONS(12523), + [anon_sym_BSLASHCrefrange] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewlabel] = ACTIONS(12523), + [anon_sym_BSLASHnewcommand] = ACTIONS(12523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12523), + [anon_sym_BSLASHgls] = ACTIONS(12523), + [anon_sym_BSLASHGls] = ACTIONS(12523), + [anon_sym_BSLASHGLS] = ACTIONS(12523), + [anon_sym_BSLASHglspl] = ACTIONS(12523), + [anon_sym_BSLASHGlspl] = ACTIONS(12523), + [anon_sym_BSLASHGLSpl] = ACTIONS(12523), + [anon_sym_BSLASHglsdisp] = ACTIONS(12523), + [anon_sym_BSLASHglslink] = ACTIONS(12523), + [anon_sym_BSLASHglstext] = ACTIONS(12523), + [anon_sym_BSLASHGlstext] = ACTIONS(12523), + [anon_sym_BSLASHGLStext] = ACTIONS(12523), + [anon_sym_BSLASHglsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12523), + [anon_sym_BSLASHglsplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSplural] = ACTIONS(12523), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHglsname] = ACTIONS(12523), + [anon_sym_BSLASHGlsname] = ACTIONS(12523), + [anon_sym_BSLASHGLSname] = ACTIONS(12523), + [anon_sym_BSLASHglssymbol] = ACTIONS(12523), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12523), + [anon_sym_BSLASHglsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12523), + [anon_sym_BSLASHglsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12523), + [anon_sym_BSLASHglsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12523), + [anon_sym_BSLASHglsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12523), + [anon_sym_BSLASHglsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12523), + [anon_sym_BSLASHnewacronym] = ACTIONS(12523), + [anon_sym_BSLASHacrshort] = ACTIONS(12523), + [anon_sym_BSLASHAcrshort] = ACTIONS(12523), + [anon_sym_BSLASHACRshort] = ACTIONS(12523), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12523), + [anon_sym_BSLASHacrlong] = ACTIONS(12523), + [anon_sym_BSLASHAcrlong] = ACTIONS(12523), + [anon_sym_BSLASHACRlong] = ACTIONS(12523), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12523), + [anon_sym_BSLASHacrfull] = ACTIONS(12523), + [anon_sym_BSLASHAcrfull] = ACTIONS(12523), + [anon_sym_BSLASHACRfull] = ACTIONS(12523), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12523), + [anon_sym_BSLASHacs] = ACTIONS(12523), + [anon_sym_BSLASHAcs] = ACTIONS(12523), + [anon_sym_BSLASHacsp] = ACTIONS(12523), + [anon_sym_BSLASHAcsp] = ACTIONS(12523), + [anon_sym_BSLASHacl] = ACTIONS(12523), + [anon_sym_BSLASHAcl] = ACTIONS(12523), + [anon_sym_BSLASHaclp] = ACTIONS(12523), + [anon_sym_BSLASHAclp] = ACTIONS(12523), + [anon_sym_BSLASHacf] = ACTIONS(12523), + [anon_sym_BSLASHAcf] = ACTIONS(12523), + [anon_sym_BSLASHacfp] = ACTIONS(12523), + [anon_sym_BSLASHAcfp] = ACTIONS(12523), + [anon_sym_BSLASHac] = ACTIONS(12523), + [anon_sym_BSLASHAc] = ACTIONS(12523), + [anon_sym_BSLASHacp] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12523), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12523), + [anon_sym_BSLASHcolor] = ACTIONS(12523), + [anon_sym_BSLASHcolorbox] = ACTIONS(12523), + [anon_sym_BSLASHtextcolor] = ACTIONS(12523), + [anon_sym_BSLASHpagecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12523), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12523), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12523), + }, + [1324] = { + [sym_generic_command_name] = ACTIONS(12527), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12527), + [aux_sym_subsubsection_token1] = ACTIONS(12527), + [aux_sym_paragraph_token1] = ACTIONS(12527), + [aux_sym_subparagraph_token1] = ACTIONS(12527), + [anon_sym_BSLASHitem] = ACTIONS(12527), + [anon_sym_LBRACK] = ACTIONS(12525), + [anon_sym_RBRACK] = ACTIONS(12525), + [anon_sym_LBRACE] = ACTIONS(12525), + [anon_sym_RBRACE] = ACTIONS(12525), + [anon_sym_LPAREN] = ACTIONS(12525), + [anon_sym_COMMA] = ACTIONS(12525), + [anon_sym_EQ] = ACTIONS(12525), + [sym_word] = ACTIONS(12525), + [sym_param] = ACTIONS(12525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12525), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12525), + [anon_sym_DOLLAR] = ACTIONS(12527), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12525), + [anon_sym_BSLASHbegin] = ACTIONS(12527), + [anon_sym_BSLASHcaption] = ACTIONS(12527), + [anon_sym_BSLASHcite] = ACTIONS(12527), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCite] = ACTIONS(12527), + [anon_sym_BSLASHnocite] = ACTIONS(12527), + [anon_sym_BSLASHcitet] = ACTIONS(12527), + [anon_sym_BSLASHcitep] = ACTIONS(12527), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteauthor] = ACTIONS(12527), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12527), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitetitle] = ACTIONS(12527), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteyear] = ACTIONS(12527), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitedate] = ACTIONS(12527), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteurl] = ACTIONS(12527), + [anon_sym_BSLASHfullcite] = ACTIONS(12527), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12527), + [anon_sym_BSLASHcitealt] = ACTIONS(12527), + [anon_sym_BSLASHcitealp] = ACTIONS(12527), + [anon_sym_BSLASHcitetext] = ACTIONS(12527), + [anon_sym_BSLASHparencite] = ACTIONS(12527), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHParencite] = ACTIONS(12527), + [anon_sym_BSLASHfootcite] = ACTIONS(12527), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12527), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12527), + [anon_sym_BSLASHtextcite] = ACTIONS(12527), + [anon_sym_BSLASHTextcite] = ACTIONS(12527), + [anon_sym_BSLASHsmartcite] = ACTIONS(12527), + [anon_sym_BSLASHSmartcite] = ACTIONS(12527), + [anon_sym_BSLASHsupercite] = ACTIONS(12527), + [anon_sym_BSLASHautocite] = ACTIONS(12527), + [anon_sym_BSLASHAutocite] = ACTIONS(12527), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHvolcite] = ACTIONS(12527), + [anon_sym_BSLASHVolcite] = ACTIONS(12527), + [anon_sym_BSLASHpvolcite] = ACTIONS(12527), + [anon_sym_BSLASHPvolcite] = ACTIONS(12527), + [anon_sym_BSLASHfvolcite] = ACTIONS(12527), + [anon_sym_BSLASHftvolcite] = ACTIONS(12527), + [anon_sym_BSLASHsvolcite] = ACTIONS(12527), + [anon_sym_BSLASHSvolcite] = ACTIONS(12527), + [anon_sym_BSLASHtvolcite] = ACTIONS(12527), + [anon_sym_BSLASHTvolcite] = ACTIONS(12527), + [anon_sym_BSLASHavolcite] = ACTIONS(12527), + [anon_sym_BSLASHAvolcite] = ACTIONS(12527), + [anon_sym_BSLASHnotecite] = ACTIONS(12527), + [anon_sym_BSLASHpnotecite] = ACTIONS(12527), + [anon_sym_BSLASHPnotecite] = ACTIONS(12527), + [anon_sym_BSLASHfnotecite] = ACTIONS(12527), + [anon_sym_BSLASHusepackage] = ACTIONS(12527), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12527), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12527), + [anon_sym_BSLASHinclude] = ACTIONS(12527), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12527), + [anon_sym_BSLASHinput] = ACTIONS(12527), + [anon_sym_BSLASHsubfile] = ACTIONS(12527), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12527), + [anon_sym_BSLASHbibliography] = ACTIONS(12527), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12527), + [anon_sym_BSLASHincludesvg] = ACTIONS(12527), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12527), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12527), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12527), + [anon_sym_BSLASHimport] = ACTIONS(12527), + [anon_sym_BSLASHsubimport] = ACTIONS(12527), + [anon_sym_BSLASHinputfrom] = ACTIONS(12527), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12527), + [anon_sym_BSLASHincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHlabel] = ACTIONS(12527), + [anon_sym_BSLASHref] = ACTIONS(12527), + [anon_sym_BSLASHvref] = ACTIONS(12527), + [anon_sym_BSLASHVref] = ACTIONS(12527), + [anon_sym_BSLASHautoref] = ACTIONS(12527), + [anon_sym_BSLASHpageref] = ACTIONS(12527), + [anon_sym_BSLASHcref] = ACTIONS(12527), + [anon_sym_BSLASHCref] = ACTIONS(12527), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnameCref] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHlabelcref] = ACTIONS(12527), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12527), + [anon_sym_BSLASHeqref] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange] = ACTIONS(12527), + [anon_sym_BSLASHCrefrange] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewlabel] = ACTIONS(12527), + [anon_sym_BSLASHnewcommand] = ACTIONS(12527), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12527), + [anon_sym_BSLASHgls] = ACTIONS(12527), + [anon_sym_BSLASHGls] = ACTIONS(12527), + [anon_sym_BSLASHGLS] = ACTIONS(12527), + [anon_sym_BSLASHglspl] = ACTIONS(12527), + [anon_sym_BSLASHGlspl] = ACTIONS(12527), + [anon_sym_BSLASHGLSpl] = ACTIONS(12527), + [anon_sym_BSLASHglsdisp] = ACTIONS(12527), + [anon_sym_BSLASHglslink] = ACTIONS(12527), + [anon_sym_BSLASHglstext] = ACTIONS(12527), + [anon_sym_BSLASHGlstext] = ACTIONS(12527), + [anon_sym_BSLASHGLStext] = ACTIONS(12527), + [anon_sym_BSLASHglsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12527), + [anon_sym_BSLASHglsplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSplural] = ACTIONS(12527), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHglsname] = ACTIONS(12527), + [anon_sym_BSLASHGlsname] = ACTIONS(12527), + [anon_sym_BSLASHGLSname] = ACTIONS(12527), + [anon_sym_BSLASHglssymbol] = ACTIONS(12527), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12527), + [anon_sym_BSLASHglsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12527), + [anon_sym_BSLASHglsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12527), + [anon_sym_BSLASHglsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12527), + [anon_sym_BSLASHglsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12527), + [anon_sym_BSLASHglsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12527), + [anon_sym_BSLASHnewacronym] = ACTIONS(12527), + [anon_sym_BSLASHacrshort] = ACTIONS(12527), + [anon_sym_BSLASHAcrshort] = ACTIONS(12527), + [anon_sym_BSLASHACRshort] = ACTIONS(12527), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12527), + [anon_sym_BSLASHacrlong] = ACTIONS(12527), + [anon_sym_BSLASHAcrlong] = ACTIONS(12527), + [anon_sym_BSLASHACRlong] = ACTIONS(12527), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12527), + [anon_sym_BSLASHacrfull] = ACTIONS(12527), + [anon_sym_BSLASHAcrfull] = ACTIONS(12527), + [anon_sym_BSLASHACRfull] = ACTIONS(12527), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12527), + [anon_sym_BSLASHacs] = ACTIONS(12527), + [anon_sym_BSLASHAcs] = ACTIONS(12527), + [anon_sym_BSLASHacsp] = ACTIONS(12527), + [anon_sym_BSLASHAcsp] = ACTIONS(12527), + [anon_sym_BSLASHacl] = ACTIONS(12527), + [anon_sym_BSLASHAcl] = ACTIONS(12527), + [anon_sym_BSLASHaclp] = ACTIONS(12527), + [anon_sym_BSLASHAclp] = ACTIONS(12527), + [anon_sym_BSLASHacf] = ACTIONS(12527), + [anon_sym_BSLASHAcf] = ACTIONS(12527), + [anon_sym_BSLASHacfp] = ACTIONS(12527), + [anon_sym_BSLASHAcfp] = ACTIONS(12527), + [anon_sym_BSLASHac] = ACTIONS(12527), + [anon_sym_BSLASHAc] = ACTIONS(12527), + [anon_sym_BSLASHacp] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12527), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12527), + [anon_sym_BSLASHcolor] = ACTIONS(12527), + [anon_sym_BSLASHcolorbox] = ACTIONS(12527), + [anon_sym_BSLASHtextcolor] = ACTIONS(12527), + [anon_sym_BSLASHpagecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12527), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12527), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12527), + }, + [1325] = { + [sym_generic_command_name] = ACTIONS(12531), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12531), + [aux_sym_subsubsection_token1] = ACTIONS(12531), + [aux_sym_paragraph_token1] = ACTIONS(12531), + [aux_sym_subparagraph_token1] = ACTIONS(12531), + [anon_sym_BSLASHitem] = ACTIONS(12531), + [anon_sym_LBRACK] = ACTIONS(12529), + [anon_sym_RBRACK] = ACTIONS(12529), + [anon_sym_LBRACE] = ACTIONS(12529), + [anon_sym_RBRACE] = ACTIONS(12529), + [anon_sym_LPAREN] = ACTIONS(12529), + [anon_sym_COMMA] = ACTIONS(12529), + [anon_sym_EQ] = ACTIONS(12529), + [sym_word] = ACTIONS(12529), + [sym_param] = ACTIONS(12529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12529), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12529), + [anon_sym_DOLLAR] = ACTIONS(12531), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12529), + [anon_sym_BSLASHbegin] = ACTIONS(12531), + [anon_sym_BSLASHcaption] = ACTIONS(12531), + [anon_sym_BSLASHcite] = ACTIONS(12531), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCite] = ACTIONS(12531), + [anon_sym_BSLASHnocite] = ACTIONS(12531), + [anon_sym_BSLASHcitet] = ACTIONS(12531), + [anon_sym_BSLASHcitep] = ACTIONS(12531), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteauthor] = ACTIONS(12531), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12531), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitetitle] = ACTIONS(12531), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteyear] = ACTIONS(12531), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitedate] = ACTIONS(12531), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteurl] = ACTIONS(12531), + [anon_sym_BSLASHfullcite] = ACTIONS(12531), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12531), + [anon_sym_BSLASHcitealt] = ACTIONS(12531), + [anon_sym_BSLASHcitealp] = ACTIONS(12531), + [anon_sym_BSLASHcitetext] = ACTIONS(12531), + [anon_sym_BSLASHparencite] = ACTIONS(12531), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHParencite] = ACTIONS(12531), + [anon_sym_BSLASHfootcite] = ACTIONS(12531), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12531), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12531), + [anon_sym_BSLASHtextcite] = ACTIONS(12531), + [anon_sym_BSLASHTextcite] = ACTIONS(12531), + [anon_sym_BSLASHsmartcite] = ACTIONS(12531), + [anon_sym_BSLASHSmartcite] = ACTIONS(12531), + [anon_sym_BSLASHsupercite] = ACTIONS(12531), + [anon_sym_BSLASHautocite] = ACTIONS(12531), + [anon_sym_BSLASHAutocite] = ACTIONS(12531), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHvolcite] = ACTIONS(12531), + [anon_sym_BSLASHVolcite] = ACTIONS(12531), + [anon_sym_BSLASHpvolcite] = ACTIONS(12531), + [anon_sym_BSLASHPvolcite] = ACTIONS(12531), + [anon_sym_BSLASHfvolcite] = ACTIONS(12531), + [anon_sym_BSLASHftvolcite] = ACTIONS(12531), + [anon_sym_BSLASHsvolcite] = ACTIONS(12531), + [anon_sym_BSLASHSvolcite] = ACTIONS(12531), + [anon_sym_BSLASHtvolcite] = ACTIONS(12531), + [anon_sym_BSLASHTvolcite] = ACTIONS(12531), + [anon_sym_BSLASHavolcite] = ACTIONS(12531), + [anon_sym_BSLASHAvolcite] = ACTIONS(12531), + [anon_sym_BSLASHnotecite] = ACTIONS(12531), + [anon_sym_BSLASHpnotecite] = ACTIONS(12531), + [anon_sym_BSLASHPnotecite] = ACTIONS(12531), + [anon_sym_BSLASHfnotecite] = ACTIONS(12531), + [anon_sym_BSLASHusepackage] = ACTIONS(12531), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12531), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12531), + [anon_sym_BSLASHinclude] = ACTIONS(12531), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12531), + [anon_sym_BSLASHinput] = ACTIONS(12531), + [anon_sym_BSLASHsubfile] = ACTIONS(12531), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12531), + [anon_sym_BSLASHbibliography] = ACTIONS(12531), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12531), + [anon_sym_BSLASHincludesvg] = ACTIONS(12531), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12531), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12531), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12531), + [anon_sym_BSLASHimport] = ACTIONS(12531), + [anon_sym_BSLASHsubimport] = ACTIONS(12531), + [anon_sym_BSLASHinputfrom] = ACTIONS(12531), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12531), + [anon_sym_BSLASHincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHlabel] = ACTIONS(12531), + [anon_sym_BSLASHref] = ACTIONS(12531), + [anon_sym_BSLASHvref] = ACTIONS(12531), + [anon_sym_BSLASHVref] = ACTIONS(12531), + [anon_sym_BSLASHautoref] = ACTIONS(12531), + [anon_sym_BSLASHpageref] = ACTIONS(12531), + [anon_sym_BSLASHcref] = ACTIONS(12531), + [anon_sym_BSLASHCref] = ACTIONS(12531), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnameCref] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHlabelcref] = ACTIONS(12531), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12531), + [anon_sym_BSLASHeqref] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange] = ACTIONS(12531), + [anon_sym_BSLASHCrefrange] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewlabel] = ACTIONS(12531), + [anon_sym_BSLASHnewcommand] = ACTIONS(12531), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12531), + [anon_sym_BSLASHgls] = ACTIONS(12531), + [anon_sym_BSLASHGls] = ACTIONS(12531), + [anon_sym_BSLASHGLS] = ACTIONS(12531), + [anon_sym_BSLASHglspl] = ACTIONS(12531), + [anon_sym_BSLASHGlspl] = ACTIONS(12531), + [anon_sym_BSLASHGLSpl] = ACTIONS(12531), + [anon_sym_BSLASHglsdisp] = ACTIONS(12531), + [anon_sym_BSLASHglslink] = ACTIONS(12531), + [anon_sym_BSLASHglstext] = ACTIONS(12531), + [anon_sym_BSLASHGlstext] = ACTIONS(12531), + [anon_sym_BSLASHGLStext] = ACTIONS(12531), + [anon_sym_BSLASHglsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12531), + [anon_sym_BSLASHglsplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSplural] = ACTIONS(12531), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHglsname] = ACTIONS(12531), + [anon_sym_BSLASHGlsname] = ACTIONS(12531), + [anon_sym_BSLASHGLSname] = ACTIONS(12531), + [anon_sym_BSLASHglssymbol] = ACTIONS(12531), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12531), + [anon_sym_BSLASHglsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12531), + [anon_sym_BSLASHglsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12531), + [anon_sym_BSLASHglsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12531), + [anon_sym_BSLASHglsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12531), + [anon_sym_BSLASHglsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12531), + [anon_sym_BSLASHnewacronym] = ACTIONS(12531), + [anon_sym_BSLASHacrshort] = ACTIONS(12531), + [anon_sym_BSLASHAcrshort] = ACTIONS(12531), + [anon_sym_BSLASHACRshort] = ACTIONS(12531), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12531), + [anon_sym_BSLASHacrlong] = ACTIONS(12531), + [anon_sym_BSLASHAcrlong] = ACTIONS(12531), + [anon_sym_BSLASHACRlong] = ACTIONS(12531), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12531), + [anon_sym_BSLASHacrfull] = ACTIONS(12531), + [anon_sym_BSLASHAcrfull] = ACTIONS(12531), + [anon_sym_BSLASHACRfull] = ACTIONS(12531), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12531), + [anon_sym_BSLASHacs] = ACTIONS(12531), + [anon_sym_BSLASHAcs] = ACTIONS(12531), + [anon_sym_BSLASHacsp] = ACTIONS(12531), + [anon_sym_BSLASHAcsp] = ACTIONS(12531), + [anon_sym_BSLASHacl] = ACTIONS(12531), + [anon_sym_BSLASHAcl] = ACTIONS(12531), + [anon_sym_BSLASHaclp] = ACTIONS(12531), + [anon_sym_BSLASHAclp] = ACTIONS(12531), + [anon_sym_BSLASHacf] = ACTIONS(12531), + [anon_sym_BSLASHAcf] = ACTIONS(12531), + [anon_sym_BSLASHacfp] = ACTIONS(12531), + [anon_sym_BSLASHAcfp] = ACTIONS(12531), + [anon_sym_BSLASHac] = ACTIONS(12531), + [anon_sym_BSLASHAc] = ACTIONS(12531), + [anon_sym_BSLASHacp] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12531), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12531), + [anon_sym_BSLASHcolor] = ACTIONS(12531), + [anon_sym_BSLASHcolorbox] = ACTIONS(12531), + [anon_sym_BSLASHtextcolor] = ACTIONS(12531), + [anon_sym_BSLASHpagecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12531), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12531), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12531), + }, + [1326] = { + [sym_generic_command_name] = ACTIONS(12539), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12539), + [aux_sym_subsubsection_token1] = ACTIONS(12539), + [aux_sym_paragraph_token1] = ACTIONS(12539), + [aux_sym_subparagraph_token1] = ACTIONS(12539), + [anon_sym_BSLASHitem] = ACTIONS(12539), + [anon_sym_LBRACK] = ACTIONS(12537), + [anon_sym_RBRACK] = ACTIONS(12537), + [anon_sym_LBRACE] = ACTIONS(12537), + [anon_sym_RBRACE] = ACTIONS(12537), + [anon_sym_LPAREN] = ACTIONS(12537), + [anon_sym_COMMA] = ACTIONS(12537), + [anon_sym_EQ] = ACTIONS(12537), + [sym_word] = ACTIONS(12537), + [sym_param] = ACTIONS(12537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12537), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12537), + [anon_sym_DOLLAR] = ACTIONS(12539), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12537), + [anon_sym_BSLASHbegin] = ACTIONS(12539), + [anon_sym_BSLASHcaption] = ACTIONS(12539), + [anon_sym_BSLASHcite] = ACTIONS(12539), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCite] = ACTIONS(12539), + [anon_sym_BSLASHnocite] = ACTIONS(12539), + [anon_sym_BSLASHcitet] = ACTIONS(12539), + [anon_sym_BSLASHcitep] = ACTIONS(12539), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteauthor] = ACTIONS(12539), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12539), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitetitle] = ACTIONS(12539), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteyear] = ACTIONS(12539), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitedate] = ACTIONS(12539), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteurl] = ACTIONS(12539), + [anon_sym_BSLASHfullcite] = ACTIONS(12539), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12539), + [anon_sym_BSLASHcitealt] = ACTIONS(12539), + [anon_sym_BSLASHcitealp] = ACTIONS(12539), + [anon_sym_BSLASHcitetext] = ACTIONS(12539), + [anon_sym_BSLASHparencite] = ACTIONS(12539), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHParencite] = ACTIONS(12539), + [anon_sym_BSLASHfootcite] = ACTIONS(12539), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12539), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12539), + [anon_sym_BSLASHtextcite] = ACTIONS(12539), + [anon_sym_BSLASHTextcite] = ACTIONS(12539), + [anon_sym_BSLASHsmartcite] = ACTIONS(12539), + [anon_sym_BSLASHSmartcite] = ACTIONS(12539), + [anon_sym_BSLASHsupercite] = ACTIONS(12539), + [anon_sym_BSLASHautocite] = ACTIONS(12539), + [anon_sym_BSLASHAutocite] = ACTIONS(12539), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHvolcite] = ACTIONS(12539), + [anon_sym_BSLASHVolcite] = ACTIONS(12539), + [anon_sym_BSLASHpvolcite] = ACTIONS(12539), + [anon_sym_BSLASHPvolcite] = ACTIONS(12539), + [anon_sym_BSLASHfvolcite] = ACTIONS(12539), + [anon_sym_BSLASHftvolcite] = ACTIONS(12539), + [anon_sym_BSLASHsvolcite] = ACTIONS(12539), + [anon_sym_BSLASHSvolcite] = ACTIONS(12539), + [anon_sym_BSLASHtvolcite] = ACTIONS(12539), + [anon_sym_BSLASHTvolcite] = ACTIONS(12539), + [anon_sym_BSLASHavolcite] = ACTIONS(12539), + [anon_sym_BSLASHAvolcite] = ACTIONS(12539), + [anon_sym_BSLASHnotecite] = ACTIONS(12539), + [anon_sym_BSLASHpnotecite] = ACTIONS(12539), + [anon_sym_BSLASHPnotecite] = ACTIONS(12539), + [anon_sym_BSLASHfnotecite] = ACTIONS(12539), + [anon_sym_BSLASHusepackage] = ACTIONS(12539), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12539), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12539), + [anon_sym_BSLASHinclude] = ACTIONS(12539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12539), + [anon_sym_BSLASHinput] = ACTIONS(12539), + [anon_sym_BSLASHsubfile] = ACTIONS(12539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12539), + [anon_sym_BSLASHbibliography] = ACTIONS(12539), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12539), + [anon_sym_BSLASHincludesvg] = ACTIONS(12539), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12539), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12539), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12539), + [anon_sym_BSLASHimport] = ACTIONS(12539), + [anon_sym_BSLASHsubimport] = ACTIONS(12539), + [anon_sym_BSLASHinputfrom] = ACTIONS(12539), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12539), + [anon_sym_BSLASHincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHlabel] = ACTIONS(12539), + [anon_sym_BSLASHref] = ACTIONS(12539), + [anon_sym_BSLASHvref] = ACTIONS(12539), + [anon_sym_BSLASHVref] = ACTIONS(12539), + [anon_sym_BSLASHautoref] = ACTIONS(12539), + [anon_sym_BSLASHpageref] = ACTIONS(12539), + [anon_sym_BSLASHcref] = ACTIONS(12539), + [anon_sym_BSLASHCref] = ACTIONS(12539), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnameCref] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHlabelcref] = ACTIONS(12539), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12539), + [anon_sym_BSLASHeqref] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange] = ACTIONS(12539), + [anon_sym_BSLASHCrefrange] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewlabel] = ACTIONS(12539), + [anon_sym_BSLASHnewcommand] = ACTIONS(12539), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12539), + [anon_sym_BSLASHgls] = ACTIONS(12539), + [anon_sym_BSLASHGls] = ACTIONS(12539), + [anon_sym_BSLASHGLS] = ACTIONS(12539), + [anon_sym_BSLASHglspl] = ACTIONS(12539), + [anon_sym_BSLASHGlspl] = ACTIONS(12539), + [anon_sym_BSLASHGLSpl] = ACTIONS(12539), + [anon_sym_BSLASHglsdisp] = ACTIONS(12539), + [anon_sym_BSLASHglslink] = ACTIONS(12539), + [anon_sym_BSLASHglstext] = ACTIONS(12539), + [anon_sym_BSLASHGlstext] = ACTIONS(12539), + [anon_sym_BSLASHGLStext] = ACTIONS(12539), + [anon_sym_BSLASHglsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12539), + [anon_sym_BSLASHglsplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSplural] = ACTIONS(12539), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHglsname] = ACTIONS(12539), + [anon_sym_BSLASHGlsname] = ACTIONS(12539), + [anon_sym_BSLASHGLSname] = ACTIONS(12539), + [anon_sym_BSLASHglssymbol] = ACTIONS(12539), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12539), + [anon_sym_BSLASHglsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12539), + [anon_sym_BSLASHglsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12539), + [anon_sym_BSLASHglsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12539), + [anon_sym_BSLASHglsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12539), + [anon_sym_BSLASHglsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12539), + [anon_sym_BSLASHnewacronym] = ACTIONS(12539), + [anon_sym_BSLASHacrshort] = ACTIONS(12539), + [anon_sym_BSLASHAcrshort] = ACTIONS(12539), + [anon_sym_BSLASHACRshort] = ACTIONS(12539), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12539), + [anon_sym_BSLASHacrlong] = ACTIONS(12539), + [anon_sym_BSLASHAcrlong] = ACTIONS(12539), + [anon_sym_BSLASHACRlong] = ACTIONS(12539), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12539), + [anon_sym_BSLASHacrfull] = ACTIONS(12539), + [anon_sym_BSLASHAcrfull] = ACTIONS(12539), + [anon_sym_BSLASHACRfull] = ACTIONS(12539), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12539), + [anon_sym_BSLASHacs] = ACTIONS(12539), + [anon_sym_BSLASHAcs] = ACTIONS(12539), + [anon_sym_BSLASHacsp] = ACTIONS(12539), + [anon_sym_BSLASHAcsp] = ACTIONS(12539), + [anon_sym_BSLASHacl] = ACTIONS(12539), + [anon_sym_BSLASHAcl] = ACTIONS(12539), + [anon_sym_BSLASHaclp] = ACTIONS(12539), + [anon_sym_BSLASHAclp] = ACTIONS(12539), + [anon_sym_BSLASHacf] = ACTIONS(12539), + [anon_sym_BSLASHAcf] = ACTIONS(12539), + [anon_sym_BSLASHacfp] = ACTIONS(12539), + [anon_sym_BSLASHAcfp] = ACTIONS(12539), + [anon_sym_BSLASHac] = ACTIONS(12539), + [anon_sym_BSLASHAc] = ACTIONS(12539), + [anon_sym_BSLASHacp] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12539), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12539), + [anon_sym_BSLASHcolor] = ACTIONS(12539), + [anon_sym_BSLASHcolorbox] = ACTIONS(12539), + [anon_sym_BSLASHtextcolor] = ACTIONS(12539), + [anon_sym_BSLASHpagecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12539), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12539), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12539), + }, + [1327] = { + [sym_generic_command_name] = ACTIONS(12543), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12543), + [aux_sym_subsubsection_token1] = ACTIONS(12543), + [aux_sym_paragraph_token1] = ACTIONS(12543), + [aux_sym_subparagraph_token1] = ACTIONS(12543), + [anon_sym_BSLASHitem] = ACTIONS(12543), + [anon_sym_LBRACK] = ACTIONS(12541), + [anon_sym_RBRACK] = ACTIONS(12541), + [anon_sym_LBRACE] = ACTIONS(12541), + [anon_sym_RBRACE] = ACTIONS(12541), + [anon_sym_LPAREN] = ACTIONS(12541), + [anon_sym_COMMA] = ACTIONS(12541), + [anon_sym_EQ] = ACTIONS(12541), + [sym_word] = ACTIONS(12541), + [sym_param] = ACTIONS(12541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12541), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12541), + [anon_sym_DOLLAR] = ACTIONS(12543), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12541), + [anon_sym_BSLASHbegin] = ACTIONS(12543), + [anon_sym_BSLASHcaption] = ACTIONS(12543), + [anon_sym_BSLASHcite] = ACTIONS(12543), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCite] = ACTIONS(12543), + [anon_sym_BSLASHnocite] = ACTIONS(12543), + [anon_sym_BSLASHcitet] = ACTIONS(12543), + [anon_sym_BSLASHcitep] = ACTIONS(12543), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteauthor] = ACTIONS(12543), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12543), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitetitle] = ACTIONS(12543), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteyear] = ACTIONS(12543), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitedate] = ACTIONS(12543), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteurl] = ACTIONS(12543), + [anon_sym_BSLASHfullcite] = ACTIONS(12543), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12543), + [anon_sym_BSLASHcitealt] = ACTIONS(12543), + [anon_sym_BSLASHcitealp] = ACTIONS(12543), + [anon_sym_BSLASHcitetext] = ACTIONS(12543), + [anon_sym_BSLASHparencite] = ACTIONS(12543), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHParencite] = ACTIONS(12543), + [anon_sym_BSLASHfootcite] = ACTIONS(12543), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12543), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12543), + [anon_sym_BSLASHtextcite] = ACTIONS(12543), + [anon_sym_BSLASHTextcite] = ACTIONS(12543), + [anon_sym_BSLASHsmartcite] = ACTIONS(12543), + [anon_sym_BSLASHSmartcite] = ACTIONS(12543), + [anon_sym_BSLASHsupercite] = ACTIONS(12543), + [anon_sym_BSLASHautocite] = ACTIONS(12543), + [anon_sym_BSLASHAutocite] = ACTIONS(12543), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHvolcite] = ACTIONS(12543), + [anon_sym_BSLASHVolcite] = ACTIONS(12543), + [anon_sym_BSLASHpvolcite] = ACTIONS(12543), + [anon_sym_BSLASHPvolcite] = ACTIONS(12543), + [anon_sym_BSLASHfvolcite] = ACTIONS(12543), + [anon_sym_BSLASHftvolcite] = ACTIONS(12543), + [anon_sym_BSLASHsvolcite] = ACTIONS(12543), + [anon_sym_BSLASHSvolcite] = ACTIONS(12543), + [anon_sym_BSLASHtvolcite] = ACTIONS(12543), + [anon_sym_BSLASHTvolcite] = ACTIONS(12543), + [anon_sym_BSLASHavolcite] = ACTIONS(12543), + [anon_sym_BSLASHAvolcite] = ACTIONS(12543), + [anon_sym_BSLASHnotecite] = ACTIONS(12543), + [anon_sym_BSLASHpnotecite] = ACTIONS(12543), + [anon_sym_BSLASHPnotecite] = ACTIONS(12543), + [anon_sym_BSLASHfnotecite] = ACTIONS(12543), + [anon_sym_BSLASHusepackage] = ACTIONS(12543), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12543), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12543), + [anon_sym_BSLASHinclude] = ACTIONS(12543), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12543), + [anon_sym_BSLASHinput] = ACTIONS(12543), + [anon_sym_BSLASHsubfile] = ACTIONS(12543), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12543), + [anon_sym_BSLASHbibliography] = ACTIONS(12543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12543), + [anon_sym_BSLASHincludesvg] = ACTIONS(12543), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12543), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12543), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12543), + [anon_sym_BSLASHimport] = ACTIONS(12543), + [anon_sym_BSLASHsubimport] = ACTIONS(12543), + [anon_sym_BSLASHinputfrom] = ACTIONS(12543), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12543), + [anon_sym_BSLASHincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHlabel] = ACTIONS(12543), + [anon_sym_BSLASHref] = ACTIONS(12543), + [anon_sym_BSLASHvref] = ACTIONS(12543), + [anon_sym_BSLASHVref] = ACTIONS(12543), + [anon_sym_BSLASHautoref] = ACTIONS(12543), + [anon_sym_BSLASHpageref] = ACTIONS(12543), + [anon_sym_BSLASHcref] = ACTIONS(12543), + [anon_sym_BSLASHCref] = ACTIONS(12543), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnameCref] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHlabelcref] = ACTIONS(12543), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12543), + [anon_sym_BSLASHeqref] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange] = ACTIONS(12543), + [anon_sym_BSLASHCrefrange] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewlabel] = ACTIONS(12543), + [anon_sym_BSLASHnewcommand] = ACTIONS(12543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12543), + [anon_sym_BSLASHgls] = ACTIONS(12543), + [anon_sym_BSLASHGls] = ACTIONS(12543), + [anon_sym_BSLASHGLS] = ACTIONS(12543), + [anon_sym_BSLASHglspl] = ACTIONS(12543), + [anon_sym_BSLASHGlspl] = ACTIONS(12543), + [anon_sym_BSLASHGLSpl] = ACTIONS(12543), + [anon_sym_BSLASHglsdisp] = ACTIONS(12543), + [anon_sym_BSLASHglslink] = ACTIONS(12543), + [anon_sym_BSLASHglstext] = ACTIONS(12543), + [anon_sym_BSLASHGlstext] = ACTIONS(12543), + [anon_sym_BSLASHGLStext] = ACTIONS(12543), + [anon_sym_BSLASHglsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12543), + [anon_sym_BSLASHglsplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSplural] = ACTIONS(12543), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHglsname] = ACTIONS(12543), + [anon_sym_BSLASHGlsname] = ACTIONS(12543), + [anon_sym_BSLASHGLSname] = ACTIONS(12543), + [anon_sym_BSLASHglssymbol] = ACTIONS(12543), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12543), + [anon_sym_BSLASHglsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12543), + [anon_sym_BSLASHglsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12543), + [anon_sym_BSLASHglsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12543), + [anon_sym_BSLASHglsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12543), + [anon_sym_BSLASHglsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12543), + [anon_sym_BSLASHnewacronym] = ACTIONS(12543), + [anon_sym_BSLASHacrshort] = ACTIONS(12543), + [anon_sym_BSLASHAcrshort] = ACTIONS(12543), + [anon_sym_BSLASHACRshort] = ACTIONS(12543), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12543), + [anon_sym_BSLASHacrlong] = ACTIONS(12543), + [anon_sym_BSLASHAcrlong] = ACTIONS(12543), + [anon_sym_BSLASHACRlong] = ACTIONS(12543), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12543), + [anon_sym_BSLASHacrfull] = ACTIONS(12543), + [anon_sym_BSLASHAcrfull] = ACTIONS(12543), + [anon_sym_BSLASHACRfull] = ACTIONS(12543), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12543), + [anon_sym_BSLASHacs] = ACTIONS(12543), + [anon_sym_BSLASHAcs] = ACTIONS(12543), + [anon_sym_BSLASHacsp] = ACTIONS(12543), + [anon_sym_BSLASHAcsp] = ACTIONS(12543), + [anon_sym_BSLASHacl] = ACTIONS(12543), + [anon_sym_BSLASHAcl] = ACTIONS(12543), + [anon_sym_BSLASHaclp] = ACTIONS(12543), + [anon_sym_BSLASHAclp] = ACTIONS(12543), + [anon_sym_BSLASHacf] = ACTIONS(12543), + [anon_sym_BSLASHAcf] = ACTIONS(12543), + [anon_sym_BSLASHacfp] = ACTIONS(12543), + [anon_sym_BSLASHAcfp] = ACTIONS(12543), + [anon_sym_BSLASHac] = ACTIONS(12543), + [anon_sym_BSLASHAc] = ACTIONS(12543), + [anon_sym_BSLASHacp] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12543), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12543), + [anon_sym_BSLASHcolor] = ACTIONS(12543), + [anon_sym_BSLASHcolorbox] = ACTIONS(12543), + [anon_sym_BSLASHtextcolor] = ACTIONS(12543), + [anon_sym_BSLASHpagecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12543), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12543), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12543), + }, + [1328] = { + [sym_generic_command_name] = ACTIONS(12104), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12104), + [aux_sym_subsubsection_token1] = ACTIONS(12104), + [aux_sym_paragraph_token1] = ACTIONS(12104), + [aux_sym_subparagraph_token1] = ACTIONS(12104), + [anon_sym_BSLASHitem] = ACTIONS(12104), + [anon_sym_LBRACK] = ACTIONS(12102), + [anon_sym_RBRACK] = ACTIONS(12102), + [anon_sym_LBRACE] = ACTIONS(12102), + [anon_sym_RBRACE] = ACTIONS(12102), + [anon_sym_LPAREN] = ACTIONS(12102), + [anon_sym_COMMA] = ACTIONS(12102), + [anon_sym_EQ] = ACTIONS(12102), + [sym_word] = ACTIONS(12102), + [sym_param] = ACTIONS(12102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12102), + [anon_sym_DOLLAR] = ACTIONS(12104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12102), + [anon_sym_BSLASHbegin] = ACTIONS(12104), + [anon_sym_BSLASHcaption] = ACTIONS(12104), + [anon_sym_BSLASHcite] = ACTIONS(12104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCite] = ACTIONS(12104), + [anon_sym_BSLASHnocite] = ACTIONS(12104), + [anon_sym_BSLASHcitet] = ACTIONS(12104), + [anon_sym_BSLASHcitep] = ACTIONS(12104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteauthor] = ACTIONS(12104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitetitle] = ACTIONS(12104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteyear] = ACTIONS(12104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitedate] = ACTIONS(12104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteurl] = ACTIONS(12104), + [anon_sym_BSLASHfullcite] = ACTIONS(12104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12104), + [anon_sym_BSLASHcitealt] = ACTIONS(12104), + [anon_sym_BSLASHcitealp] = ACTIONS(12104), + [anon_sym_BSLASHcitetext] = ACTIONS(12104), + [anon_sym_BSLASHparencite] = ACTIONS(12104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHParencite] = ACTIONS(12104), + [anon_sym_BSLASHfootcite] = ACTIONS(12104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12104), + [anon_sym_BSLASHtextcite] = ACTIONS(12104), + [anon_sym_BSLASHTextcite] = ACTIONS(12104), + [anon_sym_BSLASHsmartcite] = ACTIONS(12104), + [anon_sym_BSLASHSmartcite] = ACTIONS(12104), + [anon_sym_BSLASHsupercite] = ACTIONS(12104), + [anon_sym_BSLASHautocite] = ACTIONS(12104), + [anon_sym_BSLASHAutocite] = ACTIONS(12104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHvolcite] = ACTIONS(12104), + [anon_sym_BSLASHVolcite] = ACTIONS(12104), + [anon_sym_BSLASHpvolcite] = ACTIONS(12104), + [anon_sym_BSLASHPvolcite] = ACTIONS(12104), + [anon_sym_BSLASHfvolcite] = ACTIONS(12104), + [anon_sym_BSLASHftvolcite] = ACTIONS(12104), + [anon_sym_BSLASHsvolcite] = ACTIONS(12104), + [anon_sym_BSLASHSvolcite] = ACTIONS(12104), + [anon_sym_BSLASHtvolcite] = ACTIONS(12104), + [anon_sym_BSLASHTvolcite] = ACTIONS(12104), + [anon_sym_BSLASHavolcite] = ACTIONS(12104), + [anon_sym_BSLASHAvolcite] = ACTIONS(12104), + [anon_sym_BSLASHnotecite] = ACTIONS(12104), + [anon_sym_BSLASHpnotecite] = ACTIONS(12104), + [anon_sym_BSLASHPnotecite] = ACTIONS(12104), + [anon_sym_BSLASHfnotecite] = ACTIONS(12104), + [anon_sym_BSLASHusepackage] = ACTIONS(12104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12104), + [anon_sym_BSLASHinclude] = ACTIONS(12104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12104), + [anon_sym_BSLASHinput] = ACTIONS(12104), + [anon_sym_BSLASHsubfile] = ACTIONS(12104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12104), + [anon_sym_BSLASHbibliography] = ACTIONS(12104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12104), + [anon_sym_BSLASHincludesvg] = ACTIONS(12104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12104), + [anon_sym_BSLASHimport] = ACTIONS(12104), + [anon_sym_BSLASHsubimport] = ACTIONS(12104), + [anon_sym_BSLASHinputfrom] = ACTIONS(12104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12104), + [anon_sym_BSLASHincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHlabel] = ACTIONS(12104), + [anon_sym_BSLASHref] = ACTIONS(12104), + [anon_sym_BSLASHvref] = ACTIONS(12104), + [anon_sym_BSLASHVref] = ACTIONS(12104), + [anon_sym_BSLASHautoref] = ACTIONS(12104), + [anon_sym_BSLASHpageref] = ACTIONS(12104), + [anon_sym_BSLASHcref] = ACTIONS(12104), + [anon_sym_BSLASHCref] = ACTIONS(12104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnameCref] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHlabelcref] = ACTIONS(12104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12104), + [anon_sym_BSLASHeqref] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange] = ACTIONS(12104), + [anon_sym_BSLASHCrefrange] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewlabel] = ACTIONS(12104), + [anon_sym_BSLASHnewcommand] = ACTIONS(12104), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12104), + [anon_sym_BSLASHgls] = ACTIONS(12104), + [anon_sym_BSLASHGls] = ACTIONS(12104), + [anon_sym_BSLASHGLS] = ACTIONS(12104), + [anon_sym_BSLASHglspl] = ACTIONS(12104), + [anon_sym_BSLASHGlspl] = ACTIONS(12104), + [anon_sym_BSLASHGLSpl] = ACTIONS(12104), + [anon_sym_BSLASHglsdisp] = ACTIONS(12104), + [anon_sym_BSLASHglslink] = ACTIONS(12104), + [anon_sym_BSLASHglstext] = ACTIONS(12104), + [anon_sym_BSLASHGlstext] = ACTIONS(12104), + [anon_sym_BSLASHGLStext] = ACTIONS(12104), + [anon_sym_BSLASHglsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12104), + [anon_sym_BSLASHglsplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSplural] = ACTIONS(12104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHglsname] = ACTIONS(12104), + [anon_sym_BSLASHGlsname] = ACTIONS(12104), + [anon_sym_BSLASHGLSname] = ACTIONS(12104), + [anon_sym_BSLASHglssymbol] = ACTIONS(12104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12104), + [anon_sym_BSLASHglsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12104), + [anon_sym_BSLASHglsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12104), + [anon_sym_BSLASHglsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12104), + [anon_sym_BSLASHglsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12104), + [anon_sym_BSLASHglsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12104), + [anon_sym_BSLASHnewacronym] = ACTIONS(12104), + [anon_sym_BSLASHacrshort] = ACTIONS(12104), + [anon_sym_BSLASHAcrshort] = ACTIONS(12104), + [anon_sym_BSLASHACRshort] = ACTIONS(12104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12104), + [anon_sym_BSLASHacrlong] = ACTIONS(12104), + [anon_sym_BSLASHAcrlong] = ACTIONS(12104), + [anon_sym_BSLASHACRlong] = ACTIONS(12104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12104), + [anon_sym_BSLASHacrfull] = ACTIONS(12104), + [anon_sym_BSLASHAcrfull] = ACTIONS(12104), + [anon_sym_BSLASHACRfull] = ACTIONS(12104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12104), + [anon_sym_BSLASHacs] = ACTIONS(12104), + [anon_sym_BSLASHAcs] = ACTIONS(12104), + [anon_sym_BSLASHacsp] = ACTIONS(12104), + [anon_sym_BSLASHAcsp] = ACTIONS(12104), + [anon_sym_BSLASHacl] = ACTIONS(12104), + [anon_sym_BSLASHAcl] = ACTIONS(12104), + [anon_sym_BSLASHaclp] = ACTIONS(12104), + [anon_sym_BSLASHAclp] = ACTIONS(12104), + [anon_sym_BSLASHacf] = ACTIONS(12104), + [anon_sym_BSLASHAcf] = ACTIONS(12104), + [anon_sym_BSLASHacfp] = ACTIONS(12104), + [anon_sym_BSLASHAcfp] = ACTIONS(12104), + [anon_sym_BSLASHac] = ACTIONS(12104), + [anon_sym_BSLASHAc] = ACTIONS(12104), + [anon_sym_BSLASHacp] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12104), + [anon_sym_BSLASHcolor] = ACTIONS(12104), + [anon_sym_BSLASHcolorbox] = ACTIONS(12104), + [anon_sym_BSLASHtextcolor] = ACTIONS(12104), + [anon_sym_BSLASHpagecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12104), + }, + [1329] = { + [sym_generic_command_name] = ACTIONS(12547), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12547), + [aux_sym_subsubsection_token1] = ACTIONS(12547), + [aux_sym_paragraph_token1] = ACTIONS(12547), + [aux_sym_subparagraph_token1] = ACTIONS(12547), + [anon_sym_BSLASHitem] = ACTIONS(12547), + [anon_sym_LBRACK] = ACTIONS(12545), + [anon_sym_RBRACK] = ACTIONS(12545), + [anon_sym_LBRACE] = ACTIONS(12545), + [anon_sym_RBRACE] = ACTIONS(12545), + [anon_sym_LPAREN] = ACTIONS(12545), + [anon_sym_COMMA] = ACTIONS(12545), + [anon_sym_EQ] = ACTIONS(12545), + [sym_word] = ACTIONS(12545), + [sym_param] = ACTIONS(12545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12545), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12545), + [anon_sym_DOLLAR] = ACTIONS(12547), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12545), + [anon_sym_BSLASHbegin] = ACTIONS(12547), + [anon_sym_BSLASHcaption] = ACTIONS(12547), + [anon_sym_BSLASHcite] = ACTIONS(12547), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCite] = ACTIONS(12547), + [anon_sym_BSLASHnocite] = ACTIONS(12547), + [anon_sym_BSLASHcitet] = ACTIONS(12547), + [anon_sym_BSLASHcitep] = ACTIONS(12547), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteauthor] = ACTIONS(12547), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12547), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitetitle] = ACTIONS(12547), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteyear] = ACTIONS(12547), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitedate] = ACTIONS(12547), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteurl] = ACTIONS(12547), + [anon_sym_BSLASHfullcite] = ACTIONS(12547), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12547), + [anon_sym_BSLASHcitealt] = ACTIONS(12547), + [anon_sym_BSLASHcitealp] = ACTIONS(12547), + [anon_sym_BSLASHcitetext] = ACTIONS(12547), + [anon_sym_BSLASHparencite] = ACTIONS(12547), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHParencite] = ACTIONS(12547), + [anon_sym_BSLASHfootcite] = ACTIONS(12547), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12547), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12547), + [anon_sym_BSLASHtextcite] = ACTIONS(12547), + [anon_sym_BSLASHTextcite] = ACTIONS(12547), + [anon_sym_BSLASHsmartcite] = ACTIONS(12547), + [anon_sym_BSLASHSmartcite] = ACTIONS(12547), + [anon_sym_BSLASHsupercite] = ACTIONS(12547), + [anon_sym_BSLASHautocite] = ACTIONS(12547), + [anon_sym_BSLASHAutocite] = ACTIONS(12547), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHvolcite] = ACTIONS(12547), + [anon_sym_BSLASHVolcite] = ACTIONS(12547), + [anon_sym_BSLASHpvolcite] = ACTIONS(12547), + [anon_sym_BSLASHPvolcite] = ACTIONS(12547), + [anon_sym_BSLASHfvolcite] = ACTIONS(12547), + [anon_sym_BSLASHftvolcite] = ACTIONS(12547), + [anon_sym_BSLASHsvolcite] = ACTIONS(12547), + [anon_sym_BSLASHSvolcite] = ACTIONS(12547), + [anon_sym_BSLASHtvolcite] = ACTIONS(12547), + [anon_sym_BSLASHTvolcite] = ACTIONS(12547), + [anon_sym_BSLASHavolcite] = ACTIONS(12547), + [anon_sym_BSLASHAvolcite] = ACTIONS(12547), + [anon_sym_BSLASHnotecite] = ACTIONS(12547), + [anon_sym_BSLASHpnotecite] = ACTIONS(12547), + [anon_sym_BSLASHPnotecite] = ACTIONS(12547), + [anon_sym_BSLASHfnotecite] = ACTIONS(12547), + [anon_sym_BSLASHusepackage] = ACTIONS(12547), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12547), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12547), + [anon_sym_BSLASHinclude] = ACTIONS(12547), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12547), + [anon_sym_BSLASHinput] = ACTIONS(12547), + [anon_sym_BSLASHsubfile] = ACTIONS(12547), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12547), + [anon_sym_BSLASHbibliography] = ACTIONS(12547), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12547), + [anon_sym_BSLASHincludesvg] = ACTIONS(12547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12547), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12547), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12547), + [anon_sym_BSLASHimport] = ACTIONS(12547), + [anon_sym_BSLASHsubimport] = ACTIONS(12547), + [anon_sym_BSLASHinputfrom] = ACTIONS(12547), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12547), + [anon_sym_BSLASHincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHlabel] = ACTIONS(12547), + [anon_sym_BSLASHref] = ACTIONS(12547), + [anon_sym_BSLASHvref] = ACTIONS(12547), + [anon_sym_BSLASHVref] = ACTIONS(12547), + [anon_sym_BSLASHautoref] = ACTIONS(12547), + [anon_sym_BSLASHpageref] = ACTIONS(12547), + [anon_sym_BSLASHcref] = ACTIONS(12547), + [anon_sym_BSLASHCref] = ACTIONS(12547), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnameCref] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHlabelcref] = ACTIONS(12547), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12547), + [anon_sym_BSLASHeqref] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange] = ACTIONS(12547), + [anon_sym_BSLASHCrefrange] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewlabel] = ACTIONS(12547), + [anon_sym_BSLASHnewcommand] = ACTIONS(12547), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12547), + [anon_sym_BSLASHgls] = ACTIONS(12547), + [anon_sym_BSLASHGls] = ACTIONS(12547), + [anon_sym_BSLASHGLS] = ACTIONS(12547), + [anon_sym_BSLASHglspl] = ACTIONS(12547), + [anon_sym_BSLASHGlspl] = ACTIONS(12547), + [anon_sym_BSLASHGLSpl] = ACTIONS(12547), + [anon_sym_BSLASHglsdisp] = ACTIONS(12547), + [anon_sym_BSLASHglslink] = ACTIONS(12547), + [anon_sym_BSLASHglstext] = ACTIONS(12547), + [anon_sym_BSLASHGlstext] = ACTIONS(12547), + [anon_sym_BSLASHGLStext] = ACTIONS(12547), + [anon_sym_BSLASHglsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12547), + [anon_sym_BSLASHglsplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSplural] = ACTIONS(12547), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHglsname] = ACTIONS(12547), + [anon_sym_BSLASHGlsname] = ACTIONS(12547), + [anon_sym_BSLASHGLSname] = ACTIONS(12547), + [anon_sym_BSLASHglssymbol] = ACTIONS(12547), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12547), + [anon_sym_BSLASHglsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12547), + [anon_sym_BSLASHglsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12547), + [anon_sym_BSLASHglsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12547), + [anon_sym_BSLASHglsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12547), + [anon_sym_BSLASHglsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12547), + [anon_sym_BSLASHnewacronym] = ACTIONS(12547), + [anon_sym_BSLASHacrshort] = ACTIONS(12547), + [anon_sym_BSLASHAcrshort] = ACTIONS(12547), + [anon_sym_BSLASHACRshort] = ACTIONS(12547), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12547), + [anon_sym_BSLASHacrlong] = ACTIONS(12547), + [anon_sym_BSLASHAcrlong] = ACTIONS(12547), + [anon_sym_BSLASHACRlong] = ACTIONS(12547), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12547), + [anon_sym_BSLASHacrfull] = ACTIONS(12547), + [anon_sym_BSLASHAcrfull] = ACTIONS(12547), + [anon_sym_BSLASHACRfull] = ACTIONS(12547), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12547), + [anon_sym_BSLASHacs] = ACTIONS(12547), + [anon_sym_BSLASHAcs] = ACTIONS(12547), + [anon_sym_BSLASHacsp] = ACTIONS(12547), + [anon_sym_BSLASHAcsp] = ACTIONS(12547), + [anon_sym_BSLASHacl] = ACTIONS(12547), + [anon_sym_BSLASHAcl] = ACTIONS(12547), + [anon_sym_BSLASHaclp] = ACTIONS(12547), + [anon_sym_BSLASHAclp] = ACTIONS(12547), + [anon_sym_BSLASHacf] = ACTIONS(12547), + [anon_sym_BSLASHAcf] = ACTIONS(12547), + [anon_sym_BSLASHacfp] = ACTIONS(12547), + [anon_sym_BSLASHAcfp] = ACTIONS(12547), + [anon_sym_BSLASHac] = ACTIONS(12547), + [anon_sym_BSLASHAc] = ACTIONS(12547), + [anon_sym_BSLASHacp] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12547), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12547), + [anon_sym_BSLASHcolor] = ACTIONS(12547), + [anon_sym_BSLASHcolorbox] = ACTIONS(12547), + [anon_sym_BSLASHtextcolor] = ACTIONS(12547), + [anon_sym_BSLASHpagecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12547), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12547), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12547), + }, + [1330] = { + [sym_generic_command_name] = ACTIONS(12255), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12255), + [aux_sym_subsubsection_token1] = ACTIONS(12255), + [aux_sym_paragraph_token1] = ACTIONS(12255), + [aux_sym_subparagraph_token1] = ACTIONS(12255), + [anon_sym_BSLASHitem] = ACTIONS(12255), + [anon_sym_LBRACK] = ACTIONS(12253), + [anon_sym_RBRACK] = ACTIONS(12253), + [anon_sym_LBRACE] = ACTIONS(12253), + [anon_sym_RBRACE] = ACTIONS(12253), + [anon_sym_LPAREN] = ACTIONS(12253), + [anon_sym_COMMA] = ACTIONS(12253), + [anon_sym_EQ] = ACTIONS(12253), + [sym_word] = ACTIONS(12253), + [sym_param] = ACTIONS(12253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12253), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12253), + [anon_sym_DOLLAR] = ACTIONS(12255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12253), + [anon_sym_BSLASHbegin] = ACTIONS(12255), + [anon_sym_BSLASHcaption] = ACTIONS(12255), + [anon_sym_BSLASHcite] = ACTIONS(12255), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCite] = ACTIONS(12255), + [anon_sym_BSLASHnocite] = ACTIONS(12255), + [anon_sym_BSLASHcitet] = ACTIONS(12255), + [anon_sym_BSLASHcitep] = ACTIONS(12255), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteauthor] = ACTIONS(12255), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12255), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitetitle] = ACTIONS(12255), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteyear] = ACTIONS(12255), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitedate] = ACTIONS(12255), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteurl] = ACTIONS(12255), + [anon_sym_BSLASHfullcite] = ACTIONS(12255), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12255), + [anon_sym_BSLASHcitealt] = ACTIONS(12255), + [anon_sym_BSLASHcitealp] = ACTIONS(12255), + [anon_sym_BSLASHcitetext] = ACTIONS(12255), + [anon_sym_BSLASHparencite] = ACTIONS(12255), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHParencite] = ACTIONS(12255), + [anon_sym_BSLASHfootcite] = ACTIONS(12255), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12255), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12255), + [anon_sym_BSLASHtextcite] = ACTIONS(12255), + [anon_sym_BSLASHTextcite] = ACTIONS(12255), + [anon_sym_BSLASHsmartcite] = ACTIONS(12255), + [anon_sym_BSLASHSmartcite] = ACTIONS(12255), + [anon_sym_BSLASHsupercite] = ACTIONS(12255), + [anon_sym_BSLASHautocite] = ACTIONS(12255), + [anon_sym_BSLASHAutocite] = ACTIONS(12255), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHvolcite] = ACTIONS(12255), + [anon_sym_BSLASHVolcite] = ACTIONS(12255), + [anon_sym_BSLASHpvolcite] = ACTIONS(12255), + [anon_sym_BSLASHPvolcite] = ACTIONS(12255), + [anon_sym_BSLASHfvolcite] = ACTIONS(12255), + [anon_sym_BSLASHftvolcite] = ACTIONS(12255), + [anon_sym_BSLASHsvolcite] = ACTIONS(12255), + [anon_sym_BSLASHSvolcite] = ACTIONS(12255), + [anon_sym_BSLASHtvolcite] = ACTIONS(12255), + [anon_sym_BSLASHTvolcite] = ACTIONS(12255), + [anon_sym_BSLASHavolcite] = ACTIONS(12255), + [anon_sym_BSLASHAvolcite] = ACTIONS(12255), + [anon_sym_BSLASHnotecite] = ACTIONS(12255), + [anon_sym_BSLASHpnotecite] = ACTIONS(12255), + [anon_sym_BSLASHPnotecite] = ACTIONS(12255), + [anon_sym_BSLASHfnotecite] = ACTIONS(12255), + [anon_sym_BSLASHusepackage] = ACTIONS(12255), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12255), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12255), + [anon_sym_BSLASHinclude] = ACTIONS(12255), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12255), + [anon_sym_BSLASHinput] = ACTIONS(12255), + [anon_sym_BSLASHsubfile] = ACTIONS(12255), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12255), + [anon_sym_BSLASHbibliography] = ACTIONS(12255), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12255), + [anon_sym_BSLASHincludesvg] = ACTIONS(12255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12255), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12255), + [anon_sym_BSLASHimport] = ACTIONS(12255), + [anon_sym_BSLASHsubimport] = ACTIONS(12255), + [anon_sym_BSLASHinputfrom] = ACTIONS(12255), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12255), + [anon_sym_BSLASHincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHlabel] = ACTIONS(12255), + [anon_sym_BSLASHref] = ACTIONS(12255), + [anon_sym_BSLASHvref] = ACTIONS(12255), + [anon_sym_BSLASHVref] = ACTIONS(12255), + [anon_sym_BSLASHautoref] = ACTIONS(12255), + [anon_sym_BSLASHpageref] = ACTIONS(12255), + [anon_sym_BSLASHcref] = ACTIONS(12255), + [anon_sym_BSLASHCref] = ACTIONS(12255), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnameCref] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHlabelcref] = ACTIONS(12255), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12255), + [anon_sym_BSLASHeqref] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange] = ACTIONS(12255), + [anon_sym_BSLASHCrefrange] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewlabel] = ACTIONS(12255), + [anon_sym_BSLASHnewcommand] = ACTIONS(12255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12255), + [anon_sym_BSLASHgls] = ACTIONS(12255), + [anon_sym_BSLASHGls] = ACTIONS(12255), + [anon_sym_BSLASHGLS] = ACTIONS(12255), + [anon_sym_BSLASHglspl] = ACTIONS(12255), + [anon_sym_BSLASHGlspl] = ACTIONS(12255), + [anon_sym_BSLASHGLSpl] = ACTIONS(12255), + [anon_sym_BSLASHglsdisp] = ACTIONS(12255), + [anon_sym_BSLASHglslink] = ACTIONS(12255), + [anon_sym_BSLASHglstext] = ACTIONS(12255), + [anon_sym_BSLASHGlstext] = ACTIONS(12255), + [anon_sym_BSLASHGLStext] = ACTIONS(12255), + [anon_sym_BSLASHglsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12255), + [anon_sym_BSLASHglsplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSplural] = ACTIONS(12255), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHglsname] = ACTIONS(12255), + [anon_sym_BSLASHGlsname] = ACTIONS(12255), + [anon_sym_BSLASHGLSname] = ACTIONS(12255), + [anon_sym_BSLASHglssymbol] = ACTIONS(12255), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12255), + [anon_sym_BSLASHglsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12255), + [anon_sym_BSLASHglsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12255), + [anon_sym_BSLASHglsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12255), + [anon_sym_BSLASHglsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12255), + [anon_sym_BSLASHglsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12255), + [anon_sym_BSLASHnewacronym] = ACTIONS(12255), + [anon_sym_BSLASHacrshort] = ACTIONS(12255), + [anon_sym_BSLASHAcrshort] = ACTIONS(12255), + [anon_sym_BSLASHACRshort] = ACTIONS(12255), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12255), + [anon_sym_BSLASHacrlong] = ACTIONS(12255), + [anon_sym_BSLASHAcrlong] = ACTIONS(12255), + [anon_sym_BSLASHACRlong] = ACTIONS(12255), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12255), + [anon_sym_BSLASHacrfull] = ACTIONS(12255), + [anon_sym_BSLASHAcrfull] = ACTIONS(12255), + [anon_sym_BSLASHACRfull] = ACTIONS(12255), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12255), + [anon_sym_BSLASHacs] = ACTIONS(12255), + [anon_sym_BSLASHAcs] = ACTIONS(12255), + [anon_sym_BSLASHacsp] = ACTIONS(12255), + [anon_sym_BSLASHAcsp] = ACTIONS(12255), + [anon_sym_BSLASHacl] = ACTIONS(12255), + [anon_sym_BSLASHAcl] = ACTIONS(12255), + [anon_sym_BSLASHaclp] = ACTIONS(12255), + [anon_sym_BSLASHAclp] = ACTIONS(12255), + [anon_sym_BSLASHacf] = ACTIONS(12255), + [anon_sym_BSLASHAcf] = ACTIONS(12255), + [anon_sym_BSLASHacfp] = ACTIONS(12255), + [anon_sym_BSLASHAcfp] = ACTIONS(12255), + [anon_sym_BSLASHac] = ACTIONS(12255), + [anon_sym_BSLASHAc] = ACTIONS(12255), + [anon_sym_BSLASHacp] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12255), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12255), + [anon_sym_BSLASHcolor] = ACTIONS(12255), + [anon_sym_BSLASHcolorbox] = ACTIONS(12255), + [anon_sym_BSLASHtextcolor] = ACTIONS(12255), + [anon_sym_BSLASHpagecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12255), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12255), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12255), + }, + [1331] = { + [sym_generic_command_name] = ACTIONS(12559), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12559), + [aux_sym_subsubsection_token1] = ACTIONS(12559), + [aux_sym_paragraph_token1] = ACTIONS(12559), + [aux_sym_subparagraph_token1] = ACTIONS(12559), + [anon_sym_BSLASHitem] = ACTIONS(12559), + [anon_sym_LBRACK] = ACTIONS(12557), + [anon_sym_RBRACK] = ACTIONS(12557), + [anon_sym_LBRACE] = ACTIONS(12557), + [anon_sym_RBRACE] = ACTIONS(12557), + [anon_sym_LPAREN] = ACTIONS(12557), + [anon_sym_COMMA] = ACTIONS(12557), + [anon_sym_EQ] = ACTIONS(12557), + [sym_word] = ACTIONS(12557), + [sym_param] = ACTIONS(12557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12557), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12557), + [anon_sym_DOLLAR] = ACTIONS(12559), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12557), + [anon_sym_BSLASHbegin] = ACTIONS(12559), + [anon_sym_BSLASHcaption] = ACTIONS(12559), + [anon_sym_BSLASHcite] = ACTIONS(12559), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCite] = ACTIONS(12559), + [anon_sym_BSLASHnocite] = ACTIONS(12559), + [anon_sym_BSLASHcitet] = ACTIONS(12559), + [anon_sym_BSLASHcitep] = ACTIONS(12559), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteauthor] = ACTIONS(12559), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12559), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitetitle] = ACTIONS(12559), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteyear] = ACTIONS(12559), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitedate] = ACTIONS(12559), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteurl] = ACTIONS(12559), + [anon_sym_BSLASHfullcite] = ACTIONS(12559), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12559), + [anon_sym_BSLASHcitealt] = ACTIONS(12559), + [anon_sym_BSLASHcitealp] = ACTIONS(12559), + [anon_sym_BSLASHcitetext] = ACTIONS(12559), + [anon_sym_BSLASHparencite] = ACTIONS(12559), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHParencite] = ACTIONS(12559), + [anon_sym_BSLASHfootcite] = ACTIONS(12559), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12559), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12559), + [anon_sym_BSLASHtextcite] = ACTIONS(12559), + [anon_sym_BSLASHTextcite] = ACTIONS(12559), + [anon_sym_BSLASHsmartcite] = ACTIONS(12559), + [anon_sym_BSLASHSmartcite] = ACTIONS(12559), + [anon_sym_BSLASHsupercite] = ACTIONS(12559), + [anon_sym_BSLASHautocite] = ACTIONS(12559), + [anon_sym_BSLASHAutocite] = ACTIONS(12559), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHvolcite] = ACTIONS(12559), + [anon_sym_BSLASHVolcite] = ACTIONS(12559), + [anon_sym_BSLASHpvolcite] = ACTIONS(12559), + [anon_sym_BSLASHPvolcite] = ACTIONS(12559), + [anon_sym_BSLASHfvolcite] = ACTIONS(12559), + [anon_sym_BSLASHftvolcite] = ACTIONS(12559), + [anon_sym_BSLASHsvolcite] = ACTIONS(12559), + [anon_sym_BSLASHSvolcite] = ACTIONS(12559), + [anon_sym_BSLASHtvolcite] = ACTIONS(12559), + [anon_sym_BSLASHTvolcite] = ACTIONS(12559), + [anon_sym_BSLASHavolcite] = ACTIONS(12559), + [anon_sym_BSLASHAvolcite] = ACTIONS(12559), + [anon_sym_BSLASHnotecite] = ACTIONS(12559), + [anon_sym_BSLASHpnotecite] = ACTIONS(12559), + [anon_sym_BSLASHPnotecite] = ACTIONS(12559), + [anon_sym_BSLASHfnotecite] = ACTIONS(12559), + [anon_sym_BSLASHusepackage] = ACTIONS(12559), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12559), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12559), + [anon_sym_BSLASHinclude] = ACTIONS(12559), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12559), + [anon_sym_BSLASHinput] = ACTIONS(12559), + [anon_sym_BSLASHsubfile] = ACTIONS(12559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12559), + [anon_sym_BSLASHbibliography] = ACTIONS(12559), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12559), + [anon_sym_BSLASHincludesvg] = ACTIONS(12559), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12559), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12559), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12559), + [anon_sym_BSLASHimport] = ACTIONS(12559), + [anon_sym_BSLASHsubimport] = ACTIONS(12559), + [anon_sym_BSLASHinputfrom] = ACTIONS(12559), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12559), + [anon_sym_BSLASHincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHlabel] = ACTIONS(12559), + [anon_sym_BSLASHref] = ACTIONS(12559), + [anon_sym_BSLASHvref] = ACTIONS(12559), + [anon_sym_BSLASHVref] = ACTIONS(12559), + [anon_sym_BSLASHautoref] = ACTIONS(12559), + [anon_sym_BSLASHpageref] = ACTIONS(12559), + [anon_sym_BSLASHcref] = ACTIONS(12559), + [anon_sym_BSLASHCref] = ACTIONS(12559), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnameCref] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHlabelcref] = ACTIONS(12559), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12559), + [anon_sym_BSLASHeqref] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange] = ACTIONS(12559), + [anon_sym_BSLASHCrefrange] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewlabel] = ACTIONS(12559), + [anon_sym_BSLASHnewcommand] = ACTIONS(12559), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12559), + [anon_sym_BSLASHgls] = ACTIONS(12559), + [anon_sym_BSLASHGls] = ACTIONS(12559), + [anon_sym_BSLASHGLS] = ACTIONS(12559), + [anon_sym_BSLASHglspl] = ACTIONS(12559), + [anon_sym_BSLASHGlspl] = ACTIONS(12559), + [anon_sym_BSLASHGLSpl] = ACTIONS(12559), + [anon_sym_BSLASHglsdisp] = ACTIONS(12559), + [anon_sym_BSLASHglslink] = ACTIONS(12559), + [anon_sym_BSLASHglstext] = ACTIONS(12559), + [anon_sym_BSLASHGlstext] = ACTIONS(12559), + [anon_sym_BSLASHGLStext] = ACTIONS(12559), + [anon_sym_BSLASHglsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12559), + [anon_sym_BSLASHglsplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSplural] = ACTIONS(12559), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHglsname] = ACTIONS(12559), + [anon_sym_BSLASHGlsname] = ACTIONS(12559), + [anon_sym_BSLASHGLSname] = ACTIONS(12559), + [anon_sym_BSLASHglssymbol] = ACTIONS(12559), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12559), + [anon_sym_BSLASHglsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12559), + [anon_sym_BSLASHglsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12559), + [anon_sym_BSLASHglsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12559), + [anon_sym_BSLASHglsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12559), + [anon_sym_BSLASHglsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12559), + [anon_sym_BSLASHnewacronym] = ACTIONS(12559), + [anon_sym_BSLASHacrshort] = ACTIONS(12559), + [anon_sym_BSLASHAcrshort] = ACTIONS(12559), + [anon_sym_BSLASHACRshort] = ACTIONS(12559), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12559), + [anon_sym_BSLASHacrlong] = ACTIONS(12559), + [anon_sym_BSLASHAcrlong] = ACTIONS(12559), + [anon_sym_BSLASHACRlong] = ACTIONS(12559), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12559), + [anon_sym_BSLASHacrfull] = ACTIONS(12559), + [anon_sym_BSLASHAcrfull] = ACTIONS(12559), + [anon_sym_BSLASHACRfull] = ACTIONS(12559), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12559), + [anon_sym_BSLASHacs] = ACTIONS(12559), + [anon_sym_BSLASHAcs] = ACTIONS(12559), + [anon_sym_BSLASHacsp] = ACTIONS(12559), + [anon_sym_BSLASHAcsp] = ACTIONS(12559), + [anon_sym_BSLASHacl] = ACTIONS(12559), + [anon_sym_BSLASHAcl] = ACTIONS(12559), + [anon_sym_BSLASHaclp] = ACTIONS(12559), + [anon_sym_BSLASHAclp] = ACTIONS(12559), + [anon_sym_BSLASHacf] = ACTIONS(12559), + [anon_sym_BSLASHAcf] = ACTIONS(12559), + [anon_sym_BSLASHacfp] = ACTIONS(12559), + [anon_sym_BSLASHAcfp] = ACTIONS(12559), + [anon_sym_BSLASHac] = ACTIONS(12559), + [anon_sym_BSLASHAc] = ACTIONS(12559), + [anon_sym_BSLASHacp] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12559), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12559), + [anon_sym_BSLASHcolor] = ACTIONS(12559), + [anon_sym_BSLASHcolorbox] = ACTIONS(12559), + [anon_sym_BSLASHtextcolor] = ACTIONS(12559), + [anon_sym_BSLASHpagecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12559), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12559), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12559), + }, + [1332] = { + [sym_generic_command_name] = ACTIONS(12555), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12555), + [aux_sym_subsubsection_token1] = ACTIONS(12555), + [aux_sym_paragraph_token1] = ACTIONS(12555), + [aux_sym_subparagraph_token1] = ACTIONS(12555), + [anon_sym_BSLASHitem] = ACTIONS(12555), + [anon_sym_LBRACK] = ACTIONS(12553), + [anon_sym_RBRACK] = ACTIONS(12553), + [anon_sym_LBRACE] = ACTIONS(12553), + [anon_sym_RBRACE] = ACTIONS(12553), + [anon_sym_LPAREN] = ACTIONS(12553), + [anon_sym_COMMA] = ACTIONS(12553), + [anon_sym_EQ] = ACTIONS(12553), + [sym_word] = ACTIONS(12553), + [sym_param] = ACTIONS(12553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12553), + [anon_sym_DOLLAR] = ACTIONS(12555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12553), + [anon_sym_BSLASHbegin] = ACTIONS(12555), + [anon_sym_BSLASHcaption] = ACTIONS(12555), + [anon_sym_BSLASHcite] = ACTIONS(12555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCite] = ACTIONS(12555), + [anon_sym_BSLASHnocite] = ACTIONS(12555), + [anon_sym_BSLASHcitet] = ACTIONS(12555), + [anon_sym_BSLASHcitep] = ACTIONS(12555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteauthor] = ACTIONS(12555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitetitle] = ACTIONS(12555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteyear] = ACTIONS(12555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitedate] = ACTIONS(12555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteurl] = ACTIONS(12555), + [anon_sym_BSLASHfullcite] = ACTIONS(12555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12555), + [anon_sym_BSLASHcitealt] = ACTIONS(12555), + [anon_sym_BSLASHcitealp] = ACTIONS(12555), + [anon_sym_BSLASHcitetext] = ACTIONS(12555), + [anon_sym_BSLASHparencite] = ACTIONS(12555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHParencite] = ACTIONS(12555), + [anon_sym_BSLASHfootcite] = ACTIONS(12555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12555), + [anon_sym_BSLASHtextcite] = ACTIONS(12555), + [anon_sym_BSLASHTextcite] = ACTIONS(12555), + [anon_sym_BSLASHsmartcite] = ACTIONS(12555), + [anon_sym_BSLASHSmartcite] = ACTIONS(12555), + [anon_sym_BSLASHsupercite] = ACTIONS(12555), + [anon_sym_BSLASHautocite] = ACTIONS(12555), + [anon_sym_BSLASHAutocite] = ACTIONS(12555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHvolcite] = ACTIONS(12555), + [anon_sym_BSLASHVolcite] = ACTIONS(12555), + [anon_sym_BSLASHpvolcite] = ACTIONS(12555), + [anon_sym_BSLASHPvolcite] = ACTIONS(12555), + [anon_sym_BSLASHfvolcite] = ACTIONS(12555), + [anon_sym_BSLASHftvolcite] = ACTIONS(12555), + [anon_sym_BSLASHsvolcite] = ACTIONS(12555), + [anon_sym_BSLASHSvolcite] = ACTIONS(12555), + [anon_sym_BSLASHtvolcite] = ACTIONS(12555), + [anon_sym_BSLASHTvolcite] = ACTIONS(12555), + [anon_sym_BSLASHavolcite] = ACTIONS(12555), + [anon_sym_BSLASHAvolcite] = ACTIONS(12555), + [anon_sym_BSLASHnotecite] = ACTIONS(12555), + [anon_sym_BSLASHpnotecite] = ACTIONS(12555), + [anon_sym_BSLASHPnotecite] = ACTIONS(12555), + [anon_sym_BSLASHfnotecite] = ACTIONS(12555), + [anon_sym_BSLASHusepackage] = ACTIONS(12555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12555), + [anon_sym_BSLASHinclude] = ACTIONS(12555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12555), + [anon_sym_BSLASHinput] = ACTIONS(12555), + [anon_sym_BSLASHsubfile] = ACTIONS(12555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12555), + [anon_sym_BSLASHbibliography] = ACTIONS(12555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12555), + [anon_sym_BSLASHincludesvg] = ACTIONS(12555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12555), + [anon_sym_BSLASHimport] = ACTIONS(12555), + [anon_sym_BSLASHsubimport] = ACTIONS(12555), + [anon_sym_BSLASHinputfrom] = ACTIONS(12555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12555), + [anon_sym_BSLASHincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHlabel] = ACTIONS(12555), + [anon_sym_BSLASHref] = ACTIONS(12555), + [anon_sym_BSLASHvref] = ACTIONS(12555), + [anon_sym_BSLASHVref] = ACTIONS(12555), + [anon_sym_BSLASHautoref] = ACTIONS(12555), + [anon_sym_BSLASHpageref] = ACTIONS(12555), + [anon_sym_BSLASHcref] = ACTIONS(12555), + [anon_sym_BSLASHCref] = ACTIONS(12555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnameCref] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHlabelcref] = ACTIONS(12555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12555), + [anon_sym_BSLASHeqref] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange] = ACTIONS(12555), + [anon_sym_BSLASHCrefrange] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewlabel] = ACTIONS(12555), + [anon_sym_BSLASHnewcommand] = ACTIONS(12555), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12555), + [anon_sym_BSLASHgls] = ACTIONS(12555), + [anon_sym_BSLASHGls] = ACTIONS(12555), + [anon_sym_BSLASHGLS] = ACTIONS(12555), + [anon_sym_BSLASHglspl] = ACTIONS(12555), + [anon_sym_BSLASHGlspl] = ACTIONS(12555), + [anon_sym_BSLASHGLSpl] = ACTIONS(12555), + [anon_sym_BSLASHglsdisp] = ACTIONS(12555), + [anon_sym_BSLASHglslink] = ACTIONS(12555), + [anon_sym_BSLASHglstext] = ACTIONS(12555), + [anon_sym_BSLASHGlstext] = ACTIONS(12555), + [anon_sym_BSLASHGLStext] = ACTIONS(12555), + [anon_sym_BSLASHglsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12555), + [anon_sym_BSLASHglsplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSplural] = ACTIONS(12555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHglsname] = ACTIONS(12555), + [anon_sym_BSLASHGlsname] = ACTIONS(12555), + [anon_sym_BSLASHGLSname] = ACTIONS(12555), + [anon_sym_BSLASHglssymbol] = ACTIONS(12555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12555), + [anon_sym_BSLASHglsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12555), + [anon_sym_BSLASHglsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12555), + [anon_sym_BSLASHglsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12555), + [anon_sym_BSLASHglsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12555), + [anon_sym_BSLASHglsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12555), + [anon_sym_BSLASHnewacronym] = ACTIONS(12555), + [anon_sym_BSLASHacrshort] = ACTIONS(12555), + [anon_sym_BSLASHAcrshort] = ACTIONS(12555), + [anon_sym_BSLASHACRshort] = ACTIONS(12555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12555), + [anon_sym_BSLASHacrlong] = ACTIONS(12555), + [anon_sym_BSLASHAcrlong] = ACTIONS(12555), + [anon_sym_BSLASHACRlong] = ACTIONS(12555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12555), + [anon_sym_BSLASHacrfull] = ACTIONS(12555), + [anon_sym_BSLASHAcrfull] = ACTIONS(12555), + [anon_sym_BSLASHACRfull] = ACTIONS(12555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12555), + [anon_sym_BSLASHacs] = ACTIONS(12555), + [anon_sym_BSLASHAcs] = ACTIONS(12555), + [anon_sym_BSLASHacsp] = ACTIONS(12555), + [anon_sym_BSLASHAcsp] = ACTIONS(12555), + [anon_sym_BSLASHacl] = ACTIONS(12555), + [anon_sym_BSLASHAcl] = ACTIONS(12555), + [anon_sym_BSLASHaclp] = ACTIONS(12555), + [anon_sym_BSLASHAclp] = ACTIONS(12555), + [anon_sym_BSLASHacf] = ACTIONS(12555), + [anon_sym_BSLASHAcf] = ACTIONS(12555), + [anon_sym_BSLASHacfp] = ACTIONS(12555), + [anon_sym_BSLASHAcfp] = ACTIONS(12555), + [anon_sym_BSLASHac] = ACTIONS(12555), + [anon_sym_BSLASHAc] = ACTIONS(12555), + [anon_sym_BSLASHacp] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12555), + [anon_sym_BSLASHcolor] = ACTIONS(12555), + [anon_sym_BSLASHcolorbox] = ACTIONS(12555), + [anon_sym_BSLASHtextcolor] = ACTIONS(12555), + [anon_sym_BSLASHpagecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12555), + }, + [1333] = { + [sym_generic_command_name] = ACTIONS(12551), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12551), + [aux_sym_subsubsection_token1] = ACTIONS(12551), + [aux_sym_paragraph_token1] = ACTIONS(12551), + [aux_sym_subparagraph_token1] = ACTIONS(12551), + [anon_sym_BSLASHitem] = ACTIONS(12551), + [anon_sym_LBRACK] = ACTIONS(12549), + [anon_sym_RBRACK] = ACTIONS(12549), + [anon_sym_LBRACE] = ACTIONS(12549), + [anon_sym_RBRACE] = ACTIONS(12549), + [anon_sym_LPAREN] = ACTIONS(12549), + [anon_sym_COMMA] = ACTIONS(12549), + [anon_sym_EQ] = ACTIONS(12549), + [sym_word] = ACTIONS(12549), + [sym_param] = ACTIONS(12549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12549), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12549), + [anon_sym_DOLLAR] = ACTIONS(12551), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12549), + [anon_sym_BSLASHbegin] = ACTIONS(12551), + [anon_sym_BSLASHcaption] = ACTIONS(12551), + [anon_sym_BSLASHcite] = ACTIONS(12551), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCite] = ACTIONS(12551), + [anon_sym_BSLASHnocite] = ACTIONS(12551), + [anon_sym_BSLASHcitet] = ACTIONS(12551), + [anon_sym_BSLASHcitep] = ACTIONS(12551), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteauthor] = ACTIONS(12551), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12551), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitetitle] = ACTIONS(12551), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteyear] = ACTIONS(12551), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitedate] = ACTIONS(12551), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteurl] = ACTIONS(12551), + [anon_sym_BSLASHfullcite] = ACTIONS(12551), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12551), + [anon_sym_BSLASHcitealt] = ACTIONS(12551), + [anon_sym_BSLASHcitealp] = ACTIONS(12551), + [anon_sym_BSLASHcitetext] = ACTIONS(12551), + [anon_sym_BSLASHparencite] = ACTIONS(12551), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHParencite] = ACTIONS(12551), + [anon_sym_BSLASHfootcite] = ACTIONS(12551), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12551), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12551), + [anon_sym_BSLASHtextcite] = ACTIONS(12551), + [anon_sym_BSLASHTextcite] = ACTIONS(12551), + [anon_sym_BSLASHsmartcite] = ACTIONS(12551), + [anon_sym_BSLASHSmartcite] = ACTIONS(12551), + [anon_sym_BSLASHsupercite] = ACTIONS(12551), + [anon_sym_BSLASHautocite] = ACTIONS(12551), + [anon_sym_BSLASHAutocite] = ACTIONS(12551), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHvolcite] = ACTIONS(12551), + [anon_sym_BSLASHVolcite] = ACTIONS(12551), + [anon_sym_BSLASHpvolcite] = ACTIONS(12551), + [anon_sym_BSLASHPvolcite] = ACTIONS(12551), + [anon_sym_BSLASHfvolcite] = ACTIONS(12551), + [anon_sym_BSLASHftvolcite] = ACTIONS(12551), + [anon_sym_BSLASHsvolcite] = ACTIONS(12551), + [anon_sym_BSLASHSvolcite] = ACTIONS(12551), + [anon_sym_BSLASHtvolcite] = ACTIONS(12551), + [anon_sym_BSLASHTvolcite] = ACTIONS(12551), + [anon_sym_BSLASHavolcite] = ACTIONS(12551), + [anon_sym_BSLASHAvolcite] = ACTIONS(12551), + [anon_sym_BSLASHnotecite] = ACTIONS(12551), + [anon_sym_BSLASHpnotecite] = ACTIONS(12551), + [anon_sym_BSLASHPnotecite] = ACTIONS(12551), + [anon_sym_BSLASHfnotecite] = ACTIONS(12551), + [anon_sym_BSLASHusepackage] = ACTIONS(12551), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12551), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12551), + [anon_sym_BSLASHinclude] = ACTIONS(12551), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12551), + [anon_sym_BSLASHinput] = ACTIONS(12551), + [anon_sym_BSLASHsubfile] = ACTIONS(12551), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12551), + [anon_sym_BSLASHbibliography] = ACTIONS(12551), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12551), + [anon_sym_BSLASHincludesvg] = ACTIONS(12551), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12551), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12551), + [anon_sym_BSLASHimport] = ACTIONS(12551), + [anon_sym_BSLASHsubimport] = ACTIONS(12551), + [anon_sym_BSLASHinputfrom] = ACTIONS(12551), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12551), + [anon_sym_BSLASHincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHlabel] = ACTIONS(12551), + [anon_sym_BSLASHref] = ACTIONS(12551), + [anon_sym_BSLASHvref] = ACTIONS(12551), + [anon_sym_BSLASHVref] = ACTIONS(12551), + [anon_sym_BSLASHautoref] = ACTIONS(12551), + [anon_sym_BSLASHpageref] = ACTIONS(12551), + [anon_sym_BSLASHcref] = ACTIONS(12551), + [anon_sym_BSLASHCref] = ACTIONS(12551), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnameCref] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHlabelcref] = ACTIONS(12551), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12551), + [anon_sym_BSLASHeqref] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange] = ACTIONS(12551), + [anon_sym_BSLASHCrefrange] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewlabel] = ACTIONS(12551), + [anon_sym_BSLASHnewcommand] = ACTIONS(12551), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12551), + [anon_sym_BSLASHgls] = ACTIONS(12551), + [anon_sym_BSLASHGls] = ACTIONS(12551), + [anon_sym_BSLASHGLS] = ACTIONS(12551), + [anon_sym_BSLASHglspl] = ACTIONS(12551), + [anon_sym_BSLASHGlspl] = ACTIONS(12551), + [anon_sym_BSLASHGLSpl] = ACTIONS(12551), + [anon_sym_BSLASHglsdisp] = ACTIONS(12551), + [anon_sym_BSLASHglslink] = ACTIONS(12551), + [anon_sym_BSLASHglstext] = ACTIONS(12551), + [anon_sym_BSLASHGlstext] = ACTIONS(12551), + [anon_sym_BSLASHGLStext] = ACTIONS(12551), + [anon_sym_BSLASHglsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12551), + [anon_sym_BSLASHglsplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSplural] = ACTIONS(12551), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHglsname] = ACTIONS(12551), + [anon_sym_BSLASHGlsname] = ACTIONS(12551), + [anon_sym_BSLASHGLSname] = ACTIONS(12551), + [anon_sym_BSLASHglssymbol] = ACTIONS(12551), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12551), + [anon_sym_BSLASHglsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12551), + [anon_sym_BSLASHglsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12551), + [anon_sym_BSLASHglsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12551), + [anon_sym_BSLASHglsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12551), + [anon_sym_BSLASHglsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12551), + [anon_sym_BSLASHnewacronym] = ACTIONS(12551), + [anon_sym_BSLASHacrshort] = ACTIONS(12551), + [anon_sym_BSLASHAcrshort] = ACTIONS(12551), + [anon_sym_BSLASHACRshort] = ACTIONS(12551), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12551), + [anon_sym_BSLASHacrlong] = ACTIONS(12551), + [anon_sym_BSLASHAcrlong] = ACTIONS(12551), + [anon_sym_BSLASHACRlong] = ACTIONS(12551), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12551), + [anon_sym_BSLASHacrfull] = ACTIONS(12551), + [anon_sym_BSLASHAcrfull] = ACTIONS(12551), + [anon_sym_BSLASHACRfull] = ACTIONS(12551), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12551), + [anon_sym_BSLASHacs] = ACTIONS(12551), + [anon_sym_BSLASHAcs] = ACTIONS(12551), + [anon_sym_BSLASHacsp] = ACTIONS(12551), + [anon_sym_BSLASHAcsp] = ACTIONS(12551), + [anon_sym_BSLASHacl] = ACTIONS(12551), + [anon_sym_BSLASHAcl] = ACTIONS(12551), + [anon_sym_BSLASHaclp] = ACTIONS(12551), + [anon_sym_BSLASHAclp] = ACTIONS(12551), + [anon_sym_BSLASHacf] = ACTIONS(12551), + [anon_sym_BSLASHAcf] = ACTIONS(12551), + [anon_sym_BSLASHacfp] = ACTIONS(12551), + [anon_sym_BSLASHAcfp] = ACTIONS(12551), + [anon_sym_BSLASHac] = ACTIONS(12551), + [anon_sym_BSLASHAc] = ACTIONS(12551), + [anon_sym_BSLASHacp] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12551), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12551), + [anon_sym_BSLASHcolor] = ACTIONS(12551), + [anon_sym_BSLASHcolorbox] = ACTIONS(12551), + [anon_sym_BSLASHtextcolor] = ACTIONS(12551), + [anon_sym_BSLASHpagecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12551), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12551), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12551), + }, + [1334] = { + [sym_generic_command_name] = ACTIONS(12535), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12535), + [aux_sym_subsubsection_token1] = ACTIONS(12535), + [aux_sym_paragraph_token1] = ACTIONS(12535), + [aux_sym_subparagraph_token1] = ACTIONS(12535), + [anon_sym_BSLASHitem] = ACTIONS(12535), + [anon_sym_LBRACK] = ACTIONS(12533), + [anon_sym_RBRACK] = ACTIONS(12533), + [anon_sym_LBRACE] = ACTIONS(12533), + [anon_sym_RBRACE] = ACTIONS(12533), + [anon_sym_LPAREN] = ACTIONS(12533), + [anon_sym_COMMA] = ACTIONS(12533), + [anon_sym_EQ] = ACTIONS(12533), + [sym_word] = ACTIONS(12533), + [sym_param] = ACTIONS(12533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12533), + [anon_sym_DOLLAR] = ACTIONS(12535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12533), + [anon_sym_BSLASHbegin] = ACTIONS(12535), + [anon_sym_BSLASHcaption] = ACTIONS(12535), + [anon_sym_BSLASHcite] = ACTIONS(12535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCite] = ACTIONS(12535), + [anon_sym_BSLASHnocite] = ACTIONS(12535), + [anon_sym_BSLASHcitet] = ACTIONS(12535), + [anon_sym_BSLASHcitep] = ACTIONS(12535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteauthor] = ACTIONS(12535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitetitle] = ACTIONS(12535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteyear] = ACTIONS(12535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitedate] = ACTIONS(12535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteurl] = ACTIONS(12535), + [anon_sym_BSLASHfullcite] = ACTIONS(12535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12535), + [anon_sym_BSLASHcitealt] = ACTIONS(12535), + [anon_sym_BSLASHcitealp] = ACTIONS(12535), + [anon_sym_BSLASHcitetext] = ACTIONS(12535), + [anon_sym_BSLASHparencite] = ACTIONS(12535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHParencite] = ACTIONS(12535), + [anon_sym_BSLASHfootcite] = ACTIONS(12535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12535), + [anon_sym_BSLASHtextcite] = ACTIONS(12535), + [anon_sym_BSLASHTextcite] = ACTIONS(12535), + [anon_sym_BSLASHsmartcite] = ACTIONS(12535), + [anon_sym_BSLASHSmartcite] = ACTIONS(12535), + [anon_sym_BSLASHsupercite] = ACTIONS(12535), + [anon_sym_BSLASHautocite] = ACTIONS(12535), + [anon_sym_BSLASHAutocite] = ACTIONS(12535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHvolcite] = ACTIONS(12535), + [anon_sym_BSLASHVolcite] = ACTIONS(12535), + [anon_sym_BSLASHpvolcite] = ACTIONS(12535), + [anon_sym_BSLASHPvolcite] = ACTIONS(12535), + [anon_sym_BSLASHfvolcite] = ACTIONS(12535), + [anon_sym_BSLASHftvolcite] = ACTIONS(12535), + [anon_sym_BSLASHsvolcite] = ACTIONS(12535), + [anon_sym_BSLASHSvolcite] = ACTIONS(12535), + [anon_sym_BSLASHtvolcite] = ACTIONS(12535), + [anon_sym_BSLASHTvolcite] = ACTIONS(12535), + [anon_sym_BSLASHavolcite] = ACTIONS(12535), + [anon_sym_BSLASHAvolcite] = ACTIONS(12535), + [anon_sym_BSLASHnotecite] = ACTIONS(12535), + [anon_sym_BSLASHpnotecite] = ACTIONS(12535), + [anon_sym_BSLASHPnotecite] = ACTIONS(12535), + [anon_sym_BSLASHfnotecite] = ACTIONS(12535), + [anon_sym_BSLASHusepackage] = ACTIONS(12535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12535), + [anon_sym_BSLASHinclude] = ACTIONS(12535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12535), + [anon_sym_BSLASHinput] = ACTIONS(12535), + [anon_sym_BSLASHsubfile] = ACTIONS(12535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12535), + [anon_sym_BSLASHbibliography] = ACTIONS(12535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12535), + [anon_sym_BSLASHincludesvg] = ACTIONS(12535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12535), + [anon_sym_BSLASHimport] = ACTIONS(12535), + [anon_sym_BSLASHsubimport] = ACTIONS(12535), + [anon_sym_BSLASHinputfrom] = ACTIONS(12535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12535), + [anon_sym_BSLASHincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHlabel] = ACTIONS(12535), + [anon_sym_BSLASHref] = ACTIONS(12535), + [anon_sym_BSLASHvref] = ACTIONS(12535), + [anon_sym_BSLASHVref] = ACTIONS(12535), + [anon_sym_BSLASHautoref] = ACTIONS(12535), + [anon_sym_BSLASHpageref] = ACTIONS(12535), + [anon_sym_BSLASHcref] = ACTIONS(12535), + [anon_sym_BSLASHCref] = ACTIONS(12535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnameCref] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHlabelcref] = ACTIONS(12535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12535), + [anon_sym_BSLASHeqref] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange] = ACTIONS(12535), + [anon_sym_BSLASHCrefrange] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewlabel] = ACTIONS(12535), + [anon_sym_BSLASHnewcommand] = ACTIONS(12535), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12535), + [anon_sym_BSLASHgls] = ACTIONS(12535), + [anon_sym_BSLASHGls] = ACTIONS(12535), + [anon_sym_BSLASHGLS] = ACTIONS(12535), + [anon_sym_BSLASHglspl] = ACTIONS(12535), + [anon_sym_BSLASHGlspl] = ACTIONS(12535), + [anon_sym_BSLASHGLSpl] = ACTIONS(12535), + [anon_sym_BSLASHglsdisp] = ACTIONS(12535), + [anon_sym_BSLASHglslink] = ACTIONS(12535), + [anon_sym_BSLASHglstext] = ACTIONS(12535), + [anon_sym_BSLASHGlstext] = ACTIONS(12535), + [anon_sym_BSLASHGLStext] = ACTIONS(12535), + [anon_sym_BSLASHglsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12535), + [anon_sym_BSLASHglsplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSplural] = ACTIONS(12535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHglsname] = ACTIONS(12535), + [anon_sym_BSLASHGlsname] = ACTIONS(12535), + [anon_sym_BSLASHGLSname] = ACTIONS(12535), + [anon_sym_BSLASHglssymbol] = ACTIONS(12535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12535), + [anon_sym_BSLASHglsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12535), + [anon_sym_BSLASHglsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12535), + [anon_sym_BSLASHglsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12535), + [anon_sym_BSLASHglsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12535), + [anon_sym_BSLASHglsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12535), + [anon_sym_BSLASHnewacronym] = ACTIONS(12535), + [anon_sym_BSLASHacrshort] = ACTIONS(12535), + [anon_sym_BSLASHAcrshort] = ACTIONS(12535), + [anon_sym_BSLASHACRshort] = ACTIONS(12535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12535), + [anon_sym_BSLASHacrlong] = ACTIONS(12535), + [anon_sym_BSLASHAcrlong] = ACTIONS(12535), + [anon_sym_BSLASHACRlong] = ACTIONS(12535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12535), + [anon_sym_BSLASHacrfull] = ACTIONS(12535), + [anon_sym_BSLASHAcrfull] = ACTIONS(12535), + [anon_sym_BSLASHACRfull] = ACTIONS(12535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12535), + [anon_sym_BSLASHacs] = ACTIONS(12535), + [anon_sym_BSLASHAcs] = ACTIONS(12535), + [anon_sym_BSLASHacsp] = ACTIONS(12535), + [anon_sym_BSLASHAcsp] = ACTIONS(12535), + [anon_sym_BSLASHacl] = ACTIONS(12535), + [anon_sym_BSLASHAcl] = ACTIONS(12535), + [anon_sym_BSLASHaclp] = ACTIONS(12535), + [anon_sym_BSLASHAclp] = ACTIONS(12535), + [anon_sym_BSLASHacf] = ACTIONS(12535), + [anon_sym_BSLASHAcf] = ACTIONS(12535), + [anon_sym_BSLASHacfp] = ACTIONS(12535), + [anon_sym_BSLASHAcfp] = ACTIONS(12535), + [anon_sym_BSLASHac] = ACTIONS(12535), + [anon_sym_BSLASHAc] = ACTIONS(12535), + [anon_sym_BSLASHacp] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12535), + [anon_sym_BSLASHcolor] = ACTIONS(12535), + [anon_sym_BSLASHcolorbox] = ACTIONS(12535), + [anon_sym_BSLASHtextcolor] = ACTIONS(12535), + [anon_sym_BSLASHpagecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12535), + }, + [1335] = { + [sym_generic_command_name] = ACTIONS(12116), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12116), + [aux_sym_subsubsection_token1] = ACTIONS(12116), + [aux_sym_paragraph_token1] = ACTIONS(12116), + [aux_sym_subparagraph_token1] = ACTIONS(12116), + [anon_sym_BSLASHitem] = ACTIONS(12116), + [anon_sym_LBRACK] = ACTIONS(12114), + [anon_sym_RBRACK] = ACTIONS(12114), + [anon_sym_LBRACE] = ACTIONS(12114), + [anon_sym_RBRACE] = ACTIONS(12114), + [anon_sym_LPAREN] = ACTIONS(12114), + [anon_sym_COMMA] = ACTIONS(12114), + [anon_sym_EQ] = ACTIONS(12114), + [sym_word] = ACTIONS(12114), + [sym_param] = ACTIONS(12114), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12114), + [anon_sym_DOLLAR] = ACTIONS(12116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12114), + [anon_sym_BSLASHbegin] = ACTIONS(12116), + [anon_sym_BSLASHcaption] = ACTIONS(12116), + [anon_sym_BSLASHcite] = ACTIONS(12116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCite] = ACTIONS(12116), + [anon_sym_BSLASHnocite] = ACTIONS(12116), + [anon_sym_BSLASHcitet] = ACTIONS(12116), + [anon_sym_BSLASHcitep] = ACTIONS(12116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteauthor] = ACTIONS(12116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitetitle] = ACTIONS(12116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteyear] = ACTIONS(12116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitedate] = ACTIONS(12116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteurl] = ACTIONS(12116), + [anon_sym_BSLASHfullcite] = ACTIONS(12116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12116), + [anon_sym_BSLASHcitealt] = ACTIONS(12116), + [anon_sym_BSLASHcitealp] = ACTIONS(12116), + [anon_sym_BSLASHcitetext] = ACTIONS(12116), + [anon_sym_BSLASHparencite] = ACTIONS(12116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHParencite] = ACTIONS(12116), + [anon_sym_BSLASHfootcite] = ACTIONS(12116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12116), + [anon_sym_BSLASHtextcite] = ACTIONS(12116), + [anon_sym_BSLASHTextcite] = ACTIONS(12116), + [anon_sym_BSLASHsmartcite] = ACTIONS(12116), + [anon_sym_BSLASHSmartcite] = ACTIONS(12116), + [anon_sym_BSLASHsupercite] = ACTIONS(12116), + [anon_sym_BSLASHautocite] = ACTIONS(12116), + [anon_sym_BSLASHAutocite] = ACTIONS(12116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHvolcite] = ACTIONS(12116), + [anon_sym_BSLASHVolcite] = ACTIONS(12116), + [anon_sym_BSLASHpvolcite] = ACTIONS(12116), + [anon_sym_BSLASHPvolcite] = ACTIONS(12116), + [anon_sym_BSLASHfvolcite] = ACTIONS(12116), + [anon_sym_BSLASHftvolcite] = ACTIONS(12116), + [anon_sym_BSLASHsvolcite] = ACTIONS(12116), + [anon_sym_BSLASHSvolcite] = ACTIONS(12116), + [anon_sym_BSLASHtvolcite] = ACTIONS(12116), + [anon_sym_BSLASHTvolcite] = ACTIONS(12116), + [anon_sym_BSLASHavolcite] = ACTIONS(12116), + [anon_sym_BSLASHAvolcite] = ACTIONS(12116), + [anon_sym_BSLASHnotecite] = ACTIONS(12116), + [anon_sym_BSLASHpnotecite] = ACTIONS(12116), + [anon_sym_BSLASHPnotecite] = ACTIONS(12116), + [anon_sym_BSLASHfnotecite] = ACTIONS(12116), + [anon_sym_BSLASHusepackage] = ACTIONS(12116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12116), + [anon_sym_BSLASHinclude] = ACTIONS(12116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12116), + [anon_sym_BSLASHinput] = ACTIONS(12116), + [anon_sym_BSLASHsubfile] = ACTIONS(12116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12116), + [anon_sym_BSLASHbibliography] = ACTIONS(12116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12116), + [anon_sym_BSLASHincludesvg] = ACTIONS(12116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12116), + [anon_sym_BSLASHimport] = ACTIONS(12116), + [anon_sym_BSLASHsubimport] = ACTIONS(12116), + [anon_sym_BSLASHinputfrom] = ACTIONS(12116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12116), + [anon_sym_BSLASHincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHlabel] = ACTIONS(12116), + [anon_sym_BSLASHref] = ACTIONS(12116), + [anon_sym_BSLASHvref] = ACTIONS(12116), + [anon_sym_BSLASHVref] = ACTIONS(12116), + [anon_sym_BSLASHautoref] = ACTIONS(12116), + [anon_sym_BSLASHpageref] = ACTIONS(12116), + [anon_sym_BSLASHcref] = ACTIONS(12116), + [anon_sym_BSLASHCref] = ACTIONS(12116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnameCref] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHlabelcref] = ACTIONS(12116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12116), + [anon_sym_BSLASHeqref] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange] = ACTIONS(12116), + [anon_sym_BSLASHCrefrange] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewlabel] = ACTIONS(12116), + [anon_sym_BSLASHnewcommand] = ACTIONS(12116), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12116), + [anon_sym_BSLASHgls] = ACTIONS(12116), + [anon_sym_BSLASHGls] = ACTIONS(12116), + [anon_sym_BSLASHGLS] = ACTIONS(12116), + [anon_sym_BSLASHglspl] = ACTIONS(12116), + [anon_sym_BSLASHGlspl] = ACTIONS(12116), + [anon_sym_BSLASHGLSpl] = ACTIONS(12116), + [anon_sym_BSLASHglsdisp] = ACTIONS(12116), + [anon_sym_BSLASHglslink] = ACTIONS(12116), + [anon_sym_BSLASHglstext] = ACTIONS(12116), + [anon_sym_BSLASHGlstext] = ACTIONS(12116), + [anon_sym_BSLASHGLStext] = ACTIONS(12116), + [anon_sym_BSLASHglsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12116), + [anon_sym_BSLASHglsplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSplural] = ACTIONS(12116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHglsname] = ACTIONS(12116), + [anon_sym_BSLASHGlsname] = ACTIONS(12116), + [anon_sym_BSLASHGLSname] = ACTIONS(12116), + [anon_sym_BSLASHglssymbol] = ACTIONS(12116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12116), + [anon_sym_BSLASHglsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12116), + [anon_sym_BSLASHglsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12116), + [anon_sym_BSLASHglsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12116), + [anon_sym_BSLASHglsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12116), + [anon_sym_BSLASHglsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12116), + [anon_sym_BSLASHnewacronym] = ACTIONS(12116), + [anon_sym_BSLASHacrshort] = ACTIONS(12116), + [anon_sym_BSLASHAcrshort] = ACTIONS(12116), + [anon_sym_BSLASHACRshort] = ACTIONS(12116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12116), + [anon_sym_BSLASHacrlong] = ACTIONS(12116), + [anon_sym_BSLASHAcrlong] = ACTIONS(12116), + [anon_sym_BSLASHACRlong] = ACTIONS(12116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12116), + [anon_sym_BSLASHacrfull] = ACTIONS(12116), + [anon_sym_BSLASHAcrfull] = ACTIONS(12116), + [anon_sym_BSLASHACRfull] = ACTIONS(12116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12116), + [anon_sym_BSLASHacs] = ACTIONS(12116), + [anon_sym_BSLASHAcs] = ACTIONS(12116), + [anon_sym_BSLASHacsp] = ACTIONS(12116), + [anon_sym_BSLASHAcsp] = ACTIONS(12116), + [anon_sym_BSLASHacl] = ACTIONS(12116), + [anon_sym_BSLASHAcl] = ACTIONS(12116), + [anon_sym_BSLASHaclp] = ACTIONS(12116), + [anon_sym_BSLASHAclp] = ACTIONS(12116), + [anon_sym_BSLASHacf] = ACTIONS(12116), + [anon_sym_BSLASHAcf] = ACTIONS(12116), + [anon_sym_BSLASHacfp] = ACTIONS(12116), + [anon_sym_BSLASHAcfp] = ACTIONS(12116), + [anon_sym_BSLASHac] = ACTIONS(12116), + [anon_sym_BSLASHAc] = ACTIONS(12116), + [anon_sym_BSLASHacp] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12116), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12116), + [anon_sym_BSLASHcolor] = ACTIONS(12116), + [anon_sym_BSLASHcolorbox] = ACTIONS(12116), + [anon_sym_BSLASHtextcolor] = ACTIONS(12116), + [anon_sym_BSLASHpagecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12116), + }, + [1336] = { + [sym_generic_command_name] = ACTIONS(12505), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12505), + [aux_sym_subsubsection_token1] = ACTIONS(12505), + [aux_sym_paragraph_token1] = ACTIONS(12505), + [aux_sym_subparagraph_token1] = ACTIONS(12505), + [anon_sym_BSLASHitem] = ACTIONS(12505), + [anon_sym_LBRACK] = ACTIONS(12503), + [anon_sym_RBRACK] = ACTIONS(12503), + [anon_sym_LBRACE] = ACTIONS(12503), + [anon_sym_RBRACE] = ACTIONS(12503), + [anon_sym_LPAREN] = ACTIONS(12503), + [anon_sym_COMMA] = ACTIONS(12503), + [anon_sym_EQ] = ACTIONS(12503), + [sym_word] = ACTIONS(12503), + [sym_param] = ACTIONS(12503), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12503), + [anon_sym_DOLLAR] = ACTIONS(12505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12503), + [anon_sym_BSLASHbegin] = ACTIONS(12505), + [anon_sym_BSLASHcaption] = ACTIONS(12505), + [anon_sym_BSLASHcite] = ACTIONS(12505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCite] = ACTIONS(12505), + [anon_sym_BSLASHnocite] = ACTIONS(12505), + [anon_sym_BSLASHcitet] = ACTIONS(12505), + [anon_sym_BSLASHcitep] = ACTIONS(12505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteauthor] = ACTIONS(12505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitetitle] = ACTIONS(12505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteyear] = ACTIONS(12505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitedate] = ACTIONS(12505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteurl] = ACTIONS(12505), + [anon_sym_BSLASHfullcite] = ACTIONS(12505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12505), + [anon_sym_BSLASHcitealt] = ACTIONS(12505), + [anon_sym_BSLASHcitealp] = ACTIONS(12505), + [anon_sym_BSLASHcitetext] = ACTIONS(12505), + [anon_sym_BSLASHparencite] = ACTIONS(12505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHParencite] = ACTIONS(12505), + [anon_sym_BSLASHfootcite] = ACTIONS(12505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12505), + [anon_sym_BSLASHtextcite] = ACTIONS(12505), + [anon_sym_BSLASHTextcite] = ACTIONS(12505), + [anon_sym_BSLASHsmartcite] = ACTIONS(12505), + [anon_sym_BSLASHSmartcite] = ACTIONS(12505), + [anon_sym_BSLASHsupercite] = ACTIONS(12505), + [anon_sym_BSLASHautocite] = ACTIONS(12505), + [anon_sym_BSLASHAutocite] = ACTIONS(12505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHvolcite] = ACTIONS(12505), + [anon_sym_BSLASHVolcite] = ACTIONS(12505), + [anon_sym_BSLASHpvolcite] = ACTIONS(12505), + [anon_sym_BSLASHPvolcite] = ACTIONS(12505), + [anon_sym_BSLASHfvolcite] = ACTIONS(12505), + [anon_sym_BSLASHftvolcite] = ACTIONS(12505), + [anon_sym_BSLASHsvolcite] = ACTIONS(12505), + [anon_sym_BSLASHSvolcite] = ACTIONS(12505), + [anon_sym_BSLASHtvolcite] = ACTIONS(12505), + [anon_sym_BSLASHTvolcite] = ACTIONS(12505), + [anon_sym_BSLASHavolcite] = ACTIONS(12505), + [anon_sym_BSLASHAvolcite] = ACTIONS(12505), + [anon_sym_BSLASHnotecite] = ACTIONS(12505), + [anon_sym_BSLASHpnotecite] = ACTIONS(12505), + [anon_sym_BSLASHPnotecite] = ACTIONS(12505), + [anon_sym_BSLASHfnotecite] = ACTIONS(12505), + [anon_sym_BSLASHusepackage] = ACTIONS(12505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12505), + [anon_sym_BSLASHinclude] = ACTIONS(12505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12505), + [anon_sym_BSLASHinput] = ACTIONS(12505), + [anon_sym_BSLASHsubfile] = ACTIONS(12505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12505), + [anon_sym_BSLASHbibliography] = ACTIONS(12505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12505), + [anon_sym_BSLASHincludesvg] = ACTIONS(12505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12505), + [anon_sym_BSLASHimport] = ACTIONS(12505), + [anon_sym_BSLASHsubimport] = ACTIONS(12505), + [anon_sym_BSLASHinputfrom] = ACTIONS(12505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12505), + [anon_sym_BSLASHincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHlabel] = ACTIONS(12505), + [anon_sym_BSLASHref] = ACTIONS(12505), + [anon_sym_BSLASHvref] = ACTIONS(12505), + [anon_sym_BSLASHVref] = ACTIONS(12505), + [anon_sym_BSLASHautoref] = ACTIONS(12505), + [anon_sym_BSLASHpageref] = ACTIONS(12505), + [anon_sym_BSLASHcref] = ACTIONS(12505), + [anon_sym_BSLASHCref] = ACTIONS(12505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnameCref] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHlabelcref] = ACTIONS(12505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12505), + [anon_sym_BSLASHeqref] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange] = ACTIONS(12505), + [anon_sym_BSLASHCrefrange] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewlabel] = ACTIONS(12505), + [anon_sym_BSLASHnewcommand] = ACTIONS(12505), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12505), + [anon_sym_BSLASHgls] = ACTIONS(12505), + [anon_sym_BSLASHGls] = ACTIONS(12505), + [anon_sym_BSLASHGLS] = ACTIONS(12505), + [anon_sym_BSLASHglspl] = ACTIONS(12505), + [anon_sym_BSLASHGlspl] = ACTIONS(12505), + [anon_sym_BSLASHGLSpl] = ACTIONS(12505), + [anon_sym_BSLASHglsdisp] = ACTIONS(12505), + [anon_sym_BSLASHglslink] = ACTIONS(12505), + [anon_sym_BSLASHglstext] = ACTIONS(12505), + [anon_sym_BSLASHGlstext] = ACTIONS(12505), + [anon_sym_BSLASHGLStext] = ACTIONS(12505), + [anon_sym_BSLASHglsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12505), + [anon_sym_BSLASHglsplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSplural] = ACTIONS(12505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHglsname] = ACTIONS(12505), + [anon_sym_BSLASHGlsname] = ACTIONS(12505), + [anon_sym_BSLASHGLSname] = ACTIONS(12505), + [anon_sym_BSLASHglssymbol] = ACTIONS(12505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12505), + [anon_sym_BSLASHglsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12505), + [anon_sym_BSLASHglsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12505), + [anon_sym_BSLASHglsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12505), + [anon_sym_BSLASHglsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12505), + [anon_sym_BSLASHglsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12505), + [anon_sym_BSLASHnewacronym] = ACTIONS(12505), + [anon_sym_BSLASHacrshort] = ACTIONS(12505), + [anon_sym_BSLASHAcrshort] = ACTIONS(12505), + [anon_sym_BSLASHACRshort] = ACTIONS(12505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12505), + [anon_sym_BSLASHacrlong] = ACTIONS(12505), + [anon_sym_BSLASHAcrlong] = ACTIONS(12505), + [anon_sym_BSLASHACRlong] = ACTIONS(12505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12505), + [anon_sym_BSLASHacrfull] = ACTIONS(12505), + [anon_sym_BSLASHAcrfull] = ACTIONS(12505), + [anon_sym_BSLASHACRfull] = ACTIONS(12505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12505), + [anon_sym_BSLASHacs] = ACTIONS(12505), + [anon_sym_BSLASHAcs] = ACTIONS(12505), + [anon_sym_BSLASHacsp] = ACTIONS(12505), + [anon_sym_BSLASHAcsp] = ACTIONS(12505), + [anon_sym_BSLASHacl] = ACTIONS(12505), + [anon_sym_BSLASHAcl] = ACTIONS(12505), + [anon_sym_BSLASHaclp] = ACTIONS(12505), + [anon_sym_BSLASHAclp] = ACTIONS(12505), + [anon_sym_BSLASHacf] = ACTIONS(12505), + [anon_sym_BSLASHAcf] = ACTIONS(12505), + [anon_sym_BSLASHacfp] = ACTIONS(12505), + [anon_sym_BSLASHAcfp] = ACTIONS(12505), + [anon_sym_BSLASHac] = ACTIONS(12505), + [anon_sym_BSLASHAc] = ACTIONS(12505), + [anon_sym_BSLASHacp] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12505), + [anon_sym_BSLASHcolor] = ACTIONS(12505), + [anon_sym_BSLASHcolorbox] = ACTIONS(12505), + [anon_sym_BSLASHtextcolor] = ACTIONS(12505), + [anon_sym_BSLASHpagecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12505), + }, + [1337] = { + [sym_generic_command_name] = ACTIONS(12489), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12489), + [aux_sym_subsubsection_token1] = ACTIONS(12489), + [aux_sym_paragraph_token1] = ACTIONS(12489), + [aux_sym_subparagraph_token1] = ACTIONS(12489), + [anon_sym_BSLASHitem] = ACTIONS(12489), + [anon_sym_LBRACK] = ACTIONS(12487), + [anon_sym_RBRACK] = ACTIONS(12487), + [anon_sym_LBRACE] = ACTIONS(12487), + [anon_sym_RBRACE] = ACTIONS(12487), + [anon_sym_LPAREN] = ACTIONS(12487), + [anon_sym_COMMA] = ACTIONS(12487), + [anon_sym_EQ] = ACTIONS(12487), + [sym_word] = ACTIONS(12487), + [sym_param] = ACTIONS(12487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12487), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12487), + [anon_sym_DOLLAR] = ACTIONS(12489), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12487), + [anon_sym_BSLASHbegin] = ACTIONS(12489), + [anon_sym_BSLASHcaption] = ACTIONS(12489), + [anon_sym_BSLASHcite] = ACTIONS(12489), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCite] = ACTIONS(12489), + [anon_sym_BSLASHnocite] = ACTIONS(12489), + [anon_sym_BSLASHcitet] = ACTIONS(12489), + [anon_sym_BSLASHcitep] = ACTIONS(12489), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteauthor] = ACTIONS(12489), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12489), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitetitle] = ACTIONS(12489), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteyear] = ACTIONS(12489), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitedate] = ACTIONS(12489), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteurl] = ACTIONS(12489), + [anon_sym_BSLASHfullcite] = ACTIONS(12489), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12489), + [anon_sym_BSLASHcitealt] = ACTIONS(12489), + [anon_sym_BSLASHcitealp] = ACTIONS(12489), + [anon_sym_BSLASHcitetext] = ACTIONS(12489), + [anon_sym_BSLASHparencite] = ACTIONS(12489), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHParencite] = ACTIONS(12489), + [anon_sym_BSLASHfootcite] = ACTIONS(12489), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12489), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12489), + [anon_sym_BSLASHtextcite] = ACTIONS(12489), + [anon_sym_BSLASHTextcite] = ACTIONS(12489), + [anon_sym_BSLASHsmartcite] = ACTIONS(12489), + [anon_sym_BSLASHSmartcite] = ACTIONS(12489), + [anon_sym_BSLASHsupercite] = ACTIONS(12489), + [anon_sym_BSLASHautocite] = ACTIONS(12489), + [anon_sym_BSLASHAutocite] = ACTIONS(12489), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHvolcite] = ACTIONS(12489), + [anon_sym_BSLASHVolcite] = ACTIONS(12489), + [anon_sym_BSLASHpvolcite] = ACTIONS(12489), + [anon_sym_BSLASHPvolcite] = ACTIONS(12489), + [anon_sym_BSLASHfvolcite] = ACTIONS(12489), + [anon_sym_BSLASHftvolcite] = ACTIONS(12489), + [anon_sym_BSLASHsvolcite] = ACTIONS(12489), + [anon_sym_BSLASHSvolcite] = ACTIONS(12489), + [anon_sym_BSLASHtvolcite] = ACTIONS(12489), + [anon_sym_BSLASHTvolcite] = ACTIONS(12489), + [anon_sym_BSLASHavolcite] = ACTIONS(12489), + [anon_sym_BSLASHAvolcite] = ACTIONS(12489), + [anon_sym_BSLASHnotecite] = ACTIONS(12489), + [anon_sym_BSLASHpnotecite] = ACTIONS(12489), + [anon_sym_BSLASHPnotecite] = ACTIONS(12489), + [anon_sym_BSLASHfnotecite] = ACTIONS(12489), + [anon_sym_BSLASHusepackage] = ACTIONS(12489), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12489), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12489), + [anon_sym_BSLASHinclude] = ACTIONS(12489), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12489), + [anon_sym_BSLASHinput] = ACTIONS(12489), + [anon_sym_BSLASHsubfile] = ACTIONS(12489), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12489), + [anon_sym_BSLASHbibliography] = ACTIONS(12489), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12489), + [anon_sym_BSLASHincludesvg] = ACTIONS(12489), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12489), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12489), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12489), + [anon_sym_BSLASHimport] = ACTIONS(12489), + [anon_sym_BSLASHsubimport] = ACTIONS(12489), + [anon_sym_BSLASHinputfrom] = ACTIONS(12489), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12489), + [anon_sym_BSLASHincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHlabel] = ACTIONS(12489), + [anon_sym_BSLASHref] = ACTIONS(12489), + [anon_sym_BSLASHvref] = ACTIONS(12489), + [anon_sym_BSLASHVref] = ACTIONS(12489), + [anon_sym_BSLASHautoref] = ACTIONS(12489), + [anon_sym_BSLASHpageref] = ACTIONS(12489), + [anon_sym_BSLASHcref] = ACTIONS(12489), + [anon_sym_BSLASHCref] = ACTIONS(12489), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnameCref] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHlabelcref] = ACTIONS(12489), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12489), + [anon_sym_BSLASHeqref] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange] = ACTIONS(12489), + [anon_sym_BSLASHCrefrange] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewlabel] = ACTIONS(12489), + [anon_sym_BSLASHnewcommand] = ACTIONS(12489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12489), + [anon_sym_BSLASHgls] = ACTIONS(12489), + [anon_sym_BSLASHGls] = ACTIONS(12489), + [anon_sym_BSLASHGLS] = ACTIONS(12489), + [anon_sym_BSLASHglspl] = ACTIONS(12489), + [anon_sym_BSLASHGlspl] = ACTIONS(12489), + [anon_sym_BSLASHGLSpl] = ACTIONS(12489), + [anon_sym_BSLASHglsdisp] = ACTIONS(12489), + [anon_sym_BSLASHglslink] = ACTIONS(12489), + [anon_sym_BSLASHglstext] = ACTIONS(12489), + [anon_sym_BSLASHGlstext] = ACTIONS(12489), + [anon_sym_BSLASHGLStext] = ACTIONS(12489), + [anon_sym_BSLASHglsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12489), + [anon_sym_BSLASHglsplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSplural] = ACTIONS(12489), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHglsname] = ACTIONS(12489), + [anon_sym_BSLASHGlsname] = ACTIONS(12489), + [anon_sym_BSLASHGLSname] = ACTIONS(12489), + [anon_sym_BSLASHglssymbol] = ACTIONS(12489), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12489), + [anon_sym_BSLASHglsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12489), + [anon_sym_BSLASHglsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12489), + [anon_sym_BSLASHglsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12489), + [anon_sym_BSLASHglsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12489), + [anon_sym_BSLASHglsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12489), + [anon_sym_BSLASHnewacronym] = ACTIONS(12489), + [anon_sym_BSLASHacrshort] = ACTIONS(12489), + [anon_sym_BSLASHAcrshort] = ACTIONS(12489), + [anon_sym_BSLASHACRshort] = ACTIONS(12489), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12489), + [anon_sym_BSLASHacrlong] = ACTIONS(12489), + [anon_sym_BSLASHAcrlong] = ACTIONS(12489), + [anon_sym_BSLASHACRlong] = ACTIONS(12489), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12489), + [anon_sym_BSLASHacrfull] = ACTIONS(12489), + [anon_sym_BSLASHAcrfull] = ACTIONS(12489), + [anon_sym_BSLASHACRfull] = ACTIONS(12489), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12489), + [anon_sym_BSLASHacs] = ACTIONS(12489), + [anon_sym_BSLASHAcs] = ACTIONS(12489), + [anon_sym_BSLASHacsp] = ACTIONS(12489), + [anon_sym_BSLASHAcsp] = ACTIONS(12489), + [anon_sym_BSLASHacl] = ACTIONS(12489), + [anon_sym_BSLASHAcl] = ACTIONS(12489), + [anon_sym_BSLASHaclp] = ACTIONS(12489), + [anon_sym_BSLASHAclp] = ACTIONS(12489), + [anon_sym_BSLASHacf] = ACTIONS(12489), + [anon_sym_BSLASHAcf] = ACTIONS(12489), + [anon_sym_BSLASHacfp] = ACTIONS(12489), + [anon_sym_BSLASHAcfp] = ACTIONS(12489), + [anon_sym_BSLASHac] = ACTIONS(12489), + [anon_sym_BSLASHAc] = ACTIONS(12489), + [anon_sym_BSLASHacp] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12489), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12489), + [anon_sym_BSLASHcolor] = ACTIONS(12489), + [anon_sym_BSLASHcolorbox] = ACTIONS(12489), + [anon_sym_BSLASHtextcolor] = ACTIONS(12489), + [anon_sym_BSLASHpagecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12489), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12489), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12489), + }, + [1338] = { + [sym_generic_command_name] = ACTIONS(12473), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12473), + [aux_sym_subsubsection_token1] = ACTIONS(12473), + [aux_sym_paragraph_token1] = ACTIONS(12473), + [aux_sym_subparagraph_token1] = ACTIONS(12473), + [anon_sym_BSLASHitem] = ACTIONS(12473), + [anon_sym_LBRACK] = ACTIONS(12471), + [anon_sym_RBRACK] = ACTIONS(12471), + [anon_sym_LBRACE] = ACTIONS(12471), + [anon_sym_RBRACE] = ACTIONS(12471), + [anon_sym_LPAREN] = ACTIONS(12471), + [anon_sym_COMMA] = ACTIONS(12471), + [anon_sym_EQ] = ACTIONS(12471), + [sym_word] = ACTIONS(12471), + [sym_param] = ACTIONS(12471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12471), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12471), + [anon_sym_DOLLAR] = ACTIONS(12473), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12471), + [anon_sym_BSLASHbegin] = ACTIONS(12473), + [anon_sym_BSLASHcaption] = ACTIONS(12473), + [anon_sym_BSLASHcite] = ACTIONS(12473), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCite] = ACTIONS(12473), + [anon_sym_BSLASHnocite] = ACTIONS(12473), + [anon_sym_BSLASHcitet] = ACTIONS(12473), + [anon_sym_BSLASHcitep] = ACTIONS(12473), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteauthor] = ACTIONS(12473), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12473), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitetitle] = ACTIONS(12473), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteyear] = ACTIONS(12473), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitedate] = ACTIONS(12473), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteurl] = ACTIONS(12473), + [anon_sym_BSLASHfullcite] = ACTIONS(12473), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12473), + [anon_sym_BSLASHcitealt] = ACTIONS(12473), + [anon_sym_BSLASHcitealp] = ACTIONS(12473), + [anon_sym_BSLASHcitetext] = ACTIONS(12473), + [anon_sym_BSLASHparencite] = ACTIONS(12473), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHParencite] = ACTIONS(12473), + [anon_sym_BSLASHfootcite] = ACTIONS(12473), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12473), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12473), + [anon_sym_BSLASHtextcite] = ACTIONS(12473), + [anon_sym_BSLASHTextcite] = ACTIONS(12473), + [anon_sym_BSLASHsmartcite] = ACTIONS(12473), + [anon_sym_BSLASHSmartcite] = ACTIONS(12473), + [anon_sym_BSLASHsupercite] = ACTIONS(12473), + [anon_sym_BSLASHautocite] = ACTIONS(12473), + [anon_sym_BSLASHAutocite] = ACTIONS(12473), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHvolcite] = ACTIONS(12473), + [anon_sym_BSLASHVolcite] = ACTIONS(12473), + [anon_sym_BSLASHpvolcite] = ACTIONS(12473), + [anon_sym_BSLASHPvolcite] = ACTIONS(12473), + [anon_sym_BSLASHfvolcite] = ACTIONS(12473), + [anon_sym_BSLASHftvolcite] = ACTIONS(12473), + [anon_sym_BSLASHsvolcite] = ACTIONS(12473), + [anon_sym_BSLASHSvolcite] = ACTIONS(12473), + [anon_sym_BSLASHtvolcite] = ACTIONS(12473), + [anon_sym_BSLASHTvolcite] = ACTIONS(12473), + [anon_sym_BSLASHavolcite] = ACTIONS(12473), + [anon_sym_BSLASHAvolcite] = ACTIONS(12473), + [anon_sym_BSLASHnotecite] = ACTIONS(12473), + [anon_sym_BSLASHpnotecite] = ACTIONS(12473), + [anon_sym_BSLASHPnotecite] = ACTIONS(12473), + [anon_sym_BSLASHfnotecite] = ACTIONS(12473), + [anon_sym_BSLASHusepackage] = ACTIONS(12473), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12473), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12473), + [anon_sym_BSLASHinclude] = ACTIONS(12473), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12473), + [anon_sym_BSLASHinput] = ACTIONS(12473), + [anon_sym_BSLASHsubfile] = ACTIONS(12473), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12473), + [anon_sym_BSLASHbibliography] = ACTIONS(12473), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12473), + [anon_sym_BSLASHincludesvg] = ACTIONS(12473), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12473), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12473), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12473), + [anon_sym_BSLASHimport] = ACTIONS(12473), + [anon_sym_BSLASHsubimport] = ACTIONS(12473), + [anon_sym_BSLASHinputfrom] = ACTIONS(12473), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12473), + [anon_sym_BSLASHincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHlabel] = ACTIONS(12473), + [anon_sym_BSLASHref] = ACTIONS(12473), + [anon_sym_BSLASHvref] = ACTIONS(12473), + [anon_sym_BSLASHVref] = ACTIONS(12473), + [anon_sym_BSLASHautoref] = ACTIONS(12473), + [anon_sym_BSLASHpageref] = ACTIONS(12473), + [anon_sym_BSLASHcref] = ACTIONS(12473), + [anon_sym_BSLASHCref] = ACTIONS(12473), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnameCref] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHlabelcref] = ACTIONS(12473), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12473), + [anon_sym_BSLASHeqref] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange] = ACTIONS(12473), + [anon_sym_BSLASHCrefrange] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewlabel] = ACTIONS(12473), + [anon_sym_BSLASHnewcommand] = ACTIONS(12473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12473), + [anon_sym_BSLASHgls] = ACTIONS(12473), + [anon_sym_BSLASHGls] = ACTIONS(12473), + [anon_sym_BSLASHGLS] = ACTIONS(12473), + [anon_sym_BSLASHglspl] = ACTIONS(12473), + [anon_sym_BSLASHGlspl] = ACTIONS(12473), + [anon_sym_BSLASHGLSpl] = ACTIONS(12473), + [anon_sym_BSLASHglsdisp] = ACTIONS(12473), + [anon_sym_BSLASHglslink] = ACTIONS(12473), + [anon_sym_BSLASHglstext] = ACTIONS(12473), + [anon_sym_BSLASHGlstext] = ACTIONS(12473), + [anon_sym_BSLASHGLStext] = ACTIONS(12473), + [anon_sym_BSLASHglsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12473), + [anon_sym_BSLASHglsplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSplural] = ACTIONS(12473), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHglsname] = ACTIONS(12473), + [anon_sym_BSLASHGlsname] = ACTIONS(12473), + [anon_sym_BSLASHGLSname] = ACTIONS(12473), + [anon_sym_BSLASHglssymbol] = ACTIONS(12473), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12473), + [anon_sym_BSLASHglsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12473), + [anon_sym_BSLASHglsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12473), + [anon_sym_BSLASHglsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12473), + [anon_sym_BSLASHglsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12473), + [anon_sym_BSLASHglsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12473), + [anon_sym_BSLASHnewacronym] = ACTIONS(12473), + [anon_sym_BSLASHacrshort] = ACTIONS(12473), + [anon_sym_BSLASHAcrshort] = ACTIONS(12473), + [anon_sym_BSLASHACRshort] = ACTIONS(12473), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12473), + [anon_sym_BSLASHacrlong] = ACTIONS(12473), + [anon_sym_BSLASHAcrlong] = ACTIONS(12473), + [anon_sym_BSLASHACRlong] = ACTIONS(12473), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12473), + [anon_sym_BSLASHacrfull] = ACTIONS(12473), + [anon_sym_BSLASHAcrfull] = ACTIONS(12473), + [anon_sym_BSLASHACRfull] = ACTIONS(12473), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12473), + [anon_sym_BSLASHacs] = ACTIONS(12473), + [anon_sym_BSLASHAcs] = ACTIONS(12473), + [anon_sym_BSLASHacsp] = ACTIONS(12473), + [anon_sym_BSLASHAcsp] = ACTIONS(12473), + [anon_sym_BSLASHacl] = ACTIONS(12473), + [anon_sym_BSLASHAcl] = ACTIONS(12473), + [anon_sym_BSLASHaclp] = ACTIONS(12473), + [anon_sym_BSLASHAclp] = ACTIONS(12473), + [anon_sym_BSLASHacf] = ACTIONS(12473), + [anon_sym_BSLASHAcf] = ACTIONS(12473), + [anon_sym_BSLASHacfp] = ACTIONS(12473), + [anon_sym_BSLASHAcfp] = ACTIONS(12473), + [anon_sym_BSLASHac] = ACTIONS(12473), + [anon_sym_BSLASHAc] = ACTIONS(12473), + [anon_sym_BSLASHacp] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12473), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12473), + [anon_sym_BSLASHcolor] = ACTIONS(12473), + [anon_sym_BSLASHcolorbox] = ACTIONS(12473), + [anon_sym_BSLASHtextcolor] = ACTIONS(12473), + [anon_sym_BSLASHpagecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12473), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12473), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12473), + }, + [1339] = { + [sym_generic_command_name] = ACTIONS(12457), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12457), + [aux_sym_subsubsection_token1] = ACTIONS(12457), + [aux_sym_paragraph_token1] = ACTIONS(12457), + [aux_sym_subparagraph_token1] = ACTIONS(12457), + [anon_sym_BSLASHitem] = ACTIONS(12457), + [anon_sym_LBRACK] = ACTIONS(12455), + [anon_sym_RBRACK] = ACTIONS(12455), + [anon_sym_LBRACE] = ACTIONS(12455), + [anon_sym_RBRACE] = ACTIONS(12455), + [anon_sym_LPAREN] = ACTIONS(12455), + [anon_sym_COMMA] = ACTIONS(12455), + [anon_sym_EQ] = ACTIONS(12455), + [sym_word] = ACTIONS(12455), + [sym_param] = ACTIONS(12455), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12455), + [anon_sym_DOLLAR] = ACTIONS(12457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12455), + [anon_sym_BSLASHbegin] = ACTIONS(12457), + [anon_sym_BSLASHcaption] = ACTIONS(12457), + [anon_sym_BSLASHcite] = ACTIONS(12457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCite] = ACTIONS(12457), + [anon_sym_BSLASHnocite] = ACTIONS(12457), + [anon_sym_BSLASHcitet] = ACTIONS(12457), + [anon_sym_BSLASHcitep] = ACTIONS(12457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteauthor] = ACTIONS(12457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitetitle] = ACTIONS(12457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteyear] = ACTIONS(12457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitedate] = ACTIONS(12457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteurl] = ACTIONS(12457), + [anon_sym_BSLASHfullcite] = ACTIONS(12457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12457), + [anon_sym_BSLASHcitealt] = ACTIONS(12457), + [anon_sym_BSLASHcitealp] = ACTIONS(12457), + [anon_sym_BSLASHcitetext] = ACTIONS(12457), + [anon_sym_BSLASHparencite] = ACTIONS(12457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHParencite] = ACTIONS(12457), + [anon_sym_BSLASHfootcite] = ACTIONS(12457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12457), + [anon_sym_BSLASHtextcite] = ACTIONS(12457), + [anon_sym_BSLASHTextcite] = ACTIONS(12457), + [anon_sym_BSLASHsmartcite] = ACTIONS(12457), + [anon_sym_BSLASHSmartcite] = ACTIONS(12457), + [anon_sym_BSLASHsupercite] = ACTIONS(12457), + [anon_sym_BSLASHautocite] = ACTIONS(12457), + [anon_sym_BSLASHAutocite] = ACTIONS(12457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHvolcite] = ACTIONS(12457), + [anon_sym_BSLASHVolcite] = ACTIONS(12457), + [anon_sym_BSLASHpvolcite] = ACTIONS(12457), + [anon_sym_BSLASHPvolcite] = ACTIONS(12457), + [anon_sym_BSLASHfvolcite] = ACTIONS(12457), + [anon_sym_BSLASHftvolcite] = ACTIONS(12457), + [anon_sym_BSLASHsvolcite] = ACTIONS(12457), + [anon_sym_BSLASHSvolcite] = ACTIONS(12457), + [anon_sym_BSLASHtvolcite] = ACTIONS(12457), + [anon_sym_BSLASHTvolcite] = ACTIONS(12457), + [anon_sym_BSLASHavolcite] = ACTIONS(12457), + [anon_sym_BSLASHAvolcite] = ACTIONS(12457), + [anon_sym_BSLASHnotecite] = ACTIONS(12457), + [anon_sym_BSLASHpnotecite] = ACTIONS(12457), + [anon_sym_BSLASHPnotecite] = ACTIONS(12457), + [anon_sym_BSLASHfnotecite] = ACTIONS(12457), + [anon_sym_BSLASHusepackage] = ACTIONS(12457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12457), + [anon_sym_BSLASHinclude] = ACTIONS(12457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12457), + [anon_sym_BSLASHinput] = ACTIONS(12457), + [anon_sym_BSLASHsubfile] = ACTIONS(12457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12457), + [anon_sym_BSLASHbibliography] = ACTIONS(12457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12457), + [anon_sym_BSLASHincludesvg] = ACTIONS(12457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12457), + [anon_sym_BSLASHimport] = ACTIONS(12457), + [anon_sym_BSLASHsubimport] = ACTIONS(12457), + [anon_sym_BSLASHinputfrom] = ACTIONS(12457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12457), + [anon_sym_BSLASHincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHlabel] = ACTIONS(12457), + [anon_sym_BSLASHref] = ACTIONS(12457), + [anon_sym_BSLASHvref] = ACTIONS(12457), + [anon_sym_BSLASHVref] = ACTIONS(12457), + [anon_sym_BSLASHautoref] = ACTIONS(12457), + [anon_sym_BSLASHpageref] = ACTIONS(12457), + [anon_sym_BSLASHcref] = ACTIONS(12457), + [anon_sym_BSLASHCref] = ACTIONS(12457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnameCref] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHlabelcref] = ACTIONS(12457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12457), + [anon_sym_BSLASHeqref] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange] = ACTIONS(12457), + [anon_sym_BSLASHCrefrange] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewlabel] = ACTIONS(12457), + [anon_sym_BSLASHnewcommand] = ACTIONS(12457), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12457), + [anon_sym_BSLASHgls] = ACTIONS(12457), + [anon_sym_BSLASHGls] = ACTIONS(12457), + [anon_sym_BSLASHGLS] = ACTIONS(12457), + [anon_sym_BSLASHglspl] = ACTIONS(12457), + [anon_sym_BSLASHGlspl] = ACTIONS(12457), + [anon_sym_BSLASHGLSpl] = ACTIONS(12457), + [anon_sym_BSLASHglsdisp] = ACTIONS(12457), + [anon_sym_BSLASHglslink] = ACTIONS(12457), + [anon_sym_BSLASHglstext] = ACTIONS(12457), + [anon_sym_BSLASHGlstext] = ACTIONS(12457), + [anon_sym_BSLASHGLStext] = ACTIONS(12457), + [anon_sym_BSLASHglsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12457), + [anon_sym_BSLASHglsplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSplural] = ACTIONS(12457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHglsname] = ACTIONS(12457), + [anon_sym_BSLASHGlsname] = ACTIONS(12457), + [anon_sym_BSLASHGLSname] = ACTIONS(12457), + [anon_sym_BSLASHglssymbol] = ACTIONS(12457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12457), + [anon_sym_BSLASHglsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12457), + [anon_sym_BSLASHglsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12457), + [anon_sym_BSLASHglsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12457), + [anon_sym_BSLASHglsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12457), + [anon_sym_BSLASHglsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12457), + [anon_sym_BSLASHnewacronym] = ACTIONS(12457), + [anon_sym_BSLASHacrshort] = ACTIONS(12457), + [anon_sym_BSLASHAcrshort] = ACTIONS(12457), + [anon_sym_BSLASHACRshort] = ACTIONS(12457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12457), + [anon_sym_BSLASHacrlong] = ACTIONS(12457), + [anon_sym_BSLASHAcrlong] = ACTIONS(12457), + [anon_sym_BSLASHACRlong] = ACTIONS(12457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12457), + [anon_sym_BSLASHacrfull] = ACTIONS(12457), + [anon_sym_BSLASHAcrfull] = ACTIONS(12457), + [anon_sym_BSLASHACRfull] = ACTIONS(12457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12457), + [anon_sym_BSLASHacs] = ACTIONS(12457), + [anon_sym_BSLASHAcs] = ACTIONS(12457), + [anon_sym_BSLASHacsp] = ACTIONS(12457), + [anon_sym_BSLASHAcsp] = ACTIONS(12457), + [anon_sym_BSLASHacl] = ACTIONS(12457), + [anon_sym_BSLASHAcl] = ACTIONS(12457), + [anon_sym_BSLASHaclp] = ACTIONS(12457), + [anon_sym_BSLASHAclp] = ACTIONS(12457), + [anon_sym_BSLASHacf] = ACTIONS(12457), + [anon_sym_BSLASHAcf] = ACTIONS(12457), + [anon_sym_BSLASHacfp] = ACTIONS(12457), + [anon_sym_BSLASHAcfp] = ACTIONS(12457), + [anon_sym_BSLASHac] = ACTIONS(12457), + [anon_sym_BSLASHAc] = ACTIONS(12457), + [anon_sym_BSLASHacp] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12457), + [anon_sym_BSLASHcolor] = ACTIONS(12457), + [anon_sym_BSLASHcolorbox] = ACTIONS(12457), + [anon_sym_BSLASHtextcolor] = ACTIONS(12457), + [anon_sym_BSLASHpagecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12457), + }, + [1340] = { + [sym_generic_command_name] = ACTIONS(12417), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12417), + [aux_sym_subsubsection_token1] = ACTIONS(12417), + [aux_sym_paragraph_token1] = ACTIONS(12417), + [aux_sym_subparagraph_token1] = ACTIONS(12417), + [anon_sym_BSLASHitem] = ACTIONS(12417), + [anon_sym_LBRACK] = ACTIONS(12415), + [anon_sym_RBRACK] = ACTIONS(12415), + [anon_sym_LBRACE] = ACTIONS(12415), + [anon_sym_RBRACE] = ACTIONS(12415), + [anon_sym_LPAREN] = ACTIONS(12415), + [anon_sym_COMMA] = ACTIONS(12415), + [anon_sym_EQ] = ACTIONS(12415), + [sym_word] = ACTIONS(12415), + [sym_param] = ACTIONS(12415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12415), + [anon_sym_DOLLAR] = ACTIONS(12417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12415), + [anon_sym_BSLASHbegin] = ACTIONS(12417), + [anon_sym_BSLASHcaption] = ACTIONS(12417), + [anon_sym_BSLASHcite] = ACTIONS(12417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCite] = ACTIONS(12417), + [anon_sym_BSLASHnocite] = ACTIONS(12417), + [anon_sym_BSLASHcitet] = ACTIONS(12417), + [anon_sym_BSLASHcitep] = ACTIONS(12417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteauthor] = ACTIONS(12417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitetitle] = ACTIONS(12417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteyear] = ACTIONS(12417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitedate] = ACTIONS(12417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteurl] = ACTIONS(12417), + [anon_sym_BSLASHfullcite] = ACTIONS(12417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12417), + [anon_sym_BSLASHcitealt] = ACTIONS(12417), + [anon_sym_BSLASHcitealp] = ACTIONS(12417), + [anon_sym_BSLASHcitetext] = ACTIONS(12417), + [anon_sym_BSLASHparencite] = ACTIONS(12417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHParencite] = ACTIONS(12417), + [anon_sym_BSLASHfootcite] = ACTIONS(12417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12417), + [anon_sym_BSLASHtextcite] = ACTIONS(12417), + [anon_sym_BSLASHTextcite] = ACTIONS(12417), + [anon_sym_BSLASHsmartcite] = ACTIONS(12417), + [anon_sym_BSLASHSmartcite] = ACTIONS(12417), + [anon_sym_BSLASHsupercite] = ACTIONS(12417), + [anon_sym_BSLASHautocite] = ACTIONS(12417), + [anon_sym_BSLASHAutocite] = ACTIONS(12417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHvolcite] = ACTIONS(12417), + [anon_sym_BSLASHVolcite] = ACTIONS(12417), + [anon_sym_BSLASHpvolcite] = ACTIONS(12417), + [anon_sym_BSLASHPvolcite] = ACTIONS(12417), + [anon_sym_BSLASHfvolcite] = ACTIONS(12417), + [anon_sym_BSLASHftvolcite] = ACTIONS(12417), + [anon_sym_BSLASHsvolcite] = ACTIONS(12417), + [anon_sym_BSLASHSvolcite] = ACTIONS(12417), + [anon_sym_BSLASHtvolcite] = ACTIONS(12417), + [anon_sym_BSLASHTvolcite] = ACTIONS(12417), + [anon_sym_BSLASHavolcite] = ACTIONS(12417), + [anon_sym_BSLASHAvolcite] = ACTIONS(12417), + [anon_sym_BSLASHnotecite] = ACTIONS(12417), + [anon_sym_BSLASHpnotecite] = ACTIONS(12417), + [anon_sym_BSLASHPnotecite] = ACTIONS(12417), + [anon_sym_BSLASHfnotecite] = ACTIONS(12417), + [anon_sym_BSLASHusepackage] = ACTIONS(12417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12417), + [anon_sym_BSLASHinclude] = ACTIONS(12417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12417), + [anon_sym_BSLASHinput] = ACTIONS(12417), + [anon_sym_BSLASHsubfile] = ACTIONS(12417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12417), + [anon_sym_BSLASHbibliography] = ACTIONS(12417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12417), + [anon_sym_BSLASHincludesvg] = ACTIONS(12417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12417), + [anon_sym_BSLASHimport] = ACTIONS(12417), + [anon_sym_BSLASHsubimport] = ACTIONS(12417), + [anon_sym_BSLASHinputfrom] = ACTIONS(12417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12417), + [anon_sym_BSLASHincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHlabel] = ACTIONS(12417), + [anon_sym_BSLASHref] = ACTIONS(12417), + [anon_sym_BSLASHvref] = ACTIONS(12417), + [anon_sym_BSLASHVref] = ACTIONS(12417), + [anon_sym_BSLASHautoref] = ACTIONS(12417), + [anon_sym_BSLASHpageref] = ACTIONS(12417), + [anon_sym_BSLASHcref] = ACTIONS(12417), + [anon_sym_BSLASHCref] = ACTIONS(12417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnameCref] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHlabelcref] = ACTIONS(12417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12417), + [anon_sym_BSLASHeqref] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange] = ACTIONS(12417), + [anon_sym_BSLASHCrefrange] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewlabel] = ACTIONS(12417), + [anon_sym_BSLASHnewcommand] = ACTIONS(12417), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12417), + [anon_sym_BSLASHgls] = ACTIONS(12417), + [anon_sym_BSLASHGls] = ACTIONS(12417), + [anon_sym_BSLASHGLS] = ACTIONS(12417), + [anon_sym_BSLASHglspl] = ACTIONS(12417), + [anon_sym_BSLASHGlspl] = ACTIONS(12417), + [anon_sym_BSLASHGLSpl] = ACTIONS(12417), + [anon_sym_BSLASHglsdisp] = ACTIONS(12417), + [anon_sym_BSLASHglslink] = ACTIONS(12417), + [anon_sym_BSLASHglstext] = ACTIONS(12417), + [anon_sym_BSLASHGlstext] = ACTIONS(12417), + [anon_sym_BSLASHGLStext] = ACTIONS(12417), + [anon_sym_BSLASHglsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12417), + [anon_sym_BSLASHglsplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSplural] = ACTIONS(12417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHglsname] = ACTIONS(12417), + [anon_sym_BSLASHGlsname] = ACTIONS(12417), + [anon_sym_BSLASHGLSname] = ACTIONS(12417), + [anon_sym_BSLASHglssymbol] = ACTIONS(12417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12417), + [anon_sym_BSLASHglsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12417), + [anon_sym_BSLASHglsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12417), + [anon_sym_BSLASHglsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12417), + [anon_sym_BSLASHglsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12417), + [anon_sym_BSLASHglsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12417), + [anon_sym_BSLASHnewacronym] = ACTIONS(12417), + [anon_sym_BSLASHacrshort] = ACTIONS(12417), + [anon_sym_BSLASHAcrshort] = ACTIONS(12417), + [anon_sym_BSLASHACRshort] = ACTIONS(12417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12417), + [anon_sym_BSLASHacrlong] = ACTIONS(12417), + [anon_sym_BSLASHAcrlong] = ACTIONS(12417), + [anon_sym_BSLASHACRlong] = ACTIONS(12417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12417), + [anon_sym_BSLASHacrfull] = ACTIONS(12417), + [anon_sym_BSLASHAcrfull] = ACTIONS(12417), + [anon_sym_BSLASHACRfull] = ACTIONS(12417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12417), + [anon_sym_BSLASHacs] = ACTIONS(12417), + [anon_sym_BSLASHAcs] = ACTIONS(12417), + [anon_sym_BSLASHacsp] = ACTIONS(12417), + [anon_sym_BSLASHAcsp] = ACTIONS(12417), + [anon_sym_BSLASHacl] = ACTIONS(12417), + [anon_sym_BSLASHAcl] = ACTIONS(12417), + [anon_sym_BSLASHaclp] = ACTIONS(12417), + [anon_sym_BSLASHAclp] = ACTIONS(12417), + [anon_sym_BSLASHacf] = ACTIONS(12417), + [anon_sym_BSLASHAcf] = ACTIONS(12417), + [anon_sym_BSLASHacfp] = ACTIONS(12417), + [anon_sym_BSLASHAcfp] = ACTIONS(12417), + [anon_sym_BSLASHac] = ACTIONS(12417), + [anon_sym_BSLASHAc] = ACTIONS(12417), + [anon_sym_BSLASHacp] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12417), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12417), + [anon_sym_BSLASHcolor] = ACTIONS(12417), + [anon_sym_BSLASHcolorbox] = ACTIONS(12417), + [anon_sym_BSLASHtextcolor] = ACTIONS(12417), + [anon_sym_BSLASHpagecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12417), + }, + [1341] = { + [sym_generic_command_name] = ACTIONS(12120), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12120), + [aux_sym_subsubsection_token1] = ACTIONS(12120), + [aux_sym_paragraph_token1] = ACTIONS(12120), + [aux_sym_subparagraph_token1] = ACTIONS(12120), + [anon_sym_BSLASHitem] = ACTIONS(12120), + [anon_sym_LBRACK] = ACTIONS(12118), + [anon_sym_RBRACK] = ACTIONS(12118), + [anon_sym_LBRACE] = ACTIONS(12118), + [anon_sym_RBRACE] = ACTIONS(12118), + [anon_sym_LPAREN] = ACTIONS(12118), + [anon_sym_COMMA] = ACTIONS(12118), + [anon_sym_EQ] = ACTIONS(12118), + [sym_word] = ACTIONS(12118), + [sym_param] = ACTIONS(12118), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12118), + [anon_sym_DOLLAR] = ACTIONS(12120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12118), + [anon_sym_BSLASHbegin] = ACTIONS(12120), + [anon_sym_BSLASHcaption] = ACTIONS(12120), + [anon_sym_BSLASHcite] = ACTIONS(12120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCite] = ACTIONS(12120), + [anon_sym_BSLASHnocite] = ACTIONS(12120), + [anon_sym_BSLASHcitet] = ACTIONS(12120), + [anon_sym_BSLASHcitep] = ACTIONS(12120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteauthor] = ACTIONS(12120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitetitle] = ACTIONS(12120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteyear] = ACTIONS(12120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitedate] = ACTIONS(12120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteurl] = ACTIONS(12120), + [anon_sym_BSLASHfullcite] = ACTIONS(12120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12120), + [anon_sym_BSLASHcitealt] = ACTIONS(12120), + [anon_sym_BSLASHcitealp] = ACTIONS(12120), + [anon_sym_BSLASHcitetext] = ACTIONS(12120), + [anon_sym_BSLASHparencite] = ACTIONS(12120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHParencite] = ACTIONS(12120), + [anon_sym_BSLASHfootcite] = ACTIONS(12120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12120), + [anon_sym_BSLASHtextcite] = ACTIONS(12120), + [anon_sym_BSLASHTextcite] = ACTIONS(12120), + [anon_sym_BSLASHsmartcite] = ACTIONS(12120), + [anon_sym_BSLASHSmartcite] = ACTIONS(12120), + [anon_sym_BSLASHsupercite] = ACTIONS(12120), + [anon_sym_BSLASHautocite] = ACTIONS(12120), + [anon_sym_BSLASHAutocite] = ACTIONS(12120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHvolcite] = ACTIONS(12120), + [anon_sym_BSLASHVolcite] = ACTIONS(12120), + [anon_sym_BSLASHpvolcite] = ACTIONS(12120), + [anon_sym_BSLASHPvolcite] = ACTIONS(12120), + [anon_sym_BSLASHfvolcite] = ACTIONS(12120), + [anon_sym_BSLASHftvolcite] = ACTIONS(12120), + [anon_sym_BSLASHsvolcite] = ACTIONS(12120), + [anon_sym_BSLASHSvolcite] = ACTIONS(12120), + [anon_sym_BSLASHtvolcite] = ACTIONS(12120), + [anon_sym_BSLASHTvolcite] = ACTIONS(12120), + [anon_sym_BSLASHavolcite] = ACTIONS(12120), + [anon_sym_BSLASHAvolcite] = ACTIONS(12120), + [anon_sym_BSLASHnotecite] = ACTIONS(12120), + [anon_sym_BSLASHpnotecite] = ACTIONS(12120), + [anon_sym_BSLASHPnotecite] = ACTIONS(12120), + [anon_sym_BSLASHfnotecite] = ACTIONS(12120), + [anon_sym_BSLASHusepackage] = ACTIONS(12120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12120), + [anon_sym_BSLASHinclude] = ACTIONS(12120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12120), + [anon_sym_BSLASHinput] = ACTIONS(12120), + [anon_sym_BSLASHsubfile] = ACTIONS(12120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12120), + [anon_sym_BSLASHbibliography] = ACTIONS(12120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12120), + [anon_sym_BSLASHincludesvg] = ACTIONS(12120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12120), + [anon_sym_BSLASHimport] = ACTIONS(12120), + [anon_sym_BSLASHsubimport] = ACTIONS(12120), + [anon_sym_BSLASHinputfrom] = ACTIONS(12120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12120), + [anon_sym_BSLASHincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHlabel] = ACTIONS(12120), + [anon_sym_BSLASHref] = ACTIONS(12120), + [anon_sym_BSLASHvref] = ACTIONS(12120), + [anon_sym_BSLASHVref] = ACTIONS(12120), + [anon_sym_BSLASHautoref] = ACTIONS(12120), + [anon_sym_BSLASHpageref] = ACTIONS(12120), + [anon_sym_BSLASHcref] = ACTIONS(12120), + [anon_sym_BSLASHCref] = ACTIONS(12120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnameCref] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHlabelcref] = ACTIONS(12120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12120), + [anon_sym_BSLASHeqref] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange] = ACTIONS(12120), + [anon_sym_BSLASHCrefrange] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewlabel] = ACTIONS(12120), + [anon_sym_BSLASHnewcommand] = ACTIONS(12120), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12120), + [anon_sym_BSLASHgls] = ACTIONS(12120), + [anon_sym_BSLASHGls] = ACTIONS(12120), + [anon_sym_BSLASHGLS] = ACTIONS(12120), + [anon_sym_BSLASHglspl] = ACTIONS(12120), + [anon_sym_BSLASHGlspl] = ACTIONS(12120), + [anon_sym_BSLASHGLSpl] = ACTIONS(12120), + [anon_sym_BSLASHglsdisp] = ACTIONS(12120), + [anon_sym_BSLASHglslink] = ACTIONS(12120), + [anon_sym_BSLASHglstext] = ACTIONS(12120), + [anon_sym_BSLASHGlstext] = ACTIONS(12120), + [anon_sym_BSLASHGLStext] = ACTIONS(12120), + [anon_sym_BSLASHglsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12120), + [anon_sym_BSLASHglsplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSplural] = ACTIONS(12120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHglsname] = ACTIONS(12120), + [anon_sym_BSLASHGlsname] = ACTIONS(12120), + [anon_sym_BSLASHGLSname] = ACTIONS(12120), + [anon_sym_BSLASHglssymbol] = ACTIONS(12120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12120), + [anon_sym_BSLASHglsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12120), + [anon_sym_BSLASHglsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12120), + [anon_sym_BSLASHglsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12120), + [anon_sym_BSLASHglsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12120), + [anon_sym_BSLASHglsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12120), + [anon_sym_BSLASHnewacronym] = ACTIONS(12120), + [anon_sym_BSLASHacrshort] = ACTIONS(12120), + [anon_sym_BSLASHAcrshort] = ACTIONS(12120), + [anon_sym_BSLASHACRshort] = ACTIONS(12120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12120), + [anon_sym_BSLASHacrlong] = ACTIONS(12120), + [anon_sym_BSLASHAcrlong] = ACTIONS(12120), + [anon_sym_BSLASHACRlong] = ACTIONS(12120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12120), + [anon_sym_BSLASHacrfull] = ACTIONS(12120), + [anon_sym_BSLASHAcrfull] = ACTIONS(12120), + [anon_sym_BSLASHACRfull] = ACTIONS(12120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12120), + [anon_sym_BSLASHacs] = ACTIONS(12120), + [anon_sym_BSLASHAcs] = ACTIONS(12120), + [anon_sym_BSLASHacsp] = ACTIONS(12120), + [anon_sym_BSLASHAcsp] = ACTIONS(12120), + [anon_sym_BSLASHacl] = ACTIONS(12120), + [anon_sym_BSLASHAcl] = ACTIONS(12120), + [anon_sym_BSLASHaclp] = ACTIONS(12120), + [anon_sym_BSLASHAclp] = ACTIONS(12120), + [anon_sym_BSLASHacf] = ACTIONS(12120), + [anon_sym_BSLASHAcf] = ACTIONS(12120), + [anon_sym_BSLASHacfp] = ACTIONS(12120), + [anon_sym_BSLASHAcfp] = ACTIONS(12120), + [anon_sym_BSLASHac] = ACTIONS(12120), + [anon_sym_BSLASHAc] = ACTIONS(12120), + [anon_sym_BSLASHacp] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12120), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12120), + [anon_sym_BSLASHcolor] = ACTIONS(12120), + [anon_sym_BSLASHcolorbox] = ACTIONS(12120), + [anon_sym_BSLASHtextcolor] = ACTIONS(12120), + [anon_sym_BSLASHpagecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12120), + }, + [1342] = { + [sym_generic_command_name] = ACTIONS(12181), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12181), + [aux_sym_subsubsection_token1] = ACTIONS(12181), + [aux_sym_paragraph_token1] = ACTIONS(12181), + [aux_sym_subparagraph_token1] = ACTIONS(12181), + [anon_sym_BSLASHitem] = ACTIONS(12181), + [anon_sym_LBRACK] = ACTIONS(12179), + [anon_sym_RBRACK] = ACTIONS(12179), + [anon_sym_LBRACE] = ACTIONS(12179), + [anon_sym_RBRACE] = ACTIONS(12179), + [anon_sym_LPAREN] = ACTIONS(12179), + [anon_sym_COMMA] = ACTIONS(12179), + [anon_sym_EQ] = ACTIONS(12179), + [sym_word] = ACTIONS(12179), + [sym_param] = ACTIONS(12179), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12179), + [anon_sym_DOLLAR] = ACTIONS(12181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12179), + [anon_sym_BSLASHbegin] = ACTIONS(12181), + [anon_sym_BSLASHcaption] = ACTIONS(12181), + [anon_sym_BSLASHcite] = ACTIONS(12181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCite] = ACTIONS(12181), + [anon_sym_BSLASHnocite] = ACTIONS(12181), + [anon_sym_BSLASHcitet] = ACTIONS(12181), + [anon_sym_BSLASHcitep] = ACTIONS(12181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteauthor] = ACTIONS(12181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitetitle] = ACTIONS(12181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteyear] = ACTIONS(12181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitedate] = ACTIONS(12181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteurl] = ACTIONS(12181), + [anon_sym_BSLASHfullcite] = ACTIONS(12181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12181), + [anon_sym_BSLASHcitealt] = ACTIONS(12181), + [anon_sym_BSLASHcitealp] = ACTIONS(12181), + [anon_sym_BSLASHcitetext] = ACTIONS(12181), + [anon_sym_BSLASHparencite] = ACTIONS(12181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHParencite] = ACTIONS(12181), + [anon_sym_BSLASHfootcite] = ACTIONS(12181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12181), + [anon_sym_BSLASHtextcite] = ACTIONS(12181), + [anon_sym_BSLASHTextcite] = ACTIONS(12181), + [anon_sym_BSLASHsmartcite] = ACTIONS(12181), + [anon_sym_BSLASHSmartcite] = ACTIONS(12181), + [anon_sym_BSLASHsupercite] = ACTIONS(12181), + [anon_sym_BSLASHautocite] = ACTIONS(12181), + [anon_sym_BSLASHAutocite] = ACTIONS(12181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHvolcite] = ACTIONS(12181), + [anon_sym_BSLASHVolcite] = ACTIONS(12181), + [anon_sym_BSLASHpvolcite] = ACTIONS(12181), + [anon_sym_BSLASHPvolcite] = ACTIONS(12181), + [anon_sym_BSLASHfvolcite] = ACTIONS(12181), + [anon_sym_BSLASHftvolcite] = ACTIONS(12181), + [anon_sym_BSLASHsvolcite] = ACTIONS(12181), + [anon_sym_BSLASHSvolcite] = ACTIONS(12181), + [anon_sym_BSLASHtvolcite] = ACTIONS(12181), + [anon_sym_BSLASHTvolcite] = ACTIONS(12181), + [anon_sym_BSLASHavolcite] = ACTIONS(12181), + [anon_sym_BSLASHAvolcite] = ACTIONS(12181), + [anon_sym_BSLASHnotecite] = ACTIONS(12181), + [anon_sym_BSLASHpnotecite] = ACTIONS(12181), + [anon_sym_BSLASHPnotecite] = ACTIONS(12181), + [anon_sym_BSLASHfnotecite] = ACTIONS(12181), + [anon_sym_BSLASHusepackage] = ACTIONS(12181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12181), + [anon_sym_BSLASHinclude] = ACTIONS(12181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12181), + [anon_sym_BSLASHinput] = ACTIONS(12181), + [anon_sym_BSLASHsubfile] = ACTIONS(12181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12181), + [anon_sym_BSLASHbibliography] = ACTIONS(12181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12181), + [anon_sym_BSLASHincludesvg] = ACTIONS(12181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12181), + [anon_sym_BSLASHimport] = ACTIONS(12181), + [anon_sym_BSLASHsubimport] = ACTIONS(12181), + [anon_sym_BSLASHinputfrom] = ACTIONS(12181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12181), + [anon_sym_BSLASHincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHlabel] = ACTIONS(12181), + [anon_sym_BSLASHref] = ACTIONS(12181), + [anon_sym_BSLASHvref] = ACTIONS(12181), + [anon_sym_BSLASHVref] = ACTIONS(12181), + [anon_sym_BSLASHautoref] = ACTIONS(12181), + [anon_sym_BSLASHpageref] = ACTIONS(12181), + [anon_sym_BSLASHcref] = ACTIONS(12181), + [anon_sym_BSLASHCref] = ACTIONS(12181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnameCref] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHlabelcref] = ACTIONS(12181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12181), + [anon_sym_BSLASHeqref] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange] = ACTIONS(12181), + [anon_sym_BSLASHCrefrange] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewlabel] = ACTIONS(12181), + [anon_sym_BSLASHnewcommand] = ACTIONS(12181), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12181), + [anon_sym_BSLASHgls] = ACTIONS(12181), + [anon_sym_BSLASHGls] = ACTIONS(12181), + [anon_sym_BSLASHGLS] = ACTIONS(12181), + [anon_sym_BSLASHglspl] = ACTIONS(12181), + [anon_sym_BSLASHGlspl] = ACTIONS(12181), + [anon_sym_BSLASHGLSpl] = ACTIONS(12181), + [anon_sym_BSLASHglsdisp] = ACTIONS(12181), + [anon_sym_BSLASHglslink] = ACTIONS(12181), + [anon_sym_BSLASHglstext] = ACTIONS(12181), + [anon_sym_BSLASHGlstext] = ACTIONS(12181), + [anon_sym_BSLASHGLStext] = ACTIONS(12181), + [anon_sym_BSLASHglsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12181), + [anon_sym_BSLASHglsplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSplural] = ACTIONS(12181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHglsname] = ACTIONS(12181), + [anon_sym_BSLASHGlsname] = ACTIONS(12181), + [anon_sym_BSLASHGLSname] = ACTIONS(12181), + [anon_sym_BSLASHglssymbol] = ACTIONS(12181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12181), + [anon_sym_BSLASHglsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12181), + [anon_sym_BSLASHglsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12181), + [anon_sym_BSLASHglsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12181), + [anon_sym_BSLASHglsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12181), + [anon_sym_BSLASHglsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12181), + [anon_sym_BSLASHnewacronym] = ACTIONS(12181), + [anon_sym_BSLASHacrshort] = ACTIONS(12181), + [anon_sym_BSLASHAcrshort] = ACTIONS(12181), + [anon_sym_BSLASHACRshort] = ACTIONS(12181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12181), + [anon_sym_BSLASHacrlong] = ACTIONS(12181), + [anon_sym_BSLASHAcrlong] = ACTIONS(12181), + [anon_sym_BSLASHACRlong] = ACTIONS(12181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12181), + [anon_sym_BSLASHacrfull] = ACTIONS(12181), + [anon_sym_BSLASHAcrfull] = ACTIONS(12181), + [anon_sym_BSLASHACRfull] = ACTIONS(12181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12181), + [anon_sym_BSLASHacs] = ACTIONS(12181), + [anon_sym_BSLASHAcs] = ACTIONS(12181), + [anon_sym_BSLASHacsp] = ACTIONS(12181), + [anon_sym_BSLASHAcsp] = ACTIONS(12181), + [anon_sym_BSLASHacl] = ACTIONS(12181), + [anon_sym_BSLASHAcl] = ACTIONS(12181), + [anon_sym_BSLASHaclp] = ACTIONS(12181), + [anon_sym_BSLASHAclp] = ACTIONS(12181), + [anon_sym_BSLASHacf] = ACTIONS(12181), + [anon_sym_BSLASHAcf] = ACTIONS(12181), + [anon_sym_BSLASHacfp] = ACTIONS(12181), + [anon_sym_BSLASHAcfp] = ACTIONS(12181), + [anon_sym_BSLASHac] = ACTIONS(12181), + [anon_sym_BSLASHAc] = ACTIONS(12181), + [anon_sym_BSLASHacp] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12181), + [anon_sym_BSLASHcolor] = ACTIONS(12181), + [anon_sym_BSLASHcolorbox] = ACTIONS(12181), + [anon_sym_BSLASHtextcolor] = ACTIONS(12181), + [anon_sym_BSLASHpagecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12181), + }, + [1343] = { + [sym_generic_command_name] = ACTIONS(12185), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12185), + [aux_sym_subsubsection_token1] = ACTIONS(12185), + [aux_sym_paragraph_token1] = ACTIONS(12185), + [aux_sym_subparagraph_token1] = ACTIONS(12185), + [anon_sym_BSLASHitem] = ACTIONS(12185), + [anon_sym_LBRACK] = ACTIONS(12183), + [anon_sym_RBRACK] = ACTIONS(12183), + [anon_sym_LBRACE] = ACTIONS(12183), + [anon_sym_RBRACE] = ACTIONS(12183), + [anon_sym_LPAREN] = ACTIONS(12183), + [anon_sym_COMMA] = ACTIONS(12183), + [anon_sym_EQ] = ACTIONS(12183), + [sym_word] = ACTIONS(12183), + [sym_param] = ACTIONS(12183), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12183), + [anon_sym_DOLLAR] = ACTIONS(12185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12183), + [anon_sym_BSLASHbegin] = ACTIONS(12185), + [anon_sym_BSLASHcaption] = ACTIONS(12185), + [anon_sym_BSLASHcite] = ACTIONS(12185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCite] = ACTIONS(12185), + [anon_sym_BSLASHnocite] = ACTIONS(12185), + [anon_sym_BSLASHcitet] = ACTIONS(12185), + [anon_sym_BSLASHcitep] = ACTIONS(12185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteauthor] = ACTIONS(12185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitetitle] = ACTIONS(12185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteyear] = ACTIONS(12185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitedate] = ACTIONS(12185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteurl] = ACTIONS(12185), + [anon_sym_BSLASHfullcite] = ACTIONS(12185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12185), + [anon_sym_BSLASHcitealt] = ACTIONS(12185), + [anon_sym_BSLASHcitealp] = ACTIONS(12185), + [anon_sym_BSLASHcitetext] = ACTIONS(12185), + [anon_sym_BSLASHparencite] = ACTIONS(12185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHParencite] = ACTIONS(12185), + [anon_sym_BSLASHfootcite] = ACTIONS(12185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12185), + [anon_sym_BSLASHtextcite] = ACTIONS(12185), + [anon_sym_BSLASHTextcite] = ACTIONS(12185), + [anon_sym_BSLASHsmartcite] = ACTIONS(12185), + [anon_sym_BSLASHSmartcite] = ACTIONS(12185), + [anon_sym_BSLASHsupercite] = ACTIONS(12185), + [anon_sym_BSLASHautocite] = ACTIONS(12185), + [anon_sym_BSLASHAutocite] = ACTIONS(12185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHvolcite] = ACTIONS(12185), + [anon_sym_BSLASHVolcite] = ACTIONS(12185), + [anon_sym_BSLASHpvolcite] = ACTIONS(12185), + [anon_sym_BSLASHPvolcite] = ACTIONS(12185), + [anon_sym_BSLASHfvolcite] = ACTIONS(12185), + [anon_sym_BSLASHftvolcite] = ACTIONS(12185), + [anon_sym_BSLASHsvolcite] = ACTIONS(12185), + [anon_sym_BSLASHSvolcite] = ACTIONS(12185), + [anon_sym_BSLASHtvolcite] = ACTIONS(12185), + [anon_sym_BSLASHTvolcite] = ACTIONS(12185), + [anon_sym_BSLASHavolcite] = ACTIONS(12185), + [anon_sym_BSLASHAvolcite] = ACTIONS(12185), + [anon_sym_BSLASHnotecite] = ACTIONS(12185), + [anon_sym_BSLASHpnotecite] = ACTIONS(12185), + [anon_sym_BSLASHPnotecite] = ACTIONS(12185), + [anon_sym_BSLASHfnotecite] = ACTIONS(12185), + [anon_sym_BSLASHusepackage] = ACTIONS(12185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12185), + [anon_sym_BSLASHinclude] = ACTIONS(12185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12185), + [anon_sym_BSLASHinput] = ACTIONS(12185), + [anon_sym_BSLASHsubfile] = ACTIONS(12185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12185), + [anon_sym_BSLASHbibliography] = ACTIONS(12185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12185), + [anon_sym_BSLASHincludesvg] = ACTIONS(12185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12185), + [anon_sym_BSLASHimport] = ACTIONS(12185), + [anon_sym_BSLASHsubimport] = ACTIONS(12185), + [anon_sym_BSLASHinputfrom] = ACTIONS(12185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12185), + [anon_sym_BSLASHincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHlabel] = ACTIONS(12185), + [anon_sym_BSLASHref] = ACTIONS(12185), + [anon_sym_BSLASHvref] = ACTIONS(12185), + [anon_sym_BSLASHVref] = ACTIONS(12185), + [anon_sym_BSLASHautoref] = ACTIONS(12185), + [anon_sym_BSLASHpageref] = ACTIONS(12185), + [anon_sym_BSLASHcref] = ACTIONS(12185), + [anon_sym_BSLASHCref] = ACTIONS(12185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnameCref] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHlabelcref] = ACTIONS(12185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12185), + [anon_sym_BSLASHeqref] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange] = ACTIONS(12185), + [anon_sym_BSLASHCrefrange] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewlabel] = ACTIONS(12185), + [anon_sym_BSLASHnewcommand] = ACTIONS(12185), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12185), + [anon_sym_BSLASHgls] = ACTIONS(12185), + [anon_sym_BSLASHGls] = ACTIONS(12185), + [anon_sym_BSLASHGLS] = ACTIONS(12185), + [anon_sym_BSLASHglspl] = ACTIONS(12185), + [anon_sym_BSLASHGlspl] = ACTIONS(12185), + [anon_sym_BSLASHGLSpl] = ACTIONS(12185), + [anon_sym_BSLASHglsdisp] = ACTIONS(12185), + [anon_sym_BSLASHglslink] = ACTIONS(12185), + [anon_sym_BSLASHglstext] = ACTIONS(12185), + [anon_sym_BSLASHGlstext] = ACTIONS(12185), + [anon_sym_BSLASHGLStext] = ACTIONS(12185), + [anon_sym_BSLASHglsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12185), + [anon_sym_BSLASHglsplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSplural] = ACTIONS(12185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHglsname] = ACTIONS(12185), + [anon_sym_BSLASHGlsname] = ACTIONS(12185), + [anon_sym_BSLASHGLSname] = ACTIONS(12185), + [anon_sym_BSLASHglssymbol] = ACTIONS(12185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12185), + [anon_sym_BSLASHglsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12185), + [anon_sym_BSLASHglsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12185), + [anon_sym_BSLASHglsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12185), + [anon_sym_BSLASHglsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12185), + [anon_sym_BSLASHglsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12185), + [anon_sym_BSLASHnewacronym] = ACTIONS(12185), + [anon_sym_BSLASHacrshort] = ACTIONS(12185), + [anon_sym_BSLASHAcrshort] = ACTIONS(12185), + [anon_sym_BSLASHACRshort] = ACTIONS(12185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12185), + [anon_sym_BSLASHacrlong] = ACTIONS(12185), + [anon_sym_BSLASHAcrlong] = ACTIONS(12185), + [anon_sym_BSLASHACRlong] = ACTIONS(12185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12185), + [anon_sym_BSLASHacrfull] = ACTIONS(12185), + [anon_sym_BSLASHAcrfull] = ACTIONS(12185), + [anon_sym_BSLASHACRfull] = ACTIONS(12185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12185), + [anon_sym_BSLASHacs] = ACTIONS(12185), + [anon_sym_BSLASHAcs] = ACTIONS(12185), + [anon_sym_BSLASHacsp] = ACTIONS(12185), + [anon_sym_BSLASHAcsp] = ACTIONS(12185), + [anon_sym_BSLASHacl] = ACTIONS(12185), + [anon_sym_BSLASHAcl] = ACTIONS(12185), + [anon_sym_BSLASHaclp] = ACTIONS(12185), + [anon_sym_BSLASHAclp] = ACTIONS(12185), + [anon_sym_BSLASHacf] = ACTIONS(12185), + [anon_sym_BSLASHAcf] = ACTIONS(12185), + [anon_sym_BSLASHacfp] = ACTIONS(12185), + [anon_sym_BSLASHAcfp] = ACTIONS(12185), + [anon_sym_BSLASHac] = ACTIONS(12185), + [anon_sym_BSLASHAc] = ACTIONS(12185), + [anon_sym_BSLASHacp] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12185), + [anon_sym_BSLASHcolor] = ACTIONS(12185), + [anon_sym_BSLASHcolorbox] = ACTIONS(12185), + [anon_sym_BSLASHtextcolor] = ACTIONS(12185), + [anon_sym_BSLASHpagecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12185), + }, + [1344] = { + [sym_brace_group] = STATE(3075), + [sym_generic_command_name] = ACTIONS(12100), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12100), + [aux_sym_paragraph_token1] = ACTIONS(12100), + [aux_sym_subparagraph_token1] = ACTIONS(12100), + [anon_sym_BSLASHitem] = ACTIONS(12100), + [anon_sym_LBRACK] = ACTIONS(12098), + [anon_sym_RBRACK] = ACTIONS(12098), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12098), + [anon_sym_LPAREN] = ACTIONS(12098), + [anon_sym_COMMA] = ACTIONS(12098), + [anon_sym_EQ] = ACTIONS(12098), + [sym_word] = ACTIONS(12098), + [sym_param] = ACTIONS(12098), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12098), + [anon_sym_DOLLAR] = ACTIONS(12100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12098), + [anon_sym_BSLASHbegin] = ACTIONS(12100), + [anon_sym_BSLASHcaption] = ACTIONS(12100), + [anon_sym_BSLASHcite] = ACTIONS(12100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCite] = ACTIONS(12100), + [anon_sym_BSLASHnocite] = ACTIONS(12100), + [anon_sym_BSLASHcitet] = ACTIONS(12100), + [anon_sym_BSLASHcitep] = ACTIONS(12100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteauthor] = ACTIONS(12100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitetitle] = ACTIONS(12100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteyear] = ACTIONS(12100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitedate] = ACTIONS(12100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteurl] = ACTIONS(12100), + [anon_sym_BSLASHfullcite] = ACTIONS(12100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12100), + [anon_sym_BSLASHcitealt] = ACTIONS(12100), + [anon_sym_BSLASHcitealp] = ACTIONS(12100), + [anon_sym_BSLASHcitetext] = ACTIONS(12100), + [anon_sym_BSLASHparencite] = ACTIONS(12100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHParencite] = ACTIONS(12100), + [anon_sym_BSLASHfootcite] = ACTIONS(12100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12100), + [anon_sym_BSLASHtextcite] = ACTIONS(12100), + [anon_sym_BSLASHTextcite] = ACTIONS(12100), + [anon_sym_BSLASHsmartcite] = ACTIONS(12100), + [anon_sym_BSLASHSmartcite] = ACTIONS(12100), + [anon_sym_BSLASHsupercite] = ACTIONS(12100), + [anon_sym_BSLASHautocite] = ACTIONS(12100), + [anon_sym_BSLASHAutocite] = ACTIONS(12100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHvolcite] = ACTIONS(12100), + [anon_sym_BSLASHVolcite] = ACTIONS(12100), + [anon_sym_BSLASHpvolcite] = ACTIONS(12100), + [anon_sym_BSLASHPvolcite] = ACTIONS(12100), + [anon_sym_BSLASHfvolcite] = ACTIONS(12100), + [anon_sym_BSLASHftvolcite] = ACTIONS(12100), + [anon_sym_BSLASHsvolcite] = ACTIONS(12100), + [anon_sym_BSLASHSvolcite] = ACTIONS(12100), + [anon_sym_BSLASHtvolcite] = ACTIONS(12100), + [anon_sym_BSLASHTvolcite] = ACTIONS(12100), + [anon_sym_BSLASHavolcite] = ACTIONS(12100), + [anon_sym_BSLASHAvolcite] = ACTIONS(12100), + [anon_sym_BSLASHnotecite] = ACTIONS(12100), + [anon_sym_BSLASHpnotecite] = ACTIONS(12100), + [anon_sym_BSLASHPnotecite] = ACTIONS(12100), + [anon_sym_BSLASHfnotecite] = ACTIONS(12100), + [anon_sym_BSLASHusepackage] = ACTIONS(12100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12100), + [anon_sym_BSLASHinclude] = ACTIONS(12100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12100), + [anon_sym_BSLASHinput] = ACTIONS(12100), + [anon_sym_BSLASHsubfile] = ACTIONS(12100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12100), + [anon_sym_BSLASHbibliography] = ACTIONS(12100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12100), + [anon_sym_BSLASHincludesvg] = ACTIONS(12100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12100), + [anon_sym_BSLASHimport] = ACTIONS(12100), + [anon_sym_BSLASHsubimport] = ACTIONS(12100), + [anon_sym_BSLASHinputfrom] = ACTIONS(12100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12100), + [anon_sym_BSLASHincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHlabel] = ACTIONS(12100), + [anon_sym_BSLASHref] = ACTIONS(12100), + [anon_sym_BSLASHvref] = ACTIONS(12100), + [anon_sym_BSLASHVref] = ACTIONS(12100), + [anon_sym_BSLASHautoref] = ACTIONS(12100), + [anon_sym_BSLASHpageref] = ACTIONS(12100), + [anon_sym_BSLASHcref] = ACTIONS(12100), + [anon_sym_BSLASHCref] = ACTIONS(12100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnameCref] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHlabelcref] = ACTIONS(12100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12100), + [anon_sym_BSLASHeqref] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange] = ACTIONS(12100), + [anon_sym_BSLASHCrefrange] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewlabel] = ACTIONS(12100), + [anon_sym_BSLASHnewcommand] = ACTIONS(12100), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12100), + [anon_sym_BSLASHgls] = ACTIONS(12100), + [anon_sym_BSLASHGls] = ACTIONS(12100), + [anon_sym_BSLASHGLS] = ACTIONS(12100), + [anon_sym_BSLASHglspl] = ACTIONS(12100), + [anon_sym_BSLASHGlspl] = ACTIONS(12100), + [anon_sym_BSLASHGLSpl] = ACTIONS(12100), + [anon_sym_BSLASHglsdisp] = ACTIONS(12100), + [anon_sym_BSLASHglslink] = ACTIONS(12100), + [anon_sym_BSLASHglstext] = ACTIONS(12100), + [anon_sym_BSLASHGlstext] = ACTIONS(12100), + [anon_sym_BSLASHGLStext] = ACTIONS(12100), + [anon_sym_BSLASHglsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12100), + [anon_sym_BSLASHglsplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSplural] = ACTIONS(12100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHglsname] = ACTIONS(12100), + [anon_sym_BSLASHGlsname] = ACTIONS(12100), + [anon_sym_BSLASHGLSname] = ACTIONS(12100), + [anon_sym_BSLASHglssymbol] = ACTIONS(12100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12100), + [anon_sym_BSLASHglsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12100), + [anon_sym_BSLASHglsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12100), + [anon_sym_BSLASHglsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12100), + [anon_sym_BSLASHglsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12100), + [anon_sym_BSLASHglsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12100), + [anon_sym_BSLASHnewacronym] = ACTIONS(12100), + [anon_sym_BSLASHacrshort] = ACTIONS(12100), + [anon_sym_BSLASHAcrshort] = ACTIONS(12100), + [anon_sym_BSLASHACRshort] = ACTIONS(12100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12100), + [anon_sym_BSLASHacrlong] = ACTIONS(12100), + [anon_sym_BSLASHAcrlong] = ACTIONS(12100), + [anon_sym_BSLASHACRlong] = ACTIONS(12100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12100), + [anon_sym_BSLASHacrfull] = ACTIONS(12100), + [anon_sym_BSLASHAcrfull] = ACTIONS(12100), + [anon_sym_BSLASHACRfull] = ACTIONS(12100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12100), + [anon_sym_BSLASHacs] = ACTIONS(12100), + [anon_sym_BSLASHAcs] = ACTIONS(12100), + [anon_sym_BSLASHacsp] = ACTIONS(12100), + [anon_sym_BSLASHAcsp] = ACTIONS(12100), + [anon_sym_BSLASHacl] = ACTIONS(12100), + [anon_sym_BSLASHAcl] = ACTIONS(12100), + [anon_sym_BSLASHaclp] = ACTIONS(12100), + [anon_sym_BSLASHAclp] = ACTIONS(12100), + [anon_sym_BSLASHacf] = ACTIONS(12100), + [anon_sym_BSLASHAcf] = ACTIONS(12100), + [anon_sym_BSLASHacfp] = ACTIONS(12100), + [anon_sym_BSLASHAcfp] = ACTIONS(12100), + [anon_sym_BSLASHac] = ACTIONS(12100), + [anon_sym_BSLASHAc] = ACTIONS(12100), + [anon_sym_BSLASHacp] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12100), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12100), + [anon_sym_BSLASHcolor] = ACTIONS(12100), + [anon_sym_BSLASHcolorbox] = ACTIONS(12100), + [anon_sym_BSLASHtextcolor] = ACTIONS(12100), + [anon_sym_BSLASHpagecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12100), + }, + [1345] = { + [sym_brace_group] = STATE(3074), + [sym_generic_command_name] = ACTIONS(12028), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12028), + [aux_sym_paragraph_token1] = ACTIONS(12028), + [aux_sym_subparagraph_token1] = ACTIONS(12028), + [anon_sym_BSLASHitem] = ACTIONS(12028), + [anon_sym_LBRACK] = ACTIONS(12026), + [anon_sym_RBRACK] = ACTIONS(12026), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12026), + [anon_sym_LPAREN] = ACTIONS(12026), + [anon_sym_COMMA] = ACTIONS(12026), + [anon_sym_EQ] = ACTIONS(12026), + [sym_word] = ACTIONS(12026), + [sym_param] = ACTIONS(12026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12026), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12026), + [anon_sym_DOLLAR] = ACTIONS(12028), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12026), + [anon_sym_BSLASHbegin] = ACTIONS(12028), + [anon_sym_BSLASHcaption] = ACTIONS(12028), + [anon_sym_BSLASHcite] = ACTIONS(12028), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCite] = ACTIONS(12028), + [anon_sym_BSLASHnocite] = ACTIONS(12028), + [anon_sym_BSLASHcitet] = ACTIONS(12028), + [anon_sym_BSLASHcitep] = ACTIONS(12028), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteauthor] = ACTIONS(12028), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12028), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitetitle] = ACTIONS(12028), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteyear] = ACTIONS(12028), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitedate] = ACTIONS(12028), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteurl] = ACTIONS(12028), + [anon_sym_BSLASHfullcite] = ACTIONS(12028), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12028), + [anon_sym_BSLASHcitealt] = ACTIONS(12028), + [anon_sym_BSLASHcitealp] = ACTIONS(12028), + [anon_sym_BSLASHcitetext] = ACTIONS(12028), + [anon_sym_BSLASHparencite] = ACTIONS(12028), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHParencite] = ACTIONS(12028), + [anon_sym_BSLASHfootcite] = ACTIONS(12028), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12028), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12028), + [anon_sym_BSLASHtextcite] = ACTIONS(12028), + [anon_sym_BSLASHTextcite] = ACTIONS(12028), + [anon_sym_BSLASHsmartcite] = ACTIONS(12028), + [anon_sym_BSLASHSmartcite] = ACTIONS(12028), + [anon_sym_BSLASHsupercite] = ACTIONS(12028), + [anon_sym_BSLASHautocite] = ACTIONS(12028), + [anon_sym_BSLASHAutocite] = ACTIONS(12028), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHvolcite] = ACTIONS(12028), + [anon_sym_BSLASHVolcite] = ACTIONS(12028), + [anon_sym_BSLASHpvolcite] = ACTIONS(12028), + [anon_sym_BSLASHPvolcite] = ACTIONS(12028), + [anon_sym_BSLASHfvolcite] = ACTIONS(12028), + [anon_sym_BSLASHftvolcite] = ACTIONS(12028), + [anon_sym_BSLASHsvolcite] = ACTIONS(12028), + [anon_sym_BSLASHSvolcite] = ACTIONS(12028), + [anon_sym_BSLASHtvolcite] = ACTIONS(12028), + [anon_sym_BSLASHTvolcite] = ACTIONS(12028), + [anon_sym_BSLASHavolcite] = ACTIONS(12028), + [anon_sym_BSLASHAvolcite] = ACTIONS(12028), + [anon_sym_BSLASHnotecite] = ACTIONS(12028), + [anon_sym_BSLASHpnotecite] = ACTIONS(12028), + [anon_sym_BSLASHPnotecite] = ACTIONS(12028), + [anon_sym_BSLASHfnotecite] = ACTIONS(12028), + [anon_sym_BSLASHusepackage] = ACTIONS(12028), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12028), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12028), + [anon_sym_BSLASHinclude] = ACTIONS(12028), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12028), + [anon_sym_BSLASHinput] = ACTIONS(12028), + [anon_sym_BSLASHsubfile] = ACTIONS(12028), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12028), + [anon_sym_BSLASHbibliography] = ACTIONS(12028), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12028), + [anon_sym_BSLASHincludesvg] = ACTIONS(12028), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12028), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12028), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12028), + [anon_sym_BSLASHimport] = ACTIONS(12028), + [anon_sym_BSLASHsubimport] = ACTIONS(12028), + [anon_sym_BSLASHinputfrom] = ACTIONS(12028), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12028), + [anon_sym_BSLASHincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHlabel] = ACTIONS(12028), + [anon_sym_BSLASHref] = ACTIONS(12028), + [anon_sym_BSLASHvref] = ACTIONS(12028), + [anon_sym_BSLASHVref] = ACTIONS(12028), + [anon_sym_BSLASHautoref] = ACTIONS(12028), + [anon_sym_BSLASHpageref] = ACTIONS(12028), + [anon_sym_BSLASHcref] = ACTIONS(12028), + [anon_sym_BSLASHCref] = ACTIONS(12028), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnameCref] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHlabelcref] = ACTIONS(12028), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12028), + [anon_sym_BSLASHeqref] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange] = ACTIONS(12028), + [anon_sym_BSLASHCrefrange] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewlabel] = ACTIONS(12028), + [anon_sym_BSLASHnewcommand] = ACTIONS(12028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12028), + [anon_sym_BSLASHgls] = ACTIONS(12028), + [anon_sym_BSLASHGls] = ACTIONS(12028), + [anon_sym_BSLASHGLS] = ACTIONS(12028), + [anon_sym_BSLASHglspl] = ACTIONS(12028), + [anon_sym_BSLASHGlspl] = ACTIONS(12028), + [anon_sym_BSLASHGLSpl] = ACTIONS(12028), + [anon_sym_BSLASHglsdisp] = ACTIONS(12028), + [anon_sym_BSLASHglslink] = ACTIONS(12028), + [anon_sym_BSLASHglstext] = ACTIONS(12028), + [anon_sym_BSLASHGlstext] = ACTIONS(12028), + [anon_sym_BSLASHGLStext] = ACTIONS(12028), + [anon_sym_BSLASHglsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12028), + [anon_sym_BSLASHglsplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSplural] = ACTIONS(12028), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHglsname] = ACTIONS(12028), + [anon_sym_BSLASHGlsname] = ACTIONS(12028), + [anon_sym_BSLASHGLSname] = ACTIONS(12028), + [anon_sym_BSLASHglssymbol] = ACTIONS(12028), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12028), + [anon_sym_BSLASHglsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12028), + [anon_sym_BSLASHglsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12028), + [anon_sym_BSLASHglsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12028), + [anon_sym_BSLASHglsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12028), + [anon_sym_BSLASHglsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12028), + [anon_sym_BSLASHnewacronym] = ACTIONS(12028), + [anon_sym_BSLASHacrshort] = ACTIONS(12028), + [anon_sym_BSLASHAcrshort] = ACTIONS(12028), + [anon_sym_BSLASHACRshort] = ACTIONS(12028), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12028), + [anon_sym_BSLASHacrlong] = ACTIONS(12028), + [anon_sym_BSLASHAcrlong] = ACTIONS(12028), + [anon_sym_BSLASHACRlong] = ACTIONS(12028), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12028), + [anon_sym_BSLASHacrfull] = ACTIONS(12028), + [anon_sym_BSLASHAcrfull] = ACTIONS(12028), + [anon_sym_BSLASHACRfull] = ACTIONS(12028), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12028), + [anon_sym_BSLASHacs] = ACTIONS(12028), + [anon_sym_BSLASHAcs] = ACTIONS(12028), + [anon_sym_BSLASHacsp] = ACTIONS(12028), + [anon_sym_BSLASHAcsp] = ACTIONS(12028), + [anon_sym_BSLASHacl] = ACTIONS(12028), + [anon_sym_BSLASHAcl] = ACTIONS(12028), + [anon_sym_BSLASHaclp] = ACTIONS(12028), + [anon_sym_BSLASHAclp] = ACTIONS(12028), + [anon_sym_BSLASHacf] = ACTIONS(12028), + [anon_sym_BSLASHAcf] = ACTIONS(12028), + [anon_sym_BSLASHacfp] = ACTIONS(12028), + [anon_sym_BSLASHAcfp] = ACTIONS(12028), + [anon_sym_BSLASHac] = ACTIONS(12028), + [anon_sym_BSLASHAc] = ACTIONS(12028), + [anon_sym_BSLASHacp] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12028), + [anon_sym_BSLASHcolor] = ACTIONS(12028), + [anon_sym_BSLASHcolorbox] = ACTIONS(12028), + [anon_sym_BSLASHtextcolor] = ACTIONS(12028), + [anon_sym_BSLASHpagecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12028), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12028), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12028), + }, + [1346] = { + [sym_brace_group] = STATE(3073), + [sym_generic_command_name] = ACTIONS(12092), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12092), + [aux_sym_paragraph_token1] = ACTIONS(12092), + [aux_sym_subparagraph_token1] = ACTIONS(12092), + [anon_sym_BSLASHitem] = ACTIONS(12092), + [anon_sym_LBRACK] = ACTIONS(12090), + [anon_sym_RBRACK] = ACTIONS(12090), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12090), + [anon_sym_LPAREN] = ACTIONS(12090), + [anon_sym_COMMA] = ACTIONS(12090), + [anon_sym_EQ] = ACTIONS(12090), + [sym_word] = ACTIONS(12090), + [sym_param] = ACTIONS(12090), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12090), + [anon_sym_DOLLAR] = ACTIONS(12092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12090), + [anon_sym_BSLASHbegin] = ACTIONS(12092), + [anon_sym_BSLASHcaption] = ACTIONS(12092), + [anon_sym_BSLASHcite] = ACTIONS(12092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCite] = ACTIONS(12092), + [anon_sym_BSLASHnocite] = ACTIONS(12092), + [anon_sym_BSLASHcitet] = ACTIONS(12092), + [anon_sym_BSLASHcitep] = ACTIONS(12092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteauthor] = ACTIONS(12092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitetitle] = ACTIONS(12092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteyear] = ACTIONS(12092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitedate] = ACTIONS(12092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteurl] = ACTIONS(12092), + [anon_sym_BSLASHfullcite] = ACTIONS(12092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12092), + [anon_sym_BSLASHcitealt] = ACTIONS(12092), + [anon_sym_BSLASHcitealp] = ACTIONS(12092), + [anon_sym_BSLASHcitetext] = ACTIONS(12092), + [anon_sym_BSLASHparencite] = ACTIONS(12092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHParencite] = ACTIONS(12092), + [anon_sym_BSLASHfootcite] = ACTIONS(12092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12092), + [anon_sym_BSLASHtextcite] = ACTIONS(12092), + [anon_sym_BSLASHTextcite] = ACTIONS(12092), + [anon_sym_BSLASHsmartcite] = ACTIONS(12092), + [anon_sym_BSLASHSmartcite] = ACTIONS(12092), + [anon_sym_BSLASHsupercite] = ACTIONS(12092), + [anon_sym_BSLASHautocite] = ACTIONS(12092), + [anon_sym_BSLASHAutocite] = ACTIONS(12092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHvolcite] = ACTIONS(12092), + [anon_sym_BSLASHVolcite] = ACTIONS(12092), + [anon_sym_BSLASHpvolcite] = ACTIONS(12092), + [anon_sym_BSLASHPvolcite] = ACTIONS(12092), + [anon_sym_BSLASHfvolcite] = ACTIONS(12092), + [anon_sym_BSLASHftvolcite] = ACTIONS(12092), + [anon_sym_BSLASHsvolcite] = ACTIONS(12092), + [anon_sym_BSLASHSvolcite] = ACTIONS(12092), + [anon_sym_BSLASHtvolcite] = ACTIONS(12092), + [anon_sym_BSLASHTvolcite] = ACTIONS(12092), + [anon_sym_BSLASHavolcite] = ACTIONS(12092), + [anon_sym_BSLASHAvolcite] = ACTIONS(12092), + [anon_sym_BSLASHnotecite] = ACTIONS(12092), + [anon_sym_BSLASHpnotecite] = ACTIONS(12092), + [anon_sym_BSLASHPnotecite] = ACTIONS(12092), + [anon_sym_BSLASHfnotecite] = ACTIONS(12092), + [anon_sym_BSLASHusepackage] = ACTIONS(12092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12092), + [anon_sym_BSLASHinclude] = ACTIONS(12092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12092), + [anon_sym_BSLASHinput] = ACTIONS(12092), + [anon_sym_BSLASHsubfile] = ACTIONS(12092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12092), + [anon_sym_BSLASHbibliography] = ACTIONS(12092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12092), + [anon_sym_BSLASHincludesvg] = ACTIONS(12092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12092), + [anon_sym_BSLASHimport] = ACTIONS(12092), + [anon_sym_BSLASHsubimport] = ACTIONS(12092), + [anon_sym_BSLASHinputfrom] = ACTIONS(12092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12092), + [anon_sym_BSLASHincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHlabel] = ACTIONS(12092), + [anon_sym_BSLASHref] = ACTIONS(12092), + [anon_sym_BSLASHvref] = ACTIONS(12092), + [anon_sym_BSLASHVref] = ACTIONS(12092), + [anon_sym_BSLASHautoref] = ACTIONS(12092), + [anon_sym_BSLASHpageref] = ACTIONS(12092), + [anon_sym_BSLASHcref] = ACTIONS(12092), + [anon_sym_BSLASHCref] = ACTIONS(12092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnameCref] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHlabelcref] = ACTIONS(12092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12092), + [anon_sym_BSLASHeqref] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange] = ACTIONS(12092), + [anon_sym_BSLASHCrefrange] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewlabel] = ACTIONS(12092), + [anon_sym_BSLASHnewcommand] = ACTIONS(12092), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12092), + [anon_sym_BSLASHgls] = ACTIONS(12092), + [anon_sym_BSLASHGls] = ACTIONS(12092), + [anon_sym_BSLASHGLS] = ACTIONS(12092), + [anon_sym_BSLASHglspl] = ACTIONS(12092), + [anon_sym_BSLASHGlspl] = ACTIONS(12092), + [anon_sym_BSLASHGLSpl] = ACTIONS(12092), + [anon_sym_BSLASHglsdisp] = ACTIONS(12092), + [anon_sym_BSLASHglslink] = ACTIONS(12092), + [anon_sym_BSLASHglstext] = ACTIONS(12092), + [anon_sym_BSLASHGlstext] = ACTIONS(12092), + [anon_sym_BSLASHGLStext] = ACTIONS(12092), + [anon_sym_BSLASHglsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12092), + [anon_sym_BSLASHglsplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSplural] = ACTIONS(12092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHglsname] = ACTIONS(12092), + [anon_sym_BSLASHGlsname] = ACTIONS(12092), + [anon_sym_BSLASHGLSname] = ACTIONS(12092), + [anon_sym_BSLASHglssymbol] = ACTIONS(12092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12092), + [anon_sym_BSLASHglsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12092), + [anon_sym_BSLASHglsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12092), + [anon_sym_BSLASHglsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12092), + [anon_sym_BSLASHglsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12092), + [anon_sym_BSLASHglsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12092), + [anon_sym_BSLASHnewacronym] = ACTIONS(12092), + [anon_sym_BSLASHacrshort] = ACTIONS(12092), + [anon_sym_BSLASHAcrshort] = ACTIONS(12092), + [anon_sym_BSLASHACRshort] = ACTIONS(12092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12092), + [anon_sym_BSLASHacrlong] = ACTIONS(12092), + [anon_sym_BSLASHAcrlong] = ACTIONS(12092), + [anon_sym_BSLASHACRlong] = ACTIONS(12092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12092), + [anon_sym_BSLASHacrfull] = ACTIONS(12092), + [anon_sym_BSLASHAcrfull] = ACTIONS(12092), + [anon_sym_BSLASHACRfull] = ACTIONS(12092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12092), + [anon_sym_BSLASHacs] = ACTIONS(12092), + [anon_sym_BSLASHAcs] = ACTIONS(12092), + [anon_sym_BSLASHacsp] = ACTIONS(12092), + [anon_sym_BSLASHAcsp] = ACTIONS(12092), + [anon_sym_BSLASHacl] = ACTIONS(12092), + [anon_sym_BSLASHAcl] = ACTIONS(12092), + [anon_sym_BSLASHaclp] = ACTIONS(12092), + [anon_sym_BSLASHAclp] = ACTIONS(12092), + [anon_sym_BSLASHacf] = ACTIONS(12092), + [anon_sym_BSLASHAcf] = ACTIONS(12092), + [anon_sym_BSLASHacfp] = ACTIONS(12092), + [anon_sym_BSLASHAcfp] = ACTIONS(12092), + [anon_sym_BSLASHac] = ACTIONS(12092), + [anon_sym_BSLASHAc] = ACTIONS(12092), + [anon_sym_BSLASHacp] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12092), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12092), + [anon_sym_BSLASHcolor] = ACTIONS(12092), + [anon_sym_BSLASHcolorbox] = ACTIONS(12092), + [anon_sym_BSLASHtextcolor] = ACTIONS(12092), + [anon_sym_BSLASHpagecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12092), + }, + [1347] = { + [sym_brace_group] = STATE(3071), + [sym_generic_command_name] = ACTIONS(12088), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12088), + [aux_sym_paragraph_token1] = ACTIONS(12088), + [aux_sym_subparagraph_token1] = ACTIONS(12088), + [anon_sym_BSLASHitem] = ACTIONS(12088), + [anon_sym_LBRACK] = ACTIONS(12086), + [anon_sym_RBRACK] = ACTIONS(12086), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12086), + [anon_sym_LPAREN] = ACTIONS(12086), + [anon_sym_COMMA] = ACTIONS(12086), + [anon_sym_EQ] = ACTIONS(12086), + [sym_word] = ACTIONS(12086), + [sym_param] = ACTIONS(12086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12086), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12086), + [anon_sym_DOLLAR] = ACTIONS(12088), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12086), + [anon_sym_BSLASHbegin] = ACTIONS(12088), + [anon_sym_BSLASHcaption] = ACTIONS(12088), + [anon_sym_BSLASHcite] = ACTIONS(12088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCite] = ACTIONS(12088), + [anon_sym_BSLASHnocite] = ACTIONS(12088), + [anon_sym_BSLASHcitet] = ACTIONS(12088), + [anon_sym_BSLASHcitep] = ACTIONS(12088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteauthor] = ACTIONS(12088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitetitle] = ACTIONS(12088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteyear] = ACTIONS(12088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitedate] = ACTIONS(12088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteurl] = ACTIONS(12088), + [anon_sym_BSLASHfullcite] = ACTIONS(12088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12088), + [anon_sym_BSLASHcitealt] = ACTIONS(12088), + [anon_sym_BSLASHcitealp] = ACTIONS(12088), + [anon_sym_BSLASHcitetext] = ACTIONS(12088), + [anon_sym_BSLASHparencite] = ACTIONS(12088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHParencite] = ACTIONS(12088), + [anon_sym_BSLASHfootcite] = ACTIONS(12088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12088), + [anon_sym_BSLASHtextcite] = ACTIONS(12088), + [anon_sym_BSLASHTextcite] = ACTIONS(12088), + [anon_sym_BSLASHsmartcite] = ACTIONS(12088), + [anon_sym_BSLASHSmartcite] = ACTIONS(12088), + [anon_sym_BSLASHsupercite] = ACTIONS(12088), + [anon_sym_BSLASHautocite] = ACTIONS(12088), + [anon_sym_BSLASHAutocite] = ACTIONS(12088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHvolcite] = ACTIONS(12088), + [anon_sym_BSLASHVolcite] = ACTIONS(12088), + [anon_sym_BSLASHpvolcite] = ACTIONS(12088), + [anon_sym_BSLASHPvolcite] = ACTIONS(12088), + [anon_sym_BSLASHfvolcite] = ACTIONS(12088), + [anon_sym_BSLASHftvolcite] = ACTIONS(12088), + [anon_sym_BSLASHsvolcite] = ACTIONS(12088), + [anon_sym_BSLASHSvolcite] = ACTIONS(12088), + [anon_sym_BSLASHtvolcite] = ACTIONS(12088), + [anon_sym_BSLASHTvolcite] = ACTIONS(12088), + [anon_sym_BSLASHavolcite] = ACTIONS(12088), + [anon_sym_BSLASHAvolcite] = ACTIONS(12088), + [anon_sym_BSLASHnotecite] = ACTIONS(12088), + [anon_sym_BSLASHpnotecite] = ACTIONS(12088), + [anon_sym_BSLASHPnotecite] = ACTIONS(12088), + [anon_sym_BSLASHfnotecite] = ACTIONS(12088), + [anon_sym_BSLASHusepackage] = ACTIONS(12088), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12088), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12088), + [anon_sym_BSLASHinclude] = ACTIONS(12088), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12088), + [anon_sym_BSLASHinput] = ACTIONS(12088), + [anon_sym_BSLASHsubfile] = ACTIONS(12088), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12088), + [anon_sym_BSLASHbibliography] = ACTIONS(12088), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12088), + [anon_sym_BSLASHincludesvg] = ACTIONS(12088), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12088), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12088), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12088), + [anon_sym_BSLASHimport] = ACTIONS(12088), + [anon_sym_BSLASHsubimport] = ACTIONS(12088), + [anon_sym_BSLASHinputfrom] = ACTIONS(12088), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12088), + [anon_sym_BSLASHincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHlabel] = ACTIONS(12088), + [anon_sym_BSLASHref] = ACTIONS(12088), + [anon_sym_BSLASHvref] = ACTIONS(12088), + [anon_sym_BSLASHVref] = ACTIONS(12088), + [anon_sym_BSLASHautoref] = ACTIONS(12088), + [anon_sym_BSLASHpageref] = ACTIONS(12088), + [anon_sym_BSLASHcref] = ACTIONS(12088), + [anon_sym_BSLASHCref] = ACTIONS(12088), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnameCref] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHlabelcref] = ACTIONS(12088), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12088), + [anon_sym_BSLASHeqref] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange] = ACTIONS(12088), + [anon_sym_BSLASHCrefrange] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewlabel] = ACTIONS(12088), + [anon_sym_BSLASHnewcommand] = ACTIONS(12088), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12088), + [anon_sym_BSLASHgls] = ACTIONS(12088), + [anon_sym_BSLASHGls] = ACTIONS(12088), + [anon_sym_BSLASHGLS] = ACTIONS(12088), + [anon_sym_BSLASHglspl] = ACTIONS(12088), + [anon_sym_BSLASHGlspl] = ACTIONS(12088), + [anon_sym_BSLASHGLSpl] = ACTIONS(12088), + [anon_sym_BSLASHglsdisp] = ACTIONS(12088), + [anon_sym_BSLASHglslink] = ACTIONS(12088), + [anon_sym_BSLASHglstext] = ACTIONS(12088), + [anon_sym_BSLASHGlstext] = ACTIONS(12088), + [anon_sym_BSLASHGLStext] = ACTIONS(12088), + [anon_sym_BSLASHglsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12088), + [anon_sym_BSLASHglsplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSplural] = ACTIONS(12088), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHglsname] = ACTIONS(12088), + [anon_sym_BSLASHGlsname] = ACTIONS(12088), + [anon_sym_BSLASHGLSname] = ACTIONS(12088), + [anon_sym_BSLASHglssymbol] = ACTIONS(12088), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12088), + [anon_sym_BSLASHglsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12088), + [anon_sym_BSLASHglsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12088), + [anon_sym_BSLASHglsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12088), + [anon_sym_BSLASHglsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12088), + [anon_sym_BSLASHglsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12088), + [anon_sym_BSLASHnewacronym] = ACTIONS(12088), + [anon_sym_BSLASHacrshort] = ACTIONS(12088), + [anon_sym_BSLASHAcrshort] = ACTIONS(12088), + [anon_sym_BSLASHACRshort] = ACTIONS(12088), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12088), + [anon_sym_BSLASHacrlong] = ACTIONS(12088), + [anon_sym_BSLASHAcrlong] = ACTIONS(12088), + [anon_sym_BSLASHACRlong] = ACTIONS(12088), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12088), + [anon_sym_BSLASHacrfull] = ACTIONS(12088), + [anon_sym_BSLASHAcrfull] = ACTIONS(12088), + [anon_sym_BSLASHACRfull] = ACTIONS(12088), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12088), + [anon_sym_BSLASHacs] = ACTIONS(12088), + [anon_sym_BSLASHAcs] = ACTIONS(12088), + [anon_sym_BSLASHacsp] = ACTIONS(12088), + [anon_sym_BSLASHAcsp] = ACTIONS(12088), + [anon_sym_BSLASHacl] = ACTIONS(12088), + [anon_sym_BSLASHAcl] = ACTIONS(12088), + [anon_sym_BSLASHaclp] = ACTIONS(12088), + [anon_sym_BSLASHAclp] = ACTIONS(12088), + [anon_sym_BSLASHacf] = ACTIONS(12088), + [anon_sym_BSLASHAcf] = ACTIONS(12088), + [anon_sym_BSLASHacfp] = ACTIONS(12088), + [anon_sym_BSLASHAcfp] = ACTIONS(12088), + [anon_sym_BSLASHac] = ACTIONS(12088), + [anon_sym_BSLASHAc] = ACTIONS(12088), + [anon_sym_BSLASHacp] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12088), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12088), + [anon_sym_BSLASHcolor] = ACTIONS(12088), + [anon_sym_BSLASHcolorbox] = ACTIONS(12088), + [anon_sym_BSLASHtextcolor] = ACTIONS(12088), + [anon_sym_BSLASHpagecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12088), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12088), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12088), + }, + [1348] = { + [sym_brace_group] = STATE(3070), + [sym_generic_command_name] = ACTIONS(12054), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12054), + [aux_sym_paragraph_token1] = ACTIONS(12054), + [aux_sym_subparagraph_token1] = ACTIONS(12054), + [anon_sym_BSLASHitem] = ACTIONS(12054), + [anon_sym_LBRACK] = ACTIONS(12052), + [anon_sym_RBRACK] = ACTIONS(12052), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12052), + [anon_sym_LPAREN] = ACTIONS(12052), + [anon_sym_COMMA] = ACTIONS(12052), + [anon_sym_EQ] = ACTIONS(12052), + [sym_word] = ACTIONS(12052), + [sym_param] = ACTIONS(12052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12052), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12052), + [anon_sym_DOLLAR] = ACTIONS(12054), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12052), + [anon_sym_BSLASHbegin] = ACTIONS(12054), + [anon_sym_BSLASHcaption] = ACTIONS(12054), + [anon_sym_BSLASHcite] = ACTIONS(12054), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCite] = ACTIONS(12054), + [anon_sym_BSLASHnocite] = ACTIONS(12054), + [anon_sym_BSLASHcitet] = ACTIONS(12054), + [anon_sym_BSLASHcitep] = ACTIONS(12054), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteauthor] = ACTIONS(12054), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12054), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitetitle] = ACTIONS(12054), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteyear] = ACTIONS(12054), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitedate] = ACTIONS(12054), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteurl] = ACTIONS(12054), + [anon_sym_BSLASHfullcite] = ACTIONS(12054), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12054), + [anon_sym_BSLASHcitealt] = ACTIONS(12054), + [anon_sym_BSLASHcitealp] = ACTIONS(12054), + [anon_sym_BSLASHcitetext] = ACTIONS(12054), + [anon_sym_BSLASHparencite] = ACTIONS(12054), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHParencite] = ACTIONS(12054), + [anon_sym_BSLASHfootcite] = ACTIONS(12054), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12054), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12054), + [anon_sym_BSLASHtextcite] = ACTIONS(12054), + [anon_sym_BSLASHTextcite] = ACTIONS(12054), + [anon_sym_BSLASHsmartcite] = ACTIONS(12054), + [anon_sym_BSLASHSmartcite] = ACTIONS(12054), + [anon_sym_BSLASHsupercite] = ACTIONS(12054), + [anon_sym_BSLASHautocite] = ACTIONS(12054), + [anon_sym_BSLASHAutocite] = ACTIONS(12054), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHvolcite] = ACTIONS(12054), + [anon_sym_BSLASHVolcite] = ACTIONS(12054), + [anon_sym_BSLASHpvolcite] = ACTIONS(12054), + [anon_sym_BSLASHPvolcite] = ACTIONS(12054), + [anon_sym_BSLASHfvolcite] = ACTIONS(12054), + [anon_sym_BSLASHftvolcite] = ACTIONS(12054), + [anon_sym_BSLASHsvolcite] = ACTIONS(12054), + [anon_sym_BSLASHSvolcite] = ACTIONS(12054), + [anon_sym_BSLASHtvolcite] = ACTIONS(12054), + [anon_sym_BSLASHTvolcite] = ACTIONS(12054), + [anon_sym_BSLASHavolcite] = ACTIONS(12054), + [anon_sym_BSLASHAvolcite] = ACTIONS(12054), + [anon_sym_BSLASHnotecite] = ACTIONS(12054), + [anon_sym_BSLASHpnotecite] = ACTIONS(12054), + [anon_sym_BSLASHPnotecite] = ACTIONS(12054), + [anon_sym_BSLASHfnotecite] = ACTIONS(12054), + [anon_sym_BSLASHusepackage] = ACTIONS(12054), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12054), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12054), + [anon_sym_BSLASHinclude] = ACTIONS(12054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12054), + [anon_sym_BSLASHinput] = ACTIONS(12054), + [anon_sym_BSLASHsubfile] = ACTIONS(12054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12054), + [anon_sym_BSLASHbibliography] = ACTIONS(12054), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12054), + [anon_sym_BSLASHincludesvg] = ACTIONS(12054), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12054), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12054), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12054), + [anon_sym_BSLASHimport] = ACTIONS(12054), + [anon_sym_BSLASHsubimport] = ACTIONS(12054), + [anon_sym_BSLASHinputfrom] = ACTIONS(12054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12054), + [anon_sym_BSLASHincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHlabel] = ACTIONS(12054), + [anon_sym_BSLASHref] = ACTIONS(12054), + [anon_sym_BSLASHvref] = ACTIONS(12054), + [anon_sym_BSLASHVref] = ACTIONS(12054), + [anon_sym_BSLASHautoref] = ACTIONS(12054), + [anon_sym_BSLASHpageref] = ACTIONS(12054), + [anon_sym_BSLASHcref] = ACTIONS(12054), + [anon_sym_BSLASHCref] = ACTIONS(12054), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnameCref] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHlabelcref] = ACTIONS(12054), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12054), + [anon_sym_BSLASHeqref] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange] = ACTIONS(12054), + [anon_sym_BSLASHCrefrange] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewlabel] = ACTIONS(12054), + [anon_sym_BSLASHnewcommand] = ACTIONS(12054), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12054), + [anon_sym_BSLASHgls] = ACTIONS(12054), + [anon_sym_BSLASHGls] = ACTIONS(12054), + [anon_sym_BSLASHGLS] = ACTIONS(12054), + [anon_sym_BSLASHglspl] = ACTIONS(12054), + [anon_sym_BSLASHGlspl] = ACTIONS(12054), + [anon_sym_BSLASHGLSpl] = ACTIONS(12054), + [anon_sym_BSLASHglsdisp] = ACTIONS(12054), + [anon_sym_BSLASHglslink] = ACTIONS(12054), + [anon_sym_BSLASHglstext] = ACTIONS(12054), + [anon_sym_BSLASHGlstext] = ACTIONS(12054), + [anon_sym_BSLASHGLStext] = ACTIONS(12054), + [anon_sym_BSLASHglsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12054), + [anon_sym_BSLASHglsplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSplural] = ACTIONS(12054), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHglsname] = ACTIONS(12054), + [anon_sym_BSLASHGlsname] = ACTIONS(12054), + [anon_sym_BSLASHGLSname] = ACTIONS(12054), + [anon_sym_BSLASHglssymbol] = ACTIONS(12054), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12054), + [anon_sym_BSLASHglsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12054), + [anon_sym_BSLASHglsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12054), + [anon_sym_BSLASHglsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12054), + [anon_sym_BSLASHglsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12054), + [anon_sym_BSLASHglsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12054), + [anon_sym_BSLASHnewacronym] = ACTIONS(12054), + [anon_sym_BSLASHacrshort] = ACTIONS(12054), + [anon_sym_BSLASHAcrshort] = ACTIONS(12054), + [anon_sym_BSLASHACRshort] = ACTIONS(12054), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12054), + [anon_sym_BSLASHacrlong] = ACTIONS(12054), + [anon_sym_BSLASHAcrlong] = ACTIONS(12054), + [anon_sym_BSLASHACRlong] = ACTIONS(12054), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12054), + [anon_sym_BSLASHacrfull] = ACTIONS(12054), + [anon_sym_BSLASHAcrfull] = ACTIONS(12054), + [anon_sym_BSLASHACRfull] = ACTIONS(12054), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12054), + [anon_sym_BSLASHacs] = ACTIONS(12054), + [anon_sym_BSLASHAcs] = ACTIONS(12054), + [anon_sym_BSLASHacsp] = ACTIONS(12054), + [anon_sym_BSLASHAcsp] = ACTIONS(12054), + [anon_sym_BSLASHacl] = ACTIONS(12054), + [anon_sym_BSLASHAcl] = ACTIONS(12054), + [anon_sym_BSLASHaclp] = ACTIONS(12054), + [anon_sym_BSLASHAclp] = ACTIONS(12054), + [anon_sym_BSLASHacf] = ACTIONS(12054), + [anon_sym_BSLASHAcf] = ACTIONS(12054), + [anon_sym_BSLASHacfp] = ACTIONS(12054), + [anon_sym_BSLASHAcfp] = ACTIONS(12054), + [anon_sym_BSLASHac] = ACTIONS(12054), + [anon_sym_BSLASHAc] = ACTIONS(12054), + [anon_sym_BSLASHacp] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12054), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12054), + [anon_sym_BSLASHcolor] = ACTIONS(12054), + [anon_sym_BSLASHcolorbox] = ACTIONS(12054), + [anon_sym_BSLASHtextcolor] = ACTIONS(12054), + [anon_sym_BSLASHpagecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12054), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12054), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12054), + }, + [1349] = { + [sym_generic_command_name] = ACTIONS(12323), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12323), + [aux_sym_subsubsection_token1] = ACTIONS(12323), + [aux_sym_paragraph_token1] = ACTIONS(12323), + [aux_sym_subparagraph_token1] = ACTIONS(12323), + [anon_sym_BSLASHitem] = ACTIONS(12323), + [anon_sym_LBRACK] = ACTIONS(12321), + [anon_sym_RBRACK] = ACTIONS(12321), + [anon_sym_LBRACE] = ACTIONS(12321), + [anon_sym_RBRACE] = ACTIONS(12321), + [anon_sym_LPAREN] = ACTIONS(12321), + [anon_sym_COMMA] = ACTIONS(12321), + [anon_sym_EQ] = ACTIONS(12321), + [sym_word] = ACTIONS(12321), + [sym_param] = ACTIONS(12321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12321), + [anon_sym_DOLLAR] = ACTIONS(12323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12321), + [anon_sym_BSLASHbegin] = ACTIONS(12323), + [anon_sym_BSLASHcaption] = ACTIONS(12323), + [anon_sym_BSLASHcite] = ACTIONS(12323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCite] = ACTIONS(12323), + [anon_sym_BSLASHnocite] = ACTIONS(12323), + [anon_sym_BSLASHcitet] = ACTIONS(12323), + [anon_sym_BSLASHcitep] = ACTIONS(12323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteauthor] = ACTIONS(12323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitetitle] = ACTIONS(12323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteyear] = ACTIONS(12323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitedate] = ACTIONS(12323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteurl] = ACTIONS(12323), + [anon_sym_BSLASHfullcite] = ACTIONS(12323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12323), + [anon_sym_BSLASHcitealt] = ACTIONS(12323), + [anon_sym_BSLASHcitealp] = ACTIONS(12323), + [anon_sym_BSLASHcitetext] = ACTIONS(12323), + [anon_sym_BSLASHparencite] = ACTIONS(12323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHParencite] = ACTIONS(12323), + [anon_sym_BSLASHfootcite] = ACTIONS(12323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12323), + [anon_sym_BSLASHtextcite] = ACTIONS(12323), + [anon_sym_BSLASHTextcite] = ACTIONS(12323), + [anon_sym_BSLASHsmartcite] = ACTIONS(12323), + [anon_sym_BSLASHSmartcite] = ACTIONS(12323), + [anon_sym_BSLASHsupercite] = ACTIONS(12323), + [anon_sym_BSLASHautocite] = ACTIONS(12323), + [anon_sym_BSLASHAutocite] = ACTIONS(12323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHvolcite] = ACTIONS(12323), + [anon_sym_BSLASHVolcite] = ACTIONS(12323), + [anon_sym_BSLASHpvolcite] = ACTIONS(12323), + [anon_sym_BSLASHPvolcite] = ACTIONS(12323), + [anon_sym_BSLASHfvolcite] = ACTIONS(12323), + [anon_sym_BSLASHftvolcite] = ACTIONS(12323), + [anon_sym_BSLASHsvolcite] = ACTIONS(12323), + [anon_sym_BSLASHSvolcite] = ACTIONS(12323), + [anon_sym_BSLASHtvolcite] = ACTIONS(12323), + [anon_sym_BSLASHTvolcite] = ACTIONS(12323), + [anon_sym_BSLASHavolcite] = ACTIONS(12323), + [anon_sym_BSLASHAvolcite] = ACTIONS(12323), + [anon_sym_BSLASHnotecite] = ACTIONS(12323), + [anon_sym_BSLASHpnotecite] = ACTIONS(12323), + [anon_sym_BSLASHPnotecite] = ACTIONS(12323), + [anon_sym_BSLASHfnotecite] = ACTIONS(12323), + [anon_sym_BSLASHusepackage] = ACTIONS(12323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12323), + [anon_sym_BSLASHinclude] = ACTIONS(12323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12323), + [anon_sym_BSLASHinput] = ACTIONS(12323), + [anon_sym_BSLASHsubfile] = ACTIONS(12323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12323), + [anon_sym_BSLASHbibliography] = ACTIONS(12323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12323), + [anon_sym_BSLASHincludesvg] = ACTIONS(12323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12323), + [anon_sym_BSLASHimport] = ACTIONS(12323), + [anon_sym_BSLASHsubimport] = ACTIONS(12323), + [anon_sym_BSLASHinputfrom] = ACTIONS(12323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12323), + [anon_sym_BSLASHincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHlabel] = ACTIONS(12323), + [anon_sym_BSLASHref] = ACTIONS(12323), + [anon_sym_BSLASHvref] = ACTIONS(12323), + [anon_sym_BSLASHVref] = ACTIONS(12323), + [anon_sym_BSLASHautoref] = ACTIONS(12323), + [anon_sym_BSLASHpageref] = ACTIONS(12323), + [anon_sym_BSLASHcref] = ACTIONS(12323), + [anon_sym_BSLASHCref] = ACTIONS(12323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnameCref] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHlabelcref] = ACTIONS(12323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12323), + [anon_sym_BSLASHeqref] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange] = ACTIONS(12323), + [anon_sym_BSLASHCrefrange] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewlabel] = ACTIONS(12323), + [anon_sym_BSLASHnewcommand] = ACTIONS(12323), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12323), + [anon_sym_BSLASHgls] = ACTIONS(12323), + [anon_sym_BSLASHGls] = ACTIONS(12323), + [anon_sym_BSLASHGLS] = ACTIONS(12323), + [anon_sym_BSLASHglspl] = ACTIONS(12323), + [anon_sym_BSLASHGlspl] = ACTIONS(12323), + [anon_sym_BSLASHGLSpl] = ACTIONS(12323), + [anon_sym_BSLASHglsdisp] = ACTIONS(12323), + [anon_sym_BSLASHglslink] = ACTIONS(12323), + [anon_sym_BSLASHglstext] = ACTIONS(12323), + [anon_sym_BSLASHGlstext] = ACTIONS(12323), + [anon_sym_BSLASHGLStext] = ACTIONS(12323), + [anon_sym_BSLASHglsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12323), + [anon_sym_BSLASHglsplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSplural] = ACTIONS(12323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHglsname] = ACTIONS(12323), + [anon_sym_BSLASHGlsname] = ACTIONS(12323), + [anon_sym_BSLASHGLSname] = ACTIONS(12323), + [anon_sym_BSLASHglssymbol] = ACTIONS(12323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12323), + [anon_sym_BSLASHglsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12323), + [anon_sym_BSLASHglsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12323), + [anon_sym_BSLASHglsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12323), + [anon_sym_BSLASHglsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12323), + [anon_sym_BSLASHglsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12323), + [anon_sym_BSLASHnewacronym] = ACTIONS(12323), + [anon_sym_BSLASHacrshort] = ACTIONS(12323), + [anon_sym_BSLASHAcrshort] = ACTIONS(12323), + [anon_sym_BSLASHACRshort] = ACTIONS(12323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12323), + [anon_sym_BSLASHacrlong] = ACTIONS(12323), + [anon_sym_BSLASHAcrlong] = ACTIONS(12323), + [anon_sym_BSLASHACRlong] = ACTIONS(12323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12323), + [anon_sym_BSLASHacrfull] = ACTIONS(12323), + [anon_sym_BSLASHAcrfull] = ACTIONS(12323), + [anon_sym_BSLASHACRfull] = ACTIONS(12323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12323), + [anon_sym_BSLASHacs] = ACTIONS(12323), + [anon_sym_BSLASHAcs] = ACTIONS(12323), + [anon_sym_BSLASHacsp] = ACTIONS(12323), + [anon_sym_BSLASHAcsp] = ACTIONS(12323), + [anon_sym_BSLASHacl] = ACTIONS(12323), + [anon_sym_BSLASHAcl] = ACTIONS(12323), + [anon_sym_BSLASHaclp] = ACTIONS(12323), + [anon_sym_BSLASHAclp] = ACTIONS(12323), + [anon_sym_BSLASHacf] = ACTIONS(12323), + [anon_sym_BSLASHAcf] = ACTIONS(12323), + [anon_sym_BSLASHacfp] = ACTIONS(12323), + [anon_sym_BSLASHAcfp] = ACTIONS(12323), + [anon_sym_BSLASHac] = ACTIONS(12323), + [anon_sym_BSLASHAc] = ACTIONS(12323), + [anon_sym_BSLASHacp] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12323), + [anon_sym_BSLASHcolor] = ACTIONS(12323), + [anon_sym_BSLASHcolorbox] = ACTIONS(12323), + [anon_sym_BSLASHtextcolor] = ACTIONS(12323), + [anon_sym_BSLASHpagecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12323), + }, + [1350] = { + [sym_generic_command_name] = ACTIONS(12437), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12437), + [aux_sym_subsubsection_token1] = ACTIONS(12437), + [aux_sym_paragraph_token1] = ACTIONS(12437), + [aux_sym_subparagraph_token1] = ACTIONS(12437), + [anon_sym_BSLASHitem] = ACTIONS(12437), + [anon_sym_LBRACK] = ACTIONS(12435), + [anon_sym_RBRACK] = ACTIONS(12435), + [anon_sym_LBRACE] = ACTIONS(12435), + [anon_sym_RBRACE] = ACTIONS(12435), + [anon_sym_LPAREN] = ACTIONS(12435), + [anon_sym_COMMA] = ACTIONS(12435), + [anon_sym_EQ] = ACTIONS(12435), + [sym_word] = ACTIONS(12435), + [sym_param] = ACTIONS(12435), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12435), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12435), + [anon_sym_DOLLAR] = ACTIONS(12437), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12435), + [anon_sym_BSLASHbegin] = ACTIONS(12437), + [anon_sym_BSLASHcaption] = ACTIONS(12437), + [anon_sym_BSLASHcite] = ACTIONS(12437), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCite] = ACTIONS(12437), + [anon_sym_BSLASHnocite] = ACTIONS(12437), + [anon_sym_BSLASHcitet] = ACTIONS(12437), + [anon_sym_BSLASHcitep] = ACTIONS(12437), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteauthor] = ACTIONS(12437), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12437), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitetitle] = ACTIONS(12437), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteyear] = ACTIONS(12437), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitedate] = ACTIONS(12437), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteurl] = ACTIONS(12437), + [anon_sym_BSLASHfullcite] = ACTIONS(12437), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12437), + [anon_sym_BSLASHcitealt] = ACTIONS(12437), + [anon_sym_BSLASHcitealp] = ACTIONS(12437), + [anon_sym_BSLASHcitetext] = ACTIONS(12437), + [anon_sym_BSLASHparencite] = ACTIONS(12437), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHParencite] = ACTIONS(12437), + [anon_sym_BSLASHfootcite] = ACTIONS(12437), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12437), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12437), + [anon_sym_BSLASHtextcite] = ACTIONS(12437), + [anon_sym_BSLASHTextcite] = ACTIONS(12437), + [anon_sym_BSLASHsmartcite] = ACTIONS(12437), + [anon_sym_BSLASHSmartcite] = ACTIONS(12437), + [anon_sym_BSLASHsupercite] = ACTIONS(12437), + [anon_sym_BSLASHautocite] = ACTIONS(12437), + [anon_sym_BSLASHAutocite] = ACTIONS(12437), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHvolcite] = ACTIONS(12437), + [anon_sym_BSLASHVolcite] = ACTIONS(12437), + [anon_sym_BSLASHpvolcite] = ACTIONS(12437), + [anon_sym_BSLASHPvolcite] = ACTIONS(12437), + [anon_sym_BSLASHfvolcite] = ACTIONS(12437), + [anon_sym_BSLASHftvolcite] = ACTIONS(12437), + [anon_sym_BSLASHsvolcite] = ACTIONS(12437), + [anon_sym_BSLASHSvolcite] = ACTIONS(12437), + [anon_sym_BSLASHtvolcite] = ACTIONS(12437), + [anon_sym_BSLASHTvolcite] = ACTIONS(12437), + [anon_sym_BSLASHavolcite] = ACTIONS(12437), + [anon_sym_BSLASHAvolcite] = ACTIONS(12437), + [anon_sym_BSLASHnotecite] = ACTIONS(12437), + [anon_sym_BSLASHpnotecite] = ACTIONS(12437), + [anon_sym_BSLASHPnotecite] = ACTIONS(12437), + [anon_sym_BSLASHfnotecite] = ACTIONS(12437), + [anon_sym_BSLASHusepackage] = ACTIONS(12437), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12437), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12437), + [anon_sym_BSLASHinclude] = ACTIONS(12437), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12437), + [anon_sym_BSLASHinput] = ACTIONS(12437), + [anon_sym_BSLASHsubfile] = ACTIONS(12437), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12437), + [anon_sym_BSLASHbibliography] = ACTIONS(12437), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12437), + [anon_sym_BSLASHincludesvg] = ACTIONS(12437), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12437), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12437), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12437), + [anon_sym_BSLASHimport] = ACTIONS(12437), + [anon_sym_BSLASHsubimport] = ACTIONS(12437), + [anon_sym_BSLASHinputfrom] = ACTIONS(12437), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12437), + [anon_sym_BSLASHincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHlabel] = ACTIONS(12437), + [anon_sym_BSLASHref] = ACTIONS(12437), + [anon_sym_BSLASHvref] = ACTIONS(12437), + [anon_sym_BSLASHVref] = ACTIONS(12437), + [anon_sym_BSLASHautoref] = ACTIONS(12437), + [anon_sym_BSLASHpageref] = ACTIONS(12437), + [anon_sym_BSLASHcref] = ACTIONS(12437), + [anon_sym_BSLASHCref] = ACTIONS(12437), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnameCref] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHlabelcref] = ACTIONS(12437), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12437), + [anon_sym_BSLASHeqref] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange] = ACTIONS(12437), + [anon_sym_BSLASHCrefrange] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewlabel] = ACTIONS(12437), + [anon_sym_BSLASHnewcommand] = ACTIONS(12437), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12437), + [anon_sym_BSLASHgls] = ACTIONS(12437), + [anon_sym_BSLASHGls] = ACTIONS(12437), + [anon_sym_BSLASHGLS] = ACTIONS(12437), + [anon_sym_BSLASHglspl] = ACTIONS(12437), + [anon_sym_BSLASHGlspl] = ACTIONS(12437), + [anon_sym_BSLASHGLSpl] = ACTIONS(12437), + [anon_sym_BSLASHglsdisp] = ACTIONS(12437), + [anon_sym_BSLASHglslink] = ACTIONS(12437), + [anon_sym_BSLASHglstext] = ACTIONS(12437), + [anon_sym_BSLASHGlstext] = ACTIONS(12437), + [anon_sym_BSLASHGLStext] = ACTIONS(12437), + [anon_sym_BSLASHglsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12437), + [anon_sym_BSLASHglsplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSplural] = ACTIONS(12437), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHglsname] = ACTIONS(12437), + [anon_sym_BSLASHGlsname] = ACTIONS(12437), + [anon_sym_BSLASHGLSname] = ACTIONS(12437), + [anon_sym_BSLASHglssymbol] = ACTIONS(12437), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12437), + [anon_sym_BSLASHglsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12437), + [anon_sym_BSLASHglsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12437), + [anon_sym_BSLASHglsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12437), + [anon_sym_BSLASHglsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12437), + [anon_sym_BSLASHglsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12437), + [anon_sym_BSLASHnewacronym] = ACTIONS(12437), + [anon_sym_BSLASHacrshort] = ACTIONS(12437), + [anon_sym_BSLASHAcrshort] = ACTIONS(12437), + [anon_sym_BSLASHACRshort] = ACTIONS(12437), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12437), + [anon_sym_BSLASHacrlong] = ACTIONS(12437), + [anon_sym_BSLASHAcrlong] = ACTIONS(12437), + [anon_sym_BSLASHACRlong] = ACTIONS(12437), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12437), + [anon_sym_BSLASHacrfull] = ACTIONS(12437), + [anon_sym_BSLASHAcrfull] = ACTIONS(12437), + [anon_sym_BSLASHACRfull] = ACTIONS(12437), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12437), + [anon_sym_BSLASHacs] = ACTIONS(12437), + [anon_sym_BSLASHAcs] = ACTIONS(12437), + [anon_sym_BSLASHacsp] = ACTIONS(12437), + [anon_sym_BSLASHAcsp] = ACTIONS(12437), + [anon_sym_BSLASHacl] = ACTIONS(12437), + [anon_sym_BSLASHAcl] = ACTIONS(12437), + [anon_sym_BSLASHaclp] = ACTIONS(12437), + [anon_sym_BSLASHAclp] = ACTIONS(12437), + [anon_sym_BSLASHacf] = ACTIONS(12437), + [anon_sym_BSLASHAcf] = ACTIONS(12437), + [anon_sym_BSLASHacfp] = ACTIONS(12437), + [anon_sym_BSLASHAcfp] = ACTIONS(12437), + [anon_sym_BSLASHac] = ACTIONS(12437), + [anon_sym_BSLASHAc] = ACTIONS(12437), + [anon_sym_BSLASHacp] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12437), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12437), + [anon_sym_BSLASHcolor] = ACTIONS(12437), + [anon_sym_BSLASHcolorbox] = ACTIONS(12437), + [anon_sym_BSLASHtextcolor] = ACTIONS(12437), + [anon_sym_BSLASHpagecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12437), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12437), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12437), + }, + [1351] = { + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(111), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [1352] = { + [sym_generic_command_name] = ACTIONS(12389), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12389), + [aux_sym_subsubsection_token1] = ACTIONS(12389), + [aux_sym_paragraph_token1] = ACTIONS(12389), + [aux_sym_subparagraph_token1] = ACTIONS(12389), + [anon_sym_BSLASHitem] = ACTIONS(12389), + [anon_sym_LBRACK] = ACTIONS(12387), + [anon_sym_RBRACK] = ACTIONS(12387), + [anon_sym_LBRACE] = ACTIONS(12387), + [anon_sym_RBRACE] = ACTIONS(12387), + [anon_sym_LPAREN] = ACTIONS(12387), + [anon_sym_COMMA] = ACTIONS(12387), + [anon_sym_EQ] = ACTIONS(12387), + [sym_word] = ACTIONS(12387), + [sym_param] = ACTIONS(12387), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12387), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12387), + [anon_sym_DOLLAR] = ACTIONS(12389), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12387), + [anon_sym_BSLASHbegin] = ACTIONS(12389), + [anon_sym_BSLASHcaption] = ACTIONS(12389), + [anon_sym_BSLASHcite] = ACTIONS(12389), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCite] = ACTIONS(12389), + [anon_sym_BSLASHnocite] = ACTIONS(12389), + [anon_sym_BSLASHcitet] = ACTIONS(12389), + [anon_sym_BSLASHcitep] = ACTIONS(12389), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteauthor] = ACTIONS(12389), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12389), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitetitle] = ACTIONS(12389), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteyear] = ACTIONS(12389), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitedate] = ACTIONS(12389), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteurl] = ACTIONS(12389), + [anon_sym_BSLASHfullcite] = ACTIONS(12389), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12389), + [anon_sym_BSLASHcitealt] = ACTIONS(12389), + [anon_sym_BSLASHcitealp] = ACTIONS(12389), + [anon_sym_BSLASHcitetext] = ACTIONS(12389), + [anon_sym_BSLASHparencite] = ACTIONS(12389), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHParencite] = ACTIONS(12389), + [anon_sym_BSLASHfootcite] = ACTIONS(12389), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12389), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12389), + [anon_sym_BSLASHtextcite] = ACTIONS(12389), + [anon_sym_BSLASHTextcite] = ACTIONS(12389), + [anon_sym_BSLASHsmartcite] = ACTIONS(12389), + [anon_sym_BSLASHSmartcite] = ACTIONS(12389), + [anon_sym_BSLASHsupercite] = ACTIONS(12389), + [anon_sym_BSLASHautocite] = ACTIONS(12389), + [anon_sym_BSLASHAutocite] = ACTIONS(12389), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHvolcite] = ACTIONS(12389), + [anon_sym_BSLASHVolcite] = ACTIONS(12389), + [anon_sym_BSLASHpvolcite] = ACTIONS(12389), + [anon_sym_BSLASHPvolcite] = ACTIONS(12389), + [anon_sym_BSLASHfvolcite] = ACTIONS(12389), + [anon_sym_BSLASHftvolcite] = ACTIONS(12389), + [anon_sym_BSLASHsvolcite] = ACTIONS(12389), + [anon_sym_BSLASHSvolcite] = ACTIONS(12389), + [anon_sym_BSLASHtvolcite] = ACTIONS(12389), + [anon_sym_BSLASHTvolcite] = ACTIONS(12389), + [anon_sym_BSLASHavolcite] = ACTIONS(12389), + [anon_sym_BSLASHAvolcite] = ACTIONS(12389), + [anon_sym_BSLASHnotecite] = ACTIONS(12389), + [anon_sym_BSLASHpnotecite] = ACTIONS(12389), + [anon_sym_BSLASHPnotecite] = ACTIONS(12389), + [anon_sym_BSLASHfnotecite] = ACTIONS(12389), + [anon_sym_BSLASHusepackage] = ACTIONS(12389), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12389), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12389), + [anon_sym_BSLASHinclude] = ACTIONS(12389), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12389), + [anon_sym_BSLASHinput] = ACTIONS(12389), + [anon_sym_BSLASHsubfile] = ACTIONS(12389), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12389), + [anon_sym_BSLASHbibliography] = ACTIONS(12389), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12389), + [anon_sym_BSLASHincludesvg] = ACTIONS(12389), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12389), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12389), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12389), + [anon_sym_BSLASHimport] = ACTIONS(12389), + [anon_sym_BSLASHsubimport] = ACTIONS(12389), + [anon_sym_BSLASHinputfrom] = ACTIONS(12389), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12389), + [anon_sym_BSLASHincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHlabel] = ACTIONS(12389), + [anon_sym_BSLASHref] = ACTIONS(12389), + [anon_sym_BSLASHvref] = ACTIONS(12389), + [anon_sym_BSLASHVref] = ACTIONS(12389), + [anon_sym_BSLASHautoref] = ACTIONS(12389), + [anon_sym_BSLASHpageref] = ACTIONS(12389), + [anon_sym_BSLASHcref] = ACTIONS(12389), + [anon_sym_BSLASHCref] = ACTIONS(12389), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnameCref] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHlabelcref] = ACTIONS(12389), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12389), + [anon_sym_BSLASHeqref] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange] = ACTIONS(12389), + [anon_sym_BSLASHCrefrange] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewlabel] = ACTIONS(12389), + [anon_sym_BSLASHnewcommand] = ACTIONS(12389), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12389), + [anon_sym_BSLASHgls] = ACTIONS(12389), + [anon_sym_BSLASHGls] = ACTIONS(12389), + [anon_sym_BSLASHGLS] = ACTIONS(12389), + [anon_sym_BSLASHglspl] = ACTIONS(12389), + [anon_sym_BSLASHGlspl] = ACTIONS(12389), + [anon_sym_BSLASHGLSpl] = ACTIONS(12389), + [anon_sym_BSLASHglsdisp] = ACTIONS(12389), + [anon_sym_BSLASHglslink] = ACTIONS(12389), + [anon_sym_BSLASHglstext] = ACTIONS(12389), + [anon_sym_BSLASHGlstext] = ACTIONS(12389), + [anon_sym_BSLASHGLStext] = ACTIONS(12389), + [anon_sym_BSLASHglsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12389), + [anon_sym_BSLASHglsplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSplural] = ACTIONS(12389), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHglsname] = ACTIONS(12389), + [anon_sym_BSLASHGlsname] = ACTIONS(12389), + [anon_sym_BSLASHGLSname] = ACTIONS(12389), + [anon_sym_BSLASHglssymbol] = ACTIONS(12389), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12389), + [anon_sym_BSLASHglsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12389), + [anon_sym_BSLASHglsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12389), + [anon_sym_BSLASHglsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12389), + [anon_sym_BSLASHglsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12389), + [anon_sym_BSLASHglsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12389), + [anon_sym_BSLASHnewacronym] = ACTIONS(12389), + [anon_sym_BSLASHacrshort] = ACTIONS(12389), + [anon_sym_BSLASHAcrshort] = ACTIONS(12389), + [anon_sym_BSLASHACRshort] = ACTIONS(12389), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12389), + [anon_sym_BSLASHacrlong] = ACTIONS(12389), + [anon_sym_BSLASHAcrlong] = ACTIONS(12389), + [anon_sym_BSLASHACRlong] = ACTIONS(12389), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12389), + [anon_sym_BSLASHacrfull] = ACTIONS(12389), + [anon_sym_BSLASHAcrfull] = ACTIONS(12389), + [anon_sym_BSLASHACRfull] = ACTIONS(12389), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12389), + [anon_sym_BSLASHacs] = ACTIONS(12389), + [anon_sym_BSLASHAcs] = ACTIONS(12389), + [anon_sym_BSLASHacsp] = ACTIONS(12389), + [anon_sym_BSLASHAcsp] = ACTIONS(12389), + [anon_sym_BSLASHacl] = ACTIONS(12389), + [anon_sym_BSLASHAcl] = ACTIONS(12389), + [anon_sym_BSLASHaclp] = ACTIONS(12389), + [anon_sym_BSLASHAclp] = ACTIONS(12389), + [anon_sym_BSLASHacf] = ACTIONS(12389), + [anon_sym_BSLASHAcf] = ACTIONS(12389), + [anon_sym_BSLASHacfp] = ACTIONS(12389), + [anon_sym_BSLASHAcfp] = ACTIONS(12389), + [anon_sym_BSLASHac] = ACTIONS(12389), + [anon_sym_BSLASHAc] = ACTIONS(12389), + [anon_sym_BSLASHacp] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12389), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12389), + [anon_sym_BSLASHcolor] = ACTIONS(12389), + [anon_sym_BSLASHcolorbox] = ACTIONS(12389), + [anon_sym_BSLASHtextcolor] = ACTIONS(12389), + [anon_sym_BSLASHpagecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12389), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12389), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12389), + }, + [1353] = { + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(117), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [1354] = { + [sym_generic_command_name] = ACTIONS(12485), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12485), + [aux_sym_subsubsection_token1] = ACTIONS(12485), + [aux_sym_paragraph_token1] = ACTIONS(12485), + [aux_sym_subparagraph_token1] = ACTIONS(12485), + [anon_sym_BSLASHitem] = ACTIONS(12485), + [anon_sym_LBRACK] = ACTIONS(12483), + [anon_sym_RBRACK] = ACTIONS(12483), + [anon_sym_LBRACE] = ACTIONS(12483), + [anon_sym_RBRACE] = ACTIONS(12483), + [anon_sym_LPAREN] = ACTIONS(12483), + [anon_sym_COMMA] = ACTIONS(12483), + [anon_sym_EQ] = ACTIONS(12483), + [sym_word] = ACTIONS(12483), + [sym_param] = ACTIONS(12483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12483), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12483), + [anon_sym_DOLLAR] = ACTIONS(12485), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12483), + [anon_sym_BSLASHbegin] = ACTIONS(12485), + [anon_sym_BSLASHcaption] = ACTIONS(12485), + [anon_sym_BSLASHcite] = ACTIONS(12485), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCite] = ACTIONS(12485), + [anon_sym_BSLASHnocite] = ACTIONS(12485), + [anon_sym_BSLASHcitet] = ACTIONS(12485), + [anon_sym_BSLASHcitep] = ACTIONS(12485), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteauthor] = ACTIONS(12485), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12485), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitetitle] = ACTIONS(12485), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteyear] = ACTIONS(12485), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitedate] = ACTIONS(12485), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteurl] = ACTIONS(12485), + [anon_sym_BSLASHfullcite] = ACTIONS(12485), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12485), + [anon_sym_BSLASHcitealt] = ACTIONS(12485), + [anon_sym_BSLASHcitealp] = ACTIONS(12485), + [anon_sym_BSLASHcitetext] = ACTIONS(12485), + [anon_sym_BSLASHparencite] = ACTIONS(12485), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHParencite] = ACTIONS(12485), + [anon_sym_BSLASHfootcite] = ACTIONS(12485), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12485), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12485), + [anon_sym_BSLASHtextcite] = ACTIONS(12485), + [anon_sym_BSLASHTextcite] = ACTIONS(12485), + [anon_sym_BSLASHsmartcite] = ACTIONS(12485), + [anon_sym_BSLASHSmartcite] = ACTIONS(12485), + [anon_sym_BSLASHsupercite] = ACTIONS(12485), + [anon_sym_BSLASHautocite] = ACTIONS(12485), + [anon_sym_BSLASHAutocite] = ACTIONS(12485), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHvolcite] = ACTIONS(12485), + [anon_sym_BSLASHVolcite] = ACTIONS(12485), + [anon_sym_BSLASHpvolcite] = ACTIONS(12485), + [anon_sym_BSLASHPvolcite] = ACTIONS(12485), + [anon_sym_BSLASHfvolcite] = ACTIONS(12485), + [anon_sym_BSLASHftvolcite] = ACTIONS(12485), + [anon_sym_BSLASHsvolcite] = ACTIONS(12485), + [anon_sym_BSLASHSvolcite] = ACTIONS(12485), + [anon_sym_BSLASHtvolcite] = ACTIONS(12485), + [anon_sym_BSLASHTvolcite] = ACTIONS(12485), + [anon_sym_BSLASHavolcite] = ACTIONS(12485), + [anon_sym_BSLASHAvolcite] = ACTIONS(12485), + [anon_sym_BSLASHnotecite] = ACTIONS(12485), + [anon_sym_BSLASHpnotecite] = ACTIONS(12485), + [anon_sym_BSLASHPnotecite] = ACTIONS(12485), + [anon_sym_BSLASHfnotecite] = ACTIONS(12485), + [anon_sym_BSLASHusepackage] = ACTIONS(12485), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12485), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12485), + [anon_sym_BSLASHinclude] = ACTIONS(12485), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12485), + [anon_sym_BSLASHinput] = ACTIONS(12485), + [anon_sym_BSLASHsubfile] = ACTIONS(12485), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12485), + [anon_sym_BSLASHbibliography] = ACTIONS(12485), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12485), + [anon_sym_BSLASHincludesvg] = ACTIONS(12485), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12485), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12485), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12485), + [anon_sym_BSLASHimport] = ACTIONS(12485), + [anon_sym_BSLASHsubimport] = ACTIONS(12485), + [anon_sym_BSLASHinputfrom] = ACTIONS(12485), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12485), + [anon_sym_BSLASHincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHlabel] = ACTIONS(12485), + [anon_sym_BSLASHref] = ACTIONS(12485), + [anon_sym_BSLASHvref] = ACTIONS(12485), + [anon_sym_BSLASHVref] = ACTIONS(12485), + [anon_sym_BSLASHautoref] = ACTIONS(12485), + [anon_sym_BSLASHpageref] = ACTIONS(12485), + [anon_sym_BSLASHcref] = ACTIONS(12485), + [anon_sym_BSLASHCref] = ACTIONS(12485), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnameCref] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHlabelcref] = ACTIONS(12485), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12485), + [anon_sym_BSLASHeqref] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange] = ACTIONS(12485), + [anon_sym_BSLASHCrefrange] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewlabel] = ACTIONS(12485), + [anon_sym_BSLASHnewcommand] = ACTIONS(12485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12485), + [anon_sym_BSLASHgls] = ACTIONS(12485), + [anon_sym_BSLASHGls] = ACTIONS(12485), + [anon_sym_BSLASHGLS] = ACTIONS(12485), + [anon_sym_BSLASHglspl] = ACTIONS(12485), + [anon_sym_BSLASHGlspl] = ACTIONS(12485), + [anon_sym_BSLASHGLSpl] = ACTIONS(12485), + [anon_sym_BSLASHglsdisp] = ACTIONS(12485), + [anon_sym_BSLASHglslink] = ACTIONS(12485), + [anon_sym_BSLASHglstext] = ACTIONS(12485), + [anon_sym_BSLASHGlstext] = ACTIONS(12485), + [anon_sym_BSLASHGLStext] = ACTIONS(12485), + [anon_sym_BSLASHglsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12485), + [anon_sym_BSLASHglsplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSplural] = ACTIONS(12485), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHglsname] = ACTIONS(12485), + [anon_sym_BSLASHGlsname] = ACTIONS(12485), + [anon_sym_BSLASHGLSname] = ACTIONS(12485), + [anon_sym_BSLASHglssymbol] = ACTIONS(12485), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12485), + [anon_sym_BSLASHglsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12485), + [anon_sym_BSLASHglsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12485), + [anon_sym_BSLASHglsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12485), + [anon_sym_BSLASHglsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12485), + [anon_sym_BSLASHglsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12485), + [anon_sym_BSLASHnewacronym] = ACTIONS(12485), + [anon_sym_BSLASHacrshort] = ACTIONS(12485), + [anon_sym_BSLASHAcrshort] = ACTIONS(12485), + [anon_sym_BSLASHACRshort] = ACTIONS(12485), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12485), + [anon_sym_BSLASHacrlong] = ACTIONS(12485), + [anon_sym_BSLASHAcrlong] = ACTIONS(12485), + [anon_sym_BSLASHACRlong] = ACTIONS(12485), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12485), + [anon_sym_BSLASHacrfull] = ACTIONS(12485), + [anon_sym_BSLASHAcrfull] = ACTIONS(12485), + [anon_sym_BSLASHACRfull] = ACTIONS(12485), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12485), + [anon_sym_BSLASHacs] = ACTIONS(12485), + [anon_sym_BSLASHAcs] = ACTIONS(12485), + [anon_sym_BSLASHacsp] = ACTIONS(12485), + [anon_sym_BSLASHAcsp] = ACTIONS(12485), + [anon_sym_BSLASHacl] = ACTIONS(12485), + [anon_sym_BSLASHAcl] = ACTIONS(12485), + [anon_sym_BSLASHaclp] = ACTIONS(12485), + [anon_sym_BSLASHAclp] = ACTIONS(12485), + [anon_sym_BSLASHacf] = ACTIONS(12485), + [anon_sym_BSLASHAcf] = ACTIONS(12485), + [anon_sym_BSLASHacfp] = ACTIONS(12485), + [anon_sym_BSLASHAcfp] = ACTIONS(12485), + [anon_sym_BSLASHac] = ACTIONS(12485), + [anon_sym_BSLASHAc] = ACTIONS(12485), + [anon_sym_BSLASHacp] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12485), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12485), + [anon_sym_BSLASHcolor] = ACTIONS(12485), + [anon_sym_BSLASHcolorbox] = ACTIONS(12485), + [anon_sym_BSLASHtextcolor] = ACTIONS(12485), + [anon_sym_BSLASHpagecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12485), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12485), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12485), + }, + [1355] = { + [sym_generic_command_name] = ACTIONS(12385), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12385), + [aux_sym_subsubsection_token1] = ACTIONS(12385), + [aux_sym_paragraph_token1] = ACTIONS(12385), + [aux_sym_subparagraph_token1] = ACTIONS(12385), + [anon_sym_BSLASHitem] = ACTIONS(12385), + [anon_sym_LBRACK] = ACTIONS(12383), + [anon_sym_RBRACK] = ACTIONS(12383), + [anon_sym_LBRACE] = ACTIONS(12383), + [anon_sym_RBRACE] = ACTIONS(12383), + [anon_sym_LPAREN] = ACTIONS(12383), + [anon_sym_COMMA] = ACTIONS(12383), + [anon_sym_EQ] = ACTIONS(12383), + [sym_word] = ACTIONS(12383), + [sym_param] = ACTIONS(12383), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12383), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12383), + [anon_sym_DOLLAR] = ACTIONS(12385), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12383), + [anon_sym_BSLASHbegin] = ACTIONS(12385), + [anon_sym_BSLASHcaption] = ACTIONS(12385), + [anon_sym_BSLASHcite] = ACTIONS(12385), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCite] = ACTIONS(12385), + [anon_sym_BSLASHnocite] = ACTIONS(12385), + [anon_sym_BSLASHcitet] = ACTIONS(12385), + [anon_sym_BSLASHcitep] = ACTIONS(12385), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteauthor] = ACTIONS(12385), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12385), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitetitle] = ACTIONS(12385), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteyear] = ACTIONS(12385), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitedate] = ACTIONS(12385), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteurl] = ACTIONS(12385), + [anon_sym_BSLASHfullcite] = ACTIONS(12385), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12385), + [anon_sym_BSLASHcitealt] = ACTIONS(12385), + [anon_sym_BSLASHcitealp] = ACTIONS(12385), + [anon_sym_BSLASHcitetext] = ACTIONS(12385), + [anon_sym_BSLASHparencite] = ACTIONS(12385), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHParencite] = ACTIONS(12385), + [anon_sym_BSLASHfootcite] = ACTIONS(12385), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12385), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12385), + [anon_sym_BSLASHtextcite] = ACTIONS(12385), + [anon_sym_BSLASHTextcite] = ACTIONS(12385), + [anon_sym_BSLASHsmartcite] = ACTIONS(12385), + [anon_sym_BSLASHSmartcite] = ACTIONS(12385), + [anon_sym_BSLASHsupercite] = ACTIONS(12385), + [anon_sym_BSLASHautocite] = ACTIONS(12385), + [anon_sym_BSLASHAutocite] = ACTIONS(12385), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHvolcite] = ACTIONS(12385), + [anon_sym_BSLASHVolcite] = ACTIONS(12385), + [anon_sym_BSLASHpvolcite] = ACTIONS(12385), + [anon_sym_BSLASHPvolcite] = ACTIONS(12385), + [anon_sym_BSLASHfvolcite] = ACTIONS(12385), + [anon_sym_BSLASHftvolcite] = ACTIONS(12385), + [anon_sym_BSLASHsvolcite] = ACTIONS(12385), + [anon_sym_BSLASHSvolcite] = ACTIONS(12385), + [anon_sym_BSLASHtvolcite] = ACTIONS(12385), + [anon_sym_BSLASHTvolcite] = ACTIONS(12385), + [anon_sym_BSLASHavolcite] = ACTIONS(12385), + [anon_sym_BSLASHAvolcite] = ACTIONS(12385), + [anon_sym_BSLASHnotecite] = ACTIONS(12385), + [anon_sym_BSLASHpnotecite] = ACTIONS(12385), + [anon_sym_BSLASHPnotecite] = ACTIONS(12385), + [anon_sym_BSLASHfnotecite] = ACTIONS(12385), + [anon_sym_BSLASHusepackage] = ACTIONS(12385), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12385), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12385), + [anon_sym_BSLASHinclude] = ACTIONS(12385), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12385), + [anon_sym_BSLASHinput] = ACTIONS(12385), + [anon_sym_BSLASHsubfile] = ACTIONS(12385), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12385), + [anon_sym_BSLASHbibliography] = ACTIONS(12385), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12385), + [anon_sym_BSLASHincludesvg] = ACTIONS(12385), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12385), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12385), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12385), + [anon_sym_BSLASHimport] = ACTIONS(12385), + [anon_sym_BSLASHsubimport] = ACTIONS(12385), + [anon_sym_BSLASHinputfrom] = ACTIONS(12385), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12385), + [anon_sym_BSLASHincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHlabel] = ACTIONS(12385), + [anon_sym_BSLASHref] = ACTIONS(12385), + [anon_sym_BSLASHvref] = ACTIONS(12385), + [anon_sym_BSLASHVref] = ACTIONS(12385), + [anon_sym_BSLASHautoref] = ACTIONS(12385), + [anon_sym_BSLASHpageref] = ACTIONS(12385), + [anon_sym_BSLASHcref] = ACTIONS(12385), + [anon_sym_BSLASHCref] = ACTIONS(12385), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnameCref] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHlabelcref] = ACTIONS(12385), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12385), + [anon_sym_BSLASHeqref] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange] = ACTIONS(12385), + [anon_sym_BSLASHCrefrange] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewlabel] = ACTIONS(12385), + [anon_sym_BSLASHnewcommand] = ACTIONS(12385), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12385), + [anon_sym_BSLASHgls] = ACTIONS(12385), + [anon_sym_BSLASHGls] = ACTIONS(12385), + [anon_sym_BSLASHGLS] = ACTIONS(12385), + [anon_sym_BSLASHglspl] = ACTIONS(12385), + [anon_sym_BSLASHGlspl] = ACTIONS(12385), + [anon_sym_BSLASHGLSpl] = ACTIONS(12385), + [anon_sym_BSLASHglsdisp] = ACTIONS(12385), + [anon_sym_BSLASHglslink] = ACTIONS(12385), + [anon_sym_BSLASHglstext] = ACTIONS(12385), + [anon_sym_BSLASHGlstext] = ACTIONS(12385), + [anon_sym_BSLASHGLStext] = ACTIONS(12385), + [anon_sym_BSLASHglsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12385), + [anon_sym_BSLASHglsplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSplural] = ACTIONS(12385), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHglsname] = ACTIONS(12385), + [anon_sym_BSLASHGlsname] = ACTIONS(12385), + [anon_sym_BSLASHGLSname] = ACTIONS(12385), + [anon_sym_BSLASHglssymbol] = ACTIONS(12385), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12385), + [anon_sym_BSLASHglsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12385), + [anon_sym_BSLASHglsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12385), + [anon_sym_BSLASHglsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12385), + [anon_sym_BSLASHglsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12385), + [anon_sym_BSLASHglsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12385), + [anon_sym_BSLASHnewacronym] = ACTIONS(12385), + [anon_sym_BSLASHacrshort] = ACTIONS(12385), + [anon_sym_BSLASHAcrshort] = ACTIONS(12385), + [anon_sym_BSLASHACRshort] = ACTIONS(12385), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12385), + [anon_sym_BSLASHacrlong] = ACTIONS(12385), + [anon_sym_BSLASHAcrlong] = ACTIONS(12385), + [anon_sym_BSLASHACRlong] = ACTIONS(12385), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12385), + [anon_sym_BSLASHacrfull] = ACTIONS(12385), + [anon_sym_BSLASHAcrfull] = ACTIONS(12385), + [anon_sym_BSLASHACRfull] = ACTIONS(12385), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12385), + [anon_sym_BSLASHacs] = ACTIONS(12385), + [anon_sym_BSLASHAcs] = ACTIONS(12385), + [anon_sym_BSLASHacsp] = ACTIONS(12385), + [anon_sym_BSLASHAcsp] = ACTIONS(12385), + [anon_sym_BSLASHacl] = ACTIONS(12385), + [anon_sym_BSLASHAcl] = ACTIONS(12385), + [anon_sym_BSLASHaclp] = ACTIONS(12385), + [anon_sym_BSLASHAclp] = ACTIONS(12385), + [anon_sym_BSLASHacf] = ACTIONS(12385), + [anon_sym_BSLASHAcf] = ACTIONS(12385), + [anon_sym_BSLASHacfp] = ACTIONS(12385), + [anon_sym_BSLASHAcfp] = ACTIONS(12385), + [anon_sym_BSLASHac] = ACTIONS(12385), + [anon_sym_BSLASHAc] = ACTIONS(12385), + [anon_sym_BSLASHacp] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12385), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12385), + [anon_sym_BSLASHcolor] = ACTIONS(12385), + [anon_sym_BSLASHcolorbox] = ACTIONS(12385), + [anon_sym_BSLASHtextcolor] = ACTIONS(12385), + [anon_sym_BSLASHpagecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12385), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12385), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12385), + }, + [1356] = { + [sym_generic_command_name] = ACTIONS(12124), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12124), + [aux_sym_subsubsection_token1] = ACTIONS(12124), + [aux_sym_paragraph_token1] = ACTIONS(12124), + [aux_sym_subparagraph_token1] = ACTIONS(12124), + [anon_sym_BSLASHitem] = ACTIONS(12124), + [anon_sym_LBRACK] = ACTIONS(12122), + [anon_sym_RBRACK] = ACTIONS(12122), + [anon_sym_LBRACE] = ACTIONS(12122), + [anon_sym_RBRACE] = ACTIONS(12122), + [anon_sym_LPAREN] = ACTIONS(12122), + [anon_sym_COMMA] = ACTIONS(12122), + [anon_sym_EQ] = ACTIONS(12122), + [sym_word] = ACTIONS(12122), + [sym_param] = ACTIONS(12122), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12122), + [anon_sym_DOLLAR] = ACTIONS(12124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12122), + [anon_sym_BSLASHbegin] = ACTIONS(12124), + [anon_sym_BSLASHcaption] = ACTIONS(12124), + [anon_sym_BSLASHcite] = ACTIONS(12124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCite] = ACTIONS(12124), + [anon_sym_BSLASHnocite] = ACTIONS(12124), + [anon_sym_BSLASHcitet] = ACTIONS(12124), + [anon_sym_BSLASHcitep] = ACTIONS(12124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteauthor] = ACTIONS(12124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitetitle] = ACTIONS(12124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteyear] = ACTIONS(12124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitedate] = ACTIONS(12124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteurl] = ACTIONS(12124), + [anon_sym_BSLASHfullcite] = ACTIONS(12124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12124), + [anon_sym_BSLASHcitealt] = ACTIONS(12124), + [anon_sym_BSLASHcitealp] = ACTIONS(12124), + [anon_sym_BSLASHcitetext] = ACTIONS(12124), + [anon_sym_BSLASHparencite] = ACTIONS(12124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHParencite] = ACTIONS(12124), + [anon_sym_BSLASHfootcite] = ACTIONS(12124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12124), + [anon_sym_BSLASHtextcite] = ACTIONS(12124), + [anon_sym_BSLASHTextcite] = ACTIONS(12124), + [anon_sym_BSLASHsmartcite] = ACTIONS(12124), + [anon_sym_BSLASHSmartcite] = ACTIONS(12124), + [anon_sym_BSLASHsupercite] = ACTIONS(12124), + [anon_sym_BSLASHautocite] = ACTIONS(12124), + [anon_sym_BSLASHAutocite] = ACTIONS(12124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHvolcite] = ACTIONS(12124), + [anon_sym_BSLASHVolcite] = ACTIONS(12124), + [anon_sym_BSLASHpvolcite] = ACTIONS(12124), + [anon_sym_BSLASHPvolcite] = ACTIONS(12124), + [anon_sym_BSLASHfvolcite] = ACTIONS(12124), + [anon_sym_BSLASHftvolcite] = ACTIONS(12124), + [anon_sym_BSLASHsvolcite] = ACTIONS(12124), + [anon_sym_BSLASHSvolcite] = ACTIONS(12124), + [anon_sym_BSLASHtvolcite] = ACTIONS(12124), + [anon_sym_BSLASHTvolcite] = ACTIONS(12124), + [anon_sym_BSLASHavolcite] = ACTIONS(12124), + [anon_sym_BSLASHAvolcite] = ACTIONS(12124), + [anon_sym_BSLASHnotecite] = ACTIONS(12124), + [anon_sym_BSLASHpnotecite] = ACTIONS(12124), + [anon_sym_BSLASHPnotecite] = ACTIONS(12124), + [anon_sym_BSLASHfnotecite] = ACTIONS(12124), + [anon_sym_BSLASHusepackage] = ACTIONS(12124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12124), + [anon_sym_BSLASHinclude] = ACTIONS(12124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12124), + [anon_sym_BSLASHinput] = ACTIONS(12124), + [anon_sym_BSLASHsubfile] = ACTIONS(12124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12124), + [anon_sym_BSLASHbibliography] = ACTIONS(12124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12124), + [anon_sym_BSLASHincludesvg] = ACTIONS(12124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12124), + [anon_sym_BSLASHimport] = ACTIONS(12124), + [anon_sym_BSLASHsubimport] = ACTIONS(12124), + [anon_sym_BSLASHinputfrom] = ACTIONS(12124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12124), + [anon_sym_BSLASHincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHlabel] = ACTIONS(12124), + [anon_sym_BSLASHref] = ACTIONS(12124), + [anon_sym_BSLASHvref] = ACTIONS(12124), + [anon_sym_BSLASHVref] = ACTIONS(12124), + [anon_sym_BSLASHautoref] = ACTIONS(12124), + [anon_sym_BSLASHpageref] = ACTIONS(12124), + [anon_sym_BSLASHcref] = ACTIONS(12124), + [anon_sym_BSLASHCref] = ACTIONS(12124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnameCref] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHlabelcref] = ACTIONS(12124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12124), + [anon_sym_BSLASHeqref] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange] = ACTIONS(12124), + [anon_sym_BSLASHCrefrange] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewlabel] = ACTIONS(12124), + [anon_sym_BSLASHnewcommand] = ACTIONS(12124), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12124), + [anon_sym_BSLASHgls] = ACTIONS(12124), + [anon_sym_BSLASHGls] = ACTIONS(12124), + [anon_sym_BSLASHGLS] = ACTIONS(12124), + [anon_sym_BSLASHglspl] = ACTIONS(12124), + [anon_sym_BSLASHGlspl] = ACTIONS(12124), + [anon_sym_BSLASHGLSpl] = ACTIONS(12124), + [anon_sym_BSLASHglsdisp] = ACTIONS(12124), + [anon_sym_BSLASHglslink] = ACTIONS(12124), + [anon_sym_BSLASHglstext] = ACTIONS(12124), + [anon_sym_BSLASHGlstext] = ACTIONS(12124), + [anon_sym_BSLASHGLStext] = ACTIONS(12124), + [anon_sym_BSLASHglsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12124), + [anon_sym_BSLASHglsplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSplural] = ACTIONS(12124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHglsname] = ACTIONS(12124), + [anon_sym_BSLASHGlsname] = ACTIONS(12124), + [anon_sym_BSLASHGLSname] = ACTIONS(12124), + [anon_sym_BSLASHglssymbol] = ACTIONS(12124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12124), + [anon_sym_BSLASHglsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12124), + [anon_sym_BSLASHglsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12124), + [anon_sym_BSLASHglsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12124), + [anon_sym_BSLASHglsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12124), + [anon_sym_BSLASHglsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12124), + [anon_sym_BSLASHnewacronym] = ACTIONS(12124), + [anon_sym_BSLASHacrshort] = ACTIONS(12124), + [anon_sym_BSLASHAcrshort] = ACTIONS(12124), + [anon_sym_BSLASHACRshort] = ACTIONS(12124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12124), + [anon_sym_BSLASHacrlong] = ACTIONS(12124), + [anon_sym_BSLASHAcrlong] = ACTIONS(12124), + [anon_sym_BSLASHACRlong] = ACTIONS(12124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12124), + [anon_sym_BSLASHacrfull] = ACTIONS(12124), + [anon_sym_BSLASHAcrfull] = ACTIONS(12124), + [anon_sym_BSLASHACRfull] = ACTIONS(12124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12124), + [anon_sym_BSLASHacs] = ACTIONS(12124), + [anon_sym_BSLASHAcs] = ACTIONS(12124), + [anon_sym_BSLASHacsp] = ACTIONS(12124), + [anon_sym_BSLASHAcsp] = ACTIONS(12124), + [anon_sym_BSLASHacl] = ACTIONS(12124), + [anon_sym_BSLASHAcl] = ACTIONS(12124), + [anon_sym_BSLASHaclp] = ACTIONS(12124), + [anon_sym_BSLASHAclp] = ACTIONS(12124), + [anon_sym_BSLASHacf] = ACTIONS(12124), + [anon_sym_BSLASHAcf] = ACTIONS(12124), + [anon_sym_BSLASHacfp] = ACTIONS(12124), + [anon_sym_BSLASHAcfp] = ACTIONS(12124), + [anon_sym_BSLASHac] = ACTIONS(12124), + [anon_sym_BSLASHAc] = ACTIONS(12124), + [anon_sym_BSLASHacp] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12124), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12124), + [anon_sym_BSLASHcolor] = ACTIONS(12124), + [anon_sym_BSLASHcolorbox] = ACTIONS(12124), + [anon_sym_BSLASHtextcolor] = ACTIONS(12124), + [anon_sym_BSLASHpagecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12124), + }, + [1357] = { + [sym_generic_command_name] = ACTIONS(12327), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12327), + [aux_sym_subsubsection_token1] = ACTIONS(12327), + [aux_sym_paragraph_token1] = ACTIONS(12327), + [aux_sym_subparagraph_token1] = ACTIONS(12327), + [anon_sym_BSLASHitem] = ACTIONS(12327), + [anon_sym_LBRACK] = ACTIONS(12325), + [anon_sym_RBRACK] = ACTIONS(12325), + [anon_sym_LBRACE] = ACTIONS(12325), + [anon_sym_RBRACE] = ACTIONS(12325), + [anon_sym_LPAREN] = ACTIONS(12325), + [anon_sym_COMMA] = ACTIONS(12325), + [anon_sym_EQ] = ACTIONS(12325), + [sym_word] = ACTIONS(12325), + [sym_param] = ACTIONS(12325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12325), + [anon_sym_DOLLAR] = ACTIONS(12327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12325), + [anon_sym_BSLASHbegin] = ACTIONS(12327), + [anon_sym_BSLASHcaption] = ACTIONS(12327), + [anon_sym_BSLASHcite] = ACTIONS(12327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCite] = ACTIONS(12327), + [anon_sym_BSLASHnocite] = ACTIONS(12327), + [anon_sym_BSLASHcitet] = ACTIONS(12327), + [anon_sym_BSLASHcitep] = ACTIONS(12327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteauthor] = ACTIONS(12327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitetitle] = ACTIONS(12327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteyear] = ACTIONS(12327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitedate] = ACTIONS(12327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteurl] = ACTIONS(12327), + [anon_sym_BSLASHfullcite] = ACTIONS(12327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12327), + [anon_sym_BSLASHcitealt] = ACTIONS(12327), + [anon_sym_BSLASHcitealp] = ACTIONS(12327), + [anon_sym_BSLASHcitetext] = ACTIONS(12327), + [anon_sym_BSLASHparencite] = ACTIONS(12327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHParencite] = ACTIONS(12327), + [anon_sym_BSLASHfootcite] = ACTIONS(12327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12327), + [anon_sym_BSLASHtextcite] = ACTIONS(12327), + [anon_sym_BSLASHTextcite] = ACTIONS(12327), + [anon_sym_BSLASHsmartcite] = ACTIONS(12327), + [anon_sym_BSLASHSmartcite] = ACTIONS(12327), + [anon_sym_BSLASHsupercite] = ACTIONS(12327), + [anon_sym_BSLASHautocite] = ACTIONS(12327), + [anon_sym_BSLASHAutocite] = ACTIONS(12327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHvolcite] = ACTIONS(12327), + [anon_sym_BSLASHVolcite] = ACTIONS(12327), + [anon_sym_BSLASHpvolcite] = ACTIONS(12327), + [anon_sym_BSLASHPvolcite] = ACTIONS(12327), + [anon_sym_BSLASHfvolcite] = ACTIONS(12327), + [anon_sym_BSLASHftvolcite] = ACTIONS(12327), + [anon_sym_BSLASHsvolcite] = ACTIONS(12327), + [anon_sym_BSLASHSvolcite] = ACTIONS(12327), + [anon_sym_BSLASHtvolcite] = ACTIONS(12327), + [anon_sym_BSLASHTvolcite] = ACTIONS(12327), + [anon_sym_BSLASHavolcite] = ACTIONS(12327), + [anon_sym_BSLASHAvolcite] = ACTIONS(12327), + [anon_sym_BSLASHnotecite] = ACTIONS(12327), + [anon_sym_BSLASHpnotecite] = ACTIONS(12327), + [anon_sym_BSLASHPnotecite] = ACTIONS(12327), + [anon_sym_BSLASHfnotecite] = ACTIONS(12327), + [anon_sym_BSLASHusepackage] = ACTIONS(12327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12327), + [anon_sym_BSLASHinclude] = ACTIONS(12327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12327), + [anon_sym_BSLASHinput] = ACTIONS(12327), + [anon_sym_BSLASHsubfile] = ACTIONS(12327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12327), + [anon_sym_BSLASHbibliography] = ACTIONS(12327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12327), + [anon_sym_BSLASHincludesvg] = ACTIONS(12327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12327), + [anon_sym_BSLASHimport] = ACTIONS(12327), + [anon_sym_BSLASHsubimport] = ACTIONS(12327), + [anon_sym_BSLASHinputfrom] = ACTIONS(12327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12327), + [anon_sym_BSLASHincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHlabel] = ACTIONS(12327), + [anon_sym_BSLASHref] = ACTIONS(12327), + [anon_sym_BSLASHvref] = ACTIONS(12327), + [anon_sym_BSLASHVref] = ACTIONS(12327), + [anon_sym_BSLASHautoref] = ACTIONS(12327), + [anon_sym_BSLASHpageref] = ACTIONS(12327), + [anon_sym_BSLASHcref] = ACTIONS(12327), + [anon_sym_BSLASHCref] = ACTIONS(12327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnameCref] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHlabelcref] = ACTIONS(12327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12327), + [anon_sym_BSLASHeqref] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange] = ACTIONS(12327), + [anon_sym_BSLASHCrefrange] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewlabel] = ACTIONS(12327), + [anon_sym_BSLASHnewcommand] = ACTIONS(12327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12327), + [anon_sym_BSLASHgls] = ACTIONS(12327), + [anon_sym_BSLASHGls] = ACTIONS(12327), + [anon_sym_BSLASHGLS] = ACTIONS(12327), + [anon_sym_BSLASHglspl] = ACTIONS(12327), + [anon_sym_BSLASHGlspl] = ACTIONS(12327), + [anon_sym_BSLASHGLSpl] = ACTIONS(12327), + [anon_sym_BSLASHglsdisp] = ACTIONS(12327), + [anon_sym_BSLASHglslink] = ACTIONS(12327), + [anon_sym_BSLASHglstext] = ACTIONS(12327), + [anon_sym_BSLASHGlstext] = ACTIONS(12327), + [anon_sym_BSLASHGLStext] = ACTIONS(12327), + [anon_sym_BSLASHglsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12327), + [anon_sym_BSLASHglsplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSplural] = ACTIONS(12327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHglsname] = ACTIONS(12327), + [anon_sym_BSLASHGlsname] = ACTIONS(12327), + [anon_sym_BSLASHGLSname] = ACTIONS(12327), + [anon_sym_BSLASHglssymbol] = ACTIONS(12327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12327), + [anon_sym_BSLASHglsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12327), + [anon_sym_BSLASHglsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12327), + [anon_sym_BSLASHglsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12327), + [anon_sym_BSLASHglsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12327), + [anon_sym_BSLASHglsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12327), + [anon_sym_BSLASHnewacronym] = ACTIONS(12327), + [anon_sym_BSLASHacrshort] = ACTIONS(12327), + [anon_sym_BSLASHAcrshort] = ACTIONS(12327), + [anon_sym_BSLASHACRshort] = ACTIONS(12327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12327), + [anon_sym_BSLASHacrlong] = ACTIONS(12327), + [anon_sym_BSLASHAcrlong] = ACTIONS(12327), + [anon_sym_BSLASHACRlong] = ACTIONS(12327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12327), + [anon_sym_BSLASHacrfull] = ACTIONS(12327), + [anon_sym_BSLASHAcrfull] = ACTIONS(12327), + [anon_sym_BSLASHACRfull] = ACTIONS(12327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12327), + [anon_sym_BSLASHacs] = ACTIONS(12327), + [anon_sym_BSLASHAcs] = ACTIONS(12327), + [anon_sym_BSLASHacsp] = ACTIONS(12327), + [anon_sym_BSLASHAcsp] = ACTIONS(12327), + [anon_sym_BSLASHacl] = ACTIONS(12327), + [anon_sym_BSLASHAcl] = ACTIONS(12327), + [anon_sym_BSLASHaclp] = ACTIONS(12327), + [anon_sym_BSLASHAclp] = ACTIONS(12327), + [anon_sym_BSLASHacf] = ACTIONS(12327), + [anon_sym_BSLASHAcf] = ACTIONS(12327), + [anon_sym_BSLASHacfp] = ACTIONS(12327), + [anon_sym_BSLASHAcfp] = ACTIONS(12327), + [anon_sym_BSLASHac] = ACTIONS(12327), + [anon_sym_BSLASHAc] = ACTIONS(12327), + [anon_sym_BSLASHacp] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12327), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12327), + [anon_sym_BSLASHcolor] = ACTIONS(12327), + [anon_sym_BSLASHcolorbox] = ACTIONS(12327), + [anon_sym_BSLASHtextcolor] = ACTIONS(12327), + [anon_sym_BSLASHpagecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12327), + }, + [1358] = { + [sym__text_fragment] = STATE(1358), + [aux_sym_text_repeat1] = STATE(1358), + [sym_generic_command_name] = ACTIONS(12021), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12021), + [aux_sym_subparagraph_token1] = ACTIONS(12021), + [anon_sym_BSLASHitem] = ACTIONS(12021), + [anon_sym_LBRACK] = ACTIONS(12019), + [anon_sym_RBRACK] = ACTIONS(12019), + [anon_sym_LBRACE] = ACTIONS(12019), + [anon_sym_RBRACE] = ACTIONS(12019), + [anon_sym_LPAREN] = ACTIONS(12019), + [anon_sym_COMMA] = ACTIONS(12729), + [anon_sym_EQ] = ACTIONS(12729), + [sym_word] = ACTIONS(12729), + [sym_param] = ACTIONS(12019), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12019), + [anon_sym_DOLLAR] = ACTIONS(12021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12019), + [anon_sym_BSLASHbegin] = ACTIONS(12021), + [anon_sym_BSLASHcaption] = ACTIONS(12021), + [anon_sym_BSLASHcite] = ACTIONS(12021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCite] = ACTIONS(12021), + [anon_sym_BSLASHnocite] = ACTIONS(12021), + [anon_sym_BSLASHcitet] = ACTIONS(12021), + [anon_sym_BSLASHcitep] = ACTIONS(12021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteauthor] = ACTIONS(12021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitetitle] = ACTIONS(12021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteyear] = ACTIONS(12021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitedate] = ACTIONS(12021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteurl] = ACTIONS(12021), + [anon_sym_BSLASHfullcite] = ACTIONS(12021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12021), + [anon_sym_BSLASHcitealt] = ACTIONS(12021), + [anon_sym_BSLASHcitealp] = ACTIONS(12021), + [anon_sym_BSLASHcitetext] = ACTIONS(12021), + [anon_sym_BSLASHparencite] = ACTIONS(12021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHParencite] = ACTIONS(12021), + [anon_sym_BSLASHfootcite] = ACTIONS(12021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12021), + [anon_sym_BSLASHtextcite] = ACTIONS(12021), + [anon_sym_BSLASHTextcite] = ACTIONS(12021), + [anon_sym_BSLASHsmartcite] = ACTIONS(12021), + [anon_sym_BSLASHSmartcite] = ACTIONS(12021), + [anon_sym_BSLASHsupercite] = ACTIONS(12021), + [anon_sym_BSLASHautocite] = ACTIONS(12021), + [anon_sym_BSLASHAutocite] = ACTIONS(12021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHvolcite] = ACTIONS(12021), + [anon_sym_BSLASHVolcite] = ACTIONS(12021), + [anon_sym_BSLASHpvolcite] = ACTIONS(12021), + [anon_sym_BSLASHPvolcite] = ACTIONS(12021), + [anon_sym_BSLASHfvolcite] = ACTIONS(12021), + [anon_sym_BSLASHftvolcite] = ACTIONS(12021), + [anon_sym_BSLASHsvolcite] = ACTIONS(12021), + [anon_sym_BSLASHSvolcite] = ACTIONS(12021), + [anon_sym_BSLASHtvolcite] = ACTIONS(12021), + [anon_sym_BSLASHTvolcite] = ACTIONS(12021), + [anon_sym_BSLASHavolcite] = ACTIONS(12021), + [anon_sym_BSLASHAvolcite] = ACTIONS(12021), + [anon_sym_BSLASHnotecite] = ACTIONS(12021), + [anon_sym_BSLASHpnotecite] = ACTIONS(12021), + [anon_sym_BSLASHPnotecite] = ACTIONS(12021), + [anon_sym_BSLASHfnotecite] = ACTIONS(12021), + [anon_sym_BSLASHusepackage] = ACTIONS(12021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12021), + [anon_sym_BSLASHinclude] = ACTIONS(12021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12021), + [anon_sym_BSLASHinput] = ACTIONS(12021), + [anon_sym_BSLASHsubfile] = ACTIONS(12021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12021), + [anon_sym_BSLASHbibliography] = ACTIONS(12021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12021), + [anon_sym_BSLASHincludesvg] = ACTIONS(12021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12021), + [anon_sym_BSLASHimport] = ACTIONS(12021), + [anon_sym_BSLASHsubimport] = ACTIONS(12021), + [anon_sym_BSLASHinputfrom] = ACTIONS(12021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12021), + [anon_sym_BSLASHincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHlabel] = ACTIONS(12021), + [anon_sym_BSLASHref] = ACTIONS(12021), + [anon_sym_BSLASHvref] = ACTIONS(12021), + [anon_sym_BSLASHVref] = ACTIONS(12021), + [anon_sym_BSLASHautoref] = ACTIONS(12021), + [anon_sym_BSLASHpageref] = ACTIONS(12021), + [anon_sym_BSLASHcref] = ACTIONS(12021), + [anon_sym_BSLASHCref] = ACTIONS(12021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnameCref] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHlabelcref] = ACTIONS(12021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12021), + [anon_sym_BSLASHeqref] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange] = ACTIONS(12021), + [anon_sym_BSLASHCrefrange] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewlabel] = ACTIONS(12021), + [anon_sym_BSLASHnewcommand] = ACTIONS(12021), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12021), + [anon_sym_BSLASHgls] = ACTIONS(12021), + [anon_sym_BSLASHGls] = ACTIONS(12021), + [anon_sym_BSLASHGLS] = ACTIONS(12021), + [anon_sym_BSLASHglspl] = ACTIONS(12021), + [anon_sym_BSLASHGlspl] = ACTIONS(12021), + [anon_sym_BSLASHGLSpl] = ACTIONS(12021), + [anon_sym_BSLASHglsdisp] = ACTIONS(12021), + [anon_sym_BSLASHglslink] = ACTIONS(12021), + [anon_sym_BSLASHglstext] = ACTIONS(12021), + [anon_sym_BSLASHGlstext] = ACTIONS(12021), + [anon_sym_BSLASHGLStext] = ACTIONS(12021), + [anon_sym_BSLASHglsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12021), + [anon_sym_BSLASHglsplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSplural] = ACTIONS(12021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHglsname] = ACTIONS(12021), + [anon_sym_BSLASHGlsname] = ACTIONS(12021), + [anon_sym_BSLASHGLSname] = ACTIONS(12021), + [anon_sym_BSLASHglssymbol] = ACTIONS(12021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12021), + [anon_sym_BSLASHglsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12021), + [anon_sym_BSLASHglsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12021), + [anon_sym_BSLASHglsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12021), + [anon_sym_BSLASHglsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12021), + [anon_sym_BSLASHglsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12021), + [anon_sym_BSLASHnewacronym] = ACTIONS(12021), + [anon_sym_BSLASHacrshort] = ACTIONS(12021), + [anon_sym_BSLASHAcrshort] = ACTIONS(12021), + [anon_sym_BSLASHACRshort] = ACTIONS(12021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12021), + [anon_sym_BSLASHacrlong] = ACTIONS(12021), + [anon_sym_BSLASHAcrlong] = ACTIONS(12021), + [anon_sym_BSLASHACRlong] = ACTIONS(12021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12021), + [anon_sym_BSLASHacrfull] = ACTIONS(12021), + [anon_sym_BSLASHAcrfull] = ACTIONS(12021), + [anon_sym_BSLASHACRfull] = ACTIONS(12021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12021), + [anon_sym_BSLASHacs] = ACTIONS(12021), + [anon_sym_BSLASHAcs] = ACTIONS(12021), + [anon_sym_BSLASHacsp] = ACTIONS(12021), + [anon_sym_BSLASHAcsp] = ACTIONS(12021), + [anon_sym_BSLASHacl] = ACTIONS(12021), + [anon_sym_BSLASHAcl] = ACTIONS(12021), + [anon_sym_BSLASHaclp] = ACTIONS(12021), + [anon_sym_BSLASHAclp] = ACTIONS(12021), + [anon_sym_BSLASHacf] = ACTIONS(12021), + [anon_sym_BSLASHAcf] = ACTIONS(12021), + [anon_sym_BSLASHacfp] = ACTIONS(12021), + [anon_sym_BSLASHAcfp] = ACTIONS(12021), + [anon_sym_BSLASHac] = ACTIONS(12021), + [anon_sym_BSLASHAc] = ACTIONS(12021), + [anon_sym_BSLASHacp] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12021), + [anon_sym_BSLASHcolor] = ACTIONS(12021), + [anon_sym_BSLASHcolorbox] = ACTIONS(12021), + [anon_sym_BSLASHtextcolor] = ACTIONS(12021), + [anon_sym_BSLASHpagecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12021), + }, + [1359] = { + [sym_generic_command_name] = ACTIONS(12365), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12365), + [aux_sym_subsubsection_token1] = ACTIONS(12365), + [aux_sym_paragraph_token1] = ACTIONS(12365), + [aux_sym_subparagraph_token1] = ACTIONS(12365), + [anon_sym_BSLASHitem] = ACTIONS(12365), + [anon_sym_LBRACK] = ACTIONS(12363), + [anon_sym_RBRACK] = ACTIONS(12363), + [anon_sym_LBRACE] = ACTIONS(12363), + [anon_sym_RBRACE] = ACTIONS(12363), + [anon_sym_LPAREN] = ACTIONS(12363), + [anon_sym_COMMA] = ACTIONS(12363), + [anon_sym_EQ] = ACTIONS(12363), + [sym_word] = ACTIONS(12363), + [sym_param] = ACTIONS(12363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12363), + [anon_sym_DOLLAR] = ACTIONS(12365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12363), + [anon_sym_BSLASHbegin] = ACTIONS(12365), + [anon_sym_BSLASHcaption] = ACTIONS(12365), + [anon_sym_BSLASHcite] = ACTIONS(12365), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCite] = ACTIONS(12365), + [anon_sym_BSLASHnocite] = ACTIONS(12365), + [anon_sym_BSLASHcitet] = ACTIONS(12365), + [anon_sym_BSLASHcitep] = ACTIONS(12365), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteauthor] = ACTIONS(12365), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12365), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitetitle] = ACTIONS(12365), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteyear] = ACTIONS(12365), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitedate] = ACTIONS(12365), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteurl] = ACTIONS(12365), + [anon_sym_BSLASHfullcite] = ACTIONS(12365), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12365), + [anon_sym_BSLASHcitealt] = ACTIONS(12365), + [anon_sym_BSLASHcitealp] = ACTIONS(12365), + [anon_sym_BSLASHcitetext] = ACTIONS(12365), + [anon_sym_BSLASHparencite] = ACTIONS(12365), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHParencite] = ACTIONS(12365), + [anon_sym_BSLASHfootcite] = ACTIONS(12365), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12365), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12365), + [anon_sym_BSLASHtextcite] = ACTIONS(12365), + [anon_sym_BSLASHTextcite] = ACTIONS(12365), + [anon_sym_BSLASHsmartcite] = ACTIONS(12365), + [anon_sym_BSLASHSmartcite] = ACTIONS(12365), + [anon_sym_BSLASHsupercite] = ACTIONS(12365), + [anon_sym_BSLASHautocite] = ACTIONS(12365), + [anon_sym_BSLASHAutocite] = ACTIONS(12365), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHvolcite] = ACTIONS(12365), + [anon_sym_BSLASHVolcite] = ACTIONS(12365), + [anon_sym_BSLASHpvolcite] = ACTIONS(12365), + [anon_sym_BSLASHPvolcite] = ACTIONS(12365), + [anon_sym_BSLASHfvolcite] = ACTIONS(12365), + [anon_sym_BSLASHftvolcite] = ACTIONS(12365), + [anon_sym_BSLASHsvolcite] = ACTIONS(12365), + [anon_sym_BSLASHSvolcite] = ACTIONS(12365), + [anon_sym_BSLASHtvolcite] = ACTIONS(12365), + [anon_sym_BSLASHTvolcite] = ACTIONS(12365), + [anon_sym_BSLASHavolcite] = ACTIONS(12365), + [anon_sym_BSLASHAvolcite] = ACTIONS(12365), + [anon_sym_BSLASHnotecite] = ACTIONS(12365), + [anon_sym_BSLASHpnotecite] = ACTIONS(12365), + [anon_sym_BSLASHPnotecite] = ACTIONS(12365), + [anon_sym_BSLASHfnotecite] = ACTIONS(12365), + [anon_sym_BSLASHusepackage] = ACTIONS(12365), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12365), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12365), + [anon_sym_BSLASHinclude] = ACTIONS(12365), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12365), + [anon_sym_BSLASHinput] = ACTIONS(12365), + [anon_sym_BSLASHsubfile] = ACTIONS(12365), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12365), + [anon_sym_BSLASHbibliography] = ACTIONS(12365), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12365), + [anon_sym_BSLASHincludesvg] = ACTIONS(12365), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12365), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12365), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12365), + [anon_sym_BSLASHimport] = ACTIONS(12365), + [anon_sym_BSLASHsubimport] = ACTIONS(12365), + [anon_sym_BSLASHinputfrom] = ACTIONS(12365), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12365), + [anon_sym_BSLASHincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHlabel] = ACTIONS(12365), + [anon_sym_BSLASHref] = ACTIONS(12365), + [anon_sym_BSLASHvref] = ACTIONS(12365), + [anon_sym_BSLASHVref] = ACTIONS(12365), + [anon_sym_BSLASHautoref] = ACTIONS(12365), + [anon_sym_BSLASHpageref] = ACTIONS(12365), + [anon_sym_BSLASHcref] = ACTIONS(12365), + [anon_sym_BSLASHCref] = ACTIONS(12365), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnameCref] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHlabelcref] = ACTIONS(12365), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12365), + [anon_sym_BSLASHeqref] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange] = ACTIONS(12365), + [anon_sym_BSLASHCrefrange] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewlabel] = ACTIONS(12365), + [anon_sym_BSLASHnewcommand] = ACTIONS(12365), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12365), + [anon_sym_BSLASHgls] = ACTIONS(12365), + [anon_sym_BSLASHGls] = ACTIONS(12365), + [anon_sym_BSLASHGLS] = ACTIONS(12365), + [anon_sym_BSLASHglspl] = ACTIONS(12365), + [anon_sym_BSLASHGlspl] = ACTIONS(12365), + [anon_sym_BSLASHGLSpl] = ACTIONS(12365), + [anon_sym_BSLASHglsdisp] = ACTIONS(12365), + [anon_sym_BSLASHglslink] = ACTIONS(12365), + [anon_sym_BSLASHglstext] = ACTIONS(12365), + [anon_sym_BSLASHGlstext] = ACTIONS(12365), + [anon_sym_BSLASHGLStext] = ACTIONS(12365), + [anon_sym_BSLASHglsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12365), + [anon_sym_BSLASHglsplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSplural] = ACTIONS(12365), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHglsname] = ACTIONS(12365), + [anon_sym_BSLASHGlsname] = ACTIONS(12365), + [anon_sym_BSLASHGLSname] = ACTIONS(12365), + [anon_sym_BSLASHglssymbol] = ACTIONS(12365), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12365), + [anon_sym_BSLASHglsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12365), + [anon_sym_BSLASHglsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12365), + [anon_sym_BSLASHglsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12365), + [anon_sym_BSLASHglsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12365), + [anon_sym_BSLASHglsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12365), + [anon_sym_BSLASHnewacronym] = ACTIONS(12365), + [anon_sym_BSLASHacrshort] = ACTIONS(12365), + [anon_sym_BSLASHAcrshort] = ACTIONS(12365), + [anon_sym_BSLASHACRshort] = ACTIONS(12365), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12365), + [anon_sym_BSLASHacrlong] = ACTIONS(12365), + [anon_sym_BSLASHAcrlong] = ACTIONS(12365), + [anon_sym_BSLASHACRlong] = ACTIONS(12365), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12365), + [anon_sym_BSLASHacrfull] = ACTIONS(12365), + [anon_sym_BSLASHAcrfull] = ACTIONS(12365), + [anon_sym_BSLASHACRfull] = ACTIONS(12365), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12365), + [anon_sym_BSLASHacs] = ACTIONS(12365), + [anon_sym_BSLASHAcs] = ACTIONS(12365), + [anon_sym_BSLASHacsp] = ACTIONS(12365), + [anon_sym_BSLASHAcsp] = ACTIONS(12365), + [anon_sym_BSLASHacl] = ACTIONS(12365), + [anon_sym_BSLASHAcl] = ACTIONS(12365), + [anon_sym_BSLASHaclp] = ACTIONS(12365), + [anon_sym_BSLASHAclp] = ACTIONS(12365), + [anon_sym_BSLASHacf] = ACTIONS(12365), + [anon_sym_BSLASHAcf] = ACTIONS(12365), + [anon_sym_BSLASHacfp] = ACTIONS(12365), + [anon_sym_BSLASHAcfp] = ACTIONS(12365), + [anon_sym_BSLASHac] = ACTIONS(12365), + [anon_sym_BSLASHAc] = ACTIONS(12365), + [anon_sym_BSLASHacp] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12365), + [anon_sym_BSLASHcolor] = ACTIONS(12365), + [anon_sym_BSLASHcolorbox] = ACTIONS(12365), + [anon_sym_BSLASHtextcolor] = ACTIONS(12365), + [anon_sym_BSLASHpagecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12365), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12365), + }, + [1360] = { + [sym_generic_command_name] = ACTIONS(12231), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12231), + [aux_sym_subsubsection_token1] = ACTIONS(12231), + [aux_sym_paragraph_token1] = ACTIONS(12231), + [aux_sym_subparagraph_token1] = ACTIONS(12231), + [anon_sym_BSLASHitem] = ACTIONS(12231), + [anon_sym_LBRACK] = ACTIONS(12229), + [anon_sym_RBRACK] = ACTIONS(12229), + [anon_sym_LBRACE] = ACTIONS(12229), + [anon_sym_RBRACE] = ACTIONS(12229), + [anon_sym_LPAREN] = ACTIONS(12229), + [anon_sym_COMMA] = ACTIONS(12229), + [anon_sym_EQ] = ACTIONS(12229), + [sym_word] = ACTIONS(12229), + [sym_param] = ACTIONS(12229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12229), + [anon_sym_DOLLAR] = ACTIONS(12231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12229), + [anon_sym_BSLASHbegin] = ACTIONS(12231), + [anon_sym_BSLASHcaption] = ACTIONS(12231), + [anon_sym_BSLASHcite] = ACTIONS(12231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCite] = ACTIONS(12231), + [anon_sym_BSLASHnocite] = ACTIONS(12231), + [anon_sym_BSLASHcitet] = ACTIONS(12231), + [anon_sym_BSLASHcitep] = ACTIONS(12231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteauthor] = ACTIONS(12231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitetitle] = ACTIONS(12231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteyear] = ACTIONS(12231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitedate] = ACTIONS(12231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteurl] = ACTIONS(12231), + [anon_sym_BSLASHfullcite] = ACTIONS(12231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12231), + [anon_sym_BSLASHcitealt] = ACTIONS(12231), + [anon_sym_BSLASHcitealp] = ACTIONS(12231), + [anon_sym_BSLASHcitetext] = ACTIONS(12231), + [anon_sym_BSLASHparencite] = ACTIONS(12231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHParencite] = ACTIONS(12231), + [anon_sym_BSLASHfootcite] = ACTIONS(12231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12231), + [anon_sym_BSLASHtextcite] = ACTIONS(12231), + [anon_sym_BSLASHTextcite] = ACTIONS(12231), + [anon_sym_BSLASHsmartcite] = ACTIONS(12231), + [anon_sym_BSLASHSmartcite] = ACTIONS(12231), + [anon_sym_BSLASHsupercite] = ACTIONS(12231), + [anon_sym_BSLASHautocite] = ACTIONS(12231), + [anon_sym_BSLASHAutocite] = ACTIONS(12231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHvolcite] = ACTIONS(12231), + [anon_sym_BSLASHVolcite] = ACTIONS(12231), + [anon_sym_BSLASHpvolcite] = ACTIONS(12231), + [anon_sym_BSLASHPvolcite] = ACTIONS(12231), + [anon_sym_BSLASHfvolcite] = ACTIONS(12231), + [anon_sym_BSLASHftvolcite] = ACTIONS(12231), + [anon_sym_BSLASHsvolcite] = ACTIONS(12231), + [anon_sym_BSLASHSvolcite] = ACTIONS(12231), + [anon_sym_BSLASHtvolcite] = ACTIONS(12231), + [anon_sym_BSLASHTvolcite] = ACTIONS(12231), + [anon_sym_BSLASHavolcite] = ACTIONS(12231), + [anon_sym_BSLASHAvolcite] = ACTIONS(12231), + [anon_sym_BSLASHnotecite] = ACTIONS(12231), + [anon_sym_BSLASHpnotecite] = ACTIONS(12231), + [anon_sym_BSLASHPnotecite] = ACTIONS(12231), + [anon_sym_BSLASHfnotecite] = ACTIONS(12231), + [anon_sym_BSLASHusepackage] = ACTIONS(12231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12231), + [anon_sym_BSLASHinclude] = ACTIONS(12231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12231), + [anon_sym_BSLASHinput] = ACTIONS(12231), + [anon_sym_BSLASHsubfile] = ACTIONS(12231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12231), + [anon_sym_BSLASHbibliography] = ACTIONS(12231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12231), + [anon_sym_BSLASHincludesvg] = ACTIONS(12231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12231), + [anon_sym_BSLASHimport] = ACTIONS(12231), + [anon_sym_BSLASHsubimport] = ACTIONS(12231), + [anon_sym_BSLASHinputfrom] = ACTIONS(12231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12231), + [anon_sym_BSLASHincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHlabel] = ACTIONS(12231), + [anon_sym_BSLASHref] = ACTIONS(12231), + [anon_sym_BSLASHvref] = ACTIONS(12231), + [anon_sym_BSLASHVref] = ACTIONS(12231), + [anon_sym_BSLASHautoref] = ACTIONS(12231), + [anon_sym_BSLASHpageref] = ACTIONS(12231), + [anon_sym_BSLASHcref] = ACTIONS(12231), + [anon_sym_BSLASHCref] = ACTIONS(12231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnameCref] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHlabelcref] = ACTIONS(12231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12231), + [anon_sym_BSLASHeqref] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange] = ACTIONS(12231), + [anon_sym_BSLASHCrefrange] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewlabel] = ACTIONS(12231), + [anon_sym_BSLASHnewcommand] = ACTIONS(12231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12231), + [anon_sym_BSLASHgls] = ACTIONS(12231), + [anon_sym_BSLASHGls] = ACTIONS(12231), + [anon_sym_BSLASHGLS] = ACTIONS(12231), + [anon_sym_BSLASHglspl] = ACTIONS(12231), + [anon_sym_BSLASHGlspl] = ACTIONS(12231), + [anon_sym_BSLASHGLSpl] = ACTIONS(12231), + [anon_sym_BSLASHglsdisp] = ACTIONS(12231), + [anon_sym_BSLASHglslink] = ACTIONS(12231), + [anon_sym_BSLASHglstext] = ACTIONS(12231), + [anon_sym_BSLASHGlstext] = ACTIONS(12231), + [anon_sym_BSLASHGLStext] = ACTIONS(12231), + [anon_sym_BSLASHglsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12231), + [anon_sym_BSLASHglsplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSplural] = ACTIONS(12231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHglsname] = ACTIONS(12231), + [anon_sym_BSLASHGlsname] = ACTIONS(12231), + [anon_sym_BSLASHGLSname] = ACTIONS(12231), + [anon_sym_BSLASHglssymbol] = ACTIONS(12231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12231), + [anon_sym_BSLASHglsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12231), + [anon_sym_BSLASHglsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12231), + [anon_sym_BSLASHglsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12231), + [anon_sym_BSLASHglsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12231), + [anon_sym_BSLASHglsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12231), + [anon_sym_BSLASHnewacronym] = ACTIONS(12231), + [anon_sym_BSLASHacrshort] = ACTIONS(12231), + [anon_sym_BSLASHAcrshort] = ACTIONS(12231), + [anon_sym_BSLASHACRshort] = ACTIONS(12231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12231), + [anon_sym_BSLASHacrlong] = ACTIONS(12231), + [anon_sym_BSLASHAcrlong] = ACTIONS(12231), + [anon_sym_BSLASHACRlong] = ACTIONS(12231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12231), + [anon_sym_BSLASHacrfull] = ACTIONS(12231), + [anon_sym_BSLASHAcrfull] = ACTIONS(12231), + [anon_sym_BSLASHACRfull] = ACTIONS(12231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12231), + [anon_sym_BSLASHacs] = ACTIONS(12231), + [anon_sym_BSLASHAcs] = ACTIONS(12231), + [anon_sym_BSLASHacsp] = ACTIONS(12231), + [anon_sym_BSLASHAcsp] = ACTIONS(12231), + [anon_sym_BSLASHacl] = ACTIONS(12231), + [anon_sym_BSLASHAcl] = ACTIONS(12231), + [anon_sym_BSLASHaclp] = ACTIONS(12231), + [anon_sym_BSLASHAclp] = ACTIONS(12231), + [anon_sym_BSLASHacf] = ACTIONS(12231), + [anon_sym_BSLASHAcf] = ACTIONS(12231), + [anon_sym_BSLASHacfp] = ACTIONS(12231), + [anon_sym_BSLASHAcfp] = ACTIONS(12231), + [anon_sym_BSLASHac] = ACTIONS(12231), + [anon_sym_BSLASHAc] = ACTIONS(12231), + [anon_sym_BSLASHacp] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12231), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12231), + [anon_sym_BSLASHcolor] = ACTIONS(12231), + [anon_sym_BSLASHcolorbox] = ACTIONS(12231), + [anon_sym_BSLASHtextcolor] = ACTIONS(12231), + [anon_sym_BSLASHpagecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12231), + }, + [1361] = { + [sym_brace_group] = STATE(1361), + [sym_bracket_group] = STATE(1361), + [sym_paren_group] = STATE(1361), + [aux_sym_generic_command_repeat1] = STATE(1361), + [sym_generic_command_name] = ACTIONS(12002), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12002), + [anon_sym_LBRACK] = ACTIONS(12732), + [anon_sym_RBRACK] = ACTIONS(12000), + [anon_sym_LBRACE] = ACTIONS(12735), + [anon_sym_RBRACE] = ACTIONS(12000), + [anon_sym_LPAREN] = ACTIONS(12738), + [anon_sym_COMMA] = ACTIONS(12000), + [anon_sym_EQ] = ACTIONS(12000), + [sym_word] = ACTIONS(12000), + [sym_param] = ACTIONS(12000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12000), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12000), + [anon_sym_DOLLAR] = ACTIONS(12002), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12000), + [anon_sym_BSLASHbegin] = ACTIONS(12002), + [anon_sym_BSLASHcaption] = ACTIONS(12002), + [anon_sym_BSLASHcite] = ACTIONS(12002), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCite] = ACTIONS(12002), + [anon_sym_BSLASHnocite] = ACTIONS(12002), + [anon_sym_BSLASHcitet] = ACTIONS(12002), + [anon_sym_BSLASHcitep] = ACTIONS(12002), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteauthor] = ACTIONS(12002), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12002), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitetitle] = ACTIONS(12002), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteyear] = ACTIONS(12002), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitedate] = ACTIONS(12002), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteurl] = ACTIONS(12002), + [anon_sym_BSLASHfullcite] = ACTIONS(12002), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12002), + [anon_sym_BSLASHcitealt] = ACTIONS(12002), + [anon_sym_BSLASHcitealp] = ACTIONS(12002), + [anon_sym_BSLASHcitetext] = ACTIONS(12002), + [anon_sym_BSLASHparencite] = ACTIONS(12002), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHParencite] = ACTIONS(12002), + [anon_sym_BSLASHfootcite] = ACTIONS(12002), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12002), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12002), + [anon_sym_BSLASHtextcite] = ACTIONS(12002), + [anon_sym_BSLASHTextcite] = ACTIONS(12002), + [anon_sym_BSLASHsmartcite] = ACTIONS(12002), + [anon_sym_BSLASHSmartcite] = ACTIONS(12002), + [anon_sym_BSLASHsupercite] = ACTIONS(12002), + [anon_sym_BSLASHautocite] = ACTIONS(12002), + [anon_sym_BSLASHAutocite] = ACTIONS(12002), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHvolcite] = ACTIONS(12002), + [anon_sym_BSLASHVolcite] = ACTIONS(12002), + [anon_sym_BSLASHpvolcite] = ACTIONS(12002), + [anon_sym_BSLASHPvolcite] = ACTIONS(12002), + [anon_sym_BSLASHfvolcite] = ACTIONS(12002), + [anon_sym_BSLASHftvolcite] = ACTIONS(12002), + [anon_sym_BSLASHsvolcite] = ACTIONS(12002), + [anon_sym_BSLASHSvolcite] = ACTIONS(12002), + [anon_sym_BSLASHtvolcite] = ACTIONS(12002), + [anon_sym_BSLASHTvolcite] = ACTIONS(12002), + [anon_sym_BSLASHavolcite] = ACTIONS(12002), + [anon_sym_BSLASHAvolcite] = ACTIONS(12002), + [anon_sym_BSLASHnotecite] = ACTIONS(12002), + [anon_sym_BSLASHpnotecite] = ACTIONS(12002), + [anon_sym_BSLASHPnotecite] = ACTIONS(12002), + [anon_sym_BSLASHfnotecite] = ACTIONS(12002), + [anon_sym_BSLASHusepackage] = ACTIONS(12002), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12002), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12002), + [anon_sym_BSLASHinclude] = ACTIONS(12002), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12002), + [anon_sym_BSLASHinput] = ACTIONS(12002), + [anon_sym_BSLASHsubfile] = ACTIONS(12002), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12002), + [anon_sym_BSLASHbibliography] = ACTIONS(12002), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12002), + [anon_sym_BSLASHincludesvg] = ACTIONS(12002), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12002), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12002), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12002), + [anon_sym_BSLASHimport] = ACTIONS(12002), + [anon_sym_BSLASHsubimport] = ACTIONS(12002), + [anon_sym_BSLASHinputfrom] = ACTIONS(12002), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12002), + [anon_sym_BSLASHincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHlabel] = ACTIONS(12002), + [anon_sym_BSLASHref] = ACTIONS(12002), + [anon_sym_BSLASHvref] = ACTIONS(12002), + [anon_sym_BSLASHVref] = ACTIONS(12002), + [anon_sym_BSLASHautoref] = ACTIONS(12002), + [anon_sym_BSLASHpageref] = ACTIONS(12002), + [anon_sym_BSLASHcref] = ACTIONS(12002), + [anon_sym_BSLASHCref] = ACTIONS(12002), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnameCref] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHlabelcref] = ACTIONS(12002), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12002), + [anon_sym_BSLASHeqref] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange] = ACTIONS(12002), + [anon_sym_BSLASHCrefrange] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewlabel] = ACTIONS(12002), + [anon_sym_BSLASHnewcommand] = ACTIONS(12002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12002), + [anon_sym_BSLASHgls] = ACTIONS(12002), + [anon_sym_BSLASHGls] = ACTIONS(12002), + [anon_sym_BSLASHGLS] = ACTIONS(12002), + [anon_sym_BSLASHglspl] = ACTIONS(12002), + [anon_sym_BSLASHGlspl] = ACTIONS(12002), + [anon_sym_BSLASHGLSpl] = ACTIONS(12002), + [anon_sym_BSLASHglsdisp] = ACTIONS(12002), + [anon_sym_BSLASHglslink] = ACTIONS(12002), + [anon_sym_BSLASHglstext] = ACTIONS(12002), + [anon_sym_BSLASHGlstext] = ACTIONS(12002), + [anon_sym_BSLASHGLStext] = ACTIONS(12002), + [anon_sym_BSLASHglsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12002), + [anon_sym_BSLASHglsplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSplural] = ACTIONS(12002), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHglsname] = ACTIONS(12002), + [anon_sym_BSLASHGlsname] = ACTIONS(12002), + [anon_sym_BSLASHGLSname] = ACTIONS(12002), + [anon_sym_BSLASHglssymbol] = ACTIONS(12002), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12002), + [anon_sym_BSLASHglsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12002), + [anon_sym_BSLASHglsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12002), + [anon_sym_BSLASHglsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12002), + [anon_sym_BSLASHglsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12002), + [anon_sym_BSLASHglsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12002), + [anon_sym_BSLASHnewacronym] = ACTIONS(12002), + [anon_sym_BSLASHacrshort] = ACTIONS(12002), + [anon_sym_BSLASHAcrshort] = ACTIONS(12002), + [anon_sym_BSLASHACRshort] = ACTIONS(12002), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12002), + [anon_sym_BSLASHacrlong] = ACTIONS(12002), + [anon_sym_BSLASHAcrlong] = ACTIONS(12002), + [anon_sym_BSLASHACRlong] = ACTIONS(12002), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12002), + [anon_sym_BSLASHacrfull] = ACTIONS(12002), + [anon_sym_BSLASHAcrfull] = ACTIONS(12002), + [anon_sym_BSLASHACRfull] = ACTIONS(12002), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12002), + [anon_sym_BSLASHacs] = ACTIONS(12002), + [anon_sym_BSLASHAcs] = ACTIONS(12002), + [anon_sym_BSLASHacsp] = ACTIONS(12002), + [anon_sym_BSLASHAcsp] = ACTIONS(12002), + [anon_sym_BSLASHacl] = ACTIONS(12002), + [anon_sym_BSLASHAcl] = ACTIONS(12002), + [anon_sym_BSLASHaclp] = ACTIONS(12002), + [anon_sym_BSLASHAclp] = ACTIONS(12002), + [anon_sym_BSLASHacf] = ACTIONS(12002), + [anon_sym_BSLASHAcf] = ACTIONS(12002), + [anon_sym_BSLASHacfp] = ACTIONS(12002), + [anon_sym_BSLASHAcfp] = ACTIONS(12002), + [anon_sym_BSLASHac] = ACTIONS(12002), + [anon_sym_BSLASHAc] = ACTIONS(12002), + [anon_sym_BSLASHacp] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12002), + [anon_sym_BSLASHcolor] = ACTIONS(12002), + [anon_sym_BSLASHcolorbox] = ACTIONS(12002), + [anon_sym_BSLASHtextcolor] = ACTIONS(12002), + [anon_sym_BSLASHpagecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12002), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12002), + }, + [1362] = { + [sym_generic_command_name] = ACTIONS(12345), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12345), + [aux_sym_subsubsection_token1] = ACTIONS(12345), + [aux_sym_paragraph_token1] = ACTIONS(12345), + [aux_sym_subparagraph_token1] = ACTIONS(12345), + [anon_sym_BSLASHitem] = ACTIONS(12345), + [anon_sym_LBRACK] = ACTIONS(12343), + [anon_sym_RBRACK] = ACTIONS(12343), + [anon_sym_LBRACE] = ACTIONS(12343), + [anon_sym_RBRACE] = ACTIONS(12343), + [anon_sym_LPAREN] = ACTIONS(12343), + [anon_sym_COMMA] = ACTIONS(12343), + [anon_sym_EQ] = ACTIONS(12343), + [sym_word] = ACTIONS(12343), + [sym_param] = ACTIONS(12343), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12343), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12343), + [anon_sym_DOLLAR] = ACTIONS(12345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12343), + [anon_sym_BSLASHbegin] = ACTIONS(12345), + [anon_sym_BSLASHcaption] = ACTIONS(12345), + [anon_sym_BSLASHcite] = ACTIONS(12345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCite] = ACTIONS(12345), + [anon_sym_BSLASHnocite] = ACTIONS(12345), + [anon_sym_BSLASHcitet] = ACTIONS(12345), + [anon_sym_BSLASHcitep] = ACTIONS(12345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteauthor] = ACTIONS(12345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitetitle] = ACTIONS(12345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteyear] = ACTIONS(12345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitedate] = ACTIONS(12345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteurl] = ACTIONS(12345), + [anon_sym_BSLASHfullcite] = ACTIONS(12345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12345), + [anon_sym_BSLASHcitealt] = ACTIONS(12345), + [anon_sym_BSLASHcitealp] = ACTIONS(12345), + [anon_sym_BSLASHcitetext] = ACTIONS(12345), + [anon_sym_BSLASHparencite] = ACTIONS(12345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHParencite] = ACTIONS(12345), + [anon_sym_BSLASHfootcite] = ACTIONS(12345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12345), + [anon_sym_BSLASHtextcite] = ACTIONS(12345), + [anon_sym_BSLASHTextcite] = ACTIONS(12345), + [anon_sym_BSLASHsmartcite] = ACTIONS(12345), + [anon_sym_BSLASHSmartcite] = ACTIONS(12345), + [anon_sym_BSLASHsupercite] = ACTIONS(12345), + [anon_sym_BSLASHautocite] = ACTIONS(12345), + [anon_sym_BSLASHAutocite] = ACTIONS(12345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHvolcite] = ACTIONS(12345), + [anon_sym_BSLASHVolcite] = ACTIONS(12345), + [anon_sym_BSLASHpvolcite] = ACTIONS(12345), + [anon_sym_BSLASHPvolcite] = ACTIONS(12345), + [anon_sym_BSLASHfvolcite] = ACTIONS(12345), + [anon_sym_BSLASHftvolcite] = ACTIONS(12345), + [anon_sym_BSLASHsvolcite] = ACTIONS(12345), + [anon_sym_BSLASHSvolcite] = ACTIONS(12345), + [anon_sym_BSLASHtvolcite] = ACTIONS(12345), + [anon_sym_BSLASHTvolcite] = ACTIONS(12345), + [anon_sym_BSLASHavolcite] = ACTIONS(12345), + [anon_sym_BSLASHAvolcite] = ACTIONS(12345), + [anon_sym_BSLASHnotecite] = ACTIONS(12345), + [anon_sym_BSLASHpnotecite] = ACTIONS(12345), + [anon_sym_BSLASHPnotecite] = ACTIONS(12345), + [anon_sym_BSLASHfnotecite] = ACTIONS(12345), + [anon_sym_BSLASHusepackage] = ACTIONS(12345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12345), + [anon_sym_BSLASHinclude] = ACTIONS(12345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12345), + [anon_sym_BSLASHinput] = ACTIONS(12345), + [anon_sym_BSLASHsubfile] = ACTIONS(12345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12345), + [anon_sym_BSLASHbibliography] = ACTIONS(12345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12345), + [anon_sym_BSLASHincludesvg] = ACTIONS(12345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12345), + [anon_sym_BSLASHimport] = ACTIONS(12345), + [anon_sym_BSLASHsubimport] = ACTIONS(12345), + [anon_sym_BSLASHinputfrom] = ACTIONS(12345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12345), + [anon_sym_BSLASHincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHlabel] = ACTIONS(12345), + [anon_sym_BSLASHref] = ACTIONS(12345), + [anon_sym_BSLASHvref] = ACTIONS(12345), + [anon_sym_BSLASHVref] = ACTIONS(12345), + [anon_sym_BSLASHautoref] = ACTIONS(12345), + [anon_sym_BSLASHpageref] = ACTIONS(12345), + [anon_sym_BSLASHcref] = ACTIONS(12345), + [anon_sym_BSLASHCref] = ACTIONS(12345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnameCref] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHlabelcref] = ACTIONS(12345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12345), + [anon_sym_BSLASHeqref] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange] = ACTIONS(12345), + [anon_sym_BSLASHCrefrange] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewlabel] = ACTIONS(12345), + [anon_sym_BSLASHnewcommand] = ACTIONS(12345), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12345), + [anon_sym_BSLASHgls] = ACTIONS(12345), + [anon_sym_BSLASHGls] = ACTIONS(12345), + [anon_sym_BSLASHGLS] = ACTIONS(12345), + [anon_sym_BSLASHglspl] = ACTIONS(12345), + [anon_sym_BSLASHGlspl] = ACTIONS(12345), + [anon_sym_BSLASHGLSpl] = ACTIONS(12345), + [anon_sym_BSLASHglsdisp] = ACTIONS(12345), + [anon_sym_BSLASHglslink] = ACTIONS(12345), + [anon_sym_BSLASHglstext] = ACTIONS(12345), + [anon_sym_BSLASHGlstext] = ACTIONS(12345), + [anon_sym_BSLASHGLStext] = ACTIONS(12345), + [anon_sym_BSLASHglsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12345), + [anon_sym_BSLASHglsplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSplural] = ACTIONS(12345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHglsname] = ACTIONS(12345), + [anon_sym_BSLASHGlsname] = ACTIONS(12345), + [anon_sym_BSLASHGLSname] = ACTIONS(12345), + [anon_sym_BSLASHglssymbol] = ACTIONS(12345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12345), + [anon_sym_BSLASHglsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12345), + [anon_sym_BSLASHglsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12345), + [anon_sym_BSLASHglsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12345), + [anon_sym_BSLASHglsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12345), + [anon_sym_BSLASHglsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12345), + [anon_sym_BSLASHnewacronym] = ACTIONS(12345), + [anon_sym_BSLASHacrshort] = ACTIONS(12345), + [anon_sym_BSLASHAcrshort] = ACTIONS(12345), + [anon_sym_BSLASHACRshort] = ACTIONS(12345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12345), + [anon_sym_BSLASHacrlong] = ACTIONS(12345), + [anon_sym_BSLASHAcrlong] = ACTIONS(12345), + [anon_sym_BSLASHACRlong] = ACTIONS(12345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12345), + [anon_sym_BSLASHacrfull] = ACTIONS(12345), + [anon_sym_BSLASHAcrfull] = ACTIONS(12345), + [anon_sym_BSLASHACRfull] = ACTIONS(12345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12345), + [anon_sym_BSLASHacs] = ACTIONS(12345), + [anon_sym_BSLASHAcs] = ACTIONS(12345), + [anon_sym_BSLASHacsp] = ACTIONS(12345), + [anon_sym_BSLASHAcsp] = ACTIONS(12345), + [anon_sym_BSLASHacl] = ACTIONS(12345), + [anon_sym_BSLASHAcl] = ACTIONS(12345), + [anon_sym_BSLASHaclp] = ACTIONS(12345), + [anon_sym_BSLASHAclp] = ACTIONS(12345), + [anon_sym_BSLASHacf] = ACTIONS(12345), + [anon_sym_BSLASHAcf] = ACTIONS(12345), + [anon_sym_BSLASHacfp] = ACTIONS(12345), + [anon_sym_BSLASHAcfp] = ACTIONS(12345), + [anon_sym_BSLASHac] = ACTIONS(12345), + [anon_sym_BSLASHAc] = ACTIONS(12345), + [anon_sym_BSLASHacp] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12345), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12345), + [anon_sym_BSLASHcolor] = ACTIONS(12345), + [anon_sym_BSLASHcolorbox] = ACTIONS(12345), + [anon_sym_BSLASHtextcolor] = ACTIONS(12345), + [anon_sym_BSLASHpagecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12345), + }, + [1363] = { + [sym_generic_command_name] = ACTIONS(12128), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12128), + [aux_sym_subsubsection_token1] = ACTIONS(12128), + [aux_sym_paragraph_token1] = ACTIONS(12128), + [aux_sym_subparagraph_token1] = ACTIONS(12128), + [anon_sym_BSLASHitem] = ACTIONS(12128), + [anon_sym_LBRACK] = ACTIONS(12126), + [anon_sym_RBRACK] = ACTIONS(12126), + [anon_sym_LBRACE] = ACTIONS(12126), + [anon_sym_RBRACE] = ACTIONS(12126), + [anon_sym_LPAREN] = ACTIONS(12126), + [anon_sym_COMMA] = ACTIONS(12126), + [anon_sym_EQ] = ACTIONS(12126), + [sym_word] = ACTIONS(12126), + [sym_param] = ACTIONS(12126), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12126), + [anon_sym_DOLLAR] = ACTIONS(12128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12126), + [anon_sym_BSLASHbegin] = ACTIONS(12128), + [anon_sym_BSLASHcaption] = ACTIONS(12128), + [anon_sym_BSLASHcite] = ACTIONS(12128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCite] = ACTIONS(12128), + [anon_sym_BSLASHnocite] = ACTIONS(12128), + [anon_sym_BSLASHcitet] = ACTIONS(12128), + [anon_sym_BSLASHcitep] = ACTIONS(12128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteauthor] = ACTIONS(12128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitetitle] = ACTIONS(12128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteyear] = ACTIONS(12128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitedate] = ACTIONS(12128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteurl] = ACTIONS(12128), + [anon_sym_BSLASHfullcite] = ACTIONS(12128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12128), + [anon_sym_BSLASHcitealt] = ACTIONS(12128), + [anon_sym_BSLASHcitealp] = ACTIONS(12128), + [anon_sym_BSLASHcitetext] = ACTIONS(12128), + [anon_sym_BSLASHparencite] = ACTIONS(12128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHParencite] = ACTIONS(12128), + [anon_sym_BSLASHfootcite] = ACTIONS(12128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12128), + [anon_sym_BSLASHtextcite] = ACTIONS(12128), + [anon_sym_BSLASHTextcite] = ACTIONS(12128), + [anon_sym_BSLASHsmartcite] = ACTIONS(12128), + [anon_sym_BSLASHSmartcite] = ACTIONS(12128), + [anon_sym_BSLASHsupercite] = ACTIONS(12128), + [anon_sym_BSLASHautocite] = ACTIONS(12128), + [anon_sym_BSLASHAutocite] = ACTIONS(12128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHvolcite] = ACTIONS(12128), + [anon_sym_BSLASHVolcite] = ACTIONS(12128), + [anon_sym_BSLASHpvolcite] = ACTIONS(12128), + [anon_sym_BSLASHPvolcite] = ACTIONS(12128), + [anon_sym_BSLASHfvolcite] = ACTIONS(12128), + [anon_sym_BSLASHftvolcite] = ACTIONS(12128), + [anon_sym_BSLASHsvolcite] = ACTIONS(12128), + [anon_sym_BSLASHSvolcite] = ACTIONS(12128), + [anon_sym_BSLASHtvolcite] = ACTIONS(12128), + [anon_sym_BSLASHTvolcite] = ACTIONS(12128), + [anon_sym_BSLASHavolcite] = ACTIONS(12128), + [anon_sym_BSLASHAvolcite] = ACTIONS(12128), + [anon_sym_BSLASHnotecite] = ACTIONS(12128), + [anon_sym_BSLASHpnotecite] = ACTIONS(12128), + [anon_sym_BSLASHPnotecite] = ACTIONS(12128), + [anon_sym_BSLASHfnotecite] = ACTIONS(12128), + [anon_sym_BSLASHusepackage] = ACTIONS(12128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12128), + [anon_sym_BSLASHinclude] = ACTIONS(12128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12128), + [anon_sym_BSLASHinput] = ACTIONS(12128), + [anon_sym_BSLASHsubfile] = ACTIONS(12128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12128), + [anon_sym_BSLASHbibliography] = ACTIONS(12128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12128), + [anon_sym_BSLASHincludesvg] = ACTIONS(12128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12128), + [anon_sym_BSLASHimport] = ACTIONS(12128), + [anon_sym_BSLASHsubimport] = ACTIONS(12128), + [anon_sym_BSLASHinputfrom] = ACTIONS(12128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12128), + [anon_sym_BSLASHincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHlabel] = ACTIONS(12128), + [anon_sym_BSLASHref] = ACTIONS(12128), + [anon_sym_BSLASHvref] = ACTIONS(12128), + [anon_sym_BSLASHVref] = ACTIONS(12128), + [anon_sym_BSLASHautoref] = ACTIONS(12128), + [anon_sym_BSLASHpageref] = ACTIONS(12128), + [anon_sym_BSLASHcref] = ACTIONS(12128), + [anon_sym_BSLASHCref] = ACTIONS(12128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnameCref] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHlabelcref] = ACTIONS(12128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12128), + [anon_sym_BSLASHeqref] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange] = ACTIONS(12128), + [anon_sym_BSLASHCrefrange] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewlabel] = ACTIONS(12128), + [anon_sym_BSLASHnewcommand] = ACTIONS(12128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12128), + [anon_sym_BSLASHgls] = ACTIONS(12128), + [anon_sym_BSLASHGls] = ACTIONS(12128), + [anon_sym_BSLASHGLS] = ACTIONS(12128), + [anon_sym_BSLASHglspl] = ACTIONS(12128), + [anon_sym_BSLASHGlspl] = ACTIONS(12128), + [anon_sym_BSLASHGLSpl] = ACTIONS(12128), + [anon_sym_BSLASHglsdisp] = ACTIONS(12128), + [anon_sym_BSLASHglslink] = ACTIONS(12128), + [anon_sym_BSLASHglstext] = ACTIONS(12128), + [anon_sym_BSLASHGlstext] = ACTIONS(12128), + [anon_sym_BSLASHGLStext] = ACTIONS(12128), + [anon_sym_BSLASHglsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12128), + [anon_sym_BSLASHglsplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSplural] = ACTIONS(12128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHglsname] = ACTIONS(12128), + [anon_sym_BSLASHGlsname] = ACTIONS(12128), + [anon_sym_BSLASHGLSname] = ACTIONS(12128), + [anon_sym_BSLASHglssymbol] = ACTIONS(12128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12128), + [anon_sym_BSLASHglsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12128), + [anon_sym_BSLASHglsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12128), + [anon_sym_BSLASHglsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12128), + [anon_sym_BSLASHglsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12128), + [anon_sym_BSLASHglsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12128), + [anon_sym_BSLASHnewacronym] = ACTIONS(12128), + [anon_sym_BSLASHacrshort] = ACTIONS(12128), + [anon_sym_BSLASHAcrshort] = ACTIONS(12128), + [anon_sym_BSLASHACRshort] = ACTIONS(12128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12128), + [anon_sym_BSLASHacrlong] = ACTIONS(12128), + [anon_sym_BSLASHAcrlong] = ACTIONS(12128), + [anon_sym_BSLASHACRlong] = ACTIONS(12128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12128), + [anon_sym_BSLASHacrfull] = ACTIONS(12128), + [anon_sym_BSLASHAcrfull] = ACTIONS(12128), + [anon_sym_BSLASHACRfull] = ACTIONS(12128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12128), + [anon_sym_BSLASHacs] = ACTIONS(12128), + [anon_sym_BSLASHAcs] = ACTIONS(12128), + [anon_sym_BSLASHacsp] = ACTIONS(12128), + [anon_sym_BSLASHAcsp] = ACTIONS(12128), + [anon_sym_BSLASHacl] = ACTIONS(12128), + [anon_sym_BSLASHAcl] = ACTIONS(12128), + [anon_sym_BSLASHaclp] = ACTIONS(12128), + [anon_sym_BSLASHAclp] = ACTIONS(12128), + [anon_sym_BSLASHacf] = ACTIONS(12128), + [anon_sym_BSLASHAcf] = ACTIONS(12128), + [anon_sym_BSLASHacfp] = ACTIONS(12128), + [anon_sym_BSLASHAcfp] = ACTIONS(12128), + [anon_sym_BSLASHac] = ACTIONS(12128), + [anon_sym_BSLASHAc] = ACTIONS(12128), + [anon_sym_BSLASHacp] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12128), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12128), + [anon_sym_BSLASHcolor] = ACTIONS(12128), + [anon_sym_BSLASHcolorbox] = ACTIONS(12128), + [anon_sym_BSLASHtextcolor] = ACTIONS(12128), + [anon_sym_BSLASHpagecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12128), + }, + [1364] = { + [sym_brace_group] = STATE(1366), + [sym_bracket_group] = STATE(1366), + [sym_paren_group] = STATE(1366), + [aux_sym_generic_command_repeat1] = STATE(1366), + [sym_generic_command_name] = ACTIONS(11990), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(11990), + [anon_sym_LBRACK] = ACTIONS(12741), + [anon_sym_RBRACK] = ACTIONS(11988), + [anon_sym_LBRACE] = ACTIONS(11297), + [anon_sym_RBRACE] = ACTIONS(11988), + [anon_sym_LPAREN] = ACTIONS(12743), + [anon_sym_COMMA] = ACTIONS(11988), + [anon_sym_EQ] = ACTIONS(11988), + [sym_word] = ACTIONS(11988), + [sym_param] = ACTIONS(11988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11988), + [anon_sym_DOLLAR] = ACTIONS(11990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11988), + [anon_sym_BSLASHbegin] = ACTIONS(11990), + [anon_sym_BSLASHcaption] = ACTIONS(11990), + [anon_sym_BSLASHcite] = ACTIONS(11990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCite] = ACTIONS(11990), + [anon_sym_BSLASHnocite] = ACTIONS(11990), + [anon_sym_BSLASHcitet] = ACTIONS(11990), + [anon_sym_BSLASHcitep] = ACTIONS(11990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteauthor] = ACTIONS(11990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitetitle] = ACTIONS(11990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteyear] = ACTIONS(11990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitedate] = ACTIONS(11990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteurl] = ACTIONS(11990), + [anon_sym_BSLASHfullcite] = ACTIONS(11990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11990), + [anon_sym_BSLASHcitealt] = ACTIONS(11990), + [anon_sym_BSLASHcitealp] = ACTIONS(11990), + [anon_sym_BSLASHcitetext] = ACTIONS(11990), + [anon_sym_BSLASHparencite] = ACTIONS(11990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHParencite] = ACTIONS(11990), + [anon_sym_BSLASHfootcite] = ACTIONS(11990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11990), + [anon_sym_BSLASHtextcite] = ACTIONS(11990), + [anon_sym_BSLASHTextcite] = ACTIONS(11990), + [anon_sym_BSLASHsmartcite] = ACTIONS(11990), + [anon_sym_BSLASHSmartcite] = ACTIONS(11990), + [anon_sym_BSLASHsupercite] = ACTIONS(11990), + [anon_sym_BSLASHautocite] = ACTIONS(11990), + [anon_sym_BSLASHAutocite] = ACTIONS(11990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHvolcite] = ACTIONS(11990), + [anon_sym_BSLASHVolcite] = ACTIONS(11990), + [anon_sym_BSLASHpvolcite] = ACTIONS(11990), + [anon_sym_BSLASHPvolcite] = ACTIONS(11990), + [anon_sym_BSLASHfvolcite] = ACTIONS(11990), + [anon_sym_BSLASHftvolcite] = ACTIONS(11990), + [anon_sym_BSLASHsvolcite] = ACTIONS(11990), + [anon_sym_BSLASHSvolcite] = ACTIONS(11990), + [anon_sym_BSLASHtvolcite] = ACTIONS(11990), + [anon_sym_BSLASHTvolcite] = ACTIONS(11990), + [anon_sym_BSLASHavolcite] = ACTIONS(11990), + [anon_sym_BSLASHAvolcite] = ACTIONS(11990), + [anon_sym_BSLASHnotecite] = ACTIONS(11990), + [anon_sym_BSLASHpnotecite] = ACTIONS(11990), + [anon_sym_BSLASHPnotecite] = ACTIONS(11990), + [anon_sym_BSLASHfnotecite] = ACTIONS(11990), + [anon_sym_BSLASHusepackage] = ACTIONS(11990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11990), + [anon_sym_BSLASHinclude] = ACTIONS(11990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11990), + [anon_sym_BSLASHinput] = ACTIONS(11990), + [anon_sym_BSLASHsubfile] = ACTIONS(11990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11990), + [anon_sym_BSLASHbibliography] = ACTIONS(11990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11990), + [anon_sym_BSLASHincludesvg] = ACTIONS(11990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11990), + [anon_sym_BSLASHimport] = ACTIONS(11990), + [anon_sym_BSLASHsubimport] = ACTIONS(11990), + [anon_sym_BSLASHinputfrom] = ACTIONS(11990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11990), + [anon_sym_BSLASHincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHlabel] = ACTIONS(11990), + [anon_sym_BSLASHref] = ACTIONS(11990), + [anon_sym_BSLASHvref] = ACTIONS(11990), + [anon_sym_BSLASHVref] = ACTIONS(11990), + [anon_sym_BSLASHautoref] = ACTIONS(11990), + [anon_sym_BSLASHpageref] = ACTIONS(11990), + [anon_sym_BSLASHcref] = ACTIONS(11990), + [anon_sym_BSLASHCref] = ACTIONS(11990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnameCref] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHlabelcref] = ACTIONS(11990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11990), + [anon_sym_BSLASHeqref] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange] = ACTIONS(11990), + [anon_sym_BSLASHCrefrange] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewlabel] = ACTIONS(11990), + [anon_sym_BSLASHnewcommand] = ACTIONS(11990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11990), + [anon_sym_BSLASHgls] = ACTIONS(11990), + [anon_sym_BSLASHGls] = ACTIONS(11990), + [anon_sym_BSLASHGLS] = ACTIONS(11990), + [anon_sym_BSLASHglspl] = ACTIONS(11990), + [anon_sym_BSLASHGlspl] = ACTIONS(11990), + [anon_sym_BSLASHGLSpl] = ACTIONS(11990), + [anon_sym_BSLASHglsdisp] = ACTIONS(11990), + [anon_sym_BSLASHglslink] = ACTIONS(11990), + [anon_sym_BSLASHglstext] = ACTIONS(11990), + [anon_sym_BSLASHGlstext] = ACTIONS(11990), + [anon_sym_BSLASHGLStext] = ACTIONS(11990), + [anon_sym_BSLASHglsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11990), + [anon_sym_BSLASHglsplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSplural] = ACTIONS(11990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHglsname] = ACTIONS(11990), + [anon_sym_BSLASHGlsname] = ACTIONS(11990), + [anon_sym_BSLASHGLSname] = ACTIONS(11990), + [anon_sym_BSLASHglssymbol] = ACTIONS(11990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11990), + [anon_sym_BSLASHglsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11990), + [anon_sym_BSLASHglsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11990), + [anon_sym_BSLASHglsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11990), + [anon_sym_BSLASHglsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11990), + [anon_sym_BSLASHglsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11990), + [anon_sym_BSLASHnewacronym] = ACTIONS(11990), + [anon_sym_BSLASHacrshort] = ACTIONS(11990), + [anon_sym_BSLASHAcrshort] = ACTIONS(11990), + [anon_sym_BSLASHACRshort] = ACTIONS(11990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11990), + [anon_sym_BSLASHacrlong] = ACTIONS(11990), + [anon_sym_BSLASHAcrlong] = ACTIONS(11990), + [anon_sym_BSLASHACRlong] = ACTIONS(11990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11990), + [anon_sym_BSLASHacrfull] = ACTIONS(11990), + [anon_sym_BSLASHAcrfull] = ACTIONS(11990), + [anon_sym_BSLASHACRfull] = ACTIONS(11990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11990), + [anon_sym_BSLASHacs] = ACTIONS(11990), + [anon_sym_BSLASHAcs] = ACTIONS(11990), + [anon_sym_BSLASHacsp] = ACTIONS(11990), + [anon_sym_BSLASHAcsp] = ACTIONS(11990), + [anon_sym_BSLASHacl] = ACTIONS(11990), + [anon_sym_BSLASHAcl] = ACTIONS(11990), + [anon_sym_BSLASHaclp] = ACTIONS(11990), + [anon_sym_BSLASHAclp] = ACTIONS(11990), + [anon_sym_BSLASHacf] = ACTIONS(11990), + [anon_sym_BSLASHAcf] = ACTIONS(11990), + [anon_sym_BSLASHacfp] = ACTIONS(11990), + [anon_sym_BSLASHAcfp] = ACTIONS(11990), + [anon_sym_BSLASHac] = ACTIONS(11990), + [anon_sym_BSLASHAc] = ACTIONS(11990), + [anon_sym_BSLASHacp] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11990), + [anon_sym_BSLASHcolor] = ACTIONS(11990), + [anon_sym_BSLASHcolorbox] = ACTIONS(11990), + [anon_sym_BSLASHtextcolor] = ACTIONS(11990), + [anon_sym_BSLASHpagecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11990), + }, + [1365] = { + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(123), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [1366] = { + [sym_brace_group] = STATE(1361), + [sym_bracket_group] = STATE(1361), + [sym_paren_group] = STATE(1361), + [aux_sym_generic_command_repeat1] = STATE(1361), + [sym_generic_command_name] = ACTIONS(11998), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(11998), + [anon_sym_LBRACK] = ACTIONS(12741), + [anon_sym_RBRACK] = ACTIONS(11996), + [anon_sym_LBRACE] = ACTIONS(11297), + [anon_sym_RBRACE] = ACTIONS(11996), + [anon_sym_LPAREN] = ACTIONS(12743), + [anon_sym_COMMA] = ACTIONS(11996), + [anon_sym_EQ] = ACTIONS(11996), + [sym_word] = ACTIONS(11996), + [sym_param] = ACTIONS(11996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11996), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11996), + [anon_sym_DOLLAR] = ACTIONS(11998), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11996), + [anon_sym_BSLASHbegin] = ACTIONS(11998), + [anon_sym_BSLASHcaption] = ACTIONS(11998), + [anon_sym_BSLASHcite] = ACTIONS(11998), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCite] = ACTIONS(11998), + [anon_sym_BSLASHnocite] = ACTIONS(11998), + [anon_sym_BSLASHcitet] = ACTIONS(11998), + [anon_sym_BSLASHcitep] = ACTIONS(11998), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteauthor] = ACTIONS(11998), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11998), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitetitle] = ACTIONS(11998), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteyear] = ACTIONS(11998), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitedate] = ACTIONS(11998), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteurl] = ACTIONS(11998), + [anon_sym_BSLASHfullcite] = ACTIONS(11998), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11998), + [anon_sym_BSLASHcitealt] = ACTIONS(11998), + [anon_sym_BSLASHcitealp] = ACTIONS(11998), + [anon_sym_BSLASHcitetext] = ACTIONS(11998), + [anon_sym_BSLASHparencite] = ACTIONS(11998), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHParencite] = ACTIONS(11998), + [anon_sym_BSLASHfootcite] = ACTIONS(11998), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11998), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11998), + [anon_sym_BSLASHtextcite] = ACTIONS(11998), + [anon_sym_BSLASHTextcite] = ACTIONS(11998), + [anon_sym_BSLASHsmartcite] = ACTIONS(11998), + [anon_sym_BSLASHSmartcite] = ACTIONS(11998), + [anon_sym_BSLASHsupercite] = ACTIONS(11998), + [anon_sym_BSLASHautocite] = ACTIONS(11998), + [anon_sym_BSLASHAutocite] = ACTIONS(11998), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHvolcite] = ACTIONS(11998), + [anon_sym_BSLASHVolcite] = ACTIONS(11998), + [anon_sym_BSLASHpvolcite] = ACTIONS(11998), + [anon_sym_BSLASHPvolcite] = ACTIONS(11998), + [anon_sym_BSLASHfvolcite] = ACTIONS(11998), + [anon_sym_BSLASHftvolcite] = ACTIONS(11998), + [anon_sym_BSLASHsvolcite] = ACTIONS(11998), + [anon_sym_BSLASHSvolcite] = ACTIONS(11998), + [anon_sym_BSLASHtvolcite] = ACTIONS(11998), + [anon_sym_BSLASHTvolcite] = ACTIONS(11998), + [anon_sym_BSLASHavolcite] = ACTIONS(11998), + [anon_sym_BSLASHAvolcite] = ACTIONS(11998), + [anon_sym_BSLASHnotecite] = ACTIONS(11998), + [anon_sym_BSLASHpnotecite] = ACTIONS(11998), + [anon_sym_BSLASHPnotecite] = ACTIONS(11998), + [anon_sym_BSLASHfnotecite] = ACTIONS(11998), + [anon_sym_BSLASHusepackage] = ACTIONS(11998), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11998), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11998), + [anon_sym_BSLASHinclude] = ACTIONS(11998), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11998), + [anon_sym_BSLASHinput] = ACTIONS(11998), + [anon_sym_BSLASHsubfile] = ACTIONS(11998), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11998), + [anon_sym_BSLASHbibliography] = ACTIONS(11998), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11998), + [anon_sym_BSLASHincludesvg] = ACTIONS(11998), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11998), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11998), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11998), + [anon_sym_BSLASHimport] = ACTIONS(11998), + [anon_sym_BSLASHsubimport] = ACTIONS(11998), + [anon_sym_BSLASHinputfrom] = ACTIONS(11998), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11998), + [anon_sym_BSLASHincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHlabel] = ACTIONS(11998), + [anon_sym_BSLASHref] = ACTIONS(11998), + [anon_sym_BSLASHvref] = ACTIONS(11998), + [anon_sym_BSLASHVref] = ACTIONS(11998), + [anon_sym_BSLASHautoref] = ACTIONS(11998), + [anon_sym_BSLASHpageref] = ACTIONS(11998), + [anon_sym_BSLASHcref] = ACTIONS(11998), + [anon_sym_BSLASHCref] = ACTIONS(11998), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnameCref] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHlabelcref] = ACTIONS(11998), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11998), + [anon_sym_BSLASHeqref] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange] = ACTIONS(11998), + [anon_sym_BSLASHCrefrange] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewlabel] = ACTIONS(11998), + [anon_sym_BSLASHnewcommand] = ACTIONS(11998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11998), + [anon_sym_BSLASHgls] = ACTIONS(11998), + [anon_sym_BSLASHGls] = ACTIONS(11998), + [anon_sym_BSLASHGLS] = ACTIONS(11998), + [anon_sym_BSLASHglspl] = ACTIONS(11998), + [anon_sym_BSLASHGlspl] = ACTIONS(11998), + [anon_sym_BSLASHGLSpl] = ACTIONS(11998), + [anon_sym_BSLASHglsdisp] = ACTIONS(11998), + [anon_sym_BSLASHglslink] = ACTIONS(11998), + [anon_sym_BSLASHglstext] = ACTIONS(11998), + [anon_sym_BSLASHGlstext] = ACTIONS(11998), + [anon_sym_BSLASHGLStext] = ACTIONS(11998), + [anon_sym_BSLASHglsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11998), + [anon_sym_BSLASHglsplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSplural] = ACTIONS(11998), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHglsname] = ACTIONS(11998), + [anon_sym_BSLASHGlsname] = ACTIONS(11998), + [anon_sym_BSLASHGLSname] = ACTIONS(11998), + [anon_sym_BSLASHglssymbol] = ACTIONS(11998), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11998), + [anon_sym_BSLASHglsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11998), + [anon_sym_BSLASHglsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11998), + [anon_sym_BSLASHglsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11998), + [anon_sym_BSLASHglsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11998), + [anon_sym_BSLASHglsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11998), + [anon_sym_BSLASHnewacronym] = ACTIONS(11998), + [anon_sym_BSLASHacrshort] = ACTIONS(11998), + [anon_sym_BSLASHAcrshort] = ACTIONS(11998), + [anon_sym_BSLASHACRshort] = ACTIONS(11998), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11998), + [anon_sym_BSLASHacrlong] = ACTIONS(11998), + [anon_sym_BSLASHAcrlong] = ACTIONS(11998), + [anon_sym_BSLASHACRlong] = ACTIONS(11998), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11998), + [anon_sym_BSLASHacrfull] = ACTIONS(11998), + [anon_sym_BSLASHAcrfull] = ACTIONS(11998), + [anon_sym_BSLASHACRfull] = ACTIONS(11998), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11998), + [anon_sym_BSLASHacs] = ACTIONS(11998), + [anon_sym_BSLASHAcs] = ACTIONS(11998), + [anon_sym_BSLASHacsp] = ACTIONS(11998), + [anon_sym_BSLASHAcsp] = ACTIONS(11998), + [anon_sym_BSLASHacl] = ACTIONS(11998), + [anon_sym_BSLASHAcl] = ACTIONS(11998), + [anon_sym_BSLASHaclp] = ACTIONS(11998), + [anon_sym_BSLASHAclp] = ACTIONS(11998), + [anon_sym_BSLASHacf] = ACTIONS(11998), + [anon_sym_BSLASHAcf] = ACTIONS(11998), + [anon_sym_BSLASHacfp] = ACTIONS(11998), + [anon_sym_BSLASHAcfp] = ACTIONS(11998), + [anon_sym_BSLASHac] = ACTIONS(11998), + [anon_sym_BSLASHAc] = ACTIONS(11998), + [anon_sym_BSLASHacp] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11998), + [anon_sym_BSLASHcolor] = ACTIONS(11998), + [anon_sym_BSLASHcolorbox] = ACTIONS(11998), + [anon_sym_BSLASHtextcolor] = ACTIONS(11998), + [anon_sym_BSLASHpagecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11998), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11998), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11998), + }, + [1367] = { + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(127), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [1368] = { + [sym_generic_command_name] = ACTIONS(12136), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12136), + [aux_sym_subsubsection_token1] = ACTIONS(12136), + [aux_sym_paragraph_token1] = ACTIONS(12136), + [aux_sym_subparagraph_token1] = ACTIONS(12136), + [anon_sym_BSLASHitem] = ACTIONS(12136), + [anon_sym_LBRACK] = ACTIONS(12134), + [anon_sym_RBRACK] = ACTIONS(12134), + [anon_sym_LBRACE] = ACTIONS(12134), + [anon_sym_RBRACE] = ACTIONS(12134), + [anon_sym_LPAREN] = ACTIONS(12134), + [anon_sym_COMMA] = ACTIONS(12134), + [anon_sym_EQ] = ACTIONS(12134), + [sym_word] = ACTIONS(12134), + [sym_param] = ACTIONS(12134), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12134), + [anon_sym_DOLLAR] = ACTIONS(12136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12134), + [anon_sym_BSLASHbegin] = ACTIONS(12136), + [anon_sym_BSLASHcaption] = ACTIONS(12136), + [anon_sym_BSLASHcite] = ACTIONS(12136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCite] = ACTIONS(12136), + [anon_sym_BSLASHnocite] = ACTIONS(12136), + [anon_sym_BSLASHcitet] = ACTIONS(12136), + [anon_sym_BSLASHcitep] = ACTIONS(12136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteauthor] = ACTIONS(12136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitetitle] = ACTIONS(12136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteyear] = ACTIONS(12136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitedate] = ACTIONS(12136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteurl] = ACTIONS(12136), + [anon_sym_BSLASHfullcite] = ACTIONS(12136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12136), + [anon_sym_BSLASHcitealt] = ACTIONS(12136), + [anon_sym_BSLASHcitealp] = ACTIONS(12136), + [anon_sym_BSLASHcitetext] = ACTIONS(12136), + [anon_sym_BSLASHparencite] = ACTIONS(12136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHParencite] = ACTIONS(12136), + [anon_sym_BSLASHfootcite] = ACTIONS(12136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12136), + [anon_sym_BSLASHtextcite] = ACTIONS(12136), + [anon_sym_BSLASHTextcite] = ACTIONS(12136), + [anon_sym_BSLASHsmartcite] = ACTIONS(12136), + [anon_sym_BSLASHSmartcite] = ACTIONS(12136), + [anon_sym_BSLASHsupercite] = ACTIONS(12136), + [anon_sym_BSLASHautocite] = ACTIONS(12136), + [anon_sym_BSLASHAutocite] = ACTIONS(12136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHvolcite] = ACTIONS(12136), + [anon_sym_BSLASHVolcite] = ACTIONS(12136), + [anon_sym_BSLASHpvolcite] = ACTIONS(12136), + [anon_sym_BSLASHPvolcite] = ACTIONS(12136), + [anon_sym_BSLASHfvolcite] = ACTIONS(12136), + [anon_sym_BSLASHftvolcite] = ACTIONS(12136), + [anon_sym_BSLASHsvolcite] = ACTIONS(12136), + [anon_sym_BSLASHSvolcite] = ACTIONS(12136), + [anon_sym_BSLASHtvolcite] = ACTIONS(12136), + [anon_sym_BSLASHTvolcite] = ACTIONS(12136), + [anon_sym_BSLASHavolcite] = ACTIONS(12136), + [anon_sym_BSLASHAvolcite] = ACTIONS(12136), + [anon_sym_BSLASHnotecite] = ACTIONS(12136), + [anon_sym_BSLASHpnotecite] = ACTIONS(12136), + [anon_sym_BSLASHPnotecite] = ACTIONS(12136), + [anon_sym_BSLASHfnotecite] = ACTIONS(12136), + [anon_sym_BSLASHusepackage] = ACTIONS(12136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12136), + [anon_sym_BSLASHinclude] = ACTIONS(12136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12136), + [anon_sym_BSLASHinput] = ACTIONS(12136), + [anon_sym_BSLASHsubfile] = ACTIONS(12136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12136), + [anon_sym_BSLASHbibliography] = ACTIONS(12136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12136), + [anon_sym_BSLASHincludesvg] = ACTIONS(12136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12136), + [anon_sym_BSLASHimport] = ACTIONS(12136), + [anon_sym_BSLASHsubimport] = ACTIONS(12136), + [anon_sym_BSLASHinputfrom] = ACTIONS(12136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12136), + [anon_sym_BSLASHincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHlabel] = ACTIONS(12136), + [anon_sym_BSLASHref] = ACTIONS(12136), + [anon_sym_BSLASHvref] = ACTIONS(12136), + [anon_sym_BSLASHVref] = ACTIONS(12136), + [anon_sym_BSLASHautoref] = ACTIONS(12136), + [anon_sym_BSLASHpageref] = ACTIONS(12136), + [anon_sym_BSLASHcref] = ACTIONS(12136), + [anon_sym_BSLASHCref] = ACTIONS(12136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnameCref] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHlabelcref] = ACTIONS(12136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12136), + [anon_sym_BSLASHeqref] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange] = ACTIONS(12136), + [anon_sym_BSLASHCrefrange] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewlabel] = ACTIONS(12136), + [anon_sym_BSLASHnewcommand] = ACTIONS(12136), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12136), + [anon_sym_BSLASHgls] = ACTIONS(12136), + [anon_sym_BSLASHGls] = ACTIONS(12136), + [anon_sym_BSLASHGLS] = ACTIONS(12136), + [anon_sym_BSLASHglspl] = ACTIONS(12136), + [anon_sym_BSLASHGlspl] = ACTIONS(12136), + [anon_sym_BSLASHGLSpl] = ACTIONS(12136), + [anon_sym_BSLASHglsdisp] = ACTIONS(12136), + [anon_sym_BSLASHglslink] = ACTIONS(12136), + [anon_sym_BSLASHglstext] = ACTIONS(12136), + [anon_sym_BSLASHGlstext] = ACTIONS(12136), + [anon_sym_BSLASHGLStext] = ACTIONS(12136), + [anon_sym_BSLASHglsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12136), + [anon_sym_BSLASHglsplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSplural] = ACTIONS(12136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHglsname] = ACTIONS(12136), + [anon_sym_BSLASHGlsname] = ACTIONS(12136), + [anon_sym_BSLASHGLSname] = ACTIONS(12136), + [anon_sym_BSLASHglssymbol] = ACTIONS(12136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12136), + [anon_sym_BSLASHglsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12136), + [anon_sym_BSLASHglsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12136), + [anon_sym_BSLASHglsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12136), + [anon_sym_BSLASHglsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12136), + [anon_sym_BSLASHglsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12136), + [anon_sym_BSLASHnewacronym] = ACTIONS(12136), + [anon_sym_BSLASHacrshort] = ACTIONS(12136), + [anon_sym_BSLASHAcrshort] = ACTIONS(12136), + [anon_sym_BSLASHACRshort] = ACTIONS(12136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12136), + [anon_sym_BSLASHacrlong] = ACTIONS(12136), + [anon_sym_BSLASHAcrlong] = ACTIONS(12136), + [anon_sym_BSLASHACRlong] = ACTIONS(12136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12136), + [anon_sym_BSLASHacrfull] = ACTIONS(12136), + [anon_sym_BSLASHAcrfull] = ACTIONS(12136), + [anon_sym_BSLASHACRfull] = ACTIONS(12136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12136), + [anon_sym_BSLASHacs] = ACTIONS(12136), + [anon_sym_BSLASHAcs] = ACTIONS(12136), + [anon_sym_BSLASHacsp] = ACTIONS(12136), + [anon_sym_BSLASHAcsp] = ACTIONS(12136), + [anon_sym_BSLASHacl] = ACTIONS(12136), + [anon_sym_BSLASHAcl] = ACTIONS(12136), + [anon_sym_BSLASHaclp] = ACTIONS(12136), + [anon_sym_BSLASHAclp] = ACTIONS(12136), + [anon_sym_BSLASHacf] = ACTIONS(12136), + [anon_sym_BSLASHAcf] = ACTIONS(12136), + [anon_sym_BSLASHacfp] = ACTIONS(12136), + [anon_sym_BSLASHAcfp] = ACTIONS(12136), + [anon_sym_BSLASHac] = ACTIONS(12136), + [anon_sym_BSLASHAc] = ACTIONS(12136), + [anon_sym_BSLASHacp] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12136), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12136), + [anon_sym_BSLASHcolor] = ACTIONS(12136), + [anon_sym_BSLASHcolorbox] = ACTIONS(12136), + [anon_sym_BSLASHtextcolor] = ACTIONS(12136), + [anon_sym_BSLASHpagecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12136), + }, + [1369] = { + [sym_generic_command_name] = ACTIONS(12140), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12140), + [aux_sym_subsubsection_token1] = ACTIONS(12140), + [aux_sym_paragraph_token1] = ACTIONS(12140), + [aux_sym_subparagraph_token1] = ACTIONS(12140), + [anon_sym_BSLASHitem] = ACTIONS(12140), + [anon_sym_LBRACK] = ACTIONS(12138), + [anon_sym_RBRACK] = ACTIONS(12138), + [anon_sym_LBRACE] = ACTIONS(12138), + [anon_sym_RBRACE] = ACTIONS(12138), + [anon_sym_LPAREN] = ACTIONS(12138), + [anon_sym_COMMA] = ACTIONS(12138), + [anon_sym_EQ] = ACTIONS(12138), + [sym_word] = ACTIONS(12138), + [sym_param] = ACTIONS(12138), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12138), + [anon_sym_DOLLAR] = ACTIONS(12140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12138), + [anon_sym_BSLASHbegin] = ACTIONS(12140), + [anon_sym_BSLASHcaption] = ACTIONS(12140), + [anon_sym_BSLASHcite] = ACTIONS(12140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCite] = ACTIONS(12140), + [anon_sym_BSLASHnocite] = ACTIONS(12140), + [anon_sym_BSLASHcitet] = ACTIONS(12140), + [anon_sym_BSLASHcitep] = ACTIONS(12140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteauthor] = ACTIONS(12140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitetitle] = ACTIONS(12140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteyear] = ACTIONS(12140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitedate] = ACTIONS(12140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteurl] = ACTIONS(12140), + [anon_sym_BSLASHfullcite] = ACTIONS(12140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12140), + [anon_sym_BSLASHcitealt] = ACTIONS(12140), + [anon_sym_BSLASHcitealp] = ACTIONS(12140), + [anon_sym_BSLASHcitetext] = ACTIONS(12140), + [anon_sym_BSLASHparencite] = ACTIONS(12140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHParencite] = ACTIONS(12140), + [anon_sym_BSLASHfootcite] = ACTIONS(12140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12140), + [anon_sym_BSLASHtextcite] = ACTIONS(12140), + [anon_sym_BSLASHTextcite] = ACTIONS(12140), + [anon_sym_BSLASHsmartcite] = ACTIONS(12140), + [anon_sym_BSLASHSmartcite] = ACTIONS(12140), + [anon_sym_BSLASHsupercite] = ACTIONS(12140), + [anon_sym_BSLASHautocite] = ACTIONS(12140), + [anon_sym_BSLASHAutocite] = ACTIONS(12140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHvolcite] = ACTIONS(12140), + [anon_sym_BSLASHVolcite] = ACTIONS(12140), + [anon_sym_BSLASHpvolcite] = ACTIONS(12140), + [anon_sym_BSLASHPvolcite] = ACTIONS(12140), + [anon_sym_BSLASHfvolcite] = ACTIONS(12140), + [anon_sym_BSLASHftvolcite] = ACTIONS(12140), + [anon_sym_BSLASHsvolcite] = ACTIONS(12140), + [anon_sym_BSLASHSvolcite] = ACTIONS(12140), + [anon_sym_BSLASHtvolcite] = ACTIONS(12140), + [anon_sym_BSLASHTvolcite] = ACTIONS(12140), + [anon_sym_BSLASHavolcite] = ACTIONS(12140), + [anon_sym_BSLASHAvolcite] = ACTIONS(12140), + [anon_sym_BSLASHnotecite] = ACTIONS(12140), + [anon_sym_BSLASHpnotecite] = ACTIONS(12140), + [anon_sym_BSLASHPnotecite] = ACTIONS(12140), + [anon_sym_BSLASHfnotecite] = ACTIONS(12140), + [anon_sym_BSLASHusepackage] = ACTIONS(12140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12140), + [anon_sym_BSLASHinclude] = ACTIONS(12140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12140), + [anon_sym_BSLASHinput] = ACTIONS(12140), + [anon_sym_BSLASHsubfile] = ACTIONS(12140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12140), + [anon_sym_BSLASHbibliography] = ACTIONS(12140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12140), + [anon_sym_BSLASHincludesvg] = ACTIONS(12140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12140), + [anon_sym_BSLASHimport] = ACTIONS(12140), + [anon_sym_BSLASHsubimport] = ACTIONS(12140), + [anon_sym_BSLASHinputfrom] = ACTIONS(12140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12140), + [anon_sym_BSLASHincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHlabel] = ACTIONS(12140), + [anon_sym_BSLASHref] = ACTIONS(12140), + [anon_sym_BSLASHvref] = ACTIONS(12140), + [anon_sym_BSLASHVref] = ACTIONS(12140), + [anon_sym_BSLASHautoref] = ACTIONS(12140), + [anon_sym_BSLASHpageref] = ACTIONS(12140), + [anon_sym_BSLASHcref] = ACTIONS(12140), + [anon_sym_BSLASHCref] = ACTIONS(12140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnameCref] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHlabelcref] = ACTIONS(12140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12140), + [anon_sym_BSLASHeqref] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange] = ACTIONS(12140), + [anon_sym_BSLASHCrefrange] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewlabel] = ACTIONS(12140), + [anon_sym_BSLASHnewcommand] = ACTIONS(12140), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12140), + [anon_sym_BSLASHgls] = ACTIONS(12140), + [anon_sym_BSLASHGls] = ACTIONS(12140), + [anon_sym_BSLASHGLS] = ACTIONS(12140), + [anon_sym_BSLASHglspl] = ACTIONS(12140), + [anon_sym_BSLASHGlspl] = ACTIONS(12140), + [anon_sym_BSLASHGLSpl] = ACTIONS(12140), + [anon_sym_BSLASHglsdisp] = ACTIONS(12140), + [anon_sym_BSLASHglslink] = ACTIONS(12140), + [anon_sym_BSLASHglstext] = ACTIONS(12140), + [anon_sym_BSLASHGlstext] = ACTIONS(12140), + [anon_sym_BSLASHGLStext] = ACTIONS(12140), + [anon_sym_BSLASHglsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12140), + [anon_sym_BSLASHglsplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSplural] = ACTIONS(12140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHglsname] = ACTIONS(12140), + [anon_sym_BSLASHGlsname] = ACTIONS(12140), + [anon_sym_BSLASHGLSname] = ACTIONS(12140), + [anon_sym_BSLASHglssymbol] = ACTIONS(12140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12140), + [anon_sym_BSLASHglsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12140), + [anon_sym_BSLASHglsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12140), + [anon_sym_BSLASHglsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12140), + [anon_sym_BSLASHglsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12140), + [anon_sym_BSLASHglsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12140), + [anon_sym_BSLASHnewacronym] = ACTIONS(12140), + [anon_sym_BSLASHacrshort] = ACTIONS(12140), + [anon_sym_BSLASHAcrshort] = ACTIONS(12140), + [anon_sym_BSLASHACRshort] = ACTIONS(12140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12140), + [anon_sym_BSLASHacrlong] = ACTIONS(12140), + [anon_sym_BSLASHAcrlong] = ACTIONS(12140), + [anon_sym_BSLASHACRlong] = ACTIONS(12140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12140), + [anon_sym_BSLASHacrfull] = ACTIONS(12140), + [anon_sym_BSLASHAcrfull] = ACTIONS(12140), + [anon_sym_BSLASHACRfull] = ACTIONS(12140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12140), + [anon_sym_BSLASHacs] = ACTIONS(12140), + [anon_sym_BSLASHAcs] = ACTIONS(12140), + [anon_sym_BSLASHacsp] = ACTIONS(12140), + [anon_sym_BSLASHAcsp] = ACTIONS(12140), + [anon_sym_BSLASHacl] = ACTIONS(12140), + [anon_sym_BSLASHAcl] = ACTIONS(12140), + [anon_sym_BSLASHaclp] = ACTIONS(12140), + [anon_sym_BSLASHAclp] = ACTIONS(12140), + [anon_sym_BSLASHacf] = ACTIONS(12140), + [anon_sym_BSLASHAcf] = ACTIONS(12140), + [anon_sym_BSLASHacfp] = ACTIONS(12140), + [anon_sym_BSLASHAcfp] = ACTIONS(12140), + [anon_sym_BSLASHac] = ACTIONS(12140), + [anon_sym_BSLASHAc] = ACTIONS(12140), + [anon_sym_BSLASHacp] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12140), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12140), + [anon_sym_BSLASHcolor] = ACTIONS(12140), + [anon_sym_BSLASHcolorbox] = ACTIONS(12140), + [anon_sym_BSLASHtextcolor] = ACTIONS(12140), + [anon_sym_BSLASHpagecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12140), + }, + [1370] = { + [sym_generic_command_name] = ACTIONS(12144), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12144), + [aux_sym_subsubsection_token1] = ACTIONS(12144), + [aux_sym_paragraph_token1] = ACTIONS(12144), + [aux_sym_subparagraph_token1] = ACTIONS(12144), + [anon_sym_BSLASHitem] = ACTIONS(12144), + [anon_sym_LBRACK] = ACTIONS(12142), + [anon_sym_RBRACK] = ACTIONS(12142), + [anon_sym_LBRACE] = ACTIONS(12142), + [anon_sym_RBRACE] = ACTIONS(12142), + [anon_sym_LPAREN] = ACTIONS(12142), + [anon_sym_COMMA] = ACTIONS(12142), + [anon_sym_EQ] = ACTIONS(12142), + [sym_word] = ACTIONS(12142), + [sym_param] = ACTIONS(12142), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12142), + [anon_sym_DOLLAR] = ACTIONS(12144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12142), + [anon_sym_BSLASHbegin] = ACTIONS(12144), + [anon_sym_BSLASHcaption] = ACTIONS(12144), + [anon_sym_BSLASHcite] = ACTIONS(12144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCite] = ACTIONS(12144), + [anon_sym_BSLASHnocite] = ACTIONS(12144), + [anon_sym_BSLASHcitet] = ACTIONS(12144), + [anon_sym_BSLASHcitep] = ACTIONS(12144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteauthor] = ACTIONS(12144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitetitle] = ACTIONS(12144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteyear] = ACTIONS(12144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitedate] = ACTIONS(12144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteurl] = ACTIONS(12144), + [anon_sym_BSLASHfullcite] = ACTIONS(12144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12144), + [anon_sym_BSLASHcitealt] = ACTIONS(12144), + [anon_sym_BSLASHcitealp] = ACTIONS(12144), + [anon_sym_BSLASHcitetext] = ACTIONS(12144), + [anon_sym_BSLASHparencite] = ACTIONS(12144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHParencite] = ACTIONS(12144), + [anon_sym_BSLASHfootcite] = ACTIONS(12144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12144), + [anon_sym_BSLASHtextcite] = ACTIONS(12144), + [anon_sym_BSLASHTextcite] = ACTIONS(12144), + [anon_sym_BSLASHsmartcite] = ACTIONS(12144), + [anon_sym_BSLASHSmartcite] = ACTIONS(12144), + [anon_sym_BSLASHsupercite] = ACTIONS(12144), + [anon_sym_BSLASHautocite] = ACTIONS(12144), + [anon_sym_BSLASHAutocite] = ACTIONS(12144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHvolcite] = ACTIONS(12144), + [anon_sym_BSLASHVolcite] = ACTIONS(12144), + [anon_sym_BSLASHpvolcite] = ACTIONS(12144), + [anon_sym_BSLASHPvolcite] = ACTIONS(12144), + [anon_sym_BSLASHfvolcite] = ACTIONS(12144), + [anon_sym_BSLASHftvolcite] = ACTIONS(12144), + [anon_sym_BSLASHsvolcite] = ACTIONS(12144), + [anon_sym_BSLASHSvolcite] = ACTIONS(12144), + [anon_sym_BSLASHtvolcite] = ACTIONS(12144), + [anon_sym_BSLASHTvolcite] = ACTIONS(12144), + [anon_sym_BSLASHavolcite] = ACTIONS(12144), + [anon_sym_BSLASHAvolcite] = ACTIONS(12144), + [anon_sym_BSLASHnotecite] = ACTIONS(12144), + [anon_sym_BSLASHpnotecite] = ACTIONS(12144), + [anon_sym_BSLASHPnotecite] = ACTIONS(12144), + [anon_sym_BSLASHfnotecite] = ACTIONS(12144), + [anon_sym_BSLASHusepackage] = ACTIONS(12144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12144), + [anon_sym_BSLASHinclude] = ACTIONS(12144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12144), + [anon_sym_BSLASHinput] = ACTIONS(12144), + [anon_sym_BSLASHsubfile] = ACTIONS(12144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12144), + [anon_sym_BSLASHbibliography] = ACTIONS(12144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12144), + [anon_sym_BSLASHincludesvg] = ACTIONS(12144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12144), + [anon_sym_BSLASHimport] = ACTIONS(12144), + [anon_sym_BSLASHsubimport] = ACTIONS(12144), + [anon_sym_BSLASHinputfrom] = ACTIONS(12144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12144), + [anon_sym_BSLASHincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHlabel] = ACTIONS(12144), + [anon_sym_BSLASHref] = ACTIONS(12144), + [anon_sym_BSLASHvref] = ACTIONS(12144), + [anon_sym_BSLASHVref] = ACTIONS(12144), + [anon_sym_BSLASHautoref] = ACTIONS(12144), + [anon_sym_BSLASHpageref] = ACTIONS(12144), + [anon_sym_BSLASHcref] = ACTIONS(12144), + [anon_sym_BSLASHCref] = ACTIONS(12144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnameCref] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHlabelcref] = ACTIONS(12144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12144), + [anon_sym_BSLASHeqref] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange] = ACTIONS(12144), + [anon_sym_BSLASHCrefrange] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewlabel] = ACTIONS(12144), + [anon_sym_BSLASHnewcommand] = ACTIONS(12144), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12144), + [anon_sym_BSLASHgls] = ACTIONS(12144), + [anon_sym_BSLASHGls] = ACTIONS(12144), + [anon_sym_BSLASHGLS] = ACTIONS(12144), + [anon_sym_BSLASHglspl] = ACTIONS(12144), + [anon_sym_BSLASHGlspl] = ACTIONS(12144), + [anon_sym_BSLASHGLSpl] = ACTIONS(12144), + [anon_sym_BSLASHglsdisp] = ACTIONS(12144), + [anon_sym_BSLASHglslink] = ACTIONS(12144), + [anon_sym_BSLASHglstext] = ACTIONS(12144), + [anon_sym_BSLASHGlstext] = ACTIONS(12144), + [anon_sym_BSLASHGLStext] = ACTIONS(12144), + [anon_sym_BSLASHglsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12144), + [anon_sym_BSLASHglsplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSplural] = ACTIONS(12144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHglsname] = ACTIONS(12144), + [anon_sym_BSLASHGlsname] = ACTIONS(12144), + [anon_sym_BSLASHGLSname] = ACTIONS(12144), + [anon_sym_BSLASHglssymbol] = ACTIONS(12144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12144), + [anon_sym_BSLASHglsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12144), + [anon_sym_BSLASHglsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12144), + [anon_sym_BSLASHglsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12144), + [anon_sym_BSLASHglsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12144), + [anon_sym_BSLASHglsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12144), + [anon_sym_BSLASHnewacronym] = ACTIONS(12144), + [anon_sym_BSLASHacrshort] = ACTIONS(12144), + [anon_sym_BSLASHAcrshort] = ACTIONS(12144), + [anon_sym_BSLASHACRshort] = ACTIONS(12144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12144), + [anon_sym_BSLASHacrlong] = ACTIONS(12144), + [anon_sym_BSLASHAcrlong] = ACTIONS(12144), + [anon_sym_BSLASHACRlong] = ACTIONS(12144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12144), + [anon_sym_BSLASHacrfull] = ACTIONS(12144), + [anon_sym_BSLASHAcrfull] = ACTIONS(12144), + [anon_sym_BSLASHACRfull] = ACTIONS(12144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12144), + [anon_sym_BSLASHacs] = ACTIONS(12144), + [anon_sym_BSLASHAcs] = ACTIONS(12144), + [anon_sym_BSLASHacsp] = ACTIONS(12144), + [anon_sym_BSLASHAcsp] = ACTIONS(12144), + [anon_sym_BSLASHacl] = ACTIONS(12144), + [anon_sym_BSLASHAcl] = ACTIONS(12144), + [anon_sym_BSLASHaclp] = ACTIONS(12144), + [anon_sym_BSLASHAclp] = ACTIONS(12144), + [anon_sym_BSLASHacf] = ACTIONS(12144), + [anon_sym_BSLASHAcf] = ACTIONS(12144), + [anon_sym_BSLASHacfp] = ACTIONS(12144), + [anon_sym_BSLASHAcfp] = ACTIONS(12144), + [anon_sym_BSLASHac] = ACTIONS(12144), + [anon_sym_BSLASHAc] = ACTIONS(12144), + [anon_sym_BSLASHacp] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12144), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12144), + [anon_sym_BSLASHcolor] = ACTIONS(12144), + [anon_sym_BSLASHcolorbox] = ACTIONS(12144), + [anon_sym_BSLASHtextcolor] = ACTIONS(12144), + [anon_sym_BSLASHpagecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12144), + }, + [1371] = { + [sym_generic_command_name] = ACTIONS(12148), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12148), + [aux_sym_subsubsection_token1] = ACTIONS(12148), + [aux_sym_paragraph_token1] = ACTIONS(12148), + [aux_sym_subparagraph_token1] = ACTIONS(12148), + [anon_sym_BSLASHitem] = ACTIONS(12148), + [anon_sym_LBRACK] = ACTIONS(12146), + [anon_sym_RBRACK] = ACTIONS(12146), + [anon_sym_LBRACE] = ACTIONS(12146), + [anon_sym_RBRACE] = ACTIONS(12146), + [anon_sym_LPAREN] = ACTIONS(12146), + [anon_sym_COMMA] = ACTIONS(12146), + [anon_sym_EQ] = ACTIONS(12146), + [sym_word] = ACTIONS(12146), + [sym_param] = ACTIONS(12146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12146), + [anon_sym_DOLLAR] = ACTIONS(12148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12146), + [anon_sym_BSLASHbegin] = ACTIONS(12148), + [anon_sym_BSLASHcaption] = ACTIONS(12148), + [anon_sym_BSLASHcite] = ACTIONS(12148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCite] = ACTIONS(12148), + [anon_sym_BSLASHnocite] = ACTIONS(12148), + [anon_sym_BSLASHcitet] = ACTIONS(12148), + [anon_sym_BSLASHcitep] = ACTIONS(12148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteauthor] = ACTIONS(12148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitetitle] = ACTIONS(12148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteyear] = ACTIONS(12148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitedate] = ACTIONS(12148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteurl] = ACTIONS(12148), + [anon_sym_BSLASHfullcite] = ACTIONS(12148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12148), + [anon_sym_BSLASHcitealt] = ACTIONS(12148), + [anon_sym_BSLASHcitealp] = ACTIONS(12148), + [anon_sym_BSLASHcitetext] = ACTIONS(12148), + [anon_sym_BSLASHparencite] = ACTIONS(12148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHParencite] = ACTIONS(12148), + [anon_sym_BSLASHfootcite] = ACTIONS(12148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12148), + [anon_sym_BSLASHtextcite] = ACTIONS(12148), + [anon_sym_BSLASHTextcite] = ACTIONS(12148), + [anon_sym_BSLASHsmartcite] = ACTIONS(12148), + [anon_sym_BSLASHSmartcite] = ACTIONS(12148), + [anon_sym_BSLASHsupercite] = ACTIONS(12148), + [anon_sym_BSLASHautocite] = ACTIONS(12148), + [anon_sym_BSLASHAutocite] = ACTIONS(12148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHvolcite] = ACTIONS(12148), + [anon_sym_BSLASHVolcite] = ACTIONS(12148), + [anon_sym_BSLASHpvolcite] = ACTIONS(12148), + [anon_sym_BSLASHPvolcite] = ACTIONS(12148), + [anon_sym_BSLASHfvolcite] = ACTIONS(12148), + [anon_sym_BSLASHftvolcite] = ACTIONS(12148), + [anon_sym_BSLASHsvolcite] = ACTIONS(12148), + [anon_sym_BSLASHSvolcite] = ACTIONS(12148), + [anon_sym_BSLASHtvolcite] = ACTIONS(12148), + [anon_sym_BSLASHTvolcite] = ACTIONS(12148), + [anon_sym_BSLASHavolcite] = ACTIONS(12148), + [anon_sym_BSLASHAvolcite] = ACTIONS(12148), + [anon_sym_BSLASHnotecite] = ACTIONS(12148), + [anon_sym_BSLASHpnotecite] = ACTIONS(12148), + [anon_sym_BSLASHPnotecite] = ACTIONS(12148), + [anon_sym_BSLASHfnotecite] = ACTIONS(12148), + [anon_sym_BSLASHusepackage] = ACTIONS(12148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12148), + [anon_sym_BSLASHinclude] = ACTIONS(12148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12148), + [anon_sym_BSLASHinput] = ACTIONS(12148), + [anon_sym_BSLASHsubfile] = ACTIONS(12148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12148), + [anon_sym_BSLASHbibliography] = ACTIONS(12148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12148), + [anon_sym_BSLASHincludesvg] = ACTIONS(12148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12148), + [anon_sym_BSLASHimport] = ACTIONS(12148), + [anon_sym_BSLASHsubimport] = ACTIONS(12148), + [anon_sym_BSLASHinputfrom] = ACTIONS(12148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12148), + [anon_sym_BSLASHincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHlabel] = ACTIONS(12148), + [anon_sym_BSLASHref] = ACTIONS(12148), + [anon_sym_BSLASHvref] = ACTIONS(12148), + [anon_sym_BSLASHVref] = ACTIONS(12148), + [anon_sym_BSLASHautoref] = ACTIONS(12148), + [anon_sym_BSLASHpageref] = ACTIONS(12148), + [anon_sym_BSLASHcref] = ACTIONS(12148), + [anon_sym_BSLASHCref] = ACTIONS(12148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnameCref] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHlabelcref] = ACTIONS(12148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12148), + [anon_sym_BSLASHeqref] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange] = ACTIONS(12148), + [anon_sym_BSLASHCrefrange] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewlabel] = ACTIONS(12148), + [anon_sym_BSLASHnewcommand] = ACTIONS(12148), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12148), + [anon_sym_BSLASHgls] = ACTIONS(12148), + [anon_sym_BSLASHGls] = ACTIONS(12148), + [anon_sym_BSLASHGLS] = ACTIONS(12148), + [anon_sym_BSLASHglspl] = ACTIONS(12148), + [anon_sym_BSLASHGlspl] = ACTIONS(12148), + [anon_sym_BSLASHGLSpl] = ACTIONS(12148), + [anon_sym_BSLASHglsdisp] = ACTIONS(12148), + [anon_sym_BSLASHglslink] = ACTIONS(12148), + [anon_sym_BSLASHglstext] = ACTIONS(12148), + [anon_sym_BSLASHGlstext] = ACTIONS(12148), + [anon_sym_BSLASHGLStext] = ACTIONS(12148), + [anon_sym_BSLASHglsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12148), + [anon_sym_BSLASHglsplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSplural] = ACTIONS(12148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHglsname] = ACTIONS(12148), + [anon_sym_BSLASHGlsname] = ACTIONS(12148), + [anon_sym_BSLASHGLSname] = ACTIONS(12148), + [anon_sym_BSLASHglssymbol] = ACTIONS(12148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12148), + [anon_sym_BSLASHglsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12148), + [anon_sym_BSLASHglsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12148), + [anon_sym_BSLASHglsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12148), + [anon_sym_BSLASHglsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12148), + [anon_sym_BSLASHglsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12148), + [anon_sym_BSLASHnewacronym] = ACTIONS(12148), + [anon_sym_BSLASHacrshort] = ACTIONS(12148), + [anon_sym_BSLASHAcrshort] = ACTIONS(12148), + [anon_sym_BSLASHACRshort] = ACTIONS(12148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12148), + [anon_sym_BSLASHacrlong] = ACTIONS(12148), + [anon_sym_BSLASHAcrlong] = ACTIONS(12148), + [anon_sym_BSLASHACRlong] = ACTIONS(12148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12148), + [anon_sym_BSLASHacrfull] = ACTIONS(12148), + [anon_sym_BSLASHAcrfull] = ACTIONS(12148), + [anon_sym_BSLASHACRfull] = ACTIONS(12148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12148), + [anon_sym_BSLASHacs] = ACTIONS(12148), + [anon_sym_BSLASHAcs] = ACTIONS(12148), + [anon_sym_BSLASHacsp] = ACTIONS(12148), + [anon_sym_BSLASHAcsp] = ACTIONS(12148), + [anon_sym_BSLASHacl] = ACTIONS(12148), + [anon_sym_BSLASHAcl] = ACTIONS(12148), + [anon_sym_BSLASHaclp] = ACTIONS(12148), + [anon_sym_BSLASHAclp] = ACTIONS(12148), + [anon_sym_BSLASHacf] = ACTIONS(12148), + [anon_sym_BSLASHAcf] = ACTIONS(12148), + [anon_sym_BSLASHacfp] = ACTIONS(12148), + [anon_sym_BSLASHAcfp] = ACTIONS(12148), + [anon_sym_BSLASHac] = ACTIONS(12148), + [anon_sym_BSLASHAc] = ACTIONS(12148), + [anon_sym_BSLASHacp] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12148), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12148), + [anon_sym_BSLASHcolor] = ACTIONS(12148), + [anon_sym_BSLASHcolorbox] = ACTIONS(12148), + [anon_sym_BSLASHtextcolor] = ACTIONS(12148), + [anon_sym_BSLASHpagecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12148), + }, + [1372] = { + [sym_generic_command_name] = ACTIONS(12152), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12152), + [aux_sym_subsubsection_token1] = ACTIONS(12152), + [aux_sym_paragraph_token1] = ACTIONS(12152), + [aux_sym_subparagraph_token1] = ACTIONS(12152), + [anon_sym_BSLASHitem] = ACTIONS(12152), + [anon_sym_LBRACK] = ACTIONS(12150), + [anon_sym_RBRACK] = ACTIONS(12150), + [anon_sym_LBRACE] = ACTIONS(12150), + [anon_sym_RBRACE] = ACTIONS(12150), + [anon_sym_LPAREN] = ACTIONS(12150), + [anon_sym_COMMA] = ACTIONS(12150), + [anon_sym_EQ] = ACTIONS(12150), + [sym_word] = ACTIONS(12150), + [sym_param] = ACTIONS(12150), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12150), + [anon_sym_DOLLAR] = ACTIONS(12152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12150), + [anon_sym_BSLASHbegin] = ACTIONS(12152), + [anon_sym_BSLASHcaption] = ACTIONS(12152), + [anon_sym_BSLASHcite] = ACTIONS(12152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCite] = ACTIONS(12152), + [anon_sym_BSLASHnocite] = ACTIONS(12152), + [anon_sym_BSLASHcitet] = ACTIONS(12152), + [anon_sym_BSLASHcitep] = ACTIONS(12152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteauthor] = ACTIONS(12152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitetitle] = ACTIONS(12152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteyear] = ACTIONS(12152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitedate] = ACTIONS(12152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteurl] = ACTIONS(12152), + [anon_sym_BSLASHfullcite] = ACTIONS(12152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12152), + [anon_sym_BSLASHcitealt] = ACTIONS(12152), + [anon_sym_BSLASHcitealp] = ACTIONS(12152), + [anon_sym_BSLASHcitetext] = ACTIONS(12152), + [anon_sym_BSLASHparencite] = ACTIONS(12152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHParencite] = ACTIONS(12152), + [anon_sym_BSLASHfootcite] = ACTIONS(12152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12152), + [anon_sym_BSLASHtextcite] = ACTIONS(12152), + [anon_sym_BSLASHTextcite] = ACTIONS(12152), + [anon_sym_BSLASHsmartcite] = ACTIONS(12152), + [anon_sym_BSLASHSmartcite] = ACTIONS(12152), + [anon_sym_BSLASHsupercite] = ACTIONS(12152), + [anon_sym_BSLASHautocite] = ACTIONS(12152), + [anon_sym_BSLASHAutocite] = ACTIONS(12152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHvolcite] = ACTIONS(12152), + [anon_sym_BSLASHVolcite] = ACTIONS(12152), + [anon_sym_BSLASHpvolcite] = ACTIONS(12152), + [anon_sym_BSLASHPvolcite] = ACTIONS(12152), + [anon_sym_BSLASHfvolcite] = ACTIONS(12152), + [anon_sym_BSLASHftvolcite] = ACTIONS(12152), + [anon_sym_BSLASHsvolcite] = ACTIONS(12152), + [anon_sym_BSLASHSvolcite] = ACTIONS(12152), + [anon_sym_BSLASHtvolcite] = ACTIONS(12152), + [anon_sym_BSLASHTvolcite] = ACTIONS(12152), + [anon_sym_BSLASHavolcite] = ACTIONS(12152), + [anon_sym_BSLASHAvolcite] = ACTIONS(12152), + [anon_sym_BSLASHnotecite] = ACTIONS(12152), + [anon_sym_BSLASHpnotecite] = ACTIONS(12152), + [anon_sym_BSLASHPnotecite] = ACTIONS(12152), + [anon_sym_BSLASHfnotecite] = ACTIONS(12152), + [anon_sym_BSLASHusepackage] = ACTIONS(12152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12152), + [anon_sym_BSLASHinclude] = ACTIONS(12152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12152), + [anon_sym_BSLASHinput] = ACTIONS(12152), + [anon_sym_BSLASHsubfile] = ACTIONS(12152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12152), + [anon_sym_BSLASHbibliography] = ACTIONS(12152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12152), + [anon_sym_BSLASHincludesvg] = ACTIONS(12152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12152), + [anon_sym_BSLASHimport] = ACTIONS(12152), + [anon_sym_BSLASHsubimport] = ACTIONS(12152), + [anon_sym_BSLASHinputfrom] = ACTIONS(12152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12152), + [anon_sym_BSLASHincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHlabel] = ACTIONS(12152), + [anon_sym_BSLASHref] = ACTIONS(12152), + [anon_sym_BSLASHvref] = ACTIONS(12152), + [anon_sym_BSLASHVref] = ACTIONS(12152), + [anon_sym_BSLASHautoref] = ACTIONS(12152), + [anon_sym_BSLASHpageref] = ACTIONS(12152), + [anon_sym_BSLASHcref] = ACTIONS(12152), + [anon_sym_BSLASHCref] = ACTIONS(12152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnameCref] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHlabelcref] = ACTIONS(12152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12152), + [anon_sym_BSLASHeqref] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange] = ACTIONS(12152), + [anon_sym_BSLASHCrefrange] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewlabel] = ACTIONS(12152), + [anon_sym_BSLASHnewcommand] = ACTIONS(12152), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12152), + [anon_sym_BSLASHgls] = ACTIONS(12152), + [anon_sym_BSLASHGls] = ACTIONS(12152), + [anon_sym_BSLASHGLS] = ACTIONS(12152), + [anon_sym_BSLASHglspl] = ACTIONS(12152), + [anon_sym_BSLASHGlspl] = ACTIONS(12152), + [anon_sym_BSLASHGLSpl] = ACTIONS(12152), + [anon_sym_BSLASHglsdisp] = ACTIONS(12152), + [anon_sym_BSLASHglslink] = ACTIONS(12152), + [anon_sym_BSLASHglstext] = ACTIONS(12152), + [anon_sym_BSLASHGlstext] = ACTIONS(12152), + [anon_sym_BSLASHGLStext] = ACTIONS(12152), + [anon_sym_BSLASHglsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12152), + [anon_sym_BSLASHglsplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSplural] = ACTIONS(12152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHglsname] = ACTIONS(12152), + [anon_sym_BSLASHGlsname] = ACTIONS(12152), + [anon_sym_BSLASHGLSname] = ACTIONS(12152), + [anon_sym_BSLASHglssymbol] = ACTIONS(12152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12152), + [anon_sym_BSLASHglsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12152), + [anon_sym_BSLASHglsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12152), + [anon_sym_BSLASHglsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12152), + [anon_sym_BSLASHglsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12152), + [anon_sym_BSLASHglsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12152), + [anon_sym_BSLASHnewacronym] = ACTIONS(12152), + [anon_sym_BSLASHacrshort] = ACTIONS(12152), + [anon_sym_BSLASHAcrshort] = ACTIONS(12152), + [anon_sym_BSLASHACRshort] = ACTIONS(12152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12152), + [anon_sym_BSLASHacrlong] = ACTIONS(12152), + [anon_sym_BSLASHAcrlong] = ACTIONS(12152), + [anon_sym_BSLASHACRlong] = ACTIONS(12152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12152), + [anon_sym_BSLASHacrfull] = ACTIONS(12152), + [anon_sym_BSLASHAcrfull] = ACTIONS(12152), + [anon_sym_BSLASHACRfull] = ACTIONS(12152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12152), + [anon_sym_BSLASHacs] = ACTIONS(12152), + [anon_sym_BSLASHAcs] = ACTIONS(12152), + [anon_sym_BSLASHacsp] = ACTIONS(12152), + [anon_sym_BSLASHAcsp] = ACTIONS(12152), + [anon_sym_BSLASHacl] = ACTIONS(12152), + [anon_sym_BSLASHAcl] = ACTIONS(12152), + [anon_sym_BSLASHaclp] = ACTIONS(12152), + [anon_sym_BSLASHAclp] = ACTIONS(12152), + [anon_sym_BSLASHacf] = ACTIONS(12152), + [anon_sym_BSLASHAcf] = ACTIONS(12152), + [anon_sym_BSLASHacfp] = ACTIONS(12152), + [anon_sym_BSLASHAcfp] = ACTIONS(12152), + [anon_sym_BSLASHac] = ACTIONS(12152), + [anon_sym_BSLASHAc] = ACTIONS(12152), + [anon_sym_BSLASHacp] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12152), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12152), + [anon_sym_BSLASHcolor] = ACTIONS(12152), + [anon_sym_BSLASHcolorbox] = ACTIONS(12152), + [anon_sym_BSLASHtextcolor] = ACTIONS(12152), + [anon_sym_BSLASHpagecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12152), + }, + [1373] = { + [sym_generic_command_name] = ACTIONS(12156), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12156), + [aux_sym_subsubsection_token1] = ACTIONS(12156), + [aux_sym_paragraph_token1] = ACTIONS(12156), + [aux_sym_subparagraph_token1] = ACTIONS(12156), + [anon_sym_BSLASHitem] = ACTIONS(12156), + [anon_sym_LBRACK] = ACTIONS(12154), + [anon_sym_RBRACK] = ACTIONS(12154), + [anon_sym_LBRACE] = ACTIONS(12154), + [anon_sym_RBRACE] = ACTIONS(12154), + [anon_sym_LPAREN] = ACTIONS(12154), + [anon_sym_COMMA] = ACTIONS(12154), + [anon_sym_EQ] = ACTIONS(12154), + [sym_word] = ACTIONS(12154), + [sym_param] = ACTIONS(12154), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12154), + [anon_sym_DOLLAR] = ACTIONS(12156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12154), + [anon_sym_BSLASHbegin] = ACTIONS(12156), + [anon_sym_BSLASHcaption] = ACTIONS(12156), + [anon_sym_BSLASHcite] = ACTIONS(12156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCite] = ACTIONS(12156), + [anon_sym_BSLASHnocite] = ACTIONS(12156), + [anon_sym_BSLASHcitet] = ACTIONS(12156), + [anon_sym_BSLASHcitep] = ACTIONS(12156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteauthor] = ACTIONS(12156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitetitle] = ACTIONS(12156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteyear] = ACTIONS(12156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitedate] = ACTIONS(12156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteurl] = ACTIONS(12156), + [anon_sym_BSLASHfullcite] = ACTIONS(12156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12156), + [anon_sym_BSLASHcitealt] = ACTIONS(12156), + [anon_sym_BSLASHcitealp] = ACTIONS(12156), + [anon_sym_BSLASHcitetext] = ACTIONS(12156), + [anon_sym_BSLASHparencite] = ACTIONS(12156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHParencite] = ACTIONS(12156), + [anon_sym_BSLASHfootcite] = ACTIONS(12156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12156), + [anon_sym_BSLASHtextcite] = ACTIONS(12156), + [anon_sym_BSLASHTextcite] = ACTIONS(12156), + [anon_sym_BSLASHsmartcite] = ACTIONS(12156), + [anon_sym_BSLASHSmartcite] = ACTIONS(12156), + [anon_sym_BSLASHsupercite] = ACTIONS(12156), + [anon_sym_BSLASHautocite] = ACTIONS(12156), + [anon_sym_BSLASHAutocite] = ACTIONS(12156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHvolcite] = ACTIONS(12156), + [anon_sym_BSLASHVolcite] = ACTIONS(12156), + [anon_sym_BSLASHpvolcite] = ACTIONS(12156), + [anon_sym_BSLASHPvolcite] = ACTIONS(12156), + [anon_sym_BSLASHfvolcite] = ACTIONS(12156), + [anon_sym_BSLASHftvolcite] = ACTIONS(12156), + [anon_sym_BSLASHsvolcite] = ACTIONS(12156), + [anon_sym_BSLASHSvolcite] = ACTIONS(12156), + [anon_sym_BSLASHtvolcite] = ACTIONS(12156), + [anon_sym_BSLASHTvolcite] = ACTIONS(12156), + [anon_sym_BSLASHavolcite] = ACTIONS(12156), + [anon_sym_BSLASHAvolcite] = ACTIONS(12156), + [anon_sym_BSLASHnotecite] = ACTIONS(12156), + [anon_sym_BSLASHpnotecite] = ACTIONS(12156), + [anon_sym_BSLASHPnotecite] = ACTIONS(12156), + [anon_sym_BSLASHfnotecite] = ACTIONS(12156), + [anon_sym_BSLASHusepackage] = ACTIONS(12156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12156), + [anon_sym_BSLASHinclude] = ACTIONS(12156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12156), + [anon_sym_BSLASHinput] = ACTIONS(12156), + [anon_sym_BSLASHsubfile] = ACTIONS(12156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12156), + [anon_sym_BSLASHbibliography] = ACTIONS(12156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12156), + [anon_sym_BSLASHincludesvg] = ACTIONS(12156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12156), + [anon_sym_BSLASHimport] = ACTIONS(12156), + [anon_sym_BSLASHsubimport] = ACTIONS(12156), + [anon_sym_BSLASHinputfrom] = ACTIONS(12156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12156), + [anon_sym_BSLASHincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHlabel] = ACTIONS(12156), + [anon_sym_BSLASHref] = ACTIONS(12156), + [anon_sym_BSLASHvref] = ACTIONS(12156), + [anon_sym_BSLASHVref] = ACTIONS(12156), + [anon_sym_BSLASHautoref] = ACTIONS(12156), + [anon_sym_BSLASHpageref] = ACTIONS(12156), + [anon_sym_BSLASHcref] = ACTIONS(12156), + [anon_sym_BSLASHCref] = ACTIONS(12156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnameCref] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHlabelcref] = ACTIONS(12156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12156), + [anon_sym_BSLASHeqref] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange] = ACTIONS(12156), + [anon_sym_BSLASHCrefrange] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewlabel] = ACTIONS(12156), + [anon_sym_BSLASHnewcommand] = ACTIONS(12156), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12156), + [anon_sym_BSLASHgls] = ACTIONS(12156), + [anon_sym_BSLASHGls] = ACTIONS(12156), + [anon_sym_BSLASHGLS] = ACTIONS(12156), + [anon_sym_BSLASHglspl] = ACTIONS(12156), + [anon_sym_BSLASHGlspl] = ACTIONS(12156), + [anon_sym_BSLASHGLSpl] = ACTIONS(12156), + [anon_sym_BSLASHglsdisp] = ACTIONS(12156), + [anon_sym_BSLASHglslink] = ACTIONS(12156), + [anon_sym_BSLASHglstext] = ACTIONS(12156), + [anon_sym_BSLASHGlstext] = ACTIONS(12156), + [anon_sym_BSLASHGLStext] = ACTIONS(12156), + [anon_sym_BSLASHglsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12156), + [anon_sym_BSLASHglsplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSplural] = ACTIONS(12156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHglsname] = ACTIONS(12156), + [anon_sym_BSLASHGlsname] = ACTIONS(12156), + [anon_sym_BSLASHGLSname] = ACTIONS(12156), + [anon_sym_BSLASHglssymbol] = ACTIONS(12156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12156), + [anon_sym_BSLASHglsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12156), + [anon_sym_BSLASHglsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12156), + [anon_sym_BSLASHglsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12156), + [anon_sym_BSLASHglsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12156), + [anon_sym_BSLASHglsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12156), + [anon_sym_BSLASHnewacronym] = ACTIONS(12156), + [anon_sym_BSLASHacrshort] = ACTIONS(12156), + [anon_sym_BSLASHAcrshort] = ACTIONS(12156), + [anon_sym_BSLASHACRshort] = ACTIONS(12156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12156), + [anon_sym_BSLASHacrlong] = ACTIONS(12156), + [anon_sym_BSLASHAcrlong] = ACTIONS(12156), + [anon_sym_BSLASHACRlong] = ACTIONS(12156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12156), + [anon_sym_BSLASHacrfull] = ACTIONS(12156), + [anon_sym_BSLASHAcrfull] = ACTIONS(12156), + [anon_sym_BSLASHACRfull] = ACTIONS(12156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12156), + [anon_sym_BSLASHacs] = ACTIONS(12156), + [anon_sym_BSLASHAcs] = ACTIONS(12156), + [anon_sym_BSLASHacsp] = ACTIONS(12156), + [anon_sym_BSLASHAcsp] = ACTIONS(12156), + [anon_sym_BSLASHacl] = ACTIONS(12156), + [anon_sym_BSLASHAcl] = ACTIONS(12156), + [anon_sym_BSLASHaclp] = ACTIONS(12156), + [anon_sym_BSLASHAclp] = ACTIONS(12156), + [anon_sym_BSLASHacf] = ACTIONS(12156), + [anon_sym_BSLASHAcf] = ACTIONS(12156), + [anon_sym_BSLASHacfp] = ACTIONS(12156), + [anon_sym_BSLASHAcfp] = ACTIONS(12156), + [anon_sym_BSLASHac] = ACTIONS(12156), + [anon_sym_BSLASHAc] = ACTIONS(12156), + [anon_sym_BSLASHacp] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12156), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12156), + [anon_sym_BSLASHcolor] = ACTIONS(12156), + [anon_sym_BSLASHcolorbox] = ACTIONS(12156), + [anon_sym_BSLASHtextcolor] = ACTIONS(12156), + [anon_sym_BSLASHpagecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12156), + }, + [1374] = { + [sym_generic_command_name] = ACTIONS(12160), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12160), + [aux_sym_subsubsection_token1] = ACTIONS(12160), + [aux_sym_paragraph_token1] = ACTIONS(12160), + [aux_sym_subparagraph_token1] = ACTIONS(12160), + [anon_sym_BSLASHitem] = ACTIONS(12160), + [anon_sym_LBRACK] = ACTIONS(12158), + [anon_sym_RBRACK] = ACTIONS(12158), + [anon_sym_LBRACE] = ACTIONS(12158), + [anon_sym_RBRACE] = ACTIONS(12158), + [anon_sym_LPAREN] = ACTIONS(12158), + [anon_sym_COMMA] = ACTIONS(12158), + [anon_sym_EQ] = ACTIONS(12158), + [sym_word] = ACTIONS(12158), + [sym_param] = ACTIONS(12158), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12158), + [anon_sym_DOLLAR] = ACTIONS(12160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12158), + [anon_sym_BSLASHbegin] = ACTIONS(12160), + [anon_sym_BSLASHcaption] = ACTIONS(12160), + [anon_sym_BSLASHcite] = ACTIONS(12160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCite] = ACTIONS(12160), + [anon_sym_BSLASHnocite] = ACTIONS(12160), + [anon_sym_BSLASHcitet] = ACTIONS(12160), + [anon_sym_BSLASHcitep] = ACTIONS(12160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteauthor] = ACTIONS(12160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitetitle] = ACTIONS(12160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteyear] = ACTIONS(12160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitedate] = ACTIONS(12160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteurl] = ACTIONS(12160), + [anon_sym_BSLASHfullcite] = ACTIONS(12160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12160), + [anon_sym_BSLASHcitealt] = ACTIONS(12160), + [anon_sym_BSLASHcitealp] = ACTIONS(12160), + [anon_sym_BSLASHcitetext] = ACTIONS(12160), + [anon_sym_BSLASHparencite] = ACTIONS(12160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHParencite] = ACTIONS(12160), + [anon_sym_BSLASHfootcite] = ACTIONS(12160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12160), + [anon_sym_BSLASHtextcite] = ACTIONS(12160), + [anon_sym_BSLASHTextcite] = ACTIONS(12160), + [anon_sym_BSLASHsmartcite] = ACTIONS(12160), + [anon_sym_BSLASHSmartcite] = ACTIONS(12160), + [anon_sym_BSLASHsupercite] = ACTIONS(12160), + [anon_sym_BSLASHautocite] = ACTIONS(12160), + [anon_sym_BSLASHAutocite] = ACTIONS(12160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHvolcite] = ACTIONS(12160), + [anon_sym_BSLASHVolcite] = ACTIONS(12160), + [anon_sym_BSLASHpvolcite] = ACTIONS(12160), + [anon_sym_BSLASHPvolcite] = ACTIONS(12160), + [anon_sym_BSLASHfvolcite] = ACTIONS(12160), + [anon_sym_BSLASHftvolcite] = ACTIONS(12160), + [anon_sym_BSLASHsvolcite] = ACTIONS(12160), + [anon_sym_BSLASHSvolcite] = ACTIONS(12160), + [anon_sym_BSLASHtvolcite] = ACTIONS(12160), + [anon_sym_BSLASHTvolcite] = ACTIONS(12160), + [anon_sym_BSLASHavolcite] = ACTIONS(12160), + [anon_sym_BSLASHAvolcite] = ACTIONS(12160), + [anon_sym_BSLASHnotecite] = ACTIONS(12160), + [anon_sym_BSLASHpnotecite] = ACTIONS(12160), + [anon_sym_BSLASHPnotecite] = ACTIONS(12160), + [anon_sym_BSLASHfnotecite] = ACTIONS(12160), + [anon_sym_BSLASHusepackage] = ACTIONS(12160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12160), + [anon_sym_BSLASHinclude] = ACTIONS(12160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12160), + [anon_sym_BSLASHinput] = ACTIONS(12160), + [anon_sym_BSLASHsubfile] = ACTIONS(12160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12160), + [anon_sym_BSLASHbibliography] = ACTIONS(12160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12160), + [anon_sym_BSLASHincludesvg] = ACTIONS(12160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12160), + [anon_sym_BSLASHimport] = ACTIONS(12160), + [anon_sym_BSLASHsubimport] = ACTIONS(12160), + [anon_sym_BSLASHinputfrom] = ACTIONS(12160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12160), + [anon_sym_BSLASHincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHlabel] = ACTIONS(12160), + [anon_sym_BSLASHref] = ACTIONS(12160), + [anon_sym_BSLASHvref] = ACTIONS(12160), + [anon_sym_BSLASHVref] = ACTIONS(12160), + [anon_sym_BSLASHautoref] = ACTIONS(12160), + [anon_sym_BSLASHpageref] = ACTIONS(12160), + [anon_sym_BSLASHcref] = ACTIONS(12160), + [anon_sym_BSLASHCref] = ACTIONS(12160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnameCref] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHlabelcref] = ACTIONS(12160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12160), + [anon_sym_BSLASHeqref] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange] = ACTIONS(12160), + [anon_sym_BSLASHCrefrange] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewlabel] = ACTIONS(12160), + [anon_sym_BSLASHnewcommand] = ACTIONS(12160), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12160), + [anon_sym_BSLASHgls] = ACTIONS(12160), + [anon_sym_BSLASHGls] = ACTIONS(12160), + [anon_sym_BSLASHGLS] = ACTIONS(12160), + [anon_sym_BSLASHglspl] = ACTIONS(12160), + [anon_sym_BSLASHGlspl] = ACTIONS(12160), + [anon_sym_BSLASHGLSpl] = ACTIONS(12160), + [anon_sym_BSLASHglsdisp] = ACTIONS(12160), + [anon_sym_BSLASHglslink] = ACTIONS(12160), + [anon_sym_BSLASHglstext] = ACTIONS(12160), + [anon_sym_BSLASHGlstext] = ACTIONS(12160), + [anon_sym_BSLASHGLStext] = ACTIONS(12160), + [anon_sym_BSLASHglsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12160), + [anon_sym_BSLASHglsplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSplural] = ACTIONS(12160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHglsname] = ACTIONS(12160), + [anon_sym_BSLASHGlsname] = ACTIONS(12160), + [anon_sym_BSLASHGLSname] = ACTIONS(12160), + [anon_sym_BSLASHglssymbol] = ACTIONS(12160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12160), + [anon_sym_BSLASHglsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12160), + [anon_sym_BSLASHglsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12160), + [anon_sym_BSLASHglsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12160), + [anon_sym_BSLASHglsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12160), + [anon_sym_BSLASHglsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12160), + [anon_sym_BSLASHnewacronym] = ACTIONS(12160), + [anon_sym_BSLASHacrshort] = ACTIONS(12160), + [anon_sym_BSLASHAcrshort] = ACTIONS(12160), + [anon_sym_BSLASHACRshort] = ACTIONS(12160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12160), + [anon_sym_BSLASHacrlong] = ACTIONS(12160), + [anon_sym_BSLASHAcrlong] = ACTIONS(12160), + [anon_sym_BSLASHACRlong] = ACTIONS(12160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12160), + [anon_sym_BSLASHacrfull] = ACTIONS(12160), + [anon_sym_BSLASHAcrfull] = ACTIONS(12160), + [anon_sym_BSLASHACRfull] = ACTIONS(12160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12160), + [anon_sym_BSLASHacs] = ACTIONS(12160), + [anon_sym_BSLASHAcs] = ACTIONS(12160), + [anon_sym_BSLASHacsp] = ACTIONS(12160), + [anon_sym_BSLASHAcsp] = ACTIONS(12160), + [anon_sym_BSLASHacl] = ACTIONS(12160), + [anon_sym_BSLASHAcl] = ACTIONS(12160), + [anon_sym_BSLASHaclp] = ACTIONS(12160), + [anon_sym_BSLASHAclp] = ACTIONS(12160), + [anon_sym_BSLASHacf] = ACTIONS(12160), + [anon_sym_BSLASHAcf] = ACTIONS(12160), + [anon_sym_BSLASHacfp] = ACTIONS(12160), + [anon_sym_BSLASHAcfp] = ACTIONS(12160), + [anon_sym_BSLASHac] = ACTIONS(12160), + [anon_sym_BSLASHAc] = ACTIONS(12160), + [anon_sym_BSLASHacp] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12160), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12160), + [anon_sym_BSLASHcolor] = ACTIONS(12160), + [anon_sym_BSLASHcolorbox] = ACTIONS(12160), + [anon_sym_BSLASHtextcolor] = ACTIONS(12160), + [anon_sym_BSLASHpagecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12160), + }, + [1375] = { + [sym_generic_command_name] = ACTIONS(12173), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12173), + [aux_sym_subsubsection_token1] = ACTIONS(12173), + [aux_sym_paragraph_token1] = ACTIONS(12173), + [aux_sym_subparagraph_token1] = ACTIONS(12173), + [anon_sym_BSLASHitem] = ACTIONS(12173), + [anon_sym_LBRACK] = ACTIONS(12171), + [anon_sym_RBRACK] = ACTIONS(12171), + [anon_sym_LBRACE] = ACTIONS(12171), + [anon_sym_RBRACE] = ACTIONS(12171), + [anon_sym_LPAREN] = ACTIONS(12171), + [anon_sym_COMMA] = ACTIONS(12171), + [anon_sym_EQ] = ACTIONS(12171), + [sym_word] = ACTIONS(12171), + [sym_param] = ACTIONS(12171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12171), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12171), + [anon_sym_DOLLAR] = ACTIONS(12173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12171), + [anon_sym_BSLASHbegin] = ACTIONS(12173), + [anon_sym_BSLASHcaption] = ACTIONS(12173), + [anon_sym_BSLASHcite] = ACTIONS(12173), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCite] = ACTIONS(12173), + [anon_sym_BSLASHnocite] = ACTIONS(12173), + [anon_sym_BSLASHcitet] = ACTIONS(12173), + [anon_sym_BSLASHcitep] = ACTIONS(12173), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteauthor] = ACTIONS(12173), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12173), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitetitle] = ACTIONS(12173), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteyear] = ACTIONS(12173), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitedate] = ACTIONS(12173), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteurl] = ACTIONS(12173), + [anon_sym_BSLASHfullcite] = ACTIONS(12173), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12173), + [anon_sym_BSLASHcitealt] = ACTIONS(12173), + [anon_sym_BSLASHcitealp] = ACTIONS(12173), + [anon_sym_BSLASHcitetext] = ACTIONS(12173), + [anon_sym_BSLASHparencite] = ACTIONS(12173), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHParencite] = ACTIONS(12173), + [anon_sym_BSLASHfootcite] = ACTIONS(12173), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12173), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12173), + [anon_sym_BSLASHtextcite] = ACTIONS(12173), + [anon_sym_BSLASHTextcite] = ACTIONS(12173), + [anon_sym_BSLASHsmartcite] = ACTIONS(12173), + [anon_sym_BSLASHSmartcite] = ACTIONS(12173), + [anon_sym_BSLASHsupercite] = ACTIONS(12173), + [anon_sym_BSLASHautocite] = ACTIONS(12173), + [anon_sym_BSLASHAutocite] = ACTIONS(12173), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHvolcite] = ACTIONS(12173), + [anon_sym_BSLASHVolcite] = ACTIONS(12173), + [anon_sym_BSLASHpvolcite] = ACTIONS(12173), + [anon_sym_BSLASHPvolcite] = ACTIONS(12173), + [anon_sym_BSLASHfvolcite] = ACTIONS(12173), + [anon_sym_BSLASHftvolcite] = ACTIONS(12173), + [anon_sym_BSLASHsvolcite] = ACTIONS(12173), + [anon_sym_BSLASHSvolcite] = ACTIONS(12173), + [anon_sym_BSLASHtvolcite] = ACTIONS(12173), + [anon_sym_BSLASHTvolcite] = ACTIONS(12173), + [anon_sym_BSLASHavolcite] = ACTIONS(12173), + [anon_sym_BSLASHAvolcite] = ACTIONS(12173), + [anon_sym_BSLASHnotecite] = ACTIONS(12173), + [anon_sym_BSLASHpnotecite] = ACTIONS(12173), + [anon_sym_BSLASHPnotecite] = ACTIONS(12173), + [anon_sym_BSLASHfnotecite] = ACTIONS(12173), + [anon_sym_BSLASHusepackage] = ACTIONS(12173), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12173), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12173), + [anon_sym_BSLASHinclude] = ACTIONS(12173), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12173), + [anon_sym_BSLASHinput] = ACTIONS(12173), + [anon_sym_BSLASHsubfile] = ACTIONS(12173), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12173), + [anon_sym_BSLASHbibliography] = ACTIONS(12173), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12173), + [anon_sym_BSLASHincludesvg] = ACTIONS(12173), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12173), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12173), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12173), + [anon_sym_BSLASHimport] = ACTIONS(12173), + [anon_sym_BSLASHsubimport] = ACTIONS(12173), + [anon_sym_BSLASHinputfrom] = ACTIONS(12173), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12173), + [anon_sym_BSLASHincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHlabel] = ACTIONS(12173), + [anon_sym_BSLASHref] = ACTIONS(12173), + [anon_sym_BSLASHvref] = ACTIONS(12173), + [anon_sym_BSLASHVref] = ACTIONS(12173), + [anon_sym_BSLASHautoref] = ACTIONS(12173), + [anon_sym_BSLASHpageref] = ACTIONS(12173), + [anon_sym_BSLASHcref] = ACTIONS(12173), + [anon_sym_BSLASHCref] = ACTIONS(12173), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnameCref] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHlabelcref] = ACTIONS(12173), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12173), + [anon_sym_BSLASHeqref] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange] = ACTIONS(12173), + [anon_sym_BSLASHCrefrange] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewlabel] = ACTIONS(12173), + [anon_sym_BSLASHnewcommand] = ACTIONS(12173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12173), + [anon_sym_BSLASHgls] = ACTIONS(12173), + [anon_sym_BSLASHGls] = ACTIONS(12173), + [anon_sym_BSLASHGLS] = ACTIONS(12173), + [anon_sym_BSLASHglspl] = ACTIONS(12173), + [anon_sym_BSLASHGlspl] = ACTIONS(12173), + [anon_sym_BSLASHGLSpl] = ACTIONS(12173), + [anon_sym_BSLASHglsdisp] = ACTIONS(12173), + [anon_sym_BSLASHglslink] = ACTIONS(12173), + [anon_sym_BSLASHglstext] = ACTIONS(12173), + [anon_sym_BSLASHGlstext] = ACTIONS(12173), + [anon_sym_BSLASHGLStext] = ACTIONS(12173), + [anon_sym_BSLASHglsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12173), + [anon_sym_BSLASHglsplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSplural] = ACTIONS(12173), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHglsname] = ACTIONS(12173), + [anon_sym_BSLASHGlsname] = ACTIONS(12173), + [anon_sym_BSLASHGLSname] = ACTIONS(12173), + [anon_sym_BSLASHglssymbol] = ACTIONS(12173), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12173), + [anon_sym_BSLASHglsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12173), + [anon_sym_BSLASHglsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12173), + [anon_sym_BSLASHglsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12173), + [anon_sym_BSLASHglsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12173), + [anon_sym_BSLASHglsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12173), + [anon_sym_BSLASHnewacronym] = ACTIONS(12173), + [anon_sym_BSLASHacrshort] = ACTIONS(12173), + [anon_sym_BSLASHAcrshort] = ACTIONS(12173), + [anon_sym_BSLASHACRshort] = ACTIONS(12173), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12173), + [anon_sym_BSLASHacrlong] = ACTIONS(12173), + [anon_sym_BSLASHAcrlong] = ACTIONS(12173), + [anon_sym_BSLASHACRlong] = ACTIONS(12173), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12173), + [anon_sym_BSLASHacrfull] = ACTIONS(12173), + [anon_sym_BSLASHAcrfull] = ACTIONS(12173), + [anon_sym_BSLASHACRfull] = ACTIONS(12173), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12173), + [anon_sym_BSLASHacs] = ACTIONS(12173), + [anon_sym_BSLASHAcs] = ACTIONS(12173), + [anon_sym_BSLASHacsp] = ACTIONS(12173), + [anon_sym_BSLASHAcsp] = ACTIONS(12173), + [anon_sym_BSLASHacl] = ACTIONS(12173), + [anon_sym_BSLASHAcl] = ACTIONS(12173), + [anon_sym_BSLASHaclp] = ACTIONS(12173), + [anon_sym_BSLASHAclp] = ACTIONS(12173), + [anon_sym_BSLASHacf] = ACTIONS(12173), + [anon_sym_BSLASHAcf] = ACTIONS(12173), + [anon_sym_BSLASHacfp] = ACTIONS(12173), + [anon_sym_BSLASHAcfp] = ACTIONS(12173), + [anon_sym_BSLASHac] = ACTIONS(12173), + [anon_sym_BSLASHAc] = ACTIONS(12173), + [anon_sym_BSLASHacp] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12173), + [anon_sym_BSLASHcolor] = ACTIONS(12173), + [anon_sym_BSLASHcolorbox] = ACTIONS(12173), + [anon_sym_BSLASHtextcolor] = ACTIONS(12173), + [anon_sym_BSLASHpagecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12173), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12173), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12173), + }, + [1376] = { + [sym_generic_command_name] = ACTIONS(12177), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12177), + [aux_sym_subsubsection_token1] = ACTIONS(12177), + [aux_sym_paragraph_token1] = ACTIONS(12177), + [aux_sym_subparagraph_token1] = ACTIONS(12177), + [anon_sym_BSLASHitem] = ACTIONS(12177), + [anon_sym_LBRACK] = ACTIONS(12175), + [anon_sym_RBRACK] = ACTIONS(12175), + [anon_sym_LBRACE] = ACTIONS(12175), + [anon_sym_RBRACE] = ACTIONS(12175), + [anon_sym_LPAREN] = ACTIONS(12175), + [anon_sym_COMMA] = ACTIONS(12175), + [anon_sym_EQ] = ACTIONS(12175), + [sym_word] = ACTIONS(12175), + [sym_param] = ACTIONS(12175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12175), + [anon_sym_DOLLAR] = ACTIONS(12177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12175), + [anon_sym_BSLASHbegin] = ACTIONS(12177), + [anon_sym_BSLASHcaption] = ACTIONS(12177), + [anon_sym_BSLASHcite] = ACTIONS(12177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCite] = ACTIONS(12177), + [anon_sym_BSLASHnocite] = ACTIONS(12177), + [anon_sym_BSLASHcitet] = ACTIONS(12177), + [anon_sym_BSLASHcitep] = ACTIONS(12177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteauthor] = ACTIONS(12177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitetitle] = ACTIONS(12177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteyear] = ACTIONS(12177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitedate] = ACTIONS(12177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteurl] = ACTIONS(12177), + [anon_sym_BSLASHfullcite] = ACTIONS(12177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12177), + [anon_sym_BSLASHcitealt] = ACTIONS(12177), + [anon_sym_BSLASHcitealp] = ACTIONS(12177), + [anon_sym_BSLASHcitetext] = ACTIONS(12177), + [anon_sym_BSLASHparencite] = ACTIONS(12177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHParencite] = ACTIONS(12177), + [anon_sym_BSLASHfootcite] = ACTIONS(12177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12177), + [anon_sym_BSLASHtextcite] = ACTIONS(12177), + [anon_sym_BSLASHTextcite] = ACTIONS(12177), + [anon_sym_BSLASHsmartcite] = ACTIONS(12177), + [anon_sym_BSLASHSmartcite] = ACTIONS(12177), + [anon_sym_BSLASHsupercite] = ACTIONS(12177), + [anon_sym_BSLASHautocite] = ACTIONS(12177), + [anon_sym_BSLASHAutocite] = ACTIONS(12177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHvolcite] = ACTIONS(12177), + [anon_sym_BSLASHVolcite] = ACTIONS(12177), + [anon_sym_BSLASHpvolcite] = ACTIONS(12177), + [anon_sym_BSLASHPvolcite] = ACTIONS(12177), + [anon_sym_BSLASHfvolcite] = ACTIONS(12177), + [anon_sym_BSLASHftvolcite] = ACTIONS(12177), + [anon_sym_BSLASHsvolcite] = ACTIONS(12177), + [anon_sym_BSLASHSvolcite] = ACTIONS(12177), + [anon_sym_BSLASHtvolcite] = ACTIONS(12177), + [anon_sym_BSLASHTvolcite] = ACTIONS(12177), + [anon_sym_BSLASHavolcite] = ACTIONS(12177), + [anon_sym_BSLASHAvolcite] = ACTIONS(12177), + [anon_sym_BSLASHnotecite] = ACTIONS(12177), + [anon_sym_BSLASHpnotecite] = ACTIONS(12177), + [anon_sym_BSLASHPnotecite] = ACTIONS(12177), + [anon_sym_BSLASHfnotecite] = ACTIONS(12177), + [anon_sym_BSLASHusepackage] = ACTIONS(12177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12177), + [anon_sym_BSLASHinclude] = ACTIONS(12177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12177), + [anon_sym_BSLASHinput] = ACTIONS(12177), + [anon_sym_BSLASHsubfile] = ACTIONS(12177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12177), + [anon_sym_BSLASHbibliography] = ACTIONS(12177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12177), + [anon_sym_BSLASHincludesvg] = ACTIONS(12177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12177), + [anon_sym_BSLASHimport] = ACTIONS(12177), + [anon_sym_BSLASHsubimport] = ACTIONS(12177), + [anon_sym_BSLASHinputfrom] = ACTIONS(12177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12177), + [anon_sym_BSLASHincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHlabel] = ACTIONS(12177), + [anon_sym_BSLASHref] = ACTIONS(12177), + [anon_sym_BSLASHvref] = ACTIONS(12177), + [anon_sym_BSLASHVref] = ACTIONS(12177), + [anon_sym_BSLASHautoref] = ACTIONS(12177), + [anon_sym_BSLASHpageref] = ACTIONS(12177), + [anon_sym_BSLASHcref] = ACTIONS(12177), + [anon_sym_BSLASHCref] = ACTIONS(12177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnameCref] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHlabelcref] = ACTIONS(12177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12177), + [anon_sym_BSLASHeqref] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange] = ACTIONS(12177), + [anon_sym_BSLASHCrefrange] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewlabel] = ACTIONS(12177), + [anon_sym_BSLASHnewcommand] = ACTIONS(12177), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12177), + [anon_sym_BSLASHgls] = ACTIONS(12177), + [anon_sym_BSLASHGls] = ACTIONS(12177), + [anon_sym_BSLASHGLS] = ACTIONS(12177), + [anon_sym_BSLASHglspl] = ACTIONS(12177), + [anon_sym_BSLASHGlspl] = ACTIONS(12177), + [anon_sym_BSLASHGLSpl] = ACTIONS(12177), + [anon_sym_BSLASHglsdisp] = ACTIONS(12177), + [anon_sym_BSLASHglslink] = ACTIONS(12177), + [anon_sym_BSLASHglstext] = ACTIONS(12177), + [anon_sym_BSLASHGlstext] = ACTIONS(12177), + [anon_sym_BSLASHGLStext] = ACTIONS(12177), + [anon_sym_BSLASHglsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12177), + [anon_sym_BSLASHglsplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSplural] = ACTIONS(12177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHglsname] = ACTIONS(12177), + [anon_sym_BSLASHGlsname] = ACTIONS(12177), + [anon_sym_BSLASHGLSname] = ACTIONS(12177), + [anon_sym_BSLASHglssymbol] = ACTIONS(12177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12177), + [anon_sym_BSLASHglsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12177), + [anon_sym_BSLASHglsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12177), + [anon_sym_BSLASHglsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12177), + [anon_sym_BSLASHglsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12177), + [anon_sym_BSLASHglsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12177), + [anon_sym_BSLASHnewacronym] = ACTIONS(12177), + [anon_sym_BSLASHacrshort] = ACTIONS(12177), + [anon_sym_BSLASHAcrshort] = ACTIONS(12177), + [anon_sym_BSLASHACRshort] = ACTIONS(12177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12177), + [anon_sym_BSLASHacrlong] = ACTIONS(12177), + [anon_sym_BSLASHAcrlong] = ACTIONS(12177), + [anon_sym_BSLASHACRlong] = ACTIONS(12177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12177), + [anon_sym_BSLASHacrfull] = ACTIONS(12177), + [anon_sym_BSLASHAcrfull] = ACTIONS(12177), + [anon_sym_BSLASHACRfull] = ACTIONS(12177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12177), + [anon_sym_BSLASHacs] = ACTIONS(12177), + [anon_sym_BSLASHAcs] = ACTIONS(12177), + [anon_sym_BSLASHacsp] = ACTIONS(12177), + [anon_sym_BSLASHAcsp] = ACTIONS(12177), + [anon_sym_BSLASHacl] = ACTIONS(12177), + [anon_sym_BSLASHAcl] = ACTIONS(12177), + [anon_sym_BSLASHaclp] = ACTIONS(12177), + [anon_sym_BSLASHAclp] = ACTIONS(12177), + [anon_sym_BSLASHacf] = ACTIONS(12177), + [anon_sym_BSLASHAcf] = ACTIONS(12177), + [anon_sym_BSLASHacfp] = ACTIONS(12177), + [anon_sym_BSLASHAcfp] = ACTIONS(12177), + [anon_sym_BSLASHac] = ACTIONS(12177), + [anon_sym_BSLASHAc] = ACTIONS(12177), + [anon_sym_BSLASHacp] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12177), + [anon_sym_BSLASHcolor] = ACTIONS(12177), + [anon_sym_BSLASHcolorbox] = ACTIONS(12177), + [anon_sym_BSLASHtextcolor] = ACTIONS(12177), + [anon_sym_BSLASHpagecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12177), + }, + [1377] = { + [sym_generic_command_name] = ACTIONS(12197), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12197), + [aux_sym_subsubsection_token1] = ACTIONS(12197), + [aux_sym_paragraph_token1] = ACTIONS(12197), + [aux_sym_subparagraph_token1] = ACTIONS(12197), + [anon_sym_BSLASHitem] = ACTIONS(12197), + [anon_sym_LBRACK] = ACTIONS(12195), + [anon_sym_RBRACK] = ACTIONS(12195), + [anon_sym_LBRACE] = ACTIONS(12195), + [anon_sym_RBRACE] = ACTIONS(12195), + [anon_sym_LPAREN] = ACTIONS(12195), + [anon_sym_COMMA] = ACTIONS(12195), + [anon_sym_EQ] = ACTIONS(12195), + [sym_word] = ACTIONS(12195), + [sym_param] = ACTIONS(12195), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12195), + [anon_sym_DOLLAR] = ACTIONS(12197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12195), + [anon_sym_BSLASHbegin] = ACTIONS(12197), + [anon_sym_BSLASHcaption] = ACTIONS(12197), + [anon_sym_BSLASHcite] = ACTIONS(12197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCite] = ACTIONS(12197), + [anon_sym_BSLASHnocite] = ACTIONS(12197), + [anon_sym_BSLASHcitet] = ACTIONS(12197), + [anon_sym_BSLASHcitep] = ACTIONS(12197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteauthor] = ACTIONS(12197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitetitle] = ACTIONS(12197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteyear] = ACTIONS(12197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitedate] = ACTIONS(12197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteurl] = ACTIONS(12197), + [anon_sym_BSLASHfullcite] = ACTIONS(12197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12197), + [anon_sym_BSLASHcitealt] = ACTIONS(12197), + [anon_sym_BSLASHcitealp] = ACTIONS(12197), + [anon_sym_BSLASHcitetext] = ACTIONS(12197), + [anon_sym_BSLASHparencite] = ACTIONS(12197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHParencite] = ACTIONS(12197), + [anon_sym_BSLASHfootcite] = ACTIONS(12197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12197), + [anon_sym_BSLASHtextcite] = ACTIONS(12197), + [anon_sym_BSLASHTextcite] = ACTIONS(12197), + [anon_sym_BSLASHsmartcite] = ACTIONS(12197), + [anon_sym_BSLASHSmartcite] = ACTIONS(12197), + [anon_sym_BSLASHsupercite] = ACTIONS(12197), + [anon_sym_BSLASHautocite] = ACTIONS(12197), + [anon_sym_BSLASHAutocite] = ACTIONS(12197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHvolcite] = ACTIONS(12197), + [anon_sym_BSLASHVolcite] = ACTIONS(12197), + [anon_sym_BSLASHpvolcite] = ACTIONS(12197), + [anon_sym_BSLASHPvolcite] = ACTIONS(12197), + [anon_sym_BSLASHfvolcite] = ACTIONS(12197), + [anon_sym_BSLASHftvolcite] = ACTIONS(12197), + [anon_sym_BSLASHsvolcite] = ACTIONS(12197), + [anon_sym_BSLASHSvolcite] = ACTIONS(12197), + [anon_sym_BSLASHtvolcite] = ACTIONS(12197), + [anon_sym_BSLASHTvolcite] = ACTIONS(12197), + [anon_sym_BSLASHavolcite] = ACTIONS(12197), + [anon_sym_BSLASHAvolcite] = ACTIONS(12197), + [anon_sym_BSLASHnotecite] = ACTIONS(12197), + [anon_sym_BSLASHpnotecite] = ACTIONS(12197), + [anon_sym_BSLASHPnotecite] = ACTIONS(12197), + [anon_sym_BSLASHfnotecite] = ACTIONS(12197), + [anon_sym_BSLASHusepackage] = ACTIONS(12197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12197), + [anon_sym_BSLASHinclude] = ACTIONS(12197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12197), + [anon_sym_BSLASHinput] = ACTIONS(12197), + [anon_sym_BSLASHsubfile] = ACTIONS(12197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12197), + [anon_sym_BSLASHbibliography] = ACTIONS(12197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12197), + [anon_sym_BSLASHincludesvg] = ACTIONS(12197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12197), + [anon_sym_BSLASHimport] = ACTIONS(12197), + [anon_sym_BSLASHsubimport] = ACTIONS(12197), + [anon_sym_BSLASHinputfrom] = ACTIONS(12197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12197), + [anon_sym_BSLASHincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHlabel] = ACTIONS(12197), + [anon_sym_BSLASHref] = ACTIONS(12197), + [anon_sym_BSLASHvref] = ACTIONS(12197), + [anon_sym_BSLASHVref] = ACTIONS(12197), + [anon_sym_BSLASHautoref] = ACTIONS(12197), + [anon_sym_BSLASHpageref] = ACTIONS(12197), + [anon_sym_BSLASHcref] = ACTIONS(12197), + [anon_sym_BSLASHCref] = ACTIONS(12197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnameCref] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHlabelcref] = ACTIONS(12197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12197), + [anon_sym_BSLASHeqref] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange] = ACTIONS(12197), + [anon_sym_BSLASHCrefrange] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewlabel] = ACTIONS(12197), + [anon_sym_BSLASHnewcommand] = ACTIONS(12197), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12197), + [anon_sym_BSLASHgls] = ACTIONS(12197), + [anon_sym_BSLASHGls] = ACTIONS(12197), + [anon_sym_BSLASHGLS] = ACTIONS(12197), + [anon_sym_BSLASHglspl] = ACTIONS(12197), + [anon_sym_BSLASHGlspl] = ACTIONS(12197), + [anon_sym_BSLASHGLSpl] = ACTIONS(12197), + [anon_sym_BSLASHglsdisp] = ACTIONS(12197), + [anon_sym_BSLASHglslink] = ACTIONS(12197), + [anon_sym_BSLASHglstext] = ACTIONS(12197), + [anon_sym_BSLASHGlstext] = ACTIONS(12197), + [anon_sym_BSLASHGLStext] = ACTIONS(12197), + [anon_sym_BSLASHglsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12197), + [anon_sym_BSLASHglsplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSplural] = ACTIONS(12197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHglsname] = ACTIONS(12197), + [anon_sym_BSLASHGlsname] = ACTIONS(12197), + [anon_sym_BSLASHGLSname] = ACTIONS(12197), + [anon_sym_BSLASHglssymbol] = ACTIONS(12197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12197), + [anon_sym_BSLASHglsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12197), + [anon_sym_BSLASHglsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12197), + [anon_sym_BSLASHglsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12197), + [anon_sym_BSLASHglsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12197), + [anon_sym_BSLASHglsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12197), + [anon_sym_BSLASHnewacronym] = ACTIONS(12197), + [anon_sym_BSLASHacrshort] = ACTIONS(12197), + [anon_sym_BSLASHAcrshort] = ACTIONS(12197), + [anon_sym_BSLASHACRshort] = ACTIONS(12197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12197), + [anon_sym_BSLASHacrlong] = ACTIONS(12197), + [anon_sym_BSLASHAcrlong] = ACTIONS(12197), + [anon_sym_BSLASHACRlong] = ACTIONS(12197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12197), + [anon_sym_BSLASHacrfull] = ACTIONS(12197), + [anon_sym_BSLASHAcrfull] = ACTIONS(12197), + [anon_sym_BSLASHACRfull] = ACTIONS(12197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12197), + [anon_sym_BSLASHacs] = ACTIONS(12197), + [anon_sym_BSLASHAcs] = ACTIONS(12197), + [anon_sym_BSLASHacsp] = ACTIONS(12197), + [anon_sym_BSLASHAcsp] = ACTIONS(12197), + [anon_sym_BSLASHacl] = ACTIONS(12197), + [anon_sym_BSLASHAcl] = ACTIONS(12197), + [anon_sym_BSLASHaclp] = ACTIONS(12197), + [anon_sym_BSLASHAclp] = ACTIONS(12197), + [anon_sym_BSLASHacf] = ACTIONS(12197), + [anon_sym_BSLASHAcf] = ACTIONS(12197), + [anon_sym_BSLASHacfp] = ACTIONS(12197), + [anon_sym_BSLASHAcfp] = ACTIONS(12197), + [anon_sym_BSLASHac] = ACTIONS(12197), + [anon_sym_BSLASHAc] = ACTIONS(12197), + [anon_sym_BSLASHacp] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12197), + [anon_sym_BSLASHcolor] = ACTIONS(12197), + [anon_sym_BSLASHcolorbox] = ACTIONS(12197), + [anon_sym_BSLASHtextcolor] = ACTIONS(12197), + [anon_sym_BSLASHpagecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12197), + }, + [1378] = { + [sym_generic_command_name] = ACTIONS(12209), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12209), + [aux_sym_subsubsection_token1] = ACTIONS(12209), + [aux_sym_paragraph_token1] = ACTIONS(12209), + [aux_sym_subparagraph_token1] = ACTIONS(12209), + [anon_sym_BSLASHitem] = ACTIONS(12209), + [anon_sym_LBRACK] = ACTIONS(12207), + [anon_sym_RBRACK] = ACTIONS(12207), + [anon_sym_LBRACE] = ACTIONS(12207), + [anon_sym_RBRACE] = ACTIONS(12207), + [anon_sym_LPAREN] = ACTIONS(12207), + [anon_sym_COMMA] = ACTIONS(12207), + [anon_sym_EQ] = ACTIONS(12207), + [sym_word] = ACTIONS(12207), + [sym_param] = ACTIONS(12207), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12207), + [anon_sym_DOLLAR] = ACTIONS(12209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12207), + [anon_sym_BSLASHbegin] = ACTIONS(12209), + [anon_sym_BSLASHcaption] = ACTIONS(12209), + [anon_sym_BSLASHcite] = ACTIONS(12209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCite] = ACTIONS(12209), + [anon_sym_BSLASHnocite] = ACTIONS(12209), + [anon_sym_BSLASHcitet] = ACTIONS(12209), + [anon_sym_BSLASHcitep] = ACTIONS(12209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteauthor] = ACTIONS(12209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitetitle] = ACTIONS(12209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteyear] = ACTIONS(12209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitedate] = ACTIONS(12209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteurl] = ACTIONS(12209), + [anon_sym_BSLASHfullcite] = ACTIONS(12209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12209), + [anon_sym_BSLASHcitealt] = ACTIONS(12209), + [anon_sym_BSLASHcitealp] = ACTIONS(12209), + [anon_sym_BSLASHcitetext] = ACTIONS(12209), + [anon_sym_BSLASHparencite] = ACTIONS(12209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHParencite] = ACTIONS(12209), + [anon_sym_BSLASHfootcite] = ACTIONS(12209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12209), + [anon_sym_BSLASHtextcite] = ACTIONS(12209), + [anon_sym_BSLASHTextcite] = ACTIONS(12209), + [anon_sym_BSLASHsmartcite] = ACTIONS(12209), + [anon_sym_BSLASHSmartcite] = ACTIONS(12209), + [anon_sym_BSLASHsupercite] = ACTIONS(12209), + [anon_sym_BSLASHautocite] = ACTIONS(12209), + [anon_sym_BSLASHAutocite] = ACTIONS(12209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHvolcite] = ACTIONS(12209), + [anon_sym_BSLASHVolcite] = ACTIONS(12209), + [anon_sym_BSLASHpvolcite] = ACTIONS(12209), + [anon_sym_BSLASHPvolcite] = ACTIONS(12209), + [anon_sym_BSLASHfvolcite] = ACTIONS(12209), + [anon_sym_BSLASHftvolcite] = ACTIONS(12209), + [anon_sym_BSLASHsvolcite] = ACTIONS(12209), + [anon_sym_BSLASHSvolcite] = ACTIONS(12209), + [anon_sym_BSLASHtvolcite] = ACTIONS(12209), + [anon_sym_BSLASHTvolcite] = ACTIONS(12209), + [anon_sym_BSLASHavolcite] = ACTIONS(12209), + [anon_sym_BSLASHAvolcite] = ACTIONS(12209), + [anon_sym_BSLASHnotecite] = ACTIONS(12209), + [anon_sym_BSLASHpnotecite] = ACTIONS(12209), + [anon_sym_BSLASHPnotecite] = ACTIONS(12209), + [anon_sym_BSLASHfnotecite] = ACTIONS(12209), + [anon_sym_BSLASHusepackage] = ACTIONS(12209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12209), + [anon_sym_BSLASHinclude] = ACTIONS(12209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12209), + [anon_sym_BSLASHinput] = ACTIONS(12209), + [anon_sym_BSLASHsubfile] = ACTIONS(12209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12209), + [anon_sym_BSLASHbibliography] = ACTIONS(12209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12209), + [anon_sym_BSLASHincludesvg] = ACTIONS(12209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12209), + [anon_sym_BSLASHimport] = ACTIONS(12209), + [anon_sym_BSLASHsubimport] = ACTIONS(12209), + [anon_sym_BSLASHinputfrom] = ACTIONS(12209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12209), + [anon_sym_BSLASHincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHlabel] = ACTIONS(12209), + [anon_sym_BSLASHref] = ACTIONS(12209), + [anon_sym_BSLASHvref] = ACTIONS(12209), + [anon_sym_BSLASHVref] = ACTIONS(12209), + [anon_sym_BSLASHautoref] = ACTIONS(12209), + [anon_sym_BSLASHpageref] = ACTIONS(12209), + [anon_sym_BSLASHcref] = ACTIONS(12209), + [anon_sym_BSLASHCref] = ACTIONS(12209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnameCref] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHlabelcref] = ACTIONS(12209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12209), + [anon_sym_BSLASHeqref] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange] = ACTIONS(12209), + [anon_sym_BSLASHCrefrange] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewlabel] = ACTIONS(12209), + [anon_sym_BSLASHnewcommand] = ACTIONS(12209), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12209), + [anon_sym_BSLASHgls] = ACTIONS(12209), + [anon_sym_BSLASHGls] = ACTIONS(12209), + [anon_sym_BSLASHGLS] = ACTIONS(12209), + [anon_sym_BSLASHglspl] = ACTIONS(12209), + [anon_sym_BSLASHGlspl] = ACTIONS(12209), + [anon_sym_BSLASHGLSpl] = ACTIONS(12209), + [anon_sym_BSLASHglsdisp] = ACTIONS(12209), + [anon_sym_BSLASHglslink] = ACTIONS(12209), + [anon_sym_BSLASHglstext] = ACTIONS(12209), + [anon_sym_BSLASHGlstext] = ACTIONS(12209), + [anon_sym_BSLASHGLStext] = ACTIONS(12209), + [anon_sym_BSLASHglsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12209), + [anon_sym_BSLASHglsplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSplural] = ACTIONS(12209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHglsname] = ACTIONS(12209), + [anon_sym_BSLASHGlsname] = ACTIONS(12209), + [anon_sym_BSLASHGLSname] = ACTIONS(12209), + [anon_sym_BSLASHglssymbol] = ACTIONS(12209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12209), + [anon_sym_BSLASHglsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12209), + [anon_sym_BSLASHglsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12209), + [anon_sym_BSLASHglsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12209), + [anon_sym_BSLASHglsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12209), + [anon_sym_BSLASHglsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12209), + [anon_sym_BSLASHnewacronym] = ACTIONS(12209), + [anon_sym_BSLASHacrshort] = ACTIONS(12209), + [anon_sym_BSLASHAcrshort] = ACTIONS(12209), + [anon_sym_BSLASHACRshort] = ACTIONS(12209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12209), + [anon_sym_BSLASHacrlong] = ACTIONS(12209), + [anon_sym_BSLASHAcrlong] = ACTIONS(12209), + [anon_sym_BSLASHACRlong] = ACTIONS(12209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12209), + [anon_sym_BSLASHacrfull] = ACTIONS(12209), + [anon_sym_BSLASHAcrfull] = ACTIONS(12209), + [anon_sym_BSLASHACRfull] = ACTIONS(12209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12209), + [anon_sym_BSLASHacs] = ACTIONS(12209), + [anon_sym_BSLASHAcs] = ACTIONS(12209), + [anon_sym_BSLASHacsp] = ACTIONS(12209), + [anon_sym_BSLASHAcsp] = ACTIONS(12209), + [anon_sym_BSLASHacl] = ACTIONS(12209), + [anon_sym_BSLASHAcl] = ACTIONS(12209), + [anon_sym_BSLASHaclp] = ACTIONS(12209), + [anon_sym_BSLASHAclp] = ACTIONS(12209), + [anon_sym_BSLASHacf] = ACTIONS(12209), + [anon_sym_BSLASHAcf] = ACTIONS(12209), + [anon_sym_BSLASHacfp] = ACTIONS(12209), + [anon_sym_BSLASHAcfp] = ACTIONS(12209), + [anon_sym_BSLASHac] = ACTIONS(12209), + [anon_sym_BSLASHAc] = ACTIONS(12209), + [anon_sym_BSLASHacp] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12209), + [anon_sym_BSLASHcolor] = ACTIONS(12209), + [anon_sym_BSLASHcolorbox] = ACTIONS(12209), + [anon_sym_BSLASHtextcolor] = ACTIONS(12209), + [anon_sym_BSLASHpagecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12209), + }, + [1379] = { + [sym_generic_command_name] = ACTIONS(12275), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12275), + [aux_sym_subsubsection_token1] = ACTIONS(12275), + [aux_sym_paragraph_token1] = ACTIONS(12275), + [aux_sym_subparagraph_token1] = ACTIONS(12275), + [anon_sym_BSLASHitem] = ACTIONS(12275), + [anon_sym_LBRACK] = ACTIONS(12273), + [anon_sym_RBRACK] = ACTIONS(12273), + [anon_sym_LBRACE] = ACTIONS(12273), + [anon_sym_RBRACE] = ACTIONS(12273), + [anon_sym_LPAREN] = ACTIONS(12273), + [anon_sym_COMMA] = ACTIONS(12273), + [anon_sym_EQ] = ACTIONS(12273), + [sym_word] = ACTIONS(12273), + [sym_param] = ACTIONS(12273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12273), + [anon_sym_DOLLAR] = ACTIONS(12275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12273), + [anon_sym_BSLASHbegin] = ACTIONS(12275), + [anon_sym_BSLASHcaption] = ACTIONS(12275), + [anon_sym_BSLASHcite] = ACTIONS(12275), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCite] = ACTIONS(12275), + [anon_sym_BSLASHnocite] = ACTIONS(12275), + [anon_sym_BSLASHcitet] = ACTIONS(12275), + [anon_sym_BSLASHcitep] = ACTIONS(12275), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteauthor] = ACTIONS(12275), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12275), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitetitle] = ACTIONS(12275), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteyear] = ACTIONS(12275), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitedate] = ACTIONS(12275), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteurl] = ACTIONS(12275), + [anon_sym_BSLASHfullcite] = ACTIONS(12275), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12275), + [anon_sym_BSLASHcitealt] = ACTIONS(12275), + [anon_sym_BSLASHcitealp] = ACTIONS(12275), + [anon_sym_BSLASHcitetext] = ACTIONS(12275), + [anon_sym_BSLASHparencite] = ACTIONS(12275), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHParencite] = ACTIONS(12275), + [anon_sym_BSLASHfootcite] = ACTIONS(12275), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12275), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12275), + [anon_sym_BSLASHtextcite] = ACTIONS(12275), + [anon_sym_BSLASHTextcite] = ACTIONS(12275), + [anon_sym_BSLASHsmartcite] = ACTIONS(12275), + [anon_sym_BSLASHSmartcite] = ACTIONS(12275), + [anon_sym_BSLASHsupercite] = ACTIONS(12275), + [anon_sym_BSLASHautocite] = ACTIONS(12275), + [anon_sym_BSLASHAutocite] = ACTIONS(12275), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHvolcite] = ACTIONS(12275), + [anon_sym_BSLASHVolcite] = ACTIONS(12275), + [anon_sym_BSLASHpvolcite] = ACTIONS(12275), + [anon_sym_BSLASHPvolcite] = ACTIONS(12275), + [anon_sym_BSLASHfvolcite] = ACTIONS(12275), + [anon_sym_BSLASHftvolcite] = ACTIONS(12275), + [anon_sym_BSLASHsvolcite] = ACTIONS(12275), + [anon_sym_BSLASHSvolcite] = ACTIONS(12275), + [anon_sym_BSLASHtvolcite] = ACTIONS(12275), + [anon_sym_BSLASHTvolcite] = ACTIONS(12275), + [anon_sym_BSLASHavolcite] = ACTIONS(12275), + [anon_sym_BSLASHAvolcite] = ACTIONS(12275), + [anon_sym_BSLASHnotecite] = ACTIONS(12275), + [anon_sym_BSLASHpnotecite] = ACTIONS(12275), + [anon_sym_BSLASHPnotecite] = ACTIONS(12275), + [anon_sym_BSLASHfnotecite] = ACTIONS(12275), + [anon_sym_BSLASHusepackage] = ACTIONS(12275), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12275), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12275), + [anon_sym_BSLASHinclude] = ACTIONS(12275), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12275), + [anon_sym_BSLASHinput] = ACTIONS(12275), + [anon_sym_BSLASHsubfile] = ACTIONS(12275), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12275), + [anon_sym_BSLASHbibliography] = ACTIONS(12275), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12275), + [anon_sym_BSLASHincludesvg] = ACTIONS(12275), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12275), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12275), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12275), + [anon_sym_BSLASHimport] = ACTIONS(12275), + [anon_sym_BSLASHsubimport] = ACTIONS(12275), + [anon_sym_BSLASHinputfrom] = ACTIONS(12275), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12275), + [anon_sym_BSLASHincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHlabel] = ACTIONS(12275), + [anon_sym_BSLASHref] = ACTIONS(12275), + [anon_sym_BSLASHvref] = ACTIONS(12275), + [anon_sym_BSLASHVref] = ACTIONS(12275), + [anon_sym_BSLASHautoref] = ACTIONS(12275), + [anon_sym_BSLASHpageref] = ACTIONS(12275), + [anon_sym_BSLASHcref] = ACTIONS(12275), + [anon_sym_BSLASHCref] = ACTIONS(12275), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnameCref] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHlabelcref] = ACTIONS(12275), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12275), + [anon_sym_BSLASHeqref] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange] = ACTIONS(12275), + [anon_sym_BSLASHCrefrange] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewlabel] = ACTIONS(12275), + [anon_sym_BSLASHnewcommand] = ACTIONS(12275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12275), + [anon_sym_BSLASHgls] = ACTIONS(12275), + [anon_sym_BSLASHGls] = ACTIONS(12275), + [anon_sym_BSLASHGLS] = ACTIONS(12275), + [anon_sym_BSLASHglspl] = ACTIONS(12275), + [anon_sym_BSLASHGlspl] = ACTIONS(12275), + [anon_sym_BSLASHGLSpl] = ACTIONS(12275), + [anon_sym_BSLASHglsdisp] = ACTIONS(12275), + [anon_sym_BSLASHglslink] = ACTIONS(12275), + [anon_sym_BSLASHglstext] = ACTIONS(12275), + [anon_sym_BSLASHGlstext] = ACTIONS(12275), + [anon_sym_BSLASHGLStext] = ACTIONS(12275), + [anon_sym_BSLASHglsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12275), + [anon_sym_BSLASHglsplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSplural] = ACTIONS(12275), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHglsname] = ACTIONS(12275), + [anon_sym_BSLASHGlsname] = ACTIONS(12275), + [anon_sym_BSLASHGLSname] = ACTIONS(12275), + [anon_sym_BSLASHglssymbol] = ACTIONS(12275), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12275), + [anon_sym_BSLASHglsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12275), + [anon_sym_BSLASHglsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12275), + [anon_sym_BSLASHglsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12275), + [anon_sym_BSLASHglsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12275), + [anon_sym_BSLASHglsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12275), + [anon_sym_BSLASHnewacronym] = ACTIONS(12275), + [anon_sym_BSLASHacrshort] = ACTIONS(12275), + [anon_sym_BSLASHAcrshort] = ACTIONS(12275), + [anon_sym_BSLASHACRshort] = ACTIONS(12275), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12275), + [anon_sym_BSLASHacrlong] = ACTIONS(12275), + [anon_sym_BSLASHAcrlong] = ACTIONS(12275), + [anon_sym_BSLASHACRlong] = ACTIONS(12275), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12275), + [anon_sym_BSLASHacrfull] = ACTIONS(12275), + [anon_sym_BSLASHAcrfull] = ACTIONS(12275), + [anon_sym_BSLASHACRfull] = ACTIONS(12275), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12275), + [anon_sym_BSLASHacs] = ACTIONS(12275), + [anon_sym_BSLASHAcs] = ACTIONS(12275), + [anon_sym_BSLASHacsp] = ACTIONS(12275), + [anon_sym_BSLASHAcsp] = ACTIONS(12275), + [anon_sym_BSLASHacl] = ACTIONS(12275), + [anon_sym_BSLASHAcl] = ACTIONS(12275), + [anon_sym_BSLASHaclp] = ACTIONS(12275), + [anon_sym_BSLASHAclp] = ACTIONS(12275), + [anon_sym_BSLASHacf] = ACTIONS(12275), + [anon_sym_BSLASHAcf] = ACTIONS(12275), + [anon_sym_BSLASHacfp] = ACTIONS(12275), + [anon_sym_BSLASHAcfp] = ACTIONS(12275), + [anon_sym_BSLASHac] = ACTIONS(12275), + [anon_sym_BSLASHAc] = ACTIONS(12275), + [anon_sym_BSLASHacp] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12275), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12275), + [anon_sym_BSLASHcolor] = ACTIONS(12275), + [anon_sym_BSLASHcolorbox] = ACTIONS(12275), + [anon_sym_BSLASHtextcolor] = ACTIONS(12275), + [anon_sym_BSLASHpagecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12275), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12275), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12275), + }, + [1380] = { + [sym_generic_command_name] = ACTIONS(12283), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12283), + [aux_sym_subsubsection_token1] = ACTIONS(12283), + [aux_sym_paragraph_token1] = ACTIONS(12283), + [aux_sym_subparagraph_token1] = ACTIONS(12283), + [anon_sym_BSLASHitem] = ACTIONS(12283), + [anon_sym_LBRACK] = ACTIONS(12281), + [anon_sym_RBRACK] = ACTIONS(12281), + [anon_sym_LBRACE] = ACTIONS(12281), + [anon_sym_RBRACE] = ACTIONS(12281), + [anon_sym_LPAREN] = ACTIONS(12281), + [anon_sym_COMMA] = ACTIONS(12281), + [anon_sym_EQ] = ACTIONS(12281), + [sym_word] = ACTIONS(12281), + [sym_param] = ACTIONS(12281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12281), + [anon_sym_DOLLAR] = ACTIONS(12283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12281), + [anon_sym_BSLASHbegin] = ACTIONS(12283), + [anon_sym_BSLASHcaption] = ACTIONS(12283), + [anon_sym_BSLASHcite] = ACTIONS(12283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCite] = ACTIONS(12283), + [anon_sym_BSLASHnocite] = ACTIONS(12283), + [anon_sym_BSLASHcitet] = ACTIONS(12283), + [anon_sym_BSLASHcitep] = ACTIONS(12283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteauthor] = ACTIONS(12283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitetitle] = ACTIONS(12283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteyear] = ACTIONS(12283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitedate] = ACTIONS(12283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteurl] = ACTIONS(12283), + [anon_sym_BSLASHfullcite] = ACTIONS(12283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12283), + [anon_sym_BSLASHcitealt] = ACTIONS(12283), + [anon_sym_BSLASHcitealp] = ACTIONS(12283), + [anon_sym_BSLASHcitetext] = ACTIONS(12283), + [anon_sym_BSLASHparencite] = ACTIONS(12283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHParencite] = ACTIONS(12283), + [anon_sym_BSLASHfootcite] = ACTIONS(12283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12283), + [anon_sym_BSLASHtextcite] = ACTIONS(12283), + [anon_sym_BSLASHTextcite] = ACTIONS(12283), + [anon_sym_BSLASHsmartcite] = ACTIONS(12283), + [anon_sym_BSLASHSmartcite] = ACTIONS(12283), + [anon_sym_BSLASHsupercite] = ACTIONS(12283), + [anon_sym_BSLASHautocite] = ACTIONS(12283), + [anon_sym_BSLASHAutocite] = ACTIONS(12283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHvolcite] = ACTIONS(12283), + [anon_sym_BSLASHVolcite] = ACTIONS(12283), + [anon_sym_BSLASHpvolcite] = ACTIONS(12283), + [anon_sym_BSLASHPvolcite] = ACTIONS(12283), + [anon_sym_BSLASHfvolcite] = ACTIONS(12283), + [anon_sym_BSLASHftvolcite] = ACTIONS(12283), + [anon_sym_BSLASHsvolcite] = ACTIONS(12283), + [anon_sym_BSLASHSvolcite] = ACTIONS(12283), + [anon_sym_BSLASHtvolcite] = ACTIONS(12283), + [anon_sym_BSLASHTvolcite] = ACTIONS(12283), + [anon_sym_BSLASHavolcite] = ACTIONS(12283), + [anon_sym_BSLASHAvolcite] = ACTIONS(12283), + [anon_sym_BSLASHnotecite] = ACTIONS(12283), + [anon_sym_BSLASHpnotecite] = ACTIONS(12283), + [anon_sym_BSLASHPnotecite] = ACTIONS(12283), + [anon_sym_BSLASHfnotecite] = ACTIONS(12283), + [anon_sym_BSLASHusepackage] = ACTIONS(12283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12283), + [anon_sym_BSLASHinclude] = ACTIONS(12283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12283), + [anon_sym_BSLASHinput] = ACTIONS(12283), + [anon_sym_BSLASHsubfile] = ACTIONS(12283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12283), + [anon_sym_BSLASHbibliography] = ACTIONS(12283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12283), + [anon_sym_BSLASHincludesvg] = ACTIONS(12283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12283), + [anon_sym_BSLASHimport] = ACTIONS(12283), + [anon_sym_BSLASHsubimport] = ACTIONS(12283), + [anon_sym_BSLASHinputfrom] = ACTIONS(12283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12283), + [anon_sym_BSLASHincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHlabel] = ACTIONS(12283), + [anon_sym_BSLASHref] = ACTIONS(12283), + [anon_sym_BSLASHvref] = ACTIONS(12283), + [anon_sym_BSLASHVref] = ACTIONS(12283), + [anon_sym_BSLASHautoref] = ACTIONS(12283), + [anon_sym_BSLASHpageref] = ACTIONS(12283), + [anon_sym_BSLASHcref] = ACTIONS(12283), + [anon_sym_BSLASHCref] = ACTIONS(12283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnameCref] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHlabelcref] = ACTIONS(12283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12283), + [anon_sym_BSLASHeqref] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange] = ACTIONS(12283), + [anon_sym_BSLASHCrefrange] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewlabel] = ACTIONS(12283), + [anon_sym_BSLASHnewcommand] = ACTIONS(12283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12283), + [anon_sym_BSLASHgls] = ACTIONS(12283), + [anon_sym_BSLASHGls] = ACTIONS(12283), + [anon_sym_BSLASHGLS] = ACTIONS(12283), + [anon_sym_BSLASHglspl] = ACTIONS(12283), + [anon_sym_BSLASHGlspl] = ACTIONS(12283), + [anon_sym_BSLASHGLSpl] = ACTIONS(12283), + [anon_sym_BSLASHglsdisp] = ACTIONS(12283), + [anon_sym_BSLASHglslink] = ACTIONS(12283), + [anon_sym_BSLASHglstext] = ACTIONS(12283), + [anon_sym_BSLASHGlstext] = ACTIONS(12283), + [anon_sym_BSLASHGLStext] = ACTIONS(12283), + [anon_sym_BSLASHglsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12283), + [anon_sym_BSLASHglsplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSplural] = ACTIONS(12283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHglsname] = ACTIONS(12283), + [anon_sym_BSLASHGlsname] = ACTIONS(12283), + [anon_sym_BSLASHGLSname] = ACTIONS(12283), + [anon_sym_BSLASHglssymbol] = ACTIONS(12283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12283), + [anon_sym_BSLASHglsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12283), + [anon_sym_BSLASHglsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12283), + [anon_sym_BSLASHglsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12283), + [anon_sym_BSLASHglsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12283), + [anon_sym_BSLASHglsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12283), + [anon_sym_BSLASHnewacronym] = ACTIONS(12283), + [anon_sym_BSLASHacrshort] = ACTIONS(12283), + [anon_sym_BSLASHAcrshort] = ACTIONS(12283), + [anon_sym_BSLASHACRshort] = ACTIONS(12283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12283), + [anon_sym_BSLASHacrlong] = ACTIONS(12283), + [anon_sym_BSLASHAcrlong] = ACTIONS(12283), + [anon_sym_BSLASHACRlong] = ACTIONS(12283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12283), + [anon_sym_BSLASHacrfull] = ACTIONS(12283), + [anon_sym_BSLASHAcrfull] = ACTIONS(12283), + [anon_sym_BSLASHACRfull] = ACTIONS(12283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12283), + [anon_sym_BSLASHacs] = ACTIONS(12283), + [anon_sym_BSLASHAcs] = ACTIONS(12283), + [anon_sym_BSLASHacsp] = ACTIONS(12283), + [anon_sym_BSLASHAcsp] = ACTIONS(12283), + [anon_sym_BSLASHacl] = ACTIONS(12283), + [anon_sym_BSLASHAcl] = ACTIONS(12283), + [anon_sym_BSLASHaclp] = ACTIONS(12283), + [anon_sym_BSLASHAclp] = ACTIONS(12283), + [anon_sym_BSLASHacf] = ACTIONS(12283), + [anon_sym_BSLASHAcf] = ACTIONS(12283), + [anon_sym_BSLASHacfp] = ACTIONS(12283), + [anon_sym_BSLASHAcfp] = ACTIONS(12283), + [anon_sym_BSLASHac] = ACTIONS(12283), + [anon_sym_BSLASHAc] = ACTIONS(12283), + [anon_sym_BSLASHacp] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12283), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12283), + [anon_sym_BSLASHcolor] = ACTIONS(12283), + [anon_sym_BSLASHcolorbox] = ACTIONS(12283), + [anon_sym_BSLASHtextcolor] = ACTIONS(12283), + [anon_sym_BSLASHpagecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12283), + }, + [1381] = { + [sym_generic_command_name] = ACTIONS(12299), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12299), + [aux_sym_subsubsection_token1] = ACTIONS(12299), + [aux_sym_paragraph_token1] = ACTIONS(12299), + [aux_sym_subparagraph_token1] = ACTIONS(12299), + [anon_sym_BSLASHitem] = ACTIONS(12299), + [anon_sym_LBRACK] = ACTIONS(12297), + [anon_sym_RBRACK] = ACTIONS(12297), + [anon_sym_LBRACE] = ACTIONS(12297), + [anon_sym_RBRACE] = ACTIONS(12297), + [anon_sym_LPAREN] = ACTIONS(12297), + [anon_sym_COMMA] = ACTIONS(12297), + [anon_sym_EQ] = ACTIONS(12297), + [sym_word] = ACTIONS(12297), + [sym_param] = ACTIONS(12297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12297), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12297), + [anon_sym_DOLLAR] = ACTIONS(12299), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12297), + [anon_sym_BSLASHbegin] = ACTIONS(12299), + [anon_sym_BSLASHcaption] = ACTIONS(12299), + [anon_sym_BSLASHcite] = ACTIONS(12299), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCite] = ACTIONS(12299), + [anon_sym_BSLASHnocite] = ACTIONS(12299), + [anon_sym_BSLASHcitet] = ACTIONS(12299), + [anon_sym_BSLASHcitep] = ACTIONS(12299), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteauthor] = ACTIONS(12299), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12299), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitetitle] = ACTIONS(12299), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteyear] = ACTIONS(12299), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitedate] = ACTIONS(12299), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteurl] = ACTIONS(12299), + [anon_sym_BSLASHfullcite] = ACTIONS(12299), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12299), + [anon_sym_BSLASHcitealt] = ACTIONS(12299), + [anon_sym_BSLASHcitealp] = ACTIONS(12299), + [anon_sym_BSLASHcitetext] = ACTIONS(12299), + [anon_sym_BSLASHparencite] = ACTIONS(12299), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHParencite] = ACTIONS(12299), + [anon_sym_BSLASHfootcite] = ACTIONS(12299), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12299), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12299), + [anon_sym_BSLASHtextcite] = ACTIONS(12299), + [anon_sym_BSLASHTextcite] = ACTIONS(12299), + [anon_sym_BSLASHsmartcite] = ACTIONS(12299), + [anon_sym_BSLASHSmartcite] = ACTIONS(12299), + [anon_sym_BSLASHsupercite] = ACTIONS(12299), + [anon_sym_BSLASHautocite] = ACTIONS(12299), + [anon_sym_BSLASHAutocite] = ACTIONS(12299), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHvolcite] = ACTIONS(12299), + [anon_sym_BSLASHVolcite] = ACTIONS(12299), + [anon_sym_BSLASHpvolcite] = ACTIONS(12299), + [anon_sym_BSLASHPvolcite] = ACTIONS(12299), + [anon_sym_BSLASHfvolcite] = ACTIONS(12299), + [anon_sym_BSLASHftvolcite] = ACTIONS(12299), + [anon_sym_BSLASHsvolcite] = ACTIONS(12299), + [anon_sym_BSLASHSvolcite] = ACTIONS(12299), + [anon_sym_BSLASHtvolcite] = ACTIONS(12299), + [anon_sym_BSLASHTvolcite] = ACTIONS(12299), + [anon_sym_BSLASHavolcite] = ACTIONS(12299), + [anon_sym_BSLASHAvolcite] = ACTIONS(12299), + [anon_sym_BSLASHnotecite] = ACTIONS(12299), + [anon_sym_BSLASHpnotecite] = ACTIONS(12299), + [anon_sym_BSLASHPnotecite] = ACTIONS(12299), + [anon_sym_BSLASHfnotecite] = ACTIONS(12299), + [anon_sym_BSLASHusepackage] = ACTIONS(12299), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12299), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12299), + [anon_sym_BSLASHinclude] = ACTIONS(12299), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12299), + [anon_sym_BSLASHinput] = ACTIONS(12299), + [anon_sym_BSLASHsubfile] = ACTIONS(12299), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12299), + [anon_sym_BSLASHbibliography] = ACTIONS(12299), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12299), + [anon_sym_BSLASHincludesvg] = ACTIONS(12299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12299), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12299), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12299), + [anon_sym_BSLASHimport] = ACTIONS(12299), + [anon_sym_BSLASHsubimport] = ACTIONS(12299), + [anon_sym_BSLASHinputfrom] = ACTIONS(12299), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12299), + [anon_sym_BSLASHincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHlabel] = ACTIONS(12299), + [anon_sym_BSLASHref] = ACTIONS(12299), + [anon_sym_BSLASHvref] = ACTIONS(12299), + [anon_sym_BSLASHVref] = ACTIONS(12299), + [anon_sym_BSLASHautoref] = ACTIONS(12299), + [anon_sym_BSLASHpageref] = ACTIONS(12299), + [anon_sym_BSLASHcref] = ACTIONS(12299), + [anon_sym_BSLASHCref] = ACTIONS(12299), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnameCref] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHlabelcref] = ACTIONS(12299), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12299), + [anon_sym_BSLASHeqref] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange] = ACTIONS(12299), + [anon_sym_BSLASHCrefrange] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewlabel] = ACTIONS(12299), + [anon_sym_BSLASHnewcommand] = ACTIONS(12299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12299), + [anon_sym_BSLASHgls] = ACTIONS(12299), + [anon_sym_BSLASHGls] = ACTIONS(12299), + [anon_sym_BSLASHGLS] = ACTIONS(12299), + [anon_sym_BSLASHglspl] = ACTIONS(12299), + [anon_sym_BSLASHGlspl] = ACTIONS(12299), + [anon_sym_BSLASHGLSpl] = ACTIONS(12299), + [anon_sym_BSLASHglsdisp] = ACTIONS(12299), + [anon_sym_BSLASHglslink] = ACTIONS(12299), + [anon_sym_BSLASHglstext] = ACTIONS(12299), + [anon_sym_BSLASHGlstext] = ACTIONS(12299), + [anon_sym_BSLASHGLStext] = ACTIONS(12299), + [anon_sym_BSLASHglsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12299), + [anon_sym_BSLASHglsplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSplural] = ACTIONS(12299), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHglsname] = ACTIONS(12299), + [anon_sym_BSLASHGlsname] = ACTIONS(12299), + [anon_sym_BSLASHGLSname] = ACTIONS(12299), + [anon_sym_BSLASHglssymbol] = ACTIONS(12299), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12299), + [anon_sym_BSLASHglsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12299), + [anon_sym_BSLASHglsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12299), + [anon_sym_BSLASHglsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12299), + [anon_sym_BSLASHglsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12299), + [anon_sym_BSLASHglsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12299), + [anon_sym_BSLASHnewacronym] = ACTIONS(12299), + [anon_sym_BSLASHacrshort] = ACTIONS(12299), + [anon_sym_BSLASHAcrshort] = ACTIONS(12299), + [anon_sym_BSLASHACRshort] = ACTIONS(12299), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12299), + [anon_sym_BSLASHacrlong] = ACTIONS(12299), + [anon_sym_BSLASHAcrlong] = ACTIONS(12299), + [anon_sym_BSLASHACRlong] = ACTIONS(12299), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12299), + [anon_sym_BSLASHacrfull] = ACTIONS(12299), + [anon_sym_BSLASHAcrfull] = ACTIONS(12299), + [anon_sym_BSLASHACRfull] = ACTIONS(12299), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12299), + [anon_sym_BSLASHacs] = ACTIONS(12299), + [anon_sym_BSLASHAcs] = ACTIONS(12299), + [anon_sym_BSLASHacsp] = ACTIONS(12299), + [anon_sym_BSLASHAcsp] = ACTIONS(12299), + [anon_sym_BSLASHacl] = ACTIONS(12299), + [anon_sym_BSLASHAcl] = ACTIONS(12299), + [anon_sym_BSLASHaclp] = ACTIONS(12299), + [anon_sym_BSLASHAclp] = ACTIONS(12299), + [anon_sym_BSLASHacf] = ACTIONS(12299), + [anon_sym_BSLASHAcf] = ACTIONS(12299), + [anon_sym_BSLASHacfp] = ACTIONS(12299), + [anon_sym_BSLASHAcfp] = ACTIONS(12299), + [anon_sym_BSLASHac] = ACTIONS(12299), + [anon_sym_BSLASHAc] = ACTIONS(12299), + [anon_sym_BSLASHacp] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12299), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12299), + [anon_sym_BSLASHcolor] = ACTIONS(12299), + [anon_sym_BSLASHcolorbox] = ACTIONS(12299), + [anon_sym_BSLASHtextcolor] = ACTIONS(12299), + [anon_sym_BSLASHpagecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12299), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12299), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12299), + }, + [1382] = { + [sym_generic_command_name] = ACTIONS(12331), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12331), + [aux_sym_subsubsection_token1] = ACTIONS(12331), + [aux_sym_paragraph_token1] = ACTIONS(12331), + [aux_sym_subparagraph_token1] = ACTIONS(12331), + [anon_sym_BSLASHitem] = ACTIONS(12331), + [anon_sym_LBRACK] = ACTIONS(12329), + [anon_sym_RBRACK] = ACTIONS(12329), + [anon_sym_LBRACE] = ACTIONS(12329), + [anon_sym_RBRACE] = ACTIONS(12329), + [anon_sym_LPAREN] = ACTIONS(12329), + [anon_sym_COMMA] = ACTIONS(12329), + [anon_sym_EQ] = ACTIONS(12329), + [sym_word] = ACTIONS(12329), + [sym_param] = ACTIONS(12329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12329), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12329), + [anon_sym_DOLLAR] = ACTIONS(12331), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12329), + [anon_sym_BSLASHbegin] = ACTIONS(12331), + [anon_sym_BSLASHcaption] = ACTIONS(12331), + [anon_sym_BSLASHcite] = ACTIONS(12331), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCite] = ACTIONS(12331), + [anon_sym_BSLASHnocite] = ACTIONS(12331), + [anon_sym_BSLASHcitet] = ACTIONS(12331), + [anon_sym_BSLASHcitep] = ACTIONS(12331), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteauthor] = ACTIONS(12331), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12331), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitetitle] = ACTIONS(12331), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteyear] = ACTIONS(12331), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitedate] = ACTIONS(12331), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteurl] = ACTIONS(12331), + [anon_sym_BSLASHfullcite] = ACTIONS(12331), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12331), + [anon_sym_BSLASHcitealt] = ACTIONS(12331), + [anon_sym_BSLASHcitealp] = ACTIONS(12331), + [anon_sym_BSLASHcitetext] = ACTIONS(12331), + [anon_sym_BSLASHparencite] = ACTIONS(12331), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHParencite] = ACTIONS(12331), + [anon_sym_BSLASHfootcite] = ACTIONS(12331), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12331), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12331), + [anon_sym_BSLASHtextcite] = ACTIONS(12331), + [anon_sym_BSLASHTextcite] = ACTIONS(12331), + [anon_sym_BSLASHsmartcite] = ACTIONS(12331), + [anon_sym_BSLASHSmartcite] = ACTIONS(12331), + [anon_sym_BSLASHsupercite] = ACTIONS(12331), + [anon_sym_BSLASHautocite] = ACTIONS(12331), + [anon_sym_BSLASHAutocite] = ACTIONS(12331), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHvolcite] = ACTIONS(12331), + [anon_sym_BSLASHVolcite] = ACTIONS(12331), + [anon_sym_BSLASHpvolcite] = ACTIONS(12331), + [anon_sym_BSLASHPvolcite] = ACTIONS(12331), + [anon_sym_BSLASHfvolcite] = ACTIONS(12331), + [anon_sym_BSLASHftvolcite] = ACTIONS(12331), + [anon_sym_BSLASHsvolcite] = ACTIONS(12331), + [anon_sym_BSLASHSvolcite] = ACTIONS(12331), + [anon_sym_BSLASHtvolcite] = ACTIONS(12331), + [anon_sym_BSLASHTvolcite] = ACTIONS(12331), + [anon_sym_BSLASHavolcite] = ACTIONS(12331), + [anon_sym_BSLASHAvolcite] = ACTIONS(12331), + [anon_sym_BSLASHnotecite] = ACTIONS(12331), + [anon_sym_BSLASHpnotecite] = ACTIONS(12331), + [anon_sym_BSLASHPnotecite] = ACTIONS(12331), + [anon_sym_BSLASHfnotecite] = ACTIONS(12331), + [anon_sym_BSLASHusepackage] = ACTIONS(12331), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12331), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12331), + [anon_sym_BSLASHinclude] = ACTIONS(12331), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12331), + [anon_sym_BSLASHinput] = ACTIONS(12331), + [anon_sym_BSLASHsubfile] = ACTIONS(12331), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12331), + [anon_sym_BSLASHbibliography] = ACTIONS(12331), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12331), + [anon_sym_BSLASHincludesvg] = ACTIONS(12331), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12331), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12331), + [anon_sym_BSLASHimport] = ACTIONS(12331), + [anon_sym_BSLASHsubimport] = ACTIONS(12331), + [anon_sym_BSLASHinputfrom] = ACTIONS(12331), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12331), + [anon_sym_BSLASHincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHlabel] = ACTIONS(12331), + [anon_sym_BSLASHref] = ACTIONS(12331), + [anon_sym_BSLASHvref] = ACTIONS(12331), + [anon_sym_BSLASHVref] = ACTIONS(12331), + [anon_sym_BSLASHautoref] = ACTIONS(12331), + [anon_sym_BSLASHpageref] = ACTIONS(12331), + [anon_sym_BSLASHcref] = ACTIONS(12331), + [anon_sym_BSLASHCref] = ACTIONS(12331), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnameCref] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHlabelcref] = ACTIONS(12331), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12331), + [anon_sym_BSLASHeqref] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange] = ACTIONS(12331), + [anon_sym_BSLASHCrefrange] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewlabel] = ACTIONS(12331), + [anon_sym_BSLASHnewcommand] = ACTIONS(12331), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12331), + [anon_sym_BSLASHgls] = ACTIONS(12331), + [anon_sym_BSLASHGls] = ACTIONS(12331), + [anon_sym_BSLASHGLS] = ACTIONS(12331), + [anon_sym_BSLASHglspl] = ACTIONS(12331), + [anon_sym_BSLASHGlspl] = ACTIONS(12331), + [anon_sym_BSLASHGLSpl] = ACTIONS(12331), + [anon_sym_BSLASHglsdisp] = ACTIONS(12331), + [anon_sym_BSLASHglslink] = ACTIONS(12331), + [anon_sym_BSLASHglstext] = ACTIONS(12331), + [anon_sym_BSLASHGlstext] = ACTIONS(12331), + [anon_sym_BSLASHGLStext] = ACTIONS(12331), + [anon_sym_BSLASHglsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12331), + [anon_sym_BSLASHglsplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSplural] = ACTIONS(12331), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHglsname] = ACTIONS(12331), + [anon_sym_BSLASHGlsname] = ACTIONS(12331), + [anon_sym_BSLASHGLSname] = ACTIONS(12331), + [anon_sym_BSLASHglssymbol] = ACTIONS(12331), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12331), + [anon_sym_BSLASHglsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12331), + [anon_sym_BSLASHglsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12331), + [anon_sym_BSLASHglsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12331), + [anon_sym_BSLASHglsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12331), + [anon_sym_BSLASHglsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12331), + [anon_sym_BSLASHnewacronym] = ACTIONS(12331), + [anon_sym_BSLASHacrshort] = ACTIONS(12331), + [anon_sym_BSLASHAcrshort] = ACTIONS(12331), + [anon_sym_BSLASHACRshort] = ACTIONS(12331), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12331), + [anon_sym_BSLASHacrlong] = ACTIONS(12331), + [anon_sym_BSLASHAcrlong] = ACTIONS(12331), + [anon_sym_BSLASHACRlong] = ACTIONS(12331), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12331), + [anon_sym_BSLASHacrfull] = ACTIONS(12331), + [anon_sym_BSLASHAcrfull] = ACTIONS(12331), + [anon_sym_BSLASHACRfull] = ACTIONS(12331), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12331), + [anon_sym_BSLASHacs] = ACTIONS(12331), + [anon_sym_BSLASHAcs] = ACTIONS(12331), + [anon_sym_BSLASHacsp] = ACTIONS(12331), + [anon_sym_BSLASHAcsp] = ACTIONS(12331), + [anon_sym_BSLASHacl] = ACTIONS(12331), + [anon_sym_BSLASHAcl] = ACTIONS(12331), + [anon_sym_BSLASHaclp] = ACTIONS(12331), + [anon_sym_BSLASHAclp] = ACTIONS(12331), + [anon_sym_BSLASHacf] = ACTIONS(12331), + [anon_sym_BSLASHAcf] = ACTIONS(12331), + [anon_sym_BSLASHacfp] = ACTIONS(12331), + [anon_sym_BSLASHAcfp] = ACTIONS(12331), + [anon_sym_BSLASHac] = ACTIONS(12331), + [anon_sym_BSLASHAc] = ACTIONS(12331), + [anon_sym_BSLASHacp] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12331), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12331), + [anon_sym_BSLASHcolor] = ACTIONS(12331), + [anon_sym_BSLASHcolorbox] = ACTIONS(12331), + [anon_sym_BSLASHtextcolor] = ACTIONS(12331), + [anon_sym_BSLASHpagecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12331), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12331), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12331), + }, + [1383] = { + [sym_generic_command_name] = ACTIONS(12311), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsection_token1] = ACTIONS(12311), + [aux_sym_subsubsection_token1] = ACTIONS(12311), + [aux_sym_paragraph_token1] = ACTIONS(12311), + [aux_sym_subparagraph_token1] = ACTIONS(12311), + [anon_sym_BSLASHitem] = ACTIONS(12311), + [anon_sym_LBRACK] = ACTIONS(12309), + [anon_sym_RBRACK] = ACTIONS(12309), + [anon_sym_LBRACE] = ACTIONS(12309), + [anon_sym_RBRACE] = ACTIONS(12309), + [anon_sym_LPAREN] = ACTIONS(12309), + [anon_sym_COMMA] = ACTIONS(12309), + [anon_sym_EQ] = ACTIONS(12309), + [sym_word] = ACTIONS(12309), + [sym_param] = ACTIONS(12309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12309), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12309), + [anon_sym_DOLLAR] = ACTIONS(12311), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12309), + [anon_sym_BSLASHbegin] = ACTIONS(12311), + [anon_sym_BSLASHcaption] = ACTIONS(12311), + [anon_sym_BSLASHcite] = ACTIONS(12311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCite] = ACTIONS(12311), + [anon_sym_BSLASHnocite] = ACTIONS(12311), + [anon_sym_BSLASHcitet] = ACTIONS(12311), + [anon_sym_BSLASHcitep] = ACTIONS(12311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteauthor] = ACTIONS(12311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitetitle] = ACTIONS(12311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteyear] = ACTIONS(12311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitedate] = ACTIONS(12311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteurl] = ACTIONS(12311), + [anon_sym_BSLASHfullcite] = ACTIONS(12311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12311), + [anon_sym_BSLASHcitealt] = ACTIONS(12311), + [anon_sym_BSLASHcitealp] = ACTIONS(12311), + [anon_sym_BSLASHcitetext] = ACTIONS(12311), + [anon_sym_BSLASHparencite] = ACTIONS(12311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHParencite] = ACTIONS(12311), + [anon_sym_BSLASHfootcite] = ACTIONS(12311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12311), + [anon_sym_BSLASHtextcite] = ACTIONS(12311), + [anon_sym_BSLASHTextcite] = ACTIONS(12311), + [anon_sym_BSLASHsmartcite] = ACTIONS(12311), + [anon_sym_BSLASHSmartcite] = ACTIONS(12311), + [anon_sym_BSLASHsupercite] = ACTIONS(12311), + [anon_sym_BSLASHautocite] = ACTIONS(12311), + [anon_sym_BSLASHAutocite] = ACTIONS(12311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHvolcite] = ACTIONS(12311), + [anon_sym_BSLASHVolcite] = ACTIONS(12311), + [anon_sym_BSLASHpvolcite] = ACTIONS(12311), + [anon_sym_BSLASHPvolcite] = ACTIONS(12311), + [anon_sym_BSLASHfvolcite] = ACTIONS(12311), + [anon_sym_BSLASHftvolcite] = ACTIONS(12311), + [anon_sym_BSLASHsvolcite] = ACTIONS(12311), + [anon_sym_BSLASHSvolcite] = ACTIONS(12311), + [anon_sym_BSLASHtvolcite] = ACTIONS(12311), + [anon_sym_BSLASHTvolcite] = ACTIONS(12311), + [anon_sym_BSLASHavolcite] = ACTIONS(12311), + [anon_sym_BSLASHAvolcite] = ACTIONS(12311), + [anon_sym_BSLASHnotecite] = ACTIONS(12311), + [anon_sym_BSLASHpnotecite] = ACTIONS(12311), + [anon_sym_BSLASHPnotecite] = ACTIONS(12311), + [anon_sym_BSLASHfnotecite] = ACTIONS(12311), + [anon_sym_BSLASHusepackage] = ACTIONS(12311), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12311), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12311), + [anon_sym_BSLASHinclude] = ACTIONS(12311), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12311), + [anon_sym_BSLASHinput] = ACTIONS(12311), + [anon_sym_BSLASHsubfile] = ACTIONS(12311), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12311), + [anon_sym_BSLASHbibliography] = ACTIONS(12311), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12311), + [anon_sym_BSLASHincludesvg] = ACTIONS(12311), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12311), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12311), + [anon_sym_BSLASHimport] = ACTIONS(12311), + [anon_sym_BSLASHsubimport] = ACTIONS(12311), + [anon_sym_BSLASHinputfrom] = ACTIONS(12311), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12311), + [anon_sym_BSLASHincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHlabel] = ACTIONS(12311), + [anon_sym_BSLASHref] = ACTIONS(12311), + [anon_sym_BSLASHvref] = ACTIONS(12311), + [anon_sym_BSLASHVref] = ACTIONS(12311), + [anon_sym_BSLASHautoref] = ACTIONS(12311), + [anon_sym_BSLASHpageref] = ACTIONS(12311), + [anon_sym_BSLASHcref] = ACTIONS(12311), + [anon_sym_BSLASHCref] = ACTIONS(12311), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnameCref] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHlabelcref] = ACTIONS(12311), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12311), + [anon_sym_BSLASHeqref] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange] = ACTIONS(12311), + [anon_sym_BSLASHCrefrange] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewlabel] = ACTIONS(12311), + [anon_sym_BSLASHnewcommand] = ACTIONS(12311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12311), + [anon_sym_BSLASHgls] = ACTIONS(12311), + [anon_sym_BSLASHGls] = ACTIONS(12311), + [anon_sym_BSLASHGLS] = ACTIONS(12311), + [anon_sym_BSLASHglspl] = ACTIONS(12311), + [anon_sym_BSLASHGlspl] = ACTIONS(12311), + [anon_sym_BSLASHGLSpl] = ACTIONS(12311), + [anon_sym_BSLASHglsdisp] = ACTIONS(12311), + [anon_sym_BSLASHglslink] = ACTIONS(12311), + [anon_sym_BSLASHglstext] = ACTIONS(12311), + [anon_sym_BSLASHGlstext] = ACTIONS(12311), + [anon_sym_BSLASHGLStext] = ACTIONS(12311), + [anon_sym_BSLASHglsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12311), + [anon_sym_BSLASHglsplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSplural] = ACTIONS(12311), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHglsname] = ACTIONS(12311), + [anon_sym_BSLASHGlsname] = ACTIONS(12311), + [anon_sym_BSLASHGLSname] = ACTIONS(12311), + [anon_sym_BSLASHglssymbol] = ACTIONS(12311), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12311), + [anon_sym_BSLASHglsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12311), + [anon_sym_BSLASHglsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12311), + [anon_sym_BSLASHglsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12311), + [anon_sym_BSLASHglsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12311), + [anon_sym_BSLASHglsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12311), + [anon_sym_BSLASHnewacronym] = ACTIONS(12311), + [anon_sym_BSLASHacrshort] = ACTIONS(12311), + [anon_sym_BSLASHAcrshort] = ACTIONS(12311), + [anon_sym_BSLASHACRshort] = ACTIONS(12311), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12311), + [anon_sym_BSLASHacrlong] = ACTIONS(12311), + [anon_sym_BSLASHAcrlong] = ACTIONS(12311), + [anon_sym_BSLASHACRlong] = ACTIONS(12311), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12311), + [anon_sym_BSLASHacrfull] = ACTIONS(12311), + [anon_sym_BSLASHAcrfull] = ACTIONS(12311), + [anon_sym_BSLASHACRfull] = ACTIONS(12311), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12311), + [anon_sym_BSLASHacs] = ACTIONS(12311), + [anon_sym_BSLASHAcs] = ACTIONS(12311), + [anon_sym_BSLASHacsp] = ACTIONS(12311), + [anon_sym_BSLASHAcsp] = ACTIONS(12311), + [anon_sym_BSLASHacl] = ACTIONS(12311), + [anon_sym_BSLASHAcl] = ACTIONS(12311), + [anon_sym_BSLASHaclp] = ACTIONS(12311), + [anon_sym_BSLASHAclp] = ACTIONS(12311), + [anon_sym_BSLASHacf] = ACTIONS(12311), + [anon_sym_BSLASHAcf] = ACTIONS(12311), + [anon_sym_BSLASHacfp] = ACTIONS(12311), + [anon_sym_BSLASHAcfp] = ACTIONS(12311), + [anon_sym_BSLASHac] = ACTIONS(12311), + [anon_sym_BSLASHAc] = ACTIONS(12311), + [anon_sym_BSLASHacp] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12311), + [anon_sym_BSLASHcolor] = ACTIONS(12311), + [anon_sym_BSLASHcolorbox] = ACTIONS(12311), + [anon_sym_BSLASHtextcolor] = ACTIONS(12311), + [anon_sym_BSLASHpagecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12311), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12311), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12311), + }, + [1384] = { + [sym_generic_command_name] = ACTIONS(12152), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12152), + [aux_sym_paragraph_token1] = ACTIONS(12152), + [aux_sym_subparagraph_token1] = ACTIONS(12152), + [anon_sym_BSLASHitem] = ACTIONS(12152), + [anon_sym_LBRACK] = ACTIONS(12150), + [anon_sym_RBRACK] = ACTIONS(12150), + [anon_sym_LBRACE] = ACTIONS(12150), + [anon_sym_RBRACE] = ACTIONS(12150), + [anon_sym_LPAREN] = ACTIONS(12150), + [anon_sym_COMMA] = ACTIONS(12150), + [anon_sym_EQ] = ACTIONS(12150), + [sym_word] = ACTIONS(12150), + [sym_param] = ACTIONS(12150), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12150), + [anon_sym_DOLLAR] = ACTIONS(12152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12150), + [anon_sym_BSLASHbegin] = ACTIONS(12152), + [anon_sym_BSLASHcaption] = ACTIONS(12152), + [anon_sym_BSLASHcite] = ACTIONS(12152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCite] = ACTIONS(12152), + [anon_sym_BSLASHnocite] = ACTIONS(12152), + [anon_sym_BSLASHcitet] = ACTIONS(12152), + [anon_sym_BSLASHcitep] = ACTIONS(12152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteauthor] = ACTIONS(12152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitetitle] = ACTIONS(12152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteyear] = ACTIONS(12152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitedate] = ACTIONS(12152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteurl] = ACTIONS(12152), + [anon_sym_BSLASHfullcite] = ACTIONS(12152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12152), + [anon_sym_BSLASHcitealt] = ACTIONS(12152), + [anon_sym_BSLASHcitealp] = ACTIONS(12152), + [anon_sym_BSLASHcitetext] = ACTIONS(12152), + [anon_sym_BSLASHparencite] = ACTIONS(12152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHParencite] = ACTIONS(12152), + [anon_sym_BSLASHfootcite] = ACTIONS(12152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12152), + [anon_sym_BSLASHtextcite] = ACTIONS(12152), + [anon_sym_BSLASHTextcite] = ACTIONS(12152), + [anon_sym_BSLASHsmartcite] = ACTIONS(12152), + [anon_sym_BSLASHSmartcite] = ACTIONS(12152), + [anon_sym_BSLASHsupercite] = ACTIONS(12152), + [anon_sym_BSLASHautocite] = ACTIONS(12152), + [anon_sym_BSLASHAutocite] = ACTIONS(12152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHvolcite] = ACTIONS(12152), + [anon_sym_BSLASHVolcite] = ACTIONS(12152), + [anon_sym_BSLASHpvolcite] = ACTIONS(12152), + [anon_sym_BSLASHPvolcite] = ACTIONS(12152), + [anon_sym_BSLASHfvolcite] = ACTIONS(12152), + [anon_sym_BSLASHftvolcite] = ACTIONS(12152), + [anon_sym_BSLASHsvolcite] = ACTIONS(12152), + [anon_sym_BSLASHSvolcite] = ACTIONS(12152), + [anon_sym_BSLASHtvolcite] = ACTIONS(12152), + [anon_sym_BSLASHTvolcite] = ACTIONS(12152), + [anon_sym_BSLASHavolcite] = ACTIONS(12152), + [anon_sym_BSLASHAvolcite] = ACTIONS(12152), + [anon_sym_BSLASHnotecite] = ACTIONS(12152), + [anon_sym_BSLASHpnotecite] = ACTIONS(12152), + [anon_sym_BSLASHPnotecite] = ACTIONS(12152), + [anon_sym_BSLASHfnotecite] = ACTIONS(12152), + [anon_sym_BSLASHusepackage] = ACTIONS(12152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12152), + [anon_sym_BSLASHinclude] = ACTIONS(12152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12152), + [anon_sym_BSLASHinput] = ACTIONS(12152), + [anon_sym_BSLASHsubfile] = ACTIONS(12152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12152), + [anon_sym_BSLASHbibliography] = ACTIONS(12152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12152), + [anon_sym_BSLASHincludesvg] = ACTIONS(12152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12152), + [anon_sym_BSLASHimport] = ACTIONS(12152), + [anon_sym_BSLASHsubimport] = ACTIONS(12152), + [anon_sym_BSLASHinputfrom] = ACTIONS(12152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12152), + [anon_sym_BSLASHincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHlabel] = ACTIONS(12152), + [anon_sym_BSLASHref] = ACTIONS(12152), + [anon_sym_BSLASHvref] = ACTIONS(12152), + [anon_sym_BSLASHVref] = ACTIONS(12152), + [anon_sym_BSLASHautoref] = ACTIONS(12152), + [anon_sym_BSLASHpageref] = ACTIONS(12152), + [anon_sym_BSLASHcref] = ACTIONS(12152), + [anon_sym_BSLASHCref] = ACTIONS(12152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnameCref] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHlabelcref] = ACTIONS(12152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12152), + [anon_sym_BSLASHeqref] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange] = ACTIONS(12152), + [anon_sym_BSLASHCrefrange] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewlabel] = ACTIONS(12152), + [anon_sym_BSLASHnewcommand] = ACTIONS(12152), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12152), + [anon_sym_BSLASHgls] = ACTIONS(12152), + [anon_sym_BSLASHGls] = ACTIONS(12152), + [anon_sym_BSLASHGLS] = ACTIONS(12152), + [anon_sym_BSLASHglspl] = ACTIONS(12152), + [anon_sym_BSLASHGlspl] = ACTIONS(12152), + [anon_sym_BSLASHGLSpl] = ACTIONS(12152), + [anon_sym_BSLASHglsdisp] = ACTIONS(12152), + [anon_sym_BSLASHglslink] = ACTIONS(12152), + [anon_sym_BSLASHglstext] = ACTIONS(12152), + [anon_sym_BSLASHGlstext] = ACTIONS(12152), + [anon_sym_BSLASHGLStext] = ACTIONS(12152), + [anon_sym_BSLASHglsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12152), + [anon_sym_BSLASHglsplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSplural] = ACTIONS(12152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHglsname] = ACTIONS(12152), + [anon_sym_BSLASHGlsname] = ACTIONS(12152), + [anon_sym_BSLASHGLSname] = ACTIONS(12152), + [anon_sym_BSLASHglssymbol] = ACTIONS(12152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12152), + [anon_sym_BSLASHglsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12152), + [anon_sym_BSLASHglsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12152), + [anon_sym_BSLASHglsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12152), + [anon_sym_BSLASHglsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12152), + [anon_sym_BSLASHglsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12152), + [anon_sym_BSLASHnewacronym] = ACTIONS(12152), + [anon_sym_BSLASHacrshort] = ACTIONS(12152), + [anon_sym_BSLASHAcrshort] = ACTIONS(12152), + [anon_sym_BSLASHACRshort] = ACTIONS(12152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12152), + [anon_sym_BSLASHacrlong] = ACTIONS(12152), + [anon_sym_BSLASHAcrlong] = ACTIONS(12152), + [anon_sym_BSLASHACRlong] = ACTIONS(12152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12152), + [anon_sym_BSLASHacrfull] = ACTIONS(12152), + [anon_sym_BSLASHAcrfull] = ACTIONS(12152), + [anon_sym_BSLASHACRfull] = ACTIONS(12152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12152), + [anon_sym_BSLASHacs] = ACTIONS(12152), + [anon_sym_BSLASHAcs] = ACTIONS(12152), + [anon_sym_BSLASHacsp] = ACTIONS(12152), + [anon_sym_BSLASHAcsp] = ACTIONS(12152), + [anon_sym_BSLASHacl] = ACTIONS(12152), + [anon_sym_BSLASHAcl] = ACTIONS(12152), + [anon_sym_BSLASHaclp] = ACTIONS(12152), + [anon_sym_BSLASHAclp] = ACTIONS(12152), + [anon_sym_BSLASHacf] = ACTIONS(12152), + [anon_sym_BSLASHAcf] = ACTIONS(12152), + [anon_sym_BSLASHacfp] = ACTIONS(12152), + [anon_sym_BSLASHAcfp] = ACTIONS(12152), + [anon_sym_BSLASHac] = ACTIONS(12152), + [anon_sym_BSLASHAc] = ACTIONS(12152), + [anon_sym_BSLASHacp] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12152), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12152), + [anon_sym_BSLASHcolor] = ACTIONS(12152), + [anon_sym_BSLASHcolorbox] = ACTIONS(12152), + [anon_sym_BSLASHtextcolor] = ACTIONS(12152), + [anon_sym_BSLASHpagecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12152), + }, + [1385] = { + [sym_generic_command_name] = ACTIONS(12136), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12136), + [aux_sym_paragraph_token1] = ACTIONS(12136), + [aux_sym_subparagraph_token1] = ACTIONS(12136), + [anon_sym_BSLASHitem] = ACTIONS(12136), + [anon_sym_LBRACK] = ACTIONS(12134), + [anon_sym_RBRACK] = ACTIONS(12134), + [anon_sym_LBRACE] = ACTIONS(12134), + [anon_sym_RBRACE] = ACTIONS(12134), + [anon_sym_LPAREN] = ACTIONS(12134), + [anon_sym_COMMA] = ACTIONS(12134), + [anon_sym_EQ] = ACTIONS(12134), + [sym_word] = ACTIONS(12134), + [sym_param] = ACTIONS(12134), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12134), + [anon_sym_DOLLAR] = ACTIONS(12136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12134), + [anon_sym_BSLASHbegin] = ACTIONS(12136), + [anon_sym_BSLASHcaption] = ACTIONS(12136), + [anon_sym_BSLASHcite] = ACTIONS(12136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCite] = ACTIONS(12136), + [anon_sym_BSLASHnocite] = ACTIONS(12136), + [anon_sym_BSLASHcitet] = ACTIONS(12136), + [anon_sym_BSLASHcitep] = ACTIONS(12136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteauthor] = ACTIONS(12136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitetitle] = ACTIONS(12136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteyear] = ACTIONS(12136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitedate] = ACTIONS(12136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteurl] = ACTIONS(12136), + [anon_sym_BSLASHfullcite] = ACTIONS(12136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12136), + [anon_sym_BSLASHcitealt] = ACTIONS(12136), + [anon_sym_BSLASHcitealp] = ACTIONS(12136), + [anon_sym_BSLASHcitetext] = ACTIONS(12136), + [anon_sym_BSLASHparencite] = ACTIONS(12136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHParencite] = ACTIONS(12136), + [anon_sym_BSLASHfootcite] = ACTIONS(12136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12136), + [anon_sym_BSLASHtextcite] = ACTIONS(12136), + [anon_sym_BSLASHTextcite] = ACTIONS(12136), + [anon_sym_BSLASHsmartcite] = ACTIONS(12136), + [anon_sym_BSLASHSmartcite] = ACTIONS(12136), + [anon_sym_BSLASHsupercite] = ACTIONS(12136), + [anon_sym_BSLASHautocite] = ACTIONS(12136), + [anon_sym_BSLASHAutocite] = ACTIONS(12136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHvolcite] = ACTIONS(12136), + [anon_sym_BSLASHVolcite] = ACTIONS(12136), + [anon_sym_BSLASHpvolcite] = ACTIONS(12136), + [anon_sym_BSLASHPvolcite] = ACTIONS(12136), + [anon_sym_BSLASHfvolcite] = ACTIONS(12136), + [anon_sym_BSLASHftvolcite] = ACTIONS(12136), + [anon_sym_BSLASHsvolcite] = ACTIONS(12136), + [anon_sym_BSLASHSvolcite] = ACTIONS(12136), + [anon_sym_BSLASHtvolcite] = ACTIONS(12136), + [anon_sym_BSLASHTvolcite] = ACTIONS(12136), + [anon_sym_BSLASHavolcite] = ACTIONS(12136), + [anon_sym_BSLASHAvolcite] = ACTIONS(12136), + [anon_sym_BSLASHnotecite] = ACTIONS(12136), + [anon_sym_BSLASHpnotecite] = ACTIONS(12136), + [anon_sym_BSLASHPnotecite] = ACTIONS(12136), + [anon_sym_BSLASHfnotecite] = ACTIONS(12136), + [anon_sym_BSLASHusepackage] = ACTIONS(12136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12136), + [anon_sym_BSLASHinclude] = ACTIONS(12136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12136), + [anon_sym_BSLASHinput] = ACTIONS(12136), + [anon_sym_BSLASHsubfile] = ACTIONS(12136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12136), + [anon_sym_BSLASHbibliography] = ACTIONS(12136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12136), + [anon_sym_BSLASHincludesvg] = ACTIONS(12136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12136), + [anon_sym_BSLASHimport] = ACTIONS(12136), + [anon_sym_BSLASHsubimport] = ACTIONS(12136), + [anon_sym_BSLASHinputfrom] = ACTIONS(12136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12136), + [anon_sym_BSLASHincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHlabel] = ACTIONS(12136), + [anon_sym_BSLASHref] = ACTIONS(12136), + [anon_sym_BSLASHvref] = ACTIONS(12136), + [anon_sym_BSLASHVref] = ACTIONS(12136), + [anon_sym_BSLASHautoref] = ACTIONS(12136), + [anon_sym_BSLASHpageref] = ACTIONS(12136), + [anon_sym_BSLASHcref] = ACTIONS(12136), + [anon_sym_BSLASHCref] = ACTIONS(12136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnameCref] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHlabelcref] = ACTIONS(12136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12136), + [anon_sym_BSLASHeqref] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange] = ACTIONS(12136), + [anon_sym_BSLASHCrefrange] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewlabel] = ACTIONS(12136), + [anon_sym_BSLASHnewcommand] = ACTIONS(12136), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12136), + [anon_sym_BSLASHgls] = ACTIONS(12136), + [anon_sym_BSLASHGls] = ACTIONS(12136), + [anon_sym_BSLASHGLS] = ACTIONS(12136), + [anon_sym_BSLASHglspl] = ACTIONS(12136), + [anon_sym_BSLASHGlspl] = ACTIONS(12136), + [anon_sym_BSLASHGLSpl] = ACTIONS(12136), + [anon_sym_BSLASHglsdisp] = ACTIONS(12136), + [anon_sym_BSLASHglslink] = ACTIONS(12136), + [anon_sym_BSLASHglstext] = ACTIONS(12136), + [anon_sym_BSLASHGlstext] = ACTIONS(12136), + [anon_sym_BSLASHGLStext] = ACTIONS(12136), + [anon_sym_BSLASHglsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12136), + [anon_sym_BSLASHglsplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSplural] = ACTIONS(12136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHglsname] = ACTIONS(12136), + [anon_sym_BSLASHGlsname] = ACTIONS(12136), + [anon_sym_BSLASHGLSname] = ACTIONS(12136), + [anon_sym_BSLASHglssymbol] = ACTIONS(12136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12136), + [anon_sym_BSLASHglsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12136), + [anon_sym_BSLASHglsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12136), + [anon_sym_BSLASHglsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12136), + [anon_sym_BSLASHglsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12136), + [anon_sym_BSLASHglsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12136), + [anon_sym_BSLASHnewacronym] = ACTIONS(12136), + [anon_sym_BSLASHacrshort] = ACTIONS(12136), + [anon_sym_BSLASHAcrshort] = ACTIONS(12136), + [anon_sym_BSLASHACRshort] = ACTIONS(12136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12136), + [anon_sym_BSLASHacrlong] = ACTIONS(12136), + [anon_sym_BSLASHAcrlong] = ACTIONS(12136), + [anon_sym_BSLASHACRlong] = ACTIONS(12136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12136), + [anon_sym_BSLASHacrfull] = ACTIONS(12136), + [anon_sym_BSLASHAcrfull] = ACTIONS(12136), + [anon_sym_BSLASHACRfull] = ACTIONS(12136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12136), + [anon_sym_BSLASHacs] = ACTIONS(12136), + [anon_sym_BSLASHAcs] = ACTIONS(12136), + [anon_sym_BSLASHacsp] = ACTIONS(12136), + [anon_sym_BSLASHAcsp] = ACTIONS(12136), + [anon_sym_BSLASHacl] = ACTIONS(12136), + [anon_sym_BSLASHAcl] = ACTIONS(12136), + [anon_sym_BSLASHaclp] = ACTIONS(12136), + [anon_sym_BSLASHAclp] = ACTIONS(12136), + [anon_sym_BSLASHacf] = ACTIONS(12136), + [anon_sym_BSLASHAcf] = ACTIONS(12136), + [anon_sym_BSLASHacfp] = ACTIONS(12136), + [anon_sym_BSLASHAcfp] = ACTIONS(12136), + [anon_sym_BSLASHac] = ACTIONS(12136), + [anon_sym_BSLASHAc] = ACTIONS(12136), + [anon_sym_BSLASHacp] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12136), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12136), + [anon_sym_BSLASHcolor] = ACTIONS(12136), + [anon_sym_BSLASHcolorbox] = ACTIONS(12136), + [anon_sym_BSLASHtextcolor] = ACTIONS(12136), + [anon_sym_BSLASHpagecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12136), + }, + [1386] = { + [sym_generic_command_name] = ACTIONS(12349), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12349), + [aux_sym_paragraph_token1] = ACTIONS(12349), + [aux_sym_subparagraph_token1] = ACTIONS(12349), + [anon_sym_BSLASHitem] = ACTIONS(12349), + [anon_sym_LBRACK] = ACTIONS(12347), + [anon_sym_RBRACK] = ACTIONS(12347), + [anon_sym_LBRACE] = ACTIONS(12347), + [anon_sym_RBRACE] = ACTIONS(12347), + [anon_sym_LPAREN] = ACTIONS(12347), + [anon_sym_COMMA] = ACTIONS(12347), + [anon_sym_EQ] = ACTIONS(12347), + [sym_word] = ACTIONS(12347), + [sym_param] = ACTIONS(12347), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12347), + [anon_sym_DOLLAR] = ACTIONS(12349), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12347), + [anon_sym_BSLASHbegin] = ACTIONS(12349), + [anon_sym_BSLASHcaption] = ACTIONS(12349), + [anon_sym_BSLASHcite] = ACTIONS(12349), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCite] = ACTIONS(12349), + [anon_sym_BSLASHnocite] = ACTIONS(12349), + [anon_sym_BSLASHcitet] = ACTIONS(12349), + [anon_sym_BSLASHcitep] = ACTIONS(12349), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteauthor] = ACTIONS(12349), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12349), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitetitle] = ACTIONS(12349), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteyear] = ACTIONS(12349), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitedate] = ACTIONS(12349), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteurl] = ACTIONS(12349), + [anon_sym_BSLASHfullcite] = ACTIONS(12349), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12349), + [anon_sym_BSLASHcitealt] = ACTIONS(12349), + [anon_sym_BSLASHcitealp] = ACTIONS(12349), + [anon_sym_BSLASHcitetext] = ACTIONS(12349), + [anon_sym_BSLASHparencite] = ACTIONS(12349), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHParencite] = ACTIONS(12349), + [anon_sym_BSLASHfootcite] = ACTIONS(12349), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12349), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12349), + [anon_sym_BSLASHtextcite] = ACTIONS(12349), + [anon_sym_BSLASHTextcite] = ACTIONS(12349), + [anon_sym_BSLASHsmartcite] = ACTIONS(12349), + [anon_sym_BSLASHSmartcite] = ACTIONS(12349), + [anon_sym_BSLASHsupercite] = ACTIONS(12349), + [anon_sym_BSLASHautocite] = ACTIONS(12349), + [anon_sym_BSLASHAutocite] = ACTIONS(12349), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHvolcite] = ACTIONS(12349), + [anon_sym_BSLASHVolcite] = ACTIONS(12349), + [anon_sym_BSLASHpvolcite] = ACTIONS(12349), + [anon_sym_BSLASHPvolcite] = ACTIONS(12349), + [anon_sym_BSLASHfvolcite] = ACTIONS(12349), + [anon_sym_BSLASHftvolcite] = ACTIONS(12349), + [anon_sym_BSLASHsvolcite] = ACTIONS(12349), + [anon_sym_BSLASHSvolcite] = ACTIONS(12349), + [anon_sym_BSLASHtvolcite] = ACTIONS(12349), + [anon_sym_BSLASHTvolcite] = ACTIONS(12349), + [anon_sym_BSLASHavolcite] = ACTIONS(12349), + [anon_sym_BSLASHAvolcite] = ACTIONS(12349), + [anon_sym_BSLASHnotecite] = ACTIONS(12349), + [anon_sym_BSLASHpnotecite] = ACTIONS(12349), + [anon_sym_BSLASHPnotecite] = ACTIONS(12349), + [anon_sym_BSLASHfnotecite] = ACTIONS(12349), + [anon_sym_BSLASHusepackage] = ACTIONS(12349), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12349), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12349), + [anon_sym_BSLASHinclude] = ACTIONS(12349), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12349), + [anon_sym_BSLASHinput] = ACTIONS(12349), + [anon_sym_BSLASHsubfile] = ACTIONS(12349), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12349), + [anon_sym_BSLASHbibliography] = ACTIONS(12349), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12349), + [anon_sym_BSLASHincludesvg] = ACTIONS(12349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12349), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12349), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12349), + [anon_sym_BSLASHimport] = ACTIONS(12349), + [anon_sym_BSLASHsubimport] = ACTIONS(12349), + [anon_sym_BSLASHinputfrom] = ACTIONS(12349), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12349), + [anon_sym_BSLASHincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHlabel] = ACTIONS(12349), + [anon_sym_BSLASHref] = ACTIONS(12349), + [anon_sym_BSLASHvref] = ACTIONS(12349), + [anon_sym_BSLASHVref] = ACTIONS(12349), + [anon_sym_BSLASHautoref] = ACTIONS(12349), + [anon_sym_BSLASHpageref] = ACTIONS(12349), + [anon_sym_BSLASHcref] = ACTIONS(12349), + [anon_sym_BSLASHCref] = ACTIONS(12349), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnameCref] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHlabelcref] = ACTIONS(12349), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12349), + [anon_sym_BSLASHeqref] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange] = ACTIONS(12349), + [anon_sym_BSLASHCrefrange] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewlabel] = ACTIONS(12349), + [anon_sym_BSLASHnewcommand] = ACTIONS(12349), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12349), + [anon_sym_BSLASHgls] = ACTIONS(12349), + [anon_sym_BSLASHGls] = ACTIONS(12349), + [anon_sym_BSLASHGLS] = ACTIONS(12349), + [anon_sym_BSLASHglspl] = ACTIONS(12349), + [anon_sym_BSLASHGlspl] = ACTIONS(12349), + [anon_sym_BSLASHGLSpl] = ACTIONS(12349), + [anon_sym_BSLASHglsdisp] = ACTIONS(12349), + [anon_sym_BSLASHglslink] = ACTIONS(12349), + [anon_sym_BSLASHglstext] = ACTIONS(12349), + [anon_sym_BSLASHGlstext] = ACTIONS(12349), + [anon_sym_BSLASHGLStext] = ACTIONS(12349), + [anon_sym_BSLASHglsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12349), + [anon_sym_BSLASHglsplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSplural] = ACTIONS(12349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHglsname] = ACTIONS(12349), + [anon_sym_BSLASHGlsname] = ACTIONS(12349), + [anon_sym_BSLASHGLSname] = ACTIONS(12349), + [anon_sym_BSLASHglssymbol] = ACTIONS(12349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12349), + [anon_sym_BSLASHglsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12349), + [anon_sym_BSLASHglsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12349), + [anon_sym_BSLASHglsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12349), + [anon_sym_BSLASHglsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12349), + [anon_sym_BSLASHglsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12349), + [anon_sym_BSLASHnewacronym] = ACTIONS(12349), + [anon_sym_BSLASHacrshort] = ACTIONS(12349), + [anon_sym_BSLASHAcrshort] = ACTIONS(12349), + [anon_sym_BSLASHACRshort] = ACTIONS(12349), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12349), + [anon_sym_BSLASHacrlong] = ACTIONS(12349), + [anon_sym_BSLASHAcrlong] = ACTIONS(12349), + [anon_sym_BSLASHACRlong] = ACTIONS(12349), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12349), + [anon_sym_BSLASHacrfull] = ACTIONS(12349), + [anon_sym_BSLASHAcrfull] = ACTIONS(12349), + [anon_sym_BSLASHACRfull] = ACTIONS(12349), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12349), + [anon_sym_BSLASHacs] = ACTIONS(12349), + [anon_sym_BSLASHAcs] = ACTIONS(12349), + [anon_sym_BSLASHacsp] = ACTIONS(12349), + [anon_sym_BSLASHAcsp] = ACTIONS(12349), + [anon_sym_BSLASHacl] = ACTIONS(12349), + [anon_sym_BSLASHAcl] = ACTIONS(12349), + [anon_sym_BSLASHaclp] = ACTIONS(12349), + [anon_sym_BSLASHAclp] = ACTIONS(12349), + [anon_sym_BSLASHacf] = ACTIONS(12349), + [anon_sym_BSLASHAcf] = ACTIONS(12349), + [anon_sym_BSLASHacfp] = ACTIONS(12349), + [anon_sym_BSLASHAcfp] = ACTIONS(12349), + [anon_sym_BSLASHac] = ACTIONS(12349), + [anon_sym_BSLASHAc] = ACTIONS(12349), + [anon_sym_BSLASHacp] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12349), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12349), + [anon_sym_BSLASHcolor] = ACTIONS(12349), + [anon_sym_BSLASHcolorbox] = ACTIONS(12349), + [anon_sym_BSLASHtextcolor] = ACTIONS(12349), + [anon_sym_BSLASHpagecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12349), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12349), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12349), + }, + [1387] = { + [sym__text_fragment] = STATE(1387), + [aux_sym_text_repeat1] = STATE(1387), + [sym_generic_command_name] = ACTIONS(12021), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12021), + [anon_sym_BSLASHitem] = ACTIONS(12021), + [anon_sym_LBRACK] = ACTIONS(12019), + [anon_sym_RBRACK] = ACTIONS(12019), + [anon_sym_LBRACE] = ACTIONS(12019), + [anon_sym_RBRACE] = ACTIONS(12019), + [anon_sym_LPAREN] = ACTIONS(12019), + [anon_sym_COMMA] = ACTIONS(12745), + [anon_sym_EQ] = ACTIONS(12745), + [sym_word] = ACTIONS(12745), + [sym_param] = ACTIONS(12019), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12019), + [anon_sym_DOLLAR] = ACTIONS(12021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12019), + [anon_sym_BSLASHbegin] = ACTIONS(12021), + [anon_sym_BSLASHcaption] = ACTIONS(12021), + [anon_sym_BSLASHcite] = ACTIONS(12021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCite] = ACTIONS(12021), + [anon_sym_BSLASHnocite] = ACTIONS(12021), + [anon_sym_BSLASHcitet] = ACTIONS(12021), + [anon_sym_BSLASHcitep] = ACTIONS(12021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteauthor] = ACTIONS(12021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitetitle] = ACTIONS(12021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteyear] = ACTIONS(12021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitedate] = ACTIONS(12021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteurl] = ACTIONS(12021), + [anon_sym_BSLASHfullcite] = ACTIONS(12021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12021), + [anon_sym_BSLASHcitealt] = ACTIONS(12021), + [anon_sym_BSLASHcitealp] = ACTIONS(12021), + [anon_sym_BSLASHcitetext] = ACTIONS(12021), + [anon_sym_BSLASHparencite] = ACTIONS(12021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHParencite] = ACTIONS(12021), + [anon_sym_BSLASHfootcite] = ACTIONS(12021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12021), + [anon_sym_BSLASHtextcite] = ACTIONS(12021), + [anon_sym_BSLASHTextcite] = ACTIONS(12021), + [anon_sym_BSLASHsmartcite] = ACTIONS(12021), + [anon_sym_BSLASHSmartcite] = ACTIONS(12021), + [anon_sym_BSLASHsupercite] = ACTIONS(12021), + [anon_sym_BSLASHautocite] = ACTIONS(12021), + [anon_sym_BSLASHAutocite] = ACTIONS(12021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHvolcite] = ACTIONS(12021), + [anon_sym_BSLASHVolcite] = ACTIONS(12021), + [anon_sym_BSLASHpvolcite] = ACTIONS(12021), + [anon_sym_BSLASHPvolcite] = ACTIONS(12021), + [anon_sym_BSLASHfvolcite] = ACTIONS(12021), + [anon_sym_BSLASHftvolcite] = ACTIONS(12021), + [anon_sym_BSLASHsvolcite] = ACTIONS(12021), + [anon_sym_BSLASHSvolcite] = ACTIONS(12021), + [anon_sym_BSLASHtvolcite] = ACTIONS(12021), + [anon_sym_BSLASHTvolcite] = ACTIONS(12021), + [anon_sym_BSLASHavolcite] = ACTIONS(12021), + [anon_sym_BSLASHAvolcite] = ACTIONS(12021), + [anon_sym_BSLASHnotecite] = ACTIONS(12021), + [anon_sym_BSLASHpnotecite] = ACTIONS(12021), + [anon_sym_BSLASHPnotecite] = ACTIONS(12021), + [anon_sym_BSLASHfnotecite] = ACTIONS(12021), + [anon_sym_BSLASHusepackage] = ACTIONS(12021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12021), + [anon_sym_BSLASHinclude] = ACTIONS(12021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12021), + [anon_sym_BSLASHinput] = ACTIONS(12021), + [anon_sym_BSLASHsubfile] = ACTIONS(12021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12021), + [anon_sym_BSLASHbibliography] = ACTIONS(12021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12021), + [anon_sym_BSLASHincludesvg] = ACTIONS(12021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12021), + [anon_sym_BSLASHimport] = ACTIONS(12021), + [anon_sym_BSLASHsubimport] = ACTIONS(12021), + [anon_sym_BSLASHinputfrom] = ACTIONS(12021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12021), + [anon_sym_BSLASHincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHlabel] = ACTIONS(12021), + [anon_sym_BSLASHref] = ACTIONS(12021), + [anon_sym_BSLASHvref] = ACTIONS(12021), + [anon_sym_BSLASHVref] = ACTIONS(12021), + [anon_sym_BSLASHautoref] = ACTIONS(12021), + [anon_sym_BSLASHpageref] = ACTIONS(12021), + [anon_sym_BSLASHcref] = ACTIONS(12021), + [anon_sym_BSLASHCref] = ACTIONS(12021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnameCref] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHlabelcref] = ACTIONS(12021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12021), + [anon_sym_BSLASHeqref] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange] = ACTIONS(12021), + [anon_sym_BSLASHCrefrange] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewlabel] = ACTIONS(12021), + [anon_sym_BSLASHnewcommand] = ACTIONS(12021), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12021), + [anon_sym_BSLASHgls] = ACTIONS(12021), + [anon_sym_BSLASHGls] = ACTIONS(12021), + [anon_sym_BSLASHGLS] = ACTIONS(12021), + [anon_sym_BSLASHglspl] = ACTIONS(12021), + [anon_sym_BSLASHGlspl] = ACTIONS(12021), + [anon_sym_BSLASHGLSpl] = ACTIONS(12021), + [anon_sym_BSLASHglsdisp] = ACTIONS(12021), + [anon_sym_BSLASHglslink] = ACTIONS(12021), + [anon_sym_BSLASHglstext] = ACTIONS(12021), + [anon_sym_BSLASHGlstext] = ACTIONS(12021), + [anon_sym_BSLASHGLStext] = ACTIONS(12021), + [anon_sym_BSLASHglsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12021), + [anon_sym_BSLASHglsplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSplural] = ACTIONS(12021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHglsname] = ACTIONS(12021), + [anon_sym_BSLASHGlsname] = ACTIONS(12021), + [anon_sym_BSLASHGLSname] = ACTIONS(12021), + [anon_sym_BSLASHglssymbol] = ACTIONS(12021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12021), + [anon_sym_BSLASHglsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12021), + [anon_sym_BSLASHglsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12021), + [anon_sym_BSLASHglsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12021), + [anon_sym_BSLASHglsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12021), + [anon_sym_BSLASHglsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12021), + [anon_sym_BSLASHnewacronym] = ACTIONS(12021), + [anon_sym_BSLASHacrshort] = ACTIONS(12021), + [anon_sym_BSLASHAcrshort] = ACTIONS(12021), + [anon_sym_BSLASHACRshort] = ACTIONS(12021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12021), + [anon_sym_BSLASHacrlong] = ACTIONS(12021), + [anon_sym_BSLASHAcrlong] = ACTIONS(12021), + [anon_sym_BSLASHACRlong] = ACTIONS(12021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12021), + [anon_sym_BSLASHacrfull] = ACTIONS(12021), + [anon_sym_BSLASHAcrfull] = ACTIONS(12021), + [anon_sym_BSLASHACRfull] = ACTIONS(12021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12021), + [anon_sym_BSLASHacs] = ACTIONS(12021), + [anon_sym_BSLASHAcs] = ACTIONS(12021), + [anon_sym_BSLASHacsp] = ACTIONS(12021), + [anon_sym_BSLASHAcsp] = ACTIONS(12021), + [anon_sym_BSLASHacl] = ACTIONS(12021), + [anon_sym_BSLASHAcl] = ACTIONS(12021), + [anon_sym_BSLASHaclp] = ACTIONS(12021), + [anon_sym_BSLASHAclp] = ACTIONS(12021), + [anon_sym_BSLASHacf] = ACTIONS(12021), + [anon_sym_BSLASHAcf] = ACTIONS(12021), + [anon_sym_BSLASHacfp] = ACTIONS(12021), + [anon_sym_BSLASHAcfp] = ACTIONS(12021), + [anon_sym_BSLASHac] = ACTIONS(12021), + [anon_sym_BSLASHAc] = ACTIONS(12021), + [anon_sym_BSLASHacp] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12021), + [anon_sym_BSLASHcolor] = ACTIONS(12021), + [anon_sym_BSLASHcolorbox] = ACTIONS(12021), + [anon_sym_BSLASHtextcolor] = ACTIONS(12021), + [anon_sym_BSLASHpagecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12021), + }, + [1388] = { + [sym__text_fragment] = STATE(1387), + [aux_sym_text_repeat1] = STATE(1387), + [sym_generic_command_name] = ACTIONS(12015), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12015), + [anon_sym_BSLASHitem] = ACTIONS(12015), + [anon_sym_LBRACK] = ACTIONS(12013), + [anon_sym_RBRACK] = ACTIONS(12013), + [anon_sym_LBRACE] = ACTIONS(12013), + [anon_sym_RBRACE] = ACTIONS(12013), + [anon_sym_LPAREN] = ACTIONS(12013), + [anon_sym_COMMA] = ACTIONS(12748), + [anon_sym_EQ] = ACTIONS(12748), + [sym_word] = ACTIONS(12748), + [sym_param] = ACTIONS(12013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12013), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12013), + [anon_sym_DOLLAR] = ACTIONS(12015), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12013), + [anon_sym_BSLASHbegin] = ACTIONS(12015), + [anon_sym_BSLASHcaption] = ACTIONS(12015), + [anon_sym_BSLASHcite] = ACTIONS(12015), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCite] = ACTIONS(12015), + [anon_sym_BSLASHnocite] = ACTIONS(12015), + [anon_sym_BSLASHcitet] = ACTIONS(12015), + [anon_sym_BSLASHcitep] = ACTIONS(12015), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteauthor] = ACTIONS(12015), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12015), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitetitle] = ACTIONS(12015), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteyear] = ACTIONS(12015), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitedate] = ACTIONS(12015), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteurl] = ACTIONS(12015), + [anon_sym_BSLASHfullcite] = ACTIONS(12015), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12015), + [anon_sym_BSLASHcitealt] = ACTIONS(12015), + [anon_sym_BSLASHcitealp] = ACTIONS(12015), + [anon_sym_BSLASHcitetext] = ACTIONS(12015), + [anon_sym_BSLASHparencite] = ACTIONS(12015), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHParencite] = ACTIONS(12015), + [anon_sym_BSLASHfootcite] = ACTIONS(12015), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12015), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12015), + [anon_sym_BSLASHtextcite] = ACTIONS(12015), + [anon_sym_BSLASHTextcite] = ACTIONS(12015), + [anon_sym_BSLASHsmartcite] = ACTIONS(12015), + [anon_sym_BSLASHSmartcite] = ACTIONS(12015), + [anon_sym_BSLASHsupercite] = ACTIONS(12015), + [anon_sym_BSLASHautocite] = ACTIONS(12015), + [anon_sym_BSLASHAutocite] = ACTIONS(12015), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHvolcite] = ACTIONS(12015), + [anon_sym_BSLASHVolcite] = ACTIONS(12015), + [anon_sym_BSLASHpvolcite] = ACTIONS(12015), + [anon_sym_BSLASHPvolcite] = ACTIONS(12015), + [anon_sym_BSLASHfvolcite] = ACTIONS(12015), + [anon_sym_BSLASHftvolcite] = ACTIONS(12015), + [anon_sym_BSLASHsvolcite] = ACTIONS(12015), + [anon_sym_BSLASHSvolcite] = ACTIONS(12015), + [anon_sym_BSLASHtvolcite] = ACTIONS(12015), + [anon_sym_BSLASHTvolcite] = ACTIONS(12015), + [anon_sym_BSLASHavolcite] = ACTIONS(12015), + [anon_sym_BSLASHAvolcite] = ACTIONS(12015), + [anon_sym_BSLASHnotecite] = ACTIONS(12015), + [anon_sym_BSLASHpnotecite] = ACTIONS(12015), + [anon_sym_BSLASHPnotecite] = ACTIONS(12015), + [anon_sym_BSLASHfnotecite] = ACTIONS(12015), + [anon_sym_BSLASHusepackage] = ACTIONS(12015), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12015), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12015), + [anon_sym_BSLASHinclude] = ACTIONS(12015), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12015), + [anon_sym_BSLASHinput] = ACTIONS(12015), + [anon_sym_BSLASHsubfile] = ACTIONS(12015), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12015), + [anon_sym_BSLASHbibliography] = ACTIONS(12015), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12015), + [anon_sym_BSLASHincludesvg] = ACTIONS(12015), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12015), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12015), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12015), + [anon_sym_BSLASHimport] = ACTIONS(12015), + [anon_sym_BSLASHsubimport] = ACTIONS(12015), + [anon_sym_BSLASHinputfrom] = ACTIONS(12015), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12015), + [anon_sym_BSLASHincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHlabel] = ACTIONS(12015), + [anon_sym_BSLASHref] = ACTIONS(12015), + [anon_sym_BSLASHvref] = ACTIONS(12015), + [anon_sym_BSLASHVref] = ACTIONS(12015), + [anon_sym_BSLASHautoref] = ACTIONS(12015), + [anon_sym_BSLASHpageref] = ACTIONS(12015), + [anon_sym_BSLASHcref] = ACTIONS(12015), + [anon_sym_BSLASHCref] = ACTIONS(12015), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnameCref] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHlabelcref] = ACTIONS(12015), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12015), + [anon_sym_BSLASHeqref] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange] = ACTIONS(12015), + [anon_sym_BSLASHCrefrange] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewlabel] = ACTIONS(12015), + [anon_sym_BSLASHnewcommand] = ACTIONS(12015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12015), + [anon_sym_BSLASHgls] = ACTIONS(12015), + [anon_sym_BSLASHGls] = ACTIONS(12015), + [anon_sym_BSLASHGLS] = ACTIONS(12015), + [anon_sym_BSLASHglspl] = ACTIONS(12015), + [anon_sym_BSLASHGlspl] = ACTIONS(12015), + [anon_sym_BSLASHGLSpl] = ACTIONS(12015), + [anon_sym_BSLASHglsdisp] = ACTIONS(12015), + [anon_sym_BSLASHglslink] = ACTIONS(12015), + [anon_sym_BSLASHglstext] = ACTIONS(12015), + [anon_sym_BSLASHGlstext] = ACTIONS(12015), + [anon_sym_BSLASHGLStext] = ACTIONS(12015), + [anon_sym_BSLASHglsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12015), + [anon_sym_BSLASHglsplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSplural] = ACTIONS(12015), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHglsname] = ACTIONS(12015), + [anon_sym_BSLASHGlsname] = ACTIONS(12015), + [anon_sym_BSLASHGLSname] = ACTIONS(12015), + [anon_sym_BSLASHglssymbol] = ACTIONS(12015), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12015), + [anon_sym_BSLASHglsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12015), + [anon_sym_BSLASHglsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12015), + [anon_sym_BSLASHglsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12015), + [anon_sym_BSLASHglsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12015), + [anon_sym_BSLASHglsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12015), + [anon_sym_BSLASHnewacronym] = ACTIONS(12015), + [anon_sym_BSLASHacrshort] = ACTIONS(12015), + [anon_sym_BSLASHAcrshort] = ACTIONS(12015), + [anon_sym_BSLASHACRshort] = ACTIONS(12015), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12015), + [anon_sym_BSLASHacrlong] = ACTIONS(12015), + [anon_sym_BSLASHAcrlong] = ACTIONS(12015), + [anon_sym_BSLASHACRlong] = ACTIONS(12015), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12015), + [anon_sym_BSLASHacrfull] = ACTIONS(12015), + [anon_sym_BSLASHAcrfull] = ACTIONS(12015), + [anon_sym_BSLASHACRfull] = ACTIONS(12015), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12015), + [anon_sym_BSLASHacs] = ACTIONS(12015), + [anon_sym_BSLASHAcs] = ACTIONS(12015), + [anon_sym_BSLASHacsp] = ACTIONS(12015), + [anon_sym_BSLASHAcsp] = ACTIONS(12015), + [anon_sym_BSLASHacl] = ACTIONS(12015), + [anon_sym_BSLASHAcl] = ACTIONS(12015), + [anon_sym_BSLASHaclp] = ACTIONS(12015), + [anon_sym_BSLASHAclp] = ACTIONS(12015), + [anon_sym_BSLASHacf] = ACTIONS(12015), + [anon_sym_BSLASHAcf] = ACTIONS(12015), + [anon_sym_BSLASHacfp] = ACTIONS(12015), + [anon_sym_BSLASHAcfp] = ACTIONS(12015), + [anon_sym_BSLASHac] = ACTIONS(12015), + [anon_sym_BSLASHAc] = ACTIONS(12015), + [anon_sym_BSLASHacp] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12015), + [anon_sym_BSLASHcolor] = ACTIONS(12015), + [anon_sym_BSLASHcolorbox] = ACTIONS(12015), + [anon_sym_BSLASHtextcolor] = ACTIONS(12015), + [anon_sym_BSLASHpagecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12015), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12015), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12015), + }, + [1389] = { + [sym_brace_group] = STATE(3013), + [sym_generic_command_name] = ACTIONS(12054), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12054), + [aux_sym_subparagraph_token1] = ACTIONS(12054), + [anon_sym_BSLASHitem] = ACTIONS(12054), + [anon_sym_LBRACK] = ACTIONS(12052), + [anon_sym_RBRACK] = ACTIONS(12052), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12052), + [anon_sym_LPAREN] = ACTIONS(12052), + [anon_sym_COMMA] = ACTIONS(12052), + [anon_sym_EQ] = ACTIONS(12052), + [sym_word] = ACTIONS(12052), + [sym_param] = ACTIONS(12052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12052), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12052), + [anon_sym_DOLLAR] = ACTIONS(12054), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12052), + [anon_sym_BSLASHbegin] = ACTIONS(12054), + [anon_sym_BSLASHcaption] = ACTIONS(12054), + [anon_sym_BSLASHcite] = ACTIONS(12054), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCite] = ACTIONS(12054), + [anon_sym_BSLASHnocite] = ACTIONS(12054), + [anon_sym_BSLASHcitet] = ACTIONS(12054), + [anon_sym_BSLASHcitep] = ACTIONS(12054), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteauthor] = ACTIONS(12054), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12054), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitetitle] = ACTIONS(12054), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteyear] = ACTIONS(12054), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitedate] = ACTIONS(12054), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteurl] = ACTIONS(12054), + [anon_sym_BSLASHfullcite] = ACTIONS(12054), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12054), + [anon_sym_BSLASHcitealt] = ACTIONS(12054), + [anon_sym_BSLASHcitealp] = ACTIONS(12054), + [anon_sym_BSLASHcitetext] = ACTIONS(12054), + [anon_sym_BSLASHparencite] = ACTIONS(12054), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHParencite] = ACTIONS(12054), + [anon_sym_BSLASHfootcite] = ACTIONS(12054), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12054), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12054), + [anon_sym_BSLASHtextcite] = ACTIONS(12054), + [anon_sym_BSLASHTextcite] = ACTIONS(12054), + [anon_sym_BSLASHsmartcite] = ACTIONS(12054), + [anon_sym_BSLASHSmartcite] = ACTIONS(12054), + [anon_sym_BSLASHsupercite] = ACTIONS(12054), + [anon_sym_BSLASHautocite] = ACTIONS(12054), + [anon_sym_BSLASHAutocite] = ACTIONS(12054), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHvolcite] = ACTIONS(12054), + [anon_sym_BSLASHVolcite] = ACTIONS(12054), + [anon_sym_BSLASHpvolcite] = ACTIONS(12054), + [anon_sym_BSLASHPvolcite] = ACTIONS(12054), + [anon_sym_BSLASHfvolcite] = ACTIONS(12054), + [anon_sym_BSLASHftvolcite] = ACTIONS(12054), + [anon_sym_BSLASHsvolcite] = ACTIONS(12054), + [anon_sym_BSLASHSvolcite] = ACTIONS(12054), + [anon_sym_BSLASHtvolcite] = ACTIONS(12054), + [anon_sym_BSLASHTvolcite] = ACTIONS(12054), + [anon_sym_BSLASHavolcite] = ACTIONS(12054), + [anon_sym_BSLASHAvolcite] = ACTIONS(12054), + [anon_sym_BSLASHnotecite] = ACTIONS(12054), + [anon_sym_BSLASHpnotecite] = ACTIONS(12054), + [anon_sym_BSLASHPnotecite] = ACTIONS(12054), + [anon_sym_BSLASHfnotecite] = ACTIONS(12054), + [anon_sym_BSLASHusepackage] = ACTIONS(12054), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12054), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12054), + [anon_sym_BSLASHinclude] = ACTIONS(12054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12054), + [anon_sym_BSLASHinput] = ACTIONS(12054), + [anon_sym_BSLASHsubfile] = ACTIONS(12054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12054), + [anon_sym_BSLASHbibliography] = ACTIONS(12054), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12054), + [anon_sym_BSLASHincludesvg] = ACTIONS(12054), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12054), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12054), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12054), + [anon_sym_BSLASHimport] = ACTIONS(12054), + [anon_sym_BSLASHsubimport] = ACTIONS(12054), + [anon_sym_BSLASHinputfrom] = ACTIONS(12054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12054), + [anon_sym_BSLASHincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHlabel] = ACTIONS(12054), + [anon_sym_BSLASHref] = ACTIONS(12054), + [anon_sym_BSLASHvref] = ACTIONS(12054), + [anon_sym_BSLASHVref] = ACTIONS(12054), + [anon_sym_BSLASHautoref] = ACTIONS(12054), + [anon_sym_BSLASHpageref] = ACTIONS(12054), + [anon_sym_BSLASHcref] = ACTIONS(12054), + [anon_sym_BSLASHCref] = ACTIONS(12054), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnameCref] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHlabelcref] = ACTIONS(12054), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12054), + [anon_sym_BSLASHeqref] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange] = ACTIONS(12054), + [anon_sym_BSLASHCrefrange] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewlabel] = ACTIONS(12054), + [anon_sym_BSLASHnewcommand] = ACTIONS(12054), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12054), + [anon_sym_BSLASHgls] = ACTIONS(12054), + [anon_sym_BSLASHGls] = ACTIONS(12054), + [anon_sym_BSLASHGLS] = ACTIONS(12054), + [anon_sym_BSLASHglspl] = ACTIONS(12054), + [anon_sym_BSLASHGlspl] = ACTIONS(12054), + [anon_sym_BSLASHGLSpl] = ACTIONS(12054), + [anon_sym_BSLASHglsdisp] = ACTIONS(12054), + [anon_sym_BSLASHglslink] = ACTIONS(12054), + [anon_sym_BSLASHglstext] = ACTIONS(12054), + [anon_sym_BSLASHGlstext] = ACTIONS(12054), + [anon_sym_BSLASHGLStext] = ACTIONS(12054), + [anon_sym_BSLASHglsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12054), + [anon_sym_BSLASHglsplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSplural] = ACTIONS(12054), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHglsname] = ACTIONS(12054), + [anon_sym_BSLASHGlsname] = ACTIONS(12054), + [anon_sym_BSLASHGLSname] = ACTIONS(12054), + [anon_sym_BSLASHglssymbol] = ACTIONS(12054), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12054), + [anon_sym_BSLASHglsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12054), + [anon_sym_BSLASHglsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12054), + [anon_sym_BSLASHglsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12054), + [anon_sym_BSLASHglsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12054), + [anon_sym_BSLASHglsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12054), + [anon_sym_BSLASHnewacronym] = ACTIONS(12054), + [anon_sym_BSLASHacrshort] = ACTIONS(12054), + [anon_sym_BSLASHAcrshort] = ACTIONS(12054), + [anon_sym_BSLASHACRshort] = ACTIONS(12054), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12054), + [anon_sym_BSLASHacrlong] = ACTIONS(12054), + [anon_sym_BSLASHAcrlong] = ACTIONS(12054), + [anon_sym_BSLASHACRlong] = ACTIONS(12054), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12054), + [anon_sym_BSLASHacrfull] = ACTIONS(12054), + [anon_sym_BSLASHAcrfull] = ACTIONS(12054), + [anon_sym_BSLASHACRfull] = ACTIONS(12054), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12054), + [anon_sym_BSLASHacs] = ACTIONS(12054), + [anon_sym_BSLASHAcs] = ACTIONS(12054), + [anon_sym_BSLASHacsp] = ACTIONS(12054), + [anon_sym_BSLASHAcsp] = ACTIONS(12054), + [anon_sym_BSLASHacl] = ACTIONS(12054), + [anon_sym_BSLASHAcl] = ACTIONS(12054), + [anon_sym_BSLASHaclp] = ACTIONS(12054), + [anon_sym_BSLASHAclp] = ACTIONS(12054), + [anon_sym_BSLASHacf] = ACTIONS(12054), + [anon_sym_BSLASHAcf] = ACTIONS(12054), + [anon_sym_BSLASHacfp] = ACTIONS(12054), + [anon_sym_BSLASHAcfp] = ACTIONS(12054), + [anon_sym_BSLASHac] = ACTIONS(12054), + [anon_sym_BSLASHAc] = ACTIONS(12054), + [anon_sym_BSLASHacp] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12054), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12054), + [anon_sym_BSLASHcolor] = ACTIONS(12054), + [anon_sym_BSLASHcolorbox] = ACTIONS(12054), + [anon_sym_BSLASHtextcolor] = ACTIONS(12054), + [anon_sym_BSLASHpagecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12054), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12054), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12054), + }, + [1390] = { + [sym_brace_group] = STATE(3014), + [sym_generic_command_name] = ACTIONS(12088), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12088), + [aux_sym_subparagraph_token1] = ACTIONS(12088), + [anon_sym_BSLASHitem] = ACTIONS(12088), + [anon_sym_LBRACK] = ACTIONS(12086), + [anon_sym_RBRACK] = ACTIONS(12086), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12086), + [anon_sym_LPAREN] = ACTIONS(12086), + [anon_sym_COMMA] = ACTIONS(12086), + [anon_sym_EQ] = ACTIONS(12086), + [sym_word] = ACTIONS(12086), + [sym_param] = ACTIONS(12086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12086), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12086), + [anon_sym_DOLLAR] = ACTIONS(12088), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12086), + [anon_sym_BSLASHbegin] = ACTIONS(12088), + [anon_sym_BSLASHcaption] = ACTIONS(12088), + [anon_sym_BSLASHcite] = ACTIONS(12088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCite] = ACTIONS(12088), + [anon_sym_BSLASHnocite] = ACTIONS(12088), + [anon_sym_BSLASHcitet] = ACTIONS(12088), + [anon_sym_BSLASHcitep] = ACTIONS(12088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteauthor] = ACTIONS(12088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitetitle] = ACTIONS(12088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteyear] = ACTIONS(12088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitedate] = ACTIONS(12088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteurl] = ACTIONS(12088), + [anon_sym_BSLASHfullcite] = ACTIONS(12088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12088), + [anon_sym_BSLASHcitealt] = ACTIONS(12088), + [anon_sym_BSLASHcitealp] = ACTIONS(12088), + [anon_sym_BSLASHcitetext] = ACTIONS(12088), + [anon_sym_BSLASHparencite] = ACTIONS(12088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHParencite] = ACTIONS(12088), + [anon_sym_BSLASHfootcite] = ACTIONS(12088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12088), + [anon_sym_BSLASHtextcite] = ACTIONS(12088), + [anon_sym_BSLASHTextcite] = ACTIONS(12088), + [anon_sym_BSLASHsmartcite] = ACTIONS(12088), + [anon_sym_BSLASHSmartcite] = ACTIONS(12088), + [anon_sym_BSLASHsupercite] = ACTIONS(12088), + [anon_sym_BSLASHautocite] = ACTIONS(12088), + [anon_sym_BSLASHAutocite] = ACTIONS(12088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHvolcite] = ACTIONS(12088), + [anon_sym_BSLASHVolcite] = ACTIONS(12088), + [anon_sym_BSLASHpvolcite] = ACTIONS(12088), + [anon_sym_BSLASHPvolcite] = ACTIONS(12088), + [anon_sym_BSLASHfvolcite] = ACTIONS(12088), + [anon_sym_BSLASHftvolcite] = ACTIONS(12088), + [anon_sym_BSLASHsvolcite] = ACTIONS(12088), + [anon_sym_BSLASHSvolcite] = ACTIONS(12088), + [anon_sym_BSLASHtvolcite] = ACTIONS(12088), + [anon_sym_BSLASHTvolcite] = ACTIONS(12088), + [anon_sym_BSLASHavolcite] = ACTIONS(12088), + [anon_sym_BSLASHAvolcite] = ACTIONS(12088), + [anon_sym_BSLASHnotecite] = ACTIONS(12088), + [anon_sym_BSLASHpnotecite] = ACTIONS(12088), + [anon_sym_BSLASHPnotecite] = ACTIONS(12088), + [anon_sym_BSLASHfnotecite] = ACTIONS(12088), + [anon_sym_BSLASHusepackage] = ACTIONS(12088), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12088), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12088), + [anon_sym_BSLASHinclude] = ACTIONS(12088), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12088), + [anon_sym_BSLASHinput] = ACTIONS(12088), + [anon_sym_BSLASHsubfile] = ACTIONS(12088), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12088), + [anon_sym_BSLASHbibliography] = ACTIONS(12088), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12088), + [anon_sym_BSLASHincludesvg] = ACTIONS(12088), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12088), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12088), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12088), + [anon_sym_BSLASHimport] = ACTIONS(12088), + [anon_sym_BSLASHsubimport] = ACTIONS(12088), + [anon_sym_BSLASHinputfrom] = ACTIONS(12088), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12088), + [anon_sym_BSLASHincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHlabel] = ACTIONS(12088), + [anon_sym_BSLASHref] = ACTIONS(12088), + [anon_sym_BSLASHvref] = ACTIONS(12088), + [anon_sym_BSLASHVref] = ACTIONS(12088), + [anon_sym_BSLASHautoref] = ACTIONS(12088), + [anon_sym_BSLASHpageref] = ACTIONS(12088), + [anon_sym_BSLASHcref] = ACTIONS(12088), + [anon_sym_BSLASHCref] = ACTIONS(12088), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnameCref] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHlabelcref] = ACTIONS(12088), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12088), + [anon_sym_BSLASHeqref] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange] = ACTIONS(12088), + [anon_sym_BSLASHCrefrange] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewlabel] = ACTIONS(12088), + [anon_sym_BSLASHnewcommand] = ACTIONS(12088), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12088), + [anon_sym_BSLASHgls] = ACTIONS(12088), + [anon_sym_BSLASHGls] = ACTIONS(12088), + [anon_sym_BSLASHGLS] = ACTIONS(12088), + [anon_sym_BSLASHglspl] = ACTIONS(12088), + [anon_sym_BSLASHGlspl] = ACTIONS(12088), + [anon_sym_BSLASHGLSpl] = ACTIONS(12088), + [anon_sym_BSLASHglsdisp] = ACTIONS(12088), + [anon_sym_BSLASHglslink] = ACTIONS(12088), + [anon_sym_BSLASHglstext] = ACTIONS(12088), + [anon_sym_BSLASHGlstext] = ACTIONS(12088), + [anon_sym_BSLASHGLStext] = ACTIONS(12088), + [anon_sym_BSLASHglsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12088), + [anon_sym_BSLASHglsplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSplural] = ACTIONS(12088), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHglsname] = ACTIONS(12088), + [anon_sym_BSLASHGlsname] = ACTIONS(12088), + [anon_sym_BSLASHGLSname] = ACTIONS(12088), + [anon_sym_BSLASHglssymbol] = ACTIONS(12088), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12088), + [anon_sym_BSLASHglsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12088), + [anon_sym_BSLASHglsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12088), + [anon_sym_BSLASHglsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12088), + [anon_sym_BSLASHglsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12088), + [anon_sym_BSLASHglsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12088), + [anon_sym_BSLASHnewacronym] = ACTIONS(12088), + [anon_sym_BSLASHacrshort] = ACTIONS(12088), + [anon_sym_BSLASHAcrshort] = ACTIONS(12088), + [anon_sym_BSLASHACRshort] = ACTIONS(12088), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12088), + [anon_sym_BSLASHacrlong] = ACTIONS(12088), + [anon_sym_BSLASHAcrlong] = ACTIONS(12088), + [anon_sym_BSLASHACRlong] = ACTIONS(12088), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12088), + [anon_sym_BSLASHacrfull] = ACTIONS(12088), + [anon_sym_BSLASHAcrfull] = ACTIONS(12088), + [anon_sym_BSLASHACRfull] = ACTIONS(12088), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12088), + [anon_sym_BSLASHacs] = ACTIONS(12088), + [anon_sym_BSLASHAcs] = ACTIONS(12088), + [anon_sym_BSLASHacsp] = ACTIONS(12088), + [anon_sym_BSLASHAcsp] = ACTIONS(12088), + [anon_sym_BSLASHacl] = ACTIONS(12088), + [anon_sym_BSLASHAcl] = ACTIONS(12088), + [anon_sym_BSLASHaclp] = ACTIONS(12088), + [anon_sym_BSLASHAclp] = ACTIONS(12088), + [anon_sym_BSLASHacf] = ACTIONS(12088), + [anon_sym_BSLASHAcf] = ACTIONS(12088), + [anon_sym_BSLASHacfp] = ACTIONS(12088), + [anon_sym_BSLASHAcfp] = ACTIONS(12088), + [anon_sym_BSLASHac] = ACTIONS(12088), + [anon_sym_BSLASHAc] = ACTIONS(12088), + [anon_sym_BSLASHacp] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12088), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12088), + [anon_sym_BSLASHcolor] = ACTIONS(12088), + [anon_sym_BSLASHcolorbox] = ACTIONS(12088), + [anon_sym_BSLASHtextcolor] = ACTIONS(12088), + [anon_sym_BSLASHpagecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12088), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12088), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12088), + }, + [1391] = { + [sym_brace_group] = STATE(3023), + [sym_generic_command_name] = ACTIONS(12092), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12092), + [aux_sym_subparagraph_token1] = ACTIONS(12092), + [anon_sym_BSLASHitem] = ACTIONS(12092), + [anon_sym_LBRACK] = ACTIONS(12090), + [anon_sym_RBRACK] = ACTIONS(12090), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12090), + [anon_sym_LPAREN] = ACTIONS(12090), + [anon_sym_COMMA] = ACTIONS(12090), + [anon_sym_EQ] = ACTIONS(12090), + [sym_word] = ACTIONS(12090), + [sym_param] = ACTIONS(12090), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12090), + [anon_sym_DOLLAR] = ACTIONS(12092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12090), + [anon_sym_BSLASHbegin] = ACTIONS(12092), + [anon_sym_BSLASHcaption] = ACTIONS(12092), + [anon_sym_BSLASHcite] = ACTIONS(12092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCite] = ACTIONS(12092), + [anon_sym_BSLASHnocite] = ACTIONS(12092), + [anon_sym_BSLASHcitet] = ACTIONS(12092), + [anon_sym_BSLASHcitep] = ACTIONS(12092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteauthor] = ACTIONS(12092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitetitle] = ACTIONS(12092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteyear] = ACTIONS(12092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitedate] = ACTIONS(12092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteurl] = ACTIONS(12092), + [anon_sym_BSLASHfullcite] = ACTIONS(12092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12092), + [anon_sym_BSLASHcitealt] = ACTIONS(12092), + [anon_sym_BSLASHcitealp] = ACTIONS(12092), + [anon_sym_BSLASHcitetext] = ACTIONS(12092), + [anon_sym_BSLASHparencite] = ACTIONS(12092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHParencite] = ACTIONS(12092), + [anon_sym_BSLASHfootcite] = ACTIONS(12092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12092), + [anon_sym_BSLASHtextcite] = ACTIONS(12092), + [anon_sym_BSLASHTextcite] = ACTIONS(12092), + [anon_sym_BSLASHsmartcite] = ACTIONS(12092), + [anon_sym_BSLASHSmartcite] = ACTIONS(12092), + [anon_sym_BSLASHsupercite] = ACTIONS(12092), + [anon_sym_BSLASHautocite] = ACTIONS(12092), + [anon_sym_BSLASHAutocite] = ACTIONS(12092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHvolcite] = ACTIONS(12092), + [anon_sym_BSLASHVolcite] = ACTIONS(12092), + [anon_sym_BSLASHpvolcite] = ACTIONS(12092), + [anon_sym_BSLASHPvolcite] = ACTIONS(12092), + [anon_sym_BSLASHfvolcite] = ACTIONS(12092), + [anon_sym_BSLASHftvolcite] = ACTIONS(12092), + [anon_sym_BSLASHsvolcite] = ACTIONS(12092), + [anon_sym_BSLASHSvolcite] = ACTIONS(12092), + [anon_sym_BSLASHtvolcite] = ACTIONS(12092), + [anon_sym_BSLASHTvolcite] = ACTIONS(12092), + [anon_sym_BSLASHavolcite] = ACTIONS(12092), + [anon_sym_BSLASHAvolcite] = ACTIONS(12092), + [anon_sym_BSLASHnotecite] = ACTIONS(12092), + [anon_sym_BSLASHpnotecite] = ACTIONS(12092), + [anon_sym_BSLASHPnotecite] = ACTIONS(12092), + [anon_sym_BSLASHfnotecite] = ACTIONS(12092), + [anon_sym_BSLASHusepackage] = ACTIONS(12092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12092), + [anon_sym_BSLASHinclude] = ACTIONS(12092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12092), + [anon_sym_BSLASHinput] = ACTIONS(12092), + [anon_sym_BSLASHsubfile] = ACTIONS(12092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12092), + [anon_sym_BSLASHbibliography] = ACTIONS(12092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12092), + [anon_sym_BSLASHincludesvg] = ACTIONS(12092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12092), + [anon_sym_BSLASHimport] = ACTIONS(12092), + [anon_sym_BSLASHsubimport] = ACTIONS(12092), + [anon_sym_BSLASHinputfrom] = ACTIONS(12092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12092), + [anon_sym_BSLASHincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHlabel] = ACTIONS(12092), + [anon_sym_BSLASHref] = ACTIONS(12092), + [anon_sym_BSLASHvref] = ACTIONS(12092), + [anon_sym_BSLASHVref] = ACTIONS(12092), + [anon_sym_BSLASHautoref] = ACTIONS(12092), + [anon_sym_BSLASHpageref] = ACTIONS(12092), + [anon_sym_BSLASHcref] = ACTIONS(12092), + [anon_sym_BSLASHCref] = ACTIONS(12092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnameCref] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHlabelcref] = ACTIONS(12092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12092), + [anon_sym_BSLASHeqref] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange] = ACTIONS(12092), + [anon_sym_BSLASHCrefrange] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewlabel] = ACTIONS(12092), + [anon_sym_BSLASHnewcommand] = ACTIONS(12092), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12092), + [anon_sym_BSLASHgls] = ACTIONS(12092), + [anon_sym_BSLASHGls] = ACTIONS(12092), + [anon_sym_BSLASHGLS] = ACTIONS(12092), + [anon_sym_BSLASHglspl] = ACTIONS(12092), + [anon_sym_BSLASHGlspl] = ACTIONS(12092), + [anon_sym_BSLASHGLSpl] = ACTIONS(12092), + [anon_sym_BSLASHglsdisp] = ACTIONS(12092), + [anon_sym_BSLASHglslink] = ACTIONS(12092), + [anon_sym_BSLASHglstext] = ACTIONS(12092), + [anon_sym_BSLASHGlstext] = ACTIONS(12092), + [anon_sym_BSLASHGLStext] = ACTIONS(12092), + [anon_sym_BSLASHglsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12092), + [anon_sym_BSLASHglsplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSplural] = ACTIONS(12092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHglsname] = ACTIONS(12092), + [anon_sym_BSLASHGlsname] = ACTIONS(12092), + [anon_sym_BSLASHGLSname] = ACTIONS(12092), + [anon_sym_BSLASHglssymbol] = ACTIONS(12092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12092), + [anon_sym_BSLASHglsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12092), + [anon_sym_BSLASHglsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12092), + [anon_sym_BSLASHglsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12092), + [anon_sym_BSLASHglsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12092), + [anon_sym_BSLASHglsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12092), + [anon_sym_BSLASHnewacronym] = ACTIONS(12092), + [anon_sym_BSLASHacrshort] = ACTIONS(12092), + [anon_sym_BSLASHAcrshort] = ACTIONS(12092), + [anon_sym_BSLASHACRshort] = ACTIONS(12092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12092), + [anon_sym_BSLASHacrlong] = ACTIONS(12092), + [anon_sym_BSLASHAcrlong] = ACTIONS(12092), + [anon_sym_BSLASHACRlong] = ACTIONS(12092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12092), + [anon_sym_BSLASHacrfull] = ACTIONS(12092), + [anon_sym_BSLASHAcrfull] = ACTIONS(12092), + [anon_sym_BSLASHACRfull] = ACTIONS(12092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12092), + [anon_sym_BSLASHacs] = ACTIONS(12092), + [anon_sym_BSLASHAcs] = ACTIONS(12092), + [anon_sym_BSLASHacsp] = ACTIONS(12092), + [anon_sym_BSLASHAcsp] = ACTIONS(12092), + [anon_sym_BSLASHacl] = ACTIONS(12092), + [anon_sym_BSLASHAcl] = ACTIONS(12092), + [anon_sym_BSLASHaclp] = ACTIONS(12092), + [anon_sym_BSLASHAclp] = ACTIONS(12092), + [anon_sym_BSLASHacf] = ACTIONS(12092), + [anon_sym_BSLASHAcf] = ACTIONS(12092), + [anon_sym_BSLASHacfp] = ACTIONS(12092), + [anon_sym_BSLASHAcfp] = ACTIONS(12092), + [anon_sym_BSLASHac] = ACTIONS(12092), + [anon_sym_BSLASHAc] = ACTIONS(12092), + [anon_sym_BSLASHacp] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12092), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12092), + [anon_sym_BSLASHcolor] = ACTIONS(12092), + [anon_sym_BSLASHcolorbox] = ACTIONS(12092), + [anon_sym_BSLASHtextcolor] = ACTIONS(12092), + [anon_sym_BSLASHpagecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12092), + }, + [1392] = { + [sym_brace_group] = STATE(3030), + [sym_generic_command_name] = ACTIONS(12028), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12028), + [aux_sym_subparagraph_token1] = ACTIONS(12028), + [anon_sym_BSLASHitem] = ACTIONS(12028), + [anon_sym_LBRACK] = ACTIONS(12026), + [anon_sym_RBRACK] = ACTIONS(12026), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12026), + [anon_sym_LPAREN] = ACTIONS(12026), + [anon_sym_COMMA] = ACTIONS(12026), + [anon_sym_EQ] = ACTIONS(12026), + [sym_word] = ACTIONS(12026), + [sym_param] = ACTIONS(12026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12026), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12026), + [anon_sym_DOLLAR] = ACTIONS(12028), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12026), + [anon_sym_BSLASHbegin] = ACTIONS(12028), + [anon_sym_BSLASHcaption] = ACTIONS(12028), + [anon_sym_BSLASHcite] = ACTIONS(12028), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCite] = ACTIONS(12028), + [anon_sym_BSLASHnocite] = ACTIONS(12028), + [anon_sym_BSLASHcitet] = ACTIONS(12028), + [anon_sym_BSLASHcitep] = ACTIONS(12028), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteauthor] = ACTIONS(12028), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12028), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitetitle] = ACTIONS(12028), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteyear] = ACTIONS(12028), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitedate] = ACTIONS(12028), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteurl] = ACTIONS(12028), + [anon_sym_BSLASHfullcite] = ACTIONS(12028), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12028), + [anon_sym_BSLASHcitealt] = ACTIONS(12028), + [anon_sym_BSLASHcitealp] = ACTIONS(12028), + [anon_sym_BSLASHcitetext] = ACTIONS(12028), + [anon_sym_BSLASHparencite] = ACTIONS(12028), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHParencite] = ACTIONS(12028), + [anon_sym_BSLASHfootcite] = ACTIONS(12028), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12028), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12028), + [anon_sym_BSLASHtextcite] = ACTIONS(12028), + [anon_sym_BSLASHTextcite] = ACTIONS(12028), + [anon_sym_BSLASHsmartcite] = ACTIONS(12028), + [anon_sym_BSLASHSmartcite] = ACTIONS(12028), + [anon_sym_BSLASHsupercite] = ACTIONS(12028), + [anon_sym_BSLASHautocite] = ACTIONS(12028), + [anon_sym_BSLASHAutocite] = ACTIONS(12028), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHvolcite] = ACTIONS(12028), + [anon_sym_BSLASHVolcite] = ACTIONS(12028), + [anon_sym_BSLASHpvolcite] = ACTIONS(12028), + [anon_sym_BSLASHPvolcite] = ACTIONS(12028), + [anon_sym_BSLASHfvolcite] = ACTIONS(12028), + [anon_sym_BSLASHftvolcite] = ACTIONS(12028), + [anon_sym_BSLASHsvolcite] = ACTIONS(12028), + [anon_sym_BSLASHSvolcite] = ACTIONS(12028), + [anon_sym_BSLASHtvolcite] = ACTIONS(12028), + [anon_sym_BSLASHTvolcite] = ACTIONS(12028), + [anon_sym_BSLASHavolcite] = ACTIONS(12028), + [anon_sym_BSLASHAvolcite] = ACTIONS(12028), + [anon_sym_BSLASHnotecite] = ACTIONS(12028), + [anon_sym_BSLASHpnotecite] = ACTIONS(12028), + [anon_sym_BSLASHPnotecite] = ACTIONS(12028), + [anon_sym_BSLASHfnotecite] = ACTIONS(12028), + [anon_sym_BSLASHusepackage] = ACTIONS(12028), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12028), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12028), + [anon_sym_BSLASHinclude] = ACTIONS(12028), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12028), + [anon_sym_BSLASHinput] = ACTIONS(12028), + [anon_sym_BSLASHsubfile] = ACTIONS(12028), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12028), + [anon_sym_BSLASHbibliography] = ACTIONS(12028), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12028), + [anon_sym_BSLASHincludesvg] = ACTIONS(12028), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12028), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12028), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12028), + [anon_sym_BSLASHimport] = ACTIONS(12028), + [anon_sym_BSLASHsubimport] = ACTIONS(12028), + [anon_sym_BSLASHinputfrom] = ACTIONS(12028), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12028), + [anon_sym_BSLASHincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHlabel] = ACTIONS(12028), + [anon_sym_BSLASHref] = ACTIONS(12028), + [anon_sym_BSLASHvref] = ACTIONS(12028), + [anon_sym_BSLASHVref] = ACTIONS(12028), + [anon_sym_BSLASHautoref] = ACTIONS(12028), + [anon_sym_BSLASHpageref] = ACTIONS(12028), + [anon_sym_BSLASHcref] = ACTIONS(12028), + [anon_sym_BSLASHCref] = ACTIONS(12028), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnameCref] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHlabelcref] = ACTIONS(12028), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12028), + [anon_sym_BSLASHeqref] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange] = ACTIONS(12028), + [anon_sym_BSLASHCrefrange] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewlabel] = ACTIONS(12028), + [anon_sym_BSLASHnewcommand] = ACTIONS(12028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12028), + [anon_sym_BSLASHgls] = ACTIONS(12028), + [anon_sym_BSLASHGls] = ACTIONS(12028), + [anon_sym_BSLASHGLS] = ACTIONS(12028), + [anon_sym_BSLASHglspl] = ACTIONS(12028), + [anon_sym_BSLASHGlspl] = ACTIONS(12028), + [anon_sym_BSLASHGLSpl] = ACTIONS(12028), + [anon_sym_BSLASHglsdisp] = ACTIONS(12028), + [anon_sym_BSLASHglslink] = ACTIONS(12028), + [anon_sym_BSLASHglstext] = ACTIONS(12028), + [anon_sym_BSLASHGlstext] = ACTIONS(12028), + [anon_sym_BSLASHGLStext] = ACTIONS(12028), + [anon_sym_BSLASHglsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12028), + [anon_sym_BSLASHglsplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSplural] = ACTIONS(12028), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHglsname] = ACTIONS(12028), + [anon_sym_BSLASHGlsname] = ACTIONS(12028), + [anon_sym_BSLASHGLSname] = ACTIONS(12028), + [anon_sym_BSLASHglssymbol] = ACTIONS(12028), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12028), + [anon_sym_BSLASHglsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12028), + [anon_sym_BSLASHglsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12028), + [anon_sym_BSLASHglsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12028), + [anon_sym_BSLASHglsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12028), + [anon_sym_BSLASHglsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12028), + [anon_sym_BSLASHnewacronym] = ACTIONS(12028), + [anon_sym_BSLASHacrshort] = ACTIONS(12028), + [anon_sym_BSLASHAcrshort] = ACTIONS(12028), + [anon_sym_BSLASHACRshort] = ACTIONS(12028), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12028), + [anon_sym_BSLASHacrlong] = ACTIONS(12028), + [anon_sym_BSLASHAcrlong] = ACTIONS(12028), + [anon_sym_BSLASHACRlong] = ACTIONS(12028), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12028), + [anon_sym_BSLASHacrfull] = ACTIONS(12028), + [anon_sym_BSLASHAcrfull] = ACTIONS(12028), + [anon_sym_BSLASHACRfull] = ACTIONS(12028), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12028), + [anon_sym_BSLASHacs] = ACTIONS(12028), + [anon_sym_BSLASHAcs] = ACTIONS(12028), + [anon_sym_BSLASHacsp] = ACTIONS(12028), + [anon_sym_BSLASHAcsp] = ACTIONS(12028), + [anon_sym_BSLASHacl] = ACTIONS(12028), + [anon_sym_BSLASHAcl] = ACTIONS(12028), + [anon_sym_BSLASHaclp] = ACTIONS(12028), + [anon_sym_BSLASHAclp] = ACTIONS(12028), + [anon_sym_BSLASHacf] = ACTIONS(12028), + [anon_sym_BSLASHAcf] = ACTIONS(12028), + [anon_sym_BSLASHacfp] = ACTIONS(12028), + [anon_sym_BSLASHAcfp] = ACTIONS(12028), + [anon_sym_BSLASHac] = ACTIONS(12028), + [anon_sym_BSLASHAc] = ACTIONS(12028), + [anon_sym_BSLASHacp] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12028), + [anon_sym_BSLASHcolor] = ACTIONS(12028), + [anon_sym_BSLASHcolorbox] = ACTIONS(12028), + [anon_sym_BSLASHtextcolor] = ACTIONS(12028), + [anon_sym_BSLASHpagecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12028), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12028), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12028), + }, + [1393] = { + [sym_generic_command_name] = ACTIONS(12132), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12132), + [aux_sym_paragraph_token1] = ACTIONS(12132), + [aux_sym_subparagraph_token1] = ACTIONS(12132), + [anon_sym_BSLASHitem] = ACTIONS(12132), + [anon_sym_LBRACK] = ACTIONS(12130), + [anon_sym_RBRACK] = ACTIONS(12130), + [anon_sym_LBRACE] = ACTIONS(12130), + [anon_sym_RBRACE] = ACTIONS(12130), + [anon_sym_LPAREN] = ACTIONS(12130), + [anon_sym_COMMA] = ACTIONS(12130), + [anon_sym_EQ] = ACTIONS(12130), + [sym_word] = ACTIONS(12130), + [sym_param] = ACTIONS(12130), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12130), + [anon_sym_DOLLAR] = ACTIONS(12132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12130), + [anon_sym_BSLASHbegin] = ACTIONS(12132), + [anon_sym_BSLASHcaption] = ACTIONS(12132), + [anon_sym_BSLASHcite] = ACTIONS(12132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCite] = ACTIONS(12132), + [anon_sym_BSLASHnocite] = ACTIONS(12132), + [anon_sym_BSLASHcitet] = ACTIONS(12132), + [anon_sym_BSLASHcitep] = ACTIONS(12132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteauthor] = ACTIONS(12132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitetitle] = ACTIONS(12132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteyear] = ACTIONS(12132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitedate] = ACTIONS(12132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteurl] = ACTIONS(12132), + [anon_sym_BSLASHfullcite] = ACTIONS(12132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12132), + [anon_sym_BSLASHcitealt] = ACTIONS(12132), + [anon_sym_BSLASHcitealp] = ACTIONS(12132), + [anon_sym_BSLASHcitetext] = ACTIONS(12132), + [anon_sym_BSLASHparencite] = ACTIONS(12132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHParencite] = ACTIONS(12132), + [anon_sym_BSLASHfootcite] = ACTIONS(12132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12132), + [anon_sym_BSLASHtextcite] = ACTIONS(12132), + [anon_sym_BSLASHTextcite] = ACTIONS(12132), + [anon_sym_BSLASHsmartcite] = ACTIONS(12132), + [anon_sym_BSLASHSmartcite] = ACTIONS(12132), + [anon_sym_BSLASHsupercite] = ACTIONS(12132), + [anon_sym_BSLASHautocite] = ACTIONS(12132), + [anon_sym_BSLASHAutocite] = ACTIONS(12132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHvolcite] = ACTIONS(12132), + [anon_sym_BSLASHVolcite] = ACTIONS(12132), + [anon_sym_BSLASHpvolcite] = ACTIONS(12132), + [anon_sym_BSLASHPvolcite] = ACTIONS(12132), + [anon_sym_BSLASHfvolcite] = ACTIONS(12132), + [anon_sym_BSLASHftvolcite] = ACTIONS(12132), + [anon_sym_BSLASHsvolcite] = ACTIONS(12132), + [anon_sym_BSLASHSvolcite] = ACTIONS(12132), + [anon_sym_BSLASHtvolcite] = ACTIONS(12132), + [anon_sym_BSLASHTvolcite] = ACTIONS(12132), + [anon_sym_BSLASHavolcite] = ACTIONS(12132), + [anon_sym_BSLASHAvolcite] = ACTIONS(12132), + [anon_sym_BSLASHnotecite] = ACTIONS(12132), + [anon_sym_BSLASHpnotecite] = ACTIONS(12132), + [anon_sym_BSLASHPnotecite] = ACTIONS(12132), + [anon_sym_BSLASHfnotecite] = ACTIONS(12132), + [anon_sym_BSLASHusepackage] = ACTIONS(12132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12132), + [anon_sym_BSLASHinclude] = ACTIONS(12132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12132), + [anon_sym_BSLASHinput] = ACTIONS(12132), + [anon_sym_BSLASHsubfile] = ACTIONS(12132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12132), + [anon_sym_BSLASHbibliography] = ACTIONS(12132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12132), + [anon_sym_BSLASHincludesvg] = ACTIONS(12132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12132), + [anon_sym_BSLASHimport] = ACTIONS(12132), + [anon_sym_BSLASHsubimport] = ACTIONS(12132), + [anon_sym_BSLASHinputfrom] = ACTIONS(12132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12132), + [anon_sym_BSLASHincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHlabel] = ACTIONS(12132), + [anon_sym_BSLASHref] = ACTIONS(12132), + [anon_sym_BSLASHvref] = ACTIONS(12132), + [anon_sym_BSLASHVref] = ACTIONS(12132), + [anon_sym_BSLASHautoref] = ACTIONS(12132), + [anon_sym_BSLASHpageref] = ACTIONS(12132), + [anon_sym_BSLASHcref] = ACTIONS(12132), + [anon_sym_BSLASHCref] = ACTIONS(12132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnameCref] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHlabelcref] = ACTIONS(12132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12132), + [anon_sym_BSLASHeqref] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange] = ACTIONS(12132), + [anon_sym_BSLASHCrefrange] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewlabel] = ACTIONS(12132), + [anon_sym_BSLASHnewcommand] = ACTIONS(12132), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12132), + [anon_sym_BSLASHgls] = ACTIONS(12132), + [anon_sym_BSLASHGls] = ACTIONS(12132), + [anon_sym_BSLASHGLS] = ACTIONS(12132), + [anon_sym_BSLASHglspl] = ACTIONS(12132), + [anon_sym_BSLASHGlspl] = ACTIONS(12132), + [anon_sym_BSLASHGLSpl] = ACTIONS(12132), + [anon_sym_BSLASHglsdisp] = ACTIONS(12132), + [anon_sym_BSLASHglslink] = ACTIONS(12132), + [anon_sym_BSLASHglstext] = ACTIONS(12132), + [anon_sym_BSLASHGlstext] = ACTIONS(12132), + [anon_sym_BSLASHGLStext] = ACTIONS(12132), + [anon_sym_BSLASHglsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12132), + [anon_sym_BSLASHglsplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSplural] = ACTIONS(12132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHglsname] = ACTIONS(12132), + [anon_sym_BSLASHGlsname] = ACTIONS(12132), + [anon_sym_BSLASHGLSname] = ACTIONS(12132), + [anon_sym_BSLASHglssymbol] = ACTIONS(12132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12132), + [anon_sym_BSLASHglsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12132), + [anon_sym_BSLASHglsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12132), + [anon_sym_BSLASHglsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12132), + [anon_sym_BSLASHglsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12132), + [anon_sym_BSLASHglsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12132), + [anon_sym_BSLASHnewacronym] = ACTIONS(12132), + [anon_sym_BSLASHacrshort] = ACTIONS(12132), + [anon_sym_BSLASHAcrshort] = ACTIONS(12132), + [anon_sym_BSLASHACRshort] = ACTIONS(12132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12132), + [anon_sym_BSLASHacrlong] = ACTIONS(12132), + [anon_sym_BSLASHAcrlong] = ACTIONS(12132), + [anon_sym_BSLASHACRlong] = ACTIONS(12132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12132), + [anon_sym_BSLASHacrfull] = ACTIONS(12132), + [anon_sym_BSLASHAcrfull] = ACTIONS(12132), + [anon_sym_BSLASHACRfull] = ACTIONS(12132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12132), + [anon_sym_BSLASHacs] = ACTIONS(12132), + [anon_sym_BSLASHAcs] = ACTIONS(12132), + [anon_sym_BSLASHacsp] = ACTIONS(12132), + [anon_sym_BSLASHAcsp] = ACTIONS(12132), + [anon_sym_BSLASHacl] = ACTIONS(12132), + [anon_sym_BSLASHAcl] = ACTIONS(12132), + [anon_sym_BSLASHaclp] = ACTIONS(12132), + [anon_sym_BSLASHAclp] = ACTIONS(12132), + [anon_sym_BSLASHacf] = ACTIONS(12132), + [anon_sym_BSLASHAcf] = ACTIONS(12132), + [anon_sym_BSLASHacfp] = ACTIONS(12132), + [anon_sym_BSLASHAcfp] = ACTIONS(12132), + [anon_sym_BSLASHac] = ACTIONS(12132), + [anon_sym_BSLASHAc] = ACTIONS(12132), + [anon_sym_BSLASHacp] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12132), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12132), + [anon_sym_BSLASHcolor] = ACTIONS(12132), + [anon_sym_BSLASHcolorbox] = ACTIONS(12132), + [anon_sym_BSLASHtextcolor] = ACTIONS(12132), + [anon_sym_BSLASHpagecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12132), + }, + [1394] = { + [sym_brace_group] = STATE(3031), + [sym_generic_command_name] = ACTIONS(12100), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12100), + [aux_sym_subparagraph_token1] = ACTIONS(12100), + [anon_sym_BSLASHitem] = ACTIONS(12100), + [anon_sym_LBRACK] = ACTIONS(12098), + [anon_sym_RBRACK] = ACTIONS(12098), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12098), + [anon_sym_LPAREN] = ACTIONS(12098), + [anon_sym_COMMA] = ACTIONS(12098), + [anon_sym_EQ] = ACTIONS(12098), + [sym_word] = ACTIONS(12098), + [sym_param] = ACTIONS(12098), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12098), + [anon_sym_DOLLAR] = ACTIONS(12100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12098), + [anon_sym_BSLASHbegin] = ACTIONS(12100), + [anon_sym_BSLASHcaption] = ACTIONS(12100), + [anon_sym_BSLASHcite] = ACTIONS(12100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCite] = ACTIONS(12100), + [anon_sym_BSLASHnocite] = ACTIONS(12100), + [anon_sym_BSLASHcitet] = ACTIONS(12100), + [anon_sym_BSLASHcitep] = ACTIONS(12100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteauthor] = ACTIONS(12100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitetitle] = ACTIONS(12100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteyear] = ACTIONS(12100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitedate] = ACTIONS(12100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteurl] = ACTIONS(12100), + [anon_sym_BSLASHfullcite] = ACTIONS(12100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12100), + [anon_sym_BSLASHcitealt] = ACTIONS(12100), + [anon_sym_BSLASHcitealp] = ACTIONS(12100), + [anon_sym_BSLASHcitetext] = ACTIONS(12100), + [anon_sym_BSLASHparencite] = ACTIONS(12100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHParencite] = ACTIONS(12100), + [anon_sym_BSLASHfootcite] = ACTIONS(12100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12100), + [anon_sym_BSLASHtextcite] = ACTIONS(12100), + [anon_sym_BSLASHTextcite] = ACTIONS(12100), + [anon_sym_BSLASHsmartcite] = ACTIONS(12100), + [anon_sym_BSLASHSmartcite] = ACTIONS(12100), + [anon_sym_BSLASHsupercite] = ACTIONS(12100), + [anon_sym_BSLASHautocite] = ACTIONS(12100), + [anon_sym_BSLASHAutocite] = ACTIONS(12100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHvolcite] = ACTIONS(12100), + [anon_sym_BSLASHVolcite] = ACTIONS(12100), + [anon_sym_BSLASHpvolcite] = ACTIONS(12100), + [anon_sym_BSLASHPvolcite] = ACTIONS(12100), + [anon_sym_BSLASHfvolcite] = ACTIONS(12100), + [anon_sym_BSLASHftvolcite] = ACTIONS(12100), + [anon_sym_BSLASHsvolcite] = ACTIONS(12100), + [anon_sym_BSLASHSvolcite] = ACTIONS(12100), + [anon_sym_BSLASHtvolcite] = ACTIONS(12100), + [anon_sym_BSLASHTvolcite] = ACTIONS(12100), + [anon_sym_BSLASHavolcite] = ACTIONS(12100), + [anon_sym_BSLASHAvolcite] = ACTIONS(12100), + [anon_sym_BSLASHnotecite] = ACTIONS(12100), + [anon_sym_BSLASHpnotecite] = ACTIONS(12100), + [anon_sym_BSLASHPnotecite] = ACTIONS(12100), + [anon_sym_BSLASHfnotecite] = ACTIONS(12100), + [anon_sym_BSLASHusepackage] = ACTIONS(12100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12100), + [anon_sym_BSLASHinclude] = ACTIONS(12100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12100), + [anon_sym_BSLASHinput] = ACTIONS(12100), + [anon_sym_BSLASHsubfile] = ACTIONS(12100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12100), + [anon_sym_BSLASHbibliography] = ACTIONS(12100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12100), + [anon_sym_BSLASHincludesvg] = ACTIONS(12100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12100), + [anon_sym_BSLASHimport] = ACTIONS(12100), + [anon_sym_BSLASHsubimport] = ACTIONS(12100), + [anon_sym_BSLASHinputfrom] = ACTIONS(12100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12100), + [anon_sym_BSLASHincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHlabel] = ACTIONS(12100), + [anon_sym_BSLASHref] = ACTIONS(12100), + [anon_sym_BSLASHvref] = ACTIONS(12100), + [anon_sym_BSLASHVref] = ACTIONS(12100), + [anon_sym_BSLASHautoref] = ACTIONS(12100), + [anon_sym_BSLASHpageref] = ACTIONS(12100), + [anon_sym_BSLASHcref] = ACTIONS(12100), + [anon_sym_BSLASHCref] = ACTIONS(12100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnameCref] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHlabelcref] = ACTIONS(12100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12100), + [anon_sym_BSLASHeqref] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange] = ACTIONS(12100), + [anon_sym_BSLASHCrefrange] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewlabel] = ACTIONS(12100), + [anon_sym_BSLASHnewcommand] = ACTIONS(12100), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12100), + [anon_sym_BSLASHgls] = ACTIONS(12100), + [anon_sym_BSLASHGls] = ACTIONS(12100), + [anon_sym_BSLASHGLS] = ACTIONS(12100), + [anon_sym_BSLASHglspl] = ACTIONS(12100), + [anon_sym_BSLASHGlspl] = ACTIONS(12100), + [anon_sym_BSLASHGLSpl] = ACTIONS(12100), + [anon_sym_BSLASHglsdisp] = ACTIONS(12100), + [anon_sym_BSLASHglslink] = ACTIONS(12100), + [anon_sym_BSLASHglstext] = ACTIONS(12100), + [anon_sym_BSLASHGlstext] = ACTIONS(12100), + [anon_sym_BSLASHGLStext] = ACTIONS(12100), + [anon_sym_BSLASHglsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12100), + [anon_sym_BSLASHglsplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSplural] = ACTIONS(12100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHglsname] = ACTIONS(12100), + [anon_sym_BSLASHGlsname] = ACTIONS(12100), + [anon_sym_BSLASHGLSname] = ACTIONS(12100), + [anon_sym_BSLASHglssymbol] = ACTIONS(12100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12100), + [anon_sym_BSLASHglsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12100), + [anon_sym_BSLASHglsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12100), + [anon_sym_BSLASHglsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12100), + [anon_sym_BSLASHglsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12100), + [anon_sym_BSLASHglsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12100), + [anon_sym_BSLASHnewacronym] = ACTIONS(12100), + [anon_sym_BSLASHacrshort] = ACTIONS(12100), + [anon_sym_BSLASHAcrshort] = ACTIONS(12100), + [anon_sym_BSLASHACRshort] = ACTIONS(12100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12100), + [anon_sym_BSLASHacrlong] = ACTIONS(12100), + [anon_sym_BSLASHAcrlong] = ACTIONS(12100), + [anon_sym_BSLASHACRlong] = ACTIONS(12100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12100), + [anon_sym_BSLASHacrfull] = ACTIONS(12100), + [anon_sym_BSLASHAcrfull] = ACTIONS(12100), + [anon_sym_BSLASHACRfull] = ACTIONS(12100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12100), + [anon_sym_BSLASHacs] = ACTIONS(12100), + [anon_sym_BSLASHAcs] = ACTIONS(12100), + [anon_sym_BSLASHacsp] = ACTIONS(12100), + [anon_sym_BSLASHAcsp] = ACTIONS(12100), + [anon_sym_BSLASHacl] = ACTIONS(12100), + [anon_sym_BSLASHAcl] = ACTIONS(12100), + [anon_sym_BSLASHaclp] = ACTIONS(12100), + [anon_sym_BSLASHAclp] = ACTIONS(12100), + [anon_sym_BSLASHacf] = ACTIONS(12100), + [anon_sym_BSLASHAcf] = ACTIONS(12100), + [anon_sym_BSLASHacfp] = ACTIONS(12100), + [anon_sym_BSLASHAcfp] = ACTIONS(12100), + [anon_sym_BSLASHac] = ACTIONS(12100), + [anon_sym_BSLASHAc] = ACTIONS(12100), + [anon_sym_BSLASHacp] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12100), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12100), + [anon_sym_BSLASHcolor] = ACTIONS(12100), + [anon_sym_BSLASHcolorbox] = ACTIONS(12100), + [anon_sym_BSLASHtextcolor] = ACTIONS(12100), + [anon_sym_BSLASHpagecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12100), + }, + [1395] = { + [sym_brace_group] = STATE(3045), + [sym_generic_command_name] = ACTIONS(12058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12058), + [aux_sym_subparagraph_token1] = ACTIONS(12058), + [anon_sym_BSLASHitem] = ACTIONS(12058), + [anon_sym_LBRACK] = ACTIONS(12056), + [anon_sym_RBRACK] = ACTIONS(12056), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12056), + [anon_sym_LPAREN] = ACTIONS(12056), + [anon_sym_COMMA] = ACTIONS(12056), + [anon_sym_EQ] = ACTIONS(12056), + [sym_word] = ACTIONS(12056), + [sym_param] = ACTIONS(12056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12056), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12056), + [anon_sym_DOLLAR] = ACTIONS(12058), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12056), + [anon_sym_BSLASHbegin] = ACTIONS(12058), + [anon_sym_BSLASHcaption] = ACTIONS(12058), + [anon_sym_BSLASHcite] = ACTIONS(12058), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCite] = ACTIONS(12058), + [anon_sym_BSLASHnocite] = ACTIONS(12058), + [anon_sym_BSLASHcitet] = ACTIONS(12058), + [anon_sym_BSLASHcitep] = ACTIONS(12058), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteauthor] = ACTIONS(12058), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12058), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitetitle] = ACTIONS(12058), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteyear] = ACTIONS(12058), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitedate] = ACTIONS(12058), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteurl] = ACTIONS(12058), + [anon_sym_BSLASHfullcite] = ACTIONS(12058), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12058), + [anon_sym_BSLASHcitealt] = ACTIONS(12058), + [anon_sym_BSLASHcitealp] = ACTIONS(12058), + [anon_sym_BSLASHcitetext] = ACTIONS(12058), + [anon_sym_BSLASHparencite] = ACTIONS(12058), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHParencite] = ACTIONS(12058), + [anon_sym_BSLASHfootcite] = ACTIONS(12058), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12058), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12058), + [anon_sym_BSLASHtextcite] = ACTIONS(12058), + [anon_sym_BSLASHTextcite] = ACTIONS(12058), + [anon_sym_BSLASHsmartcite] = ACTIONS(12058), + [anon_sym_BSLASHSmartcite] = ACTIONS(12058), + [anon_sym_BSLASHsupercite] = ACTIONS(12058), + [anon_sym_BSLASHautocite] = ACTIONS(12058), + [anon_sym_BSLASHAutocite] = ACTIONS(12058), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHvolcite] = ACTIONS(12058), + [anon_sym_BSLASHVolcite] = ACTIONS(12058), + [anon_sym_BSLASHpvolcite] = ACTIONS(12058), + [anon_sym_BSLASHPvolcite] = ACTIONS(12058), + [anon_sym_BSLASHfvolcite] = ACTIONS(12058), + [anon_sym_BSLASHftvolcite] = ACTIONS(12058), + [anon_sym_BSLASHsvolcite] = ACTIONS(12058), + [anon_sym_BSLASHSvolcite] = ACTIONS(12058), + [anon_sym_BSLASHtvolcite] = ACTIONS(12058), + [anon_sym_BSLASHTvolcite] = ACTIONS(12058), + [anon_sym_BSLASHavolcite] = ACTIONS(12058), + [anon_sym_BSLASHAvolcite] = ACTIONS(12058), + [anon_sym_BSLASHnotecite] = ACTIONS(12058), + [anon_sym_BSLASHpnotecite] = ACTIONS(12058), + [anon_sym_BSLASHPnotecite] = ACTIONS(12058), + [anon_sym_BSLASHfnotecite] = ACTIONS(12058), + [anon_sym_BSLASHusepackage] = ACTIONS(12058), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12058), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12058), + [anon_sym_BSLASHinclude] = ACTIONS(12058), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12058), + [anon_sym_BSLASHinput] = ACTIONS(12058), + [anon_sym_BSLASHsubfile] = ACTIONS(12058), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12058), + [anon_sym_BSLASHbibliography] = ACTIONS(12058), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12058), + [anon_sym_BSLASHincludesvg] = ACTIONS(12058), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12058), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12058), + [anon_sym_BSLASHimport] = ACTIONS(12058), + [anon_sym_BSLASHsubimport] = ACTIONS(12058), + [anon_sym_BSLASHinputfrom] = ACTIONS(12058), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12058), + [anon_sym_BSLASHincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHlabel] = ACTIONS(12058), + [anon_sym_BSLASHref] = ACTIONS(12058), + [anon_sym_BSLASHvref] = ACTIONS(12058), + [anon_sym_BSLASHVref] = ACTIONS(12058), + [anon_sym_BSLASHautoref] = ACTIONS(12058), + [anon_sym_BSLASHpageref] = ACTIONS(12058), + [anon_sym_BSLASHcref] = ACTIONS(12058), + [anon_sym_BSLASHCref] = ACTIONS(12058), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnameCref] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHlabelcref] = ACTIONS(12058), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12058), + [anon_sym_BSLASHeqref] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange] = ACTIONS(12058), + [anon_sym_BSLASHCrefrange] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewlabel] = ACTIONS(12058), + [anon_sym_BSLASHnewcommand] = ACTIONS(12058), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12058), + [anon_sym_BSLASHgls] = ACTIONS(12058), + [anon_sym_BSLASHGls] = ACTIONS(12058), + [anon_sym_BSLASHGLS] = ACTIONS(12058), + [anon_sym_BSLASHglspl] = ACTIONS(12058), + [anon_sym_BSLASHGlspl] = ACTIONS(12058), + [anon_sym_BSLASHGLSpl] = ACTIONS(12058), + [anon_sym_BSLASHglsdisp] = ACTIONS(12058), + [anon_sym_BSLASHglslink] = ACTIONS(12058), + [anon_sym_BSLASHglstext] = ACTIONS(12058), + [anon_sym_BSLASHGlstext] = ACTIONS(12058), + [anon_sym_BSLASHGLStext] = ACTIONS(12058), + [anon_sym_BSLASHglsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12058), + [anon_sym_BSLASHglsplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSplural] = ACTIONS(12058), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHglsname] = ACTIONS(12058), + [anon_sym_BSLASHGlsname] = ACTIONS(12058), + [anon_sym_BSLASHGLSname] = ACTIONS(12058), + [anon_sym_BSLASHglssymbol] = ACTIONS(12058), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12058), + [anon_sym_BSLASHglsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12058), + [anon_sym_BSLASHglsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12058), + [anon_sym_BSLASHglsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12058), + [anon_sym_BSLASHglsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12058), + [anon_sym_BSLASHglsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12058), + [anon_sym_BSLASHnewacronym] = ACTIONS(12058), + [anon_sym_BSLASHacrshort] = ACTIONS(12058), + [anon_sym_BSLASHAcrshort] = ACTIONS(12058), + [anon_sym_BSLASHACRshort] = ACTIONS(12058), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12058), + [anon_sym_BSLASHacrlong] = ACTIONS(12058), + [anon_sym_BSLASHAcrlong] = ACTIONS(12058), + [anon_sym_BSLASHACRlong] = ACTIONS(12058), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12058), + [anon_sym_BSLASHacrfull] = ACTIONS(12058), + [anon_sym_BSLASHAcrfull] = ACTIONS(12058), + [anon_sym_BSLASHACRfull] = ACTIONS(12058), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12058), + [anon_sym_BSLASHacs] = ACTIONS(12058), + [anon_sym_BSLASHAcs] = ACTIONS(12058), + [anon_sym_BSLASHacsp] = ACTIONS(12058), + [anon_sym_BSLASHAcsp] = ACTIONS(12058), + [anon_sym_BSLASHacl] = ACTIONS(12058), + [anon_sym_BSLASHAcl] = ACTIONS(12058), + [anon_sym_BSLASHaclp] = ACTIONS(12058), + [anon_sym_BSLASHAclp] = ACTIONS(12058), + [anon_sym_BSLASHacf] = ACTIONS(12058), + [anon_sym_BSLASHAcf] = ACTIONS(12058), + [anon_sym_BSLASHacfp] = ACTIONS(12058), + [anon_sym_BSLASHAcfp] = ACTIONS(12058), + [anon_sym_BSLASHac] = ACTIONS(12058), + [anon_sym_BSLASHAc] = ACTIONS(12058), + [anon_sym_BSLASHacp] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12058), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12058), + [anon_sym_BSLASHcolor] = ACTIONS(12058), + [anon_sym_BSLASHcolorbox] = ACTIONS(12058), + [anon_sym_BSLASHtextcolor] = ACTIONS(12058), + [anon_sym_BSLASHpagecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12058), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12058), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12058), + }, + [1396] = { + [sym_generic_command_name] = ACTIONS(12437), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12437), + [aux_sym_paragraph_token1] = ACTIONS(12437), + [aux_sym_subparagraph_token1] = ACTIONS(12437), + [anon_sym_BSLASHitem] = ACTIONS(12437), + [anon_sym_LBRACK] = ACTIONS(12435), + [anon_sym_RBRACK] = ACTIONS(12435), + [anon_sym_LBRACE] = ACTIONS(12435), + [anon_sym_RBRACE] = ACTIONS(12435), + [anon_sym_LPAREN] = ACTIONS(12435), + [anon_sym_COMMA] = ACTIONS(12435), + [anon_sym_EQ] = ACTIONS(12435), + [sym_word] = ACTIONS(12435), + [sym_param] = ACTIONS(12435), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12435), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12435), + [anon_sym_DOLLAR] = ACTIONS(12437), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12435), + [anon_sym_BSLASHbegin] = ACTIONS(12437), + [anon_sym_BSLASHcaption] = ACTIONS(12437), + [anon_sym_BSLASHcite] = ACTIONS(12437), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCite] = ACTIONS(12437), + [anon_sym_BSLASHnocite] = ACTIONS(12437), + [anon_sym_BSLASHcitet] = ACTIONS(12437), + [anon_sym_BSLASHcitep] = ACTIONS(12437), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteauthor] = ACTIONS(12437), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12437), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitetitle] = ACTIONS(12437), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteyear] = ACTIONS(12437), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitedate] = ACTIONS(12437), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteurl] = ACTIONS(12437), + [anon_sym_BSLASHfullcite] = ACTIONS(12437), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12437), + [anon_sym_BSLASHcitealt] = ACTIONS(12437), + [anon_sym_BSLASHcitealp] = ACTIONS(12437), + [anon_sym_BSLASHcitetext] = ACTIONS(12437), + [anon_sym_BSLASHparencite] = ACTIONS(12437), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHParencite] = ACTIONS(12437), + [anon_sym_BSLASHfootcite] = ACTIONS(12437), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12437), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12437), + [anon_sym_BSLASHtextcite] = ACTIONS(12437), + [anon_sym_BSLASHTextcite] = ACTIONS(12437), + [anon_sym_BSLASHsmartcite] = ACTIONS(12437), + [anon_sym_BSLASHSmartcite] = ACTIONS(12437), + [anon_sym_BSLASHsupercite] = ACTIONS(12437), + [anon_sym_BSLASHautocite] = ACTIONS(12437), + [anon_sym_BSLASHAutocite] = ACTIONS(12437), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHvolcite] = ACTIONS(12437), + [anon_sym_BSLASHVolcite] = ACTIONS(12437), + [anon_sym_BSLASHpvolcite] = ACTIONS(12437), + [anon_sym_BSLASHPvolcite] = ACTIONS(12437), + [anon_sym_BSLASHfvolcite] = ACTIONS(12437), + [anon_sym_BSLASHftvolcite] = ACTIONS(12437), + [anon_sym_BSLASHsvolcite] = ACTIONS(12437), + [anon_sym_BSLASHSvolcite] = ACTIONS(12437), + [anon_sym_BSLASHtvolcite] = ACTIONS(12437), + [anon_sym_BSLASHTvolcite] = ACTIONS(12437), + [anon_sym_BSLASHavolcite] = ACTIONS(12437), + [anon_sym_BSLASHAvolcite] = ACTIONS(12437), + [anon_sym_BSLASHnotecite] = ACTIONS(12437), + [anon_sym_BSLASHpnotecite] = ACTIONS(12437), + [anon_sym_BSLASHPnotecite] = ACTIONS(12437), + [anon_sym_BSLASHfnotecite] = ACTIONS(12437), + [anon_sym_BSLASHusepackage] = ACTIONS(12437), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12437), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12437), + [anon_sym_BSLASHinclude] = ACTIONS(12437), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12437), + [anon_sym_BSLASHinput] = ACTIONS(12437), + [anon_sym_BSLASHsubfile] = ACTIONS(12437), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12437), + [anon_sym_BSLASHbibliography] = ACTIONS(12437), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12437), + [anon_sym_BSLASHincludesvg] = ACTIONS(12437), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12437), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12437), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12437), + [anon_sym_BSLASHimport] = ACTIONS(12437), + [anon_sym_BSLASHsubimport] = ACTIONS(12437), + [anon_sym_BSLASHinputfrom] = ACTIONS(12437), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12437), + [anon_sym_BSLASHincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHlabel] = ACTIONS(12437), + [anon_sym_BSLASHref] = ACTIONS(12437), + [anon_sym_BSLASHvref] = ACTIONS(12437), + [anon_sym_BSLASHVref] = ACTIONS(12437), + [anon_sym_BSLASHautoref] = ACTIONS(12437), + [anon_sym_BSLASHpageref] = ACTIONS(12437), + [anon_sym_BSLASHcref] = ACTIONS(12437), + [anon_sym_BSLASHCref] = ACTIONS(12437), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnameCref] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHlabelcref] = ACTIONS(12437), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12437), + [anon_sym_BSLASHeqref] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange] = ACTIONS(12437), + [anon_sym_BSLASHCrefrange] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewlabel] = ACTIONS(12437), + [anon_sym_BSLASHnewcommand] = ACTIONS(12437), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12437), + [anon_sym_BSLASHgls] = ACTIONS(12437), + [anon_sym_BSLASHGls] = ACTIONS(12437), + [anon_sym_BSLASHGLS] = ACTIONS(12437), + [anon_sym_BSLASHglspl] = ACTIONS(12437), + [anon_sym_BSLASHGlspl] = ACTIONS(12437), + [anon_sym_BSLASHGLSpl] = ACTIONS(12437), + [anon_sym_BSLASHglsdisp] = ACTIONS(12437), + [anon_sym_BSLASHglslink] = ACTIONS(12437), + [anon_sym_BSLASHglstext] = ACTIONS(12437), + [anon_sym_BSLASHGlstext] = ACTIONS(12437), + [anon_sym_BSLASHGLStext] = ACTIONS(12437), + [anon_sym_BSLASHglsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12437), + [anon_sym_BSLASHglsplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSplural] = ACTIONS(12437), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHglsname] = ACTIONS(12437), + [anon_sym_BSLASHGlsname] = ACTIONS(12437), + [anon_sym_BSLASHGLSname] = ACTIONS(12437), + [anon_sym_BSLASHglssymbol] = ACTIONS(12437), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12437), + [anon_sym_BSLASHglsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12437), + [anon_sym_BSLASHglsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12437), + [anon_sym_BSLASHglsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12437), + [anon_sym_BSLASHglsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12437), + [anon_sym_BSLASHglsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12437), + [anon_sym_BSLASHnewacronym] = ACTIONS(12437), + [anon_sym_BSLASHacrshort] = ACTIONS(12437), + [anon_sym_BSLASHAcrshort] = ACTIONS(12437), + [anon_sym_BSLASHACRshort] = ACTIONS(12437), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12437), + [anon_sym_BSLASHacrlong] = ACTIONS(12437), + [anon_sym_BSLASHAcrlong] = ACTIONS(12437), + [anon_sym_BSLASHACRlong] = ACTIONS(12437), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12437), + [anon_sym_BSLASHacrfull] = ACTIONS(12437), + [anon_sym_BSLASHAcrfull] = ACTIONS(12437), + [anon_sym_BSLASHACRfull] = ACTIONS(12437), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12437), + [anon_sym_BSLASHacs] = ACTIONS(12437), + [anon_sym_BSLASHAcs] = ACTIONS(12437), + [anon_sym_BSLASHacsp] = ACTIONS(12437), + [anon_sym_BSLASHAcsp] = ACTIONS(12437), + [anon_sym_BSLASHacl] = ACTIONS(12437), + [anon_sym_BSLASHAcl] = ACTIONS(12437), + [anon_sym_BSLASHaclp] = ACTIONS(12437), + [anon_sym_BSLASHAclp] = ACTIONS(12437), + [anon_sym_BSLASHacf] = ACTIONS(12437), + [anon_sym_BSLASHAcf] = ACTIONS(12437), + [anon_sym_BSLASHacfp] = ACTIONS(12437), + [anon_sym_BSLASHAcfp] = ACTIONS(12437), + [anon_sym_BSLASHac] = ACTIONS(12437), + [anon_sym_BSLASHAc] = ACTIONS(12437), + [anon_sym_BSLASHacp] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12437), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12437), + [anon_sym_BSLASHcolor] = ACTIONS(12437), + [anon_sym_BSLASHcolorbox] = ACTIONS(12437), + [anon_sym_BSLASHtextcolor] = ACTIONS(12437), + [anon_sym_BSLASHpagecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12437), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12437), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12437), + }, + [1397] = { + [sym_generic_command_name] = ACTIONS(12185), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12185), + [aux_sym_paragraph_token1] = ACTIONS(12185), + [aux_sym_subparagraph_token1] = ACTIONS(12185), + [anon_sym_BSLASHitem] = ACTIONS(12185), + [anon_sym_LBRACK] = ACTIONS(12183), + [anon_sym_RBRACK] = ACTIONS(12183), + [anon_sym_LBRACE] = ACTIONS(12183), + [anon_sym_RBRACE] = ACTIONS(12183), + [anon_sym_LPAREN] = ACTIONS(12183), + [anon_sym_COMMA] = ACTIONS(12183), + [anon_sym_EQ] = ACTIONS(12183), + [sym_word] = ACTIONS(12183), + [sym_param] = ACTIONS(12183), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12183), + [anon_sym_DOLLAR] = ACTIONS(12185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12183), + [anon_sym_BSLASHbegin] = ACTIONS(12185), + [anon_sym_BSLASHcaption] = ACTIONS(12185), + [anon_sym_BSLASHcite] = ACTIONS(12185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCite] = ACTIONS(12185), + [anon_sym_BSLASHnocite] = ACTIONS(12185), + [anon_sym_BSLASHcitet] = ACTIONS(12185), + [anon_sym_BSLASHcitep] = ACTIONS(12185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteauthor] = ACTIONS(12185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitetitle] = ACTIONS(12185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteyear] = ACTIONS(12185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitedate] = ACTIONS(12185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteurl] = ACTIONS(12185), + [anon_sym_BSLASHfullcite] = ACTIONS(12185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12185), + [anon_sym_BSLASHcitealt] = ACTIONS(12185), + [anon_sym_BSLASHcitealp] = ACTIONS(12185), + [anon_sym_BSLASHcitetext] = ACTIONS(12185), + [anon_sym_BSLASHparencite] = ACTIONS(12185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHParencite] = ACTIONS(12185), + [anon_sym_BSLASHfootcite] = ACTIONS(12185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12185), + [anon_sym_BSLASHtextcite] = ACTIONS(12185), + [anon_sym_BSLASHTextcite] = ACTIONS(12185), + [anon_sym_BSLASHsmartcite] = ACTIONS(12185), + [anon_sym_BSLASHSmartcite] = ACTIONS(12185), + [anon_sym_BSLASHsupercite] = ACTIONS(12185), + [anon_sym_BSLASHautocite] = ACTIONS(12185), + [anon_sym_BSLASHAutocite] = ACTIONS(12185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHvolcite] = ACTIONS(12185), + [anon_sym_BSLASHVolcite] = ACTIONS(12185), + [anon_sym_BSLASHpvolcite] = ACTIONS(12185), + [anon_sym_BSLASHPvolcite] = ACTIONS(12185), + [anon_sym_BSLASHfvolcite] = ACTIONS(12185), + [anon_sym_BSLASHftvolcite] = ACTIONS(12185), + [anon_sym_BSLASHsvolcite] = ACTIONS(12185), + [anon_sym_BSLASHSvolcite] = ACTIONS(12185), + [anon_sym_BSLASHtvolcite] = ACTIONS(12185), + [anon_sym_BSLASHTvolcite] = ACTIONS(12185), + [anon_sym_BSLASHavolcite] = ACTIONS(12185), + [anon_sym_BSLASHAvolcite] = ACTIONS(12185), + [anon_sym_BSLASHnotecite] = ACTIONS(12185), + [anon_sym_BSLASHpnotecite] = ACTIONS(12185), + [anon_sym_BSLASHPnotecite] = ACTIONS(12185), + [anon_sym_BSLASHfnotecite] = ACTIONS(12185), + [anon_sym_BSLASHusepackage] = ACTIONS(12185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12185), + [anon_sym_BSLASHinclude] = ACTIONS(12185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12185), + [anon_sym_BSLASHinput] = ACTIONS(12185), + [anon_sym_BSLASHsubfile] = ACTIONS(12185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12185), + [anon_sym_BSLASHbibliography] = ACTIONS(12185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12185), + [anon_sym_BSLASHincludesvg] = ACTIONS(12185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12185), + [anon_sym_BSLASHimport] = ACTIONS(12185), + [anon_sym_BSLASHsubimport] = ACTIONS(12185), + [anon_sym_BSLASHinputfrom] = ACTIONS(12185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12185), + [anon_sym_BSLASHincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHlabel] = ACTIONS(12185), + [anon_sym_BSLASHref] = ACTIONS(12185), + [anon_sym_BSLASHvref] = ACTIONS(12185), + [anon_sym_BSLASHVref] = ACTIONS(12185), + [anon_sym_BSLASHautoref] = ACTIONS(12185), + [anon_sym_BSLASHpageref] = ACTIONS(12185), + [anon_sym_BSLASHcref] = ACTIONS(12185), + [anon_sym_BSLASHCref] = ACTIONS(12185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnameCref] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHlabelcref] = ACTIONS(12185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12185), + [anon_sym_BSLASHeqref] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange] = ACTIONS(12185), + [anon_sym_BSLASHCrefrange] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewlabel] = ACTIONS(12185), + [anon_sym_BSLASHnewcommand] = ACTIONS(12185), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12185), + [anon_sym_BSLASHgls] = ACTIONS(12185), + [anon_sym_BSLASHGls] = ACTIONS(12185), + [anon_sym_BSLASHGLS] = ACTIONS(12185), + [anon_sym_BSLASHglspl] = ACTIONS(12185), + [anon_sym_BSLASHGlspl] = ACTIONS(12185), + [anon_sym_BSLASHGLSpl] = ACTIONS(12185), + [anon_sym_BSLASHglsdisp] = ACTIONS(12185), + [anon_sym_BSLASHglslink] = ACTIONS(12185), + [anon_sym_BSLASHglstext] = ACTIONS(12185), + [anon_sym_BSLASHGlstext] = ACTIONS(12185), + [anon_sym_BSLASHGLStext] = ACTIONS(12185), + [anon_sym_BSLASHglsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12185), + [anon_sym_BSLASHglsplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSplural] = ACTIONS(12185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHglsname] = ACTIONS(12185), + [anon_sym_BSLASHGlsname] = ACTIONS(12185), + [anon_sym_BSLASHGLSname] = ACTIONS(12185), + [anon_sym_BSLASHglssymbol] = ACTIONS(12185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12185), + [anon_sym_BSLASHglsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12185), + [anon_sym_BSLASHglsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12185), + [anon_sym_BSLASHglsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12185), + [anon_sym_BSLASHglsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12185), + [anon_sym_BSLASHglsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12185), + [anon_sym_BSLASHnewacronym] = ACTIONS(12185), + [anon_sym_BSLASHacrshort] = ACTIONS(12185), + [anon_sym_BSLASHAcrshort] = ACTIONS(12185), + [anon_sym_BSLASHACRshort] = ACTIONS(12185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12185), + [anon_sym_BSLASHacrlong] = ACTIONS(12185), + [anon_sym_BSLASHAcrlong] = ACTIONS(12185), + [anon_sym_BSLASHACRlong] = ACTIONS(12185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12185), + [anon_sym_BSLASHacrfull] = ACTIONS(12185), + [anon_sym_BSLASHAcrfull] = ACTIONS(12185), + [anon_sym_BSLASHACRfull] = ACTIONS(12185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12185), + [anon_sym_BSLASHacs] = ACTIONS(12185), + [anon_sym_BSLASHAcs] = ACTIONS(12185), + [anon_sym_BSLASHacsp] = ACTIONS(12185), + [anon_sym_BSLASHAcsp] = ACTIONS(12185), + [anon_sym_BSLASHacl] = ACTIONS(12185), + [anon_sym_BSLASHAcl] = ACTIONS(12185), + [anon_sym_BSLASHaclp] = ACTIONS(12185), + [anon_sym_BSLASHAclp] = ACTIONS(12185), + [anon_sym_BSLASHacf] = ACTIONS(12185), + [anon_sym_BSLASHAcf] = ACTIONS(12185), + [anon_sym_BSLASHacfp] = ACTIONS(12185), + [anon_sym_BSLASHAcfp] = ACTIONS(12185), + [anon_sym_BSLASHac] = ACTIONS(12185), + [anon_sym_BSLASHAc] = ACTIONS(12185), + [anon_sym_BSLASHacp] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12185), + [anon_sym_BSLASHcolor] = ACTIONS(12185), + [anon_sym_BSLASHcolorbox] = ACTIONS(12185), + [anon_sym_BSLASHtextcolor] = ACTIONS(12185), + [anon_sym_BSLASHpagecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12185), + }, + [1398] = { + [sym_generic_command_name] = ACTIONS(12181), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12181), + [aux_sym_paragraph_token1] = ACTIONS(12181), + [aux_sym_subparagraph_token1] = ACTIONS(12181), + [anon_sym_BSLASHitem] = ACTIONS(12181), + [anon_sym_LBRACK] = ACTIONS(12179), + [anon_sym_RBRACK] = ACTIONS(12179), + [anon_sym_LBRACE] = ACTIONS(12179), + [anon_sym_RBRACE] = ACTIONS(12179), + [anon_sym_LPAREN] = ACTIONS(12179), + [anon_sym_COMMA] = ACTIONS(12179), + [anon_sym_EQ] = ACTIONS(12179), + [sym_word] = ACTIONS(12179), + [sym_param] = ACTIONS(12179), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12179), + [anon_sym_DOLLAR] = ACTIONS(12181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12179), + [anon_sym_BSLASHbegin] = ACTIONS(12181), + [anon_sym_BSLASHcaption] = ACTIONS(12181), + [anon_sym_BSLASHcite] = ACTIONS(12181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCite] = ACTIONS(12181), + [anon_sym_BSLASHnocite] = ACTIONS(12181), + [anon_sym_BSLASHcitet] = ACTIONS(12181), + [anon_sym_BSLASHcitep] = ACTIONS(12181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteauthor] = ACTIONS(12181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitetitle] = ACTIONS(12181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteyear] = ACTIONS(12181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitedate] = ACTIONS(12181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteurl] = ACTIONS(12181), + [anon_sym_BSLASHfullcite] = ACTIONS(12181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12181), + [anon_sym_BSLASHcitealt] = ACTIONS(12181), + [anon_sym_BSLASHcitealp] = ACTIONS(12181), + [anon_sym_BSLASHcitetext] = ACTIONS(12181), + [anon_sym_BSLASHparencite] = ACTIONS(12181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHParencite] = ACTIONS(12181), + [anon_sym_BSLASHfootcite] = ACTIONS(12181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12181), + [anon_sym_BSLASHtextcite] = ACTIONS(12181), + [anon_sym_BSLASHTextcite] = ACTIONS(12181), + [anon_sym_BSLASHsmartcite] = ACTIONS(12181), + [anon_sym_BSLASHSmartcite] = ACTIONS(12181), + [anon_sym_BSLASHsupercite] = ACTIONS(12181), + [anon_sym_BSLASHautocite] = ACTIONS(12181), + [anon_sym_BSLASHAutocite] = ACTIONS(12181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHvolcite] = ACTIONS(12181), + [anon_sym_BSLASHVolcite] = ACTIONS(12181), + [anon_sym_BSLASHpvolcite] = ACTIONS(12181), + [anon_sym_BSLASHPvolcite] = ACTIONS(12181), + [anon_sym_BSLASHfvolcite] = ACTIONS(12181), + [anon_sym_BSLASHftvolcite] = ACTIONS(12181), + [anon_sym_BSLASHsvolcite] = ACTIONS(12181), + [anon_sym_BSLASHSvolcite] = ACTIONS(12181), + [anon_sym_BSLASHtvolcite] = ACTIONS(12181), + [anon_sym_BSLASHTvolcite] = ACTIONS(12181), + [anon_sym_BSLASHavolcite] = ACTIONS(12181), + [anon_sym_BSLASHAvolcite] = ACTIONS(12181), + [anon_sym_BSLASHnotecite] = ACTIONS(12181), + [anon_sym_BSLASHpnotecite] = ACTIONS(12181), + [anon_sym_BSLASHPnotecite] = ACTIONS(12181), + [anon_sym_BSLASHfnotecite] = ACTIONS(12181), + [anon_sym_BSLASHusepackage] = ACTIONS(12181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12181), + [anon_sym_BSLASHinclude] = ACTIONS(12181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12181), + [anon_sym_BSLASHinput] = ACTIONS(12181), + [anon_sym_BSLASHsubfile] = ACTIONS(12181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12181), + [anon_sym_BSLASHbibliography] = ACTIONS(12181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12181), + [anon_sym_BSLASHincludesvg] = ACTIONS(12181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12181), + [anon_sym_BSLASHimport] = ACTIONS(12181), + [anon_sym_BSLASHsubimport] = ACTIONS(12181), + [anon_sym_BSLASHinputfrom] = ACTIONS(12181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12181), + [anon_sym_BSLASHincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHlabel] = ACTIONS(12181), + [anon_sym_BSLASHref] = ACTIONS(12181), + [anon_sym_BSLASHvref] = ACTIONS(12181), + [anon_sym_BSLASHVref] = ACTIONS(12181), + [anon_sym_BSLASHautoref] = ACTIONS(12181), + [anon_sym_BSLASHpageref] = ACTIONS(12181), + [anon_sym_BSLASHcref] = ACTIONS(12181), + [anon_sym_BSLASHCref] = ACTIONS(12181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnameCref] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHlabelcref] = ACTIONS(12181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12181), + [anon_sym_BSLASHeqref] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange] = ACTIONS(12181), + [anon_sym_BSLASHCrefrange] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewlabel] = ACTIONS(12181), + [anon_sym_BSLASHnewcommand] = ACTIONS(12181), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12181), + [anon_sym_BSLASHgls] = ACTIONS(12181), + [anon_sym_BSLASHGls] = ACTIONS(12181), + [anon_sym_BSLASHGLS] = ACTIONS(12181), + [anon_sym_BSLASHglspl] = ACTIONS(12181), + [anon_sym_BSLASHGlspl] = ACTIONS(12181), + [anon_sym_BSLASHGLSpl] = ACTIONS(12181), + [anon_sym_BSLASHglsdisp] = ACTIONS(12181), + [anon_sym_BSLASHglslink] = ACTIONS(12181), + [anon_sym_BSLASHglstext] = ACTIONS(12181), + [anon_sym_BSLASHGlstext] = ACTIONS(12181), + [anon_sym_BSLASHGLStext] = ACTIONS(12181), + [anon_sym_BSLASHglsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12181), + [anon_sym_BSLASHglsplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSplural] = ACTIONS(12181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHglsname] = ACTIONS(12181), + [anon_sym_BSLASHGlsname] = ACTIONS(12181), + [anon_sym_BSLASHGLSname] = ACTIONS(12181), + [anon_sym_BSLASHglssymbol] = ACTIONS(12181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12181), + [anon_sym_BSLASHglsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12181), + [anon_sym_BSLASHglsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12181), + [anon_sym_BSLASHglsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12181), + [anon_sym_BSLASHglsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12181), + [anon_sym_BSLASHglsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12181), + [anon_sym_BSLASHnewacronym] = ACTIONS(12181), + [anon_sym_BSLASHacrshort] = ACTIONS(12181), + [anon_sym_BSLASHAcrshort] = ACTIONS(12181), + [anon_sym_BSLASHACRshort] = ACTIONS(12181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12181), + [anon_sym_BSLASHacrlong] = ACTIONS(12181), + [anon_sym_BSLASHAcrlong] = ACTIONS(12181), + [anon_sym_BSLASHACRlong] = ACTIONS(12181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12181), + [anon_sym_BSLASHacrfull] = ACTIONS(12181), + [anon_sym_BSLASHAcrfull] = ACTIONS(12181), + [anon_sym_BSLASHACRfull] = ACTIONS(12181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12181), + [anon_sym_BSLASHacs] = ACTIONS(12181), + [anon_sym_BSLASHAcs] = ACTIONS(12181), + [anon_sym_BSLASHacsp] = ACTIONS(12181), + [anon_sym_BSLASHAcsp] = ACTIONS(12181), + [anon_sym_BSLASHacl] = ACTIONS(12181), + [anon_sym_BSLASHAcl] = ACTIONS(12181), + [anon_sym_BSLASHaclp] = ACTIONS(12181), + [anon_sym_BSLASHAclp] = ACTIONS(12181), + [anon_sym_BSLASHacf] = ACTIONS(12181), + [anon_sym_BSLASHAcf] = ACTIONS(12181), + [anon_sym_BSLASHacfp] = ACTIONS(12181), + [anon_sym_BSLASHAcfp] = ACTIONS(12181), + [anon_sym_BSLASHac] = ACTIONS(12181), + [anon_sym_BSLASHAc] = ACTIONS(12181), + [anon_sym_BSLASHacp] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12181), + [anon_sym_BSLASHcolor] = ACTIONS(12181), + [anon_sym_BSLASHcolorbox] = ACTIONS(12181), + [anon_sym_BSLASHtextcolor] = ACTIONS(12181), + [anon_sym_BSLASHpagecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12181), + }, + [1399] = { + [sym_generic_command_name] = ACTIONS(12120), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12120), + [aux_sym_paragraph_token1] = ACTIONS(12120), + [aux_sym_subparagraph_token1] = ACTIONS(12120), + [anon_sym_BSLASHitem] = ACTIONS(12120), + [anon_sym_LBRACK] = ACTIONS(12118), + [anon_sym_RBRACK] = ACTIONS(12118), + [anon_sym_LBRACE] = ACTIONS(12118), + [anon_sym_RBRACE] = ACTIONS(12118), + [anon_sym_LPAREN] = ACTIONS(12118), + [anon_sym_COMMA] = ACTIONS(12118), + [anon_sym_EQ] = ACTIONS(12118), + [sym_word] = ACTIONS(12118), + [sym_param] = ACTIONS(12118), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12118), + [anon_sym_DOLLAR] = ACTIONS(12120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12118), + [anon_sym_BSLASHbegin] = ACTIONS(12120), + [anon_sym_BSLASHcaption] = ACTIONS(12120), + [anon_sym_BSLASHcite] = ACTIONS(12120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCite] = ACTIONS(12120), + [anon_sym_BSLASHnocite] = ACTIONS(12120), + [anon_sym_BSLASHcitet] = ACTIONS(12120), + [anon_sym_BSLASHcitep] = ACTIONS(12120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteauthor] = ACTIONS(12120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitetitle] = ACTIONS(12120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteyear] = ACTIONS(12120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitedate] = ACTIONS(12120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteurl] = ACTIONS(12120), + [anon_sym_BSLASHfullcite] = ACTIONS(12120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12120), + [anon_sym_BSLASHcitealt] = ACTIONS(12120), + [anon_sym_BSLASHcitealp] = ACTIONS(12120), + [anon_sym_BSLASHcitetext] = ACTIONS(12120), + [anon_sym_BSLASHparencite] = ACTIONS(12120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHParencite] = ACTIONS(12120), + [anon_sym_BSLASHfootcite] = ACTIONS(12120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12120), + [anon_sym_BSLASHtextcite] = ACTIONS(12120), + [anon_sym_BSLASHTextcite] = ACTIONS(12120), + [anon_sym_BSLASHsmartcite] = ACTIONS(12120), + [anon_sym_BSLASHSmartcite] = ACTIONS(12120), + [anon_sym_BSLASHsupercite] = ACTIONS(12120), + [anon_sym_BSLASHautocite] = ACTIONS(12120), + [anon_sym_BSLASHAutocite] = ACTIONS(12120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHvolcite] = ACTIONS(12120), + [anon_sym_BSLASHVolcite] = ACTIONS(12120), + [anon_sym_BSLASHpvolcite] = ACTIONS(12120), + [anon_sym_BSLASHPvolcite] = ACTIONS(12120), + [anon_sym_BSLASHfvolcite] = ACTIONS(12120), + [anon_sym_BSLASHftvolcite] = ACTIONS(12120), + [anon_sym_BSLASHsvolcite] = ACTIONS(12120), + [anon_sym_BSLASHSvolcite] = ACTIONS(12120), + [anon_sym_BSLASHtvolcite] = ACTIONS(12120), + [anon_sym_BSLASHTvolcite] = ACTIONS(12120), + [anon_sym_BSLASHavolcite] = ACTIONS(12120), + [anon_sym_BSLASHAvolcite] = ACTIONS(12120), + [anon_sym_BSLASHnotecite] = ACTIONS(12120), + [anon_sym_BSLASHpnotecite] = ACTIONS(12120), + [anon_sym_BSLASHPnotecite] = ACTIONS(12120), + [anon_sym_BSLASHfnotecite] = ACTIONS(12120), + [anon_sym_BSLASHusepackage] = ACTIONS(12120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12120), + [anon_sym_BSLASHinclude] = ACTIONS(12120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12120), + [anon_sym_BSLASHinput] = ACTIONS(12120), + [anon_sym_BSLASHsubfile] = ACTIONS(12120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12120), + [anon_sym_BSLASHbibliography] = ACTIONS(12120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12120), + [anon_sym_BSLASHincludesvg] = ACTIONS(12120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12120), + [anon_sym_BSLASHimport] = ACTIONS(12120), + [anon_sym_BSLASHsubimport] = ACTIONS(12120), + [anon_sym_BSLASHinputfrom] = ACTIONS(12120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12120), + [anon_sym_BSLASHincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHlabel] = ACTIONS(12120), + [anon_sym_BSLASHref] = ACTIONS(12120), + [anon_sym_BSLASHvref] = ACTIONS(12120), + [anon_sym_BSLASHVref] = ACTIONS(12120), + [anon_sym_BSLASHautoref] = ACTIONS(12120), + [anon_sym_BSLASHpageref] = ACTIONS(12120), + [anon_sym_BSLASHcref] = ACTIONS(12120), + [anon_sym_BSLASHCref] = ACTIONS(12120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnameCref] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHlabelcref] = ACTIONS(12120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12120), + [anon_sym_BSLASHeqref] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange] = ACTIONS(12120), + [anon_sym_BSLASHCrefrange] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewlabel] = ACTIONS(12120), + [anon_sym_BSLASHnewcommand] = ACTIONS(12120), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12120), + [anon_sym_BSLASHgls] = ACTIONS(12120), + [anon_sym_BSLASHGls] = ACTIONS(12120), + [anon_sym_BSLASHGLS] = ACTIONS(12120), + [anon_sym_BSLASHglspl] = ACTIONS(12120), + [anon_sym_BSLASHGlspl] = ACTIONS(12120), + [anon_sym_BSLASHGLSpl] = ACTIONS(12120), + [anon_sym_BSLASHglsdisp] = ACTIONS(12120), + [anon_sym_BSLASHglslink] = ACTIONS(12120), + [anon_sym_BSLASHglstext] = ACTIONS(12120), + [anon_sym_BSLASHGlstext] = ACTIONS(12120), + [anon_sym_BSLASHGLStext] = ACTIONS(12120), + [anon_sym_BSLASHglsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12120), + [anon_sym_BSLASHglsplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSplural] = ACTIONS(12120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHglsname] = ACTIONS(12120), + [anon_sym_BSLASHGlsname] = ACTIONS(12120), + [anon_sym_BSLASHGLSname] = ACTIONS(12120), + [anon_sym_BSLASHglssymbol] = ACTIONS(12120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12120), + [anon_sym_BSLASHglsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12120), + [anon_sym_BSLASHglsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12120), + [anon_sym_BSLASHglsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12120), + [anon_sym_BSLASHglsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12120), + [anon_sym_BSLASHglsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12120), + [anon_sym_BSLASHnewacronym] = ACTIONS(12120), + [anon_sym_BSLASHacrshort] = ACTIONS(12120), + [anon_sym_BSLASHAcrshort] = ACTIONS(12120), + [anon_sym_BSLASHACRshort] = ACTIONS(12120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12120), + [anon_sym_BSLASHacrlong] = ACTIONS(12120), + [anon_sym_BSLASHAcrlong] = ACTIONS(12120), + [anon_sym_BSLASHACRlong] = ACTIONS(12120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12120), + [anon_sym_BSLASHacrfull] = ACTIONS(12120), + [anon_sym_BSLASHAcrfull] = ACTIONS(12120), + [anon_sym_BSLASHACRfull] = ACTIONS(12120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12120), + [anon_sym_BSLASHacs] = ACTIONS(12120), + [anon_sym_BSLASHAcs] = ACTIONS(12120), + [anon_sym_BSLASHacsp] = ACTIONS(12120), + [anon_sym_BSLASHAcsp] = ACTIONS(12120), + [anon_sym_BSLASHacl] = ACTIONS(12120), + [anon_sym_BSLASHAcl] = ACTIONS(12120), + [anon_sym_BSLASHaclp] = ACTIONS(12120), + [anon_sym_BSLASHAclp] = ACTIONS(12120), + [anon_sym_BSLASHacf] = ACTIONS(12120), + [anon_sym_BSLASHAcf] = ACTIONS(12120), + [anon_sym_BSLASHacfp] = ACTIONS(12120), + [anon_sym_BSLASHAcfp] = ACTIONS(12120), + [anon_sym_BSLASHac] = ACTIONS(12120), + [anon_sym_BSLASHAc] = ACTIONS(12120), + [anon_sym_BSLASHacp] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12120), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12120), + [anon_sym_BSLASHcolor] = ACTIONS(12120), + [anon_sym_BSLASHcolorbox] = ACTIONS(12120), + [anon_sym_BSLASHtextcolor] = ACTIONS(12120), + [anon_sym_BSLASHpagecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12120), + }, + [1400] = { + [sym_generic_command_name] = ACTIONS(12116), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12116), + [aux_sym_paragraph_token1] = ACTIONS(12116), + [aux_sym_subparagraph_token1] = ACTIONS(12116), + [anon_sym_BSLASHitem] = ACTIONS(12116), + [anon_sym_LBRACK] = ACTIONS(12114), + [anon_sym_RBRACK] = ACTIONS(12114), + [anon_sym_LBRACE] = ACTIONS(12114), + [anon_sym_RBRACE] = ACTIONS(12114), + [anon_sym_LPAREN] = ACTIONS(12114), + [anon_sym_COMMA] = ACTIONS(12114), + [anon_sym_EQ] = ACTIONS(12114), + [sym_word] = ACTIONS(12114), + [sym_param] = ACTIONS(12114), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12114), + [anon_sym_DOLLAR] = ACTIONS(12116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12114), + [anon_sym_BSLASHbegin] = ACTIONS(12116), + [anon_sym_BSLASHcaption] = ACTIONS(12116), + [anon_sym_BSLASHcite] = ACTIONS(12116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCite] = ACTIONS(12116), + [anon_sym_BSLASHnocite] = ACTIONS(12116), + [anon_sym_BSLASHcitet] = ACTIONS(12116), + [anon_sym_BSLASHcitep] = ACTIONS(12116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteauthor] = ACTIONS(12116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitetitle] = ACTIONS(12116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteyear] = ACTIONS(12116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitedate] = ACTIONS(12116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteurl] = ACTIONS(12116), + [anon_sym_BSLASHfullcite] = ACTIONS(12116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12116), + [anon_sym_BSLASHcitealt] = ACTIONS(12116), + [anon_sym_BSLASHcitealp] = ACTIONS(12116), + [anon_sym_BSLASHcitetext] = ACTIONS(12116), + [anon_sym_BSLASHparencite] = ACTIONS(12116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHParencite] = ACTIONS(12116), + [anon_sym_BSLASHfootcite] = ACTIONS(12116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12116), + [anon_sym_BSLASHtextcite] = ACTIONS(12116), + [anon_sym_BSLASHTextcite] = ACTIONS(12116), + [anon_sym_BSLASHsmartcite] = ACTIONS(12116), + [anon_sym_BSLASHSmartcite] = ACTIONS(12116), + [anon_sym_BSLASHsupercite] = ACTIONS(12116), + [anon_sym_BSLASHautocite] = ACTIONS(12116), + [anon_sym_BSLASHAutocite] = ACTIONS(12116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHvolcite] = ACTIONS(12116), + [anon_sym_BSLASHVolcite] = ACTIONS(12116), + [anon_sym_BSLASHpvolcite] = ACTIONS(12116), + [anon_sym_BSLASHPvolcite] = ACTIONS(12116), + [anon_sym_BSLASHfvolcite] = ACTIONS(12116), + [anon_sym_BSLASHftvolcite] = ACTIONS(12116), + [anon_sym_BSLASHsvolcite] = ACTIONS(12116), + [anon_sym_BSLASHSvolcite] = ACTIONS(12116), + [anon_sym_BSLASHtvolcite] = ACTIONS(12116), + [anon_sym_BSLASHTvolcite] = ACTIONS(12116), + [anon_sym_BSLASHavolcite] = ACTIONS(12116), + [anon_sym_BSLASHAvolcite] = ACTIONS(12116), + [anon_sym_BSLASHnotecite] = ACTIONS(12116), + [anon_sym_BSLASHpnotecite] = ACTIONS(12116), + [anon_sym_BSLASHPnotecite] = ACTIONS(12116), + [anon_sym_BSLASHfnotecite] = ACTIONS(12116), + [anon_sym_BSLASHusepackage] = ACTIONS(12116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12116), + [anon_sym_BSLASHinclude] = ACTIONS(12116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12116), + [anon_sym_BSLASHinput] = ACTIONS(12116), + [anon_sym_BSLASHsubfile] = ACTIONS(12116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12116), + [anon_sym_BSLASHbibliography] = ACTIONS(12116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12116), + [anon_sym_BSLASHincludesvg] = ACTIONS(12116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12116), + [anon_sym_BSLASHimport] = ACTIONS(12116), + [anon_sym_BSLASHsubimport] = ACTIONS(12116), + [anon_sym_BSLASHinputfrom] = ACTIONS(12116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12116), + [anon_sym_BSLASHincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHlabel] = ACTIONS(12116), + [anon_sym_BSLASHref] = ACTIONS(12116), + [anon_sym_BSLASHvref] = ACTIONS(12116), + [anon_sym_BSLASHVref] = ACTIONS(12116), + [anon_sym_BSLASHautoref] = ACTIONS(12116), + [anon_sym_BSLASHpageref] = ACTIONS(12116), + [anon_sym_BSLASHcref] = ACTIONS(12116), + [anon_sym_BSLASHCref] = ACTIONS(12116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnameCref] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHlabelcref] = ACTIONS(12116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12116), + [anon_sym_BSLASHeqref] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange] = ACTIONS(12116), + [anon_sym_BSLASHCrefrange] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewlabel] = ACTIONS(12116), + [anon_sym_BSLASHnewcommand] = ACTIONS(12116), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12116), + [anon_sym_BSLASHgls] = ACTIONS(12116), + [anon_sym_BSLASHGls] = ACTIONS(12116), + [anon_sym_BSLASHGLS] = ACTIONS(12116), + [anon_sym_BSLASHglspl] = ACTIONS(12116), + [anon_sym_BSLASHGlspl] = ACTIONS(12116), + [anon_sym_BSLASHGLSpl] = ACTIONS(12116), + [anon_sym_BSLASHglsdisp] = ACTIONS(12116), + [anon_sym_BSLASHglslink] = ACTIONS(12116), + [anon_sym_BSLASHglstext] = ACTIONS(12116), + [anon_sym_BSLASHGlstext] = ACTIONS(12116), + [anon_sym_BSLASHGLStext] = ACTIONS(12116), + [anon_sym_BSLASHglsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12116), + [anon_sym_BSLASHglsplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSplural] = ACTIONS(12116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHglsname] = ACTIONS(12116), + [anon_sym_BSLASHGlsname] = ACTIONS(12116), + [anon_sym_BSLASHGLSname] = ACTIONS(12116), + [anon_sym_BSLASHglssymbol] = ACTIONS(12116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12116), + [anon_sym_BSLASHglsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12116), + [anon_sym_BSLASHglsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12116), + [anon_sym_BSLASHglsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12116), + [anon_sym_BSLASHglsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12116), + [anon_sym_BSLASHglsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12116), + [anon_sym_BSLASHnewacronym] = ACTIONS(12116), + [anon_sym_BSLASHacrshort] = ACTIONS(12116), + [anon_sym_BSLASHAcrshort] = ACTIONS(12116), + [anon_sym_BSLASHACRshort] = ACTIONS(12116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12116), + [anon_sym_BSLASHacrlong] = ACTIONS(12116), + [anon_sym_BSLASHAcrlong] = ACTIONS(12116), + [anon_sym_BSLASHACRlong] = ACTIONS(12116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12116), + [anon_sym_BSLASHacrfull] = ACTIONS(12116), + [anon_sym_BSLASHAcrfull] = ACTIONS(12116), + [anon_sym_BSLASHACRfull] = ACTIONS(12116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12116), + [anon_sym_BSLASHacs] = ACTIONS(12116), + [anon_sym_BSLASHAcs] = ACTIONS(12116), + [anon_sym_BSLASHacsp] = ACTIONS(12116), + [anon_sym_BSLASHAcsp] = ACTIONS(12116), + [anon_sym_BSLASHacl] = ACTIONS(12116), + [anon_sym_BSLASHAcl] = ACTIONS(12116), + [anon_sym_BSLASHaclp] = ACTIONS(12116), + [anon_sym_BSLASHAclp] = ACTIONS(12116), + [anon_sym_BSLASHacf] = ACTIONS(12116), + [anon_sym_BSLASHAcf] = ACTIONS(12116), + [anon_sym_BSLASHacfp] = ACTIONS(12116), + [anon_sym_BSLASHAcfp] = ACTIONS(12116), + [anon_sym_BSLASHac] = ACTIONS(12116), + [anon_sym_BSLASHAc] = ACTIONS(12116), + [anon_sym_BSLASHacp] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12116), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12116), + [anon_sym_BSLASHcolor] = ACTIONS(12116), + [anon_sym_BSLASHcolorbox] = ACTIONS(12116), + [anon_sym_BSLASHtextcolor] = ACTIONS(12116), + [anon_sym_BSLASHpagecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12116), + }, + [1401] = { + [sym_generic_command_name] = ACTIONS(12193), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12193), + [aux_sym_paragraph_token1] = ACTIONS(12193), + [aux_sym_subparagraph_token1] = ACTIONS(12193), + [anon_sym_BSLASHitem] = ACTIONS(12193), + [anon_sym_LBRACK] = ACTIONS(12191), + [anon_sym_RBRACK] = ACTIONS(12191), + [anon_sym_LBRACE] = ACTIONS(12191), + [anon_sym_RBRACE] = ACTIONS(12191), + [anon_sym_LPAREN] = ACTIONS(12191), + [anon_sym_COMMA] = ACTIONS(12191), + [anon_sym_EQ] = ACTIONS(12191), + [sym_word] = ACTIONS(12191), + [sym_param] = ACTIONS(12191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12191), + [anon_sym_DOLLAR] = ACTIONS(12193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12191), + [anon_sym_BSLASHbegin] = ACTIONS(12193), + [anon_sym_BSLASHcaption] = ACTIONS(12193), + [anon_sym_BSLASHcite] = ACTIONS(12193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCite] = ACTIONS(12193), + [anon_sym_BSLASHnocite] = ACTIONS(12193), + [anon_sym_BSLASHcitet] = ACTIONS(12193), + [anon_sym_BSLASHcitep] = ACTIONS(12193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteauthor] = ACTIONS(12193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitetitle] = ACTIONS(12193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteyear] = ACTIONS(12193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitedate] = ACTIONS(12193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteurl] = ACTIONS(12193), + [anon_sym_BSLASHfullcite] = ACTIONS(12193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12193), + [anon_sym_BSLASHcitealt] = ACTIONS(12193), + [anon_sym_BSLASHcitealp] = ACTIONS(12193), + [anon_sym_BSLASHcitetext] = ACTIONS(12193), + [anon_sym_BSLASHparencite] = ACTIONS(12193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHParencite] = ACTIONS(12193), + [anon_sym_BSLASHfootcite] = ACTIONS(12193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12193), + [anon_sym_BSLASHtextcite] = ACTIONS(12193), + [anon_sym_BSLASHTextcite] = ACTIONS(12193), + [anon_sym_BSLASHsmartcite] = ACTIONS(12193), + [anon_sym_BSLASHSmartcite] = ACTIONS(12193), + [anon_sym_BSLASHsupercite] = ACTIONS(12193), + [anon_sym_BSLASHautocite] = ACTIONS(12193), + [anon_sym_BSLASHAutocite] = ACTIONS(12193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHvolcite] = ACTIONS(12193), + [anon_sym_BSLASHVolcite] = ACTIONS(12193), + [anon_sym_BSLASHpvolcite] = ACTIONS(12193), + [anon_sym_BSLASHPvolcite] = ACTIONS(12193), + [anon_sym_BSLASHfvolcite] = ACTIONS(12193), + [anon_sym_BSLASHftvolcite] = ACTIONS(12193), + [anon_sym_BSLASHsvolcite] = ACTIONS(12193), + [anon_sym_BSLASHSvolcite] = ACTIONS(12193), + [anon_sym_BSLASHtvolcite] = ACTIONS(12193), + [anon_sym_BSLASHTvolcite] = ACTIONS(12193), + [anon_sym_BSLASHavolcite] = ACTIONS(12193), + [anon_sym_BSLASHAvolcite] = ACTIONS(12193), + [anon_sym_BSLASHnotecite] = ACTIONS(12193), + [anon_sym_BSLASHpnotecite] = ACTIONS(12193), + [anon_sym_BSLASHPnotecite] = ACTIONS(12193), + [anon_sym_BSLASHfnotecite] = ACTIONS(12193), + [anon_sym_BSLASHusepackage] = ACTIONS(12193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12193), + [anon_sym_BSLASHinclude] = ACTIONS(12193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12193), + [anon_sym_BSLASHinput] = ACTIONS(12193), + [anon_sym_BSLASHsubfile] = ACTIONS(12193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12193), + [anon_sym_BSLASHbibliography] = ACTIONS(12193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12193), + [anon_sym_BSLASHincludesvg] = ACTIONS(12193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12193), + [anon_sym_BSLASHimport] = ACTIONS(12193), + [anon_sym_BSLASHsubimport] = ACTIONS(12193), + [anon_sym_BSLASHinputfrom] = ACTIONS(12193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12193), + [anon_sym_BSLASHincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHlabel] = ACTIONS(12193), + [anon_sym_BSLASHref] = ACTIONS(12193), + [anon_sym_BSLASHvref] = ACTIONS(12193), + [anon_sym_BSLASHVref] = ACTIONS(12193), + [anon_sym_BSLASHautoref] = ACTIONS(12193), + [anon_sym_BSLASHpageref] = ACTIONS(12193), + [anon_sym_BSLASHcref] = ACTIONS(12193), + [anon_sym_BSLASHCref] = ACTIONS(12193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnameCref] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHlabelcref] = ACTIONS(12193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12193), + [anon_sym_BSLASHeqref] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange] = ACTIONS(12193), + [anon_sym_BSLASHCrefrange] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewlabel] = ACTIONS(12193), + [anon_sym_BSLASHnewcommand] = ACTIONS(12193), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12193), + [anon_sym_BSLASHgls] = ACTIONS(12193), + [anon_sym_BSLASHGls] = ACTIONS(12193), + [anon_sym_BSLASHGLS] = ACTIONS(12193), + [anon_sym_BSLASHglspl] = ACTIONS(12193), + [anon_sym_BSLASHGlspl] = ACTIONS(12193), + [anon_sym_BSLASHGLSpl] = ACTIONS(12193), + [anon_sym_BSLASHglsdisp] = ACTIONS(12193), + [anon_sym_BSLASHglslink] = ACTIONS(12193), + [anon_sym_BSLASHglstext] = ACTIONS(12193), + [anon_sym_BSLASHGlstext] = ACTIONS(12193), + [anon_sym_BSLASHGLStext] = ACTIONS(12193), + [anon_sym_BSLASHglsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12193), + [anon_sym_BSLASHglsplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSplural] = ACTIONS(12193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHglsname] = ACTIONS(12193), + [anon_sym_BSLASHGlsname] = ACTIONS(12193), + [anon_sym_BSLASHGLSname] = ACTIONS(12193), + [anon_sym_BSLASHglssymbol] = ACTIONS(12193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12193), + [anon_sym_BSLASHglsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12193), + [anon_sym_BSLASHglsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12193), + [anon_sym_BSLASHglsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12193), + [anon_sym_BSLASHglsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12193), + [anon_sym_BSLASHglsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12193), + [anon_sym_BSLASHnewacronym] = ACTIONS(12193), + [anon_sym_BSLASHacrshort] = ACTIONS(12193), + [anon_sym_BSLASHAcrshort] = ACTIONS(12193), + [anon_sym_BSLASHACRshort] = ACTIONS(12193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12193), + [anon_sym_BSLASHacrlong] = ACTIONS(12193), + [anon_sym_BSLASHAcrlong] = ACTIONS(12193), + [anon_sym_BSLASHACRlong] = ACTIONS(12193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12193), + [anon_sym_BSLASHacrfull] = ACTIONS(12193), + [anon_sym_BSLASHAcrfull] = ACTIONS(12193), + [anon_sym_BSLASHACRfull] = ACTIONS(12193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12193), + [anon_sym_BSLASHacs] = ACTIONS(12193), + [anon_sym_BSLASHAcs] = ACTIONS(12193), + [anon_sym_BSLASHacsp] = ACTIONS(12193), + [anon_sym_BSLASHAcsp] = ACTIONS(12193), + [anon_sym_BSLASHacl] = ACTIONS(12193), + [anon_sym_BSLASHAcl] = ACTIONS(12193), + [anon_sym_BSLASHaclp] = ACTIONS(12193), + [anon_sym_BSLASHAclp] = ACTIONS(12193), + [anon_sym_BSLASHacf] = ACTIONS(12193), + [anon_sym_BSLASHAcf] = ACTIONS(12193), + [anon_sym_BSLASHacfp] = ACTIONS(12193), + [anon_sym_BSLASHAcfp] = ACTIONS(12193), + [anon_sym_BSLASHac] = ACTIONS(12193), + [anon_sym_BSLASHAc] = ACTIONS(12193), + [anon_sym_BSLASHacp] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12193), + [anon_sym_BSLASHcolor] = ACTIONS(12193), + [anon_sym_BSLASHcolorbox] = ACTIONS(12193), + [anon_sym_BSLASHtextcolor] = ACTIONS(12193), + [anon_sym_BSLASHpagecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12193), + }, + [1402] = { + [sym_generic_command_name] = ACTIONS(12201), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12201), + [aux_sym_paragraph_token1] = ACTIONS(12201), + [aux_sym_subparagraph_token1] = ACTIONS(12201), + [anon_sym_BSLASHitem] = ACTIONS(12201), + [anon_sym_LBRACK] = ACTIONS(12199), + [anon_sym_RBRACK] = ACTIONS(12199), + [anon_sym_LBRACE] = ACTIONS(12199), + [anon_sym_RBRACE] = ACTIONS(12199), + [anon_sym_LPAREN] = ACTIONS(12199), + [anon_sym_COMMA] = ACTIONS(12199), + [anon_sym_EQ] = ACTIONS(12199), + [sym_word] = ACTIONS(12199), + [sym_param] = ACTIONS(12199), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12199), + [anon_sym_DOLLAR] = ACTIONS(12201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12199), + [anon_sym_BSLASHbegin] = ACTIONS(12201), + [anon_sym_BSLASHcaption] = ACTIONS(12201), + [anon_sym_BSLASHcite] = ACTIONS(12201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCite] = ACTIONS(12201), + [anon_sym_BSLASHnocite] = ACTIONS(12201), + [anon_sym_BSLASHcitet] = ACTIONS(12201), + [anon_sym_BSLASHcitep] = ACTIONS(12201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteauthor] = ACTIONS(12201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitetitle] = ACTIONS(12201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteyear] = ACTIONS(12201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitedate] = ACTIONS(12201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteurl] = ACTIONS(12201), + [anon_sym_BSLASHfullcite] = ACTIONS(12201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12201), + [anon_sym_BSLASHcitealt] = ACTIONS(12201), + [anon_sym_BSLASHcitealp] = ACTIONS(12201), + [anon_sym_BSLASHcitetext] = ACTIONS(12201), + [anon_sym_BSLASHparencite] = ACTIONS(12201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHParencite] = ACTIONS(12201), + [anon_sym_BSLASHfootcite] = ACTIONS(12201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12201), + [anon_sym_BSLASHtextcite] = ACTIONS(12201), + [anon_sym_BSLASHTextcite] = ACTIONS(12201), + [anon_sym_BSLASHsmartcite] = ACTIONS(12201), + [anon_sym_BSLASHSmartcite] = ACTIONS(12201), + [anon_sym_BSLASHsupercite] = ACTIONS(12201), + [anon_sym_BSLASHautocite] = ACTIONS(12201), + [anon_sym_BSLASHAutocite] = ACTIONS(12201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHvolcite] = ACTIONS(12201), + [anon_sym_BSLASHVolcite] = ACTIONS(12201), + [anon_sym_BSLASHpvolcite] = ACTIONS(12201), + [anon_sym_BSLASHPvolcite] = ACTIONS(12201), + [anon_sym_BSLASHfvolcite] = ACTIONS(12201), + [anon_sym_BSLASHftvolcite] = ACTIONS(12201), + [anon_sym_BSLASHsvolcite] = ACTIONS(12201), + [anon_sym_BSLASHSvolcite] = ACTIONS(12201), + [anon_sym_BSLASHtvolcite] = ACTIONS(12201), + [anon_sym_BSLASHTvolcite] = ACTIONS(12201), + [anon_sym_BSLASHavolcite] = ACTIONS(12201), + [anon_sym_BSLASHAvolcite] = ACTIONS(12201), + [anon_sym_BSLASHnotecite] = ACTIONS(12201), + [anon_sym_BSLASHpnotecite] = ACTIONS(12201), + [anon_sym_BSLASHPnotecite] = ACTIONS(12201), + [anon_sym_BSLASHfnotecite] = ACTIONS(12201), + [anon_sym_BSLASHusepackage] = ACTIONS(12201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12201), + [anon_sym_BSLASHinclude] = ACTIONS(12201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12201), + [anon_sym_BSLASHinput] = ACTIONS(12201), + [anon_sym_BSLASHsubfile] = ACTIONS(12201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12201), + [anon_sym_BSLASHbibliography] = ACTIONS(12201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12201), + [anon_sym_BSLASHincludesvg] = ACTIONS(12201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12201), + [anon_sym_BSLASHimport] = ACTIONS(12201), + [anon_sym_BSLASHsubimport] = ACTIONS(12201), + [anon_sym_BSLASHinputfrom] = ACTIONS(12201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12201), + [anon_sym_BSLASHincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHlabel] = ACTIONS(12201), + [anon_sym_BSLASHref] = ACTIONS(12201), + [anon_sym_BSLASHvref] = ACTIONS(12201), + [anon_sym_BSLASHVref] = ACTIONS(12201), + [anon_sym_BSLASHautoref] = ACTIONS(12201), + [anon_sym_BSLASHpageref] = ACTIONS(12201), + [anon_sym_BSLASHcref] = ACTIONS(12201), + [anon_sym_BSLASHCref] = ACTIONS(12201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnameCref] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHlabelcref] = ACTIONS(12201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12201), + [anon_sym_BSLASHeqref] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange] = ACTIONS(12201), + [anon_sym_BSLASHCrefrange] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewlabel] = ACTIONS(12201), + [anon_sym_BSLASHnewcommand] = ACTIONS(12201), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12201), + [anon_sym_BSLASHgls] = ACTIONS(12201), + [anon_sym_BSLASHGls] = ACTIONS(12201), + [anon_sym_BSLASHGLS] = ACTIONS(12201), + [anon_sym_BSLASHglspl] = ACTIONS(12201), + [anon_sym_BSLASHGlspl] = ACTIONS(12201), + [anon_sym_BSLASHGLSpl] = ACTIONS(12201), + [anon_sym_BSLASHglsdisp] = ACTIONS(12201), + [anon_sym_BSLASHglslink] = ACTIONS(12201), + [anon_sym_BSLASHglstext] = ACTIONS(12201), + [anon_sym_BSLASHGlstext] = ACTIONS(12201), + [anon_sym_BSLASHGLStext] = ACTIONS(12201), + [anon_sym_BSLASHglsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12201), + [anon_sym_BSLASHglsplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSplural] = ACTIONS(12201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHglsname] = ACTIONS(12201), + [anon_sym_BSLASHGlsname] = ACTIONS(12201), + [anon_sym_BSLASHGLSname] = ACTIONS(12201), + [anon_sym_BSLASHglssymbol] = ACTIONS(12201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12201), + [anon_sym_BSLASHglsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12201), + [anon_sym_BSLASHglsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12201), + [anon_sym_BSLASHglsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12201), + [anon_sym_BSLASHglsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12201), + [anon_sym_BSLASHglsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12201), + [anon_sym_BSLASHnewacronym] = ACTIONS(12201), + [anon_sym_BSLASHacrshort] = ACTIONS(12201), + [anon_sym_BSLASHAcrshort] = ACTIONS(12201), + [anon_sym_BSLASHACRshort] = ACTIONS(12201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12201), + [anon_sym_BSLASHacrlong] = ACTIONS(12201), + [anon_sym_BSLASHAcrlong] = ACTIONS(12201), + [anon_sym_BSLASHACRlong] = ACTIONS(12201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12201), + [anon_sym_BSLASHacrfull] = ACTIONS(12201), + [anon_sym_BSLASHAcrfull] = ACTIONS(12201), + [anon_sym_BSLASHACRfull] = ACTIONS(12201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12201), + [anon_sym_BSLASHacs] = ACTIONS(12201), + [anon_sym_BSLASHAcs] = ACTIONS(12201), + [anon_sym_BSLASHacsp] = ACTIONS(12201), + [anon_sym_BSLASHAcsp] = ACTIONS(12201), + [anon_sym_BSLASHacl] = ACTIONS(12201), + [anon_sym_BSLASHAcl] = ACTIONS(12201), + [anon_sym_BSLASHaclp] = ACTIONS(12201), + [anon_sym_BSLASHAclp] = ACTIONS(12201), + [anon_sym_BSLASHacf] = ACTIONS(12201), + [anon_sym_BSLASHAcf] = ACTIONS(12201), + [anon_sym_BSLASHacfp] = ACTIONS(12201), + [anon_sym_BSLASHAcfp] = ACTIONS(12201), + [anon_sym_BSLASHac] = ACTIONS(12201), + [anon_sym_BSLASHAc] = ACTIONS(12201), + [anon_sym_BSLASHacp] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12201), + [anon_sym_BSLASHcolor] = ACTIONS(12201), + [anon_sym_BSLASHcolorbox] = ACTIONS(12201), + [anon_sym_BSLASHtextcolor] = ACTIONS(12201), + [anon_sym_BSLASHpagecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12201), + }, + [1403] = { + [sym_generic_command_name] = ACTIONS(12205), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12205), + [aux_sym_paragraph_token1] = ACTIONS(12205), + [aux_sym_subparagraph_token1] = ACTIONS(12205), + [anon_sym_BSLASHitem] = ACTIONS(12205), + [anon_sym_LBRACK] = ACTIONS(12203), + [anon_sym_RBRACK] = ACTIONS(12203), + [anon_sym_LBRACE] = ACTIONS(12203), + [anon_sym_RBRACE] = ACTIONS(12203), + [anon_sym_LPAREN] = ACTIONS(12203), + [anon_sym_COMMA] = ACTIONS(12203), + [anon_sym_EQ] = ACTIONS(12203), + [sym_word] = ACTIONS(12203), + [sym_param] = ACTIONS(12203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12203), + [anon_sym_DOLLAR] = ACTIONS(12205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12203), + [anon_sym_BSLASHbegin] = ACTIONS(12205), + [anon_sym_BSLASHcaption] = ACTIONS(12205), + [anon_sym_BSLASHcite] = ACTIONS(12205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCite] = ACTIONS(12205), + [anon_sym_BSLASHnocite] = ACTIONS(12205), + [anon_sym_BSLASHcitet] = ACTIONS(12205), + [anon_sym_BSLASHcitep] = ACTIONS(12205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteauthor] = ACTIONS(12205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitetitle] = ACTIONS(12205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteyear] = ACTIONS(12205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitedate] = ACTIONS(12205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteurl] = ACTIONS(12205), + [anon_sym_BSLASHfullcite] = ACTIONS(12205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12205), + [anon_sym_BSLASHcitealt] = ACTIONS(12205), + [anon_sym_BSLASHcitealp] = ACTIONS(12205), + [anon_sym_BSLASHcitetext] = ACTIONS(12205), + [anon_sym_BSLASHparencite] = ACTIONS(12205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHParencite] = ACTIONS(12205), + [anon_sym_BSLASHfootcite] = ACTIONS(12205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12205), + [anon_sym_BSLASHtextcite] = ACTIONS(12205), + [anon_sym_BSLASHTextcite] = ACTIONS(12205), + [anon_sym_BSLASHsmartcite] = ACTIONS(12205), + [anon_sym_BSLASHSmartcite] = ACTIONS(12205), + [anon_sym_BSLASHsupercite] = ACTIONS(12205), + [anon_sym_BSLASHautocite] = ACTIONS(12205), + [anon_sym_BSLASHAutocite] = ACTIONS(12205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHvolcite] = ACTIONS(12205), + [anon_sym_BSLASHVolcite] = ACTIONS(12205), + [anon_sym_BSLASHpvolcite] = ACTIONS(12205), + [anon_sym_BSLASHPvolcite] = ACTIONS(12205), + [anon_sym_BSLASHfvolcite] = ACTIONS(12205), + [anon_sym_BSLASHftvolcite] = ACTIONS(12205), + [anon_sym_BSLASHsvolcite] = ACTIONS(12205), + [anon_sym_BSLASHSvolcite] = ACTIONS(12205), + [anon_sym_BSLASHtvolcite] = ACTIONS(12205), + [anon_sym_BSLASHTvolcite] = ACTIONS(12205), + [anon_sym_BSLASHavolcite] = ACTIONS(12205), + [anon_sym_BSLASHAvolcite] = ACTIONS(12205), + [anon_sym_BSLASHnotecite] = ACTIONS(12205), + [anon_sym_BSLASHpnotecite] = ACTIONS(12205), + [anon_sym_BSLASHPnotecite] = ACTIONS(12205), + [anon_sym_BSLASHfnotecite] = ACTIONS(12205), + [anon_sym_BSLASHusepackage] = ACTIONS(12205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12205), + [anon_sym_BSLASHinclude] = ACTIONS(12205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12205), + [anon_sym_BSLASHinput] = ACTIONS(12205), + [anon_sym_BSLASHsubfile] = ACTIONS(12205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12205), + [anon_sym_BSLASHbibliography] = ACTIONS(12205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12205), + [anon_sym_BSLASHincludesvg] = ACTIONS(12205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12205), + [anon_sym_BSLASHimport] = ACTIONS(12205), + [anon_sym_BSLASHsubimport] = ACTIONS(12205), + [anon_sym_BSLASHinputfrom] = ACTIONS(12205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12205), + [anon_sym_BSLASHincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHlabel] = ACTIONS(12205), + [anon_sym_BSLASHref] = ACTIONS(12205), + [anon_sym_BSLASHvref] = ACTIONS(12205), + [anon_sym_BSLASHVref] = ACTIONS(12205), + [anon_sym_BSLASHautoref] = ACTIONS(12205), + [anon_sym_BSLASHpageref] = ACTIONS(12205), + [anon_sym_BSLASHcref] = ACTIONS(12205), + [anon_sym_BSLASHCref] = ACTIONS(12205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnameCref] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHlabelcref] = ACTIONS(12205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12205), + [anon_sym_BSLASHeqref] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange] = ACTIONS(12205), + [anon_sym_BSLASHCrefrange] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewlabel] = ACTIONS(12205), + [anon_sym_BSLASHnewcommand] = ACTIONS(12205), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12205), + [anon_sym_BSLASHgls] = ACTIONS(12205), + [anon_sym_BSLASHGls] = ACTIONS(12205), + [anon_sym_BSLASHGLS] = ACTIONS(12205), + [anon_sym_BSLASHglspl] = ACTIONS(12205), + [anon_sym_BSLASHGlspl] = ACTIONS(12205), + [anon_sym_BSLASHGLSpl] = ACTIONS(12205), + [anon_sym_BSLASHglsdisp] = ACTIONS(12205), + [anon_sym_BSLASHglslink] = ACTIONS(12205), + [anon_sym_BSLASHglstext] = ACTIONS(12205), + [anon_sym_BSLASHGlstext] = ACTIONS(12205), + [anon_sym_BSLASHGLStext] = ACTIONS(12205), + [anon_sym_BSLASHglsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12205), + [anon_sym_BSLASHglsplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSplural] = ACTIONS(12205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHglsname] = ACTIONS(12205), + [anon_sym_BSLASHGlsname] = ACTIONS(12205), + [anon_sym_BSLASHGLSname] = ACTIONS(12205), + [anon_sym_BSLASHglssymbol] = ACTIONS(12205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12205), + [anon_sym_BSLASHglsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12205), + [anon_sym_BSLASHglsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12205), + [anon_sym_BSLASHglsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12205), + [anon_sym_BSLASHglsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12205), + [anon_sym_BSLASHglsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12205), + [anon_sym_BSLASHnewacronym] = ACTIONS(12205), + [anon_sym_BSLASHacrshort] = ACTIONS(12205), + [anon_sym_BSLASHAcrshort] = ACTIONS(12205), + [anon_sym_BSLASHACRshort] = ACTIONS(12205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12205), + [anon_sym_BSLASHacrlong] = ACTIONS(12205), + [anon_sym_BSLASHAcrlong] = ACTIONS(12205), + [anon_sym_BSLASHACRlong] = ACTIONS(12205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12205), + [anon_sym_BSLASHacrfull] = ACTIONS(12205), + [anon_sym_BSLASHAcrfull] = ACTIONS(12205), + [anon_sym_BSLASHACRfull] = ACTIONS(12205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12205), + [anon_sym_BSLASHacs] = ACTIONS(12205), + [anon_sym_BSLASHAcs] = ACTIONS(12205), + [anon_sym_BSLASHacsp] = ACTIONS(12205), + [anon_sym_BSLASHAcsp] = ACTIONS(12205), + [anon_sym_BSLASHacl] = ACTIONS(12205), + [anon_sym_BSLASHAcl] = ACTIONS(12205), + [anon_sym_BSLASHaclp] = ACTIONS(12205), + [anon_sym_BSLASHAclp] = ACTIONS(12205), + [anon_sym_BSLASHacf] = ACTIONS(12205), + [anon_sym_BSLASHAcf] = ACTIONS(12205), + [anon_sym_BSLASHacfp] = ACTIONS(12205), + [anon_sym_BSLASHAcfp] = ACTIONS(12205), + [anon_sym_BSLASHac] = ACTIONS(12205), + [anon_sym_BSLASHAc] = ACTIONS(12205), + [anon_sym_BSLASHacp] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12205), + [anon_sym_BSLASHcolor] = ACTIONS(12205), + [anon_sym_BSLASHcolorbox] = ACTIONS(12205), + [anon_sym_BSLASHtextcolor] = ACTIONS(12205), + [anon_sym_BSLASHpagecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12205), + }, + [1404] = { + [sym_generic_command_name] = ACTIONS(12213), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12213), + [aux_sym_paragraph_token1] = ACTIONS(12213), + [aux_sym_subparagraph_token1] = ACTIONS(12213), + [anon_sym_BSLASHitem] = ACTIONS(12213), + [anon_sym_LBRACK] = ACTIONS(12211), + [anon_sym_RBRACK] = ACTIONS(12211), + [anon_sym_LBRACE] = ACTIONS(12211), + [anon_sym_RBRACE] = ACTIONS(12211), + [anon_sym_LPAREN] = ACTIONS(12211), + [anon_sym_COMMA] = ACTIONS(12211), + [anon_sym_EQ] = ACTIONS(12211), + [sym_word] = ACTIONS(12211), + [sym_param] = ACTIONS(12211), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12211), + [anon_sym_DOLLAR] = ACTIONS(12213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12211), + [anon_sym_BSLASHbegin] = ACTIONS(12213), + [anon_sym_BSLASHcaption] = ACTIONS(12213), + [anon_sym_BSLASHcite] = ACTIONS(12213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCite] = ACTIONS(12213), + [anon_sym_BSLASHnocite] = ACTIONS(12213), + [anon_sym_BSLASHcitet] = ACTIONS(12213), + [anon_sym_BSLASHcitep] = ACTIONS(12213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteauthor] = ACTIONS(12213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitetitle] = ACTIONS(12213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteyear] = ACTIONS(12213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitedate] = ACTIONS(12213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteurl] = ACTIONS(12213), + [anon_sym_BSLASHfullcite] = ACTIONS(12213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12213), + [anon_sym_BSLASHcitealt] = ACTIONS(12213), + [anon_sym_BSLASHcitealp] = ACTIONS(12213), + [anon_sym_BSLASHcitetext] = ACTIONS(12213), + [anon_sym_BSLASHparencite] = ACTIONS(12213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHParencite] = ACTIONS(12213), + [anon_sym_BSLASHfootcite] = ACTIONS(12213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12213), + [anon_sym_BSLASHtextcite] = ACTIONS(12213), + [anon_sym_BSLASHTextcite] = ACTIONS(12213), + [anon_sym_BSLASHsmartcite] = ACTIONS(12213), + [anon_sym_BSLASHSmartcite] = ACTIONS(12213), + [anon_sym_BSLASHsupercite] = ACTIONS(12213), + [anon_sym_BSLASHautocite] = ACTIONS(12213), + [anon_sym_BSLASHAutocite] = ACTIONS(12213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHvolcite] = ACTIONS(12213), + [anon_sym_BSLASHVolcite] = ACTIONS(12213), + [anon_sym_BSLASHpvolcite] = ACTIONS(12213), + [anon_sym_BSLASHPvolcite] = ACTIONS(12213), + [anon_sym_BSLASHfvolcite] = ACTIONS(12213), + [anon_sym_BSLASHftvolcite] = ACTIONS(12213), + [anon_sym_BSLASHsvolcite] = ACTIONS(12213), + [anon_sym_BSLASHSvolcite] = ACTIONS(12213), + [anon_sym_BSLASHtvolcite] = ACTIONS(12213), + [anon_sym_BSLASHTvolcite] = ACTIONS(12213), + [anon_sym_BSLASHavolcite] = ACTIONS(12213), + [anon_sym_BSLASHAvolcite] = ACTIONS(12213), + [anon_sym_BSLASHnotecite] = ACTIONS(12213), + [anon_sym_BSLASHpnotecite] = ACTIONS(12213), + [anon_sym_BSLASHPnotecite] = ACTIONS(12213), + [anon_sym_BSLASHfnotecite] = ACTIONS(12213), + [anon_sym_BSLASHusepackage] = ACTIONS(12213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12213), + [anon_sym_BSLASHinclude] = ACTIONS(12213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12213), + [anon_sym_BSLASHinput] = ACTIONS(12213), + [anon_sym_BSLASHsubfile] = ACTIONS(12213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12213), + [anon_sym_BSLASHbibliography] = ACTIONS(12213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12213), + [anon_sym_BSLASHincludesvg] = ACTIONS(12213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12213), + [anon_sym_BSLASHimport] = ACTIONS(12213), + [anon_sym_BSLASHsubimport] = ACTIONS(12213), + [anon_sym_BSLASHinputfrom] = ACTIONS(12213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12213), + [anon_sym_BSLASHincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHlabel] = ACTIONS(12213), + [anon_sym_BSLASHref] = ACTIONS(12213), + [anon_sym_BSLASHvref] = ACTIONS(12213), + [anon_sym_BSLASHVref] = ACTIONS(12213), + [anon_sym_BSLASHautoref] = ACTIONS(12213), + [anon_sym_BSLASHpageref] = ACTIONS(12213), + [anon_sym_BSLASHcref] = ACTIONS(12213), + [anon_sym_BSLASHCref] = ACTIONS(12213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnameCref] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHlabelcref] = ACTIONS(12213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12213), + [anon_sym_BSLASHeqref] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange] = ACTIONS(12213), + [anon_sym_BSLASHCrefrange] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewlabel] = ACTIONS(12213), + [anon_sym_BSLASHnewcommand] = ACTIONS(12213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12213), + [anon_sym_BSLASHgls] = ACTIONS(12213), + [anon_sym_BSLASHGls] = ACTIONS(12213), + [anon_sym_BSLASHGLS] = ACTIONS(12213), + [anon_sym_BSLASHglspl] = ACTIONS(12213), + [anon_sym_BSLASHGlspl] = ACTIONS(12213), + [anon_sym_BSLASHGLSpl] = ACTIONS(12213), + [anon_sym_BSLASHglsdisp] = ACTIONS(12213), + [anon_sym_BSLASHglslink] = ACTIONS(12213), + [anon_sym_BSLASHglstext] = ACTIONS(12213), + [anon_sym_BSLASHGlstext] = ACTIONS(12213), + [anon_sym_BSLASHGLStext] = ACTIONS(12213), + [anon_sym_BSLASHglsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12213), + [anon_sym_BSLASHglsplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSplural] = ACTIONS(12213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHglsname] = ACTIONS(12213), + [anon_sym_BSLASHGlsname] = ACTIONS(12213), + [anon_sym_BSLASHGLSname] = ACTIONS(12213), + [anon_sym_BSLASHglssymbol] = ACTIONS(12213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12213), + [anon_sym_BSLASHglsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12213), + [anon_sym_BSLASHglsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12213), + [anon_sym_BSLASHglsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12213), + [anon_sym_BSLASHglsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12213), + [anon_sym_BSLASHglsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12213), + [anon_sym_BSLASHnewacronym] = ACTIONS(12213), + [anon_sym_BSLASHacrshort] = ACTIONS(12213), + [anon_sym_BSLASHAcrshort] = ACTIONS(12213), + [anon_sym_BSLASHACRshort] = ACTIONS(12213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12213), + [anon_sym_BSLASHacrlong] = ACTIONS(12213), + [anon_sym_BSLASHAcrlong] = ACTIONS(12213), + [anon_sym_BSLASHACRlong] = ACTIONS(12213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12213), + [anon_sym_BSLASHacrfull] = ACTIONS(12213), + [anon_sym_BSLASHAcrfull] = ACTIONS(12213), + [anon_sym_BSLASHACRfull] = ACTIONS(12213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12213), + [anon_sym_BSLASHacs] = ACTIONS(12213), + [anon_sym_BSLASHAcs] = ACTIONS(12213), + [anon_sym_BSLASHacsp] = ACTIONS(12213), + [anon_sym_BSLASHAcsp] = ACTIONS(12213), + [anon_sym_BSLASHacl] = ACTIONS(12213), + [anon_sym_BSLASHAcl] = ACTIONS(12213), + [anon_sym_BSLASHaclp] = ACTIONS(12213), + [anon_sym_BSLASHAclp] = ACTIONS(12213), + [anon_sym_BSLASHacf] = ACTIONS(12213), + [anon_sym_BSLASHAcf] = ACTIONS(12213), + [anon_sym_BSLASHacfp] = ACTIONS(12213), + [anon_sym_BSLASHAcfp] = ACTIONS(12213), + [anon_sym_BSLASHac] = ACTIONS(12213), + [anon_sym_BSLASHAc] = ACTIONS(12213), + [anon_sym_BSLASHacp] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12213), + [anon_sym_BSLASHcolor] = ACTIONS(12213), + [anon_sym_BSLASHcolorbox] = ACTIONS(12213), + [anon_sym_BSLASHtextcolor] = ACTIONS(12213), + [anon_sym_BSLASHpagecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12213), + }, + [1405] = { + [sym_generic_command_name] = ACTIONS(12217), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12217), + [aux_sym_paragraph_token1] = ACTIONS(12217), + [aux_sym_subparagraph_token1] = ACTIONS(12217), + [anon_sym_BSLASHitem] = ACTIONS(12217), + [anon_sym_LBRACK] = ACTIONS(12215), + [anon_sym_RBRACK] = ACTIONS(12215), + [anon_sym_LBRACE] = ACTIONS(12215), + [anon_sym_RBRACE] = ACTIONS(12215), + [anon_sym_LPAREN] = ACTIONS(12215), + [anon_sym_COMMA] = ACTIONS(12215), + [anon_sym_EQ] = ACTIONS(12215), + [sym_word] = ACTIONS(12215), + [sym_param] = ACTIONS(12215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12215), + [anon_sym_DOLLAR] = ACTIONS(12217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12215), + [anon_sym_BSLASHbegin] = ACTIONS(12217), + [anon_sym_BSLASHcaption] = ACTIONS(12217), + [anon_sym_BSLASHcite] = ACTIONS(12217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCite] = ACTIONS(12217), + [anon_sym_BSLASHnocite] = ACTIONS(12217), + [anon_sym_BSLASHcitet] = ACTIONS(12217), + [anon_sym_BSLASHcitep] = ACTIONS(12217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteauthor] = ACTIONS(12217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitetitle] = ACTIONS(12217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteyear] = ACTIONS(12217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitedate] = ACTIONS(12217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteurl] = ACTIONS(12217), + [anon_sym_BSLASHfullcite] = ACTIONS(12217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12217), + [anon_sym_BSLASHcitealt] = ACTIONS(12217), + [anon_sym_BSLASHcitealp] = ACTIONS(12217), + [anon_sym_BSLASHcitetext] = ACTIONS(12217), + [anon_sym_BSLASHparencite] = ACTIONS(12217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHParencite] = ACTIONS(12217), + [anon_sym_BSLASHfootcite] = ACTIONS(12217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12217), + [anon_sym_BSLASHtextcite] = ACTIONS(12217), + [anon_sym_BSLASHTextcite] = ACTIONS(12217), + [anon_sym_BSLASHsmartcite] = ACTIONS(12217), + [anon_sym_BSLASHSmartcite] = ACTIONS(12217), + [anon_sym_BSLASHsupercite] = ACTIONS(12217), + [anon_sym_BSLASHautocite] = ACTIONS(12217), + [anon_sym_BSLASHAutocite] = ACTIONS(12217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHvolcite] = ACTIONS(12217), + [anon_sym_BSLASHVolcite] = ACTIONS(12217), + [anon_sym_BSLASHpvolcite] = ACTIONS(12217), + [anon_sym_BSLASHPvolcite] = ACTIONS(12217), + [anon_sym_BSLASHfvolcite] = ACTIONS(12217), + [anon_sym_BSLASHftvolcite] = ACTIONS(12217), + [anon_sym_BSLASHsvolcite] = ACTIONS(12217), + [anon_sym_BSLASHSvolcite] = ACTIONS(12217), + [anon_sym_BSLASHtvolcite] = ACTIONS(12217), + [anon_sym_BSLASHTvolcite] = ACTIONS(12217), + [anon_sym_BSLASHavolcite] = ACTIONS(12217), + [anon_sym_BSLASHAvolcite] = ACTIONS(12217), + [anon_sym_BSLASHnotecite] = ACTIONS(12217), + [anon_sym_BSLASHpnotecite] = ACTIONS(12217), + [anon_sym_BSLASHPnotecite] = ACTIONS(12217), + [anon_sym_BSLASHfnotecite] = ACTIONS(12217), + [anon_sym_BSLASHusepackage] = ACTIONS(12217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12217), + [anon_sym_BSLASHinclude] = ACTIONS(12217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12217), + [anon_sym_BSLASHinput] = ACTIONS(12217), + [anon_sym_BSLASHsubfile] = ACTIONS(12217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12217), + [anon_sym_BSLASHbibliography] = ACTIONS(12217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12217), + [anon_sym_BSLASHincludesvg] = ACTIONS(12217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12217), + [anon_sym_BSLASHimport] = ACTIONS(12217), + [anon_sym_BSLASHsubimport] = ACTIONS(12217), + [anon_sym_BSLASHinputfrom] = ACTIONS(12217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12217), + [anon_sym_BSLASHincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHlabel] = ACTIONS(12217), + [anon_sym_BSLASHref] = ACTIONS(12217), + [anon_sym_BSLASHvref] = ACTIONS(12217), + [anon_sym_BSLASHVref] = ACTIONS(12217), + [anon_sym_BSLASHautoref] = ACTIONS(12217), + [anon_sym_BSLASHpageref] = ACTIONS(12217), + [anon_sym_BSLASHcref] = ACTIONS(12217), + [anon_sym_BSLASHCref] = ACTIONS(12217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnameCref] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHlabelcref] = ACTIONS(12217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12217), + [anon_sym_BSLASHeqref] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange] = ACTIONS(12217), + [anon_sym_BSLASHCrefrange] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewlabel] = ACTIONS(12217), + [anon_sym_BSLASHnewcommand] = ACTIONS(12217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12217), + [anon_sym_BSLASHgls] = ACTIONS(12217), + [anon_sym_BSLASHGls] = ACTIONS(12217), + [anon_sym_BSLASHGLS] = ACTIONS(12217), + [anon_sym_BSLASHglspl] = ACTIONS(12217), + [anon_sym_BSLASHGlspl] = ACTIONS(12217), + [anon_sym_BSLASHGLSpl] = ACTIONS(12217), + [anon_sym_BSLASHglsdisp] = ACTIONS(12217), + [anon_sym_BSLASHglslink] = ACTIONS(12217), + [anon_sym_BSLASHglstext] = ACTIONS(12217), + [anon_sym_BSLASHGlstext] = ACTIONS(12217), + [anon_sym_BSLASHGLStext] = ACTIONS(12217), + [anon_sym_BSLASHglsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12217), + [anon_sym_BSLASHglsplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSplural] = ACTIONS(12217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHglsname] = ACTIONS(12217), + [anon_sym_BSLASHGlsname] = ACTIONS(12217), + [anon_sym_BSLASHGLSname] = ACTIONS(12217), + [anon_sym_BSLASHglssymbol] = ACTIONS(12217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12217), + [anon_sym_BSLASHglsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12217), + [anon_sym_BSLASHglsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12217), + [anon_sym_BSLASHglsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12217), + [anon_sym_BSLASHglsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12217), + [anon_sym_BSLASHglsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12217), + [anon_sym_BSLASHnewacronym] = ACTIONS(12217), + [anon_sym_BSLASHacrshort] = ACTIONS(12217), + [anon_sym_BSLASHAcrshort] = ACTIONS(12217), + [anon_sym_BSLASHACRshort] = ACTIONS(12217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12217), + [anon_sym_BSLASHacrlong] = ACTIONS(12217), + [anon_sym_BSLASHAcrlong] = ACTIONS(12217), + [anon_sym_BSLASHACRlong] = ACTIONS(12217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12217), + [anon_sym_BSLASHacrfull] = ACTIONS(12217), + [anon_sym_BSLASHAcrfull] = ACTIONS(12217), + [anon_sym_BSLASHACRfull] = ACTIONS(12217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12217), + [anon_sym_BSLASHacs] = ACTIONS(12217), + [anon_sym_BSLASHAcs] = ACTIONS(12217), + [anon_sym_BSLASHacsp] = ACTIONS(12217), + [anon_sym_BSLASHAcsp] = ACTIONS(12217), + [anon_sym_BSLASHacl] = ACTIONS(12217), + [anon_sym_BSLASHAcl] = ACTIONS(12217), + [anon_sym_BSLASHaclp] = ACTIONS(12217), + [anon_sym_BSLASHAclp] = ACTIONS(12217), + [anon_sym_BSLASHacf] = ACTIONS(12217), + [anon_sym_BSLASHAcf] = ACTIONS(12217), + [anon_sym_BSLASHacfp] = ACTIONS(12217), + [anon_sym_BSLASHAcfp] = ACTIONS(12217), + [anon_sym_BSLASHac] = ACTIONS(12217), + [anon_sym_BSLASHAc] = ACTIONS(12217), + [anon_sym_BSLASHacp] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12217), + [anon_sym_BSLASHcolor] = ACTIONS(12217), + [anon_sym_BSLASHcolorbox] = ACTIONS(12217), + [anon_sym_BSLASHtextcolor] = ACTIONS(12217), + [anon_sym_BSLASHpagecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12217), + }, + [1406] = { + [sym_generic_command_name] = ACTIONS(12221), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12221), + [aux_sym_paragraph_token1] = ACTIONS(12221), + [aux_sym_subparagraph_token1] = ACTIONS(12221), + [anon_sym_BSLASHitem] = ACTIONS(12221), + [anon_sym_LBRACK] = ACTIONS(12219), + [anon_sym_RBRACK] = ACTIONS(12219), + [anon_sym_LBRACE] = ACTIONS(12750), + [anon_sym_RBRACE] = ACTIONS(12219), + [anon_sym_LPAREN] = ACTIONS(12219), + [anon_sym_COMMA] = ACTIONS(12219), + [anon_sym_EQ] = ACTIONS(12219), + [sym_word] = ACTIONS(12219), + [sym_param] = ACTIONS(12219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12219), + [anon_sym_DOLLAR] = ACTIONS(12221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12219), + [anon_sym_BSLASHbegin] = ACTIONS(12221), + [anon_sym_BSLASHcaption] = ACTIONS(12221), + [anon_sym_BSLASHcite] = ACTIONS(12221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCite] = ACTIONS(12221), + [anon_sym_BSLASHnocite] = ACTIONS(12221), + [anon_sym_BSLASHcitet] = ACTIONS(12221), + [anon_sym_BSLASHcitep] = ACTIONS(12221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteauthor] = ACTIONS(12221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitetitle] = ACTIONS(12221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteyear] = ACTIONS(12221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitedate] = ACTIONS(12221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteurl] = ACTIONS(12221), + [anon_sym_BSLASHfullcite] = ACTIONS(12221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12221), + [anon_sym_BSLASHcitealt] = ACTIONS(12221), + [anon_sym_BSLASHcitealp] = ACTIONS(12221), + [anon_sym_BSLASHcitetext] = ACTIONS(12221), + [anon_sym_BSLASHparencite] = ACTIONS(12221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHParencite] = ACTIONS(12221), + [anon_sym_BSLASHfootcite] = ACTIONS(12221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12221), + [anon_sym_BSLASHtextcite] = ACTIONS(12221), + [anon_sym_BSLASHTextcite] = ACTIONS(12221), + [anon_sym_BSLASHsmartcite] = ACTIONS(12221), + [anon_sym_BSLASHSmartcite] = ACTIONS(12221), + [anon_sym_BSLASHsupercite] = ACTIONS(12221), + [anon_sym_BSLASHautocite] = ACTIONS(12221), + [anon_sym_BSLASHAutocite] = ACTIONS(12221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHvolcite] = ACTIONS(12221), + [anon_sym_BSLASHVolcite] = ACTIONS(12221), + [anon_sym_BSLASHpvolcite] = ACTIONS(12221), + [anon_sym_BSLASHPvolcite] = ACTIONS(12221), + [anon_sym_BSLASHfvolcite] = ACTIONS(12221), + [anon_sym_BSLASHftvolcite] = ACTIONS(12221), + [anon_sym_BSLASHsvolcite] = ACTIONS(12221), + [anon_sym_BSLASHSvolcite] = ACTIONS(12221), + [anon_sym_BSLASHtvolcite] = ACTIONS(12221), + [anon_sym_BSLASHTvolcite] = ACTIONS(12221), + [anon_sym_BSLASHavolcite] = ACTIONS(12221), + [anon_sym_BSLASHAvolcite] = ACTIONS(12221), + [anon_sym_BSLASHnotecite] = ACTIONS(12221), + [anon_sym_BSLASHpnotecite] = ACTIONS(12221), + [anon_sym_BSLASHPnotecite] = ACTIONS(12221), + [anon_sym_BSLASHfnotecite] = ACTIONS(12221), + [anon_sym_BSLASHusepackage] = ACTIONS(12221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12221), + [anon_sym_BSLASHinclude] = ACTIONS(12221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12221), + [anon_sym_BSLASHinput] = ACTIONS(12221), + [anon_sym_BSLASHsubfile] = ACTIONS(12221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12221), + [anon_sym_BSLASHbibliography] = ACTIONS(12221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12221), + [anon_sym_BSLASHincludesvg] = ACTIONS(12221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12221), + [anon_sym_BSLASHimport] = ACTIONS(12221), + [anon_sym_BSLASHsubimport] = ACTIONS(12221), + [anon_sym_BSLASHinputfrom] = ACTIONS(12221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12221), + [anon_sym_BSLASHincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHlabel] = ACTIONS(12221), + [anon_sym_BSLASHref] = ACTIONS(12221), + [anon_sym_BSLASHvref] = ACTIONS(12221), + [anon_sym_BSLASHVref] = ACTIONS(12221), + [anon_sym_BSLASHautoref] = ACTIONS(12221), + [anon_sym_BSLASHpageref] = ACTIONS(12221), + [anon_sym_BSLASHcref] = ACTIONS(12221), + [anon_sym_BSLASHCref] = ACTIONS(12221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnameCref] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHlabelcref] = ACTIONS(12221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12221), + [anon_sym_BSLASHeqref] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange] = ACTIONS(12221), + [anon_sym_BSLASHCrefrange] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewlabel] = ACTIONS(12221), + [anon_sym_BSLASHnewcommand] = ACTIONS(12221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12221), + [anon_sym_BSLASHgls] = ACTIONS(12221), + [anon_sym_BSLASHGls] = ACTIONS(12221), + [anon_sym_BSLASHGLS] = ACTIONS(12221), + [anon_sym_BSLASHglspl] = ACTIONS(12221), + [anon_sym_BSLASHGlspl] = ACTIONS(12221), + [anon_sym_BSLASHGLSpl] = ACTIONS(12221), + [anon_sym_BSLASHglsdisp] = ACTIONS(12221), + [anon_sym_BSLASHglslink] = ACTIONS(12221), + [anon_sym_BSLASHglstext] = ACTIONS(12221), + [anon_sym_BSLASHGlstext] = ACTIONS(12221), + [anon_sym_BSLASHGLStext] = ACTIONS(12221), + [anon_sym_BSLASHglsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12221), + [anon_sym_BSLASHglsplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSplural] = ACTIONS(12221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHglsname] = ACTIONS(12221), + [anon_sym_BSLASHGlsname] = ACTIONS(12221), + [anon_sym_BSLASHGLSname] = ACTIONS(12221), + [anon_sym_BSLASHglssymbol] = ACTIONS(12221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12221), + [anon_sym_BSLASHglsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12221), + [anon_sym_BSLASHglsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12221), + [anon_sym_BSLASHglsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12221), + [anon_sym_BSLASHglsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12221), + [anon_sym_BSLASHglsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12221), + [anon_sym_BSLASHnewacronym] = ACTIONS(12221), + [anon_sym_BSLASHacrshort] = ACTIONS(12221), + [anon_sym_BSLASHAcrshort] = ACTIONS(12221), + [anon_sym_BSLASHACRshort] = ACTIONS(12221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12221), + [anon_sym_BSLASHacrlong] = ACTIONS(12221), + [anon_sym_BSLASHAcrlong] = ACTIONS(12221), + [anon_sym_BSLASHACRlong] = ACTIONS(12221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12221), + [anon_sym_BSLASHacrfull] = ACTIONS(12221), + [anon_sym_BSLASHAcrfull] = ACTIONS(12221), + [anon_sym_BSLASHACRfull] = ACTIONS(12221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12221), + [anon_sym_BSLASHacs] = ACTIONS(12221), + [anon_sym_BSLASHAcs] = ACTIONS(12221), + [anon_sym_BSLASHacsp] = ACTIONS(12221), + [anon_sym_BSLASHAcsp] = ACTIONS(12221), + [anon_sym_BSLASHacl] = ACTIONS(12221), + [anon_sym_BSLASHAcl] = ACTIONS(12221), + [anon_sym_BSLASHaclp] = ACTIONS(12221), + [anon_sym_BSLASHAclp] = ACTIONS(12221), + [anon_sym_BSLASHacf] = ACTIONS(12221), + [anon_sym_BSLASHAcf] = ACTIONS(12221), + [anon_sym_BSLASHacfp] = ACTIONS(12221), + [anon_sym_BSLASHAcfp] = ACTIONS(12221), + [anon_sym_BSLASHac] = ACTIONS(12221), + [anon_sym_BSLASHAc] = ACTIONS(12221), + [anon_sym_BSLASHacp] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12221), + [anon_sym_BSLASHcolor] = ACTIONS(12221), + [anon_sym_BSLASHcolorbox] = ACTIONS(12221), + [anon_sym_BSLASHtextcolor] = ACTIONS(12221), + [anon_sym_BSLASHpagecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12221), + }, + [1407] = { + [sym_generic_command_name] = ACTIONS(12108), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12108), + [aux_sym_paragraph_token1] = ACTIONS(12108), + [aux_sym_subparagraph_token1] = ACTIONS(12108), + [anon_sym_BSLASHitem] = ACTIONS(12108), + [anon_sym_LBRACK] = ACTIONS(12106), + [anon_sym_RBRACK] = ACTIONS(12106), + [anon_sym_LBRACE] = ACTIONS(12106), + [anon_sym_RBRACE] = ACTIONS(12106), + [anon_sym_LPAREN] = ACTIONS(12106), + [anon_sym_COMMA] = ACTIONS(12106), + [anon_sym_EQ] = ACTIONS(12106), + [sym_word] = ACTIONS(12106), + [sym_param] = ACTIONS(12106), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12106), + [anon_sym_DOLLAR] = ACTIONS(12108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12106), + [anon_sym_BSLASHbegin] = ACTIONS(12108), + [anon_sym_BSLASHcaption] = ACTIONS(12108), + [anon_sym_BSLASHcite] = ACTIONS(12108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCite] = ACTIONS(12108), + [anon_sym_BSLASHnocite] = ACTIONS(12108), + [anon_sym_BSLASHcitet] = ACTIONS(12108), + [anon_sym_BSLASHcitep] = ACTIONS(12108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteauthor] = ACTIONS(12108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitetitle] = ACTIONS(12108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteyear] = ACTIONS(12108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitedate] = ACTIONS(12108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteurl] = ACTIONS(12108), + [anon_sym_BSLASHfullcite] = ACTIONS(12108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12108), + [anon_sym_BSLASHcitealt] = ACTIONS(12108), + [anon_sym_BSLASHcitealp] = ACTIONS(12108), + [anon_sym_BSLASHcitetext] = ACTIONS(12108), + [anon_sym_BSLASHparencite] = ACTIONS(12108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHParencite] = ACTIONS(12108), + [anon_sym_BSLASHfootcite] = ACTIONS(12108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12108), + [anon_sym_BSLASHtextcite] = ACTIONS(12108), + [anon_sym_BSLASHTextcite] = ACTIONS(12108), + [anon_sym_BSLASHsmartcite] = ACTIONS(12108), + [anon_sym_BSLASHSmartcite] = ACTIONS(12108), + [anon_sym_BSLASHsupercite] = ACTIONS(12108), + [anon_sym_BSLASHautocite] = ACTIONS(12108), + [anon_sym_BSLASHAutocite] = ACTIONS(12108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHvolcite] = ACTIONS(12108), + [anon_sym_BSLASHVolcite] = ACTIONS(12108), + [anon_sym_BSLASHpvolcite] = ACTIONS(12108), + [anon_sym_BSLASHPvolcite] = ACTIONS(12108), + [anon_sym_BSLASHfvolcite] = ACTIONS(12108), + [anon_sym_BSLASHftvolcite] = ACTIONS(12108), + [anon_sym_BSLASHsvolcite] = ACTIONS(12108), + [anon_sym_BSLASHSvolcite] = ACTIONS(12108), + [anon_sym_BSLASHtvolcite] = ACTIONS(12108), + [anon_sym_BSLASHTvolcite] = ACTIONS(12108), + [anon_sym_BSLASHavolcite] = ACTIONS(12108), + [anon_sym_BSLASHAvolcite] = ACTIONS(12108), + [anon_sym_BSLASHnotecite] = ACTIONS(12108), + [anon_sym_BSLASHpnotecite] = ACTIONS(12108), + [anon_sym_BSLASHPnotecite] = ACTIONS(12108), + [anon_sym_BSLASHfnotecite] = ACTIONS(12108), + [anon_sym_BSLASHusepackage] = ACTIONS(12108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12108), + [anon_sym_BSLASHinclude] = ACTIONS(12108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12108), + [anon_sym_BSLASHinput] = ACTIONS(12108), + [anon_sym_BSLASHsubfile] = ACTIONS(12108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12108), + [anon_sym_BSLASHbibliography] = ACTIONS(12108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12108), + [anon_sym_BSLASHincludesvg] = ACTIONS(12108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12108), + [anon_sym_BSLASHimport] = ACTIONS(12108), + [anon_sym_BSLASHsubimport] = ACTIONS(12108), + [anon_sym_BSLASHinputfrom] = ACTIONS(12108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12108), + [anon_sym_BSLASHincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHlabel] = ACTIONS(12108), + [anon_sym_BSLASHref] = ACTIONS(12108), + [anon_sym_BSLASHvref] = ACTIONS(12108), + [anon_sym_BSLASHVref] = ACTIONS(12108), + [anon_sym_BSLASHautoref] = ACTIONS(12108), + [anon_sym_BSLASHpageref] = ACTIONS(12108), + [anon_sym_BSLASHcref] = ACTIONS(12108), + [anon_sym_BSLASHCref] = ACTIONS(12108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnameCref] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHlabelcref] = ACTIONS(12108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12108), + [anon_sym_BSLASHeqref] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange] = ACTIONS(12108), + [anon_sym_BSLASHCrefrange] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewlabel] = ACTIONS(12108), + [anon_sym_BSLASHnewcommand] = ACTIONS(12108), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12108), + [anon_sym_BSLASHgls] = ACTIONS(12108), + [anon_sym_BSLASHGls] = ACTIONS(12108), + [anon_sym_BSLASHGLS] = ACTIONS(12108), + [anon_sym_BSLASHglspl] = ACTIONS(12108), + [anon_sym_BSLASHGlspl] = ACTIONS(12108), + [anon_sym_BSLASHGLSpl] = ACTIONS(12108), + [anon_sym_BSLASHglsdisp] = ACTIONS(12108), + [anon_sym_BSLASHglslink] = ACTIONS(12108), + [anon_sym_BSLASHglstext] = ACTIONS(12108), + [anon_sym_BSLASHGlstext] = ACTIONS(12108), + [anon_sym_BSLASHGLStext] = ACTIONS(12108), + [anon_sym_BSLASHglsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12108), + [anon_sym_BSLASHglsplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSplural] = ACTIONS(12108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHglsname] = ACTIONS(12108), + [anon_sym_BSLASHGlsname] = ACTIONS(12108), + [anon_sym_BSLASHGLSname] = ACTIONS(12108), + [anon_sym_BSLASHglssymbol] = ACTIONS(12108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12108), + [anon_sym_BSLASHglsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12108), + [anon_sym_BSLASHglsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12108), + [anon_sym_BSLASHglsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12108), + [anon_sym_BSLASHglsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12108), + [anon_sym_BSLASHglsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12108), + [anon_sym_BSLASHnewacronym] = ACTIONS(12108), + [anon_sym_BSLASHacrshort] = ACTIONS(12108), + [anon_sym_BSLASHAcrshort] = ACTIONS(12108), + [anon_sym_BSLASHACRshort] = ACTIONS(12108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12108), + [anon_sym_BSLASHacrlong] = ACTIONS(12108), + [anon_sym_BSLASHAcrlong] = ACTIONS(12108), + [anon_sym_BSLASHACRlong] = ACTIONS(12108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12108), + [anon_sym_BSLASHacrfull] = ACTIONS(12108), + [anon_sym_BSLASHAcrfull] = ACTIONS(12108), + [anon_sym_BSLASHACRfull] = ACTIONS(12108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12108), + [anon_sym_BSLASHacs] = ACTIONS(12108), + [anon_sym_BSLASHAcs] = ACTIONS(12108), + [anon_sym_BSLASHacsp] = ACTIONS(12108), + [anon_sym_BSLASHAcsp] = ACTIONS(12108), + [anon_sym_BSLASHacl] = ACTIONS(12108), + [anon_sym_BSLASHAcl] = ACTIONS(12108), + [anon_sym_BSLASHaclp] = ACTIONS(12108), + [anon_sym_BSLASHAclp] = ACTIONS(12108), + [anon_sym_BSLASHacf] = ACTIONS(12108), + [anon_sym_BSLASHAcf] = ACTIONS(12108), + [anon_sym_BSLASHacfp] = ACTIONS(12108), + [anon_sym_BSLASHAcfp] = ACTIONS(12108), + [anon_sym_BSLASHac] = ACTIONS(12108), + [anon_sym_BSLASHAc] = ACTIONS(12108), + [anon_sym_BSLASHacp] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12108), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12108), + [anon_sym_BSLASHcolor] = ACTIONS(12108), + [anon_sym_BSLASHcolorbox] = ACTIONS(12108), + [anon_sym_BSLASHtextcolor] = ACTIONS(12108), + [anon_sym_BSLASHpagecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12108), + }, + [1408] = { + [sym_generic_command_name] = ACTIONS(12235), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12235), + [aux_sym_paragraph_token1] = ACTIONS(12235), + [aux_sym_subparagraph_token1] = ACTIONS(12235), + [anon_sym_BSLASHitem] = ACTIONS(12235), + [anon_sym_LBRACK] = ACTIONS(12233), + [anon_sym_RBRACK] = ACTIONS(12233), + [anon_sym_LBRACE] = ACTIONS(12233), + [anon_sym_RBRACE] = ACTIONS(12233), + [anon_sym_LPAREN] = ACTIONS(12233), + [anon_sym_COMMA] = ACTIONS(12233), + [anon_sym_EQ] = ACTIONS(12233), + [sym_word] = ACTIONS(12233), + [sym_param] = ACTIONS(12233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12233), + [anon_sym_DOLLAR] = ACTIONS(12235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12233), + [anon_sym_BSLASHbegin] = ACTIONS(12235), + [anon_sym_BSLASHcaption] = ACTIONS(12235), + [anon_sym_BSLASHcite] = ACTIONS(12235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCite] = ACTIONS(12235), + [anon_sym_BSLASHnocite] = ACTIONS(12235), + [anon_sym_BSLASHcitet] = ACTIONS(12235), + [anon_sym_BSLASHcitep] = ACTIONS(12235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteauthor] = ACTIONS(12235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitetitle] = ACTIONS(12235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteyear] = ACTIONS(12235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitedate] = ACTIONS(12235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteurl] = ACTIONS(12235), + [anon_sym_BSLASHfullcite] = ACTIONS(12235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12235), + [anon_sym_BSLASHcitealt] = ACTIONS(12235), + [anon_sym_BSLASHcitealp] = ACTIONS(12235), + [anon_sym_BSLASHcitetext] = ACTIONS(12235), + [anon_sym_BSLASHparencite] = ACTIONS(12235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHParencite] = ACTIONS(12235), + [anon_sym_BSLASHfootcite] = ACTIONS(12235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12235), + [anon_sym_BSLASHtextcite] = ACTIONS(12235), + [anon_sym_BSLASHTextcite] = ACTIONS(12235), + [anon_sym_BSLASHsmartcite] = ACTIONS(12235), + [anon_sym_BSLASHSmartcite] = ACTIONS(12235), + [anon_sym_BSLASHsupercite] = ACTIONS(12235), + [anon_sym_BSLASHautocite] = ACTIONS(12235), + [anon_sym_BSLASHAutocite] = ACTIONS(12235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHvolcite] = ACTIONS(12235), + [anon_sym_BSLASHVolcite] = ACTIONS(12235), + [anon_sym_BSLASHpvolcite] = ACTIONS(12235), + [anon_sym_BSLASHPvolcite] = ACTIONS(12235), + [anon_sym_BSLASHfvolcite] = ACTIONS(12235), + [anon_sym_BSLASHftvolcite] = ACTIONS(12235), + [anon_sym_BSLASHsvolcite] = ACTIONS(12235), + [anon_sym_BSLASHSvolcite] = ACTIONS(12235), + [anon_sym_BSLASHtvolcite] = ACTIONS(12235), + [anon_sym_BSLASHTvolcite] = ACTIONS(12235), + [anon_sym_BSLASHavolcite] = ACTIONS(12235), + [anon_sym_BSLASHAvolcite] = ACTIONS(12235), + [anon_sym_BSLASHnotecite] = ACTIONS(12235), + [anon_sym_BSLASHpnotecite] = ACTIONS(12235), + [anon_sym_BSLASHPnotecite] = ACTIONS(12235), + [anon_sym_BSLASHfnotecite] = ACTIONS(12235), + [anon_sym_BSLASHusepackage] = ACTIONS(12235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12235), + [anon_sym_BSLASHinclude] = ACTIONS(12235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12235), + [anon_sym_BSLASHinput] = ACTIONS(12235), + [anon_sym_BSLASHsubfile] = ACTIONS(12235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12235), + [anon_sym_BSLASHbibliography] = ACTIONS(12235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12235), + [anon_sym_BSLASHincludesvg] = ACTIONS(12235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12235), + [anon_sym_BSLASHimport] = ACTIONS(12235), + [anon_sym_BSLASHsubimport] = ACTIONS(12235), + [anon_sym_BSLASHinputfrom] = ACTIONS(12235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12235), + [anon_sym_BSLASHincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHlabel] = ACTIONS(12235), + [anon_sym_BSLASHref] = ACTIONS(12235), + [anon_sym_BSLASHvref] = ACTIONS(12235), + [anon_sym_BSLASHVref] = ACTIONS(12235), + [anon_sym_BSLASHautoref] = ACTIONS(12235), + [anon_sym_BSLASHpageref] = ACTIONS(12235), + [anon_sym_BSLASHcref] = ACTIONS(12235), + [anon_sym_BSLASHCref] = ACTIONS(12235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnameCref] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHlabelcref] = ACTIONS(12235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12235), + [anon_sym_BSLASHeqref] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange] = ACTIONS(12235), + [anon_sym_BSLASHCrefrange] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewlabel] = ACTIONS(12235), + [anon_sym_BSLASHnewcommand] = ACTIONS(12235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12235), + [anon_sym_BSLASHgls] = ACTIONS(12235), + [anon_sym_BSLASHGls] = ACTIONS(12235), + [anon_sym_BSLASHGLS] = ACTIONS(12235), + [anon_sym_BSLASHglspl] = ACTIONS(12235), + [anon_sym_BSLASHGlspl] = ACTIONS(12235), + [anon_sym_BSLASHGLSpl] = ACTIONS(12235), + [anon_sym_BSLASHglsdisp] = ACTIONS(12235), + [anon_sym_BSLASHglslink] = ACTIONS(12235), + [anon_sym_BSLASHglstext] = ACTIONS(12235), + [anon_sym_BSLASHGlstext] = ACTIONS(12235), + [anon_sym_BSLASHGLStext] = ACTIONS(12235), + [anon_sym_BSLASHglsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12235), + [anon_sym_BSLASHglsplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSplural] = ACTIONS(12235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHglsname] = ACTIONS(12235), + [anon_sym_BSLASHGlsname] = ACTIONS(12235), + [anon_sym_BSLASHGLSname] = ACTIONS(12235), + [anon_sym_BSLASHglssymbol] = ACTIONS(12235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12235), + [anon_sym_BSLASHglsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12235), + [anon_sym_BSLASHglsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12235), + [anon_sym_BSLASHglsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12235), + [anon_sym_BSLASHglsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12235), + [anon_sym_BSLASHglsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12235), + [anon_sym_BSLASHnewacronym] = ACTIONS(12235), + [anon_sym_BSLASHacrshort] = ACTIONS(12235), + [anon_sym_BSLASHAcrshort] = ACTIONS(12235), + [anon_sym_BSLASHACRshort] = ACTIONS(12235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12235), + [anon_sym_BSLASHacrlong] = ACTIONS(12235), + [anon_sym_BSLASHAcrlong] = ACTIONS(12235), + [anon_sym_BSLASHACRlong] = ACTIONS(12235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12235), + [anon_sym_BSLASHacrfull] = ACTIONS(12235), + [anon_sym_BSLASHAcrfull] = ACTIONS(12235), + [anon_sym_BSLASHACRfull] = ACTIONS(12235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12235), + [anon_sym_BSLASHacs] = ACTIONS(12235), + [anon_sym_BSLASHAcs] = ACTIONS(12235), + [anon_sym_BSLASHacsp] = ACTIONS(12235), + [anon_sym_BSLASHAcsp] = ACTIONS(12235), + [anon_sym_BSLASHacl] = ACTIONS(12235), + [anon_sym_BSLASHAcl] = ACTIONS(12235), + [anon_sym_BSLASHaclp] = ACTIONS(12235), + [anon_sym_BSLASHAclp] = ACTIONS(12235), + [anon_sym_BSLASHacf] = ACTIONS(12235), + [anon_sym_BSLASHAcf] = ACTIONS(12235), + [anon_sym_BSLASHacfp] = ACTIONS(12235), + [anon_sym_BSLASHAcfp] = ACTIONS(12235), + [anon_sym_BSLASHac] = ACTIONS(12235), + [anon_sym_BSLASHAc] = ACTIONS(12235), + [anon_sym_BSLASHacp] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12235), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12235), + [anon_sym_BSLASHcolor] = ACTIONS(12235), + [anon_sym_BSLASHcolorbox] = ACTIONS(12235), + [anon_sym_BSLASHtextcolor] = ACTIONS(12235), + [anon_sym_BSLASHpagecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12235), + }, + [1409] = { + [sym_generic_command_name] = ACTIONS(12239), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12239), + [aux_sym_paragraph_token1] = ACTIONS(12239), + [aux_sym_subparagraph_token1] = ACTIONS(12239), + [anon_sym_BSLASHitem] = ACTIONS(12239), + [anon_sym_LBRACK] = ACTIONS(12237), + [anon_sym_RBRACK] = ACTIONS(12237), + [anon_sym_LBRACE] = ACTIONS(12237), + [anon_sym_RBRACE] = ACTIONS(12237), + [anon_sym_LPAREN] = ACTIONS(12237), + [anon_sym_COMMA] = ACTIONS(12237), + [anon_sym_EQ] = ACTIONS(12237), + [sym_word] = ACTIONS(12237), + [sym_param] = ACTIONS(12237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12237), + [anon_sym_DOLLAR] = ACTIONS(12239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12237), + [anon_sym_BSLASHbegin] = ACTIONS(12239), + [anon_sym_BSLASHcaption] = ACTIONS(12239), + [anon_sym_BSLASHcite] = ACTIONS(12239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCite] = ACTIONS(12239), + [anon_sym_BSLASHnocite] = ACTIONS(12239), + [anon_sym_BSLASHcitet] = ACTIONS(12239), + [anon_sym_BSLASHcitep] = ACTIONS(12239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteauthor] = ACTIONS(12239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitetitle] = ACTIONS(12239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteyear] = ACTIONS(12239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitedate] = ACTIONS(12239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteurl] = ACTIONS(12239), + [anon_sym_BSLASHfullcite] = ACTIONS(12239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12239), + [anon_sym_BSLASHcitealt] = ACTIONS(12239), + [anon_sym_BSLASHcitealp] = ACTIONS(12239), + [anon_sym_BSLASHcitetext] = ACTIONS(12239), + [anon_sym_BSLASHparencite] = ACTIONS(12239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHParencite] = ACTIONS(12239), + [anon_sym_BSLASHfootcite] = ACTIONS(12239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12239), + [anon_sym_BSLASHtextcite] = ACTIONS(12239), + [anon_sym_BSLASHTextcite] = ACTIONS(12239), + [anon_sym_BSLASHsmartcite] = ACTIONS(12239), + [anon_sym_BSLASHSmartcite] = ACTIONS(12239), + [anon_sym_BSLASHsupercite] = ACTIONS(12239), + [anon_sym_BSLASHautocite] = ACTIONS(12239), + [anon_sym_BSLASHAutocite] = ACTIONS(12239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHvolcite] = ACTIONS(12239), + [anon_sym_BSLASHVolcite] = ACTIONS(12239), + [anon_sym_BSLASHpvolcite] = ACTIONS(12239), + [anon_sym_BSLASHPvolcite] = ACTIONS(12239), + [anon_sym_BSLASHfvolcite] = ACTIONS(12239), + [anon_sym_BSLASHftvolcite] = ACTIONS(12239), + [anon_sym_BSLASHsvolcite] = ACTIONS(12239), + [anon_sym_BSLASHSvolcite] = ACTIONS(12239), + [anon_sym_BSLASHtvolcite] = ACTIONS(12239), + [anon_sym_BSLASHTvolcite] = ACTIONS(12239), + [anon_sym_BSLASHavolcite] = ACTIONS(12239), + [anon_sym_BSLASHAvolcite] = ACTIONS(12239), + [anon_sym_BSLASHnotecite] = ACTIONS(12239), + [anon_sym_BSLASHpnotecite] = ACTIONS(12239), + [anon_sym_BSLASHPnotecite] = ACTIONS(12239), + [anon_sym_BSLASHfnotecite] = ACTIONS(12239), + [anon_sym_BSLASHusepackage] = ACTIONS(12239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12239), + [anon_sym_BSLASHinclude] = ACTIONS(12239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12239), + [anon_sym_BSLASHinput] = ACTIONS(12239), + [anon_sym_BSLASHsubfile] = ACTIONS(12239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12239), + [anon_sym_BSLASHbibliography] = ACTIONS(12239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12239), + [anon_sym_BSLASHincludesvg] = ACTIONS(12239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12239), + [anon_sym_BSLASHimport] = ACTIONS(12239), + [anon_sym_BSLASHsubimport] = ACTIONS(12239), + [anon_sym_BSLASHinputfrom] = ACTIONS(12239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12239), + [anon_sym_BSLASHincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHlabel] = ACTIONS(12239), + [anon_sym_BSLASHref] = ACTIONS(12239), + [anon_sym_BSLASHvref] = ACTIONS(12239), + [anon_sym_BSLASHVref] = ACTIONS(12239), + [anon_sym_BSLASHautoref] = ACTIONS(12239), + [anon_sym_BSLASHpageref] = ACTIONS(12239), + [anon_sym_BSLASHcref] = ACTIONS(12239), + [anon_sym_BSLASHCref] = ACTIONS(12239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnameCref] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHlabelcref] = ACTIONS(12239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12239), + [anon_sym_BSLASHeqref] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange] = ACTIONS(12239), + [anon_sym_BSLASHCrefrange] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewlabel] = ACTIONS(12239), + [anon_sym_BSLASHnewcommand] = ACTIONS(12239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12239), + [anon_sym_BSLASHgls] = ACTIONS(12239), + [anon_sym_BSLASHGls] = ACTIONS(12239), + [anon_sym_BSLASHGLS] = ACTIONS(12239), + [anon_sym_BSLASHglspl] = ACTIONS(12239), + [anon_sym_BSLASHGlspl] = ACTIONS(12239), + [anon_sym_BSLASHGLSpl] = ACTIONS(12239), + [anon_sym_BSLASHglsdisp] = ACTIONS(12239), + [anon_sym_BSLASHglslink] = ACTIONS(12239), + [anon_sym_BSLASHglstext] = ACTIONS(12239), + [anon_sym_BSLASHGlstext] = ACTIONS(12239), + [anon_sym_BSLASHGLStext] = ACTIONS(12239), + [anon_sym_BSLASHglsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12239), + [anon_sym_BSLASHglsplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSplural] = ACTIONS(12239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHglsname] = ACTIONS(12239), + [anon_sym_BSLASHGlsname] = ACTIONS(12239), + [anon_sym_BSLASHGLSname] = ACTIONS(12239), + [anon_sym_BSLASHglssymbol] = ACTIONS(12239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12239), + [anon_sym_BSLASHglsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12239), + [anon_sym_BSLASHglsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12239), + [anon_sym_BSLASHglsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12239), + [anon_sym_BSLASHglsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12239), + [anon_sym_BSLASHglsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12239), + [anon_sym_BSLASHnewacronym] = ACTIONS(12239), + [anon_sym_BSLASHacrshort] = ACTIONS(12239), + [anon_sym_BSLASHAcrshort] = ACTIONS(12239), + [anon_sym_BSLASHACRshort] = ACTIONS(12239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12239), + [anon_sym_BSLASHacrlong] = ACTIONS(12239), + [anon_sym_BSLASHAcrlong] = ACTIONS(12239), + [anon_sym_BSLASHACRlong] = ACTIONS(12239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12239), + [anon_sym_BSLASHacrfull] = ACTIONS(12239), + [anon_sym_BSLASHAcrfull] = ACTIONS(12239), + [anon_sym_BSLASHACRfull] = ACTIONS(12239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12239), + [anon_sym_BSLASHacs] = ACTIONS(12239), + [anon_sym_BSLASHAcs] = ACTIONS(12239), + [anon_sym_BSLASHacsp] = ACTIONS(12239), + [anon_sym_BSLASHAcsp] = ACTIONS(12239), + [anon_sym_BSLASHacl] = ACTIONS(12239), + [anon_sym_BSLASHAcl] = ACTIONS(12239), + [anon_sym_BSLASHaclp] = ACTIONS(12239), + [anon_sym_BSLASHAclp] = ACTIONS(12239), + [anon_sym_BSLASHacf] = ACTIONS(12239), + [anon_sym_BSLASHAcf] = ACTIONS(12239), + [anon_sym_BSLASHacfp] = ACTIONS(12239), + [anon_sym_BSLASHAcfp] = ACTIONS(12239), + [anon_sym_BSLASHac] = ACTIONS(12239), + [anon_sym_BSLASHAc] = ACTIONS(12239), + [anon_sym_BSLASHacp] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12239), + [anon_sym_BSLASHcolor] = ACTIONS(12239), + [anon_sym_BSLASHcolorbox] = ACTIONS(12239), + [anon_sym_BSLASHtextcolor] = ACTIONS(12239), + [anon_sym_BSLASHpagecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12239), + }, + [1410] = { + [sym_generic_command_name] = ACTIONS(12243), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12243), + [aux_sym_paragraph_token1] = ACTIONS(12243), + [aux_sym_subparagraph_token1] = ACTIONS(12243), + [anon_sym_BSLASHitem] = ACTIONS(12243), + [anon_sym_LBRACK] = ACTIONS(12241), + [anon_sym_RBRACK] = ACTIONS(12241), + [anon_sym_LBRACE] = ACTIONS(12241), + [anon_sym_RBRACE] = ACTIONS(12241), + [anon_sym_LPAREN] = ACTIONS(12241), + [anon_sym_COMMA] = ACTIONS(12241), + [anon_sym_EQ] = ACTIONS(12241), + [sym_word] = ACTIONS(12241), + [sym_param] = ACTIONS(12241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12241), + [anon_sym_DOLLAR] = ACTIONS(12243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12241), + [anon_sym_BSLASHbegin] = ACTIONS(12243), + [anon_sym_BSLASHcaption] = ACTIONS(12243), + [anon_sym_BSLASHcite] = ACTIONS(12243), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCite] = ACTIONS(12243), + [anon_sym_BSLASHnocite] = ACTIONS(12243), + [anon_sym_BSLASHcitet] = ACTIONS(12243), + [anon_sym_BSLASHcitep] = ACTIONS(12243), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteauthor] = ACTIONS(12243), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12243), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitetitle] = ACTIONS(12243), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteyear] = ACTIONS(12243), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitedate] = ACTIONS(12243), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteurl] = ACTIONS(12243), + [anon_sym_BSLASHfullcite] = ACTIONS(12243), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12243), + [anon_sym_BSLASHcitealt] = ACTIONS(12243), + [anon_sym_BSLASHcitealp] = ACTIONS(12243), + [anon_sym_BSLASHcitetext] = ACTIONS(12243), + [anon_sym_BSLASHparencite] = ACTIONS(12243), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHParencite] = ACTIONS(12243), + [anon_sym_BSLASHfootcite] = ACTIONS(12243), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12243), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12243), + [anon_sym_BSLASHtextcite] = ACTIONS(12243), + [anon_sym_BSLASHTextcite] = ACTIONS(12243), + [anon_sym_BSLASHsmartcite] = ACTIONS(12243), + [anon_sym_BSLASHSmartcite] = ACTIONS(12243), + [anon_sym_BSLASHsupercite] = ACTIONS(12243), + [anon_sym_BSLASHautocite] = ACTIONS(12243), + [anon_sym_BSLASHAutocite] = ACTIONS(12243), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHvolcite] = ACTIONS(12243), + [anon_sym_BSLASHVolcite] = ACTIONS(12243), + [anon_sym_BSLASHpvolcite] = ACTIONS(12243), + [anon_sym_BSLASHPvolcite] = ACTIONS(12243), + [anon_sym_BSLASHfvolcite] = ACTIONS(12243), + [anon_sym_BSLASHftvolcite] = ACTIONS(12243), + [anon_sym_BSLASHsvolcite] = ACTIONS(12243), + [anon_sym_BSLASHSvolcite] = ACTIONS(12243), + [anon_sym_BSLASHtvolcite] = ACTIONS(12243), + [anon_sym_BSLASHTvolcite] = ACTIONS(12243), + [anon_sym_BSLASHavolcite] = ACTIONS(12243), + [anon_sym_BSLASHAvolcite] = ACTIONS(12243), + [anon_sym_BSLASHnotecite] = ACTIONS(12243), + [anon_sym_BSLASHpnotecite] = ACTIONS(12243), + [anon_sym_BSLASHPnotecite] = ACTIONS(12243), + [anon_sym_BSLASHfnotecite] = ACTIONS(12243), + [anon_sym_BSLASHusepackage] = ACTIONS(12243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12243), + [anon_sym_BSLASHinclude] = ACTIONS(12243), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12243), + [anon_sym_BSLASHinput] = ACTIONS(12243), + [anon_sym_BSLASHsubfile] = ACTIONS(12243), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12243), + [anon_sym_BSLASHbibliography] = ACTIONS(12243), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12243), + [anon_sym_BSLASHincludesvg] = ACTIONS(12243), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12243), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12243), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12243), + [anon_sym_BSLASHimport] = ACTIONS(12243), + [anon_sym_BSLASHsubimport] = ACTIONS(12243), + [anon_sym_BSLASHinputfrom] = ACTIONS(12243), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12243), + [anon_sym_BSLASHincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHlabel] = ACTIONS(12243), + [anon_sym_BSLASHref] = ACTIONS(12243), + [anon_sym_BSLASHvref] = ACTIONS(12243), + [anon_sym_BSLASHVref] = ACTIONS(12243), + [anon_sym_BSLASHautoref] = ACTIONS(12243), + [anon_sym_BSLASHpageref] = ACTIONS(12243), + [anon_sym_BSLASHcref] = ACTIONS(12243), + [anon_sym_BSLASHCref] = ACTIONS(12243), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnameCref] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHlabelcref] = ACTIONS(12243), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12243), + [anon_sym_BSLASHeqref] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange] = ACTIONS(12243), + [anon_sym_BSLASHCrefrange] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewlabel] = ACTIONS(12243), + [anon_sym_BSLASHnewcommand] = ACTIONS(12243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12243), + [anon_sym_BSLASHgls] = ACTIONS(12243), + [anon_sym_BSLASHGls] = ACTIONS(12243), + [anon_sym_BSLASHGLS] = ACTIONS(12243), + [anon_sym_BSLASHglspl] = ACTIONS(12243), + [anon_sym_BSLASHGlspl] = ACTIONS(12243), + [anon_sym_BSLASHGLSpl] = ACTIONS(12243), + [anon_sym_BSLASHglsdisp] = ACTIONS(12243), + [anon_sym_BSLASHglslink] = ACTIONS(12243), + [anon_sym_BSLASHglstext] = ACTIONS(12243), + [anon_sym_BSLASHGlstext] = ACTIONS(12243), + [anon_sym_BSLASHGLStext] = ACTIONS(12243), + [anon_sym_BSLASHglsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12243), + [anon_sym_BSLASHglsplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSplural] = ACTIONS(12243), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHglsname] = ACTIONS(12243), + [anon_sym_BSLASHGlsname] = ACTIONS(12243), + [anon_sym_BSLASHGLSname] = ACTIONS(12243), + [anon_sym_BSLASHglssymbol] = ACTIONS(12243), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12243), + [anon_sym_BSLASHglsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12243), + [anon_sym_BSLASHglsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12243), + [anon_sym_BSLASHglsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12243), + [anon_sym_BSLASHglsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12243), + [anon_sym_BSLASHglsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12243), + [anon_sym_BSLASHnewacronym] = ACTIONS(12243), + [anon_sym_BSLASHacrshort] = ACTIONS(12243), + [anon_sym_BSLASHAcrshort] = ACTIONS(12243), + [anon_sym_BSLASHACRshort] = ACTIONS(12243), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12243), + [anon_sym_BSLASHacrlong] = ACTIONS(12243), + [anon_sym_BSLASHAcrlong] = ACTIONS(12243), + [anon_sym_BSLASHACRlong] = ACTIONS(12243), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12243), + [anon_sym_BSLASHacrfull] = ACTIONS(12243), + [anon_sym_BSLASHAcrfull] = ACTIONS(12243), + [anon_sym_BSLASHACRfull] = ACTIONS(12243), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12243), + [anon_sym_BSLASHacs] = ACTIONS(12243), + [anon_sym_BSLASHAcs] = ACTIONS(12243), + [anon_sym_BSLASHacsp] = ACTIONS(12243), + [anon_sym_BSLASHAcsp] = ACTIONS(12243), + [anon_sym_BSLASHacl] = ACTIONS(12243), + [anon_sym_BSLASHAcl] = ACTIONS(12243), + [anon_sym_BSLASHaclp] = ACTIONS(12243), + [anon_sym_BSLASHAclp] = ACTIONS(12243), + [anon_sym_BSLASHacf] = ACTIONS(12243), + [anon_sym_BSLASHAcf] = ACTIONS(12243), + [anon_sym_BSLASHacfp] = ACTIONS(12243), + [anon_sym_BSLASHAcfp] = ACTIONS(12243), + [anon_sym_BSLASHac] = ACTIONS(12243), + [anon_sym_BSLASHAc] = ACTIONS(12243), + [anon_sym_BSLASHacp] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12243), + [anon_sym_BSLASHcolor] = ACTIONS(12243), + [anon_sym_BSLASHcolorbox] = ACTIONS(12243), + [anon_sym_BSLASHtextcolor] = ACTIONS(12243), + [anon_sym_BSLASHpagecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12243), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12243), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12243), + }, + [1411] = { + [sym_generic_command_name] = ACTIONS(12247), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12247), + [aux_sym_paragraph_token1] = ACTIONS(12247), + [aux_sym_subparagraph_token1] = ACTIONS(12247), + [anon_sym_BSLASHitem] = ACTIONS(12247), + [anon_sym_LBRACK] = ACTIONS(12245), + [anon_sym_RBRACK] = ACTIONS(12245), + [anon_sym_LBRACE] = ACTIONS(12245), + [anon_sym_RBRACE] = ACTIONS(12245), + [anon_sym_LPAREN] = ACTIONS(12245), + [anon_sym_COMMA] = ACTIONS(12245), + [anon_sym_EQ] = ACTIONS(12245), + [sym_word] = ACTIONS(12245), + [sym_param] = ACTIONS(12245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12245), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12245), + [anon_sym_DOLLAR] = ACTIONS(12247), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12245), + [anon_sym_BSLASHbegin] = ACTIONS(12247), + [anon_sym_BSLASHcaption] = ACTIONS(12247), + [anon_sym_BSLASHcite] = ACTIONS(12247), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCite] = ACTIONS(12247), + [anon_sym_BSLASHnocite] = ACTIONS(12247), + [anon_sym_BSLASHcitet] = ACTIONS(12247), + [anon_sym_BSLASHcitep] = ACTIONS(12247), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteauthor] = ACTIONS(12247), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12247), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitetitle] = ACTIONS(12247), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteyear] = ACTIONS(12247), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitedate] = ACTIONS(12247), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteurl] = ACTIONS(12247), + [anon_sym_BSLASHfullcite] = ACTIONS(12247), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12247), + [anon_sym_BSLASHcitealt] = ACTIONS(12247), + [anon_sym_BSLASHcitealp] = ACTIONS(12247), + [anon_sym_BSLASHcitetext] = ACTIONS(12247), + [anon_sym_BSLASHparencite] = ACTIONS(12247), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHParencite] = ACTIONS(12247), + [anon_sym_BSLASHfootcite] = ACTIONS(12247), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12247), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12247), + [anon_sym_BSLASHtextcite] = ACTIONS(12247), + [anon_sym_BSLASHTextcite] = ACTIONS(12247), + [anon_sym_BSLASHsmartcite] = ACTIONS(12247), + [anon_sym_BSLASHSmartcite] = ACTIONS(12247), + [anon_sym_BSLASHsupercite] = ACTIONS(12247), + [anon_sym_BSLASHautocite] = ACTIONS(12247), + [anon_sym_BSLASHAutocite] = ACTIONS(12247), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHvolcite] = ACTIONS(12247), + [anon_sym_BSLASHVolcite] = ACTIONS(12247), + [anon_sym_BSLASHpvolcite] = ACTIONS(12247), + [anon_sym_BSLASHPvolcite] = ACTIONS(12247), + [anon_sym_BSLASHfvolcite] = ACTIONS(12247), + [anon_sym_BSLASHftvolcite] = ACTIONS(12247), + [anon_sym_BSLASHsvolcite] = ACTIONS(12247), + [anon_sym_BSLASHSvolcite] = ACTIONS(12247), + [anon_sym_BSLASHtvolcite] = ACTIONS(12247), + [anon_sym_BSLASHTvolcite] = ACTIONS(12247), + [anon_sym_BSLASHavolcite] = ACTIONS(12247), + [anon_sym_BSLASHAvolcite] = ACTIONS(12247), + [anon_sym_BSLASHnotecite] = ACTIONS(12247), + [anon_sym_BSLASHpnotecite] = ACTIONS(12247), + [anon_sym_BSLASHPnotecite] = ACTIONS(12247), + [anon_sym_BSLASHfnotecite] = ACTIONS(12247), + [anon_sym_BSLASHusepackage] = ACTIONS(12247), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12247), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12247), + [anon_sym_BSLASHinclude] = ACTIONS(12247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12247), + [anon_sym_BSLASHinput] = ACTIONS(12247), + [anon_sym_BSLASHsubfile] = ACTIONS(12247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12247), + [anon_sym_BSLASHbibliography] = ACTIONS(12247), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12247), + [anon_sym_BSLASHincludesvg] = ACTIONS(12247), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12247), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12247), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12247), + [anon_sym_BSLASHimport] = ACTIONS(12247), + [anon_sym_BSLASHsubimport] = ACTIONS(12247), + [anon_sym_BSLASHinputfrom] = ACTIONS(12247), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12247), + [anon_sym_BSLASHincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHlabel] = ACTIONS(12247), + [anon_sym_BSLASHref] = ACTIONS(12247), + [anon_sym_BSLASHvref] = ACTIONS(12247), + [anon_sym_BSLASHVref] = ACTIONS(12247), + [anon_sym_BSLASHautoref] = ACTIONS(12247), + [anon_sym_BSLASHpageref] = ACTIONS(12247), + [anon_sym_BSLASHcref] = ACTIONS(12247), + [anon_sym_BSLASHCref] = ACTIONS(12247), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnameCref] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHlabelcref] = ACTIONS(12247), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12247), + [anon_sym_BSLASHeqref] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange] = ACTIONS(12247), + [anon_sym_BSLASHCrefrange] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewlabel] = ACTIONS(12247), + [anon_sym_BSLASHnewcommand] = ACTIONS(12247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12247), + [anon_sym_BSLASHgls] = ACTIONS(12247), + [anon_sym_BSLASHGls] = ACTIONS(12247), + [anon_sym_BSLASHGLS] = ACTIONS(12247), + [anon_sym_BSLASHglspl] = ACTIONS(12247), + [anon_sym_BSLASHGlspl] = ACTIONS(12247), + [anon_sym_BSLASHGLSpl] = ACTIONS(12247), + [anon_sym_BSLASHglsdisp] = ACTIONS(12247), + [anon_sym_BSLASHglslink] = ACTIONS(12247), + [anon_sym_BSLASHglstext] = ACTIONS(12247), + [anon_sym_BSLASHGlstext] = ACTIONS(12247), + [anon_sym_BSLASHGLStext] = ACTIONS(12247), + [anon_sym_BSLASHglsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12247), + [anon_sym_BSLASHglsplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSplural] = ACTIONS(12247), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHglsname] = ACTIONS(12247), + [anon_sym_BSLASHGlsname] = ACTIONS(12247), + [anon_sym_BSLASHGLSname] = ACTIONS(12247), + [anon_sym_BSLASHglssymbol] = ACTIONS(12247), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12247), + [anon_sym_BSLASHglsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12247), + [anon_sym_BSLASHglsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12247), + [anon_sym_BSLASHglsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12247), + [anon_sym_BSLASHglsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12247), + [anon_sym_BSLASHglsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12247), + [anon_sym_BSLASHnewacronym] = ACTIONS(12247), + [anon_sym_BSLASHacrshort] = ACTIONS(12247), + [anon_sym_BSLASHAcrshort] = ACTIONS(12247), + [anon_sym_BSLASHACRshort] = ACTIONS(12247), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12247), + [anon_sym_BSLASHacrlong] = ACTIONS(12247), + [anon_sym_BSLASHAcrlong] = ACTIONS(12247), + [anon_sym_BSLASHACRlong] = ACTIONS(12247), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12247), + [anon_sym_BSLASHacrfull] = ACTIONS(12247), + [anon_sym_BSLASHAcrfull] = ACTIONS(12247), + [anon_sym_BSLASHACRfull] = ACTIONS(12247), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12247), + [anon_sym_BSLASHacs] = ACTIONS(12247), + [anon_sym_BSLASHAcs] = ACTIONS(12247), + [anon_sym_BSLASHacsp] = ACTIONS(12247), + [anon_sym_BSLASHAcsp] = ACTIONS(12247), + [anon_sym_BSLASHacl] = ACTIONS(12247), + [anon_sym_BSLASHAcl] = ACTIONS(12247), + [anon_sym_BSLASHaclp] = ACTIONS(12247), + [anon_sym_BSLASHAclp] = ACTIONS(12247), + [anon_sym_BSLASHacf] = ACTIONS(12247), + [anon_sym_BSLASHAcf] = ACTIONS(12247), + [anon_sym_BSLASHacfp] = ACTIONS(12247), + [anon_sym_BSLASHAcfp] = ACTIONS(12247), + [anon_sym_BSLASHac] = ACTIONS(12247), + [anon_sym_BSLASHAc] = ACTIONS(12247), + [anon_sym_BSLASHacp] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12247), + [anon_sym_BSLASHcolor] = ACTIONS(12247), + [anon_sym_BSLASHcolorbox] = ACTIONS(12247), + [anon_sym_BSLASHtextcolor] = ACTIONS(12247), + [anon_sym_BSLASHpagecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12247), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12247), + }, + [1412] = { + [sym_generic_command_name] = ACTIONS(12189), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12189), + [aux_sym_paragraph_token1] = ACTIONS(12189), + [aux_sym_subparagraph_token1] = ACTIONS(12189), + [anon_sym_BSLASHitem] = ACTIONS(12189), + [anon_sym_LBRACK] = ACTIONS(12187), + [anon_sym_RBRACK] = ACTIONS(12187), + [anon_sym_LBRACE] = ACTIONS(12187), + [anon_sym_RBRACE] = ACTIONS(12187), + [anon_sym_LPAREN] = ACTIONS(12187), + [anon_sym_COMMA] = ACTIONS(12187), + [anon_sym_EQ] = ACTIONS(12187), + [sym_word] = ACTIONS(12187), + [sym_param] = ACTIONS(12187), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12187), + [anon_sym_DOLLAR] = ACTIONS(12189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12187), + [anon_sym_BSLASHbegin] = ACTIONS(12189), + [anon_sym_BSLASHcaption] = ACTIONS(12189), + [anon_sym_BSLASHcite] = ACTIONS(12189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCite] = ACTIONS(12189), + [anon_sym_BSLASHnocite] = ACTIONS(12189), + [anon_sym_BSLASHcitet] = ACTIONS(12189), + [anon_sym_BSLASHcitep] = ACTIONS(12189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteauthor] = ACTIONS(12189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitetitle] = ACTIONS(12189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteyear] = ACTIONS(12189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitedate] = ACTIONS(12189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteurl] = ACTIONS(12189), + [anon_sym_BSLASHfullcite] = ACTIONS(12189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12189), + [anon_sym_BSLASHcitealt] = ACTIONS(12189), + [anon_sym_BSLASHcitealp] = ACTIONS(12189), + [anon_sym_BSLASHcitetext] = ACTIONS(12189), + [anon_sym_BSLASHparencite] = ACTIONS(12189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHParencite] = ACTIONS(12189), + [anon_sym_BSLASHfootcite] = ACTIONS(12189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12189), + [anon_sym_BSLASHtextcite] = ACTIONS(12189), + [anon_sym_BSLASHTextcite] = ACTIONS(12189), + [anon_sym_BSLASHsmartcite] = ACTIONS(12189), + [anon_sym_BSLASHSmartcite] = ACTIONS(12189), + [anon_sym_BSLASHsupercite] = ACTIONS(12189), + [anon_sym_BSLASHautocite] = ACTIONS(12189), + [anon_sym_BSLASHAutocite] = ACTIONS(12189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHvolcite] = ACTIONS(12189), + [anon_sym_BSLASHVolcite] = ACTIONS(12189), + [anon_sym_BSLASHpvolcite] = ACTIONS(12189), + [anon_sym_BSLASHPvolcite] = ACTIONS(12189), + [anon_sym_BSLASHfvolcite] = ACTIONS(12189), + [anon_sym_BSLASHftvolcite] = ACTIONS(12189), + [anon_sym_BSLASHsvolcite] = ACTIONS(12189), + [anon_sym_BSLASHSvolcite] = ACTIONS(12189), + [anon_sym_BSLASHtvolcite] = ACTIONS(12189), + [anon_sym_BSLASHTvolcite] = ACTIONS(12189), + [anon_sym_BSLASHavolcite] = ACTIONS(12189), + [anon_sym_BSLASHAvolcite] = ACTIONS(12189), + [anon_sym_BSLASHnotecite] = ACTIONS(12189), + [anon_sym_BSLASHpnotecite] = ACTIONS(12189), + [anon_sym_BSLASHPnotecite] = ACTIONS(12189), + [anon_sym_BSLASHfnotecite] = ACTIONS(12189), + [anon_sym_BSLASHusepackage] = ACTIONS(12189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12189), + [anon_sym_BSLASHinclude] = ACTIONS(12189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12189), + [anon_sym_BSLASHinput] = ACTIONS(12189), + [anon_sym_BSLASHsubfile] = ACTIONS(12189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12189), + [anon_sym_BSLASHbibliography] = ACTIONS(12189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12189), + [anon_sym_BSLASHincludesvg] = ACTIONS(12189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12189), + [anon_sym_BSLASHimport] = ACTIONS(12189), + [anon_sym_BSLASHsubimport] = ACTIONS(12189), + [anon_sym_BSLASHinputfrom] = ACTIONS(12189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12189), + [anon_sym_BSLASHincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHlabel] = ACTIONS(12189), + [anon_sym_BSLASHref] = ACTIONS(12189), + [anon_sym_BSLASHvref] = ACTIONS(12189), + [anon_sym_BSLASHVref] = ACTIONS(12189), + [anon_sym_BSLASHautoref] = ACTIONS(12189), + [anon_sym_BSLASHpageref] = ACTIONS(12189), + [anon_sym_BSLASHcref] = ACTIONS(12189), + [anon_sym_BSLASHCref] = ACTIONS(12189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnameCref] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHlabelcref] = ACTIONS(12189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12189), + [anon_sym_BSLASHeqref] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange] = ACTIONS(12189), + [anon_sym_BSLASHCrefrange] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewlabel] = ACTIONS(12189), + [anon_sym_BSLASHnewcommand] = ACTIONS(12189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12189), + [anon_sym_BSLASHgls] = ACTIONS(12189), + [anon_sym_BSLASHGls] = ACTIONS(12189), + [anon_sym_BSLASHGLS] = ACTIONS(12189), + [anon_sym_BSLASHglspl] = ACTIONS(12189), + [anon_sym_BSLASHGlspl] = ACTIONS(12189), + [anon_sym_BSLASHGLSpl] = ACTIONS(12189), + [anon_sym_BSLASHglsdisp] = ACTIONS(12189), + [anon_sym_BSLASHglslink] = ACTIONS(12189), + [anon_sym_BSLASHglstext] = ACTIONS(12189), + [anon_sym_BSLASHGlstext] = ACTIONS(12189), + [anon_sym_BSLASHGLStext] = ACTIONS(12189), + [anon_sym_BSLASHglsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12189), + [anon_sym_BSLASHglsplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSplural] = ACTIONS(12189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHglsname] = ACTIONS(12189), + [anon_sym_BSLASHGlsname] = ACTIONS(12189), + [anon_sym_BSLASHGLSname] = ACTIONS(12189), + [anon_sym_BSLASHglssymbol] = ACTIONS(12189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12189), + [anon_sym_BSLASHglsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12189), + [anon_sym_BSLASHglsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12189), + [anon_sym_BSLASHglsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12189), + [anon_sym_BSLASHglsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12189), + [anon_sym_BSLASHglsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12189), + [anon_sym_BSLASHnewacronym] = ACTIONS(12189), + [anon_sym_BSLASHacrshort] = ACTIONS(12189), + [anon_sym_BSLASHAcrshort] = ACTIONS(12189), + [anon_sym_BSLASHACRshort] = ACTIONS(12189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12189), + [anon_sym_BSLASHacrlong] = ACTIONS(12189), + [anon_sym_BSLASHAcrlong] = ACTIONS(12189), + [anon_sym_BSLASHACRlong] = ACTIONS(12189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12189), + [anon_sym_BSLASHacrfull] = ACTIONS(12189), + [anon_sym_BSLASHAcrfull] = ACTIONS(12189), + [anon_sym_BSLASHACRfull] = ACTIONS(12189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12189), + [anon_sym_BSLASHacs] = ACTIONS(12189), + [anon_sym_BSLASHAcs] = ACTIONS(12189), + [anon_sym_BSLASHacsp] = ACTIONS(12189), + [anon_sym_BSLASHAcsp] = ACTIONS(12189), + [anon_sym_BSLASHacl] = ACTIONS(12189), + [anon_sym_BSLASHAcl] = ACTIONS(12189), + [anon_sym_BSLASHaclp] = ACTIONS(12189), + [anon_sym_BSLASHAclp] = ACTIONS(12189), + [anon_sym_BSLASHacf] = ACTIONS(12189), + [anon_sym_BSLASHAcf] = ACTIONS(12189), + [anon_sym_BSLASHacfp] = ACTIONS(12189), + [anon_sym_BSLASHAcfp] = ACTIONS(12189), + [anon_sym_BSLASHac] = ACTIONS(12189), + [anon_sym_BSLASHAc] = ACTIONS(12189), + [anon_sym_BSLASHacp] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12189), + [anon_sym_BSLASHcolor] = ACTIONS(12189), + [anon_sym_BSLASHcolorbox] = ACTIONS(12189), + [anon_sym_BSLASHtextcolor] = ACTIONS(12189), + [anon_sym_BSLASHpagecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12189), + }, + [1413] = { + [sym_generic_command_name] = ACTIONS(12251), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12251), + [aux_sym_paragraph_token1] = ACTIONS(12251), + [aux_sym_subparagraph_token1] = ACTIONS(12251), + [anon_sym_BSLASHitem] = ACTIONS(12251), + [anon_sym_LBRACK] = ACTIONS(12249), + [anon_sym_RBRACK] = ACTIONS(12249), + [anon_sym_LBRACE] = ACTIONS(12249), + [anon_sym_RBRACE] = ACTIONS(12249), + [anon_sym_LPAREN] = ACTIONS(12249), + [anon_sym_COMMA] = ACTIONS(12249), + [anon_sym_EQ] = ACTIONS(12249), + [sym_word] = ACTIONS(12249), + [sym_param] = ACTIONS(12249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12249), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12249), + [anon_sym_DOLLAR] = ACTIONS(12251), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12249), + [anon_sym_BSLASHbegin] = ACTIONS(12251), + [anon_sym_BSLASHcaption] = ACTIONS(12251), + [anon_sym_BSLASHcite] = ACTIONS(12251), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCite] = ACTIONS(12251), + [anon_sym_BSLASHnocite] = ACTIONS(12251), + [anon_sym_BSLASHcitet] = ACTIONS(12251), + [anon_sym_BSLASHcitep] = ACTIONS(12251), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteauthor] = ACTIONS(12251), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12251), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitetitle] = ACTIONS(12251), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteyear] = ACTIONS(12251), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitedate] = ACTIONS(12251), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteurl] = ACTIONS(12251), + [anon_sym_BSLASHfullcite] = ACTIONS(12251), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12251), + [anon_sym_BSLASHcitealt] = ACTIONS(12251), + [anon_sym_BSLASHcitealp] = ACTIONS(12251), + [anon_sym_BSLASHcitetext] = ACTIONS(12251), + [anon_sym_BSLASHparencite] = ACTIONS(12251), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHParencite] = ACTIONS(12251), + [anon_sym_BSLASHfootcite] = ACTIONS(12251), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12251), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12251), + [anon_sym_BSLASHtextcite] = ACTIONS(12251), + [anon_sym_BSLASHTextcite] = ACTIONS(12251), + [anon_sym_BSLASHsmartcite] = ACTIONS(12251), + [anon_sym_BSLASHSmartcite] = ACTIONS(12251), + [anon_sym_BSLASHsupercite] = ACTIONS(12251), + [anon_sym_BSLASHautocite] = ACTIONS(12251), + [anon_sym_BSLASHAutocite] = ACTIONS(12251), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHvolcite] = ACTIONS(12251), + [anon_sym_BSLASHVolcite] = ACTIONS(12251), + [anon_sym_BSLASHpvolcite] = ACTIONS(12251), + [anon_sym_BSLASHPvolcite] = ACTIONS(12251), + [anon_sym_BSLASHfvolcite] = ACTIONS(12251), + [anon_sym_BSLASHftvolcite] = ACTIONS(12251), + [anon_sym_BSLASHsvolcite] = ACTIONS(12251), + [anon_sym_BSLASHSvolcite] = ACTIONS(12251), + [anon_sym_BSLASHtvolcite] = ACTIONS(12251), + [anon_sym_BSLASHTvolcite] = ACTIONS(12251), + [anon_sym_BSLASHavolcite] = ACTIONS(12251), + [anon_sym_BSLASHAvolcite] = ACTIONS(12251), + [anon_sym_BSLASHnotecite] = ACTIONS(12251), + [anon_sym_BSLASHpnotecite] = ACTIONS(12251), + [anon_sym_BSLASHPnotecite] = ACTIONS(12251), + [anon_sym_BSLASHfnotecite] = ACTIONS(12251), + [anon_sym_BSLASHusepackage] = ACTIONS(12251), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12251), + [anon_sym_BSLASHinclude] = ACTIONS(12251), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12251), + [anon_sym_BSLASHinput] = ACTIONS(12251), + [anon_sym_BSLASHsubfile] = ACTIONS(12251), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12251), + [anon_sym_BSLASHbibliography] = ACTIONS(12251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12251), + [anon_sym_BSLASHincludesvg] = ACTIONS(12251), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12251), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12251), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12251), + [anon_sym_BSLASHimport] = ACTIONS(12251), + [anon_sym_BSLASHsubimport] = ACTIONS(12251), + [anon_sym_BSLASHinputfrom] = ACTIONS(12251), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12251), + [anon_sym_BSLASHincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHlabel] = ACTIONS(12251), + [anon_sym_BSLASHref] = ACTIONS(12251), + [anon_sym_BSLASHvref] = ACTIONS(12251), + [anon_sym_BSLASHVref] = ACTIONS(12251), + [anon_sym_BSLASHautoref] = ACTIONS(12251), + [anon_sym_BSLASHpageref] = ACTIONS(12251), + [anon_sym_BSLASHcref] = ACTIONS(12251), + [anon_sym_BSLASHCref] = ACTIONS(12251), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnameCref] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHlabelcref] = ACTIONS(12251), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12251), + [anon_sym_BSLASHeqref] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange] = ACTIONS(12251), + [anon_sym_BSLASHCrefrange] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewlabel] = ACTIONS(12251), + [anon_sym_BSLASHnewcommand] = ACTIONS(12251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12251), + [anon_sym_BSLASHgls] = ACTIONS(12251), + [anon_sym_BSLASHGls] = ACTIONS(12251), + [anon_sym_BSLASHGLS] = ACTIONS(12251), + [anon_sym_BSLASHglspl] = ACTIONS(12251), + [anon_sym_BSLASHGlspl] = ACTIONS(12251), + [anon_sym_BSLASHGLSpl] = ACTIONS(12251), + [anon_sym_BSLASHglsdisp] = ACTIONS(12251), + [anon_sym_BSLASHglslink] = ACTIONS(12251), + [anon_sym_BSLASHglstext] = ACTIONS(12251), + [anon_sym_BSLASHGlstext] = ACTIONS(12251), + [anon_sym_BSLASHGLStext] = ACTIONS(12251), + [anon_sym_BSLASHglsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12251), + [anon_sym_BSLASHglsplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSplural] = ACTIONS(12251), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHglsname] = ACTIONS(12251), + [anon_sym_BSLASHGlsname] = ACTIONS(12251), + [anon_sym_BSLASHGLSname] = ACTIONS(12251), + [anon_sym_BSLASHglssymbol] = ACTIONS(12251), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12251), + [anon_sym_BSLASHglsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12251), + [anon_sym_BSLASHglsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12251), + [anon_sym_BSLASHglsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12251), + [anon_sym_BSLASHglsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12251), + [anon_sym_BSLASHglsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12251), + [anon_sym_BSLASHnewacronym] = ACTIONS(12251), + [anon_sym_BSLASHacrshort] = ACTIONS(12251), + [anon_sym_BSLASHAcrshort] = ACTIONS(12251), + [anon_sym_BSLASHACRshort] = ACTIONS(12251), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12251), + [anon_sym_BSLASHacrlong] = ACTIONS(12251), + [anon_sym_BSLASHAcrlong] = ACTIONS(12251), + [anon_sym_BSLASHACRlong] = ACTIONS(12251), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12251), + [anon_sym_BSLASHacrfull] = ACTIONS(12251), + [anon_sym_BSLASHAcrfull] = ACTIONS(12251), + [anon_sym_BSLASHACRfull] = ACTIONS(12251), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12251), + [anon_sym_BSLASHacs] = ACTIONS(12251), + [anon_sym_BSLASHAcs] = ACTIONS(12251), + [anon_sym_BSLASHacsp] = ACTIONS(12251), + [anon_sym_BSLASHAcsp] = ACTIONS(12251), + [anon_sym_BSLASHacl] = ACTIONS(12251), + [anon_sym_BSLASHAcl] = ACTIONS(12251), + [anon_sym_BSLASHaclp] = ACTIONS(12251), + [anon_sym_BSLASHAclp] = ACTIONS(12251), + [anon_sym_BSLASHacf] = ACTIONS(12251), + [anon_sym_BSLASHAcf] = ACTIONS(12251), + [anon_sym_BSLASHacfp] = ACTIONS(12251), + [anon_sym_BSLASHAcfp] = ACTIONS(12251), + [anon_sym_BSLASHac] = ACTIONS(12251), + [anon_sym_BSLASHAc] = ACTIONS(12251), + [anon_sym_BSLASHacp] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12251), + [anon_sym_BSLASHcolor] = ACTIONS(12251), + [anon_sym_BSLASHcolorbox] = ACTIONS(12251), + [anon_sym_BSLASHtextcolor] = ACTIONS(12251), + [anon_sym_BSLASHpagecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12251), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12251), + }, + [1414] = { + [sym_generic_command_name] = ACTIONS(12259), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12259), + [aux_sym_paragraph_token1] = ACTIONS(12259), + [aux_sym_subparagraph_token1] = ACTIONS(12259), + [anon_sym_BSLASHitem] = ACTIONS(12259), + [anon_sym_LBRACK] = ACTIONS(12257), + [anon_sym_RBRACK] = ACTIONS(12257), + [anon_sym_LBRACE] = ACTIONS(12257), + [anon_sym_RBRACE] = ACTIONS(12257), + [anon_sym_LPAREN] = ACTIONS(12257), + [anon_sym_COMMA] = ACTIONS(12257), + [anon_sym_EQ] = ACTIONS(12257), + [sym_word] = ACTIONS(12257), + [sym_param] = ACTIONS(12257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12257), + [anon_sym_DOLLAR] = ACTIONS(12259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12257), + [anon_sym_BSLASHbegin] = ACTIONS(12259), + [anon_sym_BSLASHcaption] = ACTIONS(12259), + [anon_sym_BSLASHcite] = ACTIONS(12259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCite] = ACTIONS(12259), + [anon_sym_BSLASHnocite] = ACTIONS(12259), + [anon_sym_BSLASHcitet] = ACTIONS(12259), + [anon_sym_BSLASHcitep] = ACTIONS(12259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteauthor] = ACTIONS(12259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitetitle] = ACTIONS(12259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteyear] = ACTIONS(12259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitedate] = ACTIONS(12259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteurl] = ACTIONS(12259), + [anon_sym_BSLASHfullcite] = ACTIONS(12259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12259), + [anon_sym_BSLASHcitealt] = ACTIONS(12259), + [anon_sym_BSLASHcitealp] = ACTIONS(12259), + [anon_sym_BSLASHcitetext] = ACTIONS(12259), + [anon_sym_BSLASHparencite] = ACTIONS(12259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHParencite] = ACTIONS(12259), + [anon_sym_BSLASHfootcite] = ACTIONS(12259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12259), + [anon_sym_BSLASHtextcite] = ACTIONS(12259), + [anon_sym_BSLASHTextcite] = ACTIONS(12259), + [anon_sym_BSLASHsmartcite] = ACTIONS(12259), + [anon_sym_BSLASHSmartcite] = ACTIONS(12259), + [anon_sym_BSLASHsupercite] = ACTIONS(12259), + [anon_sym_BSLASHautocite] = ACTIONS(12259), + [anon_sym_BSLASHAutocite] = ACTIONS(12259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHvolcite] = ACTIONS(12259), + [anon_sym_BSLASHVolcite] = ACTIONS(12259), + [anon_sym_BSLASHpvolcite] = ACTIONS(12259), + [anon_sym_BSLASHPvolcite] = ACTIONS(12259), + [anon_sym_BSLASHfvolcite] = ACTIONS(12259), + [anon_sym_BSLASHftvolcite] = ACTIONS(12259), + [anon_sym_BSLASHsvolcite] = ACTIONS(12259), + [anon_sym_BSLASHSvolcite] = ACTIONS(12259), + [anon_sym_BSLASHtvolcite] = ACTIONS(12259), + [anon_sym_BSLASHTvolcite] = ACTIONS(12259), + [anon_sym_BSLASHavolcite] = ACTIONS(12259), + [anon_sym_BSLASHAvolcite] = ACTIONS(12259), + [anon_sym_BSLASHnotecite] = ACTIONS(12259), + [anon_sym_BSLASHpnotecite] = ACTIONS(12259), + [anon_sym_BSLASHPnotecite] = ACTIONS(12259), + [anon_sym_BSLASHfnotecite] = ACTIONS(12259), + [anon_sym_BSLASHusepackage] = ACTIONS(12259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12259), + [anon_sym_BSLASHinclude] = ACTIONS(12259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12259), + [anon_sym_BSLASHinput] = ACTIONS(12259), + [anon_sym_BSLASHsubfile] = ACTIONS(12259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12259), + [anon_sym_BSLASHbibliography] = ACTIONS(12259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12259), + [anon_sym_BSLASHincludesvg] = ACTIONS(12259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12259), + [anon_sym_BSLASHimport] = ACTIONS(12259), + [anon_sym_BSLASHsubimport] = ACTIONS(12259), + [anon_sym_BSLASHinputfrom] = ACTIONS(12259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12259), + [anon_sym_BSLASHincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHlabel] = ACTIONS(12259), + [anon_sym_BSLASHref] = ACTIONS(12259), + [anon_sym_BSLASHvref] = ACTIONS(12259), + [anon_sym_BSLASHVref] = ACTIONS(12259), + [anon_sym_BSLASHautoref] = ACTIONS(12259), + [anon_sym_BSLASHpageref] = ACTIONS(12259), + [anon_sym_BSLASHcref] = ACTIONS(12259), + [anon_sym_BSLASHCref] = ACTIONS(12259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnameCref] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHlabelcref] = ACTIONS(12259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12259), + [anon_sym_BSLASHeqref] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange] = ACTIONS(12259), + [anon_sym_BSLASHCrefrange] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewlabel] = ACTIONS(12259), + [anon_sym_BSLASHnewcommand] = ACTIONS(12259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12259), + [anon_sym_BSLASHgls] = ACTIONS(12259), + [anon_sym_BSLASHGls] = ACTIONS(12259), + [anon_sym_BSLASHGLS] = ACTIONS(12259), + [anon_sym_BSLASHglspl] = ACTIONS(12259), + [anon_sym_BSLASHGlspl] = ACTIONS(12259), + [anon_sym_BSLASHGLSpl] = ACTIONS(12259), + [anon_sym_BSLASHglsdisp] = ACTIONS(12259), + [anon_sym_BSLASHglslink] = ACTIONS(12259), + [anon_sym_BSLASHglstext] = ACTIONS(12259), + [anon_sym_BSLASHGlstext] = ACTIONS(12259), + [anon_sym_BSLASHGLStext] = ACTIONS(12259), + [anon_sym_BSLASHglsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12259), + [anon_sym_BSLASHglsplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSplural] = ACTIONS(12259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHglsname] = ACTIONS(12259), + [anon_sym_BSLASHGlsname] = ACTIONS(12259), + [anon_sym_BSLASHGLSname] = ACTIONS(12259), + [anon_sym_BSLASHglssymbol] = ACTIONS(12259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12259), + [anon_sym_BSLASHglsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12259), + [anon_sym_BSLASHglsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12259), + [anon_sym_BSLASHglsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12259), + [anon_sym_BSLASHglsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12259), + [anon_sym_BSLASHglsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12259), + [anon_sym_BSLASHnewacronym] = ACTIONS(12259), + [anon_sym_BSLASHacrshort] = ACTIONS(12259), + [anon_sym_BSLASHAcrshort] = ACTIONS(12259), + [anon_sym_BSLASHACRshort] = ACTIONS(12259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12259), + [anon_sym_BSLASHacrlong] = ACTIONS(12259), + [anon_sym_BSLASHAcrlong] = ACTIONS(12259), + [anon_sym_BSLASHACRlong] = ACTIONS(12259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12259), + [anon_sym_BSLASHacrfull] = ACTIONS(12259), + [anon_sym_BSLASHAcrfull] = ACTIONS(12259), + [anon_sym_BSLASHACRfull] = ACTIONS(12259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12259), + [anon_sym_BSLASHacs] = ACTIONS(12259), + [anon_sym_BSLASHAcs] = ACTIONS(12259), + [anon_sym_BSLASHacsp] = ACTIONS(12259), + [anon_sym_BSLASHAcsp] = ACTIONS(12259), + [anon_sym_BSLASHacl] = ACTIONS(12259), + [anon_sym_BSLASHAcl] = ACTIONS(12259), + [anon_sym_BSLASHaclp] = ACTIONS(12259), + [anon_sym_BSLASHAclp] = ACTIONS(12259), + [anon_sym_BSLASHacf] = ACTIONS(12259), + [anon_sym_BSLASHAcf] = ACTIONS(12259), + [anon_sym_BSLASHacfp] = ACTIONS(12259), + [anon_sym_BSLASHAcfp] = ACTIONS(12259), + [anon_sym_BSLASHac] = ACTIONS(12259), + [anon_sym_BSLASHAc] = ACTIONS(12259), + [anon_sym_BSLASHacp] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12259), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12259), + [anon_sym_BSLASHcolor] = ACTIONS(12259), + [anon_sym_BSLASHcolorbox] = ACTIONS(12259), + [anon_sym_BSLASHtextcolor] = ACTIONS(12259), + [anon_sym_BSLASHpagecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12259), + }, + [1415] = { + [sym_generic_command_name] = ACTIONS(12263), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12263), + [aux_sym_paragraph_token1] = ACTIONS(12263), + [aux_sym_subparagraph_token1] = ACTIONS(12263), + [anon_sym_BSLASHitem] = ACTIONS(12263), + [anon_sym_LBRACK] = ACTIONS(12261), + [anon_sym_RBRACK] = ACTIONS(12261), + [anon_sym_LBRACE] = ACTIONS(12261), + [anon_sym_RBRACE] = ACTIONS(12261), + [anon_sym_LPAREN] = ACTIONS(12261), + [anon_sym_COMMA] = ACTIONS(12261), + [anon_sym_EQ] = ACTIONS(12261), + [sym_word] = ACTIONS(12261), + [sym_param] = ACTIONS(12261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12261), + [anon_sym_DOLLAR] = ACTIONS(12263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12261), + [anon_sym_BSLASHbegin] = ACTIONS(12263), + [anon_sym_BSLASHcaption] = ACTIONS(12263), + [anon_sym_BSLASHcite] = ACTIONS(12263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCite] = ACTIONS(12263), + [anon_sym_BSLASHnocite] = ACTIONS(12263), + [anon_sym_BSLASHcitet] = ACTIONS(12263), + [anon_sym_BSLASHcitep] = ACTIONS(12263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteauthor] = ACTIONS(12263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitetitle] = ACTIONS(12263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteyear] = ACTIONS(12263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitedate] = ACTIONS(12263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteurl] = ACTIONS(12263), + [anon_sym_BSLASHfullcite] = ACTIONS(12263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12263), + [anon_sym_BSLASHcitealt] = ACTIONS(12263), + [anon_sym_BSLASHcitealp] = ACTIONS(12263), + [anon_sym_BSLASHcitetext] = ACTIONS(12263), + [anon_sym_BSLASHparencite] = ACTIONS(12263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHParencite] = ACTIONS(12263), + [anon_sym_BSLASHfootcite] = ACTIONS(12263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12263), + [anon_sym_BSLASHtextcite] = ACTIONS(12263), + [anon_sym_BSLASHTextcite] = ACTIONS(12263), + [anon_sym_BSLASHsmartcite] = ACTIONS(12263), + [anon_sym_BSLASHSmartcite] = ACTIONS(12263), + [anon_sym_BSLASHsupercite] = ACTIONS(12263), + [anon_sym_BSLASHautocite] = ACTIONS(12263), + [anon_sym_BSLASHAutocite] = ACTIONS(12263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHvolcite] = ACTIONS(12263), + [anon_sym_BSLASHVolcite] = ACTIONS(12263), + [anon_sym_BSLASHpvolcite] = ACTIONS(12263), + [anon_sym_BSLASHPvolcite] = ACTIONS(12263), + [anon_sym_BSLASHfvolcite] = ACTIONS(12263), + [anon_sym_BSLASHftvolcite] = ACTIONS(12263), + [anon_sym_BSLASHsvolcite] = ACTIONS(12263), + [anon_sym_BSLASHSvolcite] = ACTIONS(12263), + [anon_sym_BSLASHtvolcite] = ACTIONS(12263), + [anon_sym_BSLASHTvolcite] = ACTIONS(12263), + [anon_sym_BSLASHavolcite] = ACTIONS(12263), + [anon_sym_BSLASHAvolcite] = ACTIONS(12263), + [anon_sym_BSLASHnotecite] = ACTIONS(12263), + [anon_sym_BSLASHpnotecite] = ACTIONS(12263), + [anon_sym_BSLASHPnotecite] = ACTIONS(12263), + [anon_sym_BSLASHfnotecite] = ACTIONS(12263), + [anon_sym_BSLASHusepackage] = ACTIONS(12263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12263), + [anon_sym_BSLASHinclude] = ACTIONS(12263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12263), + [anon_sym_BSLASHinput] = ACTIONS(12263), + [anon_sym_BSLASHsubfile] = ACTIONS(12263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12263), + [anon_sym_BSLASHbibliography] = ACTIONS(12263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12263), + [anon_sym_BSLASHincludesvg] = ACTIONS(12263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12263), + [anon_sym_BSLASHimport] = ACTIONS(12263), + [anon_sym_BSLASHsubimport] = ACTIONS(12263), + [anon_sym_BSLASHinputfrom] = ACTIONS(12263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12263), + [anon_sym_BSLASHincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHlabel] = ACTIONS(12263), + [anon_sym_BSLASHref] = ACTIONS(12263), + [anon_sym_BSLASHvref] = ACTIONS(12263), + [anon_sym_BSLASHVref] = ACTIONS(12263), + [anon_sym_BSLASHautoref] = ACTIONS(12263), + [anon_sym_BSLASHpageref] = ACTIONS(12263), + [anon_sym_BSLASHcref] = ACTIONS(12263), + [anon_sym_BSLASHCref] = ACTIONS(12263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnameCref] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHlabelcref] = ACTIONS(12263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12263), + [anon_sym_BSLASHeqref] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange] = ACTIONS(12263), + [anon_sym_BSLASHCrefrange] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewlabel] = ACTIONS(12263), + [anon_sym_BSLASHnewcommand] = ACTIONS(12263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12263), + [anon_sym_BSLASHgls] = ACTIONS(12263), + [anon_sym_BSLASHGls] = ACTIONS(12263), + [anon_sym_BSLASHGLS] = ACTIONS(12263), + [anon_sym_BSLASHglspl] = ACTIONS(12263), + [anon_sym_BSLASHGlspl] = ACTIONS(12263), + [anon_sym_BSLASHGLSpl] = ACTIONS(12263), + [anon_sym_BSLASHglsdisp] = ACTIONS(12263), + [anon_sym_BSLASHglslink] = ACTIONS(12263), + [anon_sym_BSLASHglstext] = ACTIONS(12263), + [anon_sym_BSLASHGlstext] = ACTIONS(12263), + [anon_sym_BSLASHGLStext] = ACTIONS(12263), + [anon_sym_BSLASHglsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12263), + [anon_sym_BSLASHglsplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSplural] = ACTIONS(12263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHglsname] = ACTIONS(12263), + [anon_sym_BSLASHGlsname] = ACTIONS(12263), + [anon_sym_BSLASHGLSname] = ACTIONS(12263), + [anon_sym_BSLASHglssymbol] = ACTIONS(12263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12263), + [anon_sym_BSLASHglsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12263), + [anon_sym_BSLASHglsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12263), + [anon_sym_BSLASHglsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12263), + [anon_sym_BSLASHglsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12263), + [anon_sym_BSLASHglsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12263), + [anon_sym_BSLASHnewacronym] = ACTIONS(12263), + [anon_sym_BSLASHacrshort] = ACTIONS(12263), + [anon_sym_BSLASHAcrshort] = ACTIONS(12263), + [anon_sym_BSLASHACRshort] = ACTIONS(12263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12263), + [anon_sym_BSLASHacrlong] = ACTIONS(12263), + [anon_sym_BSLASHAcrlong] = ACTIONS(12263), + [anon_sym_BSLASHACRlong] = ACTIONS(12263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12263), + [anon_sym_BSLASHacrfull] = ACTIONS(12263), + [anon_sym_BSLASHAcrfull] = ACTIONS(12263), + [anon_sym_BSLASHACRfull] = ACTIONS(12263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12263), + [anon_sym_BSLASHacs] = ACTIONS(12263), + [anon_sym_BSLASHAcs] = ACTIONS(12263), + [anon_sym_BSLASHacsp] = ACTIONS(12263), + [anon_sym_BSLASHAcsp] = ACTIONS(12263), + [anon_sym_BSLASHacl] = ACTIONS(12263), + [anon_sym_BSLASHAcl] = ACTIONS(12263), + [anon_sym_BSLASHaclp] = ACTIONS(12263), + [anon_sym_BSLASHAclp] = ACTIONS(12263), + [anon_sym_BSLASHacf] = ACTIONS(12263), + [anon_sym_BSLASHAcf] = ACTIONS(12263), + [anon_sym_BSLASHacfp] = ACTIONS(12263), + [anon_sym_BSLASHAcfp] = ACTIONS(12263), + [anon_sym_BSLASHac] = ACTIONS(12263), + [anon_sym_BSLASHAc] = ACTIONS(12263), + [anon_sym_BSLASHacp] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12263), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12263), + [anon_sym_BSLASHcolor] = ACTIONS(12263), + [anon_sym_BSLASHcolorbox] = ACTIONS(12263), + [anon_sym_BSLASHtextcolor] = ACTIONS(12263), + [anon_sym_BSLASHpagecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12263), + }, + [1416] = { + [sym_generic_command_name] = ACTIONS(12319), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12319), + [aux_sym_paragraph_token1] = ACTIONS(12319), + [aux_sym_subparagraph_token1] = ACTIONS(12319), + [anon_sym_BSLASHitem] = ACTIONS(12319), + [anon_sym_LBRACK] = ACTIONS(12317), + [anon_sym_RBRACK] = ACTIONS(12317), + [anon_sym_LBRACE] = ACTIONS(12317), + [anon_sym_RBRACE] = ACTIONS(12317), + [anon_sym_LPAREN] = ACTIONS(12317), + [anon_sym_COMMA] = ACTIONS(12317), + [anon_sym_EQ] = ACTIONS(12317), + [sym_word] = ACTIONS(12317), + [sym_param] = ACTIONS(12317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12317), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12317), + [anon_sym_DOLLAR] = ACTIONS(12319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12317), + [anon_sym_BSLASHbegin] = ACTIONS(12319), + [anon_sym_BSLASHcaption] = ACTIONS(12319), + [anon_sym_BSLASHcite] = ACTIONS(12319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCite] = ACTIONS(12319), + [anon_sym_BSLASHnocite] = ACTIONS(12319), + [anon_sym_BSLASHcitet] = ACTIONS(12319), + [anon_sym_BSLASHcitep] = ACTIONS(12319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteauthor] = ACTIONS(12319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitetitle] = ACTIONS(12319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteyear] = ACTIONS(12319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitedate] = ACTIONS(12319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteurl] = ACTIONS(12319), + [anon_sym_BSLASHfullcite] = ACTIONS(12319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12319), + [anon_sym_BSLASHcitealt] = ACTIONS(12319), + [anon_sym_BSLASHcitealp] = ACTIONS(12319), + [anon_sym_BSLASHcitetext] = ACTIONS(12319), + [anon_sym_BSLASHparencite] = ACTIONS(12319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHParencite] = ACTIONS(12319), + [anon_sym_BSLASHfootcite] = ACTIONS(12319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12319), + [anon_sym_BSLASHtextcite] = ACTIONS(12319), + [anon_sym_BSLASHTextcite] = ACTIONS(12319), + [anon_sym_BSLASHsmartcite] = ACTIONS(12319), + [anon_sym_BSLASHSmartcite] = ACTIONS(12319), + [anon_sym_BSLASHsupercite] = ACTIONS(12319), + [anon_sym_BSLASHautocite] = ACTIONS(12319), + [anon_sym_BSLASHAutocite] = ACTIONS(12319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHvolcite] = ACTIONS(12319), + [anon_sym_BSLASHVolcite] = ACTIONS(12319), + [anon_sym_BSLASHpvolcite] = ACTIONS(12319), + [anon_sym_BSLASHPvolcite] = ACTIONS(12319), + [anon_sym_BSLASHfvolcite] = ACTIONS(12319), + [anon_sym_BSLASHftvolcite] = ACTIONS(12319), + [anon_sym_BSLASHsvolcite] = ACTIONS(12319), + [anon_sym_BSLASHSvolcite] = ACTIONS(12319), + [anon_sym_BSLASHtvolcite] = ACTIONS(12319), + [anon_sym_BSLASHTvolcite] = ACTIONS(12319), + [anon_sym_BSLASHavolcite] = ACTIONS(12319), + [anon_sym_BSLASHAvolcite] = ACTIONS(12319), + [anon_sym_BSLASHnotecite] = ACTIONS(12319), + [anon_sym_BSLASHpnotecite] = ACTIONS(12319), + [anon_sym_BSLASHPnotecite] = ACTIONS(12319), + [anon_sym_BSLASHfnotecite] = ACTIONS(12319), + [anon_sym_BSLASHusepackage] = ACTIONS(12319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12319), + [anon_sym_BSLASHinclude] = ACTIONS(12319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12319), + [anon_sym_BSLASHinput] = ACTIONS(12319), + [anon_sym_BSLASHsubfile] = ACTIONS(12319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12319), + [anon_sym_BSLASHbibliography] = ACTIONS(12319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12319), + [anon_sym_BSLASHincludesvg] = ACTIONS(12319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12319), + [anon_sym_BSLASHimport] = ACTIONS(12319), + [anon_sym_BSLASHsubimport] = ACTIONS(12319), + [anon_sym_BSLASHinputfrom] = ACTIONS(12319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12319), + [anon_sym_BSLASHincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHlabel] = ACTIONS(12319), + [anon_sym_BSLASHref] = ACTIONS(12319), + [anon_sym_BSLASHvref] = ACTIONS(12319), + [anon_sym_BSLASHVref] = ACTIONS(12319), + [anon_sym_BSLASHautoref] = ACTIONS(12319), + [anon_sym_BSLASHpageref] = ACTIONS(12319), + [anon_sym_BSLASHcref] = ACTIONS(12319), + [anon_sym_BSLASHCref] = ACTIONS(12319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnameCref] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHlabelcref] = ACTIONS(12319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12319), + [anon_sym_BSLASHeqref] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange] = ACTIONS(12319), + [anon_sym_BSLASHCrefrange] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewlabel] = ACTIONS(12319), + [anon_sym_BSLASHnewcommand] = ACTIONS(12319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12319), + [anon_sym_BSLASHgls] = ACTIONS(12319), + [anon_sym_BSLASHGls] = ACTIONS(12319), + [anon_sym_BSLASHGLS] = ACTIONS(12319), + [anon_sym_BSLASHglspl] = ACTIONS(12319), + [anon_sym_BSLASHGlspl] = ACTIONS(12319), + [anon_sym_BSLASHGLSpl] = ACTIONS(12319), + [anon_sym_BSLASHglsdisp] = ACTIONS(12319), + [anon_sym_BSLASHglslink] = ACTIONS(12319), + [anon_sym_BSLASHglstext] = ACTIONS(12319), + [anon_sym_BSLASHGlstext] = ACTIONS(12319), + [anon_sym_BSLASHGLStext] = ACTIONS(12319), + [anon_sym_BSLASHglsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12319), + [anon_sym_BSLASHglsplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSplural] = ACTIONS(12319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHglsname] = ACTIONS(12319), + [anon_sym_BSLASHGlsname] = ACTIONS(12319), + [anon_sym_BSLASHGLSname] = ACTIONS(12319), + [anon_sym_BSLASHglssymbol] = ACTIONS(12319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12319), + [anon_sym_BSLASHglsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12319), + [anon_sym_BSLASHglsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12319), + [anon_sym_BSLASHglsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12319), + [anon_sym_BSLASHglsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12319), + [anon_sym_BSLASHglsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12319), + [anon_sym_BSLASHnewacronym] = ACTIONS(12319), + [anon_sym_BSLASHacrshort] = ACTIONS(12319), + [anon_sym_BSLASHAcrshort] = ACTIONS(12319), + [anon_sym_BSLASHACRshort] = ACTIONS(12319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12319), + [anon_sym_BSLASHacrlong] = ACTIONS(12319), + [anon_sym_BSLASHAcrlong] = ACTIONS(12319), + [anon_sym_BSLASHACRlong] = ACTIONS(12319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12319), + [anon_sym_BSLASHacrfull] = ACTIONS(12319), + [anon_sym_BSLASHAcrfull] = ACTIONS(12319), + [anon_sym_BSLASHACRfull] = ACTIONS(12319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12319), + [anon_sym_BSLASHacs] = ACTIONS(12319), + [anon_sym_BSLASHAcs] = ACTIONS(12319), + [anon_sym_BSLASHacsp] = ACTIONS(12319), + [anon_sym_BSLASHAcsp] = ACTIONS(12319), + [anon_sym_BSLASHacl] = ACTIONS(12319), + [anon_sym_BSLASHAcl] = ACTIONS(12319), + [anon_sym_BSLASHaclp] = ACTIONS(12319), + [anon_sym_BSLASHAclp] = ACTIONS(12319), + [anon_sym_BSLASHacf] = ACTIONS(12319), + [anon_sym_BSLASHAcf] = ACTIONS(12319), + [anon_sym_BSLASHacfp] = ACTIONS(12319), + [anon_sym_BSLASHAcfp] = ACTIONS(12319), + [anon_sym_BSLASHac] = ACTIONS(12319), + [anon_sym_BSLASHAc] = ACTIONS(12319), + [anon_sym_BSLASHacp] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12319), + [anon_sym_BSLASHcolor] = ACTIONS(12319), + [anon_sym_BSLASHcolorbox] = ACTIONS(12319), + [anon_sym_BSLASHtextcolor] = ACTIONS(12319), + [anon_sym_BSLASHpagecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12319), + }, + [1417] = { + [sym_generic_command_name] = ACTIONS(12267), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12267), + [aux_sym_paragraph_token1] = ACTIONS(12267), + [aux_sym_subparagraph_token1] = ACTIONS(12267), + [anon_sym_BSLASHitem] = ACTIONS(12267), + [anon_sym_LBRACK] = ACTIONS(12265), + [anon_sym_RBRACK] = ACTIONS(12265), + [anon_sym_LBRACE] = ACTIONS(12265), + [anon_sym_RBRACE] = ACTIONS(12265), + [anon_sym_LPAREN] = ACTIONS(12265), + [anon_sym_COMMA] = ACTIONS(12265), + [anon_sym_EQ] = ACTIONS(12265), + [sym_word] = ACTIONS(12265), + [sym_param] = ACTIONS(12265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12265), + [anon_sym_DOLLAR] = ACTIONS(12267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12265), + [anon_sym_BSLASHbegin] = ACTIONS(12267), + [anon_sym_BSLASHcaption] = ACTIONS(12267), + [anon_sym_BSLASHcite] = ACTIONS(12267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCite] = ACTIONS(12267), + [anon_sym_BSLASHnocite] = ACTIONS(12267), + [anon_sym_BSLASHcitet] = ACTIONS(12267), + [anon_sym_BSLASHcitep] = ACTIONS(12267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteauthor] = ACTIONS(12267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitetitle] = ACTIONS(12267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteyear] = ACTIONS(12267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitedate] = ACTIONS(12267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteurl] = ACTIONS(12267), + [anon_sym_BSLASHfullcite] = ACTIONS(12267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12267), + [anon_sym_BSLASHcitealt] = ACTIONS(12267), + [anon_sym_BSLASHcitealp] = ACTIONS(12267), + [anon_sym_BSLASHcitetext] = ACTIONS(12267), + [anon_sym_BSLASHparencite] = ACTIONS(12267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHParencite] = ACTIONS(12267), + [anon_sym_BSLASHfootcite] = ACTIONS(12267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12267), + [anon_sym_BSLASHtextcite] = ACTIONS(12267), + [anon_sym_BSLASHTextcite] = ACTIONS(12267), + [anon_sym_BSLASHsmartcite] = ACTIONS(12267), + [anon_sym_BSLASHSmartcite] = ACTIONS(12267), + [anon_sym_BSLASHsupercite] = ACTIONS(12267), + [anon_sym_BSLASHautocite] = ACTIONS(12267), + [anon_sym_BSLASHAutocite] = ACTIONS(12267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHvolcite] = ACTIONS(12267), + [anon_sym_BSLASHVolcite] = ACTIONS(12267), + [anon_sym_BSLASHpvolcite] = ACTIONS(12267), + [anon_sym_BSLASHPvolcite] = ACTIONS(12267), + [anon_sym_BSLASHfvolcite] = ACTIONS(12267), + [anon_sym_BSLASHftvolcite] = ACTIONS(12267), + [anon_sym_BSLASHsvolcite] = ACTIONS(12267), + [anon_sym_BSLASHSvolcite] = ACTIONS(12267), + [anon_sym_BSLASHtvolcite] = ACTIONS(12267), + [anon_sym_BSLASHTvolcite] = ACTIONS(12267), + [anon_sym_BSLASHavolcite] = ACTIONS(12267), + [anon_sym_BSLASHAvolcite] = ACTIONS(12267), + [anon_sym_BSLASHnotecite] = ACTIONS(12267), + [anon_sym_BSLASHpnotecite] = ACTIONS(12267), + [anon_sym_BSLASHPnotecite] = ACTIONS(12267), + [anon_sym_BSLASHfnotecite] = ACTIONS(12267), + [anon_sym_BSLASHusepackage] = ACTIONS(12267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12267), + [anon_sym_BSLASHinclude] = ACTIONS(12267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12267), + [anon_sym_BSLASHinput] = ACTIONS(12267), + [anon_sym_BSLASHsubfile] = ACTIONS(12267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12267), + [anon_sym_BSLASHbibliography] = ACTIONS(12267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12267), + [anon_sym_BSLASHincludesvg] = ACTIONS(12267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12267), + [anon_sym_BSLASHimport] = ACTIONS(12267), + [anon_sym_BSLASHsubimport] = ACTIONS(12267), + [anon_sym_BSLASHinputfrom] = ACTIONS(12267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12267), + [anon_sym_BSLASHincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHlabel] = ACTIONS(12267), + [anon_sym_BSLASHref] = ACTIONS(12267), + [anon_sym_BSLASHvref] = ACTIONS(12267), + [anon_sym_BSLASHVref] = ACTIONS(12267), + [anon_sym_BSLASHautoref] = ACTIONS(12267), + [anon_sym_BSLASHpageref] = ACTIONS(12267), + [anon_sym_BSLASHcref] = ACTIONS(12267), + [anon_sym_BSLASHCref] = ACTIONS(12267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnameCref] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHlabelcref] = ACTIONS(12267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12267), + [anon_sym_BSLASHeqref] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange] = ACTIONS(12267), + [anon_sym_BSLASHCrefrange] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewlabel] = ACTIONS(12267), + [anon_sym_BSLASHnewcommand] = ACTIONS(12267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12267), + [anon_sym_BSLASHgls] = ACTIONS(12267), + [anon_sym_BSLASHGls] = ACTIONS(12267), + [anon_sym_BSLASHGLS] = ACTIONS(12267), + [anon_sym_BSLASHglspl] = ACTIONS(12267), + [anon_sym_BSLASHGlspl] = ACTIONS(12267), + [anon_sym_BSLASHGLSpl] = ACTIONS(12267), + [anon_sym_BSLASHglsdisp] = ACTIONS(12267), + [anon_sym_BSLASHglslink] = ACTIONS(12267), + [anon_sym_BSLASHglstext] = ACTIONS(12267), + [anon_sym_BSLASHGlstext] = ACTIONS(12267), + [anon_sym_BSLASHGLStext] = ACTIONS(12267), + [anon_sym_BSLASHglsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12267), + [anon_sym_BSLASHglsplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSplural] = ACTIONS(12267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHglsname] = ACTIONS(12267), + [anon_sym_BSLASHGlsname] = ACTIONS(12267), + [anon_sym_BSLASHGLSname] = ACTIONS(12267), + [anon_sym_BSLASHglssymbol] = ACTIONS(12267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12267), + [anon_sym_BSLASHglsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12267), + [anon_sym_BSLASHglsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12267), + [anon_sym_BSLASHglsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12267), + [anon_sym_BSLASHglsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12267), + [anon_sym_BSLASHglsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12267), + [anon_sym_BSLASHnewacronym] = ACTIONS(12267), + [anon_sym_BSLASHacrshort] = ACTIONS(12267), + [anon_sym_BSLASHAcrshort] = ACTIONS(12267), + [anon_sym_BSLASHACRshort] = ACTIONS(12267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12267), + [anon_sym_BSLASHacrlong] = ACTIONS(12267), + [anon_sym_BSLASHAcrlong] = ACTIONS(12267), + [anon_sym_BSLASHACRlong] = ACTIONS(12267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12267), + [anon_sym_BSLASHacrfull] = ACTIONS(12267), + [anon_sym_BSLASHAcrfull] = ACTIONS(12267), + [anon_sym_BSLASHACRfull] = ACTIONS(12267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12267), + [anon_sym_BSLASHacs] = ACTIONS(12267), + [anon_sym_BSLASHAcs] = ACTIONS(12267), + [anon_sym_BSLASHacsp] = ACTIONS(12267), + [anon_sym_BSLASHAcsp] = ACTIONS(12267), + [anon_sym_BSLASHacl] = ACTIONS(12267), + [anon_sym_BSLASHAcl] = ACTIONS(12267), + [anon_sym_BSLASHaclp] = ACTIONS(12267), + [anon_sym_BSLASHAclp] = ACTIONS(12267), + [anon_sym_BSLASHacf] = ACTIONS(12267), + [anon_sym_BSLASHAcf] = ACTIONS(12267), + [anon_sym_BSLASHacfp] = ACTIONS(12267), + [anon_sym_BSLASHAcfp] = ACTIONS(12267), + [anon_sym_BSLASHac] = ACTIONS(12267), + [anon_sym_BSLASHAc] = ACTIONS(12267), + [anon_sym_BSLASHacp] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12267), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12267), + [anon_sym_BSLASHcolor] = ACTIONS(12267), + [anon_sym_BSLASHcolorbox] = ACTIONS(12267), + [anon_sym_BSLASHtextcolor] = ACTIONS(12267), + [anon_sym_BSLASHpagecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12267), + }, + [1418] = { + [sym_generic_command_name] = ACTIONS(12271), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12271), + [aux_sym_paragraph_token1] = ACTIONS(12271), + [aux_sym_subparagraph_token1] = ACTIONS(12271), + [anon_sym_BSLASHitem] = ACTIONS(12271), + [anon_sym_LBRACK] = ACTIONS(12269), + [anon_sym_RBRACK] = ACTIONS(12269), + [anon_sym_LBRACE] = ACTIONS(12269), + [anon_sym_RBRACE] = ACTIONS(12269), + [anon_sym_LPAREN] = ACTIONS(12269), + [anon_sym_COMMA] = ACTIONS(12269), + [anon_sym_EQ] = ACTIONS(12269), + [sym_word] = ACTIONS(12269), + [sym_param] = ACTIONS(12269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12269), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12269), + [anon_sym_DOLLAR] = ACTIONS(12271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12269), + [anon_sym_BSLASHbegin] = ACTIONS(12271), + [anon_sym_BSLASHcaption] = ACTIONS(12271), + [anon_sym_BSLASHcite] = ACTIONS(12271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCite] = ACTIONS(12271), + [anon_sym_BSLASHnocite] = ACTIONS(12271), + [anon_sym_BSLASHcitet] = ACTIONS(12271), + [anon_sym_BSLASHcitep] = ACTIONS(12271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteauthor] = ACTIONS(12271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitetitle] = ACTIONS(12271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteyear] = ACTIONS(12271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitedate] = ACTIONS(12271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteurl] = ACTIONS(12271), + [anon_sym_BSLASHfullcite] = ACTIONS(12271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12271), + [anon_sym_BSLASHcitealt] = ACTIONS(12271), + [anon_sym_BSLASHcitealp] = ACTIONS(12271), + [anon_sym_BSLASHcitetext] = ACTIONS(12271), + [anon_sym_BSLASHparencite] = ACTIONS(12271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHParencite] = ACTIONS(12271), + [anon_sym_BSLASHfootcite] = ACTIONS(12271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12271), + [anon_sym_BSLASHtextcite] = ACTIONS(12271), + [anon_sym_BSLASHTextcite] = ACTIONS(12271), + [anon_sym_BSLASHsmartcite] = ACTIONS(12271), + [anon_sym_BSLASHSmartcite] = ACTIONS(12271), + [anon_sym_BSLASHsupercite] = ACTIONS(12271), + [anon_sym_BSLASHautocite] = ACTIONS(12271), + [anon_sym_BSLASHAutocite] = ACTIONS(12271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHvolcite] = ACTIONS(12271), + [anon_sym_BSLASHVolcite] = ACTIONS(12271), + [anon_sym_BSLASHpvolcite] = ACTIONS(12271), + [anon_sym_BSLASHPvolcite] = ACTIONS(12271), + [anon_sym_BSLASHfvolcite] = ACTIONS(12271), + [anon_sym_BSLASHftvolcite] = ACTIONS(12271), + [anon_sym_BSLASHsvolcite] = ACTIONS(12271), + [anon_sym_BSLASHSvolcite] = ACTIONS(12271), + [anon_sym_BSLASHtvolcite] = ACTIONS(12271), + [anon_sym_BSLASHTvolcite] = ACTIONS(12271), + [anon_sym_BSLASHavolcite] = ACTIONS(12271), + [anon_sym_BSLASHAvolcite] = ACTIONS(12271), + [anon_sym_BSLASHnotecite] = ACTIONS(12271), + [anon_sym_BSLASHpnotecite] = ACTIONS(12271), + [anon_sym_BSLASHPnotecite] = ACTIONS(12271), + [anon_sym_BSLASHfnotecite] = ACTIONS(12271), + [anon_sym_BSLASHusepackage] = ACTIONS(12271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12271), + [anon_sym_BSLASHinclude] = ACTIONS(12271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12271), + [anon_sym_BSLASHinput] = ACTIONS(12271), + [anon_sym_BSLASHsubfile] = ACTIONS(12271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12271), + [anon_sym_BSLASHbibliography] = ACTIONS(12271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12271), + [anon_sym_BSLASHincludesvg] = ACTIONS(12271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12271), + [anon_sym_BSLASHimport] = ACTIONS(12271), + [anon_sym_BSLASHsubimport] = ACTIONS(12271), + [anon_sym_BSLASHinputfrom] = ACTIONS(12271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12271), + [anon_sym_BSLASHincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHlabel] = ACTIONS(12271), + [anon_sym_BSLASHref] = ACTIONS(12271), + [anon_sym_BSLASHvref] = ACTIONS(12271), + [anon_sym_BSLASHVref] = ACTIONS(12271), + [anon_sym_BSLASHautoref] = ACTIONS(12271), + [anon_sym_BSLASHpageref] = ACTIONS(12271), + [anon_sym_BSLASHcref] = ACTIONS(12271), + [anon_sym_BSLASHCref] = ACTIONS(12271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnameCref] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHlabelcref] = ACTIONS(12271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12271), + [anon_sym_BSLASHeqref] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange] = ACTIONS(12271), + [anon_sym_BSLASHCrefrange] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewlabel] = ACTIONS(12271), + [anon_sym_BSLASHnewcommand] = ACTIONS(12271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12271), + [anon_sym_BSLASHgls] = ACTIONS(12271), + [anon_sym_BSLASHGls] = ACTIONS(12271), + [anon_sym_BSLASHGLS] = ACTIONS(12271), + [anon_sym_BSLASHglspl] = ACTIONS(12271), + [anon_sym_BSLASHGlspl] = ACTIONS(12271), + [anon_sym_BSLASHGLSpl] = ACTIONS(12271), + [anon_sym_BSLASHglsdisp] = ACTIONS(12271), + [anon_sym_BSLASHglslink] = ACTIONS(12271), + [anon_sym_BSLASHglstext] = ACTIONS(12271), + [anon_sym_BSLASHGlstext] = ACTIONS(12271), + [anon_sym_BSLASHGLStext] = ACTIONS(12271), + [anon_sym_BSLASHglsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12271), + [anon_sym_BSLASHglsplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSplural] = ACTIONS(12271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHglsname] = ACTIONS(12271), + [anon_sym_BSLASHGlsname] = ACTIONS(12271), + [anon_sym_BSLASHGLSname] = ACTIONS(12271), + [anon_sym_BSLASHglssymbol] = ACTIONS(12271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12271), + [anon_sym_BSLASHglsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12271), + [anon_sym_BSLASHglsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12271), + [anon_sym_BSLASHglsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12271), + [anon_sym_BSLASHglsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12271), + [anon_sym_BSLASHglsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12271), + [anon_sym_BSLASHnewacronym] = ACTIONS(12271), + [anon_sym_BSLASHacrshort] = ACTIONS(12271), + [anon_sym_BSLASHAcrshort] = ACTIONS(12271), + [anon_sym_BSLASHACRshort] = ACTIONS(12271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12271), + [anon_sym_BSLASHacrlong] = ACTIONS(12271), + [anon_sym_BSLASHAcrlong] = ACTIONS(12271), + [anon_sym_BSLASHACRlong] = ACTIONS(12271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12271), + [anon_sym_BSLASHacrfull] = ACTIONS(12271), + [anon_sym_BSLASHAcrfull] = ACTIONS(12271), + [anon_sym_BSLASHACRfull] = ACTIONS(12271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12271), + [anon_sym_BSLASHacs] = ACTIONS(12271), + [anon_sym_BSLASHAcs] = ACTIONS(12271), + [anon_sym_BSLASHacsp] = ACTIONS(12271), + [anon_sym_BSLASHAcsp] = ACTIONS(12271), + [anon_sym_BSLASHacl] = ACTIONS(12271), + [anon_sym_BSLASHAcl] = ACTIONS(12271), + [anon_sym_BSLASHaclp] = ACTIONS(12271), + [anon_sym_BSLASHAclp] = ACTIONS(12271), + [anon_sym_BSLASHacf] = ACTIONS(12271), + [anon_sym_BSLASHAcf] = ACTIONS(12271), + [anon_sym_BSLASHacfp] = ACTIONS(12271), + [anon_sym_BSLASHAcfp] = ACTIONS(12271), + [anon_sym_BSLASHac] = ACTIONS(12271), + [anon_sym_BSLASHAc] = ACTIONS(12271), + [anon_sym_BSLASHacp] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12271), + [anon_sym_BSLASHcolor] = ACTIONS(12271), + [anon_sym_BSLASHcolorbox] = ACTIONS(12271), + [anon_sym_BSLASHtextcolor] = ACTIONS(12271), + [anon_sym_BSLASHpagecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12271), + }, + [1419] = { + [sym_generic_command_name] = ACTIONS(12279), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12279), + [aux_sym_paragraph_token1] = ACTIONS(12279), + [aux_sym_subparagraph_token1] = ACTIONS(12279), + [anon_sym_BSLASHitem] = ACTIONS(12279), + [anon_sym_LBRACK] = ACTIONS(12277), + [anon_sym_RBRACK] = ACTIONS(12277), + [anon_sym_LBRACE] = ACTIONS(12277), + [anon_sym_RBRACE] = ACTIONS(12277), + [anon_sym_LPAREN] = ACTIONS(12277), + [anon_sym_COMMA] = ACTIONS(12277), + [anon_sym_EQ] = ACTIONS(12277), + [sym_word] = ACTIONS(12277), + [sym_param] = ACTIONS(12277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12277), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12277), + [anon_sym_DOLLAR] = ACTIONS(12279), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12277), + [anon_sym_BSLASHbegin] = ACTIONS(12279), + [anon_sym_BSLASHcaption] = ACTIONS(12279), + [anon_sym_BSLASHcite] = ACTIONS(12279), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCite] = ACTIONS(12279), + [anon_sym_BSLASHnocite] = ACTIONS(12279), + [anon_sym_BSLASHcitet] = ACTIONS(12279), + [anon_sym_BSLASHcitep] = ACTIONS(12279), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteauthor] = ACTIONS(12279), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12279), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitetitle] = ACTIONS(12279), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteyear] = ACTIONS(12279), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitedate] = ACTIONS(12279), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteurl] = ACTIONS(12279), + [anon_sym_BSLASHfullcite] = ACTIONS(12279), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12279), + [anon_sym_BSLASHcitealt] = ACTIONS(12279), + [anon_sym_BSLASHcitealp] = ACTIONS(12279), + [anon_sym_BSLASHcitetext] = ACTIONS(12279), + [anon_sym_BSLASHparencite] = ACTIONS(12279), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHParencite] = ACTIONS(12279), + [anon_sym_BSLASHfootcite] = ACTIONS(12279), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12279), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12279), + [anon_sym_BSLASHtextcite] = ACTIONS(12279), + [anon_sym_BSLASHTextcite] = ACTIONS(12279), + [anon_sym_BSLASHsmartcite] = ACTIONS(12279), + [anon_sym_BSLASHSmartcite] = ACTIONS(12279), + [anon_sym_BSLASHsupercite] = ACTIONS(12279), + [anon_sym_BSLASHautocite] = ACTIONS(12279), + [anon_sym_BSLASHAutocite] = ACTIONS(12279), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHvolcite] = ACTIONS(12279), + [anon_sym_BSLASHVolcite] = ACTIONS(12279), + [anon_sym_BSLASHpvolcite] = ACTIONS(12279), + [anon_sym_BSLASHPvolcite] = ACTIONS(12279), + [anon_sym_BSLASHfvolcite] = ACTIONS(12279), + [anon_sym_BSLASHftvolcite] = ACTIONS(12279), + [anon_sym_BSLASHsvolcite] = ACTIONS(12279), + [anon_sym_BSLASHSvolcite] = ACTIONS(12279), + [anon_sym_BSLASHtvolcite] = ACTIONS(12279), + [anon_sym_BSLASHTvolcite] = ACTIONS(12279), + [anon_sym_BSLASHavolcite] = ACTIONS(12279), + [anon_sym_BSLASHAvolcite] = ACTIONS(12279), + [anon_sym_BSLASHnotecite] = ACTIONS(12279), + [anon_sym_BSLASHpnotecite] = ACTIONS(12279), + [anon_sym_BSLASHPnotecite] = ACTIONS(12279), + [anon_sym_BSLASHfnotecite] = ACTIONS(12279), + [anon_sym_BSLASHusepackage] = ACTIONS(12279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12279), + [anon_sym_BSLASHinclude] = ACTIONS(12279), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12279), + [anon_sym_BSLASHinput] = ACTIONS(12279), + [anon_sym_BSLASHsubfile] = ACTIONS(12279), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12279), + [anon_sym_BSLASHbibliography] = ACTIONS(12279), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12279), + [anon_sym_BSLASHincludesvg] = ACTIONS(12279), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12279), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12279), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12279), + [anon_sym_BSLASHimport] = ACTIONS(12279), + [anon_sym_BSLASHsubimport] = ACTIONS(12279), + [anon_sym_BSLASHinputfrom] = ACTIONS(12279), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12279), + [anon_sym_BSLASHincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHlabel] = ACTIONS(12279), + [anon_sym_BSLASHref] = ACTIONS(12279), + [anon_sym_BSLASHvref] = ACTIONS(12279), + [anon_sym_BSLASHVref] = ACTIONS(12279), + [anon_sym_BSLASHautoref] = ACTIONS(12279), + [anon_sym_BSLASHpageref] = ACTIONS(12279), + [anon_sym_BSLASHcref] = ACTIONS(12279), + [anon_sym_BSLASHCref] = ACTIONS(12279), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnameCref] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHlabelcref] = ACTIONS(12279), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12279), + [anon_sym_BSLASHeqref] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange] = ACTIONS(12279), + [anon_sym_BSLASHCrefrange] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewlabel] = ACTIONS(12279), + [anon_sym_BSLASHnewcommand] = ACTIONS(12279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12279), + [anon_sym_BSLASHgls] = ACTIONS(12279), + [anon_sym_BSLASHGls] = ACTIONS(12279), + [anon_sym_BSLASHGLS] = ACTIONS(12279), + [anon_sym_BSLASHglspl] = ACTIONS(12279), + [anon_sym_BSLASHGlspl] = ACTIONS(12279), + [anon_sym_BSLASHGLSpl] = ACTIONS(12279), + [anon_sym_BSLASHglsdisp] = ACTIONS(12279), + [anon_sym_BSLASHglslink] = ACTIONS(12279), + [anon_sym_BSLASHglstext] = ACTIONS(12279), + [anon_sym_BSLASHGlstext] = ACTIONS(12279), + [anon_sym_BSLASHGLStext] = ACTIONS(12279), + [anon_sym_BSLASHglsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12279), + [anon_sym_BSLASHglsplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSplural] = ACTIONS(12279), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHglsname] = ACTIONS(12279), + [anon_sym_BSLASHGlsname] = ACTIONS(12279), + [anon_sym_BSLASHGLSname] = ACTIONS(12279), + [anon_sym_BSLASHglssymbol] = ACTIONS(12279), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12279), + [anon_sym_BSLASHglsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12279), + [anon_sym_BSLASHglsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12279), + [anon_sym_BSLASHglsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12279), + [anon_sym_BSLASHglsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12279), + [anon_sym_BSLASHglsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12279), + [anon_sym_BSLASHnewacronym] = ACTIONS(12279), + [anon_sym_BSLASHacrshort] = ACTIONS(12279), + [anon_sym_BSLASHAcrshort] = ACTIONS(12279), + [anon_sym_BSLASHACRshort] = ACTIONS(12279), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12279), + [anon_sym_BSLASHacrlong] = ACTIONS(12279), + [anon_sym_BSLASHAcrlong] = ACTIONS(12279), + [anon_sym_BSLASHACRlong] = ACTIONS(12279), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12279), + [anon_sym_BSLASHacrfull] = ACTIONS(12279), + [anon_sym_BSLASHAcrfull] = ACTIONS(12279), + [anon_sym_BSLASHACRfull] = ACTIONS(12279), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12279), + [anon_sym_BSLASHacs] = ACTIONS(12279), + [anon_sym_BSLASHAcs] = ACTIONS(12279), + [anon_sym_BSLASHacsp] = ACTIONS(12279), + [anon_sym_BSLASHAcsp] = ACTIONS(12279), + [anon_sym_BSLASHacl] = ACTIONS(12279), + [anon_sym_BSLASHAcl] = ACTIONS(12279), + [anon_sym_BSLASHaclp] = ACTIONS(12279), + [anon_sym_BSLASHAclp] = ACTIONS(12279), + [anon_sym_BSLASHacf] = ACTIONS(12279), + [anon_sym_BSLASHAcf] = ACTIONS(12279), + [anon_sym_BSLASHacfp] = ACTIONS(12279), + [anon_sym_BSLASHAcfp] = ACTIONS(12279), + [anon_sym_BSLASHac] = ACTIONS(12279), + [anon_sym_BSLASHAc] = ACTIONS(12279), + [anon_sym_BSLASHacp] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12279), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12279), + [anon_sym_BSLASHcolor] = ACTIONS(12279), + [anon_sym_BSLASHcolorbox] = ACTIONS(12279), + [anon_sym_BSLASHtextcolor] = ACTIONS(12279), + [anon_sym_BSLASHpagecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12279), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12279), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12279), + }, + [1420] = { + [sym_generic_command_name] = ACTIONS(12287), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12287), + [aux_sym_paragraph_token1] = ACTIONS(12287), + [aux_sym_subparagraph_token1] = ACTIONS(12287), + [anon_sym_BSLASHitem] = ACTIONS(12287), + [anon_sym_LBRACK] = ACTIONS(12285), + [anon_sym_RBRACK] = ACTIONS(12285), + [anon_sym_LBRACE] = ACTIONS(12285), + [anon_sym_RBRACE] = ACTIONS(12285), + [anon_sym_LPAREN] = ACTIONS(12285), + [anon_sym_COMMA] = ACTIONS(12285), + [anon_sym_EQ] = ACTIONS(12285), + [sym_word] = ACTIONS(12285), + [sym_param] = ACTIONS(12285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12285), + [anon_sym_DOLLAR] = ACTIONS(12287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12285), + [anon_sym_BSLASHbegin] = ACTIONS(12287), + [anon_sym_BSLASHcaption] = ACTIONS(12287), + [anon_sym_BSLASHcite] = ACTIONS(12287), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCite] = ACTIONS(12287), + [anon_sym_BSLASHnocite] = ACTIONS(12287), + [anon_sym_BSLASHcitet] = ACTIONS(12287), + [anon_sym_BSLASHcitep] = ACTIONS(12287), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteauthor] = ACTIONS(12287), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12287), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitetitle] = ACTIONS(12287), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteyear] = ACTIONS(12287), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitedate] = ACTIONS(12287), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteurl] = ACTIONS(12287), + [anon_sym_BSLASHfullcite] = ACTIONS(12287), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12287), + [anon_sym_BSLASHcitealt] = ACTIONS(12287), + [anon_sym_BSLASHcitealp] = ACTIONS(12287), + [anon_sym_BSLASHcitetext] = ACTIONS(12287), + [anon_sym_BSLASHparencite] = ACTIONS(12287), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHParencite] = ACTIONS(12287), + [anon_sym_BSLASHfootcite] = ACTIONS(12287), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12287), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12287), + [anon_sym_BSLASHtextcite] = ACTIONS(12287), + [anon_sym_BSLASHTextcite] = ACTIONS(12287), + [anon_sym_BSLASHsmartcite] = ACTIONS(12287), + [anon_sym_BSLASHSmartcite] = ACTIONS(12287), + [anon_sym_BSLASHsupercite] = ACTIONS(12287), + [anon_sym_BSLASHautocite] = ACTIONS(12287), + [anon_sym_BSLASHAutocite] = ACTIONS(12287), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHvolcite] = ACTIONS(12287), + [anon_sym_BSLASHVolcite] = ACTIONS(12287), + [anon_sym_BSLASHpvolcite] = ACTIONS(12287), + [anon_sym_BSLASHPvolcite] = ACTIONS(12287), + [anon_sym_BSLASHfvolcite] = ACTIONS(12287), + [anon_sym_BSLASHftvolcite] = ACTIONS(12287), + [anon_sym_BSLASHsvolcite] = ACTIONS(12287), + [anon_sym_BSLASHSvolcite] = ACTIONS(12287), + [anon_sym_BSLASHtvolcite] = ACTIONS(12287), + [anon_sym_BSLASHTvolcite] = ACTIONS(12287), + [anon_sym_BSLASHavolcite] = ACTIONS(12287), + [anon_sym_BSLASHAvolcite] = ACTIONS(12287), + [anon_sym_BSLASHnotecite] = ACTIONS(12287), + [anon_sym_BSLASHpnotecite] = ACTIONS(12287), + [anon_sym_BSLASHPnotecite] = ACTIONS(12287), + [anon_sym_BSLASHfnotecite] = ACTIONS(12287), + [anon_sym_BSLASHusepackage] = ACTIONS(12287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12287), + [anon_sym_BSLASHinclude] = ACTIONS(12287), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12287), + [anon_sym_BSLASHinput] = ACTIONS(12287), + [anon_sym_BSLASHsubfile] = ACTIONS(12287), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12287), + [anon_sym_BSLASHbibliography] = ACTIONS(12287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12287), + [anon_sym_BSLASHincludesvg] = ACTIONS(12287), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12287), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12287), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12287), + [anon_sym_BSLASHimport] = ACTIONS(12287), + [anon_sym_BSLASHsubimport] = ACTIONS(12287), + [anon_sym_BSLASHinputfrom] = ACTIONS(12287), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12287), + [anon_sym_BSLASHincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHlabel] = ACTIONS(12287), + [anon_sym_BSLASHref] = ACTIONS(12287), + [anon_sym_BSLASHvref] = ACTIONS(12287), + [anon_sym_BSLASHVref] = ACTIONS(12287), + [anon_sym_BSLASHautoref] = ACTIONS(12287), + [anon_sym_BSLASHpageref] = ACTIONS(12287), + [anon_sym_BSLASHcref] = ACTIONS(12287), + [anon_sym_BSLASHCref] = ACTIONS(12287), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnameCref] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHlabelcref] = ACTIONS(12287), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12287), + [anon_sym_BSLASHeqref] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange] = ACTIONS(12287), + [anon_sym_BSLASHCrefrange] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewlabel] = ACTIONS(12287), + [anon_sym_BSLASHnewcommand] = ACTIONS(12287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12287), + [anon_sym_BSLASHgls] = ACTIONS(12287), + [anon_sym_BSLASHGls] = ACTIONS(12287), + [anon_sym_BSLASHGLS] = ACTIONS(12287), + [anon_sym_BSLASHglspl] = ACTIONS(12287), + [anon_sym_BSLASHGlspl] = ACTIONS(12287), + [anon_sym_BSLASHGLSpl] = ACTIONS(12287), + [anon_sym_BSLASHglsdisp] = ACTIONS(12287), + [anon_sym_BSLASHglslink] = ACTIONS(12287), + [anon_sym_BSLASHglstext] = ACTIONS(12287), + [anon_sym_BSLASHGlstext] = ACTIONS(12287), + [anon_sym_BSLASHGLStext] = ACTIONS(12287), + [anon_sym_BSLASHglsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12287), + [anon_sym_BSLASHglsplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSplural] = ACTIONS(12287), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHglsname] = ACTIONS(12287), + [anon_sym_BSLASHGlsname] = ACTIONS(12287), + [anon_sym_BSLASHGLSname] = ACTIONS(12287), + [anon_sym_BSLASHglssymbol] = ACTIONS(12287), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12287), + [anon_sym_BSLASHglsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12287), + [anon_sym_BSLASHglsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12287), + [anon_sym_BSLASHglsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12287), + [anon_sym_BSLASHglsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12287), + [anon_sym_BSLASHglsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12287), + [anon_sym_BSLASHnewacronym] = ACTIONS(12287), + [anon_sym_BSLASHacrshort] = ACTIONS(12287), + [anon_sym_BSLASHAcrshort] = ACTIONS(12287), + [anon_sym_BSLASHACRshort] = ACTIONS(12287), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12287), + [anon_sym_BSLASHacrlong] = ACTIONS(12287), + [anon_sym_BSLASHAcrlong] = ACTIONS(12287), + [anon_sym_BSLASHACRlong] = ACTIONS(12287), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12287), + [anon_sym_BSLASHacrfull] = ACTIONS(12287), + [anon_sym_BSLASHAcrfull] = ACTIONS(12287), + [anon_sym_BSLASHACRfull] = ACTIONS(12287), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12287), + [anon_sym_BSLASHacs] = ACTIONS(12287), + [anon_sym_BSLASHAcs] = ACTIONS(12287), + [anon_sym_BSLASHacsp] = ACTIONS(12287), + [anon_sym_BSLASHAcsp] = ACTIONS(12287), + [anon_sym_BSLASHacl] = ACTIONS(12287), + [anon_sym_BSLASHAcl] = ACTIONS(12287), + [anon_sym_BSLASHaclp] = ACTIONS(12287), + [anon_sym_BSLASHAclp] = ACTIONS(12287), + [anon_sym_BSLASHacf] = ACTIONS(12287), + [anon_sym_BSLASHAcf] = ACTIONS(12287), + [anon_sym_BSLASHacfp] = ACTIONS(12287), + [anon_sym_BSLASHAcfp] = ACTIONS(12287), + [anon_sym_BSLASHac] = ACTIONS(12287), + [anon_sym_BSLASHAc] = ACTIONS(12287), + [anon_sym_BSLASHacp] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12287), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12287), + [anon_sym_BSLASHcolor] = ACTIONS(12287), + [anon_sym_BSLASHcolorbox] = ACTIONS(12287), + [anon_sym_BSLASHtextcolor] = ACTIONS(12287), + [anon_sym_BSLASHpagecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12287), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12287), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12287), + }, + [1421] = { + [sym_generic_command_name] = ACTIONS(12291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12291), + [aux_sym_paragraph_token1] = ACTIONS(12291), + [aux_sym_subparagraph_token1] = ACTIONS(12291), + [anon_sym_BSLASHitem] = ACTIONS(12291), + [anon_sym_LBRACK] = ACTIONS(12289), + [anon_sym_RBRACK] = ACTIONS(12289), + [anon_sym_LBRACE] = ACTIONS(12289), + [anon_sym_RBRACE] = ACTIONS(12289), + [anon_sym_LPAREN] = ACTIONS(12289), + [anon_sym_COMMA] = ACTIONS(12289), + [anon_sym_EQ] = ACTIONS(12289), + [sym_word] = ACTIONS(12289), + [sym_param] = ACTIONS(12289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12289), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12289), + [anon_sym_DOLLAR] = ACTIONS(12291), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12289), + [anon_sym_BSLASHbegin] = ACTIONS(12291), + [anon_sym_BSLASHcaption] = ACTIONS(12291), + [anon_sym_BSLASHcite] = ACTIONS(12291), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCite] = ACTIONS(12291), + [anon_sym_BSLASHnocite] = ACTIONS(12291), + [anon_sym_BSLASHcitet] = ACTIONS(12291), + [anon_sym_BSLASHcitep] = ACTIONS(12291), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteauthor] = ACTIONS(12291), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12291), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitetitle] = ACTIONS(12291), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteyear] = ACTIONS(12291), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitedate] = ACTIONS(12291), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteurl] = ACTIONS(12291), + [anon_sym_BSLASHfullcite] = ACTIONS(12291), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12291), + [anon_sym_BSLASHcitealt] = ACTIONS(12291), + [anon_sym_BSLASHcitealp] = ACTIONS(12291), + [anon_sym_BSLASHcitetext] = ACTIONS(12291), + [anon_sym_BSLASHparencite] = ACTIONS(12291), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHParencite] = ACTIONS(12291), + [anon_sym_BSLASHfootcite] = ACTIONS(12291), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12291), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12291), + [anon_sym_BSLASHtextcite] = ACTIONS(12291), + [anon_sym_BSLASHTextcite] = ACTIONS(12291), + [anon_sym_BSLASHsmartcite] = ACTIONS(12291), + [anon_sym_BSLASHSmartcite] = ACTIONS(12291), + [anon_sym_BSLASHsupercite] = ACTIONS(12291), + [anon_sym_BSLASHautocite] = ACTIONS(12291), + [anon_sym_BSLASHAutocite] = ACTIONS(12291), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHvolcite] = ACTIONS(12291), + [anon_sym_BSLASHVolcite] = ACTIONS(12291), + [anon_sym_BSLASHpvolcite] = ACTIONS(12291), + [anon_sym_BSLASHPvolcite] = ACTIONS(12291), + [anon_sym_BSLASHfvolcite] = ACTIONS(12291), + [anon_sym_BSLASHftvolcite] = ACTIONS(12291), + [anon_sym_BSLASHsvolcite] = ACTIONS(12291), + [anon_sym_BSLASHSvolcite] = ACTIONS(12291), + [anon_sym_BSLASHtvolcite] = ACTIONS(12291), + [anon_sym_BSLASHTvolcite] = ACTIONS(12291), + [anon_sym_BSLASHavolcite] = ACTIONS(12291), + [anon_sym_BSLASHAvolcite] = ACTIONS(12291), + [anon_sym_BSLASHnotecite] = ACTIONS(12291), + [anon_sym_BSLASHpnotecite] = ACTIONS(12291), + [anon_sym_BSLASHPnotecite] = ACTIONS(12291), + [anon_sym_BSLASHfnotecite] = ACTIONS(12291), + [anon_sym_BSLASHusepackage] = ACTIONS(12291), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12291), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12291), + [anon_sym_BSLASHinclude] = ACTIONS(12291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12291), + [anon_sym_BSLASHinput] = ACTIONS(12291), + [anon_sym_BSLASHsubfile] = ACTIONS(12291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12291), + [anon_sym_BSLASHbibliography] = ACTIONS(12291), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12291), + [anon_sym_BSLASHincludesvg] = ACTIONS(12291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12291), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12291), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12291), + [anon_sym_BSLASHimport] = ACTIONS(12291), + [anon_sym_BSLASHsubimport] = ACTIONS(12291), + [anon_sym_BSLASHinputfrom] = ACTIONS(12291), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12291), + [anon_sym_BSLASHincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHlabel] = ACTIONS(12291), + [anon_sym_BSLASHref] = ACTIONS(12291), + [anon_sym_BSLASHvref] = ACTIONS(12291), + [anon_sym_BSLASHVref] = ACTIONS(12291), + [anon_sym_BSLASHautoref] = ACTIONS(12291), + [anon_sym_BSLASHpageref] = ACTIONS(12291), + [anon_sym_BSLASHcref] = ACTIONS(12291), + [anon_sym_BSLASHCref] = ACTIONS(12291), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnameCref] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHlabelcref] = ACTIONS(12291), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12291), + [anon_sym_BSLASHeqref] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange] = ACTIONS(12291), + [anon_sym_BSLASHCrefrange] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewlabel] = ACTIONS(12291), + [anon_sym_BSLASHnewcommand] = ACTIONS(12291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12291), + [anon_sym_BSLASHgls] = ACTIONS(12291), + [anon_sym_BSLASHGls] = ACTIONS(12291), + [anon_sym_BSLASHGLS] = ACTIONS(12291), + [anon_sym_BSLASHglspl] = ACTIONS(12291), + [anon_sym_BSLASHGlspl] = ACTIONS(12291), + [anon_sym_BSLASHGLSpl] = ACTIONS(12291), + [anon_sym_BSLASHglsdisp] = ACTIONS(12291), + [anon_sym_BSLASHglslink] = ACTIONS(12291), + [anon_sym_BSLASHglstext] = ACTIONS(12291), + [anon_sym_BSLASHGlstext] = ACTIONS(12291), + [anon_sym_BSLASHGLStext] = ACTIONS(12291), + [anon_sym_BSLASHglsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12291), + [anon_sym_BSLASHglsplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSplural] = ACTIONS(12291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHglsname] = ACTIONS(12291), + [anon_sym_BSLASHGlsname] = ACTIONS(12291), + [anon_sym_BSLASHGLSname] = ACTIONS(12291), + [anon_sym_BSLASHglssymbol] = ACTIONS(12291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12291), + [anon_sym_BSLASHglsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12291), + [anon_sym_BSLASHglsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12291), + [anon_sym_BSLASHglsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12291), + [anon_sym_BSLASHglsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12291), + [anon_sym_BSLASHglsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12291), + [anon_sym_BSLASHnewacronym] = ACTIONS(12291), + [anon_sym_BSLASHacrshort] = ACTIONS(12291), + [anon_sym_BSLASHAcrshort] = ACTIONS(12291), + [anon_sym_BSLASHACRshort] = ACTIONS(12291), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12291), + [anon_sym_BSLASHacrlong] = ACTIONS(12291), + [anon_sym_BSLASHAcrlong] = ACTIONS(12291), + [anon_sym_BSLASHACRlong] = ACTIONS(12291), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12291), + [anon_sym_BSLASHacrfull] = ACTIONS(12291), + [anon_sym_BSLASHAcrfull] = ACTIONS(12291), + [anon_sym_BSLASHACRfull] = ACTIONS(12291), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12291), + [anon_sym_BSLASHacs] = ACTIONS(12291), + [anon_sym_BSLASHAcs] = ACTIONS(12291), + [anon_sym_BSLASHacsp] = ACTIONS(12291), + [anon_sym_BSLASHAcsp] = ACTIONS(12291), + [anon_sym_BSLASHacl] = ACTIONS(12291), + [anon_sym_BSLASHAcl] = ACTIONS(12291), + [anon_sym_BSLASHaclp] = ACTIONS(12291), + [anon_sym_BSLASHAclp] = ACTIONS(12291), + [anon_sym_BSLASHacf] = ACTIONS(12291), + [anon_sym_BSLASHAcf] = ACTIONS(12291), + [anon_sym_BSLASHacfp] = ACTIONS(12291), + [anon_sym_BSLASHAcfp] = ACTIONS(12291), + [anon_sym_BSLASHac] = ACTIONS(12291), + [anon_sym_BSLASHAc] = ACTIONS(12291), + [anon_sym_BSLASHacp] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12291), + [anon_sym_BSLASHcolor] = ACTIONS(12291), + [anon_sym_BSLASHcolorbox] = ACTIONS(12291), + [anon_sym_BSLASHtextcolor] = ACTIONS(12291), + [anon_sym_BSLASHpagecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12291), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12291), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12291), + }, + [1422] = { + [sym_generic_command_name] = ACTIONS(12295), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12295), + [aux_sym_paragraph_token1] = ACTIONS(12295), + [aux_sym_subparagraph_token1] = ACTIONS(12295), + [anon_sym_BSLASHitem] = ACTIONS(12295), + [anon_sym_LBRACK] = ACTIONS(12293), + [anon_sym_RBRACK] = ACTIONS(12293), + [anon_sym_LBRACE] = ACTIONS(12293), + [anon_sym_RBRACE] = ACTIONS(12293), + [anon_sym_LPAREN] = ACTIONS(12293), + [anon_sym_COMMA] = ACTIONS(12293), + [anon_sym_EQ] = ACTIONS(12293), + [sym_word] = ACTIONS(12293), + [sym_param] = ACTIONS(12293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12293), + [anon_sym_DOLLAR] = ACTIONS(12295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12293), + [anon_sym_BSLASHbegin] = ACTIONS(12295), + [anon_sym_BSLASHcaption] = ACTIONS(12295), + [anon_sym_BSLASHcite] = ACTIONS(12295), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCite] = ACTIONS(12295), + [anon_sym_BSLASHnocite] = ACTIONS(12295), + [anon_sym_BSLASHcitet] = ACTIONS(12295), + [anon_sym_BSLASHcitep] = ACTIONS(12295), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteauthor] = ACTIONS(12295), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12295), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitetitle] = ACTIONS(12295), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteyear] = ACTIONS(12295), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitedate] = ACTIONS(12295), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteurl] = ACTIONS(12295), + [anon_sym_BSLASHfullcite] = ACTIONS(12295), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12295), + [anon_sym_BSLASHcitealt] = ACTIONS(12295), + [anon_sym_BSLASHcitealp] = ACTIONS(12295), + [anon_sym_BSLASHcitetext] = ACTIONS(12295), + [anon_sym_BSLASHparencite] = ACTIONS(12295), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHParencite] = ACTIONS(12295), + [anon_sym_BSLASHfootcite] = ACTIONS(12295), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12295), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12295), + [anon_sym_BSLASHtextcite] = ACTIONS(12295), + [anon_sym_BSLASHTextcite] = ACTIONS(12295), + [anon_sym_BSLASHsmartcite] = ACTIONS(12295), + [anon_sym_BSLASHSmartcite] = ACTIONS(12295), + [anon_sym_BSLASHsupercite] = ACTIONS(12295), + [anon_sym_BSLASHautocite] = ACTIONS(12295), + [anon_sym_BSLASHAutocite] = ACTIONS(12295), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHvolcite] = ACTIONS(12295), + [anon_sym_BSLASHVolcite] = ACTIONS(12295), + [anon_sym_BSLASHpvolcite] = ACTIONS(12295), + [anon_sym_BSLASHPvolcite] = ACTIONS(12295), + [anon_sym_BSLASHfvolcite] = ACTIONS(12295), + [anon_sym_BSLASHftvolcite] = ACTIONS(12295), + [anon_sym_BSLASHsvolcite] = ACTIONS(12295), + [anon_sym_BSLASHSvolcite] = ACTIONS(12295), + [anon_sym_BSLASHtvolcite] = ACTIONS(12295), + [anon_sym_BSLASHTvolcite] = ACTIONS(12295), + [anon_sym_BSLASHavolcite] = ACTIONS(12295), + [anon_sym_BSLASHAvolcite] = ACTIONS(12295), + [anon_sym_BSLASHnotecite] = ACTIONS(12295), + [anon_sym_BSLASHpnotecite] = ACTIONS(12295), + [anon_sym_BSLASHPnotecite] = ACTIONS(12295), + [anon_sym_BSLASHfnotecite] = ACTIONS(12295), + [anon_sym_BSLASHusepackage] = ACTIONS(12295), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12295), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12295), + [anon_sym_BSLASHinclude] = ACTIONS(12295), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12295), + [anon_sym_BSLASHinput] = ACTIONS(12295), + [anon_sym_BSLASHsubfile] = ACTIONS(12295), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12295), + [anon_sym_BSLASHbibliography] = ACTIONS(12295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12295), + [anon_sym_BSLASHincludesvg] = ACTIONS(12295), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12295), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12295), + [anon_sym_BSLASHimport] = ACTIONS(12295), + [anon_sym_BSLASHsubimport] = ACTIONS(12295), + [anon_sym_BSLASHinputfrom] = ACTIONS(12295), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12295), + [anon_sym_BSLASHincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHlabel] = ACTIONS(12295), + [anon_sym_BSLASHref] = ACTIONS(12295), + [anon_sym_BSLASHvref] = ACTIONS(12295), + [anon_sym_BSLASHVref] = ACTIONS(12295), + [anon_sym_BSLASHautoref] = ACTIONS(12295), + [anon_sym_BSLASHpageref] = ACTIONS(12295), + [anon_sym_BSLASHcref] = ACTIONS(12295), + [anon_sym_BSLASHCref] = ACTIONS(12295), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnameCref] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHlabelcref] = ACTIONS(12295), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12295), + [anon_sym_BSLASHeqref] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange] = ACTIONS(12295), + [anon_sym_BSLASHCrefrange] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewlabel] = ACTIONS(12295), + [anon_sym_BSLASHnewcommand] = ACTIONS(12295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12295), + [anon_sym_BSLASHgls] = ACTIONS(12295), + [anon_sym_BSLASHGls] = ACTIONS(12295), + [anon_sym_BSLASHGLS] = ACTIONS(12295), + [anon_sym_BSLASHglspl] = ACTIONS(12295), + [anon_sym_BSLASHGlspl] = ACTIONS(12295), + [anon_sym_BSLASHGLSpl] = ACTIONS(12295), + [anon_sym_BSLASHglsdisp] = ACTIONS(12295), + [anon_sym_BSLASHglslink] = ACTIONS(12295), + [anon_sym_BSLASHglstext] = ACTIONS(12295), + [anon_sym_BSLASHGlstext] = ACTIONS(12295), + [anon_sym_BSLASHGLStext] = ACTIONS(12295), + [anon_sym_BSLASHglsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12295), + [anon_sym_BSLASHglsplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSplural] = ACTIONS(12295), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHglsname] = ACTIONS(12295), + [anon_sym_BSLASHGlsname] = ACTIONS(12295), + [anon_sym_BSLASHGLSname] = ACTIONS(12295), + [anon_sym_BSLASHglssymbol] = ACTIONS(12295), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12295), + [anon_sym_BSLASHglsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12295), + [anon_sym_BSLASHglsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12295), + [anon_sym_BSLASHglsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12295), + [anon_sym_BSLASHglsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12295), + [anon_sym_BSLASHglsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12295), + [anon_sym_BSLASHnewacronym] = ACTIONS(12295), + [anon_sym_BSLASHacrshort] = ACTIONS(12295), + [anon_sym_BSLASHAcrshort] = ACTIONS(12295), + [anon_sym_BSLASHACRshort] = ACTIONS(12295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12295), + [anon_sym_BSLASHacrlong] = ACTIONS(12295), + [anon_sym_BSLASHAcrlong] = ACTIONS(12295), + [anon_sym_BSLASHACRlong] = ACTIONS(12295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12295), + [anon_sym_BSLASHacrfull] = ACTIONS(12295), + [anon_sym_BSLASHAcrfull] = ACTIONS(12295), + [anon_sym_BSLASHACRfull] = ACTIONS(12295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12295), + [anon_sym_BSLASHacs] = ACTIONS(12295), + [anon_sym_BSLASHAcs] = ACTIONS(12295), + [anon_sym_BSLASHacsp] = ACTIONS(12295), + [anon_sym_BSLASHAcsp] = ACTIONS(12295), + [anon_sym_BSLASHacl] = ACTIONS(12295), + [anon_sym_BSLASHAcl] = ACTIONS(12295), + [anon_sym_BSLASHaclp] = ACTIONS(12295), + [anon_sym_BSLASHAclp] = ACTIONS(12295), + [anon_sym_BSLASHacf] = ACTIONS(12295), + [anon_sym_BSLASHAcf] = ACTIONS(12295), + [anon_sym_BSLASHacfp] = ACTIONS(12295), + [anon_sym_BSLASHAcfp] = ACTIONS(12295), + [anon_sym_BSLASHac] = ACTIONS(12295), + [anon_sym_BSLASHAc] = ACTIONS(12295), + [anon_sym_BSLASHacp] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12295), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12295), + [anon_sym_BSLASHcolor] = ACTIONS(12295), + [anon_sym_BSLASHcolorbox] = ACTIONS(12295), + [anon_sym_BSLASHtextcolor] = ACTIONS(12295), + [anon_sym_BSLASHpagecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12295), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12295), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12295), + }, + [1423] = { + [sym_generic_command_name] = ACTIONS(12303), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12303), + [aux_sym_paragraph_token1] = ACTIONS(12303), + [aux_sym_subparagraph_token1] = ACTIONS(12303), + [anon_sym_BSLASHitem] = ACTIONS(12303), + [anon_sym_LBRACK] = ACTIONS(12301), + [anon_sym_RBRACK] = ACTIONS(12301), + [anon_sym_LBRACE] = ACTIONS(12301), + [anon_sym_RBRACE] = ACTIONS(12301), + [anon_sym_LPAREN] = ACTIONS(12301), + [anon_sym_COMMA] = ACTIONS(12301), + [anon_sym_EQ] = ACTIONS(12301), + [sym_word] = ACTIONS(12301), + [sym_param] = ACTIONS(12301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12301), + [anon_sym_DOLLAR] = ACTIONS(12303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12301), + [anon_sym_BSLASHbegin] = ACTIONS(12303), + [anon_sym_BSLASHcaption] = ACTIONS(12303), + [anon_sym_BSLASHcite] = ACTIONS(12303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCite] = ACTIONS(12303), + [anon_sym_BSLASHnocite] = ACTIONS(12303), + [anon_sym_BSLASHcitet] = ACTIONS(12303), + [anon_sym_BSLASHcitep] = ACTIONS(12303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteauthor] = ACTIONS(12303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitetitle] = ACTIONS(12303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteyear] = ACTIONS(12303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitedate] = ACTIONS(12303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteurl] = ACTIONS(12303), + [anon_sym_BSLASHfullcite] = ACTIONS(12303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12303), + [anon_sym_BSLASHcitealt] = ACTIONS(12303), + [anon_sym_BSLASHcitealp] = ACTIONS(12303), + [anon_sym_BSLASHcitetext] = ACTIONS(12303), + [anon_sym_BSLASHparencite] = ACTIONS(12303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHParencite] = ACTIONS(12303), + [anon_sym_BSLASHfootcite] = ACTIONS(12303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12303), + [anon_sym_BSLASHtextcite] = ACTIONS(12303), + [anon_sym_BSLASHTextcite] = ACTIONS(12303), + [anon_sym_BSLASHsmartcite] = ACTIONS(12303), + [anon_sym_BSLASHSmartcite] = ACTIONS(12303), + [anon_sym_BSLASHsupercite] = ACTIONS(12303), + [anon_sym_BSLASHautocite] = ACTIONS(12303), + [anon_sym_BSLASHAutocite] = ACTIONS(12303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHvolcite] = ACTIONS(12303), + [anon_sym_BSLASHVolcite] = ACTIONS(12303), + [anon_sym_BSLASHpvolcite] = ACTIONS(12303), + [anon_sym_BSLASHPvolcite] = ACTIONS(12303), + [anon_sym_BSLASHfvolcite] = ACTIONS(12303), + [anon_sym_BSLASHftvolcite] = ACTIONS(12303), + [anon_sym_BSLASHsvolcite] = ACTIONS(12303), + [anon_sym_BSLASHSvolcite] = ACTIONS(12303), + [anon_sym_BSLASHtvolcite] = ACTIONS(12303), + [anon_sym_BSLASHTvolcite] = ACTIONS(12303), + [anon_sym_BSLASHavolcite] = ACTIONS(12303), + [anon_sym_BSLASHAvolcite] = ACTIONS(12303), + [anon_sym_BSLASHnotecite] = ACTIONS(12303), + [anon_sym_BSLASHpnotecite] = ACTIONS(12303), + [anon_sym_BSLASHPnotecite] = ACTIONS(12303), + [anon_sym_BSLASHfnotecite] = ACTIONS(12303), + [anon_sym_BSLASHusepackage] = ACTIONS(12303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12303), + [anon_sym_BSLASHinclude] = ACTIONS(12303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12303), + [anon_sym_BSLASHinput] = ACTIONS(12303), + [anon_sym_BSLASHsubfile] = ACTIONS(12303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12303), + [anon_sym_BSLASHbibliography] = ACTIONS(12303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12303), + [anon_sym_BSLASHincludesvg] = ACTIONS(12303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12303), + [anon_sym_BSLASHimport] = ACTIONS(12303), + [anon_sym_BSLASHsubimport] = ACTIONS(12303), + [anon_sym_BSLASHinputfrom] = ACTIONS(12303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12303), + [anon_sym_BSLASHincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHlabel] = ACTIONS(12303), + [anon_sym_BSLASHref] = ACTIONS(12303), + [anon_sym_BSLASHvref] = ACTIONS(12303), + [anon_sym_BSLASHVref] = ACTIONS(12303), + [anon_sym_BSLASHautoref] = ACTIONS(12303), + [anon_sym_BSLASHpageref] = ACTIONS(12303), + [anon_sym_BSLASHcref] = ACTIONS(12303), + [anon_sym_BSLASHCref] = ACTIONS(12303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnameCref] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHlabelcref] = ACTIONS(12303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12303), + [anon_sym_BSLASHeqref] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange] = ACTIONS(12303), + [anon_sym_BSLASHCrefrange] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewlabel] = ACTIONS(12303), + [anon_sym_BSLASHnewcommand] = ACTIONS(12303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12303), + [anon_sym_BSLASHgls] = ACTIONS(12303), + [anon_sym_BSLASHGls] = ACTIONS(12303), + [anon_sym_BSLASHGLS] = ACTIONS(12303), + [anon_sym_BSLASHglspl] = ACTIONS(12303), + [anon_sym_BSLASHGlspl] = ACTIONS(12303), + [anon_sym_BSLASHGLSpl] = ACTIONS(12303), + [anon_sym_BSLASHglsdisp] = ACTIONS(12303), + [anon_sym_BSLASHglslink] = ACTIONS(12303), + [anon_sym_BSLASHglstext] = ACTIONS(12303), + [anon_sym_BSLASHGlstext] = ACTIONS(12303), + [anon_sym_BSLASHGLStext] = ACTIONS(12303), + [anon_sym_BSLASHglsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12303), + [anon_sym_BSLASHglsplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSplural] = ACTIONS(12303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHglsname] = ACTIONS(12303), + [anon_sym_BSLASHGlsname] = ACTIONS(12303), + [anon_sym_BSLASHGLSname] = ACTIONS(12303), + [anon_sym_BSLASHglssymbol] = ACTIONS(12303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12303), + [anon_sym_BSLASHglsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12303), + [anon_sym_BSLASHglsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12303), + [anon_sym_BSLASHglsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12303), + [anon_sym_BSLASHglsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12303), + [anon_sym_BSLASHglsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12303), + [anon_sym_BSLASHnewacronym] = ACTIONS(12303), + [anon_sym_BSLASHacrshort] = ACTIONS(12303), + [anon_sym_BSLASHAcrshort] = ACTIONS(12303), + [anon_sym_BSLASHACRshort] = ACTIONS(12303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12303), + [anon_sym_BSLASHacrlong] = ACTIONS(12303), + [anon_sym_BSLASHAcrlong] = ACTIONS(12303), + [anon_sym_BSLASHACRlong] = ACTIONS(12303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12303), + [anon_sym_BSLASHacrfull] = ACTIONS(12303), + [anon_sym_BSLASHAcrfull] = ACTIONS(12303), + [anon_sym_BSLASHACRfull] = ACTIONS(12303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12303), + [anon_sym_BSLASHacs] = ACTIONS(12303), + [anon_sym_BSLASHAcs] = ACTIONS(12303), + [anon_sym_BSLASHacsp] = ACTIONS(12303), + [anon_sym_BSLASHAcsp] = ACTIONS(12303), + [anon_sym_BSLASHacl] = ACTIONS(12303), + [anon_sym_BSLASHAcl] = ACTIONS(12303), + [anon_sym_BSLASHaclp] = ACTIONS(12303), + [anon_sym_BSLASHAclp] = ACTIONS(12303), + [anon_sym_BSLASHacf] = ACTIONS(12303), + [anon_sym_BSLASHAcf] = ACTIONS(12303), + [anon_sym_BSLASHacfp] = ACTIONS(12303), + [anon_sym_BSLASHAcfp] = ACTIONS(12303), + [anon_sym_BSLASHac] = ACTIONS(12303), + [anon_sym_BSLASHAc] = ACTIONS(12303), + [anon_sym_BSLASHacp] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12303), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12303), + [anon_sym_BSLASHcolor] = ACTIONS(12303), + [anon_sym_BSLASHcolorbox] = ACTIONS(12303), + [anon_sym_BSLASHtextcolor] = ACTIONS(12303), + [anon_sym_BSLASHpagecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12303), + }, + [1424] = { + [sym_generic_command_name] = ACTIONS(12307), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12307), + [aux_sym_paragraph_token1] = ACTIONS(12307), + [aux_sym_subparagraph_token1] = ACTIONS(12307), + [anon_sym_BSLASHitem] = ACTIONS(12307), + [anon_sym_LBRACK] = ACTIONS(12305), + [anon_sym_RBRACK] = ACTIONS(12305), + [anon_sym_LBRACE] = ACTIONS(12305), + [anon_sym_RBRACE] = ACTIONS(12305), + [anon_sym_LPAREN] = ACTIONS(12305), + [anon_sym_COMMA] = ACTIONS(12305), + [anon_sym_EQ] = ACTIONS(12305), + [sym_word] = ACTIONS(12305), + [sym_param] = ACTIONS(12305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12305), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12305), + [anon_sym_DOLLAR] = ACTIONS(12307), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12305), + [anon_sym_BSLASHbegin] = ACTIONS(12307), + [anon_sym_BSLASHcaption] = ACTIONS(12307), + [anon_sym_BSLASHcite] = ACTIONS(12307), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCite] = ACTIONS(12307), + [anon_sym_BSLASHnocite] = ACTIONS(12307), + [anon_sym_BSLASHcitet] = ACTIONS(12307), + [anon_sym_BSLASHcitep] = ACTIONS(12307), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteauthor] = ACTIONS(12307), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12307), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitetitle] = ACTIONS(12307), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteyear] = ACTIONS(12307), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitedate] = ACTIONS(12307), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteurl] = ACTIONS(12307), + [anon_sym_BSLASHfullcite] = ACTIONS(12307), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12307), + [anon_sym_BSLASHcitealt] = ACTIONS(12307), + [anon_sym_BSLASHcitealp] = ACTIONS(12307), + [anon_sym_BSLASHcitetext] = ACTIONS(12307), + [anon_sym_BSLASHparencite] = ACTIONS(12307), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHParencite] = ACTIONS(12307), + [anon_sym_BSLASHfootcite] = ACTIONS(12307), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12307), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12307), + [anon_sym_BSLASHtextcite] = ACTIONS(12307), + [anon_sym_BSLASHTextcite] = ACTIONS(12307), + [anon_sym_BSLASHsmartcite] = ACTIONS(12307), + [anon_sym_BSLASHSmartcite] = ACTIONS(12307), + [anon_sym_BSLASHsupercite] = ACTIONS(12307), + [anon_sym_BSLASHautocite] = ACTIONS(12307), + [anon_sym_BSLASHAutocite] = ACTIONS(12307), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHvolcite] = ACTIONS(12307), + [anon_sym_BSLASHVolcite] = ACTIONS(12307), + [anon_sym_BSLASHpvolcite] = ACTIONS(12307), + [anon_sym_BSLASHPvolcite] = ACTIONS(12307), + [anon_sym_BSLASHfvolcite] = ACTIONS(12307), + [anon_sym_BSLASHftvolcite] = ACTIONS(12307), + [anon_sym_BSLASHsvolcite] = ACTIONS(12307), + [anon_sym_BSLASHSvolcite] = ACTIONS(12307), + [anon_sym_BSLASHtvolcite] = ACTIONS(12307), + [anon_sym_BSLASHTvolcite] = ACTIONS(12307), + [anon_sym_BSLASHavolcite] = ACTIONS(12307), + [anon_sym_BSLASHAvolcite] = ACTIONS(12307), + [anon_sym_BSLASHnotecite] = ACTIONS(12307), + [anon_sym_BSLASHpnotecite] = ACTIONS(12307), + [anon_sym_BSLASHPnotecite] = ACTIONS(12307), + [anon_sym_BSLASHfnotecite] = ACTIONS(12307), + [anon_sym_BSLASHusepackage] = ACTIONS(12307), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12307), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12307), + [anon_sym_BSLASHinclude] = ACTIONS(12307), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12307), + [anon_sym_BSLASHinput] = ACTIONS(12307), + [anon_sym_BSLASHsubfile] = ACTIONS(12307), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12307), + [anon_sym_BSLASHbibliography] = ACTIONS(12307), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12307), + [anon_sym_BSLASHincludesvg] = ACTIONS(12307), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12307), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12307), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12307), + [anon_sym_BSLASHimport] = ACTIONS(12307), + [anon_sym_BSLASHsubimport] = ACTIONS(12307), + [anon_sym_BSLASHinputfrom] = ACTIONS(12307), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12307), + [anon_sym_BSLASHincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHlabel] = ACTIONS(12307), + [anon_sym_BSLASHref] = ACTIONS(12307), + [anon_sym_BSLASHvref] = ACTIONS(12307), + [anon_sym_BSLASHVref] = ACTIONS(12307), + [anon_sym_BSLASHautoref] = ACTIONS(12307), + [anon_sym_BSLASHpageref] = ACTIONS(12307), + [anon_sym_BSLASHcref] = ACTIONS(12307), + [anon_sym_BSLASHCref] = ACTIONS(12307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnameCref] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHlabelcref] = ACTIONS(12307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12307), + [anon_sym_BSLASHeqref] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange] = ACTIONS(12307), + [anon_sym_BSLASHCrefrange] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewlabel] = ACTIONS(12307), + [anon_sym_BSLASHnewcommand] = ACTIONS(12307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12307), + [anon_sym_BSLASHgls] = ACTIONS(12307), + [anon_sym_BSLASHGls] = ACTIONS(12307), + [anon_sym_BSLASHGLS] = ACTIONS(12307), + [anon_sym_BSLASHglspl] = ACTIONS(12307), + [anon_sym_BSLASHGlspl] = ACTIONS(12307), + [anon_sym_BSLASHGLSpl] = ACTIONS(12307), + [anon_sym_BSLASHglsdisp] = ACTIONS(12307), + [anon_sym_BSLASHglslink] = ACTIONS(12307), + [anon_sym_BSLASHglstext] = ACTIONS(12307), + [anon_sym_BSLASHGlstext] = ACTIONS(12307), + [anon_sym_BSLASHGLStext] = ACTIONS(12307), + [anon_sym_BSLASHglsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12307), + [anon_sym_BSLASHglsplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSplural] = ACTIONS(12307), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHglsname] = ACTIONS(12307), + [anon_sym_BSLASHGlsname] = ACTIONS(12307), + [anon_sym_BSLASHGLSname] = ACTIONS(12307), + [anon_sym_BSLASHglssymbol] = ACTIONS(12307), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12307), + [anon_sym_BSLASHglsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12307), + [anon_sym_BSLASHglsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12307), + [anon_sym_BSLASHglsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12307), + [anon_sym_BSLASHglsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12307), + [anon_sym_BSLASHglsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12307), + [anon_sym_BSLASHnewacronym] = ACTIONS(12307), + [anon_sym_BSLASHacrshort] = ACTIONS(12307), + [anon_sym_BSLASHAcrshort] = ACTIONS(12307), + [anon_sym_BSLASHACRshort] = ACTIONS(12307), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12307), + [anon_sym_BSLASHacrlong] = ACTIONS(12307), + [anon_sym_BSLASHAcrlong] = ACTIONS(12307), + [anon_sym_BSLASHACRlong] = ACTIONS(12307), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12307), + [anon_sym_BSLASHacrfull] = ACTIONS(12307), + [anon_sym_BSLASHAcrfull] = ACTIONS(12307), + [anon_sym_BSLASHACRfull] = ACTIONS(12307), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12307), + [anon_sym_BSLASHacs] = ACTIONS(12307), + [anon_sym_BSLASHAcs] = ACTIONS(12307), + [anon_sym_BSLASHacsp] = ACTIONS(12307), + [anon_sym_BSLASHAcsp] = ACTIONS(12307), + [anon_sym_BSLASHacl] = ACTIONS(12307), + [anon_sym_BSLASHAcl] = ACTIONS(12307), + [anon_sym_BSLASHaclp] = ACTIONS(12307), + [anon_sym_BSLASHAclp] = ACTIONS(12307), + [anon_sym_BSLASHacf] = ACTIONS(12307), + [anon_sym_BSLASHAcf] = ACTIONS(12307), + [anon_sym_BSLASHacfp] = ACTIONS(12307), + [anon_sym_BSLASHAcfp] = ACTIONS(12307), + [anon_sym_BSLASHac] = ACTIONS(12307), + [anon_sym_BSLASHAc] = ACTIONS(12307), + [anon_sym_BSLASHacp] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12307), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12307), + [anon_sym_BSLASHcolor] = ACTIONS(12307), + [anon_sym_BSLASHcolorbox] = ACTIONS(12307), + [anon_sym_BSLASHtextcolor] = ACTIONS(12307), + [anon_sym_BSLASHpagecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12307), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12307), + }, + [1425] = { + [sym_generic_command_name] = ACTIONS(12315), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12315), + [aux_sym_paragraph_token1] = ACTIONS(12315), + [aux_sym_subparagraph_token1] = ACTIONS(12315), + [anon_sym_BSLASHitem] = ACTIONS(12315), + [anon_sym_LBRACK] = ACTIONS(12313), + [anon_sym_RBRACK] = ACTIONS(12313), + [anon_sym_LBRACE] = ACTIONS(12313), + [anon_sym_RBRACE] = ACTIONS(12313), + [anon_sym_LPAREN] = ACTIONS(12313), + [anon_sym_COMMA] = ACTIONS(12313), + [anon_sym_EQ] = ACTIONS(12313), + [sym_word] = ACTIONS(12313), + [sym_param] = ACTIONS(12313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12313), + [anon_sym_DOLLAR] = ACTIONS(12315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12313), + [anon_sym_BSLASHbegin] = ACTIONS(12315), + [anon_sym_BSLASHcaption] = ACTIONS(12315), + [anon_sym_BSLASHcite] = ACTIONS(12315), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCite] = ACTIONS(12315), + [anon_sym_BSLASHnocite] = ACTIONS(12315), + [anon_sym_BSLASHcitet] = ACTIONS(12315), + [anon_sym_BSLASHcitep] = ACTIONS(12315), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteauthor] = ACTIONS(12315), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12315), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitetitle] = ACTIONS(12315), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteyear] = ACTIONS(12315), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitedate] = ACTIONS(12315), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteurl] = ACTIONS(12315), + [anon_sym_BSLASHfullcite] = ACTIONS(12315), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12315), + [anon_sym_BSLASHcitealt] = ACTIONS(12315), + [anon_sym_BSLASHcitealp] = ACTIONS(12315), + [anon_sym_BSLASHcitetext] = ACTIONS(12315), + [anon_sym_BSLASHparencite] = ACTIONS(12315), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHParencite] = ACTIONS(12315), + [anon_sym_BSLASHfootcite] = ACTIONS(12315), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12315), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12315), + [anon_sym_BSLASHtextcite] = ACTIONS(12315), + [anon_sym_BSLASHTextcite] = ACTIONS(12315), + [anon_sym_BSLASHsmartcite] = ACTIONS(12315), + [anon_sym_BSLASHSmartcite] = ACTIONS(12315), + [anon_sym_BSLASHsupercite] = ACTIONS(12315), + [anon_sym_BSLASHautocite] = ACTIONS(12315), + [anon_sym_BSLASHAutocite] = ACTIONS(12315), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHvolcite] = ACTIONS(12315), + [anon_sym_BSLASHVolcite] = ACTIONS(12315), + [anon_sym_BSLASHpvolcite] = ACTIONS(12315), + [anon_sym_BSLASHPvolcite] = ACTIONS(12315), + [anon_sym_BSLASHfvolcite] = ACTIONS(12315), + [anon_sym_BSLASHftvolcite] = ACTIONS(12315), + [anon_sym_BSLASHsvolcite] = ACTIONS(12315), + [anon_sym_BSLASHSvolcite] = ACTIONS(12315), + [anon_sym_BSLASHtvolcite] = ACTIONS(12315), + [anon_sym_BSLASHTvolcite] = ACTIONS(12315), + [anon_sym_BSLASHavolcite] = ACTIONS(12315), + [anon_sym_BSLASHAvolcite] = ACTIONS(12315), + [anon_sym_BSLASHnotecite] = ACTIONS(12315), + [anon_sym_BSLASHpnotecite] = ACTIONS(12315), + [anon_sym_BSLASHPnotecite] = ACTIONS(12315), + [anon_sym_BSLASHfnotecite] = ACTIONS(12315), + [anon_sym_BSLASHusepackage] = ACTIONS(12315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12315), + [anon_sym_BSLASHinclude] = ACTIONS(12315), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12315), + [anon_sym_BSLASHinput] = ACTIONS(12315), + [anon_sym_BSLASHsubfile] = ACTIONS(12315), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12315), + [anon_sym_BSLASHbibliography] = ACTIONS(12315), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12315), + [anon_sym_BSLASHincludesvg] = ACTIONS(12315), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12315), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12315), + [anon_sym_BSLASHimport] = ACTIONS(12315), + [anon_sym_BSLASHsubimport] = ACTIONS(12315), + [anon_sym_BSLASHinputfrom] = ACTIONS(12315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12315), + [anon_sym_BSLASHincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHlabel] = ACTIONS(12315), + [anon_sym_BSLASHref] = ACTIONS(12315), + [anon_sym_BSLASHvref] = ACTIONS(12315), + [anon_sym_BSLASHVref] = ACTIONS(12315), + [anon_sym_BSLASHautoref] = ACTIONS(12315), + [anon_sym_BSLASHpageref] = ACTIONS(12315), + [anon_sym_BSLASHcref] = ACTIONS(12315), + [anon_sym_BSLASHCref] = ACTIONS(12315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnameCref] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHlabelcref] = ACTIONS(12315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12315), + [anon_sym_BSLASHeqref] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange] = ACTIONS(12315), + [anon_sym_BSLASHCrefrange] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewlabel] = ACTIONS(12315), + [anon_sym_BSLASHnewcommand] = ACTIONS(12315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12315), + [anon_sym_BSLASHgls] = ACTIONS(12315), + [anon_sym_BSLASHGls] = ACTIONS(12315), + [anon_sym_BSLASHGLS] = ACTIONS(12315), + [anon_sym_BSLASHglspl] = ACTIONS(12315), + [anon_sym_BSLASHGlspl] = ACTIONS(12315), + [anon_sym_BSLASHGLSpl] = ACTIONS(12315), + [anon_sym_BSLASHglsdisp] = ACTIONS(12315), + [anon_sym_BSLASHglslink] = ACTIONS(12315), + [anon_sym_BSLASHglstext] = ACTIONS(12315), + [anon_sym_BSLASHGlstext] = ACTIONS(12315), + [anon_sym_BSLASHGLStext] = ACTIONS(12315), + [anon_sym_BSLASHglsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12315), + [anon_sym_BSLASHglsplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSplural] = ACTIONS(12315), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHglsname] = ACTIONS(12315), + [anon_sym_BSLASHGlsname] = ACTIONS(12315), + [anon_sym_BSLASHGLSname] = ACTIONS(12315), + [anon_sym_BSLASHglssymbol] = ACTIONS(12315), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12315), + [anon_sym_BSLASHglsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12315), + [anon_sym_BSLASHglsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12315), + [anon_sym_BSLASHglsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12315), + [anon_sym_BSLASHglsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12315), + [anon_sym_BSLASHglsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12315), + [anon_sym_BSLASHnewacronym] = ACTIONS(12315), + [anon_sym_BSLASHacrshort] = ACTIONS(12315), + [anon_sym_BSLASHAcrshort] = ACTIONS(12315), + [anon_sym_BSLASHACRshort] = ACTIONS(12315), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12315), + [anon_sym_BSLASHacrlong] = ACTIONS(12315), + [anon_sym_BSLASHAcrlong] = ACTIONS(12315), + [anon_sym_BSLASHACRlong] = ACTIONS(12315), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12315), + [anon_sym_BSLASHacrfull] = ACTIONS(12315), + [anon_sym_BSLASHAcrfull] = ACTIONS(12315), + [anon_sym_BSLASHACRfull] = ACTIONS(12315), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12315), + [anon_sym_BSLASHacs] = ACTIONS(12315), + [anon_sym_BSLASHAcs] = ACTIONS(12315), + [anon_sym_BSLASHacsp] = ACTIONS(12315), + [anon_sym_BSLASHAcsp] = ACTIONS(12315), + [anon_sym_BSLASHacl] = ACTIONS(12315), + [anon_sym_BSLASHAcl] = ACTIONS(12315), + [anon_sym_BSLASHaclp] = ACTIONS(12315), + [anon_sym_BSLASHAclp] = ACTIONS(12315), + [anon_sym_BSLASHacf] = ACTIONS(12315), + [anon_sym_BSLASHAcf] = ACTIONS(12315), + [anon_sym_BSLASHacfp] = ACTIONS(12315), + [anon_sym_BSLASHAcfp] = ACTIONS(12315), + [anon_sym_BSLASHac] = ACTIONS(12315), + [anon_sym_BSLASHAc] = ACTIONS(12315), + [anon_sym_BSLASHacp] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12315), + [anon_sym_BSLASHcolor] = ACTIONS(12315), + [anon_sym_BSLASHcolorbox] = ACTIONS(12315), + [anon_sym_BSLASHtextcolor] = ACTIONS(12315), + [anon_sym_BSLASHpagecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12315), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12315), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12315), + }, + [1426] = { + [sym_generic_command_name] = ACTIONS(12335), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12335), + [aux_sym_paragraph_token1] = ACTIONS(12335), + [aux_sym_subparagraph_token1] = ACTIONS(12335), + [anon_sym_BSLASHitem] = ACTIONS(12335), + [anon_sym_LBRACK] = ACTIONS(12752), + [anon_sym_RBRACK] = ACTIONS(12333), + [anon_sym_LBRACE] = ACTIONS(12333), + [anon_sym_RBRACE] = ACTIONS(12333), + [anon_sym_LPAREN] = ACTIONS(12333), + [anon_sym_COMMA] = ACTIONS(12333), + [anon_sym_EQ] = ACTIONS(12333), + [sym_word] = ACTIONS(12333), + [sym_param] = ACTIONS(12333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12333), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12333), + [anon_sym_DOLLAR] = ACTIONS(12335), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12333), + [anon_sym_BSLASHbegin] = ACTIONS(12335), + [anon_sym_BSLASHcaption] = ACTIONS(12335), + [anon_sym_BSLASHcite] = ACTIONS(12335), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCite] = ACTIONS(12335), + [anon_sym_BSLASHnocite] = ACTIONS(12335), + [anon_sym_BSLASHcitet] = ACTIONS(12335), + [anon_sym_BSLASHcitep] = ACTIONS(12335), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteauthor] = ACTIONS(12335), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12335), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitetitle] = ACTIONS(12335), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteyear] = ACTIONS(12335), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitedate] = ACTIONS(12335), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteurl] = ACTIONS(12335), + [anon_sym_BSLASHfullcite] = ACTIONS(12335), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12335), + [anon_sym_BSLASHcitealt] = ACTIONS(12335), + [anon_sym_BSLASHcitealp] = ACTIONS(12335), + [anon_sym_BSLASHcitetext] = ACTIONS(12335), + [anon_sym_BSLASHparencite] = ACTIONS(12335), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHParencite] = ACTIONS(12335), + [anon_sym_BSLASHfootcite] = ACTIONS(12335), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12335), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12335), + [anon_sym_BSLASHtextcite] = ACTIONS(12335), + [anon_sym_BSLASHTextcite] = ACTIONS(12335), + [anon_sym_BSLASHsmartcite] = ACTIONS(12335), + [anon_sym_BSLASHSmartcite] = ACTIONS(12335), + [anon_sym_BSLASHsupercite] = ACTIONS(12335), + [anon_sym_BSLASHautocite] = ACTIONS(12335), + [anon_sym_BSLASHAutocite] = ACTIONS(12335), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHvolcite] = ACTIONS(12335), + [anon_sym_BSLASHVolcite] = ACTIONS(12335), + [anon_sym_BSLASHpvolcite] = ACTIONS(12335), + [anon_sym_BSLASHPvolcite] = ACTIONS(12335), + [anon_sym_BSLASHfvolcite] = ACTIONS(12335), + [anon_sym_BSLASHftvolcite] = ACTIONS(12335), + [anon_sym_BSLASHsvolcite] = ACTIONS(12335), + [anon_sym_BSLASHSvolcite] = ACTIONS(12335), + [anon_sym_BSLASHtvolcite] = ACTIONS(12335), + [anon_sym_BSLASHTvolcite] = ACTIONS(12335), + [anon_sym_BSLASHavolcite] = ACTIONS(12335), + [anon_sym_BSLASHAvolcite] = ACTIONS(12335), + [anon_sym_BSLASHnotecite] = ACTIONS(12335), + [anon_sym_BSLASHpnotecite] = ACTIONS(12335), + [anon_sym_BSLASHPnotecite] = ACTIONS(12335), + [anon_sym_BSLASHfnotecite] = ACTIONS(12335), + [anon_sym_BSLASHusepackage] = ACTIONS(12335), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12335), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12335), + [anon_sym_BSLASHinclude] = ACTIONS(12335), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12335), + [anon_sym_BSLASHinput] = ACTIONS(12335), + [anon_sym_BSLASHsubfile] = ACTIONS(12335), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12335), + [anon_sym_BSLASHbibliography] = ACTIONS(12335), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12335), + [anon_sym_BSLASHincludesvg] = ACTIONS(12335), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12335), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12335), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12335), + [anon_sym_BSLASHimport] = ACTIONS(12335), + [anon_sym_BSLASHsubimport] = ACTIONS(12335), + [anon_sym_BSLASHinputfrom] = ACTIONS(12335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12335), + [anon_sym_BSLASHincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHlabel] = ACTIONS(12335), + [anon_sym_BSLASHref] = ACTIONS(12335), + [anon_sym_BSLASHvref] = ACTIONS(12335), + [anon_sym_BSLASHVref] = ACTIONS(12335), + [anon_sym_BSLASHautoref] = ACTIONS(12335), + [anon_sym_BSLASHpageref] = ACTIONS(12335), + [anon_sym_BSLASHcref] = ACTIONS(12335), + [anon_sym_BSLASHCref] = ACTIONS(12335), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnameCref] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHlabelcref] = ACTIONS(12335), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12335), + [anon_sym_BSLASHeqref] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange] = ACTIONS(12335), + [anon_sym_BSLASHCrefrange] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewlabel] = ACTIONS(12335), + [anon_sym_BSLASHnewcommand] = ACTIONS(12335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12335), + [anon_sym_BSLASHgls] = ACTIONS(12335), + [anon_sym_BSLASHGls] = ACTIONS(12335), + [anon_sym_BSLASHGLS] = ACTIONS(12335), + [anon_sym_BSLASHglspl] = ACTIONS(12335), + [anon_sym_BSLASHGlspl] = ACTIONS(12335), + [anon_sym_BSLASHGLSpl] = ACTIONS(12335), + [anon_sym_BSLASHglsdisp] = ACTIONS(12335), + [anon_sym_BSLASHglslink] = ACTIONS(12335), + [anon_sym_BSLASHglstext] = ACTIONS(12335), + [anon_sym_BSLASHGlstext] = ACTIONS(12335), + [anon_sym_BSLASHGLStext] = ACTIONS(12335), + [anon_sym_BSLASHglsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12335), + [anon_sym_BSLASHglsplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSplural] = ACTIONS(12335), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHglsname] = ACTIONS(12335), + [anon_sym_BSLASHGlsname] = ACTIONS(12335), + [anon_sym_BSLASHGLSname] = ACTIONS(12335), + [anon_sym_BSLASHglssymbol] = ACTIONS(12335), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12335), + [anon_sym_BSLASHglsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12335), + [anon_sym_BSLASHglsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12335), + [anon_sym_BSLASHglsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12335), + [anon_sym_BSLASHglsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12335), + [anon_sym_BSLASHglsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12335), + [anon_sym_BSLASHnewacronym] = ACTIONS(12335), + [anon_sym_BSLASHacrshort] = ACTIONS(12335), + [anon_sym_BSLASHAcrshort] = ACTIONS(12335), + [anon_sym_BSLASHACRshort] = ACTIONS(12335), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12335), + [anon_sym_BSLASHacrlong] = ACTIONS(12335), + [anon_sym_BSLASHAcrlong] = ACTIONS(12335), + [anon_sym_BSLASHACRlong] = ACTIONS(12335), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12335), + [anon_sym_BSLASHacrfull] = ACTIONS(12335), + [anon_sym_BSLASHAcrfull] = ACTIONS(12335), + [anon_sym_BSLASHACRfull] = ACTIONS(12335), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12335), + [anon_sym_BSLASHacs] = ACTIONS(12335), + [anon_sym_BSLASHAcs] = ACTIONS(12335), + [anon_sym_BSLASHacsp] = ACTIONS(12335), + [anon_sym_BSLASHAcsp] = ACTIONS(12335), + [anon_sym_BSLASHacl] = ACTIONS(12335), + [anon_sym_BSLASHAcl] = ACTIONS(12335), + [anon_sym_BSLASHaclp] = ACTIONS(12335), + [anon_sym_BSLASHAclp] = ACTIONS(12335), + [anon_sym_BSLASHacf] = ACTIONS(12335), + [anon_sym_BSLASHAcf] = ACTIONS(12335), + [anon_sym_BSLASHacfp] = ACTIONS(12335), + [anon_sym_BSLASHAcfp] = ACTIONS(12335), + [anon_sym_BSLASHac] = ACTIONS(12335), + [anon_sym_BSLASHAc] = ACTIONS(12335), + [anon_sym_BSLASHacp] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12335), + [anon_sym_BSLASHcolor] = ACTIONS(12335), + [anon_sym_BSLASHcolorbox] = ACTIONS(12335), + [anon_sym_BSLASHtextcolor] = ACTIONS(12335), + [anon_sym_BSLASHpagecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12335), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12335), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12335), + }, + [1427] = { + [sym_generic_command_name] = ACTIONS(12341), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12341), + [aux_sym_paragraph_token1] = ACTIONS(12341), + [aux_sym_subparagraph_token1] = ACTIONS(12341), + [anon_sym_BSLASHitem] = ACTIONS(12341), + [anon_sym_LBRACK] = ACTIONS(12339), + [anon_sym_RBRACK] = ACTIONS(12339), + [anon_sym_LBRACE] = ACTIONS(12339), + [anon_sym_RBRACE] = ACTIONS(12339), + [anon_sym_LPAREN] = ACTIONS(12339), + [anon_sym_COMMA] = ACTIONS(12339), + [anon_sym_EQ] = ACTIONS(12339), + [sym_word] = ACTIONS(12339), + [sym_param] = ACTIONS(12339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12339), + [anon_sym_DOLLAR] = ACTIONS(12341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12339), + [anon_sym_BSLASHbegin] = ACTIONS(12341), + [anon_sym_BSLASHcaption] = ACTIONS(12341), + [anon_sym_BSLASHcite] = ACTIONS(12341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCite] = ACTIONS(12341), + [anon_sym_BSLASHnocite] = ACTIONS(12341), + [anon_sym_BSLASHcitet] = ACTIONS(12341), + [anon_sym_BSLASHcitep] = ACTIONS(12341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteauthor] = ACTIONS(12341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitetitle] = ACTIONS(12341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteyear] = ACTIONS(12341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitedate] = ACTIONS(12341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteurl] = ACTIONS(12341), + [anon_sym_BSLASHfullcite] = ACTIONS(12341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12341), + [anon_sym_BSLASHcitealt] = ACTIONS(12341), + [anon_sym_BSLASHcitealp] = ACTIONS(12341), + [anon_sym_BSLASHcitetext] = ACTIONS(12341), + [anon_sym_BSLASHparencite] = ACTIONS(12341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHParencite] = ACTIONS(12341), + [anon_sym_BSLASHfootcite] = ACTIONS(12341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12341), + [anon_sym_BSLASHtextcite] = ACTIONS(12341), + [anon_sym_BSLASHTextcite] = ACTIONS(12341), + [anon_sym_BSLASHsmartcite] = ACTIONS(12341), + [anon_sym_BSLASHSmartcite] = ACTIONS(12341), + [anon_sym_BSLASHsupercite] = ACTIONS(12341), + [anon_sym_BSLASHautocite] = ACTIONS(12341), + [anon_sym_BSLASHAutocite] = ACTIONS(12341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHvolcite] = ACTIONS(12341), + [anon_sym_BSLASHVolcite] = ACTIONS(12341), + [anon_sym_BSLASHpvolcite] = ACTIONS(12341), + [anon_sym_BSLASHPvolcite] = ACTIONS(12341), + [anon_sym_BSLASHfvolcite] = ACTIONS(12341), + [anon_sym_BSLASHftvolcite] = ACTIONS(12341), + [anon_sym_BSLASHsvolcite] = ACTIONS(12341), + [anon_sym_BSLASHSvolcite] = ACTIONS(12341), + [anon_sym_BSLASHtvolcite] = ACTIONS(12341), + [anon_sym_BSLASHTvolcite] = ACTIONS(12341), + [anon_sym_BSLASHavolcite] = ACTIONS(12341), + [anon_sym_BSLASHAvolcite] = ACTIONS(12341), + [anon_sym_BSLASHnotecite] = ACTIONS(12341), + [anon_sym_BSLASHpnotecite] = ACTIONS(12341), + [anon_sym_BSLASHPnotecite] = ACTIONS(12341), + [anon_sym_BSLASHfnotecite] = ACTIONS(12341), + [anon_sym_BSLASHusepackage] = ACTIONS(12341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12341), + [anon_sym_BSLASHinclude] = ACTIONS(12341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12341), + [anon_sym_BSLASHinput] = ACTIONS(12341), + [anon_sym_BSLASHsubfile] = ACTIONS(12341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12341), + [anon_sym_BSLASHbibliography] = ACTIONS(12341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12341), + [anon_sym_BSLASHincludesvg] = ACTIONS(12341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12341), + [anon_sym_BSLASHimport] = ACTIONS(12341), + [anon_sym_BSLASHsubimport] = ACTIONS(12341), + [anon_sym_BSLASHinputfrom] = ACTIONS(12341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12341), + [anon_sym_BSLASHincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHlabel] = ACTIONS(12341), + [anon_sym_BSLASHref] = ACTIONS(12341), + [anon_sym_BSLASHvref] = ACTIONS(12341), + [anon_sym_BSLASHVref] = ACTIONS(12341), + [anon_sym_BSLASHautoref] = ACTIONS(12341), + [anon_sym_BSLASHpageref] = ACTIONS(12341), + [anon_sym_BSLASHcref] = ACTIONS(12341), + [anon_sym_BSLASHCref] = ACTIONS(12341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnameCref] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHlabelcref] = ACTIONS(12341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12341), + [anon_sym_BSLASHeqref] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange] = ACTIONS(12341), + [anon_sym_BSLASHCrefrange] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewlabel] = ACTIONS(12341), + [anon_sym_BSLASHnewcommand] = ACTIONS(12341), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12341), + [anon_sym_BSLASHgls] = ACTIONS(12341), + [anon_sym_BSLASHGls] = ACTIONS(12341), + [anon_sym_BSLASHGLS] = ACTIONS(12341), + [anon_sym_BSLASHglspl] = ACTIONS(12341), + [anon_sym_BSLASHGlspl] = ACTIONS(12341), + [anon_sym_BSLASHGLSpl] = ACTIONS(12341), + [anon_sym_BSLASHglsdisp] = ACTIONS(12341), + [anon_sym_BSLASHglslink] = ACTIONS(12341), + [anon_sym_BSLASHglstext] = ACTIONS(12341), + [anon_sym_BSLASHGlstext] = ACTIONS(12341), + [anon_sym_BSLASHGLStext] = ACTIONS(12341), + [anon_sym_BSLASHglsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12341), + [anon_sym_BSLASHglsplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSplural] = ACTIONS(12341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHglsname] = ACTIONS(12341), + [anon_sym_BSLASHGlsname] = ACTIONS(12341), + [anon_sym_BSLASHGLSname] = ACTIONS(12341), + [anon_sym_BSLASHglssymbol] = ACTIONS(12341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12341), + [anon_sym_BSLASHglsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12341), + [anon_sym_BSLASHglsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12341), + [anon_sym_BSLASHglsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12341), + [anon_sym_BSLASHglsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12341), + [anon_sym_BSLASHglsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12341), + [anon_sym_BSLASHnewacronym] = ACTIONS(12341), + [anon_sym_BSLASHacrshort] = ACTIONS(12341), + [anon_sym_BSLASHAcrshort] = ACTIONS(12341), + [anon_sym_BSLASHACRshort] = ACTIONS(12341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12341), + [anon_sym_BSLASHacrlong] = ACTIONS(12341), + [anon_sym_BSLASHAcrlong] = ACTIONS(12341), + [anon_sym_BSLASHACRlong] = ACTIONS(12341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12341), + [anon_sym_BSLASHacrfull] = ACTIONS(12341), + [anon_sym_BSLASHAcrfull] = ACTIONS(12341), + [anon_sym_BSLASHACRfull] = ACTIONS(12341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12341), + [anon_sym_BSLASHacs] = ACTIONS(12341), + [anon_sym_BSLASHAcs] = ACTIONS(12341), + [anon_sym_BSLASHacsp] = ACTIONS(12341), + [anon_sym_BSLASHAcsp] = ACTIONS(12341), + [anon_sym_BSLASHacl] = ACTIONS(12341), + [anon_sym_BSLASHAcl] = ACTIONS(12341), + [anon_sym_BSLASHaclp] = ACTIONS(12341), + [anon_sym_BSLASHAclp] = ACTIONS(12341), + [anon_sym_BSLASHacf] = ACTIONS(12341), + [anon_sym_BSLASHAcf] = ACTIONS(12341), + [anon_sym_BSLASHacfp] = ACTIONS(12341), + [anon_sym_BSLASHAcfp] = ACTIONS(12341), + [anon_sym_BSLASHac] = ACTIONS(12341), + [anon_sym_BSLASHAc] = ACTIONS(12341), + [anon_sym_BSLASHacp] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12341), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12341), + [anon_sym_BSLASHcolor] = ACTIONS(12341), + [anon_sym_BSLASHcolorbox] = ACTIONS(12341), + [anon_sym_BSLASHtextcolor] = ACTIONS(12341), + [anon_sym_BSLASHpagecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12341), + }, + [1428] = { + [sym_generic_command_name] = ACTIONS(12353), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12353), + [aux_sym_paragraph_token1] = ACTIONS(12353), + [aux_sym_subparagraph_token1] = ACTIONS(12353), + [anon_sym_BSLASHitem] = ACTIONS(12353), + [anon_sym_LBRACK] = ACTIONS(12351), + [anon_sym_RBRACK] = ACTIONS(12351), + [anon_sym_LBRACE] = ACTIONS(12351), + [anon_sym_RBRACE] = ACTIONS(12351), + [anon_sym_LPAREN] = ACTIONS(12351), + [anon_sym_COMMA] = ACTIONS(12351), + [anon_sym_EQ] = ACTIONS(12351), + [sym_word] = ACTIONS(12351), + [sym_param] = ACTIONS(12351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12351), + [anon_sym_DOLLAR] = ACTIONS(12353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12351), + [anon_sym_BSLASHbegin] = ACTIONS(12353), + [anon_sym_BSLASHcaption] = ACTIONS(12353), + [anon_sym_BSLASHcite] = ACTIONS(12353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCite] = ACTIONS(12353), + [anon_sym_BSLASHnocite] = ACTIONS(12353), + [anon_sym_BSLASHcitet] = ACTIONS(12353), + [anon_sym_BSLASHcitep] = ACTIONS(12353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteauthor] = ACTIONS(12353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitetitle] = ACTIONS(12353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteyear] = ACTIONS(12353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitedate] = ACTIONS(12353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteurl] = ACTIONS(12353), + [anon_sym_BSLASHfullcite] = ACTIONS(12353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12353), + [anon_sym_BSLASHcitealt] = ACTIONS(12353), + [anon_sym_BSLASHcitealp] = ACTIONS(12353), + [anon_sym_BSLASHcitetext] = ACTIONS(12353), + [anon_sym_BSLASHparencite] = ACTIONS(12353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHParencite] = ACTIONS(12353), + [anon_sym_BSLASHfootcite] = ACTIONS(12353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12353), + [anon_sym_BSLASHtextcite] = ACTIONS(12353), + [anon_sym_BSLASHTextcite] = ACTIONS(12353), + [anon_sym_BSLASHsmartcite] = ACTIONS(12353), + [anon_sym_BSLASHSmartcite] = ACTIONS(12353), + [anon_sym_BSLASHsupercite] = ACTIONS(12353), + [anon_sym_BSLASHautocite] = ACTIONS(12353), + [anon_sym_BSLASHAutocite] = ACTIONS(12353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHvolcite] = ACTIONS(12353), + [anon_sym_BSLASHVolcite] = ACTIONS(12353), + [anon_sym_BSLASHpvolcite] = ACTIONS(12353), + [anon_sym_BSLASHPvolcite] = ACTIONS(12353), + [anon_sym_BSLASHfvolcite] = ACTIONS(12353), + [anon_sym_BSLASHftvolcite] = ACTIONS(12353), + [anon_sym_BSLASHsvolcite] = ACTIONS(12353), + [anon_sym_BSLASHSvolcite] = ACTIONS(12353), + [anon_sym_BSLASHtvolcite] = ACTIONS(12353), + [anon_sym_BSLASHTvolcite] = ACTIONS(12353), + [anon_sym_BSLASHavolcite] = ACTIONS(12353), + [anon_sym_BSLASHAvolcite] = ACTIONS(12353), + [anon_sym_BSLASHnotecite] = ACTIONS(12353), + [anon_sym_BSLASHpnotecite] = ACTIONS(12353), + [anon_sym_BSLASHPnotecite] = ACTIONS(12353), + [anon_sym_BSLASHfnotecite] = ACTIONS(12353), + [anon_sym_BSLASHusepackage] = ACTIONS(12353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12353), + [anon_sym_BSLASHinclude] = ACTIONS(12353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12353), + [anon_sym_BSLASHinput] = ACTIONS(12353), + [anon_sym_BSLASHsubfile] = ACTIONS(12353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12353), + [anon_sym_BSLASHbibliography] = ACTIONS(12353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12353), + [anon_sym_BSLASHincludesvg] = ACTIONS(12353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12353), + [anon_sym_BSLASHimport] = ACTIONS(12353), + [anon_sym_BSLASHsubimport] = ACTIONS(12353), + [anon_sym_BSLASHinputfrom] = ACTIONS(12353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12353), + [anon_sym_BSLASHincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHlabel] = ACTIONS(12353), + [anon_sym_BSLASHref] = ACTIONS(12353), + [anon_sym_BSLASHvref] = ACTIONS(12353), + [anon_sym_BSLASHVref] = ACTIONS(12353), + [anon_sym_BSLASHautoref] = ACTIONS(12353), + [anon_sym_BSLASHpageref] = ACTIONS(12353), + [anon_sym_BSLASHcref] = ACTIONS(12353), + [anon_sym_BSLASHCref] = ACTIONS(12353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnameCref] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHlabelcref] = ACTIONS(12353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12353), + [anon_sym_BSLASHeqref] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange] = ACTIONS(12353), + [anon_sym_BSLASHCrefrange] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewlabel] = ACTIONS(12353), + [anon_sym_BSLASHnewcommand] = ACTIONS(12353), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12353), + [anon_sym_BSLASHgls] = ACTIONS(12353), + [anon_sym_BSLASHGls] = ACTIONS(12353), + [anon_sym_BSLASHGLS] = ACTIONS(12353), + [anon_sym_BSLASHglspl] = ACTIONS(12353), + [anon_sym_BSLASHGlspl] = ACTIONS(12353), + [anon_sym_BSLASHGLSpl] = ACTIONS(12353), + [anon_sym_BSLASHglsdisp] = ACTIONS(12353), + [anon_sym_BSLASHglslink] = ACTIONS(12353), + [anon_sym_BSLASHglstext] = ACTIONS(12353), + [anon_sym_BSLASHGlstext] = ACTIONS(12353), + [anon_sym_BSLASHGLStext] = ACTIONS(12353), + [anon_sym_BSLASHglsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12353), + [anon_sym_BSLASHglsplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSplural] = ACTIONS(12353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHglsname] = ACTIONS(12353), + [anon_sym_BSLASHGlsname] = ACTIONS(12353), + [anon_sym_BSLASHGLSname] = ACTIONS(12353), + [anon_sym_BSLASHglssymbol] = ACTIONS(12353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12353), + [anon_sym_BSLASHglsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12353), + [anon_sym_BSLASHglsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12353), + [anon_sym_BSLASHglsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12353), + [anon_sym_BSLASHglsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12353), + [anon_sym_BSLASHglsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12353), + [anon_sym_BSLASHnewacronym] = ACTIONS(12353), + [anon_sym_BSLASHacrshort] = ACTIONS(12353), + [anon_sym_BSLASHAcrshort] = ACTIONS(12353), + [anon_sym_BSLASHACRshort] = ACTIONS(12353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12353), + [anon_sym_BSLASHacrlong] = ACTIONS(12353), + [anon_sym_BSLASHAcrlong] = ACTIONS(12353), + [anon_sym_BSLASHACRlong] = ACTIONS(12353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12353), + [anon_sym_BSLASHacrfull] = ACTIONS(12353), + [anon_sym_BSLASHAcrfull] = ACTIONS(12353), + [anon_sym_BSLASHACRfull] = ACTIONS(12353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12353), + [anon_sym_BSLASHacs] = ACTIONS(12353), + [anon_sym_BSLASHAcs] = ACTIONS(12353), + [anon_sym_BSLASHacsp] = ACTIONS(12353), + [anon_sym_BSLASHAcsp] = ACTIONS(12353), + [anon_sym_BSLASHacl] = ACTIONS(12353), + [anon_sym_BSLASHAcl] = ACTIONS(12353), + [anon_sym_BSLASHaclp] = ACTIONS(12353), + [anon_sym_BSLASHAclp] = ACTIONS(12353), + [anon_sym_BSLASHacf] = ACTIONS(12353), + [anon_sym_BSLASHAcf] = ACTIONS(12353), + [anon_sym_BSLASHacfp] = ACTIONS(12353), + [anon_sym_BSLASHAcfp] = ACTIONS(12353), + [anon_sym_BSLASHac] = ACTIONS(12353), + [anon_sym_BSLASHAc] = ACTIONS(12353), + [anon_sym_BSLASHacp] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12353), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12353), + [anon_sym_BSLASHcolor] = ACTIONS(12353), + [anon_sym_BSLASHcolorbox] = ACTIONS(12353), + [anon_sym_BSLASHtextcolor] = ACTIONS(12353), + [anon_sym_BSLASHpagecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12353), + }, + [1429] = { + [sym_generic_command_name] = ACTIONS(12357), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12357), + [aux_sym_paragraph_token1] = ACTIONS(12357), + [aux_sym_subparagraph_token1] = ACTIONS(12357), + [anon_sym_BSLASHitem] = ACTIONS(12357), + [anon_sym_LBRACK] = ACTIONS(12355), + [anon_sym_RBRACK] = ACTIONS(12355), + [anon_sym_LBRACE] = ACTIONS(12355), + [anon_sym_RBRACE] = ACTIONS(12355), + [anon_sym_LPAREN] = ACTIONS(12355), + [anon_sym_COMMA] = ACTIONS(12355), + [anon_sym_EQ] = ACTIONS(12355), + [sym_word] = ACTIONS(12355), + [sym_param] = ACTIONS(12355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12355), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12355), + [anon_sym_DOLLAR] = ACTIONS(12357), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12355), + [anon_sym_BSLASHbegin] = ACTIONS(12357), + [anon_sym_BSLASHcaption] = ACTIONS(12357), + [anon_sym_BSLASHcite] = ACTIONS(12357), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCite] = ACTIONS(12357), + [anon_sym_BSLASHnocite] = ACTIONS(12357), + [anon_sym_BSLASHcitet] = ACTIONS(12357), + [anon_sym_BSLASHcitep] = ACTIONS(12357), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteauthor] = ACTIONS(12357), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12357), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitetitle] = ACTIONS(12357), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteyear] = ACTIONS(12357), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitedate] = ACTIONS(12357), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteurl] = ACTIONS(12357), + [anon_sym_BSLASHfullcite] = ACTIONS(12357), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12357), + [anon_sym_BSLASHcitealt] = ACTIONS(12357), + [anon_sym_BSLASHcitealp] = ACTIONS(12357), + [anon_sym_BSLASHcitetext] = ACTIONS(12357), + [anon_sym_BSLASHparencite] = ACTIONS(12357), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHParencite] = ACTIONS(12357), + [anon_sym_BSLASHfootcite] = ACTIONS(12357), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12357), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12357), + [anon_sym_BSLASHtextcite] = ACTIONS(12357), + [anon_sym_BSLASHTextcite] = ACTIONS(12357), + [anon_sym_BSLASHsmartcite] = ACTIONS(12357), + [anon_sym_BSLASHSmartcite] = ACTIONS(12357), + [anon_sym_BSLASHsupercite] = ACTIONS(12357), + [anon_sym_BSLASHautocite] = ACTIONS(12357), + [anon_sym_BSLASHAutocite] = ACTIONS(12357), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHvolcite] = ACTIONS(12357), + [anon_sym_BSLASHVolcite] = ACTIONS(12357), + [anon_sym_BSLASHpvolcite] = ACTIONS(12357), + [anon_sym_BSLASHPvolcite] = ACTIONS(12357), + [anon_sym_BSLASHfvolcite] = ACTIONS(12357), + [anon_sym_BSLASHftvolcite] = ACTIONS(12357), + [anon_sym_BSLASHsvolcite] = ACTIONS(12357), + [anon_sym_BSLASHSvolcite] = ACTIONS(12357), + [anon_sym_BSLASHtvolcite] = ACTIONS(12357), + [anon_sym_BSLASHTvolcite] = ACTIONS(12357), + [anon_sym_BSLASHavolcite] = ACTIONS(12357), + [anon_sym_BSLASHAvolcite] = ACTIONS(12357), + [anon_sym_BSLASHnotecite] = ACTIONS(12357), + [anon_sym_BSLASHpnotecite] = ACTIONS(12357), + [anon_sym_BSLASHPnotecite] = ACTIONS(12357), + [anon_sym_BSLASHfnotecite] = ACTIONS(12357), + [anon_sym_BSLASHusepackage] = ACTIONS(12357), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12357), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12357), + [anon_sym_BSLASHinclude] = ACTIONS(12357), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12357), + [anon_sym_BSLASHinput] = ACTIONS(12357), + [anon_sym_BSLASHsubfile] = ACTIONS(12357), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12357), + [anon_sym_BSLASHbibliography] = ACTIONS(12357), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12357), + [anon_sym_BSLASHincludesvg] = ACTIONS(12357), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12357), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12357), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12357), + [anon_sym_BSLASHimport] = ACTIONS(12357), + [anon_sym_BSLASHsubimport] = ACTIONS(12357), + [anon_sym_BSLASHinputfrom] = ACTIONS(12357), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12357), + [anon_sym_BSLASHincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHlabel] = ACTIONS(12357), + [anon_sym_BSLASHref] = ACTIONS(12357), + [anon_sym_BSLASHvref] = ACTIONS(12357), + [anon_sym_BSLASHVref] = ACTIONS(12357), + [anon_sym_BSLASHautoref] = ACTIONS(12357), + [anon_sym_BSLASHpageref] = ACTIONS(12357), + [anon_sym_BSLASHcref] = ACTIONS(12357), + [anon_sym_BSLASHCref] = ACTIONS(12357), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnameCref] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHlabelcref] = ACTIONS(12357), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12357), + [anon_sym_BSLASHeqref] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange] = ACTIONS(12357), + [anon_sym_BSLASHCrefrange] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewlabel] = ACTIONS(12357), + [anon_sym_BSLASHnewcommand] = ACTIONS(12357), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12357), + [anon_sym_BSLASHgls] = ACTIONS(12357), + [anon_sym_BSLASHGls] = ACTIONS(12357), + [anon_sym_BSLASHGLS] = ACTIONS(12357), + [anon_sym_BSLASHglspl] = ACTIONS(12357), + [anon_sym_BSLASHGlspl] = ACTIONS(12357), + [anon_sym_BSLASHGLSpl] = ACTIONS(12357), + [anon_sym_BSLASHglsdisp] = ACTIONS(12357), + [anon_sym_BSLASHglslink] = ACTIONS(12357), + [anon_sym_BSLASHglstext] = ACTIONS(12357), + [anon_sym_BSLASHGlstext] = ACTIONS(12357), + [anon_sym_BSLASHGLStext] = ACTIONS(12357), + [anon_sym_BSLASHglsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12357), + [anon_sym_BSLASHglsplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSplural] = ACTIONS(12357), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHglsname] = ACTIONS(12357), + [anon_sym_BSLASHGlsname] = ACTIONS(12357), + [anon_sym_BSLASHGLSname] = ACTIONS(12357), + [anon_sym_BSLASHglssymbol] = ACTIONS(12357), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12357), + [anon_sym_BSLASHglsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12357), + [anon_sym_BSLASHglsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12357), + [anon_sym_BSLASHglsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12357), + [anon_sym_BSLASHglsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12357), + [anon_sym_BSLASHglsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12357), + [anon_sym_BSLASHnewacronym] = ACTIONS(12357), + [anon_sym_BSLASHacrshort] = ACTIONS(12357), + [anon_sym_BSLASHAcrshort] = ACTIONS(12357), + [anon_sym_BSLASHACRshort] = ACTIONS(12357), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12357), + [anon_sym_BSLASHacrlong] = ACTIONS(12357), + [anon_sym_BSLASHAcrlong] = ACTIONS(12357), + [anon_sym_BSLASHACRlong] = ACTIONS(12357), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12357), + [anon_sym_BSLASHacrfull] = ACTIONS(12357), + [anon_sym_BSLASHAcrfull] = ACTIONS(12357), + [anon_sym_BSLASHACRfull] = ACTIONS(12357), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12357), + [anon_sym_BSLASHacs] = ACTIONS(12357), + [anon_sym_BSLASHAcs] = ACTIONS(12357), + [anon_sym_BSLASHacsp] = ACTIONS(12357), + [anon_sym_BSLASHAcsp] = ACTIONS(12357), + [anon_sym_BSLASHacl] = ACTIONS(12357), + [anon_sym_BSLASHAcl] = ACTIONS(12357), + [anon_sym_BSLASHaclp] = ACTIONS(12357), + [anon_sym_BSLASHAclp] = ACTIONS(12357), + [anon_sym_BSLASHacf] = ACTIONS(12357), + [anon_sym_BSLASHAcf] = ACTIONS(12357), + [anon_sym_BSLASHacfp] = ACTIONS(12357), + [anon_sym_BSLASHAcfp] = ACTIONS(12357), + [anon_sym_BSLASHac] = ACTIONS(12357), + [anon_sym_BSLASHAc] = ACTIONS(12357), + [anon_sym_BSLASHacp] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12357), + [anon_sym_BSLASHcolor] = ACTIONS(12357), + [anon_sym_BSLASHcolorbox] = ACTIONS(12357), + [anon_sym_BSLASHtextcolor] = ACTIONS(12357), + [anon_sym_BSLASHpagecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12357), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12357), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12357), + }, + [1430] = { + [sym_generic_command_name] = ACTIONS(12361), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12361), + [aux_sym_paragraph_token1] = ACTIONS(12361), + [aux_sym_subparagraph_token1] = ACTIONS(12361), + [anon_sym_BSLASHitem] = ACTIONS(12361), + [anon_sym_LBRACK] = ACTIONS(12359), + [anon_sym_RBRACK] = ACTIONS(12359), + [anon_sym_LBRACE] = ACTIONS(12359), + [anon_sym_RBRACE] = ACTIONS(12359), + [anon_sym_LPAREN] = ACTIONS(12359), + [anon_sym_COMMA] = ACTIONS(12359), + [anon_sym_EQ] = ACTIONS(12359), + [sym_word] = ACTIONS(12359), + [sym_param] = ACTIONS(12359), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12359), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12359), + [anon_sym_DOLLAR] = ACTIONS(12361), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12359), + [anon_sym_BSLASHbegin] = ACTIONS(12361), + [anon_sym_BSLASHcaption] = ACTIONS(12361), + [anon_sym_BSLASHcite] = ACTIONS(12361), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCite] = ACTIONS(12361), + [anon_sym_BSLASHnocite] = ACTIONS(12361), + [anon_sym_BSLASHcitet] = ACTIONS(12361), + [anon_sym_BSLASHcitep] = ACTIONS(12361), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteauthor] = ACTIONS(12361), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12361), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitetitle] = ACTIONS(12361), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteyear] = ACTIONS(12361), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitedate] = ACTIONS(12361), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteurl] = ACTIONS(12361), + [anon_sym_BSLASHfullcite] = ACTIONS(12361), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12361), + [anon_sym_BSLASHcitealt] = ACTIONS(12361), + [anon_sym_BSLASHcitealp] = ACTIONS(12361), + [anon_sym_BSLASHcitetext] = ACTIONS(12361), + [anon_sym_BSLASHparencite] = ACTIONS(12361), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHParencite] = ACTIONS(12361), + [anon_sym_BSLASHfootcite] = ACTIONS(12361), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12361), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12361), + [anon_sym_BSLASHtextcite] = ACTIONS(12361), + [anon_sym_BSLASHTextcite] = ACTIONS(12361), + [anon_sym_BSLASHsmartcite] = ACTIONS(12361), + [anon_sym_BSLASHSmartcite] = ACTIONS(12361), + [anon_sym_BSLASHsupercite] = ACTIONS(12361), + [anon_sym_BSLASHautocite] = ACTIONS(12361), + [anon_sym_BSLASHAutocite] = ACTIONS(12361), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHvolcite] = ACTIONS(12361), + [anon_sym_BSLASHVolcite] = ACTIONS(12361), + [anon_sym_BSLASHpvolcite] = ACTIONS(12361), + [anon_sym_BSLASHPvolcite] = ACTIONS(12361), + [anon_sym_BSLASHfvolcite] = ACTIONS(12361), + [anon_sym_BSLASHftvolcite] = ACTIONS(12361), + [anon_sym_BSLASHsvolcite] = ACTIONS(12361), + [anon_sym_BSLASHSvolcite] = ACTIONS(12361), + [anon_sym_BSLASHtvolcite] = ACTIONS(12361), + [anon_sym_BSLASHTvolcite] = ACTIONS(12361), + [anon_sym_BSLASHavolcite] = ACTIONS(12361), + [anon_sym_BSLASHAvolcite] = ACTIONS(12361), + [anon_sym_BSLASHnotecite] = ACTIONS(12361), + [anon_sym_BSLASHpnotecite] = ACTIONS(12361), + [anon_sym_BSLASHPnotecite] = ACTIONS(12361), + [anon_sym_BSLASHfnotecite] = ACTIONS(12361), + [anon_sym_BSLASHusepackage] = ACTIONS(12361), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12361), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12361), + [anon_sym_BSLASHinclude] = ACTIONS(12361), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12361), + [anon_sym_BSLASHinput] = ACTIONS(12361), + [anon_sym_BSLASHsubfile] = ACTIONS(12361), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12361), + [anon_sym_BSLASHbibliography] = ACTIONS(12361), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12361), + [anon_sym_BSLASHincludesvg] = ACTIONS(12361), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12361), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12361), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12361), + [anon_sym_BSLASHimport] = ACTIONS(12361), + [anon_sym_BSLASHsubimport] = ACTIONS(12361), + [anon_sym_BSLASHinputfrom] = ACTIONS(12361), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12361), + [anon_sym_BSLASHincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHlabel] = ACTIONS(12361), + [anon_sym_BSLASHref] = ACTIONS(12361), + [anon_sym_BSLASHvref] = ACTIONS(12361), + [anon_sym_BSLASHVref] = ACTIONS(12361), + [anon_sym_BSLASHautoref] = ACTIONS(12361), + [anon_sym_BSLASHpageref] = ACTIONS(12361), + [anon_sym_BSLASHcref] = ACTIONS(12361), + [anon_sym_BSLASHCref] = ACTIONS(12361), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnameCref] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHlabelcref] = ACTIONS(12361), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12361), + [anon_sym_BSLASHeqref] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange] = ACTIONS(12361), + [anon_sym_BSLASHCrefrange] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewlabel] = ACTIONS(12361), + [anon_sym_BSLASHnewcommand] = ACTIONS(12361), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12361), + [anon_sym_BSLASHgls] = ACTIONS(12361), + [anon_sym_BSLASHGls] = ACTIONS(12361), + [anon_sym_BSLASHGLS] = ACTIONS(12361), + [anon_sym_BSLASHglspl] = ACTIONS(12361), + [anon_sym_BSLASHGlspl] = ACTIONS(12361), + [anon_sym_BSLASHGLSpl] = ACTIONS(12361), + [anon_sym_BSLASHglsdisp] = ACTIONS(12361), + [anon_sym_BSLASHglslink] = ACTIONS(12361), + [anon_sym_BSLASHglstext] = ACTIONS(12361), + [anon_sym_BSLASHGlstext] = ACTIONS(12361), + [anon_sym_BSLASHGLStext] = ACTIONS(12361), + [anon_sym_BSLASHglsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12361), + [anon_sym_BSLASHglsplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSplural] = ACTIONS(12361), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHglsname] = ACTIONS(12361), + [anon_sym_BSLASHGlsname] = ACTIONS(12361), + [anon_sym_BSLASHGLSname] = ACTIONS(12361), + [anon_sym_BSLASHglssymbol] = ACTIONS(12361), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12361), + [anon_sym_BSLASHglsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12361), + [anon_sym_BSLASHglsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12361), + [anon_sym_BSLASHglsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12361), + [anon_sym_BSLASHglsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12361), + [anon_sym_BSLASHglsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12361), + [anon_sym_BSLASHnewacronym] = ACTIONS(12361), + [anon_sym_BSLASHacrshort] = ACTIONS(12361), + [anon_sym_BSLASHAcrshort] = ACTIONS(12361), + [anon_sym_BSLASHACRshort] = ACTIONS(12361), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12361), + [anon_sym_BSLASHacrlong] = ACTIONS(12361), + [anon_sym_BSLASHAcrlong] = ACTIONS(12361), + [anon_sym_BSLASHACRlong] = ACTIONS(12361), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12361), + [anon_sym_BSLASHacrfull] = ACTIONS(12361), + [anon_sym_BSLASHAcrfull] = ACTIONS(12361), + [anon_sym_BSLASHACRfull] = ACTIONS(12361), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12361), + [anon_sym_BSLASHacs] = ACTIONS(12361), + [anon_sym_BSLASHAcs] = ACTIONS(12361), + [anon_sym_BSLASHacsp] = ACTIONS(12361), + [anon_sym_BSLASHAcsp] = ACTIONS(12361), + [anon_sym_BSLASHacl] = ACTIONS(12361), + [anon_sym_BSLASHAcl] = ACTIONS(12361), + [anon_sym_BSLASHaclp] = ACTIONS(12361), + [anon_sym_BSLASHAclp] = ACTIONS(12361), + [anon_sym_BSLASHacf] = ACTIONS(12361), + [anon_sym_BSLASHAcf] = ACTIONS(12361), + [anon_sym_BSLASHacfp] = ACTIONS(12361), + [anon_sym_BSLASHAcfp] = ACTIONS(12361), + [anon_sym_BSLASHac] = ACTIONS(12361), + [anon_sym_BSLASHAc] = ACTIONS(12361), + [anon_sym_BSLASHacp] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12361), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12361), + [anon_sym_BSLASHcolor] = ACTIONS(12361), + [anon_sym_BSLASHcolorbox] = ACTIONS(12361), + [anon_sym_BSLASHtextcolor] = ACTIONS(12361), + [anon_sym_BSLASHpagecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12361), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12361), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12361), + }, + [1431] = { + [sym_generic_command_name] = ACTIONS(12369), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12369), + [aux_sym_paragraph_token1] = ACTIONS(12369), + [aux_sym_subparagraph_token1] = ACTIONS(12369), + [anon_sym_BSLASHitem] = ACTIONS(12369), + [anon_sym_LBRACK] = ACTIONS(12367), + [anon_sym_RBRACK] = ACTIONS(12367), + [anon_sym_LBRACE] = ACTIONS(12367), + [anon_sym_RBRACE] = ACTIONS(12367), + [anon_sym_LPAREN] = ACTIONS(12367), + [anon_sym_COMMA] = ACTIONS(12367), + [anon_sym_EQ] = ACTIONS(12367), + [sym_word] = ACTIONS(12367), + [sym_param] = ACTIONS(12367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12367), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12367), + [anon_sym_DOLLAR] = ACTIONS(12369), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12367), + [anon_sym_BSLASHbegin] = ACTIONS(12369), + [anon_sym_BSLASHcaption] = ACTIONS(12369), + [anon_sym_BSLASHcite] = ACTIONS(12369), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCite] = ACTIONS(12369), + [anon_sym_BSLASHnocite] = ACTIONS(12369), + [anon_sym_BSLASHcitet] = ACTIONS(12369), + [anon_sym_BSLASHcitep] = ACTIONS(12369), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteauthor] = ACTIONS(12369), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12369), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitetitle] = ACTIONS(12369), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteyear] = ACTIONS(12369), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitedate] = ACTIONS(12369), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteurl] = ACTIONS(12369), + [anon_sym_BSLASHfullcite] = ACTIONS(12369), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12369), + [anon_sym_BSLASHcitealt] = ACTIONS(12369), + [anon_sym_BSLASHcitealp] = ACTIONS(12369), + [anon_sym_BSLASHcitetext] = ACTIONS(12369), + [anon_sym_BSLASHparencite] = ACTIONS(12369), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHParencite] = ACTIONS(12369), + [anon_sym_BSLASHfootcite] = ACTIONS(12369), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12369), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12369), + [anon_sym_BSLASHtextcite] = ACTIONS(12369), + [anon_sym_BSLASHTextcite] = ACTIONS(12369), + [anon_sym_BSLASHsmartcite] = ACTIONS(12369), + [anon_sym_BSLASHSmartcite] = ACTIONS(12369), + [anon_sym_BSLASHsupercite] = ACTIONS(12369), + [anon_sym_BSLASHautocite] = ACTIONS(12369), + [anon_sym_BSLASHAutocite] = ACTIONS(12369), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHvolcite] = ACTIONS(12369), + [anon_sym_BSLASHVolcite] = ACTIONS(12369), + [anon_sym_BSLASHpvolcite] = ACTIONS(12369), + [anon_sym_BSLASHPvolcite] = ACTIONS(12369), + [anon_sym_BSLASHfvolcite] = ACTIONS(12369), + [anon_sym_BSLASHftvolcite] = ACTIONS(12369), + [anon_sym_BSLASHsvolcite] = ACTIONS(12369), + [anon_sym_BSLASHSvolcite] = ACTIONS(12369), + [anon_sym_BSLASHtvolcite] = ACTIONS(12369), + [anon_sym_BSLASHTvolcite] = ACTIONS(12369), + [anon_sym_BSLASHavolcite] = ACTIONS(12369), + [anon_sym_BSLASHAvolcite] = ACTIONS(12369), + [anon_sym_BSLASHnotecite] = ACTIONS(12369), + [anon_sym_BSLASHpnotecite] = ACTIONS(12369), + [anon_sym_BSLASHPnotecite] = ACTIONS(12369), + [anon_sym_BSLASHfnotecite] = ACTIONS(12369), + [anon_sym_BSLASHusepackage] = ACTIONS(12369), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12369), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12369), + [anon_sym_BSLASHinclude] = ACTIONS(12369), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12369), + [anon_sym_BSLASHinput] = ACTIONS(12369), + [anon_sym_BSLASHsubfile] = ACTIONS(12369), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12369), + [anon_sym_BSLASHbibliography] = ACTIONS(12369), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12369), + [anon_sym_BSLASHincludesvg] = ACTIONS(12369), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12369), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12369), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12369), + [anon_sym_BSLASHimport] = ACTIONS(12369), + [anon_sym_BSLASHsubimport] = ACTIONS(12369), + [anon_sym_BSLASHinputfrom] = ACTIONS(12369), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12369), + [anon_sym_BSLASHincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHlabel] = ACTIONS(12369), + [anon_sym_BSLASHref] = ACTIONS(12369), + [anon_sym_BSLASHvref] = ACTIONS(12369), + [anon_sym_BSLASHVref] = ACTIONS(12369), + [anon_sym_BSLASHautoref] = ACTIONS(12369), + [anon_sym_BSLASHpageref] = ACTIONS(12369), + [anon_sym_BSLASHcref] = ACTIONS(12369), + [anon_sym_BSLASHCref] = ACTIONS(12369), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnameCref] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHlabelcref] = ACTIONS(12369), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12369), + [anon_sym_BSLASHeqref] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange] = ACTIONS(12369), + [anon_sym_BSLASHCrefrange] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewlabel] = ACTIONS(12369), + [anon_sym_BSLASHnewcommand] = ACTIONS(12369), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12369), + [anon_sym_BSLASHgls] = ACTIONS(12369), + [anon_sym_BSLASHGls] = ACTIONS(12369), + [anon_sym_BSLASHGLS] = ACTIONS(12369), + [anon_sym_BSLASHglspl] = ACTIONS(12369), + [anon_sym_BSLASHGlspl] = ACTIONS(12369), + [anon_sym_BSLASHGLSpl] = ACTIONS(12369), + [anon_sym_BSLASHglsdisp] = ACTIONS(12369), + [anon_sym_BSLASHglslink] = ACTIONS(12369), + [anon_sym_BSLASHglstext] = ACTIONS(12369), + [anon_sym_BSLASHGlstext] = ACTIONS(12369), + [anon_sym_BSLASHGLStext] = ACTIONS(12369), + [anon_sym_BSLASHglsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12369), + [anon_sym_BSLASHglsplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSplural] = ACTIONS(12369), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHglsname] = ACTIONS(12369), + [anon_sym_BSLASHGlsname] = ACTIONS(12369), + [anon_sym_BSLASHGLSname] = ACTIONS(12369), + [anon_sym_BSLASHglssymbol] = ACTIONS(12369), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12369), + [anon_sym_BSLASHglsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12369), + [anon_sym_BSLASHglsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12369), + [anon_sym_BSLASHglsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12369), + [anon_sym_BSLASHglsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12369), + [anon_sym_BSLASHglsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12369), + [anon_sym_BSLASHnewacronym] = ACTIONS(12369), + [anon_sym_BSLASHacrshort] = ACTIONS(12369), + [anon_sym_BSLASHAcrshort] = ACTIONS(12369), + [anon_sym_BSLASHACRshort] = ACTIONS(12369), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12369), + [anon_sym_BSLASHacrlong] = ACTIONS(12369), + [anon_sym_BSLASHAcrlong] = ACTIONS(12369), + [anon_sym_BSLASHACRlong] = ACTIONS(12369), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12369), + [anon_sym_BSLASHacrfull] = ACTIONS(12369), + [anon_sym_BSLASHAcrfull] = ACTIONS(12369), + [anon_sym_BSLASHACRfull] = ACTIONS(12369), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12369), + [anon_sym_BSLASHacs] = ACTIONS(12369), + [anon_sym_BSLASHAcs] = ACTIONS(12369), + [anon_sym_BSLASHacsp] = ACTIONS(12369), + [anon_sym_BSLASHAcsp] = ACTIONS(12369), + [anon_sym_BSLASHacl] = ACTIONS(12369), + [anon_sym_BSLASHAcl] = ACTIONS(12369), + [anon_sym_BSLASHaclp] = ACTIONS(12369), + [anon_sym_BSLASHAclp] = ACTIONS(12369), + [anon_sym_BSLASHacf] = ACTIONS(12369), + [anon_sym_BSLASHAcf] = ACTIONS(12369), + [anon_sym_BSLASHacfp] = ACTIONS(12369), + [anon_sym_BSLASHAcfp] = ACTIONS(12369), + [anon_sym_BSLASHac] = ACTIONS(12369), + [anon_sym_BSLASHAc] = ACTIONS(12369), + [anon_sym_BSLASHacp] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12369), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12369), + [anon_sym_BSLASHcolor] = ACTIONS(12369), + [anon_sym_BSLASHcolorbox] = ACTIONS(12369), + [anon_sym_BSLASHtextcolor] = ACTIONS(12369), + [anon_sym_BSLASHpagecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12369), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12369), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12369), + }, + [1432] = { + [sym_generic_command_name] = ACTIONS(12373), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12373), + [aux_sym_paragraph_token1] = ACTIONS(12373), + [aux_sym_subparagraph_token1] = ACTIONS(12373), + [anon_sym_BSLASHitem] = ACTIONS(12373), + [anon_sym_LBRACK] = ACTIONS(12371), + [anon_sym_RBRACK] = ACTIONS(12371), + [anon_sym_LBRACE] = ACTIONS(12371), + [anon_sym_RBRACE] = ACTIONS(12371), + [anon_sym_LPAREN] = ACTIONS(12371), + [anon_sym_COMMA] = ACTIONS(12371), + [anon_sym_EQ] = ACTIONS(12371), + [sym_word] = ACTIONS(12371), + [sym_param] = ACTIONS(12371), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12371), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12371), + [anon_sym_DOLLAR] = ACTIONS(12373), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12371), + [anon_sym_BSLASHbegin] = ACTIONS(12373), + [anon_sym_BSLASHcaption] = ACTIONS(12373), + [anon_sym_BSLASHcite] = ACTIONS(12373), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCite] = ACTIONS(12373), + [anon_sym_BSLASHnocite] = ACTIONS(12373), + [anon_sym_BSLASHcitet] = ACTIONS(12373), + [anon_sym_BSLASHcitep] = ACTIONS(12373), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteauthor] = ACTIONS(12373), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12373), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitetitle] = ACTIONS(12373), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteyear] = ACTIONS(12373), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitedate] = ACTIONS(12373), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteurl] = ACTIONS(12373), + [anon_sym_BSLASHfullcite] = ACTIONS(12373), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12373), + [anon_sym_BSLASHcitealt] = ACTIONS(12373), + [anon_sym_BSLASHcitealp] = ACTIONS(12373), + [anon_sym_BSLASHcitetext] = ACTIONS(12373), + [anon_sym_BSLASHparencite] = ACTIONS(12373), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHParencite] = ACTIONS(12373), + [anon_sym_BSLASHfootcite] = ACTIONS(12373), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12373), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12373), + [anon_sym_BSLASHtextcite] = ACTIONS(12373), + [anon_sym_BSLASHTextcite] = ACTIONS(12373), + [anon_sym_BSLASHsmartcite] = ACTIONS(12373), + [anon_sym_BSLASHSmartcite] = ACTIONS(12373), + [anon_sym_BSLASHsupercite] = ACTIONS(12373), + [anon_sym_BSLASHautocite] = ACTIONS(12373), + [anon_sym_BSLASHAutocite] = ACTIONS(12373), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHvolcite] = ACTIONS(12373), + [anon_sym_BSLASHVolcite] = ACTIONS(12373), + [anon_sym_BSLASHpvolcite] = ACTIONS(12373), + [anon_sym_BSLASHPvolcite] = ACTIONS(12373), + [anon_sym_BSLASHfvolcite] = ACTIONS(12373), + [anon_sym_BSLASHftvolcite] = ACTIONS(12373), + [anon_sym_BSLASHsvolcite] = ACTIONS(12373), + [anon_sym_BSLASHSvolcite] = ACTIONS(12373), + [anon_sym_BSLASHtvolcite] = ACTIONS(12373), + [anon_sym_BSLASHTvolcite] = ACTIONS(12373), + [anon_sym_BSLASHavolcite] = ACTIONS(12373), + [anon_sym_BSLASHAvolcite] = ACTIONS(12373), + [anon_sym_BSLASHnotecite] = ACTIONS(12373), + [anon_sym_BSLASHpnotecite] = ACTIONS(12373), + [anon_sym_BSLASHPnotecite] = ACTIONS(12373), + [anon_sym_BSLASHfnotecite] = ACTIONS(12373), + [anon_sym_BSLASHusepackage] = ACTIONS(12373), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12373), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12373), + [anon_sym_BSLASHinclude] = ACTIONS(12373), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12373), + [anon_sym_BSLASHinput] = ACTIONS(12373), + [anon_sym_BSLASHsubfile] = ACTIONS(12373), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12373), + [anon_sym_BSLASHbibliography] = ACTIONS(12373), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12373), + [anon_sym_BSLASHincludesvg] = ACTIONS(12373), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12373), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12373), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12373), + [anon_sym_BSLASHimport] = ACTIONS(12373), + [anon_sym_BSLASHsubimport] = ACTIONS(12373), + [anon_sym_BSLASHinputfrom] = ACTIONS(12373), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12373), + [anon_sym_BSLASHincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHlabel] = ACTIONS(12373), + [anon_sym_BSLASHref] = ACTIONS(12373), + [anon_sym_BSLASHvref] = ACTIONS(12373), + [anon_sym_BSLASHVref] = ACTIONS(12373), + [anon_sym_BSLASHautoref] = ACTIONS(12373), + [anon_sym_BSLASHpageref] = ACTIONS(12373), + [anon_sym_BSLASHcref] = ACTIONS(12373), + [anon_sym_BSLASHCref] = ACTIONS(12373), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnameCref] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHlabelcref] = ACTIONS(12373), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12373), + [anon_sym_BSLASHeqref] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange] = ACTIONS(12373), + [anon_sym_BSLASHCrefrange] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewlabel] = ACTIONS(12373), + [anon_sym_BSLASHnewcommand] = ACTIONS(12373), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12373), + [anon_sym_BSLASHgls] = ACTIONS(12373), + [anon_sym_BSLASHGls] = ACTIONS(12373), + [anon_sym_BSLASHGLS] = ACTIONS(12373), + [anon_sym_BSLASHglspl] = ACTIONS(12373), + [anon_sym_BSLASHGlspl] = ACTIONS(12373), + [anon_sym_BSLASHGLSpl] = ACTIONS(12373), + [anon_sym_BSLASHglsdisp] = ACTIONS(12373), + [anon_sym_BSLASHglslink] = ACTIONS(12373), + [anon_sym_BSLASHglstext] = ACTIONS(12373), + [anon_sym_BSLASHGlstext] = ACTIONS(12373), + [anon_sym_BSLASHGLStext] = ACTIONS(12373), + [anon_sym_BSLASHglsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12373), + [anon_sym_BSLASHglsplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSplural] = ACTIONS(12373), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHglsname] = ACTIONS(12373), + [anon_sym_BSLASHGlsname] = ACTIONS(12373), + [anon_sym_BSLASHGLSname] = ACTIONS(12373), + [anon_sym_BSLASHglssymbol] = ACTIONS(12373), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12373), + [anon_sym_BSLASHglsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12373), + [anon_sym_BSLASHglsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12373), + [anon_sym_BSLASHglsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12373), + [anon_sym_BSLASHglsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12373), + [anon_sym_BSLASHglsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12373), + [anon_sym_BSLASHnewacronym] = ACTIONS(12373), + [anon_sym_BSLASHacrshort] = ACTIONS(12373), + [anon_sym_BSLASHAcrshort] = ACTIONS(12373), + [anon_sym_BSLASHACRshort] = ACTIONS(12373), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12373), + [anon_sym_BSLASHacrlong] = ACTIONS(12373), + [anon_sym_BSLASHAcrlong] = ACTIONS(12373), + [anon_sym_BSLASHACRlong] = ACTIONS(12373), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12373), + [anon_sym_BSLASHacrfull] = ACTIONS(12373), + [anon_sym_BSLASHAcrfull] = ACTIONS(12373), + [anon_sym_BSLASHACRfull] = ACTIONS(12373), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12373), + [anon_sym_BSLASHacs] = ACTIONS(12373), + [anon_sym_BSLASHAcs] = ACTIONS(12373), + [anon_sym_BSLASHacsp] = ACTIONS(12373), + [anon_sym_BSLASHAcsp] = ACTIONS(12373), + [anon_sym_BSLASHacl] = ACTIONS(12373), + [anon_sym_BSLASHAcl] = ACTIONS(12373), + [anon_sym_BSLASHaclp] = ACTIONS(12373), + [anon_sym_BSLASHAclp] = ACTIONS(12373), + [anon_sym_BSLASHacf] = ACTIONS(12373), + [anon_sym_BSLASHAcf] = ACTIONS(12373), + [anon_sym_BSLASHacfp] = ACTIONS(12373), + [anon_sym_BSLASHAcfp] = ACTIONS(12373), + [anon_sym_BSLASHac] = ACTIONS(12373), + [anon_sym_BSLASHAc] = ACTIONS(12373), + [anon_sym_BSLASHacp] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12373), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12373), + [anon_sym_BSLASHcolor] = ACTIONS(12373), + [anon_sym_BSLASHcolorbox] = ACTIONS(12373), + [anon_sym_BSLASHtextcolor] = ACTIONS(12373), + [anon_sym_BSLASHpagecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12373), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12373), + }, + [1433] = { + [sym_generic_command_name] = ACTIONS(12377), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12377), + [aux_sym_paragraph_token1] = ACTIONS(12377), + [aux_sym_subparagraph_token1] = ACTIONS(12377), + [anon_sym_BSLASHitem] = ACTIONS(12377), + [anon_sym_LBRACK] = ACTIONS(12375), + [anon_sym_RBRACK] = ACTIONS(12375), + [anon_sym_LBRACE] = ACTIONS(12375), + [anon_sym_RBRACE] = ACTIONS(12375), + [anon_sym_LPAREN] = ACTIONS(12375), + [anon_sym_COMMA] = ACTIONS(12375), + [anon_sym_EQ] = ACTIONS(12375), + [sym_word] = ACTIONS(12375), + [sym_param] = ACTIONS(12375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12375), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12375), + [anon_sym_DOLLAR] = ACTIONS(12377), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12375), + [anon_sym_BSLASHbegin] = ACTIONS(12377), + [anon_sym_BSLASHcaption] = ACTIONS(12377), + [anon_sym_BSLASHcite] = ACTIONS(12377), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCite] = ACTIONS(12377), + [anon_sym_BSLASHnocite] = ACTIONS(12377), + [anon_sym_BSLASHcitet] = ACTIONS(12377), + [anon_sym_BSLASHcitep] = ACTIONS(12377), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteauthor] = ACTIONS(12377), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12377), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitetitle] = ACTIONS(12377), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteyear] = ACTIONS(12377), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitedate] = ACTIONS(12377), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteurl] = ACTIONS(12377), + [anon_sym_BSLASHfullcite] = ACTIONS(12377), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12377), + [anon_sym_BSLASHcitealt] = ACTIONS(12377), + [anon_sym_BSLASHcitealp] = ACTIONS(12377), + [anon_sym_BSLASHcitetext] = ACTIONS(12377), + [anon_sym_BSLASHparencite] = ACTIONS(12377), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHParencite] = ACTIONS(12377), + [anon_sym_BSLASHfootcite] = ACTIONS(12377), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12377), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12377), + [anon_sym_BSLASHtextcite] = ACTIONS(12377), + [anon_sym_BSLASHTextcite] = ACTIONS(12377), + [anon_sym_BSLASHsmartcite] = ACTIONS(12377), + [anon_sym_BSLASHSmartcite] = ACTIONS(12377), + [anon_sym_BSLASHsupercite] = ACTIONS(12377), + [anon_sym_BSLASHautocite] = ACTIONS(12377), + [anon_sym_BSLASHAutocite] = ACTIONS(12377), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHvolcite] = ACTIONS(12377), + [anon_sym_BSLASHVolcite] = ACTIONS(12377), + [anon_sym_BSLASHpvolcite] = ACTIONS(12377), + [anon_sym_BSLASHPvolcite] = ACTIONS(12377), + [anon_sym_BSLASHfvolcite] = ACTIONS(12377), + [anon_sym_BSLASHftvolcite] = ACTIONS(12377), + [anon_sym_BSLASHsvolcite] = ACTIONS(12377), + [anon_sym_BSLASHSvolcite] = ACTIONS(12377), + [anon_sym_BSLASHtvolcite] = ACTIONS(12377), + [anon_sym_BSLASHTvolcite] = ACTIONS(12377), + [anon_sym_BSLASHavolcite] = ACTIONS(12377), + [anon_sym_BSLASHAvolcite] = ACTIONS(12377), + [anon_sym_BSLASHnotecite] = ACTIONS(12377), + [anon_sym_BSLASHpnotecite] = ACTIONS(12377), + [anon_sym_BSLASHPnotecite] = ACTIONS(12377), + [anon_sym_BSLASHfnotecite] = ACTIONS(12377), + [anon_sym_BSLASHusepackage] = ACTIONS(12377), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12377), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12377), + [anon_sym_BSLASHinclude] = ACTIONS(12377), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12377), + [anon_sym_BSLASHinput] = ACTIONS(12377), + [anon_sym_BSLASHsubfile] = ACTIONS(12377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12377), + [anon_sym_BSLASHbibliography] = ACTIONS(12377), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12377), + [anon_sym_BSLASHincludesvg] = ACTIONS(12377), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12377), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12377), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12377), + [anon_sym_BSLASHimport] = ACTIONS(12377), + [anon_sym_BSLASHsubimport] = ACTIONS(12377), + [anon_sym_BSLASHinputfrom] = ACTIONS(12377), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12377), + [anon_sym_BSLASHincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHlabel] = ACTIONS(12377), + [anon_sym_BSLASHref] = ACTIONS(12377), + [anon_sym_BSLASHvref] = ACTIONS(12377), + [anon_sym_BSLASHVref] = ACTIONS(12377), + [anon_sym_BSLASHautoref] = ACTIONS(12377), + [anon_sym_BSLASHpageref] = ACTIONS(12377), + [anon_sym_BSLASHcref] = ACTIONS(12377), + [anon_sym_BSLASHCref] = ACTIONS(12377), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnameCref] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHlabelcref] = ACTIONS(12377), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12377), + [anon_sym_BSLASHeqref] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange] = ACTIONS(12377), + [anon_sym_BSLASHCrefrange] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewlabel] = ACTIONS(12377), + [anon_sym_BSLASHnewcommand] = ACTIONS(12377), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12377), + [anon_sym_BSLASHgls] = ACTIONS(12377), + [anon_sym_BSLASHGls] = ACTIONS(12377), + [anon_sym_BSLASHGLS] = ACTIONS(12377), + [anon_sym_BSLASHglspl] = ACTIONS(12377), + [anon_sym_BSLASHGlspl] = ACTIONS(12377), + [anon_sym_BSLASHGLSpl] = ACTIONS(12377), + [anon_sym_BSLASHglsdisp] = ACTIONS(12377), + [anon_sym_BSLASHglslink] = ACTIONS(12377), + [anon_sym_BSLASHglstext] = ACTIONS(12377), + [anon_sym_BSLASHGlstext] = ACTIONS(12377), + [anon_sym_BSLASHGLStext] = ACTIONS(12377), + [anon_sym_BSLASHglsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12377), + [anon_sym_BSLASHglsplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSplural] = ACTIONS(12377), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHglsname] = ACTIONS(12377), + [anon_sym_BSLASHGlsname] = ACTIONS(12377), + [anon_sym_BSLASHGLSname] = ACTIONS(12377), + [anon_sym_BSLASHglssymbol] = ACTIONS(12377), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12377), + [anon_sym_BSLASHglsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12377), + [anon_sym_BSLASHglsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12377), + [anon_sym_BSLASHglsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12377), + [anon_sym_BSLASHglsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12377), + [anon_sym_BSLASHglsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12377), + [anon_sym_BSLASHnewacronym] = ACTIONS(12377), + [anon_sym_BSLASHacrshort] = ACTIONS(12377), + [anon_sym_BSLASHAcrshort] = ACTIONS(12377), + [anon_sym_BSLASHACRshort] = ACTIONS(12377), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12377), + [anon_sym_BSLASHacrlong] = ACTIONS(12377), + [anon_sym_BSLASHAcrlong] = ACTIONS(12377), + [anon_sym_BSLASHACRlong] = ACTIONS(12377), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12377), + [anon_sym_BSLASHacrfull] = ACTIONS(12377), + [anon_sym_BSLASHAcrfull] = ACTIONS(12377), + [anon_sym_BSLASHACRfull] = ACTIONS(12377), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12377), + [anon_sym_BSLASHacs] = ACTIONS(12377), + [anon_sym_BSLASHAcs] = ACTIONS(12377), + [anon_sym_BSLASHacsp] = ACTIONS(12377), + [anon_sym_BSLASHAcsp] = ACTIONS(12377), + [anon_sym_BSLASHacl] = ACTIONS(12377), + [anon_sym_BSLASHAcl] = ACTIONS(12377), + [anon_sym_BSLASHaclp] = ACTIONS(12377), + [anon_sym_BSLASHAclp] = ACTIONS(12377), + [anon_sym_BSLASHacf] = ACTIONS(12377), + [anon_sym_BSLASHAcf] = ACTIONS(12377), + [anon_sym_BSLASHacfp] = ACTIONS(12377), + [anon_sym_BSLASHAcfp] = ACTIONS(12377), + [anon_sym_BSLASHac] = ACTIONS(12377), + [anon_sym_BSLASHAc] = ACTIONS(12377), + [anon_sym_BSLASHacp] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12377), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12377), + [anon_sym_BSLASHcolor] = ACTIONS(12377), + [anon_sym_BSLASHcolorbox] = ACTIONS(12377), + [anon_sym_BSLASHtextcolor] = ACTIONS(12377), + [anon_sym_BSLASHpagecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12377), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12377), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12377), + }, + [1434] = { + [sym_generic_command_name] = ACTIONS(12381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12381), + [aux_sym_paragraph_token1] = ACTIONS(12381), + [aux_sym_subparagraph_token1] = ACTIONS(12381), + [anon_sym_BSLASHitem] = ACTIONS(12381), + [anon_sym_LBRACK] = ACTIONS(12379), + [anon_sym_RBRACK] = ACTIONS(12379), + [anon_sym_LBRACE] = ACTIONS(12379), + [anon_sym_RBRACE] = ACTIONS(12379), + [anon_sym_LPAREN] = ACTIONS(12379), + [anon_sym_COMMA] = ACTIONS(12379), + [anon_sym_EQ] = ACTIONS(12379), + [sym_word] = ACTIONS(12379), + [sym_param] = ACTIONS(12379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12379), + [anon_sym_DOLLAR] = ACTIONS(12381), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12379), + [anon_sym_BSLASHbegin] = ACTIONS(12381), + [anon_sym_BSLASHcaption] = ACTIONS(12381), + [anon_sym_BSLASHcite] = ACTIONS(12381), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCite] = ACTIONS(12381), + [anon_sym_BSLASHnocite] = ACTIONS(12381), + [anon_sym_BSLASHcitet] = ACTIONS(12381), + [anon_sym_BSLASHcitep] = ACTIONS(12381), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteauthor] = ACTIONS(12381), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12381), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitetitle] = ACTIONS(12381), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteyear] = ACTIONS(12381), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitedate] = ACTIONS(12381), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteurl] = ACTIONS(12381), + [anon_sym_BSLASHfullcite] = ACTIONS(12381), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12381), + [anon_sym_BSLASHcitealt] = ACTIONS(12381), + [anon_sym_BSLASHcitealp] = ACTIONS(12381), + [anon_sym_BSLASHcitetext] = ACTIONS(12381), + [anon_sym_BSLASHparencite] = ACTIONS(12381), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHParencite] = ACTIONS(12381), + [anon_sym_BSLASHfootcite] = ACTIONS(12381), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12381), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12381), + [anon_sym_BSLASHtextcite] = ACTIONS(12381), + [anon_sym_BSLASHTextcite] = ACTIONS(12381), + [anon_sym_BSLASHsmartcite] = ACTIONS(12381), + [anon_sym_BSLASHSmartcite] = ACTIONS(12381), + [anon_sym_BSLASHsupercite] = ACTIONS(12381), + [anon_sym_BSLASHautocite] = ACTIONS(12381), + [anon_sym_BSLASHAutocite] = ACTIONS(12381), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHvolcite] = ACTIONS(12381), + [anon_sym_BSLASHVolcite] = ACTIONS(12381), + [anon_sym_BSLASHpvolcite] = ACTIONS(12381), + [anon_sym_BSLASHPvolcite] = ACTIONS(12381), + [anon_sym_BSLASHfvolcite] = ACTIONS(12381), + [anon_sym_BSLASHftvolcite] = ACTIONS(12381), + [anon_sym_BSLASHsvolcite] = ACTIONS(12381), + [anon_sym_BSLASHSvolcite] = ACTIONS(12381), + [anon_sym_BSLASHtvolcite] = ACTIONS(12381), + [anon_sym_BSLASHTvolcite] = ACTIONS(12381), + [anon_sym_BSLASHavolcite] = ACTIONS(12381), + [anon_sym_BSLASHAvolcite] = ACTIONS(12381), + [anon_sym_BSLASHnotecite] = ACTIONS(12381), + [anon_sym_BSLASHpnotecite] = ACTIONS(12381), + [anon_sym_BSLASHPnotecite] = ACTIONS(12381), + [anon_sym_BSLASHfnotecite] = ACTIONS(12381), + [anon_sym_BSLASHusepackage] = ACTIONS(12381), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12381), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12381), + [anon_sym_BSLASHinclude] = ACTIONS(12381), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12381), + [anon_sym_BSLASHinput] = ACTIONS(12381), + [anon_sym_BSLASHsubfile] = ACTIONS(12381), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12381), + [anon_sym_BSLASHbibliography] = ACTIONS(12381), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12381), + [anon_sym_BSLASHincludesvg] = ACTIONS(12381), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12381), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12381), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12381), + [anon_sym_BSLASHimport] = ACTIONS(12381), + [anon_sym_BSLASHsubimport] = ACTIONS(12381), + [anon_sym_BSLASHinputfrom] = ACTIONS(12381), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12381), + [anon_sym_BSLASHincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHlabel] = ACTIONS(12381), + [anon_sym_BSLASHref] = ACTIONS(12381), + [anon_sym_BSLASHvref] = ACTIONS(12381), + [anon_sym_BSLASHVref] = ACTIONS(12381), + [anon_sym_BSLASHautoref] = ACTIONS(12381), + [anon_sym_BSLASHpageref] = ACTIONS(12381), + [anon_sym_BSLASHcref] = ACTIONS(12381), + [anon_sym_BSLASHCref] = ACTIONS(12381), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnameCref] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHlabelcref] = ACTIONS(12381), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12381), + [anon_sym_BSLASHeqref] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange] = ACTIONS(12381), + [anon_sym_BSLASHCrefrange] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewlabel] = ACTIONS(12381), + [anon_sym_BSLASHnewcommand] = ACTIONS(12381), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12381), + [anon_sym_BSLASHgls] = ACTIONS(12381), + [anon_sym_BSLASHGls] = ACTIONS(12381), + [anon_sym_BSLASHGLS] = ACTIONS(12381), + [anon_sym_BSLASHglspl] = ACTIONS(12381), + [anon_sym_BSLASHGlspl] = ACTIONS(12381), + [anon_sym_BSLASHGLSpl] = ACTIONS(12381), + [anon_sym_BSLASHglsdisp] = ACTIONS(12381), + [anon_sym_BSLASHglslink] = ACTIONS(12381), + [anon_sym_BSLASHglstext] = ACTIONS(12381), + [anon_sym_BSLASHGlstext] = ACTIONS(12381), + [anon_sym_BSLASHGLStext] = ACTIONS(12381), + [anon_sym_BSLASHglsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12381), + [anon_sym_BSLASHglsplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSplural] = ACTIONS(12381), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHglsname] = ACTIONS(12381), + [anon_sym_BSLASHGlsname] = ACTIONS(12381), + [anon_sym_BSLASHGLSname] = ACTIONS(12381), + [anon_sym_BSLASHglssymbol] = ACTIONS(12381), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12381), + [anon_sym_BSLASHglsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12381), + [anon_sym_BSLASHglsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12381), + [anon_sym_BSLASHglsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12381), + [anon_sym_BSLASHglsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12381), + [anon_sym_BSLASHglsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12381), + [anon_sym_BSLASHnewacronym] = ACTIONS(12381), + [anon_sym_BSLASHacrshort] = ACTIONS(12381), + [anon_sym_BSLASHAcrshort] = ACTIONS(12381), + [anon_sym_BSLASHACRshort] = ACTIONS(12381), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12381), + [anon_sym_BSLASHacrlong] = ACTIONS(12381), + [anon_sym_BSLASHAcrlong] = ACTIONS(12381), + [anon_sym_BSLASHACRlong] = ACTIONS(12381), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12381), + [anon_sym_BSLASHacrfull] = ACTIONS(12381), + [anon_sym_BSLASHAcrfull] = ACTIONS(12381), + [anon_sym_BSLASHACRfull] = ACTIONS(12381), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12381), + [anon_sym_BSLASHacs] = ACTIONS(12381), + [anon_sym_BSLASHAcs] = ACTIONS(12381), + [anon_sym_BSLASHacsp] = ACTIONS(12381), + [anon_sym_BSLASHAcsp] = ACTIONS(12381), + [anon_sym_BSLASHacl] = ACTIONS(12381), + [anon_sym_BSLASHAcl] = ACTIONS(12381), + [anon_sym_BSLASHaclp] = ACTIONS(12381), + [anon_sym_BSLASHAclp] = ACTIONS(12381), + [anon_sym_BSLASHacf] = ACTIONS(12381), + [anon_sym_BSLASHAcf] = ACTIONS(12381), + [anon_sym_BSLASHacfp] = ACTIONS(12381), + [anon_sym_BSLASHAcfp] = ACTIONS(12381), + [anon_sym_BSLASHac] = ACTIONS(12381), + [anon_sym_BSLASHAc] = ACTIONS(12381), + [anon_sym_BSLASHacp] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12381), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12381), + [anon_sym_BSLASHcolor] = ACTIONS(12381), + [anon_sym_BSLASHcolorbox] = ACTIONS(12381), + [anon_sym_BSLASHtextcolor] = ACTIONS(12381), + [anon_sym_BSLASHpagecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12381), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12381), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12381), + }, + [1435] = { + [sym_generic_command_name] = ACTIONS(12393), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12393), + [aux_sym_paragraph_token1] = ACTIONS(12393), + [aux_sym_subparagraph_token1] = ACTIONS(12393), + [anon_sym_BSLASHitem] = ACTIONS(12393), + [anon_sym_LBRACK] = ACTIONS(12391), + [anon_sym_RBRACK] = ACTIONS(12391), + [anon_sym_LBRACE] = ACTIONS(12391), + [anon_sym_RBRACE] = ACTIONS(12391), + [anon_sym_LPAREN] = ACTIONS(12391), + [anon_sym_COMMA] = ACTIONS(12391), + [anon_sym_EQ] = ACTIONS(12391), + [sym_word] = ACTIONS(12391), + [sym_param] = ACTIONS(12391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12391), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12391), + [anon_sym_DOLLAR] = ACTIONS(12393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12391), + [anon_sym_BSLASHbegin] = ACTIONS(12393), + [anon_sym_BSLASHcaption] = ACTIONS(12393), + [anon_sym_BSLASHcite] = ACTIONS(12393), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCite] = ACTIONS(12393), + [anon_sym_BSLASHnocite] = ACTIONS(12393), + [anon_sym_BSLASHcitet] = ACTIONS(12393), + [anon_sym_BSLASHcitep] = ACTIONS(12393), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteauthor] = ACTIONS(12393), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12393), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitetitle] = ACTIONS(12393), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteyear] = ACTIONS(12393), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitedate] = ACTIONS(12393), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteurl] = ACTIONS(12393), + [anon_sym_BSLASHfullcite] = ACTIONS(12393), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12393), + [anon_sym_BSLASHcitealt] = ACTIONS(12393), + [anon_sym_BSLASHcitealp] = ACTIONS(12393), + [anon_sym_BSLASHcitetext] = ACTIONS(12393), + [anon_sym_BSLASHparencite] = ACTIONS(12393), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHParencite] = ACTIONS(12393), + [anon_sym_BSLASHfootcite] = ACTIONS(12393), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12393), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12393), + [anon_sym_BSLASHtextcite] = ACTIONS(12393), + [anon_sym_BSLASHTextcite] = ACTIONS(12393), + [anon_sym_BSLASHsmartcite] = ACTIONS(12393), + [anon_sym_BSLASHSmartcite] = ACTIONS(12393), + [anon_sym_BSLASHsupercite] = ACTIONS(12393), + [anon_sym_BSLASHautocite] = ACTIONS(12393), + [anon_sym_BSLASHAutocite] = ACTIONS(12393), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHvolcite] = ACTIONS(12393), + [anon_sym_BSLASHVolcite] = ACTIONS(12393), + [anon_sym_BSLASHpvolcite] = ACTIONS(12393), + [anon_sym_BSLASHPvolcite] = ACTIONS(12393), + [anon_sym_BSLASHfvolcite] = ACTIONS(12393), + [anon_sym_BSLASHftvolcite] = ACTIONS(12393), + [anon_sym_BSLASHsvolcite] = ACTIONS(12393), + [anon_sym_BSLASHSvolcite] = ACTIONS(12393), + [anon_sym_BSLASHtvolcite] = ACTIONS(12393), + [anon_sym_BSLASHTvolcite] = ACTIONS(12393), + [anon_sym_BSLASHavolcite] = ACTIONS(12393), + [anon_sym_BSLASHAvolcite] = ACTIONS(12393), + [anon_sym_BSLASHnotecite] = ACTIONS(12393), + [anon_sym_BSLASHpnotecite] = ACTIONS(12393), + [anon_sym_BSLASHPnotecite] = ACTIONS(12393), + [anon_sym_BSLASHfnotecite] = ACTIONS(12393), + [anon_sym_BSLASHusepackage] = ACTIONS(12393), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12393), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12393), + [anon_sym_BSLASHinclude] = ACTIONS(12393), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12393), + [anon_sym_BSLASHinput] = ACTIONS(12393), + [anon_sym_BSLASHsubfile] = ACTIONS(12393), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12393), + [anon_sym_BSLASHbibliography] = ACTIONS(12393), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12393), + [anon_sym_BSLASHincludesvg] = ACTIONS(12393), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12393), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12393), + [anon_sym_BSLASHimport] = ACTIONS(12393), + [anon_sym_BSLASHsubimport] = ACTIONS(12393), + [anon_sym_BSLASHinputfrom] = ACTIONS(12393), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12393), + [anon_sym_BSLASHincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHlabel] = ACTIONS(12393), + [anon_sym_BSLASHref] = ACTIONS(12393), + [anon_sym_BSLASHvref] = ACTIONS(12393), + [anon_sym_BSLASHVref] = ACTIONS(12393), + [anon_sym_BSLASHautoref] = ACTIONS(12393), + [anon_sym_BSLASHpageref] = ACTIONS(12393), + [anon_sym_BSLASHcref] = ACTIONS(12393), + [anon_sym_BSLASHCref] = ACTIONS(12393), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnameCref] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHlabelcref] = ACTIONS(12393), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12393), + [anon_sym_BSLASHeqref] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange] = ACTIONS(12393), + [anon_sym_BSLASHCrefrange] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewlabel] = ACTIONS(12393), + [anon_sym_BSLASHnewcommand] = ACTIONS(12393), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12393), + [anon_sym_BSLASHgls] = ACTIONS(12393), + [anon_sym_BSLASHGls] = ACTIONS(12393), + [anon_sym_BSLASHGLS] = ACTIONS(12393), + [anon_sym_BSLASHglspl] = ACTIONS(12393), + [anon_sym_BSLASHGlspl] = ACTIONS(12393), + [anon_sym_BSLASHGLSpl] = ACTIONS(12393), + [anon_sym_BSLASHglsdisp] = ACTIONS(12393), + [anon_sym_BSLASHglslink] = ACTIONS(12393), + [anon_sym_BSLASHglstext] = ACTIONS(12393), + [anon_sym_BSLASHGlstext] = ACTIONS(12393), + [anon_sym_BSLASHGLStext] = ACTIONS(12393), + [anon_sym_BSLASHglsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12393), + [anon_sym_BSLASHglsplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSplural] = ACTIONS(12393), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHglsname] = ACTIONS(12393), + [anon_sym_BSLASHGlsname] = ACTIONS(12393), + [anon_sym_BSLASHGLSname] = ACTIONS(12393), + [anon_sym_BSLASHglssymbol] = ACTIONS(12393), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12393), + [anon_sym_BSLASHglsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12393), + [anon_sym_BSLASHglsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12393), + [anon_sym_BSLASHglsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12393), + [anon_sym_BSLASHglsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12393), + [anon_sym_BSLASHglsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12393), + [anon_sym_BSLASHnewacronym] = ACTIONS(12393), + [anon_sym_BSLASHacrshort] = ACTIONS(12393), + [anon_sym_BSLASHAcrshort] = ACTIONS(12393), + [anon_sym_BSLASHACRshort] = ACTIONS(12393), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12393), + [anon_sym_BSLASHacrlong] = ACTIONS(12393), + [anon_sym_BSLASHAcrlong] = ACTIONS(12393), + [anon_sym_BSLASHACRlong] = ACTIONS(12393), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12393), + [anon_sym_BSLASHacrfull] = ACTIONS(12393), + [anon_sym_BSLASHAcrfull] = ACTIONS(12393), + [anon_sym_BSLASHACRfull] = ACTIONS(12393), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12393), + [anon_sym_BSLASHacs] = ACTIONS(12393), + [anon_sym_BSLASHAcs] = ACTIONS(12393), + [anon_sym_BSLASHacsp] = ACTIONS(12393), + [anon_sym_BSLASHAcsp] = ACTIONS(12393), + [anon_sym_BSLASHacl] = ACTIONS(12393), + [anon_sym_BSLASHAcl] = ACTIONS(12393), + [anon_sym_BSLASHaclp] = ACTIONS(12393), + [anon_sym_BSLASHAclp] = ACTIONS(12393), + [anon_sym_BSLASHacf] = ACTIONS(12393), + [anon_sym_BSLASHAcf] = ACTIONS(12393), + [anon_sym_BSLASHacfp] = ACTIONS(12393), + [anon_sym_BSLASHAcfp] = ACTIONS(12393), + [anon_sym_BSLASHac] = ACTIONS(12393), + [anon_sym_BSLASHAc] = ACTIONS(12393), + [anon_sym_BSLASHacp] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12393), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12393), + [anon_sym_BSLASHcolor] = ACTIONS(12393), + [anon_sym_BSLASHcolorbox] = ACTIONS(12393), + [anon_sym_BSLASHtextcolor] = ACTIONS(12393), + [anon_sym_BSLASHpagecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12393), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12393), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12393), + }, + [1436] = { + [sym_generic_command_name] = ACTIONS(12397), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12397), + [aux_sym_paragraph_token1] = ACTIONS(12397), + [aux_sym_subparagraph_token1] = ACTIONS(12397), + [anon_sym_BSLASHitem] = ACTIONS(12397), + [anon_sym_LBRACK] = ACTIONS(12395), + [anon_sym_RBRACK] = ACTIONS(12395), + [anon_sym_LBRACE] = ACTIONS(12395), + [anon_sym_RBRACE] = ACTIONS(12395), + [anon_sym_LPAREN] = ACTIONS(12395), + [anon_sym_COMMA] = ACTIONS(12395), + [anon_sym_EQ] = ACTIONS(12395), + [sym_word] = ACTIONS(12395), + [sym_param] = ACTIONS(12395), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12395), + [anon_sym_DOLLAR] = ACTIONS(12397), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12395), + [anon_sym_BSLASHbegin] = ACTIONS(12397), + [anon_sym_BSLASHcaption] = ACTIONS(12397), + [anon_sym_BSLASHcite] = ACTIONS(12397), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCite] = ACTIONS(12397), + [anon_sym_BSLASHnocite] = ACTIONS(12397), + [anon_sym_BSLASHcitet] = ACTIONS(12397), + [anon_sym_BSLASHcitep] = ACTIONS(12397), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteauthor] = ACTIONS(12397), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12397), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitetitle] = ACTIONS(12397), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteyear] = ACTIONS(12397), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitedate] = ACTIONS(12397), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteurl] = ACTIONS(12397), + [anon_sym_BSLASHfullcite] = ACTIONS(12397), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12397), + [anon_sym_BSLASHcitealt] = ACTIONS(12397), + [anon_sym_BSLASHcitealp] = ACTIONS(12397), + [anon_sym_BSLASHcitetext] = ACTIONS(12397), + [anon_sym_BSLASHparencite] = ACTIONS(12397), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHParencite] = ACTIONS(12397), + [anon_sym_BSLASHfootcite] = ACTIONS(12397), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12397), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12397), + [anon_sym_BSLASHtextcite] = ACTIONS(12397), + [anon_sym_BSLASHTextcite] = ACTIONS(12397), + [anon_sym_BSLASHsmartcite] = ACTIONS(12397), + [anon_sym_BSLASHSmartcite] = ACTIONS(12397), + [anon_sym_BSLASHsupercite] = ACTIONS(12397), + [anon_sym_BSLASHautocite] = ACTIONS(12397), + [anon_sym_BSLASHAutocite] = ACTIONS(12397), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHvolcite] = ACTIONS(12397), + [anon_sym_BSLASHVolcite] = ACTIONS(12397), + [anon_sym_BSLASHpvolcite] = ACTIONS(12397), + [anon_sym_BSLASHPvolcite] = ACTIONS(12397), + [anon_sym_BSLASHfvolcite] = ACTIONS(12397), + [anon_sym_BSLASHftvolcite] = ACTIONS(12397), + [anon_sym_BSLASHsvolcite] = ACTIONS(12397), + [anon_sym_BSLASHSvolcite] = ACTIONS(12397), + [anon_sym_BSLASHtvolcite] = ACTIONS(12397), + [anon_sym_BSLASHTvolcite] = ACTIONS(12397), + [anon_sym_BSLASHavolcite] = ACTIONS(12397), + [anon_sym_BSLASHAvolcite] = ACTIONS(12397), + [anon_sym_BSLASHnotecite] = ACTIONS(12397), + [anon_sym_BSLASHpnotecite] = ACTIONS(12397), + [anon_sym_BSLASHPnotecite] = ACTIONS(12397), + [anon_sym_BSLASHfnotecite] = ACTIONS(12397), + [anon_sym_BSLASHusepackage] = ACTIONS(12397), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12397), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12397), + [anon_sym_BSLASHinclude] = ACTIONS(12397), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12397), + [anon_sym_BSLASHinput] = ACTIONS(12397), + [anon_sym_BSLASHsubfile] = ACTIONS(12397), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12397), + [anon_sym_BSLASHbibliography] = ACTIONS(12397), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12397), + [anon_sym_BSLASHincludesvg] = ACTIONS(12397), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12397), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12397), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12397), + [anon_sym_BSLASHimport] = ACTIONS(12397), + [anon_sym_BSLASHsubimport] = ACTIONS(12397), + [anon_sym_BSLASHinputfrom] = ACTIONS(12397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12397), + [anon_sym_BSLASHincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHlabel] = ACTIONS(12397), + [anon_sym_BSLASHref] = ACTIONS(12397), + [anon_sym_BSLASHvref] = ACTIONS(12397), + [anon_sym_BSLASHVref] = ACTIONS(12397), + [anon_sym_BSLASHautoref] = ACTIONS(12397), + [anon_sym_BSLASHpageref] = ACTIONS(12397), + [anon_sym_BSLASHcref] = ACTIONS(12397), + [anon_sym_BSLASHCref] = ACTIONS(12397), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnameCref] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHlabelcref] = ACTIONS(12397), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12397), + [anon_sym_BSLASHeqref] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange] = ACTIONS(12397), + [anon_sym_BSLASHCrefrange] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewlabel] = ACTIONS(12397), + [anon_sym_BSLASHnewcommand] = ACTIONS(12397), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12397), + [anon_sym_BSLASHgls] = ACTIONS(12397), + [anon_sym_BSLASHGls] = ACTIONS(12397), + [anon_sym_BSLASHGLS] = ACTIONS(12397), + [anon_sym_BSLASHglspl] = ACTIONS(12397), + [anon_sym_BSLASHGlspl] = ACTIONS(12397), + [anon_sym_BSLASHGLSpl] = ACTIONS(12397), + [anon_sym_BSLASHglsdisp] = ACTIONS(12397), + [anon_sym_BSLASHglslink] = ACTIONS(12397), + [anon_sym_BSLASHglstext] = ACTIONS(12397), + [anon_sym_BSLASHGlstext] = ACTIONS(12397), + [anon_sym_BSLASHGLStext] = ACTIONS(12397), + [anon_sym_BSLASHglsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12397), + [anon_sym_BSLASHglsplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSplural] = ACTIONS(12397), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHglsname] = ACTIONS(12397), + [anon_sym_BSLASHGlsname] = ACTIONS(12397), + [anon_sym_BSLASHGLSname] = ACTIONS(12397), + [anon_sym_BSLASHglssymbol] = ACTIONS(12397), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12397), + [anon_sym_BSLASHglsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12397), + [anon_sym_BSLASHglsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12397), + [anon_sym_BSLASHglsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12397), + [anon_sym_BSLASHglsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12397), + [anon_sym_BSLASHglsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12397), + [anon_sym_BSLASHnewacronym] = ACTIONS(12397), + [anon_sym_BSLASHacrshort] = ACTIONS(12397), + [anon_sym_BSLASHAcrshort] = ACTIONS(12397), + [anon_sym_BSLASHACRshort] = ACTIONS(12397), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12397), + [anon_sym_BSLASHacrlong] = ACTIONS(12397), + [anon_sym_BSLASHAcrlong] = ACTIONS(12397), + [anon_sym_BSLASHACRlong] = ACTIONS(12397), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12397), + [anon_sym_BSLASHacrfull] = ACTIONS(12397), + [anon_sym_BSLASHAcrfull] = ACTIONS(12397), + [anon_sym_BSLASHACRfull] = ACTIONS(12397), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12397), + [anon_sym_BSLASHacs] = ACTIONS(12397), + [anon_sym_BSLASHAcs] = ACTIONS(12397), + [anon_sym_BSLASHacsp] = ACTIONS(12397), + [anon_sym_BSLASHAcsp] = ACTIONS(12397), + [anon_sym_BSLASHacl] = ACTIONS(12397), + [anon_sym_BSLASHAcl] = ACTIONS(12397), + [anon_sym_BSLASHaclp] = ACTIONS(12397), + [anon_sym_BSLASHAclp] = ACTIONS(12397), + [anon_sym_BSLASHacf] = ACTIONS(12397), + [anon_sym_BSLASHAcf] = ACTIONS(12397), + [anon_sym_BSLASHacfp] = ACTIONS(12397), + [anon_sym_BSLASHAcfp] = ACTIONS(12397), + [anon_sym_BSLASHac] = ACTIONS(12397), + [anon_sym_BSLASHAc] = ACTIONS(12397), + [anon_sym_BSLASHacp] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12397), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12397), + [anon_sym_BSLASHcolor] = ACTIONS(12397), + [anon_sym_BSLASHcolorbox] = ACTIONS(12397), + [anon_sym_BSLASHtextcolor] = ACTIONS(12397), + [anon_sym_BSLASHpagecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12397), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12397), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12397), + }, + [1437] = { + [sym_generic_command_name] = ACTIONS(12401), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12401), + [aux_sym_paragraph_token1] = ACTIONS(12401), + [aux_sym_subparagraph_token1] = ACTIONS(12401), + [anon_sym_BSLASHitem] = ACTIONS(12401), + [anon_sym_LBRACK] = ACTIONS(12399), + [anon_sym_RBRACK] = ACTIONS(12399), + [anon_sym_LBRACE] = ACTIONS(12399), + [anon_sym_RBRACE] = ACTIONS(12399), + [anon_sym_LPAREN] = ACTIONS(12399), + [anon_sym_COMMA] = ACTIONS(12399), + [anon_sym_EQ] = ACTIONS(12399), + [sym_word] = ACTIONS(12399), + [sym_param] = ACTIONS(12399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12399), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12399), + [anon_sym_DOLLAR] = ACTIONS(12401), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12399), + [anon_sym_BSLASHbegin] = ACTIONS(12401), + [anon_sym_BSLASHcaption] = ACTIONS(12401), + [anon_sym_BSLASHcite] = ACTIONS(12401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCite] = ACTIONS(12401), + [anon_sym_BSLASHnocite] = ACTIONS(12401), + [anon_sym_BSLASHcitet] = ACTIONS(12401), + [anon_sym_BSLASHcitep] = ACTIONS(12401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteauthor] = ACTIONS(12401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitetitle] = ACTIONS(12401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteyear] = ACTIONS(12401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitedate] = ACTIONS(12401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteurl] = ACTIONS(12401), + [anon_sym_BSLASHfullcite] = ACTIONS(12401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12401), + [anon_sym_BSLASHcitealt] = ACTIONS(12401), + [anon_sym_BSLASHcitealp] = ACTIONS(12401), + [anon_sym_BSLASHcitetext] = ACTIONS(12401), + [anon_sym_BSLASHparencite] = ACTIONS(12401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHParencite] = ACTIONS(12401), + [anon_sym_BSLASHfootcite] = ACTIONS(12401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12401), + [anon_sym_BSLASHtextcite] = ACTIONS(12401), + [anon_sym_BSLASHTextcite] = ACTIONS(12401), + [anon_sym_BSLASHsmartcite] = ACTIONS(12401), + [anon_sym_BSLASHSmartcite] = ACTIONS(12401), + [anon_sym_BSLASHsupercite] = ACTIONS(12401), + [anon_sym_BSLASHautocite] = ACTIONS(12401), + [anon_sym_BSLASHAutocite] = ACTIONS(12401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHvolcite] = ACTIONS(12401), + [anon_sym_BSLASHVolcite] = ACTIONS(12401), + [anon_sym_BSLASHpvolcite] = ACTIONS(12401), + [anon_sym_BSLASHPvolcite] = ACTIONS(12401), + [anon_sym_BSLASHfvolcite] = ACTIONS(12401), + [anon_sym_BSLASHftvolcite] = ACTIONS(12401), + [anon_sym_BSLASHsvolcite] = ACTIONS(12401), + [anon_sym_BSLASHSvolcite] = ACTIONS(12401), + [anon_sym_BSLASHtvolcite] = ACTIONS(12401), + [anon_sym_BSLASHTvolcite] = ACTIONS(12401), + [anon_sym_BSLASHavolcite] = ACTIONS(12401), + [anon_sym_BSLASHAvolcite] = ACTIONS(12401), + [anon_sym_BSLASHnotecite] = ACTIONS(12401), + [anon_sym_BSLASHpnotecite] = ACTIONS(12401), + [anon_sym_BSLASHPnotecite] = ACTIONS(12401), + [anon_sym_BSLASHfnotecite] = ACTIONS(12401), + [anon_sym_BSLASHusepackage] = ACTIONS(12401), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12401), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12401), + [anon_sym_BSLASHinclude] = ACTIONS(12401), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12401), + [anon_sym_BSLASHinput] = ACTIONS(12401), + [anon_sym_BSLASHsubfile] = ACTIONS(12401), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12401), + [anon_sym_BSLASHbibliography] = ACTIONS(12401), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12401), + [anon_sym_BSLASHincludesvg] = ACTIONS(12401), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12401), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12401), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12401), + [anon_sym_BSLASHimport] = ACTIONS(12401), + [anon_sym_BSLASHsubimport] = ACTIONS(12401), + [anon_sym_BSLASHinputfrom] = ACTIONS(12401), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12401), + [anon_sym_BSLASHincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHlabel] = ACTIONS(12401), + [anon_sym_BSLASHref] = ACTIONS(12401), + [anon_sym_BSLASHvref] = ACTIONS(12401), + [anon_sym_BSLASHVref] = ACTIONS(12401), + [anon_sym_BSLASHautoref] = ACTIONS(12401), + [anon_sym_BSLASHpageref] = ACTIONS(12401), + [anon_sym_BSLASHcref] = ACTIONS(12401), + [anon_sym_BSLASHCref] = ACTIONS(12401), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnameCref] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHlabelcref] = ACTIONS(12401), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12401), + [anon_sym_BSLASHeqref] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange] = ACTIONS(12401), + [anon_sym_BSLASHCrefrange] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewlabel] = ACTIONS(12401), + [anon_sym_BSLASHnewcommand] = ACTIONS(12401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12401), + [anon_sym_BSLASHgls] = ACTIONS(12401), + [anon_sym_BSLASHGls] = ACTIONS(12401), + [anon_sym_BSLASHGLS] = ACTIONS(12401), + [anon_sym_BSLASHglspl] = ACTIONS(12401), + [anon_sym_BSLASHGlspl] = ACTIONS(12401), + [anon_sym_BSLASHGLSpl] = ACTIONS(12401), + [anon_sym_BSLASHglsdisp] = ACTIONS(12401), + [anon_sym_BSLASHglslink] = ACTIONS(12401), + [anon_sym_BSLASHglstext] = ACTIONS(12401), + [anon_sym_BSLASHGlstext] = ACTIONS(12401), + [anon_sym_BSLASHGLStext] = ACTIONS(12401), + [anon_sym_BSLASHglsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12401), + [anon_sym_BSLASHglsplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSplural] = ACTIONS(12401), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHglsname] = ACTIONS(12401), + [anon_sym_BSLASHGlsname] = ACTIONS(12401), + [anon_sym_BSLASHGLSname] = ACTIONS(12401), + [anon_sym_BSLASHglssymbol] = ACTIONS(12401), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12401), + [anon_sym_BSLASHglsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12401), + [anon_sym_BSLASHglsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12401), + [anon_sym_BSLASHglsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12401), + [anon_sym_BSLASHglsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12401), + [anon_sym_BSLASHglsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12401), + [anon_sym_BSLASHnewacronym] = ACTIONS(12401), + [anon_sym_BSLASHacrshort] = ACTIONS(12401), + [anon_sym_BSLASHAcrshort] = ACTIONS(12401), + [anon_sym_BSLASHACRshort] = ACTIONS(12401), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12401), + [anon_sym_BSLASHacrlong] = ACTIONS(12401), + [anon_sym_BSLASHAcrlong] = ACTIONS(12401), + [anon_sym_BSLASHACRlong] = ACTIONS(12401), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12401), + [anon_sym_BSLASHacrfull] = ACTIONS(12401), + [anon_sym_BSLASHAcrfull] = ACTIONS(12401), + [anon_sym_BSLASHACRfull] = ACTIONS(12401), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12401), + [anon_sym_BSLASHacs] = ACTIONS(12401), + [anon_sym_BSLASHAcs] = ACTIONS(12401), + [anon_sym_BSLASHacsp] = ACTIONS(12401), + [anon_sym_BSLASHAcsp] = ACTIONS(12401), + [anon_sym_BSLASHacl] = ACTIONS(12401), + [anon_sym_BSLASHAcl] = ACTIONS(12401), + [anon_sym_BSLASHaclp] = ACTIONS(12401), + [anon_sym_BSLASHAclp] = ACTIONS(12401), + [anon_sym_BSLASHacf] = ACTIONS(12401), + [anon_sym_BSLASHAcf] = ACTIONS(12401), + [anon_sym_BSLASHacfp] = ACTIONS(12401), + [anon_sym_BSLASHAcfp] = ACTIONS(12401), + [anon_sym_BSLASHac] = ACTIONS(12401), + [anon_sym_BSLASHAc] = ACTIONS(12401), + [anon_sym_BSLASHacp] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12401), + [anon_sym_BSLASHcolor] = ACTIONS(12401), + [anon_sym_BSLASHcolorbox] = ACTIONS(12401), + [anon_sym_BSLASHtextcolor] = ACTIONS(12401), + [anon_sym_BSLASHpagecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12401), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12401), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12401), + }, + [1438] = { + [sym_generic_command_name] = ACTIONS(12405), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12405), + [aux_sym_paragraph_token1] = ACTIONS(12405), + [aux_sym_subparagraph_token1] = ACTIONS(12405), + [anon_sym_BSLASHitem] = ACTIONS(12405), + [anon_sym_LBRACK] = ACTIONS(12403), + [anon_sym_RBRACK] = ACTIONS(12403), + [anon_sym_LBRACE] = ACTIONS(12403), + [anon_sym_RBRACE] = ACTIONS(12403), + [anon_sym_LPAREN] = ACTIONS(12403), + [anon_sym_COMMA] = ACTIONS(12403), + [anon_sym_EQ] = ACTIONS(12403), + [sym_word] = ACTIONS(12403), + [sym_param] = ACTIONS(12403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12403), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12403), + [anon_sym_DOLLAR] = ACTIONS(12405), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12403), + [anon_sym_BSLASHbegin] = ACTIONS(12405), + [anon_sym_BSLASHcaption] = ACTIONS(12405), + [anon_sym_BSLASHcite] = ACTIONS(12405), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCite] = ACTIONS(12405), + [anon_sym_BSLASHnocite] = ACTIONS(12405), + [anon_sym_BSLASHcitet] = ACTIONS(12405), + [anon_sym_BSLASHcitep] = ACTIONS(12405), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteauthor] = ACTIONS(12405), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12405), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitetitle] = ACTIONS(12405), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteyear] = ACTIONS(12405), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitedate] = ACTIONS(12405), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteurl] = ACTIONS(12405), + [anon_sym_BSLASHfullcite] = ACTIONS(12405), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12405), + [anon_sym_BSLASHcitealt] = ACTIONS(12405), + [anon_sym_BSLASHcitealp] = ACTIONS(12405), + [anon_sym_BSLASHcitetext] = ACTIONS(12405), + [anon_sym_BSLASHparencite] = ACTIONS(12405), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHParencite] = ACTIONS(12405), + [anon_sym_BSLASHfootcite] = ACTIONS(12405), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12405), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12405), + [anon_sym_BSLASHtextcite] = ACTIONS(12405), + [anon_sym_BSLASHTextcite] = ACTIONS(12405), + [anon_sym_BSLASHsmartcite] = ACTIONS(12405), + [anon_sym_BSLASHSmartcite] = ACTIONS(12405), + [anon_sym_BSLASHsupercite] = ACTIONS(12405), + [anon_sym_BSLASHautocite] = ACTIONS(12405), + [anon_sym_BSLASHAutocite] = ACTIONS(12405), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHvolcite] = ACTIONS(12405), + [anon_sym_BSLASHVolcite] = ACTIONS(12405), + [anon_sym_BSLASHpvolcite] = ACTIONS(12405), + [anon_sym_BSLASHPvolcite] = ACTIONS(12405), + [anon_sym_BSLASHfvolcite] = ACTIONS(12405), + [anon_sym_BSLASHftvolcite] = ACTIONS(12405), + [anon_sym_BSLASHsvolcite] = ACTIONS(12405), + [anon_sym_BSLASHSvolcite] = ACTIONS(12405), + [anon_sym_BSLASHtvolcite] = ACTIONS(12405), + [anon_sym_BSLASHTvolcite] = ACTIONS(12405), + [anon_sym_BSLASHavolcite] = ACTIONS(12405), + [anon_sym_BSLASHAvolcite] = ACTIONS(12405), + [anon_sym_BSLASHnotecite] = ACTIONS(12405), + [anon_sym_BSLASHpnotecite] = ACTIONS(12405), + [anon_sym_BSLASHPnotecite] = ACTIONS(12405), + [anon_sym_BSLASHfnotecite] = ACTIONS(12405), + [anon_sym_BSLASHusepackage] = ACTIONS(12405), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12405), + [anon_sym_BSLASHinclude] = ACTIONS(12405), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12405), + [anon_sym_BSLASHinput] = ACTIONS(12405), + [anon_sym_BSLASHsubfile] = ACTIONS(12405), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12405), + [anon_sym_BSLASHbibliography] = ACTIONS(12405), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12405), + [anon_sym_BSLASHincludesvg] = ACTIONS(12405), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12405), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12405), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12405), + [anon_sym_BSLASHimport] = ACTIONS(12405), + [anon_sym_BSLASHsubimport] = ACTIONS(12405), + [anon_sym_BSLASHinputfrom] = ACTIONS(12405), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12405), + [anon_sym_BSLASHincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHlabel] = ACTIONS(12405), + [anon_sym_BSLASHref] = ACTIONS(12405), + [anon_sym_BSLASHvref] = ACTIONS(12405), + [anon_sym_BSLASHVref] = ACTIONS(12405), + [anon_sym_BSLASHautoref] = ACTIONS(12405), + [anon_sym_BSLASHpageref] = ACTIONS(12405), + [anon_sym_BSLASHcref] = ACTIONS(12405), + [anon_sym_BSLASHCref] = ACTIONS(12405), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnameCref] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHlabelcref] = ACTIONS(12405), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12405), + [anon_sym_BSLASHeqref] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange] = ACTIONS(12405), + [anon_sym_BSLASHCrefrange] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewlabel] = ACTIONS(12405), + [anon_sym_BSLASHnewcommand] = ACTIONS(12405), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12405), + [anon_sym_BSLASHgls] = ACTIONS(12405), + [anon_sym_BSLASHGls] = ACTIONS(12405), + [anon_sym_BSLASHGLS] = ACTIONS(12405), + [anon_sym_BSLASHglspl] = ACTIONS(12405), + [anon_sym_BSLASHGlspl] = ACTIONS(12405), + [anon_sym_BSLASHGLSpl] = ACTIONS(12405), + [anon_sym_BSLASHglsdisp] = ACTIONS(12405), + [anon_sym_BSLASHglslink] = ACTIONS(12405), + [anon_sym_BSLASHglstext] = ACTIONS(12405), + [anon_sym_BSLASHGlstext] = ACTIONS(12405), + [anon_sym_BSLASHGLStext] = ACTIONS(12405), + [anon_sym_BSLASHglsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12405), + [anon_sym_BSLASHglsplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSplural] = ACTIONS(12405), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHglsname] = ACTIONS(12405), + [anon_sym_BSLASHGlsname] = ACTIONS(12405), + [anon_sym_BSLASHGLSname] = ACTIONS(12405), + [anon_sym_BSLASHglssymbol] = ACTIONS(12405), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12405), + [anon_sym_BSLASHglsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12405), + [anon_sym_BSLASHglsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12405), + [anon_sym_BSLASHglsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12405), + [anon_sym_BSLASHglsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12405), + [anon_sym_BSLASHglsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12405), + [anon_sym_BSLASHnewacronym] = ACTIONS(12405), + [anon_sym_BSLASHacrshort] = ACTIONS(12405), + [anon_sym_BSLASHAcrshort] = ACTIONS(12405), + [anon_sym_BSLASHACRshort] = ACTIONS(12405), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12405), + [anon_sym_BSLASHacrlong] = ACTIONS(12405), + [anon_sym_BSLASHAcrlong] = ACTIONS(12405), + [anon_sym_BSLASHACRlong] = ACTIONS(12405), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12405), + [anon_sym_BSLASHacrfull] = ACTIONS(12405), + [anon_sym_BSLASHAcrfull] = ACTIONS(12405), + [anon_sym_BSLASHACRfull] = ACTIONS(12405), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12405), + [anon_sym_BSLASHacs] = ACTIONS(12405), + [anon_sym_BSLASHAcs] = ACTIONS(12405), + [anon_sym_BSLASHacsp] = ACTIONS(12405), + [anon_sym_BSLASHAcsp] = ACTIONS(12405), + [anon_sym_BSLASHacl] = ACTIONS(12405), + [anon_sym_BSLASHAcl] = ACTIONS(12405), + [anon_sym_BSLASHaclp] = ACTIONS(12405), + [anon_sym_BSLASHAclp] = ACTIONS(12405), + [anon_sym_BSLASHacf] = ACTIONS(12405), + [anon_sym_BSLASHAcf] = ACTIONS(12405), + [anon_sym_BSLASHacfp] = ACTIONS(12405), + [anon_sym_BSLASHAcfp] = ACTIONS(12405), + [anon_sym_BSLASHac] = ACTIONS(12405), + [anon_sym_BSLASHAc] = ACTIONS(12405), + [anon_sym_BSLASHacp] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12405), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12405), + [anon_sym_BSLASHcolor] = ACTIONS(12405), + [anon_sym_BSLASHcolorbox] = ACTIONS(12405), + [anon_sym_BSLASHtextcolor] = ACTIONS(12405), + [anon_sym_BSLASHpagecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12405), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12405), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12405), + }, + [1439] = { + [sym_generic_command_name] = ACTIONS(12409), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12409), + [aux_sym_paragraph_token1] = ACTIONS(12409), + [aux_sym_subparagraph_token1] = ACTIONS(12409), + [anon_sym_BSLASHitem] = ACTIONS(12409), + [anon_sym_LBRACK] = ACTIONS(12407), + [anon_sym_RBRACK] = ACTIONS(12407), + [anon_sym_LBRACE] = ACTIONS(12407), + [anon_sym_RBRACE] = ACTIONS(12407), + [anon_sym_LPAREN] = ACTIONS(12407), + [anon_sym_COMMA] = ACTIONS(12407), + [anon_sym_EQ] = ACTIONS(12407), + [sym_word] = ACTIONS(12407), + [sym_param] = ACTIONS(12407), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12407), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12407), + [anon_sym_DOLLAR] = ACTIONS(12409), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12407), + [anon_sym_BSLASHbegin] = ACTIONS(12409), + [anon_sym_BSLASHcaption] = ACTIONS(12409), + [anon_sym_BSLASHcite] = ACTIONS(12409), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCite] = ACTIONS(12409), + [anon_sym_BSLASHnocite] = ACTIONS(12409), + [anon_sym_BSLASHcitet] = ACTIONS(12409), + [anon_sym_BSLASHcitep] = ACTIONS(12409), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteauthor] = ACTIONS(12409), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12409), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitetitle] = ACTIONS(12409), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteyear] = ACTIONS(12409), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitedate] = ACTIONS(12409), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteurl] = ACTIONS(12409), + [anon_sym_BSLASHfullcite] = ACTIONS(12409), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12409), + [anon_sym_BSLASHcitealt] = ACTIONS(12409), + [anon_sym_BSLASHcitealp] = ACTIONS(12409), + [anon_sym_BSLASHcitetext] = ACTIONS(12409), + [anon_sym_BSLASHparencite] = ACTIONS(12409), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHParencite] = ACTIONS(12409), + [anon_sym_BSLASHfootcite] = ACTIONS(12409), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12409), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12409), + [anon_sym_BSLASHtextcite] = ACTIONS(12409), + [anon_sym_BSLASHTextcite] = ACTIONS(12409), + [anon_sym_BSLASHsmartcite] = ACTIONS(12409), + [anon_sym_BSLASHSmartcite] = ACTIONS(12409), + [anon_sym_BSLASHsupercite] = ACTIONS(12409), + [anon_sym_BSLASHautocite] = ACTIONS(12409), + [anon_sym_BSLASHAutocite] = ACTIONS(12409), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHvolcite] = ACTIONS(12409), + [anon_sym_BSLASHVolcite] = ACTIONS(12409), + [anon_sym_BSLASHpvolcite] = ACTIONS(12409), + [anon_sym_BSLASHPvolcite] = ACTIONS(12409), + [anon_sym_BSLASHfvolcite] = ACTIONS(12409), + [anon_sym_BSLASHftvolcite] = ACTIONS(12409), + [anon_sym_BSLASHsvolcite] = ACTIONS(12409), + [anon_sym_BSLASHSvolcite] = ACTIONS(12409), + [anon_sym_BSLASHtvolcite] = ACTIONS(12409), + [anon_sym_BSLASHTvolcite] = ACTIONS(12409), + [anon_sym_BSLASHavolcite] = ACTIONS(12409), + [anon_sym_BSLASHAvolcite] = ACTIONS(12409), + [anon_sym_BSLASHnotecite] = ACTIONS(12409), + [anon_sym_BSLASHpnotecite] = ACTIONS(12409), + [anon_sym_BSLASHPnotecite] = ACTIONS(12409), + [anon_sym_BSLASHfnotecite] = ACTIONS(12409), + [anon_sym_BSLASHusepackage] = ACTIONS(12409), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12409), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12409), + [anon_sym_BSLASHinclude] = ACTIONS(12409), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12409), + [anon_sym_BSLASHinput] = ACTIONS(12409), + [anon_sym_BSLASHsubfile] = ACTIONS(12409), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12409), + [anon_sym_BSLASHbibliography] = ACTIONS(12409), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12409), + [anon_sym_BSLASHincludesvg] = ACTIONS(12409), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12409), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12409), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12409), + [anon_sym_BSLASHimport] = ACTIONS(12409), + [anon_sym_BSLASHsubimport] = ACTIONS(12409), + [anon_sym_BSLASHinputfrom] = ACTIONS(12409), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12409), + [anon_sym_BSLASHincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHlabel] = ACTIONS(12409), + [anon_sym_BSLASHref] = ACTIONS(12409), + [anon_sym_BSLASHvref] = ACTIONS(12409), + [anon_sym_BSLASHVref] = ACTIONS(12409), + [anon_sym_BSLASHautoref] = ACTIONS(12409), + [anon_sym_BSLASHpageref] = ACTIONS(12409), + [anon_sym_BSLASHcref] = ACTIONS(12409), + [anon_sym_BSLASHCref] = ACTIONS(12409), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnameCref] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHlabelcref] = ACTIONS(12409), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12409), + [anon_sym_BSLASHeqref] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange] = ACTIONS(12409), + [anon_sym_BSLASHCrefrange] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewlabel] = ACTIONS(12409), + [anon_sym_BSLASHnewcommand] = ACTIONS(12409), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12409), + [anon_sym_BSLASHgls] = ACTIONS(12409), + [anon_sym_BSLASHGls] = ACTIONS(12409), + [anon_sym_BSLASHGLS] = ACTIONS(12409), + [anon_sym_BSLASHglspl] = ACTIONS(12409), + [anon_sym_BSLASHGlspl] = ACTIONS(12409), + [anon_sym_BSLASHGLSpl] = ACTIONS(12409), + [anon_sym_BSLASHglsdisp] = ACTIONS(12409), + [anon_sym_BSLASHglslink] = ACTIONS(12409), + [anon_sym_BSLASHglstext] = ACTIONS(12409), + [anon_sym_BSLASHGlstext] = ACTIONS(12409), + [anon_sym_BSLASHGLStext] = ACTIONS(12409), + [anon_sym_BSLASHglsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12409), + [anon_sym_BSLASHglsplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSplural] = ACTIONS(12409), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHglsname] = ACTIONS(12409), + [anon_sym_BSLASHGlsname] = ACTIONS(12409), + [anon_sym_BSLASHGLSname] = ACTIONS(12409), + [anon_sym_BSLASHglssymbol] = ACTIONS(12409), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12409), + [anon_sym_BSLASHglsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12409), + [anon_sym_BSLASHglsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12409), + [anon_sym_BSLASHglsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12409), + [anon_sym_BSLASHglsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12409), + [anon_sym_BSLASHglsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12409), + [anon_sym_BSLASHnewacronym] = ACTIONS(12409), + [anon_sym_BSLASHacrshort] = ACTIONS(12409), + [anon_sym_BSLASHAcrshort] = ACTIONS(12409), + [anon_sym_BSLASHACRshort] = ACTIONS(12409), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12409), + [anon_sym_BSLASHacrlong] = ACTIONS(12409), + [anon_sym_BSLASHAcrlong] = ACTIONS(12409), + [anon_sym_BSLASHACRlong] = ACTIONS(12409), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12409), + [anon_sym_BSLASHacrfull] = ACTIONS(12409), + [anon_sym_BSLASHAcrfull] = ACTIONS(12409), + [anon_sym_BSLASHACRfull] = ACTIONS(12409), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12409), + [anon_sym_BSLASHacs] = ACTIONS(12409), + [anon_sym_BSLASHAcs] = ACTIONS(12409), + [anon_sym_BSLASHacsp] = ACTIONS(12409), + [anon_sym_BSLASHAcsp] = ACTIONS(12409), + [anon_sym_BSLASHacl] = ACTIONS(12409), + [anon_sym_BSLASHAcl] = ACTIONS(12409), + [anon_sym_BSLASHaclp] = ACTIONS(12409), + [anon_sym_BSLASHAclp] = ACTIONS(12409), + [anon_sym_BSLASHacf] = ACTIONS(12409), + [anon_sym_BSLASHAcf] = ACTIONS(12409), + [anon_sym_BSLASHacfp] = ACTIONS(12409), + [anon_sym_BSLASHAcfp] = ACTIONS(12409), + [anon_sym_BSLASHac] = ACTIONS(12409), + [anon_sym_BSLASHAc] = ACTIONS(12409), + [anon_sym_BSLASHacp] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12409), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12409), + [anon_sym_BSLASHcolor] = ACTIONS(12409), + [anon_sym_BSLASHcolorbox] = ACTIONS(12409), + [anon_sym_BSLASHtextcolor] = ACTIONS(12409), + [anon_sym_BSLASHpagecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12409), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12409), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12409), + }, + [1440] = { + [sym_generic_command_name] = ACTIONS(12413), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12413), + [aux_sym_paragraph_token1] = ACTIONS(12413), + [aux_sym_subparagraph_token1] = ACTIONS(12413), + [anon_sym_BSLASHitem] = ACTIONS(12413), + [anon_sym_LBRACK] = ACTIONS(12411), + [anon_sym_RBRACK] = ACTIONS(12411), + [anon_sym_LBRACE] = ACTIONS(12411), + [anon_sym_RBRACE] = ACTIONS(12411), + [anon_sym_LPAREN] = ACTIONS(12411), + [anon_sym_COMMA] = ACTIONS(12411), + [anon_sym_EQ] = ACTIONS(12411), + [sym_word] = ACTIONS(12411), + [sym_param] = ACTIONS(12411), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12411), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12411), + [anon_sym_DOLLAR] = ACTIONS(12413), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12411), + [anon_sym_BSLASHbegin] = ACTIONS(12413), + [anon_sym_BSLASHcaption] = ACTIONS(12413), + [anon_sym_BSLASHcite] = ACTIONS(12413), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCite] = ACTIONS(12413), + [anon_sym_BSLASHnocite] = ACTIONS(12413), + [anon_sym_BSLASHcitet] = ACTIONS(12413), + [anon_sym_BSLASHcitep] = ACTIONS(12413), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteauthor] = ACTIONS(12413), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12413), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitetitle] = ACTIONS(12413), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteyear] = ACTIONS(12413), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitedate] = ACTIONS(12413), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteurl] = ACTIONS(12413), + [anon_sym_BSLASHfullcite] = ACTIONS(12413), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12413), + [anon_sym_BSLASHcitealt] = ACTIONS(12413), + [anon_sym_BSLASHcitealp] = ACTIONS(12413), + [anon_sym_BSLASHcitetext] = ACTIONS(12413), + [anon_sym_BSLASHparencite] = ACTIONS(12413), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHParencite] = ACTIONS(12413), + [anon_sym_BSLASHfootcite] = ACTIONS(12413), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12413), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12413), + [anon_sym_BSLASHtextcite] = ACTIONS(12413), + [anon_sym_BSLASHTextcite] = ACTIONS(12413), + [anon_sym_BSLASHsmartcite] = ACTIONS(12413), + [anon_sym_BSLASHSmartcite] = ACTIONS(12413), + [anon_sym_BSLASHsupercite] = ACTIONS(12413), + [anon_sym_BSLASHautocite] = ACTIONS(12413), + [anon_sym_BSLASHAutocite] = ACTIONS(12413), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHvolcite] = ACTIONS(12413), + [anon_sym_BSLASHVolcite] = ACTIONS(12413), + [anon_sym_BSLASHpvolcite] = ACTIONS(12413), + [anon_sym_BSLASHPvolcite] = ACTIONS(12413), + [anon_sym_BSLASHfvolcite] = ACTIONS(12413), + [anon_sym_BSLASHftvolcite] = ACTIONS(12413), + [anon_sym_BSLASHsvolcite] = ACTIONS(12413), + [anon_sym_BSLASHSvolcite] = ACTIONS(12413), + [anon_sym_BSLASHtvolcite] = ACTIONS(12413), + [anon_sym_BSLASHTvolcite] = ACTIONS(12413), + [anon_sym_BSLASHavolcite] = ACTIONS(12413), + [anon_sym_BSLASHAvolcite] = ACTIONS(12413), + [anon_sym_BSLASHnotecite] = ACTIONS(12413), + [anon_sym_BSLASHpnotecite] = ACTIONS(12413), + [anon_sym_BSLASHPnotecite] = ACTIONS(12413), + [anon_sym_BSLASHfnotecite] = ACTIONS(12413), + [anon_sym_BSLASHusepackage] = ACTIONS(12413), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12413), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12413), + [anon_sym_BSLASHinclude] = ACTIONS(12413), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12413), + [anon_sym_BSLASHinput] = ACTIONS(12413), + [anon_sym_BSLASHsubfile] = ACTIONS(12413), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12413), + [anon_sym_BSLASHbibliography] = ACTIONS(12413), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12413), + [anon_sym_BSLASHincludesvg] = ACTIONS(12413), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12413), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12413), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12413), + [anon_sym_BSLASHimport] = ACTIONS(12413), + [anon_sym_BSLASHsubimport] = ACTIONS(12413), + [anon_sym_BSLASHinputfrom] = ACTIONS(12413), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12413), + [anon_sym_BSLASHincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHlabel] = ACTIONS(12413), + [anon_sym_BSLASHref] = ACTIONS(12413), + [anon_sym_BSLASHvref] = ACTIONS(12413), + [anon_sym_BSLASHVref] = ACTIONS(12413), + [anon_sym_BSLASHautoref] = ACTIONS(12413), + [anon_sym_BSLASHpageref] = ACTIONS(12413), + [anon_sym_BSLASHcref] = ACTIONS(12413), + [anon_sym_BSLASHCref] = ACTIONS(12413), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnameCref] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHlabelcref] = ACTIONS(12413), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12413), + [anon_sym_BSLASHeqref] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange] = ACTIONS(12413), + [anon_sym_BSLASHCrefrange] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewlabel] = ACTIONS(12413), + [anon_sym_BSLASHnewcommand] = ACTIONS(12413), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12413), + [anon_sym_BSLASHgls] = ACTIONS(12413), + [anon_sym_BSLASHGls] = ACTIONS(12413), + [anon_sym_BSLASHGLS] = ACTIONS(12413), + [anon_sym_BSLASHglspl] = ACTIONS(12413), + [anon_sym_BSLASHGlspl] = ACTIONS(12413), + [anon_sym_BSLASHGLSpl] = ACTIONS(12413), + [anon_sym_BSLASHglsdisp] = ACTIONS(12413), + [anon_sym_BSLASHglslink] = ACTIONS(12413), + [anon_sym_BSLASHglstext] = ACTIONS(12413), + [anon_sym_BSLASHGlstext] = ACTIONS(12413), + [anon_sym_BSLASHGLStext] = ACTIONS(12413), + [anon_sym_BSLASHglsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12413), + [anon_sym_BSLASHglsplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSplural] = ACTIONS(12413), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHglsname] = ACTIONS(12413), + [anon_sym_BSLASHGlsname] = ACTIONS(12413), + [anon_sym_BSLASHGLSname] = ACTIONS(12413), + [anon_sym_BSLASHglssymbol] = ACTIONS(12413), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12413), + [anon_sym_BSLASHglsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12413), + [anon_sym_BSLASHglsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12413), + [anon_sym_BSLASHglsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12413), + [anon_sym_BSLASHglsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12413), + [anon_sym_BSLASHglsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12413), + [anon_sym_BSLASHnewacronym] = ACTIONS(12413), + [anon_sym_BSLASHacrshort] = ACTIONS(12413), + [anon_sym_BSLASHAcrshort] = ACTIONS(12413), + [anon_sym_BSLASHACRshort] = ACTIONS(12413), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12413), + [anon_sym_BSLASHacrlong] = ACTIONS(12413), + [anon_sym_BSLASHAcrlong] = ACTIONS(12413), + [anon_sym_BSLASHACRlong] = ACTIONS(12413), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12413), + [anon_sym_BSLASHacrfull] = ACTIONS(12413), + [anon_sym_BSLASHAcrfull] = ACTIONS(12413), + [anon_sym_BSLASHACRfull] = ACTIONS(12413), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12413), + [anon_sym_BSLASHacs] = ACTIONS(12413), + [anon_sym_BSLASHAcs] = ACTIONS(12413), + [anon_sym_BSLASHacsp] = ACTIONS(12413), + [anon_sym_BSLASHAcsp] = ACTIONS(12413), + [anon_sym_BSLASHacl] = ACTIONS(12413), + [anon_sym_BSLASHAcl] = ACTIONS(12413), + [anon_sym_BSLASHaclp] = ACTIONS(12413), + [anon_sym_BSLASHAclp] = ACTIONS(12413), + [anon_sym_BSLASHacf] = ACTIONS(12413), + [anon_sym_BSLASHAcf] = ACTIONS(12413), + [anon_sym_BSLASHacfp] = ACTIONS(12413), + [anon_sym_BSLASHAcfp] = ACTIONS(12413), + [anon_sym_BSLASHac] = ACTIONS(12413), + [anon_sym_BSLASHAc] = ACTIONS(12413), + [anon_sym_BSLASHacp] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12413), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12413), + [anon_sym_BSLASHcolor] = ACTIONS(12413), + [anon_sym_BSLASHcolorbox] = ACTIONS(12413), + [anon_sym_BSLASHtextcolor] = ACTIONS(12413), + [anon_sym_BSLASHpagecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12413), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12413), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12413), + }, + [1441] = { + [sym_generic_command_name] = ACTIONS(12421), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12421), + [aux_sym_paragraph_token1] = ACTIONS(12421), + [aux_sym_subparagraph_token1] = ACTIONS(12421), + [anon_sym_BSLASHitem] = ACTIONS(12421), + [anon_sym_LBRACK] = ACTIONS(12419), + [anon_sym_RBRACK] = ACTIONS(12419), + [anon_sym_LBRACE] = ACTIONS(12419), + [anon_sym_RBRACE] = ACTIONS(12419), + [anon_sym_LPAREN] = ACTIONS(12419), + [anon_sym_COMMA] = ACTIONS(12419), + [anon_sym_EQ] = ACTIONS(12419), + [sym_word] = ACTIONS(12419), + [sym_param] = ACTIONS(12419), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12419), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12419), + [anon_sym_DOLLAR] = ACTIONS(12421), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12419), + [anon_sym_BSLASHbegin] = ACTIONS(12421), + [anon_sym_BSLASHcaption] = ACTIONS(12421), + [anon_sym_BSLASHcite] = ACTIONS(12421), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCite] = ACTIONS(12421), + [anon_sym_BSLASHnocite] = ACTIONS(12421), + [anon_sym_BSLASHcitet] = ACTIONS(12421), + [anon_sym_BSLASHcitep] = ACTIONS(12421), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteauthor] = ACTIONS(12421), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12421), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitetitle] = ACTIONS(12421), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteyear] = ACTIONS(12421), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitedate] = ACTIONS(12421), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteurl] = ACTIONS(12421), + [anon_sym_BSLASHfullcite] = ACTIONS(12421), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12421), + [anon_sym_BSLASHcitealt] = ACTIONS(12421), + [anon_sym_BSLASHcitealp] = ACTIONS(12421), + [anon_sym_BSLASHcitetext] = ACTIONS(12421), + [anon_sym_BSLASHparencite] = ACTIONS(12421), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHParencite] = ACTIONS(12421), + [anon_sym_BSLASHfootcite] = ACTIONS(12421), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12421), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12421), + [anon_sym_BSLASHtextcite] = ACTIONS(12421), + [anon_sym_BSLASHTextcite] = ACTIONS(12421), + [anon_sym_BSLASHsmartcite] = ACTIONS(12421), + [anon_sym_BSLASHSmartcite] = ACTIONS(12421), + [anon_sym_BSLASHsupercite] = ACTIONS(12421), + [anon_sym_BSLASHautocite] = ACTIONS(12421), + [anon_sym_BSLASHAutocite] = ACTIONS(12421), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHvolcite] = ACTIONS(12421), + [anon_sym_BSLASHVolcite] = ACTIONS(12421), + [anon_sym_BSLASHpvolcite] = ACTIONS(12421), + [anon_sym_BSLASHPvolcite] = ACTIONS(12421), + [anon_sym_BSLASHfvolcite] = ACTIONS(12421), + [anon_sym_BSLASHftvolcite] = ACTIONS(12421), + [anon_sym_BSLASHsvolcite] = ACTIONS(12421), + [anon_sym_BSLASHSvolcite] = ACTIONS(12421), + [anon_sym_BSLASHtvolcite] = ACTIONS(12421), + [anon_sym_BSLASHTvolcite] = ACTIONS(12421), + [anon_sym_BSLASHavolcite] = ACTIONS(12421), + [anon_sym_BSLASHAvolcite] = ACTIONS(12421), + [anon_sym_BSLASHnotecite] = ACTIONS(12421), + [anon_sym_BSLASHpnotecite] = ACTIONS(12421), + [anon_sym_BSLASHPnotecite] = ACTIONS(12421), + [anon_sym_BSLASHfnotecite] = ACTIONS(12421), + [anon_sym_BSLASHusepackage] = ACTIONS(12421), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12421), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12421), + [anon_sym_BSLASHinclude] = ACTIONS(12421), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12421), + [anon_sym_BSLASHinput] = ACTIONS(12421), + [anon_sym_BSLASHsubfile] = ACTIONS(12421), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12421), + [anon_sym_BSLASHbibliography] = ACTIONS(12421), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12421), + [anon_sym_BSLASHincludesvg] = ACTIONS(12421), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12421), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12421), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12421), + [anon_sym_BSLASHimport] = ACTIONS(12421), + [anon_sym_BSLASHsubimport] = ACTIONS(12421), + [anon_sym_BSLASHinputfrom] = ACTIONS(12421), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12421), + [anon_sym_BSLASHincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHlabel] = ACTIONS(12421), + [anon_sym_BSLASHref] = ACTIONS(12421), + [anon_sym_BSLASHvref] = ACTIONS(12421), + [anon_sym_BSLASHVref] = ACTIONS(12421), + [anon_sym_BSLASHautoref] = ACTIONS(12421), + [anon_sym_BSLASHpageref] = ACTIONS(12421), + [anon_sym_BSLASHcref] = ACTIONS(12421), + [anon_sym_BSLASHCref] = ACTIONS(12421), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnameCref] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHlabelcref] = ACTIONS(12421), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12421), + [anon_sym_BSLASHeqref] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange] = ACTIONS(12421), + [anon_sym_BSLASHCrefrange] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewlabel] = ACTIONS(12421), + [anon_sym_BSLASHnewcommand] = ACTIONS(12421), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12421), + [anon_sym_BSLASHgls] = ACTIONS(12421), + [anon_sym_BSLASHGls] = ACTIONS(12421), + [anon_sym_BSLASHGLS] = ACTIONS(12421), + [anon_sym_BSLASHglspl] = ACTIONS(12421), + [anon_sym_BSLASHGlspl] = ACTIONS(12421), + [anon_sym_BSLASHGLSpl] = ACTIONS(12421), + [anon_sym_BSLASHglsdisp] = ACTIONS(12421), + [anon_sym_BSLASHglslink] = ACTIONS(12421), + [anon_sym_BSLASHglstext] = ACTIONS(12421), + [anon_sym_BSLASHGlstext] = ACTIONS(12421), + [anon_sym_BSLASHGLStext] = ACTIONS(12421), + [anon_sym_BSLASHglsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12421), + [anon_sym_BSLASHglsplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSplural] = ACTIONS(12421), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHglsname] = ACTIONS(12421), + [anon_sym_BSLASHGlsname] = ACTIONS(12421), + [anon_sym_BSLASHGLSname] = ACTIONS(12421), + [anon_sym_BSLASHglssymbol] = ACTIONS(12421), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12421), + [anon_sym_BSLASHglsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12421), + [anon_sym_BSLASHglsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12421), + [anon_sym_BSLASHglsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12421), + [anon_sym_BSLASHglsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12421), + [anon_sym_BSLASHglsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12421), + [anon_sym_BSLASHnewacronym] = ACTIONS(12421), + [anon_sym_BSLASHacrshort] = ACTIONS(12421), + [anon_sym_BSLASHAcrshort] = ACTIONS(12421), + [anon_sym_BSLASHACRshort] = ACTIONS(12421), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12421), + [anon_sym_BSLASHacrlong] = ACTIONS(12421), + [anon_sym_BSLASHAcrlong] = ACTIONS(12421), + [anon_sym_BSLASHACRlong] = ACTIONS(12421), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12421), + [anon_sym_BSLASHacrfull] = ACTIONS(12421), + [anon_sym_BSLASHAcrfull] = ACTIONS(12421), + [anon_sym_BSLASHACRfull] = ACTIONS(12421), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12421), + [anon_sym_BSLASHacs] = ACTIONS(12421), + [anon_sym_BSLASHAcs] = ACTIONS(12421), + [anon_sym_BSLASHacsp] = ACTIONS(12421), + [anon_sym_BSLASHAcsp] = ACTIONS(12421), + [anon_sym_BSLASHacl] = ACTIONS(12421), + [anon_sym_BSLASHAcl] = ACTIONS(12421), + [anon_sym_BSLASHaclp] = ACTIONS(12421), + [anon_sym_BSLASHAclp] = ACTIONS(12421), + [anon_sym_BSLASHacf] = ACTIONS(12421), + [anon_sym_BSLASHAcf] = ACTIONS(12421), + [anon_sym_BSLASHacfp] = ACTIONS(12421), + [anon_sym_BSLASHAcfp] = ACTIONS(12421), + [anon_sym_BSLASHac] = ACTIONS(12421), + [anon_sym_BSLASHAc] = ACTIONS(12421), + [anon_sym_BSLASHacp] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12421), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12421), + [anon_sym_BSLASHcolor] = ACTIONS(12421), + [anon_sym_BSLASHcolorbox] = ACTIONS(12421), + [anon_sym_BSLASHtextcolor] = ACTIONS(12421), + [anon_sym_BSLASHpagecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12421), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12421), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12421), + }, + [1442] = { + [sym_generic_command_name] = ACTIONS(12425), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12425), + [aux_sym_paragraph_token1] = ACTIONS(12425), + [aux_sym_subparagraph_token1] = ACTIONS(12425), + [anon_sym_BSLASHitem] = ACTIONS(12425), + [anon_sym_LBRACK] = ACTIONS(12423), + [anon_sym_RBRACK] = ACTIONS(12423), + [anon_sym_LBRACE] = ACTIONS(12423), + [anon_sym_RBRACE] = ACTIONS(12423), + [anon_sym_LPAREN] = ACTIONS(12423), + [anon_sym_COMMA] = ACTIONS(12423), + [anon_sym_EQ] = ACTIONS(12423), + [sym_word] = ACTIONS(12423), + [sym_param] = ACTIONS(12423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12423), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12423), + [anon_sym_DOLLAR] = ACTIONS(12425), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12423), + [anon_sym_BSLASHbegin] = ACTIONS(12425), + [anon_sym_BSLASHcaption] = ACTIONS(12425), + [anon_sym_BSLASHcite] = ACTIONS(12425), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCite] = ACTIONS(12425), + [anon_sym_BSLASHnocite] = ACTIONS(12425), + [anon_sym_BSLASHcitet] = ACTIONS(12425), + [anon_sym_BSLASHcitep] = ACTIONS(12425), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteauthor] = ACTIONS(12425), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12425), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitetitle] = ACTIONS(12425), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteyear] = ACTIONS(12425), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitedate] = ACTIONS(12425), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteurl] = ACTIONS(12425), + [anon_sym_BSLASHfullcite] = ACTIONS(12425), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12425), + [anon_sym_BSLASHcitealt] = ACTIONS(12425), + [anon_sym_BSLASHcitealp] = ACTIONS(12425), + [anon_sym_BSLASHcitetext] = ACTIONS(12425), + [anon_sym_BSLASHparencite] = ACTIONS(12425), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHParencite] = ACTIONS(12425), + [anon_sym_BSLASHfootcite] = ACTIONS(12425), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12425), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12425), + [anon_sym_BSLASHtextcite] = ACTIONS(12425), + [anon_sym_BSLASHTextcite] = ACTIONS(12425), + [anon_sym_BSLASHsmartcite] = ACTIONS(12425), + [anon_sym_BSLASHSmartcite] = ACTIONS(12425), + [anon_sym_BSLASHsupercite] = ACTIONS(12425), + [anon_sym_BSLASHautocite] = ACTIONS(12425), + [anon_sym_BSLASHAutocite] = ACTIONS(12425), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHvolcite] = ACTIONS(12425), + [anon_sym_BSLASHVolcite] = ACTIONS(12425), + [anon_sym_BSLASHpvolcite] = ACTIONS(12425), + [anon_sym_BSLASHPvolcite] = ACTIONS(12425), + [anon_sym_BSLASHfvolcite] = ACTIONS(12425), + [anon_sym_BSLASHftvolcite] = ACTIONS(12425), + [anon_sym_BSLASHsvolcite] = ACTIONS(12425), + [anon_sym_BSLASHSvolcite] = ACTIONS(12425), + [anon_sym_BSLASHtvolcite] = ACTIONS(12425), + [anon_sym_BSLASHTvolcite] = ACTIONS(12425), + [anon_sym_BSLASHavolcite] = ACTIONS(12425), + [anon_sym_BSLASHAvolcite] = ACTIONS(12425), + [anon_sym_BSLASHnotecite] = ACTIONS(12425), + [anon_sym_BSLASHpnotecite] = ACTIONS(12425), + [anon_sym_BSLASHPnotecite] = ACTIONS(12425), + [anon_sym_BSLASHfnotecite] = ACTIONS(12425), + [anon_sym_BSLASHusepackage] = ACTIONS(12425), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12425), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12425), + [anon_sym_BSLASHinclude] = ACTIONS(12425), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12425), + [anon_sym_BSLASHinput] = ACTIONS(12425), + [anon_sym_BSLASHsubfile] = ACTIONS(12425), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12425), + [anon_sym_BSLASHbibliography] = ACTIONS(12425), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12425), + [anon_sym_BSLASHincludesvg] = ACTIONS(12425), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12425), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12425), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12425), + [anon_sym_BSLASHimport] = ACTIONS(12425), + [anon_sym_BSLASHsubimport] = ACTIONS(12425), + [anon_sym_BSLASHinputfrom] = ACTIONS(12425), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12425), + [anon_sym_BSLASHincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHlabel] = ACTIONS(12425), + [anon_sym_BSLASHref] = ACTIONS(12425), + [anon_sym_BSLASHvref] = ACTIONS(12425), + [anon_sym_BSLASHVref] = ACTIONS(12425), + [anon_sym_BSLASHautoref] = ACTIONS(12425), + [anon_sym_BSLASHpageref] = ACTIONS(12425), + [anon_sym_BSLASHcref] = ACTIONS(12425), + [anon_sym_BSLASHCref] = ACTIONS(12425), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnameCref] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHlabelcref] = ACTIONS(12425), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12425), + [anon_sym_BSLASHeqref] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange] = ACTIONS(12425), + [anon_sym_BSLASHCrefrange] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewlabel] = ACTIONS(12425), + [anon_sym_BSLASHnewcommand] = ACTIONS(12425), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12425), + [anon_sym_BSLASHgls] = ACTIONS(12425), + [anon_sym_BSLASHGls] = ACTIONS(12425), + [anon_sym_BSLASHGLS] = ACTIONS(12425), + [anon_sym_BSLASHglspl] = ACTIONS(12425), + [anon_sym_BSLASHGlspl] = ACTIONS(12425), + [anon_sym_BSLASHGLSpl] = ACTIONS(12425), + [anon_sym_BSLASHglsdisp] = ACTIONS(12425), + [anon_sym_BSLASHglslink] = ACTIONS(12425), + [anon_sym_BSLASHglstext] = ACTIONS(12425), + [anon_sym_BSLASHGlstext] = ACTIONS(12425), + [anon_sym_BSLASHGLStext] = ACTIONS(12425), + [anon_sym_BSLASHglsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12425), + [anon_sym_BSLASHglsplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSplural] = ACTIONS(12425), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHglsname] = ACTIONS(12425), + [anon_sym_BSLASHGlsname] = ACTIONS(12425), + [anon_sym_BSLASHGLSname] = ACTIONS(12425), + [anon_sym_BSLASHglssymbol] = ACTIONS(12425), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12425), + [anon_sym_BSLASHglsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12425), + [anon_sym_BSLASHglsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12425), + [anon_sym_BSLASHglsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12425), + [anon_sym_BSLASHglsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12425), + [anon_sym_BSLASHglsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12425), + [anon_sym_BSLASHnewacronym] = ACTIONS(12425), + [anon_sym_BSLASHacrshort] = ACTIONS(12425), + [anon_sym_BSLASHAcrshort] = ACTIONS(12425), + [anon_sym_BSLASHACRshort] = ACTIONS(12425), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12425), + [anon_sym_BSLASHacrlong] = ACTIONS(12425), + [anon_sym_BSLASHAcrlong] = ACTIONS(12425), + [anon_sym_BSLASHACRlong] = ACTIONS(12425), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12425), + [anon_sym_BSLASHacrfull] = ACTIONS(12425), + [anon_sym_BSLASHAcrfull] = ACTIONS(12425), + [anon_sym_BSLASHACRfull] = ACTIONS(12425), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12425), + [anon_sym_BSLASHacs] = ACTIONS(12425), + [anon_sym_BSLASHAcs] = ACTIONS(12425), + [anon_sym_BSLASHacsp] = ACTIONS(12425), + [anon_sym_BSLASHAcsp] = ACTIONS(12425), + [anon_sym_BSLASHacl] = ACTIONS(12425), + [anon_sym_BSLASHAcl] = ACTIONS(12425), + [anon_sym_BSLASHaclp] = ACTIONS(12425), + [anon_sym_BSLASHAclp] = ACTIONS(12425), + [anon_sym_BSLASHacf] = ACTIONS(12425), + [anon_sym_BSLASHAcf] = ACTIONS(12425), + [anon_sym_BSLASHacfp] = ACTIONS(12425), + [anon_sym_BSLASHAcfp] = ACTIONS(12425), + [anon_sym_BSLASHac] = ACTIONS(12425), + [anon_sym_BSLASHAc] = ACTIONS(12425), + [anon_sym_BSLASHacp] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12425), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12425), + [anon_sym_BSLASHcolor] = ACTIONS(12425), + [anon_sym_BSLASHcolorbox] = ACTIONS(12425), + [anon_sym_BSLASHtextcolor] = ACTIONS(12425), + [anon_sym_BSLASHpagecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12425), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12425), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12425), + }, + [1443] = { + [sym_generic_command_name] = ACTIONS(12429), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12429), + [aux_sym_paragraph_token1] = ACTIONS(12429), + [aux_sym_subparagraph_token1] = ACTIONS(12429), + [anon_sym_BSLASHitem] = ACTIONS(12429), + [anon_sym_LBRACK] = ACTIONS(12427), + [anon_sym_RBRACK] = ACTIONS(12427), + [anon_sym_LBRACE] = ACTIONS(12427), + [anon_sym_RBRACE] = ACTIONS(12427), + [anon_sym_LPAREN] = ACTIONS(12427), + [anon_sym_COMMA] = ACTIONS(12427), + [anon_sym_EQ] = ACTIONS(12427), + [sym_word] = ACTIONS(12427), + [sym_param] = ACTIONS(12427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12427), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12427), + [anon_sym_DOLLAR] = ACTIONS(12429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12427), + [anon_sym_BSLASHbegin] = ACTIONS(12429), + [anon_sym_BSLASHcaption] = ACTIONS(12429), + [anon_sym_BSLASHcite] = ACTIONS(12429), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCite] = ACTIONS(12429), + [anon_sym_BSLASHnocite] = ACTIONS(12429), + [anon_sym_BSLASHcitet] = ACTIONS(12429), + [anon_sym_BSLASHcitep] = ACTIONS(12429), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteauthor] = ACTIONS(12429), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12429), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitetitle] = ACTIONS(12429), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteyear] = ACTIONS(12429), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitedate] = ACTIONS(12429), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteurl] = ACTIONS(12429), + [anon_sym_BSLASHfullcite] = ACTIONS(12429), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12429), + [anon_sym_BSLASHcitealt] = ACTIONS(12429), + [anon_sym_BSLASHcitealp] = ACTIONS(12429), + [anon_sym_BSLASHcitetext] = ACTIONS(12429), + [anon_sym_BSLASHparencite] = ACTIONS(12429), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHParencite] = ACTIONS(12429), + [anon_sym_BSLASHfootcite] = ACTIONS(12429), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12429), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12429), + [anon_sym_BSLASHtextcite] = ACTIONS(12429), + [anon_sym_BSLASHTextcite] = ACTIONS(12429), + [anon_sym_BSLASHsmartcite] = ACTIONS(12429), + [anon_sym_BSLASHSmartcite] = ACTIONS(12429), + [anon_sym_BSLASHsupercite] = ACTIONS(12429), + [anon_sym_BSLASHautocite] = ACTIONS(12429), + [anon_sym_BSLASHAutocite] = ACTIONS(12429), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHvolcite] = ACTIONS(12429), + [anon_sym_BSLASHVolcite] = ACTIONS(12429), + [anon_sym_BSLASHpvolcite] = ACTIONS(12429), + [anon_sym_BSLASHPvolcite] = ACTIONS(12429), + [anon_sym_BSLASHfvolcite] = ACTIONS(12429), + [anon_sym_BSLASHftvolcite] = ACTIONS(12429), + [anon_sym_BSLASHsvolcite] = ACTIONS(12429), + [anon_sym_BSLASHSvolcite] = ACTIONS(12429), + [anon_sym_BSLASHtvolcite] = ACTIONS(12429), + [anon_sym_BSLASHTvolcite] = ACTIONS(12429), + [anon_sym_BSLASHavolcite] = ACTIONS(12429), + [anon_sym_BSLASHAvolcite] = ACTIONS(12429), + [anon_sym_BSLASHnotecite] = ACTIONS(12429), + [anon_sym_BSLASHpnotecite] = ACTIONS(12429), + [anon_sym_BSLASHPnotecite] = ACTIONS(12429), + [anon_sym_BSLASHfnotecite] = ACTIONS(12429), + [anon_sym_BSLASHusepackage] = ACTIONS(12429), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12429), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12429), + [anon_sym_BSLASHinclude] = ACTIONS(12429), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12429), + [anon_sym_BSLASHinput] = ACTIONS(12429), + [anon_sym_BSLASHsubfile] = ACTIONS(12429), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12429), + [anon_sym_BSLASHbibliography] = ACTIONS(12429), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12429), + [anon_sym_BSLASHincludesvg] = ACTIONS(12429), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12429), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12429), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12429), + [anon_sym_BSLASHimport] = ACTIONS(12429), + [anon_sym_BSLASHsubimport] = ACTIONS(12429), + [anon_sym_BSLASHinputfrom] = ACTIONS(12429), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12429), + [anon_sym_BSLASHincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHlabel] = ACTIONS(12429), + [anon_sym_BSLASHref] = ACTIONS(12429), + [anon_sym_BSLASHvref] = ACTIONS(12429), + [anon_sym_BSLASHVref] = ACTIONS(12429), + [anon_sym_BSLASHautoref] = ACTIONS(12429), + [anon_sym_BSLASHpageref] = ACTIONS(12429), + [anon_sym_BSLASHcref] = ACTIONS(12429), + [anon_sym_BSLASHCref] = ACTIONS(12429), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnameCref] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHlabelcref] = ACTIONS(12429), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12429), + [anon_sym_BSLASHeqref] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange] = ACTIONS(12429), + [anon_sym_BSLASHCrefrange] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewlabel] = ACTIONS(12429), + [anon_sym_BSLASHnewcommand] = ACTIONS(12429), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12429), + [anon_sym_BSLASHgls] = ACTIONS(12429), + [anon_sym_BSLASHGls] = ACTIONS(12429), + [anon_sym_BSLASHGLS] = ACTIONS(12429), + [anon_sym_BSLASHglspl] = ACTIONS(12429), + [anon_sym_BSLASHGlspl] = ACTIONS(12429), + [anon_sym_BSLASHGLSpl] = ACTIONS(12429), + [anon_sym_BSLASHglsdisp] = ACTIONS(12429), + [anon_sym_BSLASHglslink] = ACTIONS(12429), + [anon_sym_BSLASHglstext] = ACTIONS(12429), + [anon_sym_BSLASHGlstext] = ACTIONS(12429), + [anon_sym_BSLASHGLStext] = ACTIONS(12429), + [anon_sym_BSLASHglsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12429), + [anon_sym_BSLASHglsplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSplural] = ACTIONS(12429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHglsname] = ACTIONS(12429), + [anon_sym_BSLASHGlsname] = ACTIONS(12429), + [anon_sym_BSLASHGLSname] = ACTIONS(12429), + [anon_sym_BSLASHglssymbol] = ACTIONS(12429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12429), + [anon_sym_BSLASHglsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12429), + [anon_sym_BSLASHglsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12429), + [anon_sym_BSLASHglsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12429), + [anon_sym_BSLASHglsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12429), + [anon_sym_BSLASHglsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12429), + [anon_sym_BSLASHnewacronym] = ACTIONS(12429), + [anon_sym_BSLASHacrshort] = ACTIONS(12429), + [anon_sym_BSLASHAcrshort] = ACTIONS(12429), + [anon_sym_BSLASHACRshort] = ACTIONS(12429), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12429), + [anon_sym_BSLASHacrlong] = ACTIONS(12429), + [anon_sym_BSLASHAcrlong] = ACTIONS(12429), + [anon_sym_BSLASHACRlong] = ACTIONS(12429), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12429), + [anon_sym_BSLASHacrfull] = ACTIONS(12429), + [anon_sym_BSLASHAcrfull] = ACTIONS(12429), + [anon_sym_BSLASHACRfull] = ACTIONS(12429), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12429), + [anon_sym_BSLASHacs] = ACTIONS(12429), + [anon_sym_BSLASHAcs] = ACTIONS(12429), + [anon_sym_BSLASHacsp] = ACTIONS(12429), + [anon_sym_BSLASHAcsp] = ACTIONS(12429), + [anon_sym_BSLASHacl] = ACTIONS(12429), + [anon_sym_BSLASHAcl] = ACTIONS(12429), + [anon_sym_BSLASHaclp] = ACTIONS(12429), + [anon_sym_BSLASHAclp] = ACTIONS(12429), + [anon_sym_BSLASHacf] = ACTIONS(12429), + [anon_sym_BSLASHAcf] = ACTIONS(12429), + [anon_sym_BSLASHacfp] = ACTIONS(12429), + [anon_sym_BSLASHAcfp] = ACTIONS(12429), + [anon_sym_BSLASHac] = ACTIONS(12429), + [anon_sym_BSLASHAc] = ACTIONS(12429), + [anon_sym_BSLASHacp] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12429), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12429), + [anon_sym_BSLASHcolor] = ACTIONS(12429), + [anon_sym_BSLASHcolorbox] = ACTIONS(12429), + [anon_sym_BSLASHtextcolor] = ACTIONS(12429), + [anon_sym_BSLASHpagecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12429), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12429), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12429), + }, + [1444] = { + [sym_generic_command_name] = ACTIONS(12433), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12433), + [aux_sym_paragraph_token1] = ACTIONS(12433), + [aux_sym_subparagraph_token1] = ACTIONS(12433), + [anon_sym_BSLASHitem] = ACTIONS(12433), + [anon_sym_LBRACK] = ACTIONS(12431), + [anon_sym_RBRACK] = ACTIONS(12431), + [anon_sym_LBRACE] = ACTIONS(12431), + [anon_sym_RBRACE] = ACTIONS(12431), + [anon_sym_LPAREN] = ACTIONS(12431), + [anon_sym_COMMA] = ACTIONS(12431), + [anon_sym_EQ] = ACTIONS(12431), + [sym_word] = ACTIONS(12431), + [sym_param] = ACTIONS(12431), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12431), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12431), + [anon_sym_DOLLAR] = ACTIONS(12433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12431), + [anon_sym_BSLASHbegin] = ACTIONS(12433), + [anon_sym_BSLASHcaption] = ACTIONS(12433), + [anon_sym_BSLASHcite] = ACTIONS(12433), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCite] = ACTIONS(12433), + [anon_sym_BSLASHnocite] = ACTIONS(12433), + [anon_sym_BSLASHcitet] = ACTIONS(12433), + [anon_sym_BSLASHcitep] = ACTIONS(12433), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteauthor] = ACTIONS(12433), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12433), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitetitle] = ACTIONS(12433), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteyear] = ACTIONS(12433), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitedate] = ACTIONS(12433), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteurl] = ACTIONS(12433), + [anon_sym_BSLASHfullcite] = ACTIONS(12433), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12433), + [anon_sym_BSLASHcitealt] = ACTIONS(12433), + [anon_sym_BSLASHcitealp] = ACTIONS(12433), + [anon_sym_BSLASHcitetext] = ACTIONS(12433), + [anon_sym_BSLASHparencite] = ACTIONS(12433), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHParencite] = ACTIONS(12433), + [anon_sym_BSLASHfootcite] = ACTIONS(12433), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12433), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12433), + [anon_sym_BSLASHtextcite] = ACTIONS(12433), + [anon_sym_BSLASHTextcite] = ACTIONS(12433), + [anon_sym_BSLASHsmartcite] = ACTIONS(12433), + [anon_sym_BSLASHSmartcite] = ACTIONS(12433), + [anon_sym_BSLASHsupercite] = ACTIONS(12433), + [anon_sym_BSLASHautocite] = ACTIONS(12433), + [anon_sym_BSLASHAutocite] = ACTIONS(12433), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHvolcite] = ACTIONS(12433), + [anon_sym_BSLASHVolcite] = ACTIONS(12433), + [anon_sym_BSLASHpvolcite] = ACTIONS(12433), + [anon_sym_BSLASHPvolcite] = ACTIONS(12433), + [anon_sym_BSLASHfvolcite] = ACTIONS(12433), + [anon_sym_BSLASHftvolcite] = ACTIONS(12433), + [anon_sym_BSLASHsvolcite] = ACTIONS(12433), + [anon_sym_BSLASHSvolcite] = ACTIONS(12433), + [anon_sym_BSLASHtvolcite] = ACTIONS(12433), + [anon_sym_BSLASHTvolcite] = ACTIONS(12433), + [anon_sym_BSLASHavolcite] = ACTIONS(12433), + [anon_sym_BSLASHAvolcite] = ACTIONS(12433), + [anon_sym_BSLASHnotecite] = ACTIONS(12433), + [anon_sym_BSLASHpnotecite] = ACTIONS(12433), + [anon_sym_BSLASHPnotecite] = ACTIONS(12433), + [anon_sym_BSLASHfnotecite] = ACTIONS(12433), + [anon_sym_BSLASHusepackage] = ACTIONS(12433), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12433), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12433), + [anon_sym_BSLASHinclude] = ACTIONS(12433), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12433), + [anon_sym_BSLASHinput] = ACTIONS(12433), + [anon_sym_BSLASHsubfile] = ACTIONS(12433), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12433), + [anon_sym_BSLASHbibliography] = ACTIONS(12433), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12433), + [anon_sym_BSLASHincludesvg] = ACTIONS(12433), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12433), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12433), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12433), + [anon_sym_BSLASHimport] = ACTIONS(12433), + [anon_sym_BSLASHsubimport] = ACTIONS(12433), + [anon_sym_BSLASHinputfrom] = ACTIONS(12433), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12433), + [anon_sym_BSLASHincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHlabel] = ACTIONS(12433), + [anon_sym_BSLASHref] = ACTIONS(12433), + [anon_sym_BSLASHvref] = ACTIONS(12433), + [anon_sym_BSLASHVref] = ACTIONS(12433), + [anon_sym_BSLASHautoref] = ACTIONS(12433), + [anon_sym_BSLASHpageref] = ACTIONS(12433), + [anon_sym_BSLASHcref] = ACTIONS(12433), + [anon_sym_BSLASHCref] = ACTIONS(12433), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnameCref] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHlabelcref] = ACTIONS(12433), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12433), + [anon_sym_BSLASHeqref] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange] = ACTIONS(12433), + [anon_sym_BSLASHCrefrange] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewlabel] = ACTIONS(12433), + [anon_sym_BSLASHnewcommand] = ACTIONS(12433), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12433), + [anon_sym_BSLASHgls] = ACTIONS(12433), + [anon_sym_BSLASHGls] = ACTIONS(12433), + [anon_sym_BSLASHGLS] = ACTIONS(12433), + [anon_sym_BSLASHglspl] = ACTIONS(12433), + [anon_sym_BSLASHGlspl] = ACTIONS(12433), + [anon_sym_BSLASHGLSpl] = ACTIONS(12433), + [anon_sym_BSLASHglsdisp] = ACTIONS(12433), + [anon_sym_BSLASHglslink] = ACTIONS(12433), + [anon_sym_BSLASHglstext] = ACTIONS(12433), + [anon_sym_BSLASHGlstext] = ACTIONS(12433), + [anon_sym_BSLASHGLStext] = ACTIONS(12433), + [anon_sym_BSLASHglsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12433), + [anon_sym_BSLASHglsplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSplural] = ACTIONS(12433), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHglsname] = ACTIONS(12433), + [anon_sym_BSLASHGlsname] = ACTIONS(12433), + [anon_sym_BSLASHGLSname] = ACTIONS(12433), + [anon_sym_BSLASHglssymbol] = ACTIONS(12433), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12433), + [anon_sym_BSLASHglsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12433), + [anon_sym_BSLASHglsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12433), + [anon_sym_BSLASHglsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12433), + [anon_sym_BSLASHglsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12433), + [anon_sym_BSLASHglsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12433), + [anon_sym_BSLASHnewacronym] = ACTIONS(12433), + [anon_sym_BSLASHacrshort] = ACTIONS(12433), + [anon_sym_BSLASHAcrshort] = ACTIONS(12433), + [anon_sym_BSLASHACRshort] = ACTIONS(12433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12433), + [anon_sym_BSLASHacrlong] = ACTIONS(12433), + [anon_sym_BSLASHAcrlong] = ACTIONS(12433), + [anon_sym_BSLASHACRlong] = ACTIONS(12433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12433), + [anon_sym_BSLASHacrfull] = ACTIONS(12433), + [anon_sym_BSLASHAcrfull] = ACTIONS(12433), + [anon_sym_BSLASHACRfull] = ACTIONS(12433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12433), + [anon_sym_BSLASHacs] = ACTIONS(12433), + [anon_sym_BSLASHAcs] = ACTIONS(12433), + [anon_sym_BSLASHacsp] = ACTIONS(12433), + [anon_sym_BSLASHAcsp] = ACTIONS(12433), + [anon_sym_BSLASHacl] = ACTIONS(12433), + [anon_sym_BSLASHAcl] = ACTIONS(12433), + [anon_sym_BSLASHaclp] = ACTIONS(12433), + [anon_sym_BSLASHAclp] = ACTIONS(12433), + [anon_sym_BSLASHacf] = ACTIONS(12433), + [anon_sym_BSLASHAcf] = ACTIONS(12433), + [anon_sym_BSLASHacfp] = ACTIONS(12433), + [anon_sym_BSLASHAcfp] = ACTIONS(12433), + [anon_sym_BSLASHac] = ACTIONS(12433), + [anon_sym_BSLASHAc] = ACTIONS(12433), + [anon_sym_BSLASHacp] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12433), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12433), + [anon_sym_BSLASHcolor] = ACTIONS(12433), + [anon_sym_BSLASHcolorbox] = ACTIONS(12433), + [anon_sym_BSLASHtextcolor] = ACTIONS(12433), + [anon_sym_BSLASHpagecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12433), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12433), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12433), + }, + [1445] = { + [sym_generic_command_name] = ACTIONS(12227), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12227), + [aux_sym_paragraph_token1] = ACTIONS(12227), + [aux_sym_subparagraph_token1] = ACTIONS(12227), + [anon_sym_BSLASHitem] = ACTIONS(12227), + [anon_sym_LBRACK] = ACTIONS(12225), + [anon_sym_RBRACK] = ACTIONS(12225), + [anon_sym_LBRACE] = ACTIONS(12225), + [anon_sym_RBRACE] = ACTIONS(12225), + [anon_sym_LPAREN] = ACTIONS(12225), + [anon_sym_COMMA] = ACTIONS(12225), + [anon_sym_EQ] = ACTIONS(12225), + [sym_word] = ACTIONS(12225), + [sym_param] = ACTIONS(12225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12225), + [anon_sym_DOLLAR] = ACTIONS(12227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12225), + [anon_sym_BSLASHbegin] = ACTIONS(12227), + [anon_sym_BSLASHcaption] = ACTIONS(12227), + [anon_sym_BSLASHcite] = ACTIONS(12227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCite] = ACTIONS(12227), + [anon_sym_BSLASHnocite] = ACTIONS(12227), + [anon_sym_BSLASHcitet] = ACTIONS(12227), + [anon_sym_BSLASHcitep] = ACTIONS(12227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteauthor] = ACTIONS(12227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitetitle] = ACTIONS(12227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteyear] = ACTIONS(12227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitedate] = ACTIONS(12227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteurl] = ACTIONS(12227), + [anon_sym_BSLASHfullcite] = ACTIONS(12227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12227), + [anon_sym_BSLASHcitealt] = ACTIONS(12227), + [anon_sym_BSLASHcitealp] = ACTIONS(12227), + [anon_sym_BSLASHcitetext] = ACTIONS(12227), + [anon_sym_BSLASHparencite] = ACTIONS(12227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHParencite] = ACTIONS(12227), + [anon_sym_BSLASHfootcite] = ACTIONS(12227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12227), + [anon_sym_BSLASHtextcite] = ACTIONS(12227), + [anon_sym_BSLASHTextcite] = ACTIONS(12227), + [anon_sym_BSLASHsmartcite] = ACTIONS(12227), + [anon_sym_BSLASHSmartcite] = ACTIONS(12227), + [anon_sym_BSLASHsupercite] = ACTIONS(12227), + [anon_sym_BSLASHautocite] = ACTIONS(12227), + [anon_sym_BSLASHAutocite] = ACTIONS(12227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHvolcite] = ACTIONS(12227), + [anon_sym_BSLASHVolcite] = ACTIONS(12227), + [anon_sym_BSLASHpvolcite] = ACTIONS(12227), + [anon_sym_BSLASHPvolcite] = ACTIONS(12227), + [anon_sym_BSLASHfvolcite] = ACTIONS(12227), + [anon_sym_BSLASHftvolcite] = ACTIONS(12227), + [anon_sym_BSLASHsvolcite] = ACTIONS(12227), + [anon_sym_BSLASHSvolcite] = ACTIONS(12227), + [anon_sym_BSLASHtvolcite] = ACTIONS(12227), + [anon_sym_BSLASHTvolcite] = ACTIONS(12227), + [anon_sym_BSLASHavolcite] = ACTIONS(12227), + [anon_sym_BSLASHAvolcite] = ACTIONS(12227), + [anon_sym_BSLASHnotecite] = ACTIONS(12227), + [anon_sym_BSLASHpnotecite] = ACTIONS(12227), + [anon_sym_BSLASHPnotecite] = ACTIONS(12227), + [anon_sym_BSLASHfnotecite] = ACTIONS(12227), + [anon_sym_BSLASHusepackage] = ACTIONS(12227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12227), + [anon_sym_BSLASHinclude] = ACTIONS(12227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12227), + [anon_sym_BSLASHinput] = ACTIONS(12227), + [anon_sym_BSLASHsubfile] = ACTIONS(12227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12227), + [anon_sym_BSLASHbibliography] = ACTIONS(12227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12227), + [anon_sym_BSLASHincludesvg] = ACTIONS(12227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12227), + [anon_sym_BSLASHimport] = ACTIONS(12227), + [anon_sym_BSLASHsubimport] = ACTIONS(12227), + [anon_sym_BSLASHinputfrom] = ACTIONS(12227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12227), + [anon_sym_BSLASHincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHlabel] = ACTIONS(12227), + [anon_sym_BSLASHref] = ACTIONS(12227), + [anon_sym_BSLASHvref] = ACTIONS(12227), + [anon_sym_BSLASHVref] = ACTIONS(12227), + [anon_sym_BSLASHautoref] = ACTIONS(12227), + [anon_sym_BSLASHpageref] = ACTIONS(12227), + [anon_sym_BSLASHcref] = ACTIONS(12227), + [anon_sym_BSLASHCref] = ACTIONS(12227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnameCref] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHlabelcref] = ACTIONS(12227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12227), + [anon_sym_BSLASHeqref] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange] = ACTIONS(12227), + [anon_sym_BSLASHCrefrange] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewlabel] = ACTIONS(12227), + [anon_sym_BSLASHnewcommand] = ACTIONS(12227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12227), + [anon_sym_BSLASHgls] = ACTIONS(12227), + [anon_sym_BSLASHGls] = ACTIONS(12227), + [anon_sym_BSLASHGLS] = ACTIONS(12227), + [anon_sym_BSLASHglspl] = ACTIONS(12227), + [anon_sym_BSLASHGlspl] = ACTIONS(12227), + [anon_sym_BSLASHGLSpl] = ACTIONS(12227), + [anon_sym_BSLASHglsdisp] = ACTIONS(12227), + [anon_sym_BSLASHglslink] = ACTIONS(12227), + [anon_sym_BSLASHglstext] = ACTIONS(12227), + [anon_sym_BSLASHGlstext] = ACTIONS(12227), + [anon_sym_BSLASHGLStext] = ACTIONS(12227), + [anon_sym_BSLASHglsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12227), + [anon_sym_BSLASHglsplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSplural] = ACTIONS(12227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHglsname] = ACTIONS(12227), + [anon_sym_BSLASHGlsname] = ACTIONS(12227), + [anon_sym_BSLASHGLSname] = ACTIONS(12227), + [anon_sym_BSLASHglssymbol] = ACTIONS(12227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12227), + [anon_sym_BSLASHglsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12227), + [anon_sym_BSLASHglsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12227), + [anon_sym_BSLASHglsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12227), + [anon_sym_BSLASHglsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12227), + [anon_sym_BSLASHglsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12227), + [anon_sym_BSLASHnewacronym] = ACTIONS(12227), + [anon_sym_BSLASHacrshort] = ACTIONS(12227), + [anon_sym_BSLASHAcrshort] = ACTIONS(12227), + [anon_sym_BSLASHACRshort] = ACTIONS(12227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12227), + [anon_sym_BSLASHacrlong] = ACTIONS(12227), + [anon_sym_BSLASHAcrlong] = ACTIONS(12227), + [anon_sym_BSLASHACRlong] = ACTIONS(12227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12227), + [anon_sym_BSLASHacrfull] = ACTIONS(12227), + [anon_sym_BSLASHAcrfull] = ACTIONS(12227), + [anon_sym_BSLASHACRfull] = ACTIONS(12227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12227), + [anon_sym_BSLASHacs] = ACTIONS(12227), + [anon_sym_BSLASHAcs] = ACTIONS(12227), + [anon_sym_BSLASHacsp] = ACTIONS(12227), + [anon_sym_BSLASHAcsp] = ACTIONS(12227), + [anon_sym_BSLASHacl] = ACTIONS(12227), + [anon_sym_BSLASHAcl] = ACTIONS(12227), + [anon_sym_BSLASHaclp] = ACTIONS(12227), + [anon_sym_BSLASHAclp] = ACTIONS(12227), + [anon_sym_BSLASHacf] = ACTIONS(12227), + [anon_sym_BSLASHAcf] = ACTIONS(12227), + [anon_sym_BSLASHacfp] = ACTIONS(12227), + [anon_sym_BSLASHAcfp] = ACTIONS(12227), + [anon_sym_BSLASHac] = ACTIONS(12227), + [anon_sym_BSLASHAc] = ACTIONS(12227), + [anon_sym_BSLASHacp] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12227), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12227), + [anon_sym_BSLASHcolor] = ACTIONS(12227), + [anon_sym_BSLASHcolorbox] = ACTIONS(12227), + [anon_sym_BSLASHtextcolor] = ACTIONS(12227), + [anon_sym_BSLASHpagecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12227), + }, + [1446] = { + [sym_generic_command_name] = ACTIONS(12441), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12441), + [aux_sym_paragraph_token1] = ACTIONS(12441), + [aux_sym_subparagraph_token1] = ACTIONS(12441), + [anon_sym_BSLASHitem] = ACTIONS(12441), + [anon_sym_LBRACK] = ACTIONS(12439), + [anon_sym_RBRACK] = ACTIONS(12439), + [anon_sym_LBRACE] = ACTIONS(12439), + [anon_sym_RBRACE] = ACTIONS(12439), + [anon_sym_LPAREN] = ACTIONS(12439), + [anon_sym_COMMA] = ACTIONS(12439), + [anon_sym_EQ] = ACTIONS(12439), + [sym_word] = ACTIONS(12439), + [sym_param] = ACTIONS(12439), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12439), + [anon_sym_DOLLAR] = ACTIONS(12441), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12439), + [anon_sym_BSLASHbegin] = ACTIONS(12441), + [anon_sym_BSLASHcaption] = ACTIONS(12441), + [anon_sym_BSLASHcite] = ACTIONS(12441), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCite] = ACTIONS(12441), + [anon_sym_BSLASHnocite] = ACTIONS(12441), + [anon_sym_BSLASHcitet] = ACTIONS(12441), + [anon_sym_BSLASHcitep] = ACTIONS(12441), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteauthor] = ACTIONS(12441), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12441), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitetitle] = ACTIONS(12441), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteyear] = ACTIONS(12441), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitedate] = ACTIONS(12441), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteurl] = ACTIONS(12441), + [anon_sym_BSLASHfullcite] = ACTIONS(12441), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12441), + [anon_sym_BSLASHcitealt] = ACTIONS(12441), + [anon_sym_BSLASHcitealp] = ACTIONS(12441), + [anon_sym_BSLASHcitetext] = ACTIONS(12441), + [anon_sym_BSLASHparencite] = ACTIONS(12441), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHParencite] = ACTIONS(12441), + [anon_sym_BSLASHfootcite] = ACTIONS(12441), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12441), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12441), + [anon_sym_BSLASHtextcite] = ACTIONS(12441), + [anon_sym_BSLASHTextcite] = ACTIONS(12441), + [anon_sym_BSLASHsmartcite] = ACTIONS(12441), + [anon_sym_BSLASHSmartcite] = ACTIONS(12441), + [anon_sym_BSLASHsupercite] = ACTIONS(12441), + [anon_sym_BSLASHautocite] = ACTIONS(12441), + [anon_sym_BSLASHAutocite] = ACTIONS(12441), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHvolcite] = ACTIONS(12441), + [anon_sym_BSLASHVolcite] = ACTIONS(12441), + [anon_sym_BSLASHpvolcite] = ACTIONS(12441), + [anon_sym_BSLASHPvolcite] = ACTIONS(12441), + [anon_sym_BSLASHfvolcite] = ACTIONS(12441), + [anon_sym_BSLASHftvolcite] = ACTIONS(12441), + [anon_sym_BSLASHsvolcite] = ACTIONS(12441), + [anon_sym_BSLASHSvolcite] = ACTIONS(12441), + [anon_sym_BSLASHtvolcite] = ACTIONS(12441), + [anon_sym_BSLASHTvolcite] = ACTIONS(12441), + [anon_sym_BSLASHavolcite] = ACTIONS(12441), + [anon_sym_BSLASHAvolcite] = ACTIONS(12441), + [anon_sym_BSLASHnotecite] = ACTIONS(12441), + [anon_sym_BSLASHpnotecite] = ACTIONS(12441), + [anon_sym_BSLASHPnotecite] = ACTIONS(12441), + [anon_sym_BSLASHfnotecite] = ACTIONS(12441), + [anon_sym_BSLASHusepackage] = ACTIONS(12441), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12441), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12441), + [anon_sym_BSLASHinclude] = ACTIONS(12441), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12441), + [anon_sym_BSLASHinput] = ACTIONS(12441), + [anon_sym_BSLASHsubfile] = ACTIONS(12441), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12441), + [anon_sym_BSLASHbibliography] = ACTIONS(12441), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12441), + [anon_sym_BSLASHincludesvg] = ACTIONS(12441), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12441), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12441), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12441), + [anon_sym_BSLASHimport] = ACTIONS(12441), + [anon_sym_BSLASHsubimport] = ACTIONS(12441), + [anon_sym_BSLASHinputfrom] = ACTIONS(12441), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12441), + [anon_sym_BSLASHincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHlabel] = ACTIONS(12441), + [anon_sym_BSLASHref] = ACTIONS(12441), + [anon_sym_BSLASHvref] = ACTIONS(12441), + [anon_sym_BSLASHVref] = ACTIONS(12441), + [anon_sym_BSLASHautoref] = ACTIONS(12441), + [anon_sym_BSLASHpageref] = ACTIONS(12441), + [anon_sym_BSLASHcref] = ACTIONS(12441), + [anon_sym_BSLASHCref] = ACTIONS(12441), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnameCref] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHlabelcref] = ACTIONS(12441), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12441), + [anon_sym_BSLASHeqref] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange] = ACTIONS(12441), + [anon_sym_BSLASHCrefrange] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewlabel] = ACTIONS(12441), + [anon_sym_BSLASHnewcommand] = ACTIONS(12441), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12441), + [anon_sym_BSLASHgls] = ACTIONS(12441), + [anon_sym_BSLASHGls] = ACTIONS(12441), + [anon_sym_BSLASHGLS] = ACTIONS(12441), + [anon_sym_BSLASHglspl] = ACTIONS(12441), + [anon_sym_BSLASHGlspl] = ACTIONS(12441), + [anon_sym_BSLASHGLSpl] = ACTIONS(12441), + [anon_sym_BSLASHglsdisp] = ACTIONS(12441), + [anon_sym_BSLASHglslink] = ACTIONS(12441), + [anon_sym_BSLASHglstext] = ACTIONS(12441), + [anon_sym_BSLASHGlstext] = ACTIONS(12441), + [anon_sym_BSLASHGLStext] = ACTIONS(12441), + [anon_sym_BSLASHglsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12441), + [anon_sym_BSLASHglsplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSplural] = ACTIONS(12441), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHglsname] = ACTIONS(12441), + [anon_sym_BSLASHGlsname] = ACTIONS(12441), + [anon_sym_BSLASHGLSname] = ACTIONS(12441), + [anon_sym_BSLASHglssymbol] = ACTIONS(12441), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12441), + [anon_sym_BSLASHglsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12441), + [anon_sym_BSLASHglsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12441), + [anon_sym_BSLASHglsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12441), + [anon_sym_BSLASHglsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12441), + [anon_sym_BSLASHglsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12441), + [anon_sym_BSLASHnewacronym] = ACTIONS(12441), + [anon_sym_BSLASHacrshort] = ACTIONS(12441), + [anon_sym_BSLASHAcrshort] = ACTIONS(12441), + [anon_sym_BSLASHACRshort] = ACTIONS(12441), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12441), + [anon_sym_BSLASHacrlong] = ACTIONS(12441), + [anon_sym_BSLASHAcrlong] = ACTIONS(12441), + [anon_sym_BSLASHACRlong] = ACTIONS(12441), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12441), + [anon_sym_BSLASHacrfull] = ACTIONS(12441), + [anon_sym_BSLASHAcrfull] = ACTIONS(12441), + [anon_sym_BSLASHACRfull] = ACTIONS(12441), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12441), + [anon_sym_BSLASHacs] = ACTIONS(12441), + [anon_sym_BSLASHAcs] = ACTIONS(12441), + [anon_sym_BSLASHacsp] = ACTIONS(12441), + [anon_sym_BSLASHAcsp] = ACTIONS(12441), + [anon_sym_BSLASHacl] = ACTIONS(12441), + [anon_sym_BSLASHAcl] = ACTIONS(12441), + [anon_sym_BSLASHaclp] = ACTIONS(12441), + [anon_sym_BSLASHAclp] = ACTIONS(12441), + [anon_sym_BSLASHacf] = ACTIONS(12441), + [anon_sym_BSLASHAcf] = ACTIONS(12441), + [anon_sym_BSLASHacfp] = ACTIONS(12441), + [anon_sym_BSLASHAcfp] = ACTIONS(12441), + [anon_sym_BSLASHac] = ACTIONS(12441), + [anon_sym_BSLASHAc] = ACTIONS(12441), + [anon_sym_BSLASHacp] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12441), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12441), + [anon_sym_BSLASHcolor] = ACTIONS(12441), + [anon_sym_BSLASHcolorbox] = ACTIONS(12441), + [anon_sym_BSLASHtextcolor] = ACTIONS(12441), + [anon_sym_BSLASHpagecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12441), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12441), + }, + [1447] = { + [sym_generic_command_name] = ACTIONS(12445), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12445), + [aux_sym_paragraph_token1] = ACTIONS(12445), + [aux_sym_subparagraph_token1] = ACTIONS(12445), + [anon_sym_BSLASHitem] = ACTIONS(12445), + [anon_sym_LBRACK] = ACTIONS(12443), + [anon_sym_RBRACK] = ACTIONS(12443), + [anon_sym_LBRACE] = ACTIONS(12443), + [anon_sym_RBRACE] = ACTIONS(12443), + [anon_sym_LPAREN] = ACTIONS(12443), + [anon_sym_COMMA] = ACTIONS(12443), + [anon_sym_EQ] = ACTIONS(12443), + [sym_word] = ACTIONS(12443), + [sym_param] = ACTIONS(12443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12443), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12443), + [anon_sym_DOLLAR] = ACTIONS(12445), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12443), + [anon_sym_BSLASHbegin] = ACTIONS(12445), + [anon_sym_BSLASHcaption] = ACTIONS(12445), + [anon_sym_BSLASHcite] = ACTIONS(12445), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCite] = ACTIONS(12445), + [anon_sym_BSLASHnocite] = ACTIONS(12445), + [anon_sym_BSLASHcitet] = ACTIONS(12445), + [anon_sym_BSLASHcitep] = ACTIONS(12445), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteauthor] = ACTIONS(12445), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12445), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitetitle] = ACTIONS(12445), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteyear] = ACTIONS(12445), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitedate] = ACTIONS(12445), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteurl] = ACTIONS(12445), + [anon_sym_BSLASHfullcite] = ACTIONS(12445), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12445), + [anon_sym_BSLASHcitealt] = ACTIONS(12445), + [anon_sym_BSLASHcitealp] = ACTIONS(12445), + [anon_sym_BSLASHcitetext] = ACTIONS(12445), + [anon_sym_BSLASHparencite] = ACTIONS(12445), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHParencite] = ACTIONS(12445), + [anon_sym_BSLASHfootcite] = ACTIONS(12445), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12445), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12445), + [anon_sym_BSLASHtextcite] = ACTIONS(12445), + [anon_sym_BSLASHTextcite] = ACTIONS(12445), + [anon_sym_BSLASHsmartcite] = ACTIONS(12445), + [anon_sym_BSLASHSmartcite] = ACTIONS(12445), + [anon_sym_BSLASHsupercite] = ACTIONS(12445), + [anon_sym_BSLASHautocite] = ACTIONS(12445), + [anon_sym_BSLASHAutocite] = ACTIONS(12445), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHvolcite] = ACTIONS(12445), + [anon_sym_BSLASHVolcite] = ACTIONS(12445), + [anon_sym_BSLASHpvolcite] = ACTIONS(12445), + [anon_sym_BSLASHPvolcite] = ACTIONS(12445), + [anon_sym_BSLASHfvolcite] = ACTIONS(12445), + [anon_sym_BSLASHftvolcite] = ACTIONS(12445), + [anon_sym_BSLASHsvolcite] = ACTIONS(12445), + [anon_sym_BSLASHSvolcite] = ACTIONS(12445), + [anon_sym_BSLASHtvolcite] = ACTIONS(12445), + [anon_sym_BSLASHTvolcite] = ACTIONS(12445), + [anon_sym_BSLASHavolcite] = ACTIONS(12445), + [anon_sym_BSLASHAvolcite] = ACTIONS(12445), + [anon_sym_BSLASHnotecite] = ACTIONS(12445), + [anon_sym_BSLASHpnotecite] = ACTIONS(12445), + [anon_sym_BSLASHPnotecite] = ACTIONS(12445), + [anon_sym_BSLASHfnotecite] = ACTIONS(12445), + [anon_sym_BSLASHusepackage] = ACTIONS(12445), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12445), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12445), + [anon_sym_BSLASHinclude] = ACTIONS(12445), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12445), + [anon_sym_BSLASHinput] = ACTIONS(12445), + [anon_sym_BSLASHsubfile] = ACTIONS(12445), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12445), + [anon_sym_BSLASHbibliography] = ACTIONS(12445), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12445), + [anon_sym_BSLASHincludesvg] = ACTIONS(12445), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12445), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12445), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12445), + [anon_sym_BSLASHimport] = ACTIONS(12445), + [anon_sym_BSLASHsubimport] = ACTIONS(12445), + [anon_sym_BSLASHinputfrom] = ACTIONS(12445), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12445), + [anon_sym_BSLASHincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHlabel] = ACTIONS(12445), + [anon_sym_BSLASHref] = ACTIONS(12445), + [anon_sym_BSLASHvref] = ACTIONS(12445), + [anon_sym_BSLASHVref] = ACTIONS(12445), + [anon_sym_BSLASHautoref] = ACTIONS(12445), + [anon_sym_BSLASHpageref] = ACTIONS(12445), + [anon_sym_BSLASHcref] = ACTIONS(12445), + [anon_sym_BSLASHCref] = ACTIONS(12445), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnameCref] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHlabelcref] = ACTIONS(12445), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12445), + [anon_sym_BSLASHeqref] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange] = ACTIONS(12445), + [anon_sym_BSLASHCrefrange] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewlabel] = ACTIONS(12445), + [anon_sym_BSLASHnewcommand] = ACTIONS(12445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12445), + [anon_sym_BSLASHgls] = ACTIONS(12445), + [anon_sym_BSLASHGls] = ACTIONS(12445), + [anon_sym_BSLASHGLS] = ACTIONS(12445), + [anon_sym_BSLASHglspl] = ACTIONS(12445), + [anon_sym_BSLASHGlspl] = ACTIONS(12445), + [anon_sym_BSLASHGLSpl] = ACTIONS(12445), + [anon_sym_BSLASHglsdisp] = ACTIONS(12445), + [anon_sym_BSLASHglslink] = ACTIONS(12445), + [anon_sym_BSLASHglstext] = ACTIONS(12445), + [anon_sym_BSLASHGlstext] = ACTIONS(12445), + [anon_sym_BSLASHGLStext] = ACTIONS(12445), + [anon_sym_BSLASHglsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12445), + [anon_sym_BSLASHglsplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSplural] = ACTIONS(12445), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHglsname] = ACTIONS(12445), + [anon_sym_BSLASHGlsname] = ACTIONS(12445), + [anon_sym_BSLASHGLSname] = ACTIONS(12445), + [anon_sym_BSLASHglssymbol] = ACTIONS(12445), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12445), + [anon_sym_BSLASHglsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12445), + [anon_sym_BSLASHglsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12445), + [anon_sym_BSLASHglsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12445), + [anon_sym_BSLASHglsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12445), + [anon_sym_BSLASHglsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12445), + [anon_sym_BSLASHnewacronym] = ACTIONS(12445), + [anon_sym_BSLASHacrshort] = ACTIONS(12445), + [anon_sym_BSLASHAcrshort] = ACTIONS(12445), + [anon_sym_BSLASHACRshort] = ACTIONS(12445), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12445), + [anon_sym_BSLASHacrlong] = ACTIONS(12445), + [anon_sym_BSLASHAcrlong] = ACTIONS(12445), + [anon_sym_BSLASHACRlong] = ACTIONS(12445), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12445), + [anon_sym_BSLASHacrfull] = ACTIONS(12445), + [anon_sym_BSLASHAcrfull] = ACTIONS(12445), + [anon_sym_BSLASHACRfull] = ACTIONS(12445), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12445), + [anon_sym_BSLASHacs] = ACTIONS(12445), + [anon_sym_BSLASHAcs] = ACTIONS(12445), + [anon_sym_BSLASHacsp] = ACTIONS(12445), + [anon_sym_BSLASHAcsp] = ACTIONS(12445), + [anon_sym_BSLASHacl] = ACTIONS(12445), + [anon_sym_BSLASHAcl] = ACTIONS(12445), + [anon_sym_BSLASHaclp] = ACTIONS(12445), + [anon_sym_BSLASHAclp] = ACTIONS(12445), + [anon_sym_BSLASHacf] = ACTIONS(12445), + [anon_sym_BSLASHAcf] = ACTIONS(12445), + [anon_sym_BSLASHacfp] = ACTIONS(12445), + [anon_sym_BSLASHAcfp] = ACTIONS(12445), + [anon_sym_BSLASHac] = ACTIONS(12445), + [anon_sym_BSLASHAc] = ACTIONS(12445), + [anon_sym_BSLASHacp] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12445), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12445), + [anon_sym_BSLASHcolor] = ACTIONS(12445), + [anon_sym_BSLASHcolorbox] = ACTIONS(12445), + [anon_sym_BSLASHtextcolor] = ACTIONS(12445), + [anon_sym_BSLASHpagecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12445), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12445), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12445), + }, + [1448] = { + [sym_generic_command_name] = ACTIONS(12449), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12449), + [aux_sym_paragraph_token1] = ACTIONS(12449), + [aux_sym_subparagraph_token1] = ACTIONS(12449), + [anon_sym_BSLASHitem] = ACTIONS(12449), + [anon_sym_LBRACK] = ACTIONS(12447), + [anon_sym_RBRACK] = ACTIONS(12447), + [anon_sym_LBRACE] = ACTIONS(12447), + [anon_sym_RBRACE] = ACTIONS(12447), + [anon_sym_LPAREN] = ACTIONS(12447), + [anon_sym_COMMA] = ACTIONS(12447), + [anon_sym_EQ] = ACTIONS(12447), + [sym_word] = ACTIONS(12447), + [sym_param] = ACTIONS(12447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12447), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12447), + [anon_sym_DOLLAR] = ACTIONS(12449), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12447), + [anon_sym_BSLASHbegin] = ACTIONS(12449), + [anon_sym_BSLASHcaption] = ACTIONS(12449), + [anon_sym_BSLASHcite] = ACTIONS(12449), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCite] = ACTIONS(12449), + [anon_sym_BSLASHnocite] = ACTIONS(12449), + [anon_sym_BSLASHcitet] = ACTIONS(12449), + [anon_sym_BSLASHcitep] = ACTIONS(12449), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteauthor] = ACTIONS(12449), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12449), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitetitle] = ACTIONS(12449), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteyear] = ACTIONS(12449), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitedate] = ACTIONS(12449), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteurl] = ACTIONS(12449), + [anon_sym_BSLASHfullcite] = ACTIONS(12449), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12449), + [anon_sym_BSLASHcitealt] = ACTIONS(12449), + [anon_sym_BSLASHcitealp] = ACTIONS(12449), + [anon_sym_BSLASHcitetext] = ACTIONS(12449), + [anon_sym_BSLASHparencite] = ACTIONS(12449), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHParencite] = ACTIONS(12449), + [anon_sym_BSLASHfootcite] = ACTIONS(12449), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12449), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12449), + [anon_sym_BSLASHtextcite] = ACTIONS(12449), + [anon_sym_BSLASHTextcite] = ACTIONS(12449), + [anon_sym_BSLASHsmartcite] = ACTIONS(12449), + [anon_sym_BSLASHSmartcite] = ACTIONS(12449), + [anon_sym_BSLASHsupercite] = ACTIONS(12449), + [anon_sym_BSLASHautocite] = ACTIONS(12449), + [anon_sym_BSLASHAutocite] = ACTIONS(12449), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHvolcite] = ACTIONS(12449), + [anon_sym_BSLASHVolcite] = ACTIONS(12449), + [anon_sym_BSLASHpvolcite] = ACTIONS(12449), + [anon_sym_BSLASHPvolcite] = ACTIONS(12449), + [anon_sym_BSLASHfvolcite] = ACTIONS(12449), + [anon_sym_BSLASHftvolcite] = ACTIONS(12449), + [anon_sym_BSLASHsvolcite] = ACTIONS(12449), + [anon_sym_BSLASHSvolcite] = ACTIONS(12449), + [anon_sym_BSLASHtvolcite] = ACTIONS(12449), + [anon_sym_BSLASHTvolcite] = ACTIONS(12449), + [anon_sym_BSLASHavolcite] = ACTIONS(12449), + [anon_sym_BSLASHAvolcite] = ACTIONS(12449), + [anon_sym_BSLASHnotecite] = ACTIONS(12449), + [anon_sym_BSLASHpnotecite] = ACTIONS(12449), + [anon_sym_BSLASHPnotecite] = ACTIONS(12449), + [anon_sym_BSLASHfnotecite] = ACTIONS(12449), + [anon_sym_BSLASHusepackage] = ACTIONS(12449), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12449), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12449), + [anon_sym_BSLASHinclude] = ACTIONS(12449), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12449), + [anon_sym_BSLASHinput] = ACTIONS(12449), + [anon_sym_BSLASHsubfile] = ACTIONS(12449), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12449), + [anon_sym_BSLASHbibliography] = ACTIONS(12449), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12449), + [anon_sym_BSLASHincludesvg] = ACTIONS(12449), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12449), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12449), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12449), + [anon_sym_BSLASHimport] = ACTIONS(12449), + [anon_sym_BSLASHsubimport] = ACTIONS(12449), + [anon_sym_BSLASHinputfrom] = ACTIONS(12449), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12449), + [anon_sym_BSLASHincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHlabel] = ACTIONS(12449), + [anon_sym_BSLASHref] = ACTIONS(12449), + [anon_sym_BSLASHvref] = ACTIONS(12449), + [anon_sym_BSLASHVref] = ACTIONS(12449), + [anon_sym_BSLASHautoref] = ACTIONS(12449), + [anon_sym_BSLASHpageref] = ACTIONS(12449), + [anon_sym_BSLASHcref] = ACTIONS(12449), + [anon_sym_BSLASHCref] = ACTIONS(12449), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnameCref] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHlabelcref] = ACTIONS(12449), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12449), + [anon_sym_BSLASHeqref] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange] = ACTIONS(12449), + [anon_sym_BSLASHCrefrange] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewlabel] = ACTIONS(12449), + [anon_sym_BSLASHnewcommand] = ACTIONS(12449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12449), + [anon_sym_BSLASHgls] = ACTIONS(12449), + [anon_sym_BSLASHGls] = ACTIONS(12449), + [anon_sym_BSLASHGLS] = ACTIONS(12449), + [anon_sym_BSLASHglspl] = ACTIONS(12449), + [anon_sym_BSLASHGlspl] = ACTIONS(12449), + [anon_sym_BSLASHGLSpl] = ACTIONS(12449), + [anon_sym_BSLASHglsdisp] = ACTIONS(12449), + [anon_sym_BSLASHglslink] = ACTIONS(12449), + [anon_sym_BSLASHglstext] = ACTIONS(12449), + [anon_sym_BSLASHGlstext] = ACTIONS(12449), + [anon_sym_BSLASHGLStext] = ACTIONS(12449), + [anon_sym_BSLASHglsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12449), + [anon_sym_BSLASHglsplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSplural] = ACTIONS(12449), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHglsname] = ACTIONS(12449), + [anon_sym_BSLASHGlsname] = ACTIONS(12449), + [anon_sym_BSLASHGLSname] = ACTIONS(12449), + [anon_sym_BSLASHglssymbol] = ACTIONS(12449), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12449), + [anon_sym_BSLASHglsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12449), + [anon_sym_BSLASHglsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12449), + [anon_sym_BSLASHglsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12449), + [anon_sym_BSLASHglsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12449), + [anon_sym_BSLASHglsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12449), + [anon_sym_BSLASHnewacronym] = ACTIONS(12449), + [anon_sym_BSLASHacrshort] = ACTIONS(12449), + [anon_sym_BSLASHAcrshort] = ACTIONS(12449), + [anon_sym_BSLASHACRshort] = ACTIONS(12449), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12449), + [anon_sym_BSLASHacrlong] = ACTIONS(12449), + [anon_sym_BSLASHAcrlong] = ACTIONS(12449), + [anon_sym_BSLASHACRlong] = ACTIONS(12449), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12449), + [anon_sym_BSLASHacrfull] = ACTIONS(12449), + [anon_sym_BSLASHAcrfull] = ACTIONS(12449), + [anon_sym_BSLASHACRfull] = ACTIONS(12449), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12449), + [anon_sym_BSLASHacs] = ACTIONS(12449), + [anon_sym_BSLASHAcs] = ACTIONS(12449), + [anon_sym_BSLASHacsp] = ACTIONS(12449), + [anon_sym_BSLASHAcsp] = ACTIONS(12449), + [anon_sym_BSLASHacl] = ACTIONS(12449), + [anon_sym_BSLASHAcl] = ACTIONS(12449), + [anon_sym_BSLASHaclp] = ACTIONS(12449), + [anon_sym_BSLASHAclp] = ACTIONS(12449), + [anon_sym_BSLASHacf] = ACTIONS(12449), + [anon_sym_BSLASHAcf] = ACTIONS(12449), + [anon_sym_BSLASHacfp] = ACTIONS(12449), + [anon_sym_BSLASHAcfp] = ACTIONS(12449), + [anon_sym_BSLASHac] = ACTIONS(12449), + [anon_sym_BSLASHAc] = ACTIONS(12449), + [anon_sym_BSLASHacp] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12449), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12449), + [anon_sym_BSLASHcolor] = ACTIONS(12449), + [anon_sym_BSLASHcolorbox] = ACTIONS(12449), + [anon_sym_BSLASHtextcolor] = ACTIONS(12449), + [anon_sym_BSLASHpagecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12449), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12449), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12449), + }, + [1449] = { + [sym_generic_command_name] = ACTIONS(12453), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12453), + [aux_sym_paragraph_token1] = ACTIONS(12453), + [aux_sym_subparagraph_token1] = ACTIONS(12453), + [anon_sym_BSLASHitem] = ACTIONS(12453), + [anon_sym_LBRACK] = ACTIONS(12451), + [anon_sym_RBRACK] = ACTIONS(12451), + [anon_sym_LBRACE] = ACTIONS(12451), + [anon_sym_RBRACE] = ACTIONS(12451), + [anon_sym_LPAREN] = ACTIONS(12451), + [anon_sym_COMMA] = ACTIONS(12451), + [anon_sym_EQ] = ACTIONS(12451), + [sym_word] = ACTIONS(12451), + [sym_param] = ACTIONS(12451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12451), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12451), + [anon_sym_DOLLAR] = ACTIONS(12453), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12451), + [anon_sym_BSLASHbegin] = ACTIONS(12453), + [anon_sym_BSLASHcaption] = ACTIONS(12453), + [anon_sym_BSLASHcite] = ACTIONS(12453), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCite] = ACTIONS(12453), + [anon_sym_BSLASHnocite] = ACTIONS(12453), + [anon_sym_BSLASHcitet] = ACTIONS(12453), + [anon_sym_BSLASHcitep] = ACTIONS(12453), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteauthor] = ACTIONS(12453), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12453), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitetitle] = ACTIONS(12453), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteyear] = ACTIONS(12453), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitedate] = ACTIONS(12453), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteurl] = ACTIONS(12453), + [anon_sym_BSLASHfullcite] = ACTIONS(12453), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12453), + [anon_sym_BSLASHcitealt] = ACTIONS(12453), + [anon_sym_BSLASHcitealp] = ACTIONS(12453), + [anon_sym_BSLASHcitetext] = ACTIONS(12453), + [anon_sym_BSLASHparencite] = ACTIONS(12453), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHParencite] = ACTIONS(12453), + [anon_sym_BSLASHfootcite] = ACTIONS(12453), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12453), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12453), + [anon_sym_BSLASHtextcite] = ACTIONS(12453), + [anon_sym_BSLASHTextcite] = ACTIONS(12453), + [anon_sym_BSLASHsmartcite] = ACTIONS(12453), + [anon_sym_BSLASHSmartcite] = ACTIONS(12453), + [anon_sym_BSLASHsupercite] = ACTIONS(12453), + [anon_sym_BSLASHautocite] = ACTIONS(12453), + [anon_sym_BSLASHAutocite] = ACTIONS(12453), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHvolcite] = ACTIONS(12453), + [anon_sym_BSLASHVolcite] = ACTIONS(12453), + [anon_sym_BSLASHpvolcite] = ACTIONS(12453), + [anon_sym_BSLASHPvolcite] = ACTIONS(12453), + [anon_sym_BSLASHfvolcite] = ACTIONS(12453), + [anon_sym_BSLASHftvolcite] = ACTIONS(12453), + [anon_sym_BSLASHsvolcite] = ACTIONS(12453), + [anon_sym_BSLASHSvolcite] = ACTIONS(12453), + [anon_sym_BSLASHtvolcite] = ACTIONS(12453), + [anon_sym_BSLASHTvolcite] = ACTIONS(12453), + [anon_sym_BSLASHavolcite] = ACTIONS(12453), + [anon_sym_BSLASHAvolcite] = ACTIONS(12453), + [anon_sym_BSLASHnotecite] = ACTIONS(12453), + [anon_sym_BSLASHpnotecite] = ACTIONS(12453), + [anon_sym_BSLASHPnotecite] = ACTIONS(12453), + [anon_sym_BSLASHfnotecite] = ACTIONS(12453), + [anon_sym_BSLASHusepackage] = ACTIONS(12453), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12453), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12453), + [anon_sym_BSLASHinclude] = ACTIONS(12453), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12453), + [anon_sym_BSLASHinput] = ACTIONS(12453), + [anon_sym_BSLASHsubfile] = ACTIONS(12453), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12453), + [anon_sym_BSLASHbibliography] = ACTIONS(12453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12453), + [anon_sym_BSLASHincludesvg] = ACTIONS(12453), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12453), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12453), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12453), + [anon_sym_BSLASHimport] = ACTIONS(12453), + [anon_sym_BSLASHsubimport] = ACTIONS(12453), + [anon_sym_BSLASHinputfrom] = ACTIONS(12453), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12453), + [anon_sym_BSLASHincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHlabel] = ACTIONS(12453), + [anon_sym_BSLASHref] = ACTIONS(12453), + [anon_sym_BSLASHvref] = ACTIONS(12453), + [anon_sym_BSLASHVref] = ACTIONS(12453), + [anon_sym_BSLASHautoref] = ACTIONS(12453), + [anon_sym_BSLASHpageref] = ACTIONS(12453), + [anon_sym_BSLASHcref] = ACTIONS(12453), + [anon_sym_BSLASHCref] = ACTIONS(12453), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnameCref] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHlabelcref] = ACTIONS(12453), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12453), + [anon_sym_BSLASHeqref] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange] = ACTIONS(12453), + [anon_sym_BSLASHCrefrange] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewlabel] = ACTIONS(12453), + [anon_sym_BSLASHnewcommand] = ACTIONS(12453), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12453), + [anon_sym_BSLASHgls] = ACTIONS(12453), + [anon_sym_BSLASHGls] = ACTIONS(12453), + [anon_sym_BSLASHGLS] = ACTIONS(12453), + [anon_sym_BSLASHglspl] = ACTIONS(12453), + [anon_sym_BSLASHGlspl] = ACTIONS(12453), + [anon_sym_BSLASHGLSpl] = ACTIONS(12453), + [anon_sym_BSLASHglsdisp] = ACTIONS(12453), + [anon_sym_BSLASHglslink] = ACTIONS(12453), + [anon_sym_BSLASHglstext] = ACTIONS(12453), + [anon_sym_BSLASHGlstext] = ACTIONS(12453), + [anon_sym_BSLASHGLStext] = ACTIONS(12453), + [anon_sym_BSLASHglsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12453), + [anon_sym_BSLASHglsplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSplural] = ACTIONS(12453), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHglsname] = ACTIONS(12453), + [anon_sym_BSLASHGlsname] = ACTIONS(12453), + [anon_sym_BSLASHGLSname] = ACTIONS(12453), + [anon_sym_BSLASHglssymbol] = ACTIONS(12453), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12453), + [anon_sym_BSLASHglsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12453), + [anon_sym_BSLASHglsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12453), + [anon_sym_BSLASHglsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12453), + [anon_sym_BSLASHglsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12453), + [anon_sym_BSLASHglsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12453), + [anon_sym_BSLASHnewacronym] = ACTIONS(12453), + [anon_sym_BSLASHacrshort] = ACTIONS(12453), + [anon_sym_BSLASHAcrshort] = ACTIONS(12453), + [anon_sym_BSLASHACRshort] = ACTIONS(12453), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12453), + [anon_sym_BSLASHacrlong] = ACTIONS(12453), + [anon_sym_BSLASHAcrlong] = ACTIONS(12453), + [anon_sym_BSLASHACRlong] = ACTIONS(12453), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12453), + [anon_sym_BSLASHacrfull] = ACTIONS(12453), + [anon_sym_BSLASHAcrfull] = ACTIONS(12453), + [anon_sym_BSLASHACRfull] = ACTIONS(12453), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12453), + [anon_sym_BSLASHacs] = ACTIONS(12453), + [anon_sym_BSLASHAcs] = ACTIONS(12453), + [anon_sym_BSLASHacsp] = ACTIONS(12453), + [anon_sym_BSLASHAcsp] = ACTIONS(12453), + [anon_sym_BSLASHacl] = ACTIONS(12453), + [anon_sym_BSLASHAcl] = ACTIONS(12453), + [anon_sym_BSLASHaclp] = ACTIONS(12453), + [anon_sym_BSLASHAclp] = ACTIONS(12453), + [anon_sym_BSLASHacf] = ACTIONS(12453), + [anon_sym_BSLASHAcf] = ACTIONS(12453), + [anon_sym_BSLASHacfp] = ACTIONS(12453), + [anon_sym_BSLASHAcfp] = ACTIONS(12453), + [anon_sym_BSLASHac] = ACTIONS(12453), + [anon_sym_BSLASHAc] = ACTIONS(12453), + [anon_sym_BSLASHacp] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12453), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12453), + [anon_sym_BSLASHcolor] = ACTIONS(12453), + [anon_sym_BSLASHcolorbox] = ACTIONS(12453), + [anon_sym_BSLASHtextcolor] = ACTIONS(12453), + [anon_sym_BSLASHpagecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12453), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12453), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12453), + }, + [1450] = { + [sym_generic_command_name] = ACTIONS(12461), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12461), + [aux_sym_paragraph_token1] = ACTIONS(12461), + [aux_sym_subparagraph_token1] = ACTIONS(12461), + [anon_sym_BSLASHitem] = ACTIONS(12461), + [anon_sym_LBRACK] = ACTIONS(12459), + [anon_sym_RBRACK] = ACTIONS(12459), + [anon_sym_LBRACE] = ACTIONS(12459), + [anon_sym_RBRACE] = ACTIONS(12459), + [anon_sym_LPAREN] = ACTIONS(12459), + [anon_sym_COMMA] = ACTIONS(12459), + [anon_sym_EQ] = ACTIONS(12459), + [sym_word] = ACTIONS(12459), + [sym_param] = ACTIONS(12459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12459), + [anon_sym_DOLLAR] = ACTIONS(12461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12459), + [anon_sym_BSLASHbegin] = ACTIONS(12461), + [anon_sym_BSLASHcaption] = ACTIONS(12461), + [anon_sym_BSLASHcite] = ACTIONS(12461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCite] = ACTIONS(12461), + [anon_sym_BSLASHnocite] = ACTIONS(12461), + [anon_sym_BSLASHcitet] = ACTIONS(12461), + [anon_sym_BSLASHcitep] = ACTIONS(12461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteauthor] = ACTIONS(12461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitetitle] = ACTIONS(12461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteyear] = ACTIONS(12461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitedate] = ACTIONS(12461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteurl] = ACTIONS(12461), + [anon_sym_BSLASHfullcite] = ACTIONS(12461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12461), + [anon_sym_BSLASHcitealt] = ACTIONS(12461), + [anon_sym_BSLASHcitealp] = ACTIONS(12461), + [anon_sym_BSLASHcitetext] = ACTIONS(12461), + [anon_sym_BSLASHparencite] = ACTIONS(12461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHParencite] = ACTIONS(12461), + [anon_sym_BSLASHfootcite] = ACTIONS(12461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12461), + [anon_sym_BSLASHtextcite] = ACTIONS(12461), + [anon_sym_BSLASHTextcite] = ACTIONS(12461), + [anon_sym_BSLASHsmartcite] = ACTIONS(12461), + [anon_sym_BSLASHSmartcite] = ACTIONS(12461), + [anon_sym_BSLASHsupercite] = ACTIONS(12461), + [anon_sym_BSLASHautocite] = ACTIONS(12461), + [anon_sym_BSLASHAutocite] = ACTIONS(12461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHvolcite] = ACTIONS(12461), + [anon_sym_BSLASHVolcite] = ACTIONS(12461), + [anon_sym_BSLASHpvolcite] = ACTIONS(12461), + [anon_sym_BSLASHPvolcite] = ACTIONS(12461), + [anon_sym_BSLASHfvolcite] = ACTIONS(12461), + [anon_sym_BSLASHftvolcite] = ACTIONS(12461), + [anon_sym_BSLASHsvolcite] = ACTIONS(12461), + [anon_sym_BSLASHSvolcite] = ACTIONS(12461), + [anon_sym_BSLASHtvolcite] = ACTIONS(12461), + [anon_sym_BSLASHTvolcite] = ACTIONS(12461), + [anon_sym_BSLASHavolcite] = ACTIONS(12461), + [anon_sym_BSLASHAvolcite] = ACTIONS(12461), + [anon_sym_BSLASHnotecite] = ACTIONS(12461), + [anon_sym_BSLASHpnotecite] = ACTIONS(12461), + [anon_sym_BSLASHPnotecite] = ACTIONS(12461), + [anon_sym_BSLASHfnotecite] = ACTIONS(12461), + [anon_sym_BSLASHusepackage] = ACTIONS(12461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12461), + [anon_sym_BSLASHinclude] = ACTIONS(12461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12461), + [anon_sym_BSLASHinput] = ACTIONS(12461), + [anon_sym_BSLASHsubfile] = ACTIONS(12461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12461), + [anon_sym_BSLASHbibliography] = ACTIONS(12461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12461), + [anon_sym_BSLASHincludesvg] = ACTIONS(12461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12461), + [anon_sym_BSLASHimport] = ACTIONS(12461), + [anon_sym_BSLASHsubimport] = ACTIONS(12461), + [anon_sym_BSLASHinputfrom] = ACTIONS(12461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12461), + [anon_sym_BSLASHincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHlabel] = ACTIONS(12461), + [anon_sym_BSLASHref] = ACTIONS(12461), + [anon_sym_BSLASHvref] = ACTIONS(12461), + [anon_sym_BSLASHVref] = ACTIONS(12461), + [anon_sym_BSLASHautoref] = ACTIONS(12461), + [anon_sym_BSLASHpageref] = ACTIONS(12461), + [anon_sym_BSLASHcref] = ACTIONS(12461), + [anon_sym_BSLASHCref] = ACTIONS(12461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnameCref] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHlabelcref] = ACTIONS(12461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12461), + [anon_sym_BSLASHeqref] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange] = ACTIONS(12461), + [anon_sym_BSLASHCrefrange] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewlabel] = ACTIONS(12461), + [anon_sym_BSLASHnewcommand] = ACTIONS(12461), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12461), + [anon_sym_BSLASHgls] = ACTIONS(12461), + [anon_sym_BSLASHGls] = ACTIONS(12461), + [anon_sym_BSLASHGLS] = ACTIONS(12461), + [anon_sym_BSLASHglspl] = ACTIONS(12461), + [anon_sym_BSLASHGlspl] = ACTIONS(12461), + [anon_sym_BSLASHGLSpl] = ACTIONS(12461), + [anon_sym_BSLASHglsdisp] = ACTIONS(12461), + [anon_sym_BSLASHglslink] = ACTIONS(12461), + [anon_sym_BSLASHglstext] = ACTIONS(12461), + [anon_sym_BSLASHGlstext] = ACTIONS(12461), + [anon_sym_BSLASHGLStext] = ACTIONS(12461), + [anon_sym_BSLASHglsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12461), + [anon_sym_BSLASHglsplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSplural] = ACTIONS(12461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHglsname] = ACTIONS(12461), + [anon_sym_BSLASHGlsname] = ACTIONS(12461), + [anon_sym_BSLASHGLSname] = ACTIONS(12461), + [anon_sym_BSLASHglssymbol] = ACTIONS(12461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12461), + [anon_sym_BSLASHglsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12461), + [anon_sym_BSLASHglsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12461), + [anon_sym_BSLASHglsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12461), + [anon_sym_BSLASHglsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12461), + [anon_sym_BSLASHglsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12461), + [anon_sym_BSLASHnewacronym] = ACTIONS(12461), + [anon_sym_BSLASHacrshort] = ACTIONS(12461), + [anon_sym_BSLASHAcrshort] = ACTIONS(12461), + [anon_sym_BSLASHACRshort] = ACTIONS(12461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12461), + [anon_sym_BSLASHacrlong] = ACTIONS(12461), + [anon_sym_BSLASHAcrlong] = ACTIONS(12461), + [anon_sym_BSLASHACRlong] = ACTIONS(12461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12461), + [anon_sym_BSLASHacrfull] = ACTIONS(12461), + [anon_sym_BSLASHAcrfull] = ACTIONS(12461), + [anon_sym_BSLASHACRfull] = ACTIONS(12461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12461), + [anon_sym_BSLASHacs] = ACTIONS(12461), + [anon_sym_BSLASHAcs] = ACTIONS(12461), + [anon_sym_BSLASHacsp] = ACTIONS(12461), + [anon_sym_BSLASHAcsp] = ACTIONS(12461), + [anon_sym_BSLASHacl] = ACTIONS(12461), + [anon_sym_BSLASHAcl] = ACTIONS(12461), + [anon_sym_BSLASHaclp] = ACTIONS(12461), + [anon_sym_BSLASHAclp] = ACTIONS(12461), + [anon_sym_BSLASHacf] = ACTIONS(12461), + [anon_sym_BSLASHAcf] = ACTIONS(12461), + [anon_sym_BSLASHacfp] = ACTIONS(12461), + [anon_sym_BSLASHAcfp] = ACTIONS(12461), + [anon_sym_BSLASHac] = ACTIONS(12461), + [anon_sym_BSLASHAc] = ACTIONS(12461), + [anon_sym_BSLASHacp] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12461), + [anon_sym_BSLASHcolor] = ACTIONS(12461), + [anon_sym_BSLASHcolorbox] = ACTIONS(12461), + [anon_sym_BSLASHtextcolor] = ACTIONS(12461), + [anon_sym_BSLASHpagecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12461), + }, + [1451] = { + [sym_generic_command_name] = ACTIONS(12465), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12465), + [aux_sym_paragraph_token1] = ACTIONS(12465), + [aux_sym_subparagraph_token1] = ACTIONS(12465), + [anon_sym_BSLASHitem] = ACTIONS(12465), + [anon_sym_LBRACK] = ACTIONS(12463), + [anon_sym_RBRACK] = ACTIONS(12463), + [anon_sym_LBRACE] = ACTIONS(12463), + [anon_sym_RBRACE] = ACTIONS(12463), + [anon_sym_LPAREN] = ACTIONS(12463), + [anon_sym_COMMA] = ACTIONS(12463), + [anon_sym_EQ] = ACTIONS(12463), + [sym_word] = ACTIONS(12463), + [sym_param] = ACTIONS(12463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12463), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12463), + [anon_sym_DOLLAR] = ACTIONS(12465), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12463), + [anon_sym_BSLASHbegin] = ACTIONS(12465), + [anon_sym_BSLASHcaption] = ACTIONS(12465), + [anon_sym_BSLASHcite] = ACTIONS(12465), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCite] = ACTIONS(12465), + [anon_sym_BSLASHnocite] = ACTIONS(12465), + [anon_sym_BSLASHcitet] = ACTIONS(12465), + [anon_sym_BSLASHcitep] = ACTIONS(12465), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteauthor] = ACTIONS(12465), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12465), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitetitle] = ACTIONS(12465), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteyear] = ACTIONS(12465), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitedate] = ACTIONS(12465), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteurl] = ACTIONS(12465), + [anon_sym_BSLASHfullcite] = ACTIONS(12465), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12465), + [anon_sym_BSLASHcitealt] = ACTIONS(12465), + [anon_sym_BSLASHcitealp] = ACTIONS(12465), + [anon_sym_BSLASHcitetext] = ACTIONS(12465), + [anon_sym_BSLASHparencite] = ACTIONS(12465), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHParencite] = ACTIONS(12465), + [anon_sym_BSLASHfootcite] = ACTIONS(12465), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12465), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12465), + [anon_sym_BSLASHtextcite] = ACTIONS(12465), + [anon_sym_BSLASHTextcite] = ACTIONS(12465), + [anon_sym_BSLASHsmartcite] = ACTIONS(12465), + [anon_sym_BSLASHSmartcite] = ACTIONS(12465), + [anon_sym_BSLASHsupercite] = ACTIONS(12465), + [anon_sym_BSLASHautocite] = ACTIONS(12465), + [anon_sym_BSLASHAutocite] = ACTIONS(12465), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHvolcite] = ACTIONS(12465), + [anon_sym_BSLASHVolcite] = ACTIONS(12465), + [anon_sym_BSLASHpvolcite] = ACTIONS(12465), + [anon_sym_BSLASHPvolcite] = ACTIONS(12465), + [anon_sym_BSLASHfvolcite] = ACTIONS(12465), + [anon_sym_BSLASHftvolcite] = ACTIONS(12465), + [anon_sym_BSLASHsvolcite] = ACTIONS(12465), + [anon_sym_BSLASHSvolcite] = ACTIONS(12465), + [anon_sym_BSLASHtvolcite] = ACTIONS(12465), + [anon_sym_BSLASHTvolcite] = ACTIONS(12465), + [anon_sym_BSLASHavolcite] = ACTIONS(12465), + [anon_sym_BSLASHAvolcite] = ACTIONS(12465), + [anon_sym_BSLASHnotecite] = ACTIONS(12465), + [anon_sym_BSLASHpnotecite] = ACTIONS(12465), + [anon_sym_BSLASHPnotecite] = ACTIONS(12465), + [anon_sym_BSLASHfnotecite] = ACTIONS(12465), + [anon_sym_BSLASHusepackage] = ACTIONS(12465), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12465), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12465), + [anon_sym_BSLASHinclude] = ACTIONS(12465), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12465), + [anon_sym_BSLASHinput] = ACTIONS(12465), + [anon_sym_BSLASHsubfile] = ACTIONS(12465), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12465), + [anon_sym_BSLASHbibliography] = ACTIONS(12465), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12465), + [anon_sym_BSLASHincludesvg] = ACTIONS(12465), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12465), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12465), + [anon_sym_BSLASHimport] = ACTIONS(12465), + [anon_sym_BSLASHsubimport] = ACTIONS(12465), + [anon_sym_BSLASHinputfrom] = ACTIONS(12465), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12465), + [anon_sym_BSLASHincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHlabel] = ACTIONS(12465), + [anon_sym_BSLASHref] = ACTIONS(12465), + [anon_sym_BSLASHvref] = ACTIONS(12465), + [anon_sym_BSLASHVref] = ACTIONS(12465), + [anon_sym_BSLASHautoref] = ACTIONS(12465), + [anon_sym_BSLASHpageref] = ACTIONS(12465), + [anon_sym_BSLASHcref] = ACTIONS(12465), + [anon_sym_BSLASHCref] = ACTIONS(12465), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnameCref] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHlabelcref] = ACTIONS(12465), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12465), + [anon_sym_BSLASHeqref] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange] = ACTIONS(12465), + [anon_sym_BSLASHCrefrange] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewlabel] = ACTIONS(12465), + [anon_sym_BSLASHnewcommand] = ACTIONS(12465), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12465), + [anon_sym_BSLASHgls] = ACTIONS(12465), + [anon_sym_BSLASHGls] = ACTIONS(12465), + [anon_sym_BSLASHGLS] = ACTIONS(12465), + [anon_sym_BSLASHglspl] = ACTIONS(12465), + [anon_sym_BSLASHGlspl] = ACTIONS(12465), + [anon_sym_BSLASHGLSpl] = ACTIONS(12465), + [anon_sym_BSLASHglsdisp] = ACTIONS(12465), + [anon_sym_BSLASHglslink] = ACTIONS(12465), + [anon_sym_BSLASHglstext] = ACTIONS(12465), + [anon_sym_BSLASHGlstext] = ACTIONS(12465), + [anon_sym_BSLASHGLStext] = ACTIONS(12465), + [anon_sym_BSLASHglsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12465), + [anon_sym_BSLASHglsplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSplural] = ACTIONS(12465), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHglsname] = ACTIONS(12465), + [anon_sym_BSLASHGlsname] = ACTIONS(12465), + [anon_sym_BSLASHGLSname] = ACTIONS(12465), + [anon_sym_BSLASHglssymbol] = ACTIONS(12465), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12465), + [anon_sym_BSLASHglsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12465), + [anon_sym_BSLASHglsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12465), + [anon_sym_BSLASHglsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12465), + [anon_sym_BSLASHglsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12465), + [anon_sym_BSLASHglsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12465), + [anon_sym_BSLASHnewacronym] = ACTIONS(12465), + [anon_sym_BSLASHacrshort] = ACTIONS(12465), + [anon_sym_BSLASHAcrshort] = ACTIONS(12465), + [anon_sym_BSLASHACRshort] = ACTIONS(12465), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12465), + [anon_sym_BSLASHacrlong] = ACTIONS(12465), + [anon_sym_BSLASHAcrlong] = ACTIONS(12465), + [anon_sym_BSLASHACRlong] = ACTIONS(12465), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12465), + [anon_sym_BSLASHacrfull] = ACTIONS(12465), + [anon_sym_BSLASHAcrfull] = ACTIONS(12465), + [anon_sym_BSLASHACRfull] = ACTIONS(12465), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12465), + [anon_sym_BSLASHacs] = ACTIONS(12465), + [anon_sym_BSLASHAcs] = ACTIONS(12465), + [anon_sym_BSLASHacsp] = ACTIONS(12465), + [anon_sym_BSLASHAcsp] = ACTIONS(12465), + [anon_sym_BSLASHacl] = ACTIONS(12465), + [anon_sym_BSLASHAcl] = ACTIONS(12465), + [anon_sym_BSLASHaclp] = ACTIONS(12465), + [anon_sym_BSLASHAclp] = ACTIONS(12465), + [anon_sym_BSLASHacf] = ACTIONS(12465), + [anon_sym_BSLASHAcf] = ACTIONS(12465), + [anon_sym_BSLASHacfp] = ACTIONS(12465), + [anon_sym_BSLASHAcfp] = ACTIONS(12465), + [anon_sym_BSLASHac] = ACTIONS(12465), + [anon_sym_BSLASHAc] = ACTIONS(12465), + [anon_sym_BSLASHacp] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12465), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12465), + [anon_sym_BSLASHcolor] = ACTIONS(12465), + [anon_sym_BSLASHcolorbox] = ACTIONS(12465), + [anon_sym_BSLASHtextcolor] = ACTIONS(12465), + [anon_sym_BSLASHpagecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12465), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12465), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12465), + }, + [1452] = { + [sym_generic_command_name] = ACTIONS(12469), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12469), + [aux_sym_paragraph_token1] = ACTIONS(12469), + [aux_sym_subparagraph_token1] = ACTIONS(12469), + [anon_sym_BSLASHitem] = ACTIONS(12469), + [anon_sym_LBRACK] = ACTIONS(12467), + [anon_sym_RBRACK] = ACTIONS(12467), + [anon_sym_LBRACE] = ACTIONS(12467), + [anon_sym_RBRACE] = ACTIONS(12467), + [anon_sym_LPAREN] = ACTIONS(12467), + [anon_sym_COMMA] = ACTIONS(12467), + [anon_sym_EQ] = ACTIONS(12467), + [sym_word] = ACTIONS(12467), + [sym_param] = ACTIONS(12467), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12467), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12467), + [anon_sym_DOLLAR] = ACTIONS(12469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12467), + [anon_sym_BSLASHbegin] = ACTIONS(12469), + [anon_sym_BSLASHcaption] = ACTIONS(12469), + [anon_sym_BSLASHcite] = ACTIONS(12469), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCite] = ACTIONS(12469), + [anon_sym_BSLASHnocite] = ACTIONS(12469), + [anon_sym_BSLASHcitet] = ACTIONS(12469), + [anon_sym_BSLASHcitep] = ACTIONS(12469), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteauthor] = ACTIONS(12469), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12469), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitetitle] = ACTIONS(12469), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteyear] = ACTIONS(12469), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitedate] = ACTIONS(12469), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteurl] = ACTIONS(12469), + [anon_sym_BSLASHfullcite] = ACTIONS(12469), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12469), + [anon_sym_BSLASHcitealt] = ACTIONS(12469), + [anon_sym_BSLASHcitealp] = ACTIONS(12469), + [anon_sym_BSLASHcitetext] = ACTIONS(12469), + [anon_sym_BSLASHparencite] = ACTIONS(12469), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHParencite] = ACTIONS(12469), + [anon_sym_BSLASHfootcite] = ACTIONS(12469), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12469), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12469), + [anon_sym_BSLASHtextcite] = ACTIONS(12469), + [anon_sym_BSLASHTextcite] = ACTIONS(12469), + [anon_sym_BSLASHsmartcite] = ACTIONS(12469), + [anon_sym_BSLASHSmartcite] = ACTIONS(12469), + [anon_sym_BSLASHsupercite] = ACTIONS(12469), + [anon_sym_BSLASHautocite] = ACTIONS(12469), + [anon_sym_BSLASHAutocite] = ACTIONS(12469), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHvolcite] = ACTIONS(12469), + [anon_sym_BSLASHVolcite] = ACTIONS(12469), + [anon_sym_BSLASHpvolcite] = ACTIONS(12469), + [anon_sym_BSLASHPvolcite] = ACTIONS(12469), + [anon_sym_BSLASHfvolcite] = ACTIONS(12469), + [anon_sym_BSLASHftvolcite] = ACTIONS(12469), + [anon_sym_BSLASHsvolcite] = ACTIONS(12469), + [anon_sym_BSLASHSvolcite] = ACTIONS(12469), + [anon_sym_BSLASHtvolcite] = ACTIONS(12469), + [anon_sym_BSLASHTvolcite] = ACTIONS(12469), + [anon_sym_BSLASHavolcite] = ACTIONS(12469), + [anon_sym_BSLASHAvolcite] = ACTIONS(12469), + [anon_sym_BSLASHnotecite] = ACTIONS(12469), + [anon_sym_BSLASHpnotecite] = ACTIONS(12469), + [anon_sym_BSLASHPnotecite] = ACTIONS(12469), + [anon_sym_BSLASHfnotecite] = ACTIONS(12469), + [anon_sym_BSLASHusepackage] = ACTIONS(12469), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12469), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12469), + [anon_sym_BSLASHinclude] = ACTIONS(12469), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12469), + [anon_sym_BSLASHinput] = ACTIONS(12469), + [anon_sym_BSLASHsubfile] = ACTIONS(12469), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12469), + [anon_sym_BSLASHbibliography] = ACTIONS(12469), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12469), + [anon_sym_BSLASHincludesvg] = ACTIONS(12469), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12469), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12469), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12469), + [anon_sym_BSLASHimport] = ACTIONS(12469), + [anon_sym_BSLASHsubimport] = ACTIONS(12469), + [anon_sym_BSLASHinputfrom] = ACTIONS(12469), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12469), + [anon_sym_BSLASHincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHlabel] = ACTIONS(12469), + [anon_sym_BSLASHref] = ACTIONS(12469), + [anon_sym_BSLASHvref] = ACTIONS(12469), + [anon_sym_BSLASHVref] = ACTIONS(12469), + [anon_sym_BSLASHautoref] = ACTIONS(12469), + [anon_sym_BSLASHpageref] = ACTIONS(12469), + [anon_sym_BSLASHcref] = ACTIONS(12469), + [anon_sym_BSLASHCref] = ACTIONS(12469), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnameCref] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHlabelcref] = ACTIONS(12469), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12469), + [anon_sym_BSLASHeqref] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange] = ACTIONS(12469), + [anon_sym_BSLASHCrefrange] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewlabel] = ACTIONS(12469), + [anon_sym_BSLASHnewcommand] = ACTIONS(12469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12469), + [anon_sym_BSLASHgls] = ACTIONS(12469), + [anon_sym_BSLASHGls] = ACTIONS(12469), + [anon_sym_BSLASHGLS] = ACTIONS(12469), + [anon_sym_BSLASHglspl] = ACTIONS(12469), + [anon_sym_BSLASHGlspl] = ACTIONS(12469), + [anon_sym_BSLASHGLSpl] = ACTIONS(12469), + [anon_sym_BSLASHglsdisp] = ACTIONS(12469), + [anon_sym_BSLASHglslink] = ACTIONS(12469), + [anon_sym_BSLASHglstext] = ACTIONS(12469), + [anon_sym_BSLASHGlstext] = ACTIONS(12469), + [anon_sym_BSLASHGLStext] = ACTIONS(12469), + [anon_sym_BSLASHglsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12469), + [anon_sym_BSLASHglsplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSplural] = ACTIONS(12469), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHglsname] = ACTIONS(12469), + [anon_sym_BSLASHGlsname] = ACTIONS(12469), + [anon_sym_BSLASHGLSname] = ACTIONS(12469), + [anon_sym_BSLASHglssymbol] = ACTIONS(12469), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12469), + [anon_sym_BSLASHglsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12469), + [anon_sym_BSLASHglsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12469), + [anon_sym_BSLASHglsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12469), + [anon_sym_BSLASHglsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12469), + [anon_sym_BSLASHglsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12469), + [anon_sym_BSLASHnewacronym] = ACTIONS(12469), + [anon_sym_BSLASHacrshort] = ACTIONS(12469), + [anon_sym_BSLASHAcrshort] = ACTIONS(12469), + [anon_sym_BSLASHACRshort] = ACTIONS(12469), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12469), + [anon_sym_BSLASHacrlong] = ACTIONS(12469), + [anon_sym_BSLASHAcrlong] = ACTIONS(12469), + [anon_sym_BSLASHACRlong] = ACTIONS(12469), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12469), + [anon_sym_BSLASHacrfull] = ACTIONS(12469), + [anon_sym_BSLASHAcrfull] = ACTIONS(12469), + [anon_sym_BSLASHACRfull] = ACTIONS(12469), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12469), + [anon_sym_BSLASHacs] = ACTIONS(12469), + [anon_sym_BSLASHAcs] = ACTIONS(12469), + [anon_sym_BSLASHacsp] = ACTIONS(12469), + [anon_sym_BSLASHAcsp] = ACTIONS(12469), + [anon_sym_BSLASHacl] = ACTIONS(12469), + [anon_sym_BSLASHAcl] = ACTIONS(12469), + [anon_sym_BSLASHaclp] = ACTIONS(12469), + [anon_sym_BSLASHAclp] = ACTIONS(12469), + [anon_sym_BSLASHacf] = ACTIONS(12469), + [anon_sym_BSLASHAcf] = ACTIONS(12469), + [anon_sym_BSLASHacfp] = ACTIONS(12469), + [anon_sym_BSLASHAcfp] = ACTIONS(12469), + [anon_sym_BSLASHac] = ACTIONS(12469), + [anon_sym_BSLASHAc] = ACTIONS(12469), + [anon_sym_BSLASHacp] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12469), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12469), + [anon_sym_BSLASHcolor] = ACTIONS(12469), + [anon_sym_BSLASHcolorbox] = ACTIONS(12469), + [anon_sym_BSLASHtextcolor] = ACTIONS(12469), + [anon_sym_BSLASHpagecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12469), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12469), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12469), + }, + [1453] = { + [sym_generic_command_name] = ACTIONS(12477), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12477), + [aux_sym_paragraph_token1] = ACTIONS(12477), + [aux_sym_subparagraph_token1] = ACTIONS(12477), + [anon_sym_BSLASHitem] = ACTIONS(12477), + [anon_sym_LBRACK] = ACTIONS(12475), + [anon_sym_RBRACK] = ACTIONS(12475), + [anon_sym_LBRACE] = ACTIONS(12475), + [anon_sym_RBRACE] = ACTIONS(12475), + [anon_sym_LPAREN] = ACTIONS(12475), + [anon_sym_COMMA] = ACTIONS(12475), + [anon_sym_EQ] = ACTIONS(12475), + [sym_word] = ACTIONS(12475), + [sym_param] = ACTIONS(12475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12475), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12475), + [anon_sym_DOLLAR] = ACTIONS(12477), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12475), + [anon_sym_BSLASHbegin] = ACTIONS(12477), + [anon_sym_BSLASHcaption] = ACTIONS(12477), + [anon_sym_BSLASHcite] = ACTIONS(12477), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCite] = ACTIONS(12477), + [anon_sym_BSLASHnocite] = ACTIONS(12477), + [anon_sym_BSLASHcitet] = ACTIONS(12477), + [anon_sym_BSLASHcitep] = ACTIONS(12477), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteauthor] = ACTIONS(12477), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12477), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitetitle] = ACTIONS(12477), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteyear] = ACTIONS(12477), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitedate] = ACTIONS(12477), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteurl] = ACTIONS(12477), + [anon_sym_BSLASHfullcite] = ACTIONS(12477), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12477), + [anon_sym_BSLASHcitealt] = ACTIONS(12477), + [anon_sym_BSLASHcitealp] = ACTIONS(12477), + [anon_sym_BSLASHcitetext] = ACTIONS(12477), + [anon_sym_BSLASHparencite] = ACTIONS(12477), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHParencite] = ACTIONS(12477), + [anon_sym_BSLASHfootcite] = ACTIONS(12477), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12477), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12477), + [anon_sym_BSLASHtextcite] = ACTIONS(12477), + [anon_sym_BSLASHTextcite] = ACTIONS(12477), + [anon_sym_BSLASHsmartcite] = ACTIONS(12477), + [anon_sym_BSLASHSmartcite] = ACTIONS(12477), + [anon_sym_BSLASHsupercite] = ACTIONS(12477), + [anon_sym_BSLASHautocite] = ACTIONS(12477), + [anon_sym_BSLASHAutocite] = ACTIONS(12477), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHvolcite] = ACTIONS(12477), + [anon_sym_BSLASHVolcite] = ACTIONS(12477), + [anon_sym_BSLASHpvolcite] = ACTIONS(12477), + [anon_sym_BSLASHPvolcite] = ACTIONS(12477), + [anon_sym_BSLASHfvolcite] = ACTIONS(12477), + [anon_sym_BSLASHftvolcite] = ACTIONS(12477), + [anon_sym_BSLASHsvolcite] = ACTIONS(12477), + [anon_sym_BSLASHSvolcite] = ACTIONS(12477), + [anon_sym_BSLASHtvolcite] = ACTIONS(12477), + [anon_sym_BSLASHTvolcite] = ACTIONS(12477), + [anon_sym_BSLASHavolcite] = ACTIONS(12477), + [anon_sym_BSLASHAvolcite] = ACTIONS(12477), + [anon_sym_BSLASHnotecite] = ACTIONS(12477), + [anon_sym_BSLASHpnotecite] = ACTIONS(12477), + [anon_sym_BSLASHPnotecite] = ACTIONS(12477), + [anon_sym_BSLASHfnotecite] = ACTIONS(12477), + [anon_sym_BSLASHusepackage] = ACTIONS(12477), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12477), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12477), + [anon_sym_BSLASHinclude] = ACTIONS(12477), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12477), + [anon_sym_BSLASHinput] = ACTIONS(12477), + [anon_sym_BSLASHsubfile] = ACTIONS(12477), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12477), + [anon_sym_BSLASHbibliography] = ACTIONS(12477), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12477), + [anon_sym_BSLASHincludesvg] = ACTIONS(12477), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12477), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12477), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12477), + [anon_sym_BSLASHimport] = ACTIONS(12477), + [anon_sym_BSLASHsubimport] = ACTIONS(12477), + [anon_sym_BSLASHinputfrom] = ACTIONS(12477), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12477), + [anon_sym_BSLASHincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHlabel] = ACTIONS(12477), + [anon_sym_BSLASHref] = ACTIONS(12477), + [anon_sym_BSLASHvref] = ACTIONS(12477), + [anon_sym_BSLASHVref] = ACTIONS(12477), + [anon_sym_BSLASHautoref] = ACTIONS(12477), + [anon_sym_BSLASHpageref] = ACTIONS(12477), + [anon_sym_BSLASHcref] = ACTIONS(12477), + [anon_sym_BSLASHCref] = ACTIONS(12477), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnameCref] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHlabelcref] = ACTIONS(12477), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12477), + [anon_sym_BSLASHeqref] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange] = ACTIONS(12477), + [anon_sym_BSLASHCrefrange] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewlabel] = ACTIONS(12477), + [anon_sym_BSLASHnewcommand] = ACTIONS(12477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12477), + [anon_sym_BSLASHgls] = ACTIONS(12477), + [anon_sym_BSLASHGls] = ACTIONS(12477), + [anon_sym_BSLASHGLS] = ACTIONS(12477), + [anon_sym_BSLASHglspl] = ACTIONS(12477), + [anon_sym_BSLASHGlspl] = ACTIONS(12477), + [anon_sym_BSLASHGLSpl] = ACTIONS(12477), + [anon_sym_BSLASHglsdisp] = ACTIONS(12477), + [anon_sym_BSLASHglslink] = ACTIONS(12477), + [anon_sym_BSLASHglstext] = ACTIONS(12477), + [anon_sym_BSLASHGlstext] = ACTIONS(12477), + [anon_sym_BSLASHGLStext] = ACTIONS(12477), + [anon_sym_BSLASHglsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12477), + [anon_sym_BSLASHglsplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSplural] = ACTIONS(12477), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHglsname] = ACTIONS(12477), + [anon_sym_BSLASHGlsname] = ACTIONS(12477), + [anon_sym_BSLASHGLSname] = ACTIONS(12477), + [anon_sym_BSLASHglssymbol] = ACTIONS(12477), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12477), + [anon_sym_BSLASHglsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12477), + [anon_sym_BSLASHglsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12477), + [anon_sym_BSLASHglsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12477), + [anon_sym_BSLASHglsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12477), + [anon_sym_BSLASHglsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12477), + [anon_sym_BSLASHnewacronym] = ACTIONS(12477), + [anon_sym_BSLASHacrshort] = ACTIONS(12477), + [anon_sym_BSLASHAcrshort] = ACTIONS(12477), + [anon_sym_BSLASHACRshort] = ACTIONS(12477), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12477), + [anon_sym_BSLASHacrlong] = ACTIONS(12477), + [anon_sym_BSLASHAcrlong] = ACTIONS(12477), + [anon_sym_BSLASHACRlong] = ACTIONS(12477), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12477), + [anon_sym_BSLASHacrfull] = ACTIONS(12477), + [anon_sym_BSLASHAcrfull] = ACTIONS(12477), + [anon_sym_BSLASHACRfull] = ACTIONS(12477), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12477), + [anon_sym_BSLASHacs] = ACTIONS(12477), + [anon_sym_BSLASHAcs] = ACTIONS(12477), + [anon_sym_BSLASHacsp] = ACTIONS(12477), + [anon_sym_BSLASHAcsp] = ACTIONS(12477), + [anon_sym_BSLASHacl] = ACTIONS(12477), + [anon_sym_BSLASHAcl] = ACTIONS(12477), + [anon_sym_BSLASHaclp] = ACTIONS(12477), + [anon_sym_BSLASHAclp] = ACTIONS(12477), + [anon_sym_BSLASHacf] = ACTIONS(12477), + [anon_sym_BSLASHAcf] = ACTIONS(12477), + [anon_sym_BSLASHacfp] = ACTIONS(12477), + [anon_sym_BSLASHAcfp] = ACTIONS(12477), + [anon_sym_BSLASHac] = ACTIONS(12477), + [anon_sym_BSLASHAc] = ACTIONS(12477), + [anon_sym_BSLASHacp] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12477), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12477), + [anon_sym_BSLASHcolor] = ACTIONS(12477), + [anon_sym_BSLASHcolorbox] = ACTIONS(12477), + [anon_sym_BSLASHtextcolor] = ACTIONS(12477), + [anon_sym_BSLASHpagecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12477), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12477), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12477), + }, + [1454] = { + [sym_generic_command_name] = ACTIONS(12481), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12481), + [aux_sym_paragraph_token1] = ACTIONS(12481), + [aux_sym_subparagraph_token1] = ACTIONS(12481), + [anon_sym_BSLASHitem] = ACTIONS(12481), + [anon_sym_LBRACK] = ACTIONS(12479), + [anon_sym_RBRACK] = ACTIONS(12479), + [anon_sym_LBRACE] = ACTIONS(12479), + [anon_sym_RBRACE] = ACTIONS(12479), + [anon_sym_LPAREN] = ACTIONS(12479), + [anon_sym_COMMA] = ACTIONS(12479), + [anon_sym_EQ] = ACTIONS(12479), + [sym_word] = ACTIONS(12479), + [sym_param] = ACTIONS(12479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12479), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12479), + [anon_sym_DOLLAR] = ACTIONS(12481), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12479), + [anon_sym_BSLASHbegin] = ACTIONS(12481), + [anon_sym_BSLASHcaption] = ACTIONS(12481), + [anon_sym_BSLASHcite] = ACTIONS(12481), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCite] = ACTIONS(12481), + [anon_sym_BSLASHnocite] = ACTIONS(12481), + [anon_sym_BSLASHcitet] = ACTIONS(12481), + [anon_sym_BSLASHcitep] = ACTIONS(12481), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteauthor] = ACTIONS(12481), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12481), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitetitle] = ACTIONS(12481), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteyear] = ACTIONS(12481), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitedate] = ACTIONS(12481), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteurl] = ACTIONS(12481), + [anon_sym_BSLASHfullcite] = ACTIONS(12481), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12481), + [anon_sym_BSLASHcitealt] = ACTIONS(12481), + [anon_sym_BSLASHcitealp] = ACTIONS(12481), + [anon_sym_BSLASHcitetext] = ACTIONS(12481), + [anon_sym_BSLASHparencite] = ACTIONS(12481), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHParencite] = ACTIONS(12481), + [anon_sym_BSLASHfootcite] = ACTIONS(12481), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12481), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12481), + [anon_sym_BSLASHtextcite] = ACTIONS(12481), + [anon_sym_BSLASHTextcite] = ACTIONS(12481), + [anon_sym_BSLASHsmartcite] = ACTIONS(12481), + [anon_sym_BSLASHSmartcite] = ACTIONS(12481), + [anon_sym_BSLASHsupercite] = ACTIONS(12481), + [anon_sym_BSLASHautocite] = ACTIONS(12481), + [anon_sym_BSLASHAutocite] = ACTIONS(12481), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHvolcite] = ACTIONS(12481), + [anon_sym_BSLASHVolcite] = ACTIONS(12481), + [anon_sym_BSLASHpvolcite] = ACTIONS(12481), + [anon_sym_BSLASHPvolcite] = ACTIONS(12481), + [anon_sym_BSLASHfvolcite] = ACTIONS(12481), + [anon_sym_BSLASHftvolcite] = ACTIONS(12481), + [anon_sym_BSLASHsvolcite] = ACTIONS(12481), + [anon_sym_BSLASHSvolcite] = ACTIONS(12481), + [anon_sym_BSLASHtvolcite] = ACTIONS(12481), + [anon_sym_BSLASHTvolcite] = ACTIONS(12481), + [anon_sym_BSLASHavolcite] = ACTIONS(12481), + [anon_sym_BSLASHAvolcite] = ACTIONS(12481), + [anon_sym_BSLASHnotecite] = ACTIONS(12481), + [anon_sym_BSLASHpnotecite] = ACTIONS(12481), + [anon_sym_BSLASHPnotecite] = ACTIONS(12481), + [anon_sym_BSLASHfnotecite] = ACTIONS(12481), + [anon_sym_BSLASHusepackage] = ACTIONS(12481), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12481), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12481), + [anon_sym_BSLASHinclude] = ACTIONS(12481), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12481), + [anon_sym_BSLASHinput] = ACTIONS(12481), + [anon_sym_BSLASHsubfile] = ACTIONS(12481), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12481), + [anon_sym_BSLASHbibliography] = ACTIONS(12481), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12481), + [anon_sym_BSLASHincludesvg] = ACTIONS(12481), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12481), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12481), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12481), + [anon_sym_BSLASHimport] = ACTIONS(12481), + [anon_sym_BSLASHsubimport] = ACTIONS(12481), + [anon_sym_BSLASHinputfrom] = ACTIONS(12481), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12481), + [anon_sym_BSLASHincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHlabel] = ACTIONS(12481), + [anon_sym_BSLASHref] = ACTIONS(12481), + [anon_sym_BSLASHvref] = ACTIONS(12481), + [anon_sym_BSLASHVref] = ACTIONS(12481), + [anon_sym_BSLASHautoref] = ACTIONS(12481), + [anon_sym_BSLASHpageref] = ACTIONS(12481), + [anon_sym_BSLASHcref] = ACTIONS(12481), + [anon_sym_BSLASHCref] = ACTIONS(12481), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnameCref] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHlabelcref] = ACTIONS(12481), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12481), + [anon_sym_BSLASHeqref] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange] = ACTIONS(12481), + [anon_sym_BSLASHCrefrange] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewlabel] = ACTIONS(12481), + [anon_sym_BSLASHnewcommand] = ACTIONS(12481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12481), + [anon_sym_BSLASHgls] = ACTIONS(12481), + [anon_sym_BSLASHGls] = ACTIONS(12481), + [anon_sym_BSLASHGLS] = ACTIONS(12481), + [anon_sym_BSLASHglspl] = ACTIONS(12481), + [anon_sym_BSLASHGlspl] = ACTIONS(12481), + [anon_sym_BSLASHGLSpl] = ACTIONS(12481), + [anon_sym_BSLASHglsdisp] = ACTIONS(12481), + [anon_sym_BSLASHglslink] = ACTIONS(12481), + [anon_sym_BSLASHglstext] = ACTIONS(12481), + [anon_sym_BSLASHGlstext] = ACTIONS(12481), + [anon_sym_BSLASHGLStext] = ACTIONS(12481), + [anon_sym_BSLASHglsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12481), + [anon_sym_BSLASHglsplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSplural] = ACTIONS(12481), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHglsname] = ACTIONS(12481), + [anon_sym_BSLASHGlsname] = ACTIONS(12481), + [anon_sym_BSLASHGLSname] = ACTIONS(12481), + [anon_sym_BSLASHglssymbol] = ACTIONS(12481), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12481), + [anon_sym_BSLASHglsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12481), + [anon_sym_BSLASHglsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12481), + [anon_sym_BSLASHglsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12481), + [anon_sym_BSLASHglsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12481), + [anon_sym_BSLASHglsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12481), + [anon_sym_BSLASHnewacronym] = ACTIONS(12481), + [anon_sym_BSLASHacrshort] = ACTIONS(12481), + [anon_sym_BSLASHAcrshort] = ACTIONS(12481), + [anon_sym_BSLASHACRshort] = ACTIONS(12481), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12481), + [anon_sym_BSLASHacrlong] = ACTIONS(12481), + [anon_sym_BSLASHAcrlong] = ACTIONS(12481), + [anon_sym_BSLASHACRlong] = ACTIONS(12481), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12481), + [anon_sym_BSLASHacrfull] = ACTIONS(12481), + [anon_sym_BSLASHAcrfull] = ACTIONS(12481), + [anon_sym_BSLASHACRfull] = ACTIONS(12481), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12481), + [anon_sym_BSLASHacs] = ACTIONS(12481), + [anon_sym_BSLASHAcs] = ACTIONS(12481), + [anon_sym_BSLASHacsp] = ACTIONS(12481), + [anon_sym_BSLASHAcsp] = ACTIONS(12481), + [anon_sym_BSLASHacl] = ACTIONS(12481), + [anon_sym_BSLASHAcl] = ACTIONS(12481), + [anon_sym_BSLASHaclp] = ACTIONS(12481), + [anon_sym_BSLASHAclp] = ACTIONS(12481), + [anon_sym_BSLASHacf] = ACTIONS(12481), + [anon_sym_BSLASHAcf] = ACTIONS(12481), + [anon_sym_BSLASHacfp] = ACTIONS(12481), + [anon_sym_BSLASHAcfp] = ACTIONS(12481), + [anon_sym_BSLASHac] = ACTIONS(12481), + [anon_sym_BSLASHAc] = ACTIONS(12481), + [anon_sym_BSLASHacp] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12481), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12481), + [anon_sym_BSLASHcolor] = ACTIONS(12481), + [anon_sym_BSLASHcolorbox] = ACTIONS(12481), + [anon_sym_BSLASHtextcolor] = ACTIONS(12481), + [anon_sym_BSLASHpagecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12481), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12481), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12481), + }, + [1455] = { + [sym_generic_command_name] = ACTIONS(12493), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12493), + [aux_sym_paragraph_token1] = ACTIONS(12493), + [aux_sym_subparagraph_token1] = ACTIONS(12493), + [anon_sym_BSLASHitem] = ACTIONS(12493), + [anon_sym_LBRACK] = ACTIONS(12491), + [anon_sym_RBRACK] = ACTIONS(12491), + [anon_sym_LBRACE] = ACTIONS(12491), + [anon_sym_RBRACE] = ACTIONS(12491), + [anon_sym_LPAREN] = ACTIONS(12491), + [anon_sym_COMMA] = ACTIONS(12491), + [anon_sym_EQ] = ACTIONS(12491), + [sym_word] = ACTIONS(12491), + [sym_param] = ACTIONS(12491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12491), + [anon_sym_DOLLAR] = ACTIONS(12493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12491), + [anon_sym_BSLASHbegin] = ACTIONS(12493), + [anon_sym_BSLASHcaption] = ACTIONS(12493), + [anon_sym_BSLASHcite] = ACTIONS(12493), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCite] = ACTIONS(12493), + [anon_sym_BSLASHnocite] = ACTIONS(12493), + [anon_sym_BSLASHcitet] = ACTIONS(12493), + [anon_sym_BSLASHcitep] = ACTIONS(12493), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteauthor] = ACTIONS(12493), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12493), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitetitle] = ACTIONS(12493), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteyear] = ACTIONS(12493), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitedate] = ACTIONS(12493), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteurl] = ACTIONS(12493), + [anon_sym_BSLASHfullcite] = ACTIONS(12493), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12493), + [anon_sym_BSLASHcitealt] = ACTIONS(12493), + [anon_sym_BSLASHcitealp] = ACTIONS(12493), + [anon_sym_BSLASHcitetext] = ACTIONS(12493), + [anon_sym_BSLASHparencite] = ACTIONS(12493), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHParencite] = ACTIONS(12493), + [anon_sym_BSLASHfootcite] = ACTIONS(12493), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12493), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12493), + [anon_sym_BSLASHtextcite] = ACTIONS(12493), + [anon_sym_BSLASHTextcite] = ACTIONS(12493), + [anon_sym_BSLASHsmartcite] = ACTIONS(12493), + [anon_sym_BSLASHSmartcite] = ACTIONS(12493), + [anon_sym_BSLASHsupercite] = ACTIONS(12493), + [anon_sym_BSLASHautocite] = ACTIONS(12493), + [anon_sym_BSLASHAutocite] = ACTIONS(12493), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHvolcite] = ACTIONS(12493), + [anon_sym_BSLASHVolcite] = ACTIONS(12493), + [anon_sym_BSLASHpvolcite] = ACTIONS(12493), + [anon_sym_BSLASHPvolcite] = ACTIONS(12493), + [anon_sym_BSLASHfvolcite] = ACTIONS(12493), + [anon_sym_BSLASHftvolcite] = ACTIONS(12493), + [anon_sym_BSLASHsvolcite] = ACTIONS(12493), + [anon_sym_BSLASHSvolcite] = ACTIONS(12493), + [anon_sym_BSLASHtvolcite] = ACTIONS(12493), + [anon_sym_BSLASHTvolcite] = ACTIONS(12493), + [anon_sym_BSLASHavolcite] = ACTIONS(12493), + [anon_sym_BSLASHAvolcite] = ACTIONS(12493), + [anon_sym_BSLASHnotecite] = ACTIONS(12493), + [anon_sym_BSLASHpnotecite] = ACTIONS(12493), + [anon_sym_BSLASHPnotecite] = ACTIONS(12493), + [anon_sym_BSLASHfnotecite] = ACTIONS(12493), + [anon_sym_BSLASHusepackage] = ACTIONS(12493), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12493), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12493), + [anon_sym_BSLASHinclude] = ACTIONS(12493), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12493), + [anon_sym_BSLASHinput] = ACTIONS(12493), + [anon_sym_BSLASHsubfile] = ACTIONS(12493), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12493), + [anon_sym_BSLASHbibliography] = ACTIONS(12493), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12493), + [anon_sym_BSLASHincludesvg] = ACTIONS(12493), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12493), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12493), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12493), + [anon_sym_BSLASHimport] = ACTIONS(12493), + [anon_sym_BSLASHsubimport] = ACTIONS(12493), + [anon_sym_BSLASHinputfrom] = ACTIONS(12493), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12493), + [anon_sym_BSLASHincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHlabel] = ACTIONS(12493), + [anon_sym_BSLASHref] = ACTIONS(12493), + [anon_sym_BSLASHvref] = ACTIONS(12493), + [anon_sym_BSLASHVref] = ACTIONS(12493), + [anon_sym_BSLASHautoref] = ACTIONS(12493), + [anon_sym_BSLASHpageref] = ACTIONS(12493), + [anon_sym_BSLASHcref] = ACTIONS(12493), + [anon_sym_BSLASHCref] = ACTIONS(12493), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnameCref] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHlabelcref] = ACTIONS(12493), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12493), + [anon_sym_BSLASHeqref] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange] = ACTIONS(12493), + [anon_sym_BSLASHCrefrange] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewlabel] = ACTIONS(12493), + [anon_sym_BSLASHnewcommand] = ACTIONS(12493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12493), + [anon_sym_BSLASHgls] = ACTIONS(12493), + [anon_sym_BSLASHGls] = ACTIONS(12493), + [anon_sym_BSLASHGLS] = ACTIONS(12493), + [anon_sym_BSLASHglspl] = ACTIONS(12493), + [anon_sym_BSLASHGlspl] = ACTIONS(12493), + [anon_sym_BSLASHGLSpl] = ACTIONS(12493), + [anon_sym_BSLASHglsdisp] = ACTIONS(12493), + [anon_sym_BSLASHglslink] = ACTIONS(12493), + [anon_sym_BSLASHglstext] = ACTIONS(12493), + [anon_sym_BSLASHGlstext] = ACTIONS(12493), + [anon_sym_BSLASHGLStext] = ACTIONS(12493), + [anon_sym_BSLASHglsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12493), + [anon_sym_BSLASHglsplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSplural] = ACTIONS(12493), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHglsname] = ACTIONS(12493), + [anon_sym_BSLASHGlsname] = ACTIONS(12493), + [anon_sym_BSLASHGLSname] = ACTIONS(12493), + [anon_sym_BSLASHglssymbol] = ACTIONS(12493), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12493), + [anon_sym_BSLASHglsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12493), + [anon_sym_BSLASHglsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12493), + [anon_sym_BSLASHglsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12493), + [anon_sym_BSLASHglsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12493), + [anon_sym_BSLASHglsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12493), + [anon_sym_BSLASHnewacronym] = ACTIONS(12493), + [anon_sym_BSLASHacrshort] = ACTIONS(12493), + [anon_sym_BSLASHAcrshort] = ACTIONS(12493), + [anon_sym_BSLASHACRshort] = ACTIONS(12493), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12493), + [anon_sym_BSLASHacrlong] = ACTIONS(12493), + [anon_sym_BSLASHAcrlong] = ACTIONS(12493), + [anon_sym_BSLASHACRlong] = ACTIONS(12493), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12493), + [anon_sym_BSLASHacrfull] = ACTIONS(12493), + [anon_sym_BSLASHAcrfull] = ACTIONS(12493), + [anon_sym_BSLASHACRfull] = ACTIONS(12493), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12493), + [anon_sym_BSLASHacs] = ACTIONS(12493), + [anon_sym_BSLASHAcs] = ACTIONS(12493), + [anon_sym_BSLASHacsp] = ACTIONS(12493), + [anon_sym_BSLASHAcsp] = ACTIONS(12493), + [anon_sym_BSLASHacl] = ACTIONS(12493), + [anon_sym_BSLASHAcl] = ACTIONS(12493), + [anon_sym_BSLASHaclp] = ACTIONS(12493), + [anon_sym_BSLASHAclp] = ACTIONS(12493), + [anon_sym_BSLASHacf] = ACTIONS(12493), + [anon_sym_BSLASHAcf] = ACTIONS(12493), + [anon_sym_BSLASHacfp] = ACTIONS(12493), + [anon_sym_BSLASHAcfp] = ACTIONS(12493), + [anon_sym_BSLASHac] = ACTIONS(12493), + [anon_sym_BSLASHAc] = ACTIONS(12493), + [anon_sym_BSLASHacp] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12493), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12493), + [anon_sym_BSLASHcolor] = ACTIONS(12493), + [anon_sym_BSLASHcolorbox] = ACTIONS(12493), + [anon_sym_BSLASHtextcolor] = ACTIONS(12493), + [anon_sym_BSLASHpagecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12493), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12493), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12493), + }, + [1456] = { + [sym_generic_command_name] = ACTIONS(12497), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12497), + [aux_sym_paragraph_token1] = ACTIONS(12497), + [aux_sym_subparagraph_token1] = ACTIONS(12497), + [anon_sym_BSLASHitem] = ACTIONS(12497), + [anon_sym_LBRACK] = ACTIONS(12495), + [anon_sym_RBRACK] = ACTIONS(12495), + [anon_sym_LBRACE] = ACTIONS(12495), + [anon_sym_RBRACE] = ACTIONS(12495), + [anon_sym_LPAREN] = ACTIONS(12495), + [anon_sym_COMMA] = ACTIONS(12495), + [anon_sym_EQ] = ACTIONS(12495), + [sym_word] = ACTIONS(12495), + [sym_param] = ACTIONS(12495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12495), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12495), + [anon_sym_DOLLAR] = ACTIONS(12497), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12495), + [anon_sym_BSLASHbegin] = ACTIONS(12497), + [anon_sym_BSLASHcaption] = ACTIONS(12497), + [anon_sym_BSLASHcite] = ACTIONS(12497), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCite] = ACTIONS(12497), + [anon_sym_BSLASHnocite] = ACTIONS(12497), + [anon_sym_BSLASHcitet] = ACTIONS(12497), + [anon_sym_BSLASHcitep] = ACTIONS(12497), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteauthor] = ACTIONS(12497), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12497), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitetitle] = ACTIONS(12497), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteyear] = ACTIONS(12497), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitedate] = ACTIONS(12497), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteurl] = ACTIONS(12497), + [anon_sym_BSLASHfullcite] = ACTIONS(12497), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12497), + [anon_sym_BSLASHcitealt] = ACTIONS(12497), + [anon_sym_BSLASHcitealp] = ACTIONS(12497), + [anon_sym_BSLASHcitetext] = ACTIONS(12497), + [anon_sym_BSLASHparencite] = ACTIONS(12497), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHParencite] = ACTIONS(12497), + [anon_sym_BSLASHfootcite] = ACTIONS(12497), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12497), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12497), + [anon_sym_BSLASHtextcite] = ACTIONS(12497), + [anon_sym_BSLASHTextcite] = ACTIONS(12497), + [anon_sym_BSLASHsmartcite] = ACTIONS(12497), + [anon_sym_BSLASHSmartcite] = ACTIONS(12497), + [anon_sym_BSLASHsupercite] = ACTIONS(12497), + [anon_sym_BSLASHautocite] = ACTIONS(12497), + [anon_sym_BSLASHAutocite] = ACTIONS(12497), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHvolcite] = ACTIONS(12497), + [anon_sym_BSLASHVolcite] = ACTIONS(12497), + [anon_sym_BSLASHpvolcite] = ACTIONS(12497), + [anon_sym_BSLASHPvolcite] = ACTIONS(12497), + [anon_sym_BSLASHfvolcite] = ACTIONS(12497), + [anon_sym_BSLASHftvolcite] = ACTIONS(12497), + [anon_sym_BSLASHsvolcite] = ACTIONS(12497), + [anon_sym_BSLASHSvolcite] = ACTIONS(12497), + [anon_sym_BSLASHtvolcite] = ACTIONS(12497), + [anon_sym_BSLASHTvolcite] = ACTIONS(12497), + [anon_sym_BSLASHavolcite] = ACTIONS(12497), + [anon_sym_BSLASHAvolcite] = ACTIONS(12497), + [anon_sym_BSLASHnotecite] = ACTIONS(12497), + [anon_sym_BSLASHpnotecite] = ACTIONS(12497), + [anon_sym_BSLASHPnotecite] = ACTIONS(12497), + [anon_sym_BSLASHfnotecite] = ACTIONS(12497), + [anon_sym_BSLASHusepackage] = ACTIONS(12497), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12497), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12497), + [anon_sym_BSLASHinclude] = ACTIONS(12497), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12497), + [anon_sym_BSLASHinput] = ACTIONS(12497), + [anon_sym_BSLASHsubfile] = ACTIONS(12497), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12497), + [anon_sym_BSLASHbibliography] = ACTIONS(12497), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12497), + [anon_sym_BSLASHincludesvg] = ACTIONS(12497), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12497), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12497), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12497), + [anon_sym_BSLASHimport] = ACTIONS(12497), + [anon_sym_BSLASHsubimport] = ACTIONS(12497), + [anon_sym_BSLASHinputfrom] = ACTIONS(12497), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12497), + [anon_sym_BSLASHincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHlabel] = ACTIONS(12497), + [anon_sym_BSLASHref] = ACTIONS(12497), + [anon_sym_BSLASHvref] = ACTIONS(12497), + [anon_sym_BSLASHVref] = ACTIONS(12497), + [anon_sym_BSLASHautoref] = ACTIONS(12497), + [anon_sym_BSLASHpageref] = ACTIONS(12497), + [anon_sym_BSLASHcref] = ACTIONS(12497), + [anon_sym_BSLASHCref] = ACTIONS(12497), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnameCref] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHlabelcref] = ACTIONS(12497), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12497), + [anon_sym_BSLASHeqref] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange] = ACTIONS(12497), + [anon_sym_BSLASHCrefrange] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewlabel] = ACTIONS(12497), + [anon_sym_BSLASHnewcommand] = ACTIONS(12497), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12497), + [anon_sym_BSLASHgls] = ACTIONS(12497), + [anon_sym_BSLASHGls] = ACTIONS(12497), + [anon_sym_BSLASHGLS] = ACTIONS(12497), + [anon_sym_BSLASHglspl] = ACTIONS(12497), + [anon_sym_BSLASHGlspl] = ACTIONS(12497), + [anon_sym_BSLASHGLSpl] = ACTIONS(12497), + [anon_sym_BSLASHglsdisp] = ACTIONS(12497), + [anon_sym_BSLASHglslink] = ACTIONS(12497), + [anon_sym_BSLASHglstext] = ACTIONS(12497), + [anon_sym_BSLASHGlstext] = ACTIONS(12497), + [anon_sym_BSLASHGLStext] = ACTIONS(12497), + [anon_sym_BSLASHglsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12497), + [anon_sym_BSLASHglsplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSplural] = ACTIONS(12497), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHglsname] = ACTIONS(12497), + [anon_sym_BSLASHGlsname] = ACTIONS(12497), + [anon_sym_BSLASHGLSname] = ACTIONS(12497), + [anon_sym_BSLASHglssymbol] = ACTIONS(12497), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12497), + [anon_sym_BSLASHglsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12497), + [anon_sym_BSLASHglsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12497), + [anon_sym_BSLASHglsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12497), + [anon_sym_BSLASHglsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12497), + [anon_sym_BSLASHglsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12497), + [anon_sym_BSLASHnewacronym] = ACTIONS(12497), + [anon_sym_BSLASHacrshort] = ACTIONS(12497), + [anon_sym_BSLASHAcrshort] = ACTIONS(12497), + [anon_sym_BSLASHACRshort] = ACTIONS(12497), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12497), + [anon_sym_BSLASHacrlong] = ACTIONS(12497), + [anon_sym_BSLASHAcrlong] = ACTIONS(12497), + [anon_sym_BSLASHACRlong] = ACTIONS(12497), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12497), + [anon_sym_BSLASHacrfull] = ACTIONS(12497), + [anon_sym_BSLASHAcrfull] = ACTIONS(12497), + [anon_sym_BSLASHACRfull] = ACTIONS(12497), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12497), + [anon_sym_BSLASHacs] = ACTIONS(12497), + [anon_sym_BSLASHAcs] = ACTIONS(12497), + [anon_sym_BSLASHacsp] = ACTIONS(12497), + [anon_sym_BSLASHAcsp] = ACTIONS(12497), + [anon_sym_BSLASHacl] = ACTIONS(12497), + [anon_sym_BSLASHAcl] = ACTIONS(12497), + [anon_sym_BSLASHaclp] = ACTIONS(12497), + [anon_sym_BSLASHAclp] = ACTIONS(12497), + [anon_sym_BSLASHacf] = ACTIONS(12497), + [anon_sym_BSLASHAcf] = ACTIONS(12497), + [anon_sym_BSLASHacfp] = ACTIONS(12497), + [anon_sym_BSLASHAcfp] = ACTIONS(12497), + [anon_sym_BSLASHac] = ACTIONS(12497), + [anon_sym_BSLASHAc] = ACTIONS(12497), + [anon_sym_BSLASHacp] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12497), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12497), + [anon_sym_BSLASHcolor] = ACTIONS(12497), + [anon_sym_BSLASHcolorbox] = ACTIONS(12497), + [anon_sym_BSLASHtextcolor] = ACTIONS(12497), + [anon_sym_BSLASHpagecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12497), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12497), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12497), + }, + [1457] = { + [sym_generic_command_name] = ACTIONS(12501), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12501), + [aux_sym_paragraph_token1] = ACTIONS(12501), + [aux_sym_subparagraph_token1] = ACTIONS(12501), + [anon_sym_BSLASHitem] = ACTIONS(12501), + [anon_sym_LBRACK] = ACTIONS(12499), + [anon_sym_RBRACK] = ACTIONS(12499), + [anon_sym_LBRACE] = ACTIONS(12499), + [anon_sym_RBRACE] = ACTIONS(12499), + [anon_sym_LPAREN] = ACTIONS(12499), + [anon_sym_COMMA] = ACTIONS(12499), + [anon_sym_EQ] = ACTIONS(12499), + [sym_word] = ACTIONS(12499), + [sym_param] = ACTIONS(12499), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12499), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12499), + [anon_sym_DOLLAR] = ACTIONS(12501), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12499), + [anon_sym_BSLASHbegin] = ACTIONS(12501), + [anon_sym_BSLASHcaption] = ACTIONS(12501), + [anon_sym_BSLASHcite] = ACTIONS(12501), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCite] = ACTIONS(12501), + [anon_sym_BSLASHnocite] = ACTIONS(12501), + [anon_sym_BSLASHcitet] = ACTIONS(12501), + [anon_sym_BSLASHcitep] = ACTIONS(12501), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteauthor] = ACTIONS(12501), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12501), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitetitle] = ACTIONS(12501), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteyear] = ACTIONS(12501), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitedate] = ACTIONS(12501), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteurl] = ACTIONS(12501), + [anon_sym_BSLASHfullcite] = ACTIONS(12501), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12501), + [anon_sym_BSLASHcitealt] = ACTIONS(12501), + [anon_sym_BSLASHcitealp] = ACTIONS(12501), + [anon_sym_BSLASHcitetext] = ACTIONS(12501), + [anon_sym_BSLASHparencite] = ACTIONS(12501), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHParencite] = ACTIONS(12501), + [anon_sym_BSLASHfootcite] = ACTIONS(12501), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12501), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12501), + [anon_sym_BSLASHtextcite] = ACTIONS(12501), + [anon_sym_BSLASHTextcite] = ACTIONS(12501), + [anon_sym_BSLASHsmartcite] = ACTIONS(12501), + [anon_sym_BSLASHSmartcite] = ACTIONS(12501), + [anon_sym_BSLASHsupercite] = ACTIONS(12501), + [anon_sym_BSLASHautocite] = ACTIONS(12501), + [anon_sym_BSLASHAutocite] = ACTIONS(12501), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHvolcite] = ACTIONS(12501), + [anon_sym_BSLASHVolcite] = ACTIONS(12501), + [anon_sym_BSLASHpvolcite] = ACTIONS(12501), + [anon_sym_BSLASHPvolcite] = ACTIONS(12501), + [anon_sym_BSLASHfvolcite] = ACTIONS(12501), + [anon_sym_BSLASHftvolcite] = ACTIONS(12501), + [anon_sym_BSLASHsvolcite] = ACTIONS(12501), + [anon_sym_BSLASHSvolcite] = ACTIONS(12501), + [anon_sym_BSLASHtvolcite] = ACTIONS(12501), + [anon_sym_BSLASHTvolcite] = ACTIONS(12501), + [anon_sym_BSLASHavolcite] = ACTIONS(12501), + [anon_sym_BSLASHAvolcite] = ACTIONS(12501), + [anon_sym_BSLASHnotecite] = ACTIONS(12501), + [anon_sym_BSLASHpnotecite] = ACTIONS(12501), + [anon_sym_BSLASHPnotecite] = ACTIONS(12501), + [anon_sym_BSLASHfnotecite] = ACTIONS(12501), + [anon_sym_BSLASHusepackage] = ACTIONS(12501), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12501), + [anon_sym_BSLASHinclude] = ACTIONS(12501), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12501), + [anon_sym_BSLASHinput] = ACTIONS(12501), + [anon_sym_BSLASHsubfile] = ACTIONS(12501), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12501), + [anon_sym_BSLASHbibliography] = ACTIONS(12501), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12501), + [anon_sym_BSLASHincludesvg] = ACTIONS(12501), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12501), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12501), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12501), + [anon_sym_BSLASHimport] = ACTIONS(12501), + [anon_sym_BSLASHsubimport] = ACTIONS(12501), + [anon_sym_BSLASHinputfrom] = ACTIONS(12501), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12501), + [anon_sym_BSLASHincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHlabel] = ACTIONS(12501), + [anon_sym_BSLASHref] = ACTIONS(12501), + [anon_sym_BSLASHvref] = ACTIONS(12501), + [anon_sym_BSLASHVref] = ACTIONS(12501), + [anon_sym_BSLASHautoref] = ACTIONS(12501), + [anon_sym_BSLASHpageref] = ACTIONS(12501), + [anon_sym_BSLASHcref] = ACTIONS(12501), + [anon_sym_BSLASHCref] = ACTIONS(12501), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnameCref] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHlabelcref] = ACTIONS(12501), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12501), + [anon_sym_BSLASHeqref] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange] = ACTIONS(12501), + [anon_sym_BSLASHCrefrange] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewlabel] = ACTIONS(12501), + [anon_sym_BSLASHnewcommand] = ACTIONS(12501), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12501), + [anon_sym_BSLASHgls] = ACTIONS(12501), + [anon_sym_BSLASHGls] = ACTIONS(12501), + [anon_sym_BSLASHGLS] = ACTIONS(12501), + [anon_sym_BSLASHglspl] = ACTIONS(12501), + [anon_sym_BSLASHGlspl] = ACTIONS(12501), + [anon_sym_BSLASHGLSpl] = ACTIONS(12501), + [anon_sym_BSLASHglsdisp] = ACTIONS(12501), + [anon_sym_BSLASHglslink] = ACTIONS(12501), + [anon_sym_BSLASHglstext] = ACTIONS(12501), + [anon_sym_BSLASHGlstext] = ACTIONS(12501), + [anon_sym_BSLASHGLStext] = ACTIONS(12501), + [anon_sym_BSLASHglsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12501), + [anon_sym_BSLASHglsplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSplural] = ACTIONS(12501), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHglsname] = ACTIONS(12501), + [anon_sym_BSLASHGlsname] = ACTIONS(12501), + [anon_sym_BSLASHGLSname] = ACTIONS(12501), + [anon_sym_BSLASHglssymbol] = ACTIONS(12501), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12501), + [anon_sym_BSLASHglsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12501), + [anon_sym_BSLASHglsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12501), + [anon_sym_BSLASHglsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12501), + [anon_sym_BSLASHglsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12501), + [anon_sym_BSLASHglsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12501), + [anon_sym_BSLASHnewacronym] = ACTIONS(12501), + [anon_sym_BSLASHacrshort] = ACTIONS(12501), + [anon_sym_BSLASHAcrshort] = ACTIONS(12501), + [anon_sym_BSLASHACRshort] = ACTIONS(12501), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12501), + [anon_sym_BSLASHacrlong] = ACTIONS(12501), + [anon_sym_BSLASHAcrlong] = ACTIONS(12501), + [anon_sym_BSLASHACRlong] = ACTIONS(12501), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12501), + [anon_sym_BSLASHacrfull] = ACTIONS(12501), + [anon_sym_BSLASHAcrfull] = ACTIONS(12501), + [anon_sym_BSLASHACRfull] = ACTIONS(12501), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12501), + [anon_sym_BSLASHacs] = ACTIONS(12501), + [anon_sym_BSLASHAcs] = ACTIONS(12501), + [anon_sym_BSLASHacsp] = ACTIONS(12501), + [anon_sym_BSLASHAcsp] = ACTIONS(12501), + [anon_sym_BSLASHacl] = ACTIONS(12501), + [anon_sym_BSLASHAcl] = ACTIONS(12501), + [anon_sym_BSLASHaclp] = ACTIONS(12501), + [anon_sym_BSLASHAclp] = ACTIONS(12501), + [anon_sym_BSLASHacf] = ACTIONS(12501), + [anon_sym_BSLASHAcf] = ACTIONS(12501), + [anon_sym_BSLASHacfp] = ACTIONS(12501), + [anon_sym_BSLASHAcfp] = ACTIONS(12501), + [anon_sym_BSLASHac] = ACTIONS(12501), + [anon_sym_BSLASHAc] = ACTIONS(12501), + [anon_sym_BSLASHacp] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12501), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12501), + [anon_sym_BSLASHcolor] = ACTIONS(12501), + [anon_sym_BSLASHcolorbox] = ACTIONS(12501), + [anon_sym_BSLASHtextcolor] = ACTIONS(12501), + [anon_sym_BSLASHpagecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12501), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12501), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12501), + }, + [1458] = { + [sym_generic_command_name] = ACTIONS(12509), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12509), + [aux_sym_paragraph_token1] = ACTIONS(12509), + [aux_sym_subparagraph_token1] = ACTIONS(12509), + [anon_sym_BSLASHitem] = ACTIONS(12509), + [anon_sym_LBRACK] = ACTIONS(12507), + [anon_sym_RBRACK] = ACTIONS(12507), + [anon_sym_LBRACE] = ACTIONS(12507), + [anon_sym_RBRACE] = ACTIONS(12507), + [anon_sym_LPAREN] = ACTIONS(12507), + [anon_sym_COMMA] = ACTIONS(12507), + [anon_sym_EQ] = ACTIONS(12507), + [sym_word] = ACTIONS(12507), + [sym_param] = ACTIONS(12507), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12507), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12507), + [anon_sym_DOLLAR] = ACTIONS(12509), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12507), + [anon_sym_BSLASHbegin] = ACTIONS(12509), + [anon_sym_BSLASHcaption] = ACTIONS(12509), + [anon_sym_BSLASHcite] = ACTIONS(12509), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCite] = ACTIONS(12509), + [anon_sym_BSLASHnocite] = ACTIONS(12509), + [anon_sym_BSLASHcitet] = ACTIONS(12509), + [anon_sym_BSLASHcitep] = ACTIONS(12509), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteauthor] = ACTIONS(12509), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12509), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitetitle] = ACTIONS(12509), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteyear] = ACTIONS(12509), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitedate] = ACTIONS(12509), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteurl] = ACTIONS(12509), + [anon_sym_BSLASHfullcite] = ACTIONS(12509), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12509), + [anon_sym_BSLASHcitealt] = ACTIONS(12509), + [anon_sym_BSLASHcitealp] = ACTIONS(12509), + [anon_sym_BSLASHcitetext] = ACTIONS(12509), + [anon_sym_BSLASHparencite] = ACTIONS(12509), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHParencite] = ACTIONS(12509), + [anon_sym_BSLASHfootcite] = ACTIONS(12509), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12509), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12509), + [anon_sym_BSLASHtextcite] = ACTIONS(12509), + [anon_sym_BSLASHTextcite] = ACTIONS(12509), + [anon_sym_BSLASHsmartcite] = ACTIONS(12509), + [anon_sym_BSLASHSmartcite] = ACTIONS(12509), + [anon_sym_BSLASHsupercite] = ACTIONS(12509), + [anon_sym_BSLASHautocite] = ACTIONS(12509), + [anon_sym_BSLASHAutocite] = ACTIONS(12509), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHvolcite] = ACTIONS(12509), + [anon_sym_BSLASHVolcite] = ACTIONS(12509), + [anon_sym_BSLASHpvolcite] = ACTIONS(12509), + [anon_sym_BSLASHPvolcite] = ACTIONS(12509), + [anon_sym_BSLASHfvolcite] = ACTIONS(12509), + [anon_sym_BSLASHftvolcite] = ACTIONS(12509), + [anon_sym_BSLASHsvolcite] = ACTIONS(12509), + [anon_sym_BSLASHSvolcite] = ACTIONS(12509), + [anon_sym_BSLASHtvolcite] = ACTIONS(12509), + [anon_sym_BSLASHTvolcite] = ACTIONS(12509), + [anon_sym_BSLASHavolcite] = ACTIONS(12509), + [anon_sym_BSLASHAvolcite] = ACTIONS(12509), + [anon_sym_BSLASHnotecite] = ACTIONS(12509), + [anon_sym_BSLASHpnotecite] = ACTIONS(12509), + [anon_sym_BSLASHPnotecite] = ACTIONS(12509), + [anon_sym_BSLASHfnotecite] = ACTIONS(12509), + [anon_sym_BSLASHusepackage] = ACTIONS(12509), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12509), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12509), + [anon_sym_BSLASHinclude] = ACTIONS(12509), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12509), + [anon_sym_BSLASHinput] = ACTIONS(12509), + [anon_sym_BSLASHsubfile] = ACTIONS(12509), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12509), + [anon_sym_BSLASHbibliography] = ACTIONS(12509), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12509), + [anon_sym_BSLASHincludesvg] = ACTIONS(12509), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12509), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12509), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12509), + [anon_sym_BSLASHimport] = ACTIONS(12509), + [anon_sym_BSLASHsubimport] = ACTIONS(12509), + [anon_sym_BSLASHinputfrom] = ACTIONS(12509), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12509), + [anon_sym_BSLASHincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHlabel] = ACTIONS(12509), + [anon_sym_BSLASHref] = ACTIONS(12509), + [anon_sym_BSLASHvref] = ACTIONS(12509), + [anon_sym_BSLASHVref] = ACTIONS(12509), + [anon_sym_BSLASHautoref] = ACTIONS(12509), + [anon_sym_BSLASHpageref] = ACTIONS(12509), + [anon_sym_BSLASHcref] = ACTIONS(12509), + [anon_sym_BSLASHCref] = ACTIONS(12509), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnameCref] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHlabelcref] = ACTIONS(12509), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12509), + [anon_sym_BSLASHeqref] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange] = ACTIONS(12509), + [anon_sym_BSLASHCrefrange] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewlabel] = ACTIONS(12509), + [anon_sym_BSLASHnewcommand] = ACTIONS(12509), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12509), + [anon_sym_BSLASHgls] = ACTIONS(12509), + [anon_sym_BSLASHGls] = ACTIONS(12509), + [anon_sym_BSLASHGLS] = ACTIONS(12509), + [anon_sym_BSLASHglspl] = ACTIONS(12509), + [anon_sym_BSLASHGlspl] = ACTIONS(12509), + [anon_sym_BSLASHGLSpl] = ACTIONS(12509), + [anon_sym_BSLASHglsdisp] = ACTIONS(12509), + [anon_sym_BSLASHglslink] = ACTIONS(12509), + [anon_sym_BSLASHglstext] = ACTIONS(12509), + [anon_sym_BSLASHGlstext] = ACTIONS(12509), + [anon_sym_BSLASHGLStext] = ACTIONS(12509), + [anon_sym_BSLASHglsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12509), + [anon_sym_BSLASHglsplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSplural] = ACTIONS(12509), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHglsname] = ACTIONS(12509), + [anon_sym_BSLASHGlsname] = ACTIONS(12509), + [anon_sym_BSLASHGLSname] = ACTIONS(12509), + [anon_sym_BSLASHglssymbol] = ACTIONS(12509), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12509), + [anon_sym_BSLASHglsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12509), + [anon_sym_BSLASHglsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12509), + [anon_sym_BSLASHglsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12509), + [anon_sym_BSLASHglsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12509), + [anon_sym_BSLASHglsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12509), + [anon_sym_BSLASHnewacronym] = ACTIONS(12509), + [anon_sym_BSLASHacrshort] = ACTIONS(12509), + [anon_sym_BSLASHAcrshort] = ACTIONS(12509), + [anon_sym_BSLASHACRshort] = ACTIONS(12509), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12509), + [anon_sym_BSLASHacrlong] = ACTIONS(12509), + [anon_sym_BSLASHAcrlong] = ACTIONS(12509), + [anon_sym_BSLASHACRlong] = ACTIONS(12509), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12509), + [anon_sym_BSLASHacrfull] = ACTIONS(12509), + [anon_sym_BSLASHAcrfull] = ACTIONS(12509), + [anon_sym_BSLASHACRfull] = ACTIONS(12509), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12509), + [anon_sym_BSLASHacs] = ACTIONS(12509), + [anon_sym_BSLASHAcs] = ACTIONS(12509), + [anon_sym_BSLASHacsp] = ACTIONS(12509), + [anon_sym_BSLASHAcsp] = ACTIONS(12509), + [anon_sym_BSLASHacl] = ACTIONS(12509), + [anon_sym_BSLASHAcl] = ACTIONS(12509), + [anon_sym_BSLASHaclp] = ACTIONS(12509), + [anon_sym_BSLASHAclp] = ACTIONS(12509), + [anon_sym_BSLASHacf] = ACTIONS(12509), + [anon_sym_BSLASHAcf] = ACTIONS(12509), + [anon_sym_BSLASHacfp] = ACTIONS(12509), + [anon_sym_BSLASHAcfp] = ACTIONS(12509), + [anon_sym_BSLASHac] = ACTIONS(12509), + [anon_sym_BSLASHAc] = ACTIONS(12509), + [anon_sym_BSLASHacp] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12509), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12509), + [anon_sym_BSLASHcolor] = ACTIONS(12509), + [anon_sym_BSLASHcolorbox] = ACTIONS(12509), + [anon_sym_BSLASHtextcolor] = ACTIONS(12509), + [anon_sym_BSLASHpagecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12509), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12509), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12509), + }, + [1459] = { + [sym_generic_command_name] = ACTIONS(12513), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12513), + [aux_sym_paragraph_token1] = ACTIONS(12513), + [aux_sym_subparagraph_token1] = ACTIONS(12513), + [anon_sym_BSLASHitem] = ACTIONS(12513), + [anon_sym_LBRACK] = ACTIONS(12511), + [anon_sym_RBRACK] = ACTIONS(12511), + [anon_sym_LBRACE] = ACTIONS(12754), + [anon_sym_RBRACE] = ACTIONS(12511), + [anon_sym_LPAREN] = ACTIONS(12511), + [anon_sym_COMMA] = ACTIONS(12511), + [anon_sym_EQ] = ACTIONS(12511), + [sym_word] = ACTIONS(12511), + [sym_param] = ACTIONS(12511), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12511), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12511), + [anon_sym_DOLLAR] = ACTIONS(12513), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12511), + [anon_sym_BSLASHbegin] = ACTIONS(12513), + [anon_sym_BSLASHcaption] = ACTIONS(12513), + [anon_sym_BSLASHcite] = ACTIONS(12513), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCite] = ACTIONS(12513), + [anon_sym_BSLASHnocite] = ACTIONS(12513), + [anon_sym_BSLASHcitet] = ACTIONS(12513), + [anon_sym_BSLASHcitep] = ACTIONS(12513), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteauthor] = ACTIONS(12513), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12513), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitetitle] = ACTIONS(12513), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteyear] = ACTIONS(12513), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitedate] = ACTIONS(12513), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteurl] = ACTIONS(12513), + [anon_sym_BSLASHfullcite] = ACTIONS(12513), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12513), + [anon_sym_BSLASHcitealt] = ACTIONS(12513), + [anon_sym_BSLASHcitealp] = ACTIONS(12513), + [anon_sym_BSLASHcitetext] = ACTIONS(12513), + [anon_sym_BSLASHparencite] = ACTIONS(12513), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHParencite] = ACTIONS(12513), + [anon_sym_BSLASHfootcite] = ACTIONS(12513), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12513), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12513), + [anon_sym_BSLASHtextcite] = ACTIONS(12513), + [anon_sym_BSLASHTextcite] = ACTIONS(12513), + [anon_sym_BSLASHsmartcite] = ACTIONS(12513), + [anon_sym_BSLASHSmartcite] = ACTIONS(12513), + [anon_sym_BSLASHsupercite] = ACTIONS(12513), + [anon_sym_BSLASHautocite] = ACTIONS(12513), + [anon_sym_BSLASHAutocite] = ACTIONS(12513), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHvolcite] = ACTIONS(12513), + [anon_sym_BSLASHVolcite] = ACTIONS(12513), + [anon_sym_BSLASHpvolcite] = ACTIONS(12513), + [anon_sym_BSLASHPvolcite] = ACTIONS(12513), + [anon_sym_BSLASHfvolcite] = ACTIONS(12513), + [anon_sym_BSLASHftvolcite] = ACTIONS(12513), + [anon_sym_BSLASHsvolcite] = ACTIONS(12513), + [anon_sym_BSLASHSvolcite] = ACTIONS(12513), + [anon_sym_BSLASHtvolcite] = ACTIONS(12513), + [anon_sym_BSLASHTvolcite] = ACTIONS(12513), + [anon_sym_BSLASHavolcite] = ACTIONS(12513), + [anon_sym_BSLASHAvolcite] = ACTIONS(12513), + [anon_sym_BSLASHnotecite] = ACTIONS(12513), + [anon_sym_BSLASHpnotecite] = ACTIONS(12513), + [anon_sym_BSLASHPnotecite] = ACTIONS(12513), + [anon_sym_BSLASHfnotecite] = ACTIONS(12513), + [anon_sym_BSLASHusepackage] = ACTIONS(12513), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12513), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12513), + [anon_sym_BSLASHinclude] = ACTIONS(12513), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12513), + [anon_sym_BSLASHinput] = ACTIONS(12513), + [anon_sym_BSLASHsubfile] = ACTIONS(12513), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12513), + [anon_sym_BSLASHbibliography] = ACTIONS(12513), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12513), + [anon_sym_BSLASHincludesvg] = ACTIONS(12513), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12513), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12513), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12513), + [anon_sym_BSLASHimport] = ACTIONS(12513), + [anon_sym_BSLASHsubimport] = ACTIONS(12513), + [anon_sym_BSLASHinputfrom] = ACTIONS(12513), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12513), + [anon_sym_BSLASHincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHlabel] = ACTIONS(12513), + [anon_sym_BSLASHref] = ACTIONS(12513), + [anon_sym_BSLASHvref] = ACTIONS(12513), + [anon_sym_BSLASHVref] = ACTIONS(12513), + [anon_sym_BSLASHautoref] = ACTIONS(12513), + [anon_sym_BSLASHpageref] = ACTIONS(12513), + [anon_sym_BSLASHcref] = ACTIONS(12513), + [anon_sym_BSLASHCref] = ACTIONS(12513), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnameCref] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHlabelcref] = ACTIONS(12513), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12513), + [anon_sym_BSLASHeqref] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange] = ACTIONS(12513), + [anon_sym_BSLASHCrefrange] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewlabel] = ACTIONS(12513), + [anon_sym_BSLASHnewcommand] = ACTIONS(12513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12513), + [anon_sym_BSLASHgls] = ACTIONS(12513), + [anon_sym_BSLASHGls] = ACTIONS(12513), + [anon_sym_BSLASHGLS] = ACTIONS(12513), + [anon_sym_BSLASHglspl] = ACTIONS(12513), + [anon_sym_BSLASHGlspl] = ACTIONS(12513), + [anon_sym_BSLASHGLSpl] = ACTIONS(12513), + [anon_sym_BSLASHglsdisp] = ACTIONS(12513), + [anon_sym_BSLASHglslink] = ACTIONS(12513), + [anon_sym_BSLASHglstext] = ACTIONS(12513), + [anon_sym_BSLASHGlstext] = ACTIONS(12513), + [anon_sym_BSLASHGLStext] = ACTIONS(12513), + [anon_sym_BSLASHglsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12513), + [anon_sym_BSLASHglsplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSplural] = ACTIONS(12513), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHglsname] = ACTIONS(12513), + [anon_sym_BSLASHGlsname] = ACTIONS(12513), + [anon_sym_BSLASHGLSname] = ACTIONS(12513), + [anon_sym_BSLASHglssymbol] = ACTIONS(12513), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12513), + [anon_sym_BSLASHglsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12513), + [anon_sym_BSLASHglsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12513), + [anon_sym_BSLASHglsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12513), + [anon_sym_BSLASHglsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12513), + [anon_sym_BSLASHglsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12513), + [anon_sym_BSLASHnewacronym] = ACTIONS(12513), + [anon_sym_BSLASHacrshort] = ACTIONS(12513), + [anon_sym_BSLASHAcrshort] = ACTIONS(12513), + [anon_sym_BSLASHACRshort] = ACTIONS(12513), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12513), + [anon_sym_BSLASHacrlong] = ACTIONS(12513), + [anon_sym_BSLASHAcrlong] = ACTIONS(12513), + [anon_sym_BSLASHACRlong] = ACTIONS(12513), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12513), + [anon_sym_BSLASHacrfull] = ACTIONS(12513), + [anon_sym_BSLASHAcrfull] = ACTIONS(12513), + [anon_sym_BSLASHACRfull] = ACTIONS(12513), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12513), + [anon_sym_BSLASHacs] = ACTIONS(12513), + [anon_sym_BSLASHAcs] = ACTIONS(12513), + [anon_sym_BSLASHacsp] = ACTIONS(12513), + [anon_sym_BSLASHAcsp] = ACTIONS(12513), + [anon_sym_BSLASHacl] = ACTIONS(12513), + [anon_sym_BSLASHAcl] = ACTIONS(12513), + [anon_sym_BSLASHaclp] = ACTIONS(12513), + [anon_sym_BSLASHAclp] = ACTIONS(12513), + [anon_sym_BSLASHacf] = ACTIONS(12513), + [anon_sym_BSLASHAcf] = ACTIONS(12513), + [anon_sym_BSLASHacfp] = ACTIONS(12513), + [anon_sym_BSLASHAcfp] = ACTIONS(12513), + [anon_sym_BSLASHac] = ACTIONS(12513), + [anon_sym_BSLASHAc] = ACTIONS(12513), + [anon_sym_BSLASHacp] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12513), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12513), + [anon_sym_BSLASHcolor] = ACTIONS(12513), + [anon_sym_BSLASHcolorbox] = ACTIONS(12513), + [anon_sym_BSLASHtextcolor] = ACTIONS(12513), + [anon_sym_BSLASHpagecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12513), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12513), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12513), + }, + [1460] = { + [sym_generic_command_name] = ACTIONS(12519), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12519), + [aux_sym_paragraph_token1] = ACTIONS(12519), + [aux_sym_subparagraph_token1] = ACTIONS(12519), + [anon_sym_BSLASHitem] = ACTIONS(12519), + [anon_sym_LBRACK] = ACTIONS(12517), + [anon_sym_RBRACK] = ACTIONS(12517), + [anon_sym_LBRACE] = ACTIONS(12517), + [anon_sym_RBRACE] = ACTIONS(12517), + [anon_sym_LPAREN] = ACTIONS(12517), + [anon_sym_COMMA] = ACTIONS(12517), + [anon_sym_EQ] = ACTIONS(12517), + [sym_word] = ACTIONS(12517), + [sym_param] = ACTIONS(12517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12517), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12517), + [anon_sym_DOLLAR] = ACTIONS(12519), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12517), + [anon_sym_BSLASHbegin] = ACTIONS(12519), + [anon_sym_BSLASHcaption] = ACTIONS(12519), + [anon_sym_BSLASHcite] = ACTIONS(12519), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCite] = ACTIONS(12519), + [anon_sym_BSLASHnocite] = ACTIONS(12519), + [anon_sym_BSLASHcitet] = ACTIONS(12519), + [anon_sym_BSLASHcitep] = ACTIONS(12519), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteauthor] = ACTIONS(12519), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12519), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitetitle] = ACTIONS(12519), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteyear] = ACTIONS(12519), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitedate] = ACTIONS(12519), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteurl] = ACTIONS(12519), + [anon_sym_BSLASHfullcite] = ACTIONS(12519), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12519), + [anon_sym_BSLASHcitealt] = ACTIONS(12519), + [anon_sym_BSLASHcitealp] = ACTIONS(12519), + [anon_sym_BSLASHcitetext] = ACTIONS(12519), + [anon_sym_BSLASHparencite] = ACTIONS(12519), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHParencite] = ACTIONS(12519), + [anon_sym_BSLASHfootcite] = ACTIONS(12519), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12519), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12519), + [anon_sym_BSLASHtextcite] = ACTIONS(12519), + [anon_sym_BSLASHTextcite] = ACTIONS(12519), + [anon_sym_BSLASHsmartcite] = ACTIONS(12519), + [anon_sym_BSLASHSmartcite] = ACTIONS(12519), + [anon_sym_BSLASHsupercite] = ACTIONS(12519), + [anon_sym_BSLASHautocite] = ACTIONS(12519), + [anon_sym_BSLASHAutocite] = ACTIONS(12519), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHvolcite] = ACTIONS(12519), + [anon_sym_BSLASHVolcite] = ACTIONS(12519), + [anon_sym_BSLASHpvolcite] = ACTIONS(12519), + [anon_sym_BSLASHPvolcite] = ACTIONS(12519), + [anon_sym_BSLASHfvolcite] = ACTIONS(12519), + [anon_sym_BSLASHftvolcite] = ACTIONS(12519), + [anon_sym_BSLASHsvolcite] = ACTIONS(12519), + [anon_sym_BSLASHSvolcite] = ACTIONS(12519), + [anon_sym_BSLASHtvolcite] = ACTIONS(12519), + [anon_sym_BSLASHTvolcite] = ACTIONS(12519), + [anon_sym_BSLASHavolcite] = ACTIONS(12519), + [anon_sym_BSLASHAvolcite] = ACTIONS(12519), + [anon_sym_BSLASHnotecite] = ACTIONS(12519), + [anon_sym_BSLASHpnotecite] = ACTIONS(12519), + [anon_sym_BSLASHPnotecite] = ACTIONS(12519), + [anon_sym_BSLASHfnotecite] = ACTIONS(12519), + [anon_sym_BSLASHusepackage] = ACTIONS(12519), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12519), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12519), + [anon_sym_BSLASHinclude] = ACTIONS(12519), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12519), + [anon_sym_BSLASHinput] = ACTIONS(12519), + [anon_sym_BSLASHsubfile] = ACTIONS(12519), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12519), + [anon_sym_BSLASHbibliography] = ACTIONS(12519), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12519), + [anon_sym_BSLASHincludesvg] = ACTIONS(12519), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12519), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12519), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12519), + [anon_sym_BSLASHimport] = ACTIONS(12519), + [anon_sym_BSLASHsubimport] = ACTIONS(12519), + [anon_sym_BSLASHinputfrom] = ACTIONS(12519), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12519), + [anon_sym_BSLASHincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHlabel] = ACTIONS(12519), + [anon_sym_BSLASHref] = ACTIONS(12519), + [anon_sym_BSLASHvref] = ACTIONS(12519), + [anon_sym_BSLASHVref] = ACTIONS(12519), + [anon_sym_BSLASHautoref] = ACTIONS(12519), + [anon_sym_BSLASHpageref] = ACTIONS(12519), + [anon_sym_BSLASHcref] = ACTIONS(12519), + [anon_sym_BSLASHCref] = ACTIONS(12519), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnameCref] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHlabelcref] = ACTIONS(12519), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12519), + [anon_sym_BSLASHeqref] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange] = ACTIONS(12519), + [anon_sym_BSLASHCrefrange] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewlabel] = ACTIONS(12519), + [anon_sym_BSLASHnewcommand] = ACTIONS(12519), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12519), + [anon_sym_BSLASHgls] = ACTIONS(12519), + [anon_sym_BSLASHGls] = ACTIONS(12519), + [anon_sym_BSLASHGLS] = ACTIONS(12519), + [anon_sym_BSLASHglspl] = ACTIONS(12519), + [anon_sym_BSLASHGlspl] = ACTIONS(12519), + [anon_sym_BSLASHGLSpl] = ACTIONS(12519), + [anon_sym_BSLASHglsdisp] = ACTIONS(12519), + [anon_sym_BSLASHglslink] = ACTIONS(12519), + [anon_sym_BSLASHglstext] = ACTIONS(12519), + [anon_sym_BSLASHGlstext] = ACTIONS(12519), + [anon_sym_BSLASHGLStext] = ACTIONS(12519), + [anon_sym_BSLASHglsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12519), + [anon_sym_BSLASHglsplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSplural] = ACTIONS(12519), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHglsname] = ACTIONS(12519), + [anon_sym_BSLASHGlsname] = ACTIONS(12519), + [anon_sym_BSLASHGLSname] = ACTIONS(12519), + [anon_sym_BSLASHglssymbol] = ACTIONS(12519), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12519), + [anon_sym_BSLASHglsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12519), + [anon_sym_BSLASHglsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12519), + [anon_sym_BSLASHglsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12519), + [anon_sym_BSLASHglsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12519), + [anon_sym_BSLASHglsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12519), + [anon_sym_BSLASHnewacronym] = ACTIONS(12519), + [anon_sym_BSLASHacrshort] = ACTIONS(12519), + [anon_sym_BSLASHAcrshort] = ACTIONS(12519), + [anon_sym_BSLASHACRshort] = ACTIONS(12519), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12519), + [anon_sym_BSLASHacrlong] = ACTIONS(12519), + [anon_sym_BSLASHAcrlong] = ACTIONS(12519), + [anon_sym_BSLASHACRlong] = ACTIONS(12519), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12519), + [anon_sym_BSLASHacrfull] = ACTIONS(12519), + [anon_sym_BSLASHAcrfull] = ACTIONS(12519), + [anon_sym_BSLASHACRfull] = ACTIONS(12519), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12519), + [anon_sym_BSLASHacs] = ACTIONS(12519), + [anon_sym_BSLASHAcs] = ACTIONS(12519), + [anon_sym_BSLASHacsp] = ACTIONS(12519), + [anon_sym_BSLASHAcsp] = ACTIONS(12519), + [anon_sym_BSLASHacl] = ACTIONS(12519), + [anon_sym_BSLASHAcl] = ACTIONS(12519), + [anon_sym_BSLASHaclp] = ACTIONS(12519), + [anon_sym_BSLASHAclp] = ACTIONS(12519), + [anon_sym_BSLASHacf] = ACTIONS(12519), + [anon_sym_BSLASHAcf] = ACTIONS(12519), + [anon_sym_BSLASHacfp] = ACTIONS(12519), + [anon_sym_BSLASHAcfp] = ACTIONS(12519), + [anon_sym_BSLASHac] = ACTIONS(12519), + [anon_sym_BSLASHAc] = ACTIONS(12519), + [anon_sym_BSLASHacp] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12519), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12519), + [anon_sym_BSLASHcolor] = ACTIONS(12519), + [anon_sym_BSLASHcolorbox] = ACTIONS(12519), + [anon_sym_BSLASHtextcolor] = ACTIONS(12519), + [anon_sym_BSLASHpagecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12519), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12519), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12519), + }, + [1461] = { + [sym_generic_command_name] = ACTIONS(12523), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12523), + [aux_sym_paragraph_token1] = ACTIONS(12523), + [aux_sym_subparagraph_token1] = ACTIONS(12523), + [anon_sym_BSLASHitem] = ACTIONS(12523), + [anon_sym_LBRACK] = ACTIONS(12521), + [anon_sym_RBRACK] = ACTIONS(12521), + [anon_sym_LBRACE] = ACTIONS(12521), + [anon_sym_RBRACE] = ACTIONS(12521), + [anon_sym_LPAREN] = ACTIONS(12521), + [anon_sym_COMMA] = ACTIONS(12521), + [anon_sym_EQ] = ACTIONS(12521), + [sym_word] = ACTIONS(12521), + [sym_param] = ACTIONS(12521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12521), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12521), + [anon_sym_DOLLAR] = ACTIONS(12523), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12521), + [anon_sym_BSLASHbegin] = ACTIONS(12523), + [anon_sym_BSLASHcaption] = ACTIONS(12523), + [anon_sym_BSLASHcite] = ACTIONS(12523), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCite] = ACTIONS(12523), + [anon_sym_BSLASHnocite] = ACTIONS(12523), + [anon_sym_BSLASHcitet] = ACTIONS(12523), + [anon_sym_BSLASHcitep] = ACTIONS(12523), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteauthor] = ACTIONS(12523), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12523), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitetitle] = ACTIONS(12523), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteyear] = ACTIONS(12523), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitedate] = ACTIONS(12523), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteurl] = ACTIONS(12523), + [anon_sym_BSLASHfullcite] = ACTIONS(12523), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12523), + [anon_sym_BSLASHcitealt] = ACTIONS(12523), + [anon_sym_BSLASHcitealp] = ACTIONS(12523), + [anon_sym_BSLASHcitetext] = ACTIONS(12523), + [anon_sym_BSLASHparencite] = ACTIONS(12523), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHParencite] = ACTIONS(12523), + [anon_sym_BSLASHfootcite] = ACTIONS(12523), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12523), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12523), + [anon_sym_BSLASHtextcite] = ACTIONS(12523), + [anon_sym_BSLASHTextcite] = ACTIONS(12523), + [anon_sym_BSLASHsmartcite] = ACTIONS(12523), + [anon_sym_BSLASHSmartcite] = ACTIONS(12523), + [anon_sym_BSLASHsupercite] = ACTIONS(12523), + [anon_sym_BSLASHautocite] = ACTIONS(12523), + [anon_sym_BSLASHAutocite] = ACTIONS(12523), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHvolcite] = ACTIONS(12523), + [anon_sym_BSLASHVolcite] = ACTIONS(12523), + [anon_sym_BSLASHpvolcite] = ACTIONS(12523), + [anon_sym_BSLASHPvolcite] = ACTIONS(12523), + [anon_sym_BSLASHfvolcite] = ACTIONS(12523), + [anon_sym_BSLASHftvolcite] = ACTIONS(12523), + [anon_sym_BSLASHsvolcite] = ACTIONS(12523), + [anon_sym_BSLASHSvolcite] = ACTIONS(12523), + [anon_sym_BSLASHtvolcite] = ACTIONS(12523), + [anon_sym_BSLASHTvolcite] = ACTIONS(12523), + [anon_sym_BSLASHavolcite] = ACTIONS(12523), + [anon_sym_BSLASHAvolcite] = ACTIONS(12523), + [anon_sym_BSLASHnotecite] = ACTIONS(12523), + [anon_sym_BSLASHpnotecite] = ACTIONS(12523), + [anon_sym_BSLASHPnotecite] = ACTIONS(12523), + [anon_sym_BSLASHfnotecite] = ACTIONS(12523), + [anon_sym_BSLASHusepackage] = ACTIONS(12523), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12523), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12523), + [anon_sym_BSLASHinclude] = ACTIONS(12523), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12523), + [anon_sym_BSLASHinput] = ACTIONS(12523), + [anon_sym_BSLASHsubfile] = ACTIONS(12523), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12523), + [anon_sym_BSLASHbibliography] = ACTIONS(12523), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12523), + [anon_sym_BSLASHincludesvg] = ACTIONS(12523), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12523), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12523), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12523), + [anon_sym_BSLASHimport] = ACTIONS(12523), + [anon_sym_BSLASHsubimport] = ACTIONS(12523), + [anon_sym_BSLASHinputfrom] = ACTIONS(12523), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12523), + [anon_sym_BSLASHincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHlabel] = ACTIONS(12523), + [anon_sym_BSLASHref] = ACTIONS(12523), + [anon_sym_BSLASHvref] = ACTIONS(12523), + [anon_sym_BSLASHVref] = ACTIONS(12523), + [anon_sym_BSLASHautoref] = ACTIONS(12523), + [anon_sym_BSLASHpageref] = ACTIONS(12523), + [anon_sym_BSLASHcref] = ACTIONS(12523), + [anon_sym_BSLASHCref] = ACTIONS(12523), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnameCref] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHlabelcref] = ACTIONS(12523), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12523), + [anon_sym_BSLASHeqref] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange] = ACTIONS(12523), + [anon_sym_BSLASHCrefrange] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewlabel] = ACTIONS(12523), + [anon_sym_BSLASHnewcommand] = ACTIONS(12523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12523), + [anon_sym_BSLASHgls] = ACTIONS(12523), + [anon_sym_BSLASHGls] = ACTIONS(12523), + [anon_sym_BSLASHGLS] = ACTIONS(12523), + [anon_sym_BSLASHglspl] = ACTIONS(12523), + [anon_sym_BSLASHGlspl] = ACTIONS(12523), + [anon_sym_BSLASHGLSpl] = ACTIONS(12523), + [anon_sym_BSLASHglsdisp] = ACTIONS(12523), + [anon_sym_BSLASHglslink] = ACTIONS(12523), + [anon_sym_BSLASHglstext] = ACTIONS(12523), + [anon_sym_BSLASHGlstext] = ACTIONS(12523), + [anon_sym_BSLASHGLStext] = ACTIONS(12523), + [anon_sym_BSLASHglsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12523), + [anon_sym_BSLASHglsplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSplural] = ACTIONS(12523), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHglsname] = ACTIONS(12523), + [anon_sym_BSLASHGlsname] = ACTIONS(12523), + [anon_sym_BSLASHGLSname] = ACTIONS(12523), + [anon_sym_BSLASHglssymbol] = ACTIONS(12523), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12523), + [anon_sym_BSLASHglsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12523), + [anon_sym_BSLASHglsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12523), + [anon_sym_BSLASHglsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12523), + [anon_sym_BSLASHglsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12523), + [anon_sym_BSLASHglsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12523), + [anon_sym_BSLASHnewacronym] = ACTIONS(12523), + [anon_sym_BSLASHacrshort] = ACTIONS(12523), + [anon_sym_BSLASHAcrshort] = ACTIONS(12523), + [anon_sym_BSLASHACRshort] = ACTIONS(12523), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12523), + [anon_sym_BSLASHacrlong] = ACTIONS(12523), + [anon_sym_BSLASHAcrlong] = ACTIONS(12523), + [anon_sym_BSLASHACRlong] = ACTIONS(12523), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12523), + [anon_sym_BSLASHacrfull] = ACTIONS(12523), + [anon_sym_BSLASHAcrfull] = ACTIONS(12523), + [anon_sym_BSLASHACRfull] = ACTIONS(12523), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12523), + [anon_sym_BSLASHacs] = ACTIONS(12523), + [anon_sym_BSLASHAcs] = ACTIONS(12523), + [anon_sym_BSLASHacsp] = ACTIONS(12523), + [anon_sym_BSLASHAcsp] = ACTIONS(12523), + [anon_sym_BSLASHacl] = ACTIONS(12523), + [anon_sym_BSLASHAcl] = ACTIONS(12523), + [anon_sym_BSLASHaclp] = ACTIONS(12523), + [anon_sym_BSLASHAclp] = ACTIONS(12523), + [anon_sym_BSLASHacf] = ACTIONS(12523), + [anon_sym_BSLASHAcf] = ACTIONS(12523), + [anon_sym_BSLASHacfp] = ACTIONS(12523), + [anon_sym_BSLASHAcfp] = ACTIONS(12523), + [anon_sym_BSLASHac] = ACTIONS(12523), + [anon_sym_BSLASHAc] = ACTIONS(12523), + [anon_sym_BSLASHacp] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12523), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12523), + [anon_sym_BSLASHcolor] = ACTIONS(12523), + [anon_sym_BSLASHcolorbox] = ACTIONS(12523), + [anon_sym_BSLASHtextcolor] = ACTIONS(12523), + [anon_sym_BSLASHpagecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12523), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12523), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12523), + }, + [1462] = { + [sym_generic_command_name] = ACTIONS(12527), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12527), + [aux_sym_paragraph_token1] = ACTIONS(12527), + [aux_sym_subparagraph_token1] = ACTIONS(12527), + [anon_sym_BSLASHitem] = ACTIONS(12527), + [anon_sym_LBRACK] = ACTIONS(12525), + [anon_sym_RBRACK] = ACTIONS(12525), + [anon_sym_LBRACE] = ACTIONS(12525), + [anon_sym_RBRACE] = ACTIONS(12525), + [anon_sym_LPAREN] = ACTIONS(12525), + [anon_sym_COMMA] = ACTIONS(12525), + [anon_sym_EQ] = ACTIONS(12525), + [sym_word] = ACTIONS(12525), + [sym_param] = ACTIONS(12525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12525), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12525), + [anon_sym_DOLLAR] = ACTIONS(12527), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12525), + [anon_sym_BSLASHbegin] = ACTIONS(12527), + [anon_sym_BSLASHcaption] = ACTIONS(12527), + [anon_sym_BSLASHcite] = ACTIONS(12527), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCite] = ACTIONS(12527), + [anon_sym_BSLASHnocite] = ACTIONS(12527), + [anon_sym_BSLASHcitet] = ACTIONS(12527), + [anon_sym_BSLASHcitep] = ACTIONS(12527), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteauthor] = ACTIONS(12527), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12527), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitetitle] = ACTIONS(12527), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteyear] = ACTIONS(12527), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitedate] = ACTIONS(12527), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteurl] = ACTIONS(12527), + [anon_sym_BSLASHfullcite] = ACTIONS(12527), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12527), + [anon_sym_BSLASHcitealt] = ACTIONS(12527), + [anon_sym_BSLASHcitealp] = ACTIONS(12527), + [anon_sym_BSLASHcitetext] = ACTIONS(12527), + [anon_sym_BSLASHparencite] = ACTIONS(12527), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHParencite] = ACTIONS(12527), + [anon_sym_BSLASHfootcite] = ACTIONS(12527), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12527), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12527), + [anon_sym_BSLASHtextcite] = ACTIONS(12527), + [anon_sym_BSLASHTextcite] = ACTIONS(12527), + [anon_sym_BSLASHsmartcite] = ACTIONS(12527), + [anon_sym_BSLASHSmartcite] = ACTIONS(12527), + [anon_sym_BSLASHsupercite] = ACTIONS(12527), + [anon_sym_BSLASHautocite] = ACTIONS(12527), + [anon_sym_BSLASHAutocite] = ACTIONS(12527), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHvolcite] = ACTIONS(12527), + [anon_sym_BSLASHVolcite] = ACTIONS(12527), + [anon_sym_BSLASHpvolcite] = ACTIONS(12527), + [anon_sym_BSLASHPvolcite] = ACTIONS(12527), + [anon_sym_BSLASHfvolcite] = ACTIONS(12527), + [anon_sym_BSLASHftvolcite] = ACTIONS(12527), + [anon_sym_BSLASHsvolcite] = ACTIONS(12527), + [anon_sym_BSLASHSvolcite] = ACTIONS(12527), + [anon_sym_BSLASHtvolcite] = ACTIONS(12527), + [anon_sym_BSLASHTvolcite] = ACTIONS(12527), + [anon_sym_BSLASHavolcite] = ACTIONS(12527), + [anon_sym_BSLASHAvolcite] = ACTIONS(12527), + [anon_sym_BSLASHnotecite] = ACTIONS(12527), + [anon_sym_BSLASHpnotecite] = ACTIONS(12527), + [anon_sym_BSLASHPnotecite] = ACTIONS(12527), + [anon_sym_BSLASHfnotecite] = ACTIONS(12527), + [anon_sym_BSLASHusepackage] = ACTIONS(12527), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12527), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12527), + [anon_sym_BSLASHinclude] = ACTIONS(12527), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12527), + [anon_sym_BSLASHinput] = ACTIONS(12527), + [anon_sym_BSLASHsubfile] = ACTIONS(12527), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12527), + [anon_sym_BSLASHbibliography] = ACTIONS(12527), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12527), + [anon_sym_BSLASHincludesvg] = ACTIONS(12527), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12527), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12527), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12527), + [anon_sym_BSLASHimport] = ACTIONS(12527), + [anon_sym_BSLASHsubimport] = ACTIONS(12527), + [anon_sym_BSLASHinputfrom] = ACTIONS(12527), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12527), + [anon_sym_BSLASHincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHlabel] = ACTIONS(12527), + [anon_sym_BSLASHref] = ACTIONS(12527), + [anon_sym_BSLASHvref] = ACTIONS(12527), + [anon_sym_BSLASHVref] = ACTIONS(12527), + [anon_sym_BSLASHautoref] = ACTIONS(12527), + [anon_sym_BSLASHpageref] = ACTIONS(12527), + [anon_sym_BSLASHcref] = ACTIONS(12527), + [anon_sym_BSLASHCref] = ACTIONS(12527), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnameCref] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHlabelcref] = ACTIONS(12527), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12527), + [anon_sym_BSLASHeqref] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange] = ACTIONS(12527), + [anon_sym_BSLASHCrefrange] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewlabel] = ACTIONS(12527), + [anon_sym_BSLASHnewcommand] = ACTIONS(12527), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12527), + [anon_sym_BSLASHgls] = ACTIONS(12527), + [anon_sym_BSLASHGls] = ACTIONS(12527), + [anon_sym_BSLASHGLS] = ACTIONS(12527), + [anon_sym_BSLASHglspl] = ACTIONS(12527), + [anon_sym_BSLASHGlspl] = ACTIONS(12527), + [anon_sym_BSLASHGLSpl] = ACTIONS(12527), + [anon_sym_BSLASHglsdisp] = ACTIONS(12527), + [anon_sym_BSLASHglslink] = ACTIONS(12527), + [anon_sym_BSLASHglstext] = ACTIONS(12527), + [anon_sym_BSLASHGlstext] = ACTIONS(12527), + [anon_sym_BSLASHGLStext] = ACTIONS(12527), + [anon_sym_BSLASHglsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12527), + [anon_sym_BSLASHglsplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSplural] = ACTIONS(12527), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHglsname] = ACTIONS(12527), + [anon_sym_BSLASHGlsname] = ACTIONS(12527), + [anon_sym_BSLASHGLSname] = ACTIONS(12527), + [anon_sym_BSLASHglssymbol] = ACTIONS(12527), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12527), + [anon_sym_BSLASHglsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12527), + [anon_sym_BSLASHglsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12527), + [anon_sym_BSLASHglsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12527), + [anon_sym_BSLASHglsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12527), + [anon_sym_BSLASHglsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12527), + [anon_sym_BSLASHnewacronym] = ACTIONS(12527), + [anon_sym_BSLASHacrshort] = ACTIONS(12527), + [anon_sym_BSLASHAcrshort] = ACTIONS(12527), + [anon_sym_BSLASHACRshort] = ACTIONS(12527), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12527), + [anon_sym_BSLASHacrlong] = ACTIONS(12527), + [anon_sym_BSLASHAcrlong] = ACTIONS(12527), + [anon_sym_BSLASHACRlong] = ACTIONS(12527), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12527), + [anon_sym_BSLASHacrfull] = ACTIONS(12527), + [anon_sym_BSLASHAcrfull] = ACTIONS(12527), + [anon_sym_BSLASHACRfull] = ACTIONS(12527), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12527), + [anon_sym_BSLASHacs] = ACTIONS(12527), + [anon_sym_BSLASHAcs] = ACTIONS(12527), + [anon_sym_BSLASHacsp] = ACTIONS(12527), + [anon_sym_BSLASHAcsp] = ACTIONS(12527), + [anon_sym_BSLASHacl] = ACTIONS(12527), + [anon_sym_BSLASHAcl] = ACTIONS(12527), + [anon_sym_BSLASHaclp] = ACTIONS(12527), + [anon_sym_BSLASHAclp] = ACTIONS(12527), + [anon_sym_BSLASHacf] = ACTIONS(12527), + [anon_sym_BSLASHAcf] = ACTIONS(12527), + [anon_sym_BSLASHacfp] = ACTIONS(12527), + [anon_sym_BSLASHAcfp] = ACTIONS(12527), + [anon_sym_BSLASHac] = ACTIONS(12527), + [anon_sym_BSLASHAc] = ACTIONS(12527), + [anon_sym_BSLASHacp] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12527), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12527), + [anon_sym_BSLASHcolor] = ACTIONS(12527), + [anon_sym_BSLASHcolorbox] = ACTIONS(12527), + [anon_sym_BSLASHtextcolor] = ACTIONS(12527), + [anon_sym_BSLASHpagecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12527), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12527), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12527), + }, + [1463] = { + [sym_generic_command_name] = ACTIONS(12531), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12531), + [aux_sym_paragraph_token1] = ACTIONS(12531), + [aux_sym_subparagraph_token1] = ACTIONS(12531), + [anon_sym_BSLASHitem] = ACTIONS(12531), + [anon_sym_LBRACK] = ACTIONS(12529), + [anon_sym_RBRACK] = ACTIONS(12529), + [anon_sym_LBRACE] = ACTIONS(12529), + [anon_sym_RBRACE] = ACTIONS(12529), + [anon_sym_LPAREN] = ACTIONS(12529), + [anon_sym_COMMA] = ACTIONS(12529), + [anon_sym_EQ] = ACTIONS(12529), + [sym_word] = ACTIONS(12529), + [sym_param] = ACTIONS(12529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12529), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12529), + [anon_sym_DOLLAR] = ACTIONS(12531), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12529), + [anon_sym_BSLASHbegin] = ACTIONS(12531), + [anon_sym_BSLASHcaption] = ACTIONS(12531), + [anon_sym_BSLASHcite] = ACTIONS(12531), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCite] = ACTIONS(12531), + [anon_sym_BSLASHnocite] = ACTIONS(12531), + [anon_sym_BSLASHcitet] = ACTIONS(12531), + [anon_sym_BSLASHcitep] = ACTIONS(12531), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteauthor] = ACTIONS(12531), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12531), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitetitle] = ACTIONS(12531), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteyear] = ACTIONS(12531), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitedate] = ACTIONS(12531), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteurl] = ACTIONS(12531), + [anon_sym_BSLASHfullcite] = ACTIONS(12531), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12531), + [anon_sym_BSLASHcitealt] = ACTIONS(12531), + [anon_sym_BSLASHcitealp] = ACTIONS(12531), + [anon_sym_BSLASHcitetext] = ACTIONS(12531), + [anon_sym_BSLASHparencite] = ACTIONS(12531), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHParencite] = ACTIONS(12531), + [anon_sym_BSLASHfootcite] = ACTIONS(12531), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12531), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12531), + [anon_sym_BSLASHtextcite] = ACTIONS(12531), + [anon_sym_BSLASHTextcite] = ACTIONS(12531), + [anon_sym_BSLASHsmartcite] = ACTIONS(12531), + [anon_sym_BSLASHSmartcite] = ACTIONS(12531), + [anon_sym_BSLASHsupercite] = ACTIONS(12531), + [anon_sym_BSLASHautocite] = ACTIONS(12531), + [anon_sym_BSLASHAutocite] = ACTIONS(12531), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHvolcite] = ACTIONS(12531), + [anon_sym_BSLASHVolcite] = ACTIONS(12531), + [anon_sym_BSLASHpvolcite] = ACTIONS(12531), + [anon_sym_BSLASHPvolcite] = ACTIONS(12531), + [anon_sym_BSLASHfvolcite] = ACTIONS(12531), + [anon_sym_BSLASHftvolcite] = ACTIONS(12531), + [anon_sym_BSLASHsvolcite] = ACTIONS(12531), + [anon_sym_BSLASHSvolcite] = ACTIONS(12531), + [anon_sym_BSLASHtvolcite] = ACTIONS(12531), + [anon_sym_BSLASHTvolcite] = ACTIONS(12531), + [anon_sym_BSLASHavolcite] = ACTIONS(12531), + [anon_sym_BSLASHAvolcite] = ACTIONS(12531), + [anon_sym_BSLASHnotecite] = ACTIONS(12531), + [anon_sym_BSLASHpnotecite] = ACTIONS(12531), + [anon_sym_BSLASHPnotecite] = ACTIONS(12531), + [anon_sym_BSLASHfnotecite] = ACTIONS(12531), + [anon_sym_BSLASHusepackage] = ACTIONS(12531), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12531), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12531), + [anon_sym_BSLASHinclude] = ACTIONS(12531), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12531), + [anon_sym_BSLASHinput] = ACTIONS(12531), + [anon_sym_BSLASHsubfile] = ACTIONS(12531), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12531), + [anon_sym_BSLASHbibliography] = ACTIONS(12531), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12531), + [anon_sym_BSLASHincludesvg] = ACTIONS(12531), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12531), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12531), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12531), + [anon_sym_BSLASHimport] = ACTIONS(12531), + [anon_sym_BSLASHsubimport] = ACTIONS(12531), + [anon_sym_BSLASHinputfrom] = ACTIONS(12531), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12531), + [anon_sym_BSLASHincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHlabel] = ACTIONS(12531), + [anon_sym_BSLASHref] = ACTIONS(12531), + [anon_sym_BSLASHvref] = ACTIONS(12531), + [anon_sym_BSLASHVref] = ACTIONS(12531), + [anon_sym_BSLASHautoref] = ACTIONS(12531), + [anon_sym_BSLASHpageref] = ACTIONS(12531), + [anon_sym_BSLASHcref] = ACTIONS(12531), + [anon_sym_BSLASHCref] = ACTIONS(12531), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnameCref] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHlabelcref] = ACTIONS(12531), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12531), + [anon_sym_BSLASHeqref] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange] = ACTIONS(12531), + [anon_sym_BSLASHCrefrange] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewlabel] = ACTIONS(12531), + [anon_sym_BSLASHnewcommand] = ACTIONS(12531), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12531), + [anon_sym_BSLASHgls] = ACTIONS(12531), + [anon_sym_BSLASHGls] = ACTIONS(12531), + [anon_sym_BSLASHGLS] = ACTIONS(12531), + [anon_sym_BSLASHglspl] = ACTIONS(12531), + [anon_sym_BSLASHGlspl] = ACTIONS(12531), + [anon_sym_BSLASHGLSpl] = ACTIONS(12531), + [anon_sym_BSLASHglsdisp] = ACTIONS(12531), + [anon_sym_BSLASHglslink] = ACTIONS(12531), + [anon_sym_BSLASHglstext] = ACTIONS(12531), + [anon_sym_BSLASHGlstext] = ACTIONS(12531), + [anon_sym_BSLASHGLStext] = ACTIONS(12531), + [anon_sym_BSLASHglsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12531), + [anon_sym_BSLASHglsplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSplural] = ACTIONS(12531), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHglsname] = ACTIONS(12531), + [anon_sym_BSLASHGlsname] = ACTIONS(12531), + [anon_sym_BSLASHGLSname] = ACTIONS(12531), + [anon_sym_BSLASHglssymbol] = ACTIONS(12531), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12531), + [anon_sym_BSLASHglsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12531), + [anon_sym_BSLASHglsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12531), + [anon_sym_BSLASHglsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12531), + [anon_sym_BSLASHglsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12531), + [anon_sym_BSLASHglsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12531), + [anon_sym_BSLASHnewacronym] = ACTIONS(12531), + [anon_sym_BSLASHacrshort] = ACTIONS(12531), + [anon_sym_BSLASHAcrshort] = ACTIONS(12531), + [anon_sym_BSLASHACRshort] = ACTIONS(12531), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12531), + [anon_sym_BSLASHacrlong] = ACTIONS(12531), + [anon_sym_BSLASHAcrlong] = ACTIONS(12531), + [anon_sym_BSLASHACRlong] = ACTIONS(12531), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12531), + [anon_sym_BSLASHacrfull] = ACTIONS(12531), + [anon_sym_BSLASHAcrfull] = ACTIONS(12531), + [anon_sym_BSLASHACRfull] = ACTIONS(12531), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12531), + [anon_sym_BSLASHacs] = ACTIONS(12531), + [anon_sym_BSLASHAcs] = ACTIONS(12531), + [anon_sym_BSLASHacsp] = ACTIONS(12531), + [anon_sym_BSLASHAcsp] = ACTIONS(12531), + [anon_sym_BSLASHacl] = ACTIONS(12531), + [anon_sym_BSLASHAcl] = ACTIONS(12531), + [anon_sym_BSLASHaclp] = ACTIONS(12531), + [anon_sym_BSLASHAclp] = ACTIONS(12531), + [anon_sym_BSLASHacf] = ACTIONS(12531), + [anon_sym_BSLASHAcf] = ACTIONS(12531), + [anon_sym_BSLASHacfp] = ACTIONS(12531), + [anon_sym_BSLASHAcfp] = ACTIONS(12531), + [anon_sym_BSLASHac] = ACTIONS(12531), + [anon_sym_BSLASHAc] = ACTIONS(12531), + [anon_sym_BSLASHacp] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12531), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12531), + [anon_sym_BSLASHcolor] = ACTIONS(12531), + [anon_sym_BSLASHcolorbox] = ACTIONS(12531), + [anon_sym_BSLASHtextcolor] = ACTIONS(12531), + [anon_sym_BSLASHpagecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12531), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12531), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12531), + }, + [1464] = { + [sym_generic_command_name] = ACTIONS(12539), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12539), + [aux_sym_paragraph_token1] = ACTIONS(12539), + [aux_sym_subparagraph_token1] = ACTIONS(12539), + [anon_sym_BSLASHitem] = ACTIONS(12539), + [anon_sym_LBRACK] = ACTIONS(12537), + [anon_sym_RBRACK] = ACTIONS(12537), + [anon_sym_LBRACE] = ACTIONS(12537), + [anon_sym_RBRACE] = ACTIONS(12537), + [anon_sym_LPAREN] = ACTIONS(12537), + [anon_sym_COMMA] = ACTIONS(12537), + [anon_sym_EQ] = ACTIONS(12537), + [sym_word] = ACTIONS(12537), + [sym_param] = ACTIONS(12537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12537), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12537), + [anon_sym_DOLLAR] = ACTIONS(12539), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12537), + [anon_sym_BSLASHbegin] = ACTIONS(12539), + [anon_sym_BSLASHcaption] = ACTIONS(12539), + [anon_sym_BSLASHcite] = ACTIONS(12539), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCite] = ACTIONS(12539), + [anon_sym_BSLASHnocite] = ACTIONS(12539), + [anon_sym_BSLASHcitet] = ACTIONS(12539), + [anon_sym_BSLASHcitep] = ACTIONS(12539), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteauthor] = ACTIONS(12539), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12539), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitetitle] = ACTIONS(12539), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteyear] = ACTIONS(12539), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitedate] = ACTIONS(12539), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteurl] = ACTIONS(12539), + [anon_sym_BSLASHfullcite] = ACTIONS(12539), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12539), + [anon_sym_BSLASHcitealt] = ACTIONS(12539), + [anon_sym_BSLASHcitealp] = ACTIONS(12539), + [anon_sym_BSLASHcitetext] = ACTIONS(12539), + [anon_sym_BSLASHparencite] = ACTIONS(12539), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHParencite] = ACTIONS(12539), + [anon_sym_BSLASHfootcite] = ACTIONS(12539), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12539), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12539), + [anon_sym_BSLASHtextcite] = ACTIONS(12539), + [anon_sym_BSLASHTextcite] = ACTIONS(12539), + [anon_sym_BSLASHsmartcite] = ACTIONS(12539), + [anon_sym_BSLASHSmartcite] = ACTIONS(12539), + [anon_sym_BSLASHsupercite] = ACTIONS(12539), + [anon_sym_BSLASHautocite] = ACTIONS(12539), + [anon_sym_BSLASHAutocite] = ACTIONS(12539), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHvolcite] = ACTIONS(12539), + [anon_sym_BSLASHVolcite] = ACTIONS(12539), + [anon_sym_BSLASHpvolcite] = ACTIONS(12539), + [anon_sym_BSLASHPvolcite] = ACTIONS(12539), + [anon_sym_BSLASHfvolcite] = ACTIONS(12539), + [anon_sym_BSLASHftvolcite] = ACTIONS(12539), + [anon_sym_BSLASHsvolcite] = ACTIONS(12539), + [anon_sym_BSLASHSvolcite] = ACTIONS(12539), + [anon_sym_BSLASHtvolcite] = ACTIONS(12539), + [anon_sym_BSLASHTvolcite] = ACTIONS(12539), + [anon_sym_BSLASHavolcite] = ACTIONS(12539), + [anon_sym_BSLASHAvolcite] = ACTIONS(12539), + [anon_sym_BSLASHnotecite] = ACTIONS(12539), + [anon_sym_BSLASHpnotecite] = ACTIONS(12539), + [anon_sym_BSLASHPnotecite] = ACTIONS(12539), + [anon_sym_BSLASHfnotecite] = ACTIONS(12539), + [anon_sym_BSLASHusepackage] = ACTIONS(12539), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12539), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12539), + [anon_sym_BSLASHinclude] = ACTIONS(12539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12539), + [anon_sym_BSLASHinput] = ACTIONS(12539), + [anon_sym_BSLASHsubfile] = ACTIONS(12539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12539), + [anon_sym_BSLASHbibliography] = ACTIONS(12539), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12539), + [anon_sym_BSLASHincludesvg] = ACTIONS(12539), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12539), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12539), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12539), + [anon_sym_BSLASHimport] = ACTIONS(12539), + [anon_sym_BSLASHsubimport] = ACTIONS(12539), + [anon_sym_BSLASHinputfrom] = ACTIONS(12539), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12539), + [anon_sym_BSLASHincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHlabel] = ACTIONS(12539), + [anon_sym_BSLASHref] = ACTIONS(12539), + [anon_sym_BSLASHvref] = ACTIONS(12539), + [anon_sym_BSLASHVref] = ACTIONS(12539), + [anon_sym_BSLASHautoref] = ACTIONS(12539), + [anon_sym_BSLASHpageref] = ACTIONS(12539), + [anon_sym_BSLASHcref] = ACTIONS(12539), + [anon_sym_BSLASHCref] = ACTIONS(12539), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnameCref] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHlabelcref] = ACTIONS(12539), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12539), + [anon_sym_BSLASHeqref] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange] = ACTIONS(12539), + [anon_sym_BSLASHCrefrange] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewlabel] = ACTIONS(12539), + [anon_sym_BSLASHnewcommand] = ACTIONS(12539), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12539), + [anon_sym_BSLASHgls] = ACTIONS(12539), + [anon_sym_BSLASHGls] = ACTIONS(12539), + [anon_sym_BSLASHGLS] = ACTIONS(12539), + [anon_sym_BSLASHglspl] = ACTIONS(12539), + [anon_sym_BSLASHGlspl] = ACTIONS(12539), + [anon_sym_BSLASHGLSpl] = ACTIONS(12539), + [anon_sym_BSLASHglsdisp] = ACTIONS(12539), + [anon_sym_BSLASHglslink] = ACTIONS(12539), + [anon_sym_BSLASHglstext] = ACTIONS(12539), + [anon_sym_BSLASHGlstext] = ACTIONS(12539), + [anon_sym_BSLASHGLStext] = ACTIONS(12539), + [anon_sym_BSLASHglsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12539), + [anon_sym_BSLASHglsplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSplural] = ACTIONS(12539), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHglsname] = ACTIONS(12539), + [anon_sym_BSLASHGlsname] = ACTIONS(12539), + [anon_sym_BSLASHGLSname] = ACTIONS(12539), + [anon_sym_BSLASHglssymbol] = ACTIONS(12539), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12539), + [anon_sym_BSLASHglsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12539), + [anon_sym_BSLASHglsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12539), + [anon_sym_BSLASHglsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12539), + [anon_sym_BSLASHglsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12539), + [anon_sym_BSLASHglsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12539), + [anon_sym_BSLASHnewacronym] = ACTIONS(12539), + [anon_sym_BSLASHacrshort] = ACTIONS(12539), + [anon_sym_BSLASHAcrshort] = ACTIONS(12539), + [anon_sym_BSLASHACRshort] = ACTIONS(12539), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12539), + [anon_sym_BSLASHacrlong] = ACTIONS(12539), + [anon_sym_BSLASHAcrlong] = ACTIONS(12539), + [anon_sym_BSLASHACRlong] = ACTIONS(12539), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12539), + [anon_sym_BSLASHacrfull] = ACTIONS(12539), + [anon_sym_BSLASHAcrfull] = ACTIONS(12539), + [anon_sym_BSLASHACRfull] = ACTIONS(12539), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12539), + [anon_sym_BSLASHacs] = ACTIONS(12539), + [anon_sym_BSLASHAcs] = ACTIONS(12539), + [anon_sym_BSLASHacsp] = ACTIONS(12539), + [anon_sym_BSLASHAcsp] = ACTIONS(12539), + [anon_sym_BSLASHacl] = ACTIONS(12539), + [anon_sym_BSLASHAcl] = ACTIONS(12539), + [anon_sym_BSLASHaclp] = ACTIONS(12539), + [anon_sym_BSLASHAclp] = ACTIONS(12539), + [anon_sym_BSLASHacf] = ACTIONS(12539), + [anon_sym_BSLASHAcf] = ACTIONS(12539), + [anon_sym_BSLASHacfp] = ACTIONS(12539), + [anon_sym_BSLASHAcfp] = ACTIONS(12539), + [anon_sym_BSLASHac] = ACTIONS(12539), + [anon_sym_BSLASHAc] = ACTIONS(12539), + [anon_sym_BSLASHacp] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12539), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12539), + [anon_sym_BSLASHcolor] = ACTIONS(12539), + [anon_sym_BSLASHcolorbox] = ACTIONS(12539), + [anon_sym_BSLASHtextcolor] = ACTIONS(12539), + [anon_sym_BSLASHpagecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12539), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12539), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12539), + }, + [1465] = { + [sym_generic_command_name] = ACTIONS(12543), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12543), + [aux_sym_paragraph_token1] = ACTIONS(12543), + [aux_sym_subparagraph_token1] = ACTIONS(12543), + [anon_sym_BSLASHitem] = ACTIONS(12543), + [anon_sym_LBRACK] = ACTIONS(12541), + [anon_sym_RBRACK] = ACTIONS(12541), + [anon_sym_LBRACE] = ACTIONS(12541), + [anon_sym_RBRACE] = ACTIONS(12541), + [anon_sym_LPAREN] = ACTIONS(12541), + [anon_sym_COMMA] = ACTIONS(12541), + [anon_sym_EQ] = ACTIONS(12541), + [sym_word] = ACTIONS(12541), + [sym_param] = ACTIONS(12541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12541), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12541), + [anon_sym_DOLLAR] = ACTIONS(12543), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12541), + [anon_sym_BSLASHbegin] = ACTIONS(12543), + [anon_sym_BSLASHcaption] = ACTIONS(12543), + [anon_sym_BSLASHcite] = ACTIONS(12543), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCite] = ACTIONS(12543), + [anon_sym_BSLASHnocite] = ACTIONS(12543), + [anon_sym_BSLASHcitet] = ACTIONS(12543), + [anon_sym_BSLASHcitep] = ACTIONS(12543), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteauthor] = ACTIONS(12543), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12543), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitetitle] = ACTIONS(12543), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteyear] = ACTIONS(12543), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitedate] = ACTIONS(12543), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteurl] = ACTIONS(12543), + [anon_sym_BSLASHfullcite] = ACTIONS(12543), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12543), + [anon_sym_BSLASHcitealt] = ACTIONS(12543), + [anon_sym_BSLASHcitealp] = ACTIONS(12543), + [anon_sym_BSLASHcitetext] = ACTIONS(12543), + [anon_sym_BSLASHparencite] = ACTIONS(12543), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHParencite] = ACTIONS(12543), + [anon_sym_BSLASHfootcite] = ACTIONS(12543), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12543), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12543), + [anon_sym_BSLASHtextcite] = ACTIONS(12543), + [anon_sym_BSLASHTextcite] = ACTIONS(12543), + [anon_sym_BSLASHsmartcite] = ACTIONS(12543), + [anon_sym_BSLASHSmartcite] = ACTIONS(12543), + [anon_sym_BSLASHsupercite] = ACTIONS(12543), + [anon_sym_BSLASHautocite] = ACTIONS(12543), + [anon_sym_BSLASHAutocite] = ACTIONS(12543), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHvolcite] = ACTIONS(12543), + [anon_sym_BSLASHVolcite] = ACTIONS(12543), + [anon_sym_BSLASHpvolcite] = ACTIONS(12543), + [anon_sym_BSLASHPvolcite] = ACTIONS(12543), + [anon_sym_BSLASHfvolcite] = ACTIONS(12543), + [anon_sym_BSLASHftvolcite] = ACTIONS(12543), + [anon_sym_BSLASHsvolcite] = ACTIONS(12543), + [anon_sym_BSLASHSvolcite] = ACTIONS(12543), + [anon_sym_BSLASHtvolcite] = ACTIONS(12543), + [anon_sym_BSLASHTvolcite] = ACTIONS(12543), + [anon_sym_BSLASHavolcite] = ACTIONS(12543), + [anon_sym_BSLASHAvolcite] = ACTIONS(12543), + [anon_sym_BSLASHnotecite] = ACTIONS(12543), + [anon_sym_BSLASHpnotecite] = ACTIONS(12543), + [anon_sym_BSLASHPnotecite] = ACTIONS(12543), + [anon_sym_BSLASHfnotecite] = ACTIONS(12543), + [anon_sym_BSLASHusepackage] = ACTIONS(12543), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12543), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12543), + [anon_sym_BSLASHinclude] = ACTIONS(12543), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12543), + [anon_sym_BSLASHinput] = ACTIONS(12543), + [anon_sym_BSLASHsubfile] = ACTIONS(12543), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12543), + [anon_sym_BSLASHbibliography] = ACTIONS(12543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12543), + [anon_sym_BSLASHincludesvg] = ACTIONS(12543), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12543), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12543), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12543), + [anon_sym_BSLASHimport] = ACTIONS(12543), + [anon_sym_BSLASHsubimport] = ACTIONS(12543), + [anon_sym_BSLASHinputfrom] = ACTIONS(12543), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12543), + [anon_sym_BSLASHincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHlabel] = ACTIONS(12543), + [anon_sym_BSLASHref] = ACTIONS(12543), + [anon_sym_BSLASHvref] = ACTIONS(12543), + [anon_sym_BSLASHVref] = ACTIONS(12543), + [anon_sym_BSLASHautoref] = ACTIONS(12543), + [anon_sym_BSLASHpageref] = ACTIONS(12543), + [anon_sym_BSLASHcref] = ACTIONS(12543), + [anon_sym_BSLASHCref] = ACTIONS(12543), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnameCref] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHlabelcref] = ACTIONS(12543), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12543), + [anon_sym_BSLASHeqref] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange] = ACTIONS(12543), + [anon_sym_BSLASHCrefrange] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewlabel] = ACTIONS(12543), + [anon_sym_BSLASHnewcommand] = ACTIONS(12543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12543), + [anon_sym_BSLASHgls] = ACTIONS(12543), + [anon_sym_BSLASHGls] = ACTIONS(12543), + [anon_sym_BSLASHGLS] = ACTIONS(12543), + [anon_sym_BSLASHglspl] = ACTIONS(12543), + [anon_sym_BSLASHGlspl] = ACTIONS(12543), + [anon_sym_BSLASHGLSpl] = ACTIONS(12543), + [anon_sym_BSLASHglsdisp] = ACTIONS(12543), + [anon_sym_BSLASHglslink] = ACTIONS(12543), + [anon_sym_BSLASHglstext] = ACTIONS(12543), + [anon_sym_BSLASHGlstext] = ACTIONS(12543), + [anon_sym_BSLASHGLStext] = ACTIONS(12543), + [anon_sym_BSLASHglsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12543), + [anon_sym_BSLASHglsplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSplural] = ACTIONS(12543), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHglsname] = ACTIONS(12543), + [anon_sym_BSLASHGlsname] = ACTIONS(12543), + [anon_sym_BSLASHGLSname] = ACTIONS(12543), + [anon_sym_BSLASHglssymbol] = ACTIONS(12543), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12543), + [anon_sym_BSLASHglsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12543), + [anon_sym_BSLASHglsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12543), + [anon_sym_BSLASHglsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12543), + [anon_sym_BSLASHglsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12543), + [anon_sym_BSLASHglsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12543), + [anon_sym_BSLASHnewacronym] = ACTIONS(12543), + [anon_sym_BSLASHacrshort] = ACTIONS(12543), + [anon_sym_BSLASHAcrshort] = ACTIONS(12543), + [anon_sym_BSLASHACRshort] = ACTIONS(12543), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12543), + [anon_sym_BSLASHacrlong] = ACTIONS(12543), + [anon_sym_BSLASHAcrlong] = ACTIONS(12543), + [anon_sym_BSLASHACRlong] = ACTIONS(12543), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12543), + [anon_sym_BSLASHacrfull] = ACTIONS(12543), + [anon_sym_BSLASHAcrfull] = ACTIONS(12543), + [anon_sym_BSLASHACRfull] = ACTIONS(12543), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12543), + [anon_sym_BSLASHacs] = ACTIONS(12543), + [anon_sym_BSLASHAcs] = ACTIONS(12543), + [anon_sym_BSLASHacsp] = ACTIONS(12543), + [anon_sym_BSLASHAcsp] = ACTIONS(12543), + [anon_sym_BSLASHacl] = ACTIONS(12543), + [anon_sym_BSLASHAcl] = ACTIONS(12543), + [anon_sym_BSLASHaclp] = ACTIONS(12543), + [anon_sym_BSLASHAclp] = ACTIONS(12543), + [anon_sym_BSLASHacf] = ACTIONS(12543), + [anon_sym_BSLASHAcf] = ACTIONS(12543), + [anon_sym_BSLASHacfp] = ACTIONS(12543), + [anon_sym_BSLASHAcfp] = ACTIONS(12543), + [anon_sym_BSLASHac] = ACTIONS(12543), + [anon_sym_BSLASHAc] = ACTIONS(12543), + [anon_sym_BSLASHacp] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12543), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12543), + [anon_sym_BSLASHcolor] = ACTIONS(12543), + [anon_sym_BSLASHcolorbox] = ACTIONS(12543), + [anon_sym_BSLASHtextcolor] = ACTIONS(12543), + [anon_sym_BSLASHpagecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12543), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12543), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12543), + }, + [1466] = { + [sym_generic_command_name] = ACTIONS(12104), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12104), + [aux_sym_paragraph_token1] = ACTIONS(12104), + [aux_sym_subparagraph_token1] = ACTIONS(12104), + [anon_sym_BSLASHitem] = ACTIONS(12104), + [anon_sym_LBRACK] = ACTIONS(12102), + [anon_sym_RBRACK] = ACTIONS(12102), + [anon_sym_LBRACE] = ACTIONS(12102), + [anon_sym_RBRACE] = ACTIONS(12102), + [anon_sym_LPAREN] = ACTIONS(12102), + [anon_sym_COMMA] = ACTIONS(12102), + [anon_sym_EQ] = ACTIONS(12102), + [sym_word] = ACTIONS(12102), + [sym_param] = ACTIONS(12102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12102), + [anon_sym_DOLLAR] = ACTIONS(12104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12102), + [anon_sym_BSLASHbegin] = ACTIONS(12104), + [anon_sym_BSLASHcaption] = ACTIONS(12104), + [anon_sym_BSLASHcite] = ACTIONS(12104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCite] = ACTIONS(12104), + [anon_sym_BSLASHnocite] = ACTIONS(12104), + [anon_sym_BSLASHcitet] = ACTIONS(12104), + [anon_sym_BSLASHcitep] = ACTIONS(12104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteauthor] = ACTIONS(12104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitetitle] = ACTIONS(12104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteyear] = ACTIONS(12104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitedate] = ACTIONS(12104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteurl] = ACTIONS(12104), + [anon_sym_BSLASHfullcite] = ACTIONS(12104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12104), + [anon_sym_BSLASHcitealt] = ACTIONS(12104), + [anon_sym_BSLASHcitealp] = ACTIONS(12104), + [anon_sym_BSLASHcitetext] = ACTIONS(12104), + [anon_sym_BSLASHparencite] = ACTIONS(12104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHParencite] = ACTIONS(12104), + [anon_sym_BSLASHfootcite] = ACTIONS(12104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12104), + [anon_sym_BSLASHtextcite] = ACTIONS(12104), + [anon_sym_BSLASHTextcite] = ACTIONS(12104), + [anon_sym_BSLASHsmartcite] = ACTIONS(12104), + [anon_sym_BSLASHSmartcite] = ACTIONS(12104), + [anon_sym_BSLASHsupercite] = ACTIONS(12104), + [anon_sym_BSLASHautocite] = ACTIONS(12104), + [anon_sym_BSLASHAutocite] = ACTIONS(12104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHvolcite] = ACTIONS(12104), + [anon_sym_BSLASHVolcite] = ACTIONS(12104), + [anon_sym_BSLASHpvolcite] = ACTIONS(12104), + [anon_sym_BSLASHPvolcite] = ACTIONS(12104), + [anon_sym_BSLASHfvolcite] = ACTIONS(12104), + [anon_sym_BSLASHftvolcite] = ACTIONS(12104), + [anon_sym_BSLASHsvolcite] = ACTIONS(12104), + [anon_sym_BSLASHSvolcite] = ACTIONS(12104), + [anon_sym_BSLASHtvolcite] = ACTIONS(12104), + [anon_sym_BSLASHTvolcite] = ACTIONS(12104), + [anon_sym_BSLASHavolcite] = ACTIONS(12104), + [anon_sym_BSLASHAvolcite] = ACTIONS(12104), + [anon_sym_BSLASHnotecite] = ACTIONS(12104), + [anon_sym_BSLASHpnotecite] = ACTIONS(12104), + [anon_sym_BSLASHPnotecite] = ACTIONS(12104), + [anon_sym_BSLASHfnotecite] = ACTIONS(12104), + [anon_sym_BSLASHusepackage] = ACTIONS(12104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12104), + [anon_sym_BSLASHinclude] = ACTIONS(12104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12104), + [anon_sym_BSLASHinput] = ACTIONS(12104), + [anon_sym_BSLASHsubfile] = ACTIONS(12104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12104), + [anon_sym_BSLASHbibliography] = ACTIONS(12104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12104), + [anon_sym_BSLASHincludesvg] = ACTIONS(12104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12104), + [anon_sym_BSLASHimport] = ACTIONS(12104), + [anon_sym_BSLASHsubimport] = ACTIONS(12104), + [anon_sym_BSLASHinputfrom] = ACTIONS(12104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12104), + [anon_sym_BSLASHincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHlabel] = ACTIONS(12104), + [anon_sym_BSLASHref] = ACTIONS(12104), + [anon_sym_BSLASHvref] = ACTIONS(12104), + [anon_sym_BSLASHVref] = ACTIONS(12104), + [anon_sym_BSLASHautoref] = ACTIONS(12104), + [anon_sym_BSLASHpageref] = ACTIONS(12104), + [anon_sym_BSLASHcref] = ACTIONS(12104), + [anon_sym_BSLASHCref] = ACTIONS(12104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnameCref] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHlabelcref] = ACTIONS(12104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12104), + [anon_sym_BSLASHeqref] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange] = ACTIONS(12104), + [anon_sym_BSLASHCrefrange] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewlabel] = ACTIONS(12104), + [anon_sym_BSLASHnewcommand] = ACTIONS(12104), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12104), + [anon_sym_BSLASHgls] = ACTIONS(12104), + [anon_sym_BSLASHGls] = ACTIONS(12104), + [anon_sym_BSLASHGLS] = ACTIONS(12104), + [anon_sym_BSLASHglspl] = ACTIONS(12104), + [anon_sym_BSLASHGlspl] = ACTIONS(12104), + [anon_sym_BSLASHGLSpl] = ACTIONS(12104), + [anon_sym_BSLASHglsdisp] = ACTIONS(12104), + [anon_sym_BSLASHglslink] = ACTIONS(12104), + [anon_sym_BSLASHglstext] = ACTIONS(12104), + [anon_sym_BSLASHGlstext] = ACTIONS(12104), + [anon_sym_BSLASHGLStext] = ACTIONS(12104), + [anon_sym_BSLASHglsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12104), + [anon_sym_BSLASHglsplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSplural] = ACTIONS(12104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHglsname] = ACTIONS(12104), + [anon_sym_BSLASHGlsname] = ACTIONS(12104), + [anon_sym_BSLASHGLSname] = ACTIONS(12104), + [anon_sym_BSLASHglssymbol] = ACTIONS(12104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12104), + [anon_sym_BSLASHglsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12104), + [anon_sym_BSLASHglsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12104), + [anon_sym_BSLASHglsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12104), + [anon_sym_BSLASHglsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12104), + [anon_sym_BSLASHglsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12104), + [anon_sym_BSLASHnewacronym] = ACTIONS(12104), + [anon_sym_BSLASHacrshort] = ACTIONS(12104), + [anon_sym_BSLASHAcrshort] = ACTIONS(12104), + [anon_sym_BSLASHACRshort] = ACTIONS(12104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12104), + [anon_sym_BSLASHacrlong] = ACTIONS(12104), + [anon_sym_BSLASHAcrlong] = ACTIONS(12104), + [anon_sym_BSLASHACRlong] = ACTIONS(12104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12104), + [anon_sym_BSLASHacrfull] = ACTIONS(12104), + [anon_sym_BSLASHAcrfull] = ACTIONS(12104), + [anon_sym_BSLASHACRfull] = ACTIONS(12104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12104), + [anon_sym_BSLASHacs] = ACTIONS(12104), + [anon_sym_BSLASHAcs] = ACTIONS(12104), + [anon_sym_BSLASHacsp] = ACTIONS(12104), + [anon_sym_BSLASHAcsp] = ACTIONS(12104), + [anon_sym_BSLASHacl] = ACTIONS(12104), + [anon_sym_BSLASHAcl] = ACTIONS(12104), + [anon_sym_BSLASHaclp] = ACTIONS(12104), + [anon_sym_BSLASHAclp] = ACTIONS(12104), + [anon_sym_BSLASHacf] = ACTIONS(12104), + [anon_sym_BSLASHAcf] = ACTIONS(12104), + [anon_sym_BSLASHacfp] = ACTIONS(12104), + [anon_sym_BSLASHAcfp] = ACTIONS(12104), + [anon_sym_BSLASHac] = ACTIONS(12104), + [anon_sym_BSLASHAc] = ACTIONS(12104), + [anon_sym_BSLASHacp] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12104), + [anon_sym_BSLASHcolor] = ACTIONS(12104), + [anon_sym_BSLASHcolorbox] = ACTIONS(12104), + [anon_sym_BSLASHtextcolor] = ACTIONS(12104), + [anon_sym_BSLASHpagecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12104), + }, + [1467] = { + [sym_generic_command_name] = ACTIONS(12547), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12547), + [aux_sym_paragraph_token1] = ACTIONS(12547), + [aux_sym_subparagraph_token1] = ACTIONS(12547), + [anon_sym_BSLASHitem] = ACTIONS(12547), + [anon_sym_LBRACK] = ACTIONS(12545), + [anon_sym_RBRACK] = ACTIONS(12545), + [anon_sym_LBRACE] = ACTIONS(12545), + [anon_sym_RBRACE] = ACTIONS(12545), + [anon_sym_LPAREN] = ACTIONS(12545), + [anon_sym_COMMA] = ACTIONS(12545), + [anon_sym_EQ] = ACTIONS(12545), + [sym_word] = ACTIONS(12545), + [sym_param] = ACTIONS(12545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12545), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12545), + [anon_sym_DOLLAR] = ACTIONS(12547), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12545), + [anon_sym_BSLASHbegin] = ACTIONS(12547), + [anon_sym_BSLASHcaption] = ACTIONS(12547), + [anon_sym_BSLASHcite] = ACTIONS(12547), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCite] = ACTIONS(12547), + [anon_sym_BSLASHnocite] = ACTIONS(12547), + [anon_sym_BSLASHcitet] = ACTIONS(12547), + [anon_sym_BSLASHcitep] = ACTIONS(12547), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteauthor] = ACTIONS(12547), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12547), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitetitle] = ACTIONS(12547), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteyear] = ACTIONS(12547), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitedate] = ACTIONS(12547), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteurl] = ACTIONS(12547), + [anon_sym_BSLASHfullcite] = ACTIONS(12547), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12547), + [anon_sym_BSLASHcitealt] = ACTIONS(12547), + [anon_sym_BSLASHcitealp] = ACTIONS(12547), + [anon_sym_BSLASHcitetext] = ACTIONS(12547), + [anon_sym_BSLASHparencite] = ACTIONS(12547), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHParencite] = ACTIONS(12547), + [anon_sym_BSLASHfootcite] = ACTIONS(12547), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12547), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12547), + [anon_sym_BSLASHtextcite] = ACTIONS(12547), + [anon_sym_BSLASHTextcite] = ACTIONS(12547), + [anon_sym_BSLASHsmartcite] = ACTIONS(12547), + [anon_sym_BSLASHSmartcite] = ACTIONS(12547), + [anon_sym_BSLASHsupercite] = ACTIONS(12547), + [anon_sym_BSLASHautocite] = ACTIONS(12547), + [anon_sym_BSLASHAutocite] = ACTIONS(12547), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHvolcite] = ACTIONS(12547), + [anon_sym_BSLASHVolcite] = ACTIONS(12547), + [anon_sym_BSLASHpvolcite] = ACTIONS(12547), + [anon_sym_BSLASHPvolcite] = ACTIONS(12547), + [anon_sym_BSLASHfvolcite] = ACTIONS(12547), + [anon_sym_BSLASHftvolcite] = ACTIONS(12547), + [anon_sym_BSLASHsvolcite] = ACTIONS(12547), + [anon_sym_BSLASHSvolcite] = ACTIONS(12547), + [anon_sym_BSLASHtvolcite] = ACTIONS(12547), + [anon_sym_BSLASHTvolcite] = ACTIONS(12547), + [anon_sym_BSLASHavolcite] = ACTIONS(12547), + [anon_sym_BSLASHAvolcite] = ACTIONS(12547), + [anon_sym_BSLASHnotecite] = ACTIONS(12547), + [anon_sym_BSLASHpnotecite] = ACTIONS(12547), + [anon_sym_BSLASHPnotecite] = ACTIONS(12547), + [anon_sym_BSLASHfnotecite] = ACTIONS(12547), + [anon_sym_BSLASHusepackage] = ACTIONS(12547), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12547), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12547), + [anon_sym_BSLASHinclude] = ACTIONS(12547), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12547), + [anon_sym_BSLASHinput] = ACTIONS(12547), + [anon_sym_BSLASHsubfile] = ACTIONS(12547), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12547), + [anon_sym_BSLASHbibliography] = ACTIONS(12547), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12547), + [anon_sym_BSLASHincludesvg] = ACTIONS(12547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12547), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12547), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12547), + [anon_sym_BSLASHimport] = ACTIONS(12547), + [anon_sym_BSLASHsubimport] = ACTIONS(12547), + [anon_sym_BSLASHinputfrom] = ACTIONS(12547), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12547), + [anon_sym_BSLASHincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHlabel] = ACTIONS(12547), + [anon_sym_BSLASHref] = ACTIONS(12547), + [anon_sym_BSLASHvref] = ACTIONS(12547), + [anon_sym_BSLASHVref] = ACTIONS(12547), + [anon_sym_BSLASHautoref] = ACTIONS(12547), + [anon_sym_BSLASHpageref] = ACTIONS(12547), + [anon_sym_BSLASHcref] = ACTIONS(12547), + [anon_sym_BSLASHCref] = ACTIONS(12547), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnameCref] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHlabelcref] = ACTIONS(12547), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12547), + [anon_sym_BSLASHeqref] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange] = ACTIONS(12547), + [anon_sym_BSLASHCrefrange] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewlabel] = ACTIONS(12547), + [anon_sym_BSLASHnewcommand] = ACTIONS(12547), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12547), + [anon_sym_BSLASHgls] = ACTIONS(12547), + [anon_sym_BSLASHGls] = ACTIONS(12547), + [anon_sym_BSLASHGLS] = ACTIONS(12547), + [anon_sym_BSLASHglspl] = ACTIONS(12547), + [anon_sym_BSLASHGlspl] = ACTIONS(12547), + [anon_sym_BSLASHGLSpl] = ACTIONS(12547), + [anon_sym_BSLASHglsdisp] = ACTIONS(12547), + [anon_sym_BSLASHglslink] = ACTIONS(12547), + [anon_sym_BSLASHglstext] = ACTIONS(12547), + [anon_sym_BSLASHGlstext] = ACTIONS(12547), + [anon_sym_BSLASHGLStext] = ACTIONS(12547), + [anon_sym_BSLASHglsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12547), + [anon_sym_BSLASHglsplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSplural] = ACTIONS(12547), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHglsname] = ACTIONS(12547), + [anon_sym_BSLASHGlsname] = ACTIONS(12547), + [anon_sym_BSLASHGLSname] = ACTIONS(12547), + [anon_sym_BSLASHglssymbol] = ACTIONS(12547), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12547), + [anon_sym_BSLASHglsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12547), + [anon_sym_BSLASHglsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12547), + [anon_sym_BSLASHglsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12547), + [anon_sym_BSLASHglsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12547), + [anon_sym_BSLASHglsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12547), + [anon_sym_BSLASHnewacronym] = ACTIONS(12547), + [anon_sym_BSLASHacrshort] = ACTIONS(12547), + [anon_sym_BSLASHAcrshort] = ACTIONS(12547), + [anon_sym_BSLASHACRshort] = ACTIONS(12547), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12547), + [anon_sym_BSLASHacrlong] = ACTIONS(12547), + [anon_sym_BSLASHAcrlong] = ACTIONS(12547), + [anon_sym_BSLASHACRlong] = ACTIONS(12547), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12547), + [anon_sym_BSLASHacrfull] = ACTIONS(12547), + [anon_sym_BSLASHAcrfull] = ACTIONS(12547), + [anon_sym_BSLASHACRfull] = ACTIONS(12547), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12547), + [anon_sym_BSLASHacs] = ACTIONS(12547), + [anon_sym_BSLASHAcs] = ACTIONS(12547), + [anon_sym_BSLASHacsp] = ACTIONS(12547), + [anon_sym_BSLASHAcsp] = ACTIONS(12547), + [anon_sym_BSLASHacl] = ACTIONS(12547), + [anon_sym_BSLASHAcl] = ACTIONS(12547), + [anon_sym_BSLASHaclp] = ACTIONS(12547), + [anon_sym_BSLASHAclp] = ACTIONS(12547), + [anon_sym_BSLASHacf] = ACTIONS(12547), + [anon_sym_BSLASHAcf] = ACTIONS(12547), + [anon_sym_BSLASHacfp] = ACTIONS(12547), + [anon_sym_BSLASHAcfp] = ACTIONS(12547), + [anon_sym_BSLASHac] = ACTIONS(12547), + [anon_sym_BSLASHAc] = ACTIONS(12547), + [anon_sym_BSLASHacp] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12547), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12547), + [anon_sym_BSLASHcolor] = ACTIONS(12547), + [anon_sym_BSLASHcolorbox] = ACTIONS(12547), + [anon_sym_BSLASHtextcolor] = ACTIONS(12547), + [anon_sym_BSLASHpagecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12547), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12547), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12547), + }, + [1468] = { + [sym_generic_command_name] = ACTIONS(12255), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12255), + [aux_sym_paragraph_token1] = ACTIONS(12255), + [aux_sym_subparagraph_token1] = ACTIONS(12255), + [anon_sym_BSLASHitem] = ACTIONS(12255), + [anon_sym_LBRACK] = ACTIONS(12253), + [anon_sym_RBRACK] = ACTIONS(12253), + [anon_sym_LBRACE] = ACTIONS(12253), + [anon_sym_RBRACE] = ACTIONS(12253), + [anon_sym_LPAREN] = ACTIONS(12253), + [anon_sym_COMMA] = ACTIONS(12253), + [anon_sym_EQ] = ACTIONS(12253), + [sym_word] = ACTIONS(12253), + [sym_param] = ACTIONS(12253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12253), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12253), + [anon_sym_DOLLAR] = ACTIONS(12255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12253), + [anon_sym_BSLASHbegin] = ACTIONS(12255), + [anon_sym_BSLASHcaption] = ACTIONS(12255), + [anon_sym_BSLASHcite] = ACTIONS(12255), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCite] = ACTIONS(12255), + [anon_sym_BSLASHnocite] = ACTIONS(12255), + [anon_sym_BSLASHcitet] = ACTIONS(12255), + [anon_sym_BSLASHcitep] = ACTIONS(12255), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteauthor] = ACTIONS(12255), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12255), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitetitle] = ACTIONS(12255), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteyear] = ACTIONS(12255), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitedate] = ACTIONS(12255), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteurl] = ACTIONS(12255), + [anon_sym_BSLASHfullcite] = ACTIONS(12255), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12255), + [anon_sym_BSLASHcitealt] = ACTIONS(12255), + [anon_sym_BSLASHcitealp] = ACTIONS(12255), + [anon_sym_BSLASHcitetext] = ACTIONS(12255), + [anon_sym_BSLASHparencite] = ACTIONS(12255), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHParencite] = ACTIONS(12255), + [anon_sym_BSLASHfootcite] = ACTIONS(12255), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12255), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12255), + [anon_sym_BSLASHtextcite] = ACTIONS(12255), + [anon_sym_BSLASHTextcite] = ACTIONS(12255), + [anon_sym_BSLASHsmartcite] = ACTIONS(12255), + [anon_sym_BSLASHSmartcite] = ACTIONS(12255), + [anon_sym_BSLASHsupercite] = ACTIONS(12255), + [anon_sym_BSLASHautocite] = ACTIONS(12255), + [anon_sym_BSLASHAutocite] = ACTIONS(12255), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHvolcite] = ACTIONS(12255), + [anon_sym_BSLASHVolcite] = ACTIONS(12255), + [anon_sym_BSLASHpvolcite] = ACTIONS(12255), + [anon_sym_BSLASHPvolcite] = ACTIONS(12255), + [anon_sym_BSLASHfvolcite] = ACTIONS(12255), + [anon_sym_BSLASHftvolcite] = ACTIONS(12255), + [anon_sym_BSLASHsvolcite] = ACTIONS(12255), + [anon_sym_BSLASHSvolcite] = ACTIONS(12255), + [anon_sym_BSLASHtvolcite] = ACTIONS(12255), + [anon_sym_BSLASHTvolcite] = ACTIONS(12255), + [anon_sym_BSLASHavolcite] = ACTIONS(12255), + [anon_sym_BSLASHAvolcite] = ACTIONS(12255), + [anon_sym_BSLASHnotecite] = ACTIONS(12255), + [anon_sym_BSLASHpnotecite] = ACTIONS(12255), + [anon_sym_BSLASHPnotecite] = ACTIONS(12255), + [anon_sym_BSLASHfnotecite] = ACTIONS(12255), + [anon_sym_BSLASHusepackage] = ACTIONS(12255), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12255), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12255), + [anon_sym_BSLASHinclude] = ACTIONS(12255), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12255), + [anon_sym_BSLASHinput] = ACTIONS(12255), + [anon_sym_BSLASHsubfile] = ACTIONS(12255), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12255), + [anon_sym_BSLASHbibliography] = ACTIONS(12255), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12255), + [anon_sym_BSLASHincludesvg] = ACTIONS(12255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12255), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12255), + [anon_sym_BSLASHimport] = ACTIONS(12255), + [anon_sym_BSLASHsubimport] = ACTIONS(12255), + [anon_sym_BSLASHinputfrom] = ACTIONS(12255), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12255), + [anon_sym_BSLASHincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHlabel] = ACTIONS(12255), + [anon_sym_BSLASHref] = ACTIONS(12255), + [anon_sym_BSLASHvref] = ACTIONS(12255), + [anon_sym_BSLASHVref] = ACTIONS(12255), + [anon_sym_BSLASHautoref] = ACTIONS(12255), + [anon_sym_BSLASHpageref] = ACTIONS(12255), + [anon_sym_BSLASHcref] = ACTIONS(12255), + [anon_sym_BSLASHCref] = ACTIONS(12255), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnameCref] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHlabelcref] = ACTIONS(12255), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12255), + [anon_sym_BSLASHeqref] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange] = ACTIONS(12255), + [anon_sym_BSLASHCrefrange] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewlabel] = ACTIONS(12255), + [anon_sym_BSLASHnewcommand] = ACTIONS(12255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12255), + [anon_sym_BSLASHgls] = ACTIONS(12255), + [anon_sym_BSLASHGls] = ACTIONS(12255), + [anon_sym_BSLASHGLS] = ACTIONS(12255), + [anon_sym_BSLASHglspl] = ACTIONS(12255), + [anon_sym_BSLASHGlspl] = ACTIONS(12255), + [anon_sym_BSLASHGLSpl] = ACTIONS(12255), + [anon_sym_BSLASHglsdisp] = ACTIONS(12255), + [anon_sym_BSLASHglslink] = ACTIONS(12255), + [anon_sym_BSLASHglstext] = ACTIONS(12255), + [anon_sym_BSLASHGlstext] = ACTIONS(12255), + [anon_sym_BSLASHGLStext] = ACTIONS(12255), + [anon_sym_BSLASHglsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12255), + [anon_sym_BSLASHglsplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSplural] = ACTIONS(12255), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHglsname] = ACTIONS(12255), + [anon_sym_BSLASHGlsname] = ACTIONS(12255), + [anon_sym_BSLASHGLSname] = ACTIONS(12255), + [anon_sym_BSLASHglssymbol] = ACTIONS(12255), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12255), + [anon_sym_BSLASHglsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12255), + [anon_sym_BSLASHglsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12255), + [anon_sym_BSLASHglsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12255), + [anon_sym_BSLASHglsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12255), + [anon_sym_BSLASHglsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12255), + [anon_sym_BSLASHnewacronym] = ACTIONS(12255), + [anon_sym_BSLASHacrshort] = ACTIONS(12255), + [anon_sym_BSLASHAcrshort] = ACTIONS(12255), + [anon_sym_BSLASHACRshort] = ACTIONS(12255), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12255), + [anon_sym_BSLASHacrlong] = ACTIONS(12255), + [anon_sym_BSLASHAcrlong] = ACTIONS(12255), + [anon_sym_BSLASHACRlong] = ACTIONS(12255), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12255), + [anon_sym_BSLASHacrfull] = ACTIONS(12255), + [anon_sym_BSLASHAcrfull] = ACTIONS(12255), + [anon_sym_BSLASHACRfull] = ACTIONS(12255), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12255), + [anon_sym_BSLASHacs] = ACTIONS(12255), + [anon_sym_BSLASHAcs] = ACTIONS(12255), + [anon_sym_BSLASHacsp] = ACTIONS(12255), + [anon_sym_BSLASHAcsp] = ACTIONS(12255), + [anon_sym_BSLASHacl] = ACTIONS(12255), + [anon_sym_BSLASHAcl] = ACTIONS(12255), + [anon_sym_BSLASHaclp] = ACTIONS(12255), + [anon_sym_BSLASHAclp] = ACTIONS(12255), + [anon_sym_BSLASHacf] = ACTIONS(12255), + [anon_sym_BSLASHAcf] = ACTIONS(12255), + [anon_sym_BSLASHacfp] = ACTIONS(12255), + [anon_sym_BSLASHAcfp] = ACTIONS(12255), + [anon_sym_BSLASHac] = ACTIONS(12255), + [anon_sym_BSLASHAc] = ACTIONS(12255), + [anon_sym_BSLASHacp] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12255), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12255), + [anon_sym_BSLASHcolor] = ACTIONS(12255), + [anon_sym_BSLASHcolorbox] = ACTIONS(12255), + [anon_sym_BSLASHtextcolor] = ACTIONS(12255), + [anon_sym_BSLASHpagecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12255), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12255), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12255), + }, + [1469] = { + [sym_generic_command_name] = ACTIONS(12559), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12559), + [aux_sym_paragraph_token1] = ACTIONS(12559), + [aux_sym_subparagraph_token1] = ACTIONS(12559), + [anon_sym_BSLASHitem] = ACTIONS(12559), + [anon_sym_LBRACK] = ACTIONS(12557), + [anon_sym_RBRACK] = ACTIONS(12557), + [anon_sym_LBRACE] = ACTIONS(12557), + [anon_sym_RBRACE] = ACTIONS(12557), + [anon_sym_LPAREN] = ACTIONS(12557), + [anon_sym_COMMA] = ACTIONS(12557), + [anon_sym_EQ] = ACTIONS(12557), + [sym_word] = ACTIONS(12557), + [sym_param] = ACTIONS(12557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12557), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12557), + [anon_sym_DOLLAR] = ACTIONS(12559), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12557), + [anon_sym_BSLASHbegin] = ACTIONS(12559), + [anon_sym_BSLASHcaption] = ACTIONS(12559), + [anon_sym_BSLASHcite] = ACTIONS(12559), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCite] = ACTIONS(12559), + [anon_sym_BSLASHnocite] = ACTIONS(12559), + [anon_sym_BSLASHcitet] = ACTIONS(12559), + [anon_sym_BSLASHcitep] = ACTIONS(12559), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteauthor] = ACTIONS(12559), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12559), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitetitle] = ACTIONS(12559), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteyear] = ACTIONS(12559), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitedate] = ACTIONS(12559), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteurl] = ACTIONS(12559), + [anon_sym_BSLASHfullcite] = ACTIONS(12559), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12559), + [anon_sym_BSLASHcitealt] = ACTIONS(12559), + [anon_sym_BSLASHcitealp] = ACTIONS(12559), + [anon_sym_BSLASHcitetext] = ACTIONS(12559), + [anon_sym_BSLASHparencite] = ACTIONS(12559), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHParencite] = ACTIONS(12559), + [anon_sym_BSLASHfootcite] = ACTIONS(12559), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12559), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12559), + [anon_sym_BSLASHtextcite] = ACTIONS(12559), + [anon_sym_BSLASHTextcite] = ACTIONS(12559), + [anon_sym_BSLASHsmartcite] = ACTIONS(12559), + [anon_sym_BSLASHSmartcite] = ACTIONS(12559), + [anon_sym_BSLASHsupercite] = ACTIONS(12559), + [anon_sym_BSLASHautocite] = ACTIONS(12559), + [anon_sym_BSLASHAutocite] = ACTIONS(12559), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHvolcite] = ACTIONS(12559), + [anon_sym_BSLASHVolcite] = ACTIONS(12559), + [anon_sym_BSLASHpvolcite] = ACTIONS(12559), + [anon_sym_BSLASHPvolcite] = ACTIONS(12559), + [anon_sym_BSLASHfvolcite] = ACTIONS(12559), + [anon_sym_BSLASHftvolcite] = ACTIONS(12559), + [anon_sym_BSLASHsvolcite] = ACTIONS(12559), + [anon_sym_BSLASHSvolcite] = ACTIONS(12559), + [anon_sym_BSLASHtvolcite] = ACTIONS(12559), + [anon_sym_BSLASHTvolcite] = ACTIONS(12559), + [anon_sym_BSLASHavolcite] = ACTIONS(12559), + [anon_sym_BSLASHAvolcite] = ACTIONS(12559), + [anon_sym_BSLASHnotecite] = ACTIONS(12559), + [anon_sym_BSLASHpnotecite] = ACTIONS(12559), + [anon_sym_BSLASHPnotecite] = ACTIONS(12559), + [anon_sym_BSLASHfnotecite] = ACTIONS(12559), + [anon_sym_BSLASHusepackage] = ACTIONS(12559), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12559), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12559), + [anon_sym_BSLASHinclude] = ACTIONS(12559), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12559), + [anon_sym_BSLASHinput] = ACTIONS(12559), + [anon_sym_BSLASHsubfile] = ACTIONS(12559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12559), + [anon_sym_BSLASHbibliography] = ACTIONS(12559), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12559), + [anon_sym_BSLASHincludesvg] = ACTIONS(12559), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12559), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12559), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12559), + [anon_sym_BSLASHimport] = ACTIONS(12559), + [anon_sym_BSLASHsubimport] = ACTIONS(12559), + [anon_sym_BSLASHinputfrom] = ACTIONS(12559), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12559), + [anon_sym_BSLASHincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHlabel] = ACTIONS(12559), + [anon_sym_BSLASHref] = ACTIONS(12559), + [anon_sym_BSLASHvref] = ACTIONS(12559), + [anon_sym_BSLASHVref] = ACTIONS(12559), + [anon_sym_BSLASHautoref] = ACTIONS(12559), + [anon_sym_BSLASHpageref] = ACTIONS(12559), + [anon_sym_BSLASHcref] = ACTIONS(12559), + [anon_sym_BSLASHCref] = ACTIONS(12559), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnameCref] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHlabelcref] = ACTIONS(12559), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12559), + [anon_sym_BSLASHeqref] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange] = ACTIONS(12559), + [anon_sym_BSLASHCrefrange] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewlabel] = ACTIONS(12559), + [anon_sym_BSLASHnewcommand] = ACTIONS(12559), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12559), + [anon_sym_BSLASHgls] = ACTIONS(12559), + [anon_sym_BSLASHGls] = ACTIONS(12559), + [anon_sym_BSLASHGLS] = ACTIONS(12559), + [anon_sym_BSLASHglspl] = ACTIONS(12559), + [anon_sym_BSLASHGlspl] = ACTIONS(12559), + [anon_sym_BSLASHGLSpl] = ACTIONS(12559), + [anon_sym_BSLASHglsdisp] = ACTIONS(12559), + [anon_sym_BSLASHglslink] = ACTIONS(12559), + [anon_sym_BSLASHglstext] = ACTIONS(12559), + [anon_sym_BSLASHGlstext] = ACTIONS(12559), + [anon_sym_BSLASHGLStext] = ACTIONS(12559), + [anon_sym_BSLASHglsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12559), + [anon_sym_BSLASHglsplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSplural] = ACTIONS(12559), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHglsname] = ACTIONS(12559), + [anon_sym_BSLASHGlsname] = ACTIONS(12559), + [anon_sym_BSLASHGLSname] = ACTIONS(12559), + [anon_sym_BSLASHglssymbol] = ACTIONS(12559), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12559), + [anon_sym_BSLASHglsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12559), + [anon_sym_BSLASHglsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12559), + [anon_sym_BSLASHglsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12559), + [anon_sym_BSLASHglsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12559), + [anon_sym_BSLASHglsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12559), + [anon_sym_BSLASHnewacronym] = ACTIONS(12559), + [anon_sym_BSLASHacrshort] = ACTIONS(12559), + [anon_sym_BSLASHAcrshort] = ACTIONS(12559), + [anon_sym_BSLASHACRshort] = ACTIONS(12559), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12559), + [anon_sym_BSLASHacrlong] = ACTIONS(12559), + [anon_sym_BSLASHAcrlong] = ACTIONS(12559), + [anon_sym_BSLASHACRlong] = ACTIONS(12559), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12559), + [anon_sym_BSLASHacrfull] = ACTIONS(12559), + [anon_sym_BSLASHAcrfull] = ACTIONS(12559), + [anon_sym_BSLASHACRfull] = ACTIONS(12559), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12559), + [anon_sym_BSLASHacs] = ACTIONS(12559), + [anon_sym_BSLASHAcs] = ACTIONS(12559), + [anon_sym_BSLASHacsp] = ACTIONS(12559), + [anon_sym_BSLASHAcsp] = ACTIONS(12559), + [anon_sym_BSLASHacl] = ACTIONS(12559), + [anon_sym_BSLASHAcl] = ACTIONS(12559), + [anon_sym_BSLASHaclp] = ACTIONS(12559), + [anon_sym_BSLASHAclp] = ACTIONS(12559), + [anon_sym_BSLASHacf] = ACTIONS(12559), + [anon_sym_BSLASHAcf] = ACTIONS(12559), + [anon_sym_BSLASHacfp] = ACTIONS(12559), + [anon_sym_BSLASHAcfp] = ACTIONS(12559), + [anon_sym_BSLASHac] = ACTIONS(12559), + [anon_sym_BSLASHAc] = ACTIONS(12559), + [anon_sym_BSLASHacp] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12559), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12559), + [anon_sym_BSLASHcolor] = ACTIONS(12559), + [anon_sym_BSLASHcolorbox] = ACTIONS(12559), + [anon_sym_BSLASHtextcolor] = ACTIONS(12559), + [anon_sym_BSLASHpagecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12559), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12559), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12559), + }, + [1470] = { + [sym_generic_command_name] = ACTIONS(12555), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12555), + [aux_sym_paragraph_token1] = ACTIONS(12555), + [aux_sym_subparagraph_token1] = ACTIONS(12555), + [anon_sym_BSLASHitem] = ACTIONS(12555), + [anon_sym_LBRACK] = ACTIONS(12553), + [anon_sym_RBRACK] = ACTIONS(12553), + [anon_sym_LBRACE] = ACTIONS(12553), + [anon_sym_RBRACE] = ACTIONS(12553), + [anon_sym_LPAREN] = ACTIONS(12553), + [anon_sym_COMMA] = ACTIONS(12553), + [anon_sym_EQ] = ACTIONS(12553), + [sym_word] = ACTIONS(12553), + [sym_param] = ACTIONS(12553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12553), + [anon_sym_DOLLAR] = ACTIONS(12555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12553), + [anon_sym_BSLASHbegin] = ACTIONS(12555), + [anon_sym_BSLASHcaption] = ACTIONS(12555), + [anon_sym_BSLASHcite] = ACTIONS(12555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCite] = ACTIONS(12555), + [anon_sym_BSLASHnocite] = ACTIONS(12555), + [anon_sym_BSLASHcitet] = ACTIONS(12555), + [anon_sym_BSLASHcitep] = ACTIONS(12555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteauthor] = ACTIONS(12555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitetitle] = ACTIONS(12555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteyear] = ACTIONS(12555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitedate] = ACTIONS(12555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteurl] = ACTIONS(12555), + [anon_sym_BSLASHfullcite] = ACTIONS(12555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12555), + [anon_sym_BSLASHcitealt] = ACTIONS(12555), + [anon_sym_BSLASHcitealp] = ACTIONS(12555), + [anon_sym_BSLASHcitetext] = ACTIONS(12555), + [anon_sym_BSLASHparencite] = ACTIONS(12555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHParencite] = ACTIONS(12555), + [anon_sym_BSLASHfootcite] = ACTIONS(12555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12555), + [anon_sym_BSLASHtextcite] = ACTIONS(12555), + [anon_sym_BSLASHTextcite] = ACTIONS(12555), + [anon_sym_BSLASHsmartcite] = ACTIONS(12555), + [anon_sym_BSLASHSmartcite] = ACTIONS(12555), + [anon_sym_BSLASHsupercite] = ACTIONS(12555), + [anon_sym_BSLASHautocite] = ACTIONS(12555), + [anon_sym_BSLASHAutocite] = ACTIONS(12555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHvolcite] = ACTIONS(12555), + [anon_sym_BSLASHVolcite] = ACTIONS(12555), + [anon_sym_BSLASHpvolcite] = ACTIONS(12555), + [anon_sym_BSLASHPvolcite] = ACTIONS(12555), + [anon_sym_BSLASHfvolcite] = ACTIONS(12555), + [anon_sym_BSLASHftvolcite] = ACTIONS(12555), + [anon_sym_BSLASHsvolcite] = ACTIONS(12555), + [anon_sym_BSLASHSvolcite] = ACTIONS(12555), + [anon_sym_BSLASHtvolcite] = ACTIONS(12555), + [anon_sym_BSLASHTvolcite] = ACTIONS(12555), + [anon_sym_BSLASHavolcite] = ACTIONS(12555), + [anon_sym_BSLASHAvolcite] = ACTIONS(12555), + [anon_sym_BSLASHnotecite] = ACTIONS(12555), + [anon_sym_BSLASHpnotecite] = ACTIONS(12555), + [anon_sym_BSLASHPnotecite] = ACTIONS(12555), + [anon_sym_BSLASHfnotecite] = ACTIONS(12555), + [anon_sym_BSLASHusepackage] = ACTIONS(12555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12555), + [anon_sym_BSLASHinclude] = ACTIONS(12555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12555), + [anon_sym_BSLASHinput] = ACTIONS(12555), + [anon_sym_BSLASHsubfile] = ACTIONS(12555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12555), + [anon_sym_BSLASHbibliography] = ACTIONS(12555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12555), + [anon_sym_BSLASHincludesvg] = ACTIONS(12555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12555), + [anon_sym_BSLASHimport] = ACTIONS(12555), + [anon_sym_BSLASHsubimport] = ACTIONS(12555), + [anon_sym_BSLASHinputfrom] = ACTIONS(12555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12555), + [anon_sym_BSLASHincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHlabel] = ACTIONS(12555), + [anon_sym_BSLASHref] = ACTIONS(12555), + [anon_sym_BSLASHvref] = ACTIONS(12555), + [anon_sym_BSLASHVref] = ACTIONS(12555), + [anon_sym_BSLASHautoref] = ACTIONS(12555), + [anon_sym_BSLASHpageref] = ACTIONS(12555), + [anon_sym_BSLASHcref] = ACTIONS(12555), + [anon_sym_BSLASHCref] = ACTIONS(12555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnameCref] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHlabelcref] = ACTIONS(12555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12555), + [anon_sym_BSLASHeqref] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange] = ACTIONS(12555), + [anon_sym_BSLASHCrefrange] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewlabel] = ACTIONS(12555), + [anon_sym_BSLASHnewcommand] = ACTIONS(12555), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12555), + [anon_sym_BSLASHgls] = ACTIONS(12555), + [anon_sym_BSLASHGls] = ACTIONS(12555), + [anon_sym_BSLASHGLS] = ACTIONS(12555), + [anon_sym_BSLASHglspl] = ACTIONS(12555), + [anon_sym_BSLASHGlspl] = ACTIONS(12555), + [anon_sym_BSLASHGLSpl] = ACTIONS(12555), + [anon_sym_BSLASHglsdisp] = ACTIONS(12555), + [anon_sym_BSLASHglslink] = ACTIONS(12555), + [anon_sym_BSLASHglstext] = ACTIONS(12555), + [anon_sym_BSLASHGlstext] = ACTIONS(12555), + [anon_sym_BSLASHGLStext] = ACTIONS(12555), + [anon_sym_BSLASHglsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12555), + [anon_sym_BSLASHglsplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSplural] = ACTIONS(12555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHglsname] = ACTIONS(12555), + [anon_sym_BSLASHGlsname] = ACTIONS(12555), + [anon_sym_BSLASHGLSname] = ACTIONS(12555), + [anon_sym_BSLASHglssymbol] = ACTIONS(12555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12555), + [anon_sym_BSLASHglsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12555), + [anon_sym_BSLASHglsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12555), + [anon_sym_BSLASHglsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12555), + [anon_sym_BSLASHglsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12555), + [anon_sym_BSLASHglsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12555), + [anon_sym_BSLASHnewacronym] = ACTIONS(12555), + [anon_sym_BSLASHacrshort] = ACTIONS(12555), + [anon_sym_BSLASHAcrshort] = ACTIONS(12555), + [anon_sym_BSLASHACRshort] = ACTIONS(12555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12555), + [anon_sym_BSLASHacrlong] = ACTIONS(12555), + [anon_sym_BSLASHAcrlong] = ACTIONS(12555), + [anon_sym_BSLASHACRlong] = ACTIONS(12555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12555), + [anon_sym_BSLASHacrfull] = ACTIONS(12555), + [anon_sym_BSLASHAcrfull] = ACTIONS(12555), + [anon_sym_BSLASHACRfull] = ACTIONS(12555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12555), + [anon_sym_BSLASHacs] = ACTIONS(12555), + [anon_sym_BSLASHAcs] = ACTIONS(12555), + [anon_sym_BSLASHacsp] = ACTIONS(12555), + [anon_sym_BSLASHAcsp] = ACTIONS(12555), + [anon_sym_BSLASHacl] = ACTIONS(12555), + [anon_sym_BSLASHAcl] = ACTIONS(12555), + [anon_sym_BSLASHaclp] = ACTIONS(12555), + [anon_sym_BSLASHAclp] = ACTIONS(12555), + [anon_sym_BSLASHacf] = ACTIONS(12555), + [anon_sym_BSLASHAcf] = ACTIONS(12555), + [anon_sym_BSLASHacfp] = ACTIONS(12555), + [anon_sym_BSLASHAcfp] = ACTIONS(12555), + [anon_sym_BSLASHac] = ACTIONS(12555), + [anon_sym_BSLASHAc] = ACTIONS(12555), + [anon_sym_BSLASHacp] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12555), + [anon_sym_BSLASHcolor] = ACTIONS(12555), + [anon_sym_BSLASHcolorbox] = ACTIONS(12555), + [anon_sym_BSLASHtextcolor] = ACTIONS(12555), + [anon_sym_BSLASHpagecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12555), + }, + [1471] = { + [sym_generic_command_name] = ACTIONS(12551), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12551), + [aux_sym_paragraph_token1] = ACTIONS(12551), + [aux_sym_subparagraph_token1] = ACTIONS(12551), + [anon_sym_BSLASHitem] = ACTIONS(12551), + [anon_sym_LBRACK] = ACTIONS(12549), + [anon_sym_RBRACK] = ACTIONS(12549), + [anon_sym_LBRACE] = ACTIONS(12549), + [anon_sym_RBRACE] = ACTIONS(12549), + [anon_sym_LPAREN] = ACTIONS(12549), + [anon_sym_COMMA] = ACTIONS(12549), + [anon_sym_EQ] = ACTIONS(12549), + [sym_word] = ACTIONS(12549), + [sym_param] = ACTIONS(12549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12549), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12549), + [anon_sym_DOLLAR] = ACTIONS(12551), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12549), + [anon_sym_BSLASHbegin] = ACTIONS(12551), + [anon_sym_BSLASHcaption] = ACTIONS(12551), + [anon_sym_BSLASHcite] = ACTIONS(12551), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCite] = ACTIONS(12551), + [anon_sym_BSLASHnocite] = ACTIONS(12551), + [anon_sym_BSLASHcitet] = ACTIONS(12551), + [anon_sym_BSLASHcitep] = ACTIONS(12551), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteauthor] = ACTIONS(12551), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12551), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitetitle] = ACTIONS(12551), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteyear] = ACTIONS(12551), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitedate] = ACTIONS(12551), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteurl] = ACTIONS(12551), + [anon_sym_BSLASHfullcite] = ACTIONS(12551), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12551), + [anon_sym_BSLASHcitealt] = ACTIONS(12551), + [anon_sym_BSLASHcitealp] = ACTIONS(12551), + [anon_sym_BSLASHcitetext] = ACTIONS(12551), + [anon_sym_BSLASHparencite] = ACTIONS(12551), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHParencite] = ACTIONS(12551), + [anon_sym_BSLASHfootcite] = ACTIONS(12551), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12551), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12551), + [anon_sym_BSLASHtextcite] = ACTIONS(12551), + [anon_sym_BSLASHTextcite] = ACTIONS(12551), + [anon_sym_BSLASHsmartcite] = ACTIONS(12551), + [anon_sym_BSLASHSmartcite] = ACTIONS(12551), + [anon_sym_BSLASHsupercite] = ACTIONS(12551), + [anon_sym_BSLASHautocite] = ACTIONS(12551), + [anon_sym_BSLASHAutocite] = ACTIONS(12551), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHvolcite] = ACTIONS(12551), + [anon_sym_BSLASHVolcite] = ACTIONS(12551), + [anon_sym_BSLASHpvolcite] = ACTIONS(12551), + [anon_sym_BSLASHPvolcite] = ACTIONS(12551), + [anon_sym_BSLASHfvolcite] = ACTIONS(12551), + [anon_sym_BSLASHftvolcite] = ACTIONS(12551), + [anon_sym_BSLASHsvolcite] = ACTIONS(12551), + [anon_sym_BSLASHSvolcite] = ACTIONS(12551), + [anon_sym_BSLASHtvolcite] = ACTIONS(12551), + [anon_sym_BSLASHTvolcite] = ACTIONS(12551), + [anon_sym_BSLASHavolcite] = ACTIONS(12551), + [anon_sym_BSLASHAvolcite] = ACTIONS(12551), + [anon_sym_BSLASHnotecite] = ACTIONS(12551), + [anon_sym_BSLASHpnotecite] = ACTIONS(12551), + [anon_sym_BSLASHPnotecite] = ACTIONS(12551), + [anon_sym_BSLASHfnotecite] = ACTIONS(12551), + [anon_sym_BSLASHusepackage] = ACTIONS(12551), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12551), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12551), + [anon_sym_BSLASHinclude] = ACTIONS(12551), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12551), + [anon_sym_BSLASHinput] = ACTIONS(12551), + [anon_sym_BSLASHsubfile] = ACTIONS(12551), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12551), + [anon_sym_BSLASHbibliography] = ACTIONS(12551), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12551), + [anon_sym_BSLASHincludesvg] = ACTIONS(12551), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12551), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12551), + [anon_sym_BSLASHimport] = ACTIONS(12551), + [anon_sym_BSLASHsubimport] = ACTIONS(12551), + [anon_sym_BSLASHinputfrom] = ACTIONS(12551), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12551), + [anon_sym_BSLASHincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHlabel] = ACTIONS(12551), + [anon_sym_BSLASHref] = ACTIONS(12551), + [anon_sym_BSLASHvref] = ACTIONS(12551), + [anon_sym_BSLASHVref] = ACTIONS(12551), + [anon_sym_BSLASHautoref] = ACTIONS(12551), + [anon_sym_BSLASHpageref] = ACTIONS(12551), + [anon_sym_BSLASHcref] = ACTIONS(12551), + [anon_sym_BSLASHCref] = ACTIONS(12551), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnameCref] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHlabelcref] = ACTIONS(12551), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12551), + [anon_sym_BSLASHeqref] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange] = ACTIONS(12551), + [anon_sym_BSLASHCrefrange] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewlabel] = ACTIONS(12551), + [anon_sym_BSLASHnewcommand] = ACTIONS(12551), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12551), + [anon_sym_BSLASHgls] = ACTIONS(12551), + [anon_sym_BSLASHGls] = ACTIONS(12551), + [anon_sym_BSLASHGLS] = ACTIONS(12551), + [anon_sym_BSLASHglspl] = ACTIONS(12551), + [anon_sym_BSLASHGlspl] = ACTIONS(12551), + [anon_sym_BSLASHGLSpl] = ACTIONS(12551), + [anon_sym_BSLASHglsdisp] = ACTIONS(12551), + [anon_sym_BSLASHglslink] = ACTIONS(12551), + [anon_sym_BSLASHglstext] = ACTIONS(12551), + [anon_sym_BSLASHGlstext] = ACTIONS(12551), + [anon_sym_BSLASHGLStext] = ACTIONS(12551), + [anon_sym_BSLASHglsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12551), + [anon_sym_BSLASHglsplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSplural] = ACTIONS(12551), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHglsname] = ACTIONS(12551), + [anon_sym_BSLASHGlsname] = ACTIONS(12551), + [anon_sym_BSLASHGLSname] = ACTIONS(12551), + [anon_sym_BSLASHglssymbol] = ACTIONS(12551), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12551), + [anon_sym_BSLASHglsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12551), + [anon_sym_BSLASHglsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12551), + [anon_sym_BSLASHglsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12551), + [anon_sym_BSLASHglsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12551), + [anon_sym_BSLASHglsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12551), + [anon_sym_BSLASHnewacronym] = ACTIONS(12551), + [anon_sym_BSLASHacrshort] = ACTIONS(12551), + [anon_sym_BSLASHAcrshort] = ACTIONS(12551), + [anon_sym_BSLASHACRshort] = ACTIONS(12551), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12551), + [anon_sym_BSLASHacrlong] = ACTIONS(12551), + [anon_sym_BSLASHAcrlong] = ACTIONS(12551), + [anon_sym_BSLASHACRlong] = ACTIONS(12551), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12551), + [anon_sym_BSLASHacrfull] = ACTIONS(12551), + [anon_sym_BSLASHAcrfull] = ACTIONS(12551), + [anon_sym_BSLASHACRfull] = ACTIONS(12551), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12551), + [anon_sym_BSLASHacs] = ACTIONS(12551), + [anon_sym_BSLASHAcs] = ACTIONS(12551), + [anon_sym_BSLASHacsp] = ACTIONS(12551), + [anon_sym_BSLASHAcsp] = ACTIONS(12551), + [anon_sym_BSLASHacl] = ACTIONS(12551), + [anon_sym_BSLASHAcl] = ACTIONS(12551), + [anon_sym_BSLASHaclp] = ACTIONS(12551), + [anon_sym_BSLASHAclp] = ACTIONS(12551), + [anon_sym_BSLASHacf] = ACTIONS(12551), + [anon_sym_BSLASHAcf] = ACTIONS(12551), + [anon_sym_BSLASHacfp] = ACTIONS(12551), + [anon_sym_BSLASHAcfp] = ACTIONS(12551), + [anon_sym_BSLASHac] = ACTIONS(12551), + [anon_sym_BSLASHAc] = ACTIONS(12551), + [anon_sym_BSLASHacp] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12551), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12551), + [anon_sym_BSLASHcolor] = ACTIONS(12551), + [anon_sym_BSLASHcolorbox] = ACTIONS(12551), + [anon_sym_BSLASHtextcolor] = ACTIONS(12551), + [anon_sym_BSLASHpagecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12551), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12551), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12551), + }, + [1472] = { + [sym_generic_command_name] = ACTIONS(12535), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12535), + [aux_sym_paragraph_token1] = ACTIONS(12535), + [aux_sym_subparagraph_token1] = ACTIONS(12535), + [anon_sym_BSLASHitem] = ACTIONS(12535), + [anon_sym_LBRACK] = ACTIONS(12533), + [anon_sym_RBRACK] = ACTIONS(12533), + [anon_sym_LBRACE] = ACTIONS(12533), + [anon_sym_RBRACE] = ACTIONS(12533), + [anon_sym_LPAREN] = ACTIONS(12533), + [anon_sym_COMMA] = ACTIONS(12533), + [anon_sym_EQ] = ACTIONS(12533), + [sym_word] = ACTIONS(12533), + [sym_param] = ACTIONS(12533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12533), + [anon_sym_DOLLAR] = ACTIONS(12535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12533), + [anon_sym_BSLASHbegin] = ACTIONS(12535), + [anon_sym_BSLASHcaption] = ACTIONS(12535), + [anon_sym_BSLASHcite] = ACTIONS(12535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCite] = ACTIONS(12535), + [anon_sym_BSLASHnocite] = ACTIONS(12535), + [anon_sym_BSLASHcitet] = ACTIONS(12535), + [anon_sym_BSLASHcitep] = ACTIONS(12535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteauthor] = ACTIONS(12535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitetitle] = ACTIONS(12535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteyear] = ACTIONS(12535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitedate] = ACTIONS(12535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteurl] = ACTIONS(12535), + [anon_sym_BSLASHfullcite] = ACTIONS(12535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12535), + [anon_sym_BSLASHcitealt] = ACTIONS(12535), + [anon_sym_BSLASHcitealp] = ACTIONS(12535), + [anon_sym_BSLASHcitetext] = ACTIONS(12535), + [anon_sym_BSLASHparencite] = ACTIONS(12535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHParencite] = ACTIONS(12535), + [anon_sym_BSLASHfootcite] = ACTIONS(12535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12535), + [anon_sym_BSLASHtextcite] = ACTIONS(12535), + [anon_sym_BSLASHTextcite] = ACTIONS(12535), + [anon_sym_BSLASHsmartcite] = ACTIONS(12535), + [anon_sym_BSLASHSmartcite] = ACTIONS(12535), + [anon_sym_BSLASHsupercite] = ACTIONS(12535), + [anon_sym_BSLASHautocite] = ACTIONS(12535), + [anon_sym_BSLASHAutocite] = ACTIONS(12535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHvolcite] = ACTIONS(12535), + [anon_sym_BSLASHVolcite] = ACTIONS(12535), + [anon_sym_BSLASHpvolcite] = ACTIONS(12535), + [anon_sym_BSLASHPvolcite] = ACTIONS(12535), + [anon_sym_BSLASHfvolcite] = ACTIONS(12535), + [anon_sym_BSLASHftvolcite] = ACTIONS(12535), + [anon_sym_BSLASHsvolcite] = ACTIONS(12535), + [anon_sym_BSLASHSvolcite] = ACTIONS(12535), + [anon_sym_BSLASHtvolcite] = ACTIONS(12535), + [anon_sym_BSLASHTvolcite] = ACTIONS(12535), + [anon_sym_BSLASHavolcite] = ACTIONS(12535), + [anon_sym_BSLASHAvolcite] = ACTIONS(12535), + [anon_sym_BSLASHnotecite] = ACTIONS(12535), + [anon_sym_BSLASHpnotecite] = ACTIONS(12535), + [anon_sym_BSLASHPnotecite] = ACTIONS(12535), + [anon_sym_BSLASHfnotecite] = ACTIONS(12535), + [anon_sym_BSLASHusepackage] = ACTIONS(12535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12535), + [anon_sym_BSLASHinclude] = ACTIONS(12535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12535), + [anon_sym_BSLASHinput] = ACTIONS(12535), + [anon_sym_BSLASHsubfile] = ACTIONS(12535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12535), + [anon_sym_BSLASHbibliography] = ACTIONS(12535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12535), + [anon_sym_BSLASHincludesvg] = ACTIONS(12535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12535), + [anon_sym_BSLASHimport] = ACTIONS(12535), + [anon_sym_BSLASHsubimport] = ACTIONS(12535), + [anon_sym_BSLASHinputfrom] = ACTIONS(12535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12535), + [anon_sym_BSLASHincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHlabel] = ACTIONS(12535), + [anon_sym_BSLASHref] = ACTIONS(12535), + [anon_sym_BSLASHvref] = ACTIONS(12535), + [anon_sym_BSLASHVref] = ACTIONS(12535), + [anon_sym_BSLASHautoref] = ACTIONS(12535), + [anon_sym_BSLASHpageref] = ACTIONS(12535), + [anon_sym_BSLASHcref] = ACTIONS(12535), + [anon_sym_BSLASHCref] = ACTIONS(12535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnameCref] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHlabelcref] = ACTIONS(12535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12535), + [anon_sym_BSLASHeqref] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange] = ACTIONS(12535), + [anon_sym_BSLASHCrefrange] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewlabel] = ACTIONS(12535), + [anon_sym_BSLASHnewcommand] = ACTIONS(12535), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12535), + [anon_sym_BSLASHgls] = ACTIONS(12535), + [anon_sym_BSLASHGls] = ACTIONS(12535), + [anon_sym_BSLASHGLS] = ACTIONS(12535), + [anon_sym_BSLASHglspl] = ACTIONS(12535), + [anon_sym_BSLASHGlspl] = ACTIONS(12535), + [anon_sym_BSLASHGLSpl] = ACTIONS(12535), + [anon_sym_BSLASHglsdisp] = ACTIONS(12535), + [anon_sym_BSLASHglslink] = ACTIONS(12535), + [anon_sym_BSLASHglstext] = ACTIONS(12535), + [anon_sym_BSLASHGlstext] = ACTIONS(12535), + [anon_sym_BSLASHGLStext] = ACTIONS(12535), + [anon_sym_BSLASHglsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12535), + [anon_sym_BSLASHglsplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSplural] = ACTIONS(12535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHglsname] = ACTIONS(12535), + [anon_sym_BSLASHGlsname] = ACTIONS(12535), + [anon_sym_BSLASHGLSname] = ACTIONS(12535), + [anon_sym_BSLASHglssymbol] = ACTIONS(12535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12535), + [anon_sym_BSLASHglsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12535), + [anon_sym_BSLASHglsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12535), + [anon_sym_BSLASHglsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12535), + [anon_sym_BSLASHglsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12535), + [anon_sym_BSLASHglsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12535), + [anon_sym_BSLASHnewacronym] = ACTIONS(12535), + [anon_sym_BSLASHacrshort] = ACTIONS(12535), + [anon_sym_BSLASHAcrshort] = ACTIONS(12535), + [anon_sym_BSLASHACRshort] = ACTIONS(12535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12535), + [anon_sym_BSLASHacrlong] = ACTIONS(12535), + [anon_sym_BSLASHAcrlong] = ACTIONS(12535), + [anon_sym_BSLASHACRlong] = ACTIONS(12535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12535), + [anon_sym_BSLASHacrfull] = ACTIONS(12535), + [anon_sym_BSLASHAcrfull] = ACTIONS(12535), + [anon_sym_BSLASHACRfull] = ACTIONS(12535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12535), + [anon_sym_BSLASHacs] = ACTIONS(12535), + [anon_sym_BSLASHAcs] = ACTIONS(12535), + [anon_sym_BSLASHacsp] = ACTIONS(12535), + [anon_sym_BSLASHAcsp] = ACTIONS(12535), + [anon_sym_BSLASHacl] = ACTIONS(12535), + [anon_sym_BSLASHAcl] = ACTIONS(12535), + [anon_sym_BSLASHaclp] = ACTIONS(12535), + [anon_sym_BSLASHAclp] = ACTIONS(12535), + [anon_sym_BSLASHacf] = ACTIONS(12535), + [anon_sym_BSLASHAcf] = ACTIONS(12535), + [anon_sym_BSLASHacfp] = ACTIONS(12535), + [anon_sym_BSLASHAcfp] = ACTIONS(12535), + [anon_sym_BSLASHac] = ACTIONS(12535), + [anon_sym_BSLASHAc] = ACTIONS(12535), + [anon_sym_BSLASHacp] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12535), + [anon_sym_BSLASHcolor] = ACTIONS(12535), + [anon_sym_BSLASHcolorbox] = ACTIONS(12535), + [anon_sym_BSLASHtextcolor] = ACTIONS(12535), + [anon_sym_BSLASHpagecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12535), + }, + [1473] = { + [sym_generic_command_name] = ACTIONS(12505), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12505), + [aux_sym_paragraph_token1] = ACTIONS(12505), + [aux_sym_subparagraph_token1] = ACTIONS(12505), + [anon_sym_BSLASHitem] = ACTIONS(12505), + [anon_sym_LBRACK] = ACTIONS(12503), + [anon_sym_RBRACK] = ACTIONS(12503), + [anon_sym_LBRACE] = ACTIONS(12503), + [anon_sym_RBRACE] = ACTIONS(12503), + [anon_sym_LPAREN] = ACTIONS(12503), + [anon_sym_COMMA] = ACTIONS(12503), + [anon_sym_EQ] = ACTIONS(12503), + [sym_word] = ACTIONS(12503), + [sym_param] = ACTIONS(12503), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12503), + [anon_sym_DOLLAR] = ACTIONS(12505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12503), + [anon_sym_BSLASHbegin] = ACTIONS(12505), + [anon_sym_BSLASHcaption] = ACTIONS(12505), + [anon_sym_BSLASHcite] = ACTIONS(12505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCite] = ACTIONS(12505), + [anon_sym_BSLASHnocite] = ACTIONS(12505), + [anon_sym_BSLASHcitet] = ACTIONS(12505), + [anon_sym_BSLASHcitep] = ACTIONS(12505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteauthor] = ACTIONS(12505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitetitle] = ACTIONS(12505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteyear] = ACTIONS(12505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitedate] = ACTIONS(12505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteurl] = ACTIONS(12505), + [anon_sym_BSLASHfullcite] = ACTIONS(12505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12505), + [anon_sym_BSLASHcitealt] = ACTIONS(12505), + [anon_sym_BSLASHcitealp] = ACTIONS(12505), + [anon_sym_BSLASHcitetext] = ACTIONS(12505), + [anon_sym_BSLASHparencite] = ACTIONS(12505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHParencite] = ACTIONS(12505), + [anon_sym_BSLASHfootcite] = ACTIONS(12505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12505), + [anon_sym_BSLASHtextcite] = ACTIONS(12505), + [anon_sym_BSLASHTextcite] = ACTIONS(12505), + [anon_sym_BSLASHsmartcite] = ACTIONS(12505), + [anon_sym_BSLASHSmartcite] = ACTIONS(12505), + [anon_sym_BSLASHsupercite] = ACTIONS(12505), + [anon_sym_BSLASHautocite] = ACTIONS(12505), + [anon_sym_BSLASHAutocite] = ACTIONS(12505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHvolcite] = ACTIONS(12505), + [anon_sym_BSLASHVolcite] = ACTIONS(12505), + [anon_sym_BSLASHpvolcite] = ACTIONS(12505), + [anon_sym_BSLASHPvolcite] = ACTIONS(12505), + [anon_sym_BSLASHfvolcite] = ACTIONS(12505), + [anon_sym_BSLASHftvolcite] = ACTIONS(12505), + [anon_sym_BSLASHsvolcite] = ACTIONS(12505), + [anon_sym_BSLASHSvolcite] = ACTIONS(12505), + [anon_sym_BSLASHtvolcite] = ACTIONS(12505), + [anon_sym_BSLASHTvolcite] = ACTIONS(12505), + [anon_sym_BSLASHavolcite] = ACTIONS(12505), + [anon_sym_BSLASHAvolcite] = ACTIONS(12505), + [anon_sym_BSLASHnotecite] = ACTIONS(12505), + [anon_sym_BSLASHpnotecite] = ACTIONS(12505), + [anon_sym_BSLASHPnotecite] = ACTIONS(12505), + [anon_sym_BSLASHfnotecite] = ACTIONS(12505), + [anon_sym_BSLASHusepackage] = ACTIONS(12505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12505), + [anon_sym_BSLASHinclude] = ACTIONS(12505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12505), + [anon_sym_BSLASHinput] = ACTIONS(12505), + [anon_sym_BSLASHsubfile] = ACTIONS(12505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12505), + [anon_sym_BSLASHbibliography] = ACTIONS(12505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12505), + [anon_sym_BSLASHincludesvg] = ACTIONS(12505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12505), + [anon_sym_BSLASHimport] = ACTIONS(12505), + [anon_sym_BSLASHsubimport] = ACTIONS(12505), + [anon_sym_BSLASHinputfrom] = ACTIONS(12505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12505), + [anon_sym_BSLASHincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHlabel] = ACTIONS(12505), + [anon_sym_BSLASHref] = ACTIONS(12505), + [anon_sym_BSLASHvref] = ACTIONS(12505), + [anon_sym_BSLASHVref] = ACTIONS(12505), + [anon_sym_BSLASHautoref] = ACTIONS(12505), + [anon_sym_BSLASHpageref] = ACTIONS(12505), + [anon_sym_BSLASHcref] = ACTIONS(12505), + [anon_sym_BSLASHCref] = ACTIONS(12505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnameCref] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHlabelcref] = ACTIONS(12505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12505), + [anon_sym_BSLASHeqref] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange] = ACTIONS(12505), + [anon_sym_BSLASHCrefrange] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewlabel] = ACTIONS(12505), + [anon_sym_BSLASHnewcommand] = ACTIONS(12505), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12505), + [anon_sym_BSLASHgls] = ACTIONS(12505), + [anon_sym_BSLASHGls] = ACTIONS(12505), + [anon_sym_BSLASHGLS] = ACTIONS(12505), + [anon_sym_BSLASHglspl] = ACTIONS(12505), + [anon_sym_BSLASHGlspl] = ACTIONS(12505), + [anon_sym_BSLASHGLSpl] = ACTIONS(12505), + [anon_sym_BSLASHglsdisp] = ACTIONS(12505), + [anon_sym_BSLASHglslink] = ACTIONS(12505), + [anon_sym_BSLASHglstext] = ACTIONS(12505), + [anon_sym_BSLASHGlstext] = ACTIONS(12505), + [anon_sym_BSLASHGLStext] = ACTIONS(12505), + [anon_sym_BSLASHglsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12505), + [anon_sym_BSLASHglsplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSplural] = ACTIONS(12505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHglsname] = ACTIONS(12505), + [anon_sym_BSLASHGlsname] = ACTIONS(12505), + [anon_sym_BSLASHGLSname] = ACTIONS(12505), + [anon_sym_BSLASHglssymbol] = ACTIONS(12505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12505), + [anon_sym_BSLASHglsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12505), + [anon_sym_BSLASHglsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12505), + [anon_sym_BSLASHglsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12505), + [anon_sym_BSLASHglsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12505), + [anon_sym_BSLASHglsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12505), + [anon_sym_BSLASHnewacronym] = ACTIONS(12505), + [anon_sym_BSLASHacrshort] = ACTIONS(12505), + [anon_sym_BSLASHAcrshort] = ACTIONS(12505), + [anon_sym_BSLASHACRshort] = ACTIONS(12505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12505), + [anon_sym_BSLASHacrlong] = ACTIONS(12505), + [anon_sym_BSLASHAcrlong] = ACTIONS(12505), + [anon_sym_BSLASHACRlong] = ACTIONS(12505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12505), + [anon_sym_BSLASHacrfull] = ACTIONS(12505), + [anon_sym_BSLASHAcrfull] = ACTIONS(12505), + [anon_sym_BSLASHACRfull] = ACTIONS(12505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12505), + [anon_sym_BSLASHacs] = ACTIONS(12505), + [anon_sym_BSLASHAcs] = ACTIONS(12505), + [anon_sym_BSLASHacsp] = ACTIONS(12505), + [anon_sym_BSLASHAcsp] = ACTIONS(12505), + [anon_sym_BSLASHacl] = ACTIONS(12505), + [anon_sym_BSLASHAcl] = ACTIONS(12505), + [anon_sym_BSLASHaclp] = ACTIONS(12505), + [anon_sym_BSLASHAclp] = ACTIONS(12505), + [anon_sym_BSLASHacf] = ACTIONS(12505), + [anon_sym_BSLASHAcf] = ACTIONS(12505), + [anon_sym_BSLASHacfp] = ACTIONS(12505), + [anon_sym_BSLASHAcfp] = ACTIONS(12505), + [anon_sym_BSLASHac] = ACTIONS(12505), + [anon_sym_BSLASHAc] = ACTIONS(12505), + [anon_sym_BSLASHacp] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12505), + [anon_sym_BSLASHcolor] = ACTIONS(12505), + [anon_sym_BSLASHcolorbox] = ACTIONS(12505), + [anon_sym_BSLASHtextcolor] = ACTIONS(12505), + [anon_sym_BSLASHpagecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12505), + }, + [1474] = { + [sym_generic_command_name] = ACTIONS(12489), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12489), + [aux_sym_paragraph_token1] = ACTIONS(12489), + [aux_sym_subparagraph_token1] = ACTIONS(12489), + [anon_sym_BSLASHitem] = ACTIONS(12489), + [anon_sym_LBRACK] = ACTIONS(12487), + [anon_sym_RBRACK] = ACTIONS(12487), + [anon_sym_LBRACE] = ACTIONS(12487), + [anon_sym_RBRACE] = ACTIONS(12487), + [anon_sym_LPAREN] = ACTIONS(12487), + [anon_sym_COMMA] = ACTIONS(12487), + [anon_sym_EQ] = ACTIONS(12487), + [sym_word] = ACTIONS(12487), + [sym_param] = ACTIONS(12487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12487), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12487), + [anon_sym_DOLLAR] = ACTIONS(12489), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12487), + [anon_sym_BSLASHbegin] = ACTIONS(12489), + [anon_sym_BSLASHcaption] = ACTIONS(12489), + [anon_sym_BSLASHcite] = ACTIONS(12489), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCite] = ACTIONS(12489), + [anon_sym_BSLASHnocite] = ACTIONS(12489), + [anon_sym_BSLASHcitet] = ACTIONS(12489), + [anon_sym_BSLASHcitep] = ACTIONS(12489), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteauthor] = ACTIONS(12489), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12489), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitetitle] = ACTIONS(12489), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteyear] = ACTIONS(12489), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitedate] = ACTIONS(12489), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteurl] = ACTIONS(12489), + [anon_sym_BSLASHfullcite] = ACTIONS(12489), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12489), + [anon_sym_BSLASHcitealt] = ACTIONS(12489), + [anon_sym_BSLASHcitealp] = ACTIONS(12489), + [anon_sym_BSLASHcitetext] = ACTIONS(12489), + [anon_sym_BSLASHparencite] = ACTIONS(12489), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHParencite] = ACTIONS(12489), + [anon_sym_BSLASHfootcite] = ACTIONS(12489), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12489), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12489), + [anon_sym_BSLASHtextcite] = ACTIONS(12489), + [anon_sym_BSLASHTextcite] = ACTIONS(12489), + [anon_sym_BSLASHsmartcite] = ACTIONS(12489), + [anon_sym_BSLASHSmartcite] = ACTIONS(12489), + [anon_sym_BSLASHsupercite] = ACTIONS(12489), + [anon_sym_BSLASHautocite] = ACTIONS(12489), + [anon_sym_BSLASHAutocite] = ACTIONS(12489), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHvolcite] = ACTIONS(12489), + [anon_sym_BSLASHVolcite] = ACTIONS(12489), + [anon_sym_BSLASHpvolcite] = ACTIONS(12489), + [anon_sym_BSLASHPvolcite] = ACTIONS(12489), + [anon_sym_BSLASHfvolcite] = ACTIONS(12489), + [anon_sym_BSLASHftvolcite] = ACTIONS(12489), + [anon_sym_BSLASHsvolcite] = ACTIONS(12489), + [anon_sym_BSLASHSvolcite] = ACTIONS(12489), + [anon_sym_BSLASHtvolcite] = ACTIONS(12489), + [anon_sym_BSLASHTvolcite] = ACTIONS(12489), + [anon_sym_BSLASHavolcite] = ACTIONS(12489), + [anon_sym_BSLASHAvolcite] = ACTIONS(12489), + [anon_sym_BSLASHnotecite] = ACTIONS(12489), + [anon_sym_BSLASHpnotecite] = ACTIONS(12489), + [anon_sym_BSLASHPnotecite] = ACTIONS(12489), + [anon_sym_BSLASHfnotecite] = ACTIONS(12489), + [anon_sym_BSLASHusepackage] = ACTIONS(12489), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12489), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12489), + [anon_sym_BSLASHinclude] = ACTIONS(12489), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12489), + [anon_sym_BSLASHinput] = ACTIONS(12489), + [anon_sym_BSLASHsubfile] = ACTIONS(12489), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12489), + [anon_sym_BSLASHbibliography] = ACTIONS(12489), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12489), + [anon_sym_BSLASHincludesvg] = ACTIONS(12489), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12489), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12489), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12489), + [anon_sym_BSLASHimport] = ACTIONS(12489), + [anon_sym_BSLASHsubimport] = ACTIONS(12489), + [anon_sym_BSLASHinputfrom] = ACTIONS(12489), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12489), + [anon_sym_BSLASHincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHlabel] = ACTIONS(12489), + [anon_sym_BSLASHref] = ACTIONS(12489), + [anon_sym_BSLASHvref] = ACTIONS(12489), + [anon_sym_BSLASHVref] = ACTIONS(12489), + [anon_sym_BSLASHautoref] = ACTIONS(12489), + [anon_sym_BSLASHpageref] = ACTIONS(12489), + [anon_sym_BSLASHcref] = ACTIONS(12489), + [anon_sym_BSLASHCref] = ACTIONS(12489), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnameCref] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHlabelcref] = ACTIONS(12489), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12489), + [anon_sym_BSLASHeqref] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange] = ACTIONS(12489), + [anon_sym_BSLASHCrefrange] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewlabel] = ACTIONS(12489), + [anon_sym_BSLASHnewcommand] = ACTIONS(12489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12489), + [anon_sym_BSLASHgls] = ACTIONS(12489), + [anon_sym_BSLASHGls] = ACTIONS(12489), + [anon_sym_BSLASHGLS] = ACTIONS(12489), + [anon_sym_BSLASHglspl] = ACTIONS(12489), + [anon_sym_BSLASHGlspl] = ACTIONS(12489), + [anon_sym_BSLASHGLSpl] = ACTIONS(12489), + [anon_sym_BSLASHglsdisp] = ACTIONS(12489), + [anon_sym_BSLASHglslink] = ACTIONS(12489), + [anon_sym_BSLASHglstext] = ACTIONS(12489), + [anon_sym_BSLASHGlstext] = ACTIONS(12489), + [anon_sym_BSLASHGLStext] = ACTIONS(12489), + [anon_sym_BSLASHglsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12489), + [anon_sym_BSLASHglsplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSplural] = ACTIONS(12489), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHglsname] = ACTIONS(12489), + [anon_sym_BSLASHGlsname] = ACTIONS(12489), + [anon_sym_BSLASHGLSname] = ACTIONS(12489), + [anon_sym_BSLASHglssymbol] = ACTIONS(12489), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12489), + [anon_sym_BSLASHglsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12489), + [anon_sym_BSLASHglsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12489), + [anon_sym_BSLASHglsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12489), + [anon_sym_BSLASHglsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12489), + [anon_sym_BSLASHglsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12489), + [anon_sym_BSLASHnewacronym] = ACTIONS(12489), + [anon_sym_BSLASHacrshort] = ACTIONS(12489), + [anon_sym_BSLASHAcrshort] = ACTIONS(12489), + [anon_sym_BSLASHACRshort] = ACTIONS(12489), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12489), + [anon_sym_BSLASHacrlong] = ACTIONS(12489), + [anon_sym_BSLASHAcrlong] = ACTIONS(12489), + [anon_sym_BSLASHACRlong] = ACTIONS(12489), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12489), + [anon_sym_BSLASHacrfull] = ACTIONS(12489), + [anon_sym_BSLASHAcrfull] = ACTIONS(12489), + [anon_sym_BSLASHACRfull] = ACTIONS(12489), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12489), + [anon_sym_BSLASHacs] = ACTIONS(12489), + [anon_sym_BSLASHAcs] = ACTIONS(12489), + [anon_sym_BSLASHacsp] = ACTIONS(12489), + [anon_sym_BSLASHAcsp] = ACTIONS(12489), + [anon_sym_BSLASHacl] = ACTIONS(12489), + [anon_sym_BSLASHAcl] = ACTIONS(12489), + [anon_sym_BSLASHaclp] = ACTIONS(12489), + [anon_sym_BSLASHAclp] = ACTIONS(12489), + [anon_sym_BSLASHacf] = ACTIONS(12489), + [anon_sym_BSLASHAcf] = ACTIONS(12489), + [anon_sym_BSLASHacfp] = ACTIONS(12489), + [anon_sym_BSLASHAcfp] = ACTIONS(12489), + [anon_sym_BSLASHac] = ACTIONS(12489), + [anon_sym_BSLASHAc] = ACTIONS(12489), + [anon_sym_BSLASHacp] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12489), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12489), + [anon_sym_BSLASHcolor] = ACTIONS(12489), + [anon_sym_BSLASHcolorbox] = ACTIONS(12489), + [anon_sym_BSLASHtextcolor] = ACTIONS(12489), + [anon_sym_BSLASHpagecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12489), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12489), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12489), + }, + [1475] = { + [sym_generic_command_name] = ACTIONS(12473), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12473), + [aux_sym_paragraph_token1] = ACTIONS(12473), + [aux_sym_subparagraph_token1] = ACTIONS(12473), + [anon_sym_BSLASHitem] = ACTIONS(12473), + [anon_sym_LBRACK] = ACTIONS(12471), + [anon_sym_RBRACK] = ACTIONS(12471), + [anon_sym_LBRACE] = ACTIONS(12471), + [anon_sym_RBRACE] = ACTIONS(12471), + [anon_sym_LPAREN] = ACTIONS(12471), + [anon_sym_COMMA] = ACTIONS(12471), + [anon_sym_EQ] = ACTIONS(12471), + [sym_word] = ACTIONS(12471), + [sym_param] = ACTIONS(12471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12471), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12471), + [anon_sym_DOLLAR] = ACTIONS(12473), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12471), + [anon_sym_BSLASHbegin] = ACTIONS(12473), + [anon_sym_BSLASHcaption] = ACTIONS(12473), + [anon_sym_BSLASHcite] = ACTIONS(12473), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCite] = ACTIONS(12473), + [anon_sym_BSLASHnocite] = ACTIONS(12473), + [anon_sym_BSLASHcitet] = ACTIONS(12473), + [anon_sym_BSLASHcitep] = ACTIONS(12473), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteauthor] = ACTIONS(12473), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12473), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitetitle] = ACTIONS(12473), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteyear] = ACTIONS(12473), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitedate] = ACTIONS(12473), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteurl] = ACTIONS(12473), + [anon_sym_BSLASHfullcite] = ACTIONS(12473), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12473), + [anon_sym_BSLASHcitealt] = ACTIONS(12473), + [anon_sym_BSLASHcitealp] = ACTIONS(12473), + [anon_sym_BSLASHcitetext] = ACTIONS(12473), + [anon_sym_BSLASHparencite] = ACTIONS(12473), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHParencite] = ACTIONS(12473), + [anon_sym_BSLASHfootcite] = ACTIONS(12473), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12473), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12473), + [anon_sym_BSLASHtextcite] = ACTIONS(12473), + [anon_sym_BSLASHTextcite] = ACTIONS(12473), + [anon_sym_BSLASHsmartcite] = ACTIONS(12473), + [anon_sym_BSLASHSmartcite] = ACTIONS(12473), + [anon_sym_BSLASHsupercite] = ACTIONS(12473), + [anon_sym_BSLASHautocite] = ACTIONS(12473), + [anon_sym_BSLASHAutocite] = ACTIONS(12473), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHvolcite] = ACTIONS(12473), + [anon_sym_BSLASHVolcite] = ACTIONS(12473), + [anon_sym_BSLASHpvolcite] = ACTIONS(12473), + [anon_sym_BSLASHPvolcite] = ACTIONS(12473), + [anon_sym_BSLASHfvolcite] = ACTIONS(12473), + [anon_sym_BSLASHftvolcite] = ACTIONS(12473), + [anon_sym_BSLASHsvolcite] = ACTIONS(12473), + [anon_sym_BSLASHSvolcite] = ACTIONS(12473), + [anon_sym_BSLASHtvolcite] = ACTIONS(12473), + [anon_sym_BSLASHTvolcite] = ACTIONS(12473), + [anon_sym_BSLASHavolcite] = ACTIONS(12473), + [anon_sym_BSLASHAvolcite] = ACTIONS(12473), + [anon_sym_BSLASHnotecite] = ACTIONS(12473), + [anon_sym_BSLASHpnotecite] = ACTIONS(12473), + [anon_sym_BSLASHPnotecite] = ACTIONS(12473), + [anon_sym_BSLASHfnotecite] = ACTIONS(12473), + [anon_sym_BSLASHusepackage] = ACTIONS(12473), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12473), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12473), + [anon_sym_BSLASHinclude] = ACTIONS(12473), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12473), + [anon_sym_BSLASHinput] = ACTIONS(12473), + [anon_sym_BSLASHsubfile] = ACTIONS(12473), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12473), + [anon_sym_BSLASHbibliography] = ACTIONS(12473), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12473), + [anon_sym_BSLASHincludesvg] = ACTIONS(12473), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12473), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12473), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12473), + [anon_sym_BSLASHimport] = ACTIONS(12473), + [anon_sym_BSLASHsubimport] = ACTIONS(12473), + [anon_sym_BSLASHinputfrom] = ACTIONS(12473), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12473), + [anon_sym_BSLASHincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHlabel] = ACTIONS(12473), + [anon_sym_BSLASHref] = ACTIONS(12473), + [anon_sym_BSLASHvref] = ACTIONS(12473), + [anon_sym_BSLASHVref] = ACTIONS(12473), + [anon_sym_BSLASHautoref] = ACTIONS(12473), + [anon_sym_BSLASHpageref] = ACTIONS(12473), + [anon_sym_BSLASHcref] = ACTIONS(12473), + [anon_sym_BSLASHCref] = ACTIONS(12473), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnameCref] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHlabelcref] = ACTIONS(12473), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12473), + [anon_sym_BSLASHeqref] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange] = ACTIONS(12473), + [anon_sym_BSLASHCrefrange] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewlabel] = ACTIONS(12473), + [anon_sym_BSLASHnewcommand] = ACTIONS(12473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12473), + [anon_sym_BSLASHgls] = ACTIONS(12473), + [anon_sym_BSLASHGls] = ACTIONS(12473), + [anon_sym_BSLASHGLS] = ACTIONS(12473), + [anon_sym_BSLASHglspl] = ACTIONS(12473), + [anon_sym_BSLASHGlspl] = ACTIONS(12473), + [anon_sym_BSLASHGLSpl] = ACTIONS(12473), + [anon_sym_BSLASHglsdisp] = ACTIONS(12473), + [anon_sym_BSLASHglslink] = ACTIONS(12473), + [anon_sym_BSLASHglstext] = ACTIONS(12473), + [anon_sym_BSLASHGlstext] = ACTIONS(12473), + [anon_sym_BSLASHGLStext] = ACTIONS(12473), + [anon_sym_BSLASHglsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12473), + [anon_sym_BSLASHglsplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSplural] = ACTIONS(12473), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHglsname] = ACTIONS(12473), + [anon_sym_BSLASHGlsname] = ACTIONS(12473), + [anon_sym_BSLASHGLSname] = ACTIONS(12473), + [anon_sym_BSLASHglssymbol] = ACTIONS(12473), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12473), + [anon_sym_BSLASHglsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12473), + [anon_sym_BSLASHglsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12473), + [anon_sym_BSLASHglsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12473), + [anon_sym_BSLASHglsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12473), + [anon_sym_BSLASHglsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12473), + [anon_sym_BSLASHnewacronym] = ACTIONS(12473), + [anon_sym_BSLASHacrshort] = ACTIONS(12473), + [anon_sym_BSLASHAcrshort] = ACTIONS(12473), + [anon_sym_BSLASHACRshort] = ACTIONS(12473), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12473), + [anon_sym_BSLASHacrlong] = ACTIONS(12473), + [anon_sym_BSLASHAcrlong] = ACTIONS(12473), + [anon_sym_BSLASHACRlong] = ACTIONS(12473), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12473), + [anon_sym_BSLASHacrfull] = ACTIONS(12473), + [anon_sym_BSLASHAcrfull] = ACTIONS(12473), + [anon_sym_BSLASHACRfull] = ACTIONS(12473), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12473), + [anon_sym_BSLASHacs] = ACTIONS(12473), + [anon_sym_BSLASHAcs] = ACTIONS(12473), + [anon_sym_BSLASHacsp] = ACTIONS(12473), + [anon_sym_BSLASHAcsp] = ACTIONS(12473), + [anon_sym_BSLASHacl] = ACTIONS(12473), + [anon_sym_BSLASHAcl] = ACTIONS(12473), + [anon_sym_BSLASHaclp] = ACTIONS(12473), + [anon_sym_BSLASHAclp] = ACTIONS(12473), + [anon_sym_BSLASHacf] = ACTIONS(12473), + [anon_sym_BSLASHAcf] = ACTIONS(12473), + [anon_sym_BSLASHacfp] = ACTIONS(12473), + [anon_sym_BSLASHAcfp] = ACTIONS(12473), + [anon_sym_BSLASHac] = ACTIONS(12473), + [anon_sym_BSLASHAc] = ACTIONS(12473), + [anon_sym_BSLASHacp] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12473), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12473), + [anon_sym_BSLASHcolor] = ACTIONS(12473), + [anon_sym_BSLASHcolorbox] = ACTIONS(12473), + [anon_sym_BSLASHtextcolor] = ACTIONS(12473), + [anon_sym_BSLASHpagecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12473), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12473), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12473), + }, + [1476] = { + [sym_generic_command_name] = ACTIONS(12457), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12457), + [aux_sym_paragraph_token1] = ACTIONS(12457), + [aux_sym_subparagraph_token1] = ACTIONS(12457), + [anon_sym_BSLASHitem] = ACTIONS(12457), + [anon_sym_LBRACK] = ACTIONS(12455), + [anon_sym_RBRACK] = ACTIONS(12455), + [anon_sym_LBRACE] = ACTIONS(12455), + [anon_sym_RBRACE] = ACTIONS(12455), + [anon_sym_LPAREN] = ACTIONS(12455), + [anon_sym_COMMA] = ACTIONS(12455), + [anon_sym_EQ] = ACTIONS(12455), + [sym_word] = ACTIONS(12455), + [sym_param] = ACTIONS(12455), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12455), + [anon_sym_DOLLAR] = ACTIONS(12457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12455), + [anon_sym_BSLASHbegin] = ACTIONS(12457), + [anon_sym_BSLASHcaption] = ACTIONS(12457), + [anon_sym_BSLASHcite] = ACTIONS(12457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCite] = ACTIONS(12457), + [anon_sym_BSLASHnocite] = ACTIONS(12457), + [anon_sym_BSLASHcitet] = ACTIONS(12457), + [anon_sym_BSLASHcitep] = ACTIONS(12457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteauthor] = ACTIONS(12457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitetitle] = ACTIONS(12457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteyear] = ACTIONS(12457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitedate] = ACTIONS(12457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteurl] = ACTIONS(12457), + [anon_sym_BSLASHfullcite] = ACTIONS(12457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12457), + [anon_sym_BSLASHcitealt] = ACTIONS(12457), + [anon_sym_BSLASHcitealp] = ACTIONS(12457), + [anon_sym_BSLASHcitetext] = ACTIONS(12457), + [anon_sym_BSLASHparencite] = ACTIONS(12457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHParencite] = ACTIONS(12457), + [anon_sym_BSLASHfootcite] = ACTIONS(12457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12457), + [anon_sym_BSLASHtextcite] = ACTIONS(12457), + [anon_sym_BSLASHTextcite] = ACTIONS(12457), + [anon_sym_BSLASHsmartcite] = ACTIONS(12457), + [anon_sym_BSLASHSmartcite] = ACTIONS(12457), + [anon_sym_BSLASHsupercite] = ACTIONS(12457), + [anon_sym_BSLASHautocite] = ACTIONS(12457), + [anon_sym_BSLASHAutocite] = ACTIONS(12457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHvolcite] = ACTIONS(12457), + [anon_sym_BSLASHVolcite] = ACTIONS(12457), + [anon_sym_BSLASHpvolcite] = ACTIONS(12457), + [anon_sym_BSLASHPvolcite] = ACTIONS(12457), + [anon_sym_BSLASHfvolcite] = ACTIONS(12457), + [anon_sym_BSLASHftvolcite] = ACTIONS(12457), + [anon_sym_BSLASHsvolcite] = ACTIONS(12457), + [anon_sym_BSLASHSvolcite] = ACTIONS(12457), + [anon_sym_BSLASHtvolcite] = ACTIONS(12457), + [anon_sym_BSLASHTvolcite] = ACTIONS(12457), + [anon_sym_BSLASHavolcite] = ACTIONS(12457), + [anon_sym_BSLASHAvolcite] = ACTIONS(12457), + [anon_sym_BSLASHnotecite] = ACTIONS(12457), + [anon_sym_BSLASHpnotecite] = ACTIONS(12457), + [anon_sym_BSLASHPnotecite] = ACTIONS(12457), + [anon_sym_BSLASHfnotecite] = ACTIONS(12457), + [anon_sym_BSLASHusepackage] = ACTIONS(12457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12457), + [anon_sym_BSLASHinclude] = ACTIONS(12457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12457), + [anon_sym_BSLASHinput] = ACTIONS(12457), + [anon_sym_BSLASHsubfile] = ACTIONS(12457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12457), + [anon_sym_BSLASHbibliography] = ACTIONS(12457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12457), + [anon_sym_BSLASHincludesvg] = ACTIONS(12457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12457), + [anon_sym_BSLASHimport] = ACTIONS(12457), + [anon_sym_BSLASHsubimport] = ACTIONS(12457), + [anon_sym_BSLASHinputfrom] = ACTIONS(12457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12457), + [anon_sym_BSLASHincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHlabel] = ACTIONS(12457), + [anon_sym_BSLASHref] = ACTIONS(12457), + [anon_sym_BSLASHvref] = ACTIONS(12457), + [anon_sym_BSLASHVref] = ACTIONS(12457), + [anon_sym_BSLASHautoref] = ACTIONS(12457), + [anon_sym_BSLASHpageref] = ACTIONS(12457), + [anon_sym_BSLASHcref] = ACTIONS(12457), + [anon_sym_BSLASHCref] = ACTIONS(12457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnameCref] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHlabelcref] = ACTIONS(12457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12457), + [anon_sym_BSLASHeqref] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange] = ACTIONS(12457), + [anon_sym_BSLASHCrefrange] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewlabel] = ACTIONS(12457), + [anon_sym_BSLASHnewcommand] = ACTIONS(12457), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12457), + [anon_sym_BSLASHgls] = ACTIONS(12457), + [anon_sym_BSLASHGls] = ACTIONS(12457), + [anon_sym_BSLASHGLS] = ACTIONS(12457), + [anon_sym_BSLASHglspl] = ACTIONS(12457), + [anon_sym_BSLASHGlspl] = ACTIONS(12457), + [anon_sym_BSLASHGLSpl] = ACTIONS(12457), + [anon_sym_BSLASHglsdisp] = ACTIONS(12457), + [anon_sym_BSLASHglslink] = ACTIONS(12457), + [anon_sym_BSLASHglstext] = ACTIONS(12457), + [anon_sym_BSLASHGlstext] = ACTIONS(12457), + [anon_sym_BSLASHGLStext] = ACTIONS(12457), + [anon_sym_BSLASHglsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12457), + [anon_sym_BSLASHglsplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSplural] = ACTIONS(12457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHglsname] = ACTIONS(12457), + [anon_sym_BSLASHGlsname] = ACTIONS(12457), + [anon_sym_BSLASHGLSname] = ACTIONS(12457), + [anon_sym_BSLASHglssymbol] = ACTIONS(12457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12457), + [anon_sym_BSLASHglsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12457), + [anon_sym_BSLASHglsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12457), + [anon_sym_BSLASHglsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12457), + [anon_sym_BSLASHglsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12457), + [anon_sym_BSLASHglsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12457), + [anon_sym_BSLASHnewacronym] = ACTIONS(12457), + [anon_sym_BSLASHacrshort] = ACTIONS(12457), + [anon_sym_BSLASHAcrshort] = ACTIONS(12457), + [anon_sym_BSLASHACRshort] = ACTIONS(12457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12457), + [anon_sym_BSLASHacrlong] = ACTIONS(12457), + [anon_sym_BSLASHAcrlong] = ACTIONS(12457), + [anon_sym_BSLASHACRlong] = ACTIONS(12457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12457), + [anon_sym_BSLASHacrfull] = ACTIONS(12457), + [anon_sym_BSLASHAcrfull] = ACTIONS(12457), + [anon_sym_BSLASHACRfull] = ACTIONS(12457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12457), + [anon_sym_BSLASHacs] = ACTIONS(12457), + [anon_sym_BSLASHAcs] = ACTIONS(12457), + [anon_sym_BSLASHacsp] = ACTIONS(12457), + [anon_sym_BSLASHAcsp] = ACTIONS(12457), + [anon_sym_BSLASHacl] = ACTIONS(12457), + [anon_sym_BSLASHAcl] = ACTIONS(12457), + [anon_sym_BSLASHaclp] = ACTIONS(12457), + [anon_sym_BSLASHAclp] = ACTIONS(12457), + [anon_sym_BSLASHacf] = ACTIONS(12457), + [anon_sym_BSLASHAcf] = ACTIONS(12457), + [anon_sym_BSLASHacfp] = ACTIONS(12457), + [anon_sym_BSLASHAcfp] = ACTIONS(12457), + [anon_sym_BSLASHac] = ACTIONS(12457), + [anon_sym_BSLASHAc] = ACTIONS(12457), + [anon_sym_BSLASHacp] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12457), + [anon_sym_BSLASHcolor] = ACTIONS(12457), + [anon_sym_BSLASHcolorbox] = ACTIONS(12457), + [anon_sym_BSLASHtextcolor] = ACTIONS(12457), + [anon_sym_BSLASHpagecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12457), + }, + [1477] = { + [sym_generic_command_name] = ACTIONS(12417), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12417), + [aux_sym_paragraph_token1] = ACTIONS(12417), + [aux_sym_subparagraph_token1] = ACTIONS(12417), + [anon_sym_BSLASHitem] = ACTIONS(12417), + [anon_sym_LBRACK] = ACTIONS(12415), + [anon_sym_RBRACK] = ACTIONS(12415), + [anon_sym_LBRACE] = ACTIONS(12415), + [anon_sym_RBRACE] = ACTIONS(12415), + [anon_sym_LPAREN] = ACTIONS(12415), + [anon_sym_COMMA] = ACTIONS(12415), + [anon_sym_EQ] = ACTIONS(12415), + [sym_word] = ACTIONS(12415), + [sym_param] = ACTIONS(12415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12415), + [anon_sym_DOLLAR] = ACTIONS(12417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12415), + [anon_sym_BSLASHbegin] = ACTIONS(12417), + [anon_sym_BSLASHcaption] = ACTIONS(12417), + [anon_sym_BSLASHcite] = ACTIONS(12417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCite] = ACTIONS(12417), + [anon_sym_BSLASHnocite] = ACTIONS(12417), + [anon_sym_BSLASHcitet] = ACTIONS(12417), + [anon_sym_BSLASHcitep] = ACTIONS(12417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteauthor] = ACTIONS(12417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitetitle] = ACTIONS(12417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteyear] = ACTIONS(12417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitedate] = ACTIONS(12417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteurl] = ACTIONS(12417), + [anon_sym_BSLASHfullcite] = ACTIONS(12417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12417), + [anon_sym_BSLASHcitealt] = ACTIONS(12417), + [anon_sym_BSLASHcitealp] = ACTIONS(12417), + [anon_sym_BSLASHcitetext] = ACTIONS(12417), + [anon_sym_BSLASHparencite] = ACTIONS(12417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHParencite] = ACTIONS(12417), + [anon_sym_BSLASHfootcite] = ACTIONS(12417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12417), + [anon_sym_BSLASHtextcite] = ACTIONS(12417), + [anon_sym_BSLASHTextcite] = ACTIONS(12417), + [anon_sym_BSLASHsmartcite] = ACTIONS(12417), + [anon_sym_BSLASHSmartcite] = ACTIONS(12417), + [anon_sym_BSLASHsupercite] = ACTIONS(12417), + [anon_sym_BSLASHautocite] = ACTIONS(12417), + [anon_sym_BSLASHAutocite] = ACTIONS(12417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHvolcite] = ACTIONS(12417), + [anon_sym_BSLASHVolcite] = ACTIONS(12417), + [anon_sym_BSLASHpvolcite] = ACTIONS(12417), + [anon_sym_BSLASHPvolcite] = ACTIONS(12417), + [anon_sym_BSLASHfvolcite] = ACTIONS(12417), + [anon_sym_BSLASHftvolcite] = ACTIONS(12417), + [anon_sym_BSLASHsvolcite] = ACTIONS(12417), + [anon_sym_BSLASHSvolcite] = ACTIONS(12417), + [anon_sym_BSLASHtvolcite] = ACTIONS(12417), + [anon_sym_BSLASHTvolcite] = ACTIONS(12417), + [anon_sym_BSLASHavolcite] = ACTIONS(12417), + [anon_sym_BSLASHAvolcite] = ACTIONS(12417), + [anon_sym_BSLASHnotecite] = ACTIONS(12417), + [anon_sym_BSLASHpnotecite] = ACTIONS(12417), + [anon_sym_BSLASHPnotecite] = ACTIONS(12417), + [anon_sym_BSLASHfnotecite] = ACTIONS(12417), + [anon_sym_BSLASHusepackage] = ACTIONS(12417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12417), + [anon_sym_BSLASHinclude] = ACTIONS(12417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12417), + [anon_sym_BSLASHinput] = ACTIONS(12417), + [anon_sym_BSLASHsubfile] = ACTIONS(12417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12417), + [anon_sym_BSLASHbibliography] = ACTIONS(12417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12417), + [anon_sym_BSLASHincludesvg] = ACTIONS(12417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12417), + [anon_sym_BSLASHimport] = ACTIONS(12417), + [anon_sym_BSLASHsubimport] = ACTIONS(12417), + [anon_sym_BSLASHinputfrom] = ACTIONS(12417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12417), + [anon_sym_BSLASHincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHlabel] = ACTIONS(12417), + [anon_sym_BSLASHref] = ACTIONS(12417), + [anon_sym_BSLASHvref] = ACTIONS(12417), + [anon_sym_BSLASHVref] = ACTIONS(12417), + [anon_sym_BSLASHautoref] = ACTIONS(12417), + [anon_sym_BSLASHpageref] = ACTIONS(12417), + [anon_sym_BSLASHcref] = ACTIONS(12417), + [anon_sym_BSLASHCref] = ACTIONS(12417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnameCref] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHlabelcref] = ACTIONS(12417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12417), + [anon_sym_BSLASHeqref] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange] = ACTIONS(12417), + [anon_sym_BSLASHCrefrange] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewlabel] = ACTIONS(12417), + [anon_sym_BSLASHnewcommand] = ACTIONS(12417), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12417), + [anon_sym_BSLASHgls] = ACTIONS(12417), + [anon_sym_BSLASHGls] = ACTIONS(12417), + [anon_sym_BSLASHGLS] = ACTIONS(12417), + [anon_sym_BSLASHglspl] = ACTIONS(12417), + [anon_sym_BSLASHGlspl] = ACTIONS(12417), + [anon_sym_BSLASHGLSpl] = ACTIONS(12417), + [anon_sym_BSLASHglsdisp] = ACTIONS(12417), + [anon_sym_BSLASHglslink] = ACTIONS(12417), + [anon_sym_BSLASHglstext] = ACTIONS(12417), + [anon_sym_BSLASHGlstext] = ACTIONS(12417), + [anon_sym_BSLASHGLStext] = ACTIONS(12417), + [anon_sym_BSLASHglsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12417), + [anon_sym_BSLASHglsplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSplural] = ACTIONS(12417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHglsname] = ACTIONS(12417), + [anon_sym_BSLASHGlsname] = ACTIONS(12417), + [anon_sym_BSLASHGLSname] = ACTIONS(12417), + [anon_sym_BSLASHglssymbol] = ACTIONS(12417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12417), + [anon_sym_BSLASHglsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12417), + [anon_sym_BSLASHglsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12417), + [anon_sym_BSLASHglsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12417), + [anon_sym_BSLASHglsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12417), + [anon_sym_BSLASHglsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12417), + [anon_sym_BSLASHnewacronym] = ACTIONS(12417), + [anon_sym_BSLASHacrshort] = ACTIONS(12417), + [anon_sym_BSLASHAcrshort] = ACTIONS(12417), + [anon_sym_BSLASHACRshort] = ACTIONS(12417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12417), + [anon_sym_BSLASHacrlong] = ACTIONS(12417), + [anon_sym_BSLASHAcrlong] = ACTIONS(12417), + [anon_sym_BSLASHACRlong] = ACTIONS(12417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12417), + [anon_sym_BSLASHacrfull] = ACTIONS(12417), + [anon_sym_BSLASHAcrfull] = ACTIONS(12417), + [anon_sym_BSLASHACRfull] = ACTIONS(12417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12417), + [anon_sym_BSLASHacs] = ACTIONS(12417), + [anon_sym_BSLASHAcs] = ACTIONS(12417), + [anon_sym_BSLASHacsp] = ACTIONS(12417), + [anon_sym_BSLASHAcsp] = ACTIONS(12417), + [anon_sym_BSLASHacl] = ACTIONS(12417), + [anon_sym_BSLASHAcl] = ACTIONS(12417), + [anon_sym_BSLASHaclp] = ACTIONS(12417), + [anon_sym_BSLASHAclp] = ACTIONS(12417), + [anon_sym_BSLASHacf] = ACTIONS(12417), + [anon_sym_BSLASHAcf] = ACTIONS(12417), + [anon_sym_BSLASHacfp] = ACTIONS(12417), + [anon_sym_BSLASHAcfp] = ACTIONS(12417), + [anon_sym_BSLASHac] = ACTIONS(12417), + [anon_sym_BSLASHAc] = ACTIONS(12417), + [anon_sym_BSLASHacp] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12417), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12417), + [anon_sym_BSLASHcolor] = ACTIONS(12417), + [anon_sym_BSLASHcolorbox] = ACTIONS(12417), + [anon_sym_BSLASHtextcolor] = ACTIONS(12417), + [anon_sym_BSLASHpagecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12417), + }, + [1478] = { + [sym_generic_command_name] = ACTIONS(12389), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12389), + [aux_sym_paragraph_token1] = ACTIONS(12389), + [aux_sym_subparagraph_token1] = ACTIONS(12389), + [anon_sym_BSLASHitem] = ACTIONS(12389), + [anon_sym_LBRACK] = ACTIONS(12387), + [anon_sym_RBRACK] = ACTIONS(12387), + [anon_sym_LBRACE] = ACTIONS(12387), + [anon_sym_RBRACE] = ACTIONS(12387), + [anon_sym_LPAREN] = ACTIONS(12387), + [anon_sym_COMMA] = ACTIONS(12387), + [anon_sym_EQ] = ACTIONS(12387), + [sym_word] = ACTIONS(12387), + [sym_param] = ACTIONS(12387), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12387), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12387), + [anon_sym_DOLLAR] = ACTIONS(12389), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12387), + [anon_sym_BSLASHbegin] = ACTIONS(12389), + [anon_sym_BSLASHcaption] = ACTIONS(12389), + [anon_sym_BSLASHcite] = ACTIONS(12389), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCite] = ACTIONS(12389), + [anon_sym_BSLASHnocite] = ACTIONS(12389), + [anon_sym_BSLASHcitet] = ACTIONS(12389), + [anon_sym_BSLASHcitep] = ACTIONS(12389), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteauthor] = ACTIONS(12389), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12389), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitetitle] = ACTIONS(12389), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteyear] = ACTIONS(12389), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitedate] = ACTIONS(12389), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteurl] = ACTIONS(12389), + [anon_sym_BSLASHfullcite] = ACTIONS(12389), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12389), + [anon_sym_BSLASHcitealt] = ACTIONS(12389), + [anon_sym_BSLASHcitealp] = ACTIONS(12389), + [anon_sym_BSLASHcitetext] = ACTIONS(12389), + [anon_sym_BSLASHparencite] = ACTIONS(12389), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHParencite] = ACTIONS(12389), + [anon_sym_BSLASHfootcite] = ACTIONS(12389), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12389), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12389), + [anon_sym_BSLASHtextcite] = ACTIONS(12389), + [anon_sym_BSLASHTextcite] = ACTIONS(12389), + [anon_sym_BSLASHsmartcite] = ACTIONS(12389), + [anon_sym_BSLASHSmartcite] = ACTIONS(12389), + [anon_sym_BSLASHsupercite] = ACTIONS(12389), + [anon_sym_BSLASHautocite] = ACTIONS(12389), + [anon_sym_BSLASHAutocite] = ACTIONS(12389), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHvolcite] = ACTIONS(12389), + [anon_sym_BSLASHVolcite] = ACTIONS(12389), + [anon_sym_BSLASHpvolcite] = ACTIONS(12389), + [anon_sym_BSLASHPvolcite] = ACTIONS(12389), + [anon_sym_BSLASHfvolcite] = ACTIONS(12389), + [anon_sym_BSLASHftvolcite] = ACTIONS(12389), + [anon_sym_BSLASHsvolcite] = ACTIONS(12389), + [anon_sym_BSLASHSvolcite] = ACTIONS(12389), + [anon_sym_BSLASHtvolcite] = ACTIONS(12389), + [anon_sym_BSLASHTvolcite] = ACTIONS(12389), + [anon_sym_BSLASHavolcite] = ACTIONS(12389), + [anon_sym_BSLASHAvolcite] = ACTIONS(12389), + [anon_sym_BSLASHnotecite] = ACTIONS(12389), + [anon_sym_BSLASHpnotecite] = ACTIONS(12389), + [anon_sym_BSLASHPnotecite] = ACTIONS(12389), + [anon_sym_BSLASHfnotecite] = ACTIONS(12389), + [anon_sym_BSLASHusepackage] = ACTIONS(12389), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12389), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12389), + [anon_sym_BSLASHinclude] = ACTIONS(12389), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12389), + [anon_sym_BSLASHinput] = ACTIONS(12389), + [anon_sym_BSLASHsubfile] = ACTIONS(12389), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12389), + [anon_sym_BSLASHbibliography] = ACTIONS(12389), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12389), + [anon_sym_BSLASHincludesvg] = ACTIONS(12389), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12389), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12389), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12389), + [anon_sym_BSLASHimport] = ACTIONS(12389), + [anon_sym_BSLASHsubimport] = ACTIONS(12389), + [anon_sym_BSLASHinputfrom] = ACTIONS(12389), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12389), + [anon_sym_BSLASHincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHlabel] = ACTIONS(12389), + [anon_sym_BSLASHref] = ACTIONS(12389), + [anon_sym_BSLASHvref] = ACTIONS(12389), + [anon_sym_BSLASHVref] = ACTIONS(12389), + [anon_sym_BSLASHautoref] = ACTIONS(12389), + [anon_sym_BSLASHpageref] = ACTIONS(12389), + [anon_sym_BSLASHcref] = ACTIONS(12389), + [anon_sym_BSLASHCref] = ACTIONS(12389), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnameCref] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHlabelcref] = ACTIONS(12389), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12389), + [anon_sym_BSLASHeqref] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange] = ACTIONS(12389), + [anon_sym_BSLASHCrefrange] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewlabel] = ACTIONS(12389), + [anon_sym_BSLASHnewcommand] = ACTIONS(12389), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12389), + [anon_sym_BSLASHgls] = ACTIONS(12389), + [anon_sym_BSLASHGls] = ACTIONS(12389), + [anon_sym_BSLASHGLS] = ACTIONS(12389), + [anon_sym_BSLASHglspl] = ACTIONS(12389), + [anon_sym_BSLASHGlspl] = ACTIONS(12389), + [anon_sym_BSLASHGLSpl] = ACTIONS(12389), + [anon_sym_BSLASHglsdisp] = ACTIONS(12389), + [anon_sym_BSLASHglslink] = ACTIONS(12389), + [anon_sym_BSLASHglstext] = ACTIONS(12389), + [anon_sym_BSLASHGlstext] = ACTIONS(12389), + [anon_sym_BSLASHGLStext] = ACTIONS(12389), + [anon_sym_BSLASHglsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12389), + [anon_sym_BSLASHglsplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSplural] = ACTIONS(12389), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHglsname] = ACTIONS(12389), + [anon_sym_BSLASHGlsname] = ACTIONS(12389), + [anon_sym_BSLASHGLSname] = ACTIONS(12389), + [anon_sym_BSLASHglssymbol] = ACTIONS(12389), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12389), + [anon_sym_BSLASHglsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12389), + [anon_sym_BSLASHglsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12389), + [anon_sym_BSLASHglsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12389), + [anon_sym_BSLASHglsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12389), + [anon_sym_BSLASHglsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12389), + [anon_sym_BSLASHnewacronym] = ACTIONS(12389), + [anon_sym_BSLASHacrshort] = ACTIONS(12389), + [anon_sym_BSLASHAcrshort] = ACTIONS(12389), + [anon_sym_BSLASHACRshort] = ACTIONS(12389), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12389), + [anon_sym_BSLASHacrlong] = ACTIONS(12389), + [anon_sym_BSLASHAcrlong] = ACTIONS(12389), + [anon_sym_BSLASHACRlong] = ACTIONS(12389), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12389), + [anon_sym_BSLASHacrfull] = ACTIONS(12389), + [anon_sym_BSLASHAcrfull] = ACTIONS(12389), + [anon_sym_BSLASHACRfull] = ACTIONS(12389), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12389), + [anon_sym_BSLASHacs] = ACTIONS(12389), + [anon_sym_BSLASHAcs] = ACTIONS(12389), + [anon_sym_BSLASHacsp] = ACTIONS(12389), + [anon_sym_BSLASHAcsp] = ACTIONS(12389), + [anon_sym_BSLASHacl] = ACTIONS(12389), + [anon_sym_BSLASHAcl] = ACTIONS(12389), + [anon_sym_BSLASHaclp] = ACTIONS(12389), + [anon_sym_BSLASHAclp] = ACTIONS(12389), + [anon_sym_BSLASHacf] = ACTIONS(12389), + [anon_sym_BSLASHAcf] = ACTIONS(12389), + [anon_sym_BSLASHacfp] = ACTIONS(12389), + [anon_sym_BSLASHAcfp] = ACTIONS(12389), + [anon_sym_BSLASHac] = ACTIONS(12389), + [anon_sym_BSLASHAc] = ACTIONS(12389), + [anon_sym_BSLASHacp] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12389), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12389), + [anon_sym_BSLASHcolor] = ACTIONS(12389), + [anon_sym_BSLASHcolorbox] = ACTIONS(12389), + [anon_sym_BSLASHtextcolor] = ACTIONS(12389), + [anon_sym_BSLASHpagecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12389), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12389), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12389), + }, + [1479] = { + [sym_generic_command_name] = ACTIONS(12385), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12385), + [aux_sym_paragraph_token1] = ACTIONS(12385), + [aux_sym_subparagraph_token1] = ACTIONS(12385), + [anon_sym_BSLASHitem] = ACTIONS(12385), + [anon_sym_LBRACK] = ACTIONS(12383), + [anon_sym_RBRACK] = ACTIONS(12383), + [anon_sym_LBRACE] = ACTIONS(12383), + [anon_sym_RBRACE] = ACTIONS(12383), + [anon_sym_LPAREN] = ACTIONS(12383), + [anon_sym_COMMA] = ACTIONS(12383), + [anon_sym_EQ] = ACTIONS(12383), + [sym_word] = ACTIONS(12383), + [sym_param] = ACTIONS(12383), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12383), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12383), + [anon_sym_DOLLAR] = ACTIONS(12385), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12383), + [anon_sym_BSLASHbegin] = ACTIONS(12385), + [anon_sym_BSLASHcaption] = ACTIONS(12385), + [anon_sym_BSLASHcite] = ACTIONS(12385), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCite] = ACTIONS(12385), + [anon_sym_BSLASHnocite] = ACTIONS(12385), + [anon_sym_BSLASHcitet] = ACTIONS(12385), + [anon_sym_BSLASHcitep] = ACTIONS(12385), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteauthor] = ACTIONS(12385), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12385), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitetitle] = ACTIONS(12385), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteyear] = ACTIONS(12385), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitedate] = ACTIONS(12385), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteurl] = ACTIONS(12385), + [anon_sym_BSLASHfullcite] = ACTIONS(12385), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12385), + [anon_sym_BSLASHcitealt] = ACTIONS(12385), + [anon_sym_BSLASHcitealp] = ACTIONS(12385), + [anon_sym_BSLASHcitetext] = ACTIONS(12385), + [anon_sym_BSLASHparencite] = ACTIONS(12385), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHParencite] = ACTIONS(12385), + [anon_sym_BSLASHfootcite] = ACTIONS(12385), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12385), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12385), + [anon_sym_BSLASHtextcite] = ACTIONS(12385), + [anon_sym_BSLASHTextcite] = ACTIONS(12385), + [anon_sym_BSLASHsmartcite] = ACTIONS(12385), + [anon_sym_BSLASHSmartcite] = ACTIONS(12385), + [anon_sym_BSLASHsupercite] = ACTIONS(12385), + [anon_sym_BSLASHautocite] = ACTIONS(12385), + [anon_sym_BSLASHAutocite] = ACTIONS(12385), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHvolcite] = ACTIONS(12385), + [anon_sym_BSLASHVolcite] = ACTIONS(12385), + [anon_sym_BSLASHpvolcite] = ACTIONS(12385), + [anon_sym_BSLASHPvolcite] = ACTIONS(12385), + [anon_sym_BSLASHfvolcite] = ACTIONS(12385), + [anon_sym_BSLASHftvolcite] = ACTIONS(12385), + [anon_sym_BSLASHsvolcite] = ACTIONS(12385), + [anon_sym_BSLASHSvolcite] = ACTIONS(12385), + [anon_sym_BSLASHtvolcite] = ACTIONS(12385), + [anon_sym_BSLASHTvolcite] = ACTIONS(12385), + [anon_sym_BSLASHavolcite] = ACTIONS(12385), + [anon_sym_BSLASHAvolcite] = ACTIONS(12385), + [anon_sym_BSLASHnotecite] = ACTIONS(12385), + [anon_sym_BSLASHpnotecite] = ACTIONS(12385), + [anon_sym_BSLASHPnotecite] = ACTIONS(12385), + [anon_sym_BSLASHfnotecite] = ACTIONS(12385), + [anon_sym_BSLASHusepackage] = ACTIONS(12385), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12385), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12385), + [anon_sym_BSLASHinclude] = ACTIONS(12385), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12385), + [anon_sym_BSLASHinput] = ACTIONS(12385), + [anon_sym_BSLASHsubfile] = ACTIONS(12385), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12385), + [anon_sym_BSLASHbibliography] = ACTIONS(12385), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12385), + [anon_sym_BSLASHincludesvg] = ACTIONS(12385), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12385), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12385), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12385), + [anon_sym_BSLASHimport] = ACTIONS(12385), + [anon_sym_BSLASHsubimport] = ACTIONS(12385), + [anon_sym_BSLASHinputfrom] = ACTIONS(12385), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12385), + [anon_sym_BSLASHincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHlabel] = ACTIONS(12385), + [anon_sym_BSLASHref] = ACTIONS(12385), + [anon_sym_BSLASHvref] = ACTIONS(12385), + [anon_sym_BSLASHVref] = ACTIONS(12385), + [anon_sym_BSLASHautoref] = ACTIONS(12385), + [anon_sym_BSLASHpageref] = ACTIONS(12385), + [anon_sym_BSLASHcref] = ACTIONS(12385), + [anon_sym_BSLASHCref] = ACTIONS(12385), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnameCref] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHlabelcref] = ACTIONS(12385), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12385), + [anon_sym_BSLASHeqref] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange] = ACTIONS(12385), + [anon_sym_BSLASHCrefrange] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewlabel] = ACTIONS(12385), + [anon_sym_BSLASHnewcommand] = ACTIONS(12385), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12385), + [anon_sym_BSLASHgls] = ACTIONS(12385), + [anon_sym_BSLASHGls] = ACTIONS(12385), + [anon_sym_BSLASHGLS] = ACTIONS(12385), + [anon_sym_BSLASHglspl] = ACTIONS(12385), + [anon_sym_BSLASHGlspl] = ACTIONS(12385), + [anon_sym_BSLASHGLSpl] = ACTIONS(12385), + [anon_sym_BSLASHglsdisp] = ACTIONS(12385), + [anon_sym_BSLASHglslink] = ACTIONS(12385), + [anon_sym_BSLASHglstext] = ACTIONS(12385), + [anon_sym_BSLASHGlstext] = ACTIONS(12385), + [anon_sym_BSLASHGLStext] = ACTIONS(12385), + [anon_sym_BSLASHglsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12385), + [anon_sym_BSLASHglsplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSplural] = ACTIONS(12385), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHglsname] = ACTIONS(12385), + [anon_sym_BSLASHGlsname] = ACTIONS(12385), + [anon_sym_BSLASHGLSname] = ACTIONS(12385), + [anon_sym_BSLASHglssymbol] = ACTIONS(12385), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12385), + [anon_sym_BSLASHglsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12385), + [anon_sym_BSLASHglsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12385), + [anon_sym_BSLASHglsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12385), + [anon_sym_BSLASHglsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12385), + [anon_sym_BSLASHglsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12385), + [anon_sym_BSLASHnewacronym] = ACTIONS(12385), + [anon_sym_BSLASHacrshort] = ACTIONS(12385), + [anon_sym_BSLASHAcrshort] = ACTIONS(12385), + [anon_sym_BSLASHACRshort] = ACTIONS(12385), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12385), + [anon_sym_BSLASHacrlong] = ACTIONS(12385), + [anon_sym_BSLASHAcrlong] = ACTIONS(12385), + [anon_sym_BSLASHACRlong] = ACTIONS(12385), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12385), + [anon_sym_BSLASHacrfull] = ACTIONS(12385), + [anon_sym_BSLASHAcrfull] = ACTIONS(12385), + [anon_sym_BSLASHACRfull] = ACTIONS(12385), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12385), + [anon_sym_BSLASHacs] = ACTIONS(12385), + [anon_sym_BSLASHAcs] = ACTIONS(12385), + [anon_sym_BSLASHacsp] = ACTIONS(12385), + [anon_sym_BSLASHAcsp] = ACTIONS(12385), + [anon_sym_BSLASHacl] = ACTIONS(12385), + [anon_sym_BSLASHAcl] = ACTIONS(12385), + [anon_sym_BSLASHaclp] = ACTIONS(12385), + [anon_sym_BSLASHAclp] = ACTIONS(12385), + [anon_sym_BSLASHacf] = ACTIONS(12385), + [anon_sym_BSLASHAcf] = ACTIONS(12385), + [anon_sym_BSLASHacfp] = ACTIONS(12385), + [anon_sym_BSLASHAcfp] = ACTIONS(12385), + [anon_sym_BSLASHac] = ACTIONS(12385), + [anon_sym_BSLASHAc] = ACTIONS(12385), + [anon_sym_BSLASHacp] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12385), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12385), + [anon_sym_BSLASHcolor] = ACTIONS(12385), + [anon_sym_BSLASHcolorbox] = ACTIONS(12385), + [anon_sym_BSLASHtextcolor] = ACTIONS(12385), + [anon_sym_BSLASHpagecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12385), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12385), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12385), + }, + [1480] = { + [sym_brace_group] = STATE(1480), + [sym_bracket_group] = STATE(1480), + [sym_paren_group] = STATE(1480), + [aux_sym_generic_command_repeat1] = STATE(1480), + [sym_generic_command_name] = ACTIONS(12002), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12756), + [anon_sym_RBRACK] = ACTIONS(12000), + [anon_sym_LBRACE] = ACTIONS(12759), + [anon_sym_RBRACE] = ACTIONS(12000), + [anon_sym_LPAREN] = ACTIONS(12762), + [anon_sym_COMMA] = ACTIONS(12000), + [anon_sym_EQ] = ACTIONS(12000), + [sym_word] = ACTIONS(12000), + [sym_param] = ACTIONS(12000), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12000), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12000), + [anon_sym_DOLLAR] = ACTIONS(12002), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12000), + [anon_sym_BSLASHbegin] = ACTIONS(12002), + [anon_sym_BSLASHcaption] = ACTIONS(12002), + [anon_sym_BSLASHcite] = ACTIONS(12002), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCite] = ACTIONS(12002), + [anon_sym_BSLASHnocite] = ACTIONS(12002), + [anon_sym_BSLASHcitet] = ACTIONS(12002), + [anon_sym_BSLASHcitep] = ACTIONS(12002), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteauthor] = ACTIONS(12002), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12002), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitetitle] = ACTIONS(12002), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteyear] = ACTIONS(12002), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12000), + [anon_sym_BSLASHcitedate] = ACTIONS(12002), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12000), + [anon_sym_BSLASHciteurl] = ACTIONS(12002), + [anon_sym_BSLASHfullcite] = ACTIONS(12002), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12002), + [anon_sym_BSLASHcitealt] = ACTIONS(12002), + [anon_sym_BSLASHcitealp] = ACTIONS(12002), + [anon_sym_BSLASHcitetext] = ACTIONS(12002), + [anon_sym_BSLASHparencite] = ACTIONS(12002), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHParencite] = ACTIONS(12002), + [anon_sym_BSLASHfootcite] = ACTIONS(12002), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12002), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12002), + [anon_sym_BSLASHtextcite] = ACTIONS(12002), + [anon_sym_BSLASHTextcite] = ACTIONS(12002), + [anon_sym_BSLASHsmartcite] = ACTIONS(12002), + [anon_sym_BSLASHSmartcite] = ACTIONS(12002), + [anon_sym_BSLASHsupercite] = ACTIONS(12002), + [anon_sym_BSLASHautocite] = ACTIONS(12002), + [anon_sym_BSLASHAutocite] = ACTIONS(12002), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12000), + [anon_sym_BSLASHvolcite] = ACTIONS(12002), + [anon_sym_BSLASHVolcite] = ACTIONS(12002), + [anon_sym_BSLASHpvolcite] = ACTIONS(12002), + [anon_sym_BSLASHPvolcite] = ACTIONS(12002), + [anon_sym_BSLASHfvolcite] = ACTIONS(12002), + [anon_sym_BSLASHftvolcite] = ACTIONS(12002), + [anon_sym_BSLASHsvolcite] = ACTIONS(12002), + [anon_sym_BSLASHSvolcite] = ACTIONS(12002), + [anon_sym_BSLASHtvolcite] = ACTIONS(12002), + [anon_sym_BSLASHTvolcite] = ACTIONS(12002), + [anon_sym_BSLASHavolcite] = ACTIONS(12002), + [anon_sym_BSLASHAvolcite] = ACTIONS(12002), + [anon_sym_BSLASHnotecite] = ACTIONS(12002), + [anon_sym_BSLASHpnotecite] = ACTIONS(12002), + [anon_sym_BSLASHPnotecite] = ACTIONS(12002), + [anon_sym_BSLASHfnotecite] = ACTIONS(12002), + [anon_sym_BSLASHusepackage] = ACTIONS(12002), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12002), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12002), + [anon_sym_BSLASHinclude] = ACTIONS(12002), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12002), + [anon_sym_BSLASHinput] = ACTIONS(12002), + [anon_sym_BSLASHsubfile] = ACTIONS(12002), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12002), + [anon_sym_BSLASHbibliography] = ACTIONS(12002), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12002), + [anon_sym_BSLASHincludesvg] = ACTIONS(12002), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12002), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12002), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12002), + [anon_sym_BSLASHimport] = ACTIONS(12002), + [anon_sym_BSLASHsubimport] = ACTIONS(12002), + [anon_sym_BSLASHinputfrom] = ACTIONS(12002), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12002), + [anon_sym_BSLASHincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12002), + [anon_sym_BSLASHlabel] = ACTIONS(12002), + [anon_sym_BSLASHref] = ACTIONS(12002), + [anon_sym_BSLASHvref] = ACTIONS(12002), + [anon_sym_BSLASHVref] = ACTIONS(12002), + [anon_sym_BSLASHautoref] = ACTIONS(12002), + [anon_sym_BSLASHpageref] = ACTIONS(12002), + [anon_sym_BSLASHcref] = ACTIONS(12002), + [anon_sym_BSLASHCref] = ACTIONS(12002), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnameCref] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12002), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12002), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12002), + [anon_sym_BSLASHlabelcref] = ACTIONS(12002), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12002), + [anon_sym_BSLASHeqref] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange] = ACTIONS(12002), + [anon_sym_BSLASHCrefrange] = ACTIONS(12002), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewlabel] = ACTIONS(12002), + [anon_sym_BSLASHnewcommand] = ACTIONS(12002), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12002), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12000), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12002), + [anon_sym_BSLASHgls] = ACTIONS(12002), + [anon_sym_BSLASHGls] = ACTIONS(12002), + [anon_sym_BSLASHGLS] = ACTIONS(12002), + [anon_sym_BSLASHglspl] = ACTIONS(12002), + [anon_sym_BSLASHGlspl] = ACTIONS(12002), + [anon_sym_BSLASHGLSpl] = ACTIONS(12002), + [anon_sym_BSLASHglsdisp] = ACTIONS(12002), + [anon_sym_BSLASHglslink] = ACTIONS(12002), + [anon_sym_BSLASHglstext] = ACTIONS(12002), + [anon_sym_BSLASHGlstext] = ACTIONS(12002), + [anon_sym_BSLASHGLStext] = ACTIONS(12002), + [anon_sym_BSLASHglsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12002), + [anon_sym_BSLASHglsplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSplural] = ACTIONS(12002), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12002), + [anon_sym_BSLASHglsname] = ACTIONS(12002), + [anon_sym_BSLASHGlsname] = ACTIONS(12002), + [anon_sym_BSLASHGLSname] = ACTIONS(12002), + [anon_sym_BSLASHglssymbol] = ACTIONS(12002), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12002), + [anon_sym_BSLASHglsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12002), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12002), + [anon_sym_BSLASHglsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12002), + [anon_sym_BSLASHglsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12002), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12002), + [anon_sym_BSLASHglsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12002), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12002), + [anon_sym_BSLASHglsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12002), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12002), + [anon_sym_BSLASHnewacronym] = ACTIONS(12002), + [anon_sym_BSLASHacrshort] = ACTIONS(12002), + [anon_sym_BSLASHAcrshort] = ACTIONS(12002), + [anon_sym_BSLASHACRshort] = ACTIONS(12002), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12002), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12002), + [anon_sym_BSLASHacrlong] = ACTIONS(12002), + [anon_sym_BSLASHAcrlong] = ACTIONS(12002), + [anon_sym_BSLASHACRlong] = ACTIONS(12002), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12002), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12002), + [anon_sym_BSLASHacrfull] = ACTIONS(12002), + [anon_sym_BSLASHAcrfull] = ACTIONS(12002), + [anon_sym_BSLASHACRfull] = ACTIONS(12002), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12002), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12002), + [anon_sym_BSLASHacs] = ACTIONS(12002), + [anon_sym_BSLASHAcs] = ACTIONS(12002), + [anon_sym_BSLASHacsp] = ACTIONS(12002), + [anon_sym_BSLASHAcsp] = ACTIONS(12002), + [anon_sym_BSLASHacl] = ACTIONS(12002), + [anon_sym_BSLASHAcl] = ACTIONS(12002), + [anon_sym_BSLASHaclp] = ACTIONS(12002), + [anon_sym_BSLASHAclp] = ACTIONS(12002), + [anon_sym_BSLASHacf] = ACTIONS(12002), + [anon_sym_BSLASHAcf] = ACTIONS(12002), + [anon_sym_BSLASHacfp] = ACTIONS(12002), + [anon_sym_BSLASHAcfp] = ACTIONS(12002), + [anon_sym_BSLASHac] = ACTIONS(12002), + [anon_sym_BSLASHAc] = ACTIONS(12002), + [anon_sym_BSLASHacp] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12002), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12002), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12002), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12002), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12002), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12002), + [anon_sym_BSLASHcolor] = ACTIONS(12002), + [anon_sym_BSLASHcolorbox] = ACTIONS(12002), + [anon_sym_BSLASHtextcolor] = ACTIONS(12002), + [anon_sym_BSLASHpagecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12002), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12002), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12002), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12002), + }, + [1481] = { + [sym_generic_command_name] = ACTIONS(12365), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12365), + [aux_sym_paragraph_token1] = ACTIONS(12365), + [aux_sym_subparagraph_token1] = ACTIONS(12365), + [anon_sym_BSLASHitem] = ACTIONS(12365), + [anon_sym_LBRACK] = ACTIONS(12363), + [anon_sym_RBRACK] = ACTIONS(12363), + [anon_sym_LBRACE] = ACTIONS(12363), + [anon_sym_RBRACE] = ACTIONS(12363), + [anon_sym_LPAREN] = ACTIONS(12363), + [anon_sym_COMMA] = ACTIONS(12363), + [anon_sym_EQ] = ACTIONS(12363), + [sym_word] = ACTIONS(12363), + [sym_param] = ACTIONS(12363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12363), + [anon_sym_DOLLAR] = ACTIONS(12365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12363), + [anon_sym_BSLASHbegin] = ACTIONS(12365), + [anon_sym_BSLASHcaption] = ACTIONS(12365), + [anon_sym_BSLASHcite] = ACTIONS(12365), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCite] = ACTIONS(12365), + [anon_sym_BSLASHnocite] = ACTIONS(12365), + [anon_sym_BSLASHcitet] = ACTIONS(12365), + [anon_sym_BSLASHcitep] = ACTIONS(12365), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteauthor] = ACTIONS(12365), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12365), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitetitle] = ACTIONS(12365), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteyear] = ACTIONS(12365), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitedate] = ACTIONS(12365), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteurl] = ACTIONS(12365), + [anon_sym_BSLASHfullcite] = ACTIONS(12365), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12365), + [anon_sym_BSLASHcitealt] = ACTIONS(12365), + [anon_sym_BSLASHcitealp] = ACTIONS(12365), + [anon_sym_BSLASHcitetext] = ACTIONS(12365), + [anon_sym_BSLASHparencite] = ACTIONS(12365), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHParencite] = ACTIONS(12365), + [anon_sym_BSLASHfootcite] = ACTIONS(12365), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12365), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12365), + [anon_sym_BSLASHtextcite] = ACTIONS(12365), + [anon_sym_BSLASHTextcite] = ACTIONS(12365), + [anon_sym_BSLASHsmartcite] = ACTIONS(12365), + [anon_sym_BSLASHSmartcite] = ACTIONS(12365), + [anon_sym_BSLASHsupercite] = ACTIONS(12365), + [anon_sym_BSLASHautocite] = ACTIONS(12365), + [anon_sym_BSLASHAutocite] = ACTIONS(12365), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHvolcite] = ACTIONS(12365), + [anon_sym_BSLASHVolcite] = ACTIONS(12365), + [anon_sym_BSLASHpvolcite] = ACTIONS(12365), + [anon_sym_BSLASHPvolcite] = ACTIONS(12365), + [anon_sym_BSLASHfvolcite] = ACTIONS(12365), + [anon_sym_BSLASHftvolcite] = ACTIONS(12365), + [anon_sym_BSLASHsvolcite] = ACTIONS(12365), + [anon_sym_BSLASHSvolcite] = ACTIONS(12365), + [anon_sym_BSLASHtvolcite] = ACTIONS(12365), + [anon_sym_BSLASHTvolcite] = ACTIONS(12365), + [anon_sym_BSLASHavolcite] = ACTIONS(12365), + [anon_sym_BSLASHAvolcite] = ACTIONS(12365), + [anon_sym_BSLASHnotecite] = ACTIONS(12365), + [anon_sym_BSLASHpnotecite] = ACTIONS(12365), + [anon_sym_BSLASHPnotecite] = ACTIONS(12365), + [anon_sym_BSLASHfnotecite] = ACTIONS(12365), + [anon_sym_BSLASHusepackage] = ACTIONS(12365), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12365), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12365), + [anon_sym_BSLASHinclude] = ACTIONS(12365), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12365), + [anon_sym_BSLASHinput] = ACTIONS(12365), + [anon_sym_BSLASHsubfile] = ACTIONS(12365), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12365), + [anon_sym_BSLASHbibliography] = ACTIONS(12365), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12365), + [anon_sym_BSLASHincludesvg] = ACTIONS(12365), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12365), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12365), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12365), + [anon_sym_BSLASHimport] = ACTIONS(12365), + [anon_sym_BSLASHsubimport] = ACTIONS(12365), + [anon_sym_BSLASHinputfrom] = ACTIONS(12365), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12365), + [anon_sym_BSLASHincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHlabel] = ACTIONS(12365), + [anon_sym_BSLASHref] = ACTIONS(12365), + [anon_sym_BSLASHvref] = ACTIONS(12365), + [anon_sym_BSLASHVref] = ACTIONS(12365), + [anon_sym_BSLASHautoref] = ACTIONS(12365), + [anon_sym_BSLASHpageref] = ACTIONS(12365), + [anon_sym_BSLASHcref] = ACTIONS(12365), + [anon_sym_BSLASHCref] = ACTIONS(12365), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnameCref] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHlabelcref] = ACTIONS(12365), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12365), + [anon_sym_BSLASHeqref] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange] = ACTIONS(12365), + [anon_sym_BSLASHCrefrange] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewlabel] = ACTIONS(12365), + [anon_sym_BSLASHnewcommand] = ACTIONS(12365), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12365), + [anon_sym_BSLASHgls] = ACTIONS(12365), + [anon_sym_BSLASHGls] = ACTIONS(12365), + [anon_sym_BSLASHGLS] = ACTIONS(12365), + [anon_sym_BSLASHglspl] = ACTIONS(12365), + [anon_sym_BSLASHGlspl] = ACTIONS(12365), + [anon_sym_BSLASHGLSpl] = ACTIONS(12365), + [anon_sym_BSLASHglsdisp] = ACTIONS(12365), + [anon_sym_BSLASHglslink] = ACTIONS(12365), + [anon_sym_BSLASHglstext] = ACTIONS(12365), + [anon_sym_BSLASHGlstext] = ACTIONS(12365), + [anon_sym_BSLASHGLStext] = ACTIONS(12365), + [anon_sym_BSLASHglsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12365), + [anon_sym_BSLASHglsplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSplural] = ACTIONS(12365), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHglsname] = ACTIONS(12365), + [anon_sym_BSLASHGlsname] = ACTIONS(12365), + [anon_sym_BSLASHGLSname] = ACTIONS(12365), + [anon_sym_BSLASHglssymbol] = ACTIONS(12365), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12365), + [anon_sym_BSLASHglsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12365), + [anon_sym_BSLASHglsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12365), + [anon_sym_BSLASHglsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12365), + [anon_sym_BSLASHglsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12365), + [anon_sym_BSLASHglsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12365), + [anon_sym_BSLASHnewacronym] = ACTIONS(12365), + [anon_sym_BSLASHacrshort] = ACTIONS(12365), + [anon_sym_BSLASHAcrshort] = ACTIONS(12365), + [anon_sym_BSLASHACRshort] = ACTIONS(12365), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12365), + [anon_sym_BSLASHacrlong] = ACTIONS(12365), + [anon_sym_BSLASHAcrlong] = ACTIONS(12365), + [anon_sym_BSLASHACRlong] = ACTIONS(12365), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12365), + [anon_sym_BSLASHacrfull] = ACTIONS(12365), + [anon_sym_BSLASHAcrfull] = ACTIONS(12365), + [anon_sym_BSLASHACRfull] = ACTIONS(12365), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12365), + [anon_sym_BSLASHacs] = ACTIONS(12365), + [anon_sym_BSLASHAcs] = ACTIONS(12365), + [anon_sym_BSLASHacsp] = ACTIONS(12365), + [anon_sym_BSLASHAcsp] = ACTIONS(12365), + [anon_sym_BSLASHacl] = ACTIONS(12365), + [anon_sym_BSLASHAcl] = ACTIONS(12365), + [anon_sym_BSLASHaclp] = ACTIONS(12365), + [anon_sym_BSLASHAclp] = ACTIONS(12365), + [anon_sym_BSLASHacf] = ACTIONS(12365), + [anon_sym_BSLASHAcf] = ACTIONS(12365), + [anon_sym_BSLASHacfp] = ACTIONS(12365), + [anon_sym_BSLASHAcfp] = ACTIONS(12365), + [anon_sym_BSLASHac] = ACTIONS(12365), + [anon_sym_BSLASHAc] = ACTIONS(12365), + [anon_sym_BSLASHacp] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12365), + [anon_sym_BSLASHcolor] = ACTIONS(12365), + [anon_sym_BSLASHcolorbox] = ACTIONS(12365), + [anon_sym_BSLASHtextcolor] = ACTIONS(12365), + [anon_sym_BSLASHpagecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12365), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12365), + }, + [1482] = { + [sym_generic_command_name] = ACTIONS(12231), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12231), + [aux_sym_paragraph_token1] = ACTIONS(12231), + [aux_sym_subparagraph_token1] = ACTIONS(12231), + [anon_sym_BSLASHitem] = ACTIONS(12231), + [anon_sym_LBRACK] = ACTIONS(12229), + [anon_sym_RBRACK] = ACTIONS(12229), + [anon_sym_LBRACE] = ACTIONS(12229), + [anon_sym_RBRACE] = ACTIONS(12229), + [anon_sym_LPAREN] = ACTIONS(12229), + [anon_sym_COMMA] = ACTIONS(12229), + [anon_sym_EQ] = ACTIONS(12229), + [sym_word] = ACTIONS(12229), + [sym_param] = ACTIONS(12229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12229), + [anon_sym_DOLLAR] = ACTIONS(12231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12229), + [anon_sym_BSLASHbegin] = ACTIONS(12231), + [anon_sym_BSLASHcaption] = ACTIONS(12231), + [anon_sym_BSLASHcite] = ACTIONS(12231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCite] = ACTIONS(12231), + [anon_sym_BSLASHnocite] = ACTIONS(12231), + [anon_sym_BSLASHcitet] = ACTIONS(12231), + [anon_sym_BSLASHcitep] = ACTIONS(12231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteauthor] = ACTIONS(12231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitetitle] = ACTIONS(12231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteyear] = ACTIONS(12231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitedate] = ACTIONS(12231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteurl] = ACTIONS(12231), + [anon_sym_BSLASHfullcite] = ACTIONS(12231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12231), + [anon_sym_BSLASHcitealt] = ACTIONS(12231), + [anon_sym_BSLASHcitealp] = ACTIONS(12231), + [anon_sym_BSLASHcitetext] = ACTIONS(12231), + [anon_sym_BSLASHparencite] = ACTIONS(12231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHParencite] = ACTIONS(12231), + [anon_sym_BSLASHfootcite] = ACTIONS(12231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12231), + [anon_sym_BSLASHtextcite] = ACTIONS(12231), + [anon_sym_BSLASHTextcite] = ACTIONS(12231), + [anon_sym_BSLASHsmartcite] = ACTIONS(12231), + [anon_sym_BSLASHSmartcite] = ACTIONS(12231), + [anon_sym_BSLASHsupercite] = ACTIONS(12231), + [anon_sym_BSLASHautocite] = ACTIONS(12231), + [anon_sym_BSLASHAutocite] = ACTIONS(12231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHvolcite] = ACTIONS(12231), + [anon_sym_BSLASHVolcite] = ACTIONS(12231), + [anon_sym_BSLASHpvolcite] = ACTIONS(12231), + [anon_sym_BSLASHPvolcite] = ACTIONS(12231), + [anon_sym_BSLASHfvolcite] = ACTIONS(12231), + [anon_sym_BSLASHftvolcite] = ACTIONS(12231), + [anon_sym_BSLASHsvolcite] = ACTIONS(12231), + [anon_sym_BSLASHSvolcite] = ACTIONS(12231), + [anon_sym_BSLASHtvolcite] = ACTIONS(12231), + [anon_sym_BSLASHTvolcite] = ACTIONS(12231), + [anon_sym_BSLASHavolcite] = ACTIONS(12231), + [anon_sym_BSLASHAvolcite] = ACTIONS(12231), + [anon_sym_BSLASHnotecite] = ACTIONS(12231), + [anon_sym_BSLASHpnotecite] = ACTIONS(12231), + [anon_sym_BSLASHPnotecite] = ACTIONS(12231), + [anon_sym_BSLASHfnotecite] = ACTIONS(12231), + [anon_sym_BSLASHusepackage] = ACTIONS(12231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12231), + [anon_sym_BSLASHinclude] = ACTIONS(12231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12231), + [anon_sym_BSLASHinput] = ACTIONS(12231), + [anon_sym_BSLASHsubfile] = ACTIONS(12231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12231), + [anon_sym_BSLASHbibliography] = ACTIONS(12231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12231), + [anon_sym_BSLASHincludesvg] = ACTIONS(12231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12231), + [anon_sym_BSLASHimport] = ACTIONS(12231), + [anon_sym_BSLASHsubimport] = ACTIONS(12231), + [anon_sym_BSLASHinputfrom] = ACTIONS(12231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12231), + [anon_sym_BSLASHincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHlabel] = ACTIONS(12231), + [anon_sym_BSLASHref] = ACTIONS(12231), + [anon_sym_BSLASHvref] = ACTIONS(12231), + [anon_sym_BSLASHVref] = ACTIONS(12231), + [anon_sym_BSLASHautoref] = ACTIONS(12231), + [anon_sym_BSLASHpageref] = ACTIONS(12231), + [anon_sym_BSLASHcref] = ACTIONS(12231), + [anon_sym_BSLASHCref] = ACTIONS(12231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnameCref] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHlabelcref] = ACTIONS(12231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12231), + [anon_sym_BSLASHeqref] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange] = ACTIONS(12231), + [anon_sym_BSLASHCrefrange] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewlabel] = ACTIONS(12231), + [anon_sym_BSLASHnewcommand] = ACTIONS(12231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12231), + [anon_sym_BSLASHgls] = ACTIONS(12231), + [anon_sym_BSLASHGls] = ACTIONS(12231), + [anon_sym_BSLASHGLS] = ACTIONS(12231), + [anon_sym_BSLASHglspl] = ACTIONS(12231), + [anon_sym_BSLASHGlspl] = ACTIONS(12231), + [anon_sym_BSLASHGLSpl] = ACTIONS(12231), + [anon_sym_BSLASHglsdisp] = ACTIONS(12231), + [anon_sym_BSLASHglslink] = ACTIONS(12231), + [anon_sym_BSLASHglstext] = ACTIONS(12231), + [anon_sym_BSLASHGlstext] = ACTIONS(12231), + [anon_sym_BSLASHGLStext] = ACTIONS(12231), + [anon_sym_BSLASHglsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12231), + [anon_sym_BSLASHglsplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSplural] = ACTIONS(12231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHglsname] = ACTIONS(12231), + [anon_sym_BSLASHGlsname] = ACTIONS(12231), + [anon_sym_BSLASHGLSname] = ACTIONS(12231), + [anon_sym_BSLASHglssymbol] = ACTIONS(12231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12231), + [anon_sym_BSLASHglsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12231), + [anon_sym_BSLASHglsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12231), + [anon_sym_BSLASHglsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12231), + [anon_sym_BSLASHglsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12231), + [anon_sym_BSLASHglsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12231), + [anon_sym_BSLASHnewacronym] = ACTIONS(12231), + [anon_sym_BSLASHacrshort] = ACTIONS(12231), + [anon_sym_BSLASHAcrshort] = ACTIONS(12231), + [anon_sym_BSLASHACRshort] = ACTIONS(12231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12231), + [anon_sym_BSLASHacrlong] = ACTIONS(12231), + [anon_sym_BSLASHAcrlong] = ACTIONS(12231), + [anon_sym_BSLASHACRlong] = ACTIONS(12231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12231), + [anon_sym_BSLASHacrfull] = ACTIONS(12231), + [anon_sym_BSLASHAcrfull] = ACTIONS(12231), + [anon_sym_BSLASHACRfull] = ACTIONS(12231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12231), + [anon_sym_BSLASHacs] = ACTIONS(12231), + [anon_sym_BSLASHAcs] = ACTIONS(12231), + [anon_sym_BSLASHacsp] = ACTIONS(12231), + [anon_sym_BSLASHAcsp] = ACTIONS(12231), + [anon_sym_BSLASHacl] = ACTIONS(12231), + [anon_sym_BSLASHAcl] = ACTIONS(12231), + [anon_sym_BSLASHaclp] = ACTIONS(12231), + [anon_sym_BSLASHAclp] = ACTIONS(12231), + [anon_sym_BSLASHacf] = ACTIONS(12231), + [anon_sym_BSLASHAcf] = ACTIONS(12231), + [anon_sym_BSLASHacfp] = ACTIONS(12231), + [anon_sym_BSLASHAcfp] = ACTIONS(12231), + [anon_sym_BSLASHac] = ACTIONS(12231), + [anon_sym_BSLASHAc] = ACTIONS(12231), + [anon_sym_BSLASHacp] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12231), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12231), + [anon_sym_BSLASHcolor] = ACTIONS(12231), + [anon_sym_BSLASHcolorbox] = ACTIONS(12231), + [anon_sym_BSLASHtextcolor] = ACTIONS(12231), + [anon_sym_BSLASHpagecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12231), + }, + [1483] = { + [sym_brace_group] = STATE(1488), + [sym_bracket_group] = STATE(1488), + [sym_paren_group] = STATE(1488), + [aux_sym_generic_command_repeat1] = STATE(1488), + [sym_generic_command_name] = ACTIONS(11990), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12765), + [anon_sym_RBRACK] = ACTIONS(11988), + [anon_sym_LBRACE] = ACTIONS(11776), + [anon_sym_RBRACE] = ACTIONS(11988), + [anon_sym_LPAREN] = ACTIONS(12767), + [anon_sym_COMMA] = ACTIONS(11988), + [anon_sym_EQ] = ACTIONS(11988), + [sym_word] = ACTIONS(11988), + [sym_param] = ACTIONS(11988), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11988), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11988), + [anon_sym_DOLLAR] = ACTIONS(11990), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11988), + [anon_sym_BSLASHbegin] = ACTIONS(11990), + [anon_sym_BSLASHcaption] = ACTIONS(11990), + [anon_sym_BSLASHcite] = ACTIONS(11990), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCite] = ACTIONS(11990), + [anon_sym_BSLASHnocite] = ACTIONS(11990), + [anon_sym_BSLASHcitet] = ACTIONS(11990), + [anon_sym_BSLASHcitep] = ACTIONS(11990), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteauthor] = ACTIONS(11990), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11990), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitetitle] = ACTIONS(11990), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteyear] = ACTIONS(11990), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11988), + [anon_sym_BSLASHcitedate] = ACTIONS(11990), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11988), + [anon_sym_BSLASHciteurl] = ACTIONS(11990), + [anon_sym_BSLASHfullcite] = ACTIONS(11990), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11990), + [anon_sym_BSLASHcitealt] = ACTIONS(11990), + [anon_sym_BSLASHcitealp] = ACTIONS(11990), + [anon_sym_BSLASHcitetext] = ACTIONS(11990), + [anon_sym_BSLASHparencite] = ACTIONS(11990), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHParencite] = ACTIONS(11990), + [anon_sym_BSLASHfootcite] = ACTIONS(11990), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11990), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11990), + [anon_sym_BSLASHtextcite] = ACTIONS(11990), + [anon_sym_BSLASHTextcite] = ACTIONS(11990), + [anon_sym_BSLASHsmartcite] = ACTIONS(11990), + [anon_sym_BSLASHSmartcite] = ACTIONS(11990), + [anon_sym_BSLASHsupercite] = ACTIONS(11990), + [anon_sym_BSLASHautocite] = ACTIONS(11990), + [anon_sym_BSLASHAutocite] = ACTIONS(11990), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11988), + [anon_sym_BSLASHvolcite] = ACTIONS(11990), + [anon_sym_BSLASHVolcite] = ACTIONS(11990), + [anon_sym_BSLASHpvolcite] = ACTIONS(11990), + [anon_sym_BSLASHPvolcite] = ACTIONS(11990), + [anon_sym_BSLASHfvolcite] = ACTIONS(11990), + [anon_sym_BSLASHftvolcite] = ACTIONS(11990), + [anon_sym_BSLASHsvolcite] = ACTIONS(11990), + [anon_sym_BSLASHSvolcite] = ACTIONS(11990), + [anon_sym_BSLASHtvolcite] = ACTIONS(11990), + [anon_sym_BSLASHTvolcite] = ACTIONS(11990), + [anon_sym_BSLASHavolcite] = ACTIONS(11990), + [anon_sym_BSLASHAvolcite] = ACTIONS(11990), + [anon_sym_BSLASHnotecite] = ACTIONS(11990), + [anon_sym_BSLASHpnotecite] = ACTIONS(11990), + [anon_sym_BSLASHPnotecite] = ACTIONS(11990), + [anon_sym_BSLASHfnotecite] = ACTIONS(11990), + [anon_sym_BSLASHusepackage] = ACTIONS(11990), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11990), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11990), + [anon_sym_BSLASHinclude] = ACTIONS(11990), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11990), + [anon_sym_BSLASHinput] = ACTIONS(11990), + [anon_sym_BSLASHsubfile] = ACTIONS(11990), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11990), + [anon_sym_BSLASHbibliography] = ACTIONS(11990), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11990), + [anon_sym_BSLASHincludesvg] = ACTIONS(11990), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11990), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11990), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11990), + [anon_sym_BSLASHimport] = ACTIONS(11990), + [anon_sym_BSLASHsubimport] = ACTIONS(11990), + [anon_sym_BSLASHinputfrom] = ACTIONS(11990), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11990), + [anon_sym_BSLASHincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11990), + [anon_sym_BSLASHlabel] = ACTIONS(11990), + [anon_sym_BSLASHref] = ACTIONS(11990), + [anon_sym_BSLASHvref] = ACTIONS(11990), + [anon_sym_BSLASHVref] = ACTIONS(11990), + [anon_sym_BSLASHautoref] = ACTIONS(11990), + [anon_sym_BSLASHpageref] = ACTIONS(11990), + [anon_sym_BSLASHcref] = ACTIONS(11990), + [anon_sym_BSLASHCref] = ACTIONS(11990), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnameCref] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11990), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11990), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11990), + [anon_sym_BSLASHlabelcref] = ACTIONS(11990), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11990), + [anon_sym_BSLASHeqref] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange] = ACTIONS(11990), + [anon_sym_BSLASHCrefrange] = ACTIONS(11990), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewlabel] = ACTIONS(11990), + [anon_sym_BSLASHnewcommand] = ACTIONS(11990), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11990), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11988), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11990), + [anon_sym_BSLASHgls] = ACTIONS(11990), + [anon_sym_BSLASHGls] = ACTIONS(11990), + [anon_sym_BSLASHGLS] = ACTIONS(11990), + [anon_sym_BSLASHglspl] = ACTIONS(11990), + [anon_sym_BSLASHGlspl] = ACTIONS(11990), + [anon_sym_BSLASHGLSpl] = ACTIONS(11990), + [anon_sym_BSLASHglsdisp] = ACTIONS(11990), + [anon_sym_BSLASHglslink] = ACTIONS(11990), + [anon_sym_BSLASHglstext] = ACTIONS(11990), + [anon_sym_BSLASHGlstext] = ACTIONS(11990), + [anon_sym_BSLASHGLStext] = ACTIONS(11990), + [anon_sym_BSLASHglsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11990), + [anon_sym_BSLASHglsplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSplural] = ACTIONS(11990), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11990), + [anon_sym_BSLASHglsname] = ACTIONS(11990), + [anon_sym_BSLASHGlsname] = ACTIONS(11990), + [anon_sym_BSLASHGLSname] = ACTIONS(11990), + [anon_sym_BSLASHglssymbol] = ACTIONS(11990), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11990), + [anon_sym_BSLASHglsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11990), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11990), + [anon_sym_BSLASHglsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11990), + [anon_sym_BSLASHglsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11990), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11990), + [anon_sym_BSLASHglsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11990), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11990), + [anon_sym_BSLASHglsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11990), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11990), + [anon_sym_BSLASHnewacronym] = ACTIONS(11990), + [anon_sym_BSLASHacrshort] = ACTIONS(11990), + [anon_sym_BSLASHAcrshort] = ACTIONS(11990), + [anon_sym_BSLASHACRshort] = ACTIONS(11990), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11990), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11990), + [anon_sym_BSLASHacrlong] = ACTIONS(11990), + [anon_sym_BSLASHAcrlong] = ACTIONS(11990), + [anon_sym_BSLASHACRlong] = ACTIONS(11990), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11990), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11990), + [anon_sym_BSLASHacrfull] = ACTIONS(11990), + [anon_sym_BSLASHAcrfull] = ACTIONS(11990), + [anon_sym_BSLASHACRfull] = ACTIONS(11990), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11990), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11990), + [anon_sym_BSLASHacs] = ACTIONS(11990), + [anon_sym_BSLASHAcs] = ACTIONS(11990), + [anon_sym_BSLASHacsp] = ACTIONS(11990), + [anon_sym_BSLASHAcsp] = ACTIONS(11990), + [anon_sym_BSLASHacl] = ACTIONS(11990), + [anon_sym_BSLASHAcl] = ACTIONS(11990), + [anon_sym_BSLASHaclp] = ACTIONS(11990), + [anon_sym_BSLASHAclp] = ACTIONS(11990), + [anon_sym_BSLASHacf] = ACTIONS(11990), + [anon_sym_BSLASHAcf] = ACTIONS(11990), + [anon_sym_BSLASHacfp] = ACTIONS(11990), + [anon_sym_BSLASHAcfp] = ACTIONS(11990), + [anon_sym_BSLASHac] = ACTIONS(11990), + [anon_sym_BSLASHAc] = ACTIONS(11990), + [anon_sym_BSLASHacp] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11990), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11990), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11990), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11990), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11990), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11990), + [anon_sym_BSLASHcolor] = ACTIONS(11990), + [anon_sym_BSLASHcolorbox] = ACTIONS(11990), + [anon_sym_BSLASHtextcolor] = ACTIONS(11990), + [anon_sym_BSLASHpagecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11990), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11990), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11990), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11990), + }, + [1484] = { + [sym_generic_command_name] = ACTIONS(12345), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12345), + [aux_sym_paragraph_token1] = ACTIONS(12345), + [aux_sym_subparagraph_token1] = ACTIONS(12345), + [anon_sym_BSLASHitem] = ACTIONS(12345), + [anon_sym_LBRACK] = ACTIONS(12343), + [anon_sym_RBRACK] = ACTIONS(12343), + [anon_sym_LBRACE] = ACTIONS(12343), + [anon_sym_RBRACE] = ACTIONS(12343), + [anon_sym_LPAREN] = ACTIONS(12343), + [anon_sym_COMMA] = ACTIONS(12343), + [anon_sym_EQ] = ACTIONS(12343), + [sym_word] = ACTIONS(12343), + [sym_param] = ACTIONS(12343), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12343), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12343), + [anon_sym_DOLLAR] = ACTIONS(12345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12343), + [anon_sym_BSLASHbegin] = ACTIONS(12345), + [anon_sym_BSLASHcaption] = ACTIONS(12345), + [anon_sym_BSLASHcite] = ACTIONS(12345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCite] = ACTIONS(12345), + [anon_sym_BSLASHnocite] = ACTIONS(12345), + [anon_sym_BSLASHcitet] = ACTIONS(12345), + [anon_sym_BSLASHcitep] = ACTIONS(12345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteauthor] = ACTIONS(12345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitetitle] = ACTIONS(12345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteyear] = ACTIONS(12345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitedate] = ACTIONS(12345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteurl] = ACTIONS(12345), + [anon_sym_BSLASHfullcite] = ACTIONS(12345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12345), + [anon_sym_BSLASHcitealt] = ACTIONS(12345), + [anon_sym_BSLASHcitealp] = ACTIONS(12345), + [anon_sym_BSLASHcitetext] = ACTIONS(12345), + [anon_sym_BSLASHparencite] = ACTIONS(12345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHParencite] = ACTIONS(12345), + [anon_sym_BSLASHfootcite] = ACTIONS(12345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12345), + [anon_sym_BSLASHtextcite] = ACTIONS(12345), + [anon_sym_BSLASHTextcite] = ACTIONS(12345), + [anon_sym_BSLASHsmartcite] = ACTIONS(12345), + [anon_sym_BSLASHSmartcite] = ACTIONS(12345), + [anon_sym_BSLASHsupercite] = ACTIONS(12345), + [anon_sym_BSLASHautocite] = ACTIONS(12345), + [anon_sym_BSLASHAutocite] = ACTIONS(12345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHvolcite] = ACTIONS(12345), + [anon_sym_BSLASHVolcite] = ACTIONS(12345), + [anon_sym_BSLASHpvolcite] = ACTIONS(12345), + [anon_sym_BSLASHPvolcite] = ACTIONS(12345), + [anon_sym_BSLASHfvolcite] = ACTIONS(12345), + [anon_sym_BSLASHftvolcite] = ACTIONS(12345), + [anon_sym_BSLASHsvolcite] = ACTIONS(12345), + [anon_sym_BSLASHSvolcite] = ACTIONS(12345), + [anon_sym_BSLASHtvolcite] = ACTIONS(12345), + [anon_sym_BSLASHTvolcite] = ACTIONS(12345), + [anon_sym_BSLASHavolcite] = ACTIONS(12345), + [anon_sym_BSLASHAvolcite] = ACTIONS(12345), + [anon_sym_BSLASHnotecite] = ACTIONS(12345), + [anon_sym_BSLASHpnotecite] = ACTIONS(12345), + [anon_sym_BSLASHPnotecite] = ACTIONS(12345), + [anon_sym_BSLASHfnotecite] = ACTIONS(12345), + [anon_sym_BSLASHusepackage] = ACTIONS(12345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12345), + [anon_sym_BSLASHinclude] = ACTIONS(12345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12345), + [anon_sym_BSLASHinput] = ACTIONS(12345), + [anon_sym_BSLASHsubfile] = ACTIONS(12345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12345), + [anon_sym_BSLASHbibliography] = ACTIONS(12345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12345), + [anon_sym_BSLASHincludesvg] = ACTIONS(12345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12345), + [anon_sym_BSLASHimport] = ACTIONS(12345), + [anon_sym_BSLASHsubimport] = ACTIONS(12345), + [anon_sym_BSLASHinputfrom] = ACTIONS(12345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12345), + [anon_sym_BSLASHincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHlabel] = ACTIONS(12345), + [anon_sym_BSLASHref] = ACTIONS(12345), + [anon_sym_BSLASHvref] = ACTIONS(12345), + [anon_sym_BSLASHVref] = ACTIONS(12345), + [anon_sym_BSLASHautoref] = ACTIONS(12345), + [anon_sym_BSLASHpageref] = ACTIONS(12345), + [anon_sym_BSLASHcref] = ACTIONS(12345), + [anon_sym_BSLASHCref] = ACTIONS(12345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnameCref] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHlabelcref] = ACTIONS(12345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12345), + [anon_sym_BSLASHeqref] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange] = ACTIONS(12345), + [anon_sym_BSLASHCrefrange] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewlabel] = ACTIONS(12345), + [anon_sym_BSLASHnewcommand] = ACTIONS(12345), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12345), + [anon_sym_BSLASHgls] = ACTIONS(12345), + [anon_sym_BSLASHGls] = ACTIONS(12345), + [anon_sym_BSLASHGLS] = ACTIONS(12345), + [anon_sym_BSLASHglspl] = ACTIONS(12345), + [anon_sym_BSLASHGlspl] = ACTIONS(12345), + [anon_sym_BSLASHGLSpl] = ACTIONS(12345), + [anon_sym_BSLASHglsdisp] = ACTIONS(12345), + [anon_sym_BSLASHglslink] = ACTIONS(12345), + [anon_sym_BSLASHglstext] = ACTIONS(12345), + [anon_sym_BSLASHGlstext] = ACTIONS(12345), + [anon_sym_BSLASHGLStext] = ACTIONS(12345), + [anon_sym_BSLASHglsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12345), + [anon_sym_BSLASHglsplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSplural] = ACTIONS(12345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHglsname] = ACTIONS(12345), + [anon_sym_BSLASHGlsname] = ACTIONS(12345), + [anon_sym_BSLASHGLSname] = ACTIONS(12345), + [anon_sym_BSLASHglssymbol] = ACTIONS(12345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12345), + [anon_sym_BSLASHglsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12345), + [anon_sym_BSLASHglsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12345), + [anon_sym_BSLASHglsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12345), + [anon_sym_BSLASHglsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12345), + [anon_sym_BSLASHglsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12345), + [anon_sym_BSLASHnewacronym] = ACTIONS(12345), + [anon_sym_BSLASHacrshort] = ACTIONS(12345), + [anon_sym_BSLASHAcrshort] = ACTIONS(12345), + [anon_sym_BSLASHACRshort] = ACTIONS(12345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12345), + [anon_sym_BSLASHacrlong] = ACTIONS(12345), + [anon_sym_BSLASHAcrlong] = ACTIONS(12345), + [anon_sym_BSLASHACRlong] = ACTIONS(12345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12345), + [anon_sym_BSLASHacrfull] = ACTIONS(12345), + [anon_sym_BSLASHAcrfull] = ACTIONS(12345), + [anon_sym_BSLASHACRfull] = ACTIONS(12345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12345), + [anon_sym_BSLASHacs] = ACTIONS(12345), + [anon_sym_BSLASHAcs] = ACTIONS(12345), + [anon_sym_BSLASHacsp] = ACTIONS(12345), + [anon_sym_BSLASHAcsp] = ACTIONS(12345), + [anon_sym_BSLASHacl] = ACTIONS(12345), + [anon_sym_BSLASHAcl] = ACTIONS(12345), + [anon_sym_BSLASHaclp] = ACTIONS(12345), + [anon_sym_BSLASHAclp] = ACTIONS(12345), + [anon_sym_BSLASHacf] = ACTIONS(12345), + [anon_sym_BSLASHAcf] = ACTIONS(12345), + [anon_sym_BSLASHacfp] = ACTIONS(12345), + [anon_sym_BSLASHAcfp] = ACTIONS(12345), + [anon_sym_BSLASHac] = ACTIONS(12345), + [anon_sym_BSLASHAc] = ACTIONS(12345), + [anon_sym_BSLASHacp] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12345), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12345), + [anon_sym_BSLASHcolor] = ACTIONS(12345), + [anon_sym_BSLASHcolorbox] = ACTIONS(12345), + [anon_sym_BSLASHtextcolor] = ACTIONS(12345), + [anon_sym_BSLASHpagecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12345), + }, + [1485] = { + [sym_generic_command_name] = ACTIONS(12331), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12331), + [aux_sym_paragraph_token1] = ACTIONS(12331), + [aux_sym_subparagraph_token1] = ACTIONS(12331), + [anon_sym_BSLASHitem] = ACTIONS(12331), + [anon_sym_LBRACK] = ACTIONS(12329), + [anon_sym_RBRACK] = ACTIONS(12329), + [anon_sym_LBRACE] = ACTIONS(12329), + [anon_sym_RBRACE] = ACTIONS(12329), + [anon_sym_LPAREN] = ACTIONS(12329), + [anon_sym_COMMA] = ACTIONS(12329), + [anon_sym_EQ] = ACTIONS(12329), + [sym_word] = ACTIONS(12329), + [sym_param] = ACTIONS(12329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12329), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12329), + [anon_sym_DOLLAR] = ACTIONS(12331), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12329), + [anon_sym_BSLASHbegin] = ACTIONS(12331), + [anon_sym_BSLASHcaption] = ACTIONS(12331), + [anon_sym_BSLASHcite] = ACTIONS(12331), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCite] = ACTIONS(12331), + [anon_sym_BSLASHnocite] = ACTIONS(12331), + [anon_sym_BSLASHcitet] = ACTIONS(12331), + [anon_sym_BSLASHcitep] = ACTIONS(12331), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteauthor] = ACTIONS(12331), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12331), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitetitle] = ACTIONS(12331), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteyear] = ACTIONS(12331), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitedate] = ACTIONS(12331), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteurl] = ACTIONS(12331), + [anon_sym_BSLASHfullcite] = ACTIONS(12331), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12331), + [anon_sym_BSLASHcitealt] = ACTIONS(12331), + [anon_sym_BSLASHcitealp] = ACTIONS(12331), + [anon_sym_BSLASHcitetext] = ACTIONS(12331), + [anon_sym_BSLASHparencite] = ACTIONS(12331), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHParencite] = ACTIONS(12331), + [anon_sym_BSLASHfootcite] = ACTIONS(12331), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12331), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12331), + [anon_sym_BSLASHtextcite] = ACTIONS(12331), + [anon_sym_BSLASHTextcite] = ACTIONS(12331), + [anon_sym_BSLASHsmartcite] = ACTIONS(12331), + [anon_sym_BSLASHSmartcite] = ACTIONS(12331), + [anon_sym_BSLASHsupercite] = ACTIONS(12331), + [anon_sym_BSLASHautocite] = ACTIONS(12331), + [anon_sym_BSLASHAutocite] = ACTIONS(12331), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHvolcite] = ACTIONS(12331), + [anon_sym_BSLASHVolcite] = ACTIONS(12331), + [anon_sym_BSLASHpvolcite] = ACTIONS(12331), + [anon_sym_BSLASHPvolcite] = ACTIONS(12331), + [anon_sym_BSLASHfvolcite] = ACTIONS(12331), + [anon_sym_BSLASHftvolcite] = ACTIONS(12331), + [anon_sym_BSLASHsvolcite] = ACTIONS(12331), + [anon_sym_BSLASHSvolcite] = ACTIONS(12331), + [anon_sym_BSLASHtvolcite] = ACTIONS(12331), + [anon_sym_BSLASHTvolcite] = ACTIONS(12331), + [anon_sym_BSLASHavolcite] = ACTIONS(12331), + [anon_sym_BSLASHAvolcite] = ACTIONS(12331), + [anon_sym_BSLASHnotecite] = ACTIONS(12331), + [anon_sym_BSLASHpnotecite] = ACTIONS(12331), + [anon_sym_BSLASHPnotecite] = ACTIONS(12331), + [anon_sym_BSLASHfnotecite] = ACTIONS(12331), + [anon_sym_BSLASHusepackage] = ACTIONS(12331), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12331), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12331), + [anon_sym_BSLASHinclude] = ACTIONS(12331), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12331), + [anon_sym_BSLASHinput] = ACTIONS(12331), + [anon_sym_BSLASHsubfile] = ACTIONS(12331), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12331), + [anon_sym_BSLASHbibliography] = ACTIONS(12331), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12331), + [anon_sym_BSLASHincludesvg] = ACTIONS(12331), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12331), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12331), + [anon_sym_BSLASHimport] = ACTIONS(12331), + [anon_sym_BSLASHsubimport] = ACTIONS(12331), + [anon_sym_BSLASHinputfrom] = ACTIONS(12331), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12331), + [anon_sym_BSLASHincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHlabel] = ACTIONS(12331), + [anon_sym_BSLASHref] = ACTIONS(12331), + [anon_sym_BSLASHvref] = ACTIONS(12331), + [anon_sym_BSLASHVref] = ACTIONS(12331), + [anon_sym_BSLASHautoref] = ACTIONS(12331), + [anon_sym_BSLASHpageref] = ACTIONS(12331), + [anon_sym_BSLASHcref] = ACTIONS(12331), + [anon_sym_BSLASHCref] = ACTIONS(12331), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnameCref] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHlabelcref] = ACTIONS(12331), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12331), + [anon_sym_BSLASHeqref] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange] = ACTIONS(12331), + [anon_sym_BSLASHCrefrange] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewlabel] = ACTIONS(12331), + [anon_sym_BSLASHnewcommand] = ACTIONS(12331), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12331), + [anon_sym_BSLASHgls] = ACTIONS(12331), + [anon_sym_BSLASHGls] = ACTIONS(12331), + [anon_sym_BSLASHGLS] = ACTIONS(12331), + [anon_sym_BSLASHglspl] = ACTIONS(12331), + [anon_sym_BSLASHGlspl] = ACTIONS(12331), + [anon_sym_BSLASHGLSpl] = ACTIONS(12331), + [anon_sym_BSLASHglsdisp] = ACTIONS(12331), + [anon_sym_BSLASHglslink] = ACTIONS(12331), + [anon_sym_BSLASHglstext] = ACTIONS(12331), + [anon_sym_BSLASHGlstext] = ACTIONS(12331), + [anon_sym_BSLASHGLStext] = ACTIONS(12331), + [anon_sym_BSLASHglsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12331), + [anon_sym_BSLASHglsplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSplural] = ACTIONS(12331), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHglsname] = ACTIONS(12331), + [anon_sym_BSLASHGlsname] = ACTIONS(12331), + [anon_sym_BSLASHGLSname] = ACTIONS(12331), + [anon_sym_BSLASHglssymbol] = ACTIONS(12331), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12331), + [anon_sym_BSLASHglsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12331), + [anon_sym_BSLASHglsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12331), + [anon_sym_BSLASHglsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12331), + [anon_sym_BSLASHglsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12331), + [anon_sym_BSLASHglsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12331), + [anon_sym_BSLASHnewacronym] = ACTIONS(12331), + [anon_sym_BSLASHacrshort] = ACTIONS(12331), + [anon_sym_BSLASHAcrshort] = ACTIONS(12331), + [anon_sym_BSLASHACRshort] = ACTIONS(12331), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12331), + [anon_sym_BSLASHacrlong] = ACTIONS(12331), + [anon_sym_BSLASHAcrlong] = ACTIONS(12331), + [anon_sym_BSLASHACRlong] = ACTIONS(12331), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12331), + [anon_sym_BSLASHacrfull] = ACTIONS(12331), + [anon_sym_BSLASHAcrfull] = ACTIONS(12331), + [anon_sym_BSLASHACRfull] = ACTIONS(12331), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12331), + [anon_sym_BSLASHacs] = ACTIONS(12331), + [anon_sym_BSLASHAcs] = ACTIONS(12331), + [anon_sym_BSLASHacsp] = ACTIONS(12331), + [anon_sym_BSLASHAcsp] = ACTIONS(12331), + [anon_sym_BSLASHacl] = ACTIONS(12331), + [anon_sym_BSLASHAcl] = ACTIONS(12331), + [anon_sym_BSLASHaclp] = ACTIONS(12331), + [anon_sym_BSLASHAclp] = ACTIONS(12331), + [anon_sym_BSLASHacf] = ACTIONS(12331), + [anon_sym_BSLASHAcf] = ACTIONS(12331), + [anon_sym_BSLASHacfp] = ACTIONS(12331), + [anon_sym_BSLASHAcfp] = ACTIONS(12331), + [anon_sym_BSLASHac] = ACTIONS(12331), + [anon_sym_BSLASHAc] = ACTIONS(12331), + [anon_sym_BSLASHacp] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12331), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12331), + [anon_sym_BSLASHcolor] = ACTIONS(12331), + [anon_sym_BSLASHcolorbox] = ACTIONS(12331), + [anon_sym_BSLASHtextcolor] = ACTIONS(12331), + [anon_sym_BSLASHpagecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12331), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12331), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12331), + }, + [1486] = { + [sym_generic_command_name] = ACTIONS(12327), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12327), + [aux_sym_paragraph_token1] = ACTIONS(12327), + [aux_sym_subparagraph_token1] = ACTIONS(12327), + [anon_sym_BSLASHitem] = ACTIONS(12327), + [anon_sym_LBRACK] = ACTIONS(12325), + [anon_sym_RBRACK] = ACTIONS(12325), + [anon_sym_LBRACE] = ACTIONS(12325), + [anon_sym_RBRACE] = ACTIONS(12325), + [anon_sym_LPAREN] = ACTIONS(12325), + [anon_sym_COMMA] = ACTIONS(12325), + [anon_sym_EQ] = ACTIONS(12325), + [sym_word] = ACTIONS(12325), + [sym_param] = ACTIONS(12325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12325), + [anon_sym_DOLLAR] = ACTIONS(12327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12325), + [anon_sym_BSLASHbegin] = ACTIONS(12327), + [anon_sym_BSLASHcaption] = ACTIONS(12327), + [anon_sym_BSLASHcite] = ACTIONS(12327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCite] = ACTIONS(12327), + [anon_sym_BSLASHnocite] = ACTIONS(12327), + [anon_sym_BSLASHcitet] = ACTIONS(12327), + [anon_sym_BSLASHcitep] = ACTIONS(12327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteauthor] = ACTIONS(12327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitetitle] = ACTIONS(12327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteyear] = ACTIONS(12327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitedate] = ACTIONS(12327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteurl] = ACTIONS(12327), + [anon_sym_BSLASHfullcite] = ACTIONS(12327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12327), + [anon_sym_BSLASHcitealt] = ACTIONS(12327), + [anon_sym_BSLASHcitealp] = ACTIONS(12327), + [anon_sym_BSLASHcitetext] = ACTIONS(12327), + [anon_sym_BSLASHparencite] = ACTIONS(12327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHParencite] = ACTIONS(12327), + [anon_sym_BSLASHfootcite] = ACTIONS(12327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12327), + [anon_sym_BSLASHtextcite] = ACTIONS(12327), + [anon_sym_BSLASHTextcite] = ACTIONS(12327), + [anon_sym_BSLASHsmartcite] = ACTIONS(12327), + [anon_sym_BSLASHSmartcite] = ACTIONS(12327), + [anon_sym_BSLASHsupercite] = ACTIONS(12327), + [anon_sym_BSLASHautocite] = ACTIONS(12327), + [anon_sym_BSLASHAutocite] = ACTIONS(12327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHvolcite] = ACTIONS(12327), + [anon_sym_BSLASHVolcite] = ACTIONS(12327), + [anon_sym_BSLASHpvolcite] = ACTIONS(12327), + [anon_sym_BSLASHPvolcite] = ACTIONS(12327), + [anon_sym_BSLASHfvolcite] = ACTIONS(12327), + [anon_sym_BSLASHftvolcite] = ACTIONS(12327), + [anon_sym_BSLASHsvolcite] = ACTIONS(12327), + [anon_sym_BSLASHSvolcite] = ACTIONS(12327), + [anon_sym_BSLASHtvolcite] = ACTIONS(12327), + [anon_sym_BSLASHTvolcite] = ACTIONS(12327), + [anon_sym_BSLASHavolcite] = ACTIONS(12327), + [anon_sym_BSLASHAvolcite] = ACTIONS(12327), + [anon_sym_BSLASHnotecite] = ACTIONS(12327), + [anon_sym_BSLASHpnotecite] = ACTIONS(12327), + [anon_sym_BSLASHPnotecite] = ACTIONS(12327), + [anon_sym_BSLASHfnotecite] = ACTIONS(12327), + [anon_sym_BSLASHusepackage] = ACTIONS(12327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12327), + [anon_sym_BSLASHinclude] = ACTIONS(12327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12327), + [anon_sym_BSLASHinput] = ACTIONS(12327), + [anon_sym_BSLASHsubfile] = ACTIONS(12327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12327), + [anon_sym_BSLASHbibliography] = ACTIONS(12327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12327), + [anon_sym_BSLASHincludesvg] = ACTIONS(12327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12327), + [anon_sym_BSLASHimport] = ACTIONS(12327), + [anon_sym_BSLASHsubimport] = ACTIONS(12327), + [anon_sym_BSLASHinputfrom] = ACTIONS(12327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12327), + [anon_sym_BSLASHincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHlabel] = ACTIONS(12327), + [anon_sym_BSLASHref] = ACTIONS(12327), + [anon_sym_BSLASHvref] = ACTIONS(12327), + [anon_sym_BSLASHVref] = ACTIONS(12327), + [anon_sym_BSLASHautoref] = ACTIONS(12327), + [anon_sym_BSLASHpageref] = ACTIONS(12327), + [anon_sym_BSLASHcref] = ACTIONS(12327), + [anon_sym_BSLASHCref] = ACTIONS(12327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnameCref] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHlabelcref] = ACTIONS(12327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12327), + [anon_sym_BSLASHeqref] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange] = ACTIONS(12327), + [anon_sym_BSLASHCrefrange] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewlabel] = ACTIONS(12327), + [anon_sym_BSLASHnewcommand] = ACTIONS(12327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12327), + [anon_sym_BSLASHgls] = ACTIONS(12327), + [anon_sym_BSLASHGls] = ACTIONS(12327), + [anon_sym_BSLASHGLS] = ACTIONS(12327), + [anon_sym_BSLASHglspl] = ACTIONS(12327), + [anon_sym_BSLASHGlspl] = ACTIONS(12327), + [anon_sym_BSLASHGLSpl] = ACTIONS(12327), + [anon_sym_BSLASHglsdisp] = ACTIONS(12327), + [anon_sym_BSLASHglslink] = ACTIONS(12327), + [anon_sym_BSLASHglstext] = ACTIONS(12327), + [anon_sym_BSLASHGlstext] = ACTIONS(12327), + [anon_sym_BSLASHGLStext] = ACTIONS(12327), + [anon_sym_BSLASHglsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12327), + [anon_sym_BSLASHglsplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSplural] = ACTIONS(12327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHglsname] = ACTIONS(12327), + [anon_sym_BSLASHGlsname] = ACTIONS(12327), + [anon_sym_BSLASHGLSname] = ACTIONS(12327), + [anon_sym_BSLASHglssymbol] = ACTIONS(12327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12327), + [anon_sym_BSLASHglsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12327), + [anon_sym_BSLASHglsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12327), + [anon_sym_BSLASHglsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12327), + [anon_sym_BSLASHglsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12327), + [anon_sym_BSLASHglsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12327), + [anon_sym_BSLASHnewacronym] = ACTIONS(12327), + [anon_sym_BSLASHacrshort] = ACTIONS(12327), + [anon_sym_BSLASHAcrshort] = ACTIONS(12327), + [anon_sym_BSLASHACRshort] = ACTIONS(12327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12327), + [anon_sym_BSLASHacrlong] = ACTIONS(12327), + [anon_sym_BSLASHAcrlong] = ACTIONS(12327), + [anon_sym_BSLASHACRlong] = ACTIONS(12327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12327), + [anon_sym_BSLASHacrfull] = ACTIONS(12327), + [anon_sym_BSLASHAcrfull] = ACTIONS(12327), + [anon_sym_BSLASHACRfull] = ACTIONS(12327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12327), + [anon_sym_BSLASHacs] = ACTIONS(12327), + [anon_sym_BSLASHAcs] = ACTIONS(12327), + [anon_sym_BSLASHacsp] = ACTIONS(12327), + [anon_sym_BSLASHAcsp] = ACTIONS(12327), + [anon_sym_BSLASHacl] = ACTIONS(12327), + [anon_sym_BSLASHAcl] = ACTIONS(12327), + [anon_sym_BSLASHaclp] = ACTIONS(12327), + [anon_sym_BSLASHAclp] = ACTIONS(12327), + [anon_sym_BSLASHacf] = ACTIONS(12327), + [anon_sym_BSLASHAcf] = ACTIONS(12327), + [anon_sym_BSLASHacfp] = ACTIONS(12327), + [anon_sym_BSLASHAcfp] = ACTIONS(12327), + [anon_sym_BSLASHac] = ACTIONS(12327), + [anon_sym_BSLASHAc] = ACTIONS(12327), + [anon_sym_BSLASHacp] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12327), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12327), + [anon_sym_BSLASHcolor] = ACTIONS(12327), + [anon_sym_BSLASHcolorbox] = ACTIONS(12327), + [anon_sym_BSLASHtextcolor] = ACTIONS(12327), + [anon_sym_BSLASHpagecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12327), + }, + [1487] = { + [sym_generic_command_name] = ACTIONS(12311), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12311), + [aux_sym_paragraph_token1] = ACTIONS(12311), + [aux_sym_subparagraph_token1] = ACTIONS(12311), + [anon_sym_BSLASHitem] = ACTIONS(12311), + [anon_sym_LBRACK] = ACTIONS(12309), + [anon_sym_RBRACK] = ACTIONS(12309), + [anon_sym_LBRACE] = ACTIONS(12309), + [anon_sym_RBRACE] = ACTIONS(12309), + [anon_sym_LPAREN] = ACTIONS(12309), + [anon_sym_COMMA] = ACTIONS(12309), + [anon_sym_EQ] = ACTIONS(12309), + [sym_word] = ACTIONS(12309), + [sym_param] = ACTIONS(12309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12309), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12309), + [anon_sym_DOLLAR] = ACTIONS(12311), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12309), + [anon_sym_BSLASHbegin] = ACTIONS(12311), + [anon_sym_BSLASHcaption] = ACTIONS(12311), + [anon_sym_BSLASHcite] = ACTIONS(12311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCite] = ACTIONS(12311), + [anon_sym_BSLASHnocite] = ACTIONS(12311), + [anon_sym_BSLASHcitet] = ACTIONS(12311), + [anon_sym_BSLASHcitep] = ACTIONS(12311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteauthor] = ACTIONS(12311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitetitle] = ACTIONS(12311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteyear] = ACTIONS(12311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitedate] = ACTIONS(12311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteurl] = ACTIONS(12311), + [anon_sym_BSLASHfullcite] = ACTIONS(12311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12311), + [anon_sym_BSLASHcitealt] = ACTIONS(12311), + [anon_sym_BSLASHcitealp] = ACTIONS(12311), + [anon_sym_BSLASHcitetext] = ACTIONS(12311), + [anon_sym_BSLASHparencite] = ACTIONS(12311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHParencite] = ACTIONS(12311), + [anon_sym_BSLASHfootcite] = ACTIONS(12311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12311), + [anon_sym_BSLASHtextcite] = ACTIONS(12311), + [anon_sym_BSLASHTextcite] = ACTIONS(12311), + [anon_sym_BSLASHsmartcite] = ACTIONS(12311), + [anon_sym_BSLASHSmartcite] = ACTIONS(12311), + [anon_sym_BSLASHsupercite] = ACTIONS(12311), + [anon_sym_BSLASHautocite] = ACTIONS(12311), + [anon_sym_BSLASHAutocite] = ACTIONS(12311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHvolcite] = ACTIONS(12311), + [anon_sym_BSLASHVolcite] = ACTIONS(12311), + [anon_sym_BSLASHpvolcite] = ACTIONS(12311), + [anon_sym_BSLASHPvolcite] = ACTIONS(12311), + [anon_sym_BSLASHfvolcite] = ACTIONS(12311), + [anon_sym_BSLASHftvolcite] = ACTIONS(12311), + [anon_sym_BSLASHsvolcite] = ACTIONS(12311), + [anon_sym_BSLASHSvolcite] = ACTIONS(12311), + [anon_sym_BSLASHtvolcite] = ACTIONS(12311), + [anon_sym_BSLASHTvolcite] = ACTIONS(12311), + [anon_sym_BSLASHavolcite] = ACTIONS(12311), + [anon_sym_BSLASHAvolcite] = ACTIONS(12311), + [anon_sym_BSLASHnotecite] = ACTIONS(12311), + [anon_sym_BSLASHpnotecite] = ACTIONS(12311), + [anon_sym_BSLASHPnotecite] = ACTIONS(12311), + [anon_sym_BSLASHfnotecite] = ACTIONS(12311), + [anon_sym_BSLASHusepackage] = ACTIONS(12311), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12311), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12311), + [anon_sym_BSLASHinclude] = ACTIONS(12311), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12311), + [anon_sym_BSLASHinput] = ACTIONS(12311), + [anon_sym_BSLASHsubfile] = ACTIONS(12311), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12311), + [anon_sym_BSLASHbibliography] = ACTIONS(12311), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12311), + [anon_sym_BSLASHincludesvg] = ACTIONS(12311), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12311), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12311), + [anon_sym_BSLASHimport] = ACTIONS(12311), + [anon_sym_BSLASHsubimport] = ACTIONS(12311), + [anon_sym_BSLASHinputfrom] = ACTIONS(12311), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12311), + [anon_sym_BSLASHincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHlabel] = ACTIONS(12311), + [anon_sym_BSLASHref] = ACTIONS(12311), + [anon_sym_BSLASHvref] = ACTIONS(12311), + [anon_sym_BSLASHVref] = ACTIONS(12311), + [anon_sym_BSLASHautoref] = ACTIONS(12311), + [anon_sym_BSLASHpageref] = ACTIONS(12311), + [anon_sym_BSLASHcref] = ACTIONS(12311), + [anon_sym_BSLASHCref] = ACTIONS(12311), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnameCref] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHlabelcref] = ACTIONS(12311), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12311), + [anon_sym_BSLASHeqref] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange] = ACTIONS(12311), + [anon_sym_BSLASHCrefrange] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewlabel] = ACTIONS(12311), + [anon_sym_BSLASHnewcommand] = ACTIONS(12311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12311), + [anon_sym_BSLASHgls] = ACTIONS(12311), + [anon_sym_BSLASHGls] = ACTIONS(12311), + [anon_sym_BSLASHGLS] = ACTIONS(12311), + [anon_sym_BSLASHglspl] = ACTIONS(12311), + [anon_sym_BSLASHGlspl] = ACTIONS(12311), + [anon_sym_BSLASHGLSpl] = ACTIONS(12311), + [anon_sym_BSLASHglsdisp] = ACTIONS(12311), + [anon_sym_BSLASHglslink] = ACTIONS(12311), + [anon_sym_BSLASHglstext] = ACTIONS(12311), + [anon_sym_BSLASHGlstext] = ACTIONS(12311), + [anon_sym_BSLASHGLStext] = ACTIONS(12311), + [anon_sym_BSLASHglsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12311), + [anon_sym_BSLASHglsplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSplural] = ACTIONS(12311), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHglsname] = ACTIONS(12311), + [anon_sym_BSLASHGlsname] = ACTIONS(12311), + [anon_sym_BSLASHGLSname] = ACTIONS(12311), + [anon_sym_BSLASHglssymbol] = ACTIONS(12311), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12311), + [anon_sym_BSLASHglsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12311), + [anon_sym_BSLASHglsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12311), + [anon_sym_BSLASHglsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12311), + [anon_sym_BSLASHglsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12311), + [anon_sym_BSLASHglsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12311), + [anon_sym_BSLASHnewacronym] = ACTIONS(12311), + [anon_sym_BSLASHacrshort] = ACTIONS(12311), + [anon_sym_BSLASHAcrshort] = ACTIONS(12311), + [anon_sym_BSLASHACRshort] = ACTIONS(12311), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12311), + [anon_sym_BSLASHacrlong] = ACTIONS(12311), + [anon_sym_BSLASHAcrlong] = ACTIONS(12311), + [anon_sym_BSLASHACRlong] = ACTIONS(12311), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12311), + [anon_sym_BSLASHacrfull] = ACTIONS(12311), + [anon_sym_BSLASHAcrfull] = ACTIONS(12311), + [anon_sym_BSLASHACRfull] = ACTIONS(12311), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12311), + [anon_sym_BSLASHacs] = ACTIONS(12311), + [anon_sym_BSLASHAcs] = ACTIONS(12311), + [anon_sym_BSLASHacsp] = ACTIONS(12311), + [anon_sym_BSLASHAcsp] = ACTIONS(12311), + [anon_sym_BSLASHacl] = ACTIONS(12311), + [anon_sym_BSLASHAcl] = ACTIONS(12311), + [anon_sym_BSLASHaclp] = ACTIONS(12311), + [anon_sym_BSLASHAclp] = ACTIONS(12311), + [anon_sym_BSLASHacf] = ACTIONS(12311), + [anon_sym_BSLASHAcf] = ACTIONS(12311), + [anon_sym_BSLASHacfp] = ACTIONS(12311), + [anon_sym_BSLASHAcfp] = ACTIONS(12311), + [anon_sym_BSLASHac] = ACTIONS(12311), + [anon_sym_BSLASHAc] = ACTIONS(12311), + [anon_sym_BSLASHacp] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12311), + [anon_sym_BSLASHcolor] = ACTIONS(12311), + [anon_sym_BSLASHcolorbox] = ACTIONS(12311), + [anon_sym_BSLASHtextcolor] = ACTIONS(12311), + [anon_sym_BSLASHpagecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12311), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12311), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12311), + }, + [1488] = { + [sym_brace_group] = STATE(1480), + [sym_bracket_group] = STATE(1480), + [sym_paren_group] = STATE(1480), + [aux_sym_generic_command_repeat1] = STATE(1480), + [sym_generic_command_name] = ACTIONS(11998), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12765), + [anon_sym_RBRACK] = ACTIONS(11996), + [anon_sym_LBRACE] = ACTIONS(11776), + [anon_sym_RBRACE] = ACTIONS(11996), + [anon_sym_LPAREN] = ACTIONS(12767), + [anon_sym_COMMA] = ACTIONS(11996), + [anon_sym_EQ] = ACTIONS(11996), + [sym_word] = ACTIONS(11996), + [sym_param] = ACTIONS(11996), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(11996), + [anon_sym_BSLASH_LBRACK] = ACTIONS(11996), + [anon_sym_DOLLAR] = ACTIONS(11998), + [anon_sym_BSLASH_LPAREN] = ACTIONS(11996), + [anon_sym_BSLASHbegin] = ACTIONS(11998), + [anon_sym_BSLASHcaption] = ACTIONS(11998), + [anon_sym_BSLASHcite] = ACTIONS(11998), + [anon_sym_BSLASHcite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCite] = ACTIONS(11998), + [anon_sym_BSLASHnocite] = ACTIONS(11998), + [anon_sym_BSLASHcitet] = ACTIONS(11998), + [anon_sym_BSLASHcitep] = ACTIONS(11998), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteauthor] = ACTIONS(11998), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCiteauthor] = ACTIONS(11998), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitetitle] = ACTIONS(11998), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteyear] = ACTIONS(11998), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(11996), + [anon_sym_BSLASHcitedate] = ACTIONS(11998), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(11996), + [anon_sym_BSLASHciteurl] = ACTIONS(11998), + [anon_sym_BSLASHfullcite] = ACTIONS(11998), + [anon_sym_BSLASHciteyearpar] = ACTIONS(11998), + [anon_sym_BSLASHcitealt] = ACTIONS(11998), + [anon_sym_BSLASHcitealp] = ACTIONS(11998), + [anon_sym_BSLASHcitetext] = ACTIONS(11998), + [anon_sym_BSLASHparencite] = ACTIONS(11998), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHParencite] = ACTIONS(11998), + [anon_sym_BSLASHfootcite] = ACTIONS(11998), + [anon_sym_BSLASHfootfullcite] = ACTIONS(11998), + [anon_sym_BSLASHfootcitetext] = ACTIONS(11998), + [anon_sym_BSLASHtextcite] = ACTIONS(11998), + [anon_sym_BSLASHTextcite] = ACTIONS(11998), + [anon_sym_BSLASHsmartcite] = ACTIONS(11998), + [anon_sym_BSLASHSmartcite] = ACTIONS(11998), + [anon_sym_BSLASHsupercite] = ACTIONS(11998), + [anon_sym_BSLASHautocite] = ACTIONS(11998), + [anon_sym_BSLASHAutocite] = ACTIONS(11998), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(11996), + [anon_sym_BSLASHvolcite] = ACTIONS(11998), + [anon_sym_BSLASHVolcite] = ACTIONS(11998), + [anon_sym_BSLASHpvolcite] = ACTIONS(11998), + [anon_sym_BSLASHPvolcite] = ACTIONS(11998), + [anon_sym_BSLASHfvolcite] = ACTIONS(11998), + [anon_sym_BSLASHftvolcite] = ACTIONS(11998), + [anon_sym_BSLASHsvolcite] = ACTIONS(11998), + [anon_sym_BSLASHSvolcite] = ACTIONS(11998), + [anon_sym_BSLASHtvolcite] = ACTIONS(11998), + [anon_sym_BSLASHTvolcite] = ACTIONS(11998), + [anon_sym_BSLASHavolcite] = ACTIONS(11998), + [anon_sym_BSLASHAvolcite] = ACTIONS(11998), + [anon_sym_BSLASHnotecite] = ACTIONS(11998), + [anon_sym_BSLASHpnotecite] = ACTIONS(11998), + [anon_sym_BSLASHPnotecite] = ACTIONS(11998), + [anon_sym_BSLASHfnotecite] = ACTIONS(11998), + [anon_sym_BSLASHusepackage] = ACTIONS(11998), + [anon_sym_BSLASHRequirePackage] = ACTIONS(11998), + [anon_sym_BSLASHdocumentclass] = ACTIONS(11998), + [anon_sym_BSLASHinclude] = ACTIONS(11998), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(11998), + [anon_sym_BSLASHinput] = ACTIONS(11998), + [anon_sym_BSLASHsubfile] = ACTIONS(11998), + [anon_sym_BSLASHaddbibresource] = ACTIONS(11998), + [anon_sym_BSLASHbibliography] = ACTIONS(11998), + [anon_sym_BSLASHincludegraphics] = ACTIONS(11998), + [anon_sym_BSLASHincludesvg] = ACTIONS(11998), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(11998), + [anon_sym_BSLASHverbatiminput] = ACTIONS(11998), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(11998), + [anon_sym_BSLASHimport] = ACTIONS(11998), + [anon_sym_BSLASHsubimport] = ACTIONS(11998), + [anon_sym_BSLASHinputfrom] = ACTIONS(11998), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(11998), + [anon_sym_BSLASHincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(11998), + [anon_sym_BSLASHlabel] = ACTIONS(11998), + [anon_sym_BSLASHref] = ACTIONS(11998), + [anon_sym_BSLASHvref] = ACTIONS(11998), + [anon_sym_BSLASHVref] = ACTIONS(11998), + [anon_sym_BSLASHautoref] = ACTIONS(11998), + [anon_sym_BSLASHpageref] = ACTIONS(11998), + [anon_sym_BSLASHcref] = ACTIONS(11998), + [anon_sym_BSLASHCref] = ACTIONS(11998), + [anon_sym_BSLASHcref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCref_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnameCref] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecref] = ACTIONS(11998), + [anon_sym_BSLASHnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHnameCrefs] = ACTIONS(11998), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(11998), + [anon_sym_BSLASHlabelcref] = ACTIONS(11998), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(11998), + [anon_sym_BSLASHeqref] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange] = ACTIONS(11998), + [anon_sym_BSLASHCrefrange] = ACTIONS(11998), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewlabel] = ACTIONS(11998), + [anon_sym_BSLASHnewcommand] = ACTIONS(11998), + [anon_sym_BSLASHrenewcommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(11998), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(11996), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(11998), + [anon_sym_BSLASHgls] = ACTIONS(11998), + [anon_sym_BSLASHGls] = ACTIONS(11998), + [anon_sym_BSLASHGLS] = ACTIONS(11998), + [anon_sym_BSLASHglspl] = ACTIONS(11998), + [anon_sym_BSLASHGlspl] = ACTIONS(11998), + [anon_sym_BSLASHGLSpl] = ACTIONS(11998), + [anon_sym_BSLASHglsdisp] = ACTIONS(11998), + [anon_sym_BSLASHglslink] = ACTIONS(11998), + [anon_sym_BSLASHglstext] = ACTIONS(11998), + [anon_sym_BSLASHGlstext] = ACTIONS(11998), + [anon_sym_BSLASHGLStext] = ACTIONS(11998), + [anon_sym_BSLASHglsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirst] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirst] = ACTIONS(11998), + [anon_sym_BSLASHglsplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSplural] = ACTIONS(11998), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(11998), + [anon_sym_BSLASHglsname] = ACTIONS(11998), + [anon_sym_BSLASHGlsname] = ACTIONS(11998), + [anon_sym_BSLASHGLSname] = ACTIONS(11998), + [anon_sym_BSLASHglssymbol] = ACTIONS(11998), + [anon_sym_BSLASHGlssymbol] = ACTIONS(11998), + [anon_sym_BSLASHglsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGlsdesc] = ACTIONS(11998), + [anon_sym_BSLASHGLSdesc] = ACTIONS(11998), + [anon_sym_BSLASHglsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseri] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseri] = ACTIONS(11998), + [anon_sym_BSLASHglsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(11998), + [anon_sym_BSLASHglsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(11998), + [anon_sym_BSLASHglsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGlsuserv] = ACTIONS(11998), + [anon_sym_BSLASHGLSuserv] = ACTIONS(11998), + [anon_sym_BSLASHglsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGlsuservi] = ACTIONS(11998), + [anon_sym_BSLASHGLSuservi] = ACTIONS(11998), + [anon_sym_BSLASHnewacronym] = ACTIONS(11998), + [anon_sym_BSLASHacrshort] = ACTIONS(11998), + [anon_sym_BSLASHAcrshort] = ACTIONS(11998), + [anon_sym_BSLASHACRshort] = ACTIONS(11998), + [anon_sym_BSLASHacrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(11998), + [anon_sym_BSLASHACRshortpl] = ACTIONS(11998), + [anon_sym_BSLASHacrlong] = ACTIONS(11998), + [anon_sym_BSLASHAcrlong] = ACTIONS(11998), + [anon_sym_BSLASHACRlong] = ACTIONS(11998), + [anon_sym_BSLASHacrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(11998), + [anon_sym_BSLASHACRlongpl] = ACTIONS(11998), + [anon_sym_BSLASHacrfull] = ACTIONS(11998), + [anon_sym_BSLASHAcrfull] = ACTIONS(11998), + [anon_sym_BSLASHACRfull] = ACTIONS(11998), + [anon_sym_BSLASHacrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(11998), + [anon_sym_BSLASHACRfullpl] = ACTIONS(11998), + [anon_sym_BSLASHacs] = ACTIONS(11998), + [anon_sym_BSLASHAcs] = ACTIONS(11998), + [anon_sym_BSLASHacsp] = ACTIONS(11998), + [anon_sym_BSLASHAcsp] = ACTIONS(11998), + [anon_sym_BSLASHacl] = ACTIONS(11998), + [anon_sym_BSLASHAcl] = ACTIONS(11998), + [anon_sym_BSLASHaclp] = ACTIONS(11998), + [anon_sym_BSLASHAclp] = ACTIONS(11998), + [anon_sym_BSLASHacf] = ACTIONS(11998), + [anon_sym_BSLASHAcf] = ACTIONS(11998), + [anon_sym_BSLASHacfp] = ACTIONS(11998), + [anon_sym_BSLASHAcfp] = ACTIONS(11998), + [anon_sym_BSLASHac] = ACTIONS(11998), + [anon_sym_BSLASHAc] = ACTIONS(11998), + [anon_sym_BSLASHacp] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(11998), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(11998), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(11998), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(11998), + [anon_sym_BSLASHnewtheorem] = ACTIONS(11998), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(11998), + [anon_sym_BSLASHcolor] = ACTIONS(11998), + [anon_sym_BSLASHcolorbox] = ACTIONS(11998), + [anon_sym_BSLASHtextcolor] = ACTIONS(11998), + [anon_sym_BSLASHpagecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolor] = ACTIONS(11998), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(11998), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(11998), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(11998), + }, + [1489] = { + [sym_generic_command_name] = ACTIONS(12299), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12299), + [aux_sym_paragraph_token1] = ACTIONS(12299), + [aux_sym_subparagraph_token1] = ACTIONS(12299), + [anon_sym_BSLASHitem] = ACTIONS(12299), + [anon_sym_LBRACK] = ACTIONS(12297), + [anon_sym_RBRACK] = ACTIONS(12297), + [anon_sym_LBRACE] = ACTIONS(12297), + [anon_sym_RBRACE] = ACTIONS(12297), + [anon_sym_LPAREN] = ACTIONS(12297), + [anon_sym_COMMA] = ACTIONS(12297), + [anon_sym_EQ] = ACTIONS(12297), + [sym_word] = ACTIONS(12297), + [sym_param] = ACTIONS(12297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12297), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12297), + [anon_sym_DOLLAR] = ACTIONS(12299), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12297), + [anon_sym_BSLASHbegin] = ACTIONS(12299), + [anon_sym_BSLASHcaption] = ACTIONS(12299), + [anon_sym_BSLASHcite] = ACTIONS(12299), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCite] = ACTIONS(12299), + [anon_sym_BSLASHnocite] = ACTIONS(12299), + [anon_sym_BSLASHcitet] = ACTIONS(12299), + [anon_sym_BSLASHcitep] = ACTIONS(12299), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteauthor] = ACTIONS(12299), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12299), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitetitle] = ACTIONS(12299), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteyear] = ACTIONS(12299), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitedate] = ACTIONS(12299), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteurl] = ACTIONS(12299), + [anon_sym_BSLASHfullcite] = ACTIONS(12299), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12299), + [anon_sym_BSLASHcitealt] = ACTIONS(12299), + [anon_sym_BSLASHcitealp] = ACTIONS(12299), + [anon_sym_BSLASHcitetext] = ACTIONS(12299), + [anon_sym_BSLASHparencite] = ACTIONS(12299), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHParencite] = ACTIONS(12299), + [anon_sym_BSLASHfootcite] = ACTIONS(12299), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12299), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12299), + [anon_sym_BSLASHtextcite] = ACTIONS(12299), + [anon_sym_BSLASHTextcite] = ACTIONS(12299), + [anon_sym_BSLASHsmartcite] = ACTIONS(12299), + [anon_sym_BSLASHSmartcite] = ACTIONS(12299), + [anon_sym_BSLASHsupercite] = ACTIONS(12299), + [anon_sym_BSLASHautocite] = ACTIONS(12299), + [anon_sym_BSLASHAutocite] = ACTIONS(12299), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHvolcite] = ACTIONS(12299), + [anon_sym_BSLASHVolcite] = ACTIONS(12299), + [anon_sym_BSLASHpvolcite] = ACTIONS(12299), + [anon_sym_BSLASHPvolcite] = ACTIONS(12299), + [anon_sym_BSLASHfvolcite] = ACTIONS(12299), + [anon_sym_BSLASHftvolcite] = ACTIONS(12299), + [anon_sym_BSLASHsvolcite] = ACTIONS(12299), + [anon_sym_BSLASHSvolcite] = ACTIONS(12299), + [anon_sym_BSLASHtvolcite] = ACTIONS(12299), + [anon_sym_BSLASHTvolcite] = ACTIONS(12299), + [anon_sym_BSLASHavolcite] = ACTIONS(12299), + [anon_sym_BSLASHAvolcite] = ACTIONS(12299), + [anon_sym_BSLASHnotecite] = ACTIONS(12299), + [anon_sym_BSLASHpnotecite] = ACTIONS(12299), + [anon_sym_BSLASHPnotecite] = ACTIONS(12299), + [anon_sym_BSLASHfnotecite] = ACTIONS(12299), + [anon_sym_BSLASHusepackage] = ACTIONS(12299), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12299), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12299), + [anon_sym_BSLASHinclude] = ACTIONS(12299), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12299), + [anon_sym_BSLASHinput] = ACTIONS(12299), + [anon_sym_BSLASHsubfile] = ACTIONS(12299), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12299), + [anon_sym_BSLASHbibliography] = ACTIONS(12299), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12299), + [anon_sym_BSLASHincludesvg] = ACTIONS(12299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12299), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12299), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12299), + [anon_sym_BSLASHimport] = ACTIONS(12299), + [anon_sym_BSLASHsubimport] = ACTIONS(12299), + [anon_sym_BSLASHinputfrom] = ACTIONS(12299), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12299), + [anon_sym_BSLASHincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHlabel] = ACTIONS(12299), + [anon_sym_BSLASHref] = ACTIONS(12299), + [anon_sym_BSLASHvref] = ACTIONS(12299), + [anon_sym_BSLASHVref] = ACTIONS(12299), + [anon_sym_BSLASHautoref] = ACTIONS(12299), + [anon_sym_BSLASHpageref] = ACTIONS(12299), + [anon_sym_BSLASHcref] = ACTIONS(12299), + [anon_sym_BSLASHCref] = ACTIONS(12299), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnameCref] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHlabelcref] = ACTIONS(12299), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12299), + [anon_sym_BSLASHeqref] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange] = ACTIONS(12299), + [anon_sym_BSLASHCrefrange] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewlabel] = ACTIONS(12299), + [anon_sym_BSLASHnewcommand] = ACTIONS(12299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12299), + [anon_sym_BSLASHgls] = ACTIONS(12299), + [anon_sym_BSLASHGls] = ACTIONS(12299), + [anon_sym_BSLASHGLS] = ACTIONS(12299), + [anon_sym_BSLASHglspl] = ACTIONS(12299), + [anon_sym_BSLASHGlspl] = ACTIONS(12299), + [anon_sym_BSLASHGLSpl] = ACTIONS(12299), + [anon_sym_BSLASHglsdisp] = ACTIONS(12299), + [anon_sym_BSLASHglslink] = ACTIONS(12299), + [anon_sym_BSLASHglstext] = ACTIONS(12299), + [anon_sym_BSLASHGlstext] = ACTIONS(12299), + [anon_sym_BSLASHGLStext] = ACTIONS(12299), + [anon_sym_BSLASHglsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12299), + [anon_sym_BSLASHglsplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSplural] = ACTIONS(12299), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHglsname] = ACTIONS(12299), + [anon_sym_BSLASHGlsname] = ACTIONS(12299), + [anon_sym_BSLASHGLSname] = ACTIONS(12299), + [anon_sym_BSLASHglssymbol] = ACTIONS(12299), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12299), + [anon_sym_BSLASHglsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12299), + [anon_sym_BSLASHglsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12299), + [anon_sym_BSLASHglsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12299), + [anon_sym_BSLASHglsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12299), + [anon_sym_BSLASHglsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12299), + [anon_sym_BSLASHnewacronym] = ACTIONS(12299), + [anon_sym_BSLASHacrshort] = ACTIONS(12299), + [anon_sym_BSLASHAcrshort] = ACTIONS(12299), + [anon_sym_BSLASHACRshort] = ACTIONS(12299), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12299), + [anon_sym_BSLASHacrlong] = ACTIONS(12299), + [anon_sym_BSLASHAcrlong] = ACTIONS(12299), + [anon_sym_BSLASHACRlong] = ACTIONS(12299), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12299), + [anon_sym_BSLASHacrfull] = ACTIONS(12299), + [anon_sym_BSLASHAcrfull] = ACTIONS(12299), + [anon_sym_BSLASHACRfull] = ACTIONS(12299), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12299), + [anon_sym_BSLASHacs] = ACTIONS(12299), + [anon_sym_BSLASHAcs] = ACTIONS(12299), + [anon_sym_BSLASHacsp] = ACTIONS(12299), + [anon_sym_BSLASHAcsp] = ACTIONS(12299), + [anon_sym_BSLASHacl] = ACTIONS(12299), + [anon_sym_BSLASHAcl] = ACTIONS(12299), + [anon_sym_BSLASHaclp] = ACTIONS(12299), + [anon_sym_BSLASHAclp] = ACTIONS(12299), + [anon_sym_BSLASHacf] = ACTIONS(12299), + [anon_sym_BSLASHAcf] = ACTIONS(12299), + [anon_sym_BSLASHacfp] = ACTIONS(12299), + [anon_sym_BSLASHAcfp] = ACTIONS(12299), + [anon_sym_BSLASHac] = ACTIONS(12299), + [anon_sym_BSLASHAc] = ACTIONS(12299), + [anon_sym_BSLASHacp] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12299), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12299), + [anon_sym_BSLASHcolor] = ACTIONS(12299), + [anon_sym_BSLASHcolorbox] = ACTIONS(12299), + [anon_sym_BSLASHtextcolor] = ACTIONS(12299), + [anon_sym_BSLASHpagecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12299), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12299), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12299), + }, + [1490] = { + [sym_generic_command_name] = ACTIONS(12283), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12283), + [aux_sym_paragraph_token1] = ACTIONS(12283), + [aux_sym_subparagraph_token1] = ACTIONS(12283), + [anon_sym_BSLASHitem] = ACTIONS(12283), + [anon_sym_LBRACK] = ACTIONS(12281), + [anon_sym_RBRACK] = ACTIONS(12281), + [anon_sym_LBRACE] = ACTIONS(12281), + [anon_sym_RBRACE] = ACTIONS(12281), + [anon_sym_LPAREN] = ACTIONS(12281), + [anon_sym_COMMA] = ACTIONS(12281), + [anon_sym_EQ] = ACTIONS(12281), + [sym_word] = ACTIONS(12281), + [sym_param] = ACTIONS(12281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12281), + [anon_sym_DOLLAR] = ACTIONS(12283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12281), + [anon_sym_BSLASHbegin] = ACTIONS(12283), + [anon_sym_BSLASHcaption] = ACTIONS(12283), + [anon_sym_BSLASHcite] = ACTIONS(12283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCite] = ACTIONS(12283), + [anon_sym_BSLASHnocite] = ACTIONS(12283), + [anon_sym_BSLASHcitet] = ACTIONS(12283), + [anon_sym_BSLASHcitep] = ACTIONS(12283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteauthor] = ACTIONS(12283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitetitle] = ACTIONS(12283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteyear] = ACTIONS(12283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitedate] = ACTIONS(12283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteurl] = ACTIONS(12283), + [anon_sym_BSLASHfullcite] = ACTIONS(12283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12283), + [anon_sym_BSLASHcitealt] = ACTIONS(12283), + [anon_sym_BSLASHcitealp] = ACTIONS(12283), + [anon_sym_BSLASHcitetext] = ACTIONS(12283), + [anon_sym_BSLASHparencite] = ACTIONS(12283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHParencite] = ACTIONS(12283), + [anon_sym_BSLASHfootcite] = ACTIONS(12283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12283), + [anon_sym_BSLASHtextcite] = ACTIONS(12283), + [anon_sym_BSLASHTextcite] = ACTIONS(12283), + [anon_sym_BSLASHsmartcite] = ACTIONS(12283), + [anon_sym_BSLASHSmartcite] = ACTIONS(12283), + [anon_sym_BSLASHsupercite] = ACTIONS(12283), + [anon_sym_BSLASHautocite] = ACTIONS(12283), + [anon_sym_BSLASHAutocite] = ACTIONS(12283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHvolcite] = ACTIONS(12283), + [anon_sym_BSLASHVolcite] = ACTIONS(12283), + [anon_sym_BSLASHpvolcite] = ACTIONS(12283), + [anon_sym_BSLASHPvolcite] = ACTIONS(12283), + [anon_sym_BSLASHfvolcite] = ACTIONS(12283), + [anon_sym_BSLASHftvolcite] = ACTIONS(12283), + [anon_sym_BSLASHsvolcite] = ACTIONS(12283), + [anon_sym_BSLASHSvolcite] = ACTIONS(12283), + [anon_sym_BSLASHtvolcite] = ACTIONS(12283), + [anon_sym_BSLASHTvolcite] = ACTIONS(12283), + [anon_sym_BSLASHavolcite] = ACTIONS(12283), + [anon_sym_BSLASHAvolcite] = ACTIONS(12283), + [anon_sym_BSLASHnotecite] = ACTIONS(12283), + [anon_sym_BSLASHpnotecite] = ACTIONS(12283), + [anon_sym_BSLASHPnotecite] = ACTIONS(12283), + [anon_sym_BSLASHfnotecite] = ACTIONS(12283), + [anon_sym_BSLASHusepackage] = ACTIONS(12283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12283), + [anon_sym_BSLASHinclude] = ACTIONS(12283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12283), + [anon_sym_BSLASHinput] = ACTIONS(12283), + [anon_sym_BSLASHsubfile] = ACTIONS(12283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12283), + [anon_sym_BSLASHbibliography] = ACTIONS(12283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12283), + [anon_sym_BSLASHincludesvg] = ACTIONS(12283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12283), + [anon_sym_BSLASHimport] = ACTIONS(12283), + [anon_sym_BSLASHsubimport] = ACTIONS(12283), + [anon_sym_BSLASHinputfrom] = ACTIONS(12283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12283), + [anon_sym_BSLASHincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHlabel] = ACTIONS(12283), + [anon_sym_BSLASHref] = ACTIONS(12283), + [anon_sym_BSLASHvref] = ACTIONS(12283), + [anon_sym_BSLASHVref] = ACTIONS(12283), + [anon_sym_BSLASHautoref] = ACTIONS(12283), + [anon_sym_BSLASHpageref] = ACTIONS(12283), + [anon_sym_BSLASHcref] = ACTIONS(12283), + [anon_sym_BSLASHCref] = ACTIONS(12283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnameCref] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHlabelcref] = ACTIONS(12283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12283), + [anon_sym_BSLASHeqref] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange] = ACTIONS(12283), + [anon_sym_BSLASHCrefrange] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewlabel] = ACTIONS(12283), + [anon_sym_BSLASHnewcommand] = ACTIONS(12283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12283), + [anon_sym_BSLASHgls] = ACTIONS(12283), + [anon_sym_BSLASHGls] = ACTIONS(12283), + [anon_sym_BSLASHGLS] = ACTIONS(12283), + [anon_sym_BSLASHglspl] = ACTIONS(12283), + [anon_sym_BSLASHGlspl] = ACTIONS(12283), + [anon_sym_BSLASHGLSpl] = ACTIONS(12283), + [anon_sym_BSLASHglsdisp] = ACTIONS(12283), + [anon_sym_BSLASHglslink] = ACTIONS(12283), + [anon_sym_BSLASHglstext] = ACTIONS(12283), + [anon_sym_BSLASHGlstext] = ACTIONS(12283), + [anon_sym_BSLASHGLStext] = ACTIONS(12283), + [anon_sym_BSLASHglsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12283), + [anon_sym_BSLASHglsplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSplural] = ACTIONS(12283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHglsname] = ACTIONS(12283), + [anon_sym_BSLASHGlsname] = ACTIONS(12283), + [anon_sym_BSLASHGLSname] = ACTIONS(12283), + [anon_sym_BSLASHglssymbol] = ACTIONS(12283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12283), + [anon_sym_BSLASHglsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12283), + [anon_sym_BSLASHglsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12283), + [anon_sym_BSLASHglsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12283), + [anon_sym_BSLASHglsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12283), + [anon_sym_BSLASHglsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12283), + [anon_sym_BSLASHnewacronym] = ACTIONS(12283), + [anon_sym_BSLASHacrshort] = ACTIONS(12283), + [anon_sym_BSLASHAcrshort] = ACTIONS(12283), + [anon_sym_BSLASHACRshort] = ACTIONS(12283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12283), + [anon_sym_BSLASHacrlong] = ACTIONS(12283), + [anon_sym_BSLASHAcrlong] = ACTIONS(12283), + [anon_sym_BSLASHACRlong] = ACTIONS(12283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12283), + [anon_sym_BSLASHacrfull] = ACTIONS(12283), + [anon_sym_BSLASHAcrfull] = ACTIONS(12283), + [anon_sym_BSLASHACRfull] = ACTIONS(12283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12283), + [anon_sym_BSLASHacs] = ACTIONS(12283), + [anon_sym_BSLASHAcs] = ACTIONS(12283), + [anon_sym_BSLASHacsp] = ACTIONS(12283), + [anon_sym_BSLASHAcsp] = ACTIONS(12283), + [anon_sym_BSLASHacl] = ACTIONS(12283), + [anon_sym_BSLASHAcl] = ACTIONS(12283), + [anon_sym_BSLASHaclp] = ACTIONS(12283), + [anon_sym_BSLASHAclp] = ACTIONS(12283), + [anon_sym_BSLASHacf] = ACTIONS(12283), + [anon_sym_BSLASHAcf] = ACTIONS(12283), + [anon_sym_BSLASHacfp] = ACTIONS(12283), + [anon_sym_BSLASHAcfp] = ACTIONS(12283), + [anon_sym_BSLASHac] = ACTIONS(12283), + [anon_sym_BSLASHAc] = ACTIONS(12283), + [anon_sym_BSLASHacp] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12283), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12283), + [anon_sym_BSLASHcolor] = ACTIONS(12283), + [anon_sym_BSLASHcolorbox] = ACTIONS(12283), + [anon_sym_BSLASHtextcolor] = ACTIONS(12283), + [anon_sym_BSLASHpagecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12283), + }, + [1491] = { + [sym_generic_command_name] = ACTIONS(12275), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12275), + [aux_sym_paragraph_token1] = ACTIONS(12275), + [aux_sym_subparagraph_token1] = ACTIONS(12275), + [anon_sym_BSLASHitem] = ACTIONS(12275), + [anon_sym_LBRACK] = ACTIONS(12273), + [anon_sym_RBRACK] = ACTIONS(12273), + [anon_sym_LBRACE] = ACTIONS(12273), + [anon_sym_RBRACE] = ACTIONS(12273), + [anon_sym_LPAREN] = ACTIONS(12273), + [anon_sym_COMMA] = ACTIONS(12273), + [anon_sym_EQ] = ACTIONS(12273), + [sym_word] = ACTIONS(12273), + [sym_param] = ACTIONS(12273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12273), + [anon_sym_DOLLAR] = ACTIONS(12275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12273), + [anon_sym_BSLASHbegin] = ACTIONS(12275), + [anon_sym_BSLASHcaption] = ACTIONS(12275), + [anon_sym_BSLASHcite] = ACTIONS(12275), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCite] = ACTIONS(12275), + [anon_sym_BSLASHnocite] = ACTIONS(12275), + [anon_sym_BSLASHcitet] = ACTIONS(12275), + [anon_sym_BSLASHcitep] = ACTIONS(12275), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteauthor] = ACTIONS(12275), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12275), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitetitle] = ACTIONS(12275), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteyear] = ACTIONS(12275), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitedate] = ACTIONS(12275), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteurl] = ACTIONS(12275), + [anon_sym_BSLASHfullcite] = ACTIONS(12275), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12275), + [anon_sym_BSLASHcitealt] = ACTIONS(12275), + [anon_sym_BSLASHcitealp] = ACTIONS(12275), + [anon_sym_BSLASHcitetext] = ACTIONS(12275), + [anon_sym_BSLASHparencite] = ACTIONS(12275), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHParencite] = ACTIONS(12275), + [anon_sym_BSLASHfootcite] = ACTIONS(12275), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12275), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12275), + [anon_sym_BSLASHtextcite] = ACTIONS(12275), + [anon_sym_BSLASHTextcite] = ACTIONS(12275), + [anon_sym_BSLASHsmartcite] = ACTIONS(12275), + [anon_sym_BSLASHSmartcite] = ACTIONS(12275), + [anon_sym_BSLASHsupercite] = ACTIONS(12275), + [anon_sym_BSLASHautocite] = ACTIONS(12275), + [anon_sym_BSLASHAutocite] = ACTIONS(12275), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHvolcite] = ACTIONS(12275), + [anon_sym_BSLASHVolcite] = ACTIONS(12275), + [anon_sym_BSLASHpvolcite] = ACTIONS(12275), + [anon_sym_BSLASHPvolcite] = ACTIONS(12275), + [anon_sym_BSLASHfvolcite] = ACTIONS(12275), + [anon_sym_BSLASHftvolcite] = ACTIONS(12275), + [anon_sym_BSLASHsvolcite] = ACTIONS(12275), + [anon_sym_BSLASHSvolcite] = ACTIONS(12275), + [anon_sym_BSLASHtvolcite] = ACTIONS(12275), + [anon_sym_BSLASHTvolcite] = ACTIONS(12275), + [anon_sym_BSLASHavolcite] = ACTIONS(12275), + [anon_sym_BSLASHAvolcite] = ACTIONS(12275), + [anon_sym_BSLASHnotecite] = ACTIONS(12275), + [anon_sym_BSLASHpnotecite] = ACTIONS(12275), + [anon_sym_BSLASHPnotecite] = ACTIONS(12275), + [anon_sym_BSLASHfnotecite] = ACTIONS(12275), + [anon_sym_BSLASHusepackage] = ACTIONS(12275), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12275), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12275), + [anon_sym_BSLASHinclude] = ACTIONS(12275), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12275), + [anon_sym_BSLASHinput] = ACTIONS(12275), + [anon_sym_BSLASHsubfile] = ACTIONS(12275), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12275), + [anon_sym_BSLASHbibliography] = ACTIONS(12275), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12275), + [anon_sym_BSLASHincludesvg] = ACTIONS(12275), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12275), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12275), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12275), + [anon_sym_BSLASHimport] = ACTIONS(12275), + [anon_sym_BSLASHsubimport] = ACTIONS(12275), + [anon_sym_BSLASHinputfrom] = ACTIONS(12275), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12275), + [anon_sym_BSLASHincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHlabel] = ACTIONS(12275), + [anon_sym_BSLASHref] = ACTIONS(12275), + [anon_sym_BSLASHvref] = ACTIONS(12275), + [anon_sym_BSLASHVref] = ACTIONS(12275), + [anon_sym_BSLASHautoref] = ACTIONS(12275), + [anon_sym_BSLASHpageref] = ACTIONS(12275), + [anon_sym_BSLASHcref] = ACTIONS(12275), + [anon_sym_BSLASHCref] = ACTIONS(12275), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnameCref] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHlabelcref] = ACTIONS(12275), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12275), + [anon_sym_BSLASHeqref] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange] = ACTIONS(12275), + [anon_sym_BSLASHCrefrange] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewlabel] = ACTIONS(12275), + [anon_sym_BSLASHnewcommand] = ACTIONS(12275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12275), + [anon_sym_BSLASHgls] = ACTIONS(12275), + [anon_sym_BSLASHGls] = ACTIONS(12275), + [anon_sym_BSLASHGLS] = ACTIONS(12275), + [anon_sym_BSLASHglspl] = ACTIONS(12275), + [anon_sym_BSLASHGlspl] = ACTIONS(12275), + [anon_sym_BSLASHGLSpl] = ACTIONS(12275), + [anon_sym_BSLASHglsdisp] = ACTIONS(12275), + [anon_sym_BSLASHglslink] = ACTIONS(12275), + [anon_sym_BSLASHglstext] = ACTIONS(12275), + [anon_sym_BSLASHGlstext] = ACTIONS(12275), + [anon_sym_BSLASHGLStext] = ACTIONS(12275), + [anon_sym_BSLASHglsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12275), + [anon_sym_BSLASHglsplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSplural] = ACTIONS(12275), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHglsname] = ACTIONS(12275), + [anon_sym_BSLASHGlsname] = ACTIONS(12275), + [anon_sym_BSLASHGLSname] = ACTIONS(12275), + [anon_sym_BSLASHglssymbol] = ACTIONS(12275), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12275), + [anon_sym_BSLASHglsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12275), + [anon_sym_BSLASHglsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12275), + [anon_sym_BSLASHglsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12275), + [anon_sym_BSLASHglsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12275), + [anon_sym_BSLASHglsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12275), + [anon_sym_BSLASHnewacronym] = ACTIONS(12275), + [anon_sym_BSLASHacrshort] = ACTIONS(12275), + [anon_sym_BSLASHAcrshort] = ACTIONS(12275), + [anon_sym_BSLASHACRshort] = ACTIONS(12275), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12275), + [anon_sym_BSLASHacrlong] = ACTIONS(12275), + [anon_sym_BSLASHAcrlong] = ACTIONS(12275), + [anon_sym_BSLASHACRlong] = ACTIONS(12275), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12275), + [anon_sym_BSLASHacrfull] = ACTIONS(12275), + [anon_sym_BSLASHAcrfull] = ACTIONS(12275), + [anon_sym_BSLASHACRfull] = ACTIONS(12275), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12275), + [anon_sym_BSLASHacs] = ACTIONS(12275), + [anon_sym_BSLASHAcs] = ACTIONS(12275), + [anon_sym_BSLASHacsp] = ACTIONS(12275), + [anon_sym_BSLASHAcsp] = ACTIONS(12275), + [anon_sym_BSLASHacl] = ACTIONS(12275), + [anon_sym_BSLASHAcl] = ACTIONS(12275), + [anon_sym_BSLASHaclp] = ACTIONS(12275), + [anon_sym_BSLASHAclp] = ACTIONS(12275), + [anon_sym_BSLASHacf] = ACTIONS(12275), + [anon_sym_BSLASHAcf] = ACTIONS(12275), + [anon_sym_BSLASHacfp] = ACTIONS(12275), + [anon_sym_BSLASHAcfp] = ACTIONS(12275), + [anon_sym_BSLASHac] = ACTIONS(12275), + [anon_sym_BSLASHAc] = ACTIONS(12275), + [anon_sym_BSLASHacp] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12275), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12275), + [anon_sym_BSLASHcolor] = ACTIONS(12275), + [anon_sym_BSLASHcolorbox] = ACTIONS(12275), + [anon_sym_BSLASHtextcolor] = ACTIONS(12275), + [anon_sym_BSLASHpagecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12275), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12275), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12275), + }, + [1492] = { + [sym_generic_command_name] = ACTIONS(12209), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12209), + [aux_sym_paragraph_token1] = ACTIONS(12209), + [aux_sym_subparagraph_token1] = ACTIONS(12209), + [anon_sym_BSLASHitem] = ACTIONS(12209), + [anon_sym_LBRACK] = ACTIONS(12207), + [anon_sym_RBRACK] = ACTIONS(12207), + [anon_sym_LBRACE] = ACTIONS(12207), + [anon_sym_RBRACE] = ACTIONS(12207), + [anon_sym_LPAREN] = ACTIONS(12207), + [anon_sym_COMMA] = ACTIONS(12207), + [anon_sym_EQ] = ACTIONS(12207), + [sym_word] = ACTIONS(12207), + [sym_param] = ACTIONS(12207), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12207), + [anon_sym_DOLLAR] = ACTIONS(12209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12207), + [anon_sym_BSLASHbegin] = ACTIONS(12209), + [anon_sym_BSLASHcaption] = ACTIONS(12209), + [anon_sym_BSLASHcite] = ACTIONS(12209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCite] = ACTIONS(12209), + [anon_sym_BSLASHnocite] = ACTIONS(12209), + [anon_sym_BSLASHcitet] = ACTIONS(12209), + [anon_sym_BSLASHcitep] = ACTIONS(12209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteauthor] = ACTIONS(12209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitetitle] = ACTIONS(12209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteyear] = ACTIONS(12209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitedate] = ACTIONS(12209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteurl] = ACTIONS(12209), + [anon_sym_BSLASHfullcite] = ACTIONS(12209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12209), + [anon_sym_BSLASHcitealt] = ACTIONS(12209), + [anon_sym_BSLASHcitealp] = ACTIONS(12209), + [anon_sym_BSLASHcitetext] = ACTIONS(12209), + [anon_sym_BSLASHparencite] = ACTIONS(12209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHParencite] = ACTIONS(12209), + [anon_sym_BSLASHfootcite] = ACTIONS(12209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12209), + [anon_sym_BSLASHtextcite] = ACTIONS(12209), + [anon_sym_BSLASHTextcite] = ACTIONS(12209), + [anon_sym_BSLASHsmartcite] = ACTIONS(12209), + [anon_sym_BSLASHSmartcite] = ACTIONS(12209), + [anon_sym_BSLASHsupercite] = ACTIONS(12209), + [anon_sym_BSLASHautocite] = ACTIONS(12209), + [anon_sym_BSLASHAutocite] = ACTIONS(12209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHvolcite] = ACTIONS(12209), + [anon_sym_BSLASHVolcite] = ACTIONS(12209), + [anon_sym_BSLASHpvolcite] = ACTIONS(12209), + [anon_sym_BSLASHPvolcite] = ACTIONS(12209), + [anon_sym_BSLASHfvolcite] = ACTIONS(12209), + [anon_sym_BSLASHftvolcite] = ACTIONS(12209), + [anon_sym_BSLASHsvolcite] = ACTIONS(12209), + [anon_sym_BSLASHSvolcite] = ACTIONS(12209), + [anon_sym_BSLASHtvolcite] = ACTIONS(12209), + [anon_sym_BSLASHTvolcite] = ACTIONS(12209), + [anon_sym_BSLASHavolcite] = ACTIONS(12209), + [anon_sym_BSLASHAvolcite] = ACTIONS(12209), + [anon_sym_BSLASHnotecite] = ACTIONS(12209), + [anon_sym_BSLASHpnotecite] = ACTIONS(12209), + [anon_sym_BSLASHPnotecite] = ACTIONS(12209), + [anon_sym_BSLASHfnotecite] = ACTIONS(12209), + [anon_sym_BSLASHusepackage] = ACTIONS(12209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12209), + [anon_sym_BSLASHinclude] = ACTIONS(12209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12209), + [anon_sym_BSLASHinput] = ACTIONS(12209), + [anon_sym_BSLASHsubfile] = ACTIONS(12209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12209), + [anon_sym_BSLASHbibliography] = ACTIONS(12209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12209), + [anon_sym_BSLASHincludesvg] = ACTIONS(12209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12209), + [anon_sym_BSLASHimport] = ACTIONS(12209), + [anon_sym_BSLASHsubimport] = ACTIONS(12209), + [anon_sym_BSLASHinputfrom] = ACTIONS(12209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12209), + [anon_sym_BSLASHincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHlabel] = ACTIONS(12209), + [anon_sym_BSLASHref] = ACTIONS(12209), + [anon_sym_BSLASHvref] = ACTIONS(12209), + [anon_sym_BSLASHVref] = ACTIONS(12209), + [anon_sym_BSLASHautoref] = ACTIONS(12209), + [anon_sym_BSLASHpageref] = ACTIONS(12209), + [anon_sym_BSLASHcref] = ACTIONS(12209), + [anon_sym_BSLASHCref] = ACTIONS(12209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnameCref] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHlabelcref] = ACTIONS(12209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12209), + [anon_sym_BSLASHeqref] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange] = ACTIONS(12209), + [anon_sym_BSLASHCrefrange] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewlabel] = ACTIONS(12209), + [anon_sym_BSLASHnewcommand] = ACTIONS(12209), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12209), + [anon_sym_BSLASHgls] = ACTIONS(12209), + [anon_sym_BSLASHGls] = ACTIONS(12209), + [anon_sym_BSLASHGLS] = ACTIONS(12209), + [anon_sym_BSLASHglspl] = ACTIONS(12209), + [anon_sym_BSLASHGlspl] = ACTIONS(12209), + [anon_sym_BSLASHGLSpl] = ACTIONS(12209), + [anon_sym_BSLASHglsdisp] = ACTIONS(12209), + [anon_sym_BSLASHglslink] = ACTIONS(12209), + [anon_sym_BSLASHglstext] = ACTIONS(12209), + [anon_sym_BSLASHGlstext] = ACTIONS(12209), + [anon_sym_BSLASHGLStext] = ACTIONS(12209), + [anon_sym_BSLASHglsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12209), + [anon_sym_BSLASHglsplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSplural] = ACTIONS(12209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHglsname] = ACTIONS(12209), + [anon_sym_BSLASHGlsname] = ACTIONS(12209), + [anon_sym_BSLASHGLSname] = ACTIONS(12209), + [anon_sym_BSLASHglssymbol] = ACTIONS(12209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12209), + [anon_sym_BSLASHglsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12209), + [anon_sym_BSLASHglsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12209), + [anon_sym_BSLASHglsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12209), + [anon_sym_BSLASHglsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12209), + [anon_sym_BSLASHglsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12209), + [anon_sym_BSLASHnewacronym] = ACTIONS(12209), + [anon_sym_BSLASHacrshort] = ACTIONS(12209), + [anon_sym_BSLASHAcrshort] = ACTIONS(12209), + [anon_sym_BSLASHACRshort] = ACTIONS(12209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12209), + [anon_sym_BSLASHacrlong] = ACTIONS(12209), + [anon_sym_BSLASHAcrlong] = ACTIONS(12209), + [anon_sym_BSLASHACRlong] = ACTIONS(12209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12209), + [anon_sym_BSLASHacrfull] = ACTIONS(12209), + [anon_sym_BSLASHAcrfull] = ACTIONS(12209), + [anon_sym_BSLASHACRfull] = ACTIONS(12209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12209), + [anon_sym_BSLASHacs] = ACTIONS(12209), + [anon_sym_BSLASHAcs] = ACTIONS(12209), + [anon_sym_BSLASHacsp] = ACTIONS(12209), + [anon_sym_BSLASHAcsp] = ACTIONS(12209), + [anon_sym_BSLASHacl] = ACTIONS(12209), + [anon_sym_BSLASHAcl] = ACTIONS(12209), + [anon_sym_BSLASHaclp] = ACTIONS(12209), + [anon_sym_BSLASHAclp] = ACTIONS(12209), + [anon_sym_BSLASHacf] = ACTIONS(12209), + [anon_sym_BSLASHAcf] = ACTIONS(12209), + [anon_sym_BSLASHacfp] = ACTIONS(12209), + [anon_sym_BSLASHAcfp] = ACTIONS(12209), + [anon_sym_BSLASHac] = ACTIONS(12209), + [anon_sym_BSLASHAc] = ACTIONS(12209), + [anon_sym_BSLASHacp] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12209), + [anon_sym_BSLASHcolor] = ACTIONS(12209), + [anon_sym_BSLASHcolorbox] = ACTIONS(12209), + [anon_sym_BSLASHtextcolor] = ACTIONS(12209), + [anon_sym_BSLASHpagecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12209), + }, + [1493] = { + [sym_generic_command_name] = ACTIONS(12197), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12197), + [aux_sym_paragraph_token1] = ACTIONS(12197), + [aux_sym_subparagraph_token1] = ACTIONS(12197), + [anon_sym_BSLASHitem] = ACTIONS(12197), + [anon_sym_LBRACK] = ACTIONS(12195), + [anon_sym_RBRACK] = ACTIONS(12195), + [anon_sym_LBRACE] = ACTIONS(12195), + [anon_sym_RBRACE] = ACTIONS(12195), + [anon_sym_LPAREN] = ACTIONS(12195), + [anon_sym_COMMA] = ACTIONS(12195), + [anon_sym_EQ] = ACTIONS(12195), + [sym_word] = ACTIONS(12195), + [sym_param] = ACTIONS(12195), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12195), + [anon_sym_DOLLAR] = ACTIONS(12197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12195), + [anon_sym_BSLASHbegin] = ACTIONS(12197), + [anon_sym_BSLASHcaption] = ACTIONS(12197), + [anon_sym_BSLASHcite] = ACTIONS(12197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCite] = ACTIONS(12197), + [anon_sym_BSLASHnocite] = ACTIONS(12197), + [anon_sym_BSLASHcitet] = ACTIONS(12197), + [anon_sym_BSLASHcitep] = ACTIONS(12197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteauthor] = ACTIONS(12197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitetitle] = ACTIONS(12197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteyear] = ACTIONS(12197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitedate] = ACTIONS(12197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteurl] = ACTIONS(12197), + [anon_sym_BSLASHfullcite] = ACTIONS(12197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12197), + [anon_sym_BSLASHcitealt] = ACTIONS(12197), + [anon_sym_BSLASHcitealp] = ACTIONS(12197), + [anon_sym_BSLASHcitetext] = ACTIONS(12197), + [anon_sym_BSLASHparencite] = ACTIONS(12197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHParencite] = ACTIONS(12197), + [anon_sym_BSLASHfootcite] = ACTIONS(12197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12197), + [anon_sym_BSLASHtextcite] = ACTIONS(12197), + [anon_sym_BSLASHTextcite] = ACTIONS(12197), + [anon_sym_BSLASHsmartcite] = ACTIONS(12197), + [anon_sym_BSLASHSmartcite] = ACTIONS(12197), + [anon_sym_BSLASHsupercite] = ACTIONS(12197), + [anon_sym_BSLASHautocite] = ACTIONS(12197), + [anon_sym_BSLASHAutocite] = ACTIONS(12197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHvolcite] = ACTIONS(12197), + [anon_sym_BSLASHVolcite] = ACTIONS(12197), + [anon_sym_BSLASHpvolcite] = ACTIONS(12197), + [anon_sym_BSLASHPvolcite] = ACTIONS(12197), + [anon_sym_BSLASHfvolcite] = ACTIONS(12197), + [anon_sym_BSLASHftvolcite] = ACTIONS(12197), + [anon_sym_BSLASHsvolcite] = ACTIONS(12197), + [anon_sym_BSLASHSvolcite] = ACTIONS(12197), + [anon_sym_BSLASHtvolcite] = ACTIONS(12197), + [anon_sym_BSLASHTvolcite] = ACTIONS(12197), + [anon_sym_BSLASHavolcite] = ACTIONS(12197), + [anon_sym_BSLASHAvolcite] = ACTIONS(12197), + [anon_sym_BSLASHnotecite] = ACTIONS(12197), + [anon_sym_BSLASHpnotecite] = ACTIONS(12197), + [anon_sym_BSLASHPnotecite] = ACTIONS(12197), + [anon_sym_BSLASHfnotecite] = ACTIONS(12197), + [anon_sym_BSLASHusepackage] = ACTIONS(12197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12197), + [anon_sym_BSLASHinclude] = ACTIONS(12197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12197), + [anon_sym_BSLASHinput] = ACTIONS(12197), + [anon_sym_BSLASHsubfile] = ACTIONS(12197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12197), + [anon_sym_BSLASHbibliography] = ACTIONS(12197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12197), + [anon_sym_BSLASHincludesvg] = ACTIONS(12197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12197), + [anon_sym_BSLASHimport] = ACTIONS(12197), + [anon_sym_BSLASHsubimport] = ACTIONS(12197), + [anon_sym_BSLASHinputfrom] = ACTIONS(12197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12197), + [anon_sym_BSLASHincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHlabel] = ACTIONS(12197), + [anon_sym_BSLASHref] = ACTIONS(12197), + [anon_sym_BSLASHvref] = ACTIONS(12197), + [anon_sym_BSLASHVref] = ACTIONS(12197), + [anon_sym_BSLASHautoref] = ACTIONS(12197), + [anon_sym_BSLASHpageref] = ACTIONS(12197), + [anon_sym_BSLASHcref] = ACTIONS(12197), + [anon_sym_BSLASHCref] = ACTIONS(12197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnameCref] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHlabelcref] = ACTIONS(12197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12197), + [anon_sym_BSLASHeqref] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange] = ACTIONS(12197), + [anon_sym_BSLASHCrefrange] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewlabel] = ACTIONS(12197), + [anon_sym_BSLASHnewcommand] = ACTIONS(12197), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12197), + [anon_sym_BSLASHgls] = ACTIONS(12197), + [anon_sym_BSLASHGls] = ACTIONS(12197), + [anon_sym_BSLASHGLS] = ACTIONS(12197), + [anon_sym_BSLASHglspl] = ACTIONS(12197), + [anon_sym_BSLASHGlspl] = ACTIONS(12197), + [anon_sym_BSLASHGLSpl] = ACTIONS(12197), + [anon_sym_BSLASHglsdisp] = ACTIONS(12197), + [anon_sym_BSLASHglslink] = ACTIONS(12197), + [anon_sym_BSLASHglstext] = ACTIONS(12197), + [anon_sym_BSLASHGlstext] = ACTIONS(12197), + [anon_sym_BSLASHGLStext] = ACTIONS(12197), + [anon_sym_BSLASHglsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12197), + [anon_sym_BSLASHglsplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSplural] = ACTIONS(12197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHglsname] = ACTIONS(12197), + [anon_sym_BSLASHGlsname] = ACTIONS(12197), + [anon_sym_BSLASHGLSname] = ACTIONS(12197), + [anon_sym_BSLASHglssymbol] = ACTIONS(12197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12197), + [anon_sym_BSLASHglsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12197), + [anon_sym_BSLASHglsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12197), + [anon_sym_BSLASHglsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12197), + [anon_sym_BSLASHglsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12197), + [anon_sym_BSLASHglsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12197), + [anon_sym_BSLASHnewacronym] = ACTIONS(12197), + [anon_sym_BSLASHacrshort] = ACTIONS(12197), + [anon_sym_BSLASHAcrshort] = ACTIONS(12197), + [anon_sym_BSLASHACRshort] = ACTIONS(12197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12197), + [anon_sym_BSLASHacrlong] = ACTIONS(12197), + [anon_sym_BSLASHAcrlong] = ACTIONS(12197), + [anon_sym_BSLASHACRlong] = ACTIONS(12197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12197), + [anon_sym_BSLASHacrfull] = ACTIONS(12197), + [anon_sym_BSLASHAcrfull] = ACTIONS(12197), + [anon_sym_BSLASHACRfull] = ACTIONS(12197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12197), + [anon_sym_BSLASHacs] = ACTIONS(12197), + [anon_sym_BSLASHAcs] = ACTIONS(12197), + [anon_sym_BSLASHacsp] = ACTIONS(12197), + [anon_sym_BSLASHAcsp] = ACTIONS(12197), + [anon_sym_BSLASHacl] = ACTIONS(12197), + [anon_sym_BSLASHAcl] = ACTIONS(12197), + [anon_sym_BSLASHaclp] = ACTIONS(12197), + [anon_sym_BSLASHAclp] = ACTIONS(12197), + [anon_sym_BSLASHacf] = ACTIONS(12197), + [anon_sym_BSLASHAcf] = ACTIONS(12197), + [anon_sym_BSLASHacfp] = ACTIONS(12197), + [anon_sym_BSLASHAcfp] = ACTIONS(12197), + [anon_sym_BSLASHac] = ACTIONS(12197), + [anon_sym_BSLASHAc] = ACTIONS(12197), + [anon_sym_BSLASHacp] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12197), + [anon_sym_BSLASHcolor] = ACTIONS(12197), + [anon_sym_BSLASHcolorbox] = ACTIONS(12197), + [anon_sym_BSLASHtextcolor] = ACTIONS(12197), + [anon_sym_BSLASHpagecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12197), + }, + [1494] = { + [sym_generic_command_name] = ACTIONS(12323), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12323), + [aux_sym_paragraph_token1] = ACTIONS(12323), + [aux_sym_subparagraph_token1] = ACTIONS(12323), + [anon_sym_BSLASHitem] = ACTIONS(12323), + [anon_sym_LBRACK] = ACTIONS(12321), + [anon_sym_RBRACK] = ACTIONS(12321), + [anon_sym_LBRACE] = ACTIONS(12321), + [anon_sym_RBRACE] = ACTIONS(12321), + [anon_sym_LPAREN] = ACTIONS(12321), + [anon_sym_COMMA] = ACTIONS(12321), + [anon_sym_EQ] = ACTIONS(12321), + [sym_word] = ACTIONS(12321), + [sym_param] = ACTIONS(12321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12321), + [anon_sym_DOLLAR] = ACTIONS(12323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12321), + [anon_sym_BSLASHbegin] = ACTIONS(12323), + [anon_sym_BSLASHcaption] = ACTIONS(12323), + [anon_sym_BSLASHcite] = ACTIONS(12323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCite] = ACTIONS(12323), + [anon_sym_BSLASHnocite] = ACTIONS(12323), + [anon_sym_BSLASHcitet] = ACTIONS(12323), + [anon_sym_BSLASHcitep] = ACTIONS(12323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteauthor] = ACTIONS(12323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitetitle] = ACTIONS(12323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteyear] = ACTIONS(12323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitedate] = ACTIONS(12323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteurl] = ACTIONS(12323), + [anon_sym_BSLASHfullcite] = ACTIONS(12323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12323), + [anon_sym_BSLASHcitealt] = ACTIONS(12323), + [anon_sym_BSLASHcitealp] = ACTIONS(12323), + [anon_sym_BSLASHcitetext] = ACTIONS(12323), + [anon_sym_BSLASHparencite] = ACTIONS(12323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHParencite] = ACTIONS(12323), + [anon_sym_BSLASHfootcite] = ACTIONS(12323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12323), + [anon_sym_BSLASHtextcite] = ACTIONS(12323), + [anon_sym_BSLASHTextcite] = ACTIONS(12323), + [anon_sym_BSLASHsmartcite] = ACTIONS(12323), + [anon_sym_BSLASHSmartcite] = ACTIONS(12323), + [anon_sym_BSLASHsupercite] = ACTIONS(12323), + [anon_sym_BSLASHautocite] = ACTIONS(12323), + [anon_sym_BSLASHAutocite] = ACTIONS(12323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHvolcite] = ACTIONS(12323), + [anon_sym_BSLASHVolcite] = ACTIONS(12323), + [anon_sym_BSLASHpvolcite] = ACTIONS(12323), + [anon_sym_BSLASHPvolcite] = ACTIONS(12323), + [anon_sym_BSLASHfvolcite] = ACTIONS(12323), + [anon_sym_BSLASHftvolcite] = ACTIONS(12323), + [anon_sym_BSLASHsvolcite] = ACTIONS(12323), + [anon_sym_BSLASHSvolcite] = ACTIONS(12323), + [anon_sym_BSLASHtvolcite] = ACTIONS(12323), + [anon_sym_BSLASHTvolcite] = ACTIONS(12323), + [anon_sym_BSLASHavolcite] = ACTIONS(12323), + [anon_sym_BSLASHAvolcite] = ACTIONS(12323), + [anon_sym_BSLASHnotecite] = ACTIONS(12323), + [anon_sym_BSLASHpnotecite] = ACTIONS(12323), + [anon_sym_BSLASHPnotecite] = ACTIONS(12323), + [anon_sym_BSLASHfnotecite] = ACTIONS(12323), + [anon_sym_BSLASHusepackage] = ACTIONS(12323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12323), + [anon_sym_BSLASHinclude] = ACTIONS(12323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12323), + [anon_sym_BSLASHinput] = ACTIONS(12323), + [anon_sym_BSLASHsubfile] = ACTIONS(12323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12323), + [anon_sym_BSLASHbibliography] = ACTIONS(12323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12323), + [anon_sym_BSLASHincludesvg] = ACTIONS(12323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12323), + [anon_sym_BSLASHimport] = ACTIONS(12323), + [anon_sym_BSLASHsubimport] = ACTIONS(12323), + [anon_sym_BSLASHinputfrom] = ACTIONS(12323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12323), + [anon_sym_BSLASHincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHlabel] = ACTIONS(12323), + [anon_sym_BSLASHref] = ACTIONS(12323), + [anon_sym_BSLASHvref] = ACTIONS(12323), + [anon_sym_BSLASHVref] = ACTIONS(12323), + [anon_sym_BSLASHautoref] = ACTIONS(12323), + [anon_sym_BSLASHpageref] = ACTIONS(12323), + [anon_sym_BSLASHcref] = ACTIONS(12323), + [anon_sym_BSLASHCref] = ACTIONS(12323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnameCref] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHlabelcref] = ACTIONS(12323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12323), + [anon_sym_BSLASHeqref] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange] = ACTIONS(12323), + [anon_sym_BSLASHCrefrange] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewlabel] = ACTIONS(12323), + [anon_sym_BSLASHnewcommand] = ACTIONS(12323), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12323), + [anon_sym_BSLASHgls] = ACTIONS(12323), + [anon_sym_BSLASHGls] = ACTIONS(12323), + [anon_sym_BSLASHGLS] = ACTIONS(12323), + [anon_sym_BSLASHglspl] = ACTIONS(12323), + [anon_sym_BSLASHGlspl] = ACTIONS(12323), + [anon_sym_BSLASHGLSpl] = ACTIONS(12323), + [anon_sym_BSLASHglsdisp] = ACTIONS(12323), + [anon_sym_BSLASHglslink] = ACTIONS(12323), + [anon_sym_BSLASHglstext] = ACTIONS(12323), + [anon_sym_BSLASHGlstext] = ACTIONS(12323), + [anon_sym_BSLASHGLStext] = ACTIONS(12323), + [anon_sym_BSLASHglsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12323), + [anon_sym_BSLASHglsplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSplural] = ACTIONS(12323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHglsname] = ACTIONS(12323), + [anon_sym_BSLASHGlsname] = ACTIONS(12323), + [anon_sym_BSLASHGLSname] = ACTIONS(12323), + [anon_sym_BSLASHglssymbol] = ACTIONS(12323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12323), + [anon_sym_BSLASHglsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12323), + [anon_sym_BSLASHglsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12323), + [anon_sym_BSLASHglsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12323), + [anon_sym_BSLASHglsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12323), + [anon_sym_BSLASHglsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12323), + [anon_sym_BSLASHnewacronym] = ACTIONS(12323), + [anon_sym_BSLASHacrshort] = ACTIONS(12323), + [anon_sym_BSLASHAcrshort] = ACTIONS(12323), + [anon_sym_BSLASHACRshort] = ACTIONS(12323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12323), + [anon_sym_BSLASHacrlong] = ACTIONS(12323), + [anon_sym_BSLASHAcrlong] = ACTIONS(12323), + [anon_sym_BSLASHACRlong] = ACTIONS(12323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12323), + [anon_sym_BSLASHacrfull] = ACTIONS(12323), + [anon_sym_BSLASHAcrfull] = ACTIONS(12323), + [anon_sym_BSLASHACRfull] = ACTIONS(12323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12323), + [anon_sym_BSLASHacs] = ACTIONS(12323), + [anon_sym_BSLASHAcs] = ACTIONS(12323), + [anon_sym_BSLASHacsp] = ACTIONS(12323), + [anon_sym_BSLASHAcsp] = ACTIONS(12323), + [anon_sym_BSLASHacl] = ACTIONS(12323), + [anon_sym_BSLASHAcl] = ACTIONS(12323), + [anon_sym_BSLASHaclp] = ACTIONS(12323), + [anon_sym_BSLASHAclp] = ACTIONS(12323), + [anon_sym_BSLASHacf] = ACTIONS(12323), + [anon_sym_BSLASHAcf] = ACTIONS(12323), + [anon_sym_BSLASHacfp] = ACTIONS(12323), + [anon_sym_BSLASHAcfp] = ACTIONS(12323), + [anon_sym_BSLASHac] = ACTIONS(12323), + [anon_sym_BSLASHAc] = ACTIONS(12323), + [anon_sym_BSLASHacp] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12323), + [anon_sym_BSLASHcolor] = ACTIONS(12323), + [anon_sym_BSLASHcolorbox] = ACTIONS(12323), + [anon_sym_BSLASHtextcolor] = ACTIONS(12323), + [anon_sym_BSLASHpagecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12323), + }, + [1495] = { + [sym_generic_command_name] = ACTIONS(12177), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12177), + [aux_sym_paragraph_token1] = ACTIONS(12177), + [aux_sym_subparagraph_token1] = ACTIONS(12177), + [anon_sym_BSLASHitem] = ACTIONS(12177), + [anon_sym_LBRACK] = ACTIONS(12175), + [anon_sym_RBRACK] = ACTIONS(12175), + [anon_sym_LBRACE] = ACTIONS(12175), + [anon_sym_RBRACE] = ACTIONS(12175), + [anon_sym_LPAREN] = ACTIONS(12175), + [anon_sym_COMMA] = ACTIONS(12175), + [anon_sym_EQ] = ACTIONS(12175), + [sym_word] = ACTIONS(12175), + [sym_param] = ACTIONS(12175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12175), + [anon_sym_DOLLAR] = ACTIONS(12177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12175), + [anon_sym_BSLASHbegin] = ACTIONS(12177), + [anon_sym_BSLASHcaption] = ACTIONS(12177), + [anon_sym_BSLASHcite] = ACTIONS(12177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCite] = ACTIONS(12177), + [anon_sym_BSLASHnocite] = ACTIONS(12177), + [anon_sym_BSLASHcitet] = ACTIONS(12177), + [anon_sym_BSLASHcitep] = ACTIONS(12177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteauthor] = ACTIONS(12177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitetitle] = ACTIONS(12177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteyear] = ACTIONS(12177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitedate] = ACTIONS(12177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteurl] = ACTIONS(12177), + [anon_sym_BSLASHfullcite] = ACTIONS(12177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12177), + [anon_sym_BSLASHcitealt] = ACTIONS(12177), + [anon_sym_BSLASHcitealp] = ACTIONS(12177), + [anon_sym_BSLASHcitetext] = ACTIONS(12177), + [anon_sym_BSLASHparencite] = ACTIONS(12177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHParencite] = ACTIONS(12177), + [anon_sym_BSLASHfootcite] = ACTIONS(12177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12177), + [anon_sym_BSLASHtextcite] = ACTIONS(12177), + [anon_sym_BSLASHTextcite] = ACTIONS(12177), + [anon_sym_BSLASHsmartcite] = ACTIONS(12177), + [anon_sym_BSLASHSmartcite] = ACTIONS(12177), + [anon_sym_BSLASHsupercite] = ACTIONS(12177), + [anon_sym_BSLASHautocite] = ACTIONS(12177), + [anon_sym_BSLASHAutocite] = ACTIONS(12177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHvolcite] = ACTIONS(12177), + [anon_sym_BSLASHVolcite] = ACTIONS(12177), + [anon_sym_BSLASHpvolcite] = ACTIONS(12177), + [anon_sym_BSLASHPvolcite] = ACTIONS(12177), + [anon_sym_BSLASHfvolcite] = ACTIONS(12177), + [anon_sym_BSLASHftvolcite] = ACTIONS(12177), + [anon_sym_BSLASHsvolcite] = ACTIONS(12177), + [anon_sym_BSLASHSvolcite] = ACTIONS(12177), + [anon_sym_BSLASHtvolcite] = ACTIONS(12177), + [anon_sym_BSLASHTvolcite] = ACTIONS(12177), + [anon_sym_BSLASHavolcite] = ACTIONS(12177), + [anon_sym_BSLASHAvolcite] = ACTIONS(12177), + [anon_sym_BSLASHnotecite] = ACTIONS(12177), + [anon_sym_BSLASHpnotecite] = ACTIONS(12177), + [anon_sym_BSLASHPnotecite] = ACTIONS(12177), + [anon_sym_BSLASHfnotecite] = ACTIONS(12177), + [anon_sym_BSLASHusepackage] = ACTIONS(12177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12177), + [anon_sym_BSLASHinclude] = ACTIONS(12177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12177), + [anon_sym_BSLASHinput] = ACTIONS(12177), + [anon_sym_BSLASHsubfile] = ACTIONS(12177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12177), + [anon_sym_BSLASHbibliography] = ACTIONS(12177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12177), + [anon_sym_BSLASHincludesvg] = ACTIONS(12177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12177), + [anon_sym_BSLASHimport] = ACTIONS(12177), + [anon_sym_BSLASHsubimport] = ACTIONS(12177), + [anon_sym_BSLASHinputfrom] = ACTIONS(12177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12177), + [anon_sym_BSLASHincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHlabel] = ACTIONS(12177), + [anon_sym_BSLASHref] = ACTIONS(12177), + [anon_sym_BSLASHvref] = ACTIONS(12177), + [anon_sym_BSLASHVref] = ACTIONS(12177), + [anon_sym_BSLASHautoref] = ACTIONS(12177), + [anon_sym_BSLASHpageref] = ACTIONS(12177), + [anon_sym_BSLASHcref] = ACTIONS(12177), + [anon_sym_BSLASHCref] = ACTIONS(12177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnameCref] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHlabelcref] = ACTIONS(12177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12177), + [anon_sym_BSLASHeqref] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange] = ACTIONS(12177), + [anon_sym_BSLASHCrefrange] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewlabel] = ACTIONS(12177), + [anon_sym_BSLASHnewcommand] = ACTIONS(12177), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12177), + [anon_sym_BSLASHgls] = ACTIONS(12177), + [anon_sym_BSLASHGls] = ACTIONS(12177), + [anon_sym_BSLASHGLS] = ACTIONS(12177), + [anon_sym_BSLASHglspl] = ACTIONS(12177), + [anon_sym_BSLASHGlspl] = ACTIONS(12177), + [anon_sym_BSLASHGLSpl] = ACTIONS(12177), + [anon_sym_BSLASHglsdisp] = ACTIONS(12177), + [anon_sym_BSLASHglslink] = ACTIONS(12177), + [anon_sym_BSLASHglstext] = ACTIONS(12177), + [anon_sym_BSLASHGlstext] = ACTIONS(12177), + [anon_sym_BSLASHGLStext] = ACTIONS(12177), + [anon_sym_BSLASHglsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12177), + [anon_sym_BSLASHglsplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSplural] = ACTIONS(12177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHglsname] = ACTIONS(12177), + [anon_sym_BSLASHGlsname] = ACTIONS(12177), + [anon_sym_BSLASHGLSname] = ACTIONS(12177), + [anon_sym_BSLASHglssymbol] = ACTIONS(12177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12177), + [anon_sym_BSLASHglsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12177), + [anon_sym_BSLASHglsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12177), + [anon_sym_BSLASHglsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12177), + [anon_sym_BSLASHglsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12177), + [anon_sym_BSLASHglsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12177), + [anon_sym_BSLASHnewacronym] = ACTIONS(12177), + [anon_sym_BSLASHacrshort] = ACTIONS(12177), + [anon_sym_BSLASHAcrshort] = ACTIONS(12177), + [anon_sym_BSLASHACRshort] = ACTIONS(12177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12177), + [anon_sym_BSLASHacrlong] = ACTIONS(12177), + [anon_sym_BSLASHAcrlong] = ACTIONS(12177), + [anon_sym_BSLASHACRlong] = ACTIONS(12177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12177), + [anon_sym_BSLASHacrfull] = ACTIONS(12177), + [anon_sym_BSLASHAcrfull] = ACTIONS(12177), + [anon_sym_BSLASHACRfull] = ACTIONS(12177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12177), + [anon_sym_BSLASHacs] = ACTIONS(12177), + [anon_sym_BSLASHAcs] = ACTIONS(12177), + [anon_sym_BSLASHacsp] = ACTIONS(12177), + [anon_sym_BSLASHAcsp] = ACTIONS(12177), + [anon_sym_BSLASHacl] = ACTIONS(12177), + [anon_sym_BSLASHAcl] = ACTIONS(12177), + [anon_sym_BSLASHaclp] = ACTIONS(12177), + [anon_sym_BSLASHAclp] = ACTIONS(12177), + [anon_sym_BSLASHacf] = ACTIONS(12177), + [anon_sym_BSLASHAcf] = ACTIONS(12177), + [anon_sym_BSLASHacfp] = ACTIONS(12177), + [anon_sym_BSLASHAcfp] = ACTIONS(12177), + [anon_sym_BSLASHac] = ACTIONS(12177), + [anon_sym_BSLASHAc] = ACTIONS(12177), + [anon_sym_BSLASHacp] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12177), + [anon_sym_BSLASHcolor] = ACTIONS(12177), + [anon_sym_BSLASHcolorbox] = ACTIONS(12177), + [anon_sym_BSLASHtextcolor] = ACTIONS(12177), + [anon_sym_BSLASHpagecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12177), + }, + [1496] = { + [sym_generic_command_name] = ACTIONS(12173), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12173), + [aux_sym_paragraph_token1] = ACTIONS(12173), + [aux_sym_subparagraph_token1] = ACTIONS(12173), + [anon_sym_BSLASHitem] = ACTIONS(12173), + [anon_sym_LBRACK] = ACTIONS(12171), + [anon_sym_RBRACK] = ACTIONS(12171), + [anon_sym_LBRACE] = ACTIONS(12171), + [anon_sym_RBRACE] = ACTIONS(12171), + [anon_sym_LPAREN] = ACTIONS(12171), + [anon_sym_COMMA] = ACTIONS(12171), + [anon_sym_EQ] = ACTIONS(12171), + [sym_word] = ACTIONS(12171), + [sym_param] = ACTIONS(12171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12171), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12171), + [anon_sym_DOLLAR] = ACTIONS(12173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12171), + [anon_sym_BSLASHbegin] = ACTIONS(12173), + [anon_sym_BSLASHcaption] = ACTIONS(12173), + [anon_sym_BSLASHcite] = ACTIONS(12173), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCite] = ACTIONS(12173), + [anon_sym_BSLASHnocite] = ACTIONS(12173), + [anon_sym_BSLASHcitet] = ACTIONS(12173), + [anon_sym_BSLASHcitep] = ACTIONS(12173), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteauthor] = ACTIONS(12173), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12173), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitetitle] = ACTIONS(12173), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteyear] = ACTIONS(12173), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitedate] = ACTIONS(12173), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteurl] = ACTIONS(12173), + [anon_sym_BSLASHfullcite] = ACTIONS(12173), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12173), + [anon_sym_BSLASHcitealt] = ACTIONS(12173), + [anon_sym_BSLASHcitealp] = ACTIONS(12173), + [anon_sym_BSLASHcitetext] = ACTIONS(12173), + [anon_sym_BSLASHparencite] = ACTIONS(12173), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHParencite] = ACTIONS(12173), + [anon_sym_BSLASHfootcite] = ACTIONS(12173), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12173), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12173), + [anon_sym_BSLASHtextcite] = ACTIONS(12173), + [anon_sym_BSLASHTextcite] = ACTIONS(12173), + [anon_sym_BSLASHsmartcite] = ACTIONS(12173), + [anon_sym_BSLASHSmartcite] = ACTIONS(12173), + [anon_sym_BSLASHsupercite] = ACTIONS(12173), + [anon_sym_BSLASHautocite] = ACTIONS(12173), + [anon_sym_BSLASHAutocite] = ACTIONS(12173), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHvolcite] = ACTIONS(12173), + [anon_sym_BSLASHVolcite] = ACTIONS(12173), + [anon_sym_BSLASHpvolcite] = ACTIONS(12173), + [anon_sym_BSLASHPvolcite] = ACTIONS(12173), + [anon_sym_BSLASHfvolcite] = ACTIONS(12173), + [anon_sym_BSLASHftvolcite] = ACTIONS(12173), + [anon_sym_BSLASHsvolcite] = ACTIONS(12173), + [anon_sym_BSLASHSvolcite] = ACTIONS(12173), + [anon_sym_BSLASHtvolcite] = ACTIONS(12173), + [anon_sym_BSLASHTvolcite] = ACTIONS(12173), + [anon_sym_BSLASHavolcite] = ACTIONS(12173), + [anon_sym_BSLASHAvolcite] = ACTIONS(12173), + [anon_sym_BSLASHnotecite] = ACTIONS(12173), + [anon_sym_BSLASHpnotecite] = ACTIONS(12173), + [anon_sym_BSLASHPnotecite] = ACTIONS(12173), + [anon_sym_BSLASHfnotecite] = ACTIONS(12173), + [anon_sym_BSLASHusepackage] = ACTIONS(12173), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12173), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12173), + [anon_sym_BSLASHinclude] = ACTIONS(12173), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12173), + [anon_sym_BSLASHinput] = ACTIONS(12173), + [anon_sym_BSLASHsubfile] = ACTIONS(12173), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12173), + [anon_sym_BSLASHbibliography] = ACTIONS(12173), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12173), + [anon_sym_BSLASHincludesvg] = ACTIONS(12173), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12173), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12173), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12173), + [anon_sym_BSLASHimport] = ACTIONS(12173), + [anon_sym_BSLASHsubimport] = ACTIONS(12173), + [anon_sym_BSLASHinputfrom] = ACTIONS(12173), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12173), + [anon_sym_BSLASHincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHlabel] = ACTIONS(12173), + [anon_sym_BSLASHref] = ACTIONS(12173), + [anon_sym_BSLASHvref] = ACTIONS(12173), + [anon_sym_BSLASHVref] = ACTIONS(12173), + [anon_sym_BSLASHautoref] = ACTIONS(12173), + [anon_sym_BSLASHpageref] = ACTIONS(12173), + [anon_sym_BSLASHcref] = ACTIONS(12173), + [anon_sym_BSLASHCref] = ACTIONS(12173), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnameCref] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHlabelcref] = ACTIONS(12173), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12173), + [anon_sym_BSLASHeqref] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange] = ACTIONS(12173), + [anon_sym_BSLASHCrefrange] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewlabel] = ACTIONS(12173), + [anon_sym_BSLASHnewcommand] = ACTIONS(12173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12173), + [anon_sym_BSLASHgls] = ACTIONS(12173), + [anon_sym_BSLASHGls] = ACTIONS(12173), + [anon_sym_BSLASHGLS] = ACTIONS(12173), + [anon_sym_BSLASHglspl] = ACTIONS(12173), + [anon_sym_BSLASHGlspl] = ACTIONS(12173), + [anon_sym_BSLASHGLSpl] = ACTIONS(12173), + [anon_sym_BSLASHglsdisp] = ACTIONS(12173), + [anon_sym_BSLASHglslink] = ACTIONS(12173), + [anon_sym_BSLASHglstext] = ACTIONS(12173), + [anon_sym_BSLASHGlstext] = ACTIONS(12173), + [anon_sym_BSLASHGLStext] = ACTIONS(12173), + [anon_sym_BSLASHglsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12173), + [anon_sym_BSLASHglsplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSplural] = ACTIONS(12173), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHglsname] = ACTIONS(12173), + [anon_sym_BSLASHGlsname] = ACTIONS(12173), + [anon_sym_BSLASHGLSname] = ACTIONS(12173), + [anon_sym_BSLASHglssymbol] = ACTIONS(12173), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12173), + [anon_sym_BSLASHglsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12173), + [anon_sym_BSLASHglsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12173), + [anon_sym_BSLASHglsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12173), + [anon_sym_BSLASHglsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12173), + [anon_sym_BSLASHglsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12173), + [anon_sym_BSLASHnewacronym] = ACTIONS(12173), + [anon_sym_BSLASHacrshort] = ACTIONS(12173), + [anon_sym_BSLASHAcrshort] = ACTIONS(12173), + [anon_sym_BSLASHACRshort] = ACTIONS(12173), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12173), + [anon_sym_BSLASHacrlong] = ACTIONS(12173), + [anon_sym_BSLASHAcrlong] = ACTIONS(12173), + [anon_sym_BSLASHACRlong] = ACTIONS(12173), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12173), + [anon_sym_BSLASHacrfull] = ACTIONS(12173), + [anon_sym_BSLASHAcrfull] = ACTIONS(12173), + [anon_sym_BSLASHACRfull] = ACTIONS(12173), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12173), + [anon_sym_BSLASHacs] = ACTIONS(12173), + [anon_sym_BSLASHAcs] = ACTIONS(12173), + [anon_sym_BSLASHacsp] = ACTIONS(12173), + [anon_sym_BSLASHAcsp] = ACTIONS(12173), + [anon_sym_BSLASHacl] = ACTIONS(12173), + [anon_sym_BSLASHAcl] = ACTIONS(12173), + [anon_sym_BSLASHaclp] = ACTIONS(12173), + [anon_sym_BSLASHAclp] = ACTIONS(12173), + [anon_sym_BSLASHacf] = ACTIONS(12173), + [anon_sym_BSLASHAcf] = ACTIONS(12173), + [anon_sym_BSLASHacfp] = ACTIONS(12173), + [anon_sym_BSLASHAcfp] = ACTIONS(12173), + [anon_sym_BSLASHac] = ACTIONS(12173), + [anon_sym_BSLASHAc] = ACTIONS(12173), + [anon_sym_BSLASHacp] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12173), + [anon_sym_BSLASHcolor] = ACTIONS(12173), + [anon_sym_BSLASHcolorbox] = ACTIONS(12173), + [anon_sym_BSLASHtextcolor] = ACTIONS(12173), + [anon_sym_BSLASHpagecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12173), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12173), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12173), + }, + [1497] = { + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(111), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [1498] = { + [sym_generic_command_name] = ACTIONS(12160), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12160), + [aux_sym_paragraph_token1] = ACTIONS(12160), + [aux_sym_subparagraph_token1] = ACTIONS(12160), + [anon_sym_BSLASHitem] = ACTIONS(12160), + [anon_sym_LBRACK] = ACTIONS(12158), + [anon_sym_RBRACK] = ACTIONS(12158), + [anon_sym_LBRACE] = ACTIONS(12158), + [anon_sym_RBRACE] = ACTIONS(12158), + [anon_sym_LPAREN] = ACTIONS(12158), + [anon_sym_COMMA] = ACTIONS(12158), + [anon_sym_EQ] = ACTIONS(12158), + [sym_word] = ACTIONS(12158), + [sym_param] = ACTIONS(12158), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12158), + [anon_sym_DOLLAR] = ACTIONS(12160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12158), + [anon_sym_BSLASHbegin] = ACTIONS(12160), + [anon_sym_BSLASHcaption] = ACTIONS(12160), + [anon_sym_BSLASHcite] = ACTIONS(12160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCite] = ACTIONS(12160), + [anon_sym_BSLASHnocite] = ACTIONS(12160), + [anon_sym_BSLASHcitet] = ACTIONS(12160), + [anon_sym_BSLASHcitep] = ACTIONS(12160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteauthor] = ACTIONS(12160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitetitle] = ACTIONS(12160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteyear] = ACTIONS(12160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitedate] = ACTIONS(12160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteurl] = ACTIONS(12160), + [anon_sym_BSLASHfullcite] = ACTIONS(12160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12160), + [anon_sym_BSLASHcitealt] = ACTIONS(12160), + [anon_sym_BSLASHcitealp] = ACTIONS(12160), + [anon_sym_BSLASHcitetext] = ACTIONS(12160), + [anon_sym_BSLASHparencite] = ACTIONS(12160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHParencite] = ACTIONS(12160), + [anon_sym_BSLASHfootcite] = ACTIONS(12160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12160), + [anon_sym_BSLASHtextcite] = ACTIONS(12160), + [anon_sym_BSLASHTextcite] = ACTIONS(12160), + [anon_sym_BSLASHsmartcite] = ACTIONS(12160), + [anon_sym_BSLASHSmartcite] = ACTIONS(12160), + [anon_sym_BSLASHsupercite] = ACTIONS(12160), + [anon_sym_BSLASHautocite] = ACTIONS(12160), + [anon_sym_BSLASHAutocite] = ACTIONS(12160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHvolcite] = ACTIONS(12160), + [anon_sym_BSLASHVolcite] = ACTIONS(12160), + [anon_sym_BSLASHpvolcite] = ACTIONS(12160), + [anon_sym_BSLASHPvolcite] = ACTIONS(12160), + [anon_sym_BSLASHfvolcite] = ACTIONS(12160), + [anon_sym_BSLASHftvolcite] = ACTIONS(12160), + [anon_sym_BSLASHsvolcite] = ACTIONS(12160), + [anon_sym_BSLASHSvolcite] = ACTIONS(12160), + [anon_sym_BSLASHtvolcite] = ACTIONS(12160), + [anon_sym_BSLASHTvolcite] = ACTIONS(12160), + [anon_sym_BSLASHavolcite] = ACTIONS(12160), + [anon_sym_BSLASHAvolcite] = ACTIONS(12160), + [anon_sym_BSLASHnotecite] = ACTIONS(12160), + [anon_sym_BSLASHpnotecite] = ACTIONS(12160), + [anon_sym_BSLASHPnotecite] = ACTIONS(12160), + [anon_sym_BSLASHfnotecite] = ACTIONS(12160), + [anon_sym_BSLASHusepackage] = ACTIONS(12160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12160), + [anon_sym_BSLASHinclude] = ACTIONS(12160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12160), + [anon_sym_BSLASHinput] = ACTIONS(12160), + [anon_sym_BSLASHsubfile] = ACTIONS(12160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12160), + [anon_sym_BSLASHbibliography] = ACTIONS(12160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12160), + [anon_sym_BSLASHincludesvg] = ACTIONS(12160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12160), + [anon_sym_BSLASHimport] = ACTIONS(12160), + [anon_sym_BSLASHsubimport] = ACTIONS(12160), + [anon_sym_BSLASHinputfrom] = ACTIONS(12160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12160), + [anon_sym_BSLASHincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHlabel] = ACTIONS(12160), + [anon_sym_BSLASHref] = ACTIONS(12160), + [anon_sym_BSLASHvref] = ACTIONS(12160), + [anon_sym_BSLASHVref] = ACTIONS(12160), + [anon_sym_BSLASHautoref] = ACTIONS(12160), + [anon_sym_BSLASHpageref] = ACTIONS(12160), + [anon_sym_BSLASHcref] = ACTIONS(12160), + [anon_sym_BSLASHCref] = ACTIONS(12160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnameCref] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHlabelcref] = ACTIONS(12160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12160), + [anon_sym_BSLASHeqref] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange] = ACTIONS(12160), + [anon_sym_BSLASHCrefrange] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewlabel] = ACTIONS(12160), + [anon_sym_BSLASHnewcommand] = ACTIONS(12160), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12160), + [anon_sym_BSLASHgls] = ACTIONS(12160), + [anon_sym_BSLASHGls] = ACTIONS(12160), + [anon_sym_BSLASHGLS] = ACTIONS(12160), + [anon_sym_BSLASHglspl] = ACTIONS(12160), + [anon_sym_BSLASHGlspl] = ACTIONS(12160), + [anon_sym_BSLASHGLSpl] = ACTIONS(12160), + [anon_sym_BSLASHglsdisp] = ACTIONS(12160), + [anon_sym_BSLASHglslink] = ACTIONS(12160), + [anon_sym_BSLASHglstext] = ACTIONS(12160), + [anon_sym_BSLASHGlstext] = ACTIONS(12160), + [anon_sym_BSLASHGLStext] = ACTIONS(12160), + [anon_sym_BSLASHglsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12160), + [anon_sym_BSLASHglsplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSplural] = ACTIONS(12160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHglsname] = ACTIONS(12160), + [anon_sym_BSLASHGlsname] = ACTIONS(12160), + [anon_sym_BSLASHGLSname] = ACTIONS(12160), + [anon_sym_BSLASHglssymbol] = ACTIONS(12160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12160), + [anon_sym_BSLASHglsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12160), + [anon_sym_BSLASHglsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12160), + [anon_sym_BSLASHglsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12160), + [anon_sym_BSLASHglsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12160), + [anon_sym_BSLASHglsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12160), + [anon_sym_BSLASHnewacronym] = ACTIONS(12160), + [anon_sym_BSLASHacrshort] = ACTIONS(12160), + [anon_sym_BSLASHAcrshort] = ACTIONS(12160), + [anon_sym_BSLASHACRshort] = ACTIONS(12160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12160), + [anon_sym_BSLASHacrlong] = ACTIONS(12160), + [anon_sym_BSLASHAcrlong] = ACTIONS(12160), + [anon_sym_BSLASHACRlong] = ACTIONS(12160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12160), + [anon_sym_BSLASHacrfull] = ACTIONS(12160), + [anon_sym_BSLASHAcrfull] = ACTIONS(12160), + [anon_sym_BSLASHACRfull] = ACTIONS(12160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12160), + [anon_sym_BSLASHacs] = ACTIONS(12160), + [anon_sym_BSLASHAcs] = ACTIONS(12160), + [anon_sym_BSLASHacsp] = ACTIONS(12160), + [anon_sym_BSLASHAcsp] = ACTIONS(12160), + [anon_sym_BSLASHacl] = ACTIONS(12160), + [anon_sym_BSLASHAcl] = ACTIONS(12160), + [anon_sym_BSLASHaclp] = ACTIONS(12160), + [anon_sym_BSLASHAclp] = ACTIONS(12160), + [anon_sym_BSLASHacf] = ACTIONS(12160), + [anon_sym_BSLASHAcf] = ACTIONS(12160), + [anon_sym_BSLASHacfp] = ACTIONS(12160), + [anon_sym_BSLASHAcfp] = ACTIONS(12160), + [anon_sym_BSLASHac] = ACTIONS(12160), + [anon_sym_BSLASHAc] = ACTIONS(12160), + [anon_sym_BSLASHacp] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12160), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12160), + [anon_sym_BSLASHcolor] = ACTIONS(12160), + [anon_sym_BSLASHcolorbox] = ACTIONS(12160), + [anon_sym_BSLASHtextcolor] = ACTIONS(12160), + [anon_sym_BSLASHpagecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12160), + }, + [1499] = { + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(117), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [1500] = { + [sym_generic_command_name] = ACTIONS(12485), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12485), + [aux_sym_paragraph_token1] = ACTIONS(12485), + [aux_sym_subparagraph_token1] = ACTIONS(12485), + [anon_sym_BSLASHitem] = ACTIONS(12485), + [anon_sym_LBRACK] = ACTIONS(12483), + [anon_sym_RBRACK] = ACTIONS(12483), + [anon_sym_LBRACE] = ACTIONS(12483), + [anon_sym_RBRACE] = ACTIONS(12483), + [anon_sym_LPAREN] = ACTIONS(12483), + [anon_sym_COMMA] = ACTIONS(12483), + [anon_sym_EQ] = ACTIONS(12483), + [sym_word] = ACTIONS(12483), + [sym_param] = ACTIONS(12483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12483), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12483), + [anon_sym_DOLLAR] = ACTIONS(12485), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12483), + [anon_sym_BSLASHbegin] = ACTIONS(12485), + [anon_sym_BSLASHcaption] = ACTIONS(12485), + [anon_sym_BSLASHcite] = ACTIONS(12485), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCite] = ACTIONS(12485), + [anon_sym_BSLASHnocite] = ACTIONS(12485), + [anon_sym_BSLASHcitet] = ACTIONS(12485), + [anon_sym_BSLASHcitep] = ACTIONS(12485), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteauthor] = ACTIONS(12485), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12485), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitetitle] = ACTIONS(12485), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteyear] = ACTIONS(12485), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitedate] = ACTIONS(12485), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteurl] = ACTIONS(12485), + [anon_sym_BSLASHfullcite] = ACTIONS(12485), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12485), + [anon_sym_BSLASHcitealt] = ACTIONS(12485), + [anon_sym_BSLASHcitealp] = ACTIONS(12485), + [anon_sym_BSLASHcitetext] = ACTIONS(12485), + [anon_sym_BSLASHparencite] = ACTIONS(12485), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHParencite] = ACTIONS(12485), + [anon_sym_BSLASHfootcite] = ACTIONS(12485), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12485), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12485), + [anon_sym_BSLASHtextcite] = ACTIONS(12485), + [anon_sym_BSLASHTextcite] = ACTIONS(12485), + [anon_sym_BSLASHsmartcite] = ACTIONS(12485), + [anon_sym_BSLASHSmartcite] = ACTIONS(12485), + [anon_sym_BSLASHsupercite] = ACTIONS(12485), + [anon_sym_BSLASHautocite] = ACTIONS(12485), + [anon_sym_BSLASHAutocite] = ACTIONS(12485), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHvolcite] = ACTIONS(12485), + [anon_sym_BSLASHVolcite] = ACTIONS(12485), + [anon_sym_BSLASHpvolcite] = ACTIONS(12485), + [anon_sym_BSLASHPvolcite] = ACTIONS(12485), + [anon_sym_BSLASHfvolcite] = ACTIONS(12485), + [anon_sym_BSLASHftvolcite] = ACTIONS(12485), + [anon_sym_BSLASHsvolcite] = ACTIONS(12485), + [anon_sym_BSLASHSvolcite] = ACTIONS(12485), + [anon_sym_BSLASHtvolcite] = ACTIONS(12485), + [anon_sym_BSLASHTvolcite] = ACTIONS(12485), + [anon_sym_BSLASHavolcite] = ACTIONS(12485), + [anon_sym_BSLASHAvolcite] = ACTIONS(12485), + [anon_sym_BSLASHnotecite] = ACTIONS(12485), + [anon_sym_BSLASHpnotecite] = ACTIONS(12485), + [anon_sym_BSLASHPnotecite] = ACTIONS(12485), + [anon_sym_BSLASHfnotecite] = ACTIONS(12485), + [anon_sym_BSLASHusepackage] = ACTIONS(12485), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12485), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12485), + [anon_sym_BSLASHinclude] = ACTIONS(12485), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12485), + [anon_sym_BSLASHinput] = ACTIONS(12485), + [anon_sym_BSLASHsubfile] = ACTIONS(12485), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12485), + [anon_sym_BSLASHbibliography] = ACTIONS(12485), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12485), + [anon_sym_BSLASHincludesvg] = ACTIONS(12485), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12485), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12485), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12485), + [anon_sym_BSLASHimport] = ACTIONS(12485), + [anon_sym_BSLASHsubimport] = ACTIONS(12485), + [anon_sym_BSLASHinputfrom] = ACTIONS(12485), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12485), + [anon_sym_BSLASHincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHlabel] = ACTIONS(12485), + [anon_sym_BSLASHref] = ACTIONS(12485), + [anon_sym_BSLASHvref] = ACTIONS(12485), + [anon_sym_BSLASHVref] = ACTIONS(12485), + [anon_sym_BSLASHautoref] = ACTIONS(12485), + [anon_sym_BSLASHpageref] = ACTIONS(12485), + [anon_sym_BSLASHcref] = ACTIONS(12485), + [anon_sym_BSLASHCref] = ACTIONS(12485), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnameCref] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHlabelcref] = ACTIONS(12485), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12485), + [anon_sym_BSLASHeqref] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange] = ACTIONS(12485), + [anon_sym_BSLASHCrefrange] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewlabel] = ACTIONS(12485), + [anon_sym_BSLASHnewcommand] = ACTIONS(12485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12485), + [anon_sym_BSLASHgls] = ACTIONS(12485), + [anon_sym_BSLASHGls] = ACTIONS(12485), + [anon_sym_BSLASHGLS] = ACTIONS(12485), + [anon_sym_BSLASHglspl] = ACTIONS(12485), + [anon_sym_BSLASHGlspl] = ACTIONS(12485), + [anon_sym_BSLASHGLSpl] = ACTIONS(12485), + [anon_sym_BSLASHglsdisp] = ACTIONS(12485), + [anon_sym_BSLASHglslink] = ACTIONS(12485), + [anon_sym_BSLASHglstext] = ACTIONS(12485), + [anon_sym_BSLASHGlstext] = ACTIONS(12485), + [anon_sym_BSLASHGLStext] = ACTIONS(12485), + [anon_sym_BSLASHglsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12485), + [anon_sym_BSLASHglsplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSplural] = ACTIONS(12485), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHglsname] = ACTIONS(12485), + [anon_sym_BSLASHGlsname] = ACTIONS(12485), + [anon_sym_BSLASHGLSname] = ACTIONS(12485), + [anon_sym_BSLASHglssymbol] = ACTIONS(12485), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12485), + [anon_sym_BSLASHglsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12485), + [anon_sym_BSLASHglsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12485), + [anon_sym_BSLASHglsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12485), + [anon_sym_BSLASHglsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12485), + [anon_sym_BSLASHglsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12485), + [anon_sym_BSLASHnewacronym] = ACTIONS(12485), + [anon_sym_BSLASHacrshort] = ACTIONS(12485), + [anon_sym_BSLASHAcrshort] = ACTIONS(12485), + [anon_sym_BSLASHACRshort] = ACTIONS(12485), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12485), + [anon_sym_BSLASHacrlong] = ACTIONS(12485), + [anon_sym_BSLASHAcrlong] = ACTIONS(12485), + [anon_sym_BSLASHACRlong] = ACTIONS(12485), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12485), + [anon_sym_BSLASHacrfull] = ACTIONS(12485), + [anon_sym_BSLASHAcrfull] = ACTIONS(12485), + [anon_sym_BSLASHACRfull] = ACTIONS(12485), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12485), + [anon_sym_BSLASHacs] = ACTIONS(12485), + [anon_sym_BSLASHAcs] = ACTIONS(12485), + [anon_sym_BSLASHacsp] = ACTIONS(12485), + [anon_sym_BSLASHAcsp] = ACTIONS(12485), + [anon_sym_BSLASHacl] = ACTIONS(12485), + [anon_sym_BSLASHAcl] = ACTIONS(12485), + [anon_sym_BSLASHaclp] = ACTIONS(12485), + [anon_sym_BSLASHAclp] = ACTIONS(12485), + [anon_sym_BSLASHacf] = ACTIONS(12485), + [anon_sym_BSLASHAcf] = ACTIONS(12485), + [anon_sym_BSLASHacfp] = ACTIONS(12485), + [anon_sym_BSLASHAcfp] = ACTIONS(12485), + [anon_sym_BSLASHac] = ACTIONS(12485), + [anon_sym_BSLASHAc] = ACTIONS(12485), + [anon_sym_BSLASHacp] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12485), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12485), + [anon_sym_BSLASHcolor] = ACTIONS(12485), + [anon_sym_BSLASHcolorbox] = ACTIONS(12485), + [anon_sym_BSLASHtextcolor] = ACTIONS(12485), + [anon_sym_BSLASHpagecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12485), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12485), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12485), + }, + [1501] = { + [sym_generic_command_name] = ACTIONS(12156), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12156), + [aux_sym_paragraph_token1] = ACTIONS(12156), + [aux_sym_subparagraph_token1] = ACTIONS(12156), + [anon_sym_BSLASHitem] = ACTIONS(12156), + [anon_sym_LBRACK] = ACTIONS(12154), + [anon_sym_RBRACK] = ACTIONS(12154), + [anon_sym_LBRACE] = ACTIONS(12154), + [anon_sym_RBRACE] = ACTIONS(12154), + [anon_sym_LPAREN] = ACTIONS(12154), + [anon_sym_COMMA] = ACTIONS(12154), + [anon_sym_EQ] = ACTIONS(12154), + [sym_word] = ACTIONS(12154), + [sym_param] = ACTIONS(12154), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12154), + [anon_sym_DOLLAR] = ACTIONS(12156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12154), + [anon_sym_BSLASHbegin] = ACTIONS(12156), + [anon_sym_BSLASHcaption] = ACTIONS(12156), + [anon_sym_BSLASHcite] = ACTIONS(12156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCite] = ACTIONS(12156), + [anon_sym_BSLASHnocite] = ACTIONS(12156), + [anon_sym_BSLASHcitet] = ACTIONS(12156), + [anon_sym_BSLASHcitep] = ACTIONS(12156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteauthor] = ACTIONS(12156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitetitle] = ACTIONS(12156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteyear] = ACTIONS(12156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitedate] = ACTIONS(12156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteurl] = ACTIONS(12156), + [anon_sym_BSLASHfullcite] = ACTIONS(12156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12156), + [anon_sym_BSLASHcitealt] = ACTIONS(12156), + [anon_sym_BSLASHcitealp] = ACTIONS(12156), + [anon_sym_BSLASHcitetext] = ACTIONS(12156), + [anon_sym_BSLASHparencite] = ACTIONS(12156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHParencite] = ACTIONS(12156), + [anon_sym_BSLASHfootcite] = ACTIONS(12156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12156), + [anon_sym_BSLASHtextcite] = ACTIONS(12156), + [anon_sym_BSLASHTextcite] = ACTIONS(12156), + [anon_sym_BSLASHsmartcite] = ACTIONS(12156), + [anon_sym_BSLASHSmartcite] = ACTIONS(12156), + [anon_sym_BSLASHsupercite] = ACTIONS(12156), + [anon_sym_BSLASHautocite] = ACTIONS(12156), + [anon_sym_BSLASHAutocite] = ACTIONS(12156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHvolcite] = ACTIONS(12156), + [anon_sym_BSLASHVolcite] = ACTIONS(12156), + [anon_sym_BSLASHpvolcite] = ACTIONS(12156), + [anon_sym_BSLASHPvolcite] = ACTIONS(12156), + [anon_sym_BSLASHfvolcite] = ACTIONS(12156), + [anon_sym_BSLASHftvolcite] = ACTIONS(12156), + [anon_sym_BSLASHsvolcite] = ACTIONS(12156), + [anon_sym_BSLASHSvolcite] = ACTIONS(12156), + [anon_sym_BSLASHtvolcite] = ACTIONS(12156), + [anon_sym_BSLASHTvolcite] = ACTIONS(12156), + [anon_sym_BSLASHavolcite] = ACTIONS(12156), + [anon_sym_BSLASHAvolcite] = ACTIONS(12156), + [anon_sym_BSLASHnotecite] = ACTIONS(12156), + [anon_sym_BSLASHpnotecite] = ACTIONS(12156), + [anon_sym_BSLASHPnotecite] = ACTIONS(12156), + [anon_sym_BSLASHfnotecite] = ACTIONS(12156), + [anon_sym_BSLASHusepackage] = ACTIONS(12156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12156), + [anon_sym_BSLASHinclude] = ACTIONS(12156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12156), + [anon_sym_BSLASHinput] = ACTIONS(12156), + [anon_sym_BSLASHsubfile] = ACTIONS(12156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12156), + [anon_sym_BSLASHbibliography] = ACTIONS(12156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12156), + [anon_sym_BSLASHincludesvg] = ACTIONS(12156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12156), + [anon_sym_BSLASHimport] = ACTIONS(12156), + [anon_sym_BSLASHsubimport] = ACTIONS(12156), + [anon_sym_BSLASHinputfrom] = ACTIONS(12156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12156), + [anon_sym_BSLASHincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHlabel] = ACTIONS(12156), + [anon_sym_BSLASHref] = ACTIONS(12156), + [anon_sym_BSLASHvref] = ACTIONS(12156), + [anon_sym_BSLASHVref] = ACTIONS(12156), + [anon_sym_BSLASHautoref] = ACTIONS(12156), + [anon_sym_BSLASHpageref] = ACTIONS(12156), + [anon_sym_BSLASHcref] = ACTIONS(12156), + [anon_sym_BSLASHCref] = ACTIONS(12156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnameCref] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHlabelcref] = ACTIONS(12156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12156), + [anon_sym_BSLASHeqref] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange] = ACTIONS(12156), + [anon_sym_BSLASHCrefrange] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewlabel] = ACTIONS(12156), + [anon_sym_BSLASHnewcommand] = ACTIONS(12156), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12156), + [anon_sym_BSLASHgls] = ACTIONS(12156), + [anon_sym_BSLASHGls] = ACTIONS(12156), + [anon_sym_BSLASHGLS] = ACTIONS(12156), + [anon_sym_BSLASHglspl] = ACTIONS(12156), + [anon_sym_BSLASHGlspl] = ACTIONS(12156), + [anon_sym_BSLASHGLSpl] = ACTIONS(12156), + [anon_sym_BSLASHglsdisp] = ACTIONS(12156), + [anon_sym_BSLASHglslink] = ACTIONS(12156), + [anon_sym_BSLASHglstext] = ACTIONS(12156), + [anon_sym_BSLASHGlstext] = ACTIONS(12156), + [anon_sym_BSLASHGLStext] = ACTIONS(12156), + [anon_sym_BSLASHglsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12156), + [anon_sym_BSLASHglsplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSplural] = ACTIONS(12156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHglsname] = ACTIONS(12156), + [anon_sym_BSLASHGlsname] = ACTIONS(12156), + [anon_sym_BSLASHGLSname] = ACTIONS(12156), + [anon_sym_BSLASHglssymbol] = ACTIONS(12156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12156), + [anon_sym_BSLASHglsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12156), + [anon_sym_BSLASHglsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12156), + [anon_sym_BSLASHglsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12156), + [anon_sym_BSLASHglsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12156), + [anon_sym_BSLASHglsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12156), + [anon_sym_BSLASHnewacronym] = ACTIONS(12156), + [anon_sym_BSLASHacrshort] = ACTIONS(12156), + [anon_sym_BSLASHAcrshort] = ACTIONS(12156), + [anon_sym_BSLASHACRshort] = ACTIONS(12156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12156), + [anon_sym_BSLASHacrlong] = ACTIONS(12156), + [anon_sym_BSLASHAcrlong] = ACTIONS(12156), + [anon_sym_BSLASHACRlong] = ACTIONS(12156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12156), + [anon_sym_BSLASHacrfull] = ACTIONS(12156), + [anon_sym_BSLASHAcrfull] = ACTIONS(12156), + [anon_sym_BSLASHACRfull] = ACTIONS(12156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12156), + [anon_sym_BSLASHacs] = ACTIONS(12156), + [anon_sym_BSLASHAcs] = ACTIONS(12156), + [anon_sym_BSLASHacsp] = ACTIONS(12156), + [anon_sym_BSLASHAcsp] = ACTIONS(12156), + [anon_sym_BSLASHacl] = ACTIONS(12156), + [anon_sym_BSLASHAcl] = ACTIONS(12156), + [anon_sym_BSLASHaclp] = ACTIONS(12156), + [anon_sym_BSLASHAclp] = ACTIONS(12156), + [anon_sym_BSLASHacf] = ACTIONS(12156), + [anon_sym_BSLASHAcf] = ACTIONS(12156), + [anon_sym_BSLASHacfp] = ACTIONS(12156), + [anon_sym_BSLASHAcfp] = ACTIONS(12156), + [anon_sym_BSLASHac] = ACTIONS(12156), + [anon_sym_BSLASHAc] = ACTIONS(12156), + [anon_sym_BSLASHacp] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12156), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12156), + [anon_sym_BSLASHcolor] = ACTIONS(12156), + [anon_sym_BSLASHcolorbox] = ACTIONS(12156), + [anon_sym_BSLASHtextcolor] = ACTIONS(12156), + [anon_sym_BSLASHpagecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12156), + }, + [1502] = { + [sym_generic_command_name] = ACTIONS(12124), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12124), + [aux_sym_paragraph_token1] = ACTIONS(12124), + [aux_sym_subparagraph_token1] = ACTIONS(12124), + [anon_sym_BSLASHitem] = ACTIONS(12124), + [anon_sym_LBRACK] = ACTIONS(12122), + [anon_sym_RBRACK] = ACTIONS(12122), + [anon_sym_LBRACE] = ACTIONS(12122), + [anon_sym_RBRACE] = ACTIONS(12122), + [anon_sym_LPAREN] = ACTIONS(12122), + [anon_sym_COMMA] = ACTIONS(12122), + [anon_sym_EQ] = ACTIONS(12122), + [sym_word] = ACTIONS(12122), + [sym_param] = ACTIONS(12122), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12122), + [anon_sym_DOLLAR] = ACTIONS(12124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12122), + [anon_sym_BSLASHbegin] = ACTIONS(12124), + [anon_sym_BSLASHcaption] = ACTIONS(12124), + [anon_sym_BSLASHcite] = ACTIONS(12124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCite] = ACTIONS(12124), + [anon_sym_BSLASHnocite] = ACTIONS(12124), + [anon_sym_BSLASHcitet] = ACTIONS(12124), + [anon_sym_BSLASHcitep] = ACTIONS(12124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteauthor] = ACTIONS(12124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitetitle] = ACTIONS(12124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteyear] = ACTIONS(12124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitedate] = ACTIONS(12124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteurl] = ACTIONS(12124), + [anon_sym_BSLASHfullcite] = ACTIONS(12124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12124), + [anon_sym_BSLASHcitealt] = ACTIONS(12124), + [anon_sym_BSLASHcitealp] = ACTIONS(12124), + [anon_sym_BSLASHcitetext] = ACTIONS(12124), + [anon_sym_BSLASHparencite] = ACTIONS(12124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHParencite] = ACTIONS(12124), + [anon_sym_BSLASHfootcite] = ACTIONS(12124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12124), + [anon_sym_BSLASHtextcite] = ACTIONS(12124), + [anon_sym_BSLASHTextcite] = ACTIONS(12124), + [anon_sym_BSLASHsmartcite] = ACTIONS(12124), + [anon_sym_BSLASHSmartcite] = ACTIONS(12124), + [anon_sym_BSLASHsupercite] = ACTIONS(12124), + [anon_sym_BSLASHautocite] = ACTIONS(12124), + [anon_sym_BSLASHAutocite] = ACTIONS(12124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHvolcite] = ACTIONS(12124), + [anon_sym_BSLASHVolcite] = ACTIONS(12124), + [anon_sym_BSLASHpvolcite] = ACTIONS(12124), + [anon_sym_BSLASHPvolcite] = ACTIONS(12124), + [anon_sym_BSLASHfvolcite] = ACTIONS(12124), + [anon_sym_BSLASHftvolcite] = ACTIONS(12124), + [anon_sym_BSLASHsvolcite] = ACTIONS(12124), + [anon_sym_BSLASHSvolcite] = ACTIONS(12124), + [anon_sym_BSLASHtvolcite] = ACTIONS(12124), + [anon_sym_BSLASHTvolcite] = ACTIONS(12124), + [anon_sym_BSLASHavolcite] = ACTIONS(12124), + [anon_sym_BSLASHAvolcite] = ACTIONS(12124), + [anon_sym_BSLASHnotecite] = ACTIONS(12124), + [anon_sym_BSLASHpnotecite] = ACTIONS(12124), + [anon_sym_BSLASHPnotecite] = ACTIONS(12124), + [anon_sym_BSLASHfnotecite] = ACTIONS(12124), + [anon_sym_BSLASHusepackage] = ACTIONS(12124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12124), + [anon_sym_BSLASHinclude] = ACTIONS(12124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12124), + [anon_sym_BSLASHinput] = ACTIONS(12124), + [anon_sym_BSLASHsubfile] = ACTIONS(12124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12124), + [anon_sym_BSLASHbibliography] = ACTIONS(12124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12124), + [anon_sym_BSLASHincludesvg] = ACTIONS(12124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12124), + [anon_sym_BSLASHimport] = ACTIONS(12124), + [anon_sym_BSLASHsubimport] = ACTIONS(12124), + [anon_sym_BSLASHinputfrom] = ACTIONS(12124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12124), + [anon_sym_BSLASHincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHlabel] = ACTIONS(12124), + [anon_sym_BSLASHref] = ACTIONS(12124), + [anon_sym_BSLASHvref] = ACTIONS(12124), + [anon_sym_BSLASHVref] = ACTIONS(12124), + [anon_sym_BSLASHautoref] = ACTIONS(12124), + [anon_sym_BSLASHpageref] = ACTIONS(12124), + [anon_sym_BSLASHcref] = ACTIONS(12124), + [anon_sym_BSLASHCref] = ACTIONS(12124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnameCref] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHlabelcref] = ACTIONS(12124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12124), + [anon_sym_BSLASHeqref] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange] = ACTIONS(12124), + [anon_sym_BSLASHCrefrange] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewlabel] = ACTIONS(12124), + [anon_sym_BSLASHnewcommand] = ACTIONS(12124), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12124), + [anon_sym_BSLASHgls] = ACTIONS(12124), + [anon_sym_BSLASHGls] = ACTIONS(12124), + [anon_sym_BSLASHGLS] = ACTIONS(12124), + [anon_sym_BSLASHglspl] = ACTIONS(12124), + [anon_sym_BSLASHGlspl] = ACTIONS(12124), + [anon_sym_BSLASHGLSpl] = ACTIONS(12124), + [anon_sym_BSLASHglsdisp] = ACTIONS(12124), + [anon_sym_BSLASHglslink] = ACTIONS(12124), + [anon_sym_BSLASHglstext] = ACTIONS(12124), + [anon_sym_BSLASHGlstext] = ACTIONS(12124), + [anon_sym_BSLASHGLStext] = ACTIONS(12124), + [anon_sym_BSLASHglsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12124), + [anon_sym_BSLASHglsplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSplural] = ACTIONS(12124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHglsname] = ACTIONS(12124), + [anon_sym_BSLASHGlsname] = ACTIONS(12124), + [anon_sym_BSLASHGLSname] = ACTIONS(12124), + [anon_sym_BSLASHglssymbol] = ACTIONS(12124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12124), + [anon_sym_BSLASHglsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12124), + [anon_sym_BSLASHglsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12124), + [anon_sym_BSLASHglsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12124), + [anon_sym_BSLASHglsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12124), + [anon_sym_BSLASHglsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12124), + [anon_sym_BSLASHnewacronym] = ACTIONS(12124), + [anon_sym_BSLASHacrshort] = ACTIONS(12124), + [anon_sym_BSLASHAcrshort] = ACTIONS(12124), + [anon_sym_BSLASHACRshort] = ACTIONS(12124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12124), + [anon_sym_BSLASHacrlong] = ACTIONS(12124), + [anon_sym_BSLASHAcrlong] = ACTIONS(12124), + [anon_sym_BSLASHACRlong] = ACTIONS(12124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12124), + [anon_sym_BSLASHacrfull] = ACTIONS(12124), + [anon_sym_BSLASHAcrfull] = ACTIONS(12124), + [anon_sym_BSLASHACRfull] = ACTIONS(12124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12124), + [anon_sym_BSLASHacs] = ACTIONS(12124), + [anon_sym_BSLASHAcs] = ACTIONS(12124), + [anon_sym_BSLASHacsp] = ACTIONS(12124), + [anon_sym_BSLASHAcsp] = ACTIONS(12124), + [anon_sym_BSLASHacl] = ACTIONS(12124), + [anon_sym_BSLASHAcl] = ACTIONS(12124), + [anon_sym_BSLASHaclp] = ACTIONS(12124), + [anon_sym_BSLASHAclp] = ACTIONS(12124), + [anon_sym_BSLASHacf] = ACTIONS(12124), + [anon_sym_BSLASHAcf] = ACTIONS(12124), + [anon_sym_BSLASHacfp] = ACTIONS(12124), + [anon_sym_BSLASHAcfp] = ACTIONS(12124), + [anon_sym_BSLASHac] = ACTIONS(12124), + [anon_sym_BSLASHAc] = ACTIONS(12124), + [anon_sym_BSLASHacp] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12124), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12124), + [anon_sym_BSLASHcolor] = ACTIONS(12124), + [anon_sym_BSLASHcolorbox] = ACTIONS(12124), + [anon_sym_BSLASHtextcolor] = ACTIONS(12124), + [anon_sym_BSLASHpagecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12124), + }, + [1503] = { + [sym_generic_command_name] = ACTIONS(12148), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12148), + [aux_sym_paragraph_token1] = ACTIONS(12148), + [aux_sym_subparagraph_token1] = ACTIONS(12148), + [anon_sym_BSLASHitem] = ACTIONS(12148), + [anon_sym_LBRACK] = ACTIONS(12146), + [anon_sym_RBRACK] = ACTIONS(12146), + [anon_sym_LBRACE] = ACTIONS(12146), + [anon_sym_RBRACE] = ACTIONS(12146), + [anon_sym_LPAREN] = ACTIONS(12146), + [anon_sym_COMMA] = ACTIONS(12146), + [anon_sym_EQ] = ACTIONS(12146), + [sym_word] = ACTIONS(12146), + [sym_param] = ACTIONS(12146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12146), + [anon_sym_DOLLAR] = ACTIONS(12148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12146), + [anon_sym_BSLASHbegin] = ACTIONS(12148), + [anon_sym_BSLASHcaption] = ACTIONS(12148), + [anon_sym_BSLASHcite] = ACTIONS(12148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCite] = ACTIONS(12148), + [anon_sym_BSLASHnocite] = ACTIONS(12148), + [anon_sym_BSLASHcitet] = ACTIONS(12148), + [anon_sym_BSLASHcitep] = ACTIONS(12148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteauthor] = ACTIONS(12148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitetitle] = ACTIONS(12148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteyear] = ACTIONS(12148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitedate] = ACTIONS(12148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteurl] = ACTIONS(12148), + [anon_sym_BSLASHfullcite] = ACTIONS(12148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12148), + [anon_sym_BSLASHcitealt] = ACTIONS(12148), + [anon_sym_BSLASHcitealp] = ACTIONS(12148), + [anon_sym_BSLASHcitetext] = ACTIONS(12148), + [anon_sym_BSLASHparencite] = ACTIONS(12148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHParencite] = ACTIONS(12148), + [anon_sym_BSLASHfootcite] = ACTIONS(12148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12148), + [anon_sym_BSLASHtextcite] = ACTIONS(12148), + [anon_sym_BSLASHTextcite] = ACTIONS(12148), + [anon_sym_BSLASHsmartcite] = ACTIONS(12148), + [anon_sym_BSLASHSmartcite] = ACTIONS(12148), + [anon_sym_BSLASHsupercite] = ACTIONS(12148), + [anon_sym_BSLASHautocite] = ACTIONS(12148), + [anon_sym_BSLASHAutocite] = ACTIONS(12148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHvolcite] = ACTIONS(12148), + [anon_sym_BSLASHVolcite] = ACTIONS(12148), + [anon_sym_BSLASHpvolcite] = ACTIONS(12148), + [anon_sym_BSLASHPvolcite] = ACTIONS(12148), + [anon_sym_BSLASHfvolcite] = ACTIONS(12148), + [anon_sym_BSLASHftvolcite] = ACTIONS(12148), + [anon_sym_BSLASHsvolcite] = ACTIONS(12148), + [anon_sym_BSLASHSvolcite] = ACTIONS(12148), + [anon_sym_BSLASHtvolcite] = ACTIONS(12148), + [anon_sym_BSLASHTvolcite] = ACTIONS(12148), + [anon_sym_BSLASHavolcite] = ACTIONS(12148), + [anon_sym_BSLASHAvolcite] = ACTIONS(12148), + [anon_sym_BSLASHnotecite] = ACTIONS(12148), + [anon_sym_BSLASHpnotecite] = ACTIONS(12148), + [anon_sym_BSLASHPnotecite] = ACTIONS(12148), + [anon_sym_BSLASHfnotecite] = ACTIONS(12148), + [anon_sym_BSLASHusepackage] = ACTIONS(12148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12148), + [anon_sym_BSLASHinclude] = ACTIONS(12148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12148), + [anon_sym_BSLASHinput] = ACTIONS(12148), + [anon_sym_BSLASHsubfile] = ACTIONS(12148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12148), + [anon_sym_BSLASHbibliography] = ACTIONS(12148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12148), + [anon_sym_BSLASHincludesvg] = ACTIONS(12148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12148), + [anon_sym_BSLASHimport] = ACTIONS(12148), + [anon_sym_BSLASHsubimport] = ACTIONS(12148), + [anon_sym_BSLASHinputfrom] = ACTIONS(12148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12148), + [anon_sym_BSLASHincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHlabel] = ACTIONS(12148), + [anon_sym_BSLASHref] = ACTIONS(12148), + [anon_sym_BSLASHvref] = ACTIONS(12148), + [anon_sym_BSLASHVref] = ACTIONS(12148), + [anon_sym_BSLASHautoref] = ACTIONS(12148), + [anon_sym_BSLASHpageref] = ACTIONS(12148), + [anon_sym_BSLASHcref] = ACTIONS(12148), + [anon_sym_BSLASHCref] = ACTIONS(12148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnameCref] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHlabelcref] = ACTIONS(12148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12148), + [anon_sym_BSLASHeqref] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange] = ACTIONS(12148), + [anon_sym_BSLASHCrefrange] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewlabel] = ACTIONS(12148), + [anon_sym_BSLASHnewcommand] = ACTIONS(12148), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12148), + [anon_sym_BSLASHgls] = ACTIONS(12148), + [anon_sym_BSLASHGls] = ACTIONS(12148), + [anon_sym_BSLASHGLS] = ACTIONS(12148), + [anon_sym_BSLASHglspl] = ACTIONS(12148), + [anon_sym_BSLASHGlspl] = ACTIONS(12148), + [anon_sym_BSLASHGLSpl] = ACTIONS(12148), + [anon_sym_BSLASHglsdisp] = ACTIONS(12148), + [anon_sym_BSLASHglslink] = ACTIONS(12148), + [anon_sym_BSLASHglstext] = ACTIONS(12148), + [anon_sym_BSLASHGlstext] = ACTIONS(12148), + [anon_sym_BSLASHGLStext] = ACTIONS(12148), + [anon_sym_BSLASHglsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12148), + [anon_sym_BSLASHglsplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSplural] = ACTIONS(12148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHglsname] = ACTIONS(12148), + [anon_sym_BSLASHGlsname] = ACTIONS(12148), + [anon_sym_BSLASHGLSname] = ACTIONS(12148), + [anon_sym_BSLASHglssymbol] = ACTIONS(12148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12148), + [anon_sym_BSLASHglsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12148), + [anon_sym_BSLASHglsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12148), + [anon_sym_BSLASHglsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12148), + [anon_sym_BSLASHglsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12148), + [anon_sym_BSLASHglsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12148), + [anon_sym_BSLASHnewacronym] = ACTIONS(12148), + [anon_sym_BSLASHacrshort] = ACTIONS(12148), + [anon_sym_BSLASHAcrshort] = ACTIONS(12148), + [anon_sym_BSLASHACRshort] = ACTIONS(12148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12148), + [anon_sym_BSLASHacrlong] = ACTIONS(12148), + [anon_sym_BSLASHAcrlong] = ACTIONS(12148), + [anon_sym_BSLASHACRlong] = ACTIONS(12148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12148), + [anon_sym_BSLASHacrfull] = ACTIONS(12148), + [anon_sym_BSLASHAcrfull] = ACTIONS(12148), + [anon_sym_BSLASHACRfull] = ACTIONS(12148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12148), + [anon_sym_BSLASHacs] = ACTIONS(12148), + [anon_sym_BSLASHAcs] = ACTIONS(12148), + [anon_sym_BSLASHacsp] = ACTIONS(12148), + [anon_sym_BSLASHAcsp] = ACTIONS(12148), + [anon_sym_BSLASHacl] = ACTIONS(12148), + [anon_sym_BSLASHAcl] = ACTIONS(12148), + [anon_sym_BSLASHaclp] = ACTIONS(12148), + [anon_sym_BSLASHAclp] = ACTIONS(12148), + [anon_sym_BSLASHacf] = ACTIONS(12148), + [anon_sym_BSLASHAcf] = ACTIONS(12148), + [anon_sym_BSLASHacfp] = ACTIONS(12148), + [anon_sym_BSLASHAcfp] = ACTIONS(12148), + [anon_sym_BSLASHac] = ACTIONS(12148), + [anon_sym_BSLASHAc] = ACTIONS(12148), + [anon_sym_BSLASHacp] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12148), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12148), + [anon_sym_BSLASHcolor] = ACTIONS(12148), + [anon_sym_BSLASHcolorbox] = ACTIONS(12148), + [anon_sym_BSLASHtextcolor] = ACTIONS(12148), + [anon_sym_BSLASHpagecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12148), + }, + [1504] = { + [sym_generic_command_name] = ACTIONS(12144), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12144), + [aux_sym_paragraph_token1] = ACTIONS(12144), + [aux_sym_subparagraph_token1] = ACTIONS(12144), + [anon_sym_BSLASHitem] = ACTIONS(12144), + [anon_sym_LBRACK] = ACTIONS(12142), + [anon_sym_RBRACK] = ACTIONS(12142), + [anon_sym_LBRACE] = ACTIONS(12142), + [anon_sym_RBRACE] = ACTIONS(12142), + [anon_sym_LPAREN] = ACTIONS(12142), + [anon_sym_COMMA] = ACTIONS(12142), + [anon_sym_EQ] = ACTIONS(12142), + [sym_word] = ACTIONS(12142), + [sym_param] = ACTIONS(12142), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12142), + [anon_sym_DOLLAR] = ACTIONS(12144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12142), + [anon_sym_BSLASHbegin] = ACTIONS(12144), + [anon_sym_BSLASHcaption] = ACTIONS(12144), + [anon_sym_BSLASHcite] = ACTIONS(12144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCite] = ACTIONS(12144), + [anon_sym_BSLASHnocite] = ACTIONS(12144), + [anon_sym_BSLASHcitet] = ACTIONS(12144), + [anon_sym_BSLASHcitep] = ACTIONS(12144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteauthor] = ACTIONS(12144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitetitle] = ACTIONS(12144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteyear] = ACTIONS(12144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitedate] = ACTIONS(12144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteurl] = ACTIONS(12144), + [anon_sym_BSLASHfullcite] = ACTIONS(12144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12144), + [anon_sym_BSLASHcitealt] = ACTIONS(12144), + [anon_sym_BSLASHcitealp] = ACTIONS(12144), + [anon_sym_BSLASHcitetext] = ACTIONS(12144), + [anon_sym_BSLASHparencite] = ACTIONS(12144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHParencite] = ACTIONS(12144), + [anon_sym_BSLASHfootcite] = ACTIONS(12144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12144), + [anon_sym_BSLASHtextcite] = ACTIONS(12144), + [anon_sym_BSLASHTextcite] = ACTIONS(12144), + [anon_sym_BSLASHsmartcite] = ACTIONS(12144), + [anon_sym_BSLASHSmartcite] = ACTIONS(12144), + [anon_sym_BSLASHsupercite] = ACTIONS(12144), + [anon_sym_BSLASHautocite] = ACTIONS(12144), + [anon_sym_BSLASHAutocite] = ACTIONS(12144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHvolcite] = ACTIONS(12144), + [anon_sym_BSLASHVolcite] = ACTIONS(12144), + [anon_sym_BSLASHpvolcite] = ACTIONS(12144), + [anon_sym_BSLASHPvolcite] = ACTIONS(12144), + [anon_sym_BSLASHfvolcite] = ACTIONS(12144), + [anon_sym_BSLASHftvolcite] = ACTIONS(12144), + [anon_sym_BSLASHsvolcite] = ACTIONS(12144), + [anon_sym_BSLASHSvolcite] = ACTIONS(12144), + [anon_sym_BSLASHtvolcite] = ACTIONS(12144), + [anon_sym_BSLASHTvolcite] = ACTIONS(12144), + [anon_sym_BSLASHavolcite] = ACTIONS(12144), + [anon_sym_BSLASHAvolcite] = ACTIONS(12144), + [anon_sym_BSLASHnotecite] = ACTIONS(12144), + [anon_sym_BSLASHpnotecite] = ACTIONS(12144), + [anon_sym_BSLASHPnotecite] = ACTIONS(12144), + [anon_sym_BSLASHfnotecite] = ACTIONS(12144), + [anon_sym_BSLASHusepackage] = ACTIONS(12144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12144), + [anon_sym_BSLASHinclude] = ACTIONS(12144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12144), + [anon_sym_BSLASHinput] = ACTIONS(12144), + [anon_sym_BSLASHsubfile] = ACTIONS(12144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12144), + [anon_sym_BSLASHbibliography] = ACTIONS(12144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12144), + [anon_sym_BSLASHincludesvg] = ACTIONS(12144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12144), + [anon_sym_BSLASHimport] = ACTIONS(12144), + [anon_sym_BSLASHsubimport] = ACTIONS(12144), + [anon_sym_BSLASHinputfrom] = ACTIONS(12144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12144), + [anon_sym_BSLASHincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHlabel] = ACTIONS(12144), + [anon_sym_BSLASHref] = ACTIONS(12144), + [anon_sym_BSLASHvref] = ACTIONS(12144), + [anon_sym_BSLASHVref] = ACTIONS(12144), + [anon_sym_BSLASHautoref] = ACTIONS(12144), + [anon_sym_BSLASHpageref] = ACTIONS(12144), + [anon_sym_BSLASHcref] = ACTIONS(12144), + [anon_sym_BSLASHCref] = ACTIONS(12144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnameCref] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHlabelcref] = ACTIONS(12144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12144), + [anon_sym_BSLASHeqref] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange] = ACTIONS(12144), + [anon_sym_BSLASHCrefrange] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewlabel] = ACTIONS(12144), + [anon_sym_BSLASHnewcommand] = ACTIONS(12144), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12144), + [anon_sym_BSLASHgls] = ACTIONS(12144), + [anon_sym_BSLASHGls] = ACTIONS(12144), + [anon_sym_BSLASHGLS] = ACTIONS(12144), + [anon_sym_BSLASHglspl] = ACTIONS(12144), + [anon_sym_BSLASHGlspl] = ACTIONS(12144), + [anon_sym_BSLASHGLSpl] = ACTIONS(12144), + [anon_sym_BSLASHglsdisp] = ACTIONS(12144), + [anon_sym_BSLASHglslink] = ACTIONS(12144), + [anon_sym_BSLASHglstext] = ACTIONS(12144), + [anon_sym_BSLASHGlstext] = ACTIONS(12144), + [anon_sym_BSLASHGLStext] = ACTIONS(12144), + [anon_sym_BSLASHglsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12144), + [anon_sym_BSLASHglsplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSplural] = ACTIONS(12144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHglsname] = ACTIONS(12144), + [anon_sym_BSLASHGlsname] = ACTIONS(12144), + [anon_sym_BSLASHGLSname] = ACTIONS(12144), + [anon_sym_BSLASHglssymbol] = ACTIONS(12144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12144), + [anon_sym_BSLASHglsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12144), + [anon_sym_BSLASHglsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12144), + [anon_sym_BSLASHglsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12144), + [anon_sym_BSLASHglsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12144), + [anon_sym_BSLASHglsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12144), + [anon_sym_BSLASHnewacronym] = ACTIONS(12144), + [anon_sym_BSLASHacrshort] = ACTIONS(12144), + [anon_sym_BSLASHAcrshort] = ACTIONS(12144), + [anon_sym_BSLASHACRshort] = ACTIONS(12144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12144), + [anon_sym_BSLASHacrlong] = ACTIONS(12144), + [anon_sym_BSLASHAcrlong] = ACTIONS(12144), + [anon_sym_BSLASHACRlong] = ACTIONS(12144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12144), + [anon_sym_BSLASHacrfull] = ACTIONS(12144), + [anon_sym_BSLASHAcrfull] = ACTIONS(12144), + [anon_sym_BSLASHACRfull] = ACTIONS(12144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12144), + [anon_sym_BSLASHacs] = ACTIONS(12144), + [anon_sym_BSLASHAcs] = ACTIONS(12144), + [anon_sym_BSLASHacsp] = ACTIONS(12144), + [anon_sym_BSLASHAcsp] = ACTIONS(12144), + [anon_sym_BSLASHacl] = ACTIONS(12144), + [anon_sym_BSLASHAcl] = ACTIONS(12144), + [anon_sym_BSLASHaclp] = ACTIONS(12144), + [anon_sym_BSLASHAclp] = ACTIONS(12144), + [anon_sym_BSLASHacf] = ACTIONS(12144), + [anon_sym_BSLASHAcf] = ACTIONS(12144), + [anon_sym_BSLASHacfp] = ACTIONS(12144), + [anon_sym_BSLASHAcfp] = ACTIONS(12144), + [anon_sym_BSLASHac] = ACTIONS(12144), + [anon_sym_BSLASHAc] = ACTIONS(12144), + [anon_sym_BSLASHacp] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12144), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12144), + [anon_sym_BSLASHcolor] = ACTIONS(12144), + [anon_sym_BSLASHcolorbox] = ACTIONS(12144), + [anon_sym_BSLASHtextcolor] = ACTIONS(12144), + [anon_sym_BSLASHpagecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12144), + }, + [1505] = { + [sym_generic_command_name] = ACTIONS(12140), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12140), + [aux_sym_paragraph_token1] = ACTIONS(12140), + [aux_sym_subparagraph_token1] = ACTIONS(12140), + [anon_sym_BSLASHitem] = ACTIONS(12140), + [anon_sym_LBRACK] = ACTIONS(12138), + [anon_sym_RBRACK] = ACTIONS(12138), + [anon_sym_LBRACE] = ACTIONS(12138), + [anon_sym_RBRACE] = ACTIONS(12138), + [anon_sym_LPAREN] = ACTIONS(12138), + [anon_sym_COMMA] = ACTIONS(12138), + [anon_sym_EQ] = ACTIONS(12138), + [sym_word] = ACTIONS(12138), + [sym_param] = ACTIONS(12138), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12138), + [anon_sym_DOLLAR] = ACTIONS(12140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12138), + [anon_sym_BSLASHbegin] = ACTIONS(12140), + [anon_sym_BSLASHcaption] = ACTIONS(12140), + [anon_sym_BSLASHcite] = ACTIONS(12140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCite] = ACTIONS(12140), + [anon_sym_BSLASHnocite] = ACTIONS(12140), + [anon_sym_BSLASHcitet] = ACTIONS(12140), + [anon_sym_BSLASHcitep] = ACTIONS(12140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteauthor] = ACTIONS(12140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitetitle] = ACTIONS(12140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteyear] = ACTIONS(12140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitedate] = ACTIONS(12140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteurl] = ACTIONS(12140), + [anon_sym_BSLASHfullcite] = ACTIONS(12140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12140), + [anon_sym_BSLASHcitealt] = ACTIONS(12140), + [anon_sym_BSLASHcitealp] = ACTIONS(12140), + [anon_sym_BSLASHcitetext] = ACTIONS(12140), + [anon_sym_BSLASHparencite] = ACTIONS(12140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHParencite] = ACTIONS(12140), + [anon_sym_BSLASHfootcite] = ACTIONS(12140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12140), + [anon_sym_BSLASHtextcite] = ACTIONS(12140), + [anon_sym_BSLASHTextcite] = ACTIONS(12140), + [anon_sym_BSLASHsmartcite] = ACTIONS(12140), + [anon_sym_BSLASHSmartcite] = ACTIONS(12140), + [anon_sym_BSLASHsupercite] = ACTIONS(12140), + [anon_sym_BSLASHautocite] = ACTIONS(12140), + [anon_sym_BSLASHAutocite] = ACTIONS(12140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHvolcite] = ACTIONS(12140), + [anon_sym_BSLASHVolcite] = ACTIONS(12140), + [anon_sym_BSLASHpvolcite] = ACTIONS(12140), + [anon_sym_BSLASHPvolcite] = ACTIONS(12140), + [anon_sym_BSLASHfvolcite] = ACTIONS(12140), + [anon_sym_BSLASHftvolcite] = ACTIONS(12140), + [anon_sym_BSLASHsvolcite] = ACTIONS(12140), + [anon_sym_BSLASHSvolcite] = ACTIONS(12140), + [anon_sym_BSLASHtvolcite] = ACTIONS(12140), + [anon_sym_BSLASHTvolcite] = ACTIONS(12140), + [anon_sym_BSLASHavolcite] = ACTIONS(12140), + [anon_sym_BSLASHAvolcite] = ACTIONS(12140), + [anon_sym_BSLASHnotecite] = ACTIONS(12140), + [anon_sym_BSLASHpnotecite] = ACTIONS(12140), + [anon_sym_BSLASHPnotecite] = ACTIONS(12140), + [anon_sym_BSLASHfnotecite] = ACTIONS(12140), + [anon_sym_BSLASHusepackage] = ACTIONS(12140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12140), + [anon_sym_BSLASHinclude] = ACTIONS(12140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12140), + [anon_sym_BSLASHinput] = ACTIONS(12140), + [anon_sym_BSLASHsubfile] = ACTIONS(12140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12140), + [anon_sym_BSLASHbibliography] = ACTIONS(12140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12140), + [anon_sym_BSLASHincludesvg] = ACTIONS(12140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12140), + [anon_sym_BSLASHimport] = ACTIONS(12140), + [anon_sym_BSLASHsubimport] = ACTIONS(12140), + [anon_sym_BSLASHinputfrom] = ACTIONS(12140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12140), + [anon_sym_BSLASHincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHlabel] = ACTIONS(12140), + [anon_sym_BSLASHref] = ACTIONS(12140), + [anon_sym_BSLASHvref] = ACTIONS(12140), + [anon_sym_BSLASHVref] = ACTIONS(12140), + [anon_sym_BSLASHautoref] = ACTIONS(12140), + [anon_sym_BSLASHpageref] = ACTIONS(12140), + [anon_sym_BSLASHcref] = ACTIONS(12140), + [anon_sym_BSLASHCref] = ACTIONS(12140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnameCref] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHlabelcref] = ACTIONS(12140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12140), + [anon_sym_BSLASHeqref] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange] = ACTIONS(12140), + [anon_sym_BSLASHCrefrange] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewlabel] = ACTIONS(12140), + [anon_sym_BSLASHnewcommand] = ACTIONS(12140), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12140), + [anon_sym_BSLASHgls] = ACTIONS(12140), + [anon_sym_BSLASHGls] = ACTIONS(12140), + [anon_sym_BSLASHGLS] = ACTIONS(12140), + [anon_sym_BSLASHglspl] = ACTIONS(12140), + [anon_sym_BSLASHGlspl] = ACTIONS(12140), + [anon_sym_BSLASHGLSpl] = ACTIONS(12140), + [anon_sym_BSLASHglsdisp] = ACTIONS(12140), + [anon_sym_BSLASHglslink] = ACTIONS(12140), + [anon_sym_BSLASHglstext] = ACTIONS(12140), + [anon_sym_BSLASHGlstext] = ACTIONS(12140), + [anon_sym_BSLASHGLStext] = ACTIONS(12140), + [anon_sym_BSLASHglsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12140), + [anon_sym_BSLASHglsplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSplural] = ACTIONS(12140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHglsname] = ACTIONS(12140), + [anon_sym_BSLASHGlsname] = ACTIONS(12140), + [anon_sym_BSLASHGLSname] = ACTIONS(12140), + [anon_sym_BSLASHglssymbol] = ACTIONS(12140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12140), + [anon_sym_BSLASHglsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12140), + [anon_sym_BSLASHglsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12140), + [anon_sym_BSLASHglsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12140), + [anon_sym_BSLASHglsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12140), + [anon_sym_BSLASHglsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12140), + [anon_sym_BSLASHnewacronym] = ACTIONS(12140), + [anon_sym_BSLASHacrshort] = ACTIONS(12140), + [anon_sym_BSLASHAcrshort] = ACTIONS(12140), + [anon_sym_BSLASHACRshort] = ACTIONS(12140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12140), + [anon_sym_BSLASHacrlong] = ACTIONS(12140), + [anon_sym_BSLASHAcrlong] = ACTIONS(12140), + [anon_sym_BSLASHACRlong] = ACTIONS(12140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12140), + [anon_sym_BSLASHacrfull] = ACTIONS(12140), + [anon_sym_BSLASHAcrfull] = ACTIONS(12140), + [anon_sym_BSLASHACRfull] = ACTIONS(12140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12140), + [anon_sym_BSLASHacs] = ACTIONS(12140), + [anon_sym_BSLASHAcs] = ACTIONS(12140), + [anon_sym_BSLASHacsp] = ACTIONS(12140), + [anon_sym_BSLASHAcsp] = ACTIONS(12140), + [anon_sym_BSLASHacl] = ACTIONS(12140), + [anon_sym_BSLASHAcl] = ACTIONS(12140), + [anon_sym_BSLASHaclp] = ACTIONS(12140), + [anon_sym_BSLASHAclp] = ACTIONS(12140), + [anon_sym_BSLASHacf] = ACTIONS(12140), + [anon_sym_BSLASHAcf] = ACTIONS(12140), + [anon_sym_BSLASHacfp] = ACTIONS(12140), + [anon_sym_BSLASHAcfp] = ACTIONS(12140), + [anon_sym_BSLASHac] = ACTIONS(12140), + [anon_sym_BSLASHAc] = ACTIONS(12140), + [anon_sym_BSLASHacp] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12140), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12140), + [anon_sym_BSLASHcolor] = ACTIONS(12140), + [anon_sym_BSLASHcolorbox] = ACTIONS(12140), + [anon_sym_BSLASHtextcolor] = ACTIONS(12140), + [anon_sym_BSLASHpagecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12140), + }, + [1506] = { + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(127), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [1507] = { + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(123), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [1508] = { + [sym_generic_command_name] = ACTIONS(12128), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subsubsection_token1] = ACTIONS(12128), + [aux_sym_paragraph_token1] = ACTIONS(12128), + [aux_sym_subparagraph_token1] = ACTIONS(12128), + [anon_sym_BSLASHitem] = ACTIONS(12128), + [anon_sym_LBRACK] = ACTIONS(12126), + [anon_sym_RBRACK] = ACTIONS(12126), + [anon_sym_LBRACE] = ACTIONS(12126), + [anon_sym_RBRACE] = ACTIONS(12126), + [anon_sym_LPAREN] = ACTIONS(12126), + [anon_sym_COMMA] = ACTIONS(12126), + [anon_sym_EQ] = ACTIONS(12126), + [sym_word] = ACTIONS(12126), + [sym_param] = ACTIONS(12126), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12126), + [anon_sym_DOLLAR] = ACTIONS(12128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12126), + [anon_sym_BSLASHbegin] = ACTIONS(12128), + [anon_sym_BSLASHcaption] = ACTIONS(12128), + [anon_sym_BSLASHcite] = ACTIONS(12128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCite] = ACTIONS(12128), + [anon_sym_BSLASHnocite] = ACTIONS(12128), + [anon_sym_BSLASHcitet] = ACTIONS(12128), + [anon_sym_BSLASHcitep] = ACTIONS(12128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteauthor] = ACTIONS(12128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitetitle] = ACTIONS(12128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteyear] = ACTIONS(12128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitedate] = ACTIONS(12128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteurl] = ACTIONS(12128), + [anon_sym_BSLASHfullcite] = ACTIONS(12128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12128), + [anon_sym_BSLASHcitealt] = ACTIONS(12128), + [anon_sym_BSLASHcitealp] = ACTIONS(12128), + [anon_sym_BSLASHcitetext] = ACTIONS(12128), + [anon_sym_BSLASHparencite] = ACTIONS(12128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHParencite] = ACTIONS(12128), + [anon_sym_BSLASHfootcite] = ACTIONS(12128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12128), + [anon_sym_BSLASHtextcite] = ACTIONS(12128), + [anon_sym_BSLASHTextcite] = ACTIONS(12128), + [anon_sym_BSLASHsmartcite] = ACTIONS(12128), + [anon_sym_BSLASHSmartcite] = ACTIONS(12128), + [anon_sym_BSLASHsupercite] = ACTIONS(12128), + [anon_sym_BSLASHautocite] = ACTIONS(12128), + [anon_sym_BSLASHAutocite] = ACTIONS(12128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHvolcite] = ACTIONS(12128), + [anon_sym_BSLASHVolcite] = ACTIONS(12128), + [anon_sym_BSLASHpvolcite] = ACTIONS(12128), + [anon_sym_BSLASHPvolcite] = ACTIONS(12128), + [anon_sym_BSLASHfvolcite] = ACTIONS(12128), + [anon_sym_BSLASHftvolcite] = ACTIONS(12128), + [anon_sym_BSLASHsvolcite] = ACTIONS(12128), + [anon_sym_BSLASHSvolcite] = ACTIONS(12128), + [anon_sym_BSLASHtvolcite] = ACTIONS(12128), + [anon_sym_BSLASHTvolcite] = ACTIONS(12128), + [anon_sym_BSLASHavolcite] = ACTIONS(12128), + [anon_sym_BSLASHAvolcite] = ACTIONS(12128), + [anon_sym_BSLASHnotecite] = ACTIONS(12128), + [anon_sym_BSLASHpnotecite] = ACTIONS(12128), + [anon_sym_BSLASHPnotecite] = ACTIONS(12128), + [anon_sym_BSLASHfnotecite] = ACTIONS(12128), + [anon_sym_BSLASHusepackage] = ACTIONS(12128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12128), + [anon_sym_BSLASHinclude] = ACTIONS(12128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12128), + [anon_sym_BSLASHinput] = ACTIONS(12128), + [anon_sym_BSLASHsubfile] = ACTIONS(12128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12128), + [anon_sym_BSLASHbibliography] = ACTIONS(12128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12128), + [anon_sym_BSLASHincludesvg] = ACTIONS(12128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12128), + [anon_sym_BSLASHimport] = ACTIONS(12128), + [anon_sym_BSLASHsubimport] = ACTIONS(12128), + [anon_sym_BSLASHinputfrom] = ACTIONS(12128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12128), + [anon_sym_BSLASHincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHlabel] = ACTIONS(12128), + [anon_sym_BSLASHref] = ACTIONS(12128), + [anon_sym_BSLASHvref] = ACTIONS(12128), + [anon_sym_BSLASHVref] = ACTIONS(12128), + [anon_sym_BSLASHautoref] = ACTIONS(12128), + [anon_sym_BSLASHpageref] = ACTIONS(12128), + [anon_sym_BSLASHcref] = ACTIONS(12128), + [anon_sym_BSLASHCref] = ACTIONS(12128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnameCref] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHlabelcref] = ACTIONS(12128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12128), + [anon_sym_BSLASHeqref] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange] = ACTIONS(12128), + [anon_sym_BSLASHCrefrange] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewlabel] = ACTIONS(12128), + [anon_sym_BSLASHnewcommand] = ACTIONS(12128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12128), + [anon_sym_BSLASHgls] = ACTIONS(12128), + [anon_sym_BSLASHGls] = ACTIONS(12128), + [anon_sym_BSLASHGLS] = ACTIONS(12128), + [anon_sym_BSLASHglspl] = ACTIONS(12128), + [anon_sym_BSLASHGlspl] = ACTIONS(12128), + [anon_sym_BSLASHGLSpl] = ACTIONS(12128), + [anon_sym_BSLASHglsdisp] = ACTIONS(12128), + [anon_sym_BSLASHglslink] = ACTIONS(12128), + [anon_sym_BSLASHglstext] = ACTIONS(12128), + [anon_sym_BSLASHGlstext] = ACTIONS(12128), + [anon_sym_BSLASHGLStext] = ACTIONS(12128), + [anon_sym_BSLASHglsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12128), + [anon_sym_BSLASHglsplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSplural] = ACTIONS(12128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHglsname] = ACTIONS(12128), + [anon_sym_BSLASHGlsname] = ACTIONS(12128), + [anon_sym_BSLASHGLSname] = ACTIONS(12128), + [anon_sym_BSLASHglssymbol] = ACTIONS(12128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12128), + [anon_sym_BSLASHglsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12128), + [anon_sym_BSLASHglsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12128), + [anon_sym_BSLASHglsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12128), + [anon_sym_BSLASHglsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12128), + [anon_sym_BSLASHglsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12128), + [anon_sym_BSLASHnewacronym] = ACTIONS(12128), + [anon_sym_BSLASHacrshort] = ACTIONS(12128), + [anon_sym_BSLASHAcrshort] = ACTIONS(12128), + [anon_sym_BSLASHACRshort] = ACTIONS(12128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12128), + [anon_sym_BSLASHacrlong] = ACTIONS(12128), + [anon_sym_BSLASHAcrlong] = ACTIONS(12128), + [anon_sym_BSLASHACRlong] = ACTIONS(12128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12128), + [anon_sym_BSLASHacrfull] = ACTIONS(12128), + [anon_sym_BSLASHAcrfull] = ACTIONS(12128), + [anon_sym_BSLASHACRfull] = ACTIONS(12128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12128), + [anon_sym_BSLASHacs] = ACTIONS(12128), + [anon_sym_BSLASHAcs] = ACTIONS(12128), + [anon_sym_BSLASHacsp] = ACTIONS(12128), + [anon_sym_BSLASHAcsp] = ACTIONS(12128), + [anon_sym_BSLASHacl] = ACTIONS(12128), + [anon_sym_BSLASHAcl] = ACTIONS(12128), + [anon_sym_BSLASHaclp] = ACTIONS(12128), + [anon_sym_BSLASHAclp] = ACTIONS(12128), + [anon_sym_BSLASHacf] = ACTIONS(12128), + [anon_sym_BSLASHAcf] = ACTIONS(12128), + [anon_sym_BSLASHacfp] = ACTIONS(12128), + [anon_sym_BSLASHAcfp] = ACTIONS(12128), + [anon_sym_BSLASHac] = ACTIONS(12128), + [anon_sym_BSLASHAc] = ACTIONS(12128), + [anon_sym_BSLASHacp] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12128), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12128), + [anon_sym_BSLASHcolor] = ACTIONS(12128), + [anon_sym_BSLASHcolorbox] = ACTIONS(12128), + [anon_sym_BSLASHtextcolor] = ACTIONS(12128), + [anon_sym_BSLASHpagecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12128), + }, + [1509] = { + [sym_generic_command_name] = ACTIONS(12493), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12493), + [aux_sym_subparagraph_token1] = ACTIONS(12493), + [anon_sym_BSLASHitem] = ACTIONS(12493), + [anon_sym_LBRACK] = ACTIONS(12491), + [anon_sym_RBRACK] = ACTIONS(12491), + [anon_sym_LBRACE] = ACTIONS(12491), + [anon_sym_RBRACE] = ACTIONS(12491), + [anon_sym_LPAREN] = ACTIONS(12491), + [anon_sym_COMMA] = ACTIONS(12491), + [anon_sym_EQ] = ACTIONS(12491), + [sym_word] = ACTIONS(12491), + [sym_param] = ACTIONS(12491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12491), + [anon_sym_DOLLAR] = ACTIONS(12493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12491), + [anon_sym_BSLASHbegin] = ACTIONS(12493), + [anon_sym_BSLASHcaption] = ACTIONS(12493), + [anon_sym_BSLASHcite] = ACTIONS(12493), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCite] = ACTIONS(12493), + [anon_sym_BSLASHnocite] = ACTIONS(12493), + [anon_sym_BSLASHcitet] = ACTIONS(12493), + [anon_sym_BSLASHcitep] = ACTIONS(12493), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteauthor] = ACTIONS(12493), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12493), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitetitle] = ACTIONS(12493), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteyear] = ACTIONS(12493), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitedate] = ACTIONS(12493), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteurl] = ACTIONS(12493), + [anon_sym_BSLASHfullcite] = ACTIONS(12493), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12493), + [anon_sym_BSLASHcitealt] = ACTIONS(12493), + [anon_sym_BSLASHcitealp] = ACTIONS(12493), + [anon_sym_BSLASHcitetext] = ACTIONS(12493), + [anon_sym_BSLASHparencite] = ACTIONS(12493), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHParencite] = ACTIONS(12493), + [anon_sym_BSLASHfootcite] = ACTIONS(12493), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12493), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12493), + [anon_sym_BSLASHtextcite] = ACTIONS(12493), + [anon_sym_BSLASHTextcite] = ACTIONS(12493), + [anon_sym_BSLASHsmartcite] = ACTIONS(12493), + [anon_sym_BSLASHSmartcite] = ACTIONS(12493), + [anon_sym_BSLASHsupercite] = ACTIONS(12493), + [anon_sym_BSLASHautocite] = ACTIONS(12493), + [anon_sym_BSLASHAutocite] = ACTIONS(12493), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHvolcite] = ACTIONS(12493), + [anon_sym_BSLASHVolcite] = ACTIONS(12493), + [anon_sym_BSLASHpvolcite] = ACTIONS(12493), + [anon_sym_BSLASHPvolcite] = ACTIONS(12493), + [anon_sym_BSLASHfvolcite] = ACTIONS(12493), + [anon_sym_BSLASHftvolcite] = ACTIONS(12493), + [anon_sym_BSLASHsvolcite] = ACTIONS(12493), + [anon_sym_BSLASHSvolcite] = ACTIONS(12493), + [anon_sym_BSLASHtvolcite] = ACTIONS(12493), + [anon_sym_BSLASHTvolcite] = ACTIONS(12493), + [anon_sym_BSLASHavolcite] = ACTIONS(12493), + [anon_sym_BSLASHAvolcite] = ACTIONS(12493), + [anon_sym_BSLASHnotecite] = ACTIONS(12493), + [anon_sym_BSLASHpnotecite] = ACTIONS(12493), + [anon_sym_BSLASHPnotecite] = ACTIONS(12493), + [anon_sym_BSLASHfnotecite] = ACTIONS(12493), + [anon_sym_BSLASHusepackage] = ACTIONS(12493), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12493), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12493), + [anon_sym_BSLASHinclude] = ACTIONS(12493), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12493), + [anon_sym_BSLASHinput] = ACTIONS(12493), + [anon_sym_BSLASHsubfile] = ACTIONS(12493), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12493), + [anon_sym_BSLASHbibliography] = ACTIONS(12493), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12493), + [anon_sym_BSLASHincludesvg] = ACTIONS(12493), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12493), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12493), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12493), + [anon_sym_BSLASHimport] = ACTIONS(12493), + [anon_sym_BSLASHsubimport] = ACTIONS(12493), + [anon_sym_BSLASHinputfrom] = ACTIONS(12493), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12493), + [anon_sym_BSLASHincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHlabel] = ACTIONS(12493), + [anon_sym_BSLASHref] = ACTIONS(12493), + [anon_sym_BSLASHvref] = ACTIONS(12493), + [anon_sym_BSLASHVref] = ACTIONS(12493), + [anon_sym_BSLASHautoref] = ACTIONS(12493), + [anon_sym_BSLASHpageref] = ACTIONS(12493), + [anon_sym_BSLASHcref] = ACTIONS(12493), + [anon_sym_BSLASHCref] = ACTIONS(12493), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnameCref] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHlabelcref] = ACTIONS(12493), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12493), + [anon_sym_BSLASHeqref] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange] = ACTIONS(12493), + [anon_sym_BSLASHCrefrange] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewlabel] = ACTIONS(12493), + [anon_sym_BSLASHnewcommand] = ACTIONS(12493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12493), + [anon_sym_BSLASHgls] = ACTIONS(12493), + [anon_sym_BSLASHGls] = ACTIONS(12493), + [anon_sym_BSLASHGLS] = ACTIONS(12493), + [anon_sym_BSLASHglspl] = ACTIONS(12493), + [anon_sym_BSLASHGlspl] = ACTIONS(12493), + [anon_sym_BSLASHGLSpl] = ACTIONS(12493), + [anon_sym_BSLASHglsdisp] = ACTIONS(12493), + [anon_sym_BSLASHglslink] = ACTIONS(12493), + [anon_sym_BSLASHglstext] = ACTIONS(12493), + [anon_sym_BSLASHGlstext] = ACTIONS(12493), + [anon_sym_BSLASHGLStext] = ACTIONS(12493), + [anon_sym_BSLASHglsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12493), + [anon_sym_BSLASHglsplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSplural] = ACTIONS(12493), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHglsname] = ACTIONS(12493), + [anon_sym_BSLASHGlsname] = ACTIONS(12493), + [anon_sym_BSLASHGLSname] = ACTIONS(12493), + [anon_sym_BSLASHglssymbol] = ACTIONS(12493), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12493), + [anon_sym_BSLASHglsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12493), + [anon_sym_BSLASHglsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12493), + [anon_sym_BSLASHglsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12493), + [anon_sym_BSLASHglsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12493), + [anon_sym_BSLASHglsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12493), + [anon_sym_BSLASHnewacronym] = ACTIONS(12493), + [anon_sym_BSLASHacrshort] = ACTIONS(12493), + [anon_sym_BSLASHAcrshort] = ACTIONS(12493), + [anon_sym_BSLASHACRshort] = ACTIONS(12493), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12493), + [anon_sym_BSLASHacrlong] = ACTIONS(12493), + [anon_sym_BSLASHAcrlong] = ACTIONS(12493), + [anon_sym_BSLASHACRlong] = ACTIONS(12493), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12493), + [anon_sym_BSLASHacrfull] = ACTIONS(12493), + [anon_sym_BSLASHAcrfull] = ACTIONS(12493), + [anon_sym_BSLASHACRfull] = ACTIONS(12493), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12493), + [anon_sym_BSLASHacs] = ACTIONS(12493), + [anon_sym_BSLASHAcs] = ACTIONS(12493), + [anon_sym_BSLASHacsp] = ACTIONS(12493), + [anon_sym_BSLASHAcsp] = ACTIONS(12493), + [anon_sym_BSLASHacl] = ACTIONS(12493), + [anon_sym_BSLASHAcl] = ACTIONS(12493), + [anon_sym_BSLASHaclp] = ACTIONS(12493), + [anon_sym_BSLASHAclp] = ACTIONS(12493), + [anon_sym_BSLASHacf] = ACTIONS(12493), + [anon_sym_BSLASHAcf] = ACTIONS(12493), + [anon_sym_BSLASHacfp] = ACTIONS(12493), + [anon_sym_BSLASHAcfp] = ACTIONS(12493), + [anon_sym_BSLASHac] = ACTIONS(12493), + [anon_sym_BSLASHAc] = ACTIONS(12493), + [anon_sym_BSLASHacp] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12493), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12493), + [anon_sym_BSLASHcolor] = ACTIONS(12493), + [anon_sym_BSLASHcolorbox] = ACTIONS(12493), + [anon_sym_BSLASHtextcolor] = ACTIONS(12493), + [anon_sym_BSLASHpagecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12493), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12493), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12493), + }, + [1510] = { + [sym_generic_command_name] = ACTIONS(12323), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12323), + [aux_sym_subparagraph_token1] = ACTIONS(12323), + [anon_sym_BSLASHitem] = ACTIONS(12323), + [anon_sym_LBRACK] = ACTIONS(12321), + [anon_sym_RBRACK] = ACTIONS(12321), + [anon_sym_LBRACE] = ACTIONS(12321), + [anon_sym_RBRACE] = ACTIONS(12321), + [anon_sym_LPAREN] = ACTIONS(12321), + [anon_sym_COMMA] = ACTIONS(12321), + [anon_sym_EQ] = ACTIONS(12321), + [sym_word] = ACTIONS(12321), + [sym_param] = ACTIONS(12321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12321), + [anon_sym_DOLLAR] = ACTIONS(12323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12321), + [anon_sym_BSLASHbegin] = ACTIONS(12323), + [anon_sym_BSLASHcaption] = ACTIONS(12323), + [anon_sym_BSLASHcite] = ACTIONS(12323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCite] = ACTIONS(12323), + [anon_sym_BSLASHnocite] = ACTIONS(12323), + [anon_sym_BSLASHcitet] = ACTIONS(12323), + [anon_sym_BSLASHcitep] = ACTIONS(12323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteauthor] = ACTIONS(12323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitetitle] = ACTIONS(12323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteyear] = ACTIONS(12323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitedate] = ACTIONS(12323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteurl] = ACTIONS(12323), + [anon_sym_BSLASHfullcite] = ACTIONS(12323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12323), + [anon_sym_BSLASHcitealt] = ACTIONS(12323), + [anon_sym_BSLASHcitealp] = ACTIONS(12323), + [anon_sym_BSLASHcitetext] = ACTIONS(12323), + [anon_sym_BSLASHparencite] = ACTIONS(12323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHParencite] = ACTIONS(12323), + [anon_sym_BSLASHfootcite] = ACTIONS(12323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12323), + [anon_sym_BSLASHtextcite] = ACTIONS(12323), + [anon_sym_BSLASHTextcite] = ACTIONS(12323), + [anon_sym_BSLASHsmartcite] = ACTIONS(12323), + [anon_sym_BSLASHSmartcite] = ACTIONS(12323), + [anon_sym_BSLASHsupercite] = ACTIONS(12323), + [anon_sym_BSLASHautocite] = ACTIONS(12323), + [anon_sym_BSLASHAutocite] = ACTIONS(12323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHvolcite] = ACTIONS(12323), + [anon_sym_BSLASHVolcite] = ACTIONS(12323), + [anon_sym_BSLASHpvolcite] = ACTIONS(12323), + [anon_sym_BSLASHPvolcite] = ACTIONS(12323), + [anon_sym_BSLASHfvolcite] = ACTIONS(12323), + [anon_sym_BSLASHftvolcite] = ACTIONS(12323), + [anon_sym_BSLASHsvolcite] = ACTIONS(12323), + [anon_sym_BSLASHSvolcite] = ACTIONS(12323), + [anon_sym_BSLASHtvolcite] = ACTIONS(12323), + [anon_sym_BSLASHTvolcite] = ACTIONS(12323), + [anon_sym_BSLASHavolcite] = ACTIONS(12323), + [anon_sym_BSLASHAvolcite] = ACTIONS(12323), + [anon_sym_BSLASHnotecite] = ACTIONS(12323), + [anon_sym_BSLASHpnotecite] = ACTIONS(12323), + [anon_sym_BSLASHPnotecite] = ACTIONS(12323), + [anon_sym_BSLASHfnotecite] = ACTIONS(12323), + [anon_sym_BSLASHusepackage] = ACTIONS(12323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12323), + [anon_sym_BSLASHinclude] = ACTIONS(12323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12323), + [anon_sym_BSLASHinput] = ACTIONS(12323), + [anon_sym_BSLASHsubfile] = ACTIONS(12323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12323), + [anon_sym_BSLASHbibliography] = ACTIONS(12323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12323), + [anon_sym_BSLASHincludesvg] = ACTIONS(12323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12323), + [anon_sym_BSLASHimport] = ACTIONS(12323), + [anon_sym_BSLASHsubimport] = ACTIONS(12323), + [anon_sym_BSLASHinputfrom] = ACTIONS(12323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12323), + [anon_sym_BSLASHincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHlabel] = ACTIONS(12323), + [anon_sym_BSLASHref] = ACTIONS(12323), + [anon_sym_BSLASHvref] = ACTIONS(12323), + [anon_sym_BSLASHVref] = ACTIONS(12323), + [anon_sym_BSLASHautoref] = ACTIONS(12323), + [anon_sym_BSLASHpageref] = ACTIONS(12323), + [anon_sym_BSLASHcref] = ACTIONS(12323), + [anon_sym_BSLASHCref] = ACTIONS(12323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnameCref] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHlabelcref] = ACTIONS(12323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12323), + [anon_sym_BSLASHeqref] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange] = ACTIONS(12323), + [anon_sym_BSLASHCrefrange] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewlabel] = ACTIONS(12323), + [anon_sym_BSLASHnewcommand] = ACTIONS(12323), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12323), + [anon_sym_BSLASHgls] = ACTIONS(12323), + [anon_sym_BSLASHGls] = ACTIONS(12323), + [anon_sym_BSLASHGLS] = ACTIONS(12323), + [anon_sym_BSLASHglspl] = ACTIONS(12323), + [anon_sym_BSLASHGlspl] = ACTIONS(12323), + [anon_sym_BSLASHGLSpl] = ACTIONS(12323), + [anon_sym_BSLASHglsdisp] = ACTIONS(12323), + [anon_sym_BSLASHglslink] = ACTIONS(12323), + [anon_sym_BSLASHglstext] = ACTIONS(12323), + [anon_sym_BSLASHGlstext] = ACTIONS(12323), + [anon_sym_BSLASHGLStext] = ACTIONS(12323), + [anon_sym_BSLASHglsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12323), + [anon_sym_BSLASHglsplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSplural] = ACTIONS(12323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHglsname] = ACTIONS(12323), + [anon_sym_BSLASHGlsname] = ACTIONS(12323), + [anon_sym_BSLASHGLSname] = ACTIONS(12323), + [anon_sym_BSLASHglssymbol] = ACTIONS(12323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12323), + [anon_sym_BSLASHglsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12323), + [anon_sym_BSLASHglsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12323), + [anon_sym_BSLASHglsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12323), + [anon_sym_BSLASHglsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12323), + [anon_sym_BSLASHglsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12323), + [anon_sym_BSLASHnewacronym] = ACTIONS(12323), + [anon_sym_BSLASHacrshort] = ACTIONS(12323), + [anon_sym_BSLASHAcrshort] = ACTIONS(12323), + [anon_sym_BSLASHACRshort] = ACTIONS(12323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12323), + [anon_sym_BSLASHacrlong] = ACTIONS(12323), + [anon_sym_BSLASHAcrlong] = ACTIONS(12323), + [anon_sym_BSLASHACRlong] = ACTIONS(12323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12323), + [anon_sym_BSLASHacrfull] = ACTIONS(12323), + [anon_sym_BSLASHAcrfull] = ACTIONS(12323), + [anon_sym_BSLASHACRfull] = ACTIONS(12323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12323), + [anon_sym_BSLASHacs] = ACTIONS(12323), + [anon_sym_BSLASHAcs] = ACTIONS(12323), + [anon_sym_BSLASHacsp] = ACTIONS(12323), + [anon_sym_BSLASHAcsp] = ACTIONS(12323), + [anon_sym_BSLASHacl] = ACTIONS(12323), + [anon_sym_BSLASHAcl] = ACTIONS(12323), + [anon_sym_BSLASHaclp] = ACTIONS(12323), + [anon_sym_BSLASHAclp] = ACTIONS(12323), + [anon_sym_BSLASHacf] = ACTIONS(12323), + [anon_sym_BSLASHAcf] = ACTIONS(12323), + [anon_sym_BSLASHacfp] = ACTIONS(12323), + [anon_sym_BSLASHAcfp] = ACTIONS(12323), + [anon_sym_BSLASHac] = ACTIONS(12323), + [anon_sym_BSLASHAc] = ACTIONS(12323), + [anon_sym_BSLASHacp] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12323), + [anon_sym_BSLASHcolor] = ACTIONS(12323), + [anon_sym_BSLASHcolorbox] = ACTIONS(12323), + [anon_sym_BSLASHtextcolor] = ACTIONS(12323), + [anon_sym_BSLASHpagecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12323), + }, + [1511] = { + [sym__text_fragment] = STATE(1511), + [aux_sym_text_repeat1] = STATE(1511), + [sym_generic_command_name] = ACTIONS(12021), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12021), + [anon_sym_LBRACK] = ACTIONS(12019), + [anon_sym_RBRACK] = ACTIONS(12019), + [anon_sym_LBRACE] = ACTIONS(12019), + [anon_sym_RBRACE] = ACTIONS(12019), + [anon_sym_LPAREN] = ACTIONS(12019), + [anon_sym_COMMA] = ACTIONS(12769), + [anon_sym_EQ] = ACTIONS(12769), + [sym_word] = ACTIONS(12769), + [sym_param] = ACTIONS(12019), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12019), + [anon_sym_DOLLAR] = ACTIONS(12021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12019), + [anon_sym_BSLASHbegin] = ACTIONS(12021), + [anon_sym_BSLASHcaption] = ACTIONS(12021), + [anon_sym_BSLASHcite] = ACTIONS(12021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCite] = ACTIONS(12021), + [anon_sym_BSLASHnocite] = ACTIONS(12021), + [anon_sym_BSLASHcitet] = ACTIONS(12021), + [anon_sym_BSLASHcitep] = ACTIONS(12021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteauthor] = ACTIONS(12021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitetitle] = ACTIONS(12021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteyear] = ACTIONS(12021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitedate] = ACTIONS(12021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteurl] = ACTIONS(12021), + [anon_sym_BSLASHfullcite] = ACTIONS(12021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12021), + [anon_sym_BSLASHcitealt] = ACTIONS(12021), + [anon_sym_BSLASHcitealp] = ACTIONS(12021), + [anon_sym_BSLASHcitetext] = ACTIONS(12021), + [anon_sym_BSLASHparencite] = ACTIONS(12021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHParencite] = ACTIONS(12021), + [anon_sym_BSLASHfootcite] = ACTIONS(12021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12021), + [anon_sym_BSLASHtextcite] = ACTIONS(12021), + [anon_sym_BSLASHTextcite] = ACTIONS(12021), + [anon_sym_BSLASHsmartcite] = ACTIONS(12021), + [anon_sym_BSLASHSmartcite] = ACTIONS(12021), + [anon_sym_BSLASHsupercite] = ACTIONS(12021), + [anon_sym_BSLASHautocite] = ACTIONS(12021), + [anon_sym_BSLASHAutocite] = ACTIONS(12021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHvolcite] = ACTIONS(12021), + [anon_sym_BSLASHVolcite] = ACTIONS(12021), + [anon_sym_BSLASHpvolcite] = ACTIONS(12021), + [anon_sym_BSLASHPvolcite] = ACTIONS(12021), + [anon_sym_BSLASHfvolcite] = ACTIONS(12021), + [anon_sym_BSLASHftvolcite] = ACTIONS(12021), + [anon_sym_BSLASHsvolcite] = ACTIONS(12021), + [anon_sym_BSLASHSvolcite] = ACTIONS(12021), + [anon_sym_BSLASHtvolcite] = ACTIONS(12021), + [anon_sym_BSLASHTvolcite] = ACTIONS(12021), + [anon_sym_BSLASHavolcite] = ACTIONS(12021), + [anon_sym_BSLASHAvolcite] = ACTIONS(12021), + [anon_sym_BSLASHnotecite] = ACTIONS(12021), + [anon_sym_BSLASHpnotecite] = ACTIONS(12021), + [anon_sym_BSLASHPnotecite] = ACTIONS(12021), + [anon_sym_BSLASHfnotecite] = ACTIONS(12021), + [anon_sym_BSLASHusepackage] = ACTIONS(12021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12021), + [anon_sym_BSLASHinclude] = ACTIONS(12021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12021), + [anon_sym_BSLASHinput] = ACTIONS(12021), + [anon_sym_BSLASHsubfile] = ACTIONS(12021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12021), + [anon_sym_BSLASHbibliography] = ACTIONS(12021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12021), + [anon_sym_BSLASHincludesvg] = ACTIONS(12021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12021), + [anon_sym_BSLASHimport] = ACTIONS(12021), + [anon_sym_BSLASHsubimport] = ACTIONS(12021), + [anon_sym_BSLASHinputfrom] = ACTIONS(12021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12021), + [anon_sym_BSLASHincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHlabel] = ACTIONS(12021), + [anon_sym_BSLASHref] = ACTIONS(12021), + [anon_sym_BSLASHvref] = ACTIONS(12021), + [anon_sym_BSLASHVref] = ACTIONS(12021), + [anon_sym_BSLASHautoref] = ACTIONS(12021), + [anon_sym_BSLASHpageref] = ACTIONS(12021), + [anon_sym_BSLASHcref] = ACTIONS(12021), + [anon_sym_BSLASHCref] = ACTIONS(12021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnameCref] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHlabelcref] = ACTIONS(12021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12021), + [anon_sym_BSLASHeqref] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange] = ACTIONS(12021), + [anon_sym_BSLASHCrefrange] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewlabel] = ACTIONS(12021), + [anon_sym_BSLASHnewcommand] = ACTIONS(12021), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12021), + [anon_sym_BSLASHgls] = ACTIONS(12021), + [anon_sym_BSLASHGls] = ACTIONS(12021), + [anon_sym_BSLASHGLS] = ACTIONS(12021), + [anon_sym_BSLASHglspl] = ACTIONS(12021), + [anon_sym_BSLASHGlspl] = ACTIONS(12021), + [anon_sym_BSLASHGLSpl] = ACTIONS(12021), + [anon_sym_BSLASHglsdisp] = ACTIONS(12021), + [anon_sym_BSLASHglslink] = ACTIONS(12021), + [anon_sym_BSLASHglstext] = ACTIONS(12021), + [anon_sym_BSLASHGlstext] = ACTIONS(12021), + [anon_sym_BSLASHGLStext] = ACTIONS(12021), + [anon_sym_BSLASHglsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12021), + [anon_sym_BSLASHglsplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSplural] = ACTIONS(12021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHglsname] = ACTIONS(12021), + [anon_sym_BSLASHGlsname] = ACTIONS(12021), + [anon_sym_BSLASHGLSname] = ACTIONS(12021), + [anon_sym_BSLASHglssymbol] = ACTIONS(12021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12021), + [anon_sym_BSLASHglsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12021), + [anon_sym_BSLASHglsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12021), + [anon_sym_BSLASHglsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12021), + [anon_sym_BSLASHglsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12021), + [anon_sym_BSLASHglsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12021), + [anon_sym_BSLASHnewacronym] = ACTIONS(12021), + [anon_sym_BSLASHacrshort] = ACTIONS(12021), + [anon_sym_BSLASHAcrshort] = ACTIONS(12021), + [anon_sym_BSLASHACRshort] = ACTIONS(12021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12021), + [anon_sym_BSLASHacrlong] = ACTIONS(12021), + [anon_sym_BSLASHAcrlong] = ACTIONS(12021), + [anon_sym_BSLASHACRlong] = ACTIONS(12021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12021), + [anon_sym_BSLASHacrfull] = ACTIONS(12021), + [anon_sym_BSLASHAcrfull] = ACTIONS(12021), + [anon_sym_BSLASHACRfull] = ACTIONS(12021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12021), + [anon_sym_BSLASHacs] = ACTIONS(12021), + [anon_sym_BSLASHAcs] = ACTIONS(12021), + [anon_sym_BSLASHacsp] = ACTIONS(12021), + [anon_sym_BSLASHAcsp] = ACTIONS(12021), + [anon_sym_BSLASHacl] = ACTIONS(12021), + [anon_sym_BSLASHAcl] = ACTIONS(12021), + [anon_sym_BSLASHaclp] = ACTIONS(12021), + [anon_sym_BSLASHAclp] = ACTIONS(12021), + [anon_sym_BSLASHacf] = ACTIONS(12021), + [anon_sym_BSLASHAcf] = ACTIONS(12021), + [anon_sym_BSLASHacfp] = ACTIONS(12021), + [anon_sym_BSLASHAcfp] = ACTIONS(12021), + [anon_sym_BSLASHac] = ACTIONS(12021), + [anon_sym_BSLASHAc] = ACTIONS(12021), + [anon_sym_BSLASHacp] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12021), + [anon_sym_BSLASHcolor] = ACTIONS(12021), + [anon_sym_BSLASHcolorbox] = ACTIONS(12021), + [anon_sym_BSLASHtextcolor] = ACTIONS(12021), + [anon_sym_BSLASHpagecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12021), + }, + [1512] = { + [sym_generic_command_name] = ACTIONS(12132), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12132), + [aux_sym_subparagraph_token1] = ACTIONS(12132), + [anon_sym_BSLASHitem] = ACTIONS(12132), + [anon_sym_LBRACK] = ACTIONS(12130), + [anon_sym_RBRACK] = ACTIONS(12130), + [anon_sym_LBRACE] = ACTIONS(12130), + [anon_sym_RBRACE] = ACTIONS(12130), + [anon_sym_LPAREN] = ACTIONS(12130), + [anon_sym_COMMA] = ACTIONS(12130), + [anon_sym_EQ] = ACTIONS(12130), + [sym_word] = ACTIONS(12130), + [sym_param] = ACTIONS(12130), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12130), + [anon_sym_DOLLAR] = ACTIONS(12132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12130), + [anon_sym_BSLASHbegin] = ACTIONS(12132), + [anon_sym_BSLASHcaption] = ACTIONS(12132), + [anon_sym_BSLASHcite] = ACTIONS(12132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCite] = ACTIONS(12132), + [anon_sym_BSLASHnocite] = ACTIONS(12132), + [anon_sym_BSLASHcitet] = ACTIONS(12132), + [anon_sym_BSLASHcitep] = ACTIONS(12132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteauthor] = ACTIONS(12132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitetitle] = ACTIONS(12132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteyear] = ACTIONS(12132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitedate] = ACTIONS(12132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteurl] = ACTIONS(12132), + [anon_sym_BSLASHfullcite] = ACTIONS(12132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12132), + [anon_sym_BSLASHcitealt] = ACTIONS(12132), + [anon_sym_BSLASHcitealp] = ACTIONS(12132), + [anon_sym_BSLASHcitetext] = ACTIONS(12132), + [anon_sym_BSLASHparencite] = ACTIONS(12132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHParencite] = ACTIONS(12132), + [anon_sym_BSLASHfootcite] = ACTIONS(12132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12132), + [anon_sym_BSLASHtextcite] = ACTIONS(12132), + [anon_sym_BSLASHTextcite] = ACTIONS(12132), + [anon_sym_BSLASHsmartcite] = ACTIONS(12132), + [anon_sym_BSLASHSmartcite] = ACTIONS(12132), + [anon_sym_BSLASHsupercite] = ACTIONS(12132), + [anon_sym_BSLASHautocite] = ACTIONS(12132), + [anon_sym_BSLASHAutocite] = ACTIONS(12132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHvolcite] = ACTIONS(12132), + [anon_sym_BSLASHVolcite] = ACTIONS(12132), + [anon_sym_BSLASHpvolcite] = ACTIONS(12132), + [anon_sym_BSLASHPvolcite] = ACTIONS(12132), + [anon_sym_BSLASHfvolcite] = ACTIONS(12132), + [anon_sym_BSLASHftvolcite] = ACTIONS(12132), + [anon_sym_BSLASHsvolcite] = ACTIONS(12132), + [anon_sym_BSLASHSvolcite] = ACTIONS(12132), + [anon_sym_BSLASHtvolcite] = ACTIONS(12132), + [anon_sym_BSLASHTvolcite] = ACTIONS(12132), + [anon_sym_BSLASHavolcite] = ACTIONS(12132), + [anon_sym_BSLASHAvolcite] = ACTIONS(12132), + [anon_sym_BSLASHnotecite] = ACTIONS(12132), + [anon_sym_BSLASHpnotecite] = ACTIONS(12132), + [anon_sym_BSLASHPnotecite] = ACTIONS(12132), + [anon_sym_BSLASHfnotecite] = ACTIONS(12132), + [anon_sym_BSLASHusepackage] = ACTIONS(12132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12132), + [anon_sym_BSLASHinclude] = ACTIONS(12132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12132), + [anon_sym_BSLASHinput] = ACTIONS(12132), + [anon_sym_BSLASHsubfile] = ACTIONS(12132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12132), + [anon_sym_BSLASHbibliography] = ACTIONS(12132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12132), + [anon_sym_BSLASHincludesvg] = ACTIONS(12132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12132), + [anon_sym_BSLASHimport] = ACTIONS(12132), + [anon_sym_BSLASHsubimport] = ACTIONS(12132), + [anon_sym_BSLASHinputfrom] = ACTIONS(12132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12132), + [anon_sym_BSLASHincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHlabel] = ACTIONS(12132), + [anon_sym_BSLASHref] = ACTIONS(12132), + [anon_sym_BSLASHvref] = ACTIONS(12132), + [anon_sym_BSLASHVref] = ACTIONS(12132), + [anon_sym_BSLASHautoref] = ACTIONS(12132), + [anon_sym_BSLASHpageref] = ACTIONS(12132), + [anon_sym_BSLASHcref] = ACTIONS(12132), + [anon_sym_BSLASHCref] = ACTIONS(12132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnameCref] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHlabelcref] = ACTIONS(12132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12132), + [anon_sym_BSLASHeqref] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange] = ACTIONS(12132), + [anon_sym_BSLASHCrefrange] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewlabel] = ACTIONS(12132), + [anon_sym_BSLASHnewcommand] = ACTIONS(12132), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12132), + [anon_sym_BSLASHgls] = ACTIONS(12132), + [anon_sym_BSLASHGls] = ACTIONS(12132), + [anon_sym_BSLASHGLS] = ACTIONS(12132), + [anon_sym_BSLASHglspl] = ACTIONS(12132), + [anon_sym_BSLASHGlspl] = ACTIONS(12132), + [anon_sym_BSLASHGLSpl] = ACTIONS(12132), + [anon_sym_BSLASHglsdisp] = ACTIONS(12132), + [anon_sym_BSLASHglslink] = ACTIONS(12132), + [anon_sym_BSLASHglstext] = ACTIONS(12132), + [anon_sym_BSLASHGlstext] = ACTIONS(12132), + [anon_sym_BSLASHGLStext] = ACTIONS(12132), + [anon_sym_BSLASHglsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12132), + [anon_sym_BSLASHglsplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSplural] = ACTIONS(12132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHglsname] = ACTIONS(12132), + [anon_sym_BSLASHGlsname] = ACTIONS(12132), + [anon_sym_BSLASHGLSname] = ACTIONS(12132), + [anon_sym_BSLASHglssymbol] = ACTIONS(12132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12132), + [anon_sym_BSLASHglsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12132), + [anon_sym_BSLASHglsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12132), + [anon_sym_BSLASHglsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12132), + [anon_sym_BSLASHglsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12132), + [anon_sym_BSLASHglsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12132), + [anon_sym_BSLASHnewacronym] = ACTIONS(12132), + [anon_sym_BSLASHacrshort] = ACTIONS(12132), + [anon_sym_BSLASHAcrshort] = ACTIONS(12132), + [anon_sym_BSLASHACRshort] = ACTIONS(12132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12132), + [anon_sym_BSLASHacrlong] = ACTIONS(12132), + [anon_sym_BSLASHAcrlong] = ACTIONS(12132), + [anon_sym_BSLASHACRlong] = ACTIONS(12132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12132), + [anon_sym_BSLASHacrfull] = ACTIONS(12132), + [anon_sym_BSLASHAcrfull] = ACTIONS(12132), + [anon_sym_BSLASHACRfull] = ACTIONS(12132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12132), + [anon_sym_BSLASHacs] = ACTIONS(12132), + [anon_sym_BSLASHAcs] = ACTIONS(12132), + [anon_sym_BSLASHacsp] = ACTIONS(12132), + [anon_sym_BSLASHAcsp] = ACTIONS(12132), + [anon_sym_BSLASHacl] = ACTIONS(12132), + [anon_sym_BSLASHAcl] = ACTIONS(12132), + [anon_sym_BSLASHaclp] = ACTIONS(12132), + [anon_sym_BSLASHAclp] = ACTIONS(12132), + [anon_sym_BSLASHacf] = ACTIONS(12132), + [anon_sym_BSLASHAcf] = ACTIONS(12132), + [anon_sym_BSLASHacfp] = ACTIONS(12132), + [anon_sym_BSLASHAcfp] = ACTIONS(12132), + [anon_sym_BSLASHac] = ACTIONS(12132), + [anon_sym_BSLASHAc] = ACTIONS(12132), + [anon_sym_BSLASHacp] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12132), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12132), + [anon_sym_BSLASHcolor] = ACTIONS(12132), + [anon_sym_BSLASHcolorbox] = ACTIONS(12132), + [anon_sym_BSLASHtextcolor] = ACTIONS(12132), + [anon_sym_BSLASHpagecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12132), + }, + [1513] = { + [sym__text_fragment] = STATE(1511), + [aux_sym_text_repeat1] = STATE(1511), + [sym_generic_command_name] = ACTIONS(12015), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12015), + [anon_sym_LBRACK] = ACTIONS(12013), + [anon_sym_RBRACK] = ACTIONS(12013), + [anon_sym_LBRACE] = ACTIONS(12013), + [anon_sym_RBRACE] = ACTIONS(12013), + [anon_sym_LPAREN] = ACTIONS(12013), + [anon_sym_COMMA] = ACTIONS(12772), + [anon_sym_EQ] = ACTIONS(12772), + [sym_word] = ACTIONS(12772), + [sym_param] = ACTIONS(12013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12013), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12013), + [anon_sym_DOLLAR] = ACTIONS(12015), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12013), + [anon_sym_BSLASHbegin] = ACTIONS(12015), + [anon_sym_BSLASHcaption] = ACTIONS(12015), + [anon_sym_BSLASHcite] = ACTIONS(12015), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCite] = ACTIONS(12015), + [anon_sym_BSLASHnocite] = ACTIONS(12015), + [anon_sym_BSLASHcitet] = ACTIONS(12015), + [anon_sym_BSLASHcitep] = ACTIONS(12015), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteauthor] = ACTIONS(12015), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12015), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitetitle] = ACTIONS(12015), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteyear] = ACTIONS(12015), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitedate] = ACTIONS(12015), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteurl] = ACTIONS(12015), + [anon_sym_BSLASHfullcite] = ACTIONS(12015), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12015), + [anon_sym_BSLASHcitealt] = ACTIONS(12015), + [anon_sym_BSLASHcitealp] = ACTIONS(12015), + [anon_sym_BSLASHcitetext] = ACTIONS(12015), + [anon_sym_BSLASHparencite] = ACTIONS(12015), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHParencite] = ACTIONS(12015), + [anon_sym_BSLASHfootcite] = ACTIONS(12015), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12015), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12015), + [anon_sym_BSLASHtextcite] = ACTIONS(12015), + [anon_sym_BSLASHTextcite] = ACTIONS(12015), + [anon_sym_BSLASHsmartcite] = ACTIONS(12015), + [anon_sym_BSLASHSmartcite] = ACTIONS(12015), + [anon_sym_BSLASHsupercite] = ACTIONS(12015), + [anon_sym_BSLASHautocite] = ACTIONS(12015), + [anon_sym_BSLASHAutocite] = ACTIONS(12015), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHvolcite] = ACTIONS(12015), + [anon_sym_BSLASHVolcite] = ACTIONS(12015), + [anon_sym_BSLASHpvolcite] = ACTIONS(12015), + [anon_sym_BSLASHPvolcite] = ACTIONS(12015), + [anon_sym_BSLASHfvolcite] = ACTIONS(12015), + [anon_sym_BSLASHftvolcite] = ACTIONS(12015), + [anon_sym_BSLASHsvolcite] = ACTIONS(12015), + [anon_sym_BSLASHSvolcite] = ACTIONS(12015), + [anon_sym_BSLASHtvolcite] = ACTIONS(12015), + [anon_sym_BSLASHTvolcite] = ACTIONS(12015), + [anon_sym_BSLASHavolcite] = ACTIONS(12015), + [anon_sym_BSLASHAvolcite] = ACTIONS(12015), + [anon_sym_BSLASHnotecite] = ACTIONS(12015), + [anon_sym_BSLASHpnotecite] = ACTIONS(12015), + [anon_sym_BSLASHPnotecite] = ACTIONS(12015), + [anon_sym_BSLASHfnotecite] = ACTIONS(12015), + [anon_sym_BSLASHusepackage] = ACTIONS(12015), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12015), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12015), + [anon_sym_BSLASHinclude] = ACTIONS(12015), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12015), + [anon_sym_BSLASHinput] = ACTIONS(12015), + [anon_sym_BSLASHsubfile] = ACTIONS(12015), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12015), + [anon_sym_BSLASHbibliography] = ACTIONS(12015), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12015), + [anon_sym_BSLASHincludesvg] = ACTIONS(12015), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12015), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12015), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12015), + [anon_sym_BSLASHimport] = ACTIONS(12015), + [anon_sym_BSLASHsubimport] = ACTIONS(12015), + [anon_sym_BSLASHinputfrom] = ACTIONS(12015), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12015), + [anon_sym_BSLASHincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHlabel] = ACTIONS(12015), + [anon_sym_BSLASHref] = ACTIONS(12015), + [anon_sym_BSLASHvref] = ACTIONS(12015), + [anon_sym_BSLASHVref] = ACTIONS(12015), + [anon_sym_BSLASHautoref] = ACTIONS(12015), + [anon_sym_BSLASHpageref] = ACTIONS(12015), + [anon_sym_BSLASHcref] = ACTIONS(12015), + [anon_sym_BSLASHCref] = ACTIONS(12015), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnameCref] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHlabelcref] = ACTIONS(12015), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12015), + [anon_sym_BSLASHeqref] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange] = ACTIONS(12015), + [anon_sym_BSLASHCrefrange] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewlabel] = ACTIONS(12015), + [anon_sym_BSLASHnewcommand] = ACTIONS(12015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12015), + [anon_sym_BSLASHgls] = ACTIONS(12015), + [anon_sym_BSLASHGls] = ACTIONS(12015), + [anon_sym_BSLASHGLS] = ACTIONS(12015), + [anon_sym_BSLASHglspl] = ACTIONS(12015), + [anon_sym_BSLASHGlspl] = ACTIONS(12015), + [anon_sym_BSLASHGLSpl] = ACTIONS(12015), + [anon_sym_BSLASHglsdisp] = ACTIONS(12015), + [anon_sym_BSLASHglslink] = ACTIONS(12015), + [anon_sym_BSLASHglstext] = ACTIONS(12015), + [anon_sym_BSLASHGlstext] = ACTIONS(12015), + [anon_sym_BSLASHGLStext] = ACTIONS(12015), + [anon_sym_BSLASHglsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12015), + [anon_sym_BSLASHglsplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSplural] = ACTIONS(12015), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHglsname] = ACTIONS(12015), + [anon_sym_BSLASHGlsname] = ACTIONS(12015), + [anon_sym_BSLASHGLSname] = ACTIONS(12015), + [anon_sym_BSLASHglssymbol] = ACTIONS(12015), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12015), + [anon_sym_BSLASHglsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12015), + [anon_sym_BSLASHglsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12015), + [anon_sym_BSLASHglsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12015), + [anon_sym_BSLASHglsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12015), + [anon_sym_BSLASHglsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12015), + [anon_sym_BSLASHnewacronym] = ACTIONS(12015), + [anon_sym_BSLASHacrshort] = ACTIONS(12015), + [anon_sym_BSLASHAcrshort] = ACTIONS(12015), + [anon_sym_BSLASHACRshort] = ACTIONS(12015), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12015), + [anon_sym_BSLASHacrlong] = ACTIONS(12015), + [anon_sym_BSLASHAcrlong] = ACTIONS(12015), + [anon_sym_BSLASHACRlong] = ACTIONS(12015), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12015), + [anon_sym_BSLASHacrfull] = ACTIONS(12015), + [anon_sym_BSLASHAcrfull] = ACTIONS(12015), + [anon_sym_BSLASHACRfull] = ACTIONS(12015), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12015), + [anon_sym_BSLASHacs] = ACTIONS(12015), + [anon_sym_BSLASHAcs] = ACTIONS(12015), + [anon_sym_BSLASHacsp] = ACTIONS(12015), + [anon_sym_BSLASHAcsp] = ACTIONS(12015), + [anon_sym_BSLASHacl] = ACTIONS(12015), + [anon_sym_BSLASHAcl] = ACTIONS(12015), + [anon_sym_BSLASHaclp] = ACTIONS(12015), + [anon_sym_BSLASHAclp] = ACTIONS(12015), + [anon_sym_BSLASHacf] = ACTIONS(12015), + [anon_sym_BSLASHAcf] = ACTIONS(12015), + [anon_sym_BSLASHacfp] = ACTIONS(12015), + [anon_sym_BSLASHAcfp] = ACTIONS(12015), + [anon_sym_BSLASHac] = ACTIONS(12015), + [anon_sym_BSLASHAc] = ACTIONS(12015), + [anon_sym_BSLASHacp] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12015), + [anon_sym_BSLASHcolor] = ACTIONS(12015), + [anon_sym_BSLASHcolorbox] = ACTIONS(12015), + [anon_sym_BSLASHtextcolor] = ACTIONS(12015), + [anon_sym_BSLASHpagecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12015), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12015), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12015), + }, + [1514] = { + [sym_brace_group] = STATE(2976), + [sym_generic_command_name] = ACTIONS(12054), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12054), + [anon_sym_BSLASHitem] = ACTIONS(12054), + [anon_sym_LBRACK] = ACTIONS(12052), + [anon_sym_RBRACK] = ACTIONS(12052), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12052), + [anon_sym_LPAREN] = ACTIONS(12052), + [anon_sym_COMMA] = ACTIONS(12052), + [anon_sym_EQ] = ACTIONS(12052), + [sym_word] = ACTIONS(12052), + [sym_param] = ACTIONS(12052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12052), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12052), + [anon_sym_DOLLAR] = ACTIONS(12054), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12052), + [anon_sym_BSLASHbegin] = ACTIONS(12054), + [anon_sym_BSLASHcaption] = ACTIONS(12054), + [anon_sym_BSLASHcite] = ACTIONS(12054), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCite] = ACTIONS(12054), + [anon_sym_BSLASHnocite] = ACTIONS(12054), + [anon_sym_BSLASHcitet] = ACTIONS(12054), + [anon_sym_BSLASHcitep] = ACTIONS(12054), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteauthor] = ACTIONS(12054), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12054), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitetitle] = ACTIONS(12054), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteyear] = ACTIONS(12054), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitedate] = ACTIONS(12054), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteurl] = ACTIONS(12054), + [anon_sym_BSLASHfullcite] = ACTIONS(12054), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12054), + [anon_sym_BSLASHcitealt] = ACTIONS(12054), + [anon_sym_BSLASHcitealp] = ACTIONS(12054), + [anon_sym_BSLASHcitetext] = ACTIONS(12054), + [anon_sym_BSLASHparencite] = ACTIONS(12054), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHParencite] = ACTIONS(12054), + [anon_sym_BSLASHfootcite] = ACTIONS(12054), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12054), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12054), + [anon_sym_BSLASHtextcite] = ACTIONS(12054), + [anon_sym_BSLASHTextcite] = ACTIONS(12054), + [anon_sym_BSLASHsmartcite] = ACTIONS(12054), + [anon_sym_BSLASHSmartcite] = ACTIONS(12054), + [anon_sym_BSLASHsupercite] = ACTIONS(12054), + [anon_sym_BSLASHautocite] = ACTIONS(12054), + [anon_sym_BSLASHAutocite] = ACTIONS(12054), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHvolcite] = ACTIONS(12054), + [anon_sym_BSLASHVolcite] = ACTIONS(12054), + [anon_sym_BSLASHpvolcite] = ACTIONS(12054), + [anon_sym_BSLASHPvolcite] = ACTIONS(12054), + [anon_sym_BSLASHfvolcite] = ACTIONS(12054), + [anon_sym_BSLASHftvolcite] = ACTIONS(12054), + [anon_sym_BSLASHsvolcite] = ACTIONS(12054), + [anon_sym_BSLASHSvolcite] = ACTIONS(12054), + [anon_sym_BSLASHtvolcite] = ACTIONS(12054), + [anon_sym_BSLASHTvolcite] = ACTIONS(12054), + [anon_sym_BSLASHavolcite] = ACTIONS(12054), + [anon_sym_BSLASHAvolcite] = ACTIONS(12054), + [anon_sym_BSLASHnotecite] = ACTIONS(12054), + [anon_sym_BSLASHpnotecite] = ACTIONS(12054), + [anon_sym_BSLASHPnotecite] = ACTIONS(12054), + [anon_sym_BSLASHfnotecite] = ACTIONS(12054), + [anon_sym_BSLASHusepackage] = ACTIONS(12054), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12054), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12054), + [anon_sym_BSLASHinclude] = ACTIONS(12054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12054), + [anon_sym_BSLASHinput] = ACTIONS(12054), + [anon_sym_BSLASHsubfile] = ACTIONS(12054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12054), + [anon_sym_BSLASHbibliography] = ACTIONS(12054), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12054), + [anon_sym_BSLASHincludesvg] = ACTIONS(12054), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12054), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12054), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12054), + [anon_sym_BSLASHimport] = ACTIONS(12054), + [anon_sym_BSLASHsubimport] = ACTIONS(12054), + [anon_sym_BSLASHinputfrom] = ACTIONS(12054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12054), + [anon_sym_BSLASHincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHlabel] = ACTIONS(12054), + [anon_sym_BSLASHref] = ACTIONS(12054), + [anon_sym_BSLASHvref] = ACTIONS(12054), + [anon_sym_BSLASHVref] = ACTIONS(12054), + [anon_sym_BSLASHautoref] = ACTIONS(12054), + [anon_sym_BSLASHpageref] = ACTIONS(12054), + [anon_sym_BSLASHcref] = ACTIONS(12054), + [anon_sym_BSLASHCref] = ACTIONS(12054), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnameCref] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHlabelcref] = ACTIONS(12054), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12054), + [anon_sym_BSLASHeqref] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange] = ACTIONS(12054), + [anon_sym_BSLASHCrefrange] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewlabel] = ACTIONS(12054), + [anon_sym_BSLASHnewcommand] = ACTIONS(12054), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12054), + [anon_sym_BSLASHgls] = ACTIONS(12054), + [anon_sym_BSLASHGls] = ACTIONS(12054), + [anon_sym_BSLASHGLS] = ACTIONS(12054), + [anon_sym_BSLASHglspl] = ACTIONS(12054), + [anon_sym_BSLASHGlspl] = ACTIONS(12054), + [anon_sym_BSLASHGLSpl] = ACTIONS(12054), + [anon_sym_BSLASHglsdisp] = ACTIONS(12054), + [anon_sym_BSLASHglslink] = ACTIONS(12054), + [anon_sym_BSLASHglstext] = ACTIONS(12054), + [anon_sym_BSLASHGlstext] = ACTIONS(12054), + [anon_sym_BSLASHGLStext] = ACTIONS(12054), + [anon_sym_BSLASHglsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12054), + [anon_sym_BSLASHglsplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSplural] = ACTIONS(12054), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHglsname] = ACTIONS(12054), + [anon_sym_BSLASHGlsname] = ACTIONS(12054), + [anon_sym_BSLASHGLSname] = ACTIONS(12054), + [anon_sym_BSLASHglssymbol] = ACTIONS(12054), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12054), + [anon_sym_BSLASHglsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12054), + [anon_sym_BSLASHglsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12054), + [anon_sym_BSLASHglsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12054), + [anon_sym_BSLASHglsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12054), + [anon_sym_BSLASHglsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12054), + [anon_sym_BSLASHnewacronym] = ACTIONS(12054), + [anon_sym_BSLASHacrshort] = ACTIONS(12054), + [anon_sym_BSLASHAcrshort] = ACTIONS(12054), + [anon_sym_BSLASHACRshort] = ACTIONS(12054), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12054), + [anon_sym_BSLASHacrlong] = ACTIONS(12054), + [anon_sym_BSLASHAcrlong] = ACTIONS(12054), + [anon_sym_BSLASHACRlong] = ACTIONS(12054), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12054), + [anon_sym_BSLASHacrfull] = ACTIONS(12054), + [anon_sym_BSLASHAcrfull] = ACTIONS(12054), + [anon_sym_BSLASHACRfull] = ACTIONS(12054), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12054), + [anon_sym_BSLASHacs] = ACTIONS(12054), + [anon_sym_BSLASHAcs] = ACTIONS(12054), + [anon_sym_BSLASHacsp] = ACTIONS(12054), + [anon_sym_BSLASHAcsp] = ACTIONS(12054), + [anon_sym_BSLASHacl] = ACTIONS(12054), + [anon_sym_BSLASHAcl] = ACTIONS(12054), + [anon_sym_BSLASHaclp] = ACTIONS(12054), + [anon_sym_BSLASHAclp] = ACTIONS(12054), + [anon_sym_BSLASHacf] = ACTIONS(12054), + [anon_sym_BSLASHAcf] = ACTIONS(12054), + [anon_sym_BSLASHacfp] = ACTIONS(12054), + [anon_sym_BSLASHAcfp] = ACTIONS(12054), + [anon_sym_BSLASHac] = ACTIONS(12054), + [anon_sym_BSLASHAc] = ACTIONS(12054), + [anon_sym_BSLASHacp] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12054), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12054), + [anon_sym_BSLASHcolor] = ACTIONS(12054), + [anon_sym_BSLASHcolorbox] = ACTIONS(12054), + [anon_sym_BSLASHtextcolor] = ACTIONS(12054), + [anon_sym_BSLASHpagecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12054), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12054), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12054), + }, + [1515] = { + [sym_brace_group] = STATE(2977), + [sym_generic_command_name] = ACTIONS(12088), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12088), + [anon_sym_BSLASHitem] = ACTIONS(12088), + [anon_sym_LBRACK] = ACTIONS(12086), + [anon_sym_RBRACK] = ACTIONS(12086), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12086), + [anon_sym_LPAREN] = ACTIONS(12086), + [anon_sym_COMMA] = ACTIONS(12086), + [anon_sym_EQ] = ACTIONS(12086), + [sym_word] = ACTIONS(12086), + [sym_param] = ACTIONS(12086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12086), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12086), + [anon_sym_DOLLAR] = ACTIONS(12088), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12086), + [anon_sym_BSLASHbegin] = ACTIONS(12088), + [anon_sym_BSLASHcaption] = ACTIONS(12088), + [anon_sym_BSLASHcite] = ACTIONS(12088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCite] = ACTIONS(12088), + [anon_sym_BSLASHnocite] = ACTIONS(12088), + [anon_sym_BSLASHcitet] = ACTIONS(12088), + [anon_sym_BSLASHcitep] = ACTIONS(12088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteauthor] = ACTIONS(12088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitetitle] = ACTIONS(12088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteyear] = ACTIONS(12088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitedate] = ACTIONS(12088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteurl] = ACTIONS(12088), + [anon_sym_BSLASHfullcite] = ACTIONS(12088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12088), + [anon_sym_BSLASHcitealt] = ACTIONS(12088), + [anon_sym_BSLASHcitealp] = ACTIONS(12088), + [anon_sym_BSLASHcitetext] = ACTIONS(12088), + [anon_sym_BSLASHparencite] = ACTIONS(12088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHParencite] = ACTIONS(12088), + [anon_sym_BSLASHfootcite] = ACTIONS(12088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12088), + [anon_sym_BSLASHtextcite] = ACTIONS(12088), + [anon_sym_BSLASHTextcite] = ACTIONS(12088), + [anon_sym_BSLASHsmartcite] = ACTIONS(12088), + [anon_sym_BSLASHSmartcite] = ACTIONS(12088), + [anon_sym_BSLASHsupercite] = ACTIONS(12088), + [anon_sym_BSLASHautocite] = ACTIONS(12088), + [anon_sym_BSLASHAutocite] = ACTIONS(12088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHvolcite] = ACTIONS(12088), + [anon_sym_BSLASHVolcite] = ACTIONS(12088), + [anon_sym_BSLASHpvolcite] = ACTIONS(12088), + [anon_sym_BSLASHPvolcite] = ACTIONS(12088), + [anon_sym_BSLASHfvolcite] = ACTIONS(12088), + [anon_sym_BSLASHftvolcite] = ACTIONS(12088), + [anon_sym_BSLASHsvolcite] = ACTIONS(12088), + [anon_sym_BSLASHSvolcite] = ACTIONS(12088), + [anon_sym_BSLASHtvolcite] = ACTIONS(12088), + [anon_sym_BSLASHTvolcite] = ACTIONS(12088), + [anon_sym_BSLASHavolcite] = ACTIONS(12088), + [anon_sym_BSLASHAvolcite] = ACTIONS(12088), + [anon_sym_BSLASHnotecite] = ACTIONS(12088), + [anon_sym_BSLASHpnotecite] = ACTIONS(12088), + [anon_sym_BSLASHPnotecite] = ACTIONS(12088), + [anon_sym_BSLASHfnotecite] = ACTIONS(12088), + [anon_sym_BSLASHusepackage] = ACTIONS(12088), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12088), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12088), + [anon_sym_BSLASHinclude] = ACTIONS(12088), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12088), + [anon_sym_BSLASHinput] = ACTIONS(12088), + [anon_sym_BSLASHsubfile] = ACTIONS(12088), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12088), + [anon_sym_BSLASHbibliography] = ACTIONS(12088), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12088), + [anon_sym_BSLASHincludesvg] = ACTIONS(12088), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12088), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12088), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12088), + [anon_sym_BSLASHimport] = ACTIONS(12088), + [anon_sym_BSLASHsubimport] = ACTIONS(12088), + [anon_sym_BSLASHinputfrom] = ACTIONS(12088), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12088), + [anon_sym_BSLASHincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHlabel] = ACTIONS(12088), + [anon_sym_BSLASHref] = ACTIONS(12088), + [anon_sym_BSLASHvref] = ACTIONS(12088), + [anon_sym_BSLASHVref] = ACTIONS(12088), + [anon_sym_BSLASHautoref] = ACTIONS(12088), + [anon_sym_BSLASHpageref] = ACTIONS(12088), + [anon_sym_BSLASHcref] = ACTIONS(12088), + [anon_sym_BSLASHCref] = ACTIONS(12088), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnameCref] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHlabelcref] = ACTIONS(12088), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12088), + [anon_sym_BSLASHeqref] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange] = ACTIONS(12088), + [anon_sym_BSLASHCrefrange] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewlabel] = ACTIONS(12088), + [anon_sym_BSLASHnewcommand] = ACTIONS(12088), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12088), + [anon_sym_BSLASHgls] = ACTIONS(12088), + [anon_sym_BSLASHGls] = ACTIONS(12088), + [anon_sym_BSLASHGLS] = ACTIONS(12088), + [anon_sym_BSLASHglspl] = ACTIONS(12088), + [anon_sym_BSLASHGlspl] = ACTIONS(12088), + [anon_sym_BSLASHGLSpl] = ACTIONS(12088), + [anon_sym_BSLASHglsdisp] = ACTIONS(12088), + [anon_sym_BSLASHglslink] = ACTIONS(12088), + [anon_sym_BSLASHglstext] = ACTIONS(12088), + [anon_sym_BSLASHGlstext] = ACTIONS(12088), + [anon_sym_BSLASHGLStext] = ACTIONS(12088), + [anon_sym_BSLASHglsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12088), + [anon_sym_BSLASHglsplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSplural] = ACTIONS(12088), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHglsname] = ACTIONS(12088), + [anon_sym_BSLASHGlsname] = ACTIONS(12088), + [anon_sym_BSLASHGLSname] = ACTIONS(12088), + [anon_sym_BSLASHglssymbol] = ACTIONS(12088), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12088), + [anon_sym_BSLASHglsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12088), + [anon_sym_BSLASHglsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12088), + [anon_sym_BSLASHglsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12088), + [anon_sym_BSLASHglsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12088), + [anon_sym_BSLASHglsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12088), + [anon_sym_BSLASHnewacronym] = ACTIONS(12088), + [anon_sym_BSLASHacrshort] = ACTIONS(12088), + [anon_sym_BSLASHAcrshort] = ACTIONS(12088), + [anon_sym_BSLASHACRshort] = ACTIONS(12088), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12088), + [anon_sym_BSLASHacrlong] = ACTIONS(12088), + [anon_sym_BSLASHAcrlong] = ACTIONS(12088), + [anon_sym_BSLASHACRlong] = ACTIONS(12088), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12088), + [anon_sym_BSLASHacrfull] = ACTIONS(12088), + [anon_sym_BSLASHAcrfull] = ACTIONS(12088), + [anon_sym_BSLASHACRfull] = ACTIONS(12088), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12088), + [anon_sym_BSLASHacs] = ACTIONS(12088), + [anon_sym_BSLASHAcs] = ACTIONS(12088), + [anon_sym_BSLASHacsp] = ACTIONS(12088), + [anon_sym_BSLASHAcsp] = ACTIONS(12088), + [anon_sym_BSLASHacl] = ACTIONS(12088), + [anon_sym_BSLASHAcl] = ACTIONS(12088), + [anon_sym_BSLASHaclp] = ACTIONS(12088), + [anon_sym_BSLASHAclp] = ACTIONS(12088), + [anon_sym_BSLASHacf] = ACTIONS(12088), + [anon_sym_BSLASHAcf] = ACTIONS(12088), + [anon_sym_BSLASHacfp] = ACTIONS(12088), + [anon_sym_BSLASHAcfp] = ACTIONS(12088), + [anon_sym_BSLASHac] = ACTIONS(12088), + [anon_sym_BSLASHAc] = ACTIONS(12088), + [anon_sym_BSLASHacp] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12088), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12088), + [anon_sym_BSLASHcolor] = ACTIONS(12088), + [anon_sym_BSLASHcolorbox] = ACTIONS(12088), + [anon_sym_BSLASHtextcolor] = ACTIONS(12088), + [anon_sym_BSLASHpagecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12088), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12088), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12088), + }, + [1516] = { + [sym_brace_group] = STATE(2987), + [sym_generic_command_name] = ACTIONS(12092), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12092), + [anon_sym_BSLASHitem] = ACTIONS(12092), + [anon_sym_LBRACK] = ACTIONS(12090), + [anon_sym_RBRACK] = ACTIONS(12090), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12090), + [anon_sym_LPAREN] = ACTIONS(12090), + [anon_sym_COMMA] = ACTIONS(12090), + [anon_sym_EQ] = ACTIONS(12090), + [sym_word] = ACTIONS(12090), + [sym_param] = ACTIONS(12090), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12090), + [anon_sym_DOLLAR] = ACTIONS(12092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12090), + [anon_sym_BSLASHbegin] = ACTIONS(12092), + [anon_sym_BSLASHcaption] = ACTIONS(12092), + [anon_sym_BSLASHcite] = ACTIONS(12092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCite] = ACTIONS(12092), + [anon_sym_BSLASHnocite] = ACTIONS(12092), + [anon_sym_BSLASHcitet] = ACTIONS(12092), + [anon_sym_BSLASHcitep] = ACTIONS(12092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteauthor] = ACTIONS(12092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitetitle] = ACTIONS(12092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteyear] = ACTIONS(12092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitedate] = ACTIONS(12092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteurl] = ACTIONS(12092), + [anon_sym_BSLASHfullcite] = ACTIONS(12092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12092), + [anon_sym_BSLASHcitealt] = ACTIONS(12092), + [anon_sym_BSLASHcitealp] = ACTIONS(12092), + [anon_sym_BSLASHcitetext] = ACTIONS(12092), + [anon_sym_BSLASHparencite] = ACTIONS(12092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHParencite] = ACTIONS(12092), + [anon_sym_BSLASHfootcite] = ACTIONS(12092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12092), + [anon_sym_BSLASHtextcite] = ACTIONS(12092), + [anon_sym_BSLASHTextcite] = ACTIONS(12092), + [anon_sym_BSLASHsmartcite] = ACTIONS(12092), + [anon_sym_BSLASHSmartcite] = ACTIONS(12092), + [anon_sym_BSLASHsupercite] = ACTIONS(12092), + [anon_sym_BSLASHautocite] = ACTIONS(12092), + [anon_sym_BSLASHAutocite] = ACTIONS(12092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHvolcite] = ACTIONS(12092), + [anon_sym_BSLASHVolcite] = ACTIONS(12092), + [anon_sym_BSLASHpvolcite] = ACTIONS(12092), + [anon_sym_BSLASHPvolcite] = ACTIONS(12092), + [anon_sym_BSLASHfvolcite] = ACTIONS(12092), + [anon_sym_BSLASHftvolcite] = ACTIONS(12092), + [anon_sym_BSLASHsvolcite] = ACTIONS(12092), + [anon_sym_BSLASHSvolcite] = ACTIONS(12092), + [anon_sym_BSLASHtvolcite] = ACTIONS(12092), + [anon_sym_BSLASHTvolcite] = ACTIONS(12092), + [anon_sym_BSLASHavolcite] = ACTIONS(12092), + [anon_sym_BSLASHAvolcite] = ACTIONS(12092), + [anon_sym_BSLASHnotecite] = ACTIONS(12092), + [anon_sym_BSLASHpnotecite] = ACTIONS(12092), + [anon_sym_BSLASHPnotecite] = ACTIONS(12092), + [anon_sym_BSLASHfnotecite] = ACTIONS(12092), + [anon_sym_BSLASHusepackage] = ACTIONS(12092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12092), + [anon_sym_BSLASHinclude] = ACTIONS(12092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12092), + [anon_sym_BSLASHinput] = ACTIONS(12092), + [anon_sym_BSLASHsubfile] = ACTIONS(12092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12092), + [anon_sym_BSLASHbibliography] = ACTIONS(12092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12092), + [anon_sym_BSLASHincludesvg] = ACTIONS(12092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12092), + [anon_sym_BSLASHimport] = ACTIONS(12092), + [anon_sym_BSLASHsubimport] = ACTIONS(12092), + [anon_sym_BSLASHinputfrom] = ACTIONS(12092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12092), + [anon_sym_BSLASHincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHlabel] = ACTIONS(12092), + [anon_sym_BSLASHref] = ACTIONS(12092), + [anon_sym_BSLASHvref] = ACTIONS(12092), + [anon_sym_BSLASHVref] = ACTIONS(12092), + [anon_sym_BSLASHautoref] = ACTIONS(12092), + [anon_sym_BSLASHpageref] = ACTIONS(12092), + [anon_sym_BSLASHcref] = ACTIONS(12092), + [anon_sym_BSLASHCref] = ACTIONS(12092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnameCref] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHlabelcref] = ACTIONS(12092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12092), + [anon_sym_BSLASHeqref] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange] = ACTIONS(12092), + [anon_sym_BSLASHCrefrange] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewlabel] = ACTIONS(12092), + [anon_sym_BSLASHnewcommand] = ACTIONS(12092), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12092), + [anon_sym_BSLASHgls] = ACTIONS(12092), + [anon_sym_BSLASHGls] = ACTIONS(12092), + [anon_sym_BSLASHGLS] = ACTIONS(12092), + [anon_sym_BSLASHglspl] = ACTIONS(12092), + [anon_sym_BSLASHGlspl] = ACTIONS(12092), + [anon_sym_BSLASHGLSpl] = ACTIONS(12092), + [anon_sym_BSLASHglsdisp] = ACTIONS(12092), + [anon_sym_BSLASHglslink] = ACTIONS(12092), + [anon_sym_BSLASHglstext] = ACTIONS(12092), + [anon_sym_BSLASHGlstext] = ACTIONS(12092), + [anon_sym_BSLASHGLStext] = ACTIONS(12092), + [anon_sym_BSLASHglsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12092), + [anon_sym_BSLASHglsplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSplural] = ACTIONS(12092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHglsname] = ACTIONS(12092), + [anon_sym_BSLASHGlsname] = ACTIONS(12092), + [anon_sym_BSLASHGLSname] = ACTIONS(12092), + [anon_sym_BSLASHglssymbol] = ACTIONS(12092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12092), + [anon_sym_BSLASHglsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12092), + [anon_sym_BSLASHglsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12092), + [anon_sym_BSLASHglsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12092), + [anon_sym_BSLASHglsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12092), + [anon_sym_BSLASHglsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12092), + [anon_sym_BSLASHnewacronym] = ACTIONS(12092), + [anon_sym_BSLASHacrshort] = ACTIONS(12092), + [anon_sym_BSLASHAcrshort] = ACTIONS(12092), + [anon_sym_BSLASHACRshort] = ACTIONS(12092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12092), + [anon_sym_BSLASHacrlong] = ACTIONS(12092), + [anon_sym_BSLASHAcrlong] = ACTIONS(12092), + [anon_sym_BSLASHACRlong] = ACTIONS(12092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12092), + [anon_sym_BSLASHacrfull] = ACTIONS(12092), + [anon_sym_BSLASHAcrfull] = ACTIONS(12092), + [anon_sym_BSLASHACRfull] = ACTIONS(12092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12092), + [anon_sym_BSLASHacs] = ACTIONS(12092), + [anon_sym_BSLASHAcs] = ACTIONS(12092), + [anon_sym_BSLASHacsp] = ACTIONS(12092), + [anon_sym_BSLASHAcsp] = ACTIONS(12092), + [anon_sym_BSLASHacl] = ACTIONS(12092), + [anon_sym_BSLASHAcl] = ACTIONS(12092), + [anon_sym_BSLASHaclp] = ACTIONS(12092), + [anon_sym_BSLASHAclp] = ACTIONS(12092), + [anon_sym_BSLASHacf] = ACTIONS(12092), + [anon_sym_BSLASHAcf] = ACTIONS(12092), + [anon_sym_BSLASHacfp] = ACTIONS(12092), + [anon_sym_BSLASHAcfp] = ACTIONS(12092), + [anon_sym_BSLASHac] = ACTIONS(12092), + [anon_sym_BSLASHAc] = ACTIONS(12092), + [anon_sym_BSLASHacp] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12092), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12092), + [anon_sym_BSLASHcolor] = ACTIONS(12092), + [anon_sym_BSLASHcolorbox] = ACTIONS(12092), + [anon_sym_BSLASHtextcolor] = ACTIONS(12092), + [anon_sym_BSLASHpagecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12092), + }, + [1517] = { + [sym_brace_group] = STATE(2988), + [sym_generic_command_name] = ACTIONS(12028), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12028), + [anon_sym_BSLASHitem] = ACTIONS(12028), + [anon_sym_LBRACK] = ACTIONS(12026), + [anon_sym_RBRACK] = ACTIONS(12026), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12026), + [anon_sym_LPAREN] = ACTIONS(12026), + [anon_sym_COMMA] = ACTIONS(12026), + [anon_sym_EQ] = ACTIONS(12026), + [sym_word] = ACTIONS(12026), + [sym_param] = ACTIONS(12026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12026), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12026), + [anon_sym_DOLLAR] = ACTIONS(12028), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12026), + [anon_sym_BSLASHbegin] = ACTIONS(12028), + [anon_sym_BSLASHcaption] = ACTIONS(12028), + [anon_sym_BSLASHcite] = ACTIONS(12028), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCite] = ACTIONS(12028), + [anon_sym_BSLASHnocite] = ACTIONS(12028), + [anon_sym_BSLASHcitet] = ACTIONS(12028), + [anon_sym_BSLASHcitep] = ACTIONS(12028), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteauthor] = ACTIONS(12028), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12028), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitetitle] = ACTIONS(12028), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteyear] = ACTIONS(12028), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitedate] = ACTIONS(12028), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteurl] = ACTIONS(12028), + [anon_sym_BSLASHfullcite] = ACTIONS(12028), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12028), + [anon_sym_BSLASHcitealt] = ACTIONS(12028), + [anon_sym_BSLASHcitealp] = ACTIONS(12028), + [anon_sym_BSLASHcitetext] = ACTIONS(12028), + [anon_sym_BSLASHparencite] = ACTIONS(12028), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHParencite] = ACTIONS(12028), + [anon_sym_BSLASHfootcite] = ACTIONS(12028), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12028), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12028), + [anon_sym_BSLASHtextcite] = ACTIONS(12028), + [anon_sym_BSLASHTextcite] = ACTIONS(12028), + [anon_sym_BSLASHsmartcite] = ACTIONS(12028), + [anon_sym_BSLASHSmartcite] = ACTIONS(12028), + [anon_sym_BSLASHsupercite] = ACTIONS(12028), + [anon_sym_BSLASHautocite] = ACTIONS(12028), + [anon_sym_BSLASHAutocite] = ACTIONS(12028), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHvolcite] = ACTIONS(12028), + [anon_sym_BSLASHVolcite] = ACTIONS(12028), + [anon_sym_BSLASHpvolcite] = ACTIONS(12028), + [anon_sym_BSLASHPvolcite] = ACTIONS(12028), + [anon_sym_BSLASHfvolcite] = ACTIONS(12028), + [anon_sym_BSLASHftvolcite] = ACTIONS(12028), + [anon_sym_BSLASHsvolcite] = ACTIONS(12028), + [anon_sym_BSLASHSvolcite] = ACTIONS(12028), + [anon_sym_BSLASHtvolcite] = ACTIONS(12028), + [anon_sym_BSLASHTvolcite] = ACTIONS(12028), + [anon_sym_BSLASHavolcite] = ACTIONS(12028), + [anon_sym_BSLASHAvolcite] = ACTIONS(12028), + [anon_sym_BSLASHnotecite] = ACTIONS(12028), + [anon_sym_BSLASHpnotecite] = ACTIONS(12028), + [anon_sym_BSLASHPnotecite] = ACTIONS(12028), + [anon_sym_BSLASHfnotecite] = ACTIONS(12028), + [anon_sym_BSLASHusepackage] = ACTIONS(12028), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12028), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12028), + [anon_sym_BSLASHinclude] = ACTIONS(12028), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12028), + [anon_sym_BSLASHinput] = ACTIONS(12028), + [anon_sym_BSLASHsubfile] = ACTIONS(12028), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12028), + [anon_sym_BSLASHbibliography] = ACTIONS(12028), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12028), + [anon_sym_BSLASHincludesvg] = ACTIONS(12028), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12028), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12028), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12028), + [anon_sym_BSLASHimport] = ACTIONS(12028), + [anon_sym_BSLASHsubimport] = ACTIONS(12028), + [anon_sym_BSLASHinputfrom] = ACTIONS(12028), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12028), + [anon_sym_BSLASHincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHlabel] = ACTIONS(12028), + [anon_sym_BSLASHref] = ACTIONS(12028), + [anon_sym_BSLASHvref] = ACTIONS(12028), + [anon_sym_BSLASHVref] = ACTIONS(12028), + [anon_sym_BSLASHautoref] = ACTIONS(12028), + [anon_sym_BSLASHpageref] = ACTIONS(12028), + [anon_sym_BSLASHcref] = ACTIONS(12028), + [anon_sym_BSLASHCref] = ACTIONS(12028), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnameCref] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHlabelcref] = ACTIONS(12028), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12028), + [anon_sym_BSLASHeqref] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange] = ACTIONS(12028), + [anon_sym_BSLASHCrefrange] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewlabel] = ACTIONS(12028), + [anon_sym_BSLASHnewcommand] = ACTIONS(12028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12028), + [anon_sym_BSLASHgls] = ACTIONS(12028), + [anon_sym_BSLASHGls] = ACTIONS(12028), + [anon_sym_BSLASHGLS] = ACTIONS(12028), + [anon_sym_BSLASHglspl] = ACTIONS(12028), + [anon_sym_BSLASHGlspl] = ACTIONS(12028), + [anon_sym_BSLASHGLSpl] = ACTIONS(12028), + [anon_sym_BSLASHglsdisp] = ACTIONS(12028), + [anon_sym_BSLASHglslink] = ACTIONS(12028), + [anon_sym_BSLASHglstext] = ACTIONS(12028), + [anon_sym_BSLASHGlstext] = ACTIONS(12028), + [anon_sym_BSLASHGLStext] = ACTIONS(12028), + [anon_sym_BSLASHglsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12028), + [anon_sym_BSLASHglsplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSplural] = ACTIONS(12028), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHglsname] = ACTIONS(12028), + [anon_sym_BSLASHGlsname] = ACTIONS(12028), + [anon_sym_BSLASHGLSname] = ACTIONS(12028), + [anon_sym_BSLASHglssymbol] = ACTIONS(12028), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12028), + [anon_sym_BSLASHglsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12028), + [anon_sym_BSLASHglsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12028), + [anon_sym_BSLASHglsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12028), + [anon_sym_BSLASHglsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12028), + [anon_sym_BSLASHglsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12028), + [anon_sym_BSLASHnewacronym] = ACTIONS(12028), + [anon_sym_BSLASHacrshort] = ACTIONS(12028), + [anon_sym_BSLASHAcrshort] = ACTIONS(12028), + [anon_sym_BSLASHACRshort] = ACTIONS(12028), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12028), + [anon_sym_BSLASHacrlong] = ACTIONS(12028), + [anon_sym_BSLASHAcrlong] = ACTIONS(12028), + [anon_sym_BSLASHACRlong] = ACTIONS(12028), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12028), + [anon_sym_BSLASHacrfull] = ACTIONS(12028), + [anon_sym_BSLASHAcrfull] = ACTIONS(12028), + [anon_sym_BSLASHACRfull] = ACTIONS(12028), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12028), + [anon_sym_BSLASHacs] = ACTIONS(12028), + [anon_sym_BSLASHAcs] = ACTIONS(12028), + [anon_sym_BSLASHacsp] = ACTIONS(12028), + [anon_sym_BSLASHAcsp] = ACTIONS(12028), + [anon_sym_BSLASHacl] = ACTIONS(12028), + [anon_sym_BSLASHAcl] = ACTIONS(12028), + [anon_sym_BSLASHaclp] = ACTIONS(12028), + [anon_sym_BSLASHAclp] = ACTIONS(12028), + [anon_sym_BSLASHacf] = ACTIONS(12028), + [anon_sym_BSLASHAcf] = ACTIONS(12028), + [anon_sym_BSLASHacfp] = ACTIONS(12028), + [anon_sym_BSLASHAcfp] = ACTIONS(12028), + [anon_sym_BSLASHac] = ACTIONS(12028), + [anon_sym_BSLASHAc] = ACTIONS(12028), + [anon_sym_BSLASHacp] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12028), + [anon_sym_BSLASHcolor] = ACTIONS(12028), + [anon_sym_BSLASHcolorbox] = ACTIONS(12028), + [anon_sym_BSLASHtextcolor] = ACTIONS(12028), + [anon_sym_BSLASHpagecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12028), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12028), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12028), + }, + [1518] = { + [sym_brace_group] = STATE(2995), + [sym_generic_command_name] = ACTIONS(12100), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12100), + [anon_sym_BSLASHitem] = ACTIONS(12100), + [anon_sym_LBRACK] = ACTIONS(12098), + [anon_sym_RBRACK] = ACTIONS(12098), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12098), + [anon_sym_LPAREN] = ACTIONS(12098), + [anon_sym_COMMA] = ACTIONS(12098), + [anon_sym_EQ] = ACTIONS(12098), + [sym_word] = ACTIONS(12098), + [sym_param] = ACTIONS(12098), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12098), + [anon_sym_DOLLAR] = ACTIONS(12100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12098), + [anon_sym_BSLASHbegin] = ACTIONS(12100), + [anon_sym_BSLASHcaption] = ACTIONS(12100), + [anon_sym_BSLASHcite] = ACTIONS(12100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCite] = ACTIONS(12100), + [anon_sym_BSLASHnocite] = ACTIONS(12100), + [anon_sym_BSLASHcitet] = ACTIONS(12100), + [anon_sym_BSLASHcitep] = ACTIONS(12100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteauthor] = ACTIONS(12100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitetitle] = ACTIONS(12100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteyear] = ACTIONS(12100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitedate] = ACTIONS(12100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteurl] = ACTIONS(12100), + [anon_sym_BSLASHfullcite] = ACTIONS(12100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12100), + [anon_sym_BSLASHcitealt] = ACTIONS(12100), + [anon_sym_BSLASHcitealp] = ACTIONS(12100), + [anon_sym_BSLASHcitetext] = ACTIONS(12100), + [anon_sym_BSLASHparencite] = ACTIONS(12100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHParencite] = ACTIONS(12100), + [anon_sym_BSLASHfootcite] = ACTIONS(12100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12100), + [anon_sym_BSLASHtextcite] = ACTIONS(12100), + [anon_sym_BSLASHTextcite] = ACTIONS(12100), + [anon_sym_BSLASHsmartcite] = ACTIONS(12100), + [anon_sym_BSLASHSmartcite] = ACTIONS(12100), + [anon_sym_BSLASHsupercite] = ACTIONS(12100), + [anon_sym_BSLASHautocite] = ACTIONS(12100), + [anon_sym_BSLASHAutocite] = ACTIONS(12100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHvolcite] = ACTIONS(12100), + [anon_sym_BSLASHVolcite] = ACTIONS(12100), + [anon_sym_BSLASHpvolcite] = ACTIONS(12100), + [anon_sym_BSLASHPvolcite] = ACTIONS(12100), + [anon_sym_BSLASHfvolcite] = ACTIONS(12100), + [anon_sym_BSLASHftvolcite] = ACTIONS(12100), + [anon_sym_BSLASHsvolcite] = ACTIONS(12100), + [anon_sym_BSLASHSvolcite] = ACTIONS(12100), + [anon_sym_BSLASHtvolcite] = ACTIONS(12100), + [anon_sym_BSLASHTvolcite] = ACTIONS(12100), + [anon_sym_BSLASHavolcite] = ACTIONS(12100), + [anon_sym_BSLASHAvolcite] = ACTIONS(12100), + [anon_sym_BSLASHnotecite] = ACTIONS(12100), + [anon_sym_BSLASHpnotecite] = ACTIONS(12100), + [anon_sym_BSLASHPnotecite] = ACTIONS(12100), + [anon_sym_BSLASHfnotecite] = ACTIONS(12100), + [anon_sym_BSLASHusepackage] = ACTIONS(12100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12100), + [anon_sym_BSLASHinclude] = ACTIONS(12100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12100), + [anon_sym_BSLASHinput] = ACTIONS(12100), + [anon_sym_BSLASHsubfile] = ACTIONS(12100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12100), + [anon_sym_BSLASHbibliography] = ACTIONS(12100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12100), + [anon_sym_BSLASHincludesvg] = ACTIONS(12100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12100), + [anon_sym_BSLASHimport] = ACTIONS(12100), + [anon_sym_BSLASHsubimport] = ACTIONS(12100), + [anon_sym_BSLASHinputfrom] = ACTIONS(12100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12100), + [anon_sym_BSLASHincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHlabel] = ACTIONS(12100), + [anon_sym_BSLASHref] = ACTIONS(12100), + [anon_sym_BSLASHvref] = ACTIONS(12100), + [anon_sym_BSLASHVref] = ACTIONS(12100), + [anon_sym_BSLASHautoref] = ACTIONS(12100), + [anon_sym_BSLASHpageref] = ACTIONS(12100), + [anon_sym_BSLASHcref] = ACTIONS(12100), + [anon_sym_BSLASHCref] = ACTIONS(12100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnameCref] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHlabelcref] = ACTIONS(12100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12100), + [anon_sym_BSLASHeqref] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange] = ACTIONS(12100), + [anon_sym_BSLASHCrefrange] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewlabel] = ACTIONS(12100), + [anon_sym_BSLASHnewcommand] = ACTIONS(12100), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12100), + [anon_sym_BSLASHgls] = ACTIONS(12100), + [anon_sym_BSLASHGls] = ACTIONS(12100), + [anon_sym_BSLASHGLS] = ACTIONS(12100), + [anon_sym_BSLASHglspl] = ACTIONS(12100), + [anon_sym_BSLASHGlspl] = ACTIONS(12100), + [anon_sym_BSLASHGLSpl] = ACTIONS(12100), + [anon_sym_BSLASHglsdisp] = ACTIONS(12100), + [anon_sym_BSLASHglslink] = ACTIONS(12100), + [anon_sym_BSLASHglstext] = ACTIONS(12100), + [anon_sym_BSLASHGlstext] = ACTIONS(12100), + [anon_sym_BSLASHGLStext] = ACTIONS(12100), + [anon_sym_BSLASHglsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12100), + [anon_sym_BSLASHglsplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSplural] = ACTIONS(12100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHglsname] = ACTIONS(12100), + [anon_sym_BSLASHGlsname] = ACTIONS(12100), + [anon_sym_BSLASHGLSname] = ACTIONS(12100), + [anon_sym_BSLASHglssymbol] = ACTIONS(12100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12100), + [anon_sym_BSLASHglsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12100), + [anon_sym_BSLASHglsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12100), + [anon_sym_BSLASHglsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12100), + [anon_sym_BSLASHglsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12100), + [anon_sym_BSLASHglsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12100), + [anon_sym_BSLASHnewacronym] = ACTIONS(12100), + [anon_sym_BSLASHacrshort] = ACTIONS(12100), + [anon_sym_BSLASHAcrshort] = ACTIONS(12100), + [anon_sym_BSLASHACRshort] = ACTIONS(12100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12100), + [anon_sym_BSLASHacrlong] = ACTIONS(12100), + [anon_sym_BSLASHAcrlong] = ACTIONS(12100), + [anon_sym_BSLASHACRlong] = ACTIONS(12100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12100), + [anon_sym_BSLASHacrfull] = ACTIONS(12100), + [anon_sym_BSLASHAcrfull] = ACTIONS(12100), + [anon_sym_BSLASHACRfull] = ACTIONS(12100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12100), + [anon_sym_BSLASHacs] = ACTIONS(12100), + [anon_sym_BSLASHAcs] = ACTIONS(12100), + [anon_sym_BSLASHacsp] = ACTIONS(12100), + [anon_sym_BSLASHAcsp] = ACTIONS(12100), + [anon_sym_BSLASHacl] = ACTIONS(12100), + [anon_sym_BSLASHAcl] = ACTIONS(12100), + [anon_sym_BSLASHaclp] = ACTIONS(12100), + [anon_sym_BSLASHAclp] = ACTIONS(12100), + [anon_sym_BSLASHacf] = ACTIONS(12100), + [anon_sym_BSLASHAcf] = ACTIONS(12100), + [anon_sym_BSLASHacfp] = ACTIONS(12100), + [anon_sym_BSLASHAcfp] = ACTIONS(12100), + [anon_sym_BSLASHac] = ACTIONS(12100), + [anon_sym_BSLASHAc] = ACTIONS(12100), + [anon_sym_BSLASHacp] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12100), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12100), + [anon_sym_BSLASHcolor] = ACTIONS(12100), + [anon_sym_BSLASHcolorbox] = ACTIONS(12100), + [anon_sym_BSLASHtextcolor] = ACTIONS(12100), + [anon_sym_BSLASHpagecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12100), + }, + [1519] = { + [sym_brace_group] = STATE(2997), + [sym_generic_command_name] = ACTIONS(12058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12058), + [anon_sym_BSLASHitem] = ACTIONS(12058), + [anon_sym_LBRACK] = ACTIONS(12056), + [anon_sym_RBRACK] = ACTIONS(12056), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12056), + [anon_sym_LPAREN] = ACTIONS(12056), + [anon_sym_COMMA] = ACTIONS(12056), + [anon_sym_EQ] = ACTIONS(12056), + [sym_word] = ACTIONS(12056), + [sym_param] = ACTIONS(12056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12056), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12056), + [anon_sym_DOLLAR] = ACTIONS(12058), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12056), + [anon_sym_BSLASHbegin] = ACTIONS(12058), + [anon_sym_BSLASHcaption] = ACTIONS(12058), + [anon_sym_BSLASHcite] = ACTIONS(12058), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCite] = ACTIONS(12058), + [anon_sym_BSLASHnocite] = ACTIONS(12058), + [anon_sym_BSLASHcitet] = ACTIONS(12058), + [anon_sym_BSLASHcitep] = ACTIONS(12058), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteauthor] = ACTIONS(12058), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12058), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitetitle] = ACTIONS(12058), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteyear] = ACTIONS(12058), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitedate] = ACTIONS(12058), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteurl] = ACTIONS(12058), + [anon_sym_BSLASHfullcite] = ACTIONS(12058), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12058), + [anon_sym_BSLASHcitealt] = ACTIONS(12058), + [anon_sym_BSLASHcitealp] = ACTIONS(12058), + [anon_sym_BSLASHcitetext] = ACTIONS(12058), + [anon_sym_BSLASHparencite] = ACTIONS(12058), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHParencite] = ACTIONS(12058), + [anon_sym_BSLASHfootcite] = ACTIONS(12058), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12058), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12058), + [anon_sym_BSLASHtextcite] = ACTIONS(12058), + [anon_sym_BSLASHTextcite] = ACTIONS(12058), + [anon_sym_BSLASHsmartcite] = ACTIONS(12058), + [anon_sym_BSLASHSmartcite] = ACTIONS(12058), + [anon_sym_BSLASHsupercite] = ACTIONS(12058), + [anon_sym_BSLASHautocite] = ACTIONS(12058), + [anon_sym_BSLASHAutocite] = ACTIONS(12058), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHvolcite] = ACTIONS(12058), + [anon_sym_BSLASHVolcite] = ACTIONS(12058), + [anon_sym_BSLASHpvolcite] = ACTIONS(12058), + [anon_sym_BSLASHPvolcite] = ACTIONS(12058), + [anon_sym_BSLASHfvolcite] = ACTIONS(12058), + [anon_sym_BSLASHftvolcite] = ACTIONS(12058), + [anon_sym_BSLASHsvolcite] = ACTIONS(12058), + [anon_sym_BSLASHSvolcite] = ACTIONS(12058), + [anon_sym_BSLASHtvolcite] = ACTIONS(12058), + [anon_sym_BSLASHTvolcite] = ACTIONS(12058), + [anon_sym_BSLASHavolcite] = ACTIONS(12058), + [anon_sym_BSLASHAvolcite] = ACTIONS(12058), + [anon_sym_BSLASHnotecite] = ACTIONS(12058), + [anon_sym_BSLASHpnotecite] = ACTIONS(12058), + [anon_sym_BSLASHPnotecite] = ACTIONS(12058), + [anon_sym_BSLASHfnotecite] = ACTIONS(12058), + [anon_sym_BSLASHusepackage] = ACTIONS(12058), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12058), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12058), + [anon_sym_BSLASHinclude] = ACTIONS(12058), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12058), + [anon_sym_BSLASHinput] = ACTIONS(12058), + [anon_sym_BSLASHsubfile] = ACTIONS(12058), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12058), + [anon_sym_BSLASHbibliography] = ACTIONS(12058), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12058), + [anon_sym_BSLASHincludesvg] = ACTIONS(12058), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12058), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12058), + [anon_sym_BSLASHimport] = ACTIONS(12058), + [anon_sym_BSLASHsubimport] = ACTIONS(12058), + [anon_sym_BSLASHinputfrom] = ACTIONS(12058), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12058), + [anon_sym_BSLASHincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHlabel] = ACTIONS(12058), + [anon_sym_BSLASHref] = ACTIONS(12058), + [anon_sym_BSLASHvref] = ACTIONS(12058), + [anon_sym_BSLASHVref] = ACTIONS(12058), + [anon_sym_BSLASHautoref] = ACTIONS(12058), + [anon_sym_BSLASHpageref] = ACTIONS(12058), + [anon_sym_BSLASHcref] = ACTIONS(12058), + [anon_sym_BSLASHCref] = ACTIONS(12058), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnameCref] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHlabelcref] = ACTIONS(12058), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12058), + [anon_sym_BSLASHeqref] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange] = ACTIONS(12058), + [anon_sym_BSLASHCrefrange] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewlabel] = ACTIONS(12058), + [anon_sym_BSLASHnewcommand] = ACTIONS(12058), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12058), + [anon_sym_BSLASHgls] = ACTIONS(12058), + [anon_sym_BSLASHGls] = ACTIONS(12058), + [anon_sym_BSLASHGLS] = ACTIONS(12058), + [anon_sym_BSLASHglspl] = ACTIONS(12058), + [anon_sym_BSLASHGlspl] = ACTIONS(12058), + [anon_sym_BSLASHGLSpl] = ACTIONS(12058), + [anon_sym_BSLASHglsdisp] = ACTIONS(12058), + [anon_sym_BSLASHglslink] = ACTIONS(12058), + [anon_sym_BSLASHglstext] = ACTIONS(12058), + [anon_sym_BSLASHGlstext] = ACTIONS(12058), + [anon_sym_BSLASHGLStext] = ACTIONS(12058), + [anon_sym_BSLASHglsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12058), + [anon_sym_BSLASHglsplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSplural] = ACTIONS(12058), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHglsname] = ACTIONS(12058), + [anon_sym_BSLASHGlsname] = ACTIONS(12058), + [anon_sym_BSLASHGLSname] = ACTIONS(12058), + [anon_sym_BSLASHglssymbol] = ACTIONS(12058), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12058), + [anon_sym_BSLASHglsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12058), + [anon_sym_BSLASHglsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12058), + [anon_sym_BSLASHglsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12058), + [anon_sym_BSLASHglsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12058), + [anon_sym_BSLASHglsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12058), + [anon_sym_BSLASHnewacronym] = ACTIONS(12058), + [anon_sym_BSLASHacrshort] = ACTIONS(12058), + [anon_sym_BSLASHAcrshort] = ACTIONS(12058), + [anon_sym_BSLASHACRshort] = ACTIONS(12058), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12058), + [anon_sym_BSLASHacrlong] = ACTIONS(12058), + [anon_sym_BSLASHAcrlong] = ACTIONS(12058), + [anon_sym_BSLASHACRlong] = ACTIONS(12058), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12058), + [anon_sym_BSLASHacrfull] = ACTIONS(12058), + [anon_sym_BSLASHAcrfull] = ACTIONS(12058), + [anon_sym_BSLASHACRfull] = ACTIONS(12058), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12058), + [anon_sym_BSLASHacs] = ACTIONS(12058), + [anon_sym_BSLASHAcs] = ACTIONS(12058), + [anon_sym_BSLASHacsp] = ACTIONS(12058), + [anon_sym_BSLASHAcsp] = ACTIONS(12058), + [anon_sym_BSLASHacl] = ACTIONS(12058), + [anon_sym_BSLASHAcl] = ACTIONS(12058), + [anon_sym_BSLASHaclp] = ACTIONS(12058), + [anon_sym_BSLASHAclp] = ACTIONS(12058), + [anon_sym_BSLASHacf] = ACTIONS(12058), + [anon_sym_BSLASHAcf] = ACTIONS(12058), + [anon_sym_BSLASHacfp] = ACTIONS(12058), + [anon_sym_BSLASHAcfp] = ACTIONS(12058), + [anon_sym_BSLASHac] = ACTIONS(12058), + [anon_sym_BSLASHAc] = ACTIONS(12058), + [anon_sym_BSLASHacp] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12058), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12058), + [anon_sym_BSLASHcolor] = ACTIONS(12058), + [anon_sym_BSLASHcolorbox] = ACTIONS(12058), + [anon_sym_BSLASHtextcolor] = ACTIONS(12058), + [anon_sym_BSLASHpagecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12058), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12058), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12058), + }, + [1520] = { + [sym_generic_command_name] = ACTIONS(12437), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12437), + [aux_sym_subparagraph_token1] = ACTIONS(12437), + [anon_sym_BSLASHitem] = ACTIONS(12437), + [anon_sym_LBRACK] = ACTIONS(12435), + [anon_sym_RBRACK] = ACTIONS(12435), + [anon_sym_LBRACE] = ACTIONS(12435), + [anon_sym_RBRACE] = ACTIONS(12435), + [anon_sym_LPAREN] = ACTIONS(12435), + [anon_sym_COMMA] = ACTIONS(12435), + [anon_sym_EQ] = ACTIONS(12435), + [sym_word] = ACTIONS(12435), + [sym_param] = ACTIONS(12435), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12435), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12435), + [anon_sym_DOLLAR] = ACTIONS(12437), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12435), + [anon_sym_BSLASHbegin] = ACTIONS(12437), + [anon_sym_BSLASHcaption] = ACTIONS(12437), + [anon_sym_BSLASHcite] = ACTIONS(12437), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCite] = ACTIONS(12437), + [anon_sym_BSLASHnocite] = ACTIONS(12437), + [anon_sym_BSLASHcitet] = ACTIONS(12437), + [anon_sym_BSLASHcitep] = ACTIONS(12437), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteauthor] = ACTIONS(12437), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12437), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitetitle] = ACTIONS(12437), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteyear] = ACTIONS(12437), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitedate] = ACTIONS(12437), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteurl] = ACTIONS(12437), + [anon_sym_BSLASHfullcite] = ACTIONS(12437), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12437), + [anon_sym_BSLASHcitealt] = ACTIONS(12437), + [anon_sym_BSLASHcitealp] = ACTIONS(12437), + [anon_sym_BSLASHcitetext] = ACTIONS(12437), + [anon_sym_BSLASHparencite] = ACTIONS(12437), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHParencite] = ACTIONS(12437), + [anon_sym_BSLASHfootcite] = ACTIONS(12437), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12437), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12437), + [anon_sym_BSLASHtextcite] = ACTIONS(12437), + [anon_sym_BSLASHTextcite] = ACTIONS(12437), + [anon_sym_BSLASHsmartcite] = ACTIONS(12437), + [anon_sym_BSLASHSmartcite] = ACTIONS(12437), + [anon_sym_BSLASHsupercite] = ACTIONS(12437), + [anon_sym_BSLASHautocite] = ACTIONS(12437), + [anon_sym_BSLASHAutocite] = ACTIONS(12437), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHvolcite] = ACTIONS(12437), + [anon_sym_BSLASHVolcite] = ACTIONS(12437), + [anon_sym_BSLASHpvolcite] = ACTIONS(12437), + [anon_sym_BSLASHPvolcite] = ACTIONS(12437), + [anon_sym_BSLASHfvolcite] = ACTIONS(12437), + [anon_sym_BSLASHftvolcite] = ACTIONS(12437), + [anon_sym_BSLASHsvolcite] = ACTIONS(12437), + [anon_sym_BSLASHSvolcite] = ACTIONS(12437), + [anon_sym_BSLASHtvolcite] = ACTIONS(12437), + [anon_sym_BSLASHTvolcite] = ACTIONS(12437), + [anon_sym_BSLASHavolcite] = ACTIONS(12437), + [anon_sym_BSLASHAvolcite] = ACTIONS(12437), + [anon_sym_BSLASHnotecite] = ACTIONS(12437), + [anon_sym_BSLASHpnotecite] = ACTIONS(12437), + [anon_sym_BSLASHPnotecite] = ACTIONS(12437), + [anon_sym_BSLASHfnotecite] = ACTIONS(12437), + [anon_sym_BSLASHusepackage] = ACTIONS(12437), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12437), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12437), + [anon_sym_BSLASHinclude] = ACTIONS(12437), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12437), + [anon_sym_BSLASHinput] = ACTIONS(12437), + [anon_sym_BSLASHsubfile] = ACTIONS(12437), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12437), + [anon_sym_BSLASHbibliography] = ACTIONS(12437), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12437), + [anon_sym_BSLASHincludesvg] = ACTIONS(12437), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12437), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12437), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12437), + [anon_sym_BSLASHimport] = ACTIONS(12437), + [anon_sym_BSLASHsubimport] = ACTIONS(12437), + [anon_sym_BSLASHinputfrom] = ACTIONS(12437), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12437), + [anon_sym_BSLASHincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHlabel] = ACTIONS(12437), + [anon_sym_BSLASHref] = ACTIONS(12437), + [anon_sym_BSLASHvref] = ACTIONS(12437), + [anon_sym_BSLASHVref] = ACTIONS(12437), + [anon_sym_BSLASHautoref] = ACTIONS(12437), + [anon_sym_BSLASHpageref] = ACTIONS(12437), + [anon_sym_BSLASHcref] = ACTIONS(12437), + [anon_sym_BSLASHCref] = ACTIONS(12437), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnameCref] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHlabelcref] = ACTIONS(12437), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12437), + [anon_sym_BSLASHeqref] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange] = ACTIONS(12437), + [anon_sym_BSLASHCrefrange] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewlabel] = ACTIONS(12437), + [anon_sym_BSLASHnewcommand] = ACTIONS(12437), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12437), + [anon_sym_BSLASHgls] = ACTIONS(12437), + [anon_sym_BSLASHGls] = ACTIONS(12437), + [anon_sym_BSLASHGLS] = ACTIONS(12437), + [anon_sym_BSLASHglspl] = ACTIONS(12437), + [anon_sym_BSLASHGlspl] = ACTIONS(12437), + [anon_sym_BSLASHGLSpl] = ACTIONS(12437), + [anon_sym_BSLASHglsdisp] = ACTIONS(12437), + [anon_sym_BSLASHglslink] = ACTIONS(12437), + [anon_sym_BSLASHglstext] = ACTIONS(12437), + [anon_sym_BSLASHGlstext] = ACTIONS(12437), + [anon_sym_BSLASHGLStext] = ACTIONS(12437), + [anon_sym_BSLASHglsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12437), + [anon_sym_BSLASHglsplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSplural] = ACTIONS(12437), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHglsname] = ACTIONS(12437), + [anon_sym_BSLASHGlsname] = ACTIONS(12437), + [anon_sym_BSLASHGLSname] = ACTIONS(12437), + [anon_sym_BSLASHglssymbol] = ACTIONS(12437), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12437), + [anon_sym_BSLASHglsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12437), + [anon_sym_BSLASHglsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12437), + [anon_sym_BSLASHglsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12437), + [anon_sym_BSLASHglsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12437), + [anon_sym_BSLASHglsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12437), + [anon_sym_BSLASHnewacronym] = ACTIONS(12437), + [anon_sym_BSLASHacrshort] = ACTIONS(12437), + [anon_sym_BSLASHAcrshort] = ACTIONS(12437), + [anon_sym_BSLASHACRshort] = ACTIONS(12437), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12437), + [anon_sym_BSLASHacrlong] = ACTIONS(12437), + [anon_sym_BSLASHAcrlong] = ACTIONS(12437), + [anon_sym_BSLASHACRlong] = ACTIONS(12437), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12437), + [anon_sym_BSLASHacrfull] = ACTIONS(12437), + [anon_sym_BSLASHAcrfull] = ACTIONS(12437), + [anon_sym_BSLASHACRfull] = ACTIONS(12437), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12437), + [anon_sym_BSLASHacs] = ACTIONS(12437), + [anon_sym_BSLASHAcs] = ACTIONS(12437), + [anon_sym_BSLASHacsp] = ACTIONS(12437), + [anon_sym_BSLASHAcsp] = ACTIONS(12437), + [anon_sym_BSLASHacl] = ACTIONS(12437), + [anon_sym_BSLASHAcl] = ACTIONS(12437), + [anon_sym_BSLASHaclp] = ACTIONS(12437), + [anon_sym_BSLASHAclp] = ACTIONS(12437), + [anon_sym_BSLASHacf] = ACTIONS(12437), + [anon_sym_BSLASHAcf] = ACTIONS(12437), + [anon_sym_BSLASHacfp] = ACTIONS(12437), + [anon_sym_BSLASHAcfp] = ACTIONS(12437), + [anon_sym_BSLASHac] = ACTIONS(12437), + [anon_sym_BSLASHAc] = ACTIONS(12437), + [anon_sym_BSLASHacp] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12437), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12437), + [anon_sym_BSLASHcolor] = ACTIONS(12437), + [anon_sym_BSLASHcolorbox] = ACTIONS(12437), + [anon_sym_BSLASHtextcolor] = ACTIONS(12437), + [anon_sym_BSLASHpagecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12437), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12437), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12437), + }, + [1521] = { + [sym_generic_command_name] = ACTIONS(12185), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12185), + [aux_sym_subparagraph_token1] = ACTIONS(12185), + [anon_sym_BSLASHitem] = ACTIONS(12185), + [anon_sym_LBRACK] = ACTIONS(12183), + [anon_sym_RBRACK] = ACTIONS(12183), + [anon_sym_LBRACE] = ACTIONS(12183), + [anon_sym_RBRACE] = ACTIONS(12183), + [anon_sym_LPAREN] = ACTIONS(12183), + [anon_sym_COMMA] = ACTIONS(12183), + [anon_sym_EQ] = ACTIONS(12183), + [sym_word] = ACTIONS(12183), + [sym_param] = ACTIONS(12183), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12183), + [anon_sym_DOLLAR] = ACTIONS(12185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12183), + [anon_sym_BSLASHbegin] = ACTIONS(12185), + [anon_sym_BSLASHcaption] = ACTIONS(12185), + [anon_sym_BSLASHcite] = ACTIONS(12185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCite] = ACTIONS(12185), + [anon_sym_BSLASHnocite] = ACTIONS(12185), + [anon_sym_BSLASHcitet] = ACTIONS(12185), + [anon_sym_BSLASHcitep] = ACTIONS(12185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteauthor] = ACTIONS(12185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitetitle] = ACTIONS(12185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteyear] = ACTIONS(12185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitedate] = ACTIONS(12185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteurl] = ACTIONS(12185), + [anon_sym_BSLASHfullcite] = ACTIONS(12185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12185), + [anon_sym_BSLASHcitealt] = ACTIONS(12185), + [anon_sym_BSLASHcitealp] = ACTIONS(12185), + [anon_sym_BSLASHcitetext] = ACTIONS(12185), + [anon_sym_BSLASHparencite] = ACTIONS(12185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHParencite] = ACTIONS(12185), + [anon_sym_BSLASHfootcite] = ACTIONS(12185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12185), + [anon_sym_BSLASHtextcite] = ACTIONS(12185), + [anon_sym_BSLASHTextcite] = ACTIONS(12185), + [anon_sym_BSLASHsmartcite] = ACTIONS(12185), + [anon_sym_BSLASHSmartcite] = ACTIONS(12185), + [anon_sym_BSLASHsupercite] = ACTIONS(12185), + [anon_sym_BSLASHautocite] = ACTIONS(12185), + [anon_sym_BSLASHAutocite] = ACTIONS(12185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHvolcite] = ACTIONS(12185), + [anon_sym_BSLASHVolcite] = ACTIONS(12185), + [anon_sym_BSLASHpvolcite] = ACTIONS(12185), + [anon_sym_BSLASHPvolcite] = ACTIONS(12185), + [anon_sym_BSLASHfvolcite] = ACTIONS(12185), + [anon_sym_BSLASHftvolcite] = ACTIONS(12185), + [anon_sym_BSLASHsvolcite] = ACTIONS(12185), + [anon_sym_BSLASHSvolcite] = ACTIONS(12185), + [anon_sym_BSLASHtvolcite] = ACTIONS(12185), + [anon_sym_BSLASHTvolcite] = ACTIONS(12185), + [anon_sym_BSLASHavolcite] = ACTIONS(12185), + [anon_sym_BSLASHAvolcite] = ACTIONS(12185), + [anon_sym_BSLASHnotecite] = ACTIONS(12185), + [anon_sym_BSLASHpnotecite] = ACTIONS(12185), + [anon_sym_BSLASHPnotecite] = ACTIONS(12185), + [anon_sym_BSLASHfnotecite] = ACTIONS(12185), + [anon_sym_BSLASHusepackage] = ACTIONS(12185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12185), + [anon_sym_BSLASHinclude] = ACTIONS(12185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12185), + [anon_sym_BSLASHinput] = ACTIONS(12185), + [anon_sym_BSLASHsubfile] = ACTIONS(12185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12185), + [anon_sym_BSLASHbibliography] = ACTIONS(12185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12185), + [anon_sym_BSLASHincludesvg] = ACTIONS(12185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12185), + [anon_sym_BSLASHimport] = ACTIONS(12185), + [anon_sym_BSLASHsubimport] = ACTIONS(12185), + [anon_sym_BSLASHinputfrom] = ACTIONS(12185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12185), + [anon_sym_BSLASHincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHlabel] = ACTIONS(12185), + [anon_sym_BSLASHref] = ACTIONS(12185), + [anon_sym_BSLASHvref] = ACTIONS(12185), + [anon_sym_BSLASHVref] = ACTIONS(12185), + [anon_sym_BSLASHautoref] = ACTIONS(12185), + [anon_sym_BSLASHpageref] = ACTIONS(12185), + [anon_sym_BSLASHcref] = ACTIONS(12185), + [anon_sym_BSLASHCref] = ACTIONS(12185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnameCref] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHlabelcref] = ACTIONS(12185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12185), + [anon_sym_BSLASHeqref] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange] = ACTIONS(12185), + [anon_sym_BSLASHCrefrange] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewlabel] = ACTIONS(12185), + [anon_sym_BSLASHnewcommand] = ACTIONS(12185), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12185), + [anon_sym_BSLASHgls] = ACTIONS(12185), + [anon_sym_BSLASHGls] = ACTIONS(12185), + [anon_sym_BSLASHGLS] = ACTIONS(12185), + [anon_sym_BSLASHglspl] = ACTIONS(12185), + [anon_sym_BSLASHGlspl] = ACTIONS(12185), + [anon_sym_BSLASHGLSpl] = ACTIONS(12185), + [anon_sym_BSLASHglsdisp] = ACTIONS(12185), + [anon_sym_BSLASHglslink] = ACTIONS(12185), + [anon_sym_BSLASHglstext] = ACTIONS(12185), + [anon_sym_BSLASHGlstext] = ACTIONS(12185), + [anon_sym_BSLASHGLStext] = ACTIONS(12185), + [anon_sym_BSLASHglsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12185), + [anon_sym_BSLASHglsplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSplural] = ACTIONS(12185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHglsname] = ACTIONS(12185), + [anon_sym_BSLASHGlsname] = ACTIONS(12185), + [anon_sym_BSLASHGLSname] = ACTIONS(12185), + [anon_sym_BSLASHglssymbol] = ACTIONS(12185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12185), + [anon_sym_BSLASHglsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12185), + [anon_sym_BSLASHglsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12185), + [anon_sym_BSLASHglsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12185), + [anon_sym_BSLASHglsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12185), + [anon_sym_BSLASHglsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12185), + [anon_sym_BSLASHnewacronym] = ACTIONS(12185), + [anon_sym_BSLASHacrshort] = ACTIONS(12185), + [anon_sym_BSLASHAcrshort] = ACTIONS(12185), + [anon_sym_BSLASHACRshort] = ACTIONS(12185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12185), + [anon_sym_BSLASHacrlong] = ACTIONS(12185), + [anon_sym_BSLASHAcrlong] = ACTIONS(12185), + [anon_sym_BSLASHACRlong] = ACTIONS(12185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12185), + [anon_sym_BSLASHacrfull] = ACTIONS(12185), + [anon_sym_BSLASHAcrfull] = ACTIONS(12185), + [anon_sym_BSLASHACRfull] = ACTIONS(12185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12185), + [anon_sym_BSLASHacs] = ACTIONS(12185), + [anon_sym_BSLASHAcs] = ACTIONS(12185), + [anon_sym_BSLASHacsp] = ACTIONS(12185), + [anon_sym_BSLASHAcsp] = ACTIONS(12185), + [anon_sym_BSLASHacl] = ACTIONS(12185), + [anon_sym_BSLASHAcl] = ACTIONS(12185), + [anon_sym_BSLASHaclp] = ACTIONS(12185), + [anon_sym_BSLASHAclp] = ACTIONS(12185), + [anon_sym_BSLASHacf] = ACTIONS(12185), + [anon_sym_BSLASHAcf] = ACTIONS(12185), + [anon_sym_BSLASHacfp] = ACTIONS(12185), + [anon_sym_BSLASHAcfp] = ACTIONS(12185), + [anon_sym_BSLASHac] = ACTIONS(12185), + [anon_sym_BSLASHAc] = ACTIONS(12185), + [anon_sym_BSLASHacp] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12185), + [anon_sym_BSLASHcolor] = ACTIONS(12185), + [anon_sym_BSLASHcolorbox] = ACTIONS(12185), + [anon_sym_BSLASHtextcolor] = ACTIONS(12185), + [anon_sym_BSLASHpagecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12185), + }, + [1522] = { + [sym_generic_command_name] = ACTIONS(12181), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12181), + [aux_sym_subparagraph_token1] = ACTIONS(12181), + [anon_sym_BSLASHitem] = ACTIONS(12181), + [anon_sym_LBRACK] = ACTIONS(12179), + [anon_sym_RBRACK] = ACTIONS(12179), + [anon_sym_LBRACE] = ACTIONS(12179), + [anon_sym_RBRACE] = ACTIONS(12179), + [anon_sym_LPAREN] = ACTIONS(12179), + [anon_sym_COMMA] = ACTIONS(12179), + [anon_sym_EQ] = ACTIONS(12179), + [sym_word] = ACTIONS(12179), + [sym_param] = ACTIONS(12179), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12179), + [anon_sym_DOLLAR] = ACTIONS(12181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12179), + [anon_sym_BSLASHbegin] = ACTIONS(12181), + [anon_sym_BSLASHcaption] = ACTIONS(12181), + [anon_sym_BSLASHcite] = ACTIONS(12181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCite] = ACTIONS(12181), + [anon_sym_BSLASHnocite] = ACTIONS(12181), + [anon_sym_BSLASHcitet] = ACTIONS(12181), + [anon_sym_BSLASHcitep] = ACTIONS(12181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteauthor] = ACTIONS(12181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitetitle] = ACTIONS(12181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteyear] = ACTIONS(12181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitedate] = ACTIONS(12181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteurl] = ACTIONS(12181), + [anon_sym_BSLASHfullcite] = ACTIONS(12181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12181), + [anon_sym_BSLASHcitealt] = ACTIONS(12181), + [anon_sym_BSLASHcitealp] = ACTIONS(12181), + [anon_sym_BSLASHcitetext] = ACTIONS(12181), + [anon_sym_BSLASHparencite] = ACTIONS(12181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHParencite] = ACTIONS(12181), + [anon_sym_BSLASHfootcite] = ACTIONS(12181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12181), + [anon_sym_BSLASHtextcite] = ACTIONS(12181), + [anon_sym_BSLASHTextcite] = ACTIONS(12181), + [anon_sym_BSLASHsmartcite] = ACTIONS(12181), + [anon_sym_BSLASHSmartcite] = ACTIONS(12181), + [anon_sym_BSLASHsupercite] = ACTIONS(12181), + [anon_sym_BSLASHautocite] = ACTIONS(12181), + [anon_sym_BSLASHAutocite] = ACTIONS(12181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHvolcite] = ACTIONS(12181), + [anon_sym_BSLASHVolcite] = ACTIONS(12181), + [anon_sym_BSLASHpvolcite] = ACTIONS(12181), + [anon_sym_BSLASHPvolcite] = ACTIONS(12181), + [anon_sym_BSLASHfvolcite] = ACTIONS(12181), + [anon_sym_BSLASHftvolcite] = ACTIONS(12181), + [anon_sym_BSLASHsvolcite] = ACTIONS(12181), + [anon_sym_BSLASHSvolcite] = ACTIONS(12181), + [anon_sym_BSLASHtvolcite] = ACTIONS(12181), + [anon_sym_BSLASHTvolcite] = ACTIONS(12181), + [anon_sym_BSLASHavolcite] = ACTIONS(12181), + [anon_sym_BSLASHAvolcite] = ACTIONS(12181), + [anon_sym_BSLASHnotecite] = ACTIONS(12181), + [anon_sym_BSLASHpnotecite] = ACTIONS(12181), + [anon_sym_BSLASHPnotecite] = ACTIONS(12181), + [anon_sym_BSLASHfnotecite] = ACTIONS(12181), + [anon_sym_BSLASHusepackage] = ACTIONS(12181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12181), + [anon_sym_BSLASHinclude] = ACTIONS(12181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12181), + [anon_sym_BSLASHinput] = ACTIONS(12181), + [anon_sym_BSLASHsubfile] = ACTIONS(12181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12181), + [anon_sym_BSLASHbibliography] = ACTIONS(12181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12181), + [anon_sym_BSLASHincludesvg] = ACTIONS(12181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12181), + [anon_sym_BSLASHimport] = ACTIONS(12181), + [anon_sym_BSLASHsubimport] = ACTIONS(12181), + [anon_sym_BSLASHinputfrom] = ACTIONS(12181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12181), + [anon_sym_BSLASHincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHlabel] = ACTIONS(12181), + [anon_sym_BSLASHref] = ACTIONS(12181), + [anon_sym_BSLASHvref] = ACTIONS(12181), + [anon_sym_BSLASHVref] = ACTIONS(12181), + [anon_sym_BSLASHautoref] = ACTIONS(12181), + [anon_sym_BSLASHpageref] = ACTIONS(12181), + [anon_sym_BSLASHcref] = ACTIONS(12181), + [anon_sym_BSLASHCref] = ACTIONS(12181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnameCref] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHlabelcref] = ACTIONS(12181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12181), + [anon_sym_BSLASHeqref] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange] = ACTIONS(12181), + [anon_sym_BSLASHCrefrange] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewlabel] = ACTIONS(12181), + [anon_sym_BSLASHnewcommand] = ACTIONS(12181), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12181), + [anon_sym_BSLASHgls] = ACTIONS(12181), + [anon_sym_BSLASHGls] = ACTIONS(12181), + [anon_sym_BSLASHGLS] = ACTIONS(12181), + [anon_sym_BSLASHglspl] = ACTIONS(12181), + [anon_sym_BSLASHGlspl] = ACTIONS(12181), + [anon_sym_BSLASHGLSpl] = ACTIONS(12181), + [anon_sym_BSLASHglsdisp] = ACTIONS(12181), + [anon_sym_BSLASHglslink] = ACTIONS(12181), + [anon_sym_BSLASHglstext] = ACTIONS(12181), + [anon_sym_BSLASHGlstext] = ACTIONS(12181), + [anon_sym_BSLASHGLStext] = ACTIONS(12181), + [anon_sym_BSLASHglsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12181), + [anon_sym_BSLASHglsplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSplural] = ACTIONS(12181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHglsname] = ACTIONS(12181), + [anon_sym_BSLASHGlsname] = ACTIONS(12181), + [anon_sym_BSLASHGLSname] = ACTIONS(12181), + [anon_sym_BSLASHglssymbol] = ACTIONS(12181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12181), + [anon_sym_BSLASHglsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12181), + [anon_sym_BSLASHglsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12181), + [anon_sym_BSLASHglsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12181), + [anon_sym_BSLASHglsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12181), + [anon_sym_BSLASHglsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12181), + [anon_sym_BSLASHnewacronym] = ACTIONS(12181), + [anon_sym_BSLASHacrshort] = ACTIONS(12181), + [anon_sym_BSLASHAcrshort] = ACTIONS(12181), + [anon_sym_BSLASHACRshort] = ACTIONS(12181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12181), + [anon_sym_BSLASHacrlong] = ACTIONS(12181), + [anon_sym_BSLASHAcrlong] = ACTIONS(12181), + [anon_sym_BSLASHACRlong] = ACTIONS(12181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12181), + [anon_sym_BSLASHacrfull] = ACTIONS(12181), + [anon_sym_BSLASHAcrfull] = ACTIONS(12181), + [anon_sym_BSLASHACRfull] = ACTIONS(12181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12181), + [anon_sym_BSLASHacs] = ACTIONS(12181), + [anon_sym_BSLASHAcs] = ACTIONS(12181), + [anon_sym_BSLASHacsp] = ACTIONS(12181), + [anon_sym_BSLASHAcsp] = ACTIONS(12181), + [anon_sym_BSLASHacl] = ACTIONS(12181), + [anon_sym_BSLASHAcl] = ACTIONS(12181), + [anon_sym_BSLASHaclp] = ACTIONS(12181), + [anon_sym_BSLASHAclp] = ACTIONS(12181), + [anon_sym_BSLASHacf] = ACTIONS(12181), + [anon_sym_BSLASHAcf] = ACTIONS(12181), + [anon_sym_BSLASHacfp] = ACTIONS(12181), + [anon_sym_BSLASHAcfp] = ACTIONS(12181), + [anon_sym_BSLASHac] = ACTIONS(12181), + [anon_sym_BSLASHAc] = ACTIONS(12181), + [anon_sym_BSLASHacp] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12181), + [anon_sym_BSLASHcolor] = ACTIONS(12181), + [anon_sym_BSLASHcolorbox] = ACTIONS(12181), + [anon_sym_BSLASHtextcolor] = ACTIONS(12181), + [anon_sym_BSLASHpagecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12181), + }, + [1523] = { + [sym_generic_command_name] = ACTIONS(12349), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12349), + [aux_sym_subparagraph_token1] = ACTIONS(12349), + [anon_sym_BSLASHitem] = ACTIONS(12349), + [anon_sym_LBRACK] = ACTIONS(12347), + [anon_sym_RBRACK] = ACTIONS(12347), + [anon_sym_LBRACE] = ACTIONS(12347), + [anon_sym_RBRACE] = ACTIONS(12347), + [anon_sym_LPAREN] = ACTIONS(12347), + [anon_sym_COMMA] = ACTIONS(12347), + [anon_sym_EQ] = ACTIONS(12347), + [sym_word] = ACTIONS(12347), + [sym_param] = ACTIONS(12347), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12347), + [anon_sym_DOLLAR] = ACTIONS(12349), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12347), + [anon_sym_BSLASHbegin] = ACTIONS(12349), + [anon_sym_BSLASHcaption] = ACTIONS(12349), + [anon_sym_BSLASHcite] = ACTIONS(12349), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCite] = ACTIONS(12349), + [anon_sym_BSLASHnocite] = ACTIONS(12349), + [anon_sym_BSLASHcitet] = ACTIONS(12349), + [anon_sym_BSLASHcitep] = ACTIONS(12349), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteauthor] = ACTIONS(12349), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12349), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitetitle] = ACTIONS(12349), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteyear] = ACTIONS(12349), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitedate] = ACTIONS(12349), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteurl] = ACTIONS(12349), + [anon_sym_BSLASHfullcite] = ACTIONS(12349), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12349), + [anon_sym_BSLASHcitealt] = ACTIONS(12349), + [anon_sym_BSLASHcitealp] = ACTIONS(12349), + [anon_sym_BSLASHcitetext] = ACTIONS(12349), + [anon_sym_BSLASHparencite] = ACTIONS(12349), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHParencite] = ACTIONS(12349), + [anon_sym_BSLASHfootcite] = ACTIONS(12349), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12349), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12349), + [anon_sym_BSLASHtextcite] = ACTIONS(12349), + [anon_sym_BSLASHTextcite] = ACTIONS(12349), + [anon_sym_BSLASHsmartcite] = ACTIONS(12349), + [anon_sym_BSLASHSmartcite] = ACTIONS(12349), + [anon_sym_BSLASHsupercite] = ACTIONS(12349), + [anon_sym_BSLASHautocite] = ACTIONS(12349), + [anon_sym_BSLASHAutocite] = ACTIONS(12349), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHvolcite] = ACTIONS(12349), + [anon_sym_BSLASHVolcite] = ACTIONS(12349), + [anon_sym_BSLASHpvolcite] = ACTIONS(12349), + [anon_sym_BSLASHPvolcite] = ACTIONS(12349), + [anon_sym_BSLASHfvolcite] = ACTIONS(12349), + [anon_sym_BSLASHftvolcite] = ACTIONS(12349), + [anon_sym_BSLASHsvolcite] = ACTIONS(12349), + [anon_sym_BSLASHSvolcite] = ACTIONS(12349), + [anon_sym_BSLASHtvolcite] = ACTIONS(12349), + [anon_sym_BSLASHTvolcite] = ACTIONS(12349), + [anon_sym_BSLASHavolcite] = ACTIONS(12349), + [anon_sym_BSLASHAvolcite] = ACTIONS(12349), + [anon_sym_BSLASHnotecite] = ACTIONS(12349), + [anon_sym_BSLASHpnotecite] = ACTIONS(12349), + [anon_sym_BSLASHPnotecite] = ACTIONS(12349), + [anon_sym_BSLASHfnotecite] = ACTIONS(12349), + [anon_sym_BSLASHusepackage] = ACTIONS(12349), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12349), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12349), + [anon_sym_BSLASHinclude] = ACTIONS(12349), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12349), + [anon_sym_BSLASHinput] = ACTIONS(12349), + [anon_sym_BSLASHsubfile] = ACTIONS(12349), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12349), + [anon_sym_BSLASHbibliography] = ACTIONS(12349), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12349), + [anon_sym_BSLASHincludesvg] = ACTIONS(12349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12349), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12349), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12349), + [anon_sym_BSLASHimport] = ACTIONS(12349), + [anon_sym_BSLASHsubimport] = ACTIONS(12349), + [anon_sym_BSLASHinputfrom] = ACTIONS(12349), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12349), + [anon_sym_BSLASHincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHlabel] = ACTIONS(12349), + [anon_sym_BSLASHref] = ACTIONS(12349), + [anon_sym_BSLASHvref] = ACTIONS(12349), + [anon_sym_BSLASHVref] = ACTIONS(12349), + [anon_sym_BSLASHautoref] = ACTIONS(12349), + [anon_sym_BSLASHpageref] = ACTIONS(12349), + [anon_sym_BSLASHcref] = ACTIONS(12349), + [anon_sym_BSLASHCref] = ACTIONS(12349), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnameCref] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHlabelcref] = ACTIONS(12349), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12349), + [anon_sym_BSLASHeqref] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange] = ACTIONS(12349), + [anon_sym_BSLASHCrefrange] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewlabel] = ACTIONS(12349), + [anon_sym_BSLASHnewcommand] = ACTIONS(12349), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12349), + [anon_sym_BSLASHgls] = ACTIONS(12349), + [anon_sym_BSLASHGls] = ACTIONS(12349), + [anon_sym_BSLASHGLS] = ACTIONS(12349), + [anon_sym_BSLASHglspl] = ACTIONS(12349), + [anon_sym_BSLASHGlspl] = ACTIONS(12349), + [anon_sym_BSLASHGLSpl] = ACTIONS(12349), + [anon_sym_BSLASHglsdisp] = ACTIONS(12349), + [anon_sym_BSLASHglslink] = ACTIONS(12349), + [anon_sym_BSLASHglstext] = ACTIONS(12349), + [anon_sym_BSLASHGlstext] = ACTIONS(12349), + [anon_sym_BSLASHGLStext] = ACTIONS(12349), + [anon_sym_BSLASHglsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12349), + [anon_sym_BSLASHglsplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSplural] = ACTIONS(12349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHglsname] = ACTIONS(12349), + [anon_sym_BSLASHGlsname] = ACTIONS(12349), + [anon_sym_BSLASHGLSname] = ACTIONS(12349), + [anon_sym_BSLASHglssymbol] = ACTIONS(12349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12349), + [anon_sym_BSLASHglsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12349), + [anon_sym_BSLASHglsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12349), + [anon_sym_BSLASHglsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12349), + [anon_sym_BSLASHglsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12349), + [anon_sym_BSLASHglsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12349), + [anon_sym_BSLASHnewacronym] = ACTIONS(12349), + [anon_sym_BSLASHacrshort] = ACTIONS(12349), + [anon_sym_BSLASHAcrshort] = ACTIONS(12349), + [anon_sym_BSLASHACRshort] = ACTIONS(12349), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12349), + [anon_sym_BSLASHacrlong] = ACTIONS(12349), + [anon_sym_BSLASHAcrlong] = ACTIONS(12349), + [anon_sym_BSLASHACRlong] = ACTIONS(12349), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12349), + [anon_sym_BSLASHacrfull] = ACTIONS(12349), + [anon_sym_BSLASHAcrfull] = ACTIONS(12349), + [anon_sym_BSLASHACRfull] = ACTIONS(12349), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12349), + [anon_sym_BSLASHacs] = ACTIONS(12349), + [anon_sym_BSLASHAcs] = ACTIONS(12349), + [anon_sym_BSLASHacsp] = ACTIONS(12349), + [anon_sym_BSLASHAcsp] = ACTIONS(12349), + [anon_sym_BSLASHacl] = ACTIONS(12349), + [anon_sym_BSLASHAcl] = ACTIONS(12349), + [anon_sym_BSLASHaclp] = ACTIONS(12349), + [anon_sym_BSLASHAclp] = ACTIONS(12349), + [anon_sym_BSLASHacf] = ACTIONS(12349), + [anon_sym_BSLASHAcf] = ACTIONS(12349), + [anon_sym_BSLASHacfp] = ACTIONS(12349), + [anon_sym_BSLASHAcfp] = ACTIONS(12349), + [anon_sym_BSLASHac] = ACTIONS(12349), + [anon_sym_BSLASHAc] = ACTIONS(12349), + [anon_sym_BSLASHacp] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12349), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12349), + [anon_sym_BSLASHcolor] = ACTIONS(12349), + [anon_sym_BSLASHcolorbox] = ACTIONS(12349), + [anon_sym_BSLASHtextcolor] = ACTIONS(12349), + [anon_sym_BSLASHpagecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12349), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12349), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12349), + }, + [1524] = { + [sym_generic_command_name] = ACTIONS(12120), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12120), + [aux_sym_subparagraph_token1] = ACTIONS(12120), + [anon_sym_BSLASHitem] = ACTIONS(12120), + [anon_sym_LBRACK] = ACTIONS(12118), + [anon_sym_RBRACK] = ACTIONS(12118), + [anon_sym_LBRACE] = ACTIONS(12118), + [anon_sym_RBRACE] = ACTIONS(12118), + [anon_sym_LPAREN] = ACTIONS(12118), + [anon_sym_COMMA] = ACTIONS(12118), + [anon_sym_EQ] = ACTIONS(12118), + [sym_word] = ACTIONS(12118), + [sym_param] = ACTIONS(12118), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12118), + [anon_sym_DOLLAR] = ACTIONS(12120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12118), + [anon_sym_BSLASHbegin] = ACTIONS(12120), + [anon_sym_BSLASHcaption] = ACTIONS(12120), + [anon_sym_BSLASHcite] = ACTIONS(12120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCite] = ACTIONS(12120), + [anon_sym_BSLASHnocite] = ACTIONS(12120), + [anon_sym_BSLASHcitet] = ACTIONS(12120), + [anon_sym_BSLASHcitep] = ACTIONS(12120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteauthor] = ACTIONS(12120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitetitle] = ACTIONS(12120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteyear] = ACTIONS(12120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitedate] = ACTIONS(12120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteurl] = ACTIONS(12120), + [anon_sym_BSLASHfullcite] = ACTIONS(12120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12120), + [anon_sym_BSLASHcitealt] = ACTIONS(12120), + [anon_sym_BSLASHcitealp] = ACTIONS(12120), + [anon_sym_BSLASHcitetext] = ACTIONS(12120), + [anon_sym_BSLASHparencite] = ACTIONS(12120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHParencite] = ACTIONS(12120), + [anon_sym_BSLASHfootcite] = ACTIONS(12120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12120), + [anon_sym_BSLASHtextcite] = ACTIONS(12120), + [anon_sym_BSLASHTextcite] = ACTIONS(12120), + [anon_sym_BSLASHsmartcite] = ACTIONS(12120), + [anon_sym_BSLASHSmartcite] = ACTIONS(12120), + [anon_sym_BSLASHsupercite] = ACTIONS(12120), + [anon_sym_BSLASHautocite] = ACTIONS(12120), + [anon_sym_BSLASHAutocite] = ACTIONS(12120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHvolcite] = ACTIONS(12120), + [anon_sym_BSLASHVolcite] = ACTIONS(12120), + [anon_sym_BSLASHpvolcite] = ACTIONS(12120), + [anon_sym_BSLASHPvolcite] = ACTIONS(12120), + [anon_sym_BSLASHfvolcite] = ACTIONS(12120), + [anon_sym_BSLASHftvolcite] = ACTIONS(12120), + [anon_sym_BSLASHsvolcite] = ACTIONS(12120), + [anon_sym_BSLASHSvolcite] = ACTIONS(12120), + [anon_sym_BSLASHtvolcite] = ACTIONS(12120), + [anon_sym_BSLASHTvolcite] = ACTIONS(12120), + [anon_sym_BSLASHavolcite] = ACTIONS(12120), + [anon_sym_BSLASHAvolcite] = ACTIONS(12120), + [anon_sym_BSLASHnotecite] = ACTIONS(12120), + [anon_sym_BSLASHpnotecite] = ACTIONS(12120), + [anon_sym_BSLASHPnotecite] = ACTIONS(12120), + [anon_sym_BSLASHfnotecite] = ACTIONS(12120), + [anon_sym_BSLASHusepackage] = ACTIONS(12120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12120), + [anon_sym_BSLASHinclude] = ACTIONS(12120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12120), + [anon_sym_BSLASHinput] = ACTIONS(12120), + [anon_sym_BSLASHsubfile] = ACTIONS(12120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12120), + [anon_sym_BSLASHbibliography] = ACTIONS(12120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12120), + [anon_sym_BSLASHincludesvg] = ACTIONS(12120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12120), + [anon_sym_BSLASHimport] = ACTIONS(12120), + [anon_sym_BSLASHsubimport] = ACTIONS(12120), + [anon_sym_BSLASHinputfrom] = ACTIONS(12120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12120), + [anon_sym_BSLASHincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHlabel] = ACTIONS(12120), + [anon_sym_BSLASHref] = ACTIONS(12120), + [anon_sym_BSLASHvref] = ACTIONS(12120), + [anon_sym_BSLASHVref] = ACTIONS(12120), + [anon_sym_BSLASHautoref] = ACTIONS(12120), + [anon_sym_BSLASHpageref] = ACTIONS(12120), + [anon_sym_BSLASHcref] = ACTIONS(12120), + [anon_sym_BSLASHCref] = ACTIONS(12120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnameCref] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHlabelcref] = ACTIONS(12120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12120), + [anon_sym_BSLASHeqref] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange] = ACTIONS(12120), + [anon_sym_BSLASHCrefrange] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewlabel] = ACTIONS(12120), + [anon_sym_BSLASHnewcommand] = ACTIONS(12120), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12120), + [anon_sym_BSLASHgls] = ACTIONS(12120), + [anon_sym_BSLASHGls] = ACTIONS(12120), + [anon_sym_BSLASHGLS] = ACTIONS(12120), + [anon_sym_BSLASHglspl] = ACTIONS(12120), + [anon_sym_BSLASHGlspl] = ACTIONS(12120), + [anon_sym_BSLASHGLSpl] = ACTIONS(12120), + [anon_sym_BSLASHglsdisp] = ACTIONS(12120), + [anon_sym_BSLASHglslink] = ACTIONS(12120), + [anon_sym_BSLASHglstext] = ACTIONS(12120), + [anon_sym_BSLASHGlstext] = ACTIONS(12120), + [anon_sym_BSLASHGLStext] = ACTIONS(12120), + [anon_sym_BSLASHglsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12120), + [anon_sym_BSLASHglsplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSplural] = ACTIONS(12120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHglsname] = ACTIONS(12120), + [anon_sym_BSLASHGlsname] = ACTIONS(12120), + [anon_sym_BSLASHGLSname] = ACTIONS(12120), + [anon_sym_BSLASHglssymbol] = ACTIONS(12120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12120), + [anon_sym_BSLASHglsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12120), + [anon_sym_BSLASHglsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12120), + [anon_sym_BSLASHglsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12120), + [anon_sym_BSLASHglsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12120), + [anon_sym_BSLASHglsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12120), + [anon_sym_BSLASHnewacronym] = ACTIONS(12120), + [anon_sym_BSLASHacrshort] = ACTIONS(12120), + [anon_sym_BSLASHAcrshort] = ACTIONS(12120), + [anon_sym_BSLASHACRshort] = ACTIONS(12120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12120), + [anon_sym_BSLASHacrlong] = ACTIONS(12120), + [anon_sym_BSLASHAcrlong] = ACTIONS(12120), + [anon_sym_BSLASHACRlong] = ACTIONS(12120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12120), + [anon_sym_BSLASHacrfull] = ACTIONS(12120), + [anon_sym_BSLASHAcrfull] = ACTIONS(12120), + [anon_sym_BSLASHACRfull] = ACTIONS(12120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12120), + [anon_sym_BSLASHacs] = ACTIONS(12120), + [anon_sym_BSLASHAcs] = ACTIONS(12120), + [anon_sym_BSLASHacsp] = ACTIONS(12120), + [anon_sym_BSLASHAcsp] = ACTIONS(12120), + [anon_sym_BSLASHacl] = ACTIONS(12120), + [anon_sym_BSLASHAcl] = ACTIONS(12120), + [anon_sym_BSLASHaclp] = ACTIONS(12120), + [anon_sym_BSLASHAclp] = ACTIONS(12120), + [anon_sym_BSLASHacf] = ACTIONS(12120), + [anon_sym_BSLASHAcf] = ACTIONS(12120), + [anon_sym_BSLASHacfp] = ACTIONS(12120), + [anon_sym_BSLASHAcfp] = ACTIONS(12120), + [anon_sym_BSLASHac] = ACTIONS(12120), + [anon_sym_BSLASHAc] = ACTIONS(12120), + [anon_sym_BSLASHacp] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12120), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12120), + [anon_sym_BSLASHcolor] = ACTIONS(12120), + [anon_sym_BSLASHcolorbox] = ACTIONS(12120), + [anon_sym_BSLASHtextcolor] = ACTIONS(12120), + [anon_sym_BSLASHpagecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12120), + }, + [1525] = { + [sym_generic_command_name] = ACTIONS(12116), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12116), + [aux_sym_subparagraph_token1] = ACTIONS(12116), + [anon_sym_BSLASHitem] = ACTIONS(12116), + [anon_sym_LBRACK] = ACTIONS(12114), + [anon_sym_RBRACK] = ACTIONS(12114), + [anon_sym_LBRACE] = ACTIONS(12114), + [anon_sym_RBRACE] = ACTIONS(12114), + [anon_sym_LPAREN] = ACTIONS(12114), + [anon_sym_COMMA] = ACTIONS(12114), + [anon_sym_EQ] = ACTIONS(12114), + [sym_word] = ACTIONS(12114), + [sym_param] = ACTIONS(12114), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12114), + [anon_sym_DOLLAR] = ACTIONS(12116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12114), + [anon_sym_BSLASHbegin] = ACTIONS(12116), + [anon_sym_BSLASHcaption] = ACTIONS(12116), + [anon_sym_BSLASHcite] = ACTIONS(12116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCite] = ACTIONS(12116), + [anon_sym_BSLASHnocite] = ACTIONS(12116), + [anon_sym_BSLASHcitet] = ACTIONS(12116), + [anon_sym_BSLASHcitep] = ACTIONS(12116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteauthor] = ACTIONS(12116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitetitle] = ACTIONS(12116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteyear] = ACTIONS(12116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitedate] = ACTIONS(12116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteurl] = ACTIONS(12116), + [anon_sym_BSLASHfullcite] = ACTIONS(12116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12116), + [anon_sym_BSLASHcitealt] = ACTIONS(12116), + [anon_sym_BSLASHcitealp] = ACTIONS(12116), + [anon_sym_BSLASHcitetext] = ACTIONS(12116), + [anon_sym_BSLASHparencite] = ACTIONS(12116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHParencite] = ACTIONS(12116), + [anon_sym_BSLASHfootcite] = ACTIONS(12116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12116), + [anon_sym_BSLASHtextcite] = ACTIONS(12116), + [anon_sym_BSLASHTextcite] = ACTIONS(12116), + [anon_sym_BSLASHsmartcite] = ACTIONS(12116), + [anon_sym_BSLASHSmartcite] = ACTIONS(12116), + [anon_sym_BSLASHsupercite] = ACTIONS(12116), + [anon_sym_BSLASHautocite] = ACTIONS(12116), + [anon_sym_BSLASHAutocite] = ACTIONS(12116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHvolcite] = ACTIONS(12116), + [anon_sym_BSLASHVolcite] = ACTIONS(12116), + [anon_sym_BSLASHpvolcite] = ACTIONS(12116), + [anon_sym_BSLASHPvolcite] = ACTIONS(12116), + [anon_sym_BSLASHfvolcite] = ACTIONS(12116), + [anon_sym_BSLASHftvolcite] = ACTIONS(12116), + [anon_sym_BSLASHsvolcite] = ACTIONS(12116), + [anon_sym_BSLASHSvolcite] = ACTIONS(12116), + [anon_sym_BSLASHtvolcite] = ACTIONS(12116), + [anon_sym_BSLASHTvolcite] = ACTIONS(12116), + [anon_sym_BSLASHavolcite] = ACTIONS(12116), + [anon_sym_BSLASHAvolcite] = ACTIONS(12116), + [anon_sym_BSLASHnotecite] = ACTIONS(12116), + [anon_sym_BSLASHpnotecite] = ACTIONS(12116), + [anon_sym_BSLASHPnotecite] = ACTIONS(12116), + [anon_sym_BSLASHfnotecite] = ACTIONS(12116), + [anon_sym_BSLASHusepackage] = ACTIONS(12116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12116), + [anon_sym_BSLASHinclude] = ACTIONS(12116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12116), + [anon_sym_BSLASHinput] = ACTIONS(12116), + [anon_sym_BSLASHsubfile] = ACTIONS(12116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12116), + [anon_sym_BSLASHbibliography] = ACTIONS(12116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12116), + [anon_sym_BSLASHincludesvg] = ACTIONS(12116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12116), + [anon_sym_BSLASHimport] = ACTIONS(12116), + [anon_sym_BSLASHsubimport] = ACTIONS(12116), + [anon_sym_BSLASHinputfrom] = ACTIONS(12116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12116), + [anon_sym_BSLASHincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHlabel] = ACTIONS(12116), + [anon_sym_BSLASHref] = ACTIONS(12116), + [anon_sym_BSLASHvref] = ACTIONS(12116), + [anon_sym_BSLASHVref] = ACTIONS(12116), + [anon_sym_BSLASHautoref] = ACTIONS(12116), + [anon_sym_BSLASHpageref] = ACTIONS(12116), + [anon_sym_BSLASHcref] = ACTIONS(12116), + [anon_sym_BSLASHCref] = ACTIONS(12116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnameCref] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHlabelcref] = ACTIONS(12116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12116), + [anon_sym_BSLASHeqref] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange] = ACTIONS(12116), + [anon_sym_BSLASHCrefrange] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewlabel] = ACTIONS(12116), + [anon_sym_BSLASHnewcommand] = ACTIONS(12116), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12116), + [anon_sym_BSLASHgls] = ACTIONS(12116), + [anon_sym_BSLASHGls] = ACTIONS(12116), + [anon_sym_BSLASHGLS] = ACTIONS(12116), + [anon_sym_BSLASHglspl] = ACTIONS(12116), + [anon_sym_BSLASHGlspl] = ACTIONS(12116), + [anon_sym_BSLASHGLSpl] = ACTIONS(12116), + [anon_sym_BSLASHglsdisp] = ACTIONS(12116), + [anon_sym_BSLASHglslink] = ACTIONS(12116), + [anon_sym_BSLASHglstext] = ACTIONS(12116), + [anon_sym_BSLASHGlstext] = ACTIONS(12116), + [anon_sym_BSLASHGLStext] = ACTIONS(12116), + [anon_sym_BSLASHglsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12116), + [anon_sym_BSLASHglsplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSplural] = ACTIONS(12116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHglsname] = ACTIONS(12116), + [anon_sym_BSLASHGlsname] = ACTIONS(12116), + [anon_sym_BSLASHGLSname] = ACTIONS(12116), + [anon_sym_BSLASHglssymbol] = ACTIONS(12116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12116), + [anon_sym_BSLASHglsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12116), + [anon_sym_BSLASHglsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12116), + [anon_sym_BSLASHglsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12116), + [anon_sym_BSLASHglsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12116), + [anon_sym_BSLASHglsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12116), + [anon_sym_BSLASHnewacronym] = ACTIONS(12116), + [anon_sym_BSLASHacrshort] = ACTIONS(12116), + [anon_sym_BSLASHAcrshort] = ACTIONS(12116), + [anon_sym_BSLASHACRshort] = ACTIONS(12116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12116), + [anon_sym_BSLASHacrlong] = ACTIONS(12116), + [anon_sym_BSLASHAcrlong] = ACTIONS(12116), + [anon_sym_BSLASHACRlong] = ACTIONS(12116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12116), + [anon_sym_BSLASHacrfull] = ACTIONS(12116), + [anon_sym_BSLASHAcrfull] = ACTIONS(12116), + [anon_sym_BSLASHACRfull] = ACTIONS(12116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12116), + [anon_sym_BSLASHacs] = ACTIONS(12116), + [anon_sym_BSLASHAcs] = ACTIONS(12116), + [anon_sym_BSLASHacsp] = ACTIONS(12116), + [anon_sym_BSLASHAcsp] = ACTIONS(12116), + [anon_sym_BSLASHacl] = ACTIONS(12116), + [anon_sym_BSLASHAcl] = ACTIONS(12116), + [anon_sym_BSLASHaclp] = ACTIONS(12116), + [anon_sym_BSLASHAclp] = ACTIONS(12116), + [anon_sym_BSLASHacf] = ACTIONS(12116), + [anon_sym_BSLASHAcf] = ACTIONS(12116), + [anon_sym_BSLASHacfp] = ACTIONS(12116), + [anon_sym_BSLASHAcfp] = ACTIONS(12116), + [anon_sym_BSLASHac] = ACTIONS(12116), + [anon_sym_BSLASHAc] = ACTIONS(12116), + [anon_sym_BSLASHacp] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12116), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12116), + [anon_sym_BSLASHcolor] = ACTIONS(12116), + [anon_sym_BSLASHcolorbox] = ACTIONS(12116), + [anon_sym_BSLASHtextcolor] = ACTIONS(12116), + [anon_sym_BSLASHpagecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12116), + }, + [1526] = { + [sym_generic_command_name] = ACTIONS(12193), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12193), + [aux_sym_subparagraph_token1] = ACTIONS(12193), + [anon_sym_BSLASHitem] = ACTIONS(12193), + [anon_sym_LBRACK] = ACTIONS(12191), + [anon_sym_RBRACK] = ACTIONS(12191), + [anon_sym_LBRACE] = ACTIONS(12191), + [anon_sym_RBRACE] = ACTIONS(12191), + [anon_sym_LPAREN] = ACTIONS(12191), + [anon_sym_COMMA] = ACTIONS(12191), + [anon_sym_EQ] = ACTIONS(12191), + [sym_word] = ACTIONS(12191), + [sym_param] = ACTIONS(12191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12191), + [anon_sym_DOLLAR] = ACTIONS(12193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12191), + [anon_sym_BSLASHbegin] = ACTIONS(12193), + [anon_sym_BSLASHcaption] = ACTIONS(12193), + [anon_sym_BSLASHcite] = ACTIONS(12193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCite] = ACTIONS(12193), + [anon_sym_BSLASHnocite] = ACTIONS(12193), + [anon_sym_BSLASHcitet] = ACTIONS(12193), + [anon_sym_BSLASHcitep] = ACTIONS(12193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteauthor] = ACTIONS(12193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitetitle] = ACTIONS(12193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteyear] = ACTIONS(12193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitedate] = ACTIONS(12193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteurl] = ACTIONS(12193), + [anon_sym_BSLASHfullcite] = ACTIONS(12193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12193), + [anon_sym_BSLASHcitealt] = ACTIONS(12193), + [anon_sym_BSLASHcitealp] = ACTIONS(12193), + [anon_sym_BSLASHcitetext] = ACTIONS(12193), + [anon_sym_BSLASHparencite] = ACTIONS(12193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHParencite] = ACTIONS(12193), + [anon_sym_BSLASHfootcite] = ACTIONS(12193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12193), + [anon_sym_BSLASHtextcite] = ACTIONS(12193), + [anon_sym_BSLASHTextcite] = ACTIONS(12193), + [anon_sym_BSLASHsmartcite] = ACTIONS(12193), + [anon_sym_BSLASHSmartcite] = ACTIONS(12193), + [anon_sym_BSLASHsupercite] = ACTIONS(12193), + [anon_sym_BSLASHautocite] = ACTIONS(12193), + [anon_sym_BSLASHAutocite] = ACTIONS(12193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHvolcite] = ACTIONS(12193), + [anon_sym_BSLASHVolcite] = ACTIONS(12193), + [anon_sym_BSLASHpvolcite] = ACTIONS(12193), + [anon_sym_BSLASHPvolcite] = ACTIONS(12193), + [anon_sym_BSLASHfvolcite] = ACTIONS(12193), + [anon_sym_BSLASHftvolcite] = ACTIONS(12193), + [anon_sym_BSLASHsvolcite] = ACTIONS(12193), + [anon_sym_BSLASHSvolcite] = ACTIONS(12193), + [anon_sym_BSLASHtvolcite] = ACTIONS(12193), + [anon_sym_BSLASHTvolcite] = ACTIONS(12193), + [anon_sym_BSLASHavolcite] = ACTIONS(12193), + [anon_sym_BSLASHAvolcite] = ACTIONS(12193), + [anon_sym_BSLASHnotecite] = ACTIONS(12193), + [anon_sym_BSLASHpnotecite] = ACTIONS(12193), + [anon_sym_BSLASHPnotecite] = ACTIONS(12193), + [anon_sym_BSLASHfnotecite] = ACTIONS(12193), + [anon_sym_BSLASHusepackage] = ACTIONS(12193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12193), + [anon_sym_BSLASHinclude] = ACTIONS(12193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12193), + [anon_sym_BSLASHinput] = ACTIONS(12193), + [anon_sym_BSLASHsubfile] = ACTIONS(12193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12193), + [anon_sym_BSLASHbibliography] = ACTIONS(12193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12193), + [anon_sym_BSLASHincludesvg] = ACTIONS(12193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12193), + [anon_sym_BSLASHimport] = ACTIONS(12193), + [anon_sym_BSLASHsubimport] = ACTIONS(12193), + [anon_sym_BSLASHinputfrom] = ACTIONS(12193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12193), + [anon_sym_BSLASHincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHlabel] = ACTIONS(12193), + [anon_sym_BSLASHref] = ACTIONS(12193), + [anon_sym_BSLASHvref] = ACTIONS(12193), + [anon_sym_BSLASHVref] = ACTIONS(12193), + [anon_sym_BSLASHautoref] = ACTIONS(12193), + [anon_sym_BSLASHpageref] = ACTIONS(12193), + [anon_sym_BSLASHcref] = ACTIONS(12193), + [anon_sym_BSLASHCref] = ACTIONS(12193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnameCref] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHlabelcref] = ACTIONS(12193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12193), + [anon_sym_BSLASHeqref] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange] = ACTIONS(12193), + [anon_sym_BSLASHCrefrange] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewlabel] = ACTIONS(12193), + [anon_sym_BSLASHnewcommand] = ACTIONS(12193), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12193), + [anon_sym_BSLASHgls] = ACTIONS(12193), + [anon_sym_BSLASHGls] = ACTIONS(12193), + [anon_sym_BSLASHGLS] = ACTIONS(12193), + [anon_sym_BSLASHglspl] = ACTIONS(12193), + [anon_sym_BSLASHGlspl] = ACTIONS(12193), + [anon_sym_BSLASHGLSpl] = ACTIONS(12193), + [anon_sym_BSLASHglsdisp] = ACTIONS(12193), + [anon_sym_BSLASHglslink] = ACTIONS(12193), + [anon_sym_BSLASHglstext] = ACTIONS(12193), + [anon_sym_BSLASHGlstext] = ACTIONS(12193), + [anon_sym_BSLASHGLStext] = ACTIONS(12193), + [anon_sym_BSLASHglsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12193), + [anon_sym_BSLASHglsplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSplural] = ACTIONS(12193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHglsname] = ACTIONS(12193), + [anon_sym_BSLASHGlsname] = ACTIONS(12193), + [anon_sym_BSLASHGLSname] = ACTIONS(12193), + [anon_sym_BSLASHglssymbol] = ACTIONS(12193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12193), + [anon_sym_BSLASHglsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12193), + [anon_sym_BSLASHglsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12193), + [anon_sym_BSLASHglsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12193), + [anon_sym_BSLASHglsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12193), + [anon_sym_BSLASHglsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12193), + [anon_sym_BSLASHnewacronym] = ACTIONS(12193), + [anon_sym_BSLASHacrshort] = ACTIONS(12193), + [anon_sym_BSLASHAcrshort] = ACTIONS(12193), + [anon_sym_BSLASHACRshort] = ACTIONS(12193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12193), + [anon_sym_BSLASHacrlong] = ACTIONS(12193), + [anon_sym_BSLASHAcrlong] = ACTIONS(12193), + [anon_sym_BSLASHACRlong] = ACTIONS(12193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12193), + [anon_sym_BSLASHacrfull] = ACTIONS(12193), + [anon_sym_BSLASHAcrfull] = ACTIONS(12193), + [anon_sym_BSLASHACRfull] = ACTIONS(12193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12193), + [anon_sym_BSLASHacs] = ACTIONS(12193), + [anon_sym_BSLASHAcs] = ACTIONS(12193), + [anon_sym_BSLASHacsp] = ACTIONS(12193), + [anon_sym_BSLASHAcsp] = ACTIONS(12193), + [anon_sym_BSLASHacl] = ACTIONS(12193), + [anon_sym_BSLASHAcl] = ACTIONS(12193), + [anon_sym_BSLASHaclp] = ACTIONS(12193), + [anon_sym_BSLASHAclp] = ACTIONS(12193), + [anon_sym_BSLASHacf] = ACTIONS(12193), + [anon_sym_BSLASHAcf] = ACTIONS(12193), + [anon_sym_BSLASHacfp] = ACTIONS(12193), + [anon_sym_BSLASHAcfp] = ACTIONS(12193), + [anon_sym_BSLASHac] = ACTIONS(12193), + [anon_sym_BSLASHAc] = ACTIONS(12193), + [anon_sym_BSLASHacp] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12193), + [anon_sym_BSLASHcolor] = ACTIONS(12193), + [anon_sym_BSLASHcolorbox] = ACTIONS(12193), + [anon_sym_BSLASHtextcolor] = ACTIONS(12193), + [anon_sym_BSLASHpagecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12193), + }, + [1527] = { + [sym_generic_command_name] = ACTIONS(12201), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12201), + [aux_sym_subparagraph_token1] = ACTIONS(12201), + [anon_sym_BSLASHitem] = ACTIONS(12201), + [anon_sym_LBRACK] = ACTIONS(12199), + [anon_sym_RBRACK] = ACTIONS(12199), + [anon_sym_LBRACE] = ACTIONS(12199), + [anon_sym_RBRACE] = ACTIONS(12199), + [anon_sym_LPAREN] = ACTIONS(12199), + [anon_sym_COMMA] = ACTIONS(12199), + [anon_sym_EQ] = ACTIONS(12199), + [sym_word] = ACTIONS(12199), + [sym_param] = ACTIONS(12199), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12199), + [anon_sym_DOLLAR] = ACTIONS(12201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12199), + [anon_sym_BSLASHbegin] = ACTIONS(12201), + [anon_sym_BSLASHcaption] = ACTIONS(12201), + [anon_sym_BSLASHcite] = ACTIONS(12201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCite] = ACTIONS(12201), + [anon_sym_BSLASHnocite] = ACTIONS(12201), + [anon_sym_BSLASHcitet] = ACTIONS(12201), + [anon_sym_BSLASHcitep] = ACTIONS(12201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteauthor] = ACTIONS(12201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitetitle] = ACTIONS(12201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteyear] = ACTIONS(12201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitedate] = ACTIONS(12201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteurl] = ACTIONS(12201), + [anon_sym_BSLASHfullcite] = ACTIONS(12201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12201), + [anon_sym_BSLASHcitealt] = ACTIONS(12201), + [anon_sym_BSLASHcitealp] = ACTIONS(12201), + [anon_sym_BSLASHcitetext] = ACTIONS(12201), + [anon_sym_BSLASHparencite] = ACTIONS(12201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHParencite] = ACTIONS(12201), + [anon_sym_BSLASHfootcite] = ACTIONS(12201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12201), + [anon_sym_BSLASHtextcite] = ACTIONS(12201), + [anon_sym_BSLASHTextcite] = ACTIONS(12201), + [anon_sym_BSLASHsmartcite] = ACTIONS(12201), + [anon_sym_BSLASHSmartcite] = ACTIONS(12201), + [anon_sym_BSLASHsupercite] = ACTIONS(12201), + [anon_sym_BSLASHautocite] = ACTIONS(12201), + [anon_sym_BSLASHAutocite] = ACTIONS(12201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHvolcite] = ACTIONS(12201), + [anon_sym_BSLASHVolcite] = ACTIONS(12201), + [anon_sym_BSLASHpvolcite] = ACTIONS(12201), + [anon_sym_BSLASHPvolcite] = ACTIONS(12201), + [anon_sym_BSLASHfvolcite] = ACTIONS(12201), + [anon_sym_BSLASHftvolcite] = ACTIONS(12201), + [anon_sym_BSLASHsvolcite] = ACTIONS(12201), + [anon_sym_BSLASHSvolcite] = ACTIONS(12201), + [anon_sym_BSLASHtvolcite] = ACTIONS(12201), + [anon_sym_BSLASHTvolcite] = ACTIONS(12201), + [anon_sym_BSLASHavolcite] = ACTIONS(12201), + [anon_sym_BSLASHAvolcite] = ACTIONS(12201), + [anon_sym_BSLASHnotecite] = ACTIONS(12201), + [anon_sym_BSLASHpnotecite] = ACTIONS(12201), + [anon_sym_BSLASHPnotecite] = ACTIONS(12201), + [anon_sym_BSLASHfnotecite] = ACTIONS(12201), + [anon_sym_BSLASHusepackage] = ACTIONS(12201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12201), + [anon_sym_BSLASHinclude] = ACTIONS(12201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12201), + [anon_sym_BSLASHinput] = ACTIONS(12201), + [anon_sym_BSLASHsubfile] = ACTIONS(12201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12201), + [anon_sym_BSLASHbibliography] = ACTIONS(12201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12201), + [anon_sym_BSLASHincludesvg] = ACTIONS(12201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12201), + [anon_sym_BSLASHimport] = ACTIONS(12201), + [anon_sym_BSLASHsubimport] = ACTIONS(12201), + [anon_sym_BSLASHinputfrom] = ACTIONS(12201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12201), + [anon_sym_BSLASHincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHlabel] = ACTIONS(12201), + [anon_sym_BSLASHref] = ACTIONS(12201), + [anon_sym_BSLASHvref] = ACTIONS(12201), + [anon_sym_BSLASHVref] = ACTIONS(12201), + [anon_sym_BSLASHautoref] = ACTIONS(12201), + [anon_sym_BSLASHpageref] = ACTIONS(12201), + [anon_sym_BSLASHcref] = ACTIONS(12201), + [anon_sym_BSLASHCref] = ACTIONS(12201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnameCref] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHlabelcref] = ACTIONS(12201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12201), + [anon_sym_BSLASHeqref] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange] = ACTIONS(12201), + [anon_sym_BSLASHCrefrange] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewlabel] = ACTIONS(12201), + [anon_sym_BSLASHnewcommand] = ACTIONS(12201), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12201), + [anon_sym_BSLASHgls] = ACTIONS(12201), + [anon_sym_BSLASHGls] = ACTIONS(12201), + [anon_sym_BSLASHGLS] = ACTIONS(12201), + [anon_sym_BSLASHglspl] = ACTIONS(12201), + [anon_sym_BSLASHGlspl] = ACTIONS(12201), + [anon_sym_BSLASHGLSpl] = ACTIONS(12201), + [anon_sym_BSLASHglsdisp] = ACTIONS(12201), + [anon_sym_BSLASHglslink] = ACTIONS(12201), + [anon_sym_BSLASHglstext] = ACTIONS(12201), + [anon_sym_BSLASHGlstext] = ACTIONS(12201), + [anon_sym_BSLASHGLStext] = ACTIONS(12201), + [anon_sym_BSLASHglsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12201), + [anon_sym_BSLASHglsplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSplural] = ACTIONS(12201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHglsname] = ACTIONS(12201), + [anon_sym_BSLASHGlsname] = ACTIONS(12201), + [anon_sym_BSLASHGLSname] = ACTIONS(12201), + [anon_sym_BSLASHglssymbol] = ACTIONS(12201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12201), + [anon_sym_BSLASHglsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12201), + [anon_sym_BSLASHglsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12201), + [anon_sym_BSLASHglsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12201), + [anon_sym_BSLASHglsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12201), + [anon_sym_BSLASHglsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12201), + [anon_sym_BSLASHnewacronym] = ACTIONS(12201), + [anon_sym_BSLASHacrshort] = ACTIONS(12201), + [anon_sym_BSLASHAcrshort] = ACTIONS(12201), + [anon_sym_BSLASHACRshort] = ACTIONS(12201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12201), + [anon_sym_BSLASHacrlong] = ACTIONS(12201), + [anon_sym_BSLASHAcrlong] = ACTIONS(12201), + [anon_sym_BSLASHACRlong] = ACTIONS(12201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12201), + [anon_sym_BSLASHacrfull] = ACTIONS(12201), + [anon_sym_BSLASHAcrfull] = ACTIONS(12201), + [anon_sym_BSLASHACRfull] = ACTIONS(12201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12201), + [anon_sym_BSLASHacs] = ACTIONS(12201), + [anon_sym_BSLASHAcs] = ACTIONS(12201), + [anon_sym_BSLASHacsp] = ACTIONS(12201), + [anon_sym_BSLASHAcsp] = ACTIONS(12201), + [anon_sym_BSLASHacl] = ACTIONS(12201), + [anon_sym_BSLASHAcl] = ACTIONS(12201), + [anon_sym_BSLASHaclp] = ACTIONS(12201), + [anon_sym_BSLASHAclp] = ACTIONS(12201), + [anon_sym_BSLASHacf] = ACTIONS(12201), + [anon_sym_BSLASHAcf] = ACTIONS(12201), + [anon_sym_BSLASHacfp] = ACTIONS(12201), + [anon_sym_BSLASHAcfp] = ACTIONS(12201), + [anon_sym_BSLASHac] = ACTIONS(12201), + [anon_sym_BSLASHAc] = ACTIONS(12201), + [anon_sym_BSLASHacp] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12201), + [anon_sym_BSLASHcolor] = ACTIONS(12201), + [anon_sym_BSLASHcolorbox] = ACTIONS(12201), + [anon_sym_BSLASHtextcolor] = ACTIONS(12201), + [anon_sym_BSLASHpagecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12201), + }, + [1528] = { + [sym_generic_command_name] = ACTIONS(12205), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12205), + [aux_sym_subparagraph_token1] = ACTIONS(12205), + [anon_sym_BSLASHitem] = ACTIONS(12205), + [anon_sym_LBRACK] = ACTIONS(12203), + [anon_sym_RBRACK] = ACTIONS(12203), + [anon_sym_LBRACE] = ACTIONS(12203), + [anon_sym_RBRACE] = ACTIONS(12203), + [anon_sym_LPAREN] = ACTIONS(12203), + [anon_sym_COMMA] = ACTIONS(12203), + [anon_sym_EQ] = ACTIONS(12203), + [sym_word] = ACTIONS(12203), + [sym_param] = ACTIONS(12203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12203), + [anon_sym_DOLLAR] = ACTIONS(12205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12203), + [anon_sym_BSLASHbegin] = ACTIONS(12205), + [anon_sym_BSLASHcaption] = ACTIONS(12205), + [anon_sym_BSLASHcite] = ACTIONS(12205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCite] = ACTIONS(12205), + [anon_sym_BSLASHnocite] = ACTIONS(12205), + [anon_sym_BSLASHcitet] = ACTIONS(12205), + [anon_sym_BSLASHcitep] = ACTIONS(12205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteauthor] = ACTIONS(12205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitetitle] = ACTIONS(12205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteyear] = ACTIONS(12205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitedate] = ACTIONS(12205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteurl] = ACTIONS(12205), + [anon_sym_BSLASHfullcite] = ACTIONS(12205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12205), + [anon_sym_BSLASHcitealt] = ACTIONS(12205), + [anon_sym_BSLASHcitealp] = ACTIONS(12205), + [anon_sym_BSLASHcitetext] = ACTIONS(12205), + [anon_sym_BSLASHparencite] = ACTIONS(12205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHParencite] = ACTIONS(12205), + [anon_sym_BSLASHfootcite] = ACTIONS(12205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12205), + [anon_sym_BSLASHtextcite] = ACTIONS(12205), + [anon_sym_BSLASHTextcite] = ACTIONS(12205), + [anon_sym_BSLASHsmartcite] = ACTIONS(12205), + [anon_sym_BSLASHSmartcite] = ACTIONS(12205), + [anon_sym_BSLASHsupercite] = ACTIONS(12205), + [anon_sym_BSLASHautocite] = ACTIONS(12205), + [anon_sym_BSLASHAutocite] = ACTIONS(12205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHvolcite] = ACTIONS(12205), + [anon_sym_BSLASHVolcite] = ACTIONS(12205), + [anon_sym_BSLASHpvolcite] = ACTIONS(12205), + [anon_sym_BSLASHPvolcite] = ACTIONS(12205), + [anon_sym_BSLASHfvolcite] = ACTIONS(12205), + [anon_sym_BSLASHftvolcite] = ACTIONS(12205), + [anon_sym_BSLASHsvolcite] = ACTIONS(12205), + [anon_sym_BSLASHSvolcite] = ACTIONS(12205), + [anon_sym_BSLASHtvolcite] = ACTIONS(12205), + [anon_sym_BSLASHTvolcite] = ACTIONS(12205), + [anon_sym_BSLASHavolcite] = ACTIONS(12205), + [anon_sym_BSLASHAvolcite] = ACTIONS(12205), + [anon_sym_BSLASHnotecite] = ACTIONS(12205), + [anon_sym_BSLASHpnotecite] = ACTIONS(12205), + [anon_sym_BSLASHPnotecite] = ACTIONS(12205), + [anon_sym_BSLASHfnotecite] = ACTIONS(12205), + [anon_sym_BSLASHusepackage] = ACTIONS(12205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12205), + [anon_sym_BSLASHinclude] = ACTIONS(12205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12205), + [anon_sym_BSLASHinput] = ACTIONS(12205), + [anon_sym_BSLASHsubfile] = ACTIONS(12205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12205), + [anon_sym_BSLASHbibliography] = ACTIONS(12205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12205), + [anon_sym_BSLASHincludesvg] = ACTIONS(12205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12205), + [anon_sym_BSLASHimport] = ACTIONS(12205), + [anon_sym_BSLASHsubimport] = ACTIONS(12205), + [anon_sym_BSLASHinputfrom] = ACTIONS(12205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12205), + [anon_sym_BSLASHincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHlabel] = ACTIONS(12205), + [anon_sym_BSLASHref] = ACTIONS(12205), + [anon_sym_BSLASHvref] = ACTIONS(12205), + [anon_sym_BSLASHVref] = ACTIONS(12205), + [anon_sym_BSLASHautoref] = ACTIONS(12205), + [anon_sym_BSLASHpageref] = ACTIONS(12205), + [anon_sym_BSLASHcref] = ACTIONS(12205), + [anon_sym_BSLASHCref] = ACTIONS(12205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnameCref] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHlabelcref] = ACTIONS(12205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12205), + [anon_sym_BSLASHeqref] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange] = ACTIONS(12205), + [anon_sym_BSLASHCrefrange] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewlabel] = ACTIONS(12205), + [anon_sym_BSLASHnewcommand] = ACTIONS(12205), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12205), + [anon_sym_BSLASHgls] = ACTIONS(12205), + [anon_sym_BSLASHGls] = ACTIONS(12205), + [anon_sym_BSLASHGLS] = ACTIONS(12205), + [anon_sym_BSLASHglspl] = ACTIONS(12205), + [anon_sym_BSLASHGlspl] = ACTIONS(12205), + [anon_sym_BSLASHGLSpl] = ACTIONS(12205), + [anon_sym_BSLASHglsdisp] = ACTIONS(12205), + [anon_sym_BSLASHglslink] = ACTIONS(12205), + [anon_sym_BSLASHglstext] = ACTIONS(12205), + [anon_sym_BSLASHGlstext] = ACTIONS(12205), + [anon_sym_BSLASHGLStext] = ACTIONS(12205), + [anon_sym_BSLASHglsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12205), + [anon_sym_BSLASHglsplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSplural] = ACTIONS(12205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHglsname] = ACTIONS(12205), + [anon_sym_BSLASHGlsname] = ACTIONS(12205), + [anon_sym_BSLASHGLSname] = ACTIONS(12205), + [anon_sym_BSLASHglssymbol] = ACTIONS(12205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12205), + [anon_sym_BSLASHglsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12205), + [anon_sym_BSLASHglsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12205), + [anon_sym_BSLASHglsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12205), + [anon_sym_BSLASHglsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12205), + [anon_sym_BSLASHglsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12205), + [anon_sym_BSLASHnewacronym] = ACTIONS(12205), + [anon_sym_BSLASHacrshort] = ACTIONS(12205), + [anon_sym_BSLASHAcrshort] = ACTIONS(12205), + [anon_sym_BSLASHACRshort] = ACTIONS(12205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12205), + [anon_sym_BSLASHacrlong] = ACTIONS(12205), + [anon_sym_BSLASHAcrlong] = ACTIONS(12205), + [anon_sym_BSLASHACRlong] = ACTIONS(12205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12205), + [anon_sym_BSLASHacrfull] = ACTIONS(12205), + [anon_sym_BSLASHAcrfull] = ACTIONS(12205), + [anon_sym_BSLASHACRfull] = ACTIONS(12205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12205), + [anon_sym_BSLASHacs] = ACTIONS(12205), + [anon_sym_BSLASHAcs] = ACTIONS(12205), + [anon_sym_BSLASHacsp] = ACTIONS(12205), + [anon_sym_BSLASHAcsp] = ACTIONS(12205), + [anon_sym_BSLASHacl] = ACTIONS(12205), + [anon_sym_BSLASHAcl] = ACTIONS(12205), + [anon_sym_BSLASHaclp] = ACTIONS(12205), + [anon_sym_BSLASHAclp] = ACTIONS(12205), + [anon_sym_BSLASHacf] = ACTIONS(12205), + [anon_sym_BSLASHAcf] = ACTIONS(12205), + [anon_sym_BSLASHacfp] = ACTIONS(12205), + [anon_sym_BSLASHAcfp] = ACTIONS(12205), + [anon_sym_BSLASHac] = ACTIONS(12205), + [anon_sym_BSLASHAc] = ACTIONS(12205), + [anon_sym_BSLASHacp] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12205), + [anon_sym_BSLASHcolor] = ACTIONS(12205), + [anon_sym_BSLASHcolorbox] = ACTIONS(12205), + [anon_sym_BSLASHtextcolor] = ACTIONS(12205), + [anon_sym_BSLASHpagecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12205), + }, + [1529] = { + [sym_generic_command_name] = ACTIONS(12213), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12213), + [aux_sym_subparagraph_token1] = ACTIONS(12213), + [anon_sym_BSLASHitem] = ACTIONS(12213), + [anon_sym_LBRACK] = ACTIONS(12211), + [anon_sym_RBRACK] = ACTIONS(12211), + [anon_sym_LBRACE] = ACTIONS(12211), + [anon_sym_RBRACE] = ACTIONS(12211), + [anon_sym_LPAREN] = ACTIONS(12211), + [anon_sym_COMMA] = ACTIONS(12211), + [anon_sym_EQ] = ACTIONS(12211), + [sym_word] = ACTIONS(12211), + [sym_param] = ACTIONS(12211), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12211), + [anon_sym_DOLLAR] = ACTIONS(12213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12211), + [anon_sym_BSLASHbegin] = ACTIONS(12213), + [anon_sym_BSLASHcaption] = ACTIONS(12213), + [anon_sym_BSLASHcite] = ACTIONS(12213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCite] = ACTIONS(12213), + [anon_sym_BSLASHnocite] = ACTIONS(12213), + [anon_sym_BSLASHcitet] = ACTIONS(12213), + [anon_sym_BSLASHcitep] = ACTIONS(12213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteauthor] = ACTIONS(12213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitetitle] = ACTIONS(12213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteyear] = ACTIONS(12213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitedate] = ACTIONS(12213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteurl] = ACTIONS(12213), + [anon_sym_BSLASHfullcite] = ACTIONS(12213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12213), + [anon_sym_BSLASHcitealt] = ACTIONS(12213), + [anon_sym_BSLASHcitealp] = ACTIONS(12213), + [anon_sym_BSLASHcitetext] = ACTIONS(12213), + [anon_sym_BSLASHparencite] = ACTIONS(12213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHParencite] = ACTIONS(12213), + [anon_sym_BSLASHfootcite] = ACTIONS(12213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12213), + [anon_sym_BSLASHtextcite] = ACTIONS(12213), + [anon_sym_BSLASHTextcite] = ACTIONS(12213), + [anon_sym_BSLASHsmartcite] = ACTIONS(12213), + [anon_sym_BSLASHSmartcite] = ACTIONS(12213), + [anon_sym_BSLASHsupercite] = ACTIONS(12213), + [anon_sym_BSLASHautocite] = ACTIONS(12213), + [anon_sym_BSLASHAutocite] = ACTIONS(12213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHvolcite] = ACTIONS(12213), + [anon_sym_BSLASHVolcite] = ACTIONS(12213), + [anon_sym_BSLASHpvolcite] = ACTIONS(12213), + [anon_sym_BSLASHPvolcite] = ACTIONS(12213), + [anon_sym_BSLASHfvolcite] = ACTIONS(12213), + [anon_sym_BSLASHftvolcite] = ACTIONS(12213), + [anon_sym_BSLASHsvolcite] = ACTIONS(12213), + [anon_sym_BSLASHSvolcite] = ACTIONS(12213), + [anon_sym_BSLASHtvolcite] = ACTIONS(12213), + [anon_sym_BSLASHTvolcite] = ACTIONS(12213), + [anon_sym_BSLASHavolcite] = ACTIONS(12213), + [anon_sym_BSLASHAvolcite] = ACTIONS(12213), + [anon_sym_BSLASHnotecite] = ACTIONS(12213), + [anon_sym_BSLASHpnotecite] = ACTIONS(12213), + [anon_sym_BSLASHPnotecite] = ACTIONS(12213), + [anon_sym_BSLASHfnotecite] = ACTIONS(12213), + [anon_sym_BSLASHusepackage] = ACTIONS(12213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12213), + [anon_sym_BSLASHinclude] = ACTIONS(12213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12213), + [anon_sym_BSLASHinput] = ACTIONS(12213), + [anon_sym_BSLASHsubfile] = ACTIONS(12213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12213), + [anon_sym_BSLASHbibliography] = ACTIONS(12213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12213), + [anon_sym_BSLASHincludesvg] = ACTIONS(12213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12213), + [anon_sym_BSLASHimport] = ACTIONS(12213), + [anon_sym_BSLASHsubimport] = ACTIONS(12213), + [anon_sym_BSLASHinputfrom] = ACTIONS(12213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12213), + [anon_sym_BSLASHincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHlabel] = ACTIONS(12213), + [anon_sym_BSLASHref] = ACTIONS(12213), + [anon_sym_BSLASHvref] = ACTIONS(12213), + [anon_sym_BSLASHVref] = ACTIONS(12213), + [anon_sym_BSLASHautoref] = ACTIONS(12213), + [anon_sym_BSLASHpageref] = ACTIONS(12213), + [anon_sym_BSLASHcref] = ACTIONS(12213), + [anon_sym_BSLASHCref] = ACTIONS(12213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnameCref] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHlabelcref] = ACTIONS(12213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12213), + [anon_sym_BSLASHeqref] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange] = ACTIONS(12213), + [anon_sym_BSLASHCrefrange] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewlabel] = ACTIONS(12213), + [anon_sym_BSLASHnewcommand] = ACTIONS(12213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12213), + [anon_sym_BSLASHgls] = ACTIONS(12213), + [anon_sym_BSLASHGls] = ACTIONS(12213), + [anon_sym_BSLASHGLS] = ACTIONS(12213), + [anon_sym_BSLASHglspl] = ACTIONS(12213), + [anon_sym_BSLASHGlspl] = ACTIONS(12213), + [anon_sym_BSLASHGLSpl] = ACTIONS(12213), + [anon_sym_BSLASHglsdisp] = ACTIONS(12213), + [anon_sym_BSLASHglslink] = ACTIONS(12213), + [anon_sym_BSLASHglstext] = ACTIONS(12213), + [anon_sym_BSLASHGlstext] = ACTIONS(12213), + [anon_sym_BSLASHGLStext] = ACTIONS(12213), + [anon_sym_BSLASHglsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12213), + [anon_sym_BSLASHglsplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSplural] = ACTIONS(12213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHglsname] = ACTIONS(12213), + [anon_sym_BSLASHGlsname] = ACTIONS(12213), + [anon_sym_BSLASHGLSname] = ACTIONS(12213), + [anon_sym_BSLASHglssymbol] = ACTIONS(12213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12213), + [anon_sym_BSLASHglsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12213), + [anon_sym_BSLASHglsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12213), + [anon_sym_BSLASHglsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12213), + [anon_sym_BSLASHglsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12213), + [anon_sym_BSLASHglsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12213), + [anon_sym_BSLASHnewacronym] = ACTIONS(12213), + [anon_sym_BSLASHacrshort] = ACTIONS(12213), + [anon_sym_BSLASHAcrshort] = ACTIONS(12213), + [anon_sym_BSLASHACRshort] = ACTIONS(12213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12213), + [anon_sym_BSLASHacrlong] = ACTIONS(12213), + [anon_sym_BSLASHAcrlong] = ACTIONS(12213), + [anon_sym_BSLASHACRlong] = ACTIONS(12213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12213), + [anon_sym_BSLASHacrfull] = ACTIONS(12213), + [anon_sym_BSLASHAcrfull] = ACTIONS(12213), + [anon_sym_BSLASHACRfull] = ACTIONS(12213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12213), + [anon_sym_BSLASHacs] = ACTIONS(12213), + [anon_sym_BSLASHAcs] = ACTIONS(12213), + [anon_sym_BSLASHacsp] = ACTIONS(12213), + [anon_sym_BSLASHAcsp] = ACTIONS(12213), + [anon_sym_BSLASHacl] = ACTIONS(12213), + [anon_sym_BSLASHAcl] = ACTIONS(12213), + [anon_sym_BSLASHaclp] = ACTIONS(12213), + [anon_sym_BSLASHAclp] = ACTIONS(12213), + [anon_sym_BSLASHacf] = ACTIONS(12213), + [anon_sym_BSLASHAcf] = ACTIONS(12213), + [anon_sym_BSLASHacfp] = ACTIONS(12213), + [anon_sym_BSLASHAcfp] = ACTIONS(12213), + [anon_sym_BSLASHac] = ACTIONS(12213), + [anon_sym_BSLASHAc] = ACTIONS(12213), + [anon_sym_BSLASHacp] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12213), + [anon_sym_BSLASHcolor] = ACTIONS(12213), + [anon_sym_BSLASHcolorbox] = ACTIONS(12213), + [anon_sym_BSLASHtextcolor] = ACTIONS(12213), + [anon_sym_BSLASHpagecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12213), + }, + [1530] = { + [sym_generic_command_name] = ACTIONS(12217), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12217), + [aux_sym_subparagraph_token1] = ACTIONS(12217), + [anon_sym_BSLASHitem] = ACTIONS(12217), + [anon_sym_LBRACK] = ACTIONS(12215), + [anon_sym_RBRACK] = ACTIONS(12215), + [anon_sym_LBRACE] = ACTIONS(12215), + [anon_sym_RBRACE] = ACTIONS(12215), + [anon_sym_LPAREN] = ACTIONS(12215), + [anon_sym_COMMA] = ACTIONS(12215), + [anon_sym_EQ] = ACTIONS(12215), + [sym_word] = ACTIONS(12215), + [sym_param] = ACTIONS(12215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12215), + [anon_sym_DOLLAR] = ACTIONS(12217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12215), + [anon_sym_BSLASHbegin] = ACTIONS(12217), + [anon_sym_BSLASHcaption] = ACTIONS(12217), + [anon_sym_BSLASHcite] = ACTIONS(12217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCite] = ACTIONS(12217), + [anon_sym_BSLASHnocite] = ACTIONS(12217), + [anon_sym_BSLASHcitet] = ACTIONS(12217), + [anon_sym_BSLASHcitep] = ACTIONS(12217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteauthor] = ACTIONS(12217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitetitle] = ACTIONS(12217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteyear] = ACTIONS(12217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitedate] = ACTIONS(12217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteurl] = ACTIONS(12217), + [anon_sym_BSLASHfullcite] = ACTIONS(12217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12217), + [anon_sym_BSLASHcitealt] = ACTIONS(12217), + [anon_sym_BSLASHcitealp] = ACTIONS(12217), + [anon_sym_BSLASHcitetext] = ACTIONS(12217), + [anon_sym_BSLASHparencite] = ACTIONS(12217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHParencite] = ACTIONS(12217), + [anon_sym_BSLASHfootcite] = ACTIONS(12217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12217), + [anon_sym_BSLASHtextcite] = ACTIONS(12217), + [anon_sym_BSLASHTextcite] = ACTIONS(12217), + [anon_sym_BSLASHsmartcite] = ACTIONS(12217), + [anon_sym_BSLASHSmartcite] = ACTIONS(12217), + [anon_sym_BSLASHsupercite] = ACTIONS(12217), + [anon_sym_BSLASHautocite] = ACTIONS(12217), + [anon_sym_BSLASHAutocite] = ACTIONS(12217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHvolcite] = ACTIONS(12217), + [anon_sym_BSLASHVolcite] = ACTIONS(12217), + [anon_sym_BSLASHpvolcite] = ACTIONS(12217), + [anon_sym_BSLASHPvolcite] = ACTIONS(12217), + [anon_sym_BSLASHfvolcite] = ACTIONS(12217), + [anon_sym_BSLASHftvolcite] = ACTIONS(12217), + [anon_sym_BSLASHsvolcite] = ACTIONS(12217), + [anon_sym_BSLASHSvolcite] = ACTIONS(12217), + [anon_sym_BSLASHtvolcite] = ACTIONS(12217), + [anon_sym_BSLASHTvolcite] = ACTIONS(12217), + [anon_sym_BSLASHavolcite] = ACTIONS(12217), + [anon_sym_BSLASHAvolcite] = ACTIONS(12217), + [anon_sym_BSLASHnotecite] = ACTIONS(12217), + [anon_sym_BSLASHpnotecite] = ACTIONS(12217), + [anon_sym_BSLASHPnotecite] = ACTIONS(12217), + [anon_sym_BSLASHfnotecite] = ACTIONS(12217), + [anon_sym_BSLASHusepackage] = ACTIONS(12217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12217), + [anon_sym_BSLASHinclude] = ACTIONS(12217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12217), + [anon_sym_BSLASHinput] = ACTIONS(12217), + [anon_sym_BSLASHsubfile] = ACTIONS(12217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12217), + [anon_sym_BSLASHbibliography] = ACTIONS(12217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12217), + [anon_sym_BSLASHincludesvg] = ACTIONS(12217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12217), + [anon_sym_BSLASHimport] = ACTIONS(12217), + [anon_sym_BSLASHsubimport] = ACTIONS(12217), + [anon_sym_BSLASHinputfrom] = ACTIONS(12217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12217), + [anon_sym_BSLASHincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHlabel] = ACTIONS(12217), + [anon_sym_BSLASHref] = ACTIONS(12217), + [anon_sym_BSLASHvref] = ACTIONS(12217), + [anon_sym_BSLASHVref] = ACTIONS(12217), + [anon_sym_BSLASHautoref] = ACTIONS(12217), + [anon_sym_BSLASHpageref] = ACTIONS(12217), + [anon_sym_BSLASHcref] = ACTIONS(12217), + [anon_sym_BSLASHCref] = ACTIONS(12217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnameCref] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHlabelcref] = ACTIONS(12217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12217), + [anon_sym_BSLASHeqref] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange] = ACTIONS(12217), + [anon_sym_BSLASHCrefrange] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewlabel] = ACTIONS(12217), + [anon_sym_BSLASHnewcommand] = ACTIONS(12217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12217), + [anon_sym_BSLASHgls] = ACTIONS(12217), + [anon_sym_BSLASHGls] = ACTIONS(12217), + [anon_sym_BSLASHGLS] = ACTIONS(12217), + [anon_sym_BSLASHglspl] = ACTIONS(12217), + [anon_sym_BSLASHGlspl] = ACTIONS(12217), + [anon_sym_BSLASHGLSpl] = ACTIONS(12217), + [anon_sym_BSLASHglsdisp] = ACTIONS(12217), + [anon_sym_BSLASHglslink] = ACTIONS(12217), + [anon_sym_BSLASHglstext] = ACTIONS(12217), + [anon_sym_BSLASHGlstext] = ACTIONS(12217), + [anon_sym_BSLASHGLStext] = ACTIONS(12217), + [anon_sym_BSLASHglsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12217), + [anon_sym_BSLASHglsplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSplural] = ACTIONS(12217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHglsname] = ACTIONS(12217), + [anon_sym_BSLASHGlsname] = ACTIONS(12217), + [anon_sym_BSLASHGLSname] = ACTIONS(12217), + [anon_sym_BSLASHglssymbol] = ACTIONS(12217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12217), + [anon_sym_BSLASHglsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12217), + [anon_sym_BSLASHglsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12217), + [anon_sym_BSLASHglsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12217), + [anon_sym_BSLASHglsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12217), + [anon_sym_BSLASHglsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12217), + [anon_sym_BSLASHnewacronym] = ACTIONS(12217), + [anon_sym_BSLASHacrshort] = ACTIONS(12217), + [anon_sym_BSLASHAcrshort] = ACTIONS(12217), + [anon_sym_BSLASHACRshort] = ACTIONS(12217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12217), + [anon_sym_BSLASHacrlong] = ACTIONS(12217), + [anon_sym_BSLASHAcrlong] = ACTIONS(12217), + [anon_sym_BSLASHACRlong] = ACTIONS(12217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12217), + [anon_sym_BSLASHacrfull] = ACTIONS(12217), + [anon_sym_BSLASHAcrfull] = ACTIONS(12217), + [anon_sym_BSLASHACRfull] = ACTIONS(12217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12217), + [anon_sym_BSLASHacs] = ACTIONS(12217), + [anon_sym_BSLASHAcs] = ACTIONS(12217), + [anon_sym_BSLASHacsp] = ACTIONS(12217), + [anon_sym_BSLASHAcsp] = ACTIONS(12217), + [anon_sym_BSLASHacl] = ACTIONS(12217), + [anon_sym_BSLASHAcl] = ACTIONS(12217), + [anon_sym_BSLASHaclp] = ACTIONS(12217), + [anon_sym_BSLASHAclp] = ACTIONS(12217), + [anon_sym_BSLASHacf] = ACTIONS(12217), + [anon_sym_BSLASHAcf] = ACTIONS(12217), + [anon_sym_BSLASHacfp] = ACTIONS(12217), + [anon_sym_BSLASHAcfp] = ACTIONS(12217), + [anon_sym_BSLASHac] = ACTIONS(12217), + [anon_sym_BSLASHAc] = ACTIONS(12217), + [anon_sym_BSLASHacp] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12217), + [anon_sym_BSLASHcolor] = ACTIONS(12217), + [anon_sym_BSLASHcolorbox] = ACTIONS(12217), + [anon_sym_BSLASHtextcolor] = ACTIONS(12217), + [anon_sym_BSLASHpagecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12217), + }, + [1531] = { + [sym_generic_command_name] = ACTIONS(12221), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12221), + [aux_sym_subparagraph_token1] = ACTIONS(12221), + [anon_sym_BSLASHitem] = ACTIONS(12221), + [anon_sym_LBRACK] = ACTIONS(12219), + [anon_sym_RBRACK] = ACTIONS(12219), + [anon_sym_LBRACE] = ACTIONS(12774), + [anon_sym_RBRACE] = ACTIONS(12219), + [anon_sym_LPAREN] = ACTIONS(12219), + [anon_sym_COMMA] = ACTIONS(12219), + [anon_sym_EQ] = ACTIONS(12219), + [sym_word] = ACTIONS(12219), + [sym_param] = ACTIONS(12219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12219), + [anon_sym_DOLLAR] = ACTIONS(12221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12219), + [anon_sym_BSLASHbegin] = ACTIONS(12221), + [anon_sym_BSLASHcaption] = ACTIONS(12221), + [anon_sym_BSLASHcite] = ACTIONS(12221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCite] = ACTIONS(12221), + [anon_sym_BSLASHnocite] = ACTIONS(12221), + [anon_sym_BSLASHcitet] = ACTIONS(12221), + [anon_sym_BSLASHcitep] = ACTIONS(12221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteauthor] = ACTIONS(12221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitetitle] = ACTIONS(12221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteyear] = ACTIONS(12221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitedate] = ACTIONS(12221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteurl] = ACTIONS(12221), + [anon_sym_BSLASHfullcite] = ACTIONS(12221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12221), + [anon_sym_BSLASHcitealt] = ACTIONS(12221), + [anon_sym_BSLASHcitealp] = ACTIONS(12221), + [anon_sym_BSLASHcitetext] = ACTIONS(12221), + [anon_sym_BSLASHparencite] = ACTIONS(12221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHParencite] = ACTIONS(12221), + [anon_sym_BSLASHfootcite] = ACTIONS(12221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12221), + [anon_sym_BSLASHtextcite] = ACTIONS(12221), + [anon_sym_BSLASHTextcite] = ACTIONS(12221), + [anon_sym_BSLASHsmartcite] = ACTIONS(12221), + [anon_sym_BSLASHSmartcite] = ACTIONS(12221), + [anon_sym_BSLASHsupercite] = ACTIONS(12221), + [anon_sym_BSLASHautocite] = ACTIONS(12221), + [anon_sym_BSLASHAutocite] = ACTIONS(12221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHvolcite] = ACTIONS(12221), + [anon_sym_BSLASHVolcite] = ACTIONS(12221), + [anon_sym_BSLASHpvolcite] = ACTIONS(12221), + [anon_sym_BSLASHPvolcite] = ACTIONS(12221), + [anon_sym_BSLASHfvolcite] = ACTIONS(12221), + [anon_sym_BSLASHftvolcite] = ACTIONS(12221), + [anon_sym_BSLASHsvolcite] = ACTIONS(12221), + [anon_sym_BSLASHSvolcite] = ACTIONS(12221), + [anon_sym_BSLASHtvolcite] = ACTIONS(12221), + [anon_sym_BSLASHTvolcite] = ACTIONS(12221), + [anon_sym_BSLASHavolcite] = ACTIONS(12221), + [anon_sym_BSLASHAvolcite] = ACTIONS(12221), + [anon_sym_BSLASHnotecite] = ACTIONS(12221), + [anon_sym_BSLASHpnotecite] = ACTIONS(12221), + [anon_sym_BSLASHPnotecite] = ACTIONS(12221), + [anon_sym_BSLASHfnotecite] = ACTIONS(12221), + [anon_sym_BSLASHusepackage] = ACTIONS(12221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12221), + [anon_sym_BSLASHinclude] = ACTIONS(12221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12221), + [anon_sym_BSLASHinput] = ACTIONS(12221), + [anon_sym_BSLASHsubfile] = ACTIONS(12221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12221), + [anon_sym_BSLASHbibliography] = ACTIONS(12221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12221), + [anon_sym_BSLASHincludesvg] = ACTIONS(12221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12221), + [anon_sym_BSLASHimport] = ACTIONS(12221), + [anon_sym_BSLASHsubimport] = ACTIONS(12221), + [anon_sym_BSLASHinputfrom] = ACTIONS(12221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12221), + [anon_sym_BSLASHincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHlabel] = ACTIONS(12221), + [anon_sym_BSLASHref] = ACTIONS(12221), + [anon_sym_BSLASHvref] = ACTIONS(12221), + [anon_sym_BSLASHVref] = ACTIONS(12221), + [anon_sym_BSLASHautoref] = ACTIONS(12221), + [anon_sym_BSLASHpageref] = ACTIONS(12221), + [anon_sym_BSLASHcref] = ACTIONS(12221), + [anon_sym_BSLASHCref] = ACTIONS(12221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnameCref] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHlabelcref] = ACTIONS(12221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12221), + [anon_sym_BSLASHeqref] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange] = ACTIONS(12221), + [anon_sym_BSLASHCrefrange] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewlabel] = ACTIONS(12221), + [anon_sym_BSLASHnewcommand] = ACTIONS(12221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12221), + [anon_sym_BSLASHgls] = ACTIONS(12221), + [anon_sym_BSLASHGls] = ACTIONS(12221), + [anon_sym_BSLASHGLS] = ACTIONS(12221), + [anon_sym_BSLASHglspl] = ACTIONS(12221), + [anon_sym_BSLASHGlspl] = ACTIONS(12221), + [anon_sym_BSLASHGLSpl] = ACTIONS(12221), + [anon_sym_BSLASHglsdisp] = ACTIONS(12221), + [anon_sym_BSLASHglslink] = ACTIONS(12221), + [anon_sym_BSLASHglstext] = ACTIONS(12221), + [anon_sym_BSLASHGlstext] = ACTIONS(12221), + [anon_sym_BSLASHGLStext] = ACTIONS(12221), + [anon_sym_BSLASHglsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12221), + [anon_sym_BSLASHglsplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSplural] = ACTIONS(12221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHglsname] = ACTIONS(12221), + [anon_sym_BSLASHGlsname] = ACTIONS(12221), + [anon_sym_BSLASHGLSname] = ACTIONS(12221), + [anon_sym_BSLASHglssymbol] = ACTIONS(12221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12221), + [anon_sym_BSLASHglsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12221), + [anon_sym_BSLASHglsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12221), + [anon_sym_BSLASHglsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12221), + [anon_sym_BSLASHglsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12221), + [anon_sym_BSLASHglsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12221), + [anon_sym_BSLASHnewacronym] = ACTIONS(12221), + [anon_sym_BSLASHacrshort] = ACTIONS(12221), + [anon_sym_BSLASHAcrshort] = ACTIONS(12221), + [anon_sym_BSLASHACRshort] = ACTIONS(12221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12221), + [anon_sym_BSLASHacrlong] = ACTIONS(12221), + [anon_sym_BSLASHAcrlong] = ACTIONS(12221), + [anon_sym_BSLASHACRlong] = ACTIONS(12221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12221), + [anon_sym_BSLASHacrfull] = ACTIONS(12221), + [anon_sym_BSLASHAcrfull] = ACTIONS(12221), + [anon_sym_BSLASHACRfull] = ACTIONS(12221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12221), + [anon_sym_BSLASHacs] = ACTIONS(12221), + [anon_sym_BSLASHAcs] = ACTIONS(12221), + [anon_sym_BSLASHacsp] = ACTIONS(12221), + [anon_sym_BSLASHAcsp] = ACTIONS(12221), + [anon_sym_BSLASHacl] = ACTIONS(12221), + [anon_sym_BSLASHAcl] = ACTIONS(12221), + [anon_sym_BSLASHaclp] = ACTIONS(12221), + [anon_sym_BSLASHAclp] = ACTIONS(12221), + [anon_sym_BSLASHacf] = ACTIONS(12221), + [anon_sym_BSLASHAcf] = ACTIONS(12221), + [anon_sym_BSLASHacfp] = ACTIONS(12221), + [anon_sym_BSLASHAcfp] = ACTIONS(12221), + [anon_sym_BSLASHac] = ACTIONS(12221), + [anon_sym_BSLASHAc] = ACTIONS(12221), + [anon_sym_BSLASHacp] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12221), + [anon_sym_BSLASHcolor] = ACTIONS(12221), + [anon_sym_BSLASHcolorbox] = ACTIONS(12221), + [anon_sym_BSLASHtextcolor] = ACTIONS(12221), + [anon_sym_BSLASHpagecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12221), + }, + [1532] = { + [sym_generic_command_name] = ACTIONS(12108), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12108), + [aux_sym_subparagraph_token1] = ACTIONS(12108), + [anon_sym_BSLASHitem] = ACTIONS(12108), + [anon_sym_LBRACK] = ACTIONS(12106), + [anon_sym_RBRACK] = ACTIONS(12106), + [anon_sym_LBRACE] = ACTIONS(12106), + [anon_sym_RBRACE] = ACTIONS(12106), + [anon_sym_LPAREN] = ACTIONS(12106), + [anon_sym_COMMA] = ACTIONS(12106), + [anon_sym_EQ] = ACTIONS(12106), + [sym_word] = ACTIONS(12106), + [sym_param] = ACTIONS(12106), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12106), + [anon_sym_DOLLAR] = ACTIONS(12108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12106), + [anon_sym_BSLASHbegin] = ACTIONS(12108), + [anon_sym_BSLASHcaption] = ACTIONS(12108), + [anon_sym_BSLASHcite] = ACTIONS(12108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCite] = ACTIONS(12108), + [anon_sym_BSLASHnocite] = ACTIONS(12108), + [anon_sym_BSLASHcitet] = ACTIONS(12108), + [anon_sym_BSLASHcitep] = ACTIONS(12108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteauthor] = ACTIONS(12108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitetitle] = ACTIONS(12108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteyear] = ACTIONS(12108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitedate] = ACTIONS(12108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteurl] = ACTIONS(12108), + [anon_sym_BSLASHfullcite] = ACTIONS(12108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12108), + [anon_sym_BSLASHcitealt] = ACTIONS(12108), + [anon_sym_BSLASHcitealp] = ACTIONS(12108), + [anon_sym_BSLASHcitetext] = ACTIONS(12108), + [anon_sym_BSLASHparencite] = ACTIONS(12108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHParencite] = ACTIONS(12108), + [anon_sym_BSLASHfootcite] = ACTIONS(12108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12108), + [anon_sym_BSLASHtextcite] = ACTIONS(12108), + [anon_sym_BSLASHTextcite] = ACTIONS(12108), + [anon_sym_BSLASHsmartcite] = ACTIONS(12108), + [anon_sym_BSLASHSmartcite] = ACTIONS(12108), + [anon_sym_BSLASHsupercite] = ACTIONS(12108), + [anon_sym_BSLASHautocite] = ACTIONS(12108), + [anon_sym_BSLASHAutocite] = ACTIONS(12108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHvolcite] = ACTIONS(12108), + [anon_sym_BSLASHVolcite] = ACTIONS(12108), + [anon_sym_BSLASHpvolcite] = ACTIONS(12108), + [anon_sym_BSLASHPvolcite] = ACTIONS(12108), + [anon_sym_BSLASHfvolcite] = ACTIONS(12108), + [anon_sym_BSLASHftvolcite] = ACTIONS(12108), + [anon_sym_BSLASHsvolcite] = ACTIONS(12108), + [anon_sym_BSLASHSvolcite] = ACTIONS(12108), + [anon_sym_BSLASHtvolcite] = ACTIONS(12108), + [anon_sym_BSLASHTvolcite] = ACTIONS(12108), + [anon_sym_BSLASHavolcite] = ACTIONS(12108), + [anon_sym_BSLASHAvolcite] = ACTIONS(12108), + [anon_sym_BSLASHnotecite] = ACTIONS(12108), + [anon_sym_BSLASHpnotecite] = ACTIONS(12108), + [anon_sym_BSLASHPnotecite] = ACTIONS(12108), + [anon_sym_BSLASHfnotecite] = ACTIONS(12108), + [anon_sym_BSLASHusepackage] = ACTIONS(12108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12108), + [anon_sym_BSLASHinclude] = ACTIONS(12108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12108), + [anon_sym_BSLASHinput] = ACTIONS(12108), + [anon_sym_BSLASHsubfile] = ACTIONS(12108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12108), + [anon_sym_BSLASHbibliography] = ACTIONS(12108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12108), + [anon_sym_BSLASHincludesvg] = ACTIONS(12108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12108), + [anon_sym_BSLASHimport] = ACTIONS(12108), + [anon_sym_BSLASHsubimport] = ACTIONS(12108), + [anon_sym_BSLASHinputfrom] = ACTIONS(12108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12108), + [anon_sym_BSLASHincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHlabel] = ACTIONS(12108), + [anon_sym_BSLASHref] = ACTIONS(12108), + [anon_sym_BSLASHvref] = ACTIONS(12108), + [anon_sym_BSLASHVref] = ACTIONS(12108), + [anon_sym_BSLASHautoref] = ACTIONS(12108), + [anon_sym_BSLASHpageref] = ACTIONS(12108), + [anon_sym_BSLASHcref] = ACTIONS(12108), + [anon_sym_BSLASHCref] = ACTIONS(12108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnameCref] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHlabelcref] = ACTIONS(12108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12108), + [anon_sym_BSLASHeqref] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange] = ACTIONS(12108), + [anon_sym_BSLASHCrefrange] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewlabel] = ACTIONS(12108), + [anon_sym_BSLASHnewcommand] = ACTIONS(12108), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12108), + [anon_sym_BSLASHgls] = ACTIONS(12108), + [anon_sym_BSLASHGls] = ACTIONS(12108), + [anon_sym_BSLASHGLS] = ACTIONS(12108), + [anon_sym_BSLASHglspl] = ACTIONS(12108), + [anon_sym_BSLASHGlspl] = ACTIONS(12108), + [anon_sym_BSLASHGLSpl] = ACTIONS(12108), + [anon_sym_BSLASHglsdisp] = ACTIONS(12108), + [anon_sym_BSLASHglslink] = ACTIONS(12108), + [anon_sym_BSLASHglstext] = ACTIONS(12108), + [anon_sym_BSLASHGlstext] = ACTIONS(12108), + [anon_sym_BSLASHGLStext] = ACTIONS(12108), + [anon_sym_BSLASHglsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12108), + [anon_sym_BSLASHglsplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSplural] = ACTIONS(12108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHglsname] = ACTIONS(12108), + [anon_sym_BSLASHGlsname] = ACTIONS(12108), + [anon_sym_BSLASHGLSname] = ACTIONS(12108), + [anon_sym_BSLASHglssymbol] = ACTIONS(12108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12108), + [anon_sym_BSLASHglsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12108), + [anon_sym_BSLASHglsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12108), + [anon_sym_BSLASHglsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12108), + [anon_sym_BSLASHglsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12108), + [anon_sym_BSLASHglsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12108), + [anon_sym_BSLASHnewacronym] = ACTIONS(12108), + [anon_sym_BSLASHacrshort] = ACTIONS(12108), + [anon_sym_BSLASHAcrshort] = ACTIONS(12108), + [anon_sym_BSLASHACRshort] = ACTIONS(12108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12108), + [anon_sym_BSLASHacrlong] = ACTIONS(12108), + [anon_sym_BSLASHAcrlong] = ACTIONS(12108), + [anon_sym_BSLASHACRlong] = ACTIONS(12108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12108), + [anon_sym_BSLASHacrfull] = ACTIONS(12108), + [anon_sym_BSLASHAcrfull] = ACTIONS(12108), + [anon_sym_BSLASHACRfull] = ACTIONS(12108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12108), + [anon_sym_BSLASHacs] = ACTIONS(12108), + [anon_sym_BSLASHAcs] = ACTIONS(12108), + [anon_sym_BSLASHacsp] = ACTIONS(12108), + [anon_sym_BSLASHAcsp] = ACTIONS(12108), + [anon_sym_BSLASHacl] = ACTIONS(12108), + [anon_sym_BSLASHAcl] = ACTIONS(12108), + [anon_sym_BSLASHaclp] = ACTIONS(12108), + [anon_sym_BSLASHAclp] = ACTIONS(12108), + [anon_sym_BSLASHacf] = ACTIONS(12108), + [anon_sym_BSLASHAcf] = ACTIONS(12108), + [anon_sym_BSLASHacfp] = ACTIONS(12108), + [anon_sym_BSLASHAcfp] = ACTIONS(12108), + [anon_sym_BSLASHac] = ACTIONS(12108), + [anon_sym_BSLASHAc] = ACTIONS(12108), + [anon_sym_BSLASHacp] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12108), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12108), + [anon_sym_BSLASHcolor] = ACTIONS(12108), + [anon_sym_BSLASHcolorbox] = ACTIONS(12108), + [anon_sym_BSLASHtextcolor] = ACTIONS(12108), + [anon_sym_BSLASHpagecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12108), + }, + [1533] = { + [sym_generic_command_name] = ACTIONS(12235), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12235), + [aux_sym_subparagraph_token1] = ACTIONS(12235), + [anon_sym_BSLASHitem] = ACTIONS(12235), + [anon_sym_LBRACK] = ACTIONS(12233), + [anon_sym_RBRACK] = ACTIONS(12233), + [anon_sym_LBRACE] = ACTIONS(12233), + [anon_sym_RBRACE] = ACTIONS(12233), + [anon_sym_LPAREN] = ACTIONS(12233), + [anon_sym_COMMA] = ACTIONS(12233), + [anon_sym_EQ] = ACTIONS(12233), + [sym_word] = ACTIONS(12233), + [sym_param] = ACTIONS(12233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12233), + [anon_sym_DOLLAR] = ACTIONS(12235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12233), + [anon_sym_BSLASHbegin] = ACTIONS(12235), + [anon_sym_BSLASHcaption] = ACTIONS(12235), + [anon_sym_BSLASHcite] = ACTIONS(12235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCite] = ACTIONS(12235), + [anon_sym_BSLASHnocite] = ACTIONS(12235), + [anon_sym_BSLASHcitet] = ACTIONS(12235), + [anon_sym_BSLASHcitep] = ACTIONS(12235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteauthor] = ACTIONS(12235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitetitle] = ACTIONS(12235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteyear] = ACTIONS(12235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitedate] = ACTIONS(12235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteurl] = ACTIONS(12235), + [anon_sym_BSLASHfullcite] = ACTIONS(12235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12235), + [anon_sym_BSLASHcitealt] = ACTIONS(12235), + [anon_sym_BSLASHcitealp] = ACTIONS(12235), + [anon_sym_BSLASHcitetext] = ACTIONS(12235), + [anon_sym_BSLASHparencite] = ACTIONS(12235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHParencite] = ACTIONS(12235), + [anon_sym_BSLASHfootcite] = ACTIONS(12235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12235), + [anon_sym_BSLASHtextcite] = ACTIONS(12235), + [anon_sym_BSLASHTextcite] = ACTIONS(12235), + [anon_sym_BSLASHsmartcite] = ACTIONS(12235), + [anon_sym_BSLASHSmartcite] = ACTIONS(12235), + [anon_sym_BSLASHsupercite] = ACTIONS(12235), + [anon_sym_BSLASHautocite] = ACTIONS(12235), + [anon_sym_BSLASHAutocite] = ACTIONS(12235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHvolcite] = ACTIONS(12235), + [anon_sym_BSLASHVolcite] = ACTIONS(12235), + [anon_sym_BSLASHpvolcite] = ACTIONS(12235), + [anon_sym_BSLASHPvolcite] = ACTIONS(12235), + [anon_sym_BSLASHfvolcite] = ACTIONS(12235), + [anon_sym_BSLASHftvolcite] = ACTIONS(12235), + [anon_sym_BSLASHsvolcite] = ACTIONS(12235), + [anon_sym_BSLASHSvolcite] = ACTIONS(12235), + [anon_sym_BSLASHtvolcite] = ACTIONS(12235), + [anon_sym_BSLASHTvolcite] = ACTIONS(12235), + [anon_sym_BSLASHavolcite] = ACTIONS(12235), + [anon_sym_BSLASHAvolcite] = ACTIONS(12235), + [anon_sym_BSLASHnotecite] = ACTIONS(12235), + [anon_sym_BSLASHpnotecite] = ACTIONS(12235), + [anon_sym_BSLASHPnotecite] = ACTIONS(12235), + [anon_sym_BSLASHfnotecite] = ACTIONS(12235), + [anon_sym_BSLASHusepackage] = ACTIONS(12235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12235), + [anon_sym_BSLASHinclude] = ACTIONS(12235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12235), + [anon_sym_BSLASHinput] = ACTIONS(12235), + [anon_sym_BSLASHsubfile] = ACTIONS(12235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12235), + [anon_sym_BSLASHbibliography] = ACTIONS(12235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12235), + [anon_sym_BSLASHincludesvg] = ACTIONS(12235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12235), + [anon_sym_BSLASHimport] = ACTIONS(12235), + [anon_sym_BSLASHsubimport] = ACTIONS(12235), + [anon_sym_BSLASHinputfrom] = ACTIONS(12235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12235), + [anon_sym_BSLASHincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHlabel] = ACTIONS(12235), + [anon_sym_BSLASHref] = ACTIONS(12235), + [anon_sym_BSLASHvref] = ACTIONS(12235), + [anon_sym_BSLASHVref] = ACTIONS(12235), + [anon_sym_BSLASHautoref] = ACTIONS(12235), + [anon_sym_BSLASHpageref] = ACTIONS(12235), + [anon_sym_BSLASHcref] = ACTIONS(12235), + [anon_sym_BSLASHCref] = ACTIONS(12235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnameCref] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHlabelcref] = ACTIONS(12235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12235), + [anon_sym_BSLASHeqref] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange] = ACTIONS(12235), + [anon_sym_BSLASHCrefrange] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewlabel] = ACTIONS(12235), + [anon_sym_BSLASHnewcommand] = ACTIONS(12235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12235), + [anon_sym_BSLASHgls] = ACTIONS(12235), + [anon_sym_BSLASHGls] = ACTIONS(12235), + [anon_sym_BSLASHGLS] = ACTIONS(12235), + [anon_sym_BSLASHglspl] = ACTIONS(12235), + [anon_sym_BSLASHGlspl] = ACTIONS(12235), + [anon_sym_BSLASHGLSpl] = ACTIONS(12235), + [anon_sym_BSLASHglsdisp] = ACTIONS(12235), + [anon_sym_BSLASHglslink] = ACTIONS(12235), + [anon_sym_BSLASHglstext] = ACTIONS(12235), + [anon_sym_BSLASHGlstext] = ACTIONS(12235), + [anon_sym_BSLASHGLStext] = ACTIONS(12235), + [anon_sym_BSLASHglsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12235), + [anon_sym_BSLASHglsplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSplural] = ACTIONS(12235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHglsname] = ACTIONS(12235), + [anon_sym_BSLASHGlsname] = ACTIONS(12235), + [anon_sym_BSLASHGLSname] = ACTIONS(12235), + [anon_sym_BSLASHglssymbol] = ACTIONS(12235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12235), + [anon_sym_BSLASHglsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12235), + [anon_sym_BSLASHglsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12235), + [anon_sym_BSLASHglsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12235), + [anon_sym_BSLASHglsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12235), + [anon_sym_BSLASHglsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12235), + [anon_sym_BSLASHnewacronym] = ACTIONS(12235), + [anon_sym_BSLASHacrshort] = ACTIONS(12235), + [anon_sym_BSLASHAcrshort] = ACTIONS(12235), + [anon_sym_BSLASHACRshort] = ACTIONS(12235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12235), + [anon_sym_BSLASHacrlong] = ACTIONS(12235), + [anon_sym_BSLASHAcrlong] = ACTIONS(12235), + [anon_sym_BSLASHACRlong] = ACTIONS(12235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12235), + [anon_sym_BSLASHacrfull] = ACTIONS(12235), + [anon_sym_BSLASHAcrfull] = ACTIONS(12235), + [anon_sym_BSLASHACRfull] = ACTIONS(12235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12235), + [anon_sym_BSLASHacs] = ACTIONS(12235), + [anon_sym_BSLASHAcs] = ACTIONS(12235), + [anon_sym_BSLASHacsp] = ACTIONS(12235), + [anon_sym_BSLASHAcsp] = ACTIONS(12235), + [anon_sym_BSLASHacl] = ACTIONS(12235), + [anon_sym_BSLASHAcl] = ACTIONS(12235), + [anon_sym_BSLASHaclp] = ACTIONS(12235), + [anon_sym_BSLASHAclp] = ACTIONS(12235), + [anon_sym_BSLASHacf] = ACTIONS(12235), + [anon_sym_BSLASHAcf] = ACTIONS(12235), + [anon_sym_BSLASHacfp] = ACTIONS(12235), + [anon_sym_BSLASHAcfp] = ACTIONS(12235), + [anon_sym_BSLASHac] = ACTIONS(12235), + [anon_sym_BSLASHAc] = ACTIONS(12235), + [anon_sym_BSLASHacp] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12235), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12235), + [anon_sym_BSLASHcolor] = ACTIONS(12235), + [anon_sym_BSLASHcolorbox] = ACTIONS(12235), + [anon_sym_BSLASHtextcolor] = ACTIONS(12235), + [anon_sym_BSLASHpagecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12235), + }, + [1534] = { + [sym_generic_command_name] = ACTIONS(12239), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12239), + [aux_sym_subparagraph_token1] = ACTIONS(12239), + [anon_sym_BSLASHitem] = ACTIONS(12239), + [anon_sym_LBRACK] = ACTIONS(12237), + [anon_sym_RBRACK] = ACTIONS(12237), + [anon_sym_LBRACE] = ACTIONS(12237), + [anon_sym_RBRACE] = ACTIONS(12237), + [anon_sym_LPAREN] = ACTIONS(12237), + [anon_sym_COMMA] = ACTIONS(12237), + [anon_sym_EQ] = ACTIONS(12237), + [sym_word] = ACTIONS(12237), + [sym_param] = ACTIONS(12237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12237), + [anon_sym_DOLLAR] = ACTIONS(12239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12237), + [anon_sym_BSLASHbegin] = ACTIONS(12239), + [anon_sym_BSLASHcaption] = ACTIONS(12239), + [anon_sym_BSLASHcite] = ACTIONS(12239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCite] = ACTIONS(12239), + [anon_sym_BSLASHnocite] = ACTIONS(12239), + [anon_sym_BSLASHcitet] = ACTIONS(12239), + [anon_sym_BSLASHcitep] = ACTIONS(12239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteauthor] = ACTIONS(12239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitetitle] = ACTIONS(12239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteyear] = ACTIONS(12239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitedate] = ACTIONS(12239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteurl] = ACTIONS(12239), + [anon_sym_BSLASHfullcite] = ACTIONS(12239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12239), + [anon_sym_BSLASHcitealt] = ACTIONS(12239), + [anon_sym_BSLASHcitealp] = ACTIONS(12239), + [anon_sym_BSLASHcitetext] = ACTIONS(12239), + [anon_sym_BSLASHparencite] = ACTIONS(12239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHParencite] = ACTIONS(12239), + [anon_sym_BSLASHfootcite] = ACTIONS(12239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12239), + [anon_sym_BSLASHtextcite] = ACTIONS(12239), + [anon_sym_BSLASHTextcite] = ACTIONS(12239), + [anon_sym_BSLASHsmartcite] = ACTIONS(12239), + [anon_sym_BSLASHSmartcite] = ACTIONS(12239), + [anon_sym_BSLASHsupercite] = ACTIONS(12239), + [anon_sym_BSLASHautocite] = ACTIONS(12239), + [anon_sym_BSLASHAutocite] = ACTIONS(12239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHvolcite] = ACTIONS(12239), + [anon_sym_BSLASHVolcite] = ACTIONS(12239), + [anon_sym_BSLASHpvolcite] = ACTIONS(12239), + [anon_sym_BSLASHPvolcite] = ACTIONS(12239), + [anon_sym_BSLASHfvolcite] = ACTIONS(12239), + [anon_sym_BSLASHftvolcite] = ACTIONS(12239), + [anon_sym_BSLASHsvolcite] = ACTIONS(12239), + [anon_sym_BSLASHSvolcite] = ACTIONS(12239), + [anon_sym_BSLASHtvolcite] = ACTIONS(12239), + [anon_sym_BSLASHTvolcite] = ACTIONS(12239), + [anon_sym_BSLASHavolcite] = ACTIONS(12239), + [anon_sym_BSLASHAvolcite] = ACTIONS(12239), + [anon_sym_BSLASHnotecite] = ACTIONS(12239), + [anon_sym_BSLASHpnotecite] = ACTIONS(12239), + [anon_sym_BSLASHPnotecite] = ACTIONS(12239), + [anon_sym_BSLASHfnotecite] = ACTIONS(12239), + [anon_sym_BSLASHusepackage] = ACTIONS(12239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12239), + [anon_sym_BSLASHinclude] = ACTIONS(12239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12239), + [anon_sym_BSLASHinput] = ACTIONS(12239), + [anon_sym_BSLASHsubfile] = ACTIONS(12239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12239), + [anon_sym_BSLASHbibliography] = ACTIONS(12239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12239), + [anon_sym_BSLASHincludesvg] = ACTIONS(12239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12239), + [anon_sym_BSLASHimport] = ACTIONS(12239), + [anon_sym_BSLASHsubimport] = ACTIONS(12239), + [anon_sym_BSLASHinputfrom] = ACTIONS(12239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12239), + [anon_sym_BSLASHincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHlabel] = ACTIONS(12239), + [anon_sym_BSLASHref] = ACTIONS(12239), + [anon_sym_BSLASHvref] = ACTIONS(12239), + [anon_sym_BSLASHVref] = ACTIONS(12239), + [anon_sym_BSLASHautoref] = ACTIONS(12239), + [anon_sym_BSLASHpageref] = ACTIONS(12239), + [anon_sym_BSLASHcref] = ACTIONS(12239), + [anon_sym_BSLASHCref] = ACTIONS(12239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnameCref] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHlabelcref] = ACTIONS(12239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12239), + [anon_sym_BSLASHeqref] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange] = ACTIONS(12239), + [anon_sym_BSLASHCrefrange] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewlabel] = ACTIONS(12239), + [anon_sym_BSLASHnewcommand] = ACTIONS(12239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12239), + [anon_sym_BSLASHgls] = ACTIONS(12239), + [anon_sym_BSLASHGls] = ACTIONS(12239), + [anon_sym_BSLASHGLS] = ACTIONS(12239), + [anon_sym_BSLASHglspl] = ACTIONS(12239), + [anon_sym_BSLASHGlspl] = ACTIONS(12239), + [anon_sym_BSLASHGLSpl] = ACTIONS(12239), + [anon_sym_BSLASHglsdisp] = ACTIONS(12239), + [anon_sym_BSLASHglslink] = ACTIONS(12239), + [anon_sym_BSLASHglstext] = ACTIONS(12239), + [anon_sym_BSLASHGlstext] = ACTIONS(12239), + [anon_sym_BSLASHGLStext] = ACTIONS(12239), + [anon_sym_BSLASHglsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12239), + [anon_sym_BSLASHglsplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSplural] = ACTIONS(12239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHglsname] = ACTIONS(12239), + [anon_sym_BSLASHGlsname] = ACTIONS(12239), + [anon_sym_BSLASHGLSname] = ACTIONS(12239), + [anon_sym_BSLASHglssymbol] = ACTIONS(12239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12239), + [anon_sym_BSLASHglsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12239), + [anon_sym_BSLASHglsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12239), + [anon_sym_BSLASHglsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12239), + [anon_sym_BSLASHglsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12239), + [anon_sym_BSLASHglsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12239), + [anon_sym_BSLASHnewacronym] = ACTIONS(12239), + [anon_sym_BSLASHacrshort] = ACTIONS(12239), + [anon_sym_BSLASHAcrshort] = ACTIONS(12239), + [anon_sym_BSLASHACRshort] = ACTIONS(12239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12239), + [anon_sym_BSLASHacrlong] = ACTIONS(12239), + [anon_sym_BSLASHAcrlong] = ACTIONS(12239), + [anon_sym_BSLASHACRlong] = ACTIONS(12239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12239), + [anon_sym_BSLASHacrfull] = ACTIONS(12239), + [anon_sym_BSLASHAcrfull] = ACTIONS(12239), + [anon_sym_BSLASHACRfull] = ACTIONS(12239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12239), + [anon_sym_BSLASHacs] = ACTIONS(12239), + [anon_sym_BSLASHAcs] = ACTIONS(12239), + [anon_sym_BSLASHacsp] = ACTIONS(12239), + [anon_sym_BSLASHAcsp] = ACTIONS(12239), + [anon_sym_BSLASHacl] = ACTIONS(12239), + [anon_sym_BSLASHAcl] = ACTIONS(12239), + [anon_sym_BSLASHaclp] = ACTIONS(12239), + [anon_sym_BSLASHAclp] = ACTIONS(12239), + [anon_sym_BSLASHacf] = ACTIONS(12239), + [anon_sym_BSLASHAcf] = ACTIONS(12239), + [anon_sym_BSLASHacfp] = ACTIONS(12239), + [anon_sym_BSLASHAcfp] = ACTIONS(12239), + [anon_sym_BSLASHac] = ACTIONS(12239), + [anon_sym_BSLASHAc] = ACTIONS(12239), + [anon_sym_BSLASHacp] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12239), + [anon_sym_BSLASHcolor] = ACTIONS(12239), + [anon_sym_BSLASHcolorbox] = ACTIONS(12239), + [anon_sym_BSLASHtextcolor] = ACTIONS(12239), + [anon_sym_BSLASHpagecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12239), + }, + [1535] = { + [sym_generic_command_name] = ACTIONS(12243), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12243), + [aux_sym_subparagraph_token1] = ACTIONS(12243), + [anon_sym_BSLASHitem] = ACTIONS(12243), + [anon_sym_LBRACK] = ACTIONS(12241), + [anon_sym_RBRACK] = ACTIONS(12241), + [anon_sym_LBRACE] = ACTIONS(12241), + [anon_sym_RBRACE] = ACTIONS(12241), + [anon_sym_LPAREN] = ACTIONS(12241), + [anon_sym_COMMA] = ACTIONS(12241), + [anon_sym_EQ] = ACTIONS(12241), + [sym_word] = ACTIONS(12241), + [sym_param] = ACTIONS(12241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12241), + [anon_sym_DOLLAR] = ACTIONS(12243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12241), + [anon_sym_BSLASHbegin] = ACTIONS(12243), + [anon_sym_BSLASHcaption] = ACTIONS(12243), + [anon_sym_BSLASHcite] = ACTIONS(12243), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCite] = ACTIONS(12243), + [anon_sym_BSLASHnocite] = ACTIONS(12243), + [anon_sym_BSLASHcitet] = ACTIONS(12243), + [anon_sym_BSLASHcitep] = ACTIONS(12243), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteauthor] = ACTIONS(12243), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12243), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitetitle] = ACTIONS(12243), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteyear] = ACTIONS(12243), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitedate] = ACTIONS(12243), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteurl] = ACTIONS(12243), + [anon_sym_BSLASHfullcite] = ACTIONS(12243), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12243), + [anon_sym_BSLASHcitealt] = ACTIONS(12243), + [anon_sym_BSLASHcitealp] = ACTIONS(12243), + [anon_sym_BSLASHcitetext] = ACTIONS(12243), + [anon_sym_BSLASHparencite] = ACTIONS(12243), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHParencite] = ACTIONS(12243), + [anon_sym_BSLASHfootcite] = ACTIONS(12243), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12243), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12243), + [anon_sym_BSLASHtextcite] = ACTIONS(12243), + [anon_sym_BSLASHTextcite] = ACTIONS(12243), + [anon_sym_BSLASHsmartcite] = ACTIONS(12243), + [anon_sym_BSLASHSmartcite] = ACTIONS(12243), + [anon_sym_BSLASHsupercite] = ACTIONS(12243), + [anon_sym_BSLASHautocite] = ACTIONS(12243), + [anon_sym_BSLASHAutocite] = ACTIONS(12243), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHvolcite] = ACTIONS(12243), + [anon_sym_BSLASHVolcite] = ACTIONS(12243), + [anon_sym_BSLASHpvolcite] = ACTIONS(12243), + [anon_sym_BSLASHPvolcite] = ACTIONS(12243), + [anon_sym_BSLASHfvolcite] = ACTIONS(12243), + [anon_sym_BSLASHftvolcite] = ACTIONS(12243), + [anon_sym_BSLASHsvolcite] = ACTIONS(12243), + [anon_sym_BSLASHSvolcite] = ACTIONS(12243), + [anon_sym_BSLASHtvolcite] = ACTIONS(12243), + [anon_sym_BSLASHTvolcite] = ACTIONS(12243), + [anon_sym_BSLASHavolcite] = ACTIONS(12243), + [anon_sym_BSLASHAvolcite] = ACTIONS(12243), + [anon_sym_BSLASHnotecite] = ACTIONS(12243), + [anon_sym_BSLASHpnotecite] = ACTIONS(12243), + [anon_sym_BSLASHPnotecite] = ACTIONS(12243), + [anon_sym_BSLASHfnotecite] = ACTIONS(12243), + [anon_sym_BSLASHusepackage] = ACTIONS(12243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12243), + [anon_sym_BSLASHinclude] = ACTIONS(12243), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12243), + [anon_sym_BSLASHinput] = ACTIONS(12243), + [anon_sym_BSLASHsubfile] = ACTIONS(12243), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12243), + [anon_sym_BSLASHbibliography] = ACTIONS(12243), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12243), + [anon_sym_BSLASHincludesvg] = ACTIONS(12243), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12243), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12243), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12243), + [anon_sym_BSLASHimport] = ACTIONS(12243), + [anon_sym_BSLASHsubimport] = ACTIONS(12243), + [anon_sym_BSLASHinputfrom] = ACTIONS(12243), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12243), + [anon_sym_BSLASHincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHlabel] = ACTIONS(12243), + [anon_sym_BSLASHref] = ACTIONS(12243), + [anon_sym_BSLASHvref] = ACTIONS(12243), + [anon_sym_BSLASHVref] = ACTIONS(12243), + [anon_sym_BSLASHautoref] = ACTIONS(12243), + [anon_sym_BSLASHpageref] = ACTIONS(12243), + [anon_sym_BSLASHcref] = ACTIONS(12243), + [anon_sym_BSLASHCref] = ACTIONS(12243), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnameCref] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHlabelcref] = ACTIONS(12243), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12243), + [anon_sym_BSLASHeqref] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange] = ACTIONS(12243), + [anon_sym_BSLASHCrefrange] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewlabel] = ACTIONS(12243), + [anon_sym_BSLASHnewcommand] = ACTIONS(12243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12243), + [anon_sym_BSLASHgls] = ACTIONS(12243), + [anon_sym_BSLASHGls] = ACTIONS(12243), + [anon_sym_BSLASHGLS] = ACTIONS(12243), + [anon_sym_BSLASHglspl] = ACTIONS(12243), + [anon_sym_BSLASHGlspl] = ACTIONS(12243), + [anon_sym_BSLASHGLSpl] = ACTIONS(12243), + [anon_sym_BSLASHglsdisp] = ACTIONS(12243), + [anon_sym_BSLASHglslink] = ACTIONS(12243), + [anon_sym_BSLASHglstext] = ACTIONS(12243), + [anon_sym_BSLASHGlstext] = ACTIONS(12243), + [anon_sym_BSLASHGLStext] = ACTIONS(12243), + [anon_sym_BSLASHglsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12243), + [anon_sym_BSLASHglsplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSplural] = ACTIONS(12243), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHglsname] = ACTIONS(12243), + [anon_sym_BSLASHGlsname] = ACTIONS(12243), + [anon_sym_BSLASHGLSname] = ACTIONS(12243), + [anon_sym_BSLASHglssymbol] = ACTIONS(12243), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12243), + [anon_sym_BSLASHglsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12243), + [anon_sym_BSLASHglsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12243), + [anon_sym_BSLASHglsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12243), + [anon_sym_BSLASHglsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12243), + [anon_sym_BSLASHglsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12243), + [anon_sym_BSLASHnewacronym] = ACTIONS(12243), + [anon_sym_BSLASHacrshort] = ACTIONS(12243), + [anon_sym_BSLASHAcrshort] = ACTIONS(12243), + [anon_sym_BSLASHACRshort] = ACTIONS(12243), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12243), + [anon_sym_BSLASHacrlong] = ACTIONS(12243), + [anon_sym_BSLASHAcrlong] = ACTIONS(12243), + [anon_sym_BSLASHACRlong] = ACTIONS(12243), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12243), + [anon_sym_BSLASHacrfull] = ACTIONS(12243), + [anon_sym_BSLASHAcrfull] = ACTIONS(12243), + [anon_sym_BSLASHACRfull] = ACTIONS(12243), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12243), + [anon_sym_BSLASHacs] = ACTIONS(12243), + [anon_sym_BSLASHAcs] = ACTIONS(12243), + [anon_sym_BSLASHacsp] = ACTIONS(12243), + [anon_sym_BSLASHAcsp] = ACTIONS(12243), + [anon_sym_BSLASHacl] = ACTIONS(12243), + [anon_sym_BSLASHAcl] = ACTIONS(12243), + [anon_sym_BSLASHaclp] = ACTIONS(12243), + [anon_sym_BSLASHAclp] = ACTIONS(12243), + [anon_sym_BSLASHacf] = ACTIONS(12243), + [anon_sym_BSLASHAcf] = ACTIONS(12243), + [anon_sym_BSLASHacfp] = ACTIONS(12243), + [anon_sym_BSLASHAcfp] = ACTIONS(12243), + [anon_sym_BSLASHac] = ACTIONS(12243), + [anon_sym_BSLASHAc] = ACTIONS(12243), + [anon_sym_BSLASHacp] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12243), + [anon_sym_BSLASHcolor] = ACTIONS(12243), + [anon_sym_BSLASHcolorbox] = ACTIONS(12243), + [anon_sym_BSLASHtextcolor] = ACTIONS(12243), + [anon_sym_BSLASHpagecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12243), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12243), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12243), + }, + [1536] = { + [sym_generic_command_name] = ACTIONS(12247), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12247), + [aux_sym_subparagraph_token1] = ACTIONS(12247), + [anon_sym_BSLASHitem] = ACTIONS(12247), + [anon_sym_LBRACK] = ACTIONS(12245), + [anon_sym_RBRACK] = ACTIONS(12245), + [anon_sym_LBRACE] = ACTIONS(12245), + [anon_sym_RBRACE] = ACTIONS(12245), + [anon_sym_LPAREN] = ACTIONS(12245), + [anon_sym_COMMA] = ACTIONS(12245), + [anon_sym_EQ] = ACTIONS(12245), + [sym_word] = ACTIONS(12245), + [sym_param] = ACTIONS(12245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12245), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12245), + [anon_sym_DOLLAR] = ACTIONS(12247), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12245), + [anon_sym_BSLASHbegin] = ACTIONS(12247), + [anon_sym_BSLASHcaption] = ACTIONS(12247), + [anon_sym_BSLASHcite] = ACTIONS(12247), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCite] = ACTIONS(12247), + [anon_sym_BSLASHnocite] = ACTIONS(12247), + [anon_sym_BSLASHcitet] = ACTIONS(12247), + [anon_sym_BSLASHcitep] = ACTIONS(12247), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteauthor] = ACTIONS(12247), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12247), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitetitle] = ACTIONS(12247), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteyear] = ACTIONS(12247), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitedate] = ACTIONS(12247), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteurl] = ACTIONS(12247), + [anon_sym_BSLASHfullcite] = ACTIONS(12247), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12247), + [anon_sym_BSLASHcitealt] = ACTIONS(12247), + [anon_sym_BSLASHcitealp] = ACTIONS(12247), + [anon_sym_BSLASHcitetext] = ACTIONS(12247), + [anon_sym_BSLASHparencite] = ACTIONS(12247), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHParencite] = ACTIONS(12247), + [anon_sym_BSLASHfootcite] = ACTIONS(12247), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12247), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12247), + [anon_sym_BSLASHtextcite] = ACTIONS(12247), + [anon_sym_BSLASHTextcite] = ACTIONS(12247), + [anon_sym_BSLASHsmartcite] = ACTIONS(12247), + [anon_sym_BSLASHSmartcite] = ACTIONS(12247), + [anon_sym_BSLASHsupercite] = ACTIONS(12247), + [anon_sym_BSLASHautocite] = ACTIONS(12247), + [anon_sym_BSLASHAutocite] = ACTIONS(12247), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHvolcite] = ACTIONS(12247), + [anon_sym_BSLASHVolcite] = ACTIONS(12247), + [anon_sym_BSLASHpvolcite] = ACTIONS(12247), + [anon_sym_BSLASHPvolcite] = ACTIONS(12247), + [anon_sym_BSLASHfvolcite] = ACTIONS(12247), + [anon_sym_BSLASHftvolcite] = ACTIONS(12247), + [anon_sym_BSLASHsvolcite] = ACTIONS(12247), + [anon_sym_BSLASHSvolcite] = ACTIONS(12247), + [anon_sym_BSLASHtvolcite] = ACTIONS(12247), + [anon_sym_BSLASHTvolcite] = ACTIONS(12247), + [anon_sym_BSLASHavolcite] = ACTIONS(12247), + [anon_sym_BSLASHAvolcite] = ACTIONS(12247), + [anon_sym_BSLASHnotecite] = ACTIONS(12247), + [anon_sym_BSLASHpnotecite] = ACTIONS(12247), + [anon_sym_BSLASHPnotecite] = ACTIONS(12247), + [anon_sym_BSLASHfnotecite] = ACTIONS(12247), + [anon_sym_BSLASHusepackage] = ACTIONS(12247), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12247), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12247), + [anon_sym_BSLASHinclude] = ACTIONS(12247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12247), + [anon_sym_BSLASHinput] = ACTIONS(12247), + [anon_sym_BSLASHsubfile] = ACTIONS(12247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12247), + [anon_sym_BSLASHbibliography] = ACTIONS(12247), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12247), + [anon_sym_BSLASHincludesvg] = ACTIONS(12247), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12247), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12247), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12247), + [anon_sym_BSLASHimport] = ACTIONS(12247), + [anon_sym_BSLASHsubimport] = ACTIONS(12247), + [anon_sym_BSLASHinputfrom] = ACTIONS(12247), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12247), + [anon_sym_BSLASHincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHlabel] = ACTIONS(12247), + [anon_sym_BSLASHref] = ACTIONS(12247), + [anon_sym_BSLASHvref] = ACTIONS(12247), + [anon_sym_BSLASHVref] = ACTIONS(12247), + [anon_sym_BSLASHautoref] = ACTIONS(12247), + [anon_sym_BSLASHpageref] = ACTIONS(12247), + [anon_sym_BSLASHcref] = ACTIONS(12247), + [anon_sym_BSLASHCref] = ACTIONS(12247), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnameCref] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHlabelcref] = ACTIONS(12247), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12247), + [anon_sym_BSLASHeqref] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange] = ACTIONS(12247), + [anon_sym_BSLASHCrefrange] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewlabel] = ACTIONS(12247), + [anon_sym_BSLASHnewcommand] = ACTIONS(12247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12247), + [anon_sym_BSLASHgls] = ACTIONS(12247), + [anon_sym_BSLASHGls] = ACTIONS(12247), + [anon_sym_BSLASHGLS] = ACTIONS(12247), + [anon_sym_BSLASHglspl] = ACTIONS(12247), + [anon_sym_BSLASHGlspl] = ACTIONS(12247), + [anon_sym_BSLASHGLSpl] = ACTIONS(12247), + [anon_sym_BSLASHglsdisp] = ACTIONS(12247), + [anon_sym_BSLASHglslink] = ACTIONS(12247), + [anon_sym_BSLASHglstext] = ACTIONS(12247), + [anon_sym_BSLASHGlstext] = ACTIONS(12247), + [anon_sym_BSLASHGLStext] = ACTIONS(12247), + [anon_sym_BSLASHglsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12247), + [anon_sym_BSLASHglsplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSplural] = ACTIONS(12247), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHglsname] = ACTIONS(12247), + [anon_sym_BSLASHGlsname] = ACTIONS(12247), + [anon_sym_BSLASHGLSname] = ACTIONS(12247), + [anon_sym_BSLASHglssymbol] = ACTIONS(12247), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12247), + [anon_sym_BSLASHglsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12247), + [anon_sym_BSLASHglsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12247), + [anon_sym_BSLASHglsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12247), + [anon_sym_BSLASHglsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12247), + [anon_sym_BSLASHglsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12247), + [anon_sym_BSLASHnewacronym] = ACTIONS(12247), + [anon_sym_BSLASHacrshort] = ACTIONS(12247), + [anon_sym_BSLASHAcrshort] = ACTIONS(12247), + [anon_sym_BSLASHACRshort] = ACTIONS(12247), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12247), + [anon_sym_BSLASHacrlong] = ACTIONS(12247), + [anon_sym_BSLASHAcrlong] = ACTIONS(12247), + [anon_sym_BSLASHACRlong] = ACTIONS(12247), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12247), + [anon_sym_BSLASHacrfull] = ACTIONS(12247), + [anon_sym_BSLASHAcrfull] = ACTIONS(12247), + [anon_sym_BSLASHACRfull] = ACTIONS(12247), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12247), + [anon_sym_BSLASHacs] = ACTIONS(12247), + [anon_sym_BSLASHAcs] = ACTIONS(12247), + [anon_sym_BSLASHacsp] = ACTIONS(12247), + [anon_sym_BSLASHAcsp] = ACTIONS(12247), + [anon_sym_BSLASHacl] = ACTIONS(12247), + [anon_sym_BSLASHAcl] = ACTIONS(12247), + [anon_sym_BSLASHaclp] = ACTIONS(12247), + [anon_sym_BSLASHAclp] = ACTIONS(12247), + [anon_sym_BSLASHacf] = ACTIONS(12247), + [anon_sym_BSLASHAcf] = ACTIONS(12247), + [anon_sym_BSLASHacfp] = ACTIONS(12247), + [anon_sym_BSLASHAcfp] = ACTIONS(12247), + [anon_sym_BSLASHac] = ACTIONS(12247), + [anon_sym_BSLASHAc] = ACTIONS(12247), + [anon_sym_BSLASHacp] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12247), + [anon_sym_BSLASHcolor] = ACTIONS(12247), + [anon_sym_BSLASHcolorbox] = ACTIONS(12247), + [anon_sym_BSLASHtextcolor] = ACTIONS(12247), + [anon_sym_BSLASHpagecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12247), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12247), + }, + [1537] = { + [sym_generic_command_name] = ACTIONS(12189), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12189), + [aux_sym_subparagraph_token1] = ACTIONS(12189), + [anon_sym_BSLASHitem] = ACTIONS(12189), + [anon_sym_LBRACK] = ACTIONS(12187), + [anon_sym_RBRACK] = ACTIONS(12187), + [anon_sym_LBRACE] = ACTIONS(12187), + [anon_sym_RBRACE] = ACTIONS(12187), + [anon_sym_LPAREN] = ACTIONS(12187), + [anon_sym_COMMA] = ACTIONS(12187), + [anon_sym_EQ] = ACTIONS(12187), + [sym_word] = ACTIONS(12187), + [sym_param] = ACTIONS(12187), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12187), + [anon_sym_DOLLAR] = ACTIONS(12189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12187), + [anon_sym_BSLASHbegin] = ACTIONS(12189), + [anon_sym_BSLASHcaption] = ACTIONS(12189), + [anon_sym_BSLASHcite] = ACTIONS(12189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCite] = ACTIONS(12189), + [anon_sym_BSLASHnocite] = ACTIONS(12189), + [anon_sym_BSLASHcitet] = ACTIONS(12189), + [anon_sym_BSLASHcitep] = ACTIONS(12189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteauthor] = ACTIONS(12189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitetitle] = ACTIONS(12189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteyear] = ACTIONS(12189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitedate] = ACTIONS(12189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteurl] = ACTIONS(12189), + [anon_sym_BSLASHfullcite] = ACTIONS(12189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12189), + [anon_sym_BSLASHcitealt] = ACTIONS(12189), + [anon_sym_BSLASHcitealp] = ACTIONS(12189), + [anon_sym_BSLASHcitetext] = ACTIONS(12189), + [anon_sym_BSLASHparencite] = ACTIONS(12189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHParencite] = ACTIONS(12189), + [anon_sym_BSLASHfootcite] = ACTIONS(12189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12189), + [anon_sym_BSLASHtextcite] = ACTIONS(12189), + [anon_sym_BSLASHTextcite] = ACTIONS(12189), + [anon_sym_BSLASHsmartcite] = ACTIONS(12189), + [anon_sym_BSLASHSmartcite] = ACTIONS(12189), + [anon_sym_BSLASHsupercite] = ACTIONS(12189), + [anon_sym_BSLASHautocite] = ACTIONS(12189), + [anon_sym_BSLASHAutocite] = ACTIONS(12189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHvolcite] = ACTIONS(12189), + [anon_sym_BSLASHVolcite] = ACTIONS(12189), + [anon_sym_BSLASHpvolcite] = ACTIONS(12189), + [anon_sym_BSLASHPvolcite] = ACTIONS(12189), + [anon_sym_BSLASHfvolcite] = ACTIONS(12189), + [anon_sym_BSLASHftvolcite] = ACTIONS(12189), + [anon_sym_BSLASHsvolcite] = ACTIONS(12189), + [anon_sym_BSLASHSvolcite] = ACTIONS(12189), + [anon_sym_BSLASHtvolcite] = ACTIONS(12189), + [anon_sym_BSLASHTvolcite] = ACTIONS(12189), + [anon_sym_BSLASHavolcite] = ACTIONS(12189), + [anon_sym_BSLASHAvolcite] = ACTIONS(12189), + [anon_sym_BSLASHnotecite] = ACTIONS(12189), + [anon_sym_BSLASHpnotecite] = ACTIONS(12189), + [anon_sym_BSLASHPnotecite] = ACTIONS(12189), + [anon_sym_BSLASHfnotecite] = ACTIONS(12189), + [anon_sym_BSLASHusepackage] = ACTIONS(12189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12189), + [anon_sym_BSLASHinclude] = ACTIONS(12189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12189), + [anon_sym_BSLASHinput] = ACTIONS(12189), + [anon_sym_BSLASHsubfile] = ACTIONS(12189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12189), + [anon_sym_BSLASHbibliography] = ACTIONS(12189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12189), + [anon_sym_BSLASHincludesvg] = ACTIONS(12189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12189), + [anon_sym_BSLASHimport] = ACTIONS(12189), + [anon_sym_BSLASHsubimport] = ACTIONS(12189), + [anon_sym_BSLASHinputfrom] = ACTIONS(12189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12189), + [anon_sym_BSLASHincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHlabel] = ACTIONS(12189), + [anon_sym_BSLASHref] = ACTIONS(12189), + [anon_sym_BSLASHvref] = ACTIONS(12189), + [anon_sym_BSLASHVref] = ACTIONS(12189), + [anon_sym_BSLASHautoref] = ACTIONS(12189), + [anon_sym_BSLASHpageref] = ACTIONS(12189), + [anon_sym_BSLASHcref] = ACTIONS(12189), + [anon_sym_BSLASHCref] = ACTIONS(12189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnameCref] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHlabelcref] = ACTIONS(12189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12189), + [anon_sym_BSLASHeqref] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange] = ACTIONS(12189), + [anon_sym_BSLASHCrefrange] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewlabel] = ACTIONS(12189), + [anon_sym_BSLASHnewcommand] = ACTIONS(12189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12189), + [anon_sym_BSLASHgls] = ACTIONS(12189), + [anon_sym_BSLASHGls] = ACTIONS(12189), + [anon_sym_BSLASHGLS] = ACTIONS(12189), + [anon_sym_BSLASHglspl] = ACTIONS(12189), + [anon_sym_BSLASHGlspl] = ACTIONS(12189), + [anon_sym_BSLASHGLSpl] = ACTIONS(12189), + [anon_sym_BSLASHglsdisp] = ACTIONS(12189), + [anon_sym_BSLASHglslink] = ACTIONS(12189), + [anon_sym_BSLASHglstext] = ACTIONS(12189), + [anon_sym_BSLASHGlstext] = ACTIONS(12189), + [anon_sym_BSLASHGLStext] = ACTIONS(12189), + [anon_sym_BSLASHglsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12189), + [anon_sym_BSLASHglsplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSplural] = ACTIONS(12189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHglsname] = ACTIONS(12189), + [anon_sym_BSLASHGlsname] = ACTIONS(12189), + [anon_sym_BSLASHGLSname] = ACTIONS(12189), + [anon_sym_BSLASHglssymbol] = ACTIONS(12189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12189), + [anon_sym_BSLASHglsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12189), + [anon_sym_BSLASHglsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12189), + [anon_sym_BSLASHglsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12189), + [anon_sym_BSLASHglsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12189), + [anon_sym_BSLASHglsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12189), + [anon_sym_BSLASHnewacronym] = ACTIONS(12189), + [anon_sym_BSLASHacrshort] = ACTIONS(12189), + [anon_sym_BSLASHAcrshort] = ACTIONS(12189), + [anon_sym_BSLASHACRshort] = ACTIONS(12189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12189), + [anon_sym_BSLASHacrlong] = ACTIONS(12189), + [anon_sym_BSLASHAcrlong] = ACTIONS(12189), + [anon_sym_BSLASHACRlong] = ACTIONS(12189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12189), + [anon_sym_BSLASHacrfull] = ACTIONS(12189), + [anon_sym_BSLASHAcrfull] = ACTIONS(12189), + [anon_sym_BSLASHACRfull] = ACTIONS(12189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12189), + [anon_sym_BSLASHacs] = ACTIONS(12189), + [anon_sym_BSLASHAcs] = ACTIONS(12189), + [anon_sym_BSLASHacsp] = ACTIONS(12189), + [anon_sym_BSLASHAcsp] = ACTIONS(12189), + [anon_sym_BSLASHacl] = ACTIONS(12189), + [anon_sym_BSLASHAcl] = ACTIONS(12189), + [anon_sym_BSLASHaclp] = ACTIONS(12189), + [anon_sym_BSLASHAclp] = ACTIONS(12189), + [anon_sym_BSLASHacf] = ACTIONS(12189), + [anon_sym_BSLASHAcf] = ACTIONS(12189), + [anon_sym_BSLASHacfp] = ACTIONS(12189), + [anon_sym_BSLASHAcfp] = ACTIONS(12189), + [anon_sym_BSLASHac] = ACTIONS(12189), + [anon_sym_BSLASHAc] = ACTIONS(12189), + [anon_sym_BSLASHacp] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12189), + [anon_sym_BSLASHcolor] = ACTIONS(12189), + [anon_sym_BSLASHcolorbox] = ACTIONS(12189), + [anon_sym_BSLASHtextcolor] = ACTIONS(12189), + [anon_sym_BSLASHpagecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12189), + }, + [1538] = { + [sym_generic_command_name] = ACTIONS(12251), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12251), + [aux_sym_subparagraph_token1] = ACTIONS(12251), + [anon_sym_BSLASHitem] = ACTIONS(12251), + [anon_sym_LBRACK] = ACTIONS(12249), + [anon_sym_RBRACK] = ACTIONS(12249), + [anon_sym_LBRACE] = ACTIONS(12249), + [anon_sym_RBRACE] = ACTIONS(12249), + [anon_sym_LPAREN] = ACTIONS(12249), + [anon_sym_COMMA] = ACTIONS(12249), + [anon_sym_EQ] = ACTIONS(12249), + [sym_word] = ACTIONS(12249), + [sym_param] = ACTIONS(12249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12249), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12249), + [anon_sym_DOLLAR] = ACTIONS(12251), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12249), + [anon_sym_BSLASHbegin] = ACTIONS(12251), + [anon_sym_BSLASHcaption] = ACTIONS(12251), + [anon_sym_BSLASHcite] = ACTIONS(12251), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCite] = ACTIONS(12251), + [anon_sym_BSLASHnocite] = ACTIONS(12251), + [anon_sym_BSLASHcitet] = ACTIONS(12251), + [anon_sym_BSLASHcitep] = ACTIONS(12251), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteauthor] = ACTIONS(12251), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12251), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitetitle] = ACTIONS(12251), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteyear] = ACTIONS(12251), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitedate] = ACTIONS(12251), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteurl] = ACTIONS(12251), + [anon_sym_BSLASHfullcite] = ACTIONS(12251), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12251), + [anon_sym_BSLASHcitealt] = ACTIONS(12251), + [anon_sym_BSLASHcitealp] = ACTIONS(12251), + [anon_sym_BSLASHcitetext] = ACTIONS(12251), + [anon_sym_BSLASHparencite] = ACTIONS(12251), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHParencite] = ACTIONS(12251), + [anon_sym_BSLASHfootcite] = ACTIONS(12251), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12251), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12251), + [anon_sym_BSLASHtextcite] = ACTIONS(12251), + [anon_sym_BSLASHTextcite] = ACTIONS(12251), + [anon_sym_BSLASHsmartcite] = ACTIONS(12251), + [anon_sym_BSLASHSmartcite] = ACTIONS(12251), + [anon_sym_BSLASHsupercite] = ACTIONS(12251), + [anon_sym_BSLASHautocite] = ACTIONS(12251), + [anon_sym_BSLASHAutocite] = ACTIONS(12251), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHvolcite] = ACTIONS(12251), + [anon_sym_BSLASHVolcite] = ACTIONS(12251), + [anon_sym_BSLASHpvolcite] = ACTIONS(12251), + [anon_sym_BSLASHPvolcite] = ACTIONS(12251), + [anon_sym_BSLASHfvolcite] = ACTIONS(12251), + [anon_sym_BSLASHftvolcite] = ACTIONS(12251), + [anon_sym_BSLASHsvolcite] = ACTIONS(12251), + [anon_sym_BSLASHSvolcite] = ACTIONS(12251), + [anon_sym_BSLASHtvolcite] = ACTIONS(12251), + [anon_sym_BSLASHTvolcite] = ACTIONS(12251), + [anon_sym_BSLASHavolcite] = ACTIONS(12251), + [anon_sym_BSLASHAvolcite] = ACTIONS(12251), + [anon_sym_BSLASHnotecite] = ACTIONS(12251), + [anon_sym_BSLASHpnotecite] = ACTIONS(12251), + [anon_sym_BSLASHPnotecite] = ACTIONS(12251), + [anon_sym_BSLASHfnotecite] = ACTIONS(12251), + [anon_sym_BSLASHusepackage] = ACTIONS(12251), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12251), + [anon_sym_BSLASHinclude] = ACTIONS(12251), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12251), + [anon_sym_BSLASHinput] = ACTIONS(12251), + [anon_sym_BSLASHsubfile] = ACTIONS(12251), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12251), + [anon_sym_BSLASHbibliography] = ACTIONS(12251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12251), + [anon_sym_BSLASHincludesvg] = ACTIONS(12251), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12251), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12251), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12251), + [anon_sym_BSLASHimport] = ACTIONS(12251), + [anon_sym_BSLASHsubimport] = ACTIONS(12251), + [anon_sym_BSLASHinputfrom] = ACTIONS(12251), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12251), + [anon_sym_BSLASHincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHlabel] = ACTIONS(12251), + [anon_sym_BSLASHref] = ACTIONS(12251), + [anon_sym_BSLASHvref] = ACTIONS(12251), + [anon_sym_BSLASHVref] = ACTIONS(12251), + [anon_sym_BSLASHautoref] = ACTIONS(12251), + [anon_sym_BSLASHpageref] = ACTIONS(12251), + [anon_sym_BSLASHcref] = ACTIONS(12251), + [anon_sym_BSLASHCref] = ACTIONS(12251), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnameCref] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHlabelcref] = ACTIONS(12251), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12251), + [anon_sym_BSLASHeqref] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange] = ACTIONS(12251), + [anon_sym_BSLASHCrefrange] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewlabel] = ACTIONS(12251), + [anon_sym_BSLASHnewcommand] = ACTIONS(12251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12251), + [anon_sym_BSLASHgls] = ACTIONS(12251), + [anon_sym_BSLASHGls] = ACTIONS(12251), + [anon_sym_BSLASHGLS] = ACTIONS(12251), + [anon_sym_BSLASHglspl] = ACTIONS(12251), + [anon_sym_BSLASHGlspl] = ACTIONS(12251), + [anon_sym_BSLASHGLSpl] = ACTIONS(12251), + [anon_sym_BSLASHglsdisp] = ACTIONS(12251), + [anon_sym_BSLASHglslink] = ACTIONS(12251), + [anon_sym_BSLASHglstext] = ACTIONS(12251), + [anon_sym_BSLASHGlstext] = ACTIONS(12251), + [anon_sym_BSLASHGLStext] = ACTIONS(12251), + [anon_sym_BSLASHglsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12251), + [anon_sym_BSLASHglsplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSplural] = ACTIONS(12251), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHglsname] = ACTIONS(12251), + [anon_sym_BSLASHGlsname] = ACTIONS(12251), + [anon_sym_BSLASHGLSname] = ACTIONS(12251), + [anon_sym_BSLASHglssymbol] = ACTIONS(12251), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12251), + [anon_sym_BSLASHglsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12251), + [anon_sym_BSLASHglsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12251), + [anon_sym_BSLASHglsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12251), + [anon_sym_BSLASHglsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12251), + [anon_sym_BSLASHglsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12251), + [anon_sym_BSLASHnewacronym] = ACTIONS(12251), + [anon_sym_BSLASHacrshort] = ACTIONS(12251), + [anon_sym_BSLASHAcrshort] = ACTIONS(12251), + [anon_sym_BSLASHACRshort] = ACTIONS(12251), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12251), + [anon_sym_BSLASHacrlong] = ACTIONS(12251), + [anon_sym_BSLASHAcrlong] = ACTIONS(12251), + [anon_sym_BSLASHACRlong] = ACTIONS(12251), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12251), + [anon_sym_BSLASHacrfull] = ACTIONS(12251), + [anon_sym_BSLASHAcrfull] = ACTIONS(12251), + [anon_sym_BSLASHACRfull] = ACTIONS(12251), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12251), + [anon_sym_BSLASHacs] = ACTIONS(12251), + [anon_sym_BSLASHAcs] = ACTIONS(12251), + [anon_sym_BSLASHacsp] = ACTIONS(12251), + [anon_sym_BSLASHAcsp] = ACTIONS(12251), + [anon_sym_BSLASHacl] = ACTIONS(12251), + [anon_sym_BSLASHAcl] = ACTIONS(12251), + [anon_sym_BSLASHaclp] = ACTIONS(12251), + [anon_sym_BSLASHAclp] = ACTIONS(12251), + [anon_sym_BSLASHacf] = ACTIONS(12251), + [anon_sym_BSLASHAcf] = ACTIONS(12251), + [anon_sym_BSLASHacfp] = ACTIONS(12251), + [anon_sym_BSLASHAcfp] = ACTIONS(12251), + [anon_sym_BSLASHac] = ACTIONS(12251), + [anon_sym_BSLASHAc] = ACTIONS(12251), + [anon_sym_BSLASHacp] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12251), + [anon_sym_BSLASHcolor] = ACTIONS(12251), + [anon_sym_BSLASHcolorbox] = ACTIONS(12251), + [anon_sym_BSLASHtextcolor] = ACTIONS(12251), + [anon_sym_BSLASHpagecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12251), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12251), + }, + [1539] = { + [sym_generic_command_name] = ACTIONS(12259), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12259), + [aux_sym_subparagraph_token1] = ACTIONS(12259), + [anon_sym_BSLASHitem] = ACTIONS(12259), + [anon_sym_LBRACK] = ACTIONS(12257), + [anon_sym_RBRACK] = ACTIONS(12257), + [anon_sym_LBRACE] = ACTIONS(12257), + [anon_sym_RBRACE] = ACTIONS(12257), + [anon_sym_LPAREN] = ACTIONS(12257), + [anon_sym_COMMA] = ACTIONS(12257), + [anon_sym_EQ] = ACTIONS(12257), + [sym_word] = ACTIONS(12257), + [sym_param] = ACTIONS(12257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12257), + [anon_sym_DOLLAR] = ACTIONS(12259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12257), + [anon_sym_BSLASHbegin] = ACTIONS(12259), + [anon_sym_BSLASHcaption] = ACTIONS(12259), + [anon_sym_BSLASHcite] = ACTIONS(12259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCite] = ACTIONS(12259), + [anon_sym_BSLASHnocite] = ACTIONS(12259), + [anon_sym_BSLASHcitet] = ACTIONS(12259), + [anon_sym_BSLASHcitep] = ACTIONS(12259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteauthor] = ACTIONS(12259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitetitle] = ACTIONS(12259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteyear] = ACTIONS(12259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitedate] = ACTIONS(12259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteurl] = ACTIONS(12259), + [anon_sym_BSLASHfullcite] = ACTIONS(12259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12259), + [anon_sym_BSLASHcitealt] = ACTIONS(12259), + [anon_sym_BSLASHcitealp] = ACTIONS(12259), + [anon_sym_BSLASHcitetext] = ACTIONS(12259), + [anon_sym_BSLASHparencite] = ACTIONS(12259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHParencite] = ACTIONS(12259), + [anon_sym_BSLASHfootcite] = ACTIONS(12259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12259), + [anon_sym_BSLASHtextcite] = ACTIONS(12259), + [anon_sym_BSLASHTextcite] = ACTIONS(12259), + [anon_sym_BSLASHsmartcite] = ACTIONS(12259), + [anon_sym_BSLASHSmartcite] = ACTIONS(12259), + [anon_sym_BSLASHsupercite] = ACTIONS(12259), + [anon_sym_BSLASHautocite] = ACTIONS(12259), + [anon_sym_BSLASHAutocite] = ACTIONS(12259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHvolcite] = ACTIONS(12259), + [anon_sym_BSLASHVolcite] = ACTIONS(12259), + [anon_sym_BSLASHpvolcite] = ACTIONS(12259), + [anon_sym_BSLASHPvolcite] = ACTIONS(12259), + [anon_sym_BSLASHfvolcite] = ACTIONS(12259), + [anon_sym_BSLASHftvolcite] = ACTIONS(12259), + [anon_sym_BSLASHsvolcite] = ACTIONS(12259), + [anon_sym_BSLASHSvolcite] = ACTIONS(12259), + [anon_sym_BSLASHtvolcite] = ACTIONS(12259), + [anon_sym_BSLASHTvolcite] = ACTIONS(12259), + [anon_sym_BSLASHavolcite] = ACTIONS(12259), + [anon_sym_BSLASHAvolcite] = ACTIONS(12259), + [anon_sym_BSLASHnotecite] = ACTIONS(12259), + [anon_sym_BSLASHpnotecite] = ACTIONS(12259), + [anon_sym_BSLASHPnotecite] = ACTIONS(12259), + [anon_sym_BSLASHfnotecite] = ACTIONS(12259), + [anon_sym_BSLASHusepackage] = ACTIONS(12259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12259), + [anon_sym_BSLASHinclude] = ACTIONS(12259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12259), + [anon_sym_BSLASHinput] = ACTIONS(12259), + [anon_sym_BSLASHsubfile] = ACTIONS(12259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12259), + [anon_sym_BSLASHbibliography] = ACTIONS(12259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12259), + [anon_sym_BSLASHincludesvg] = ACTIONS(12259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12259), + [anon_sym_BSLASHimport] = ACTIONS(12259), + [anon_sym_BSLASHsubimport] = ACTIONS(12259), + [anon_sym_BSLASHinputfrom] = ACTIONS(12259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12259), + [anon_sym_BSLASHincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHlabel] = ACTIONS(12259), + [anon_sym_BSLASHref] = ACTIONS(12259), + [anon_sym_BSLASHvref] = ACTIONS(12259), + [anon_sym_BSLASHVref] = ACTIONS(12259), + [anon_sym_BSLASHautoref] = ACTIONS(12259), + [anon_sym_BSLASHpageref] = ACTIONS(12259), + [anon_sym_BSLASHcref] = ACTIONS(12259), + [anon_sym_BSLASHCref] = ACTIONS(12259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnameCref] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHlabelcref] = ACTIONS(12259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12259), + [anon_sym_BSLASHeqref] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange] = ACTIONS(12259), + [anon_sym_BSLASHCrefrange] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewlabel] = ACTIONS(12259), + [anon_sym_BSLASHnewcommand] = ACTIONS(12259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12259), + [anon_sym_BSLASHgls] = ACTIONS(12259), + [anon_sym_BSLASHGls] = ACTIONS(12259), + [anon_sym_BSLASHGLS] = ACTIONS(12259), + [anon_sym_BSLASHglspl] = ACTIONS(12259), + [anon_sym_BSLASHGlspl] = ACTIONS(12259), + [anon_sym_BSLASHGLSpl] = ACTIONS(12259), + [anon_sym_BSLASHglsdisp] = ACTIONS(12259), + [anon_sym_BSLASHglslink] = ACTIONS(12259), + [anon_sym_BSLASHglstext] = ACTIONS(12259), + [anon_sym_BSLASHGlstext] = ACTIONS(12259), + [anon_sym_BSLASHGLStext] = ACTIONS(12259), + [anon_sym_BSLASHglsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12259), + [anon_sym_BSLASHglsplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSplural] = ACTIONS(12259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHglsname] = ACTIONS(12259), + [anon_sym_BSLASHGlsname] = ACTIONS(12259), + [anon_sym_BSLASHGLSname] = ACTIONS(12259), + [anon_sym_BSLASHglssymbol] = ACTIONS(12259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12259), + [anon_sym_BSLASHglsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12259), + [anon_sym_BSLASHglsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12259), + [anon_sym_BSLASHglsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12259), + [anon_sym_BSLASHglsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12259), + [anon_sym_BSLASHglsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12259), + [anon_sym_BSLASHnewacronym] = ACTIONS(12259), + [anon_sym_BSLASHacrshort] = ACTIONS(12259), + [anon_sym_BSLASHAcrshort] = ACTIONS(12259), + [anon_sym_BSLASHACRshort] = ACTIONS(12259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12259), + [anon_sym_BSLASHacrlong] = ACTIONS(12259), + [anon_sym_BSLASHAcrlong] = ACTIONS(12259), + [anon_sym_BSLASHACRlong] = ACTIONS(12259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12259), + [anon_sym_BSLASHacrfull] = ACTIONS(12259), + [anon_sym_BSLASHAcrfull] = ACTIONS(12259), + [anon_sym_BSLASHACRfull] = ACTIONS(12259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12259), + [anon_sym_BSLASHacs] = ACTIONS(12259), + [anon_sym_BSLASHAcs] = ACTIONS(12259), + [anon_sym_BSLASHacsp] = ACTIONS(12259), + [anon_sym_BSLASHAcsp] = ACTIONS(12259), + [anon_sym_BSLASHacl] = ACTIONS(12259), + [anon_sym_BSLASHAcl] = ACTIONS(12259), + [anon_sym_BSLASHaclp] = ACTIONS(12259), + [anon_sym_BSLASHAclp] = ACTIONS(12259), + [anon_sym_BSLASHacf] = ACTIONS(12259), + [anon_sym_BSLASHAcf] = ACTIONS(12259), + [anon_sym_BSLASHacfp] = ACTIONS(12259), + [anon_sym_BSLASHAcfp] = ACTIONS(12259), + [anon_sym_BSLASHac] = ACTIONS(12259), + [anon_sym_BSLASHAc] = ACTIONS(12259), + [anon_sym_BSLASHacp] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12259), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12259), + [anon_sym_BSLASHcolor] = ACTIONS(12259), + [anon_sym_BSLASHcolorbox] = ACTIONS(12259), + [anon_sym_BSLASHtextcolor] = ACTIONS(12259), + [anon_sym_BSLASHpagecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12259), + }, + [1540] = { + [sym_generic_command_name] = ACTIONS(12263), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12263), + [aux_sym_subparagraph_token1] = ACTIONS(12263), + [anon_sym_BSLASHitem] = ACTIONS(12263), + [anon_sym_LBRACK] = ACTIONS(12261), + [anon_sym_RBRACK] = ACTIONS(12261), + [anon_sym_LBRACE] = ACTIONS(12261), + [anon_sym_RBRACE] = ACTIONS(12261), + [anon_sym_LPAREN] = ACTIONS(12261), + [anon_sym_COMMA] = ACTIONS(12261), + [anon_sym_EQ] = ACTIONS(12261), + [sym_word] = ACTIONS(12261), + [sym_param] = ACTIONS(12261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12261), + [anon_sym_DOLLAR] = ACTIONS(12263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12261), + [anon_sym_BSLASHbegin] = ACTIONS(12263), + [anon_sym_BSLASHcaption] = ACTIONS(12263), + [anon_sym_BSLASHcite] = ACTIONS(12263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCite] = ACTIONS(12263), + [anon_sym_BSLASHnocite] = ACTIONS(12263), + [anon_sym_BSLASHcitet] = ACTIONS(12263), + [anon_sym_BSLASHcitep] = ACTIONS(12263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteauthor] = ACTIONS(12263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitetitle] = ACTIONS(12263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteyear] = ACTIONS(12263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitedate] = ACTIONS(12263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteurl] = ACTIONS(12263), + [anon_sym_BSLASHfullcite] = ACTIONS(12263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12263), + [anon_sym_BSLASHcitealt] = ACTIONS(12263), + [anon_sym_BSLASHcitealp] = ACTIONS(12263), + [anon_sym_BSLASHcitetext] = ACTIONS(12263), + [anon_sym_BSLASHparencite] = ACTIONS(12263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHParencite] = ACTIONS(12263), + [anon_sym_BSLASHfootcite] = ACTIONS(12263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12263), + [anon_sym_BSLASHtextcite] = ACTIONS(12263), + [anon_sym_BSLASHTextcite] = ACTIONS(12263), + [anon_sym_BSLASHsmartcite] = ACTIONS(12263), + [anon_sym_BSLASHSmartcite] = ACTIONS(12263), + [anon_sym_BSLASHsupercite] = ACTIONS(12263), + [anon_sym_BSLASHautocite] = ACTIONS(12263), + [anon_sym_BSLASHAutocite] = ACTIONS(12263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHvolcite] = ACTIONS(12263), + [anon_sym_BSLASHVolcite] = ACTIONS(12263), + [anon_sym_BSLASHpvolcite] = ACTIONS(12263), + [anon_sym_BSLASHPvolcite] = ACTIONS(12263), + [anon_sym_BSLASHfvolcite] = ACTIONS(12263), + [anon_sym_BSLASHftvolcite] = ACTIONS(12263), + [anon_sym_BSLASHsvolcite] = ACTIONS(12263), + [anon_sym_BSLASHSvolcite] = ACTIONS(12263), + [anon_sym_BSLASHtvolcite] = ACTIONS(12263), + [anon_sym_BSLASHTvolcite] = ACTIONS(12263), + [anon_sym_BSLASHavolcite] = ACTIONS(12263), + [anon_sym_BSLASHAvolcite] = ACTIONS(12263), + [anon_sym_BSLASHnotecite] = ACTIONS(12263), + [anon_sym_BSLASHpnotecite] = ACTIONS(12263), + [anon_sym_BSLASHPnotecite] = ACTIONS(12263), + [anon_sym_BSLASHfnotecite] = ACTIONS(12263), + [anon_sym_BSLASHusepackage] = ACTIONS(12263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12263), + [anon_sym_BSLASHinclude] = ACTIONS(12263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12263), + [anon_sym_BSLASHinput] = ACTIONS(12263), + [anon_sym_BSLASHsubfile] = ACTIONS(12263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12263), + [anon_sym_BSLASHbibliography] = ACTIONS(12263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12263), + [anon_sym_BSLASHincludesvg] = ACTIONS(12263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12263), + [anon_sym_BSLASHimport] = ACTIONS(12263), + [anon_sym_BSLASHsubimport] = ACTIONS(12263), + [anon_sym_BSLASHinputfrom] = ACTIONS(12263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12263), + [anon_sym_BSLASHincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHlabel] = ACTIONS(12263), + [anon_sym_BSLASHref] = ACTIONS(12263), + [anon_sym_BSLASHvref] = ACTIONS(12263), + [anon_sym_BSLASHVref] = ACTIONS(12263), + [anon_sym_BSLASHautoref] = ACTIONS(12263), + [anon_sym_BSLASHpageref] = ACTIONS(12263), + [anon_sym_BSLASHcref] = ACTIONS(12263), + [anon_sym_BSLASHCref] = ACTIONS(12263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnameCref] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHlabelcref] = ACTIONS(12263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12263), + [anon_sym_BSLASHeqref] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange] = ACTIONS(12263), + [anon_sym_BSLASHCrefrange] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewlabel] = ACTIONS(12263), + [anon_sym_BSLASHnewcommand] = ACTIONS(12263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12263), + [anon_sym_BSLASHgls] = ACTIONS(12263), + [anon_sym_BSLASHGls] = ACTIONS(12263), + [anon_sym_BSLASHGLS] = ACTIONS(12263), + [anon_sym_BSLASHglspl] = ACTIONS(12263), + [anon_sym_BSLASHGlspl] = ACTIONS(12263), + [anon_sym_BSLASHGLSpl] = ACTIONS(12263), + [anon_sym_BSLASHglsdisp] = ACTIONS(12263), + [anon_sym_BSLASHglslink] = ACTIONS(12263), + [anon_sym_BSLASHglstext] = ACTIONS(12263), + [anon_sym_BSLASHGlstext] = ACTIONS(12263), + [anon_sym_BSLASHGLStext] = ACTIONS(12263), + [anon_sym_BSLASHglsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12263), + [anon_sym_BSLASHglsplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSplural] = ACTIONS(12263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHglsname] = ACTIONS(12263), + [anon_sym_BSLASHGlsname] = ACTIONS(12263), + [anon_sym_BSLASHGLSname] = ACTIONS(12263), + [anon_sym_BSLASHglssymbol] = ACTIONS(12263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12263), + [anon_sym_BSLASHglsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12263), + [anon_sym_BSLASHglsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12263), + [anon_sym_BSLASHglsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12263), + [anon_sym_BSLASHglsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12263), + [anon_sym_BSLASHglsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12263), + [anon_sym_BSLASHnewacronym] = ACTIONS(12263), + [anon_sym_BSLASHacrshort] = ACTIONS(12263), + [anon_sym_BSLASHAcrshort] = ACTIONS(12263), + [anon_sym_BSLASHACRshort] = ACTIONS(12263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12263), + [anon_sym_BSLASHacrlong] = ACTIONS(12263), + [anon_sym_BSLASHAcrlong] = ACTIONS(12263), + [anon_sym_BSLASHACRlong] = ACTIONS(12263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12263), + [anon_sym_BSLASHacrfull] = ACTIONS(12263), + [anon_sym_BSLASHAcrfull] = ACTIONS(12263), + [anon_sym_BSLASHACRfull] = ACTIONS(12263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12263), + [anon_sym_BSLASHacs] = ACTIONS(12263), + [anon_sym_BSLASHAcs] = ACTIONS(12263), + [anon_sym_BSLASHacsp] = ACTIONS(12263), + [anon_sym_BSLASHAcsp] = ACTIONS(12263), + [anon_sym_BSLASHacl] = ACTIONS(12263), + [anon_sym_BSLASHAcl] = ACTIONS(12263), + [anon_sym_BSLASHaclp] = ACTIONS(12263), + [anon_sym_BSLASHAclp] = ACTIONS(12263), + [anon_sym_BSLASHacf] = ACTIONS(12263), + [anon_sym_BSLASHAcf] = ACTIONS(12263), + [anon_sym_BSLASHacfp] = ACTIONS(12263), + [anon_sym_BSLASHAcfp] = ACTIONS(12263), + [anon_sym_BSLASHac] = ACTIONS(12263), + [anon_sym_BSLASHAc] = ACTIONS(12263), + [anon_sym_BSLASHacp] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12263), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12263), + [anon_sym_BSLASHcolor] = ACTIONS(12263), + [anon_sym_BSLASHcolorbox] = ACTIONS(12263), + [anon_sym_BSLASHtextcolor] = ACTIONS(12263), + [anon_sym_BSLASHpagecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12263), + }, + [1541] = { + [sym_generic_command_name] = ACTIONS(12319), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12319), + [aux_sym_subparagraph_token1] = ACTIONS(12319), + [anon_sym_BSLASHitem] = ACTIONS(12319), + [anon_sym_LBRACK] = ACTIONS(12317), + [anon_sym_RBRACK] = ACTIONS(12317), + [anon_sym_LBRACE] = ACTIONS(12317), + [anon_sym_RBRACE] = ACTIONS(12317), + [anon_sym_LPAREN] = ACTIONS(12317), + [anon_sym_COMMA] = ACTIONS(12317), + [anon_sym_EQ] = ACTIONS(12317), + [sym_word] = ACTIONS(12317), + [sym_param] = ACTIONS(12317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12317), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12317), + [anon_sym_DOLLAR] = ACTIONS(12319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12317), + [anon_sym_BSLASHbegin] = ACTIONS(12319), + [anon_sym_BSLASHcaption] = ACTIONS(12319), + [anon_sym_BSLASHcite] = ACTIONS(12319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCite] = ACTIONS(12319), + [anon_sym_BSLASHnocite] = ACTIONS(12319), + [anon_sym_BSLASHcitet] = ACTIONS(12319), + [anon_sym_BSLASHcitep] = ACTIONS(12319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteauthor] = ACTIONS(12319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitetitle] = ACTIONS(12319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteyear] = ACTIONS(12319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitedate] = ACTIONS(12319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteurl] = ACTIONS(12319), + [anon_sym_BSLASHfullcite] = ACTIONS(12319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12319), + [anon_sym_BSLASHcitealt] = ACTIONS(12319), + [anon_sym_BSLASHcitealp] = ACTIONS(12319), + [anon_sym_BSLASHcitetext] = ACTIONS(12319), + [anon_sym_BSLASHparencite] = ACTIONS(12319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHParencite] = ACTIONS(12319), + [anon_sym_BSLASHfootcite] = ACTIONS(12319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12319), + [anon_sym_BSLASHtextcite] = ACTIONS(12319), + [anon_sym_BSLASHTextcite] = ACTIONS(12319), + [anon_sym_BSLASHsmartcite] = ACTIONS(12319), + [anon_sym_BSLASHSmartcite] = ACTIONS(12319), + [anon_sym_BSLASHsupercite] = ACTIONS(12319), + [anon_sym_BSLASHautocite] = ACTIONS(12319), + [anon_sym_BSLASHAutocite] = ACTIONS(12319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHvolcite] = ACTIONS(12319), + [anon_sym_BSLASHVolcite] = ACTIONS(12319), + [anon_sym_BSLASHpvolcite] = ACTIONS(12319), + [anon_sym_BSLASHPvolcite] = ACTIONS(12319), + [anon_sym_BSLASHfvolcite] = ACTIONS(12319), + [anon_sym_BSLASHftvolcite] = ACTIONS(12319), + [anon_sym_BSLASHsvolcite] = ACTIONS(12319), + [anon_sym_BSLASHSvolcite] = ACTIONS(12319), + [anon_sym_BSLASHtvolcite] = ACTIONS(12319), + [anon_sym_BSLASHTvolcite] = ACTIONS(12319), + [anon_sym_BSLASHavolcite] = ACTIONS(12319), + [anon_sym_BSLASHAvolcite] = ACTIONS(12319), + [anon_sym_BSLASHnotecite] = ACTIONS(12319), + [anon_sym_BSLASHpnotecite] = ACTIONS(12319), + [anon_sym_BSLASHPnotecite] = ACTIONS(12319), + [anon_sym_BSLASHfnotecite] = ACTIONS(12319), + [anon_sym_BSLASHusepackage] = ACTIONS(12319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12319), + [anon_sym_BSLASHinclude] = ACTIONS(12319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12319), + [anon_sym_BSLASHinput] = ACTIONS(12319), + [anon_sym_BSLASHsubfile] = ACTIONS(12319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12319), + [anon_sym_BSLASHbibliography] = ACTIONS(12319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12319), + [anon_sym_BSLASHincludesvg] = ACTIONS(12319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12319), + [anon_sym_BSLASHimport] = ACTIONS(12319), + [anon_sym_BSLASHsubimport] = ACTIONS(12319), + [anon_sym_BSLASHinputfrom] = ACTIONS(12319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12319), + [anon_sym_BSLASHincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHlabel] = ACTIONS(12319), + [anon_sym_BSLASHref] = ACTIONS(12319), + [anon_sym_BSLASHvref] = ACTIONS(12319), + [anon_sym_BSLASHVref] = ACTIONS(12319), + [anon_sym_BSLASHautoref] = ACTIONS(12319), + [anon_sym_BSLASHpageref] = ACTIONS(12319), + [anon_sym_BSLASHcref] = ACTIONS(12319), + [anon_sym_BSLASHCref] = ACTIONS(12319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnameCref] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHlabelcref] = ACTIONS(12319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12319), + [anon_sym_BSLASHeqref] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange] = ACTIONS(12319), + [anon_sym_BSLASHCrefrange] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewlabel] = ACTIONS(12319), + [anon_sym_BSLASHnewcommand] = ACTIONS(12319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12319), + [anon_sym_BSLASHgls] = ACTIONS(12319), + [anon_sym_BSLASHGls] = ACTIONS(12319), + [anon_sym_BSLASHGLS] = ACTIONS(12319), + [anon_sym_BSLASHglspl] = ACTIONS(12319), + [anon_sym_BSLASHGlspl] = ACTIONS(12319), + [anon_sym_BSLASHGLSpl] = ACTIONS(12319), + [anon_sym_BSLASHglsdisp] = ACTIONS(12319), + [anon_sym_BSLASHglslink] = ACTIONS(12319), + [anon_sym_BSLASHglstext] = ACTIONS(12319), + [anon_sym_BSLASHGlstext] = ACTIONS(12319), + [anon_sym_BSLASHGLStext] = ACTIONS(12319), + [anon_sym_BSLASHglsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12319), + [anon_sym_BSLASHglsplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSplural] = ACTIONS(12319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHglsname] = ACTIONS(12319), + [anon_sym_BSLASHGlsname] = ACTIONS(12319), + [anon_sym_BSLASHGLSname] = ACTIONS(12319), + [anon_sym_BSLASHglssymbol] = ACTIONS(12319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12319), + [anon_sym_BSLASHglsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12319), + [anon_sym_BSLASHglsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12319), + [anon_sym_BSLASHglsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12319), + [anon_sym_BSLASHglsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12319), + [anon_sym_BSLASHglsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12319), + [anon_sym_BSLASHnewacronym] = ACTIONS(12319), + [anon_sym_BSLASHacrshort] = ACTIONS(12319), + [anon_sym_BSLASHAcrshort] = ACTIONS(12319), + [anon_sym_BSLASHACRshort] = ACTIONS(12319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12319), + [anon_sym_BSLASHacrlong] = ACTIONS(12319), + [anon_sym_BSLASHAcrlong] = ACTIONS(12319), + [anon_sym_BSLASHACRlong] = ACTIONS(12319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12319), + [anon_sym_BSLASHacrfull] = ACTIONS(12319), + [anon_sym_BSLASHAcrfull] = ACTIONS(12319), + [anon_sym_BSLASHACRfull] = ACTIONS(12319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12319), + [anon_sym_BSLASHacs] = ACTIONS(12319), + [anon_sym_BSLASHAcs] = ACTIONS(12319), + [anon_sym_BSLASHacsp] = ACTIONS(12319), + [anon_sym_BSLASHAcsp] = ACTIONS(12319), + [anon_sym_BSLASHacl] = ACTIONS(12319), + [anon_sym_BSLASHAcl] = ACTIONS(12319), + [anon_sym_BSLASHaclp] = ACTIONS(12319), + [anon_sym_BSLASHAclp] = ACTIONS(12319), + [anon_sym_BSLASHacf] = ACTIONS(12319), + [anon_sym_BSLASHAcf] = ACTIONS(12319), + [anon_sym_BSLASHacfp] = ACTIONS(12319), + [anon_sym_BSLASHAcfp] = ACTIONS(12319), + [anon_sym_BSLASHac] = ACTIONS(12319), + [anon_sym_BSLASHAc] = ACTIONS(12319), + [anon_sym_BSLASHacp] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12319), + [anon_sym_BSLASHcolor] = ACTIONS(12319), + [anon_sym_BSLASHcolorbox] = ACTIONS(12319), + [anon_sym_BSLASHtextcolor] = ACTIONS(12319), + [anon_sym_BSLASHpagecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12319), + }, + [1542] = { + [sym_generic_command_name] = ACTIONS(12267), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12267), + [aux_sym_subparagraph_token1] = ACTIONS(12267), + [anon_sym_BSLASHitem] = ACTIONS(12267), + [anon_sym_LBRACK] = ACTIONS(12265), + [anon_sym_RBRACK] = ACTIONS(12265), + [anon_sym_LBRACE] = ACTIONS(12265), + [anon_sym_RBRACE] = ACTIONS(12265), + [anon_sym_LPAREN] = ACTIONS(12265), + [anon_sym_COMMA] = ACTIONS(12265), + [anon_sym_EQ] = ACTIONS(12265), + [sym_word] = ACTIONS(12265), + [sym_param] = ACTIONS(12265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12265), + [anon_sym_DOLLAR] = ACTIONS(12267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12265), + [anon_sym_BSLASHbegin] = ACTIONS(12267), + [anon_sym_BSLASHcaption] = ACTIONS(12267), + [anon_sym_BSLASHcite] = ACTIONS(12267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCite] = ACTIONS(12267), + [anon_sym_BSLASHnocite] = ACTIONS(12267), + [anon_sym_BSLASHcitet] = ACTIONS(12267), + [anon_sym_BSLASHcitep] = ACTIONS(12267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteauthor] = ACTIONS(12267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitetitle] = ACTIONS(12267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteyear] = ACTIONS(12267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitedate] = ACTIONS(12267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteurl] = ACTIONS(12267), + [anon_sym_BSLASHfullcite] = ACTIONS(12267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12267), + [anon_sym_BSLASHcitealt] = ACTIONS(12267), + [anon_sym_BSLASHcitealp] = ACTIONS(12267), + [anon_sym_BSLASHcitetext] = ACTIONS(12267), + [anon_sym_BSLASHparencite] = ACTIONS(12267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHParencite] = ACTIONS(12267), + [anon_sym_BSLASHfootcite] = ACTIONS(12267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12267), + [anon_sym_BSLASHtextcite] = ACTIONS(12267), + [anon_sym_BSLASHTextcite] = ACTIONS(12267), + [anon_sym_BSLASHsmartcite] = ACTIONS(12267), + [anon_sym_BSLASHSmartcite] = ACTIONS(12267), + [anon_sym_BSLASHsupercite] = ACTIONS(12267), + [anon_sym_BSLASHautocite] = ACTIONS(12267), + [anon_sym_BSLASHAutocite] = ACTIONS(12267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHvolcite] = ACTIONS(12267), + [anon_sym_BSLASHVolcite] = ACTIONS(12267), + [anon_sym_BSLASHpvolcite] = ACTIONS(12267), + [anon_sym_BSLASHPvolcite] = ACTIONS(12267), + [anon_sym_BSLASHfvolcite] = ACTIONS(12267), + [anon_sym_BSLASHftvolcite] = ACTIONS(12267), + [anon_sym_BSLASHsvolcite] = ACTIONS(12267), + [anon_sym_BSLASHSvolcite] = ACTIONS(12267), + [anon_sym_BSLASHtvolcite] = ACTIONS(12267), + [anon_sym_BSLASHTvolcite] = ACTIONS(12267), + [anon_sym_BSLASHavolcite] = ACTIONS(12267), + [anon_sym_BSLASHAvolcite] = ACTIONS(12267), + [anon_sym_BSLASHnotecite] = ACTIONS(12267), + [anon_sym_BSLASHpnotecite] = ACTIONS(12267), + [anon_sym_BSLASHPnotecite] = ACTIONS(12267), + [anon_sym_BSLASHfnotecite] = ACTIONS(12267), + [anon_sym_BSLASHusepackage] = ACTIONS(12267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12267), + [anon_sym_BSLASHinclude] = ACTIONS(12267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12267), + [anon_sym_BSLASHinput] = ACTIONS(12267), + [anon_sym_BSLASHsubfile] = ACTIONS(12267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12267), + [anon_sym_BSLASHbibliography] = ACTIONS(12267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12267), + [anon_sym_BSLASHincludesvg] = ACTIONS(12267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12267), + [anon_sym_BSLASHimport] = ACTIONS(12267), + [anon_sym_BSLASHsubimport] = ACTIONS(12267), + [anon_sym_BSLASHinputfrom] = ACTIONS(12267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12267), + [anon_sym_BSLASHincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHlabel] = ACTIONS(12267), + [anon_sym_BSLASHref] = ACTIONS(12267), + [anon_sym_BSLASHvref] = ACTIONS(12267), + [anon_sym_BSLASHVref] = ACTIONS(12267), + [anon_sym_BSLASHautoref] = ACTIONS(12267), + [anon_sym_BSLASHpageref] = ACTIONS(12267), + [anon_sym_BSLASHcref] = ACTIONS(12267), + [anon_sym_BSLASHCref] = ACTIONS(12267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnameCref] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHlabelcref] = ACTIONS(12267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12267), + [anon_sym_BSLASHeqref] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange] = ACTIONS(12267), + [anon_sym_BSLASHCrefrange] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewlabel] = ACTIONS(12267), + [anon_sym_BSLASHnewcommand] = ACTIONS(12267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12267), + [anon_sym_BSLASHgls] = ACTIONS(12267), + [anon_sym_BSLASHGls] = ACTIONS(12267), + [anon_sym_BSLASHGLS] = ACTIONS(12267), + [anon_sym_BSLASHglspl] = ACTIONS(12267), + [anon_sym_BSLASHGlspl] = ACTIONS(12267), + [anon_sym_BSLASHGLSpl] = ACTIONS(12267), + [anon_sym_BSLASHglsdisp] = ACTIONS(12267), + [anon_sym_BSLASHglslink] = ACTIONS(12267), + [anon_sym_BSLASHglstext] = ACTIONS(12267), + [anon_sym_BSLASHGlstext] = ACTIONS(12267), + [anon_sym_BSLASHGLStext] = ACTIONS(12267), + [anon_sym_BSLASHglsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12267), + [anon_sym_BSLASHglsplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSplural] = ACTIONS(12267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHglsname] = ACTIONS(12267), + [anon_sym_BSLASHGlsname] = ACTIONS(12267), + [anon_sym_BSLASHGLSname] = ACTIONS(12267), + [anon_sym_BSLASHglssymbol] = ACTIONS(12267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12267), + [anon_sym_BSLASHglsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12267), + [anon_sym_BSLASHglsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12267), + [anon_sym_BSLASHglsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12267), + [anon_sym_BSLASHglsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12267), + [anon_sym_BSLASHglsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12267), + [anon_sym_BSLASHnewacronym] = ACTIONS(12267), + [anon_sym_BSLASHacrshort] = ACTIONS(12267), + [anon_sym_BSLASHAcrshort] = ACTIONS(12267), + [anon_sym_BSLASHACRshort] = ACTIONS(12267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12267), + [anon_sym_BSLASHacrlong] = ACTIONS(12267), + [anon_sym_BSLASHAcrlong] = ACTIONS(12267), + [anon_sym_BSLASHACRlong] = ACTIONS(12267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12267), + [anon_sym_BSLASHacrfull] = ACTIONS(12267), + [anon_sym_BSLASHAcrfull] = ACTIONS(12267), + [anon_sym_BSLASHACRfull] = ACTIONS(12267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12267), + [anon_sym_BSLASHacs] = ACTIONS(12267), + [anon_sym_BSLASHAcs] = ACTIONS(12267), + [anon_sym_BSLASHacsp] = ACTIONS(12267), + [anon_sym_BSLASHAcsp] = ACTIONS(12267), + [anon_sym_BSLASHacl] = ACTIONS(12267), + [anon_sym_BSLASHAcl] = ACTIONS(12267), + [anon_sym_BSLASHaclp] = ACTIONS(12267), + [anon_sym_BSLASHAclp] = ACTIONS(12267), + [anon_sym_BSLASHacf] = ACTIONS(12267), + [anon_sym_BSLASHAcf] = ACTIONS(12267), + [anon_sym_BSLASHacfp] = ACTIONS(12267), + [anon_sym_BSLASHAcfp] = ACTIONS(12267), + [anon_sym_BSLASHac] = ACTIONS(12267), + [anon_sym_BSLASHAc] = ACTIONS(12267), + [anon_sym_BSLASHacp] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12267), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12267), + [anon_sym_BSLASHcolor] = ACTIONS(12267), + [anon_sym_BSLASHcolorbox] = ACTIONS(12267), + [anon_sym_BSLASHtextcolor] = ACTIONS(12267), + [anon_sym_BSLASHpagecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12267), + }, + [1543] = { + [sym_generic_command_name] = ACTIONS(12271), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12271), + [aux_sym_subparagraph_token1] = ACTIONS(12271), + [anon_sym_BSLASHitem] = ACTIONS(12271), + [anon_sym_LBRACK] = ACTIONS(12269), + [anon_sym_RBRACK] = ACTIONS(12269), + [anon_sym_LBRACE] = ACTIONS(12269), + [anon_sym_RBRACE] = ACTIONS(12269), + [anon_sym_LPAREN] = ACTIONS(12269), + [anon_sym_COMMA] = ACTIONS(12269), + [anon_sym_EQ] = ACTIONS(12269), + [sym_word] = ACTIONS(12269), + [sym_param] = ACTIONS(12269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12269), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12269), + [anon_sym_DOLLAR] = ACTIONS(12271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12269), + [anon_sym_BSLASHbegin] = ACTIONS(12271), + [anon_sym_BSLASHcaption] = ACTIONS(12271), + [anon_sym_BSLASHcite] = ACTIONS(12271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCite] = ACTIONS(12271), + [anon_sym_BSLASHnocite] = ACTIONS(12271), + [anon_sym_BSLASHcitet] = ACTIONS(12271), + [anon_sym_BSLASHcitep] = ACTIONS(12271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteauthor] = ACTIONS(12271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitetitle] = ACTIONS(12271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteyear] = ACTIONS(12271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitedate] = ACTIONS(12271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteurl] = ACTIONS(12271), + [anon_sym_BSLASHfullcite] = ACTIONS(12271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12271), + [anon_sym_BSLASHcitealt] = ACTIONS(12271), + [anon_sym_BSLASHcitealp] = ACTIONS(12271), + [anon_sym_BSLASHcitetext] = ACTIONS(12271), + [anon_sym_BSLASHparencite] = ACTIONS(12271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHParencite] = ACTIONS(12271), + [anon_sym_BSLASHfootcite] = ACTIONS(12271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12271), + [anon_sym_BSLASHtextcite] = ACTIONS(12271), + [anon_sym_BSLASHTextcite] = ACTIONS(12271), + [anon_sym_BSLASHsmartcite] = ACTIONS(12271), + [anon_sym_BSLASHSmartcite] = ACTIONS(12271), + [anon_sym_BSLASHsupercite] = ACTIONS(12271), + [anon_sym_BSLASHautocite] = ACTIONS(12271), + [anon_sym_BSLASHAutocite] = ACTIONS(12271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHvolcite] = ACTIONS(12271), + [anon_sym_BSLASHVolcite] = ACTIONS(12271), + [anon_sym_BSLASHpvolcite] = ACTIONS(12271), + [anon_sym_BSLASHPvolcite] = ACTIONS(12271), + [anon_sym_BSLASHfvolcite] = ACTIONS(12271), + [anon_sym_BSLASHftvolcite] = ACTIONS(12271), + [anon_sym_BSLASHsvolcite] = ACTIONS(12271), + [anon_sym_BSLASHSvolcite] = ACTIONS(12271), + [anon_sym_BSLASHtvolcite] = ACTIONS(12271), + [anon_sym_BSLASHTvolcite] = ACTIONS(12271), + [anon_sym_BSLASHavolcite] = ACTIONS(12271), + [anon_sym_BSLASHAvolcite] = ACTIONS(12271), + [anon_sym_BSLASHnotecite] = ACTIONS(12271), + [anon_sym_BSLASHpnotecite] = ACTIONS(12271), + [anon_sym_BSLASHPnotecite] = ACTIONS(12271), + [anon_sym_BSLASHfnotecite] = ACTIONS(12271), + [anon_sym_BSLASHusepackage] = ACTIONS(12271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12271), + [anon_sym_BSLASHinclude] = ACTIONS(12271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12271), + [anon_sym_BSLASHinput] = ACTIONS(12271), + [anon_sym_BSLASHsubfile] = ACTIONS(12271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12271), + [anon_sym_BSLASHbibliography] = ACTIONS(12271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12271), + [anon_sym_BSLASHincludesvg] = ACTIONS(12271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12271), + [anon_sym_BSLASHimport] = ACTIONS(12271), + [anon_sym_BSLASHsubimport] = ACTIONS(12271), + [anon_sym_BSLASHinputfrom] = ACTIONS(12271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12271), + [anon_sym_BSLASHincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHlabel] = ACTIONS(12271), + [anon_sym_BSLASHref] = ACTIONS(12271), + [anon_sym_BSLASHvref] = ACTIONS(12271), + [anon_sym_BSLASHVref] = ACTIONS(12271), + [anon_sym_BSLASHautoref] = ACTIONS(12271), + [anon_sym_BSLASHpageref] = ACTIONS(12271), + [anon_sym_BSLASHcref] = ACTIONS(12271), + [anon_sym_BSLASHCref] = ACTIONS(12271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnameCref] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHlabelcref] = ACTIONS(12271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12271), + [anon_sym_BSLASHeqref] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange] = ACTIONS(12271), + [anon_sym_BSLASHCrefrange] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewlabel] = ACTIONS(12271), + [anon_sym_BSLASHnewcommand] = ACTIONS(12271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12271), + [anon_sym_BSLASHgls] = ACTIONS(12271), + [anon_sym_BSLASHGls] = ACTIONS(12271), + [anon_sym_BSLASHGLS] = ACTIONS(12271), + [anon_sym_BSLASHglspl] = ACTIONS(12271), + [anon_sym_BSLASHGlspl] = ACTIONS(12271), + [anon_sym_BSLASHGLSpl] = ACTIONS(12271), + [anon_sym_BSLASHglsdisp] = ACTIONS(12271), + [anon_sym_BSLASHglslink] = ACTIONS(12271), + [anon_sym_BSLASHglstext] = ACTIONS(12271), + [anon_sym_BSLASHGlstext] = ACTIONS(12271), + [anon_sym_BSLASHGLStext] = ACTIONS(12271), + [anon_sym_BSLASHglsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12271), + [anon_sym_BSLASHglsplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSplural] = ACTIONS(12271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHglsname] = ACTIONS(12271), + [anon_sym_BSLASHGlsname] = ACTIONS(12271), + [anon_sym_BSLASHGLSname] = ACTIONS(12271), + [anon_sym_BSLASHglssymbol] = ACTIONS(12271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12271), + [anon_sym_BSLASHglsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12271), + [anon_sym_BSLASHglsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12271), + [anon_sym_BSLASHglsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12271), + [anon_sym_BSLASHglsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12271), + [anon_sym_BSLASHglsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12271), + [anon_sym_BSLASHnewacronym] = ACTIONS(12271), + [anon_sym_BSLASHacrshort] = ACTIONS(12271), + [anon_sym_BSLASHAcrshort] = ACTIONS(12271), + [anon_sym_BSLASHACRshort] = ACTIONS(12271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12271), + [anon_sym_BSLASHacrlong] = ACTIONS(12271), + [anon_sym_BSLASHAcrlong] = ACTIONS(12271), + [anon_sym_BSLASHACRlong] = ACTIONS(12271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12271), + [anon_sym_BSLASHacrfull] = ACTIONS(12271), + [anon_sym_BSLASHAcrfull] = ACTIONS(12271), + [anon_sym_BSLASHACRfull] = ACTIONS(12271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12271), + [anon_sym_BSLASHacs] = ACTIONS(12271), + [anon_sym_BSLASHAcs] = ACTIONS(12271), + [anon_sym_BSLASHacsp] = ACTIONS(12271), + [anon_sym_BSLASHAcsp] = ACTIONS(12271), + [anon_sym_BSLASHacl] = ACTIONS(12271), + [anon_sym_BSLASHAcl] = ACTIONS(12271), + [anon_sym_BSLASHaclp] = ACTIONS(12271), + [anon_sym_BSLASHAclp] = ACTIONS(12271), + [anon_sym_BSLASHacf] = ACTIONS(12271), + [anon_sym_BSLASHAcf] = ACTIONS(12271), + [anon_sym_BSLASHacfp] = ACTIONS(12271), + [anon_sym_BSLASHAcfp] = ACTIONS(12271), + [anon_sym_BSLASHac] = ACTIONS(12271), + [anon_sym_BSLASHAc] = ACTIONS(12271), + [anon_sym_BSLASHacp] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12271), + [anon_sym_BSLASHcolor] = ACTIONS(12271), + [anon_sym_BSLASHcolorbox] = ACTIONS(12271), + [anon_sym_BSLASHtextcolor] = ACTIONS(12271), + [anon_sym_BSLASHpagecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12271), + }, + [1544] = { + [sym_generic_command_name] = ACTIONS(12279), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12279), + [aux_sym_subparagraph_token1] = ACTIONS(12279), + [anon_sym_BSLASHitem] = ACTIONS(12279), + [anon_sym_LBRACK] = ACTIONS(12277), + [anon_sym_RBRACK] = ACTIONS(12277), + [anon_sym_LBRACE] = ACTIONS(12277), + [anon_sym_RBRACE] = ACTIONS(12277), + [anon_sym_LPAREN] = ACTIONS(12277), + [anon_sym_COMMA] = ACTIONS(12277), + [anon_sym_EQ] = ACTIONS(12277), + [sym_word] = ACTIONS(12277), + [sym_param] = ACTIONS(12277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12277), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12277), + [anon_sym_DOLLAR] = ACTIONS(12279), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12277), + [anon_sym_BSLASHbegin] = ACTIONS(12279), + [anon_sym_BSLASHcaption] = ACTIONS(12279), + [anon_sym_BSLASHcite] = ACTIONS(12279), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCite] = ACTIONS(12279), + [anon_sym_BSLASHnocite] = ACTIONS(12279), + [anon_sym_BSLASHcitet] = ACTIONS(12279), + [anon_sym_BSLASHcitep] = ACTIONS(12279), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteauthor] = ACTIONS(12279), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12279), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitetitle] = ACTIONS(12279), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteyear] = ACTIONS(12279), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitedate] = ACTIONS(12279), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteurl] = ACTIONS(12279), + [anon_sym_BSLASHfullcite] = ACTIONS(12279), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12279), + [anon_sym_BSLASHcitealt] = ACTIONS(12279), + [anon_sym_BSLASHcitealp] = ACTIONS(12279), + [anon_sym_BSLASHcitetext] = ACTIONS(12279), + [anon_sym_BSLASHparencite] = ACTIONS(12279), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHParencite] = ACTIONS(12279), + [anon_sym_BSLASHfootcite] = ACTIONS(12279), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12279), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12279), + [anon_sym_BSLASHtextcite] = ACTIONS(12279), + [anon_sym_BSLASHTextcite] = ACTIONS(12279), + [anon_sym_BSLASHsmartcite] = ACTIONS(12279), + [anon_sym_BSLASHSmartcite] = ACTIONS(12279), + [anon_sym_BSLASHsupercite] = ACTIONS(12279), + [anon_sym_BSLASHautocite] = ACTIONS(12279), + [anon_sym_BSLASHAutocite] = ACTIONS(12279), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHvolcite] = ACTIONS(12279), + [anon_sym_BSLASHVolcite] = ACTIONS(12279), + [anon_sym_BSLASHpvolcite] = ACTIONS(12279), + [anon_sym_BSLASHPvolcite] = ACTIONS(12279), + [anon_sym_BSLASHfvolcite] = ACTIONS(12279), + [anon_sym_BSLASHftvolcite] = ACTIONS(12279), + [anon_sym_BSLASHsvolcite] = ACTIONS(12279), + [anon_sym_BSLASHSvolcite] = ACTIONS(12279), + [anon_sym_BSLASHtvolcite] = ACTIONS(12279), + [anon_sym_BSLASHTvolcite] = ACTIONS(12279), + [anon_sym_BSLASHavolcite] = ACTIONS(12279), + [anon_sym_BSLASHAvolcite] = ACTIONS(12279), + [anon_sym_BSLASHnotecite] = ACTIONS(12279), + [anon_sym_BSLASHpnotecite] = ACTIONS(12279), + [anon_sym_BSLASHPnotecite] = ACTIONS(12279), + [anon_sym_BSLASHfnotecite] = ACTIONS(12279), + [anon_sym_BSLASHusepackage] = ACTIONS(12279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12279), + [anon_sym_BSLASHinclude] = ACTIONS(12279), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12279), + [anon_sym_BSLASHinput] = ACTIONS(12279), + [anon_sym_BSLASHsubfile] = ACTIONS(12279), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12279), + [anon_sym_BSLASHbibliography] = ACTIONS(12279), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12279), + [anon_sym_BSLASHincludesvg] = ACTIONS(12279), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12279), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12279), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12279), + [anon_sym_BSLASHimport] = ACTIONS(12279), + [anon_sym_BSLASHsubimport] = ACTIONS(12279), + [anon_sym_BSLASHinputfrom] = ACTIONS(12279), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12279), + [anon_sym_BSLASHincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHlabel] = ACTIONS(12279), + [anon_sym_BSLASHref] = ACTIONS(12279), + [anon_sym_BSLASHvref] = ACTIONS(12279), + [anon_sym_BSLASHVref] = ACTIONS(12279), + [anon_sym_BSLASHautoref] = ACTIONS(12279), + [anon_sym_BSLASHpageref] = ACTIONS(12279), + [anon_sym_BSLASHcref] = ACTIONS(12279), + [anon_sym_BSLASHCref] = ACTIONS(12279), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnameCref] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHlabelcref] = ACTIONS(12279), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12279), + [anon_sym_BSLASHeqref] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange] = ACTIONS(12279), + [anon_sym_BSLASHCrefrange] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewlabel] = ACTIONS(12279), + [anon_sym_BSLASHnewcommand] = ACTIONS(12279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12279), + [anon_sym_BSLASHgls] = ACTIONS(12279), + [anon_sym_BSLASHGls] = ACTIONS(12279), + [anon_sym_BSLASHGLS] = ACTIONS(12279), + [anon_sym_BSLASHglspl] = ACTIONS(12279), + [anon_sym_BSLASHGlspl] = ACTIONS(12279), + [anon_sym_BSLASHGLSpl] = ACTIONS(12279), + [anon_sym_BSLASHglsdisp] = ACTIONS(12279), + [anon_sym_BSLASHglslink] = ACTIONS(12279), + [anon_sym_BSLASHglstext] = ACTIONS(12279), + [anon_sym_BSLASHGlstext] = ACTIONS(12279), + [anon_sym_BSLASHGLStext] = ACTIONS(12279), + [anon_sym_BSLASHglsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12279), + [anon_sym_BSLASHglsplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSplural] = ACTIONS(12279), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHglsname] = ACTIONS(12279), + [anon_sym_BSLASHGlsname] = ACTIONS(12279), + [anon_sym_BSLASHGLSname] = ACTIONS(12279), + [anon_sym_BSLASHglssymbol] = ACTIONS(12279), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12279), + [anon_sym_BSLASHglsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12279), + [anon_sym_BSLASHglsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12279), + [anon_sym_BSLASHglsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12279), + [anon_sym_BSLASHglsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12279), + [anon_sym_BSLASHglsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12279), + [anon_sym_BSLASHnewacronym] = ACTIONS(12279), + [anon_sym_BSLASHacrshort] = ACTIONS(12279), + [anon_sym_BSLASHAcrshort] = ACTIONS(12279), + [anon_sym_BSLASHACRshort] = ACTIONS(12279), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12279), + [anon_sym_BSLASHacrlong] = ACTIONS(12279), + [anon_sym_BSLASHAcrlong] = ACTIONS(12279), + [anon_sym_BSLASHACRlong] = ACTIONS(12279), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12279), + [anon_sym_BSLASHacrfull] = ACTIONS(12279), + [anon_sym_BSLASHAcrfull] = ACTIONS(12279), + [anon_sym_BSLASHACRfull] = ACTIONS(12279), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12279), + [anon_sym_BSLASHacs] = ACTIONS(12279), + [anon_sym_BSLASHAcs] = ACTIONS(12279), + [anon_sym_BSLASHacsp] = ACTIONS(12279), + [anon_sym_BSLASHAcsp] = ACTIONS(12279), + [anon_sym_BSLASHacl] = ACTIONS(12279), + [anon_sym_BSLASHAcl] = ACTIONS(12279), + [anon_sym_BSLASHaclp] = ACTIONS(12279), + [anon_sym_BSLASHAclp] = ACTIONS(12279), + [anon_sym_BSLASHacf] = ACTIONS(12279), + [anon_sym_BSLASHAcf] = ACTIONS(12279), + [anon_sym_BSLASHacfp] = ACTIONS(12279), + [anon_sym_BSLASHAcfp] = ACTIONS(12279), + [anon_sym_BSLASHac] = ACTIONS(12279), + [anon_sym_BSLASHAc] = ACTIONS(12279), + [anon_sym_BSLASHacp] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12279), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12279), + [anon_sym_BSLASHcolor] = ACTIONS(12279), + [anon_sym_BSLASHcolorbox] = ACTIONS(12279), + [anon_sym_BSLASHtextcolor] = ACTIONS(12279), + [anon_sym_BSLASHpagecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12279), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12279), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12279), + }, + [1545] = { + [sym_generic_command_name] = ACTIONS(12287), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12287), + [aux_sym_subparagraph_token1] = ACTIONS(12287), + [anon_sym_BSLASHitem] = ACTIONS(12287), + [anon_sym_LBRACK] = ACTIONS(12285), + [anon_sym_RBRACK] = ACTIONS(12285), + [anon_sym_LBRACE] = ACTIONS(12285), + [anon_sym_RBRACE] = ACTIONS(12285), + [anon_sym_LPAREN] = ACTIONS(12285), + [anon_sym_COMMA] = ACTIONS(12285), + [anon_sym_EQ] = ACTIONS(12285), + [sym_word] = ACTIONS(12285), + [sym_param] = ACTIONS(12285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12285), + [anon_sym_DOLLAR] = ACTIONS(12287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12285), + [anon_sym_BSLASHbegin] = ACTIONS(12287), + [anon_sym_BSLASHcaption] = ACTIONS(12287), + [anon_sym_BSLASHcite] = ACTIONS(12287), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCite] = ACTIONS(12287), + [anon_sym_BSLASHnocite] = ACTIONS(12287), + [anon_sym_BSLASHcitet] = ACTIONS(12287), + [anon_sym_BSLASHcitep] = ACTIONS(12287), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteauthor] = ACTIONS(12287), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12287), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitetitle] = ACTIONS(12287), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteyear] = ACTIONS(12287), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitedate] = ACTIONS(12287), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteurl] = ACTIONS(12287), + [anon_sym_BSLASHfullcite] = ACTIONS(12287), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12287), + [anon_sym_BSLASHcitealt] = ACTIONS(12287), + [anon_sym_BSLASHcitealp] = ACTIONS(12287), + [anon_sym_BSLASHcitetext] = ACTIONS(12287), + [anon_sym_BSLASHparencite] = ACTIONS(12287), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHParencite] = ACTIONS(12287), + [anon_sym_BSLASHfootcite] = ACTIONS(12287), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12287), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12287), + [anon_sym_BSLASHtextcite] = ACTIONS(12287), + [anon_sym_BSLASHTextcite] = ACTIONS(12287), + [anon_sym_BSLASHsmartcite] = ACTIONS(12287), + [anon_sym_BSLASHSmartcite] = ACTIONS(12287), + [anon_sym_BSLASHsupercite] = ACTIONS(12287), + [anon_sym_BSLASHautocite] = ACTIONS(12287), + [anon_sym_BSLASHAutocite] = ACTIONS(12287), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHvolcite] = ACTIONS(12287), + [anon_sym_BSLASHVolcite] = ACTIONS(12287), + [anon_sym_BSLASHpvolcite] = ACTIONS(12287), + [anon_sym_BSLASHPvolcite] = ACTIONS(12287), + [anon_sym_BSLASHfvolcite] = ACTIONS(12287), + [anon_sym_BSLASHftvolcite] = ACTIONS(12287), + [anon_sym_BSLASHsvolcite] = ACTIONS(12287), + [anon_sym_BSLASHSvolcite] = ACTIONS(12287), + [anon_sym_BSLASHtvolcite] = ACTIONS(12287), + [anon_sym_BSLASHTvolcite] = ACTIONS(12287), + [anon_sym_BSLASHavolcite] = ACTIONS(12287), + [anon_sym_BSLASHAvolcite] = ACTIONS(12287), + [anon_sym_BSLASHnotecite] = ACTIONS(12287), + [anon_sym_BSLASHpnotecite] = ACTIONS(12287), + [anon_sym_BSLASHPnotecite] = ACTIONS(12287), + [anon_sym_BSLASHfnotecite] = ACTIONS(12287), + [anon_sym_BSLASHusepackage] = ACTIONS(12287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12287), + [anon_sym_BSLASHinclude] = ACTIONS(12287), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12287), + [anon_sym_BSLASHinput] = ACTIONS(12287), + [anon_sym_BSLASHsubfile] = ACTIONS(12287), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12287), + [anon_sym_BSLASHbibliography] = ACTIONS(12287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12287), + [anon_sym_BSLASHincludesvg] = ACTIONS(12287), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12287), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12287), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12287), + [anon_sym_BSLASHimport] = ACTIONS(12287), + [anon_sym_BSLASHsubimport] = ACTIONS(12287), + [anon_sym_BSLASHinputfrom] = ACTIONS(12287), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12287), + [anon_sym_BSLASHincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHlabel] = ACTIONS(12287), + [anon_sym_BSLASHref] = ACTIONS(12287), + [anon_sym_BSLASHvref] = ACTIONS(12287), + [anon_sym_BSLASHVref] = ACTIONS(12287), + [anon_sym_BSLASHautoref] = ACTIONS(12287), + [anon_sym_BSLASHpageref] = ACTIONS(12287), + [anon_sym_BSLASHcref] = ACTIONS(12287), + [anon_sym_BSLASHCref] = ACTIONS(12287), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnameCref] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHlabelcref] = ACTIONS(12287), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12287), + [anon_sym_BSLASHeqref] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange] = ACTIONS(12287), + [anon_sym_BSLASHCrefrange] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewlabel] = ACTIONS(12287), + [anon_sym_BSLASHnewcommand] = ACTIONS(12287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12287), + [anon_sym_BSLASHgls] = ACTIONS(12287), + [anon_sym_BSLASHGls] = ACTIONS(12287), + [anon_sym_BSLASHGLS] = ACTIONS(12287), + [anon_sym_BSLASHglspl] = ACTIONS(12287), + [anon_sym_BSLASHGlspl] = ACTIONS(12287), + [anon_sym_BSLASHGLSpl] = ACTIONS(12287), + [anon_sym_BSLASHglsdisp] = ACTIONS(12287), + [anon_sym_BSLASHglslink] = ACTIONS(12287), + [anon_sym_BSLASHglstext] = ACTIONS(12287), + [anon_sym_BSLASHGlstext] = ACTIONS(12287), + [anon_sym_BSLASHGLStext] = ACTIONS(12287), + [anon_sym_BSLASHglsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12287), + [anon_sym_BSLASHglsplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSplural] = ACTIONS(12287), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHglsname] = ACTIONS(12287), + [anon_sym_BSLASHGlsname] = ACTIONS(12287), + [anon_sym_BSLASHGLSname] = ACTIONS(12287), + [anon_sym_BSLASHglssymbol] = ACTIONS(12287), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12287), + [anon_sym_BSLASHglsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12287), + [anon_sym_BSLASHglsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12287), + [anon_sym_BSLASHglsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12287), + [anon_sym_BSLASHglsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12287), + [anon_sym_BSLASHglsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12287), + [anon_sym_BSLASHnewacronym] = ACTIONS(12287), + [anon_sym_BSLASHacrshort] = ACTIONS(12287), + [anon_sym_BSLASHAcrshort] = ACTIONS(12287), + [anon_sym_BSLASHACRshort] = ACTIONS(12287), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12287), + [anon_sym_BSLASHacrlong] = ACTIONS(12287), + [anon_sym_BSLASHAcrlong] = ACTIONS(12287), + [anon_sym_BSLASHACRlong] = ACTIONS(12287), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12287), + [anon_sym_BSLASHacrfull] = ACTIONS(12287), + [anon_sym_BSLASHAcrfull] = ACTIONS(12287), + [anon_sym_BSLASHACRfull] = ACTIONS(12287), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12287), + [anon_sym_BSLASHacs] = ACTIONS(12287), + [anon_sym_BSLASHAcs] = ACTIONS(12287), + [anon_sym_BSLASHacsp] = ACTIONS(12287), + [anon_sym_BSLASHAcsp] = ACTIONS(12287), + [anon_sym_BSLASHacl] = ACTIONS(12287), + [anon_sym_BSLASHAcl] = ACTIONS(12287), + [anon_sym_BSLASHaclp] = ACTIONS(12287), + [anon_sym_BSLASHAclp] = ACTIONS(12287), + [anon_sym_BSLASHacf] = ACTIONS(12287), + [anon_sym_BSLASHAcf] = ACTIONS(12287), + [anon_sym_BSLASHacfp] = ACTIONS(12287), + [anon_sym_BSLASHAcfp] = ACTIONS(12287), + [anon_sym_BSLASHac] = ACTIONS(12287), + [anon_sym_BSLASHAc] = ACTIONS(12287), + [anon_sym_BSLASHacp] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12287), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12287), + [anon_sym_BSLASHcolor] = ACTIONS(12287), + [anon_sym_BSLASHcolorbox] = ACTIONS(12287), + [anon_sym_BSLASHtextcolor] = ACTIONS(12287), + [anon_sym_BSLASHpagecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12287), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12287), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12287), + }, + [1546] = { + [sym_generic_command_name] = ACTIONS(12291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12291), + [aux_sym_subparagraph_token1] = ACTIONS(12291), + [anon_sym_BSLASHitem] = ACTIONS(12291), + [anon_sym_LBRACK] = ACTIONS(12289), + [anon_sym_RBRACK] = ACTIONS(12289), + [anon_sym_LBRACE] = ACTIONS(12289), + [anon_sym_RBRACE] = ACTIONS(12289), + [anon_sym_LPAREN] = ACTIONS(12289), + [anon_sym_COMMA] = ACTIONS(12289), + [anon_sym_EQ] = ACTIONS(12289), + [sym_word] = ACTIONS(12289), + [sym_param] = ACTIONS(12289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12289), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12289), + [anon_sym_DOLLAR] = ACTIONS(12291), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12289), + [anon_sym_BSLASHbegin] = ACTIONS(12291), + [anon_sym_BSLASHcaption] = ACTIONS(12291), + [anon_sym_BSLASHcite] = ACTIONS(12291), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCite] = ACTIONS(12291), + [anon_sym_BSLASHnocite] = ACTIONS(12291), + [anon_sym_BSLASHcitet] = ACTIONS(12291), + [anon_sym_BSLASHcitep] = ACTIONS(12291), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteauthor] = ACTIONS(12291), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12291), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitetitle] = ACTIONS(12291), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteyear] = ACTIONS(12291), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitedate] = ACTIONS(12291), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteurl] = ACTIONS(12291), + [anon_sym_BSLASHfullcite] = ACTIONS(12291), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12291), + [anon_sym_BSLASHcitealt] = ACTIONS(12291), + [anon_sym_BSLASHcitealp] = ACTIONS(12291), + [anon_sym_BSLASHcitetext] = ACTIONS(12291), + [anon_sym_BSLASHparencite] = ACTIONS(12291), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHParencite] = ACTIONS(12291), + [anon_sym_BSLASHfootcite] = ACTIONS(12291), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12291), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12291), + [anon_sym_BSLASHtextcite] = ACTIONS(12291), + [anon_sym_BSLASHTextcite] = ACTIONS(12291), + [anon_sym_BSLASHsmartcite] = ACTIONS(12291), + [anon_sym_BSLASHSmartcite] = ACTIONS(12291), + [anon_sym_BSLASHsupercite] = ACTIONS(12291), + [anon_sym_BSLASHautocite] = ACTIONS(12291), + [anon_sym_BSLASHAutocite] = ACTIONS(12291), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHvolcite] = ACTIONS(12291), + [anon_sym_BSLASHVolcite] = ACTIONS(12291), + [anon_sym_BSLASHpvolcite] = ACTIONS(12291), + [anon_sym_BSLASHPvolcite] = ACTIONS(12291), + [anon_sym_BSLASHfvolcite] = ACTIONS(12291), + [anon_sym_BSLASHftvolcite] = ACTIONS(12291), + [anon_sym_BSLASHsvolcite] = ACTIONS(12291), + [anon_sym_BSLASHSvolcite] = ACTIONS(12291), + [anon_sym_BSLASHtvolcite] = ACTIONS(12291), + [anon_sym_BSLASHTvolcite] = ACTIONS(12291), + [anon_sym_BSLASHavolcite] = ACTIONS(12291), + [anon_sym_BSLASHAvolcite] = ACTIONS(12291), + [anon_sym_BSLASHnotecite] = ACTIONS(12291), + [anon_sym_BSLASHpnotecite] = ACTIONS(12291), + [anon_sym_BSLASHPnotecite] = ACTIONS(12291), + [anon_sym_BSLASHfnotecite] = ACTIONS(12291), + [anon_sym_BSLASHusepackage] = ACTIONS(12291), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12291), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12291), + [anon_sym_BSLASHinclude] = ACTIONS(12291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12291), + [anon_sym_BSLASHinput] = ACTIONS(12291), + [anon_sym_BSLASHsubfile] = ACTIONS(12291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12291), + [anon_sym_BSLASHbibliography] = ACTIONS(12291), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12291), + [anon_sym_BSLASHincludesvg] = ACTIONS(12291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12291), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12291), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12291), + [anon_sym_BSLASHimport] = ACTIONS(12291), + [anon_sym_BSLASHsubimport] = ACTIONS(12291), + [anon_sym_BSLASHinputfrom] = ACTIONS(12291), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12291), + [anon_sym_BSLASHincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHlabel] = ACTIONS(12291), + [anon_sym_BSLASHref] = ACTIONS(12291), + [anon_sym_BSLASHvref] = ACTIONS(12291), + [anon_sym_BSLASHVref] = ACTIONS(12291), + [anon_sym_BSLASHautoref] = ACTIONS(12291), + [anon_sym_BSLASHpageref] = ACTIONS(12291), + [anon_sym_BSLASHcref] = ACTIONS(12291), + [anon_sym_BSLASHCref] = ACTIONS(12291), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnameCref] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHlabelcref] = ACTIONS(12291), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12291), + [anon_sym_BSLASHeqref] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange] = ACTIONS(12291), + [anon_sym_BSLASHCrefrange] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewlabel] = ACTIONS(12291), + [anon_sym_BSLASHnewcommand] = ACTIONS(12291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12291), + [anon_sym_BSLASHgls] = ACTIONS(12291), + [anon_sym_BSLASHGls] = ACTIONS(12291), + [anon_sym_BSLASHGLS] = ACTIONS(12291), + [anon_sym_BSLASHglspl] = ACTIONS(12291), + [anon_sym_BSLASHGlspl] = ACTIONS(12291), + [anon_sym_BSLASHGLSpl] = ACTIONS(12291), + [anon_sym_BSLASHglsdisp] = ACTIONS(12291), + [anon_sym_BSLASHglslink] = ACTIONS(12291), + [anon_sym_BSLASHglstext] = ACTIONS(12291), + [anon_sym_BSLASHGlstext] = ACTIONS(12291), + [anon_sym_BSLASHGLStext] = ACTIONS(12291), + [anon_sym_BSLASHglsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12291), + [anon_sym_BSLASHglsplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSplural] = ACTIONS(12291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHglsname] = ACTIONS(12291), + [anon_sym_BSLASHGlsname] = ACTIONS(12291), + [anon_sym_BSLASHGLSname] = ACTIONS(12291), + [anon_sym_BSLASHglssymbol] = ACTIONS(12291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12291), + [anon_sym_BSLASHglsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12291), + [anon_sym_BSLASHglsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12291), + [anon_sym_BSLASHglsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12291), + [anon_sym_BSLASHglsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12291), + [anon_sym_BSLASHglsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12291), + [anon_sym_BSLASHnewacronym] = ACTIONS(12291), + [anon_sym_BSLASHacrshort] = ACTIONS(12291), + [anon_sym_BSLASHAcrshort] = ACTIONS(12291), + [anon_sym_BSLASHACRshort] = ACTIONS(12291), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12291), + [anon_sym_BSLASHacrlong] = ACTIONS(12291), + [anon_sym_BSLASHAcrlong] = ACTIONS(12291), + [anon_sym_BSLASHACRlong] = ACTIONS(12291), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12291), + [anon_sym_BSLASHacrfull] = ACTIONS(12291), + [anon_sym_BSLASHAcrfull] = ACTIONS(12291), + [anon_sym_BSLASHACRfull] = ACTIONS(12291), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12291), + [anon_sym_BSLASHacs] = ACTIONS(12291), + [anon_sym_BSLASHAcs] = ACTIONS(12291), + [anon_sym_BSLASHacsp] = ACTIONS(12291), + [anon_sym_BSLASHAcsp] = ACTIONS(12291), + [anon_sym_BSLASHacl] = ACTIONS(12291), + [anon_sym_BSLASHAcl] = ACTIONS(12291), + [anon_sym_BSLASHaclp] = ACTIONS(12291), + [anon_sym_BSLASHAclp] = ACTIONS(12291), + [anon_sym_BSLASHacf] = ACTIONS(12291), + [anon_sym_BSLASHAcf] = ACTIONS(12291), + [anon_sym_BSLASHacfp] = ACTIONS(12291), + [anon_sym_BSLASHAcfp] = ACTIONS(12291), + [anon_sym_BSLASHac] = ACTIONS(12291), + [anon_sym_BSLASHAc] = ACTIONS(12291), + [anon_sym_BSLASHacp] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12291), + [anon_sym_BSLASHcolor] = ACTIONS(12291), + [anon_sym_BSLASHcolorbox] = ACTIONS(12291), + [anon_sym_BSLASHtextcolor] = ACTIONS(12291), + [anon_sym_BSLASHpagecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12291), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12291), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12291), + }, + [1547] = { + [sym_generic_command_name] = ACTIONS(12295), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12295), + [aux_sym_subparagraph_token1] = ACTIONS(12295), + [anon_sym_BSLASHitem] = ACTIONS(12295), + [anon_sym_LBRACK] = ACTIONS(12293), + [anon_sym_RBRACK] = ACTIONS(12293), + [anon_sym_LBRACE] = ACTIONS(12293), + [anon_sym_RBRACE] = ACTIONS(12293), + [anon_sym_LPAREN] = ACTIONS(12293), + [anon_sym_COMMA] = ACTIONS(12293), + [anon_sym_EQ] = ACTIONS(12293), + [sym_word] = ACTIONS(12293), + [sym_param] = ACTIONS(12293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12293), + [anon_sym_DOLLAR] = ACTIONS(12295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12293), + [anon_sym_BSLASHbegin] = ACTIONS(12295), + [anon_sym_BSLASHcaption] = ACTIONS(12295), + [anon_sym_BSLASHcite] = ACTIONS(12295), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCite] = ACTIONS(12295), + [anon_sym_BSLASHnocite] = ACTIONS(12295), + [anon_sym_BSLASHcitet] = ACTIONS(12295), + [anon_sym_BSLASHcitep] = ACTIONS(12295), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteauthor] = ACTIONS(12295), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12295), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitetitle] = ACTIONS(12295), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteyear] = ACTIONS(12295), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitedate] = ACTIONS(12295), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteurl] = ACTIONS(12295), + [anon_sym_BSLASHfullcite] = ACTIONS(12295), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12295), + [anon_sym_BSLASHcitealt] = ACTIONS(12295), + [anon_sym_BSLASHcitealp] = ACTIONS(12295), + [anon_sym_BSLASHcitetext] = ACTIONS(12295), + [anon_sym_BSLASHparencite] = ACTIONS(12295), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHParencite] = ACTIONS(12295), + [anon_sym_BSLASHfootcite] = ACTIONS(12295), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12295), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12295), + [anon_sym_BSLASHtextcite] = ACTIONS(12295), + [anon_sym_BSLASHTextcite] = ACTIONS(12295), + [anon_sym_BSLASHsmartcite] = ACTIONS(12295), + [anon_sym_BSLASHSmartcite] = ACTIONS(12295), + [anon_sym_BSLASHsupercite] = ACTIONS(12295), + [anon_sym_BSLASHautocite] = ACTIONS(12295), + [anon_sym_BSLASHAutocite] = ACTIONS(12295), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHvolcite] = ACTIONS(12295), + [anon_sym_BSLASHVolcite] = ACTIONS(12295), + [anon_sym_BSLASHpvolcite] = ACTIONS(12295), + [anon_sym_BSLASHPvolcite] = ACTIONS(12295), + [anon_sym_BSLASHfvolcite] = ACTIONS(12295), + [anon_sym_BSLASHftvolcite] = ACTIONS(12295), + [anon_sym_BSLASHsvolcite] = ACTIONS(12295), + [anon_sym_BSLASHSvolcite] = ACTIONS(12295), + [anon_sym_BSLASHtvolcite] = ACTIONS(12295), + [anon_sym_BSLASHTvolcite] = ACTIONS(12295), + [anon_sym_BSLASHavolcite] = ACTIONS(12295), + [anon_sym_BSLASHAvolcite] = ACTIONS(12295), + [anon_sym_BSLASHnotecite] = ACTIONS(12295), + [anon_sym_BSLASHpnotecite] = ACTIONS(12295), + [anon_sym_BSLASHPnotecite] = ACTIONS(12295), + [anon_sym_BSLASHfnotecite] = ACTIONS(12295), + [anon_sym_BSLASHusepackage] = ACTIONS(12295), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12295), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12295), + [anon_sym_BSLASHinclude] = ACTIONS(12295), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12295), + [anon_sym_BSLASHinput] = ACTIONS(12295), + [anon_sym_BSLASHsubfile] = ACTIONS(12295), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12295), + [anon_sym_BSLASHbibliography] = ACTIONS(12295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12295), + [anon_sym_BSLASHincludesvg] = ACTIONS(12295), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12295), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12295), + [anon_sym_BSLASHimport] = ACTIONS(12295), + [anon_sym_BSLASHsubimport] = ACTIONS(12295), + [anon_sym_BSLASHinputfrom] = ACTIONS(12295), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12295), + [anon_sym_BSLASHincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHlabel] = ACTIONS(12295), + [anon_sym_BSLASHref] = ACTIONS(12295), + [anon_sym_BSLASHvref] = ACTIONS(12295), + [anon_sym_BSLASHVref] = ACTIONS(12295), + [anon_sym_BSLASHautoref] = ACTIONS(12295), + [anon_sym_BSLASHpageref] = ACTIONS(12295), + [anon_sym_BSLASHcref] = ACTIONS(12295), + [anon_sym_BSLASHCref] = ACTIONS(12295), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnameCref] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHlabelcref] = ACTIONS(12295), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12295), + [anon_sym_BSLASHeqref] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange] = ACTIONS(12295), + [anon_sym_BSLASHCrefrange] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewlabel] = ACTIONS(12295), + [anon_sym_BSLASHnewcommand] = ACTIONS(12295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12295), + [anon_sym_BSLASHgls] = ACTIONS(12295), + [anon_sym_BSLASHGls] = ACTIONS(12295), + [anon_sym_BSLASHGLS] = ACTIONS(12295), + [anon_sym_BSLASHglspl] = ACTIONS(12295), + [anon_sym_BSLASHGlspl] = ACTIONS(12295), + [anon_sym_BSLASHGLSpl] = ACTIONS(12295), + [anon_sym_BSLASHglsdisp] = ACTIONS(12295), + [anon_sym_BSLASHglslink] = ACTIONS(12295), + [anon_sym_BSLASHglstext] = ACTIONS(12295), + [anon_sym_BSLASHGlstext] = ACTIONS(12295), + [anon_sym_BSLASHGLStext] = ACTIONS(12295), + [anon_sym_BSLASHglsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12295), + [anon_sym_BSLASHglsplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSplural] = ACTIONS(12295), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHglsname] = ACTIONS(12295), + [anon_sym_BSLASHGlsname] = ACTIONS(12295), + [anon_sym_BSLASHGLSname] = ACTIONS(12295), + [anon_sym_BSLASHglssymbol] = ACTIONS(12295), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12295), + [anon_sym_BSLASHglsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12295), + [anon_sym_BSLASHglsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12295), + [anon_sym_BSLASHglsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12295), + [anon_sym_BSLASHglsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12295), + [anon_sym_BSLASHglsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12295), + [anon_sym_BSLASHnewacronym] = ACTIONS(12295), + [anon_sym_BSLASHacrshort] = ACTIONS(12295), + [anon_sym_BSLASHAcrshort] = ACTIONS(12295), + [anon_sym_BSLASHACRshort] = ACTIONS(12295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12295), + [anon_sym_BSLASHacrlong] = ACTIONS(12295), + [anon_sym_BSLASHAcrlong] = ACTIONS(12295), + [anon_sym_BSLASHACRlong] = ACTIONS(12295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12295), + [anon_sym_BSLASHacrfull] = ACTIONS(12295), + [anon_sym_BSLASHAcrfull] = ACTIONS(12295), + [anon_sym_BSLASHACRfull] = ACTIONS(12295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12295), + [anon_sym_BSLASHacs] = ACTIONS(12295), + [anon_sym_BSLASHAcs] = ACTIONS(12295), + [anon_sym_BSLASHacsp] = ACTIONS(12295), + [anon_sym_BSLASHAcsp] = ACTIONS(12295), + [anon_sym_BSLASHacl] = ACTIONS(12295), + [anon_sym_BSLASHAcl] = ACTIONS(12295), + [anon_sym_BSLASHaclp] = ACTIONS(12295), + [anon_sym_BSLASHAclp] = ACTIONS(12295), + [anon_sym_BSLASHacf] = ACTIONS(12295), + [anon_sym_BSLASHAcf] = ACTIONS(12295), + [anon_sym_BSLASHacfp] = ACTIONS(12295), + [anon_sym_BSLASHAcfp] = ACTIONS(12295), + [anon_sym_BSLASHac] = ACTIONS(12295), + [anon_sym_BSLASHAc] = ACTIONS(12295), + [anon_sym_BSLASHacp] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12295), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12295), + [anon_sym_BSLASHcolor] = ACTIONS(12295), + [anon_sym_BSLASHcolorbox] = ACTIONS(12295), + [anon_sym_BSLASHtextcolor] = ACTIONS(12295), + [anon_sym_BSLASHpagecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12295), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12295), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12295), + }, + [1548] = { + [sym_generic_command_name] = ACTIONS(12303), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12303), + [aux_sym_subparagraph_token1] = ACTIONS(12303), + [anon_sym_BSLASHitem] = ACTIONS(12303), + [anon_sym_LBRACK] = ACTIONS(12301), + [anon_sym_RBRACK] = ACTIONS(12301), + [anon_sym_LBRACE] = ACTIONS(12301), + [anon_sym_RBRACE] = ACTIONS(12301), + [anon_sym_LPAREN] = ACTIONS(12301), + [anon_sym_COMMA] = ACTIONS(12301), + [anon_sym_EQ] = ACTIONS(12301), + [sym_word] = ACTIONS(12301), + [sym_param] = ACTIONS(12301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12301), + [anon_sym_DOLLAR] = ACTIONS(12303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12301), + [anon_sym_BSLASHbegin] = ACTIONS(12303), + [anon_sym_BSLASHcaption] = ACTIONS(12303), + [anon_sym_BSLASHcite] = ACTIONS(12303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCite] = ACTIONS(12303), + [anon_sym_BSLASHnocite] = ACTIONS(12303), + [anon_sym_BSLASHcitet] = ACTIONS(12303), + [anon_sym_BSLASHcitep] = ACTIONS(12303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteauthor] = ACTIONS(12303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitetitle] = ACTIONS(12303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteyear] = ACTIONS(12303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitedate] = ACTIONS(12303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteurl] = ACTIONS(12303), + [anon_sym_BSLASHfullcite] = ACTIONS(12303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12303), + [anon_sym_BSLASHcitealt] = ACTIONS(12303), + [anon_sym_BSLASHcitealp] = ACTIONS(12303), + [anon_sym_BSLASHcitetext] = ACTIONS(12303), + [anon_sym_BSLASHparencite] = ACTIONS(12303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHParencite] = ACTIONS(12303), + [anon_sym_BSLASHfootcite] = ACTIONS(12303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12303), + [anon_sym_BSLASHtextcite] = ACTIONS(12303), + [anon_sym_BSLASHTextcite] = ACTIONS(12303), + [anon_sym_BSLASHsmartcite] = ACTIONS(12303), + [anon_sym_BSLASHSmartcite] = ACTIONS(12303), + [anon_sym_BSLASHsupercite] = ACTIONS(12303), + [anon_sym_BSLASHautocite] = ACTIONS(12303), + [anon_sym_BSLASHAutocite] = ACTIONS(12303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHvolcite] = ACTIONS(12303), + [anon_sym_BSLASHVolcite] = ACTIONS(12303), + [anon_sym_BSLASHpvolcite] = ACTIONS(12303), + [anon_sym_BSLASHPvolcite] = ACTIONS(12303), + [anon_sym_BSLASHfvolcite] = ACTIONS(12303), + [anon_sym_BSLASHftvolcite] = ACTIONS(12303), + [anon_sym_BSLASHsvolcite] = ACTIONS(12303), + [anon_sym_BSLASHSvolcite] = ACTIONS(12303), + [anon_sym_BSLASHtvolcite] = ACTIONS(12303), + [anon_sym_BSLASHTvolcite] = ACTIONS(12303), + [anon_sym_BSLASHavolcite] = ACTIONS(12303), + [anon_sym_BSLASHAvolcite] = ACTIONS(12303), + [anon_sym_BSLASHnotecite] = ACTIONS(12303), + [anon_sym_BSLASHpnotecite] = ACTIONS(12303), + [anon_sym_BSLASHPnotecite] = ACTIONS(12303), + [anon_sym_BSLASHfnotecite] = ACTIONS(12303), + [anon_sym_BSLASHusepackage] = ACTIONS(12303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12303), + [anon_sym_BSLASHinclude] = ACTIONS(12303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12303), + [anon_sym_BSLASHinput] = ACTIONS(12303), + [anon_sym_BSLASHsubfile] = ACTIONS(12303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12303), + [anon_sym_BSLASHbibliography] = ACTIONS(12303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12303), + [anon_sym_BSLASHincludesvg] = ACTIONS(12303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12303), + [anon_sym_BSLASHimport] = ACTIONS(12303), + [anon_sym_BSLASHsubimport] = ACTIONS(12303), + [anon_sym_BSLASHinputfrom] = ACTIONS(12303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12303), + [anon_sym_BSLASHincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHlabel] = ACTIONS(12303), + [anon_sym_BSLASHref] = ACTIONS(12303), + [anon_sym_BSLASHvref] = ACTIONS(12303), + [anon_sym_BSLASHVref] = ACTIONS(12303), + [anon_sym_BSLASHautoref] = ACTIONS(12303), + [anon_sym_BSLASHpageref] = ACTIONS(12303), + [anon_sym_BSLASHcref] = ACTIONS(12303), + [anon_sym_BSLASHCref] = ACTIONS(12303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnameCref] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHlabelcref] = ACTIONS(12303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12303), + [anon_sym_BSLASHeqref] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange] = ACTIONS(12303), + [anon_sym_BSLASHCrefrange] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewlabel] = ACTIONS(12303), + [anon_sym_BSLASHnewcommand] = ACTIONS(12303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12303), + [anon_sym_BSLASHgls] = ACTIONS(12303), + [anon_sym_BSLASHGls] = ACTIONS(12303), + [anon_sym_BSLASHGLS] = ACTIONS(12303), + [anon_sym_BSLASHglspl] = ACTIONS(12303), + [anon_sym_BSLASHGlspl] = ACTIONS(12303), + [anon_sym_BSLASHGLSpl] = ACTIONS(12303), + [anon_sym_BSLASHglsdisp] = ACTIONS(12303), + [anon_sym_BSLASHglslink] = ACTIONS(12303), + [anon_sym_BSLASHglstext] = ACTIONS(12303), + [anon_sym_BSLASHGlstext] = ACTIONS(12303), + [anon_sym_BSLASHGLStext] = ACTIONS(12303), + [anon_sym_BSLASHglsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12303), + [anon_sym_BSLASHglsplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSplural] = ACTIONS(12303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHglsname] = ACTIONS(12303), + [anon_sym_BSLASHGlsname] = ACTIONS(12303), + [anon_sym_BSLASHGLSname] = ACTIONS(12303), + [anon_sym_BSLASHglssymbol] = ACTIONS(12303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12303), + [anon_sym_BSLASHglsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12303), + [anon_sym_BSLASHglsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12303), + [anon_sym_BSLASHglsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12303), + [anon_sym_BSLASHglsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12303), + [anon_sym_BSLASHglsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12303), + [anon_sym_BSLASHnewacronym] = ACTIONS(12303), + [anon_sym_BSLASHacrshort] = ACTIONS(12303), + [anon_sym_BSLASHAcrshort] = ACTIONS(12303), + [anon_sym_BSLASHACRshort] = ACTIONS(12303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12303), + [anon_sym_BSLASHacrlong] = ACTIONS(12303), + [anon_sym_BSLASHAcrlong] = ACTIONS(12303), + [anon_sym_BSLASHACRlong] = ACTIONS(12303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12303), + [anon_sym_BSLASHacrfull] = ACTIONS(12303), + [anon_sym_BSLASHAcrfull] = ACTIONS(12303), + [anon_sym_BSLASHACRfull] = ACTIONS(12303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12303), + [anon_sym_BSLASHacs] = ACTIONS(12303), + [anon_sym_BSLASHAcs] = ACTIONS(12303), + [anon_sym_BSLASHacsp] = ACTIONS(12303), + [anon_sym_BSLASHAcsp] = ACTIONS(12303), + [anon_sym_BSLASHacl] = ACTIONS(12303), + [anon_sym_BSLASHAcl] = ACTIONS(12303), + [anon_sym_BSLASHaclp] = ACTIONS(12303), + [anon_sym_BSLASHAclp] = ACTIONS(12303), + [anon_sym_BSLASHacf] = ACTIONS(12303), + [anon_sym_BSLASHAcf] = ACTIONS(12303), + [anon_sym_BSLASHacfp] = ACTIONS(12303), + [anon_sym_BSLASHAcfp] = ACTIONS(12303), + [anon_sym_BSLASHac] = ACTIONS(12303), + [anon_sym_BSLASHAc] = ACTIONS(12303), + [anon_sym_BSLASHacp] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12303), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12303), + [anon_sym_BSLASHcolor] = ACTIONS(12303), + [anon_sym_BSLASHcolorbox] = ACTIONS(12303), + [anon_sym_BSLASHtextcolor] = ACTIONS(12303), + [anon_sym_BSLASHpagecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12303), + }, + [1549] = { + [sym_generic_command_name] = ACTIONS(12307), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12307), + [aux_sym_subparagraph_token1] = ACTIONS(12307), + [anon_sym_BSLASHitem] = ACTIONS(12307), + [anon_sym_LBRACK] = ACTIONS(12305), + [anon_sym_RBRACK] = ACTIONS(12305), + [anon_sym_LBRACE] = ACTIONS(12305), + [anon_sym_RBRACE] = ACTIONS(12305), + [anon_sym_LPAREN] = ACTIONS(12305), + [anon_sym_COMMA] = ACTIONS(12305), + [anon_sym_EQ] = ACTIONS(12305), + [sym_word] = ACTIONS(12305), + [sym_param] = ACTIONS(12305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12305), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12305), + [anon_sym_DOLLAR] = ACTIONS(12307), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12305), + [anon_sym_BSLASHbegin] = ACTIONS(12307), + [anon_sym_BSLASHcaption] = ACTIONS(12307), + [anon_sym_BSLASHcite] = ACTIONS(12307), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCite] = ACTIONS(12307), + [anon_sym_BSLASHnocite] = ACTIONS(12307), + [anon_sym_BSLASHcitet] = ACTIONS(12307), + [anon_sym_BSLASHcitep] = ACTIONS(12307), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteauthor] = ACTIONS(12307), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12307), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitetitle] = ACTIONS(12307), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteyear] = ACTIONS(12307), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitedate] = ACTIONS(12307), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteurl] = ACTIONS(12307), + [anon_sym_BSLASHfullcite] = ACTIONS(12307), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12307), + [anon_sym_BSLASHcitealt] = ACTIONS(12307), + [anon_sym_BSLASHcitealp] = ACTIONS(12307), + [anon_sym_BSLASHcitetext] = ACTIONS(12307), + [anon_sym_BSLASHparencite] = ACTIONS(12307), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHParencite] = ACTIONS(12307), + [anon_sym_BSLASHfootcite] = ACTIONS(12307), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12307), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12307), + [anon_sym_BSLASHtextcite] = ACTIONS(12307), + [anon_sym_BSLASHTextcite] = ACTIONS(12307), + [anon_sym_BSLASHsmartcite] = ACTIONS(12307), + [anon_sym_BSLASHSmartcite] = ACTIONS(12307), + [anon_sym_BSLASHsupercite] = ACTIONS(12307), + [anon_sym_BSLASHautocite] = ACTIONS(12307), + [anon_sym_BSLASHAutocite] = ACTIONS(12307), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHvolcite] = ACTIONS(12307), + [anon_sym_BSLASHVolcite] = ACTIONS(12307), + [anon_sym_BSLASHpvolcite] = ACTIONS(12307), + [anon_sym_BSLASHPvolcite] = ACTIONS(12307), + [anon_sym_BSLASHfvolcite] = ACTIONS(12307), + [anon_sym_BSLASHftvolcite] = ACTIONS(12307), + [anon_sym_BSLASHsvolcite] = ACTIONS(12307), + [anon_sym_BSLASHSvolcite] = ACTIONS(12307), + [anon_sym_BSLASHtvolcite] = ACTIONS(12307), + [anon_sym_BSLASHTvolcite] = ACTIONS(12307), + [anon_sym_BSLASHavolcite] = ACTIONS(12307), + [anon_sym_BSLASHAvolcite] = ACTIONS(12307), + [anon_sym_BSLASHnotecite] = ACTIONS(12307), + [anon_sym_BSLASHpnotecite] = ACTIONS(12307), + [anon_sym_BSLASHPnotecite] = ACTIONS(12307), + [anon_sym_BSLASHfnotecite] = ACTIONS(12307), + [anon_sym_BSLASHusepackage] = ACTIONS(12307), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12307), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12307), + [anon_sym_BSLASHinclude] = ACTIONS(12307), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12307), + [anon_sym_BSLASHinput] = ACTIONS(12307), + [anon_sym_BSLASHsubfile] = ACTIONS(12307), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12307), + [anon_sym_BSLASHbibliography] = ACTIONS(12307), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12307), + [anon_sym_BSLASHincludesvg] = ACTIONS(12307), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12307), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12307), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12307), + [anon_sym_BSLASHimport] = ACTIONS(12307), + [anon_sym_BSLASHsubimport] = ACTIONS(12307), + [anon_sym_BSLASHinputfrom] = ACTIONS(12307), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12307), + [anon_sym_BSLASHincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHlabel] = ACTIONS(12307), + [anon_sym_BSLASHref] = ACTIONS(12307), + [anon_sym_BSLASHvref] = ACTIONS(12307), + [anon_sym_BSLASHVref] = ACTIONS(12307), + [anon_sym_BSLASHautoref] = ACTIONS(12307), + [anon_sym_BSLASHpageref] = ACTIONS(12307), + [anon_sym_BSLASHcref] = ACTIONS(12307), + [anon_sym_BSLASHCref] = ACTIONS(12307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnameCref] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHlabelcref] = ACTIONS(12307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12307), + [anon_sym_BSLASHeqref] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange] = ACTIONS(12307), + [anon_sym_BSLASHCrefrange] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewlabel] = ACTIONS(12307), + [anon_sym_BSLASHnewcommand] = ACTIONS(12307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12307), + [anon_sym_BSLASHgls] = ACTIONS(12307), + [anon_sym_BSLASHGls] = ACTIONS(12307), + [anon_sym_BSLASHGLS] = ACTIONS(12307), + [anon_sym_BSLASHglspl] = ACTIONS(12307), + [anon_sym_BSLASHGlspl] = ACTIONS(12307), + [anon_sym_BSLASHGLSpl] = ACTIONS(12307), + [anon_sym_BSLASHglsdisp] = ACTIONS(12307), + [anon_sym_BSLASHglslink] = ACTIONS(12307), + [anon_sym_BSLASHglstext] = ACTIONS(12307), + [anon_sym_BSLASHGlstext] = ACTIONS(12307), + [anon_sym_BSLASHGLStext] = ACTIONS(12307), + [anon_sym_BSLASHglsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12307), + [anon_sym_BSLASHglsplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSplural] = ACTIONS(12307), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHglsname] = ACTIONS(12307), + [anon_sym_BSLASHGlsname] = ACTIONS(12307), + [anon_sym_BSLASHGLSname] = ACTIONS(12307), + [anon_sym_BSLASHglssymbol] = ACTIONS(12307), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12307), + [anon_sym_BSLASHglsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12307), + [anon_sym_BSLASHglsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12307), + [anon_sym_BSLASHglsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12307), + [anon_sym_BSLASHglsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12307), + [anon_sym_BSLASHglsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12307), + [anon_sym_BSLASHnewacronym] = ACTIONS(12307), + [anon_sym_BSLASHacrshort] = ACTIONS(12307), + [anon_sym_BSLASHAcrshort] = ACTIONS(12307), + [anon_sym_BSLASHACRshort] = ACTIONS(12307), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12307), + [anon_sym_BSLASHacrlong] = ACTIONS(12307), + [anon_sym_BSLASHAcrlong] = ACTIONS(12307), + [anon_sym_BSLASHACRlong] = ACTIONS(12307), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12307), + [anon_sym_BSLASHacrfull] = ACTIONS(12307), + [anon_sym_BSLASHAcrfull] = ACTIONS(12307), + [anon_sym_BSLASHACRfull] = ACTIONS(12307), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12307), + [anon_sym_BSLASHacs] = ACTIONS(12307), + [anon_sym_BSLASHAcs] = ACTIONS(12307), + [anon_sym_BSLASHacsp] = ACTIONS(12307), + [anon_sym_BSLASHAcsp] = ACTIONS(12307), + [anon_sym_BSLASHacl] = ACTIONS(12307), + [anon_sym_BSLASHAcl] = ACTIONS(12307), + [anon_sym_BSLASHaclp] = ACTIONS(12307), + [anon_sym_BSLASHAclp] = ACTIONS(12307), + [anon_sym_BSLASHacf] = ACTIONS(12307), + [anon_sym_BSLASHAcf] = ACTIONS(12307), + [anon_sym_BSLASHacfp] = ACTIONS(12307), + [anon_sym_BSLASHAcfp] = ACTIONS(12307), + [anon_sym_BSLASHac] = ACTIONS(12307), + [anon_sym_BSLASHAc] = ACTIONS(12307), + [anon_sym_BSLASHacp] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12307), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12307), + [anon_sym_BSLASHcolor] = ACTIONS(12307), + [anon_sym_BSLASHcolorbox] = ACTIONS(12307), + [anon_sym_BSLASHtextcolor] = ACTIONS(12307), + [anon_sym_BSLASHpagecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12307), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12307), + }, + [1550] = { + [sym_generic_command_name] = ACTIONS(12315), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12315), + [aux_sym_subparagraph_token1] = ACTIONS(12315), + [anon_sym_BSLASHitem] = ACTIONS(12315), + [anon_sym_LBRACK] = ACTIONS(12313), + [anon_sym_RBRACK] = ACTIONS(12313), + [anon_sym_LBRACE] = ACTIONS(12313), + [anon_sym_RBRACE] = ACTIONS(12313), + [anon_sym_LPAREN] = ACTIONS(12313), + [anon_sym_COMMA] = ACTIONS(12313), + [anon_sym_EQ] = ACTIONS(12313), + [sym_word] = ACTIONS(12313), + [sym_param] = ACTIONS(12313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12313), + [anon_sym_DOLLAR] = ACTIONS(12315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12313), + [anon_sym_BSLASHbegin] = ACTIONS(12315), + [anon_sym_BSLASHcaption] = ACTIONS(12315), + [anon_sym_BSLASHcite] = ACTIONS(12315), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCite] = ACTIONS(12315), + [anon_sym_BSLASHnocite] = ACTIONS(12315), + [anon_sym_BSLASHcitet] = ACTIONS(12315), + [anon_sym_BSLASHcitep] = ACTIONS(12315), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteauthor] = ACTIONS(12315), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12315), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitetitle] = ACTIONS(12315), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteyear] = ACTIONS(12315), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitedate] = ACTIONS(12315), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteurl] = ACTIONS(12315), + [anon_sym_BSLASHfullcite] = ACTIONS(12315), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12315), + [anon_sym_BSLASHcitealt] = ACTIONS(12315), + [anon_sym_BSLASHcitealp] = ACTIONS(12315), + [anon_sym_BSLASHcitetext] = ACTIONS(12315), + [anon_sym_BSLASHparencite] = ACTIONS(12315), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHParencite] = ACTIONS(12315), + [anon_sym_BSLASHfootcite] = ACTIONS(12315), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12315), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12315), + [anon_sym_BSLASHtextcite] = ACTIONS(12315), + [anon_sym_BSLASHTextcite] = ACTIONS(12315), + [anon_sym_BSLASHsmartcite] = ACTIONS(12315), + [anon_sym_BSLASHSmartcite] = ACTIONS(12315), + [anon_sym_BSLASHsupercite] = ACTIONS(12315), + [anon_sym_BSLASHautocite] = ACTIONS(12315), + [anon_sym_BSLASHAutocite] = ACTIONS(12315), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHvolcite] = ACTIONS(12315), + [anon_sym_BSLASHVolcite] = ACTIONS(12315), + [anon_sym_BSLASHpvolcite] = ACTIONS(12315), + [anon_sym_BSLASHPvolcite] = ACTIONS(12315), + [anon_sym_BSLASHfvolcite] = ACTIONS(12315), + [anon_sym_BSLASHftvolcite] = ACTIONS(12315), + [anon_sym_BSLASHsvolcite] = ACTIONS(12315), + [anon_sym_BSLASHSvolcite] = ACTIONS(12315), + [anon_sym_BSLASHtvolcite] = ACTIONS(12315), + [anon_sym_BSLASHTvolcite] = ACTIONS(12315), + [anon_sym_BSLASHavolcite] = ACTIONS(12315), + [anon_sym_BSLASHAvolcite] = ACTIONS(12315), + [anon_sym_BSLASHnotecite] = ACTIONS(12315), + [anon_sym_BSLASHpnotecite] = ACTIONS(12315), + [anon_sym_BSLASHPnotecite] = ACTIONS(12315), + [anon_sym_BSLASHfnotecite] = ACTIONS(12315), + [anon_sym_BSLASHusepackage] = ACTIONS(12315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12315), + [anon_sym_BSLASHinclude] = ACTIONS(12315), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12315), + [anon_sym_BSLASHinput] = ACTIONS(12315), + [anon_sym_BSLASHsubfile] = ACTIONS(12315), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12315), + [anon_sym_BSLASHbibliography] = ACTIONS(12315), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12315), + [anon_sym_BSLASHincludesvg] = ACTIONS(12315), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12315), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12315), + [anon_sym_BSLASHimport] = ACTIONS(12315), + [anon_sym_BSLASHsubimport] = ACTIONS(12315), + [anon_sym_BSLASHinputfrom] = ACTIONS(12315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12315), + [anon_sym_BSLASHincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHlabel] = ACTIONS(12315), + [anon_sym_BSLASHref] = ACTIONS(12315), + [anon_sym_BSLASHvref] = ACTIONS(12315), + [anon_sym_BSLASHVref] = ACTIONS(12315), + [anon_sym_BSLASHautoref] = ACTIONS(12315), + [anon_sym_BSLASHpageref] = ACTIONS(12315), + [anon_sym_BSLASHcref] = ACTIONS(12315), + [anon_sym_BSLASHCref] = ACTIONS(12315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnameCref] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHlabelcref] = ACTIONS(12315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12315), + [anon_sym_BSLASHeqref] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange] = ACTIONS(12315), + [anon_sym_BSLASHCrefrange] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewlabel] = ACTIONS(12315), + [anon_sym_BSLASHnewcommand] = ACTIONS(12315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12315), + [anon_sym_BSLASHgls] = ACTIONS(12315), + [anon_sym_BSLASHGls] = ACTIONS(12315), + [anon_sym_BSLASHGLS] = ACTIONS(12315), + [anon_sym_BSLASHglspl] = ACTIONS(12315), + [anon_sym_BSLASHGlspl] = ACTIONS(12315), + [anon_sym_BSLASHGLSpl] = ACTIONS(12315), + [anon_sym_BSLASHglsdisp] = ACTIONS(12315), + [anon_sym_BSLASHglslink] = ACTIONS(12315), + [anon_sym_BSLASHglstext] = ACTIONS(12315), + [anon_sym_BSLASHGlstext] = ACTIONS(12315), + [anon_sym_BSLASHGLStext] = ACTIONS(12315), + [anon_sym_BSLASHglsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12315), + [anon_sym_BSLASHglsplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSplural] = ACTIONS(12315), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHglsname] = ACTIONS(12315), + [anon_sym_BSLASHGlsname] = ACTIONS(12315), + [anon_sym_BSLASHGLSname] = ACTIONS(12315), + [anon_sym_BSLASHglssymbol] = ACTIONS(12315), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12315), + [anon_sym_BSLASHglsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12315), + [anon_sym_BSLASHglsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12315), + [anon_sym_BSLASHglsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12315), + [anon_sym_BSLASHglsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12315), + [anon_sym_BSLASHglsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12315), + [anon_sym_BSLASHnewacronym] = ACTIONS(12315), + [anon_sym_BSLASHacrshort] = ACTIONS(12315), + [anon_sym_BSLASHAcrshort] = ACTIONS(12315), + [anon_sym_BSLASHACRshort] = ACTIONS(12315), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12315), + [anon_sym_BSLASHacrlong] = ACTIONS(12315), + [anon_sym_BSLASHAcrlong] = ACTIONS(12315), + [anon_sym_BSLASHACRlong] = ACTIONS(12315), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12315), + [anon_sym_BSLASHacrfull] = ACTIONS(12315), + [anon_sym_BSLASHAcrfull] = ACTIONS(12315), + [anon_sym_BSLASHACRfull] = ACTIONS(12315), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12315), + [anon_sym_BSLASHacs] = ACTIONS(12315), + [anon_sym_BSLASHAcs] = ACTIONS(12315), + [anon_sym_BSLASHacsp] = ACTIONS(12315), + [anon_sym_BSLASHAcsp] = ACTIONS(12315), + [anon_sym_BSLASHacl] = ACTIONS(12315), + [anon_sym_BSLASHAcl] = ACTIONS(12315), + [anon_sym_BSLASHaclp] = ACTIONS(12315), + [anon_sym_BSLASHAclp] = ACTIONS(12315), + [anon_sym_BSLASHacf] = ACTIONS(12315), + [anon_sym_BSLASHAcf] = ACTIONS(12315), + [anon_sym_BSLASHacfp] = ACTIONS(12315), + [anon_sym_BSLASHAcfp] = ACTIONS(12315), + [anon_sym_BSLASHac] = ACTIONS(12315), + [anon_sym_BSLASHAc] = ACTIONS(12315), + [anon_sym_BSLASHacp] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12315), + [anon_sym_BSLASHcolor] = ACTIONS(12315), + [anon_sym_BSLASHcolorbox] = ACTIONS(12315), + [anon_sym_BSLASHtextcolor] = ACTIONS(12315), + [anon_sym_BSLASHpagecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12315), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12315), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12315), + }, + [1551] = { + [sym_generic_command_name] = ACTIONS(12335), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12335), + [aux_sym_subparagraph_token1] = ACTIONS(12335), + [anon_sym_BSLASHitem] = ACTIONS(12335), + [anon_sym_LBRACK] = ACTIONS(12776), + [anon_sym_RBRACK] = ACTIONS(12333), + [anon_sym_LBRACE] = ACTIONS(12333), + [anon_sym_RBRACE] = ACTIONS(12333), + [anon_sym_LPAREN] = ACTIONS(12333), + [anon_sym_COMMA] = ACTIONS(12333), + [anon_sym_EQ] = ACTIONS(12333), + [sym_word] = ACTIONS(12333), + [sym_param] = ACTIONS(12333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12333), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12333), + [anon_sym_DOLLAR] = ACTIONS(12335), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12333), + [anon_sym_BSLASHbegin] = ACTIONS(12335), + [anon_sym_BSLASHcaption] = ACTIONS(12335), + [anon_sym_BSLASHcite] = ACTIONS(12335), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCite] = ACTIONS(12335), + [anon_sym_BSLASHnocite] = ACTIONS(12335), + [anon_sym_BSLASHcitet] = ACTIONS(12335), + [anon_sym_BSLASHcitep] = ACTIONS(12335), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteauthor] = ACTIONS(12335), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12335), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitetitle] = ACTIONS(12335), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteyear] = ACTIONS(12335), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitedate] = ACTIONS(12335), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteurl] = ACTIONS(12335), + [anon_sym_BSLASHfullcite] = ACTIONS(12335), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12335), + [anon_sym_BSLASHcitealt] = ACTIONS(12335), + [anon_sym_BSLASHcitealp] = ACTIONS(12335), + [anon_sym_BSLASHcitetext] = ACTIONS(12335), + [anon_sym_BSLASHparencite] = ACTIONS(12335), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHParencite] = ACTIONS(12335), + [anon_sym_BSLASHfootcite] = ACTIONS(12335), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12335), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12335), + [anon_sym_BSLASHtextcite] = ACTIONS(12335), + [anon_sym_BSLASHTextcite] = ACTIONS(12335), + [anon_sym_BSLASHsmartcite] = ACTIONS(12335), + [anon_sym_BSLASHSmartcite] = ACTIONS(12335), + [anon_sym_BSLASHsupercite] = ACTIONS(12335), + [anon_sym_BSLASHautocite] = ACTIONS(12335), + [anon_sym_BSLASHAutocite] = ACTIONS(12335), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHvolcite] = ACTIONS(12335), + [anon_sym_BSLASHVolcite] = ACTIONS(12335), + [anon_sym_BSLASHpvolcite] = ACTIONS(12335), + [anon_sym_BSLASHPvolcite] = ACTIONS(12335), + [anon_sym_BSLASHfvolcite] = ACTIONS(12335), + [anon_sym_BSLASHftvolcite] = ACTIONS(12335), + [anon_sym_BSLASHsvolcite] = ACTIONS(12335), + [anon_sym_BSLASHSvolcite] = ACTIONS(12335), + [anon_sym_BSLASHtvolcite] = ACTIONS(12335), + [anon_sym_BSLASHTvolcite] = ACTIONS(12335), + [anon_sym_BSLASHavolcite] = ACTIONS(12335), + [anon_sym_BSLASHAvolcite] = ACTIONS(12335), + [anon_sym_BSLASHnotecite] = ACTIONS(12335), + [anon_sym_BSLASHpnotecite] = ACTIONS(12335), + [anon_sym_BSLASHPnotecite] = ACTIONS(12335), + [anon_sym_BSLASHfnotecite] = ACTIONS(12335), + [anon_sym_BSLASHusepackage] = ACTIONS(12335), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12335), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12335), + [anon_sym_BSLASHinclude] = ACTIONS(12335), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12335), + [anon_sym_BSLASHinput] = ACTIONS(12335), + [anon_sym_BSLASHsubfile] = ACTIONS(12335), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12335), + [anon_sym_BSLASHbibliography] = ACTIONS(12335), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12335), + [anon_sym_BSLASHincludesvg] = ACTIONS(12335), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12335), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12335), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12335), + [anon_sym_BSLASHimport] = ACTIONS(12335), + [anon_sym_BSLASHsubimport] = ACTIONS(12335), + [anon_sym_BSLASHinputfrom] = ACTIONS(12335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12335), + [anon_sym_BSLASHincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHlabel] = ACTIONS(12335), + [anon_sym_BSLASHref] = ACTIONS(12335), + [anon_sym_BSLASHvref] = ACTIONS(12335), + [anon_sym_BSLASHVref] = ACTIONS(12335), + [anon_sym_BSLASHautoref] = ACTIONS(12335), + [anon_sym_BSLASHpageref] = ACTIONS(12335), + [anon_sym_BSLASHcref] = ACTIONS(12335), + [anon_sym_BSLASHCref] = ACTIONS(12335), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnameCref] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHlabelcref] = ACTIONS(12335), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12335), + [anon_sym_BSLASHeqref] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange] = ACTIONS(12335), + [anon_sym_BSLASHCrefrange] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewlabel] = ACTIONS(12335), + [anon_sym_BSLASHnewcommand] = ACTIONS(12335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12335), + [anon_sym_BSLASHgls] = ACTIONS(12335), + [anon_sym_BSLASHGls] = ACTIONS(12335), + [anon_sym_BSLASHGLS] = ACTIONS(12335), + [anon_sym_BSLASHglspl] = ACTIONS(12335), + [anon_sym_BSLASHGlspl] = ACTIONS(12335), + [anon_sym_BSLASHGLSpl] = ACTIONS(12335), + [anon_sym_BSLASHglsdisp] = ACTIONS(12335), + [anon_sym_BSLASHglslink] = ACTIONS(12335), + [anon_sym_BSLASHglstext] = ACTIONS(12335), + [anon_sym_BSLASHGlstext] = ACTIONS(12335), + [anon_sym_BSLASHGLStext] = ACTIONS(12335), + [anon_sym_BSLASHglsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12335), + [anon_sym_BSLASHglsplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSplural] = ACTIONS(12335), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHglsname] = ACTIONS(12335), + [anon_sym_BSLASHGlsname] = ACTIONS(12335), + [anon_sym_BSLASHGLSname] = ACTIONS(12335), + [anon_sym_BSLASHglssymbol] = ACTIONS(12335), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12335), + [anon_sym_BSLASHglsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12335), + [anon_sym_BSLASHglsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12335), + [anon_sym_BSLASHglsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12335), + [anon_sym_BSLASHglsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12335), + [anon_sym_BSLASHglsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12335), + [anon_sym_BSLASHnewacronym] = ACTIONS(12335), + [anon_sym_BSLASHacrshort] = ACTIONS(12335), + [anon_sym_BSLASHAcrshort] = ACTIONS(12335), + [anon_sym_BSLASHACRshort] = ACTIONS(12335), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12335), + [anon_sym_BSLASHacrlong] = ACTIONS(12335), + [anon_sym_BSLASHAcrlong] = ACTIONS(12335), + [anon_sym_BSLASHACRlong] = ACTIONS(12335), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12335), + [anon_sym_BSLASHacrfull] = ACTIONS(12335), + [anon_sym_BSLASHAcrfull] = ACTIONS(12335), + [anon_sym_BSLASHACRfull] = ACTIONS(12335), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12335), + [anon_sym_BSLASHacs] = ACTIONS(12335), + [anon_sym_BSLASHAcs] = ACTIONS(12335), + [anon_sym_BSLASHacsp] = ACTIONS(12335), + [anon_sym_BSLASHAcsp] = ACTIONS(12335), + [anon_sym_BSLASHacl] = ACTIONS(12335), + [anon_sym_BSLASHAcl] = ACTIONS(12335), + [anon_sym_BSLASHaclp] = ACTIONS(12335), + [anon_sym_BSLASHAclp] = ACTIONS(12335), + [anon_sym_BSLASHacf] = ACTIONS(12335), + [anon_sym_BSLASHAcf] = ACTIONS(12335), + [anon_sym_BSLASHacfp] = ACTIONS(12335), + [anon_sym_BSLASHAcfp] = ACTIONS(12335), + [anon_sym_BSLASHac] = ACTIONS(12335), + [anon_sym_BSLASHAc] = ACTIONS(12335), + [anon_sym_BSLASHacp] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12335), + [anon_sym_BSLASHcolor] = ACTIONS(12335), + [anon_sym_BSLASHcolorbox] = ACTIONS(12335), + [anon_sym_BSLASHtextcolor] = ACTIONS(12335), + [anon_sym_BSLASHpagecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12335), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12335), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12335), + }, + [1552] = { + [sym_generic_command_name] = ACTIONS(12341), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12341), + [aux_sym_subparagraph_token1] = ACTIONS(12341), + [anon_sym_BSLASHitem] = ACTIONS(12341), + [anon_sym_LBRACK] = ACTIONS(12339), + [anon_sym_RBRACK] = ACTIONS(12339), + [anon_sym_LBRACE] = ACTIONS(12339), + [anon_sym_RBRACE] = ACTIONS(12339), + [anon_sym_LPAREN] = ACTIONS(12339), + [anon_sym_COMMA] = ACTIONS(12339), + [anon_sym_EQ] = ACTIONS(12339), + [sym_word] = ACTIONS(12339), + [sym_param] = ACTIONS(12339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12339), + [anon_sym_DOLLAR] = ACTIONS(12341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12339), + [anon_sym_BSLASHbegin] = ACTIONS(12341), + [anon_sym_BSLASHcaption] = ACTIONS(12341), + [anon_sym_BSLASHcite] = ACTIONS(12341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCite] = ACTIONS(12341), + [anon_sym_BSLASHnocite] = ACTIONS(12341), + [anon_sym_BSLASHcitet] = ACTIONS(12341), + [anon_sym_BSLASHcitep] = ACTIONS(12341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteauthor] = ACTIONS(12341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitetitle] = ACTIONS(12341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteyear] = ACTIONS(12341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitedate] = ACTIONS(12341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteurl] = ACTIONS(12341), + [anon_sym_BSLASHfullcite] = ACTIONS(12341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12341), + [anon_sym_BSLASHcitealt] = ACTIONS(12341), + [anon_sym_BSLASHcitealp] = ACTIONS(12341), + [anon_sym_BSLASHcitetext] = ACTIONS(12341), + [anon_sym_BSLASHparencite] = ACTIONS(12341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHParencite] = ACTIONS(12341), + [anon_sym_BSLASHfootcite] = ACTIONS(12341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12341), + [anon_sym_BSLASHtextcite] = ACTIONS(12341), + [anon_sym_BSLASHTextcite] = ACTIONS(12341), + [anon_sym_BSLASHsmartcite] = ACTIONS(12341), + [anon_sym_BSLASHSmartcite] = ACTIONS(12341), + [anon_sym_BSLASHsupercite] = ACTIONS(12341), + [anon_sym_BSLASHautocite] = ACTIONS(12341), + [anon_sym_BSLASHAutocite] = ACTIONS(12341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHvolcite] = ACTIONS(12341), + [anon_sym_BSLASHVolcite] = ACTIONS(12341), + [anon_sym_BSLASHpvolcite] = ACTIONS(12341), + [anon_sym_BSLASHPvolcite] = ACTIONS(12341), + [anon_sym_BSLASHfvolcite] = ACTIONS(12341), + [anon_sym_BSLASHftvolcite] = ACTIONS(12341), + [anon_sym_BSLASHsvolcite] = ACTIONS(12341), + [anon_sym_BSLASHSvolcite] = ACTIONS(12341), + [anon_sym_BSLASHtvolcite] = ACTIONS(12341), + [anon_sym_BSLASHTvolcite] = ACTIONS(12341), + [anon_sym_BSLASHavolcite] = ACTIONS(12341), + [anon_sym_BSLASHAvolcite] = ACTIONS(12341), + [anon_sym_BSLASHnotecite] = ACTIONS(12341), + [anon_sym_BSLASHpnotecite] = ACTIONS(12341), + [anon_sym_BSLASHPnotecite] = ACTIONS(12341), + [anon_sym_BSLASHfnotecite] = ACTIONS(12341), + [anon_sym_BSLASHusepackage] = ACTIONS(12341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12341), + [anon_sym_BSLASHinclude] = ACTIONS(12341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12341), + [anon_sym_BSLASHinput] = ACTIONS(12341), + [anon_sym_BSLASHsubfile] = ACTIONS(12341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12341), + [anon_sym_BSLASHbibliography] = ACTIONS(12341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12341), + [anon_sym_BSLASHincludesvg] = ACTIONS(12341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12341), + [anon_sym_BSLASHimport] = ACTIONS(12341), + [anon_sym_BSLASHsubimport] = ACTIONS(12341), + [anon_sym_BSLASHinputfrom] = ACTIONS(12341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12341), + [anon_sym_BSLASHincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHlabel] = ACTIONS(12341), + [anon_sym_BSLASHref] = ACTIONS(12341), + [anon_sym_BSLASHvref] = ACTIONS(12341), + [anon_sym_BSLASHVref] = ACTIONS(12341), + [anon_sym_BSLASHautoref] = ACTIONS(12341), + [anon_sym_BSLASHpageref] = ACTIONS(12341), + [anon_sym_BSLASHcref] = ACTIONS(12341), + [anon_sym_BSLASHCref] = ACTIONS(12341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnameCref] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHlabelcref] = ACTIONS(12341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12341), + [anon_sym_BSLASHeqref] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange] = ACTIONS(12341), + [anon_sym_BSLASHCrefrange] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewlabel] = ACTIONS(12341), + [anon_sym_BSLASHnewcommand] = ACTIONS(12341), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12341), + [anon_sym_BSLASHgls] = ACTIONS(12341), + [anon_sym_BSLASHGls] = ACTIONS(12341), + [anon_sym_BSLASHGLS] = ACTIONS(12341), + [anon_sym_BSLASHglspl] = ACTIONS(12341), + [anon_sym_BSLASHGlspl] = ACTIONS(12341), + [anon_sym_BSLASHGLSpl] = ACTIONS(12341), + [anon_sym_BSLASHglsdisp] = ACTIONS(12341), + [anon_sym_BSLASHglslink] = ACTIONS(12341), + [anon_sym_BSLASHglstext] = ACTIONS(12341), + [anon_sym_BSLASHGlstext] = ACTIONS(12341), + [anon_sym_BSLASHGLStext] = ACTIONS(12341), + [anon_sym_BSLASHglsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12341), + [anon_sym_BSLASHglsplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSplural] = ACTIONS(12341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHglsname] = ACTIONS(12341), + [anon_sym_BSLASHGlsname] = ACTIONS(12341), + [anon_sym_BSLASHGLSname] = ACTIONS(12341), + [anon_sym_BSLASHglssymbol] = ACTIONS(12341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12341), + [anon_sym_BSLASHglsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12341), + [anon_sym_BSLASHglsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12341), + [anon_sym_BSLASHglsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12341), + [anon_sym_BSLASHglsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12341), + [anon_sym_BSLASHglsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12341), + [anon_sym_BSLASHnewacronym] = ACTIONS(12341), + [anon_sym_BSLASHacrshort] = ACTIONS(12341), + [anon_sym_BSLASHAcrshort] = ACTIONS(12341), + [anon_sym_BSLASHACRshort] = ACTIONS(12341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12341), + [anon_sym_BSLASHacrlong] = ACTIONS(12341), + [anon_sym_BSLASHAcrlong] = ACTIONS(12341), + [anon_sym_BSLASHACRlong] = ACTIONS(12341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12341), + [anon_sym_BSLASHacrfull] = ACTIONS(12341), + [anon_sym_BSLASHAcrfull] = ACTIONS(12341), + [anon_sym_BSLASHACRfull] = ACTIONS(12341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12341), + [anon_sym_BSLASHacs] = ACTIONS(12341), + [anon_sym_BSLASHAcs] = ACTIONS(12341), + [anon_sym_BSLASHacsp] = ACTIONS(12341), + [anon_sym_BSLASHAcsp] = ACTIONS(12341), + [anon_sym_BSLASHacl] = ACTIONS(12341), + [anon_sym_BSLASHAcl] = ACTIONS(12341), + [anon_sym_BSLASHaclp] = ACTIONS(12341), + [anon_sym_BSLASHAclp] = ACTIONS(12341), + [anon_sym_BSLASHacf] = ACTIONS(12341), + [anon_sym_BSLASHAcf] = ACTIONS(12341), + [anon_sym_BSLASHacfp] = ACTIONS(12341), + [anon_sym_BSLASHAcfp] = ACTIONS(12341), + [anon_sym_BSLASHac] = ACTIONS(12341), + [anon_sym_BSLASHAc] = ACTIONS(12341), + [anon_sym_BSLASHacp] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12341), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12341), + [anon_sym_BSLASHcolor] = ACTIONS(12341), + [anon_sym_BSLASHcolorbox] = ACTIONS(12341), + [anon_sym_BSLASHtextcolor] = ACTIONS(12341), + [anon_sym_BSLASHpagecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12341), + }, + [1553] = { + [sym_generic_command_name] = ACTIONS(12353), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12353), + [aux_sym_subparagraph_token1] = ACTIONS(12353), + [anon_sym_BSLASHitem] = ACTIONS(12353), + [anon_sym_LBRACK] = ACTIONS(12351), + [anon_sym_RBRACK] = ACTIONS(12351), + [anon_sym_LBRACE] = ACTIONS(12351), + [anon_sym_RBRACE] = ACTIONS(12351), + [anon_sym_LPAREN] = ACTIONS(12351), + [anon_sym_COMMA] = ACTIONS(12351), + [anon_sym_EQ] = ACTIONS(12351), + [sym_word] = ACTIONS(12351), + [sym_param] = ACTIONS(12351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12351), + [anon_sym_DOLLAR] = ACTIONS(12353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12351), + [anon_sym_BSLASHbegin] = ACTIONS(12353), + [anon_sym_BSLASHcaption] = ACTIONS(12353), + [anon_sym_BSLASHcite] = ACTIONS(12353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCite] = ACTIONS(12353), + [anon_sym_BSLASHnocite] = ACTIONS(12353), + [anon_sym_BSLASHcitet] = ACTIONS(12353), + [anon_sym_BSLASHcitep] = ACTIONS(12353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteauthor] = ACTIONS(12353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitetitle] = ACTIONS(12353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteyear] = ACTIONS(12353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitedate] = ACTIONS(12353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteurl] = ACTIONS(12353), + [anon_sym_BSLASHfullcite] = ACTIONS(12353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12353), + [anon_sym_BSLASHcitealt] = ACTIONS(12353), + [anon_sym_BSLASHcitealp] = ACTIONS(12353), + [anon_sym_BSLASHcitetext] = ACTIONS(12353), + [anon_sym_BSLASHparencite] = ACTIONS(12353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHParencite] = ACTIONS(12353), + [anon_sym_BSLASHfootcite] = ACTIONS(12353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12353), + [anon_sym_BSLASHtextcite] = ACTIONS(12353), + [anon_sym_BSLASHTextcite] = ACTIONS(12353), + [anon_sym_BSLASHsmartcite] = ACTIONS(12353), + [anon_sym_BSLASHSmartcite] = ACTIONS(12353), + [anon_sym_BSLASHsupercite] = ACTIONS(12353), + [anon_sym_BSLASHautocite] = ACTIONS(12353), + [anon_sym_BSLASHAutocite] = ACTIONS(12353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHvolcite] = ACTIONS(12353), + [anon_sym_BSLASHVolcite] = ACTIONS(12353), + [anon_sym_BSLASHpvolcite] = ACTIONS(12353), + [anon_sym_BSLASHPvolcite] = ACTIONS(12353), + [anon_sym_BSLASHfvolcite] = ACTIONS(12353), + [anon_sym_BSLASHftvolcite] = ACTIONS(12353), + [anon_sym_BSLASHsvolcite] = ACTIONS(12353), + [anon_sym_BSLASHSvolcite] = ACTIONS(12353), + [anon_sym_BSLASHtvolcite] = ACTIONS(12353), + [anon_sym_BSLASHTvolcite] = ACTIONS(12353), + [anon_sym_BSLASHavolcite] = ACTIONS(12353), + [anon_sym_BSLASHAvolcite] = ACTIONS(12353), + [anon_sym_BSLASHnotecite] = ACTIONS(12353), + [anon_sym_BSLASHpnotecite] = ACTIONS(12353), + [anon_sym_BSLASHPnotecite] = ACTIONS(12353), + [anon_sym_BSLASHfnotecite] = ACTIONS(12353), + [anon_sym_BSLASHusepackage] = ACTIONS(12353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12353), + [anon_sym_BSLASHinclude] = ACTIONS(12353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12353), + [anon_sym_BSLASHinput] = ACTIONS(12353), + [anon_sym_BSLASHsubfile] = ACTIONS(12353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12353), + [anon_sym_BSLASHbibliography] = ACTIONS(12353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12353), + [anon_sym_BSLASHincludesvg] = ACTIONS(12353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12353), + [anon_sym_BSLASHimport] = ACTIONS(12353), + [anon_sym_BSLASHsubimport] = ACTIONS(12353), + [anon_sym_BSLASHinputfrom] = ACTIONS(12353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12353), + [anon_sym_BSLASHincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHlabel] = ACTIONS(12353), + [anon_sym_BSLASHref] = ACTIONS(12353), + [anon_sym_BSLASHvref] = ACTIONS(12353), + [anon_sym_BSLASHVref] = ACTIONS(12353), + [anon_sym_BSLASHautoref] = ACTIONS(12353), + [anon_sym_BSLASHpageref] = ACTIONS(12353), + [anon_sym_BSLASHcref] = ACTIONS(12353), + [anon_sym_BSLASHCref] = ACTIONS(12353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnameCref] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHlabelcref] = ACTIONS(12353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12353), + [anon_sym_BSLASHeqref] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange] = ACTIONS(12353), + [anon_sym_BSLASHCrefrange] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewlabel] = ACTIONS(12353), + [anon_sym_BSLASHnewcommand] = ACTIONS(12353), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12353), + [anon_sym_BSLASHgls] = ACTIONS(12353), + [anon_sym_BSLASHGls] = ACTIONS(12353), + [anon_sym_BSLASHGLS] = ACTIONS(12353), + [anon_sym_BSLASHglspl] = ACTIONS(12353), + [anon_sym_BSLASHGlspl] = ACTIONS(12353), + [anon_sym_BSLASHGLSpl] = ACTIONS(12353), + [anon_sym_BSLASHglsdisp] = ACTIONS(12353), + [anon_sym_BSLASHglslink] = ACTIONS(12353), + [anon_sym_BSLASHglstext] = ACTIONS(12353), + [anon_sym_BSLASHGlstext] = ACTIONS(12353), + [anon_sym_BSLASHGLStext] = ACTIONS(12353), + [anon_sym_BSLASHglsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12353), + [anon_sym_BSLASHglsplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSplural] = ACTIONS(12353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHglsname] = ACTIONS(12353), + [anon_sym_BSLASHGlsname] = ACTIONS(12353), + [anon_sym_BSLASHGLSname] = ACTIONS(12353), + [anon_sym_BSLASHglssymbol] = ACTIONS(12353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12353), + [anon_sym_BSLASHglsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12353), + [anon_sym_BSLASHglsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12353), + [anon_sym_BSLASHglsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12353), + [anon_sym_BSLASHglsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12353), + [anon_sym_BSLASHglsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12353), + [anon_sym_BSLASHnewacronym] = ACTIONS(12353), + [anon_sym_BSLASHacrshort] = ACTIONS(12353), + [anon_sym_BSLASHAcrshort] = ACTIONS(12353), + [anon_sym_BSLASHACRshort] = ACTIONS(12353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12353), + [anon_sym_BSLASHacrlong] = ACTIONS(12353), + [anon_sym_BSLASHAcrlong] = ACTIONS(12353), + [anon_sym_BSLASHACRlong] = ACTIONS(12353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12353), + [anon_sym_BSLASHacrfull] = ACTIONS(12353), + [anon_sym_BSLASHAcrfull] = ACTIONS(12353), + [anon_sym_BSLASHACRfull] = ACTIONS(12353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12353), + [anon_sym_BSLASHacs] = ACTIONS(12353), + [anon_sym_BSLASHAcs] = ACTIONS(12353), + [anon_sym_BSLASHacsp] = ACTIONS(12353), + [anon_sym_BSLASHAcsp] = ACTIONS(12353), + [anon_sym_BSLASHacl] = ACTIONS(12353), + [anon_sym_BSLASHAcl] = ACTIONS(12353), + [anon_sym_BSLASHaclp] = ACTIONS(12353), + [anon_sym_BSLASHAclp] = ACTIONS(12353), + [anon_sym_BSLASHacf] = ACTIONS(12353), + [anon_sym_BSLASHAcf] = ACTIONS(12353), + [anon_sym_BSLASHacfp] = ACTIONS(12353), + [anon_sym_BSLASHAcfp] = ACTIONS(12353), + [anon_sym_BSLASHac] = ACTIONS(12353), + [anon_sym_BSLASHAc] = ACTIONS(12353), + [anon_sym_BSLASHacp] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12353), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12353), + [anon_sym_BSLASHcolor] = ACTIONS(12353), + [anon_sym_BSLASHcolorbox] = ACTIONS(12353), + [anon_sym_BSLASHtextcolor] = ACTIONS(12353), + [anon_sym_BSLASHpagecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12353), + }, + [1554] = { + [sym_generic_command_name] = ACTIONS(12357), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12357), + [aux_sym_subparagraph_token1] = ACTIONS(12357), + [anon_sym_BSLASHitem] = ACTIONS(12357), + [anon_sym_LBRACK] = ACTIONS(12355), + [anon_sym_RBRACK] = ACTIONS(12355), + [anon_sym_LBRACE] = ACTIONS(12355), + [anon_sym_RBRACE] = ACTIONS(12355), + [anon_sym_LPAREN] = ACTIONS(12355), + [anon_sym_COMMA] = ACTIONS(12355), + [anon_sym_EQ] = ACTIONS(12355), + [sym_word] = ACTIONS(12355), + [sym_param] = ACTIONS(12355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12355), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12355), + [anon_sym_DOLLAR] = ACTIONS(12357), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12355), + [anon_sym_BSLASHbegin] = ACTIONS(12357), + [anon_sym_BSLASHcaption] = ACTIONS(12357), + [anon_sym_BSLASHcite] = ACTIONS(12357), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCite] = ACTIONS(12357), + [anon_sym_BSLASHnocite] = ACTIONS(12357), + [anon_sym_BSLASHcitet] = ACTIONS(12357), + [anon_sym_BSLASHcitep] = ACTIONS(12357), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteauthor] = ACTIONS(12357), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12357), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitetitle] = ACTIONS(12357), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteyear] = ACTIONS(12357), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitedate] = ACTIONS(12357), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteurl] = ACTIONS(12357), + [anon_sym_BSLASHfullcite] = ACTIONS(12357), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12357), + [anon_sym_BSLASHcitealt] = ACTIONS(12357), + [anon_sym_BSLASHcitealp] = ACTIONS(12357), + [anon_sym_BSLASHcitetext] = ACTIONS(12357), + [anon_sym_BSLASHparencite] = ACTIONS(12357), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHParencite] = ACTIONS(12357), + [anon_sym_BSLASHfootcite] = ACTIONS(12357), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12357), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12357), + [anon_sym_BSLASHtextcite] = ACTIONS(12357), + [anon_sym_BSLASHTextcite] = ACTIONS(12357), + [anon_sym_BSLASHsmartcite] = ACTIONS(12357), + [anon_sym_BSLASHSmartcite] = ACTIONS(12357), + [anon_sym_BSLASHsupercite] = ACTIONS(12357), + [anon_sym_BSLASHautocite] = ACTIONS(12357), + [anon_sym_BSLASHAutocite] = ACTIONS(12357), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHvolcite] = ACTIONS(12357), + [anon_sym_BSLASHVolcite] = ACTIONS(12357), + [anon_sym_BSLASHpvolcite] = ACTIONS(12357), + [anon_sym_BSLASHPvolcite] = ACTIONS(12357), + [anon_sym_BSLASHfvolcite] = ACTIONS(12357), + [anon_sym_BSLASHftvolcite] = ACTIONS(12357), + [anon_sym_BSLASHsvolcite] = ACTIONS(12357), + [anon_sym_BSLASHSvolcite] = ACTIONS(12357), + [anon_sym_BSLASHtvolcite] = ACTIONS(12357), + [anon_sym_BSLASHTvolcite] = ACTIONS(12357), + [anon_sym_BSLASHavolcite] = ACTIONS(12357), + [anon_sym_BSLASHAvolcite] = ACTIONS(12357), + [anon_sym_BSLASHnotecite] = ACTIONS(12357), + [anon_sym_BSLASHpnotecite] = ACTIONS(12357), + [anon_sym_BSLASHPnotecite] = ACTIONS(12357), + [anon_sym_BSLASHfnotecite] = ACTIONS(12357), + [anon_sym_BSLASHusepackage] = ACTIONS(12357), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12357), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12357), + [anon_sym_BSLASHinclude] = ACTIONS(12357), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12357), + [anon_sym_BSLASHinput] = ACTIONS(12357), + [anon_sym_BSLASHsubfile] = ACTIONS(12357), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12357), + [anon_sym_BSLASHbibliography] = ACTIONS(12357), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12357), + [anon_sym_BSLASHincludesvg] = ACTIONS(12357), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12357), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12357), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12357), + [anon_sym_BSLASHimport] = ACTIONS(12357), + [anon_sym_BSLASHsubimport] = ACTIONS(12357), + [anon_sym_BSLASHinputfrom] = ACTIONS(12357), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12357), + [anon_sym_BSLASHincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHlabel] = ACTIONS(12357), + [anon_sym_BSLASHref] = ACTIONS(12357), + [anon_sym_BSLASHvref] = ACTIONS(12357), + [anon_sym_BSLASHVref] = ACTIONS(12357), + [anon_sym_BSLASHautoref] = ACTIONS(12357), + [anon_sym_BSLASHpageref] = ACTIONS(12357), + [anon_sym_BSLASHcref] = ACTIONS(12357), + [anon_sym_BSLASHCref] = ACTIONS(12357), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnameCref] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHlabelcref] = ACTIONS(12357), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12357), + [anon_sym_BSLASHeqref] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange] = ACTIONS(12357), + [anon_sym_BSLASHCrefrange] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewlabel] = ACTIONS(12357), + [anon_sym_BSLASHnewcommand] = ACTIONS(12357), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12357), + [anon_sym_BSLASHgls] = ACTIONS(12357), + [anon_sym_BSLASHGls] = ACTIONS(12357), + [anon_sym_BSLASHGLS] = ACTIONS(12357), + [anon_sym_BSLASHglspl] = ACTIONS(12357), + [anon_sym_BSLASHGlspl] = ACTIONS(12357), + [anon_sym_BSLASHGLSpl] = ACTIONS(12357), + [anon_sym_BSLASHglsdisp] = ACTIONS(12357), + [anon_sym_BSLASHglslink] = ACTIONS(12357), + [anon_sym_BSLASHglstext] = ACTIONS(12357), + [anon_sym_BSLASHGlstext] = ACTIONS(12357), + [anon_sym_BSLASHGLStext] = ACTIONS(12357), + [anon_sym_BSLASHglsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12357), + [anon_sym_BSLASHglsplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSplural] = ACTIONS(12357), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHglsname] = ACTIONS(12357), + [anon_sym_BSLASHGlsname] = ACTIONS(12357), + [anon_sym_BSLASHGLSname] = ACTIONS(12357), + [anon_sym_BSLASHglssymbol] = ACTIONS(12357), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12357), + [anon_sym_BSLASHglsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12357), + [anon_sym_BSLASHglsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12357), + [anon_sym_BSLASHglsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12357), + [anon_sym_BSLASHglsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12357), + [anon_sym_BSLASHglsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12357), + [anon_sym_BSLASHnewacronym] = ACTIONS(12357), + [anon_sym_BSLASHacrshort] = ACTIONS(12357), + [anon_sym_BSLASHAcrshort] = ACTIONS(12357), + [anon_sym_BSLASHACRshort] = ACTIONS(12357), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12357), + [anon_sym_BSLASHacrlong] = ACTIONS(12357), + [anon_sym_BSLASHAcrlong] = ACTIONS(12357), + [anon_sym_BSLASHACRlong] = ACTIONS(12357), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12357), + [anon_sym_BSLASHacrfull] = ACTIONS(12357), + [anon_sym_BSLASHAcrfull] = ACTIONS(12357), + [anon_sym_BSLASHACRfull] = ACTIONS(12357), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12357), + [anon_sym_BSLASHacs] = ACTIONS(12357), + [anon_sym_BSLASHAcs] = ACTIONS(12357), + [anon_sym_BSLASHacsp] = ACTIONS(12357), + [anon_sym_BSLASHAcsp] = ACTIONS(12357), + [anon_sym_BSLASHacl] = ACTIONS(12357), + [anon_sym_BSLASHAcl] = ACTIONS(12357), + [anon_sym_BSLASHaclp] = ACTIONS(12357), + [anon_sym_BSLASHAclp] = ACTIONS(12357), + [anon_sym_BSLASHacf] = ACTIONS(12357), + [anon_sym_BSLASHAcf] = ACTIONS(12357), + [anon_sym_BSLASHacfp] = ACTIONS(12357), + [anon_sym_BSLASHAcfp] = ACTIONS(12357), + [anon_sym_BSLASHac] = ACTIONS(12357), + [anon_sym_BSLASHAc] = ACTIONS(12357), + [anon_sym_BSLASHacp] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12357), + [anon_sym_BSLASHcolor] = ACTIONS(12357), + [anon_sym_BSLASHcolorbox] = ACTIONS(12357), + [anon_sym_BSLASHtextcolor] = ACTIONS(12357), + [anon_sym_BSLASHpagecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12357), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12357), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12357), + }, + [1555] = { + [sym_generic_command_name] = ACTIONS(12361), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12361), + [aux_sym_subparagraph_token1] = ACTIONS(12361), + [anon_sym_BSLASHitem] = ACTIONS(12361), + [anon_sym_LBRACK] = ACTIONS(12359), + [anon_sym_RBRACK] = ACTIONS(12359), + [anon_sym_LBRACE] = ACTIONS(12359), + [anon_sym_RBRACE] = ACTIONS(12359), + [anon_sym_LPAREN] = ACTIONS(12359), + [anon_sym_COMMA] = ACTIONS(12359), + [anon_sym_EQ] = ACTIONS(12359), + [sym_word] = ACTIONS(12359), + [sym_param] = ACTIONS(12359), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12359), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12359), + [anon_sym_DOLLAR] = ACTIONS(12361), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12359), + [anon_sym_BSLASHbegin] = ACTIONS(12361), + [anon_sym_BSLASHcaption] = ACTIONS(12361), + [anon_sym_BSLASHcite] = ACTIONS(12361), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCite] = ACTIONS(12361), + [anon_sym_BSLASHnocite] = ACTIONS(12361), + [anon_sym_BSLASHcitet] = ACTIONS(12361), + [anon_sym_BSLASHcitep] = ACTIONS(12361), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteauthor] = ACTIONS(12361), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12361), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitetitle] = ACTIONS(12361), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteyear] = ACTIONS(12361), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitedate] = ACTIONS(12361), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteurl] = ACTIONS(12361), + [anon_sym_BSLASHfullcite] = ACTIONS(12361), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12361), + [anon_sym_BSLASHcitealt] = ACTIONS(12361), + [anon_sym_BSLASHcitealp] = ACTIONS(12361), + [anon_sym_BSLASHcitetext] = ACTIONS(12361), + [anon_sym_BSLASHparencite] = ACTIONS(12361), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHParencite] = ACTIONS(12361), + [anon_sym_BSLASHfootcite] = ACTIONS(12361), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12361), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12361), + [anon_sym_BSLASHtextcite] = ACTIONS(12361), + [anon_sym_BSLASHTextcite] = ACTIONS(12361), + [anon_sym_BSLASHsmartcite] = ACTIONS(12361), + [anon_sym_BSLASHSmartcite] = ACTIONS(12361), + [anon_sym_BSLASHsupercite] = ACTIONS(12361), + [anon_sym_BSLASHautocite] = ACTIONS(12361), + [anon_sym_BSLASHAutocite] = ACTIONS(12361), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHvolcite] = ACTIONS(12361), + [anon_sym_BSLASHVolcite] = ACTIONS(12361), + [anon_sym_BSLASHpvolcite] = ACTIONS(12361), + [anon_sym_BSLASHPvolcite] = ACTIONS(12361), + [anon_sym_BSLASHfvolcite] = ACTIONS(12361), + [anon_sym_BSLASHftvolcite] = ACTIONS(12361), + [anon_sym_BSLASHsvolcite] = ACTIONS(12361), + [anon_sym_BSLASHSvolcite] = ACTIONS(12361), + [anon_sym_BSLASHtvolcite] = ACTIONS(12361), + [anon_sym_BSLASHTvolcite] = ACTIONS(12361), + [anon_sym_BSLASHavolcite] = ACTIONS(12361), + [anon_sym_BSLASHAvolcite] = ACTIONS(12361), + [anon_sym_BSLASHnotecite] = ACTIONS(12361), + [anon_sym_BSLASHpnotecite] = ACTIONS(12361), + [anon_sym_BSLASHPnotecite] = ACTIONS(12361), + [anon_sym_BSLASHfnotecite] = ACTIONS(12361), + [anon_sym_BSLASHusepackage] = ACTIONS(12361), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12361), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12361), + [anon_sym_BSLASHinclude] = ACTIONS(12361), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12361), + [anon_sym_BSLASHinput] = ACTIONS(12361), + [anon_sym_BSLASHsubfile] = ACTIONS(12361), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12361), + [anon_sym_BSLASHbibliography] = ACTIONS(12361), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12361), + [anon_sym_BSLASHincludesvg] = ACTIONS(12361), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12361), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12361), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12361), + [anon_sym_BSLASHimport] = ACTIONS(12361), + [anon_sym_BSLASHsubimport] = ACTIONS(12361), + [anon_sym_BSLASHinputfrom] = ACTIONS(12361), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12361), + [anon_sym_BSLASHincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHlabel] = ACTIONS(12361), + [anon_sym_BSLASHref] = ACTIONS(12361), + [anon_sym_BSLASHvref] = ACTIONS(12361), + [anon_sym_BSLASHVref] = ACTIONS(12361), + [anon_sym_BSLASHautoref] = ACTIONS(12361), + [anon_sym_BSLASHpageref] = ACTIONS(12361), + [anon_sym_BSLASHcref] = ACTIONS(12361), + [anon_sym_BSLASHCref] = ACTIONS(12361), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnameCref] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHlabelcref] = ACTIONS(12361), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12361), + [anon_sym_BSLASHeqref] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange] = ACTIONS(12361), + [anon_sym_BSLASHCrefrange] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewlabel] = ACTIONS(12361), + [anon_sym_BSLASHnewcommand] = ACTIONS(12361), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12361), + [anon_sym_BSLASHgls] = ACTIONS(12361), + [anon_sym_BSLASHGls] = ACTIONS(12361), + [anon_sym_BSLASHGLS] = ACTIONS(12361), + [anon_sym_BSLASHglspl] = ACTIONS(12361), + [anon_sym_BSLASHGlspl] = ACTIONS(12361), + [anon_sym_BSLASHGLSpl] = ACTIONS(12361), + [anon_sym_BSLASHglsdisp] = ACTIONS(12361), + [anon_sym_BSLASHglslink] = ACTIONS(12361), + [anon_sym_BSLASHglstext] = ACTIONS(12361), + [anon_sym_BSLASHGlstext] = ACTIONS(12361), + [anon_sym_BSLASHGLStext] = ACTIONS(12361), + [anon_sym_BSLASHglsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12361), + [anon_sym_BSLASHglsplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSplural] = ACTIONS(12361), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHglsname] = ACTIONS(12361), + [anon_sym_BSLASHGlsname] = ACTIONS(12361), + [anon_sym_BSLASHGLSname] = ACTIONS(12361), + [anon_sym_BSLASHglssymbol] = ACTIONS(12361), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12361), + [anon_sym_BSLASHglsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12361), + [anon_sym_BSLASHglsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12361), + [anon_sym_BSLASHglsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12361), + [anon_sym_BSLASHglsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12361), + [anon_sym_BSLASHglsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12361), + [anon_sym_BSLASHnewacronym] = ACTIONS(12361), + [anon_sym_BSLASHacrshort] = ACTIONS(12361), + [anon_sym_BSLASHAcrshort] = ACTIONS(12361), + [anon_sym_BSLASHACRshort] = ACTIONS(12361), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12361), + [anon_sym_BSLASHacrlong] = ACTIONS(12361), + [anon_sym_BSLASHAcrlong] = ACTIONS(12361), + [anon_sym_BSLASHACRlong] = ACTIONS(12361), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12361), + [anon_sym_BSLASHacrfull] = ACTIONS(12361), + [anon_sym_BSLASHAcrfull] = ACTIONS(12361), + [anon_sym_BSLASHACRfull] = ACTIONS(12361), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12361), + [anon_sym_BSLASHacs] = ACTIONS(12361), + [anon_sym_BSLASHAcs] = ACTIONS(12361), + [anon_sym_BSLASHacsp] = ACTIONS(12361), + [anon_sym_BSLASHAcsp] = ACTIONS(12361), + [anon_sym_BSLASHacl] = ACTIONS(12361), + [anon_sym_BSLASHAcl] = ACTIONS(12361), + [anon_sym_BSLASHaclp] = ACTIONS(12361), + [anon_sym_BSLASHAclp] = ACTIONS(12361), + [anon_sym_BSLASHacf] = ACTIONS(12361), + [anon_sym_BSLASHAcf] = ACTIONS(12361), + [anon_sym_BSLASHacfp] = ACTIONS(12361), + [anon_sym_BSLASHAcfp] = ACTIONS(12361), + [anon_sym_BSLASHac] = ACTIONS(12361), + [anon_sym_BSLASHAc] = ACTIONS(12361), + [anon_sym_BSLASHacp] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12361), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12361), + [anon_sym_BSLASHcolor] = ACTIONS(12361), + [anon_sym_BSLASHcolorbox] = ACTIONS(12361), + [anon_sym_BSLASHtextcolor] = ACTIONS(12361), + [anon_sym_BSLASHpagecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12361), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12361), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12361), + }, + [1556] = { + [sym_generic_command_name] = ACTIONS(12369), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12369), + [aux_sym_subparagraph_token1] = ACTIONS(12369), + [anon_sym_BSLASHitem] = ACTIONS(12369), + [anon_sym_LBRACK] = ACTIONS(12367), + [anon_sym_RBRACK] = ACTIONS(12367), + [anon_sym_LBRACE] = ACTIONS(12367), + [anon_sym_RBRACE] = ACTIONS(12367), + [anon_sym_LPAREN] = ACTIONS(12367), + [anon_sym_COMMA] = ACTIONS(12367), + [anon_sym_EQ] = ACTIONS(12367), + [sym_word] = ACTIONS(12367), + [sym_param] = ACTIONS(12367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12367), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12367), + [anon_sym_DOLLAR] = ACTIONS(12369), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12367), + [anon_sym_BSLASHbegin] = ACTIONS(12369), + [anon_sym_BSLASHcaption] = ACTIONS(12369), + [anon_sym_BSLASHcite] = ACTIONS(12369), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCite] = ACTIONS(12369), + [anon_sym_BSLASHnocite] = ACTIONS(12369), + [anon_sym_BSLASHcitet] = ACTIONS(12369), + [anon_sym_BSLASHcitep] = ACTIONS(12369), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteauthor] = ACTIONS(12369), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12369), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitetitle] = ACTIONS(12369), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteyear] = ACTIONS(12369), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitedate] = ACTIONS(12369), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteurl] = ACTIONS(12369), + [anon_sym_BSLASHfullcite] = ACTIONS(12369), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12369), + [anon_sym_BSLASHcitealt] = ACTIONS(12369), + [anon_sym_BSLASHcitealp] = ACTIONS(12369), + [anon_sym_BSLASHcitetext] = ACTIONS(12369), + [anon_sym_BSLASHparencite] = ACTIONS(12369), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHParencite] = ACTIONS(12369), + [anon_sym_BSLASHfootcite] = ACTIONS(12369), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12369), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12369), + [anon_sym_BSLASHtextcite] = ACTIONS(12369), + [anon_sym_BSLASHTextcite] = ACTIONS(12369), + [anon_sym_BSLASHsmartcite] = ACTIONS(12369), + [anon_sym_BSLASHSmartcite] = ACTIONS(12369), + [anon_sym_BSLASHsupercite] = ACTIONS(12369), + [anon_sym_BSLASHautocite] = ACTIONS(12369), + [anon_sym_BSLASHAutocite] = ACTIONS(12369), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHvolcite] = ACTIONS(12369), + [anon_sym_BSLASHVolcite] = ACTIONS(12369), + [anon_sym_BSLASHpvolcite] = ACTIONS(12369), + [anon_sym_BSLASHPvolcite] = ACTIONS(12369), + [anon_sym_BSLASHfvolcite] = ACTIONS(12369), + [anon_sym_BSLASHftvolcite] = ACTIONS(12369), + [anon_sym_BSLASHsvolcite] = ACTIONS(12369), + [anon_sym_BSLASHSvolcite] = ACTIONS(12369), + [anon_sym_BSLASHtvolcite] = ACTIONS(12369), + [anon_sym_BSLASHTvolcite] = ACTIONS(12369), + [anon_sym_BSLASHavolcite] = ACTIONS(12369), + [anon_sym_BSLASHAvolcite] = ACTIONS(12369), + [anon_sym_BSLASHnotecite] = ACTIONS(12369), + [anon_sym_BSLASHpnotecite] = ACTIONS(12369), + [anon_sym_BSLASHPnotecite] = ACTIONS(12369), + [anon_sym_BSLASHfnotecite] = ACTIONS(12369), + [anon_sym_BSLASHusepackage] = ACTIONS(12369), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12369), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12369), + [anon_sym_BSLASHinclude] = ACTIONS(12369), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12369), + [anon_sym_BSLASHinput] = ACTIONS(12369), + [anon_sym_BSLASHsubfile] = ACTIONS(12369), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12369), + [anon_sym_BSLASHbibliography] = ACTIONS(12369), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12369), + [anon_sym_BSLASHincludesvg] = ACTIONS(12369), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12369), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12369), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12369), + [anon_sym_BSLASHimport] = ACTIONS(12369), + [anon_sym_BSLASHsubimport] = ACTIONS(12369), + [anon_sym_BSLASHinputfrom] = ACTIONS(12369), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12369), + [anon_sym_BSLASHincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHlabel] = ACTIONS(12369), + [anon_sym_BSLASHref] = ACTIONS(12369), + [anon_sym_BSLASHvref] = ACTIONS(12369), + [anon_sym_BSLASHVref] = ACTIONS(12369), + [anon_sym_BSLASHautoref] = ACTIONS(12369), + [anon_sym_BSLASHpageref] = ACTIONS(12369), + [anon_sym_BSLASHcref] = ACTIONS(12369), + [anon_sym_BSLASHCref] = ACTIONS(12369), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnameCref] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHlabelcref] = ACTIONS(12369), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12369), + [anon_sym_BSLASHeqref] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange] = ACTIONS(12369), + [anon_sym_BSLASHCrefrange] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewlabel] = ACTIONS(12369), + [anon_sym_BSLASHnewcommand] = ACTIONS(12369), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12369), + [anon_sym_BSLASHgls] = ACTIONS(12369), + [anon_sym_BSLASHGls] = ACTIONS(12369), + [anon_sym_BSLASHGLS] = ACTIONS(12369), + [anon_sym_BSLASHglspl] = ACTIONS(12369), + [anon_sym_BSLASHGlspl] = ACTIONS(12369), + [anon_sym_BSLASHGLSpl] = ACTIONS(12369), + [anon_sym_BSLASHglsdisp] = ACTIONS(12369), + [anon_sym_BSLASHglslink] = ACTIONS(12369), + [anon_sym_BSLASHglstext] = ACTIONS(12369), + [anon_sym_BSLASHGlstext] = ACTIONS(12369), + [anon_sym_BSLASHGLStext] = ACTIONS(12369), + [anon_sym_BSLASHglsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12369), + [anon_sym_BSLASHglsplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSplural] = ACTIONS(12369), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHglsname] = ACTIONS(12369), + [anon_sym_BSLASHGlsname] = ACTIONS(12369), + [anon_sym_BSLASHGLSname] = ACTIONS(12369), + [anon_sym_BSLASHglssymbol] = ACTIONS(12369), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12369), + [anon_sym_BSLASHglsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12369), + [anon_sym_BSLASHglsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12369), + [anon_sym_BSLASHglsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12369), + [anon_sym_BSLASHglsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12369), + [anon_sym_BSLASHglsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12369), + [anon_sym_BSLASHnewacronym] = ACTIONS(12369), + [anon_sym_BSLASHacrshort] = ACTIONS(12369), + [anon_sym_BSLASHAcrshort] = ACTIONS(12369), + [anon_sym_BSLASHACRshort] = ACTIONS(12369), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12369), + [anon_sym_BSLASHacrlong] = ACTIONS(12369), + [anon_sym_BSLASHAcrlong] = ACTIONS(12369), + [anon_sym_BSLASHACRlong] = ACTIONS(12369), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12369), + [anon_sym_BSLASHacrfull] = ACTIONS(12369), + [anon_sym_BSLASHAcrfull] = ACTIONS(12369), + [anon_sym_BSLASHACRfull] = ACTIONS(12369), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12369), + [anon_sym_BSLASHacs] = ACTIONS(12369), + [anon_sym_BSLASHAcs] = ACTIONS(12369), + [anon_sym_BSLASHacsp] = ACTIONS(12369), + [anon_sym_BSLASHAcsp] = ACTIONS(12369), + [anon_sym_BSLASHacl] = ACTIONS(12369), + [anon_sym_BSLASHAcl] = ACTIONS(12369), + [anon_sym_BSLASHaclp] = ACTIONS(12369), + [anon_sym_BSLASHAclp] = ACTIONS(12369), + [anon_sym_BSLASHacf] = ACTIONS(12369), + [anon_sym_BSLASHAcf] = ACTIONS(12369), + [anon_sym_BSLASHacfp] = ACTIONS(12369), + [anon_sym_BSLASHAcfp] = ACTIONS(12369), + [anon_sym_BSLASHac] = ACTIONS(12369), + [anon_sym_BSLASHAc] = ACTIONS(12369), + [anon_sym_BSLASHacp] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12369), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12369), + [anon_sym_BSLASHcolor] = ACTIONS(12369), + [anon_sym_BSLASHcolorbox] = ACTIONS(12369), + [anon_sym_BSLASHtextcolor] = ACTIONS(12369), + [anon_sym_BSLASHpagecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12369), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12369), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12369), + }, + [1557] = { + [sym_generic_command_name] = ACTIONS(12373), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12373), + [aux_sym_subparagraph_token1] = ACTIONS(12373), + [anon_sym_BSLASHitem] = ACTIONS(12373), + [anon_sym_LBRACK] = ACTIONS(12371), + [anon_sym_RBRACK] = ACTIONS(12371), + [anon_sym_LBRACE] = ACTIONS(12371), + [anon_sym_RBRACE] = ACTIONS(12371), + [anon_sym_LPAREN] = ACTIONS(12371), + [anon_sym_COMMA] = ACTIONS(12371), + [anon_sym_EQ] = ACTIONS(12371), + [sym_word] = ACTIONS(12371), + [sym_param] = ACTIONS(12371), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12371), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12371), + [anon_sym_DOLLAR] = ACTIONS(12373), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12371), + [anon_sym_BSLASHbegin] = ACTIONS(12373), + [anon_sym_BSLASHcaption] = ACTIONS(12373), + [anon_sym_BSLASHcite] = ACTIONS(12373), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCite] = ACTIONS(12373), + [anon_sym_BSLASHnocite] = ACTIONS(12373), + [anon_sym_BSLASHcitet] = ACTIONS(12373), + [anon_sym_BSLASHcitep] = ACTIONS(12373), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteauthor] = ACTIONS(12373), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12373), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitetitle] = ACTIONS(12373), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteyear] = ACTIONS(12373), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitedate] = ACTIONS(12373), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteurl] = ACTIONS(12373), + [anon_sym_BSLASHfullcite] = ACTIONS(12373), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12373), + [anon_sym_BSLASHcitealt] = ACTIONS(12373), + [anon_sym_BSLASHcitealp] = ACTIONS(12373), + [anon_sym_BSLASHcitetext] = ACTIONS(12373), + [anon_sym_BSLASHparencite] = ACTIONS(12373), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHParencite] = ACTIONS(12373), + [anon_sym_BSLASHfootcite] = ACTIONS(12373), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12373), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12373), + [anon_sym_BSLASHtextcite] = ACTIONS(12373), + [anon_sym_BSLASHTextcite] = ACTIONS(12373), + [anon_sym_BSLASHsmartcite] = ACTIONS(12373), + [anon_sym_BSLASHSmartcite] = ACTIONS(12373), + [anon_sym_BSLASHsupercite] = ACTIONS(12373), + [anon_sym_BSLASHautocite] = ACTIONS(12373), + [anon_sym_BSLASHAutocite] = ACTIONS(12373), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHvolcite] = ACTIONS(12373), + [anon_sym_BSLASHVolcite] = ACTIONS(12373), + [anon_sym_BSLASHpvolcite] = ACTIONS(12373), + [anon_sym_BSLASHPvolcite] = ACTIONS(12373), + [anon_sym_BSLASHfvolcite] = ACTIONS(12373), + [anon_sym_BSLASHftvolcite] = ACTIONS(12373), + [anon_sym_BSLASHsvolcite] = ACTIONS(12373), + [anon_sym_BSLASHSvolcite] = ACTIONS(12373), + [anon_sym_BSLASHtvolcite] = ACTIONS(12373), + [anon_sym_BSLASHTvolcite] = ACTIONS(12373), + [anon_sym_BSLASHavolcite] = ACTIONS(12373), + [anon_sym_BSLASHAvolcite] = ACTIONS(12373), + [anon_sym_BSLASHnotecite] = ACTIONS(12373), + [anon_sym_BSLASHpnotecite] = ACTIONS(12373), + [anon_sym_BSLASHPnotecite] = ACTIONS(12373), + [anon_sym_BSLASHfnotecite] = ACTIONS(12373), + [anon_sym_BSLASHusepackage] = ACTIONS(12373), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12373), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12373), + [anon_sym_BSLASHinclude] = ACTIONS(12373), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12373), + [anon_sym_BSLASHinput] = ACTIONS(12373), + [anon_sym_BSLASHsubfile] = ACTIONS(12373), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12373), + [anon_sym_BSLASHbibliography] = ACTIONS(12373), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12373), + [anon_sym_BSLASHincludesvg] = ACTIONS(12373), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12373), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12373), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12373), + [anon_sym_BSLASHimport] = ACTIONS(12373), + [anon_sym_BSLASHsubimport] = ACTIONS(12373), + [anon_sym_BSLASHinputfrom] = ACTIONS(12373), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12373), + [anon_sym_BSLASHincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHlabel] = ACTIONS(12373), + [anon_sym_BSLASHref] = ACTIONS(12373), + [anon_sym_BSLASHvref] = ACTIONS(12373), + [anon_sym_BSLASHVref] = ACTIONS(12373), + [anon_sym_BSLASHautoref] = ACTIONS(12373), + [anon_sym_BSLASHpageref] = ACTIONS(12373), + [anon_sym_BSLASHcref] = ACTIONS(12373), + [anon_sym_BSLASHCref] = ACTIONS(12373), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnameCref] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHlabelcref] = ACTIONS(12373), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12373), + [anon_sym_BSLASHeqref] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange] = ACTIONS(12373), + [anon_sym_BSLASHCrefrange] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewlabel] = ACTIONS(12373), + [anon_sym_BSLASHnewcommand] = ACTIONS(12373), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12373), + [anon_sym_BSLASHgls] = ACTIONS(12373), + [anon_sym_BSLASHGls] = ACTIONS(12373), + [anon_sym_BSLASHGLS] = ACTIONS(12373), + [anon_sym_BSLASHglspl] = ACTIONS(12373), + [anon_sym_BSLASHGlspl] = ACTIONS(12373), + [anon_sym_BSLASHGLSpl] = ACTIONS(12373), + [anon_sym_BSLASHglsdisp] = ACTIONS(12373), + [anon_sym_BSLASHglslink] = ACTIONS(12373), + [anon_sym_BSLASHglstext] = ACTIONS(12373), + [anon_sym_BSLASHGlstext] = ACTIONS(12373), + [anon_sym_BSLASHGLStext] = ACTIONS(12373), + [anon_sym_BSLASHglsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12373), + [anon_sym_BSLASHglsplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSplural] = ACTIONS(12373), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHglsname] = ACTIONS(12373), + [anon_sym_BSLASHGlsname] = ACTIONS(12373), + [anon_sym_BSLASHGLSname] = ACTIONS(12373), + [anon_sym_BSLASHglssymbol] = ACTIONS(12373), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12373), + [anon_sym_BSLASHglsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12373), + [anon_sym_BSLASHglsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12373), + [anon_sym_BSLASHglsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12373), + [anon_sym_BSLASHglsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12373), + [anon_sym_BSLASHglsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12373), + [anon_sym_BSLASHnewacronym] = ACTIONS(12373), + [anon_sym_BSLASHacrshort] = ACTIONS(12373), + [anon_sym_BSLASHAcrshort] = ACTIONS(12373), + [anon_sym_BSLASHACRshort] = ACTIONS(12373), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12373), + [anon_sym_BSLASHacrlong] = ACTIONS(12373), + [anon_sym_BSLASHAcrlong] = ACTIONS(12373), + [anon_sym_BSLASHACRlong] = ACTIONS(12373), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12373), + [anon_sym_BSLASHacrfull] = ACTIONS(12373), + [anon_sym_BSLASHAcrfull] = ACTIONS(12373), + [anon_sym_BSLASHACRfull] = ACTIONS(12373), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12373), + [anon_sym_BSLASHacs] = ACTIONS(12373), + [anon_sym_BSLASHAcs] = ACTIONS(12373), + [anon_sym_BSLASHacsp] = ACTIONS(12373), + [anon_sym_BSLASHAcsp] = ACTIONS(12373), + [anon_sym_BSLASHacl] = ACTIONS(12373), + [anon_sym_BSLASHAcl] = ACTIONS(12373), + [anon_sym_BSLASHaclp] = ACTIONS(12373), + [anon_sym_BSLASHAclp] = ACTIONS(12373), + [anon_sym_BSLASHacf] = ACTIONS(12373), + [anon_sym_BSLASHAcf] = ACTIONS(12373), + [anon_sym_BSLASHacfp] = ACTIONS(12373), + [anon_sym_BSLASHAcfp] = ACTIONS(12373), + [anon_sym_BSLASHac] = ACTIONS(12373), + [anon_sym_BSLASHAc] = ACTIONS(12373), + [anon_sym_BSLASHacp] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12373), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12373), + [anon_sym_BSLASHcolor] = ACTIONS(12373), + [anon_sym_BSLASHcolorbox] = ACTIONS(12373), + [anon_sym_BSLASHtextcolor] = ACTIONS(12373), + [anon_sym_BSLASHpagecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12373), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12373), + }, + [1558] = { + [sym_generic_command_name] = ACTIONS(12377), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12377), + [aux_sym_subparagraph_token1] = ACTIONS(12377), + [anon_sym_BSLASHitem] = ACTIONS(12377), + [anon_sym_LBRACK] = ACTIONS(12375), + [anon_sym_RBRACK] = ACTIONS(12375), + [anon_sym_LBRACE] = ACTIONS(12375), + [anon_sym_RBRACE] = ACTIONS(12375), + [anon_sym_LPAREN] = ACTIONS(12375), + [anon_sym_COMMA] = ACTIONS(12375), + [anon_sym_EQ] = ACTIONS(12375), + [sym_word] = ACTIONS(12375), + [sym_param] = ACTIONS(12375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12375), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12375), + [anon_sym_DOLLAR] = ACTIONS(12377), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12375), + [anon_sym_BSLASHbegin] = ACTIONS(12377), + [anon_sym_BSLASHcaption] = ACTIONS(12377), + [anon_sym_BSLASHcite] = ACTIONS(12377), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCite] = ACTIONS(12377), + [anon_sym_BSLASHnocite] = ACTIONS(12377), + [anon_sym_BSLASHcitet] = ACTIONS(12377), + [anon_sym_BSLASHcitep] = ACTIONS(12377), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteauthor] = ACTIONS(12377), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12377), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitetitle] = ACTIONS(12377), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteyear] = ACTIONS(12377), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitedate] = ACTIONS(12377), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteurl] = ACTIONS(12377), + [anon_sym_BSLASHfullcite] = ACTIONS(12377), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12377), + [anon_sym_BSLASHcitealt] = ACTIONS(12377), + [anon_sym_BSLASHcitealp] = ACTIONS(12377), + [anon_sym_BSLASHcitetext] = ACTIONS(12377), + [anon_sym_BSLASHparencite] = ACTIONS(12377), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHParencite] = ACTIONS(12377), + [anon_sym_BSLASHfootcite] = ACTIONS(12377), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12377), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12377), + [anon_sym_BSLASHtextcite] = ACTIONS(12377), + [anon_sym_BSLASHTextcite] = ACTIONS(12377), + [anon_sym_BSLASHsmartcite] = ACTIONS(12377), + [anon_sym_BSLASHSmartcite] = ACTIONS(12377), + [anon_sym_BSLASHsupercite] = ACTIONS(12377), + [anon_sym_BSLASHautocite] = ACTIONS(12377), + [anon_sym_BSLASHAutocite] = ACTIONS(12377), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHvolcite] = ACTIONS(12377), + [anon_sym_BSLASHVolcite] = ACTIONS(12377), + [anon_sym_BSLASHpvolcite] = ACTIONS(12377), + [anon_sym_BSLASHPvolcite] = ACTIONS(12377), + [anon_sym_BSLASHfvolcite] = ACTIONS(12377), + [anon_sym_BSLASHftvolcite] = ACTIONS(12377), + [anon_sym_BSLASHsvolcite] = ACTIONS(12377), + [anon_sym_BSLASHSvolcite] = ACTIONS(12377), + [anon_sym_BSLASHtvolcite] = ACTIONS(12377), + [anon_sym_BSLASHTvolcite] = ACTIONS(12377), + [anon_sym_BSLASHavolcite] = ACTIONS(12377), + [anon_sym_BSLASHAvolcite] = ACTIONS(12377), + [anon_sym_BSLASHnotecite] = ACTIONS(12377), + [anon_sym_BSLASHpnotecite] = ACTIONS(12377), + [anon_sym_BSLASHPnotecite] = ACTIONS(12377), + [anon_sym_BSLASHfnotecite] = ACTIONS(12377), + [anon_sym_BSLASHusepackage] = ACTIONS(12377), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12377), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12377), + [anon_sym_BSLASHinclude] = ACTIONS(12377), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12377), + [anon_sym_BSLASHinput] = ACTIONS(12377), + [anon_sym_BSLASHsubfile] = ACTIONS(12377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12377), + [anon_sym_BSLASHbibliography] = ACTIONS(12377), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12377), + [anon_sym_BSLASHincludesvg] = ACTIONS(12377), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12377), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12377), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12377), + [anon_sym_BSLASHimport] = ACTIONS(12377), + [anon_sym_BSLASHsubimport] = ACTIONS(12377), + [anon_sym_BSLASHinputfrom] = ACTIONS(12377), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12377), + [anon_sym_BSLASHincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHlabel] = ACTIONS(12377), + [anon_sym_BSLASHref] = ACTIONS(12377), + [anon_sym_BSLASHvref] = ACTIONS(12377), + [anon_sym_BSLASHVref] = ACTIONS(12377), + [anon_sym_BSLASHautoref] = ACTIONS(12377), + [anon_sym_BSLASHpageref] = ACTIONS(12377), + [anon_sym_BSLASHcref] = ACTIONS(12377), + [anon_sym_BSLASHCref] = ACTIONS(12377), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnameCref] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHlabelcref] = ACTIONS(12377), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12377), + [anon_sym_BSLASHeqref] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange] = ACTIONS(12377), + [anon_sym_BSLASHCrefrange] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewlabel] = ACTIONS(12377), + [anon_sym_BSLASHnewcommand] = ACTIONS(12377), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12377), + [anon_sym_BSLASHgls] = ACTIONS(12377), + [anon_sym_BSLASHGls] = ACTIONS(12377), + [anon_sym_BSLASHGLS] = ACTIONS(12377), + [anon_sym_BSLASHglspl] = ACTIONS(12377), + [anon_sym_BSLASHGlspl] = ACTIONS(12377), + [anon_sym_BSLASHGLSpl] = ACTIONS(12377), + [anon_sym_BSLASHglsdisp] = ACTIONS(12377), + [anon_sym_BSLASHglslink] = ACTIONS(12377), + [anon_sym_BSLASHglstext] = ACTIONS(12377), + [anon_sym_BSLASHGlstext] = ACTIONS(12377), + [anon_sym_BSLASHGLStext] = ACTIONS(12377), + [anon_sym_BSLASHglsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12377), + [anon_sym_BSLASHglsplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSplural] = ACTIONS(12377), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHglsname] = ACTIONS(12377), + [anon_sym_BSLASHGlsname] = ACTIONS(12377), + [anon_sym_BSLASHGLSname] = ACTIONS(12377), + [anon_sym_BSLASHglssymbol] = ACTIONS(12377), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12377), + [anon_sym_BSLASHglsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12377), + [anon_sym_BSLASHglsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12377), + [anon_sym_BSLASHglsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12377), + [anon_sym_BSLASHglsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12377), + [anon_sym_BSLASHglsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12377), + [anon_sym_BSLASHnewacronym] = ACTIONS(12377), + [anon_sym_BSLASHacrshort] = ACTIONS(12377), + [anon_sym_BSLASHAcrshort] = ACTIONS(12377), + [anon_sym_BSLASHACRshort] = ACTIONS(12377), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12377), + [anon_sym_BSLASHacrlong] = ACTIONS(12377), + [anon_sym_BSLASHAcrlong] = ACTIONS(12377), + [anon_sym_BSLASHACRlong] = ACTIONS(12377), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12377), + [anon_sym_BSLASHacrfull] = ACTIONS(12377), + [anon_sym_BSLASHAcrfull] = ACTIONS(12377), + [anon_sym_BSLASHACRfull] = ACTIONS(12377), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12377), + [anon_sym_BSLASHacs] = ACTIONS(12377), + [anon_sym_BSLASHAcs] = ACTIONS(12377), + [anon_sym_BSLASHacsp] = ACTIONS(12377), + [anon_sym_BSLASHAcsp] = ACTIONS(12377), + [anon_sym_BSLASHacl] = ACTIONS(12377), + [anon_sym_BSLASHAcl] = ACTIONS(12377), + [anon_sym_BSLASHaclp] = ACTIONS(12377), + [anon_sym_BSLASHAclp] = ACTIONS(12377), + [anon_sym_BSLASHacf] = ACTIONS(12377), + [anon_sym_BSLASHAcf] = ACTIONS(12377), + [anon_sym_BSLASHacfp] = ACTIONS(12377), + [anon_sym_BSLASHAcfp] = ACTIONS(12377), + [anon_sym_BSLASHac] = ACTIONS(12377), + [anon_sym_BSLASHAc] = ACTIONS(12377), + [anon_sym_BSLASHacp] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12377), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12377), + [anon_sym_BSLASHcolor] = ACTIONS(12377), + [anon_sym_BSLASHcolorbox] = ACTIONS(12377), + [anon_sym_BSLASHtextcolor] = ACTIONS(12377), + [anon_sym_BSLASHpagecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12377), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12377), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12377), + }, + [1559] = { + [sym_generic_command_name] = ACTIONS(12381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12381), + [aux_sym_subparagraph_token1] = ACTIONS(12381), + [anon_sym_BSLASHitem] = ACTIONS(12381), + [anon_sym_LBRACK] = ACTIONS(12379), + [anon_sym_RBRACK] = ACTIONS(12379), + [anon_sym_LBRACE] = ACTIONS(12379), + [anon_sym_RBRACE] = ACTIONS(12379), + [anon_sym_LPAREN] = ACTIONS(12379), + [anon_sym_COMMA] = ACTIONS(12379), + [anon_sym_EQ] = ACTIONS(12379), + [sym_word] = ACTIONS(12379), + [sym_param] = ACTIONS(12379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12379), + [anon_sym_DOLLAR] = ACTIONS(12381), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12379), + [anon_sym_BSLASHbegin] = ACTIONS(12381), + [anon_sym_BSLASHcaption] = ACTIONS(12381), + [anon_sym_BSLASHcite] = ACTIONS(12381), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCite] = ACTIONS(12381), + [anon_sym_BSLASHnocite] = ACTIONS(12381), + [anon_sym_BSLASHcitet] = ACTIONS(12381), + [anon_sym_BSLASHcitep] = ACTIONS(12381), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteauthor] = ACTIONS(12381), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12381), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitetitle] = ACTIONS(12381), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteyear] = ACTIONS(12381), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitedate] = ACTIONS(12381), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteurl] = ACTIONS(12381), + [anon_sym_BSLASHfullcite] = ACTIONS(12381), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12381), + [anon_sym_BSLASHcitealt] = ACTIONS(12381), + [anon_sym_BSLASHcitealp] = ACTIONS(12381), + [anon_sym_BSLASHcitetext] = ACTIONS(12381), + [anon_sym_BSLASHparencite] = ACTIONS(12381), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHParencite] = ACTIONS(12381), + [anon_sym_BSLASHfootcite] = ACTIONS(12381), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12381), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12381), + [anon_sym_BSLASHtextcite] = ACTIONS(12381), + [anon_sym_BSLASHTextcite] = ACTIONS(12381), + [anon_sym_BSLASHsmartcite] = ACTIONS(12381), + [anon_sym_BSLASHSmartcite] = ACTIONS(12381), + [anon_sym_BSLASHsupercite] = ACTIONS(12381), + [anon_sym_BSLASHautocite] = ACTIONS(12381), + [anon_sym_BSLASHAutocite] = ACTIONS(12381), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHvolcite] = ACTIONS(12381), + [anon_sym_BSLASHVolcite] = ACTIONS(12381), + [anon_sym_BSLASHpvolcite] = ACTIONS(12381), + [anon_sym_BSLASHPvolcite] = ACTIONS(12381), + [anon_sym_BSLASHfvolcite] = ACTIONS(12381), + [anon_sym_BSLASHftvolcite] = ACTIONS(12381), + [anon_sym_BSLASHsvolcite] = ACTIONS(12381), + [anon_sym_BSLASHSvolcite] = ACTIONS(12381), + [anon_sym_BSLASHtvolcite] = ACTIONS(12381), + [anon_sym_BSLASHTvolcite] = ACTIONS(12381), + [anon_sym_BSLASHavolcite] = ACTIONS(12381), + [anon_sym_BSLASHAvolcite] = ACTIONS(12381), + [anon_sym_BSLASHnotecite] = ACTIONS(12381), + [anon_sym_BSLASHpnotecite] = ACTIONS(12381), + [anon_sym_BSLASHPnotecite] = ACTIONS(12381), + [anon_sym_BSLASHfnotecite] = ACTIONS(12381), + [anon_sym_BSLASHusepackage] = ACTIONS(12381), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12381), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12381), + [anon_sym_BSLASHinclude] = ACTIONS(12381), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12381), + [anon_sym_BSLASHinput] = ACTIONS(12381), + [anon_sym_BSLASHsubfile] = ACTIONS(12381), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12381), + [anon_sym_BSLASHbibliography] = ACTIONS(12381), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12381), + [anon_sym_BSLASHincludesvg] = ACTIONS(12381), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12381), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12381), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12381), + [anon_sym_BSLASHimport] = ACTIONS(12381), + [anon_sym_BSLASHsubimport] = ACTIONS(12381), + [anon_sym_BSLASHinputfrom] = ACTIONS(12381), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12381), + [anon_sym_BSLASHincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHlabel] = ACTIONS(12381), + [anon_sym_BSLASHref] = ACTIONS(12381), + [anon_sym_BSLASHvref] = ACTIONS(12381), + [anon_sym_BSLASHVref] = ACTIONS(12381), + [anon_sym_BSLASHautoref] = ACTIONS(12381), + [anon_sym_BSLASHpageref] = ACTIONS(12381), + [anon_sym_BSLASHcref] = ACTIONS(12381), + [anon_sym_BSLASHCref] = ACTIONS(12381), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnameCref] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHlabelcref] = ACTIONS(12381), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12381), + [anon_sym_BSLASHeqref] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange] = ACTIONS(12381), + [anon_sym_BSLASHCrefrange] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewlabel] = ACTIONS(12381), + [anon_sym_BSLASHnewcommand] = ACTIONS(12381), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12381), + [anon_sym_BSLASHgls] = ACTIONS(12381), + [anon_sym_BSLASHGls] = ACTIONS(12381), + [anon_sym_BSLASHGLS] = ACTIONS(12381), + [anon_sym_BSLASHglspl] = ACTIONS(12381), + [anon_sym_BSLASHGlspl] = ACTIONS(12381), + [anon_sym_BSLASHGLSpl] = ACTIONS(12381), + [anon_sym_BSLASHglsdisp] = ACTIONS(12381), + [anon_sym_BSLASHglslink] = ACTIONS(12381), + [anon_sym_BSLASHglstext] = ACTIONS(12381), + [anon_sym_BSLASHGlstext] = ACTIONS(12381), + [anon_sym_BSLASHGLStext] = ACTIONS(12381), + [anon_sym_BSLASHglsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12381), + [anon_sym_BSLASHglsplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSplural] = ACTIONS(12381), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHglsname] = ACTIONS(12381), + [anon_sym_BSLASHGlsname] = ACTIONS(12381), + [anon_sym_BSLASHGLSname] = ACTIONS(12381), + [anon_sym_BSLASHglssymbol] = ACTIONS(12381), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12381), + [anon_sym_BSLASHglsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12381), + [anon_sym_BSLASHglsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12381), + [anon_sym_BSLASHglsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12381), + [anon_sym_BSLASHglsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12381), + [anon_sym_BSLASHglsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12381), + [anon_sym_BSLASHnewacronym] = ACTIONS(12381), + [anon_sym_BSLASHacrshort] = ACTIONS(12381), + [anon_sym_BSLASHAcrshort] = ACTIONS(12381), + [anon_sym_BSLASHACRshort] = ACTIONS(12381), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12381), + [anon_sym_BSLASHacrlong] = ACTIONS(12381), + [anon_sym_BSLASHAcrlong] = ACTIONS(12381), + [anon_sym_BSLASHACRlong] = ACTIONS(12381), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12381), + [anon_sym_BSLASHacrfull] = ACTIONS(12381), + [anon_sym_BSLASHAcrfull] = ACTIONS(12381), + [anon_sym_BSLASHACRfull] = ACTIONS(12381), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12381), + [anon_sym_BSLASHacs] = ACTIONS(12381), + [anon_sym_BSLASHAcs] = ACTIONS(12381), + [anon_sym_BSLASHacsp] = ACTIONS(12381), + [anon_sym_BSLASHAcsp] = ACTIONS(12381), + [anon_sym_BSLASHacl] = ACTIONS(12381), + [anon_sym_BSLASHAcl] = ACTIONS(12381), + [anon_sym_BSLASHaclp] = ACTIONS(12381), + [anon_sym_BSLASHAclp] = ACTIONS(12381), + [anon_sym_BSLASHacf] = ACTIONS(12381), + [anon_sym_BSLASHAcf] = ACTIONS(12381), + [anon_sym_BSLASHacfp] = ACTIONS(12381), + [anon_sym_BSLASHAcfp] = ACTIONS(12381), + [anon_sym_BSLASHac] = ACTIONS(12381), + [anon_sym_BSLASHAc] = ACTIONS(12381), + [anon_sym_BSLASHacp] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12381), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12381), + [anon_sym_BSLASHcolor] = ACTIONS(12381), + [anon_sym_BSLASHcolorbox] = ACTIONS(12381), + [anon_sym_BSLASHtextcolor] = ACTIONS(12381), + [anon_sym_BSLASHpagecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12381), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12381), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12381), + }, + [1560] = { + [sym_generic_command_name] = ACTIONS(12393), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12393), + [aux_sym_subparagraph_token1] = ACTIONS(12393), + [anon_sym_BSLASHitem] = ACTIONS(12393), + [anon_sym_LBRACK] = ACTIONS(12391), + [anon_sym_RBRACK] = ACTIONS(12391), + [anon_sym_LBRACE] = ACTIONS(12391), + [anon_sym_RBRACE] = ACTIONS(12391), + [anon_sym_LPAREN] = ACTIONS(12391), + [anon_sym_COMMA] = ACTIONS(12391), + [anon_sym_EQ] = ACTIONS(12391), + [sym_word] = ACTIONS(12391), + [sym_param] = ACTIONS(12391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12391), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12391), + [anon_sym_DOLLAR] = ACTIONS(12393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12391), + [anon_sym_BSLASHbegin] = ACTIONS(12393), + [anon_sym_BSLASHcaption] = ACTIONS(12393), + [anon_sym_BSLASHcite] = ACTIONS(12393), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCite] = ACTIONS(12393), + [anon_sym_BSLASHnocite] = ACTIONS(12393), + [anon_sym_BSLASHcitet] = ACTIONS(12393), + [anon_sym_BSLASHcitep] = ACTIONS(12393), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteauthor] = ACTIONS(12393), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12393), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitetitle] = ACTIONS(12393), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteyear] = ACTIONS(12393), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitedate] = ACTIONS(12393), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteurl] = ACTIONS(12393), + [anon_sym_BSLASHfullcite] = ACTIONS(12393), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12393), + [anon_sym_BSLASHcitealt] = ACTIONS(12393), + [anon_sym_BSLASHcitealp] = ACTIONS(12393), + [anon_sym_BSLASHcitetext] = ACTIONS(12393), + [anon_sym_BSLASHparencite] = ACTIONS(12393), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHParencite] = ACTIONS(12393), + [anon_sym_BSLASHfootcite] = ACTIONS(12393), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12393), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12393), + [anon_sym_BSLASHtextcite] = ACTIONS(12393), + [anon_sym_BSLASHTextcite] = ACTIONS(12393), + [anon_sym_BSLASHsmartcite] = ACTIONS(12393), + [anon_sym_BSLASHSmartcite] = ACTIONS(12393), + [anon_sym_BSLASHsupercite] = ACTIONS(12393), + [anon_sym_BSLASHautocite] = ACTIONS(12393), + [anon_sym_BSLASHAutocite] = ACTIONS(12393), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHvolcite] = ACTIONS(12393), + [anon_sym_BSLASHVolcite] = ACTIONS(12393), + [anon_sym_BSLASHpvolcite] = ACTIONS(12393), + [anon_sym_BSLASHPvolcite] = ACTIONS(12393), + [anon_sym_BSLASHfvolcite] = ACTIONS(12393), + [anon_sym_BSLASHftvolcite] = ACTIONS(12393), + [anon_sym_BSLASHsvolcite] = ACTIONS(12393), + [anon_sym_BSLASHSvolcite] = ACTIONS(12393), + [anon_sym_BSLASHtvolcite] = ACTIONS(12393), + [anon_sym_BSLASHTvolcite] = ACTIONS(12393), + [anon_sym_BSLASHavolcite] = ACTIONS(12393), + [anon_sym_BSLASHAvolcite] = ACTIONS(12393), + [anon_sym_BSLASHnotecite] = ACTIONS(12393), + [anon_sym_BSLASHpnotecite] = ACTIONS(12393), + [anon_sym_BSLASHPnotecite] = ACTIONS(12393), + [anon_sym_BSLASHfnotecite] = ACTIONS(12393), + [anon_sym_BSLASHusepackage] = ACTIONS(12393), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12393), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12393), + [anon_sym_BSLASHinclude] = ACTIONS(12393), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12393), + [anon_sym_BSLASHinput] = ACTIONS(12393), + [anon_sym_BSLASHsubfile] = ACTIONS(12393), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12393), + [anon_sym_BSLASHbibliography] = ACTIONS(12393), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12393), + [anon_sym_BSLASHincludesvg] = ACTIONS(12393), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12393), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12393), + [anon_sym_BSLASHimport] = ACTIONS(12393), + [anon_sym_BSLASHsubimport] = ACTIONS(12393), + [anon_sym_BSLASHinputfrom] = ACTIONS(12393), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12393), + [anon_sym_BSLASHincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHlabel] = ACTIONS(12393), + [anon_sym_BSLASHref] = ACTIONS(12393), + [anon_sym_BSLASHvref] = ACTIONS(12393), + [anon_sym_BSLASHVref] = ACTIONS(12393), + [anon_sym_BSLASHautoref] = ACTIONS(12393), + [anon_sym_BSLASHpageref] = ACTIONS(12393), + [anon_sym_BSLASHcref] = ACTIONS(12393), + [anon_sym_BSLASHCref] = ACTIONS(12393), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnameCref] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHlabelcref] = ACTIONS(12393), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12393), + [anon_sym_BSLASHeqref] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange] = ACTIONS(12393), + [anon_sym_BSLASHCrefrange] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewlabel] = ACTIONS(12393), + [anon_sym_BSLASHnewcommand] = ACTIONS(12393), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12393), + [anon_sym_BSLASHgls] = ACTIONS(12393), + [anon_sym_BSLASHGls] = ACTIONS(12393), + [anon_sym_BSLASHGLS] = ACTIONS(12393), + [anon_sym_BSLASHglspl] = ACTIONS(12393), + [anon_sym_BSLASHGlspl] = ACTIONS(12393), + [anon_sym_BSLASHGLSpl] = ACTIONS(12393), + [anon_sym_BSLASHglsdisp] = ACTIONS(12393), + [anon_sym_BSLASHglslink] = ACTIONS(12393), + [anon_sym_BSLASHglstext] = ACTIONS(12393), + [anon_sym_BSLASHGlstext] = ACTIONS(12393), + [anon_sym_BSLASHGLStext] = ACTIONS(12393), + [anon_sym_BSLASHglsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12393), + [anon_sym_BSLASHglsplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSplural] = ACTIONS(12393), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHglsname] = ACTIONS(12393), + [anon_sym_BSLASHGlsname] = ACTIONS(12393), + [anon_sym_BSLASHGLSname] = ACTIONS(12393), + [anon_sym_BSLASHglssymbol] = ACTIONS(12393), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12393), + [anon_sym_BSLASHglsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12393), + [anon_sym_BSLASHglsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12393), + [anon_sym_BSLASHglsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12393), + [anon_sym_BSLASHglsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12393), + [anon_sym_BSLASHglsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12393), + [anon_sym_BSLASHnewacronym] = ACTIONS(12393), + [anon_sym_BSLASHacrshort] = ACTIONS(12393), + [anon_sym_BSLASHAcrshort] = ACTIONS(12393), + [anon_sym_BSLASHACRshort] = ACTIONS(12393), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12393), + [anon_sym_BSLASHacrlong] = ACTIONS(12393), + [anon_sym_BSLASHAcrlong] = ACTIONS(12393), + [anon_sym_BSLASHACRlong] = ACTIONS(12393), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12393), + [anon_sym_BSLASHacrfull] = ACTIONS(12393), + [anon_sym_BSLASHAcrfull] = ACTIONS(12393), + [anon_sym_BSLASHACRfull] = ACTIONS(12393), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12393), + [anon_sym_BSLASHacs] = ACTIONS(12393), + [anon_sym_BSLASHAcs] = ACTIONS(12393), + [anon_sym_BSLASHacsp] = ACTIONS(12393), + [anon_sym_BSLASHAcsp] = ACTIONS(12393), + [anon_sym_BSLASHacl] = ACTIONS(12393), + [anon_sym_BSLASHAcl] = ACTIONS(12393), + [anon_sym_BSLASHaclp] = ACTIONS(12393), + [anon_sym_BSLASHAclp] = ACTIONS(12393), + [anon_sym_BSLASHacf] = ACTIONS(12393), + [anon_sym_BSLASHAcf] = ACTIONS(12393), + [anon_sym_BSLASHacfp] = ACTIONS(12393), + [anon_sym_BSLASHAcfp] = ACTIONS(12393), + [anon_sym_BSLASHac] = ACTIONS(12393), + [anon_sym_BSLASHAc] = ACTIONS(12393), + [anon_sym_BSLASHacp] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12393), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12393), + [anon_sym_BSLASHcolor] = ACTIONS(12393), + [anon_sym_BSLASHcolorbox] = ACTIONS(12393), + [anon_sym_BSLASHtextcolor] = ACTIONS(12393), + [anon_sym_BSLASHpagecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12393), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12393), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12393), + }, + [1561] = { + [sym_generic_command_name] = ACTIONS(12397), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12397), + [aux_sym_subparagraph_token1] = ACTIONS(12397), + [anon_sym_BSLASHitem] = ACTIONS(12397), + [anon_sym_LBRACK] = ACTIONS(12395), + [anon_sym_RBRACK] = ACTIONS(12395), + [anon_sym_LBRACE] = ACTIONS(12395), + [anon_sym_RBRACE] = ACTIONS(12395), + [anon_sym_LPAREN] = ACTIONS(12395), + [anon_sym_COMMA] = ACTIONS(12395), + [anon_sym_EQ] = ACTIONS(12395), + [sym_word] = ACTIONS(12395), + [sym_param] = ACTIONS(12395), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12395), + [anon_sym_DOLLAR] = ACTIONS(12397), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12395), + [anon_sym_BSLASHbegin] = ACTIONS(12397), + [anon_sym_BSLASHcaption] = ACTIONS(12397), + [anon_sym_BSLASHcite] = ACTIONS(12397), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCite] = ACTIONS(12397), + [anon_sym_BSLASHnocite] = ACTIONS(12397), + [anon_sym_BSLASHcitet] = ACTIONS(12397), + [anon_sym_BSLASHcitep] = ACTIONS(12397), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteauthor] = ACTIONS(12397), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12397), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitetitle] = ACTIONS(12397), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteyear] = ACTIONS(12397), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitedate] = ACTIONS(12397), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteurl] = ACTIONS(12397), + [anon_sym_BSLASHfullcite] = ACTIONS(12397), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12397), + [anon_sym_BSLASHcitealt] = ACTIONS(12397), + [anon_sym_BSLASHcitealp] = ACTIONS(12397), + [anon_sym_BSLASHcitetext] = ACTIONS(12397), + [anon_sym_BSLASHparencite] = ACTIONS(12397), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHParencite] = ACTIONS(12397), + [anon_sym_BSLASHfootcite] = ACTIONS(12397), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12397), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12397), + [anon_sym_BSLASHtextcite] = ACTIONS(12397), + [anon_sym_BSLASHTextcite] = ACTIONS(12397), + [anon_sym_BSLASHsmartcite] = ACTIONS(12397), + [anon_sym_BSLASHSmartcite] = ACTIONS(12397), + [anon_sym_BSLASHsupercite] = ACTIONS(12397), + [anon_sym_BSLASHautocite] = ACTIONS(12397), + [anon_sym_BSLASHAutocite] = ACTIONS(12397), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHvolcite] = ACTIONS(12397), + [anon_sym_BSLASHVolcite] = ACTIONS(12397), + [anon_sym_BSLASHpvolcite] = ACTIONS(12397), + [anon_sym_BSLASHPvolcite] = ACTIONS(12397), + [anon_sym_BSLASHfvolcite] = ACTIONS(12397), + [anon_sym_BSLASHftvolcite] = ACTIONS(12397), + [anon_sym_BSLASHsvolcite] = ACTIONS(12397), + [anon_sym_BSLASHSvolcite] = ACTIONS(12397), + [anon_sym_BSLASHtvolcite] = ACTIONS(12397), + [anon_sym_BSLASHTvolcite] = ACTIONS(12397), + [anon_sym_BSLASHavolcite] = ACTIONS(12397), + [anon_sym_BSLASHAvolcite] = ACTIONS(12397), + [anon_sym_BSLASHnotecite] = ACTIONS(12397), + [anon_sym_BSLASHpnotecite] = ACTIONS(12397), + [anon_sym_BSLASHPnotecite] = ACTIONS(12397), + [anon_sym_BSLASHfnotecite] = ACTIONS(12397), + [anon_sym_BSLASHusepackage] = ACTIONS(12397), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12397), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12397), + [anon_sym_BSLASHinclude] = ACTIONS(12397), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12397), + [anon_sym_BSLASHinput] = ACTIONS(12397), + [anon_sym_BSLASHsubfile] = ACTIONS(12397), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12397), + [anon_sym_BSLASHbibliography] = ACTIONS(12397), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12397), + [anon_sym_BSLASHincludesvg] = ACTIONS(12397), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12397), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12397), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12397), + [anon_sym_BSLASHimport] = ACTIONS(12397), + [anon_sym_BSLASHsubimport] = ACTIONS(12397), + [anon_sym_BSLASHinputfrom] = ACTIONS(12397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12397), + [anon_sym_BSLASHincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHlabel] = ACTIONS(12397), + [anon_sym_BSLASHref] = ACTIONS(12397), + [anon_sym_BSLASHvref] = ACTIONS(12397), + [anon_sym_BSLASHVref] = ACTIONS(12397), + [anon_sym_BSLASHautoref] = ACTIONS(12397), + [anon_sym_BSLASHpageref] = ACTIONS(12397), + [anon_sym_BSLASHcref] = ACTIONS(12397), + [anon_sym_BSLASHCref] = ACTIONS(12397), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnameCref] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHlabelcref] = ACTIONS(12397), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12397), + [anon_sym_BSLASHeqref] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange] = ACTIONS(12397), + [anon_sym_BSLASHCrefrange] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewlabel] = ACTIONS(12397), + [anon_sym_BSLASHnewcommand] = ACTIONS(12397), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12397), + [anon_sym_BSLASHgls] = ACTIONS(12397), + [anon_sym_BSLASHGls] = ACTIONS(12397), + [anon_sym_BSLASHGLS] = ACTIONS(12397), + [anon_sym_BSLASHglspl] = ACTIONS(12397), + [anon_sym_BSLASHGlspl] = ACTIONS(12397), + [anon_sym_BSLASHGLSpl] = ACTIONS(12397), + [anon_sym_BSLASHglsdisp] = ACTIONS(12397), + [anon_sym_BSLASHglslink] = ACTIONS(12397), + [anon_sym_BSLASHglstext] = ACTIONS(12397), + [anon_sym_BSLASHGlstext] = ACTIONS(12397), + [anon_sym_BSLASHGLStext] = ACTIONS(12397), + [anon_sym_BSLASHglsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12397), + [anon_sym_BSLASHglsplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSplural] = ACTIONS(12397), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHglsname] = ACTIONS(12397), + [anon_sym_BSLASHGlsname] = ACTIONS(12397), + [anon_sym_BSLASHGLSname] = ACTIONS(12397), + [anon_sym_BSLASHglssymbol] = ACTIONS(12397), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12397), + [anon_sym_BSLASHglsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12397), + [anon_sym_BSLASHglsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12397), + [anon_sym_BSLASHglsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12397), + [anon_sym_BSLASHglsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12397), + [anon_sym_BSLASHglsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12397), + [anon_sym_BSLASHnewacronym] = ACTIONS(12397), + [anon_sym_BSLASHacrshort] = ACTIONS(12397), + [anon_sym_BSLASHAcrshort] = ACTIONS(12397), + [anon_sym_BSLASHACRshort] = ACTIONS(12397), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12397), + [anon_sym_BSLASHacrlong] = ACTIONS(12397), + [anon_sym_BSLASHAcrlong] = ACTIONS(12397), + [anon_sym_BSLASHACRlong] = ACTIONS(12397), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12397), + [anon_sym_BSLASHacrfull] = ACTIONS(12397), + [anon_sym_BSLASHAcrfull] = ACTIONS(12397), + [anon_sym_BSLASHACRfull] = ACTIONS(12397), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12397), + [anon_sym_BSLASHacs] = ACTIONS(12397), + [anon_sym_BSLASHAcs] = ACTIONS(12397), + [anon_sym_BSLASHacsp] = ACTIONS(12397), + [anon_sym_BSLASHAcsp] = ACTIONS(12397), + [anon_sym_BSLASHacl] = ACTIONS(12397), + [anon_sym_BSLASHAcl] = ACTIONS(12397), + [anon_sym_BSLASHaclp] = ACTIONS(12397), + [anon_sym_BSLASHAclp] = ACTIONS(12397), + [anon_sym_BSLASHacf] = ACTIONS(12397), + [anon_sym_BSLASHAcf] = ACTIONS(12397), + [anon_sym_BSLASHacfp] = ACTIONS(12397), + [anon_sym_BSLASHAcfp] = ACTIONS(12397), + [anon_sym_BSLASHac] = ACTIONS(12397), + [anon_sym_BSLASHAc] = ACTIONS(12397), + [anon_sym_BSLASHacp] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12397), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12397), + [anon_sym_BSLASHcolor] = ACTIONS(12397), + [anon_sym_BSLASHcolorbox] = ACTIONS(12397), + [anon_sym_BSLASHtextcolor] = ACTIONS(12397), + [anon_sym_BSLASHpagecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12397), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12397), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12397), + }, + [1562] = { + [sym_generic_command_name] = ACTIONS(12401), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12401), + [aux_sym_subparagraph_token1] = ACTIONS(12401), + [anon_sym_BSLASHitem] = ACTIONS(12401), + [anon_sym_LBRACK] = ACTIONS(12399), + [anon_sym_RBRACK] = ACTIONS(12399), + [anon_sym_LBRACE] = ACTIONS(12399), + [anon_sym_RBRACE] = ACTIONS(12399), + [anon_sym_LPAREN] = ACTIONS(12399), + [anon_sym_COMMA] = ACTIONS(12399), + [anon_sym_EQ] = ACTIONS(12399), + [sym_word] = ACTIONS(12399), + [sym_param] = ACTIONS(12399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12399), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12399), + [anon_sym_DOLLAR] = ACTIONS(12401), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12399), + [anon_sym_BSLASHbegin] = ACTIONS(12401), + [anon_sym_BSLASHcaption] = ACTIONS(12401), + [anon_sym_BSLASHcite] = ACTIONS(12401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCite] = ACTIONS(12401), + [anon_sym_BSLASHnocite] = ACTIONS(12401), + [anon_sym_BSLASHcitet] = ACTIONS(12401), + [anon_sym_BSLASHcitep] = ACTIONS(12401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteauthor] = ACTIONS(12401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitetitle] = ACTIONS(12401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteyear] = ACTIONS(12401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitedate] = ACTIONS(12401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteurl] = ACTIONS(12401), + [anon_sym_BSLASHfullcite] = ACTIONS(12401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12401), + [anon_sym_BSLASHcitealt] = ACTIONS(12401), + [anon_sym_BSLASHcitealp] = ACTIONS(12401), + [anon_sym_BSLASHcitetext] = ACTIONS(12401), + [anon_sym_BSLASHparencite] = ACTIONS(12401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHParencite] = ACTIONS(12401), + [anon_sym_BSLASHfootcite] = ACTIONS(12401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12401), + [anon_sym_BSLASHtextcite] = ACTIONS(12401), + [anon_sym_BSLASHTextcite] = ACTIONS(12401), + [anon_sym_BSLASHsmartcite] = ACTIONS(12401), + [anon_sym_BSLASHSmartcite] = ACTIONS(12401), + [anon_sym_BSLASHsupercite] = ACTIONS(12401), + [anon_sym_BSLASHautocite] = ACTIONS(12401), + [anon_sym_BSLASHAutocite] = ACTIONS(12401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHvolcite] = ACTIONS(12401), + [anon_sym_BSLASHVolcite] = ACTIONS(12401), + [anon_sym_BSLASHpvolcite] = ACTIONS(12401), + [anon_sym_BSLASHPvolcite] = ACTIONS(12401), + [anon_sym_BSLASHfvolcite] = ACTIONS(12401), + [anon_sym_BSLASHftvolcite] = ACTIONS(12401), + [anon_sym_BSLASHsvolcite] = ACTIONS(12401), + [anon_sym_BSLASHSvolcite] = ACTIONS(12401), + [anon_sym_BSLASHtvolcite] = ACTIONS(12401), + [anon_sym_BSLASHTvolcite] = ACTIONS(12401), + [anon_sym_BSLASHavolcite] = ACTIONS(12401), + [anon_sym_BSLASHAvolcite] = ACTIONS(12401), + [anon_sym_BSLASHnotecite] = ACTIONS(12401), + [anon_sym_BSLASHpnotecite] = ACTIONS(12401), + [anon_sym_BSLASHPnotecite] = ACTIONS(12401), + [anon_sym_BSLASHfnotecite] = ACTIONS(12401), + [anon_sym_BSLASHusepackage] = ACTIONS(12401), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12401), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12401), + [anon_sym_BSLASHinclude] = ACTIONS(12401), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12401), + [anon_sym_BSLASHinput] = ACTIONS(12401), + [anon_sym_BSLASHsubfile] = ACTIONS(12401), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12401), + [anon_sym_BSLASHbibliography] = ACTIONS(12401), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12401), + [anon_sym_BSLASHincludesvg] = ACTIONS(12401), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12401), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12401), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12401), + [anon_sym_BSLASHimport] = ACTIONS(12401), + [anon_sym_BSLASHsubimport] = ACTIONS(12401), + [anon_sym_BSLASHinputfrom] = ACTIONS(12401), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12401), + [anon_sym_BSLASHincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHlabel] = ACTIONS(12401), + [anon_sym_BSLASHref] = ACTIONS(12401), + [anon_sym_BSLASHvref] = ACTIONS(12401), + [anon_sym_BSLASHVref] = ACTIONS(12401), + [anon_sym_BSLASHautoref] = ACTIONS(12401), + [anon_sym_BSLASHpageref] = ACTIONS(12401), + [anon_sym_BSLASHcref] = ACTIONS(12401), + [anon_sym_BSLASHCref] = ACTIONS(12401), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnameCref] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHlabelcref] = ACTIONS(12401), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12401), + [anon_sym_BSLASHeqref] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange] = ACTIONS(12401), + [anon_sym_BSLASHCrefrange] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewlabel] = ACTIONS(12401), + [anon_sym_BSLASHnewcommand] = ACTIONS(12401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12401), + [anon_sym_BSLASHgls] = ACTIONS(12401), + [anon_sym_BSLASHGls] = ACTIONS(12401), + [anon_sym_BSLASHGLS] = ACTIONS(12401), + [anon_sym_BSLASHglspl] = ACTIONS(12401), + [anon_sym_BSLASHGlspl] = ACTIONS(12401), + [anon_sym_BSLASHGLSpl] = ACTIONS(12401), + [anon_sym_BSLASHglsdisp] = ACTIONS(12401), + [anon_sym_BSLASHglslink] = ACTIONS(12401), + [anon_sym_BSLASHglstext] = ACTIONS(12401), + [anon_sym_BSLASHGlstext] = ACTIONS(12401), + [anon_sym_BSLASHGLStext] = ACTIONS(12401), + [anon_sym_BSLASHglsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12401), + [anon_sym_BSLASHglsplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSplural] = ACTIONS(12401), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHglsname] = ACTIONS(12401), + [anon_sym_BSLASHGlsname] = ACTIONS(12401), + [anon_sym_BSLASHGLSname] = ACTIONS(12401), + [anon_sym_BSLASHglssymbol] = ACTIONS(12401), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12401), + [anon_sym_BSLASHglsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12401), + [anon_sym_BSLASHglsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12401), + [anon_sym_BSLASHglsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12401), + [anon_sym_BSLASHglsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12401), + [anon_sym_BSLASHglsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12401), + [anon_sym_BSLASHnewacronym] = ACTIONS(12401), + [anon_sym_BSLASHacrshort] = ACTIONS(12401), + [anon_sym_BSLASHAcrshort] = ACTIONS(12401), + [anon_sym_BSLASHACRshort] = ACTIONS(12401), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12401), + [anon_sym_BSLASHacrlong] = ACTIONS(12401), + [anon_sym_BSLASHAcrlong] = ACTIONS(12401), + [anon_sym_BSLASHACRlong] = ACTIONS(12401), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12401), + [anon_sym_BSLASHacrfull] = ACTIONS(12401), + [anon_sym_BSLASHAcrfull] = ACTIONS(12401), + [anon_sym_BSLASHACRfull] = ACTIONS(12401), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12401), + [anon_sym_BSLASHacs] = ACTIONS(12401), + [anon_sym_BSLASHAcs] = ACTIONS(12401), + [anon_sym_BSLASHacsp] = ACTIONS(12401), + [anon_sym_BSLASHAcsp] = ACTIONS(12401), + [anon_sym_BSLASHacl] = ACTIONS(12401), + [anon_sym_BSLASHAcl] = ACTIONS(12401), + [anon_sym_BSLASHaclp] = ACTIONS(12401), + [anon_sym_BSLASHAclp] = ACTIONS(12401), + [anon_sym_BSLASHacf] = ACTIONS(12401), + [anon_sym_BSLASHAcf] = ACTIONS(12401), + [anon_sym_BSLASHacfp] = ACTIONS(12401), + [anon_sym_BSLASHAcfp] = ACTIONS(12401), + [anon_sym_BSLASHac] = ACTIONS(12401), + [anon_sym_BSLASHAc] = ACTIONS(12401), + [anon_sym_BSLASHacp] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12401), + [anon_sym_BSLASHcolor] = ACTIONS(12401), + [anon_sym_BSLASHcolorbox] = ACTIONS(12401), + [anon_sym_BSLASHtextcolor] = ACTIONS(12401), + [anon_sym_BSLASHpagecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12401), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12401), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12401), + }, + [1563] = { + [sym_generic_command_name] = ACTIONS(12405), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12405), + [aux_sym_subparagraph_token1] = ACTIONS(12405), + [anon_sym_BSLASHitem] = ACTIONS(12405), + [anon_sym_LBRACK] = ACTIONS(12403), + [anon_sym_RBRACK] = ACTIONS(12403), + [anon_sym_LBRACE] = ACTIONS(12403), + [anon_sym_RBRACE] = ACTIONS(12403), + [anon_sym_LPAREN] = ACTIONS(12403), + [anon_sym_COMMA] = ACTIONS(12403), + [anon_sym_EQ] = ACTIONS(12403), + [sym_word] = ACTIONS(12403), + [sym_param] = ACTIONS(12403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12403), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12403), + [anon_sym_DOLLAR] = ACTIONS(12405), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12403), + [anon_sym_BSLASHbegin] = ACTIONS(12405), + [anon_sym_BSLASHcaption] = ACTIONS(12405), + [anon_sym_BSLASHcite] = ACTIONS(12405), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCite] = ACTIONS(12405), + [anon_sym_BSLASHnocite] = ACTIONS(12405), + [anon_sym_BSLASHcitet] = ACTIONS(12405), + [anon_sym_BSLASHcitep] = ACTIONS(12405), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteauthor] = ACTIONS(12405), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12405), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitetitle] = ACTIONS(12405), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteyear] = ACTIONS(12405), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitedate] = ACTIONS(12405), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteurl] = ACTIONS(12405), + [anon_sym_BSLASHfullcite] = ACTIONS(12405), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12405), + [anon_sym_BSLASHcitealt] = ACTIONS(12405), + [anon_sym_BSLASHcitealp] = ACTIONS(12405), + [anon_sym_BSLASHcitetext] = ACTIONS(12405), + [anon_sym_BSLASHparencite] = ACTIONS(12405), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHParencite] = ACTIONS(12405), + [anon_sym_BSLASHfootcite] = ACTIONS(12405), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12405), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12405), + [anon_sym_BSLASHtextcite] = ACTIONS(12405), + [anon_sym_BSLASHTextcite] = ACTIONS(12405), + [anon_sym_BSLASHsmartcite] = ACTIONS(12405), + [anon_sym_BSLASHSmartcite] = ACTIONS(12405), + [anon_sym_BSLASHsupercite] = ACTIONS(12405), + [anon_sym_BSLASHautocite] = ACTIONS(12405), + [anon_sym_BSLASHAutocite] = ACTIONS(12405), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHvolcite] = ACTIONS(12405), + [anon_sym_BSLASHVolcite] = ACTIONS(12405), + [anon_sym_BSLASHpvolcite] = ACTIONS(12405), + [anon_sym_BSLASHPvolcite] = ACTIONS(12405), + [anon_sym_BSLASHfvolcite] = ACTIONS(12405), + [anon_sym_BSLASHftvolcite] = ACTIONS(12405), + [anon_sym_BSLASHsvolcite] = ACTIONS(12405), + [anon_sym_BSLASHSvolcite] = ACTIONS(12405), + [anon_sym_BSLASHtvolcite] = ACTIONS(12405), + [anon_sym_BSLASHTvolcite] = ACTIONS(12405), + [anon_sym_BSLASHavolcite] = ACTIONS(12405), + [anon_sym_BSLASHAvolcite] = ACTIONS(12405), + [anon_sym_BSLASHnotecite] = ACTIONS(12405), + [anon_sym_BSLASHpnotecite] = ACTIONS(12405), + [anon_sym_BSLASHPnotecite] = ACTIONS(12405), + [anon_sym_BSLASHfnotecite] = ACTIONS(12405), + [anon_sym_BSLASHusepackage] = ACTIONS(12405), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12405), + [anon_sym_BSLASHinclude] = ACTIONS(12405), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12405), + [anon_sym_BSLASHinput] = ACTIONS(12405), + [anon_sym_BSLASHsubfile] = ACTIONS(12405), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12405), + [anon_sym_BSLASHbibliography] = ACTIONS(12405), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12405), + [anon_sym_BSLASHincludesvg] = ACTIONS(12405), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12405), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12405), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12405), + [anon_sym_BSLASHimport] = ACTIONS(12405), + [anon_sym_BSLASHsubimport] = ACTIONS(12405), + [anon_sym_BSLASHinputfrom] = ACTIONS(12405), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12405), + [anon_sym_BSLASHincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHlabel] = ACTIONS(12405), + [anon_sym_BSLASHref] = ACTIONS(12405), + [anon_sym_BSLASHvref] = ACTIONS(12405), + [anon_sym_BSLASHVref] = ACTIONS(12405), + [anon_sym_BSLASHautoref] = ACTIONS(12405), + [anon_sym_BSLASHpageref] = ACTIONS(12405), + [anon_sym_BSLASHcref] = ACTIONS(12405), + [anon_sym_BSLASHCref] = ACTIONS(12405), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnameCref] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHlabelcref] = ACTIONS(12405), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12405), + [anon_sym_BSLASHeqref] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange] = ACTIONS(12405), + [anon_sym_BSLASHCrefrange] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewlabel] = ACTIONS(12405), + [anon_sym_BSLASHnewcommand] = ACTIONS(12405), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12405), + [anon_sym_BSLASHgls] = ACTIONS(12405), + [anon_sym_BSLASHGls] = ACTIONS(12405), + [anon_sym_BSLASHGLS] = ACTIONS(12405), + [anon_sym_BSLASHglspl] = ACTIONS(12405), + [anon_sym_BSLASHGlspl] = ACTIONS(12405), + [anon_sym_BSLASHGLSpl] = ACTIONS(12405), + [anon_sym_BSLASHglsdisp] = ACTIONS(12405), + [anon_sym_BSLASHglslink] = ACTIONS(12405), + [anon_sym_BSLASHglstext] = ACTIONS(12405), + [anon_sym_BSLASHGlstext] = ACTIONS(12405), + [anon_sym_BSLASHGLStext] = ACTIONS(12405), + [anon_sym_BSLASHglsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12405), + [anon_sym_BSLASHglsplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSplural] = ACTIONS(12405), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHglsname] = ACTIONS(12405), + [anon_sym_BSLASHGlsname] = ACTIONS(12405), + [anon_sym_BSLASHGLSname] = ACTIONS(12405), + [anon_sym_BSLASHglssymbol] = ACTIONS(12405), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12405), + [anon_sym_BSLASHglsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12405), + [anon_sym_BSLASHglsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12405), + [anon_sym_BSLASHglsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12405), + [anon_sym_BSLASHglsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12405), + [anon_sym_BSLASHglsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12405), + [anon_sym_BSLASHnewacronym] = ACTIONS(12405), + [anon_sym_BSLASHacrshort] = ACTIONS(12405), + [anon_sym_BSLASHAcrshort] = ACTIONS(12405), + [anon_sym_BSLASHACRshort] = ACTIONS(12405), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12405), + [anon_sym_BSLASHacrlong] = ACTIONS(12405), + [anon_sym_BSLASHAcrlong] = ACTIONS(12405), + [anon_sym_BSLASHACRlong] = ACTIONS(12405), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12405), + [anon_sym_BSLASHacrfull] = ACTIONS(12405), + [anon_sym_BSLASHAcrfull] = ACTIONS(12405), + [anon_sym_BSLASHACRfull] = ACTIONS(12405), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12405), + [anon_sym_BSLASHacs] = ACTIONS(12405), + [anon_sym_BSLASHAcs] = ACTIONS(12405), + [anon_sym_BSLASHacsp] = ACTIONS(12405), + [anon_sym_BSLASHAcsp] = ACTIONS(12405), + [anon_sym_BSLASHacl] = ACTIONS(12405), + [anon_sym_BSLASHAcl] = ACTIONS(12405), + [anon_sym_BSLASHaclp] = ACTIONS(12405), + [anon_sym_BSLASHAclp] = ACTIONS(12405), + [anon_sym_BSLASHacf] = ACTIONS(12405), + [anon_sym_BSLASHAcf] = ACTIONS(12405), + [anon_sym_BSLASHacfp] = ACTIONS(12405), + [anon_sym_BSLASHAcfp] = ACTIONS(12405), + [anon_sym_BSLASHac] = ACTIONS(12405), + [anon_sym_BSLASHAc] = ACTIONS(12405), + [anon_sym_BSLASHacp] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12405), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12405), + [anon_sym_BSLASHcolor] = ACTIONS(12405), + [anon_sym_BSLASHcolorbox] = ACTIONS(12405), + [anon_sym_BSLASHtextcolor] = ACTIONS(12405), + [anon_sym_BSLASHpagecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12405), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12405), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12405), + }, + [1564] = { + [sym_generic_command_name] = ACTIONS(12409), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12409), + [aux_sym_subparagraph_token1] = ACTIONS(12409), + [anon_sym_BSLASHitem] = ACTIONS(12409), + [anon_sym_LBRACK] = ACTIONS(12407), + [anon_sym_RBRACK] = ACTIONS(12407), + [anon_sym_LBRACE] = ACTIONS(12407), + [anon_sym_RBRACE] = ACTIONS(12407), + [anon_sym_LPAREN] = ACTIONS(12407), + [anon_sym_COMMA] = ACTIONS(12407), + [anon_sym_EQ] = ACTIONS(12407), + [sym_word] = ACTIONS(12407), + [sym_param] = ACTIONS(12407), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12407), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12407), + [anon_sym_DOLLAR] = ACTIONS(12409), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12407), + [anon_sym_BSLASHbegin] = ACTIONS(12409), + [anon_sym_BSLASHcaption] = ACTIONS(12409), + [anon_sym_BSLASHcite] = ACTIONS(12409), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCite] = ACTIONS(12409), + [anon_sym_BSLASHnocite] = ACTIONS(12409), + [anon_sym_BSLASHcitet] = ACTIONS(12409), + [anon_sym_BSLASHcitep] = ACTIONS(12409), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteauthor] = ACTIONS(12409), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12409), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitetitle] = ACTIONS(12409), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteyear] = ACTIONS(12409), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitedate] = ACTIONS(12409), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteurl] = ACTIONS(12409), + [anon_sym_BSLASHfullcite] = ACTIONS(12409), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12409), + [anon_sym_BSLASHcitealt] = ACTIONS(12409), + [anon_sym_BSLASHcitealp] = ACTIONS(12409), + [anon_sym_BSLASHcitetext] = ACTIONS(12409), + [anon_sym_BSLASHparencite] = ACTIONS(12409), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHParencite] = ACTIONS(12409), + [anon_sym_BSLASHfootcite] = ACTIONS(12409), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12409), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12409), + [anon_sym_BSLASHtextcite] = ACTIONS(12409), + [anon_sym_BSLASHTextcite] = ACTIONS(12409), + [anon_sym_BSLASHsmartcite] = ACTIONS(12409), + [anon_sym_BSLASHSmartcite] = ACTIONS(12409), + [anon_sym_BSLASHsupercite] = ACTIONS(12409), + [anon_sym_BSLASHautocite] = ACTIONS(12409), + [anon_sym_BSLASHAutocite] = ACTIONS(12409), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHvolcite] = ACTIONS(12409), + [anon_sym_BSLASHVolcite] = ACTIONS(12409), + [anon_sym_BSLASHpvolcite] = ACTIONS(12409), + [anon_sym_BSLASHPvolcite] = ACTIONS(12409), + [anon_sym_BSLASHfvolcite] = ACTIONS(12409), + [anon_sym_BSLASHftvolcite] = ACTIONS(12409), + [anon_sym_BSLASHsvolcite] = ACTIONS(12409), + [anon_sym_BSLASHSvolcite] = ACTIONS(12409), + [anon_sym_BSLASHtvolcite] = ACTIONS(12409), + [anon_sym_BSLASHTvolcite] = ACTIONS(12409), + [anon_sym_BSLASHavolcite] = ACTIONS(12409), + [anon_sym_BSLASHAvolcite] = ACTIONS(12409), + [anon_sym_BSLASHnotecite] = ACTIONS(12409), + [anon_sym_BSLASHpnotecite] = ACTIONS(12409), + [anon_sym_BSLASHPnotecite] = ACTIONS(12409), + [anon_sym_BSLASHfnotecite] = ACTIONS(12409), + [anon_sym_BSLASHusepackage] = ACTIONS(12409), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12409), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12409), + [anon_sym_BSLASHinclude] = ACTIONS(12409), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12409), + [anon_sym_BSLASHinput] = ACTIONS(12409), + [anon_sym_BSLASHsubfile] = ACTIONS(12409), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12409), + [anon_sym_BSLASHbibliography] = ACTIONS(12409), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12409), + [anon_sym_BSLASHincludesvg] = ACTIONS(12409), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12409), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12409), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12409), + [anon_sym_BSLASHimport] = ACTIONS(12409), + [anon_sym_BSLASHsubimport] = ACTIONS(12409), + [anon_sym_BSLASHinputfrom] = ACTIONS(12409), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12409), + [anon_sym_BSLASHincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHlabel] = ACTIONS(12409), + [anon_sym_BSLASHref] = ACTIONS(12409), + [anon_sym_BSLASHvref] = ACTIONS(12409), + [anon_sym_BSLASHVref] = ACTIONS(12409), + [anon_sym_BSLASHautoref] = ACTIONS(12409), + [anon_sym_BSLASHpageref] = ACTIONS(12409), + [anon_sym_BSLASHcref] = ACTIONS(12409), + [anon_sym_BSLASHCref] = ACTIONS(12409), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnameCref] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHlabelcref] = ACTIONS(12409), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12409), + [anon_sym_BSLASHeqref] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange] = ACTIONS(12409), + [anon_sym_BSLASHCrefrange] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewlabel] = ACTIONS(12409), + [anon_sym_BSLASHnewcommand] = ACTIONS(12409), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12409), + [anon_sym_BSLASHgls] = ACTIONS(12409), + [anon_sym_BSLASHGls] = ACTIONS(12409), + [anon_sym_BSLASHGLS] = ACTIONS(12409), + [anon_sym_BSLASHglspl] = ACTIONS(12409), + [anon_sym_BSLASHGlspl] = ACTIONS(12409), + [anon_sym_BSLASHGLSpl] = ACTIONS(12409), + [anon_sym_BSLASHglsdisp] = ACTIONS(12409), + [anon_sym_BSLASHglslink] = ACTIONS(12409), + [anon_sym_BSLASHglstext] = ACTIONS(12409), + [anon_sym_BSLASHGlstext] = ACTIONS(12409), + [anon_sym_BSLASHGLStext] = ACTIONS(12409), + [anon_sym_BSLASHglsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12409), + [anon_sym_BSLASHglsplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSplural] = ACTIONS(12409), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHglsname] = ACTIONS(12409), + [anon_sym_BSLASHGlsname] = ACTIONS(12409), + [anon_sym_BSLASHGLSname] = ACTIONS(12409), + [anon_sym_BSLASHglssymbol] = ACTIONS(12409), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12409), + [anon_sym_BSLASHglsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12409), + [anon_sym_BSLASHglsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12409), + [anon_sym_BSLASHglsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12409), + [anon_sym_BSLASHglsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12409), + [anon_sym_BSLASHglsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12409), + [anon_sym_BSLASHnewacronym] = ACTIONS(12409), + [anon_sym_BSLASHacrshort] = ACTIONS(12409), + [anon_sym_BSLASHAcrshort] = ACTIONS(12409), + [anon_sym_BSLASHACRshort] = ACTIONS(12409), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12409), + [anon_sym_BSLASHacrlong] = ACTIONS(12409), + [anon_sym_BSLASHAcrlong] = ACTIONS(12409), + [anon_sym_BSLASHACRlong] = ACTIONS(12409), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12409), + [anon_sym_BSLASHacrfull] = ACTIONS(12409), + [anon_sym_BSLASHAcrfull] = ACTIONS(12409), + [anon_sym_BSLASHACRfull] = ACTIONS(12409), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12409), + [anon_sym_BSLASHacs] = ACTIONS(12409), + [anon_sym_BSLASHAcs] = ACTIONS(12409), + [anon_sym_BSLASHacsp] = ACTIONS(12409), + [anon_sym_BSLASHAcsp] = ACTIONS(12409), + [anon_sym_BSLASHacl] = ACTIONS(12409), + [anon_sym_BSLASHAcl] = ACTIONS(12409), + [anon_sym_BSLASHaclp] = ACTIONS(12409), + [anon_sym_BSLASHAclp] = ACTIONS(12409), + [anon_sym_BSLASHacf] = ACTIONS(12409), + [anon_sym_BSLASHAcf] = ACTIONS(12409), + [anon_sym_BSLASHacfp] = ACTIONS(12409), + [anon_sym_BSLASHAcfp] = ACTIONS(12409), + [anon_sym_BSLASHac] = ACTIONS(12409), + [anon_sym_BSLASHAc] = ACTIONS(12409), + [anon_sym_BSLASHacp] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12409), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12409), + [anon_sym_BSLASHcolor] = ACTIONS(12409), + [anon_sym_BSLASHcolorbox] = ACTIONS(12409), + [anon_sym_BSLASHtextcolor] = ACTIONS(12409), + [anon_sym_BSLASHpagecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12409), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12409), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12409), + }, + [1565] = { + [sym_generic_command_name] = ACTIONS(12413), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12413), + [aux_sym_subparagraph_token1] = ACTIONS(12413), + [anon_sym_BSLASHitem] = ACTIONS(12413), + [anon_sym_LBRACK] = ACTIONS(12411), + [anon_sym_RBRACK] = ACTIONS(12411), + [anon_sym_LBRACE] = ACTIONS(12411), + [anon_sym_RBRACE] = ACTIONS(12411), + [anon_sym_LPAREN] = ACTIONS(12411), + [anon_sym_COMMA] = ACTIONS(12411), + [anon_sym_EQ] = ACTIONS(12411), + [sym_word] = ACTIONS(12411), + [sym_param] = ACTIONS(12411), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12411), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12411), + [anon_sym_DOLLAR] = ACTIONS(12413), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12411), + [anon_sym_BSLASHbegin] = ACTIONS(12413), + [anon_sym_BSLASHcaption] = ACTIONS(12413), + [anon_sym_BSLASHcite] = ACTIONS(12413), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCite] = ACTIONS(12413), + [anon_sym_BSLASHnocite] = ACTIONS(12413), + [anon_sym_BSLASHcitet] = ACTIONS(12413), + [anon_sym_BSLASHcitep] = ACTIONS(12413), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteauthor] = ACTIONS(12413), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12413), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitetitle] = ACTIONS(12413), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteyear] = ACTIONS(12413), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitedate] = ACTIONS(12413), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteurl] = ACTIONS(12413), + [anon_sym_BSLASHfullcite] = ACTIONS(12413), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12413), + [anon_sym_BSLASHcitealt] = ACTIONS(12413), + [anon_sym_BSLASHcitealp] = ACTIONS(12413), + [anon_sym_BSLASHcitetext] = ACTIONS(12413), + [anon_sym_BSLASHparencite] = ACTIONS(12413), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHParencite] = ACTIONS(12413), + [anon_sym_BSLASHfootcite] = ACTIONS(12413), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12413), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12413), + [anon_sym_BSLASHtextcite] = ACTIONS(12413), + [anon_sym_BSLASHTextcite] = ACTIONS(12413), + [anon_sym_BSLASHsmartcite] = ACTIONS(12413), + [anon_sym_BSLASHSmartcite] = ACTIONS(12413), + [anon_sym_BSLASHsupercite] = ACTIONS(12413), + [anon_sym_BSLASHautocite] = ACTIONS(12413), + [anon_sym_BSLASHAutocite] = ACTIONS(12413), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHvolcite] = ACTIONS(12413), + [anon_sym_BSLASHVolcite] = ACTIONS(12413), + [anon_sym_BSLASHpvolcite] = ACTIONS(12413), + [anon_sym_BSLASHPvolcite] = ACTIONS(12413), + [anon_sym_BSLASHfvolcite] = ACTIONS(12413), + [anon_sym_BSLASHftvolcite] = ACTIONS(12413), + [anon_sym_BSLASHsvolcite] = ACTIONS(12413), + [anon_sym_BSLASHSvolcite] = ACTIONS(12413), + [anon_sym_BSLASHtvolcite] = ACTIONS(12413), + [anon_sym_BSLASHTvolcite] = ACTIONS(12413), + [anon_sym_BSLASHavolcite] = ACTIONS(12413), + [anon_sym_BSLASHAvolcite] = ACTIONS(12413), + [anon_sym_BSLASHnotecite] = ACTIONS(12413), + [anon_sym_BSLASHpnotecite] = ACTIONS(12413), + [anon_sym_BSLASHPnotecite] = ACTIONS(12413), + [anon_sym_BSLASHfnotecite] = ACTIONS(12413), + [anon_sym_BSLASHusepackage] = ACTIONS(12413), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12413), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12413), + [anon_sym_BSLASHinclude] = ACTIONS(12413), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12413), + [anon_sym_BSLASHinput] = ACTIONS(12413), + [anon_sym_BSLASHsubfile] = ACTIONS(12413), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12413), + [anon_sym_BSLASHbibliography] = ACTIONS(12413), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12413), + [anon_sym_BSLASHincludesvg] = ACTIONS(12413), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12413), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12413), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12413), + [anon_sym_BSLASHimport] = ACTIONS(12413), + [anon_sym_BSLASHsubimport] = ACTIONS(12413), + [anon_sym_BSLASHinputfrom] = ACTIONS(12413), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12413), + [anon_sym_BSLASHincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHlabel] = ACTIONS(12413), + [anon_sym_BSLASHref] = ACTIONS(12413), + [anon_sym_BSLASHvref] = ACTIONS(12413), + [anon_sym_BSLASHVref] = ACTIONS(12413), + [anon_sym_BSLASHautoref] = ACTIONS(12413), + [anon_sym_BSLASHpageref] = ACTIONS(12413), + [anon_sym_BSLASHcref] = ACTIONS(12413), + [anon_sym_BSLASHCref] = ACTIONS(12413), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnameCref] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHlabelcref] = ACTIONS(12413), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12413), + [anon_sym_BSLASHeqref] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange] = ACTIONS(12413), + [anon_sym_BSLASHCrefrange] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewlabel] = ACTIONS(12413), + [anon_sym_BSLASHnewcommand] = ACTIONS(12413), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12413), + [anon_sym_BSLASHgls] = ACTIONS(12413), + [anon_sym_BSLASHGls] = ACTIONS(12413), + [anon_sym_BSLASHGLS] = ACTIONS(12413), + [anon_sym_BSLASHglspl] = ACTIONS(12413), + [anon_sym_BSLASHGlspl] = ACTIONS(12413), + [anon_sym_BSLASHGLSpl] = ACTIONS(12413), + [anon_sym_BSLASHglsdisp] = ACTIONS(12413), + [anon_sym_BSLASHglslink] = ACTIONS(12413), + [anon_sym_BSLASHglstext] = ACTIONS(12413), + [anon_sym_BSLASHGlstext] = ACTIONS(12413), + [anon_sym_BSLASHGLStext] = ACTIONS(12413), + [anon_sym_BSLASHglsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12413), + [anon_sym_BSLASHglsplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSplural] = ACTIONS(12413), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHglsname] = ACTIONS(12413), + [anon_sym_BSLASHGlsname] = ACTIONS(12413), + [anon_sym_BSLASHGLSname] = ACTIONS(12413), + [anon_sym_BSLASHglssymbol] = ACTIONS(12413), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12413), + [anon_sym_BSLASHglsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12413), + [anon_sym_BSLASHglsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12413), + [anon_sym_BSLASHglsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12413), + [anon_sym_BSLASHglsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12413), + [anon_sym_BSLASHglsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12413), + [anon_sym_BSLASHnewacronym] = ACTIONS(12413), + [anon_sym_BSLASHacrshort] = ACTIONS(12413), + [anon_sym_BSLASHAcrshort] = ACTIONS(12413), + [anon_sym_BSLASHACRshort] = ACTIONS(12413), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12413), + [anon_sym_BSLASHacrlong] = ACTIONS(12413), + [anon_sym_BSLASHAcrlong] = ACTIONS(12413), + [anon_sym_BSLASHACRlong] = ACTIONS(12413), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12413), + [anon_sym_BSLASHacrfull] = ACTIONS(12413), + [anon_sym_BSLASHAcrfull] = ACTIONS(12413), + [anon_sym_BSLASHACRfull] = ACTIONS(12413), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12413), + [anon_sym_BSLASHacs] = ACTIONS(12413), + [anon_sym_BSLASHAcs] = ACTIONS(12413), + [anon_sym_BSLASHacsp] = ACTIONS(12413), + [anon_sym_BSLASHAcsp] = ACTIONS(12413), + [anon_sym_BSLASHacl] = ACTIONS(12413), + [anon_sym_BSLASHAcl] = ACTIONS(12413), + [anon_sym_BSLASHaclp] = ACTIONS(12413), + [anon_sym_BSLASHAclp] = ACTIONS(12413), + [anon_sym_BSLASHacf] = ACTIONS(12413), + [anon_sym_BSLASHAcf] = ACTIONS(12413), + [anon_sym_BSLASHacfp] = ACTIONS(12413), + [anon_sym_BSLASHAcfp] = ACTIONS(12413), + [anon_sym_BSLASHac] = ACTIONS(12413), + [anon_sym_BSLASHAc] = ACTIONS(12413), + [anon_sym_BSLASHacp] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12413), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12413), + [anon_sym_BSLASHcolor] = ACTIONS(12413), + [anon_sym_BSLASHcolorbox] = ACTIONS(12413), + [anon_sym_BSLASHtextcolor] = ACTIONS(12413), + [anon_sym_BSLASHpagecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12413), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12413), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12413), + }, + [1566] = { + [sym_generic_command_name] = ACTIONS(12421), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12421), + [aux_sym_subparagraph_token1] = ACTIONS(12421), + [anon_sym_BSLASHitem] = ACTIONS(12421), + [anon_sym_LBRACK] = ACTIONS(12419), + [anon_sym_RBRACK] = ACTIONS(12419), + [anon_sym_LBRACE] = ACTIONS(12419), + [anon_sym_RBRACE] = ACTIONS(12419), + [anon_sym_LPAREN] = ACTIONS(12419), + [anon_sym_COMMA] = ACTIONS(12419), + [anon_sym_EQ] = ACTIONS(12419), + [sym_word] = ACTIONS(12419), + [sym_param] = ACTIONS(12419), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12419), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12419), + [anon_sym_DOLLAR] = ACTIONS(12421), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12419), + [anon_sym_BSLASHbegin] = ACTIONS(12421), + [anon_sym_BSLASHcaption] = ACTIONS(12421), + [anon_sym_BSLASHcite] = ACTIONS(12421), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCite] = ACTIONS(12421), + [anon_sym_BSLASHnocite] = ACTIONS(12421), + [anon_sym_BSLASHcitet] = ACTIONS(12421), + [anon_sym_BSLASHcitep] = ACTIONS(12421), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteauthor] = ACTIONS(12421), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12421), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitetitle] = ACTIONS(12421), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteyear] = ACTIONS(12421), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitedate] = ACTIONS(12421), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteurl] = ACTIONS(12421), + [anon_sym_BSLASHfullcite] = ACTIONS(12421), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12421), + [anon_sym_BSLASHcitealt] = ACTIONS(12421), + [anon_sym_BSLASHcitealp] = ACTIONS(12421), + [anon_sym_BSLASHcitetext] = ACTIONS(12421), + [anon_sym_BSLASHparencite] = ACTIONS(12421), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHParencite] = ACTIONS(12421), + [anon_sym_BSLASHfootcite] = ACTIONS(12421), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12421), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12421), + [anon_sym_BSLASHtextcite] = ACTIONS(12421), + [anon_sym_BSLASHTextcite] = ACTIONS(12421), + [anon_sym_BSLASHsmartcite] = ACTIONS(12421), + [anon_sym_BSLASHSmartcite] = ACTIONS(12421), + [anon_sym_BSLASHsupercite] = ACTIONS(12421), + [anon_sym_BSLASHautocite] = ACTIONS(12421), + [anon_sym_BSLASHAutocite] = ACTIONS(12421), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHvolcite] = ACTIONS(12421), + [anon_sym_BSLASHVolcite] = ACTIONS(12421), + [anon_sym_BSLASHpvolcite] = ACTIONS(12421), + [anon_sym_BSLASHPvolcite] = ACTIONS(12421), + [anon_sym_BSLASHfvolcite] = ACTIONS(12421), + [anon_sym_BSLASHftvolcite] = ACTIONS(12421), + [anon_sym_BSLASHsvolcite] = ACTIONS(12421), + [anon_sym_BSLASHSvolcite] = ACTIONS(12421), + [anon_sym_BSLASHtvolcite] = ACTIONS(12421), + [anon_sym_BSLASHTvolcite] = ACTIONS(12421), + [anon_sym_BSLASHavolcite] = ACTIONS(12421), + [anon_sym_BSLASHAvolcite] = ACTIONS(12421), + [anon_sym_BSLASHnotecite] = ACTIONS(12421), + [anon_sym_BSLASHpnotecite] = ACTIONS(12421), + [anon_sym_BSLASHPnotecite] = ACTIONS(12421), + [anon_sym_BSLASHfnotecite] = ACTIONS(12421), + [anon_sym_BSLASHusepackage] = ACTIONS(12421), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12421), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12421), + [anon_sym_BSLASHinclude] = ACTIONS(12421), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12421), + [anon_sym_BSLASHinput] = ACTIONS(12421), + [anon_sym_BSLASHsubfile] = ACTIONS(12421), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12421), + [anon_sym_BSLASHbibliography] = ACTIONS(12421), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12421), + [anon_sym_BSLASHincludesvg] = ACTIONS(12421), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12421), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12421), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12421), + [anon_sym_BSLASHimport] = ACTIONS(12421), + [anon_sym_BSLASHsubimport] = ACTIONS(12421), + [anon_sym_BSLASHinputfrom] = ACTIONS(12421), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12421), + [anon_sym_BSLASHincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHlabel] = ACTIONS(12421), + [anon_sym_BSLASHref] = ACTIONS(12421), + [anon_sym_BSLASHvref] = ACTIONS(12421), + [anon_sym_BSLASHVref] = ACTIONS(12421), + [anon_sym_BSLASHautoref] = ACTIONS(12421), + [anon_sym_BSLASHpageref] = ACTIONS(12421), + [anon_sym_BSLASHcref] = ACTIONS(12421), + [anon_sym_BSLASHCref] = ACTIONS(12421), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnameCref] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHlabelcref] = ACTIONS(12421), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12421), + [anon_sym_BSLASHeqref] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange] = ACTIONS(12421), + [anon_sym_BSLASHCrefrange] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewlabel] = ACTIONS(12421), + [anon_sym_BSLASHnewcommand] = ACTIONS(12421), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12421), + [anon_sym_BSLASHgls] = ACTIONS(12421), + [anon_sym_BSLASHGls] = ACTIONS(12421), + [anon_sym_BSLASHGLS] = ACTIONS(12421), + [anon_sym_BSLASHglspl] = ACTIONS(12421), + [anon_sym_BSLASHGlspl] = ACTIONS(12421), + [anon_sym_BSLASHGLSpl] = ACTIONS(12421), + [anon_sym_BSLASHglsdisp] = ACTIONS(12421), + [anon_sym_BSLASHglslink] = ACTIONS(12421), + [anon_sym_BSLASHglstext] = ACTIONS(12421), + [anon_sym_BSLASHGlstext] = ACTIONS(12421), + [anon_sym_BSLASHGLStext] = ACTIONS(12421), + [anon_sym_BSLASHglsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12421), + [anon_sym_BSLASHglsplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSplural] = ACTIONS(12421), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHglsname] = ACTIONS(12421), + [anon_sym_BSLASHGlsname] = ACTIONS(12421), + [anon_sym_BSLASHGLSname] = ACTIONS(12421), + [anon_sym_BSLASHglssymbol] = ACTIONS(12421), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12421), + [anon_sym_BSLASHglsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12421), + [anon_sym_BSLASHglsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12421), + [anon_sym_BSLASHglsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12421), + [anon_sym_BSLASHglsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12421), + [anon_sym_BSLASHglsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12421), + [anon_sym_BSLASHnewacronym] = ACTIONS(12421), + [anon_sym_BSLASHacrshort] = ACTIONS(12421), + [anon_sym_BSLASHAcrshort] = ACTIONS(12421), + [anon_sym_BSLASHACRshort] = ACTIONS(12421), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12421), + [anon_sym_BSLASHacrlong] = ACTIONS(12421), + [anon_sym_BSLASHAcrlong] = ACTIONS(12421), + [anon_sym_BSLASHACRlong] = ACTIONS(12421), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12421), + [anon_sym_BSLASHacrfull] = ACTIONS(12421), + [anon_sym_BSLASHAcrfull] = ACTIONS(12421), + [anon_sym_BSLASHACRfull] = ACTIONS(12421), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12421), + [anon_sym_BSLASHacs] = ACTIONS(12421), + [anon_sym_BSLASHAcs] = ACTIONS(12421), + [anon_sym_BSLASHacsp] = ACTIONS(12421), + [anon_sym_BSLASHAcsp] = ACTIONS(12421), + [anon_sym_BSLASHacl] = ACTIONS(12421), + [anon_sym_BSLASHAcl] = ACTIONS(12421), + [anon_sym_BSLASHaclp] = ACTIONS(12421), + [anon_sym_BSLASHAclp] = ACTIONS(12421), + [anon_sym_BSLASHacf] = ACTIONS(12421), + [anon_sym_BSLASHAcf] = ACTIONS(12421), + [anon_sym_BSLASHacfp] = ACTIONS(12421), + [anon_sym_BSLASHAcfp] = ACTIONS(12421), + [anon_sym_BSLASHac] = ACTIONS(12421), + [anon_sym_BSLASHAc] = ACTIONS(12421), + [anon_sym_BSLASHacp] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12421), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12421), + [anon_sym_BSLASHcolor] = ACTIONS(12421), + [anon_sym_BSLASHcolorbox] = ACTIONS(12421), + [anon_sym_BSLASHtextcolor] = ACTIONS(12421), + [anon_sym_BSLASHpagecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12421), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12421), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12421), + }, + [1567] = { + [sym_generic_command_name] = ACTIONS(12425), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12425), + [aux_sym_subparagraph_token1] = ACTIONS(12425), + [anon_sym_BSLASHitem] = ACTIONS(12425), + [anon_sym_LBRACK] = ACTIONS(12423), + [anon_sym_RBRACK] = ACTIONS(12423), + [anon_sym_LBRACE] = ACTIONS(12423), + [anon_sym_RBRACE] = ACTIONS(12423), + [anon_sym_LPAREN] = ACTIONS(12423), + [anon_sym_COMMA] = ACTIONS(12423), + [anon_sym_EQ] = ACTIONS(12423), + [sym_word] = ACTIONS(12423), + [sym_param] = ACTIONS(12423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12423), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12423), + [anon_sym_DOLLAR] = ACTIONS(12425), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12423), + [anon_sym_BSLASHbegin] = ACTIONS(12425), + [anon_sym_BSLASHcaption] = ACTIONS(12425), + [anon_sym_BSLASHcite] = ACTIONS(12425), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCite] = ACTIONS(12425), + [anon_sym_BSLASHnocite] = ACTIONS(12425), + [anon_sym_BSLASHcitet] = ACTIONS(12425), + [anon_sym_BSLASHcitep] = ACTIONS(12425), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteauthor] = ACTIONS(12425), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12425), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitetitle] = ACTIONS(12425), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteyear] = ACTIONS(12425), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitedate] = ACTIONS(12425), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteurl] = ACTIONS(12425), + [anon_sym_BSLASHfullcite] = ACTIONS(12425), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12425), + [anon_sym_BSLASHcitealt] = ACTIONS(12425), + [anon_sym_BSLASHcitealp] = ACTIONS(12425), + [anon_sym_BSLASHcitetext] = ACTIONS(12425), + [anon_sym_BSLASHparencite] = ACTIONS(12425), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHParencite] = ACTIONS(12425), + [anon_sym_BSLASHfootcite] = ACTIONS(12425), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12425), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12425), + [anon_sym_BSLASHtextcite] = ACTIONS(12425), + [anon_sym_BSLASHTextcite] = ACTIONS(12425), + [anon_sym_BSLASHsmartcite] = ACTIONS(12425), + [anon_sym_BSLASHSmartcite] = ACTIONS(12425), + [anon_sym_BSLASHsupercite] = ACTIONS(12425), + [anon_sym_BSLASHautocite] = ACTIONS(12425), + [anon_sym_BSLASHAutocite] = ACTIONS(12425), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHvolcite] = ACTIONS(12425), + [anon_sym_BSLASHVolcite] = ACTIONS(12425), + [anon_sym_BSLASHpvolcite] = ACTIONS(12425), + [anon_sym_BSLASHPvolcite] = ACTIONS(12425), + [anon_sym_BSLASHfvolcite] = ACTIONS(12425), + [anon_sym_BSLASHftvolcite] = ACTIONS(12425), + [anon_sym_BSLASHsvolcite] = ACTIONS(12425), + [anon_sym_BSLASHSvolcite] = ACTIONS(12425), + [anon_sym_BSLASHtvolcite] = ACTIONS(12425), + [anon_sym_BSLASHTvolcite] = ACTIONS(12425), + [anon_sym_BSLASHavolcite] = ACTIONS(12425), + [anon_sym_BSLASHAvolcite] = ACTIONS(12425), + [anon_sym_BSLASHnotecite] = ACTIONS(12425), + [anon_sym_BSLASHpnotecite] = ACTIONS(12425), + [anon_sym_BSLASHPnotecite] = ACTIONS(12425), + [anon_sym_BSLASHfnotecite] = ACTIONS(12425), + [anon_sym_BSLASHusepackage] = ACTIONS(12425), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12425), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12425), + [anon_sym_BSLASHinclude] = ACTIONS(12425), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12425), + [anon_sym_BSLASHinput] = ACTIONS(12425), + [anon_sym_BSLASHsubfile] = ACTIONS(12425), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12425), + [anon_sym_BSLASHbibliography] = ACTIONS(12425), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12425), + [anon_sym_BSLASHincludesvg] = ACTIONS(12425), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12425), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12425), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12425), + [anon_sym_BSLASHimport] = ACTIONS(12425), + [anon_sym_BSLASHsubimport] = ACTIONS(12425), + [anon_sym_BSLASHinputfrom] = ACTIONS(12425), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12425), + [anon_sym_BSLASHincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHlabel] = ACTIONS(12425), + [anon_sym_BSLASHref] = ACTIONS(12425), + [anon_sym_BSLASHvref] = ACTIONS(12425), + [anon_sym_BSLASHVref] = ACTIONS(12425), + [anon_sym_BSLASHautoref] = ACTIONS(12425), + [anon_sym_BSLASHpageref] = ACTIONS(12425), + [anon_sym_BSLASHcref] = ACTIONS(12425), + [anon_sym_BSLASHCref] = ACTIONS(12425), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnameCref] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHlabelcref] = ACTIONS(12425), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12425), + [anon_sym_BSLASHeqref] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange] = ACTIONS(12425), + [anon_sym_BSLASHCrefrange] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewlabel] = ACTIONS(12425), + [anon_sym_BSLASHnewcommand] = ACTIONS(12425), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12425), + [anon_sym_BSLASHgls] = ACTIONS(12425), + [anon_sym_BSLASHGls] = ACTIONS(12425), + [anon_sym_BSLASHGLS] = ACTIONS(12425), + [anon_sym_BSLASHglspl] = ACTIONS(12425), + [anon_sym_BSLASHGlspl] = ACTIONS(12425), + [anon_sym_BSLASHGLSpl] = ACTIONS(12425), + [anon_sym_BSLASHglsdisp] = ACTIONS(12425), + [anon_sym_BSLASHglslink] = ACTIONS(12425), + [anon_sym_BSLASHglstext] = ACTIONS(12425), + [anon_sym_BSLASHGlstext] = ACTIONS(12425), + [anon_sym_BSLASHGLStext] = ACTIONS(12425), + [anon_sym_BSLASHglsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12425), + [anon_sym_BSLASHglsplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSplural] = ACTIONS(12425), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHglsname] = ACTIONS(12425), + [anon_sym_BSLASHGlsname] = ACTIONS(12425), + [anon_sym_BSLASHGLSname] = ACTIONS(12425), + [anon_sym_BSLASHglssymbol] = ACTIONS(12425), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12425), + [anon_sym_BSLASHglsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12425), + [anon_sym_BSLASHglsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12425), + [anon_sym_BSLASHglsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12425), + [anon_sym_BSLASHglsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12425), + [anon_sym_BSLASHglsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12425), + [anon_sym_BSLASHnewacronym] = ACTIONS(12425), + [anon_sym_BSLASHacrshort] = ACTIONS(12425), + [anon_sym_BSLASHAcrshort] = ACTIONS(12425), + [anon_sym_BSLASHACRshort] = ACTIONS(12425), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12425), + [anon_sym_BSLASHacrlong] = ACTIONS(12425), + [anon_sym_BSLASHAcrlong] = ACTIONS(12425), + [anon_sym_BSLASHACRlong] = ACTIONS(12425), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12425), + [anon_sym_BSLASHacrfull] = ACTIONS(12425), + [anon_sym_BSLASHAcrfull] = ACTIONS(12425), + [anon_sym_BSLASHACRfull] = ACTIONS(12425), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12425), + [anon_sym_BSLASHacs] = ACTIONS(12425), + [anon_sym_BSLASHAcs] = ACTIONS(12425), + [anon_sym_BSLASHacsp] = ACTIONS(12425), + [anon_sym_BSLASHAcsp] = ACTIONS(12425), + [anon_sym_BSLASHacl] = ACTIONS(12425), + [anon_sym_BSLASHAcl] = ACTIONS(12425), + [anon_sym_BSLASHaclp] = ACTIONS(12425), + [anon_sym_BSLASHAclp] = ACTIONS(12425), + [anon_sym_BSLASHacf] = ACTIONS(12425), + [anon_sym_BSLASHAcf] = ACTIONS(12425), + [anon_sym_BSLASHacfp] = ACTIONS(12425), + [anon_sym_BSLASHAcfp] = ACTIONS(12425), + [anon_sym_BSLASHac] = ACTIONS(12425), + [anon_sym_BSLASHAc] = ACTIONS(12425), + [anon_sym_BSLASHacp] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12425), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12425), + [anon_sym_BSLASHcolor] = ACTIONS(12425), + [anon_sym_BSLASHcolorbox] = ACTIONS(12425), + [anon_sym_BSLASHtextcolor] = ACTIONS(12425), + [anon_sym_BSLASHpagecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12425), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12425), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12425), + }, + [1568] = { + [sym_generic_command_name] = ACTIONS(12429), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12429), + [aux_sym_subparagraph_token1] = ACTIONS(12429), + [anon_sym_BSLASHitem] = ACTIONS(12429), + [anon_sym_LBRACK] = ACTIONS(12427), + [anon_sym_RBRACK] = ACTIONS(12427), + [anon_sym_LBRACE] = ACTIONS(12427), + [anon_sym_RBRACE] = ACTIONS(12427), + [anon_sym_LPAREN] = ACTIONS(12427), + [anon_sym_COMMA] = ACTIONS(12427), + [anon_sym_EQ] = ACTIONS(12427), + [sym_word] = ACTIONS(12427), + [sym_param] = ACTIONS(12427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12427), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12427), + [anon_sym_DOLLAR] = ACTIONS(12429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12427), + [anon_sym_BSLASHbegin] = ACTIONS(12429), + [anon_sym_BSLASHcaption] = ACTIONS(12429), + [anon_sym_BSLASHcite] = ACTIONS(12429), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCite] = ACTIONS(12429), + [anon_sym_BSLASHnocite] = ACTIONS(12429), + [anon_sym_BSLASHcitet] = ACTIONS(12429), + [anon_sym_BSLASHcitep] = ACTIONS(12429), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteauthor] = ACTIONS(12429), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12429), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitetitle] = ACTIONS(12429), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteyear] = ACTIONS(12429), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitedate] = ACTIONS(12429), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteurl] = ACTIONS(12429), + [anon_sym_BSLASHfullcite] = ACTIONS(12429), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12429), + [anon_sym_BSLASHcitealt] = ACTIONS(12429), + [anon_sym_BSLASHcitealp] = ACTIONS(12429), + [anon_sym_BSLASHcitetext] = ACTIONS(12429), + [anon_sym_BSLASHparencite] = ACTIONS(12429), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHParencite] = ACTIONS(12429), + [anon_sym_BSLASHfootcite] = ACTIONS(12429), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12429), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12429), + [anon_sym_BSLASHtextcite] = ACTIONS(12429), + [anon_sym_BSLASHTextcite] = ACTIONS(12429), + [anon_sym_BSLASHsmartcite] = ACTIONS(12429), + [anon_sym_BSLASHSmartcite] = ACTIONS(12429), + [anon_sym_BSLASHsupercite] = ACTIONS(12429), + [anon_sym_BSLASHautocite] = ACTIONS(12429), + [anon_sym_BSLASHAutocite] = ACTIONS(12429), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHvolcite] = ACTIONS(12429), + [anon_sym_BSLASHVolcite] = ACTIONS(12429), + [anon_sym_BSLASHpvolcite] = ACTIONS(12429), + [anon_sym_BSLASHPvolcite] = ACTIONS(12429), + [anon_sym_BSLASHfvolcite] = ACTIONS(12429), + [anon_sym_BSLASHftvolcite] = ACTIONS(12429), + [anon_sym_BSLASHsvolcite] = ACTIONS(12429), + [anon_sym_BSLASHSvolcite] = ACTIONS(12429), + [anon_sym_BSLASHtvolcite] = ACTIONS(12429), + [anon_sym_BSLASHTvolcite] = ACTIONS(12429), + [anon_sym_BSLASHavolcite] = ACTIONS(12429), + [anon_sym_BSLASHAvolcite] = ACTIONS(12429), + [anon_sym_BSLASHnotecite] = ACTIONS(12429), + [anon_sym_BSLASHpnotecite] = ACTIONS(12429), + [anon_sym_BSLASHPnotecite] = ACTIONS(12429), + [anon_sym_BSLASHfnotecite] = ACTIONS(12429), + [anon_sym_BSLASHusepackage] = ACTIONS(12429), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12429), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12429), + [anon_sym_BSLASHinclude] = ACTIONS(12429), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12429), + [anon_sym_BSLASHinput] = ACTIONS(12429), + [anon_sym_BSLASHsubfile] = ACTIONS(12429), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12429), + [anon_sym_BSLASHbibliography] = ACTIONS(12429), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12429), + [anon_sym_BSLASHincludesvg] = ACTIONS(12429), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12429), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12429), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12429), + [anon_sym_BSLASHimport] = ACTIONS(12429), + [anon_sym_BSLASHsubimport] = ACTIONS(12429), + [anon_sym_BSLASHinputfrom] = ACTIONS(12429), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12429), + [anon_sym_BSLASHincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHlabel] = ACTIONS(12429), + [anon_sym_BSLASHref] = ACTIONS(12429), + [anon_sym_BSLASHvref] = ACTIONS(12429), + [anon_sym_BSLASHVref] = ACTIONS(12429), + [anon_sym_BSLASHautoref] = ACTIONS(12429), + [anon_sym_BSLASHpageref] = ACTIONS(12429), + [anon_sym_BSLASHcref] = ACTIONS(12429), + [anon_sym_BSLASHCref] = ACTIONS(12429), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnameCref] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHlabelcref] = ACTIONS(12429), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12429), + [anon_sym_BSLASHeqref] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange] = ACTIONS(12429), + [anon_sym_BSLASHCrefrange] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewlabel] = ACTIONS(12429), + [anon_sym_BSLASHnewcommand] = ACTIONS(12429), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12429), + [anon_sym_BSLASHgls] = ACTIONS(12429), + [anon_sym_BSLASHGls] = ACTIONS(12429), + [anon_sym_BSLASHGLS] = ACTIONS(12429), + [anon_sym_BSLASHglspl] = ACTIONS(12429), + [anon_sym_BSLASHGlspl] = ACTIONS(12429), + [anon_sym_BSLASHGLSpl] = ACTIONS(12429), + [anon_sym_BSLASHglsdisp] = ACTIONS(12429), + [anon_sym_BSLASHglslink] = ACTIONS(12429), + [anon_sym_BSLASHglstext] = ACTIONS(12429), + [anon_sym_BSLASHGlstext] = ACTIONS(12429), + [anon_sym_BSLASHGLStext] = ACTIONS(12429), + [anon_sym_BSLASHglsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12429), + [anon_sym_BSLASHglsplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSplural] = ACTIONS(12429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHglsname] = ACTIONS(12429), + [anon_sym_BSLASHGlsname] = ACTIONS(12429), + [anon_sym_BSLASHGLSname] = ACTIONS(12429), + [anon_sym_BSLASHglssymbol] = ACTIONS(12429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12429), + [anon_sym_BSLASHglsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12429), + [anon_sym_BSLASHglsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12429), + [anon_sym_BSLASHglsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12429), + [anon_sym_BSLASHglsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12429), + [anon_sym_BSLASHglsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12429), + [anon_sym_BSLASHnewacronym] = ACTIONS(12429), + [anon_sym_BSLASHacrshort] = ACTIONS(12429), + [anon_sym_BSLASHAcrshort] = ACTIONS(12429), + [anon_sym_BSLASHACRshort] = ACTIONS(12429), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12429), + [anon_sym_BSLASHacrlong] = ACTIONS(12429), + [anon_sym_BSLASHAcrlong] = ACTIONS(12429), + [anon_sym_BSLASHACRlong] = ACTIONS(12429), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12429), + [anon_sym_BSLASHacrfull] = ACTIONS(12429), + [anon_sym_BSLASHAcrfull] = ACTIONS(12429), + [anon_sym_BSLASHACRfull] = ACTIONS(12429), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12429), + [anon_sym_BSLASHacs] = ACTIONS(12429), + [anon_sym_BSLASHAcs] = ACTIONS(12429), + [anon_sym_BSLASHacsp] = ACTIONS(12429), + [anon_sym_BSLASHAcsp] = ACTIONS(12429), + [anon_sym_BSLASHacl] = ACTIONS(12429), + [anon_sym_BSLASHAcl] = ACTIONS(12429), + [anon_sym_BSLASHaclp] = ACTIONS(12429), + [anon_sym_BSLASHAclp] = ACTIONS(12429), + [anon_sym_BSLASHacf] = ACTIONS(12429), + [anon_sym_BSLASHAcf] = ACTIONS(12429), + [anon_sym_BSLASHacfp] = ACTIONS(12429), + [anon_sym_BSLASHAcfp] = ACTIONS(12429), + [anon_sym_BSLASHac] = ACTIONS(12429), + [anon_sym_BSLASHAc] = ACTIONS(12429), + [anon_sym_BSLASHacp] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12429), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12429), + [anon_sym_BSLASHcolor] = ACTIONS(12429), + [anon_sym_BSLASHcolorbox] = ACTIONS(12429), + [anon_sym_BSLASHtextcolor] = ACTIONS(12429), + [anon_sym_BSLASHpagecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12429), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12429), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12429), + }, + [1569] = { + [sym_generic_command_name] = ACTIONS(12433), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12433), + [aux_sym_subparagraph_token1] = ACTIONS(12433), + [anon_sym_BSLASHitem] = ACTIONS(12433), + [anon_sym_LBRACK] = ACTIONS(12431), + [anon_sym_RBRACK] = ACTIONS(12431), + [anon_sym_LBRACE] = ACTIONS(12431), + [anon_sym_RBRACE] = ACTIONS(12431), + [anon_sym_LPAREN] = ACTIONS(12431), + [anon_sym_COMMA] = ACTIONS(12431), + [anon_sym_EQ] = ACTIONS(12431), + [sym_word] = ACTIONS(12431), + [sym_param] = ACTIONS(12431), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12431), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12431), + [anon_sym_DOLLAR] = ACTIONS(12433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12431), + [anon_sym_BSLASHbegin] = ACTIONS(12433), + [anon_sym_BSLASHcaption] = ACTIONS(12433), + [anon_sym_BSLASHcite] = ACTIONS(12433), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCite] = ACTIONS(12433), + [anon_sym_BSLASHnocite] = ACTIONS(12433), + [anon_sym_BSLASHcitet] = ACTIONS(12433), + [anon_sym_BSLASHcitep] = ACTIONS(12433), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteauthor] = ACTIONS(12433), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12433), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitetitle] = ACTIONS(12433), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteyear] = ACTIONS(12433), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitedate] = ACTIONS(12433), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteurl] = ACTIONS(12433), + [anon_sym_BSLASHfullcite] = ACTIONS(12433), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12433), + [anon_sym_BSLASHcitealt] = ACTIONS(12433), + [anon_sym_BSLASHcitealp] = ACTIONS(12433), + [anon_sym_BSLASHcitetext] = ACTIONS(12433), + [anon_sym_BSLASHparencite] = ACTIONS(12433), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHParencite] = ACTIONS(12433), + [anon_sym_BSLASHfootcite] = ACTIONS(12433), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12433), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12433), + [anon_sym_BSLASHtextcite] = ACTIONS(12433), + [anon_sym_BSLASHTextcite] = ACTIONS(12433), + [anon_sym_BSLASHsmartcite] = ACTIONS(12433), + [anon_sym_BSLASHSmartcite] = ACTIONS(12433), + [anon_sym_BSLASHsupercite] = ACTIONS(12433), + [anon_sym_BSLASHautocite] = ACTIONS(12433), + [anon_sym_BSLASHAutocite] = ACTIONS(12433), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHvolcite] = ACTIONS(12433), + [anon_sym_BSLASHVolcite] = ACTIONS(12433), + [anon_sym_BSLASHpvolcite] = ACTIONS(12433), + [anon_sym_BSLASHPvolcite] = ACTIONS(12433), + [anon_sym_BSLASHfvolcite] = ACTIONS(12433), + [anon_sym_BSLASHftvolcite] = ACTIONS(12433), + [anon_sym_BSLASHsvolcite] = ACTIONS(12433), + [anon_sym_BSLASHSvolcite] = ACTIONS(12433), + [anon_sym_BSLASHtvolcite] = ACTIONS(12433), + [anon_sym_BSLASHTvolcite] = ACTIONS(12433), + [anon_sym_BSLASHavolcite] = ACTIONS(12433), + [anon_sym_BSLASHAvolcite] = ACTIONS(12433), + [anon_sym_BSLASHnotecite] = ACTIONS(12433), + [anon_sym_BSLASHpnotecite] = ACTIONS(12433), + [anon_sym_BSLASHPnotecite] = ACTIONS(12433), + [anon_sym_BSLASHfnotecite] = ACTIONS(12433), + [anon_sym_BSLASHusepackage] = ACTIONS(12433), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12433), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12433), + [anon_sym_BSLASHinclude] = ACTIONS(12433), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12433), + [anon_sym_BSLASHinput] = ACTIONS(12433), + [anon_sym_BSLASHsubfile] = ACTIONS(12433), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12433), + [anon_sym_BSLASHbibliography] = ACTIONS(12433), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12433), + [anon_sym_BSLASHincludesvg] = ACTIONS(12433), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12433), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12433), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12433), + [anon_sym_BSLASHimport] = ACTIONS(12433), + [anon_sym_BSLASHsubimport] = ACTIONS(12433), + [anon_sym_BSLASHinputfrom] = ACTIONS(12433), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12433), + [anon_sym_BSLASHincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHlabel] = ACTIONS(12433), + [anon_sym_BSLASHref] = ACTIONS(12433), + [anon_sym_BSLASHvref] = ACTIONS(12433), + [anon_sym_BSLASHVref] = ACTIONS(12433), + [anon_sym_BSLASHautoref] = ACTIONS(12433), + [anon_sym_BSLASHpageref] = ACTIONS(12433), + [anon_sym_BSLASHcref] = ACTIONS(12433), + [anon_sym_BSLASHCref] = ACTIONS(12433), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnameCref] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHlabelcref] = ACTIONS(12433), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12433), + [anon_sym_BSLASHeqref] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange] = ACTIONS(12433), + [anon_sym_BSLASHCrefrange] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewlabel] = ACTIONS(12433), + [anon_sym_BSLASHnewcommand] = ACTIONS(12433), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12433), + [anon_sym_BSLASHgls] = ACTIONS(12433), + [anon_sym_BSLASHGls] = ACTIONS(12433), + [anon_sym_BSLASHGLS] = ACTIONS(12433), + [anon_sym_BSLASHglspl] = ACTIONS(12433), + [anon_sym_BSLASHGlspl] = ACTIONS(12433), + [anon_sym_BSLASHGLSpl] = ACTIONS(12433), + [anon_sym_BSLASHglsdisp] = ACTIONS(12433), + [anon_sym_BSLASHglslink] = ACTIONS(12433), + [anon_sym_BSLASHglstext] = ACTIONS(12433), + [anon_sym_BSLASHGlstext] = ACTIONS(12433), + [anon_sym_BSLASHGLStext] = ACTIONS(12433), + [anon_sym_BSLASHglsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12433), + [anon_sym_BSLASHglsplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSplural] = ACTIONS(12433), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHglsname] = ACTIONS(12433), + [anon_sym_BSLASHGlsname] = ACTIONS(12433), + [anon_sym_BSLASHGLSname] = ACTIONS(12433), + [anon_sym_BSLASHglssymbol] = ACTIONS(12433), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12433), + [anon_sym_BSLASHglsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12433), + [anon_sym_BSLASHglsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12433), + [anon_sym_BSLASHglsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12433), + [anon_sym_BSLASHglsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12433), + [anon_sym_BSLASHglsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12433), + [anon_sym_BSLASHnewacronym] = ACTIONS(12433), + [anon_sym_BSLASHacrshort] = ACTIONS(12433), + [anon_sym_BSLASHAcrshort] = ACTIONS(12433), + [anon_sym_BSLASHACRshort] = ACTIONS(12433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12433), + [anon_sym_BSLASHacrlong] = ACTIONS(12433), + [anon_sym_BSLASHAcrlong] = ACTIONS(12433), + [anon_sym_BSLASHACRlong] = ACTIONS(12433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12433), + [anon_sym_BSLASHacrfull] = ACTIONS(12433), + [anon_sym_BSLASHAcrfull] = ACTIONS(12433), + [anon_sym_BSLASHACRfull] = ACTIONS(12433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12433), + [anon_sym_BSLASHacs] = ACTIONS(12433), + [anon_sym_BSLASHAcs] = ACTIONS(12433), + [anon_sym_BSLASHacsp] = ACTIONS(12433), + [anon_sym_BSLASHAcsp] = ACTIONS(12433), + [anon_sym_BSLASHacl] = ACTIONS(12433), + [anon_sym_BSLASHAcl] = ACTIONS(12433), + [anon_sym_BSLASHaclp] = ACTIONS(12433), + [anon_sym_BSLASHAclp] = ACTIONS(12433), + [anon_sym_BSLASHacf] = ACTIONS(12433), + [anon_sym_BSLASHAcf] = ACTIONS(12433), + [anon_sym_BSLASHacfp] = ACTIONS(12433), + [anon_sym_BSLASHAcfp] = ACTIONS(12433), + [anon_sym_BSLASHac] = ACTIONS(12433), + [anon_sym_BSLASHAc] = ACTIONS(12433), + [anon_sym_BSLASHacp] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12433), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12433), + [anon_sym_BSLASHcolor] = ACTIONS(12433), + [anon_sym_BSLASHcolorbox] = ACTIONS(12433), + [anon_sym_BSLASHtextcolor] = ACTIONS(12433), + [anon_sym_BSLASHpagecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12433), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12433), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12433), + }, + [1570] = { + [sym_generic_command_name] = ACTIONS(12227), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12227), + [aux_sym_subparagraph_token1] = ACTIONS(12227), + [anon_sym_BSLASHitem] = ACTIONS(12227), + [anon_sym_LBRACK] = ACTIONS(12225), + [anon_sym_RBRACK] = ACTIONS(12225), + [anon_sym_LBRACE] = ACTIONS(12225), + [anon_sym_RBRACE] = ACTIONS(12225), + [anon_sym_LPAREN] = ACTIONS(12225), + [anon_sym_COMMA] = ACTIONS(12225), + [anon_sym_EQ] = ACTIONS(12225), + [sym_word] = ACTIONS(12225), + [sym_param] = ACTIONS(12225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12225), + [anon_sym_DOLLAR] = ACTIONS(12227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12225), + [anon_sym_BSLASHbegin] = ACTIONS(12227), + [anon_sym_BSLASHcaption] = ACTIONS(12227), + [anon_sym_BSLASHcite] = ACTIONS(12227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCite] = ACTIONS(12227), + [anon_sym_BSLASHnocite] = ACTIONS(12227), + [anon_sym_BSLASHcitet] = ACTIONS(12227), + [anon_sym_BSLASHcitep] = ACTIONS(12227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteauthor] = ACTIONS(12227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitetitle] = ACTIONS(12227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteyear] = ACTIONS(12227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitedate] = ACTIONS(12227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteurl] = ACTIONS(12227), + [anon_sym_BSLASHfullcite] = ACTIONS(12227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12227), + [anon_sym_BSLASHcitealt] = ACTIONS(12227), + [anon_sym_BSLASHcitealp] = ACTIONS(12227), + [anon_sym_BSLASHcitetext] = ACTIONS(12227), + [anon_sym_BSLASHparencite] = ACTIONS(12227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHParencite] = ACTIONS(12227), + [anon_sym_BSLASHfootcite] = ACTIONS(12227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12227), + [anon_sym_BSLASHtextcite] = ACTIONS(12227), + [anon_sym_BSLASHTextcite] = ACTIONS(12227), + [anon_sym_BSLASHsmartcite] = ACTIONS(12227), + [anon_sym_BSLASHSmartcite] = ACTIONS(12227), + [anon_sym_BSLASHsupercite] = ACTIONS(12227), + [anon_sym_BSLASHautocite] = ACTIONS(12227), + [anon_sym_BSLASHAutocite] = ACTIONS(12227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHvolcite] = ACTIONS(12227), + [anon_sym_BSLASHVolcite] = ACTIONS(12227), + [anon_sym_BSLASHpvolcite] = ACTIONS(12227), + [anon_sym_BSLASHPvolcite] = ACTIONS(12227), + [anon_sym_BSLASHfvolcite] = ACTIONS(12227), + [anon_sym_BSLASHftvolcite] = ACTIONS(12227), + [anon_sym_BSLASHsvolcite] = ACTIONS(12227), + [anon_sym_BSLASHSvolcite] = ACTIONS(12227), + [anon_sym_BSLASHtvolcite] = ACTIONS(12227), + [anon_sym_BSLASHTvolcite] = ACTIONS(12227), + [anon_sym_BSLASHavolcite] = ACTIONS(12227), + [anon_sym_BSLASHAvolcite] = ACTIONS(12227), + [anon_sym_BSLASHnotecite] = ACTIONS(12227), + [anon_sym_BSLASHpnotecite] = ACTIONS(12227), + [anon_sym_BSLASHPnotecite] = ACTIONS(12227), + [anon_sym_BSLASHfnotecite] = ACTIONS(12227), + [anon_sym_BSLASHusepackage] = ACTIONS(12227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12227), + [anon_sym_BSLASHinclude] = ACTIONS(12227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12227), + [anon_sym_BSLASHinput] = ACTIONS(12227), + [anon_sym_BSLASHsubfile] = ACTIONS(12227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12227), + [anon_sym_BSLASHbibliography] = ACTIONS(12227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12227), + [anon_sym_BSLASHincludesvg] = ACTIONS(12227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12227), + [anon_sym_BSLASHimport] = ACTIONS(12227), + [anon_sym_BSLASHsubimport] = ACTIONS(12227), + [anon_sym_BSLASHinputfrom] = ACTIONS(12227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12227), + [anon_sym_BSLASHincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHlabel] = ACTIONS(12227), + [anon_sym_BSLASHref] = ACTIONS(12227), + [anon_sym_BSLASHvref] = ACTIONS(12227), + [anon_sym_BSLASHVref] = ACTIONS(12227), + [anon_sym_BSLASHautoref] = ACTIONS(12227), + [anon_sym_BSLASHpageref] = ACTIONS(12227), + [anon_sym_BSLASHcref] = ACTIONS(12227), + [anon_sym_BSLASHCref] = ACTIONS(12227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnameCref] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHlabelcref] = ACTIONS(12227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12227), + [anon_sym_BSLASHeqref] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange] = ACTIONS(12227), + [anon_sym_BSLASHCrefrange] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewlabel] = ACTIONS(12227), + [anon_sym_BSLASHnewcommand] = ACTIONS(12227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12227), + [anon_sym_BSLASHgls] = ACTIONS(12227), + [anon_sym_BSLASHGls] = ACTIONS(12227), + [anon_sym_BSLASHGLS] = ACTIONS(12227), + [anon_sym_BSLASHglspl] = ACTIONS(12227), + [anon_sym_BSLASHGlspl] = ACTIONS(12227), + [anon_sym_BSLASHGLSpl] = ACTIONS(12227), + [anon_sym_BSLASHglsdisp] = ACTIONS(12227), + [anon_sym_BSLASHglslink] = ACTIONS(12227), + [anon_sym_BSLASHglstext] = ACTIONS(12227), + [anon_sym_BSLASHGlstext] = ACTIONS(12227), + [anon_sym_BSLASHGLStext] = ACTIONS(12227), + [anon_sym_BSLASHglsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12227), + [anon_sym_BSLASHglsplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSplural] = ACTIONS(12227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHglsname] = ACTIONS(12227), + [anon_sym_BSLASHGlsname] = ACTIONS(12227), + [anon_sym_BSLASHGLSname] = ACTIONS(12227), + [anon_sym_BSLASHglssymbol] = ACTIONS(12227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12227), + [anon_sym_BSLASHglsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12227), + [anon_sym_BSLASHglsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12227), + [anon_sym_BSLASHglsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12227), + [anon_sym_BSLASHglsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12227), + [anon_sym_BSLASHglsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12227), + [anon_sym_BSLASHnewacronym] = ACTIONS(12227), + [anon_sym_BSLASHacrshort] = ACTIONS(12227), + [anon_sym_BSLASHAcrshort] = ACTIONS(12227), + [anon_sym_BSLASHACRshort] = ACTIONS(12227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12227), + [anon_sym_BSLASHacrlong] = ACTIONS(12227), + [anon_sym_BSLASHAcrlong] = ACTIONS(12227), + [anon_sym_BSLASHACRlong] = ACTIONS(12227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12227), + [anon_sym_BSLASHacrfull] = ACTIONS(12227), + [anon_sym_BSLASHAcrfull] = ACTIONS(12227), + [anon_sym_BSLASHACRfull] = ACTIONS(12227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12227), + [anon_sym_BSLASHacs] = ACTIONS(12227), + [anon_sym_BSLASHAcs] = ACTIONS(12227), + [anon_sym_BSLASHacsp] = ACTIONS(12227), + [anon_sym_BSLASHAcsp] = ACTIONS(12227), + [anon_sym_BSLASHacl] = ACTIONS(12227), + [anon_sym_BSLASHAcl] = ACTIONS(12227), + [anon_sym_BSLASHaclp] = ACTIONS(12227), + [anon_sym_BSLASHAclp] = ACTIONS(12227), + [anon_sym_BSLASHacf] = ACTIONS(12227), + [anon_sym_BSLASHAcf] = ACTIONS(12227), + [anon_sym_BSLASHacfp] = ACTIONS(12227), + [anon_sym_BSLASHAcfp] = ACTIONS(12227), + [anon_sym_BSLASHac] = ACTIONS(12227), + [anon_sym_BSLASHAc] = ACTIONS(12227), + [anon_sym_BSLASHacp] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12227), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12227), + [anon_sym_BSLASHcolor] = ACTIONS(12227), + [anon_sym_BSLASHcolorbox] = ACTIONS(12227), + [anon_sym_BSLASHtextcolor] = ACTIONS(12227), + [anon_sym_BSLASHpagecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12227), + }, + [1571] = { + [sym_generic_command_name] = ACTIONS(12441), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12441), + [aux_sym_subparagraph_token1] = ACTIONS(12441), + [anon_sym_BSLASHitem] = ACTIONS(12441), + [anon_sym_LBRACK] = ACTIONS(12439), + [anon_sym_RBRACK] = ACTIONS(12439), + [anon_sym_LBRACE] = ACTIONS(12439), + [anon_sym_RBRACE] = ACTIONS(12439), + [anon_sym_LPAREN] = ACTIONS(12439), + [anon_sym_COMMA] = ACTIONS(12439), + [anon_sym_EQ] = ACTIONS(12439), + [sym_word] = ACTIONS(12439), + [sym_param] = ACTIONS(12439), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12439), + [anon_sym_DOLLAR] = ACTIONS(12441), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12439), + [anon_sym_BSLASHbegin] = ACTIONS(12441), + [anon_sym_BSLASHcaption] = ACTIONS(12441), + [anon_sym_BSLASHcite] = ACTIONS(12441), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCite] = ACTIONS(12441), + [anon_sym_BSLASHnocite] = ACTIONS(12441), + [anon_sym_BSLASHcitet] = ACTIONS(12441), + [anon_sym_BSLASHcitep] = ACTIONS(12441), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteauthor] = ACTIONS(12441), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12441), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitetitle] = ACTIONS(12441), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteyear] = ACTIONS(12441), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitedate] = ACTIONS(12441), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteurl] = ACTIONS(12441), + [anon_sym_BSLASHfullcite] = ACTIONS(12441), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12441), + [anon_sym_BSLASHcitealt] = ACTIONS(12441), + [anon_sym_BSLASHcitealp] = ACTIONS(12441), + [anon_sym_BSLASHcitetext] = ACTIONS(12441), + [anon_sym_BSLASHparencite] = ACTIONS(12441), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHParencite] = ACTIONS(12441), + [anon_sym_BSLASHfootcite] = ACTIONS(12441), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12441), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12441), + [anon_sym_BSLASHtextcite] = ACTIONS(12441), + [anon_sym_BSLASHTextcite] = ACTIONS(12441), + [anon_sym_BSLASHsmartcite] = ACTIONS(12441), + [anon_sym_BSLASHSmartcite] = ACTIONS(12441), + [anon_sym_BSLASHsupercite] = ACTIONS(12441), + [anon_sym_BSLASHautocite] = ACTIONS(12441), + [anon_sym_BSLASHAutocite] = ACTIONS(12441), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHvolcite] = ACTIONS(12441), + [anon_sym_BSLASHVolcite] = ACTIONS(12441), + [anon_sym_BSLASHpvolcite] = ACTIONS(12441), + [anon_sym_BSLASHPvolcite] = ACTIONS(12441), + [anon_sym_BSLASHfvolcite] = ACTIONS(12441), + [anon_sym_BSLASHftvolcite] = ACTIONS(12441), + [anon_sym_BSLASHsvolcite] = ACTIONS(12441), + [anon_sym_BSLASHSvolcite] = ACTIONS(12441), + [anon_sym_BSLASHtvolcite] = ACTIONS(12441), + [anon_sym_BSLASHTvolcite] = ACTIONS(12441), + [anon_sym_BSLASHavolcite] = ACTIONS(12441), + [anon_sym_BSLASHAvolcite] = ACTIONS(12441), + [anon_sym_BSLASHnotecite] = ACTIONS(12441), + [anon_sym_BSLASHpnotecite] = ACTIONS(12441), + [anon_sym_BSLASHPnotecite] = ACTIONS(12441), + [anon_sym_BSLASHfnotecite] = ACTIONS(12441), + [anon_sym_BSLASHusepackage] = ACTIONS(12441), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12441), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12441), + [anon_sym_BSLASHinclude] = ACTIONS(12441), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12441), + [anon_sym_BSLASHinput] = ACTIONS(12441), + [anon_sym_BSLASHsubfile] = ACTIONS(12441), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12441), + [anon_sym_BSLASHbibliography] = ACTIONS(12441), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12441), + [anon_sym_BSLASHincludesvg] = ACTIONS(12441), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12441), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12441), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12441), + [anon_sym_BSLASHimport] = ACTIONS(12441), + [anon_sym_BSLASHsubimport] = ACTIONS(12441), + [anon_sym_BSLASHinputfrom] = ACTIONS(12441), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12441), + [anon_sym_BSLASHincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHlabel] = ACTIONS(12441), + [anon_sym_BSLASHref] = ACTIONS(12441), + [anon_sym_BSLASHvref] = ACTIONS(12441), + [anon_sym_BSLASHVref] = ACTIONS(12441), + [anon_sym_BSLASHautoref] = ACTIONS(12441), + [anon_sym_BSLASHpageref] = ACTIONS(12441), + [anon_sym_BSLASHcref] = ACTIONS(12441), + [anon_sym_BSLASHCref] = ACTIONS(12441), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnameCref] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHlabelcref] = ACTIONS(12441), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12441), + [anon_sym_BSLASHeqref] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange] = ACTIONS(12441), + [anon_sym_BSLASHCrefrange] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewlabel] = ACTIONS(12441), + [anon_sym_BSLASHnewcommand] = ACTIONS(12441), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12441), + [anon_sym_BSLASHgls] = ACTIONS(12441), + [anon_sym_BSLASHGls] = ACTIONS(12441), + [anon_sym_BSLASHGLS] = ACTIONS(12441), + [anon_sym_BSLASHglspl] = ACTIONS(12441), + [anon_sym_BSLASHGlspl] = ACTIONS(12441), + [anon_sym_BSLASHGLSpl] = ACTIONS(12441), + [anon_sym_BSLASHglsdisp] = ACTIONS(12441), + [anon_sym_BSLASHglslink] = ACTIONS(12441), + [anon_sym_BSLASHglstext] = ACTIONS(12441), + [anon_sym_BSLASHGlstext] = ACTIONS(12441), + [anon_sym_BSLASHGLStext] = ACTIONS(12441), + [anon_sym_BSLASHglsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12441), + [anon_sym_BSLASHglsplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSplural] = ACTIONS(12441), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHglsname] = ACTIONS(12441), + [anon_sym_BSLASHGlsname] = ACTIONS(12441), + [anon_sym_BSLASHGLSname] = ACTIONS(12441), + [anon_sym_BSLASHglssymbol] = ACTIONS(12441), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12441), + [anon_sym_BSLASHglsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12441), + [anon_sym_BSLASHglsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12441), + [anon_sym_BSLASHglsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12441), + [anon_sym_BSLASHglsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12441), + [anon_sym_BSLASHglsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12441), + [anon_sym_BSLASHnewacronym] = ACTIONS(12441), + [anon_sym_BSLASHacrshort] = ACTIONS(12441), + [anon_sym_BSLASHAcrshort] = ACTIONS(12441), + [anon_sym_BSLASHACRshort] = ACTIONS(12441), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12441), + [anon_sym_BSLASHacrlong] = ACTIONS(12441), + [anon_sym_BSLASHAcrlong] = ACTIONS(12441), + [anon_sym_BSLASHACRlong] = ACTIONS(12441), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12441), + [anon_sym_BSLASHacrfull] = ACTIONS(12441), + [anon_sym_BSLASHAcrfull] = ACTIONS(12441), + [anon_sym_BSLASHACRfull] = ACTIONS(12441), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12441), + [anon_sym_BSLASHacs] = ACTIONS(12441), + [anon_sym_BSLASHAcs] = ACTIONS(12441), + [anon_sym_BSLASHacsp] = ACTIONS(12441), + [anon_sym_BSLASHAcsp] = ACTIONS(12441), + [anon_sym_BSLASHacl] = ACTIONS(12441), + [anon_sym_BSLASHAcl] = ACTIONS(12441), + [anon_sym_BSLASHaclp] = ACTIONS(12441), + [anon_sym_BSLASHAclp] = ACTIONS(12441), + [anon_sym_BSLASHacf] = ACTIONS(12441), + [anon_sym_BSLASHAcf] = ACTIONS(12441), + [anon_sym_BSLASHacfp] = ACTIONS(12441), + [anon_sym_BSLASHAcfp] = ACTIONS(12441), + [anon_sym_BSLASHac] = ACTIONS(12441), + [anon_sym_BSLASHAc] = ACTIONS(12441), + [anon_sym_BSLASHacp] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12441), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12441), + [anon_sym_BSLASHcolor] = ACTIONS(12441), + [anon_sym_BSLASHcolorbox] = ACTIONS(12441), + [anon_sym_BSLASHtextcolor] = ACTIONS(12441), + [anon_sym_BSLASHpagecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12441), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12441), + }, + [1572] = { + [sym_generic_command_name] = ACTIONS(12445), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12445), + [aux_sym_subparagraph_token1] = ACTIONS(12445), + [anon_sym_BSLASHitem] = ACTIONS(12445), + [anon_sym_LBRACK] = ACTIONS(12443), + [anon_sym_RBRACK] = ACTIONS(12443), + [anon_sym_LBRACE] = ACTIONS(12443), + [anon_sym_RBRACE] = ACTIONS(12443), + [anon_sym_LPAREN] = ACTIONS(12443), + [anon_sym_COMMA] = ACTIONS(12443), + [anon_sym_EQ] = ACTIONS(12443), + [sym_word] = ACTIONS(12443), + [sym_param] = ACTIONS(12443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12443), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12443), + [anon_sym_DOLLAR] = ACTIONS(12445), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12443), + [anon_sym_BSLASHbegin] = ACTIONS(12445), + [anon_sym_BSLASHcaption] = ACTIONS(12445), + [anon_sym_BSLASHcite] = ACTIONS(12445), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCite] = ACTIONS(12445), + [anon_sym_BSLASHnocite] = ACTIONS(12445), + [anon_sym_BSLASHcitet] = ACTIONS(12445), + [anon_sym_BSLASHcitep] = ACTIONS(12445), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteauthor] = ACTIONS(12445), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12445), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitetitle] = ACTIONS(12445), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteyear] = ACTIONS(12445), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitedate] = ACTIONS(12445), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteurl] = ACTIONS(12445), + [anon_sym_BSLASHfullcite] = ACTIONS(12445), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12445), + [anon_sym_BSLASHcitealt] = ACTIONS(12445), + [anon_sym_BSLASHcitealp] = ACTIONS(12445), + [anon_sym_BSLASHcitetext] = ACTIONS(12445), + [anon_sym_BSLASHparencite] = ACTIONS(12445), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHParencite] = ACTIONS(12445), + [anon_sym_BSLASHfootcite] = ACTIONS(12445), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12445), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12445), + [anon_sym_BSLASHtextcite] = ACTIONS(12445), + [anon_sym_BSLASHTextcite] = ACTIONS(12445), + [anon_sym_BSLASHsmartcite] = ACTIONS(12445), + [anon_sym_BSLASHSmartcite] = ACTIONS(12445), + [anon_sym_BSLASHsupercite] = ACTIONS(12445), + [anon_sym_BSLASHautocite] = ACTIONS(12445), + [anon_sym_BSLASHAutocite] = ACTIONS(12445), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHvolcite] = ACTIONS(12445), + [anon_sym_BSLASHVolcite] = ACTIONS(12445), + [anon_sym_BSLASHpvolcite] = ACTIONS(12445), + [anon_sym_BSLASHPvolcite] = ACTIONS(12445), + [anon_sym_BSLASHfvolcite] = ACTIONS(12445), + [anon_sym_BSLASHftvolcite] = ACTIONS(12445), + [anon_sym_BSLASHsvolcite] = ACTIONS(12445), + [anon_sym_BSLASHSvolcite] = ACTIONS(12445), + [anon_sym_BSLASHtvolcite] = ACTIONS(12445), + [anon_sym_BSLASHTvolcite] = ACTIONS(12445), + [anon_sym_BSLASHavolcite] = ACTIONS(12445), + [anon_sym_BSLASHAvolcite] = ACTIONS(12445), + [anon_sym_BSLASHnotecite] = ACTIONS(12445), + [anon_sym_BSLASHpnotecite] = ACTIONS(12445), + [anon_sym_BSLASHPnotecite] = ACTIONS(12445), + [anon_sym_BSLASHfnotecite] = ACTIONS(12445), + [anon_sym_BSLASHusepackage] = ACTIONS(12445), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12445), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12445), + [anon_sym_BSLASHinclude] = ACTIONS(12445), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12445), + [anon_sym_BSLASHinput] = ACTIONS(12445), + [anon_sym_BSLASHsubfile] = ACTIONS(12445), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12445), + [anon_sym_BSLASHbibliography] = ACTIONS(12445), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12445), + [anon_sym_BSLASHincludesvg] = ACTIONS(12445), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12445), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12445), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12445), + [anon_sym_BSLASHimport] = ACTIONS(12445), + [anon_sym_BSLASHsubimport] = ACTIONS(12445), + [anon_sym_BSLASHinputfrom] = ACTIONS(12445), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12445), + [anon_sym_BSLASHincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHlabel] = ACTIONS(12445), + [anon_sym_BSLASHref] = ACTIONS(12445), + [anon_sym_BSLASHvref] = ACTIONS(12445), + [anon_sym_BSLASHVref] = ACTIONS(12445), + [anon_sym_BSLASHautoref] = ACTIONS(12445), + [anon_sym_BSLASHpageref] = ACTIONS(12445), + [anon_sym_BSLASHcref] = ACTIONS(12445), + [anon_sym_BSLASHCref] = ACTIONS(12445), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnameCref] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHlabelcref] = ACTIONS(12445), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12445), + [anon_sym_BSLASHeqref] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange] = ACTIONS(12445), + [anon_sym_BSLASHCrefrange] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewlabel] = ACTIONS(12445), + [anon_sym_BSLASHnewcommand] = ACTIONS(12445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12445), + [anon_sym_BSLASHgls] = ACTIONS(12445), + [anon_sym_BSLASHGls] = ACTIONS(12445), + [anon_sym_BSLASHGLS] = ACTIONS(12445), + [anon_sym_BSLASHglspl] = ACTIONS(12445), + [anon_sym_BSLASHGlspl] = ACTIONS(12445), + [anon_sym_BSLASHGLSpl] = ACTIONS(12445), + [anon_sym_BSLASHglsdisp] = ACTIONS(12445), + [anon_sym_BSLASHglslink] = ACTIONS(12445), + [anon_sym_BSLASHglstext] = ACTIONS(12445), + [anon_sym_BSLASHGlstext] = ACTIONS(12445), + [anon_sym_BSLASHGLStext] = ACTIONS(12445), + [anon_sym_BSLASHglsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12445), + [anon_sym_BSLASHglsplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSplural] = ACTIONS(12445), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHglsname] = ACTIONS(12445), + [anon_sym_BSLASHGlsname] = ACTIONS(12445), + [anon_sym_BSLASHGLSname] = ACTIONS(12445), + [anon_sym_BSLASHglssymbol] = ACTIONS(12445), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12445), + [anon_sym_BSLASHglsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12445), + [anon_sym_BSLASHglsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12445), + [anon_sym_BSLASHglsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12445), + [anon_sym_BSLASHglsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12445), + [anon_sym_BSLASHglsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12445), + [anon_sym_BSLASHnewacronym] = ACTIONS(12445), + [anon_sym_BSLASHacrshort] = ACTIONS(12445), + [anon_sym_BSLASHAcrshort] = ACTIONS(12445), + [anon_sym_BSLASHACRshort] = ACTIONS(12445), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12445), + [anon_sym_BSLASHacrlong] = ACTIONS(12445), + [anon_sym_BSLASHAcrlong] = ACTIONS(12445), + [anon_sym_BSLASHACRlong] = ACTIONS(12445), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12445), + [anon_sym_BSLASHacrfull] = ACTIONS(12445), + [anon_sym_BSLASHAcrfull] = ACTIONS(12445), + [anon_sym_BSLASHACRfull] = ACTIONS(12445), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12445), + [anon_sym_BSLASHacs] = ACTIONS(12445), + [anon_sym_BSLASHAcs] = ACTIONS(12445), + [anon_sym_BSLASHacsp] = ACTIONS(12445), + [anon_sym_BSLASHAcsp] = ACTIONS(12445), + [anon_sym_BSLASHacl] = ACTIONS(12445), + [anon_sym_BSLASHAcl] = ACTIONS(12445), + [anon_sym_BSLASHaclp] = ACTIONS(12445), + [anon_sym_BSLASHAclp] = ACTIONS(12445), + [anon_sym_BSLASHacf] = ACTIONS(12445), + [anon_sym_BSLASHAcf] = ACTIONS(12445), + [anon_sym_BSLASHacfp] = ACTIONS(12445), + [anon_sym_BSLASHAcfp] = ACTIONS(12445), + [anon_sym_BSLASHac] = ACTIONS(12445), + [anon_sym_BSLASHAc] = ACTIONS(12445), + [anon_sym_BSLASHacp] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12445), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12445), + [anon_sym_BSLASHcolor] = ACTIONS(12445), + [anon_sym_BSLASHcolorbox] = ACTIONS(12445), + [anon_sym_BSLASHtextcolor] = ACTIONS(12445), + [anon_sym_BSLASHpagecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12445), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12445), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12445), + }, + [1573] = { + [sym_generic_command_name] = ACTIONS(12449), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12449), + [aux_sym_subparagraph_token1] = ACTIONS(12449), + [anon_sym_BSLASHitem] = ACTIONS(12449), + [anon_sym_LBRACK] = ACTIONS(12447), + [anon_sym_RBRACK] = ACTIONS(12447), + [anon_sym_LBRACE] = ACTIONS(12447), + [anon_sym_RBRACE] = ACTIONS(12447), + [anon_sym_LPAREN] = ACTIONS(12447), + [anon_sym_COMMA] = ACTIONS(12447), + [anon_sym_EQ] = ACTIONS(12447), + [sym_word] = ACTIONS(12447), + [sym_param] = ACTIONS(12447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12447), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12447), + [anon_sym_DOLLAR] = ACTIONS(12449), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12447), + [anon_sym_BSLASHbegin] = ACTIONS(12449), + [anon_sym_BSLASHcaption] = ACTIONS(12449), + [anon_sym_BSLASHcite] = ACTIONS(12449), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCite] = ACTIONS(12449), + [anon_sym_BSLASHnocite] = ACTIONS(12449), + [anon_sym_BSLASHcitet] = ACTIONS(12449), + [anon_sym_BSLASHcitep] = ACTIONS(12449), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteauthor] = ACTIONS(12449), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12449), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitetitle] = ACTIONS(12449), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteyear] = ACTIONS(12449), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitedate] = ACTIONS(12449), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteurl] = ACTIONS(12449), + [anon_sym_BSLASHfullcite] = ACTIONS(12449), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12449), + [anon_sym_BSLASHcitealt] = ACTIONS(12449), + [anon_sym_BSLASHcitealp] = ACTIONS(12449), + [anon_sym_BSLASHcitetext] = ACTIONS(12449), + [anon_sym_BSLASHparencite] = ACTIONS(12449), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHParencite] = ACTIONS(12449), + [anon_sym_BSLASHfootcite] = ACTIONS(12449), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12449), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12449), + [anon_sym_BSLASHtextcite] = ACTIONS(12449), + [anon_sym_BSLASHTextcite] = ACTIONS(12449), + [anon_sym_BSLASHsmartcite] = ACTIONS(12449), + [anon_sym_BSLASHSmartcite] = ACTIONS(12449), + [anon_sym_BSLASHsupercite] = ACTIONS(12449), + [anon_sym_BSLASHautocite] = ACTIONS(12449), + [anon_sym_BSLASHAutocite] = ACTIONS(12449), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHvolcite] = ACTIONS(12449), + [anon_sym_BSLASHVolcite] = ACTIONS(12449), + [anon_sym_BSLASHpvolcite] = ACTIONS(12449), + [anon_sym_BSLASHPvolcite] = ACTIONS(12449), + [anon_sym_BSLASHfvolcite] = ACTIONS(12449), + [anon_sym_BSLASHftvolcite] = ACTIONS(12449), + [anon_sym_BSLASHsvolcite] = ACTIONS(12449), + [anon_sym_BSLASHSvolcite] = ACTIONS(12449), + [anon_sym_BSLASHtvolcite] = ACTIONS(12449), + [anon_sym_BSLASHTvolcite] = ACTIONS(12449), + [anon_sym_BSLASHavolcite] = ACTIONS(12449), + [anon_sym_BSLASHAvolcite] = ACTIONS(12449), + [anon_sym_BSLASHnotecite] = ACTIONS(12449), + [anon_sym_BSLASHpnotecite] = ACTIONS(12449), + [anon_sym_BSLASHPnotecite] = ACTIONS(12449), + [anon_sym_BSLASHfnotecite] = ACTIONS(12449), + [anon_sym_BSLASHusepackage] = ACTIONS(12449), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12449), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12449), + [anon_sym_BSLASHinclude] = ACTIONS(12449), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12449), + [anon_sym_BSLASHinput] = ACTIONS(12449), + [anon_sym_BSLASHsubfile] = ACTIONS(12449), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12449), + [anon_sym_BSLASHbibliography] = ACTIONS(12449), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12449), + [anon_sym_BSLASHincludesvg] = ACTIONS(12449), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12449), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12449), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12449), + [anon_sym_BSLASHimport] = ACTIONS(12449), + [anon_sym_BSLASHsubimport] = ACTIONS(12449), + [anon_sym_BSLASHinputfrom] = ACTIONS(12449), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12449), + [anon_sym_BSLASHincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHlabel] = ACTIONS(12449), + [anon_sym_BSLASHref] = ACTIONS(12449), + [anon_sym_BSLASHvref] = ACTIONS(12449), + [anon_sym_BSLASHVref] = ACTIONS(12449), + [anon_sym_BSLASHautoref] = ACTIONS(12449), + [anon_sym_BSLASHpageref] = ACTIONS(12449), + [anon_sym_BSLASHcref] = ACTIONS(12449), + [anon_sym_BSLASHCref] = ACTIONS(12449), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnameCref] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHlabelcref] = ACTIONS(12449), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12449), + [anon_sym_BSLASHeqref] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange] = ACTIONS(12449), + [anon_sym_BSLASHCrefrange] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewlabel] = ACTIONS(12449), + [anon_sym_BSLASHnewcommand] = ACTIONS(12449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12449), + [anon_sym_BSLASHgls] = ACTIONS(12449), + [anon_sym_BSLASHGls] = ACTIONS(12449), + [anon_sym_BSLASHGLS] = ACTIONS(12449), + [anon_sym_BSLASHglspl] = ACTIONS(12449), + [anon_sym_BSLASHGlspl] = ACTIONS(12449), + [anon_sym_BSLASHGLSpl] = ACTIONS(12449), + [anon_sym_BSLASHglsdisp] = ACTIONS(12449), + [anon_sym_BSLASHglslink] = ACTIONS(12449), + [anon_sym_BSLASHglstext] = ACTIONS(12449), + [anon_sym_BSLASHGlstext] = ACTIONS(12449), + [anon_sym_BSLASHGLStext] = ACTIONS(12449), + [anon_sym_BSLASHglsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12449), + [anon_sym_BSLASHglsplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSplural] = ACTIONS(12449), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHglsname] = ACTIONS(12449), + [anon_sym_BSLASHGlsname] = ACTIONS(12449), + [anon_sym_BSLASHGLSname] = ACTIONS(12449), + [anon_sym_BSLASHglssymbol] = ACTIONS(12449), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12449), + [anon_sym_BSLASHglsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12449), + [anon_sym_BSLASHglsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12449), + [anon_sym_BSLASHglsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12449), + [anon_sym_BSLASHglsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12449), + [anon_sym_BSLASHglsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12449), + [anon_sym_BSLASHnewacronym] = ACTIONS(12449), + [anon_sym_BSLASHacrshort] = ACTIONS(12449), + [anon_sym_BSLASHAcrshort] = ACTIONS(12449), + [anon_sym_BSLASHACRshort] = ACTIONS(12449), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12449), + [anon_sym_BSLASHacrlong] = ACTIONS(12449), + [anon_sym_BSLASHAcrlong] = ACTIONS(12449), + [anon_sym_BSLASHACRlong] = ACTIONS(12449), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12449), + [anon_sym_BSLASHacrfull] = ACTIONS(12449), + [anon_sym_BSLASHAcrfull] = ACTIONS(12449), + [anon_sym_BSLASHACRfull] = ACTIONS(12449), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12449), + [anon_sym_BSLASHacs] = ACTIONS(12449), + [anon_sym_BSLASHAcs] = ACTIONS(12449), + [anon_sym_BSLASHacsp] = ACTIONS(12449), + [anon_sym_BSLASHAcsp] = ACTIONS(12449), + [anon_sym_BSLASHacl] = ACTIONS(12449), + [anon_sym_BSLASHAcl] = ACTIONS(12449), + [anon_sym_BSLASHaclp] = ACTIONS(12449), + [anon_sym_BSLASHAclp] = ACTIONS(12449), + [anon_sym_BSLASHacf] = ACTIONS(12449), + [anon_sym_BSLASHAcf] = ACTIONS(12449), + [anon_sym_BSLASHacfp] = ACTIONS(12449), + [anon_sym_BSLASHAcfp] = ACTIONS(12449), + [anon_sym_BSLASHac] = ACTIONS(12449), + [anon_sym_BSLASHAc] = ACTIONS(12449), + [anon_sym_BSLASHacp] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12449), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12449), + [anon_sym_BSLASHcolor] = ACTIONS(12449), + [anon_sym_BSLASHcolorbox] = ACTIONS(12449), + [anon_sym_BSLASHtextcolor] = ACTIONS(12449), + [anon_sym_BSLASHpagecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12449), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12449), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12449), + }, + [1574] = { + [sym_generic_command_name] = ACTIONS(12453), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12453), + [aux_sym_subparagraph_token1] = ACTIONS(12453), + [anon_sym_BSLASHitem] = ACTIONS(12453), + [anon_sym_LBRACK] = ACTIONS(12451), + [anon_sym_RBRACK] = ACTIONS(12451), + [anon_sym_LBRACE] = ACTIONS(12451), + [anon_sym_RBRACE] = ACTIONS(12451), + [anon_sym_LPAREN] = ACTIONS(12451), + [anon_sym_COMMA] = ACTIONS(12451), + [anon_sym_EQ] = ACTIONS(12451), + [sym_word] = ACTIONS(12451), + [sym_param] = ACTIONS(12451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12451), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12451), + [anon_sym_DOLLAR] = ACTIONS(12453), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12451), + [anon_sym_BSLASHbegin] = ACTIONS(12453), + [anon_sym_BSLASHcaption] = ACTIONS(12453), + [anon_sym_BSLASHcite] = ACTIONS(12453), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCite] = ACTIONS(12453), + [anon_sym_BSLASHnocite] = ACTIONS(12453), + [anon_sym_BSLASHcitet] = ACTIONS(12453), + [anon_sym_BSLASHcitep] = ACTIONS(12453), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteauthor] = ACTIONS(12453), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12453), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitetitle] = ACTIONS(12453), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteyear] = ACTIONS(12453), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitedate] = ACTIONS(12453), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteurl] = ACTIONS(12453), + [anon_sym_BSLASHfullcite] = ACTIONS(12453), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12453), + [anon_sym_BSLASHcitealt] = ACTIONS(12453), + [anon_sym_BSLASHcitealp] = ACTIONS(12453), + [anon_sym_BSLASHcitetext] = ACTIONS(12453), + [anon_sym_BSLASHparencite] = ACTIONS(12453), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHParencite] = ACTIONS(12453), + [anon_sym_BSLASHfootcite] = ACTIONS(12453), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12453), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12453), + [anon_sym_BSLASHtextcite] = ACTIONS(12453), + [anon_sym_BSLASHTextcite] = ACTIONS(12453), + [anon_sym_BSLASHsmartcite] = ACTIONS(12453), + [anon_sym_BSLASHSmartcite] = ACTIONS(12453), + [anon_sym_BSLASHsupercite] = ACTIONS(12453), + [anon_sym_BSLASHautocite] = ACTIONS(12453), + [anon_sym_BSLASHAutocite] = ACTIONS(12453), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHvolcite] = ACTIONS(12453), + [anon_sym_BSLASHVolcite] = ACTIONS(12453), + [anon_sym_BSLASHpvolcite] = ACTIONS(12453), + [anon_sym_BSLASHPvolcite] = ACTIONS(12453), + [anon_sym_BSLASHfvolcite] = ACTIONS(12453), + [anon_sym_BSLASHftvolcite] = ACTIONS(12453), + [anon_sym_BSLASHsvolcite] = ACTIONS(12453), + [anon_sym_BSLASHSvolcite] = ACTIONS(12453), + [anon_sym_BSLASHtvolcite] = ACTIONS(12453), + [anon_sym_BSLASHTvolcite] = ACTIONS(12453), + [anon_sym_BSLASHavolcite] = ACTIONS(12453), + [anon_sym_BSLASHAvolcite] = ACTIONS(12453), + [anon_sym_BSLASHnotecite] = ACTIONS(12453), + [anon_sym_BSLASHpnotecite] = ACTIONS(12453), + [anon_sym_BSLASHPnotecite] = ACTIONS(12453), + [anon_sym_BSLASHfnotecite] = ACTIONS(12453), + [anon_sym_BSLASHusepackage] = ACTIONS(12453), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12453), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12453), + [anon_sym_BSLASHinclude] = ACTIONS(12453), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12453), + [anon_sym_BSLASHinput] = ACTIONS(12453), + [anon_sym_BSLASHsubfile] = ACTIONS(12453), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12453), + [anon_sym_BSLASHbibliography] = ACTIONS(12453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12453), + [anon_sym_BSLASHincludesvg] = ACTIONS(12453), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12453), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12453), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12453), + [anon_sym_BSLASHimport] = ACTIONS(12453), + [anon_sym_BSLASHsubimport] = ACTIONS(12453), + [anon_sym_BSLASHinputfrom] = ACTIONS(12453), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12453), + [anon_sym_BSLASHincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHlabel] = ACTIONS(12453), + [anon_sym_BSLASHref] = ACTIONS(12453), + [anon_sym_BSLASHvref] = ACTIONS(12453), + [anon_sym_BSLASHVref] = ACTIONS(12453), + [anon_sym_BSLASHautoref] = ACTIONS(12453), + [anon_sym_BSLASHpageref] = ACTIONS(12453), + [anon_sym_BSLASHcref] = ACTIONS(12453), + [anon_sym_BSLASHCref] = ACTIONS(12453), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnameCref] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHlabelcref] = ACTIONS(12453), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12453), + [anon_sym_BSLASHeqref] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange] = ACTIONS(12453), + [anon_sym_BSLASHCrefrange] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewlabel] = ACTIONS(12453), + [anon_sym_BSLASHnewcommand] = ACTIONS(12453), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12453), + [anon_sym_BSLASHgls] = ACTIONS(12453), + [anon_sym_BSLASHGls] = ACTIONS(12453), + [anon_sym_BSLASHGLS] = ACTIONS(12453), + [anon_sym_BSLASHglspl] = ACTIONS(12453), + [anon_sym_BSLASHGlspl] = ACTIONS(12453), + [anon_sym_BSLASHGLSpl] = ACTIONS(12453), + [anon_sym_BSLASHglsdisp] = ACTIONS(12453), + [anon_sym_BSLASHglslink] = ACTIONS(12453), + [anon_sym_BSLASHglstext] = ACTIONS(12453), + [anon_sym_BSLASHGlstext] = ACTIONS(12453), + [anon_sym_BSLASHGLStext] = ACTIONS(12453), + [anon_sym_BSLASHglsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12453), + [anon_sym_BSLASHglsplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSplural] = ACTIONS(12453), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHglsname] = ACTIONS(12453), + [anon_sym_BSLASHGlsname] = ACTIONS(12453), + [anon_sym_BSLASHGLSname] = ACTIONS(12453), + [anon_sym_BSLASHglssymbol] = ACTIONS(12453), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12453), + [anon_sym_BSLASHglsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12453), + [anon_sym_BSLASHglsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12453), + [anon_sym_BSLASHglsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12453), + [anon_sym_BSLASHglsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12453), + [anon_sym_BSLASHglsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12453), + [anon_sym_BSLASHnewacronym] = ACTIONS(12453), + [anon_sym_BSLASHacrshort] = ACTIONS(12453), + [anon_sym_BSLASHAcrshort] = ACTIONS(12453), + [anon_sym_BSLASHACRshort] = ACTIONS(12453), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12453), + [anon_sym_BSLASHacrlong] = ACTIONS(12453), + [anon_sym_BSLASHAcrlong] = ACTIONS(12453), + [anon_sym_BSLASHACRlong] = ACTIONS(12453), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12453), + [anon_sym_BSLASHacrfull] = ACTIONS(12453), + [anon_sym_BSLASHAcrfull] = ACTIONS(12453), + [anon_sym_BSLASHACRfull] = ACTIONS(12453), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12453), + [anon_sym_BSLASHacs] = ACTIONS(12453), + [anon_sym_BSLASHAcs] = ACTIONS(12453), + [anon_sym_BSLASHacsp] = ACTIONS(12453), + [anon_sym_BSLASHAcsp] = ACTIONS(12453), + [anon_sym_BSLASHacl] = ACTIONS(12453), + [anon_sym_BSLASHAcl] = ACTIONS(12453), + [anon_sym_BSLASHaclp] = ACTIONS(12453), + [anon_sym_BSLASHAclp] = ACTIONS(12453), + [anon_sym_BSLASHacf] = ACTIONS(12453), + [anon_sym_BSLASHAcf] = ACTIONS(12453), + [anon_sym_BSLASHacfp] = ACTIONS(12453), + [anon_sym_BSLASHAcfp] = ACTIONS(12453), + [anon_sym_BSLASHac] = ACTIONS(12453), + [anon_sym_BSLASHAc] = ACTIONS(12453), + [anon_sym_BSLASHacp] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12453), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12453), + [anon_sym_BSLASHcolor] = ACTIONS(12453), + [anon_sym_BSLASHcolorbox] = ACTIONS(12453), + [anon_sym_BSLASHtextcolor] = ACTIONS(12453), + [anon_sym_BSLASHpagecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12453), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12453), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12453), + }, + [1575] = { + [sym_generic_command_name] = ACTIONS(12461), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12461), + [aux_sym_subparagraph_token1] = ACTIONS(12461), + [anon_sym_BSLASHitem] = ACTIONS(12461), + [anon_sym_LBRACK] = ACTIONS(12459), + [anon_sym_RBRACK] = ACTIONS(12459), + [anon_sym_LBRACE] = ACTIONS(12459), + [anon_sym_RBRACE] = ACTIONS(12459), + [anon_sym_LPAREN] = ACTIONS(12459), + [anon_sym_COMMA] = ACTIONS(12459), + [anon_sym_EQ] = ACTIONS(12459), + [sym_word] = ACTIONS(12459), + [sym_param] = ACTIONS(12459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12459), + [anon_sym_DOLLAR] = ACTIONS(12461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12459), + [anon_sym_BSLASHbegin] = ACTIONS(12461), + [anon_sym_BSLASHcaption] = ACTIONS(12461), + [anon_sym_BSLASHcite] = ACTIONS(12461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCite] = ACTIONS(12461), + [anon_sym_BSLASHnocite] = ACTIONS(12461), + [anon_sym_BSLASHcitet] = ACTIONS(12461), + [anon_sym_BSLASHcitep] = ACTIONS(12461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteauthor] = ACTIONS(12461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitetitle] = ACTIONS(12461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteyear] = ACTIONS(12461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitedate] = ACTIONS(12461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteurl] = ACTIONS(12461), + [anon_sym_BSLASHfullcite] = ACTIONS(12461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12461), + [anon_sym_BSLASHcitealt] = ACTIONS(12461), + [anon_sym_BSLASHcitealp] = ACTIONS(12461), + [anon_sym_BSLASHcitetext] = ACTIONS(12461), + [anon_sym_BSLASHparencite] = ACTIONS(12461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHParencite] = ACTIONS(12461), + [anon_sym_BSLASHfootcite] = ACTIONS(12461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12461), + [anon_sym_BSLASHtextcite] = ACTIONS(12461), + [anon_sym_BSLASHTextcite] = ACTIONS(12461), + [anon_sym_BSLASHsmartcite] = ACTIONS(12461), + [anon_sym_BSLASHSmartcite] = ACTIONS(12461), + [anon_sym_BSLASHsupercite] = ACTIONS(12461), + [anon_sym_BSLASHautocite] = ACTIONS(12461), + [anon_sym_BSLASHAutocite] = ACTIONS(12461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHvolcite] = ACTIONS(12461), + [anon_sym_BSLASHVolcite] = ACTIONS(12461), + [anon_sym_BSLASHpvolcite] = ACTIONS(12461), + [anon_sym_BSLASHPvolcite] = ACTIONS(12461), + [anon_sym_BSLASHfvolcite] = ACTIONS(12461), + [anon_sym_BSLASHftvolcite] = ACTIONS(12461), + [anon_sym_BSLASHsvolcite] = ACTIONS(12461), + [anon_sym_BSLASHSvolcite] = ACTIONS(12461), + [anon_sym_BSLASHtvolcite] = ACTIONS(12461), + [anon_sym_BSLASHTvolcite] = ACTIONS(12461), + [anon_sym_BSLASHavolcite] = ACTIONS(12461), + [anon_sym_BSLASHAvolcite] = ACTIONS(12461), + [anon_sym_BSLASHnotecite] = ACTIONS(12461), + [anon_sym_BSLASHpnotecite] = ACTIONS(12461), + [anon_sym_BSLASHPnotecite] = ACTIONS(12461), + [anon_sym_BSLASHfnotecite] = ACTIONS(12461), + [anon_sym_BSLASHusepackage] = ACTIONS(12461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12461), + [anon_sym_BSLASHinclude] = ACTIONS(12461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12461), + [anon_sym_BSLASHinput] = ACTIONS(12461), + [anon_sym_BSLASHsubfile] = ACTIONS(12461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12461), + [anon_sym_BSLASHbibliography] = ACTIONS(12461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12461), + [anon_sym_BSLASHincludesvg] = ACTIONS(12461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12461), + [anon_sym_BSLASHimport] = ACTIONS(12461), + [anon_sym_BSLASHsubimport] = ACTIONS(12461), + [anon_sym_BSLASHinputfrom] = ACTIONS(12461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12461), + [anon_sym_BSLASHincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHlabel] = ACTIONS(12461), + [anon_sym_BSLASHref] = ACTIONS(12461), + [anon_sym_BSLASHvref] = ACTIONS(12461), + [anon_sym_BSLASHVref] = ACTIONS(12461), + [anon_sym_BSLASHautoref] = ACTIONS(12461), + [anon_sym_BSLASHpageref] = ACTIONS(12461), + [anon_sym_BSLASHcref] = ACTIONS(12461), + [anon_sym_BSLASHCref] = ACTIONS(12461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnameCref] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHlabelcref] = ACTIONS(12461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12461), + [anon_sym_BSLASHeqref] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange] = ACTIONS(12461), + [anon_sym_BSLASHCrefrange] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewlabel] = ACTIONS(12461), + [anon_sym_BSLASHnewcommand] = ACTIONS(12461), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12461), + [anon_sym_BSLASHgls] = ACTIONS(12461), + [anon_sym_BSLASHGls] = ACTIONS(12461), + [anon_sym_BSLASHGLS] = ACTIONS(12461), + [anon_sym_BSLASHglspl] = ACTIONS(12461), + [anon_sym_BSLASHGlspl] = ACTIONS(12461), + [anon_sym_BSLASHGLSpl] = ACTIONS(12461), + [anon_sym_BSLASHglsdisp] = ACTIONS(12461), + [anon_sym_BSLASHglslink] = ACTIONS(12461), + [anon_sym_BSLASHglstext] = ACTIONS(12461), + [anon_sym_BSLASHGlstext] = ACTIONS(12461), + [anon_sym_BSLASHGLStext] = ACTIONS(12461), + [anon_sym_BSLASHglsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12461), + [anon_sym_BSLASHglsplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSplural] = ACTIONS(12461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHglsname] = ACTIONS(12461), + [anon_sym_BSLASHGlsname] = ACTIONS(12461), + [anon_sym_BSLASHGLSname] = ACTIONS(12461), + [anon_sym_BSLASHglssymbol] = ACTIONS(12461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12461), + [anon_sym_BSLASHglsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12461), + [anon_sym_BSLASHglsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12461), + [anon_sym_BSLASHglsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12461), + [anon_sym_BSLASHglsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12461), + [anon_sym_BSLASHglsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12461), + [anon_sym_BSLASHnewacronym] = ACTIONS(12461), + [anon_sym_BSLASHacrshort] = ACTIONS(12461), + [anon_sym_BSLASHAcrshort] = ACTIONS(12461), + [anon_sym_BSLASHACRshort] = ACTIONS(12461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12461), + [anon_sym_BSLASHacrlong] = ACTIONS(12461), + [anon_sym_BSLASHAcrlong] = ACTIONS(12461), + [anon_sym_BSLASHACRlong] = ACTIONS(12461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12461), + [anon_sym_BSLASHacrfull] = ACTIONS(12461), + [anon_sym_BSLASHAcrfull] = ACTIONS(12461), + [anon_sym_BSLASHACRfull] = ACTIONS(12461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12461), + [anon_sym_BSLASHacs] = ACTIONS(12461), + [anon_sym_BSLASHAcs] = ACTIONS(12461), + [anon_sym_BSLASHacsp] = ACTIONS(12461), + [anon_sym_BSLASHAcsp] = ACTIONS(12461), + [anon_sym_BSLASHacl] = ACTIONS(12461), + [anon_sym_BSLASHAcl] = ACTIONS(12461), + [anon_sym_BSLASHaclp] = ACTIONS(12461), + [anon_sym_BSLASHAclp] = ACTIONS(12461), + [anon_sym_BSLASHacf] = ACTIONS(12461), + [anon_sym_BSLASHAcf] = ACTIONS(12461), + [anon_sym_BSLASHacfp] = ACTIONS(12461), + [anon_sym_BSLASHAcfp] = ACTIONS(12461), + [anon_sym_BSLASHac] = ACTIONS(12461), + [anon_sym_BSLASHAc] = ACTIONS(12461), + [anon_sym_BSLASHacp] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12461), + [anon_sym_BSLASHcolor] = ACTIONS(12461), + [anon_sym_BSLASHcolorbox] = ACTIONS(12461), + [anon_sym_BSLASHtextcolor] = ACTIONS(12461), + [anon_sym_BSLASHpagecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12461), + }, + [1576] = { + [sym_generic_command_name] = ACTIONS(12465), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12465), + [aux_sym_subparagraph_token1] = ACTIONS(12465), + [anon_sym_BSLASHitem] = ACTIONS(12465), + [anon_sym_LBRACK] = ACTIONS(12463), + [anon_sym_RBRACK] = ACTIONS(12463), + [anon_sym_LBRACE] = ACTIONS(12463), + [anon_sym_RBRACE] = ACTIONS(12463), + [anon_sym_LPAREN] = ACTIONS(12463), + [anon_sym_COMMA] = ACTIONS(12463), + [anon_sym_EQ] = ACTIONS(12463), + [sym_word] = ACTIONS(12463), + [sym_param] = ACTIONS(12463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12463), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12463), + [anon_sym_DOLLAR] = ACTIONS(12465), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12463), + [anon_sym_BSLASHbegin] = ACTIONS(12465), + [anon_sym_BSLASHcaption] = ACTIONS(12465), + [anon_sym_BSLASHcite] = ACTIONS(12465), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCite] = ACTIONS(12465), + [anon_sym_BSLASHnocite] = ACTIONS(12465), + [anon_sym_BSLASHcitet] = ACTIONS(12465), + [anon_sym_BSLASHcitep] = ACTIONS(12465), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteauthor] = ACTIONS(12465), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12465), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitetitle] = ACTIONS(12465), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteyear] = ACTIONS(12465), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitedate] = ACTIONS(12465), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteurl] = ACTIONS(12465), + [anon_sym_BSLASHfullcite] = ACTIONS(12465), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12465), + [anon_sym_BSLASHcitealt] = ACTIONS(12465), + [anon_sym_BSLASHcitealp] = ACTIONS(12465), + [anon_sym_BSLASHcitetext] = ACTIONS(12465), + [anon_sym_BSLASHparencite] = ACTIONS(12465), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHParencite] = ACTIONS(12465), + [anon_sym_BSLASHfootcite] = ACTIONS(12465), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12465), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12465), + [anon_sym_BSLASHtextcite] = ACTIONS(12465), + [anon_sym_BSLASHTextcite] = ACTIONS(12465), + [anon_sym_BSLASHsmartcite] = ACTIONS(12465), + [anon_sym_BSLASHSmartcite] = ACTIONS(12465), + [anon_sym_BSLASHsupercite] = ACTIONS(12465), + [anon_sym_BSLASHautocite] = ACTIONS(12465), + [anon_sym_BSLASHAutocite] = ACTIONS(12465), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHvolcite] = ACTIONS(12465), + [anon_sym_BSLASHVolcite] = ACTIONS(12465), + [anon_sym_BSLASHpvolcite] = ACTIONS(12465), + [anon_sym_BSLASHPvolcite] = ACTIONS(12465), + [anon_sym_BSLASHfvolcite] = ACTIONS(12465), + [anon_sym_BSLASHftvolcite] = ACTIONS(12465), + [anon_sym_BSLASHsvolcite] = ACTIONS(12465), + [anon_sym_BSLASHSvolcite] = ACTIONS(12465), + [anon_sym_BSLASHtvolcite] = ACTIONS(12465), + [anon_sym_BSLASHTvolcite] = ACTIONS(12465), + [anon_sym_BSLASHavolcite] = ACTIONS(12465), + [anon_sym_BSLASHAvolcite] = ACTIONS(12465), + [anon_sym_BSLASHnotecite] = ACTIONS(12465), + [anon_sym_BSLASHpnotecite] = ACTIONS(12465), + [anon_sym_BSLASHPnotecite] = ACTIONS(12465), + [anon_sym_BSLASHfnotecite] = ACTIONS(12465), + [anon_sym_BSLASHusepackage] = ACTIONS(12465), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12465), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12465), + [anon_sym_BSLASHinclude] = ACTIONS(12465), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12465), + [anon_sym_BSLASHinput] = ACTIONS(12465), + [anon_sym_BSLASHsubfile] = ACTIONS(12465), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12465), + [anon_sym_BSLASHbibliography] = ACTIONS(12465), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12465), + [anon_sym_BSLASHincludesvg] = ACTIONS(12465), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12465), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12465), + [anon_sym_BSLASHimport] = ACTIONS(12465), + [anon_sym_BSLASHsubimport] = ACTIONS(12465), + [anon_sym_BSLASHinputfrom] = ACTIONS(12465), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12465), + [anon_sym_BSLASHincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHlabel] = ACTIONS(12465), + [anon_sym_BSLASHref] = ACTIONS(12465), + [anon_sym_BSLASHvref] = ACTIONS(12465), + [anon_sym_BSLASHVref] = ACTIONS(12465), + [anon_sym_BSLASHautoref] = ACTIONS(12465), + [anon_sym_BSLASHpageref] = ACTIONS(12465), + [anon_sym_BSLASHcref] = ACTIONS(12465), + [anon_sym_BSLASHCref] = ACTIONS(12465), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnameCref] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHlabelcref] = ACTIONS(12465), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12465), + [anon_sym_BSLASHeqref] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange] = ACTIONS(12465), + [anon_sym_BSLASHCrefrange] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewlabel] = ACTIONS(12465), + [anon_sym_BSLASHnewcommand] = ACTIONS(12465), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12465), + [anon_sym_BSLASHgls] = ACTIONS(12465), + [anon_sym_BSLASHGls] = ACTIONS(12465), + [anon_sym_BSLASHGLS] = ACTIONS(12465), + [anon_sym_BSLASHglspl] = ACTIONS(12465), + [anon_sym_BSLASHGlspl] = ACTIONS(12465), + [anon_sym_BSLASHGLSpl] = ACTIONS(12465), + [anon_sym_BSLASHglsdisp] = ACTIONS(12465), + [anon_sym_BSLASHglslink] = ACTIONS(12465), + [anon_sym_BSLASHglstext] = ACTIONS(12465), + [anon_sym_BSLASHGlstext] = ACTIONS(12465), + [anon_sym_BSLASHGLStext] = ACTIONS(12465), + [anon_sym_BSLASHglsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12465), + [anon_sym_BSLASHglsplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSplural] = ACTIONS(12465), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHglsname] = ACTIONS(12465), + [anon_sym_BSLASHGlsname] = ACTIONS(12465), + [anon_sym_BSLASHGLSname] = ACTIONS(12465), + [anon_sym_BSLASHglssymbol] = ACTIONS(12465), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12465), + [anon_sym_BSLASHglsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12465), + [anon_sym_BSLASHglsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12465), + [anon_sym_BSLASHglsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12465), + [anon_sym_BSLASHglsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12465), + [anon_sym_BSLASHglsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12465), + [anon_sym_BSLASHnewacronym] = ACTIONS(12465), + [anon_sym_BSLASHacrshort] = ACTIONS(12465), + [anon_sym_BSLASHAcrshort] = ACTIONS(12465), + [anon_sym_BSLASHACRshort] = ACTIONS(12465), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12465), + [anon_sym_BSLASHacrlong] = ACTIONS(12465), + [anon_sym_BSLASHAcrlong] = ACTIONS(12465), + [anon_sym_BSLASHACRlong] = ACTIONS(12465), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12465), + [anon_sym_BSLASHacrfull] = ACTIONS(12465), + [anon_sym_BSLASHAcrfull] = ACTIONS(12465), + [anon_sym_BSLASHACRfull] = ACTIONS(12465), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12465), + [anon_sym_BSLASHacs] = ACTIONS(12465), + [anon_sym_BSLASHAcs] = ACTIONS(12465), + [anon_sym_BSLASHacsp] = ACTIONS(12465), + [anon_sym_BSLASHAcsp] = ACTIONS(12465), + [anon_sym_BSLASHacl] = ACTIONS(12465), + [anon_sym_BSLASHAcl] = ACTIONS(12465), + [anon_sym_BSLASHaclp] = ACTIONS(12465), + [anon_sym_BSLASHAclp] = ACTIONS(12465), + [anon_sym_BSLASHacf] = ACTIONS(12465), + [anon_sym_BSLASHAcf] = ACTIONS(12465), + [anon_sym_BSLASHacfp] = ACTIONS(12465), + [anon_sym_BSLASHAcfp] = ACTIONS(12465), + [anon_sym_BSLASHac] = ACTIONS(12465), + [anon_sym_BSLASHAc] = ACTIONS(12465), + [anon_sym_BSLASHacp] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12465), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12465), + [anon_sym_BSLASHcolor] = ACTIONS(12465), + [anon_sym_BSLASHcolorbox] = ACTIONS(12465), + [anon_sym_BSLASHtextcolor] = ACTIONS(12465), + [anon_sym_BSLASHpagecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12465), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12465), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12465), + }, + [1577] = { + [sym_generic_command_name] = ACTIONS(12469), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12469), + [aux_sym_subparagraph_token1] = ACTIONS(12469), + [anon_sym_BSLASHitem] = ACTIONS(12469), + [anon_sym_LBRACK] = ACTIONS(12467), + [anon_sym_RBRACK] = ACTIONS(12467), + [anon_sym_LBRACE] = ACTIONS(12467), + [anon_sym_RBRACE] = ACTIONS(12467), + [anon_sym_LPAREN] = ACTIONS(12467), + [anon_sym_COMMA] = ACTIONS(12467), + [anon_sym_EQ] = ACTIONS(12467), + [sym_word] = ACTIONS(12467), + [sym_param] = ACTIONS(12467), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12467), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12467), + [anon_sym_DOLLAR] = ACTIONS(12469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12467), + [anon_sym_BSLASHbegin] = ACTIONS(12469), + [anon_sym_BSLASHcaption] = ACTIONS(12469), + [anon_sym_BSLASHcite] = ACTIONS(12469), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCite] = ACTIONS(12469), + [anon_sym_BSLASHnocite] = ACTIONS(12469), + [anon_sym_BSLASHcitet] = ACTIONS(12469), + [anon_sym_BSLASHcitep] = ACTIONS(12469), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteauthor] = ACTIONS(12469), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12469), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitetitle] = ACTIONS(12469), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteyear] = ACTIONS(12469), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitedate] = ACTIONS(12469), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteurl] = ACTIONS(12469), + [anon_sym_BSLASHfullcite] = ACTIONS(12469), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12469), + [anon_sym_BSLASHcitealt] = ACTIONS(12469), + [anon_sym_BSLASHcitealp] = ACTIONS(12469), + [anon_sym_BSLASHcitetext] = ACTIONS(12469), + [anon_sym_BSLASHparencite] = ACTIONS(12469), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHParencite] = ACTIONS(12469), + [anon_sym_BSLASHfootcite] = ACTIONS(12469), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12469), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12469), + [anon_sym_BSLASHtextcite] = ACTIONS(12469), + [anon_sym_BSLASHTextcite] = ACTIONS(12469), + [anon_sym_BSLASHsmartcite] = ACTIONS(12469), + [anon_sym_BSLASHSmartcite] = ACTIONS(12469), + [anon_sym_BSLASHsupercite] = ACTIONS(12469), + [anon_sym_BSLASHautocite] = ACTIONS(12469), + [anon_sym_BSLASHAutocite] = ACTIONS(12469), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHvolcite] = ACTIONS(12469), + [anon_sym_BSLASHVolcite] = ACTIONS(12469), + [anon_sym_BSLASHpvolcite] = ACTIONS(12469), + [anon_sym_BSLASHPvolcite] = ACTIONS(12469), + [anon_sym_BSLASHfvolcite] = ACTIONS(12469), + [anon_sym_BSLASHftvolcite] = ACTIONS(12469), + [anon_sym_BSLASHsvolcite] = ACTIONS(12469), + [anon_sym_BSLASHSvolcite] = ACTIONS(12469), + [anon_sym_BSLASHtvolcite] = ACTIONS(12469), + [anon_sym_BSLASHTvolcite] = ACTIONS(12469), + [anon_sym_BSLASHavolcite] = ACTIONS(12469), + [anon_sym_BSLASHAvolcite] = ACTIONS(12469), + [anon_sym_BSLASHnotecite] = ACTIONS(12469), + [anon_sym_BSLASHpnotecite] = ACTIONS(12469), + [anon_sym_BSLASHPnotecite] = ACTIONS(12469), + [anon_sym_BSLASHfnotecite] = ACTIONS(12469), + [anon_sym_BSLASHusepackage] = ACTIONS(12469), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12469), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12469), + [anon_sym_BSLASHinclude] = ACTIONS(12469), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12469), + [anon_sym_BSLASHinput] = ACTIONS(12469), + [anon_sym_BSLASHsubfile] = ACTIONS(12469), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12469), + [anon_sym_BSLASHbibliography] = ACTIONS(12469), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12469), + [anon_sym_BSLASHincludesvg] = ACTIONS(12469), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12469), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12469), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12469), + [anon_sym_BSLASHimport] = ACTIONS(12469), + [anon_sym_BSLASHsubimport] = ACTIONS(12469), + [anon_sym_BSLASHinputfrom] = ACTIONS(12469), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12469), + [anon_sym_BSLASHincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHlabel] = ACTIONS(12469), + [anon_sym_BSLASHref] = ACTIONS(12469), + [anon_sym_BSLASHvref] = ACTIONS(12469), + [anon_sym_BSLASHVref] = ACTIONS(12469), + [anon_sym_BSLASHautoref] = ACTIONS(12469), + [anon_sym_BSLASHpageref] = ACTIONS(12469), + [anon_sym_BSLASHcref] = ACTIONS(12469), + [anon_sym_BSLASHCref] = ACTIONS(12469), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnameCref] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHlabelcref] = ACTIONS(12469), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12469), + [anon_sym_BSLASHeqref] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange] = ACTIONS(12469), + [anon_sym_BSLASHCrefrange] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewlabel] = ACTIONS(12469), + [anon_sym_BSLASHnewcommand] = ACTIONS(12469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12469), + [anon_sym_BSLASHgls] = ACTIONS(12469), + [anon_sym_BSLASHGls] = ACTIONS(12469), + [anon_sym_BSLASHGLS] = ACTIONS(12469), + [anon_sym_BSLASHglspl] = ACTIONS(12469), + [anon_sym_BSLASHGlspl] = ACTIONS(12469), + [anon_sym_BSLASHGLSpl] = ACTIONS(12469), + [anon_sym_BSLASHglsdisp] = ACTIONS(12469), + [anon_sym_BSLASHglslink] = ACTIONS(12469), + [anon_sym_BSLASHglstext] = ACTIONS(12469), + [anon_sym_BSLASHGlstext] = ACTIONS(12469), + [anon_sym_BSLASHGLStext] = ACTIONS(12469), + [anon_sym_BSLASHglsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12469), + [anon_sym_BSLASHglsplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSplural] = ACTIONS(12469), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHglsname] = ACTIONS(12469), + [anon_sym_BSLASHGlsname] = ACTIONS(12469), + [anon_sym_BSLASHGLSname] = ACTIONS(12469), + [anon_sym_BSLASHglssymbol] = ACTIONS(12469), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12469), + [anon_sym_BSLASHglsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12469), + [anon_sym_BSLASHglsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12469), + [anon_sym_BSLASHglsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12469), + [anon_sym_BSLASHglsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12469), + [anon_sym_BSLASHglsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12469), + [anon_sym_BSLASHnewacronym] = ACTIONS(12469), + [anon_sym_BSLASHacrshort] = ACTIONS(12469), + [anon_sym_BSLASHAcrshort] = ACTIONS(12469), + [anon_sym_BSLASHACRshort] = ACTIONS(12469), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12469), + [anon_sym_BSLASHacrlong] = ACTIONS(12469), + [anon_sym_BSLASHAcrlong] = ACTIONS(12469), + [anon_sym_BSLASHACRlong] = ACTIONS(12469), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12469), + [anon_sym_BSLASHacrfull] = ACTIONS(12469), + [anon_sym_BSLASHAcrfull] = ACTIONS(12469), + [anon_sym_BSLASHACRfull] = ACTIONS(12469), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12469), + [anon_sym_BSLASHacs] = ACTIONS(12469), + [anon_sym_BSLASHAcs] = ACTIONS(12469), + [anon_sym_BSLASHacsp] = ACTIONS(12469), + [anon_sym_BSLASHAcsp] = ACTIONS(12469), + [anon_sym_BSLASHacl] = ACTIONS(12469), + [anon_sym_BSLASHAcl] = ACTIONS(12469), + [anon_sym_BSLASHaclp] = ACTIONS(12469), + [anon_sym_BSLASHAclp] = ACTIONS(12469), + [anon_sym_BSLASHacf] = ACTIONS(12469), + [anon_sym_BSLASHAcf] = ACTIONS(12469), + [anon_sym_BSLASHacfp] = ACTIONS(12469), + [anon_sym_BSLASHAcfp] = ACTIONS(12469), + [anon_sym_BSLASHac] = ACTIONS(12469), + [anon_sym_BSLASHAc] = ACTIONS(12469), + [anon_sym_BSLASHacp] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12469), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12469), + [anon_sym_BSLASHcolor] = ACTIONS(12469), + [anon_sym_BSLASHcolorbox] = ACTIONS(12469), + [anon_sym_BSLASHtextcolor] = ACTIONS(12469), + [anon_sym_BSLASHpagecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12469), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12469), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12469), + }, + [1578] = { + [sym_generic_command_name] = ACTIONS(12477), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12477), + [aux_sym_subparagraph_token1] = ACTIONS(12477), + [anon_sym_BSLASHitem] = ACTIONS(12477), + [anon_sym_LBRACK] = ACTIONS(12475), + [anon_sym_RBRACK] = ACTIONS(12475), + [anon_sym_LBRACE] = ACTIONS(12475), + [anon_sym_RBRACE] = ACTIONS(12475), + [anon_sym_LPAREN] = ACTIONS(12475), + [anon_sym_COMMA] = ACTIONS(12475), + [anon_sym_EQ] = ACTIONS(12475), + [sym_word] = ACTIONS(12475), + [sym_param] = ACTIONS(12475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12475), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12475), + [anon_sym_DOLLAR] = ACTIONS(12477), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12475), + [anon_sym_BSLASHbegin] = ACTIONS(12477), + [anon_sym_BSLASHcaption] = ACTIONS(12477), + [anon_sym_BSLASHcite] = ACTIONS(12477), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCite] = ACTIONS(12477), + [anon_sym_BSLASHnocite] = ACTIONS(12477), + [anon_sym_BSLASHcitet] = ACTIONS(12477), + [anon_sym_BSLASHcitep] = ACTIONS(12477), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteauthor] = ACTIONS(12477), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12477), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitetitle] = ACTIONS(12477), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteyear] = ACTIONS(12477), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitedate] = ACTIONS(12477), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteurl] = ACTIONS(12477), + [anon_sym_BSLASHfullcite] = ACTIONS(12477), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12477), + [anon_sym_BSLASHcitealt] = ACTIONS(12477), + [anon_sym_BSLASHcitealp] = ACTIONS(12477), + [anon_sym_BSLASHcitetext] = ACTIONS(12477), + [anon_sym_BSLASHparencite] = ACTIONS(12477), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHParencite] = ACTIONS(12477), + [anon_sym_BSLASHfootcite] = ACTIONS(12477), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12477), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12477), + [anon_sym_BSLASHtextcite] = ACTIONS(12477), + [anon_sym_BSLASHTextcite] = ACTIONS(12477), + [anon_sym_BSLASHsmartcite] = ACTIONS(12477), + [anon_sym_BSLASHSmartcite] = ACTIONS(12477), + [anon_sym_BSLASHsupercite] = ACTIONS(12477), + [anon_sym_BSLASHautocite] = ACTIONS(12477), + [anon_sym_BSLASHAutocite] = ACTIONS(12477), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHvolcite] = ACTIONS(12477), + [anon_sym_BSLASHVolcite] = ACTIONS(12477), + [anon_sym_BSLASHpvolcite] = ACTIONS(12477), + [anon_sym_BSLASHPvolcite] = ACTIONS(12477), + [anon_sym_BSLASHfvolcite] = ACTIONS(12477), + [anon_sym_BSLASHftvolcite] = ACTIONS(12477), + [anon_sym_BSLASHsvolcite] = ACTIONS(12477), + [anon_sym_BSLASHSvolcite] = ACTIONS(12477), + [anon_sym_BSLASHtvolcite] = ACTIONS(12477), + [anon_sym_BSLASHTvolcite] = ACTIONS(12477), + [anon_sym_BSLASHavolcite] = ACTIONS(12477), + [anon_sym_BSLASHAvolcite] = ACTIONS(12477), + [anon_sym_BSLASHnotecite] = ACTIONS(12477), + [anon_sym_BSLASHpnotecite] = ACTIONS(12477), + [anon_sym_BSLASHPnotecite] = ACTIONS(12477), + [anon_sym_BSLASHfnotecite] = ACTIONS(12477), + [anon_sym_BSLASHusepackage] = ACTIONS(12477), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12477), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12477), + [anon_sym_BSLASHinclude] = ACTIONS(12477), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12477), + [anon_sym_BSLASHinput] = ACTIONS(12477), + [anon_sym_BSLASHsubfile] = ACTIONS(12477), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12477), + [anon_sym_BSLASHbibliography] = ACTIONS(12477), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12477), + [anon_sym_BSLASHincludesvg] = ACTIONS(12477), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12477), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12477), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12477), + [anon_sym_BSLASHimport] = ACTIONS(12477), + [anon_sym_BSLASHsubimport] = ACTIONS(12477), + [anon_sym_BSLASHinputfrom] = ACTIONS(12477), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12477), + [anon_sym_BSLASHincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHlabel] = ACTIONS(12477), + [anon_sym_BSLASHref] = ACTIONS(12477), + [anon_sym_BSLASHvref] = ACTIONS(12477), + [anon_sym_BSLASHVref] = ACTIONS(12477), + [anon_sym_BSLASHautoref] = ACTIONS(12477), + [anon_sym_BSLASHpageref] = ACTIONS(12477), + [anon_sym_BSLASHcref] = ACTIONS(12477), + [anon_sym_BSLASHCref] = ACTIONS(12477), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnameCref] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHlabelcref] = ACTIONS(12477), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12477), + [anon_sym_BSLASHeqref] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange] = ACTIONS(12477), + [anon_sym_BSLASHCrefrange] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewlabel] = ACTIONS(12477), + [anon_sym_BSLASHnewcommand] = ACTIONS(12477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12477), + [anon_sym_BSLASHgls] = ACTIONS(12477), + [anon_sym_BSLASHGls] = ACTIONS(12477), + [anon_sym_BSLASHGLS] = ACTIONS(12477), + [anon_sym_BSLASHglspl] = ACTIONS(12477), + [anon_sym_BSLASHGlspl] = ACTIONS(12477), + [anon_sym_BSLASHGLSpl] = ACTIONS(12477), + [anon_sym_BSLASHglsdisp] = ACTIONS(12477), + [anon_sym_BSLASHglslink] = ACTIONS(12477), + [anon_sym_BSLASHglstext] = ACTIONS(12477), + [anon_sym_BSLASHGlstext] = ACTIONS(12477), + [anon_sym_BSLASHGLStext] = ACTIONS(12477), + [anon_sym_BSLASHglsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12477), + [anon_sym_BSLASHglsplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSplural] = ACTIONS(12477), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHglsname] = ACTIONS(12477), + [anon_sym_BSLASHGlsname] = ACTIONS(12477), + [anon_sym_BSLASHGLSname] = ACTIONS(12477), + [anon_sym_BSLASHglssymbol] = ACTIONS(12477), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12477), + [anon_sym_BSLASHglsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12477), + [anon_sym_BSLASHglsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12477), + [anon_sym_BSLASHglsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12477), + [anon_sym_BSLASHglsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12477), + [anon_sym_BSLASHglsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12477), + [anon_sym_BSLASHnewacronym] = ACTIONS(12477), + [anon_sym_BSLASHacrshort] = ACTIONS(12477), + [anon_sym_BSLASHAcrshort] = ACTIONS(12477), + [anon_sym_BSLASHACRshort] = ACTIONS(12477), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12477), + [anon_sym_BSLASHacrlong] = ACTIONS(12477), + [anon_sym_BSLASHAcrlong] = ACTIONS(12477), + [anon_sym_BSLASHACRlong] = ACTIONS(12477), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12477), + [anon_sym_BSLASHacrfull] = ACTIONS(12477), + [anon_sym_BSLASHAcrfull] = ACTIONS(12477), + [anon_sym_BSLASHACRfull] = ACTIONS(12477), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12477), + [anon_sym_BSLASHacs] = ACTIONS(12477), + [anon_sym_BSLASHAcs] = ACTIONS(12477), + [anon_sym_BSLASHacsp] = ACTIONS(12477), + [anon_sym_BSLASHAcsp] = ACTIONS(12477), + [anon_sym_BSLASHacl] = ACTIONS(12477), + [anon_sym_BSLASHAcl] = ACTIONS(12477), + [anon_sym_BSLASHaclp] = ACTIONS(12477), + [anon_sym_BSLASHAclp] = ACTIONS(12477), + [anon_sym_BSLASHacf] = ACTIONS(12477), + [anon_sym_BSLASHAcf] = ACTIONS(12477), + [anon_sym_BSLASHacfp] = ACTIONS(12477), + [anon_sym_BSLASHAcfp] = ACTIONS(12477), + [anon_sym_BSLASHac] = ACTIONS(12477), + [anon_sym_BSLASHAc] = ACTIONS(12477), + [anon_sym_BSLASHacp] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12477), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12477), + [anon_sym_BSLASHcolor] = ACTIONS(12477), + [anon_sym_BSLASHcolorbox] = ACTIONS(12477), + [anon_sym_BSLASHtextcolor] = ACTIONS(12477), + [anon_sym_BSLASHpagecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12477), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12477), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12477), + }, + [1579] = { + [sym_generic_command_name] = ACTIONS(12481), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12481), + [aux_sym_subparagraph_token1] = ACTIONS(12481), + [anon_sym_BSLASHitem] = ACTIONS(12481), + [anon_sym_LBRACK] = ACTIONS(12479), + [anon_sym_RBRACK] = ACTIONS(12479), + [anon_sym_LBRACE] = ACTIONS(12479), + [anon_sym_RBRACE] = ACTIONS(12479), + [anon_sym_LPAREN] = ACTIONS(12479), + [anon_sym_COMMA] = ACTIONS(12479), + [anon_sym_EQ] = ACTIONS(12479), + [sym_word] = ACTIONS(12479), + [sym_param] = ACTIONS(12479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12479), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12479), + [anon_sym_DOLLAR] = ACTIONS(12481), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12479), + [anon_sym_BSLASHbegin] = ACTIONS(12481), + [anon_sym_BSLASHcaption] = ACTIONS(12481), + [anon_sym_BSLASHcite] = ACTIONS(12481), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCite] = ACTIONS(12481), + [anon_sym_BSLASHnocite] = ACTIONS(12481), + [anon_sym_BSLASHcitet] = ACTIONS(12481), + [anon_sym_BSLASHcitep] = ACTIONS(12481), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteauthor] = ACTIONS(12481), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12481), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitetitle] = ACTIONS(12481), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteyear] = ACTIONS(12481), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitedate] = ACTIONS(12481), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteurl] = ACTIONS(12481), + [anon_sym_BSLASHfullcite] = ACTIONS(12481), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12481), + [anon_sym_BSLASHcitealt] = ACTIONS(12481), + [anon_sym_BSLASHcitealp] = ACTIONS(12481), + [anon_sym_BSLASHcitetext] = ACTIONS(12481), + [anon_sym_BSLASHparencite] = ACTIONS(12481), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHParencite] = ACTIONS(12481), + [anon_sym_BSLASHfootcite] = ACTIONS(12481), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12481), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12481), + [anon_sym_BSLASHtextcite] = ACTIONS(12481), + [anon_sym_BSLASHTextcite] = ACTIONS(12481), + [anon_sym_BSLASHsmartcite] = ACTIONS(12481), + [anon_sym_BSLASHSmartcite] = ACTIONS(12481), + [anon_sym_BSLASHsupercite] = ACTIONS(12481), + [anon_sym_BSLASHautocite] = ACTIONS(12481), + [anon_sym_BSLASHAutocite] = ACTIONS(12481), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHvolcite] = ACTIONS(12481), + [anon_sym_BSLASHVolcite] = ACTIONS(12481), + [anon_sym_BSLASHpvolcite] = ACTIONS(12481), + [anon_sym_BSLASHPvolcite] = ACTIONS(12481), + [anon_sym_BSLASHfvolcite] = ACTIONS(12481), + [anon_sym_BSLASHftvolcite] = ACTIONS(12481), + [anon_sym_BSLASHsvolcite] = ACTIONS(12481), + [anon_sym_BSLASHSvolcite] = ACTIONS(12481), + [anon_sym_BSLASHtvolcite] = ACTIONS(12481), + [anon_sym_BSLASHTvolcite] = ACTIONS(12481), + [anon_sym_BSLASHavolcite] = ACTIONS(12481), + [anon_sym_BSLASHAvolcite] = ACTIONS(12481), + [anon_sym_BSLASHnotecite] = ACTIONS(12481), + [anon_sym_BSLASHpnotecite] = ACTIONS(12481), + [anon_sym_BSLASHPnotecite] = ACTIONS(12481), + [anon_sym_BSLASHfnotecite] = ACTIONS(12481), + [anon_sym_BSLASHusepackage] = ACTIONS(12481), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12481), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12481), + [anon_sym_BSLASHinclude] = ACTIONS(12481), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12481), + [anon_sym_BSLASHinput] = ACTIONS(12481), + [anon_sym_BSLASHsubfile] = ACTIONS(12481), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12481), + [anon_sym_BSLASHbibliography] = ACTIONS(12481), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12481), + [anon_sym_BSLASHincludesvg] = ACTIONS(12481), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12481), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12481), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12481), + [anon_sym_BSLASHimport] = ACTIONS(12481), + [anon_sym_BSLASHsubimport] = ACTIONS(12481), + [anon_sym_BSLASHinputfrom] = ACTIONS(12481), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12481), + [anon_sym_BSLASHincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHlabel] = ACTIONS(12481), + [anon_sym_BSLASHref] = ACTIONS(12481), + [anon_sym_BSLASHvref] = ACTIONS(12481), + [anon_sym_BSLASHVref] = ACTIONS(12481), + [anon_sym_BSLASHautoref] = ACTIONS(12481), + [anon_sym_BSLASHpageref] = ACTIONS(12481), + [anon_sym_BSLASHcref] = ACTIONS(12481), + [anon_sym_BSLASHCref] = ACTIONS(12481), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnameCref] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHlabelcref] = ACTIONS(12481), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12481), + [anon_sym_BSLASHeqref] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange] = ACTIONS(12481), + [anon_sym_BSLASHCrefrange] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewlabel] = ACTIONS(12481), + [anon_sym_BSLASHnewcommand] = ACTIONS(12481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12481), + [anon_sym_BSLASHgls] = ACTIONS(12481), + [anon_sym_BSLASHGls] = ACTIONS(12481), + [anon_sym_BSLASHGLS] = ACTIONS(12481), + [anon_sym_BSLASHglspl] = ACTIONS(12481), + [anon_sym_BSLASHGlspl] = ACTIONS(12481), + [anon_sym_BSLASHGLSpl] = ACTIONS(12481), + [anon_sym_BSLASHglsdisp] = ACTIONS(12481), + [anon_sym_BSLASHglslink] = ACTIONS(12481), + [anon_sym_BSLASHglstext] = ACTIONS(12481), + [anon_sym_BSLASHGlstext] = ACTIONS(12481), + [anon_sym_BSLASHGLStext] = ACTIONS(12481), + [anon_sym_BSLASHglsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12481), + [anon_sym_BSLASHglsplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSplural] = ACTIONS(12481), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHglsname] = ACTIONS(12481), + [anon_sym_BSLASHGlsname] = ACTIONS(12481), + [anon_sym_BSLASHGLSname] = ACTIONS(12481), + [anon_sym_BSLASHglssymbol] = ACTIONS(12481), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12481), + [anon_sym_BSLASHglsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12481), + [anon_sym_BSLASHglsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12481), + [anon_sym_BSLASHglsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12481), + [anon_sym_BSLASHglsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12481), + [anon_sym_BSLASHglsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12481), + [anon_sym_BSLASHnewacronym] = ACTIONS(12481), + [anon_sym_BSLASHacrshort] = ACTIONS(12481), + [anon_sym_BSLASHAcrshort] = ACTIONS(12481), + [anon_sym_BSLASHACRshort] = ACTIONS(12481), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12481), + [anon_sym_BSLASHacrlong] = ACTIONS(12481), + [anon_sym_BSLASHAcrlong] = ACTIONS(12481), + [anon_sym_BSLASHACRlong] = ACTIONS(12481), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12481), + [anon_sym_BSLASHacrfull] = ACTIONS(12481), + [anon_sym_BSLASHAcrfull] = ACTIONS(12481), + [anon_sym_BSLASHACRfull] = ACTIONS(12481), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12481), + [anon_sym_BSLASHacs] = ACTIONS(12481), + [anon_sym_BSLASHAcs] = ACTIONS(12481), + [anon_sym_BSLASHacsp] = ACTIONS(12481), + [anon_sym_BSLASHAcsp] = ACTIONS(12481), + [anon_sym_BSLASHacl] = ACTIONS(12481), + [anon_sym_BSLASHAcl] = ACTIONS(12481), + [anon_sym_BSLASHaclp] = ACTIONS(12481), + [anon_sym_BSLASHAclp] = ACTIONS(12481), + [anon_sym_BSLASHacf] = ACTIONS(12481), + [anon_sym_BSLASHAcf] = ACTIONS(12481), + [anon_sym_BSLASHacfp] = ACTIONS(12481), + [anon_sym_BSLASHAcfp] = ACTIONS(12481), + [anon_sym_BSLASHac] = ACTIONS(12481), + [anon_sym_BSLASHAc] = ACTIONS(12481), + [anon_sym_BSLASHacp] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12481), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12481), + [anon_sym_BSLASHcolor] = ACTIONS(12481), + [anon_sym_BSLASHcolorbox] = ACTIONS(12481), + [anon_sym_BSLASHtextcolor] = ACTIONS(12481), + [anon_sym_BSLASHpagecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12481), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12481), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12481), + }, + [1580] = { + [sym_generic_command_name] = ACTIONS(12497), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12497), + [aux_sym_subparagraph_token1] = ACTIONS(12497), + [anon_sym_BSLASHitem] = ACTIONS(12497), + [anon_sym_LBRACK] = ACTIONS(12495), + [anon_sym_RBRACK] = ACTIONS(12495), + [anon_sym_LBRACE] = ACTIONS(12495), + [anon_sym_RBRACE] = ACTIONS(12495), + [anon_sym_LPAREN] = ACTIONS(12495), + [anon_sym_COMMA] = ACTIONS(12495), + [anon_sym_EQ] = ACTIONS(12495), + [sym_word] = ACTIONS(12495), + [sym_param] = ACTIONS(12495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12495), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12495), + [anon_sym_DOLLAR] = ACTIONS(12497), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12495), + [anon_sym_BSLASHbegin] = ACTIONS(12497), + [anon_sym_BSLASHcaption] = ACTIONS(12497), + [anon_sym_BSLASHcite] = ACTIONS(12497), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCite] = ACTIONS(12497), + [anon_sym_BSLASHnocite] = ACTIONS(12497), + [anon_sym_BSLASHcitet] = ACTIONS(12497), + [anon_sym_BSLASHcitep] = ACTIONS(12497), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteauthor] = ACTIONS(12497), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12497), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitetitle] = ACTIONS(12497), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteyear] = ACTIONS(12497), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitedate] = ACTIONS(12497), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteurl] = ACTIONS(12497), + [anon_sym_BSLASHfullcite] = ACTIONS(12497), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12497), + [anon_sym_BSLASHcitealt] = ACTIONS(12497), + [anon_sym_BSLASHcitealp] = ACTIONS(12497), + [anon_sym_BSLASHcitetext] = ACTIONS(12497), + [anon_sym_BSLASHparencite] = ACTIONS(12497), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHParencite] = ACTIONS(12497), + [anon_sym_BSLASHfootcite] = ACTIONS(12497), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12497), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12497), + [anon_sym_BSLASHtextcite] = ACTIONS(12497), + [anon_sym_BSLASHTextcite] = ACTIONS(12497), + [anon_sym_BSLASHsmartcite] = ACTIONS(12497), + [anon_sym_BSLASHSmartcite] = ACTIONS(12497), + [anon_sym_BSLASHsupercite] = ACTIONS(12497), + [anon_sym_BSLASHautocite] = ACTIONS(12497), + [anon_sym_BSLASHAutocite] = ACTIONS(12497), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHvolcite] = ACTIONS(12497), + [anon_sym_BSLASHVolcite] = ACTIONS(12497), + [anon_sym_BSLASHpvolcite] = ACTIONS(12497), + [anon_sym_BSLASHPvolcite] = ACTIONS(12497), + [anon_sym_BSLASHfvolcite] = ACTIONS(12497), + [anon_sym_BSLASHftvolcite] = ACTIONS(12497), + [anon_sym_BSLASHsvolcite] = ACTIONS(12497), + [anon_sym_BSLASHSvolcite] = ACTIONS(12497), + [anon_sym_BSLASHtvolcite] = ACTIONS(12497), + [anon_sym_BSLASHTvolcite] = ACTIONS(12497), + [anon_sym_BSLASHavolcite] = ACTIONS(12497), + [anon_sym_BSLASHAvolcite] = ACTIONS(12497), + [anon_sym_BSLASHnotecite] = ACTIONS(12497), + [anon_sym_BSLASHpnotecite] = ACTIONS(12497), + [anon_sym_BSLASHPnotecite] = ACTIONS(12497), + [anon_sym_BSLASHfnotecite] = ACTIONS(12497), + [anon_sym_BSLASHusepackage] = ACTIONS(12497), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12497), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12497), + [anon_sym_BSLASHinclude] = ACTIONS(12497), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12497), + [anon_sym_BSLASHinput] = ACTIONS(12497), + [anon_sym_BSLASHsubfile] = ACTIONS(12497), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12497), + [anon_sym_BSLASHbibliography] = ACTIONS(12497), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12497), + [anon_sym_BSLASHincludesvg] = ACTIONS(12497), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12497), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12497), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12497), + [anon_sym_BSLASHimport] = ACTIONS(12497), + [anon_sym_BSLASHsubimport] = ACTIONS(12497), + [anon_sym_BSLASHinputfrom] = ACTIONS(12497), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12497), + [anon_sym_BSLASHincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHlabel] = ACTIONS(12497), + [anon_sym_BSLASHref] = ACTIONS(12497), + [anon_sym_BSLASHvref] = ACTIONS(12497), + [anon_sym_BSLASHVref] = ACTIONS(12497), + [anon_sym_BSLASHautoref] = ACTIONS(12497), + [anon_sym_BSLASHpageref] = ACTIONS(12497), + [anon_sym_BSLASHcref] = ACTIONS(12497), + [anon_sym_BSLASHCref] = ACTIONS(12497), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnameCref] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHlabelcref] = ACTIONS(12497), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12497), + [anon_sym_BSLASHeqref] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange] = ACTIONS(12497), + [anon_sym_BSLASHCrefrange] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewlabel] = ACTIONS(12497), + [anon_sym_BSLASHnewcommand] = ACTIONS(12497), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12497), + [anon_sym_BSLASHgls] = ACTIONS(12497), + [anon_sym_BSLASHGls] = ACTIONS(12497), + [anon_sym_BSLASHGLS] = ACTIONS(12497), + [anon_sym_BSLASHglspl] = ACTIONS(12497), + [anon_sym_BSLASHGlspl] = ACTIONS(12497), + [anon_sym_BSLASHGLSpl] = ACTIONS(12497), + [anon_sym_BSLASHglsdisp] = ACTIONS(12497), + [anon_sym_BSLASHglslink] = ACTIONS(12497), + [anon_sym_BSLASHglstext] = ACTIONS(12497), + [anon_sym_BSLASHGlstext] = ACTIONS(12497), + [anon_sym_BSLASHGLStext] = ACTIONS(12497), + [anon_sym_BSLASHglsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12497), + [anon_sym_BSLASHglsplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSplural] = ACTIONS(12497), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHglsname] = ACTIONS(12497), + [anon_sym_BSLASHGlsname] = ACTIONS(12497), + [anon_sym_BSLASHGLSname] = ACTIONS(12497), + [anon_sym_BSLASHglssymbol] = ACTIONS(12497), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12497), + [anon_sym_BSLASHglsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12497), + [anon_sym_BSLASHglsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12497), + [anon_sym_BSLASHglsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12497), + [anon_sym_BSLASHglsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12497), + [anon_sym_BSLASHglsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12497), + [anon_sym_BSLASHnewacronym] = ACTIONS(12497), + [anon_sym_BSLASHacrshort] = ACTIONS(12497), + [anon_sym_BSLASHAcrshort] = ACTIONS(12497), + [anon_sym_BSLASHACRshort] = ACTIONS(12497), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12497), + [anon_sym_BSLASHacrlong] = ACTIONS(12497), + [anon_sym_BSLASHAcrlong] = ACTIONS(12497), + [anon_sym_BSLASHACRlong] = ACTIONS(12497), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12497), + [anon_sym_BSLASHacrfull] = ACTIONS(12497), + [anon_sym_BSLASHAcrfull] = ACTIONS(12497), + [anon_sym_BSLASHACRfull] = ACTIONS(12497), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12497), + [anon_sym_BSLASHacs] = ACTIONS(12497), + [anon_sym_BSLASHAcs] = ACTIONS(12497), + [anon_sym_BSLASHacsp] = ACTIONS(12497), + [anon_sym_BSLASHAcsp] = ACTIONS(12497), + [anon_sym_BSLASHacl] = ACTIONS(12497), + [anon_sym_BSLASHAcl] = ACTIONS(12497), + [anon_sym_BSLASHaclp] = ACTIONS(12497), + [anon_sym_BSLASHAclp] = ACTIONS(12497), + [anon_sym_BSLASHacf] = ACTIONS(12497), + [anon_sym_BSLASHAcf] = ACTIONS(12497), + [anon_sym_BSLASHacfp] = ACTIONS(12497), + [anon_sym_BSLASHAcfp] = ACTIONS(12497), + [anon_sym_BSLASHac] = ACTIONS(12497), + [anon_sym_BSLASHAc] = ACTIONS(12497), + [anon_sym_BSLASHacp] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12497), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12497), + [anon_sym_BSLASHcolor] = ACTIONS(12497), + [anon_sym_BSLASHcolorbox] = ACTIONS(12497), + [anon_sym_BSLASHtextcolor] = ACTIONS(12497), + [anon_sym_BSLASHpagecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12497), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12497), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12497), + }, + [1581] = { + [sym_generic_command_name] = ACTIONS(12501), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12501), + [aux_sym_subparagraph_token1] = ACTIONS(12501), + [anon_sym_BSLASHitem] = ACTIONS(12501), + [anon_sym_LBRACK] = ACTIONS(12499), + [anon_sym_RBRACK] = ACTIONS(12499), + [anon_sym_LBRACE] = ACTIONS(12499), + [anon_sym_RBRACE] = ACTIONS(12499), + [anon_sym_LPAREN] = ACTIONS(12499), + [anon_sym_COMMA] = ACTIONS(12499), + [anon_sym_EQ] = ACTIONS(12499), + [sym_word] = ACTIONS(12499), + [sym_param] = ACTIONS(12499), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12499), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12499), + [anon_sym_DOLLAR] = ACTIONS(12501), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12499), + [anon_sym_BSLASHbegin] = ACTIONS(12501), + [anon_sym_BSLASHcaption] = ACTIONS(12501), + [anon_sym_BSLASHcite] = ACTIONS(12501), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCite] = ACTIONS(12501), + [anon_sym_BSLASHnocite] = ACTIONS(12501), + [anon_sym_BSLASHcitet] = ACTIONS(12501), + [anon_sym_BSLASHcitep] = ACTIONS(12501), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteauthor] = ACTIONS(12501), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12501), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitetitle] = ACTIONS(12501), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteyear] = ACTIONS(12501), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitedate] = ACTIONS(12501), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteurl] = ACTIONS(12501), + [anon_sym_BSLASHfullcite] = ACTIONS(12501), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12501), + [anon_sym_BSLASHcitealt] = ACTIONS(12501), + [anon_sym_BSLASHcitealp] = ACTIONS(12501), + [anon_sym_BSLASHcitetext] = ACTIONS(12501), + [anon_sym_BSLASHparencite] = ACTIONS(12501), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHParencite] = ACTIONS(12501), + [anon_sym_BSLASHfootcite] = ACTIONS(12501), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12501), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12501), + [anon_sym_BSLASHtextcite] = ACTIONS(12501), + [anon_sym_BSLASHTextcite] = ACTIONS(12501), + [anon_sym_BSLASHsmartcite] = ACTIONS(12501), + [anon_sym_BSLASHSmartcite] = ACTIONS(12501), + [anon_sym_BSLASHsupercite] = ACTIONS(12501), + [anon_sym_BSLASHautocite] = ACTIONS(12501), + [anon_sym_BSLASHAutocite] = ACTIONS(12501), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHvolcite] = ACTIONS(12501), + [anon_sym_BSLASHVolcite] = ACTIONS(12501), + [anon_sym_BSLASHpvolcite] = ACTIONS(12501), + [anon_sym_BSLASHPvolcite] = ACTIONS(12501), + [anon_sym_BSLASHfvolcite] = ACTIONS(12501), + [anon_sym_BSLASHftvolcite] = ACTIONS(12501), + [anon_sym_BSLASHsvolcite] = ACTIONS(12501), + [anon_sym_BSLASHSvolcite] = ACTIONS(12501), + [anon_sym_BSLASHtvolcite] = ACTIONS(12501), + [anon_sym_BSLASHTvolcite] = ACTIONS(12501), + [anon_sym_BSLASHavolcite] = ACTIONS(12501), + [anon_sym_BSLASHAvolcite] = ACTIONS(12501), + [anon_sym_BSLASHnotecite] = ACTIONS(12501), + [anon_sym_BSLASHpnotecite] = ACTIONS(12501), + [anon_sym_BSLASHPnotecite] = ACTIONS(12501), + [anon_sym_BSLASHfnotecite] = ACTIONS(12501), + [anon_sym_BSLASHusepackage] = ACTIONS(12501), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12501), + [anon_sym_BSLASHinclude] = ACTIONS(12501), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12501), + [anon_sym_BSLASHinput] = ACTIONS(12501), + [anon_sym_BSLASHsubfile] = ACTIONS(12501), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12501), + [anon_sym_BSLASHbibliography] = ACTIONS(12501), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12501), + [anon_sym_BSLASHincludesvg] = ACTIONS(12501), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12501), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12501), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12501), + [anon_sym_BSLASHimport] = ACTIONS(12501), + [anon_sym_BSLASHsubimport] = ACTIONS(12501), + [anon_sym_BSLASHinputfrom] = ACTIONS(12501), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12501), + [anon_sym_BSLASHincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHlabel] = ACTIONS(12501), + [anon_sym_BSLASHref] = ACTIONS(12501), + [anon_sym_BSLASHvref] = ACTIONS(12501), + [anon_sym_BSLASHVref] = ACTIONS(12501), + [anon_sym_BSLASHautoref] = ACTIONS(12501), + [anon_sym_BSLASHpageref] = ACTIONS(12501), + [anon_sym_BSLASHcref] = ACTIONS(12501), + [anon_sym_BSLASHCref] = ACTIONS(12501), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnameCref] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHlabelcref] = ACTIONS(12501), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12501), + [anon_sym_BSLASHeqref] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange] = ACTIONS(12501), + [anon_sym_BSLASHCrefrange] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewlabel] = ACTIONS(12501), + [anon_sym_BSLASHnewcommand] = ACTIONS(12501), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12501), + [anon_sym_BSLASHgls] = ACTIONS(12501), + [anon_sym_BSLASHGls] = ACTIONS(12501), + [anon_sym_BSLASHGLS] = ACTIONS(12501), + [anon_sym_BSLASHglspl] = ACTIONS(12501), + [anon_sym_BSLASHGlspl] = ACTIONS(12501), + [anon_sym_BSLASHGLSpl] = ACTIONS(12501), + [anon_sym_BSLASHglsdisp] = ACTIONS(12501), + [anon_sym_BSLASHglslink] = ACTIONS(12501), + [anon_sym_BSLASHglstext] = ACTIONS(12501), + [anon_sym_BSLASHGlstext] = ACTIONS(12501), + [anon_sym_BSLASHGLStext] = ACTIONS(12501), + [anon_sym_BSLASHglsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12501), + [anon_sym_BSLASHglsplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSplural] = ACTIONS(12501), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHglsname] = ACTIONS(12501), + [anon_sym_BSLASHGlsname] = ACTIONS(12501), + [anon_sym_BSLASHGLSname] = ACTIONS(12501), + [anon_sym_BSLASHglssymbol] = ACTIONS(12501), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12501), + [anon_sym_BSLASHglsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12501), + [anon_sym_BSLASHglsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12501), + [anon_sym_BSLASHglsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12501), + [anon_sym_BSLASHglsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12501), + [anon_sym_BSLASHglsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12501), + [anon_sym_BSLASHnewacronym] = ACTIONS(12501), + [anon_sym_BSLASHacrshort] = ACTIONS(12501), + [anon_sym_BSLASHAcrshort] = ACTIONS(12501), + [anon_sym_BSLASHACRshort] = ACTIONS(12501), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12501), + [anon_sym_BSLASHacrlong] = ACTIONS(12501), + [anon_sym_BSLASHAcrlong] = ACTIONS(12501), + [anon_sym_BSLASHACRlong] = ACTIONS(12501), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12501), + [anon_sym_BSLASHacrfull] = ACTIONS(12501), + [anon_sym_BSLASHAcrfull] = ACTIONS(12501), + [anon_sym_BSLASHACRfull] = ACTIONS(12501), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12501), + [anon_sym_BSLASHacs] = ACTIONS(12501), + [anon_sym_BSLASHAcs] = ACTIONS(12501), + [anon_sym_BSLASHacsp] = ACTIONS(12501), + [anon_sym_BSLASHAcsp] = ACTIONS(12501), + [anon_sym_BSLASHacl] = ACTIONS(12501), + [anon_sym_BSLASHAcl] = ACTIONS(12501), + [anon_sym_BSLASHaclp] = ACTIONS(12501), + [anon_sym_BSLASHAclp] = ACTIONS(12501), + [anon_sym_BSLASHacf] = ACTIONS(12501), + [anon_sym_BSLASHAcf] = ACTIONS(12501), + [anon_sym_BSLASHacfp] = ACTIONS(12501), + [anon_sym_BSLASHAcfp] = ACTIONS(12501), + [anon_sym_BSLASHac] = ACTIONS(12501), + [anon_sym_BSLASHAc] = ACTIONS(12501), + [anon_sym_BSLASHacp] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12501), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12501), + [anon_sym_BSLASHcolor] = ACTIONS(12501), + [anon_sym_BSLASHcolorbox] = ACTIONS(12501), + [anon_sym_BSLASHtextcolor] = ACTIONS(12501), + [anon_sym_BSLASHpagecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12501), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12501), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12501), + }, + [1582] = { + [sym_generic_command_name] = ACTIONS(12509), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12509), + [aux_sym_subparagraph_token1] = ACTIONS(12509), + [anon_sym_BSLASHitem] = ACTIONS(12509), + [anon_sym_LBRACK] = ACTIONS(12507), + [anon_sym_RBRACK] = ACTIONS(12507), + [anon_sym_LBRACE] = ACTIONS(12507), + [anon_sym_RBRACE] = ACTIONS(12507), + [anon_sym_LPAREN] = ACTIONS(12507), + [anon_sym_COMMA] = ACTIONS(12507), + [anon_sym_EQ] = ACTIONS(12507), + [sym_word] = ACTIONS(12507), + [sym_param] = ACTIONS(12507), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12507), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12507), + [anon_sym_DOLLAR] = ACTIONS(12509), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12507), + [anon_sym_BSLASHbegin] = ACTIONS(12509), + [anon_sym_BSLASHcaption] = ACTIONS(12509), + [anon_sym_BSLASHcite] = ACTIONS(12509), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCite] = ACTIONS(12509), + [anon_sym_BSLASHnocite] = ACTIONS(12509), + [anon_sym_BSLASHcitet] = ACTIONS(12509), + [anon_sym_BSLASHcitep] = ACTIONS(12509), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteauthor] = ACTIONS(12509), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12509), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitetitle] = ACTIONS(12509), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteyear] = ACTIONS(12509), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitedate] = ACTIONS(12509), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteurl] = ACTIONS(12509), + [anon_sym_BSLASHfullcite] = ACTIONS(12509), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12509), + [anon_sym_BSLASHcitealt] = ACTIONS(12509), + [anon_sym_BSLASHcitealp] = ACTIONS(12509), + [anon_sym_BSLASHcitetext] = ACTIONS(12509), + [anon_sym_BSLASHparencite] = ACTIONS(12509), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHParencite] = ACTIONS(12509), + [anon_sym_BSLASHfootcite] = ACTIONS(12509), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12509), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12509), + [anon_sym_BSLASHtextcite] = ACTIONS(12509), + [anon_sym_BSLASHTextcite] = ACTIONS(12509), + [anon_sym_BSLASHsmartcite] = ACTIONS(12509), + [anon_sym_BSLASHSmartcite] = ACTIONS(12509), + [anon_sym_BSLASHsupercite] = ACTIONS(12509), + [anon_sym_BSLASHautocite] = ACTIONS(12509), + [anon_sym_BSLASHAutocite] = ACTIONS(12509), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHvolcite] = ACTIONS(12509), + [anon_sym_BSLASHVolcite] = ACTIONS(12509), + [anon_sym_BSLASHpvolcite] = ACTIONS(12509), + [anon_sym_BSLASHPvolcite] = ACTIONS(12509), + [anon_sym_BSLASHfvolcite] = ACTIONS(12509), + [anon_sym_BSLASHftvolcite] = ACTIONS(12509), + [anon_sym_BSLASHsvolcite] = ACTIONS(12509), + [anon_sym_BSLASHSvolcite] = ACTIONS(12509), + [anon_sym_BSLASHtvolcite] = ACTIONS(12509), + [anon_sym_BSLASHTvolcite] = ACTIONS(12509), + [anon_sym_BSLASHavolcite] = ACTIONS(12509), + [anon_sym_BSLASHAvolcite] = ACTIONS(12509), + [anon_sym_BSLASHnotecite] = ACTIONS(12509), + [anon_sym_BSLASHpnotecite] = ACTIONS(12509), + [anon_sym_BSLASHPnotecite] = ACTIONS(12509), + [anon_sym_BSLASHfnotecite] = ACTIONS(12509), + [anon_sym_BSLASHusepackage] = ACTIONS(12509), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12509), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12509), + [anon_sym_BSLASHinclude] = ACTIONS(12509), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12509), + [anon_sym_BSLASHinput] = ACTIONS(12509), + [anon_sym_BSLASHsubfile] = ACTIONS(12509), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12509), + [anon_sym_BSLASHbibliography] = ACTIONS(12509), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12509), + [anon_sym_BSLASHincludesvg] = ACTIONS(12509), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12509), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12509), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12509), + [anon_sym_BSLASHimport] = ACTIONS(12509), + [anon_sym_BSLASHsubimport] = ACTIONS(12509), + [anon_sym_BSLASHinputfrom] = ACTIONS(12509), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12509), + [anon_sym_BSLASHincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHlabel] = ACTIONS(12509), + [anon_sym_BSLASHref] = ACTIONS(12509), + [anon_sym_BSLASHvref] = ACTIONS(12509), + [anon_sym_BSLASHVref] = ACTIONS(12509), + [anon_sym_BSLASHautoref] = ACTIONS(12509), + [anon_sym_BSLASHpageref] = ACTIONS(12509), + [anon_sym_BSLASHcref] = ACTIONS(12509), + [anon_sym_BSLASHCref] = ACTIONS(12509), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnameCref] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHlabelcref] = ACTIONS(12509), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12509), + [anon_sym_BSLASHeqref] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange] = ACTIONS(12509), + [anon_sym_BSLASHCrefrange] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewlabel] = ACTIONS(12509), + [anon_sym_BSLASHnewcommand] = ACTIONS(12509), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12509), + [anon_sym_BSLASHgls] = ACTIONS(12509), + [anon_sym_BSLASHGls] = ACTIONS(12509), + [anon_sym_BSLASHGLS] = ACTIONS(12509), + [anon_sym_BSLASHglspl] = ACTIONS(12509), + [anon_sym_BSLASHGlspl] = ACTIONS(12509), + [anon_sym_BSLASHGLSpl] = ACTIONS(12509), + [anon_sym_BSLASHglsdisp] = ACTIONS(12509), + [anon_sym_BSLASHglslink] = ACTIONS(12509), + [anon_sym_BSLASHglstext] = ACTIONS(12509), + [anon_sym_BSLASHGlstext] = ACTIONS(12509), + [anon_sym_BSLASHGLStext] = ACTIONS(12509), + [anon_sym_BSLASHglsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12509), + [anon_sym_BSLASHglsplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSplural] = ACTIONS(12509), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHglsname] = ACTIONS(12509), + [anon_sym_BSLASHGlsname] = ACTIONS(12509), + [anon_sym_BSLASHGLSname] = ACTIONS(12509), + [anon_sym_BSLASHglssymbol] = ACTIONS(12509), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12509), + [anon_sym_BSLASHglsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12509), + [anon_sym_BSLASHglsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12509), + [anon_sym_BSLASHglsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12509), + [anon_sym_BSLASHglsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12509), + [anon_sym_BSLASHglsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12509), + [anon_sym_BSLASHnewacronym] = ACTIONS(12509), + [anon_sym_BSLASHacrshort] = ACTIONS(12509), + [anon_sym_BSLASHAcrshort] = ACTIONS(12509), + [anon_sym_BSLASHACRshort] = ACTIONS(12509), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12509), + [anon_sym_BSLASHacrlong] = ACTIONS(12509), + [anon_sym_BSLASHAcrlong] = ACTIONS(12509), + [anon_sym_BSLASHACRlong] = ACTIONS(12509), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12509), + [anon_sym_BSLASHacrfull] = ACTIONS(12509), + [anon_sym_BSLASHAcrfull] = ACTIONS(12509), + [anon_sym_BSLASHACRfull] = ACTIONS(12509), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12509), + [anon_sym_BSLASHacs] = ACTIONS(12509), + [anon_sym_BSLASHAcs] = ACTIONS(12509), + [anon_sym_BSLASHacsp] = ACTIONS(12509), + [anon_sym_BSLASHAcsp] = ACTIONS(12509), + [anon_sym_BSLASHacl] = ACTIONS(12509), + [anon_sym_BSLASHAcl] = ACTIONS(12509), + [anon_sym_BSLASHaclp] = ACTIONS(12509), + [anon_sym_BSLASHAclp] = ACTIONS(12509), + [anon_sym_BSLASHacf] = ACTIONS(12509), + [anon_sym_BSLASHAcf] = ACTIONS(12509), + [anon_sym_BSLASHacfp] = ACTIONS(12509), + [anon_sym_BSLASHAcfp] = ACTIONS(12509), + [anon_sym_BSLASHac] = ACTIONS(12509), + [anon_sym_BSLASHAc] = ACTIONS(12509), + [anon_sym_BSLASHacp] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12509), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12509), + [anon_sym_BSLASHcolor] = ACTIONS(12509), + [anon_sym_BSLASHcolorbox] = ACTIONS(12509), + [anon_sym_BSLASHtextcolor] = ACTIONS(12509), + [anon_sym_BSLASHpagecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12509), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12509), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12509), + }, + [1583] = { + [sym_generic_command_name] = ACTIONS(12513), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12513), + [aux_sym_subparagraph_token1] = ACTIONS(12513), + [anon_sym_BSLASHitem] = ACTIONS(12513), + [anon_sym_LBRACK] = ACTIONS(12511), + [anon_sym_RBRACK] = ACTIONS(12511), + [anon_sym_LBRACE] = ACTIONS(12778), + [anon_sym_RBRACE] = ACTIONS(12511), + [anon_sym_LPAREN] = ACTIONS(12511), + [anon_sym_COMMA] = ACTIONS(12511), + [anon_sym_EQ] = ACTIONS(12511), + [sym_word] = ACTIONS(12511), + [sym_param] = ACTIONS(12511), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12511), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12511), + [anon_sym_DOLLAR] = ACTIONS(12513), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12511), + [anon_sym_BSLASHbegin] = ACTIONS(12513), + [anon_sym_BSLASHcaption] = ACTIONS(12513), + [anon_sym_BSLASHcite] = ACTIONS(12513), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCite] = ACTIONS(12513), + [anon_sym_BSLASHnocite] = ACTIONS(12513), + [anon_sym_BSLASHcitet] = ACTIONS(12513), + [anon_sym_BSLASHcitep] = ACTIONS(12513), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteauthor] = ACTIONS(12513), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12513), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitetitle] = ACTIONS(12513), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteyear] = ACTIONS(12513), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitedate] = ACTIONS(12513), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteurl] = ACTIONS(12513), + [anon_sym_BSLASHfullcite] = ACTIONS(12513), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12513), + [anon_sym_BSLASHcitealt] = ACTIONS(12513), + [anon_sym_BSLASHcitealp] = ACTIONS(12513), + [anon_sym_BSLASHcitetext] = ACTIONS(12513), + [anon_sym_BSLASHparencite] = ACTIONS(12513), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHParencite] = ACTIONS(12513), + [anon_sym_BSLASHfootcite] = ACTIONS(12513), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12513), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12513), + [anon_sym_BSLASHtextcite] = ACTIONS(12513), + [anon_sym_BSLASHTextcite] = ACTIONS(12513), + [anon_sym_BSLASHsmartcite] = ACTIONS(12513), + [anon_sym_BSLASHSmartcite] = ACTIONS(12513), + [anon_sym_BSLASHsupercite] = ACTIONS(12513), + [anon_sym_BSLASHautocite] = ACTIONS(12513), + [anon_sym_BSLASHAutocite] = ACTIONS(12513), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHvolcite] = ACTIONS(12513), + [anon_sym_BSLASHVolcite] = ACTIONS(12513), + [anon_sym_BSLASHpvolcite] = ACTIONS(12513), + [anon_sym_BSLASHPvolcite] = ACTIONS(12513), + [anon_sym_BSLASHfvolcite] = ACTIONS(12513), + [anon_sym_BSLASHftvolcite] = ACTIONS(12513), + [anon_sym_BSLASHsvolcite] = ACTIONS(12513), + [anon_sym_BSLASHSvolcite] = ACTIONS(12513), + [anon_sym_BSLASHtvolcite] = ACTIONS(12513), + [anon_sym_BSLASHTvolcite] = ACTIONS(12513), + [anon_sym_BSLASHavolcite] = ACTIONS(12513), + [anon_sym_BSLASHAvolcite] = ACTIONS(12513), + [anon_sym_BSLASHnotecite] = ACTIONS(12513), + [anon_sym_BSLASHpnotecite] = ACTIONS(12513), + [anon_sym_BSLASHPnotecite] = ACTIONS(12513), + [anon_sym_BSLASHfnotecite] = ACTIONS(12513), + [anon_sym_BSLASHusepackage] = ACTIONS(12513), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12513), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12513), + [anon_sym_BSLASHinclude] = ACTIONS(12513), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12513), + [anon_sym_BSLASHinput] = ACTIONS(12513), + [anon_sym_BSLASHsubfile] = ACTIONS(12513), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12513), + [anon_sym_BSLASHbibliography] = ACTIONS(12513), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12513), + [anon_sym_BSLASHincludesvg] = ACTIONS(12513), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12513), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12513), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12513), + [anon_sym_BSLASHimport] = ACTIONS(12513), + [anon_sym_BSLASHsubimport] = ACTIONS(12513), + [anon_sym_BSLASHinputfrom] = ACTIONS(12513), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12513), + [anon_sym_BSLASHincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHlabel] = ACTIONS(12513), + [anon_sym_BSLASHref] = ACTIONS(12513), + [anon_sym_BSLASHvref] = ACTIONS(12513), + [anon_sym_BSLASHVref] = ACTIONS(12513), + [anon_sym_BSLASHautoref] = ACTIONS(12513), + [anon_sym_BSLASHpageref] = ACTIONS(12513), + [anon_sym_BSLASHcref] = ACTIONS(12513), + [anon_sym_BSLASHCref] = ACTIONS(12513), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnameCref] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHlabelcref] = ACTIONS(12513), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12513), + [anon_sym_BSLASHeqref] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange] = ACTIONS(12513), + [anon_sym_BSLASHCrefrange] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewlabel] = ACTIONS(12513), + [anon_sym_BSLASHnewcommand] = ACTIONS(12513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12513), + [anon_sym_BSLASHgls] = ACTIONS(12513), + [anon_sym_BSLASHGls] = ACTIONS(12513), + [anon_sym_BSLASHGLS] = ACTIONS(12513), + [anon_sym_BSLASHglspl] = ACTIONS(12513), + [anon_sym_BSLASHGlspl] = ACTIONS(12513), + [anon_sym_BSLASHGLSpl] = ACTIONS(12513), + [anon_sym_BSLASHglsdisp] = ACTIONS(12513), + [anon_sym_BSLASHglslink] = ACTIONS(12513), + [anon_sym_BSLASHglstext] = ACTIONS(12513), + [anon_sym_BSLASHGlstext] = ACTIONS(12513), + [anon_sym_BSLASHGLStext] = ACTIONS(12513), + [anon_sym_BSLASHglsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12513), + [anon_sym_BSLASHglsplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSplural] = ACTIONS(12513), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHglsname] = ACTIONS(12513), + [anon_sym_BSLASHGlsname] = ACTIONS(12513), + [anon_sym_BSLASHGLSname] = ACTIONS(12513), + [anon_sym_BSLASHglssymbol] = ACTIONS(12513), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12513), + [anon_sym_BSLASHglsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12513), + [anon_sym_BSLASHglsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12513), + [anon_sym_BSLASHglsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12513), + [anon_sym_BSLASHglsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12513), + [anon_sym_BSLASHglsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12513), + [anon_sym_BSLASHnewacronym] = ACTIONS(12513), + [anon_sym_BSLASHacrshort] = ACTIONS(12513), + [anon_sym_BSLASHAcrshort] = ACTIONS(12513), + [anon_sym_BSLASHACRshort] = ACTIONS(12513), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12513), + [anon_sym_BSLASHacrlong] = ACTIONS(12513), + [anon_sym_BSLASHAcrlong] = ACTIONS(12513), + [anon_sym_BSLASHACRlong] = ACTIONS(12513), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12513), + [anon_sym_BSLASHacrfull] = ACTIONS(12513), + [anon_sym_BSLASHAcrfull] = ACTIONS(12513), + [anon_sym_BSLASHACRfull] = ACTIONS(12513), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12513), + [anon_sym_BSLASHacs] = ACTIONS(12513), + [anon_sym_BSLASHAcs] = ACTIONS(12513), + [anon_sym_BSLASHacsp] = ACTIONS(12513), + [anon_sym_BSLASHAcsp] = ACTIONS(12513), + [anon_sym_BSLASHacl] = ACTIONS(12513), + [anon_sym_BSLASHAcl] = ACTIONS(12513), + [anon_sym_BSLASHaclp] = ACTIONS(12513), + [anon_sym_BSLASHAclp] = ACTIONS(12513), + [anon_sym_BSLASHacf] = ACTIONS(12513), + [anon_sym_BSLASHAcf] = ACTIONS(12513), + [anon_sym_BSLASHacfp] = ACTIONS(12513), + [anon_sym_BSLASHAcfp] = ACTIONS(12513), + [anon_sym_BSLASHac] = ACTIONS(12513), + [anon_sym_BSLASHAc] = ACTIONS(12513), + [anon_sym_BSLASHacp] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12513), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12513), + [anon_sym_BSLASHcolor] = ACTIONS(12513), + [anon_sym_BSLASHcolorbox] = ACTIONS(12513), + [anon_sym_BSLASHtextcolor] = ACTIONS(12513), + [anon_sym_BSLASHpagecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12513), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12513), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12513), + }, + [1584] = { + [sym_generic_command_name] = ACTIONS(12519), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12519), + [aux_sym_subparagraph_token1] = ACTIONS(12519), + [anon_sym_BSLASHitem] = ACTIONS(12519), + [anon_sym_LBRACK] = ACTIONS(12517), + [anon_sym_RBRACK] = ACTIONS(12517), + [anon_sym_LBRACE] = ACTIONS(12517), + [anon_sym_RBRACE] = ACTIONS(12517), + [anon_sym_LPAREN] = ACTIONS(12517), + [anon_sym_COMMA] = ACTIONS(12517), + [anon_sym_EQ] = ACTIONS(12517), + [sym_word] = ACTIONS(12517), + [sym_param] = ACTIONS(12517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12517), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12517), + [anon_sym_DOLLAR] = ACTIONS(12519), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12517), + [anon_sym_BSLASHbegin] = ACTIONS(12519), + [anon_sym_BSLASHcaption] = ACTIONS(12519), + [anon_sym_BSLASHcite] = ACTIONS(12519), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCite] = ACTIONS(12519), + [anon_sym_BSLASHnocite] = ACTIONS(12519), + [anon_sym_BSLASHcitet] = ACTIONS(12519), + [anon_sym_BSLASHcitep] = ACTIONS(12519), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteauthor] = ACTIONS(12519), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12519), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitetitle] = ACTIONS(12519), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteyear] = ACTIONS(12519), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitedate] = ACTIONS(12519), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteurl] = ACTIONS(12519), + [anon_sym_BSLASHfullcite] = ACTIONS(12519), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12519), + [anon_sym_BSLASHcitealt] = ACTIONS(12519), + [anon_sym_BSLASHcitealp] = ACTIONS(12519), + [anon_sym_BSLASHcitetext] = ACTIONS(12519), + [anon_sym_BSLASHparencite] = ACTIONS(12519), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHParencite] = ACTIONS(12519), + [anon_sym_BSLASHfootcite] = ACTIONS(12519), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12519), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12519), + [anon_sym_BSLASHtextcite] = ACTIONS(12519), + [anon_sym_BSLASHTextcite] = ACTIONS(12519), + [anon_sym_BSLASHsmartcite] = ACTIONS(12519), + [anon_sym_BSLASHSmartcite] = ACTIONS(12519), + [anon_sym_BSLASHsupercite] = ACTIONS(12519), + [anon_sym_BSLASHautocite] = ACTIONS(12519), + [anon_sym_BSLASHAutocite] = ACTIONS(12519), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHvolcite] = ACTIONS(12519), + [anon_sym_BSLASHVolcite] = ACTIONS(12519), + [anon_sym_BSLASHpvolcite] = ACTIONS(12519), + [anon_sym_BSLASHPvolcite] = ACTIONS(12519), + [anon_sym_BSLASHfvolcite] = ACTIONS(12519), + [anon_sym_BSLASHftvolcite] = ACTIONS(12519), + [anon_sym_BSLASHsvolcite] = ACTIONS(12519), + [anon_sym_BSLASHSvolcite] = ACTIONS(12519), + [anon_sym_BSLASHtvolcite] = ACTIONS(12519), + [anon_sym_BSLASHTvolcite] = ACTIONS(12519), + [anon_sym_BSLASHavolcite] = ACTIONS(12519), + [anon_sym_BSLASHAvolcite] = ACTIONS(12519), + [anon_sym_BSLASHnotecite] = ACTIONS(12519), + [anon_sym_BSLASHpnotecite] = ACTIONS(12519), + [anon_sym_BSLASHPnotecite] = ACTIONS(12519), + [anon_sym_BSLASHfnotecite] = ACTIONS(12519), + [anon_sym_BSLASHusepackage] = ACTIONS(12519), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12519), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12519), + [anon_sym_BSLASHinclude] = ACTIONS(12519), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12519), + [anon_sym_BSLASHinput] = ACTIONS(12519), + [anon_sym_BSLASHsubfile] = ACTIONS(12519), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12519), + [anon_sym_BSLASHbibliography] = ACTIONS(12519), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12519), + [anon_sym_BSLASHincludesvg] = ACTIONS(12519), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12519), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12519), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12519), + [anon_sym_BSLASHimport] = ACTIONS(12519), + [anon_sym_BSLASHsubimport] = ACTIONS(12519), + [anon_sym_BSLASHinputfrom] = ACTIONS(12519), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12519), + [anon_sym_BSLASHincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHlabel] = ACTIONS(12519), + [anon_sym_BSLASHref] = ACTIONS(12519), + [anon_sym_BSLASHvref] = ACTIONS(12519), + [anon_sym_BSLASHVref] = ACTIONS(12519), + [anon_sym_BSLASHautoref] = ACTIONS(12519), + [anon_sym_BSLASHpageref] = ACTIONS(12519), + [anon_sym_BSLASHcref] = ACTIONS(12519), + [anon_sym_BSLASHCref] = ACTIONS(12519), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnameCref] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHlabelcref] = ACTIONS(12519), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12519), + [anon_sym_BSLASHeqref] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange] = ACTIONS(12519), + [anon_sym_BSLASHCrefrange] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewlabel] = ACTIONS(12519), + [anon_sym_BSLASHnewcommand] = ACTIONS(12519), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12519), + [anon_sym_BSLASHgls] = ACTIONS(12519), + [anon_sym_BSLASHGls] = ACTIONS(12519), + [anon_sym_BSLASHGLS] = ACTIONS(12519), + [anon_sym_BSLASHglspl] = ACTIONS(12519), + [anon_sym_BSLASHGlspl] = ACTIONS(12519), + [anon_sym_BSLASHGLSpl] = ACTIONS(12519), + [anon_sym_BSLASHglsdisp] = ACTIONS(12519), + [anon_sym_BSLASHglslink] = ACTIONS(12519), + [anon_sym_BSLASHglstext] = ACTIONS(12519), + [anon_sym_BSLASHGlstext] = ACTIONS(12519), + [anon_sym_BSLASHGLStext] = ACTIONS(12519), + [anon_sym_BSLASHglsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12519), + [anon_sym_BSLASHglsplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSplural] = ACTIONS(12519), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHglsname] = ACTIONS(12519), + [anon_sym_BSLASHGlsname] = ACTIONS(12519), + [anon_sym_BSLASHGLSname] = ACTIONS(12519), + [anon_sym_BSLASHglssymbol] = ACTIONS(12519), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12519), + [anon_sym_BSLASHglsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12519), + [anon_sym_BSLASHglsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12519), + [anon_sym_BSLASHglsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12519), + [anon_sym_BSLASHglsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12519), + [anon_sym_BSLASHglsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12519), + [anon_sym_BSLASHnewacronym] = ACTIONS(12519), + [anon_sym_BSLASHacrshort] = ACTIONS(12519), + [anon_sym_BSLASHAcrshort] = ACTIONS(12519), + [anon_sym_BSLASHACRshort] = ACTIONS(12519), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12519), + [anon_sym_BSLASHacrlong] = ACTIONS(12519), + [anon_sym_BSLASHAcrlong] = ACTIONS(12519), + [anon_sym_BSLASHACRlong] = ACTIONS(12519), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12519), + [anon_sym_BSLASHacrfull] = ACTIONS(12519), + [anon_sym_BSLASHAcrfull] = ACTIONS(12519), + [anon_sym_BSLASHACRfull] = ACTIONS(12519), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12519), + [anon_sym_BSLASHacs] = ACTIONS(12519), + [anon_sym_BSLASHAcs] = ACTIONS(12519), + [anon_sym_BSLASHacsp] = ACTIONS(12519), + [anon_sym_BSLASHAcsp] = ACTIONS(12519), + [anon_sym_BSLASHacl] = ACTIONS(12519), + [anon_sym_BSLASHAcl] = ACTIONS(12519), + [anon_sym_BSLASHaclp] = ACTIONS(12519), + [anon_sym_BSLASHAclp] = ACTIONS(12519), + [anon_sym_BSLASHacf] = ACTIONS(12519), + [anon_sym_BSLASHAcf] = ACTIONS(12519), + [anon_sym_BSLASHacfp] = ACTIONS(12519), + [anon_sym_BSLASHAcfp] = ACTIONS(12519), + [anon_sym_BSLASHac] = ACTIONS(12519), + [anon_sym_BSLASHAc] = ACTIONS(12519), + [anon_sym_BSLASHacp] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12519), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12519), + [anon_sym_BSLASHcolor] = ACTIONS(12519), + [anon_sym_BSLASHcolorbox] = ACTIONS(12519), + [anon_sym_BSLASHtextcolor] = ACTIONS(12519), + [anon_sym_BSLASHpagecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12519), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12519), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12519), + }, + [1585] = { + [sym_generic_command_name] = ACTIONS(12523), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12523), + [aux_sym_subparagraph_token1] = ACTIONS(12523), + [anon_sym_BSLASHitem] = ACTIONS(12523), + [anon_sym_LBRACK] = ACTIONS(12521), + [anon_sym_RBRACK] = ACTIONS(12521), + [anon_sym_LBRACE] = ACTIONS(12521), + [anon_sym_RBRACE] = ACTIONS(12521), + [anon_sym_LPAREN] = ACTIONS(12521), + [anon_sym_COMMA] = ACTIONS(12521), + [anon_sym_EQ] = ACTIONS(12521), + [sym_word] = ACTIONS(12521), + [sym_param] = ACTIONS(12521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12521), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12521), + [anon_sym_DOLLAR] = ACTIONS(12523), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12521), + [anon_sym_BSLASHbegin] = ACTIONS(12523), + [anon_sym_BSLASHcaption] = ACTIONS(12523), + [anon_sym_BSLASHcite] = ACTIONS(12523), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCite] = ACTIONS(12523), + [anon_sym_BSLASHnocite] = ACTIONS(12523), + [anon_sym_BSLASHcitet] = ACTIONS(12523), + [anon_sym_BSLASHcitep] = ACTIONS(12523), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteauthor] = ACTIONS(12523), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12523), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitetitle] = ACTIONS(12523), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteyear] = ACTIONS(12523), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitedate] = ACTIONS(12523), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteurl] = ACTIONS(12523), + [anon_sym_BSLASHfullcite] = ACTIONS(12523), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12523), + [anon_sym_BSLASHcitealt] = ACTIONS(12523), + [anon_sym_BSLASHcitealp] = ACTIONS(12523), + [anon_sym_BSLASHcitetext] = ACTIONS(12523), + [anon_sym_BSLASHparencite] = ACTIONS(12523), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHParencite] = ACTIONS(12523), + [anon_sym_BSLASHfootcite] = ACTIONS(12523), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12523), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12523), + [anon_sym_BSLASHtextcite] = ACTIONS(12523), + [anon_sym_BSLASHTextcite] = ACTIONS(12523), + [anon_sym_BSLASHsmartcite] = ACTIONS(12523), + [anon_sym_BSLASHSmartcite] = ACTIONS(12523), + [anon_sym_BSLASHsupercite] = ACTIONS(12523), + [anon_sym_BSLASHautocite] = ACTIONS(12523), + [anon_sym_BSLASHAutocite] = ACTIONS(12523), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHvolcite] = ACTIONS(12523), + [anon_sym_BSLASHVolcite] = ACTIONS(12523), + [anon_sym_BSLASHpvolcite] = ACTIONS(12523), + [anon_sym_BSLASHPvolcite] = ACTIONS(12523), + [anon_sym_BSLASHfvolcite] = ACTIONS(12523), + [anon_sym_BSLASHftvolcite] = ACTIONS(12523), + [anon_sym_BSLASHsvolcite] = ACTIONS(12523), + [anon_sym_BSLASHSvolcite] = ACTIONS(12523), + [anon_sym_BSLASHtvolcite] = ACTIONS(12523), + [anon_sym_BSLASHTvolcite] = ACTIONS(12523), + [anon_sym_BSLASHavolcite] = ACTIONS(12523), + [anon_sym_BSLASHAvolcite] = ACTIONS(12523), + [anon_sym_BSLASHnotecite] = ACTIONS(12523), + [anon_sym_BSLASHpnotecite] = ACTIONS(12523), + [anon_sym_BSLASHPnotecite] = ACTIONS(12523), + [anon_sym_BSLASHfnotecite] = ACTIONS(12523), + [anon_sym_BSLASHusepackage] = ACTIONS(12523), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12523), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12523), + [anon_sym_BSLASHinclude] = ACTIONS(12523), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12523), + [anon_sym_BSLASHinput] = ACTIONS(12523), + [anon_sym_BSLASHsubfile] = ACTIONS(12523), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12523), + [anon_sym_BSLASHbibliography] = ACTIONS(12523), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12523), + [anon_sym_BSLASHincludesvg] = ACTIONS(12523), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12523), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12523), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12523), + [anon_sym_BSLASHimport] = ACTIONS(12523), + [anon_sym_BSLASHsubimport] = ACTIONS(12523), + [anon_sym_BSLASHinputfrom] = ACTIONS(12523), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12523), + [anon_sym_BSLASHincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHlabel] = ACTIONS(12523), + [anon_sym_BSLASHref] = ACTIONS(12523), + [anon_sym_BSLASHvref] = ACTIONS(12523), + [anon_sym_BSLASHVref] = ACTIONS(12523), + [anon_sym_BSLASHautoref] = ACTIONS(12523), + [anon_sym_BSLASHpageref] = ACTIONS(12523), + [anon_sym_BSLASHcref] = ACTIONS(12523), + [anon_sym_BSLASHCref] = ACTIONS(12523), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnameCref] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHlabelcref] = ACTIONS(12523), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12523), + [anon_sym_BSLASHeqref] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange] = ACTIONS(12523), + [anon_sym_BSLASHCrefrange] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewlabel] = ACTIONS(12523), + [anon_sym_BSLASHnewcommand] = ACTIONS(12523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12523), + [anon_sym_BSLASHgls] = ACTIONS(12523), + [anon_sym_BSLASHGls] = ACTIONS(12523), + [anon_sym_BSLASHGLS] = ACTIONS(12523), + [anon_sym_BSLASHglspl] = ACTIONS(12523), + [anon_sym_BSLASHGlspl] = ACTIONS(12523), + [anon_sym_BSLASHGLSpl] = ACTIONS(12523), + [anon_sym_BSLASHglsdisp] = ACTIONS(12523), + [anon_sym_BSLASHglslink] = ACTIONS(12523), + [anon_sym_BSLASHglstext] = ACTIONS(12523), + [anon_sym_BSLASHGlstext] = ACTIONS(12523), + [anon_sym_BSLASHGLStext] = ACTIONS(12523), + [anon_sym_BSLASHglsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12523), + [anon_sym_BSLASHglsplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSplural] = ACTIONS(12523), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHglsname] = ACTIONS(12523), + [anon_sym_BSLASHGlsname] = ACTIONS(12523), + [anon_sym_BSLASHGLSname] = ACTIONS(12523), + [anon_sym_BSLASHglssymbol] = ACTIONS(12523), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12523), + [anon_sym_BSLASHglsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12523), + [anon_sym_BSLASHglsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12523), + [anon_sym_BSLASHglsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12523), + [anon_sym_BSLASHglsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12523), + [anon_sym_BSLASHglsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12523), + [anon_sym_BSLASHnewacronym] = ACTIONS(12523), + [anon_sym_BSLASHacrshort] = ACTIONS(12523), + [anon_sym_BSLASHAcrshort] = ACTIONS(12523), + [anon_sym_BSLASHACRshort] = ACTIONS(12523), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12523), + [anon_sym_BSLASHacrlong] = ACTIONS(12523), + [anon_sym_BSLASHAcrlong] = ACTIONS(12523), + [anon_sym_BSLASHACRlong] = ACTIONS(12523), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12523), + [anon_sym_BSLASHacrfull] = ACTIONS(12523), + [anon_sym_BSLASHAcrfull] = ACTIONS(12523), + [anon_sym_BSLASHACRfull] = ACTIONS(12523), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12523), + [anon_sym_BSLASHacs] = ACTIONS(12523), + [anon_sym_BSLASHAcs] = ACTIONS(12523), + [anon_sym_BSLASHacsp] = ACTIONS(12523), + [anon_sym_BSLASHAcsp] = ACTIONS(12523), + [anon_sym_BSLASHacl] = ACTIONS(12523), + [anon_sym_BSLASHAcl] = ACTIONS(12523), + [anon_sym_BSLASHaclp] = ACTIONS(12523), + [anon_sym_BSLASHAclp] = ACTIONS(12523), + [anon_sym_BSLASHacf] = ACTIONS(12523), + [anon_sym_BSLASHAcf] = ACTIONS(12523), + [anon_sym_BSLASHacfp] = ACTIONS(12523), + [anon_sym_BSLASHAcfp] = ACTIONS(12523), + [anon_sym_BSLASHac] = ACTIONS(12523), + [anon_sym_BSLASHAc] = ACTIONS(12523), + [anon_sym_BSLASHacp] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12523), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12523), + [anon_sym_BSLASHcolor] = ACTIONS(12523), + [anon_sym_BSLASHcolorbox] = ACTIONS(12523), + [anon_sym_BSLASHtextcolor] = ACTIONS(12523), + [anon_sym_BSLASHpagecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12523), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12523), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12523), + }, + [1586] = { + [sym_generic_command_name] = ACTIONS(12527), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12527), + [aux_sym_subparagraph_token1] = ACTIONS(12527), + [anon_sym_BSLASHitem] = ACTIONS(12527), + [anon_sym_LBRACK] = ACTIONS(12525), + [anon_sym_RBRACK] = ACTIONS(12525), + [anon_sym_LBRACE] = ACTIONS(12525), + [anon_sym_RBRACE] = ACTIONS(12525), + [anon_sym_LPAREN] = ACTIONS(12525), + [anon_sym_COMMA] = ACTIONS(12525), + [anon_sym_EQ] = ACTIONS(12525), + [sym_word] = ACTIONS(12525), + [sym_param] = ACTIONS(12525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12525), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12525), + [anon_sym_DOLLAR] = ACTIONS(12527), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12525), + [anon_sym_BSLASHbegin] = ACTIONS(12527), + [anon_sym_BSLASHcaption] = ACTIONS(12527), + [anon_sym_BSLASHcite] = ACTIONS(12527), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCite] = ACTIONS(12527), + [anon_sym_BSLASHnocite] = ACTIONS(12527), + [anon_sym_BSLASHcitet] = ACTIONS(12527), + [anon_sym_BSLASHcitep] = ACTIONS(12527), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteauthor] = ACTIONS(12527), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12527), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitetitle] = ACTIONS(12527), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteyear] = ACTIONS(12527), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitedate] = ACTIONS(12527), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteurl] = ACTIONS(12527), + [anon_sym_BSLASHfullcite] = ACTIONS(12527), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12527), + [anon_sym_BSLASHcitealt] = ACTIONS(12527), + [anon_sym_BSLASHcitealp] = ACTIONS(12527), + [anon_sym_BSLASHcitetext] = ACTIONS(12527), + [anon_sym_BSLASHparencite] = ACTIONS(12527), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHParencite] = ACTIONS(12527), + [anon_sym_BSLASHfootcite] = ACTIONS(12527), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12527), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12527), + [anon_sym_BSLASHtextcite] = ACTIONS(12527), + [anon_sym_BSLASHTextcite] = ACTIONS(12527), + [anon_sym_BSLASHsmartcite] = ACTIONS(12527), + [anon_sym_BSLASHSmartcite] = ACTIONS(12527), + [anon_sym_BSLASHsupercite] = ACTIONS(12527), + [anon_sym_BSLASHautocite] = ACTIONS(12527), + [anon_sym_BSLASHAutocite] = ACTIONS(12527), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHvolcite] = ACTIONS(12527), + [anon_sym_BSLASHVolcite] = ACTIONS(12527), + [anon_sym_BSLASHpvolcite] = ACTIONS(12527), + [anon_sym_BSLASHPvolcite] = ACTIONS(12527), + [anon_sym_BSLASHfvolcite] = ACTIONS(12527), + [anon_sym_BSLASHftvolcite] = ACTIONS(12527), + [anon_sym_BSLASHsvolcite] = ACTIONS(12527), + [anon_sym_BSLASHSvolcite] = ACTIONS(12527), + [anon_sym_BSLASHtvolcite] = ACTIONS(12527), + [anon_sym_BSLASHTvolcite] = ACTIONS(12527), + [anon_sym_BSLASHavolcite] = ACTIONS(12527), + [anon_sym_BSLASHAvolcite] = ACTIONS(12527), + [anon_sym_BSLASHnotecite] = ACTIONS(12527), + [anon_sym_BSLASHpnotecite] = ACTIONS(12527), + [anon_sym_BSLASHPnotecite] = ACTIONS(12527), + [anon_sym_BSLASHfnotecite] = ACTIONS(12527), + [anon_sym_BSLASHusepackage] = ACTIONS(12527), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12527), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12527), + [anon_sym_BSLASHinclude] = ACTIONS(12527), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12527), + [anon_sym_BSLASHinput] = ACTIONS(12527), + [anon_sym_BSLASHsubfile] = ACTIONS(12527), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12527), + [anon_sym_BSLASHbibliography] = ACTIONS(12527), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12527), + [anon_sym_BSLASHincludesvg] = ACTIONS(12527), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12527), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12527), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12527), + [anon_sym_BSLASHimport] = ACTIONS(12527), + [anon_sym_BSLASHsubimport] = ACTIONS(12527), + [anon_sym_BSLASHinputfrom] = ACTIONS(12527), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12527), + [anon_sym_BSLASHincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHlabel] = ACTIONS(12527), + [anon_sym_BSLASHref] = ACTIONS(12527), + [anon_sym_BSLASHvref] = ACTIONS(12527), + [anon_sym_BSLASHVref] = ACTIONS(12527), + [anon_sym_BSLASHautoref] = ACTIONS(12527), + [anon_sym_BSLASHpageref] = ACTIONS(12527), + [anon_sym_BSLASHcref] = ACTIONS(12527), + [anon_sym_BSLASHCref] = ACTIONS(12527), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnameCref] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHlabelcref] = ACTIONS(12527), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12527), + [anon_sym_BSLASHeqref] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange] = ACTIONS(12527), + [anon_sym_BSLASHCrefrange] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewlabel] = ACTIONS(12527), + [anon_sym_BSLASHnewcommand] = ACTIONS(12527), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12527), + [anon_sym_BSLASHgls] = ACTIONS(12527), + [anon_sym_BSLASHGls] = ACTIONS(12527), + [anon_sym_BSLASHGLS] = ACTIONS(12527), + [anon_sym_BSLASHglspl] = ACTIONS(12527), + [anon_sym_BSLASHGlspl] = ACTIONS(12527), + [anon_sym_BSLASHGLSpl] = ACTIONS(12527), + [anon_sym_BSLASHglsdisp] = ACTIONS(12527), + [anon_sym_BSLASHglslink] = ACTIONS(12527), + [anon_sym_BSLASHglstext] = ACTIONS(12527), + [anon_sym_BSLASHGlstext] = ACTIONS(12527), + [anon_sym_BSLASHGLStext] = ACTIONS(12527), + [anon_sym_BSLASHglsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12527), + [anon_sym_BSLASHglsplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSplural] = ACTIONS(12527), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHglsname] = ACTIONS(12527), + [anon_sym_BSLASHGlsname] = ACTIONS(12527), + [anon_sym_BSLASHGLSname] = ACTIONS(12527), + [anon_sym_BSLASHglssymbol] = ACTIONS(12527), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12527), + [anon_sym_BSLASHglsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12527), + [anon_sym_BSLASHglsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12527), + [anon_sym_BSLASHglsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12527), + [anon_sym_BSLASHglsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12527), + [anon_sym_BSLASHglsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12527), + [anon_sym_BSLASHnewacronym] = ACTIONS(12527), + [anon_sym_BSLASHacrshort] = ACTIONS(12527), + [anon_sym_BSLASHAcrshort] = ACTIONS(12527), + [anon_sym_BSLASHACRshort] = ACTIONS(12527), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12527), + [anon_sym_BSLASHacrlong] = ACTIONS(12527), + [anon_sym_BSLASHAcrlong] = ACTIONS(12527), + [anon_sym_BSLASHACRlong] = ACTIONS(12527), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12527), + [anon_sym_BSLASHacrfull] = ACTIONS(12527), + [anon_sym_BSLASHAcrfull] = ACTIONS(12527), + [anon_sym_BSLASHACRfull] = ACTIONS(12527), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12527), + [anon_sym_BSLASHacs] = ACTIONS(12527), + [anon_sym_BSLASHAcs] = ACTIONS(12527), + [anon_sym_BSLASHacsp] = ACTIONS(12527), + [anon_sym_BSLASHAcsp] = ACTIONS(12527), + [anon_sym_BSLASHacl] = ACTIONS(12527), + [anon_sym_BSLASHAcl] = ACTIONS(12527), + [anon_sym_BSLASHaclp] = ACTIONS(12527), + [anon_sym_BSLASHAclp] = ACTIONS(12527), + [anon_sym_BSLASHacf] = ACTIONS(12527), + [anon_sym_BSLASHAcf] = ACTIONS(12527), + [anon_sym_BSLASHacfp] = ACTIONS(12527), + [anon_sym_BSLASHAcfp] = ACTIONS(12527), + [anon_sym_BSLASHac] = ACTIONS(12527), + [anon_sym_BSLASHAc] = ACTIONS(12527), + [anon_sym_BSLASHacp] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12527), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12527), + [anon_sym_BSLASHcolor] = ACTIONS(12527), + [anon_sym_BSLASHcolorbox] = ACTIONS(12527), + [anon_sym_BSLASHtextcolor] = ACTIONS(12527), + [anon_sym_BSLASHpagecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12527), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12527), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12527), + }, + [1587] = { + [sym_generic_command_name] = ACTIONS(12531), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12531), + [aux_sym_subparagraph_token1] = ACTIONS(12531), + [anon_sym_BSLASHitem] = ACTIONS(12531), + [anon_sym_LBRACK] = ACTIONS(12529), + [anon_sym_RBRACK] = ACTIONS(12529), + [anon_sym_LBRACE] = ACTIONS(12529), + [anon_sym_RBRACE] = ACTIONS(12529), + [anon_sym_LPAREN] = ACTIONS(12529), + [anon_sym_COMMA] = ACTIONS(12529), + [anon_sym_EQ] = ACTIONS(12529), + [sym_word] = ACTIONS(12529), + [sym_param] = ACTIONS(12529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12529), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12529), + [anon_sym_DOLLAR] = ACTIONS(12531), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12529), + [anon_sym_BSLASHbegin] = ACTIONS(12531), + [anon_sym_BSLASHcaption] = ACTIONS(12531), + [anon_sym_BSLASHcite] = ACTIONS(12531), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCite] = ACTIONS(12531), + [anon_sym_BSLASHnocite] = ACTIONS(12531), + [anon_sym_BSLASHcitet] = ACTIONS(12531), + [anon_sym_BSLASHcitep] = ACTIONS(12531), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteauthor] = ACTIONS(12531), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12531), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitetitle] = ACTIONS(12531), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteyear] = ACTIONS(12531), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitedate] = ACTIONS(12531), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteurl] = ACTIONS(12531), + [anon_sym_BSLASHfullcite] = ACTIONS(12531), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12531), + [anon_sym_BSLASHcitealt] = ACTIONS(12531), + [anon_sym_BSLASHcitealp] = ACTIONS(12531), + [anon_sym_BSLASHcitetext] = ACTIONS(12531), + [anon_sym_BSLASHparencite] = ACTIONS(12531), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHParencite] = ACTIONS(12531), + [anon_sym_BSLASHfootcite] = ACTIONS(12531), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12531), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12531), + [anon_sym_BSLASHtextcite] = ACTIONS(12531), + [anon_sym_BSLASHTextcite] = ACTIONS(12531), + [anon_sym_BSLASHsmartcite] = ACTIONS(12531), + [anon_sym_BSLASHSmartcite] = ACTIONS(12531), + [anon_sym_BSLASHsupercite] = ACTIONS(12531), + [anon_sym_BSLASHautocite] = ACTIONS(12531), + [anon_sym_BSLASHAutocite] = ACTIONS(12531), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHvolcite] = ACTIONS(12531), + [anon_sym_BSLASHVolcite] = ACTIONS(12531), + [anon_sym_BSLASHpvolcite] = ACTIONS(12531), + [anon_sym_BSLASHPvolcite] = ACTIONS(12531), + [anon_sym_BSLASHfvolcite] = ACTIONS(12531), + [anon_sym_BSLASHftvolcite] = ACTIONS(12531), + [anon_sym_BSLASHsvolcite] = ACTIONS(12531), + [anon_sym_BSLASHSvolcite] = ACTIONS(12531), + [anon_sym_BSLASHtvolcite] = ACTIONS(12531), + [anon_sym_BSLASHTvolcite] = ACTIONS(12531), + [anon_sym_BSLASHavolcite] = ACTIONS(12531), + [anon_sym_BSLASHAvolcite] = ACTIONS(12531), + [anon_sym_BSLASHnotecite] = ACTIONS(12531), + [anon_sym_BSLASHpnotecite] = ACTIONS(12531), + [anon_sym_BSLASHPnotecite] = ACTIONS(12531), + [anon_sym_BSLASHfnotecite] = ACTIONS(12531), + [anon_sym_BSLASHusepackage] = ACTIONS(12531), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12531), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12531), + [anon_sym_BSLASHinclude] = ACTIONS(12531), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12531), + [anon_sym_BSLASHinput] = ACTIONS(12531), + [anon_sym_BSLASHsubfile] = ACTIONS(12531), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12531), + [anon_sym_BSLASHbibliography] = ACTIONS(12531), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12531), + [anon_sym_BSLASHincludesvg] = ACTIONS(12531), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12531), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12531), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12531), + [anon_sym_BSLASHimport] = ACTIONS(12531), + [anon_sym_BSLASHsubimport] = ACTIONS(12531), + [anon_sym_BSLASHinputfrom] = ACTIONS(12531), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12531), + [anon_sym_BSLASHincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHlabel] = ACTIONS(12531), + [anon_sym_BSLASHref] = ACTIONS(12531), + [anon_sym_BSLASHvref] = ACTIONS(12531), + [anon_sym_BSLASHVref] = ACTIONS(12531), + [anon_sym_BSLASHautoref] = ACTIONS(12531), + [anon_sym_BSLASHpageref] = ACTIONS(12531), + [anon_sym_BSLASHcref] = ACTIONS(12531), + [anon_sym_BSLASHCref] = ACTIONS(12531), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnameCref] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHlabelcref] = ACTIONS(12531), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12531), + [anon_sym_BSLASHeqref] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange] = ACTIONS(12531), + [anon_sym_BSLASHCrefrange] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewlabel] = ACTIONS(12531), + [anon_sym_BSLASHnewcommand] = ACTIONS(12531), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12531), + [anon_sym_BSLASHgls] = ACTIONS(12531), + [anon_sym_BSLASHGls] = ACTIONS(12531), + [anon_sym_BSLASHGLS] = ACTIONS(12531), + [anon_sym_BSLASHglspl] = ACTIONS(12531), + [anon_sym_BSLASHGlspl] = ACTIONS(12531), + [anon_sym_BSLASHGLSpl] = ACTIONS(12531), + [anon_sym_BSLASHglsdisp] = ACTIONS(12531), + [anon_sym_BSLASHglslink] = ACTIONS(12531), + [anon_sym_BSLASHglstext] = ACTIONS(12531), + [anon_sym_BSLASHGlstext] = ACTIONS(12531), + [anon_sym_BSLASHGLStext] = ACTIONS(12531), + [anon_sym_BSLASHglsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12531), + [anon_sym_BSLASHglsplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSplural] = ACTIONS(12531), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHglsname] = ACTIONS(12531), + [anon_sym_BSLASHGlsname] = ACTIONS(12531), + [anon_sym_BSLASHGLSname] = ACTIONS(12531), + [anon_sym_BSLASHglssymbol] = ACTIONS(12531), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12531), + [anon_sym_BSLASHglsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12531), + [anon_sym_BSLASHglsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12531), + [anon_sym_BSLASHglsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12531), + [anon_sym_BSLASHglsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12531), + [anon_sym_BSLASHglsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12531), + [anon_sym_BSLASHnewacronym] = ACTIONS(12531), + [anon_sym_BSLASHacrshort] = ACTIONS(12531), + [anon_sym_BSLASHAcrshort] = ACTIONS(12531), + [anon_sym_BSLASHACRshort] = ACTIONS(12531), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12531), + [anon_sym_BSLASHacrlong] = ACTIONS(12531), + [anon_sym_BSLASHAcrlong] = ACTIONS(12531), + [anon_sym_BSLASHACRlong] = ACTIONS(12531), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12531), + [anon_sym_BSLASHacrfull] = ACTIONS(12531), + [anon_sym_BSLASHAcrfull] = ACTIONS(12531), + [anon_sym_BSLASHACRfull] = ACTIONS(12531), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12531), + [anon_sym_BSLASHacs] = ACTIONS(12531), + [anon_sym_BSLASHAcs] = ACTIONS(12531), + [anon_sym_BSLASHacsp] = ACTIONS(12531), + [anon_sym_BSLASHAcsp] = ACTIONS(12531), + [anon_sym_BSLASHacl] = ACTIONS(12531), + [anon_sym_BSLASHAcl] = ACTIONS(12531), + [anon_sym_BSLASHaclp] = ACTIONS(12531), + [anon_sym_BSLASHAclp] = ACTIONS(12531), + [anon_sym_BSLASHacf] = ACTIONS(12531), + [anon_sym_BSLASHAcf] = ACTIONS(12531), + [anon_sym_BSLASHacfp] = ACTIONS(12531), + [anon_sym_BSLASHAcfp] = ACTIONS(12531), + [anon_sym_BSLASHac] = ACTIONS(12531), + [anon_sym_BSLASHAc] = ACTIONS(12531), + [anon_sym_BSLASHacp] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12531), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12531), + [anon_sym_BSLASHcolor] = ACTIONS(12531), + [anon_sym_BSLASHcolorbox] = ACTIONS(12531), + [anon_sym_BSLASHtextcolor] = ACTIONS(12531), + [anon_sym_BSLASHpagecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12531), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12531), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12531), + }, + [1588] = { + [sym_generic_command_name] = ACTIONS(12539), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12539), + [aux_sym_subparagraph_token1] = ACTIONS(12539), + [anon_sym_BSLASHitem] = ACTIONS(12539), + [anon_sym_LBRACK] = ACTIONS(12537), + [anon_sym_RBRACK] = ACTIONS(12537), + [anon_sym_LBRACE] = ACTIONS(12537), + [anon_sym_RBRACE] = ACTIONS(12537), + [anon_sym_LPAREN] = ACTIONS(12537), + [anon_sym_COMMA] = ACTIONS(12537), + [anon_sym_EQ] = ACTIONS(12537), + [sym_word] = ACTIONS(12537), + [sym_param] = ACTIONS(12537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12537), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12537), + [anon_sym_DOLLAR] = ACTIONS(12539), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12537), + [anon_sym_BSLASHbegin] = ACTIONS(12539), + [anon_sym_BSLASHcaption] = ACTIONS(12539), + [anon_sym_BSLASHcite] = ACTIONS(12539), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCite] = ACTIONS(12539), + [anon_sym_BSLASHnocite] = ACTIONS(12539), + [anon_sym_BSLASHcitet] = ACTIONS(12539), + [anon_sym_BSLASHcitep] = ACTIONS(12539), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteauthor] = ACTIONS(12539), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12539), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitetitle] = ACTIONS(12539), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteyear] = ACTIONS(12539), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitedate] = ACTIONS(12539), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteurl] = ACTIONS(12539), + [anon_sym_BSLASHfullcite] = ACTIONS(12539), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12539), + [anon_sym_BSLASHcitealt] = ACTIONS(12539), + [anon_sym_BSLASHcitealp] = ACTIONS(12539), + [anon_sym_BSLASHcitetext] = ACTIONS(12539), + [anon_sym_BSLASHparencite] = ACTIONS(12539), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHParencite] = ACTIONS(12539), + [anon_sym_BSLASHfootcite] = ACTIONS(12539), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12539), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12539), + [anon_sym_BSLASHtextcite] = ACTIONS(12539), + [anon_sym_BSLASHTextcite] = ACTIONS(12539), + [anon_sym_BSLASHsmartcite] = ACTIONS(12539), + [anon_sym_BSLASHSmartcite] = ACTIONS(12539), + [anon_sym_BSLASHsupercite] = ACTIONS(12539), + [anon_sym_BSLASHautocite] = ACTIONS(12539), + [anon_sym_BSLASHAutocite] = ACTIONS(12539), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHvolcite] = ACTIONS(12539), + [anon_sym_BSLASHVolcite] = ACTIONS(12539), + [anon_sym_BSLASHpvolcite] = ACTIONS(12539), + [anon_sym_BSLASHPvolcite] = ACTIONS(12539), + [anon_sym_BSLASHfvolcite] = ACTIONS(12539), + [anon_sym_BSLASHftvolcite] = ACTIONS(12539), + [anon_sym_BSLASHsvolcite] = ACTIONS(12539), + [anon_sym_BSLASHSvolcite] = ACTIONS(12539), + [anon_sym_BSLASHtvolcite] = ACTIONS(12539), + [anon_sym_BSLASHTvolcite] = ACTIONS(12539), + [anon_sym_BSLASHavolcite] = ACTIONS(12539), + [anon_sym_BSLASHAvolcite] = ACTIONS(12539), + [anon_sym_BSLASHnotecite] = ACTIONS(12539), + [anon_sym_BSLASHpnotecite] = ACTIONS(12539), + [anon_sym_BSLASHPnotecite] = ACTIONS(12539), + [anon_sym_BSLASHfnotecite] = ACTIONS(12539), + [anon_sym_BSLASHusepackage] = ACTIONS(12539), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12539), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12539), + [anon_sym_BSLASHinclude] = ACTIONS(12539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12539), + [anon_sym_BSLASHinput] = ACTIONS(12539), + [anon_sym_BSLASHsubfile] = ACTIONS(12539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12539), + [anon_sym_BSLASHbibliography] = ACTIONS(12539), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12539), + [anon_sym_BSLASHincludesvg] = ACTIONS(12539), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12539), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12539), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12539), + [anon_sym_BSLASHimport] = ACTIONS(12539), + [anon_sym_BSLASHsubimport] = ACTIONS(12539), + [anon_sym_BSLASHinputfrom] = ACTIONS(12539), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12539), + [anon_sym_BSLASHincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHlabel] = ACTIONS(12539), + [anon_sym_BSLASHref] = ACTIONS(12539), + [anon_sym_BSLASHvref] = ACTIONS(12539), + [anon_sym_BSLASHVref] = ACTIONS(12539), + [anon_sym_BSLASHautoref] = ACTIONS(12539), + [anon_sym_BSLASHpageref] = ACTIONS(12539), + [anon_sym_BSLASHcref] = ACTIONS(12539), + [anon_sym_BSLASHCref] = ACTIONS(12539), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnameCref] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHlabelcref] = ACTIONS(12539), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12539), + [anon_sym_BSLASHeqref] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange] = ACTIONS(12539), + [anon_sym_BSLASHCrefrange] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewlabel] = ACTIONS(12539), + [anon_sym_BSLASHnewcommand] = ACTIONS(12539), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12539), + [anon_sym_BSLASHgls] = ACTIONS(12539), + [anon_sym_BSLASHGls] = ACTIONS(12539), + [anon_sym_BSLASHGLS] = ACTIONS(12539), + [anon_sym_BSLASHglspl] = ACTIONS(12539), + [anon_sym_BSLASHGlspl] = ACTIONS(12539), + [anon_sym_BSLASHGLSpl] = ACTIONS(12539), + [anon_sym_BSLASHglsdisp] = ACTIONS(12539), + [anon_sym_BSLASHglslink] = ACTIONS(12539), + [anon_sym_BSLASHglstext] = ACTIONS(12539), + [anon_sym_BSLASHGlstext] = ACTIONS(12539), + [anon_sym_BSLASHGLStext] = ACTIONS(12539), + [anon_sym_BSLASHglsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12539), + [anon_sym_BSLASHglsplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSplural] = ACTIONS(12539), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHglsname] = ACTIONS(12539), + [anon_sym_BSLASHGlsname] = ACTIONS(12539), + [anon_sym_BSLASHGLSname] = ACTIONS(12539), + [anon_sym_BSLASHglssymbol] = ACTIONS(12539), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12539), + [anon_sym_BSLASHglsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12539), + [anon_sym_BSLASHglsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12539), + [anon_sym_BSLASHglsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12539), + [anon_sym_BSLASHglsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12539), + [anon_sym_BSLASHglsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12539), + [anon_sym_BSLASHnewacronym] = ACTIONS(12539), + [anon_sym_BSLASHacrshort] = ACTIONS(12539), + [anon_sym_BSLASHAcrshort] = ACTIONS(12539), + [anon_sym_BSLASHACRshort] = ACTIONS(12539), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12539), + [anon_sym_BSLASHacrlong] = ACTIONS(12539), + [anon_sym_BSLASHAcrlong] = ACTIONS(12539), + [anon_sym_BSLASHACRlong] = ACTIONS(12539), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12539), + [anon_sym_BSLASHacrfull] = ACTIONS(12539), + [anon_sym_BSLASHAcrfull] = ACTIONS(12539), + [anon_sym_BSLASHACRfull] = ACTIONS(12539), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12539), + [anon_sym_BSLASHacs] = ACTIONS(12539), + [anon_sym_BSLASHAcs] = ACTIONS(12539), + [anon_sym_BSLASHacsp] = ACTIONS(12539), + [anon_sym_BSLASHAcsp] = ACTIONS(12539), + [anon_sym_BSLASHacl] = ACTIONS(12539), + [anon_sym_BSLASHAcl] = ACTIONS(12539), + [anon_sym_BSLASHaclp] = ACTIONS(12539), + [anon_sym_BSLASHAclp] = ACTIONS(12539), + [anon_sym_BSLASHacf] = ACTIONS(12539), + [anon_sym_BSLASHAcf] = ACTIONS(12539), + [anon_sym_BSLASHacfp] = ACTIONS(12539), + [anon_sym_BSLASHAcfp] = ACTIONS(12539), + [anon_sym_BSLASHac] = ACTIONS(12539), + [anon_sym_BSLASHAc] = ACTIONS(12539), + [anon_sym_BSLASHacp] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12539), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12539), + [anon_sym_BSLASHcolor] = ACTIONS(12539), + [anon_sym_BSLASHcolorbox] = ACTIONS(12539), + [anon_sym_BSLASHtextcolor] = ACTIONS(12539), + [anon_sym_BSLASHpagecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12539), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12539), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12539), + }, + [1589] = { + [sym_generic_command_name] = ACTIONS(12543), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12543), + [aux_sym_subparagraph_token1] = ACTIONS(12543), + [anon_sym_BSLASHitem] = ACTIONS(12543), + [anon_sym_LBRACK] = ACTIONS(12541), + [anon_sym_RBRACK] = ACTIONS(12541), + [anon_sym_LBRACE] = ACTIONS(12541), + [anon_sym_RBRACE] = ACTIONS(12541), + [anon_sym_LPAREN] = ACTIONS(12541), + [anon_sym_COMMA] = ACTIONS(12541), + [anon_sym_EQ] = ACTIONS(12541), + [sym_word] = ACTIONS(12541), + [sym_param] = ACTIONS(12541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12541), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12541), + [anon_sym_DOLLAR] = ACTIONS(12543), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12541), + [anon_sym_BSLASHbegin] = ACTIONS(12543), + [anon_sym_BSLASHcaption] = ACTIONS(12543), + [anon_sym_BSLASHcite] = ACTIONS(12543), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCite] = ACTIONS(12543), + [anon_sym_BSLASHnocite] = ACTIONS(12543), + [anon_sym_BSLASHcitet] = ACTIONS(12543), + [anon_sym_BSLASHcitep] = ACTIONS(12543), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteauthor] = ACTIONS(12543), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12543), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitetitle] = ACTIONS(12543), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteyear] = ACTIONS(12543), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitedate] = ACTIONS(12543), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteurl] = ACTIONS(12543), + [anon_sym_BSLASHfullcite] = ACTIONS(12543), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12543), + [anon_sym_BSLASHcitealt] = ACTIONS(12543), + [anon_sym_BSLASHcitealp] = ACTIONS(12543), + [anon_sym_BSLASHcitetext] = ACTIONS(12543), + [anon_sym_BSLASHparencite] = ACTIONS(12543), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHParencite] = ACTIONS(12543), + [anon_sym_BSLASHfootcite] = ACTIONS(12543), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12543), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12543), + [anon_sym_BSLASHtextcite] = ACTIONS(12543), + [anon_sym_BSLASHTextcite] = ACTIONS(12543), + [anon_sym_BSLASHsmartcite] = ACTIONS(12543), + [anon_sym_BSLASHSmartcite] = ACTIONS(12543), + [anon_sym_BSLASHsupercite] = ACTIONS(12543), + [anon_sym_BSLASHautocite] = ACTIONS(12543), + [anon_sym_BSLASHAutocite] = ACTIONS(12543), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHvolcite] = ACTIONS(12543), + [anon_sym_BSLASHVolcite] = ACTIONS(12543), + [anon_sym_BSLASHpvolcite] = ACTIONS(12543), + [anon_sym_BSLASHPvolcite] = ACTIONS(12543), + [anon_sym_BSLASHfvolcite] = ACTIONS(12543), + [anon_sym_BSLASHftvolcite] = ACTIONS(12543), + [anon_sym_BSLASHsvolcite] = ACTIONS(12543), + [anon_sym_BSLASHSvolcite] = ACTIONS(12543), + [anon_sym_BSLASHtvolcite] = ACTIONS(12543), + [anon_sym_BSLASHTvolcite] = ACTIONS(12543), + [anon_sym_BSLASHavolcite] = ACTIONS(12543), + [anon_sym_BSLASHAvolcite] = ACTIONS(12543), + [anon_sym_BSLASHnotecite] = ACTIONS(12543), + [anon_sym_BSLASHpnotecite] = ACTIONS(12543), + [anon_sym_BSLASHPnotecite] = ACTIONS(12543), + [anon_sym_BSLASHfnotecite] = ACTIONS(12543), + [anon_sym_BSLASHusepackage] = ACTIONS(12543), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12543), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12543), + [anon_sym_BSLASHinclude] = ACTIONS(12543), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12543), + [anon_sym_BSLASHinput] = ACTIONS(12543), + [anon_sym_BSLASHsubfile] = ACTIONS(12543), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12543), + [anon_sym_BSLASHbibliography] = ACTIONS(12543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12543), + [anon_sym_BSLASHincludesvg] = ACTIONS(12543), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12543), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12543), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12543), + [anon_sym_BSLASHimport] = ACTIONS(12543), + [anon_sym_BSLASHsubimport] = ACTIONS(12543), + [anon_sym_BSLASHinputfrom] = ACTIONS(12543), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12543), + [anon_sym_BSLASHincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHlabel] = ACTIONS(12543), + [anon_sym_BSLASHref] = ACTIONS(12543), + [anon_sym_BSLASHvref] = ACTIONS(12543), + [anon_sym_BSLASHVref] = ACTIONS(12543), + [anon_sym_BSLASHautoref] = ACTIONS(12543), + [anon_sym_BSLASHpageref] = ACTIONS(12543), + [anon_sym_BSLASHcref] = ACTIONS(12543), + [anon_sym_BSLASHCref] = ACTIONS(12543), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnameCref] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHlabelcref] = ACTIONS(12543), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12543), + [anon_sym_BSLASHeqref] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange] = ACTIONS(12543), + [anon_sym_BSLASHCrefrange] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewlabel] = ACTIONS(12543), + [anon_sym_BSLASHnewcommand] = ACTIONS(12543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12543), + [anon_sym_BSLASHgls] = ACTIONS(12543), + [anon_sym_BSLASHGls] = ACTIONS(12543), + [anon_sym_BSLASHGLS] = ACTIONS(12543), + [anon_sym_BSLASHglspl] = ACTIONS(12543), + [anon_sym_BSLASHGlspl] = ACTIONS(12543), + [anon_sym_BSLASHGLSpl] = ACTIONS(12543), + [anon_sym_BSLASHglsdisp] = ACTIONS(12543), + [anon_sym_BSLASHglslink] = ACTIONS(12543), + [anon_sym_BSLASHglstext] = ACTIONS(12543), + [anon_sym_BSLASHGlstext] = ACTIONS(12543), + [anon_sym_BSLASHGLStext] = ACTIONS(12543), + [anon_sym_BSLASHglsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12543), + [anon_sym_BSLASHglsplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSplural] = ACTIONS(12543), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHglsname] = ACTIONS(12543), + [anon_sym_BSLASHGlsname] = ACTIONS(12543), + [anon_sym_BSLASHGLSname] = ACTIONS(12543), + [anon_sym_BSLASHglssymbol] = ACTIONS(12543), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12543), + [anon_sym_BSLASHglsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12543), + [anon_sym_BSLASHglsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12543), + [anon_sym_BSLASHglsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12543), + [anon_sym_BSLASHglsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12543), + [anon_sym_BSLASHglsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12543), + [anon_sym_BSLASHnewacronym] = ACTIONS(12543), + [anon_sym_BSLASHacrshort] = ACTIONS(12543), + [anon_sym_BSLASHAcrshort] = ACTIONS(12543), + [anon_sym_BSLASHACRshort] = ACTIONS(12543), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12543), + [anon_sym_BSLASHacrlong] = ACTIONS(12543), + [anon_sym_BSLASHAcrlong] = ACTIONS(12543), + [anon_sym_BSLASHACRlong] = ACTIONS(12543), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12543), + [anon_sym_BSLASHacrfull] = ACTIONS(12543), + [anon_sym_BSLASHAcrfull] = ACTIONS(12543), + [anon_sym_BSLASHACRfull] = ACTIONS(12543), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12543), + [anon_sym_BSLASHacs] = ACTIONS(12543), + [anon_sym_BSLASHAcs] = ACTIONS(12543), + [anon_sym_BSLASHacsp] = ACTIONS(12543), + [anon_sym_BSLASHAcsp] = ACTIONS(12543), + [anon_sym_BSLASHacl] = ACTIONS(12543), + [anon_sym_BSLASHAcl] = ACTIONS(12543), + [anon_sym_BSLASHaclp] = ACTIONS(12543), + [anon_sym_BSLASHAclp] = ACTIONS(12543), + [anon_sym_BSLASHacf] = ACTIONS(12543), + [anon_sym_BSLASHAcf] = ACTIONS(12543), + [anon_sym_BSLASHacfp] = ACTIONS(12543), + [anon_sym_BSLASHAcfp] = ACTIONS(12543), + [anon_sym_BSLASHac] = ACTIONS(12543), + [anon_sym_BSLASHAc] = ACTIONS(12543), + [anon_sym_BSLASHacp] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12543), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12543), + [anon_sym_BSLASHcolor] = ACTIONS(12543), + [anon_sym_BSLASHcolorbox] = ACTIONS(12543), + [anon_sym_BSLASHtextcolor] = ACTIONS(12543), + [anon_sym_BSLASHpagecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12543), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12543), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12543), + }, + [1590] = { + [sym_generic_command_name] = ACTIONS(12104), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12104), + [aux_sym_subparagraph_token1] = ACTIONS(12104), + [anon_sym_BSLASHitem] = ACTIONS(12104), + [anon_sym_LBRACK] = ACTIONS(12102), + [anon_sym_RBRACK] = ACTIONS(12102), + [anon_sym_LBRACE] = ACTIONS(12102), + [anon_sym_RBRACE] = ACTIONS(12102), + [anon_sym_LPAREN] = ACTIONS(12102), + [anon_sym_COMMA] = ACTIONS(12102), + [anon_sym_EQ] = ACTIONS(12102), + [sym_word] = ACTIONS(12102), + [sym_param] = ACTIONS(12102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12102), + [anon_sym_DOLLAR] = ACTIONS(12104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12102), + [anon_sym_BSLASHbegin] = ACTIONS(12104), + [anon_sym_BSLASHcaption] = ACTIONS(12104), + [anon_sym_BSLASHcite] = ACTIONS(12104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCite] = ACTIONS(12104), + [anon_sym_BSLASHnocite] = ACTIONS(12104), + [anon_sym_BSLASHcitet] = ACTIONS(12104), + [anon_sym_BSLASHcitep] = ACTIONS(12104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteauthor] = ACTIONS(12104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitetitle] = ACTIONS(12104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteyear] = ACTIONS(12104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitedate] = ACTIONS(12104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteurl] = ACTIONS(12104), + [anon_sym_BSLASHfullcite] = ACTIONS(12104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12104), + [anon_sym_BSLASHcitealt] = ACTIONS(12104), + [anon_sym_BSLASHcitealp] = ACTIONS(12104), + [anon_sym_BSLASHcitetext] = ACTIONS(12104), + [anon_sym_BSLASHparencite] = ACTIONS(12104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHParencite] = ACTIONS(12104), + [anon_sym_BSLASHfootcite] = ACTIONS(12104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12104), + [anon_sym_BSLASHtextcite] = ACTIONS(12104), + [anon_sym_BSLASHTextcite] = ACTIONS(12104), + [anon_sym_BSLASHsmartcite] = ACTIONS(12104), + [anon_sym_BSLASHSmartcite] = ACTIONS(12104), + [anon_sym_BSLASHsupercite] = ACTIONS(12104), + [anon_sym_BSLASHautocite] = ACTIONS(12104), + [anon_sym_BSLASHAutocite] = ACTIONS(12104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHvolcite] = ACTIONS(12104), + [anon_sym_BSLASHVolcite] = ACTIONS(12104), + [anon_sym_BSLASHpvolcite] = ACTIONS(12104), + [anon_sym_BSLASHPvolcite] = ACTIONS(12104), + [anon_sym_BSLASHfvolcite] = ACTIONS(12104), + [anon_sym_BSLASHftvolcite] = ACTIONS(12104), + [anon_sym_BSLASHsvolcite] = ACTIONS(12104), + [anon_sym_BSLASHSvolcite] = ACTIONS(12104), + [anon_sym_BSLASHtvolcite] = ACTIONS(12104), + [anon_sym_BSLASHTvolcite] = ACTIONS(12104), + [anon_sym_BSLASHavolcite] = ACTIONS(12104), + [anon_sym_BSLASHAvolcite] = ACTIONS(12104), + [anon_sym_BSLASHnotecite] = ACTIONS(12104), + [anon_sym_BSLASHpnotecite] = ACTIONS(12104), + [anon_sym_BSLASHPnotecite] = ACTIONS(12104), + [anon_sym_BSLASHfnotecite] = ACTIONS(12104), + [anon_sym_BSLASHusepackage] = ACTIONS(12104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12104), + [anon_sym_BSLASHinclude] = ACTIONS(12104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12104), + [anon_sym_BSLASHinput] = ACTIONS(12104), + [anon_sym_BSLASHsubfile] = ACTIONS(12104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12104), + [anon_sym_BSLASHbibliography] = ACTIONS(12104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12104), + [anon_sym_BSLASHincludesvg] = ACTIONS(12104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12104), + [anon_sym_BSLASHimport] = ACTIONS(12104), + [anon_sym_BSLASHsubimport] = ACTIONS(12104), + [anon_sym_BSLASHinputfrom] = ACTIONS(12104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12104), + [anon_sym_BSLASHincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHlabel] = ACTIONS(12104), + [anon_sym_BSLASHref] = ACTIONS(12104), + [anon_sym_BSLASHvref] = ACTIONS(12104), + [anon_sym_BSLASHVref] = ACTIONS(12104), + [anon_sym_BSLASHautoref] = ACTIONS(12104), + [anon_sym_BSLASHpageref] = ACTIONS(12104), + [anon_sym_BSLASHcref] = ACTIONS(12104), + [anon_sym_BSLASHCref] = ACTIONS(12104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnameCref] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHlabelcref] = ACTIONS(12104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12104), + [anon_sym_BSLASHeqref] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange] = ACTIONS(12104), + [anon_sym_BSLASHCrefrange] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewlabel] = ACTIONS(12104), + [anon_sym_BSLASHnewcommand] = ACTIONS(12104), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12104), + [anon_sym_BSLASHgls] = ACTIONS(12104), + [anon_sym_BSLASHGls] = ACTIONS(12104), + [anon_sym_BSLASHGLS] = ACTIONS(12104), + [anon_sym_BSLASHglspl] = ACTIONS(12104), + [anon_sym_BSLASHGlspl] = ACTIONS(12104), + [anon_sym_BSLASHGLSpl] = ACTIONS(12104), + [anon_sym_BSLASHglsdisp] = ACTIONS(12104), + [anon_sym_BSLASHglslink] = ACTIONS(12104), + [anon_sym_BSLASHglstext] = ACTIONS(12104), + [anon_sym_BSLASHGlstext] = ACTIONS(12104), + [anon_sym_BSLASHGLStext] = ACTIONS(12104), + [anon_sym_BSLASHglsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12104), + [anon_sym_BSLASHglsplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSplural] = ACTIONS(12104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHglsname] = ACTIONS(12104), + [anon_sym_BSLASHGlsname] = ACTIONS(12104), + [anon_sym_BSLASHGLSname] = ACTIONS(12104), + [anon_sym_BSLASHglssymbol] = ACTIONS(12104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12104), + [anon_sym_BSLASHglsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12104), + [anon_sym_BSLASHglsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12104), + [anon_sym_BSLASHglsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12104), + [anon_sym_BSLASHglsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12104), + [anon_sym_BSLASHglsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12104), + [anon_sym_BSLASHnewacronym] = ACTIONS(12104), + [anon_sym_BSLASHacrshort] = ACTIONS(12104), + [anon_sym_BSLASHAcrshort] = ACTIONS(12104), + [anon_sym_BSLASHACRshort] = ACTIONS(12104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12104), + [anon_sym_BSLASHacrlong] = ACTIONS(12104), + [anon_sym_BSLASHAcrlong] = ACTIONS(12104), + [anon_sym_BSLASHACRlong] = ACTIONS(12104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12104), + [anon_sym_BSLASHacrfull] = ACTIONS(12104), + [anon_sym_BSLASHAcrfull] = ACTIONS(12104), + [anon_sym_BSLASHACRfull] = ACTIONS(12104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12104), + [anon_sym_BSLASHacs] = ACTIONS(12104), + [anon_sym_BSLASHAcs] = ACTIONS(12104), + [anon_sym_BSLASHacsp] = ACTIONS(12104), + [anon_sym_BSLASHAcsp] = ACTIONS(12104), + [anon_sym_BSLASHacl] = ACTIONS(12104), + [anon_sym_BSLASHAcl] = ACTIONS(12104), + [anon_sym_BSLASHaclp] = ACTIONS(12104), + [anon_sym_BSLASHAclp] = ACTIONS(12104), + [anon_sym_BSLASHacf] = ACTIONS(12104), + [anon_sym_BSLASHAcf] = ACTIONS(12104), + [anon_sym_BSLASHacfp] = ACTIONS(12104), + [anon_sym_BSLASHAcfp] = ACTIONS(12104), + [anon_sym_BSLASHac] = ACTIONS(12104), + [anon_sym_BSLASHAc] = ACTIONS(12104), + [anon_sym_BSLASHacp] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12104), + [anon_sym_BSLASHcolor] = ACTIONS(12104), + [anon_sym_BSLASHcolorbox] = ACTIONS(12104), + [anon_sym_BSLASHtextcolor] = ACTIONS(12104), + [anon_sym_BSLASHpagecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12104), + }, + [1591] = { + [sym_generic_command_name] = ACTIONS(12547), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12547), + [aux_sym_subparagraph_token1] = ACTIONS(12547), + [anon_sym_BSLASHitem] = ACTIONS(12547), + [anon_sym_LBRACK] = ACTIONS(12545), + [anon_sym_RBRACK] = ACTIONS(12545), + [anon_sym_LBRACE] = ACTIONS(12545), + [anon_sym_RBRACE] = ACTIONS(12545), + [anon_sym_LPAREN] = ACTIONS(12545), + [anon_sym_COMMA] = ACTIONS(12545), + [anon_sym_EQ] = ACTIONS(12545), + [sym_word] = ACTIONS(12545), + [sym_param] = ACTIONS(12545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12545), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12545), + [anon_sym_DOLLAR] = ACTIONS(12547), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12545), + [anon_sym_BSLASHbegin] = ACTIONS(12547), + [anon_sym_BSLASHcaption] = ACTIONS(12547), + [anon_sym_BSLASHcite] = ACTIONS(12547), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCite] = ACTIONS(12547), + [anon_sym_BSLASHnocite] = ACTIONS(12547), + [anon_sym_BSLASHcitet] = ACTIONS(12547), + [anon_sym_BSLASHcitep] = ACTIONS(12547), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteauthor] = ACTIONS(12547), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12547), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitetitle] = ACTIONS(12547), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteyear] = ACTIONS(12547), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitedate] = ACTIONS(12547), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteurl] = ACTIONS(12547), + [anon_sym_BSLASHfullcite] = ACTIONS(12547), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12547), + [anon_sym_BSLASHcitealt] = ACTIONS(12547), + [anon_sym_BSLASHcitealp] = ACTIONS(12547), + [anon_sym_BSLASHcitetext] = ACTIONS(12547), + [anon_sym_BSLASHparencite] = ACTIONS(12547), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHParencite] = ACTIONS(12547), + [anon_sym_BSLASHfootcite] = ACTIONS(12547), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12547), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12547), + [anon_sym_BSLASHtextcite] = ACTIONS(12547), + [anon_sym_BSLASHTextcite] = ACTIONS(12547), + [anon_sym_BSLASHsmartcite] = ACTIONS(12547), + [anon_sym_BSLASHSmartcite] = ACTIONS(12547), + [anon_sym_BSLASHsupercite] = ACTIONS(12547), + [anon_sym_BSLASHautocite] = ACTIONS(12547), + [anon_sym_BSLASHAutocite] = ACTIONS(12547), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHvolcite] = ACTIONS(12547), + [anon_sym_BSLASHVolcite] = ACTIONS(12547), + [anon_sym_BSLASHpvolcite] = ACTIONS(12547), + [anon_sym_BSLASHPvolcite] = ACTIONS(12547), + [anon_sym_BSLASHfvolcite] = ACTIONS(12547), + [anon_sym_BSLASHftvolcite] = ACTIONS(12547), + [anon_sym_BSLASHsvolcite] = ACTIONS(12547), + [anon_sym_BSLASHSvolcite] = ACTIONS(12547), + [anon_sym_BSLASHtvolcite] = ACTIONS(12547), + [anon_sym_BSLASHTvolcite] = ACTIONS(12547), + [anon_sym_BSLASHavolcite] = ACTIONS(12547), + [anon_sym_BSLASHAvolcite] = ACTIONS(12547), + [anon_sym_BSLASHnotecite] = ACTIONS(12547), + [anon_sym_BSLASHpnotecite] = ACTIONS(12547), + [anon_sym_BSLASHPnotecite] = ACTIONS(12547), + [anon_sym_BSLASHfnotecite] = ACTIONS(12547), + [anon_sym_BSLASHusepackage] = ACTIONS(12547), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12547), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12547), + [anon_sym_BSLASHinclude] = ACTIONS(12547), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12547), + [anon_sym_BSLASHinput] = ACTIONS(12547), + [anon_sym_BSLASHsubfile] = ACTIONS(12547), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12547), + [anon_sym_BSLASHbibliography] = ACTIONS(12547), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12547), + [anon_sym_BSLASHincludesvg] = ACTIONS(12547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12547), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12547), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12547), + [anon_sym_BSLASHimport] = ACTIONS(12547), + [anon_sym_BSLASHsubimport] = ACTIONS(12547), + [anon_sym_BSLASHinputfrom] = ACTIONS(12547), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12547), + [anon_sym_BSLASHincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHlabel] = ACTIONS(12547), + [anon_sym_BSLASHref] = ACTIONS(12547), + [anon_sym_BSLASHvref] = ACTIONS(12547), + [anon_sym_BSLASHVref] = ACTIONS(12547), + [anon_sym_BSLASHautoref] = ACTIONS(12547), + [anon_sym_BSLASHpageref] = ACTIONS(12547), + [anon_sym_BSLASHcref] = ACTIONS(12547), + [anon_sym_BSLASHCref] = ACTIONS(12547), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnameCref] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHlabelcref] = ACTIONS(12547), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12547), + [anon_sym_BSLASHeqref] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange] = ACTIONS(12547), + [anon_sym_BSLASHCrefrange] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewlabel] = ACTIONS(12547), + [anon_sym_BSLASHnewcommand] = ACTIONS(12547), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12547), + [anon_sym_BSLASHgls] = ACTIONS(12547), + [anon_sym_BSLASHGls] = ACTIONS(12547), + [anon_sym_BSLASHGLS] = ACTIONS(12547), + [anon_sym_BSLASHglspl] = ACTIONS(12547), + [anon_sym_BSLASHGlspl] = ACTIONS(12547), + [anon_sym_BSLASHGLSpl] = ACTIONS(12547), + [anon_sym_BSLASHglsdisp] = ACTIONS(12547), + [anon_sym_BSLASHglslink] = ACTIONS(12547), + [anon_sym_BSLASHglstext] = ACTIONS(12547), + [anon_sym_BSLASHGlstext] = ACTIONS(12547), + [anon_sym_BSLASHGLStext] = ACTIONS(12547), + [anon_sym_BSLASHglsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12547), + [anon_sym_BSLASHglsplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSplural] = ACTIONS(12547), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHglsname] = ACTIONS(12547), + [anon_sym_BSLASHGlsname] = ACTIONS(12547), + [anon_sym_BSLASHGLSname] = ACTIONS(12547), + [anon_sym_BSLASHglssymbol] = ACTIONS(12547), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12547), + [anon_sym_BSLASHglsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12547), + [anon_sym_BSLASHglsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12547), + [anon_sym_BSLASHglsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12547), + [anon_sym_BSLASHglsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12547), + [anon_sym_BSLASHglsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12547), + [anon_sym_BSLASHnewacronym] = ACTIONS(12547), + [anon_sym_BSLASHacrshort] = ACTIONS(12547), + [anon_sym_BSLASHAcrshort] = ACTIONS(12547), + [anon_sym_BSLASHACRshort] = ACTIONS(12547), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12547), + [anon_sym_BSLASHacrlong] = ACTIONS(12547), + [anon_sym_BSLASHAcrlong] = ACTIONS(12547), + [anon_sym_BSLASHACRlong] = ACTIONS(12547), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12547), + [anon_sym_BSLASHacrfull] = ACTIONS(12547), + [anon_sym_BSLASHAcrfull] = ACTIONS(12547), + [anon_sym_BSLASHACRfull] = ACTIONS(12547), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12547), + [anon_sym_BSLASHacs] = ACTIONS(12547), + [anon_sym_BSLASHAcs] = ACTIONS(12547), + [anon_sym_BSLASHacsp] = ACTIONS(12547), + [anon_sym_BSLASHAcsp] = ACTIONS(12547), + [anon_sym_BSLASHacl] = ACTIONS(12547), + [anon_sym_BSLASHAcl] = ACTIONS(12547), + [anon_sym_BSLASHaclp] = ACTIONS(12547), + [anon_sym_BSLASHAclp] = ACTIONS(12547), + [anon_sym_BSLASHacf] = ACTIONS(12547), + [anon_sym_BSLASHAcf] = ACTIONS(12547), + [anon_sym_BSLASHacfp] = ACTIONS(12547), + [anon_sym_BSLASHAcfp] = ACTIONS(12547), + [anon_sym_BSLASHac] = ACTIONS(12547), + [anon_sym_BSLASHAc] = ACTIONS(12547), + [anon_sym_BSLASHacp] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12547), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12547), + [anon_sym_BSLASHcolor] = ACTIONS(12547), + [anon_sym_BSLASHcolorbox] = ACTIONS(12547), + [anon_sym_BSLASHtextcolor] = ACTIONS(12547), + [anon_sym_BSLASHpagecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12547), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12547), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12547), + }, + [1592] = { + [sym_generic_command_name] = ACTIONS(12255), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12255), + [aux_sym_subparagraph_token1] = ACTIONS(12255), + [anon_sym_BSLASHitem] = ACTIONS(12255), + [anon_sym_LBRACK] = ACTIONS(12253), + [anon_sym_RBRACK] = ACTIONS(12253), + [anon_sym_LBRACE] = ACTIONS(12253), + [anon_sym_RBRACE] = ACTIONS(12253), + [anon_sym_LPAREN] = ACTIONS(12253), + [anon_sym_COMMA] = ACTIONS(12253), + [anon_sym_EQ] = ACTIONS(12253), + [sym_word] = ACTIONS(12253), + [sym_param] = ACTIONS(12253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12253), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12253), + [anon_sym_DOLLAR] = ACTIONS(12255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12253), + [anon_sym_BSLASHbegin] = ACTIONS(12255), + [anon_sym_BSLASHcaption] = ACTIONS(12255), + [anon_sym_BSLASHcite] = ACTIONS(12255), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCite] = ACTIONS(12255), + [anon_sym_BSLASHnocite] = ACTIONS(12255), + [anon_sym_BSLASHcitet] = ACTIONS(12255), + [anon_sym_BSLASHcitep] = ACTIONS(12255), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteauthor] = ACTIONS(12255), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12255), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitetitle] = ACTIONS(12255), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteyear] = ACTIONS(12255), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitedate] = ACTIONS(12255), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteurl] = ACTIONS(12255), + [anon_sym_BSLASHfullcite] = ACTIONS(12255), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12255), + [anon_sym_BSLASHcitealt] = ACTIONS(12255), + [anon_sym_BSLASHcitealp] = ACTIONS(12255), + [anon_sym_BSLASHcitetext] = ACTIONS(12255), + [anon_sym_BSLASHparencite] = ACTIONS(12255), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHParencite] = ACTIONS(12255), + [anon_sym_BSLASHfootcite] = ACTIONS(12255), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12255), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12255), + [anon_sym_BSLASHtextcite] = ACTIONS(12255), + [anon_sym_BSLASHTextcite] = ACTIONS(12255), + [anon_sym_BSLASHsmartcite] = ACTIONS(12255), + [anon_sym_BSLASHSmartcite] = ACTIONS(12255), + [anon_sym_BSLASHsupercite] = ACTIONS(12255), + [anon_sym_BSLASHautocite] = ACTIONS(12255), + [anon_sym_BSLASHAutocite] = ACTIONS(12255), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHvolcite] = ACTIONS(12255), + [anon_sym_BSLASHVolcite] = ACTIONS(12255), + [anon_sym_BSLASHpvolcite] = ACTIONS(12255), + [anon_sym_BSLASHPvolcite] = ACTIONS(12255), + [anon_sym_BSLASHfvolcite] = ACTIONS(12255), + [anon_sym_BSLASHftvolcite] = ACTIONS(12255), + [anon_sym_BSLASHsvolcite] = ACTIONS(12255), + [anon_sym_BSLASHSvolcite] = ACTIONS(12255), + [anon_sym_BSLASHtvolcite] = ACTIONS(12255), + [anon_sym_BSLASHTvolcite] = ACTIONS(12255), + [anon_sym_BSLASHavolcite] = ACTIONS(12255), + [anon_sym_BSLASHAvolcite] = ACTIONS(12255), + [anon_sym_BSLASHnotecite] = ACTIONS(12255), + [anon_sym_BSLASHpnotecite] = ACTIONS(12255), + [anon_sym_BSLASHPnotecite] = ACTIONS(12255), + [anon_sym_BSLASHfnotecite] = ACTIONS(12255), + [anon_sym_BSLASHusepackage] = ACTIONS(12255), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12255), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12255), + [anon_sym_BSLASHinclude] = ACTIONS(12255), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12255), + [anon_sym_BSLASHinput] = ACTIONS(12255), + [anon_sym_BSLASHsubfile] = ACTIONS(12255), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12255), + [anon_sym_BSLASHbibliography] = ACTIONS(12255), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12255), + [anon_sym_BSLASHincludesvg] = ACTIONS(12255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12255), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12255), + [anon_sym_BSLASHimport] = ACTIONS(12255), + [anon_sym_BSLASHsubimport] = ACTIONS(12255), + [anon_sym_BSLASHinputfrom] = ACTIONS(12255), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12255), + [anon_sym_BSLASHincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHlabel] = ACTIONS(12255), + [anon_sym_BSLASHref] = ACTIONS(12255), + [anon_sym_BSLASHvref] = ACTIONS(12255), + [anon_sym_BSLASHVref] = ACTIONS(12255), + [anon_sym_BSLASHautoref] = ACTIONS(12255), + [anon_sym_BSLASHpageref] = ACTIONS(12255), + [anon_sym_BSLASHcref] = ACTIONS(12255), + [anon_sym_BSLASHCref] = ACTIONS(12255), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnameCref] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHlabelcref] = ACTIONS(12255), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12255), + [anon_sym_BSLASHeqref] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange] = ACTIONS(12255), + [anon_sym_BSLASHCrefrange] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewlabel] = ACTIONS(12255), + [anon_sym_BSLASHnewcommand] = ACTIONS(12255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12255), + [anon_sym_BSLASHgls] = ACTIONS(12255), + [anon_sym_BSLASHGls] = ACTIONS(12255), + [anon_sym_BSLASHGLS] = ACTIONS(12255), + [anon_sym_BSLASHglspl] = ACTIONS(12255), + [anon_sym_BSLASHGlspl] = ACTIONS(12255), + [anon_sym_BSLASHGLSpl] = ACTIONS(12255), + [anon_sym_BSLASHglsdisp] = ACTIONS(12255), + [anon_sym_BSLASHglslink] = ACTIONS(12255), + [anon_sym_BSLASHglstext] = ACTIONS(12255), + [anon_sym_BSLASHGlstext] = ACTIONS(12255), + [anon_sym_BSLASHGLStext] = ACTIONS(12255), + [anon_sym_BSLASHglsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12255), + [anon_sym_BSLASHglsplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSplural] = ACTIONS(12255), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHglsname] = ACTIONS(12255), + [anon_sym_BSLASHGlsname] = ACTIONS(12255), + [anon_sym_BSLASHGLSname] = ACTIONS(12255), + [anon_sym_BSLASHglssymbol] = ACTIONS(12255), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12255), + [anon_sym_BSLASHglsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12255), + [anon_sym_BSLASHglsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12255), + [anon_sym_BSLASHglsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12255), + [anon_sym_BSLASHglsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12255), + [anon_sym_BSLASHglsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12255), + [anon_sym_BSLASHnewacronym] = ACTIONS(12255), + [anon_sym_BSLASHacrshort] = ACTIONS(12255), + [anon_sym_BSLASHAcrshort] = ACTIONS(12255), + [anon_sym_BSLASHACRshort] = ACTIONS(12255), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12255), + [anon_sym_BSLASHacrlong] = ACTIONS(12255), + [anon_sym_BSLASHAcrlong] = ACTIONS(12255), + [anon_sym_BSLASHACRlong] = ACTIONS(12255), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12255), + [anon_sym_BSLASHacrfull] = ACTIONS(12255), + [anon_sym_BSLASHAcrfull] = ACTIONS(12255), + [anon_sym_BSLASHACRfull] = ACTIONS(12255), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12255), + [anon_sym_BSLASHacs] = ACTIONS(12255), + [anon_sym_BSLASHAcs] = ACTIONS(12255), + [anon_sym_BSLASHacsp] = ACTIONS(12255), + [anon_sym_BSLASHAcsp] = ACTIONS(12255), + [anon_sym_BSLASHacl] = ACTIONS(12255), + [anon_sym_BSLASHAcl] = ACTIONS(12255), + [anon_sym_BSLASHaclp] = ACTIONS(12255), + [anon_sym_BSLASHAclp] = ACTIONS(12255), + [anon_sym_BSLASHacf] = ACTIONS(12255), + [anon_sym_BSLASHAcf] = ACTIONS(12255), + [anon_sym_BSLASHacfp] = ACTIONS(12255), + [anon_sym_BSLASHAcfp] = ACTIONS(12255), + [anon_sym_BSLASHac] = ACTIONS(12255), + [anon_sym_BSLASHAc] = ACTIONS(12255), + [anon_sym_BSLASHacp] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12255), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12255), + [anon_sym_BSLASHcolor] = ACTIONS(12255), + [anon_sym_BSLASHcolorbox] = ACTIONS(12255), + [anon_sym_BSLASHtextcolor] = ACTIONS(12255), + [anon_sym_BSLASHpagecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12255), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12255), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12255), + }, + [1593] = { + [sym_generic_command_name] = ACTIONS(12559), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12559), + [aux_sym_subparagraph_token1] = ACTIONS(12559), + [anon_sym_BSLASHitem] = ACTIONS(12559), + [anon_sym_LBRACK] = ACTIONS(12557), + [anon_sym_RBRACK] = ACTIONS(12557), + [anon_sym_LBRACE] = ACTIONS(12557), + [anon_sym_RBRACE] = ACTIONS(12557), + [anon_sym_LPAREN] = ACTIONS(12557), + [anon_sym_COMMA] = ACTIONS(12557), + [anon_sym_EQ] = ACTIONS(12557), + [sym_word] = ACTIONS(12557), + [sym_param] = ACTIONS(12557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12557), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12557), + [anon_sym_DOLLAR] = ACTIONS(12559), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12557), + [anon_sym_BSLASHbegin] = ACTIONS(12559), + [anon_sym_BSLASHcaption] = ACTIONS(12559), + [anon_sym_BSLASHcite] = ACTIONS(12559), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCite] = ACTIONS(12559), + [anon_sym_BSLASHnocite] = ACTIONS(12559), + [anon_sym_BSLASHcitet] = ACTIONS(12559), + [anon_sym_BSLASHcitep] = ACTIONS(12559), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteauthor] = ACTIONS(12559), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12559), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitetitle] = ACTIONS(12559), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteyear] = ACTIONS(12559), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitedate] = ACTIONS(12559), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteurl] = ACTIONS(12559), + [anon_sym_BSLASHfullcite] = ACTIONS(12559), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12559), + [anon_sym_BSLASHcitealt] = ACTIONS(12559), + [anon_sym_BSLASHcitealp] = ACTIONS(12559), + [anon_sym_BSLASHcitetext] = ACTIONS(12559), + [anon_sym_BSLASHparencite] = ACTIONS(12559), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHParencite] = ACTIONS(12559), + [anon_sym_BSLASHfootcite] = ACTIONS(12559), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12559), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12559), + [anon_sym_BSLASHtextcite] = ACTIONS(12559), + [anon_sym_BSLASHTextcite] = ACTIONS(12559), + [anon_sym_BSLASHsmartcite] = ACTIONS(12559), + [anon_sym_BSLASHSmartcite] = ACTIONS(12559), + [anon_sym_BSLASHsupercite] = ACTIONS(12559), + [anon_sym_BSLASHautocite] = ACTIONS(12559), + [anon_sym_BSLASHAutocite] = ACTIONS(12559), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHvolcite] = ACTIONS(12559), + [anon_sym_BSLASHVolcite] = ACTIONS(12559), + [anon_sym_BSLASHpvolcite] = ACTIONS(12559), + [anon_sym_BSLASHPvolcite] = ACTIONS(12559), + [anon_sym_BSLASHfvolcite] = ACTIONS(12559), + [anon_sym_BSLASHftvolcite] = ACTIONS(12559), + [anon_sym_BSLASHsvolcite] = ACTIONS(12559), + [anon_sym_BSLASHSvolcite] = ACTIONS(12559), + [anon_sym_BSLASHtvolcite] = ACTIONS(12559), + [anon_sym_BSLASHTvolcite] = ACTIONS(12559), + [anon_sym_BSLASHavolcite] = ACTIONS(12559), + [anon_sym_BSLASHAvolcite] = ACTIONS(12559), + [anon_sym_BSLASHnotecite] = ACTIONS(12559), + [anon_sym_BSLASHpnotecite] = ACTIONS(12559), + [anon_sym_BSLASHPnotecite] = ACTIONS(12559), + [anon_sym_BSLASHfnotecite] = ACTIONS(12559), + [anon_sym_BSLASHusepackage] = ACTIONS(12559), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12559), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12559), + [anon_sym_BSLASHinclude] = ACTIONS(12559), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12559), + [anon_sym_BSLASHinput] = ACTIONS(12559), + [anon_sym_BSLASHsubfile] = ACTIONS(12559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12559), + [anon_sym_BSLASHbibliography] = ACTIONS(12559), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12559), + [anon_sym_BSLASHincludesvg] = ACTIONS(12559), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12559), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12559), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12559), + [anon_sym_BSLASHimport] = ACTIONS(12559), + [anon_sym_BSLASHsubimport] = ACTIONS(12559), + [anon_sym_BSLASHinputfrom] = ACTIONS(12559), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12559), + [anon_sym_BSLASHincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHlabel] = ACTIONS(12559), + [anon_sym_BSLASHref] = ACTIONS(12559), + [anon_sym_BSLASHvref] = ACTIONS(12559), + [anon_sym_BSLASHVref] = ACTIONS(12559), + [anon_sym_BSLASHautoref] = ACTIONS(12559), + [anon_sym_BSLASHpageref] = ACTIONS(12559), + [anon_sym_BSLASHcref] = ACTIONS(12559), + [anon_sym_BSLASHCref] = ACTIONS(12559), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnameCref] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHlabelcref] = ACTIONS(12559), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12559), + [anon_sym_BSLASHeqref] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange] = ACTIONS(12559), + [anon_sym_BSLASHCrefrange] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewlabel] = ACTIONS(12559), + [anon_sym_BSLASHnewcommand] = ACTIONS(12559), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12559), + [anon_sym_BSLASHgls] = ACTIONS(12559), + [anon_sym_BSLASHGls] = ACTIONS(12559), + [anon_sym_BSLASHGLS] = ACTIONS(12559), + [anon_sym_BSLASHglspl] = ACTIONS(12559), + [anon_sym_BSLASHGlspl] = ACTIONS(12559), + [anon_sym_BSLASHGLSpl] = ACTIONS(12559), + [anon_sym_BSLASHglsdisp] = ACTIONS(12559), + [anon_sym_BSLASHglslink] = ACTIONS(12559), + [anon_sym_BSLASHglstext] = ACTIONS(12559), + [anon_sym_BSLASHGlstext] = ACTIONS(12559), + [anon_sym_BSLASHGLStext] = ACTIONS(12559), + [anon_sym_BSLASHglsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12559), + [anon_sym_BSLASHglsplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSplural] = ACTIONS(12559), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHglsname] = ACTIONS(12559), + [anon_sym_BSLASHGlsname] = ACTIONS(12559), + [anon_sym_BSLASHGLSname] = ACTIONS(12559), + [anon_sym_BSLASHglssymbol] = ACTIONS(12559), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12559), + [anon_sym_BSLASHglsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12559), + [anon_sym_BSLASHglsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12559), + [anon_sym_BSLASHglsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12559), + [anon_sym_BSLASHglsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12559), + [anon_sym_BSLASHglsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12559), + [anon_sym_BSLASHnewacronym] = ACTIONS(12559), + [anon_sym_BSLASHacrshort] = ACTIONS(12559), + [anon_sym_BSLASHAcrshort] = ACTIONS(12559), + [anon_sym_BSLASHACRshort] = ACTIONS(12559), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12559), + [anon_sym_BSLASHacrlong] = ACTIONS(12559), + [anon_sym_BSLASHAcrlong] = ACTIONS(12559), + [anon_sym_BSLASHACRlong] = ACTIONS(12559), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12559), + [anon_sym_BSLASHacrfull] = ACTIONS(12559), + [anon_sym_BSLASHAcrfull] = ACTIONS(12559), + [anon_sym_BSLASHACRfull] = ACTIONS(12559), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12559), + [anon_sym_BSLASHacs] = ACTIONS(12559), + [anon_sym_BSLASHAcs] = ACTIONS(12559), + [anon_sym_BSLASHacsp] = ACTIONS(12559), + [anon_sym_BSLASHAcsp] = ACTIONS(12559), + [anon_sym_BSLASHacl] = ACTIONS(12559), + [anon_sym_BSLASHAcl] = ACTIONS(12559), + [anon_sym_BSLASHaclp] = ACTIONS(12559), + [anon_sym_BSLASHAclp] = ACTIONS(12559), + [anon_sym_BSLASHacf] = ACTIONS(12559), + [anon_sym_BSLASHAcf] = ACTIONS(12559), + [anon_sym_BSLASHacfp] = ACTIONS(12559), + [anon_sym_BSLASHAcfp] = ACTIONS(12559), + [anon_sym_BSLASHac] = ACTIONS(12559), + [anon_sym_BSLASHAc] = ACTIONS(12559), + [anon_sym_BSLASHacp] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12559), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12559), + [anon_sym_BSLASHcolor] = ACTIONS(12559), + [anon_sym_BSLASHcolorbox] = ACTIONS(12559), + [anon_sym_BSLASHtextcolor] = ACTIONS(12559), + [anon_sym_BSLASHpagecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12559), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12559), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12559), + }, + [1594] = { + [sym_generic_command_name] = ACTIONS(12555), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12555), + [aux_sym_subparagraph_token1] = ACTIONS(12555), + [anon_sym_BSLASHitem] = ACTIONS(12555), + [anon_sym_LBRACK] = ACTIONS(12553), + [anon_sym_RBRACK] = ACTIONS(12553), + [anon_sym_LBRACE] = ACTIONS(12553), + [anon_sym_RBRACE] = ACTIONS(12553), + [anon_sym_LPAREN] = ACTIONS(12553), + [anon_sym_COMMA] = ACTIONS(12553), + [anon_sym_EQ] = ACTIONS(12553), + [sym_word] = ACTIONS(12553), + [sym_param] = ACTIONS(12553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12553), + [anon_sym_DOLLAR] = ACTIONS(12555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12553), + [anon_sym_BSLASHbegin] = ACTIONS(12555), + [anon_sym_BSLASHcaption] = ACTIONS(12555), + [anon_sym_BSLASHcite] = ACTIONS(12555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCite] = ACTIONS(12555), + [anon_sym_BSLASHnocite] = ACTIONS(12555), + [anon_sym_BSLASHcitet] = ACTIONS(12555), + [anon_sym_BSLASHcitep] = ACTIONS(12555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteauthor] = ACTIONS(12555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitetitle] = ACTIONS(12555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteyear] = ACTIONS(12555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitedate] = ACTIONS(12555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteurl] = ACTIONS(12555), + [anon_sym_BSLASHfullcite] = ACTIONS(12555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12555), + [anon_sym_BSLASHcitealt] = ACTIONS(12555), + [anon_sym_BSLASHcitealp] = ACTIONS(12555), + [anon_sym_BSLASHcitetext] = ACTIONS(12555), + [anon_sym_BSLASHparencite] = ACTIONS(12555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHParencite] = ACTIONS(12555), + [anon_sym_BSLASHfootcite] = ACTIONS(12555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12555), + [anon_sym_BSLASHtextcite] = ACTIONS(12555), + [anon_sym_BSLASHTextcite] = ACTIONS(12555), + [anon_sym_BSLASHsmartcite] = ACTIONS(12555), + [anon_sym_BSLASHSmartcite] = ACTIONS(12555), + [anon_sym_BSLASHsupercite] = ACTIONS(12555), + [anon_sym_BSLASHautocite] = ACTIONS(12555), + [anon_sym_BSLASHAutocite] = ACTIONS(12555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHvolcite] = ACTIONS(12555), + [anon_sym_BSLASHVolcite] = ACTIONS(12555), + [anon_sym_BSLASHpvolcite] = ACTIONS(12555), + [anon_sym_BSLASHPvolcite] = ACTIONS(12555), + [anon_sym_BSLASHfvolcite] = ACTIONS(12555), + [anon_sym_BSLASHftvolcite] = ACTIONS(12555), + [anon_sym_BSLASHsvolcite] = ACTIONS(12555), + [anon_sym_BSLASHSvolcite] = ACTIONS(12555), + [anon_sym_BSLASHtvolcite] = ACTIONS(12555), + [anon_sym_BSLASHTvolcite] = ACTIONS(12555), + [anon_sym_BSLASHavolcite] = ACTIONS(12555), + [anon_sym_BSLASHAvolcite] = ACTIONS(12555), + [anon_sym_BSLASHnotecite] = ACTIONS(12555), + [anon_sym_BSLASHpnotecite] = ACTIONS(12555), + [anon_sym_BSLASHPnotecite] = ACTIONS(12555), + [anon_sym_BSLASHfnotecite] = ACTIONS(12555), + [anon_sym_BSLASHusepackage] = ACTIONS(12555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12555), + [anon_sym_BSLASHinclude] = ACTIONS(12555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12555), + [anon_sym_BSLASHinput] = ACTIONS(12555), + [anon_sym_BSLASHsubfile] = ACTIONS(12555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12555), + [anon_sym_BSLASHbibliography] = ACTIONS(12555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12555), + [anon_sym_BSLASHincludesvg] = ACTIONS(12555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12555), + [anon_sym_BSLASHimport] = ACTIONS(12555), + [anon_sym_BSLASHsubimport] = ACTIONS(12555), + [anon_sym_BSLASHinputfrom] = ACTIONS(12555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12555), + [anon_sym_BSLASHincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHlabel] = ACTIONS(12555), + [anon_sym_BSLASHref] = ACTIONS(12555), + [anon_sym_BSLASHvref] = ACTIONS(12555), + [anon_sym_BSLASHVref] = ACTIONS(12555), + [anon_sym_BSLASHautoref] = ACTIONS(12555), + [anon_sym_BSLASHpageref] = ACTIONS(12555), + [anon_sym_BSLASHcref] = ACTIONS(12555), + [anon_sym_BSLASHCref] = ACTIONS(12555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnameCref] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHlabelcref] = ACTIONS(12555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12555), + [anon_sym_BSLASHeqref] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange] = ACTIONS(12555), + [anon_sym_BSLASHCrefrange] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewlabel] = ACTIONS(12555), + [anon_sym_BSLASHnewcommand] = ACTIONS(12555), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12555), + [anon_sym_BSLASHgls] = ACTIONS(12555), + [anon_sym_BSLASHGls] = ACTIONS(12555), + [anon_sym_BSLASHGLS] = ACTIONS(12555), + [anon_sym_BSLASHglspl] = ACTIONS(12555), + [anon_sym_BSLASHGlspl] = ACTIONS(12555), + [anon_sym_BSLASHGLSpl] = ACTIONS(12555), + [anon_sym_BSLASHglsdisp] = ACTIONS(12555), + [anon_sym_BSLASHglslink] = ACTIONS(12555), + [anon_sym_BSLASHglstext] = ACTIONS(12555), + [anon_sym_BSLASHGlstext] = ACTIONS(12555), + [anon_sym_BSLASHGLStext] = ACTIONS(12555), + [anon_sym_BSLASHglsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12555), + [anon_sym_BSLASHglsplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSplural] = ACTIONS(12555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHglsname] = ACTIONS(12555), + [anon_sym_BSLASHGlsname] = ACTIONS(12555), + [anon_sym_BSLASHGLSname] = ACTIONS(12555), + [anon_sym_BSLASHglssymbol] = ACTIONS(12555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12555), + [anon_sym_BSLASHglsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12555), + [anon_sym_BSLASHglsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12555), + [anon_sym_BSLASHglsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12555), + [anon_sym_BSLASHglsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12555), + [anon_sym_BSLASHglsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12555), + [anon_sym_BSLASHnewacronym] = ACTIONS(12555), + [anon_sym_BSLASHacrshort] = ACTIONS(12555), + [anon_sym_BSLASHAcrshort] = ACTIONS(12555), + [anon_sym_BSLASHACRshort] = ACTIONS(12555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12555), + [anon_sym_BSLASHacrlong] = ACTIONS(12555), + [anon_sym_BSLASHAcrlong] = ACTIONS(12555), + [anon_sym_BSLASHACRlong] = ACTIONS(12555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12555), + [anon_sym_BSLASHacrfull] = ACTIONS(12555), + [anon_sym_BSLASHAcrfull] = ACTIONS(12555), + [anon_sym_BSLASHACRfull] = ACTIONS(12555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12555), + [anon_sym_BSLASHacs] = ACTIONS(12555), + [anon_sym_BSLASHAcs] = ACTIONS(12555), + [anon_sym_BSLASHacsp] = ACTIONS(12555), + [anon_sym_BSLASHAcsp] = ACTIONS(12555), + [anon_sym_BSLASHacl] = ACTIONS(12555), + [anon_sym_BSLASHAcl] = ACTIONS(12555), + [anon_sym_BSLASHaclp] = ACTIONS(12555), + [anon_sym_BSLASHAclp] = ACTIONS(12555), + [anon_sym_BSLASHacf] = ACTIONS(12555), + [anon_sym_BSLASHAcf] = ACTIONS(12555), + [anon_sym_BSLASHacfp] = ACTIONS(12555), + [anon_sym_BSLASHAcfp] = ACTIONS(12555), + [anon_sym_BSLASHac] = ACTIONS(12555), + [anon_sym_BSLASHAc] = ACTIONS(12555), + [anon_sym_BSLASHacp] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12555), + [anon_sym_BSLASHcolor] = ACTIONS(12555), + [anon_sym_BSLASHcolorbox] = ACTIONS(12555), + [anon_sym_BSLASHtextcolor] = ACTIONS(12555), + [anon_sym_BSLASHpagecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12555), + }, + [1595] = { + [sym_generic_command_name] = ACTIONS(12551), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12551), + [aux_sym_subparagraph_token1] = ACTIONS(12551), + [anon_sym_BSLASHitem] = ACTIONS(12551), + [anon_sym_LBRACK] = ACTIONS(12549), + [anon_sym_RBRACK] = ACTIONS(12549), + [anon_sym_LBRACE] = ACTIONS(12549), + [anon_sym_RBRACE] = ACTIONS(12549), + [anon_sym_LPAREN] = ACTIONS(12549), + [anon_sym_COMMA] = ACTIONS(12549), + [anon_sym_EQ] = ACTIONS(12549), + [sym_word] = ACTIONS(12549), + [sym_param] = ACTIONS(12549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12549), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12549), + [anon_sym_DOLLAR] = ACTIONS(12551), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12549), + [anon_sym_BSLASHbegin] = ACTIONS(12551), + [anon_sym_BSLASHcaption] = ACTIONS(12551), + [anon_sym_BSLASHcite] = ACTIONS(12551), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCite] = ACTIONS(12551), + [anon_sym_BSLASHnocite] = ACTIONS(12551), + [anon_sym_BSLASHcitet] = ACTIONS(12551), + [anon_sym_BSLASHcitep] = ACTIONS(12551), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteauthor] = ACTIONS(12551), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12551), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitetitle] = ACTIONS(12551), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteyear] = ACTIONS(12551), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitedate] = ACTIONS(12551), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteurl] = ACTIONS(12551), + [anon_sym_BSLASHfullcite] = ACTIONS(12551), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12551), + [anon_sym_BSLASHcitealt] = ACTIONS(12551), + [anon_sym_BSLASHcitealp] = ACTIONS(12551), + [anon_sym_BSLASHcitetext] = ACTIONS(12551), + [anon_sym_BSLASHparencite] = ACTIONS(12551), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHParencite] = ACTIONS(12551), + [anon_sym_BSLASHfootcite] = ACTIONS(12551), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12551), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12551), + [anon_sym_BSLASHtextcite] = ACTIONS(12551), + [anon_sym_BSLASHTextcite] = ACTIONS(12551), + [anon_sym_BSLASHsmartcite] = ACTIONS(12551), + [anon_sym_BSLASHSmartcite] = ACTIONS(12551), + [anon_sym_BSLASHsupercite] = ACTIONS(12551), + [anon_sym_BSLASHautocite] = ACTIONS(12551), + [anon_sym_BSLASHAutocite] = ACTIONS(12551), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHvolcite] = ACTIONS(12551), + [anon_sym_BSLASHVolcite] = ACTIONS(12551), + [anon_sym_BSLASHpvolcite] = ACTIONS(12551), + [anon_sym_BSLASHPvolcite] = ACTIONS(12551), + [anon_sym_BSLASHfvolcite] = ACTIONS(12551), + [anon_sym_BSLASHftvolcite] = ACTIONS(12551), + [anon_sym_BSLASHsvolcite] = ACTIONS(12551), + [anon_sym_BSLASHSvolcite] = ACTIONS(12551), + [anon_sym_BSLASHtvolcite] = ACTIONS(12551), + [anon_sym_BSLASHTvolcite] = ACTIONS(12551), + [anon_sym_BSLASHavolcite] = ACTIONS(12551), + [anon_sym_BSLASHAvolcite] = ACTIONS(12551), + [anon_sym_BSLASHnotecite] = ACTIONS(12551), + [anon_sym_BSLASHpnotecite] = ACTIONS(12551), + [anon_sym_BSLASHPnotecite] = ACTIONS(12551), + [anon_sym_BSLASHfnotecite] = ACTIONS(12551), + [anon_sym_BSLASHusepackage] = ACTIONS(12551), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12551), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12551), + [anon_sym_BSLASHinclude] = ACTIONS(12551), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12551), + [anon_sym_BSLASHinput] = ACTIONS(12551), + [anon_sym_BSLASHsubfile] = ACTIONS(12551), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12551), + [anon_sym_BSLASHbibliography] = ACTIONS(12551), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12551), + [anon_sym_BSLASHincludesvg] = ACTIONS(12551), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12551), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12551), + [anon_sym_BSLASHimport] = ACTIONS(12551), + [anon_sym_BSLASHsubimport] = ACTIONS(12551), + [anon_sym_BSLASHinputfrom] = ACTIONS(12551), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12551), + [anon_sym_BSLASHincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHlabel] = ACTIONS(12551), + [anon_sym_BSLASHref] = ACTIONS(12551), + [anon_sym_BSLASHvref] = ACTIONS(12551), + [anon_sym_BSLASHVref] = ACTIONS(12551), + [anon_sym_BSLASHautoref] = ACTIONS(12551), + [anon_sym_BSLASHpageref] = ACTIONS(12551), + [anon_sym_BSLASHcref] = ACTIONS(12551), + [anon_sym_BSLASHCref] = ACTIONS(12551), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnameCref] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHlabelcref] = ACTIONS(12551), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12551), + [anon_sym_BSLASHeqref] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange] = ACTIONS(12551), + [anon_sym_BSLASHCrefrange] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewlabel] = ACTIONS(12551), + [anon_sym_BSLASHnewcommand] = ACTIONS(12551), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12551), + [anon_sym_BSLASHgls] = ACTIONS(12551), + [anon_sym_BSLASHGls] = ACTIONS(12551), + [anon_sym_BSLASHGLS] = ACTIONS(12551), + [anon_sym_BSLASHglspl] = ACTIONS(12551), + [anon_sym_BSLASHGlspl] = ACTIONS(12551), + [anon_sym_BSLASHGLSpl] = ACTIONS(12551), + [anon_sym_BSLASHglsdisp] = ACTIONS(12551), + [anon_sym_BSLASHglslink] = ACTIONS(12551), + [anon_sym_BSLASHglstext] = ACTIONS(12551), + [anon_sym_BSLASHGlstext] = ACTIONS(12551), + [anon_sym_BSLASHGLStext] = ACTIONS(12551), + [anon_sym_BSLASHglsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12551), + [anon_sym_BSLASHglsplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSplural] = ACTIONS(12551), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHglsname] = ACTIONS(12551), + [anon_sym_BSLASHGlsname] = ACTIONS(12551), + [anon_sym_BSLASHGLSname] = ACTIONS(12551), + [anon_sym_BSLASHglssymbol] = ACTIONS(12551), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12551), + [anon_sym_BSLASHglsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12551), + [anon_sym_BSLASHglsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12551), + [anon_sym_BSLASHglsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12551), + [anon_sym_BSLASHglsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12551), + [anon_sym_BSLASHglsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12551), + [anon_sym_BSLASHnewacronym] = ACTIONS(12551), + [anon_sym_BSLASHacrshort] = ACTIONS(12551), + [anon_sym_BSLASHAcrshort] = ACTIONS(12551), + [anon_sym_BSLASHACRshort] = ACTIONS(12551), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12551), + [anon_sym_BSLASHacrlong] = ACTIONS(12551), + [anon_sym_BSLASHAcrlong] = ACTIONS(12551), + [anon_sym_BSLASHACRlong] = ACTIONS(12551), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12551), + [anon_sym_BSLASHacrfull] = ACTIONS(12551), + [anon_sym_BSLASHAcrfull] = ACTIONS(12551), + [anon_sym_BSLASHACRfull] = ACTIONS(12551), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12551), + [anon_sym_BSLASHacs] = ACTIONS(12551), + [anon_sym_BSLASHAcs] = ACTIONS(12551), + [anon_sym_BSLASHacsp] = ACTIONS(12551), + [anon_sym_BSLASHAcsp] = ACTIONS(12551), + [anon_sym_BSLASHacl] = ACTIONS(12551), + [anon_sym_BSLASHAcl] = ACTIONS(12551), + [anon_sym_BSLASHaclp] = ACTIONS(12551), + [anon_sym_BSLASHAclp] = ACTIONS(12551), + [anon_sym_BSLASHacf] = ACTIONS(12551), + [anon_sym_BSLASHAcf] = ACTIONS(12551), + [anon_sym_BSLASHacfp] = ACTIONS(12551), + [anon_sym_BSLASHAcfp] = ACTIONS(12551), + [anon_sym_BSLASHac] = ACTIONS(12551), + [anon_sym_BSLASHAc] = ACTIONS(12551), + [anon_sym_BSLASHacp] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12551), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12551), + [anon_sym_BSLASHcolor] = ACTIONS(12551), + [anon_sym_BSLASHcolorbox] = ACTIONS(12551), + [anon_sym_BSLASHtextcolor] = ACTIONS(12551), + [anon_sym_BSLASHpagecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12551), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12551), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12551), + }, + [1596] = { + [sym_generic_command_name] = ACTIONS(12535), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12535), + [aux_sym_subparagraph_token1] = ACTIONS(12535), + [anon_sym_BSLASHitem] = ACTIONS(12535), + [anon_sym_LBRACK] = ACTIONS(12533), + [anon_sym_RBRACK] = ACTIONS(12533), + [anon_sym_LBRACE] = ACTIONS(12533), + [anon_sym_RBRACE] = ACTIONS(12533), + [anon_sym_LPAREN] = ACTIONS(12533), + [anon_sym_COMMA] = ACTIONS(12533), + [anon_sym_EQ] = ACTIONS(12533), + [sym_word] = ACTIONS(12533), + [sym_param] = ACTIONS(12533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12533), + [anon_sym_DOLLAR] = ACTIONS(12535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12533), + [anon_sym_BSLASHbegin] = ACTIONS(12535), + [anon_sym_BSLASHcaption] = ACTIONS(12535), + [anon_sym_BSLASHcite] = ACTIONS(12535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCite] = ACTIONS(12535), + [anon_sym_BSLASHnocite] = ACTIONS(12535), + [anon_sym_BSLASHcitet] = ACTIONS(12535), + [anon_sym_BSLASHcitep] = ACTIONS(12535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteauthor] = ACTIONS(12535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitetitle] = ACTIONS(12535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteyear] = ACTIONS(12535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitedate] = ACTIONS(12535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteurl] = ACTIONS(12535), + [anon_sym_BSLASHfullcite] = ACTIONS(12535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12535), + [anon_sym_BSLASHcitealt] = ACTIONS(12535), + [anon_sym_BSLASHcitealp] = ACTIONS(12535), + [anon_sym_BSLASHcitetext] = ACTIONS(12535), + [anon_sym_BSLASHparencite] = ACTIONS(12535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHParencite] = ACTIONS(12535), + [anon_sym_BSLASHfootcite] = ACTIONS(12535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12535), + [anon_sym_BSLASHtextcite] = ACTIONS(12535), + [anon_sym_BSLASHTextcite] = ACTIONS(12535), + [anon_sym_BSLASHsmartcite] = ACTIONS(12535), + [anon_sym_BSLASHSmartcite] = ACTIONS(12535), + [anon_sym_BSLASHsupercite] = ACTIONS(12535), + [anon_sym_BSLASHautocite] = ACTIONS(12535), + [anon_sym_BSLASHAutocite] = ACTIONS(12535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHvolcite] = ACTIONS(12535), + [anon_sym_BSLASHVolcite] = ACTIONS(12535), + [anon_sym_BSLASHpvolcite] = ACTIONS(12535), + [anon_sym_BSLASHPvolcite] = ACTIONS(12535), + [anon_sym_BSLASHfvolcite] = ACTIONS(12535), + [anon_sym_BSLASHftvolcite] = ACTIONS(12535), + [anon_sym_BSLASHsvolcite] = ACTIONS(12535), + [anon_sym_BSLASHSvolcite] = ACTIONS(12535), + [anon_sym_BSLASHtvolcite] = ACTIONS(12535), + [anon_sym_BSLASHTvolcite] = ACTIONS(12535), + [anon_sym_BSLASHavolcite] = ACTIONS(12535), + [anon_sym_BSLASHAvolcite] = ACTIONS(12535), + [anon_sym_BSLASHnotecite] = ACTIONS(12535), + [anon_sym_BSLASHpnotecite] = ACTIONS(12535), + [anon_sym_BSLASHPnotecite] = ACTIONS(12535), + [anon_sym_BSLASHfnotecite] = ACTIONS(12535), + [anon_sym_BSLASHusepackage] = ACTIONS(12535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12535), + [anon_sym_BSLASHinclude] = ACTIONS(12535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12535), + [anon_sym_BSLASHinput] = ACTIONS(12535), + [anon_sym_BSLASHsubfile] = ACTIONS(12535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12535), + [anon_sym_BSLASHbibliography] = ACTIONS(12535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12535), + [anon_sym_BSLASHincludesvg] = ACTIONS(12535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12535), + [anon_sym_BSLASHimport] = ACTIONS(12535), + [anon_sym_BSLASHsubimport] = ACTIONS(12535), + [anon_sym_BSLASHinputfrom] = ACTIONS(12535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12535), + [anon_sym_BSLASHincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHlabel] = ACTIONS(12535), + [anon_sym_BSLASHref] = ACTIONS(12535), + [anon_sym_BSLASHvref] = ACTIONS(12535), + [anon_sym_BSLASHVref] = ACTIONS(12535), + [anon_sym_BSLASHautoref] = ACTIONS(12535), + [anon_sym_BSLASHpageref] = ACTIONS(12535), + [anon_sym_BSLASHcref] = ACTIONS(12535), + [anon_sym_BSLASHCref] = ACTIONS(12535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnameCref] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHlabelcref] = ACTIONS(12535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12535), + [anon_sym_BSLASHeqref] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange] = ACTIONS(12535), + [anon_sym_BSLASHCrefrange] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewlabel] = ACTIONS(12535), + [anon_sym_BSLASHnewcommand] = ACTIONS(12535), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12535), + [anon_sym_BSLASHgls] = ACTIONS(12535), + [anon_sym_BSLASHGls] = ACTIONS(12535), + [anon_sym_BSLASHGLS] = ACTIONS(12535), + [anon_sym_BSLASHglspl] = ACTIONS(12535), + [anon_sym_BSLASHGlspl] = ACTIONS(12535), + [anon_sym_BSLASHGLSpl] = ACTIONS(12535), + [anon_sym_BSLASHglsdisp] = ACTIONS(12535), + [anon_sym_BSLASHglslink] = ACTIONS(12535), + [anon_sym_BSLASHglstext] = ACTIONS(12535), + [anon_sym_BSLASHGlstext] = ACTIONS(12535), + [anon_sym_BSLASHGLStext] = ACTIONS(12535), + [anon_sym_BSLASHglsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12535), + [anon_sym_BSLASHglsplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSplural] = ACTIONS(12535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHglsname] = ACTIONS(12535), + [anon_sym_BSLASHGlsname] = ACTIONS(12535), + [anon_sym_BSLASHGLSname] = ACTIONS(12535), + [anon_sym_BSLASHglssymbol] = ACTIONS(12535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12535), + [anon_sym_BSLASHglsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12535), + [anon_sym_BSLASHglsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12535), + [anon_sym_BSLASHglsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12535), + [anon_sym_BSLASHglsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12535), + [anon_sym_BSLASHglsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12535), + [anon_sym_BSLASHnewacronym] = ACTIONS(12535), + [anon_sym_BSLASHacrshort] = ACTIONS(12535), + [anon_sym_BSLASHAcrshort] = ACTIONS(12535), + [anon_sym_BSLASHACRshort] = ACTIONS(12535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12535), + [anon_sym_BSLASHacrlong] = ACTIONS(12535), + [anon_sym_BSLASHAcrlong] = ACTIONS(12535), + [anon_sym_BSLASHACRlong] = ACTIONS(12535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12535), + [anon_sym_BSLASHacrfull] = ACTIONS(12535), + [anon_sym_BSLASHAcrfull] = ACTIONS(12535), + [anon_sym_BSLASHACRfull] = ACTIONS(12535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12535), + [anon_sym_BSLASHacs] = ACTIONS(12535), + [anon_sym_BSLASHAcs] = ACTIONS(12535), + [anon_sym_BSLASHacsp] = ACTIONS(12535), + [anon_sym_BSLASHAcsp] = ACTIONS(12535), + [anon_sym_BSLASHacl] = ACTIONS(12535), + [anon_sym_BSLASHAcl] = ACTIONS(12535), + [anon_sym_BSLASHaclp] = ACTIONS(12535), + [anon_sym_BSLASHAclp] = ACTIONS(12535), + [anon_sym_BSLASHacf] = ACTIONS(12535), + [anon_sym_BSLASHAcf] = ACTIONS(12535), + [anon_sym_BSLASHacfp] = ACTIONS(12535), + [anon_sym_BSLASHAcfp] = ACTIONS(12535), + [anon_sym_BSLASHac] = ACTIONS(12535), + [anon_sym_BSLASHAc] = ACTIONS(12535), + [anon_sym_BSLASHacp] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12535), + [anon_sym_BSLASHcolor] = ACTIONS(12535), + [anon_sym_BSLASHcolorbox] = ACTIONS(12535), + [anon_sym_BSLASHtextcolor] = ACTIONS(12535), + [anon_sym_BSLASHpagecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12535), + }, + [1597] = { + [sym_generic_command_name] = ACTIONS(12505), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12505), + [aux_sym_subparagraph_token1] = ACTIONS(12505), + [anon_sym_BSLASHitem] = ACTIONS(12505), + [anon_sym_LBRACK] = ACTIONS(12503), + [anon_sym_RBRACK] = ACTIONS(12503), + [anon_sym_LBRACE] = ACTIONS(12503), + [anon_sym_RBRACE] = ACTIONS(12503), + [anon_sym_LPAREN] = ACTIONS(12503), + [anon_sym_COMMA] = ACTIONS(12503), + [anon_sym_EQ] = ACTIONS(12503), + [sym_word] = ACTIONS(12503), + [sym_param] = ACTIONS(12503), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12503), + [anon_sym_DOLLAR] = ACTIONS(12505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12503), + [anon_sym_BSLASHbegin] = ACTIONS(12505), + [anon_sym_BSLASHcaption] = ACTIONS(12505), + [anon_sym_BSLASHcite] = ACTIONS(12505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCite] = ACTIONS(12505), + [anon_sym_BSLASHnocite] = ACTIONS(12505), + [anon_sym_BSLASHcitet] = ACTIONS(12505), + [anon_sym_BSLASHcitep] = ACTIONS(12505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteauthor] = ACTIONS(12505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitetitle] = ACTIONS(12505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteyear] = ACTIONS(12505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitedate] = ACTIONS(12505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteurl] = ACTIONS(12505), + [anon_sym_BSLASHfullcite] = ACTIONS(12505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12505), + [anon_sym_BSLASHcitealt] = ACTIONS(12505), + [anon_sym_BSLASHcitealp] = ACTIONS(12505), + [anon_sym_BSLASHcitetext] = ACTIONS(12505), + [anon_sym_BSLASHparencite] = ACTIONS(12505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHParencite] = ACTIONS(12505), + [anon_sym_BSLASHfootcite] = ACTIONS(12505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12505), + [anon_sym_BSLASHtextcite] = ACTIONS(12505), + [anon_sym_BSLASHTextcite] = ACTIONS(12505), + [anon_sym_BSLASHsmartcite] = ACTIONS(12505), + [anon_sym_BSLASHSmartcite] = ACTIONS(12505), + [anon_sym_BSLASHsupercite] = ACTIONS(12505), + [anon_sym_BSLASHautocite] = ACTIONS(12505), + [anon_sym_BSLASHAutocite] = ACTIONS(12505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHvolcite] = ACTIONS(12505), + [anon_sym_BSLASHVolcite] = ACTIONS(12505), + [anon_sym_BSLASHpvolcite] = ACTIONS(12505), + [anon_sym_BSLASHPvolcite] = ACTIONS(12505), + [anon_sym_BSLASHfvolcite] = ACTIONS(12505), + [anon_sym_BSLASHftvolcite] = ACTIONS(12505), + [anon_sym_BSLASHsvolcite] = ACTIONS(12505), + [anon_sym_BSLASHSvolcite] = ACTIONS(12505), + [anon_sym_BSLASHtvolcite] = ACTIONS(12505), + [anon_sym_BSLASHTvolcite] = ACTIONS(12505), + [anon_sym_BSLASHavolcite] = ACTIONS(12505), + [anon_sym_BSLASHAvolcite] = ACTIONS(12505), + [anon_sym_BSLASHnotecite] = ACTIONS(12505), + [anon_sym_BSLASHpnotecite] = ACTIONS(12505), + [anon_sym_BSLASHPnotecite] = ACTIONS(12505), + [anon_sym_BSLASHfnotecite] = ACTIONS(12505), + [anon_sym_BSLASHusepackage] = ACTIONS(12505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12505), + [anon_sym_BSLASHinclude] = ACTIONS(12505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12505), + [anon_sym_BSLASHinput] = ACTIONS(12505), + [anon_sym_BSLASHsubfile] = ACTIONS(12505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12505), + [anon_sym_BSLASHbibliography] = ACTIONS(12505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12505), + [anon_sym_BSLASHincludesvg] = ACTIONS(12505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12505), + [anon_sym_BSLASHimport] = ACTIONS(12505), + [anon_sym_BSLASHsubimport] = ACTIONS(12505), + [anon_sym_BSLASHinputfrom] = ACTIONS(12505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12505), + [anon_sym_BSLASHincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHlabel] = ACTIONS(12505), + [anon_sym_BSLASHref] = ACTIONS(12505), + [anon_sym_BSLASHvref] = ACTIONS(12505), + [anon_sym_BSLASHVref] = ACTIONS(12505), + [anon_sym_BSLASHautoref] = ACTIONS(12505), + [anon_sym_BSLASHpageref] = ACTIONS(12505), + [anon_sym_BSLASHcref] = ACTIONS(12505), + [anon_sym_BSLASHCref] = ACTIONS(12505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnameCref] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHlabelcref] = ACTIONS(12505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12505), + [anon_sym_BSLASHeqref] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange] = ACTIONS(12505), + [anon_sym_BSLASHCrefrange] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewlabel] = ACTIONS(12505), + [anon_sym_BSLASHnewcommand] = ACTIONS(12505), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12505), + [anon_sym_BSLASHgls] = ACTIONS(12505), + [anon_sym_BSLASHGls] = ACTIONS(12505), + [anon_sym_BSLASHGLS] = ACTIONS(12505), + [anon_sym_BSLASHglspl] = ACTIONS(12505), + [anon_sym_BSLASHGlspl] = ACTIONS(12505), + [anon_sym_BSLASHGLSpl] = ACTIONS(12505), + [anon_sym_BSLASHglsdisp] = ACTIONS(12505), + [anon_sym_BSLASHglslink] = ACTIONS(12505), + [anon_sym_BSLASHglstext] = ACTIONS(12505), + [anon_sym_BSLASHGlstext] = ACTIONS(12505), + [anon_sym_BSLASHGLStext] = ACTIONS(12505), + [anon_sym_BSLASHglsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12505), + [anon_sym_BSLASHglsplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSplural] = ACTIONS(12505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHglsname] = ACTIONS(12505), + [anon_sym_BSLASHGlsname] = ACTIONS(12505), + [anon_sym_BSLASHGLSname] = ACTIONS(12505), + [anon_sym_BSLASHglssymbol] = ACTIONS(12505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12505), + [anon_sym_BSLASHglsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12505), + [anon_sym_BSLASHglsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12505), + [anon_sym_BSLASHglsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12505), + [anon_sym_BSLASHglsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12505), + [anon_sym_BSLASHglsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12505), + [anon_sym_BSLASHnewacronym] = ACTIONS(12505), + [anon_sym_BSLASHacrshort] = ACTIONS(12505), + [anon_sym_BSLASHAcrshort] = ACTIONS(12505), + [anon_sym_BSLASHACRshort] = ACTIONS(12505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12505), + [anon_sym_BSLASHacrlong] = ACTIONS(12505), + [anon_sym_BSLASHAcrlong] = ACTIONS(12505), + [anon_sym_BSLASHACRlong] = ACTIONS(12505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12505), + [anon_sym_BSLASHacrfull] = ACTIONS(12505), + [anon_sym_BSLASHAcrfull] = ACTIONS(12505), + [anon_sym_BSLASHACRfull] = ACTIONS(12505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12505), + [anon_sym_BSLASHacs] = ACTIONS(12505), + [anon_sym_BSLASHAcs] = ACTIONS(12505), + [anon_sym_BSLASHacsp] = ACTIONS(12505), + [anon_sym_BSLASHAcsp] = ACTIONS(12505), + [anon_sym_BSLASHacl] = ACTIONS(12505), + [anon_sym_BSLASHAcl] = ACTIONS(12505), + [anon_sym_BSLASHaclp] = ACTIONS(12505), + [anon_sym_BSLASHAclp] = ACTIONS(12505), + [anon_sym_BSLASHacf] = ACTIONS(12505), + [anon_sym_BSLASHAcf] = ACTIONS(12505), + [anon_sym_BSLASHacfp] = ACTIONS(12505), + [anon_sym_BSLASHAcfp] = ACTIONS(12505), + [anon_sym_BSLASHac] = ACTIONS(12505), + [anon_sym_BSLASHAc] = ACTIONS(12505), + [anon_sym_BSLASHacp] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12505), + [anon_sym_BSLASHcolor] = ACTIONS(12505), + [anon_sym_BSLASHcolorbox] = ACTIONS(12505), + [anon_sym_BSLASHtextcolor] = ACTIONS(12505), + [anon_sym_BSLASHpagecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12505), + }, + [1598] = { + [sym_generic_command_name] = ACTIONS(12489), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12489), + [aux_sym_subparagraph_token1] = ACTIONS(12489), + [anon_sym_BSLASHitem] = ACTIONS(12489), + [anon_sym_LBRACK] = ACTIONS(12487), + [anon_sym_RBRACK] = ACTIONS(12487), + [anon_sym_LBRACE] = ACTIONS(12487), + [anon_sym_RBRACE] = ACTIONS(12487), + [anon_sym_LPAREN] = ACTIONS(12487), + [anon_sym_COMMA] = ACTIONS(12487), + [anon_sym_EQ] = ACTIONS(12487), + [sym_word] = ACTIONS(12487), + [sym_param] = ACTIONS(12487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12487), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12487), + [anon_sym_DOLLAR] = ACTIONS(12489), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12487), + [anon_sym_BSLASHbegin] = ACTIONS(12489), + [anon_sym_BSLASHcaption] = ACTIONS(12489), + [anon_sym_BSLASHcite] = ACTIONS(12489), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCite] = ACTIONS(12489), + [anon_sym_BSLASHnocite] = ACTIONS(12489), + [anon_sym_BSLASHcitet] = ACTIONS(12489), + [anon_sym_BSLASHcitep] = ACTIONS(12489), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteauthor] = ACTIONS(12489), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12489), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitetitle] = ACTIONS(12489), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteyear] = ACTIONS(12489), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitedate] = ACTIONS(12489), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteurl] = ACTIONS(12489), + [anon_sym_BSLASHfullcite] = ACTIONS(12489), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12489), + [anon_sym_BSLASHcitealt] = ACTIONS(12489), + [anon_sym_BSLASHcitealp] = ACTIONS(12489), + [anon_sym_BSLASHcitetext] = ACTIONS(12489), + [anon_sym_BSLASHparencite] = ACTIONS(12489), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHParencite] = ACTIONS(12489), + [anon_sym_BSLASHfootcite] = ACTIONS(12489), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12489), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12489), + [anon_sym_BSLASHtextcite] = ACTIONS(12489), + [anon_sym_BSLASHTextcite] = ACTIONS(12489), + [anon_sym_BSLASHsmartcite] = ACTIONS(12489), + [anon_sym_BSLASHSmartcite] = ACTIONS(12489), + [anon_sym_BSLASHsupercite] = ACTIONS(12489), + [anon_sym_BSLASHautocite] = ACTIONS(12489), + [anon_sym_BSLASHAutocite] = ACTIONS(12489), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHvolcite] = ACTIONS(12489), + [anon_sym_BSLASHVolcite] = ACTIONS(12489), + [anon_sym_BSLASHpvolcite] = ACTIONS(12489), + [anon_sym_BSLASHPvolcite] = ACTIONS(12489), + [anon_sym_BSLASHfvolcite] = ACTIONS(12489), + [anon_sym_BSLASHftvolcite] = ACTIONS(12489), + [anon_sym_BSLASHsvolcite] = ACTIONS(12489), + [anon_sym_BSLASHSvolcite] = ACTIONS(12489), + [anon_sym_BSLASHtvolcite] = ACTIONS(12489), + [anon_sym_BSLASHTvolcite] = ACTIONS(12489), + [anon_sym_BSLASHavolcite] = ACTIONS(12489), + [anon_sym_BSLASHAvolcite] = ACTIONS(12489), + [anon_sym_BSLASHnotecite] = ACTIONS(12489), + [anon_sym_BSLASHpnotecite] = ACTIONS(12489), + [anon_sym_BSLASHPnotecite] = ACTIONS(12489), + [anon_sym_BSLASHfnotecite] = ACTIONS(12489), + [anon_sym_BSLASHusepackage] = ACTIONS(12489), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12489), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12489), + [anon_sym_BSLASHinclude] = ACTIONS(12489), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12489), + [anon_sym_BSLASHinput] = ACTIONS(12489), + [anon_sym_BSLASHsubfile] = ACTIONS(12489), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12489), + [anon_sym_BSLASHbibliography] = ACTIONS(12489), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12489), + [anon_sym_BSLASHincludesvg] = ACTIONS(12489), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12489), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12489), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12489), + [anon_sym_BSLASHimport] = ACTIONS(12489), + [anon_sym_BSLASHsubimport] = ACTIONS(12489), + [anon_sym_BSLASHinputfrom] = ACTIONS(12489), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12489), + [anon_sym_BSLASHincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHlabel] = ACTIONS(12489), + [anon_sym_BSLASHref] = ACTIONS(12489), + [anon_sym_BSLASHvref] = ACTIONS(12489), + [anon_sym_BSLASHVref] = ACTIONS(12489), + [anon_sym_BSLASHautoref] = ACTIONS(12489), + [anon_sym_BSLASHpageref] = ACTIONS(12489), + [anon_sym_BSLASHcref] = ACTIONS(12489), + [anon_sym_BSLASHCref] = ACTIONS(12489), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnameCref] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHlabelcref] = ACTIONS(12489), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12489), + [anon_sym_BSLASHeqref] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange] = ACTIONS(12489), + [anon_sym_BSLASHCrefrange] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewlabel] = ACTIONS(12489), + [anon_sym_BSLASHnewcommand] = ACTIONS(12489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12489), + [anon_sym_BSLASHgls] = ACTIONS(12489), + [anon_sym_BSLASHGls] = ACTIONS(12489), + [anon_sym_BSLASHGLS] = ACTIONS(12489), + [anon_sym_BSLASHglspl] = ACTIONS(12489), + [anon_sym_BSLASHGlspl] = ACTIONS(12489), + [anon_sym_BSLASHGLSpl] = ACTIONS(12489), + [anon_sym_BSLASHglsdisp] = ACTIONS(12489), + [anon_sym_BSLASHglslink] = ACTIONS(12489), + [anon_sym_BSLASHglstext] = ACTIONS(12489), + [anon_sym_BSLASHGlstext] = ACTIONS(12489), + [anon_sym_BSLASHGLStext] = ACTIONS(12489), + [anon_sym_BSLASHglsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12489), + [anon_sym_BSLASHglsplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSplural] = ACTIONS(12489), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHglsname] = ACTIONS(12489), + [anon_sym_BSLASHGlsname] = ACTIONS(12489), + [anon_sym_BSLASHGLSname] = ACTIONS(12489), + [anon_sym_BSLASHglssymbol] = ACTIONS(12489), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12489), + [anon_sym_BSLASHglsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12489), + [anon_sym_BSLASHglsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12489), + [anon_sym_BSLASHglsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12489), + [anon_sym_BSLASHglsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12489), + [anon_sym_BSLASHglsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12489), + [anon_sym_BSLASHnewacronym] = ACTIONS(12489), + [anon_sym_BSLASHacrshort] = ACTIONS(12489), + [anon_sym_BSLASHAcrshort] = ACTIONS(12489), + [anon_sym_BSLASHACRshort] = ACTIONS(12489), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12489), + [anon_sym_BSLASHacrlong] = ACTIONS(12489), + [anon_sym_BSLASHAcrlong] = ACTIONS(12489), + [anon_sym_BSLASHACRlong] = ACTIONS(12489), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12489), + [anon_sym_BSLASHacrfull] = ACTIONS(12489), + [anon_sym_BSLASHAcrfull] = ACTIONS(12489), + [anon_sym_BSLASHACRfull] = ACTIONS(12489), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12489), + [anon_sym_BSLASHacs] = ACTIONS(12489), + [anon_sym_BSLASHAcs] = ACTIONS(12489), + [anon_sym_BSLASHacsp] = ACTIONS(12489), + [anon_sym_BSLASHAcsp] = ACTIONS(12489), + [anon_sym_BSLASHacl] = ACTIONS(12489), + [anon_sym_BSLASHAcl] = ACTIONS(12489), + [anon_sym_BSLASHaclp] = ACTIONS(12489), + [anon_sym_BSLASHAclp] = ACTIONS(12489), + [anon_sym_BSLASHacf] = ACTIONS(12489), + [anon_sym_BSLASHAcf] = ACTIONS(12489), + [anon_sym_BSLASHacfp] = ACTIONS(12489), + [anon_sym_BSLASHAcfp] = ACTIONS(12489), + [anon_sym_BSLASHac] = ACTIONS(12489), + [anon_sym_BSLASHAc] = ACTIONS(12489), + [anon_sym_BSLASHacp] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12489), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12489), + [anon_sym_BSLASHcolor] = ACTIONS(12489), + [anon_sym_BSLASHcolorbox] = ACTIONS(12489), + [anon_sym_BSLASHtextcolor] = ACTIONS(12489), + [anon_sym_BSLASHpagecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12489), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12489), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12489), + }, + [1599] = { + [sym_generic_command_name] = ACTIONS(12473), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12473), + [aux_sym_subparagraph_token1] = ACTIONS(12473), + [anon_sym_BSLASHitem] = ACTIONS(12473), + [anon_sym_LBRACK] = ACTIONS(12471), + [anon_sym_RBRACK] = ACTIONS(12471), + [anon_sym_LBRACE] = ACTIONS(12471), + [anon_sym_RBRACE] = ACTIONS(12471), + [anon_sym_LPAREN] = ACTIONS(12471), + [anon_sym_COMMA] = ACTIONS(12471), + [anon_sym_EQ] = ACTIONS(12471), + [sym_word] = ACTIONS(12471), + [sym_param] = ACTIONS(12471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12471), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12471), + [anon_sym_DOLLAR] = ACTIONS(12473), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12471), + [anon_sym_BSLASHbegin] = ACTIONS(12473), + [anon_sym_BSLASHcaption] = ACTIONS(12473), + [anon_sym_BSLASHcite] = ACTIONS(12473), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCite] = ACTIONS(12473), + [anon_sym_BSLASHnocite] = ACTIONS(12473), + [anon_sym_BSLASHcitet] = ACTIONS(12473), + [anon_sym_BSLASHcitep] = ACTIONS(12473), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteauthor] = ACTIONS(12473), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12473), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitetitle] = ACTIONS(12473), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteyear] = ACTIONS(12473), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitedate] = ACTIONS(12473), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteurl] = ACTIONS(12473), + [anon_sym_BSLASHfullcite] = ACTIONS(12473), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12473), + [anon_sym_BSLASHcitealt] = ACTIONS(12473), + [anon_sym_BSLASHcitealp] = ACTIONS(12473), + [anon_sym_BSLASHcitetext] = ACTIONS(12473), + [anon_sym_BSLASHparencite] = ACTIONS(12473), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHParencite] = ACTIONS(12473), + [anon_sym_BSLASHfootcite] = ACTIONS(12473), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12473), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12473), + [anon_sym_BSLASHtextcite] = ACTIONS(12473), + [anon_sym_BSLASHTextcite] = ACTIONS(12473), + [anon_sym_BSLASHsmartcite] = ACTIONS(12473), + [anon_sym_BSLASHSmartcite] = ACTIONS(12473), + [anon_sym_BSLASHsupercite] = ACTIONS(12473), + [anon_sym_BSLASHautocite] = ACTIONS(12473), + [anon_sym_BSLASHAutocite] = ACTIONS(12473), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHvolcite] = ACTIONS(12473), + [anon_sym_BSLASHVolcite] = ACTIONS(12473), + [anon_sym_BSLASHpvolcite] = ACTIONS(12473), + [anon_sym_BSLASHPvolcite] = ACTIONS(12473), + [anon_sym_BSLASHfvolcite] = ACTIONS(12473), + [anon_sym_BSLASHftvolcite] = ACTIONS(12473), + [anon_sym_BSLASHsvolcite] = ACTIONS(12473), + [anon_sym_BSLASHSvolcite] = ACTIONS(12473), + [anon_sym_BSLASHtvolcite] = ACTIONS(12473), + [anon_sym_BSLASHTvolcite] = ACTIONS(12473), + [anon_sym_BSLASHavolcite] = ACTIONS(12473), + [anon_sym_BSLASHAvolcite] = ACTIONS(12473), + [anon_sym_BSLASHnotecite] = ACTIONS(12473), + [anon_sym_BSLASHpnotecite] = ACTIONS(12473), + [anon_sym_BSLASHPnotecite] = ACTIONS(12473), + [anon_sym_BSLASHfnotecite] = ACTIONS(12473), + [anon_sym_BSLASHusepackage] = ACTIONS(12473), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12473), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12473), + [anon_sym_BSLASHinclude] = ACTIONS(12473), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12473), + [anon_sym_BSLASHinput] = ACTIONS(12473), + [anon_sym_BSLASHsubfile] = ACTIONS(12473), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12473), + [anon_sym_BSLASHbibliography] = ACTIONS(12473), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12473), + [anon_sym_BSLASHincludesvg] = ACTIONS(12473), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12473), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12473), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12473), + [anon_sym_BSLASHimport] = ACTIONS(12473), + [anon_sym_BSLASHsubimport] = ACTIONS(12473), + [anon_sym_BSLASHinputfrom] = ACTIONS(12473), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12473), + [anon_sym_BSLASHincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHlabel] = ACTIONS(12473), + [anon_sym_BSLASHref] = ACTIONS(12473), + [anon_sym_BSLASHvref] = ACTIONS(12473), + [anon_sym_BSLASHVref] = ACTIONS(12473), + [anon_sym_BSLASHautoref] = ACTIONS(12473), + [anon_sym_BSLASHpageref] = ACTIONS(12473), + [anon_sym_BSLASHcref] = ACTIONS(12473), + [anon_sym_BSLASHCref] = ACTIONS(12473), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnameCref] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHlabelcref] = ACTIONS(12473), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12473), + [anon_sym_BSLASHeqref] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange] = ACTIONS(12473), + [anon_sym_BSLASHCrefrange] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewlabel] = ACTIONS(12473), + [anon_sym_BSLASHnewcommand] = ACTIONS(12473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12473), + [anon_sym_BSLASHgls] = ACTIONS(12473), + [anon_sym_BSLASHGls] = ACTIONS(12473), + [anon_sym_BSLASHGLS] = ACTIONS(12473), + [anon_sym_BSLASHglspl] = ACTIONS(12473), + [anon_sym_BSLASHGlspl] = ACTIONS(12473), + [anon_sym_BSLASHGLSpl] = ACTIONS(12473), + [anon_sym_BSLASHglsdisp] = ACTIONS(12473), + [anon_sym_BSLASHglslink] = ACTIONS(12473), + [anon_sym_BSLASHglstext] = ACTIONS(12473), + [anon_sym_BSLASHGlstext] = ACTIONS(12473), + [anon_sym_BSLASHGLStext] = ACTIONS(12473), + [anon_sym_BSLASHglsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12473), + [anon_sym_BSLASHglsplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSplural] = ACTIONS(12473), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHglsname] = ACTIONS(12473), + [anon_sym_BSLASHGlsname] = ACTIONS(12473), + [anon_sym_BSLASHGLSname] = ACTIONS(12473), + [anon_sym_BSLASHglssymbol] = ACTIONS(12473), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12473), + [anon_sym_BSLASHglsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12473), + [anon_sym_BSLASHglsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12473), + [anon_sym_BSLASHglsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12473), + [anon_sym_BSLASHglsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12473), + [anon_sym_BSLASHglsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12473), + [anon_sym_BSLASHnewacronym] = ACTIONS(12473), + [anon_sym_BSLASHacrshort] = ACTIONS(12473), + [anon_sym_BSLASHAcrshort] = ACTIONS(12473), + [anon_sym_BSLASHACRshort] = ACTIONS(12473), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12473), + [anon_sym_BSLASHacrlong] = ACTIONS(12473), + [anon_sym_BSLASHAcrlong] = ACTIONS(12473), + [anon_sym_BSLASHACRlong] = ACTIONS(12473), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12473), + [anon_sym_BSLASHacrfull] = ACTIONS(12473), + [anon_sym_BSLASHAcrfull] = ACTIONS(12473), + [anon_sym_BSLASHACRfull] = ACTIONS(12473), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12473), + [anon_sym_BSLASHacs] = ACTIONS(12473), + [anon_sym_BSLASHAcs] = ACTIONS(12473), + [anon_sym_BSLASHacsp] = ACTIONS(12473), + [anon_sym_BSLASHAcsp] = ACTIONS(12473), + [anon_sym_BSLASHacl] = ACTIONS(12473), + [anon_sym_BSLASHAcl] = ACTIONS(12473), + [anon_sym_BSLASHaclp] = ACTIONS(12473), + [anon_sym_BSLASHAclp] = ACTIONS(12473), + [anon_sym_BSLASHacf] = ACTIONS(12473), + [anon_sym_BSLASHAcf] = ACTIONS(12473), + [anon_sym_BSLASHacfp] = ACTIONS(12473), + [anon_sym_BSLASHAcfp] = ACTIONS(12473), + [anon_sym_BSLASHac] = ACTIONS(12473), + [anon_sym_BSLASHAc] = ACTIONS(12473), + [anon_sym_BSLASHacp] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12473), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12473), + [anon_sym_BSLASHcolor] = ACTIONS(12473), + [anon_sym_BSLASHcolorbox] = ACTIONS(12473), + [anon_sym_BSLASHtextcolor] = ACTIONS(12473), + [anon_sym_BSLASHpagecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12473), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12473), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12473), + }, + [1600] = { + [sym_generic_command_name] = ACTIONS(12457), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12457), + [aux_sym_subparagraph_token1] = ACTIONS(12457), + [anon_sym_BSLASHitem] = ACTIONS(12457), + [anon_sym_LBRACK] = ACTIONS(12455), + [anon_sym_RBRACK] = ACTIONS(12455), + [anon_sym_LBRACE] = ACTIONS(12455), + [anon_sym_RBRACE] = ACTIONS(12455), + [anon_sym_LPAREN] = ACTIONS(12455), + [anon_sym_COMMA] = ACTIONS(12455), + [anon_sym_EQ] = ACTIONS(12455), + [sym_word] = ACTIONS(12455), + [sym_param] = ACTIONS(12455), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12455), + [anon_sym_DOLLAR] = ACTIONS(12457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12455), + [anon_sym_BSLASHbegin] = ACTIONS(12457), + [anon_sym_BSLASHcaption] = ACTIONS(12457), + [anon_sym_BSLASHcite] = ACTIONS(12457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCite] = ACTIONS(12457), + [anon_sym_BSLASHnocite] = ACTIONS(12457), + [anon_sym_BSLASHcitet] = ACTIONS(12457), + [anon_sym_BSLASHcitep] = ACTIONS(12457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteauthor] = ACTIONS(12457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitetitle] = ACTIONS(12457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteyear] = ACTIONS(12457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitedate] = ACTIONS(12457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteurl] = ACTIONS(12457), + [anon_sym_BSLASHfullcite] = ACTIONS(12457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12457), + [anon_sym_BSLASHcitealt] = ACTIONS(12457), + [anon_sym_BSLASHcitealp] = ACTIONS(12457), + [anon_sym_BSLASHcitetext] = ACTIONS(12457), + [anon_sym_BSLASHparencite] = ACTIONS(12457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHParencite] = ACTIONS(12457), + [anon_sym_BSLASHfootcite] = ACTIONS(12457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12457), + [anon_sym_BSLASHtextcite] = ACTIONS(12457), + [anon_sym_BSLASHTextcite] = ACTIONS(12457), + [anon_sym_BSLASHsmartcite] = ACTIONS(12457), + [anon_sym_BSLASHSmartcite] = ACTIONS(12457), + [anon_sym_BSLASHsupercite] = ACTIONS(12457), + [anon_sym_BSLASHautocite] = ACTIONS(12457), + [anon_sym_BSLASHAutocite] = ACTIONS(12457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHvolcite] = ACTIONS(12457), + [anon_sym_BSLASHVolcite] = ACTIONS(12457), + [anon_sym_BSLASHpvolcite] = ACTIONS(12457), + [anon_sym_BSLASHPvolcite] = ACTIONS(12457), + [anon_sym_BSLASHfvolcite] = ACTIONS(12457), + [anon_sym_BSLASHftvolcite] = ACTIONS(12457), + [anon_sym_BSLASHsvolcite] = ACTIONS(12457), + [anon_sym_BSLASHSvolcite] = ACTIONS(12457), + [anon_sym_BSLASHtvolcite] = ACTIONS(12457), + [anon_sym_BSLASHTvolcite] = ACTIONS(12457), + [anon_sym_BSLASHavolcite] = ACTIONS(12457), + [anon_sym_BSLASHAvolcite] = ACTIONS(12457), + [anon_sym_BSLASHnotecite] = ACTIONS(12457), + [anon_sym_BSLASHpnotecite] = ACTIONS(12457), + [anon_sym_BSLASHPnotecite] = ACTIONS(12457), + [anon_sym_BSLASHfnotecite] = ACTIONS(12457), + [anon_sym_BSLASHusepackage] = ACTIONS(12457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12457), + [anon_sym_BSLASHinclude] = ACTIONS(12457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12457), + [anon_sym_BSLASHinput] = ACTIONS(12457), + [anon_sym_BSLASHsubfile] = ACTIONS(12457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12457), + [anon_sym_BSLASHbibliography] = ACTIONS(12457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12457), + [anon_sym_BSLASHincludesvg] = ACTIONS(12457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12457), + [anon_sym_BSLASHimport] = ACTIONS(12457), + [anon_sym_BSLASHsubimport] = ACTIONS(12457), + [anon_sym_BSLASHinputfrom] = ACTIONS(12457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12457), + [anon_sym_BSLASHincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHlabel] = ACTIONS(12457), + [anon_sym_BSLASHref] = ACTIONS(12457), + [anon_sym_BSLASHvref] = ACTIONS(12457), + [anon_sym_BSLASHVref] = ACTIONS(12457), + [anon_sym_BSLASHautoref] = ACTIONS(12457), + [anon_sym_BSLASHpageref] = ACTIONS(12457), + [anon_sym_BSLASHcref] = ACTIONS(12457), + [anon_sym_BSLASHCref] = ACTIONS(12457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnameCref] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHlabelcref] = ACTIONS(12457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12457), + [anon_sym_BSLASHeqref] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange] = ACTIONS(12457), + [anon_sym_BSLASHCrefrange] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewlabel] = ACTIONS(12457), + [anon_sym_BSLASHnewcommand] = ACTIONS(12457), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12457), + [anon_sym_BSLASHgls] = ACTIONS(12457), + [anon_sym_BSLASHGls] = ACTIONS(12457), + [anon_sym_BSLASHGLS] = ACTIONS(12457), + [anon_sym_BSLASHglspl] = ACTIONS(12457), + [anon_sym_BSLASHGlspl] = ACTIONS(12457), + [anon_sym_BSLASHGLSpl] = ACTIONS(12457), + [anon_sym_BSLASHglsdisp] = ACTIONS(12457), + [anon_sym_BSLASHglslink] = ACTIONS(12457), + [anon_sym_BSLASHglstext] = ACTIONS(12457), + [anon_sym_BSLASHGlstext] = ACTIONS(12457), + [anon_sym_BSLASHGLStext] = ACTIONS(12457), + [anon_sym_BSLASHglsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12457), + [anon_sym_BSLASHglsplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSplural] = ACTIONS(12457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHglsname] = ACTIONS(12457), + [anon_sym_BSLASHGlsname] = ACTIONS(12457), + [anon_sym_BSLASHGLSname] = ACTIONS(12457), + [anon_sym_BSLASHglssymbol] = ACTIONS(12457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12457), + [anon_sym_BSLASHglsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12457), + [anon_sym_BSLASHglsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12457), + [anon_sym_BSLASHglsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12457), + [anon_sym_BSLASHglsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12457), + [anon_sym_BSLASHglsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12457), + [anon_sym_BSLASHnewacronym] = ACTIONS(12457), + [anon_sym_BSLASHacrshort] = ACTIONS(12457), + [anon_sym_BSLASHAcrshort] = ACTIONS(12457), + [anon_sym_BSLASHACRshort] = ACTIONS(12457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12457), + [anon_sym_BSLASHacrlong] = ACTIONS(12457), + [anon_sym_BSLASHAcrlong] = ACTIONS(12457), + [anon_sym_BSLASHACRlong] = ACTIONS(12457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12457), + [anon_sym_BSLASHacrfull] = ACTIONS(12457), + [anon_sym_BSLASHAcrfull] = ACTIONS(12457), + [anon_sym_BSLASHACRfull] = ACTIONS(12457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12457), + [anon_sym_BSLASHacs] = ACTIONS(12457), + [anon_sym_BSLASHAcs] = ACTIONS(12457), + [anon_sym_BSLASHacsp] = ACTIONS(12457), + [anon_sym_BSLASHAcsp] = ACTIONS(12457), + [anon_sym_BSLASHacl] = ACTIONS(12457), + [anon_sym_BSLASHAcl] = ACTIONS(12457), + [anon_sym_BSLASHaclp] = ACTIONS(12457), + [anon_sym_BSLASHAclp] = ACTIONS(12457), + [anon_sym_BSLASHacf] = ACTIONS(12457), + [anon_sym_BSLASHAcf] = ACTIONS(12457), + [anon_sym_BSLASHacfp] = ACTIONS(12457), + [anon_sym_BSLASHAcfp] = ACTIONS(12457), + [anon_sym_BSLASHac] = ACTIONS(12457), + [anon_sym_BSLASHAc] = ACTIONS(12457), + [anon_sym_BSLASHacp] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12457), + [anon_sym_BSLASHcolor] = ACTIONS(12457), + [anon_sym_BSLASHcolorbox] = ACTIONS(12457), + [anon_sym_BSLASHtextcolor] = ACTIONS(12457), + [anon_sym_BSLASHpagecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12457), + }, + [1601] = { + [sym_generic_command_name] = ACTIONS(12417), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12417), + [aux_sym_subparagraph_token1] = ACTIONS(12417), + [anon_sym_BSLASHitem] = ACTIONS(12417), + [anon_sym_LBRACK] = ACTIONS(12415), + [anon_sym_RBRACK] = ACTIONS(12415), + [anon_sym_LBRACE] = ACTIONS(12415), + [anon_sym_RBRACE] = ACTIONS(12415), + [anon_sym_LPAREN] = ACTIONS(12415), + [anon_sym_COMMA] = ACTIONS(12415), + [anon_sym_EQ] = ACTIONS(12415), + [sym_word] = ACTIONS(12415), + [sym_param] = ACTIONS(12415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12415), + [anon_sym_DOLLAR] = ACTIONS(12417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12415), + [anon_sym_BSLASHbegin] = ACTIONS(12417), + [anon_sym_BSLASHcaption] = ACTIONS(12417), + [anon_sym_BSLASHcite] = ACTIONS(12417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCite] = ACTIONS(12417), + [anon_sym_BSLASHnocite] = ACTIONS(12417), + [anon_sym_BSLASHcitet] = ACTIONS(12417), + [anon_sym_BSLASHcitep] = ACTIONS(12417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteauthor] = ACTIONS(12417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitetitle] = ACTIONS(12417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteyear] = ACTIONS(12417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitedate] = ACTIONS(12417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteurl] = ACTIONS(12417), + [anon_sym_BSLASHfullcite] = ACTIONS(12417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12417), + [anon_sym_BSLASHcitealt] = ACTIONS(12417), + [anon_sym_BSLASHcitealp] = ACTIONS(12417), + [anon_sym_BSLASHcitetext] = ACTIONS(12417), + [anon_sym_BSLASHparencite] = ACTIONS(12417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHParencite] = ACTIONS(12417), + [anon_sym_BSLASHfootcite] = ACTIONS(12417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12417), + [anon_sym_BSLASHtextcite] = ACTIONS(12417), + [anon_sym_BSLASHTextcite] = ACTIONS(12417), + [anon_sym_BSLASHsmartcite] = ACTIONS(12417), + [anon_sym_BSLASHSmartcite] = ACTIONS(12417), + [anon_sym_BSLASHsupercite] = ACTIONS(12417), + [anon_sym_BSLASHautocite] = ACTIONS(12417), + [anon_sym_BSLASHAutocite] = ACTIONS(12417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHvolcite] = ACTIONS(12417), + [anon_sym_BSLASHVolcite] = ACTIONS(12417), + [anon_sym_BSLASHpvolcite] = ACTIONS(12417), + [anon_sym_BSLASHPvolcite] = ACTIONS(12417), + [anon_sym_BSLASHfvolcite] = ACTIONS(12417), + [anon_sym_BSLASHftvolcite] = ACTIONS(12417), + [anon_sym_BSLASHsvolcite] = ACTIONS(12417), + [anon_sym_BSLASHSvolcite] = ACTIONS(12417), + [anon_sym_BSLASHtvolcite] = ACTIONS(12417), + [anon_sym_BSLASHTvolcite] = ACTIONS(12417), + [anon_sym_BSLASHavolcite] = ACTIONS(12417), + [anon_sym_BSLASHAvolcite] = ACTIONS(12417), + [anon_sym_BSLASHnotecite] = ACTIONS(12417), + [anon_sym_BSLASHpnotecite] = ACTIONS(12417), + [anon_sym_BSLASHPnotecite] = ACTIONS(12417), + [anon_sym_BSLASHfnotecite] = ACTIONS(12417), + [anon_sym_BSLASHusepackage] = ACTIONS(12417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12417), + [anon_sym_BSLASHinclude] = ACTIONS(12417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12417), + [anon_sym_BSLASHinput] = ACTIONS(12417), + [anon_sym_BSLASHsubfile] = ACTIONS(12417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12417), + [anon_sym_BSLASHbibliography] = ACTIONS(12417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12417), + [anon_sym_BSLASHincludesvg] = ACTIONS(12417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12417), + [anon_sym_BSLASHimport] = ACTIONS(12417), + [anon_sym_BSLASHsubimport] = ACTIONS(12417), + [anon_sym_BSLASHinputfrom] = ACTIONS(12417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12417), + [anon_sym_BSLASHincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHlabel] = ACTIONS(12417), + [anon_sym_BSLASHref] = ACTIONS(12417), + [anon_sym_BSLASHvref] = ACTIONS(12417), + [anon_sym_BSLASHVref] = ACTIONS(12417), + [anon_sym_BSLASHautoref] = ACTIONS(12417), + [anon_sym_BSLASHpageref] = ACTIONS(12417), + [anon_sym_BSLASHcref] = ACTIONS(12417), + [anon_sym_BSLASHCref] = ACTIONS(12417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnameCref] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHlabelcref] = ACTIONS(12417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12417), + [anon_sym_BSLASHeqref] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange] = ACTIONS(12417), + [anon_sym_BSLASHCrefrange] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewlabel] = ACTIONS(12417), + [anon_sym_BSLASHnewcommand] = ACTIONS(12417), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12417), + [anon_sym_BSLASHgls] = ACTIONS(12417), + [anon_sym_BSLASHGls] = ACTIONS(12417), + [anon_sym_BSLASHGLS] = ACTIONS(12417), + [anon_sym_BSLASHglspl] = ACTIONS(12417), + [anon_sym_BSLASHGlspl] = ACTIONS(12417), + [anon_sym_BSLASHGLSpl] = ACTIONS(12417), + [anon_sym_BSLASHglsdisp] = ACTIONS(12417), + [anon_sym_BSLASHglslink] = ACTIONS(12417), + [anon_sym_BSLASHglstext] = ACTIONS(12417), + [anon_sym_BSLASHGlstext] = ACTIONS(12417), + [anon_sym_BSLASHGLStext] = ACTIONS(12417), + [anon_sym_BSLASHglsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12417), + [anon_sym_BSLASHglsplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSplural] = ACTIONS(12417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHglsname] = ACTIONS(12417), + [anon_sym_BSLASHGlsname] = ACTIONS(12417), + [anon_sym_BSLASHGLSname] = ACTIONS(12417), + [anon_sym_BSLASHglssymbol] = ACTIONS(12417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12417), + [anon_sym_BSLASHglsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12417), + [anon_sym_BSLASHglsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12417), + [anon_sym_BSLASHglsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12417), + [anon_sym_BSLASHglsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12417), + [anon_sym_BSLASHglsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12417), + [anon_sym_BSLASHnewacronym] = ACTIONS(12417), + [anon_sym_BSLASHacrshort] = ACTIONS(12417), + [anon_sym_BSLASHAcrshort] = ACTIONS(12417), + [anon_sym_BSLASHACRshort] = ACTIONS(12417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12417), + [anon_sym_BSLASHacrlong] = ACTIONS(12417), + [anon_sym_BSLASHAcrlong] = ACTIONS(12417), + [anon_sym_BSLASHACRlong] = ACTIONS(12417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12417), + [anon_sym_BSLASHacrfull] = ACTIONS(12417), + [anon_sym_BSLASHAcrfull] = ACTIONS(12417), + [anon_sym_BSLASHACRfull] = ACTIONS(12417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12417), + [anon_sym_BSLASHacs] = ACTIONS(12417), + [anon_sym_BSLASHAcs] = ACTIONS(12417), + [anon_sym_BSLASHacsp] = ACTIONS(12417), + [anon_sym_BSLASHAcsp] = ACTIONS(12417), + [anon_sym_BSLASHacl] = ACTIONS(12417), + [anon_sym_BSLASHAcl] = ACTIONS(12417), + [anon_sym_BSLASHaclp] = ACTIONS(12417), + [anon_sym_BSLASHAclp] = ACTIONS(12417), + [anon_sym_BSLASHacf] = ACTIONS(12417), + [anon_sym_BSLASHAcf] = ACTIONS(12417), + [anon_sym_BSLASHacfp] = ACTIONS(12417), + [anon_sym_BSLASHAcfp] = ACTIONS(12417), + [anon_sym_BSLASHac] = ACTIONS(12417), + [anon_sym_BSLASHAc] = ACTIONS(12417), + [anon_sym_BSLASHacp] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12417), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12417), + [anon_sym_BSLASHcolor] = ACTIONS(12417), + [anon_sym_BSLASHcolorbox] = ACTIONS(12417), + [anon_sym_BSLASHtextcolor] = ACTIONS(12417), + [anon_sym_BSLASHpagecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12417), + }, + [1602] = { + [sym_generic_command_name] = ACTIONS(12389), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12389), + [aux_sym_subparagraph_token1] = ACTIONS(12389), + [anon_sym_BSLASHitem] = ACTIONS(12389), + [anon_sym_LBRACK] = ACTIONS(12387), + [anon_sym_RBRACK] = ACTIONS(12387), + [anon_sym_LBRACE] = ACTIONS(12387), + [anon_sym_RBRACE] = ACTIONS(12387), + [anon_sym_LPAREN] = ACTIONS(12387), + [anon_sym_COMMA] = ACTIONS(12387), + [anon_sym_EQ] = ACTIONS(12387), + [sym_word] = ACTIONS(12387), + [sym_param] = ACTIONS(12387), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12387), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12387), + [anon_sym_DOLLAR] = ACTIONS(12389), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12387), + [anon_sym_BSLASHbegin] = ACTIONS(12389), + [anon_sym_BSLASHcaption] = ACTIONS(12389), + [anon_sym_BSLASHcite] = ACTIONS(12389), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCite] = ACTIONS(12389), + [anon_sym_BSLASHnocite] = ACTIONS(12389), + [anon_sym_BSLASHcitet] = ACTIONS(12389), + [anon_sym_BSLASHcitep] = ACTIONS(12389), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteauthor] = ACTIONS(12389), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12389), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitetitle] = ACTIONS(12389), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteyear] = ACTIONS(12389), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitedate] = ACTIONS(12389), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteurl] = ACTIONS(12389), + [anon_sym_BSLASHfullcite] = ACTIONS(12389), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12389), + [anon_sym_BSLASHcitealt] = ACTIONS(12389), + [anon_sym_BSLASHcitealp] = ACTIONS(12389), + [anon_sym_BSLASHcitetext] = ACTIONS(12389), + [anon_sym_BSLASHparencite] = ACTIONS(12389), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHParencite] = ACTIONS(12389), + [anon_sym_BSLASHfootcite] = ACTIONS(12389), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12389), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12389), + [anon_sym_BSLASHtextcite] = ACTIONS(12389), + [anon_sym_BSLASHTextcite] = ACTIONS(12389), + [anon_sym_BSLASHsmartcite] = ACTIONS(12389), + [anon_sym_BSLASHSmartcite] = ACTIONS(12389), + [anon_sym_BSLASHsupercite] = ACTIONS(12389), + [anon_sym_BSLASHautocite] = ACTIONS(12389), + [anon_sym_BSLASHAutocite] = ACTIONS(12389), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHvolcite] = ACTIONS(12389), + [anon_sym_BSLASHVolcite] = ACTIONS(12389), + [anon_sym_BSLASHpvolcite] = ACTIONS(12389), + [anon_sym_BSLASHPvolcite] = ACTIONS(12389), + [anon_sym_BSLASHfvolcite] = ACTIONS(12389), + [anon_sym_BSLASHftvolcite] = ACTIONS(12389), + [anon_sym_BSLASHsvolcite] = ACTIONS(12389), + [anon_sym_BSLASHSvolcite] = ACTIONS(12389), + [anon_sym_BSLASHtvolcite] = ACTIONS(12389), + [anon_sym_BSLASHTvolcite] = ACTIONS(12389), + [anon_sym_BSLASHavolcite] = ACTIONS(12389), + [anon_sym_BSLASHAvolcite] = ACTIONS(12389), + [anon_sym_BSLASHnotecite] = ACTIONS(12389), + [anon_sym_BSLASHpnotecite] = ACTIONS(12389), + [anon_sym_BSLASHPnotecite] = ACTIONS(12389), + [anon_sym_BSLASHfnotecite] = ACTIONS(12389), + [anon_sym_BSLASHusepackage] = ACTIONS(12389), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12389), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12389), + [anon_sym_BSLASHinclude] = ACTIONS(12389), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12389), + [anon_sym_BSLASHinput] = ACTIONS(12389), + [anon_sym_BSLASHsubfile] = ACTIONS(12389), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12389), + [anon_sym_BSLASHbibliography] = ACTIONS(12389), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12389), + [anon_sym_BSLASHincludesvg] = ACTIONS(12389), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12389), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12389), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12389), + [anon_sym_BSLASHimport] = ACTIONS(12389), + [anon_sym_BSLASHsubimport] = ACTIONS(12389), + [anon_sym_BSLASHinputfrom] = ACTIONS(12389), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12389), + [anon_sym_BSLASHincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHlabel] = ACTIONS(12389), + [anon_sym_BSLASHref] = ACTIONS(12389), + [anon_sym_BSLASHvref] = ACTIONS(12389), + [anon_sym_BSLASHVref] = ACTIONS(12389), + [anon_sym_BSLASHautoref] = ACTIONS(12389), + [anon_sym_BSLASHpageref] = ACTIONS(12389), + [anon_sym_BSLASHcref] = ACTIONS(12389), + [anon_sym_BSLASHCref] = ACTIONS(12389), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnameCref] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHlabelcref] = ACTIONS(12389), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12389), + [anon_sym_BSLASHeqref] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange] = ACTIONS(12389), + [anon_sym_BSLASHCrefrange] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewlabel] = ACTIONS(12389), + [anon_sym_BSLASHnewcommand] = ACTIONS(12389), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12389), + [anon_sym_BSLASHgls] = ACTIONS(12389), + [anon_sym_BSLASHGls] = ACTIONS(12389), + [anon_sym_BSLASHGLS] = ACTIONS(12389), + [anon_sym_BSLASHglspl] = ACTIONS(12389), + [anon_sym_BSLASHGlspl] = ACTIONS(12389), + [anon_sym_BSLASHGLSpl] = ACTIONS(12389), + [anon_sym_BSLASHglsdisp] = ACTIONS(12389), + [anon_sym_BSLASHglslink] = ACTIONS(12389), + [anon_sym_BSLASHglstext] = ACTIONS(12389), + [anon_sym_BSLASHGlstext] = ACTIONS(12389), + [anon_sym_BSLASHGLStext] = ACTIONS(12389), + [anon_sym_BSLASHglsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12389), + [anon_sym_BSLASHglsplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSplural] = ACTIONS(12389), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHglsname] = ACTIONS(12389), + [anon_sym_BSLASHGlsname] = ACTIONS(12389), + [anon_sym_BSLASHGLSname] = ACTIONS(12389), + [anon_sym_BSLASHglssymbol] = ACTIONS(12389), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12389), + [anon_sym_BSLASHglsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12389), + [anon_sym_BSLASHglsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12389), + [anon_sym_BSLASHglsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12389), + [anon_sym_BSLASHglsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12389), + [anon_sym_BSLASHglsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12389), + [anon_sym_BSLASHnewacronym] = ACTIONS(12389), + [anon_sym_BSLASHacrshort] = ACTIONS(12389), + [anon_sym_BSLASHAcrshort] = ACTIONS(12389), + [anon_sym_BSLASHACRshort] = ACTIONS(12389), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12389), + [anon_sym_BSLASHacrlong] = ACTIONS(12389), + [anon_sym_BSLASHAcrlong] = ACTIONS(12389), + [anon_sym_BSLASHACRlong] = ACTIONS(12389), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12389), + [anon_sym_BSLASHacrfull] = ACTIONS(12389), + [anon_sym_BSLASHAcrfull] = ACTIONS(12389), + [anon_sym_BSLASHACRfull] = ACTIONS(12389), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12389), + [anon_sym_BSLASHacs] = ACTIONS(12389), + [anon_sym_BSLASHAcs] = ACTIONS(12389), + [anon_sym_BSLASHacsp] = ACTIONS(12389), + [anon_sym_BSLASHAcsp] = ACTIONS(12389), + [anon_sym_BSLASHacl] = ACTIONS(12389), + [anon_sym_BSLASHAcl] = ACTIONS(12389), + [anon_sym_BSLASHaclp] = ACTIONS(12389), + [anon_sym_BSLASHAclp] = ACTIONS(12389), + [anon_sym_BSLASHacf] = ACTIONS(12389), + [anon_sym_BSLASHAcf] = ACTIONS(12389), + [anon_sym_BSLASHacfp] = ACTIONS(12389), + [anon_sym_BSLASHAcfp] = ACTIONS(12389), + [anon_sym_BSLASHac] = ACTIONS(12389), + [anon_sym_BSLASHAc] = ACTIONS(12389), + [anon_sym_BSLASHacp] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12389), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12389), + [anon_sym_BSLASHcolor] = ACTIONS(12389), + [anon_sym_BSLASHcolorbox] = ACTIONS(12389), + [anon_sym_BSLASHtextcolor] = ACTIONS(12389), + [anon_sym_BSLASHpagecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12389), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12389), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12389), + }, + [1603] = { + [sym_generic_command_name] = ACTIONS(12385), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12385), + [aux_sym_subparagraph_token1] = ACTIONS(12385), + [anon_sym_BSLASHitem] = ACTIONS(12385), + [anon_sym_LBRACK] = ACTIONS(12383), + [anon_sym_RBRACK] = ACTIONS(12383), + [anon_sym_LBRACE] = ACTIONS(12383), + [anon_sym_RBRACE] = ACTIONS(12383), + [anon_sym_LPAREN] = ACTIONS(12383), + [anon_sym_COMMA] = ACTIONS(12383), + [anon_sym_EQ] = ACTIONS(12383), + [sym_word] = ACTIONS(12383), + [sym_param] = ACTIONS(12383), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12383), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12383), + [anon_sym_DOLLAR] = ACTIONS(12385), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12383), + [anon_sym_BSLASHbegin] = ACTIONS(12385), + [anon_sym_BSLASHcaption] = ACTIONS(12385), + [anon_sym_BSLASHcite] = ACTIONS(12385), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCite] = ACTIONS(12385), + [anon_sym_BSLASHnocite] = ACTIONS(12385), + [anon_sym_BSLASHcitet] = ACTIONS(12385), + [anon_sym_BSLASHcitep] = ACTIONS(12385), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteauthor] = ACTIONS(12385), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12385), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitetitle] = ACTIONS(12385), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteyear] = ACTIONS(12385), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitedate] = ACTIONS(12385), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteurl] = ACTIONS(12385), + [anon_sym_BSLASHfullcite] = ACTIONS(12385), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12385), + [anon_sym_BSLASHcitealt] = ACTIONS(12385), + [anon_sym_BSLASHcitealp] = ACTIONS(12385), + [anon_sym_BSLASHcitetext] = ACTIONS(12385), + [anon_sym_BSLASHparencite] = ACTIONS(12385), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHParencite] = ACTIONS(12385), + [anon_sym_BSLASHfootcite] = ACTIONS(12385), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12385), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12385), + [anon_sym_BSLASHtextcite] = ACTIONS(12385), + [anon_sym_BSLASHTextcite] = ACTIONS(12385), + [anon_sym_BSLASHsmartcite] = ACTIONS(12385), + [anon_sym_BSLASHSmartcite] = ACTIONS(12385), + [anon_sym_BSLASHsupercite] = ACTIONS(12385), + [anon_sym_BSLASHautocite] = ACTIONS(12385), + [anon_sym_BSLASHAutocite] = ACTIONS(12385), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHvolcite] = ACTIONS(12385), + [anon_sym_BSLASHVolcite] = ACTIONS(12385), + [anon_sym_BSLASHpvolcite] = ACTIONS(12385), + [anon_sym_BSLASHPvolcite] = ACTIONS(12385), + [anon_sym_BSLASHfvolcite] = ACTIONS(12385), + [anon_sym_BSLASHftvolcite] = ACTIONS(12385), + [anon_sym_BSLASHsvolcite] = ACTIONS(12385), + [anon_sym_BSLASHSvolcite] = ACTIONS(12385), + [anon_sym_BSLASHtvolcite] = ACTIONS(12385), + [anon_sym_BSLASHTvolcite] = ACTIONS(12385), + [anon_sym_BSLASHavolcite] = ACTIONS(12385), + [anon_sym_BSLASHAvolcite] = ACTIONS(12385), + [anon_sym_BSLASHnotecite] = ACTIONS(12385), + [anon_sym_BSLASHpnotecite] = ACTIONS(12385), + [anon_sym_BSLASHPnotecite] = ACTIONS(12385), + [anon_sym_BSLASHfnotecite] = ACTIONS(12385), + [anon_sym_BSLASHusepackage] = ACTIONS(12385), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12385), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12385), + [anon_sym_BSLASHinclude] = ACTIONS(12385), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12385), + [anon_sym_BSLASHinput] = ACTIONS(12385), + [anon_sym_BSLASHsubfile] = ACTIONS(12385), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12385), + [anon_sym_BSLASHbibliography] = ACTIONS(12385), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12385), + [anon_sym_BSLASHincludesvg] = ACTIONS(12385), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12385), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12385), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12385), + [anon_sym_BSLASHimport] = ACTIONS(12385), + [anon_sym_BSLASHsubimport] = ACTIONS(12385), + [anon_sym_BSLASHinputfrom] = ACTIONS(12385), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12385), + [anon_sym_BSLASHincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHlabel] = ACTIONS(12385), + [anon_sym_BSLASHref] = ACTIONS(12385), + [anon_sym_BSLASHvref] = ACTIONS(12385), + [anon_sym_BSLASHVref] = ACTIONS(12385), + [anon_sym_BSLASHautoref] = ACTIONS(12385), + [anon_sym_BSLASHpageref] = ACTIONS(12385), + [anon_sym_BSLASHcref] = ACTIONS(12385), + [anon_sym_BSLASHCref] = ACTIONS(12385), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnameCref] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHlabelcref] = ACTIONS(12385), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12385), + [anon_sym_BSLASHeqref] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange] = ACTIONS(12385), + [anon_sym_BSLASHCrefrange] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewlabel] = ACTIONS(12385), + [anon_sym_BSLASHnewcommand] = ACTIONS(12385), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12385), + [anon_sym_BSLASHgls] = ACTIONS(12385), + [anon_sym_BSLASHGls] = ACTIONS(12385), + [anon_sym_BSLASHGLS] = ACTIONS(12385), + [anon_sym_BSLASHglspl] = ACTIONS(12385), + [anon_sym_BSLASHGlspl] = ACTIONS(12385), + [anon_sym_BSLASHGLSpl] = ACTIONS(12385), + [anon_sym_BSLASHglsdisp] = ACTIONS(12385), + [anon_sym_BSLASHglslink] = ACTIONS(12385), + [anon_sym_BSLASHglstext] = ACTIONS(12385), + [anon_sym_BSLASHGlstext] = ACTIONS(12385), + [anon_sym_BSLASHGLStext] = ACTIONS(12385), + [anon_sym_BSLASHglsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12385), + [anon_sym_BSLASHglsplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSplural] = ACTIONS(12385), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHglsname] = ACTIONS(12385), + [anon_sym_BSLASHGlsname] = ACTIONS(12385), + [anon_sym_BSLASHGLSname] = ACTIONS(12385), + [anon_sym_BSLASHglssymbol] = ACTIONS(12385), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12385), + [anon_sym_BSLASHglsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12385), + [anon_sym_BSLASHglsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12385), + [anon_sym_BSLASHglsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12385), + [anon_sym_BSLASHglsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12385), + [anon_sym_BSLASHglsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12385), + [anon_sym_BSLASHnewacronym] = ACTIONS(12385), + [anon_sym_BSLASHacrshort] = ACTIONS(12385), + [anon_sym_BSLASHAcrshort] = ACTIONS(12385), + [anon_sym_BSLASHACRshort] = ACTIONS(12385), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12385), + [anon_sym_BSLASHacrlong] = ACTIONS(12385), + [anon_sym_BSLASHAcrlong] = ACTIONS(12385), + [anon_sym_BSLASHACRlong] = ACTIONS(12385), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12385), + [anon_sym_BSLASHacrfull] = ACTIONS(12385), + [anon_sym_BSLASHAcrfull] = ACTIONS(12385), + [anon_sym_BSLASHACRfull] = ACTIONS(12385), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12385), + [anon_sym_BSLASHacs] = ACTIONS(12385), + [anon_sym_BSLASHAcs] = ACTIONS(12385), + [anon_sym_BSLASHacsp] = ACTIONS(12385), + [anon_sym_BSLASHAcsp] = ACTIONS(12385), + [anon_sym_BSLASHacl] = ACTIONS(12385), + [anon_sym_BSLASHAcl] = ACTIONS(12385), + [anon_sym_BSLASHaclp] = ACTIONS(12385), + [anon_sym_BSLASHAclp] = ACTIONS(12385), + [anon_sym_BSLASHacf] = ACTIONS(12385), + [anon_sym_BSLASHAcf] = ACTIONS(12385), + [anon_sym_BSLASHacfp] = ACTIONS(12385), + [anon_sym_BSLASHAcfp] = ACTIONS(12385), + [anon_sym_BSLASHac] = ACTIONS(12385), + [anon_sym_BSLASHAc] = ACTIONS(12385), + [anon_sym_BSLASHacp] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12385), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12385), + [anon_sym_BSLASHcolor] = ACTIONS(12385), + [anon_sym_BSLASHcolorbox] = ACTIONS(12385), + [anon_sym_BSLASHtextcolor] = ACTIONS(12385), + [anon_sym_BSLASHpagecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12385), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12385), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12385), + }, + [1604] = { + [sym_generic_command_name] = ACTIONS(12365), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12365), + [aux_sym_subparagraph_token1] = ACTIONS(12365), + [anon_sym_BSLASHitem] = ACTIONS(12365), + [anon_sym_LBRACK] = ACTIONS(12363), + [anon_sym_RBRACK] = ACTIONS(12363), + [anon_sym_LBRACE] = ACTIONS(12363), + [anon_sym_RBRACE] = ACTIONS(12363), + [anon_sym_LPAREN] = ACTIONS(12363), + [anon_sym_COMMA] = ACTIONS(12363), + [anon_sym_EQ] = ACTIONS(12363), + [sym_word] = ACTIONS(12363), + [sym_param] = ACTIONS(12363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12363), + [anon_sym_DOLLAR] = ACTIONS(12365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12363), + [anon_sym_BSLASHbegin] = ACTIONS(12365), + [anon_sym_BSLASHcaption] = ACTIONS(12365), + [anon_sym_BSLASHcite] = ACTIONS(12365), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCite] = ACTIONS(12365), + [anon_sym_BSLASHnocite] = ACTIONS(12365), + [anon_sym_BSLASHcitet] = ACTIONS(12365), + [anon_sym_BSLASHcitep] = ACTIONS(12365), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteauthor] = ACTIONS(12365), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12365), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitetitle] = ACTIONS(12365), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteyear] = ACTIONS(12365), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitedate] = ACTIONS(12365), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteurl] = ACTIONS(12365), + [anon_sym_BSLASHfullcite] = ACTIONS(12365), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12365), + [anon_sym_BSLASHcitealt] = ACTIONS(12365), + [anon_sym_BSLASHcitealp] = ACTIONS(12365), + [anon_sym_BSLASHcitetext] = ACTIONS(12365), + [anon_sym_BSLASHparencite] = ACTIONS(12365), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHParencite] = ACTIONS(12365), + [anon_sym_BSLASHfootcite] = ACTIONS(12365), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12365), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12365), + [anon_sym_BSLASHtextcite] = ACTIONS(12365), + [anon_sym_BSLASHTextcite] = ACTIONS(12365), + [anon_sym_BSLASHsmartcite] = ACTIONS(12365), + [anon_sym_BSLASHSmartcite] = ACTIONS(12365), + [anon_sym_BSLASHsupercite] = ACTIONS(12365), + [anon_sym_BSLASHautocite] = ACTIONS(12365), + [anon_sym_BSLASHAutocite] = ACTIONS(12365), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHvolcite] = ACTIONS(12365), + [anon_sym_BSLASHVolcite] = ACTIONS(12365), + [anon_sym_BSLASHpvolcite] = ACTIONS(12365), + [anon_sym_BSLASHPvolcite] = ACTIONS(12365), + [anon_sym_BSLASHfvolcite] = ACTIONS(12365), + [anon_sym_BSLASHftvolcite] = ACTIONS(12365), + [anon_sym_BSLASHsvolcite] = ACTIONS(12365), + [anon_sym_BSLASHSvolcite] = ACTIONS(12365), + [anon_sym_BSLASHtvolcite] = ACTIONS(12365), + [anon_sym_BSLASHTvolcite] = ACTIONS(12365), + [anon_sym_BSLASHavolcite] = ACTIONS(12365), + [anon_sym_BSLASHAvolcite] = ACTIONS(12365), + [anon_sym_BSLASHnotecite] = ACTIONS(12365), + [anon_sym_BSLASHpnotecite] = ACTIONS(12365), + [anon_sym_BSLASHPnotecite] = ACTIONS(12365), + [anon_sym_BSLASHfnotecite] = ACTIONS(12365), + [anon_sym_BSLASHusepackage] = ACTIONS(12365), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12365), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12365), + [anon_sym_BSLASHinclude] = ACTIONS(12365), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12365), + [anon_sym_BSLASHinput] = ACTIONS(12365), + [anon_sym_BSLASHsubfile] = ACTIONS(12365), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12365), + [anon_sym_BSLASHbibliography] = ACTIONS(12365), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12365), + [anon_sym_BSLASHincludesvg] = ACTIONS(12365), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12365), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12365), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12365), + [anon_sym_BSLASHimport] = ACTIONS(12365), + [anon_sym_BSLASHsubimport] = ACTIONS(12365), + [anon_sym_BSLASHinputfrom] = ACTIONS(12365), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12365), + [anon_sym_BSLASHincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHlabel] = ACTIONS(12365), + [anon_sym_BSLASHref] = ACTIONS(12365), + [anon_sym_BSLASHvref] = ACTIONS(12365), + [anon_sym_BSLASHVref] = ACTIONS(12365), + [anon_sym_BSLASHautoref] = ACTIONS(12365), + [anon_sym_BSLASHpageref] = ACTIONS(12365), + [anon_sym_BSLASHcref] = ACTIONS(12365), + [anon_sym_BSLASHCref] = ACTIONS(12365), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnameCref] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHlabelcref] = ACTIONS(12365), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12365), + [anon_sym_BSLASHeqref] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange] = ACTIONS(12365), + [anon_sym_BSLASHCrefrange] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewlabel] = ACTIONS(12365), + [anon_sym_BSLASHnewcommand] = ACTIONS(12365), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12365), + [anon_sym_BSLASHgls] = ACTIONS(12365), + [anon_sym_BSLASHGls] = ACTIONS(12365), + [anon_sym_BSLASHGLS] = ACTIONS(12365), + [anon_sym_BSLASHglspl] = ACTIONS(12365), + [anon_sym_BSLASHGlspl] = ACTIONS(12365), + [anon_sym_BSLASHGLSpl] = ACTIONS(12365), + [anon_sym_BSLASHglsdisp] = ACTIONS(12365), + [anon_sym_BSLASHglslink] = ACTIONS(12365), + [anon_sym_BSLASHglstext] = ACTIONS(12365), + [anon_sym_BSLASHGlstext] = ACTIONS(12365), + [anon_sym_BSLASHGLStext] = ACTIONS(12365), + [anon_sym_BSLASHglsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12365), + [anon_sym_BSLASHglsplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSplural] = ACTIONS(12365), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHglsname] = ACTIONS(12365), + [anon_sym_BSLASHGlsname] = ACTIONS(12365), + [anon_sym_BSLASHGLSname] = ACTIONS(12365), + [anon_sym_BSLASHglssymbol] = ACTIONS(12365), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12365), + [anon_sym_BSLASHglsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12365), + [anon_sym_BSLASHglsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12365), + [anon_sym_BSLASHglsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12365), + [anon_sym_BSLASHglsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12365), + [anon_sym_BSLASHglsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12365), + [anon_sym_BSLASHnewacronym] = ACTIONS(12365), + [anon_sym_BSLASHacrshort] = ACTIONS(12365), + [anon_sym_BSLASHAcrshort] = ACTIONS(12365), + [anon_sym_BSLASHACRshort] = ACTIONS(12365), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12365), + [anon_sym_BSLASHacrlong] = ACTIONS(12365), + [anon_sym_BSLASHAcrlong] = ACTIONS(12365), + [anon_sym_BSLASHACRlong] = ACTIONS(12365), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12365), + [anon_sym_BSLASHacrfull] = ACTIONS(12365), + [anon_sym_BSLASHAcrfull] = ACTIONS(12365), + [anon_sym_BSLASHACRfull] = ACTIONS(12365), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12365), + [anon_sym_BSLASHacs] = ACTIONS(12365), + [anon_sym_BSLASHAcs] = ACTIONS(12365), + [anon_sym_BSLASHacsp] = ACTIONS(12365), + [anon_sym_BSLASHAcsp] = ACTIONS(12365), + [anon_sym_BSLASHacl] = ACTIONS(12365), + [anon_sym_BSLASHAcl] = ACTIONS(12365), + [anon_sym_BSLASHaclp] = ACTIONS(12365), + [anon_sym_BSLASHAclp] = ACTIONS(12365), + [anon_sym_BSLASHacf] = ACTIONS(12365), + [anon_sym_BSLASHAcf] = ACTIONS(12365), + [anon_sym_BSLASHacfp] = ACTIONS(12365), + [anon_sym_BSLASHAcfp] = ACTIONS(12365), + [anon_sym_BSLASHac] = ACTIONS(12365), + [anon_sym_BSLASHAc] = ACTIONS(12365), + [anon_sym_BSLASHacp] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12365), + [anon_sym_BSLASHcolor] = ACTIONS(12365), + [anon_sym_BSLASHcolorbox] = ACTIONS(12365), + [anon_sym_BSLASHtextcolor] = ACTIONS(12365), + [anon_sym_BSLASHpagecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12365), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12365), + }, + [1605] = { + [sym_generic_command_name] = ACTIONS(12231), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12231), + [aux_sym_subparagraph_token1] = ACTIONS(12231), + [anon_sym_BSLASHitem] = ACTIONS(12231), + [anon_sym_LBRACK] = ACTIONS(12229), + [anon_sym_RBRACK] = ACTIONS(12229), + [anon_sym_LBRACE] = ACTIONS(12229), + [anon_sym_RBRACE] = ACTIONS(12229), + [anon_sym_LPAREN] = ACTIONS(12229), + [anon_sym_COMMA] = ACTIONS(12229), + [anon_sym_EQ] = ACTIONS(12229), + [sym_word] = ACTIONS(12229), + [sym_param] = ACTIONS(12229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12229), + [anon_sym_DOLLAR] = ACTIONS(12231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12229), + [anon_sym_BSLASHbegin] = ACTIONS(12231), + [anon_sym_BSLASHcaption] = ACTIONS(12231), + [anon_sym_BSLASHcite] = ACTIONS(12231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCite] = ACTIONS(12231), + [anon_sym_BSLASHnocite] = ACTIONS(12231), + [anon_sym_BSLASHcitet] = ACTIONS(12231), + [anon_sym_BSLASHcitep] = ACTIONS(12231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteauthor] = ACTIONS(12231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitetitle] = ACTIONS(12231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteyear] = ACTIONS(12231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitedate] = ACTIONS(12231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteurl] = ACTIONS(12231), + [anon_sym_BSLASHfullcite] = ACTIONS(12231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12231), + [anon_sym_BSLASHcitealt] = ACTIONS(12231), + [anon_sym_BSLASHcitealp] = ACTIONS(12231), + [anon_sym_BSLASHcitetext] = ACTIONS(12231), + [anon_sym_BSLASHparencite] = ACTIONS(12231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHParencite] = ACTIONS(12231), + [anon_sym_BSLASHfootcite] = ACTIONS(12231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12231), + [anon_sym_BSLASHtextcite] = ACTIONS(12231), + [anon_sym_BSLASHTextcite] = ACTIONS(12231), + [anon_sym_BSLASHsmartcite] = ACTIONS(12231), + [anon_sym_BSLASHSmartcite] = ACTIONS(12231), + [anon_sym_BSLASHsupercite] = ACTIONS(12231), + [anon_sym_BSLASHautocite] = ACTIONS(12231), + [anon_sym_BSLASHAutocite] = ACTIONS(12231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHvolcite] = ACTIONS(12231), + [anon_sym_BSLASHVolcite] = ACTIONS(12231), + [anon_sym_BSLASHpvolcite] = ACTIONS(12231), + [anon_sym_BSLASHPvolcite] = ACTIONS(12231), + [anon_sym_BSLASHfvolcite] = ACTIONS(12231), + [anon_sym_BSLASHftvolcite] = ACTIONS(12231), + [anon_sym_BSLASHsvolcite] = ACTIONS(12231), + [anon_sym_BSLASHSvolcite] = ACTIONS(12231), + [anon_sym_BSLASHtvolcite] = ACTIONS(12231), + [anon_sym_BSLASHTvolcite] = ACTIONS(12231), + [anon_sym_BSLASHavolcite] = ACTIONS(12231), + [anon_sym_BSLASHAvolcite] = ACTIONS(12231), + [anon_sym_BSLASHnotecite] = ACTIONS(12231), + [anon_sym_BSLASHpnotecite] = ACTIONS(12231), + [anon_sym_BSLASHPnotecite] = ACTIONS(12231), + [anon_sym_BSLASHfnotecite] = ACTIONS(12231), + [anon_sym_BSLASHusepackage] = ACTIONS(12231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12231), + [anon_sym_BSLASHinclude] = ACTIONS(12231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12231), + [anon_sym_BSLASHinput] = ACTIONS(12231), + [anon_sym_BSLASHsubfile] = ACTIONS(12231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12231), + [anon_sym_BSLASHbibliography] = ACTIONS(12231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12231), + [anon_sym_BSLASHincludesvg] = ACTIONS(12231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12231), + [anon_sym_BSLASHimport] = ACTIONS(12231), + [anon_sym_BSLASHsubimport] = ACTIONS(12231), + [anon_sym_BSLASHinputfrom] = ACTIONS(12231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12231), + [anon_sym_BSLASHincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHlabel] = ACTIONS(12231), + [anon_sym_BSLASHref] = ACTIONS(12231), + [anon_sym_BSLASHvref] = ACTIONS(12231), + [anon_sym_BSLASHVref] = ACTIONS(12231), + [anon_sym_BSLASHautoref] = ACTIONS(12231), + [anon_sym_BSLASHpageref] = ACTIONS(12231), + [anon_sym_BSLASHcref] = ACTIONS(12231), + [anon_sym_BSLASHCref] = ACTIONS(12231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnameCref] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHlabelcref] = ACTIONS(12231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12231), + [anon_sym_BSLASHeqref] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange] = ACTIONS(12231), + [anon_sym_BSLASHCrefrange] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewlabel] = ACTIONS(12231), + [anon_sym_BSLASHnewcommand] = ACTIONS(12231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12231), + [anon_sym_BSLASHgls] = ACTIONS(12231), + [anon_sym_BSLASHGls] = ACTIONS(12231), + [anon_sym_BSLASHGLS] = ACTIONS(12231), + [anon_sym_BSLASHglspl] = ACTIONS(12231), + [anon_sym_BSLASHGlspl] = ACTIONS(12231), + [anon_sym_BSLASHGLSpl] = ACTIONS(12231), + [anon_sym_BSLASHglsdisp] = ACTIONS(12231), + [anon_sym_BSLASHglslink] = ACTIONS(12231), + [anon_sym_BSLASHglstext] = ACTIONS(12231), + [anon_sym_BSLASHGlstext] = ACTIONS(12231), + [anon_sym_BSLASHGLStext] = ACTIONS(12231), + [anon_sym_BSLASHglsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12231), + [anon_sym_BSLASHglsplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSplural] = ACTIONS(12231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHglsname] = ACTIONS(12231), + [anon_sym_BSLASHGlsname] = ACTIONS(12231), + [anon_sym_BSLASHGLSname] = ACTIONS(12231), + [anon_sym_BSLASHglssymbol] = ACTIONS(12231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12231), + [anon_sym_BSLASHglsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12231), + [anon_sym_BSLASHglsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12231), + [anon_sym_BSLASHglsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12231), + [anon_sym_BSLASHglsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12231), + [anon_sym_BSLASHglsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12231), + [anon_sym_BSLASHnewacronym] = ACTIONS(12231), + [anon_sym_BSLASHacrshort] = ACTIONS(12231), + [anon_sym_BSLASHAcrshort] = ACTIONS(12231), + [anon_sym_BSLASHACRshort] = ACTIONS(12231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12231), + [anon_sym_BSLASHacrlong] = ACTIONS(12231), + [anon_sym_BSLASHAcrlong] = ACTIONS(12231), + [anon_sym_BSLASHACRlong] = ACTIONS(12231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12231), + [anon_sym_BSLASHacrfull] = ACTIONS(12231), + [anon_sym_BSLASHAcrfull] = ACTIONS(12231), + [anon_sym_BSLASHACRfull] = ACTIONS(12231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12231), + [anon_sym_BSLASHacs] = ACTIONS(12231), + [anon_sym_BSLASHAcs] = ACTIONS(12231), + [anon_sym_BSLASHacsp] = ACTIONS(12231), + [anon_sym_BSLASHAcsp] = ACTIONS(12231), + [anon_sym_BSLASHacl] = ACTIONS(12231), + [anon_sym_BSLASHAcl] = ACTIONS(12231), + [anon_sym_BSLASHaclp] = ACTIONS(12231), + [anon_sym_BSLASHAclp] = ACTIONS(12231), + [anon_sym_BSLASHacf] = ACTIONS(12231), + [anon_sym_BSLASHAcf] = ACTIONS(12231), + [anon_sym_BSLASHacfp] = ACTIONS(12231), + [anon_sym_BSLASHAcfp] = ACTIONS(12231), + [anon_sym_BSLASHac] = ACTIONS(12231), + [anon_sym_BSLASHAc] = ACTIONS(12231), + [anon_sym_BSLASHacp] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12231), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12231), + [anon_sym_BSLASHcolor] = ACTIONS(12231), + [anon_sym_BSLASHcolorbox] = ACTIONS(12231), + [anon_sym_BSLASHtextcolor] = ACTIONS(12231), + [anon_sym_BSLASHpagecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12231), + }, + [1606] = { + [sym_generic_command_name] = ACTIONS(12345), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12345), + [aux_sym_subparagraph_token1] = ACTIONS(12345), + [anon_sym_BSLASHitem] = ACTIONS(12345), + [anon_sym_LBRACK] = ACTIONS(12343), + [anon_sym_RBRACK] = ACTIONS(12343), + [anon_sym_LBRACE] = ACTIONS(12343), + [anon_sym_RBRACE] = ACTIONS(12343), + [anon_sym_LPAREN] = ACTIONS(12343), + [anon_sym_COMMA] = ACTIONS(12343), + [anon_sym_EQ] = ACTIONS(12343), + [sym_word] = ACTIONS(12343), + [sym_param] = ACTIONS(12343), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12343), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12343), + [anon_sym_DOLLAR] = ACTIONS(12345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12343), + [anon_sym_BSLASHbegin] = ACTIONS(12345), + [anon_sym_BSLASHcaption] = ACTIONS(12345), + [anon_sym_BSLASHcite] = ACTIONS(12345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCite] = ACTIONS(12345), + [anon_sym_BSLASHnocite] = ACTIONS(12345), + [anon_sym_BSLASHcitet] = ACTIONS(12345), + [anon_sym_BSLASHcitep] = ACTIONS(12345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteauthor] = ACTIONS(12345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitetitle] = ACTIONS(12345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteyear] = ACTIONS(12345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitedate] = ACTIONS(12345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteurl] = ACTIONS(12345), + [anon_sym_BSLASHfullcite] = ACTIONS(12345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12345), + [anon_sym_BSLASHcitealt] = ACTIONS(12345), + [anon_sym_BSLASHcitealp] = ACTIONS(12345), + [anon_sym_BSLASHcitetext] = ACTIONS(12345), + [anon_sym_BSLASHparencite] = ACTIONS(12345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHParencite] = ACTIONS(12345), + [anon_sym_BSLASHfootcite] = ACTIONS(12345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12345), + [anon_sym_BSLASHtextcite] = ACTIONS(12345), + [anon_sym_BSLASHTextcite] = ACTIONS(12345), + [anon_sym_BSLASHsmartcite] = ACTIONS(12345), + [anon_sym_BSLASHSmartcite] = ACTIONS(12345), + [anon_sym_BSLASHsupercite] = ACTIONS(12345), + [anon_sym_BSLASHautocite] = ACTIONS(12345), + [anon_sym_BSLASHAutocite] = ACTIONS(12345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHvolcite] = ACTIONS(12345), + [anon_sym_BSLASHVolcite] = ACTIONS(12345), + [anon_sym_BSLASHpvolcite] = ACTIONS(12345), + [anon_sym_BSLASHPvolcite] = ACTIONS(12345), + [anon_sym_BSLASHfvolcite] = ACTIONS(12345), + [anon_sym_BSLASHftvolcite] = ACTIONS(12345), + [anon_sym_BSLASHsvolcite] = ACTIONS(12345), + [anon_sym_BSLASHSvolcite] = ACTIONS(12345), + [anon_sym_BSLASHtvolcite] = ACTIONS(12345), + [anon_sym_BSLASHTvolcite] = ACTIONS(12345), + [anon_sym_BSLASHavolcite] = ACTIONS(12345), + [anon_sym_BSLASHAvolcite] = ACTIONS(12345), + [anon_sym_BSLASHnotecite] = ACTIONS(12345), + [anon_sym_BSLASHpnotecite] = ACTIONS(12345), + [anon_sym_BSLASHPnotecite] = ACTIONS(12345), + [anon_sym_BSLASHfnotecite] = ACTIONS(12345), + [anon_sym_BSLASHusepackage] = ACTIONS(12345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12345), + [anon_sym_BSLASHinclude] = ACTIONS(12345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12345), + [anon_sym_BSLASHinput] = ACTIONS(12345), + [anon_sym_BSLASHsubfile] = ACTIONS(12345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12345), + [anon_sym_BSLASHbibliography] = ACTIONS(12345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12345), + [anon_sym_BSLASHincludesvg] = ACTIONS(12345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12345), + [anon_sym_BSLASHimport] = ACTIONS(12345), + [anon_sym_BSLASHsubimport] = ACTIONS(12345), + [anon_sym_BSLASHinputfrom] = ACTIONS(12345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12345), + [anon_sym_BSLASHincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHlabel] = ACTIONS(12345), + [anon_sym_BSLASHref] = ACTIONS(12345), + [anon_sym_BSLASHvref] = ACTIONS(12345), + [anon_sym_BSLASHVref] = ACTIONS(12345), + [anon_sym_BSLASHautoref] = ACTIONS(12345), + [anon_sym_BSLASHpageref] = ACTIONS(12345), + [anon_sym_BSLASHcref] = ACTIONS(12345), + [anon_sym_BSLASHCref] = ACTIONS(12345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnameCref] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHlabelcref] = ACTIONS(12345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12345), + [anon_sym_BSLASHeqref] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange] = ACTIONS(12345), + [anon_sym_BSLASHCrefrange] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewlabel] = ACTIONS(12345), + [anon_sym_BSLASHnewcommand] = ACTIONS(12345), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12345), + [anon_sym_BSLASHgls] = ACTIONS(12345), + [anon_sym_BSLASHGls] = ACTIONS(12345), + [anon_sym_BSLASHGLS] = ACTIONS(12345), + [anon_sym_BSLASHglspl] = ACTIONS(12345), + [anon_sym_BSLASHGlspl] = ACTIONS(12345), + [anon_sym_BSLASHGLSpl] = ACTIONS(12345), + [anon_sym_BSLASHglsdisp] = ACTIONS(12345), + [anon_sym_BSLASHglslink] = ACTIONS(12345), + [anon_sym_BSLASHglstext] = ACTIONS(12345), + [anon_sym_BSLASHGlstext] = ACTIONS(12345), + [anon_sym_BSLASHGLStext] = ACTIONS(12345), + [anon_sym_BSLASHglsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12345), + [anon_sym_BSLASHglsplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSplural] = ACTIONS(12345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHglsname] = ACTIONS(12345), + [anon_sym_BSLASHGlsname] = ACTIONS(12345), + [anon_sym_BSLASHGLSname] = ACTIONS(12345), + [anon_sym_BSLASHglssymbol] = ACTIONS(12345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12345), + [anon_sym_BSLASHglsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12345), + [anon_sym_BSLASHglsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12345), + [anon_sym_BSLASHglsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12345), + [anon_sym_BSLASHglsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12345), + [anon_sym_BSLASHglsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12345), + [anon_sym_BSLASHnewacronym] = ACTIONS(12345), + [anon_sym_BSLASHacrshort] = ACTIONS(12345), + [anon_sym_BSLASHAcrshort] = ACTIONS(12345), + [anon_sym_BSLASHACRshort] = ACTIONS(12345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12345), + [anon_sym_BSLASHacrlong] = ACTIONS(12345), + [anon_sym_BSLASHAcrlong] = ACTIONS(12345), + [anon_sym_BSLASHACRlong] = ACTIONS(12345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12345), + [anon_sym_BSLASHacrfull] = ACTIONS(12345), + [anon_sym_BSLASHAcrfull] = ACTIONS(12345), + [anon_sym_BSLASHACRfull] = ACTIONS(12345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12345), + [anon_sym_BSLASHacs] = ACTIONS(12345), + [anon_sym_BSLASHAcs] = ACTIONS(12345), + [anon_sym_BSLASHacsp] = ACTIONS(12345), + [anon_sym_BSLASHAcsp] = ACTIONS(12345), + [anon_sym_BSLASHacl] = ACTIONS(12345), + [anon_sym_BSLASHAcl] = ACTIONS(12345), + [anon_sym_BSLASHaclp] = ACTIONS(12345), + [anon_sym_BSLASHAclp] = ACTIONS(12345), + [anon_sym_BSLASHacf] = ACTIONS(12345), + [anon_sym_BSLASHAcf] = ACTIONS(12345), + [anon_sym_BSLASHacfp] = ACTIONS(12345), + [anon_sym_BSLASHAcfp] = ACTIONS(12345), + [anon_sym_BSLASHac] = ACTIONS(12345), + [anon_sym_BSLASHAc] = ACTIONS(12345), + [anon_sym_BSLASHacp] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12345), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12345), + [anon_sym_BSLASHcolor] = ACTIONS(12345), + [anon_sym_BSLASHcolorbox] = ACTIONS(12345), + [anon_sym_BSLASHtextcolor] = ACTIONS(12345), + [anon_sym_BSLASHpagecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12345), + }, + [1607] = { + [sym_generic_command_name] = ACTIONS(12331), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12331), + [aux_sym_subparagraph_token1] = ACTIONS(12331), + [anon_sym_BSLASHitem] = ACTIONS(12331), + [anon_sym_LBRACK] = ACTIONS(12329), + [anon_sym_RBRACK] = ACTIONS(12329), + [anon_sym_LBRACE] = ACTIONS(12329), + [anon_sym_RBRACE] = ACTIONS(12329), + [anon_sym_LPAREN] = ACTIONS(12329), + [anon_sym_COMMA] = ACTIONS(12329), + [anon_sym_EQ] = ACTIONS(12329), + [sym_word] = ACTIONS(12329), + [sym_param] = ACTIONS(12329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12329), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12329), + [anon_sym_DOLLAR] = ACTIONS(12331), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12329), + [anon_sym_BSLASHbegin] = ACTIONS(12331), + [anon_sym_BSLASHcaption] = ACTIONS(12331), + [anon_sym_BSLASHcite] = ACTIONS(12331), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCite] = ACTIONS(12331), + [anon_sym_BSLASHnocite] = ACTIONS(12331), + [anon_sym_BSLASHcitet] = ACTIONS(12331), + [anon_sym_BSLASHcitep] = ACTIONS(12331), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteauthor] = ACTIONS(12331), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12331), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitetitle] = ACTIONS(12331), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteyear] = ACTIONS(12331), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitedate] = ACTIONS(12331), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteurl] = ACTIONS(12331), + [anon_sym_BSLASHfullcite] = ACTIONS(12331), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12331), + [anon_sym_BSLASHcitealt] = ACTIONS(12331), + [anon_sym_BSLASHcitealp] = ACTIONS(12331), + [anon_sym_BSLASHcitetext] = ACTIONS(12331), + [anon_sym_BSLASHparencite] = ACTIONS(12331), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHParencite] = ACTIONS(12331), + [anon_sym_BSLASHfootcite] = ACTIONS(12331), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12331), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12331), + [anon_sym_BSLASHtextcite] = ACTIONS(12331), + [anon_sym_BSLASHTextcite] = ACTIONS(12331), + [anon_sym_BSLASHsmartcite] = ACTIONS(12331), + [anon_sym_BSLASHSmartcite] = ACTIONS(12331), + [anon_sym_BSLASHsupercite] = ACTIONS(12331), + [anon_sym_BSLASHautocite] = ACTIONS(12331), + [anon_sym_BSLASHAutocite] = ACTIONS(12331), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHvolcite] = ACTIONS(12331), + [anon_sym_BSLASHVolcite] = ACTIONS(12331), + [anon_sym_BSLASHpvolcite] = ACTIONS(12331), + [anon_sym_BSLASHPvolcite] = ACTIONS(12331), + [anon_sym_BSLASHfvolcite] = ACTIONS(12331), + [anon_sym_BSLASHftvolcite] = ACTIONS(12331), + [anon_sym_BSLASHsvolcite] = ACTIONS(12331), + [anon_sym_BSLASHSvolcite] = ACTIONS(12331), + [anon_sym_BSLASHtvolcite] = ACTIONS(12331), + [anon_sym_BSLASHTvolcite] = ACTIONS(12331), + [anon_sym_BSLASHavolcite] = ACTIONS(12331), + [anon_sym_BSLASHAvolcite] = ACTIONS(12331), + [anon_sym_BSLASHnotecite] = ACTIONS(12331), + [anon_sym_BSLASHpnotecite] = ACTIONS(12331), + [anon_sym_BSLASHPnotecite] = ACTIONS(12331), + [anon_sym_BSLASHfnotecite] = ACTIONS(12331), + [anon_sym_BSLASHusepackage] = ACTIONS(12331), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12331), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12331), + [anon_sym_BSLASHinclude] = ACTIONS(12331), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12331), + [anon_sym_BSLASHinput] = ACTIONS(12331), + [anon_sym_BSLASHsubfile] = ACTIONS(12331), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12331), + [anon_sym_BSLASHbibliography] = ACTIONS(12331), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12331), + [anon_sym_BSLASHincludesvg] = ACTIONS(12331), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12331), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12331), + [anon_sym_BSLASHimport] = ACTIONS(12331), + [anon_sym_BSLASHsubimport] = ACTIONS(12331), + [anon_sym_BSLASHinputfrom] = ACTIONS(12331), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12331), + [anon_sym_BSLASHincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHlabel] = ACTIONS(12331), + [anon_sym_BSLASHref] = ACTIONS(12331), + [anon_sym_BSLASHvref] = ACTIONS(12331), + [anon_sym_BSLASHVref] = ACTIONS(12331), + [anon_sym_BSLASHautoref] = ACTIONS(12331), + [anon_sym_BSLASHpageref] = ACTIONS(12331), + [anon_sym_BSLASHcref] = ACTIONS(12331), + [anon_sym_BSLASHCref] = ACTIONS(12331), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnameCref] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHlabelcref] = ACTIONS(12331), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12331), + [anon_sym_BSLASHeqref] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange] = ACTIONS(12331), + [anon_sym_BSLASHCrefrange] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewlabel] = ACTIONS(12331), + [anon_sym_BSLASHnewcommand] = ACTIONS(12331), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12331), + [anon_sym_BSLASHgls] = ACTIONS(12331), + [anon_sym_BSLASHGls] = ACTIONS(12331), + [anon_sym_BSLASHGLS] = ACTIONS(12331), + [anon_sym_BSLASHglspl] = ACTIONS(12331), + [anon_sym_BSLASHGlspl] = ACTIONS(12331), + [anon_sym_BSLASHGLSpl] = ACTIONS(12331), + [anon_sym_BSLASHglsdisp] = ACTIONS(12331), + [anon_sym_BSLASHglslink] = ACTIONS(12331), + [anon_sym_BSLASHglstext] = ACTIONS(12331), + [anon_sym_BSLASHGlstext] = ACTIONS(12331), + [anon_sym_BSLASHGLStext] = ACTIONS(12331), + [anon_sym_BSLASHglsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12331), + [anon_sym_BSLASHglsplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSplural] = ACTIONS(12331), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHglsname] = ACTIONS(12331), + [anon_sym_BSLASHGlsname] = ACTIONS(12331), + [anon_sym_BSLASHGLSname] = ACTIONS(12331), + [anon_sym_BSLASHglssymbol] = ACTIONS(12331), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12331), + [anon_sym_BSLASHglsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12331), + [anon_sym_BSLASHglsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12331), + [anon_sym_BSLASHglsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12331), + [anon_sym_BSLASHglsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12331), + [anon_sym_BSLASHglsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12331), + [anon_sym_BSLASHnewacronym] = ACTIONS(12331), + [anon_sym_BSLASHacrshort] = ACTIONS(12331), + [anon_sym_BSLASHAcrshort] = ACTIONS(12331), + [anon_sym_BSLASHACRshort] = ACTIONS(12331), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12331), + [anon_sym_BSLASHacrlong] = ACTIONS(12331), + [anon_sym_BSLASHAcrlong] = ACTIONS(12331), + [anon_sym_BSLASHACRlong] = ACTIONS(12331), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12331), + [anon_sym_BSLASHacrfull] = ACTIONS(12331), + [anon_sym_BSLASHAcrfull] = ACTIONS(12331), + [anon_sym_BSLASHACRfull] = ACTIONS(12331), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12331), + [anon_sym_BSLASHacs] = ACTIONS(12331), + [anon_sym_BSLASHAcs] = ACTIONS(12331), + [anon_sym_BSLASHacsp] = ACTIONS(12331), + [anon_sym_BSLASHAcsp] = ACTIONS(12331), + [anon_sym_BSLASHacl] = ACTIONS(12331), + [anon_sym_BSLASHAcl] = ACTIONS(12331), + [anon_sym_BSLASHaclp] = ACTIONS(12331), + [anon_sym_BSLASHAclp] = ACTIONS(12331), + [anon_sym_BSLASHacf] = ACTIONS(12331), + [anon_sym_BSLASHAcf] = ACTIONS(12331), + [anon_sym_BSLASHacfp] = ACTIONS(12331), + [anon_sym_BSLASHAcfp] = ACTIONS(12331), + [anon_sym_BSLASHac] = ACTIONS(12331), + [anon_sym_BSLASHAc] = ACTIONS(12331), + [anon_sym_BSLASHacp] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12331), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12331), + [anon_sym_BSLASHcolor] = ACTIONS(12331), + [anon_sym_BSLASHcolorbox] = ACTIONS(12331), + [anon_sym_BSLASHtextcolor] = ACTIONS(12331), + [anon_sym_BSLASHpagecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12331), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12331), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12331), + }, + [1608] = { + [sym_generic_command_name] = ACTIONS(12327), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12327), + [aux_sym_subparagraph_token1] = ACTIONS(12327), + [anon_sym_BSLASHitem] = ACTIONS(12327), + [anon_sym_LBRACK] = ACTIONS(12325), + [anon_sym_RBRACK] = ACTIONS(12325), + [anon_sym_LBRACE] = ACTIONS(12325), + [anon_sym_RBRACE] = ACTIONS(12325), + [anon_sym_LPAREN] = ACTIONS(12325), + [anon_sym_COMMA] = ACTIONS(12325), + [anon_sym_EQ] = ACTIONS(12325), + [sym_word] = ACTIONS(12325), + [sym_param] = ACTIONS(12325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12325), + [anon_sym_DOLLAR] = ACTIONS(12327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12325), + [anon_sym_BSLASHbegin] = ACTIONS(12327), + [anon_sym_BSLASHcaption] = ACTIONS(12327), + [anon_sym_BSLASHcite] = ACTIONS(12327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCite] = ACTIONS(12327), + [anon_sym_BSLASHnocite] = ACTIONS(12327), + [anon_sym_BSLASHcitet] = ACTIONS(12327), + [anon_sym_BSLASHcitep] = ACTIONS(12327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteauthor] = ACTIONS(12327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitetitle] = ACTIONS(12327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteyear] = ACTIONS(12327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitedate] = ACTIONS(12327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteurl] = ACTIONS(12327), + [anon_sym_BSLASHfullcite] = ACTIONS(12327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12327), + [anon_sym_BSLASHcitealt] = ACTIONS(12327), + [anon_sym_BSLASHcitealp] = ACTIONS(12327), + [anon_sym_BSLASHcitetext] = ACTIONS(12327), + [anon_sym_BSLASHparencite] = ACTIONS(12327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHParencite] = ACTIONS(12327), + [anon_sym_BSLASHfootcite] = ACTIONS(12327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12327), + [anon_sym_BSLASHtextcite] = ACTIONS(12327), + [anon_sym_BSLASHTextcite] = ACTIONS(12327), + [anon_sym_BSLASHsmartcite] = ACTIONS(12327), + [anon_sym_BSLASHSmartcite] = ACTIONS(12327), + [anon_sym_BSLASHsupercite] = ACTIONS(12327), + [anon_sym_BSLASHautocite] = ACTIONS(12327), + [anon_sym_BSLASHAutocite] = ACTIONS(12327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHvolcite] = ACTIONS(12327), + [anon_sym_BSLASHVolcite] = ACTIONS(12327), + [anon_sym_BSLASHpvolcite] = ACTIONS(12327), + [anon_sym_BSLASHPvolcite] = ACTIONS(12327), + [anon_sym_BSLASHfvolcite] = ACTIONS(12327), + [anon_sym_BSLASHftvolcite] = ACTIONS(12327), + [anon_sym_BSLASHsvolcite] = ACTIONS(12327), + [anon_sym_BSLASHSvolcite] = ACTIONS(12327), + [anon_sym_BSLASHtvolcite] = ACTIONS(12327), + [anon_sym_BSLASHTvolcite] = ACTIONS(12327), + [anon_sym_BSLASHavolcite] = ACTIONS(12327), + [anon_sym_BSLASHAvolcite] = ACTIONS(12327), + [anon_sym_BSLASHnotecite] = ACTIONS(12327), + [anon_sym_BSLASHpnotecite] = ACTIONS(12327), + [anon_sym_BSLASHPnotecite] = ACTIONS(12327), + [anon_sym_BSLASHfnotecite] = ACTIONS(12327), + [anon_sym_BSLASHusepackage] = ACTIONS(12327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12327), + [anon_sym_BSLASHinclude] = ACTIONS(12327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12327), + [anon_sym_BSLASHinput] = ACTIONS(12327), + [anon_sym_BSLASHsubfile] = ACTIONS(12327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12327), + [anon_sym_BSLASHbibliography] = ACTIONS(12327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12327), + [anon_sym_BSLASHincludesvg] = ACTIONS(12327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12327), + [anon_sym_BSLASHimport] = ACTIONS(12327), + [anon_sym_BSLASHsubimport] = ACTIONS(12327), + [anon_sym_BSLASHinputfrom] = ACTIONS(12327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12327), + [anon_sym_BSLASHincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHlabel] = ACTIONS(12327), + [anon_sym_BSLASHref] = ACTIONS(12327), + [anon_sym_BSLASHvref] = ACTIONS(12327), + [anon_sym_BSLASHVref] = ACTIONS(12327), + [anon_sym_BSLASHautoref] = ACTIONS(12327), + [anon_sym_BSLASHpageref] = ACTIONS(12327), + [anon_sym_BSLASHcref] = ACTIONS(12327), + [anon_sym_BSLASHCref] = ACTIONS(12327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnameCref] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHlabelcref] = ACTIONS(12327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12327), + [anon_sym_BSLASHeqref] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange] = ACTIONS(12327), + [anon_sym_BSLASHCrefrange] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewlabel] = ACTIONS(12327), + [anon_sym_BSLASHnewcommand] = ACTIONS(12327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12327), + [anon_sym_BSLASHgls] = ACTIONS(12327), + [anon_sym_BSLASHGls] = ACTIONS(12327), + [anon_sym_BSLASHGLS] = ACTIONS(12327), + [anon_sym_BSLASHglspl] = ACTIONS(12327), + [anon_sym_BSLASHGlspl] = ACTIONS(12327), + [anon_sym_BSLASHGLSpl] = ACTIONS(12327), + [anon_sym_BSLASHglsdisp] = ACTIONS(12327), + [anon_sym_BSLASHglslink] = ACTIONS(12327), + [anon_sym_BSLASHglstext] = ACTIONS(12327), + [anon_sym_BSLASHGlstext] = ACTIONS(12327), + [anon_sym_BSLASHGLStext] = ACTIONS(12327), + [anon_sym_BSLASHglsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12327), + [anon_sym_BSLASHglsplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSplural] = ACTIONS(12327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHglsname] = ACTIONS(12327), + [anon_sym_BSLASHGlsname] = ACTIONS(12327), + [anon_sym_BSLASHGLSname] = ACTIONS(12327), + [anon_sym_BSLASHglssymbol] = ACTIONS(12327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12327), + [anon_sym_BSLASHglsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12327), + [anon_sym_BSLASHglsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12327), + [anon_sym_BSLASHglsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12327), + [anon_sym_BSLASHglsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12327), + [anon_sym_BSLASHglsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12327), + [anon_sym_BSLASHnewacronym] = ACTIONS(12327), + [anon_sym_BSLASHacrshort] = ACTIONS(12327), + [anon_sym_BSLASHAcrshort] = ACTIONS(12327), + [anon_sym_BSLASHACRshort] = ACTIONS(12327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12327), + [anon_sym_BSLASHacrlong] = ACTIONS(12327), + [anon_sym_BSLASHAcrlong] = ACTIONS(12327), + [anon_sym_BSLASHACRlong] = ACTIONS(12327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12327), + [anon_sym_BSLASHacrfull] = ACTIONS(12327), + [anon_sym_BSLASHAcrfull] = ACTIONS(12327), + [anon_sym_BSLASHACRfull] = ACTIONS(12327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12327), + [anon_sym_BSLASHacs] = ACTIONS(12327), + [anon_sym_BSLASHAcs] = ACTIONS(12327), + [anon_sym_BSLASHacsp] = ACTIONS(12327), + [anon_sym_BSLASHAcsp] = ACTIONS(12327), + [anon_sym_BSLASHacl] = ACTIONS(12327), + [anon_sym_BSLASHAcl] = ACTIONS(12327), + [anon_sym_BSLASHaclp] = ACTIONS(12327), + [anon_sym_BSLASHAclp] = ACTIONS(12327), + [anon_sym_BSLASHacf] = ACTIONS(12327), + [anon_sym_BSLASHAcf] = ACTIONS(12327), + [anon_sym_BSLASHacfp] = ACTIONS(12327), + [anon_sym_BSLASHAcfp] = ACTIONS(12327), + [anon_sym_BSLASHac] = ACTIONS(12327), + [anon_sym_BSLASHAc] = ACTIONS(12327), + [anon_sym_BSLASHacp] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12327), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12327), + [anon_sym_BSLASHcolor] = ACTIONS(12327), + [anon_sym_BSLASHcolorbox] = ACTIONS(12327), + [anon_sym_BSLASHtextcolor] = ACTIONS(12327), + [anon_sym_BSLASHpagecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12327), + }, + [1609] = { + [sym_generic_command_name] = ACTIONS(12311), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12311), + [aux_sym_subparagraph_token1] = ACTIONS(12311), + [anon_sym_BSLASHitem] = ACTIONS(12311), + [anon_sym_LBRACK] = ACTIONS(12309), + [anon_sym_RBRACK] = ACTIONS(12309), + [anon_sym_LBRACE] = ACTIONS(12309), + [anon_sym_RBRACE] = ACTIONS(12309), + [anon_sym_LPAREN] = ACTIONS(12309), + [anon_sym_COMMA] = ACTIONS(12309), + [anon_sym_EQ] = ACTIONS(12309), + [sym_word] = ACTIONS(12309), + [sym_param] = ACTIONS(12309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12309), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12309), + [anon_sym_DOLLAR] = ACTIONS(12311), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12309), + [anon_sym_BSLASHbegin] = ACTIONS(12311), + [anon_sym_BSLASHcaption] = ACTIONS(12311), + [anon_sym_BSLASHcite] = ACTIONS(12311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCite] = ACTIONS(12311), + [anon_sym_BSLASHnocite] = ACTIONS(12311), + [anon_sym_BSLASHcitet] = ACTIONS(12311), + [anon_sym_BSLASHcitep] = ACTIONS(12311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteauthor] = ACTIONS(12311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitetitle] = ACTIONS(12311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteyear] = ACTIONS(12311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitedate] = ACTIONS(12311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteurl] = ACTIONS(12311), + [anon_sym_BSLASHfullcite] = ACTIONS(12311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12311), + [anon_sym_BSLASHcitealt] = ACTIONS(12311), + [anon_sym_BSLASHcitealp] = ACTIONS(12311), + [anon_sym_BSLASHcitetext] = ACTIONS(12311), + [anon_sym_BSLASHparencite] = ACTIONS(12311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHParencite] = ACTIONS(12311), + [anon_sym_BSLASHfootcite] = ACTIONS(12311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12311), + [anon_sym_BSLASHtextcite] = ACTIONS(12311), + [anon_sym_BSLASHTextcite] = ACTIONS(12311), + [anon_sym_BSLASHsmartcite] = ACTIONS(12311), + [anon_sym_BSLASHSmartcite] = ACTIONS(12311), + [anon_sym_BSLASHsupercite] = ACTIONS(12311), + [anon_sym_BSLASHautocite] = ACTIONS(12311), + [anon_sym_BSLASHAutocite] = ACTIONS(12311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHvolcite] = ACTIONS(12311), + [anon_sym_BSLASHVolcite] = ACTIONS(12311), + [anon_sym_BSLASHpvolcite] = ACTIONS(12311), + [anon_sym_BSLASHPvolcite] = ACTIONS(12311), + [anon_sym_BSLASHfvolcite] = ACTIONS(12311), + [anon_sym_BSLASHftvolcite] = ACTIONS(12311), + [anon_sym_BSLASHsvolcite] = ACTIONS(12311), + [anon_sym_BSLASHSvolcite] = ACTIONS(12311), + [anon_sym_BSLASHtvolcite] = ACTIONS(12311), + [anon_sym_BSLASHTvolcite] = ACTIONS(12311), + [anon_sym_BSLASHavolcite] = ACTIONS(12311), + [anon_sym_BSLASHAvolcite] = ACTIONS(12311), + [anon_sym_BSLASHnotecite] = ACTIONS(12311), + [anon_sym_BSLASHpnotecite] = ACTIONS(12311), + [anon_sym_BSLASHPnotecite] = ACTIONS(12311), + [anon_sym_BSLASHfnotecite] = ACTIONS(12311), + [anon_sym_BSLASHusepackage] = ACTIONS(12311), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12311), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12311), + [anon_sym_BSLASHinclude] = ACTIONS(12311), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12311), + [anon_sym_BSLASHinput] = ACTIONS(12311), + [anon_sym_BSLASHsubfile] = ACTIONS(12311), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12311), + [anon_sym_BSLASHbibliography] = ACTIONS(12311), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12311), + [anon_sym_BSLASHincludesvg] = ACTIONS(12311), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12311), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12311), + [anon_sym_BSLASHimport] = ACTIONS(12311), + [anon_sym_BSLASHsubimport] = ACTIONS(12311), + [anon_sym_BSLASHinputfrom] = ACTIONS(12311), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12311), + [anon_sym_BSLASHincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHlabel] = ACTIONS(12311), + [anon_sym_BSLASHref] = ACTIONS(12311), + [anon_sym_BSLASHvref] = ACTIONS(12311), + [anon_sym_BSLASHVref] = ACTIONS(12311), + [anon_sym_BSLASHautoref] = ACTIONS(12311), + [anon_sym_BSLASHpageref] = ACTIONS(12311), + [anon_sym_BSLASHcref] = ACTIONS(12311), + [anon_sym_BSLASHCref] = ACTIONS(12311), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnameCref] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHlabelcref] = ACTIONS(12311), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12311), + [anon_sym_BSLASHeqref] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange] = ACTIONS(12311), + [anon_sym_BSLASHCrefrange] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewlabel] = ACTIONS(12311), + [anon_sym_BSLASHnewcommand] = ACTIONS(12311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12311), + [anon_sym_BSLASHgls] = ACTIONS(12311), + [anon_sym_BSLASHGls] = ACTIONS(12311), + [anon_sym_BSLASHGLS] = ACTIONS(12311), + [anon_sym_BSLASHglspl] = ACTIONS(12311), + [anon_sym_BSLASHGlspl] = ACTIONS(12311), + [anon_sym_BSLASHGLSpl] = ACTIONS(12311), + [anon_sym_BSLASHglsdisp] = ACTIONS(12311), + [anon_sym_BSLASHglslink] = ACTIONS(12311), + [anon_sym_BSLASHglstext] = ACTIONS(12311), + [anon_sym_BSLASHGlstext] = ACTIONS(12311), + [anon_sym_BSLASHGLStext] = ACTIONS(12311), + [anon_sym_BSLASHglsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12311), + [anon_sym_BSLASHglsplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSplural] = ACTIONS(12311), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHglsname] = ACTIONS(12311), + [anon_sym_BSLASHGlsname] = ACTIONS(12311), + [anon_sym_BSLASHGLSname] = ACTIONS(12311), + [anon_sym_BSLASHglssymbol] = ACTIONS(12311), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12311), + [anon_sym_BSLASHglsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12311), + [anon_sym_BSLASHglsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12311), + [anon_sym_BSLASHglsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12311), + [anon_sym_BSLASHglsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12311), + [anon_sym_BSLASHglsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12311), + [anon_sym_BSLASHnewacronym] = ACTIONS(12311), + [anon_sym_BSLASHacrshort] = ACTIONS(12311), + [anon_sym_BSLASHAcrshort] = ACTIONS(12311), + [anon_sym_BSLASHACRshort] = ACTIONS(12311), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12311), + [anon_sym_BSLASHacrlong] = ACTIONS(12311), + [anon_sym_BSLASHAcrlong] = ACTIONS(12311), + [anon_sym_BSLASHACRlong] = ACTIONS(12311), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12311), + [anon_sym_BSLASHacrfull] = ACTIONS(12311), + [anon_sym_BSLASHAcrfull] = ACTIONS(12311), + [anon_sym_BSLASHACRfull] = ACTIONS(12311), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12311), + [anon_sym_BSLASHacs] = ACTIONS(12311), + [anon_sym_BSLASHAcs] = ACTIONS(12311), + [anon_sym_BSLASHacsp] = ACTIONS(12311), + [anon_sym_BSLASHAcsp] = ACTIONS(12311), + [anon_sym_BSLASHacl] = ACTIONS(12311), + [anon_sym_BSLASHAcl] = ACTIONS(12311), + [anon_sym_BSLASHaclp] = ACTIONS(12311), + [anon_sym_BSLASHAclp] = ACTIONS(12311), + [anon_sym_BSLASHacf] = ACTIONS(12311), + [anon_sym_BSLASHAcf] = ACTIONS(12311), + [anon_sym_BSLASHacfp] = ACTIONS(12311), + [anon_sym_BSLASHAcfp] = ACTIONS(12311), + [anon_sym_BSLASHac] = ACTIONS(12311), + [anon_sym_BSLASHAc] = ACTIONS(12311), + [anon_sym_BSLASHacp] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12311), + [anon_sym_BSLASHcolor] = ACTIONS(12311), + [anon_sym_BSLASHcolorbox] = ACTIONS(12311), + [anon_sym_BSLASHtextcolor] = ACTIONS(12311), + [anon_sym_BSLASHpagecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12311), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12311), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12311), + }, + [1610] = { + [sym_generic_command_name] = ACTIONS(12299), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12299), + [aux_sym_subparagraph_token1] = ACTIONS(12299), + [anon_sym_BSLASHitem] = ACTIONS(12299), + [anon_sym_LBRACK] = ACTIONS(12297), + [anon_sym_RBRACK] = ACTIONS(12297), + [anon_sym_LBRACE] = ACTIONS(12297), + [anon_sym_RBRACE] = ACTIONS(12297), + [anon_sym_LPAREN] = ACTIONS(12297), + [anon_sym_COMMA] = ACTIONS(12297), + [anon_sym_EQ] = ACTIONS(12297), + [sym_word] = ACTIONS(12297), + [sym_param] = ACTIONS(12297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12297), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12297), + [anon_sym_DOLLAR] = ACTIONS(12299), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12297), + [anon_sym_BSLASHbegin] = ACTIONS(12299), + [anon_sym_BSLASHcaption] = ACTIONS(12299), + [anon_sym_BSLASHcite] = ACTIONS(12299), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCite] = ACTIONS(12299), + [anon_sym_BSLASHnocite] = ACTIONS(12299), + [anon_sym_BSLASHcitet] = ACTIONS(12299), + [anon_sym_BSLASHcitep] = ACTIONS(12299), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteauthor] = ACTIONS(12299), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12299), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitetitle] = ACTIONS(12299), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteyear] = ACTIONS(12299), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitedate] = ACTIONS(12299), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteurl] = ACTIONS(12299), + [anon_sym_BSLASHfullcite] = ACTIONS(12299), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12299), + [anon_sym_BSLASHcitealt] = ACTIONS(12299), + [anon_sym_BSLASHcitealp] = ACTIONS(12299), + [anon_sym_BSLASHcitetext] = ACTIONS(12299), + [anon_sym_BSLASHparencite] = ACTIONS(12299), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHParencite] = ACTIONS(12299), + [anon_sym_BSLASHfootcite] = ACTIONS(12299), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12299), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12299), + [anon_sym_BSLASHtextcite] = ACTIONS(12299), + [anon_sym_BSLASHTextcite] = ACTIONS(12299), + [anon_sym_BSLASHsmartcite] = ACTIONS(12299), + [anon_sym_BSLASHSmartcite] = ACTIONS(12299), + [anon_sym_BSLASHsupercite] = ACTIONS(12299), + [anon_sym_BSLASHautocite] = ACTIONS(12299), + [anon_sym_BSLASHAutocite] = ACTIONS(12299), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHvolcite] = ACTIONS(12299), + [anon_sym_BSLASHVolcite] = ACTIONS(12299), + [anon_sym_BSLASHpvolcite] = ACTIONS(12299), + [anon_sym_BSLASHPvolcite] = ACTIONS(12299), + [anon_sym_BSLASHfvolcite] = ACTIONS(12299), + [anon_sym_BSLASHftvolcite] = ACTIONS(12299), + [anon_sym_BSLASHsvolcite] = ACTIONS(12299), + [anon_sym_BSLASHSvolcite] = ACTIONS(12299), + [anon_sym_BSLASHtvolcite] = ACTIONS(12299), + [anon_sym_BSLASHTvolcite] = ACTIONS(12299), + [anon_sym_BSLASHavolcite] = ACTIONS(12299), + [anon_sym_BSLASHAvolcite] = ACTIONS(12299), + [anon_sym_BSLASHnotecite] = ACTIONS(12299), + [anon_sym_BSLASHpnotecite] = ACTIONS(12299), + [anon_sym_BSLASHPnotecite] = ACTIONS(12299), + [anon_sym_BSLASHfnotecite] = ACTIONS(12299), + [anon_sym_BSLASHusepackage] = ACTIONS(12299), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12299), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12299), + [anon_sym_BSLASHinclude] = ACTIONS(12299), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12299), + [anon_sym_BSLASHinput] = ACTIONS(12299), + [anon_sym_BSLASHsubfile] = ACTIONS(12299), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12299), + [anon_sym_BSLASHbibliography] = ACTIONS(12299), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12299), + [anon_sym_BSLASHincludesvg] = ACTIONS(12299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12299), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12299), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12299), + [anon_sym_BSLASHimport] = ACTIONS(12299), + [anon_sym_BSLASHsubimport] = ACTIONS(12299), + [anon_sym_BSLASHinputfrom] = ACTIONS(12299), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12299), + [anon_sym_BSLASHincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHlabel] = ACTIONS(12299), + [anon_sym_BSLASHref] = ACTIONS(12299), + [anon_sym_BSLASHvref] = ACTIONS(12299), + [anon_sym_BSLASHVref] = ACTIONS(12299), + [anon_sym_BSLASHautoref] = ACTIONS(12299), + [anon_sym_BSLASHpageref] = ACTIONS(12299), + [anon_sym_BSLASHcref] = ACTIONS(12299), + [anon_sym_BSLASHCref] = ACTIONS(12299), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnameCref] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHlabelcref] = ACTIONS(12299), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12299), + [anon_sym_BSLASHeqref] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange] = ACTIONS(12299), + [anon_sym_BSLASHCrefrange] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewlabel] = ACTIONS(12299), + [anon_sym_BSLASHnewcommand] = ACTIONS(12299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12299), + [anon_sym_BSLASHgls] = ACTIONS(12299), + [anon_sym_BSLASHGls] = ACTIONS(12299), + [anon_sym_BSLASHGLS] = ACTIONS(12299), + [anon_sym_BSLASHglspl] = ACTIONS(12299), + [anon_sym_BSLASHGlspl] = ACTIONS(12299), + [anon_sym_BSLASHGLSpl] = ACTIONS(12299), + [anon_sym_BSLASHglsdisp] = ACTIONS(12299), + [anon_sym_BSLASHglslink] = ACTIONS(12299), + [anon_sym_BSLASHglstext] = ACTIONS(12299), + [anon_sym_BSLASHGlstext] = ACTIONS(12299), + [anon_sym_BSLASHGLStext] = ACTIONS(12299), + [anon_sym_BSLASHglsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12299), + [anon_sym_BSLASHglsplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSplural] = ACTIONS(12299), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHglsname] = ACTIONS(12299), + [anon_sym_BSLASHGlsname] = ACTIONS(12299), + [anon_sym_BSLASHGLSname] = ACTIONS(12299), + [anon_sym_BSLASHglssymbol] = ACTIONS(12299), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12299), + [anon_sym_BSLASHglsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12299), + [anon_sym_BSLASHglsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12299), + [anon_sym_BSLASHglsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12299), + [anon_sym_BSLASHglsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12299), + [anon_sym_BSLASHglsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12299), + [anon_sym_BSLASHnewacronym] = ACTIONS(12299), + [anon_sym_BSLASHacrshort] = ACTIONS(12299), + [anon_sym_BSLASHAcrshort] = ACTIONS(12299), + [anon_sym_BSLASHACRshort] = ACTIONS(12299), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12299), + [anon_sym_BSLASHacrlong] = ACTIONS(12299), + [anon_sym_BSLASHAcrlong] = ACTIONS(12299), + [anon_sym_BSLASHACRlong] = ACTIONS(12299), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12299), + [anon_sym_BSLASHacrfull] = ACTIONS(12299), + [anon_sym_BSLASHAcrfull] = ACTIONS(12299), + [anon_sym_BSLASHACRfull] = ACTIONS(12299), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12299), + [anon_sym_BSLASHacs] = ACTIONS(12299), + [anon_sym_BSLASHAcs] = ACTIONS(12299), + [anon_sym_BSLASHacsp] = ACTIONS(12299), + [anon_sym_BSLASHAcsp] = ACTIONS(12299), + [anon_sym_BSLASHacl] = ACTIONS(12299), + [anon_sym_BSLASHAcl] = ACTIONS(12299), + [anon_sym_BSLASHaclp] = ACTIONS(12299), + [anon_sym_BSLASHAclp] = ACTIONS(12299), + [anon_sym_BSLASHacf] = ACTIONS(12299), + [anon_sym_BSLASHAcf] = ACTIONS(12299), + [anon_sym_BSLASHacfp] = ACTIONS(12299), + [anon_sym_BSLASHAcfp] = ACTIONS(12299), + [anon_sym_BSLASHac] = ACTIONS(12299), + [anon_sym_BSLASHAc] = ACTIONS(12299), + [anon_sym_BSLASHacp] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12299), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12299), + [anon_sym_BSLASHcolor] = ACTIONS(12299), + [anon_sym_BSLASHcolorbox] = ACTIONS(12299), + [anon_sym_BSLASHtextcolor] = ACTIONS(12299), + [anon_sym_BSLASHpagecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12299), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12299), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12299), + }, + [1611] = { + [sym_generic_command_name] = ACTIONS(12283), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12283), + [aux_sym_subparagraph_token1] = ACTIONS(12283), + [anon_sym_BSLASHitem] = ACTIONS(12283), + [anon_sym_LBRACK] = ACTIONS(12281), + [anon_sym_RBRACK] = ACTIONS(12281), + [anon_sym_LBRACE] = ACTIONS(12281), + [anon_sym_RBRACE] = ACTIONS(12281), + [anon_sym_LPAREN] = ACTIONS(12281), + [anon_sym_COMMA] = ACTIONS(12281), + [anon_sym_EQ] = ACTIONS(12281), + [sym_word] = ACTIONS(12281), + [sym_param] = ACTIONS(12281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12281), + [anon_sym_DOLLAR] = ACTIONS(12283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12281), + [anon_sym_BSLASHbegin] = ACTIONS(12283), + [anon_sym_BSLASHcaption] = ACTIONS(12283), + [anon_sym_BSLASHcite] = ACTIONS(12283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCite] = ACTIONS(12283), + [anon_sym_BSLASHnocite] = ACTIONS(12283), + [anon_sym_BSLASHcitet] = ACTIONS(12283), + [anon_sym_BSLASHcitep] = ACTIONS(12283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteauthor] = ACTIONS(12283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitetitle] = ACTIONS(12283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteyear] = ACTIONS(12283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitedate] = ACTIONS(12283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteurl] = ACTIONS(12283), + [anon_sym_BSLASHfullcite] = ACTIONS(12283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12283), + [anon_sym_BSLASHcitealt] = ACTIONS(12283), + [anon_sym_BSLASHcitealp] = ACTIONS(12283), + [anon_sym_BSLASHcitetext] = ACTIONS(12283), + [anon_sym_BSLASHparencite] = ACTIONS(12283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHParencite] = ACTIONS(12283), + [anon_sym_BSLASHfootcite] = ACTIONS(12283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12283), + [anon_sym_BSLASHtextcite] = ACTIONS(12283), + [anon_sym_BSLASHTextcite] = ACTIONS(12283), + [anon_sym_BSLASHsmartcite] = ACTIONS(12283), + [anon_sym_BSLASHSmartcite] = ACTIONS(12283), + [anon_sym_BSLASHsupercite] = ACTIONS(12283), + [anon_sym_BSLASHautocite] = ACTIONS(12283), + [anon_sym_BSLASHAutocite] = ACTIONS(12283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHvolcite] = ACTIONS(12283), + [anon_sym_BSLASHVolcite] = ACTIONS(12283), + [anon_sym_BSLASHpvolcite] = ACTIONS(12283), + [anon_sym_BSLASHPvolcite] = ACTIONS(12283), + [anon_sym_BSLASHfvolcite] = ACTIONS(12283), + [anon_sym_BSLASHftvolcite] = ACTIONS(12283), + [anon_sym_BSLASHsvolcite] = ACTIONS(12283), + [anon_sym_BSLASHSvolcite] = ACTIONS(12283), + [anon_sym_BSLASHtvolcite] = ACTIONS(12283), + [anon_sym_BSLASHTvolcite] = ACTIONS(12283), + [anon_sym_BSLASHavolcite] = ACTIONS(12283), + [anon_sym_BSLASHAvolcite] = ACTIONS(12283), + [anon_sym_BSLASHnotecite] = ACTIONS(12283), + [anon_sym_BSLASHpnotecite] = ACTIONS(12283), + [anon_sym_BSLASHPnotecite] = ACTIONS(12283), + [anon_sym_BSLASHfnotecite] = ACTIONS(12283), + [anon_sym_BSLASHusepackage] = ACTIONS(12283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12283), + [anon_sym_BSLASHinclude] = ACTIONS(12283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12283), + [anon_sym_BSLASHinput] = ACTIONS(12283), + [anon_sym_BSLASHsubfile] = ACTIONS(12283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12283), + [anon_sym_BSLASHbibliography] = ACTIONS(12283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12283), + [anon_sym_BSLASHincludesvg] = ACTIONS(12283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12283), + [anon_sym_BSLASHimport] = ACTIONS(12283), + [anon_sym_BSLASHsubimport] = ACTIONS(12283), + [anon_sym_BSLASHinputfrom] = ACTIONS(12283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12283), + [anon_sym_BSLASHincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHlabel] = ACTIONS(12283), + [anon_sym_BSLASHref] = ACTIONS(12283), + [anon_sym_BSLASHvref] = ACTIONS(12283), + [anon_sym_BSLASHVref] = ACTIONS(12283), + [anon_sym_BSLASHautoref] = ACTIONS(12283), + [anon_sym_BSLASHpageref] = ACTIONS(12283), + [anon_sym_BSLASHcref] = ACTIONS(12283), + [anon_sym_BSLASHCref] = ACTIONS(12283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnameCref] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHlabelcref] = ACTIONS(12283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12283), + [anon_sym_BSLASHeqref] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange] = ACTIONS(12283), + [anon_sym_BSLASHCrefrange] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewlabel] = ACTIONS(12283), + [anon_sym_BSLASHnewcommand] = ACTIONS(12283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12283), + [anon_sym_BSLASHgls] = ACTIONS(12283), + [anon_sym_BSLASHGls] = ACTIONS(12283), + [anon_sym_BSLASHGLS] = ACTIONS(12283), + [anon_sym_BSLASHglspl] = ACTIONS(12283), + [anon_sym_BSLASHGlspl] = ACTIONS(12283), + [anon_sym_BSLASHGLSpl] = ACTIONS(12283), + [anon_sym_BSLASHglsdisp] = ACTIONS(12283), + [anon_sym_BSLASHglslink] = ACTIONS(12283), + [anon_sym_BSLASHglstext] = ACTIONS(12283), + [anon_sym_BSLASHGlstext] = ACTIONS(12283), + [anon_sym_BSLASHGLStext] = ACTIONS(12283), + [anon_sym_BSLASHglsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12283), + [anon_sym_BSLASHglsplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSplural] = ACTIONS(12283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHglsname] = ACTIONS(12283), + [anon_sym_BSLASHGlsname] = ACTIONS(12283), + [anon_sym_BSLASHGLSname] = ACTIONS(12283), + [anon_sym_BSLASHglssymbol] = ACTIONS(12283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12283), + [anon_sym_BSLASHglsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12283), + [anon_sym_BSLASHglsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12283), + [anon_sym_BSLASHglsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12283), + [anon_sym_BSLASHglsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12283), + [anon_sym_BSLASHglsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12283), + [anon_sym_BSLASHnewacronym] = ACTIONS(12283), + [anon_sym_BSLASHacrshort] = ACTIONS(12283), + [anon_sym_BSLASHAcrshort] = ACTIONS(12283), + [anon_sym_BSLASHACRshort] = ACTIONS(12283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12283), + [anon_sym_BSLASHacrlong] = ACTIONS(12283), + [anon_sym_BSLASHAcrlong] = ACTIONS(12283), + [anon_sym_BSLASHACRlong] = ACTIONS(12283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12283), + [anon_sym_BSLASHacrfull] = ACTIONS(12283), + [anon_sym_BSLASHAcrfull] = ACTIONS(12283), + [anon_sym_BSLASHACRfull] = ACTIONS(12283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12283), + [anon_sym_BSLASHacs] = ACTIONS(12283), + [anon_sym_BSLASHAcs] = ACTIONS(12283), + [anon_sym_BSLASHacsp] = ACTIONS(12283), + [anon_sym_BSLASHAcsp] = ACTIONS(12283), + [anon_sym_BSLASHacl] = ACTIONS(12283), + [anon_sym_BSLASHAcl] = ACTIONS(12283), + [anon_sym_BSLASHaclp] = ACTIONS(12283), + [anon_sym_BSLASHAclp] = ACTIONS(12283), + [anon_sym_BSLASHacf] = ACTIONS(12283), + [anon_sym_BSLASHAcf] = ACTIONS(12283), + [anon_sym_BSLASHacfp] = ACTIONS(12283), + [anon_sym_BSLASHAcfp] = ACTIONS(12283), + [anon_sym_BSLASHac] = ACTIONS(12283), + [anon_sym_BSLASHAc] = ACTIONS(12283), + [anon_sym_BSLASHacp] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12283), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12283), + [anon_sym_BSLASHcolor] = ACTIONS(12283), + [anon_sym_BSLASHcolorbox] = ACTIONS(12283), + [anon_sym_BSLASHtextcolor] = ACTIONS(12283), + [anon_sym_BSLASHpagecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12283), + }, + [1612] = { + [sym_generic_command_name] = ACTIONS(12275), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12275), + [aux_sym_subparagraph_token1] = ACTIONS(12275), + [anon_sym_BSLASHitem] = ACTIONS(12275), + [anon_sym_LBRACK] = ACTIONS(12273), + [anon_sym_RBRACK] = ACTIONS(12273), + [anon_sym_LBRACE] = ACTIONS(12273), + [anon_sym_RBRACE] = ACTIONS(12273), + [anon_sym_LPAREN] = ACTIONS(12273), + [anon_sym_COMMA] = ACTIONS(12273), + [anon_sym_EQ] = ACTIONS(12273), + [sym_word] = ACTIONS(12273), + [sym_param] = ACTIONS(12273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12273), + [anon_sym_DOLLAR] = ACTIONS(12275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12273), + [anon_sym_BSLASHbegin] = ACTIONS(12275), + [anon_sym_BSLASHcaption] = ACTIONS(12275), + [anon_sym_BSLASHcite] = ACTIONS(12275), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCite] = ACTIONS(12275), + [anon_sym_BSLASHnocite] = ACTIONS(12275), + [anon_sym_BSLASHcitet] = ACTIONS(12275), + [anon_sym_BSLASHcitep] = ACTIONS(12275), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteauthor] = ACTIONS(12275), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12275), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitetitle] = ACTIONS(12275), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteyear] = ACTIONS(12275), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitedate] = ACTIONS(12275), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteurl] = ACTIONS(12275), + [anon_sym_BSLASHfullcite] = ACTIONS(12275), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12275), + [anon_sym_BSLASHcitealt] = ACTIONS(12275), + [anon_sym_BSLASHcitealp] = ACTIONS(12275), + [anon_sym_BSLASHcitetext] = ACTIONS(12275), + [anon_sym_BSLASHparencite] = ACTIONS(12275), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHParencite] = ACTIONS(12275), + [anon_sym_BSLASHfootcite] = ACTIONS(12275), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12275), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12275), + [anon_sym_BSLASHtextcite] = ACTIONS(12275), + [anon_sym_BSLASHTextcite] = ACTIONS(12275), + [anon_sym_BSLASHsmartcite] = ACTIONS(12275), + [anon_sym_BSLASHSmartcite] = ACTIONS(12275), + [anon_sym_BSLASHsupercite] = ACTIONS(12275), + [anon_sym_BSLASHautocite] = ACTIONS(12275), + [anon_sym_BSLASHAutocite] = ACTIONS(12275), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHvolcite] = ACTIONS(12275), + [anon_sym_BSLASHVolcite] = ACTIONS(12275), + [anon_sym_BSLASHpvolcite] = ACTIONS(12275), + [anon_sym_BSLASHPvolcite] = ACTIONS(12275), + [anon_sym_BSLASHfvolcite] = ACTIONS(12275), + [anon_sym_BSLASHftvolcite] = ACTIONS(12275), + [anon_sym_BSLASHsvolcite] = ACTIONS(12275), + [anon_sym_BSLASHSvolcite] = ACTIONS(12275), + [anon_sym_BSLASHtvolcite] = ACTIONS(12275), + [anon_sym_BSLASHTvolcite] = ACTIONS(12275), + [anon_sym_BSLASHavolcite] = ACTIONS(12275), + [anon_sym_BSLASHAvolcite] = ACTIONS(12275), + [anon_sym_BSLASHnotecite] = ACTIONS(12275), + [anon_sym_BSLASHpnotecite] = ACTIONS(12275), + [anon_sym_BSLASHPnotecite] = ACTIONS(12275), + [anon_sym_BSLASHfnotecite] = ACTIONS(12275), + [anon_sym_BSLASHusepackage] = ACTIONS(12275), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12275), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12275), + [anon_sym_BSLASHinclude] = ACTIONS(12275), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12275), + [anon_sym_BSLASHinput] = ACTIONS(12275), + [anon_sym_BSLASHsubfile] = ACTIONS(12275), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12275), + [anon_sym_BSLASHbibliography] = ACTIONS(12275), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12275), + [anon_sym_BSLASHincludesvg] = ACTIONS(12275), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12275), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12275), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12275), + [anon_sym_BSLASHimport] = ACTIONS(12275), + [anon_sym_BSLASHsubimport] = ACTIONS(12275), + [anon_sym_BSLASHinputfrom] = ACTIONS(12275), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12275), + [anon_sym_BSLASHincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHlabel] = ACTIONS(12275), + [anon_sym_BSLASHref] = ACTIONS(12275), + [anon_sym_BSLASHvref] = ACTIONS(12275), + [anon_sym_BSLASHVref] = ACTIONS(12275), + [anon_sym_BSLASHautoref] = ACTIONS(12275), + [anon_sym_BSLASHpageref] = ACTIONS(12275), + [anon_sym_BSLASHcref] = ACTIONS(12275), + [anon_sym_BSLASHCref] = ACTIONS(12275), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnameCref] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHlabelcref] = ACTIONS(12275), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12275), + [anon_sym_BSLASHeqref] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange] = ACTIONS(12275), + [anon_sym_BSLASHCrefrange] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewlabel] = ACTIONS(12275), + [anon_sym_BSLASHnewcommand] = ACTIONS(12275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12275), + [anon_sym_BSLASHgls] = ACTIONS(12275), + [anon_sym_BSLASHGls] = ACTIONS(12275), + [anon_sym_BSLASHGLS] = ACTIONS(12275), + [anon_sym_BSLASHglspl] = ACTIONS(12275), + [anon_sym_BSLASHGlspl] = ACTIONS(12275), + [anon_sym_BSLASHGLSpl] = ACTIONS(12275), + [anon_sym_BSLASHglsdisp] = ACTIONS(12275), + [anon_sym_BSLASHglslink] = ACTIONS(12275), + [anon_sym_BSLASHglstext] = ACTIONS(12275), + [anon_sym_BSLASHGlstext] = ACTIONS(12275), + [anon_sym_BSLASHGLStext] = ACTIONS(12275), + [anon_sym_BSLASHglsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12275), + [anon_sym_BSLASHglsplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSplural] = ACTIONS(12275), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHglsname] = ACTIONS(12275), + [anon_sym_BSLASHGlsname] = ACTIONS(12275), + [anon_sym_BSLASHGLSname] = ACTIONS(12275), + [anon_sym_BSLASHglssymbol] = ACTIONS(12275), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12275), + [anon_sym_BSLASHglsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12275), + [anon_sym_BSLASHglsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12275), + [anon_sym_BSLASHglsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12275), + [anon_sym_BSLASHglsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12275), + [anon_sym_BSLASHglsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12275), + [anon_sym_BSLASHnewacronym] = ACTIONS(12275), + [anon_sym_BSLASHacrshort] = ACTIONS(12275), + [anon_sym_BSLASHAcrshort] = ACTIONS(12275), + [anon_sym_BSLASHACRshort] = ACTIONS(12275), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12275), + [anon_sym_BSLASHacrlong] = ACTIONS(12275), + [anon_sym_BSLASHAcrlong] = ACTIONS(12275), + [anon_sym_BSLASHACRlong] = ACTIONS(12275), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12275), + [anon_sym_BSLASHacrfull] = ACTIONS(12275), + [anon_sym_BSLASHAcrfull] = ACTIONS(12275), + [anon_sym_BSLASHACRfull] = ACTIONS(12275), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12275), + [anon_sym_BSLASHacs] = ACTIONS(12275), + [anon_sym_BSLASHAcs] = ACTIONS(12275), + [anon_sym_BSLASHacsp] = ACTIONS(12275), + [anon_sym_BSLASHAcsp] = ACTIONS(12275), + [anon_sym_BSLASHacl] = ACTIONS(12275), + [anon_sym_BSLASHAcl] = ACTIONS(12275), + [anon_sym_BSLASHaclp] = ACTIONS(12275), + [anon_sym_BSLASHAclp] = ACTIONS(12275), + [anon_sym_BSLASHacf] = ACTIONS(12275), + [anon_sym_BSLASHAcf] = ACTIONS(12275), + [anon_sym_BSLASHacfp] = ACTIONS(12275), + [anon_sym_BSLASHAcfp] = ACTIONS(12275), + [anon_sym_BSLASHac] = ACTIONS(12275), + [anon_sym_BSLASHAc] = ACTIONS(12275), + [anon_sym_BSLASHacp] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12275), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12275), + [anon_sym_BSLASHcolor] = ACTIONS(12275), + [anon_sym_BSLASHcolorbox] = ACTIONS(12275), + [anon_sym_BSLASHtextcolor] = ACTIONS(12275), + [anon_sym_BSLASHpagecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12275), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12275), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12275), + }, + [1613] = { + [sym_generic_command_name] = ACTIONS(12209), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12209), + [aux_sym_subparagraph_token1] = ACTIONS(12209), + [anon_sym_BSLASHitem] = ACTIONS(12209), + [anon_sym_LBRACK] = ACTIONS(12207), + [anon_sym_RBRACK] = ACTIONS(12207), + [anon_sym_LBRACE] = ACTIONS(12207), + [anon_sym_RBRACE] = ACTIONS(12207), + [anon_sym_LPAREN] = ACTIONS(12207), + [anon_sym_COMMA] = ACTIONS(12207), + [anon_sym_EQ] = ACTIONS(12207), + [sym_word] = ACTIONS(12207), + [sym_param] = ACTIONS(12207), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12207), + [anon_sym_DOLLAR] = ACTIONS(12209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12207), + [anon_sym_BSLASHbegin] = ACTIONS(12209), + [anon_sym_BSLASHcaption] = ACTIONS(12209), + [anon_sym_BSLASHcite] = ACTIONS(12209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCite] = ACTIONS(12209), + [anon_sym_BSLASHnocite] = ACTIONS(12209), + [anon_sym_BSLASHcitet] = ACTIONS(12209), + [anon_sym_BSLASHcitep] = ACTIONS(12209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteauthor] = ACTIONS(12209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitetitle] = ACTIONS(12209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteyear] = ACTIONS(12209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitedate] = ACTIONS(12209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteurl] = ACTIONS(12209), + [anon_sym_BSLASHfullcite] = ACTIONS(12209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12209), + [anon_sym_BSLASHcitealt] = ACTIONS(12209), + [anon_sym_BSLASHcitealp] = ACTIONS(12209), + [anon_sym_BSLASHcitetext] = ACTIONS(12209), + [anon_sym_BSLASHparencite] = ACTIONS(12209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHParencite] = ACTIONS(12209), + [anon_sym_BSLASHfootcite] = ACTIONS(12209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12209), + [anon_sym_BSLASHtextcite] = ACTIONS(12209), + [anon_sym_BSLASHTextcite] = ACTIONS(12209), + [anon_sym_BSLASHsmartcite] = ACTIONS(12209), + [anon_sym_BSLASHSmartcite] = ACTIONS(12209), + [anon_sym_BSLASHsupercite] = ACTIONS(12209), + [anon_sym_BSLASHautocite] = ACTIONS(12209), + [anon_sym_BSLASHAutocite] = ACTIONS(12209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHvolcite] = ACTIONS(12209), + [anon_sym_BSLASHVolcite] = ACTIONS(12209), + [anon_sym_BSLASHpvolcite] = ACTIONS(12209), + [anon_sym_BSLASHPvolcite] = ACTIONS(12209), + [anon_sym_BSLASHfvolcite] = ACTIONS(12209), + [anon_sym_BSLASHftvolcite] = ACTIONS(12209), + [anon_sym_BSLASHsvolcite] = ACTIONS(12209), + [anon_sym_BSLASHSvolcite] = ACTIONS(12209), + [anon_sym_BSLASHtvolcite] = ACTIONS(12209), + [anon_sym_BSLASHTvolcite] = ACTIONS(12209), + [anon_sym_BSLASHavolcite] = ACTIONS(12209), + [anon_sym_BSLASHAvolcite] = ACTIONS(12209), + [anon_sym_BSLASHnotecite] = ACTIONS(12209), + [anon_sym_BSLASHpnotecite] = ACTIONS(12209), + [anon_sym_BSLASHPnotecite] = ACTIONS(12209), + [anon_sym_BSLASHfnotecite] = ACTIONS(12209), + [anon_sym_BSLASHusepackage] = ACTIONS(12209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12209), + [anon_sym_BSLASHinclude] = ACTIONS(12209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12209), + [anon_sym_BSLASHinput] = ACTIONS(12209), + [anon_sym_BSLASHsubfile] = ACTIONS(12209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12209), + [anon_sym_BSLASHbibliography] = ACTIONS(12209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12209), + [anon_sym_BSLASHincludesvg] = ACTIONS(12209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12209), + [anon_sym_BSLASHimport] = ACTIONS(12209), + [anon_sym_BSLASHsubimport] = ACTIONS(12209), + [anon_sym_BSLASHinputfrom] = ACTIONS(12209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12209), + [anon_sym_BSLASHincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHlabel] = ACTIONS(12209), + [anon_sym_BSLASHref] = ACTIONS(12209), + [anon_sym_BSLASHvref] = ACTIONS(12209), + [anon_sym_BSLASHVref] = ACTIONS(12209), + [anon_sym_BSLASHautoref] = ACTIONS(12209), + [anon_sym_BSLASHpageref] = ACTIONS(12209), + [anon_sym_BSLASHcref] = ACTIONS(12209), + [anon_sym_BSLASHCref] = ACTIONS(12209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnameCref] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHlabelcref] = ACTIONS(12209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12209), + [anon_sym_BSLASHeqref] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange] = ACTIONS(12209), + [anon_sym_BSLASHCrefrange] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewlabel] = ACTIONS(12209), + [anon_sym_BSLASHnewcommand] = ACTIONS(12209), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12209), + [anon_sym_BSLASHgls] = ACTIONS(12209), + [anon_sym_BSLASHGls] = ACTIONS(12209), + [anon_sym_BSLASHGLS] = ACTIONS(12209), + [anon_sym_BSLASHglspl] = ACTIONS(12209), + [anon_sym_BSLASHGlspl] = ACTIONS(12209), + [anon_sym_BSLASHGLSpl] = ACTIONS(12209), + [anon_sym_BSLASHglsdisp] = ACTIONS(12209), + [anon_sym_BSLASHglslink] = ACTIONS(12209), + [anon_sym_BSLASHglstext] = ACTIONS(12209), + [anon_sym_BSLASHGlstext] = ACTIONS(12209), + [anon_sym_BSLASHGLStext] = ACTIONS(12209), + [anon_sym_BSLASHglsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12209), + [anon_sym_BSLASHglsplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSplural] = ACTIONS(12209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHglsname] = ACTIONS(12209), + [anon_sym_BSLASHGlsname] = ACTIONS(12209), + [anon_sym_BSLASHGLSname] = ACTIONS(12209), + [anon_sym_BSLASHglssymbol] = ACTIONS(12209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12209), + [anon_sym_BSLASHglsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12209), + [anon_sym_BSLASHglsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12209), + [anon_sym_BSLASHglsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12209), + [anon_sym_BSLASHglsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12209), + [anon_sym_BSLASHglsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12209), + [anon_sym_BSLASHnewacronym] = ACTIONS(12209), + [anon_sym_BSLASHacrshort] = ACTIONS(12209), + [anon_sym_BSLASHAcrshort] = ACTIONS(12209), + [anon_sym_BSLASHACRshort] = ACTIONS(12209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12209), + [anon_sym_BSLASHacrlong] = ACTIONS(12209), + [anon_sym_BSLASHAcrlong] = ACTIONS(12209), + [anon_sym_BSLASHACRlong] = ACTIONS(12209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12209), + [anon_sym_BSLASHacrfull] = ACTIONS(12209), + [anon_sym_BSLASHAcrfull] = ACTIONS(12209), + [anon_sym_BSLASHACRfull] = ACTIONS(12209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12209), + [anon_sym_BSLASHacs] = ACTIONS(12209), + [anon_sym_BSLASHAcs] = ACTIONS(12209), + [anon_sym_BSLASHacsp] = ACTIONS(12209), + [anon_sym_BSLASHAcsp] = ACTIONS(12209), + [anon_sym_BSLASHacl] = ACTIONS(12209), + [anon_sym_BSLASHAcl] = ACTIONS(12209), + [anon_sym_BSLASHaclp] = ACTIONS(12209), + [anon_sym_BSLASHAclp] = ACTIONS(12209), + [anon_sym_BSLASHacf] = ACTIONS(12209), + [anon_sym_BSLASHAcf] = ACTIONS(12209), + [anon_sym_BSLASHacfp] = ACTIONS(12209), + [anon_sym_BSLASHAcfp] = ACTIONS(12209), + [anon_sym_BSLASHac] = ACTIONS(12209), + [anon_sym_BSLASHAc] = ACTIONS(12209), + [anon_sym_BSLASHacp] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12209), + [anon_sym_BSLASHcolor] = ACTIONS(12209), + [anon_sym_BSLASHcolorbox] = ACTIONS(12209), + [anon_sym_BSLASHtextcolor] = ACTIONS(12209), + [anon_sym_BSLASHpagecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12209), + }, + [1614] = { + [sym_generic_command_name] = ACTIONS(12197), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12197), + [aux_sym_subparagraph_token1] = ACTIONS(12197), + [anon_sym_BSLASHitem] = ACTIONS(12197), + [anon_sym_LBRACK] = ACTIONS(12195), + [anon_sym_RBRACK] = ACTIONS(12195), + [anon_sym_LBRACE] = ACTIONS(12195), + [anon_sym_RBRACE] = ACTIONS(12195), + [anon_sym_LPAREN] = ACTIONS(12195), + [anon_sym_COMMA] = ACTIONS(12195), + [anon_sym_EQ] = ACTIONS(12195), + [sym_word] = ACTIONS(12195), + [sym_param] = ACTIONS(12195), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12195), + [anon_sym_DOLLAR] = ACTIONS(12197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12195), + [anon_sym_BSLASHbegin] = ACTIONS(12197), + [anon_sym_BSLASHcaption] = ACTIONS(12197), + [anon_sym_BSLASHcite] = ACTIONS(12197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCite] = ACTIONS(12197), + [anon_sym_BSLASHnocite] = ACTIONS(12197), + [anon_sym_BSLASHcitet] = ACTIONS(12197), + [anon_sym_BSLASHcitep] = ACTIONS(12197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteauthor] = ACTIONS(12197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitetitle] = ACTIONS(12197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteyear] = ACTIONS(12197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitedate] = ACTIONS(12197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteurl] = ACTIONS(12197), + [anon_sym_BSLASHfullcite] = ACTIONS(12197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12197), + [anon_sym_BSLASHcitealt] = ACTIONS(12197), + [anon_sym_BSLASHcitealp] = ACTIONS(12197), + [anon_sym_BSLASHcitetext] = ACTIONS(12197), + [anon_sym_BSLASHparencite] = ACTIONS(12197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHParencite] = ACTIONS(12197), + [anon_sym_BSLASHfootcite] = ACTIONS(12197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12197), + [anon_sym_BSLASHtextcite] = ACTIONS(12197), + [anon_sym_BSLASHTextcite] = ACTIONS(12197), + [anon_sym_BSLASHsmartcite] = ACTIONS(12197), + [anon_sym_BSLASHSmartcite] = ACTIONS(12197), + [anon_sym_BSLASHsupercite] = ACTIONS(12197), + [anon_sym_BSLASHautocite] = ACTIONS(12197), + [anon_sym_BSLASHAutocite] = ACTIONS(12197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHvolcite] = ACTIONS(12197), + [anon_sym_BSLASHVolcite] = ACTIONS(12197), + [anon_sym_BSLASHpvolcite] = ACTIONS(12197), + [anon_sym_BSLASHPvolcite] = ACTIONS(12197), + [anon_sym_BSLASHfvolcite] = ACTIONS(12197), + [anon_sym_BSLASHftvolcite] = ACTIONS(12197), + [anon_sym_BSLASHsvolcite] = ACTIONS(12197), + [anon_sym_BSLASHSvolcite] = ACTIONS(12197), + [anon_sym_BSLASHtvolcite] = ACTIONS(12197), + [anon_sym_BSLASHTvolcite] = ACTIONS(12197), + [anon_sym_BSLASHavolcite] = ACTIONS(12197), + [anon_sym_BSLASHAvolcite] = ACTIONS(12197), + [anon_sym_BSLASHnotecite] = ACTIONS(12197), + [anon_sym_BSLASHpnotecite] = ACTIONS(12197), + [anon_sym_BSLASHPnotecite] = ACTIONS(12197), + [anon_sym_BSLASHfnotecite] = ACTIONS(12197), + [anon_sym_BSLASHusepackage] = ACTIONS(12197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12197), + [anon_sym_BSLASHinclude] = ACTIONS(12197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12197), + [anon_sym_BSLASHinput] = ACTIONS(12197), + [anon_sym_BSLASHsubfile] = ACTIONS(12197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12197), + [anon_sym_BSLASHbibliography] = ACTIONS(12197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12197), + [anon_sym_BSLASHincludesvg] = ACTIONS(12197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12197), + [anon_sym_BSLASHimport] = ACTIONS(12197), + [anon_sym_BSLASHsubimport] = ACTIONS(12197), + [anon_sym_BSLASHinputfrom] = ACTIONS(12197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12197), + [anon_sym_BSLASHincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHlabel] = ACTIONS(12197), + [anon_sym_BSLASHref] = ACTIONS(12197), + [anon_sym_BSLASHvref] = ACTIONS(12197), + [anon_sym_BSLASHVref] = ACTIONS(12197), + [anon_sym_BSLASHautoref] = ACTIONS(12197), + [anon_sym_BSLASHpageref] = ACTIONS(12197), + [anon_sym_BSLASHcref] = ACTIONS(12197), + [anon_sym_BSLASHCref] = ACTIONS(12197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnameCref] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHlabelcref] = ACTIONS(12197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12197), + [anon_sym_BSLASHeqref] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange] = ACTIONS(12197), + [anon_sym_BSLASHCrefrange] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewlabel] = ACTIONS(12197), + [anon_sym_BSLASHnewcommand] = ACTIONS(12197), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12197), + [anon_sym_BSLASHgls] = ACTIONS(12197), + [anon_sym_BSLASHGls] = ACTIONS(12197), + [anon_sym_BSLASHGLS] = ACTIONS(12197), + [anon_sym_BSLASHglspl] = ACTIONS(12197), + [anon_sym_BSLASHGlspl] = ACTIONS(12197), + [anon_sym_BSLASHGLSpl] = ACTIONS(12197), + [anon_sym_BSLASHglsdisp] = ACTIONS(12197), + [anon_sym_BSLASHglslink] = ACTIONS(12197), + [anon_sym_BSLASHglstext] = ACTIONS(12197), + [anon_sym_BSLASHGlstext] = ACTIONS(12197), + [anon_sym_BSLASHGLStext] = ACTIONS(12197), + [anon_sym_BSLASHglsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12197), + [anon_sym_BSLASHglsplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSplural] = ACTIONS(12197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHglsname] = ACTIONS(12197), + [anon_sym_BSLASHGlsname] = ACTIONS(12197), + [anon_sym_BSLASHGLSname] = ACTIONS(12197), + [anon_sym_BSLASHglssymbol] = ACTIONS(12197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12197), + [anon_sym_BSLASHglsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12197), + [anon_sym_BSLASHglsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12197), + [anon_sym_BSLASHglsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12197), + [anon_sym_BSLASHglsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12197), + [anon_sym_BSLASHglsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12197), + [anon_sym_BSLASHnewacronym] = ACTIONS(12197), + [anon_sym_BSLASHacrshort] = ACTIONS(12197), + [anon_sym_BSLASHAcrshort] = ACTIONS(12197), + [anon_sym_BSLASHACRshort] = ACTIONS(12197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12197), + [anon_sym_BSLASHacrlong] = ACTIONS(12197), + [anon_sym_BSLASHAcrlong] = ACTIONS(12197), + [anon_sym_BSLASHACRlong] = ACTIONS(12197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12197), + [anon_sym_BSLASHacrfull] = ACTIONS(12197), + [anon_sym_BSLASHAcrfull] = ACTIONS(12197), + [anon_sym_BSLASHACRfull] = ACTIONS(12197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12197), + [anon_sym_BSLASHacs] = ACTIONS(12197), + [anon_sym_BSLASHAcs] = ACTIONS(12197), + [anon_sym_BSLASHacsp] = ACTIONS(12197), + [anon_sym_BSLASHAcsp] = ACTIONS(12197), + [anon_sym_BSLASHacl] = ACTIONS(12197), + [anon_sym_BSLASHAcl] = ACTIONS(12197), + [anon_sym_BSLASHaclp] = ACTIONS(12197), + [anon_sym_BSLASHAclp] = ACTIONS(12197), + [anon_sym_BSLASHacf] = ACTIONS(12197), + [anon_sym_BSLASHAcf] = ACTIONS(12197), + [anon_sym_BSLASHacfp] = ACTIONS(12197), + [anon_sym_BSLASHAcfp] = ACTIONS(12197), + [anon_sym_BSLASHac] = ACTIONS(12197), + [anon_sym_BSLASHAc] = ACTIONS(12197), + [anon_sym_BSLASHacp] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12197), + [anon_sym_BSLASHcolor] = ACTIONS(12197), + [anon_sym_BSLASHcolorbox] = ACTIONS(12197), + [anon_sym_BSLASHtextcolor] = ACTIONS(12197), + [anon_sym_BSLASHpagecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12197), + }, + [1615] = { + [sym_generic_command_name] = ACTIONS(12177), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12177), + [aux_sym_subparagraph_token1] = ACTIONS(12177), + [anon_sym_BSLASHitem] = ACTIONS(12177), + [anon_sym_LBRACK] = ACTIONS(12175), + [anon_sym_RBRACK] = ACTIONS(12175), + [anon_sym_LBRACE] = ACTIONS(12175), + [anon_sym_RBRACE] = ACTIONS(12175), + [anon_sym_LPAREN] = ACTIONS(12175), + [anon_sym_COMMA] = ACTIONS(12175), + [anon_sym_EQ] = ACTIONS(12175), + [sym_word] = ACTIONS(12175), + [sym_param] = ACTIONS(12175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12175), + [anon_sym_DOLLAR] = ACTIONS(12177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12175), + [anon_sym_BSLASHbegin] = ACTIONS(12177), + [anon_sym_BSLASHcaption] = ACTIONS(12177), + [anon_sym_BSLASHcite] = ACTIONS(12177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCite] = ACTIONS(12177), + [anon_sym_BSLASHnocite] = ACTIONS(12177), + [anon_sym_BSLASHcitet] = ACTIONS(12177), + [anon_sym_BSLASHcitep] = ACTIONS(12177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteauthor] = ACTIONS(12177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitetitle] = ACTIONS(12177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteyear] = ACTIONS(12177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitedate] = ACTIONS(12177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteurl] = ACTIONS(12177), + [anon_sym_BSLASHfullcite] = ACTIONS(12177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12177), + [anon_sym_BSLASHcitealt] = ACTIONS(12177), + [anon_sym_BSLASHcitealp] = ACTIONS(12177), + [anon_sym_BSLASHcitetext] = ACTIONS(12177), + [anon_sym_BSLASHparencite] = ACTIONS(12177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHParencite] = ACTIONS(12177), + [anon_sym_BSLASHfootcite] = ACTIONS(12177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12177), + [anon_sym_BSLASHtextcite] = ACTIONS(12177), + [anon_sym_BSLASHTextcite] = ACTIONS(12177), + [anon_sym_BSLASHsmartcite] = ACTIONS(12177), + [anon_sym_BSLASHSmartcite] = ACTIONS(12177), + [anon_sym_BSLASHsupercite] = ACTIONS(12177), + [anon_sym_BSLASHautocite] = ACTIONS(12177), + [anon_sym_BSLASHAutocite] = ACTIONS(12177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHvolcite] = ACTIONS(12177), + [anon_sym_BSLASHVolcite] = ACTIONS(12177), + [anon_sym_BSLASHpvolcite] = ACTIONS(12177), + [anon_sym_BSLASHPvolcite] = ACTIONS(12177), + [anon_sym_BSLASHfvolcite] = ACTIONS(12177), + [anon_sym_BSLASHftvolcite] = ACTIONS(12177), + [anon_sym_BSLASHsvolcite] = ACTIONS(12177), + [anon_sym_BSLASHSvolcite] = ACTIONS(12177), + [anon_sym_BSLASHtvolcite] = ACTIONS(12177), + [anon_sym_BSLASHTvolcite] = ACTIONS(12177), + [anon_sym_BSLASHavolcite] = ACTIONS(12177), + [anon_sym_BSLASHAvolcite] = ACTIONS(12177), + [anon_sym_BSLASHnotecite] = ACTIONS(12177), + [anon_sym_BSLASHpnotecite] = ACTIONS(12177), + [anon_sym_BSLASHPnotecite] = ACTIONS(12177), + [anon_sym_BSLASHfnotecite] = ACTIONS(12177), + [anon_sym_BSLASHusepackage] = ACTIONS(12177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12177), + [anon_sym_BSLASHinclude] = ACTIONS(12177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12177), + [anon_sym_BSLASHinput] = ACTIONS(12177), + [anon_sym_BSLASHsubfile] = ACTIONS(12177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12177), + [anon_sym_BSLASHbibliography] = ACTIONS(12177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12177), + [anon_sym_BSLASHincludesvg] = ACTIONS(12177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12177), + [anon_sym_BSLASHimport] = ACTIONS(12177), + [anon_sym_BSLASHsubimport] = ACTIONS(12177), + [anon_sym_BSLASHinputfrom] = ACTIONS(12177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12177), + [anon_sym_BSLASHincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHlabel] = ACTIONS(12177), + [anon_sym_BSLASHref] = ACTIONS(12177), + [anon_sym_BSLASHvref] = ACTIONS(12177), + [anon_sym_BSLASHVref] = ACTIONS(12177), + [anon_sym_BSLASHautoref] = ACTIONS(12177), + [anon_sym_BSLASHpageref] = ACTIONS(12177), + [anon_sym_BSLASHcref] = ACTIONS(12177), + [anon_sym_BSLASHCref] = ACTIONS(12177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnameCref] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHlabelcref] = ACTIONS(12177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12177), + [anon_sym_BSLASHeqref] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange] = ACTIONS(12177), + [anon_sym_BSLASHCrefrange] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewlabel] = ACTIONS(12177), + [anon_sym_BSLASHnewcommand] = ACTIONS(12177), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12177), + [anon_sym_BSLASHgls] = ACTIONS(12177), + [anon_sym_BSLASHGls] = ACTIONS(12177), + [anon_sym_BSLASHGLS] = ACTIONS(12177), + [anon_sym_BSLASHglspl] = ACTIONS(12177), + [anon_sym_BSLASHGlspl] = ACTIONS(12177), + [anon_sym_BSLASHGLSpl] = ACTIONS(12177), + [anon_sym_BSLASHglsdisp] = ACTIONS(12177), + [anon_sym_BSLASHglslink] = ACTIONS(12177), + [anon_sym_BSLASHglstext] = ACTIONS(12177), + [anon_sym_BSLASHGlstext] = ACTIONS(12177), + [anon_sym_BSLASHGLStext] = ACTIONS(12177), + [anon_sym_BSLASHglsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12177), + [anon_sym_BSLASHglsplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSplural] = ACTIONS(12177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHglsname] = ACTIONS(12177), + [anon_sym_BSLASHGlsname] = ACTIONS(12177), + [anon_sym_BSLASHGLSname] = ACTIONS(12177), + [anon_sym_BSLASHglssymbol] = ACTIONS(12177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12177), + [anon_sym_BSLASHglsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12177), + [anon_sym_BSLASHglsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12177), + [anon_sym_BSLASHglsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12177), + [anon_sym_BSLASHglsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12177), + [anon_sym_BSLASHglsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12177), + [anon_sym_BSLASHnewacronym] = ACTIONS(12177), + [anon_sym_BSLASHacrshort] = ACTIONS(12177), + [anon_sym_BSLASHAcrshort] = ACTIONS(12177), + [anon_sym_BSLASHACRshort] = ACTIONS(12177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12177), + [anon_sym_BSLASHacrlong] = ACTIONS(12177), + [anon_sym_BSLASHAcrlong] = ACTIONS(12177), + [anon_sym_BSLASHACRlong] = ACTIONS(12177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12177), + [anon_sym_BSLASHacrfull] = ACTIONS(12177), + [anon_sym_BSLASHAcrfull] = ACTIONS(12177), + [anon_sym_BSLASHACRfull] = ACTIONS(12177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12177), + [anon_sym_BSLASHacs] = ACTIONS(12177), + [anon_sym_BSLASHAcs] = ACTIONS(12177), + [anon_sym_BSLASHacsp] = ACTIONS(12177), + [anon_sym_BSLASHAcsp] = ACTIONS(12177), + [anon_sym_BSLASHacl] = ACTIONS(12177), + [anon_sym_BSLASHAcl] = ACTIONS(12177), + [anon_sym_BSLASHaclp] = ACTIONS(12177), + [anon_sym_BSLASHAclp] = ACTIONS(12177), + [anon_sym_BSLASHacf] = ACTIONS(12177), + [anon_sym_BSLASHAcf] = ACTIONS(12177), + [anon_sym_BSLASHacfp] = ACTIONS(12177), + [anon_sym_BSLASHAcfp] = ACTIONS(12177), + [anon_sym_BSLASHac] = ACTIONS(12177), + [anon_sym_BSLASHAc] = ACTIONS(12177), + [anon_sym_BSLASHacp] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12177), + [anon_sym_BSLASHcolor] = ACTIONS(12177), + [anon_sym_BSLASHcolorbox] = ACTIONS(12177), + [anon_sym_BSLASHtextcolor] = ACTIONS(12177), + [anon_sym_BSLASHpagecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12177), + }, + [1616] = { + [sym_generic_command_name] = ACTIONS(12173), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12173), + [aux_sym_subparagraph_token1] = ACTIONS(12173), + [anon_sym_BSLASHitem] = ACTIONS(12173), + [anon_sym_LBRACK] = ACTIONS(12171), + [anon_sym_RBRACK] = ACTIONS(12171), + [anon_sym_LBRACE] = ACTIONS(12171), + [anon_sym_RBRACE] = ACTIONS(12171), + [anon_sym_LPAREN] = ACTIONS(12171), + [anon_sym_COMMA] = ACTIONS(12171), + [anon_sym_EQ] = ACTIONS(12171), + [sym_word] = ACTIONS(12171), + [sym_param] = ACTIONS(12171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12171), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12171), + [anon_sym_DOLLAR] = ACTIONS(12173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12171), + [anon_sym_BSLASHbegin] = ACTIONS(12173), + [anon_sym_BSLASHcaption] = ACTIONS(12173), + [anon_sym_BSLASHcite] = ACTIONS(12173), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCite] = ACTIONS(12173), + [anon_sym_BSLASHnocite] = ACTIONS(12173), + [anon_sym_BSLASHcitet] = ACTIONS(12173), + [anon_sym_BSLASHcitep] = ACTIONS(12173), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteauthor] = ACTIONS(12173), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12173), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitetitle] = ACTIONS(12173), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteyear] = ACTIONS(12173), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitedate] = ACTIONS(12173), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteurl] = ACTIONS(12173), + [anon_sym_BSLASHfullcite] = ACTIONS(12173), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12173), + [anon_sym_BSLASHcitealt] = ACTIONS(12173), + [anon_sym_BSLASHcitealp] = ACTIONS(12173), + [anon_sym_BSLASHcitetext] = ACTIONS(12173), + [anon_sym_BSLASHparencite] = ACTIONS(12173), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHParencite] = ACTIONS(12173), + [anon_sym_BSLASHfootcite] = ACTIONS(12173), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12173), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12173), + [anon_sym_BSLASHtextcite] = ACTIONS(12173), + [anon_sym_BSLASHTextcite] = ACTIONS(12173), + [anon_sym_BSLASHsmartcite] = ACTIONS(12173), + [anon_sym_BSLASHSmartcite] = ACTIONS(12173), + [anon_sym_BSLASHsupercite] = ACTIONS(12173), + [anon_sym_BSLASHautocite] = ACTIONS(12173), + [anon_sym_BSLASHAutocite] = ACTIONS(12173), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHvolcite] = ACTIONS(12173), + [anon_sym_BSLASHVolcite] = ACTIONS(12173), + [anon_sym_BSLASHpvolcite] = ACTIONS(12173), + [anon_sym_BSLASHPvolcite] = ACTIONS(12173), + [anon_sym_BSLASHfvolcite] = ACTIONS(12173), + [anon_sym_BSLASHftvolcite] = ACTIONS(12173), + [anon_sym_BSLASHsvolcite] = ACTIONS(12173), + [anon_sym_BSLASHSvolcite] = ACTIONS(12173), + [anon_sym_BSLASHtvolcite] = ACTIONS(12173), + [anon_sym_BSLASHTvolcite] = ACTIONS(12173), + [anon_sym_BSLASHavolcite] = ACTIONS(12173), + [anon_sym_BSLASHAvolcite] = ACTIONS(12173), + [anon_sym_BSLASHnotecite] = ACTIONS(12173), + [anon_sym_BSLASHpnotecite] = ACTIONS(12173), + [anon_sym_BSLASHPnotecite] = ACTIONS(12173), + [anon_sym_BSLASHfnotecite] = ACTIONS(12173), + [anon_sym_BSLASHusepackage] = ACTIONS(12173), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12173), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12173), + [anon_sym_BSLASHinclude] = ACTIONS(12173), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12173), + [anon_sym_BSLASHinput] = ACTIONS(12173), + [anon_sym_BSLASHsubfile] = ACTIONS(12173), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12173), + [anon_sym_BSLASHbibliography] = ACTIONS(12173), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12173), + [anon_sym_BSLASHincludesvg] = ACTIONS(12173), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12173), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12173), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12173), + [anon_sym_BSLASHimport] = ACTIONS(12173), + [anon_sym_BSLASHsubimport] = ACTIONS(12173), + [anon_sym_BSLASHinputfrom] = ACTIONS(12173), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12173), + [anon_sym_BSLASHincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHlabel] = ACTIONS(12173), + [anon_sym_BSLASHref] = ACTIONS(12173), + [anon_sym_BSLASHvref] = ACTIONS(12173), + [anon_sym_BSLASHVref] = ACTIONS(12173), + [anon_sym_BSLASHautoref] = ACTIONS(12173), + [anon_sym_BSLASHpageref] = ACTIONS(12173), + [anon_sym_BSLASHcref] = ACTIONS(12173), + [anon_sym_BSLASHCref] = ACTIONS(12173), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnameCref] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHlabelcref] = ACTIONS(12173), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12173), + [anon_sym_BSLASHeqref] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange] = ACTIONS(12173), + [anon_sym_BSLASHCrefrange] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewlabel] = ACTIONS(12173), + [anon_sym_BSLASHnewcommand] = ACTIONS(12173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12173), + [anon_sym_BSLASHgls] = ACTIONS(12173), + [anon_sym_BSLASHGls] = ACTIONS(12173), + [anon_sym_BSLASHGLS] = ACTIONS(12173), + [anon_sym_BSLASHglspl] = ACTIONS(12173), + [anon_sym_BSLASHGlspl] = ACTIONS(12173), + [anon_sym_BSLASHGLSpl] = ACTIONS(12173), + [anon_sym_BSLASHglsdisp] = ACTIONS(12173), + [anon_sym_BSLASHglslink] = ACTIONS(12173), + [anon_sym_BSLASHglstext] = ACTIONS(12173), + [anon_sym_BSLASHGlstext] = ACTIONS(12173), + [anon_sym_BSLASHGLStext] = ACTIONS(12173), + [anon_sym_BSLASHglsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12173), + [anon_sym_BSLASHglsplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSplural] = ACTIONS(12173), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHglsname] = ACTIONS(12173), + [anon_sym_BSLASHGlsname] = ACTIONS(12173), + [anon_sym_BSLASHGLSname] = ACTIONS(12173), + [anon_sym_BSLASHglssymbol] = ACTIONS(12173), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12173), + [anon_sym_BSLASHglsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12173), + [anon_sym_BSLASHglsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12173), + [anon_sym_BSLASHglsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12173), + [anon_sym_BSLASHglsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12173), + [anon_sym_BSLASHglsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12173), + [anon_sym_BSLASHnewacronym] = ACTIONS(12173), + [anon_sym_BSLASHacrshort] = ACTIONS(12173), + [anon_sym_BSLASHAcrshort] = ACTIONS(12173), + [anon_sym_BSLASHACRshort] = ACTIONS(12173), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12173), + [anon_sym_BSLASHacrlong] = ACTIONS(12173), + [anon_sym_BSLASHAcrlong] = ACTIONS(12173), + [anon_sym_BSLASHACRlong] = ACTIONS(12173), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12173), + [anon_sym_BSLASHacrfull] = ACTIONS(12173), + [anon_sym_BSLASHAcrfull] = ACTIONS(12173), + [anon_sym_BSLASHACRfull] = ACTIONS(12173), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12173), + [anon_sym_BSLASHacs] = ACTIONS(12173), + [anon_sym_BSLASHAcs] = ACTIONS(12173), + [anon_sym_BSLASHacsp] = ACTIONS(12173), + [anon_sym_BSLASHAcsp] = ACTIONS(12173), + [anon_sym_BSLASHacl] = ACTIONS(12173), + [anon_sym_BSLASHAcl] = ACTIONS(12173), + [anon_sym_BSLASHaclp] = ACTIONS(12173), + [anon_sym_BSLASHAclp] = ACTIONS(12173), + [anon_sym_BSLASHacf] = ACTIONS(12173), + [anon_sym_BSLASHAcf] = ACTIONS(12173), + [anon_sym_BSLASHacfp] = ACTIONS(12173), + [anon_sym_BSLASHAcfp] = ACTIONS(12173), + [anon_sym_BSLASHac] = ACTIONS(12173), + [anon_sym_BSLASHAc] = ACTIONS(12173), + [anon_sym_BSLASHacp] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12173), + [anon_sym_BSLASHcolor] = ACTIONS(12173), + [anon_sym_BSLASHcolorbox] = ACTIONS(12173), + [anon_sym_BSLASHtextcolor] = ACTIONS(12173), + [anon_sym_BSLASHpagecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12173), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12173), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12173), + }, + [1617] = { + [sym_generic_command_name] = ACTIONS(12160), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12160), + [aux_sym_subparagraph_token1] = ACTIONS(12160), + [anon_sym_BSLASHitem] = ACTIONS(12160), + [anon_sym_LBRACK] = ACTIONS(12158), + [anon_sym_RBRACK] = ACTIONS(12158), + [anon_sym_LBRACE] = ACTIONS(12158), + [anon_sym_RBRACE] = ACTIONS(12158), + [anon_sym_LPAREN] = ACTIONS(12158), + [anon_sym_COMMA] = ACTIONS(12158), + [anon_sym_EQ] = ACTIONS(12158), + [sym_word] = ACTIONS(12158), + [sym_param] = ACTIONS(12158), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12158), + [anon_sym_DOLLAR] = ACTIONS(12160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12158), + [anon_sym_BSLASHbegin] = ACTIONS(12160), + [anon_sym_BSLASHcaption] = ACTIONS(12160), + [anon_sym_BSLASHcite] = ACTIONS(12160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCite] = ACTIONS(12160), + [anon_sym_BSLASHnocite] = ACTIONS(12160), + [anon_sym_BSLASHcitet] = ACTIONS(12160), + [anon_sym_BSLASHcitep] = ACTIONS(12160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteauthor] = ACTIONS(12160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitetitle] = ACTIONS(12160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteyear] = ACTIONS(12160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitedate] = ACTIONS(12160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteurl] = ACTIONS(12160), + [anon_sym_BSLASHfullcite] = ACTIONS(12160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12160), + [anon_sym_BSLASHcitealt] = ACTIONS(12160), + [anon_sym_BSLASHcitealp] = ACTIONS(12160), + [anon_sym_BSLASHcitetext] = ACTIONS(12160), + [anon_sym_BSLASHparencite] = ACTIONS(12160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHParencite] = ACTIONS(12160), + [anon_sym_BSLASHfootcite] = ACTIONS(12160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12160), + [anon_sym_BSLASHtextcite] = ACTIONS(12160), + [anon_sym_BSLASHTextcite] = ACTIONS(12160), + [anon_sym_BSLASHsmartcite] = ACTIONS(12160), + [anon_sym_BSLASHSmartcite] = ACTIONS(12160), + [anon_sym_BSLASHsupercite] = ACTIONS(12160), + [anon_sym_BSLASHautocite] = ACTIONS(12160), + [anon_sym_BSLASHAutocite] = ACTIONS(12160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHvolcite] = ACTIONS(12160), + [anon_sym_BSLASHVolcite] = ACTIONS(12160), + [anon_sym_BSLASHpvolcite] = ACTIONS(12160), + [anon_sym_BSLASHPvolcite] = ACTIONS(12160), + [anon_sym_BSLASHfvolcite] = ACTIONS(12160), + [anon_sym_BSLASHftvolcite] = ACTIONS(12160), + [anon_sym_BSLASHsvolcite] = ACTIONS(12160), + [anon_sym_BSLASHSvolcite] = ACTIONS(12160), + [anon_sym_BSLASHtvolcite] = ACTIONS(12160), + [anon_sym_BSLASHTvolcite] = ACTIONS(12160), + [anon_sym_BSLASHavolcite] = ACTIONS(12160), + [anon_sym_BSLASHAvolcite] = ACTIONS(12160), + [anon_sym_BSLASHnotecite] = ACTIONS(12160), + [anon_sym_BSLASHpnotecite] = ACTIONS(12160), + [anon_sym_BSLASHPnotecite] = ACTIONS(12160), + [anon_sym_BSLASHfnotecite] = ACTIONS(12160), + [anon_sym_BSLASHusepackage] = ACTIONS(12160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12160), + [anon_sym_BSLASHinclude] = ACTIONS(12160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12160), + [anon_sym_BSLASHinput] = ACTIONS(12160), + [anon_sym_BSLASHsubfile] = ACTIONS(12160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12160), + [anon_sym_BSLASHbibliography] = ACTIONS(12160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12160), + [anon_sym_BSLASHincludesvg] = ACTIONS(12160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12160), + [anon_sym_BSLASHimport] = ACTIONS(12160), + [anon_sym_BSLASHsubimport] = ACTIONS(12160), + [anon_sym_BSLASHinputfrom] = ACTIONS(12160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12160), + [anon_sym_BSLASHincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHlabel] = ACTIONS(12160), + [anon_sym_BSLASHref] = ACTIONS(12160), + [anon_sym_BSLASHvref] = ACTIONS(12160), + [anon_sym_BSLASHVref] = ACTIONS(12160), + [anon_sym_BSLASHautoref] = ACTIONS(12160), + [anon_sym_BSLASHpageref] = ACTIONS(12160), + [anon_sym_BSLASHcref] = ACTIONS(12160), + [anon_sym_BSLASHCref] = ACTIONS(12160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnameCref] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHlabelcref] = ACTIONS(12160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12160), + [anon_sym_BSLASHeqref] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange] = ACTIONS(12160), + [anon_sym_BSLASHCrefrange] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewlabel] = ACTIONS(12160), + [anon_sym_BSLASHnewcommand] = ACTIONS(12160), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12160), + [anon_sym_BSLASHgls] = ACTIONS(12160), + [anon_sym_BSLASHGls] = ACTIONS(12160), + [anon_sym_BSLASHGLS] = ACTIONS(12160), + [anon_sym_BSLASHglspl] = ACTIONS(12160), + [anon_sym_BSLASHGlspl] = ACTIONS(12160), + [anon_sym_BSLASHGLSpl] = ACTIONS(12160), + [anon_sym_BSLASHglsdisp] = ACTIONS(12160), + [anon_sym_BSLASHglslink] = ACTIONS(12160), + [anon_sym_BSLASHglstext] = ACTIONS(12160), + [anon_sym_BSLASHGlstext] = ACTIONS(12160), + [anon_sym_BSLASHGLStext] = ACTIONS(12160), + [anon_sym_BSLASHglsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12160), + [anon_sym_BSLASHglsplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSplural] = ACTIONS(12160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHglsname] = ACTIONS(12160), + [anon_sym_BSLASHGlsname] = ACTIONS(12160), + [anon_sym_BSLASHGLSname] = ACTIONS(12160), + [anon_sym_BSLASHglssymbol] = ACTIONS(12160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12160), + [anon_sym_BSLASHglsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12160), + [anon_sym_BSLASHglsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12160), + [anon_sym_BSLASHglsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12160), + [anon_sym_BSLASHglsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12160), + [anon_sym_BSLASHglsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12160), + [anon_sym_BSLASHnewacronym] = ACTIONS(12160), + [anon_sym_BSLASHacrshort] = ACTIONS(12160), + [anon_sym_BSLASHAcrshort] = ACTIONS(12160), + [anon_sym_BSLASHACRshort] = ACTIONS(12160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12160), + [anon_sym_BSLASHacrlong] = ACTIONS(12160), + [anon_sym_BSLASHAcrlong] = ACTIONS(12160), + [anon_sym_BSLASHACRlong] = ACTIONS(12160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12160), + [anon_sym_BSLASHacrfull] = ACTIONS(12160), + [anon_sym_BSLASHAcrfull] = ACTIONS(12160), + [anon_sym_BSLASHACRfull] = ACTIONS(12160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12160), + [anon_sym_BSLASHacs] = ACTIONS(12160), + [anon_sym_BSLASHAcs] = ACTIONS(12160), + [anon_sym_BSLASHacsp] = ACTIONS(12160), + [anon_sym_BSLASHAcsp] = ACTIONS(12160), + [anon_sym_BSLASHacl] = ACTIONS(12160), + [anon_sym_BSLASHAcl] = ACTIONS(12160), + [anon_sym_BSLASHaclp] = ACTIONS(12160), + [anon_sym_BSLASHAclp] = ACTIONS(12160), + [anon_sym_BSLASHacf] = ACTIONS(12160), + [anon_sym_BSLASHAcf] = ACTIONS(12160), + [anon_sym_BSLASHacfp] = ACTIONS(12160), + [anon_sym_BSLASHAcfp] = ACTIONS(12160), + [anon_sym_BSLASHac] = ACTIONS(12160), + [anon_sym_BSLASHAc] = ACTIONS(12160), + [anon_sym_BSLASHacp] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12160), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12160), + [anon_sym_BSLASHcolor] = ACTIONS(12160), + [anon_sym_BSLASHcolorbox] = ACTIONS(12160), + [anon_sym_BSLASHtextcolor] = ACTIONS(12160), + [anon_sym_BSLASHpagecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12160), + }, + [1618] = { + [sym_generic_command_name] = ACTIONS(12156), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12156), + [aux_sym_subparagraph_token1] = ACTIONS(12156), + [anon_sym_BSLASHitem] = ACTIONS(12156), + [anon_sym_LBRACK] = ACTIONS(12154), + [anon_sym_RBRACK] = ACTIONS(12154), + [anon_sym_LBRACE] = ACTIONS(12154), + [anon_sym_RBRACE] = ACTIONS(12154), + [anon_sym_LPAREN] = ACTIONS(12154), + [anon_sym_COMMA] = ACTIONS(12154), + [anon_sym_EQ] = ACTIONS(12154), + [sym_word] = ACTIONS(12154), + [sym_param] = ACTIONS(12154), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12154), + [anon_sym_DOLLAR] = ACTIONS(12156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12154), + [anon_sym_BSLASHbegin] = ACTIONS(12156), + [anon_sym_BSLASHcaption] = ACTIONS(12156), + [anon_sym_BSLASHcite] = ACTIONS(12156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCite] = ACTIONS(12156), + [anon_sym_BSLASHnocite] = ACTIONS(12156), + [anon_sym_BSLASHcitet] = ACTIONS(12156), + [anon_sym_BSLASHcitep] = ACTIONS(12156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteauthor] = ACTIONS(12156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitetitle] = ACTIONS(12156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteyear] = ACTIONS(12156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitedate] = ACTIONS(12156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteurl] = ACTIONS(12156), + [anon_sym_BSLASHfullcite] = ACTIONS(12156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12156), + [anon_sym_BSLASHcitealt] = ACTIONS(12156), + [anon_sym_BSLASHcitealp] = ACTIONS(12156), + [anon_sym_BSLASHcitetext] = ACTIONS(12156), + [anon_sym_BSLASHparencite] = ACTIONS(12156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHParencite] = ACTIONS(12156), + [anon_sym_BSLASHfootcite] = ACTIONS(12156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12156), + [anon_sym_BSLASHtextcite] = ACTIONS(12156), + [anon_sym_BSLASHTextcite] = ACTIONS(12156), + [anon_sym_BSLASHsmartcite] = ACTIONS(12156), + [anon_sym_BSLASHSmartcite] = ACTIONS(12156), + [anon_sym_BSLASHsupercite] = ACTIONS(12156), + [anon_sym_BSLASHautocite] = ACTIONS(12156), + [anon_sym_BSLASHAutocite] = ACTIONS(12156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHvolcite] = ACTIONS(12156), + [anon_sym_BSLASHVolcite] = ACTIONS(12156), + [anon_sym_BSLASHpvolcite] = ACTIONS(12156), + [anon_sym_BSLASHPvolcite] = ACTIONS(12156), + [anon_sym_BSLASHfvolcite] = ACTIONS(12156), + [anon_sym_BSLASHftvolcite] = ACTIONS(12156), + [anon_sym_BSLASHsvolcite] = ACTIONS(12156), + [anon_sym_BSLASHSvolcite] = ACTIONS(12156), + [anon_sym_BSLASHtvolcite] = ACTIONS(12156), + [anon_sym_BSLASHTvolcite] = ACTIONS(12156), + [anon_sym_BSLASHavolcite] = ACTIONS(12156), + [anon_sym_BSLASHAvolcite] = ACTIONS(12156), + [anon_sym_BSLASHnotecite] = ACTIONS(12156), + [anon_sym_BSLASHpnotecite] = ACTIONS(12156), + [anon_sym_BSLASHPnotecite] = ACTIONS(12156), + [anon_sym_BSLASHfnotecite] = ACTIONS(12156), + [anon_sym_BSLASHusepackage] = ACTIONS(12156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12156), + [anon_sym_BSLASHinclude] = ACTIONS(12156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12156), + [anon_sym_BSLASHinput] = ACTIONS(12156), + [anon_sym_BSLASHsubfile] = ACTIONS(12156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12156), + [anon_sym_BSLASHbibliography] = ACTIONS(12156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12156), + [anon_sym_BSLASHincludesvg] = ACTIONS(12156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12156), + [anon_sym_BSLASHimport] = ACTIONS(12156), + [anon_sym_BSLASHsubimport] = ACTIONS(12156), + [anon_sym_BSLASHinputfrom] = ACTIONS(12156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12156), + [anon_sym_BSLASHincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHlabel] = ACTIONS(12156), + [anon_sym_BSLASHref] = ACTIONS(12156), + [anon_sym_BSLASHvref] = ACTIONS(12156), + [anon_sym_BSLASHVref] = ACTIONS(12156), + [anon_sym_BSLASHautoref] = ACTIONS(12156), + [anon_sym_BSLASHpageref] = ACTIONS(12156), + [anon_sym_BSLASHcref] = ACTIONS(12156), + [anon_sym_BSLASHCref] = ACTIONS(12156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnameCref] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHlabelcref] = ACTIONS(12156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12156), + [anon_sym_BSLASHeqref] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange] = ACTIONS(12156), + [anon_sym_BSLASHCrefrange] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewlabel] = ACTIONS(12156), + [anon_sym_BSLASHnewcommand] = ACTIONS(12156), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12156), + [anon_sym_BSLASHgls] = ACTIONS(12156), + [anon_sym_BSLASHGls] = ACTIONS(12156), + [anon_sym_BSLASHGLS] = ACTIONS(12156), + [anon_sym_BSLASHglspl] = ACTIONS(12156), + [anon_sym_BSLASHGlspl] = ACTIONS(12156), + [anon_sym_BSLASHGLSpl] = ACTIONS(12156), + [anon_sym_BSLASHglsdisp] = ACTIONS(12156), + [anon_sym_BSLASHglslink] = ACTIONS(12156), + [anon_sym_BSLASHglstext] = ACTIONS(12156), + [anon_sym_BSLASHGlstext] = ACTIONS(12156), + [anon_sym_BSLASHGLStext] = ACTIONS(12156), + [anon_sym_BSLASHglsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12156), + [anon_sym_BSLASHglsplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSplural] = ACTIONS(12156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHglsname] = ACTIONS(12156), + [anon_sym_BSLASHGlsname] = ACTIONS(12156), + [anon_sym_BSLASHGLSname] = ACTIONS(12156), + [anon_sym_BSLASHglssymbol] = ACTIONS(12156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12156), + [anon_sym_BSLASHglsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12156), + [anon_sym_BSLASHglsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12156), + [anon_sym_BSLASHglsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12156), + [anon_sym_BSLASHglsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12156), + [anon_sym_BSLASHglsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12156), + [anon_sym_BSLASHnewacronym] = ACTIONS(12156), + [anon_sym_BSLASHacrshort] = ACTIONS(12156), + [anon_sym_BSLASHAcrshort] = ACTIONS(12156), + [anon_sym_BSLASHACRshort] = ACTIONS(12156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12156), + [anon_sym_BSLASHacrlong] = ACTIONS(12156), + [anon_sym_BSLASHAcrlong] = ACTIONS(12156), + [anon_sym_BSLASHACRlong] = ACTIONS(12156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12156), + [anon_sym_BSLASHacrfull] = ACTIONS(12156), + [anon_sym_BSLASHAcrfull] = ACTIONS(12156), + [anon_sym_BSLASHACRfull] = ACTIONS(12156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12156), + [anon_sym_BSLASHacs] = ACTIONS(12156), + [anon_sym_BSLASHAcs] = ACTIONS(12156), + [anon_sym_BSLASHacsp] = ACTIONS(12156), + [anon_sym_BSLASHAcsp] = ACTIONS(12156), + [anon_sym_BSLASHacl] = ACTIONS(12156), + [anon_sym_BSLASHAcl] = ACTIONS(12156), + [anon_sym_BSLASHaclp] = ACTIONS(12156), + [anon_sym_BSLASHAclp] = ACTIONS(12156), + [anon_sym_BSLASHacf] = ACTIONS(12156), + [anon_sym_BSLASHAcf] = ACTIONS(12156), + [anon_sym_BSLASHacfp] = ACTIONS(12156), + [anon_sym_BSLASHAcfp] = ACTIONS(12156), + [anon_sym_BSLASHac] = ACTIONS(12156), + [anon_sym_BSLASHAc] = ACTIONS(12156), + [anon_sym_BSLASHacp] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12156), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12156), + [anon_sym_BSLASHcolor] = ACTIONS(12156), + [anon_sym_BSLASHcolorbox] = ACTIONS(12156), + [anon_sym_BSLASHtextcolor] = ACTIONS(12156), + [anon_sym_BSLASHpagecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12156), + }, + [1619] = { + [sym_generic_command_name] = ACTIONS(12152), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12152), + [aux_sym_subparagraph_token1] = ACTIONS(12152), + [anon_sym_BSLASHitem] = ACTIONS(12152), + [anon_sym_LBRACK] = ACTIONS(12150), + [anon_sym_RBRACK] = ACTIONS(12150), + [anon_sym_LBRACE] = ACTIONS(12150), + [anon_sym_RBRACE] = ACTIONS(12150), + [anon_sym_LPAREN] = ACTIONS(12150), + [anon_sym_COMMA] = ACTIONS(12150), + [anon_sym_EQ] = ACTIONS(12150), + [sym_word] = ACTIONS(12150), + [sym_param] = ACTIONS(12150), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12150), + [anon_sym_DOLLAR] = ACTIONS(12152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12150), + [anon_sym_BSLASHbegin] = ACTIONS(12152), + [anon_sym_BSLASHcaption] = ACTIONS(12152), + [anon_sym_BSLASHcite] = ACTIONS(12152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCite] = ACTIONS(12152), + [anon_sym_BSLASHnocite] = ACTIONS(12152), + [anon_sym_BSLASHcitet] = ACTIONS(12152), + [anon_sym_BSLASHcitep] = ACTIONS(12152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteauthor] = ACTIONS(12152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitetitle] = ACTIONS(12152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteyear] = ACTIONS(12152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitedate] = ACTIONS(12152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteurl] = ACTIONS(12152), + [anon_sym_BSLASHfullcite] = ACTIONS(12152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12152), + [anon_sym_BSLASHcitealt] = ACTIONS(12152), + [anon_sym_BSLASHcitealp] = ACTIONS(12152), + [anon_sym_BSLASHcitetext] = ACTIONS(12152), + [anon_sym_BSLASHparencite] = ACTIONS(12152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHParencite] = ACTIONS(12152), + [anon_sym_BSLASHfootcite] = ACTIONS(12152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12152), + [anon_sym_BSLASHtextcite] = ACTIONS(12152), + [anon_sym_BSLASHTextcite] = ACTIONS(12152), + [anon_sym_BSLASHsmartcite] = ACTIONS(12152), + [anon_sym_BSLASHSmartcite] = ACTIONS(12152), + [anon_sym_BSLASHsupercite] = ACTIONS(12152), + [anon_sym_BSLASHautocite] = ACTIONS(12152), + [anon_sym_BSLASHAutocite] = ACTIONS(12152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHvolcite] = ACTIONS(12152), + [anon_sym_BSLASHVolcite] = ACTIONS(12152), + [anon_sym_BSLASHpvolcite] = ACTIONS(12152), + [anon_sym_BSLASHPvolcite] = ACTIONS(12152), + [anon_sym_BSLASHfvolcite] = ACTIONS(12152), + [anon_sym_BSLASHftvolcite] = ACTIONS(12152), + [anon_sym_BSLASHsvolcite] = ACTIONS(12152), + [anon_sym_BSLASHSvolcite] = ACTIONS(12152), + [anon_sym_BSLASHtvolcite] = ACTIONS(12152), + [anon_sym_BSLASHTvolcite] = ACTIONS(12152), + [anon_sym_BSLASHavolcite] = ACTIONS(12152), + [anon_sym_BSLASHAvolcite] = ACTIONS(12152), + [anon_sym_BSLASHnotecite] = ACTIONS(12152), + [anon_sym_BSLASHpnotecite] = ACTIONS(12152), + [anon_sym_BSLASHPnotecite] = ACTIONS(12152), + [anon_sym_BSLASHfnotecite] = ACTIONS(12152), + [anon_sym_BSLASHusepackage] = ACTIONS(12152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12152), + [anon_sym_BSLASHinclude] = ACTIONS(12152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12152), + [anon_sym_BSLASHinput] = ACTIONS(12152), + [anon_sym_BSLASHsubfile] = ACTIONS(12152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12152), + [anon_sym_BSLASHbibliography] = ACTIONS(12152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12152), + [anon_sym_BSLASHincludesvg] = ACTIONS(12152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12152), + [anon_sym_BSLASHimport] = ACTIONS(12152), + [anon_sym_BSLASHsubimport] = ACTIONS(12152), + [anon_sym_BSLASHinputfrom] = ACTIONS(12152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12152), + [anon_sym_BSLASHincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHlabel] = ACTIONS(12152), + [anon_sym_BSLASHref] = ACTIONS(12152), + [anon_sym_BSLASHvref] = ACTIONS(12152), + [anon_sym_BSLASHVref] = ACTIONS(12152), + [anon_sym_BSLASHautoref] = ACTIONS(12152), + [anon_sym_BSLASHpageref] = ACTIONS(12152), + [anon_sym_BSLASHcref] = ACTIONS(12152), + [anon_sym_BSLASHCref] = ACTIONS(12152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnameCref] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHlabelcref] = ACTIONS(12152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12152), + [anon_sym_BSLASHeqref] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange] = ACTIONS(12152), + [anon_sym_BSLASHCrefrange] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewlabel] = ACTIONS(12152), + [anon_sym_BSLASHnewcommand] = ACTIONS(12152), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12152), + [anon_sym_BSLASHgls] = ACTIONS(12152), + [anon_sym_BSLASHGls] = ACTIONS(12152), + [anon_sym_BSLASHGLS] = ACTIONS(12152), + [anon_sym_BSLASHglspl] = ACTIONS(12152), + [anon_sym_BSLASHGlspl] = ACTIONS(12152), + [anon_sym_BSLASHGLSpl] = ACTIONS(12152), + [anon_sym_BSLASHglsdisp] = ACTIONS(12152), + [anon_sym_BSLASHglslink] = ACTIONS(12152), + [anon_sym_BSLASHglstext] = ACTIONS(12152), + [anon_sym_BSLASHGlstext] = ACTIONS(12152), + [anon_sym_BSLASHGLStext] = ACTIONS(12152), + [anon_sym_BSLASHglsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12152), + [anon_sym_BSLASHglsplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSplural] = ACTIONS(12152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHglsname] = ACTIONS(12152), + [anon_sym_BSLASHGlsname] = ACTIONS(12152), + [anon_sym_BSLASHGLSname] = ACTIONS(12152), + [anon_sym_BSLASHglssymbol] = ACTIONS(12152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12152), + [anon_sym_BSLASHglsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12152), + [anon_sym_BSLASHglsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12152), + [anon_sym_BSLASHglsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12152), + [anon_sym_BSLASHglsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12152), + [anon_sym_BSLASHglsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12152), + [anon_sym_BSLASHnewacronym] = ACTIONS(12152), + [anon_sym_BSLASHacrshort] = ACTIONS(12152), + [anon_sym_BSLASHAcrshort] = ACTIONS(12152), + [anon_sym_BSLASHACRshort] = ACTIONS(12152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12152), + [anon_sym_BSLASHacrlong] = ACTIONS(12152), + [anon_sym_BSLASHAcrlong] = ACTIONS(12152), + [anon_sym_BSLASHACRlong] = ACTIONS(12152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12152), + [anon_sym_BSLASHacrfull] = ACTIONS(12152), + [anon_sym_BSLASHAcrfull] = ACTIONS(12152), + [anon_sym_BSLASHACRfull] = ACTIONS(12152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12152), + [anon_sym_BSLASHacs] = ACTIONS(12152), + [anon_sym_BSLASHAcs] = ACTIONS(12152), + [anon_sym_BSLASHacsp] = ACTIONS(12152), + [anon_sym_BSLASHAcsp] = ACTIONS(12152), + [anon_sym_BSLASHacl] = ACTIONS(12152), + [anon_sym_BSLASHAcl] = ACTIONS(12152), + [anon_sym_BSLASHaclp] = ACTIONS(12152), + [anon_sym_BSLASHAclp] = ACTIONS(12152), + [anon_sym_BSLASHacf] = ACTIONS(12152), + [anon_sym_BSLASHAcf] = ACTIONS(12152), + [anon_sym_BSLASHacfp] = ACTIONS(12152), + [anon_sym_BSLASHAcfp] = ACTIONS(12152), + [anon_sym_BSLASHac] = ACTIONS(12152), + [anon_sym_BSLASHAc] = ACTIONS(12152), + [anon_sym_BSLASHacp] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12152), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12152), + [anon_sym_BSLASHcolor] = ACTIONS(12152), + [anon_sym_BSLASHcolorbox] = ACTIONS(12152), + [anon_sym_BSLASHtextcolor] = ACTIONS(12152), + [anon_sym_BSLASHpagecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12152), + }, + [1620] = { + [sym_generic_command_name] = ACTIONS(12148), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12148), + [aux_sym_subparagraph_token1] = ACTIONS(12148), + [anon_sym_BSLASHitem] = ACTIONS(12148), + [anon_sym_LBRACK] = ACTIONS(12146), + [anon_sym_RBRACK] = ACTIONS(12146), + [anon_sym_LBRACE] = ACTIONS(12146), + [anon_sym_RBRACE] = ACTIONS(12146), + [anon_sym_LPAREN] = ACTIONS(12146), + [anon_sym_COMMA] = ACTIONS(12146), + [anon_sym_EQ] = ACTIONS(12146), + [sym_word] = ACTIONS(12146), + [sym_param] = ACTIONS(12146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12146), + [anon_sym_DOLLAR] = ACTIONS(12148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12146), + [anon_sym_BSLASHbegin] = ACTIONS(12148), + [anon_sym_BSLASHcaption] = ACTIONS(12148), + [anon_sym_BSLASHcite] = ACTIONS(12148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCite] = ACTIONS(12148), + [anon_sym_BSLASHnocite] = ACTIONS(12148), + [anon_sym_BSLASHcitet] = ACTIONS(12148), + [anon_sym_BSLASHcitep] = ACTIONS(12148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteauthor] = ACTIONS(12148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitetitle] = ACTIONS(12148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteyear] = ACTIONS(12148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitedate] = ACTIONS(12148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteurl] = ACTIONS(12148), + [anon_sym_BSLASHfullcite] = ACTIONS(12148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12148), + [anon_sym_BSLASHcitealt] = ACTIONS(12148), + [anon_sym_BSLASHcitealp] = ACTIONS(12148), + [anon_sym_BSLASHcitetext] = ACTIONS(12148), + [anon_sym_BSLASHparencite] = ACTIONS(12148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHParencite] = ACTIONS(12148), + [anon_sym_BSLASHfootcite] = ACTIONS(12148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12148), + [anon_sym_BSLASHtextcite] = ACTIONS(12148), + [anon_sym_BSLASHTextcite] = ACTIONS(12148), + [anon_sym_BSLASHsmartcite] = ACTIONS(12148), + [anon_sym_BSLASHSmartcite] = ACTIONS(12148), + [anon_sym_BSLASHsupercite] = ACTIONS(12148), + [anon_sym_BSLASHautocite] = ACTIONS(12148), + [anon_sym_BSLASHAutocite] = ACTIONS(12148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHvolcite] = ACTIONS(12148), + [anon_sym_BSLASHVolcite] = ACTIONS(12148), + [anon_sym_BSLASHpvolcite] = ACTIONS(12148), + [anon_sym_BSLASHPvolcite] = ACTIONS(12148), + [anon_sym_BSLASHfvolcite] = ACTIONS(12148), + [anon_sym_BSLASHftvolcite] = ACTIONS(12148), + [anon_sym_BSLASHsvolcite] = ACTIONS(12148), + [anon_sym_BSLASHSvolcite] = ACTIONS(12148), + [anon_sym_BSLASHtvolcite] = ACTIONS(12148), + [anon_sym_BSLASHTvolcite] = ACTIONS(12148), + [anon_sym_BSLASHavolcite] = ACTIONS(12148), + [anon_sym_BSLASHAvolcite] = ACTIONS(12148), + [anon_sym_BSLASHnotecite] = ACTIONS(12148), + [anon_sym_BSLASHpnotecite] = ACTIONS(12148), + [anon_sym_BSLASHPnotecite] = ACTIONS(12148), + [anon_sym_BSLASHfnotecite] = ACTIONS(12148), + [anon_sym_BSLASHusepackage] = ACTIONS(12148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12148), + [anon_sym_BSLASHinclude] = ACTIONS(12148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12148), + [anon_sym_BSLASHinput] = ACTIONS(12148), + [anon_sym_BSLASHsubfile] = ACTIONS(12148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12148), + [anon_sym_BSLASHbibliography] = ACTIONS(12148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12148), + [anon_sym_BSLASHincludesvg] = ACTIONS(12148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12148), + [anon_sym_BSLASHimport] = ACTIONS(12148), + [anon_sym_BSLASHsubimport] = ACTIONS(12148), + [anon_sym_BSLASHinputfrom] = ACTIONS(12148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12148), + [anon_sym_BSLASHincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHlabel] = ACTIONS(12148), + [anon_sym_BSLASHref] = ACTIONS(12148), + [anon_sym_BSLASHvref] = ACTIONS(12148), + [anon_sym_BSLASHVref] = ACTIONS(12148), + [anon_sym_BSLASHautoref] = ACTIONS(12148), + [anon_sym_BSLASHpageref] = ACTIONS(12148), + [anon_sym_BSLASHcref] = ACTIONS(12148), + [anon_sym_BSLASHCref] = ACTIONS(12148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnameCref] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHlabelcref] = ACTIONS(12148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12148), + [anon_sym_BSLASHeqref] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange] = ACTIONS(12148), + [anon_sym_BSLASHCrefrange] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewlabel] = ACTIONS(12148), + [anon_sym_BSLASHnewcommand] = ACTIONS(12148), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12148), + [anon_sym_BSLASHgls] = ACTIONS(12148), + [anon_sym_BSLASHGls] = ACTIONS(12148), + [anon_sym_BSLASHGLS] = ACTIONS(12148), + [anon_sym_BSLASHglspl] = ACTIONS(12148), + [anon_sym_BSLASHGlspl] = ACTIONS(12148), + [anon_sym_BSLASHGLSpl] = ACTIONS(12148), + [anon_sym_BSLASHglsdisp] = ACTIONS(12148), + [anon_sym_BSLASHglslink] = ACTIONS(12148), + [anon_sym_BSLASHglstext] = ACTIONS(12148), + [anon_sym_BSLASHGlstext] = ACTIONS(12148), + [anon_sym_BSLASHGLStext] = ACTIONS(12148), + [anon_sym_BSLASHglsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12148), + [anon_sym_BSLASHglsplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSplural] = ACTIONS(12148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHglsname] = ACTIONS(12148), + [anon_sym_BSLASHGlsname] = ACTIONS(12148), + [anon_sym_BSLASHGLSname] = ACTIONS(12148), + [anon_sym_BSLASHglssymbol] = ACTIONS(12148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12148), + [anon_sym_BSLASHglsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12148), + [anon_sym_BSLASHglsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12148), + [anon_sym_BSLASHglsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12148), + [anon_sym_BSLASHglsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12148), + [anon_sym_BSLASHglsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12148), + [anon_sym_BSLASHnewacronym] = ACTIONS(12148), + [anon_sym_BSLASHacrshort] = ACTIONS(12148), + [anon_sym_BSLASHAcrshort] = ACTIONS(12148), + [anon_sym_BSLASHACRshort] = ACTIONS(12148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12148), + [anon_sym_BSLASHacrlong] = ACTIONS(12148), + [anon_sym_BSLASHAcrlong] = ACTIONS(12148), + [anon_sym_BSLASHACRlong] = ACTIONS(12148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12148), + [anon_sym_BSLASHacrfull] = ACTIONS(12148), + [anon_sym_BSLASHAcrfull] = ACTIONS(12148), + [anon_sym_BSLASHACRfull] = ACTIONS(12148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12148), + [anon_sym_BSLASHacs] = ACTIONS(12148), + [anon_sym_BSLASHAcs] = ACTIONS(12148), + [anon_sym_BSLASHacsp] = ACTIONS(12148), + [anon_sym_BSLASHAcsp] = ACTIONS(12148), + [anon_sym_BSLASHacl] = ACTIONS(12148), + [anon_sym_BSLASHAcl] = ACTIONS(12148), + [anon_sym_BSLASHaclp] = ACTIONS(12148), + [anon_sym_BSLASHAclp] = ACTIONS(12148), + [anon_sym_BSLASHacf] = ACTIONS(12148), + [anon_sym_BSLASHAcf] = ACTIONS(12148), + [anon_sym_BSLASHacfp] = ACTIONS(12148), + [anon_sym_BSLASHAcfp] = ACTIONS(12148), + [anon_sym_BSLASHac] = ACTIONS(12148), + [anon_sym_BSLASHAc] = ACTIONS(12148), + [anon_sym_BSLASHacp] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12148), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12148), + [anon_sym_BSLASHcolor] = ACTIONS(12148), + [anon_sym_BSLASHcolorbox] = ACTIONS(12148), + [anon_sym_BSLASHtextcolor] = ACTIONS(12148), + [anon_sym_BSLASHpagecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12148), + }, + [1621] = { + [sym_generic_command_name] = ACTIONS(12144), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12144), + [aux_sym_subparagraph_token1] = ACTIONS(12144), + [anon_sym_BSLASHitem] = ACTIONS(12144), + [anon_sym_LBRACK] = ACTIONS(12142), + [anon_sym_RBRACK] = ACTIONS(12142), + [anon_sym_LBRACE] = ACTIONS(12142), + [anon_sym_RBRACE] = ACTIONS(12142), + [anon_sym_LPAREN] = ACTIONS(12142), + [anon_sym_COMMA] = ACTIONS(12142), + [anon_sym_EQ] = ACTIONS(12142), + [sym_word] = ACTIONS(12142), + [sym_param] = ACTIONS(12142), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12142), + [anon_sym_DOLLAR] = ACTIONS(12144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12142), + [anon_sym_BSLASHbegin] = ACTIONS(12144), + [anon_sym_BSLASHcaption] = ACTIONS(12144), + [anon_sym_BSLASHcite] = ACTIONS(12144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCite] = ACTIONS(12144), + [anon_sym_BSLASHnocite] = ACTIONS(12144), + [anon_sym_BSLASHcitet] = ACTIONS(12144), + [anon_sym_BSLASHcitep] = ACTIONS(12144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteauthor] = ACTIONS(12144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitetitle] = ACTIONS(12144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteyear] = ACTIONS(12144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitedate] = ACTIONS(12144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteurl] = ACTIONS(12144), + [anon_sym_BSLASHfullcite] = ACTIONS(12144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12144), + [anon_sym_BSLASHcitealt] = ACTIONS(12144), + [anon_sym_BSLASHcitealp] = ACTIONS(12144), + [anon_sym_BSLASHcitetext] = ACTIONS(12144), + [anon_sym_BSLASHparencite] = ACTIONS(12144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHParencite] = ACTIONS(12144), + [anon_sym_BSLASHfootcite] = ACTIONS(12144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12144), + [anon_sym_BSLASHtextcite] = ACTIONS(12144), + [anon_sym_BSLASHTextcite] = ACTIONS(12144), + [anon_sym_BSLASHsmartcite] = ACTIONS(12144), + [anon_sym_BSLASHSmartcite] = ACTIONS(12144), + [anon_sym_BSLASHsupercite] = ACTIONS(12144), + [anon_sym_BSLASHautocite] = ACTIONS(12144), + [anon_sym_BSLASHAutocite] = ACTIONS(12144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHvolcite] = ACTIONS(12144), + [anon_sym_BSLASHVolcite] = ACTIONS(12144), + [anon_sym_BSLASHpvolcite] = ACTIONS(12144), + [anon_sym_BSLASHPvolcite] = ACTIONS(12144), + [anon_sym_BSLASHfvolcite] = ACTIONS(12144), + [anon_sym_BSLASHftvolcite] = ACTIONS(12144), + [anon_sym_BSLASHsvolcite] = ACTIONS(12144), + [anon_sym_BSLASHSvolcite] = ACTIONS(12144), + [anon_sym_BSLASHtvolcite] = ACTIONS(12144), + [anon_sym_BSLASHTvolcite] = ACTIONS(12144), + [anon_sym_BSLASHavolcite] = ACTIONS(12144), + [anon_sym_BSLASHAvolcite] = ACTIONS(12144), + [anon_sym_BSLASHnotecite] = ACTIONS(12144), + [anon_sym_BSLASHpnotecite] = ACTIONS(12144), + [anon_sym_BSLASHPnotecite] = ACTIONS(12144), + [anon_sym_BSLASHfnotecite] = ACTIONS(12144), + [anon_sym_BSLASHusepackage] = ACTIONS(12144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12144), + [anon_sym_BSLASHinclude] = ACTIONS(12144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12144), + [anon_sym_BSLASHinput] = ACTIONS(12144), + [anon_sym_BSLASHsubfile] = ACTIONS(12144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12144), + [anon_sym_BSLASHbibliography] = ACTIONS(12144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12144), + [anon_sym_BSLASHincludesvg] = ACTIONS(12144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12144), + [anon_sym_BSLASHimport] = ACTIONS(12144), + [anon_sym_BSLASHsubimport] = ACTIONS(12144), + [anon_sym_BSLASHinputfrom] = ACTIONS(12144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12144), + [anon_sym_BSLASHincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHlabel] = ACTIONS(12144), + [anon_sym_BSLASHref] = ACTIONS(12144), + [anon_sym_BSLASHvref] = ACTIONS(12144), + [anon_sym_BSLASHVref] = ACTIONS(12144), + [anon_sym_BSLASHautoref] = ACTIONS(12144), + [anon_sym_BSLASHpageref] = ACTIONS(12144), + [anon_sym_BSLASHcref] = ACTIONS(12144), + [anon_sym_BSLASHCref] = ACTIONS(12144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnameCref] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHlabelcref] = ACTIONS(12144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12144), + [anon_sym_BSLASHeqref] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange] = ACTIONS(12144), + [anon_sym_BSLASHCrefrange] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewlabel] = ACTIONS(12144), + [anon_sym_BSLASHnewcommand] = ACTIONS(12144), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12144), + [anon_sym_BSLASHgls] = ACTIONS(12144), + [anon_sym_BSLASHGls] = ACTIONS(12144), + [anon_sym_BSLASHGLS] = ACTIONS(12144), + [anon_sym_BSLASHglspl] = ACTIONS(12144), + [anon_sym_BSLASHGlspl] = ACTIONS(12144), + [anon_sym_BSLASHGLSpl] = ACTIONS(12144), + [anon_sym_BSLASHglsdisp] = ACTIONS(12144), + [anon_sym_BSLASHglslink] = ACTIONS(12144), + [anon_sym_BSLASHglstext] = ACTIONS(12144), + [anon_sym_BSLASHGlstext] = ACTIONS(12144), + [anon_sym_BSLASHGLStext] = ACTIONS(12144), + [anon_sym_BSLASHglsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12144), + [anon_sym_BSLASHglsplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSplural] = ACTIONS(12144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHglsname] = ACTIONS(12144), + [anon_sym_BSLASHGlsname] = ACTIONS(12144), + [anon_sym_BSLASHGLSname] = ACTIONS(12144), + [anon_sym_BSLASHglssymbol] = ACTIONS(12144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12144), + [anon_sym_BSLASHglsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12144), + [anon_sym_BSLASHglsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12144), + [anon_sym_BSLASHglsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12144), + [anon_sym_BSLASHglsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12144), + [anon_sym_BSLASHglsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12144), + [anon_sym_BSLASHnewacronym] = ACTIONS(12144), + [anon_sym_BSLASHacrshort] = ACTIONS(12144), + [anon_sym_BSLASHAcrshort] = ACTIONS(12144), + [anon_sym_BSLASHACRshort] = ACTIONS(12144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12144), + [anon_sym_BSLASHacrlong] = ACTIONS(12144), + [anon_sym_BSLASHAcrlong] = ACTIONS(12144), + [anon_sym_BSLASHACRlong] = ACTIONS(12144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12144), + [anon_sym_BSLASHacrfull] = ACTIONS(12144), + [anon_sym_BSLASHAcrfull] = ACTIONS(12144), + [anon_sym_BSLASHACRfull] = ACTIONS(12144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12144), + [anon_sym_BSLASHacs] = ACTIONS(12144), + [anon_sym_BSLASHAcs] = ACTIONS(12144), + [anon_sym_BSLASHacsp] = ACTIONS(12144), + [anon_sym_BSLASHAcsp] = ACTIONS(12144), + [anon_sym_BSLASHacl] = ACTIONS(12144), + [anon_sym_BSLASHAcl] = ACTIONS(12144), + [anon_sym_BSLASHaclp] = ACTIONS(12144), + [anon_sym_BSLASHAclp] = ACTIONS(12144), + [anon_sym_BSLASHacf] = ACTIONS(12144), + [anon_sym_BSLASHAcf] = ACTIONS(12144), + [anon_sym_BSLASHacfp] = ACTIONS(12144), + [anon_sym_BSLASHAcfp] = ACTIONS(12144), + [anon_sym_BSLASHac] = ACTIONS(12144), + [anon_sym_BSLASHAc] = ACTIONS(12144), + [anon_sym_BSLASHacp] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12144), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12144), + [anon_sym_BSLASHcolor] = ACTIONS(12144), + [anon_sym_BSLASHcolorbox] = ACTIONS(12144), + [anon_sym_BSLASHtextcolor] = ACTIONS(12144), + [anon_sym_BSLASHpagecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12144), + }, + [1622] = { + [sym_generic_command_name] = ACTIONS(12140), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12140), + [aux_sym_subparagraph_token1] = ACTIONS(12140), + [anon_sym_BSLASHitem] = ACTIONS(12140), + [anon_sym_LBRACK] = ACTIONS(12138), + [anon_sym_RBRACK] = ACTIONS(12138), + [anon_sym_LBRACE] = ACTIONS(12138), + [anon_sym_RBRACE] = ACTIONS(12138), + [anon_sym_LPAREN] = ACTIONS(12138), + [anon_sym_COMMA] = ACTIONS(12138), + [anon_sym_EQ] = ACTIONS(12138), + [sym_word] = ACTIONS(12138), + [sym_param] = ACTIONS(12138), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12138), + [anon_sym_DOLLAR] = ACTIONS(12140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12138), + [anon_sym_BSLASHbegin] = ACTIONS(12140), + [anon_sym_BSLASHcaption] = ACTIONS(12140), + [anon_sym_BSLASHcite] = ACTIONS(12140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCite] = ACTIONS(12140), + [anon_sym_BSLASHnocite] = ACTIONS(12140), + [anon_sym_BSLASHcitet] = ACTIONS(12140), + [anon_sym_BSLASHcitep] = ACTIONS(12140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteauthor] = ACTIONS(12140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitetitle] = ACTIONS(12140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteyear] = ACTIONS(12140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitedate] = ACTIONS(12140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteurl] = ACTIONS(12140), + [anon_sym_BSLASHfullcite] = ACTIONS(12140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12140), + [anon_sym_BSLASHcitealt] = ACTIONS(12140), + [anon_sym_BSLASHcitealp] = ACTIONS(12140), + [anon_sym_BSLASHcitetext] = ACTIONS(12140), + [anon_sym_BSLASHparencite] = ACTIONS(12140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHParencite] = ACTIONS(12140), + [anon_sym_BSLASHfootcite] = ACTIONS(12140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12140), + [anon_sym_BSLASHtextcite] = ACTIONS(12140), + [anon_sym_BSLASHTextcite] = ACTIONS(12140), + [anon_sym_BSLASHsmartcite] = ACTIONS(12140), + [anon_sym_BSLASHSmartcite] = ACTIONS(12140), + [anon_sym_BSLASHsupercite] = ACTIONS(12140), + [anon_sym_BSLASHautocite] = ACTIONS(12140), + [anon_sym_BSLASHAutocite] = ACTIONS(12140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHvolcite] = ACTIONS(12140), + [anon_sym_BSLASHVolcite] = ACTIONS(12140), + [anon_sym_BSLASHpvolcite] = ACTIONS(12140), + [anon_sym_BSLASHPvolcite] = ACTIONS(12140), + [anon_sym_BSLASHfvolcite] = ACTIONS(12140), + [anon_sym_BSLASHftvolcite] = ACTIONS(12140), + [anon_sym_BSLASHsvolcite] = ACTIONS(12140), + [anon_sym_BSLASHSvolcite] = ACTIONS(12140), + [anon_sym_BSLASHtvolcite] = ACTIONS(12140), + [anon_sym_BSLASHTvolcite] = ACTIONS(12140), + [anon_sym_BSLASHavolcite] = ACTIONS(12140), + [anon_sym_BSLASHAvolcite] = ACTIONS(12140), + [anon_sym_BSLASHnotecite] = ACTIONS(12140), + [anon_sym_BSLASHpnotecite] = ACTIONS(12140), + [anon_sym_BSLASHPnotecite] = ACTIONS(12140), + [anon_sym_BSLASHfnotecite] = ACTIONS(12140), + [anon_sym_BSLASHusepackage] = ACTIONS(12140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12140), + [anon_sym_BSLASHinclude] = ACTIONS(12140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12140), + [anon_sym_BSLASHinput] = ACTIONS(12140), + [anon_sym_BSLASHsubfile] = ACTIONS(12140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12140), + [anon_sym_BSLASHbibliography] = ACTIONS(12140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12140), + [anon_sym_BSLASHincludesvg] = ACTIONS(12140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12140), + [anon_sym_BSLASHimport] = ACTIONS(12140), + [anon_sym_BSLASHsubimport] = ACTIONS(12140), + [anon_sym_BSLASHinputfrom] = ACTIONS(12140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12140), + [anon_sym_BSLASHincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHlabel] = ACTIONS(12140), + [anon_sym_BSLASHref] = ACTIONS(12140), + [anon_sym_BSLASHvref] = ACTIONS(12140), + [anon_sym_BSLASHVref] = ACTIONS(12140), + [anon_sym_BSLASHautoref] = ACTIONS(12140), + [anon_sym_BSLASHpageref] = ACTIONS(12140), + [anon_sym_BSLASHcref] = ACTIONS(12140), + [anon_sym_BSLASHCref] = ACTIONS(12140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnameCref] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHlabelcref] = ACTIONS(12140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12140), + [anon_sym_BSLASHeqref] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange] = ACTIONS(12140), + [anon_sym_BSLASHCrefrange] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewlabel] = ACTIONS(12140), + [anon_sym_BSLASHnewcommand] = ACTIONS(12140), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12140), + [anon_sym_BSLASHgls] = ACTIONS(12140), + [anon_sym_BSLASHGls] = ACTIONS(12140), + [anon_sym_BSLASHGLS] = ACTIONS(12140), + [anon_sym_BSLASHglspl] = ACTIONS(12140), + [anon_sym_BSLASHGlspl] = ACTIONS(12140), + [anon_sym_BSLASHGLSpl] = ACTIONS(12140), + [anon_sym_BSLASHglsdisp] = ACTIONS(12140), + [anon_sym_BSLASHglslink] = ACTIONS(12140), + [anon_sym_BSLASHglstext] = ACTIONS(12140), + [anon_sym_BSLASHGlstext] = ACTIONS(12140), + [anon_sym_BSLASHGLStext] = ACTIONS(12140), + [anon_sym_BSLASHglsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12140), + [anon_sym_BSLASHglsplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSplural] = ACTIONS(12140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHglsname] = ACTIONS(12140), + [anon_sym_BSLASHGlsname] = ACTIONS(12140), + [anon_sym_BSLASHGLSname] = ACTIONS(12140), + [anon_sym_BSLASHglssymbol] = ACTIONS(12140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12140), + [anon_sym_BSLASHglsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12140), + [anon_sym_BSLASHglsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12140), + [anon_sym_BSLASHglsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12140), + [anon_sym_BSLASHglsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12140), + [anon_sym_BSLASHglsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12140), + [anon_sym_BSLASHnewacronym] = ACTIONS(12140), + [anon_sym_BSLASHacrshort] = ACTIONS(12140), + [anon_sym_BSLASHAcrshort] = ACTIONS(12140), + [anon_sym_BSLASHACRshort] = ACTIONS(12140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12140), + [anon_sym_BSLASHacrlong] = ACTIONS(12140), + [anon_sym_BSLASHAcrlong] = ACTIONS(12140), + [anon_sym_BSLASHACRlong] = ACTIONS(12140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12140), + [anon_sym_BSLASHacrfull] = ACTIONS(12140), + [anon_sym_BSLASHAcrfull] = ACTIONS(12140), + [anon_sym_BSLASHACRfull] = ACTIONS(12140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12140), + [anon_sym_BSLASHacs] = ACTIONS(12140), + [anon_sym_BSLASHAcs] = ACTIONS(12140), + [anon_sym_BSLASHacsp] = ACTIONS(12140), + [anon_sym_BSLASHAcsp] = ACTIONS(12140), + [anon_sym_BSLASHacl] = ACTIONS(12140), + [anon_sym_BSLASHAcl] = ACTIONS(12140), + [anon_sym_BSLASHaclp] = ACTIONS(12140), + [anon_sym_BSLASHAclp] = ACTIONS(12140), + [anon_sym_BSLASHacf] = ACTIONS(12140), + [anon_sym_BSLASHAcf] = ACTIONS(12140), + [anon_sym_BSLASHacfp] = ACTIONS(12140), + [anon_sym_BSLASHAcfp] = ACTIONS(12140), + [anon_sym_BSLASHac] = ACTIONS(12140), + [anon_sym_BSLASHAc] = ACTIONS(12140), + [anon_sym_BSLASHacp] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12140), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12140), + [anon_sym_BSLASHcolor] = ACTIONS(12140), + [anon_sym_BSLASHcolorbox] = ACTIONS(12140), + [anon_sym_BSLASHtextcolor] = ACTIONS(12140), + [anon_sym_BSLASHpagecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12140), + }, + [1623] = { + [sym_generic_command_name] = ACTIONS(12136), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12136), + [aux_sym_subparagraph_token1] = ACTIONS(12136), + [anon_sym_BSLASHitem] = ACTIONS(12136), + [anon_sym_LBRACK] = ACTIONS(12134), + [anon_sym_RBRACK] = ACTIONS(12134), + [anon_sym_LBRACE] = ACTIONS(12134), + [anon_sym_RBRACE] = ACTIONS(12134), + [anon_sym_LPAREN] = ACTIONS(12134), + [anon_sym_COMMA] = ACTIONS(12134), + [anon_sym_EQ] = ACTIONS(12134), + [sym_word] = ACTIONS(12134), + [sym_param] = ACTIONS(12134), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12134), + [anon_sym_DOLLAR] = ACTIONS(12136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12134), + [anon_sym_BSLASHbegin] = ACTIONS(12136), + [anon_sym_BSLASHcaption] = ACTIONS(12136), + [anon_sym_BSLASHcite] = ACTIONS(12136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCite] = ACTIONS(12136), + [anon_sym_BSLASHnocite] = ACTIONS(12136), + [anon_sym_BSLASHcitet] = ACTIONS(12136), + [anon_sym_BSLASHcitep] = ACTIONS(12136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteauthor] = ACTIONS(12136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitetitle] = ACTIONS(12136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteyear] = ACTIONS(12136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitedate] = ACTIONS(12136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteurl] = ACTIONS(12136), + [anon_sym_BSLASHfullcite] = ACTIONS(12136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12136), + [anon_sym_BSLASHcitealt] = ACTIONS(12136), + [anon_sym_BSLASHcitealp] = ACTIONS(12136), + [anon_sym_BSLASHcitetext] = ACTIONS(12136), + [anon_sym_BSLASHparencite] = ACTIONS(12136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHParencite] = ACTIONS(12136), + [anon_sym_BSLASHfootcite] = ACTIONS(12136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12136), + [anon_sym_BSLASHtextcite] = ACTIONS(12136), + [anon_sym_BSLASHTextcite] = ACTIONS(12136), + [anon_sym_BSLASHsmartcite] = ACTIONS(12136), + [anon_sym_BSLASHSmartcite] = ACTIONS(12136), + [anon_sym_BSLASHsupercite] = ACTIONS(12136), + [anon_sym_BSLASHautocite] = ACTIONS(12136), + [anon_sym_BSLASHAutocite] = ACTIONS(12136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHvolcite] = ACTIONS(12136), + [anon_sym_BSLASHVolcite] = ACTIONS(12136), + [anon_sym_BSLASHpvolcite] = ACTIONS(12136), + [anon_sym_BSLASHPvolcite] = ACTIONS(12136), + [anon_sym_BSLASHfvolcite] = ACTIONS(12136), + [anon_sym_BSLASHftvolcite] = ACTIONS(12136), + [anon_sym_BSLASHsvolcite] = ACTIONS(12136), + [anon_sym_BSLASHSvolcite] = ACTIONS(12136), + [anon_sym_BSLASHtvolcite] = ACTIONS(12136), + [anon_sym_BSLASHTvolcite] = ACTIONS(12136), + [anon_sym_BSLASHavolcite] = ACTIONS(12136), + [anon_sym_BSLASHAvolcite] = ACTIONS(12136), + [anon_sym_BSLASHnotecite] = ACTIONS(12136), + [anon_sym_BSLASHpnotecite] = ACTIONS(12136), + [anon_sym_BSLASHPnotecite] = ACTIONS(12136), + [anon_sym_BSLASHfnotecite] = ACTIONS(12136), + [anon_sym_BSLASHusepackage] = ACTIONS(12136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12136), + [anon_sym_BSLASHinclude] = ACTIONS(12136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12136), + [anon_sym_BSLASHinput] = ACTIONS(12136), + [anon_sym_BSLASHsubfile] = ACTIONS(12136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12136), + [anon_sym_BSLASHbibliography] = ACTIONS(12136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12136), + [anon_sym_BSLASHincludesvg] = ACTIONS(12136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12136), + [anon_sym_BSLASHimport] = ACTIONS(12136), + [anon_sym_BSLASHsubimport] = ACTIONS(12136), + [anon_sym_BSLASHinputfrom] = ACTIONS(12136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12136), + [anon_sym_BSLASHincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHlabel] = ACTIONS(12136), + [anon_sym_BSLASHref] = ACTIONS(12136), + [anon_sym_BSLASHvref] = ACTIONS(12136), + [anon_sym_BSLASHVref] = ACTIONS(12136), + [anon_sym_BSLASHautoref] = ACTIONS(12136), + [anon_sym_BSLASHpageref] = ACTIONS(12136), + [anon_sym_BSLASHcref] = ACTIONS(12136), + [anon_sym_BSLASHCref] = ACTIONS(12136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnameCref] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHlabelcref] = ACTIONS(12136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12136), + [anon_sym_BSLASHeqref] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange] = ACTIONS(12136), + [anon_sym_BSLASHCrefrange] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewlabel] = ACTIONS(12136), + [anon_sym_BSLASHnewcommand] = ACTIONS(12136), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12136), + [anon_sym_BSLASHgls] = ACTIONS(12136), + [anon_sym_BSLASHGls] = ACTIONS(12136), + [anon_sym_BSLASHGLS] = ACTIONS(12136), + [anon_sym_BSLASHglspl] = ACTIONS(12136), + [anon_sym_BSLASHGlspl] = ACTIONS(12136), + [anon_sym_BSLASHGLSpl] = ACTIONS(12136), + [anon_sym_BSLASHglsdisp] = ACTIONS(12136), + [anon_sym_BSLASHglslink] = ACTIONS(12136), + [anon_sym_BSLASHglstext] = ACTIONS(12136), + [anon_sym_BSLASHGlstext] = ACTIONS(12136), + [anon_sym_BSLASHGLStext] = ACTIONS(12136), + [anon_sym_BSLASHglsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12136), + [anon_sym_BSLASHglsplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSplural] = ACTIONS(12136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHglsname] = ACTIONS(12136), + [anon_sym_BSLASHGlsname] = ACTIONS(12136), + [anon_sym_BSLASHGLSname] = ACTIONS(12136), + [anon_sym_BSLASHglssymbol] = ACTIONS(12136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12136), + [anon_sym_BSLASHglsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12136), + [anon_sym_BSLASHglsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12136), + [anon_sym_BSLASHglsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12136), + [anon_sym_BSLASHglsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12136), + [anon_sym_BSLASHglsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12136), + [anon_sym_BSLASHnewacronym] = ACTIONS(12136), + [anon_sym_BSLASHacrshort] = ACTIONS(12136), + [anon_sym_BSLASHAcrshort] = ACTIONS(12136), + [anon_sym_BSLASHACRshort] = ACTIONS(12136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12136), + [anon_sym_BSLASHacrlong] = ACTIONS(12136), + [anon_sym_BSLASHAcrlong] = ACTIONS(12136), + [anon_sym_BSLASHACRlong] = ACTIONS(12136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12136), + [anon_sym_BSLASHacrfull] = ACTIONS(12136), + [anon_sym_BSLASHAcrfull] = ACTIONS(12136), + [anon_sym_BSLASHACRfull] = ACTIONS(12136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12136), + [anon_sym_BSLASHacs] = ACTIONS(12136), + [anon_sym_BSLASHAcs] = ACTIONS(12136), + [anon_sym_BSLASHacsp] = ACTIONS(12136), + [anon_sym_BSLASHAcsp] = ACTIONS(12136), + [anon_sym_BSLASHacl] = ACTIONS(12136), + [anon_sym_BSLASHAcl] = ACTIONS(12136), + [anon_sym_BSLASHaclp] = ACTIONS(12136), + [anon_sym_BSLASHAclp] = ACTIONS(12136), + [anon_sym_BSLASHacf] = ACTIONS(12136), + [anon_sym_BSLASHAcf] = ACTIONS(12136), + [anon_sym_BSLASHacfp] = ACTIONS(12136), + [anon_sym_BSLASHAcfp] = ACTIONS(12136), + [anon_sym_BSLASHac] = ACTIONS(12136), + [anon_sym_BSLASHAc] = ACTIONS(12136), + [anon_sym_BSLASHacp] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12136), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12136), + [anon_sym_BSLASHcolor] = ACTIONS(12136), + [anon_sym_BSLASHcolorbox] = ACTIONS(12136), + [anon_sym_BSLASHtextcolor] = ACTIONS(12136), + [anon_sym_BSLASHpagecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12136), + }, + [1624] = { + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(127), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [1625] = { + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(123), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [1626] = { + [sym_generic_command_name] = ACTIONS(12128), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12128), + [aux_sym_subparagraph_token1] = ACTIONS(12128), + [anon_sym_BSLASHitem] = ACTIONS(12128), + [anon_sym_LBRACK] = ACTIONS(12126), + [anon_sym_RBRACK] = ACTIONS(12126), + [anon_sym_LBRACE] = ACTIONS(12126), + [anon_sym_RBRACE] = ACTIONS(12126), + [anon_sym_LPAREN] = ACTIONS(12126), + [anon_sym_COMMA] = ACTIONS(12126), + [anon_sym_EQ] = ACTIONS(12126), + [sym_word] = ACTIONS(12126), + [sym_param] = ACTIONS(12126), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12126), + [anon_sym_DOLLAR] = ACTIONS(12128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12126), + [anon_sym_BSLASHbegin] = ACTIONS(12128), + [anon_sym_BSLASHcaption] = ACTIONS(12128), + [anon_sym_BSLASHcite] = ACTIONS(12128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCite] = ACTIONS(12128), + [anon_sym_BSLASHnocite] = ACTIONS(12128), + [anon_sym_BSLASHcitet] = ACTIONS(12128), + [anon_sym_BSLASHcitep] = ACTIONS(12128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteauthor] = ACTIONS(12128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitetitle] = ACTIONS(12128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteyear] = ACTIONS(12128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitedate] = ACTIONS(12128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteurl] = ACTIONS(12128), + [anon_sym_BSLASHfullcite] = ACTIONS(12128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12128), + [anon_sym_BSLASHcitealt] = ACTIONS(12128), + [anon_sym_BSLASHcitealp] = ACTIONS(12128), + [anon_sym_BSLASHcitetext] = ACTIONS(12128), + [anon_sym_BSLASHparencite] = ACTIONS(12128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHParencite] = ACTIONS(12128), + [anon_sym_BSLASHfootcite] = ACTIONS(12128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12128), + [anon_sym_BSLASHtextcite] = ACTIONS(12128), + [anon_sym_BSLASHTextcite] = ACTIONS(12128), + [anon_sym_BSLASHsmartcite] = ACTIONS(12128), + [anon_sym_BSLASHSmartcite] = ACTIONS(12128), + [anon_sym_BSLASHsupercite] = ACTIONS(12128), + [anon_sym_BSLASHautocite] = ACTIONS(12128), + [anon_sym_BSLASHAutocite] = ACTIONS(12128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHvolcite] = ACTIONS(12128), + [anon_sym_BSLASHVolcite] = ACTIONS(12128), + [anon_sym_BSLASHpvolcite] = ACTIONS(12128), + [anon_sym_BSLASHPvolcite] = ACTIONS(12128), + [anon_sym_BSLASHfvolcite] = ACTIONS(12128), + [anon_sym_BSLASHftvolcite] = ACTIONS(12128), + [anon_sym_BSLASHsvolcite] = ACTIONS(12128), + [anon_sym_BSLASHSvolcite] = ACTIONS(12128), + [anon_sym_BSLASHtvolcite] = ACTIONS(12128), + [anon_sym_BSLASHTvolcite] = ACTIONS(12128), + [anon_sym_BSLASHavolcite] = ACTIONS(12128), + [anon_sym_BSLASHAvolcite] = ACTIONS(12128), + [anon_sym_BSLASHnotecite] = ACTIONS(12128), + [anon_sym_BSLASHpnotecite] = ACTIONS(12128), + [anon_sym_BSLASHPnotecite] = ACTIONS(12128), + [anon_sym_BSLASHfnotecite] = ACTIONS(12128), + [anon_sym_BSLASHusepackage] = ACTIONS(12128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12128), + [anon_sym_BSLASHinclude] = ACTIONS(12128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12128), + [anon_sym_BSLASHinput] = ACTIONS(12128), + [anon_sym_BSLASHsubfile] = ACTIONS(12128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12128), + [anon_sym_BSLASHbibliography] = ACTIONS(12128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12128), + [anon_sym_BSLASHincludesvg] = ACTIONS(12128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12128), + [anon_sym_BSLASHimport] = ACTIONS(12128), + [anon_sym_BSLASHsubimport] = ACTIONS(12128), + [anon_sym_BSLASHinputfrom] = ACTIONS(12128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12128), + [anon_sym_BSLASHincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHlabel] = ACTIONS(12128), + [anon_sym_BSLASHref] = ACTIONS(12128), + [anon_sym_BSLASHvref] = ACTIONS(12128), + [anon_sym_BSLASHVref] = ACTIONS(12128), + [anon_sym_BSLASHautoref] = ACTIONS(12128), + [anon_sym_BSLASHpageref] = ACTIONS(12128), + [anon_sym_BSLASHcref] = ACTIONS(12128), + [anon_sym_BSLASHCref] = ACTIONS(12128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnameCref] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHlabelcref] = ACTIONS(12128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12128), + [anon_sym_BSLASHeqref] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange] = ACTIONS(12128), + [anon_sym_BSLASHCrefrange] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewlabel] = ACTIONS(12128), + [anon_sym_BSLASHnewcommand] = ACTIONS(12128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12128), + [anon_sym_BSLASHgls] = ACTIONS(12128), + [anon_sym_BSLASHGls] = ACTIONS(12128), + [anon_sym_BSLASHGLS] = ACTIONS(12128), + [anon_sym_BSLASHglspl] = ACTIONS(12128), + [anon_sym_BSLASHGlspl] = ACTIONS(12128), + [anon_sym_BSLASHGLSpl] = ACTIONS(12128), + [anon_sym_BSLASHglsdisp] = ACTIONS(12128), + [anon_sym_BSLASHglslink] = ACTIONS(12128), + [anon_sym_BSLASHglstext] = ACTIONS(12128), + [anon_sym_BSLASHGlstext] = ACTIONS(12128), + [anon_sym_BSLASHGLStext] = ACTIONS(12128), + [anon_sym_BSLASHglsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12128), + [anon_sym_BSLASHglsplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSplural] = ACTIONS(12128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHglsname] = ACTIONS(12128), + [anon_sym_BSLASHGlsname] = ACTIONS(12128), + [anon_sym_BSLASHGLSname] = ACTIONS(12128), + [anon_sym_BSLASHglssymbol] = ACTIONS(12128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12128), + [anon_sym_BSLASHglsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12128), + [anon_sym_BSLASHglsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12128), + [anon_sym_BSLASHglsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12128), + [anon_sym_BSLASHglsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12128), + [anon_sym_BSLASHglsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12128), + [anon_sym_BSLASHnewacronym] = ACTIONS(12128), + [anon_sym_BSLASHacrshort] = ACTIONS(12128), + [anon_sym_BSLASHAcrshort] = ACTIONS(12128), + [anon_sym_BSLASHACRshort] = ACTIONS(12128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12128), + [anon_sym_BSLASHacrlong] = ACTIONS(12128), + [anon_sym_BSLASHAcrlong] = ACTIONS(12128), + [anon_sym_BSLASHACRlong] = ACTIONS(12128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12128), + [anon_sym_BSLASHacrfull] = ACTIONS(12128), + [anon_sym_BSLASHAcrfull] = ACTIONS(12128), + [anon_sym_BSLASHACRfull] = ACTIONS(12128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12128), + [anon_sym_BSLASHacs] = ACTIONS(12128), + [anon_sym_BSLASHAcs] = ACTIONS(12128), + [anon_sym_BSLASHacsp] = ACTIONS(12128), + [anon_sym_BSLASHAcsp] = ACTIONS(12128), + [anon_sym_BSLASHacl] = ACTIONS(12128), + [anon_sym_BSLASHAcl] = ACTIONS(12128), + [anon_sym_BSLASHaclp] = ACTIONS(12128), + [anon_sym_BSLASHAclp] = ACTIONS(12128), + [anon_sym_BSLASHacf] = ACTIONS(12128), + [anon_sym_BSLASHAcf] = ACTIONS(12128), + [anon_sym_BSLASHacfp] = ACTIONS(12128), + [anon_sym_BSLASHAcfp] = ACTIONS(12128), + [anon_sym_BSLASHac] = ACTIONS(12128), + [anon_sym_BSLASHAc] = ACTIONS(12128), + [anon_sym_BSLASHacp] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12128), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12128), + [anon_sym_BSLASHcolor] = ACTIONS(12128), + [anon_sym_BSLASHcolorbox] = ACTIONS(12128), + [anon_sym_BSLASHtextcolor] = ACTIONS(12128), + [anon_sym_BSLASHpagecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12128), + }, + [1627] = { + [sym_generic_command_name] = ACTIONS(12124), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12124), + [aux_sym_subparagraph_token1] = ACTIONS(12124), + [anon_sym_BSLASHitem] = ACTIONS(12124), + [anon_sym_LBRACK] = ACTIONS(12122), + [anon_sym_RBRACK] = ACTIONS(12122), + [anon_sym_LBRACE] = ACTIONS(12122), + [anon_sym_RBRACE] = ACTIONS(12122), + [anon_sym_LPAREN] = ACTIONS(12122), + [anon_sym_COMMA] = ACTIONS(12122), + [anon_sym_EQ] = ACTIONS(12122), + [sym_word] = ACTIONS(12122), + [sym_param] = ACTIONS(12122), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12122), + [anon_sym_DOLLAR] = ACTIONS(12124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12122), + [anon_sym_BSLASHbegin] = ACTIONS(12124), + [anon_sym_BSLASHcaption] = ACTIONS(12124), + [anon_sym_BSLASHcite] = ACTIONS(12124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCite] = ACTIONS(12124), + [anon_sym_BSLASHnocite] = ACTIONS(12124), + [anon_sym_BSLASHcitet] = ACTIONS(12124), + [anon_sym_BSLASHcitep] = ACTIONS(12124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteauthor] = ACTIONS(12124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitetitle] = ACTIONS(12124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteyear] = ACTIONS(12124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitedate] = ACTIONS(12124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteurl] = ACTIONS(12124), + [anon_sym_BSLASHfullcite] = ACTIONS(12124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12124), + [anon_sym_BSLASHcitealt] = ACTIONS(12124), + [anon_sym_BSLASHcitealp] = ACTIONS(12124), + [anon_sym_BSLASHcitetext] = ACTIONS(12124), + [anon_sym_BSLASHparencite] = ACTIONS(12124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHParencite] = ACTIONS(12124), + [anon_sym_BSLASHfootcite] = ACTIONS(12124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12124), + [anon_sym_BSLASHtextcite] = ACTIONS(12124), + [anon_sym_BSLASHTextcite] = ACTIONS(12124), + [anon_sym_BSLASHsmartcite] = ACTIONS(12124), + [anon_sym_BSLASHSmartcite] = ACTIONS(12124), + [anon_sym_BSLASHsupercite] = ACTIONS(12124), + [anon_sym_BSLASHautocite] = ACTIONS(12124), + [anon_sym_BSLASHAutocite] = ACTIONS(12124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHvolcite] = ACTIONS(12124), + [anon_sym_BSLASHVolcite] = ACTIONS(12124), + [anon_sym_BSLASHpvolcite] = ACTIONS(12124), + [anon_sym_BSLASHPvolcite] = ACTIONS(12124), + [anon_sym_BSLASHfvolcite] = ACTIONS(12124), + [anon_sym_BSLASHftvolcite] = ACTIONS(12124), + [anon_sym_BSLASHsvolcite] = ACTIONS(12124), + [anon_sym_BSLASHSvolcite] = ACTIONS(12124), + [anon_sym_BSLASHtvolcite] = ACTIONS(12124), + [anon_sym_BSLASHTvolcite] = ACTIONS(12124), + [anon_sym_BSLASHavolcite] = ACTIONS(12124), + [anon_sym_BSLASHAvolcite] = ACTIONS(12124), + [anon_sym_BSLASHnotecite] = ACTIONS(12124), + [anon_sym_BSLASHpnotecite] = ACTIONS(12124), + [anon_sym_BSLASHPnotecite] = ACTIONS(12124), + [anon_sym_BSLASHfnotecite] = ACTIONS(12124), + [anon_sym_BSLASHusepackage] = ACTIONS(12124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12124), + [anon_sym_BSLASHinclude] = ACTIONS(12124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12124), + [anon_sym_BSLASHinput] = ACTIONS(12124), + [anon_sym_BSLASHsubfile] = ACTIONS(12124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12124), + [anon_sym_BSLASHbibliography] = ACTIONS(12124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12124), + [anon_sym_BSLASHincludesvg] = ACTIONS(12124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12124), + [anon_sym_BSLASHimport] = ACTIONS(12124), + [anon_sym_BSLASHsubimport] = ACTIONS(12124), + [anon_sym_BSLASHinputfrom] = ACTIONS(12124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12124), + [anon_sym_BSLASHincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHlabel] = ACTIONS(12124), + [anon_sym_BSLASHref] = ACTIONS(12124), + [anon_sym_BSLASHvref] = ACTIONS(12124), + [anon_sym_BSLASHVref] = ACTIONS(12124), + [anon_sym_BSLASHautoref] = ACTIONS(12124), + [anon_sym_BSLASHpageref] = ACTIONS(12124), + [anon_sym_BSLASHcref] = ACTIONS(12124), + [anon_sym_BSLASHCref] = ACTIONS(12124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnameCref] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHlabelcref] = ACTIONS(12124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12124), + [anon_sym_BSLASHeqref] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange] = ACTIONS(12124), + [anon_sym_BSLASHCrefrange] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewlabel] = ACTIONS(12124), + [anon_sym_BSLASHnewcommand] = ACTIONS(12124), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12124), + [anon_sym_BSLASHgls] = ACTIONS(12124), + [anon_sym_BSLASHGls] = ACTIONS(12124), + [anon_sym_BSLASHGLS] = ACTIONS(12124), + [anon_sym_BSLASHglspl] = ACTIONS(12124), + [anon_sym_BSLASHGlspl] = ACTIONS(12124), + [anon_sym_BSLASHGLSpl] = ACTIONS(12124), + [anon_sym_BSLASHglsdisp] = ACTIONS(12124), + [anon_sym_BSLASHglslink] = ACTIONS(12124), + [anon_sym_BSLASHglstext] = ACTIONS(12124), + [anon_sym_BSLASHGlstext] = ACTIONS(12124), + [anon_sym_BSLASHGLStext] = ACTIONS(12124), + [anon_sym_BSLASHglsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12124), + [anon_sym_BSLASHglsplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSplural] = ACTIONS(12124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHglsname] = ACTIONS(12124), + [anon_sym_BSLASHGlsname] = ACTIONS(12124), + [anon_sym_BSLASHGLSname] = ACTIONS(12124), + [anon_sym_BSLASHglssymbol] = ACTIONS(12124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12124), + [anon_sym_BSLASHglsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12124), + [anon_sym_BSLASHglsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12124), + [anon_sym_BSLASHglsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12124), + [anon_sym_BSLASHglsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12124), + [anon_sym_BSLASHglsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12124), + [anon_sym_BSLASHnewacronym] = ACTIONS(12124), + [anon_sym_BSLASHacrshort] = ACTIONS(12124), + [anon_sym_BSLASHAcrshort] = ACTIONS(12124), + [anon_sym_BSLASHACRshort] = ACTIONS(12124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12124), + [anon_sym_BSLASHacrlong] = ACTIONS(12124), + [anon_sym_BSLASHAcrlong] = ACTIONS(12124), + [anon_sym_BSLASHACRlong] = ACTIONS(12124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12124), + [anon_sym_BSLASHacrfull] = ACTIONS(12124), + [anon_sym_BSLASHAcrfull] = ACTIONS(12124), + [anon_sym_BSLASHACRfull] = ACTIONS(12124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12124), + [anon_sym_BSLASHacs] = ACTIONS(12124), + [anon_sym_BSLASHAcs] = ACTIONS(12124), + [anon_sym_BSLASHacsp] = ACTIONS(12124), + [anon_sym_BSLASHAcsp] = ACTIONS(12124), + [anon_sym_BSLASHacl] = ACTIONS(12124), + [anon_sym_BSLASHAcl] = ACTIONS(12124), + [anon_sym_BSLASHaclp] = ACTIONS(12124), + [anon_sym_BSLASHAclp] = ACTIONS(12124), + [anon_sym_BSLASHacf] = ACTIONS(12124), + [anon_sym_BSLASHAcf] = ACTIONS(12124), + [anon_sym_BSLASHacfp] = ACTIONS(12124), + [anon_sym_BSLASHAcfp] = ACTIONS(12124), + [anon_sym_BSLASHac] = ACTIONS(12124), + [anon_sym_BSLASHAc] = ACTIONS(12124), + [anon_sym_BSLASHacp] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12124), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12124), + [anon_sym_BSLASHcolor] = ACTIONS(12124), + [anon_sym_BSLASHcolorbox] = ACTIONS(12124), + [anon_sym_BSLASHtextcolor] = ACTIONS(12124), + [anon_sym_BSLASHpagecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12124), + }, + [1628] = { + [sym_generic_command_name] = ACTIONS(12485), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(12485), + [aux_sym_subparagraph_token1] = ACTIONS(12485), + [anon_sym_BSLASHitem] = ACTIONS(12485), + [anon_sym_LBRACK] = ACTIONS(12483), + [anon_sym_RBRACK] = ACTIONS(12483), + [anon_sym_LBRACE] = ACTIONS(12483), + [anon_sym_RBRACE] = ACTIONS(12483), + [anon_sym_LPAREN] = ACTIONS(12483), + [anon_sym_COMMA] = ACTIONS(12483), + [anon_sym_EQ] = ACTIONS(12483), + [sym_word] = ACTIONS(12483), + [sym_param] = ACTIONS(12483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12483), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12483), + [anon_sym_DOLLAR] = ACTIONS(12485), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12483), + [anon_sym_BSLASHbegin] = ACTIONS(12485), + [anon_sym_BSLASHcaption] = ACTIONS(12485), + [anon_sym_BSLASHcite] = ACTIONS(12485), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCite] = ACTIONS(12485), + [anon_sym_BSLASHnocite] = ACTIONS(12485), + [anon_sym_BSLASHcitet] = ACTIONS(12485), + [anon_sym_BSLASHcitep] = ACTIONS(12485), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteauthor] = ACTIONS(12485), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12485), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitetitle] = ACTIONS(12485), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteyear] = ACTIONS(12485), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitedate] = ACTIONS(12485), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteurl] = ACTIONS(12485), + [anon_sym_BSLASHfullcite] = ACTIONS(12485), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12485), + [anon_sym_BSLASHcitealt] = ACTIONS(12485), + [anon_sym_BSLASHcitealp] = ACTIONS(12485), + [anon_sym_BSLASHcitetext] = ACTIONS(12485), + [anon_sym_BSLASHparencite] = ACTIONS(12485), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHParencite] = ACTIONS(12485), + [anon_sym_BSLASHfootcite] = ACTIONS(12485), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12485), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12485), + [anon_sym_BSLASHtextcite] = ACTIONS(12485), + [anon_sym_BSLASHTextcite] = ACTIONS(12485), + [anon_sym_BSLASHsmartcite] = ACTIONS(12485), + [anon_sym_BSLASHSmartcite] = ACTIONS(12485), + [anon_sym_BSLASHsupercite] = ACTIONS(12485), + [anon_sym_BSLASHautocite] = ACTIONS(12485), + [anon_sym_BSLASHAutocite] = ACTIONS(12485), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHvolcite] = ACTIONS(12485), + [anon_sym_BSLASHVolcite] = ACTIONS(12485), + [anon_sym_BSLASHpvolcite] = ACTIONS(12485), + [anon_sym_BSLASHPvolcite] = ACTIONS(12485), + [anon_sym_BSLASHfvolcite] = ACTIONS(12485), + [anon_sym_BSLASHftvolcite] = ACTIONS(12485), + [anon_sym_BSLASHsvolcite] = ACTIONS(12485), + [anon_sym_BSLASHSvolcite] = ACTIONS(12485), + [anon_sym_BSLASHtvolcite] = ACTIONS(12485), + [anon_sym_BSLASHTvolcite] = ACTIONS(12485), + [anon_sym_BSLASHavolcite] = ACTIONS(12485), + [anon_sym_BSLASHAvolcite] = ACTIONS(12485), + [anon_sym_BSLASHnotecite] = ACTIONS(12485), + [anon_sym_BSLASHpnotecite] = ACTIONS(12485), + [anon_sym_BSLASHPnotecite] = ACTIONS(12485), + [anon_sym_BSLASHfnotecite] = ACTIONS(12485), + [anon_sym_BSLASHusepackage] = ACTIONS(12485), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12485), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12485), + [anon_sym_BSLASHinclude] = ACTIONS(12485), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12485), + [anon_sym_BSLASHinput] = ACTIONS(12485), + [anon_sym_BSLASHsubfile] = ACTIONS(12485), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12485), + [anon_sym_BSLASHbibliography] = ACTIONS(12485), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12485), + [anon_sym_BSLASHincludesvg] = ACTIONS(12485), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12485), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12485), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12485), + [anon_sym_BSLASHimport] = ACTIONS(12485), + [anon_sym_BSLASHsubimport] = ACTIONS(12485), + [anon_sym_BSLASHinputfrom] = ACTIONS(12485), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12485), + [anon_sym_BSLASHincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHlabel] = ACTIONS(12485), + [anon_sym_BSLASHref] = ACTIONS(12485), + [anon_sym_BSLASHvref] = ACTIONS(12485), + [anon_sym_BSLASHVref] = ACTIONS(12485), + [anon_sym_BSLASHautoref] = ACTIONS(12485), + [anon_sym_BSLASHpageref] = ACTIONS(12485), + [anon_sym_BSLASHcref] = ACTIONS(12485), + [anon_sym_BSLASHCref] = ACTIONS(12485), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnameCref] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHlabelcref] = ACTIONS(12485), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12485), + [anon_sym_BSLASHeqref] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange] = ACTIONS(12485), + [anon_sym_BSLASHCrefrange] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewlabel] = ACTIONS(12485), + [anon_sym_BSLASHnewcommand] = ACTIONS(12485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12485), + [anon_sym_BSLASHgls] = ACTIONS(12485), + [anon_sym_BSLASHGls] = ACTIONS(12485), + [anon_sym_BSLASHGLS] = ACTIONS(12485), + [anon_sym_BSLASHglspl] = ACTIONS(12485), + [anon_sym_BSLASHGlspl] = ACTIONS(12485), + [anon_sym_BSLASHGLSpl] = ACTIONS(12485), + [anon_sym_BSLASHglsdisp] = ACTIONS(12485), + [anon_sym_BSLASHglslink] = ACTIONS(12485), + [anon_sym_BSLASHglstext] = ACTIONS(12485), + [anon_sym_BSLASHGlstext] = ACTIONS(12485), + [anon_sym_BSLASHGLStext] = ACTIONS(12485), + [anon_sym_BSLASHglsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12485), + [anon_sym_BSLASHglsplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSplural] = ACTIONS(12485), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHglsname] = ACTIONS(12485), + [anon_sym_BSLASHGlsname] = ACTIONS(12485), + [anon_sym_BSLASHGLSname] = ACTIONS(12485), + [anon_sym_BSLASHglssymbol] = ACTIONS(12485), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12485), + [anon_sym_BSLASHglsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12485), + [anon_sym_BSLASHglsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12485), + [anon_sym_BSLASHglsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12485), + [anon_sym_BSLASHglsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12485), + [anon_sym_BSLASHglsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12485), + [anon_sym_BSLASHnewacronym] = ACTIONS(12485), + [anon_sym_BSLASHacrshort] = ACTIONS(12485), + [anon_sym_BSLASHAcrshort] = ACTIONS(12485), + [anon_sym_BSLASHACRshort] = ACTIONS(12485), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12485), + [anon_sym_BSLASHacrlong] = ACTIONS(12485), + [anon_sym_BSLASHAcrlong] = ACTIONS(12485), + [anon_sym_BSLASHACRlong] = ACTIONS(12485), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12485), + [anon_sym_BSLASHacrfull] = ACTIONS(12485), + [anon_sym_BSLASHAcrfull] = ACTIONS(12485), + [anon_sym_BSLASHACRfull] = ACTIONS(12485), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12485), + [anon_sym_BSLASHacs] = ACTIONS(12485), + [anon_sym_BSLASHAcs] = ACTIONS(12485), + [anon_sym_BSLASHacsp] = ACTIONS(12485), + [anon_sym_BSLASHAcsp] = ACTIONS(12485), + [anon_sym_BSLASHacl] = ACTIONS(12485), + [anon_sym_BSLASHAcl] = ACTIONS(12485), + [anon_sym_BSLASHaclp] = ACTIONS(12485), + [anon_sym_BSLASHAclp] = ACTIONS(12485), + [anon_sym_BSLASHacf] = ACTIONS(12485), + [anon_sym_BSLASHAcf] = ACTIONS(12485), + [anon_sym_BSLASHacfp] = ACTIONS(12485), + [anon_sym_BSLASHAcfp] = ACTIONS(12485), + [anon_sym_BSLASHac] = ACTIONS(12485), + [anon_sym_BSLASHAc] = ACTIONS(12485), + [anon_sym_BSLASHacp] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12485), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12485), + [anon_sym_BSLASHcolor] = ACTIONS(12485), + [anon_sym_BSLASHcolorbox] = ACTIONS(12485), + [anon_sym_BSLASHtextcolor] = ACTIONS(12485), + [anon_sym_BSLASHpagecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12485), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12485), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12485), + }, + [1629] = { + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(117), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [1630] = { + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_paragraph_token1] = ACTIONS(111), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [1631] = { + [sym_generic_command_name] = ACTIONS(12213), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12213), + [anon_sym_BSLASHitem] = ACTIONS(12213), + [anon_sym_LBRACK] = ACTIONS(12211), + [anon_sym_RBRACK] = ACTIONS(12211), + [anon_sym_LBRACE] = ACTIONS(12211), + [anon_sym_RBRACE] = ACTIONS(12211), + [anon_sym_LPAREN] = ACTIONS(12211), + [anon_sym_COMMA] = ACTIONS(12211), + [anon_sym_EQ] = ACTIONS(12211), + [sym_word] = ACTIONS(12211), + [sym_param] = ACTIONS(12211), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12211), + [anon_sym_DOLLAR] = ACTIONS(12213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12211), + [anon_sym_BSLASHbegin] = ACTIONS(12213), + [anon_sym_BSLASHcaption] = ACTIONS(12213), + [anon_sym_BSLASHcite] = ACTIONS(12213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCite] = ACTIONS(12213), + [anon_sym_BSLASHnocite] = ACTIONS(12213), + [anon_sym_BSLASHcitet] = ACTIONS(12213), + [anon_sym_BSLASHcitep] = ACTIONS(12213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteauthor] = ACTIONS(12213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitetitle] = ACTIONS(12213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteyear] = ACTIONS(12213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitedate] = ACTIONS(12213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteurl] = ACTIONS(12213), + [anon_sym_BSLASHfullcite] = ACTIONS(12213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12213), + [anon_sym_BSLASHcitealt] = ACTIONS(12213), + [anon_sym_BSLASHcitealp] = ACTIONS(12213), + [anon_sym_BSLASHcitetext] = ACTIONS(12213), + [anon_sym_BSLASHparencite] = ACTIONS(12213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHParencite] = ACTIONS(12213), + [anon_sym_BSLASHfootcite] = ACTIONS(12213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12213), + [anon_sym_BSLASHtextcite] = ACTIONS(12213), + [anon_sym_BSLASHTextcite] = ACTIONS(12213), + [anon_sym_BSLASHsmartcite] = ACTIONS(12213), + [anon_sym_BSLASHSmartcite] = ACTIONS(12213), + [anon_sym_BSLASHsupercite] = ACTIONS(12213), + [anon_sym_BSLASHautocite] = ACTIONS(12213), + [anon_sym_BSLASHAutocite] = ACTIONS(12213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHvolcite] = ACTIONS(12213), + [anon_sym_BSLASHVolcite] = ACTIONS(12213), + [anon_sym_BSLASHpvolcite] = ACTIONS(12213), + [anon_sym_BSLASHPvolcite] = ACTIONS(12213), + [anon_sym_BSLASHfvolcite] = ACTIONS(12213), + [anon_sym_BSLASHftvolcite] = ACTIONS(12213), + [anon_sym_BSLASHsvolcite] = ACTIONS(12213), + [anon_sym_BSLASHSvolcite] = ACTIONS(12213), + [anon_sym_BSLASHtvolcite] = ACTIONS(12213), + [anon_sym_BSLASHTvolcite] = ACTIONS(12213), + [anon_sym_BSLASHavolcite] = ACTIONS(12213), + [anon_sym_BSLASHAvolcite] = ACTIONS(12213), + [anon_sym_BSLASHnotecite] = ACTIONS(12213), + [anon_sym_BSLASHpnotecite] = ACTIONS(12213), + [anon_sym_BSLASHPnotecite] = ACTIONS(12213), + [anon_sym_BSLASHfnotecite] = ACTIONS(12213), + [anon_sym_BSLASHusepackage] = ACTIONS(12213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12213), + [anon_sym_BSLASHinclude] = ACTIONS(12213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12213), + [anon_sym_BSLASHinput] = ACTIONS(12213), + [anon_sym_BSLASHsubfile] = ACTIONS(12213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12213), + [anon_sym_BSLASHbibliography] = ACTIONS(12213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12213), + [anon_sym_BSLASHincludesvg] = ACTIONS(12213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12213), + [anon_sym_BSLASHimport] = ACTIONS(12213), + [anon_sym_BSLASHsubimport] = ACTIONS(12213), + [anon_sym_BSLASHinputfrom] = ACTIONS(12213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12213), + [anon_sym_BSLASHincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHlabel] = ACTIONS(12213), + [anon_sym_BSLASHref] = ACTIONS(12213), + [anon_sym_BSLASHvref] = ACTIONS(12213), + [anon_sym_BSLASHVref] = ACTIONS(12213), + [anon_sym_BSLASHautoref] = ACTIONS(12213), + [anon_sym_BSLASHpageref] = ACTIONS(12213), + [anon_sym_BSLASHcref] = ACTIONS(12213), + [anon_sym_BSLASHCref] = ACTIONS(12213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnameCref] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHlabelcref] = ACTIONS(12213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12213), + [anon_sym_BSLASHeqref] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange] = ACTIONS(12213), + [anon_sym_BSLASHCrefrange] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewlabel] = ACTIONS(12213), + [anon_sym_BSLASHnewcommand] = ACTIONS(12213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12213), + [anon_sym_BSLASHgls] = ACTIONS(12213), + [anon_sym_BSLASHGls] = ACTIONS(12213), + [anon_sym_BSLASHGLS] = ACTIONS(12213), + [anon_sym_BSLASHglspl] = ACTIONS(12213), + [anon_sym_BSLASHGlspl] = ACTIONS(12213), + [anon_sym_BSLASHGLSpl] = ACTIONS(12213), + [anon_sym_BSLASHglsdisp] = ACTIONS(12213), + [anon_sym_BSLASHglslink] = ACTIONS(12213), + [anon_sym_BSLASHglstext] = ACTIONS(12213), + [anon_sym_BSLASHGlstext] = ACTIONS(12213), + [anon_sym_BSLASHGLStext] = ACTIONS(12213), + [anon_sym_BSLASHglsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12213), + [anon_sym_BSLASHglsplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSplural] = ACTIONS(12213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHglsname] = ACTIONS(12213), + [anon_sym_BSLASHGlsname] = ACTIONS(12213), + [anon_sym_BSLASHGLSname] = ACTIONS(12213), + [anon_sym_BSLASHglssymbol] = ACTIONS(12213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12213), + [anon_sym_BSLASHglsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12213), + [anon_sym_BSLASHglsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12213), + [anon_sym_BSLASHglsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12213), + [anon_sym_BSLASHglsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12213), + [anon_sym_BSLASHglsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12213), + [anon_sym_BSLASHnewacronym] = ACTIONS(12213), + [anon_sym_BSLASHacrshort] = ACTIONS(12213), + [anon_sym_BSLASHAcrshort] = ACTIONS(12213), + [anon_sym_BSLASHACRshort] = ACTIONS(12213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12213), + [anon_sym_BSLASHacrlong] = ACTIONS(12213), + [anon_sym_BSLASHAcrlong] = ACTIONS(12213), + [anon_sym_BSLASHACRlong] = ACTIONS(12213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12213), + [anon_sym_BSLASHacrfull] = ACTIONS(12213), + [anon_sym_BSLASHAcrfull] = ACTIONS(12213), + [anon_sym_BSLASHACRfull] = ACTIONS(12213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12213), + [anon_sym_BSLASHacs] = ACTIONS(12213), + [anon_sym_BSLASHAcs] = ACTIONS(12213), + [anon_sym_BSLASHacsp] = ACTIONS(12213), + [anon_sym_BSLASHAcsp] = ACTIONS(12213), + [anon_sym_BSLASHacl] = ACTIONS(12213), + [anon_sym_BSLASHAcl] = ACTIONS(12213), + [anon_sym_BSLASHaclp] = ACTIONS(12213), + [anon_sym_BSLASHAclp] = ACTIONS(12213), + [anon_sym_BSLASHacf] = ACTIONS(12213), + [anon_sym_BSLASHAcf] = ACTIONS(12213), + [anon_sym_BSLASHacfp] = ACTIONS(12213), + [anon_sym_BSLASHAcfp] = ACTIONS(12213), + [anon_sym_BSLASHac] = ACTIONS(12213), + [anon_sym_BSLASHAc] = ACTIONS(12213), + [anon_sym_BSLASHacp] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12213), + [anon_sym_BSLASHcolor] = ACTIONS(12213), + [anon_sym_BSLASHcolorbox] = ACTIONS(12213), + [anon_sym_BSLASHtextcolor] = ACTIONS(12213), + [anon_sym_BSLASHpagecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12213), + }, + [1632] = { + [sym_generic_command_name] = ACTIONS(12323), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12323), + [anon_sym_BSLASHitem] = ACTIONS(12323), + [anon_sym_LBRACK] = ACTIONS(12321), + [anon_sym_RBRACK] = ACTIONS(12321), + [anon_sym_LBRACE] = ACTIONS(12321), + [anon_sym_RBRACE] = ACTIONS(12321), + [anon_sym_LPAREN] = ACTIONS(12321), + [anon_sym_COMMA] = ACTIONS(12321), + [anon_sym_EQ] = ACTIONS(12321), + [sym_word] = ACTIONS(12321), + [sym_param] = ACTIONS(12321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12321), + [anon_sym_DOLLAR] = ACTIONS(12323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12321), + [anon_sym_BSLASHbegin] = ACTIONS(12323), + [anon_sym_BSLASHcaption] = ACTIONS(12323), + [anon_sym_BSLASHcite] = ACTIONS(12323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCite] = ACTIONS(12323), + [anon_sym_BSLASHnocite] = ACTIONS(12323), + [anon_sym_BSLASHcitet] = ACTIONS(12323), + [anon_sym_BSLASHcitep] = ACTIONS(12323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteauthor] = ACTIONS(12323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitetitle] = ACTIONS(12323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteyear] = ACTIONS(12323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitedate] = ACTIONS(12323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteurl] = ACTIONS(12323), + [anon_sym_BSLASHfullcite] = ACTIONS(12323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12323), + [anon_sym_BSLASHcitealt] = ACTIONS(12323), + [anon_sym_BSLASHcitealp] = ACTIONS(12323), + [anon_sym_BSLASHcitetext] = ACTIONS(12323), + [anon_sym_BSLASHparencite] = ACTIONS(12323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHParencite] = ACTIONS(12323), + [anon_sym_BSLASHfootcite] = ACTIONS(12323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12323), + [anon_sym_BSLASHtextcite] = ACTIONS(12323), + [anon_sym_BSLASHTextcite] = ACTIONS(12323), + [anon_sym_BSLASHsmartcite] = ACTIONS(12323), + [anon_sym_BSLASHSmartcite] = ACTIONS(12323), + [anon_sym_BSLASHsupercite] = ACTIONS(12323), + [anon_sym_BSLASHautocite] = ACTIONS(12323), + [anon_sym_BSLASHAutocite] = ACTIONS(12323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHvolcite] = ACTIONS(12323), + [anon_sym_BSLASHVolcite] = ACTIONS(12323), + [anon_sym_BSLASHpvolcite] = ACTIONS(12323), + [anon_sym_BSLASHPvolcite] = ACTIONS(12323), + [anon_sym_BSLASHfvolcite] = ACTIONS(12323), + [anon_sym_BSLASHftvolcite] = ACTIONS(12323), + [anon_sym_BSLASHsvolcite] = ACTIONS(12323), + [anon_sym_BSLASHSvolcite] = ACTIONS(12323), + [anon_sym_BSLASHtvolcite] = ACTIONS(12323), + [anon_sym_BSLASHTvolcite] = ACTIONS(12323), + [anon_sym_BSLASHavolcite] = ACTIONS(12323), + [anon_sym_BSLASHAvolcite] = ACTIONS(12323), + [anon_sym_BSLASHnotecite] = ACTIONS(12323), + [anon_sym_BSLASHpnotecite] = ACTIONS(12323), + [anon_sym_BSLASHPnotecite] = ACTIONS(12323), + [anon_sym_BSLASHfnotecite] = ACTIONS(12323), + [anon_sym_BSLASHusepackage] = ACTIONS(12323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12323), + [anon_sym_BSLASHinclude] = ACTIONS(12323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12323), + [anon_sym_BSLASHinput] = ACTIONS(12323), + [anon_sym_BSLASHsubfile] = ACTIONS(12323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12323), + [anon_sym_BSLASHbibliography] = ACTIONS(12323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12323), + [anon_sym_BSLASHincludesvg] = ACTIONS(12323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12323), + [anon_sym_BSLASHimport] = ACTIONS(12323), + [anon_sym_BSLASHsubimport] = ACTIONS(12323), + [anon_sym_BSLASHinputfrom] = ACTIONS(12323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12323), + [anon_sym_BSLASHincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHlabel] = ACTIONS(12323), + [anon_sym_BSLASHref] = ACTIONS(12323), + [anon_sym_BSLASHvref] = ACTIONS(12323), + [anon_sym_BSLASHVref] = ACTIONS(12323), + [anon_sym_BSLASHautoref] = ACTIONS(12323), + [anon_sym_BSLASHpageref] = ACTIONS(12323), + [anon_sym_BSLASHcref] = ACTIONS(12323), + [anon_sym_BSLASHCref] = ACTIONS(12323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnameCref] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHlabelcref] = ACTIONS(12323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12323), + [anon_sym_BSLASHeqref] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange] = ACTIONS(12323), + [anon_sym_BSLASHCrefrange] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewlabel] = ACTIONS(12323), + [anon_sym_BSLASHnewcommand] = ACTIONS(12323), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12323), + [anon_sym_BSLASHgls] = ACTIONS(12323), + [anon_sym_BSLASHGls] = ACTIONS(12323), + [anon_sym_BSLASHGLS] = ACTIONS(12323), + [anon_sym_BSLASHglspl] = ACTIONS(12323), + [anon_sym_BSLASHGlspl] = ACTIONS(12323), + [anon_sym_BSLASHGLSpl] = ACTIONS(12323), + [anon_sym_BSLASHglsdisp] = ACTIONS(12323), + [anon_sym_BSLASHglslink] = ACTIONS(12323), + [anon_sym_BSLASHglstext] = ACTIONS(12323), + [anon_sym_BSLASHGlstext] = ACTIONS(12323), + [anon_sym_BSLASHGLStext] = ACTIONS(12323), + [anon_sym_BSLASHglsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12323), + [anon_sym_BSLASHglsplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSplural] = ACTIONS(12323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHglsname] = ACTIONS(12323), + [anon_sym_BSLASHGlsname] = ACTIONS(12323), + [anon_sym_BSLASHGLSname] = ACTIONS(12323), + [anon_sym_BSLASHglssymbol] = ACTIONS(12323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12323), + [anon_sym_BSLASHglsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12323), + [anon_sym_BSLASHglsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12323), + [anon_sym_BSLASHglsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12323), + [anon_sym_BSLASHglsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12323), + [anon_sym_BSLASHglsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12323), + [anon_sym_BSLASHnewacronym] = ACTIONS(12323), + [anon_sym_BSLASHacrshort] = ACTIONS(12323), + [anon_sym_BSLASHAcrshort] = ACTIONS(12323), + [anon_sym_BSLASHACRshort] = ACTIONS(12323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12323), + [anon_sym_BSLASHacrlong] = ACTIONS(12323), + [anon_sym_BSLASHAcrlong] = ACTIONS(12323), + [anon_sym_BSLASHACRlong] = ACTIONS(12323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12323), + [anon_sym_BSLASHacrfull] = ACTIONS(12323), + [anon_sym_BSLASHAcrfull] = ACTIONS(12323), + [anon_sym_BSLASHACRfull] = ACTIONS(12323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12323), + [anon_sym_BSLASHacs] = ACTIONS(12323), + [anon_sym_BSLASHAcs] = ACTIONS(12323), + [anon_sym_BSLASHacsp] = ACTIONS(12323), + [anon_sym_BSLASHAcsp] = ACTIONS(12323), + [anon_sym_BSLASHacl] = ACTIONS(12323), + [anon_sym_BSLASHAcl] = ACTIONS(12323), + [anon_sym_BSLASHaclp] = ACTIONS(12323), + [anon_sym_BSLASHAclp] = ACTIONS(12323), + [anon_sym_BSLASHacf] = ACTIONS(12323), + [anon_sym_BSLASHAcf] = ACTIONS(12323), + [anon_sym_BSLASHacfp] = ACTIONS(12323), + [anon_sym_BSLASHAcfp] = ACTIONS(12323), + [anon_sym_BSLASHac] = ACTIONS(12323), + [anon_sym_BSLASHAc] = ACTIONS(12323), + [anon_sym_BSLASHacp] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12323), + [anon_sym_BSLASHcolor] = ACTIONS(12323), + [anon_sym_BSLASHcolorbox] = ACTIONS(12323), + [anon_sym_BSLASHtextcolor] = ACTIONS(12323), + [anon_sym_BSLASHpagecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12323), + }, + [1633] = { + [sym_brace_group] = STATE(2917), + [sym_generic_command_name] = ACTIONS(12092), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12092), + [anon_sym_LBRACK] = ACTIONS(12090), + [anon_sym_RBRACK] = ACTIONS(12090), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12090), + [anon_sym_LPAREN] = ACTIONS(12090), + [anon_sym_COMMA] = ACTIONS(12090), + [anon_sym_EQ] = ACTIONS(12090), + [sym_word] = ACTIONS(12090), + [sym_param] = ACTIONS(12090), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12090), + [anon_sym_DOLLAR] = ACTIONS(12092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12090), + [anon_sym_BSLASHbegin] = ACTIONS(12092), + [anon_sym_BSLASHcaption] = ACTIONS(12092), + [anon_sym_BSLASHcite] = ACTIONS(12092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCite] = ACTIONS(12092), + [anon_sym_BSLASHnocite] = ACTIONS(12092), + [anon_sym_BSLASHcitet] = ACTIONS(12092), + [anon_sym_BSLASHcitep] = ACTIONS(12092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteauthor] = ACTIONS(12092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitetitle] = ACTIONS(12092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteyear] = ACTIONS(12092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitedate] = ACTIONS(12092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteurl] = ACTIONS(12092), + [anon_sym_BSLASHfullcite] = ACTIONS(12092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12092), + [anon_sym_BSLASHcitealt] = ACTIONS(12092), + [anon_sym_BSLASHcitealp] = ACTIONS(12092), + [anon_sym_BSLASHcitetext] = ACTIONS(12092), + [anon_sym_BSLASHparencite] = ACTIONS(12092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHParencite] = ACTIONS(12092), + [anon_sym_BSLASHfootcite] = ACTIONS(12092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12092), + [anon_sym_BSLASHtextcite] = ACTIONS(12092), + [anon_sym_BSLASHTextcite] = ACTIONS(12092), + [anon_sym_BSLASHsmartcite] = ACTIONS(12092), + [anon_sym_BSLASHSmartcite] = ACTIONS(12092), + [anon_sym_BSLASHsupercite] = ACTIONS(12092), + [anon_sym_BSLASHautocite] = ACTIONS(12092), + [anon_sym_BSLASHAutocite] = ACTIONS(12092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHvolcite] = ACTIONS(12092), + [anon_sym_BSLASHVolcite] = ACTIONS(12092), + [anon_sym_BSLASHpvolcite] = ACTIONS(12092), + [anon_sym_BSLASHPvolcite] = ACTIONS(12092), + [anon_sym_BSLASHfvolcite] = ACTIONS(12092), + [anon_sym_BSLASHftvolcite] = ACTIONS(12092), + [anon_sym_BSLASHsvolcite] = ACTIONS(12092), + [anon_sym_BSLASHSvolcite] = ACTIONS(12092), + [anon_sym_BSLASHtvolcite] = ACTIONS(12092), + [anon_sym_BSLASHTvolcite] = ACTIONS(12092), + [anon_sym_BSLASHavolcite] = ACTIONS(12092), + [anon_sym_BSLASHAvolcite] = ACTIONS(12092), + [anon_sym_BSLASHnotecite] = ACTIONS(12092), + [anon_sym_BSLASHpnotecite] = ACTIONS(12092), + [anon_sym_BSLASHPnotecite] = ACTIONS(12092), + [anon_sym_BSLASHfnotecite] = ACTIONS(12092), + [anon_sym_BSLASHusepackage] = ACTIONS(12092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12092), + [anon_sym_BSLASHinclude] = ACTIONS(12092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12092), + [anon_sym_BSLASHinput] = ACTIONS(12092), + [anon_sym_BSLASHsubfile] = ACTIONS(12092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12092), + [anon_sym_BSLASHbibliography] = ACTIONS(12092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12092), + [anon_sym_BSLASHincludesvg] = ACTIONS(12092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12092), + [anon_sym_BSLASHimport] = ACTIONS(12092), + [anon_sym_BSLASHsubimport] = ACTIONS(12092), + [anon_sym_BSLASHinputfrom] = ACTIONS(12092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12092), + [anon_sym_BSLASHincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHlabel] = ACTIONS(12092), + [anon_sym_BSLASHref] = ACTIONS(12092), + [anon_sym_BSLASHvref] = ACTIONS(12092), + [anon_sym_BSLASHVref] = ACTIONS(12092), + [anon_sym_BSLASHautoref] = ACTIONS(12092), + [anon_sym_BSLASHpageref] = ACTIONS(12092), + [anon_sym_BSLASHcref] = ACTIONS(12092), + [anon_sym_BSLASHCref] = ACTIONS(12092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnameCref] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHlabelcref] = ACTIONS(12092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12092), + [anon_sym_BSLASHeqref] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange] = ACTIONS(12092), + [anon_sym_BSLASHCrefrange] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewlabel] = ACTIONS(12092), + [anon_sym_BSLASHnewcommand] = ACTIONS(12092), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12092), + [anon_sym_BSLASHgls] = ACTIONS(12092), + [anon_sym_BSLASHGls] = ACTIONS(12092), + [anon_sym_BSLASHGLS] = ACTIONS(12092), + [anon_sym_BSLASHglspl] = ACTIONS(12092), + [anon_sym_BSLASHGlspl] = ACTIONS(12092), + [anon_sym_BSLASHGLSpl] = ACTIONS(12092), + [anon_sym_BSLASHglsdisp] = ACTIONS(12092), + [anon_sym_BSLASHglslink] = ACTIONS(12092), + [anon_sym_BSLASHglstext] = ACTIONS(12092), + [anon_sym_BSLASHGlstext] = ACTIONS(12092), + [anon_sym_BSLASHGLStext] = ACTIONS(12092), + [anon_sym_BSLASHglsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12092), + [anon_sym_BSLASHglsplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSplural] = ACTIONS(12092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHglsname] = ACTIONS(12092), + [anon_sym_BSLASHGlsname] = ACTIONS(12092), + [anon_sym_BSLASHGLSname] = ACTIONS(12092), + [anon_sym_BSLASHglssymbol] = ACTIONS(12092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12092), + [anon_sym_BSLASHglsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12092), + [anon_sym_BSLASHglsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12092), + [anon_sym_BSLASHglsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12092), + [anon_sym_BSLASHglsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12092), + [anon_sym_BSLASHglsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12092), + [anon_sym_BSLASHnewacronym] = ACTIONS(12092), + [anon_sym_BSLASHacrshort] = ACTIONS(12092), + [anon_sym_BSLASHAcrshort] = ACTIONS(12092), + [anon_sym_BSLASHACRshort] = ACTIONS(12092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12092), + [anon_sym_BSLASHacrlong] = ACTIONS(12092), + [anon_sym_BSLASHAcrlong] = ACTIONS(12092), + [anon_sym_BSLASHACRlong] = ACTIONS(12092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12092), + [anon_sym_BSLASHacrfull] = ACTIONS(12092), + [anon_sym_BSLASHAcrfull] = ACTIONS(12092), + [anon_sym_BSLASHACRfull] = ACTIONS(12092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12092), + [anon_sym_BSLASHacs] = ACTIONS(12092), + [anon_sym_BSLASHAcs] = ACTIONS(12092), + [anon_sym_BSLASHacsp] = ACTIONS(12092), + [anon_sym_BSLASHAcsp] = ACTIONS(12092), + [anon_sym_BSLASHacl] = ACTIONS(12092), + [anon_sym_BSLASHAcl] = ACTIONS(12092), + [anon_sym_BSLASHaclp] = ACTIONS(12092), + [anon_sym_BSLASHAclp] = ACTIONS(12092), + [anon_sym_BSLASHacf] = ACTIONS(12092), + [anon_sym_BSLASHAcf] = ACTIONS(12092), + [anon_sym_BSLASHacfp] = ACTIONS(12092), + [anon_sym_BSLASHAcfp] = ACTIONS(12092), + [anon_sym_BSLASHac] = ACTIONS(12092), + [anon_sym_BSLASHAc] = ACTIONS(12092), + [anon_sym_BSLASHacp] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12092), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12092), + [anon_sym_BSLASHcolor] = ACTIONS(12092), + [anon_sym_BSLASHcolorbox] = ACTIONS(12092), + [anon_sym_BSLASHtextcolor] = ACTIONS(12092), + [anon_sym_BSLASHpagecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12092), + }, + [1634] = { + [sym_brace_group] = STATE(2914), + [sym_generic_command_name] = ACTIONS(12054), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12054), + [anon_sym_LBRACK] = ACTIONS(12052), + [anon_sym_RBRACK] = ACTIONS(12052), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12052), + [anon_sym_LPAREN] = ACTIONS(12052), + [anon_sym_COMMA] = ACTIONS(12052), + [anon_sym_EQ] = ACTIONS(12052), + [sym_word] = ACTIONS(12052), + [sym_param] = ACTIONS(12052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12052), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12052), + [anon_sym_DOLLAR] = ACTIONS(12054), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12052), + [anon_sym_BSLASHbegin] = ACTIONS(12054), + [anon_sym_BSLASHcaption] = ACTIONS(12054), + [anon_sym_BSLASHcite] = ACTIONS(12054), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCite] = ACTIONS(12054), + [anon_sym_BSLASHnocite] = ACTIONS(12054), + [anon_sym_BSLASHcitet] = ACTIONS(12054), + [anon_sym_BSLASHcitep] = ACTIONS(12054), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteauthor] = ACTIONS(12054), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12054), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitetitle] = ACTIONS(12054), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteyear] = ACTIONS(12054), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitedate] = ACTIONS(12054), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteurl] = ACTIONS(12054), + [anon_sym_BSLASHfullcite] = ACTIONS(12054), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12054), + [anon_sym_BSLASHcitealt] = ACTIONS(12054), + [anon_sym_BSLASHcitealp] = ACTIONS(12054), + [anon_sym_BSLASHcitetext] = ACTIONS(12054), + [anon_sym_BSLASHparencite] = ACTIONS(12054), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHParencite] = ACTIONS(12054), + [anon_sym_BSLASHfootcite] = ACTIONS(12054), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12054), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12054), + [anon_sym_BSLASHtextcite] = ACTIONS(12054), + [anon_sym_BSLASHTextcite] = ACTIONS(12054), + [anon_sym_BSLASHsmartcite] = ACTIONS(12054), + [anon_sym_BSLASHSmartcite] = ACTIONS(12054), + [anon_sym_BSLASHsupercite] = ACTIONS(12054), + [anon_sym_BSLASHautocite] = ACTIONS(12054), + [anon_sym_BSLASHAutocite] = ACTIONS(12054), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHvolcite] = ACTIONS(12054), + [anon_sym_BSLASHVolcite] = ACTIONS(12054), + [anon_sym_BSLASHpvolcite] = ACTIONS(12054), + [anon_sym_BSLASHPvolcite] = ACTIONS(12054), + [anon_sym_BSLASHfvolcite] = ACTIONS(12054), + [anon_sym_BSLASHftvolcite] = ACTIONS(12054), + [anon_sym_BSLASHsvolcite] = ACTIONS(12054), + [anon_sym_BSLASHSvolcite] = ACTIONS(12054), + [anon_sym_BSLASHtvolcite] = ACTIONS(12054), + [anon_sym_BSLASHTvolcite] = ACTIONS(12054), + [anon_sym_BSLASHavolcite] = ACTIONS(12054), + [anon_sym_BSLASHAvolcite] = ACTIONS(12054), + [anon_sym_BSLASHnotecite] = ACTIONS(12054), + [anon_sym_BSLASHpnotecite] = ACTIONS(12054), + [anon_sym_BSLASHPnotecite] = ACTIONS(12054), + [anon_sym_BSLASHfnotecite] = ACTIONS(12054), + [anon_sym_BSLASHusepackage] = ACTIONS(12054), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12054), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12054), + [anon_sym_BSLASHinclude] = ACTIONS(12054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12054), + [anon_sym_BSLASHinput] = ACTIONS(12054), + [anon_sym_BSLASHsubfile] = ACTIONS(12054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12054), + [anon_sym_BSLASHbibliography] = ACTIONS(12054), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12054), + [anon_sym_BSLASHincludesvg] = ACTIONS(12054), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12054), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12054), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12054), + [anon_sym_BSLASHimport] = ACTIONS(12054), + [anon_sym_BSLASHsubimport] = ACTIONS(12054), + [anon_sym_BSLASHinputfrom] = ACTIONS(12054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12054), + [anon_sym_BSLASHincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHlabel] = ACTIONS(12054), + [anon_sym_BSLASHref] = ACTIONS(12054), + [anon_sym_BSLASHvref] = ACTIONS(12054), + [anon_sym_BSLASHVref] = ACTIONS(12054), + [anon_sym_BSLASHautoref] = ACTIONS(12054), + [anon_sym_BSLASHpageref] = ACTIONS(12054), + [anon_sym_BSLASHcref] = ACTIONS(12054), + [anon_sym_BSLASHCref] = ACTIONS(12054), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnameCref] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHlabelcref] = ACTIONS(12054), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12054), + [anon_sym_BSLASHeqref] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange] = ACTIONS(12054), + [anon_sym_BSLASHCrefrange] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewlabel] = ACTIONS(12054), + [anon_sym_BSLASHnewcommand] = ACTIONS(12054), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12054), + [anon_sym_BSLASHgls] = ACTIONS(12054), + [anon_sym_BSLASHGls] = ACTIONS(12054), + [anon_sym_BSLASHGLS] = ACTIONS(12054), + [anon_sym_BSLASHglspl] = ACTIONS(12054), + [anon_sym_BSLASHGlspl] = ACTIONS(12054), + [anon_sym_BSLASHGLSpl] = ACTIONS(12054), + [anon_sym_BSLASHglsdisp] = ACTIONS(12054), + [anon_sym_BSLASHglslink] = ACTIONS(12054), + [anon_sym_BSLASHglstext] = ACTIONS(12054), + [anon_sym_BSLASHGlstext] = ACTIONS(12054), + [anon_sym_BSLASHGLStext] = ACTIONS(12054), + [anon_sym_BSLASHglsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12054), + [anon_sym_BSLASHglsplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSplural] = ACTIONS(12054), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHglsname] = ACTIONS(12054), + [anon_sym_BSLASHGlsname] = ACTIONS(12054), + [anon_sym_BSLASHGLSname] = ACTIONS(12054), + [anon_sym_BSLASHglssymbol] = ACTIONS(12054), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12054), + [anon_sym_BSLASHglsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12054), + [anon_sym_BSLASHglsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12054), + [anon_sym_BSLASHglsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12054), + [anon_sym_BSLASHglsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12054), + [anon_sym_BSLASHglsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12054), + [anon_sym_BSLASHnewacronym] = ACTIONS(12054), + [anon_sym_BSLASHacrshort] = ACTIONS(12054), + [anon_sym_BSLASHAcrshort] = ACTIONS(12054), + [anon_sym_BSLASHACRshort] = ACTIONS(12054), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12054), + [anon_sym_BSLASHacrlong] = ACTIONS(12054), + [anon_sym_BSLASHAcrlong] = ACTIONS(12054), + [anon_sym_BSLASHACRlong] = ACTIONS(12054), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12054), + [anon_sym_BSLASHacrfull] = ACTIONS(12054), + [anon_sym_BSLASHAcrfull] = ACTIONS(12054), + [anon_sym_BSLASHACRfull] = ACTIONS(12054), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12054), + [anon_sym_BSLASHacs] = ACTIONS(12054), + [anon_sym_BSLASHAcs] = ACTIONS(12054), + [anon_sym_BSLASHacsp] = ACTIONS(12054), + [anon_sym_BSLASHAcsp] = ACTIONS(12054), + [anon_sym_BSLASHacl] = ACTIONS(12054), + [anon_sym_BSLASHAcl] = ACTIONS(12054), + [anon_sym_BSLASHaclp] = ACTIONS(12054), + [anon_sym_BSLASHAclp] = ACTIONS(12054), + [anon_sym_BSLASHacf] = ACTIONS(12054), + [anon_sym_BSLASHAcf] = ACTIONS(12054), + [anon_sym_BSLASHacfp] = ACTIONS(12054), + [anon_sym_BSLASHAcfp] = ACTIONS(12054), + [anon_sym_BSLASHac] = ACTIONS(12054), + [anon_sym_BSLASHAc] = ACTIONS(12054), + [anon_sym_BSLASHacp] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12054), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12054), + [anon_sym_BSLASHcolor] = ACTIONS(12054), + [anon_sym_BSLASHcolorbox] = ACTIONS(12054), + [anon_sym_BSLASHtextcolor] = ACTIONS(12054), + [anon_sym_BSLASHpagecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12054), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12054), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12054), + }, + [1635] = { + [sym_brace_group] = STATE(2925), + [sym_generic_command_name] = ACTIONS(12028), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12028), + [anon_sym_LBRACK] = ACTIONS(12026), + [anon_sym_RBRACK] = ACTIONS(12026), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12026), + [anon_sym_LPAREN] = ACTIONS(12026), + [anon_sym_COMMA] = ACTIONS(12026), + [anon_sym_EQ] = ACTIONS(12026), + [sym_word] = ACTIONS(12026), + [sym_param] = ACTIONS(12026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12026), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12026), + [anon_sym_DOLLAR] = ACTIONS(12028), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12026), + [anon_sym_BSLASHbegin] = ACTIONS(12028), + [anon_sym_BSLASHcaption] = ACTIONS(12028), + [anon_sym_BSLASHcite] = ACTIONS(12028), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCite] = ACTIONS(12028), + [anon_sym_BSLASHnocite] = ACTIONS(12028), + [anon_sym_BSLASHcitet] = ACTIONS(12028), + [anon_sym_BSLASHcitep] = ACTIONS(12028), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteauthor] = ACTIONS(12028), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12028), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitetitle] = ACTIONS(12028), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteyear] = ACTIONS(12028), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitedate] = ACTIONS(12028), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteurl] = ACTIONS(12028), + [anon_sym_BSLASHfullcite] = ACTIONS(12028), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12028), + [anon_sym_BSLASHcitealt] = ACTIONS(12028), + [anon_sym_BSLASHcitealp] = ACTIONS(12028), + [anon_sym_BSLASHcitetext] = ACTIONS(12028), + [anon_sym_BSLASHparencite] = ACTIONS(12028), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHParencite] = ACTIONS(12028), + [anon_sym_BSLASHfootcite] = ACTIONS(12028), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12028), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12028), + [anon_sym_BSLASHtextcite] = ACTIONS(12028), + [anon_sym_BSLASHTextcite] = ACTIONS(12028), + [anon_sym_BSLASHsmartcite] = ACTIONS(12028), + [anon_sym_BSLASHSmartcite] = ACTIONS(12028), + [anon_sym_BSLASHsupercite] = ACTIONS(12028), + [anon_sym_BSLASHautocite] = ACTIONS(12028), + [anon_sym_BSLASHAutocite] = ACTIONS(12028), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHvolcite] = ACTIONS(12028), + [anon_sym_BSLASHVolcite] = ACTIONS(12028), + [anon_sym_BSLASHpvolcite] = ACTIONS(12028), + [anon_sym_BSLASHPvolcite] = ACTIONS(12028), + [anon_sym_BSLASHfvolcite] = ACTIONS(12028), + [anon_sym_BSLASHftvolcite] = ACTIONS(12028), + [anon_sym_BSLASHsvolcite] = ACTIONS(12028), + [anon_sym_BSLASHSvolcite] = ACTIONS(12028), + [anon_sym_BSLASHtvolcite] = ACTIONS(12028), + [anon_sym_BSLASHTvolcite] = ACTIONS(12028), + [anon_sym_BSLASHavolcite] = ACTIONS(12028), + [anon_sym_BSLASHAvolcite] = ACTIONS(12028), + [anon_sym_BSLASHnotecite] = ACTIONS(12028), + [anon_sym_BSLASHpnotecite] = ACTIONS(12028), + [anon_sym_BSLASHPnotecite] = ACTIONS(12028), + [anon_sym_BSLASHfnotecite] = ACTIONS(12028), + [anon_sym_BSLASHusepackage] = ACTIONS(12028), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12028), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12028), + [anon_sym_BSLASHinclude] = ACTIONS(12028), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12028), + [anon_sym_BSLASHinput] = ACTIONS(12028), + [anon_sym_BSLASHsubfile] = ACTIONS(12028), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12028), + [anon_sym_BSLASHbibliography] = ACTIONS(12028), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12028), + [anon_sym_BSLASHincludesvg] = ACTIONS(12028), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12028), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12028), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12028), + [anon_sym_BSLASHimport] = ACTIONS(12028), + [anon_sym_BSLASHsubimport] = ACTIONS(12028), + [anon_sym_BSLASHinputfrom] = ACTIONS(12028), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12028), + [anon_sym_BSLASHincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHlabel] = ACTIONS(12028), + [anon_sym_BSLASHref] = ACTIONS(12028), + [anon_sym_BSLASHvref] = ACTIONS(12028), + [anon_sym_BSLASHVref] = ACTIONS(12028), + [anon_sym_BSLASHautoref] = ACTIONS(12028), + [anon_sym_BSLASHpageref] = ACTIONS(12028), + [anon_sym_BSLASHcref] = ACTIONS(12028), + [anon_sym_BSLASHCref] = ACTIONS(12028), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnameCref] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHlabelcref] = ACTIONS(12028), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12028), + [anon_sym_BSLASHeqref] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange] = ACTIONS(12028), + [anon_sym_BSLASHCrefrange] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewlabel] = ACTIONS(12028), + [anon_sym_BSLASHnewcommand] = ACTIONS(12028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12028), + [anon_sym_BSLASHgls] = ACTIONS(12028), + [anon_sym_BSLASHGls] = ACTIONS(12028), + [anon_sym_BSLASHGLS] = ACTIONS(12028), + [anon_sym_BSLASHglspl] = ACTIONS(12028), + [anon_sym_BSLASHGlspl] = ACTIONS(12028), + [anon_sym_BSLASHGLSpl] = ACTIONS(12028), + [anon_sym_BSLASHglsdisp] = ACTIONS(12028), + [anon_sym_BSLASHglslink] = ACTIONS(12028), + [anon_sym_BSLASHglstext] = ACTIONS(12028), + [anon_sym_BSLASHGlstext] = ACTIONS(12028), + [anon_sym_BSLASHGLStext] = ACTIONS(12028), + [anon_sym_BSLASHglsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12028), + [anon_sym_BSLASHglsplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSplural] = ACTIONS(12028), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHglsname] = ACTIONS(12028), + [anon_sym_BSLASHGlsname] = ACTIONS(12028), + [anon_sym_BSLASHGLSname] = ACTIONS(12028), + [anon_sym_BSLASHglssymbol] = ACTIONS(12028), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12028), + [anon_sym_BSLASHglsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12028), + [anon_sym_BSLASHglsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12028), + [anon_sym_BSLASHglsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12028), + [anon_sym_BSLASHglsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12028), + [anon_sym_BSLASHglsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12028), + [anon_sym_BSLASHnewacronym] = ACTIONS(12028), + [anon_sym_BSLASHacrshort] = ACTIONS(12028), + [anon_sym_BSLASHAcrshort] = ACTIONS(12028), + [anon_sym_BSLASHACRshort] = ACTIONS(12028), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12028), + [anon_sym_BSLASHacrlong] = ACTIONS(12028), + [anon_sym_BSLASHAcrlong] = ACTIONS(12028), + [anon_sym_BSLASHACRlong] = ACTIONS(12028), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12028), + [anon_sym_BSLASHacrfull] = ACTIONS(12028), + [anon_sym_BSLASHAcrfull] = ACTIONS(12028), + [anon_sym_BSLASHACRfull] = ACTIONS(12028), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12028), + [anon_sym_BSLASHacs] = ACTIONS(12028), + [anon_sym_BSLASHAcs] = ACTIONS(12028), + [anon_sym_BSLASHacsp] = ACTIONS(12028), + [anon_sym_BSLASHAcsp] = ACTIONS(12028), + [anon_sym_BSLASHacl] = ACTIONS(12028), + [anon_sym_BSLASHAcl] = ACTIONS(12028), + [anon_sym_BSLASHaclp] = ACTIONS(12028), + [anon_sym_BSLASHAclp] = ACTIONS(12028), + [anon_sym_BSLASHacf] = ACTIONS(12028), + [anon_sym_BSLASHAcf] = ACTIONS(12028), + [anon_sym_BSLASHacfp] = ACTIONS(12028), + [anon_sym_BSLASHAcfp] = ACTIONS(12028), + [anon_sym_BSLASHac] = ACTIONS(12028), + [anon_sym_BSLASHAc] = ACTIONS(12028), + [anon_sym_BSLASHacp] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12028), + [anon_sym_BSLASHcolor] = ACTIONS(12028), + [anon_sym_BSLASHcolorbox] = ACTIONS(12028), + [anon_sym_BSLASHtextcolor] = ACTIONS(12028), + [anon_sym_BSLASHpagecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12028), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12028), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12028), + }, + [1636] = { + [sym_brace_group] = STATE(2926), + [sym_generic_command_name] = ACTIONS(12100), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12100), + [anon_sym_LBRACK] = ACTIONS(12098), + [anon_sym_RBRACK] = ACTIONS(12098), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12098), + [anon_sym_LPAREN] = ACTIONS(12098), + [anon_sym_COMMA] = ACTIONS(12098), + [anon_sym_EQ] = ACTIONS(12098), + [sym_word] = ACTIONS(12098), + [sym_param] = ACTIONS(12098), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12098), + [anon_sym_DOLLAR] = ACTIONS(12100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12098), + [anon_sym_BSLASHbegin] = ACTIONS(12100), + [anon_sym_BSLASHcaption] = ACTIONS(12100), + [anon_sym_BSLASHcite] = ACTIONS(12100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCite] = ACTIONS(12100), + [anon_sym_BSLASHnocite] = ACTIONS(12100), + [anon_sym_BSLASHcitet] = ACTIONS(12100), + [anon_sym_BSLASHcitep] = ACTIONS(12100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteauthor] = ACTIONS(12100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitetitle] = ACTIONS(12100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteyear] = ACTIONS(12100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitedate] = ACTIONS(12100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteurl] = ACTIONS(12100), + [anon_sym_BSLASHfullcite] = ACTIONS(12100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12100), + [anon_sym_BSLASHcitealt] = ACTIONS(12100), + [anon_sym_BSLASHcitealp] = ACTIONS(12100), + [anon_sym_BSLASHcitetext] = ACTIONS(12100), + [anon_sym_BSLASHparencite] = ACTIONS(12100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHParencite] = ACTIONS(12100), + [anon_sym_BSLASHfootcite] = ACTIONS(12100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12100), + [anon_sym_BSLASHtextcite] = ACTIONS(12100), + [anon_sym_BSLASHTextcite] = ACTIONS(12100), + [anon_sym_BSLASHsmartcite] = ACTIONS(12100), + [anon_sym_BSLASHSmartcite] = ACTIONS(12100), + [anon_sym_BSLASHsupercite] = ACTIONS(12100), + [anon_sym_BSLASHautocite] = ACTIONS(12100), + [anon_sym_BSLASHAutocite] = ACTIONS(12100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHvolcite] = ACTIONS(12100), + [anon_sym_BSLASHVolcite] = ACTIONS(12100), + [anon_sym_BSLASHpvolcite] = ACTIONS(12100), + [anon_sym_BSLASHPvolcite] = ACTIONS(12100), + [anon_sym_BSLASHfvolcite] = ACTIONS(12100), + [anon_sym_BSLASHftvolcite] = ACTIONS(12100), + [anon_sym_BSLASHsvolcite] = ACTIONS(12100), + [anon_sym_BSLASHSvolcite] = ACTIONS(12100), + [anon_sym_BSLASHtvolcite] = ACTIONS(12100), + [anon_sym_BSLASHTvolcite] = ACTIONS(12100), + [anon_sym_BSLASHavolcite] = ACTIONS(12100), + [anon_sym_BSLASHAvolcite] = ACTIONS(12100), + [anon_sym_BSLASHnotecite] = ACTIONS(12100), + [anon_sym_BSLASHpnotecite] = ACTIONS(12100), + [anon_sym_BSLASHPnotecite] = ACTIONS(12100), + [anon_sym_BSLASHfnotecite] = ACTIONS(12100), + [anon_sym_BSLASHusepackage] = ACTIONS(12100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12100), + [anon_sym_BSLASHinclude] = ACTIONS(12100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12100), + [anon_sym_BSLASHinput] = ACTIONS(12100), + [anon_sym_BSLASHsubfile] = ACTIONS(12100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12100), + [anon_sym_BSLASHbibliography] = ACTIONS(12100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12100), + [anon_sym_BSLASHincludesvg] = ACTIONS(12100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12100), + [anon_sym_BSLASHimport] = ACTIONS(12100), + [anon_sym_BSLASHsubimport] = ACTIONS(12100), + [anon_sym_BSLASHinputfrom] = ACTIONS(12100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12100), + [anon_sym_BSLASHincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHlabel] = ACTIONS(12100), + [anon_sym_BSLASHref] = ACTIONS(12100), + [anon_sym_BSLASHvref] = ACTIONS(12100), + [anon_sym_BSLASHVref] = ACTIONS(12100), + [anon_sym_BSLASHautoref] = ACTIONS(12100), + [anon_sym_BSLASHpageref] = ACTIONS(12100), + [anon_sym_BSLASHcref] = ACTIONS(12100), + [anon_sym_BSLASHCref] = ACTIONS(12100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnameCref] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHlabelcref] = ACTIONS(12100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12100), + [anon_sym_BSLASHeqref] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange] = ACTIONS(12100), + [anon_sym_BSLASHCrefrange] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewlabel] = ACTIONS(12100), + [anon_sym_BSLASHnewcommand] = ACTIONS(12100), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12100), + [anon_sym_BSLASHgls] = ACTIONS(12100), + [anon_sym_BSLASHGls] = ACTIONS(12100), + [anon_sym_BSLASHGLS] = ACTIONS(12100), + [anon_sym_BSLASHglspl] = ACTIONS(12100), + [anon_sym_BSLASHGlspl] = ACTIONS(12100), + [anon_sym_BSLASHGLSpl] = ACTIONS(12100), + [anon_sym_BSLASHglsdisp] = ACTIONS(12100), + [anon_sym_BSLASHglslink] = ACTIONS(12100), + [anon_sym_BSLASHglstext] = ACTIONS(12100), + [anon_sym_BSLASHGlstext] = ACTIONS(12100), + [anon_sym_BSLASHGLStext] = ACTIONS(12100), + [anon_sym_BSLASHglsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12100), + [anon_sym_BSLASHglsplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSplural] = ACTIONS(12100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHglsname] = ACTIONS(12100), + [anon_sym_BSLASHGlsname] = ACTIONS(12100), + [anon_sym_BSLASHGLSname] = ACTIONS(12100), + [anon_sym_BSLASHglssymbol] = ACTIONS(12100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12100), + [anon_sym_BSLASHglsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12100), + [anon_sym_BSLASHglsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12100), + [anon_sym_BSLASHglsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12100), + [anon_sym_BSLASHglsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12100), + [anon_sym_BSLASHglsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12100), + [anon_sym_BSLASHnewacronym] = ACTIONS(12100), + [anon_sym_BSLASHacrshort] = ACTIONS(12100), + [anon_sym_BSLASHAcrshort] = ACTIONS(12100), + [anon_sym_BSLASHACRshort] = ACTIONS(12100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12100), + [anon_sym_BSLASHacrlong] = ACTIONS(12100), + [anon_sym_BSLASHAcrlong] = ACTIONS(12100), + [anon_sym_BSLASHACRlong] = ACTIONS(12100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12100), + [anon_sym_BSLASHacrfull] = ACTIONS(12100), + [anon_sym_BSLASHAcrfull] = ACTIONS(12100), + [anon_sym_BSLASHACRfull] = ACTIONS(12100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12100), + [anon_sym_BSLASHacs] = ACTIONS(12100), + [anon_sym_BSLASHAcs] = ACTIONS(12100), + [anon_sym_BSLASHacsp] = ACTIONS(12100), + [anon_sym_BSLASHAcsp] = ACTIONS(12100), + [anon_sym_BSLASHacl] = ACTIONS(12100), + [anon_sym_BSLASHAcl] = ACTIONS(12100), + [anon_sym_BSLASHaclp] = ACTIONS(12100), + [anon_sym_BSLASHAclp] = ACTIONS(12100), + [anon_sym_BSLASHacf] = ACTIONS(12100), + [anon_sym_BSLASHAcf] = ACTIONS(12100), + [anon_sym_BSLASHacfp] = ACTIONS(12100), + [anon_sym_BSLASHAcfp] = ACTIONS(12100), + [anon_sym_BSLASHac] = ACTIONS(12100), + [anon_sym_BSLASHAc] = ACTIONS(12100), + [anon_sym_BSLASHacp] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12100), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12100), + [anon_sym_BSLASHcolor] = ACTIONS(12100), + [anon_sym_BSLASHcolorbox] = ACTIONS(12100), + [anon_sym_BSLASHtextcolor] = ACTIONS(12100), + [anon_sym_BSLASHpagecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12100), + }, + [1637] = { + [sym_generic_command_name] = ACTIONS(12349), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12349), + [anon_sym_BSLASHitem] = ACTIONS(12349), + [anon_sym_LBRACK] = ACTIONS(12347), + [anon_sym_RBRACK] = ACTIONS(12347), + [anon_sym_LBRACE] = ACTIONS(12347), + [anon_sym_RBRACE] = ACTIONS(12347), + [anon_sym_LPAREN] = ACTIONS(12347), + [anon_sym_COMMA] = ACTIONS(12347), + [anon_sym_EQ] = ACTIONS(12347), + [sym_word] = ACTIONS(12347), + [sym_param] = ACTIONS(12347), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12347), + [anon_sym_DOLLAR] = ACTIONS(12349), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12347), + [anon_sym_BSLASHbegin] = ACTIONS(12349), + [anon_sym_BSLASHcaption] = ACTIONS(12349), + [anon_sym_BSLASHcite] = ACTIONS(12349), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCite] = ACTIONS(12349), + [anon_sym_BSLASHnocite] = ACTIONS(12349), + [anon_sym_BSLASHcitet] = ACTIONS(12349), + [anon_sym_BSLASHcitep] = ACTIONS(12349), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteauthor] = ACTIONS(12349), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12349), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitetitle] = ACTIONS(12349), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteyear] = ACTIONS(12349), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitedate] = ACTIONS(12349), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteurl] = ACTIONS(12349), + [anon_sym_BSLASHfullcite] = ACTIONS(12349), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12349), + [anon_sym_BSLASHcitealt] = ACTIONS(12349), + [anon_sym_BSLASHcitealp] = ACTIONS(12349), + [anon_sym_BSLASHcitetext] = ACTIONS(12349), + [anon_sym_BSLASHparencite] = ACTIONS(12349), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHParencite] = ACTIONS(12349), + [anon_sym_BSLASHfootcite] = ACTIONS(12349), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12349), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12349), + [anon_sym_BSLASHtextcite] = ACTIONS(12349), + [anon_sym_BSLASHTextcite] = ACTIONS(12349), + [anon_sym_BSLASHsmartcite] = ACTIONS(12349), + [anon_sym_BSLASHSmartcite] = ACTIONS(12349), + [anon_sym_BSLASHsupercite] = ACTIONS(12349), + [anon_sym_BSLASHautocite] = ACTIONS(12349), + [anon_sym_BSLASHAutocite] = ACTIONS(12349), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHvolcite] = ACTIONS(12349), + [anon_sym_BSLASHVolcite] = ACTIONS(12349), + [anon_sym_BSLASHpvolcite] = ACTIONS(12349), + [anon_sym_BSLASHPvolcite] = ACTIONS(12349), + [anon_sym_BSLASHfvolcite] = ACTIONS(12349), + [anon_sym_BSLASHftvolcite] = ACTIONS(12349), + [anon_sym_BSLASHsvolcite] = ACTIONS(12349), + [anon_sym_BSLASHSvolcite] = ACTIONS(12349), + [anon_sym_BSLASHtvolcite] = ACTIONS(12349), + [anon_sym_BSLASHTvolcite] = ACTIONS(12349), + [anon_sym_BSLASHavolcite] = ACTIONS(12349), + [anon_sym_BSLASHAvolcite] = ACTIONS(12349), + [anon_sym_BSLASHnotecite] = ACTIONS(12349), + [anon_sym_BSLASHpnotecite] = ACTIONS(12349), + [anon_sym_BSLASHPnotecite] = ACTIONS(12349), + [anon_sym_BSLASHfnotecite] = ACTIONS(12349), + [anon_sym_BSLASHusepackage] = ACTIONS(12349), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12349), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12349), + [anon_sym_BSLASHinclude] = ACTIONS(12349), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12349), + [anon_sym_BSLASHinput] = ACTIONS(12349), + [anon_sym_BSLASHsubfile] = ACTIONS(12349), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12349), + [anon_sym_BSLASHbibliography] = ACTIONS(12349), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12349), + [anon_sym_BSLASHincludesvg] = ACTIONS(12349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12349), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12349), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12349), + [anon_sym_BSLASHimport] = ACTIONS(12349), + [anon_sym_BSLASHsubimport] = ACTIONS(12349), + [anon_sym_BSLASHinputfrom] = ACTIONS(12349), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12349), + [anon_sym_BSLASHincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHlabel] = ACTIONS(12349), + [anon_sym_BSLASHref] = ACTIONS(12349), + [anon_sym_BSLASHvref] = ACTIONS(12349), + [anon_sym_BSLASHVref] = ACTIONS(12349), + [anon_sym_BSLASHautoref] = ACTIONS(12349), + [anon_sym_BSLASHpageref] = ACTIONS(12349), + [anon_sym_BSLASHcref] = ACTIONS(12349), + [anon_sym_BSLASHCref] = ACTIONS(12349), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnameCref] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHlabelcref] = ACTIONS(12349), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12349), + [anon_sym_BSLASHeqref] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange] = ACTIONS(12349), + [anon_sym_BSLASHCrefrange] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewlabel] = ACTIONS(12349), + [anon_sym_BSLASHnewcommand] = ACTIONS(12349), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12349), + [anon_sym_BSLASHgls] = ACTIONS(12349), + [anon_sym_BSLASHGls] = ACTIONS(12349), + [anon_sym_BSLASHGLS] = ACTIONS(12349), + [anon_sym_BSLASHglspl] = ACTIONS(12349), + [anon_sym_BSLASHGlspl] = ACTIONS(12349), + [anon_sym_BSLASHGLSpl] = ACTIONS(12349), + [anon_sym_BSLASHglsdisp] = ACTIONS(12349), + [anon_sym_BSLASHglslink] = ACTIONS(12349), + [anon_sym_BSLASHglstext] = ACTIONS(12349), + [anon_sym_BSLASHGlstext] = ACTIONS(12349), + [anon_sym_BSLASHGLStext] = ACTIONS(12349), + [anon_sym_BSLASHglsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12349), + [anon_sym_BSLASHglsplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSplural] = ACTIONS(12349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHglsname] = ACTIONS(12349), + [anon_sym_BSLASHGlsname] = ACTIONS(12349), + [anon_sym_BSLASHGLSname] = ACTIONS(12349), + [anon_sym_BSLASHglssymbol] = ACTIONS(12349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12349), + [anon_sym_BSLASHglsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12349), + [anon_sym_BSLASHglsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12349), + [anon_sym_BSLASHglsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12349), + [anon_sym_BSLASHglsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12349), + [anon_sym_BSLASHglsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12349), + [anon_sym_BSLASHnewacronym] = ACTIONS(12349), + [anon_sym_BSLASHacrshort] = ACTIONS(12349), + [anon_sym_BSLASHAcrshort] = ACTIONS(12349), + [anon_sym_BSLASHACRshort] = ACTIONS(12349), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12349), + [anon_sym_BSLASHacrlong] = ACTIONS(12349), + [anon_sym_BSLASHAcrlong] = ACTIONS(12349), + [anon_sym_BSLASHACRlong] = ACTIONS(12349), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12349), + [anon_sym_BSLASHacrfull] = ACTIONS(12349), + [anon_sym_BSLASHAcrfull] = ACTIONS(12349), + [anon_sym_BSLASHACRfull] = ACTIONS(12349), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12349), + [anon_sym_BSLASHacs] = ACTIONS(12349), + [anon_sym_BSLASHAcs] = ACTIONS(12349), + [anon_sym_BSLASHacsp] = ACTIONS(12349), + [anon_sym_BSLASHAcsp] = ACTIONS(12349), + [anon_sym_BSLASHacl] = ACTIONS(12349), + [anon_sym_BSLASHAcl] = ACTIONS(12349), + [anon_sym_BSLASHaclp] = ACTIONS(12349), + [anon_sym_BSLASHAclp] = ACTIONS(12349), + [anon_sym_BSLASHacf] = ACTIONS(12349), + [anon_sym_BSLASHAcf] = ACTIONS(12349), + [anon_sym_BSLASHacfp] = ACTIONS(12349), + [anon_sym_BSLASHAcfp] = ACTIONS(12349), + [anon_sym_BSLASHac] = ACTIONS(12349), + [anon_sym_BSLASHAc] = ACTIONS(12349), + [anon_sym_BSLASHacp] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12349), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12349), + [anon_sym_BSLASHcolor] = ACTIONS(12349), + [anon_sym_BSLASHcolorbox] = ACTIONS(12349), + [anon_sym_BSLASHtextcolor] = ACTIONS(12349), + [anon_sym_BSLASHpagecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12349), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12349), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12349), + }, + [1638] = { + [sym_brace_group] = STATE(2935), + [sym_generic_command_name] = ACTIONS(12058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12058), + [anon_sym_LBRACK] = ACTIONS(12056), + [anon_sym_RBRACK] = ACTIONS(12056), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12056), + [anon_sym_LPAREN] = ACTIONS(12056), + [anon_sym_COMMA] = ACTIONS(12056), + [anon_sym_EQ] = ACTIONS(12056), + [sym_word] = ACTIONS(12056), + [sym_param] = ACTIONS(12056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12056), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12056), + [anon_sym_DOLLAR] = ACTIONS(12058), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12056), + [anon_sym_BSLASHbegin] = ACTIONS(12058), + [anon_sym_BSLASHcaption] = ACTIONS(12058), + [anon_sym_BSLASHcite] = ACTIONS(12058), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCite] = ACTIONS(12058), + [anon_sym_BSLASHnocite] = ACTIONS(12058), + [anon_sym_BSLASHcitet] = ACTIONS(12058), + [anon_sym_BSLASHcitep] = ACTIONS(12058), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteauthor] = ACTIONS(12058), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12058), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitetitle] = ACTIONS(12058), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteyear] = ACTIONS(12058), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitedate] = ACTIONS(12058), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteurl] = ACTIONS(12058), + [anon_sym_BSLASHfullcite] = ACTIONS(12058), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12058), + [anon_sym_BSLASHcitealt] = ACTIONS(12058), + [anon_sym_BSLASHcitealp] = ACTIONS(12058), + [anon_sym_BSLASHcitetext] = ACTIONS(12058), + [anon_sym_BSLASHparencite] = ACTIONS(12058), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHParencite] = ACTIONS(12058), + [anon_sym_BSLASHfootcite] = ACTIONS(12058), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12058), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12058), + [anon_sym_BSLASHtextcite] = ACTIONS(12058), + [anon_sym_BSLASHTextcite] = ACTIONS(12058), + [anon_sym_BSLASHsmartcite] = ACTIONS(12058), + [anon_sym_BSLASHSmartcite] = ACTIONS(12058), + [anon_sym_BSLASHsupercite] = ACTIONS(12058), + [anon_sym_BSLASHautocite] = ACTIONS(12058), + [anon_sym_BSLASHAutocite] = ACTIONS(12058), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHvolcite] = ACTIONS(12058), + [anon_sym_BSLASHVolcite] = ACTIONS(12058), + [anon_sym_BSLASHpvolcite] = ACTIONS(12058), + [anon_sym_BSLASHPvolcite] = ACTIONS(12058), + [anon_sym_BSLASHfvolcite] = ACTIONS(12058), + [anon_sym_BSLASHftvolcite] = ACTIONS(12058), + [anon_sym_BSLASHsvolcite] = ACTIONS(12058), + [anon_sym_BSLASHSvolcite] = ACTIONS(12058), + [anon_sym_BSLASHtvolcite] = ACTIONS(12058), + [anon_sym_BSLASHTvolcite] = ACTIONS(12058), + [anon_sym_BSLASHavolcite] = ACTIONS(12058), + [anon_sym_BSLASHAvolcite] = ACTIONS(12058), + [anon_sym_BSLASHnotecite] = ACTIONS(12058), + [anon_sym_BSLASHpnotecite] = ACTIONS(12058), + [anon_sym_BSLASHPnotecite] = ACTIONS(12058), + [anon_sym_BSLASHfnotecite] = ACTIONS(12058), + [anon_sym_BSLASHusepackage] = ACTIONS(12058), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12058), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12058), + [anon_sym_BSLASHinclude] = ACTIONS(12058), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12058), + [anon_sym_BSLASHinput] = ACTIONS(12058), + [anon_sym_BSLASHsubfile] = ACTIONS(12058), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12058), + [anon_sym_BSLASHbibliography] = ACTIONS(12058), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12058), + [anon_sym_BSLASHincludesvg] = ACTIONS(12058), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12058), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12058), + [anon_sym_BSLASHimport] = ACTIONS(12058), + [anon_sym_BSLASHsubimport] = ACTIONS(12058), + [anon_sym_BSLASHinputfrom] = ACTIONS(12058), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12058), + [anon_sym_BSLASHincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHlabel] = ACTIONS(12058), + [anon_sym_BSLASHref] = ACTIONS(12058), + [anon_sym_BSLASHvref] = ACTIONS(12058), + [anon_sym_BSLASHVref] = ACTIONS(12058), + [anon_sym_BSLASHautoref] = ACTIONS(12058), + [anon_sym_BSLASHpageref] = ACTIONS(12058), + [anon_sym_BSLASHcref] = ACTIONS(12058), + [anon_sym_BSLASHCref] = ACTIONS(12058), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnameCref] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHlabelcref] = ACTIONS(12058), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12058), + [anon_sym_BSLASHeqref] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange] = ACTIONS(12058), + [anon_sym_BSLASHCrefrange] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewlabel] = ACTIONS(12058), + [anon_sym_BSLASHnewcommand] = ACTIONS(12058), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12058), + [anon_sym_BSLASHgls] = ACTIONS(12058), + [anon_sym_BSLASHGls] = ACTIONS(12058), + [anon_sym_BSLASHGLS] = ACTIONS(12058), + [anon_sym_BSLASHglspl] = ACTIONS(12058), + [anon_sym_BSLASHGlspl] = ACTIONS(12058), + [anon_sym_BSLASHGLSpl] = ACTIONS(12058), + [anon_sym_BSLASHglsdisp] = ACTIONS(12058), + [anon_sym_BSLASHglslink] = ACTIONS(12058), + [anon_sym_BSLASHglstext] = ACTIONS(12058), + [anon_sym_BSLASHGlstext] = ACTIONS(12058), + [anon_sym_BSLASHGLStext] = ACTIONS(12058), + [anon_sym_BSLASHglsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12058), + [anon_sym_BSLASHglsplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSplural] = ACTIONS(12058), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHglsname] = ACTIONS(12058), + [anon_sym_BSLASHGlsname] = ACTIONS(12058), + [anon_sym_BSLASHGLSname] = ACTIONS(12058), + [anon_sym_BSLASHglssymbol] = ACTIONS(12058), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12058), + [anon_sym_BSLASHglsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12058), + [anon_sym_BSLASHglsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12058), + [anon_sym_BSLASHglsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12058), + [anon_sym_BSLASHglsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12058), + [anon_sym_BSLASHglsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12058), + [anon_sym_BSLASHnewacronym] = ACTIONS(12058), + [anon_sym_BSLASHacrshort] = ACTIONS(12058), + [anon_sym_BSLASHAcrshort] = ACTIONS(12058), + [anon_sym_BSLASHACRshort] = ACTIONS(12058), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12058), + [anon_sym_BSLASHacrlong] = ACTIONS(12058), + [anon_sym_BSLASHAcrlong] = ACTIONS(12058), + [anon_sym_BSLASHACRlong] = ACTIONS(12058), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12058), + [anon_sym_BSLASHacrfull] = ACTIONS(12058), + [anon_sym_BSLASHAcrfull] = ACTIONS(12058), + [anon_sym_BSLASHACRfull] = ACTIONS(12058), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12058), + [anon_sym_BSLASHacs] = ACTIONS(12058), + [anon_sym_BSLASHAcs] = ACTIONS(12058), + [anon_sym_BSLASHacsp] = ACTIONS(12058), + [anon_sym_BSLASHAcsp] = ACTIONS(12058), + [anon_sym_BSLASHacl] = ACTIONS(12058), + [anon_sym_BSLASHAcl] = ACTIONS(12058), + [anon_sym_BSLASHaclp] = ACTIONS(12058), + [anon_sym_BSLASHAclp] = ACTIONS(12058), + [anon_sym_BSLASHacf] = ACTIONS(12058), + [anon_sym_BSLASHAcf] = ACTIONS(12058), + [anon_sym_BSLASHacfp] = ACTIONS(12058), + [anon_sym_BSLASHAcfp] = ACTIONS(12058), + [anon_sym_BSLASHac] = ACTIONS(12058), + [anon_sym_BSLASHAc] = ACTIONS(12058), + [anon_sym_BSLASHacp] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12058), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12058), + [anon_sym_BSLASHcolor] = ACTIONS(12058), + [anon_sym_BSLASHcolorbox] = ACTIONS(12058), + [anon_sym_BSLASHtextcolor] = ACTIONS(12058), + [anon_sym_BSLASHpagecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12058), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12058), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12058), + }, + [1639] = { + [sym__text_fragment] = STATE(1639), + [aux_sym_text_repeat1] = STATE(1639), + [sym_generic_command_name] = ACTIONS(12021), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12019), + [anon_sym_RBRACK] = ACTIONS(12019), + [anon_sym_LBRACE] = ACTIONS(12019), + [anon_sym_RBRACE] = ACTIONS(12019), + [anon_sym_LPAREN] = ACTIONS(12019), + [anon_sym_COMMA] = ACTIONS(12780), + [anon_sym_EQ] = ACTIONS(12780), + [sym_word] = ACTIONS(12780), + [sym_param] = ACTIONS(12019), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12019), + [anon_sym_DOLLAR] = ACTIONS(12021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12019), + [anon_sym_BSLASHbegin] = ACTIONS(12021), + [anon_sym_BSLASHcaption] = ACTIONS(12021), + [anon_sym_BSLASHcite] = ACTIONS(12021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCite] = ACTIONS(12021), + [anon_sym_BSLASHnocite] = ACTIONS(12021), + [anon_sym_BSLASHcitet] = ACTIONS(12021), + [anon_sym_BSLASHcitep] = ACTIONS(12021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteauthor] = ACTIONS(12021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitetitle] = ACTIONS(12021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteyear] = ACTIONS(12021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12019), + [anon_sym_BSLASHcitedate] = ACTIONS(12021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12019), + [anon_sym_BSLASHciteurl] = ACTIONS(12021), + [anon_sym_BSLASHfullcite] = ACTIONS(12021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12021), + [anon_sym_BSLASHcitealt] = ACTIONS(12021), + [anon_sym_BSLASHcitealp] = ACTIONS(12021), + [anon_sym_BSLASHcitetext] = ACTIONS(12021), + [anon_sym_BSLASHparencite] = ACTIONS(12021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHParencite] = ACTIONS(12021), + [anon_sym_BSLASHfootcite] = ACTIONS(12021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12021), + [anon_sym_BSLASHtextcite] = ACTIONS(12021), + [anon_sym_BSLASHTextcite] = ACTIONS(12021), + [anon_sym_BSLASHsmartcite] = ACTIONS(12021), + [anon_sym_BSLASHSmartcite] = ACTIONS(12021), + [anon_sym_BSLASHsupercite] = ACTIONS(12021), + [anon_sym_BSLASHautocite] = ACTIONS(12021), + [anon_sym_BSLASHAutocite] = ACTIONS(12021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12019), + [anon_sym_BSLASHvolcite] = ACTIONS(12021), + [anon_sym_BSLASHVolcite] = ACTIONS(12021), + [anon_sym_BSLASHpvolcite] = ACTIONS(12021), + [anon_sym_BSLASHPvolcite] = ACTIONS(12021), + [anon_sym_BSLASHfvolcite] = ACTIONS(12021), + [anon_sym_BSLASHftvolcite] = ACTIONS(12021), + [anon_sym_BSLASHsvolcite] = ACTIONS(12021), + [anon_sym_BSLASHSvolcite] = ACTIONS(12021), + [anon_sym_BSLASHtvolcite] = ACTIONS(12021), + [anon_sym_BSLASHTvolcite] = ACTIONS(12021), + [anon_sym_BSLASHavolcite] = ACTIONS(12021), + [anon_sym_BSLASHAvolcite] = ACTIONS(12021), + [anon_sym_BSLASHnotecite] = ACTIONS(12021), + [anon_sym_BSLASHpnotecite] = ACTIONS(12021), + [anon_sym_BSLASHPnotecite] = ACTIONS(12021), + [anon_sym_BSLASHfnotecite] = ACTIONS(12021), + [anon_sym_BSLASHusepackage] = ACTIONS(12021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12021), + [anon_sym_BSLASHinclude] = ACTIONS(12021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12021), + [anon_sym_BSLASHinput] = ACTIONS(12021), + [anon_sym_BSLASHsubfile] = ACTIONS(12021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12021), + [anon_sym_BSLASHbibliography] = ACTIONS(12021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12021), + [anon_sym_BSLASHincludesvg] = ACTIONS(12021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12021), + [anon_sym_BSLASHimport] = ACTIONS(12021), + [anon_sym_BSLASHsubimport] = ACTIONS(12021), + [anon_sym_BSLASHinputfrom] = ACTIONS(12021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12021), + [anon_sym_BSLASHincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12021), + [anon_sym_BSLASHlabel] = ACTIONS(12021), + [anon_sym_BSLASHref] = ACTIONS(12021), + [anon_sym_BSLASHvref] = ACTIONS(12021), + [anon_sym_BSLASHVref] = ACTIONS(12021), + [anon_sym_BSLASHautoref] = ACTIONS(12021), + [anon_sym_BSLASHpageref] = ACTIONS(12021), + [anon_sym_BSLASHcref] = ACTIONS(12021), + [anon_sym_BSLASHCref] = ACTIONS(12021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnameCref] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12021), + [anon_sym_BSLASHlabelcref] = ACTIONS(12021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12021), + [anon_sym_BSLASHeqref] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange] = ACTIONS(12021), + [anon_sym_BSLASHCrefrange] = ACTIONS(12021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewlabel] = ACTIONS(12021), + [anon_sym_BSLASHnewcommand] = ACTIONS(12021), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12019), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12021), + [anon_sym_BSLASHgls] = ACTIONS(12021), + [anon_sym_BSLASHGls] = ACTIONS(12021), + [anon_sym_BSLASHGLS] = ACTIONS(12021), + [anon_sym_BSLASHglspl] = ACTIONS(12021), + [anon_sym_BSLASHGlspl] = ACTIONS(12021), + [anon_sym_BSLASHGLSpl] = ACTIONS(12021), + [anon_sym_BSLASHglsdisp] = ACTIONS(12021), + [anon_sym_BSLASHglslink] = ACTIONS(12021), + [anon_sym_BSLASHglstext] = ACTIONS(12021), + [anon_sym_BSLASHGlstext] = ACTIONS(12021), + [anon_sym_BSLASHGLStext] = ACTIONS(12021), + [anon_sym_BSLASHglsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12021), + [anon_sym_BSLASHglsplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSplural] = ACTIONS(12021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12021), + [anon_sym_BSLASHglsname] = ACTIONS(12021), + [anon_sym_BSLASHGlsname] = ACTIONS(12021), + [anon_sym_BSLASHGLSname] = ACTIONS(12021), + [anon_sym_BSLASHglssymbol] = ACTIONS(12021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12021), + [anon_sym_BSLASHglsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12021), + [anon_sym_BSLASHglsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12021), + [anon_sym_BSLASHglsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12021), + [anon_sym_BSLASHglsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12021), + [anon_sym_BSLASHglsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12021), + [anon_sym_BSLASHnewacronym] = ACTIONS(12021), + [anon_sym_BSLASHacrshort] = ACTIONS(12021), + [anon_sym_BSLASHAcrshort] = ACTIONS(12021), + [anon_sym_BSLASHACRshort] = ACTIONS(12021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12021), + [anon_sym_BSLASHacrlong] = ACTIONS(12021), + [anon_sym_BSLASHAcrlong] = ACTIONS(12021), + [anon_sym_BSLASHACRlong] = ACTIONS(12021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12021), + [anon_sym_BSLASHacrfull] = ACTIONS(12021), + [anon_sym_BSLASHAcrfull] = ACTIONS(12021), + [anon_sym_BSLASHACRfull] = ACTIONS(12021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12021), + [anon_sym_BSLASHacs] = ACTIONS(12021), + [anon_sym_BSLASHAcs] = ACTIONS(12021), + [anon_sym_BSLASHacsp] = ACTIONS(12021), + [anon_sym_BSLASHAcsp] = ACTIONS(12021), + [anon_sym_BSLASHacl] = ACTIONS(12021), + [anon_sym_BSLASHAcl] = ACTIONS(12021), + [anon_sym_BSLASHaclp] = ACTIONS(12021), + [anon_sym_BSLASHAclp] = ACTIONS(12021), + [anon_sym_BSLASHacf] = ACTIONS(12021), + [anon_sym_BSLASHAcf] = ACTIONS(12021), + [anon_sym_BSLASHacfp] = ACTIONS(12021), + [anon_sym_BSLASHAcfp] = ACTIONS(12021), + [anon_sym_BSLASHac] = ACTIONS(12021), + [anon_sym_BSLASHAc] = ACTIONS(12021), + [anon_sym_BSLASHacp] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12021), + [anon_sym_BSLASHcolor] = ACTIONS(12021), + [anon_sym_BSLASHcolorbox] = ACTIONS(12021), + [anon_sym_BSLASHtextcolor] = ACTIONS(12021), + [anon_sym_BSLASHpagecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12021), + }, + [1640] = { + [sym_generic_command_name] = ACTIONS(12437), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12437), + [anon_sym_BSLASHitem] = ACTIONS(12437), + [anon_sym_LBRACK] = ACTIONS(12435), + [anon_sym_RBRACK] = ACTIONS(12435), + [anon_sym_LBRACE] = ACTIONS(12435), + [anon_sym_RBRACE] = ACTIONS(12435), + [anon_sym_LPAREN] = ACTIONS(12435), + [anon_sym_COMMA] = ACTIONS(12435), + [anon_sym_EQ] = ACTIONS(12435), + [sym_word] = ACTIONS(12435), + [sym_param] = ACTIONS(12435), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12435), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12435), + [anon_sym_DOLLAR] = ACTIONS(12437), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12435), + [anon_sym_BSLASHbegin] = ACTIONS(12437), + [anon_sym_BSLASHcaption] = ACTIONS(12437), + [anon_sym_BSLASHcite] = ACTIONS(12437), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCite] = ACTIONS(12437), + [anon_sym_BSLASHnocite] = ACTIONS(12437), + [anon_sym_BSLASHcitet] = ACTIONS(12437), + [anon_sym_BSLASHcitep] = ACTIONS(12437), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteauthor] = ACTIONS(12437), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12437), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitetitle] = ACTIONS(12437), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteyear] = ACTIONS(12437), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitedate] = ACTIONS(12437), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteurl] = ACTIONS(12437), + [anon_sym_BSLASHfullcite] = ACTIONS(12437), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12437), + [anon_sym_BSLASHcitealt] = ACTIONS(12437), + [anon_sym_BSLASHcitealp] = ACTIONS(12437), + [anon_sym_BSLASHcitetext] = ACTIONS(12437), + [anon_sym_BSLASHparencite] = ACTIONS(12437), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHParencite] = ACTIONS(12437), + [anon_sym_BSLASHfootcite] = ACTIONS(12437), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12437), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12437), + [anon_sym_BSLASHtextcite] = ACTIONS(12437), + [anon_sym_BSLASHTextcite] = ACTIONS(12437), + [anon_sym_BSLASHsmartcite] = ACTIONS(12437), + [anon_sym_BSLASHSmartcite] = ACTIONS(12437), + [anon_sym_BSLASHsupercite] = ACTIONS(12437), + [anon_sym_BSLASHautocite] = ACTIONS(12437), + [anon_sym_BSLASHAutocite] = ACTIONS(12437), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHvolcite] = ACTIONS(12437), + [anon_sym_BSLASHVolcite] = ACTIONS(12437), + [anon_sym_BSLASHpvolcite] = ACTIONS(12437), + [anon_sym_BSLASHPvolcite] = ACTIONS(12437), + [anon_sym_BSLASHfvolcite] = ACTIONS(12437), + [anon_sym_BSLASHftvolcite] = ACTIONS(12437), + [anon_sym_BSLASHsvolcite] = ACTIONS(12437), + [anon_sym_BSLASHSvolcite] = ACTIONS(12437), + [anon_sym_BSLASHtvolcite] = ACTIONS(12437), + [anon_sym_BSLASHTvolcite] = ACTIONS(12437), + [anon_sym_BSLASHavolcite] = ACTIONS(12437), + [anon_sym_BSLASHAvolcite] = ACTIONS(12437), + [anon_sym_BSLASHnotecite] = ACTIONS(12437), + [anon_sym_BSLASHpnotecite] = ACTIONS(12437), + [anon_sym_BSLASHPnotecite] = ACTIONS(12437), + [anon_sym_BSLASHfnotecite] = ACTIONS(12437), + [anon_sym_BSLASHusepackage] = ACTIONS(12437), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12437), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12437), + [anon_sym_BSLASHinclude] = ACTIONS(12437), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12437), + [anon_sym_BSLASHinput] = ACTIONS(12437), + [anon_sym_BSLASHsubfile] = ACTIONS(12437), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12437), + [anon_sym_BSLASHbibliography] = ACTIONS(12437), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12437), + [anon_sym_BSLASHincludesvg] = ACTIONS(12437), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12437), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12437), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12437), + [anon_sym_BSLASHimport] = ACTIONS(12437), + [anon_sym_BSLASHsubimport] = ACTIONS(12437), + [anon_sym_BSLASHinputfrom] = ACTIONS(12437), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12437), + [anon_sym_BSLASHincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHlabel] = ACTIONS(12437), + [anon_sym_BSLASHref] = ACTIONS(12437), + [anon_sym_BSLASHvref] = ACTIONS(12437), + [anon_sym_BSLASHVref] = ACTIONS(12437), + [anon_sym_BSLASHautoref] = ACTIONS(12437), + [anon_sym_BSLASHpageref] = ACTIONS(12437), + [anon_sym_BSLASHcref] = ACTIONS(12437), + [anon_sym_BSLASHCref] = ACTIONS(12437), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnameCref] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHlabelcref] = ACTIONS(12437), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12437), + [anon_sym_BSLASHeqref] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange] = ACTIONS(12437), + [anon_sym_BSLASHCrefrange] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewlabel] = ACTIONS(12437), + [anon_sym_BSLASHnewcommand] = ACTIONS(12437), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12437), + [anon_sym_BSLASHgls] = ACTIONS(12437), + [anon_sym_BSLASHGls] = ACTIONS(12437), + [anon_sym_BSLASHGLS] = ACTIONS(12437), + [anon_sym_BSLASHglspl] = ACTIONS(12437), + [anon_sym_BSLASHGlspl] = ACTIONS(12437), + [anon_sym_BSLASHGLSpl] = ACTIONS(12437), + [anon_sym_BSLASHglsdisp] = ACTIONS(12437), + [anon_sym_BSLASHglslink] = ACTIONS(12437), + [anon_sym_BSLASHglstext] = ACTIONS(12437), + [anon_sym_BSLASHGlstext] = ACTIONS(12437), + [anon_sym_BSLASHGLStext] = ACTIONS(12437), + [anon_sym_BSLASHglsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12437), + [anon_sym_BSLASHglsplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSplural] = ACTIONS(12437), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHglsname] = ACTIONS(12437), + [anon_sym_BSLASHGlsname] = ACTIONS(12437), + [anon_sym_BSLASHGLSname] = ACTIONS(12437), + [anon_sym_BSLASHglssymbol] = ACTIONS(12437), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12437), + [anon_sym_BSLASHglsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12437), + [anon_sym_BSLASHglsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12437), + [anon_sym_BSLASHglsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12437), + [anon_sym_BSLASHglsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12437), + [anon_sym_BSLASHglsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12437), + [anon_sym_BSLASHnewacronym] = ACTIONS(12437), + [anon_sym_BSLASHacrshort] = ACTIONS(12437), + [anon_sym_BSLASHAcrshort] = ACTIONS(12437), + [anon_sym_BSLASHACRshort] = ACTIONS(12437), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12437), + [anon_sym_BSLASHacrlong] = ACTIONS(12437), + [anon_sym_BSLASHAcrlong] = ACTIONS(12437), + [anon_sym_BSLASHACRlong] = ACTIONS(12437), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12437), + [anon_sym_BSLASHacrfull] = ACTIONS(12437), + [anon_sym_BSLASHAcrfull] = ACTIONS(12437), + [anon_sym_BSLASHACRfull] = ACTIONS(12437), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12437), + [anon_sym_BSLASHacs] = ACTIONS(12437), + [anon_sym_BSLASHAcs] = ACTIONS(12437), + [anon_sym_BSLASHacsp] = ACTIONS(12437), + [anon_sym_BSLASHAcsp] = ACTIONS(12437), + [anon_sym_BSLASHacl] = ACTIONS(12437), + [anon_sym_BSLASHAcl] = ACTIONS(12437), + [anon_sym_BSLASHaclp] = ACTIONS(12437), + [anon_sym_BSLASHAclp] = ACTIONS(12437), + [anon_sym_BSLASHacf] = ACTIONS(12437), + [anon_sym_BSLASHAcf] = ACTIONS(12437), + [anon_sym_BSLASHacfp] = ACTIONS(12437), + [anon_sym_BSLASHAcfp] = ACTIONS(12437), + [anon_sym_BSLASHac] = ACTIONS(12437), + [anon_sym_BSLASHAc] = ACTIONS(12437), + [anon_sym_BSLASHacp] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12437), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12437), + [anon_sym_BSLASHcolor] = ACTIONS(12437), + [anon_sym_BSLASHcolorbox] = ACTIONS(12437), + [anon_sym_BSLASHtextcolor] = ACTIONS(12437), + [anon_sym_BSLASHpagecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12437), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12437), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12437), + }, + [1641] = { + [sym_generic_command_name] = ACTIONS(12185), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12185), + [anon_sym_BSLASHitem] = ACTIONS(12185), + [anon_sym_LBRACK] = ACTIONS(12183), + [anon_sym_RBRACK] = ACTIONS(12183), + [anon_sym_LBRACE] = ACTIONS(12183), + [anon_sym_RBRACE] = ACTIONS(12183), + [anon_sym_LPAREN] = ACTIONS(12183), + [anon_sym_COMMA] = ACTIONS(12183), + [anon_sym_EQ] = ACTIONS(12183), + [sym_word] = ACTIONS(12183), + [sym_param] = ACTIONS(12183), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12183), + [anon_sym_DOLLAR] = ACTIONS(12185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12183), + [anon_sym_BSLASHbegin] = ACTIONS(12185), + [anon_sym_BSLASHcaption] = ACTIONS(12185), + [anon_sym_BSLASHcite] = ACTIONS(12185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCite] = ACTIONS(12185), + [anon_sym_BSLASHnocite] = ACTIONS(12185), + [anon_sym_BSLASHcitet] = ACTIONS(12185), + [anon_sym_BSLASHcitep] = ACTIONS(12185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteauthor] = ACTIONS(12185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitetitle] = ACTIONS(12185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteyear] = ACTIONS(12185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitedate] = ACTIONS(12185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteurl] = ACTIONS(12185), + [anon_sym_BSLASHfullcite] = ACTIONS(12185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12185), + [anon_sym_BSLASHcitealt] = ACTIONS(12185), + [anon_sym_BSLASHcitealp] = ACTIONS(12185), + [anon_sym_BSLASHcitetext] = ACTIONS(12185), + [anon_sym_BSLASHparencite] = ACTIONS(12185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHParencite] = ACTIONS(12185), + [anon_sym_BSLASHfootcite] = ACTIONS(12185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12185), + [anon_sym_BSLASHtextcite] = ACTIONS(12185), + [anon_sym_BSLASHTextcite] = ACTIONS(12185), + [anon_sym_BSLASHsmartcite] = ACTIONS(12185), + [anon_sym_BSLASHSmartcite] = ACTIONS(12185), + [anon_sym_BSLASHsupercite] = ACTIONS(12185), + [anon_sym_BSLASHautocite] = ACTIONS(12185), + [anon_sym_BSLASHAutocite] = ACTIONS(12185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHvolcite] = ACTIONS(12185), + [anon_sym_BSLASHVolcite] = ACTIONS(12185), + [anon_sym_BSLASHpvolcite] = ACTIONS(12185), + [anon_sym_BSLASHPvolcite] = ACTIONS(12185), + [anon_sym_BSLASHfvolcite] = ACTIONS(12185), + [anon_sym_BSLASHftvolcite] = ACTIONS(12185), + [anon_sym_BSLASHsvolcite] = ACTIONS(12185), + [anon_sym_BSLASHSvolcite] = ACTIONS(12185), + [anon_sym_BSLASHtvolcite] = ACTIONS(12185), + [anon_sym_BSLASHTvolcite] = ACTIONS(12185), + [anon_sym_BSLASHavolcite] = ACTIONS(12185), + [anon_sym_BSLASHAvolcite] = ACTIONS(12185), + [anon_sym_BSLASHnotecite] = ACTIONS(12185), + [anon_sym_BSLASHpnotecite] = ACTIONS(12185), + [anon_sym_BSLASHPnotecite] = ACTIONS(12185), + [anon_sym_BSLASHfnotecite] = ACTIONS(12185), + [anon_sym_BSLASHusepackage] = ACTIONS(12185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12185), + [anon_sym_BSLASHinclude] = ACTIONS(12185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12185), + [anon_sym_BSLASHinput] = ACTIONS(12185), + [anon_sym_BSLASHsubfile] = ACTIONS(12185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12185), + [anon_sym_BSLASHbibliography] = ACTIONS(12185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12185), + [anon_sym_BSLASHincludesvg] = ACTIONS(12185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12185), + [anon_sym_BSLASHimport] = ACTIONS(12185), + [anon_sym_BSLASHsubimport] = ACTIONS(12185), + [anon_sym_BSLASHinputfrom] = ACTIONS(12185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12185), + [anon_sym_BSLASHincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHlabel] = ACTIONS(12185), + [anon_sym_BSLASHref] = ACTIONS(12185), + [anon_sym_BSLASHvref] = ACTIONS(12185), + [anon_sym_BSLASHVref] = ACTIONS(12185), + [anon_sym_BSLASHautoref] = ACTIONS(12185), + [anon_sym_BSLASHpageref] = ACTIONS(12185), + [anon_sym_BSLASHcref] = ACTIONS(12185), + [anon_sym_BSLASHCref] = ACTIONS(12185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnameCref] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHlabelcref] = ACTIONS(12185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12185), + [anon_sym_BSLASHeqref] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange] = ACTIONS(12185), + [anon_sym_BSLASHCrefrange] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewlabel] = ACTIONS(12185), + [anon_sym_BSLASHnewcommand] = ACTIONS(12185), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12185), + [anon_sym_BSLASHgls] = ACTIONS(12185), + [anon_sym_BSLASHGls] = ACTIONS(12185), + [anon_sym_BSLASHGLS] = ACTIONS(12185), + [anon_sym_BSLASHglspl] = ACTIONS(12185), + [anon_sym_BSLASHGlspl] = ACTIONS(12185), + [anon_sym_BSLASHGLSpl] = ACTIONS(12185), + [anon_sym_BSLASHglsdisp] = ACTIONS(12185), + [anon_sym_BSLASHglslink] = ACTIONS(12185), + [anon_sym_BSLASHglstext] = ACTIONS(12185), + [anon_sym_BSLASHGlstext] = ACTIONS(12185), + [anon_sym_BSLASHGLStext] = ACTIONS(12185), + [anon_sym_BSLASHglsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12185), + [anon_sym_BSLASHglsplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSplural] = ACTIONS(12185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHglsname] = ACTIONS(12185), + [anon_sym_BSLASHGlsname] = ACTIONS(12185), + [anon_sym_BSLASHGLSname] = ACTIONS(12185), + [anon_sym_BSLASHglssymbol] = ACTIONS(12185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12185), + [anon_sym_BSLASHglsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12185), + [anon_sym_BSLASHglsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12185), + [anon_sym_BSLASHglsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12185), + [anon_sym_BSLASHglsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12185), + [anon_sym_BSLASHglsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12185), + [anon_sym_BSLASHnewacronym] = ACTIONS(12185), + [anon_sym_BSLASHacrshort] = ACTIONS(12185), + [anon_sym_BSLASHAcrshort] = ACTIONS(12185), + [anon_sym_BSLASHACRshort] = ACTIONS(12185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12185), + [anon_sym_BSLASHacrlong] = ACTIONS(12185), + [anon_sym_BSLASHAcrlong] = ACTIONS(12185), + [anon_sym_BSLASHACRlong] = ACTIONS(12185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12185), + [anon_sym_BSLASHacrfull] = ACTIONS(12185), + [anon_sym_BSLASHAcrfull] = ACTIONS(12185), + [anon_sym_BSLASHACRfull] = ACTIONS(12185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12185), + [anon_sym_BSLASHacs] = ACTIONS(12185), + [anon_sym_BSLASHAcs] = ACTIONS(12185), + [anon_sym_BSLASHacsp] = ACTIONS(12185), + [anon_sym_BSLASHAcsp] = ACTIONS(12185), + [anon_sym_BSLASHacl] = ACTIONS(12185), + [anon_sym_BSLASHAcl] = ACTIONS(12185), + [anon_sym_BSLASHaclp] = ACTIONS(12185), + [anon_sym_BSLASHAclp] = ACTIONS(12185), + [anon_sym_BSLASHacf] = ACTIONS(12185), + [anon_sym_BSLASHAcf] = ACTIONS(12185), + [anon_sym_BSLASHacfp] = ACTIONS(12185), + [anon_sym_BSLASHAcfp] = ACTIONS(12185), + [anon_sym_BSLASHac] = ACTIONS(12185), + [anon_sym_BSLASHAc] = ACTIONS(12185), + [anon_sym_BSLASHacp] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12185), + [anon_sym_BSLASHcolor] = ACTIONS(12185), + [anon_sym_BSLASHcolorbox] = ACTIONS(12185), + [anon_sym_BSLASHtextcolor] = ACTIONS(12185), + [anon_sym_BSLASHpagecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12185), + }, + [1642] = { + [sym_generic_command_name] = ACTIONS(12181), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12181), + [anon_sym_BSLASHitem] = ACTIONS(12181), + [anon_sym_LBRACK] = ACTIONS(12179), + [anon_sym_RBRACK] = ACTIONS(12179), + [anon_sym_LBRACE] = ACTIONS(12179), + [anon_sym_RBRACE] = ACTIONS(12179), + [anon_sym_LPAREN] = ACTIONS(12179), + [anon_sym_COMMA] = ACTIONS(12179), + [anon_sym_EQ] = ACTIONS(12179), + [sym_word] = ACTIONS(12179), + [sym_param] = ACTIONS(12179), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12179), + [anon_sym_DOLLAR] = ACTIONS(12181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12179), + [anon_sym_BSLASHbegin] = ACTIONS(12181), + [anon_sym_BSLASHcaption] = ACTIONS(12181), + [anon_sym_BSLASHcite] = ACTIONS(12181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCite] = ACTIONS(12181), + [anon_sym_BSLASHnocite] = ACTIONS(12181), + [anon_sym_BSLASHcitet] = ACTIONS(12181), + [anon_sym_BSLASHcitep] = ACTIONS(12181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteauthor] = ACTIONS(12181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitetitle] = ACTIONS(12181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteyear] = ACTIONS(12181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitedate] = ACTIONS(12181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteurl] = ACTIONS(12181), + [anon_sym_BSLASHfullcite] = ACTIONS(12181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12181), + [anon_sym_BSLASHcitealt] = ACTIONS(12181), + [anon_sym_BSLASHcitealp] = ACTIONS(12181), + [anon_sym_BSLASHcitetext] = ACTIONS(12181), + [anon_sym_BSLASHparencite] = ACTIONS(12181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHParencite] = ACTIONS(12181), + [anon_sym_BSLASHfootcite] = ACTIONS(12181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12181), + [anon_sym_BSLASHtextcite] = ACTIONS(12181), + [anon_sym_BSLASHTextcite] = ACTIONS(12181), + [anon_sym_BSLASHsmartcite] = ACTIONS(12181), + [anon_sym_BSLASHSmartcite] = ACTIONS(12181), + [anon_sym_BSLASHsupercite] = ACTIONS(12181), + [anon_sym_BSLASHautocite] = ACTIONS(12181), + [anon_sym_BSLASHAutocite] = ACTIONS(12181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHvolcite] = ACTIONS(12181), + [anon_sym_BSLASHVolcite] = ACTIONS(12181), + [anon_sym_BSLASHpvolcite] = ACTIONS(12181), + [anon_sym_BSLASHPvolcite] = ACTIONS(12181), + [anon_sym_BSLASHfvolcite] = ACTIONS(12181), + [anon_sym_BSLASHftvolcite] = ACTIONS(12181), + [anon_sym_BSLASHsvolcite] = ACTIONS(12181), + [anon_sym_BSLASHSvolcite] = ACTIONS(12181), + [anon_sym_BSLASHtvolcite] = ACTIONS(12181), + [anon_sym_BSLASHTvolcite] = ACTIONS(12181), + [anon_sym_BSLASHavolcite] = ACTIONS(12181), + [anon_sym_BSLASHAvolcite] = ACTIONS(12181), + [anon_sym_BSLASHnotecite] = ACTIONS(12181), + [anon_sym_BSLASHpnotecite] = ACTIONS(12181), + [anon_sym_BSLASHPnotecite] = ACTIONS(12181), + [anon_sym_BSLASHfnotecite] = ACTIONS(12181), + [anon_sym_BSLASHusepackage] = ACTIONS(12181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12181), + [anon_sym_BSLASHinclude] = ACTIONS(12181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12181), + [anon_sym_BSLASHinput] = ACTIONS(12181), + [anon_sym_BSLASHsubfile] = ACTIONS(12181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12181), + [anon_sym_BSLASHbibliography] = ACTIONS(12181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12181), + [anon_sym_BSLASHincludesvg] = ACTIONS(12181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12181), + [anon_sym_BSLASHimport] = ACTIONS(12181), + [anon_sym_BSLASHsubimport] = ACTIONS(12181), + [anon_sym_BSLASHinputfrom] = ACTIONS(12181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12181), + [anon_sym_BSLASHincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHlabel] = ACTIONS(12181), + [anon_sym_BSLASHref] = ACTIONS(12181), + [anon_sym_BSLASHvref] = ACTIONS(12181), + [anon_sym_BSLASHVref] = ACTIONS(12181), + [anon_sym_BSLASHautoref] = ACTIONS(12181), + [anon_sym_BSLASHpageref] = ACTIONS(12181), + [anon_sym_BSLASHcref] = ACTIONS(12181), + [anon_sym_BSLASHCref] = ACTIONS(12181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnameCref] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHlabelcref] = ACTIONS(12181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12181), + [anon_sym_BSLASHeqref] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange] = ACTIONS(12181), + [anon_sym_BSLASHCrefrange] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewlabel] = ACTIONS(12181), + [anon_sym_BSLASHnewcommand] = ACTIONS(12181), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12181), + [anon_sym_BSLASHgls] = ACTIONS(12181), + [anon_sym_BSLASHGls] = ACTIONS(12181), + [anon_sym_BSLASHGLS] = ACTIONS(12181), + [anon_sym_BSLASHglspl] = ACTIONS(12181), + [anon_sym_BSLASHGlspl] = ACTIONS(12181), + [anon_sym_BSLASHGLSpl] = ACTIONS(12181), + [anon_sym_BSLASHglsdisp] = ACTIONS(12181), + [anon_sym_BSLASHglslink] = ACTIONS(12181), + [anon_sym_BSLASHglstext] = ACTIONS(12181), + [anon_sym_BSLASHGlstext] = ACTIONS(12181), + [anon_sym_BSLASHGLStext] = ACTIONS(12181), + [anon_sym_BSLASHglsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12181), + [anon_sym_BSLASHglsplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSplural] = ACTIONS(12181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHglsname] = ACTIONS(12181), + [anon_sym_BSLASHGlsname] = ACTIONS(12181), + [anon_sym_BSLASHGLSname] = ACTIONS(12181), + [anon_sym_BSLASHglssymbol] = ACTIONS(12181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12181), + [anon_sym_BSLASHglsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12181), + [anon_sym_BSLASHglsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12181), + [anon_sym_BSLASHglsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12181), + [anon_sym_BSLASHglsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12181), + [anon_sym_BSLASHglsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12181), + [anon_sym_BSLASHnewacronym] = ACTIONS(12181), + [anon_sym_BSLASHacrshort] = ACTIONS(12181), + [anon_sym_BSLASHAcrshort] = ACTIONS(12181), + [anon_sym_BSLASHACRshort] = ACTIONS(12181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12181), + [anon_sym_BSLASHacrlong] = ACTIONS(12181), + [anon_sym_BSLASHAcrlong] = ACTIONS(12181), + [anon_sym_BSLASHACRlong] = ACTIONS(12181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12181), + [anon_sym_BSLASHacrfull] = ACTIONS(12181), + [anon_sym_BSLASHAcrfull] = ACTIONS(12181), + [anon_sym_BSLASHACRfull] = ACTIONS(12181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12181), + [anon_sym_BSLASHacs] = ACTIONS(12181), + [anon_sym_BSLASHAcs] = ACTIONS(12181), + [anon_sym_BSLASHacsp] = ACTIONS(12181), + [anon_sym_BSLASHAcsp] = ACTIONS(12181), + [anon_sym_BSLASHacl] = ACTIONS(12181), + [anon_sym_BSLASHAcl] = ACTIONS(12181), + [anon_sym_BSLASHaclp] = ACTIONS(12181), + [anon_sym_BSLASHAclp] = ACTIONS(12181), + [anon_sym_BSLASHacf] = ACTIONS(12181), + [anon_sym_BSLASHAcf] = ACTIONS(12181), + [anon_sym_BSLASHacfp] = ACTIONS(12181), + [anon_sym_BSLASHAcfp] = ACTIONS(12181), + [anon_sym_BSLASHac] = ACTIONS(12181), + [anon_sym_BSLASHAc] = ACTIONS(12181), + [anon_sym_BSLASHacp] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12181), + [anon_sym_BSLASHcolor] = ACTIONS(12181), + [anon_sym_BSLASHcolorbox] = ACTIONS(12181), + [anon_sym_BSLASHtextcolor] = ACTIONS(12181), + [anon_sym_BSLASHpagecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12181), + }, + [1643] = { + [sym_generic_command_name] = ACTIONS(12120), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12120), + [anon_sym_BSLASHitem] = ACTIONS(12120), + [anon_sym_LBRACK] = ACTIONS(12118), + [anon_sym_RBRACK] = ACTIONS(12118), + [anon_sym_LBRACE] = ACTIONS(12118), + [anon_sym_RBRACE] = ACTIONS(12118), + [anon_sym_LPAREN] = ACTIONS(12118), + [anon_sym_COMMA] = ACTIONS(12118), + [anon_sym_EQ] = ACTIONS(12118), + [sym_word] = ACTIONS(12118), + [sym_param] = ACTIONS(12118), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12118), + [anon_sym_DOLLAR] = ACTIONS(12120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12118), + [anon_sym_BSLASHbegin] = ACTIONS(12120), + [anon_sym_BSLASHcaption] = ACTIONS(12120), + [anon_sym_BSLASHcite] = ACTIONS(12120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCite] = ACTIONS(12120), + [anon_sym_BSLASHnocite] = ACTIONS(12120), + [anon_sym_BSLASHcitet] = ACTIONS(12120), + [anon_sym_BSLASHcitep] = ACTIONS(12120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteauthor] = ACTIONS(12120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitetitle] = ACTIONS(12120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteyear] = ACTIONS(12120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitedate] = ACTIONS(12120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteurl] = ACTIONS(12120), + [anon_sym_BSLASHfullcite] = ACTIONS(12120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12120), + [anon_sym_BSLASHcitealt] = ACTIONS(12120), + [anon_sym_BSLASHcitealp] = ACTIONS(12120), + [anon_sym_BSLASHcitetext] = ACTIONS(12120), + [anon_sym_BSLASHparencite] = ACTIONS(12120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHParencite] = ACTIONS(12120), + [anon_sym_BSLASHfootcite] = ACTIONS(12120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12120), + [anon_sym_BSLASHtextcite] = ACTIONS(12120), + [anon_sym_BSLASHTextcite] = ACTIONS(12120), + [anon_sym_BSLASHsmartcite] = ACTIONS(12120), + [anon_sym_BSLASHSmartcite] = ACTIONS(12120), + [anon_sym_BSLASHsupercite] = ACTIONS(12120), + [anon_sym_BSLASHautocite] = ACTIONS(12120), + [anon_sym_BSLASHAutocite] = ACTIONS(12120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHvolcite] = ACTIONS(12120), + [anon_sym_BSLASHVolcite] = ACTIONS(12120), + [anon_sym_BSLASHpvolcite] = ACTIONS(12120), + [anon_sym_BSLASHPvolcite] = ACTIONS(12120), + [anon_sym_BSLASHfvolcite] = ACTIONS(12120), + [anon_sym_BSLASHftvolcite] = ACTIONS(12120), + [anon_sym_BSLASHsvolcite] = ACTIONS(12120), + [anon_sym_BSLASHSvolcite] = ACTIONS(12120), + [anon_sym_BSLASHtvolcite] = ACTIONS(12120), + [anon_sym_BSLASHTvolcite] = ACTIONS(12120), + [anon_sym_BSLASHavolcite] = ACTIONS(12120), + [anon_sym_BSLASHAvolcite] = ACTIONS(12120), + [anon_sym_BSLASHnotecite] = ACTIONS(12120), + [anon_sym_BSLASHpnotecite] = ACTIONS(12120), + [anon_sym_BSLASHPnotecite] = ACTIONS(12120), + [anon_sym_BSLASHfnotecite] = ACTIONS(12120), + [anon_sym_BSLASHusepackage] = ACTIONS(12120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12120), + [anon_sym_BSLASHinclude] = ACTIONS(12120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12120), + [anon_sym_BSLASHinput] = ACTIONS(12120), + [anon_sym_BSLASHsubfile] = ACTIONS(12120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12120), + [anon_sym_BSLASHbibliography] = ACTIONS(12120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12120), + [anon_sym_BSLASHincludesvg] = ACTIONS(12120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12120), + [anon_sym_BSLASHimport] = ACTIONS(12120), + [anon_sym_BSLASHsubimport] = ACTIONS(12120), + [anon_sym_BSLASHinputfrom] = ACTIONS(12120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12120), + [anon_sym_BSLASHincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHlabel] = ACTIONS(12120), + [anon_sym_BSLASHref] = ACTIONS(12120), + [anon_sym_BSLASHvref] = ACTIONS(12120), + [anon_sym_BSLASHVref] = ACTIONS(12120), + [anon_sym_BSLASHautoref] = ACTIONS(12120), + [anon_sym_BSLASHpageref] = ACTIONS(12120), + [anon_sym_BSLASHcref] = ACTIONS(12120), + [anon_sym_BSLASHCref] = ACTIONS(12120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnameCref] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHlabelcref] = ACTIONS(12120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12120), + [anon_sym_BSLASHeqref] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange] = ACTIONS(12120), + [anon_sym_BSLASHCrefrange] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewlabel] = ACTIONS(12120), + [anon_sym_BSLASHnewcommand] = ACTIONS(12120), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12120), + [anon_sym_BSLASHgls] = ACTIONS(12120), + [anon_sym_BSLASHGls] = ACTIONS(12120), + [anon_sym_BSLASHGLS] = ACTIONS(12120), + [anon_sym_BSLASHglspl] = ACTIONS(12120), + [anon_sym_BSLASHGlspl] = ACTIONS(12120), + [anon_sym_BSLASHGLSpl] = ACTIONS(12120), + [anon_sym_BSLASHglsdisp] = ACTIONS(12120), + [anon_sym_BSLASHglslink] = ACTIONS(12120), + [anon_sym_BSLASHglstext] = ACTIONS(12120), + [anon_sym_BSLASHGlstext] = ACTIONS(12120), + [anon_sym_BSLASHGLStext] = ACTIONS(12120), + [anon_sym_BSLASHglsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12120), + [anon_sym_BSLASHglsplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSplural] = ACTIONS(12120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHglsname] = ACTIONS(12120), + [anon_sym_BSLASHGlsname] = ACTIONS(12120), + [anon_sym_BSLASHGLSname] = ACTIONS(12120), + [anon_sym_BSLASHglssymbol] = ACTIONS(12120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12120), + [anon_sym_BSLASHglsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12120), + [anon_sym_BSLASHglsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12120), + [anon_sym_BSLASHglsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12120), + [anon_sym_BSLASHglsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12120), + [anon_sym_BSLASHglsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12120), + [anon_sym_BSLASHnewacronym] = ACTIONS(12120), + [anon_sym_BSLASHacrshort] = ACTIONS(12120), + [anon_sym_BSLASHAcrshort] = ACTIONS(12120), + [anon_sym_BSLASHACRshort] = ACTIONS(12120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12120), + [anon_sym_BSLASHacrlong] = ACTIONS(12120), + [anon_sym_BSLASHAcrlong] = ACTIONS(12120), + [anon_sym_BSLASHACRlong] = ACTIONS(12120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12120), + [anon_sym_BSLASHacrfull] = ACTIONS(12120), + [anon_sym_BSLASHAcrfull] = ACTIONS(12120), + [anon_sym_BSLASHACRfull] = ACTIONS(12120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12120), + [anon_sym_BSLASHacs] = ACTIONS(12120), + [anon_sym_BSLASHAcs] = ACTIONS(12120), + [anon_sym_BSLASHacsp] = ACTIONS(12120), + [anon_sym_BSLASHAcsp] = ACTIONS(12120), + [anon_sym_BSLASHacl] = ACTIONS(12120), + [anon_sym_BSLASHAcl] = ACTIONS(12120), + [anon_sym_BSLASHaclp] = ACTIONS(12120), + [anon_sym_BSLASHAclp] = ACTIONS(12120), + [anon_sym_BSLASHacf] = ACTIONS(12120), + [anon_sym_BSLASHAcf] = ACTIONS(12120), + [anon_sym_BSLASHacfp] = ACTIONS(12120), + [anon_sym_BSLASHAcfp] = ACTIONS(12120), + [anon_sym_BSLASHac] = ACTIONS(12120), + [anon_sym_BSLASHAc] = ACTIONS(12120), + [anon_sym_BSLASHacp] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12120), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12120), + [anon_sym_BSLASHcolor] = ACTIONS(12120), + [anon_sym_BSLASHcolorbox] = ACTIONS(12120), + [anon_sym_BSLASHtextcolor] = ACTIONS(12120), + [anon_sym_BSLASHpagecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12120), + }, + [1644] = { + [sym_generic_command_name] = ACTIONS(12116), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12116), + [anon_sym_BSLASHitem] = ACTIONS(12116), + [anon_sym_LBRACK] = ACTIONS(12114), + [anon_sym_RBRACK] = ACTIONS(12114), + [anon_sym_LBRACE] = ACTIONS(12114), + [anon_sym_RBRACE] = ACTIONS(12114), + [anon_sym_LPAREN] = ACTIONS(12114), + [anon_sym_COMMA] = ACTIONS(12114), + [anon_sym_EQ] = ACTIONS(12114), + [sym_word] = ACTIONS(12114), + [sym_param] = ACTIONS(12114), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12114), + [anon_sym_DOLLAR] = ACTIONS(12116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12114), + [anon_sym_BSLASHbegin] = ACTIONS(12116), + [anon_sym_BSLASHcaption] = ACTIONS(12116), + [anon_sym_BSLASHcite] = ACTIONS(12116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCite] = ACTIONS(12116), + [anon_sym_BSLASHnocite] = ACTIONS(12116), + [anon_sym_BSLASHcitet] = ACTIONS(12116), + [anon_sym_BSLASHcitep] = ACTIONS(12116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteauthor] = ACTIONS(12116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitetitle] = ACTIONS(12116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteyear] = ACTIONS(12116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitedate] = ACTIONS(12116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteurl] = ACTIONS(12116), + [anon_sym_BSLASHfullcite] = ACTIONS(12116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12116), + [anon_sym_BSLASHcitealt] = ACTIONS(12116), + [anon_sym_BSLASHcitealp] = ACTIONS(12116), + [anon_sym_BSLASHcitetext] = ACTIONS(12116), + [anon_sym_BSLASHparencite] = ACTIONS(12116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHParencite] = ACTIONS(12116), + [anon_sym_BSLASHfootcite] = ACTIONS(12116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12116), + [anon_sym_BSLASHtextcite] = ACTIONS(12116), + [anon_sym_BSLASHTextcite] = ACTIONS(12116), + [anon_sym_BSLASHsmartcite] = ACTIONS(12116), + [anon_sym_BSLASHSmartcite] = ACTIONS(12116), + [anon_sym_BSLASHsupercite] = ACTIONS(12116), + [anon_sym_BSLASHautocite] = ACTIONS(12116), + [anon_sym_BSLASHAutocite] = ACTIONS(12116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHvolcite] = ACTIONS(12116), + [anon_sym_BSLASHVolcite] = ACTIONS(12116), + [anon_sym_BSLASHpvolcite] = ACTIONS(12116), + [anon_sym_BSLASHPvolcite] = ACTIONS(12116), + [anon_sym_BSLASHfvolcite] = ACTIONS(12116), + [anon_sym_BSLASHftvolcite] = ACTIONS(12116), + [anon_sym_BSLASHsvolcite] = ACTIONS(12116), + [anon_sym_BSLASHSvolcite] = ACTIONS(12116), + [anon_sym_BSLASHtvolcite] = ACTIONS(12116), + [anon_sym_BSLASHTvolcite] = ACTIONS(12116), + [anon_sym_BSLASHavolcite] = ACTIONS(12116), + [anon_sym_BSLASHAvolcite] = ACTIONS(12116), + [anon_sym_BSLASHnotecite] = ACTIONS(12116), + [anon_sym_BSLASHpnotecite] = ACTIONS(12116), + [anon_sym_BSLASHPnotecite] = ACTIONS(12116), + [anon_sym_BSLASHfnotecite] = ACTIONS(12116), + [anon_sym_BSLASHusepackage] = ACTIONS(12116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12116), + [anon_sym_BSLASHinclude] = ACTIONS(12116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12116), + [anon_sym_BSLASHinput] = ACTIONS(12116), + [anon_sym_BSLASHsubfile] = ACTIONS(12116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12116), + [anon_sym_BSLASHbibliography] = ACTIONS(12116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12116), + [anon_sym_BSLASHincludesvg] = ACTIONS(12116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12116), + [anon_sym_BSLASHimport] = ACTIONS(12116), + [anon_sym_BSLASHsubimport] = ACTIONS(12116), + [anon_sym_BSLASHinputfrom] = ACTIONS(12116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12116), + [anon_sym_BSLASHincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHlabel] = ACTIONS(12116), + [anon_sym_BSLASHref] = ACTIONS(12116), + [anon_sym_BSLASHvref] = ACTIONS(12116), + [anon_sym_BSLASHVref] = ACTIONS(12116), + [anon_sym_BSLASHautoref] = ACTIONS(12116), + [anon_sym_BSLASHpageref] = ACTIONS(12116), + [anon_sym_BSLASHcref] = ACTIONS(12116), + [anon_sym_BSLASHCref] = ACTIONS(12116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnameCref] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHlabelcref] = ACTIONS(12116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12116), + [anon_sym_BSLASHeqref] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange] = ACTIONS(12116), + [anon_sym_BSLASHCrefrange] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewlabel] = ACTIONS(12116), + [anon_sym_BSLASHnewcommand] = ACTIONS(12116), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12116), + [anon_sym_BSLASHgls] = ACTIONS(12116), + [anon_sym_BSLASHGls] = ACTIONS(12116), + [anon_sym_BSLASHGLS] = ACTIONS(12116), + [anon_sym_BSLASHglspl] = ACTIONS(12116), + [anon_sym_BSLASHGlspl] = ACTIONS(12116), + [anon_sym_BSLASHGLSpl] = ACTIONS(12116), + [anon_sym_BSLASHglsdisp] = ACTIONS(12116), + [anon_sym_BSLASHglslink] = ACTIONS(12116), + [anon_sym_BSLASHglstext] = ACTIONS(12116), + [anon_sym_BSLASHGlstext] = ACTIONS(12116), + [anon_sym_BSLASHGLStext] = ACTIONS(12116), + [anon_sym_BSLASHglsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12116), + [anon_sym_BSLASHglsplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSplural] = ACTIONS(12116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHglsname] = ACTIONS(12116), + [anon_sym_BSLASHGlsname] = ACTIONS(12116), + [anon_sym_BSLASHGLSname] = ACTIONS(12116), + [anon_sym_BSLASHglssymbol] = ACTIONS(12116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12116), + [anon_sym_BSLASHglsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12116), + [anon_sym_BSLASHglsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12116), + [anon_sym_BSLASHglsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12116), + [anon_sym_BSLASHglsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12116), + [anon_sym_BSLASHglsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12116), + [anon_sym_BSLASHnewacronym] = ACTIONS(12116), + [anon_sym_BSLASHacrshort] = ACTIONS(12116), + [anon_sym_BSLASHAcrshort] = ACTIONS(12116), + [anon_sym_BSLASHACRshort] = ACTIONS(12116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12116), + [anon_sym_BSLASHacrlong] = ACTIONS(12116), + [anon_sym_BSLASHAcrlong] = ACTIONS(12116), + [anon_sym_BSLASHACRlong] = ACTIONS(12116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12116), + [anon_sym_BSLASHacrfull] = ACTIONS(12116), + [anon_sym_BSLASHAcrfull] = ACTIONS(12116), + [anon_sym_BSLASHACRfull] = ACTIONS(12116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12116), + [anon_sym_BSLASHacs] = ACTIONS(12116), + [anon_sym_BSLASHAcs] = ACTIONS(12116), + [anon_sym_BSLASHacsp] = ACTIONS(12116), + [anon_sym_BSLASHAcsp] = ACTIONS(12116), + [anon_sym_BSLASHacl] = ACTIONS(12116), + [anon_sym_BSLASHAcl] = ACTIONS(12116), + [anon_sym_BSLASHaclp] = ACTIONS(12116), + [anon_sym_BSLASHAclp] = ACTIONS(12116), + [anon_sym_BSLASHacf] = ACTIONS(12116), + [anon_sym_BSLASHAcf] = ACTIONS(12116), + [anon_sym_BSLASHacfp] = ACTIONS(12116), + [anon_sym_BSLASHAcfp] = ACTIONS(12116), + [anon_sym_BSLASHac] = ACTIONS(12116), + [anon_sym_BSLASHAc] = ACTIONS(12116), + [anon_sym_BSLASHacp] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12116), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12116), + [anon_sym_BSLASHcolor] = ACTIONS(12116), + [anon_sym_BSLASHcolorbox] = ACTIONS(12116), + [anon_sym_BSLASHtextcolor] = ACTIONS(12116), + [anon_sym_BSLASHpagecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12116), + }, + [1645] = { + [sym_generic_command_name] = ACTIONS(12193), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12193), + [anon_sym_BSLASHitem] = ACTIONS(12193), + [anon_sym_LBRACK] = ACTIONS(12191), + [anon_sym_RBRACK] = ACTIONS(12191), + [anon_sym_LBRACE] = ACTIONS(12191), + [anon_sym_RBRACE] = ACTIONS(12191), + [anon_sym_LPAREN] = ACTIONS(12191), + [anon_sym_COMMA] = ACTIONS(12191), + [anon_sym_EQ] = ACTIONS(12191), + [sym_word] = ACTIONS(12191), + [sym_param] = ACTIONS(12191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12191), + [anon_sym_DOLLAR] = ACTIONS(12193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12191), + [anon_sym_BSLASHbegin] = ACTIONS(12193), + [anon_sym_BSLASHcaption] = ACTIONS(12193), + [anon_sym_BSLASHcite] = ACTIONS(12193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCite] = ACTIONS(12193), + [anon_sym_BSLASHnocite] = ACTIONS(12193), + [anon_sym_BSLASHcitet] = ACTIONS(12193), + [anon_sym_BSLASHcitep] = ACTIONS(12193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteauthor] = ACTIONS(12193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitetitle] = ACTIONS(12193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteyear] = ACTIONS(12193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitedate] = ACTIONS(12193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteurl] = ACTIONS(12193), + [anon_sym_BSLASHfullcite] = ACTIONS(12193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12193), + [anon_sym_BSLASHcitealt] = ACTIONS(12193), + [anon_sym_BSLASHcitealp] = ACTIONS(12193), + [anon_sym_BSLASHcitetext] = ACTIONS(12193), + [anon_sym_BSLASHparencite] = ACTIONS(12193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHParencite] = ACTIONS(12193), + [anon_sym_BSLASHfootcite] = ACTIONS(12193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12193), + [anon_sym_BSLASHtextcite] = ACTIONS(12193), + [anon_sym_BSLASHTextcite] = ACTIONS(12193), + [anon_sym_BSLASHsmartcite] = ACTIONS(12193), + [anon_sym_BSLASHSmartcite] = ACTIONS(12193), + [anon_sym_BSLASHsupercite] = ACTIONS(12193), + [anon_sym_BSLASHautocite] = ACTIONS(12193), + [anon_sym_BSLASHAutocite] = ACTIONS(12193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHvolcite] = ACTIONS(12193), + [anon_sym_BSLASHVolcite] = ACTIONS(12193), + [anon_sym_BSLASHpvolcite] = ACTIONS(12193), + [anon_sym_BSLASHPvolcite] = ACTIONS(12193), + [anon_sym_BSLASHfvolcite] = ACTIONS(12193), + [anon_sym_BSLASHftvolcite] = ACTIONS(12193), + [anon_sym_BSLASHsvolcite] = ACTIONS(12193), + [anon_sym_BSLASHSvolcite] = ACTIONS(12193), + [anon_sym_BSLASHtvolcite] = ACTIONS(12193), + [anon_sym_BSLASHTvolcite] = ACTIONS(12193), + [anon_sym_BSLASHavolcite] = ACTIONS(12193), + [anon_sym_BSLASHAvolcite] = ACTIONS(12193), + [anon_sym_BSLASHnotecite] = ACTIONS(12193), + [anon_sym_BSLASHpnotecite] = ACTIONS(12193), + [anon_sym_BSLASHPnotecite] = ACTIONS(12193), + [anon_sym_BSLASHfnotecite] = ACTIONS(12193), + [anon_sym_BSLASHusepackage] = ACTIONS(12193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12193), + [anon_sym_BSLASHinclude] = ACTIONS(12193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12193), + [anon_sym_BSLASHinput] = ACTIONS(12193), + [anon_sym_BSLASHsubfile] = ACTIONS(12193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12193), + [anon_sym_BSLASHbibliography] = ACTIONS(12193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12193), + [anon_sym_BSLASHincludesvg] = ACTIONS(12193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12193), + [anon_sym_BSLASHimport] = ACTIONS(12193), + [anon_sym_BSLASHsubimport] = ACTIONS(12193), + [anon_sym_BSLASHinputfrom] = ACTIONS(12193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12193), + [anon_sym_BSLASHincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHlabel] = ACTIONS(12193), + [anon_sym_BSLASHref] = ACTIONS(12193), + [anon_sym_BSLASHvref] = ACTIONS(12193), + [anon_sym_BSLASHVref] = ACTIONS(12193), + [anon_sym_BSLASHautoref] = ACTIONS(12193), + [anon_sym_BSLASHpageref] = ACTIONS(12193), + [anon_sym_BSLASHcref] = ACTIONS(12193), + [anon_sym_BSLASHCref] = ACTIONS(12193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnameCref] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHlabelcref] = ACTIONS(12193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12193), + [anon_sym_BSLASHeqref] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange] = ACTIONS(12193), + [anon_sym_BSLASHCrefrange] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewlabel] = ACTIONS(12193), + [anon_sym_BSLASHnewcommand] = ACTIONS(12193), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12193), + [anon_sym_BSLASHgls] = ACTIONS(12193), + [anon_sym_BSLASHGls] = ACTIONS(12193), + [anon_sym_BSLASHGLS] = ACTIONS(12193), + [anon_sym_BSLASHglspl] = ACTIONS(12193), + [anon_sym_BSLASHGlspl] = ACTIONS(12193), + [anon_sym_BSLASHGLSpl] = ACTIONS(12193), + [anon_sym_BSLASHglsdisp] = ACTIONS(12193), + [anon_sym_BSLASHglslink] = ACTIONS(12193), + [anon_sym_BSLASHglstext] = ACTIONS(12193), + [anon_sym_BSLASHGlstext] = ACTIONS(12193), + [anon_sym_BSLASHGLStext] = ACTIONS(12193), + [anon_sym_BSLASHglsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12193), + [anon_sym_BSLASHglsplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSplural] = ACTIONS(12193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHglsname] = ACTIONS(12193), + [anon_sym_BSLASHGlsname] = ACTIONS(12193), + [anon_sym_BSLASHGLSname] = ACTIONS(12193), + [anon_sym_BSLASHglssymbol] = ACTIONS(12193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12193), + [anon_sym_BSLASHglsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12193), + [anon_sym_BSLASHglsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12193), + [anon_sym_BSLASHglsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12193), + [anon_sym_BSLASHglsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12193), + [anon_sym_BSLASHglsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12193), + [anon_sym_BSLASHnewacronym] = ACTIONS(12193), + [anon_sym_BSLASHacrshort] = ACTIONS(12193), + [anon_sym_BSLASHAcrshort] = ACTIONS(12193), + [anon_sym_BSLASHACRshort] = ACTIONS(12193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12193), + [anon_sym_BSLASHacrlong] = ACTIONS(12193), + [anon_sym_BSLASHAcrlong] = ACTIONS(12193), + [anon_sym_BSLASHACRlong] = ACTIONS(12193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12193), + [anon_sym_BSLASHacrfull] = ACTIONS(12193), + [anon_sym_BSLASHAcrfull] = ACTIONS(12193), + [anon_sym_BSLASHACRfull] = ACTIONS(12193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12193), + [anon_sym_BSLASHacs] = ACTIONS(12193), + [anon_sym_BSLASHAcs] = ACTIONS(12193), + [anon_sym_BSLASHacsp] = ACTIONS(12193), + [anon_sym_BSLASHAcsp] = ACTIONS(12193), + [anon_sym_BSLASHacl] = ACTIONS(12193), + [anon_sym_BSLASHAcl] = ACTIONS(12193), + [anon_sym_BSLASHaclp] = ACTIONS(12193), + [anon_sym_BSLASHAclp] = ACTIONS(12193), + [anon_sym_BSLASHacf] = ACTIONS(12193), + [anon_sym_BSLASHAcf] = ACTIONS(12193), + [anon_sym_BSLASHacfp] = ACTIONS(12193), + [anon_sym_BSLASHAcfp] = ACTIONS(12193), + [anon_sym_BSLASHac] = ACTIONS(12193), + [anon_sym_BSLASHAc] = ACTIONS(12193), + [anon_sym_BSLASHacp] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12193), + [anon_sym_BSLASHcolor] = ACTIONS(12193), + [anon_sym_BSLASHcolorbox] = ACTIONS(12193), + [anon_sym_BSLASHtextcolor] = ACTIONS(12193), + [anon_sym_BSLASHpagecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12193), + }, + [1646] = { + [sym_generic_command_name] = ACTIONS(12201), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12201), + [anon_sym_BSLASHitem] = ACTIONS(12201), + [anon_sym_LBRACK] = ACTIONS(12199), + [anon_sym_RBRACK] = ACTIONS(12199), + [anon_sym_LBRACE] = ACTIONS(12199), + [anon_sym_RBRACE] = ACTIONS(12199), + [anon_sym_LPAREN] = ACTIONS(12199), + [anon_sym_COMMA] = ACTIONS(12199), + [anon_sym_EQ] = ACTIONS(12199), + [sym_word] = ACTIONS(12199), + [sym_param] = ACTIONS(12199), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12199), + [anon_sym_DOLLAR] = ACTIONS(12201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12199), + [anon_sym_BSLASHbegin] = ACTIONS(12201), + [anon_sym_BSLASHcaption] = ACTIONS(12201), + [anon_sym_BSLASHcite] = ACTIONS(12201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCite] = ACTIONS(12201), + [anon_sym_BSLASHnocite] = ACTIONS(12201), + [anon_sym_BSLASHcitet] = ACTIONS(12201), + [anon_sym_BSLASHcitep] = ACTIONS(12201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteauthor] = ACTIONS(12201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitetitle] = ACTIONS(12201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteyear] = ACTIONS(12201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitedate] = ACTIONS(12201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteurl] = ACTIONS(12201), + [anon_sym_BSLASHfullcite] = ACTIONS(12201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12201), + [anon_sym_BSLASHcitealt] = ACTIONS(12201), + [anon_sym_BSLASHcitealp] = ACTIONS(12201), + [anon_sym_BSLASHcitetext] = ACTIONS(12201), + [anon_sym_BSLASHparencite] = ACTIONS(12201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHParencite] = ACTIONS(12201), + [anon_sym_BSLASHfootcite] = ACTIONS(12201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12201), + [anon_sym_BSLASHtextcite] = ACTIONS(12201), + [anon_sym_BSLASHTextcite] = ACTIONS(12201), + [anon_sym_BSLASHsmartcite] = ACTIONS(12201), + [anon_sym_BSLASHSmartcite] = ACTIONS(12201), + [anon_sym_BSLASHsupercite] = ACTIONS(12201), + [anon_sym_BSLASHautocite] = ACTIONS(12201), + [anon_sym_BSLASHAutocite] = ACTIONS(12201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHvolcite] = ACTIONS(12201), + [anon_sym_BSLASHVolcite] = ACTIONS(12201), + [anon_sym_BSLASHpvolcite] = ACTIONS(12201), + [anon_sym_BSLASHPvolcite] = ACTIONS(12201), + [anon_sym_BSLASHfvolcite] = ACTIONS(12201), + [anon_sym_BSLASHftvolcite] = ACTIONS(12201), + [anon_sym_BSLASHsvolcite] = ACTIONS(12201), + [anon_sym_BSLASHSvolcite] = ACTIONS(12201), + [anon_sym_BSLASHtvolcite] = ACTIONS(12201), + [anon_sym_BSLASHTvolcite] = ACTIONS(12201), + [anon_sym_BSLASHavolcite] = ACTIONS(12201), + [anon_sym_BSLASHAvolcite] = ACTIONS(12201), + [anon_sym_BSLASHnotecite] = ACTIONS(12201), + [anon_sym_BSLASHpnotecite] = ACTIONS(12201), + [anon_sym_BSLASHPnotecite] = ACTIONS(12201), + [anon_sym_BSLASHfnotecite] = ACTIONS(12201), + [anon_sym_BSLASHusepackage] = ACTIONS(12201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12201), + [anon_sym_BSLASHinclude] = ACTIONS(12201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12201), + [anon_sym_BSLASHinput] = ACTIONS(12201), + [anon_sym_BSLASHsubfile] = ACTIONS(12201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12201), + [anon_sym_BSLASHbibliography] = ACTIONS(12201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12201), + [anon_sym_BSLASHincludesvg] = ACTIONS(12201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12201), + [anon_sym_BSLASHimport] = ACTIONS(12201), + [anon_sym_BSLASHsubimport] = ACTIONS(12201), + [anon_sym_BSLASHinputfrom] = ACTIONS(12201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12201), + [anon_sym_BSLASHincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHlabel] = ACTIONS(12201), + [anon_sym_BSLASHref] = ACTIONS(12201), + [anon_sym_BSLASHvref] = ACTIONS(12201), + [anon_sym_BSLASHVref] = ACTIONS(12201), + [anon_sym_BSLASHautoref] = ACTIONS(12201), + [anon_sym_BSLASHpageref] = ACTIONS(12201), + [anon_sym_BSLASHcref] = ACTIONS(12201), + [anon_sym_BSLASHCref] = ACTIONS(12201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnameCref] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHlabelcref] = ACTIONS(12201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12201), + [anon_sym_BSLASHeqref] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange] = ACTIONS(12201), + [anon_sym_BSLASHCrefrange] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewlabel] = ACTIONS(12201), + [anon_sym_BSLASHnewcommand] = ACTIONS(12201), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12201), + [anon_sym_BSLASHgls] = ACTIONS(12201), + [anon_sym_BSLASHGls] = ACTIONS(12201), + [anon_sym_BSLASHGLS] = ACTIONS(12201), + [anon_sym_BSLASHglspl] = ACTIONS(12201), + [anon_sym_BSLASHGlspl] = ACTIONS(12201), + [anon_sym_BSLASHGLSpl] = ACTIONS(12201), + [anon_sym_BSLASHglsdisp] = ACTIONS(12201), + [anon_sym_BSLASHglslink] = ACTIONS(12201), + [anon_sym_BSLASHglstext] = ACTIONS(12201), + [anon_sym_BSLASHGlstext] = ACTIONS(12201), + [anon_sym_BSLASHGLStext] = ACTIONS(12201), + [anon_sym_BSLASHglsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12201), + [anon_sym_BSLASHglsplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSplural] = ACTIONS(12201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHglsname] = ACTIONS(12201), + [anon_sym_BSLASHGlsname] = ACTIONS(12201), + [anon_sym_BSLASHGLSname] = ACTIONS(12201), + [anon_sym_BSLASHglssymbol] = ACTIONS(12201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12201), + [anon_sym_BSLASHglsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12201), + [anon_sym_BSLASHglsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12201), + [anon_sym_BSLASHglsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12201), + [anon_sym_BSLASHglsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12201), + [anon_sym_BSLASHglsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12201), + [anon_sym_BSLASHnewacronym] = ACTIONS(12201), + [anon_sym_BSLASHacrshort] = ACTIONS(12201), + [anon_sym_BSLASHAcrshort] = ACTIONS(12201), + [anon_sym_BSLASHACRshort] = ACTIONS(12201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12201), + [anon_sym_BSLASHacrlong] = ACTIONS(12201), + [anon_sym_BSLASHAcrlong] = ACTIONS(12201), + [anon_sym_BSLASHACRlong] = ACTIONS(12201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12201), + [anon_sym_BSLASHacrfull] = ACTIONS(12201), + [anon_sym_BSLASHAcrfull] = ACTIONS(12201), + [anon_sym_BSLASHACRfull] = ACTIONS(12201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12201), + [anon_sym_BSLASHacs] = ACTIONS(12201), + [anon_sym_BSLASHAcs] = ACTIONS(12201), + [anon_sym_BSLASHacsp] = ACTIONS(12201), + [anon_sym_BSLASHAcsp] = ACTIONS(12201), + [anon_sym_BSLASHacl] = ACTIONS(12201), + [anon_sym_BSLASHAcl] = ACTIONS(12201), + [anon_sym_BSLASHaclp] = ACTIONS(12201), + [anon_sym_BSLASHAclp] = ACTIONS(12201), + [anon_sym_BSLASHacf] = ACTIONS(12201), + [anon_sym_BSLASHAcf] = ACTIONS(12201), + [anon_sym_BSLASHacfp] = ACTIONS(12201), + [anon_sym_BSLASHAcfp] = ACTIONS(12201), + [anon_sym_BSLASHac] = ACTIONS(12201), + [anon_sym_BSLASHAc] = ACTIONS(12201), + [anon_sym_BSLASHacp] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12201), + [anon_sym_BSLASHcolor] = ACTIONS(12201), + [anon_sym_BSLASHcolorbox] = ACTIONS(12201), + [anon_sym_BSLASHtextcolor] = ACTIONS(12201), + [anon_sym_BSLASHpagecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12201), + }, + [1647] = { + [sym_generic_command_name] = ACTIONS(12205), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12205), + [anon_sym_BSLASHitem] = ACTIONS(12205), + [anon_sym_LBRACK] = ACTIONS(12203), + [anon_sym_RBRACK] = ACTIONS(12203), + [anon_sym_LBRACE] = ACTIONS(12203), + [anon_sym_RBRACE] = ACTIONS(12203), + [anon_sym_LPAREN] = ACTIONS(12203), + [anon_sym_COMMA] = ACTIONS(12203), + [anon_sym_EQ] = ACTIONS(12203), + [sym_word] = ACTIONS(12203), + [sym_param] = ACTIONS(12203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12203), + [anon_sym_DOLLAR] = ACTIONS(12205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12203), + [anon_sym_BSLASHbegin] = ACTIONS(12205), + [anon_sym_BSLASHcaption] = ACTIONS(12205), + [anon_sym_BSLASHcite] = ACTIONS(12205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCite] = ACTIONS(12205), + [anon_sym_BSLASHnocite] = ACTIONS(12205), + [anon_sym_BSLASHcitet] = ACTIONS(12205), + [anon_sym_BSLASHcitep] = ACTIONS(12205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteauthor] = ACTIONS(12205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitetitle] = ACTIONS(12205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteyear] = ACTIONS(12205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitedate] = ACTIONS(12205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteurl] = ACTIONS(12205), + [anon_sym_BSLASHfullcite] = ACTIONS(12205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12205), + [anon_sym_BSLASHcitealt] = ACTIONS(12205), + [anon_sym_BSLASHcitealp] = ACTIONS(12205), + [anon_sym_BSLASHcitetext] = ACTIONS(12205), + [anon_sym_BSLASHparencite] = ACTIONS(12205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHParencite] = ACTIONS(12205), + [anon_sym_BSLASHfootcite] = ACTIONS(12205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12205), + [anon_sym_BSLASHtextcite] = ACTIONS(12205), + [anon_sym_BSLASHTextcite] = ACTIONS(12205), + [anon_sym_BSLASHsmartcite] = ACTIONS(12205), + [anon_sym_BSLASHSmartcite] = ACTIONS(12205), + [anon_sym_BSLASHsupercite] = ACTIONS(12205), + [anon_sym_BSLASHautocite] = ACTIONS(12205), + [anon_sym_BSLASHAutocite] = ACTIONS(12205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHvolcite] = ACTIONS(12205), + [anon_sym_BSLASHVolcite] = ACTIONS(12205), + [anon_sym_BSLASHpvolcite] = ACTIONS(12205), + [anon_sym_BSLASHPvolcite] = ACTIONS(12205), + [anon_sym_BSLASHfvolcite] = ACTIONS(12205), + [anon_sym_BSLASHftvolcite] = ACTIONS(12205), + [anon_sym_BSLASHsvolcite] = ACTIONS(12205), + [anon_sym_BSLASHSvolcite] = ACTIONS(12205), + [anon_sym_BSLASHtvolcite] = ACTIONS(12205), + [anon_sym_BSLASHTvolcite] = ACTIONS(12205), + [anon_sym_BSLASHavolcite] = ACTIONS(12205), + [anon_sym_BSLASHAvolcite] = ACTIONS(12205), + [anon_sym_BSLASHnotecite] = ACTIONS(12205), + [anon_sym_BSLASHpnotecite] = ACTIONS(12205), + [anon_sym_BSLASHPnotecite] = ACTIONS(12205), + [anon_sym_BSLASHfnotecite] = ACTIONS(12205), + [anon_sym_BSLASHusepackage] = ACTIONS(12205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12205), + [anon_sym_BSLASHinclude] = ACTIONS(12205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12205), + [anon_sym_BSLASHinput] = ACTIONS(12205), + [anon_sym_BSLASHsubfile] = ACTIONS(12205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12205), + [anon_sym_BSLASHbibliography] = ACTIONS(12205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12205), + [anon_sym_BSLASHincludesvg] = ACTIONS(12205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12205), + [anon_sym_BSLASHimport] = ACTIONS(12205), + [anon_sym_BSLASHsubimport] = ACTIONS(12205), + [anon_sym_BSLASHinputfrom] = ACTIONS(12205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12205), + [anon_sym_BSLASHincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHlabel] = ACTIONS(12205), + [anon_sym_BSLASHref] = ACTIONS(12205), + [anon_sym_BSLASHvref] = ACTIONS(12205), + [anon_sym_BSLASHVref] = ACTIONS(12205), + [anon_sym_BSLASHautoref] = ACTIONS(12205), + [anon_sym_BSLASHpageref] = ACTIONS(12205), + [anon_sym_BSLASHcref] = ACTIONS(12205), + [anon_sym_BSLASHCref] = ACTIONS(12205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnameCref] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHlabelcref] = ACTIONS(12205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12205), + [anon_sym_BSLASHeqref] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange] = ACTIONS(12205), + [anon_sym_BSLASHCrefrange] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewlabel] = ACTIONS(12205), + [anon_sym_BSLASHnewcommand] = ACTIONS(12205), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12205), + [anon_sym_BSLASHgls] = ACTIONS(12205), + [anon_sym_BSLASHGls] = ACTIONS(12205), + [anon_sym_BSLASHGLS] = ACTIONS(12205), + [anon_sym_BSLASHglspl] = ACTIONS(12205), + [anon_sym_BSLASHGlspl] = ACTIONS(12205), + [anon_sym_BSLASHGLSpl] = ACTIONS(12205), + [anon_sym_BSLASHglsdisp] = ACTIONS(12205), + [anon_sym_BSLASHglslink] = ACTIONS(12205), + [anon_sym_BSLASHglstext] = ACTIONS(12205), + [anon_sym_BSLASHGlstext] = ACTIONS(12205), + [anon_sym_BSLASHGLStext] = ACTIONS(12205), + [anon_sym_BSLASHglsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12205), + [anon_sym_BSLASHglsplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSplural] = ACTIONS(12205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHglsname] = ACTIONS(12205), + [anon_sym_BSLASHGlsname] = ACTIONS(12205), + [anon_sym_BSLASHGLSname] = ACTIONS(12205), + [anon_sym_BSLASHglssymbol] = ACTIONS(12205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12205), + [anon_sym_BSLASHglsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12205), + [anon_sym_BSLASHglsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12205), + [anon_sym_BSLASHglsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12205), + [anon_sym_BSLASHglsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12205), + [anon_sym_BSLASHglsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12205), + [anon_sym_BSLASHnewacronym] = ACTIONS(12205), + [anon_sym_BSLASHacrshort] = ACTIONS(12205), + [anon_sym_BSLASHAcrshort] = ACTIONS(12205), + [anon_sym_BSLASHACRshort] = ACTIONS(12205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12205), + [anon_sym_BSLASHacrlong] = ACTIONS(12205), + [anon_sym_BSLASHAcrlong] = ACTIONS(12205), + [anon_sym_BSLASHACRlong] = ACTIONS(12205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12205), + [anon_sym_BSLASHacrfull] = ACTIONS(12205), + [anon_sym_BSLASHAcrfull] = ACTIONS(12205), + [anon_sym_BSLASHACRfull] = ACTIONS(12205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12205), + [anon_sym_BSLASHacs] = ACTIONS(12205), + [anon_sym_BSLASHAcs] = ACTIONS(12205), + [anon_sym_BSLASHacsp] = ACTIONS(12205), + [anon_sym_BSLASHAcsp] = ACTIONS(12205), + [anon_sym_BSLASHacl] = ACTIONS(12205), + [anon_sym_BSLASHAcl] = ACTIONS(12205), + [anon_sym_BSLASHaclp] = ACTIONS(12205), + [anon_sym_BSLASHAclp] = ACTIONS(12205), + [anon_sym_BSLASHacf] = ACTIONS(12205), + [anon_sym_BSLASHAcf] = ACTIONS(12205), + [anon_sym_BSLASHacfp] = ACTIONS(12205), + [anon_sym_BSLASHAcfp] = ACTIONS(12205), + [anon_sym_BSLASHac] = ACTIONS(12205), + [anon_sym_BSLASHAc] = ACTIONS(12205), + [anon_sym_BSLASHacp] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12205), + [anon_sym_BSLASHcolor] = ACTIONS(12205), + [anon_sym_BSLASHcolorbox] = ACTIONS(12205), + [anon_sym_BSLASHtextcolor] = ACTIONS(12205), + [anon_sym_BSLASHpagecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12205), + }, + [1648] = { + [sym_generic_command_name] = ACTIONS(12217), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12217), + [anon_sym_BSLASHitem] = ACTIONS(12217), + [anon_sym_LBRACK] = ACTIONS(12215), + [anon_sym_RBRACK] = ACTIONS(12215), + [anon_sym_LBRACE] = ACTIONS(12215), + [anon_sym_RBRACE] = ACTIONS(12215), + [anon_sym_LPAREN] = ACTIONS(12215), + [anon_sym_COMMA] = ACTIONS(12215), + [anon_sym_EQ] = ACTIONS(12215), + [sym_word] = ACTIONS(12215), + [sym_param] = ACTIONS(12215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12215), + [anon_sym_DOLLAR] = ACTIONS(12217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12215), + [anon_sym_BSLASHbegin] = ACTIONS(12217), + [anon_sym_BSLASHcaption] = ACTIONS(12217), + [anon_sym_BSLASHcite] = ACTIONS(12217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCite] = ACTIONS(12217), + [anon_sym_BSLASHnocite] = ACTIONS(12217), + [anon_sym_BSLASHcitet] = ACTIONS(12217), + [anon_sym_BSLASHcitep] = ACTIONS(12217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteauthor] = ACTIONS(12217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitetitle] = ACTIONS(12217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteyear] = ACTIONS(12217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitedate] = ACTIONS(12217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteurl] = ACTIONS(12217), + [anon_sym_BSLASHfullcite] = ACTIONS(12217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12217), + [anon_sym_BSLASHcitealt] = ACTIONS(12217), + [anon_sym_BSLASHcitealp] = ACTIONS(12217), + [anon_sym_BSLASHcitetext] = ACTIONS(12217), + [anon_sym_BSLASHparencite] = ACTIONS(12217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHParencite] = ACTIONS(12217), + [anon_sym_BSLASHfootcite] = ACTIONS(12217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12217), + [anon_sym_BSLASHtextcite] = ACTIONS(12217), + [anon_sym_BSLASHTextcite] = ACTIONS(12217), + [anon_sym_BSLASHsmartcite] = ACTIONS(12217), + [anon_sym_BSLASHSmartcite] = ACTIONS(12217), + [anon_sym_BSLASHsupercite] = ACTIONS(12217), + [anon_sym_BSLASHautocite] = ACTIONS(12217), + [anon_sym_BSLASHAutocite] = ACTIONS(12217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHvolcite] = ACTIONS(12217), + [anon_sym_BSLASHVolcite] = ACTIONS(12217), + [anon_sym_BSLASHpvolcite] = ACTIONS(12217), + [anon_sym_BSLASHPvolcite] = ACTIONS(12217), + [anon_sym_BSLASHfvolcite] = ACTIONS(12217), + [anon_sym_BSLASHftvolcite] = ACTIONS(12217), + [anon_sym_BSLASHsvolcite] = ACTIONS(12217), + [anon_sym_BSLASHSvolcite] = ACTIONS(12217), + [anon_sym_BSLASHtvolcite] = ACTIONS(12217), + [anon_sym_BSLASHTvolcite] = ACTIONS(12217), + [anon_sym_BSLASHavolcite] = ACTIONS(12217), + [anon_sym_BSLASHAvolcite] = ACTIONS(12217), + [anon_sym_BSLASHnotecite] = ACTIONS(12217), + [anon_sym_BSLASHpnotecite] = ACTIONS(12217), + [anon_sym_BSLASHPnotecite] = ACTIONS(12217), + [anon_sym_BSLASHfnotecite] = ACTIONS(12217), + [anon_sym_BSLASHusepackage] = ACTIONS(12217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12217), + [anon_sym_BSLASHinclude] = ACTIONS(12217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12217), + [anon_sym_BSLASHinput] = ACTIONS(12217), + [anon_sym_BSLASHsubfile] = ACTIONS(12217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12217), + [anon_sym_BSLASHbibliography] = ACTIONS(12217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12217), + [anon_sym_BSLASHincludesvg] = ACTIONS(12217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12217), + [anon_sym_BSLASHimport] = ACTIONS(12217), + [anon_sym_BSLASHsubimport] = ACTIONS(12217), + [anon_sym_BSLASHinputfrom] = ACTIONS(12217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12217), + [anon_sym_BSLASHincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHlabel] = ACTIONS(12217), + [anon_sym_BSLASHref] = ACTIONS(12217), + [anon_sym_BSLASHvref] = ACTIONS(12217), + [anon_sym_BSLASHVref] = ACTIONS(12217), + [anon_sym_BSLASHautoref] = ACTIONS(12217), + [anon_sym_BSLASHpageref] = ACTIONS(12217), + [anon_sym_BSLASHcref] = ACTIONS(12217), + [anon_sym_BSLASHCref] = ACTIONS(12217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnameCref] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHlabelcref] = ACTIONS(12217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12217), + [anon_sym_BSLASHeqref] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange] = ACTIONS(12217), + [anon_sym_BSLASHCrefrange] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewlabel] = ACTIONS(12217), + [anon_sym_BSLASHnewcommand] = ACTIONS(12217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12217), + [anon_sym_BSLASHgls] = ACTIONS(12217), + [anon_sym_BSLASHGls] = ACTIONS(12217), + [anon_sym_BSLASHGLS] = ACTIONS(12217), + [anon_sym_BSLASHglspl] = ACTIONS(12217), + [anon_sym_BSLASHGlspl] = ACTIONS(12217), + [anon_sym_BSLASHGLSpl] = ACTIONS(12217), + [anon_sym_BSLASHglsdisp] = ACTIONS(12217), + [anon_sym_BSLASHglslink] = ACTIONS(12217), + [anon_sym_BSLASHglstext] = ACTIONS(12217), + [anon_sym_BSLASHGlstext] = ACTIONS(12217), + [anon_sym_BSLASHGLStext] = ACTIONS(12217), + [anon_sym_BSLASHglsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12217), + [anon_sym_BSLASHglsplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSplural] = ACTIONS(12217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHglsname] = ACTIONS(12217), + [anon_sym_BSLASHGlsname] = ACTIONS(12217), + [anon_sym_BSLASHGLSname] = ACTIONS(12217), + [anon_sym_BSLASHglssymbol] = ACTIONS(12217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12217), + [anon_sym_BSLASHglsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12217), + [anon_sym_BSLASHglsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12217), + [anon_sym_BSLASHglsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12217), + [anon_sym_BSLASHglsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12217), + [anon_sym_BSLASHglsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12217), + [anon_sym_BSLASHnewacronym] = ACTIONS(12217), + [anon_sym_BSLASHacrshort] = ACTIONS(12217), + [anon_sym_BSLASHAcrshort] = ACTIONS(12217), + [anon_sym_BSLASHACRshort] = ACTIONS(12217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12217), + [anon_sym_BSLASHacrlong] = ACTIONS(12217), + [anon_sym_BSLASHAcrlong] = ACTIONS(12217), + [anon_sym_BSLASHACRlong] = ACTIONS(12217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12217), + [anon_sym_BSLASHacrfull] = ACTIONS(12217), + [anon_sym_BSLASHAcrfull] = ACTIONS(12217), + [anon_sym_BSLASHACRfull] = ACTIONS(12217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12217), + [anon_sym_BSLASHacs] = ACTIONS(12217), + [anon_sym_BSLASHAcs] = ACTIONS(12217), + [anon_sym_BSLASHacsp] = ACTIONS(12217), + [anon_sym_BSLASHAcsp] = ACTIONS(12217), + [anon_sym_BSLASHacl] = ACTIONS(12217), + [anon_sym_BSLASHAcl] = ACTIONS(12217), + [anon_sym_BSLASHaclp] = ACTIONS(12217), + [anon_sym_BSLASHAclp] = ACTIONS(12217), + [anon_sym_BSLASHacf] = ACTIONS(12217), + [anon_sym_BSLASHAcf] = ACTIONS(12217), + [anon_sym_BSLASHacfp] = ACTIONS(12217), + [anon_sym_BSLASHAcfp] = ACTIONS(12217), + [anon_sym_BSLASHac] = ACTIONS(12217), + [anon_sym_BSLASHAc] = ACTIONS(12217), + [anon_sym_BSLASHacp] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12217), + [anon_sym_BSLASHcolor] = ACTIONS(12217), + [anon_sym_BSLASHcolorbox] = ACTIONS(12217), + [anon_sym_BSLASHtextcolor] = ACTIONS(12217), + [anon_sym_BSLASHpagecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12217), + }, + [1649] = { + [sym_generic_command_name] = ACTIONS(12221), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12221), + [anon_sym_BSLASHitem] = ACTIONS(12221), + [anon_sym_LBRACK] = ACTIONS(12219), + [anon_sym_RBRACK] = ACTIONS(12219), + [anon_sym_LBRACE] = ACTIONS(12783), + [anon_sym_RBRACE] = ACTIONS(12219), + [anon_sym_LPAREN] = ACTIONS(12219), + [anon_sym_COMMA] = ACTIONS(12219), + [anon_sym_EQ] = ACTIONS(12219), + [sym_word] = ACTIONS(12219), + [sym_param] = ACTIONS(12219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12219), + [anon_sym_DOLLAR] = ACTIONS(12221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12219), + [anon_sym_BSLASHbegin] = ACTIONS(12221), + [anon_sym_BSLASHcaption] = ACTIONS(12221), + [anon_sym_BSLASHcite] = ACTIONS(12221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCite] = ACTIONS(12221), + [anon_sym_BSLASHnocite] = ACTIONS(12221), + [anon_sym_BSLASHcitet] = ACTIONS(12221), + [anon_sym_BSLASHcitep] = ACTIONS(12221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteauthor] = ACTIONS(12221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitetitle] = ACTIONS(12221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteyear] = ACTIONS(12221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitedate] = ACTIONS(12221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteurl] = ACTIONS(12221), + [anon_sym_BSLASHfullcite] = ACTIONS(12221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12221), + [anon_sym_BSLASHcitealt] = ACTIONS(12221), + [anon_sym_BSLASHcitealp] = ACTIONS(12221), + [anon_sym_BSLASHcitetext] = ACTIONS(12221), + [anon_sym_BSLASHparencite] = ACTIONS(12221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHParencite] = ACTIONS(12221), + [anon_sym_BSLASHfootcite] = ACTIONS(12221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12221), + [anon_sym_BSLASHtextcite] = ACTIONS(12221), + [anon_sym_BSLASHTextcite] = ACTIONS(12221), + [anon_sym_BSLASHsmartcite] = ACTIONS(12221), + [anon_sym_BSLASHSmartcite] = ACTIONS(12221), + [anon_sym_BSLASHsupercite] = ACTIONS(12221), + [anon_sym_BSLASHautocite] = ACTIONS(12221), + [anon_sym_BSLASHAutocite] = ACTIONS(12221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHvolcite] = ACTIONS(12221), + [anon_sym_BSLASHVolcite] = ACTIONS(12221), + [anon_sym_BSLASHpvolcite] = ACTIONS(12221), + [anon_sym_BSLASHPvolcite] = ACTIONS(12221), + [anon_sym_BSLASHfvolcite] = ACTIONS(12221), + [anon_sym_BSLASHftvolcite] = ACTIONS(12221), + [anon_sym_BSLASHsvolcite] = ACTIONS(12221), + [anon_sym_BSLASHSvolcite] = ACTIONS(12221), + [anon_sym_BSLASHtvolcite] = ACTIONS(12221), + [anon_sym_BSLASHTvolcite] = ACTIONS(12221), + [anon_sym_BSLASHavolcite] = ACTIONS(12221), + [anon_sym_BSLASHAvolcite] = ACTIONS(12221), + [anon_sym_BSLASHnotecite] = ACTIONS(12221), + [anon_sym_BSLASHpnotecite] = ACTIONS(12221), + [anon_sym_BSLASHPnotecite] = ACTIONS(12221), + [anon_sym_BSLASHfnotecite] = ACTIONS(12221), + [anon_sym_BSLASHusepackage] = ACTIONS(12221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12221), + [anon_sym_BSLASHinclude] = ACTIONS(12221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12221), + [anon_sym_BSLASHinput] = ACTIONS(12221), + [anon_sym_BSLASHsubfile] = ACTIONS(12221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12221), + [anon_sym_BSLASHbibliography] = ACTIONS(12221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12221), + [anon_sym_BSLASHincludesvg] = ACTIONS(12221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12221), + [anon_sym_BSLASHimport] = ACTIONS(12221), + [anon_sym_BSLASHsubimport] = ACTIONS(12221), + [anon_sym_BSLASHinputfrom] = ACTIONS(12221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12221), + [anon_sym_BSLASHincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHlabel] = ACTIONS(12221), + [anon_sym_BSLASHref] = ACTIONS(12221), + [anon_sym_BSLASHvref] = ACTIONS(12221), + [anon_sym_BSLASHVref] = ACTIONS(12221), + [anon_sym_BSLASHautoref] = ACTIONS(12221), + [anon_sym_BSLASHpageref] = ACTIONS(12221), + [anon_sym_BSLASHcref] = ACTIONS(12221), + [anon_sym_BSLASHCref] = ACTIONS(12221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnameCref] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHlabelcref] = ACTIONS(12221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12221), + [anon_sym_BSLASHeqref] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange] = ACTIONS(12221), + [anon_sym_BSLASHCrefrange] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewlabel] = ACTIONS(12221), + [anon_sym_BSLASHnewcommand] = ACTIONS(12221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12221), + [anon_sym_BSLASHgls] = ACTIONS(12221), + [anon_sym_BSLASHGls] = ACTIONS(12221), + [anon_sym_BSLASHGLS] = ACTIONS(12221), + [anon_sym_BSLASHglspl] = ACTIONS(12221), + [anon_sym_BSLASHGlspl] = ACTIONS(12221), + [anon_sym_BSLASHGLSpl] = ACTIONS(12221), + [anon_sym_BSLASHglsdisp] = ACTIONS(12221), + [anon_sym_BSLASHglslink] = ACTIONS(12221), + [anon_sym_BSLASHglstext] = ACTIONS(12221), + [anon_sym_BSLASHGlstext] = ACTIONS(12221), + [anon_sym_BSLASHGLStext] = ACTIONS(12221), + [anon_sym_BSLASHglsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12221), + [anon_sym_BSLASHglsplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSplural] = ACTIONS(12221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHglsname] = ACTIONS(12221), + [anon_sym_BSLASHGlsname] = ACTIONS(12221), + [anon_sym_BSLASHGLSname] = ACTIONS(12221), + [anon_sym_BSLASHglssymbol] = ACTIONS(12221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12221), + [anon_sym_BSLASHglsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12221), + [anon_sym_BSLASHglsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12221), + [anon_sym_BSLASHglsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12221), + [anon_sym_BSLASHglsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12221), + [anon_sym_BSLASHglsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12221), + [anon_sym_BSLASHnewacronym] = ACTIONS(12221), + [anon_sym_BSLASHacrshort] = ACTIONS(12221), + [anon_sym_BSLASHAcrshort] = ACTIONS(12221), + [anon_sym_BSLASHACRshort] = ACTIONS(12221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12221), + [anon_sym_BSLASHacrlong] = ACTIONS(12221), + [anon_sym_BSLASHAcrlong] = ACTIONS(12221), + [anon_sym_BSLASHACRlong] = ACTIONS(12221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12221), + [anon_sym_BSLASHacrfull] = ACTIONS(12221), + [anon_sym_BSLASHAcrfull] = ACTIONS(12221), + [anon_sym_BSLASHACRfull] = ACTIONS(12221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12221), + [anon_sym_BSLASHacs] = ACTIONS(12221), + [anon_sym_BSLASHAcs] = ACTIONS(12221), + [anon_sym_BSLASHacsp] = ACTIONS(12221), + [anon_sym_BSLASHAcsp] = ACTIONS(12221), + [anon_sym_BSLASHacl] = ACTIONS(12221), + [anon_sym_BSLASHAcl] = ACTIONS(12221), + [anon_sym_BSLASHaclp] = ACTIONS(12221), + [anon_sym_BSLASHAclp] = ACTIONS(12221), + [anon_sym_BSLASHacf] = ACTIONS(12221), + [anon_sym_BSLASHAcf] = ACTIONS(12221), + [anon_sym_BSLASHacfp] = ACTIONS(12221), + [anon_sym_BSLASHAcfp] = ACTIONS(12221), + [anon_sym_BSLASHac] = ACTIONS(12221), + [anon_sym_BSLASHAc] = ACTIONS(12221), + [anon_sym_BSLASHacp] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12221), + [anon_sym_BSLASHcolor] = ACTIONS(12221), + [anon_sym_BSLASHcolorbox] = ACTIONS(12221), + [anon_sym_BSLASHtextcolor] = ACTIONS(12221), + [anon_sym_BSLASHpagecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12221), + }, + [1650] = { + [sym_generic_command_name] = ACTIONS(12132), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12132), + [anon_sym_BSLASHitem] = ACTIONS(12132), + [anon_sym_LBRACK] = ACTIONS(12130), + [anon_sym_RBRACK] = ACTIONS(12130), + [anon_sym_LBRACE] = ACTIONS(12130), + [anon_sym_RBRACE] = ACTIONS(12130), + [anon_sym_LPAREN] = ACTIONS(12130), + [anon_sym_COMMA] = ACTIONS(12130), + [anon_sym_EQ] = ACTIONS(12130), + [sym_word] = ACTIONS(12130), + [sym_param] = ACTIONS(12130), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12130), + [anon_sym_DOLLAR] = ACTIONS(12132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12130), + [anon_sym_BSLASHbegin] = ACTIONS(12132), + [anon_sym_BSLASHcaption] = ACTIONS(12132), + [anon_sym_BSLASHcite] = ACTIONS(12132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCite] = ACTIONS(12132), + [anon_sym_BSLASHnocite] = ACTIONS(12132), + [anon_sym_BSLASHcitet] = ACTIONS(12132), + [anon_sym_BSLASHcitep] = ACTIONS(12132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteauthor] = ACTIONS(12132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitetitle] = ACTIONS(12132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteyear] = ACTIONS(12132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitedate] = ACTIONS(12132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteurl] = ACTIONS(12132), + [anon_sym_BSLASHfullcite] = ACTIONS(12132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12132), + [anon_sym_BSLASHcitealt] = ACTIONS(12132), + [anon_sym_BSLASHcitealp] = ACTIONS(12132), + [anon_sym_BSLASHcitetext] = ACTIONS(12132), + [anon_sym_BSLASHparencite] = ACTIONS(12132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHParencite] = ACTIONS(12132), + [anon_sym_BSLASHfootcite] = ACTIONS(12132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12132), + [anon_sym_BSLASHtextcite] = ACTIONS(12132), + [anon_sym_BSLASHTextcite] = ACTIONS(12132), + [anon_sym_BSLASHsmartcite] = ACTIONS(12132), + [anon_sym_BSLASHSmartcite] = ACTIONS(12132), + [anon_sym_BSLASHsupercite] = ACTIONS(12132), + [anon_sym_BSLASHautocite] = ACTIONS(12132), + [anon_sym_BSLASHAutocite] = ACTIONS(12132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHvolcite] = ACTIONS(12132), + [anon_sym_BSLASHVolcite] = ACTIONS(12132), + [anon_sym_BSLASHpvolcite] = ACTIONS(12132), + [anon_sym_BSLASHPvolcite] = ACTIONS(12132), + [anon_sym_BSLASHfvolcite] = ACTIONS(12132), + [anon_sym_BSLASHftvolcite] = ACTIONS(12132), + [anon_sym_BSLASHsvolcite] = ACTIONS(12132), + [anon_sym_BSLASHSvolcite] = ACTIONS(12132), + [anon_sym_BSLASHtvolcite] = ACTIONS(12132), + [anon_sym_BSLASHTvolcite] = ACTIONS(12132), + [anon_sym_BSLASHavolcite] = ACTIONS(12132), + [anon_sym_BSLASHAvolcite] = ACTIONS(12132), + [anon_sym_BSLASHnotecite] = ACTIONS(12132), + [anon_sym_BSLASHpnotecite] = ACTIONS(12132), + [anon_sym_BSLASHPnotecite] = ACTIONS(12132), + [anon_sym_BSLASHfnotecite] = ACTIONS(12132), + [anon_sym_BSLASHusepackage] = ACTIONS(12132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12132), + [anon_sym_BSLASHinclude] = ACTIONS(12132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12132), + [anon_sym_BSLASHinput] = ACTIONS(12132), + [anon_sym_BSLASHsubfile] = ACTIONS(12132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12132), + [anon_sym_BSLASHbibliography] = ACTIONS(12132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12132), + [anon_sym_BSLASHincludesvg] = ACTIONS(12132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12132), + [anon_sym_BSLASHimport] = ACTIONS(12132), + [anon_sym_BSLASHsubimport] = ACTIONS(12132), + [anon_sym_BSLASHinputfrom] = ACTIONS(12132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12132), + [anon_sym_BSLASHincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHlabel] = ACTIONS(12132), + [anon_sym_BSLASHref] = ACTIONS(12132), + [anon_sym_BSLASHvref] = ACTIONS(12132), + [anon_sym_BSLASHVref] = ACTIONS(12132), + [anon_sym_BSLASHautoref] = ACTIONS(12132), + [anon_sym_BSLASHpageref] = ACTIONS(12132), + [anon_sym_BSLASHcref] = ACTIONS(12132), + [anon_sym_BSLASHCref] = ACTIONS(12132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnameCref] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHlabelcref] = ACTIONS(12132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12132), + [anon_sym_BSLASHeqref] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange] = ACTIONS(12132), + [anon_sym_BSLASHCrefrange] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewlabel] = ACTIONS(12132), + [anon_sym_BSLASHnewcommand] = ACTIONS(12132), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12132), + [anon_sym_BSLASHgls] = ACTIONS(12132), + [anon_sym_BSLASHGls] = ACTIONS(12132), + [anon_sym_BSLASHGLS] = ACTIONS(12132), + [anon_sym_BSLASHglspl] = ACTIONS(12132), + [anon_sym_BSLASHGlspl] = ACTIONS(12132), + [anon_sym_BSLASHGLSpl] = ACTIONS(12132), + [anon_sym_BSLASHglsdisp] = ACTIONS(12132), + [anon_sym_BSLASHglslink] = ACTIONS(12132), + [anon_sym_BSLASHglstext] = ACTIONS(12132), + [anon_sym_BSLASHGlstext] = ACTIONS(12132), + [anon_sym_BSLASHGLStext] = ACTIONS(12132), + [anon_sym_BSLASHglsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12132), + [anon_sym_BSLASHglsplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSplural] = ACTIONS(12132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHglsname] = ACTIONS(12132), + [anon_sym_BSLASHGlsname] = ACTIONS(12132), + [anon_sym_BSLASHGLSname] = ACTIONS(12132), + [anon_sym_BSLASHglssymbol] = ACTIONS(12132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12132), + [anon_sym_BSLASHglsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12132), + [anon_sym_BSLASHglsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12132), + [anon_sym_BSLASHglsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12132), + [anon_sym_BSLASHglsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12132), + [anon_sym_BSLASHglsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12132), + [anon_sym_BSLASHnewacronym] = ACTIONS(12132), + [anon_sym_BSLASHacrshort] = ACTIONS(12132), + [anon_sym_BSLASHAcrshort] = ACTIONS(12132), + [anon_sym_BSLASHACRshort] = ACTIONS(12132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12132), + [anon_sym_BSLASHacrlong] = ACTIONS(12132), + [anon_sym_BSLASHAcrlong] = ACTIONS(12132), + [anon_sym_BSLASHACRlong] = ACTIONS(12132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12132), + [anon_sym_BSLASHacrfull] = ACTIONS(12132), + [anon_sym_BSLASHAcrfull] = ACTIONS(12132), + [anon_sym_BSLASHACRfull] = ACTIONS(12132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12132), + [anon_sym_BSLASHacs] = ACTIONS(12132), + [anon_sym_BSLASHAcs] = ACTIONS(12132), + [anon_sym_BSLASHacsp] = ACTIONS(12132), + [anon_sym_BSLASHAcsp] = ACTIONS(12132), + [anon_sym_BSLASHacl] = ACTIONS(12132), + [anon_sym_BSLASHAcl] = ACTIONS(12132), + [anon_sym_BSLASHaclp] = ACTIONS(12132), + [anon_sym_BSLASHAclp] = ACTIONS(12132), + [anon_sym_BSLASHacf] = ACTIONS(12132), + [anon_sym_BSLASHAcf] = ACTIONS(12132), + [anon_sym_BSLASHacfp] = ACTIONS(12132), + [anon_sym_BSLASHAcfp] = ACTIONS(12132), + [anon_sym_BSLASHac] = ACTIONS(12132), + [anon_sym_BSLASHAc] = ACTIONS(12132), + [anon_sym_BSLASHacp] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12132), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12132), + [anon_sym_BSLASHcolor] = ACTIONS(12132), + [anon_sym_BSLASHcolorbox] = ACTIONS(12132), + [anon_sym_BSLASHtextcolor] = ACTIONS(12132), + [anon_sym_BSLASHpagecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12132), + }, + [1651] = { + [sym_generic_command_name] = ACTIONS(12108), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12108), + [anon_sym_BSLASHitem] = ACTIONS(12108), + [anon_sym_LBRACK] = ACTIONS(12106), + [anon_sym_RBRACK] = ACTIONS(12106), + [anon_sym_LBRACE] = ACTIONS(12106), + [anon_sym_RBRACE] = ACTIONS(12106), + [anon_sym_LPAREN] = ACTIONS(12106), + [anon_sym_COMMA] = ACTIONS(12106), + [anon_sym_EQ] = ACTIONS(12106), + [sym_word] = ACTIONS(12106), + [sym_param] = ACTIONS(12106), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12106), + [anon_sym_DOLLAR] = ACTIONS(12108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12106), + [anon_sym_BSLASHbegin] = ACTIONS(12108), + [anon_sym_BSLASHcaption] = ACTIONS(12108), + [anon_sym_BSLASHcite] = ACTIONS(12108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCite] = ACTIONS(12108), + [anon_sym_BSLASHnocite] = ACTIONS(12108), + [anon_sym_BSLASHcitet] = ACTIONS(12108), + [anon_sym_BSLASHcitep] = ACTIONS(12108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteauthor] = ACTIONS(12108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitetitle] = ACTIONS(12108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteyear] = ACTIONS(12108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitedate] = ACTIONS(12108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteurl] = ACTIONS(12108), + [anon_sym_BSLASHfullcite] = ACTIONS(12108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12108), + [anon_sym_BSLASHcitealt] = ACTIONS(12108), + [anon_sym_BSLASHcitealp] = ACTIONS(12108), + [anon_sym_BSLASHcitetext] = ACTIONS(12108), + [anon_sym_BSLASHparencite] = ACTIONS(12108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHParencite] = ACTIONS(12108), + [anon_sym_BSLASHfootcite] = ACTIONS(12108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12108), + [anon_sym_BSLASHtextcite] = ACTIONS(12108), + [anon_sym_BSLASHTextcite] = ACTIONS(12108), + [anon_sym_BSLASHsmartcite] = ACTIONS(12108), + [anon_sym_BSLASHSmartcite] = ACTIONS(12108), + [anon_sym_BSLASHsupercite] = ACTIONS(12108), + [anon_sym_BSLASHautocite] = ACTIONS(12108), + [anon_sym_BSLASHAutocite] = ACTIONS(12108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHvolcite] = ACTIONS(12108), + [anon_sym_BSLASHVolcite] = ACTIONS(12108), + [anon_sym_BSLASHpvolcite] = ACTIONS(12108), + [anon_sym_BSLASHPvolcite] = ACTIONS(12108), + [anon_sym_BSLASHfvolcite] = ACTIONS(12108), + [anon_sym_BSLASHftvolcite] = ACTIONS(12108), + [anon_sym_BSLASHsvolcite] = ACTIONS(12108), + [anon_sym_BSLASHSvolcite] = ACTIONS(12108), + [anon_sym_BSLASHtvolcite] = ACTIONS(12108), + [anon_sym_BSLASHTvolcite] = ACTIONS(12108), + [anon_sym_BSLASHavolcite] = ACTIONS(12108), + [anon_sym_BSLASHAvolcite] = ACTIONS(12108), + [anon_sym_BSLASHnotecite] = ACTIONS(12108), + [anon_sym_BSLASHpnotecite] = ACTIONS(12108), + [anon_sym_BSLASHPnotecite] = ACTIONS(12108), + [anon_sym_BSLASHfnotecite] = ACTIONS(12108), + [anon_sym_BSLASHusepackage] = ACTIONS(12108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12108), + [anon_sym_BSLASHinclude] = ACTIONS(12108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12108), + [anon_sym_BSLASHinput] = ACTIONS(12108), + [anon_sym_BSLASHsubfile] = ACTIONS(12108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12108), + [anon_sym_BSLASHbibliography] = ACTIONS(12108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12108), + [anon_sym_BSLASHincludesvg] = ACTIONS(12108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12108), + [anon_sym_BSLASHimport] = ACTIONS(12108), + [anon_sym_BSLASHsubimport] = ACTIONS(12108), + [anon_sym_BSLASHinputfrom] = ACTIONS(12108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12108), + [anon_sym_BSLASHincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHlabel] = ACTIONS(12108), + [anon_sym_BSLASHref] = ACTIONS(12108), + [anon_sym_BSLASHvref] = ACTIONS(12108), + [anon_sym_BSLASHVref] = ACTIONS(12108), + [anon_sym_BSLASHautoref] = ACTIONS(12108), + [anon_sym_BSLASHpageref] = ACTIONS(12108), + [anon_sym_BSLASHcref] = ACTIONS(12108), + [anon_sym_BSLASHCref] = ACTIONS(12108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnameCref] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHlabelcref] = ACTIONS(12108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12108), + [anon_sym_BSLASHeqref] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange] = ACTIONS(12108), + [anon_sym_BSLASHCrefrange] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewlabel] = ACTIONS(12108), + [anon_sym_BSLASHnewcommand] = ACTIONS(12108), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12108), + [anon_sym_BSLASHgls] = ACTIONS(12108), + [anon_sym_BSLASHGls] = ACTIONS(12108), + [anon_sym_BSLASHGLS] = ACTIONS(12108), + [anon_sym_BSLASHglspl] = ACTIONS(12108), + [anon_sym_BSLASHGlspl] = ACTIONS(12108), + [anon_sym_BSLASHGLSpl] = ACTIONS(12108), + [anon_sym_BSLASHglsdisp] = ACTIONS(12108), + [anon_sym_BSLASHglslink] = ACTIONS(12108), + [anon_sym_BSLASHglstext] = ACTIONS(12108), + [anon_sym_BSLASHGlstext] = ACTIONS(12108), + [anon_sym_BSLASHGLStext] = ACTIONS(12108), + [anon_sym_BSLASHglsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12108), + [anon_sym_BSLASHglsplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSplural] = ACTIONS(12108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHglsname] = ACTIONS(12108), + [anon_sym_BSLASHGlsname] = ACTIONS(12108), + [anon_sym_BSLASHGLSname] = ACTIONS(12108), + [anon_sym_BSLASHglssymbol] = ACTIONS(12108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12108), + [anon_sym_BSLASHglsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12108), + [anon_sym_BSLASHglsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12108), + [anon_sym_BSLASHglsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12108), + [anon_sym_BSLASHglsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12108), + [anon_sym_BSLASHglsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12108), + [anon_sym_BSLASHnewacronym] = ACTIONS(12108), + [anon_sym_BSLASHacrshort] = ACTIONS(12108), + [anon_sym_BSLASHAcrshort] = ACTIONS(12108), + [anon_sym_BSLASHACRshort] = ACTIONS(12108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12108), + [anon_sym_BSLASHacrlong] = ACTIONS(12108), + [anon_sym_BSLASHAcrlong] = ACTIONS(12108), + [anon_sym_BSLASHACRlong] = ACTIONS(12108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12108), + [anon_sym_BSLASHacrfull] = ACTIONS(12108), + [anon_sym_BSLASHAcrfull] = ACTIONS(12108), + [anon_sym_BSLASHACRfull] = ACTIONS(12108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12108), + [anon_sym_BSLASHacs] = ACTIONS(12108), + [anon_sym_BSLASHAcs] = ACTIONS(12108), + [anon_sym_BSLASHacsp] = ACTIONS(12108), + [anon_sym_BSLASHAcsp] = ACTIONS(12108), + [anon_sym_BSLASHacl] = ACTIONS(12108), + [anon_sym_BSLASHAcl] = ACTIONS(12108), + [anon_sym_BSLASHaclp] = ACTIONS(12108), + [anon_sym_BSLASHAclp] = ACTIONS(12108), + [anon_sym_BSLASHacf] = ACTIONS(12108), + [anon_sym_BSLASHAcf] = ACTIONS(12108), + [anon_sym_BSLASHacfp] = ACTIONS(12108), + [anon_sym_BSLASHAcfp] = ACTIONS(12108), + [anon_sym_BSLASHac] = ACTIONS(12108), + [anon_sym_BSLASHAc] = ACTIONS(12108), + [anon_sym_BSLASHacp] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12108), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12108), + [anon_sym_BSLASHcolor] = ACTIONS(12108), + [anon_sym_BSLASHcolorbox] = ACTIONS(12108), + [anon_sym_BSLASHtextcolor] = ACTIONS(12108), + [anon_sym_BSLASHpagecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12108), + }, + [1652] = { + [sym_generic_command_name] = ACTIONS(12235), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12235), + [anon_sym_BSLASHitem] = ACTIONS(12235), + [anon_sym_LBRACK] = ACTIONS(12233), + [anon_sym_RBRACK] = ACTIONS(12233), + [anon_sym_LBRACE] = ACTIONS(12233), + [anon_sym_RBRACE] = ACTIONS(12233), + [anon_sym_LPAREN] = ACTIONS(12233), + [anon_sym_COMMA] = ACTIONS(12233), + [anon_sym_EQ] = ACTIONS(12233), + [sym_word] = ACTIONS(12233), + [sym_param] = ACTIONS(12233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12233), + [anon_sym_DOLLAR] = ACTIONS(12235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12233), + [anon_sym_BSLASHbegin] = ACTIONS(12235), + [anon_sym_BSLASHcaption] = ACTIONS(12235), + [anon_sym_BSLASHcite] = ACTIONS(12235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCite] = ACTIONS(12235), + [anon_sym_BSLASHnocite] = ACTIONS(12235), + [anon_sym_BSLASHcitet] = ACTIONS(12235), + [anon_sym_BSLASHcitep] = ACTIONS(12235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteauthor] = ACTIONS(12235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitetitle] = ACTIONS(12235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteyear] = ACTIONS(12235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitedate] = ACTIONS(12235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteurl] = ACTIONS(12235), + [anon_sym_BSLASHfullcite] = ACTIONS(12235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12235), + [anon_sym_BSLASHcitealt] = ACTIONS(12235), + [anon_sym_BSLASHcitealp] = ACTIONS(12235), + [anon_sym_BSLASHcitetext] = ACTIONS(12235), + [anon_sym_BSLASHparencite] = ACTIONS(12235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHParencite] = ACTIONS(12235), + [anon_sym_BSLASHfootcite] = ACTIONS(12235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12235), + [anon_sym_BSLASHtextcite] = ACTIONS(12235), + [anon_sym_BSLASHTextcite] = ACTIONS(12235), + [anon_sym_BSLASHsmartcite] = ACTIONS(12235), + [anon_sym_BSLASHSmartcite] = ACTIONS(12235), + [anon_sym_BSLASHsupercite] = ACTIONS(12235), + [anon_sym_BSLASHautocite] = ACTIONS(12235), + [anon_sym_BSLASHAutocite] = ACTIONS(12235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHvolcite] = ACTIONS(12235), + [anon_sym_BSLASHVolcite] = ACTIONS(12235), + [anon_sym_BSLASHpvolcite] = ACTIONS(12235), + [anon_sym_BSLASHPvolcite] = ACTIONS(12235), + [anon_sym_BSLASHfvolcite] = ACTIONS(12235), + [anon_sym_BSLASHftvolcite] = ACTIONS(12235), + [anon_sym_BSLASHsvolcite] = ACTIONS(12235), + [anon_sym_BSLASHSvolcite] = ACTIONS(12235), + [anon_sym_BSLASHtvolcite] = ACTIONS(12235), + [anon_sym_BSLASHTvolcite] = ACTIONS(12235), + [anon_sym_BSLASHavolcite] = ACTIONS(12235), + [anon_sym_BSLASHAvolcite] = ACTIONS(12235), + [anon_sym_BSLASHnotecite] = ACTIONS(12235), + [anon_sym_BSLASHpnotecite] = ACTIONS(12235), + [anon_sym_BSLASHPnotecite] = ACTIONS(12235), + [anon_sym_BSLASHfnotecite] = ACTIONS(12235), + [anon_sym_BSLASHusepackage] = ACTIONS(12235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12235), + [anon_sym_BSLASHinclude] = ACTIONS(12235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12235), + [anon_sym_BSLASHinput] = ACTIONS(12235), + [anon_sym_BSLASHsubfile] = ACTIONS(12235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12235), + [anon_sym_BSLASHbibliography] = ACTIONS(12235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12235), + [anon_sym_BSLASHincludesvg] = ACTIONS(12235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12235), + [anon_sym_BSLASHimport] = ACTIONS(12235), + [anon_sym_BSLASHsubimport] = ACTIONS(12235), + [anon_sym_BSLASHinputfrom] = ACTIONS(12235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12235), + [anon_sym_BSLASHincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHlabel] = ACTIONS(12235), + [anon_sym_BSLASHref] = ACTIONS(12235), + [anon_sym_BSLASHvref] = ACTIONS(12235), + [anon_sym_BSLASHVref] = ACTIONS(12235), + [anon_sym_BSLASHautoref] = ACTIONS(12235), + [anon_sym_BSLASHpageref] = ACTIONS(12235), + [anon_sym_BSLASHcref] = ACTIONS(12235), + [anon_sym_BSLASHCref] = ACTIONS(12235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnameCref] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHlabelcref] = ACTIONS(12235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12235), + [anon_sym_BSLASHeqref] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange] = ACTIONS(12235), + [anon_sym_BSLASHCrefrange] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewlabel] = ACTIONS(12235), + [anon_sym_BSLASHnewcommand] = ACTIONS(12235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12235), + [anon_sym_BSLASHgls] = ACTIONS(12235), + [anon_sym_BSLASHGls] = ACTIONS(12235), + [anon_sym_BSLASHGLS] = ACTIONS(12235), + [anon_sym_BSLASHglspl] = ACTIONS(12235), + [anon_sym_BSLASHGlspl] = ACTIONS(12235), + [anon_sym_BSLASHGLSpl] = ACTIONS(12235), + [anon_sym_BSLASHglsdisp] = ACTIONS(12235), + [anon_sym_BSLASHglslink] = ACTIONS(12235), + [anon_sym_BSLASHglstext] = ACTIONS(12235), + [anon_sym_BSLASHGlstext] = ACTIONS(12235), + [anon_sym_BSLASHGLStext] = ACTIONS(12235), + [anon_sym_BSLASHglsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12235), + [anon_sym_BSLASHglsplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSplural] = ACTIONS(12235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHglsname] = ACTIONS(12235), + [anon_sym_BSLASHGlsname] = ACTIONS(12235), + [anon_sym_BSLASHGLSname] = ACTIONS(12235), + [anon_sym_BSLASHglssymbol] = ACTIONS(12235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12235), + [anon_sym_BSLASHglsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12235), + [anon_sym_BSLASHglsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12235), + [anon_sym_BSLASHglsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12235), + [anon_sym_BSLASHglsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12235), + [anon_sym_BSLASHglsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12235), + [anon_sym_BSLASHnewacronym] = ACTIONS(12235), + [anon_sym_BSLASHacrshort] = ACTIONS(12235), + [anon_sym_BSLASHAcrshort] = ACTIONS(12235), + [anon_sym_BSLASHACRshort] = ACTIONS(12235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12235), + [anon_sym_BSLASHacrlong] = ACTIONS(12235), + [anon_sym_BSLASHAcrlong] = ACTIONS(12235), + [anon_sym_BSLASHACRlong] = ACTIONS(12235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12235), + [anon_sym_BSLASHacrfull] = ACTIONS(12235), + [anon_sym_BSLASHAcrfull] = ACTIONS(12235), + [anon_sym_BSLASHACRfull] = ACTIONS(12235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12235), + [anon_sym_BSLASHacs] = ACTIONS(12235), + [anon_sym_BSLASHAcs] = ACTIONS(12235), + [anon_sym_BSLASHacsp] = ACTIONS(12235), + [anon_sym_BSLASHAcsp] = ACTIONS(12235), + [anon_sym_BSLASHacl] = ACTIONS(12235), + [anon_sym_BSLASHAcl] = ACTIONS(12235), + [anon_sym_BSLASHaclp] = ACTIONS(12235), + [anon_sym_BSLASHAclp] = ACTIONS(12235), + [anon_sym_BSLASHacf] = ACTIONS(12235), + [anon_sym_BSLASHAcf] = ACTIONS(12235), + [anon_sym_BSLASHacfp] = ACTIONS(12235), + [anon_sym_BSLASHAcfp] = ACTIONS(12235), + [anon_sym_BSLASHac] = ACTIONS(12235), + [anon_sym_BSLASHAc] = ACTIONS(12235), + [anon_sym_BSLASHacp] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12235), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12235), + [anon_sym_BSLASHcolor] = ACTIONS(12235), + [anon_sym_BSLASHcolorbox] = ACTIONS(12235), + [anon_sym_BSLASHtextcolor] = ACTIONS(12235), + [anon_sym_BSLASHpagecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12235), + }, + [1653] = { + [sym_generic_command_name] = ACTIONS(12239), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12239), + [anon_sym_BSLASHitem] = ACTIONS(12239), + [anon_sym_LBRACK] = ACTIONS(12237), + [anon_sym_RBRACK] = ACTIONS(12237), + [anon_sym_LBRACE] = ACTIONS(12237), + [anon_sym_RBRACE] = ACTIONS(12237), + [anon_sym_LPAREN] = ACTIONS(12237), + [anon_sym_COMMA] = ACTIONS(12237), + [anon_sym_EQ] = ACTIONS(12237), + [sym_word] = ACTIONS(12237), + [sym_param] = ACTIONS(12237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12237), + [anon_sym_DOLLAR] = ACTIONS(12239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12237), + [anon_sym_BSLASHbegin] = ACTIONS(12239), + [anon_sym_BSLASHcaption] = ACTIONS(12239), + [anon_sym_BSLASHcite] = ACTIONS(12239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCite] = ACTIONS(12239), + [anon_sym_BSLASHnocite] = ACTIONS(12239), + [anon_sym_BSLASHcitet] = ACTIONS(12239), + [anon_sym_BSLASHcitep] = ACTIONS(12239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteauthor] = ACTIONS(12239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitetitle] = ACTIONS(12239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteyear] = ACTIONS(12239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitedate] = ACTIONS(12239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteurl] = ACTIONS(12239), + [anon_sym_BSLASHfullcite] = ACTIONS(12239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12239), + [anon_sym_BSLASHcitealt] = ACTIONS(12239), + [anon_sym_BSLASHcitealp] = ACTIONS(12239), + [anon_sym_BSLASHcitetext] = ACTIONS(12239), + [anon_sym_BSLASHparencite] = ACTIONS(12239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHParencite] = ACTIONS(12239), + [anon_sym_BSLASHfootcite] = ACTIONS(12239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12239), + [anon_sym_BSLASHtextcite] = ACTIONS(12239), + [anon_sym_BSLASHTextcite] = ACTIONS(12239), + [anon_sym_BSLASHsmartcite] = ACTIONS(12239), + [anon_sym_BSLASHSmartcite] = ACTIONS(12239), + [anon_sym_BSLASHsupercite] = ACTIONS(12239), + [anon_sym_BSLASHautocite] = ACTIONS(12239), + [anon_sym_BSLASHAutocite] = ACTIONS(12239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHvolcite] = ACTIONS(12239), + [anon_sym_BSLASHVolcite] = ACTIONS(12239), + [anon_sym_BSLASHpvolcite] = ACTIONS(12239), + [anon_sym_BSLASHPvolcite] = ACTIONS(12239), + [anon_sym_BSLASHfvolcite] = ACTIONS(12239), + [anon_sym_BSLASHftvolcite] = ACTIONS(12239), + [anon_sym_BSLASHsvolcite] = ACTIONS(12239), + [anon_sym_BSLASHSvolcite] = ACTIONS(12239), + [anon_sym_BSLASHtvolcite] = ACTIONS(12239), + [anon_sym_BSLASHTvolcite] = ACTIONS(12239), + [anon_sym_BSLASHavolcite] = ACTIONS(12239), + [anon_sym_BSLASHAvolcite] = ACTIONS(12239), + [anon_sym_BSLASHnotecite] = ACTIONS(12239), + [anon_sym_BSLASHpnotecite] = ACTIONS(12239), + [anon_sym_BSLASHPnotecite] = ACTIONS(12239), + [anon_sym_BSLASHfnotecite] = ACTIONS(12239), + [anon_sym_BSLASHusepackage] = ACTIONS(12239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12239), + [anon_sym_BSLASHinclude] = ACTIONS(12239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12239), + [anon_sym_BSLASHinput] = ACTIONS(12239), + [anon_sym_BSLASHsubfile] = ACTIONS(12239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12239), + [anon_sym_BSLASHbibliography] = ACTIONS(12239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12239), + [anon_sym_BSLASHincludesvg] = ACTIONS(12239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12239), + [anon_sym_BSLASHimport] = ACTIONS(12239), + [anon_sym_BSLASHsubimport] = ACTIONS(12239), + [anon_sym_BSLASHinputfrom] = ACTIONS(12239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12239), + [anon_sym_BSLASHincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHlabel] = ACTIONS(12239), + [anon_sym_BSLASHref] = ACTIONS(12239), + [anon_sym_BSLASHvref] = ACTIONS(12239), + [anon_sym_BSLASHVref] = ACTIONS(12239), + [anon_sym_BSLASHautoref] = ACTIONS(12239), + [anon_sym_BSLASHpageref] = ACTIONS(12239), + [anon_sym_BSLASHcref] = ACTIONS(12239), + [anon_sym_BSLASHCref] = ACTIONS(12239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnameCref] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHlabelcref] = ACTIONS(12239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12239), + [anon_sym_BSLASHeqref] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange] = ACTIONS(12239), + [anon_sym_BSLASHCrefrange] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewlabel] = ACTIONS(12239), + [anon_sym_BSLASHnewcommand] = ACTIONS(12239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12239), + [anon_sym_BSLASHgls] = ACTIONS(12239), + [anon_sym_BSLASHGls] = ACTIONS(12239), + [anon_sym_BSLASHGLS] = ACTIONS(12239), + [anon_sym_BSLASHglspl] = ACTIONS(12239), + [anon_sym_BSLASHGlspl] = ACTIONS(12239), + [anon_sym_BSLASHGLSpl] = ACTIONS(12239), + [anon_sym_BSLASHglsdisp] = ACTIONS(12239), + [anon_sym_BSLASHglslink] = ACTIONS(12239), + [anon_sym_BSLASHglstext] = ACTIONS(12239), + [anon_sym_BSLASHGlstext] = ACTIONS(12239), + [anon_sym_BSLASHGLStext] = ACTIONS(12239), + [anon_sym_BSLASHglsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12239), + [anon_sym_BSLASHglsplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSplural] = ACTIONS(12239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHglsname] = ACTIONS(12239), + [anon_sym_BSLASHGlsname] = ACTIONS(12239), + [anon_sym_BSLASHGLSname] = ACTIONS(12239), + [anon_sym_BSLASHglssymbol] = ACTIONS(12239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12239), + [anon_sym_BSLASHglsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12239), + [anon_sym_BSLASHglsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12239), + [anon_sym_BSLASHglsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12239), + [anon_sym_BSLASHglsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12239), + [anon_sym_BSLASHglsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12239), + [anon_sym_BSLASHnewacronym] = ACTIONS(12239), + [anon_sym_BSLASHacrshort] = ACTIONS(12239), + [anon_sym_BSLASHAcrshort] = ACTIONS(12239), + [anon_sym_BSLASHACRshort] = ACTIONS(12239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12239), + [anon_sym_BSLASHacrlong] = ACTIONS(12239), + [anon_sym_BSLASHAcrlong] = ACTIONS(12239), + [anon_sym_BSLASHACRlong] = ACTIONS(12239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12239), + [anon_sym_BSLASHacrfull] = ACTIONS(12239), + [anon_sym_BSLASHAcrfull] = ACTIONS(12239), + [anon_sym_BSLASHACRfull] = ACTIONS(12239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12239), + [anon_sym_BSLASHacs] = ACTIONS(12239), + [anon_sym_BSLASHAcs] = ACTIONS(12239), + [anon_sym_BSLASHacsp] = ACTIONS(12239), + [anon_sym_BSLASHAcsp] = ACTIONS(12239), + [anon_sym_BSLASHacl] = ACTIONS(12239), + [anon_sym_BSLASHAcl] = ACTIONS(12239), + [anon_sym_BSLASHaclp] = ACTIONS(12239), + [anon_sym_BSLASHAclp] = ACTIONS(12239), + [anon_sym_BSLASHacf] = ACTIONS(12239), + [anon_sym_BSLASHAcf] = ACTIONS(12239), + [anon_sym_BSLASHacfp] = ACTIONS(12239), + [anon_sym_BSLASHAcfp] = ACTIONS(12239), + [anon_sym_BSLASHac] = ACTIONS(12239), + [anon_sym_BSLASHAc] = ACTIONS(12239), + [anon_sym_BSLASHacp] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12239), + [anon_sym_BSLASHcolor] = ACTIONS(12239), + [anon_sym_BSLASHcolorbox] = ACTIONS(12239), + [anon_sym_BSLASHtextcolor] = ACTIONS(12239), + [anon_sym_BSLASHpagecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12239), + }, + [1654] = { + [sym_generic_command_name] = ACTIONS(12243), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12243), + [anon_sym_BSLASHitem] = ACTIONS(12243), + [anon_sym_LBRACK] = ACTIONS(12241), + [anon_sym_RBRACK] = ACTIONS(12241), + [anon_sym_LBRACE] = ACTIONS(12241), + [anon_sym_RBRACE] = ACTIONS(12241), + [anon_sym_LPAREN] = ACTIONS(12241), + [anon_sym_COMMA] = ACTIONS(12241), + [anon_sym_EQ] = ACTIONS(12241), + [sym_word] = ACTIONS(12241), + [sym_param] = ACTIONS(12241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12241), + [anon_sym_DOLLAR] = ACTIONS(12243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12241), + [anon_sym_BSLASHbegin] = ACTIONS(12243), + [anon_sym_BSLASHcaption] = ACTIONS(12243), + [anon_sym_BSLASHcite] = ACTIONS(12243), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCite] = ACTIONS(12243), + [anon_sym_BSLASHnocite] = ACTIONS(12243), + [anon_sym_BSLASHcitet] = ACTIONS(12243), + [anon_sym_BSLASHcitep] = ACTIONS(12243), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteauthor] = ACTIONS(12243), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12243), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitetitle] = ACTIONS(12243), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteyear] = ACTIONS(12243), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitedate] = ACTIONS(12243), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteurl] = ACTIONS(12243), + [anon_sym_BSLASHfullcite] = ACTIONS(12243), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12243), + [anon_sym_BSLASHcitealt] = ACTIONS(12243), + [anon_sym_BSLASHcitealp] = ACTIONS(12243), + [anon_sym_BSLASHcitetext] = ACTIONS(12243), + [anon_sym_BSLASHparencite] = ACTIONS(12243), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHParencite] = ACTIONS(12243), + [anon_sym_BSLASHfootcite] = ACTIONS(12243), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12243), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12243), + [anon_sym_BSLASHtextcite] = ACTIONS(12243), + [anon_sym_BSLASHTextcite] = ACTIONS(12243), + [anon_sym_BSLASHsmartcite] = ACTIONS(12243), + [anon_sym_BSLASHSmartcite] = ACTIONS(12243), + [anon_sym_BSLASHsupercite] = ACTIONS(12243), + [anon_sym_BSLASHautocite] = ACTIONS(12243), + [anon_sym_BSLASHAutocite] = ACTIONS(12243), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHvolcite] = ACTIONS(12243), + [anon_sym_BSLASHVolcite] = ACTIONS(12243), + [anon_sym_BSLASHpvolcite] = ACTIONS(12243), + [anon_sym_BSLASHPvolcite] = ACTIONS(12243), + [anon_sym_BSLASHfvolcite] = ACTIONS(12243), + [anon_sym_BSLASHftvolcite] = ACTIONS(12243), + [anon_sym_BSLASHsvolcite] = ACTIONS(12243), + [anon_sym_BSLASHSvolcite] = ACTIONS(12243), + [anon_sym_BSLASHtvolcite] = ACTIONS(12243), + [anon_sym_BSLASHTvolcite] = ACTIONS(12243), + [anon_sym_BSLASHavolcite] = ACTIONS(12243), + [anon_sym_BSLASHAvolcite] = ACTIONS(12243), + [anon_sym_BSLASHnotecite] = ACTIONS(12243), + [anon_sym_BSLASHpnotecite] = ACTIONS(12243), + [anon_sym_BSLASHPnotecite] = ACTIONS(12243), + [anon_sym_BSLASHfnotecite] = ACTIONS(12243), + [anon_sym_BSLASHusepackage] = ACTIONS(12243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12243), + [anon_sym_BSLASHinclude] = ACTIONS(12243), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12243), + [anon_sym_BSLASHinput] = ACTIONS(12243), + [anon_sym_BSLASHsubfile] = ACTIONS(12243), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12243), + [anon_sym_BSLASHbibliography] = ACTIONS(12243), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12243), + [anon_sym_BSLASHincludesvg] = ACTIONS(12243), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12243), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12243), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12243), + [anon_sym_BSLASHimport] = ACTIONS(12243), + [anon_sym_BSLASHsubimport] = ACTIONS(12243), + [anon_sym_BSLASHinputfrom] = ACTIONS(12243), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12243), + [anon_sym_BSLASHincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHlabel] = ACTIONS(12243), + [anon_sym_BSLASHref] = ACTIONS(12243), + [anon_sym_BSLASHvref] = ACTIONS(12243), + [anon_sym_BSLASHVref] = ACTIONS(12243), + [anon_sym_BSLASHautoref] = ACTIONS(12243), + [anon_sym_BSLASHpageref] = ACTIONS(12243), + [anon_sym_BSLASHcref] = ACTIONS(12243), + [anon_sym_BSLASHCref] = ACTIONS(12243), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnameCref] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHlabelcref] = ACTIONS(12243), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12243), + [anon_sym_BSLASHeqref] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange] = ACTIONS(12243), + [anon_sym_BSLASHCrefrange] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewlabel] = ACTIONS(12243), + [anon_sym_BSLASHnewcommand] = ACTIONS(12243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12243), + [anon_sym_BSLASHgls] = ACTIONS(12243), + [anon_sym_BSLASHGls] = ACTIONS(12243), + [anon_sym_BSLASHGLS] = ACTIONS(12243), + [anon_sym_BSLASHglspl] = ACTIONS(12243), + [anon_sym_BSLASHGlspl] = ACTIONS(12243), + [anon_sym_BSLASHGLSpl] = ACTIONS(12243), + [anon_sym_BSLASHglsdisp] = ACTIONS(12243), + [anon_sym_BSLASHglslink] = ACTIONS(12243), + [anon_sym_BSLASHglstext] = ACTIONS(12243), + [anon_sym_BSLASHGlstext] = ACTIONS(12243), + [anon_sym_BSLASHGLStext] = ACTIONS(12243), + [anon_sym_BSLASHglsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12243), + [anon_sym_BSLASHglsplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSplural] = ACTIONS(12243), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHglsname] = ACTIONS(12243), + [anon_sym_BSLASHGlsname] = ACTIONS(12243), + [anon_sym_BSLASHGLSname] = ACTIONS(12243), + [anon_sym_BSLASHglssymbol] = ACTIONS(12243), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12243), + [anon_sym_BSLASHglsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12243), + [anon_sym_BSLASHglsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12243), + [anon_sym_BSLASHglsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12243), + [anon_sym_BSLASHglsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12243), + [anon_sym_BSLASHglsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12243), + [anon_sym_BSLASHnewacronym] = ACTIONS(12243), + [anon_sym_BSLASHacrshort] = ACTIONS(12243), + [anon_sym_BSLASHAcrshort] = ACTIONS(12243), + [anon_sym_BSLASHACRshort] = ACTIONS(12243), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12243), + [anon_sym_BSLASHacrlong] = ACTIONS(12243), + [anon_sym_BSLASHAcrlong] = ACTIONS(12243), + [anon_sym_BSLASHACRlong] = ACTIONS(12243), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12243), + [anon_sym_BSLASHacrfull] = ACTIONS(12243), + [anon_sym_BSLASHAcrfull] = ACTIONS(12243), + [anon_sym_BSLASHACRfull] = ACTIONS(12243), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12243), + [anon_sym_BSLASHacs] = ACTIONS(12243), + [anon_sym_BSLASHAcs] = ACTIONS(12243), + [anon_sym_BSLASHacsp] = ACTIONS(12243), + [anon_sym_BSLASHAcsp] = ACTIONS(12243), + [anon_sym_BSLASHacl] = ACTIONS(12243), + [anon_sym_BSLASHAcl] = ACTIONS(12243), + [anon_sym_BSLASHaclp] = ACTIONS(12243), + [anon_sym_BSLASHAclp] = ACTIONS(12243), + [anon_sym_BSLASHacf] = ACTIONS(12243), + [anon_sym_BSLASHAcf] = ACTIONS(12243), + [anon_sym_BSLASHacfp] = ACTIONS(12243), + [anon_sym_BSLASHAcfp] = ACTIONS(12243), + [anon_sym_BSLASHac] = ACTIONS(12243), + [anon_sym_BSLASHAc] = ACTIONS(12243), + [anon_sym_BSLASHacp] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12243), + [anon_sym_BSLASHcolor] = ACTIONS(12243), + [anon_sym_BSLASHcolorbox] = ACTIONS(12243), + [anon_sym_BSLASHtextcolor] = ACTIONS(12243), + [anon_sym_BSLASHpagecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12243), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12243), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12243), + }, + [1655] = { + [sym_generic_command_name] = ACTIONS(12247), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12247), + [anon_sym_BSLASHitem] = ACTIONS(12247), + [anon_sym_LBRACK] = ACTIONS(12245), + [anon_sym_RBRACK] = ACTIONS(12245), + [anon_sym_LBRACE] = ACTIONS(12245), + [anon_sym_RBRACE] = ACTIONS(12245), + [anon_sym_LPAREN] = ACTIONS(12245), + [anon_sym_COMMA] = ACTIONS(12245), + [anon_sym_EQ] = ACTIONS(12245), + [sym_word] = ACTIONS(12245), + [sym_param] = ACTIONS(12245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12245), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12245), + [anon_sym_DOLLAR] = ACTIONS(12247), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12245), + [anon_sym_BSLASHbegin] = ACTIONS(12247), + [anon_sym_BSLASHcaption] = ACTIONS(12247), + [anon_sym_BSLASHcite] = ACTIONS(12247), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCite] = ACTIONS(12247), + [anon_sym_BSLASHnocite] = ACTIONS(12247), + [anon_sym_BSLASHcitet] = ACTIONS(12247), + [anon_sym_BSLASHcitep] = ACTIONS(12247), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteauthor] = ACTIONS(12247), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12247), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitetitle] = ACTIONS(12247), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteyear] = ACTIONS(12247), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitedate] = ACTIONS(12247), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteurl] = ACTIONS(12247), + [anon_sym_BSLASHfullcite] = ACTIONS(12247), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12247), + [anon_sym_BSLASHcitealt] = ACTIONS(12247), + [anon_sym_BSLASHcitealp] = ACTIONS(12247), + [anon_sym_BSLASHcitetext] = ACTIONS(12247), + [anon_sym_BSLASHparencite] = ACTIONS(12247), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHParencite] = ACTIONS(12247), + [anon_sym_BSLASHfootcite] = ACTIONS(12247), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12247), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12247), + [anon_sym_BSLASHtextcite] = ACTIONS(12247), + [anon_sym_BSLASHTextcite] = ACTIONS(12247), + [anon_sym_BSLASHsmartcite] = ACTIONS(12247), + [anon_sym_BSLASHSmartcite] = ACTIONS(12247), + [anon_sym_BSLASHsupercite] = ACTIONS(12247), + [anon_sym_BSLASHautocite] = ACTIONS(12247), + [anon_sym_BSLASHAutocite] = ACTIONS(12247), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHvolcite] = ACTIONS(12247), + [anon_sym_BSLASHVolcite] = ACTIONS(12247), + [anon_sym_BSLASHpvolcite] = ACTIONS(12247), + [anon_sym_BSLASHPvolcite] = ACTIONS(12247), + [anon_sym_BSLASHfvolcite] = ACTIONS(12247), + [anon_sym_BSLASHftvolcite] = ACTIONS(12247), + [anon_sym_BSLASHsvolcite] = ACTIONS(12247), + [anon_sym_BSLASHSvolcite] = ACTIONS(12247), + [anon_sym_BSLASHtvolcite] = ACTIONS(12247), + [anon_sym_BSLASHTvolcite] = ACTIONS(12247), + [anon_sym_BSLASHavolcite] = ACTIONS(12247), + [anon_sym_BSLASHAvolcite] = ACTIONS(12247), + [anon_sym_BSLASHnotecite] = ACTIONS(12247), + [anon_sym_BSLASHpnotecite] = ACTIONS(12247), + [anon_sym_BSLASHPnotecite] = ACTIONS(12247), + [anon_sym_BSLASHfnotecite] = ACTIONS(12247), + [anon_sym_BSLASHusepackage] = ACTIONS(12247), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12247), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12247), + [anon_sym_BSLASHinclude] = ACTIONS(12247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12247), + [anon_sym_BSLASHinput] = ACTIONS(12247), + [anon_sym_BSLASHsubfile] = ACTIONS(12247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12247), + [anon_sym_BSLASHbibliography] = ACTIONS(12247), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12247), + [anon_sym_BSLASHincludesvg] = ACTIONS(12247), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12247), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12247), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12247), + [anon_sym_BSLASHimport] = ACTIONS(12247), + [anon_sym_BSLASHsubimport] = ACTIONS(12247), + [anon_sym_BSLASHinputfrom] = ACTIONS(12247), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12247), + [anon_sym_BSLASHincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHlabel] = ACTIONS(12247), + [anon_sym_BSLASHref] = ACTIONS(12247), + [anon_sym_BSLASHvref] = ACTIONS(12247), + [anon_sym_BSLASHVref] = ACTIONS(12247), + [anon_sym_BSLASHautoref] = ACTIONS(12247), + [anon_sym_BSLASHpageref] = ACTIONS(12247), + [anon_sym_BSLASHcref] = ACTIONS(12247), + [anon_sym_BSLASHCref] = ACTIONS(12247), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnameCref] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHlabelcref] = ACTIONS(12247), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12247), + [anon_sym_BSLASHeqref] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange] = ACTIONS(12247), + [anon_sym_BSLASHCrefrange] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewlabel] = ACTIONS(12247), + [anon_sym_BSLASHnewcommand] = ACTIONS(12247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12247), + [anon_sym_BSLASHgls] = ACTIONS(12247), + [anon_sym_BSLASHGls] = ACTIONS(12247), + [anon_sym_BSLASHGLS] = ACTIONS(12247), + [anon_sym_BSLASHglspl] = ACTIONS(12247), + [anon_sym_BSLASHGlspl] = ACTIONS(12247), + [anon_sym_BSLASHGLSpl] = ACTIONS(12247), + [anon_sym_BSLASHglsdisp] = ACTIONS(12247), + [anon_sym_BSLASHglslink] = ACTIONS(12247), + [anon_sym_BSLASHglstext] = ACTIONS(12247), + [anon_sym_BSLASHGlstext] = ACTIONS(12247), + [anon_sym_BSLASHGLStext] = ACTIONS(12247), + [anon_sym_BSLASHglsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12247), + [anon_sym_BSLASHglsplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSplural] = ACTIONS(12247), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHglsname] = ACTIONS(12247), + [anon_sym_BSLASHGlsname] = ACTIONS(12247), + [anon_sym_BSLASHGLSname] = ACTIONS(12247), + [anon_sym_BSLASHglssymbol] = ACTIONS(12247), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12247), + [anon_sym_BSLASHglsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12247), + [anon_sym_BSLASHglsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12247), + [anon_sym_BSLASHglsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12247), + [anon_sym_BSLASHglsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12247), + [anon_sym_BSLASHglsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12247), + [anon_sym_BSLASHnewacronym] = ACTIONS(12247), + [anon_sym_BSLASHacrshort] = ACTIONS(12247), + [anon_sym_BSLASHAcrshort] = ACTIONS(12247), + [anon_sym_BSLASHACRshort] = ACTIONS(12247), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12247), + [anon_sym_BSLASHacrlong] = ACTIONS(12247), + [anon_sym_BSLASHAcrlong] = ACTIONS(12247), + [anon_sym_BSLASHACRlong] = ACTIONS(12247), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12247), + [anon_sym_BSLASHacrfull] = ACTIONS(12247), + [anon_sym_BSLASHAcrfull] = ACTIONS(12247), + [anon_sym_BSLASHACRfull] = ACTIONS(12247), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12247), + [anon_sym_BSLASHacs] = ACTIONS(12247), + [anon_sym_BSLASHAcs] = ACTIONS(12247), + [anon_sym_BSLASHacsp] = ACTIONS(12247), + [anon_sym_BSLASHAcsp] = ACTIONS(12247), + [anon_sym_BSLASHacl] = ACTIONS(12247), + [anon_sym_BSLASHAcl] = ACTIONS(12247), + [anon_sym_BSLASHaclp] = ACTIONS(12247), + [anon_sym_BSLASHAclp] = ACTIONS(12247), + [anon_sym_BSLASHacf] = ACTIONS(12247), + [anon_sym_BSLASHAcf] = ACTIONS(12247), + [anon_sym_BSLASHacfp] = ACTIONS(12247), + [anon_sym_BSLASHAcfp] = ACTIONS(12247), + [anon_sym_BSLASHac] = ACTIONS(12247), + [anon_sym_BSLASHAc] = ACTIONS(12247), + [anon_sym_BSLASHacp] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12247), + [anon_sym_BSLASHcolor] = ACTIONS(12247), + [anon_sym_BSLASHcolorbox] = ACTIONS(12247), + [anon_sym_BSLASHtextcolor] = ACTIONS(12247), + [anon_sym_BSLASHpagecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12247), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12247), + }, + [1656] = { + [sym_generic_command_name] = ACTIONS(12189), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12189), + [anon_sym_BSLASHitem] = ACTIONS(12189), + [anon_sym_LBRACK] = ACTIONS(12187), + [anon_sym_RBRACK] = ACTIONS(12187), + [anon_sym_LBRACE] = ACTIONS(12187), + [anon_sym_RBRACE] = ACTIONS(12187), + [anon_sym_LPAREN] = ACTIONS(12187), + [anon_sym_COMMA] = ACTIONS(12187), + [anon_sym_EQ] = ACTIONS(12187), + [sym_word] = ACTIONS(12187), + [sym_param] = ACTIONS(12187), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12187), + [anon_sym_DOLLAR] = ACTIONS(12189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12187), + [anon_sym_BSLASHbegin] = ACTIONS(12189), + [anon_sym_BSLASHcaption] = ACTIONS(12189), + [anon_sym_BSLASHcite] = ACTIONS(12189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCite] = ACTIONS(12189), + [anon_sym_BSLASHnocite] = ACTIONS(12189), + [anon_sym_BSLASHcitet] = ACTIONS(12189), + [anon_sym_BSLASHcitep] = ACTIONS(12189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteauthor] = ACTIONS(12189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitetitle] = ACTIONS(12189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteyear] = ACTIONS(12189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitedate] = ACTIONS(12189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteurl] = ACTIONS(12189), + [anon_sym_BSLASHfullcite] = ACTIONS(12189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12189), + [anon_sym_BSLASHcitealt] = ACTIONS(12189), + [anon_sym_BSLASHcitealp] = ACTIONS(12189), + [anon_sym_BSLASHcitetext] = ACTIONS(12189), + [anon_sym_BSLASHparencite] = ACTIONS(12189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHParencite] = ACTIONS(12189), + [anon_sym_BSLASHfootcite] = ACTIONS(12189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12189), + [anon_sym_BSLASHtextcite] = ACTIONS(12189), + [anon_sym_BSLASHTextcite] = ACTIONS(12189), + [anon_sym_BSLASHsmartcite] = ACTIONS(12189), + [anon_sym_BSLASHSmartcite] = ACTIONS(12189), + [anon_sym_BSLASHsupercite] = ACTIONS(12189), + [anon_sym_BSLASHautocite] = ACTIONS(12189), + [anon_sym_BSLASHAutocite] = ACTIONS(12189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHvolcite] = ACTIONS(12189), + [anon_sym_BSLASHVolcite] = ACTIONS(12189), + [anon_sym_BSLASHpvolcite] = ACTIONS(12189), + [anon_sym_BSLASHPvolcite] = ACTIONS(12189), + [anon_sym_BSLASHfvolcite] = ACTIONS(12189), + [anon_sym_BSLASHftvolcite] = ACTIONS(12189), + [anon_sym_BSLASHsvolcite] = ACTIONS(12189), + [anon_sym_BSLASHSvolcite] = ACTIONS(12189), + [anon_sym_BSLASHtvolcite] = ACTIONS(12189), + [anon_sym_BSLASHTvolcite] = ACTIONS(12189), + [anon_sym_BSLASHavolcite] = ACTIONS(12189), + [anon_sym_BSLASHAvolcite] = ACTIONS(12189), + [anon_sym_BSLASHnotecite] = ACTIONS(12189), + [anon_sym_BSLASHpnotecite] = ACTIONS(12189), + [anon_sym_BSLASHPnotecite] = ACTIONS(12189), + [anon_sym_BSLASHfnotecite] = ACTIONS(12189), + [anon_sym_BSLASHusepackage] = ACTIONS(12189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12189), + [anon_sym_BSLASHinclude] = ACTIONS(12189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12189), + [anon_sym_BSLASHinput] = ACTIONS(12189), + [anon_sym_BSLASHsubfile] = ACTIONS(12189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12189), + [anon_sym_BSLASHbibliography] = ACTIONS(12189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12189), + [anon_sym_BSLASHincludesvg] = ACTIONS(12189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12189), + [anon_sym_BSLASHimport] = ACTIONS(12189), + [anon_sym_BSLASHsubimport] = ACTIONS(12189), + [anon_sym_BSLASHinputfrom] = ACTIONS(12189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12189), + [anon_sym_BSLASHincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHlabel] = ACTIONS(12189), + [anon_sym_BSLASHref] = ACTIONS(12189), + [anon_sym_BSLASHvref] = ACTIONS(12189), + [anon_sym_BSLASHVref] = ACTIONS(12189), + [anon_sym_BSLASHautoref] = ACTIONS(12189), + [anon_sym_BSLASHpageref] = ACTIONS(12189), + [anon_sym_BSLASHcref] = ACTIONS(12189), + [anon_sym_BSLASHCref] = ACTIONS(12189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnameCref] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHlabelcref] = ACTIONS(12189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12189), + [anon_sym_BSLASHeqref] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange] = ACTIONS(12189), + [anon_sym_BSLASHCrefrange] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewlabel] = ACTIONS(12189), + [anon_sym_BSLASHnewcommand] = ACTIONS(12189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12189), + [anon_sym_BSLASHgls] = ACTIONS(12189), + [anon_sym_BSLASHGls] = ACTIONS(12189), + [anon_sym_BSLASHGLS] = ACTIONS(12189), + [anon_sym_BSLASHglspl] = ACTIONS(12189), + [anon_sym_BSLASHGlspl] = ACTIONS(12189), + [anon_sym_BSLASHGLSpl] = ACTIONS(12189), + [anon_sym_BSLASHglsdisp] = ACTIONS(12189), + [anon_sym_BSLASHglslink] = ACTIONS(12189), + [anon_sym_BSLASHglstext] = ACTIONS(12189), + [anon_sym_BSLASHGlstext] = ACTIONS(12189), + [anon_sym_BSLASHGLStext] = ACTIONS(12189), + [anon_sym_BSLASHglsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12189), + [anon_sym_BSLASHglsplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSplural] = ACTIONS(12189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHglsname] = ACTIONS(12189), + [anon_sym_BSLASHGlsname] = ACTIONS(12189), + [anon_sym_BSLASHGLSname] = ACTIONS(12189), + [anon_sym_BSLASHglssymbol] = ACTIONS(12189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12189), + [anon_sym_BSLASHglsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12189), + [anon_sym_BSLASHglsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12189), + [anon_sym_BSLASHglsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12189), + [anon_sym_BSLASHglsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12189), + [anon_sym_BSLASHglsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12189), + [anon_sym_BSLASHnewacronym] = ACTIONS(12189), + [anon_sym_BSLASHacrshort] = ACTIONS(12189), + [anon_sym_BSLASHAcrshort] = ACTIONS(12189), + [anon_sym_BSLASHACRshort] = ACTIONS(12189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12189), + [anon_sym_BSLASHacrlong] = ACTIONS(12189), + [anon_sym_BSLASHAcrlong] = ACTIONS(12189), + [anon_sym_BSLASHACRlong] = ACTIONS(12189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12189), + [anon_sym_BSLASHacrfull] = ACTIONS(12189), + [anon_sym_BSLASHAcrfull] = ACTIONS(12189), + [anon_sym_BSLASHACRfull] = ACTIONS(12189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12189), + [anon_sym_BSLASHacs] = ACTIONS(12189), + [anon_sym_BSLASHAcs] = ACTIONS(12189), + [anon_sym_BSLASHacsp] = ACTIONS(12189), + [anon_sym_BSLASHAcsp] = ACTIONS(12189), + [anon_sym_BSLASHacl] = ACTIONS(12189), + [anon_sym_BSLASHAcl] = ACTIONS(12189), + [anon_sym_BSLASHaclp] = ACTIONS(12189), + [anon_sym_BSLASHAclp] = ACTIONS(12189), + [anon_sym_BSLASHacf] = ACTIONS(12189), + [anon_sym_BSLASHAcf] = ACTIONS(12189), + [anon_sym_BSLASHacfp] = ACTIONS(12189), + [anon_sym_BSLASHAcfp] = ACTIONS(12189), + [anon_sym_BSLASHac] = ACTIONS(12189), + [anon_sym_BSLASHAc] = ACTIONS(12189), + [anon_sym_BSLASHacp] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12189), + [anon_sym_BSLASHcolor] = ACTIONS(12189), + [anon_sym_BSLASHcolorbox] = ACTIONS(12189), + [anon_sym_BSLASHtextcolor] = ACTIONS(12189), + [anon_sym_BSLASHpagecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12189), + }, + [1657] = { + [sym_generic_command_name] = ACTIONS(12251), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12251), + [anon_sym_BSLASHitem] = ACTIONS(12251), + [anon_sym_LBRACK] = ACTIONS(12249), + [anon_sym_RBRACK] = ACTIONS(12249), + [anon_sym_LBRACE] = ACTIONS(12249), + [anon_sym_RBRACE] = ACTIONS(12249), + [anon_sym_LPAREN] = ACTIONS(12249), + [anon_sym_COMMA] = ACTIONS(12249), + [anon_sym_EQ] = ACTIONS(12249), + [sym_word] = ACTIONS(12249), + [sym_param] = ACTIONS(12249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12249), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12249), + [anon_sym_DOLLAR] = ACTIONS(12251), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12249), + [anon_sym_BSLASHbegin] = ACTIONS(12251), + [anon_sym_BSLASHcaption] = ACTIONS(12251), + [anon_sym_BSLASHcite] = ACTIONS(12251), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCite] = ACTIONS(12251), + [anon_sym_BSLASHnocite] = ACTIONS(12251), + [anon_sym_BSLASHcitet] = ACTIONS(12251), + [anon_sym_BSLASHcitep] = ACTIONS(12251), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteauthor] = ACTIONS(12251), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12251), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitetitle] = ACTIONS(12251), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteyear] = ACTIONS(12251), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitedate] = ACTIONS(12251), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteurl] = ACTIONS(12251), + [anon_sym_BSLASHfullcite] = ACTIONS(12251), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12251), + [anon_sym_BSLASHcitealt] = ACTIONS(12251), + [anon_sym_BSLASHcitealp] = ACTIONS(12251), + [anon_sym_BSLASHcitetext] = ACTIONS(12251), + [anon_sym_BSLASHparencite] = ACTIONS(12251), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHParencite] = ACTIONS(12251), + [anon_sym_BSLASHfootcite] = ACTIONS(12251), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12251), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12251), + [anon_sym_BSLASHtextcite] = ACTIONS(12251), + [anon_sym_BSLASHTextcite] = ACTIONS(12251), + [anon_sym_BSLASHsmartcite] = ACTIONS(12251), + [anon_sym_BSLASHSmartcite] = ACTIONS(12251), + [anon_sym_BSLASHsupercite] = ACTIONS(12251), + [anon_sym_BSLASHautocite] = ACTIONS(12251), + [anon_sym_BSLASHAutocite] = ACTIONS(12251), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHvolcite] = ACTIONS(12251), + [anon_sym_BSLASHVolcite] = ACTIONS(12251), + [anon_sym_BSLASHpvolcite] = ACTIONS(12251), + [anon_sym_BSLASHPvolcite] = ACTIONS(12251), + [anon_sym_BSLASHfvolcite] = ACTIONS(12251), + [anon_sym_BSLASHftvolcite] = ACTIONS(12251), + [anon_sym_BSLASHsvolcite] = ACTIONS(12251), + [anon_sym_BSLASHSvolcite] = ACTIONS(12251), + [anon_sym_BSLASHtvolcite] = ACTIONS(12251), + [anon_sym_BSLASHTvolcite] = ACTIONS(12251), + [anon_sym_BSLASHavolcite] = ACTIONS(12251), + [anon_sym_BSLASHAvolcite] = ACTIONS(12251), + [anon_sym_BSLASHnotecite] = ACTIONS(12251), + [anon_sym_BSLASHpnotecite] = ACTIONS(12251), + [anon_sym_BSLASHPnotecite] = ACTIONS(12251), + [anon_sym_BSLASHfnotecite] = ACTIONS(12251), + [anon_sym_BSLASHusepackage] = ACTIONS(12251), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12251), + [anon_sym_BSLASHinclude] = ACTIONS(12251), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12251), + [anon_sym_BSLASHinput] = ACTIONS(12251), + [anon_sym_BSLASHsubfile] = ACTIONS(12251), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12251), + [anon_sym_BSLASHbibliography] = ACTIONS(12251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12251), + [anon_sym_BSLASHincludesvg] = ACTIONS(12251), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12251), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12251), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12251), + [anon_sym_BSLASHimport] = ACTIONS(12251), + [anon_sym_BSLASHsubimport] = ACTIONS(12251), + [anon_sym_BSLASHinputfrom] = ACTIONS(12251), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12251), + [anon_sym_BSLASHincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHlabel] = ACTIONS(12251), + [anon_sym_BSLASHref] = ACTIONS(12251), + [anon_sym_BSLASHvref] = ACTIONS(12251), + [anon_sym_BSLASHVref] = ACTIONS(12251), + [anon_sym_BSLASHautoref] = ACTIONS(12251), + [anon_sym_BSLASHpageref] = ACTIONS(12251), + [anon_sym_BSLASHcref] = ACTIONS(12251), + [anon_sym_BSLASHCref] = ACTIONS(12251), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnameCref] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHlabelcref] = ACTIONS(12251), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12251), + [anon_sym_BSLASHeqref] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange] = ACTIONS(12251), + [anon_sym_BSLASHCrefrange] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewlabel] = ACTIONS(12251), + [anon_sym_BSLASHnewcommand] = ACTIONS(12251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12251), + [anon_sym_BSLASHgls] = ACTIONS(12251), + [anon_sym_BSLASHGls] = ACTIONS(12251), + [anon_sym_BSLASHGLS] = ACTIONS(12251), + [anon_sym_BSLASHglspl] = ACTIONS(12251), + [anon_sym_BSLASHGlspl] = ACTIONS(12251), + [anon_sym_BSLASHGLSpl] = ACTIONS(12251), + [anon_sym_BSLASHglsdisp] = ACTIONS(12251), + [anon_sym_BSLASHglslink] = ACTIONS(12251), + [anon_sym_BSLASHglstext] = ACTIONS(12251), + [anon_sym_BSLASHGlstext] = ACTIONS(12251), + [anon_sym_BSLASHGLStext] = ACTIONS(12251), + [anon_sym_BSLASHglsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12251), + [anon_sym_BSLASHglsplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSplural] = ACTIONS(12251), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHglsname] = ACTIONS(12251), + [anon_sym_BSLASHGlsname] = ACTIONS(12251), + [anon_sym_BSLASHGLSname] = ACTIONS(12251), + [anon_sym_BSLASHglssymbol] = ACTIONS(12251), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12251), + [anon_sym_BSLASHglsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12251), + [anon_sym_BSLASHglsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12251), + [anon_sym_BSLASHglsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12251), + [anon_sym_BSLASHglsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12251), + [anon_sym_BSLASHglsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12251), + [anon_sym_BSLASHnewacronym] = ACTIONS(12251), + [anon_sym_BSLASHacrshort] = ACTIONS(12251), + [anon_sym_BSLASHAcrshort] = ACTIONS(12251), + [anon_sym_BSLASHACRshort] = ACTIONS(12251), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12251), + [anon_sym_BSLASHacrlong] = ACTIONS(12251), + [anon_sym_BSLASHAcrlong] = ACTIONS(12251), + [anon_sym_BSLASHACRlong] = ACTIONS(12251), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12251), + [anon_sym_BSLASHacrfull] = ACTIONS(12251), + [anon_sym_BSLASHAcrfull] = ACTIONS(12251), + [anon_sym_BSLASHACRfull] = ACTIONS(12251), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12251), + [anon_sym_BSLASHacs] = ACTIONS(12251), + [anon_sym_BSLASHAcs] = ACTIONS(12251), + [anon_sym_BSLASHacsp] = ACTIONS(12251), + [anon_sym_BSLASHAcsp] = ACTIONS(12251), + [anon_sym_BSLASHacl] = ACTIONS(12251), + [anon_sym_BSLASHAcl] = ACTIONS(12251), + [anon_sym_BSLASHaclp] = ACTIONS(12251), + [anon_sym_BSLASHAclp] = ACTIONS(12251), + [anon_sym_BSLASHacf] = ACTIONS(12251), + [anon_sym_BSLASHAcf] = ACTIONS(12251), + [anon_sym_BSLASHacfp] = ACTIONS(12251), + [anon_sym_BSLASHAcfp] = ACTIONS(12251), + [anon_sym_BSLASHac] = ACTIONS(12251), + [anon_sym_BSLASHAc] = ACTIONS(12251), + [anon_sym_BSLASHacp] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12251), + [anon_sym_BSLASHcolor] = ACTIONS(12251), + [anon_sym_BSLASHcolorbox] = ACTIONS(12251), + [anon_sym_BSLASHtextcolor] = ACTIONS(12251), + [anon_sym_BSLASHpagecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12251), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12251), + }, + [1658] = { + [sym_generic_command_name] = ACTIONS(12259), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12259), + [anon_sym_BSLASHitem] = ACTIONS(12259), + [anon_sym_LBRACK] = ACTIONS(12257), + [anon_sym_RBRACK] = ACTIONS(12257), + [anon_sym_LBRACE] = ACTIONS(12257), + [anon_sym_RBRACE] = ACTIONS(12257), + [anon_sym_LPAREN] = ACTIONS(12257), + [anon_sym_COMMA] = ACTIONS(12257), + [anon_sym_EQ] = ACTIONS(12257), + [sym_word] = ACTIONS(12257), + [sym_param] = ACTIONS(12257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12257), + [anon_sym_DOLLAR] = ACTIONS(12259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12257), + [anon_sym_BSLASHbegin] = ACTIONS(12259), + [anon_sym_BSLASHcaption] = ACTIONS(12259), + [anon_sym_BSLASHcite] = ACTIONS(12259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCite] = ACTIONS(12259), + [anon_sym_BSLASHnocite] = ACTIONS(12259), + [anon_sym_BSLASHcitet] = ACTIONS(12259), + [anon_sym_BSLASHcitep] = ACTIONS(12259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteauthor] = ACTIONS(12259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitetitle] = ACTIONS(12259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteyear] = ACTIONS(12259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitedate] = ACTIONS(12259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteurl] = ACTIONS(12259), + [anon_sym_BSLASHfullcite] = ACTIONS(12259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12259), + [anon_sym_BSLASHcitealt] = ACTIONS(12259), + [anon_sym_BSLASHcitealp] = ACTIONS(12259), + [anon_sym_BSLASHcitetext] = ACTIONS(12259), + [anon_sym_BSLASHparencite] = ACTIONS(12259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHParencite] = ACTIONS(12259), + [anon_sym_BSLASHfootcite] = ACTIONS(12259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12259), + [anon_sym_BSLASHtextcite] = ACTIONS(12259), + [anon_sym_BSLASHTextcite] = ACTIONS(12259), + [anon_sym_BSLASHsmartcite] = ACTIONS(12259), + [anon_sym_BSLASHSmartcite] = ACTIONS(12259), + [anon_sym_BSLASHsupercite] = ACTIONS(12259), + [anon_sym_BSLASHautocite] = ACTIONS(12259), + [anon_sym_BSLASHAutocite] = ACTIONS(12259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHvolcite] = ACTIONS(12259), + [anon_sym_BSLASHVolcite] = ACTIONS(12259), + [anon_sym_BSLASHpvolcite] = ACTIONS(12259), + [anon_sym_BSLASHPvolcite] = ACTIONS(12259), + [anon_sym_BSLASHfvolcite] = ACTIONS(12259), + [anon_sym_BSLASHftvolcite] = ACTIONS(12259), + [anon_sym_BSLASHsvolcite] = ACTIONS(12259), + [anon_sym_BSLASHSvolcite] = ACTIONS(12259), + [anon_sym_BSLASHtvolcite] = ACTIONS(12259), + [anon_sym_BSLASHTvolcite] = ACTIONS(12259), + [anon_sym_BSLASHavolcite] = ACTIONS(12259), + [anon_sym_BSLASHAvolcite] = ACTIONS(12259), + [anon_sym_BSLASHnotecite] = ACTIONS(12259), + [anon_sym_BSLASHpnotecite] = ACTIONS(12259), + [anon_sym_BSLASHPnotecite] = ACTIONS(12259), + [anon_sym_BSLASHfnotecite] = ACTIONS(12259), + [anon_sym_BSLASHusepackage] = ACTIONS(12259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12259), + [anon_sym_BSLASHinclude] = ACTIONS(12259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12259), + [anon_sym_BSLASHinput] = ACTIONS(12259), + [anon_sym_BSLASHsubfile] = ACTIONS(12259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12259), + [anon_sym_BSLASHbibliography] = ACTIONS(12259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12259), + [anon_sym_BSLASHincludesvg] = ACTIONS(12259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12259), + [anon_sym_BSLASHimport] = ACTIONS(12259), + [anon_sym_BSLASHsubimport] = ACTIONS(12259), + [anon_sym_BSLASHinputfrom] = ACTIONS(12259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12259), + [anon_sym_BSLASHincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHlabel] = ACTIONS(12259), + [anon_sym_BSLASHref] = ACTIONS(12259), + [anon_sym_BSLASHvref] = ACTIONS(12259), + [anon_sym_BSLASHVref] = ACTIONS(12259), + [anon_sym_BSLASHautoref] = ACTIONS(12259), + [anon_sym_BSLASHpageref] = ACTIONS(12259), + [anon_sym_BSLASHcref] = ACTIONS(12259), + [anon_sym_BSLASHCref] = ACTIONS(12259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnameCref] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHlabelcref] = ACTIONS(12259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12259), + [anon_sym_BSLASHeqref] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange] = ACTIONS(12259), + [anon_sym_BSLASHCrefrange] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewlabel] = ACTIONS(12259), + [anon_sym_BSLASHnewcommand] = ACTIONS(12259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12259), + [anon_sym_BSLASHgls] = ACTIONS(12259), + [anon_sym_BSLASHGls] = ACTIONS(12259), + [anon_sym_BSLASHGLS] = ACTIONS(12259), + [anon_sym_BSLASHglspl] = ACTIONS(12259), + [anon_sym_BSLASHGlspl] = ACTIONS(12259), + [anon_sym_BSLASHGLSpl] = ACTIONS(12259), + [anon_sym_BSLASHglsdisp] = ACTIONS(12259), + [anon_sym_BSLASHglslink] = ACTIONS(12259), + [anon_sym_BSLASHglstext] = ACTIONS(12259), + [anon_sym_BSLASHGlstext] = ACTIONS(12259), + [anon_sym_BSLASHGLStext] = ACTIONS(12259), + [anon_sym_BSLASHglsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12259), + [anon_sym_BSLASHglsplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSplural] = ACTIONS(12259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHglsname] = ACTIONS(12259), + [anon_sym_BSLASHGlsname] = ACTIONS(12259), + [anon_sym_BSLASHGLSname] = ACTIONS(12259), + [anon_sym_BSLASHglssymbol] = ACTIONS(12259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12259), + [anon_sym_BSLASHglsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12259), + [anon_sym_BSLASHglsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12259), + [anon_sym_BSLASHglsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12259), + [anon_sym_BSLASHglsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12259), + [anon_sym_BSLASHglsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12259), + [anon_sym_BSLASHnewacronym] = ACTIONS(12259), + [anon_sym_BSLASHacrshort] = ACTIONS(12259), + [anon_sym_BSLASHAcrshort] = ACTIONS(12259), + [anon_sym_BSLASHACRshort] = ACTIONS(12259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12259), + [anon_sym_BSLASHacrlong] = ACTIONS(12259), + [anon_sym_BSLASHAcrlong] = ACTIONS(12259), + [anon_sym_BSLASHACRlong] = ACTIONS(12259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12259), + [anon_sym_BSLASHacrfull] = ACTIONS(12259), + [anon_sym_BSLASHAcrfull] = ACTIONS(12259), + [anon_sym_BSLASHACRfull] = ACTIONS(12259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12259), + [anon_sym_BSLASHacs] = ACTIONS(12259), + [anon_sym_BSLASHAcs] = ACTIONS(12259), + [anon_sym_BSLASHacsp] = ACTIONS(12259), + [anon_sym_BSLASHAcsp] = ACTIONS(12259), + [anon_sym_BSLASHacl] = ACTIONS(12259), + [anon_sym_BSLASHAcl] = ACTIONS(12259), + [anon_sym_BSLASHaclp] = ACTIONS(12259), + [anon_sym_BSLASHAclp] = ACTIONS(12259), + [anon_sym_BSLASHacf] = ACTIONS(12259), + [anon_sym_BSLASHAcf] = ACTIONS(12259), + [anon_sym_BSLASHacfp] = ACTIONS(12259), + [anon_sym_BSLASHAcfp] = ACTIONS(12259), + [anon_sym_BSLASHac] = ACTIONS(12259), + [anon_sym_BSLASHAc] = ACTIONS(12259), + [anon_sym_BSLASHacp] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12259), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12259), + [anon_sym_BSLASHcolor] = ACTIONS(12259), + [anon_sym_BSLASHcolorbox] = ACTIONS(12259), + [anon_sym_BSLASHtextcolor] = ACTIONS(12259), + [anon_sym_BSLASHpagecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12259), + }, + [1659] = { + [sym_generic_command_name] = ACTIONS(12263), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12263), + [anon_sym_BSLASHitem] = ACTIONS(12263), + [anon_sym_LBRACK] = ACTIONS(12261), + [anon_sym_RBRACK] = ACTIONS(12261), + [anon_sym_LBRACE] = ACTIONS(12261), + [anon_sym_RBRACE] = ACTIONS(12261), + [anon_sym_LPAREN] = ACTIONS(12261), + [anon_sym_COMMA] = ACTIONS(12261), + [anon_sym_EQ] = ACTIONS(12261), + [sym_word] = ACTIONS(12261), + [sym_param] = ACTIONS(12261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12261), + [anon_sym_DOLLAR] = ACTIONS(12263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12261), + [anon_sym_BSLASHbegin] = ACTIONS(12263), + [anon_sym_BSLASHcaption] = ACTIONS(12263), + [anon_sym_BSLASHcite] = ACTIONS(12263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCite] = ACTIONS(12263), + [anon_sym_BSLASHnocite] = ACTIONS(12263), + [anon_sym_BSLASHcitet] = ACTIONS(12263), + [anon_sym_BSLASHcitep] = ACTIONS(12263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteauthor] = ACTIONS(12263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitetitle] = ACTIONS(12263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteyear] = ACTIONS(12263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitedate] = ACTIONS(12263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteurl] = ACTIONS(12263), + [anon_sym_BSLASHfullcite] = ACTIONS(12263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12263), + [anon_sym_BSLASHcitealt] = ACTIONS(12263), + [anon_sym_BSLASHcitealp] = ACTIONS(12263), + [anon_sym_BSLASHcitetext] = ACTIONS(12263), + [anon_sym_BSLASHparencite] = ACTIONS(12263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHParencite] = ACTIONS(12263), + [anon_sym_BSLASHfootcite] = ACTIONS(12263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12263), + [anon_sym_BSLASHtextcite] = ACTIONS(12263), + [anon_sym_BSLASHTextcite] = ACTIONS(12263), + [anon_sym_BSLASHsmartcite] = ACTIONS(12263), + [anon_sym_BSLASHSmartcite] = ACTIONS(12263), + [anon_sym_BSLASHsupercite] = ACTIONS(12263), + [anon_sym_BSLASHautocite] = ACTIONS(12263), + [anon_sym_BSLASHAutocite] = ACTIONS(12263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHvolcite] = ACTIONS(12263), + [anon_sym_BSLASHVolcite] = ACTIONS(12263), + [anon_sym_BSLASHpvolcite] = ACTIONS(12263), + [anon_sym_BSLASHPvolcite] = ACTIONS(12263), + [anon_sym_BSLASHfvolcite] = ACTIONS(12263), + [anon_sym_BSLASHftvolcite] = ACTIONS(12263), + [anon_sym_BSLASHsvolcite] = ACTIONS(12263), + [anon_sym_BSLASHSvolcite] = ACTIONS(12263), + [anon_sym_BSLASHtvolcite] = ACTIONS(12263), + [anon_sym_BSLASHTvolcite] = ACTIONS(12263), + [anon_sym_BSLASHavolcite] = ACTIONS(12263), + [anon_sym_BSLASHAvolcite] = ACTIONS(12263), + [anon_sym_BSLASHnotecite] = ACTIONS(12263), + [anon_sym_BSLASHpnotecite] = ACTIONS(12263), + [anon_sym_BSLASHPnotecite] = ACTIONS(12263), + [anon_sym_BSLASHfnotecite] = ACTIONS(12263), + [anon_sym_BSLASHusepackage] = ACTIONS(12263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12263), + [anon_sym_BSLASHinclude] = ACTIONS(12263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12263), + [anon_sym_BSLASHinput] = ACTIONS(12263), + [anon_sym_BSLASHsubfile] = ACTIONS(12263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12263), + [anon_sym_BSLASHbibliography] = ACTIONS(12263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12263), + [anon_sym_BSLASHincludesvg] = ACTIONS(12263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12263), + [anon_sym_BSLASHimport] = ACTIONS(12263), + [anon_sym_BSLASHsubimport] = ACTIONS(12263), + [anon_sym_BSLASHinputfrom] = ACTIONS(12263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12263), + [anon_sym_BSLASHincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHlabel] = ACTIONS(12263), + [anon_sym_BSLASHref] = ACTIONS(12263), + [anon_sym_BSLASHvref] = ACTIONS(12263), + [anon_sym_BSLASHVref] = ACTIONS(12263), + [anon_sym_BSLASHautoref] = ACTIONS(12263), + [anon_sym_BSLASHpageref] = ACTIONS(12263), + [anon_sym_BSLASHcref] = ACTIONS(12263), + [anon_sym_BSLASHCref] = ACTIONS(12263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnameCref] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHlabelcref] = ACTIONS(12263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12263), + [anon_sym_BSLASHeqref] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange] = ACTIONS(12263), + [anon_sym_BSLASHCrefrange] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewlabel] = ACTIONS(12263), + [anon_sym_BSLASHnewcommand] = ACTIONS(12263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12263), + [anon_sym_BSLASHgls] = ACTIONS(12263), + [anon_sym_BSLASHGls] = ACTIONS(12263), + [anon_sym_BSLASHGLS] = ACTIONS(12263), + [anon_sym_BSLASHglspl] = ACTIONS(12263), + [anon_sym_BSLASHGlspl] = ACTIONS(12263), + [anon_sym_BSLASHGLSpl] = ACTIONS(12263), + [anon_sym_BSLASHglsdisp] = ACTIONS(12263), + [anon_sym_BSLASHglslink] = ACTIONS(12263), + [anon_sym_BSLASHglstext] = ACTIONS(12263), + [anon_sym_BSLASHGlstext] = ACTIONS(12263), + [anon_sym_BSLASHGLStext] = ACTIONS(12263), + [anon_sym_BSLASHglsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12263), + [anon_sym_BSLASHglsplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSplural] = ACTIONS(12263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHglsname] = ACTIONS(12263), + [anon_sym_BSLASHGlsname] = ACTIONS(12263), + [anon_sym_BSLASHGLSname] = ACTIONS(12263), + [anon_sym_BSLASHglssymbol] = ACTIONS(12263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12263), + [anon_sym_BSLASHglsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12263), + [anon_sym_BSLASHglsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12263), + [anon_sym_BSLASHglsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12263), + [anon_sym_BSLASHglsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12263), + [anon_sym_BSLASHglsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12263), + [anon_sym_BSLASHnewacronym] = ACTIONS(12263), + [anon_sym_BSLASHacrshort] = ACTIONS(12263), + [anon_sym_BSLASHAcrshort] = ACTIONS(12263), + [anon_sym_BSLASHACRshort] = ACTIONS(12263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12263), + [anon_sym_BSLASHacrlong] = ACTIONS(12263), + [anon_sym_BSLASHAcrlong] = ACTIONS(12263), + [anon_sym_BSLASHACRlong] = ACTIONS(12263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12263), + [anon_sym_BSLASHacrfull] = ACTIONS(12263), + [anon_sym_BSLASHAcrfull] = ACTIONS(12263), + [anon_sym_BSLASHACRfull] = ACTIONS(12263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12263), + [anon_sym_BSLASHacs] = ACTIONS(12263), + [anon_sym_BSLASHAcs] = ACTIONS(12263), + [anon_sym_BSLASHacsp] = ACTIONS(12263), + [anon_sym_BSLASHAcsp] = ACTIONS(12263), + [anon_sym_BSLASHacl] = ACTIONS(12263), + [anon_sym_BSLASHAcl] = ACTIONS(12263), + [anon_sym_BSLASHaclp] = ACTIONS(12263), + [anon_sym_BSLASHAclp] = ACTIONS(12263), + [anon_sym_BSLASHacf] = ACTIONS(12263), + [anon_sym_BSLASHAcf] = ACTIONS(12263), + [anon_sym_BSLASHacfp] = ACTIONS(12263), + [anon_sym_BSLASHAcfp] = ACTIONS(12263), + [anon_sym_BSLASHac] = ACTIONS(12263), + [anon_sym_BSLASHAc] = ACTIONS(12263), + [anon_sym_BSLASHacp] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12263), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12263), + [anon_sym_BSLASHcolor] = ACTIONS(12263), + [anon_sym_BSLASHcolorbox] = ACTIONS(12263), + [anon_sym_BSLASHtextcolor] = ACTIONS(12263), + [anon_sym_BSLASHpagecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12263), + }, + [1660] = { + [sym_generic_command_name] = ACTIONS(12319), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12319), + [anon_sym_BSLASHitem] = ACTIONS(12319), + [anon_sym_LBRACK] = ACTIONS(12317), + [anon_sym_RBRACK] = ACTIONS(12317), + [anon_sym_LBRACE] = ACTIONS(12317), + [anon_sym_RBRACE] = ACTIONS(12317), + [anon_sym_LPAREN] = ACTIONS(12317), + [anon_sym_COMMA] = ACTIONS(12317), + [anon_sym_EQ] = ACTIONS(12317), + [sym_word] = ACTIONS(12317), + [sym_param] = ACTIONS(12317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12317), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12317), + [anon_sym_DOLLAR] = ACTIONS(12319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12317), + [anon_sym_BSLASHbegin] = ACTIONS(12319), + [anon_sym_BSLASHcaption] = ACTIONS(12319), + [anon_sym_BSLASHcite] = ACTIONS(12319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCite] = ACTIONS(12319), + [anon_sym_BSLASHnocite] = ACTIONS(12319), + [anon_sym_BSLASHcitet] = ACTIONS(12319), + [anon_sym_BSLASHcitep] = ACTIONS(12319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteauthor] = ACTIONS(12319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitetitle] = ACTIONS(12319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteyear] = ACTIONS(12319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitedate] = ACTIONS(12319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteurl] = ACTIONS(12319), + [anon_sym_BSLASHfullcite] = ACTIONS(12319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12319), + [anon_sym_BSLASHcitealt] = ACTIONS(12319), + [anon_sym_BSLASHcitealp] = ACTIONS(12319), + [anon_sym_BSLASHcitetext] = ACTIONS(12319), + [anon_sym_BSLASHparencite] = ACTIONS(12319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHParencite] = ACTIONS(12319), + [anon_sym_BSLASHfootcite] = ACTIONS(12319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12319), + [anon_sym_BSLASHtextcite] = ACTIONS(12319), + [anon_sym_BSLASHTextcite] = ACTIONS(12319), + [anon_sym_BSLASHsmartcite] = ACTIONS(12319), + [anon_sym_BSLASHSmartcite] = ACTIONS(12319), + [anon_sym_BSLASHsupercite] = ACTIONS(12319), + [anon_sym_BSLASHautocite] = ACTIONS(12319), + [anon_sym_BSLASHAutocite] = ACTIONS(12319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHvolcite] = ACTIONS(12319), + [anon_sym_BSLASHVolcite] = ACTIONS(12319), + [anon_sym_BSLASHpvolcite] = ACTIONS(12319), + [anon_sym_BSLASHPvolcite] = ACTIONS(12319), + [anon_sym_BSLASHfvolcite] = ACTIONS(12319), + [anon_sym_BSLASHftvolcite] = ACTIONS(12319), + [anon_sym_BSLASHsvolcite] = ACTIONS(12319), + [anon_sym_BSLASHSvolcite] = ACTIONS(12319), + [anon_sym_BSLASHtvolcite] = ACTIONS(12319), + [anon_sym_BSLASHTvolcite] = ACTIONS(12319), + [anon_sym_BSLASHavolcite] = ACTIONS(12319), + [anon_sym_BSLASHAvolcite] = ACTIONS(12319), + [anon_sym_BSLASHnotecite] = ACTIONS(12319), + [anon_sym_BSLASHpnotecite] = ACTIONS(12319), + [anon_sym_BSLASHPnotecite] = ACTIONS(12319), + [anon_sym_BSLASHfnotecite] = ACTIONS(12319), + [anon_sym_BSLASHusepackage] = ACTIONS(12319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12319), + [anon_sym_BSLASHinclude] = ACTIONS(12319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12319), + [anon_sym_BSLASHinput] = ACTIONS(12319), + [anon_sym_BSLASHsubfile] = ACTIONS(12319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12319), + [anon_sym_BSLASHbibliography] = ACTIONS(12319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12319), + [anon_sym_BSLASHincludesvg] = ACTIONS(12319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12319), + [anon_sym_BSLASHimport] = ACTIONS(12319), + [anon_sym_BSLASHsubimport] = ACTIONS(12319), + [anon_sym_BSLASHinputfrom] = ACTIONS(12319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12319), + [anon_sym_BSLASHincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHlabel] = ACTIONS(12319), + [anon_sym_BSLASHref] = ACTIONS(12319), + [anon_sym_BSLASHvref] = ACTIONS(12319), + [anon_sym_BSLASHVref] = ACTIONS(12319), + [anon_sym_BSLASHautoref] = ACTIONS(12319), + [anon_sym_BSLASHpageref] = ACTIONS(12319), + [anon_sym_BSLASHcref] = ACTIONS(12319), + [anon_sym_BSLASHCref] = ACTIONS(12319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnameCref] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHlabelcref] = ACTIONS(12319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12319), + [anon_sym_BSLASHeqref] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange] = ACTIONS(12319), + [anon_sym_BSLASHCrefrange] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewlabel] = ACTIONS(12319), + [anon_sym_BSLASHnewcommand] = ACTIONS(12319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12319), + [anon_sym_BSLASHgls] = ACTIONS(12319), + [anon_sym_BSLASHGls] = ACTIONS(12319), + [anon_sym_BSLASHGLS] = ACTIONS(12319), + [anon_sym_BSLASHglspl] = ACTIONS(12319), + [anon_sym_BSLASHGlspl] = ACTIONS(12319), + [anon_sym_BSLASHGLSpl] = ACTIONS(12319), + [anon_sym_BSLASHglsdisp] = ACTIONS(12319), + [anon_sym_BSLASHglslink] = ACTIONS(12319), + [anon_sym_BSLASHglstext] = ACTIONS(12319), + [anon_sym_BSLASHGlstext] = ACTIONS(12319), + [anon_sym_BSLASHGLStext] = ACTIONS(12319), + [anon_sym_BSLASHglsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12319), + [anon_sym_BSLASHglsplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSplural] = ACTIONS(12319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHglsname] = ACTIONS(12319), + [anon_sym_BSLASHGlsname] = ACTIONS(12319), + [anon_sym_BSLASHGLSname] = ACTIONS(12319), + [anon_sym_BSLASHglssymbol] = ACTIONS(12319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12319), + [anon_sym_BSLASHglsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12319), + [anon_sym_BSLASHglsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12319), + [anon_sym_BSLASHglsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12319), + [anon_sym_BSLASHglsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12319), + [anon_sym_BSLASHglsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12319), + [anon_sym_BSLASHnewacronym] = ACTIONS(12319), + [anon_sym_BSLASHacrshort] = ACTIONS(12319), + [anon_sym_BSLASHAcrshort] = ACTIONS(12319), + [anon_sym_BSLASHACRshort] = ACTIONS(12319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12319), + [anon_sym_BSLASHacrlong] = ACTIONS(12319), + [anon_sym_BSLASHAcrlong] = ACTIONS(12319), + [anon_sym_BSLASHACRlong] = ACTIONS(12319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12319), + [anon_sym_BSLASHacrfull] = ACTIONS(12319), + [anon_sym_BSLASHAcrfull] = ACTIONS(12319), + [anon_sym_BSLASHACRfull] = ACTIONS(12319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12319), + [anon_sym_BSLASHacs] = ACTIONS(12319), + [anon_sym_BSLASHAcs] = ACTIONS(12319), + [anon_sym_BSLASHacsp] = ACTIONS(12319), + [anon_sym_BSLASHAcsp] = ACTIONS(12319), + [anon_sym_BSLASHacl] = ACTIONS(12319), + [anon_sym_BSLASHAcl] = ACTIONS(12319), + [anon_sym_BSLASHaclp] = ACTIONS(12319), + [anon_sym_BSLASHAclp] = ACTIONS(12319), + [anon_sym_BSLASHacf] = ACTIONS(12319), + [anon_sym_BSLASHAcf] = ACTIONS(12319), + [anon_sym_BSLASHacfp] = ACTIONS(12319), + [anon_sym_BSLASHAcfp] = ACTIONS(12319), + [anon_sym_BSLASHac] = ACTIONS(12319), + [anon_sym_BSLASHAc] = ACTIONS(12319), + [anon_sym_BSLASHacp] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12319), + [anon_sym_BSLASHcolor] = ACTIONS(12319), + [anon_sym_BSLASHcolorbox] = ACTIONS(12319), + [anon_sym_BSLASHtextcolor] = ACTIONS(12319), + [anon_sym_BSLASHpagecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12319), + }, + [1661] = { + [sym_generic_command_name] = ACTIONS(12267), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12267), + [anon_sym_BSLASHitem] = ACTIONS(12267), + [anon_sym_LBRACK] = ACTIONS(12265), + [anon_sym_RBRACK] = ACTIONS(12265), + [anon_sym_LBRACE] = ACTIONS(12265), + [anon_sym_RBRACE] = ACTIONS(12265), + [anon_sym_LPAREN] = ACTIONS(12265), + [anon_sym_COMMA] = ACTIONS(12265), + [anon_sym_EQ] = ACTIONS(12265), + [sym_word] = ACTIONS(12265), + [sym_param] = ACTIONS(12265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12265), + [anon_sym_DOLLAR] = ACTIONS(12267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12265), + [anon_sym_BSLASHbegin] = ACTIONS(12267), + [anon_sym_BSLASHcaption] = ACTIONS(12267), + [anon_sym_BSLASHcite] = ACTIONS(12267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCite] = ACTIONS(12267), + [anon_sym_BSLASHnocite] = ACTIONS(12267), + [anon_sym_BSLASHcitet] = ACTIONS(12267), + [anon_sym_BSLASHcitep] = ACTIONS(12267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteauthor] = ACTIONS(12267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitetitle] = ACTIONS(12267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteyear] = ACTIONS(12267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitedate] = ACTIONS(12267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteurl] = ACTIONS(12267), + [anon_sym_BSLASHfullcite] = ACTIONS(12267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12267), + [anon_sym_BSLASHcitealt] = ACTIONS(12267), + [anon_sym_BSLASHcitealp] = ACTIONS(12267), + [anon_sym_BSLASHcitetext] = ACTIONS(12267), + [anon_sym_BSLASHparencite] = ACTIONS(12267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHParencite] = ACTIONS(12267), + [anon_sym_BSLASHfootcite] = ACTIONS(12267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12267), + [anon_sym_BSLASHtextcite] = ACTIONS(12267), + [anon_sym_BSLASHTextcite] = ACTIONS(12267), + [anon_sym_BSLASHsmartcite] = ACTIONS(12267), + [anon_sym_BSLASHSmartcite] = ACTIONS(12267), + [anon_sym_BSLASHsupercite] = ACTIONS(12267), + [anon_sym_BSLASHautocite] = ACTIONS(12267), + [anon_sym_BSLASHAutocite] = ACTIONS(12267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHvolcite] = ACTIONS(12267), + [anon_sym_BSLASHVolcite] = ACTIONS(12267), + [anon_sym_BSLASHpvolcite] = ACTIONS(12267), + [anon_sym_BSLASHPvolcite] = ACTIONS(12267), + [anon_sym_BSLASHfvolcite] = ACTIONS(12267), + [anon_sym_BSLASHftvolcite] = ACTIONS(12267), + [anon_sym_BSLASHsvolcite] = ACTIONS(12267), + [anon_sym_BSLASHSvolcite] = ACTIONS(12267), + [anon_sym_BSLASHtvolcite] = ACTIONS(12267), + [anon_sym_BSLASHTvolcite] = ACTIONS(12267), + [anon_sym_BSLASHavolcite] = ACTIONS(12267), + [anon_sym_BSLASHAvolcite] = ACTIONS(12267), + [anon_sym_BSLASHnotecite] = ACTIONS(12267), + [anon_sym_BSLASHpnotecite] = ACTIONS(12267), + [anon_sym_BSLASHPnotecite] = ACTIONS(12267), + [anon_sym_BSLASHfnotecite] = ACTIONS(12267), + [anon_sym_BSLASHusepackage] = ACTIONS(12267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12267), + [anon_sym_BSLASHinclude] = ACTIONS(12267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12267), + [anon_sym_BSLASHinput] = ACTIONS(12267), + [anon_sym_BSLASHsubfile] = ACTIONS(12267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12267), + [anon_sym_BSLASHbibliography] = ACTIONS(12267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12267), + [anon_sym_BSLASHincludesvg] = ACTIONS(12267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12267), + [anon_sym_BSLASHimport] = ACTIONS(12267), + [anon_sym_BSLASHsubimport] = ACTIONS(12267), + [anon_sym_BSLASHinputfrom] = ACTIONS(12267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12267), + [anon_sym_BSLASHincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHlabel] = ACTIONS(12267), + [anon_sym_BSLASHref] = ACTIONS(12267), + [anon_sym_BSLASHvref] = ACTIONS(12267), + [anon_sym_BSLASHVref] = ACTIONS(12267), + [anon_sym_BSLASHautoref] = ACTIONS(12267), + [anon_sym_BSLASHpageref] = ACTIONS(12267), + [anon_sym_BSLASHcref] = ACTIONS(12267), + [anon_sym_BSLASHCref] = ACTIONS(12267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnameCref] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHlabelcref] = ACTIONS(12267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12267), + [anon_sym_BSLASHeqref] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange] = ACTIONS(12267), + [anon_sym_BSLASHCrefrange] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewlabel] = ACTIONS(12267), + [anon_sym_BSLASHnewcommand] = ACTIONS(12267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12267), + [anon_sym_BSLASHgls] = ACTIONS(12267), + [anon_sym_BSLASHGls] = ACTIONS(12267), + [anon_sym_BSLASHGLS] = ACTIONS(12267), + [anon_sym_BSLASHglspl] = ACTIONS(12267), + [anon_sym_BSLASHGlspl] = ACTIONS(12267), + [anon_sym_BSLASHGLSpl] = ACTIONS(12267), + [anon_sym_BSLASHglsdisp] = ACTIONS(12267), + [anon_sym_BSLASHglslink] = ACTIONS(12267), + [anon_sym_BSLASHglstext] = ACTIONS(12267), + [anon_sym_BSLASHGlstext] = ACTIONS(12267), + [anon_sym_BSLASHGLStext] = ACTIONS(12267), + [anon_sym_BSLASHglsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12267), + [anon_sym_BSLASHglsplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSplural] = ACTIONS(12267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHglsname] = ACTIONS(12267), + [anon_sym_BSLASHGlsname] = ACTIONS(12267), + [anon_sym_BSLASHGLSname] = ACTIONS(12267), + [anon_sym_BSLASHglssymbol] = ACTIONS(12267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12267), + [anon_sym_BSLASHglsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12267), + [anon_sym_BSLASHglsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12267), + [anon_sym_BSLASHglsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12267), + [anon_sym_BSLASHglsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12267), + [anon_sym_BSLASHglsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12267), + [anon_sym_BSLASHnewacronym] = ACTIONS(12267), + [anon_sym_BSLASHacrshort] = ACTIONS(12267), + [anon_sym_BSLASHAcrshort] = ACTIONS(12267), + [anon_sym_BSLASHACRshort] = ACTIONS(12267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12267), + [anon_sym_BSLASHacrlong] = ACTIONS(12267), + [anon_sym_BSLASHAcrlong] = ACTIONS(12267), + [anon_sym_BSLASHACRlong] = ACTIONS(12267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12267), + [anon_sym_BSLASHacrfull] = ACTIONS(12267), + [anon_sym_BSLASHAcrfull] = ACTIONS(12267), + [anon_sym_BSLASHACRfull] = ACTIONS(12267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12267), + [anon_sym_BSLASHacs] = ACTIONS(12267), + [anon_sym_BSLASHAcs] = ACTIONS(12267), + [anon_sym_BSLASHacsp] = ACTIONS(12267), + [anon_sym_BSLASHAcsp] = ACTIONS(12267), + [anon_sym_BSLASHacl] = ACTIONS(12267), + [anon_sym_BSLASHAcl] = ACTIONS(12267), + [anon_sym_BSLASHaclp] = ACTIONS(12267), + [anon_sym_BSLASHAclp] = ACTIONS(12267), + [anon_sym_BSLASHacf] = ACTIONS(12267), + [anon_sym_BSLASHAcf] = ACTIONS(12267), + [anon_sym_BSLASHacfp] = ACTIONS(12267), + [anon_sym_BSLASHAcfp] = ACTIONS(12267), + [anon_sym_BSLASHac] = ACTIONS(12267), + [anon_sym_BSLASHAc] = ACTIONS(12267), + [anon_sym_BSLASHacp] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12267), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12267), + [anon_sym_BSLASHcolor] = ACTIONS(12267), + [anon_sym_BSLASHcolorbox] = ACTIONS(12267), + [anon_sym_BSLASHtextcolor] = ACTIONS(12267), + [anon_sym_BSLASHpagecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12267), + }, + [1662] = { + [sym_generic_command_name] = ACTIONS(12271), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12271), + [anon_sym_BSLASHitem] = ACTIONS(12271), + [anon_sym_LBRACK] = ACTIONS(12269), + [anon_sym_RBRACK] = ACTIONS(12269), + [anon_sym_LBRACE] = ACTIONS(12269), + [anon_sym_RBRACE] = ACTIONS(12269), + [anon_sym_LPAREN] = ACTIONS(12269), + [anon_sym_COMMA] = ACTIONS(12269), + [anon_sym_EQ] = ACTIONS(12269), + [sym_word] = ACTIONS(12269), + [sym_param] = ACTIONS(12269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12269), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12269), + [anon_sym_DOLLAR] = ACTIONS(12271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12269), + [anon_sym_BSLASHbegin] = ACTIONS(12271), + [anon_sym_BSLASHcaption] = ACTIONS(12271), + [anon_sym_BSLASHcite] = ACTIONS(12271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCite] = ACTIONS(12271), + [anon_sym_BSLASHnocite] = ACTIONS(12271), + [anon_sym_BSLASHcitet] = ACTIONS(12271), + [anon_sym_BSLASHcitep] = ACTIONS(12271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteauthor] = ACTIONS(12271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitetitle] = ACTIONS(12271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteyear] = ACTIONS(12271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitedate] = ACTIONS(12271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteurl] = ACTIONS(12271), + [anon_sym_BSLASHfullcite] = ACTIONS(12271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12271), + [anon_sym_BSLASHcitealt] = ACTIONS(12271), + [anon_sym_BSLASHcitealp] = ACTIONS(12271), + [anon_sym_BSLASHcitetext] = ACTIONS(12271), + [anon_sym_BSLASHparencite] = ACTIONS(12271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHParencite] = ACTIONS(12271), + [anon_sym_BSLASHfootcite] = ACTIONS(12271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12271), + [anon_sym_BSLASHtextcite] = ACTIONS(12271), + [anon_sym_BSLASHTextcite] = ACTIONS(12271), + [anon_sym_BSLASHsmartcite] = ACTIONS(12271), + [anon_sym_BSLASHSmartcite] = ACTIONS(12271), + [anon_sym_BSLASHsupercite] = ACTIONS(12271), + [anon_sym_BSLASHautocite] = ACTIONS(12271), + [anon_sym_BSLASHAutocite] = ACTIONS(12271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHvolcite] = ACTIONS(12271), + [anon_sym_BSLASHVolcite] = ACTIONS(12271), + [anon_sym_BSLASHpvolcite] = ACTIONS(12271), + [anon_sym_BSLASHPvolcite] = ACTIONS(12271), + [anon_sym_BSLASHfvolcite] = ACTIONS(12271), + [anon_sym_BSLASHftvolcite] = ACTIONS(12271), + [anon_sym_BSLASHsvolcite] = ACTIONS(12271), + [anon_sym_BSLASHSvolcite] = ACTIONS(12271), + [anon_sym_BSLASHtvolcite] = ACTIONS(12271), + [anon_sym_BSLASHTvolcite] = ACTIONS(12271), + [anon_sym_BSLASHavolcite] = ACTIONS(12271), + [anon_sym_BSLASHAvolcite] = ACTIONS(12271), + [anon_sym_BSLASHnotecite] = ACTIONS(12271), + [anon_sym_BSLASHpnotecite] = ACTIONS(12271), + [anon_sym_BSLASHPnotecite] = ACTIONS(12271), + [anon_sym_BSLASHfnotecite] = ACTIONS(12271), + [anon_sym_BSLASHusepackage] = ACTIONS(12271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12271), + [anon_sym_BSLASHinclude] = ACTIONS(12271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12271), + [anon_sym_BSLASHinput] = ACTIONS(12271), + [anon_sym_BSLASHsubfile] = ACTIONS(12271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12271), + [anon_sym_BSLASHbibliography] = ACTIONS(12271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12271), + [anon_sym_BSLASHincludesvg] = ACTIONS(12271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12271), + [anon_sym_BSLASHimport] = ACTIONS(12271), + [anon_sym_BSLASHsubimport] = ACTIONS(12271), + [anon_sym_BSLASHinputfrom] = ACTIONS(12271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12271), + [anon_sym_BSLASHincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHlabel] = ACTIONS(12271), + [anon_sym_BSLASHref] = ACTIONS(12271), + [anon_sym_BSLASHvref] = ACTIONS(12271), + [anon_sym_BSLASHVref] = ACTIONS(12271), + [anon_sym_BSLASHautoref] = ACTIONS(12271), + [anon_sym_BSLASHpageref] = ACTIONS(12271), + [anon_sym_BSLASHcref] = ACTIONS(12271), + [anon_sym_BSLASHCref] = ACTIONS(12271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnameCref] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHlabelcref] = ACTIONS(12271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12271), + [anon_sym_BSLASHeqref] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange] = ACTIONS(12271), + [anon_sym_BSLASHCrefrange] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewlabel] = ACTIONS(12271), + [anon_sym_BSLASHnewcommand] = ACTIONS(12271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12271), + [anon_sym_BSLASHgls] = ACTIONS(12271), + [anon_sym_BSLASHGls] = ACTIONS(12271), + [anon_sym_BSLASHGLS] = ACTIONS(12271), + [anon_sym_BSLASHglspl] = ACTIONS(12271), + [anon_sym_BSLASHGlspl] = ACTIONS(12271), + [anon_sym_BSLASHGLSpl] = ACTIONS(12271), + [anon_sym_BSLASHglsdisp] = ACTIONS(12271), + [anon_sym_BSLASHglslink] = ACTIONS(12271), + [anon_sym_BSLASHglstext] = ACTIONS(12271), + [anon_sym_BSLASHGlstext] = ACTIONS(12271), + [anon_sym_BSLASHGLStext] = ACTIONS(12271), + [anon_sym_BSLASHglsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12271), + [anon_sym_BSLASHglsplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSplural] = ACTIONS(12271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHglsname] = ACTIONS(12271), + [anon_sym_BSLASHGlsname] = ACTIONS(12271), + [anon_sym_BSLASHGLSname] = ACTIONS(12271), + [anon_sym_BSLASHglssymbol] = ACTIONS(12271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12271), + [anon_sym_BSLASHglsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12271), + [anon_sym_BSLASHglsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12271), + [anon_sym_BSLASHglsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12271), + [anon_sym_BSLASHglsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12271), + [anon_sym_BSLASHglsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12271), + [anon_sym_BSLASHnewacronym] = ACTIONS(12271), + [anon_sym_BSLASHacrshort] = ACTIONS(12271), + [anon_sym_BSLASHAcrshort] = ACTIONS(12271), + [anon_sym_BSLASHACRshort] = ACTIONS(12271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12271), + [anon_sym_BSLASHacrlong] = ACTIONS(12271), + [anon_sym_BSLASHAcrlong] = ACTIONS(12271), + [anon_sym_BSLASHACRlong] = ACTIONS(12271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12271), + [anon_sym_BSLASHacrfull] = ACTIONS(12271), + [anon_sym_BSLASHAcrfull] = ACTIONS(12271), + [anon_sym_BSLASHACRfull] = ACTIONS(12271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12271), + [anon_sym_BSLASHacs] = ACTIONS(12271), + [anon_sym_BSLASHAcs] = ACTIONS(12271), + [anon_sym_BSLASHacsp] = ACTIONS(12271), + [anon_sym_BSLASHAcsp] = ACTIONS(12271), + [anon_sym_BSLASHacl] = ACTIONS(12271), + [anon_sym_BSLASHAcl] = ACTIONS(12271), + [anon_sym_BSLASHaclp] = ACTIONS(12271), + [anon_sym_BSLASHAclp] = ACTIONS(12271), + [anon_sym_BSLASHacf] = ACTIONS(12271), + [anon_sym_BSLASHAcf] = ACTIONS(12271), + [anon_sym_BSLASHacfp] = ACTIONS(12271), + [anon_sym_BSLASHAcfp] = ACTIONS(12271), + [anon_sym_BSLASHac] = ACTIONS(12271), + [anon_sym_BSLASHAc] = ACTIONS(12271), + [anon_sym_BSLASHacp] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12271), + [anon_sym_BSLASHcolor] = ACTIONS(12271), + [anon_sym_BSLASHcolorbox] = ACTIONS(12271), + [anon_sym_BSLASHtextcolor] = ACTIONS(12271), + [anon_sym_BSLASHpagecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12271), + }, + [1663] = { + [sym_generic_command_name] = ACTIONS(12279), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12279), + [anon_sym_BSLASHitem] = ACTIONS(12279), + [anon_sym_LBRACK] = ACTIONS(12277), + [anon_sym_RBRACK] = ACTIONS(12277), + [anon_sym_LBRACE] = ACTIONS(12277), + [anon_sym_RBRACE] = ACTIONS(12277), + [anon_sym_LPAREN] = ACTIONS(12277), + [anon_sym_COMMA] = ACTIONS(12277), + [anon_sym_EQ] = ACTIONS(12277), + [sym_word] = ACTIONS(12277), + [sym_param] = ACTIONS(12277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12277), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12277), + [anon_sym_DOLLAR] = ACTIONS(12279), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12277), + [anon_sym_BSLASHbegin] = ACTIONS(12279), + [anon_sym_BSLASHcaption] = ACTIONS(12279), + [anon_sym_BSLASHcite] = ACTIONS(12279), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCite] = ACTIONS(12279), + [anon_sym_BSLASHnocite] = ACTIONS(12279), + [anon_sym_BSLASHcitet] = ACTIONS(12279), + [anon_sym_BSLASHcitep] = ACTIONS(12279), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteauthor] = ACTIONS(12279), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12279), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitetitle] = ACTIONS(12279), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteyear] = ACTIONS(12279), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitedate] = ACTIONS(12279), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteurl] = ACTIONS(12279), + [anon_sym_BSLASHfullcite] = ACTIONS(12279), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12279), + [anon_sym_BSLASHcitealt] = ACTIONS(12279), + [anon_sym_BSLASHcitealp] = ACTIONS(12279), + [anon_sym_BSLASHcitetext] = ACTIONS(12279), + [anon_sym_BSLASHparencite] = ACTIONS(12279), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHParencite] = ACTIONS(12279), + [anon_sym_BSLASHfootcite] = ACTIONS(12279), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12279), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12279), + [anon_sym_BSLASHtextcite] = ACTIONS(12279), + [anon_sym_BSLASHTextcite] = ACTIONS(12279), + [anon_sym_BSLASHsmartcite] = ACTIONS(12279), + [anon_sym_BSLASHSmartcite] = ACTIONS(12279), + [anon_sym_BSLASHsupercite] = ACTIONS(12279), + [anon_sym_BSLASHautocite] = ACTIONS(12279), + [anon_sym_BSLASHAutocite] = ACTIONS(12279), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHvolcite] = ACTIONS(12279), + [anon_sym_BSLASHVolcite] = ACTIONS(12279), + [anon_sym_BSLASHpvolcite] = ACTIONS(12279), + [anon_sym_BSLASHPvolcite] = ACTIONS(12279), + [anon_sym_BSLASHfvolcite] = ACTIONS(12279), + [anon_sym_BSLASHftvolcite] = ACTIONS(12279), + [anon_sym_BSLASHsvolcite] = ACTIONS(12279), + [anon_sym_BSLASHSvolcite] = ACTIONS(12279), + [anon_sym_BSLASHtvolcite] = ACTIONS(12279), + [anon_sym_BSLASHTvolcite] = ACTIONS(12279), + [anon_sym_BSLASHavolcite] = ACTIONS(12279), + [anon_sym_BSLASHAvolcite] = ACTIONS(12279), + [anon_sym_BSLASHnotecite] = ACTIONS(12279), + [anon_sym_BSLASHpnotecite] = ACTIONS(12279), + [anon_sym_BSLASHPnotecite] = ACTIONS(12279), + [anon_sym_BSLASHfnotecite] = ACTIONS(12279), + [anon_sym_BSLASHusepackage] = ACTIONS(12279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12279), + [anon_sym_BSLASHinclude] = ACTIONS(12279), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12279), + [anon_sym_BSLASHinput] = ACTIONS(12279), + [anon_sym_BSLASHsubfile] = ACTIONS(12279), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12279), + [anon_sym_BSLASHbibliography] = ACTIONS(12279), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12279), + [anon_sym_BSLASHincludesvg] = ACTIONS(12279), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12279), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12279), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12279), + [anon_sym_BSLASHimport] = ACTIONS(12279), + [anon_sym_BSLASHsubimport] = ACTIONS(12279), + [anon_sym_BSLASHinputfrom] = ACTIONS(12279), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12279), + [anon_sym_BSLASHincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHlabel] = ACTIONS(12279), + [anon_sym_BSLASHref] = ACTIONS(12279), + [anon_sym_BSLASHvref] = ACTIONS(12279), + [anon_sym_BSLASHVref] = ACTIONS(12279), + [anon_sym_BSLASHautoref] = ACTIONS(12279), + [anon_sym_BSLASHpageref] = ACTIONS(12279), + [anon_sym_BSLASHcref] = ACTIONS(12279), + [anon_sym_BSLASHCref] = ACTIONS(12279), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnameCref] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHlabelcref] = ACTIONS(12279), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12279), + [anon_sym_BSLASHeqref] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange] = ACTIONS(12279), + [anon_sym_BSLASHCrefrange] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewlabel] = ACTIONS(12279), + [anon_sym_BSLASHnewcommand] = ACTIONS(12279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12279), + [anon_sym_BSLASHgls] = ACTIONS(12279), + [anon_sym_BSLASHGls] = ACTIONS(12279), + [anon_sym_BSLASHGLS] = ACTIONS(12279), + [anon_sym_BSLASHglspl] = ACTIONS(12279), + [anon_sym_BSLASHGlspl] = ACTIONS(12279), + [anon_sym_BSLASHGLSpl] = ACTIONS(12279), + [anon_sym_BSLASHglsdisp] = ACTIONS(12279), + [anon_sym_BSLASHglslink] = ACTIONS(12279), + [anon_sym_BSLASHglstext] = ACTIONS(12279), + [anon_sym_BSLASHGlstext] = ACTIONS(12279), + [anon_sym_BSLASHGLStext] = ACTIONS(12279), + [anon_sym_BSLASHglsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12279), + [anon_sym_BSLASHglsplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSplural] = ACTIONS(12279), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHglsname] = ACTIONS(12279), + [anon_sym_BSLASHGlsname] = ACTIONS(12279), + [anon_sym_BSLASHGLSname] = ACTIONS(12279), + [anon_sym_BSLASHglssymbol] = ACTIONS(12279), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12279), + [anon_sym_BSLASHglsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12279), + [anon_sym_BSLASHglsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12279), + [anon_sym_BSLASHglsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12279), + [anon_sym_BSLASHglsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12279), + [anon_sym_BSLASHglsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12279), + [anon_sym_BSLASHnewacronym] = ACTIONS(12279), + [anon_sym_BSLASHacrshort] = ACTIONS(12279), + [anon_sym_BSLASHAcrshort] = ACTIONS(12279), + [anon_sym_BSLASHACRshort] = ACTIONS(12279), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12279), + [anon_sym_BSLASHacrlong] = ACTIONS(12279), + [anon_sym_BSLASHAcrlong] = ACTIONS(12279), + [anon_sym_BSLASHACRlong] = ACTIONS(12279), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12279), + [anon_sym_BSLASHacrfull] = ACTIONS(12279), + [anon_sym_BSLASHAcrfull] = ACTIONS(12279), + [anon_sym_BSLASHACRfull] = ACTIONS(12279), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12279), + [anon_sym_BSLASHacs] = ACTIONS(12279), + [anon_sym_BSLASHAcs] = ACTIONS(12279), + [anon_sym_BSLASHacsp] = ACTIONS(12279), + [anon_sym_BSLASHAcsp] = ACTIONS(12279), + [anon_sym_BSLASHacl] = ACTIONS(12279), + [anon_sym_BSLASHAcl] = ACTIONS(12279), + [anon_sym_BSLASHaclp] = ACTIONS(12279), + [anon_sym_BSLASHAclp] = ACTIONS(12279), + [anon_sym_BSLASHacf] = ACTIONS(12279), + [anon_sym_BSLASHAcf] = ACTIONS(12279), + [anon_sym_BSLASHacfp] = ACTIONS(12279), + [anon_sym_BSLASHAcfp] = ACTIONS(12279), + [anon_sym_BSLASHac] = ACTIONS(12279), + [anon_sym_BSLASHAc] = ACTIONS(12279), + [anon_sym_BSLASHacp] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12279), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12279), + [anon_sym_BSLASHcolor] = ACTIONS(12279), + [anon_sym_BSLASHcolorbox] = ACTIONS(12279), + [anon_sym_BSLASHtextcolor] = ACTIONS(12279), + [anon_sym_BSLASHpagecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12279), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12279), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12279), + }, + [1664] = { + [sym_generic_command_name] = ACTIONS(12287), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12287), + [anon_sym_BSLASHitem] = ACTIONS(12287), + [anon_sym_LBRACK] = ACTIONS(12285), + [anon_sym_RBRACK] = ACTIONS(12285), + [anon_sym_LBRACE] = ACTIONS(12285), + [anon_sym_RBRACE] = ACTIONS(12285), + [anon_sym_LPAREN] = ACTIONS(12285), + [anon_sym_COMMA] = ACTIONS(12285), + [anon_sym_EQ] = ACTIONS(12285), + [sym_word] = ACTIONS(12285), + [sym_param] = ACTIONS(12285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12285), + [anon_sym_DOLLAR] = ACTIONS(12287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12285), + [anon_sym_BSLASHbegin] = ACTIONS(12287), + [anon_sym_BSLASHcaption] = ACTIONS(12287), + [anon_sym_BSLASHcite] = ACTIONS(12287), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCite] = ACTIONS(12287), + [anon_sym_BSLASHnocite] = ACTIONS(12287), + [anon_sym_BSLASHcitet] = ACTIONS(12287), + [anon_sym_BSLASHcitep] = ACTIONS(12287), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteauthor] = ACTIONS(12287), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12287), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitetitle] = ACTIONS(12287), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteyear] = ACTIONS(12287), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitedate] = ACTIONS(12287), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteurl] = ACTIONS(12287), + [anon_sym_BSLASHfullcite] = ACTIONS(12287), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12287), + [anon_sym_BSLASHcitealt] = ACTIONS(12287), + [anon_sym_BSLASHcitealp] = ACTIONS(12287), + [anon_sym_BSLASHcitetext] = ACTIONS(12287), + [anon_sym_BSLASHparencite] = ACTIONS(12287), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHParencite] = ACTIONS(12287), + [anon_sym_BSLASHfootcite] = ACTIONS(12287), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12287), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12287), + [anon_sym_BSLASHtextcite] = ACTIONS(12287), + [anon_sym_BSLASHTextcite] = ACTIONS(12287), + [anon_sym_BSLASHsmartcite] = ACTIONS(12287), + [anon_sym_BSLASHSmartcite] = ACTIONS(12287), + [anon_sym_BSLASHsupercite] = ACTIONS(12287), + [anon_sym_BSLASHautocite] = ACTIONS(12287), + [anon_sym_BSLASHAutocite] = ACTIONS(12287), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHvolcite] = ACTIONS(12287), + [anon_sym_BSLASHVolcite] = ACTIONS(12287), + [anon_sym_BSLASHpvolcite] = ACTIONS(12287), + [anon_sym_BSLASHPvolcite] = ACTIONS(12287), + [anon_sym_BSLASHfvolcite] = ACTIONS(12287), + [anon_sym_BSLASHftvolcite] = ACTIONS(12287), + [anon_sym_BSLASHsvolcite] = ACTIONS(12287), + [anon_sym_BSLASHSvolcite] = ACTIONS(12287), + [anon_sym_BSLASHtvolcite] = ACTIONS(12287), + [anon_sym_BSLASHTvolcite] = ACTIONS(12287), + [anon_sym_BSLASHavolcite] = ACTIONS(12287), + [anon_sym_BSLASHAvolcite] = ACTIONS(12287), + [anon_sym_BSLASHnotecite] = ACTIONS(12287), + [anon_sym_BSLASHpnotecite] = ACTIONS(12287), + [anon_sym_BSLASHPnotecite] = ACTIONS(12287), + [anon_sym_BSLASHfnotecite] = ACTIONS(12287), + [anon_sym_BSLASHusepackage] = ACTIONS(12287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12287), + [anon_sym_BSLASHinclude] = ACTIONS(12287), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12287), + [anon_sym_BSLASHinput] = ACTIONS(12287), + [anon_sym_BSLASHsubfile] = ACTIONS(12287), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12287), + [anon_sym_BSLASHbibliography] = ACTIONS(12287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12287), + [anon_sym_BSLASHincludesvg] = ACTIONS(12287), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12287), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12287), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12287), + [anon_sym_BSLASHimport] = ACTIONS(12287), + [anon_sym_BSLASHsubimport] = ACTIONS(12287), + [anon_sym_BSLASHinputfrom] = ACTIONS(12287), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12287), + [anon_sym_BSLASHincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHlabel] = ACTIONS(12287), + [anon_sym_BSLASHref] = ACTIONS(12287), + [anon_sym_BSLASHvref] = ACTIONS(12287), + [anon_sym_BSLASHVref] = ACTIONS(12287), + [anon_sym_BSLASHautoref] = ACTIONS(12287), + [anon_sym_BSLASHpageref] = ACTIONS(12287), + [anon_sym_BSLASHcref] = ACTIONS(12287), + [anon_sym_BSLASHCref] = ACTIONS(12287), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnameCref] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHlabelcref] = ACTIONS(12287), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12287), + [anon_sym_BSLASHeqref] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange] = ACTIONS(12287), + [anon_sym_BSLASHCrefrange] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewlabel] = ACTIONS(12287), + [anon_sym_BSLASHnewcommand] = ACTIONS(12287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12287), + [anon_sym_BSLASHgls] = ACTIONS(12287), + [anon_sym_BSLASHGls] = ACTIONS(12287), + [anon_sym_BSLASHGLS] = ACTIONS(12287), + [anon_sym_BSLASHglspl] = ACTIONS(12287), + [anon_sym_BSLASHGlspl] = ACTIONS(12287), + [anon_sym_BSLASHGLSpl] = ACTIONS(12287), + [anon_sym_BSLASHglsdisp] = ACTIONS(12287), + [anon_sym_BSLASHglslink] = ACTIONS(12287), + [anon_sym_BSLASHglstext] = ACTIONS(12287), + [anon_sym_BSLASHGlstext] = ACTIONS(12287), + [anon_sym_BSLASHGLStext] = ACTIONS(12287), + [anon_sym_BSLASHglsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12287), + [anon_sym_BSLASHglsplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSplural] = ACTIONS(12287), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHglsname] = ACTIONS(12287), + [anon_sym_BSLASHGlsname] = ACTIONS(12287), + [anon_sym_BSLASHGLSname] = ACTIONS(12287), + [anon_sym_BSLASHglssymbol] = ACTIONS(12287), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12287), + [anon_sym_BSLASHglsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12287), + [anon_sym_BSLASHglsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12287), + [anon_sym_BSLASHglsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12287), + [anon_sym_BSLASHglsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12287), + [anon_sym_BSLASHglsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12287), + [anon_sym_BSLASHnewacronym] = ACTIONS(12287), + [anon_sym_BSLASHacrshort] = ACTIONS(12287), + [anon_sym_BSLASHAcrshort] = ACTIONS(12287), + [anon_sym_BSLASHACRshort] = ACTIONS(12287), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12287), + [anon_sym_BSLASHacrlong] = ACTIONS(12287), + [anon_sym_BSLASHAcrlong] = ACTIONS(12287), + [anon_sym_BSLASHACRlong] = ACTIONS(12287), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12287), + [anon_sym_BSLASHacrfull] = ACTIONS(12287), + [anon_sym_BSLASHAcrfull] = ACTIONS(12287), + [anon_sym_BSLASHACRfull] = ACTIONS(12287), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12287), + [anon_sym_BSLASHacs] = ACTIONS(12287), + [anon_sym_BSLASHAcs] = ACTIONS(12287), + [anon_sym_BSLASHacsp] = ACTIONS(12287), + [anon_sym_BSLASHAcsp] = ACTIONS(12287), + [anon_sym_BSLASHacl] = ACTIONS(12287), + [anon_sym_BSLASHAcl] = ACTIONS(12287), + [anon_sym_BSLASHaclp] = ACTIONS(12287), + [anon_sym_BSLASHAclp] = ACTIONS(12287), + [anon_sym_BSLASHacf] = ACTIONS(12287), + [anon_sym_BSLASHAcf] = ACTIONS(12287), + [anon_sym_BSLASHacfp] = ACTIONS(12287), + [anon_sym_BSLASHAcfp] = ACTIONS(12287), + [anon_sym_BSLASHac] = ACTIONS(12287), + [anon_sym_BSLASHAc] = ACTIONS(12287), + [anon_sym_BSLASHacp] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12287), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12287), + [anon_sym_BSLASHcolor] = ACTIONS(12287), + [anon_sym_BSLASHcolorbox] = ACTIONS(12287), + [anon_sym_BSLASHtextcolor] = ACTIONS(12287), + [anon_sym_BSLASHpagecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12287), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12287), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12287), + }, + [1665] = { + [sym_generic_command_name] = ACTIONS(12291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12291), + [anon_sym_BSLASHitem] = ACTIONS(12291), + [anon_sym_LBRACK] = ACTIONS(12289), + [anon_sym_RBRACK] = ACTIONS(12289), + [anon_sym_LBRACE] = ACTIONS(12289), + [anon_sym_RBRACE] = ACTIONS(12289), + [anon_sym_LPAREN] = ACTIONS(12289), + [anon_sym_COMMA] = ACTIONS(12289), + [anon_sym_EQ] = ACTIONS(12289), + [sym_word] = ACTIONS(12289), + [sym_param] = ACTIONS(12289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12289), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12289), + [anon_sym_DOLLAR] = ACTIONS(12291), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12289), + [anon_sym_BSLASHbegin] = ACTIONS(12291), + [anon_sym_BSLASHcaption] = ACTIONS(12291), + [anon_sym_BSLASHcite] = ACTIONS(12291), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCite] = ACTIONS(12291), + [anon_sym_BSLASHnocite] = ACTIONS(12291), + [anon_sym_BSLASHcitet] = ACTIONS(12291), + [anon_sym_BSLASHcitep] = ACTIONS(12291), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteauthor] = ACTIONS(12291), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12291), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitetitle] = ACTIONS(12291), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteyear] = ACTIONS(12291), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitedate] = ACTIONS(12291), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteurl] = ACTIONS(12291), + [anon_sym_BSLASHfullcite] = ACTIONS(12291), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12291), + [anon_sym_BSLASHcitealt] = ACTIONS(12291), + [anon_sym_BSLASHcitealp] = ACTIONS(12291), + [anon_sym_BSLASHcitetext] = ACTIONS(12291), + [anon_sym_BSLASHparencite] = ACTIONS(12291), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHParencite] = ACTIONS(12291), + [anon_sym_BSLASHfootcite] = ACTIONS(12291), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12291), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12291), + [anon_sym_BSLASHtextcite] = ACTIONS(12291), + [anon_sym_BSLASHTextcite] = ACTIONS(12291), + [anon_sym_BSLASHsmartcite] = ACTIONS(12291), + [anon_sym_BSLASHSmartcite] = ACTIONS(12291), + [anon_sym_BSLASHsupercite] = ACTIONS(12291), + [anon_sym_BSLASHautocite] = ACTIONS(12291), + [anon_sym_BSLASHAutocite] = ACTIONS(12291), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHvolcite] = ACTIONS(12291), + [anon_sym_BSLASHVolcite] = ACTIONS(12291), + [anon_sym_BSLASHpvolcite] = ACTIONS(12291), + [anon_sym_BSLASHPvolcite] = ACTIONS(12291), + [anon_sym_BSLASHfvolcite] = ACTIONS(12291), + [anon_sym_BSLASHftvolcite] = ACTIONS(12291), + [anon_sym_BSLASHsvolcite] = ACTIONS(12291), + [anon_sym_BSLASHSvolcite] = ACTIONS(12291), + [anon_sym_BSLASHtvolcite] = ACTIONS(12291), + [anon_sym_BSLASHTvolcite] = ACTIONS(12291), + [anon_sym_BSLASHavolcite] = ACTIONS(12291), + [anon_sym_BSLASHAvolcite] = ACTIONS(12291), + [anon_sym_BSLASHnotecite] = ACTIONS(12291), + [anon_sym_BSLASHpnotecite] = ACTIONS(12291), + [anon_sym_BSLASHPnotecite] = ACTIONS(12291), + [anon_sym_BSLASHfnotecite] = ACTIONS(12291), + [anon_sym_BSLASHusepackage] = ACTIONS(12291), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12291), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12291), + [anon_sym_BSLASHinclude] = ACTIONS(12291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12291), + [anon_sym_BSLASHinput] = ACTIONS(12291), + [anon_sym_BSLASHsubfile] = ACTIONS(12291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12291), + [anon_sym_BSLASHbibliography] = ACTIONS(12291), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12291), + [anon_sym_BSLASHincludesvg] = ACTIONS(12291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12291), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12291), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12291), + [anon_sym_BSLASHimport] = ACTIONS(12291), + [anon_sym_BSLASHsubimport] = ACTIONS(12291), + [anon_sym_BSLASHinputfrom] = ACTIONS(12291), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12291), + [anon_sym_BSLASHincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHlabel] = ACTIONS(12291), + [anon_sym_BSLASHref] = ACTIONS(12291), + [anon_sym_BSLASHvref] = ACTIONS(12291), + [anon_sym_BSLASHVref] = ACTIONS(12291), + [anon_sym_BSLASHautoref] = ACTIONS(12291), + [anon_sym_BSLASHpageref] = ACTIONS(12291), + [anon_sym_BSLASHcref] = ACTIONS(12291), + [anon_sym_BSLASHCref] = ACTIONS(12291), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnameCref] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHlabelcref] = ACTIONS(12291), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12291), + [anon_sym_BSLASHeqref] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange] = ACTIONS(12291), + [anon_sym_BSLASHCrefrange] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewlabel] = ACTIONS(12291), + [anon_sym_BSLASHnewcommand] = ACTIONS(12291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12291), + [anon_sym_BSLASHgls] = ACTIONS(12291), + [anon_sym_BSLASHGls] = ACTIONS(12291), + [anon_sym_BSLASHGLS] = ACTIONS(12291), + [anon_sym_BSLASHglspl] = ACTIONS(12291), + [anon_sym_BSLASHGlspl] = ACTIONS(12291), + [anon_sym_BSLASHGLSpl] = ACTIONS(12291), + [anon_sym_BSLASHglsdisp] = ACTIONS(12291), + [anon_sym_BSLASHglslink] = ACTIONS(12291), + [anon_sym_BSLASHglstext] = ACTIONS(12291), + [anon_sym_BSLASHGlstext] = ACTIONS(12291), + [anon_sym_BSLASHGLStext] = ACTIONS(12291), + [anon_sym_BSLASHglsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12291), + [anon_sym_BSLASHglsplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSplural] = ACTIONS(12291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHglsname] = ACTIONS(12291), + [anon_sym_BSLASHGlsname] = ACTIONS(12291), + [anon_sym_BSLASHGLSname] = ACTIONS(12291), + [anon_sym_BSLASHglssymbol] = ACTIONS(12291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12291), + [anon_sym_BSLASHglsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12291), + [anon_sym_BSLASHglsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12291), + [anon_sym_BSLASHglsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12291), + [anon_sym_BSLASHglsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12291), + [anon_sym_BSLASHglsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12291), + [anon_sym_BSLASHnewacronym] = ACTIONS(12291), + [anon_sym_BSLASHacrshort] = ACTIONS(12291), + [anon_sym_BSLASHAcrshort] = ACTIONS(12291), + [anon_sym_BSLASHACRshort] = ACTIONS(12291), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12291), + [anon_sym_BSLASHacrlong] = ACTIONS(12291), + [anon_sym_BSLASHAcrlong] = ACTIONS(12291), + [anon_sym_BSLASHACRlong] = ACTIONS(12291), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12291), + [anon_sym_BSLASHacrfull] = ACTIONS(12291), + [anon_sym_BSLASHAcrfull] = ACTIONS(12291), + [anon_sym_BSLASHACRfull] = ACTIONS(12291), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12291), + [anon_sym_BSLASHacs] = ACTIONS(12291), + [anon_sym_BSLASHAcs] = ACTIONS(12291), + [anon_sym_BSLASHacsp] = ACTIONS(12291), + [anon_sym_BSLASHAcsp] = ACTIONS(12291), + [anon_sym_BSLASHacl] = ACTIONS(12291), + [anon_sym_BSLASHAcl] = ACTIONS(12291), + [anon_sym_BSLASHaclp] = ACTIONS(12291), + [anon_sym_BSLASHAclp] = ACTIONS(12291), + [anon_sym_BSLASHacf] = ACTIONS(12291), + [anon_sym_BSLASHAcf] = ACTIONS(12291), + [anon_sym_BSLASHacfp] = ACTIONS(12291), + [anon_sym_BSLASHAcfp] = ACTIONS(12291), + [anon_sym_BSLASHac] = ACTIONS(12291), + [anon_sym_BSLASHAc] = ACTIONS(12291), + [anon_sym_BSLASHacp] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12291), + [anon_sym_BSLASHcolor] = ACTIONS(12291), + [anon_sym_BSLASHcolorbox] = ACTIONS(12291), + [anon_sym_BSLASHtextcolor] = ACTIONS(12291), + [anon_sym_BSLASHpagecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12291), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12291), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12291), + }, + [1666] = { + [sym_generic_command_name] = ACTIONS(12295), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12295), + [anon_sym_BSLASHitem] = ACTIONS(12295), + [anon_sym_LBRACK] = ACTIONS(12293), + [anon_sym_RBRACK] = ACTIONS(12293), + [anon_sym_LBRACE] = ACTIONS(12293), + [anon_sym_RBRACE] = ACTIONS(12293), + [anon_sym_LPAREN] = ACTIONS(12293), + [anon_sym_COMMA] = ACTIONS(12293), + [anon_sym_EQ] = ACTIONS(12293), + [sym_word] = ACTIONS(12293), + [sym_param] = ACTIONS(12293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12293), + [anon_sym_DOLLAR] = ACTIONS(12295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12293), + [anon_sym_BSLASHbegin] = ACTIONS(12295), + [anon_sym_BSLASHcaption] = ACTIONS(12295), + [anon_sym_BSLASHcite] = ACTIONS(12295), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCite] = ACTIONS(12295), + [anon_sym_BSLASHnocite] = ACTIONS(12295), + [anon_sym_BSLASHcitet] = ACTIONS(12295), + [anon_sym_BSLASHcitep] = ACTIONS(12295), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteauthor] = ACTIONS(12295), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12295), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitetitle] = ACTIONS(12295), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteyear] = ACTIONS(12295), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitedate] = ACTIONS(12295), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteurl] = ACTIONS(12295), + [anon_sym_BSLASHfullcite] = ACTIONS(12295), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12295), + [anon_sym_BSLASHcitealt] = ACTIONS(12295), + [anon_sym_BSLASHcitealp] = ACTIONS(12295), + [anon_sym_BSLASHcitetext] = ACTIONS(12295), + [anon_sym_BSLASHparencite] = ACTIONS(12295), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHParencite] = ACTIONS(12295), + [anon_sym_BSLASHfootcite] = ACTIONS(12295), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12295), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12295), + [anon_sym_BSLASHtextcite] = ACTIONS(12295), + [anon_sym_BSLASHTextcite] = ACTIONS(12295), + [anon_sym_BSLASHsmartcite] = ACTIONS(12295), + [anon_sym_BSLASHSmartcite] = ACTIONS(12295), + [anon_sym_BSLASHsupercite] = ACTIONS(12295), + [anon_sym_BSLASHautocite] = ACTIONS(12295), + [anon_sym_BSLASHAutocite] = ACTIONS(12295), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHvolcite] = ACTIONS(12295), + [anon_sym_BSLASHVolcite] = ACTIONS(12295), + [anon_sym_BSLASHpvolcite] = ACTIONS(12295), + [anon_sym_BSLASHPvolcite] = ACTIONS(12295), + [anon_sym_BSLASHfvolcite] = ACTIONS(12295), + [anon_sym_BSLASHftvolcite] = ACTIONS(12295), + [anon_sym_BSLASHsvolcite] = ACTIONS(12295), + [anon_sym_BSLASHSvolcite] = ACTIONS(12295), + [anon_sym_BSLASHtvolcite] = ACTIONS(12295), + [anon_sym_BSLASHTvolcite] = ACTIONS(12295), + [anon_sym_BSLASHavolcite] = ACTIONS(12295), + [anon_sym_BSLASHAvolcite] = ACTIONS(12295), + [anon_sym_BSLASHnotecite] = ACTIONS(12295), + [anon_sym_BSLASHpnotecite] = ACTIONS(12295), + [anon_sym_BSLASHPnotecite] = ACTIONS(12295), + [anon_sym_BSLASHfnotecite] = ACTIONS(12295), + [anon_sym_BSLASHusepackage] = ACTIONS(12295), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12295), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12295), + [anon_sym_BSLASHinclude] = ACTIONS(12295), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12295), + [anon_sym_BSLASHinput] = ACTIONS(12295), + [anon_sym_BSLASHsubfile] = ACTIONS(12295), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12295), + [anon_sym_BSLASHbibliography] = ACTIONS(12295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12295), + [anon_sym_BSLASHincludesvg] = ACTIONS(12295), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12295), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12295), + [anon_sym_BSLASHimport] = ACTIONS(12295), + [anon_sym_BSLASHsubimport] = ACTIONS(12295), + [anon_sym_BSLASHinputfrom] = ACTIONS(12295), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12295), + [anon_sym_BSLASHincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHlabel] = ACTIONS(12295), + [anon_sym_BSLASHref] = ACTIONS(12295), + [anon_sym_BSLASHvref] = ACTIONS(12295), + [anon_sym_BSLASHVref] = ACTIONS(12295), + [anon_sym_BSLASHautoref] = ACTIONS(12295), + [anon_sym_BSLASHpageref] = ACTIONS(12295), + [anon_sym_BSLASHcref] = ACTIONS(12295), + [anon_sym_BSLASHCref] = ACTIONS(12295), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnameCref] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHlabelcref] = ACTIONS(12295), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12295), + [anon_sym_BSLASHeqref] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange] = ACTIONS(12295), + [anon_sym_BSLASHCrefrange] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewlabel] = ACTIONS(12295), + [anon_sym_BSLASHnewcommand] = ACTIONS(12295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12295), + [anon_sym_BSLASHgls] = ACTIONS(12295), + [anon_sym_BSLASHGls] = ACTIONS(12295), + [anon_sym_BSLASHGLS] = ACTIONS(12295), + [anon_sym_BSLASHglspl] = ACTIONS(12295), + [anon_sym_BSLASHGlspl] = ACTIONS(12295), + [anon_sym_BSLASHGLSpl] = ACTIONS(12295), + [anon_sym_BSLASHglsdisp] = ACTIONS(12295), + [anon_sym_BSLASHglslink] = ACTIONS(12295), + [anon_sym_BSLASHglstext] = ACTIONS(12295), + [anon_sym_BSLASHGlstext] = ACTIONS(12295), + [anon_sym_BSLASHGLStext] = ACTIONS(12295), + [anon_sym_BSLASHglsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12295), + [anon_sym_BSLASHglsplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSplural] = ACTIONS(12295), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHglsname] = ACTIONS(12295), + [anon_sym_BSLASHGlsname] = ACTIONS(12295), + [anon_sym_BSLASHGLSname] = ACTIONS(12295), + [anon_sym_BSLASHglssymbol] = ACTIONS(12295), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12295), + [anon_sym_BSLASHglsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12295), + [anon_sym_BSLASHglsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12295), + [anon_sym_BSLASHglsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12295), + [anon_sym_BSLASHglsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12295), + [anon_sym_BSLASHglsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12295), + [anon_sym_BSLASHnewacronym] = ACTIONS(12295), + [anon_sym_BSLASHacrshort] = ACTIONS(12295), + [anon_sym_BSLASHAcrshort] = ACTIONS(12295), + [anon_sym_BSLASHACRshort] = ACTIONS(12295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12295), + [anon_sym_BSLASHacrlong] = ACTIONS(12295), + [anon_sym_BSLASHAcrlong] = ACTIONS(12295), + [anon_sym_BSLASHACRlong] = ACTIONS(12295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12295), + [anon_sym_BSLASHacrfull] = ACTIONS(12295), + [anon_sym_BSLASHAcrfull] = ACTIONS(12295), + [anon_sym_BSLASHACRfull] = ACTIONS(12295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12295), + [anon_sym_BSLASHacs] = ACTIONS(12295), + [anon_sym_BSLASHAcs] = ACTIONS(12295), + [anon_sym_BSLASHacsp] = ACTIONS(12295), + [anon_sym_BSLASHAcsp] = ACTIONS(12295), + [anon_sym_BSLASHacl] = ACTIONS(12295), + [anon_sym_BSLASHAcl] = ACTIONS(12295), + [anon_sym_BSLASHaclp] = ACTIONS(12295), + [anon_sym_BSLASHAclp] = ACTIONS(12295), + [anon_sym_BSLASHacf] = ACTIONS(12295), + [anon_sym_BSLASHAcf] = ACTIONS(12295), + [anon_sym_BSLASHacfp] = ACTIONS(12295), + [anon_sym_BSLASHAcfp] = ACTIONS(12295), + [anon_sym_BSLASHac] = ACTIONS(12295), + [anon_sym_BSLASHAc] = ACTIONS(12295), + [anon_sym_BSLASHacp] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12295), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12295), + [anon_sym_BSLASHcolor] = ACTIONS(12295), + [anon_sym_BSLASHcolorbox] = ACTIONS(12295), + [anon_sym_BSLASHtextcolor] = ACTIONS(12295), + [anon_sym_BSLASHpagecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12295), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12295), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12295), + }, + [1667] = { + [sym_generic_command_name] = ACTIONS(12303), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12303), + [anon_sym_BSLASHitem] = ACTIONS(12303), + [anon_sym_LBRACK] = ACTIONS(12301), + [anon_sym_RBRACK] = ACTIONS(12301), + [anon_sym_LBRACE] = ACTIONS(12301), + [anon_sym_RBRACE] = ACTIONS(12301), + [anon_sym_LPAREN] = ACTIONS(12301), + [anon_sym_COMMA] = ACTIONS(12301), + [anon_sym_EQ] = ACTIONS(12301), + [sym_word] = ACTIONS(12301), + [sym_param] = ACTIONS(12301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12301), + [anon_sym_DOLLAR] = ACTIONS(12303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12301), + [anon_sym_BSLASHbegin] = ACTIONS(12303), + [anon_sym_BSLASHcaption] = ACTIONS(12303), + [anon_sym_BSLASHcite] = ACTIONS(12303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCite] = ACTIONS(12303), + [anon_sym_BSLASHnocite] = ACTIONS(12303), + [anon_sym_BSLASHcitet] = ACTIONS(12303), + [anon_sym_BSLASHcitep] = ACTIONS(12303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteauthor] = ACTIONS(12303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitetitle] = ACTIONS(12303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteyear] = ACTIONS(12303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitedate] = ACTIONS(12303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteurl] = ACTIONS(12303), + [anon_sym_BSLASHfullcite] = ACTIONS(12303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12303), + [anon_sym_BSLASHcitealt] = ACTIONS(12303), + [anon_sym_BSLASHcitealp] = ACTIONS(12303), + [anon_sym_BSLASHcitetext] = ACTIONS(12303), + [anon_sym_BSLASHparencite] = ACTIONS(12303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHParencite] = ACTIONS(12303), + [anon_sym_BSLASHfootcite] = ACTIONS(12303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12303), + [anon_sym_BSLASHtextcite] = ACTIONS(12303), + [anon_sym_BSLASHTextcite] = ACTIONS(12303), + [anon_sym_BSLASHsmartcite] = ACTIONS(12303), + [anon_sym_BSLASHSmartcite] = ACTIONS(12303), + [anon_sym_BSLASHsupercite] = ACTIONS(12303), + [anon_sym_BSLASHautocite] = ACTIONS(12303), + [anon_sym_BSLASHAutocite] = ACTIONS(12303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHvolcite] = ACTIONS(12303), + [anon_sym_BSLASHVolcite] = ACTIONS(12303), + [anon_sym_BSLASHpvolcite] = ACTIONS(12303), + [anon_sym_BSLASHPvolcite] = ACTIONS(12303), + [anon_sym_BSLASHfvolcite] = ACTIONS(12303), + [anon_sym_BSLASHftvolcite] = ACTIONS(12303), + [anon_sym_BSLASHsvolcite] = ACTIONS(12303), + [anon_sym_BSLASHSvolcite] = ACTIONS(12303), + [anon_sym_BSLASHtvolcite] = ACTIONS(12303), + [anon_sym_BSLASHTvolcite] = ACTIONS(12303), + [anon_sym_BSLASHavolcite] = ACTIONS(12303), + [anon_sym_BSLASHAvolcite] = ACTIONS(12303), + [anon_sym_BSLASHnotecite] = ACTIONS(12303), + [anon_sym_BSLASHpnotecite] = ACTIONS(12303), + [anon_sym_BSLASHPnotecite] = ACTIONS(12303), + [anon_sym_BSLASHfnotecite] = ACTIONS(12303), + [anon_sym_BSLASHusepackage] = ACTIONS(12303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12303), + [anon_sym_BSLASHinclude] = ACTIONS(12303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12303), + [anon_sym_BSLASHinput] = ACTIONS(12303), + [anon_sym_BSLASHsubfile] = ACTIONS(12303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12303), + [anon_sym_BSLASHbibliography] = ACTIONS(12303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12303), + [anon_sym_BSLASHincludesvg] = ACTIONS(12303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12303), + [anon_sym_BSLASHimport] = ACTIONS(12303), + [anon_sym_BSLASHsubimport] = ACTIONS(12303), + [anon_sym_BSLASHinputfrom] = ACTIONS(12303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12303), + [anon_sym_BSLASHincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHlabel] = ACTIONS(12303), + [anon_sym_BSLASHref] = ACTIONS(12303), + [anon_sym_BSLASHvref] = ACTIONS(12303), + [anon_sym_BSLASHVref] = ACTIONS(12303), + [anon_sym_BSLASHautoref] = ACTIONS(12303), + [anon_sym_BSLASHpageref] = ACTIONS(12303), + [anon_sym_BSLASHcref] = ACTIONS(12303), + [anon_sym_BSLASHCref] = ACTIONS(12303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnameCref] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHlabelcref] = ACTIONS(12303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12303), + [anon_sym_BSLASHeqref] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange] = ACTIONS(12303), + [anon_sym_BSLASHCrefrange] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewlabel] = ACTIONS(12303), + [anon_sym_BSLASHnewcommand] = ACTIONS(12303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12303), + [anon_sym_BSLASHgls] = ACTIONS(12303), + [anon_sym_BSLASHGls] = ACTIONS(12303), + [anon_sym_BSLASHGLS] = ACTIONS(12303), + [anon_sym_BSLASHglspl] = ACTIONS(12303), + [anon_sym_BSLASHGlspl] = ACTIONS(12303), + [anon_sym_BSLASHGLSpl] = ACTIONS(12303), + [anon_sym_BSLASHglsdisp] = ACTIONS(12303), + [anon_sym_BSLASHglslink] = ACTIONS(12303), + [anon_sym_BSLASHglstext] = ACTIONS(12303), + [anon_sym_BSLASHGlstext] = ACTIONS(12303), + [anon_sym_BSLASHGLStext] = ACTIONS(12303), + [anon_sym_BSLASHglsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12303), + [anon_sym_BSLASHglsplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSplural] = ACTIONS(12303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHglsname] = ACTIONS(12303), + [anon_sym_BSLASHGlsname] = ACTIONS(12303), + [anon_sym_BSLASHGLSname] = ACTIONS(12303), + [anon_sym_BSLASHglssymbol] = ACTIONS(12303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12303), + [anon_sym_BSLASHglsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12303), + [anon_sym_BSLASHglsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12303), + [anon_sym_BSLASHglsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12303), + [anon_sym_BSLASHglsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12303), + [anon_sym_BSLASHglsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12303), + [anon_sym_BSLASHnewacronym] = ACTIONS(12303), + [anon_sym_BSLASHacrshort] = ACTIONS(12303), + [anon_sym_BSLASHAcrshort] = ACTIONS(12303), + [anon_sym_BSLASHACRshort] = ACTIONS(12303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12303), + [anon_sym_BSLASHacrlong] = ACTIONS(12303), + [anon_sym_BSLASHAcrlong] = ACTIONS(12303), + [anon_sym_BSLASHACRlong] = ACTIONS(12303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12303), + [anon_sym_BSLASHacrfull] = ACTIONS(12303), + [anon_sym_BSLASHAcrfull] = ACTIONS(12303), + [anon_sym_BSLASHACRfull] = ACTIONS(12303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12303), + [anon_sym_BSLASHacs] = ACTIONS(12303), + [anon_sym_BSLASHAcs] = ACTIONS(12303), + [anon_sym_BSLASHacsp] = ACTIONS(12303), + [anon_sym_BSLASHAcsp] = ACTIONS(12303), + [anon_sym_BSLASHacl] = ACTIONS(12303), + [anon_sym_BSLASHAcl] = ACTIONS(12303), + [anon_sym_BSLASHaclp] = ACTIONS(12303), + [anon_sym_BSLASHAclp] = ACTIONS(12303), + [anon_sym_BSLASHacf] = ACTIONS(12303), + [anon_sym_BSLASHAcf] = ACTIONS(12303), + [anon_sym_BSLASHacfp] = ACTIONS(12303), + [anon_sym_BSLASHAcfp] = ACTIONS(12303), + [anon_sym_BSLASHac] = ACTIONS(12303), + [anon_sym_BSLASHAc] = ACTIONS(12303), + [anon_sym_BSLASHacp] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12303), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12303), + [anon_sym_BSLASHcolor] = ACTIONS(12303), + [anon_sym_BSLASHcolorbox] = ACTIONS(12303), + [anon_sym_BSLASHtextcolor] = ACTIONS(12303), + [anon_sym_BSLASHpagecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12303), + }, + [1668] = { + [sym_generic_command_name] = ACTIONS(12307), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12307), + [anon_sym_BSLASHitem] = ACTIONS(12307), + [anon_sym_LBRACK] = ACTIONS(12305), + [anon_sym_RBRACK] = ACTIONS(12305), + [anon_sym_LBRACE] = ACTIONS(12305), + [anon_sym_RBRACE] = ACTIONS(12305), + [anon_sym_LPAREN] = ACTIONS(12305), + [anon_sym_COMMA] = ACTIONS(12305), + [anon_sym_EQ] = ACTIONS(12305), + [sym_word] = ACTIONS(12305), + [sym_param] = ACTIONS(12305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12305), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12305), + [anon_sym_DOLLAR] = ACTIONS(12307), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12305), + [anon_sym_BSLASHbegin] = ACTIONS(12307), + [anon_sym_BSLASHcaption] = ACTIONS(12307), + [anon_sym_BSLASHcite] = ACTIONS(12307), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCite] = ACTIONS(12307), + [anon_sym_BSLASHnocite] = ACTIONS(12307), + [anon_sym_BSLASHcitet] = ACTIONS(12307), + [anon_sym_BSLASHcitep] = ACTIONS(12307), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteauthor] = ACTIONS(12307), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12307), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitetitle] = ACTIONS(12307), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteyear] = ACTIONS(12307), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitedate] = ACTIONS(12307), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteurl] = ACTIONS(12307), + [anon_sym_BSLASHfullcite] = ACTIONS(12307), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12307), + [anon_sym_BSLASHcitealt] = ACTIONS(12307), + [anon_sym_BSLASHcitealp] = ACTIONS(12307), + [anon_sym_BSLASHcitetext] = ACTIONS(12307), + [anon_sym_BSLASHparencite] = ACTIONS(12307), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHParencite] = ACTIONS(12307), + [anon_sym_BSLASHfootcite] = ACTIONS(12307), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12307), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12307), + [anon_sym_BSLASHtextcite] = ACTIONS(12307), + [anon_sym_BSLASHTextcite] = ACTIONS(12307), + [anon_sym_BSLASHsmartcite] = ACTIONS(12307), + [anon_sym_BSLASHSmartcite] = ACTIONS(12307), + [anon_sym_BSLASHsupercite] = ACTIONS(12307), + [anon_sym_BSLASHautocite] = ACTIONS(12307), + [anon_sym_BSLASHAutocite] = ACTIONS(12307), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHvolcite] = ACTIONS(12307), + [anon_sym_BSLASHVolcite] = ACTIONS(12307), + [anon_sym_BSLASHpvolcite] = ACTIONS(12307), + [anon_sym_BSLASHPvolcite] = ACTIONS(12307), + [anon_sym_BSLASHfvolcite] = ACTIONS(12307), + [anon_sym_BSLASHftvolcite] = ACTIONS(12307), + [anon_sym_BSLASHsvolcite] = ACTIONS(12307), + [anon_sym_BSLASHSvolcite] = ACTIONS(12307), + [anon_sym_BSLASHtvolcite] = ACTIONS(12307), + [anon_sym_BSLASHTvolcite] = ACTIONS(12307), + [anon_sym_BSLASHavolcite] = ACTIONS(12307), + [anon_sym_BSLASHAvolcite] = ACTIONS(12307), + [anon_sym_BSLASHnotecite] = ACTIONS(12307), + [anon_sym_BSLASHpnotecite] = ACTIONS(12307), + [anon_sym_BSLASHPnotecite] = ACTIONS(12307), + [anon_sym_BSLASHfnotecite] = ACTIONS(12307), + [anon_sym_BSLASHusepackage] = ACTIONS(12307), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12307), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12307), + [anon_sym_BSLASHinclude] = ACTIONS(12307), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12307), + [anon_sym_BSLASHinput] = ACTIONS(12307), + [anon_sym_BSLASHsubfile] = ACTIONS(12307), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12307), + [anon_sym_BSLASHbibliography] = ACTIONS(12307), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12307), + [anon_sym_BSLASHincludesvg] = ACTIONS(12307), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12307), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12307), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12307), + [anon_sym_BSLASHimport] = ACTIONS(12307), + [anon_sym_BSLASHsubimport] = ACTIONS(12307), + [anon_sym_BSLASHinputfrom] = ACTIONS(12307), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12307), + [anon_sym_BSLASHincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHlabel] = ACTIONS(12307), + [anon_sym_BSLASHref] = ACTIONS(12307), + [anon_sym_BSLASHvref] = ACTIONS(12307), + [anon_sym_BSLASHVref] = ACTIONS(12307), + [anon_sym_BSLASHautoref] = ACTIONS(12307), + [anon_sym_BSLASHpageref] = ACTIONS(12307), + [anon_sym_BSLASHcref] = ACTIONS(12307), + [anon_sym_BSLASHCref] = ACTIONS(12307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnameCref] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHlabelcref] = ACTIONS(12307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12307), + [anon_sym_BSLASHeqref] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange] = ACTIONS(12307), + [anon_sym_BSLASHCrefrange] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewlabel] = ACTIONS(12307), + [anon_sym_BSLASHnewcommand] = ACTIONS(12307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12307), + [anon_sym_BSLASHgls] = ACTIONS(12307), + [anon_sym_BSLASHGls] = ACTIONS(12307), + [anon_sym_BSLASHGLS] = ACTIONS(12307), + [anon_sym_BSLASHglspl] = ACTIONS(12307), + [anon_sym_BSLASHGlspl] = ACTIONS(12307), + [anon_sym_BSLASHGLSpl] = ACTIONS(12307), + [anon_sym_BSLASHglsdisp] = ACTIONS(12307), + [anon_sym_BSLASHglslink] = ACTIONS(12307), + [anon_sym_BSLASHglstext] = ACTIONS(12307), + [anon_sym_BSLASHGlstext] = ACTIONS(12307), + [anon_sym_BSLASHGLStext] = ACTIONS(12307), + [anon_sym_BSLASHglsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12307), + [anon_sym_BSLASHglsplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSplural] = ACTIONS(12307), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHglsname] = ACTIONS(12307), + [anon_sym_BSLASHGlsname] = ACTIONS(12307), + [anon_sym_BSLASHGLSname] = ACTIONS(12307), + [anon_sym_BSLASHglssymbol] = ACTIONS(12307), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12307), + [anon_sym_BSLASHglsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12307), + [anon_sym_BSLASHglsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12307), + [anon_sym_BSLASHglsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12307), + [anon_sym_BSLASHglsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12307), + [anon_sym_BSLASHglsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12307), + [anon_sym_BSLASHnewacronym] = ACTIONS(12307), + [anon_sym_BSLASHacrshort] = ACTIONS(12307), + [anon_sym_BSLASHAcrshort] = ACTIONS(12307), + [anon_sym_BSLASHACRshort] = ACTIONS(12307), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12307), + [anon_sym_BSLASHacrlong] = ACTIONS(12307), + [anon_sym_BSLASHAcrlong] = ACTIONS(12307), + [anon_sym_BSLASHACRlong] = ACTIONS(12307), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12307), + [anon_sym_BSLASHacrfull] = ACTIONS(12307), + [anon_sym_BSLASHAcrfull] = ACTIONS(12307), + [anon_sym_BSLASHACRfull] = ACTIONS(12307), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12307), + [anon_sym_BSLASHacs] = ACTIONS(12307), + [anon_sym_BSLASHAcs] = ACTIONS(12307), + [anon_sym_BSLASHacsp] = ACTIONS(12307), + [anon_sym_BSLASHAcsp] = ACTIONS(12307), + [anon_sym_BSLASHacl] = ACTIONS(12307), + [anon_sym_BSLASHAcl] = ACTIONS(12307), + [anon_sym_BSLASHaclp] = ACTIONS(12307), + [anon_sym_BSLASHAclp] = ACTIONS(12307), + [anon_sym_BSLASHacf] = ACTIONS(12307), + [anon_sym_BSLASHAcf] = ACTIONS(12307), + [anon_sym_BSLASHacfp] = ACTIONS(12307), + [anon_sym_BSLASHAcfp] = ACTIONS(12307), + [anon_sym_BSLASHac] = ACTIONS(12307), + [anon_sym_BSLASHAc] = ACTIONS(12307), + [anon_sym_BSLASHacp] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12307), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12307), + [anon_sym_BSLASHcolor] = ACTIONS(12307), + [anon_sym_BSLASHcolorbox] = ACTIONS(12307), + [anon_sym_BSLASHtextcolor] = ACTIONS(12307), + [anon_sym_BSLASHpagecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12307), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12307), + }, + [1669] = { + [sym_generic_command_name] = ACTIONS(12315), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12315), + [anon_sym_BSLASHitem] = ACTIONS(12315), + [anon_sym_LBRACK] = ACTIONS(12313), + [anon_sym_RBRACK] = ACTIONS(12313), + [anon_sym_LBRACE] = ACTIONS(12313), + [anon_sym_RBRACE] = ACTIONS(12313), + [anon_sym_LPAREN] = ACTIONS(12313), + [anon_sym_COMMA] = ACTIONS(12313), + [anon_sym_EQ] = ACTIONS(12313), + [sym_word] = ACTIONS(12313), + [sym_param] = ACTIONS(12313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12313), + [anon_sym_DOLLAR] = ACTIONS(12315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12313), + [anon_sym_BSLASHbegin] = ACTIONS(12315), + [anon_sym_BSLASHcaption] = ACTIONS(12315), + [anon_sym_BSLASHcite] = ACTIONS(12315), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCite] = ACTIONS(12315), + [anon_sym_BSLASHnocite] = ACTIONS(12315), + [anon_sym_BSLASHcitet] = ACTIONS(12315), + [anon_sym_BSLASHcitep] = ACTIONS(12315), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteauthor] = ACTIONS(12315), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12315), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitetitle] = ACTIONS(12315), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteyear] = ACTIONS(12315), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitedate] = ACTIONS(12315), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteurl] = ACTIONS(12315), + [anon_sym_BSLASHfullcite] = ACTIONS(12315), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12315), + [anon_sym_BSLASHcitealt] = ACTIONS(12315), + [anon_sym_BSLASHcitealp] = ACTIONS(12315), + [anon_sym_BSLASHcitetext] = ACTIONS(12315), + [anon_sym_BSLASHparencite] = ACTIONS(12315), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHParencite] = ACTIONS(12315), + [anon_sym_BSLASHfootcite] = ACTIONS(12315), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12315), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12315), + [anon_sym_BSLASHtextcite] = ACTIONS(12315), + [anon_sym_BSLASHTextcite] = ACTIONS(12315), + [anon_sym_BSLASHsmartcite] = ACTIONS(12315), + [anon_sym_BSLASHSmartcite] = ACTIONS(12315), + [anon_sym_BSLASHsupercite] = ACTIONS(12315), + [anon_sym_BSLASHautocite] = ACTIONS(12315), + [anon_sym_BSLASHAutocite] = ACTIONS(12315), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHvolcite] = ACTIONS(12315), + [anon_sym_BSLASHVolcite] = ACTIONS(12315), + [anon_sym_BSLASHpvolcite] = ACTIONS(12315), + [anon_sym_BSLASHPvolcite] = ACTIONS(12315), + [anon_sym_BSLASHfvolcite] = ACTIONS(12315), + [anon_sym_BSLASHftvolcite] = ACTIONS(12315), + [anon_sym_BSLASHsvolcite] = ACTIONS(12315), + [anon_sym_BSLASHSvolcite] = ACTIONS(12315), + [anon_sym_BSLASHtvolcite] = ACTIONS(12315), + [anon_sym_BSLASHTvolcite] = ACTIONS(12315), + [anon_sym_BSLASHavolcite] = ACTIONS(12315), + [anon_sym_BSLASHAvolcite] = ACTIONS(12315), + [anon_sym_BSLASHnotecite] = ACTIONS(12315), + [anon_sym_BSLASHpnotecite] = ACTIONS(12315), + [anon_sym_BSLASHPnotecite] = ACTIONS(12315), + [anon_sym_BSLASHfnotecite] = ACTIONS(12315), + [anon_sym_BSLASHusepackage] = ACTIONS(12315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12315), + [anon_sym_BSLASHinclude] = ACTIONS(12315), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12315), + [anon_sym_BSLASHinput] = ACTIONS(12315), + [anon_sym_BSLASHsubfile] = ACTIONS(12315), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12315), + [anon_sym_BSLASHbibliography] = ACTIONS(12315), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12315), + [anon_sym_BSLASHincludesvg] = ACTIONS(12315), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12315), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12315), + [anon_sym_BSLASHimport] = ACTIONS(12315), + [anon_sym_BSLASHsubimport] = ACTIONS(12315), + [anon_sym_BSLASHinputfrom] = ACTIONS(12315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12315), + [anon_sym_BSLASHincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHlabel] = ACTIONS(12315), + [anon_sym_BSLASHref] = ACTIONS(12315), + [anon_sym_BSLASHvref] = ACTIONS(12315), + [anon_sym_BSLASHVref] = ACTIONS(12315), + [anon_sym_BSLASHautoref] = ACTIONS(12315), + [anon_sym_BSLASHpageref] = ACTIONS(12315), + [anon_sym_BSLASHcref] = ACTIONS(12315), + [anon_sym_BSLASHCref] = ACTIONS(12315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnameCref] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHlabelcref] = ACTIONS(12315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12315), + [anon_sym_BSLASHeqref] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange] = ACTIONS(12315), + [anon_sym_BSLASHCrefrange] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewlabel] = ACTIONS(12315), + [anon_sym_BSLASHnewcommand] = ACTIONS(12315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12315), + [anon_sym_BSLASHgls] = ACTIONS(12315), + [anon_sym_BSLASHGls] = ACTIONS(12315), + [anon_sym_BSLASHGLS] = ACTIONS(12315), + [anon_sym_BSLASHglspl] = ACTIONS(12315), + [anon_sym_BSLASHGlspl] = ACTIONS(12315), + [anon_sym_BSLASHGLSpl] = ACTIONS(12315), + [anon_sym_BSLASHglsdisp] = ACTIONS(12315), + [anon_sym_BSLASHglslink] = ACTIONS(12315), + [anon_sym_BSLASHglstext] = ACTIONS(12315), + [anon_sym_BSLASHGlstext] = ACTIONS(12315), + [anon_sym_BSLASHGLStext] = ACTIONS(12315), + [anon_sym_BSLASHglsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12315), + [anon_sym_BSLASHglsplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSplural] = ACTIONS(12315), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHglsname] = ACTIONS(12315), + [anon_sym_BSLASHGlsname] = ACTIONS(12315), + [anon_sym_BSLASHGLSname] = ACTIONS(12315), + [anon_sym_BSLASHglssymbol] = ACTIONS(12315), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12315), + [anon_sym_BSLASHglsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12315), + [anon_sym_BSLASHglsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12315), + [anon_sym_BSLASHglsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12315), + [anon_sym_BSLASHglsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12315), + [anon_sym_BSLASHglsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12315), + [anon_sym_BSLASHnewacronym] = ACTIONS(12315), + [anon_sym_BSLASHacrshort] = ACTIONS(12315), + [anon_sym_BSLASHAcrshort] = ACTIONS(12315), + [anon_sym_BSLASHACRshort] = ACTIONS(12315), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12315), + [anon_sym_BSLASHacrlong] = ACTIONS(12315), + [anon_sym_BSLASHAcrlong] = ACTIONS(12315), + [anon_sym_BSLASHACRlong] = ACTIONS(12315), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12315), + [anon_sym_BSLASHacrfull] = ACTIONS(12315), + [anon_sym_BSLASHAcrfull] = ACTIONS(12315), + [anon_sym_BSLASHACRfull] = ACTIONS(12315), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12315), + [anon_sym_BSLASHacs] = ACTIONS(12315), + [anon_sym_BSLASHAcs] = ACTIONS(12315), + [anon_sym_BSLASHacsp] = ACTIONS(12315), + [anon_sym_BSLASHAcsp] = ACTIONS(12315), + [anon_sym_BSLASHacl] = ACTIONS(12315), + [anon_sym_BSLASHAcl] = ACTIONS(12315), + [anon_sym_BSLASHaclp] = ACTIONS(12315), + [anon_sym_BSLASHAclp] = ACTIONS(12315), + [anon_sym_BSLASHacf] = ACTIONS(12315), + [anon_sym_BSLASHAcf] = ACTIONS(12315), + [anon_sym_BSLASHacfp] = ACTIONS(12315), + [anon_sym_BSLASHAcfp] = ACTIONS(12315), + [anon_sym_BSLASHac] = ACTIONS(12315), + [anon_sym_BSLASHAc] = ACTIONS(12315), + [anon_sym_BSLASHacp] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12315), + [anon_sym_BSLASHcolor] = ACTIONS(12315), + [anon_sym_BSLASHcolorbox] = ACTIONS(12315), + [anon_sym_BSLASHtextcolor] = ACTIONS(12315), + [anon_sym_BSLASHpagecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12315), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12315), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12315), + }, + [1670] = { + [sym_generic_command_name] = ACTIONS(12335), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12335), + [anon_sym_BSLASHitem] = ACTIONS(12335), + [anon_sym_LBRACK] = ACTIONS(12785), + [anon_sym_RBRACK] = ACTIONS(12333), + [anon_sym_LBRACE] = ACTIONS(12333), + [anon_sym_RBRACE] = ACTIONS(12333), + [anon_sym_LPAREN] = ACTIONS(12333), + [anon_sym_COMMA] = ACTIONS(12333), + [anon_sym_EQ] = ACTIONS(12333), + [sym_word] = ACTIONS(12333), + [sym_param] = ACTIONS(12333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12333), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12333), + [anon_sym_DOLLAR] = ACTIONS(12335), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12333), + [anon_sym_BSLASHbegin] = ACTIONS(12335), + [anon_sym_BSLASHcaption] = ACTIONS(12335), + [anon_sym_BSLASHcite] = ACTIONS(12335), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCite] = ACTIONS(12335), + [anon_sym_BSLASHnocite] = ACTIONS(12335), + [anon_sym_BSLASHcitet] = ACTIONS(12335), + [anon_sym_BSLASHcitep] = ACTIONS(12335), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteauthor] = ACTIONS(12335), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12335), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitetitle] = ACTIONS(12335), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteyear] = ACTIONS(12335), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitedate] = ACTIONS(12335), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteurl] = ACTIONS(12335), + [anon_sym_BSLASHfullcite] = ACTIONS(12335), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12335), + [anon_sym_BSLASHcitealt] = ACTIONS(12335), + [anon_sym_BSLASHcitealp] = ACTIONS(12335), + [anon_sym_BSLASHcitetext] = ACTIONS(12335), + [anon_sym_BSLASHparencite] = ACTIONS(12335), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHParencite] = ACTIONS(12335), + [anon_sym_BSLASHfootcite] = ACTIONS(12335), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12335), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12335), + [anon_sym_BSLASHtextcite] = ACTIONS(12335), + [anon_sym_BSLASHTextcite] = ACTIONS(12335), + [anon_sym_BSLASHsmartcite] = ACTIONS(12335), + [anon_sym_BSLASHSmartcite] = ACTIONS(12335), + [anon_sym_BSLASHsupercite] = ACTIONS(12335), + [anon_sym_BSLASHautocite] = ACTIONS(12335), + [anon_sym_BSLASHAutocite] = ACTIONS(12335), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHvolcite] = ACTIONS(12335), + [anon_sym_BSLASHVolcite] = ACTIONS(12335), + [anon_sym_BSLASHpvolcite] = ACTIONS(12335), + [anon_sym_BSLASHPvolcite] = ACTIONS(12335), + [anon_sym_BSLASHfvolcite] = ACTIONS(12335), + [anon_sym_BSLASHftvolcite] = ACTIONS(12335), + [anon_sym_BSLASHsvolcite] = ACTIONS(12335), + [anon_sym_BSLASHSvolcite] = ACTIONS(12335), + [anon_sym_BSLASHtvolcite] = ACTIONS(12335), + [anon_sym_BSLASHTvolcite] = ACTIONS(12335), + [anon_sym_BSLASHavolcite] = ACTIONS(12335), + [anon_sym_BSLASHAvolcite] = ACTIONS(12335), + [anon_sym_BSLASHnotecite] = ACTIONS(12335), + [anon_sym_BSLASHpnotecite] = ACTIONS(12335), + [anon_sym_BSLASHPnotecite] = ACTIONS(12335), + [anon_sym_BSLASHfnotecite] = ACTIONS(12335), + [anon_sym_BSLASHusepackage] = ACTIONS(12335), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12335), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12335), + [anon_sym_BSLASHinclude] = ACTIONS(12335), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12335), + [anon_sym_BSLASHinput] = ACTIONS(12335), + [anon_sym_BSLASHsubfile] = ACTIONS(12335), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12335), + [anon_sym_BSLASHbibliography] = ACTIONS(12335), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12335), + [anon_sym_BSLASHincludesvg] = ACTIONS(12335), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12335), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12335), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12335), + [anon_sym_BSLASHimport] = ACTIONS(12335), + [anon_sym_BSLASHsubimport] = ACTIONS(12335), + [anon_sym_BSLASHinputfrom] = ACTIONS(12335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12335), + [anon_sym_BSLASHincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHlabel] = ACTIONS(12335), + [anon_sym_BSLASHref] = ACTIONS(12335), + [anon_sym_BSLASHvref] = ACTIONS(12335), + [anon_sym_BSLASHVref] = ACTIONS(12335), + [anon_sym_BSLASHautoref] = ACTIONS(12335), + [anon_sym_BSLASHpageref] = ACTIONS(12335), + [anon_sym_BSLASHcref] = ACTIONS(12335), + [anon_sym_BSLASHCref] = ACTIONS(12335), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnameCref] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHlabelcref] = ACTIONS(12335), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12335), + [anon_sym_BSLASHeqref] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange] = ACTIONS(12335), + [anon_sym_BSLASHCrefrange] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewlabel] = ACTIONS(12335), + [anon_sym_BSLASHnewcommand] = ACTIONS(12335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12335), + [anon_sym_BSLASHgls] = ACTIONS(12335), + [anon_sym_BSLASHGls] = ACTIONS(12335), + [anon_sym_BSLASHGLS] = ACTIONS(12335), + [anon_sym_BSLASHglspl] = ACTIONS(12335), + [anon_sym_BSLASHGlspl] = ACTIONS(12335), + [anon_sym_BSLASHGLSpl] = ACTIONS(12335), + [anon_sym_BSLASHglsdisp] = ACTIONS(12335), + [anon_sym_BSLASHglslink] = ACTIONS(12335), + [anon_sym_BSLASHglstext] = ACTIONS(12335), + [anon_sym_BSLASHGlstext] = ACTIONS(12335), + [anon_sym_BSLASHGLStext] = ACTIONS(12335), + [anon_sym_BSLASHglsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12335), + [anon_sym_BSLASHglsplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSplural] = ACTIONS(12335), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHglsname] = ACTIONS(12335), + [anon_sym_BSLASHGlsname] = ACTIONS(12335), + [anon_sym_BSLASHGLSname] = ACTIONS(12335), + [anon_sym_BSLASHglssymbol] = ACTIONS(12335), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12335), + [anon_sym_BSLASHglsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12335), + [anon_sym_BSLASHglsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12335), + [anon_sym_BSLASHglsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12335), + [anon_sym_BSLASHglsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12335), + [anon_sym_BSLASHglsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12335), + [anon_sym_BSLASHnewacronym] = ACTIONS(12335), + [anon_sym_BSLASHacrshort] = ACTIONS(12335), + [anon_sym_BSLASHAcrshort] = ACTIONS(12335), + [anon_sym_BSLASHACRshort] = ACTIONS(12335), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12335), + [anon_sym_BSLASHacrlong] = ACTIONS(12335), + [anon_sym_BSLASHAcrlong] = ACTIONS(12335), + [anon_sym_BSLASHACRlong] = ACTIONS(12335), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12335), + [anon_sym_BSLASHacrfull] = ACTIONS(12335), + [anon_sym_BSLASHAcrfull] = ACTIONS(12335), + [anon_sym_BSLASHACRfull] = ACTIONS(12335), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12335), + [anon_sym_BSLASHacs] = ACTIONS(12335), + [anon_sym_BSLASHAcs] = ACTIONS(12335), + [anon_sym_BSLASHacsp] = ACTIONS(12335), + [anon_sym_BSLASHAcsp] = ACTIONS(12335), + [anon_sym_BSLASHacl] = ACTIONS(12335), + [anon_sym_BSLASHAcl] = ACTIONS(12335), + [anon_sym_BSLASHaclp] = ACTIONS(12335), + [anon_sym_BSLASHAclp] = ACTIONS(12335), + [anon_sym_BSLASHacf] = ACTIONS(12335), + [anon_sym_BSLASHAcf] = ACTIONS(12335), + [anon_sym_BSLASHacfp] = ACTIONS(12335), + [anon_sym_BSLASHAcfp] = ACTIONS(12335), + [anon_sym_BSLASHac] = ACTIONS(12335), + [anon_sym_BSLASHAc] = ACTIONS(12335), + [anon_sym_BSLASHacp] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12335), + [anon_sym_BSLASHcolor] = ACTIONS(12335), + [anon_sym_BSLASHcolorbox] = ACTIONS(12335), + [anon_sym_BSLASHtextcolor] = ACTIONS(12335), + [anon_sym_BSLASHpagecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12335), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12335), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12335), + }, + [1671] = { + [sym_generic_command_name] = ACTIONS(12341), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12341), + [anon_sym_BSLASHitem] = ACTIONS(12341), + [anon_sym_LBRACK] = ACTIONS(12339), + [anon_sym_RBRACK] = ACTIONS(12339), + [anon_sym_LBRACE] = ACTIONS(12339), + [anon_sym_RBRACE] = ACTIONS(12339), + [anon_sym_LPAREN] = ACTIONS(12339), + [anon_sym_COMMA] = ACTIONS(12339), + [anon_sym_EQ] = ACTIONS(12339), + [sym_word] = ACTIONS(12339), + [sym_param] = ACTIONS(12339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12339), + [anon_sym_DOLLAR] = ACTIONS(12341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12339), + [anon_sym_BSLASHbegin] = ACTIONS(12341), + [anon_sym_BSLASHcaption] = ACTIONS(12341), + [anon_sym_BSLASHcite] = ACTIONS(12341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCite] = ACTIONS(12341), + [anon_sym_BSLASHnocite] = ACTIONS(12341), + [anon_sym_BSLASHcitet] = ACTIONS(12341), + [anon_sym_BSLASHcitep] = ACTIONS(12341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteauthor] = ACTIONS(12341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitetitle] = ACTIONS(12341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteyear] = ACTIONS(12341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitedate] = ACTIONS(12341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteurl] = ACTIONS(12341), + [anon_sym_BSLASHfullcite] = ACTIONS(12341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12341), + [anon_sym_BSLASHcitealt] = ACTIONS(12341), + [anon_sym_BSLASHcitealp] = ACTIONS(12341), + [anon_sym_BSLASHcitetext] = ACTIONS(12341), + [anon_sym_BSLASHparencite] = ACTIONS(12341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHParencite] = ACTIONS(12341), + [anon_sym_BSLASHfootcite] = ACTIONS(12341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12341), + [anon_sym_BSLASHtextcite] = ACTIONS(12341), + [anon_sym_BSLASHTextcite] = ACTIONS(12341), + [anon_sym_BSLASHsmartcite] = ACTIONS(12341), + [anon_sym_BSLASHSmartcite] = ACTIONS(12341), + [anon_sym_BSLASHsupercite] = ACTIONS(12341), + [anon_sym_BSLASHautocite] = ACTIONS(12341), + [anon_sym_BSLASHAutocite] = ACTIONS(12341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHvolcite] = ACTIONS(12341), + [anon_sym_BSLASHVolcite] = ACTIONS(12341), + [anon_sym_BSLASHpvolcite] = ACTIONS(12341), + [anon_sym_BSLASHPvolcite] = ACTIONS(12341), + [anon_sym_BSLASHfvolcite] = ACTIONS(12341), + [anon_sym_BSLASHftvolcite] = ACTIONS(12341), + [anon_sym_BSLASHsvolcite] = ACTIONS(12341), + [anon_sym_BSLASHSvolcite] = ACTIONS(12341), + [anon_sym_BSLASHtvolcite] = ACTIONS(12341), + [anon_sym_BSLASHTvolcite] = ACTIONS(12341), + [anon_sym_BSLASHavolcite] = ACTIONS(12341), + [anon_sym_BSLASHAvolcite] = ACTIONS(12341), + [anon_sym_BSLASHnotecite] = ACTIONS(12341), + [anon_sym_BSLASHpnotecite] = ACTIONS(12341), + [anon_sym_BSLASHPnotecite] = ACTIONS(12341), + [anon_sym_BSLASHfnotecite] = ACTIONS(12341), + [anon_sym_BSLASHusepackage] = ACTIONS(12341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12341), + [anon_sym_BSLASHinclude] = ACTIONS(12341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12341), + [anon_sym_BSLASHinput] = ACTIONS(12341), + [anon_sym_BSLASHsubfile] = ACTIONS(12341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12341), + [anon_sym_BSLASHbibliography] = ACTIONS(12341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12341), + [anon_sym_BSLASHincludesvg] = ACTIONS(12341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12341), + [anon_sym_BSLASHimport] = ACTIONS(12341), + [anon_sym_BSLASHsubimport] = ACTIONS(12341), + [anon_sym_BSLASHinputfrom] = ACTIONS(12341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12341), + [anon_sym_BSLASHincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHlabel] = ACTIONS(12341), + [anon_sym_BSLASHref] = ACTIONS(12341), + [anon_sym_BSLASHvref] = ACTIONS(12341), + [anon_sym_BSLASHVref] = ACTIONS(12341), + [anon_sym_BSLASHautoref] = ACTIONS(12341), + [anon_sym_BSLASHpageref] = ACTIONS(12341), + [anon_sym_BSLASHcref] = ACTIONS(12341), + [anon_sym_BSLASHCref] = ACTIONS(12341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnameCref] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHlabelcref] = ACTIONS(12341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12341), + [anon_sym_BSLASHeqref] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange] = ACTIONS(12341), + [anon_sym_BSLASHCrefrange] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewlabel] = ACTIONS(12341), + [anon_sym_BSLASHnewcommand] = ACTIONS(12341), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12341), + [anon_sym_BSLASHgls] = ACTIONS(12341), + [anon_sym_BSLASHGls] = ACTIONS(12341), + [anon_sym_BSLASHGLS] = ACTIONS(12341), + [anon_sym_BSLASHglspl] = ACTIONS(12341), + [anon_sym_BSLASHGlspl] = ACTIONS(12341), + [anon_sym_BSLASHGLSpl] = ACTIONS(12341), + [anon_sym_BSLASHglsdisp] = ACTIONS(12341), + [anon_sym_BSLASHglslink] = ACTIONS(12341), + [anon_sym_BSLASHglstext] = ACTIONS(12341), + [anon_sym_BSLASHGlstext] = ACTIONS(12341), + [anon_sym_BSLASHGLStext] = ACTIONS(12341), + [anon_sym_BSLASHglsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12341), + [anon_sym_BSLASHglsplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSplural] = ACTIONS(12341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHglsname] = ACTIONS(12341), + [anon_sym_BSLASHGlsname] = ACTIONS(12341), + [anon_sym_BSLASHGLSname] = ACTIONS(12341), + [anon_sym_BSLASHglssymbol] = ACTIONS(12341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12341), + [anon_sym_BSLASHglsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12341), + [anon_sym_BSLASHglsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12341), + [anon_sym_BSLASHglsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12341), + [anon_sym_BSLASHglsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12341), + [anon_sym_BSLASHglsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12341), + [anon_sym_BSLASHnewacronym] = ACTIONS(12341), + [anon_sym_BSLASHacrshort] = ACTIONS(12341), + [anon_sym_BSLASHAcrshort] = ACTIONS(12341), + [anon_sym_BSLASHACRshort] = ACTIONS(12341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12341), + [anon_sym_BSLASHacrlong] = ACTIONS(12341), + [anon_sym_BSLASHAcrlong] = ACTIONS(12341), + [anon_sym_BSLASHACRlong] = ACTIONS(12341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12341), + [anon_sym_BSLASHacrfull] = ACTIONS(12341), + [anon_sym_BSLASHAcrfull] = ACTIONS(12341), + [anon_sym_BSLASHACRfull] = ACTIONS(12341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12341), + [anon_sym_BSLASHacs] = ACTIONS(12341), + [anon_sym_BSLASHAcs] = ACTIONS(12341), + [anon_sym_BSLASHacsp] = ACTIONS(12341), + [anon_sym_BSLASHAcsp] = ACTIONS(12341), + [anon_sym_BSLASHacl] = ACTIONS(12341), + [anon_sym_BSLASHAcl] = ACTIONS(12341), + [anon_sym_BSLASHaclp] = ACTIONS(12341), + [anon_sym_BSLASHAclp] = ACTIONS(12341), + [anon_sym_BSLASHacf] = ACTIONS(12341), + [anon_sym_BSLASHAcf] = ACTIONS(12341), + [anon_sym_BSLASHacfp] = ACTIONS(12341), + [anon_sym_BSLASHAcfp] = ACTIONS(12341), + [anon_sym_BSLASHac] = ACTIONS(12341), + [anon_sym_BSLASHAc] = ACTIONS(12341), + [anon_sym_BSLASHacp] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12341), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12341), + [anon_sym_BSLASHcolor] = ACTIONS(12341), + [anon_sym_BSLASHcolorbox] = ACTIONS(12341), + [anon_sym_BSLASHtextcolor] = ACTIONS(12341), + [anon_sym_BSLASHpagecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12341), + }, + [1672] = { + [sym_generic_command_name] = ACTIONS(12353), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12353), + [anon_sym_BSLASHitem] = ACTIONS(12353), + [anon_sym_LBRACK] = ACTIONS(12351), + [anon_sym_RBRACK] = ACTIONS(12351), + [anon_sym_LBRACE] = ACTIONS(12351), + [anon_sym_RBRACE] = ACTIONS(12351), + [anon_sym_LPAREN] = ACTIONS(12351), + [anon_sym_COMMA] = ACTIONS(12351), + [anon_sym_EQ] = ACTIONS(12351), + [sym_word] = ACTIONS(12351), + [sym_param] = ACTIONS(12351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12351), + [anon_sym_DOLLAR] = ACTIONS(12353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12351), + [anon_sym_BSLASHbegin] = ACTIONS(12353), + [anon_sym_BSLASHcaption] = ACTIONS(12353), + [anon_sym_BSLASHcite] = ACTIONS(12353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCite] = ACTIONS(12353), + [anon_sym_BSLASHnocite] = ACTIONS(12353), + [anon_sym_BSLASHcitet] = ACTIONS(12353), + [anon_sym_BSLASHcitep] = ACTIONS(12353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteauthor] = ACTIONS(12353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitetitle] = ACTIONS(12353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteyear] = ACTIONS(12353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitedate] = ACTIONS(12353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteurl] = ACTIONS(12353), + [anon_sym_BSLASHfullcite] = ACTIONS(12353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12353), + [anon_sym_BSLASHcitealt] = ACTIONS(12353), + [anon_sym_BSLASHcitealp] = ACTIONS(12353), + [anon_sym_BSLASHcitetext] = ACTIONS(12353), + [anon_sym_BSLASHparencite] = ACTIONS(12353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHParencite] = ACTIONS(12353), + [anon_sym_BSLASHfootcite] = ACTIONS(12353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12353), + [anon_sym_BSLASHtextcite] = ACTIONS(12353), + [anon_sym_BSLASHTextcite] = ACTIONS(12353), + [anon_sym_BSLASHsmartcite] = ACTIONS(12353), + [anon_sym_BSLASHSmartcite] = ACTIONS(12353), + [anon_sym_BSLASHsupercite] = ACTIONS(12353), + [anon_sym_BSLASHautocite] = ACTIONS(12353), + [anon_sym_BSLASHAutocite] = ACTIONS(12353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHvolcite] = ACTIONS(12353), + [anon_sym_BSLASHVolcite] = ACTIONS(12353), + [anon_sym_BSLASHpvolcite] = ACTIONS(12353), + [anon_sym_BSLASHPvolcite] = ACTIONS(12353), + [anon_sym_BSLASHfvolcite] = ACTIONS(12353), + [anon_sym_BSLASHftvolcite] = ACTIONS(12353), + [anon_sym_BSLASHsvolcite] = ACTIONS(12353), + [anon_sym_BSLASHSvolcite] = ACTIONS(12353), + [anon_sym_BSLASHtvolcite] = ACTIONS(12353), + [anon_sym_BSLASHTvolcite] = ACTIONS(12353), + [anon_sym_BSLASHavolcite] = ACTIONS(12353), + [anon_sym_BSLASHAvolcite] = ACTIONS(12353), + [anon_sym_BSLASHnotecite] = ACTIONS(12353), + [anon_sym_BSLASHpnotecite] = ACTIONS(12353), + [anon_sym_BSLASHPnotecite] = ACTIONS(12353), + [anon_sym_BSLASHfnotecite] = ACTIONS(12353), + [anon_sym_BSLASHusepackage] = ACTIONS(12353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12353), + [anon_sym_BSLASHinclude] = ACTIONS(12353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12353), + [anon_sym_BSLASHinput] = ACTIONS(12353), + [anon_sym_BSLASHsubfile] = ACTIONS(12353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12353), + [anon_sym_BSLASHbibliography] = ACTIONS(12353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12353), + [anon_sym_BSLASHincludesvg] = ACTIONS(12353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12353), + [anon_sym_BSLASHimport] = ACTIONS(12353), + [anon_sym_BSLASHsubimport] = ACTIONS(12353), + [anon_sym_BSLASHinputfrom] = ACTIONS(12353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12353), + [anon_sym_BSLASHincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHlabel] = ACTIONS(12353), + [anon_sym_BSLASHref] = ACTIONS(12353), + [anon_sym_BSLASHvref] = ACTIONS(12353), + [anon_sym_BSLASHVref] = ACTIONS(12353), + [anon_sym_BSLASHautoref] = ACTIONS(12353), + [anon_sym_BSLASHpageref] = ACTIONS(12353), + [anon_sym_BSLASHcref] = ACTIONS(12353), + [anon_sym_BSLASHCref] = ACTIONS(12353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnameCref] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHlabelcref] = ACTIONS(12353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12353), + [anon_sym_BSLASHeqref] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange] = ACTIONS(12353), + [anon_sym_BSLASHCrefrange] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewlabel] = ACTIONS(12353), + [anon_sym_BSLASHnewcommand] = ACTIONS(12353), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12353), + [anon_sym_BSLASHgls] = ACTIONS(12353), + [anon_sym_BSLASHGls] = ACTIONS(12353), + [anon_sym_BSLASHGLS] = ACTIONS(12353), + [anon_sym_BSLASHglspl] = ACTIONS(12353), + [anon_sym_BSLASHGlspl] = ACTIONS(12353), + [anon_sym_BSLASHGLSpl] = ACTIONS(12353), + [anon_sym_BSLASHglsdisp] = ACTIONS(12353), + [anon_sym_BSLASHglslink] = ACTIONS(12353), + [anon_sym_BSLASHglstext] = ACTIONS(12353), + [anon_sym_BSLASHGlstext] = ACTIONS(12353), + [anon_sym_BSLASHGLStext] = ACTIONS(12353), + [anon_sym_BSLASHglsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12353), + [anon_sym_BSLASHglsplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSplural] = ACTIONS(12353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHglsname] = ACTIONS(12353), + [anon_sym_BSLASHGlsname] = ACTIONS(12353), + [anon_sym_BSLASHGLSname] = ACTIONS(12353), + [anon_sym_BSLASHglssymbol] = ACTIONS(12353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12353), + [anon_sym_BSLASHglsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12353), + [anon_sym_BSLASHglsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12353), + [anon_sym_BSLASHglsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12353), + [anon_sym_BSLASHglsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12353), + [anon_sym_BSLASHglsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12353), + [anon_sym_BSLASHnewacronym] = ACTIONS(12353), + [anon_sym_BSLASHacrshort] = ACTIONS(12353), + [anon_sym_BSLASHAcrshort] = ACTIONS(12353), + [anon_sym_BSLASHACRshort] = ACTIONS(12353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12353), + [anon_sym_BSLASHacrlong] = ACTIONS(12353), + [anon_sym_BSLASHAcrlong] = ACTIONS(12353), + [anon_sym_BSLASHACRlong] = ACTIONS(12353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12353), + [anon_sym_BSLASHacrfull] = ACTIONS(12353), + [anon_sym_BSLASHAcrfull] = ACTIONS(12353), + [anon_sym_BSLASHACRfull] = ACTIONS(12353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12353), + [anon_sym_BSLASHacs] = ACTIONS(12353), + [anon_sym_BSLASHAcs] = ACTIONS(12353), + [anon_sym_BSLASHacsp] = ACTIONS(12353), + [anon_sym_BSLASHAcsp] = ACTIONS(12353), + [anon_sym_BSLASHacl] = ACTIONS(12353), + [anon_sym_BSLASHAcl] = ACTIONS(12353), + [anon_sym_BSLASHaclp] = ACTIONS(12353), + [anon_sym_BSLASHAclp] = ACTIONS(12353), + [anon_sym_BSLASHacf] = ACTIONS(12353), + [anon_sym_BSLASHAcf] = ACTIONS(12353), + [anon_sym_BSLASHacfp] = ACTIONS(12353), + [anon_sym_BSLASHAcfp] = ACTIONS(12353), + [anon_sym_BSLASHac] = ACTIONS(12353), + [anon_sym_BSLASHAc] = ACTIONS(12353), + [anon_sym_BSLASHacp] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12353), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12353), + [anon_sym_BSLASHcolor] = ACTIONS(12353), + [anon_sym_BSLASHcolorbox] = ACTIONS(12353), + [anon_sym_BSLASHtextcolor] = ACTIONS(12353), + [anon_sym_BSLASHpagecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12353), + }, + [1673] = { + [sym_generic_command_name] = ACTIONS(12357), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12357), + [anon_sym_BSLASHitem] = ACTIONS(12357), + [anon_sym_LBRACK] = ACTIONS(12355), + [anon_sym_RBRACK] = ACTIONS(12355), + [anon_sym_LBRACE] = ACTIONS(12355), + [anon_sym_RBRACE] = ACTIONS(12355), + [anon_sym_LPAREN] = ACTIONS(12355), + [anon_sym_COMMA] = ACTIONS(12355), + [anon_sym_EQ] = ACTIONS(12355), + [sym_word] = ACTIONS(12355), + [sym_param] = ACTIONS(12355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12355), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12355), + [anon_sym_DOLLAR] = ACTIONS(12357), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12355), + [anon_sym_BSLASHbegin] = ACTIONS(12357), + [anon_sym_BSLASHcaption] = ACTIONS(12357), + [anon_sym_BSLASHcite] = ACTIONS(12357), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCite] = ACTIONS(12357), + [anon_sym_BSLASHnocite] = ACTIONS(12357), + [anon_sym_BSLASHcitet] = ACTIONS(12357), + [anon_sym_BSLASHcitep] = ACTIONS(12357), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteauthor] = ACTIONS(12357), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12357), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitetitle] = ACTIONS(12357), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteyear] = ACTIONS(12357), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitedate] = ACTIONS(12357), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteurl] = ACTIONS(12357), + [anon_sym_BSLASHfullcite] = ACTIONS(12357), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12357), + [anon_sym_BSLASHcitealt] = ACTIONS(12357), + [anon_sym_BSLASHcitealp] = ACTIONS(12357), + [anon_sym_BSLASHcitetext] = ACTIONS(12357), + [anon_sym_BSLASHparencite] = ACTIONS(12357), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHParencite] = ACTIONS(12357), + [anon_sym_BSLASHfootcite] = ACTIONS(12357), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12357), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12357), + [anon_sym_BSLASHtextcite] = ACTIONS(12357), + [anon_sym_BSLASHTextcite] = ACTIONS(12357), + [anon_sym_BSLASHsmartcite] = ACTIONS(12357), + [anon_sym_BSLASHSmartcite] = ACTIONS(12357), + [anon_sym_BSLASHsupercite] = ACTIONS(12357), + [anon_sym_BSLASHautocite] = ACTIONS(12357), + [anon_sym_BSLASHAutocite] = ACTIONS(12357), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHvolcite] = ACTIONS(12357), + [anon_sym_BSLASHVolcite] = ACTIONS(12357), + [anon_sym_BSLASHpvolcite] = ACTIONS(12357), + [anon_sym_BSLASHPvolcite] = ACTIONS(12357), + [anon_sym_BSLASHfvolcite] = ACTIONS(12357), + [anon_sym_BSLASHftvolcite] = ACTIONS(12357), + [anon_sym_BSLASHsvolcite] = ACTIONS(12357), + [anon_sym_BSLASHSvolcite] = ACTIONS(12357), + [anon_sym_BSLASHtvolcite] = ACTIONS(12357), + [anon_sym_BSLASHTvolcite] = ACTIONS(12357), + [anon_sym_BSLASHavolcite] = ACTIONS(12357), + [anon_sym_BSLASHAvolcite] = ACTIONS(12357), + [anon_sym_BSLASHnotecite] = ACTIONS(12357), + [anon_sym_BSLASHpnotecite] = ACTIONS(12357), + [anon_sym_BSLASHPnotecite] = ACTIONS(12357), + [anon_sym_BSLASHfnotecite] = ACTIONS(12357), + [anon_sym_BSLASHusepackage] = ACTIONS(12357), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12357), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12357), + [anon_sym_BSLASHinclude] = ACTIONS(12357), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12357), + [anon_sym_BSLASHinput] = ACTIONS(12357), + [anon_sym_BSLASHsubfile] = ACTIONS(12357), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12357), + [anon_sym_BSLASHbibliography] = ACTIONS(12357), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12357), + [anon_sym_BSLASHincludesvg] = ACTIONS(12357), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12357), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12357), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12357), + [anon_sym_BSLASHimport] = ACTIONS(12357), + [anon_sym_BSLASHsubimport] = ACTIONS(12357), + [anon_sym_BSLASHinputfrom] = ACTIONS(12357), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12357), + [anon_sym_BSLASHincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHlabel] = ACTIONS(12357), + [anon_sym_BSLASHref] = ACTIONS(12357), + [anon_sym_BSLASHvref] = ACTIONS(12357), + [anon_sym_BSLASHVref] = ACTIONS(12357), + [anon_sym_BSLASHautoref] = ACTIONS(12357), + [anon_sym_BSLASHpageref] = ACTIONS(12357), + [anon_sym_BSLASHcref] = ACTIONS(12357), + [anon_sym_BSLASHCref] = ACTIONS(12357), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnameCref] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHlabelcref] = ACTIONS(12357), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12357), + [anon_sym_BSLASHeqref] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange] = ACTIONS(12357), + [anon_sym_BSLASHCrefrange] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewlabel] = ACTIONS(12357), + [anon_sym_BSLASHnewcommand] = ACTIONS(12357), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12357), + [anon_sym_BSLASHgls] = ACTIONS(12357), + [anon_sym_BSLASHGls] = ACTIONS(12357), + [anon_sym_BSLASHGLS] = ACTIONS(12357), + [anon_sym_BSLASHglspl] = ACTIONS(12357), + [anon_sym_BSLASHGlspl] = ACTIONS(12357), + [anon_sym_BSLASHGLSpl] = ACTIONS(12357), + [anon_sym_BSLASHglsdisp] = ACTIONS(12357), + [anon_sym_BSLASHglslink] = ACTIONS(12357), + [anon_sym_BSLASHglstext] = ACTIONS(12357), + [anon_sym_BSLASHGlstext] = ACTIONS(12357), + [anon_sym_BSLASHGLStext] = ACTIONS(12357), + [anon_sym_BSLASHglsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12357), + [anon_sym_BSLASHglsplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSplural] = ACTIONS(12357), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHglsname] = ACTIONS(12357), + [anon_sym_BSLASHGlsname] = ACTIONS(12357), + [anon_sym_BSLASHGLSname] = ACTIONS(12357), + [anon_sym_BSLASHglssymbol] = ACTIONS(12357), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12357), + [anon_sym_BSLASHglsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12357), + [anon_sym_BSLASHglsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12357), + [anon_sym_BSLASHglsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12357), + [anon_sym_BSLASHglsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12357), + [anon_sym_BSLASHglsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12357), + [anon_sym_BSLASHnewacronym] = ACTIONS(12357), + [anon_sym_BSLASHacrshort] = ACTIONS(12357), + [anon_sym_BSLASHAcrshort] = ACTIONS(12357), + [anon_sym_BSLASHACRshort] = ACTIONS(12357), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12357), + [anon_sym_BSLASHacrlong] = ACTIONS(12357), + [anon_sym_BSLASHAcrlong] = ACTIONS(12357), + [anon_sym_BSLASHACRlong] = ACTIONS(12357), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12357), + [anon_sym_BSLASHacrfull] = ACTIONS(12357), + [anon_sym_BSLASHAcrfull] = ACTIONS(12357), + [anon_sym_BSLASHACRfull] = ACTIONS(12357), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12357), + [anon_sym_BSLASHacs] = ACTIONS(12357), + [anon_sym_BSLASHAcs] = ACTIONS(12357), + [anon_sym_BSLASHacsp] = ACTIONS(12357), + [anon_sym_BSLASHAcsp] = ACTIONS(12357), + [anon_sym_BSLASHacl] = ACTIONS(12357), + [anon_sym_BSLASHAcl] = ACTIONS(12357), + [anon_sym_BSLASHaclp] = ACTIONS(12357), + [anon_sym_BSLASHAclp] = ACTIONS(12357), + [anon_sym_BSLASHacf] = ACTIONS(12357), + [anon_sym_BSLASHAcf] = ACTIONS(12357), + [anon_sym_BSLASHacfp] = ACTIONS(12357), + [anon_sym_BSLASHAcfp] = ACTIONS(12357), + [anon_sym_BSLASHac] = ACTIONS(12357), + [anon_sym_BSLASHAc] = ACTIONS(12357), + [anon_sym_BSLASHacp] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12357), + [anon_sym_BSLASHcolor] = ACTIONS(12357), + [anon_sym_BSLASHcolorbox] = ACTIONS(12357), + [anon_sym_BSLASHtextcolor] = ACTIONS(12357), + [anon_sym_BSLASHpagecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12357), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12357), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12357), + }, + [1674] = { + [sym_generic_command_name] = ACTIONS(12361), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12361), + [anon_sym_BSLASHitem] = ACTIONS(12361), + [anon_sym_LBRACK] = ACTIONS(12359), + [anon_sym_RBRACK] = ACTIONS(12359), + [anon_sym_LBRACE] = ACTIONS(12359), + [anon_sym_RBRACE] = ACTIONS(12359), + [anon_sym_LPAREN] = ACTIONS(12359), + [anon_sym_COMMA] = ACTIONS(12359), + [anon_sym_EQ] = ACTIONS(12359), + [sym_word] = ACTIONS(12359), + [sym_param] = ACTIONS(12359), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12359), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12359), + [anon_sym_DOLLAR] = ACTIONS(12361), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12359), + [anon_sym_BSLASHbegin] = ACTIONS(12361), + [anon_sym_BSLASHcaption] = ACTIONS(12361), + [anon_sym_BSLASHcite] = ACTIONS(12361), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCite] = ACTIONS(12361), + [anon_sym_BSLASHnocite] = ACTIONS(12361), + [anon_sym_BSLASHcitet] = ACTIONS(12361), + [anon_sym_BSLASHcitep] = ACTIONS(12361), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteauthor] = ACTIONS(12361), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12361), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitetitle] = ACTIONS(12361), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteyear] = ACTIONS(12361), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitedate] = ACTIONS(12361), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteurl] = ACTIONS(12361), + [anon_sym_BSLASHfullcite] = ACTIONS(12361), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12361), + [anon_sym_BSLASHcitealt] = ACTIONS(12361), + [anon_sym_BSLASHcitealp] = ACTIONS(12361), + [anon_sym_BSLASHcitetext] = ACTIONS(12361), + [anon_sym_BSLASHparencite] = ACTIONS(12361), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHParencite] = ACTIONS(12361), + [anon_sym_BSLASHfootcite] = ACTIONS(12361), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12361), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12361), + [anon_sym_BSLASHtextcite] = ACTIONS(12361), + [anon_sym_BSLASHTextcite] = ACTIONS(12361), + [anon_sym_BSLASHsmartcite] = ACTIONS(12361), + [anon_sym_BSLASHSmartcite] = ACTIONS(12361), + [anon_sym_BSLASHsupercite] = ACTIONS(12361), + [anon_sym_BSLASHautocite] = ACTIONS(12361), + [anon_sym_BSLASHAutocite] = ACTIONS(12361), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHvolcite] = ACTIONS(12361), + [anon_sym_BSLASHVolcite] = ACTIONS(12361), + [anon_sym_BSLASHpvolcite] = ACTIONS(12361), + [anon_sym_BSLASHPvolcite] = ACTIONS(12361), + [anon_sym_BSLASHfvolcite] = ACTIONS(12361), + [anon_sym_BSLASHftvolcite] = ACTIONS(12361), + [anon_sym_BSLASHsvolcite] = ACTIONS(12361), + [anon_sym_BSLASHSvolcite] = ACTIONS(12361), + [anon_sym_BSLASHtvolcite] = ACTIONS(12361), + [anon_sym_BSLASHTvolcite] = ACTIONS(12361), + [anon_sym_BSLASHavolcite] = ACTIONS(12361), + [anon_sym_BSLASHAvolcite] = ACTIONS(12361), + [anon_sym_BSLASHnotecite] = ACTIONS(12361), + [anon_sym_BSLASHpnotecite] = ACTIONS(12361), + [anon_sym_BSLASHPnotecite] = ACTIONS(12361), + [anon_sym_BSLASHfnotecite] = ACTIONS(12361), + [anon_sym_BSLASHusepackage] = ACTIONS(12361), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12361), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12361), + [anon_sym_BSLASHinclude] = ACTIONS(12361), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12361), + [anon_sym_BSLASHinput] = ACTIONS(12361), + [anon_sym_BSLASHsubfile] = ACTIONS(12361), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12361), + [anon_sym_BSLASHbibliography] = ACTIONS(12361), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12361), + [anon_sym_BSLASHincludesvg] = ACTIONS(12361), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12361), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12361), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12361), + [anon_sym_BSLASHimport] = ACTIONS(12361), + [anon_sym_BSLASHsubimport] = ACTIONS(12361), + [anon_sym_BSLASHinputfrom] = ACTIONS(12361), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12361), + [anon_sym_BSLASHincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHlabel] = ACTIONS(12361), + [anon_sym_BSLASHref] = ACTIONS(12361), + [anon_sym_BSLASHvref] = ACTIONS(12361), + [anon_sym_BSLASHVref] = ACTIONS(12361), + [anon_sym_BSLASHautoref] = ACTIONS(12361), + [anon_sym_BSLASHpageref] = ACTIONS(12361), + [anon_sym_BSLASHcref] = ACTIONS(12361), + [anon_sym_BSLASHCref] = ACTIONS(12361), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnameCref] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHlabelcref] = ACTIONS(12361), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12361), + [anon_sym_BSLASHeqref] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange] = ACTIONS(12361), + [anon_sym_BSLASHCrefrange] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewlabel] = ACTIONS(12361), + [anon_sym_BSLASHnewcommand] = ACTIONS(12361), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12361), + [anon_sym_BSLASHgls] = ACTIONS(12361), + [anon_sym_BSLASHGls] = ACTIONS(12361), + [anon_sym_BSLASHGLS] = ACTIONS(12361), + [anon_sym_BSLASHglspl] = ACTIONS(12361), + [anon_sym_BSLASHGlspl] = ACTIONS(12361), + [anon_sym_BSLASHGLSpl] = ACTIONS(12361), + [anon_sym_BSLASHglsdisp] = ACTIONS(12361), + [anon_sym_BSLASHglslink] = ACTIONS(12361), + [anon_sym_BSLASHglstext] = ACTIONS(12361), + [anon_sym_BSLASHGlstext] = ACTIONS(12361), + [anon_sym_BSLASHGLStext] = ACTIONS(12361), + [anon_sym_BSLASHglsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12361), + [anon_sym_BSLASHglsplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSplural] = ACTIONS(12361), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHglsname] = ACTIONS(12361), + [anon_sym_BSLASHGlsname] = ACTIONS(12361), + [anon_sym_BSLASHGLSname] = ACTIONS(12361), + [anon_sym_BSLASHglssymbol] = ACTIONS(12361), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12361), + [anon_sym_BSLASHglsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12361), + [anon_sym_BSLASHglsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12361), + [anon_sym_BSLASHglsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12361), + [anon_sym_BSLASHglsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12361), + [anon_sym_BSLASHglsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12361), + [anon_sym_BSLASHnewacronym] = ACTIONS(12361), + [anon_sym_BSLASHacrshort] = ACTIONS(12361), + [anon_sym_BSLASHAcrshort] = ACTIONS(12361), + [anon_sym_BSLASHACRshort] = ACTIONS(12361), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12361), + [anon_sym_BSLASHacrlong] = ACTIONS(12361), + [anon_sym_BSLASHAcrlong] = ACTIONS(12361), + [anon_sym_BSLASHACRlong] = ACTIONS(12361), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12361), + [anon_sym_BSLASHacrfull] = ACTIONS(12361), + [anon_sym_BSLASHAcrfull] = ACTIONS(12361), + [anon_sym_BSLASHACRfull] = ACTIONS(12361), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12361), + [anon_sym_BSLASHacs] = ACTIONS(12361), + [anon_sym_BSLASHAcs] = ACTIONS(12361), + [anon_sym_BSLASHacsp] = ACTIONS(12361), + [anon_sym_BSLASHAcsp] = ACTIONS(12361), + [anon_sym_BSLASHacl] = ACTIONS(12361), + [anon_sym_BSLASHAcl] = ACTIONS(12361), + [anon_sym_BSLASHaclp] = ACTIONS(12361), + [anon_sym_BSLASHAclp] = ACTIONS(12361), + [anon_sym_BSLASHacf] = ACTIONS(12361), + [anon_sym_BSLASHAcf] = ACTIONS(12361), + [anon_sym_BSLASHacfp] = ACTIONS(12361), + [anon_sym_BSLASHAcfp] = ACTIONS(12361), + [anon_sym_BSLASHac] = ACTIONS(12361), + [anon_sym_BSLASHAc] = ACTIONS(12361), + [anon_sym_BSLASHacp] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12361), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12361), + [anon_sym_BSLASHcolor] = ACTIONS(12361), + [anon_sym_BSLASHcolorbox] = ACTIONS(12361), + [anon_sym_BSLASHtextcolor] = ACTIONS(12361), + [anon_sym_BSLASHpagecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12361), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12361), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12361), + }, + [1675] = { + [sym_generic_command_name] = ACTIONS(12369), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12369), + [anon_sym_BSLASHitem] = ACTIONS(12369), + [anon_sym_LBRACK] = ACTIONS(12367), + [anon_sym_RBRACK] = ACTIONS(12367), + [anon_sym_LBRACE] = ACTIONS(12367), + [anon_sym_RBRACE] = ACTIONS(12367), + [anon_sym_LPAREN] = ACTIONS(12367), + [anon_sym_COMMA] = ACTIONS(12367), + [anon_sym_EQ] = ACTIONS(12367), + [sym_word] = ACTIONS(12367), + [sym_param] = ACTIONS(12367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12367), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12367), + [anon_sym_DOLLAR] = ACTIONS(12369), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12367), + [anon_sym_BSLASHbegin] = ACTIONS(12369), + [anon_sym_BSLASHcaption] = ACTIONS(12369), + [anon_sym_BSLASHcite] = ACTIONS(12369), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCite] = ACTIONS(12369), + [anon_sym_BSLASHnocite] = ACTIONS(12369), + [anon_sym_BSLASHcitet] = ACTIONS(12369), + [anon_sym_BSLASHcitep] = ACTIONS(12369), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteauthor] = ACTIONS(12369), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12369), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitetitle] = ACTIONS(12369), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteyear] = ACTIONS(12369), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitedate] = ACTIONS(12369), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteurl] = ACTIONS(12369), + [anon_sym_BSLASHfullcite] = ACTIONS(12369), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12369), + [anon_sym_BSLASHcitealt] = ACTIONS(12369), + [anon_sym_BSLASHcitealp] = ACTIONS(12369), + [anon_sym_BSLASHcitetext] = ACTIONS(12369), + [anon_sym_BSLASHparencite] = ACTIONS(12369), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHParencite] = ACTIONS(12369), + [anon_sym_BSLASHfootcite] = ACTIONS(12369), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12369), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12369), + [anon_sym_BSLASHtextcite] = ACTIONS(12369), + [anon_sym_BSLASHTextcite] = ACTIONS(12369), + [anon_sym_BSLASHsmartcite] = ACTIONS(12369), + [anon_sym_BSLASHSmartcite] = ACTIONS(12369), + [anon_sym_BSLASHsupercite] = ACTIONS(12369), + [anon_sym_BSLASHautocite] = ACTIONS(12369), + [anon_sym_BSLASHAutocite] = ACTIONS(12369), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHvolcite] = ACTIONS(12369), + [anon_sym_BSLASHVolcite] = ACTIONS(12369), + [anon_sym_BSLASHpvolcite] = ACTIONS(12369), + [anon_sym_BSLASHPvolcite] = ACTIONS(12369), + [anon_sym_BSLASHfvolcite] = ACTIONS(12369), + [anon_sym_BSLASHftvolcite] = ACTIONS(12369), + [anon_sym_BSLASHsvolcite] = ACTIONS(12369), + [anon_sym_BSLASHSvolcite] = ACTIONS(12369), + [anon_sym_BSLASHtvolcite] = ACTIONS(12369), + [anon_sym_BSLASHTvolcite] = ACTIONS(12369), + [anon_sym_BSLASHavolcite] = ACTIONS(12369), + [anon_sym_BSLASHAvolcite] = ACTIONS(12369), + [anon_sym_BSLASHnotecite] = ACTIONS(12369), + [anon_sym_BSLASHpnotecite] = ACTIONS(12369), + [anon_sym_BSLASHPnotecite] = ACTIONS(12369), + [anon_sym_BSLASHfnotecite] = ACTIONS(12369), + [anon_sym_BSLASHusepackage] = ACTIONS(12369), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12369), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12369), + [anon_sym_BSLASHinclude] = ACTIONS(12369), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12369), + [anon_sym_BSLASHinput] = ACTIONS(12369), + [anon_sym_BSLASHsubfile] = ACTIONS(12369), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12369), + [anon_sym_BSLASHbibliography] = ACTIONS(12369), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12369), + [anon_sym_BSLASHincludesvg] = ACTIONS(12369), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12369), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12369), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12369), + [anon_sym_BSLASHimport] = ACTIONS(12369), + [anon_sym_BSLASHsubimport] = ACTIONS(12369), + [anon_sym_BSLASHinputfrom] = ACTIONS(12369), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12369), + [anon_sym_BSLASHincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHlabel] = ACTIONS(12369), + [anon_sym_BSLASHref] = ACTIONS(12369), + [anon_sym_BSLASHvref] = ACTIONS(12369), + [anon_sym_BSLASHVref] = ACTIONS(12369), + [anon_sym_BSLASHautoref] = ACTIONS(12369), + [anon_sym_BSLASHpageref] = ACTIONS(12369), + [anon_sym_BSLASHcref] = ACTIONS(12369), + [anon_sym_BSLASHCref] = ACTIONS(12369), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnameCref] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHlabelcref] = ACTIONS(12369), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12369), + [anon_sym_BSLASHeqref] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange] = ACTIONS(12369), + [anon_sym_BSLASHCrefrange] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewlabel] = ACTIONS(12369), + [anon_sym_BSLASHnewcommand] = ACTIONS(12369), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12369), + [anon_sym_BSLASHgls] = ACTIONS(12369), + [anon_sym_BSLASHGls] = ACTIONS(12369), + [anon_sym_BSLASHGLS] = ACTIONS(12369), + [anon_sym_BSLASHglspl] = ACTIONS(12369), + [anon_sym_BSLASHGlspl] = ACTIONS(12369), + [anon_sym_BSLASHGLSpl] = ACTIONS(12369), + [anon_sym_BSLASHglsdisp] = ACTIONS(12369), + [anon_sym_BSLASHglslink] = ACTIONS(12369), + [anon_sym_BSLASHglstext] = ACTIONS(12369), + [anon_sym_BSLASHGlstext] = ACTIONS(12369), + [anon_sym_BSLASHGLStext] = ACTIONS(12369), + [anon_sym_BSLASHglsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12369), + [anon_sym_BSLASHglsplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSplural] = ACTIONS(12369), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHglsname] = ACTIONS(12369), + [anon_sym_BSLASHGlsname] = ACTIONS(12369), + [anon_sym_BSLASHGLSname] = ACTIONS(12369), + [anon_sym_BSLASHglssymbol] = ACTIONS(12369), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12369), + [anon_sym_BSLASHglsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12369), + [anon_sym_BSLASHglsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12369), + [anon_sym_BSLASHglsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12369), + [anon_sym_BSLASHglsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12369), + [anon_sym_BSLASHglsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12369), + [anon_sym_BSLASHnewacronym] = ACTIONS(12369), + [anon_sym_BSLASHacrshort] = ACTIONS(12369), + [anon_sym_BSLASHAcrshort] = ACTIONS(12369), + [anon_sym_BSLASHACRshort] = ACTIONS(12369), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12369), + [anon_sym_BSLASHacrlong] = ACTIONS(12369), + [anon_sym_BSLASHAcrlong] = ACTIONS(12369), + [anon_sym_BSLASHACRlong] = ACTIONS(12369), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12369), + [anon_sym_BSLASHacrfull] = ACTIONS(12369), + [anon_sym_BSLASHAcrfull] = ACTIONS(12369), + [anon_sym_BSLASHACRfull] = ACTIONS(12369), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12369), + [anon_sym_BSLASHacs] = ACTIONS(12369), + [anon_sym_BSLASHAcs] = ACTIONS(12369), + [anon_sym_BSLASHacsp] = ACTIONS(12369), + [anon_sym_BSLASHAcsp] = ACTIONS(12369), + [anon_sym_BSLASHacl] = ACTIONS(12369), + [anon_sym_BSLASHAcl] = ACTIONS(12369), + [anon_sym_BSLASHaclp] = ACTIONS(12369), + [anon_sym_BSLASHAclp] = ACTIONS(12369), + [anon_sym_BSLASHacf] = ACTIONS(12369), + [anon_sym_BSLASHAcf] = ACTIONS(12369), + [anon_sym_BSLASHacfp] = ACTIONS(12369), + [anon_sym_BSLASHAcfp] = ACTIONS(12369), + [anon_sym_BSLASHac] = ACTIONS(12369), + [anon_sym_BSLASHAc] = ACTIONS(12369), + [anon_sym_BSLASHacp] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12369), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12369), + [anon_sym_BSLASHcolor] = ACTIONS(12369), + [anon_sym_BSLASHcolorbox] = ACTIONS(12369), + [anon_sym_BSLASHtextcolor] = ACTIONS(12369), + [anon_sym_BSLASHpagecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12369), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12369), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12369), + }, + [1676] = { + [sym_generic_command_name] = ACTIONS(12373), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12373), + [anon_sym_BSLASHitem] = ACTIONS(12373), + [anon_sym_LBRACK] = ACTIONS(12371), + [anon_sym_RBRACK] = ACTIONS(12371), + [anon_sym_LBRACE] = ACTIONS(12371), + [anon_sym_RBRACE] = ACTIONS(12371), + [anon_sym_LPAREN] = ACTIONS(12371), + [anon_sym_COMMA] = ACTIONS(12371), + [anon_sym_EQ] = ACTIONS(12371), + [sym_word] = ACTIONS(12371), + [sym_param] = ACTIONS(12371), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12371), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12371), + [anon_sym_DOLLAR] = ACTIONS(12373), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12371), + [anon_sym_BSLASHbegin] = ACTIONS(12373), + [anon_sym_BSLASHcaption] = ACTIONS(12373), + [anon_sym_BSLASHcite] = ACTIONS(12373), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCite] = ACTIONS(12373), + [anon_sym_BSLASHnocite] = ACTIONS(12373), + [anon_sym_BSLASHcitet] = ACTIONS(12373), + [anon_sym_BSLASHcitep] = ACTIONS(12373), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteauthor] = ACTIONS(12373), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12373), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitetitle] = ACTIONS(12373), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteyear] = ACTIONS(12373), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitedate] = ACTIONS(12373), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteurl] = ACTIONS(12373), + [anon_sym_BSLASHfullcite] = ACTIONS(12373), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12373), + [anon_sym_BSLASHcitealt] = ACTIONS(12373), + [anon_sym_BSLASHcitealp] = ACTIONS(12373), + [anon_sym_BSLASHcitetext] = ACTIONS(12373), + [anon_sym_BSLASHparencite] = ACTIONS(12373), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHParencite] = ACTIONS(12373), + [anon_sym_BSLASHfootcite] = ACTIONS(12373), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12373), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12373), + [anon_sym_BSLASHtextcite] = ACTIONS(12373), + [anon_sym_BSLASHTextcite] = ACTIONS(12373), + [anon_sym_BSLASHsmartcite] = ACTIONS(12373), + [anon_sym_BSLASHSmartcite] = ACTIONS(12373), + [anon_sym_BSLASHsupercite] = ACTIONS(12373), + [anon_sym_BSLASHautocite] = ACTIONS(12373), + [anon_sym_BSLASHAutocite] = ACTIONS(12373), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHvolcite] = ACTIONS(12373), + [anon_sym_BSLASHVolcite] = ACTIONS(12373), + [anon_sym_BSLASHpvolcite] = ACTIONS(12373), + [anon_sym_BSLASHPvolcite] = ACTIONS(12373), + [anon_sym_BSLASHfvolcite] = ACTIONS(12373), + [anon_sym_BSLASHftvolcite] = ACTIONS(12373), + [anon_sym_BSLASHsvolcite] = ACTIONS(12373), + [anon_sym_BSLASHSvolcite] = ACTIONS(12373), + [anon_sym_BSLASHtvolcite] = ACTIONS(12373), + [anon_sym_BSLASHTvolcite] = ACTIONS(12373), + [anon_sym_BSLASHavolcite] = ACTIONS(12373), + [anon_sym_BSLASHAvolcite] = ACTIONS(12373), + [anon_sym_BSLASHnotecite] = ACTIONS(12373), + [anon_sym_BSLASHpnotecite] = ACTIONS(12373), + [anon_sym_BSLASHPnotecite] = ACTIONS(12373), + [anon_sym_BSLASHfnotecite] = ACTIONS(12373), + [anon_sym_BSLASHusepackage] = ACTIONS(12373), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12373), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12373), + [anon_sym_BSLASHinclude] = ACTIONS(12373), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12373), + [anon_sym_BSLASHinput] = ACTIONS(12373), + [anon_sym_BSLASHsubfile] = ACTIONS(12373), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12373), + [anon_sym_BSLASHbibliography] = ACTIONS(12373), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12373), + [anon_sym_BSLASHincludesvg] = ACTIONS(12373), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12373), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12373), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12373), + [anon_sym_BSLASHimport] = ACTIONS(12373), + [anon_sym_BSLASHsubimport] = ACTIONS(12373), + [anon_sym_BSLASHinputfrom] = ACTIONS(12373), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12373), + [anon_sym_BSLASHincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHlabel] = ACTIONS(12373), + [anon_sym_BSLASHref] = ACTIONS(12373), + [anon_sym_BSLASHvref] = ACTIONS(12373), + [anon_sym_BSLASHVref] = ACTIONS(12373), + [anon_sym_BSLASHautoref] = ACTIONS(12373), + [anon_sym_BSLASHpageref] = ACTIONS(12373), + [anon_sym_BSLASHcref] = ACTIONS(12373), + [anon_sym_BSLASHCref] = ACTIONS(12373), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnameCref] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHlabelcref] = ACTIONS(12373), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12373), + [anon_sym_BSLASHeqref] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange] = ACTIONS(12373), + [anon_sym_BSLASHCrefrange] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewlabel] = ACTIONS(12373), + [anon_sym_BSLASHnewcommand] = ACTIONS(12373), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12373), + [anon_sym_BSLASHgls] = ACTIONS(12373), + [anon_sym_BSLASHGls] = ACTIONS(12373), + [anon_sym_BSLASHGLS] = ACTIONS(12373), + [anon_sym_BSLASHglspl] = ACTIONS(12373), + [anon_sym_BSLASHGlspl] = ACTIONS(12373), + [anon_sym_BSLASHGLSpl] = ACTIONS(12373), + [anon_sym_BSLASHglsdisp] = ACTIONS(12373), + [anon_sym_BSLASHglslink] = ACTIONS(12373), + [anon_sym_BSLASHglstext] = ACTIONS(12373), + [anon_sym_BSLASHGlstext] = ACTIONS(12373), + [anon_sym_BSLASHGLStext] = ACTIONS(12373), + [anon_sym_BSLASHglsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12373), + [anon_sym_BSLASHglsplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSplural] = ACTIONS(12373), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHglsname] = ACTIONS(12373), + [anon_sym_BSLASHGlsname] = ACTIONS(12373), + [anon_sym_BSLASHGLSname] = ACTIONS(12373), + [anon_sym_BSLASHglssymbol] = ACTIONS(12373), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12373), + [anon_sym_BSLASHglsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12373), + [anon_sym_BSLASHglsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12373), + [anon_sym_BSLASHglsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12373), + [anon_sym_BSLASHglsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12373), + [anon_sym_BSLASHglsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12373), + [anon_sym_BSLASHnewacronym] = ACTIONS(12373), + [anon_sym_BSLASHacrshort] = ACTIONS(12373), + [anon_sym_BSLASHAcrshort] = ACTIONS(12373), + [anon_sym_BSLASHACRshort] = ACTIONS(12373), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12373), + [anon_sym_BSLASHacrlong] = ACTIONS(12373), + [anon_sym_BSLASHAcrlong] = ACTIONS(12373), + [anon_sym_BSLASHACRlong] = ACTIONS(12373), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12373), + [anon_sym_BSLASHacrfull] = ACTIONS(12373), + [anon_sym_BSLASHAcrfull] = ACTIONS(12373), + [anon_sym_BSLASHACRfull] = ACTIONS(12373), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12373), + [anon_sym_BSLASHacs] = ACTIONS(12373), + [anon_sym_BSLASHAcs] = ACTIONS(12373), + [anon_sym_BSLASHacsp] = ACTIONS(12373), + [anon_sym_BSLASHAcsp] = ACTIONS(12373), + [anon_sym_BSLASHacl] = ACTIONS(12373), + [anon_sym_BSLASHAcl] = ACTIONS(12373), + [anon_sym_BSLASHaclp] = ACTIONS(12373), + [anon_sym_BSLASHAclp] = ACTIONS(12373), + [anon_sym_BSLASHacf] = ACTIONS(12373), + [anon_sym_BSLASHAcf] = ACTIONS(12373), + [anon_sym_BSLASHacfp] = ACTIONS(12373), + [anon_sym_BSLASHAcfp] = ACTIONS(12373), + [anon_sym_BSLASHac] = ACTIONS(12373), + [anon_sym_BSLASHAc] = ACTIONS(12373), + [anon_sym_BSLASHacp] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12373), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12373), + [anon_sym_BSLASHcolor] = ACTIONS(12373), + [anon_sym_BSLASHcolorbox] = ACTIONS(12373), + [anon_sym_BSLASHtextcolor] = ACTIONS(12373), + [anon_sym_BSLASHpagecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12373), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12373), + }, + [1677] = { + [sym_generic_command_name] = ACTIONS(12377), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12377), + [anon_sym_BSLASHitem] = ACTIONS(12377), + [anon_sym_LBRACK] = ACTIONS(12375), + [anon_sym_RBRACK] = ACTIONS(12375), + [anon_sym_LBRACE] = ACTIONS(12375), + [anon_sym_RBRACE] = ACTIONS(12375), + [anon_sym_LPAREN] = ACTIONS(12375), + [anon_sym_COMMA] = ACTIONS(12375), + [anon_sym_EQ] = ACTIONS(12375), + [sym_word] = ACTIONS(12375), + [sym_param] = ACTIONS(12375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12375), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12375), + [anon_sym_DOLLAR] = ACTIONS(12377), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12375), + [anon_sym_BSLASHbegin] = ACTIONS(12377), + [anon_sym_BSLASHcaption] = ACTIONS(12377), + [anon_sym_BSLASHcite] = ACTIONS(12377), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCite] = ACTIONS(12377), + [anon_sym_BSLASHnocite] = ACTIONS(12377), + [anon_sym_BSLASHcitet] = ACTIONS(12377), + [anon_sym_BSLASHcitep] = ACTIONS(12377), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteauthor] = ACTIONS(12377), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12377), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitetitle] = ACTIONS(12377), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteyear] = ACTIONS(12377), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitedate] = ACTIONS(12377), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteurl] = ACTIONS(12377), + [anon_sym_BSLASHfullcite] = ACTIONS(12377), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12377), + [anon_sym_BSLASHcitealt] = ACTIONS(12377), + [anon_sym_BSLASHcitealp] = ACTIONS(12377), + [anon_sym_BSLASHcitetext] = ACTIONS(12377), + [anon_sym_BSLASHparencite] = ACTIONS(12377), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHParencite] = ACTIONS(12377), + [anon_sym_BSLASHfootcite] = ACTIONS(12377), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12377), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12377), + [anon_sym_BSLASHtextcite] = ACTIONS(12377), + [anon_sym_BSLASHTextcite] = ACTIONS(12377), + [anon_sym_BSLASHsmartcite] = ACTIONS(12377), + [anon_sym_BSLASHSmartcite] = ACTIONS(12377), + [anon_sym_BSLASHsupercite] = ACTIONS(12377), + [anon_sym_BSLASHautocite] = ACTIONS(12377), + [anon_sym_BSLASHAutocite] = ACTIONS(12377), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHvolcite] = ACTIONS(12377), + [anon_sym_BSLASHVolcite] = ACTIONS(12377), + [anon_sym_BSLASHpvolcite] = ACTIONS(12377), + [anon_sym_BSLASHPvolcite] = ACTIONS(12377), + [anon_sym_BSLASHfvolcite] = ACTIONS(12377), + [anon_sym_BSLASHftvolcite] = ACTIONS(12377), + [anon_sym_BSLASHsvolcite] = ACTIONS(12377), + [anon_sym_BSLASHSvolcite] = ACTIONS(12377), + [anon_sym_BSLASHtvolcite] = ACTIONS(12377), + [anon_sym_BSLASHTvolcite] = ACTIONS(12377), + [anon_sym_BSLASHavolcite] = ACTIONS(12377), + [anon_sym_BSLASHAvolcite] = ACTIONS(12377), + [anon_sym_BSLASHnotecite] = ACTIONS(12377), + [anon_sym_BSLASHpnotecite] = ACTIONS(12377), + [anon_sym_BSLASHPnotecite] = ACTIONS(12377), + [anon_sym_BSLASHfnotecite] = ACTIONS(12377), + [anon_sym_BSLASHusepackage] = ACTIONS(12377), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12377), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12377), + [anon_sym_BSLASHinclude] = ACTIONS(12377), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12377), + [anon_sym_BSLASHinput] = ACTIONS(12377), + [anon_sym_BSLASHsubfile] = ACTIONS(12377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12377), + [anon_sym_BSLASHbibliography] = ACTIONS(12377), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12377), + [anon_sym_BSLASHincludesvg] = ACTIONS(12377), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12377), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12377), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12377), + [anon_sym_BSLASHimport] = ACTIONS(12377), + [anon_sym_BSLASHsubimport] = ACTIONS(12377), + [anon_sym_BSLASHinputfrom] = ACTIONS(12377), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12377), + [anon_sym_BSLASHincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHlabel] = ACTIONS(12377), + [anon_sym_BSLASHref] = ACTIONS(12377), + [anon_sym_BSLASHvref] = ACTIONS(12377), + [anon_sym_BSLASHVref] = ACTIONS(12377), + [anon_sym_BSLASHautoref] = ACTIONS(12377), + [anon_sym_BSLASHpageref] = ACTIONS(12377), + [anon_sym_BSLASHcref] = ACTIONS(12377), + [anon_sym_BSLASHCref] = ACTIONS(12377), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnameCref] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHlabelcref] = ACTIONS(12377), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12377), + [anon_sym_BSLASHeqref] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange] = ACTIONS(12377), + [anon_sym_BSLASHCrefrange] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewlabel] = ACTIONS(12377), + [anon_sym_BSLASHnewcommand] = ACTIONS(12377), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12377), + [anon_sym_BSLASHgls] = ACTIONS(12377), + [anon_sym_BSLASHGls] = ACTIONS(12377), + [anon_sym_BSLASHGLS] = ACTIONS(12377), + [anon_sym_BSLASHglspl] = ACTIONS(12377), + [anon_sym_BSLASHGlspl] = ACTIONS(12377), + [anon_sym_BSLASHGLSpl] = ACTIONS(12377), + [anon_sym_BSLASHglsdisp] = ACTIONS(12377), + [anon_sym_BSLASHglslink] = ACTIONS(12377), + [anon_sym_BSLASHglstext] = ACTIONS(12377), + [anon_sym_BSLASHGlstext] = ACTIONS(12377), + [anon_sym_BSLASHGLStext] = ACTIONS(12377), + [anon_sym_BSLASHglsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12377), + [anon_sym_BSLASHglsplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSplural] = ACTIONS(12377), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHglsname] = ACTIONS(12377), + [anon_sym_BSLASHGlsname] = ACTIONS(12377), + [anon_sym_BSLASHGLSname] = ACTIONS(12377), + [anon_sym_BSLASHglssymbol] = ACTIONS(12377), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12377), + [anon_sym_BSLASHglsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12377), + [anon_sym_BSLASHglsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12377), + [anon_sym_BSLASHglsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12377), + [anon_sym_BSLASHglsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12377), + [anon_sym_BSLASHglsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12377), + [anon_sym_BSLASHnewacronym] = ACTIONS(12377), + [anon_sym_BSLASHacrshort] = ACTIONS(12377), + [anon_sym_BSLASHAcrshort] = ACTIONS(12377), + [anon_sym_BSLASHACRshort] = ACTIONS(12377), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12377), + [anon_sym_BSLASHacrlong] = ACTIONS(12377), + [anon_sym_BSLASHAcrlong] = ACTIONS(12377), + [anon_sym_BSLASHACRlong] = ACTIONS(12377), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12377), + [anon_sym_BSLASHacrfull] = ACTIONS(12377), + [anon_sym_BSLASHAcrfull] = ACTIONS(12377), + [anon_sym_BSLASHACRfull] = ACTIONS(12377), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12377), + [anon_sym_BSLASHacs] = ACTIONS(12377), + [anon_sym_BSLASHAcs] = ACTIONS(12377), + [anon_sym_BSLASHacsp] = ACTIONS(12377), + [anon_sym_BSLASHAcsp] = ACTIONS(12377), + [anon_sym_BSLASHacl] = ACTIONS(12377), + [anon_sym_BSLASHAcl] = ACTIONS(12377), + [anon_sym_BSLASHaclp] = ACTIONS(12377), + [anon_sym_BSLASHAclp] = ACTIONS(12377), + [anon_sym_BSLASHacf] = ACTIONS(12377), + [anon_sym_BSLASHAcf] = ACTIONS(12377), + [anon_sym_BSLASHacfp] = ACTIONS(12377), + [anon_sym_BSLASHAcfp] = ACTIONS(12377), + [anon_sym_BSLASHac] = ACTIONS(12377), + [anon_sym_BSLASHAc] = ACTIONS(12377), + [anon_sym_BSLASHacp] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12377), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12377), + [anon_sym_BSLASHcolor] = ACTIONS(12377), + [anon_sym_BSLASHcolorbox] = ACTIONS(12377), + [anon_sym_BSLASHtextcolor] = ACTIONS(12377), + [anon_sym_BSLASHpagecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12377), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12377), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12377), + }, + [1678] = { + [sym_generic_command_name] = ACTIONS(12381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12381), + [anon_sym_BSLASHitem] = ACTIONS(12381), + [anon_sym_LBRACK] = ACTIONS(12379), + [anon_sym_RBRACK] = ACTIONS(12379), + [anon_sym_LBRACE] = ACTIONS(12379), + [anon_sym_RBRACE] = ACTIONS(12379), + [anon_sym_LPAREN] = ACTIONS(12379), + [anon_sym_COMMA] = ACTIONS(12379), + [anon_sym_EQ] = ACTIONS(12379), + [sym_word] = ACTIONS(12379), + [sym_param] = ACTIONS(12379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12379), + [anon_sym_DOLLAR] = ACTIONS(12381), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12379), + [anon_sym_BSLASHbegin] = ACTIONS(12381), + [anon_sym_BSLASHcaption] = ACTIONS(12381), + [anon_sym_BSLASHcite] = ACTIONS(12381), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCite] = ACTIONS(12381), + [anon_sym_BSLASHnocite] = ACTIONS(12381), + [anon_sym_BSLASHcitet] = ACTIONS(12381), + [anon_sym_BSLASHcitep] = ACTIONS(12381), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteauthor] = ACTIONS(12381), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12381), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitetitle] = ACTIONS(12381), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteyear] = ACTIONS(12381), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitedate] = ACTIONS(12381), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteurl] = ACTIONS(12381), + [anon_sym_BSLASHfullcite] = ACTIONS(12381), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12381), + [anon_sym_BSLASHcitealt] = ACTIONS(12381), + [anon_sym_BSLASHcitealp] = ACTIONS(12381), + [anon_sym_BSLASHcitetext] = ACTIONS(12381), + [anon_sym_BSLASHparencite] = ACTIONS(12381), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHParencite] = ACTIONS(12381), + [anon_sym_BSLASHfootcite] = ACTIONS(12381), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12381), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12381), + [anon_sym_BSLASHtextcite] = ACTIONS(12381), + [anon_sym_BSLASHTextcite] = ACTIONS(12381), + [anon_sym_BSLASHsmartcite] = ACTIONS(12381), + [anon_sym_BSLASHSmartcite] = ACTIONS(12381), + [anon_sym_BSLASHsupercite] = ACTIONS(12381), + [anon_sym_BSLASHautocite] = ACTIONS(12381), + [anon_sym_BSLASHAutocite] = ACTIONS(12381), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHvolcite] = ACTIONS(12381), + [anon_sym_BSLASHVolcite] = ACTIONS(12381), + [anon_sym_BSLASHpvolcite] = ACTIONS(12381), + [anon_sym_BSLASHPvolcite] = ACTIONS(12381), + [anon_sym_BSLASHfvolcite] = ACTIONS(12381), + [anon_sym_BSLASHftvolcite] = ACTIONS(12381), + [anon_sym_BSLASHsvolcite] = ACTIONS(12381), + [anon_sym_BSLASHSvolcite] = ACTIONS(12381), + [anon_sym_BSLASHtvolcite] = ACTIONS(12381), + [anon_sym_BSLASHTvolcite] = ACTIONS(12381), + [anon_sym_BSLASHavolcite] = ACTIONS(12381), + [anon_sym_BSLASHAvolcite] = ACTIONS(12381), + [anon_sym_BSLASHnotecite] = ACTIONS(12381), + [anon_sym_BSLASHpnotecite] = ACTIONS(12381), + [anon_sym_BSLASHPnotecite] = ACTIONS(12381), + [anon_sym_BSLASHfnotecite] = ACTIONS(12381), + [anon_sym_BSLASHusepackage] = ACTIONS(12381), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12381), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12381), + [anon_sym_BSLASHinclude] = ACTIONS(12381), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12381), + [anon_sym_BSLASHinput] = ACTIONS(12381), + [anon_sym_BSLASHsubfile] = ACTIONS(12381), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12381), + [anon_sym_BSLASHbibliography] = ACTIONS(12381), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12381), + [anon_sym_BSLASHincludesvg] = ACTIONS(12381), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12381), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12381), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12381), + [anon_sym_BSLASHimport] = ACTIONS(12381), + [anon_sym_BSLASHsubimport] = ACTIONS(12381), + [anon_sym_BSLASHinputfrom] = ACTIONS(12381), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12381), + [anon_sym_BSLASHincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHlabel] = ACTIONS(12381), + [anon_sym_BSLASHref] = ACTIONS(12381), + [anon_sym_BSLASHvref] = ACTIONS(12381), + [anon_sym_BSLASHVref] = ACTIONS(12381), + [anon_sym_BSLASHautoref] = ACTIONS(12381), + [anon_sym_BSLASHpageref] = ACTIONS(12381), + [anon_sym_BSLASHcref] = ACTIONS(12381), + [anon_sym_BSLASHCref] = ACTIONS(12381), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnameCref] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHlabelcref] = ACTIONS(12381), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12381), + [anon_sym_BSLASHeqref] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange] = ACTIONS(12381), + [anon_sym_BSLASHCrefrange] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewlabel] = ACTIONS(12381), + [anon_sym_BSLASHnewcommand] = ACTIONS(12381), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12381), + [anon_sym_BSLASHgls] = ACTIONS(12381), + [anon_sym_BSLASHGls] = ACTIONS(12381), + [anon_sym_BSLASHGLS] = ACTIONS(12381), + [anon_sym_BSLASHglspl] = ACTIONS(12381), + [anon_sym_BSLASHGlspl] = ACTIONS(12381), + [anon_sym_BSLASHGLSpl] = ACTIONS(12381), + [anon_sym_BSLASHglsdisp] = ACTIONS(12381), + [anon_sym_BSLASHglslink] = ACTIONS(12381), + [anon_sym_BSLASHglstext] = ACTIONS(12381), + [anon_sym_BSLASHGlstext] = ACTIONS(12381), + [anon_sym_BSLASHGLStext] = ACTIONS(12381), + [anon_sym_BSLASHglsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12381), + [anon_sym_BSLASHglsplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSplural] = ACTIONS(12381), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHglsname] = ACTIONS(12381), + [anon_sym_BSLASHGlsname] = ACTIONS(12381), + [anon_sym_BSLASHGLSname] = ACTIONS(12381), + [anon_sym_BSLASHglssymbol] = ACTIONS(12381), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12381), + [anon_sym_BSLASHglsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12381), + [anon_sym_BSLASHglsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12381), + [anon_sym_BSLASHglsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12381), + [anon_sym_BSLASHglsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12381), + [anon_sym_BSLASHglsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12381), + [anon_sym_BSLASHnewacronym] = ACTIONS(12381), + [anon_sym_BSLASHacrshort] = ACTIONS(12381), + [anon_sym_BSLASHAcrshort] = ACTIONS(12381), + [anon_sym_BSLASHACRshort] = ACTIONS(12381), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12381), + [anon_sym_BSLASHacrlong] = ACTIONS(12381), + [anon_sym_BSLASHAcrlong] = ACTIONS(12381), + [anon_sym_BSLASHACRlong] = ACTIONS(12381), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12381), + [anon_sym_BSLASHacrfull] = ACTIONS(12381), + [anon_sym_BSLASHAcrfull] = ACTIONS(12381), + [anon_sym_BSLASHACRfull] = ACTIONS(12381), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12381), + [anon_sym_BSLASHacs] = ACTIONS(12381), + [anon_sym_BSLASHAcs] = ACTIONS(12381), + [anon_sym_BSLASHacsp] = ACTIONS(12381), + [anon_sym_BSLASHAcsp] = ACTIONS(12381), + [anon_sym_BSLASHacl] = ACTIONS(12381), + [anon_sym_BSLASHAcl] = ACTIONS(12381), + [anon_sym_BSLASHaclp] = ACTIONS(12381), + [anon_sym_BSLASHAclp] = ACTIONS(12381), + [anon_sym_BSLASHacf] = ACTIONS(12381), + [anon_sym_BSLASHAcf] = ACTIONS(12381), + [anon_sym_BSLASHacfp] = ACTIONS(12381), + [anon_sym_BSLASHAcfp] = ACTIONS(12381), + [anon_sym_BSLASHac] = ACTIONS(12381), + [anon_sym_BSLASHAc] = ACTIONS(12381), + [anon_sym_BSLASHacp] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12381), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12381), + [anon_sym_BSLASHcolor] = ACTIONS(12381), + [anon_sym_BSLASHcolorbox] = ACTIONS(12381), + [anon_sym_BSLASHtextcolor] = ACTIONS(12381), + [anon_sym_BSLASHpagecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12381), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12381), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12381), + }, + [1679] = { + [sym_generic_command_name] = ACTIONS(12393), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12393), + [anon_sym_BSLASHitem] = ACTIONS(12393), + [anon_sym_LBRACK] = ACTIONS(12391), + [anon_sym_RBRACK] = ACTIONS(12391), + [anon_sym_LBRACE] = ACTIONS(12391), + [anon_sym_RBRACE] = ACTIONS(12391), + [anon_sym_LPAREN] = ACTIONS(12391), + [anon_sym_COMMA] = ACTIONS(12391), + [anon_sym_EQ] = ACTIONS(12391), + [sym_word] = ACTIONS(12391), + [sym_param] = ACTIONS(12391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12391), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12391), + [anon_sym_DOLLAR] = ACTIONS(12393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12391), + [anon_sym_BSLASHbegin] = ACTIONS(12393), + [anon_sym_BSLASHcaption] = ACTIONS(12393), + [anon_sym_BSLASHcite] = ACTIONS(12393), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCite] = ACTIONS(12393), + [anon_sym_BSLASHnocite] = ACTIONS(12393), + [anon_sym_BSLASHcitet] = ACTIONS(12393), + [anon_sym_BSLASHcitep] = ACTIONS(12393), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteauthor] = ACTIONS(12393), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12393), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitetitle] = ACTIONS(12393), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteyear] = ACTIONS(12393), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitedate] = ACTIONS(12393), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteurl] = ACTIONS(12393), + [anon_sym_BSLASHfullcite] = ACTIONS(12393), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12393), + [anon_sym_BSLASHcitealt] = ACTIONS(12393), + [anon_sym_BSLASHcitealp] = ACTIONS(12393), + [anon_sym_BSLASHcitetext] = ACTIONS(12393), + [anon_sym_BSLASHparencite] = ACTIONS(12393), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHParencite] = ACTIONS(12393), + [anon_sym_BSLASHfootcite] = ACTIONS(12393), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12393), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12393), + [anon_sym_BSLASHtextcite] = ACTIONS(12393), + [anon_sym_BSLASHTextcite] = ACTIONS(12393), + [anon_sym_BSLASHsmartcite] = ACTIONS(12393), + [anon_sym_BSLASHSmartcite] = ACTIONS(12393), + [anon_sym_BSLASHsupercite] = ACTIONS(12393), + [anon_sym_BSLASHautocite] = ACTIONS(12393), + [anon_sym_BSLASHAutocite] = ACTIONS(12393), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHvolcite] = ACTIONS(12393), + [anon_sym_BSLASHVolcite] = ACTIONS(12393), + [anon_sym_BSLASHpvolcite] = ACTIONS(12393), + [anon_sym_BSLASHPvolcite] = ACTIONS(12393), + [anon_sym_BSLASHfvolcite] = ACTIONS(12393), + [anon_sym_BSLASHftvolcite] = ACTIONS(12393), + [anon_sym_BSLASHsvolcite] = ACTIONS(12393), + [anon_sym_BSLASHSvolcite] = ACTIONS(12393), + [anon_sym_BSLASHtvolcite] = ACTIONS(12393), + [anon_sym_BSLASHTvolcite] = ACTIONS(12393), + [anon_sym_BSLASHavolcite] = ACTIONS(12393), + [anon_sym_BSLASHAvolcite] = ACTIONS(12393), + [anon_sym_BSLASHnotecite] = ACTIONS(12393), + [anon_sym_BSLASHpnotecite] = ACTIONS(12393), + [anon_sym_BSLASHPnotecite] = ACTIONS(12393), + [anon_sym_BSLASHfnotecite] = ACTIONS(12393), + [anon_sym_BSLASHusepackage] = ACTIONS(12393), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12393), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12393), + [anon_sym_BSLASHinclude] = ACTIONS(12393), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12393), + [anon_sym_BSLASHinput] = ACTIONS(12393), + [anon_sym_BSLASHsubfile] = ACTIONS(12393), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12393), + [anon_sym_BSLASHbibliography] = ACTIONS(12393), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12393), + [anon_sym_BSLASHincludesvg] = ACTIONS(12393), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12393), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12393), + [anon_sym_BSLASHimport] = ACTIONS(12393), + [anon_sym_BSLASHsubimport] = ACTIONS(12393), + [anon_sym_BSLASHinputfrom] = ACTIONS(12393), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12393), + [anon_sym_BSLASHincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHlabel] = ACTIONS(12393), + [anon_sym_BSLASHref] = ACTIONS(12393), + [anon_sym_BSLASHvref] = ACTIONS(12393), + [anon_sym_BSLASHVref] = ACTIONS(12393), + [anon_sym_BSLASHautoref] = ACTIONS(12393), + [anon_sym_BSLASHpageref] = ACTIONS(12393), + [anon_sym_BSLASHcref] = ACTIONS(12393), + [anon_sym_BSLASHCref] = ACTIONS(12393), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnameCref] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHlabelcref] = ACTIONS(12393), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12393), + [anon_sym_BSLASHeqref] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange] = ACTIONS(12393), + [anon_sym_BSLASHCrefrange] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewlabel] = ACTIONS(12393), + [anon_sym_BSLASHnewcommand] = ACTIONS(12393), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12393), + [anon_sym_BSLASHgls] = ACTIONS(12393), + [anon_sym_BSLASHGls] = ACTIONS(12393), + [anon_sym_BSLASHGLS] = ACTIONS(12393), + [anon_sym_BSLASHglspl] = ACTIONS(12393), + [anon_sym_BSLASHGlspl] = ACTIONS(12393), + [anon_sym_BSLASHGLSpl] = ACTIONS(12393), + [anon_sym_BSLASHglsdisp] = ACTIONS(12393), + [anon_sym_BSLASHglslink] = ACTIONS(12393), + [anon_sym_BSLASHglstext] = ACTIONS(12393), + [anon_sym_BSLASHGlstext] = ACTIONS(12393), + [anon_sym_BSLASHGLStext] = ACTIONS(12393), + [anon_sym_BSLASHglsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12393), + [anon_sym_BSLASHglsplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSplural] = ACTIONS(12393), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHglsname] = ACTIONS(12393), + [anon_sym_BSLASHGlsname] = ACTIONS(12393), + [anon_sym_BSLASHGLSname] = ACTIONS(12393), + [anon_sym_BSLASHglssymbol] = ACTIONS(12393), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12393), + [anon_sym_BSLASHglsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12393), + [anon_sym_BSLASHglsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12393), + [anon_sym_BSLASHglsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12393), + [anon_sym_BSLASHglsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12393), + [anon_sym_BSLASHglsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12393), + [anon_sym_BSLASHnewacronym] = ACTIONS(12393), + [anon_sym_BSLASHacrshort] = ACTIONS(12393), + [anon_sym_BSLASHAcrshort] = ACTIONS(12393), + [anon_sym_BSLASHACRshort] = ACTIONS(12393), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12393), + [anon_sym_BSLASHacrlong] = ACTIONS(12393), + [anon_sym_BSLASHAcrlong] = ACTIONS(12393), + [anon_sym_BSLASHACRlong] = ACTIONS(12393), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12393), + [anon_sym_BSLASHacrfull] = ACTIONS(12393), + [anon_sym_BSLASHAcrfull] = ACTIONS(12393), + [anon_sym_BSLASHACRfull] = ACTIONS(12393), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12393), + [anon_sym_BSLASHacs] = ACTIONS(12393), + [anon_sym_BSLASHAcs] = ACTIONS(12393), + [anon_sym_BSLASHacsp] = ACTIONS(12393), + [anon_sym_BSLASHAcsp] = ACTIONS(12393), + [anon_sym_BSLASHacl] = ACTIONS(12393), + [anon_sym_BSLASHAcl] = ACTIONS(12393), + [anon_sym_BSLASHaclp] = ACTIONS(12393), + [anon_sym_BSLASHAclp] = ACTIONS(12393), + [anon_sym_BSLASHacf] = ACTIONS(12393), + [anon_sym_BSLASHAcf] = ACTIONS(12393), + [anon_sym_BSLASHacfp] = ACTIONS(12393), + [anon_sym_BSLASHAcfp] = ACTIONS(12393), + [anon_sym_BSLASHac] = ACTIONS(12393), + [anon_sym_BSLASHAc] = ACTIONS(12393), + [anon_sym_BSLASHacp] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12393), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12393), + [anon_sym_BSLASHcolor] = ACTIONS(12393), + [anon_sym_BSLASHcolorbox] = ACTIONS(12393), + [anon_sym_BSLASHtextcolor] = ACTIONS(12393), + [anon_sym_BSLASHpagecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12393), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12393), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12393), + }, + [1680] = { + [sym_generic_command_name] = ACTIONS(12397), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12397), + [anon_sym_BSLASHitem] = ACTIONS(12397), + [anon_sym_LBRACK] = ACTIONS(12395), + [anon_sym_RBRACK] = ACTIONS(12395), + [anon_sym_LBRACE] = ACTIONS(12395), + [anon_sym_RBRACE] = ACTIONS(12395), + [anon_sym_LPAREN] = ACTIONS(12395), + [anon_sym_COMMA] = ACTIONS(12395), + [anon_sym_EQ] = ACTIONS(12395), + [sym_word] = ACTIONS(12395), + [sym_param] = ACTIONS(12395), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12395), + [anon_sym_DOLLAR] = ACTIONS(12397), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12395), + [anon_sym_BSLASHbegin] = ACTIONS(12397), + [anon_sym_BSLASHcaption] = ACTIONS(12397), + [anon_sym_BSLASHcite] = ACTIONS(12397), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCite] = ACTIONS(12397), + [anon_sym_BSLASHnocite] = ACTIONS(12397), + [anon_sym_BSLASHcitet] = ACTIONS(12397), + [anon_sym_BSLASHcitep] = ACTIONS(12397), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteauthor] = ACTIONS(12397), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12397), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitetitle] = ACTIONS(12397), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteyear] = ACTIONS(12397), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitedate] = ACTIONS(12397), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteurl] = ACTIONS(12397), + [anon_sym_BSLASHfullcite] = ACTIONS(12397), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12397), + [anon_sym_BSLASHcitealt] = ACTIONS(12397), + [anon_sym_BSLASHcitealp] = ACTIONS(12397), + [anon_sym_BSLASHcitetext] = ACTIONS(12397), + [anon_sym_BSLASHparencite] = ACTIONS(12397), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHParencite] = ACTIONS(12397), + [anon_sym_BSLASHfootcite] = ACTIONS(12397), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12397), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12397), + [anon_sym_BSLASHtextcite] = ACTIONS(12397), + [anon_sym_BSLASHTextcite] = ACTIONS(12397), + [anon_sym_BSLASHsmartcite] = ACTIONS(12397), + [anon_sym_BSLASHSmartcite] = ACTIONS(12397), + [anon_sym_BSLASHsupercite] = ACTIONS(12397), + [anon_sym_BSLASHautocite] = ACTIONS(12397), + [anon_sym_BSLASHAutocite] = ACTIONS(12397), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHvolcite] = ACTIONS(12397), + [anon_sym_BSLASHVolcite] = ACTIONS(12397), + [anon_sym_BSLASHpvolcite] = ACTIONS(12397), + [anon_sym_BSLASHPvolcite] = ACTIONS(12397), + [anon_sym_BSLASHfvolcite] = ACTIONS(12397), + [anon_sym_BSLASHftvolcite] = ACTIONS(12397), + [anon_sym_BSLASHsvolcite] = ACTIONS(12397), + [anon_sym_BSLASHSvolcite] = ACTIONS(12397), + [anon_sym_BSLASHtvolcite] = ACTIONS(12397), + [anon_sym_BSLASHTvolcite] = ACTIONS(12397), + [anon_sym_BSLASHavolcite] = ACTIONS(12397), + [anon_sym_BSLASHAvolcite] = ACTIONS(12397), + [anon_sym_BSLASHnotecite] = ACTIONS(12397), + [anon_sym_BSLASHpnotecite] = ACTIONS(12397), + [anon_sym_BSLASHPnotecite] = ACTIONS(12397), + [anon_sym_BSLASHfnotecite] = ACTIONS(12397), + [anon_sym_BSLASHusepackage] = ACTIONS(12397), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12397), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12397), + [anon_sym_BSLASHinclude] = ACTIONS(12397), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12397), + [anon_sym_BSLASHinput] = ACTIONS(12397), + [anon_sym_BSLASHsubfile] = ACTIONS(12397), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12397), + [anon_sym_BSLASHbibliography] = ACTIONS(12397), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12397), + [anon_sym_BSLASHincludesvg] = ACTIONS(12397), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12397), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12397), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12397), + [anon_sym_BSLASHimport] = ACTIONS(12397), + [anon_sym_BSLASHsubimport] = ACTIONS(12397), + [anon_sym_BSLASHinputfrom] = ACTIONS(12397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12397), + [anon_sym_BSLASHincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHlabel] = ACTIONS(12397), + [anon_sym_BSLASHref] = ACTIONS(12397), + [anon_sym_BSLASHvref] = ACTIONS(12397), + [anon_sym_BSLASHVref] = ACTIONS(12397), + [anon_sym_BSLASHautoref] = ACTIONS(12397), + [anon_sym_BSLASHpageref] = ACTIONS(12397), + [anon_sym_BSLASHcref] = ACTIONS(12397), + [anon_sym_BSLASHCref] = ACTIONS(12397), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnameCref] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHlabelcref] = ACTIONS(12397), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12397), + [anon_sym_BSLASHeqref] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange] = ACTIONS(12397), + [anon_sym_BSLASHCrefrange] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewlabel] = ACTIONS(12397), + [anon_sym_BSLASHnewcommand] = ACTIONS(12397), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12397), + [anon_sym_BSLASHgls] = ACTIONS(12397), + [anon_sym_BSLASHGls] = ACTIONS(12397), + [anon_sym_BSLASHGLS] = ACTIONS(12397), + [anon_sym_BSLASHglspl] = ACTIONS(12397), + [anon_sym_BSLASHGlspl] = ACTIONS(12397), + [anon_sym_BSLASHGLSpl] = ACTIONS(12397), + [anon_sym_BSLASHglsdisp] = ACTIONS(12397), + [anon_sym_BSLASHglslink] = ACTIONS(12397), + [anon_sym_BSLASHglstext] = ACTIONS(12397), + [anon_sym_BSLASHGlstext] = ACTIONS(12397), + [anon_sym_BSLASHGLStext] = ACTIONS(12397), + [anon_sym_BSLASHglsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12397), + [anon_sym_BSLASHglsplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSplural] = ACTIONS(12397), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHglsname] = ACTIONS(12397), + [anon_sym_BSLASHGlsname] = ACTIONS(12397), + [anon_sym_BSLASHGLSname] = ACTIONS(12397), + [anon_sym_BSLASHglssymbol] = ACTIONS(12397), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12397), + [anon_sym_BSLASHglsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12397), + [anon_sym_BSLASHglsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12397), + [anon_sym_BSLASHglsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12397), + [anon_sym_BSLASHglsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12397), + [anon_sym_BSLASHglsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12397), + [anon_sym_BSLASHnewacronym] = ACTIONS(12397), + [anon_sym_BSLASHacrshort] = ACTIONS(12397), + [anon_sym_BSLASHAcrshort] = ACTIONS(12397), + [anon_sym_BSLASHACRshort] = ACTIONS(12397), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12397), + [anon_sym_BSLASHacrlong] = ACTIONS(12397), + [anon_sym_BSLASHAcrlong] = ACTIONS(12397), + [anon_sym_BSLASHACRlong] = ACTIONS(12397), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12397), + [anon_sym_BSLASHacrfull] = ACTIONS(12397), + [anon_sym_BSLASHAcrfull] = ACTIONS(12397), + [anon_sym_BSLASHACRfull] = ACTIONS(12397), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12397), + [anon_sym_BSLASHacs] = ACTIONS(12397), + [anon_sym_BSLASHAcs] = ACTIONS(12397), + [anon_sym_BSLASHacsp] = ACTIONS(12397), + [anon_sym_BSLASHAcsp] = ACTIONS(12397), + [anon_sym_BSLASHacl] = ACTIONS(12397), + [anon_sym_BSLASHAcl] = ACTIONS(12397), + [anon_sym_BSLASHaclp] = ACTIONS(12397), + [anon_sym_BSLASHAclp] = ACTIONS(12397), + [anon_sym_BSLASHacf] = ACTIONS(12397), + [anon_sym_BSLASHAcf] = ACTIONS(12397), + [anon_sym_BSLASHacfp] = ACTIONS(12397), + [anon_sym_BSLASHAcfp] = ACTIONS(12397), + [anon_sym_BSLASHac] = ACTIONS(12397), + [anon_sym_BSLASHAc] = ACTIONS(12397), + [anon_sym_BSLASHacp] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12397), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12397), + [anon_sym_BSLASHcolor] = ACTIONS(12397), + [anon_sym_BSLASHcolorbox] = ACTIONS(12397), + [anon_sym_BSLASHtextcolor] = ACTIONS(12397), + [anon_sym_BSLASHpagecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12397), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12397), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12397), + }, + [1681] = { + [sym_generic_command_name] = ACTIONS(12401), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12401), + [anon_sym_BSLASHitem] = ACTIONS(12401), + [anon_sym_LBRACK] = ACTIONS(12399), + [anon_sym_RBRACK] = ACTIONS(12399), + [anon_sym_LBRACE] = ACTIONS(12399), + [anon_sym_RBRACE] = ACTIONS(12399), + [anon_sym_LPAREN] = ACTIONS(12399), + [anon_sym_COMMA] = ACTIONS(12399), + [anon_sym_EQ] = ACTIONS(12399), + [sym_word] = ACTIONS(12399), + [sym_param] = ACTIONS(12399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12399), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12399), + [anon_sym_DOLLAR] = ACTIONS(12401), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12399), + [anon_sym_BSLASHbegin] = ACTIONS(12401), + [anon_sym_BSLASHcaption] = ACTIONS(12401), + [anon_sym_BSLASHcite] = ACTIONS(12401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCite] = ACTIONS(12401), + [anon_sym_BSLASHnocite] = ACTIONS(12401), + [anon_sym_BSLASHcitet] = ACTIONS(12401), + [anon_sym_BSLASHcitep] = ACTIONS(12401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteauthor] = ACTIONS(12401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitetitle] = ACTIONS(12401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteyear] = ACTIONS(12401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitedate] = ACTIONS(12401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteurl] = ACTIONS(12401), + [anon_sym_BSLASHfullcite] = ACTIONS(12401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12401), + [anon_sym_BSLASHcitealt] = ACTIONS(12401), + [anon_sym_BSLASHcitealp] = ACTIONS(12401), + [anon_sym_BSLASHcitetext] = ACTIONS(12401), + [anon_sym_BSLASHparencite] = ACTIONS(12401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHParencite] = ACTIONS(12401), + [anon_sym_BSLASHfootcite] = ACTIONS(12401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12401), + [anon_sym_BSLASHtextcite] = ACTIONS(12401), + [anon_sym_BSLASHTextcite] = ACTIONS(12401), + [anon_sym_BSLASHsmartcite] = ACTIONS(12401), + [anon_sym_BSLASHSmartcite] = ACTIONS(12401), + [anon_sym_BSLASHsupercite] = ACTIONS(12401), + [anon_sym_BSLASHautocite] = ACTIONS(12401), + [anon_sym_BSLASHAutocite] = ACTIONS(12401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHvolcite] = ACTIONS(12401), + [anon_sym_BSLASHVolcite] = ACTIONS(12401), + [anon_sym_BSLASHpvolcite] = ACTIONS(12401), + [anon_sym_BSLASHPvolcite] = ACTIONS(12401), + [anon_sym_BSLASHfvolcite] = ACTIONS(12401), + [anon_sym_BSLASHftvolcite] = ACTIONS(12401), + [anon_sym_BSLASHsvolcite] = ACTIONS(12401), + [anon_sym_BSLASHSvolcite] = ACTIONS(12401), + [anon_sym_BSLASHtvolcite] = ACTIONS(12401), + [anon_sym_BSLASHTvolcite] = ACTIONS(12401), + [anon_sym_BSLASHavolcite] = ACTIONS(12401), + [anon_sym_BSLASHAvolcite] = ACTIONS(12401), + [anon_sym_BSLASHnotecite] = ACTIONS(12401), + [anon_sym_BSLASHpnotecite] = ACTIONS(12401), + [anon_sym_BSLASHPnotecite] = ACTIONS(12401), + [anon_sym_BSLASHfnotecite] = ACTIONS(12401), + [anon_sym_BSLASHusepackage] = ACTIONS(12401), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12401), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12401), + [anon_sym_BSLASHinclude] = ACTIONS(12401), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12401), + [anon_sym_BSLASHinput] = ACTIONS(12401), + [anon_sym_BSLASHsubfile] = ACTIONS(12401), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12401), + [anon_sym_BSLASHbibliography] = ACTIONS(12401), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12401), + [anon_sym_BSLASHincludesvg] = ACTIONS(12401), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12401), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12401), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12401), + [anon_sym_BSLASHimport] = ACTIONS(12401), + [anon_sym_BSLASHsubimport] = ACTIONS(12401), + [anon_sym_BSLASHinputfrom] = ACTIONS(12401), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12401), + [anon_sym_BSLASHincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHlabel] = ACTIONS(12401), + [anon_sym_BSLASHref] = ACTIONS(12401), + [anon_sym_BSLASHvref] = ACTIONS(12401), + [anon_sym_BSLASHVref] = ACTIONS(12401), + [anon_sym_BSLASHautoref] = ACTIONS(12401), + [anon_sym_BSLASHpageref] = ACTIONS(12401), + [anon_sym_BSLASHcref] = ACTIONS(12401), + [anon_sym_BSLASHCref] = ACTIONS(12401), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnameCref] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHlabelcref] = ACTIONS(12401), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12401), + [anon_sym_BSLASHeqref] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange] = ACTIONS(12401), + [anon_sym_BSLASHCrefrange] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewlabel] = ACTIONS(12401), + [anon_sym_BSLASHnewcommand] = ACTIONS(12401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12401), + [anon_sym_BSLASHgls] = ACTIONS(12401), + [anon_sym_BSLASHGls] = ACTIONS(12401), + [anon_sym_BSLASHGLS] = ACTIONS(12401), + [anon_sym_BSLASHglspl] = ACTIONS(12401), + [anon_sym_BSLASHGlspl] = ACTIONS(12401), + [anon_sym_BSLASHGLSpl] = ACTIONS(12401), + [anon_sym_BSLASHglsdisp] = ACTIONS(12401), + [anon_sym_BSLASHglslink] = ACTIONS(12401), + [anon_sym_BSLASHglstext] = ACTIONS(12401), + [anon_sym_BSLASHGlstext] = ACTIONS(12401), + [anon_sym_BSLASHGLStext] = ACTIONS(12401), + [anon_sym_BSLASHglsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12401), + [anon_sym_BSLASHglsplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSplural] = ACTIONS(12401), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHglsname] = ACTIONS(12401), + [anon_sym_BSLASHGlsname] = ACTIONS(12401), + [anon_sym_BSLASHGLSname] = ACTIONS(12401), + [anon_sym_BSLASHglssymbol] = ACTIONS(12401), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12401), + [anon_sym_BSLASHglsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12401), + [anon_sym_BSLASHglsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12401), + [anon_sym_BSLASHglsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12401), + [anon_sym_BSLASHglsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12401), + [anon_sym_BSLASHglsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12401), + [anon_sym_BSLASHnewacronym] = ACTIONS(12401), + [anon_sym_BSLASHacrshort] = ACTIONS(12401), + [anon_sym_BSLASHAcrshort] = ACTIONS(12401), + [anon_sym_BSLASHACRshort] = ACTIONS(12401), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12401), + [anon_sym_BSLASHacrlong] = ACTIONS(12401), + [anon_sym_BSLASHAcrlong] = ACTIONS(12401), + [anon_sym_BSLASHACRlong] = ACTIONS(12401), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12401), + [anon_sym_BSLASHacrfull] = ACTIONS(12401), + [anon_sym_BSLASHAcrfull] = ACTIONS(12401), + [anon_sym_BSLASHACRfull] = ACTIONS(12401), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12401), + [anon_sym_BSLASHacs] = ACTIONS(12401), + [anon_sym_BSLASHAcs] = ACTIONS(12401), + [anon_sym_BSLASHacsp] = ACTIONS(12401), + [anon_sym_BSLASHAcsp] = ACTIONS(12401), + [anon_sym_BSLASHacl] = ACTIONS(12401), + [anon_sym_BSLASHAcl] = ACTIONS(12401), + [anon_sym_BSLASHaclp] = ACTIONS(12401), + [anon_sym_BSLASHAclp] = ACTIONS(12401), + [anon_sym_BSLASHacf] = ACTIONS(12401), + [anon_sym_BSLASHAcf] = ACTIONS(12401), + [anon_sym_BSLASHacfp] = ACTIONS(12401), + [anon_sym_BSLASHAcfp] = ACTIONS(12401), + [anon_sym_BSLASHac] = ACTIONS(12401), + [anon_sym_BSLASHAc] = ACTIONS(12401), + [anon_sym_BSLASHacp] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12401), + [anon_sym_BSLASHcolor] = ACTIONS(12401), + [anon_sym_BSLASHcolorbox] = ACTIONS(12401), + [anon_sym_BSLASHtextcolor] = ACTIONS(12401), + [anon_sym_BSLASHpagecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12401), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12401), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12401), + }, + [1682] = { + [sym_generic_command_name] = ACTIONS(12405), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12405), + [anon_sym_BSLASHitem] = ACTIONS(12405), + [anon_sym_LBRACK] = ACTIONS(12403), + [anon_sym_RBRACK] = ACTIONS(12403), + [anon_sym_LBRACE] = ACTIONS(12403), + [anon_sym_RBRACE] = ACTIONS(12403), + [anon_sym_LPAREN] = ACTIONS(12403), + [anon_sym_COMMA] = ACTIONS(12403), + [anon_sym_EQ] = ACTIONS(12403), + [sym_word] = ACTIONS(12403), + [sym_param] = ACTIONS(12403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12403), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12403), + [anon_sym_DOLLAR] = ACTIONS(12405), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12403), + [anon_sym_BSLASHbegin] = ACTIONS(12405), + [anon_sym_BSLASHcaption] = ACTIONS(12405), + [anon_sym_BSLASHcite] = ACTIONS(12405), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCite] = ACTIONS(12405), + [anon_sym_BSLASHnocite] = ACTIONS(12405), + [anon_sym_BSLASHcitet] = ACTIONS(12405), + [anon_sym_BSLASHcitep] = ACTIONS(12405), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteauthor] = ACTIONS(12405), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12405), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitetitle] = ACTIONS(12405), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteyear] = ACTIONS(12405), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitedate] = ACTIONS(12405), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteurl] = ACTIONS(12405), + [anon_sym_BSLASHfullcite] = ACTIONS(12405), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12405), + [anon_sym_BSLASHcitealt] = ACTIONS(12405), + [anon_sym_BSLASHcitealp] = ACTIONS(12405), + [anon_sym_BSLASHcitetext] = ACTIONS(12405), + [anon_sym_BSLASHparencite] = ACTIONS(12405), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHParencite] = ACTIONS(12405), + [anon_sym_BSLASHfootcite] = ACTIONS(12405), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12405), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12405), + [anon_sym_BSLASHtextcite] = ACTIONS(12405), + [anon_sym_BSLASHTextcite] = ACTIONS(12405), + [anon_sym_BSLASHsmartcite] = ACTIONS(12405), + [anon_sym_BSLASHSmartcite] = ACTIONS(12405), + [anon_sym_BSLASHsupercite] = ACTIONS(12405), + [anon_sym_BSLASHautocite] = ACTIONS(12405), + [anon_sym_BSLASHAutocite] = ACTIONS(12405), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHvolcite] = ACTIONS(12405), + [anon_sym_BSLASHVolcite] = ACTIONS(12405), + [anon_sym_BSLASHpvolcite] = ACTIONS(12405), + [anon_sym_BSLASHPvolcite] = ACTIONS(12405), + [anon_sym_BSLASHfvolcite] = ACTIONS(12405), + [anon_sym_BSLASHftvolcite] = ACTIONS(12405), + [anon_sym_BSLASHsvolcite] = ACTIONS(12405), + [anon_sym_BSLASHSvolcite] = ACTIONS(12405), + [anon_sym_BSLASHtvolcite] = ACTIONS(12405), + [anon_sym_BSLASHTvolcite] = ACTIONS(12405), + [anon_sym_BSLASHavolcite] = ACTIONS(12405), + [anon_sym_BSLASHAvolcite] = ACTIONS(12405), + [anon_sym_BSLASHnotecite] = ACTIONS(12405), + [anon_sym_BSLASHpnotecite] = ACTIONS(12405), + [anon_sym_BSLASHPnotecite] = ACTIONS(12405), + [anon_sym_BSLASHfnotecite] = ACTIONS(12405), + [anon_sym_BSLASHusepackage] = ACTIONS(12405), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12405), + [anon_sym_BSLASHinclude] = ACTIONS(12405), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12405), + [anon_sym_BSLASHinput] = ACTIONS(12405), + [anon_sym_BSLASHsubfile] = ACTIONS(12405), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12405), + [anon_sym_BSLASHbibliography] = ACTIONS(12405), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12405), + [anon_sym_BSLASHincludesvg] = ACTIONS(12405), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12405), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12405), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12405), + [anon_sym_BSLASHimport] = ACTIONS(12405), + [anon_sym_BSLASHsubimport] = ACTIONS(12405), + [anon_sym_BSLASHinputfrom] = ACTIONS(12405), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12405), + [anon_sym_BSLASHincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHlabel] = ACTIONS(12405), + [anon_sym_BSLASHref] = ACTIONS(12405), + [anon_sym_BSLASHvref] = ACTIONS(12405), + [anon_sym_BSLASHVref] = ACTIONS(12405), + [anon_sym_BSLASHautoref] = ACTIONS(12405), + [anon_sym_BSLASHpageref] = ACTIONS(12405), + [anon_sym_BSLASHcref] = ACTIONS(12405), + [anon_sym_BSLASHCref] = ACTIONS(12405), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnameCref] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHlabelcref] = ACTIONS(12405), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12405), + [anon_sym_BSLASHeqref] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange] = ACTIONS(12405), + [anon_sym_BSLASHCrefrange] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewlabel] = ACTIONS(12405), + [anon_sym_BSLASHnewcommand] = ACTIONS(12405), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12405), + [anon_sym_BSLASHgls] = ACTIONS(12405), + [anon_sym_BSLASHGls] = ACTIONS(12405), + [anon_sym_BSLASHGLS] = ACTIONS(12405), + [anon_sym_BSLASHglspl] = ACTIONS(12405), + [anon_sym_BSLASHGlspl] = ACTIONS(12405), + [anon_sym_BSLASHGLSpl] = ACTIONS(12405), + [anon_sym_BSLASHglsdisp] = ACTIONS(12405), + [anon_sym_BSLASHglslink] = ACTIONS(12405), + [anon_sym_BSLASHglstext] = ACTIONS(12405), + [anon_sym_BSLASHGlstext] = ACTIONS(12405), + [anon_sym_BSLASHGLStext] = ACTIONS(12405), + [anon_sym_BSLASHglsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12405), + [anon_sym_BSLASHglsplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSplural] = ACTIONS(12405), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHglsname] = ACTIONS(12405), + [anon_sym_BSLASHGlsname] = ACTIONS(12405), + [anon_sym_BSLASHGLSname] = ACTIONS(12405), + [anon_sym_BSLASHglssymbol] = ACTIONS(12405), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12405), + [anon_sym_BSLASHglsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12405), + [anon_sym_BSLASHglsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12405), + [anon_sym_BSLASHglsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12405), + [anon_sym_BSLASHglsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12405), + [anon_sym_BSLASHglsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12405), + [anon_sym_BSLASHnewacronym] = ACTIONS(12405), + [anon_sym_BSLASHacrshort] = ACTIONS(12405), + [anon_sym_BSLASHAcrshort] = ACTIONS(12405), + [anon_sym_BSLASHACRshort] = ACTIONS(12405), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12405), + [anon_sym_BSLASHacrlong] = ACTIONS(12405), + [anon_sym_BSLASHAcrlong] = ACTIONS(12405), + [anon_sym_BSLASHACRlong] = ACTIONS(12405), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12405), + [anon_sym_BSLASHacrfull] = ACTIONS(12405), + [anon_sym_BSLASHAcrfull] = ACTIONS(12405), + [anon_sym_BSLASHACRfull] = ACTIONS(12405), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12405), + [anon_sym_BSLASHacs] = ACTIONS(12405), + [anon_sym_BSLASHAcs] = ACTIONS(12405), + [anon_sym_BSLASHacsp] = ACTIONS(12405), + [anon_sym_BSLASHAcsp] = ACTIONS(12405), + [anon_sym_BSLASHacl] = ACTIONS(12405), + [anon_sym_BSLASHAcl] = ACTIONS(12405), + [anon_sym_BSLASHaclp] = ACTIONS(12405), + [anon_sym_BSLASHAclp] = ACTIONS(12405), + [anon_sym_BSLASHacf] = ACTIONS(12405), + [anon_sym_BSLASHAcf] = ACTIONS(12405), + [anon_sym_BSLASHacfp] = ACTIONS(12405), + [anon_sym_BSLASHAcfp] = ACTIONS(12405), + [anon_sym_BSLASHac] = ACTIONS(12405), + [anon_sym_BSLASHAc] = ACTIONS(12405), + [anon_sym_BSLASHacp] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12405), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12405), + [anon_sym_BSLASHcolor] = ACTIONS(12405), + [anon_sym_BSLASHcolorbox] = ACTIONS(12405), + [anon_sym_BSLASHtextcolor] = ACTIONS(12405), + [anon_sym_BSLASHpagecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12405), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12405), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12405), + }, + [1683] = { + [sym_generic_command_name] = ACTIONS(12409), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12409), + [anon_sym_BSLASHitem] = ACTIONS(12409), + [anon_sym_LBRACK] = ACTIONS(12407), + [anon_sym_RBRACK] = ACTIONS(12407), + [anon_sym_LBRACE] = ACTIONS(12407), + [anon_sym_RBRACE] = ACTIONS(12407), + [anon_sym_LPAREN] = ACTIONS(12407), + [anon_sym_COMMA] = ACTIONS(12407), + [anon_sym_EQ] = ACTIONS(12407), + [sym_word] = ACTIONS(12407), + [sym_param] = ACTIONS(12407), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12407), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12407), + [anon_sym_DOLLAR] = ACTIONS(12409), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12407), + [anon_sym_BSLASHbegin] = ACTIONS(12409), + [anon_sym_BSLASHcaption] = ACTIONS(12409), + [anon_sym_BSLASHcite] = ACTIONS(12409), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCite] = ACTIONS(12409), + [anon_sym_BSLASHnocite] = ACTIONS(12409), + [anon_sym_BSLASHcitet] = ACTIONS(12409), + [anon_sym_BSLASHcitep] = ACTIONS(12409), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteauthor] = ACTIONS(12409), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12409), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitetitle] = ACTIONS(12409), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteyear] = ACTIONS(12409), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitedate] = ACTIONS(12409), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteurl] = ACTIONS(12409), + [anon_sym_BSLASHfullcite] = ACTIONS(12409), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12409), + [anon_sym_BSLASHcitealt] = ACTIONS(12409), + [anon_sym_BSLASHcitealp] = ACTIONS(12409), + [anon_sym_BSLASHcitetext] = ACTIONS(12409), + [anon_sym_BSLASHparencite] = ACTIONS(12409), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHParencite] = ACTIONS(12409), + [anon_sym_BSLASHfootcite] = ACTIONS(12409), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12409), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12409), + [anon_sym_BSLASHtextcite] = ACTIONS(12409), + [anon_sym_BSLASHTextcite] = ACTIONS(12409), + [anon_sym_BSLASHsmartcite] = ACTIONS(12409), + [anon_sym_BSLASHSmartcite] = ACTIONS(12409), + [anon_sym_BSLASHsupercite] = ACTIONS(12409), + [anon_sym_BSLASHautocite] = ACTIONS(12409), + [anon_sym_BSLASHAutocite] = ACTIONS(12409), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHvolcite] = ACTIONS(12409), + [anon_sym_BSLASHVolcite] = ACTIONS(12409), + [anon_sym_BSLASHpvolcite] = ACTIONS(12409), + [anon_sym_BSLASHPvolcite] = ACTIONS(12409), + [anon_sym_BSLASHfvolcite] = ACTIONS(12409), + [anon_sym_BSLASHftvolcite] = ACTIONS(12409), + [anon_sym_BSLASHsvolcite] = ACTIONS(12409), + [anon_sym_BSLASHSvolcite] = ACTIONS(12409), + [anon_sym_BSLASHtvolcite] = ACTIONS(12409), + [anon_sym_BSLASHTvolcite] = ACTIONS(12409), + [anon_sym_BSLASHavolcite] = ACTIONS(12409), + [anon_sym_BSLASHAvolcite] = ACTIONS(12409), + [anon_sym_BSLASHnotecite] = ACTIONS(12409), + [anon_sym_BSLASHpnotecite] = ACTIONS(12409), + [anon_sym_BSLASHPnotecite] = ACTIONS(12409), + [anon_sym_BSLASHfnotecite] = ACTIONS(12409), + [anon_sym_BSLASHusepackage] = ACTIONS(12409), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12409), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12409), + [anon_sym_BSLASHinclude] = ACTIONS(12409), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12409), + [anon_sym_BSLASHinput] = ACTIONS(12409), + [anon_sym_BSLASHsubfile] = ACTIONS(12409), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12409), + [anon_sym_BSLASHbibliography] = ACTIONS(12409), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12409), + [anon_sym_BSLASHincludesvg] = ACTIONS(12409), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12409), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12409), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12409), + [anon_sym_BSLASHimport] = ACTIONS(12409), + [anon_sym_BSLASHsubimport] = ACTIONS(12409), + [anon_sym_BSLASHinputfrom] = ACTIONS(12409), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12409), + [anon_sym_BSLASHincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHlabel] = ACTIONS(12409), + [anon_sym_BSLASHref] = ACTIONS(12409), + [anon_sym_BSLASHvref] = ACTIONS(12409), + [anon_sym_BSLASHVref] = ACTIONS(12409), + [anon_sym_BSLASHautoref] = ACTIONS(12409), + [anon_sym_BSLASHpageref] = ACTIONS(12409), + [anon_sym_BSLASHcref] = ACTIONS(12409), + [anon_sym_BSLASHCref] = ACTIONS(12409), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnameCref] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHlabelcref] = ACTIONS(12409), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12409), + [anon_sym_BSLASHeqref] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange] = ACTIONS(12409), + [anon_sym_BSLASHCrefrange] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewlabel] = ACTIONS(12409), + [anon_sym_BSLASHnewcommand] = ACTIONS(12409), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12409), + [anon_sym_BSLASHgls] = ACTIONS(12409), + [anon_sym_BSLASHGls] = ACTIONS(12409), + [anon_sym_BSLASHGLS] = ACTIONS(12409), + [anon_sym_BSLASHglspl] = ACTIONS(12409), + [anon_sym_BSLASHGlspl] = ACTIONS(12409), + [anon_sym_BSLASHGLSpl] = ACTIONS(12409), + [anon_sym_BSLASHglsdisp] = ACTIONS(12409), + [anon_sym_BSLASHglslink] = ACTIONS(12409), + [anon_sym_BSLASHglstext] = ACTIONS(12409), + [anon_sym_BSLASHGlstext] = ACTIONS(12409), + [anon_sym_BSLASHGLStext] = ACTIONS(12409), + [anon_sym_BSLASHglsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12409), + [anon_sym_BSLASHglsplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSplural] = ACTIONS(12409), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHglsname] = ACTIONS(12409), + [anon_sym_BSLASHGlsname] = ACTIONS(12409), + [anon_sym_BSLASHGLSname] = ACTIONS(12409), + [anon_sym_BSLASHglssymbol] = ACTIONS(12409), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12409), + [anon_sym_BSLASHglsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12409), + [anon_sym_BSLASHglsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12409), + [anon_sym_BSLASHglsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12409), + [anon_sym_BSLASHglsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12409), + [anon_sym_BSLASHglsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12409), + [anon_sym_BSLASHnewacronym] = ACTIONS(12409), + [anon_sym_BSLASHacrshort] = ACTIONS(12409), + [anon_sym_BSLASHAcrshort] = ACTIONS(12409), + [anon_sym_BSLASHACRshort] = ACTIONS(12409), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12409), + [anon_sym_BSLASHacrlong] = ACTIONS(12409), + [anon_sym_BSLASHAcrlong] = ACTIONS(12409), + [anon_sym_BSLASHACRlong] = ACTIONS(12409), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12409), + [anon_sym_BSLASHacrfull] = ACTIONS(12409), + [anon_sym_BSLASHAcrfull] = ACTIONS(12409), + [anon_sym_BSLASHACRfull] = ACTIONS(12409), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12409), + [anon_sym_BSLASHacs] = ACTIONS(12409), + [anon_sym_BSLASHAcs] = ACTIONS(12409), + [anon_sym_BSLASHacsp] = ACTIONS(12409), + [anon_sym_BSLASHAcsp] = ACTIONS(12409), + [anon_sym_BSLASHacl] = ACTIONS(12409), + [anon_sym_BSLASHAcl] = ACTIONS(12409), + [anon_sym_BSLASHaclp] = ACTIONS(12409), + [anon_sym_BSLASHAclp] = ACTIONS(12409), + [anon_sym_BSLASHacf] = ACTIONS(12409), + [anon_sym_BSLASHAcf] = ACTIONS(12409), + [anon_sym_BSLASHacfp] = ACTIONS(12409), + [anon_sym_BSLASHAcfp] = ACTIONS(12409), + [anon_sym_BSLASHac] = ACTIONS(12409), + [anon_sym_BSLASHAc] = ACTIONS(12409), + [anon_sym_BSLASHacp] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12409), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12409), + [anon_sym_BSLASHcolor] = ACTIONS(12409), + [anon_sym_BSLASHcolorbox] = ACTIONS(12409), + [anon_sym_BSLASHtextcolor] = ACTIONS(12409), + [anon_sym_BSLASHpagecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12409), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12409), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12409), + }, + [1684] = { + [sym_generic_command_name] = ACTIONS(12413), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12413), + [anon_sym_BSLASHitem] = ACTIONS(12413), + [anon_sym_LBRACK] = ACTIONS(12411), + [anon_sym_RBRACK] = ACTIONS(12411), + [anon_sym_LBRACE] = ACTIONS(12411), + [anon_sym_RBRACE] = ACTIONS(12411), + [anon_sym_LPAREN] = ACTIONS(12411), + [anon_sym_COMMA] = ACTIONS(12411), + [anon_sym_EQ] = ACTIONS(12411), + [sym_word] = ACTIONS(12411), + [sym_param] = ACTIONS(12411), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12411), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12411), + [anon_sym_DOLLAR] = ACTIONS(12413), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12411), + [anon_sym_BSLASHbegin] = ACTIONS(12413), + [anon_sym_BSLASHcaption] = ACTIONS(12413), + [anon_sym_BSLASHcite] = ACTIONS(12413), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCite] = ACTIONS(12413), + [anon_sym_BSLASHnocite] = ACTIONS(12413), + [anon_sym_BSLASHcitet] = ACTIONS(12413), + [anon_sym_BSLASHcitep] = ACTIONS(12413), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteauthor] = ACTIONS(12413), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12413), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitetitle] = ACTIONS(12413), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteyear] = ACTIONS(12413), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitedate] = ACTIONS(12413), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteurl] = ACTIONS(12413), + [anon_sym_BSLASHfullcite] = ACTIONS(12413), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12413), + [anon_sym_BSLASHcitealt] = ACTIONS(12413), + [anon_sym_BSLASHcitealp] = ACTIONS(12413), + [anon_sym_BSLASHcitetext] = ACTIONS(12413), + [anon_sym_BSLASHparencite] = ACTIONS(12413), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHParencite] = ACTIONS(12413), + [anon_sym_BSLASHfootcite] = ACTIONS(12413), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12413), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12413), + [anon_sym_BSLASHtextcite] = ACTIONS(12413), + [anon_sym_BSLASHTextcite] = ACTIONS(12413), + [anon_sym_BSLASHsmartcite] = ACTIONS(12413), + [anon_sym_BSLASHSmartcite] = ACTIONS(12413), + [anon_sym_BSLASHsupercite] = ACTIONS(12413), + [anon_sym_BSLASHautocite] = ACTIONS(12413), + [anon_sym_BSLASHAutocite] = ACTIONS(12413), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHvolcite] = ACTIONS(12413), + [anon_sym_BSLASHVolcite] = ACTIONS(12413), + [anon_sym_BSLASHpvolcite] = ACTIONS(12413), + [anon_sym_BSLASHPvolcite] = ACTIONS(12413), + [anon_sym_BSLASHfvolcite] = ACTIONS(12413), + [anon_sym_BSLASHftvolcite] = ACTIONS(12413), + [anon_sym_BSLASHsvolcite] = ACTIONS(12413), + [anon_sym_BSLASHSvolcite] = ACTIONS(12413), + [anon_sym_BSLASHtvolcite] = ACTIONS(12413), + [anon_sym_BSLASHTvolcite] = ACTIONS(12413), + [anon_sym_BSLASHavolcite] = ACTIONS(12413), + [anon_sym_BSLASHAvolcite] = ACTIONS(12413), + [anon_sym_BSLASHnotecite] = ACTIONS(12413), + [anon_sym_BSLASHpnotecite] = ACTIONS(12413), + [anon_sym_BSLASHPnotecite] = ACTIONS(12413), + [anon_sym_BSLASHfnotecite] = ACTIONS(12413), + [anon_sym_BSLASHusepackage] = ACTIONS(12413), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12413), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12413), + [anon_sym_BSLASHinclude] = ACTIONS(12413), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12413), + [anon_sym_BSLASHinput] = ACTIONS(12413), + [anon_sym_BSLASHsubfile] = ACTIONS(12413), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12413), + [anon_sym_BSLASHbibliography] = ACTIONS(12413), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12413), + [anon_sym_BSLASHincludesvg] = ACTIONS(12413), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12413), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12413), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12413), + [anon_sym_BSLASHimport] = ACTIONS(12413), + [anon_sym_BSLASHsubimport] = ACTIONS(12413), + [anon_sym_BSLASHinputfrom] = ACTIONS(12413), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12413), + [anon_sym_BSLASHincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHlabel] = ACTIONS(12413), + [anon_sym_BSLASHref] = ACTIONS(12413), + [anon_sym_BSLASHvref] = ACTIONS(12413), + [anon_sym_BSLASHVref] = ACTIONS(12413), + [anon_sym_BSLASHautoref] = ACTIONS(12413), + [anon_sym_BSLASHpageref] = ACTIONS(12413), + [anon_sym_BSLASHcref] = ACTIONS(12413), + [anon_sym_BSLASHCref] = ACTIONS(12413), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnameCref] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHlabelcref] = ACTIONS(12413), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12413), + [anon_sym_BSLASHeqref] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange] = ACTIONS(12413), + [anon_sym_BSLASHCrefrange] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewlabel] = ACTIONS(12413), + [anon_sym_BSLASHnewcommand] = ACTIONS(12413), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12413), + [anon_sym_BSLASHgls] = ACTIONS(12413), + [anon_sym_BSLASHGls] = ACTIONS(12413), + [anon_sym_BSLASHGLS] = ACTIONS(12413), + [anon_sym_BSLASHglspl] = ACTIONS(12413), + [anon_sym_BSLASHGlspl] = ACTIONS(12413), + [anon_sym_BSLASHGLSpl] = ACTIONS(12413), + [anon_sym_BSLASHglsdisp] = ACTIONS(12413), + [anon_sym_BSLASHglslink] = ACTIONS(12413), + [anon_sym_BSLASHglstext] = ACTIONS(12413), + [anon_sym_BSLASHGlstext] = ACTIONS(12413), + [anon_sym_BSLASHGLStext] = ACTIONS(12413), + [anon_sym_BSLASHglsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12413), + [anon_sym_BSLASHglsplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSplural] = ACTIONS(12413), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHglsname] = ACTIONS(12413), + [anon_sym_BSLASHGlsname] = ACTIONS(12413), + [anon_sym_BSLASHGLSname] = ACTIONS(12413), + [anon_sym_BSLASHglssymbol] = ACTIONS(12413), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12413), + [anon_sym_BSLASHglsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12413), + [anon_sym_BSLASHglsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12413), + [anon_sym_BSLASHglsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12413), + [anon_sym_BSLASHglsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12413), + [anon_sym_BSLASHglsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12413), + [anon_sym_BSLASHnewacronym] = ACTIONS(12413), + [anon_sym_BSLASHacrshort] = ACTIONS(12413), + [anon_sym_BSLASHAcrshort] = ACTIONS(12413), + [anon_sym_BSLASHACRshort] = ACTIONS(12413), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12413), + [anon_sym_BSLASHacrlong] = ACTIONS(12413), + [anon_sym_BSLASHAcrlong] = ACTIONS(12413), + [anon_sym_BSLASHACRlong] = ACTIONS(12413), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12413), + [anon_sym_BSLASHacrfull] = ACTIONS(12413), + [anon_sym_BSLASHAcrfull] = ACTIONS(12413), + [anon_sym_BSLASHACRfull] = ACTIONS(12413), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12413), + [anon_sym_BSLASHacs] = ACTIONS(12413), + [anon_sym_BSLASHAcs] = ACTIONS(12413), + [anon_sym_BSLASHacsp] = ACTIONS(12413), + [anon_sym_BSLASHAcsp] = ACTIONS(12413), + [anon_sym_BSLASHacl] = ACTIONS(12413), + [anon_sym_BSLASHAcl] = ACTIONS(12413), + [anon_sym_BSLASHaclp] = ACTIONS(12413), + [anon_sym_BSLASHAclp] = ACTIONS(12413), + [anon_sym_BSLASHacf] = ACTIONS(12413), + [anon_sym_BSLASHAcf] = ACTIONS(12413), + [anon_sym_BSLASHacfp] = ACTIONS(12413), + [anon_sym_BSLASHAcfp] = ACTIONS(12413), + [anon_sym_BSLASHac] = ACTIONS(12413), + [anon_sym_BSLASHAc] = ACTIONS(12413), + [anon_sym_BSLASHacp] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12413), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12413), + [anon_sym_BSLASHcolor] = ACTIONS(12413), + [anon_sym_BSLASHcolorbox] = ACTIONS(12413), + [anon_sym_BSLASHtextcolor] = ACTIONS(12413), + [anon_sym_BSLASHpagecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12413), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12413), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12413), + }, + [1685] = { + [sym_generic_command_name] = ACTIONS(12421), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12421), + [anon_sym_BSLASHitem] = ACTIONS(12421), + [anon_sym_LBRACK] = ACTIONS(12419), + [anon_sym_RBRACK] = ACTIONS(12419), + [anon_sym_LBRACE] = ACTIONS(12419), + [anon_sym_RBRACE] = ACTIONS(12419), + [anon_sym_LPAREN] = ACTIONS(12419), + [anon_sym_COMMA] = ACTIONS(12419), + [anon_sym_EQ] = ACTIONS(12419), + [sym_word] = ACTIONS(12419), + [sym_param] = ACTIONS(12419), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12419), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12419), + [anon_sym_DOLLAR] = ACTIONS(12421), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12419), + [anon_sym_BSLASHbegin] = ACTIONS(12421), + [anon_sym_BSLASHcaption] = ACTIONS(12421), + [anon_sym_BSLASHcite] = ACTIONS(12421), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCite] = ACTIONS(12421), + [anon_sym_BSLASHnocite] = ACTIONS(12421), + [anon_sym_BSLASHcitet] = ACTIONS(12421), + [anon_sym_BSLASHcitep] = ACTIONS(12421), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteauthor] = ACTIONS(12421), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12421), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitetitle] = ACTIONS(12421), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteyear] = ACTIONS(12421), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitedate] = ACTIONS(12421), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteurl] = ACTIONS(12421), + [anon_sym_BSLASHfullcite] = ACTIONS(12421), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12421), + [anon_sym_BSLASHcitealt] = ACTIONS(12421), + [anon_sym_BSLASHcitealp] = ACTIONS(12421), + [anon_sym_BSLASHcitetext] = ACTIONS(12421), + [anon_sym_BSLASHparencite] = ACTIONS(12421), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHParencite] = ACTIONS(12421), + [anon_sym_BSLASHfootcite] = ACTIONS(12421), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12421), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12421), + [anon_sym_BSLASHtextcite] = ACTIONS(12421), + [anon_sym_BSLASHTextcite] = ACTIONS(12421), + [anon_sym_BSLASHsmartcite] = ACTIONS(12421), + [anon_sym_BSLASHSmartcite] = ACTIONS(12421), + [anon_sym_BSLASHsupercite] = ACTIONS(12421), + [anon_sym_BSLASHautocite] = ACTIONS(12421), + [anon_sym_BSLASHAutocite] = ACTIONS(12421), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHvolcite] = ACTIONS(12421), + [anon_sym_BSLASHVolcite] = ACTIONS(12421), + [anon_sym_BSLASHpvolcite] = ACTIONS(12421), + [anon_sym_BSLASHPvolcite] = ACTIONS(12421), + [anon_sym_BSLASHfvolcite] = ACTIONS(12421), + [anon_sym_BSLASHftvolcite] = ACTIONS(12421), + [anon_sym_BSLASHsvolcite] = ACTIONS(12421), + [anon_sym_BSLASHSvolcite] = ACTIONS(12421), + [anon_sym_BSLASHtvolcite] = ACTIONS(12421), + [anon_sym_BSLASHTvolcite] = ACTIONS(12421), + [anon_sym_BSLASHavolcite] = ACTIONS(12421), + [anon_sym_BSLASHAvolcite] = ACTIONS(12421), + [anon_sym_BSLASHnotecite] = ACTIONS(12421), + [anon_sym_BSLASHpnotecite] = ACTIONS(12421), + [anon_sym_BSLASHPnotecite] = ACTIONS(12421), + [anon_sym_BSLASHfnotecite] = ACTIONS(12421), + [anon_sym_BSLASHusepackage] = ACTIONS(12421), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12421), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12421), + [anon_sym_BSLASHinclude] = ACTIONS(12421), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12421), + [anon_sym_BSLASHinput] = ACTIONS(12421), + [anon_sym_BSLASHsubfile] = ACTIONS(12421), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12421), + [anon_sym_BSLASHbibliography] = ACTIONS(12421), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12421), + [anon_sym_BSLASHincludesvg] = ACTIONS(12421), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12421), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12421), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12421), + [anon_sym_BSLASHimport] = ACTIONS(12421), + [anon_sym_BSLASHsubimport] = ACTIONS(12421), + [anon_sym_BSLASHinputfrom] = ACTIONS(12421), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12421), + [anon_sym_BSLASHincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHlabel] = ACTIONS(12421), + [anon_sym_BSLASHref] = ACTIONS(12421), + [anon_sym_BSLASHvref] = ACTIONS(12421), + [anon_sym_BSLASHVref] = ACTIONS(12421), + [anon_sym_BSLASHautoref] = ACTIONS(12421), + [anon_sym_BSLASHpageref] = ACTIONS(12421), + [anon_sym_BSLASHcref] = ACTIONS(12421), + [anon_sym_BSLASHCref] = ACTIONS(12421), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnameCref] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHlabelcref] = ACTIONS(12421), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12421), + [anon_sym_BSLASHeqref] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange] = ACTIONS(12421), + [anon_sym_BSLASHCrefrange] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewlabel] = ACTIONS(12421), + [anon_sym_BSLASHnewcommand] = ACTIONS(12421), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12421), + [anon_sym_BSLASHgls] = ACTIONS(12421), + [anon_sym_BSLASHGls] = ACTIONS(12421), + [anon_sym_BSLASHGLS] = ACTIONS(12421), + [anon_sym_BSLASHglspl] = ACTIONS(12421), + [anon_sym_BSLASHGlspl] = ACTIONS(12421), + [anon_sym_BSLASHGLSpl] = ACTIONS(12421), + [anon_sym_BSLASHglsdisp] = ACTIONS(12421), + [anon_sym_BSLASHglslink] = ACTIONS(12421), + [anon_sym_BSLASHglstext] = ACTIONS(12421), + [anon_sym_BSLASHGlstext] = ACTIONS(12421), + [anon_sym_BSLASHGLStext] = ACTIONS(12421), + [anon_sym_BSLASHglsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12421), + [anon_sym_BSLASHglsplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSplural] = ACTIONS(12421), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHglsname] = ACTIONS(12421), + [anon_sym_BSLASHGlsname] = ACTIONS(12421), + [anon_sym_BSLASHGLSname] = ACTIONS(12421), + [anon_sym_BSLASHglssymbol] = ACTIONS(12421), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12421), + [anon_sym_BSLASHglsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12421), + [anon_sym_BSLASHglsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12421), + [anon_sym_BSLASHglsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12421), + [anon_sym_BSLASHglsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12421), + [anon_sym_BSLASHglsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12421), + [anon_sym_BSLASHnewacronym] = ACTIONS(12421), + [anon_sym_BSLASHacrshort] = ACTIONS(12421), + [anon_sym_BSLASHAcrshort] = ACTIONS(12421), + [anon_sym_BSLASHACRshort] = ACTIONS(12421), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12421), + [anon_sym_BSLASHacrlong] = ACTIONS(12421), + [anon_sym_BSLASHAcrlong] = ACTIONS(12421), + [anon_sym_BSLASHACRlong] = ACTIONS(12421), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12421), + [anon_sym_BSLASHacrfull] = ACTIONS(12421), + [anon_sym_BSLASHAcrfull] = ACTIONS(12421), + [anon_sym_BSLASHACRfull] = ACTIONS(12421), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12421), + [anon_sym_BSLASHacs] = ACTIONS(12421), + [anon_sym_BSLASHAcs] = ACTIONS(12421), + [anon_sym_BSLASHacsp] = ACTIONS(12421), + [anon_sym_BSLASHAcsp] = ACTIONS(12421), + [anon_sym_BSLASHacl] = ACTIONS(12421), + [anon_sym_BSLASHAcl] = ACTIONS(12421), + [anon_sym_BSLASHaclp] = ACTIONS(12421), + [anon_sym_BSLASHAclp] = ACTIONS(12421), + [anon_sym_BSLASHacf] = ACTIONS(12421), + [anon_sym_BSLASHAcf] = ACTIONS(12421), + [anon_sym_BSLASHacfp] = ACTIONS(12421), + [anon_sym_BSLASHAcfp] = ACTIONS(12421), + [anon_sym_BSLASHac] = ACTIONS(12421), + [anon_sym_BSLASHAc] = ACTIONS(12421), + [anon_sym_BSLASHacp] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12421), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12421), + [anon_sym_BSLASHcolor] = ACTIONS(12421), + [anon_sym_BSLASHcolorbox] = ACTIONS(12421), + [anon_sym_BSLASHtextcolor] = ACTIONS(12421), + [anon_sym_BSLASHpagecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12421), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12421), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12421), + }, + [1686] = { + [sym_generic_command_name] = ACTIONS(12425), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12425), + [anon_sym_BSLASHitem] = ACTIONS(12425), + [anon_sym_LBRACK] = ACTIONS(12423), + [anon_sym_RBRACK] = ACTIONS(12423), + [anon_sym_LBRACE] = ACTIONS(12423), + [anon_sym_RBRACE] = ACTIONS(12423), + [anon_sym_LPAREN] = ACTIONS(12423), + [anon_sym_COMMA] = ACTIONS(12423), + [anon_sym_EQ] = ACTIONS(12423), + [sym_word] = ACTIONS(12423), + [sym_param] = ACTIONS(12423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12423), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12423), + [anon_sym_DOLLAR] = ACTIONS(12425), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12423), + [anon_sym_BSLASHbegin] = ACTIONS(12425), + [anon_sym_BSLASHcaption] = ACTIONS(12425), + [anon_sym_BSLASHcite] = ACTIONS(12425), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCite] = ACTIONS(12425), + [anon_sym_BSLASHnocite] = ACTIONS(12425), + [anon_sym_BSLASHcitet] = ACTIONS(12425), + [anon_sym_BSLASHcitep] = ACTIONS(12425), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteauthor] = ACTIONS(12425), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12425), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitetitle] = ACTIONS(12425), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteyear] = ACTIONS(12425), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitedate] = ACTIONS(12425), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteurl] = ACTIONS(12425), + [anon_sym_BSLASHfullcite] = ACTIONS(12425), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12425), + [anon_sym_BSLASHcitealt] = ACTIONS(12425), + [anon_sym_BSLASHcitealp] = ACTIONS(12425), + [anon_sym_BSLASHcitetext] = ACTIONS(12425), + [anon_sym_BSLASHparencite] = ACTIONS(12425), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHParencite] = ACTIONS(12425), + [anon_sym_BSLASHfootcite] = ACTIONS(12425), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12425), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12425), + [anon_sym_BSLASHtextcite] = ACTIONS(12425), + [anon_sym_BSLASHTextcite] = ACTIONS(12425), + [anon_sym_BSLASHsmartcite] = ACTIONS(12425), + [anon_sym_BSLASHSmartcite] = ACTIONS(12425), + [anon_sym_BSLASHsupercite] = ACTIONS(12425), + [anon_sym_BSLASHautocite] = ACTIONS(12425), + [anon_sym_BSLASHAutocite] = ACTIONS(12425), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHvolcite] = ACTIONS(12425), + [anon_sym_BSLASHVolcite] = ACTIONS(12425), + [anon_sym_BSLASHpvolcite] = ACTIONS(12425), + [anon_sym_BSLASHPvolcite] = ACTIONS(12425), + [anon_sym_BSLASHfvolcite] = ACTIONS(12425), + [anon_sym_BSLASHftvolcite] = ACTIONS(12425), + [anon_sym_BSLASHsvolcite] = ACTIONS(12425), + [anon_sym_BSLASHSvolcite] = ACTIONS(12425), + [anon_sym_BSLASHtvolcite] = ACTIONS(12425), + [anon_sym_BSLASHTvolcite] = ACTIONS(12425), + [anon_sym_BSLASHavolcite] = ACTIONS(12425), + [anon_sym_BSLASHAvolcite] = ACTIONS(12425), + [anon_sym_BSLASHnotecite] = ACTIONS(12425), + [anon_sym_BSLASHpnotecite] = ACTIONS(12425), + [anon_sym_BSLASHPnotecite] = ACTIONS(12425), + [anon_sym_BSLASHfnotecite] = ACTIONS(12425), + [anon_sym_BSLASHusepackage] = ACTIONS(12425), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12425), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12425), + [anon_sym_BSLASHinclude] = ACTIONS(12425), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12425), + [anon_sym_BSLASHinput] = ACTIONS(12425), + [anon_sym_BSLASHsubfile] = ACTIONS(12425), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12425), + [anon_sym_BSLASHbibliography] = ACTIONS(12425), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12425), + [anon_sym_BSLASHincludesvg] = ACTIONS(12425), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12425), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12425), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12425), + [anon_sym_BSLASHimport] = ACTIONS(12425), + [anon_sym_BSLASHsubimport] = ACTIONS(12425), + [anon_sym_BSLASHinputfrom] = ACTIONS(12425), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12425), + [anon_sym_BSLASHincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHlabel] = ACTIONS(12425), + [anon_sym_BSLASHref] = ACTIONS(12425), + [anon_sym_BSLASHvref] = ACTIONS(12425), + [anon_sym_BSLASHVref] = ACTIONS(12425), + [anon_sym_BSLASHautoref] = ACTIONS(12425), + [anon_sym_BSLASHpageref] = ACTIONS(12425), + [anon_sym_BSLASHcref] = ACTIONS(12425), + [anon_sym_BSLASHCref] = ACTIONS(12425), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnameCref] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHlabelcref] = ACTIONS(12425), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12425), + [anon_sym_BSLASHeqref] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange] = ACTIONS(12425), + [anon_sym_BSLASHCrefrange] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewlabel] = ACTIONS(12425), + [anon_sym_BSLASHnewcommand] = ACTIONS(12425), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12425), + [anon_sym_BSLASHgls] = ACTIONS(12425), + [anon_sym_BSLASHGls] = ACTIONS(12425), + [anon_sym_BSLASHGLS] = ACTIONS(12425), + [anon_sym_BSLASHglspl] = ACTIONS(12425), + [anon_sym_BSLASHGlspl] = ACTIONS(12425), + [anon_sym_BSLASHGLSpl] = ACTIONS(12425), + [anon_sym_BSLASHglsdisp] = ACTIONS(12425), + [anon_sym_BSLASHglslink] = ACTIONS(12425), + [anon_sym_BSLASHglstext] = ACTIONS(12425), + [anon_sym_BSLASHGlstext] = ACTIONS(12425), + [anon_sym_BSLASHGLStext] = ACTIONS(12425), + [anon_sym_BSLASHglsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12425), + [anon_sym_BSLASHglsplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSplural] = ACTIONS(12425), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHglsname] = ACTIONS(12425), + [anon_sym_BSLASHGlsname] = ACTIONS(12425), + [anon_sym_BSLASHGLSname] = ACTIONS(12425), + [anon_sym_BSLASHglssymbol] = ACTIONS(12425), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12425), + [anon_sym_BSLASHglsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12425), + [anon_sym_BSLASHglsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12425), + [anon_sym_BSLASHglsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12425), + [anon_sym_BSLASHglsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12425), + [anon_sym_BSLASHglsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12425), + [anon_sym_BSLASHnewacronym] = ACTIONS(12425), + [anon_sym_BSLASHacrshort] = ACTIONS(12425), + [anon_sym_BSLASHAcrshort] = ACTIONS(12425), + [anon_sym_BSLASHACRshort] = ACTIONS(12425), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12425), + [anon_sym_BSLASHacrlong] = ACTIONS(12425), + [anon_sym_BSLASHAcrlong] = ACTIONS(12425), + [anon_sym_BSLASHACRlong] = ACTIONS(12425), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12425), + [anon_sym_BSLASHacrfull] = ACTIONS(12425), + [anon_sym_BSLASHAcrfull] = ACTIONS(12425), + [anon_sym_BSLASHACRfull] = ACTIONS(12425), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12425), + [anon_sym_BSLASHacs] = ACTIONS(12425), + [anon_sym_BSLASHAcs] = ACTIONS(12425), + [anon_sym_BSLASHacsp] = ACTIONS(12425), + [anon_sym_BSLASHAcsp] = ACTIONS(12425), + [anon_sym_BSLASHacl] = ACTIONS(12425), + [anon_sym_BSLASHAcl] = ACTIONS(12425), + [anon_sym_BSLASHaclp] = ACTIONS(12425), + [anon_sym_BSLASHAclp] = ACTIONS(12425), + [anon_sym_BSLASHacf] = ACTIONS(12425), + [anon_sym_BSLASHAcf] = ACTIONS(12425), + [anon_sym_BSLASHacfp] = ACTIONS(12425), + [anon_sym_BSLASHAcfp] = ACTIONS(12425), + [anon_sym_BSLASHac] = ACTIONS(12425), + [anon_sym_BSLASHAc] = ACTIONS(12425), + [anon_sym_BSLASHacp] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12425), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12425), + [anon_sym_BSLASHcolor] = ACTIONS(12425), + [anon_sym_BSLASHcolorbox] = ACTIONS(12425), + [anon_sym_BSLASHtextcolor] = ACTIONS(12425), + [anon_sym_BSLASHpagecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12425), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12425), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12425), + }, + [1687] = { + [sym_generic_command_name] = ACTIONS(12429), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12429), + [anon_sym_BSLASHitem] = ACTIONS(12429), + [anon_sym_LBRACK] = ACTIONS(12427), + [anon_sym_RBRACK] = ACTIONS(12427), + [anon_sym_LBRACE] = ACTIONS(12427), + [anon_sym_RBRACE] = ACTIONS(12427), + [anon_sym_LPAREN] = ACTIONS(12427), + [anon_sym_COMMA] = ACTIONS(12427), + [anon_sym_EQ] = ACTIONS(12427), + [sym_word] = ACTIONS(12427), + [sym_param] = ACTIONS(12427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12427), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12427), + [anon_sym_DOLLAR] = ACTIONS(12429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12427), + [anon_sym_BSLASHbegin] = ACTIONS(12429), + [anon_sym_BSLASHcaption] = ACTIONS(12429), + [anon_sym_BSLASHcite] = ACTIONS(12429), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCite] = ACTIONS(12429), + [anon_sym_BSLASHnocite] = ACTIONS(12429), + [anon_sym_BSLASHcitet] = ACTIONS(12429), + [anon_sym_BSLASHcitep] = ACTIONS(12429), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteauthor] = ACTIONS(12429), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12429), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitetitle] = ACTIONS(12429), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteyear] = ACTIONS(12429), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitedate] = ACTIONS(12429), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteurl] = ACTIONS(12429), + [anon_sym_BSLASHfullcite] = ACTIONS(12429), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12429), + [anon_sym_BSLASHcitealt] = ACTIONS(12429), + [anon_sym_BSLASHcitealp] = ACTIONS(12429), + [anon_sym_BSLASHcitetext] = ACTIONS(12429), + [anon_sym_BSLASHparencite] = ACTIONS(12429), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHParencite] = ACTIONS(12429), + [anon_sym_BSLASHfootcite] = ACTIONS(12429), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12429), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12429), + [anon_sym_BSLASHtextcite] = ACTIONS(12429), + [anon_sym_BSLASHTextcite] = ACTIONS(12429), + [anon_sym_BSLASHsmartcite] = ACTIONS(12429), + [anon_sym_BSLASHSmartcite] = ACTIONS(12429), + [anon_sym_BSLASHsupercite] = ACTIONS(12429), + [anon_sym_BSLASHautocite] = ACTIONS(12429), + [anon_sym_BSLASHAutocite] = ACTIONS(12429), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHvolcite] = ACTIONS(12429), + [anon_sym_BSLASHVolcite] = ACTIONS(12429), + [anon_sym_BSLASHpvolcite] = ACTIONS(12429), + [anon_sym_BSLASHPvolcite] = ACTIONS(12429), + [anon_sym_BSLASHfvolcite] = ACTIONS(12429), + [anon_sym_BSLASHftvolcite] = ACTIONS(12429), + [anon_sym_BSLASHsvolcite] = ACTIONS(12429), + [anon_sym_BSLASHSvolcite] = ACTIONS(12429), + [anon_sym_BSLASHtvolcite] = ACTIONS(12429), + [anon_sym_BSLASHTvolcite] = ACTIONS(12429), + [anon_sym_BSLASHavolcite] = ACTIONS(12429), + [anon_sym_BSLASHAvolcite] = ACTIONS(12429), + [anon_sym_BSLASHnotecite] = ACTIONS(12429), + [anon_sym_BSLASHpnotecite] = ACTIONS(12429), + [anon_sym_BSLASHPnotecite] = ACTIONS(12429), + [anon_sym_BSLASHfnotecite] = ACTIONS(12429), + [anon_sym_BSLASHusepackage] = ACTIONS(12429), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12429), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12429), + [anon_sym_BSLASHinclude] = ACTIONS(12429), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12429), + [anon_sym_BSLASHinput] = ACTIONS(12429), + [anon_sym_BSLASHsubfile] = ACTIONS(12429), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12429), + [anon_sym_BSLASHbibliography] = ACTIONS(12429), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12429), + [anon_sym_BSLASHincludesvg] = ACTIONS(12429), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12429), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12429), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12429), + [anon_sym_BSLASHimport] = ACTIONS(12429), + [anon_sym_BSLASHsubimport] = ACTIONS(12429), + [anon_sym_BSLASHinputfrom] = ACTIONS(12429), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12429), + [anon_sym_BSLASHincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHlabel] = ACTIONS(12429), + [anon_sym_BSLASHref] = ACTIONS(12429), + [anon_sym_BSLASHvref] = ACTIONS(12429), + [anon_sym_BSLASHVref] = ACTIONS(12429), + [anon_sym_BSLASHautoref] = ACTIONS(12429), + [anon_sym_BSLASHpageref] = ACTIONS(12429), + [anon_sym_BSLASHcref] = ACTIONS(12429), + [anon_sym_BSLASHCref] = ACTIONS(12429), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnameCref] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHlabelcref] = ACTIONS(12429), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12429), + [anon_sym_BSLASHeqref] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange] = ACTIONS(12429), + [anon_sym_BSLASHCrefrange] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewlabel] = ACTIONS(12429), + [anon_sym_BSLASHnewcommand] = ACTIONS(12429), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12429), + [anon_sym_BSLASHgls] = ACTIONS(12429), + [anon_sym_BSLASHGls] = ACTIONS(12429), + [anon_sym_BSLASHGLS] = ACTIONS(12429), + [anon_sym_BSLASHglspl] = ACTIONS(12429), + [anon_sym_BSLASHGlspl] = ACTIONS(12429), + [anon_sym_BSLASHGLSpl] = ACTIONS(12429), + [anon_sym_BSLASHglsdisp] = ACTIONS(12429), + [anon_sym_BSLASHglslink] = ACTIONS(12429), + [anon_sym_BSLASHglstext] = ACTIONS(12429), + [anon_sym_BSLASHGlstext] = ACTIONS(12429), + [anon_sym_BSLASHGLStext] = ACTIONS(12429), + [anon_sym_BSLASHglsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12429), + [anon_sym_BSLASHglsplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSplural] = ACTIONS(12429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHglsname] = ACTIONS(12429), + [anon_sym_BSLASHGlsname] = ACTIONS(12429), + [anon_sym_BSLASHGLSname] = ACTIONS(12429), + [anon_sym_BSLASHglssymbol] = ACTIONS(12429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12429), + [anon_sym_BSLASHglsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12429), + [anon_sym_BSLASHglsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12429), + [anon_sym_BSLASHglsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12429), + [anon_sym_BSLASHglsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12429), + [anon_sym_BSLASHglsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12429), + [anon_sym_BSLASHnewacronym] = ACTIONS(12429), + [anon_sym_BSLASHacrshort] = ACTIONS(12429), + [anon_sym_BSLASHAcrshort] = ACTIONS(12429), + [anon_sym_BSLASHACRshort] = ACTIONS(12429), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12429), + [anon_sym_BSLASHacrlong] = ACTIONS(12429), + [anon_sym_BSLASHAcrlong] = ACTIONS(12429), + [anon_sym_BSLASHACRlong] = ACTIONS(12429), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12429), + [anon_sym_BSLASHacrfull] = ACTIONS(12429), + [anon_sym_BSLASHAcrfull] = ACTIONS(12429), + [anon_sym_BSLASHACRfull] = ACTIONS(12429), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12429), + [anon_sym_BSLASHacs] = ACTIONS(12429), + [anon_sym_BSLASHAcs] = ACTIONS(12429), + [anon_sym_BSLASHacsp] = ACTIONS(12429), + [anon_sym_BSLASHAcsp] = ACTIONS(12429), + [anon_sym_BSLASHacl] = ACTIONS(12429), + [anon_sym_BSLASHAcl] = ACTIONS(12429), + [anon_sym_BSLASHaclp] = ACTIONS(12429), + [anon_sym_BSLASHAclp] = ACTIONS(12429), + [anon_sym_BSLASHacf] = ACTIONS(12429), + [anon_sym_BSLASHAcf] = ACTIONS(12429), + [anon_sym_BSLASHacfp] = ACTIONS(12429), + [anon_sym_BSLASHAcfp] = ACTIONS(12429), + [anon_sym_BSLASHac] = ACTIONS(12429), + [anon_sym_BSLASHAc] = ACTIONS(12429), + [anon_sym_BSLASHacp] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12429), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12429), + [anon_sym_BSLASHcolor] = ACTIONS(12429), + [anon_sym_BSLASHcolorbox] = ACTIONS(12429), + [anon_sym_BSLASHtextcolor] = ACTIONS(12429), + [anon_sym_BSLASHpagecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12429), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12429), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12429), + }, + [1688] = { + [sym_generic_command_name] = ACTIONS(12433), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12433), + [anon_sym_BSLASHitem] = ACTIONS(12433), + [anon_sym_LBRACK] = ACTIONS(12431), + [anon_sym_RBRACK] = ACTIONS(12431), + [anon_sym_LBRACE] = ACTIONS(12431), + [anon_sym_RBRACE] = ACTIONS(12431), + [anon_sym_LPAREN] = ACTIONS(12431), + [anon_sym_COMMA] = ACTIONS(12431), + [anon_sym_EQ] = ACTIONS(12431), + [sym_word] = ACTIONS(12431), + [sym_param] = ACTIONS(12431), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12431), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12431), + [anon_sym_DOLLAR] = ACTIONS(12433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12431), + [anon_sym_BSLASHbegin] = ACTIONS(12433), + [anon_sym_BSLASHcaption] = ACTIONS(12433), + [anon_sym_BSLASHcite] = ACTIONS(12433), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCite] = ACTIONS(12433), + [anon_sym_BSLASHnocite] = ACTIONS(12433), + [anon_sym_BSLASHcitet] = ACTIONS(12433), + [anon_sym_BSLASHcitep] = ACTIONS(12433), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteauthor] = ACTIONS(12433), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12433), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitetitle] = ACTIONS(12433), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteyear] = ACTIONS(12433), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitedate] = ACTIONS(12433), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteurl] = ACTIONS(12433), + [anon_sym_BSLASHfullcite] = ACTIONS(12433), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12433), + [anon_sym_BSLASHcitealt] = ACTIONS(12433), + [anon_sym_BSLASHcitealp] = ACTIONS(12433), + [anon_sym_BSLASHcitetext] = ACTIONS(12433), + [anon_sym_BSLASHparencite] = ACTIONS(12433), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHParencite] = ACTIONS(12433), + [anon_sym_BSLASHfootcite] = ACTIONS(12433), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12433), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12433), + [anon_sym_BSLASHtextcite] = ACTIONS(12433), + [anon_sym_BSLASHTextcite] = ACTIONS(12433), + [anon_sym_BSLASHsmartcite] = ACTIONS(12433), + [anon_sym_BSLASHSmartcite] = ACTIONS(12433), + [anon_sym_BSLASHsupercite] = ACTIONS(12433), + [anon_sym_BSLASHautocite] = ACTIONS(12433), + [anon_sym_BSLASHAutocite] = ACTIONS(12433), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHvolcite] = ACTIONS(12433), + [anon_sym_BSLASHVolcite] = ACTIONS(12433), + [anon_sym_BSLASHpvolcite] = ACTIONS(12433), + [anon_sym_BSLASHPvolcite] = ACTIONS(12433), + [anon_sym_BSLASHfvolcite] = ACTIONS(12433), + [anon_sym_BSLASHftvolcite] = ACTIONS(12433), + [anon_sym_BSLASHsvolcite] = ACTIONS(12433), + [anon_sym_BSLASHSvolcite] = ACTIONS(12433), + [anon_sym_BSLASHtvolcite] = ACTIONS(12433), + [anon_sym_BSLASHTvolcite] = ACTIONS(12433), + [anon_sym_BSLASHavolcite] = ACTIONS(12433), + [anon_sym_BSLASHAvolcite] = ACTIONS(12433), + [anon_sym_BSLASHnotecite] = ACTIONS(12433), + [anon_sym_BSLASHpnotecite] = ACTIONS(12433), + [anon_sym_BSLASHPnotecite] = ACTIONS(12433), + [anon_sym_BSLASHfnotecite] = ACTIONS(12433), + [anon_sym_BSLASHusepackage] = ACTIONS(12433), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12433), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12433), + [anon_sym_BSLASHinclude] = ACTIONS(12433), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12433), + [anon_sym_BSLASHinput] = ACTIONS(12433), + [anon_sym_BSLASHsubfile] = ACTIONS(12433), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12433), + [anon_sym_BSLASHbibliography] = ACTIONS(12433), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12433), + [anon_sym_BSLASHincludesvg] = ACTIONS(12433), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12433), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12433), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12433), + [anon_sym_BSLASHimport] = ACTIONS(12433), + [anon_sym_BSLASHsubimport] = ACTIONS(12433), + [anon_sym_BSLASHinputfrom] = ACTIONS(12433), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12433), + [anon_sym_BSLASHincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHlabel] = ACTIONS(12433), + [anon_sym_BSLASHref] = ACTIONS(12433), + [anon_sym_BSLASHvref] = ACTIONS(12433), + [anon_sym_BSLASHVref] = ACTIONS(12433), + [anon_sym_BSLASHautoref] = ACTIONS(12433), + [anon_sym_BSLASHpageref] = ACTIONS(12433), + [anon_sym_BSLASHcref] = ACTIONS(12433), + [anon_sym_BSLASHCref] = ACTIONS(12433), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnameCref] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHlabelcref] = ACTIONS(12433), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12433), + [anon_sym_BSLASHeqref] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange] = ACTIONS(12433), + [anon_sym_BSLASHCrefrange] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewlabel] = ACTIONS(12433), + [anon_sym_BSLASHnewcommand] = ACTIONS(12433), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12433), + [anon_sym_BSLASHgls] = ACTIONS(12433), + [anon_sym_BSLASHGls] = ACTIONS(12433), + [anon_sym_BSLASHGLS] = ACTIONS(12433), + [anon_sym_BSLASHglspl] = ACTIONS(12433), + [anon_sym_BSLASHGlspl] = ACTIONS(12433), + [anon_sym_BSLASHGLSpl] = ACTIONS(12433), + [anon_sym_BSLASHglsdisp] = ACTIONS(12433), + [anon_sym_BSLASHglslink] = ACTIONS(12433), + [anon_sym_BSLASHglstext] = ACTIONS(12433), + [anon_sym_BSLASHGlstext] = ACTIONS(12433), + [anon_sym_BSLASHGLStext] = ACTIONS(12433), + [anon_sym_BSLASHglsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12433), + [anon_sym_BSLASHglsplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSplural] = ACTIONS(12433), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHglsname] = ACTIONS(12433), + [anon_sym_BSLASHGlsname] = ACTIONS(12433), + [anon_sym_BSLASHGLSname] = ACTIONS(12433), + [anon_sym_BSLASHglssymbol] = ACTIONS(12433), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12433), + [anon_sym_BSLASHglsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12433), + [anon_sym_BSLASHglsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12433), + [anon_sym_BSLASHglsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12433), + [anon_sym_BSLASHglsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12433), + [anon_sym_BSLASHglsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12433), + [anon_sym_BSLASHnewacronym] = ACTIONS(12433), + [anon_sym_BSLASHacrshort] = ACTIONS(12433), + [anon_sym_BSLASHAcrshort] = ACTIONS(12433), + [anon_sym_BSLASHACRshort] = ACTIONS(12433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12433), + [anon_sym_BSLASHacrlong] = ACTIONS(12433), + [anon_sym_BSLASHAcrlong] = ACTIONS(12433), + [anon_sym_BSLASHACRlong] = ACTIONS(12433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12433), + [anon_sym_BSLASHacrfull] = ACTIONS(12433), + [anon_sym_BSLASHAcrfull] = ACTIONS(12433), + [anon_sym_BSLASHACRfull] = ACTIONS(12433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12433), + [anon_sym_BSLASHacs] = ACTIONS(12433), + [anon_sym_BSLASHAcs] = ACTIONS(12433), + [anon_sym_BSLASHacsp] = ACTIONS(12433), + [anon_sym_BSLASHAcsp] = ACTIONS(12433), + [anon_sym_BSLASHacl] = ACTIONS(12433), + [anon_sym_BSLASHAcl] = ACTIONS(12433), + [anon_sym_BSLASHaclp] = ACTIONS(12433), + [anon_sym_BSLASHAclp] = ACTIONS(12433), + [anon_sym_BSLASHacf] = ACTIONS(12433), + [anon_sym_BSLASHAcf] = ACTIONS(12433), + [anon_sym_BSLASHacfp] = ACTIONS(12433), + [anon_sym_BSLASHAcfp] = ACTIONS(12433), + [anon_sym_BSLASHac] = ACTIONS(12433), + [anon_sym_BSLASHAc] = ACTIONS(12433), + [anon_sym_BSLASHacp] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12433), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12433), + [anon_sym_BSLASHcolor] = ACTIONS(12433), + [anon_sym_BSLASHcolorbox] = ACTIONS(12433), + [anon_sym_BSLASHtextcolor] = ACTIONS(12433), + [anon_sym_BSLASHpagecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12433), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12433), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12433), + }, + [1689] = { + [sym_generic_command_name] = ACTIONS(12227), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12227), + [anon_sym_BSLASHitem] = ACTIONS(12227), + [anon_sym_LBRACK] = ACTIONS(12225), + [anon_sym_RBRACK] = ACTIONS(12225), + [anon_sym_LBRACE] = ACTIONS(12225), + [anon_sym_RBRACE] = ACTIONS(12225), + [anon_sym_LPAREN] = ACTIONS(12225), + [anon_sym_COMMA] = ACTIONS(12225), + [anon_sym_EQ] = ACTIONS(12225), + [sym_word] = ACTIONS(12225), + [sym_param] = ACTIONS(12225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12225), + [anon_sym_DOLLAR] = ACTIONS(12227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12225), + [anon_sym_BSLASHbegin] = ACTIONS(12227), + [anon_sym_BSLASHcaption] = ACTIONS(12227), + [anon_sym_BSLASHcite] = ACTIONS(12227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCite] = ACTIONS(12227), + [anon_sym_BSLASHnocite] = ACTIONS(12227), + [anon_sym_BSLASHcitet] = ACTIONS(12227), + [anon_sym_BSLASHcitep] = ACTIONS(12227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteauthor] = ACTIONS(12227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitetitle] = ACTIONS(12227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteyear] = ACTIONS(12227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitedate] = ACTIONS(12227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteurl] = ACTIONS(12227), + [anon_sym_BSLASHfullcite] = ACTIONS(12227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12227), + [anon_sym_BSLASHcitealt] = ACTIONS(12227), + [anon_sym_BSLASHcitealp] = ACTIONS(12227), + [anon_sym_BSLASHcitetext] = ACTIONS(12227), + [anon_sym_BSLASHparencite] = ACTIONS(12227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHParencite] = ACTIONS(12227), + [anon_sym_BSLASHfootcite] = ACTIONS(12227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12227), + [anon_sym_BSLASHtextcite] = ACTIONS(12227), + [anon_sym_BSLASHTextcite] = ACTIONS(12227), + [anon_sym_BSLASHsmartcite] = ACTIONS(12227), + [anon_sym_BSLASHSmartcite] = ACTIONS(12227), + [anon_sym_BSLASHsupercite] = ACTIONS(12227), + [anon_sym_BSLASHautocite] = ACTIONS(12227), + [anon_sym_BSLASHAutocite] = ACTIONS(12227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHvolcite] = ACTIONS(12227), + [anon_sym_BSLASHVolcite] = ACTIONS(12227), + [anon_sym_BSLASHpvolcite] = ACTIONS(12227), + [anon_sym_BSLASHPvolcite] = ACTIONS(12227), + [anon_sym_BSLASHfvolcite] = ACTIONS(12227), + [anon_sym_BSLASHftvolcite] = ACTIONS(12227), + [anon_sym_BSLASHsvolcite] = ACTIONS(12227), + [anon_sym_BSLASHSvolcite] = ACTIONS(12227), + [anon_sym_BSLASHtvolcite] = ACTIONS(12227), + [anon_sym_BSLASHTvolcite] = ACTIONS(12227), + [anon_sym_BSLASHavolcite] = ACTIONS(12227), + [anon_sym_BSLASHAvolcite] = ACTIONS(12227), + [anon_sym_BSLASHnotecite] = ACTIONS(12227), + [anon_sym_BSLASHpnotecite] = ACTIONS(12227), + [anon_sym_BSLASHPnotecite] = ACTIONS(12227), + [anon_sym_BSLASHfnotecite] = ACTIONS(12227), + [anon_sym_BSLASHusepackage] = ACTIONS(12227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12227), + [anon_sym_BSLASHinclude] = ACTIONS(12227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12227), + [anon_sym_BSLASHinput] = ACTIONS(12227), + [anon_sym_BSLASHsubfile] = ACTIONS(12227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12227), + [anon_sym_BSLASHbibliography] = ACTIONS(12227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12227), + [anon_sym_BSLASHincludesvg] = ACTIONS(12227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12227), + [anon_sym_BSLASHimport] = ACTIONS(12227), + [anon_sym_BSLASHsubimport] = ACTIONS(12227), + [anon_sym_BSLASHinputfrom] = ACTIONS(12227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12227), + [anon_sym_BSLASHincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHlabel] = ACTIONS(12227), + [anon_sym_BSLASHref] = ACTIONS(12227), + [anon_sym_BSLASHvref] = ACTIONS(12227), + [anon_sym_BSLASHVref] = ACTIONS(12227), + [anon_sym_BSLASHautoref] = ACTIONS(12227), + [anon_sym_BSLASHpageref] = ACTIONS(12227), + [anon_sym_BSLASHcref] = ACTIONS(12227), + [anon_sym_BSLASHCref] = ACTIONS(12227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnameCref] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHlabelcref] = ACTIONS(12227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12227), + [anon_sym_BSLASHeqref] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange] = ACTIONS(12227), + [anon_sym_BSLASHCrefrange] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewlabel] = ACTIONS(12227), + [anon_sym_BSLASHnewcommand] = ACTIONS(12227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12227), + [anon_sym_BSLASHgls] = ACTIONS(12227), + [anon_sym_BSLASHGls] = ACTIONS(12227), + [anon_sym_BSLASHGLS] = ACTIONS(12227), + [anon_sym_BSLASHglspl] = ACTIONS(12227), + [anon_sym_BSLASHGlspl] = ACTIONS(12227), + [anon_sym_BSLASHGLSpl] = ACTIONS(12227), + [anon_sym_BSLASHglsdisp] = ACTIONS(12227), + [anon_sym_BSLASHglslink] = ACTIONS(12227), + [anon_sym_BSLASHglstext] = ACTIONS(12227), + [anon_sym_BSLASHGlstext] = ACTIONS(12227), + [anon_sym_BSLASHGLStext] = ACTIONS(12227), + [anon_sym_BSLASHglsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12227), + [anon_sym_BSLASHglsplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSplural] = ACTIONS(12227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHglsname] = ACTIONS(12227), + [anon_sym_BSLASHGlsname] = ACTIONS(12227), + [anon_sym_BSLASHGLSname] = ACTIONS(12227), + [anon_sym_BSLASHglssymbol] = ACTIONS(12227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12227), + [anon_sym_BSLASHglsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12227), + [anon_sym_BSLASHglsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12227), + [anon_sym_BSLASHglsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12227), + [anon_sym_BSLASHglsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12227), + [anon_sym_BSLASHglsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12227), + [anon_sym_BSLASHnewacronym] = ACTIONS(12227), + [anon_sym_BSLASHacrshort] = ACTIONS(12227), + [anon_sym_BSLASHAcrshort] = ACTIONS(12227), + [anon_sym_BSLASHACRshort] = ACTIONS(12227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12227), + [anon_sym_BSLASHacrlong] = ACTIONS(12227), + [anon_sym_BSLASHAcrlong] = ACTIONS(12227), + [anon_sym_BSLASHACRlong] = ACTIONS(12227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12227), + [anon_sym_BSLASHacrfull] = ACTIONS(12227), + [anon_sym_BSLASHAcrfull] = ACTIONS(12227), + [anon_sym_BSLASHACRfull] = ACTIONS(12227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12227), + [anon_sym_BSLASHacs] = ACTIONS(12227), + [anon_sym_BSLASHAcs] = ACTIONS(12227), + [anon_sym_BSLASHacsp] = ACTIONS(12227), + [anon_sym_BSLASHAcsp] = ACTIONS(12227), + [anon_sym_BSLASHacl] = ACTIONS(12227), + [anon_sym_BSLASHAcl] = ACTIONS(12227), + [anon_sym_BSLASHaclp] = ACTIONS(12227), + [anon_sym_BSLASHAclp] = ACTIONS(12227), + [anon_sym_BSLASHacf] = ACTIONS(12227), + [anon_sym_BSLASHAcf] = ACTIONS(12227), + [anon_sym_BSLASHacfp] = ACTIONS(12227), + [anon_sym_BSLASHAcfp] = ACTIONS(12227), + [anon_sym_BSLASHac] = ACTIONS(12227), + [anon_sym_BSLASHAc] = ACTIONS(12227), + [anon_sym_BSLASHacp] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12227), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12227), + [anon_sym_BSLASHcolor] = ACTIONS(12227), + [anon_sym_BSLASHcolorbox] = ACTIONS(12227), + [anon_sym_BSLASHtextcolor] = ACTIONS(12227), + [anon_sym_BSLASHpagecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12227), + }, + [1690] = { + [sym_generic_command_name] = ACTIONS(12441), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12441), + [anon_sym_BSLASHitem] = ACTIONS(12441), + [anon_sym_LBRACK] = ACTIONS(12439), + [anon_sym_RBRACK] = ACTIONS(12439), + [anon_sym_LBRACE] = ACTIONS(12439), + [anon_sym_RBRACE] = ACTIONS(12439), + [anon_sym_LPAREN] = ACTIONS(12439), + [anon_sym_COMMA] = ACTIONS(12439), + [anon_sym_EQ] = ACTIONS(12439), + [sym_word] = ACTIONS(12439), + [sym_param] = ACTIONS(12439), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12439), + [anon_sym_DOLLAR] = ACTIONS(12441), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12439), + [anon_sym_BSLASHbegin] = ACTIONS(12441), + [anon_sym_BSLASHcaption] = ACTIONS(12441), + [anon_sym_BSLASHcite] = ACTIONS(12441), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCite] = ACTIONS(12441), + [anon_sym_BSLASHnocite] = ACTIONS(12441), + [anon_sym_BSLASHcitet] = ACTIONS(12441), + [anon_sym_BSLASHcitep] = ACTIONS(12441), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteauthor] = ACTIONS(12441), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12441), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitetitle] = ACTIONS(12441), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteyear] = ACTIONS(12441), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitedate] = ACTIONS(12441), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteurl] = ACTIONS(12441), + [anon_sym_BSLASHfullcite] = ACTIONS(12441), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12441), + [anon_sym_BSLASHcitealt] = ACTIONS(12441), + [anon_sym_BSLASHcitealp] = ACTIONS(12441), + [anon_sym_BSLASHcitetext] = ACTIONS(12441), + [anon_sym_BSLASHparencite] = ACTIONS(12441), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHParencite] = ACTIONS(12441), + [anon_sym_BSLASHfootcite] = ACTIONS(12441), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12441), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12441), + [anon_sym_BSLASHtextcite] = ACTIONS(12441), + [anon_sym_BSLASHTextcite] = ACTIONS(12441), + [anon_sym_BSLASHsmartcite] = ACTIONS(12441), + [anon_sym_BSLASHSmartcite] = ACTIONS(12441), + [anon_sym_BSLASHsupercite] = ACTIONS(12441), + [anon_sym_BSLASHautocite] = ACTIONS(12441), + [anon_sym_BSLASHAutocite] = ACTIONS(12441), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHvolcite] = ACTIONS(12441), + [anon_sym_BSLASHVolcite] = ACTIONS(12441), + [anon_sym_BSLASHpvolcite] = ACTIONS(12441), + [anon_sym_BSLASHPvolcite] = ACTIONS(12441), + [anon_sym_BSLASHfvolcite] = ACTIONS(12441), + [anon_sym_BSLASHftvolcite] = ACTIONS(12441), + [anon_sym_BSLASHsvolcite] = ACTIONS(12441), + [anon_sym_BSLASHSvolcite] = ACTIONS(12441), + [anon_sym_BSLASHtvolcite] = ACTIONS(12441), + [anon_sym_BSLASHTvolcite] = ACTIONS(12441), + [anon_sym_BSLASHavolcite] = ACTIONS(12441), + [anon_sym_BSLASHAvolcite] = ACTIONS(12441), + [anon_sym_BSLASHnotecite] = ACTIONS(12441), + [anon_sym_BSLASHpnotecite] = ACTIONS(12441), + [anon_sym_BSLASHPnotecite] = ACTIONS(12441), + [anon_sym_BSLASHfnotecite] = ACTIONS(12441), + [anon_sym_BSLASHusepackage] = ACTIONS(12441), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12441), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12441), + [anon_sym_BSLASHinclude] = ACTIONS(12441), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12441), + [anon_sym_BSLASHinput] = ACTIONS(12441), + [anon_sym_BSLASHsubfile] = ACTIONS(12441), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12441), + [anon_sym_BSLASHbibliography] = ACTIONS(12441), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12441), + [anon_sym_BSLASHincludesvg] = ACTIONS(12441), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12441), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12441), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12441), + [anon_sym_BSLASHimport] = ACTIONS(12441), + [anon_sym_BSLASHsubimport] = ACTIONS(12441), + [anon_sym_BSLASHinputfrom] = ACTIONS(12441), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12441), + [anon_sym_BSLASHincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHlabel] = ACTIONS(12441), + [anon_sym_BSLASHref] = ACTIONS(12441), + [anon_sym_BSLASHvref] = ACTIONS(12441), + [anon_sym_BSLASHVref] = ACTIONS(12441), + [anon_sym_BSLASHautoref] = ACTIONS(12441), + [anon_sym_BSLASHpageref] = ACTIONS(12441), + [anon_sym_BSLASHcref] = ACTIONS(12441), + [anon_sym_BSLASHCref] = ACTIONS(12441), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnameCref] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHlabelcref] = ACTIONS(12441), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12441), + [anon_sym_BSLASHeqref] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange] = ACTIONS(12441), + [anon_sym_BSLASHCrefrange] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewlabel] = ACTIONS(12441), + [anon_sym_BSLASHnewcommand] = ACTIONS(12441), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12441), + [anon_sym_BSLASHgls] = ACTIONS(12441), + [anon_sym_BSLASHGls] = ACTIONS(12441), + [anon_sym_BSLASHGLS] = ACTIONS(12441), + [anon_sym_BSLASHglspl] = ACTIONS(12441), + [anon_sym_BSLASHGlspl] = ACTIONS(12441), + [anon_sym_BSLASHGLSpl] = ACTIONS(12441), + [anon_sym_BSLASHglsdisp] = ACTIONS(12441), + [anon_sym_BSLASHglslink] = ACTIONS(12441), + [anon_sym_BSLASHglstext] = ACTIONS(12441), + [anon_sym_BSLASHGlstext] = ACTIONS(12441), + [anon_sym_BSLASHGLStext] = ACTIONS(12441), + [anon_sym_BSLASHglsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12441), + [anon_sym_BSLASHglsplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSplural] = ACTIONS(12441), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHglsname] = ACTIONS(12441), + [anon_sym_BSLASHGlsname] = ACTIONS(12441), + [anon_sym_BSLASHGLSname] = ACTIONS(12441), + [anon_sym_BSLASHglssymbol] = ACTIONS(12441), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12441), + [anon_sym_BSLASHglsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12441), + [anon_sym_BSLASHglsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12441), + [anon_sym_BSLASHglsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12441), + [anon_sym_BSLASHglsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12441), + [anon_sym_BSLASHglsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12441), + [anon_sym_BSLASHnewacronym] = ACTIONS(12441), + [anon_sym_BSLASHacrshort] = ACTIONS(12441), + [anon_sym_BSLASHAcrshort] = ACTIONS(12441), + [anon_sym_BSLASHACRshort] = ACTIONS(12441), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12441), + [anon_sym_BSLASHacrlong] = ACTIONS(12441), + [anon_sym_BSLASHAcrlong] = ACTIONS(12441), + [anon_sym_BSLASHACRlong] = ACTIONS(12441), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12441), + [anon_sym_BSLASHacrfull] = ACTIONS(12441), + [anon_sym_BSLASHAcrfull] = ACTIONS(12441), + [anon_sym_BSLASHACRfull] = ACTIONS(12441), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12441), + [anon_sym_BSLASHacs] = ACTIONS(12441), + [anon_sym_BSLASHAcs] = ACTIONS(12441), + [anon_sym_BSLASHacsp] = ACTIONS(12441), + [anon_sym_BSLASHAcsp] = ACTIONS(12441), + [anon_sym_BSLASHacl] = ACTIONS(12441), + [anon_sym_BSLASHAcl] = ACTIONS(12441), + [anon_sym_BSLASHaclp] = ACTIONS(12441), + [anon_sym_BSLASHAclp] = ACTIONS(12441), + [anon_sym_BSLASHacf] = ACTIONS(12441), + [anon_sym_BSLASHAcf] = ACTIONS(12441), + [anon_sym_BSLASHacfp] = ACTIONS(12441), + [anon_sym_BSLASHAcfp] = ACTIONS(12441), + [anon_sym_BSLASHac] = ACTIONS(12441), + [anon_sym_BSLASHAc] = ACTIONS(12441), + [anon_sym_BSLASHacp] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12441), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12441), + [anon_sym_BSLASHcolor] = ACTIONS(12441), + [anon_sym_BSLASHcolorbox] = ACTIONS(12441), + [anon_sym_BSLASHtextcolor] = ACTIONS(12441), + [anon_sym_BSLASHpagecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12441), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12441), + }, + [1691] = { + [sym_generic_command_name] = ACTIONS(12445), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12445), + [anon_sym_BSLASHitem] = ACTIONS(12445), + [anon_sym_LBRACK] = ACTIONS(12443), + [anon_sym_RBRACK] = ACTIONS(12443), + [anon_sym_LBRACE] = ACTIONS(12443), + [anon_sym_RBRACE] = ACTIONS(12443), + [anon_sym_LPAREN] = ACTIONS(12443), + [anon_sym_COMMA] = ACTIONS(12443), + [anon_sym_EQ] = ACTIONS(12443), + [sym_word] = ACTIONS(12443), + [sym_param] = ACTIONS(12443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12443), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12443), + [anon_sym_DOLLAR] = ACTIONS(12445), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12443), + [anon_sym_BSLASHbegin] = ACTIONS(12445), + [anon_sym_BSLASHcaption] = ACTIONS(12445), + [anon_sym_BSLASHcite] = ACTIONS(12445), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCite] = ACTIONS(12445), + [anon_sym_BSLASHnocite] = ACTIONS(12445), + [anon_sym_BSLASHcitet] = ACTIONS(12445), + [anon_sym_BSLASHcitep] = ACTIONS(12445), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteauthor] = ACTIONS(12445), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12445), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitetitle] = ACTIONS(12445), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteyear] = ACTIONS(12445), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitedate] = ACTIONS(12445), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteurl] = ACTIONS(12445), + [anon_sym_BSLASHfullcite] = ACTIONS(12445), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12445), + [anon_sym_BSLASHcitealt] = ACTIONS(12445), + [anon_sym_BSLASHcitealp] = ACTIONS(12445), + [anon_sym_BSLASHcitetext] = ACTIONS(12445), + [anon_sym_BSLASHparencite] = ACTIONS(12445), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHParencite] = ACTIONS(12445), + [anon_sym_BSLASHfootcite] = ACTIONS(12445), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12445), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12445), + [anon_sym_BSLASHtextcite] = ACTIONS(12445), + [anon_sym_BSLASHTextcite] = ACTIONS(12445), + [anon_sym_BSLASHsmartcite] = ACTIONS(12445), + [anon_sym_BSLASHSmartcite] = ACTIONS(12445), + [anon_sym_BSLASHsupercite] = ACTIONS(12445), + [anon_sym_BSLASHautocite] = ACTIONS(12445), + [anon_sym_BSLASHAutocite] = ACTIONS(12445), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHvolcite] = ACTIONS(12445), + [anon_sym_BSLASHVolcite] = ACTIONS(12445), + [anon_sym_BSLASHpvolcite] = ACTIONS(12445), + [anon_sym_BSLASHPvolcite] = ACTIONS(12445), + [anon_sym_BSLASHfvolcite] = ACTIONS(12445), + [anon_sym_BSLASHftvolcite] = ACTIONS(12445), + [anon_sym_BSLASHsvolcite] = ACTIONS(12445), + [anon_sym_BSLASHSvolcite] = ACTIONS(12445), + [anon_sym_BSLASHtvolcite] = ACTIONS(12445), + [anon_sym_BSLASHTvolcite] = ACTIONS(12445), + [anon_sym_BSLASHavolcite] = ACTIONS(12445), + [anon_sym_BSLASHAvolcite] = ACTIONS(12445), + [anon_sym_BSLASHnotecite] = ACTIONS(12445), + [anon_sym_BSLASHpnotecite] = ACTIONS(12445), + [anon_sym_BSLASHPnotecite] = ACTIONS(12445), + [anon_sym_BSLASHfnotecite] = ACTIONS(12445), + [anon_sym_BSLASHusepackage] = ACTIONS(12445), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12445), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12445), + [anon_sym_BSLASHinclude] = ACTIONS(12445), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12445), + [anon_sym_BSLASHinput] = ACTIONS(12445), + [anon_sym_BSLASHsubfile] = ACTIONS(12445), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12445), + [anon_sym_BSLASHbibliography] = ACTIONS(12445), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12445), + [anon_sym_BSLASHincludesvg] = ACTIONS(12445), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12445), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12445), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12445), + [anon_sym_BSLASHimport] = ACTIONS(12445), + [anon_sym_BSLASHsubimport] = ACTIONS(12445), + [anon_sym_BSLASHinputfrom] = ACTIONS(12445), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12445), + [anon_sym_BSLASHincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHlabel] = ACTIONS(12445), + [anon_sym_BSLASHref] = ACTIONS(12445), + [anon_sym_BSLASHvref] = ACTIONS(12445), + [anon_sym_BSLASHVref] = ACTIONS(12445), + [anon_sym_BSLASHautoref] = ACTIONS(12445), + [anon_sym_BSLASHpageref] = ACTIONS(12445), + [anon_sym_BSLASHcref] = ACTIONS(12445), + [anon_sym_BSLASHCref] = ACTIONS(12445), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnameCref] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHlabelcref] = ACTIONS(12445), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12445), + [anon_sym_BSLASHeqref] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange] = ACTIONS(12445), + [anon_sym_BSLASHCrefrange] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewlabel] = ACTIONS(12445), + [anon_sym_BSLASHnewcommand] = ACTIONS(12445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12445), + [anon_sym_BSLASHgls] = ACTIONS(12445), + [anon_sym_BSLASHGls] = ACTIONS(12445), + [anon_sym_BSLASHGLS] = ACTIONS(12445), + [anon_sym_BSLASHglspl] = ACTIONS(12445), + [anon_sym_BSLASHGlspl] = ACTIONS(12445), + [anon_sym_BSLASHGLSpl] = ACTIONS(12445), + [anon_sym_BSLASHglsdisp] = ACTIONS(12445), + [anon_sym_BSLASHglslink] = ACTIONS(12445), + [anon_sym_BSLASHglstext] = ACTIONS(12445), + [anon_sym_BSLASHGlstext] = ACTIONS(12445), + [anon_sym_BSLASHGLStext] = ACTIONS(12445), + [anon_sym_BSLASHglsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12445), + [anon_sym_BSLASHglsplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSplural] = ACTIONS(12445), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHglsname] = ACTIONS(12445), + [anon_sym_BSLASHGlsname] = ACTIONS(12445), + [anon_sym_BSLASHGLSname] = ACTIONS(12445), + [anon_sym_BSLASHglssymbol] = ACTIONS(12445), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12445), + [anon_sym_BSLASHglsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12445), + [anon_sym_BSLASHglsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12445), + [anon_sym_BSLASHglsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12445), + [anon_sym_BSLASHglsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12445), + [anon_sym_BSLASHglsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12445), + [anon_sym_BSLASHnewacronym] = ACTIONS(12445), + [anon_sym_BSLASHacrshort] = ACTIONS(12445), + [anon_sym_BSLASHAcrshort] = ACTIONS(12445), + [anon_sym_BSLASHACRshort] = ACTIONS(12445), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12445), + [anon_sym_BSLASHacrlong] = ACTIONS(12445), + [anon_sym_BSLASHAcrlong] = ACTIONS(12445), + [anon_sym_BSLASHACRlong] = ACTIONS(12445), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12445), + [anon_sym_BSLASHacrfull] = ACTIONS(12445), + [anon_sym_BSLASHAcrfull] = ACTIONS(12445), + [anon_sym_BSLASHACRfull] = ACTIONS(12445), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12445), + [anon_sym_BSLASHacs] = ACTIONS(12445), + [anon_sym_BSLASHAcs] = ACTIONS(12445), + [anon_sym_BSLASHacsp] = ACTIONS(12445), + [anon_sym_BSLASHAcsp] = ACTIONS(12445), + [anon_sym_BSLASHacl] = ACTIONS(12445), + [anon_sym_BSLASHAcl] = ACTIONS(12445), + [anon_sym_BSLASHaclp] = ACTIONS(12445), + [anon_sym_BSLASHAclp] = ACTIONS(12445), + [anon_sym_BSLASHacf] = ACTIONS(12445), + [anon_sym_BSLASHAcf] = ACTIONS(12445), + [anon_sym_BSLASHacfp] = ACTIONS(12445), + [anon_sym_BSLASHAcfp] = ACTIONS(12445), + [anon_sym_BSLASHac] = ACTIONS(12445), + [anon_sym_BSLASHAc] = ACTIONS(12445), + [anon_sym_BSLASHacp] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12445), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12445), + [anon_sym_BSLASHcolor] = ACTIONS(12445), + [anon_sym_BSLASHcolorbox] = ACTIONS(12445), + [anon_sym_BSLASHtextcolor] = ACTIONS(12445), + [anon_sym_BSLASHpagecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12445), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12445), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12445), + }, + [1692] = { + [sym_generic_command_name] = ACTIONS(12449), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12449), + [anon_sym_BSLASHitem] = ACTIONS(12449), + [anon_sym_LBRACK] = ACTIONS(12447), + [anon_sym_RBRACK] = ACTIONS(12447), + [anon_sym_LBRACE] = ACTIONS(12447), + [anon_sym_RBRACE] = ACTIONS(12447), + [anon_sym_LPAREN] = ACTIONS(12447), + [anon_sym_COMMA] = ACTIONS(12447), + [anon_sym_EQ] = ACTIONS(12447), + [sym_word] = ACTIONS(12447), + [sym_param] = ACTIONS(12447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12447), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12447), + [anon_sym_DOLLAR] = ACTIONS(12449), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12447), + [anon_sym_BSLASHbegin] = ACTIONS(12449), + [anon_sym_BSLASHcaption] = ACTIONS(12449), + [anon_sym_BSLASHcite] = ACTIONS(12449), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCite] = ACTIONS(12449), + [anon_sym_BSLASHnocite] = ACTIONS(12449), + [anon_sym_BSLASHcitet] = ACTIONS(12449), + [anon_sym_BSLASHcitep] = ACTIONS(12449), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteauthor] = ACTIONS(12449), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12449), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitetitle] = ACTIONS(12449), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteyear] = ACTIONS(12449), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitedate] = ACTIONS(12449), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteurl] = ACTIONS(12449), + [anon_sym_BSLASHfullcite] = ACTIONS(12449), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12449), + [anon_sym_BSLASHcitealt] = ACTIONS(12449), + [anon_sym_BSLASHcitealp] = ACTIONS(12449), + [anon_sym_BSLASHcitetext] = ACTIONS(12449), + [anon_sym_BSLASHparencite] = ACTIONS(12449), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHParencite] = ACTIONS(12449), + [anon_sym_BSLASHfootcite] = ACTIONS(12449), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12449), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12449), + [anon_sym_BSLASHtextcite] = ACTIONS(12449), + [anon_sym_BSLASHTextcite] = ACTIONS(12449), + [anon_sym_BSLASHsmartcite] = ACTIONS(12449), + [anon_sym_BSLASHSmartcite] = ACTIONS(12449), + [anon_sym_BSLASHsupercite] = ACTIONS(12449), + [anon_sym_BSLASHautocite] = ACTIONS(12449), + [anon_sym_BSLASHAutocite] = ACTIONS(12449), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHvolcite] = ACTIONS(12449), + [anon_sym_BSLASHVolcite] = ACTIONS(12449), + [anon_sym_BSLASHpvolcite] = ACTIONS(12449), + [anon_sym_BSLASHPvolcite] = ACTIONS(12449), + [anon_sym_BSLASHfvolcite] = ACTIONS(12449), + [anon_sym_BSLASHftvolcite] = ACTIONS(12449), + [anon_sym_BSLASHsvolcite] = ACTIONS(12449), + [anon_sym_BSLASHSvolcite] = ACTIONS(12449), + [anon_sym_BSLASHtvolcite] = ACTIONS(12449), + [anon_sym_BSLASHTvolcite] = ACTIONS(12449), + [anon_sym_BSLASHavolcite] = ACTIONS(12449), + [anon_sym_BSLASHAvolcite] = ACTIONS(12449), + [anon_sym_BSLASHnotecite] = ACTIONS(12449), + [anon_sym_BSLASHpnotecite] = ACTIONS(12449), + [anon_sym_BSLASHPnotecite] = ACTIONS(12449), + [anon_sym_BSLASHfnotecite] = ACTIONS(12449), + [anon_sym_BSLASHusepackage] = ACTIONS(12449), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12449), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12449), + [anon_sym_BSLASHinclude] = ACTIONS(12449), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12449), + [anon_sym_BSLASHinput] = ACTIONS(12449), + [anon_sym_BSLASHsubfile] = ACTIONS(12449), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12449), + [anon_sym_BSLASHbibliography] = ACTIONS(12449), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12449), + [anon_sym_BSLASHincludesvg] = ACTIONS(12449), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12449), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12449), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12449), + [anon_sym_BSLASHimport] = ACTIONS(12449), + [anon_sym_BSLASHsubimport] = ACTIONS(12449), + [anon_sym_BSLASHinputfrom] = ACTIONS(12449), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12449), + [anon_sym_BSLASHincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHlabel] = ACTIONS(12449), + [anon_sym_BSLASHref] = ACTIONS(12449), + [anon_sym_BSLASHvref] = ACTIONS(12449), + [anon_sym_BSLASHVref] = ACTIONS(12449), + [anon_sym_BSLASHautoref] = ACTIONS(12449), + [anon_sym_BSLASHpageref] = ACTIONS(12449), + [anon_sym_BSLASHcref] = ACTIONS(12449), + [anon_sym_BSLASHCref] = ACTIONS(12449), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnameCref] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHlabelcref] = ACTIONS(12449), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12449), + [anon_sym_BSLASHeqref] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange] = ACTIONS(12449), + [anon_sym_BSLASHCrefrange] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewlabel] = ACTIONS(12449), + [anon_sym_BSLASHnewcommand] = ACTIONS(12449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12449), + [anon_sym_BSLASHgls] = ACTIONS(12449), + [anon_sym_BSLASHGls] = ACTIONS(12449), + [anon_sym_BSLASHGLS] = ACTIONS(12449), + [anon_sym_BSLASHglspl] = ACTIONS(12449), + [anon_sym_BSLASHGlspl] = ACTIONS(12449), + [anon_sym_BSLASHGLSpl] = ACTIONS(12449), + [anon_sym_BSLASHglsdisp] = ACTIONS(12449), + [anon_sym_BSLASHglslink] = ACTIONS(12449), + [anon_sym_BSLASHglstext] = ACTIONS(12449), + [anon_sym_BSLASHGlstext] = ACTIONS(12449), + [anon_sym_BSLASHGLStext] = ACTIONS(12449), + [anon_sym_BSLASHglsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12449), + [anon_sym_BSLASHglsplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSplural] = ACTIONS(12449), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHglsname] = ACTIONS(12449), + [anon_sym_BSLASHGlsname] = ACTIONS(12449), + [anon_sym_BSLASHGLSname] = ACTIONS(12449), + [anon_sym_BSLASHglssymbol] = ACTIONS(12449), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12449), + [anon_sym_BSLASHglsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12449), + [anon_sym_BSLASHglsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12449), + [anon_sym_BSLASHglsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12449), + [anon_sym_BSLASHglsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12449), + [anon_sym_BSLASHglsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12449), + [anon_sym_BSLASHnewacronym] = ACTIONS(12449), + [anon_sym_BSLASHacrshort] = ACTIONS(12449), + [anon_sym_BSLASHAcrshort] = ACTIONS(12449), + [anon_sym_BSLASHACRshort] = ACTIONS(12449), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12449), + [anon_sym_BSLASHacrlong] = ACTIONS(12449), + [anon_sym_BSLASHAcrlong] = ACTIONS(12449), + [anon_sym_BSLASHACRlong] = ACTIONS(12449), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12449), + [anon_sym_BSLASHacrfull] = ACTIONS(12449), + [anon_sym_BSLASHAcrfull] = ACTIONS(12449), + [anon_sym_BSLASHACRfull] = ACTIONS(12449), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12449), + [anon_sym_BSLASHacs] = ACTIONS(12449), + [anon_sym_BSLASHAcs] = ACTIONS(12449), + [anon_sym_BSLASHacsp] = ACTIONS(12449), + [anon_sym_BSLASHAcsp] = ACTIONS(12449), + [anon_sym_BSLASHacl] = ACTIONS(12449), + [anon_sym_BSLASHAcl] = ACTIONS(12449), + [anon_sym_BSLASHaclp] = ACTIONS(12449), + [anon_sym_BSLASHAclp] = ACTIONS(12449), + [anon_sym_BSLASHacf] = ACTIONS(12449), + [anon_sym_BSLASHAcf] = ACTIONS(12449), + [anon_sym_BSLASHacfp] = ACTIONS(12449), + [anon_sym_BSLASHAcfp] = ACTIONS(12449), + [anon_sym_BSLASHac] = ACTIONS(12449), + [anon_sym_BSLASHAc] = ACTIONS(12449), + [anon_sym_BSLASHacp] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12449), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12449), + [anon_sym_BSLASHcolor] = ACTIONS(12449), + [anon_sym_BSLASHcolorbox] = ACTIONS(12449), + [anon_sym_BSLASHtextcolor] = ACTIONS(12449), + [anon_sym_BSLASHpagecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12449), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12449), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12449), + }, + [1693] = { + [sym_generic_command_name] = ACTIONS(12453), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12453), + [anon_sym_BSLASHitem] = ACTIONS(12453), + [anon_sym_LBRACK] = ACTIONS(12451), + [anon_sym_RBRACK] = ACTIONS(12451), + [anon_sym_LBRACE] = ACTIONS(12451), + [anon_sym_RBRACE] = ACTIONS(12451), + [anon_sym_LPAREN] = ACTIONS(12451), + [anon_sym_COMMA] = ACTIONS(12451), + [anon_sym_EQ] = ACTIONS(12451), + [sym_word] = ACTIONS(12451), + [sym_param] = ACTIONS(12451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12451), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12451), + [anon_sym_DOLLAR] = ACTIONS(12453), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12451), + [anon_sym_BSLASHbegin] = ACTIONS(12453), + [anon_sym_BSLASHcaption] = ACTIONS(12453), + [anon_sym_BSLASHcite] = ACTIONS(12453), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCite] = ACTIONS(12453), + [anon_sym_BSLASHnocite] = ACTIONS(12453), + [anon_sym_BSLASHcitet] = ACTIONS(12453), + [anon_sym_BSLASHcitep] = ACTIONS(12453), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteauthor] = ACTIONS(12453), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12453), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitetitle] = ACTIONS(12453), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteyear] = ACTIONS(12453), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitedate] = ACTIONS(12453), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteurl] = ACTIONS(12453), + [anon_sym_BSLASHfullcite] = ACTIONS(12453), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12453), + [anon_sym_BSLASHcitealt] = ACTIONS(12453), + [anon_sym_BSLASHcitealp] = ACTIONS(12453), + [anon_sym_BSLASHcitetext] = ACTIONS(12453), + [anon_sym_BSLASHparencite] = ACTIONS(12453), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHParencite] = ACTIONS(12453), + [anon_sym_BSLASHfootcite] = ACTIONS(12453), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12453), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12453), + [anon_sym_BSLASHtextcite] = ACTIONS(12453), + [anon_sym_BSLASHTextcite] = ACTIONS(12453), + [anon_sym_BSLASHsmartcite] = ACTIONS(12453), + [anon_sym_BSLASHSmartcite] = ACTIONS(12453), + [anon_sym_BSLASHsupercite] = ACTIONS(12453), + [anon_sym_BSLASHautocite] = ACTIONS(12453), + [anon_sym_BSLASHAutocite] = ACTIONS(12453), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHvolcite] = ACTIONS(12453), + [anon_sym_BSLASHVolcite] = ACTIONS(12453), + [anon_sym_BSLASHpvolcite] = ACTIONS(12453), + [anon_sym_BSLASHPvolcite] = ACTIONS(12453), + [anon_sym_BSLASHfvolcite] = ACTIONS(12453), + [anon_sym_BSLASHftvolcite] = ACTIONS(12453), + [anon_sym_BSLASHsvolcite] = ACTIONS(12453), + [anon_sym_BSLASHSvolcite] = ACTIONS(12453), + [anon_sym_BSLASHtvolcite] = ACTIONS(12453), + [anon_sym_BSLASHTvolcite] = ACTIONS(12453), + [anon_sym_BSLASHavolcite] = ACTIONS(12453), + [anon_sym_BSLASHAvolcite] = ACTIONS(12453), + [anon_sym_BSLASHnotecite] = ACTIONS(12453), + [anon_sym_BSLASHpnotecite] = ACTIONS(12453), + [anon_sym_BSLASHPnotecite] = ACTIONS(12453), + [anon_sym_BSLASHfnotecite] = ACTIONS(12453), + [anon_sym_BSLASHusepackage] = ACTIONS(12453), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12453), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12453), + [anon_sym_BSLASHinclude] = ACTIONS(12453), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12453), + [anon_sym_BSLASHinput] = ACTIONS(12453), + [anon_sym_BSLASHsubfile] = ACTIONS(12453), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12453), + [anon_sym_BSLASHbibliography] = ACTIONS(12453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12453), + [anon_sym_BSLASHincludesvg] = ACTIONS(12453), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12453), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12453), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12453), + [anon_sym_BSLASHimport] = ACTIONS(12453), + [anon_sym_BSLASHsubimport] = ACTIONS(12453), + [anon_sym_BSLASHinputfrom] = ACTIONS(12453), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12453), + [anon_sym_BSLASHincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHlabel] = ACTIONS(12453), + [anon_sym_BSLASHref] = ACTIONS(12453), + [anon_sym_BSLASHvref] = ACTIONS(12453), + [anon_sym_BSLASHVref] = ACTIONS(12453), + [anon_sym_BSLASHautoref] = ACTIONS(12453), + [anon_sym_BSLASHpageref] = ACTIONS(12453), + [anon_sym_BSLASHcref] = ACTIONS(12453), + [anon_sym_BSLASHCref] = ACTIONS(12453), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnameCref] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHlabelcref] = ACTIONS(12453), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12453), + [anon_sym_BSLASHeqref] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange] = ACTIONS(12453), + [anon_sym_BSLASHCrefrange] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewlabel] = ACTIONS(12453), + [anon_sym_BSLASHnewcommand] = ACTIONS(12453), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12453), + [anon_sym_BSLASHgls] = ACTIONS(12453), + [anon_sym_BSLASHGls] = ACTIONS(12453), + [anon_sym_BSLASHGLS] = ACTIONS(12453), + [anon_sym_BSLASHglspl] = ACTIONS(12453), + [anon_sym_BSLASHGlspl] = ACTIONS(12453), + [anon_sym_BSLASHGLSpl] = ACTIONS(12453), + [anon_sym_BSLASHglsdisp] = ACTIONS(12453), + [anon_sym_BSLASHglslink] = ACTIONS(12453), + [anon_sym_BSLASHglstext] = ACTIONS(12453), + [anon_sym_BSLASHGlstext] = ACTIONS(12453), + [anon_sym_BSLASHGLStext] = ACTIONS(12453), + [anon_sym_BSLASHglsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12453), + [anon_sym_BSLASHglsplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSplural] = ACTIONS(12453), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHglsname] = ACTIONS(12453), + [anon_sym_BSLASHGlsname] = ACTIONS(12453), + [anon_sym_BSLASHGLSname] = ACTIONS(12453), + [anon_sym_BSLASHglssymbol] = ACTIONS(12453), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12453), + [anon_sym_BSLASHglsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12453), + [anon_sym_BSLASHglsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12453), + [anon_sym_BSLASHglsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12453), + [anon_sym_BSLASHglsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12453), + [anon_sym_BSLASHglsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12453), + [anon_sym_BSLASHnewacronym] = ACTIONS(12453), + [anon_sym_BSLASHacrshort] = ACTIONS(12453), + [anon_sym_BSLASHAcrshort] = ACTIONS(12453), + [anon_sym_BSLASHACRshort] = ACTIONS(12453), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12453), + [anon_sym_BSLASHacrlong] = ACTIONS(12453), + [anon_sym_BSLASHAcrlong] = ACTIONS(12453), + [anon_sym_BSLASHACRlong] = ACTIONS(12453), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12453), + [anon_sym_BSLASHacrfull] = ACTIONS(12453), + [anon_sym_BSLASHAcrfull] = ACTIONS(12453), + [anon_sym_BSLASHACRfull] = ACTIONS(12453), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12453), + [anon_sym_BSLASHacs] = ACTIONS(12453), + [anon_sym_BSLASHAcs] = ACTIONS(12453), + [anon_sym_BSLASHacsp] = ACTIONS(12453), + [anon_sym_BSLASHAcsp] = ACTIONS(12453), + [anon_sym_BSLASHacl] = ACTIONS(12453), + [anon_sym_BSLASHAcl] = ACTIONS(12453), + [anon_sym_BSLASHaclp] = ACTIONS(12453), + [anon_sym_BSLASHAclp] = ACTIONS(12453), + [anon_sym_BSLASHacf] = ACTIONS(12453), + [anon_sym_BSLASHAcf] = ACTIONS(12453), + [anon_sym_BSLASHacfp] = ACTIONS(12453), + [anon_sym_BSLASHAcfp] = ACTIONS(12453), + [anon_sym_BSLASHac] = ACTIONS(12453), + [anon_sym_BSLASHAc] = ACTIONS(12453), + [anon_sym_BSLASHacp] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12453), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12453), + [anon_sym_BSLASHcolor] = ACTIONS(12453), + [anon_sym_BSLASHcolorbox] = ACTIONS(12453), + [anon_sym_BSLASHtextcolor] = ACTIONS(12453), + [anon_sym_BSLASHpagecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12453), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12453), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12453), + }, + [1694] = { + [sym_generic_command_name] = ACTIONS(12461), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12461), + [anon_sym_BSLASHitem] = ACTIONS(12461), + [anon_sym_LBRACK] = ACTIONS(12459), + [anon_sym_RBRACK] = ACTIONS(12459), + [anon_sym_LBRACE] = ACTIONS(12459), + [anon_sym_RBRACE] = ACTIONS(12459), + [anon_sym_LPAREN] = ACTIONS(12459), + [anon_sym_COMMA] = ACTIONS(12459), + [anon_sym_EQ] = ACTIONS(12459), + [sym_word] = ACTIONS(12459), + [sym_param] = ACTIONS(12459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12459), + [anon_sym_DOLLAR] = ACTIONS(12461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12459), + [anon_sym_BSLASHbegin] = ACTIONS(12461), + [anon_sym_BSLASHcaption] = ACTIONS(12461), + [anon_sym_BSLASHcite] = ACTIONS(12461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCite] = ACTIONS(12461), + [anon_sym_BSLASHnocite] = ACTIONS(12461), + [anon_sym_BSLASHcitet] = ACTIONS(12461), + [anon_sym_BSLASHcitep] = ACTIONS(12461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteauthor] = ACTIONS(12461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitetitle] = ACTIONS(12461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteyear] = ACTIONS(12461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitedate] = ACTIONS(12461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteurl] = ACTIONS(12461), + [anon_sym_BSLASHfullcite] = ACTIONS(12461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12461), + [anon_sym_BSLASHcitealt] = ACTIONS(12461), + [anon_sym_BSLASHcitealp] = ACTIONS(12461), + [anon_sym_BSLASHcitetext] = ACTIONS(12461), + [anon_sym_BSLASHparencite] = ACTIONS(12461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHParencite] = ACTIONS(12461), + [anon_sym_BSLASHfootcite] = ACTIONS(12461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12461), + [anon_sym_BSLASHtextcite] = ACTIONS(12461), + [anon_sym_BSLASHTextcite] = ACTIONS(12461), + [anon_sym_BSLASHsmartcite] = ACTIONS(12461), + [anon_sym_BSLASHSmartcite] = ACTIONS(12461), + [anon_sym_BSLASHsupercite] = ACTIONS(12461), + [anon_sym_BSLASHautocite] = ACTIONS(12461), + [anon_sym_BSLASHAutocite] = ACTIONS(12461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHvolcite] = ACTIONS(12461), + [anon_sym_BSLASHVolcite] = ACTIONS(12461), + [anon_sym_BSLASHpvolcite] = ACTIONS(12461), + [anon_sym_BSLASHPvolcite] = ACTIONS(12461), + [anon_sym_BSLASHfvolcite] = ACTIONS(12461), + [anon_sym_BSLASHftvolcite] = ACTIONS(12461), + [anon_sym_BSLASHsvolcite] = ACTIONS(12461), + [anon_sym_BSLASHSvolcite] = ACTIONS(12461), + [anon_sym_BSLASHtvolcite] = ACTIONS(12461), + [anon_sym_BSLASHTvolcite] = ACTIONS(12461), + [anon_sym_BSLASHavolcite] = ACTIONS(12461), + [anon_sym_BSLASHAvolcite] = ACTIONS(12461), + [anon_sym_BSLASHnotecite] = ACTIONS(12461), + [anon_sym_BSLASHpnotecite] = ACTIONS(12461), + [anon_sym_BSLASHPnotecite] = ACTIONS(12461), + [anon_sym_BSLASHfnotecite] = ACTIONS(12461), + [anon_sym_BSLASHusepackage] = ACTIONS(12461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12461), + [anon_sym_BSLASHinclude] = ACTIONS(12461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12461), + [anon_sym_BSLASHinput] = ACTIONS(12461), + [anon_sym_BSLASHsubfile] = ACTIONS(12461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12461), + [anon_sym_BSLASHbibliography] = ACTIONS(12461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12461), + [anon_sym_BSLASHincludesvg] = ACTIONS(12461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12461), + [anon_sym_BSLASHimport] = ACTIONS(12461), + [anon_sym_BSLASHsubimport] = ACTIONS(12461), + [anon_sym_BSLASHinputfrom] = ACTIONS(12461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12461), + [anon_sym_BSLASHincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHlabel] = ACTIONS(12461), + [anon_sym_BSLASHref] = ACTIONS(12461), + [anon_sym_BSLASHvref] = ACTIONS(12461), + [anon_sym_BSLASHVref] = ACTIONS(12461), + [anon_sym_BSLASHautoref] = ACTIONS(12461), + [anon_sym_BSLASHpageref] = ACTIONS(12461), + [anon_sym_BSLASHcref] = ACTIONS(12461), + [anon_sym_BSLASHCref] = ACTIONS(12461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnameCref] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHlabelcref] = ACTIONS(12461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12461), + [anon_sym_BSLASHeqref] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange] = ACTIONS(12461), + [anon_sym_BSLASHCrefrange] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewlabel] = ACTIONS(12461), + [anon_sym_BSLASHnewcommand] = ACTIONS(12461), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12461), + [anon_sym_BSLASHgls] = ACTIONS(12461), + [anon_sym_BSLASHGls] = ACTIONS(12461), + [anon_sym_BSLASHGLS] = ACTIONS(12461), + [anon_sym_BSLASHglspl] = ACTIONS(12461), + [anon_sym_BSLASHGlspl] = ACTIONS(12461), + [anon_sym_BSLASHGLSpl] = ACTIONS(12461), + [anon_sym_BSLASHglsdisp] = ACTIONS(12461), + [anon_sym_BSLASHglslink] = ACTIONS(12461), + [anon_sym_BSLASHglstext] = ACTIONS(12461), + [anon_sym_BSLASHGlstext] = ACTIONS(12461), + [anon_sym_BSLASHGLStext] = ACTIONS(12461), + [anon_sym_BSLASHglsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12461), + [anon_sym_BSLASHglsplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSplural] = ACTIONS(12461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHglsname] = ACTIONS(12461), + [anon_sym_BSLASHGlsname] = ACTIONS(12461), + [anon_sym_BSLASHGLSname] = ACTIONS(12461), + [anon_sym_BSLASHglssymbol] = ACTIONS(12461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12461), + [anon_sym_BSLASHglsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12461), + [anon_sym_BSLASHglsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12461), + [anon_sym_BSLASHglsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12461), + [anon_sym_BSLASHglsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12461), + [anon_sym_BSLASHglsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12461), + [anon_sym_BSLASHnewacronym] = ACTIONS(12461), + [anon_sym_BSLASHacrshort] = ACTIONS(12461), + [anon_sym_BSLASHAcrshort] = ACTIONS(12461), + [anon_sym_BSLASHACRshort] = ACTIONS(12461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12461), + [anon_sym_BSLASHacrlong] = ACTIONS(12461), + [anon_sym_BSLASHAcrlong] = ACTIONS(12461), + [anon_sym_BSLASHACRlong] = ACTIONS(12461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12461), + [anon_sym_BSLASHacrfull] = ACTIONS(12461), + [anon_sym_BSLASHAcrfull] = ACTIONS(12461), + [anon_sym_BSLASHACRfull] = ACTIONS(12461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12461), + [anon_sym_BSLASHacs] = ACTIONS(12461), + [anon_sym_BSLASHAcs] = ACTIONS(12461), + [anon_sym_BSLASHacsp] = ACTIONS(12461), + [anon_sym_BSLASHAcsp] = ACTIONS(12461), + [anon_sym_BSLASHacl] = ACTIONS(12461), + [anon_sym_BSLASHAcl] = ACTIONS(12461), + [anon_sym_BSLASHaclp] = ACTIONS(12461), + [anon_sym_BSLASHAclp] = ACTIONS(12461), + [anon_sym_BSLASHacf] = ACTIONS(12461), + [anon_sym_BSLASHAcf] = ACTIONS(12461), + [anon_sym_BSLASHacfp] = ACTIONS(12461), + [anon_sym_BSLASHAcfp] = ACTIONS(12461), + [anon_sym_BSLASHac] = ACTIONS(12461), + [anon_sym_BSLASHAc] = ACTIONS(12461), + [anon_sym_BSLASHacp] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12461), + [anon_sym_BSLASHcolor] = ACTIONS(12461), + [anon_sym_BSLASHcolorbox] = ACTIONS(12461), + [anon_sym_BSLASHtextcolor] = ACTIONS(12461), + [anon_sym_BSLASHpagecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12461), + }, + [1695] = { + [sym_generic_command_name] = ACTIONS(12465), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12465), + [anon_sym_BSLASHitem] = ACTIONS(12465), + [anon_sym_LBRACK] = ACTIONS(12463), + [anon_sym_RBRACK] = ACTIONS(12463), + [anon_sym_LBRACE] = ACTIONS(12463), + [anon_sym_RBRACE] = ACTIONS(12463), + [anon_sym_LPAREN] = ACTIONS(12463), + [anon_sym_COMMA] = ACTIONS(12463), + [anon_sym_EQ] = ACTIONS(12463), + [sym_word] = ACTIONS(12463), + [sym_param] = ACTIONS(12463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12463), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12463), + [anon_sym_DOLLAR] = ACTIONS(12465), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12463), + [anon_sym_BSLASHbegin] = ACTIONS(12465), + [anon_sym_BSLASHcaption] = ACTIONS(12465), + [anon_sym_BSLASHcite] = ACTIONS(12465), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCite] = ACTIONS(12465), + [anon_sym_BSLASHnocite] = ACTIONS(12465), + [anon_sym_BSLASHcitet] = ACTIONS(12465), + [anon_sym_BSLASHcitep] = ACTIONS(12465), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteauthor] = ACTIONS(12465), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12465), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitetitle] = ACTIONS(12465), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteyear] = ACTIONS(12465), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitedate] = ACTIONS(12465), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteurl] = ACTIONS(12465), + [anon_sym_BSLASHfullcite] = ACTIONS(12465), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12465), + [anon_sym_BSLASHcitealt] = ACTIONS(12465), + [anon_sym_BSLASHcitealp] = ACTIONS(12465), + [anon_sym_BSLASHcitetext] = ACTIONS(12465), + [anon_sym_BSLASHparencite] = ACTIONS(12465), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHParencite] = ACTIONS(12465), + [anon_sym_BSLASHfootcite] = ACTIONS(12465), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12465), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12465), + [anon_sym_BSLASHtextcite] = ACTIONS(12465), + [anon_sym_BSLASHTextcite] = ACTIONS(12465), + [anon_sym_BSLASHsmartcite] = ACTIONS(12465), + [anon_sym_BSLASHSmartcite] = ACTIONS(12465), + [anon_sym_BSLASHsupercite] = ACTIONS(12465), + [anon_sym_BSLASHautocite] = ACTIONS(12465), + [anon_sym_BSLASHAutocite] = ACTIONS(12465), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHvolcite] = ACTIONS(12465), + [anon_sym_BSLASHVolcite] = ACTIONS(12465), + [anon_sym_BSLASHpvolcite] = ACTIONS(12465), + [anon_sym_BSLASHPvolcite] = ACTIONS(12465), + [anon_sym_BSLASHfvolcite] = ACTIONS(12465), + [anon_sym_BSLASHftvolcite] = ACTIONS(12465), + [anon_sym_BSLASHsvolcite] = ACTIONS(12465), + [anon_sym_BSLASHSvolcite] = ACTIONS(12465), + [anon_sym_BSLASHtvolcite] = ACTIONS(12465), + [anon_sym_BSLASHTvolcite] = ACTIONS(12465), + [anon_sym_BSLASHavolcite] = ACTIONS(12465), + [anon_sym_BSLASHAvolcite] = ACTIONS(12465), + [anon_sym_BSLASHnotecite] = ACTIONS(12465), + [anon_sym_BSLASHpnotecite] = ACTIONS(12465), + [anon_sym_BSLASHPnotecite] = ACTIONS(12465), + [anon_sym_BSLASHfnotecite] = ACTIONS(12465), + [anon_sym_BSLASHusepackage] = ACTIONS(12465), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12465), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12465), + [anon_sym_BSLASHinclude] = ACTIONS(12465), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12465), + [anon_sym_BSLASHinput] = ACTIONS(12465), + [anon_sym_BSLASHsubfile] = ACTIONS(12465), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12465), + [anon_sym_BSLASHbibliography] = ACTIONS(12465), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12465), + [anon_sym_BSLASHincludesvg] = ACTIONS(12465), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12465), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12465), + [anon_sym_BSLASHimport] = ACTIONS(12465), + [anon_sym_BSLASHsubimport] = ACTIONS(12465), + [anon_sym_BSLASHinputfrom] = ACTIONS(12465), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12465), + [anon_sym_BSLASHincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHlabel] = ACTIONS(12465), + [anon_sym_BSLASHref] = ACTIONS(12465), + [anon_sym_BSLASHvref] = ACTIONS(12465), + [anon_sym_BSLASHVref] = ACTIONS(12465), + [anon_sym_BSLASHautoref] = ACTIONS(12465), + [anon_sym_BSLASHpageref] = ACTIONS(12465), + [anon_sym_BSLASHcref] = ACTIONS(12465), + [anon_sym_BSLASHCref] = ACTIONS(12465), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnameCref] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHlabelcref] = ACTIONS(12465), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12465), + [anon_sym_BSLASHeqref] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange] = ACTIONS(12465), + [anon_sym_BSLASHCrefrange] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewlabel] = ACTIONS(12465), + [anon_sym_BSLASHnewcommand] = ACTIONS(12465), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12465), + [anon_sym_BSLASHgls] = ACTIONS(12465), + [anon_sym_BSLASHGls] = ACTIONS(12465), + [anon_sym_BSLASHGLS] = ACTIONS(12465), + [anon_sym_BSLASHglspl] = ACTIONS(12465), + [anon_sym_BSLASHGlspl] = ACTIONS(12465), + [anon_sym_BSLASHGLSpl] = ACTIONS(12465), + [anon_sym_BSLASHglsdisp] = ACTIONS(12465), + [anon_sym_BSLASHglslink] = ACTIONS(12465), + [anon_sym_BSLASHglstext] = ACTIONS(12465), + [anon_sym_BSLASHGlstext] = ACTIONS(12465), + [anon_sym_BSLASHGLStext] = ACTIONS(12465), + [anon_sym_BSLASHglsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12465), + [anon_sym_BSLASHglsplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSplural] = ACTIONS(12465), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHglsname] = ACTIONS(12465), + [anon_sym_BSLASHGlsname] = ACTIONS(12465), + [anon_sym_BSLASHGLSname] = ACTIONS(12465), + [anon_sym_BSLASHglssymbol] = ACTIONS(12465), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12465), + [anon_sym_BSLASHglsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12465), + [anon_sym_BSLASHglsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12465), + [anon_sym_BSLASHglsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12465), + [anon_sym_BSLASHglsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12465), + [anon_sym_BSLASHglsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12465), + [anon_sym_BSLASHnewacronym] = ACTIONS(12465), + [anon_sym_BSLASHacrshort] = ACTIONS(12465), + [anon_sym_BSLASHAcrshort] = ACTIONS(12465), + [anon_sym_BSLASHACRshort] = ACTIONS(12465), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12465), + [anon_sym_BSLASHacrlong] = ACTIONS(12465), + [anon_sym_BSLASHAcrlong] = ACTIONS(12465), + [anon_sym_BSLASHACRlong] = ACTIONS(12465), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12465), + [anon_sym_BSLASHacrfull] = ACTIONS(12465), + [anon_sym_BSLASHAcrfull] = ACTIONS(12465), + [anon_sym_BSLASHACRfull] = ACTIONS(12465), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12465), + [anon_sym_BSLASHacs] = ACTIONS(12465), + [anon_sym_BSLASHAcs] = ACTIONS(12465), + [anon_sym_BSLASHacsp] = ACTIONS(12465), + [anon_sym_BSLASHAcsp] = ACTIONS(12465), + [anon_sym_BSLASHacl] = ACTIONS(12465), + [anon_sym_BSLASHAcl] = ACTIONS(12465), + [anon_sym_BSLASHaclp] = ACTIONS(12465), + [anon_sym_BSLASHAclp] = ACTIONS(12465), + [anon_sym_BSLASHacf] = ACTIONS(12465), + [anon_sym_BSLASHAcf] = ACTIONS(12465), + [anon_sym_BSLASHacfp] = ACTIONS(12465), + [anon_sym_BSLASHAcfp] = ACTIONS(12465), + [anon_sym_BSLASHac] = ACTIONS(12465), + [anon_sym_BSLASHAc] = ACTIONS(12465), + [anon_sym_BSLASHacp] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12465), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12465), + [anon_sym_BSLASHcolor] = ACTIONS(12465), + [anon_sym_BSLASHcolorbox] = ACTIONS(12465), + [anon_sym_BSLASHtextcolor] = ACTIONS(12465), + [anon_sym_BSLASHpagecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12465), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12465), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12465), + }, + [1696] = { + [sym_generic_command_name] = ACTIONS(12469), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12469), + [anon_sym_BSLASHitem] = ACTIONS(12469), + [anon_sym_LBRACK] = ACTIONS(12467), + [anon_sym_RBRACK] = ACTIONS(12467), + [anon_sym_LBRACE] = ACTIONS(12467), + [anon_sym_RBRACE] = ACTIONS(12467), + [anon_sym_LPAREN] = ACTIONS(12467), + [anon_sym_COMMA] = ACTIONS(12467), + [anon_sym_EQ] = ACTIONS(12467), + [sym_word] = ACTIONS(12467), + [sym_param] = ACTIONS(12467), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12467), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12467), + [anon_sym_DOLLAR] = ACTIONS(12469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12467), + [anon_sym_BSLASHbegin] = ACTIONS(12469), + [anon_sym_BSLASHcaption] = ACTIONS(12469), + [anon_sym_BSLASHcite] = ACTIONS(12469), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCite] = ACTIONS(12469), + [anon_sym_BSLASHnocite] = ACTIONS(12469), + [anon_sym_BSLASHcitet] = ACTIONS(12469), + [anon_sym_BSLASHcitep] = ACTIONS(12469), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteauthor] = ACTIONS(12469), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12469), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitetitle] = ACTIONS(12469), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteyear] = ACTIONS(12469), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitedate] = ACTIONS(12469), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteurl] = ACTIONS(12469), + [anon_sym_BSLASHfullcite] = ACTIONS(12469), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12469), + [anon_sym_BSLASHcitealt] = ACTIONS(12469), + [anon_sym_BSLASHcitealp] = ACTIONS(12469), + [anon_sym_BSLASHcitetext] = ACTIONS(12469), + [anon_sym_BSLASHparencite] = ACTIONS(12469), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHParencite] = ACTIONS(12469), + [anon_sym_BSLASHfootcite] = ACTIONS(12469), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12469), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12469), + [anon_sym_BSLASHtextcite] = ACTIONS(12469), + [anon_sym_BSLASHTextcite] = ACTIONS(12469), + [anon_sym_BSLASHsmartcite] = ACTIONS(12469), + [anon_sym_BSLASHSmartcite] = ACTIONS(12469), + [anon_sym_BSLASHsupercite] = ACTIONS(12469), + [anon_sym_BSLASHautocite] = ACTIONS(12469), + [anon_sym_BSLASHAutocite] = ACTIONS(12469), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHvolcite] = ACTIONS(12469), + [anon_sym_BSLASHVolcite] = ACTIONS(12469), + [anon_sym_BSLASHpvolcite] = ACTIONS(12469), + [anon_sym_BSLASHPvolcite] = ACTIONS(12469), + [anon_sym_BSLASHfvolcite] = ACTIONS(12469), + [anon_sym_BSLASHftvolcite] = ACTIONS(12469), + [anon_sym_BSLASHsvolcite] = ACTIONS(12469), + [anon_sym_BSLASHSvolcite] = ACTIONS(12469), + [anon_sym_BSLASHtvolcite] = ACTIONS(12469), + [anon_sym_BSLASHTvolcite] = ACTIONS(12469), + [anon_sym_BSLASHavolcite] = ACTIONS(12469), + [anon_sym_BSLASHAvolcite] = ACTIONS(12469), + [anon_sym_BSLASHnotecite] = ACTIONS(12469), + [anon_sym_BSLASHpnotecite] = ACTIONS(12469), + [anon_sym_BSLASHPnotecite] = ACTIONS(12469), + [anon_sym_BSLASHfnotecite] = ACTIONS(12469), + [anon_sym_BSLASHusepackage] = ACTIONS(12469), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12469), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12469), + [anon_sym_BSLASHinclude] = ACTIONS(12469), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12469), + [anon_sym_BSLASHinput] = ACTIONS(12469), + [anon_sym_BSLASHsubfile] = ACTIONS(12469), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12469), + [anon_sym_BSLASHbibliography] = ACTIONS(12469), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12469), + [anon_sym_BSLASHincludesvg] = ACTIONS(12469), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12469), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12469), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12469), + [anon_sym_BSLASHimport] = ACTIONS(12469), + [anon_sym_BSLASHsubimport] = ACTIONS(12469), + [anon_sym_BSLASHinputfrom] = ACTIONS(12469), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12469), + [anon_sym_BSLASHincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHlabel] = ACTIONS(12469), + [anon_sym_BSLASHref] = ACTIONS(12469), + [anon_sym_BSLASHvref] = ACTIONS(12469), + [anon_sym_BSLASHVref] = ACTIONS(12469), + [anon_sym_BSLASHautoref] = ACTIONS(12469), + [anon_sym_BSLASHpageref] = ACTIONS(12469), + [anon_sym_BSLASHcref] = ACTIONS(12469), + [anon_sym_BSLASHCref] = ACTIONS(12469), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnameCref] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHlabelcref] = ACTIONS(12469), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12469), + [anon_sym_BSLASHeqref] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange] = ACTIONS(12469), + [anon_sym_BSLASHCrefrange] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewlabel] = ACTIONS(12469), + [anon_sym_BSLASHnewcommand] = ACTIONS(12469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12469), + [anon_sym_BSLASHgls] = ACTIONS(12469), + [anon_sym_BSLASHGls] = ACTIONS(12469), + [anon_sym_BSLASHGLS] = ACTIONS(12469), + [anon_sym_BSLASHglspl] = ACTIONS(12469), + [anon_sym_BSLASHGlspl] = ACTIONS(12469), + [anon_sym_BSLASHGLSpl] = ACTIONS(12469), + [anon_sym_BSLASHglsdisp] = ACTIONS(12469), + [anon_sym_BSLASHglslink] = ACTIONS(12469), + [anon_sym_BSLASHglstext] = ACTIONS(12469), + [anon_sym_BSLASHGlstext] = ACTIONS(12469), + [anon_sym_BSLASHGLStext] = ACTIONS(12469), + [anon_sym_BSLASHglsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12469), + [anon_sym_BSLASHglsplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSplural] = ACTIONS(12469), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHglsname] = ACTIONS(12469), + [anon_sym_BSLASHGlsname] = ACTIONS(12469), + [anon_sym_BSLASHGLSname] = ACTIONS(12469), + [anon_sym_BSLASHglssymbol] = ACTIONS(12469), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12469), + [anon_sym_BSLASHglsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12469), + [anon_sym_BSLASHglsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12469), + [anon_sym_BSLASHglsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12469), + [anon_sym_BSLASHglsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12469), + [anon_sym_BSLASHglsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12469), + [anon_sym_BSLASHnewacronym] = ACTIONS(12469), + [anon_sym_BSLASHacrshort] = ACTIONS(12469), + [anon_sym_BSLASHAcrshort] = ACTIONS(12469), + [anon_sym_BSLASHACRshort] = ACTIONS(12469), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12469), + [anon_sym_BSLASHacrlong] = ACTIONS(12469), + [anon_sym_BSLASHAcrlong] = ACTIONS(12469), + [anon_sym_BSLASHACRlong] = ACTIONS(12469), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12469), + [anon_sym_BSLASHacrfull] = ACTIONS(12469), + [anon_sym_BSLASHAcrfull] = ACTIONS(12469), + [anon_sym_BSLASHACRfull] = ACTIONS(12469), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12469), + [anon_sym_BSLASHacs] = ACTIONS(12469), + [anon_sym_BSLASHAcs] = ACTIONS(12469), + [anon_sym_BSLASHacsp] = ACTIONS(12469), + [anon_sym_BSLASHAcsp] = ACTIONS(12469), + [anon_sym_BSLASHacl] = ACTIONS(12469), + [anon_sym_BSLASHAcl] = ACTIONS(12469), + [anon_sym_BSLASHaclp] = ACTIONS(12469), + [anon_sym_BSLASHAclp] = ACTIONS(12469), + [anon_sym_BSLASHacf] = ACTIONS(12469), + [anon_sym_BSLASHAcf] = ACTIONS(12469), + [anon_sym_BSLASHacfp] = ACTIONS(12469), + [anon_sym_BSLASHAcfp] = ACTIONS(12469), + [anon_sym_BSLASHac] = ACTIONS(12469), + [anon_sym_BSLASHAc] = ACTIONS(12469), + [anon_sym_BSLASHacp] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12469), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12469), + [anon_sym_BSLASHcolor] = ACTIONS(12469), + [anon_sym_BSLASHcolorbox] = ACTIONS(12469), + [anon_sym_BSLASHtextcolor] = ACTIONS(12469), + [anon_sym_BSLASHpagecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12469), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12469), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12469), + }, + [1697] = { + [sym_generic_command_name] = ACTIONS(12477), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12477), + [anon_sym_BSLASHitem] = ACTIONS(12477), + [anon_sym_LBRACK] = ACTIONS(12475), + [anon_sym_RBRACK] = ACTIONS(12475), + [anon_sym_LBRACE] = ACTIONS(12475), + [anon_sym_RBRACE] = ACTIONS(12475), + [anon_sym_LPAREN] = ACTIONS(12475), + [anon_sym_COMMA] = ACTIONS(12475), + [anon_sym_EQ] = ACTIONS(12475), + [sym_word] = ACTIONS(12475), + [sym_param] = ACTIONS(12475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12475), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12475), + [anon_sym_DOLLAR] = ACTIONS(12477), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12475), + [anon_sym_BSLASHbegin] = ACTIONS(12477), + [anon_sym_BSLASHcaption] = ACTIONS(12477), + [anon_sym_BSLASHcite] = ACTIONS(12477), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCite] = ACTIONS(12477), + [anon_sym_BSLASHnocite] = ACTIONS(12477), + [anon_sym_BSLASHcitet] = ACTIONS(12477), + [anon_sym_BSLASHcitep] = ACTIONS(12477), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteauthor] = ACTIONS(12477), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12477), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitetitle] = ACTIONS(12477), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteyear] = ACTIONS(12477), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitedate] = ACTIONS(12477), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteurl] = ACTIONS(12477), + [anon_sym_BSLASHfullcite] = ACTIONS(12477), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12477), + [anon_sym_BSLASHcitealt] = ACTIONS(12477), + [anon_sym_BSLASHcitealp] = ACTIONS(12477), + [anon_sym_BSLASHcitetext] = ACTIONS(12477), + [anon_sym_BSLASHparencite] = ACTIONS(12477), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHParencite] = ACTIONS(12477), + [anon_sym_BSLASHfootcite] = ACTIONS(12477), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12477), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12477), + [anon_sym_BSLASHtextcite] = ACTIONS(12477), + [anon_sym_BSLASHTextcite] = ACTIONS(12477), + [anon_sym_BSLASHsmartcite] = ACTIONS(12477), + [anon_sym_BSLASHSmartcite] = ACTIONS(12477), + [anon_sym_BSLASHsupercite] = ACTIONS(12477), + [anon_sym_BSLASHautocite] = ACTIONS(12477), + [anon_sym_BSLASHAutocite] = ACTIONS(12477), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHvolcite] = ACTIONS(12477), + [anon_sym_BSLASHVolcite] = ACTIONS(12477), + [anon_sym_BSLASHpvolcite] = ACTIONS(12477), + [anon_sym_BSLASHPvolcite] = ACTIONS(12477), + [anon_sym_BSLASHfvolcite] = ACTIONS(12477), + [anon_sym_BSLASHftvolcite] = ACTIONS(12477), + [anon_sym_BSLASHsvolcite] = ACTIONS(12477), + [anon_sym_BSLASHSvolcite] = ACTIONS(12477), + [anon_sym_BSLASHtvolcite] = ACTIONS(12477), + [anon_sym_BSLASHTvolcite] = ACTIONS(12477), + [anon_sym_BSLASHavolcite] = ACTIONS(12477), + [anon_sym_BSLASHAvolcite] = ACTIONS(12477), + [anon_sym_BSLASHnotecite] = ACTIONS(12477), + [anon_sym_BSLASHpnotecite] = ACTIONS(12477), + [anon_sym_BSLASHPnotecite] = ACTIONS(12477), + [anon_sym_BSLASHfnotecite] = ACTIONS(12477), + [anon_sym_BSLASHusepackage] = ACTIONS(12477), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12477), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12477), + [anon_sym_BSLASHinclude] = ACTIONS(12477), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12477), + [anon_sym_BSLASHinput] = ACTIONS(12477), + [anon_sym_BSLASHsubfile] = ACTIONS(12477), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12477), + [anon_sym_BSLASHbibliography] = ACTIONS(12477), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12477), + [anon_sym_BSLASHincludesvg] = ACTIONS(12477), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12477), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12477), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12477), + [anon_sym_BSLASHimport] = ACTIONS(12477), + [anon_sym_BSLASHsubimport] = ACTIONS(12477), + [anon_sym_BSLASHinputfrom] = ACTIONS(12477), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12477), + [anon_sym_BSLASHincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHlabel] = ACTIONS(12477), + [anon_sym_BSLASHref] = ACTIONS(12477), + [anon_sym_BSLASHvref] = ACTIONS(12477), + [anon_sym_BSLASHVref] = ACTIONS(12477), + [anon_sym_BSLASHautoref] = ACTIONS(12477), + [anon_sym_BSLASHpageref] = ACTIONS(12477), + [anon_sym_BSLASHcref] = ACTIONS(12477), + [anon_sym_BSLASHCref] = ACTIONS(12477), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnameCref] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHlabelcref] = ACTIONS(12477), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12477), + [anon_sym_BSLASHeqref] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange] = ACTIONS(12477), + [anon_sym_BSLASHCrefrange] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewlabel] = ACTIONS(12477), + [anon_sym_BSLASHnewcommand] = ACTIONS(12477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12477), + [anon_sym_BSLASHgls] = ACTIONS(12477), + [anon_sym_BSLASHGls] = ACTIONS(12477), + [anon_sym_BSLASHGLS] = ACTIONS(12477), + [anon_sym_BSLASHglspl] = ACTIONS(12477), + [anon_sym_BSLASHGlspl] = ACTIONS(12477), + [anon_sym_BSLASHGLSpl] = ACTIONS(12477), + [anon_sym_BSLASHglsdisp] = ACTIONS(12477), + [anon_sym_BSLASHglslink] = ACTIONS(12477), + [anon_sym_BSLASHglstext] = ACTIONS(12477), + [anon_sym_BSLASHGlstext] = ACTIONS(12477), + [anon_sym_BSLASHGLStext] = ACTIONS(12477), + [anon_sym_BSLASHglsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12477), + [anon_sym_BSLASHglsplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSplural] = ACTIONS(12477), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHglsname] = ACTIONS(12477), + [anon_sym_BSLASHGlsname] = ACTIONS(12477), + [anon_sym_BSLASHGLSname] = ACTIONS(12477), + [anon_sym_BSLASHglssymbol] = ACTIONS(12477), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12477), + [anon_sym_BSLASHglsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12477), + [anon_sym_BSLASHglsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12477), + [anon_sym_BSLASHglsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12477), + [anon_sym_BSLASHglsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12477), + [anon_sym_BSLASHglsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12477), + [anon_sym_BSLASHnewacronym] = ACTIONS(12477), + [anon_sym_BSLASHacrshort] = ACTIONS(12477), + [anon_sym_BSLASHAcrshort] = ACTIONS(12477), + [anon_sym_BSLASHACRshort] = ACTIONS(12477), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12477), + [anon_sym_BSLASHacrlong] = ACTIONS(12477), + [anon_sym_BSLASHAcrlong] = ACTIONS(12477), + [anon_sym_BSLASHACRlong] = ACTIONS(12477), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12477), + [anon_sym_BSLASHacrfull] = ACTIONS(12477), + [anon_sym_BSLASHAcrfull] = ACTIONS(12477), + [anon_sym_BSLASHACRfull] = ACTIONS(12477), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12477), + [anon_sym_BSLASHacs] = ACTIONS(12477), + [anon_sym_BSLASHAcs] = ACTIONS(12477), + [anon_sym_BSLASHacsp] = ACTIONS(12477), + [anon_sym_BSLASHAcsp] = ACTIONS(12477), + [anon_sym_BSLASHacl] = ACTIONS(12477), + [anon_sym_BSLASHAcl] = ACTIONS(12477), + [anon_sym_BSLASHaclp] = ACTIONS(12477), + [anon_sym_BSLASHAclp] = ACTIONS(12477), + [anon_sym_BSLASHacf] = ACTIONS(12477), + [anon_sym_BSLASHAcf] = ACTIONS(12477), + [anon_sym_BSLASHacfp] = ACTIONS(12477), + [anon_sym_BSLASHAcfp] = ACTIONS(12477), + [anon_sym_BSLASHac] = ACTIONS(12477), + [anon_sym_BSLASHAc] = ACTIONS(12477), + [anon_sym_BSLASHacp] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12477), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12477), + [anon_sym_BSLASHcolor] = ACTIONS(12477), + [anon_sym_BSLASHcolorbox] = ACTIONS(12477), + [anon_sym_BSLASHtextcolor] = ACTIONS(12477), + [anon_sym_BSLASHpagecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12477), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12477), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12477), + }, + [1698] = { + [sym_generic_command_name] = ACTIONS(12481), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12481), + [anon_sym_BSLASHitem] = ACTIONS(12481), + [anon_sym_LBRACK] = ACTIONS(12479), + [anon_sym_RBRACK] = ACTIONS(12479), + [anon_sym_LBRACE] = ACTIONS(12479), + [anon_sym_RBRACE] = ACTIONS(12479), + [anon_sym_LPAREN] = ACTIONS(12479), + [anon_sym_COMMA] = ACTIONS(12479), + [anon_sym_EQ] = ACTIONS(12479), + [sym_word] = ACTIONS(12479), + [sym_param] = ACTIONS(12479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12479), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12479), + [anon_sym_DOLLAR] = ACTIONS(12481), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12479), + [anon_sym_BSLASHbegin] = ACTIONS(12481), + [anon_sym_BSLASHcaption] = ACTIONS(12481), + [anon_sym_BSLASHcite] = ACTIONS(12481), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCite] = ACTIONS(12481), + [anon_sym_BSLASHnocite] = ACTIONS(12481), + [anon_sym_BSLASHcitet] = ACTIONS(12481), + [anon_sym_BSLASHcitep] = ACTIONS(12481), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteauthor] = ACTIONS(12481), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12481), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitetitle] = ACTIONS(12481), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteyear] = ACTIONS(12481), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitedate] = ACTIONS(12481), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteurl] = ACTIONS(12481), + [anon_sym_BSLASHfullcite] = ACTIONS(12481), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12481), + [anon_sym_BSLASHcitealt] = ACTIONS(12481), + [anon_sym_BSLASHcitealp] = ACTIONS(12481), + [anon_sym_BSLASHcitetext] = ACTIONS(12481), + [anon_sym_BSLASHparencite] = ACTIONS(12481), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHParencite] = ACTIONS(12481), + [anon_sym_BSLASHfootcite] = ACTIONS(12481), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12481), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12481), + [anon_sym_BSLASHtextcite] = ACTIONS(12481), + [anon_sym_BSLASHTextcite] = ACTIONS(12481), + [anon_sym_BSLASHsmartcite] = ACTIONS(12481), + [anon_sym_BSLASHSmartcite] = ACTIONS(12481), + [anon_sym_BSLASHsupercite] = ACTIONS(12481), + [anon_sym_BSLASHautocite] = ACTIONS(12481), + [anon_sym_BSLASHAutocite] = ACTIONS(12481), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHvolcite] = ACTIONS(12481), + [anon_sym_BSLASHVolcite] = ACTIONS(12481), + [anon_sym_BSLASHpvolcite] = ACTIONS(12481), + [anon_sym_BSLASHPvolcite] = ACTIONS(12481), + [anon_sym_BSLASHfvolcite] = ACTIONS(12481), + [anon_sym_BSLASHftvolcite] = ACTIONS(12481), + [anon_sym_BSLASHsvolcite] = ACTIONS(12481), + [anon_sym_BSLASHSvolcite] = ACTIONS(12481), + [anon_sym_BSLASHtvolcite] = ACTIONS(12481), + [anon_sym_BSLASHTvolcite] = ACTIONS(12481), + [anon_sym_BSLASHavolcite] = ACTIONS(12481), + [anon_sym_BSLASHAvolcite] = ACTIONS(12481), + [anon_sym_BSLASHnotecite] = ACTIONS(12481), + [anon_sym_BSLASHpnotecite] = ACTIONS(12481), + [anon_sym_BSLASHPnotecite] = ACTIONS(12481), + [anon_sym_BSLASHfnotecite] = ACTIONS(12481), + [anon_sym_BSLASHusepackage] = ACTIONS(12481), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12481), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12481), + [anon_sym_BSLASHinclude] = ACTIONS(12481), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12481), + [anon_sym_BSLASHinput] = ACTIONS(12481), + [anon_sym_BSLASHsubfile] = ACTIONS(12481), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12481), + [anon_sym_BSLASHbibliography] = ACTIONS(12481), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12481), + [anon_sym_BSLASHincludesvg] = ACTIONS(12481), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12481), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12481), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12481), + [anon_sym_BSLASHimport] = ACTIONS(12481), + [anon_sym_BSLASHsubimport] = ACTIONS(12481), + [anon_sym_BSLASHinputfrom] = ACTIONS(12481), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12481), + [anon_sym_BSLASHincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHlabel] = ACTIONS(12481), + [anon_sym_BSLASHref] = ACTIONS(12481), + [anon_sym_BSLASHvref] = ACTIONS(12481), + [anon_sym_BSLASHVref] = ACTIONS(12481), + [anon_sym_BSLASHautoref] = ACTIONS(12481), + [anon_sym_BSLASHpageref] = ACTIONS(12481), + [anon_sym_BSLASHcref] = ACTIONS(12481), + [anon_sym_BSLASHCref] = ACTIONS(12481), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnameCref] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHlabelcref] = ACTIONS(12481), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12481), + [anon_sym_BSLASHeqref] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange] = ACTIONS(12481), + [anon_sym_BSLASHCrefrange] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewlabel] = ACTIONS(12481), + [anon_sym_BSLASHnewcommand] = ACTIONS(12481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12481), + [anon_sym_BSLASHgls] = ACTIONS(12481), + [anon_sym_BSLASHGls] = ACTIONS(12481), + [anon_sym_BSLASHGLS] = ACTIONS(12481), + [anon_sym_BSLASHglspl] = ACTIONS(12481), + [anon_sym_BSLASHGlspl] = ACTIONS(12481), + [anon_sym_BSLASHGLSpl] = ACTIONS(12481), + [anon_sym_BSLASHglsdisp] = ACTIONS(12481), + [anon_sym_BSLASHglslink] = ACTIONS(12481), + [anon_sym_BSLASHglstext] = ACTIONS(12481), + [anon_sym_BSLASHGlstext] = ACTIONS(12481), + [anon_sym_BSLASHGLStext] = ACTIONS(12481), + [anon_sym_BSLASHglsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12481), + [anon_sym_BSLASHglsplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSplural] = ACTIONS(12481), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHglsname] = ACTIONS(12481), + [anon_sym_BSLASHGlsname] = ACTIONS(12481), + [anon_sym_BSLASHGLSname] = ACTIONS(12481), + [anon_sym_BSLASHglssymbol] = ACTIONS(12481), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12481), + [anon_sym_BSLASHglsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12481), + [anon_sym_BSLASHglsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12481), + [anon_sym_BSLASHglsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12481), + [anon_sym_BSLASHglsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12481), + [anon_sym_BSLASHglsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12481), + [anon_sym_BSLASHnewacronym] = ACTIONS(12481), + [anon_sym_BSLASHacrshort] = ACTIONS(12481), + [anon_sym_BSLASHAcrshort] = ACTIONS(12481), + [anon_sym_BSLASHACRshort] = ACTIONS(12481), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12481), + [anon_sym_BSLASHacrlong] = ACTIONS(12481), + [anon_sym_BSLASHAcrlong] = ACTIONS(12481), + [anon_sym_BSLASHACRlong] = ACTIONS(12481), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12481), + [anon_sym_BSLASHacrfull] = ACTIONS(12481), + [anon_sym_BSLASHAcrfull] = ACTIONS(12481), + [anon_sym_BSLASHACRfull] = ACTIONS(12481), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12481), + [anon_sym_BSLASHacs] = ACTIONS(12481), + [anon_sym_BSLASHAcs] = ACTIONS(12481), + [anon_sym_BSLASHacsp] = ACTIONS(12481), + [anon_sym_BSLASHAcsp] = ACTIONS(12481), + [anon_sym_BSLASHacl] = ACTIONS(12481), + [anon_sym_BSLASHAcl] = ACTIONS(12481), + [anon_sym_BSLASHaclp] = ACTIONS(12481), + [anon_sym_BSLASHAclp] = ACTIONS(12481), + [anon_sym_BSLASHacf] = ACTIONS(12481), + [anon_sym_BSLASHAcf] = ACTIONS(12481), + [anon_sym_BSLASHacfp] = ACTIONS(12481), + [anon_sym_BSLASHAcfp] = ACTIONS(12481), + [anon_sym_BSLASHac] = ACTIONS(12481), + [anon_sym_BSLASHAc] = ACTIONS(12481), + [anon_sym_BSLASHacp] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12481), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12481), + [anon_sym_BSLASHcolor] = ACTIONS(12481), + [anon_sym_BSLASHcolorbox] = ACTIONS(12481), + [anon_sym_BSLASHtextcolor] = ACTIONS(12481), + [anon_sym_BSLASHpagecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12481), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12481), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12481), + }, + [1699] = { + [sym_generic_command_name] = ACTIONS(12493), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12493), + [anon_sym_BSLASHitem] = ACTIONS(12493), + [anon_sym_LBRACK] = ACTIONS(12491), + [anon_sym_RBRACK] = ACTIONS(12491), + [anon_sym_LBRACE] = ACTIONS(12491), + [anon_sym_RBRACE] = ACTIONS(12491), + [anon_sym_LPAREN] = ACTIONS(12491), + [anon_sym_COMMA] = ACTIONS(12491), + [anon_sym_EQ] = ACTIONS(12491), + [sym_word] = ACTIONS(12491), + [sym_param] = ACTIONS(12491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12491), + [anon_sym_DOLLAR] = ACTIONS(12493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12491), + [anon_sym_BSLASHbegin] = ACTIONS(12493), + [anon_sym_BSLASHcaption] = ACTIONS(12493), + [anon_sym_BSLASHcite] = ACTIONS(12493), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCite] = ACTIONS(12493), + [anon_sym_BSLASHnocite] = ACTIONS(12493), + [anon_sym_BSLASHcitet] = ACTIONS(12493), + [anon_sym_BSLASHcitep] = ACTIONS(12493), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteauthor] = ACTIONS(12493), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12493), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitetitle] = ACTIONS(12493), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteyear] = ACTIONS(12493), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitedate] = ACTIONS(12493), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteurl] = ACTIONS(12493), + [anon_sym_BSLASHfullcite] = ACTIONS(12493), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12493), + [anon_sym_BSLASHcitealt] = ACTIONS(12493), + [anon_sym_BSLASHcitealp] = ACTIONS(12493), + [anon_sym_BSLASHcitetext] = ACTIONS(12493), + [anon_sym_BSLASHparencite] = ACTIONS(12493), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHParencite] = ACTIONS(12493), + [anon_sym_BSLASHfootcite] = ACTIONS(12493), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12493), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12493), + [anon_sym_BSLASHtextcite] = ACTIONS(12493), + [anon_sym_BSLASHTextcite] = ACTIONS(12493), + [anon_sym_BSLASHsmartcite] = ACTIONS(12493), + [anon_sym_BSLASHSmartcite] = ACTIONS(12493), + [anon_sym_BSLASHsupercite] = ACTIONS(12493), + [anon_sym_BSLASHautocite] = ACTIONS(12493), + [anon_sym_BSLASHAutocite] = ACTIONS(12493), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHvolcite] = ACTIONS(12493), + [anon_sym_BSLASHVolcite] = ACTIONS(12493), + [anon_sym_BSLASHpvolcite] = ACTIONS(12493), + [anon_sym_BSLASHPvolcite] = ACTIONS(12493), + [anon_sym_BSLASHfvolcite] = ACTIONS(12493), + [anon_sym_BSLASHftvolcite] = ACTIONS(12493), + [anon_sym_BSLASHsvolcite] = ACTIONS(12493), + [anon_sym_BSLASHSvolcite] = ACTIONS(12493), + [anon_sym_BSLASHtvolcite] = ACTIONS(12493), + [anon_sym_BSLASHTvolcite] = ACTIONS(12493), + [anon_sym_BSLASHavolcite] = ACTIONS(12493), + [anon_sym_BSLASHAvolcite] = ACTIONS(12493), + [anon_sym_BSLASHnotecite] = ACTIONS(12493), + [anon_sym_BSLASHpnotecite] = ACTIONS(12493), + [anon_sym_BSLASHPnotecite] = ACTIONS(12493), + [anon_sym_BSLASHfnotecite] = ACTIONS(12493), + [anon_sym_BSLASHusepackage] = ACTIONS(12493), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12493), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12493), + [anon_sym_BSLASHinclude] = ACTIONS(12493), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12493), + [anon_sym_BSLASHinput] = ACTIONS(12493), + [anon_sym_BSLASHsubfile] = ACTIONS(12493), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12493), + [anon_sym_BSLASHbibliography] = ACTIONS(12493), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12493), + [anon_sym_BSLASHincludesvg] = ACTIONS(12493), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12493), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12493), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12493), + [anon_sym_BSLASHimport] = ACTIONS(12493), + [anon_sym_BSLASHsubimport] = ACTIONS(12493), + [anon_sym_BSLASHinputfrom] = ACTIONS(12493), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12493), + [anon_sym_BSLASHincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHlabel] = ACTIONS(12493), + [anon_sym_BSLASHref] = ACTIONS(12493), + [anon_sym_BSLASHvref] = ACTIONS(12493), + [anon_sym_BSLASHVref] = ACTIONS(12493), + [anon_sym_BSLASHautoref] = ACTIONS(12493), + [anon_sym_BSLASHpageref] = ACTIONS(12493), + [anon_sym_BSLASHcref] = ACTIONS(12493), + [anon_sym_BSLASHCref] = ACTIONS(12493), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnameCref] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHlabelcref] = ACTIONS(12493), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12493), + [anon_sym_BSLASHeqref] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange] = ACTIONS(12493), + [anon_sym_BSLASHCrefrange] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewlabel] = ACTIONS(12493), + [anon_sym_BSLASHnewcommand] = ACTIONS(12493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12493), + [anon_sym_BSLASHgls] = ACTIONS(12493), + [anon_sym_BSLASHGls] = ACTIONS(12493), + [anon_sym_BSLASHGLS] = ACTIONS(12493), + [anon_sym_BSLASHglspl] = ACTIONS(12493), + [anon_sym_BSLASHGlspl] = ACTIONS(12493), + [anon_sym_BSLASHGLSpl] = ACTIONS(12493), + [anon_sym_BSLASHglsdisp] = ACTIONS(12493), + [anon_sym_BSLASHglslink] = ACTIONS(12493), + [anon_sym_BSLASHglstext] = ACTIONS(12493), + [anon_sym_BSLASHGlstext] = ACTIONS(12493), + [anon_sym_BSLASHGLStext] = ACTIONS(12493), + [anon_sym_BSLASHglsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12493), + [anon_sym_BSLASHglsplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSplural] = ACTIONS(12493), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHglsname] = ACTIONS(12493), + [anon_sym_BSLASHGlsname] = ACTIONS(12493), + [anon_sym_BSLASHGLSname] = ACTIONS(12493), + [anon_sym_BSLASHglssymbol] = ACTIONS(12493), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12493), + [anon_sym_BSLASHglsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12493), + [anon_sym_BSLASHglsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12493), + [anon_sym_BSLASHglsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12493), + [anon_sym_BSLASHglsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12493), + [anon_sym_BSLASHglsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12493), + [anon_sym_BSLASHnewacronym] = ACTIONS(12493), + [anon_sym_BSLASHacrshort] = ACTIONS(12493), + [anon_sym_BSLASHAcrshort] = ACTIONS(12493), + [anon_sym_BSLASHACRshort] = ACTIONS(12493), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12493), + [anon_sym_BSLASHacrlong] = ACTIONS(12493), + [anon_sym_BSLASHAcrlong] = ACTIONS(12493), + [anon_sym_BSLASHACRlong] = ACTIONS(12493), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12493), + [anon_sym_BSLASHacrfull] = ACTIONS(12493), + [anon_sym_BSLASHAcrfull] = ACTIONS(12493), + [anon_sym_BSLASHACRfull] = ACTIONS(12493), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12493), + [anon_sym_BSLASHacs] = ACTIONS(12493), + [anon_sym_BSLASHAcs] = ACTIONS(12493), + [anon_sym_BSLASHacsp] = ACTIONS(12493), + [anon_sym_BSLASHAcsp] = ACTIONS(12493), + [anon_sym_BSLASHacl] = ACTIONS(12493), + [anon_sym_BSLASHAcl] = ACTIONS(12493), + [anon_sym_BSLASHaclp] = ACTIONS(12493), + [anon_sym_BSLASHAclp] = ACTIONS(12493), + [anon_sym_BSLASHacf] = ACTIONS(12493), + [anon_sym_BSLASHAcf] = ACTIONS(12493), + [anon_sym_BSLASHacfp] = ACTIONS(12493), + [anon_sym_BSLASHAcfp] = ACTIONS(12493), + [anon_sym_BSLASHac] = ACTIONS(12493), + [anon_sym_BSLASHAc] = ACTIONS(12493), + [anon_sym_BSLASHacp] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12493), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12493), + [anon_sym_BSLASHcolor] = ACTIONS(12493), + [anon_sym_BSLASHcolorbox] = ACTIONS(12493), + [anon_sym_BSLASHtextcolor] = ACTIONS(12493), + [anon_sym_BSLASHpagecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12493), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12493), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12493), + }, + [1700] = { + [sym_generic_command_name] = ACTIONS(12497), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12497), + [anon_sym_BSLASHitem] = ACTIONS(12497), + [anon_sym_LBRACK] = ACTIONS(12495), + [anon_sym_RBRACK] = ACTIONS(12495), + [anon_sym_LBRACE] = ACTIONS(12495), + [anon_sym_RBRACE] = ACTIONS(12495), + [anon_sym_LPAREN] = ACTIONS(12495), + [anon_sym_COMMA] = ACTIONS(12495), + [anon_sym_EQ] = ACTIONS(12495), + [sym_word] = ACTIONS(12495), + [sym_param] = ACTIONS(12495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12495), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12495), + [anon_sym_DOLLAR] = ACTIONS(12497), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12495), + [anon_sym_BSLASHbegin] = ACTIONS(12497), + [anon_sym_BSLASHcaption] = ACTIONS(12497), + [anon_sym_BSLASHcite] = ACTIONS(12497), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCite] = ACTIONS(12497), + [anon_sym_BSLASHnocite] = ACTIONS(12497), + [anon_sym_BSLASHcitet] = ACTIONS(12497), + [anon_sym_BSLASHcitep] = ACTIONS(12497), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteauthor] = ACTIONS(12497), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12497), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitetitle] = ACTIONS(12497), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteyear] = ACTIONS(12497), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitedate] = ACTIONS(12497), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteurl] = ACTIONS(12497), + [anon_sym_BSLASHfullcite] = ACTIONS(12497), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12497), + [anon_sym_BSLASHcitealt] = ACTIONS(12497), + [anon_sym_BSLASHcitealp] = ACTIONS(12497), + [anon_sym_BSLASHcitetext] = ACTIONS(12497), + [anon_sym_BSLASHparencite] = ACTIONS(12497), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHParencite] = ACTIONS(12497), + [anon_sym_BSLASHfootcite] = ACTIONS(12497), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12497), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12497), + [anon_sym_BSLASHtextcite] = ACTIONS(12497), + [anon_sym_BSLASHTextcite] = ACTIONS(12497), + [anon_sym_BSLASHsmartcite] = ACTIONS(12497), + [anon_sym_BSLASHSmartcite] = ACTIONS(12497), + [anon_sym_BSLASHsupercite] = ACTIONS(12497), + [anon_sym_BSLASHautocite] = ACTIONS(12497), + [anon_sym_BSLASHAutocite] = ACTIONS(12497), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHvolcite] = ACTIONS(12497), + [anon_sym_BSLASHVolcite] = ACTIONS(12497), + [anon_sym_BSLASHpvolcite] = ACTIONS(12497), + [anon_sym_BSLASHPvolcite] = ACTIONS(12497), + [anon_sym_BSLASHfvolcite] = ACTIONS(12497), + [anon_sym_BSLASHftvolcite] = ACTIONS(12497), + [anon_sym_BSLASHsvolcite] = ACTIONS(12497), + [anon_sym_BSLASHSvolcite] = ACTIONS(12497), + [anon_sym_BSLASHtvolcite] = ACTIONS(12497), + [anon_sym_BSLASHTvolcite] = ACTIONS(12497), + [anon_sym_BSLASHavolcite] = ACTIONS(12497), + [anon_sym_BSLASHAvolcite] = ACTIONS(12497), + [anon_sym_BSLASHnotecite] = ACTIONS(12497), + [anon_sym_BSLASHpnotecite] = ACTIONS(12497), + [anon_sym_BSLASHPnotecite] = ACTIONS(12497), + [anon_sym_BSLASHfnotecite] = ACTIONS(12497), + [anon_sym_BSLASHusepackage] = ACTIONS(12497), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12497), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12497), + [anon_sym_BSLASHinclude] = ACTIONS(12497), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12497), + [anon_sym_BSLASHinput] = ACTIONS(12497), + [anon_sym_BSLASHsubfile] = ACTIONS(12497), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12497), + [anon_sym_BSLASHbibliography] = ACTIONS(12497), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12497), + [anon_sym_BSLASHincludesvg] = ACTIONS(12497), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12497), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12497), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12497), + [anon_sym_BSLASHimport] = ACTIONS(12497), + [anon_sym_BSLASHsubimport] = ACTIONS(12497), + [anon_sym_BSLASHinputfrom] = ACTIONS(12497), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12497), + [anon_sym_BSLASHincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHlabel] = ACTIONS(12497), + [anon_sym_BSLASHref] = ACTIONS(12497), + [anon_sym_BSLASHvref] = ACTIONS(12497), + [anon_sym_BSLASHVref] = ACTIONS(12497), + [anon_sym_BSLASHautoref] = ACTIONS(12497), + [anon_sym_BSLASHpageref] = ACTIONS(12497), + [anon_sym_BSLASHcref] = ACTIONS(12497), + [anon_sym_BSLASHCref] = ACTIONS(12497), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnameCref] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHlabelcref] = ACTIONS(12497), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12497), + [anon_sym_BSLASHeqref] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange] = ACTIONS(12497), + [anon_sym_BSLASHCrefrange] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewlabel] = ACTIONS(12497), + [anon_sym_BSLASHnewcommand] = ACTIONS(12497), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12497), + [anon_sym_BSLASHgls] = ACTIONS(12497), + [anon_sym_BSLASHGls] = ACTIONS(12497), + [anon_sym_BSLASHGLS] = ACTIONS(12497), + [anon_sym_BSLASHglspl] = ACTIONS(12497), + [anon_sym_BSLASHGlspl] = ACTIONS(12497), + [anon_sym_BSLASHGLSpl] = ACTIONS(12497), + [anon_sym_BSLASHglsdisp] = ACTIONS(12497), + [anon_sym_BSLASHglslink] = ACTIONS(12497), + [anon_sym_BSLASHglstext] = ACTIONS(12497), + [anon_sym_BSLASHGlstext] = ACTIONS(12497), + [anon_sym_BSLASHGLStext] = ACTIONS(12497), + [anon_sym_BSLASHglsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12497), + [anon_sym_BSLASHglsplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSplural] = ACTIONS(12497), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHglsname] = ACTIONS(12497), + [anon_sym_BSLASHGlsname] = ACTIONS(12497), + [anon_sym_BSLASHGLSname] = ACTIONS(12497), + [anon_sym_BSLASHglssymbol] = ACTIONS(12497), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12497), + [anon_sym_BSLASHglsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12497), + [anon_sym_BSLASHglsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12497), + [anon_sym_BSLASHglsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12497), + [anon_sym_BSLASHglsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12497), + [anon_sym_BSLASHglsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12497), + [anon_sym_BSLASHnewacronym] = ACTIONS(12497), + [anon_sym_BSLASHacrshort] = ACTIONS(12497), + [anon_sym_BSLASHAcrshort] = ACTIONS(12497), + [anon_sym_BSLASHACRshort] = ACTIONS(12497), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12497), + [anon_sym_BSLASHacrlong] = ACTIONS(12497), + [anon_sym_BSLASHAcrlong] = ACTIONS(12497), + [anon_sym_BSLASHACRlong] = ACTIONS(12497), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12497), + [anon_sym_BSLASHacrfull] = ACTIONS(12497), + [anon_sym_BSLASHAcrfull] = ACTIONS(12497), + [anon_sym_BSLASHACRfull] = ACTIONS(12497), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12497), + [anon_sym_BSLASHacs] = ACTIONS(12497), + [anon_sym_BSLASHAcs] = ACTIONS(12497), + [anon_sym_BSLASHacsp] = ACTIONS(12497), + [anon_sym_BSLASHAcsp] = ACTIONS(12497), + [anon_sym_BSLASHacl] = ACTIONS(12497), + [anon_sym_BSLASHAcl] = ACTIONS(12497), + [anon_sym_BSLASHaclp] = ACTIONS(12497), + [anon_sym_BSLASHAclp] = ACTIONS(12497), + [anon_sym_BSLASHacf] = ACTIONS(12497), + [anon_sym_BSLASHAcf] = ACTIONS(12497), + [anon_sym_BSLASHacfp] = ACTIONS(12497), + [anon_sym_BSLASHAcfp] = ACTIONS(12497), + [anon_sym_BSLASHac] = ACTIONS(12497), + [anon_sym_BSLASHAc] = ACTIONS(12497), + [anon_sym_BSLASHacp] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12497), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12497), + [anon_sym_BSLASHcolor] = ACTIONS(12497), + [anon_sym_BSLASHcolorbox] = ACTIONS(12497), + [anon_sym_BSLASHtextcolor] = ACTIONS(12497), + [anon_sym_BSLASHpagecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12497), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12497), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12497), + }, + [1701] = { + [sym_generic_command_name] = ACTIONS(12501), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12501), + [anon_sym_BSLASHitem] = ACTIONS(12501), + [anon_sym_LBRACK] = ACTIONS(12499), + [anon_sym_RBRACK] = ACTIONS(12499), + [anon_sym_LBRACE] = ACTIONS(12499), + [anon_sym_RBRACE] = ACTIONS(12499), + [anon_sym_LPAREN] = ACTIONS(12499), + [anon_sym_COMMA] = ACTIONS(12499), + [anon_sym_EQ] = ACTIONS(12499), + [sym_word] = ACTIONS(12499), + [sym_param] = ACTIONS(12499), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12499), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12499), + [anon_sym_DOLLAR] = ACTIONS(12501), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12499), + [anon_sym_BSLASHbegin] = ACTIONS(12501), + [anon_sym_BSLASHcaption] = ACTIONS(12501), + [anon_sym_BSLASHcite] = ACTIONS(12501), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCite] = ACTIONS(12501), + [anon_sym_BSLASHnocite] = ACTIONS(12501), + [anon_sym_BSLASHcitet] = ACTIONS(12501), + [anon_sym_BSLASHcitep] = ACTIONS(12501), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteauthor] = ACTIONS(12501), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12501), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitetitle] = ACTIONS(12501), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteyear] = ACTIONS(12501), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitedate] = ACTIONS(12501), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteurl] = ACTIONS(12501), + [anon_sym_BSLASHfullcite] = ACTIONS(12501), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12501), + [anon_sym_BSLASHcitealt] = ACTIONS(12501), + [anon_sym_BSLASHcitealp] = ACTIONS(12501), + [anon_sym_BSLASHcitetext] = ACTIONS(12501), + [anon_sym_BSLASHparencite] = ACTIONS(12501), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHParencite] = ACTIONS(12501), + [anon_sym_BSLASHfootcite] = ACTIONS(12501), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12501), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12501), + [anon_sym_BSLASHtextcite] = ACTIONS(12501), + [anon_sym_BSLASHTextcite] = ACTIONS(12501), + [anon_sym_BSLASHsmartcite] = ACTIONS(12501), + [anon_sym_BSLASHSmartcite] = ACTIONS(12501), + [anon_sym_BSLASHsupercite] = ACTIONS(12501), + [anon_sym_BSLASHautocite] = ACTIONS(12501), + [anon_sym_BSLASHAutocite] = ACTIONS(12501), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHvolcite] = ACTIONS(12501), + [anon_sym_BSLASHVolcite] = ACTIONS(12501), + [anon_sym_BSLASHpvolcite] = ACTIONS(12501), + [anon_sym_BSLASHPvolcite] = ACTIONS(12501), + [anon_sym_BSLASHfvolcite] = ACTIONS(12501), + [anon_sym_BSLASHftvolcite] = ACTIONS(12501), + [anon_sym_BSLASHsvolcite] = ACTIONS(12501), + [anon_sym_BSLASHSvolcite] = ACTIONS(12501), + [anon_sym_BSLASHtvolcite] = ACTIONS(12501), + [anon_sym_BSLASHTvolcite] = ACTIONS(12501), + [anon_sym_BSLASHavolcite] = ACTIONS(12501), + [anon_sym_BSLASHAvolcite] = ACTIONS(12501), + [anon_sym_BSLASHnotecite] = ACTIONS(12501), + [anon_sym_BSLASHpnotecite] = ACTIONS(12501), + [anon_sym_BSLASHPnotecite] = ACTIONS(12501), + [anon_sym_BSLASHfnotecite] = ACTIONS(12501), + [anon_sym_BSLASHusepackage] = ACTIONS(12501), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12501), + [anon_sym_BSLASHinclude] = ACTIONS(12501), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12501), + [anon_sym_BSLASHinput] = ACTIONS(12501), + [anon_sym_BSLASHsubfile] = ACTIONS(12501), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12501), + [anon_sym_BSLASHbibliography] = ACTIONS(12501), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12501), + [anon_sym_BSLASHincludesvg] = ACTIONS(12501), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12501), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12501), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12501), + [anon_sym_BSLASHimport] = ACTIONS(12501), + [anon_sym_BSLASHsubimport] = ACTIONS(12501), + [anon_sym_BSLASHinputfrom] = ACTIONS(12501), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12501), + [anon_sym_BSLASHincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHlabel] = ACTIONS(12501), + [anon_sym_BSLASHref] = ACTIONS(12501), + [anon_sym_BSLASHvref] = ACTIONS(12501), + [anon_sym_BSLASHVref] = ACTIONS(12501), + [anon_sym_BSLASHautoref] = ACTIONS(12501), + [anon_sym_BSLASHpageref] = ACTIONS(12501), + [anon_sym_BSLASHcref] = ACTIONS(12501), + [anon_sym_BSLASHCref] = ACTIONS(12501), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnameCref] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHlabelcref] = ACTIONS(12501), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12501), + [anon_sym_BSLASHeqref] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange] = ACTIONS(12501), + [anon_sym_BSLASHCrefrange] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewlabel] = ACTIONS(12501), + [anon_sym_BSLASHnewcommand] = ACTIONS(12501), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12501), + [anon_sym_BSLASHgls] = ACTIONS(12501), + [anon_sym_BSLASHGls] = ACTIONS(12501), + [anon_sym_BSLASHGLS] = ACTIONS(12501), + [anon_sym_BSLASHglspl] = ACTIONS(12501), + [anon_sym_BSLASHGlspl] = ACTIONS(12501), + [anon_sym_BSLASHGLSpl] = ACTIONS(12501), + [anon_sym_BSLASHglsdisp] = ACTIONS(12501), + [anon_sym_BSLASHglslink] = ACTIONS(12501), + [anon_sym_BSLASHglstext] = ACTIONS(12501), + [anon_sym_BSLASHGlstext] = ACTIONS(12501), + [anon_sym_BSLASHGLStext] = ACTIONS(12501), + [anon_sym_BSLASHglsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12501), + [anon_sym_BSLASHglsplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSplural] = ACTIONS(12501), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHglsname] = ACTIONS(12501), + [anon_sym_BSLASHGlsname] = ACTIONS(12501), + [anon_sym_BSLASHGLSname] = ACTIONS(12501), + [anon_sym_BSLASHglssymbol] = ACTIONS(12501), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12501), + [anon_sym_BSLASHglsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12501), + [anon_sym_BSLASHglsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12501), + [anon_sym_BSLASHglsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12501), + [anon_sym_BSLASHglsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12501), + [anon_sym_BSLASHglsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12501), + [anon_sym_BSLASHnewacronym] = ACTIONS(12501), + [anon_sym_BSLASHacrshort] = ACTIONS(12501), + [anon_sym_BSLASHAcrshort] = ACTIONS(12501), + [anon_sym_BSLASHACRshort] = ACTIONS(12501), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12501), + [anon_sym_BSLASHacrlong] = ACTIONS(12501), + [anon_sym_BSLASHAcrlong] = ACTIONS(12501), + [anon_sym_BSLASHACRlong] = ACTIONS(12501), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12501), + [anon_sym_BSLASHacrfull] = ACTIONS(12501), + [anon_sym_BSLASHAcrfull] = ACTIONS(12501), + [anon_sym_BSLASHACRfull] = ACTIONS(12501), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12501), + [anon_sym_BSLASHacs] = ACTIONS(12501), + [anon_sym_BSLASHAcs] = ACTIONS(12501), + [anon_sym_BSLASHacsp] = ACTIONS(12501), + [anon_sym_BSLASHAcsp] = ACTIONS(12501), + [anon_sym_BSLASHacl] = ACTIONS(12501), + [anon_sym_BSLASHAcl] = ACTIONS(12501), + [anon_sym_BSLASHaclp] = ACTIONS(12501), + [anon_sym_BSLASHAclp] = ACTIONS(12501), + [anon_sym_BSLASHacf] = ACTIONS(12501), + [anon_sym_BSLASHAcf] = ACTIONS(12501), + [anon_sym_BSLASHacfp] = ACTIONS(12501), + [anon_sym_BSLASHAcfp] = ACTIONS(12501), + [anon_sym_BSLASHac] = ACTIONS(12501), + [anon_sym_BSLASHAc] = ACTIONS(12501), + [anon_sym_BSLASHacp] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12501), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12501), + [anon_sym_BSLASHcolor] = ACTIONS(12501), + [anon_sym_BSLASHcolorbox] = ACTIONS(12501), + [anon_sym_BSLASHtextcolor] = ACTIONS(12501), + [anon_sym_BSLASHpagecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12501), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12501), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12501), + }, + [1702] = { + [sym_generic_command_name] = ACTIONS(12509), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12509), + [anon_sym_BSLASHitem] = ACTIONS(12509), + [anon_sym_LBRACK] = ACTIONS(12507), + [anon_sym_RBRACK] = ACTIONS(12507), + [anon_sym_LBRACE] = ACTIONS(12507), + [anon_sym_RBRACE] = ACTIONS(12507), + [anon_sym_LPAREN] = ACTIONS(12507), + [anon_sym_COMMA] = ACTIONS(12507), + [anon_sym_EQ] = ACTIONS(12507), + [sym_word] = ACTIONS(12507), + [sym_param] = ACTIONS(12507), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12507), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12507), + [anon_sym_DOLLAR] = ACTIONS(12509), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12507), + [anon_sym_BSLASHbegin] = ACTIONS(12509), + [anon_sym_BSLASHcaption] = ACTIONS(12509), + [anon_sym_BSLASHcite] = ACTIONS(12509), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCite] = ACTIONS(12509), + [anon_sym_BSLASHnocite] = ACTIONS(12509), + [anon_sym_BSLASHcitet] = ACTIONS(12509), + [anon_sym_BSLASHcitep] = ACTIONS(12509), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteauthor] = ACTIONS(12509), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12509), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitetitle] = ACTIONS(12509), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteyear] = ACTIONS(12509), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitedate] = ACTIONS(12509), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteurl] = ACTIONS(12509), + [anon_sym_BSLASHfullcite] = ACTIONS(12509), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12509), + [anon_sym_BSLASHcitealt] = ACTIONS(12509), + [anon_sym_BSLASHcitealp] = ACTIONS(12509), + [anon_sym_BSLASHcitetext] = ACTIONS(12509), + [anon_sym_BSLASHparencite] = ACTIONS(12509), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHParencite] = ACTIONS(12509), + [anon_sym_BSLASHfootcite] = ACTIONS(12509), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12509), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12509), + [anon_sym_BSLASHtextcite] = ACTIONS(12509), + [anon_sym_BSLASHTextcite] = ACTIONS(12509), + [anon_sym_BSLASHsmartcite] = ACTIONS(12509), + [anon_sym_BSLASHSmartcite] = ACTIONS(12509), + [anon_sym_BSLASHsupercite] = ACTIONS(12509), + [anon_sym_BSLASHautocite] = ACTIONS(12509), + [anon_sym_BSLASHAutocite] = ACTIONS(12509), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHvolcite] = ACTIONS(12509), + [anon_sym_BSLASHVolcite] = ACTIONS(12509), + [anon_sym_BSLASHpvolcite] = ACTIONS(12509), + [anon_sym_BSLASHPvolcite] = ACTIONS(12509), + [anon_sym_BSLASHfvolcite] = ACTIONS(12509), + [anon_sym_BSLASHftvolcite] = ACTIONS(12509), + [anon_sym_BSLASHsvolcite] = ACTIONS(12509), + [anon_sym_BSLASHSvolcite] = ACTIONS(12509), + [anon_sym_BSLASHtvolcite] = ACTIONS(12509), + [anon_sym_BSLASHTvolcite] = ACTIONS(12509), + [anon_sym_BSLASHavolcite] = ACTIONS(12509), + [anon_sym_BSLASHAvolcite] = ACTIONS(12509), + [anon_sym_BSLASHnotecite] = ACTIONS(12509), + [anon_sym_BSLASHpnotecite] = ACTIONS(12509), + [anon_sym_BSLASHPnotecite] = ACTIONS(12509), + [anon_sym_BSLASHfnotecite] = ACTIONS(12509), + [anon_sym_BSLASHusepackage] = ACTIONS(12509), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12509), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12509), + [anon_sym_BSLASHinclude] = ACTIONS(12509), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12509), + [anon_sym_BSLASHinput] = ACTIONS(12509), + [anon_sym_BSLASHsubfile] = ACTIONS(12509), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12509), + [anon_sym_BSLASHbibliography] = ACTIONS(12509), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12509), + [anon_sym_BSLASHincludesvg] = ACTIONS(12509), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12509), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12509), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12509), + [anon_sym_BSLASHimport] = ACTIONS(12509), + [anon_sym_BSLASHsubimport] = ACTIONS(12509), + [anon_sym_BSLASHinputfrom] = ACTIONS(12509), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12509), + [anon_sym_BSLASHincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHlabel] = ACTIONS(12509), + [anon_sym_BSLASHref] = ACTIONS(12509), + [anon_sym_BSLASHvref] = ACTIONS(12509), + [anon_sym_BSLASHVref] = ACTIONS(12509), + [anon_sym_BSLASHautoref] = ACTIONS(12509), + [anon_sym_BSLASHpageref] = ACTIONS(12509), + [anon_sym_BSLASHcref] = ACTIONS(12509), + [anon_sym_BSLASHCref] = ACTIONS(12509), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnameCref] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHlabelcref] = ACTIONS(12509), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12509), + [anon_sym_BSLASHeqref] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange] = ACTIONS(12509), + [anon_sym_BSLASHCrefrange] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewlabel] = ACTIONS(12509), + [anon_sym_BSLASHnewcommand] = ACTIONS(12509), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12509), + [anon_sym_BSLASHgls] = ACTIONS(12509), + [anon_sym_BSLASHGls] = ACTIONS(12509), + [anon_sym_BSLASHGLS] = ACTIONS(12509), + [anon_sym_BSLASHglspl] = ACTIONS(12509), + [anon_sym_BSLASHGlspl] = ACTIONS(12509), + [anon_sym_BSLASHGLSpl] = ACTIONS(12509), + [anon_sym_BSLASHglsdisp] = ACTIONS(12509), + [anon_sym_BSLASHglslink] = ACTIONS(12509), + [anon_sym_BSLASHglstext] = ACTIONS(12509), + [anon_sym_BSLASHGlstext] = ACTIONS(12509), + [anon_sym_BSLASHGLStext] = ACTIONS(12509), + [anon_sym_BSLASHglsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12509), + [anon_sym_BSLASHglsplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSplural] = ACTIONS(12509), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHglsname] = ACTIONS(12509), + [anon_sym_BSLASHGlsname] = ACTIONS(12509), + [anon_sym_BSLASHGLSname] = ACTIONS(12509), + [anon_sym_BSLASHglssymbol] = ACTIONS(12509), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12509), + [anon_sym_BSLASHglsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12509), + [anon_sym_BSLASHglsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12509), + [anon_sym_BSLASHglsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12509), + [anon_sym_BSLASHglsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12509), + [anon_sym_BSLASHglsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12509), + [anon_sym_BSLASHnewacronym] = ACTIONS(12509), + [anon_sym_BSLASHacrshort] = ACTIONS(12509), + [anon_sym_BSLASHAcrshort] = ACTIONS(12509), + [anon_sym_BSLASHACRshort] = ACTIONS(12509), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12509), + [anon_sym_BSLASHacrlong] = ACTIONS(12509), + [anon_sym_BSLASHAcrlong] = ACTIONS(12509), + [anon_sym_BSLASHACRlong] = ACTIONS(12509), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12509), + [anon_sym_BSLASHacrfull] = ACTIONS(12509), + [anon_sym_BSLASHAcrfull] = ACTIONS(12509), + [anon_sym_BSLASHACRfull] = ACTIONS(12509), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12509), + [anon_sym_BSLASHacs] = ACTIONS(12509), + [anon_sym_BSLASHAcs] = ACTIONS(12509), + [anon_sym_BSLASHacsp] = ACTIONS(12509), + [anon_sym_BSLASHAcsp] = ACTIONS(12509), + [anon_sym_BSLASHacl] = ACTIONS(12509), + [anon_sym_BSLASHAcl] = ACTIONS(12509), + [anon_sym_BSLASHaclp] = ACTIONS(12509), + [anon_sym_BSLASHAclp] = ACTIONS(12509), + [anon_sym_BSLASHacf] = ACTIONS(12509), + [anon_sym_BSLASHAcf] = ACTIONS(12509), + [anon_sym_BSLASHacfp] = ACTIONS(12509), + [anon_sym_BSLASHAcfp] = ACTIONS(12509), + [anon_sym_BSLASHac] = ACTIONS(12509), + [anon_sym_BSLASHAc] = ACTIONS(12509), + [anon_sym_BSLASHacp] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12509), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12509), + [anon_sym_BSLASHcolor] = ACTIONS(12509), + [anon_sym_BSLASHcolorbox] = ACTIONS(12509), + [anon_sym_BSLASHtextcolor] = ACTIONS(12509), + [anon_sym_BSLASHpagecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12509), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12509), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12509), + }, + [1703] = { + [sym_generic_command_name] = ACTIONS(12513), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12513), + [anon_sym_BSLASHitem] = ACTIONS(12513), + [anon_sym_LBRACK] = ACTIONS(12511), + [anon_sym_RBRACK] = ACTIONS(12511), + [anon_sym_LBRACE] = ACTIONS(12787), + [anon_sym_RBRACE] = ACTIONS(12511), + [anon_sym_LPAREN] = ACTIONS(12511), + [anon_sym_COMMA] = ACTIONS(12511), + [anon_sym_EQ] = ACTIONS(12511), + [sym_word] = ACTIONS(12511), + [sym_param] = ACTIONS(12511), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12511), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12511), + [anon_sym_DOLLAR] = ACTIONS(12513), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12511), + [anon_sym_BSLASHbegin] = ACTIONS(12513), + [anon_sym_BSLASHcaption] = ACTIONS(12513), + [anon_sym_BSLASHcite] = ACTIONS(12513), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCite] = ACTIONS(12513), + [anon_sym_BSLASHnocite] = ACTIONS(12513), + [anon_sym_BSLASHcitet] = ACTIONS(12513), + [anon_sym_BSLASHcitep] = ACTIONS(12513), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteauthor] = ACTIONS(12513), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12513), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitetitle] = ACTIONS(12513), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteyear] = ACTIONS(12513), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitedate] = ACTIONS(12513), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteurl] = ACTIONS(12513), + [anon_sym_BSLASHfullcite] = ACTIONS(12513), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12513), + [anon_sym_BSLASHcitealt] = ACTIONS(12513), + [anon_sym_BSLASHcitealp] = ACTIONS(12513), + [anon_sym_BSLASHcitetext] = ACTIONS(12513), + [anon_sym_BSLASHparencite] = ACTIONS(12513), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHParencite] = ACTIONS(12513), + [anon_sym_BSLASHfootcite] = ACTIONS(12513), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12513), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12513), + [anon_sym_BSLASHtextcite] = ACTIONS(12513), + [anon_sym_BSLASHTextcite] = ACTIONS(12513), + [anon_sym_BSLASHsmartcite] = ACTIONS(12513), + [anon_sym_BSLASHSmartcite] = ACTIONS(12513), + [anon_sym_BSLASHsupercite] = ACTIONS(12513), + [anon_sym_BSLASHautocite] = ACTIONS(12513), + [anon_sym_BSLASHAutocite] = ACTIONS(12513), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHvolcite] = ACTIONS(12513), + [anon_sym_BSLASHVolcite] = ACTIONS(12513), + [anon_sym_BSLASHpvolcite] = ACTIONS(12513), + [anon_sym_BSLASHPvolcite] = ACTIONS(12513), + [anon_sym_BSLASHfvolcite] = ACTIONS(12513), + [anon_sym_BSLASHftvolcite] = ACTIONS(12513), + [anon_sym_BSLASHsvolcite] = ACTIONS(12513), + [anon_sym_BSLASHSvolcite] = ACTIONS(12513), + [anon_sym_BSLASHtvolcite] = ACTIONS(12513), + [anon_sym_BSLASHTvolcite] = ACTIONS(12513), + [anon_sym_BSLASHavolcite] = ACTIONS(12513), + [anon_sym_BSLASHAvolcite] = ACTIONS(12513), + [anon_sym_BSLASHnotecite] = ACTIONS(12513), + [anon_sym_BSLASHpnotecite] = ACTIONS(12513), + [anon_sym_BSLASHPnotecite] = ACTIONS(12513), + [anon_sym_BSLASHfnotecite] = ACTIONS(12513), + [anon_sym_BSLASHusepackage] = ACTIONS(12513), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12513), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12513), + [anon_sym_BSLASHinclude] = ACTIONS(12513), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12513), + [anon_sym_BSLASHinput] = ACTIONS(12513), + [anon_sym_BSLASHsubfile] = ACTIONS(12513), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12513), + [anon_sym_BSLASHbibliography] = ACTIONS(12513), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12513), + [anon_sym_BSLASHincludesvg] = ACTIONS(12513), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12513), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12513), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12513), + [anon_sym_BSLASHimport] = ACTIONS(12513), + [anon_sym_BSLASHsubimport] = ACTIONS(12513), + [anon_sym_BSLASHinputfrom] = ACTIONS(12513), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12513), + [anon_sym_BSLASHincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHlabel] = ACTIONS(12513), + [anon_sym_BSLASHref] = ACTIONS(12513), + [anon_sym_BSLASHvref] = ACTIONS(12513), + [anon_sym_BSLASHVref] = ACTIONS(12513), + [anon_sym_BSLASHautoref] = ACTIONS(12513), + [anon_sym_BSLASHpageref] = ACTIONS(12513), + [anon_sym_BSLASHcref] = ACTIONS(12513), + [anon_sym_BSLASHCref] = ACTIONS(12513), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnameCref] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHlabelcref] = ACTIONS(12513), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12513), + [anon_sym_BSLASHeqref] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange] = ACTIONS(12513), + [anon_sym_BSLASHCrefrange] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewlabel] = ACTIONS(12513), + [anon_sym_BSLASHnewcommand] = ACTIONS(12513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12513), + [anon_sym_BSLASHgls] = ACTIONS(12513), + [anon_sym_BSLASHGls] = ACTIONS(12513), + [anon_sym_BSLASHGLS] = ACTIONS(12513), + [anon_sym_BSLASHglspl] = ACTIONS(12513), + [anon_sym_BSLASHGlspl] = ACTIONS(12513), + [anon_sym_BSLASHGLSpl] = ACTIONS(12513), + [anon_sym_BSLASHglsdisp] = ACTIONS(12513), + [anon_sym_BSLASHglslink] = ACTIONS(12513), + [anon_sym_BSLASHglstext] = ACTIONS(12513), + [anon_sym_BSLASHGlstext] = ACTIONS(12513), + [anon_sym_BSLASHGLStext] = ACTIONS(12513), + [anon_sym_BSLASHglsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12513), + [anon_sym_BSLASHglsplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSplural] = ACTIONS(12513), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHglsname] = ACTIONS(12513), + [anon_sym_BSLASHGlsname] = ACTIONS(12513), + [anon_sym_BSLASHGLSname] = ACTIONS(12513), + [anon_sym_BSLASHglssymbol] = ACTIONS(12513), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12513), + [anon_sym_BSLASHglsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12513), + [anon_sym_BSLASHglsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12513), + [anon_sym_BSLASHglsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12513), + [anon_sym_BSLASHglsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12513), + [anon_sym_BSLASHglsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12513), + [anon_sym_BSLASHnewacronym] = ACTIONS(12513), + [anon_sym_BSLASHacrshort] = ACTIONS(12513), + [anon_sym_BSLASHAcrshort] = ACTIONS(12513), + [anon_sym_BSLASHACRshort] = ACTIONS(12513), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12513), + [anon_sym_BSLASHacrlong] = ACTIONS(12513), + [anon_sym_BSLASHAcrlong] = ACTIONS(12513), + [anon_sym_BSLASHACRlong] = ACTIONS(12513), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12513), + [anon_sym_BSLASHacrfull] = ACTIONS(12513), + [anon_sym_BSLASHAcrfull] = ACTIONS(12513), + [anon_sym_BSLASHACRfull] = ACTIONS(12513), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12513), + [anon_sym_BSLASHacs] = ACTIONS(12513), + [anon_sym_BSLASHAcs] = ACTIONS(12513), + [anon_sym_BSLASHacsp] = ACTIONS(12513), + [anon_sym_BSLASHAcsp] = ACTIONS(12513), + [anon_sym_BSLASHacl] = ACTIONS(12513), + [anon_sym_BSLASHAcl] = ACTIONS(12513), + [anon_sym_BSLASHaclp] = ACTIONS(12513), + [anon_sym_BSLASHAclp] = ACTIONS(12513), + [anon_sym_BSLASHacf] = ACTIONS(12513), + [anon_sym_BSLASHAcf] = ACTIONS(12513), + [anon_sym_BSLASHacfp] = ACTIONS(12513), + [anon_sym_BSLASHAcfp] = ACTIONS(12513), + [anon_sym_BSLASHac] = ACTIONS(12513), + [anon_sym_BSLASHAc] = ACTIONS(12513), + [anon_sym_BSLASHacp] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12513), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12513), + [anon_sym_BSLASHcolor] = ACTIONS(12513), + [anon_sym_BSLASHcolorbox] = ACTIONS(12513), + [anon_sym_BSLASHtextcolor] = ACTIONS(12513), + [anon_sym_BSLASHpagecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12513), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12513), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12513), + }, + [1704] = { + [sym_generic_command_name] = ACTIONS(12519), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12519), + [anon_sym_BSLASHitem] = ACTIONS(12519), + [anon_sym_LBRACK] = ACTIONS(12517), + [anon_sym_RBRACK] = ACTIONS(12517), + [anon_sym_LBRACE] = ACTIONS(12517), + [anon_sym_RBRACE] = ACTIONS(12517), + [anon_sym_LPAREN] = ACTIONS(12517), + [anon_sym_COMMA] = ACTIONS(12517), + [anon_sym_EQ] = ACTIONS(12517), + [sym_word] = ACTIONS(12517), + [sym_param] = ACTIONS(12517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12517), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12517), + [anon_sym_DOLLAR] = ACTIONS(12519), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12517), + [anon_sym_BSLASHbegin] = ACTIONS(12519), + [anon_sym_BSLASHcaption] = ACTIONS(12519), + [anon_sym_BSLASHcite] = ACTIONS(12519), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCite] = ACTIONS(12519), + [anon_sym_BSLASHnocite] = ACTIONS(12519), + [anon_sym_BSLASHcitet] = ACTIONS(12519), + [anon_sym_BSLASHcitep] = ACTIONS(12519), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteauthor] = ACTIONS(12519), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12519), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitetitle] = ACTIONS(12519), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteyear] = ACTIONS(12519), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitedate] = ACTIONS(12519), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteurl] = ACTIONS(12519), + [anon_sym_BSLASHfullcite] = ACTIONS(12519), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12519), + [anon_sym_BSLASHcitealt] = ACTIONS(12519), + [anon_sym_BSLASHcitealp] = ACTIONS(12519), + [anon_sym_BSLASHcitetext] = ACTIONS(12519), + [anon_sym_BSLASHparencite] = ACTIONS(12519), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHParencite] = ACTIONS(12519), + [anon_sym_BSLASHfootcite] = ACTIONS(12519), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12519), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12519), + [anon_sym_BSLASHtextcite] = ACTIONS(12519), + [anon_sym_BSLASHTextcite] = ACTIONS(12519), + [anon_sym_BSLASHsmartcite] = ACTIONS(12519), + [anon_sym_BSLASHSmartcite] = ACTIONS(12519), + [anon_sym_BSLASHsupercite] = ACTIONS(12519), + [anon_sym_BSLASHautocite] = ACTIONS(12519), + [anon_sym_BSLASHAutocite] = ACTIONS(12519), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHvolcite] = ACTIONS(12519), + [anon_sym_BSLASHVolcite] = ACTIONS(12519), + [anon_sym_BSLASHpvolcite] = ACTIONS(12519), + [anon_sym_BSLASHPvolcite] = ACTIONS(12519), + [anon_sym_BSLASHfvolcite] = ACTIONS(12519), + [anon_sym_BSLASHftvolcite] = ACTIONS(12519), + [anon_sym_BSLASHsvolcite] = ACTIONS(12519), + [anon_sym_BSLASHSvolcite] = ACTIONS(12519), + [anon_sym_BSLASHtvolcite] = ACTIONS(12519), + [anon_sym_BSLASHTvolcite] = ACTIONS(12519), + [anon_sym_BSLASHavolcite] = ACTIONS(12519), + [anon_sym_BSLASHAvolcite] = ACTIONS(12519), + [anon_sym_BSLASHnotecite] = ACTIONS(12519), + [anon_sym_BSLASHpnotecite] = ACTIONS(12519), + [anon_sym_BSLASHPnotecite] = ACTIONS(12519), + [anon_sym_BSLASHfnotecite] = ACTIONS(12519), + [anon_sym_BSLASHusepackage] = ACTIONS(12519), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12519), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12519), + [anon_sym_BSLASHinclude] = ACTIONS(12519), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12519), + [anon_sym_BSLASHinput] = ACTIONS(12519), + [anon_sym_BSLASHsubfile] = ACTIONS(12519), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12519), + [anon_sym_BSLASHbibliography] = ACTIONS(12519), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12519), + [anon_sym_BSLASHincludesvg] = ACTIONS(12519), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12519), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12519), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12519), + [anon_sym_BSLASHimport] = ACTIONS(12519), + [anon_sym_BSLASHsubimport] = ACTIONS(12519), + [anon_sym_BSLASHinputfrom] = ACTIONS(12519), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12519), + [anon_sym_BSLASHincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHlabel] = ACTIONS(12519), + [anon_sym_BSLASHref] = ACTIONS(12519), + [anon_sym_BSLASHvref] = ACTIONS(12519), + [anon_sym_BSLASHVref] = ACTIONS(12519), + [anon_sym_BSLASHautoref] = ACTIONS(12519), + [anon_sym_BSLASHpageref] = ACTIONS(12519), + [anon_sym_BSLASHcref] = ACTIONS(12519), + [anon_sym_BSLASHCref] = ACTIONS(12519), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnameCref] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHlabelcref] = ACTIONS(12519), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12519), + [anon_sym_BSLASHeqref] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange] = ACTIONS(12519), + [anon_sym_BSLASHCrefrange] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewlabel] = ACTIONS(12519), + [anon_sym_BSLASHnewcommand] = ACTIONS(12519), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12519), + [anon_sym_BSLASHgls] = ACTIONS(12519), + [anon_sym_BSLASHGls] = ACTIONS(12519), + [anon_sym_BSLASHGLS] = ACTIONS(12519), + [anon_sym_BSLASHglspl] = ACTIONS(12519), + [anon_sym_BSLASHGlspl] = ACTIONS(12519), + [anon_sym_BSLASHGLSpl] = ACTIONS(12519), + [anon_sym_BSLASHglsdisp] = ACTIONS(12519), + [anon_sym_BSLASHglslink] = ACTIONS(12519), + [anon_sym_BSLASHglstext] = ACTIONS(12519), + [anon_sym_BSLASHGlstext] = ACTIONS(12519), + [anon_sym_BSLASHGLStext] = ACTIONS(12519), + [anon_sym_BSLASHglsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12519), + [anon_sym_BSLASHglsplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSplural] = ACTIONS(12519), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHglsname] = ACTIONS(12519), + [anon_sym_BSLASHGlsname] = ACTIONS(12519), + [anon_sym_BSLASHGLSname] = ACTIONS(12519), + [anon_sym_BSLASHglssymbol] = ACTIONS(12519), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12519), + [anon_sym_BSLASHglsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12519), + [anon_sym_BSLASHglsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12519), + [anon_sym_BSLASHglsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12519), + [anon_sym_BSLASHglsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12519), + [anon_sym_BSLASHglsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12519), + [anon_sym_BSLASHnewacronym] = ACTIONS(12519), + [anon_sym_BSLASHacrshort] = ACTIONS(12519), + [anon_sym_BSLASHAcrshort] = ACTIONS(12519), + [anon_sym_BSLASHACRshort] = ACTIONS(12519), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12519), + [anon_sym_BSLASHacrlong] = ACTIONS(12519), + [anon_sym_BSLASHAcrlong] = ACTIONS(12519), + [anon_sym_BSLASHACRlong] = ACTIONS(12519), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12519), + [anon_sym_BSLASHacrfull] = ACTIONS(12519), + [anon_sym_BSLASHAcrfull] = ACTIONS(12519), + [anon_sym_BSLASHACRfull] = ACTIONS(12519), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12519), + [anon_sym_BSLASHacs] = ACTIONS(12519), + [anon_sym_BSLASHAcs] = ACTIONS(12519), + [anon_sym_BSLASHacsp] = ACTIONS(12519), + [anon_sym_BSLASHAcsp] = ACTIONS(12519), + [anon_sym_BSLASHacl] = ACTIONS(12519), + [anon_sym_BSLASHAcl] = ACTIONS(12519), + [anon_sym_BSLASHaclp] = ACTIONS(12519), + [anon_sym_BSLASHAclp] = ACTIONS(12519), + [anon_sym_BSLASHacf] = ACTIONS(12519), + [anon_sym_BSLASHAcf] = ACTIONS(12519), + [anon_sym_BSLASHacfp] = ACTIONS(12519), + [anon_sym_BSLASHAcfp] = ACTIONS(12519), + [anon_sym_BSLASHac] = ACTIONS(12519), + [anon_sym_BSLASHAc] = ACTIONS(12519), + [anon_sym_BSLASHacp] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12519), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12519), + [anon_sym_BSLASHcolor] = ACTIONS(12519), + [anon_sym_BSLASHcolorbox] = ACTIONS(12519), + [anon_sym_BSLASHtextcolor] = ACTIONS(12519), + [anon_sym_BSLASHpagecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12519), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12519), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12519), + }, + [1705] = { + [sym_generic_command_name] = ACTIONS(12523), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12523), + [anon_sym_BSLASHitem] = ACTIONS(12523), + [anon_sym_LBRACK] = ACTIONS(12521), + [anon_sym_RBRACK] = ACTIONS(12521), + [anon_sym_LBRACE] = ACTIONS(12521), + [anon_sym_RBRACE] = ACTIONS(12521), + [anon_sym_LPAREN] = ACTIONS(12521), + [anon_sym_COMMA] = ACTIONS(12521), + [anon_sym_EQ] = ACTIONS(12521), + [sym_word] = ACTIONS(12521), + [sym_param] = ACTIONS(12521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12521), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12521), + [anon_sym_DOLLAR] = ACTIONS(12523), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12521), + [anon_sym_BSLASHbegin] = ACTIONS(12523), + [anon_sym_BSLASHcaption] = ACTIONS(12523), + [anon_sym_BSLASHcite] = ACTIONS(12523), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCite] = ACTIONS(12523), + [anon_sym_BSLASHnocite] = ACTIONS(12523), + [anon_sym_BSLASHcitet] = ACTIONS(12523), + [anon_sym_BSLASHcitep] = ACTIONS(12523), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteauthor] = ACTIONS(12523), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12523), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitetitle] = ACTIONS(12523), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteyear] = ACTIONS(12523), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitedate] = ACTIONS(12523), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteurl] = ACTIONS(12523), + [anon_sym_BSLASHfullcite] = ACTIONS(12523), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12523), + [anon_sym_BSLASHcitealt] = ACTIONS(12523), + [anon_sym_BSLASHcitealp] = ACTIONS(12523), + [anon_sym_BSLASHcitetext] = ACTIONS(12523), + [anon_sym_BSLASHparencite] = ACTIONS(12523), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHParencite] = ACTIONS(12523), + [anon_sym_BSLASHfootcite] = ACTIONS(12523), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12523), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12523), + [anon_sym_BSLASHtextcite] = ACTIONS(12523), + [anon_sym_BSLASHTextcite] = ACTIONS(12523), + [anon_sym_BSLASHsmartcite] = ACTIONS(12523), + [anon_sym_BSLASHSmartcite] = ACTIONS(12523), + [anon_sym_BSLASHsupercite] = ACTIONS(12523), + [anon_sym_BSLASHautocite] = ACTIONS(12523), + [anon_sym_BSLASHAutocite] = ACTIONS(12523), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHvolcite] = ACTIONS(12523), + [anon_sym_BSLASHVolcite] = ACTIONS(12523), + [anon_sym_BSLASHpvolcite] = ACTIONS(12523), + [anon_sym_BSLASHPvolcite] = ACTIONS(12523), + [anon_sym_BSLASHfvolcite] = ACTIONS(12523), + [anon_sym_BSLASHftvolcite] = ACTIONS(12523), + [anon_sym_BSLASHsvolcite] = ACTIONS(12523), + [anon_sym_BSLASHSvolcite] = ACTIONS(12523), + [anon_sym_BSLASHtvolcite] = ACTIONS(12523), + [anon_sym_BSLASHTvolcite] = ACTIONS(12523), + [anon_sym_BSLASHavolcite] = ACTIONS(12523), + [anon_sym_BSLASHAvolcite] = ACTIONS(12523), + [anon_sym_BSLASHnotecite] = ACTIONS(12523), + [anon_sym_BSLASHpnotecite] = ACTIONS(12523), + [anon_sym_BSLASHPnotecite] = ACTIONS(12523), + [anon_sym_BSLASHfnotecite] = ACTIONS(12523), + [anon_sym_BSLASHusepackage] = ACTIONS(12523), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12523), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12523), + [anon_sym_BSLASHinclude] = ACTIONS(12523), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12523), + [anon_sym_BSLASHinput] = ACTIONS(12523), + [anon_sym_BSLASHsubfile] = ACTIONS(12523), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12523), + [anon_sym_BSLASHbibliography] = ACTIONS(12523), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12523), + [anon_sym_BSLASHincludesvg] = ACTIONS(12523), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12523), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12523), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12523), + [anon_sym_BSLASHimport] = ACTIONS(12523), + [anon_sym_BSLASHsubimport] = ACTIONS(12523), + [anon_sym_BSLASHinputfrom] = ACTIONS(12523), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12523), + [anon_sym_BSLASHincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHlabel] = ACTIONS(12523), + [anon_sym_BSLASHref] = ACTIONS(12523), + [anon_sym_BSLASHvref] = ACTIONS(12523), + [anon_sym_BSLASHVref] = ACTIONS(12523), + [anon_sym_BSLASHautoref] = ACTIONS(12523), + [anon_sym_BSLASHpageref] = ACTIONS(12523), + [anon_sym_BSLASHcref] = ACTIONS(12523), + [anon_sym_BSLASHCref] = ACTIONS(12523), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnameCref] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHlabelcref] = ACTIONS(12523), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12523), + [anon_sym_BSLASHeqref] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange] = ACTIONS(12523), + [anon_sym_BSLASHCrefrange] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewlabel] = ACTIONS(12523), + [anon_sym_BSLASHnewcommand] = ACTIONS(12523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12523), + [anon_sym_BSLASHgls] = ACTIONS(12523), + [anon_sym_BSLASHGls] = ACTIONS(12523), + [anon_sym_BSLASHGLS] = ACTIONS(12523), + [anon_sym_BSLASHglspl] = ACTIONS(12523), + [anon_sym_BSLASHGlspl] = ACTIONS(12523), + [anon_sym_BSLASHGLSpl] = ACTIONS(12523), + [anon_sym_BSLASHglsdisp] = ACTIONS(12523), + [anon_sym_BSLASHglslink] = ACTIONS(12523), + [anon_sym_BSLASHglstext] = ACTIONS(12523), + [anon_sym_BSLASHGlstext] = ACTIONS(12523), + [anon_sym_BSLASHGLStext] = ACTIONS(12523), + [anon_sym_BSLASHglsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12523), + [anon_sym_BSLASHglsplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSplural] = ACTIONS(12523), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHglsname] = ACTIONS(12523), + [anon_sym_BSLASHGlsname] = ACTIONS(12523), + [anon_sym_BSLASHGLSname] = ACTIONS(12523), + [anon_sym_BSLASHglssymbol] = ACTIONS(12523), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12523), + [anon_sym_BSLASHglsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12523), + [anon_sym_BSLASHglsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12523), + [anon_sym_BSLASHglsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12523), + [anon_sym_BSLASHglsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12523), + [anon_sym_BSLASHglsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12523), + [anon_sym_BSLASHnewacronym] = ACTIONS(12523), + [anon_sym_BSLASHacrshort] = ACTIONS(12523), + [anon_sym_BSLASHAcrshort] = ACTIONS(12523), + [anon_sym_BSLASHACRshort] = ACTIONS(12523), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12523), + [anon_sym_BSLASHacrlong] = ACTIONS(12523), + [anon_sym_BSLASHAcrlong] = ACTIONS(12523), + [anon_sym_BSLASHACRlong] = ACTIONS(12523), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12523), + [anon_sym_BSLASHacrfull] = ACTIONS(12523), + [anon_sym_BSLASHAcrfull] = ACTIONS(12523), + [anon_sym_BSLASHACRfull] = ACTIONS(12523), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12523), + [anon_sym_BSLASHacs] = ACTIONS(12523), + [anon_sym_BSLASHAcs] = ACTIONS(12523), + [anon_sym_BSLASHacsp] = ACTIONS(12523), + [anon_sym_BSLASHAcsp] = ACTIONS(12523), + [anon_sym_BSLASHacl] = ACTIONS(12523), + [anon_sym_BSLASHAcl] = ACTIONS(12523), + [anon_sym_BSLASHaclp] = ACTIONS(12523), + [anon_sym_BSLASHAclp] = ACTIONS(12523), + [anon_sym_BSLASHacf] = ACTIONS(12523), + [anon_sym_BSLASHAcf] = ACTIONS(12523), + [anon_sym_BSLASHacfp] = ACTIONS(12523), + [anon_sym_BSLASHAcfp] = ACTIONS(12523), + [anon_sym_BSLASHac] = ACTIONS(12523), + [anon_sym_BSLASHAc] = ACTIONS(12523), + [anon_sym_BSLASHacp] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12523), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12523), + [anon_sym_BSLASHcolor] = ACTIONS(12523), + [anon_sym_BSLASHcolorbox] = ACTIONS(12523), + [anon_sym_BSLASHtextcolor] = ACTIONS(12523), + [anon_sym_BSLASHpagecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12523), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12523), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12523), + }, + [1706] = { + [sym_generic_command_name] = ACTIONS(12527), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12527), + [anon_sym_BSLASHitem] = ACTIONS(12527), + [anon_sym_LBRACK] = ACTIONS(12525), + [anon_sym_RBRACK] = ACTIONS(12525), + [anon_sym_LBRACE] = ACTIONS(12525), + [anon_sym_RBRACE] = ACTIONS(12525), + [anon_sym_LPAREN] = ACTIONS(12525), + [anon_sym_COMMA] = ACTIONS(12525), + [anon_sym_EQ] = ACTIONS(12525), + [sym_word] = ACTIONS(12525), + [sym_param] = ACTIONS(12525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12525), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12525), + [anon_sym_DOLLAR] = ACTIONS(12527), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12525), + [anon_sym_BSLASHbegin] = ACTIONS(12527), + [anon_sym_BSLASHcaption] = ACTIONS(12527), + [anon_sym_BSLASHcite] = ACTIONS(12527), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCite] = ACTIONS(12527), + [anon_sym_BSLASHnocite] = ACTIONS(12527), + [anon_sym_BSLASHcitet] = ACTIONS(12527), + [anon_sym_BSLASHcitep] = ACTIONS(12527), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteauthor] = ACTIONS(12527), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12527), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitetitle] = ACTIONS(12527), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteyear] = ACTIONS(12527), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitedate] = ACTIONS(12527), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteurl] = ACTIONS(12527), + [anon_sym_BSLASHfullcite] = ACTIONS(12527), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12527), + [anon_sym_BSLASHcitealt] = ACTIONS(12527), + [anon_sym_BSLASHcitealp] = ACTIONS(12527), + [anon_sym_BSLASHcitetext] = ACTIONS(12527), + [anon_sym_BSLASHparencite] = ACTIONS(12527), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHParencite] = ACTIONS(12527), + [anon_sym_BSLASHfootcite] = ACTIONS(12527), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12527), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12527), + [anon_sym_BSLASHtextcite] = ACTIONS(12527), + [anon_sym_BSLASHTextcite] = ACTIONS(12527), + [anon_sym_BSLASHsmartcite] = ACTIONS(12527), + [anon_sym_BSLASHSmartcite] = ACTIONS(12527), + [anon_sym_BSLASHsupercite] = ACTIONS(12527), + [anon_sym_BSLASHautocite] = ACTIONS(12527), + [anon_sym_BSLASHAutocite] = ACTIONS(12527), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHvolcite] = ACTIONS(12527), + [anon_sym_BSLASHVolcite] = ACTIONS(12527), + [anon_sym_BSLASHpvolcite] = ACTIONS(12527), + [anon_sym_BSLASHPvolcite] = ACTIONS(12527), + [anon_sym_BSLASHfvolcite] = ACTIONS(12527), + [anon_sym_BSLASHftvolcite] = ACTIONS(12527), + [anon_sym_BSLASHsvolcite] = ACTIONS(12527), + [anon_sym_BSLASHSvolcite] = ACTIONS(12527), + [anon_sym_BSLASHtvolcite] = ACTIONS(12527), + [anon_sym_BSLASHTvolcite] = ACTIONS(12527), + [anon_sym_BSLASHavolcite] = ACTIONS(12527), + [anon_sym_BSLASHAvolcite] = ACTIONS(12527), + [anon_sym_BSLASHnotecite] = ACTIONS(12527), + [anon_sym_BSLASHpnotecite] = ACTIONS(12527), + [anon_sym_BSLASHPnotecite] = ACTIONS(12527), + [anon_sym_BSLASHfnotecite] = ACTIONS(12527), + [anon_sym_BSLASHusepackage] = ACTIONS(12527), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12527), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12527), + [anon_sym_BSLASHinclude] = ACTIONS(12527), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12527), + [anon_sym_BSLASHinput] = ACTIONS(12527), + [anon_sym_BSLASHsubfile] = ACTIONS(12527), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12527), + [anon_sym_BSLASHbibliography] = ACTIONS(12527), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12527), + [anon_sym_BSLASHincludesvg] = ACTIONS(12527), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12527), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12527), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12527), + [anon_sym_BSLASHimport] = ACTIONS(12527), + [anon_sym_BSLASHsubimport] = ACTIONS(12527), + [anon_sym_BSLASHinputfrom] = ACTIONS(12527), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12527), + [anon_sym_BSLASHincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHlabel] = ACTIONS(12527), + [anon_sym_BSLASHref] = ACTIONS(12527), + [anon_sym_BSLASHvref] = ACTIONS(12527), + [anon_sym_BSLASHVref] = ACTIONS(12527), + [anon_sym_BSLASHautoref] = ACTIONS(12527), + [anon_sym_BSLASHpageref] = ACTIONS(12527), + [anon_sym_BSLASHcref] = ACTIONS(12527), + [anon_sym_BSLASHCref] = ACTIONS(12527), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnameCref] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHlabelcref] = ACTIONS(12527), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12527), + [anon_sym_BSLASHeqref] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange] = ACTIONS(12527), + [anon_sym_BSLASHCrefrange] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewlabel] = ACTIONS(12527), + [anon_sym_BSLASHnewcommand] = ACTIONS(12527), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12527), + [anon_sym_BSLASHgls] = ACTIONS(12527), + [anon_sym_BSLASHGls] = ACTIONS(12527), + [anon_sym_BSLASHGLS] = ACTIONS(12527), + [anon_sym_BSLASHglspl] = ACTIONS(12527), + [anon_sym_BSLASHGlspl] = ACTIONS(12527), + [anon_sym_BSLASHGLSpl] = ACTIONS(12527), + [anon_sym_BSLASHglsdisp] = ACTIONS(12527), + [anon_sym_BSLASHglslink] = ACTIONS(12527), + [anon_sym_BSLASHglstext] = ACTIONS(12527), + [anon_sym_BSLASHGlstext] = ACTIONS(12527), + [anon_sym_BSLASHGLStext] = ACTIONS(12527), + [anon_sym_BSLASHglsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12527), + [anon_sym_BSLASHglsplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSplural] = ACTIONS(12527), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHglsname] = ACTIONS(12527), + [anon_sym_BSLASHGlsname] = ACTIONS(12527), + [anon_sym_BSLASHGLSname] = ACTIONS(12527), + [anon_sym_BSLASHglssymbol] = ACTIONS(12527), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12527), + [anon_sym_BSLASHglsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12527), + [anon_sym_BSLASHglsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12527), + [anon_sym_BSLASHglsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12527), + [anon_sym_BSLASHglsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12527), + [anon_sym_BSLASHglsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12527), + [anon_sym_BSLASHnewacronym] = ACTIONS(12527), + [anon_sym_BSLASHacrshort] = ACTIONS(12527), + [anon_sym_BSLASHAcrshort] = ACTIONS(12527), + [anon_sym_BSLASHACRshort] = ACTIONS(12527), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12527), + [anon_sym_BSLASHacrlong] = ACTIONS(12527), + [anon_sym_BSLASHAcrlong] = ACTIONS(12527), + [anon_sym_BSLASHACRlong] = ACTIONS(12527), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12527), + [anon_sym_BSLASHacrfull] = ACTIONS(12527), + [anon_sym_BSLASHAcrfull] = ACTIONS(12527), + [anon_sym_BSLASHACRfull] = ACTIONS(12527), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12527), + [anon_sym_BSLASHacs] = ACTIONS(12527), + [anon_sym_BSLASHAcs] = ACTIONS(12527), + [anon_sym_BSLASHacsp] = ACTIONS(12527), + [anon_sym_BSLASHAcsp] = ACTIONS(12527), + [anon_sym_BSLASHacl] = ACTIONS(12527), + [anon_sym_BSLASHAcl] = ACTIONS(12527), + [anon_sym_BSLASHaclp] = ACTIONS(12527), + [anon_sym_BSLASHAclp] = ACTIONS(12527), + [anon_sym_BSLASHacf] = ACTIONS(12527), + [anon_sym_BSLASHAcf] = ACTIONS(12527), + [anon_sym_BSLASHacfp] = ACTIONS(12527), + [anon_sym_BSLASHAcfp] = ACTIONS(12527), + [anon_sym_BSLASHac] = ACTIONS(12527), + [anon_sym_BSLASHAc] = ACTIONS(12527), + [anon_sym_BSLASHacp] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12527), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12527), + [anon_sym_BSLASHcolor] = ACTIONS(12527), + [anon_sym_BSLASHcolorbox] = ACTIONS(12527), + [anon_sym_BSLASHtextcolor] = ACTIONS(12527), + [anon_sym_BSLASHpagecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12527), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12527), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12527), + }, + [1707] = { + [sym_generic_command_name] = ACTIONS(12531), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12531), + [anon_sym_BSLASHitem] = ACTIONS(12531), + [anon_sym_LBRACK] = ACTIONS(12529), + [anon_sym_RBRACK] = ACTIONS(12529), + [anon_sym_LBRACE] = ACTIONS(12529), + [anon_sym_RBRACE] = ACTIONS(12529), + [anon_sym_LPAREN] = ACTIONS(12529), + [anon_sym_COMMA] = ACTIONS(12529), + [anon_sym_EQ] = ACTIONS(12529), + [sym_word] = ACTIONS(12529), + [sym_param] = ACTIONS(12529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12529), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12529), + [anon_sym_DOLLAR] = ACTIONS(12531), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12529), + [anon_sym_BSLASHbegin] = ACTIONS(12531), + [anon_sym_BSLASHcaption] = ACTIONS(12531), + [anon_sym_BSLASHcite] = ACTIONS(12531), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCite] = ACTIONS(12531), + [anon_sym_BSLASHnocite] = ACTIONS(12531), + [anon_sym_BSLASHcitet] = ACTIONS(12531), + [anon_sym_BSLASHcitep] = ACTIONS(12531), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteauthor] = ACTIONS(12531), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12531), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitetitle] = ACTIONS(12531), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteyear] = ACTIONS(12531), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitedate] = ACTIONS(12531), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteurl] = ACTIONS(12531), + [anon_sym_BSLASHfullcite] = ACTIONS(12531), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12531), + [anon_sym_BSLASHcitealt] = ACTIONS(12531), + [anon_sym_BSLASHcitealp] = ACTIONS(12531), + [anon_sym_BSLASHcitetext] = ACTIONS(12531), + [anon_sym_BSLASHparencite] = ACTIONS(12531), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHParencite] = ACTIONS(12531), + [anon_sym_BSLASHfootcite] = ACTIONS(12531), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12531), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12531), + [anon_sym_BSLASHtextcite] = ACTIONS(12531), + [anon_sym_BSLASHTextcite] = ACTIONS(12531), + [anon_sym_BSLASHsmartcite] = ACTIONS(12531), + [anon_sym_BSLASHSmartcite] = ACTIONS(12531), + [anon_sym_BSLASHsupercite] = ACTIONS(12531), + [anon_sym_BSLASHautocite] = ACTIONS(12531), + [anon_sym_BSLASHAutocite] = ACTIONS(12531), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHvolcite] = ACTIONS(12531), + [anon_sym_BSLASHVolcite] = ACTIONS(12531), + [anon_sym_BSLASHpvolcite] = ACTIONS(12531), + [anon_sym_BSLASHPvolcite] = ACTIONS(12531), + [anon_sym_BSLASHfvolcite] = ACTIONS(12531), + [anon_sym_BSLASHftvolcite] = ACTIONS(12531), + [anon_sym_BSLASHsvolcite] = ACTIONS(12531), + [anon_sym_BSLASHSvolcite] = ACTIONS(12531), + [anon_sym_BSLASHtvolcite] = ACTIONS(12531), + [anon_sym_BSLASHTvolcite] = ACTIONS(12531), + [anon_sym_BSLASHavolcite] = ACTIONS(12531), + [anon_sym_BSLASHAvolcite] = ACTIONS(12531), + [anon_sym_BSLASHnotecite] = ACTIONS(12531), + [anon_sym_BSLASHpnotecite] = ACTIONS(12531), + [anon_sym_BSLASHPnotecite] = ACTIONS(12531), + [anon_sym_BSLASHfnotecite] = ACTIONS(12531), + [anon_sym_BSLASHusepackage] = ACTIONS(12531), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12531), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12531), + [anon_sym_BSLASHinclude] = ACTIONS(12531), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12531), + [anon_sym_BSLASHinput] = ACTIONS(12531), + [anon_sym_BSLASHsubfile] = ACTIONS(12531), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12531), + [anon_sym_BSLASHbibliography] = ACTIONS(12531), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12531), + [anon_sym_BSLASHincludesvg] = ACTIONS(12531), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12531), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12531), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12531), + [anon_sym_BSLASHimport] = ACTIONS(12531), + [anon_sym_BSLASHsubimport] = ACTIONS(12531), + [anon_sym_BSLASHinputfrom] = ACTIONS(12531), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12531), + [anon_sym_BSLASHincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHlabel] = ACTIONS(12531), + [anon_sym_BSLASHref] = ACTIONS(12531), + [anon_sym_BSLASHvref] = ACTIONS(12531), + [anon_sym_BSLASHVref] = ACTIONS(12531), + [anon_sym_BSLASHautoref] = ACTIONS(12531), + [anon_sym_BSLASHpageref] = ACTIONS(12531), + [anon_sym_BSLASHcref] = ACTIONS(12531), + [anon_sym_BSLASHCref] = ACTIONS(12531), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnameCref] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHlabelcref] = ACTIONS(12531), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12531), + [anon_sym_BSLASHeqref] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange] = ACTIONS(12531), + [anon_sym_BSLASHCrefrange] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewlabel] = ACTIONS(12531), + [anon_sym_BSLASHnewcommand] = ACTIONS(12531), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12531), + [anon_sym_BSLASHgls] = ACTIONS(12531), + [anon_sym_BSLASHGls] = ACTIONS(12531), + [anon_sym_BSLASHGLS] = ACTIONS(12531), + [anon_sym_BSLASHglspl] = ACTIONS(12531), + [anon_sym_BSLASHGlspl] = ACTIONS(12531), + [anon_sym_BSLASHGLSpl] = ACTIONS(12531), + [anon_sym_BSLASHglsdisp] = ACTIONS(12531), + [anon_sym_BSLASHglslink] = ACTIONS(12531), + [anon_sym_BSLASHglstext] = ACTIONS(12531), + [anon_sym_BSLASHGlstext] = ACTIONS(12531), + [anon_sym_BSLASHGLStext] = ACTIONS(12531), + [anon_sym_BSLASHglsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12531), + [anon_sym_BSLASHglsplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSplural] = ACTIONS(12531), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHglsname] = ACTIONS(12531), + [anon_sym_BSLASHGlsname] = ACTIONS(12531), + [anon_sym_BSLASHGLSname] = ACTIONS(12531), + [anon_sym_BSLASHglssymbol] = ACTIONS(12531), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12531), + [anon_sym_BSLASHglsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12531), + [anon_sym_BSLASHglsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12531), + [anon_sym_BSLASHglsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12531), + [anon_sym_BSLASHglsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12531), + [anon_sym_BSLASHglsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12531), + [anon_sym_BSLASHnewacronym] = ACTIONS(12531), + [anon_sym_BSLASHacrshort] = ACTIONS(12531), + [anon_sym_BSLASHAcrshort] = ACTIONS(12531), + [anon_sym_BSLASHACRshort] = ACTIONS(12531), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12531), + [anon_sym_BSLASHacrlong] = ACTIONS(12531), + [anon_sym_BSLASHAcrlong] = ACTIONS(12531), + [anon_sym_BSLASHACRlong] = ACTIONS(12531), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12531), + [anon_sym_BSLASHacrfull] = ACTIONS(12531), + [anon_sym_BSLASHAcrfull] = ACTIONS(12531), + [anon_sym_BSLASHACRfull] = ACTIONS(12531), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12531), + [anon_sym_BSLASHacs] = ACTIONS(12531), + [anon_sym_BSLASHAcs] = ACTIONS(12531), + [anon_sym_BSLASHacsp] = ACTIONS(12531), + [anon_sym_BSLASHAcsp] = ACTIONS(12531), + [anon_sym_BSLASHacl] = ACTIONS(12531), + [anon_sym_BSLASHAcl] = ACTIONS(12531), + [anon_sym_BSLASHaclp] = ACTIONS(12531), + [anon_sym_BSLASHAclp] = ACTIONS(12531), + [anon_sym_BSLASHacf] = ACTIONS(12531), + [anon_sym_BSLASHAcf] = ACTIONS(12531), + [anon_sym_BSLASHacfp] = ACTIONS(12531), + [anon_sym_BSLASHAcfp] = ACTIONS(12531), + [anon_sym_BSLASHac] = ACTIONS(12531), + [anon_sym_BSLASHAc] = ACTIONS(12531), + [anon_sym_BSLASHacp] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12531), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12531), + [anon_sym_BSLASHcolor] = ACTIONS(12531), + [anon_sym_BSLASHcolorbox] = ACTIONS(12531), + [anon_sym_BSLASHtextcolor] = ACTIONS(12531), + [anon_sym_BSLASHpagecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12531), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12531), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12531), + }, + [1708] = { + [sym_generic_command_name] = ACTIONS(12539), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12539), + [anon_sym_BSLASHitem] = ACTIONS(12539), + [anon_sym_LBRACK] = ACTIONS(12537), + [anon_sym_RBRACK] = ACTIONS(12537), + [anon_sym_LBRACE] = ACTIONS(12537), + [anon_sym_RBRACE] = ACTIONS(12537), + [anon_sym_LPAREN] = ACTIONS(12537), + [anon_sym_COMMA] = ACTIONS(12537), + [anon_sym_EQ] = ACTIONS(12537), + [sym_word] = ACTIONS(12537), + [sym_param] = ACTIONS(12537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12537), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12537), + [anon_sym_DOLLAR] = ACTIONS(12539), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12537), + [anon_sym_BSLASHbegin] = ACTIONS(12539), + [anon_sym_BSLASHcaption] = ACTIONS(12539), + [anon_sym_BSLASHcite] = ACTIONS(12539), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCite] = ACTIONS(12539), + [anon_sym_BSLASHnocite] = ACTIONS(12539), + [anon_sym_BSLASHcitet] = ACTIONS(12539), + [anon_sym_BSLASHcitep] = ACTIONS(12539), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteauthor] = ACTIONS(12539), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12539), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitetitle] = ACTIONS(12539), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteyear] = ACTIONS(12539), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitedate] = ACTIONS(12539), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteurl] = ACTIONS(12539), + [anon_sym_BSLASHfullcite] = ACTIONS(12539), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12539), + [anon_sym_BSLASHcitealt] = ACTIONS(12539), + [anon_sym_BSLASHcitealp] = ACTIONS(12539), + [anon_sym_BSLASHcitetext] = ACTIONS(12539), + [anon_sym_BSLASHparencite] = ACTIONS(12539), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHParencite] = ACTIONS(12539), + [anon_sym_BSLASHfootcite] = ACTIONS(12539), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12539), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12539), + [anon_sym_BSLASHtextcite] = ACTIONS(12539), + [anon_sym_BSLASHTextcite] = ACTIONS(12539), + [anon_sym_BSLASHsmartcite] = ACTIONS(12539), + [anon_sym_BSLASHSmartcite] = ACTIONS(12539), + [anon_sym_BSLASHsupercite] = ACTIONS(12539), + [anon_sym_BSLASHautocite] = ACTIONS(12539), + [anon_sym_BSLASHAutocite] = ACTIONS(12539), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHvolcite] = ACTIONS(12539), + [anon_sym_BSLASHVolcite] = ACTIONS(12539), + [anon_sym_BSLASHpvolcite] = ACTIONS(12539), + [anon_sym_BSLASHPvolcite] = ACTIONS(12539), + [anon_sym_BSLASHfvolcite] = ACTIONS(12539), + [anon_sym_BSLASHftvolcite] = ACTIONS(12539), + [anon_sym_BSLASHsvolcite] = ACTIONS(12539), + [anon_sym_BSLASHSvolcite] = ACTIONS(12539), + [anon_sym_BSLASHtvolcite] = ACTIONS(12539), + [anon_sym_BSLASHTvolcite] = ACTIONS(12539), + [anon_sym_BSLASHavolcite] = ACTIONS(12539), + [anon_sym_BSLASHAvolcite] = ACTIONS(12539), + [anon_sym_BSLASHnotecite] = ACTIONS(12539), + [anon_sym_BSLASHpnotecite] = ACTIONS(12539), + [anon_sym_BSLASHPnotecite] = ACTIONS(12539), + [anon_sym_BSLASHfnotecite] = ACTIONS(12539), + [anon_sym_BSLASHusepackage] = ACTIONS(12539), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12539), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12539), + [anon_sym_BSLASHinclude] = ACTIONS(12539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12539), + [anon_sym_BSLASHinput] = ACTIONS(12539), + [anon_sym_BSLASHsubfile] = ACTIONS(12539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12539), + [anon_sym_BSLASHbibliography] = ACTIONS(12539), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12539), + [anon_sym_BSLASHincludesvg] = ACTIONS(12539), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12539), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12539), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12539), + [anon_sym_BSLASHimport] = ACTIONS(12539), + [anon_sym_BSLASHsubimport] = ACTIONS(12539), + [anon_sym_BSLASHinputfrom] = ACTIONS(12539), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12539), + [anon_sym_BSLASHincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHlabel] = ACTIONS(12539), + [anon_sym_BSLASHref] = ACTIONS(12539), + [anon_sym_BSLASHvref] = ACTIONS(12539), + [anon_sym_BSLASHVref] = ACTIONS(12539), + [anon_sym_BSLASHautoref] = ACTIONS(12539), + [anon_sym_BSLASHpageref] = ACTIONS(12539), + [anon_sym_BSLASHcref] = ACTIONS(12539), + [anon_sym_BSLASHCref] = ACTIONS(12539), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnameCref] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHlabelcref] = ACTIONS(12539), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12539), + [anon_sym_BSLASHeqref] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange] = ACTIONS(12539), + [anon_sym_BSLASHCrefrange] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewlabel] = ACTIONS(12539), + [anon_sym_BSLASHnewcommand] = ACTIONS(12539), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12539), + [anon_sym_BSLASHgls] = ACTIONS(12539), + [anon_sym_BSLASHGls] = ACTIONS(12539), + [anon_sym_BSLASHGLS] = ACTIONS(12539), + [anon_sym_BSLASHglspl] = ACTIONS(12539), + [anon_sym_BSLASHGlspl] = ACTIONS(12539), + [anon_sym_BSLASHGLSpl] = ACTIONS(12539), + [anon_sym_BSLASHglsdisp] = ACTIONS(12539), + [anon_sym_BSLASHglslink] = ACTIONS(12539), + [anon_sym_BSLASHglstext] = ACTIONS(12539), + [anon_sym_BSLASHGlstext] = ACTIONS(12539), + [anon_sym_BSLASHGLStext] = ACTIONS(12539), + [anon_sym_BSLASHglsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12539), + [anon_sym_BSLASHglsplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSplural] = ACTIONS(12539), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHglsname] = ACTIONS(12539), + [anon_sym_BSLASHGlsname] = ACTIONS(12539), + [anon_sym_BSLASHGLSname] = ACTIONS(12539), + [anon_sym_BSLASHglssymbol] = ACTIONS(12539), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12539), + [anon_sym_BSLASHglsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12539), + [anon_sym_BSLASHglsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12539), + [anon_sym_BSLASHglsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12539), + [anon_sym_BSLASHglsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12539), + [anon_sym_BSLASHglsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12539), + [anon_sym_BSLASHnewacronym] = ACTIONS(12539), + [anon_sym_BSLASHacrshort] = ACTIONS(12539), + [anon_sym_BSLASHAcrshort] = ACTIONS(12539), + [anon_sym_BSLASHACRshort] = ACTIONS(12539), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12539), + [anon_sym_BSLASHacrlong] = ACTIONS(12539), + [anon_sym_BSLASHAcrlong] = ACTIONS(12539), + [anon_sym_BSLASHACRlong] = ACTIONS(12539), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12539), + [anon_sym_BSLASHacrfull] = ACTIONS(12539), + [anon_sym_BSLASHAcrfull] = ACTIONS(12539), + [anon_sym_BSLASHACRfull] = ACTIONS(12539), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12539), + [anon_sym_BSLASHacs] = ACTIONS(12539), + [anon_sym_BSLASHAcs] = ACTIONS(12539), + [anon_sym_BSLASHacsp] = ACTIONS(12539), + [anon_sym_BSLASHAcsp] = ACTIONS(12539), + [anon_sym_BSLASHacl] = ACTIONS(12539), + [anon_sym_BSLASHAcl] = ACTIONS(12539), + [anon_sym_BSLASHaclp] = ACTIONS(12539), + [anon_sym_BSLASHAclp] = ACTIONS(12539), + [anon_sym_BSLASHacf] = ACTIONS(12539), + [anon_sym_BSLASHAcf] = ACTIONS(12539), + [anon_sym_BSLASHacfp] = ACTIONS(12539), + [anon_sym_BSLASHAcfp] = ACTIONS(12539), + [anon_sym_BSLASHac] = ACTIONS(12539), + [anon_sym_BSLASHAc] = ACTIONS(12539), + [anon_sym_BSLASHacp] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12539), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12539), + [anon_sym_BSLASHcolor] = ACTIONS(12539), + [anon_sym_BSLASHcolorbox] = ACTIONS(12539), + [anon_sym_BSLASHtextcolor] = ACTIONS(12539), + [anon_sym_BSLASHpagecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12539), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12539), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12539), + }, + [1709] = { + [sym_generic_command_name] = ACTIONS(12543), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12543), + [anon_sym_BSLASHitem] = ACTIONS(12543), + [anon_sym_LBRACK] = ACTIONS(12541), + [anon_sym_RBRACK] = ACTIONS(12541), + [anon_sym_LBRACE] = ACTIONS(12541), + [anon_sym_RBRACE] = ACTIONS(12541), + [anon_sym_LPAREN] = ACTIONS(12541), + [anon_sym_COMMA] = ACTIONS(12541), + [anon_sym_EQ] = ACTIONS(12541), + [sym_word] = ACTIONS(12541), + [sym_param] = ACTIONS(12541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12541), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12541), + [anon_sym_DOLLAR] = ACTIONS(12543), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12541), + [anon_sym_BSLASHbegin] = ACTIONS(12543), + [anon_sym_BSLASHcaption] = ACTIONS(12543), + [anon_sym_BSLASHcite] = ACTIONS(12543), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCite] = ACTIONS(12543), + [anon_sym_BSLASHnocite] = ACTIONS(12543), + [anon_sym_BSLASHcitet] = ACTIONS(12543), + [anon_sym_BSLASHcitep] = ACTIONS(12543), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteauthor] = ACTIONS(12543), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12543), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitetitle] = ACTIONS(12543), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteyear] = ACTIONS(12543), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitedate] = ACTIONS(12543), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteurl] = ACTIONS(12543), + [anon_sym_BSLASHfullcite] = ACTIONS(12543), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12543), + [anon_sym_BSLASHcitealt] = ACTIONS(12543), + [anon_sym_BSLASHcitealp] = ACTIONS(12543), + [anon_sym_BSLASHcitetext] = ACTIONS(12543), + [anon_sym_BSLASHparencite] = ACTIONS(12543), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHParencite] = ACTIONS(12543), + [anon_sym_BSLASHfootcite] = ACTIONS(12543), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12543), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12543), + [anon_sym_BSLASHtextcite] = ACTIONS(12543), + [anon_sym_BSLASHTextcite] = ACTIONS(12543), + [anon_sym_BSLASHsmartcite] = ACTIONS(12543), + [anon_sym_BSLASHSmartcite] = ACTIONS(12543), + [anon_sym_BSLASHsupercite] = ACTIONS(12543), + [anon_sym_BSLASHautocite] = ACTIONS(12543), + [anon_sym_BSLASHAutocite] = ACTIONS(12543), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHvolcite] = ACTIONS(12543), + [anon_sym_BSLASHVolcite] = ACTIONS(12543), + [anon_sym_BSLASHpvolcite] = ACTIONS(12543), + [anon_sym_BSLASHPvolcite] = ACTIONS(12543), + [anon_sym_BSLASHfvolcite] = ACTIONS(12543), + [anon_sym_BSLASHftvolcite] = ACTIONS(12543), + [anon_sym_BSLASHsvolcite] = ACTIONS(12543), + [anon_sym_BSLASHSvolcite] = ACTIONS(12543), + [anon_sym_BSLASHtvolcite] = ACTIONS(12543), + [anon_sym_BSLASHTvolcite] = ACTIONS(12543), + [anon_sym_BSLASHavolcite] = ACTIONS(12543), + [anon_sym_BSLASHAvolcite] = ACTIONS(12543), + [anon_sym_BSLASHnotecite] = ACTIONS(12543), + [anon_sym_BSLASHpnotecite] = ACTIONS(12543), + [anon_sym_BSLASHPnotecite] = ACTIONS(12543), + [anon_sym_BSLASHfnotecite] = ACTIONS(12543), + [anon_sym_BSLASHusepackage] = ACTIONS(12543), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12543), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12543), + [anon_sym_BSLASHinclude] = ACTIONS(12543), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12543), + [anon_sym_BSLASHinput] = ACTIONS(12543), + [anon_sym_BSLASHsubfile] = ACTIONS(12543), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12543), + [anon_sym_BSLASHbibliography] = ACTIONS(12543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12543), + [anon_sym_BSLASHincludesvg] = ACTIONS(12543), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12543), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12543), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12543), + [anon_sym_BSLASHimport] = ACTIONS(12543), + [anon_sym_BSLASHsubimport] = ACTIONS(12543), + [anon_sym_BSLASHinputfrom] = ACTIONS(12543), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12543), + [anon_sym_BSLASHincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHlabel] = ACTIONS(12543), + [anon_sym_BSLASHref] = ACTIONS(12543), + [anon_sym_BSLASHvref] = ACTIONS(12543), + [anon_sym_BSLASHVref] = ACTIONS(12543), + [anon_sym_BSLASHautoref] = ACTIONS(12543), + [anon_sym_BSLASHpageref] = ACTIONS(12543), + [anon_sym_BSLASHcref] = ACTIONS(12543), + [anon_sym_BSLASHCref] = ACTIONS(12543), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnameCref] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHlabelcref] = ACTIONS(12543), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12543), + [anon_sym_BSLASHeqref] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange] = ACTIONS(12543), + [anon_sym_BSLASHCrefrange] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewlabel] = ACTIONS(12543), + [anon_sym_BSLASHnewcommand] = ACTIONS(12543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12543), + [anon_sym_BSLASHgls] = ACTIONS(12543), + [anon_sym_BSLASHGls] = ACTIONS(12543), + [anon_sym_BSLASHGLS] = ACTIONS(12543), + [anon_sym_BSLASHglspl] = ACTIONS(12543), + [anon_sym_BSLASHGlspl] = ACTIONS(12543), + [anon_sym_BSLASHGLSpl] = ACTIONS(12543), + [anon_sym_BSLASHglsdisp] = ACTIONS(12543), + [anon_sym_BSLASHglslink] = ACTIONS(12543), + [anon_sym_BSLASHglstext] = ACTIONS(12543), + [anon_sym_BSLASHGlstext] = ACTIONS(12543), + [anon_sym_BSLASHGLStext] = ACTIONS(12543), + [anon_sym_BSLASHglsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12543), + [anon_sym_BSLASHglsplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSplural] = ACTIONS(12543), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHglsname] = ACTIONS(12543), + [anon_sym_BSLASHGlsname] = ACTIONS(12543), + [anon_sym_BSLASHGLSname] = ACTIONS(12543), + [anon_sym_BSLASHglssymbol] = ACTIONS(12543), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12543), + [anon_sym_BSLASHglsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12543), + [anon_sym_BSLASHglsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12543), + [anon_sym_BSLASHglsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12543), + [anon_sym_BSLASHglsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12543), + [anon_sym_BSLASHglsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12543), + [anon_sym_BSLASHnewacronym] = ACTIONS(12543), + [anon_sym_BSLASHacrshort] = ACTIONS(12543), + [anon_sym_BSLASHAcrshort] = ACTIONS(12543), + [anon_sym_BSLASHACRshort] = ACTIONS(12543), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12543), + [anon_sym_BSLASHacrlong] = ACTIONS(12543), + [anon_sym_BSLASHAcrlong] = ACTIONS(12543), + [anon_sym_BSLASHACRlong] = ACTIONS(12543), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12543), + [anon_sym_BSLASHacrfull] = ACTIONS(12543), + [anon_sym_BSLASHAcrfull] = ACTIONS(12543), + [anon_sym_BSLASHACRfull] = ACTIONS(12543), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12543), + [anon_sym_BSLASHacs] = ACTIONS(12543), + [anon_sym_BSLASHAcs] = ACTIONS(12543), + [anon_sym_BSLASHacsp] = ACTIONS(12543), + [anon_sym_BSLASHAcsp] = ACTIONS(12543), + [anon_sym_BSLASHacl] = ACTIONS(12543), + [anon_sym_BSLASHAcl] = ACTIONS(12543), + [anon_sym_BSLASHaclp] = ACTIONS(12543), + [anon_sym_BSLASHAclp] = ACTIONS(12543), + [anon_sym_BSLASHacf] = ACTIONS(12543), + [anon_sym_BSLASHAcf] = ACTIONS(12543), + [anon_sym_BSLASHacfp] = ACTIONS(12543), + [anon_sym_BSLASHAcfp] = ACTIONS(12543), + [anon_sym_BSLASHac] = ACTIONS(12543), + [anon_sym_BSLASHAc] = ACTIONS(12543), + [anon_sym_BSLASHacp] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12543), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12543), + [anon_sym_BSLASHcolor] = ACTIONS(12543), + [anon_sym_BSLASHcolorbox] = ACTIONS(12543), + [anon_sym_BSLASHtextcolor] = ACTIONS(12543), + [anon_sym_BSLASHpagecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12543), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12543), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12543), + }, + [1710] = { + [sym_generic_command_name] = ACTIONS(12104), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12104), + [anon_sym_BSLASHitem] = ACTIONS(12104), + [anon_sym_LBRACK] = ACTIONS(12102), + [anon_sym_RBRACK] = ACTIONS(12102), + [anon_sym_LBRACE] = ACTIONS(12102), + [anon_sym_RBRACE] = ACTIONS(12102), + [anon_sym_LPAREN] = ACTIONS(12102), + [anon_sym_COMMA] = ACTIONS(12102), + [anon_sym_EQ] = ACTIONS(12102), + [sym_word] = ACTIONS(12102), + [sym_param] = ACTIONS(12102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12102), + [anon_sym_DOLLAR] = ACTIONS(12104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12102), + [anon_sym_BSLASHbegin] = ACTIONS(12104), + [anon_sym_BSLASHcaption] = ACTIONS(12104), + [anon_sym_BSLASHcite] = ACTIONS(12104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCite] = ACTIONS(12104), + [anon_sym_BSLASHnocite] = ACTIONS(12104), + [anon_sym_BSLASHcitet] = ACTIONS(12104), + [anon_sym_BSLASHcitep] = ACTIONS(12104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteauthor] = ACTIONS(12104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitetitle] = ACTIONS(12104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteyear] = ACTIONS(12104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitedate] = ACTIONS(12104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteurl] = ACTIONS(12104), + [anon_sym_BSLASHfullcite] = ACTIONS(12104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12104), + [anon_sym_BSLASHcitealt] = ACTIONS(12104), + [anon_sym_BSLASHcitealp] = ACTIONS(12104), + [anon_sym_BSLASHcitetext] = ACTIONS(12104), + [anon_sym_BSLASHparencite] = ACTIONS(12104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHParencite] = ACTIONS(12104), + [anon_sym_BSLASHfootcite] = ACTIONS(12104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12104), + [anon_sym_BSLASHtextcite] = ACTIONS(12104), + [anon_sym_BSLASHTextcite] = ACTIONS(12104), + [anon_sym_BSLASHsmartcite] = ACTIONS(12104), + [anon_sym_BSLASHSmartcite] = ACTIONS(12104), + [anon_sym_BSLASHsupercite] = ACTIONS(12104), + [anon_sym_BSLASHautocite] = ACTIONS(12104), + [anon_sym_BSLASHAutocite] = ACTIONS(12104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHvolcite] = ACTIONS(12104), + [anon_sym_BSLASHVolcite] = ACTIONS(12104), + [anon_sym_BSLASHpvolcite] = ACTIONS(12104), + [anon_sym_BSLASHPvolcite] = ACTIONS(12104), + [anon_sym_BSLASHfvolcite] = ACTIONS(12104), + [anon_sym_BSLASHftvolcite] = ACTIONS(12104), + [anon_sym_BSLASHsvolcite] = ACTIONS(12104), + [anon_sym_BSLASHSvolcite] = ACTIONS(12104), + [anon_sym_BSLASHtvolcite] = ACTIONS(12104), + [anon_sym_BSLASHTvolcite] = ACTIONS(12104), + [anon_sym_BSLASHavolcite] = ACTIONS(12104), + [anon_sym_BSLASHAvolcite] = ACTIONS(12104), + [anon_sym_BSLASHnotecite] = ACTIONS(12104), + [anon_sym_BSLASHpnotecite] = ACTIONS(12104), + [anon_sym_BSLASHPnotecite] = ACTIONS(12104), + [anon_sym_BSLASHfnotecite] = ACTIONS(12104), + [anon_sym_BSLASHusepackage] = ACTIONS(12104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12104), + [anon_sym_BSLASHinclude] = ACTIONS(12104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12104), + [anon_sym_BSLASHinput] = ACTIONS(12104), + [anon_sym_BSLASHsubfile] = ACTIONS(12104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12104), + [anon_sym_BSLASHbibliography] = ACTIONS(12104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12104), + [anon_sym_BSLASHincludesvg] = ACTIONS(12104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12104), + [anon_sym_BSLASHimport] = ACTIONS(12104), + [anon_sym_BSLASHsubimport] = ACTIONS(12104), + [anon_sym_BSLASHinputfrom] = ACTIONS(12104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12104), + [anon_sym_BSLASHincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHlabel] = ACTIONS(12104), + [anon_sym_BSLASHref] = ACTIONS(12104), + [anon_sym_BSLASHvref] = ACTIONS(12104), + [anon_sym_BSLASHVref] = ACTIONS(12104), + [anon_sym_BSLASHautoref] = ACTIONS(12104), + [anon_sym_BSLASHpageref] = ACTIONS(12104), + [anon_sym_BSLASHcref] = ACTIONS(12104), + [anon_sym_BSLASHCref] = ACTIONS(12104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnameCref] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHlabelcref] = ACTIONS(12104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12104), + [anon_sym_BSLASHeqref] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange] = ACTIONS(12104), + [anon_sym_BSLASHCrefrange] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewlabel] = ACTIONS(12104), + [anon_sym_BSLASHnewcommand] = ACTIONS(12104), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12104), + [anon_sym_BSLASHgls] = ACTIONS(12104), + [anon_sym_BSLASHGls] = ACTIONS(12104), + [anon_sym_BSLASHGLS] = ACTIONS(12104), + [anon_sym_BSLASHglspl] = ACTIONS(12104), + [anon_sym_BSLASHGlspl] = ACTIONS(12104), + [anon_sym_BSLASHGLSpl] = ACTIONS(12104), + [anon_sym_BSLASHglsdisp] = ACTIONS(12104), + [anon_sym_BSLASHglslink] = ACTIONS(12104), + [anon_sym_BSLASHglstext] = ACTIONS(12104), + [anon_sym_BSLASHGlstext] = ACTIONS(12104), + [anon_sym_BSLASHGLStext] = ACTIONS(12104), + [anon_sym_BSLASHglsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12104), + [anon_sym_BSLASHglsplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSplural] = ACTIONS(12104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHglsname] = ACTIONS(12104), + [anon_sym_BSLASHGlsname] = ACTIONS(12104), + [anon_sym_BSLASHGLSname] = ACTIONS(12104), + [anon_sym_BSLASHglssymbol] = ACTIONS(12104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12104), + [anon_sym_BSLASHglsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12104), + [anon_sym_BSLASHglsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12104), + [anon_sym_BSLASHglsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12104), + [anon_sym_BSLASHglsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12104), + [anon_sym_BSLASHglsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12104), + [anon_sym_BSLASHnewacronym] = ACTIONS(12104), + [anon_sym_BSLASHacrshort] = ACTIONS(12104), + [anon_sym_BSLASHAcrshort] = ACTIONS(12104), + [anon_sym_BSLASHACRshort] = ACTIONS(12104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12104), + [anon_sym_BSLASHacrlong] = ACTIONS(12104), + [anon_sym_BSLASHAcrlong] = ACTIONS(12104), + [anon_sym_BSLASHACRlong] = ACTIONS(12104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12104), + [anon_sym_BSLASHacrfull] = ACTIONS(12104), + [anon_sym_BSLASHAcrfull] = ACTIONS(12104), + [anon_sym_BSLASHACRfull] = ACTIONS(12104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12104), + [anon_sym_BSLASHacs] = ACTIONS(12104), + [anon_sym_BSLASHAcs] = ACTIONS(12104), + [anon_sym_BSLASHacsp] = ACTIONS(12104), + [anon_sym_BSLASHAcsp] = ACTIONS(12104), + [anon_sym_BSLASHacl] = ACTIONS(12104), + [anon_sym_BSLASHAcl] = ACTIONS(12104), + [anon_sym_BSLASHaclp] = ACTIONS(12104), + [anon_sym_BSLASHAclp] = ACTIONS(12104), + [anon_sym_BSLASHacf] = ACTIONS(12104), + [anon_sym_BSLASHAcf] = ACTIONS(12104), + [anon_sym_BSLASHacfp] = ACTIONS(12104), + [anon_sym_BSLASHAcfp] = ACTIONS(12104), + [anon_sym_BSLASHac] = ACTIONS(12104), + [anon_sym_BSLASHAc] = ACTIONS(12104), + [anon_sym_BSLASHacp] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12104), + [anon_sym_BSLASHcolor] = ACTIONS(12104), + [anon_sym_BSLASHcolorbox] = ACTIONS(12104), + [anon_sym_BSLASHtextcolor] = ACTIONS(12104), + [anon_sym_BSLASHpagecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12104), + }, + [1711] = { + [sym_generic_command_name] = ACTIONS(12547), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12547), + [anon_sym_BSLASHitem] = ACTIONS(12547), + [anon_sym_LBRACK] = ACTIONS(12545), + [anon_sym_RBRACK] = ACTIONS(12545), + [anon_sym_LBRACE] = ACTIONS(12545), + [anon_sym_RBRACE] = ACTIONS(12545), + [anon_sym_LPAREN] = ACTIONS(12545), + [anon_sym_COMMA] = ACTIONS(12545), + [anon_sym_EQ] = ACTIONS(12545), + [sym_word] = ACTIONS(12545), + [sym_param] = ACTIONS(12545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12545), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12545), + [anon_sym_DOLLAR] = ACTIONS(12547), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12545), + [anon_sym_BSLASHbegin] = ACTIONS(12547), + [anon_sym_BSLASHcaption] = ACTIONS(12547), + [anon_sym_BSLASHcite] = ACTIONS(12547), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCite] = ACTIONS(12547), + [anon_sym_BSLASHnocite] = ACTIONS(12547), + [anon_sym_BSLASHcitet] = ACTIONS(12547), + [anon_sym_BSLASHcitep] = ACTIONS(12547), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteauthor] = ACTIONS(12547), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12547), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitetitle] = ACTIONS(12547), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteyear] = ACTIONS(12547), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitedate] = ACTIONS(12547), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteurl] = ACTIONS(12547), + [anon_sym_BSLASHfullcite] = ACTIONS(12547), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12547), + [anon_sym_BSLASHcitealt] = ACTIONS(12547), + [anon_sym_BSLASHcitealp] = ACTIONS(12547), + [anon_sym_BSLASHcitetext] = ACTIONS(12547), + [anon_sym_BSLASHparencite] = ACTIONS(12547), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHParencite] = ACTIONS(12547), + [anon_sym_BSLASHfootcite] = ACTIONS(12547), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12547), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12547), + [anon_sym_BSLASHtextcite] = ACTIONS(12547), + [anon_sym_BSLASHTextcite] = ACTIONS(12547), + [anon_sym_BSLASHsmartcite] = ACTIONS(12547), + [anon_sym_BSLASHSmartcite] = ACTIONS(12547), + [anon_sym_BSLASHsupercite] = ACTIONS(12547), + [anon_sym_BSLASHautocite] = ACTIONS(12547), + [anon_sym_BSLASHAutocite] = ACTIONS(12547), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHvolcite] = ACTIONS(12547), + [anon_sym_BSLASHVolcite] = ACTIONS(12547), + [anon_sym_BSLASHpvolcite] = ACTIONS(12547), + [anon_sym_BSLASHPvolcite] = ACTIONS(12547), + [anon_sym_BSLASHfvolcite] = ACTIONS(12547), + [anon_sym_BSLASHftvolcite] = ACTIONS(12547), + [anon_sym_BSLASHsvolcite] = ACTIONS(12547), + [anon_sym_BSLASHSvolcite] = ACTIONS(12547), + [anon_sym_BSLASHtvolcite] = ACTIONS(12547), + [anon_sym_BSLASHTvolcite] = ACTIONS(12547), + [anon_sym_BSLASHavolcite] = ACTIONS(12547), + [anon_sym_BSLASHAvolcite] = ACTIONS(12547), + [anon_sym_BSLASHnotecite] = ACTIONS(12547), + [anon_sym_BSLASHpnotecite] = ACTIONS(12547), + [anon_sym_BSLASHPnotecite] = ACTIONS(12547), + [anon_sym_BSLASHfnotecite] = ACTIONS(12547), + [anon_sym_BSLASHusepackage] = ACTIONS(12547), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12547), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12547), + [anon_sym_BSLASHinclude] = ACTIONS(12547), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12547), + [anon_sym_BSLASHinput] = ACTIONS(12547), + [anon_sym_BSLASHsubfile] = ACTIONS(12547), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12547), + [anon_sym_BSLASHbibliography] = ACTIONS(12547), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12547), + [anon_sym_BSLASHincludesvg] = ACTIONS(12547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12547), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12547), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12547), + [anon_sym_BSLASHimport] = ACTIONS(12547), + [anon_sym_BSLASHsubimport] = ACTIONS(12547), + [anon_sym_BSLASHinputfrom] = ACTIONS(12547), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12547), + [anon_sym_BSLASHincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHlabel] = ACTIONS(12547), + [anon_sym_BSLASHref] = ACTIONS(12547), + [anon_sym_BSLASHvref] = ACTIONS(12547), + [anon_sym_BSLASHVref] = ACTIONS(12547), + [anon_sym_BSLASHautoref] = ACTIONS(12547), + [anon_sym_BSLASHpageref] = ACTIONS(12547), + [anon_sym_BSLASHcref] = ACTIONS(12547), + [anon_sym_BSLASHCref] = ACTIONS(12547), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnameCref] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHlabelcref] = ACTIONS(12547), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12547), + [anon_sym_BSLASHeqref] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange] = ACTIONS(12547), + [anon_sym_BSLASHCrefrange] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewlabel] = ACTIONS(12547), + [anon_sym_BSLASHnewcommand] = ACTIONS(12547), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12547), + [anon_sym_BSLASHgls] = ACTIONS(12547), + [anon_sym_BSLASHGls] = ACTIONS(12547), + [anon_sym_BSLASHGLS] = ACTIONS(12547), + [anon_sym_BSLASHglspl] = ACTIONS(12547), + [anon_sym_BSLASHGlspl] = ACTIONS(12547), + [anon_sym_BSLASHGLSpl] = ACTIONS(12547), + [anon_sym_BSLASHglsdisp] = ACTIONS(12547), + [anon_sym_BSLASHglslink] = ACTIONS(12547), + [anon_sym_BSLASHglstext] = ACTIONS(12547), + [anon_sym_BSLASHGlstext] = ACTIONS(12547), + [anon_sym_BSLASHGLStext] = ACTIONS(12547), + [anon_sym_BSLASHglsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12547), + [anon_sym_BSLASHglsplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSplural] = ACTIONS(12547), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHglsname] = ACTIONS(12547), + [anon_sym_BSLASHGlsname] = ACTIONS(12547), + [anon_sym_BSLASHGLSname] = ACTIONS(12547), + [anon_sym_BSLASHglssymbol] = ACTIONS(12547), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12547), + [anon_sym_BSLASHglsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12547), + [anon_sym_BSLASHglsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12547), + [anon_sym_BSLASHglsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12547), + [anon_sym_BSLASHglsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12547), + [anon_sym_BSLASHglsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12547), + [anon_sym_BSLASHnewacronym] = ACTIONS(12547), + [anon_sym_BSLASHacrshort] = ACTIONS(12547), + [anon_sym_BSLASHAcrshort] = ACTIONS(12547), + [anon_sym_BSLASHACRshort] = ACTIONS(12547), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12547), + [anon_sym_BSLASHacrlong] = ACTIONS(12547), + [anon_sym_BSLASHAcrlong] = ACTIONS(12547), + [anon_sym_BSLASHACRlong] = ACTIONS(12547), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12547), + [anon_sym_BSLASHacrfull] = ACTIONS(12547), + [anon_sym_BSLASHAcrfull] = ACTIONS(12547), + [anon_sym_BSLASHACRfull] = ACTIONS(12547), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12547), + [anon_sym_BSLASHacs] = ACTIONS(12547), + [anon_sym_BSLASHAcs] = ACTIONS(12547), + [anon_sym_BSLASHacsp] = ACTIONS(12547), + [anon_sym_BSLASHAcsp] = ACTIONS(12547), + [anon_sym_BSLASHacl] = ACTIONS(12547), + [anon_sym_BSLASHAcl] = ACTIONS(12547), + [anon_sym_BSLASHaclp] = ACTIONS(12547), + [anon_sym_BSLASHAclp] = ACTIONS(12547), + [anon_sym_BSLASHacf] = ACTIONS(12547), + [anon_sym_BSLASHAcf] = ACTIONS(12547), + [anon_sym_BSLASHacfp] = ACTIONS(12547), + [anon_sym_BSLASHAcfp] = ACTIONS(12547), + [anon_sym_BSLASHac] = ACTIONS(12547), + [anon_sym_BSLASHAc] = ACTIONS(12547), + [anon_sym_BSLASHacp] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12547), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12547), + [anon_sym_BSLASHcolor] = ACTIONS(12547), + [anon_sym_BSLASHcolorbox] = ACTIONS(12547), + [anon_sym_BSLASHtextcolor] = ACTIONS(12547), + [anon_sym_BSLASHpagecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12547), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12547), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12547), + }, + [1712] = { + [sym_generic_command_name] = ACTIONS(12255), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12255), + [anon_sym_BSLASHitem] = ACTIONS(12255), + [anon_sym_LBRACK] = ACTIONS(12253), + [anon_sym_RBRACK] = ACTIONS(12253), + [anon_sym_LBRACE] = ACTIONS(12253), + [anon_sym_RBRACE] = ACTIONS(12253), + [anon_sym_LPAREN] = ACTIONS(12253), + [anon_sym_COMMA] = ACTIONS(12253), + [anon_sym_EQ] = ACTIONS(12253), + [sym_word] = ACTIONS(12253), + [sym_param] = ACTIONS(12253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12253), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12253), + [anon_sym_DOLLAR] = ACTIONS(12255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12253), + [anon_sym_BSLASHbegin] = ACTIONS(12255), + [anon_sym_BSLASHcaption] = ACTIONS(12255), + [anon_sym_BSLASHcite] = ACTIONS(12255), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCite] = ACTIONS(12255), + [anon_sym_BSLASHnocite] = ACTIONS(12255), + [anon_sym_BSLASHcitet] = ACTIONS(12255), + [anon_sym_BSLASHcitep] = ACTIONS(12255), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteauthor] = ACTIONS(12255), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12255), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitetitle] = ACTIONS(12255), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteyear] = ACTIONS(12255), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitedate] = ACTIONS(12255), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteurl] = ACTIONS(12255), + [anon_sym_BSLASHfullcite] = ACTIONS(12255), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12255), + [anon_sym_BSLASHcitealt] = ACTIONS(12255), + [anon_sym_BSLASHcitealp] = ACTIONS(12255), + [anon_sym_BSLASHcitetext] = ACTIONS(12255), + [anon_sym_BSLASHparencite] = ACTIONS(12255), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHParencite] = ACTIONS(12255), + [anon_sym_BSLASHfootcite] = ACTIONS(12255), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12255), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12255), + [anon_sym_BSLASHtextcite] = ACTIONS(12255), + [anon_sym_BSLASHTextcite] = ACTIONS(12255), + [anon_sym_BSLASHsmartcite] = ACTIONS(12255), + [anon_sym_BSLASHSmartcite] = ACTIONS(12255), + [anon_sym_BSLASHsupercite] = ACTIONS(12255), + [anon_sym_BSLASHautocite] = ACTIONS(12255), + [anon_sym_BSLASHAutocite] = ACTIONS(12255), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHvolcite] = ACTIONS(12255), + [anon_sym_BSLASHVolcite] = ACTIONS(12255), + [anon_sym_BSLASHpvolcite] = ACTIONS(12255), + [anon_sym_BSLASHPvolcite] = ACTIONS(12255), + [anon_sym_BSLASHfvolcite] = ACTIONS(12255), + [anon_sym_BSLASHftvolcite] = ACTIONS(12255), + [anon_sym_BSLASHsvolcite] = ACTIONS(12255), + [anon_sym_BSLASHSvolcite] = ACTIONS(12255), + [anon_sym_BSLASHtvolcite] = ACTIONS(12255), + [anon_sym_BSLASHTvolcite] = ACTIONS(12255), + [anon_sym_BSLASHavolcite] = ACTIONS(12255), + [anon_sym_BSLASHAvolcite] = ACTIONS(12255), + [anon_sym_BSLASHnotecite] = ACTIONS(12255), + [anon_sym_BSLASHpnotecite] = ACTIONS(12255), + [anon_sym_BSLASHPnotecite] = ACTIONS(12255), + [anon_sym_BSLASHfnotecite] = ACTIONS(12255), + [anon_sym_BSLASHusepackage] = ACTIONS(12255), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12255), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12255), + [anon_sym_BSLASHinclude] = ACTIONS(12255), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12255), + [anon_sym_BSLASHinput] = ACTIONS(12255), + [anon_sym_BSLASHsubfile] = ACTIONS(12255), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12255), + [anon_sym_BSLASHbibliography] = ACTIONS(12255), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12255), + [anon_sym_BSLASHincludesvg] = ACTIONS(12255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12255), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12255), + [anon_sym_BSLASHimport] = ACTIONS(12255), + [anon_sym_BSLASHsubimport] = ACTIONS(12255), + [anon_sym_BSLASHinputfrom] = ACTIONS(12255), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12255), + [anon_sym_BSLASHincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHlabel] = ACTIONS(12255), + [anon_sym_BSLASHref] = ACTIONS(12255), + [anon_sym_BSLASHvref] = ACTIONS(12255), + [anon_sym_BSLASHVref] = ACTIONS(12255), + [anon_sym_BSLASHautoref] = ACTIONS(12255), + [anon_sym_BSLASHpageref] = ACTIONS(12255), + [anon_sym_BSLASHcref] = ACTIONS(12255), + [anon_sym_BSLASHCref] = ACTIONS(12255), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnameCref] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHlabelcref] = ACTIONS(12255), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12255), + [anon_sym_BSLASHeqref] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange] = ACTIONS(12255), + [anon_sym_BSLASHCrefrange] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewlabel] = ACTIONS(12255), + [anon_sym_BSLASHnewcommand] = ACTIONS(12255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12255), + [anon_sym_BSLASHgls] = ACTIONS(12255), + [anon_sym_BSLASHGls] = ACTIONS(12255), + [anon_sym_BSLASHGLS] = ACTIONS(12255), + [anon_sym_BSLASHglspl] = ACTIONS(12255), + [anon_sym_BSLASHGlspl] = ACTIONS(12255), + [anon_sym_BSLASHGLSpl] = ACTIONS(12255), + [anon_sym_BSLASHglsdisp] = ACTIONS(12255), + [anon_sym_BSLASHglslink] = ACTIONS(12255), + [anon_sym_BSLASHglstext] = ACTIONS(12255), + [anon_sym_BSLASHGlstext] = ACTIONS(12255), + [anon_sym_BSLASHGLStext] = ACTIONS(12255), + [anon_sym_BSLASHglsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12255), + [anon_sym_BSLASHglsplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSplural] = ACTIONS(12255), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHglsname] = ACTIONS(12255), + [anon_sym_BSLASHGlsname] = ACTIONS(12255), + [anon_sym_BSLASHGLSname] = ACTIONS(12255), + [anon_sym_BSLASHglssymbol] = ACTIONS(12255), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12255), + [anon_sym_BSLASHglsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12255), + [anon_sym_BSLASHglsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12255), + [anon_sym_BSLASHglsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12255), + [anon_sym_BSLASHglsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12255), + [anon_sym_BSLASHglsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12255), + [anon_sym_BSLASHnewacronym] = ACTIONS(12255), + [anon_sym_BSLASHacrshort] = ACTIONS(12255), + [anon_sym_BSLASHAcrshort] = ACTIONS(12255), + [anon_sym_BSLASHACRshort] = ACTIONS(12255), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12255), + [anon_sym_BSLASHacrlong] = ACTIONS(12255), + [anon_sym_BSLASHAcrlong] = ACTIONS(12255), + [anon_sym_BSLASHACRlong] = ACTIONS(12255), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12255), + [anon_sym_BSLASHacrfull] = ACTIONS(12255), + [anon_sym_BSLASHAcrfull] = ACTIONS(12255), + [anon_sym_BSLASHACRfull] = ACTIONS(12255), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12255), + [anon_sym_BSLASHacs] = ACTIONS(12255), + [anon_sym_BSLASHAcs] = ACTIONS(12255), + [anon_sym_BSLASHacsp] = ACTIONS(12255), + [anon_sym_BSLASHAcsp] = ACTIONS(12255), + [anon_sym_BSLASHacl] = ACTIONS(12255), + [anon_sym_BSLASHAcl] = ACTIONS(12255), + [anon_sym_BSLASHaclp] = ACTIONS(12255), + [anon_sym_BSLASHAclp] = ACTIONS(12255), + [anon_sym_BSLASHacf] = ACTIONS(12255), + [anon_sym_BSLASHAcf] = ACTIONS(12255), + [anon_sym_BSLASHacfp] = ACTIONS(12255), + [anon_sym_BSLASHAcfp] = ACTIONS(12255), + [anon_sym_BSLASHac] = ACTIONS(12255), + [anon_sym_BSLASHAc] = ACTIONS(12255), + [anon_sym_BSLASHacp] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12255), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12255), + [anon_sym_BSLASHcolor] = ACTIONS(12255), + [anon_sym_BSLASHcolorbox] = ACTIONS(12255), + [anon_sym_BSLASHtextcolor] = ACTIONS(12255), + [anon_sym_BSLASHpagecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12255), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12255), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12255), + }, + [1713] = { + [sym_generic_command_name] = ACTIONS(12559), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12559), + [anon_sym_BSLASHitem] = ACTIONS(12559), + [anon_sym_LBRACK] = ACTIONS(12557), + [anon_sym_RBRACK] = ACTIONS(12557), + [anon_sym_LBRACE] = ACTIONS(12557), + [anon_sym_RBRACE] = ACTIONS(12557), + [anon_sym_LPAREN] = ACTIONS(12557), + [anon_sym_COMMA] = ACTIONS(12557), + [anon_sym_EQ] = ACTIONS(12557), + [sym_word] = ACTIONS(12557), + [sym_param] = ACTIONS(12557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12557), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12557), + [anon_sym_DOLLAR] = ACTIONS(12559), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12557), + [anon_sym_BSLASHbegin] = ACTIONS(12559), + [anon_sym_BSLASHcaption] = ACTIONS(12559), + [anon_sym_BSLASHcite] = ACTIONS(12559), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCite] = ACTIONS(12559), + [anon_sym_BSLASHnocite] = ACTIONS(12559), + [anon_sym_BSLASHcitet] = ACTIONS(12559), + [anon_sym_BSLASHcitep] = ACTIONS(12559), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteauthor] = ACTIONS(12559), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12559), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitetitle] = ACTIONS(12559), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteyear] = ACTIONS(12559), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitedate] = ACTIONS(12559), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteurl] = ACTIONS(12559), + [anon_sym_BSLASHfullcite] = ACTIONS(12559), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12559), + [anon_sym_BSLASHcitealt] = ACTIONS(12559), + [anon_sym_BSLASHcitealp] = ACTIONS(12559), + [anon_sym_BSLASHcitetext] = ACTIONS(12559), + [anon_sym_BSLASHparencite] = ACTIONS(12559), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHParencite] = ACTIONS(12559), + [anon_sym_BSLASHfootcite] = ACTIONS(12559), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12559), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12559), + [anon_sym_BSLASHtextcite] = ACTIONS(12559), + [anon_sym_BSLASHTextcite] = ACTIONS(12559), + [anon_sym_BSLASHsmartcite] = ACTIONS(12559), + [anon_sym_BSLASHSmartcite] = ACTIONS(12559), + [anon_sym_BSLASHsupercite] = ACTIONS(12559), + [anon_sym_BSLASHautocite] = ACTIONS(12559), + [anon_sym_BSLASHAutocite] = ACTIONS(12559), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHvolcite] = ACTIONS(12559), + [anon_sym_BSLASHVolcite] = ACTIONS(12559), + [anon_sym_BSLASHpvolcite] = ACTIONS(12559), + [anon_sym_BSLASHPvolcite] = ACTIONS(12559), + [anon_sym_BSLASHfvolcite] = ACTIONS(12559), + [anon_sym_BSLASHftvolcite] = ACTIONS(12559), + [anon_sym_BSLASHsvolcite] = ACTIONS(12559), + [anon_sym_BSLASHSvolcite] = ACTIONS(12559), + [anon_sym_BSLASHtvolcite] = ACTIONS(12559), + [anon_sym_BSLASHTvolcite] = ACTIONS(12559), + [anon_sym_BSLASHavolcite] = ACTIONS(12559), + [anon_sym_BSLASHAvolcite] = ACTIONS(12559), + [anon_sym_BSLASHnotecite] = ACTIONS(12559), + [anon_sym_BSLASHpnotecite] = ACTIONS(12559), + [anon_sym_BSLASHPnotecite] = ACTIONS(12559), + [anon_sym_BSLASHfnotecite] = ACTIONS(12559), + [anon_sym_BSLASHusepackage] = ACTIONS(12559), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12559), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12559), + [anon_sym_BSLASHinclude] = ACTIONS(12559), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12559), + [anon_sym_BSLASHinput] = ACTIONS(12559), + [anon_sym_BSLASHsubfile] = ACTIONS(12559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12559), + [anon_sym_BSLASHbibliography] = ACTIONS(12559), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12559), + [anon_sym_BSLASHincludesvg] = ACTIONS(12559), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12559), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12559), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12559), + [anon_sym_BSLASHimport] = ACTIONS(12559), + [anon_sym_BSLASHsubimport] = ACTIONS(12559), + [anon_sym_BSLASHinputfrom] = ACTIONS(12559), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12559), + [anon_sym_BSLASHincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHlabel] = ACTIONS(12559), + [anon_sym_BSLASHref] = ACTIONS(12559), + [anon_sym_BSLASHvref] = ACTIONS(12559), + [anon_sym_BSLASHVref] = ACTIONS(12559), + [anon_sym_BSLASHautoref] = ACTIONS(12559), + [anon_sym_BSLASHpageref] = ACTIONS(12559), + [anon_sym_BSLASHcref] = ACTIONS(12559), + [anon_sym_BSLASHCref] = ACTIONS(12559), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnameCref] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHlabelcref] = ACTIONS(12559), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12559), + [anon_sym_BSLASHeqref] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange] = ACTIONS(12559), + [anon_sym_BSLASHCrefrange] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewlabel] = ACTIONS(12559), + [anon_sym_BSLASHnewcommand] = ACTIONS(12559), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12559), + [anon_sym_BSLASHgls] = ACTIONS(12559), + [anon_sym_BSLASHGls] = ACTIONS(12559), + [anon_sym_BSLASHGLS] = ACTIONS(12559), + [anon_sym_BSLASHglspl] = ACTIONS(12559), + [anon_sym_BSLASHGlspl] = ACTIONS(12559), + [anon_sym_BSLASHGLSpl] = ACTIONS(12559), + [anon_sym_BSLASHglsdisp] = ACTIONS(12559), + [anon_sym_BSLASHglslink] = ACTIONS(12559), + [anon_sym_BSLASHglstext] = ACTIONS(12559), + [anon_sym_BSLASHGlstext] = ACTIONS(12559), + [anon_sym_BSLASHGLStext] = ACTIONS(12559), + [anon_sym_BSLASHglsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12559), + [anon_sym_BSLASHglsplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSplural] = ACTIONS(12559), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHglsname] = ACTIONS(12559), + [anon_sym_BSLASHGlsname] = ACTIONS(12559), + [anon_sym_BSLASHGLSname] = ACTIONS(12559), + [anon_sym_BSLASHglssymbol] = ACTIONS(12559), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12559), + [anon_sym_BSLASHglsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12559), + [anon_sym_BSLASHglsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12559), + [anon_sym_BSLASHglsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12559), + [anon_sym_BSLASHglsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12559), + [anon_sym_BSLASHglsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12559), + [anon_sym_BSLASHnewacronym] = ACTIONS(12559), + [anon_sym_BSLASHacrshort] = ACTIONS(12559), + [anon_sym_BSLASHAcrshort] = ACTIONS(12559), + [anon_sym_BSLASHACRshort] = ACTIONS(12559), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12559), + [anon_sym_BSLASHacrlong] = ACTIONS(12559), + [anon_sym_BSLASHAcrlong] = ACTIONS(12559), + [anon_sym_BSLASHACRlong] = ACTIONS(12559), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12559), + [anon_sym_BSLASHacrfull] = ACTIONS(12559), + [anon_sym_BSLASHAcrfull] = ACTIONS(12559), + [anon_sym_BSLASHACRfull] = ACTIONS(12559), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12559), + [anon_sym_BSLASHacs] = ACTIONS(12559), + [anon_sym_BSLASHAcs] = ACTIONS(12559), + [anon_sym_BSLASHacsp] = ACTIONS(12559), + [anon_sym_BSLASHAcsp] = ACTIONS(12559), + [anon_sym_BSLASHacl] = ACTIONS(12559), + [anon_sym_BSLASHAcl] = ACTIONS(12559), + [anon_sym_BSLASHaclp] = ACTIONS(12559), + [anon_sym_BSLASHAclp] = ACTIONS(12559), + [anon_sym_BSLASHacf] = ACTIONS(12559), + [anon_sym_BSLASHAcf] = ACTIONS(12559), + [anon_sym_BSLASHacfp] = ACTIONS(12559), + [anon_sym_BSLASHAcfp] = ACTIONS(12559), + [anon_sym_BSLASHac] = ACTIONS(12559), + [anon_sym_BSLASHAc] = ACTIONS(12559), + [anon_sym_BSLASHacp] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12559), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12559), + [anon_sym_BSLASHcolor] = ACTIONS(12559), + [anon_sym_BSLASHcolorbox] = ACTIONS(12559), + [anon_sym_BSLASHtextcolor] = ACTIONS(12559), + [anon_sym_BSLASHpagecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12559), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12559), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12559), + }, + [1714] = { + [sym_generic_command_name] = ACTIONS(12555), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12555), + [anon_sym_BSLASHitem] = ACTIONS(12555), + [anon_sym_LBRACK] = ACTIONS(12553), + [anon_sym_RBRACK] = ACTIONS(12553), + [anon_sym_LBRACE] = ACTIONS(12553), + [anon_sym_RBRACE] = ACTIONS(12553), + [anon_sym_LPAREN] = ACTIONS(12553), + [anon_sym_COMMA] = ACTIONS(12553), + [anon_sym_EQ] = ACTIONS(12553), + [sym_word] = ACTIONS(12553), + [sym_param] = ACTIONS(12553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12553), + [anon_sym_DOLLAR] = ACTIONS(12555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12553), + [anon_sym_BSLASHbegin] = ACTIONS(12555), + [anon_sym_BSLASHcaption] = ACTIONS(12555), + [anon_sym_BSLASHcite] = ACTIONS(12555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCite] = ACTIONS(12555), + [anon_sym_BSLASHnocite] = ACTIONS(12555), + [anon_sym_BSLASHcitet] = ACTIONS(12555), + [anon_sym_BSLASHcitep] = ACTIONS(12555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteauthor] = ACTIONS(12555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitetitle] = ACTIONS(12555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteyear] = ACTIONS(12555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitedate] = ACTIONS(12555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteurl] = ACTIONS(12555), + [anon_sym_BSLASHfullcite] = ACTIONS(12555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12555), + [anon_sym_BSLASHcitealt] = ACTIONS(12555), + [anon_sym_BSLASHcitealp] = ACTIONS(12555), + [anon_sym_BSLASHcitetext] = ACTIONS(12555), + [anon_sym_BSLASHparencite] = ACTIONS(12555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHParencite] = ACTIONS(12555), + [anon_sym_BSLASHfootcite] = ACTIONS(12555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12555), + [anon_sym_BSLASHtextcite] = ACTIONS(12555), + [anon_sym_BSLASHTextcite] = ACTIONS(12555), + [anon_sym_BSLASHsmartcite] = ACTIONS(12555), + [anon_sym_BSLASHSmartcite] = ACTIONS(12555), + [anon_sym_BSLASHsupercite] = ACTIONS(12555), + [anon_sym_BSLASHautocite] = ACTIONS(12555), + [anon_sym_BSLASHAutocite] = ACTIONS(12555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHvolcite] = ACTIONS(12555), + [anon_sym_BSLASHVolcite] = ACTIONS(12555), + [anon_sym_BSLASHpvolcite] = ACTIONS(12555), + [anon_sym_BSLASHPvolcite] = ACTIONS(12555), + [anon_sym_BSLASHfvolcite] = ACTIONS(12555), + [anon_sym_BSLASHftvolcite] = ACTIONS(12555), + [anon_sym_BSLASHsvolcite] = ACTIONS(12555), + [anon_sym_BSLASHSvolcite] = ACTIONS(12555), + [anon_sym_BSLASHtvolcite] = ACTIONS(12555), + [anon_sym_BSLASHTvolcite] = ACTIONS(12555), + [anon_sym_BSLASHavolcite] = ACTIONS(12555), + [anon_sym_BSLASHAvolcite] = ACTIONS(12555), + [anon_sym_BSLASHnotecite] = ACTIONS(12555), + [anon_sym_BSLASHpnotecite] = ACTIONS(12555), + [anon_sym_BSLASHPnotecite] = ACTIONS(12555), + [anon_sym_BSLASHfnotecite] = ACTIONS(12555), + [anon_sym_BSLASHusepackage] = ACTIONS(12555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12555), + [anon_sym_BSLASHinclude] = ACTIONS(12555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12555), + [anon_sym_BSLASHinput] = ACTIONS(12555), + [anon_sym_BSLASHsubfile] = ACTIONS(12555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12555), + [anon_sym_BSLASHbibliography] = ACTIONS(12555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12555), + [anon_sym_BSLASHincludesvg] = ACTIONS(12555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12555), + [anon_sym_BSLASHimport] = ACTIONS(12555), + [anon_sym_BSLASHsubimport] = ACTIONS(12555), + [anon_sym_BSLASHinputfrom] = ACTIONS(12555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12555), + [anon_sym_BSLASHincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHlabel] = ACTIONS(12555), + [anon_sym_BSLASHref] = ACTIONS(12555), + [anon_sym_BSLASHvref] = ACTIONS(12555), + [anon_sym_BSLASHVref] = ACTIONS(12555), + [anon_sym_BSLASHautoref] = ACTIONS(12555), + [anon_sym_BSLASHpageref] = ACTIONS(12555), + [anon_sym_BSLASHcref] = ACTIONS(12555), + [anon_sym_BSLASHCref] = ACTIONS(12555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnameCref] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHlabelcref] = ACTIONS(12555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12555), + [anon_sym_BSLASHeqref] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange] = ACTIONS(12555), + [anon_sym_BSLASHCrefrange] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewlabel] = ACTIONS(12555), + [anon_sym_BSLASHnewcommand] = ACTIONS(12555), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12555), + [anon_sym_BSLASHgls] = ACTIONS(12555), + [anon_sym_BSLASHGls] = ACTIONS(12555), + [anon_sym_BSLASHGLS] = ACTIONS(12555), + [anon_sym_BSLASHglspl] = ACTIONS(12555), + [anon_sym_BSLASHGlspl] = ACTIONS(12555), + [anon_sym_BSLASHGLSpl] = ACTIONS(12555), + [anon_sym_BSLASHglsdisp] = ACTIONS(12555), + [anon_sym_BSLASHglslink] = ACTIONS(12555), + [anon_sym_BSLASHglstext] = ACTIONS(12555), + [anon_sym_BSLASHGlstext] = ACTIONS(12555), + [anon_sym_BSLASHGLStext] = ACTIONS(12555), + [anon_sym_BSLASHglsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12555), + [anon_sym_BSLASHglsplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSplural] = ACTIONS(12555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHglsname] = ACTIONS(12555), + [anon_sym_BSLASHGlsname] = ACTIONS(12555), + [anon_sym_BSLASHGLSname] = ACTIONS(12555), + [anon_sym_BSLASHglssymbol] = ACTIONS(12555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12555), + [anon_sym_BSLASHglsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12555), + [anon_sym_BSLASHglsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12555), + [anon_sym_BSLASHglsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12555), + [anon_sym_BSLASHglsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12555), + [anon_sym_BSLASHglsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12555), + [anon_sym_BSLASHnewacronym] = ACTIONS(12555), + [anon_sym_BSLASHacrshort] = ACTIONS(12555), + [anon_sym_BSLASHAcrshort] = ACTIONS(12555), + [anon_sym_BSLASHACRshort] = ACTIONS(12555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12555), + [anon_sym_BSLASHacrlong] = ACTIONS(12555), + [anon_sym_BSLASHAcrlong] = ACTIONS(12555), + [anon_sym_BSLASHACRlong] = ACTIONS(12555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12555), + [anon_sym_BSLASHacrfull] = ACTIONS(12555), + [anon_sym_BSLASHAcrfull] = ACTIONS(12555), + [anon_sym_BSLASHACRfull] = ACTIONS(12555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12555), + [anon_sym_BSLASHacs] = ACTIONS(12555), + [anon_sym_BSLASHAcs] = ACTIONS(12555), + [anon_sym_BSLASHacsp] = ACTIONS(12555), + [anon_sym_BSLASHAcsp] = ACTIONS(12555), + [anon_sym_BSLASHacl] = ACTIONS(12555), + [anon_sym_BSLASHAcl] = ACTIONS(12555), + [anon_sym_BSLASHaclp] = ACTIONS(12555), + [anon_sym_BSLASHAclp] = ACTIONS(12555), + [anon_sym_BSLASHacf] = ACTIONS(12555), + [anon_sym_BSLASHAcf] = ACTIONS(12555), + [anon_sym_BSLASHacfp] = ACTIONS(12555), + [anon_sym_BSLASHAcfp] = ACTIONS(12555), + [anon_sym_BSLASHac] = ACTIONS(12555), + [anon_sym_BSLASHAc] = ACTIONS(12555), + [anon_sym_BSLASHacp] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12555), + [anon_sym_BSLASHcolor] = ACTIONS(12555), + [anon_sym_BSLASHcolorbox] = ACTIONS(12555), + [anon_sym_BSLASHtextcolor] = ACTIONS(12555), + [anon_sym_BSLASHpagecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12555), + }, + [1715] = { + [sym_generic_command_name] = ACTIONS(12551), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12551), + [anon_sym_BSLASHitem] = ACTIONS(12551), + [anon_sym_LBRACK] = ACTIONS(12549), + [anon_sym_RBRACK] = ACTIONS(12549), + [anon_sym_LBRACE] = ACTIONS(12549), + [anon_sym_RBRACE] = ACTIONS(12549), + [anon_sym_LPAREN] = ACTIONS(12549), + [anon_sym_COMMA] = ACTIONS(12549), + [anon_sym_EQ] = ACTIONS(12549), + [sym_word] = ACTIONS(12549), + [sym_param] = ACTIONS(12549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12549), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12549), + [anon_sym_DOLLAR] = ACTIONS(12551), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12549), + [anon_sym_BSLASHbegin] = ACTIONS(12551), + [anon_sym_BSLASHcaption] = ACTIONS(12551), + [anon_sym_BSLASHcite] = ACTIONS(12551), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCite] = ACTIONS(12551), + [anon_sym_BSLASHnocite] = ACTIONS(12551), + [anon_sym_BSLASHcitet] = ACTIONS(12551), + [anon_sym_BSLASHcitep] = ACTIONS(12551), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteauthor] = ACTIONS(12551), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12551), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitetitle] = ACTIONS(12551), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteyear] = ACTIONS(12551), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitedate] = ACTIONS(12551), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteurl] = ACTIONS(12551), + [anon_sym_BSLASHfullcite] = ACTIONS(12551), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12551), + [anon_sym_BSLASHcitealt] = ACTIONS(12551), + [anon_sym_BSLASHcitealp] = ACTIONS(12551), + [anon_sym_BSLASHcitetext] = ACTIONS(12551), + [anon_sym_BSLASHparencite] = ACTIONS(12551), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHParencite] = ACTIONS(12551), + [anon_sym_BSLASHfootcite] = ACTIONS(12551), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12551), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12551), + [anon_sym_BSLASHtextcite] = ACTIONS(12551), + [anon_sym_BSLASHTextcite] = ACTIONS(12551), + [anon_sym_BSLASHsmartcite] = ACTIONS(12551), + [anon_sym_BSLASHSmartcite] = ACTIONS(12551), + [anon_sym_BSLASHsupercite] = ACTIONS(12551), + [anon_sym_BSLASHautocite] = ACTIONS(12551), + [anon_sym_BSLASHAutocite] = ACTIONS(12551), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHvolcite] = ACTIONS(12551), + [anon_sym_BSLASHVolcite] = ACTIONS(12551), + [anon_sym_BSLASHpvolcite] = ACTIONS(12551), + [anon_sym_BSLASHPvolcite] = ACTIONS(12551), + [anon_sym_BSLASHfvolcite] = ACTIONS(12551), + [anon_sym_BSLASHftvolcite] = ACTIONS(12551), + [anon_sym_BSLASHsvolcite] = ACTIONS(12551), + [anon_sym_BSLASHSvolcite] = ACTIONS(12551), + [anon_sym_BSLASHtvolcite] = ACTIONS(12551), + [anon_sym_BSLASHTvolcite] = ACTIONS(12551), + [anon_sym_BSLASHavolcite] = ACTIONS(12551), + [anon_sym_BSLASHAvolcite] = ACTIONS(12551), + [anon_sym_BSLASHnotecite] = ACTIONS(12551), + [anon_sym_BSLASHpnotecite] = ACTIONS(12551), + [anon_sym_BSLASHPnotecite] = ACTIONS(12551), + [anon_sym_BSLASHfnotecite] = ACTIONS(12551), + [anon_sym_BSLASHusepackage] = ACTIONS(12551), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12551), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12551), + [anon_sym_BSLASHinclude] = ACTIONS(12551), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12551), + [anon_sym_BSLASHinput] = ACTIONS(12551), + [anon_sym_BSLASHsubfile] = ACTIONS(12551), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12551), + [anon_sym_BSLASHbibliography] = ACTIONS(12551), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12551), + [anon_sym_BSLASHincludesvg] = ACTIONS(12551), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12551), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12551), + [anon_sym_BSLASHimport] = ACTIONS(12551), + [anon_sym_BSLASHsubimport] = ACTIONS(12551), + [anon_sym_BSLASHinputfrom] = ACTIONS(12551), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12551), + [anon_sym_BSLASHincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHlabel] = ACTIONS(12551), + [anon_sym_BSLASHref] = ACTIONS(12551), + [anon_sym_BSLASHvref] = ACTIONS(12551), + [anon_sym_BSLASHVref] = ACTIONS(12551), + [anon_sym_BSLASHautoref] = ACTIONS(12551), + [anon_sym_BSLASHpageref] = ACTIONS(12551), + [anon_sym_BSLASHcref] = ACTIONS(12551), + [anon_sym_BSLASHCref] = ACTIONS(12551), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnameCref] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHlabelcref] = ACTIONS(12551), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12551), + [anon_sym_BSLASHeqref] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange] = ACTIONS(12551), + [anon_sym_BSLASHCrefrange] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewlabel] = ACTIONS(12551), + [anon_sym_BSLASHnewcommand] = ACTIONS(12551), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12551), + [anon_sym_BSLASHgls] = ACTIONS(12551), + [anon_sym_BSLASHGls] = ACTIONS(12551), + [anon_sym_BSLASHGLS] = ACTIONS(12551), + [anon_sym_BSLASHglspl] = ACTIONS(12551), + [anon_sym_BSLASHGlspl] = ACTIONS(12551), + [anon_sym_BSLASHGLSpl] = ACTIONS(12551), + [anon_sym_BSLASHglsdisp] = ACTIONS(12551), + [anon_sym_BSLASHglslink] = ACTIONS(12551), + [anon_sym_BSLASHglstext] = ACTIONS(12551), + [anon_sym_BSLASHGlstext] = ACTIONS(12551), + [anon_sym_BSLASHGLStext] = ACTIONS(12551), + [anon_sym_BSLASHglsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12551), + [anon_sym_BSLASHglsplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSplural] = ACTIONS(12551), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHglsname] = ACTIONS(12551), + [anon_sym_BSLASHGlsname] = ACTIONS(12551), + [anon_sym_BSLASHGLSname] = ACTIONS(12551), + [anon_sym_BSLASHglssymbol] = ACTIONS(12551), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12551), + [anon_sym_BSLASHglsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12551), + [anon_sym_BSLASHglsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12551), + [anon_sym_BSLASHglsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12551), + [anon_sym_BSLASHglsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12551), + [anon_sym_BSLASHglsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12551), + [anon_sym_BSLASHnewacronym] = ACTIONS(12551), + [anon_sym_BSLASHacrshort] = ACTIONS(12551), + [anon_sym_BSLASHAcrshort] = ACTIONS(12551), + [anon_sym_BSLASHACRshort] = ACTIONS(12551), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12551), + [anon_sym_BSLASHacrlong] = ACTIONS(12551), + [anon_sym_BSLASHAcrlong] = ACTIONS(12551), + [anon_sym_BSLASHACRlong] = ACTIONS(12551), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12551), + [anon_sym_BSLASHacrfull] = ACTIONS(12551), + [anon_sym_BSLASHAcrfull] = ACTIONS(12551), + [anon_sym_BSLASHACRfull] = ACTIONS(12551), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12551), + [anon_sym_BSLASHacs] = ACTIONS(12551), + [anon_sym_BSLASHAcs] = ACTIONS(12551), + [anon_sym_BSLASHacsp] = ACTIONS(12551), + [anon_sym_BSLASHAcsp] = ACTIONS(12551), + [anon_sym_BSLASHacl] = ACTIONS(12551), + [anon_sym_BSLASHAcl] = ACTIONS(12551), + [anon_sym_BSLASHaclp] = ACTIONS(12551), + [anon_sym_BSLASHAclp] = ACTIONS(12551), + [anon_sym_BSLASHacf] = ACTIONS(12551), + [anon_sym_BSLASHAcf] = ACTIONS(12551), + [anon_sym_BSLASHacfp] = ACTIONS(12551), + [anon_sym_BSLASHAcfp] = ACTIONS(12551), + [anon_sym_BSLASHac] = ACTIONS(12551), + [anon_sym_BSLASHAc] = ACTIONS(12551), + [anon_sym_BSLASHacp] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12551), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12551), + [anon_sym_BSLASHcolor] = ACTIONS(12551), + [anon_sym_BSLASHcolorbox] = ACTIONS(12551), + [anon_sym_BSLASHtextcolor] = ACTIONS(12551), + [anon_sym_BSLASHpagecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12551), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12551), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12551), + }, + [1716] = { + [sym_generic_command_name] = ACTIONS(12535), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12535), + [anon_sym_BSLASHitem] = ACTIONS(12535), + [anon_sym_LBRACK] = ACTIONS(12533), + [anon_sym_RBRACK] = ACTIONS(12533), + [anon_sym_LBRACE] = ACTIONS(12533), + [anon_sym_RBRACE] = ACTIONS(12533), + [anon_sym_LPAREN] = ACTIONS(12533), + [anon_sym_COMMA] = ACTIONS(12533), + [anon_sym_EQ] = ACTIONS(12533), + [sym_word] = ACTIONS(12533), + [sym_param] = ACTIONS(12533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12533), + [anon_sym_DOLLAR] = ACTIONS(12535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12533), + [anon_sym_BSLASHbegin] = ACTIONS(12535), + [anon_sym_BSLASHcaption] = ACTIONS(12535), + [anon_sym_BSLASHcite] = ACTIONS(12535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCite] = ACTIONS(12535), + [anon_sym_BSLASHnocite] = ACTIONS(12535), + [anon_sym_BSLASHcitet] = ACTIONS(12535), + [anon_sym_BSLASHcitep] = ACTIONS(12535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteauthor] = ACTIONS(12535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitetitle] = ACTIONS(12535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteyear] = ACTIONS(12535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitedate] = ACTIONS(12535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteurl] = ACTIONS(12535), + [anon_sym_BSLASHfullcite] = ACTIONS(12535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12535), + [anon_sym_BSLASHcitealt] = ACTIONS(12535), + [anon_sym_BSLASHcitealp] = ACTIONS(12535), + [anon_sym_BSLASHcitetext] = ACTIONS(12535), + [anon_sym_BSLASHparencite] = ACTIONS(12535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHParencite] = ACTIONS(12535), + [anon_sym_BSLASHfootcite] = ACTIONS(12535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12535), + [anon_sym_BSLASHtextcite] = ACTIONS(12535), + [anon_sym_BSLASHTextcite] = ACTIONS(12535), + [anon_sym_BSLASHsmartcite] = ACTIONS(12535), + [anon_sym_BSLASHSmartcite] = ACTIONS(12535), + [anon_sym_BSLASHsupercite] = ACTIONS(12535), + [anon_sym_BSLASHautocite] = ACTIONS(12535), + [anon_sym_BSLASHAutocite] = ACTIONS(12535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHvolcite] = ACTIONS(12535), + [anon_sym_BSLASHVolcite] = ACTIONS(12535), + [anon_sym_BSLASHpvolcite] = ACTIONS(12535), + [anon_sym_BSLASHPvolcite] = ACTIONS(12535), + [anon_sym_BSLASHfvolcite] = ACTIONS(12535), + [anon_sym_BSLASHftvolcite] = ACTIONS(12535), + [anon_sym_BSLASHsvolcite] = ACTIONS(12535), + [anon_sym_BSLASHSvolcite] = ACTIONS(12535), + [anon_sym_BSLASHtvolcite] = ACTIONS(12535), + [anon_sym_BSLASHTvolcite] = ACTIONS(12535), + [anon_sym_BSLASHavolcite] = ACTIONS(12535), + [anon_sym_BSLASHAvolcite] = ACTIONS(12535), + [anon_sym_BSLASHnotecite] = ACTIONS(12535), + [anon_sym_BSLASHpnotecite] = ACTIONS(12535), + [anon_sym_BSLASHPnotecite] = ACTIONS(12535), + [anon_sym_BSLASHfnotecite] = ACTIONS(12535), + [anon_sym_BSLASHusepackage] = ACTIONS(12535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12535), + [anon_sym_BSLASHinclude] = ACTIONS(12535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12535), + [anon_sym_BSLASHinput] = ACTIONS(12535), + [anon_sym_BSLASHsubfile] = ACTIONS(12535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12535), + [anon_sym_BSLASHbibliography] = ACTIONS(12535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12535), + [anon_sym_BSLASHincludesvg] = ACTIONS(12535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12535), + [anon_sym_BSLASHimport] = ACTIONS(12535), + [anon_sym_BSLASHsubimport] = ACTIONS(12535), + [anon_sym_BSLASHinputfrom] = ACTIONS(12535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12535), + [anon_sym_BSLASHincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHlabel] = ACTIONS(12535), + [anon_sym_BSLASHref] = ACTIONS(12535), + [anon_sym_BSLASHvref] = ACTIONS(12535), + [anon_sym_BSLASHVref] = ACTIONS(12535), + [anon_sym_BSLASHautoref] = ACTIONS(12535), + [anon_sym_BSLASHpageref] = ACTIONS(12535), + [anon_sym_BSLASHcref] = ACTIONS(12535), + [anon_sym_BSLASHCref] = ACTIONS(12535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnameCref] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHlabelcref] = ACTIONS(12535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12535), + [anon_sym_BSLASHeqref] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange] = ACTIONS(12535), + [anon_sym_BSLASHCrefrange] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewlabel] = ACTIONS(12535), + [anon_sym_BSLASHnewcommand] = ACTIONS(12535), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12535), + [anon_sym_BSLASHgls] = ACTIONS(12535), + [anon_sym_BSLASHGls] = ACTIONS(12535), + [anon_sym_BSLASHGLS] = ACTIONS(12535), + [anon_sym_BSLASHglspl] = ACTIONS(12535), + [anon_sym_BSLASHGlspl] = ACTIONS(12535), + [anon_sym_BSLASHGLSpl] = ACTIONS(12535), + [anon_sym_BSLASHglsdisp] = ACTIONS(12535), + [anon_sym_BSLASHglslink] = ACTIONS(12535), + [anon_sym_BSLASHglstext] = ACTIONS(12535), + [anon_sym_BSLASHGlstext] = ACTIONS(12535), + [anon_sym_BSLASHGLStext] = ACTIONS(12535), + [anon_sym_BSLASHglsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12535), + [anon_sym_BSLASHglsplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSplural] = ACTIONS(12535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHglsname] = ACTIONS(12535), + [anon_sym_BSLASHGlsname] = ACTIONS(12535), + [anon_sym_BSLASHGLSname] = ACTIONS(12535), + [anon_sym_BSLASHglssymbol] = ACTIONS(12535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12535), + [anon_sym_BSLASHglsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12535), + [anon_sym_BSLASHglsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12535), + [anon_sym_BSLASHglsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12535), + [anon_sym_BSLASHglsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12535), + [anon_sym_BSLASHglsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12535), + [anon_sym_BSLASHnewacronym] = ACTIONS(12535), + [anon_sym_BSLASHacrshort] = ACTIONS(12535), + [anon_sym_BSLASHAcrshort] = ACTIONS(12535), + [anon_sym_BSLASHACRshort] = ACTIONS(12535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12535), + [anon_sym_BSLASHacrlong] = ACTIONS(12535), + [anon_sym_BSLASHAcrlong] = ACTIONS(12535), + [anon_sym_BSLASHACRlong] = ACTIONS(12535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12535), + [anon_sym_BSLASHacrfull] = ACTIONS(12535), + [anon_sym_BSLASHAcrfull] = ACTIONS(12535), + [anon_sym_BSLASHACRfull] = ACTIONS(12535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12535), + [anon_sym_BSLASHacs] = ACTIONS(12535), + [anon_sym_BSLASHAcs] = ACTIONS(12535), + [anon_sym_BSLASHacsp] = ACTIONS(12535), + [anon_sym_BSLASHAcsp] = ACTIONS(12535), + [anon_sym_BSLASHacl] = ACTIONS(12535), + [anon_sym_BSLASHAcl] = ACTIONS(12535), + [anon_sym_BSLASHaclp] = ACTIONS(12535), + [anon_sym_BSLASHAclp] = ACTIONS(12535), + [anon_sym_BSLASHacf] = ACTIONS(12535), + [anon_sym_BSLASHAcf] = ACTIONS(12535), + [anon_sym_BSLASHacfp] = ACTIONS(12535), + [anon_sym_BSLASHAcfp] = ACTIONS(12535), + [anon_sym_BSLASHac] = ACTIONS(12535), + [anon_sym_BSLASHAc] = ACTIONS(12535), + [anon_sym_BSLASHacp] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12535), + [anon_sym_BSLASHcolor] = ACTIONS(12535), + [anon_sym_BSLASHcolorbox] = ACTIONS(12535), + [anon_sym_BSLASHtextcolor] = ACTIONS(12535), + [anon_sym_BSLASHpagecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12535), + }, + [1717] = { + [sym_generic_command_name] = ACTIONS(12505), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12505), + [anon_sym_BSLASHitem] = ACTIONS(12505), + [anon_sym_LBRACK] = ACTIONS(12503), + [anon_sym_RBRACK] = ACTIONS(12503), + [anon_sym_LBRACE] = ACTIONS(12503), + [anon_sym_RBRACE] = ACTIONS(12503), + [anon_sym_LPAREN] = ACTIONS(12503), + [anon_sym_COMMA] = ACTIONS(12503), + [anon_sym_EQ] = ACTIONS(12503), + [sym_word] = ACTIONS(12503), + [sym_param] = ACTIONS(12503), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12503), + [anon_sym_DOLLAR] = ACTIONS(12505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12503), + [anon_sym_BSLASHbegin] = ACTIONS(12505), + [anon_sym_BSLASHcaption] = ACTIONS(12505), + [anon_sym_BSLASHcite] = ACTIONS(12505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCite] = ACTIONS(12505), + [anon_sym_BSLASHnocite] = ACTIONS(12505), + [anon_sym_BSLASHcitet] = ACTIONS(12505), + [anon_sym_BSLASHcitep] = ACTIONS(12505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteauthor] = ACTIONS(12505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitetitle] = ACTIONS(12505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteyear] = ACTIONS(12505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitedate] = ACTIONS(12505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteurl] = ACTIONS(12505), + [anon_sym_BSLASHfullcite] = ACTIONS(12505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12505), + [anon_sym_BSLASHcitealt] = ACTIONS(12505), + [anon_sym_BSLASHcitealp] = ACTIONS(12505), + [anon_sym_BSLASHcitetext] = ACTIONS(12505), + [anon_sym_BSLASHparencite] = ACTIONS(12505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHParencite] = ACTIONS(12505), + [anon_sym_BSLASHfootcite] = ACTIONS(12505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12505), + [anon_sym_BSLASHtextcite] = ACTIONS(12505), + [anon_sym_BSLASHTextcite] = ACTIONS(12505), + [anon_sym_BSLASHsmartcite] = ACTIONS(12505), + [anon_sym_BSLASHSmartcite] = ACTIONS(12505), + [anon_sym_BSLASHsupercite] = ACTIONS(12505), + [anon_sym_BSLASHautocite] = ACTIONS(12505), + [anon_sym_BSLASHAutocite] = ACTIONS(12505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHvolcite] = ACTIONS(12505), + [anon_sym_BSLASHVolcite] = ACTIONS(12505), + [anon_sym_BSLASHpvolcite] = ACTIONS(12505), + [anon_sym_BSLASHPvolcite] = ACTIONS(12505), + [anon_sym_BSLASHfvolcite] = ACTIONS(12505), + [anon_sym_BSLASHftvolcite] = ACTIONS(12505), + [anon_sym_BSLASHsvolcite] = ACTIONS(12505), + [anon_sym_BSLASHSvolcite] = ACTIONS(12505), + [anon_sym_BSLASHtvolcite] = ACTIONS(12505), + [anon_sym_BSLASHTvolcite] = ACTIONS(12505), + [anon_sym_BSLASHavolcite] = ACTIONS(12505), + [anon_sym_BSLASHAvolcite] = ACTIONS(12505), + [anon_sym_BSLASHnotecite] = ACTIONS(12505), + [anon_sym_BSLASHpnotecite] = ACTIONS(12505), + [anon_sym_BSLASHPnotecite] = ACTIONS(12505), + [anon_sym_BSLASHfnotecite] = ACTIONS(12505), + [anon_sym_BSLASHusepackage] = ACTIONS(12505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12505), + [anon_sym_BSLASHinclude] = ACTIONS(12505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12505), + [anon_sym_BSLASHinput] = ACTIONS(12505), + [anon_sym_BSLASHsubfile] = ACTIONS(12505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12505), + [anon_sym_BSLASHbibliography] = ACTIONS(12505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12505), + [anon_sym_BSLASHincludesvg] = ACTIONS(12505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12505), + [anon_sym_BSLASHimport] = ACTIONS(12505), + [anon_sym_BSLASHsubimport] = ACTIONS(12505), + [anon_sym_BSLASHinputfrom] = ACTIONS(12505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12505), + [anon_sym_BSLASHincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHlabel] = ACTIONS(12505), + [anon_sym_BSLASHref] = ACTIONS(12505), + [anon_sym_BSLASHvref] = ACTIONS(12505), + [anon_sym_BSLASHVref] = ACTIONS(12505), + [anon_sym_BSLASHautoref] = ACTIONS(12505), + [anon_sym_BSLASHpageref] = ACTIONS(12505), + [anon_sym_BSLASHcref] = ACTIONS(12505), + [anon_sym_BSLASHCref] = ACTIONS(12505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnameCref] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHlabelcref] = ACTIONS(12505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12505), + [anon_sym_BSLASHeqref] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange] = ACTIONS(12505), + [anon_sym_BSLASHCrefrange] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewlabel] = ACTIONS(12505), + [anon_sym_BSLASHnewcommand] = ACTIONS(12505), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12505), + [anon_sym_BSLASHgls] = ACTIONS(12505), + [anon_sym_BSLASHGls] = ACTIONS(12505), + [anon_sym_BSLASHGLS] = ACTIONS(12505), + [anon_sym_BSLASHglspl] = ACTIONS(12505), + [anon_sym_BSLASHGlspl] = ACTIONS(12505), + [anon_sym_BSLASHGLSpl] = ACTIONS(12505), + [anon_sym_BSLASHglsdisp] = ACTIONS(12505), + [anon_sym_BSLASHglslink] = ACTIONS(12505), + [anon_sym_BSLASHglstext] = ACTIONS(12505), + [anon_sym_BSLASHGlstext] = ACTIONS(12505), + [anon_sym_BSLASHGLStext] = ACTIONS(12505), + [anon_sym_BSLASHglsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12505), + [anon_sym_BSLASHglsplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSplural] = ACTIONS(12505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHglsname] = ACTIONS(12505), + [anon_sym_BSLASHGlsname] = ACTIONS(12505), + [anon_sym_BSLASHGLSname] = ACTIONS(12505), + [anon_sym_BSLASHglssymbol] = ACTIONS(12505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12505), + [anon_sym_BSLASHglsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12505), + [anon_sym_BSLASHglsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12505), + [anon_sym_BSLASHglsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12505), + [anon_sym_BSLASHglsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12505), + [anon_sym_BSLASHglsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12505), + [anon_sym_BSLASHnewacronym] = ACTIONS(12505), + [anon_sym_BSLASHacrshort] = ACTIONS(12505), + [anon_sym_BSLASHAcrshort] = ACTIONS(12505), + [anon_sym_BSLASHACRshort] = ACTIONS(12505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12505), + [anon_sym_BSLASHacrlong] = ACTIONS(12505), + [anon_sym_BSLASHAcrlong] = ACTIONS(12505), + [anon_sym_BSLASHACRlong] = ACTIONS(12505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12505), + [anon_sym_BSLASHacrfull] = ACTIONS(12505), + [anon_sym_BSLASHAcrfull] = ACTIONS(12505), + [anon_sym_BSLASHACRfull] = ACTIONS(12505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12505), + [anon_sym_BSLASHacs] = ACTIONS(12505), + [anon_sym_BSLASHAcs] = ACTIONS(12505), + [anon_sym_BSLASHacsp] = ACTIONS(12505), + [anon_sym_BSLASHAcsp] = ACTIONS(12505), + [anon_sym_BSLASHacl] = ACTIONS(12505), + [anon_sym_BSLASHAcl] = ACTIONS(12505), + [anon_sym_BSLASHaclp] = ACTIONS(12505), + [anon_sym_BSLASHAclp] = ACTIONS(12505), + [anon_sym_BSLASHacf] = ACTIONS(12505), + [anon_sym_BSLASHAcf] = ACTIONS(12505), + [anon_sym_BSLASHacfp] = ACTIONS(12505), + [anon_sym_BSLASHAcfp] = ACTIONS(12505), + [anon_sym_BSLASHac] = ACTIONS(12505), + [anon_sym_BSLASHAc] = ACTIONS(12505), + [anon_sym_BSLASHacp] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12505), + [anon_sym_BSLASHcolor] = ACTIONS(12505), + [anon_sym_BSLASHcolorbox] = ACTIONS(12505), + [anon_sym_BSLASHtextcolor] = ACTIONS(12505), + [anon_sym_BSLASHpagecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12505), + }, + [1718] = { + [sym_generic_command_name] = ACTIONS(12489), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12489), + [anon_sym_BSLASHitem] = ACTIONS(12489), + [anon_sym_LBRACK] = ACTIONS(12487), + [anon_sym_RBRACK] = ACTIONS(12487), + [anon_sym_LBRACE] = ACTIONS(12487), + [anon_sym_RBRACE] = ACTIONS(12487), + [anon_sym_LPAREN] = ACTIONS(12487), + [anon_sym_COMMA] = ACTIONS(12487), + [anon_sym_EQ] = ACTIONS(12487), + [sym_word] = ACTIONS(12487), + [sym_param] = ACTIONS(12487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12487), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12487), + [anon_sym_DOLLAR] = ACTIONS(12489), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12487), + [anon_sym_BSLASHbegin] = ACTIONS(12489), + [anon_sym_BSLASHcaption] = ACTIONS(12489), + [anon_sym_BSLASHcite] = ACTIONS(12489), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCite] = ACTIONS(12489), + [anon_sym_BSLASHnocite] = ACTIONS(12489), + [anon_sym_BSLASHcitet] = ACTIONS(12489), + [anon_sym_BSLASHcitep] = ACTIONS(12489), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteauthor] = ACTIONS(12489), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12489), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitetitle] = ACTIONS(12489), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteyear] = ACTIONS(12489), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitedate] = ACTIONS(12489), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteurl] = ACTIONS(12489), + [anon_sym_BSLASHfullcite] = ACTIONS(12489), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12489), + [anon_sym_BSLASHcitealt] = ACTIONS(12489), + [anon_sym_BSLASHcitealp] = ACTIONS(12489), + [anon_sym_BSLASHcitetext] = ACTIONS(12489), + [anon_sym_BSLASHparencite] = ACTIONS(12489), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHParencite] = ACTIONS(12489), + [anon_sym_BSLASHfootcite] = ACTIONS(12489), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12489), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12489), + [anon_sym_BSLASHtextcite] = ACTIONS(12489), + [anon_sym_BSLASHTextcite] = ACTIONS(12489), + [anon_sym_BSLASHsmartcite] = ACTIONS(12489), + [anon_sym_BSLASHSmartcite] = ACTIONS(12489), + [anon_sym_BSLASHsupercite] = ACTIONS(12489), + [anon_sym_BSLASHautocite] = ACTIONS(12489), + [anon_sym_BSLASHAutocite] = ACTIONS(12489), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHvolcite] = ACTIONS(12489), + [anon_sym_BSLASHVolcite] = ACTIONS(12489), + [anon_sym_BSLASHpvolcite] = ACTIONS(12489), + [anon_sym_BSLASHPvolcite] = ACTIONS(12489), + [anon_sym_BSLASHfvolcite] = ACTIONS(12489), + [anon_sym_BSLASHftvolcite] = ACTIONS(12489), + [anon_sym_BSLASHsvolcite] = ACTIONS(12489), + [anon_sym_BSLASHSvolcite] = ACTIONS(12489), + [anon_sym_BSLASHtvolcite] = ACTIONS(12489), + [anon_sym_BSLASHTvolcite] = ACTIONS(12489), + [anon_sym_BSLASHavolcite] = ACTIONS(12489), + [anon_sym_BSLASHAvolcite] = ACTIONS(12489), + [anon_sym_BSLASHnotecite] = ACTIONS(12489), + [anon_sym_BSLASHpnotecite] = ACTIONS(12489), + [anon_sym_BSLASHPnotecite] = ACTIONS(12489), + [anon_sym_BSLASHfnotecite] = ACTIONS(12489), + [anon_sym_BSLASHusepackage] = ACTIONS(12489), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12489), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12489), + [anon_sym_BSLASHinclude] = ACTIONS(12489), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12489), + [anon_sym_BSLASHinput] = ACTIONS(12489), + [anon_sym_BSLASHsubfile] = ACTIONS(12489), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12489), + [anon_sym_BSLASHbibliography] = ACTIONS(12489), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12489), + [anon_sym_BSLASHincludesvg] = ACTIONS(12489), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12489), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12489), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12489), + [anon_sym_BSLASHimport] = ACTIONS(12489), + [anon_sym_BSLASHsubimport] = ACTIONS(12489), + [anon_sym_BSLASHinputfrom] = ACTIONS(12489), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12489), + [anon_sym_BSLASHincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHlabel] = ACTIONS(12489), + [anon_sym_BSLASHref] = ACTIONS(12489), + [anon_sym_BSLASHvref] = ACTIONS(12489), + [anon_sym_BSLASHVref] = ACTIONS(12489), + [anon_sym_BSLASHautoref] = ACTIONS(12489), + [anon_sym_BSLASHpageref] = ACTIONS(12489), + [anon_sym_BSLASHcref] = ACTIONS(12489), + [anon_sym_BSLASHCref] = ACTIONS(12489), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnameCref] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHlabelcref] = ACTIONS(12489), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12489), + [anon_sym_BSLASHeqref] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange] = ACTIONS(12489), + [anon_sym_BSLASHCrefrange] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewlabel] = ACTIONS(12489), + [anon_sym_BSLASHnewcommand] = ACTIONS(12489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12489), + [anon_sym_BSLASHgls] = ACTIONS(12489), + [anon_sym_BSLASHGls] = ACTIONS(12489), + [anon_sym_BSLASHGLS] = ACTIONS(12489), + [anon_sym_BSLASHglspl] = ACTIONS(12489), + [anon_sym_BSLASHGlspl] = ACTIONS(12489), + [anon_sym_BSLASHGLSpl] = ACTIONS(12489), + [anon_sym_BSLASHglsdisp] = ACTIONS(12489), + [anon_sym_BSLASHglslink] = ACTIONS(12489), + [anon_sym_BSLASHglstext] = ACTIONS(12489), + [anon_sym_BSLASHGlstext] = ACTIONS(12489), + [anon_sym_BSLASHGLStext] = ACTIONS(12489), + [anon_sym_BSLASHglsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12489), + [anon_sym_BSLASHglsplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSplural] = ACTIONS(12489), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHglsname] = ACTIONS(12489), + [anon_sym_BSLASHGlsname] = ACTIONS(12489), + [anon_sym_BSLASHGLSname] = ACTIONS(12489), + [anon_sym_BSLASHglssymbol] = ACTIONS(12489), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12489), + [anon_sym_BSLASHglsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12489), + [anon_sym_BSLASHglsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12489), + [anon_sym_BSLASHglsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12489), + [anon_sym_BSLASHglsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12489), + [anon_sym_BSLASHglsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12489), + [anon_sym_BSLASHnewacronym] = ACTIONS(12489), + [anon_sym_BSLASHacrshort] = ACTIONS(12489), + [anon_sym_BSLASHAcrshort] = ACTIONS(12489), + [anon_sym_BSLASHACRshort] = ACTIONS(12489), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12489), + [anon_sym_BSLASHacrlong] = ACTIONS(12489), + [anon_sym_BSLASHAcrlong] = ACTIONS(12489), + [anon_sym_BSLASHACRlong] = ACTIONS(12489), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12489), + [anon_sym_BSLASHacrfull] = ACTIONS(12489), + [anon_sym_BSLASHAcrfull] = ACTIONS(12489), + [anon_sym_BSLASHACRfull] = ACTIONS(12489), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12489), + [anon_sym_BSLASHacs] = ACTIONS(12489), + [anon_sym_BSLASHAcs] = ACTIONS(12489), + [anon_sym_BSLASHacsp] = ACTIONS(12489), + [anon_sym_BSLASHAcsp] = ACTIONS(12489), + [anon_sym_BSLASHacl] = ACTIONS(12489), + [anon_sym_BSLASHAcl] = ACTIONS(12489), + [anon_sym_BSLASHaclp] = ACTIONS(12489), + [anon_sym_BSLASHAclp] = ACTIONS(12489), + [anon_sym_BSLASHacf] = ACTIONS(12489), + [anon_sym_BSLASHAcf] = ACTIONS(12489), + [anon_sym_BSLASHacfp] = ACTIONS(12489), + [anon_sym_BSLASHAcfp] = ACTIONS(12489), + [anon_sym_BSLASHac] = ACTIONS(12489), + [anon_sym_BSLASHAc] = ACTIONS(12489), + [anon_sym_BSLASHacp] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12489), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12489), + [anon_sym_BSLASHcolor] = ACTIONS(12489), + [anon_sym_BSLASHcolorbox] = ACTIONS(12489), + [anon_sym_BSLASHtextcolor] = ACTIONS(12489), + [anon_sym_BSLASHpagecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12489), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12489), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12489), + }, + [1719] = { + [sym_generic_command_name] = ACTIONS(12473), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12473), + [anon_sym_BSLASHitem] = ACTIONS(12473), + [anon_sym_LBRACK] = ACTIONS(12471), + [anon_sym_RBRACK] = ACTIONS(12471), + [anon_sym_LBRACE] = ACTIONS(12471), + [anon_sym_RBRACE] = ACTIONS(12471), + [anon_sym_LPAREN] = ACTIONS(12471), + [anon_sym_COMMA] = ACTIONS(12471), + [anon_sym_EQ] = ACTIONS(12471), + [sym_word] = ACTIONS(12471), + [sym_param] = ACTIONS(12471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12471), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12471), + [anon_sym_DOLLAR] = ACTIONS(12473), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12471), + [anon_sym_BSLASHbegin] = ACTIONS(12473), + [anon_sym_BSLASHcaption] = ACTIONS(12473), + [anon_sym_BSLASHcite] = ACTIONS(12473), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCite] = ACTIONS(12473), + [anon_sym_BSLASHnocite] = ACTIONS(12473), + [anon_sym_BSLASHcitet] = ACTIONS(12473), + [anon_sym_BSLASHcitep] = ACTIONS(12473), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteauthor] = ACTIONS(12473), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12473), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitetitle] = ACTIONS(12473), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteyear] = ACTIONS(12473), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitedate] = ACTIONS(12473), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteurl] = ACTIONS(12473), + [anon_sym_BSLASHfullcite] = ACTIONS(12473), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12473), + [anon_sym_BSLASHcitealt] = ACTIONS(12473), + [anon_sym_BSLASHcitealp] = ACTIONS(12473), + [anon_sym_BSLASHcitetext] = ACTIONS(12473), + [anon_sym_BSLASHparencite] = ACTIONS(12473), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHParencite] = ACTIONS(12473), + [anon_sym_BSLASHfootcite] = ACTIONS(12473), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12473), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12473), + [anon_sym_BSLASHtextcite] = ACTIONS(12473), + [anon_sym_BSLASHTextcite] = ACTIONS(12473), + [anon_sym_BSLASHsmartcite] = ACTIONS(12473), + [anon_sym_BSLASHSmartcite] = ACTIONS(12473), + [anon_sym_BSLASHsupercite] = ACTIONS(12473), + [anon_sym_BSLASHautocite] = ACTIONS(12473), + [anon_sym_BSLASHAutocite] = ACTIONS(12473), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHvolcite] = ACTIONS(12473), + [anon_sym_BSLASHVolcite] = ACTIONS(12473), + [anon_sym_BSLASHpvolcite] = ACTIONS(12473), + [anon_sym_BSLASHPvolcite] = ACTIONS(12473), + [anon_sym_BSLASHfvolcite] = ACTIONS(12473), + [anon_sym_BSLASHftvolcite] = ACTIONS(12473), + [anon_sym_BSLASHsvolcite] = ACTIONS(12473), + [anon_sym_BSLASHSvolcite] = ACTIONS(12473), + [anon_sym_BSLASHtvolcite] = ACTIONS(12473), + [anon_sym_BSLASHTvolcite] = ACTIONS(12473), + [anon_sym_BSLASHavolcite] = ACTIONS(12473), + [anon_sym_BSLASHAvolcite] = ACTIONS(12473), + [anon_sym_BSLASHnotecite] = ACTIONS(12473), + [anon_sym_BSLASHpnotecite] = ACTIONS(12473), + [anon_sym_BSLASHPnotecite] = ACTIONS(12473), + [anon_sym_BSLASHfnotecite] = ACTIONS(12473), + [anon_sym_BSLASHusepackage] = ACTIONS(12473), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12473), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12473), + [anon_sym_BSLASHinclude] = ACTIONS(12473), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12473), + [anon_sym_BSLASHinput] = ACTIONS(12473), + [anon_sym_BSLASHsubfile] = ACTIONS(12473), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12473), + [anon_sym_BSLASHbibliography] = ACTIONS(12473), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12473), + [anon_sym_BSLASHincludesvg] = ACTIONS(12473), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12473), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12473), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12473), + [anon_sym_BSLASHimport] = ACTIONS(12473), + [anon_sym_BSLASHsubimport] = ACTIONS(12473), + [anon_sym_BSLASHinputfrom] = ACTIONS(12473), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12473), + [anon_sym_BSLASHincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHlabel] = ACTIONS(12473), + [anon_sym_BSLASHref] = ACTIONS(12473), + [anon_sym_BSLASHvref] = ACTIONS(12473), + [anon_sym_BSLASHVref] = ACTIONS(12473), + [anon_sym_BSLASHautoref] = ACTIONS(12473), + [anon_sym_BSLASHpageref] = ACTIONS(12473), + [anon_sym_BSLASHcref] = ACTIONS(12473), + [anon_sym_BSLASHCref] = ACTIONS(12473), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnameCref] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHlabelcref] = ACTIONS(12473), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12473), + [anon_sym_BSLASHeqref] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange] = ACTIONS(12473), + [anon_sym_BSLASHCrefrange] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewlabel] = ACTIONS(12473), + [anon_sym_BSLASHnewcommand] = ACTIONS(12473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12473), + [anon_sym_BSLASHgls] = ACTIONS(12473), + [anon_sym_BSLASHGls] = ACTIONS(12473), + [anon_sym_BSLASHGLS] = ACTIONS(12473), + [anon_sym_BSLASHglspl] = ACTIONS(12473), + [anon_sym_BSLASHGlspl] = ACTIONS(12473), + [anon_sym_BSLASHGLSpl] = ACTIONS(12473), + [anon_sym_BSLASHglsdisp] = ACTIONS(12473), + [anon_sym_BSLASHglslink] = ACTIONS(12473), + [anon_sym_BSLASHglstext] = ACTIONS(12473), + [anon_sym_BSLASHGlstext] = ACTIONS(12473), + [anon_sym_BSLASHGLStext] = ACTIONS(12473), + [anon_sym_BSLASHglsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12473), + [anon_sym_BSLASHglsplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSplural] = ACTIONS(12473), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHglsname] = ACTIONS(12473), + [anon_sym_BSLASHGlsname] = ACTIONS(12473), + [anon_sym_BSLASHGLSname] = ACTIONS(12473), + [anon_sym_BSLASHglssymbol] = ACTIONS(12473), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12473), + [anon_sym_BSLASHglsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12473), + [anon_sym_BSLASHglsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12473), + [anon_sym_BSLASHglsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12473), + [anon_sym_BSLASHglsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12473), + [anon_sym_BSLASHglsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12473), + [anon_sym_BSLASHnewacronym] = ACTIONS(12473), + [anon_sym_BSLASHacrshort] = ACTIONS(12473), + [anon_sym_BSLASHAcrshort] = ACTIONS(12473), + [anon_sym_BSLASHACRshort] = ACTIONS(12473), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12473), + [anon_sym_BSLASHacrlong] = ACTIONS(12473), + [anon_sym_BSLASHAcrlong] = ACTIONS(12473), + [anon_sym_BSLASHACRlong] = ACTIONS(12473), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12473), + [anon_sym_BSLASHacrfull] = ACTIONS(12473), + [anon_sym_BSLASHAcrfull] = ACTIONS(12473), + [anon_sym_BSLASHACRfull] = ACTIONS(12473), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12473), + [anon_sym_BSLASHacs] = ACTIONS(12473), + [anon_sym_BSLASHAcs] = ACTIONS(12473), + [anon_sym_BSLASHacsp] = ACTIONS(12473), + [anon_sym_BSLASHAcsp] = ACTIONS(12473), + [anon_sym_BSLASHacl] = ACTIONS(12473), + [anon_sym_BSLASHAcl] = ACTIONS(12473), + [anon_sym_BSLASHaclp] = ACTIONS(12473), + [anon_sym_BSLASHAclp] = ACTIONS(12473), + [anon_sym_BSLASHacf] = ACTIONS(12473), + [anon_sym_BSLASHAcf] = ACTIONS(12473), + [anon_sym_BSLASHacfp] = ACTIONS(12473), + [anon_sym_BSLASHAcfp] = ACTIONS(12473), + [anon_sym_BSLASHac] = ACTIONS(12473), + [anon_sym_BSLASHAc] = ACTIONS(12473), + [anon_sym_BSLASHacp] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12473), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12473), + [anon_sym_BSLASHcolor] = ACTIONS(12473), + [anon_sym_BSLASHcolorbox] = ACTIONS(12473), + [anon_sym_BSLASHtextcolor] = ACTIONS(12473), + [anon_sym_BSLASHpagecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12473), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12473), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12473), + }, + [1720] = { + [sym_generic_command_name] = ACTIONS(12457), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12457), + [anon_sym_BSLASHitem] = ACTIONS(12457), + [anon_sym_LBRACK] = ACTIONS(12455), + [anon_sym_RBRACK] = ACTIONS(12455), + [anon_sym_LBRACE] = ACTIONS(12455), + [anon_sym_RBRACE] = ACTIONS(12455), + [anon_sym_LPAREN] = ACTIONS(12455), + [anon_sym_COMMA] = ACTIONS(12455), + [anon_sym_EQ] = ACTIONS(12455), + [sym_word] = ACTIONS(12455), + [sym_param] = ACTIONS(12455), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12455), + [anon_sym_DOLLAR] = ACTIONS(12457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12455), + [anon_sym_BSLASHbegin] = ACTIONS(12457), + [anon_sym_BSLASHcaption] = ACTIONS(12457), + [anon_sym_BSLASHcite] = ACTIONS(12457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCite] = ACTIONS(12457), + [anon_sym_BSLASHnocite] = ACTIONS(12457), + [anon_sym_BSLASHcitet] = ACTIONS(12457), + [anon_sym_BSLASHcitep] = ACTIONS(12457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteauthor] = ACTIONS(12457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitetitle] = ACTIONS(12457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteyear] = ACTIONS(12457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitedate] = ACTIONS(12457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteurl] = ACTIONS(12457), + [anon_sym_BSLASHfullcite] = ACTIONS(12457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12457), + [anon_sym_BSLASHcitealt] = ACTIONS(12457), + [anon_sym_BSLASHcitealp] = ACTIONS(12457), + [anon_sym_BSLASHcitetext] = ACTIONS(12457), + [anon_sym_BSLASHparencite] = ACTIONS(12457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHParencite] = ACTIONS(12457), + [anon_sym_BSLASHfootcite] = ACTIONS(12457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12457), + [anon_sym_BSLASHtextcite] = ACTIONS(12457), + [anon_sym_BSLASHTextcite] = ACTIONS(12457), + [anon_sym_BSLASHsmartcite] = ACTIONS(12457), + [anon_sym_BSLASHSmartcite] = ACTIONS(12457), + [anon_sym_BSLASHsupercite] = ACTIONS(12457), + [anon_sym_BSLASHautocite] = ACTIONS(12457), + [anon_sym_BSLASHAutocite] = ACTIONS(12457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHvolcite] = ACTIONS(12457), + [anon_sym_BSLASHVolcite] = ACTIONS(12457), + [anon_sym_BSLASHpvolcite] = ACTIONS(12457), + [anon_sym_BSLASHPvolcite] = ACTIONS(12457), + [anon_sym_BSLASHfvolcite] = ACTIONS(12457), + [anon_sym_BSLASHftvolcite] = ACTIONS(12457), + [anon_sym_BSLASHsvolcite] = ACTIONS(12457), + [anon_sym_BSLASHSvolcite] = ACTIONS(12457), + [anon_sym_BSLASHtvolcite] = ACTIONS(12457), + [anon_sym_BSLASHTvolcite] = ACTIONS(12457), + [anon_sym_BSLASHavolcite] = ACTIONS(12457), + [anon_sym_BSLASHAvolcite] = ACTIONS(12457), + [anon_sym_BSLASHnotecite] = ACTIONS(12457), + [anon_sym_BSLASHpnotecite] = ACTIONS(12457), + [anon_sym_BSLASHPnotecite] = ACTIONS(12457), + [anon_sym_BSLASHfnotecite] = ACTIONS(12457), + [anon_sym_BSLASHusepackage] = ACTIONS(12457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12457), + [anon_sym_BSLASHinclude] = ACTIONS(12457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12457), + [anon_sym_BSLASHinput] = ACTIONS(12457), + [anon_sym_BSLASHsubfile] = ACTIONS(12457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12457), + [anon_sym_BSLASHbibliography] = ACTIONS(12457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12457), + [anon_sym_BSLASHincludesvg] = ACTIONS(12457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12457), + [anon_sym_BSLASHimport] = ACTIONS(12457), + [anon_sym_BSLASHsubimport] = ACTIONS(12457), + [anon_sym_BSLASHinputfrom] = ACTIONS(12457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12457), + [anon_sym_BSLASHincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHlabel] = ACTIONS(12457), + [anon_sym_BSLASHref] = ACTIONS(12457), + [anon_sym_BSLASHvref] = ACTIONS(12457), + [anon_sym_BSLASHVref] = ACTIONS(12457), + [anon_sym_BSLASHautoref] = ACTIONS(12457), + [anon_sym_BSLASHpageref] = ACTIONS(12457), + [anon_sym_BSLASHcref] = ACTIONS(12457), + [anon_sym_BSLASHCref] = ACTIONS(12457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnameCref] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHlabelcref] = ACTIONS(12457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12457), + [anon_sym_BSLASHeqref] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange] = ACTIONS(12457), + [anon_sym_BSLASHCrefrange] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewlabel] = ACTIONS(12457), + [anon_sym_BSLASHnewcommand] = ACTIONS(12457), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12457), + [anon_sym_BSLASHgls] = ACTIONS(12457), + [anon_sym_BSLASHGls] = ACTIONS(12457), + [anon_sym_BSLASHGLS] = ACTIONS(12457), + [anon_sym_BSLASHglspl] = ACTIONS(12457), + [anon_sym_BSLASHGlspl] = ACTIONS(12457), + [anon_sym_BSLASHGLSpl] = ACTIONS(12457), + [anon_sym_BSLASHglsdisp] = ACTIONS(12457), + [anon_sym_BSLASHglslink] = ACTIONS(12457), + [anon_sym_BSLASHglstext] = ACTIONS(12457), + [anon_sym_BSLASHGlstext] = ACTIONS(12457), + [anon_sym_BSLASHGLStext] = ACTIONS(12457), + [anon_sym_BSLASHglsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12457), + [anon_sym_BSLASHglsplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSplural] = ACTIONS(12457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHglsname] = ACTIONS(12457), + [anon_sym_BSLASHGlsname] = ACTIONS(12457), + [anon_sym_BSLASHGLSname] = ACTIONS(12457), + [anon_sym_BSLASHglssymbol] = ACTIONS(12457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12457), + [anon_sym_BSLASHglsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12457), + [anon_sym_BSLASHglsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12457), + [anon_sym_BSLASHglsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12457), + [anon_sym_BSLASHglsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12457), + [anon_sym_BSLASHglsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12457), + [anon_sym_BSLASHnewacronym] = ACTIONS(12457), + [anon_sym_BSLASHacrshort] = ACTIONS(12457), + [anon_sym_BSLASHAcrshort] = ACTIONS(12457), + [anon_sym_BSLASHACRshort] = ACTIONS(12457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12457), + [anon_sym_BSLASHacrlong] = ACTIONS(12457), + [anon_sym_BSLASHAcrlong] = ACTIONS(12457), + [anon_sym_BSLASHACRlong] = ACTIONS(12457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12457), + [anon_sym_BSLASHacrfull] = ACTIONS(12457), + [anon_sym_BSLASHAcrfull] = ACTIONS(12457), + [anon_sym_BSLASHACRfull] = ACTIONS(12457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12457), + [anon_sym_BSLASHacs] = ACTIONS(12457), + [anon_sym_BSLASHAcs] = ACTIONS(12457), + [anon_sym_BSLASHacsp] = ACTIONS(12457), + [anon_sym_BSLASHAcsp] = ACTIONS(12457), + [anon_sym_BSLASHacl] = ACTIONS(12457), + [anon_sym_BSLASHAcl] = ACTIONS(12457), + [anon_sym_BSLASHaclp] = ACTIONS(12457), + [anon_sym_BSLASHAclp] = ACTIONS(12457), + [anon_sym_BSLASHacf] = ACTIONS(12457), + [anon_sym_BSLASHAcf] = ACTIONS(12457), + [anon_sym_BSLASHacfp] = ACTIONS(12457), + [anon_sym_BSLASHAcfp] = ACTIONS(12457), + [anon_sym_BSLASHac] = ACTIONS(12457), + [anon_sym_BSLASHAc] = ACTIONS(12457), + [anon_sym_BSLASHacp] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12457), + [anon_sym_BSLASHcolor] = ACTIONS(12457), + [anon_sym_BSLASHcolorbox] = ACTIONS(12457), + [anon_sym_BSLASHtextcolor] = ACTIONS(12457), + [anon_sym_BSLASHpagecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12457), + }, + [1721] = { + [sym_generic_command_name] = ACTIONS(12417), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12417), + [anon_sym_BSLASHitem] = ACTIONS(12417), + [anon_sym_LBRACK] = ACTIONS(12415), + [anon_sym_RBRACK] = ACTIONS(12415), + [anon_sym_LBRACE] = ACTIONS(12415), + [anon_sym_RBRACE] = ACTIONS(12415), + [anon_sym_LPAREN] = ACTIONS(12415), + [anon_sym_COMMA] = ACTIONS(12415), + [anon_sym_EQ] = ACTIONS(12415), + [sym_word] = ACTIONS(12415), + [sym_param] = ACTIONS(12415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12415), + [anon_sym_DOLLAR] = ACTIONS(12417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12415), + [anon_sym_BSLASHbegin] = ACTIONS(12417), + [anon_sym_BSLASHcaption] = ACTIONS(12417), + [anon_sym_BSLASHcite] = ACTIONS(12417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCite] = ACTIONS(12417), + [anon_sym_BSLASHnocite] = ACTIONS(12417), + [anon_sym_BSLASHcitet] = ACTIONS(12417), + [anon_sym_BSLASHcitep] = ACTIONS(12417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteauthor] = ACTIONS(12417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitetitle] = ACTIONS(12417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteyear] = ACTIONS(12417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitedate] = ACTIONS(12417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteurl] = ACTIONS(12417), + [anon_sym_BSLASHfullcite] = ACTIONS(12417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12417), + [anon_sym_BSLASHcitealt] = ACTIONS(12417), + [anon_sym_BSLASHcitealp] = ACTIONS(12417), + [anon_sym_BSLASHcitetext] = ACTIONS(12417), + [anon_sym_BSLASHparencite] = ACTIONS(12417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHParencite] = ACTIONS(12417), + [anon_sym_BSLASHfootcite] = ACTIONS(12417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12417), + [anon_sym_BSLASHtextcite] = ACTIONS(12417), + [anon_sym_BSLASHTextcite] = ACTIONS(12417), + [anon_sym_BSLASHsmartcite] = ACTIONS(12417), + [anon_sym_BSLASHSmartcite] = ACTIONS(12417), + [anon_sym_BSLASHsupercite] = ACTIONS(12417), + [anon_sym_BSLASHautocite] = ACTIONS(12417), + [anon_sym_BSLASHAutocite] = ACTIONS(12417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHvolcite] = ACTIONS(12417), + [anon_sym_BSLASHVolcite] = ACTIONS(12417), + [anon_sym_BSLASHpvolcite] = ACTIONS(12417), + [anon_sym_BSLASHPvolcite] = ACTIONS(12417), + [anon_sym_BSLASHfvolcite] = ACTIONS(12417), + [anon_sym_BSLASHftvolcite] = ACTIONS(12417), + [anon_sym_BSLASHsvolcite] = ACTIONS(12417), + [anon_sym_BSLASHSvolcite] = ACTIONS(12417), + [anon_sym_BSLASHtvolcite] = ACTIONS(12417), + [anon_sym_BSLASHTvolcite] = ACTIONS(12417), + [anon_sym_BSLASHavolcite] = ACTIONS(12417), + [anon_sym_BSLASHAvolcite] = ACTIONS(12417), + [anon_sym_BSLASHnotecite] = ACTIONS(12417), + [anon_sym_BSLASHpnotecite] = ACTIONS(12417), + [anon_sym_BSLASHPnotecite] = ACTIONS(12417), + [anon_sym_BSLASHfnotecite] = ACTIONS(12417), + [anon_sym_BSLASHusepackage] = ACTIONS(12417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12417), + [anon_sym_BSLASHinclude] = ACTIONS(12417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12417), + [anon_sym_BSLASHinput] = ACTIONS(12417), + [anon_sym_BSLASHsubfile] = ACTIONS(12417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12417), + [anon_sym_BSLASHbibliography] = ACTIONS(12417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12417), + [anon_sym_BSLASHincludesvg] = ACTIONS(12417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12417), + [anon_sym_BSLASHimport] = ACTIONS(12417), + [anon_sym_BSLASHsubimport] = ACTIONS(12417), + [anon_sym_BSLASHinputfrom] = ACTIONS(12417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12417), + [anon_sym_BSLASHincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHlabel] = ACTIONS(12417), + [anon_sym_BSLASHref] = ACTIONS(12417), + [anon_sym_BSLASHvref] = ACTIONS(12417), + [anon_sym_BSLASHVref] = ACTIONS(12417), + [anon_sym_BSLASHautoref] = ACTIONS(12417), + [anon_sym_BSLASHpageref] = ACTIONS(12417), + [anon_sym_BSLASHcref] = ACTIONS(12417), + [anon_sym_BSLASHCref] = ACTIONS(12417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnameCref] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHlabelcref] = ACTIONS(12417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12417), + [anon_sym_BSLASHeqref] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange] = ACTIONS(12417), + [anon_sym_BSLASHCrefrange] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewlabel] = ACTIONS(12417), + [anon_sym_BSLASHnewcommand] = ACTIONS(12417), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12417), + [anon_sym_BSLASHgls] = ACTIONS(12417), + [anon_sym_BSLASHGls] = ACTIONS(12417), + [anon_sym_BSLASHGLS] = ACTIONS(12417), + [anon_sym_BSLASHglspl] = ACTIONS(12417), + [anon_sym_BSLASHGlspl] = ACTIONS(12417), + [anon_sym_BSLASHGLSpl] = ACTIONS(12417), + [anon_sym_BSLASHglsdisp] = ACTIONS(12417), + [anon_sym_BSLASHglslink] = ACTIONS(12417), + [anon_sym_BSLASHglstext] = ACTIONS(12417), + [anon_sym_BSLASHGlstext] = ACTIONS(12417), + [anon_sym_BSLASHGLStext] = ACTIONS(12417), + [anon_sym_BSLASHglsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12417), + [anon_sym_BSLASHglsplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSplural] = ACTIONS(12417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHglsname] = ACTIONS(12417), + [anon_sym_BSLASHGlsname] = ACTIONS(12417), + [anon_sym_BSLASHGLSname] = ACTIONS(12417), + [anon_sym_BSLASHglssymbol] = ACTIONS(12417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12417), + [anon_sym_BSLASHglsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12417), + [anon_sym_BSLASHglsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12417), + [anon_sym_BSLASHglsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12417), + [anon_sym_BSLASHglsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12417), + [anon_sym_BSLASHglsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12417), + [anon_sym_BSLASHnewacronym] = ACTIONS(12417), + [anon_sym_BSLASHacrshort] = ACTIONS(12417), + [anon_sym_BSLASHAcrshort] = ACTIONS(12417), + [anon_sym_BSLASHACRshort] = ACTIONS(12417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12417), + [anon_sym_BSLASHacrlong] = ACTIONS(12417), + [anon_sym_BSLASHAcrlong] = ACTIONS(12417), + [anon_sym_BSLASHACRlong] = ACTIONS(12417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12417), + [anon_sym_BSLASHacrfull] = ACTIONS(12417), + [anon_sym_BSLASHAcrfull] = ACTIONS(12417), + [anon_sym_BSLASHACRfull] = ACTIONS(12417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12417), + [anon_sym_BSLASHacs] = ACTIONS(12417), + [anon_sym_BSLASHAcs] = ACTIONS(12417), + [anon_sym_BSLASHacsp] = ACTIONS(12417), + [anon_sym_BSLASHAcsp] = ACTIONS(12417), + [anon_sym_BSLASHacl] = ACTIONS(12417), + [anon_sym_BSLASHAcl] = ACTIONS(12417), + [anon_sym_BSLASHaclp] = ACTIONS(12417), + [anon_sym_BSLASHAclp] = ACTIONS(12417), + [anon_sym_BSLASHacf] = ACTIONS(12417), + [anon_sym_BSLASHAcf] = ACTIONS(12417), + [anon_sym_BSLASHacfp] = ACTIONS(12417), + [anon_sym_BSLASHAcfp] = ACTIONS(12417), + [anon_sym_BSLASHac] = ACTIONS(12417), + [anon_sym_BSLASHAc] = ACTIONS(12417), + [anon_sym_BSLASHacp] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12417), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12417), + [anon_sym_BSLASHcolor] = ACTIONS(12417), + [anon_sym_BSLASHcolorbox] = ACTIONS(12417), + [anon_sym_BSLASHtextcolor] = ACTIONS(12417), + [anon_sym_BSLASHpagecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12417), + }, + [1722] = { + [sym_generic_command_name] = ACTIONS(12389), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12389), + [anon_sym_BSLASHitem] = ACTIONS(12389), + [anon_sym_LBRACK] = ACTIONS(12387), + [anon_sym_RBRACK] = ACTIONS(12387), + [anon_sym_LBRACE] = ACTIONS(12387), + [anon_sym_RBRACE] = ACTIONS(12387), + [anon_sym_LPAREN] = ACTIONS(12387), + [anon_sym_COMMA] = ACTIONS(12387), + [anon_sym_EQ] = ACTIONS(12387), + [sym_word] = ACTIONS(12387), + [sym_param] = ACTIONS(12387), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12387), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12387), + [anon_sym_DOLLAR] = ACTIONS(12389), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12387), + [anon_sym_BSLASHbegin] = ACTIONS(12389), + [anon_sym_BSLASHcaption] = ACTIONS(12389), + [anon_sym_BSLASHcite] = ACTIONS(12389), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCite] = ACTIONS(12389), + [anon_sym_BSLASHnocite] = ACTIONS(12389), + [anon_sym_BSLASHcitet] = ACTIONS(12389), + [anon_sym_BSLASHcitep] = ACTIONS(12389), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteauthor] = ACTIONS(12389), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12389), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitetitle] = ACTIONS(12389), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteyear] = ACTIONS(12389), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitedate] = ACTIONS(12389), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteurl] = ACTIONS(12389), + [anon_sym_BSLASHfullcite] = ACTIONS(12389), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12389), + [anon_sym_BSLASHcitealt] = ACTIONS(12389), + [anon_sym_BSLASHcitealp] = ACTIONS(12389), + [anon_sym_BSLASHcitetext] = ACTIONS(12389), + [anon_sym_BSLASHparencite] = ACTIONS(12389), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHParencite] = ACTIONS(12389), + [anon_sym_BSLASHfootcite] = ACTIONS(12389), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12389), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12389), + [anon_sym_BSLASHtextcite] = ACTIONS(12389), + [anon_sym_BSLASHTextcite] = ACTIONS(12389), + [anon_sym_BSLASHsmartcite] = ACTIONS(12389), + [anon_sym_BSLASHSmartcite] = ACTIONS(12389), + [anon_sym_BSLASHsupercite] = ACTIONS(12389), + [anon_sym_BSLASHautocite] = ACTIONS(12389), + [anon_sym_BSLASHAutocite] = ACTIONS(12389), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHvolcite] = ACTIONS(12389), + [anon_sym_BSLASHVolcite] = ACTIONS(12389), + [anon_sym_BSLASHpvolcite] = ACTIONS(12389), + [anon_sym_BSLASHPvolcite] = ACTIONS(12389), + [anon_sym_BSLASHfvolcite] = ACTIONS(12389), + [anon_sym_BSLASHftvolcite] = ACTIONS(12389), + [anon_sym_BSLASHsvolcite] = ACTIONS(12389), + [anon_sym_BSLASHSvolcite] = ACTIONS(12389), + [anon_sym_BSLASHtvolcite] = ACTIONS(12389), + [anon_sym_BSLASHTvolcite] = ACTIONS(12389), + [anon_sym_BSLASHavolcite] = ACTIONS(12389), + [anon_sym_BSLASHAvolcite] = ACTIONS(12389), + [anon_sym_BSLASHnotecite] = ACTIONS(12389), + [anon_sym_BSLASHpnotecite] = ACTIONS(12389), + [anon_sym_BSLASHPnotecite] = ACTIONS(12389), + [anon_sym_BSLASHfnotecite] = ACTIONS(12389), + [anon_sym_BSLASHusepackage] = ACTIONS(12389), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12389), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12389), + [anon_sym_BSLASHinclude] = ACTIONS(12389), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12389), + [anon_sym_BSLASHinput] = ACTIONS(12389), + [anon_sym_BSLASHsubfile] = ACTIONS(12389), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12389), + [anon_sym_BSLASHbibliography] = ACTIONS(12389), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12389), + [anon_sym_BSLASHincludesvg] = ACTIONS(12389), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12389), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12389), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12389), + [anon_sym_BSLASHimport] = ACTIONS(12389), + [anon_sym_BSLASHsubimport] = ACTIONS(12389), + [anon_sym_BSLASHinputfrom] = ACTIONS(12389), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12389), + [anon_sym_BSLASHincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHlabel] = ACTIONS(12389), + [anon_sym_BSLASHref] = ACTIONS(12389), + [anon_sym_BSLASHvref] = ACTIONS(12389), + [anon_sym_BSLASHVref] = ACTIONS(12389), + [anon_sym_BSLASHautoref] = ACTIONS(12389), + [anon_sym_BSLASHpageref] = ACTIONS(12389), + [anon_sym_BSLASHcref] = ACTIONS(12389), + [anon_sym_BSLASHCref] = ACTIONS(12389), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnameCref] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHlabelcref] = ACTIONS(12389), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12389), + [anon_sym_BSLASHeqref] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange] = ACTIONS(12389), + [anon_sym_BSLASHCrefrange] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewlabel] = ACTIONS(12389), + [anon_sym_BSLASHnewcommand] = ACTIONS(12389), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12389), + [anon_sym_BSLASHgls] = ACTIONS(12389), + [anon_sym_BSLASHGls] = ACTIONS(12389), + [anon_sym_BSLASHGLS] = ACTIONS(12389), + [anon_sym_BSLASHglspl] = ACTIONS(12389), + [anon_sym_BSLASHGlspl] = ACTIONS(12389), + [anon_sym_BSLASHGLSpl] = ACTIONS(12389), + [anon_sym_BSLASHglsdisp] = ACTIONS(12389), + [anon_sym_BSLASHglslink] = ACTIONS(12389), + [anon_sym_BSLASHglstext] = ACTIONS(12389), + [anon_sym_BSLASHGlstext] = ACTIONS(12389), + [anon_sym_BSLASHGLStext] = ACTIONS(12389), + [anon_sym_BSLASHglsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12389), + [anon_sym_BSLASHglsplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSplural] = ACTIONS(12389), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHglsname] = ACTIONS(12389), + [anon_sym_BSLASHGlsname] = ACTIONS(12389), + [anon_sym_BSLASHGLSname] = ACTIONS(12389), + [anon_sym_BSLASHglssymbol] = ACTIONS(12389), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12389), + [anon_sym_BSLASHglsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12389), + [anon_sym_BSLASHglsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12389), + [anon_sym_BSLASHglsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12389), + [anon_sym_BSLASHglsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12389), + [anon_sym_BSLASHglsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12389), + [anon_sym_BSLASHnewacronym] = ACTIONS(12389), + [anon_sym_BSLASHacrshort] = ACTIONS(12389), + [anon_sym_BSLASHAcrshort] = ACTIONS(12389), + [anon_sym_BSLASHACRshort] = ACTIONS(12389), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12389), + [anon_sym_BSLASHacrlong] = ACTIONS(12389), + [anon_sym_BSLASHAcrlong] = ACTIONS(12389), + [anon_sym_BSLASHACRlong] = ACTIONS(12389), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12389), + [anon_sym_BSLASHacrfull] = ACTIONS(12389), + [anon_sym_BSLASHAcrfull] = ACTIONS(12389), + [anon_sym_BSLASHACRfull] = ACTIONS(12389), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12389), + [anon_sym_BSLASHacs] = ACTIONS(12389), + [anon_sym_BSLASHAcs] = ACTIONS(12389), + [anon_sym_BSLASHacsp] = ACTIONS(12389), + [anon_sym_BSLASHAcsp] = ACTIONS(12389), + [anon_sym_BSLASHacl] = ACTIONS(12389), + [anon_sym_BSLASHAcl] = ACTIONS(12389), + [anon_sym_BSLASHaclp] = ACTIONS(12389), + [anon_sym_BSLASHAclp] = ACTIONS(12389), + [anon_sym_BSLASHacf] = ACTIONS(12389), + [anon_sym_BSLASHAcf] = ACTIONS(12389), + [anon_sym_BSLASHacfp] = ACTIONS(12389), + [anon_sym_BSLASHAcfp] = ACTIONS(12389), + [anon_sym_BSLASHac] = ACTIONS(12389), + [anon_sym_BSLASHAc] = ACTIONS(12389), + [anon_sym_BSLASHacp] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12389), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12389), + [anon_sym_BSLASHcolor] = ACTIONS(12389), + [anon_sym_BSLASHcolorbox] = ACTIONS(12389), + [anon_sym_BSLASHtextcolor] = ACTIONS(12389), + [anon_sym_BSLASHpagecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12389), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12389), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12389), + }, + [1723] = { + [sym_brace_group] = STATE(2915), + [sym_generic_command_name] = ACTIONS(12088), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12088), + [anon_sym_LBRACK] = ACTIONS(12086), + [anon_sym_RBRACK] = ACTIONS(12086), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12086), + [anon_sym_LPAREN] = ACTIONS(12086), + [anon_sym_COMMA] = ACTIONS(12086), + [anon_sym_EQ] = ACTIONS(12086), + [sym_word] = ACTIONS(12086), + [sym_param] = ACTIONS(12086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12086), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12086), + [anon_sym_DOLLAR] = ACTIONS(12088), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12086), + [anon_sym_BSLASHbegin] = ACTIONS(12088), + [anon_sym_BSLASHcaption] = ACTIONS(12088), + [anon_sym_BSLASHcite] = ACTIONS(12088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCite] = ACTIONS(12088), + [anon_sym_BSLASHnocite] = ACTIONS(12088), + [anon_sym_BSLASHcitet] = ACTIONS(12088), + [anon_sym_BSLASHcitep] = ACTIONS(12088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteauthor] = ACTIONS(12088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitetitle] = ACTIONS(12088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteyear] = ACTIONS(12088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitedate] = ACTIONS(12088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteurl] = ACTIONS(12088), + [anon_sym_BSLASHfullcite] = ACTIONS(12088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12088), + [anon_sym_BSLASHcitealt] = ACTIONS(12088), + [anon_sym_BSLASHcitealp] = ACTIONS(12088), + [anon_sym_BSLASHcitetext] = ACTIONS(12088), + [anon_sym_BSLASHparencite] = ACTIONS(12088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHParencite] = ACTIONS(12088), + [anon_sym_BSLASHfootcite] = ACTIONS(12088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12088), + [anon_sym_BSLASHtextcite] = ACTIONS(12088), + [anon_sym_BSLASHTextcite] = ACTIONS(12088), + [anon_sym_BSLASHsmartcite] = ACTIONS(12088), + [anon_sym_BSLASHSmartcite] = ACTIONS(12088), + [anon_sym_BSLASHsupercite] = ACTIONS(12088), + [anon_sym_BSLASHautocite] = ACTIONS(12088), + [anon_sym_BSLASHAutocite] = ACTIONS(12088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHvolcite] = ACTIONS(12088), + [anon_sym_BSLASHVolcite] = ACTIONS(12088), + [anon_sym_BSLASHpvolcite] = ACTIONS(12088), + [anon_sym_BSLASHPvolcite] = ACTIONS(12088), + [anon_sym_BSLASHfvolcite] = ACTIONS(12088), + [anon_sym_BSLASHftvolcite] = ACTIONS(12088), + [anon_sym_BSLASHsvolcite] = ACTIONS(12088), + [anon_sym_BSLASHSvolcite] = ACTIONS(12088), + [anon_sym_BSLASHtvolcite] = ACTIONS(12088), + [anon_sym_BSLASHTvolcite] = ACTIONS(12088), + [anon_sym_BSLASHavolcite] = ACTIONS(12088), + [anon_sym_BSLASHAvolcite] = ACTIONS(12088), + [anon_sym_BSLASHnotecite] = ACTIONS(12088), + [anon_sym_BSLASHpnotecite] = ACTIONS(12088), + [anon_sym_BSLASHPnotecite] = ACTIONS(12088), + [anon_sym_BSLASHfnotecite] = ACTIONS(12088), + [anon_sym_BSLASHusepackage] = ACTIONS(12088), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12088), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12088), + [anon_sym_BSLASHinclude] = ACTIONS(12088), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12088), + [anon_sym_BSLASHinput] = ACTIONS(12088), + [anon_sym_BSLASHsubfile] = ACTIONS(12088), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12088), + [anon_sym_BSLASHbibliography] = ACTIONS(12088), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12088), + [anon_sym_BSLASHincludesvg] = ACTIONS(12088), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12088), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12088), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12088), + [anon_sym_BSLASHimport] = ACTIONS(12088), + [anon_sym_BSLASHsubimport] = ACTIONS(12088), + [anon_sym_BSLASHinputfrom] = ACTIONS(12088), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12088), + [anon_sym_BSLASHincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHlabel] = ACTIONS(12088), + [anon_sym_BSLASHref] = ACTIONS(12088), + [anon_sym_BSLASHvref] = ACTIONS(12088), + [anon_sym_BSLASHVref] = ACTIONS(12088), + [anon_sym_BSLASHautoref] = ACTIONS(12088), + [anon_sym_BSLASHpageref] = ACTIONS(12088), + [anon_sym_BSLASHcref] = ACTIONS(12088), + [anon_sym_BSLASHCref] = ACTIONS(12088), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnameCref] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHlabelcref] = ACTIONS(12088), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12088), + [anon_sym_BSLASHeqref] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange] = ACTIONS(12088), + [anon_sym_BSLASHCrefrange] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewlabel] = ACTIONS(12088), + [anon_sym_BSLASHnewcommand] = ACTIONS(12088), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12088), + [anon_sym_BSLASHgls] = ACTIONS(12088), + [anon_sym_BSLASHGls] = ACTIONS(12088), + [anon_sym_BSLASHGLS] = ACTIONS(12088), + [anon_sym_BSLASHglspl] = ACTIONS(12088), + [anon_sym_BSLASHGlspl] = ACTIONS(12088), + [anon_sym_BSLASHGLSpl] = ACTIONS(12088), + [anon_sym_BSLASHglsdisp] = ACTIONS(12088), + [anon_sym_BSLASHglslink] = ACTIONS(12088), + [anon_sym_BSLASHglstext] = ACTIONS(12088), + [anon_sym_BSLASHGlstext] = ACTIONS(12088), + [anon_sym_BSLASHGLStext] = ACTIONS(12088), + [anon_sym_BSLASHglsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12088), + [anon_sym_BSLASHglsplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSplural] = ACTIONS(12088), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHglsname] = ACTIONS(12088), + [anon_sym_BSLASHGlsname] = ACTIONS(12088), + [anon_sym_BSLASHGLSname] = ACTIONS(12088), + [anon_sym_BSLASHglssymbol] = ACTIONS(12088), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12088), + [anon_sym_BSLASHglsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12088), + [anon_sym_BSLASHglsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12088), + [anon_sym_BSLASHglsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12088), + [anon_sym_BSLASHglsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12088), + [anon_sym_BSLASHglsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12088), + [anon_sym_BSLASHnewacronym] = ACTIONS(12088), + [anon_sym_BSLASHacrshort] = ACTIONS(12088), + [anon_sym_BSLASHAcrshort] = ACTIONS(12088), + [anon_sym_BSLASHACRshort] = ACTIONS(12088), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12088), + [anon_sym_BSLASHacrlong] = ACTIONS(12088), + [anon_sym_BSLASHAcrlong] = ACTIONS(12088), + [anon_sym_BSLASHACRlong] = ACTIONS(12088), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12088), + [anon_sym_BSLASHacrfull] = ACTIONS(12088), + [anon_sym_BSLASHAcrfull] = ACTIONS(12088), + [anon_sym_BSLASHACRfull] = ACTIONS(12088), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12088), + [anon_sym_BSLASHacs] = ACTIONS(12088), + [anon_sym_BSLASHAcs] = ACTIONS(12088), + [anon_sym_BSLASHacsp] = ACTIONS(12088), + [anon_sym_BSLASHAcsp] = ACTIONS(12088), + [anon_sym_BSLASHacl] = ACTIONS(12088), + [anon_sym_BSLASHAcl] = ACTIONS(12088), + [anon_sym_BSLASHaclp] = ACTIONS(12088), + [anon_sym_BSLASHAclp] = ACTIONS(12088), + [anon_sym_BSLASHacf] = ACTIONS(12088), + [anon_sym_BSLASHAcf] = ACTIONS(12088), + [anon_sym_BSLASHacfp] = ACTIONS(12088), + [anon_sym_BSLASHAcfp] = ACTIONS(12088), + [anon_sym_BSLASHac] = ACTIONS(12088), + [anon_sym_BSLASHAc] = ACTIONS(12088), + [anon_sym_BSLASHacp] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12088), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12088), + [anon_sym_BSLASHcolor] = ACTIONS(12088), + [anon_sym_BSLASHcolorbox] = ACTIONS(12088), + [anon_sym_BSLASHtextcolor] = ACTIONS(12088), + [anon_sym_BSLASHpagecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12088), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12088), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12088), + }, + [1724] = { + [sym_generic_command_name] = ACTIONS(12385), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12385), + [anon_sym_BSLASHitem] = ACTIONS(12385), + [anon_sym_LBRACK] = ACTIONS(12383), + [anon_sym_RBRACK] = ACTIONS(12383), + [anon_sym_LBRACE] = ACTIONS(12383), + [anon_sym_RBRACE] = ACTIONS(12383), + [anon_sym_LPAREN] = ACTIONS(12383), + [anon_sym_COMMA] = ACTIONS(12383), + [anon_sym_EQ] = ACTIONS(12383), + [sym_word] = ACTIONS(12383), + [sym_param] = ACTIONS(12383), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12383), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12383), + [anon_sym_DOLLAR] = ACTIONS(12385), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12383), + [anon_sym_BSLASHbegin] = ACTIONS(12385), + [anon_sym_BSLASHcaption] = ACTIONS(12385), + [anon_sym_BSLASHcite] = ACTIONS(12385), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCite] = ACTIONS(12385), + [anon_sym_BSLASHnocite] = ACTIONS(12385), + [anon_sym_BSLASHcitet] = ACTIONS(12385), + [anon_sym_BSLASHcitep] = ACTIONS(12385), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteauthor] = ACTIONS(12385), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12385), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitetitle] = ACTIONS(12385), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteyear] = ACTIONS(12385), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitedate] = ACTIONS(12385), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteurl] = ACTIONS(12385), + [anon_sym_BSLASHfullcite] = ACTIONS(12385), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12385), + [anon_sym_BSLASHcitealt] = ACTIONS(12385), + [anon_sym_BSLASHcitealp] = ACTIONS(12385), + [anon_sym_BSLASHcitetext] = ACTIONS(12385), + [anon_sym_BSLASHparencite] = ACTIONS(12385), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHParencite] = ACTIONS(12385), + [anon_sym_BSLASHfootcite] = ACTIONS(12385), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12385), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12385), + [anon_sym_BSLASHtextcite] = ACTIONS(12385), + [anon_sym_BSLASHTextcite] = ACTIONS(12385), + [anon_sym_BSLASHsmartcite] = ACTIONS(12385), + [anon_sym_BSLASHSmartcite] = ACTIONS(12385), + [anon_sym_BSLASHsupercite] = ACTIONS(12385), + [anon_sym_BSLASHautocite] = ACTIONS(12385), + [anon_sym_BSLASHAutocite] = ACTIONS(12385), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHvolcite] = ACTIONS(12385), + [anon_sym_BSLASHVolcite] = ACTIONS(12385), + [anon_sym_BSLASHpvolcite] = ACTIONS(12385), + [anon_sym_BSLASHPvolcite] = ACTIONS(12385), + [anon_sym_BSLASHfvolcite] = ACTIONS(12385), + [anon_sym_BSLASHftvolcite] = ACTIONS(12385), + [anon_sym_BSLASHsvolcite] = ACTIONS(12385), + [anon_sym_BSLASHSvolcite] = ACTIONS(12385), + [anon_sym_BSLASHtvolcite] = ACTIONS(12385), + [anon_sym_BSLASHTvolcite] = ACTIONS(12385), + [anon_sym_BSLASHavolcite] = ACTIONS(12385), + [anon_sym_BSLASHAvolcite] = ACTIONS(12385), + [anon_sym_BSLASHnotecite] = ACTIONS(12385), + [anon_sym_BSLASHpnotecite] = ACTIONS(12385), + [anon_sym_BSLASHPnotecite] = ACTIONS(12385), + [anon_sym_BSLASHfnotecite] = ACTIONS(12385), + [anon_sym_BSLASHusepackage] = ACTIONS(12385), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12385), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12385), + [anon_sym_BSLASHinclude] = ACTIONS(12385), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12385), + [anon_sym_BSLASHinput] = ACTIONS(12385), + [anon_sym_BSLASHsubfile] = ACTIONS(12385), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12385), + [anon_sym_BSLASHbibliography] = ACTIONS(12385), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12385), + [anon_sym_BSLASHincludesvg] = ACTIONS(12385), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12385), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12385), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12385), + [anon_sym_BSLASHimport] = ACTIONS(12385), + [anon_sym_BSLASHsubimport] = ACTIONS(12385), + [anon_sym_BSLASHinputfrom] = ACTIONS(12385), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12385), + [anon_sym_BSLASHincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHlabel] = ACTIONS(12385), + [anon_sym_BSLASHref] = ACTIONS(12385), + [anon_sym_BSLASHvref] = ACTIONS(12385), + [anon_sym_BSLASHVref] = ACTIONS(12385), + [anon_sym_BSLASHautoref] = ACTIONS(12385), + [anon_sym_BSLASHpageref] = ACTIONS(12385), + [anon_sym_BSLASHcref] = ACTIONS(12385), + [anon_sym_BSLASHCref] = ACTIONS(12385), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnameCref] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHlabelcref] = ACTIONS(12385), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12385), + [anon_sym_BSLASHeqref] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange] = ACTIONS(12385), + [anon_sym_BSLASHCrefrange] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewlabel] = ACTIONS(12385), + [anon_sym_BSLASHnewcommand] = ACTIONS(12385), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12385), + [anon_sym_BSLASHgls] = ACTIONS(12385), + [anon_sym_BSLASHGls] = ACTIONS(12385), + [anon_sym_BSLASHGLS] = ACTIONS(12385), + [anon_sym_BSLASHglspl] = ACTIONS(12385), + [anon_sym_BSLASHGlspl] = ACTIONS(12385), + [anon_sym_BSLASHGLSpl] = ACTIONS(12385), + [anon_sym_BSLASHglsdisp] = ACTIONS(12385), + [anon_sym_BSLASHglslink] = ACTIONS(12385), + [anon_sym_BSLASHglstext] = ACTIONS(12385), + [anon_sym_BSLASHGlstext] = ACTIONS(12385), + [anon_sym_BSLASHGLStext] = ACTIONS(12385), + [anon_sym_BSLASHglsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12385), + [anon_sym_BSLASHglsplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSplural] = ACTIONS(12385), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHglsname] = ACTIONS(12385), + [anon_sym_BSLASHGlsname] = ACTIONS(12385), + [anon_sym_BSLASHGLSname] = ACTIONS(12385), + [anon_sym_BSLASHglssymbol] = ACTIONS(12385), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12385), + [anon_sym_BSLASHglsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12385), + [anon_sym_BSLASHglsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12385), + [anon_sym_BSLASHglsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12385), + [anon_sym_BSLASHglsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12385), + [anon_sym_BSLASHglsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12385), + [anon_sym_BSLASHnewacronym] = ACTIONS(12385), + [anon_sym_BSLASHacrshort] = ACTIONS(12385), + [anon_sym_BSLASHAcrshort] = ACTIONS(12385), + [anon_sym_BSLASHACRshort] = ACTIONS(12385), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12385), + [anon_sym_BSLASHacrlong] = ACTIONS(12385), + [anon_sym_BSLASHAcrlong] = ACTIONS(12385), + [anon_sym_BSLASHACRlong] = ACTIONS(12385), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12385), + [anon_sym_BSLASHacrfull] = ACTIONS(12385), + [anon_sym_BSLASHAcrfull] = ACTIONS(12385), + [anon_sym_BSLASHACRfull] = ACTIONS(12385), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12385), + [anon_sym_BSLASHacs] = ACTIONS(12385), + [anon_sym_BSLASHAcs] = ACTIONS(12385), + [anon_sym_BSLASHacsp] = ACTIONS(12385), + [anon_sym_BSLASHAcsp] = ACTIONS(12385), + [anon_sym_BSLASHacl] = ACTIONS(12385), + [anon_sym_BSLASHAcl] = ACTIONS(12385), + [anon_sym_BSLASHaclp] = ACTIONS(12385), + [anon_sym_BSLASHAclp] = ACTIONS(12385), + [anon_sym_BSLASHacf] = ACTIONS(12385), + [anon_sym_BSLASHAcf] = ACTIONS(12385), + [anon_sym_BSLASHacfp] = ACTIONS(12385), + [anon_sym_BSLASHAcfp] = ACTIONS(12385), + [anon_sym_BSLASHac] = ACTIONS(12385), + [anon_sym_BSLASHAc] = ACTIONS(12385), + [anon_sym_BSLASHacp] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12385), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12385), + [anon_sym_BSLASHcolor] = ACTIONS(12385), + [anon_sym_BSLASHcolorbox] = ACTIONS(12385), + [anon_sym_BSLASHtextcolor] = ACTIONS(12385), + [anon_sym_BSLASHpagecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12385), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12385), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12385), + }, + [1725] = { + [sym_generic_command_name] = ACTIONS(12365), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12365), + [anon_sym_BSLASHitem] = ACTIONS(12365), + [anon_sym_LBRACK] = ACTIONS(12363), + [anon_sym_RBRACK] = ACTIONS(12363), + [anon_sym_LBRACE] = ACTIONS(12363), + [anon_sym_RBRACE] = ACTIONS(12363), + [anon_sym_LPAREN] = ACTIONS(12363), + [anon_sym_COMMA] = ACTIONS(12363), + [anon_sym_EQ] = ACTIONS(12363), + [sym_word] = ACTIONS(12363), + [sym_param] = ACTIONS(12363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12363), + [anon_sym_DOLLAR] = ACTIONS(12365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12363), + [anon_sym_BSLASHbegin] = ACTIONS(12365), + [anon_sym_BSLASHcaption] = ACTIONS(12365), + [anon_sym_BSLASHcite] = ACTIONS(12365), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCite] = ACTIONS(12365), + [anon_sym_BSLASHnocite] = ACTIONS(12365), + [anon_sym_BSLASHcitet] = ACTIONS(12365), + [anon_sym_BSLASHcitep] = ACTIONS(12365), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteauthor] = ACTIONS(12365), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12365), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitetitle] = ACTIONS(12365), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteyear] = ACTIONS(12365), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitedate] = ACTIONS(12365), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteurl] = ACTIONS(12365), + [anon_sym_BSLASHfullcite] = ACTIONS(12365), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12365), + [anon_sym_BSLASHcitealt] = ACTIONS(12365), + [anon_sym_BSLASHcitealp] = ACTIONS(12365), + [anon_sym_BSLASHcitetext] = ACTIONS(12365), + [anon_sym_BSLASHparencite] = ACTIONS(12365), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHParencite] = ACTIONS(12365), + [anon_sym_BSLASHfootcite] = ACTIONS(12365), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12365), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12365), + [anon_sym_BSLASHtextcite] = ACTIONS(12365), + [anon_sym_BSLASHTextcite] = ACTIONS(12365), + [anon_sym_BSLASHsmartcite] = ACTIONS(12365), + [anon_sym_BSLASHSmartcite] = ACTIONS(12365), + [anon_sym_BSLASHsupercite] = ACTIONS(12365), + [anon_sym_BSLASHautocite] = ACTIONS(12365), + [anon_sym_BSLASHAutocite] = ACTIONS(12365), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHvolcite] = ACTIONS(12365), + [anon_sym_BSLASHVolcite] = ACTIONS(12365), + [anon_sym_BSLASHpvolcite] = ACTIONS(12365), + [anon_sym_BSLASHPvolcite] = ACTIONS(12365), + [anon_sym_BSLASHfvolcite] = ACTIONS(12365), + [anon_sym_BSLASHftvolcite] = ACTIONS(12365), + [anon_sym_BSLASHsvolcite] = ACTIONS(12365), + [anon_sym_BSLASHSvolcite] = ACTIONS(12365), + [anon_sym_BSLASHtvolcite] = ACTIONS(12365), + [anon_sym_BSLASHTvolcite] = ACTIONS(12365), + [anon_sym_BSLASHavolcite] = ACTIONS(12365), + [anon_sym_BSLASHAvolcite] = ACTIONS(12365), + [anon_sym_BSLASHnotecite] = ACTIONS(12365), + [anon_sym_BSLASHpnotecite] = ACTIONS(12365), + [anon_sym_BSLASHPnotecite] = ACTIONS(12365), + [anon_sym_BSLASHfnotecite] = ACTIONS(12365), + [anon_sym_BSLASHusepackage] = ACTIONS(12365), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12365), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12365), + [anon_sym_BSLASHinclude] = ACTIONS(12365), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12365), + [anon_sym_BSLASHinput] = ACTIONS(12365), + [anon_sym_BSLASHsubfile] = ACTIONS(12365), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12365), + [anon_sym_BSLASHbibliography] = ACTIONS(12365), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12365), + [anon_sym_BSLASHincludesvg] = ACTIONS(12365), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12365), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12365), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12365), + [anon_sym_BSLASHimport] = ACTIONS(12365), + [anon_sym_BSLASHsubimport] = ACTIONS(12365), + [anon_sym_BSLASHinputfrom] = ACTIONS(12365), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12365), + [anon_sym_BSLASHincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHlabel] = ACTIONS(12365), + [anon_sym_BSLASHref] = ACTIONS(12365), + [anon_sym_BSLASHvref] = ACTIONS(12365), + [anon_sym_BSLASHVref] = ACTIONS(12365), + [anon_sym_BSLASHautoref] = ACTIONS(12365), + [anon_sym_BSLASHpageref] = ACTIONS(12365), + [anon_sym_BSLASHcref] = ACTIONS(12365), + [anon_sym_BSLASHCref] = ACTIONS(12365), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnameCref] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHlabelcref] = ACTIONS(12365), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12365), + [anon_sym_BSLASHeqref] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange] = ACTIONS(12365), + [anon_sym_BSLASHCrefrange] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewlabel] = ACTIONS(12365), + [anon_sym_BSLASHnewcommand] = ACTIONS(12365), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12365), + [anon_sym_BSLASHgls] = ACTIONS(12365), + [anon_sym_BSLASHGls] = ACTIONS(12365), + [anon_sym_BSLASHGLS] = ACTIONS(12365), + [anon_sym_BSLASHglspl] = ACTIONS(12365), + [anon_sym_BSLASHGlspl] = ACTIONS(12365), + [anon_sym_BSLASHGLSpl] = ACTIONS(12365), + [anon_sym_BSLASHglsdisp] = ACTIONS(12365), + [anon_sym_BSLASHglslink] = ACTIONS(12365), + [anon_sym_BSLASHglstext] = ACTIONS(12365), + [anon_sym_BSLASHGlstext] = ACTIONS(12365), + [anon_sym_BSLASHGLStext] = ACTIONS(12365), + [anon_sym_BSLASHglsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12365), + [anon_sym_BSLASHglsplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSplural] = ACTIONS(12365), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHglsname] = ACTIONS(12365), + [anon_sym_BSLASHGlsname] = ACTIONS(12365), + [anon_sym_BSLASHGLSname] = ACTIONS(12365), + [anon_sym_BSLASHglssymbol] = ACTIONS(12365), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12365), + [anon_sym_BSLASHglsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12365), + [anon_sym_BSLASHglsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12365), + [anon_sym_BSLASHglsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12365), + [anon_sym_BSLASHglsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12365), + [anon_sym_BSLASHglsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12365), + [anon_sym_BSLASHnewacronym] = ACTIONS(12365), + [anon_sym_BSLASHacrshort] = ACTIONS(12365), + [anon_sym_BSLASHAcrshort] = ACTIONS(12365), + [anon_sym_BSLASHACRshort] = ACTIONS(12365), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12365), + [anon_sym_BSLASHacrlong] = ACTIONS(12365), + [anon_sym_BSLASHAcrlong] = ACTIONS(12365), + [anon_sym_BSLASHACRlong] = ACTIONS(12365), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12365), + [anon_sym_BSLASHacrfull] = ACTIONS(12365), + [anon_sym_BSLASHAcrfull] = ACTIONS(12365), + [anon_sym_BSLASHACRfull] = ACTIONS(12365), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12365), + [anon_sym_BSLASHacs] = ACTIONS(12365), + [anon_sym_BSLASHAcs] = ACTIONS(12365), + [anon_sym_BSLASHacsp] = ACTIONS(12365), + [anon_sym_BSLASHAcsp] = ACTIONS(12365), + [anon_sym_BSLASHacl] = ACTIONS(12365), + [anon_sym_BSLASHAcl] = ACTIONS(12365), + [anon_sym_BSLASHaclp] = ACTIONS(12365), + [anon_sym_BSLASHAclp] = ACTIONS(12365), + [anon_sym_BSLASHacf] = ACTIONS(12365), + [anon_sym_BSLASHAcf] = ACTIONS(12365), + [anon_sym_BSLASHacfp] = ACTIONS(12365), + [anon_sym_BSLASHAcfp] = ACTIONS(12365), + [anon_sym_BSLASHac] = ACTIONS(12365), + [anon_sym_BSLASHAc] = ACTIONS(12365), + [anon_sym_BSLASHacp] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12365), + [anon_sym_BSLASHcolor] = ACTIONS(12365), + [anon_sym_BSLASHcolorbox] = ACTIONS(12365), + [anon_sym_BSLASHtextcolor] = ACTIONS(12365), + [anon_sym_BSLASHpagecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12365), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12365), + }, + [1726] = { + [sym_generic_command_name] = ACTIONS(12231), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12231), + [anon_sym_BSLASHitem] = ACTIONS(12231), + [anon_sym_LBRACK] = ACTIONS(12229), + [anon_sym_RBRACK] = ACTIONS(12229), + [anon_sym_LBRACE] = ACTIONS(12229), + [anon_sym_RBRACE] = ACTIONS(12229), + [anon_sym_LPAREN] = ACTIONS(12229), + [anon_sym_COMMA] = ACTIONS(12229), + [anon_sym_EQ] = ACTIONS(12229), + [sym_word] = ACTIONS(12229), + [sym_param] = ACTIONS(12229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12229), + [anon_sym_DOLLAR] = ACTIONS(12231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12229), + [anon_sym_BSLASHbegin] = ACTIONS(12231), + [anon_sym_BSLASHcaption] = ACTIONS(12231), + [anon_sym_BSLASHcite] = ACTIONS(12231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCite] = ACTIONS(12231), + [anon_sym_BSLASHnocite] = ACTIONS(12231), + [anon_sym_BSLASHcitet] = ACTIONS(12231), + [anon_sym_BSLASHcitep] = ACTIONS(12231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteauthor] = ACTIONS(12231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitetitle] = ACTIONS(12231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteyear] = ACTIONS(12231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitedate] = ACTIONS(12231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteurl] = ACTIONS(12231), + [anon_sym_BSLASHfullcite] = ACTIONS(12231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12231), + [anon_sym_BSLASHcitealt] = ACTIONS(12231), + [anon_sym_BSLASHcitealp] = ACTIONS(12231), + [anon_sym_BSLASHcitetext] = ACTIONS(12231), + [anon_sym_BSLASHparencite] = ACTIONS(12231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHParencite] = ACTIONS(12231), + [anon_sym_BSLASHfootcite] = ACTIONS(12231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12231), + [anon_sym_BSLASHtextcite] = ACTIONS(12231), + [anon_sym_BSLASHTextcite] = ACTIONS(12231), + [anon_sym_BSLASHsmartcite] = ACTIONS(12231), + [anon_sym_BSLASHSmartcite] = ACTIONS(12231), + [anon_sym_BSLASHsupercite] = ACTIONS(12231), + [anon_sym_BSLASHautocite] = ACTIONS(12231), + [anon_sym_BSLASHAutocite] = ACTIONS(12231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHvolcite] = ACTIONS(12231), + [anon_sym_BSLASHVolcite] = ACTIONS(12231), + [anon_sym_BSLASHpvolcite] = ACTIONS(12231), + [anon_sym_BSLASHPvolcite] = ACTIONS(12231), + [anon_sym_BSLASHfvolcite] = ACTIONS(12231), + [anon_sym_BSLASHftvolcite] = ACTIONS(12231), + [anon_sym_BSLASHsvolcite] = ACTIONS(12231), + [anon_sym_BSLASHSvolcite] = ACTIONS(12231), + [anon_sym_BSLASHtvolcite] = ACTIONS(12231), + [anon_sym_BSLASHTvolcite] = ACTIONS(12231), + [anon_sym_BSLASHavolcite] = ACTIONS(12231), + [anon_sym_BSLASHAvolcite] = ACTIONS(12231), + [anon_sym_BSLASHnotecite] = ACTIONS(12231), + [anon_sym_BSLASHpnotecite] = ACTIONS(12231), + [anon_sym_BSLASHPnotecite] = ACTIONS(12231), + [anon_sym_BSLASHfnotecite] = ACTIONS(12231), + [anon_sym_BSLASHusepackage] = ACTIONS(12231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12231), + [anon_sym_BSLASHinclude] = ACTIONS(12231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12231), + [anon_sym_BSLASHinput] = ACTIONS(12231), + [anon_sym_BSLASHsubfile] = ACTIONS(12231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12231), + [anon_sym_BSLASHbibliography] = ACTIONS(12231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12231), + [anon_sym_BSLASHincludesvg] = ACTIONS(12231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12231), + [anon_sym_BSLASHimport] = ACTIONS(12231), + [anon_sym_BSLASHsubimport] = ACTIONS(12231), + [anon_sym_BSLASHinputfrom] = ACTIONS(12231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12231), + [anon_sym_BSLASHincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHlabel] = ACTIONS(12231), + [anon_sym_BSLASHref] = ACTIONS(12231), + [anon_sym_BSLASHvref] = ACTIONS(12231), + [anon_sym_BSLASHVref] = ACTIONS(12231), + [anon_sym_BSLASHautoref] = ACTIONS(12231), + [anon_sym_BSLASHpageref] = ACTIONS(12231), + [anon_sym_BSLASHcref] = ACTIONS(12231), + [anon_sym_BSLASHCref] = ACTIONS(12231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnameCref] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHlabelcref] = ACTIONS(12231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12231), + [anon_sym_BSLASHeqref] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange] = ACTIONS(12231), + [anon_sym_BSLASHCrefrange] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewlabel] = ACTIONS(12231), + [anon_sym_BSLASHnewcommand] = ACTIONS(12231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12231), + [anon_sym_BSLASHgls] = ACTIONS(12231), + [anon_sym_BSLASHGls] = ACTIONS(12231), + [anon_sym_BSLASHGLS] = ACTIONS(12231), + [anon_sym_BSLASHglspl] = ACTIONS(12231), + [anon_sym_BSLASHGlspl] = ACTIONS(12231), + [anon_sym_BSLASHGLSpl] = ACTIONS(12231), + [anon_sym_BSLASHglsdisp] = ACTIONS(12231), + [anon_sym_BSLASHglslink] = ACTIONS(12231), + [anon_sym_BSLASHglstext] = ACTIONS(12231), + [anon_sym_BSLASHGlstext] = ACTIONS(12231), + [anon_sym_BSLASHGLStext] = ACTIONS(12231), + [anon_sym_BSLASHglsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12231), + [anon_sym_BSLASHglsplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSplural] = ACTIONS(12231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHglsname] = ACTIONS(12231), + [anon_sym_BSLASHGlsname] = ACTIONS(12231), + [anon_sym_BSLASHGLSname] = ACTIONS(12231), + [anon_sym_BSLASHglssymbol] = ACTIONS(12231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12231), + [anon_sym_BSLASHglsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12231), + [anon_sym_BSLASHglsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12231), + [anon_sym_BSLASHglsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12231), + [anon_sym_BSLASHglsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12231), + [anon_sym_BSLASHglsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12231), + [anon_sym_BSLASHnewacronym] = ACTIONS(12231), + [anon_sym_BSLASHacrshort] = ACTIONS(12231), + [anon_sym_BSLASHAcrshort] = ACTIONS(12231), + [anon_sym_BSLASHACRshort] = ACTIONS(12231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12231), + [anon_sym_BSLASHacrlong] = ACTIONS(12231), + [anon_sym_BSLASHAcrlong] = ACTIONS(12231), + [anon_sym_BSLASHACRlong] = ACTIONS(12231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12231), + [anon_sym_BSLASHacrfull] = ACTIONS(12231), + [anon_sym_BSLASHAcrfull] = ACTIONS(12231), + [anon_sym_BSLASHACRfull] = ACTIONS(12231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12231), + [anon_sym_BSLASHacs] = ACTIONS(12231), + [anon_sym_BSLASHAcs] = ACTIONS(12231), + [anon_sym_BSLASHacsp] = ACTIONS(12231), + [anon_sym_BSLASHAcsp] = ACTIONS(12231), + [anon_sym_BSLASHacl] = ACTIONS(12231), + [anon_sym_BSLASHAcl] = ACTIONS(12231), + [anon_sym_BSLASHaclp] = ACTIONS(12231), + [anon_sym_BSLASHAclp] = ACTIONS(12231), + [anon_sym_BSLASHacf] = ACTIONS(12231), + [anon_sym_BSLASHAcf] = ACTIONS(12231), + [anon_sym_BSLASHacfp] = ACTIONS(12231), + [anon_sym_BSLASHAcfp] = ACTIONS(12231), + [anon_sym_BSLASHac] = ACTIONS(12231), + [anon_sym_BSLASHAc] = ACTIONS(12231), + [anon_sym_BSLASHacp] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12231), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12231), + [anon_sym_BSLASHcolor] = ACTIONS(12231), + [anon_sym_BSLASHcolorbox] = ACTIONS(12231), + [anon_sym_BSLASHtextcolor] = ACTIONS(12231), + [anon_sym_BSLASHpagecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12231), + }, + [1727] = { + [sym_generic_command_name] = ACTIONS(12345), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12345), + [anon_sym_BSLASHitem] = ACTIONS(12345), + [anon_sym_LBRACK] = ACTIONS(12343), + [anon_sym_RBRACK] = ACTIONS(12343), + [anon_sym_LBRACE] = ACTIONS(12343), + [anon_sym_RBRACE] = ACTIONS(12343), + [anon_sym_LPAREN] = ACTIONS(12343), + [anon_sym_COMMA] = ACTIONS(12343), + [anon_sym_EQ] = ACTIONS(12343), + [sym_word] = ACTIONS(12343), + [sym_param] = ACTIONS(12343), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12343), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12343), + [anon_sym_DOLLAR] = ACTIONS(12345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12343), + [anon_sym_BSLASHbegin] = ACTIONS(12345), + [anon_sym_BSLASHcaption] = ACTIONS(12345), + [anon_sym_BSLASHcite] = ACTIONS(12345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCite] = ACTIONS(12345), + [anon_sym_BSLASHnocite] = ACTIONS(12345), + [anon_sym_BSLASHcitet] = ACTIONS(12345), + [anon_sym_BSLASHcitep] = ACTIONS(12345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteauthor] = ACTIONS(12345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitetitle] = ACTIONS(12345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteyear] = ACTIONS(12345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitedate] = ACTIONS(12345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteurl] = ACTIONS(12345), + [anon_sym_BSLASHfullcite] = ACTIONS(12345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12345), + [anon_sym_BSLASHcitealt] = ACTIONS(12345), + [anon_sym_BSLASHcitealp] = ACTIONS(12345), + [anon_sym_BSLASHcitetext] = ACTIONS(12345), + [anon_sym_BSLASHparencite] = ACTIONS(12345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHParencite] = ACTIONS(12345), + [anon_sym_BSLASHfootcite] = ACTIONS(12345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12345), + [anon_sym_BSLASHtextcite] = ACTIONS(12345), + [anon_sym_BSLASHTextcite] = ACTIONS(12345), + [anon_sym_BSLASHsmartcite] = ACTIONS(12345), + [anon_sym_BSLASHSmartcite] = ACTIONS(12345), + [anon_sym_BSLASHsupercite] = ACTIONS(12345), + [anon_sym_BSLASHautocite] = ACTIONS(12345), + [anon_sym_BSLASHAutocite] = ACTIONS(12345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHvolcite] = ACTIONS(12345), + [anon_sym_BSLASHVolcite] = ACTIONS(12345), + [anon_sym_BSLASHpvolcite] = ACTIONS(12345), + [anon_sym_BSLASHPvolcite] = ACTIONS(12345), + [anon_sym_BSLASHfvolcite] = ACTIONS(12345), + [anon_sym_BSLASHftvolcite] = ACTIONS(12345), + [anon_sym_BSLASHsvolcite] = ACTIONS(12345), + [anon_sym_BSLASHSvolcite] = ACTIONS(12345), + [anon_sym_BSLASHtvolcite] = ACTIONS(12345), + [anon_sym_BSLASHTvolcite] = ACTIONS(12345), + [anon_sym_BSLASHavolcite] = ACTIONS(12345), + [anon_sym_BSLASHAvolcite] = ACTIONS(12345), + [anon_sym_BSLASHnotecite] = ACTIONS(12345), + [anon_sym_BSLASHpnotecite] = ACTIONS(12345), + [anon_sym_BSLASHPnotecite] = ACTIONS(12345), + [anon_sym_BSLASHfnotecite] = ACTIONS(12345), + [anon_sym_BSLASHusepackage] = ACTIONS(12345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12345), + [anon_sym_BSLASHinclude] = ACTIONS(12345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12345), + [anon_sym_BSLASHinput] = ACTIONS(12345), + [anon_sym_BSLASHsubfile] = ACTIONS(12345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12345), + [anon_sym_BSLASHbibliography] = ACTIONS(12345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12345), + [anon_sym_BSLASHincludesvg] = ACTIONS(12345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12345), + [anon_sym_BSLASHimport] = ACTIONS(12345), + [anon_sym_BSLASHsubimport] = ACTIONS(12345), + [anon_sym_BSLASHinputfrom] = ACTIONS(12345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12345), + [anon_sym_BSLASHincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHlabel] = ACTIONS(12345), + [anon_sym_BSLASHref] = ACTIONS(12345), + [anon_sym_BSLASHvref] = ACTIONS(12345), + [anon_sym_BSLASHVref] = ACTIONS(12345), + [anon_sym_BSLASHautoref] = ACTIONS(12345), + [anon_sym_BSLASHpageref] = ACTIONS(12345), + [anon_sym_BSLASHcref] = ACTIONS(12345), + [anon_sym_BSLASHCref] = ACTIONS(12345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnameCref] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHlabelcref] = ACTIONS(12345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12345), + [anon_sym_BSLASHeqref] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange] = ACTIONS(12345), + [anon_sym_BSLASHCrefrange] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewlabel] = ACTIONS(12345), + [anon_sym_BSLASHnewcommand] = ACTIONS(12345), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12345), + [anon_sym_BSLASHgls] = ACTIONS(12345), + [anon_sym_BSLASHGls] = ACTIONS(12345), + [anon_sym_BSLASHGLS] = ACTIONS(12345), + [anon_sym_BSLASHglspl] = ACTIONS(12345), + [anon_sym_BSLASHGlspl] = ACTIONS(12345), + [anon_sym_BSLASHGLSpl] = ACTIONS(12345), + [anon_sym_BSLASHglsdisp] = ACTIONS(12345), + [anon_sym_BSLASHglslink] = ACTIONS(12345), + [anon_sym_BSLASHglstext] = ACTIONS(12345), + [anon_sym_BSLASHGlstext] = ACTIONS(12345), + [anon_sym_BSLASHGLStext] = ACTIONS(12345), + [anon_sym_BSLASHglsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12345), + [anon_sym_BSLASHglsplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSplural] = ACTIONS(12345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHglsname] = ACTIONS(12345), + [anon_sym_BSLASHGlsname] = ACTIONS(12345), + [anon_sym_BSLASHGLSname] = ACTIONS(12345), + [anon_sym_BSLASHglssymbol] = ACTIONS(12345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12345), + [anon_sym_BSLASHglsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12345), + [anon_sym_BSLASHglsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12345), + [anon_sym_BSLASHglsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12345), + [anon_sym_BSLASHglsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12345), + [anon_sym_BSLASHglsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12345), + [anon_sym_BSLASHnewacronym] = ACTIONS(12345), + [anon_sym_BSLASHacrshort] = ACTIONS(12345), + [anon_sym_BSLASHAcrshort] = ACTIONS(12345), + [anon_sym_BSLASHACRshort] = ACTIONS(12345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12345), + [anon_sym_BSLASHacrlong] = ACTIONS(12345), + [anon_sym_BSLASHAcrlong] = ACTIONS(12345), + [anon_sym_BSLASHACRlong] = ACTIONS(12345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12345), + [anon_sym_BSLASHacrfull] = ACTIONS(12345), + [anon_sym_BSLASHAcrfull] = ACTIONS(12345), + [anon_sym_BSLASHACRfull] = ACTIONS(12345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12345), + [anon_sym_BSLASHacs] = ACTIONS(12345), + [anon_sym_BSLASHAcs] = ACTIONS(12345), + [anon_sym_BSLASHacsp] = ACTIONS(12345), + [anon_sym_BSLASHAcsp] = ACTIONS(12345), + [anon_sym_BSLASHacl] = ACTIONS(12345), + [anon_sym_BSLASHAcl] = ACTIONS(12345), + [anon_sym_BSLASHaclp] = ACTIONS(12345), + [anon_sym_BSLASHAclp] = ACTIONS(12345), + [anon_sym_BSLASHacf] = ACTIONS(12345), + [anon_sym_BSLASHAcf] = ACTIONS(12345), + [anon_sym_BSLASHacfp] = ACTIONS(12345), + [anon_sym_BSLASHAcfp] = ACTIONS(12345), + [anon_sym_BSLASHac] = ACTIONS(12345), + [anon_sym_BSLASHAc] = ACTIONS(12345), + [anon_sym_BSLASHacp] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12345), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12345), + [anon_sym_BSLASHcolor] = ACTIONS(12345), + [anon_sym_BSLASHcolorbox] = ACTIONS(12345), + [anon_sym_BSLASHtextcolor] = ACTIONS(12345), + [anon_sym_BSLASHpagecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12345), + }, + [1728] = { + [sym_generic_command_name] = ACTIONS(12331), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12331), + [anon_sym_BSLASHitem] = ACTIONS(12331), + [anon_sym_LBRACK] = ACTIONS(12329), + [anon_sym_RBRACK] = ACTIONS(12329), + [anon_sym_LBRACE] = ACTIONS(12329), + [anon_sym_RBRACE] = ACTIONS(12329), + [anon_sym_LPAREN] = ACTIONS(12329), + [anon_sym_COMMA] = ACTIONS(12329), + [anon_sym_EQ] = ACTIONS(12329), + [sym_word] = ACTIONS(12329), + [sym_param] = ACTIONS(12329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12329), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12329), + [anon_sym_DOLLAR] = ACTIONS(12331), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12329), + [anon_sym_BSLASHbegin] = ACTIONS(12331), + [anon_sym_BSLASHcaption] = ACTIONS(12331), + [anon_sym_BSLASHcite] = ACTIONS(12331), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCite] = ACTIONS(12331), + [anon_sym_BSLASHnocite] = ACTIONS(12331), + [anon_sym_BSLASHcitet] = ACTIONS(12331), + [anon_sym_BSLASHcitep] = ACTIONS(12331), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteauthor] = ACTIONS(12331), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12331), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitetitle] = ACTIONS(12331), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteyear] = ACTIONS(12331), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitedate] = ACTIONS(12331), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteurl] = ACTIONS(12331), + [anon_sym_BSLASHfullcite] = ACTIONS(12331), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12331), + [anon_sym_BSLASHcitealt] = ACTIONS(12331), + [anon_sym_BSLASHcitealp] = ACTIONS(12331), + [anon_sym_BSLASHcitetext] = ACTIONS(12331), + [anon_sym_BSLASHparencite] = ACTIONS(12331), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHParencite] = ACTIONS(12331), + [anon_sym_BSLASHfootcite] = ACTIONS(12331), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12331), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12331), + [anon_sym_BSLASHtextcite] = ACTIONS(12331), + [anon_sym_BSLASHTextcite] = ACTIONS(12331), + [anon_sym_BSLASHsmartcite] = ACTIONS(12331), + [anon_sym_BSLASHSmartcite] = ACTIONS(12331), + [anon_sym_BSLASHsupercite] = ACTIONS(12331), + [anon_sym_BSLASHautocite] = ACTIONS(12331), + [anon_sym_BSLASHAutocite] = ACTIONS(12331), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHvolcite] = ACTIONS(12331), + [anon_sym_BSLASHVolcite] = ACTIONS(12331), + [anon_sym_BSLASHpvolcite] = ACTIONS(12331), + [anon_sym_BSLASHPvolcite] = ACTIONS(12331), + [anon_sym_BSLASHfvolcite] = ACTIONS(12331), + [anon_sym_BSLASHftvolcite] = ACTIONS(12331), + [anon_sym_BSLASHsvolcite] = ACTIONS(12331), + [anon_sym_BSLASHSvolcite] = ACTIONS(12331), + [anon_sym_BSLASHtvolcite] = ACTIONS(12331), + [anon_sym_BSLASHTvolcite] = ACTIONS(12331), + [anon_sym_BSLASHavolcite] = ACTIONS(12331), + [anon_sym_BSLASHAvolcite] = ACTIONS(12331), + [anon_sym_BSLASHnotecite] = ACTIONS(12331), + [anon_sym_BSLASHpnotecite] = ACTIONS(12331), + [anon_sym_BSLASHPnotecite] = ACTIONS(12331), + [anon_sym_BSLASHfnotecite] = ACTIONS(12331), + [anon_sym_BSLASHusepackage] = ACTIONS(12331), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12331), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12331), + [anon_sym_BSLASHinclude] = ACTIONS(12331), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12331), + [anon_sym_BSLASHinput] = ACTIONS(12331), + [anon_sym_BSLASHsubfile] = ACTIONS(12331), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12331), + [anon_sym_BSLASHbibliography] = ACTIONS(12331), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12331), + [anon_sym_BSLASHincludesvg] = ACTIONS(12331), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12331), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12331), + [anon_sym_BSLASHimport] = ACTIONS(12331), + [anon_sym_BSLASHsubimport] = ACTIONS(12331), + [anon_sym_BSLASHinputfrom] = ACTIONS(12331), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12331), + [anon_sym_BSLASHincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHlabel] = ACTIONS(12331), + [anon_sym_BSLASHref] = ACTIONS(12331), + [anon_sym_BSLASHvref] = ACTIONS(12331), + [anon_sym_BSLASHVref] = ACTIONS(12331), + [anon_sym_BSLASHautoref] = ACTIONS(12331), + [anon_sym_BSLASHpageref] = ACTIONS(12331), + [anon_sym_BSLASHcref] = ACTIONS(12331), + [anon_sym_BSLASHCref] = ACTIONS(12331), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnameCref] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHlabelcref] = ACTIONS(12331), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12331), + [anon_sym_BSLASHeqref] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange] = ACTIONS(12331), + [anon_sym_BSLASHCrefrange] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewlabel] = ACTIONS(12331), + [anon_sym_BSLASHnewcommand] = ACTIONS(12331), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12331), + [anon_sym_BSLASHgls] = ACTIONS(12331), + [anon_sym_BSLASHGls] = ACTIONS(12331), + [anon_sym_BSLASHGLS] = ACTIONS(12331), + [anon_sym_BSLASHglspl] = ACTIONS(12331), + [anon_sym_BSLASHGlspl] = ACTIONS(12331), + [anon_sym_BSLASHGLSpl] = ACTIONS(12331), + [anon_sym_BSLASHglsdisp] = ACTIONS(12331), + [anon_sym_BSLASHglslink] = ACTIONS(12331), + [anon_sym_BSLASHglstext] = ACTIONS(12331), + [anon_sym_BSLASHGlstext] = ACTIONS(12331), + [anon_sym_BSLASHGLStext] = ACTIONS(12331), + [anon_sym_BSLASHglsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12331), + [anon_sym_BSLASHglsplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSplural] = ACTIONS(12331), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHglsname] = ACTIONS(12331), + [anon_sym_BSLASHGlsname] = ACTIONS(12331), + [anon_sym_BSLASHGLSname] = ACTIONS(12331), + [anon_sym_BSLASHglssymbol] = ACTIONS(12331), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12331), + [anon_sym_BSLASHglsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12331), + [anon_sym_BSLASHglsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12331), + [anon_sym_BSLASHglsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12331), + [anon_sym_BSLASHglsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12331), + [anon_sym_BSLASHglsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12331), + [anon_sym_BSLASHnewacronym] = ACTIONS(12331), + [anon_sym_BSLASHacrshort] = ACTIONS(12331), + [anon_sym_BSLASHAcrshort] = ACTIONS(12331), + [anon_sym_BSLASHACRshort] = ACTIONS(12331), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12331), + [anon_sym_BSLASHacrlong] = ACTIONS(12331), + [anon_sym_BSLASHAcrlong] = ACTIONS(12331), + [anon_sym_BSLASHACRlong] = ACTIONS(12331), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12331), + [anon_sym_BSLASHacrfull] = ACTIONS(12331), + [anon_sym_BSLASHAcrfull] = ACTIONS(12331), + [anon_sym_BSLASHACRfull] = ACTIONS(12331), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12331), + [anon_sym_BSLASHacs] = ACTIONS(12331), + [anon_sym_BSLASHAcs] = ACTIONS(12331), + [anon_sym_BSLASHacsp] = ACTIONS(12331), + [anon_sym_BSLASHAcsp] = ACTIONS(12331), + [anon_sym_BSLASHacl] = ACTIONS(12331), + [anon_sym_BSLASHAcl] = ACTIONS(12331), + [anon_sym_BSLASHaclp] = ACTIONS(12331), + [anon_sym_BSLASHAclp] = ACTIONS(12331), + [anon_sym_BSLASHacf] = ACTIONS(12331), + [anon_sym_BSLASHAcf] = ACTIONS(12331), + [anon_sym_BSLASHacfp] = ACTIONS(12331), + [anon_sym_BSLASHAcfp] = ACTIONS(12331), + [anon_sym_BSLASHac] = ACTIONS(12331), + [anon_sym_BSLASHAc] = ACTIONS(12331), + [anon_sym_BSLASHacp] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12331), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12331), + [anon_sym_BSLASHcolor] = ACTIONS(12331), + [anon_sym_BSLASHcolorbox] = ACTIONS(12331), + [anon_sym_BSLASHtextcolor] = ACTIONS(12331), + [anon_sym_BSLASHpagecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12331), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12331), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12331), + }, + [1729] = { + [sym_generic_command_name] = ACTIONS(12327), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12327), + [anon_sym_BSLASHitem] = ACTIONS(12327), + [anon_sym_LBRACK] = ACTIONS(12325), + [anon_sym_RBRACK] = ACTIONS(12325), + [anon_sym_LBRACE] = ACTIONS(12325), + [anon_sym_RBRACE] = ACTIONS(12325), + [anon_sym_LPAREN] = ACTIONS(12325), + [anon_sym_COMMA] = ACTIONS(12325), + [anon_sym_EQ] = ACTIONS(12325), + [sym_word] = ACTIONS(12325), + [sym_param] = ACTIONS(12325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12325), + [anon_sym_DOLLAR] = ACTIONS(12327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12325), + [anon_sym_BSLASHbegin] = ACTIONS(12327), + [anon_sym_BSLASHcaption] = ACTIONS(12327), + [anon_sym_BSLASHcite] = ACTIONS(12327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCite] = ACTIONS(12327), + [anon_sym_BSLASHnocite] = ACTIONS(12327), + [anon_sym_BSLASHcitet] = ACTIONS(12327), + [anon_sym_BSLASHcitep] = ACTIONS(12327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteauthor] = ACTIONS(12327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitetitle] = ACTIONS(12327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteyear] = ACTIONS(12327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitedate] = ACTIONS(12327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteurl] = ACTIONS(12327), + [anon_sym_BSLASHfullcite] = ACTIONS(12327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12327), + [anon_sym_BSLASHcitealt] = ACTIONS(12327), + [anon_sym_BSLASHcitealp] = ACTIONS(12327), + [anon_sym_BSLASHcitetext] = ACTIONS(12327), + [anon_sym_BSLASHparencite] = ACTIONS(12327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHParencite] = ACTIONS(12327), + [anon_sym_BSLASHfootcite] = ACTIONS(12327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12327), + [anon_sym_BSLASHtextcite] = ACTIONS(12327), + [anon_sym_BSLASHTextcite] = ACTIONS(12327), + [anon_sym_BSLASHsmartcite] = ACTIONS(12327), + [anon_sym_BSLASHSmartcite] = ACTIONS(12327), + [anon_sym_BSLASHsupercite] = ACTIONS(12327), + [anon_sym_BSLASHautocite] = ACTIONS(12327), + [anon_sym_BSLASHAutocite] = ACTIONS(12327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHvolcite] = ACTIONS(12327), + [anon_sym_BSLASHVolcite] = ACTIONS(12327), + [anon_sym_BSLASHpvolcite] = ACTIONS(12327), + [anon_sym_BSLASHPvolcite] = ACTIONS(12327), + [anon_sym_BSLASHfvolcite] = ACTIONS(12327), + [anon_sym_BSLASHftvolcite] = ACTIONS(12327), + [anon_sym_BSLASHsvolcite] = ACTIONS(12327), + [anon_sym_BSLASHSvolcite] = ACTIONS(12327), + [anon_sym_BSLASHtvolcite] = ACTIONS(12327), + [anon_sym_BSLASHTvolcite] = ACTIONS(12327), + [anon_sym_BSLASHavolcite] = ACTIONS(12327), + [anon_sym_BSLASHAvolcite] = ACTIONS(12327), + [anon_sym_BSLASHnotecite] = ACTIONS(12327), + [anon_sym_BSLASHpnotecite] = ACTIONS(12327), + [anon_sym_BSLASHPnotecite] = ACTIONS(12327), + [anon_sym_BSLASHfnotecite] = ACTIONS(12327), + [anon_sym_BSLASHusepackage] = ACTIONS(12327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12327), + [anon_sym_BSLASHinclude] = ACTIONS(12327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12327), + [anon_sym_BSLASHinput] = ACTIONS(12327), + [anon_sym_BSLASHsubfile] = ACTIONS(12327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12327), + [anon_sym_BSLASHbibliography] = ACTIONS(12327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12327), + [anon_sym_BSLASHincludesvg] = ACTIONS(12327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12327), + [anon_sym_BSLASHimport] = ACTIONS(12327), + [anon_sym_BSLASHsubimport] = ACTIONS(12327), + [anon_sym_BSLASHinputfrom] = ACTIONS(12327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12327), + [anon_sym_BSLASHincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHlabel] = ACTIONS(12327), + [anon_sym_BSLASHref] = ACTIONS(12327), + [anon_sym_BSLASHvref] = ACTIONS(12327), + [anon_sym_BSLASHVref] = ACTIONS(12327), + [anon_sym_BSLASHautoref] = ACTIONS(12327), + [anon_sym_BSLASHpageref] = ACTIONS(12327), + [anon_sym_BSLASHcref] = ACTIONS(12327), + [anon_sym_BSLASHCref] = ACTIONS(12327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnameCref] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHlabelcref] = ACTIONS(12327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12327), + [anon_sym_BSLASHeqref] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange] = ACTIONS(12327), + [anon_sym_BSLASHCrefrange] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewlabel] = ACTIONS(12327), + [anon_sym_BSLASHnewcommand] = ACTIONS(12327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12327), + [anon_sym_BSLASHgls] = ACTIONS(12327), + [anon_sym_BSLASHGls] = ACTIONS(12327), + [anon_sym_BSLASHGLS] = ACTIONS(12327), + [anon_sym_BSLASHglspl] = ACTIONS(12327), + [anon_sym_BSLASHGlspl] = ACTIONS(12327), + [anon_sym_BSLASHGLSpl] = ACTIONS(12327), + [anon_sym_BSLASHglsdisp] = ACTIONS(12327), + [anon_sym_BSLASHglslink] = ACTIONS(12327), + [anon_sym_BSLASHglstext] = ACTIONS(12327), + [anon_sym_BSLASHGlstext] = ACTIONS(12327), + [anon_sym_BSLASHGLStext] = ACTIONS(12327), + [anon_sym_BSLASHglsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12327), + [anon_sym_BSLASHglsplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSplural] = ACTIONS(12327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHglsname] = ACTIONS(12327), + [anon_sym_BSLASHGlsname] = ACTIONS(12327), + [anon_sym_BSLASHGLSname] = ACTIONS(12327), + [anon_sym_BSLASHglssymbol] = ACTIONS(12327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12327), + [anon_sym_BSLASHglsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12327), + [anon_sym_BSLASHglsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12327), + [anon_sym_BSLASHglsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12327), + [anon_sym_BSLASHglsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12327), + [anon_sym_BSLASHglsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12327), + [anon_sym_BSLASHnewacronym] = ACTIONS(12327), + [anon_sym_BSLASHacrshort] = ACTIONS(12327), + [anon_sym_BSLASHAcrshort] = ACTIONS(12327), + [anon_sym_BSLASHACRshort] = ACTIONS(12327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12327), + [anon_sym_BSLASHacrlong] = ACTIONS(12327), + [anon_sym_BSLASHAcrlong] = ACTIONS(12327), + [anon_sym_BSLASHACRlong] = ACTIONS(12327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12327), + [anon_sym_BSLASHacrfull] = ACTIONS(12327), + [anon_sym_BSLASHAcrfull] = ACTIONS(12327), + [anon_sym_BSLASHACRfull] = ACTIONS(12327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12327), + [anon_sym_BSLASHacs] = ACTIONS(12327), + [anon_sym_BSLASHAcs] = ACTIONS(12327), + [anon_sym_BSLASHacsp] = ACTIONS(12327), + [anon_sym_BSLASHAcsp] = ACTIONS(12327), + [anon_sym_BSLASHacl] = ACTIONS(12327), + [anon_sym_BSLASHAcl] = ACTIONS(12327), + [anon_sym_BSLASHaclp] = ACTIONS(12327), + [anon_sym_BSLASHAclp] = ACTIONS(12327), + [anon_sym_BSLASHacf] = ACTIONS(12327), + [anon_sym_BSLASHAcf] = ACTIONS(12327), + [anon_sym_BSLASHacfp] = ACTIONS(12327), + [anon_sym_BSLASHAcfp] = ACTIONS(12327), + [anon_sym_BSLASHac] = ACTIONS(12327), + [anon_sym_BSLASHAc] = ACTIONS(12327), + [anon_sym_BSLASHacp] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12327), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12327), + [anon_sym_BSLASHcolor] = ACTIONS(12327), + [anon_sym_BSLASHcolorbox] = ACTIONS(12327), + [anon_sym_BSLASHtextcolor] = ACTIONS(12327), + [anon_sym_BSLASHpagecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12327), + }, + [1730] = { + [sym_generic_command_name] = ACTIONS(12311), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12311), + [anon_sym_BSLASHitem] = ACTIONS(12311), + [anon_sym_LBRACK] = ACTIONS(12309), + [anon_sym_RBRACK] = ACTIONS(12309), + [anon_sym_LBRACE] = ACTIONS(12309), + [anon_sym_RBRACE] = ACTIONS(12309), + [anon_sym_LPAREN] = ACTIONS(12309), + [anon_sym_COMMA] = ACTIONS(12309), + [anon_sym_EQ] = ACTIONS(12309), + [sym_word] = ACTIONS(12309), + [sym_param] = ACTIONS(12309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12309), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12309), + [anon_sym_DOLLAR] = ACTIONS(12311), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12309), + [anon_sym_BSLASHbegin] = ACTIONS(12311), + [anon_sym_BSLASHcaption] = ACTIONS(12311), + [anon_sym_BSLASHcite] = ACTIONS(12311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCite] = ACTIONS(12311), + [anon_sym_BSLASHnocite] = ACTIONS(12311), + [anon_sym_BSLASHcitet] = ACTIONS(12311), + [anon_sym_BSLASHcitep] = ACTIONS(12311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteauthor] = ACTIONS(12311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitetitle] = ACTIONS(12311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteyear] = ACTIONS(12311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitedate] = ACTIONS(12311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteurl] = ACTIONS(12311), + [anon_sym_BSLASHfullcite] = ACTIONS(12311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12311), + [anon_sym_BSLASHcitealt] = ACTIONS(12311), + [anon_sym_BSLASHcitealp] = ACTIONS(12311), + [anon_sym_BSLASHcitetext] = ACTIONS(12311), + [anon_sym_BSLASHparencite] = ACTIONS(12311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHParencite] = ACTIONS(12311), + [anon_sym_BSLASHfootcite] = ACTIONS(12311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12311), + [anon_sym_BSLASHtextcite] = ACTIONS(12311), + [anon_sym_BSLASHTextcite] = ACTIONS(12311), + [anon_sym_BSLASHsmartcite] = ACTIONS(12311), + [anon_sym_BSLASHSmartcite] = ACTIONS(12311), + [anon_sym_BSLASHsupercite] = ACTIONS(12311), + [anon_sym_BSLASHautocite] = ACTIONS(12311), + [anon_sym_BSLASHAutocite] = ACTIONS(12311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHvolcite] = ACTIONS(12311), + [anon_sym_BSLASHVolcite] = ACTIONS(12311), + [anon_sym_BSLASHpvolcite] = ACTIONS(12311), + [anon_sym_BSLASHPvolcite] = ACTIONS(12311), + [anon_sym_BSLASHfvolcite] = ACTIONS(12311), + [anon_sym_BSLASHftvolcite] = ACTIONS(12311), + [anon_sym_BSLASHsvolcite] = ACTIONS(12311), + [anon_sym_BSLASHSvolcite] = ACTIONS(12311), + [anon_sym_BSLASHtvolcite] = ACTIONS(12311), + [anon_sym_BSLASHTvolcite] = ACTIONS(12311), + [anon_sym_BSLASHavolcite] = ACTIONS(12311), + [anon_sym_BSLASHAvolcite] = ACTIONS(12311), + [anon_sym_BSLASHnotecite] = ACTIONS(12311), + [anon_sym_BSLASHpnotecite] = ACTIONS(12311), + [anon_sym_BSLASHPnotecite] = ACTIONS(12311), + [anon_sym_BSLASHfnotecite] = ACTIONS(12311), + [anon_sym_BSLASHusepackage] = ACTIONS(12311), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12311), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12311), + [anon_sym_BSLASHinclude] = ACTIONS(12311), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12311), + [anon_sym_BSLASHinput] = ACTIONS(12311), + [anon_sym_BSLASHsubfile] = ACTIONS(12311), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12311), + [anon_sym_BSLASHbibliography] = ACTIONS(12311), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12311), + [anon_sym_BSLASHincludesvg] = ACTIONS(12311), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12311), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12311), + [anon_sym_BSLASHimport] = ACTIONS(12311), + [anon_sym_BSLASHsubimport] = ACTIONS(12311), + [anon_sym_BSLASHinputfrom] = ACTIONS(12311), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12311), + [anon_sym_BSLASHincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHlabel] = ACTIONS(12311), + [anon_sym_BSLASHref] = ACTIONS(12311), + [anon_sym_BSLASHvref] = ACTIONS(12311), + [anon_sym_BSLASHVref] = ACTIONS(12311), + [anon_sym_BSLASHautoref] = ACTIONS(12311), + [anon_sym_BSLASHpageref] = ACTIONS(12311), + [anon_sym_BSLASHcref] = ACTIONS(12311), + [anon_sym_BSLASHCref] = ACTIONS(12311), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnameCref] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHlabelcref] = ACTIONS(12311), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12311), + [anon_sym_BSLASHeqref] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange] = ACTIONS(12311), + [anon_sym_BSLASHCrefrange] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewlabel] = ACTIONS(12311), + [anon_sym_BSLASHnewcommand] = ACTIONS(12311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12311), + [anon_sym_BSLASHgls] = ACTIONS(12311), + [anon_sym_BSLASHGls] = ACTIONS(12311), + [anon_sym_BSLASHGLS] = ACTIONS(12311), + [anon_sym_BSLASHglspl] = ACTIONS(12311), + [anon_sym_BSLASHGlspl] = ACTIONS(12311), + [anon_sym_BSLASHGLSpl] = ACTIONS(12311), + [anon_sym_BSLASHglsdisp] = ACTIONS(12311), + [anon_sym_BSLASHglslink] = ACTIONS(12311), + [anon_sym_BSLASHglstext] = ACTIONS(12311), + [anon_sym_BSLASHGlstext] = ACTIONS(12311), + [anon_sym_BSLASHGLStext] = ACTIONS(12311), + [anon_sym_BSLASHglsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12311), + [anon_sym_BSLASHglsplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSplural] = ACTIONS(12311), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHglsname] = ACTIONS(12311), + [anon_sym_BSLASHGlsname] = ACTIONS(12311), + [anon_sym_BSLASHGLSname] = ACTIONS(12311), + [anon_sym_BSLASHglssymbol] = ACTIONS(12311), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12311), + [anon_sym_BSLASHglsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12311), + [anon_sym_BSLASHglsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12311), + [anon_sym_BSLASHglsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12311), + [anon_sym_BSLASHglsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12311), + [anon_sym_BSLASHglsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12311), + [anon_sym_BSLASHnewacronym] = ACTIONS(12311), + [anon_sym_BSLASHacrshort] = ACTIONS(12311), + [anon_sym_BSLASHAcrshort] = ACTIONS(12311), + [anon_sym_BSLASHACRshort] = ACTIONS(12311), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12311), + [anon_sym_BSLASHacrlong] = ACTIONS(12311), + [anon_sym_BSLASHAcrlong] = ACTIONS(12311), + [anon_sym_BSLASHACRlong] = ACTIONS(12311), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12311), + [anon_sym_BSLASHacrfull] = ACTIONS(12311), + [anon_sym_BSLASHAcrfull] = ACTIONS(12311), + [anon_sym_BSLASHACRfull] = ACTIONS(12311), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12311), + [anon_sym_BSLASHacs] = ACTIONS(12311), + [anon_sym_BSLASHAcs] = ACTIONS(12311), + [anon_sym_BSLASHacsp] = ACTIONS(12311), + [anon_sym_BSLASHAcsp] = ACTIONS(12311), + [anon_sym_BSLASHacl] = ACTIONS(12311), + [anon_sym_BSLASHAcl] = ACTIONS(12311), + [anon_sym_BSLASHaclp] = ACTIONS(12311), + [anon_sym_BSLASHAclp] = ACTIONS(12311), + [anon_sym_BSLASHacf] = ACTIONS(12311), + [anon_sym_BSLASHAcf] = ACTIONS(12311), + [anon_sym_BSLASHacfp] = ACTIONS(12311), + [anon_sym_BSLASHAcfp] = ACTIONS(12311), + [anon_sym_BSLASHac] = ACTIONS(12311), + [anon_sym_BSLASHAc] = ACTIONS(12311), + [anon_sym_BSLASHacp] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12311), + [anon_sym_BSLASHcolor] = ACTIONS(12311), + [anon_sym_BSLASHcolorbox] = ACTIONS(12311), + [anon_sym_BSLASHtextcolor] = ACTIONS(12311), + [anon_sym_BSLASHpagecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12311), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12311), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12311), + }, + [1731] = { + [sym_generic_command_name] = ACTIONS(12299), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12299), + [anon_sym_BSLASHitem] = ACTIONS(12299), + [anon_sym_LBRACK] = ACTIONS(12297), + [anon_sym_RBRACK] = ACTIONS(12297), + [anon_sym_LBRACE] = ACTIONS(12297), + [anon_sym_RBRACE] = ACTIONS(12297), + [anon_sym_LPAREN] = ACTIONS(12297), + [anon_sym_COMMA] = ACTIONS(12297), + [anon_sym_EQ] = ACTIONS(12297), + [sym_word] = ACTIONS(12297), + [sym_param] = ACTIONS(12297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12297), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12297), + [anon_sym_DOLLAR] = ACTIONS(12299), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12297), + [anon_sym_BSLASHbegin] = ACTIONS(12299), + [anon_sym_BSLASHcaption] = ACTIONS(12299), + [anon_sym_BSLASHcite] = ACTIONS(12299), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCite] = ACTIONS(12299), + [anon_sym_BSLASHnocite] = ACTIONS(12299), + [anon_sym_BSLASHcitet] = ACTIONS(12299), + [anon_sym_BSLASHcitep] = ACTIONS(12299), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteauthor] = ACTIONS(12299), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12299), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitetitle] = ACTIONS(12299), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteyear] = ACTIONS(12299), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitedate] = ACTIONS(12299), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteurl] = ACTIONS(12299), + [anon_sym_BSLASHfullcite] = ACTIONS(12299), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12299), + [anon_sym_BSLASHcitealt] = ACTIONS(12299), + [anon_sym_BSLASHcitealp] = ACTIONS(12299), + [anon_sym_BSLASHcitetext] = ACTIONS(12299), + [anon_sym_BSLASHparencite] = ACTIONS(12299), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHParencite] = ACTIONS(12299), + [anon_sym_BSLASHfootcite] = ACTIONS(12299), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12299), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12299), + [anon_sym_BSLASHtextcite] = ACTIONS(12299), + [anon_sym_BSLASHTextcite] = ACTIONS(12299), + [anon_sym_BSLASHsmartcite] = ACTIONS(12299), + [anon_sym_BSLASHSmartcite] = ACTIONS(12299), + [anon_sym_BSLASHsupercite] = ACTIONS(12299), + [anon_sym_BSLASHautocite] = ACTIONS(12299), + [anon_sym_BSLASHAutocite] = ACTIONS(12299), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHvolcite] = ACTIONS(12299), + [anon_sym_BSLASHVolcite] = ACTIONS(12299), + [anon_sym_BSLASHpvolcite] = ACTIONS(12299), + [anon_sym_BSLASHPvolcite] = ACTIONS(12299), + [anon_sym_BSLASHfvolcite] = ACTIONS(12299), + [anon_sym_BSLASHftvolcite] = ACTIONS(12299), + [anon_sym_BSLASHsvolcite] = ACTIONS(12299), + [anon_sym_BSLASHSvolcite] = ACTIONS(12299), + [anon_sym_BSLASHtvolcite] = ACTIONS(12299), + [anon_sym_BSLASHTvolcite] = ACTIONS(12299), + [anon_sym_BSLASHavolcite] = ACTIONS(12299), + [anon_sym_BSLASHAvolcite] = ACTIONS(12299), + [anon_sym_BSLASHnotecite] = ACTIONS(12299), + [anon_sym_BSLASHpnotecite] = ACTIONS(12299), + [anon_sym_BSLASHPnotecite] = ACTIONS(12299), + [anon_sym_BSLASHfnotecite] = ACTIONS(12299), + [anon_sym_BSLASHusepackage] = ACTIONS(12299), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12299), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12299), + [anon_sym_BSLASHinclude] = ACTIONS(12299), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12299), + [anon_sym_BSLASHinput] = ACTIONS(12299), + [anon_sym_BSLASHsubfile] = ACTIONS(12299), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12299), + [anon_sym_BSLASHbibliography] = ACTIONS(12299), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12299), + [anon_sym_BSLASHincludesvg] = ACTIONS(12299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12299), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12299), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12299), + [anon_sym_BSLASHimport] = ACTIONS(12299), + [anon_sym_BSLASHsubimport] = ACTIONS(12299), + [anon_sym_BSLASHinputfrom] = ACTIONS(12299), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12299), + [anon_sym_BSLASHincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHlabel] = ACTIONS(12299), + [anon_sym_BSLASHref] = ACTIONS(12299), + [anon_sym_BSLASHvref] = ACTIONS(12299), + [anon_sym_BSLASHVref] = ACTIONS(12299), + [anon_sym_BSLASHautoref] = ACTIONS(12299), + [anon_sym_BSLASHpageref] = ACTIONS(12299), + [anon_sym_BSLASHcref] = ACTIONS(12299), + [anon_sym_BSLASHCref] = ACTIONS(12299), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnameCref] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHlabelcref] = ACTIONS(12299), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12299), + [anon_sym_BSLASHeqref] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange] = ACTIONS(12299), + [anon_sym_BSLASHCrefrange] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewlabel] = ACTIONS(12299), + [anon_sym_BSLASHnewcommand] = ACTIONS(12299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12299), + [anon_sym_BSLASHgls] = ACTIONS(12299), + [anon_sym_BSLASHGls] = ACTIONS(12299), + [anon_sym_BSLASHGLS] = ACTIONS(12299), + [anon_sym_BSLASHglspl] = ACTIONS(12299), + [anon_sym_BSLASHGlspl] = ACTIONS(12299), + [anon_sym_BSLASHGLSpl] = ACTIONS(12299), + [anon_sym_BSLASHglsdisp] = ACTIONS(12299), + [anon_sym_BSLASHglslink] = ACTIONS(12299), + [anon_sym_BSLASHglstext] = ACTIONS(12299), + [anon_sym_BSLASHGlstext] = ACTIONS(12299), + [anon_sym_BSLASHGLStext] = ACTIONS(12299), + [anon_sym_BSLASHglsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12299), + [anon_sym_BSLASHglsplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSplural] = ACTIONS(12299), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHglsname] = ACTIONS(12299), + [anon_sym_BSLASHGlsname] = ACTIONS(12299), + [anon_sym_BSLASHGLSname] = ACTIONS(12299), + [anon_sym_BSLASHglssymbol] = ACTIONS(12299), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12299), + [anon_sym_BSLASHglsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12299), + [anon_sym_BSLASHglsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12299), + [anon_sym_BSLASHglsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12299), + [anon_sym_BSLASHglsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12299), + [anon_sym_BSLASHglsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12299), + [anon_sym_BSLASHnewacronym] = ACTIONS(12299), + [anon_sym_BSLASHacrshort] = ACTIONS(12299), + [anon_sym_BSLASHAcrshort] = ACTIONS(12299), + [anon_sym_BSLASHACRshort] = ACTIONS(12299), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12299), + [anon_sym_BSLASHacrlong] = ACTIONS(12299), + [anon_sym_BSLASHAcrlong] = ACTIONS(12299), + [anon_sym_BSLASHACRlong] = ACTIONS(12299), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12299), + [anon_sym_BSLASHacrfull] = ACTIONS(12299), + [anon_sym_BSLASHAcrfull] = ACTIONS(12299), + [anon_sym_BSLASHACRfull] = ACTIONS(12299), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12299), + [anon_sym_BSLASHacs] = ACTIONS(12299), + [anon_sym_BSLASHAcs] = ACTIONS(12299), + [anon_sym_BSLASHacsp] = ACTIONS(12299), + [anon_sym_BSLASHAcsp] = ACTIONS(12299), + [anon_sym_BSLASHacl] = ACTIONS(12299), + [anon_sym_BSLASHAcl] = ACTIONS(12299), + [anon_sym_BSLASHaclp] = ACTIONS(12299), + [anon_sym_BSLASHAclp] = ACTIONS(12299), + [anon_sym_BSLASHacf] = ACTIONS(12299), + [anon_sym_BSLASHAcf] = ACTIONS(12299), + [anon_sym_BSLASHacfp] = ACTIONS(12299), + [anon_sym_BSLASHAcfp] = ACTIONS(12299), + [anon_sym_BSLASHac] = ACTIONS(12299), + [anon_sym_BSLASHAc] = ACTIONS(12299), + [anon_sym_BSLASHacp] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12299), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12299), + [anon_sym_BSLASHcolor] = ACTIONS(12299), + [anon_sym_BSLASHcolorbox] = ACTIONS(12299), + [anon_sym_BSLASHtextcolor] = ACTIONS(12299), + [anon_sym_BSLASHpagecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12299), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12299), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12299), + }, + [1732] = { + [sym_generic_command_name] = ACTIONS(12283), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12283), + [anon_sym_BSLASHitem] = ACTIONS(12283), + [anon_sym_LBRACK] = ACTIONS(12281), + [anon_sym_RBRACK] = ACTIONS(12281), + [anon_sym_LBRACE] = ACTIONS(12281), + [anon_sym_RBRACE] = ACTIONS(12281), + [anon_sym_LPAREN] = ACTIONS(12281), + [anon_sym_COMMA] = ACTIONS(12281), + [anon_sym_EQ] = ACTIONS(12281), + [sym_word] = ACTIONS(12281), + [sym_param] = ACTIONS(12281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12281), + [anon_sym_DOLLAR] = ACTIONS(12283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12281), + [anon_sym_BSLASHbegin] = ACTIONS(12283), + [anon_sym_BSLASHcaption] = ACTIONS(12283), + [anon_sym_BSLASHcite] = ACTIONS(12283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCite] = ACTIONS(12283), + [anon_sym_BSLASHnocite] = ACTIONS(12283), + [anon_sym_BSLASHcitet] = ACTIONS(12283), + [anon_sym_BSLASHcitep] = ACTIONS(12283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteauthor] = ACTIONS(12283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitetitle] = ACTIONS(12283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteyear] = ACTIONS(12283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitedate] = ACTIONS(12283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteurl] = ACTIONS(12283), + [anon_sym_BSLASHfullcite] = ACTIONS(12283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12283), + [anon_sym_BSLASHcitealt] = ACTIONS(12283), + [anon_sym_BSLASHcitealp] = ACTIONS(12283), + [anon_sym_BSLASHcitetext] = ACTIONS(12283), + [anon_sym_BSLASHparencite] = ACTIONS(12283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHParencite] = ACTIONS(12283), + [anon_sym_BSLASHfootcite] = ACTIONS(12283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12283), + [anon_sym_BSLASHtextcite] = ACTIONS(12283), + [anon_sym_BSLASHTextcite] = ACTIONS(12283), + [anon_sym_BSLASHsmartcite] = ACTIONS(12283), + [anon_sym_BSLASHSmartcite] = ACTIONS(12283), + [anon_sym_BSLASHsupercite] = ACTIONS(12283), + [anon_sym_BSLASHautocite] = ACTIONS(12283), + [anon_sym_BSLASHAutocite] = ACTIONS(12283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHvolcite] = ACTIONS(12283), + [anon_sym_BSLASHVolcite] = ACTIONS(12283), + [anon_sym_BSLASHpvolcite] = ACTIONS(12283), + [anon_sym_BSLASHPvolcite] = ACTIONS(12283), + [anon_sym_BSLASHfvolcite] = ACTIONS(12283), + [anon_sym_BSLASHftvolcite] = ACTIONS(12283), + [anon_sym_BSLASHsvolcite] = ACTIONS(12283), + [anon_sym_BSLASHSvolcite] = ACTIONS(12283), + [anon_sym_BSLASHtvolcite] = ACTIONS(12283), + [anon_sym_BSLASHTvolcite] = ACTIONS(12283), + [anon_sym_BSLASHavolcite] = ACTIONS(12283), + [anon_sym_BSLASHAvolcite] = ACTIONS(12283), + [anon_sym_BSLASHnotecite] = ACTIONS(12283), + [anon_sym_BSLASHpnotecite] = ACTIONS(12283), + [anon_sym_BSLASHPnotecite] = ACTIONS(12283), + [anon_sym_BSLASHfnotecite] = ACTIONS(12283), + [anon_sym_BSLASHusepackage] = ACTIONS(12283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12283), + [anon_sym_BSLASHinclude] = ACTIONS(12283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12283), + [anon_sym_BSLASHinput] = ACTIONS(12283), + [anon_sym_BSLASHsubfile] = ACTIONS(12283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12283), + [anon_sym_BSLASHbibliography] = ACTIONS(12283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12283), + [anon_sym_BSLASHincludesvg] = ACTIONS(12283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12283), + [anon_sym_BSLASHimport] = ACTIONS(12283), + [anon_sym_BSLASHsubimport] = ACTIONS(12283), + [anon_sym_BSLASHinputfrom] = ACTIONS(12283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12283), + [anon_sym_BSLASHincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHlabel] = ACTIONS(12283), + [anon_sym_BSLASHref] = ACTIONS(12283), + [anon_sym_BSLASHvref] = ACTIONS(12283), + [anon_sym_BSLASHVref] = ACTIONS(12283), + [anon_sym_BSLASHautoref] = ACTIONS(12283), + [anon_sym_BSLASHpageref] = ACTIONS(12283), + [anon_sym_BSLASHcref] = ACTIONS(12283), + [anon_sym_BSLASHCref] = ACTIONS(12283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnameCref] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHlabelcref] = ACTIONS(12283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12283), + [anon_sym_BSLASHeqref] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange] = ACTIONS(12283), + [anon_sym_BSLASHCrefrange] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewlabel] = ACTIONS(12283), + [anon_sym_BSLASHnewcommand] = ACTIONS(12283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12283), + [anon_sym_BSLASHgls] = ACTIONS(12283), + [anon_sym_BSLASHGls] = ACTIONS(12283), + [anon_sym_BSLASHGLS] = ACTIONS(12283), + [anon_sym_BSLASHglspl] = ACTIONS(12283), + [anon_sym_BSLASHGlspl] = ACTIONS(12283), + [anon_sym_BSLASHGLSpl] = ACTIONS(12283), + [anon_sym_BSLASHglsdisp] = ACTIONS(12283), + [anon_sym_BSLASHglslink] = ACTIONS(12283), + [anon_sym_BSLASHglstext] = ACTIONS(12283), + [anon_sym_BSLASHGlstext] = ACTIONS(12283), + [anon_sym_BSLASHGLStext] = ACTIONS(12283), + [anon_sym_BSLASHglsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12283), + [anon_sym_BSLASHglsplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSplural] = ACTIONS(12283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHglsname] = ACTIONS(12283), + [anon_sym_BSLASHGlsname] = ACTIONS(12283), + [anon_sym_BSLASHGLSname] = ACTIONS(12283), + [anon_sym_BSLASHglssymbol] = ACTIONS(12283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12283), + [anon_sym_BSLASHglsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12283), + [anon_sym_BSLASHglsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12283), + [anon_sym_BSLASHglsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12283), + [anon_sym_BSLASHglsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12283), + [anon_sym_BSLASHglsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12283), + [anon_sym_BSLASHnewacronym] = ACTIONS(12283), + [anon_sym_BSLASHacrshort] = ACTIONS(12283), + [anon_sym_BSLASHAcrshort] = ACTIONS(12283), + [anon_sym_BSLASHACRshort] = ACTIONS(12283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12283), + [anon_sym_BSLASHacrlong] = ACTIONS(12283), + [anon_sym_BSLASHAcrlong] = ACTIONS(12283), + [anon_sym_BSLASHACRlong] = ACTIONS(12283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12283), + [anon_sym_BSLASHacrfull] = ACTIONS(12283), + [anon_sym_BSLASHAcrfull] = ACTIONS(12283), + [anon_sym_BSLASHACRfull] = ACTIONS(12283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12283), + [anon_sym_BSLASHacs] = ACTIONS(12283), + [anon_sym_BSLASHAcs] = ACTIONS(12283), + [anon_sym_BSLASHacsp] = ACTIONS(12283), + [anon_sym_BSLASHAcsp] = ACTIONS(12283), + [anon_sym_BSLASHacl] = ACTIONS(12283), + [anon_sym_BSLASHAcl] = ACTIONS(12283), + [anon_sym_BSLASHaclp] = ACTIONS(12283), + [anon_sym_BSLASHAclp] = ACTIONS(12283), + [anon_sym_BSLASHacf] = ACTIONS(12283), + [anon_sym_BSLASHAcf] = ACTIONS(12283), + [anon_sym_BSLASHacfp] = ACTIONS(12283), + [anon_sym_BSLASHAcfp] = ACTIONS(12283), + [anon_sym_BSLASHac] = ACTIONS(12283), + [anon_sym_BSLASHAc] = ACTIONS(12283), + [anon_sym_BSLASHacp] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12283), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12283), + [anon_sym_BSLASHcolor] = ACTIONS(12283), + [anon_sym_BSLASHcolorbox] = ACTIONS(12283), + [anon_sym_BSLASHtextcolor] = ACTIONS(12283), + [anon_sym_BSLASHpagecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12283), + }, + [1733] = { + [sym_generic_command_name] = ACTIONS(12275), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12275), + [anon_sym_BSLASHitem] = ACTIONS(12275), + [anon_sym_LBRACK] = ACTIONS(12273), + [anon_sym_RBRACK] = ACTIONS(12273), + [anon_sym_LBRACE] = ACTIONS(12273), + [anon_sym_RBRACE] = ACTIONS(12273), + [anon_sym_LPAREN] = ACTIONS(12273), + [anon_sym_COMMA] = ACTIONS(12273), + [anon_sym_EQ] = ACTIONS(12273), + [sym_word] = ACTIONS(12273), + [sym_param] = ACTIONS(12273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12273), + [anon_sym_DOLLAR] = ACTIONS(12275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12273), + [anon_sym_BSLASHbegin] = ACTIONS(12275), + [anon_sym_BSLASHcaption] = ACTIONS(12275), + [anon_sym_BSLASHcite] = ACTIONS(12275), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCite] = ACTIONS(12275), + [anon_sym_BSLASHnocite] = ACTIONS(12275), + [anon_sym_BSLASHcitet] = ACTIONS(12275), + [anon_sym_BSLASHcitep] = ACTIONS(12275), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteauthor] = ACTIONS(12275), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12275), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitetitle] = ACTIONS(12275), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteyear] = ACTIONS(12275), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitedate] = ACTIONS(12275), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteurl] = ACTIONS(12275), + [anon_sym_BSLASHfullcite] = ACTIONS(12275), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12275), + [anon_sym_BSLASHcitealt] = ACTIONS(12275), + [anon_sym_BSLASHcitealp] = ACTIONS(12275), + [anon_sym_BSLASHcitetext] = ACTIONS(12275), + [anon_sym_BSLASHparencite] = ACTIONS(12275), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHParencite] = ACTIONS(12275), + [anon_sym_BSLASHfootcite] = ACTIONS(12275), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12275), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12275), + [anon_sym_BSLASHtextcite] = ACTIONS(12275), + [anon_sym_BSLASHTextcite] = ACTIONS(12275), + [anon_sym_BSLASHsmartcite] = ACTIONS(12275), + [anon_sym_BSLASHSmartcite] = ACTIONS(12275), + [anon_sym_BSLASHsupercite] = ACTIONS(12275), + [anon_sym_BSLASHautocite] = ACTIONS(12275), + [anon_sym_BSLASHAutocite] = ACTIONS(12275), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHvolcite] = ACTIONS(12275), + [anon_sym_BSLASHVolcite] = ACTIONS(12275), + [anon_sym_BSLASHpvolcite] = ACTIONS(12275), + [anon_sym_BSLASHPvolcite] = ACTIONS(12275), + [anon_sym_BSLASHfvolcite] = ACTIONS(12275), + [anon_sym_BSLASHftvolcite] = ACTIONS(12275), + [anon_sym_BSLASHsvolcite] = ACTIONS(12275), + [anon_sym_BSLASHSvolcite] = ACTIONS(12275), + [anon_sym_BSLASHtvolcite] = ACTIONS(12275), + [anon_sym_BSLASHTvolcite] = ACTIONS(12275), + [anon_sym_BSLASHavolcite] = ACTIONS(12275), + [anon_sym_BSLASHAvolcite] = ACTIONS(12275), + [anon_sym_BSLASHnotecite] = ACTIONS(12275), + [anon_sym_BSLASHpnotecite] = ACTIONS(12275), + [anon_sym_BSLASHPnotecite] = ACTIONS(12275), + [anon_sym_BSLASHfnotecite] = ACTIONS(12275), + [anon_sym_BSLASHusepackage] = ACTIONS(12275), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12275), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12275), + [anon_sym_BSLASHinclude] = ACTIONS(12275), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12275), + [anon_sym_BSLASHinput] = ACTIONS(12275), + [anon_sym_BSLASHsubfile] = ACTIONS(12275), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12275), + [anon_sym_BSLASHbibliography] = ACTIONS(12275), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12275), + [anon_sym_BSLASHincludesvg] = ACTIONS(12275), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12275), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12275), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12275), + [anon_sym_BSLASHimport] = ACTIONS(12275), + [anon_sym_BSLASHsubimport] = ACTIONS(12275), + [anon_sym_BSLASHinputfrom] = ACTIONS(12275), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12275), + [anon_sym_BSLASHincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHlabel] = ACTIONS(12275), + [anon_sym_BSLASHref] = ACTIONS(12275), + [anon_sym_BSLASHvref] = ACTIONS(12275), + [anon_sym_BSLASHVref] = ACTIONS(12275), + [anon_sym_BSLASHautoref] = ACTIONS(12275), + [anon_sym_BSLASHpageref] = ACTIONS(12275), + [anon_sym_BSLASHcref] = ACTIONS(12275), + [anon_sym_BSLASHCref] = ACTIONS(12275), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnameCref] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHlabelcref] = ACTIONS(12275), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12275), + [anon_sym_BSLASHeqref] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange] = ACTIONS(12275), + [anon_sym_BSLASHCrefrange] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewlabel] = ACTIONS(12275), + [anon_sym_BSLASHnewcommand] = ACTIONS(12275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12275), + [anon_sym_BSLASHgls] = ACTIONS(12275), + [anon_sym_BSLASHGls] = ACTIONS(12275), + [anon_sym_BSLASHGLS] = ACTIONS(12275), + [anon_sym_BSLASHglspl] = ACTIONS(12275), + [anon_sym_BSLASHGlspl] = ACTIONS(12275), + [anon_sym_BSLASHGLSpl] = ACTIONS(12275), + [anon_sym_BSLASHglsdisp] = ACTIONS(12275), + [anon_sym_BSLASHglslink] = ACTIONS(12275), + [anon_sym_BSLASHglstext] = ACTIONS(12275), + [anon_sym_BSLASHGlstext] = ACTIONS(12275), + [anon_sym_BSLASHGLStext] = ACTIONS(12275), + [anon_sym_BSLASHglsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12275), + [anon_sym_BSLASHglsplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSplural] = ACTIONS(12275), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHglsname] = ACTIONS(12275), + [anon_sym_BSLASHGlsname] = ACTIONS(12275), + [anon_sym_BSLASHGLSname] = ACTIONS(12275), + [anon_sym_BSLASHglssymbol] = ACTIONS(12275), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12275), + [anon_sym_BSLASHglsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12275), + [anon_sym_BSLASHglsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12275), + [anon_sym_BSLASHglsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12275), + [anon_sym_BSLASHglsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12275), + [anon_sym_BSLASHglsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12275), + [anon_sym_BSLASHnewacronym] = ACTIONS(12275), + [anon_sym_BSLASHacrshort] = ACTIONS(12275), + [anon_sym_BSLASHAcrshort] = ACTIONS(12275), + [anon_sym_BSLASHACRshort] = ACTIONS(12275), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12275), + [anon_sym_BSLASHacrlong] = ACTIONS(12275), + [anon_sym_BSLASHAcrlong] = ACTIONS(12275), + [anon_sym_BSLASHACRlong] = ACTIONS(12275), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12275), + [anon_sym_BSLASHacrfull] = ACTIONS(12275), + [anon_sym_BSLASHAcrfull] = ACTIONS(12275), + [anon_sym_BSLASHACRfull] = ACTIONS(12275), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12275), + [anon_sym_BSLASHacs] = ACTIONS(12275), + [anon_sym_BSLASHAcs] = ACTIONS(12275), + [anon_sym_BSLASHacsp] = ACTIONS(12275), + [anon_sym_BSLASHAcsp] = ACTIONS(12275), + [anon_sym_BSLASHacl] = ACTIONS(12275), + [anon_sym_BSLASHAcl] = ACTIONS(12275), + [anon_sym_BSLASHaclp] = ACTIONS(12275), + [anon_sym_BSLASHAclp] = ACTIONS(12275), + [anon_sym_BSLASHacf] = ACTIONS(12275), + [anon_sym_BSLASHAcf] = ACTIONS(12275), + [anon_sym_BSLASHacfp] = ACTIONS(12275), + [anon_sym_BSLASHAcfp] = ACTIONS(12275), + [anon_sym_BSLASHac] = ACTIONS(12275), + [anon_sym_BSLASHAc] = ACTIONS(12275), + [anon_sym_BSLASHacp] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12275), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12275), + [anon_sym_BSLASHcolor] = ACTIONS(12275), + [anon_sym_BSLASHcolorbox] = ACTIONS(12275), + [anon_sym_BSLASHtextcolor] = ACTIONS(12275), + [anon_sym_BSLASHpagecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12275), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12275), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12275), + }, + [1734] = { + [sym_generic_command_name] = ACTIONS(12209), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12209), + [anon_sym_BSLASHitem] = ACTIONS(12209), + [anon_sym_LBRACK] = ACTIONS(12207), + [anon_sym_RBRACK] = ACTIONS(12207), + [anon_sym_LBRACE] = ACTIONS(12207), + [anon_sym_RBRACE] = ACTIONS(12207), + [anon_sym_LPAREN] = ACTIONS(12207), + [anon_sym_COMMA] = ACTIONS(12207), + [anon_sym_EQ] = ACTIONS(12207), + [sym_word] = ACTIONS(12207), + [sym_param] = ACTIONS(12207), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12207), + [anon_sym_DOLLAR] = ACTIONS(12209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12207), + [anon_sym_BSLASHbegin] = ACTIONS(12209), + [anon_sym_BSLASHcaption] = ACTIONS(12209), + [anon_sym_BSLASHcite] = ACTIONS(12209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCite] = ACTIONS(12209), + [anon_sym_BSLASHnocite] = ACTIONS(12209), + [anon_sym_BSLASHcitet] = ACTIONS(12209), + [anon_sym_BSLASHcitep] = ACTIONS(12209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteauthor] = ACTIONS(12209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitetitle] = ACTIONS(12209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteyear] = ACTIONS(12209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitedate] = ACTIONS(12209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteurl] = ACTIONS(12209), + [anon_sym_BSLASHfullcite] = ACTIONS(12209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12209), + [anon_sym_BSLASHcitealt] = ACTIONS(12209), + [anon_sym_BSLASHcitealp] = ACTIONS(12209), + [anon_sym_BSLASHcitetext] = ACTIONS(12209), + [anon_sym_BSLASHparencite] = ACTIONS(12209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHParencite] = ACTIONS(12209), + [anon_sym_BSLASHfootcite] = ACTIONS(12209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12209), + [anon_sym_BSLASHtextcite] = ACTIONS(12209), + [anon_sym_BSLASHTextcite] = ACTIONS(12209), + [anon_sym_BSLASHsmartcite] = ACTIONS(12209), + [anon_sym_BSLASHSmartcite] = ACTIONS(12209), + [anon_sym_BSLASHsupercite] = ACTIONS(12209), + [anon_sym_BSLASHautocite] = ACTIONS(12209), + [anon_sym_BSLASHAutocite] = ACTIONS(12209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHvolcite] = ACTIONS(12209), + [anon_sym_BSLASHVolcite] = ACTIONS(12209), + [anon_sym_BSLASHpvolcite] = ACTIONS(12209), + [anon_sym_BSLASHPvolcite] = ACTIONS(12209), + [anon_sym_BSLASHfvolcite] = ACTIONS(12209), + [anon_sym_BSLASHftvolcite] = ACTIONS(12209), + [anon_sym_BSLASHsvolcite] = ACTIONS(12209), + [anon_sym_BSLASHSvolcite] = ACTIONS(12209), + [anon_sym_BSLASHtvolcite] = ACTIONS(12209), + [anon_sym_BSLASHTvolcite] = ACTIONS(12209), + [anon_sym_BSLASHavolcite] = ACTIONS(12209), + [anon_sym_BSLASHAvolcite] = ACTIONS(12209), + [anon_sym_BSLASHnotecite] = ACTIONS(12209), + [anon_sym_BSLASHpnotecite] = ACTIONS(12209), + [anon_sym_BSLASHPnotecite] = ACTIONS(12209), + [anon_sym_BSLASHfnotecite] = ACTIONS(12209), + [anon_sym_BSLASHusepackage] = ACTIONS(12209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12209), + [anon_sym_BSLASHinclude] = ACTIONS(12209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12209), + [anon_sym_BSLASHinput] = ACTIONS(12209), + [anon_sym_BSLASHsubfile] = ACTIONS(12209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12209), + [anon_sym_BSLASHbibliography] = ACTIONS(12209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12209), + [anon_sym_BSLASHincludesvg] = ACTIONS(12209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12209), + [anon_sym_BSLASHimport] = ACTIONS(12209), + [anon_sym_BSLASHsubimport] = ACTIONS(12209), + [anon_sym_BSLASHinputfrom] = ACTIONS(12209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12209), + [anon_sym_BSLASHincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHlabel] = ACTIONS(12209), + [anon_sym_BSLASHref] = ACTIONS(12209), + [anon_sym_BSLASHvref] = ACTIONS(12209), + [anon_sym_BSLASHVref] = ACTIONS(12209), + [anon_sym_BSLASHautoref] = ACTIONS(12209), + [anon_sym_BSLASHpageref] = ACTIONS(12209), + [anon_sym_BSLASHcref] = ACTIONS(12209), + [anon_sym_BSLASHCref] = ACTIONS(12209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnameCref] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHlabelcref] = ACTIONS(12209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12209), + [anon_sym_BSLASHeqref] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange] = ACTIONS(12209), + [anon_sym_BSLASHCrefrange] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewlabel] = ACTIONS(12209), + [anon_sym_BSLASHnewcommand] = ACTIONS(12209), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12209), + [anon_sym_BSLASHgls] = ACTIONS(12209), + [anon_sym_BSLASHGls] = ACTIONS(12209), + [anon_sym_BSLASHGLS] = ACTIONS(12209), + [anon_sym_BSLASHglspl] = ACTIONS(12209), + [anon_sym_BSLASHGlspl] = ACTIONS(12209), + [anon_sym_BSLASHGLSpl] = ACTIONS(12209), + [anon_sym_BSLASHglsdisp] = ACTIONS(12209), + [anon_sym_BSLASHglslink] = ACTIONS(12209), + [anon_sym_BSLASHglstext] = ACTIONS(12209), + [anon_sym_BSLASHGlstext] = ACTIONS(12209), + [anon_sym_BSLASHGLStext] = ACTIONS(12209), + [anon_sym_BSLASHglsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12209), + [anon_sym_BSLASHglsplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSplural] = ACTIONS(12209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHglsname] = ACTIONS(12209), + [anon_sym_BSLASHGlsname] = ACTIONS(12209), + [anon_sym_BSLASHGLSname] = ACTIONS(12209), + [anon_sym_BSLASHglssymbol] = ACTIONS(12209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12209), + [anon_sym_BSLASHglsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12209), + [anon_sym_BSLASHglsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12209), + [anon_sym_BSLASHglsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12209), + [anon_sym_BSLASHglsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12209), + [anon_sym_BSLASHglsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12209), + [anon_sym_BSLASHnewacronym] = ACTIONS(12209), + [anon_sym_BSLASHacrshort] = ACTIONS(12209), + [anon_sym_BSLASHAcrshort] = ACTIONS(12209), + [anon_sym_BSLASHACRshort] = ACTIONS(12209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12209), + [anon_sym_BSLASHacrlong] = ACTIONS(12209), + [anon_sym_BSLASHAcrlong] = ACTIONS(12209), + [anon_sym_BSLASHACRlong] = ACTIONS(12209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12209), + [anon_sym_BSLASHacrfull] = ACTIONS(12209), + [anon_sym_BSLASHAcrfull] = ACTIONS(12209), + [anon_sym_BSLASHACRfull] = ACTIONS(12209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12209), + [anon_sym_BSLASHacs] = ACTIONS(12209), + [anon_sym_BSLASHAcs] = ACTIONS(12209), + [anon_sym_BSLASHacsp] = ACTIONS(12209), + [anon_sym_BSLASHAcsp] = ACTIONS(12209), + [anon_sym_BSLASHacl] = ACTIONS(12209), + [anon_sym_BSLASHAcl] = ACTIONS(12209), + [anon_sym_BSLASHaclp] = ACTIONS(12209), + [anon_sym_BSLASHAclp] = ACTIONS(12209), + [anon_sym_BSLASHacf] = ACTIONS(12209), + [anon_sym_BSLASHAcf] = ACTIONS(12209), + [anon_sym_BSLASHacfp] = ACTIONS(12209), + [anon_sym_BSLASHAcfp] = ACTIONS(12209), + [anon_sym_BSLASHac] = ACTIONS(12209), + [anon_sym_BSLASHAc] = ACTIONS(12209), + [anon_sym_BSLASHacp] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12209), + [anon_sym_BSLASHcolor] = ACTIONS(12209), + [anon_sym_BSLASHcolorbox] = ACTIONS(12209), + [anon_sym_BSLASHtextcolor] = ACTIONS(12209), + [anon_sym_BSLASHpagecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12209), + }, + [1735] = { + [sym_generic_command_name] = ACTIONS(12197), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12197), + [anon_sym_BSLASHitem] = ACTIONS(12197), + [anon_sym_LBRACK] = ACTIONS(12195), + [anon_sym_RBRACK] = ACTIONS(12195), + [anon_sym_LBRACE] = ACTIONS(12195), + [anon_sym_RBRACE] = ACTIONS(12195), + [anon_sym_LPAREN] = ACTIONS(12195), + [anon_sym_COMMA] = ACTIONS(12195), + [anon_sym_EQ] = ACTIONS(12195), + [sym_word] = ACTIONS(12195), + [sym_param] = ACTIONS(12195), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12195), + [anon_sym_DOLLAR] = ACTIONS(12197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12195), + [anon_sym_BSLASHbegin] = ACTIONS(12197), + [anon_sym_BSLASHcaption] = ACTIONS(12197), + [anon_sym_BSLASHcite] = ACTIONS(12197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCite] = ACTIONS(12197), + [anon_sym_BSLASHnocite] = ACTIONS(12197), + [anon_sym_BSLASHcitet] = ACTIONS(12197), + [anon_sym_BSLASHcitep] = ACTIONS(12197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteauthor] = ACTIONS(12197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitetitle] = ACTIONS(12197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteyear] = ACTIONS(12197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitedate] = ACTIONS(12197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteurl] = ACTIONS(12197), + [anon_sym_BSLASHfullcite] = ACTIONS(12197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12197), + [anon_sym_BSLASHcitealt] = ACTIONS(12197), + [anon_sym_BSLASHcitealp] = ACTIONS(12197), + [anon_sym_BSLASHcitetext] = ACTIONS(12197), + [anon_sym_BSLASHparencite] = ACTIONS(12197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHParencite] = ACTIONS(12197), + [anon_sym_BSLASHfootcite] = ACTIONS(12197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12197), + [anon_sym_BSLASHtextcite] = ACTIONS(12197), + [anon_sym_BSLASHTextcite] = ACTIONS(12197), + [anon_sym_BSLASHsmartcite] = ACTIONS(12197), + [anon_sym_BSLASHSmartcite] = ACTIONS(12197), + [anon_sym_BSLASHsupercite] = ACTIONS(12197), + [anon_sym_BSLASHautocite] = ACTIONS(12197), + [anon_sym_BSLASHAutocite] = ACTIONS(12197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHvolcite] = ACTIONS(12197), + [anon_sym_BSLASHVolcite] = ACTIONS(12197), + [anon_sym_BSLASHpvolcite] = ACTIONS(12197), + [anon_sym_BSLASHPvolcite] = ACTIONS(12197), + [anon_sym_BSLASHfvolcite] = ACTIONS(12197), + [anon_sym_BSLASHftvolcite] = ACTIONS(12197), + [anon_sym_BSLASHsvolcite] = ACTIONS(12197), + [anon_sym_BSLASHSvolcite] = ACTIONS(12197), + [anon_sym_BSLASHtvolcite] = ACTIONS(12197), + [anon_sym_BSLASHTvolcite] = ACTIONS(12197), + [anon_sym_BSLASHavolcite] = ACTIONS(12197), + [anon_sym_BSLASHAvolcite] = ACTIONS(12197), + [anon_sym_BSLASHnotecite] = ACTIONS(12197), + [anon_sym_BSLASHpnotecite] = ACTIONS(12197), + [anon_sym_BSLASHPnotecite] = ACTIONS(12197), + [anon_sym_BSLASHfnotecite] = ACTIONS(12197), + [anon_sym_BSLASHusepackage] = ACTIONS(12197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12197), + [anon_sym_BSLASHinclude] = ACTIONS(12197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12197), + [anon_sym_BSLASHinput] = ACTIONS(12197), + [anon_sym_BSLASHsubfile] = ACTIONS(12197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12197), + [anon_sym_BSLASHbibliography] = ACTIONS(12197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12197), + [anon_sym_BSLASHincludesvg] = ACTIONS(12197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12197), + [anon_sym_BSLASHimport] = ACTIONS(12197), + [anon_sym_BSLASHsubimport] = ACTIONS(12197), + [anon_sym_BSLASHinputfrom] = ACTIONS(12197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12197), + [anon_sym_BSLASHincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHlabel] = ACTIONS(12197), + [anon_sym_BSLASHref] = ACTIONS(12197), + [anon_sym_BSLASHvref] = ACTIONS(12197), + [anon_sym_BSLASHVref] = ACTIONS(12197), + [anon_sym_BSLASHautoref] = ACTIONS(12197), + [anon_sym_BSLASHpageref] = ACTIONS(12197), + [anon_sym_BSLASHcref] = ACTIONS(12197), + [anon_sym_BSLASHCref] = ACTIONS(12197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnameCref] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHlabelcref] = ACTIONS(12197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12197), + [anon_sym_BSLASHeqref] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange] = ACTIONS(12197), + [anon_sym_BSLASHCrefrange] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewlabel] = ACTIONS(12197), + [anon_sym_BSLASHnewcommand] = ACTIONS(12197), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12197), + [anon_sym_BSLASHgls] = ACTIONS(12197), + [anon_sym_BSLASHGls] = ACTIONS(12197), + [anon_sym_BSLASHGLS] = ACTIONS(12197), + [anon_sym_BSLASHglspl] = ACTIONS(12197), + [anon_sym_BSLASHGlspl] = ACTIONS(12197), + [anon_sym_BSLASHGLSpl] = ACTIONS(12197), + [anon_sym_BSLASHglsdisp] = ACTIONS(12197), + [anon_sym_BSLASHglslink] = ACTIONS(12197), + [anon_sym_BSLASHglstext] = ACTIONS(12197), + [anon_sym_BSLASHGlstext] = ACTIONS(12197), + [anon_sym_BSLASHGLStext] = ACTIONS(12197), + [anon_sym_BSLASHglsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12197), + [anon_sym_BSLASHglsplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSplural] = ACTIONS(12197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHglsname] = ACTIONS(12197), + [anon_sym_BSLASHGlsname] = ACTIONS(12197), + [anon_sym_BSLASHGLSname] = ACTIONS(12197), + [anon_sym_BSLASHglssymbol] = ACTIONS(12197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12197), + [anon_sym_BSLASHglsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12197), + [anon_sym_BSLASHglsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12197), + [anon_sym_BSLASHglsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12197), + [anon_sym_BSLASHglsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12197), + [anon_sym_BSLASHglsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12197), + [anon_sym_BSLASHnewacronym] = ACTIONS(12197), + [anon_sym_BSLASHacrshort] = ACTIONS(12197), + [anon_sym_BSLASHAcrshort] = ACTIONS(12197), + [anon_sym_BSLASHACRshort] = ACTIONS(12197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12197), + [anon_sym_BSLASHacrlong] = ACTIONS(12197), + [anon_sym_BSLASHAcrlong] = ACTIONS(12197), + [anon_sym_BSLASHACRlong] = ACTIONS(12197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12197), + [anon_sym_BSLASHacrfull] = ACTIONS(12197), + [anon_sym_BSLASHAcrfull] = ACTIONS(12197), + [anon_sym_BSLASHACRfull] = ACTIONS(12197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12197), + [anon_sym_BSLASHacs] = ACTIONS(12197), + [anon_sym_BSLASHAcs] = ACTIONS(12197), + [anon_sym_BSLASHacsp] = ACTIONS(12197), + [anon_sym_BSLASHAcsp] = ACTIONS(12197), + [anon_sym_BSLASHacl] = ACTIONS(12197), + [anon_sym_BSLASHAcl] = ACTIONS(12197), + [anon_sym_BSLASHaclp] = ACTIONS(12197), + [anon_sym_BSLASHAclp] = ACTIONS(12197), + [anon_sym_BSLASHacf] = ACTIONS(12197), + [anon_sym_BSLASHAcf] = ACTIONS(12197), + [anon_sym_BSLASHacfp] = ACTIONS(12197), + [anon_sym_BSLASHAcfp] = ACTIONS(12197), + [anon_sym_BSLASHac] = ACTIONS(12197), + [anon_sym_BSLASHAc] = ACTIONS(12197), + [anon_sym_BSLASHacp] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12197), + [anon_sym_BSLASHcolor] = ACTIONS(12197), + [anon_sym_BSLASHcolorbox] = ACTIONS(12197), + [anon_sym_BSLASHtextcolor] = ACTIONS(12197), + [anon_sym_BSLASHpagecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12197), + }, + [1736] = { + [sym_generic_command_name] = ACTIONS(12177), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12177), + [anon_sym_BSLASHitem] = ACTIONS(12177), + [anon_sym_LBRACK] = ACTIONS(12175), + [anon_sym_RBRACK] = ACTIONS(12175), + [anon_sym_LBRACE] = ACTIONS(12175), + [anon_sym_RBRACE] = ACTIONS(12175), + [anon_sym_LPAREN] = ACTIONS(12175), + [anon_sym_COMMA] = ACTIONS(12175), + [anon_sym_EQ] = ACTIONS(12175), + [sym_word] = ACTIONS(12175), + [sym_param] = ACTIONS(12175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12175), + [anon_sym_DOLLAR] = ACTIONS(12177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12175), + [anon_sym_BSLASHbegin] = ACTIONS(12177), + [anon_sym_BSLASHcaption] = ACTIONS(12177), + [anon_sym_BSLASHcite] = ACTIONS(12177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCite] = ACTIONS(12177), + [anon_sym_BSLASHnocite] = ACTIONS(12177), + [anon_sym_BSLASHcitet] = ACTIONS(12177), + [anon_sym_BSLASHcitep] = ACTIONS(12177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteauthor] = ACTIONS(12177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitetitle] = ACTIONS(12177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteyear] = ACTIONS(12177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitedate] = ACTIONS(12177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteurl] = ACTIONS(12177), + [anon_sym_BSLASHfullcite] = ACTIONS(12177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12177), + [anon_sym_BSLASHcitealt] = ACTIONS(12177), + [anon_sym_BSLASHcitealp] = ACTIONS(12177), + [anon_sym_BSLASHcitetext] = ACTIONS(12177), + [anon_sym_BSLASHparencite] = ACTIONS(12177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHParencite] = ACTIONS(12177), + [anon_sym_BSLASHfootcite] = ACTIONS(12177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12177), + [anon_sym_BSLASHtextcite] = ACTIONS(12177), + [anon_sym_BSLASHTextcite] = ACTIONS(12177), + [anon_sym_BSLASHsmartcite] = ACTIONS(12177), + [anon_sym_BSLASHSmartcite] = ACTIONS(12177), + [anon_sym_BSLASHsupercite] = ACTIONS(12177), + [anon_sym_BSLASHautocite] = ACTIONS(12177), + [anon_sym_BSLASHAutocite] = ACTIONS(12177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHvolcite] = ACTIONS(12177), + [anon_sym_BSLASHVolcite] = ACTIONS(12177), + [anon_sym_BSLASHpvolcite] = ACTIONS(12177), + [anon_sym_BSLASHPvolcite] = ACTIONS(12177), + [anon_sym_BSLASHfvolcite] = ACTIONS(12177), + [anon_sym_BSLASHftvolcite] = ACTIONS(12177), + [anon_sym_BSLASHsvolcite] = ACTIONS(12177), + [anon_sym_BSLASHSvolcite] = ACTIONS(12177), + [anon_sym_BSLASHtvolcite] = ACTIONS(12177), + [anon_sym_BSLASHTvolcite] = ACTIONS(12177), + [anon_sym_BSLASHavolcite] = ACTIONS(12177), + [anon_sym_BSLASHAvolcite] = ACTIONS(12177), + [anon_sym_BSLASHnotecite] = ACTIONS(12177), + [anon_sym_BSLASHpnotecite] = ACTIONS(12177), + [anon_sym_BSLASHPnotecite] = ACTIONS(12177), + [anon_sym_BSLASHfnotecite] = ACTIONS(12177), + [anon_sym_BSLASHusepackage] = ACTIONS(12177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12177), + [anon_sym_BSLASHinclude] = ACTIONS(12177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12177), + [anon_sym_BSLASHinput] = ACTIONS(12177), + [anon_sym_BSLASHsubfile] = ACTIONS(12177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12177), + [anon_sym_BSLASHbibliography] = ACTIONS(12177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12177), + [anon_sym_BSLASHincludesvg] = ACTIONS(12177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12177), + [anon_sym_BSLASHimport] = ACTIONS(12177), + [anon_sym_BSLASHsubimport] = ACTIONS(12177), + [anon_sym_BSLASHinputfrom] = ACTIONS(12177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12177), + [anon_sym_BSLASHincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHlabel] = ACTIONS(12177), + [anon_sym_BSLASHref] = ACTIONS(12177), + [anon_sym_BSLASHvref] = ACTIONS(12177), + [anon_sym_BSLASHVref] = ACTIONS(12177), + [anon_sym_BSLASHautoref] = ACTIONS(12177), + [anon_sym_BSLASHpageref] = ACTIONS(12177), + [anon_sym_BSLASHcref] = ACTIONS(12177), + [anon_sym_BSLASHCref] = ACTIONS(12177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnameCref] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHlabelcref] = ACTIONS(12177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12177), + [anon_sym_BSLASHeqref] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange] = ACTIONS(12177), + [anon_sym_BSLASHCrefrange] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewlabel] = ACTIONS(12177), + [anon_sym_BSLASHnewcommand] = ACTIONS(12177), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12177), + [anon_sym_BSLASHgls] = ACTIONS(12177), + [anon_sym_BSLASHGls] = ACTIONS(12177), + [anon_sym_BSLASHGLS] = ACTIONS(12177), + [anon_sym_BSLASHglspl] = ACTIONS(12177), + [anon_sym_BSLASHGlspl] = ACTIONS(12177), + [anon_sym_BSLASHGLSpl] = ACTIONS(12177), + [anon_sym_BSLASHglsdisp] = ACTIONS(12177), + [anon_sym_BSLASHglslink] = ACTIONS(12177), + [anon_sym_BSLASHglstext] = ACTIONS(12177), + [anon_sym_BSLASHGlstext] = ACTIONS(12177), + [anon_sym_BSLASHGLStext] = ACTIONS(12177), + [anon_sym_BSLASHglsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12177), + [anon_sym_BSLASHglsplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSplural] = ACTIONS(12177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHglsname] = ACTIONS(12177), + [anon_sym_BSLASHGlsname] = ACTIONS(12177), + [anon_sym_BSLASHGLSname] = ACTIONS(12177), + [anon_sym_BSLASHglssymbol] = ACTIONS(12177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12177), + [anon_sym_BSLASHglsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12177), + [anon_sym_BSLASHglsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12177), + [anon_sym_BSLASHglsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12177), + [anon_sym_BSLASHglsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12177), + [anon_sym_BSLASHglsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12177), + [anon_sym_BSLASHnewacronym] = ACTIONS(12177), + [anon_sym_BSLASHacrshort] = ACTIONS(12177), + [anon_sym_BSLASHAcrshort] = ACTIONS(12177), + [anon_sym_BSLASHACRshort] = ACTIONS(12177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12177), + [anon_sym_BSLASHacrlong] = ACTIONS(12177), + [anon_sym_BSLASHAcrlong] = ACTIONS(12177), + [anon_sym_BSLASHACRlong] = ACTIONS(12177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12177), + [anon_sym_BSLASHacrfull] = ACTIONS(12177), + [anon_sym_BSLASHAcrfull] = ACTIONS(12177), + [anon_sym_BSLASHACRfull] = ACTIONS(12177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12177), + [anon_sym_BSLASHacs] = ACTIONS(12177), + [anon_sym_BSLASHAcs] = ACTIONS(12177), + [anon_sym_BSLASHacsp] = ACTIONS(12177), + [anon_sym_BSLASHAcsp] = ACTIONS(12177), + [anon_sym_BSLASHacl] = ACTIONS(12177), + [anon_sym_BSLASHAcl] = ACTIONS(12177), + [anon_sym_BSLASHaclp] = ACTIONS(12177), + [anon_sym_BSLASHAclp] = ACTIONS(12177), + [anon_sym_BSLASHacf] = ACTIONS(12177), + [anon_sym_BSLASHAcf] = ACTIONS(12177), + [anon_sym_BSLASHacfp] = ACTIONS(12177), + [anon_sym_BSLASHAcfp] = ACTIONS(12177), + [anon_sym_BSLASHac] = ACTIONS(12177), + [anon_sym_BSLASHAc] = ACTIONS(12177), + [anon_sym_BSLASHacp] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12177), + [anon_sym_BSLASHcolor] = ACTIONS(12177), + [anon_sym_BSLASHcolorbox] = ACTIONS(12177), + [anon_sym_BSLASHtextcolor] = ACTIONS(12177), + [anon_sym_BSLASHpagecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12177), + }, + [1737] = { + [sym_generic_command_name] = ACTIONS(12173), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12173), + [anon_sym_BSLASHitem] = ACTIONS(12173), + [anon_sym_LBRACK] = ACTIONS(12171), + [anon_sym_RBRACK] = ACTIONS(12171), + [anon_sym_LBRACE] = ACTIONS(12171), + [anon_sym_RBRACE] = ACTIONS(12171), + [anon_sym_LPAREN] = ACTIONS(12171), + [anon_sym_COMMA] = ACTIONS(12171), + [anon_sym_EQ] = ACTIONS(12171), + [sym_word] = ACTIONS(12171), + [sym_param] = ACTIONS(12171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12171), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12171), + [anon_sym_DOLLAR] = ACTIONS(12173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12171), + [anon_sym_BSLASHbegin] = ACTIONS(12173), + [anon_sym_BSLASHcaption] = ACTIONS(12173), + [anon_sym_BSLASHcite] = ACTIONS(12173), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCite] = ACTIONS(12173), + [anon_sym_BSLASHnocite] = ACTIONS(12173), + [anon_sym_BSLASHcitet] = ACTIONS(12173), + [anon_sym_BSLASHcitep] = ACTIONS(12173), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteauthor] = ACTIONS(12173), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12173), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitetitle] = ACTIONS(12173), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteyear] = ACTIONS(12173), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitedate] = ACTIONS(12173), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteurl] = ACTIONS(12173), + [anon_sym_BSLASHfullcite] = ACTIONS(12173), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12173), + [anon_sym_BSLASHcitealt] = ACTIONS(12173), + [anon_sym_BSLASHcitealp] = ACTIONS(12173), + [anon_sym_BSLASHcitetext] = ACTIONS(12173), + [anon_sym_BSLASHparencite] = ACTIONS(12173), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHParencite] = ACTIONS(12173), + [anon_sym_BSLASHfootcite] = ACTIONS(12173), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12173), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12173), + [anon_sym_BSLASHtextcite] = ACTIONS(12173), + [anon_sym_BSLASHTextcite] = ACTIONS(12173), + [anon_sym_BSLASHsmartcite] = ACTIONS(12173), + [anon_sym_BSLASHSmartcite] = ACTIONS(12173), + [anon_sym_BSLASHsupercite] = ACTIONS(12173), + [anon_sym_BSLASHautocite] = ACTIONS(12173), + [anon_sym_BSLASHAutocite] = ACTIONS(12173), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHvolcite] = ACTIONS(12173), + [anon_sym_BSLASHVolcite] = ACTIONS(12173), + [anon_sym_BSLASHpvolcite] = ACTIONS(12173), + [anon_sym_BSLASHPvolcite] = ACTIONS(12173), + [anon_sym_BSLASHfvolcite] = ACTIONS(12173), + [anon_sym_BSLASHftvolcite] = ACTIONS(12173), + [anon_sym_BSLASHsvolcite] = ACTIONS(12173), + [anon_sym_BSLASHSvolcite] = ACTIONS(12173), + [anon_sym_BSLASHtvolcite] = ACTIONS(12173), + [anon_sym_BSLASHTvolcite] = ACTIONS(12173), + [anon_sym_BSLASHavolcite] = ACTIONS(12173), + [anon_sym_BSLASHAvolcite] = ACTIONS(12173), + [anon_sym_BSLASHnotecite] = ACTIONS(12173), + [anon_sym_BSLASHpnotecite] = ACTIONS(12173), + [anon_sym_BSLASHPnotecite] = ACTIONS(12173), + [anon_sym_BSLASHfnotecite] = ACTIONS(12173), + [anon_sym_BSLASHusepackage] = ACTIONS(12173), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12173), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12173), + [anon_sym_BSLASHinclude] = ACTIONS(12173), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12173), + [anon_sym_BSLASHinput] = ACTIONS(12173), + [anon_sym_BSLASHsubfile] = ACTIONS(12173), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12173), + [anon_sym_BSLASHbibliography] = ACTIONS(12173), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12173), + [anon_sym_BSLASHincludesvg] = ACTIONS(12173), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12173), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12173), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12173), + [anon_sym_BSLASHimport] = ACTIONS(12173), + [anon_sym_BSLASHsubimport] = ACTIONS(12173), + [anon_sym_BSLASHinputfrom] = ACTIONS(12173), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12173), + [anon_sym_BSLASHincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHlabel] = ACTIONS(12173), + [anon_sym_BSLASHref] = ACTIONS(12173), + [anon_sym_BSLASHvref] = ACTIONS(12173), + [anon_sym_BSLASHVref] = ACTIONS(12173), + [anon_sym_BSLASHautoref] = ACTIONS(12173), + [anon_sym_BSLASHpageref] = ACTIONS(12173), + [anon_sym_BSLASHcref] = ACTIONS(12173), + [anon_sym_BSLASHCref] = ACTIONS(12173), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnameCref] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHlabelcref] = ACTIONS(12173), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12173), + [anon_sym_BSLASHeqref] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange] = ACTIONS(12173), + [anon_sym_BSLASHCrefrange] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewlabel] = ACTIONS(12173), + [anon_sym_BSLASHnewcommand] = ACTIONS(12173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12173), + [anon_sym_BSLASHgls] = ACTIONS(12173), + [anon_sym_BSLASHGls] = ACTIONS(12173), + [anon_sym_BSLASHGLS] = ACTIONS(12173), + [anon_sym_BSLASHglspl] = ACTIONS(12173), + [anon_sym_BSLASHGlspl] = ACTIONS(12173), + [anon_sym_BSLASHGLSpl] = ACTIONS(12173), + [anon_sym_BSLASHglsdisp] = ACTIONS(12173), + [anon_sym_BSLASHglslink] = ACTIONS(12173), + [anon_sym_BSLASHglstext] = ACTIONS(12173), + [anon_sym_BSLASHGlstext] = ACTIONS(12173), + [anon_sym_BSLASHGLStext] = ACTIONS(12173), + [anon_sym_BSLASHglsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12173), + [anon_sym_BSLASHglsplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSplural] = ACTIONS(12173), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHglsname] = ACTIONS(12173), + [anon_sym_BSLASHGlsname] = ACTIONS(12173), + [anon_sym_BSLASHGLSname] = ACTIONS(12173), + [anon_sym_BSLASHglssymbol] = ACTIONS(12173), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12173), + [anon_sym_BSLASHglsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12173), + [anon_sym_BSLASHglsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12173), + [anon_sym_BSLASHglsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12173), + [anon_sym_BSLASHglsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12173), + [anon_sym_BSLASHglsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12173), + [anon_sym_BSLASHnewacronym] = ACTIONS(12173), + [anon_sym_BSLASHacrshort] = ACTIONS(12173), + [anon_sym_BSLASHAcrshort] = ACTIONS(12173), + [anon_sym_BSLASHACRshort] = ACTIONS(12173), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12173), + [anon_sym_BSLASHacrlong] = ACTIONS(12173), + [anon_sym_BSLASHAcrlong] = ACTIONS(12173), + [anon_sym_BSLASHACRlong] = ACTIONS(12173), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12173), + [anon_sym_BSLASHacrfull] = ACTIONS(12173), + [anon_sym_BSLASHAcrfull] = ACTIONS(12173), + [anon_sym_BSLASHACRfull] = ACTIONS(12173), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12173), + [anon_sym_BSLASHacs] = ACTIONS(12173), + [anon_sym_BSLASHAcs] = ACTIONS(12173), + [anon_sym_BSLASHacsp] = ACTIONS(12173), + [anon_sym_BSLASHAcsp] = ACTIONS(12173), + [anon_sym_BSLASHacl] = ACTIONS(12173), + [anon_sym_BSLASHAcl] = ACTIONS(12173), + [anon_sym_BSLASHaclp] = ACTIONS(12173), + [anon_sym_BSLASHAclp] = ACTIONS(12173), + [anon_sym_BSLASHacf] = ACTIONS(12173), + [anon_sym_BSLASHAcf] = ACTIONS(12173), + [anon_sym_BSLASHacfp] = ACTIONS(12173), + [anon_sym_BSLASHAcfp] = ACTIONS(12173), + [anon_sym_BSLASHac] = ACTIONS(12173), + [anon_sym_BSLASHAc] = ACTIONS(12173), + [anon_sym_BSLASHacp] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12173), + [anon_sym_BSLASHcolor] = ACTIONS(12173), + [anon_sym_BSLASHcolorbox] = ACTIONS(12173), + [anon_sym_BSLASHtextcolor] = ACTIONS(12173), + [anon_sym_BSLASHpagecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12173), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12173), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12173), + }, + [1738] = { + [sym_generic_command_name] = ACTIONS(12160), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12160), + [anon_sym_BSLASHitem] = ACTIONS(12160), + [anon_sym_LBRACK] = ACTIONS(12158), + [anon_sym_RBRACK] = ACTIONS(12158), + [anon_sym_LBRACE] = ACTIONS(12158), + [anon_sym_RBRACE] = ACTIONS(12158), + [anon_sym_LPAREN] = ACTIONS(12158), + [anon_sym_COMMA] = ACTIONS(12158), + [anon_sym_EQ] = ACTIONS(12158), + [sym_word] = ACTIONS(12158), + [sym_param] = ACTIONS(12158), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12158), + [anon_sym_DOLLAR] = ACTIONS(12160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12158), + [anon_sym_BSLASHbegin] = ACTIONS(12160), + [anon_sym_BSLASHcaption] = ACTIONS(12160), + [anon_sym_BSLASHcite] = ACTIONS(12160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCite] = ACTIONS(12160), + [anon_sym_BSLASHnocite] = ACTIONS(12160), + [anon_sym_BSLASHcitet] = ACTIONS(12160), + [anon_sym_BSLASHcitep] = ACTIONS(12160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteauthor] = ACTIONS(12160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitetitle] = ACTIONS(12160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteyear] = ACTIONS(12160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitedate] = ACTIONS(12160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteurl] = ACTIONS(12160), + [anon_sym_BSLASHfullcite] = ACTIONS(12160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12160), + [anon_sym_BSLASHcitealt] = ACTIONS(12160), + [anon_sym_BSLASHcitealp] = ACTIONS(12160), + [anon_sym_BSLASHcitetext] = ACTIONS(12160), + [anon_sym_BSLASHparencite] = ACTIONS(12160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHParencite] = ACTIONS(12160), + [anon_sym_BSLASHfootcite] = ACTIONS(12160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12160), + [anon_sym_BSLASHtextcite] = ACTIONS(12160), + [anon_sym_BSLASHTextcite] = ACTIONS(12160), + [anon_sym_BSLASHsmartcite] = ACTIONS(12160), + [anon_sym_BSLASHSmartcite] = ACTIONS(12160), + [anon_sym_BSLASHsupercite] = ACTIONS(12160), + [anon_sym_BSLASHautocite] = ACTIONS(12160), + [anon_sym_BSLASHAutocite] = ACTIONS(12160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHvolcite] = ACTIONS(12160), + [anon_sym_BSLASHVolcite] = ACTIONS(12160), + [anon_sym_BSLASHpvolcite] = ACTIONS(12160), + [anon_sym_BSLASHPvolcite] = ACTIONS(12160), + [anon_sym_BSLASHfvolcite] = ACTIONS(12160), + [anon_sym_BSLASHftvolcite] = ACTIONS(12160), + [anon_sym_BSLASHsvolcite] = ACTIONS(12160), + [anon_sym_BSLASHSvolcite] = ACTIONS(12160), + [anon_sym_BSLASHtvolcite] = ACTIONS(12160), + [anon_sym_BSLASHTvolcite] = ACTIONS(12160), + [anon_sym_BSLASHavolcite] = ACTIONS(12160), + [anon_sym_BSLASHAvolcite] = ACTIONS(12160), + [anon_sym_BSLASHnotecite] = ACTIONS(12160), + [anon_sym_BSLASHpnotecite] = ACTIONS(12160), + [anon_sym_BSLASHPnotecite] = ACTIONS(12160), + [anon_sym_BSLASHfnotecite] = ACTIONS(12160), + [anon_sym_BSLASHusepackage] = ACTIONS(12160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12160), + [anon_sym_BSLASHinclude] = ACTIONS(12160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12160), + [anon_sym_BSLASHinput] = ACTIONS(12160), + [anon_sym_BSLASHsubfile] = ACTIONS(12160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12160), + [anon_sym_BSLASHbibliography] = ACTIONS(12160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12160), + [anon_sym_BSLASHincludesvg] = ACTIONS(12160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12160), + [anon_sym_BSLASHimport] = ACTIONS(12160), + [anon_sym_BSLASHsubimport] = ACTIONS(12160), + [anon_sym_BSLASHinputfrom] = ACTIONS(12160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12160), + [anon_sym_BSLASHincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHlabel] = ACTIONS(12160), + [anon_sym_BSLASHref] = ACTIONS(12160), + [anon_sym_BSLASHvref] = ACTIONS(12160), + [anon_sym_BSLASHVref] = ACTIONS(12160), + [anon_sym_BSLASHautoref] = ACTIONS(12160), + [anon_sym_BSLASHpageref] = ACTIONS(12160), + [anon_sym_BSLASHcref] = ACTIONS(12160), + [anon_sym_BSLASHCref] = ACTIONS(12160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnameCref] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHlabelcref] = ACTIONS(12160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12160), + [anon_sym_BSLASHeqref] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange] = ACTIONS(12160), + [anon_sym_BSLASHCrefrange] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewlabel] = ACTIONS(12160), + [anon_sym_BSLASHnewcommand] = ACTIONS(12160), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12160), + [anon_sym_BSLASHgls] = ACTIONS(12160), + [anon_sym_BSLASHGls] = ACTIONS(12160), + [anon_sym_BSLASHGLS] = ACTIONS(12160), + [anon_sym_BSLASHglspl] = ACTIONS(12160), + [anon_sym_BSLASHGlspl] = ACTIONS(12160), + [anon_sym_BSLASHGLSpl] = ACTIONS(12160), + [anon_sym_BSLASHglsdisp] = ACTIONS(12160), + [anon_sym_BSLASHglslink] = ACTIONS(12160), + [anon_sym_BSLASHglstext] = ACTIONS(12160), + [anon_sym_BSLASHGlstext] = ACTIONS(12160), + [anon_sym_BSLASHGLStext] = ACTIONS(12160), + [anon_sym_BSLASHglsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12160), + [anon_sym_BSLASHglsplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSplural] = ACTIONS(12160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHglsname] = ACTIONS(12160), + [anon_sym_BSLASHGlsname] = ACTIONS(12160), + [anon_sym_BSLASHGLSname] = ACTIONS(12160), + [anon_sym_BSLASHglssymbol] = ACTIONS(12160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12160), + [anon_sym_BSLASHglsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12160), + [anon_sym_BSLASHglsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12160), + [anon_sym_BSLASHglsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12160), + [anon_sym_BSLASHglsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12160), + [anon_sym_BSLASHglsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12160), + [anon_sym_BSLASHnewacronym] = ACTIONS(12160), + [anon_sym_BSLASHacrshort] = ACTIONS(12160), + [anon_sym_BSLASHAcrshort] = ACTIONS(12160), + [anon_sym_BSLASHACRshort] = ACTIONS(12160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12160), + [anon_sym_BSLASHacrlong] = ACTIONS(12160), + [anon_sym_BSLASHAcrlong] = ACTIONS(12160), + [anon_sym_BSLASHACRlong] = ACTIONS(12160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12160), + [anon_sym_BSLASHacrfull] = ACTIONS(12160), + [anon_sym_BSLASHAcrfull] = ACTIONS(12160), + [anon_sym_BSLASHACRfull] = ACTIONS(12160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12160), + [anon_sym_BSLASHacs] = ACTIONS(12160), + [anon_sym_BSLASHAcs] = ACTIONS(12160), + [anon_sym_BSLASHacsp] = ACTIONS(12160), + [anon_sym_BSLASHAcsp] = ACTIONS(12160), + [anon_sym_BSLASHacl] = ACTIONS(12160), + [anon_sym_BSLASHAcl] = ACTIONS(12160), + [anon_sym_BSLASHaclp] = ACTIONS(12160), + [anon_sym_BSLASHAclp] = ACTIONS(12160), + [anon_sym_BSLASHacf] = ACTIONS(12160), + [anon_sym_BSLASHAcf] = ACTIONS(12160), + [anon_sym_BSLASHacfp] = ACTIONS(12160), + [anon_sym_BSLASHAcfp] = ACTIONS(12160), + [anon_sym_BSLASHac] = ACTIONS(12160), + [anon_sym_BSLASHAc] = ACTIONS(12160), + [anon_sym_BSLASHacp] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12160), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12160), + [anon_sym_BSLASHcolor] = ACTIONS(12160), + [anon_sym_BSLASHcolorbox] = ACTIONS(12160), + [anon_sym_BSLASHtextcolor] = ACTIONS(12160), + [anon_sym_BSLASHpagecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12160), + }, + [1739] = { + [sym_generic_command_name] = ACTIONS(12156), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12156), + [anon_sym_BSLASHitem] = ACTIONS(12156), + [anon_sym_LBRACK] = ACTIONS(12154), + [anon_sym_RBRACK] = ACTIONS(12154), + [anon_sym_LBRACE] = ACTIONS(12154), + [anon_sym_RBRACE] = ACTIONS(12154), + [anon_sym_LPAREN] = ACTIONS(12154), + [anon_sym_COMMA] = ACTIONS(12154), + [anon_sym_EQ] = ACTIONS(12154), + [sym_word] = ACTIONS(12154), + [sym_param] = ACTIONS(12154), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12154), + [anon_sym_DOLLAR] = ACTIONS(12156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12154), + [anon_sym_BSLASHbegin] = ACTIONS(12156), + [anon_sym_BSLASHcaption] = ACTIONS(12156), + [anon_sym_BSLASHcite] = ACTIONS(12156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCite] = ACTIONS(12156), + [anon_sym_BSLASHnocite] = ACTIONS(12156), + [anon_sym_BSLASHcitet] = ACTIONS(12156), + [anon_sym_BSLASHcitep] = ACTIONS(12156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteauthor] = ACTIONS(12156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitetitle] = ACTIONS(12156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteyear] = ACTIONS(12156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitedate] = ACTIONS(12156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteurl] = ACTIONS(12156), + [anon_sym_BSLASHfullcite] = ACTIONS(12156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12156), + [anon_sym_BSLASHcitealt] = ACTIONS(12156), + [anon_sym_BSLASHcitealp] = ACTIONS(12156), + [anon_sym_BSLASHcitetext] = ACTIONS(12156), + [anon_sym_BSLASHparencite] = ACTIONS(12156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHParencite] = ACTIONS(12156), + [anon_sym_BSLASHfootcite] = ACTIONS(12156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12156), + [anon_sym_BSLASHtextcite] = ACTIONS(12156), + [anon_sym_BSLASHTextcite] = ACTIONS(12156), + [anon_sym_BSLASHsmartcite] = ACTIONS(12156), + [anon_sym_BSLASHSmartcite] = ACTIONS(12156), + [anon_sym_BSLASHsupercite] = ACTIONS(12156), + [anon_sym_BSLASHautocite] = ACTIONS(12156), + [anon_sym_BSLASHAutocite] = ACTIONS(12156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHvolcite] = ACTIONS(12156), + [anon_sym_BSLASHVolcite] = ACTIONS(12156), + [anon_sym_BSLASHpvolcite] = ACTIONS(12156), + [anon_sym_BSLASHPvolcite] = ACTIONS(12156), + [anon_sym_BSLASHfvolcite] = ACTIONS(12156), + [anon_sym_BSLASHftvolcite] = ACTIONS(12156), + [anon_sym_BSLASHsvolcite] = ACTIONS(12156), + [anon_sym_BSLASHSvolcite] = ACTIONS(12156), + [anon_sym_BSLASHtvolcite] = ACTIONS(12156), + [anon_sym_BSLASHTvolcite] = ACTIONS(12156), + [anon_sym_BSLASHavolcite] = ACTIONS(12156), + [anon_sym_BSLASHAvolcite] = ACTIONS(12156), + [anon_sym_BSLASHnotecite] = ACTIONS(12156), + [anon_sym_BSLASHpnotecite] = ACTIONS(12156), + [anon_sym_BSLASHPnotecite] = ACTIONS(12156), + [anon_sym_BSLASHfnotecite] = ACTIONS(12156), + [anon_sym_BSLASHusepackage] = ACTIONS(12156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12156), + [anon_sym_BSLASHinclude] = ACTIONS(12156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12156), + [anon_sym_BSLASHinput] = ACTIONS(12156), + [anon_sym_BSLASHsubfile] = ACTIONS(12156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12156), + [anon_sym_BSLASHbibliography] = ACTIONS(12156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12156), + [anon_sym_BSLASHincludesvg] = ACTIONS(12156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12156), + [anon_sym_BSLASHimport] = ACTIONS(12156), + [anon_sym_BSLASHsubimport] = ACTIONS(12156), + [anon_sym_BSLASHinputfrom] = ACTIONS(12156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12156), + [anon_sym_BSLASHincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHlabel] = ACTIONS(12156), + [anon_sym_BSLASHref] = ACTIONS(12156), + [anon_sym_BSLASHvref] = ACTIONS(12156), + [anon_sym_BSLASHVref] = ACTIONS(12156), + [anon_sym_BSLASHautoref] = ACTIONS(12156), + [anon_sym_BSLASHpageref] = ACTIONS(12156), + [anon_sym_BSLASHcref] = ACTIONS(12156), + [anon_sym_BSLASHCref] = ACTIONS(12156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnameCref] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHlabelcref] = ACTIONS(12156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12156), + [anon_sym_BSLASHeqref] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange] = ACTIONS(12156), + [anon_sym_BSLASHCrefrange] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewlabel] = ACTIONS(12156), + [anon_sym_BSLASHnewcommand] = ACTIONS(12156), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12156), + [anon_sym_BSLASHgls] = ACTIONS(12156), + [anon_sym_BSLASHGls] = ACTIONS(12156), + [anon_sym_BSLASHGLS] = ACTIONS(12156), + [anon_sym_BSLASHglspl] = ACTIONS(12156), + [anon_sym_BSLASHGlspl] = ACTIONS(12156), + [anon_sym_BSLASHGLSpl] = ACTIONS(12156), + [anon_sym_BSLASHglsdisp] = ACTIONS(12156), + [anon_sym_BSLASHglslink] = ACTIONS(12156), + [anon_sym_BSLASHglstext] = ACTIONS(12156), + [anon_sym_BSLASHGlstext] = ACTIONS(12156), + [anon_sym_BSLASHGLStext] = ACTIONS(12156), + [anon_sym_BSLASHglsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12156), + [anon_sym_BSLASHglsplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSplural] = ACTIONS(12156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHglsname] = ACTIONS(12156), + [anon_sym_BSLASHGlsname] = ACTIONS(12156), + [anon_sym_BSLASHGLSname] = ACTIONS(12156), + [anon_sym_BSLASHglssymbol] = ACTIONS(12156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12156), + [anon_sym_BSLASHglsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12156), + [anon_sym_BSLASHglsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12156), + [anon_sym_BSLASHglsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12156), + [anon_sym_BSLASHglsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12156), + [anon_sym_BSLASHglsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12156), + [anon_sym_BSLASHnewacronym] = ACTIONS(12156), + [anon_sym_BSLASHacrshort] = ACTIONS(12156), + [anon_sym_BSLASHAcrshort] = ACTIONS(12156), + [anon_sym_BSLASHACRshort] = ACTIONS(12156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12156), + [anon_sym_BSLASHacrlong] = ACTIONS(12156), + [anon_sym_BSLASHAcrlong] = ACTIONS(12156), + [anon_sym_BSLASHACRlong] = ACTIONS(12156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12156), + [anon_sym_BSLASHacrfull] = ACTIONS(12156), + [anon_sym_BSLASHAcrfull] = ACTIONS(12156), + [anon_sym_BSLASHACRfull] = ACTIONS(12156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12156), + [anon_sym_BSLASHacs] = ACTIONS(12156), + [anon_sym_BSLASHAcs] = ACTIONS(12156), + [anon_sym_BSLASHacsp] = ACTIONS(12156), + [anon_sym_BSLASHAcsp] = ACTIONS(12156), + [anon_sym_BSLASHacl] = ACTIONS(12156), + [anon_sym_BSLASHAcl] = ACTIONS(12156), + [anon_sym_BSLASHaclp] = ACTIONS(12156), + [anon_sym_BSLASHAclp] = ACTIONS(12156), + [anon_sym_BSLASHacf] = ACTIONS(12156), + [anon_sym_BSLASHAcf] = ACTIONS(12156), + [anon_sym_BSLASHacfp] = ACTIONS(12156), + [anon_sym_BSLASHAcfp] = ACTIONS(12156), + [anon_sym_BSLASHac] = ACTIONS(12156), + [anon_sym_BSLASHAc] = ACTIONS(12156), + [anon_sym_BSLASHacp] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12156), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12156), + [anon_sym_BSLASHcolor] = ACTIONS(12156), + [anon_sym_BSLASHcolorbox] = ACTIONS(12156), + [anon_sym_BSLASHtextcolor] = ACTIONS(12156), + [anon_sym_BSLASHpagecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12156), + }, + [1740] = { + [sym_generic_command_name] = ACTIONS(12152), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12152), + [anon_sym_BSLASHitem] = ACTIONS(12152), + [anon_sym_LBRACK] = ACTIONS(12150), + [anon_sym_RBRACK] = ACTIONS(12150), + [anon_sym_LBRACE] = ACTIONS(12150), + [anon_sym_RBRACE] = ACTIONS(12150), + [anon_sym_LPAREN] = ACTIONS(12150), + [anon_sym_COMMA] = ACTIONS(12150), + [anon_sym_EQ] = ACTIONS(12150), + [sym_word] = ACTIONS(12150), + [sym_param] = ACTIONS(12150), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12150), + [anon_sym_DOLLAR] = ACTIONS(12152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12150), + [anon_sym_BSLASHbegin] = ACTIONS(12152), + [anon_sym_BSLASHcaption] = ACTIONS(12152), + [anon_sym_BSLASHcite] = ACTIONS(12152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCite] = ACTIONS(12152), + [anon_sym_BSLASHnocite] = ACTIONS(12152), + [anon_sym_BSLASHcitet] = ACTIONS(12152), + [anon_sym_BSLASHcitep] = ACTIONS(12152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteauthor] = ACTIONS(12152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitetitle] = ACTIONS(12152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteyear] = ACTIONS(12152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitedate] = ACTIONS(12152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteurl] = ACTIONS(12152), + [anon_sym_BSLASHfullcite] = ACTIONS(12152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12152), + [anon_sym_BSLASHcitealt] = ACTIONS(12152), + [anon_sym_BSLASHcitealp] = ACTIONS(12152), + [anon_sym_BSLASHcitetext] = ACTIONS(12152), + [anon_sym_BSLASHparencite] = ACTIONS(12152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHParencite] = ACTIONS(12152), + [anon_sym_BSLASHfootcite] = ACTIONS(12152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12152), + [anon_sym_BSLASHtextcite] = ACTIONS(12152), + [anon_sym_BSLASHTextcite] = ACTIONS(12152), + [anon_sym_BSLASHsmartcite] = ACTIONS(12152), + [anon_sym_BSLASHSmartcite] = ACTIONS(12152), + [anon_sym_BSLASHsupercite] = ACTIONS(12152), + [anon_sym_BSLASHautocite] = ACTIONS(12152), + [anon_sym_BSLASHAutocite] = ACTIONS(12152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHvolcite] = ACTIONS(12152), + [anon_sym_BSLASHVolcite] = ACTIONS(12152), + [anon_sym_BSLASHpvolcite] = ACTIONS(12152), + [anon_sym_BSLASHPvolcite] = ACTIONS(12152), + [anon_sym_BSLASHfvolcite] = ACTIONS(12152), + [anon_sym_BSLASHftvolcite] = ACTIONS(12152), + [anon_sym_BSLASHsvolcite] = ACTIONS(12152), + [anon_sym_BSLASHSvolcite] = ACTIONS(12152), + [anon_sym_BSLASHtvolcite] = ACTIONS(12152), + [anon_sym_BSLASHTvolcite] = ACTIONS(12152), + [anon_sym_BSLASHavolcite] = ACTIONS(12152), + [anon_sym_BSLASHAvolcite] = ACTIONS(12152), + [anon_sym_BSLASHnotecite] = ACTIONS(12152), + [anon_sym_BSLASHpnotecite] = ACTIONS(12152), + [anon_sym_BSLASHPnotecite] = ACTIONS(12152), + [anon_sym_BSLASHfnotecite] = ACTIONS(12152), + [anon_sym_BSLASHusepackage] = ACTIONS(12152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12152), + [anon_sym_BSLASHinclude] = ACTIONS(12152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12152), + [anon_sym_BSLASHinput] = ACTIONS(12152), + [anon_sym_BSLASHsubfile] = ACTIONS(12152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12152), + [anon_sym_BSLASHbibliography] = ACTIONS(12152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12152), + [anon_sym_BSLASHincludesvg] = ACTIONS(12152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12152), + [anon_sym_BSLASHimport] = ACTIONS(12152), + [anon_sym_BSLASHsubimport] = ACTIONS(12152), + [anon_sym_BSLASHinputfrom] = ACTIONS(12152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12152), + [anon_sym_BSLASHincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHlabel] = ACTIONS(12152), + [anon_sym_BSLASHref] = ACTIONS(12152), + [anon_sym_BSLASHvref] = ACTIONS(12152), + [anon_sym_BSLASHVref] = ACTIONS(12152), + [anon_sym_BSLASHautoref] = ACTIONS(12152), + [anon_sym_BSLASHpageref] = ACTIONS(12152), + [anon_sym_BSLASHcref] = ACTIONS(12152), + [anon_sym_BSLASHCref] = ACTIONS(12152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnameCref] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHlabelcref] = ACTIONS(12152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12152), + [anon_sym_BSLASHeqref] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange] = ACTIONS(12152), + [anon_sym_BSLASHCrefrange] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewlabel] = ACTIONS(12152), + [anon_sym_BSLASHnewcommand] = ACTIONS(12152), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12152), + [anon_sym_BSLASHgls] = ACTIONS(12152), + [anon_sym_BSLASHGls] = ACTIONS(12152), + [anon_sym_BSLASHGLS] = ACTIONS(12152), + [anon_sym_BSLASHglspl] = ACTIONS(12152), + [anon_sym_BSLASHGlspl] = ACTIONS(12152), + [anon_sym_BSLASHGLSpl] = ACTIONS(12152), + [anon_sym_BSLASHglsdisp] = ACTIONS(12152), + [anon_sym_BSLASHglslink] = ACTIONS(12152), + [anon_sym_BSLASHglstext] = ACTIONS(12152), + [anon_sym_BSLASHGlstext] = ACTIONS(12152), + [anon_sym_BSLASHGLStext] = ACTIONS(12152), + [anon_sym_BSLASHglsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12152), + [anon_sym_BSLASHglsplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSplural] = ACTIONS(12152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHglsname] = ACTIONS(12152), + [anon_sym_BSLASHGlsname] = ACTIONS(12152), + [anon_sym_BSLASHGLSname] = ACTIONS(12152), + [anon_sym_BSLASHglssymbol] = ACTIONS(12152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12152), + [anon_sym_BSLASHglsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12152), + [anon_sym_BSLASHglsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12152), + [anon_sym_BSLASHglsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12152), + [anon_sym_BSLASHglsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12152), + [anon_sym_BSLASHglsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12152), + [anon_sym_BSLASHnewacronym] = ACTIONS(12152), + [anon_sym_BSLASHacrshort] = ACTIONS(12152), + [anon_sym_BSLASHAcrshort] = ACTIONS(12152), + [anon_sym_BSLASHACRshort] = ACTIONS(12152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12152), + [anon_sym_BSLASHacrlong] = ACTIONS(12152), + [anon_sym_BSLASHAcrlong] = ACTIONS(12152), + [anon_sym_BSLASHACRlong] = ACTIONS(12152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12152), + [anon_sym_BSLASHacrfull] = ACTIONS(12152), + [anon_sym_BSLASHAcrfull] = ACTIONS(12152), + [anon_sym_BSLASHACRfull] = ACTIONS(12152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12152), + [anon_sym_BSLASHacs] = ACTIONS(12152), + [anon_sym_BSLASHAcs] = ACTIONS(12152), + [anon_sym_BSLASHacsp] = ACTIONS(12152), + [anon_sym_BSLASHAcsp] = ACTIONS(12152), + [anon_sym_BSLASHacl] = ACTIONS(12152), + [anon_sym_BSLASHAcl] = ACTIONS(12152), + [anon_sym_BSLASHaclp] = ACTIONS(12152), + [anon_sym_BSLASHAclp] = ACTIONS(12152), + [anon_sym_BSLASHacf] = ACTIONS(12152), + [anon_sym_BSLASHAcf] = ACTIONS(12152), + [anon_sym_BSLASHacfp] = ACTIONS(12152), + [anon_sym_BSLASHAcfp] = ACTIONS(12152), + [anon_sym_BSLASHac] = ACTIONS(12152), + [anon_sym_BSLASHAc] = ACTIONS(12152), + [anon_sym_BSLASHacp] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12152), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12152), + [anon_sym_BSLASHcolor] = ACTIONS(12152), + [anon_sym_BSLASHcolorbox] = ACTIONS(12152), + [anon_sym_BSLASHtextcolor] = ACTIONS(12152), + [anon_sym_BSLASHpagecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12152), + }, + [1741] = { + [sym_generic_command_name] = ACTIONS(12148), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12148), + [anon_sym_BSLASHitem] = ACTIONS(12148), + [anon_sym_LBRACK] = ACTIONS(12146), + [anon_sym_RBRACK] = ACTIONS(12146), + [anon_sym_LBRACE] = ACTIONS(12146), + [anon_sym_RBRACE] = ACTIONS(12146), + [anon_sym_LPAREN] = ACTIONS(12146), + [anon_sym_COMMA] = ACTIONS(12146), + [anon_sym_EQ] = ACTIONS(12146), + [sym_word] = ACTIONS(12146), + [sym_param] = ACTIONS(12146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12146), + [anon_sym_DOLLAR] = ACTIONS(12148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12146), + [anon_sym_BSLASHbegin] = ACTIONS(12148), + [anon_sym_BSLASHcaption] = ACTIONS(12148), + [anon_sym_BSLASHcite] = ACTIONS(12148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCite] = ACTIONS(12148), + [anon_sym_BSLASHnocite] = ACTIONS(12148), + [anon_sym_BSLASHcitet] = ACTIONS(12148), + [anon_sym_BSLASHcitep] = ACTIONS(12148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteauthor] = ACTIONS(12148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitetitle] = ACTIONS(12148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteyear] = ACTIONS(12148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitedate] = ACTIONS(12148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteurl] = ACTIONS(12148), + [anon_sym_BSLASHfullcite] = ACTIONS(12148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12148), + [anon_sym_BSLASHcitealt] = ACTIONS(12148), + [anon_sym_BSLASHcitealp] = ACTIONS(12148), + [anon_sym_BSLASHcitetext] = ACTIONS(12148), + [anon_sym_BSLASHparencite] = ACTIONS(12148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHParencite] = ACTIONS(12148), + [anon_sym_BSLASHfootcite] = ACTIONS(12148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12148), + [anon_sym_BSLASHtextcite] = ACTIONS(12148), + [anon_sym_BSLASHTextcite] = ACTIONS(12148), + [anon_sym_BSLASHsmartcite] = ACTIONS(12148), + [anon_sym_BSLASHSmartcite] = ACTIONS(12148), + [anon_sym_BSLASHsupercite] = ACTIONS(12148), + [anon_sym_BSLASHautocite] = ACTIONS(12148), + [anon_sym_BSLASHAutocite] = ACTIONS(12148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHvolcite] = ACTIONS(12148), + [anon_sym_BSLASHVolcite] = ACTIONS(12148), + [anon_sym_BSLASHpvolcite] = ACTIONS(12148), + [anon_sym_BSLASHPvolcite] = ACTIONS(12148), + [anon_sym_BSLASHfvolcite] = ACTIONS(12148), + [anon_sym_BSLASHftvolcite] = ACTIONS(12148), + [anon_sym_BSLASHsvolcite] = ACTIONS(12148), + [anon_sym_BSLASHSvolcite] = ACTIONS(12148), + [anon_sym_BSLASHtvolcite] = ACTIONS(12148), + [anon_sym_BSLASHTvolcite] = ACTIONS(12148), + [anon_sym_BSLASHavolcite] = ACTIONS(12148), + [anon_sym_BSLASHAvolcite] = ACTIONS(12148), + [anon_sym_BSLASHnotecite] = ACTIONS(12148), + [anon_sym_BSLASHpnotecite] = ACTIONS(12148), + [anon_sym_BSLASHPnotecite] = ACTIONS(12148), + [anon_sym_BSLASHfnotecite] = ACTIONS(12148), + [anon_sym_BSLASHusepackage] = ACTIONS(12148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12148), + [anon_sym_BSLASHinclude] = ACTIONS(12148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12148), + [anon_sym_BSLASHinput] = ACTIONS(12148), + [anon_sym_BSLASHsubfile] = ACTIONS(12148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12148), + [anon_sym_BSLASHbibliography] = ACTIONS(12148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12148), + [anon_sym_BSLASHincludesvg] = ACTIONS(12148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12148), + [anon_sym_BSLASHimport] = ACTIONS(12148), + [anon_sym_BSLASHsubimport] = ACTIONS(12148), + [anon_sym_BSLASHinputfrom] = ACTIONS(12148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12148), + [anon_sym_BSLASHincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHlabel] = ACTIONS(12148), + [anon_sym_BSLASHref] = ACTIONS(12148), + [anon_sym_BSLASHvref] = ACTIONS(12148), + [anon_sym_BSLASHVref] = ACTIONS(12148), + [anon_sym_BSLASHautoref] = ACTIONS(12148), + [anon_sym_BSLASHpageref] = ACTIONS(12148), + [anon_sym_BSLASHcref] = ACTIONS(12148), + [anon_sym_BSLASHCref] = ACTIONS(12148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnameCref] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHlabelcref] = ACTIONS(12148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12148), + [anon_sym_BSLASHeqref] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange] = ACTIONS(12148), + [anon_sym_BSLASHCrefrange] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewlabel] = ACTIONS(12148), + [anon_sym_BSLASHnewcommand] = ACTIONS(12148), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12148), + [anon_sym_BSLASHgls] = ACTIONS(12148), + [anon_sym_BSLASHGls] = ACTIONS(12148), + [anon_sym_BSLASHGLS] = ACTIONS(12148), + [anon_sym_BSLASHglspl] = ACTIONS(12148), + [anon_sym_BSLASHGlspl] = ACTIONS(12148), + [anon_sym_BSLASHGLSpl] = ACTIONS(12148), + [anon_sym_BSLASHglsdisp] = ACTIONS(12148), + [anon_sym_BSLASHglslink] = ACTIONS(12148), + [anon_sym_BSLASHglstext] = ACTIONS(12148), + [anon_sym_BSLASHGlstext] = ACTIONS(12148), + [anon_sym_BSLASHGLStext] = ACTIONS(12148), + [anon_sym_BSLASHglsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12148), + [anon_sym_BSLASHglsplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSplural] = ACTIONS(12148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHglsname] = ACTIONS(12148), + [anon_sym_BSLASHGlsname] = ACTIONS(12148), + [anon_sym_BSLASHGLSname] = ACTIONS(12148), + [anon_sym_BSLASHglssymbol] = ACTIONS(12148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12148), + [anon_sym_BSLASHglsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12148), + [anon_sym_BSLASHglsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12148), + [anon_sym_BSLASHglsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12148), + [anon_sym_BSLASHglsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12148), + [anon_sym_BSLASHglsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12148), + [anon_sym_BSLASHnewacronym] = ACTIONS(12148), + [anon_sym_BSLASHacrshort] = ACTIONS(12148), + [anon_sym_BSLASHAcrshort] = ACTIONS(12148), + [anon_sym_BSLASHACRshort] = ACTIONS(12148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12148), + [anon_sym_BSLASHacrlong] = ACTIONS(12148), + [anon_sym_BSLASHAcrlong] = ACTIONS(12148), + [anon_sym_BSLASHACRlong] = ACTIONS(12148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12148), + [anon_sym_BSLASHacrfull] = ACTIONS(12148), + [anon_sym_BSLASHAcrfull] = ACTIONS(12148), + [anon_sym_BSLASHACRfull] = ACTIONS(12148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12148), + [anon_sym_BSLASHacs] = ACTIONS(12148), + [anon_sym_BSLASHAcs] = ACTIONS(12148), + [anon_sym_BSLASHacsp] = ACTIONS(12148), + [anon_sym_BSLASHAcsp] = ACTIONS(12148), + [anon_sym_BSLASHacl] = ACTIONS(12148), + [anon_sym_BSLASHAcl] = ACTIONS(12148), + [anon_sym_BSLASHaclp] = ACTIONS(12148), + [anon_sym_BSLASHAclp] = ACTIONS(12148), + [anon_sym_BSLASHacf] = ACTIONS(12148), + [anon_sym_BSLASHAcf] = ACTIONS(12148), + [anon_sym_BSLASHacfp] = ACTIONS(12148), + [anon_sym_BSLASHAcfp] = ACTIONS(12148), + [anon_sym_BSLASHac] = ACTIONS(12148), + [anon_sym_BSLASHAc] = ACTIONS(12148), + [anon_sym_BSLASHacp] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12148), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12148), + [anon_sym_BSLASHcolor] = ACTIONS(12148), + [anon_sym_BSLASHcolorbox] = ACTIONS(12148), + [anon_sym_BSLASHtextcolor] = ACTIONS(12148), + [anon_sym_BSLASHpagecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12148), + }, + [1742] = { + [sym_generic_command_name] = ACTIONS(12144), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12144), + [anon_sym_BSLASHitem] = ACTIONS(12144), + [anon_sym_LBRACK] = ACTIONS(12142), + [anon_sym_RBRACK] = ACTIONS(12142), + [anon_sym_LBRACE] = ACTIONS(12142), + [anon_sym_RBRACE] = ACTIONS(12142), + [anon_sym_LPAREN] = ACTIONS(12142), + [anon_sym_COMMA] = ACTIONS(12142), + [anon_sym_EQ] = ACTIONS(12142), + [sym_word] = ACTIONS(12142), + [sym_param] = ACTIONS(12142), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12142), + [anon_sym_DOLLAR] = ACTIONS(12144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12142), + [anon_sym_BSLASHbegin] = ACTIONS(12144), + [anon_sym_BSLASHcaption] = ACTIONS(12144), + [anon_sym_BSLASHcite] = ACTIONS(12144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCite] = ACTIONS(12144), + [anon_sym_BSLASHnocite] = ACTIONS(12144), + [anon_sym_BSLASHcitet] = ACTIONS(12144), + [anon_sym_BSLASHcitep] = ACTIONS(12144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteauthor] = ACTIONS(12144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitetitle] = ACTIONS(12144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteyear] = ACTIONS(12144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitedate] = ACTIONS(12144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteurl] = ACTIONS(12144), + [anon_sym_BSLASHfullcite] = ACTIONS(12144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12144), + [anon_sym_BSLASHcitealt] = ACTIONS(12144), + [anon_sym_BSLASHcitealp] = ACTIONS(12144), + [anon_sym_BSLASHcitetext] = ACTIONS(12144), + [anon_sym_BSLASHparencite] = ACTIONS(12144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHParencite] = ACTIONS(12144), + [anon_sym_BSLASHfootcite] = ACTIONS(12144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12144), + [anon_sym_BSLASHtextcite] = ACTIONS(12144), + [anon_sym_BSLASHTextcite] = ACTIONS(12144), + [anon_sym_BSLASHsmartcite] = ACTIONS(12144), + [anon_sym_BSLASHSmartcite] = ACTIONS(12144), + [anon_sym_BSLASHsupercite] = ACTIONS(12144), + [anon_sym_BSLASHautocite] = ACTIONS(12144), + [anon_sym_BSLASHAutocite] = ACTIONS(12144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHvolcite] = ACTIONS(12144), + [anon_sym_BSLASHVolcite] = ACTIONS(12144), + [anon_sym_BSLASHpvolcite] = ACTIONS(12144), + [anon_sym_BSLASHPvolcite] = ACTIONS(12144), + [anon_sym_BSLASHfvolcite] = ACTIONS(12144), + [anon_sym_BSLASHftvolcite] = ACTIONS(12144), + [anon_sym_BSLASHsvolcite] = ACTIONS(12144), + [anon_sym_BSLASHSvolcite] = ACTIONS(12144), + [anon_sym_BSLASHtvolcite] = ACTIONS(12144), + [anon_sym_BSLASHTvolcite] = ACTIONS(12144), + [anon_sym_BSLASHavolcite] = ACTIONS(12144), + [anon_sym_BSLASHAvolcite] = ACTIONS(12144), + [anon_sym_BSLASHnotecite] = ACTIONS(12144), + [anon_sym_BSLASHpnotecite] = ACTIONS(12144), + [anon_sym_BSLASHPnotecite] = ACTIONS(12144), + [anon_sym_BSLASHfnotecite] = ACTIONS(12144), + [anon_sym_BSLASHusepackage] = ACTIONS(12144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12144), + [anon_sym_BSLASHinclude] = ACTIONS(12144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12144), + [anon_sym_BSLASHinput] = ACTIONS(12144), + [anon_sym_BSLASHsubfile] = ACTIONS(12144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12144), + [anon_sym_BSLASHbibliography] = ACTIONS(12144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12144), + [anon_sym_BSLASHincludesvg] = ACTIONS(12144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12144), + [anon_sym_BSLASHimport] = ACTIONS(12144), + [anon_sym_BSLASHsubimport] = ACTIONS(12144), + [anon_sym_BSLASHinputfrom] = ACTIONS(12144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12144), + [anon_sym_BSLASHincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHlabel] = ACTIONS(12144), + [anon_sym_BSLASHref] = ACTIONS(12144), + [anon_sym_BSLASHvref] = ACTIONS(12144), + [anon_sym_BSLASHVref] = ACTIONS(12144), + [anon_sym_BSLASHautoref] = ACTIONS(12144), + [anon_sym_BSLASHpageref] = ACTIONS(12144), + [anon_sym_BSLASHcref] = ACTIONS(12144), + [anon_sym_BSLASHCref] = ACTIONS(12144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnameCref] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHlabelcref] = ACTIONS(12144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12144), + [anon_sym_BSLASHeqref] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange] = ACTIONS(12144), + [anon_sym_BSLASHCrefrange] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewlabel] = ACTIONS(12144), + [anon_sym_BSLASHnewcommand] = ACTIONS(12144), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12144), + [anon_sym_BSLASHgls] = ACTIONS(12144), + [anon_sym_BSLASHGls] = ACTIONS(12144), + [anon_sym_BSLASHGLS] = ACTIONS(12144), + [anon_sym_BSLASHglspl] = ACTIONS(12144), + [anon_sym_BSLASHGlspl] = ACTIONS(12144), + [anon_sym_BSLASHGLSpl] = ACTIONS(12144), + [anon_sym_BSLASHglsdisp] = ACTIONS(12144), + [anon_sym_BSLASHglslink] = ACTIONS(12144), + [anon_sym_BSLASHglstext] = ACTIONS(12144), + [anon_sym_BSLASHGlstext] = ACTIONS(12144), + [anon_sym_BSLASHGLStext] = ACTIONS(12144), + [anon_sym_BSLASHglsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12144), + [anon_sym_BSLASHglsplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSplural] = ACTIONS(12144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHglsname] = ACTIONS(12144), + [anon_sym_BSLASHGlsname] = ACTIONS(12144), + [anon_sym_BSLASHGLSname] = ACTIONS(12144), + [anon_sym_BSLASHglssymbol] = ACTIONS(12144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12144), + [anon_sym_BSLASHglsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12144), + [anon_sym_BSLASHglsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12144), + [anon_sym_BSLASHglsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12144), + [anon_sym_BSLASHglsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12144), + [anon_sym_BSLASHglsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12144), + [anon_sym_BSLASHnewacronym] = ACTIONS(12144), + [anon_sym_BSLASHacrshort] = ACTIONS(12144), + [anon_sym_BSLASHAcrshort] = ACTIONS(12144), + [anon_sym_BSLASHACRshort] = ACTIONS(12144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12144), + [anon_sym_BSLASHacrlong] = ACTIONS(12144), + [anon_sym_BSLASHAcrlong] = ACTIONS(12144), + [anon_sym_BSLASHACRlong] = ACTIONS(12144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12144), + [anon_sym_BSLASHacrfull] = ACTIONS(12144), + [anon_sym_BSLASHAcrfull] = ACTIONS(12144), + [anon_sym_BSLASHACRfull] = ACTIONS(12144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12144), + [anon_sym_BSLASHacs] = ACTIONS(12144), + [anon_sym_BSLASHAcs] = ACTIONS(12144), + [anon_sym_BSLASHacsp] = ACTIONS(12144), + [anon_sym_BSLASHAcsp] = ACTIONS(12144), + [anon_sym_BSLASHacl] = ACTIONS(12144), + [anon_sym_BSLASHAcl] = ACTIONS(12144), + [anon_sym_BSLASHaclp] = ACTIONS(12144), + [anon_sym_BSLASHAclp] = ACTIONS(12144), + [anon_sym_BSLASHacf] = ACTIONS(12144), + [anon_sym_BSLASHAcf] = ACTIONS(12144), + [anon_sym_BSLASHacfp] = ACTIONS(12144), + [anon_sym_BSLASHAcfp] = ACTIONS(12144), + [anon_sym_BSLASHac] = ACTIONS(12144), + [anon_sym_BSLASHAc] = ACTIONS(12144), + [anon_sym_BSLASHacp] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12144), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12144), + [anon_sym_BSLASHcolor] = ACTIONS(12144), + [anon_sym_BSLASHcolorbox] = ACTIONS(12144), + [anon_sym_BSLASHtextcolor] = ACTIONS(12144), + [anon_sym_BSLASHpagecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12144), + }, + [1743] = { + [sym_generic_command_name] = ACTIONS(12140), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12140), + [anon_sym_BSLASHitem] = ACTIONS(12140), + [anon_sym_LBRACK] = ACTIONS(12138), + [anon_sym_RBRACK] = ACTIONS(12138), + [anon_sym_LBRACE] = ACTIONS(12138), + [anon_sym_RBRACE] = ACTIONS(12138), + [anon_sym_LPAREN] = ACTIONS(12138), + [anon_sym_COMMA] = ACTIONS(12138), + [anon_sym_EQ] = ACTIONS(12138), + [sym_word] = ACTIONS(12138), + [sym_param] = ACTIONS(12138), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12138), + [anon_sym_DOLLAR] = ACTIONS(12140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12138), + [anon_sym_BSLASHbegin] = ACTIONS(12140), + [anon_sym_BSLASHcaption] = ACTIONS(12140), + [anon_sym_BSLASHcite] = ACTIONS(12140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCite] = ACTIONS(12140), + [anon_sym_BSLASHnocite] = ACTIONS(12140), + [anon_sym_BSLASHcitet] = ACTIONS(12140), + [anon_sym_BSLASHcitep] = ACTIONS(12140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteauthor] = ACTIONS(12140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitetitle] = ACTIONS(12140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteyear] = ACTIONS(12140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitedate] = ACTIONS(12140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteurl] = ACTIONS(12140), + [anon_sym_BSLASHfullcite] = ACTIONS(12140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12140), + [anon_sym_BSLASHcitealt] = ACTIONS(12140), + [anon_sym_BSLASHcitealp] = ACTIONS(12140), + [anon_sym_BSLASHcitetext] = ACTIONS(12140), + [anon_sym_BSLASHparencite] = ACTIONS(12140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHParencite] = ACTIONS(12140), + [anon_sym_BSLASHfootcite] = ACTIONS(12140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12140), + [anon_sym_BSLASHtextcite] = ACTIONS(12140), + [anon_sym_BSLASHTextcite] = ACTIONS(12140), + [anon_sym_BSLASHsmartcite] = ACTIONS(12140), + [anon_sym_BSLASHSmartcite] = ACTIONS(12140), + [anon_sym_BSLASHsupercite] = ACTIONS(12140), + [anon_sym_BSLASHautocite] = ACTIONS(12140), + [anon_sym_BSLASHAutocite] = ACTIONS(12140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHvolcite] = ACTIONS(12140), + [anon_sym_BSLASHVolcite] = ACTIONS(12140), + [anon_sym_BSLASHpvolcite] = ACTIONS(12140), + [anon_sym_BSLASHPvolcite] = ACTIONS(12140), + [anon_sym_BSLASHfvolcite] = ACTIONS(12140), + [anon_sym_BSLASHftvolcite] = ACTIONS(12140), + [anon_sym_BSLASHsvolcite] = ACTIONS(12140), + [anon_sym_BSLASHSvolcite] = ACTIONS(12140), + [anon_sym_BSLASHtvolcite] = ACTIONS(12140), + [anon_sym_BSLASHTvolcite] = ACTIONS(12140), + [anon_sym_BSLASHavolcite] = ACTIONS(12140), + [anon_sym_BSLASHAvolcite] = ACTIONS(12140), + [anon_sym_BSLASHnotecite] = ACTIONS(12140), + [anon_sym_BSLASHpnotecite] = ACTIONS(12140), + [anon_sym_BSLASHPnotecite] = ACTIONS(12140), + [anon_sym_BSLASHfnotecite] = ACTIONS(12140), + [anon_sym_BSLASHusepackage] = ACTIONS(12140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12140), + [anon_sym_BSLASHinclude] = ACTIONS(12140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12140), + [anon_sym_BSLASHinput] = ACTIONS(12140), + [anon_sym_BSLASHsubfile] = ACTIONS(12140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12140), + [anon_sym_BSLASHbibliography] = ACTIONS(12140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12140), + [anon_sym_BSLASHincludesvg] = ACTIONS(12140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12140), + [anon_sym_BSLASHimport] = ACTIONS(12140), + [anon_sym_BSLASHsubimport] = ACTIONS(12140), + [anon_sym_BSLASHinputfrom] = ACTIONS(12140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12140), + [anon_sym_BSLASHincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHlabel] = ACTIONS(12140), + [anon_sym_BSLASHref] = ACTIONS(12140), + [anon_sym_BSLASHvref] = ACTIONS(12140), + [anon_sym_BSLASHVref] = ACTIONS(12140), + [anon_sym_BSLASHautoref] = ACTIONS(12140), + [anon_sym_BSLASHpageref] = ACTIONS(12140), + [anon_sym_BSLASHcref] = ACTIONS(12140), + [anon_sym_BSLASHCref] = ACTIONS(12140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnameCref] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHlabelcref] = ACTIONS(12140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12140), + [anon_sym_BSLASHeqref] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange] = ACTIONS(12140), + [anon_sym_BSLASHCrefrange] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewlabel] = ACTIONS(12140), + [anon_sym_BSLASHnewcommand] = ACTIONS(12140), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12140), + [anon_sym_BSLASHgls] = ACTIONS(12140), + [anon_sym_BSLASHGls] = ACTIONS(12140), + [anon_sym_BSLASHGLS] = ACTIONS(12140), + [anon_sym_BSLASHglspl] = ACTIONS(12140), + [anon_sym_BSLASHGlspl] = ACTIONS(12140), + [anon_sym_BSLASHGLSpl] = ACTIONS(12140), + [anon_sym_BSLASHglsdisp] = ACTIONS(12140), + [anon_sym_BSLASHglslink] = ACTIONS(12140), + [anon_sym_BSLASHglstext] = ACTIONS(12140), + [anon_sym_BSLASHGlstext] = ACTIONS(12140), + [anon_sym_BSLASHGLStext] = ACTIONS(12140), + [anon_sym_BSLASHglsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12140), + [anon_sym_BSLASHglsplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSplural] = ACTIONS(12140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHglsname] = ACTIONS(12140), + [anon_sym_BSLASHGlsname] = ACTIONS(12140), + [anon_sym_BSLASHGLSname] = ACTIONS(12140), + [anon_sym_BSLASHglssymbol] = ACTIONS(12140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12140), + [anon_sym_BSLASHglsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12140), + [anon_sym_BSLASHglsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12140), + [anon_sym_BSLASHglsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12140), + [anon_sym_BSLASHglsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12140), + [anon_sym_BSLASHglsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12140), + [anon_sym_BSLASHnewacronym] = ACTIONS(12140), + [anon_sym_BSLASHacrshort] = ACTIONS(12140), + [anon_sym_BSLASHAcrshort] = ACTIONS(12140), + [anon_sym_BSLASHACRshort] = ACTIONS(12140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12140), + [anon_sym_BSLASHacrlong] = ACTIONS(12140), + [anon_sym_BSLASHAcrlong] = ACTIONS(12140), + [anon_sym_BSLASHACRlong] = ACTIONS(12140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12140), + [anon_sym_BSLASHacrfull] = ACTIONS(12140), + [anon_sym_BSLASHAcrfull] = ACTIONS(12140), + [anon_sym_BSLASHACRfull] = ACTIONS(12140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12140), + [anon_sym_BSLASHacs] = ACTIONS(12140), + [anon_sym_BSLASHAcs] = ACTIONS(12140), + [anon_sym_BSLASHacsp] = ACTIONS(12140), + [anon_sym_BSLASHAcsp] = ACTIONS(12140), + [anon_sym_BSLASHacl] = ACTIONS(12140), + [anon_sym_BSLASHAcl] = ACTIONS(12140), + [anon_sym_BSLASHaclp] = ACTIONS(12140), + [anon_sym_BSLASHAclp] = ACTIONS(12140), + [anon_sym_BSLASHacf] = ACTIONS(12140), + [anon_sym_BSLASHAcf] = ACTIONS(12140), + [anon_sym_BSLASHacfp] = ACTIONS(12140), + [anon_sym_BSLASHAcfp] = ACTIONS(12140), + [anon_sym_BSLASHac] = ACTIONS(12140), + [anon_sym_BSLASHAc] = ACTIONS(12140), + [anon_sym_BSLASHacp] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12140), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12140), + [anon_sym_BSLASHcolor] = ACTIONS(12140), + [anon_sym_BSLASHcolorbox] = ACTIONS(12140), + [anon_sym_BSLASHtextcolor] = ACTIONS(12140), + [anon_sym_BSLASHpagecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12140), + }, + [1744] = { + [sym_generic_command_name] = ACTIONS(12136), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12136), + [anon_sym_BSLASHitem] = ACTIONS(12136), + [anon_sym_LBRACK] = ACTIONS(12134), + [anon_sym_RBRACK] = ACTIONS(12134), + [anon_sym_LBRACE] = ACTIONS(12134), + [anon_sym_RBRACE] = ACTIONS(12134), + [anon_sym_LPAREN] = ACTIONS(12134), + [anon_sym_COMMA] = ACTIONS(12134), + [anon_sym_EQ] = ACTIONS(12134), + [sym_word] = ACTIONS(12134), + [sym_param] = ACTIONS(12134), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12134), + [anon_sym_DOLLAR] = ACTIONS(12136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12134), + [anon_sym_BSLASHbegin] = ACTIONS(12136), + [anon_sym_BSLASHcaption] = ACTIONS(12136), + [anon_sym_BSLASHcite] = ACTIONS(12136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCite] = ACTIONS(12136), + [anon_sym_BSLASHnocite] = ACTIONS(12136), + [anon_sym_BSLASHcitet] = ACTIONS(12136), + [anon_sym_BSLASHcitep] = ACTIONS(12136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteauthor] = ACTIONS(12136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitetitle] = ACTIONS(12136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteyear] = ACTIONS(12136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitedate] = ACTIONS(12136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteurl] = ACTIONS(12136), + [anon_sym_BSLASHfullcite] = ACTIONS(12136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12136), + [anon_sym_BSLASHcitealt] = ACTIONS(12136), + [anon_sym_BSLASHcitealp] = ACTIONS(12136), + [anon_sym_BSLASHcitetext] = ACTIONS(12136), + [anon_sym_BSLASHparencite] = ACTIONS(12136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHParencite] = ACTIONS(12136), + [anon_sym_BSLASHfootcite] = ACTIONS(12136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12136), + [anon_sym_BSLASHtextcite] = ACTIONS(12136), + [anon_sym_BSLASHTextcite] = ACTIONS(12136), + [anon_sym_BSLASHsmartcite] = ACTIONS(12136), + [anon_sym_BSLASHSmartcite] = ACTIONS(12136), + [anon_sym_BSLASHsupercite] = ACTIONS(12136), + [anon_sym_BSLASHautocite] = ACTIONS(12136), + [anon_sym_BSLASHAutocite] = ACTIONS(12136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHvolcite] = ACTIONS(12136), + [anon_sym_BSLASHVolcite] = ACTIONS(12136), + [anon_sym_BSLASHpvolcite] = ACTIONS(12136), + [anon_sym_BSLASHPvolcite] = ACTIONS(12136), + [anon_sym_BSLASHfvolcite] = ACTIONS(12136), + [anon_sym_BSLASHftvolcite] = ACTIONS(12136), + [anon_sym_BSLASHsvolcite] = ACTIONS(12136), + [anon_sym_BSLASHSvolcite] = ACTIONS(12136), + [anon_sym_BSLASHtvolcite] = ACTIONS(12136), + [anon_sym_BSLASHTvolcite] = ACTIONS(12136), + [anon_sym_BSLASHavolcite] = ACTIONS(12136), + [anon_sym_BSLASHAvolcite] = ACTIONS(12136), + [anon_sym_BSLASHnotecite] = ACTIONS(12136), + [anon_sym_BSLASHpnotecite] = ACTIONS(12136), + [anon_sym_BSLASHPnotecite] = ACTIONS(12136), + [anon_sym_BSLASHfnotecite] = ACTIONS(12136), + [anon_sym_BSLASHusepackage] = ACTIONS(12136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12136), + [anon_sym_BSLASHinclude] = ACTIONS(12136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12136), + [anon_sym_BSLASHinput] = ACTIONS(12136), + [anon_sym_BSLASHsubfile] = ACTIONS(12136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12136), + [anon_sym_BSLASHbibliography] = ACTIONS(12136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12136), + [anon_sym_BSLASHincludesvg] = ACTIONS(12136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12136), + [anon_sym_BSLASHimport] = ACTIONS(12136), + [anon_sym_BSLASHsubimport] = ACTIONS(12136), + [anon_sym_BSLASHinputfrom] = ACTIONS(12136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12136), + [anon_sym_BSLASHincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHlabel] = ACTIONS(12136), + [anon_sym_BSLASHref] = ACTIONS(12136), + [anon_sym_BSLASHvref] = ACTIONS(12136), + [anon_sym_BSLASHVref] = ACTIONS(12136), + [anon_sym_BSLASHautoref] = ACTIONS(12136), + [anon_sym_BSLASHpageref] = ACTIONS(12136), + [anon_sym_BSLASHcref] = ACTIONS(12136), + [anon_sym_BSLASHCref] = ACTIONS(12136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnameCref] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHlabelcref] = ACTIONS(12136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12136), + [anon_sym_BSLASHeqref] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange] = ACTIONS(12136), + [anon_sym_BSLASHCrefrange] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewlabel] = ACTIONS(12136), + [anon_sym_BSLASHnewcommand] = ACTIONS(12136), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12136), + [anon_sym_BSLASHgls] = ACTIONS(12136), + [anon_sym_BSLASHGls] = ACTIONS(12136), + [anon_sym_BSLASHGLS] = ACTIONS(12136), + [anon_sym_BSLASHglspl] = ACTIONS(12136), + [anon_sym_BSLASHGlspl] = ACTIONS(12136), + [anon_sym_BSLASHGLSpl] = ACTIONS(12136), + [anon_sym_BSLASHglsdisp] = ACTIONS(12136), + [anon_sym_BSLASHglslink] = ACTIONS(12136), + [anon_sym_BSLASHglstext] = ACTIONS(12136), + [anon_sym_BSLASHGlstext] = ACTIONS(12136), + [anon_sym_BSLASHGLStext] = ACTIONS(12136), + [anon_sym_BSLASHglsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12136), + [anon_sym_BSLASHglsplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSplural] = ACTIONS(12136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHglsname] = ACTIONS(12136), + [anon_sym_BSLASHGlsname] = ACTIONS(12136), + [anon_sym_BSLASHGLSname] = ACTIONS(12136), + [anon_sym_BSLASHglssymbol] = ACTIONS(12136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12136), + [anon_sym_BSLASHglsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12136), + [anon_sym_BSLASHglsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12136), + [anon_sym_BSLASHglsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12136), + [anon_sym_BSLASHglsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12136), + [anon_sym_BSLASHglsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12136), + [anon_sym_BSLASHnewacronym] = ACTIONS(12136), + [anon_sym_BSLASHacrshort] = ACTIONS(12136), + [anon_sym_BSLASHAcrshort] = ACTIONS(12136), + [anon_sym_BSLASHACRshort] = ACTIONS(12136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12136), + [anon_sym_BSLASHacrlong] = ACTIONS(12136), + [anon_sym_BSLASHAcrlong] = ACTIONS(12136), + [anon_sym_BSLASHACRlong] = ACTIONS(12136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12136), + [anon_sym_BSLASHacrfull] = ACTIONS(12136), + [anon_sym_BSLASHAcrfull] = ACTIONS(12136), + [anon_sym_BSLASHACRfull] = ACTIONS(12136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12136), + [anon_sym_BSLASHacs] = ACTIONS(12136), + [anon_sym_BSLASHAcs] = ACTIONS(12136), + [anon_sym_BSLASHacsp] = ACTIONS(12136), + [anon_sym_BSLASHAcsp] = ACTIONS(12136), + [anon_sym_BSLASHacl] = ACTIONS(12136), + [anon_sym_BSLASHAcl] = ACTIONS(12136), + [anon_sym_BSLASHaclp] = ACTIONS(12136), + [anon_sym_BSLASHAclp] = ACTIONS(12136), + [anon_sym_BSLASHacf] = ACTIONS(12136), + [anon_sym_BSLASHAcf] = ACTIONS(12136), + [anon_sym_BSLASHacfp] = ACTIONS(12136), + [anon_sym_BSLASHAcfp] = ACTIONS(12136), + [anon_sym_BSLASHac] = ACTIONS(12136), + [anon_sym_BSLASHAc] = ACTIONS(12136), + [anon_sym_BSLASHacp] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12136), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12136), + [anon_sym_BSLASHcolor] = ACTIONS(12136), + [anon_sym_BSLASHcolorbox] = ACTIONS(12136), + [anon_sym_BSLASHtextcolor] = ACTIONS(12136), + [anon_sym_BSLASHpagecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12136), + }, + [1745] = { + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(127), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [1746] = { + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(123), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [1747] = { + [sym_generic_command_name] = ACTIONS(12128), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12128), + [anon_sym_BSLASHitem] = ACTIONS(12128), + [anon_sym_LBRACK] = ACTIONS(12126), + [anon_sym_RBRACK] = ACTIONS(12126), + [anon_sym_LBRACE] = ACTIONS(12126), + [anon_sym_RBRACE] = ACTIONS(12126), + [anon_sym_LPAREN] = ACTIONS(12126), + [anon_sym_COMMA] = ACTIONS(12126), + [anon_sym_EQ] = ACTIONS(12126), + [sym_word] = ACTIONS(12126), + [sym_param] = ACTIONS(12126), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12126), + [anon_sym_DOLLAR] = ACTIONS(12128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12126), + [anon_sym_BSLASHbegin] = ACTIONS(12128), + [anon_sym_BSLASHcaption] = ACTIONS(12128), + [anon_sym_BSLASHcite] = ACTIONS(12128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCite] = ACTIONS(12128), + [anon_sym_BSLASHnocite] = ACTIONS(12128), + [anon_sym_BSLASHcitet] = ACTIONS(12128), + [anon_sym_BSLASHcitep] = ACTIONS(12128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteauthor] = ACTIONS(12128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitetitle] = ACTIONS(12128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteyear] = ACTIONS(12128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitedate] = ACTIONS(12128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteurl] = ACTIONS(12128), + [anon_sym_BSLASHfullcite] = ACTIONS(12128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12128), + [anon_sym_BSLASHcitealt] = ACTIONS(12128), + [anon_sym_BSLASHcitealp] = ACTIONS(12128), + [anon_sym_BSLASHcitetext] = ACTIONS(12128), + [anon_sym_BSLASHparencite] = ACTIONS(12128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHParencite] = ACTIONS(12128), + [anon_sym_BSLASHfootcite] = ACTIONS(12128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12128), + [anon_sym_BSLASHtextcite] = ACTIONS(12128), + [anon_sym_BSLASHTextcite] = ACTIONS(12128), + [anon_sym_BSLASHsmartcite] = ACTIONS(12128), + [anon_sym_BSLASHSmartcite] = ACTIONS(12128), + [anon_sym_BSLASHsupercite] = ACTIONS(12128), + [anon_sym_BSLASHautocite] = ACTIONS(12128), + [anon_sym_BSLASHAutocite] = ACTIONS(12128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHvolcite] = ACTIONS(12128), + [anon_sym_BSLASHVolcite] = ACTIONS(12128), + [anon_sym_BSLASHpvolcite] = ACTIONS(12128), + [anon_sym_BSLASHPvolcite] = ACTIONS(12128), + [anon_sym_BSLASHfvolcite] = ACTIONS(12128), + [anon_sym_BSLASHftvolcite] = ACTIONS(12128), + [anon_sym_BSLASHsvolcite] = ACTIONS(12128), + [anon_sym_BSLASHSvolcite] = ACTIONS(12128), + [anon_sym_BSLASHtvolcite] = ACTIONS(12128), + [anon_sym_BSLASHTvolcite] = ACTIONS(12128), + [anon_sym_BSLASHavolcite] = ACTIONS(12128), + [anon_sym_BSLASHAvolcite] = ACTIONS(12128), + [anon_sym_BSLASHnotecite] = ACTIONS(12128), + [anon_sym_BSLASHpnotecite] = ACTIONS(12128), + [anon_sym_BSLASHPnotecite] = ACTIONS(12128), + [anon_sym_BSLASHfnotecite] = ACTIONS(12128), + [anon_sym_BSLASHusepackage] = ACTIONS(12128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12128), + [anon_sym_BSLASHinclude] = ACTIONS(12128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12128), + [anon_sym_BSLASHinput] = ACTIONS(12128), + [anon_sym_BSLASHsubfile] = ACTIONS(12128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12128), + [anon_sym_BSLASHbibliography] = ACTIONS(12128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12128), + [anon_sym_BSLASHincludesvg] = ACTIONS(12128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12128), + [anon_sym_BSLASHimport] = ACTIONS(12128), + [anon_sym_BSLASHsubimport] = ACTIONS(12128), + [anon_sym_BSLASHinputfrom] = ACTIONS(12128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12128), + [anon_sym_BSLASHincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHlabel] = ACTIONS(12128), + [anon_sym_BSLASHref] = ACTIONS(12128), + [anon_sym_BSLASHvref] = ACTIONS(12128), + [anon_sym_BSLASHVref] = ACTIONS(12128), + [anon_sym_BSLASHautoref] = ACTIONS(12128), + [anon_sym_BSLASHpageref] = ACTIONS(12128), + [anon_sym_BSLASHcref] = ACTIONS(12128), + [anon_sym_BSLASHCref] = ACTIONS(12128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnameCref] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHlabelcref] = ACTIONS(12128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12128), + [anon_sym_BSLASHeqref] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange] = ACTIONS(12128), + [anon_sym_BSLASHCrefrange] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewlabel] = ACTIONS(12128), + [anon_sym_BSLASHnewcommand] = ACTIONS(12128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12128), + [anon_sym_BSLASHgls] = ACTIONS(12128), + [anon_sym_BSLASHGls] = ACTIONS(12128), + [anon_sym_BSLASHGLS] = ACTIONS(12128), + [anon_sym_BSLASHglspl] = ACTIONS(12128), + [anon_sym_BSLASHGlspl] = ACTIONS(12128), + [anon_sym_BSLASHGLSpl] = ACTIONS(12128), + [anon_sym_BSLASHglsdisp] = ACTIONS(12128), + [anon_sym_BSLASHglslink] = ACTIONS(12128), + [anon_sym_BSLASHglstext] = ACTIONS(12128), + [anon_sym_BSLASHGlstext] = ACTIONS(12128), + [anon_sym_BSLASHGLStext] = ACTIONS(12128), + [anon_sym_BSLASHglsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12128), + [anon_sym_BSLASHglsplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSplural] = ACTIONS(12128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHglsname] = ACTIONS(12128), + [anon_sym_BSLASHGlsname] = ACTIONS(12128), + [anon_sym_BSLASHGLSname] = ACTIONS(12128), + [anon_sym_BSLASHglssymbol] = ACTIONS(12128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12128), + [anon_sym_BSLASHglsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12128), + [anon_sym_BSLASHglsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12128), + [anon_sym_BSLASHglsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12128), + [anon_sym_BSLASHglsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12128), + [anon_sym_BSLASHglsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12128), + [anon_sym_BSLASHnewacronym] = ACTIONS(12128), + [anon_sym_BSLASHacrshort] = ACTIONS(12128), + [anon_sym_BSLASHAcrshort] = ACTIONS(12128), + [anon_sym_BSLASHACRshort] = ACTIONS(12128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12128), + [anon_sym_BSLASHacrlong] = ACTIONS(12128), + [anon_sym_BSLASHAcrlong] = ACTIONS(12128), + [anon_sym_BSLASHACRlong] = ACTIONS(12128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12128), + [anon_sym_BSLASHacrfull] = ACTIONS(12128), + [anon_sym_BSLASHAcrfull] = ACTIONS(12128), + [anon_sym_BSLASHACRfull] = ACTIONS(12128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12128), + [anon_sym_BSLASHacs] = ACTIONS(12128), + [anon_sym_BSLASHAcs] = ACTIONS(12128), + [anon_sym_BSLASHacsp] = ACTIONS(12128), + [anon_sym_BSLASHAcsp] = ACTIONS(12128), + [anon_sym_BSLASHacl] = ACTIONS(12128), + [anon_sym_BSLASHAcl] = ACTIONS(12128), + [anon_sym_BSLASHaclp] = ACTIONS(12128), + [anon_sym_BSLASHAclp] = ACTIONS(12128), + [anon_sym_BSLASHacf] = ACTIONS(12128), + [anon_sym_BSLASHAcf] = ACTIONS(12128), + [anon_sym_BSLASHacfp] = ACTIONS(12128), + [anon_sym_BSLASHAcfp] = ACTIONS(12128), + [anon_sym_BSLASHac] = ACTIONS(12128), + [anon_sym_BSLASHAc] = ACTIONS(12128), + [anon_sym_BSLASHacp] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12128), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12128), + [anon_sym_BSLASHcolor] = ACTIONS(12128), + [anon_sym_BSLASHcolorbox] = ACTIONS(12128), + [anon_sym_BSLASHtextcolor] = ACTIONS(12128), + [anon_sym_BSLASHpagecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12128), + }, + [1748] = { + [sym_generic_command_name] = ACTIONS(12124), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12124), + [anon_sym_BSLASHitem] = ACTIONS(12124), + [anon_sym_LBRACK] = ACTIONS(12122), + [anon_sym_RBRACK] = ACTIONS(12122), + [anon_sym_LBRACE] = ACTIONS(12122), + [anon_sym_RBRACE] = ACTIONS(12122), + [anon_sym_LPAREN] = ACTIONS(12122), + [anon_sym_COMMA] = ACTIONS(12122), + [anon_sym_EQ] = ACTIONS(12122), + [sym_word] = ACTIONS(12122), + [sym_param] = ACTIONS(12122), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12122), + [anon_sym_DOLLAR] = ACTIONS(12124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12122), + [anon_sym_BSLASHbegin] = ACTIONS(12124), + [anon_sym_BSLASHcaption] = ACTIONS(12124), + [anon_sym_BSLASHcite] = ACTIONS(12124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCite] = ACTIONS(12124), + [anon_sym_BSLASHnocite] = ACTIONS(12124), + [anon_sym_BSLASHcitet] = ACTIONS(12124), + [anon_sym_BSLASHcitep] = ACTIONS(12124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteauthor] = ACTIONS(12124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitetitle] = ACTIONS(12124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteyear] = ACTIONS(12124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitedate] = ACTIONS(12124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteurl] = ACTIONS(12124), + [anon_sym_BSLASHfullcite] = ACTIONS(12124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12124), + [anon_sym_BSLASHcitealt] = ACTIONS(12124), + [anon_sym_BSLASHcitealp] = ACTIONS(12124), + [anon_sym_BSLASHcitetext] = ACTIONS(12124), + [anon_sym_BSLASHparencite] = ACTIONS(12124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHParencite] = ACTIONS(12124), + [anon_sym_BSLASHfootcite] = ACTIONS(12124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12124), + [anon_sym_BSLASHtextcite] = ACTIONS(12124), + [anon_sym_BSLASHTextcite] = ACTIONS(12124), + [anon_sym_BSLASHsmartcite] = ACTIONS(12124), + [anon_sym_BSLASHSmartcite] = ACTIONS(12124), + [anon_sym_BSLASHsupercite] = ACTIONS(12124), + [anon_sym_BSLASHautocite] = ACTIONS(12124), + [anon_sym_BSLASHAutocite] = ACTIONS(12124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHvolcite] = ACTIONS(12124), + [anon_sym_BSLASHVolcite] = ACTIONS(12124), + [anon_sym_BSLASHpvolcite] = ACTIONS(12124), + [anon_sym_BSLASHPvolcite] = ACTIONS(12124), + [anon_sym_BSLASHfvolcite] = ACTIONS(12124), + [anon_sym_BSLASHftvolcite] = ACTIONS(12124), + [anon_sym_BSLASHsvolcite] = ACTIONS(12124), + [anon_sym_BSLASHSvolcite] = ACTIONS(12124), + [anon_sym_BSLASHtvolcite] = ACTIONS(12124), + [anon_sym_BSLASHTvolcite] = ACTIONS(12124), + [anon_sym_BSLASHavolcite] = ACTIONS(12124), + [anon_sym_BSLASHAvolcite] = ACTIONS(12124), + [anon_sym_BSLASHnotecite] = ACTIONS(12124), + [anon_sym_BSLASHpnotecite] = ACTIONS(12124), + [anon_sym_BSLASHPnotecite] = ACTIONS(12124), + [anon_sym_BSLASHfnotecite] = ACTIONS(12124), + [anon_sym_BSLASHusepackage] = ACTIONS(12124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12124), + [anon_sym_BSLASHinclude] = ACTIONS(12124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12124), + [anon_sym_BSLASHinput] = ACTIONS(12124), + [anon_sym_BSLASHsubfile] = ACTIONS(12124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12124), + [anon_sym_BSLASHbibliography] = ACTIONS(12124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12124), + [anon_sym_BSLASHincludesvg] = ACTIONS(12124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12124), + [anon_sym_BSLASHimport] = ACTIONS(12124), + [anon_sym_BSLASHsubimport] = ACTIONS(12124), + [anon_sym_BSLASHinputfrom] = ACTIONS(12124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12124), + [anon_sym_BSLASHincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHlabel] = ACTIONS(12124), + [anon_sym_BSLASHref] = ACTIONS(12124), + [anon_sym_BSLASHvref] = ACTIONS(12124), + [anon_sym_BSLASHVref] = ACTIONS(12124), + [anon_sym_BSLASHautoref] = ACTIONS(12124), + [anon_sym_BSLASHpageref] = ACTIONS(12124), + [anon_sym_BSLASHcref] = ACTIONS(12124), + [anon_sym_BSLASHCref] = ACTIONS(12124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnameCref] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHlabelcref] = ACTIONS(12124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12124), + [anon_sym_BSLASHeqref] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange] = ACTIONS(12124), + [anon_sym_BSLASHCrefrange] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewlabel] = ACTIONS(12124), + [anon_sym_BSLASHnewcommand] = ACTIONS(12124), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12124), + [anon_sym_BSLASHgls] = ACTIONS(12124), + [anon_sym_BSLASHGls] = ACTIONS(12124), + [anon_sym_BSLASHGLS] = ACTIONS(12124), + [anon_sym_BSLASHglspl] = ACTIONS(12124), + [anon_sym_BSLASHGlspl] = ACTIONS(12124), + [anon_sym_BSLASHGLSpl] = ACTIONS(12124), + [anon_sym_BSLASHglsdisp] = ACTIONS(12124), + [anon_sym_BSLASHglslink] = ACTIONS(12124), + [anon_sym_BSLASHglstext] = ACTIONS(12124), + [anon_sym_BSLASHGlstext] = ACTIONS(12124), + [anon_sym_BSLASHGLStext] = ACTIONS(12124), + [anon_sym_BSLASHglsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12124), + [anon_sym_BSLASHglsplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSplural] = ACTIONS(12124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHglsname] = ACTIONS(12124), + [anon_sym_BSLASHGlsname] = ACTIONS(12124), + [anon_sym_BSLASHGLSname] = ACTIONS(12124), + [anon_sym_BSLASHglssymbol] = ACTIONS(12124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12124), + [anon_sym_BSLASHglsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12124), + [anon_sym_BSLASHglsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12124), + [anon_sym_BSLASHglsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12124), + [anon_sym_BSLASHglsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12124), + [anon_sym_BSLASHglsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12124), + [anon_sym_BSLASHnewacronym] = ACTIONS(12124), + [anon_sym_BSLASHacrshort] = ACTIONS(12124), + [anon_sym_BSLASHAcrshort] = ACTIONS(12124), + [anon_sym_BSLASHACRshort] = ACTIONS(12124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12124), + [anon_sym_BSLASHacrlong] = ACTIONS(12124), + [anon_sym_BSLASHAcrlong] = ACTIONS(12124), + [anon_sym_BSLASHACRlong] = ACTIONS(12124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12124), + [anon_sym_BSLASHacrfull] = ACTIONS(12124), + [anon_sym_BSLASHAcrfull] = ACTIONS(12124), + [anon_sym_BSLASHACRfull] = ACTIONS(12124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12124), + [anon_sym_BSLASHacs] = ACTIONS(12124), + [anon_sym_BSLASHAcs] = ACTIONS(12124), + [anon_sym_BSLASHacsp] = ACTIONS(12124), + [anon_sym_BSLASHAcsp] = ACTIONS(12124), + [anon_sym_BSLASHacl] = ACTIONS(12124), + [anon_sym_BSLASHAcl] = ACTIONS(12124), + [anon_sym_BSLASHaclp] = ACTIONS(12124), + [anon_sym_BSLASHAclp] = ACTIONS(12124), + [anon_sym_BSLASHacf] = ACTIONS(12124), + [anon_sym_BSLASHAcf] = ACTIONS(12124), + [anon_sym_BSLASHacfp] = ACTIONS(12124), + [anon_sym_BSLASHAcfp] = ACTIONS(12124), + [anon_sym_BSLASHac] = ACTIONS(12124), + [anon_sym_BSLASHAc] = ACTIONS(12124), + [anon_sym_BSLASHacp] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12124), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12124), + [anon_sym_BSLASHcolor] = ACTIONS(12124), + [anon_sym_BSLASHcolorbox] = ACTIONS(12124), + [anon_sym_BSLASHtextcolor] = ACTIONS(12124), + [anon_sym_BSLASHpagecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12124), + }, + [1749] = { + [sym_generic_command_name] = ACTIONS(12485), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(12485), + [anon_sym_BSLASHitem] = ACTIONS(12485), + [anon_sym_LBRACK] = ACTIONS(12483), + [anon_sym_RBRACK] = ACTIONS(12483), + [anon_sym_LBRACE] = ACTIONS(12483), + [anon_sym_RBRACE] = ACTIONS(12483), + [anon_sym_LPAREN] = ACTIONS(12483), + [anon_sym_COMMA] = ACTIONS(12483), + [anon_sym_EQ] = ACTIONS(12483), + [sym_word] = ACTIONS(12483), + [sym_param] = ACTIONS(12483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12483), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12483), + [anon_sym_DOLLAR] = ACTIONS(12485), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12483), + [anon_sym_BSLASHbegin] = ACTIONS(12485), + [anon_sym_BSLASHcaption] = ACTIONS(12485), + [anon_sym_BSLASHcite] = ACTIONS(12485), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCite] = ACTIONS(12485), + [anon_sym_BSLASHnocite] = ACTIONS(12485), + [anon_sym_BSLASHcitet] = ACTIONS(12485), + [anon_sym_BSLASHcitep] = ACTIONS(12485), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteauthor] = ACTIONS(12485), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12485), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitetitle] = ACTIONS(12485), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteyear] = ACTIONS(12485), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitedate] = ACTIONS(12485), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteurl] = ACTIONS(12485), + [anon_sym_BSLASHfullcite] = ACTIONS(12485), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12485), + [anon_sym_BSLASHcitealt] = ACTIONS(12485), + [anon_sym_BSLASHcitealp] = ACTIONS(12485), + [anon_sym_BSLASHcitetext] = ACTIONS(12485), + [anon_sym_BSLASHparencite] = ACTIONS(12485), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHParencite] = ACTIONS(12485), + [anon_sym_BSLASHfootcite] = ACTIONS(12485), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12485), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12485), + [anon_sym_BSLASHtextcite] = ACTIONS(12485), + [anon_sym_BSLASHTextcite] = ACTIONS(12485), + [anon_sym_BSLASHsmartcite] = ACTIONS(12485), + [anon_sym_BSLASHSmartcite] = ACTIONS(12485), + [anon_sym_BSLASHsupercite] = ACTIONS(12485), + [anon_sym_BSLASHautocite] = ACTIONS(12485), + [anon_sym_BSLASHAutocite] = ACTIONS(12485), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHvolcite] = ACTIONS(12485), + [anon_sym_BSLASHVolcite] = ACTIONS(12485), + [anon_sym_BSLASHpvolcite] = ACTIONS(12485), + [anon_sym_BSLASHPvolcite] = ACTIONS(12485), + [anon_sym_BSLASHfvolcite] = ACTIONS(12485), + [anon_sym_BSLASHftvolcite] = ACTIONS(12485), + [anon_sym_BSLASHsvolcite] = ACTIONS(12485), + [anon_sym_BSLASHSvolcite] = ACTIONS(12485), + [anon_sym_BSLASHtvolcite] = ACTIONS(12485), + [anon_sym_BSLASHTvolcite] = ACTIONS(12485), + [anon_sym_BSLASHavolcite] = ACTIONS(12485), + [anon_sym_BSLASHAvolcite] = ACTIONS(12485), + [anon_sym_BSLASHnotecite] = ACTIONS(12485), + [anon_sym_BSLASHpnotecite] = ACTIONS(12485), + [anon_sym_BSLASHPnotecite] = ACTIONS(12485), + [anon_sym_BSLASHfnotecite] = ACTIONS(12485), + [anon_sym_BSLASHusepackage] = ACTIONS(12485), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12485), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12485), + [anon_sym_BSLASHinclude] = ACTIONS(12485), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12485), + [anon_sym_BSLASHinput] = ACTIONS(12485), + [anon_sym_BSLASHsubfile] = ACTIONS(12485), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12485), + [anon_sym_BSLASHbibliography] = ACTIONS(12485), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12485), + [anon_sym_BSLASHincludesvg] = ACTIONS(12485), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12485), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12485), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12485), + [anon_sym_BSLASHimport] = ACTIONS(12485), + [anon_sym_BSLASHsubimport] = ACTIONS(12485), + [anon_sym_BSLASHinputfrom] = ACTIONS(12485), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12485), + [anon_sym_BSLASHincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHlabel] = ACTIONS(12485), + [anon_sym_BSLASHref] = ACTIONS(12485), + [anon_sym_BSLASHvref] = ACTIONS(12485), + [anon_sym_BSLASHVref] = ACTIONS(12485), + [anon_sym_BSLASHautoref] = ACTIONS(12485), + [anon_sym_BSLASHpageref] = ACTIONS(12485), + [anon_sym_BSLASHcref] = ACTIONS(12485), + [anon_sym_BSLASHCref] = ACTIONS(12485), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnameCref] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHlabelcref] = ACTIONS(12485), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12485), + [anon_sym_BSLASHeqref] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange] = ACTIONS(12485), + [anon_sym_BSLASHCrefrange] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewlabel] = ACTIONS(12485), + [anon_sym_BSLASHnewcommand] = ACTIONS(12485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12485), + [anon_sym_BSLASHgls] = ACTIONS(12485), + [anon_sym_BSLASHGls] = ACTIONS(12485), + [anon_sym_BSLASHGLS] = ACTIONS(12485), + [anon_sym_BSLASHglspl] = ACTIONS(12485), + [anon_sym_BSLASHGlspl] = ACTIONS(12485), + [anon_sym_BSLASHGLSpl] = ACTIONS(12485), + [anon_sym_BSLASHglsdisp] = ACTIONS(12485), + [anon_sym_BSLASHglslink] = ACTIONS(12485), + [anon_sym_BSLASHglstext] = ACTIONS(12485), + [anon_sym_BSLASHGlstext] = ACTIONS(12485), + [anon_sym_BSLASHGLStext] = ACTIONS(12485), + [anon_sym_BSLASHglsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12485), + [anon_sym_BSLASHglsplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSplural] = ACTIONS(12485), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHglsname] = ACTIONS(12485), + [anon_sym_BSLASHGlsname] = ACTIONS(12485), + [anon_sym_BSLASHGLSname] = ACTIONS(12485), + [anon_sym_BSLASHglssymbol] = ACTIONS(12485), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12485), + [anon_sym_BSLASHglsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12485), + [anon_sym_BSLASHglsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12485), + [anon_sym_BSLASHglsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12485), + [anon_sym_BSLASHglsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12485), + [anon_sym_BSLASHglsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12485), + [anon_sym_BSLASHnewacronym] = ACTIONS(12485), + [anon_sym_BSLASHacrshort] = ACTIONS(12485), + [anon_sym_BSLASHAcrshort] = ACTIONS(12485), + [anon_sym_BSLASHACRshort] = ACTIONS(12485), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12485), + [anon_sym_BSLASHacrlong] = ACTIONS(12485), + [anon_sym_BSLASHAcrlong] = ACTIONS(12485), + [anon_sym_BSLASHACRlong] = ACTIONS(12485), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12485), + [anon_sym_BSLASHacrfull] = ACTIONS(12485), + [anon_sym_BSLASHAcrfull] = ACTIONS(12485), + [anon_sym_BSLASHACRfull] = ACTIONS(12485), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12485), + [anon_sym_BSLASHacs] = ACTIONS(12485), + [anon_sym_BSLASHAcs] = ACTIONS(12485), + [anon_sym_BSLASHacsp] = ACTIONS(12485), + [anon_sym_BSLASHAcsp] = ACTIONS(12485), + [anon_sym_BSLASHacl] = ACTIONS(12485), + [anon_sym_BSLASHAcl] = ACTIONS(12485), + [anon_sym_BSLASHaclp] = ACTIONS(12485), + [anon_sym_BSLASHAclp] = ACTIONS(12485), + [anon_sym_BSLASHacf] = ACTIONS(12485), + [anon_sym_BSLASHAcf] = ACTIONS(12485), + [anon_sym_BSLASHacfp] = ACTIONS(12485), + [anon_sym_BSLASHAcfp] = ACTIONS(12485), + [anon_sym_BSLASHac] = ACTIONS(12485), + [anon_sym_BSLASHAc] = ACTIONS(12485), + [anon_sym_BSLASHacp] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12485), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12485), + [anon_sym_BSLASHcolor] = ACTIONS(12485), + [anon_sym_BSLASHcolorbox] = ACTIONS(12485), + [anon_sym_BSLASHtextcolor] = ACTIONS(12485), + [anon_sym_BSLASHpagecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12485), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12485), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12485), + }, + [1750] = { + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(117), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [1751] = { + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [aux_sym_subparagraph_token1] = ACTIONS(111), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [1752] = { + [sym__text_fragment] = STATE(1639), + [aux_sym_text_repeat1] = STATE(1639), + [sym_generic_command_name] = ACTIONS(12015), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12013), + [anon_sym_RBRACK] = ACTIONS(12013), + [anon_sym_LBRACE] = ACTIONS(12013), + [anon_sym_RBRACE] = ACTIONS(12013), + [anon_sym_LPAREN] = ACTIONS(12013), + [anon_sym_COMMA] = ACTIONS(12789), + [anon_sym_EQ] = ACTIONS(12789), + [sym_word] = ACTIONS(12789), + [sym_param] = ACTIONS(12013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12013), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12013), + [anon_sym_DOLLAR] = ACTIONS(12015), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12013), + [anon_sym_BSLASHbegin] = ACTIONS(12015), + [anon_sym_BSLASHcaption] = ACTIONS(12015), + [anon_sym_BSLASHcite] = ACTIONS(12015), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCite] = ACTIONS(12015), + [anon_sym_BSLASHnocite] = ACTIONS(12015), + [anon_sym_BSLASHcitet] = ACTIONS(12015), + [anon_sym_BSLASHcitep] = ACTIONS(12015), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteauthor] = ACTIONS(12015), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12015), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitetitle] = ACTIONS(12015), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteyear] = ACTIONS(12015), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12013), + [anon_sym_BSLASHcitedate] = ACTIONS(12015), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12013), + [anon_sym_BSLASHciteurl] = ACTIONS(12015), + [anon_sym_BSLASHfullcite] = ACTIONS(12015), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12015), + [anon_sym_BSLASHcitealt] = ACTIONS(12015), + [anon_sym_BSLASHcitealp] = ACTIONS(12015), + [anon_sym_BSLASHcitetext] = ACTIONS(12015), + [anon_sym_BSLASHparencite] = ACTIONS(12015), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHParencite] = ACTIONS(12015), + [anon_sym_BSLASHfootcite] = ACTIONS(12015), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12015), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12015), + [anon_sym_BSLASHtextcite] = ACTIONS(12015), + [anon_sym_BSLASHTextcite] = ACTIONS(12015), + [anon_sym_BSLASHsmartcite] = ACTIONS(12015), + [anon_sym_BSLASHSmartcite] = ACTIONS(12015), + [anon_sym_BSLASHsupercite] = ACTIONS(12015), + [anon_sym_BSLASHautocite] = ACTIONS(12015), + [anon_sym_BSLASHAutocite] = ACTIONS(12015), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12013), + [anon_sym_BSLASHvolcite] = ACTIONS(12015), + [anon_sym_BSLASHVolcite] = ACTIONS(12015), + [anon_sym_BSLASHpvolcite] = ACTIONS(12015), + [anon_sym_BSLASHPvolcite] = ACTIONS(12015), + [anon_sym_BSLASHfvolcite] = ACTIONS(12015), + [anon_sym_BSLASHftvolcite] = ACTIONS(12015), + [anon_sym_BSLASHsvolcite] = ACTIONS(12015), + [anon_sym_BSLASHSvolcite] = ACTIONS(12015), + [anon_sym_BSLASHtvolcite] = ACTIONS(12015), + [anon_sym_BSLASHTvolcite] = ACTIONS(12015), + [anon_sym_BSLASHavolcite] = ACTIONS(12015), + [anon_sym_BSLASHAvolcite] = ACTIONS(12015), + [anon_sym_BSLASHnotecite] = ACTIONS(12015), + [anon_sym_BSLASHpnotecite] = ACTIONS(12015), + [anon_sym_BSLASHPnotecite] = ACTIONS(12015), + [anon_sym_BSLASHfnotecite] = ACTIONS(12015), + [anon_sym_BSLASHusepackage] = ACTIONS(12015), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12015), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12015), + [anon_sym_BSLASHinclude] = ACTIONS(12015), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12015), + [anon_sym_BSLASHinput] = ACTIONS(12015), + [anon_sym_BSLASHsubfile] = ACTIONS(12015), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12015), + [anon_sym_BSLASHbibliography] = ACTIONS(12015), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12015), + [anon_sym_BSLASHincludesvg] = ACTIONS(12015), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12015), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12015), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12015), + [anon_sym_BSLASHimport] = ACTIONS(12015), + [anon_sym_BSLASHsubimport] = ACTIONS(12015), + [anon_sym_BSLASHinputfrom] = ACTIONS(12015), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12015), + [anon_sym_BSLASHincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12015), + [anon_sym_BSLASHlabel] = ACTIONS(12015), + [anon_sym_BSLASHref] = ACTIONS(12015), + [anon_sym_BSLASHvref] = ACTIONS(12015), + [anon_sym_BSLASHVref] = ACTIONS(12015), + [anon_sym_BSLASHautoref] = ACTIONS(12015), + [anon_sym_BSLASHpageref] = ACTIONS(12015), + [anon_sym_BSLASHcref] = ACTIONS(12015), + [anon_sym_BSLASHCref] = ACTIONS(12015), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnameCref] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12015), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12015), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12015), + [anon_sym_BSLASHlabelcref] = ACTIONS(12015), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12015), + [anon_sym_BSLASHeqref] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange] = ACTIONS(12015), + [anon_sym_BSLASHCrefrange] = ACTIONS(12015), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewlabel] = ACTIONS(12015), + [anon_sym_BSLASHnewcommand] = ACTIONS(12015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12015), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12015), + [anon_sym_BSLASHgls] = ACTIONS(12015), + [anon_sym_BSLASHGls] = ACTIONS(12015), + [anon_sym_BSLASHGLS] = ACTIONS(12015), + [anon_sym_BSLASHglspl] = ACTIONS(12015), + [anon_sym_BSLASHGlspl] = ACTIONS(12015), + [anon_sym_BSLASHGLSpl] = ACTIONS(12015), + [anon_sym_BSLASHglsdisp] = ACTIONS(12015), + [anon_sym_BSLASHglslink] = ACTIONS(12015), + [anon_sym_BSLASHglstext] = ACTIONS(12015), + [anon_sym_BSLASHGlstext] = ACTIONS(12015), + [anon_sym_BSLASHGLStext] = ACTIONS(12015), + [anon_sym_BSLASHglsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12015), + [anon_sym_BSLASHglsplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSplural] = ACTIONS(12015), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12015), + [anon_sym_BSLASHglsname] = ACTIONS(12015), + [anon_sym_BSLASHGlsname] = ACTIONS(12015), + [anon_sym_BSLASHGLSname] = ACTIONS(12015), + [anon_sym_BSLASHglssymbol] = ACTIONS(12015), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12015), + [anon_sym_BSLASHglsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12015), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12015), + [anon_sym_BSLASHglsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12015), + [anon_sym_BSLASHglsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12015), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12015), + [anon_sym_BSLASHglsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12015), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12015), + [anon_sym_BSLASHglsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12015), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12015), + [anon_sym_BSLASHnewacronym] = ACTIONS(12015), + [anon_sym_BSLASHacrshort] = ACTIONS(12015), + [anon_sym_BSLASHAcrshort] = ACTIONS(12015), + [anon_sym_BSLASHACRshort] = ACTIONS(12015), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12015), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12015), + [anon_sym_BSLASHacrlong] = ACTIONS(12015), + [anon_sym_BSLASHAcrlong] = ACTIONS(12015), + [anon_sym_BSLASHACRlong] = ACTIONS(12015), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12015), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12015), + [anon_sym_BSLASHacrfull] = ACTIONS(12015), + [anon_sym_BSLASHAcrfull] = ACTIONS(12015), + [anon_sym_BSLASHACRfull] = ACTIONS(12015), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12015), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12015), + [anon_sym_BSLASHacs] = ACTIONS(12015), + [anon_sym_BSLASHAcs] = ACTIONS(12015), + [anon_sym_BSLASHacsp] = ACTIONS(12015), + [anon_sym_BSLASHAcsp] = ACTIONS(12015), + [anon_sym_BSLASHacl] = ACTIONS(12015), + [anon_sym_BSLASHAcl] = ACTIONS(12015), + [anon_sym_BSLASHaclp] = ACTIONS(12015), + [anon_sym_BSLASHAclp] = ACTIONS(12015), + [anon_sym_BSLASHacf] = ACTIONS(12015), + [anon_sym_BSLASHAcf] = ACTIONS(12015), + [anon_sym_BSLASHacfp] = ACTIONS(12015), + [anon_sym_BSLASHAcfp] = ACTIONS(12015), + [anon_sym_BSLASHac] = ACTIONS(12015), + [anon_sym_BSLASHAc] = ACTIONS(12015), + [anon_sym_BSLASHacp] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12015), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12015), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12015), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12015), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12015), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12015), + [anon_sym_BSLASHcolor] = ACTIONS(12015), + [anon_sym_BSLASHcolorbox] = ACTIONS(12015), + [anon_sym_BSLASHtextcolor] = ACTIONS(12015), + [anon_sym_BSLASHpagecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12015), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12015), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12015), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12015), + }, + [1753] = { + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(127), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [1754] = { + [sym_generic_command_name] = ACTIONS(12108), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12108), + [anon_sym_LBRACK] = ACTIONS(12106), + [anon_sym_RBRACK] = ACTIONS(12106), + [anon_sym_LBRACE] = ACTIONS(12106), + [anon_sym_RBRACE] = ACTIONS(12106), + [anon_sym_LPAREN] = ACTIONS(12106), + [anon_sym_COMMA] = ACTIONS(12106), + [anon_sym_EQ] = ACTIONS(12106), + [sym_word] = ACTIONS(12106), + [sym_param] = ACTIONS(12106), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12106), + [anon_sym_DOLLAR] = ACTIONS(12108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12106), + [anon_sym_BSLASHbegin] = ACTIONS(12108), + [anon_sym_BSLASHcaption] = ACTIONS(12108), + [anon_sym_BSLASHcite] = ACTIONS(12108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCite] = ACTIONS(12108), + [anon_sym_BSLASHnocite] = ACTIONS(12108), + [anon_sym_BSLASHcitet] = ACTIONS(12108), + [anon_sym_BSLASHcitep] = ACTIONS(12108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteauthor] = ACTIONS(12108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitetitle] = ACTIONS(12108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteyear] = ACTIONS(12108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitedate] = ACTIONS(12108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteurl] = ACTIONS(12108), + [anon_sym_BSLASHfullcite] = ACTIONS(12108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12108), + [anon_sym_BSLASHcitealt] = ACTIONS(12108), + [anon_sym_BSLASHcitealp] = ACTIONS(12108), + [anon_sym_BSLASHcitetext] = ACTIONS(12108), + [anon_sym_BSLASHparencite] = ACTIONS(12108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHParencite] = ACTIONS(12108), + [anon_sym_BSLASHfootcite] = ACTIONS(12108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12108), + [anon_sym_BSLASHtextcite] = ACTIONS(12108), + [anon_sym_BSLASHTextcite] = ACTIONS(12108), + [anon_sym_BSLASHsmartcite] = ACTIONS(12108), + [anon_sym_BSLASHSmartcite] = ACTIONS(12108), + [anon_sym_BSLASHsupercite] = ACTIONS(12108), + [anon_sym_BSLASHautocite] = ACTIONS(12108), + [anon_sym_BSLASHAutocite] = ACTIONS(12108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHvolcite] = ACTIONS(12108), + [anon_sym_BSLASHVolcite] = ACTIONS(12108), + [anon_sym_BSLASHpvolcite] = ACTIONS(12108), + [anon_sym_BSLASHPvolcite] = ACTIONS(12108), + [anon_sym_BSLASHfvolcite] = ACTIONS(12108), + [anon_sym_BSLASHftvolcite] = ACTIONS(12108), + [anon_sym_BSLASHsvolcite] = ACTIONS(12108), + [anon_sym_BSLASHSvolcite] = ACTIONS(12108), + [anon_sym_BSLASHtvolcite] = ACTIONS(12108), + [anon_sym_BSLASHTvolcite] = ACTIONS(12108), + [anon_sym_BSLASHavolcite] = ACTIONS(12108), + [anon_sym_BSLASHAvolcite] = ACTIONS(12108), + [anon_sym_BSLASHnotecite] = ACTIONS(12108), + [anon_sym_BSLASHpnotecite] = ACTIONS(12108), + [anon_sym_BSLASHPnotecite] = ACTIONS(12108), + [anon_sym_BSLASHfnotecite] = ACTIONS(12108), + [anon_sym_BSLASHusepackage] = ACTIONS(12108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12108), + [anon_sym_BSLASHinclude] = ACTIONS(12108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12108), + [anon_sym_BSLASHinput] = ACTIONS(12108), + [anon_sym_BSLASHsubfile] = ACTIONS(12108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12108), + [anon_sym_BSLASHbibliography] = ACTIONS(12108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12108), + [anon_sym_BSLASHincludesvg] = ACTIONS(12108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12108), + [anon_sym_BSLASHimport] = ACTIONS(12108), + [anon_sym_BSLASHsubimport] = ACTIONS(12108), + [anon_sym_BSLASHinputfrom] = ACTIONS(12108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12108), + [anon_sym_BSLASHincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHlabel] = ACTIONS(12108), + [anon_sym_BSLASHref] = ACTIONS(12108), + [anon_sym_BSLASHvref] = ACTIONS(12108), + [anon_sym_BSLASHVref] = ACTIONS(12108), + [anon_sym_BSLASHautoref] = ACTIONS(12108), + [anon_sym_BSLASHpageref] = ACTIONS(12108), + [anon_sym_BSLASHcref] = ACTIONS(12108), + [anon_sym_BSLASHCref] = ACTIONS(12108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnameCref] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHlabelcref] = ACTIONS(12108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12108), + [anon_sym_BSLASHeqref] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange] = ACTIONS(12108), + [anon_sym_BSLASHCrefrange] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewlabel] = ACTIONS(12108), + [anon_sym_BSLASHnewcommand] = ACTIONS(12108), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12108), + [anon_sym_BSLASHgls] = ACTIONS(12108), + [anon_sym_BSLASHGls] = ACTIONS(12108), + [anon_sym_BSLASHGLS] = ACTIONS(12108), + [anon_sym_BSLASHglspl] = ACTIONS(12108), + [anon_sym_BSLASHGlspl] = ACTIONS(12108), + [anon_sym_BSLASHGLSpl] = ACTIONS(12108), + [anon_sym_BSLASHglsdisp] = ACTIONS(12108), + [anon_sym_BSLASHglslink] = ACTIONS(12108), + [anon_sym_BSLASHglstext] = ACTIONS(12108), + [anon_sym_BSLASHGlstext] = ACTIONS(12108), + [anon_sym_BSLASHGLStext] = ACTIONS(12108), + [anon_sym_BSLASHglsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12108), + [anon_sym_BSLASHglsplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSplural] = ACTIONS(12108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHglsname] = ACTIONS(12108), + [anon_sym_BSLASHGlsname] = ACTIONS(12108), + [anon_sym_BSLASHGLSname] = ACTIONS(12108), + [anon_sym_BSLASHglssymbol] = ACTIONS(12108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12108), + [anon_sym_BSLASHglsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12108), + [anon_sym_BSLASHglsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12108), + [anon_sym_BSLASHglsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12108), + [anon_sym_BSLASHglsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12108), + [anon_sym_BSLASHglsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12108), + [anon_sym_BSLASHnewacronym] = ACTIONS(12108), + [anon_sym_BSLASHacrshort] = ACTIONS(12108), + [anon_sym_BSLASHAcrshort] = ACTIONS(12108), + [anon_sym_BSLASHACRshort] = ACTIONS(12108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12108), + [anon_sym_BSLASHacrlong] = ACTIONS(12108), + [anon_sym_BSLASHAcrlong] = ACTIONS(12108), + [anon_sym_BSLASHACRlong] = ACTIONS(12108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12108), + [anon_sym_BSLASHacrfull] = ACTIONS(12108), + [anon_sym_BSLASHAcrfull] = ACTIONS(12108), + [anon_sym_BSLASHACRfull] = ACTIONS(12108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12108), + [anon_sym_BSLASHacs] = ACTIONS(12108), + [anon_sym_BSLASHAcs] = ACTIONS(12108), + [anon_sym_BSLASHacsp] = ACTIONS(12108), + [anon_sym_BSLASHAcsp] = ACTIONS(12108), + [anon_sym_BSLASHacl] = ACTIONS(12108), + [anon_sym_BSLASHAcl] = ACTIONS(12108), + [anon_sym_BSLASHaclp] = ACTIONS(12108), + [anon_sym_BSLASHAclp] = ACTIONS(12108), + [anon_sym_BSLASHacf] = ACTIONS(12108), + [anon_sym_BSLASHAcf] = ACTIONS(12108), + [anon_sym_BSLASHacfp] = ACTIONS(12108), + [anon_sym_BSLASHAcfp] = ACTIONS(12108), + [anon_sym_BSLASHac] = ACTIONS(12108), + [anon_sym_BSLASHAc] = ACTIONS(12108), + [anon_sym_BSLASHacp] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12108), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12108), + [anon_sym_BSLASHcolor] = ACTIONS(12108), + [anon_sym_BSLASHcolorbox] = ACTIONS(12108), + [anon_sym_BSLASHtextcolor] = ACTIONS(12108), + [anon_sym_BSLASHpagecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12108), + }, + [1755] = { + [sym_generic_command_name] = ACTIONS(12235), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12235), + [anon_sym_LBRACK] = ACTIONS(12233), + [anon_sym_RBRACK] = ACTIONS(12233), + [anon_sym_LBRACE] = ACTIONS(12233), + [anon_sym_RBRACE] = ACTIONS(12233), + [anon_sym_LPAREN] = ACTIONS(12233), + [anon_sym_COMMA] = ACTIONS(12233), + [anon_sym_EQ] = ACTIONS(12233), + [sym_word] = ACTIONS(12233), + [sym_param] = ACTIONS(12233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12233), + [anon_sym_DOLLAR] = ACTIONS(12235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12233), + [anon_sym_BSLASHbegin] = ACTIONS(12235), + [anon_sym_BSLASHcaption] = ACTIONS(12235), + [anon_sym_BSLASHcite] = ACTIONS(12235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCite] = ACTIONS(12235), + [anon_sym_BSLASHnocite] = ACTIONS(12235), + [anon_sym_BSLASHcitet] = ACTIONS(12235), + [anon_sym_BSLASHcitep] = ACTIONS(12235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteauthor] = ACTIONS(12235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitetitle] = ACTIONS(12235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteyear] = ACTIONS(12235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitedate] = ACTIONS(12235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteurl] = ACTIONS(12235), + [anon_sym_BSLASHfullcite] = ACTIONS(12235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12235), + [anon_sym_BSLASHcitealt] = ACTIONS(12235), + [anon_sym_BSLASHcitealp] = ACTIONS(12235), + [anon_sym_BSLASHcitetext] = ACTIONS(12235), + [anon_sym_BSLASHparencite] = ACTIONS(12235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHParencite] = ACTIONS(12235), + [anon_sym_BSLASHfootcite] = ACTIONS(12235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12235), + [anon_sym_BSLASHtextcite] = ACTIONS(12235), + [anon_sym_BSLASHTextcite] = ACTIONS(12235), + [anon_sym_BSLASHsmartcite] = ACTIONS(12235), + [anon_sym_BSLASHSmartcite] = ACTIONS(12235), + [anon_sym_BSLASHsupercite] = ACTIONS(12235), + [anon_sym_BSLASHautocite] = ACTIONS(12235), + [anon_sym_BSLASHAutocite] = ACTIONS(12235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHvolcite] = ACTIONS(12235), + [anon_sym_BSLASHVolcite] = ACTIONS(12235), + [anon_sym_BSLASHpvolcite] = ACTIONS(12235), + [anon_sym_BSLASHPvolcite] = ACTIONS(12235), + [anon_sym_BSLASHfvolcite] = ACTIONS(12235), + [anon_sym_BSLASHftvolcite] = ACTIONS(12235), + [anon_sym_BSLASHsvolcite] = ACTIONS(12235), + [anon_sym_BSLASHSvolcite] = ACTIONS(12235), + [anon_sym_BSLASHtvolcite] = ACTIONS(12235), + [anon_sym_BSLASHTvolcite] = ACTIONS(12235), + [anon_sym_BSLASHavolcite] = ACTIONS(12235), + [anon_sym_BSLASHAvolcite] = ACTIONS(12235), + [anon_sym_BSLASHnotecite] = ACTIONS(12235), + [anon_sym_BSLASHpnotecite] = ACTIONS(12235), + [anon_sym_BSLASHPnotecite] = ACTIONS(12235), + [anon_sym_BSLASHfnotecite] = ACTIONS(12235), + [anon_sym_BSLASHusepackage] = ACTIONS(12235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12235), + [anon_sym_BSLASHinclude] = ACTIONS(12235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12235), + [anon_sym_BSLASHinput] = ACTIONS(12235), + [anon_sym_BSLASHsubfile] = ACTIONS(12235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12235), + [anon_sym_BSLASHbibliography] = ACTIONS(12235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12235), + [anon_sym_BSLASHincludesvg] = ACTIONS(12235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12235), + [anon_sym_BSLASHimport] = ACTIONS(12235), + [anon_sym_BSLASHsubimport] = ACTIONS(12235), + [anon_sym_BSLASHinputfrom] = ACTIONS(12235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12235), + [anon_sym_BSLASHincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHlabel] = ACTIONS(12235), + [anon_sym_BSLASHref] = ACTIONS(12235), + [anon_sym_BSLASHvref] = ACTIONS(12235), + [anon_sym_BSLASHVref] = ACTIONS(12235), + [anon_sym_BSLASHautoref] = ACTIONS(12235), + [anon_sym_BSLASHpageref] = ACTIONS(12235), + [anon_sym_BSLASHcref] = ACTIONS(12235), + [anon_sym_BSLASHCref] = ACTIONS(12235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnameCref] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHlabelcref] = ACTIONS(12235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12235), + [anon_sym_BSLASHeqref] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange] = ACTIONS(12235), + [anon_sym_BSLASHCrefrange] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewlabel] = ACTIONS(12235), + [anon_sym_BSLASHnewcommand] = ACTIONS(12235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12235), + [anon_sym_BSLASHgls] = ACTIONS(12235), + [anon_sym_BSLASHGls] = ACTIONS(12235), + [anon_sym_BSLASHGLS] = ACTIONS(12235), + [anon_sym_BSLASHglspl] = ACTIONS(12235), + [anon_sym_BSLASHGlspl] = ACTIONS(12235), + [anon_sym_BSLASHGLSpl] = ACTIONS(12235), + [anon_sym_BSLASHglsdisp] = ACTIONS(12235), + [anon_sym_BSLASHglslink] = ACTIONS(12235), + [anon_sym_BSLASHglstext] = ACTIONS(12235), + [anon_sym_BSLASHGlstext] = ACTIONS(12235), + [anon_sym_BSLASHGLStext] = ACTIONS(12235), + [anon_sym_BSLASHglsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12235), + [anon_sym_BSLASHglsplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSplural] = ACTIONS(12235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHglsname] = ACTIONS(12235), + [anon_sym_BSLASHGlsname] = ACTIONS(12235), + [anon_sym_BSLASHGLSname] = ACTIONS(12235), + [anon_sym_BSLASHglssymbol] = ACTIONS(12235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12235), + [anon_sym_BSLASHglsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12235), + [anon_sym_BSLASHglsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12235), + [anon_sym_BSLASHglsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12235), + [anon_sym_BSLASHglsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12235), + [anon_sym_BSLASHglsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12235), + [anon_sym_BSLASHnewacronym] = ACTIONS(12235), + [anon_sym_BSLASHacrshort] = ACTIONS(12235), + [anon_sym_BSLASHAcrshort] = ACTIONS(12235), + [anon_sym_BSLASHACRshort] = ACTIONS(12235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12235), + [anon_sym_BSLASHacrlong] = ACTIONS(12235), + [anon_sym_BSLASHAcrlong] = ACTIONS(12235), + [anon_sym_BSLASHACRlong] = ACTIONS(12235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12235), + [anon_sym_BSLASHacrfull] = ACTIONS(12235), + [anon_sym_BSLASHAcrfull] = ACTIONS(12235), + [anon_sym_BSLASHACRfull] = ACTIONS(12235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12235), + [anon_sym_BSLASHacs] = ACTIONS(12235), + [anon_sym_BSLASHAcs] = ACTIONS(12235), + [anon_sym_BSLASHacsp] = ACTIONS(12235), + [anon_sym_BSLASHAcsp] = ACTIONS(12235), + [anon_sym_BSLASHacl] = ACTIONS(12235), + [anon_sym_BSLASHAcl] = ACTIONS(12235), + [anon_sym_BSLASHaclp] = ACTIONS(12235), + [anon_sym_BSLASHAclp] = ACTIONS(12235), + [anon_sym_BSLASHacf] = ACTIONS(12235), + [anon_sym_BSLASHAcf] = ACTIONS(12235), + [anon_sym_BSLASHacfp] = ACTIONS(12235), + [anon_sym_BSLASHAcfp] = ACTIONS(12235), + [anon_sym_BSLASHac] = ACTIONS(12235), + [anon_sym_BSLASHAc] = ACTIONS(12235), + [anon_sym_BSLASHacp] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12235), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12235), + [anon_sym_BSLASHcolor] = ACTIONS(12235), + [anon_sym_BSLASHcolorbox] = ACTIONS(12235), + [anon_sym_BSLASHtextcolor] = ACTIONS(12235), + [anon_sym_BSLASHpagecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12235), + }, + [1756] = { + [sym_generic_command_name] = ACTIONS(12239), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12239), + [anon_sym_LBRACK] = ACTIONS(12237), + [anon_sym_RBRACK] = ACTIONS(12237), + [anon_sym_LBRACE] = ACTIONS(12237), + [anon_sym_RBRACE] = ACTIONS(12237), + [anon_sym_LPAREN] = ACTIONS(12237), + [anon_sym_COMMA] = ACTIONS(12237), + [anon_sym_EQ] = ACTIONS(12237), + [sym_word] = ACTIONS(12237), + [sym_param] = ACTIONS(12237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12237), + [anon_sym_DOLLAR] = ACTIONS(12239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12237), + [anon_sym_BSLASHbegin] = ACTIONS(12239), + [anon_sym_BSLASHcaption] = ACTIONS(12239), + [anon_sym_BSLASHcite] = ACTIONS(12239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCite] = ACTIONS(12239), + [anon_sym_BSLASHnocite] = ACTIONS(12239), + [anon_sym_BSLASHcitet] = ACTIONS(12239), + [anon_sym_BSLASHcitep] = ACTIONS(12239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteauthor] = ACTIONS(12239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitetitle] = ACTIONS(12239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteyear] = ACTIONS(12239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitedate] = ACTIONS(12239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteurl] = ACTIONS(12239), + [anon_sym_BSLASHfullcite] = ACTIONS(12239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12239), + [anon_sym_BSLASHcitealt] = ACTIONS(12239), + [anon_sym_BSLASHcitealp] = ACTIONS(12239), + [anon_sym_BSLASHcitetext] = ACTIONS(12239), + [anon_sym_BSLASHparencite] = ACTIONS(12239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHParencite] = ACTIONS(12239), + [anon_sym_BSLASHfootcite] = ACTIONS(12239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12239), + [anon_sym_BSLASHtextcite] = ACTIONS(12239), + [anon_sym_BSLASHTextcite] = ACTIONS(12239), + [anon_sym_BSLASHsmartcite] = ACTIONS(12239), + [anon_sym_BSLASHSmartcite] = ACTIONS(12239), + [anon_sym_BSLASHsupercite] = ACTIONS(12239), + [anon_sym_BSLASHautocite] = ACTIONS(12239), + [anon_sym_BSLASHAutocite] = ACTIONS(12239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHvolcite] = ACTIONS(12239), + [anon_sym_BSLASHVolcite] = ACTIONS(12239), + [anon_sym_BSLASHpvolcite] = ACTIONS(12239), + [anon_sym_BSLASHPvolcite] = ACTIONS(12239), + [anon_sym_BSLASHfvolcite] = ACTIONS(12239), + [anon_sym_BSLASHftvolcite] = ACTIONS(12239), + [anon_sym_BSLASHsvolcite] = ACTIONS(12239), + [anon_sym_BSLASHSvolcite] = ACTIONS(12239), + [anon_sym_BSLASHtvolcite] = ACTIONS(12239), + [anon_sym_BSLASHTvolcite] = ACTIONS(12239), + [anon_sym_BSLASHavolcite] = ACTIONS(12239), + [anon_sym_BSLASHAvolcite] = ACTIONS(12239), + [anon_sym_BSLASHnotecite] = ACTIONS(12239), + [anon_sym_BSLASHpnotecite] = ACTIONS(12239), + [anon_sym_BSLASHPnotecite] = ACTIONS(12239), + [anon_sym_BSLASHfnotecite] = ACTIONS(12239), + [anon_sym_BSLASHusepackage] = ACTIONS(12239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12239), + [anon_sym_BSLASHinclude] = ACTIONS(12239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12239), + [anon_sym_BSLASHinput] = ACTIONS(12239), + [anon_sym_BSLASHsubfile] = ACTIONS(12239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12239), + [anon_sym_BSLASHbibliography] = ACTIONS(12239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12239), + [anon_sym_BSLASHincludesvg] = ACTIONS(12239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12239), + [anon_sym_BSLASHimport] = ACTIONS(12239), + [anon_sym_BSLASHsubimport] = ACTIONS(12239), + [anon_sym_BSLASHinputfrom] = ACTIONS(12239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12239), + [anon_sym_BSLASHincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHlabel] = ACTIONS(12239), + [anon_sym_BSLASHref] = ACTIONS(12239), + [anon_sym_BSLASHvref] = ACTIONS(12239), + [anon_sym_BSLASHVref] = ACTIONS(12239), + [anon_sym_BSLASHautoref] = ACTIONS(12239), + [anon_sym_BSLASHpageref] = ACTIONS(12239), + [anon_sym_BSLASHcref] = ACTIONS(12239), + [anon_sym_BSLASHCref] = ACTIONS(12239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnameCref] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHlabelcref] = ACTIONS(12239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12239), + [anon_sym_BSLASHeqref] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange] = ACTIONS(12239), + [anon_sym_BSLASHCrefrange] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewlabel] = ACTIONS(12239), + [anon_sym_BSLASHnewcommand] = ACTIONS(12239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12239), + [anon_sym_BSLASHgls] = ACTIONS(12239), + [anon_sym_BSLASHGls] = ACTIONS(12239), + [anon_sym_BSLASHGLS] = ACTIONS(12239), + [anon_sym_BSLASHglspl] = ACTIONS(12239), + [anon_sym_BSLASHGlspl] = ACTIONS(12239), + [anon_sym_BSLASHGLSpl] = ACTIONS(12239), + [anon_sym_BSLASHglsdisp] = ACTIONS(12239), + [anon_sym_BSLASHglslink] = ACTIONS(12239), + [anon_sym_BSLASHglstext] = ACTIONS(12239), + [anon_sym_BSLASHGlstext] = ACTIONS(12239), + [anon_sym_BSLASHGLStext] = ACTIONS(12239), + [anon_sym_BSLASHglsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12239), + [anon_sym_BSLASHglsplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSplural] = ACTIONS(12239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHglsname] = ACTIONS(12239), + [anon_sym_BSLASHGlsname] = ACTIONS(12239), + [anon_sym_BSLASHGLSname] = ACTIONS(12239), + [anon_sym_BSLASHglssymbol] = ACTIONS(12239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12239), + [anon_sym_BSLASHglsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12239), + [anon_sym_BSLASHglsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12239), + [anon_sym_BSLASHglsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12239), + [anon_sym_BSLASHglsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12239), + [anon_sym_BSLASHglsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12239), + [anon_sym_BSLASHnewacronym] = ACTIONS(12239), + [anon_sym_BSLASHacrshort] = ACTIONS(12239), + [anon_sym_BSLASHAcrshort] = ACTIONS(12239), + [anon_sym_BSLASHACRshort] = ACTIONS(12239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12239), + [anon_sym_BSLASHacrlong] = ACTIONS(12239), + [anon_sym_BSLASHAcrlong] = ACTIONS(12239), + [anon_sym_BSLASHACRlong] = ACTIONS(12239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12239), + [anon_sym_BSLASHacrfull] = ACTIONS(12239), + [anon_sym_BSLASHAcrfull] = ACTIONS(12239), + [anon_sym_BSLASHACRfull] = ACTIONS(12239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12239), + [anon_sym_BSLASHacs] = ACTIONS(12239), + [anon_sym_BSLASHAcs] = ACTIONS(12239), + [anon_sym_BSLASHacsp] = ACTIONS(12239), + [anon_sym_BSLASHAcsp] = ACTIONS(12239), + [anon_sym_BSLASHacl] = ACTIONS(12239), + [anon_sym_BSLASHAcl] = ACTIONS(12239), + [anon_sym_BSLASHaclp] = ACTIONS(12239), + [anon_sym_BSLASHAclp] = ACTIONS(12239), + [anon_sym_BSLASHacf] = ACTIONS(12239), + [anon_sym_BSLASHAcf] = ACTIONS(12239), + [anon_sym_BSLASHacfp] = ACTIONS(12239), + [anon_sym_BSLASHAcfp] = ACTIONS(12239), + [anon_sym_BSLASHac] = ACTIONS(12239), + [anon_sym_BSLASHAc] = ACTIONS(12239), + [anon_sym_BSLASHacp] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12239), + [anon_sym_BSLASHcolor] = ACTIONS(12239), + [anon_sym_BSLASHcolorbox] = ACTIONS(12239), + [anon_sym_BSLASHtextcolor] = ACTIONS(12239), + [anon_sym_BSLASHpagecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12239), + }, + [1757] = { + [sym_generic_command_name] = ACTIONS(12243), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12243), + [anon_sym_LBRACK] = ACTIONS(12241), + [anon_sym_RBRACK] = ACTIONS(12241), + [anon_sym_LBRACE] = ACTIONS(12241), + [anon_sym_RBRACE] = ACTIONS(12241), + [anon_sym_LPAREN] = ACTIONS(12241), + [anon_sym_COMMA] = ACTIONS(12241), + [anon_sym_EQ] = ACTIONS(12241), + [sym_word] = ACTIONS(12241), + [sym_param] = ACTIONS(12241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12241), + [anon_sym_DOLLAR] = ACTIONS(12243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12241), + [anon_sym_BSLASHbegin] = ACTIONS(12243), + [anon_sym_BSLASHcaption] = ACTIONS(12243), + [anon_sym_BSLASHcite] = ACTIONS(12243), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCite] = ACTIONS(12243), + [anon_sym_BSLASHnocite] = ACTIONS(12243), + [anon_sym_BSLASHcitet] = ACTIONS(12243), + [anon_sym_BSLASHcitep] = ACTIONS(12243), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteauthor] = ACTIONS(12243), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12243), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitetitle] = ACTIONS(12243), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteyear] = ACTIONS(12243), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitedate] = ACTIONS(12243), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteurl] = ACTIONS(12243), + [anon_sym_BSLASHfullcite] = ACTIONS(12243), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12243), + [anon_sym_BSLASHcitealt] = ACTIONS(12243), + [anon_sym_BSLASHcitealp] = ACTIONS(12243), + [anon_sym_BSLASHcitetext] = ACTIONS(12243), + [anon_sym_BSLASHparencite] = ACTIONS(12243), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHParencite] = ACTIONS(12243), + [anon_sym_BSLASHfootcite] = ACTIONS(12243), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12243), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12243), + [anon_sym_BSLASHtextcite] = ACTIONS(12243), + [anon_sym_BSLASHTextcite] = ACTIONS(12243), + [anon_sym_BSLASHsmartcite] = ACTIONS(12243), + [anon_sym_BSLASHSmartcite] = ACTIONS(12243), + [anon_sym_BSLASHsupercite] = ACTIONS(12243), + [anon_sym_BSLASHautocite] = ACTIONS(12243), + [anon_sym_BSLASHAutocite] = ACTIONS(12243), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHvolcite] = ACTIONS(12243), + [anon_sym_BSLASHVolcite] = ACTIONS(12243), + [anon_sym_BSLASHpvolcite] = ACTIONS(12243), + [anon_sym_BSLASHPvolcite] = ACTIONS(12243), + [anon_sym_BSLASHfvolcite] = ACTIONS(12243), + [anon_sym_BSLASHftvolcite] = ACTIONS(12243), + [anon_sym_BSLASHsvolcite] = ACTIONS(12243), + [anon_sym_BSLASHSvolcite] = ACTIONS(12243), + [anon_sym_BSLASHtvolcite] = ACTIONS(12243), + [anon_sym_BSLASHTvolcite] = ACTIONS(12243), + [anon_sym_BSLASHavolcite] = ACTIONS(12243), + [anon_sym_BSLASHAvolcite] = ACTIONS(12243), + [anon_sym_BSLASHnotecite] = ACTIONS(12243), + [anon_sym_BSLASHpnotecite] = ACTIONS(12243), + [anon_sym_BSLASHPnotecite] = ACTIONS(12243), + [anon_sym_BSLASHfnotecite] = ACTIONS(12243), + [anon_sym_BSLASHusepackage] = ACTIONS(12243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12243), + [anon_sym_BSLASHinclude] = ACTIONS(12243), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12243), + [anon_sym_BSLASHinput] = ACTIONS(12243), + [anon_sym_BSLASHsubfile] = ACTIONS(12243), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12243), + [anon_sym_BSLASHbibliography] = ACTIONS(12243), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12243), + [anon_sym_BSLASHincludesvg] = ACTIONS(12243), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12243), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12243), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12243), + [anon_sym_BSLASHimport] = ACTIONS(12243), + [anon_sym_BSLASHsubimport] = ACTIONS(12243), + [anon_sym_BSLASHinputfrom] = ACTIONS(12243), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12243), + [anon_sym_BSLASHincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHlabel] = ACTIONS(12243), + [anon_sym_BSLASHref] = ACTIONS(12243), + [anon_sym_BSLASHvref] = ACTIONS(12243), + [anon_sym_BSLASHVref] = ACTIONS(12243), + [anon_sym_BSLASHautoref] = ACTIONS(12243), + [anon_sym_BSLASHpageref] = ACTIONS(12243), + [anon_sym_BSLASHcref] = ACTIONS(12243), + [anon_sym_BSLASHCref] = ACTIONS(12243), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnameCref] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHlabelcref] = ACTIONS(12243), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12243), + [anon_sym_BSLASHeqref] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange] = ACTIONS(12243), + [anon_sym_BSLASHCrefrange] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewlabel] = ACTIONS(12243), + [anon_sym_BSLASHnewcommand] = ACTIONS(12243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12243), + [anon_sym_BSLASHgls] = ACTIONS(12243), + [anon_sym_BSLASHGls] = ACTIONS(12243), + [anon_sym_BSLASHGLS] = ACTIONS(12243), + [anon_sym_BSLASHglspl] = ACTIONS(12243), + [anon_sym_BSLASHGlspl] = ACTIONS(12243), + [anon_sym_BSLASHGLSpl] = ACTIONS(12243), + [anon_sym_BSLASHglsdisp] = ACTIONS(12243), + [anon_sym_BSLASHglslink] = ACTIONS(12243), + [anon_sym_BSLASHglstext] = ACTIONS(12243), + [anon_sym_BSLASHGlstext] = ACTIONS(12243), + [anon_sym_BSLASHGLStext] = ACTIONS(12243), + [anon_sym_BSLASHglsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12243), + [anon_sym_BSLASHglsplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSplural] = ACTIONS(12243), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHglsname] = ACTIONS(12243), + [anon_sym_BSLASHGlsname] = ACTIONS(12243), + [anon_sym_BSLASHGLSname] = ACTIONS(12243), + [anon_sym_BSLASHglssymbol] = ACTIONS(12243), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12243), + [anon_sym_BSLASHglsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12243), + [anon_sym_BSLASHglsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12243), + [anon_sym_BSLASHglsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12243), + [anon_sym_BSLASHglsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12243), + [anon_sym_BSLASHglsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12243), + [anon_sym_BSLASHnewacronym] = ACTIONS(12243), + [anon_sym_BSLASHacrshort] = ACTIONS(12243), + [anon_sym_BSLASHAcrshort] = ACTIONS(12243), + [anon_sym_BSLASHACRshort] = ACTIONS(12243), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12243), + [anon_sym_BSLASHacrlong] = ACTIONS(12243), + [anon_sym_BSLASHAcrlong] = ACTIONS(12243), + [anon_sym_BSLASHACRlong] = ACTIONS(12243), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12243), + [anon_sym_BSLASHacrfull] = ACTIONS(12243), + [anon_sym_BSLASHAcrfull] = ACTIONS(12243), + [anon_sym_BSLASHACRfull] = ACTIONS(12243), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12243), + [anon_sym_BSLASHacs] = ACTIONS(12243), + [anon_sym_BSLASHAcs] = ACTIONS(12243), + [anon_sym_BSLASHacsp] = ACTIONS(12243), + [anon_sym_BSLASHAcsp] = ACTIONS(12243), + [anon_sym_BSLASHacl] = ACTIONS(12243), + [anon_sym_BSLASHAcl] = ACTIONS(12243), + [anon_sym_BSLASHaclp] = ACTIONS(12243), + [anon_sym_BSLASHAclp] = ACTIONS(12243), + [anon_sym_BSLASHacf] = ACTIONS(12243), + [anon_sym_BSLASHAcf] = ACTIONS(12243), + [anon_sym_BSLASHacfp] = ACTIONS(12243), + [anon_sym_BSLASHAcfp] = ACTIONS(12243), + [anon_sym_BSLASHac] = ACTIONS(12243), + [anon_sym_BSLASHAc] = ACTIONS(12243), + [anon_sym_BSLASHacp] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12243), + [anon_sym_BSLASHcolor] = ACTIONS(12243), + [anon_sym_BSLASHcolorbox] = ACTIONS(12243), + [anon_sym_BSLASHtextcolor] = ACTIONS(12243), + [anon_sym_BSLASHpagecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12243), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12243), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12243), + }, + [1758] = { + [sym_brace_group] = STATE(3277), + [sym_generic_command_name] = ACTIONS(12100), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12098), + [anon_sym_RBRACK] = ACTIONS(12098), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12098), + [anon_sym_LPAREN] = ACTIONS(12098), + [anon_sym_COMMA] = ACTIONS(12098), + [anon_sym_EQ] = ACTIONS(12098), + [sym_word] = ACTIONS(12098), + [sym_param] = ACTIONS(12098), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12098), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12098), + [anon_sym_DOLLAR] = ACTIONS(12100), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12098), + [anon_sym_BSLASHbegin] = ACTIONS(12100), + [anon_sym_BSLASHcaption] = ACTIONS(12100), + [anon_sym_BSLASHcite] = ACTIONS(12100), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCite] = ACTIONS(12100), + [anon_sym_BSLASHnocite] = ACTIONS(12100), + [anon_sym_BSLASHcitet] = ACTIONS(12100), + [anon_sym_BSLASHcitep] = ACTIONS(12100), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteauthor] = ACTIONS(12100), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12100), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitetitle] = ACTIONS(12100), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteyear] = ACTIONS(12100), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12098), + [anon_sym_BSLASHcitedate] = ACTIONS(12100), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12098), + [anon_sym_BSLASHciteurl] = ACTIONS(12100), + [anon_sym_BSLASHfullcite] = ACTIONS(12100), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12100), + [anon_sym_BSLASHcitealt] = ACTIONS(12100), + [anon_sym_BSLASHcitealp] = ACTIONS(12100), + [anon_sym_BSLASHcitetext] = ACTIONS(12100), + [anon_sym_BSLASHparencite] = ACTIONS(12100), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHParencite] = ACTIONS(12100), + [anon_sym_BSLASHfootcite] = ACTIONS(12100), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12100), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12100), + [anon_sym_BSLASHtextcite] = ACTIONS(12100), + [anon_sym_BSLASHTextcite] = ACTIONS(12100), + [anon_sym_BSLASHsmartcite] = ACTIONS(12100), + [anon_sym_BSLASHSmartcite] = ACTIONS(12100), + [anon_sym_BSLASHsupercite] = ACTIONS(12100), + [anon_sym_BSLASHautocite] = ACTIONS(12100), + [anon_sym_BSLASHAutocite] = ACTIONS(12100), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12098), + [anon_sym_BSLASHvolcite] = ACTIONS(12100), + [anon_sym_BSLASHVolcite] = ACTIONS(12100), + [anon_sym_BSLASHpvolcite] = ACTIONS(12100), + [anon_sym_BSLASHPvolcite] = ACTIONS(12100), + [anon_sym_BSLASHfvolcite] = ACTIONS(12100), + [anon_sym_BSLASHftvolcite] = ACTIONS(12100), + [anon_sym_BSLASHsvolcite] = ACTIONS(12100), + [anon_sym_BSLASHSvolcite] = ACTIONS(12100), + [anon_sym_BSLASHtvolcite] = ACTIONS(12100), + [anon_sym_BSLASHTvolcite] = ACTIONS(12100), + [anon_sym_BSLASHavolcite] = ACTIONS(12100), + [anon_sym_BSLASHAvolcite] = ACTIONS(12100), + [anon_sym_BSLASHnotecite] = ACTIONS(12100), + [anon_sym_BSLASHpnotecite] = ACTIONS(12100), + [anon_sym_BSLASHPnotecite] = ACTIONS(12100), + [anon_sym_BSLASHfnotecite] = ACTIONS(12100), + [anon_sym_BSLASHusepackage] = ACTIONS(12100), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12100), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12100), + [anon_sym_BSLASHinclude] = ACTIONS(12100), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12100), + [anon_sym_BSLASHinput] = ACTIONS(12100), + [anon_sym_BSLASHsubfile] = ACTIONS(12100), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12100), + [anon_sym_BSLASHbibliography] = ACTIONS(12100), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12100), + [anon_sym_BSLASHincludesvg] = ACTIONS(12100), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12100), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12100), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12100), + [anon_sym_BSLASHimport] = ACTIONS(12100), + [anon_sym_BSLASHsubimport] = ACTIONS(12100), + [anon_sym_BSLASHinputfrom] = ACTIONS(12100), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12100), + [anon_sym_BSLASHincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12100), + [anon_sym_BSLASHlabel] = ACTIONS(12100), + [anon_sym_BSLASHref] = ACTIONS(12100), + [anon_sym_BSLASHvref] = ACTIONS(12100), + [anon_sym_BSLASHVref] = ACTIONS(12100), + [anon_sym_BSLASHautoref] = ACTIONS(12100), + [anon_sym_BSLASHpageref] = ACTIONS(12100), + [anon_sym_BSLASHcref] = ACTIONS(12100), + [anon_sym_BSLASHCref] = ACTIONS(12100), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnameCref] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12100), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12100), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12100), + [anon_sym_BSLASHlabelcref] = ACTIONS(12100), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12100), + [anon_sym_BSLASHeqref] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange] = ACTIONS(12100), + [anon_sym_BSLASHCrefrange] = ACTIONS(12100), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewlabel] = ACTIONS(12100), + [anon_sym_BSLASHnewcommand] = ACTIONS(12100), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12100), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12098), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12100), + [anon_sym_BSLASHgls] = ACTIONS(12100), + [anon_sym_BSLASHGls] = ACTIONS(12100), + [anon_sym_BSLASHGLS] = ACTIONS(12100), + [anon_sym_BSLASHglspl] = ACTIONS(12100), + [anon_sym_BSLASHGlspl] = ACTIONS(12100), + [anon_sym_BSLASHGLSpl] = ACTIONS(12100), + [anon_sym_BSLASHglsdisp] = ACTIONS(12100), + [anon_sym_BSLASHglslink] = ACTIONS(12100), + [anon_sym_BSLASHglstext] = ACTIONS(12100), + [anon_sym_BSLASHGlstext] = ACTIONS(12100), + [anon_sym_BSLASHGLStext] = ACTIONS(12100), + [anon_sym_BSLASHglsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12100), + [anon_sym_BSLASHglsplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSplural] = ACTIONS(12100), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12100), + [anon_sym_BSLASHglsname] = ACTIONS(12100), + [anon_sym_BSLASHGlsname] = ACTIONS(12100), + [anon_sym_BSLASHGLSname] = ACTIONS(12100), + [anon_sym_BSLASHglssymbol] = ACTIONS(12100), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12100), + [anon_sym_BSLASHglsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12100), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12100), + [anon_sym_BSLASHglsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12100), + [anon_sym_BSLASHglsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12100), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12100), + [anon_sym_BSLASHglsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12100), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12100), + [anon_sym_BSLASHglsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12100), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12100), + [anon_sym_BSLASHnewacronym] = ACTIONS(12100), + [anon_sym_BSLASHacrshort] = ACTIONS(12100), + [anon_sym_BSLASHAcrshort] = ACTIONS(12100), + [anon_sym_BSLASHACRshort] = ACTIONS(12100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12100), + [anon_sym_BSLASHacrlong] = ACTIONS(12100), + [anon_sym_BSLASHAcrlong] = ACTIONS(12100), + [anon_sym_BSLASHACRlong] = ACTIONS(12100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12100), + [anon_sym_BSLASHacrfull] = ACTIONS(12100), + [anon_sym_BSLASHAcrfull] = ACTIONS(12100), + [anon_sym_BSLASHACRfull] = ACTIONS(12100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12100), + [anon_sym_BSLASHacs] = ACTIONS(12100), + [anon_sym_BSLASHAcs] = ACTIONS(12100), + [anon_sym_BSLASHacsp] = ACTIONS(12100), + [anon_sym_BSLASHAcsp] = ACTIONS(12100), + [anon_sym_BSLASHacl] = ACTIONS(12100), + [anon_sym_BSLASHAcl] = ACTIONS(12100), + [anon_sym_BSLASHaclp] = ACTIONS(12100), + [anon_sym_BSLASHAclp] = ACTIONS(12100), + [anon_sym_BSLASHacf] = ACTIONS(12100), + [anon_sym_BSLASHAcf] = ACTIONS(12100), + [anon_sym_BSLASHacfp] = ACTIONS(12100), + [anon_sym_BSLASHAcfp] = ACTIONS(12100), + [anon_sym_BSLASHac] = ACTIONS(12100), + [anon_sym_BSLASHAc] = ACTIONS(12100), + [anon_sym_BSLASHacp] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12100), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12100), + [anon_sym_BSLASHcolor] = ACTIONS(12100), + [anon_sym_BSLASHcolorbox] = ACTIONS(12100), + [anon_sym_BSLASHtextcolor] = ACTIONS(12100), + [anon_sym_BSLASHpagecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12100), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12100), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12100), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12100), + }, + [1759] = { + [sym_generic_command_name] = ACTIONS(12247), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12247), + [anon_sym_LBRACK] = ACTIONS(12245), + [anon_sym_RBRACK] = ACTIONS(12245), + [anon_sym_LBRACE] = ACTIONS(12245), + [anon_sym_RBRACE] = ACTIONS(12245), + [anon_sym_LPAREN] = ACTIONS(12245), + [anon_sym_COMMA] = ACTIONS(12245), + [anon_sym_EQ] = ACTIONS(12245), + [sym_word] = ACTIONS(12245), + [sym_param] = ACTIONS(12245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12245), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12245), + [anon_sym_DOLLAR] = ACTIONS(12247), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12245), + [anon_sym_BSLASHbegin] = ACTIONS(12247), + [anon_sym_BSLASHcaption] = ACTIONS(12247), + [anon_sym_BSLASHcite] = ACTIONS(12247), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCite] = ACTIONS(12247), + [anon_sym_BSLASHnocite] = ACTIONS(12247), + [anon_sym_BSLASHcitet] = ACTIONS(12247), + [anon_sym_BSLASHcitep] = ACTIONS(12247), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteauthor] = ACTIONS(12247), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12247), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitetitle] = ACTIONS(12247), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteyear] = ACTIONS(12247), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitedate] = ACTIONS(12247), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteurl] = ACTIONS(12247), + [anon_sym_BSLASHfullcite] = ACTIONS(12247), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12247), + [anon_sym_BSLASHcitealt] = ACTIONS(12247), + [anon_sym_BSLASHcitealp] = ACTIONS(12247), + [anon_sym_BSLASHcitetext] = ACTIONS(12247), + [anon_sym_BSLASHparencite] = ACTIONS(12247), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHParencite] = ACTIONS(12247), + [anon_sym_BSLASHfootcite] = ACTIONS(12247), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12247), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12247), + [anon_sym_BSLASHtextcite] = ACTIONS(12247), + [anon_sym_BSLASHTextcite] = ACTIONS(12247), + [anon_sym_BSLASHsmartcite] = ACTIONS(12247), + [anon_sym_BSLASHSmartcite] = ACTIONS(12247), + [anon_sym_BSLASHsupercite] = ACTIONS(12247), + [anon_sym_BSLASHautocite] = ACTIONS(12247), + [anon_sym_BSLASHAutocite] = ACTIONS(12247), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHvolcite] = ACTIONS(12247), + [anon_sym_BSLASHVolcite] = ACTIONS(12247), + [anon_sym_BSLASHpvolcite] = ACTIONS(12247), + [anon_sym_BSLASHPvolcite] = ACTIONS(12247), + [anon_sym_BSLASHfvolcite] = ACTIONS(12247), + [anon_sym_BSLASHftvolcite] = ACTIONS(12247), + [anon_sym_BSLASHsvolcite] = ACTIONS(12247), + [anon_sym_BSLASHSvolcite] = ACTIONS(12247), + [anon_sym_BSLASHtvolcite] = ACTIONS(12247), + [anon_sym_BSLASHTvolcite] = ACTIONS(12247), + [anon_sym_BSLASHavolcite] = ACTIONS(12247), + [anon_sym_BSLASHAvolcite] = ACTIONS(12247), + [anon_sym_BSLASHnotecite] = ACTIONS(12247), + [anon_sym_BSLASHpnotecite] = ACTIONS(12247), + [anon_sym_BSLASHPnotecite] = ACTIONS(12247), + [anon_sym_BSLASHfnotecite] = ACTIONS(12247), + [anon_sym_BSLASHusepackage] = ACTIONS(12247), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12247), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12247), + [anon_sym_BSLASHinclude] = ACTIONS(12247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12247), + [anon_sym_BSLASHinput] = ACTIONS(12247), + [anon_sym_BSLASHsubfile] = ACTIONS(12247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12247), + [anon_sym_BSLASHbibliography] = ACTIONS(12247), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12247), + [anon_sym_BSLASHincludesvg] = ACTIONS(12247), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12247), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12247), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12247), + [anon_sym_BSLASHimport] = ACTIONS(12247), + [anon_sym_BSLASHsubimport] = ACTIONS(12247), + [anon_sym_BSLASHinputfrom] = ACTIONS(12247), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12247), + [anon_sym_BSLASHincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHlabel] = ACTIONS(12247), + [anon_sym_BSLASHref] = ACTIONS(12247), + [anon_sym_BSLASHvref] = ACTIONS(12247), + [anon_sym_BSLASHVref] = ACTIONS(12247), + [anon_sym_BSLASHautoref] = ACTIONS(12247), + [anon_sym_BSLASHpageref] = ACTIONS(12247), + [anon_sym_BSLASHcref] = ACTIONS(12247), + [anon_sym_BSLASHCref] = ACTIONS(12247), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnameCref] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHlabelcref] = ACTIONS(12247), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12247), + [anon_sym_BSLASHeqref] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange] = ACTIONS(12247), + [anon_sym_BSLASHCrefrange] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewlabel] = ACTIONS(12247), + [anon_sym_BSLASHnewcommand] = ACTIONS(12247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12247), + [anon_sym_BSLASHgls] = ACTIONS(12247), + [anon_sym_BSLASHGls] = ACTIONS(12247), + [anon_sym_BSLASHGLS] = ACTIONS(12247), + [anon_sym_BSLASHglspl] = ACTIONS(12247), + [anon_sym_BSLASHGlspl] = ACTIONS(12247), + [anon_sym_BSLASHGLSpl] = ACTIONS(12247), + [anon_sym_BSLASHglsdisp] = ACTIONS(12247), + [anon_sym_BSLASHglslink] = ACTIONS(12247), + [anon_sym_BSLASHglstext] = ACTIONS(12247), + [anon_sym_BSLASHGlstext] = ACTIONS(12247), + [anon_sym_BSLASHGLStext] = ACTIONS(12247), + [anon_sym_BSLASHglsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12247), + [anon_sym_BSLASHglsplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSplural] = ACTIONS(12247), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHglsname] = ACTIONS(12247), + [anon_sym_BSLASHGlsname] = ACTIONS(12247), + [anon_sym_BSLASHGLSname] = ACTIONS(12247), + [anon_sym_BSLASHglssymbol] = ACTIONS(12247), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12247), + [anon_sym_BSLASHglsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12247), + [anon_sym_BSLASHglsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12247), + [anon_sym_BSLASHglsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12247), + [anon_sym_BSLASHglsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12247), + [anon_sym_BSLASHglsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12247), + [anon_sym_BSLASHnewacronym] = ACTIONS(12247), + [anon_sym_BSLASHacrshort] = ACTIONS(12247), + [anon_sym_BSLASHAcrshort] = ACTIONS(12247), + [anon_sym_BSLASHACRshort] = ACTIONS(12247), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12247), + [anon_sym_BSLASHacrlong] = ACTIONS(12247), + [anon_sym_BSLASHAcrlong] = ACTIONS(12247), + [anon_sym_BSLASHACRlong] = ACTIONS(12247), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12247), + [anon_sym_BSLASHacrfull] = ACTIONS(12247), + [anon_sym_BSLASHAcrfull] = ACTIONS(12247), + [anon_sym_BSLASHACRfull] = ACTIONS(12247), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12247), + [anon_sym_BSLASHacs] = ACTIONS(12247), + [anon_sym_BSLASHAcs] = ACTIONS(12247), + [anon_sym_BSLASHacsp] = ACTIONS(12247), + [anon_sym_BSLASHAcsp] = ACTIONS(12247), + [anon_sym_BSLASHacl] = ACTIONS(12247), + [anon_sym_BSLASHAcl] = ACTIONS(12247), + [anon_sym_BSLASHaclp] = ACTIONS(12247), + [anon_sym_BSLASHAclp] = ACTIONS(12247), + [anon_sym_BSLASHacf] = ACTIONS(12247), + [anon_sym_BSLASHAcf] = ACTIONS(12247), + [anon_sym_BSLASHacfp] = ACTIONS(12247), + [anon_sym_BSLASHAcfp] = ACTIONS(12247), + [anon_sym_BSLASHac] = ACTIONS(12247), + [anon_sym_BSLASHAc] = ACTIONS(12247), + [anon_sym_BSLASHacp] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12247), + [anon_sym_BSLASHcolor] = ACTIONS(12247), + [anon_sym_BSLASHcolorbox] = ACTIONS(12247), + [anon_sym_BSLASHtextcolor] = ACTIONS(12247), + [anon_sym_BSLASHpagecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12247), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12247), + }, + [1760] = { + [sym_generic_command_name] = ACTIONS(12189), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12189), + [anon_sym_LBRACK] = ACTIONS(12187), + [anon_sym_RBRACK] = ACTIONS(12187), + [anon_sym_LBRACE] = ACTIONS(12187), + [anon_sym_RBRACE] = ACTIONS(12187), + [anon_sym_LPAREN] = ACTIONS(12187), + [anon_sym_COMMA] = ACTIONS(12187), + [anon_sym_EQ] = ACTIONS(12187), + [sym_word] = ACTIONS(12187), + [sym_param] = ACTIONS(12187), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12187), + [anon_sym_DOLLAR] = ACTIONS(12189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12187), + [anon_sym_BSLASHbegin] = ACTIONS(12189), + [anon_sym_BSLASHcaption] = ACTIONS(12189), + [anon_sym_BSLASHcite] = ACTIONS(12189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCite] = ACTIONS(12189), + [anon_sym_BSLASHnocite] = ACTIONS(12189), + [anon_sym_BSLASHcitet] = ACTIONS(12189), + [anon_sym_BSLASHcitep] = ACTIONS(12189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteauthor] = ACTIONS(12189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitetitle] = ACTIONS(12189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteyear] = ACTIONS(12189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitedate] = ACTIONS(12189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteurl] = ACTIONS(12189), + [anon_sym_BSLASHfullcite] = ACTIONS(12189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12189), + [anon_sym_BSLASHcitealt] = ACTIONS(12189), + [anon_sym_BSLASHcitealp] = ACTIONS(12189), + [anon_sym_BSLASHcitetext] = ACTIONS(12189), + [anon_sym_BSLASHparencite] = ACTIONS(12189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHParencite] = ACTIONS(12189), + [anon_sym_BSLASHfootcite] = ACTIONS(12189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12189), + [anon_sym_BSLASHtextcite] = ACTIONS(12189), + [anon_sym_BSLASHTextcite] = ACTIONS(12189), + [anon_sym_BSLASHsmartcite] = ACTIONS(12189), + [anon_sym_BSLASHSmartcite] = ACTIONS(12189), + [anon_sym_BSLASHsupercite] = ACTIONS(12189), + [anon_sym_BSLASHautocite] = ACTIONS(12189), + [anon_sym_BSLASHAutocite] = ACTIONS(12189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHvolcite] = ACTIONS(12189), + [anon_sym_BSLASHVolcite] = ACTIONS(12189), + [anon_sym_BSLASHpvolcite] = ACTIONS(12189), + [anon_sym_BSLASHPvolcite] = ACTIONS(12189), + [anon_sym_BSLASHfvolcite] = ACTIONS(12189), + [anon_sym_BSLASHftvolcite] = ACTIONS(12189), + [anon_sym_BSLASHsvolcite] = ACTIONS(12189), + [anon_sym_BSLASHSvolcite] = ACTIONS(12189), + [anon_sym_BSLASHtvolcite] = ACTIONS(12189), + [anon_sym_BSLASHTvolcite] = ACTIONS(12189), + [anon_sym_BSLASHavolcite] = ACTIONS(12189), + [anon_sym_BSLASHAvolcite] = ACTIONS(12189), + [anon_sym_BSLASHnotecite] = ACTIONS(12189), + [anon_sym_BSLASHpnotecite] = ACTIONS(12189), + [anon_sym_BSLASHPnotecite] = ACTIONS(12189), + [anon_sym_BSLASHfnotecite] = ACTIONS(12189), + [anon_sym_BSLASHusepackage] = ACTIONS(12189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12189), + [anon_sym_BSLASHinclude] = ACTIONS(12189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12189), + [anon_sym_BSLASHinput] = ACTIONS(12189), + [anon_sym_BSLASHsubfile] = ACTIONS(12189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12189), + [anon_sym_BSLASHbibliography] = ACTIONS(12189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12189), + [anon_sym_BSLASHincludesvg] = ACTIONS(12189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12189), + [anon_sym_BSLASHimport] = ACTIONS(12189), + [anon_sym_BSLASHsubimport] = ACTIONS(12189), + [anon_sym_BSLASHinputfrom] = ACTIONS(12189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12189), + [anon_sym_BSLASHincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHlabel] = ACTIONS(12189), + [anon_sym_BSLASHref] = ACTIONS(12189), + [anon_sym_BSLASHvref] = ACTIONS(12189), + [anon_sym_BSLASHVref] = ACTIONS(12189), + [anon_sym_BSLASHautoref] = ACTIONS(12189), + [anon_sym_BSLASHpageref] = ACTIONS(12189), + [anon_sym_BSLASHcref] = ACTIONS(12189), + [anon_sym_BSLASHCref] = ACTIONS(12189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnameCref] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHlabelcref] = ACTIONS(12189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12189), + [anon_sym_BSLASHeqref] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange] = ACTIONS(12189), + [anon_sym_BSLASHCrefrange] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewlabel] = ACTIONS(12189), + [anon_sym_BSLASHnewcommand] = ACTIONS(12189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12189), + [anon_sym_BSLASHgls] = ACTIONS(12189), + [anon_sym_BSLASHGls] = ACTIONS(12189), + [anon_sym_BSLASHGLS] = ACTIONS(12189), + [anon_sym_BSLASHglspl] = ACTIONS(12189), + [anon_sym_BSLASHGlspl] = ACTIONS(12189), + [anon_sym_BSLASHGLSpl] = ACTIONS(12189), + [anon_sym_BSLASHglsdisp] = ACTIONS(12189), + [anon_sym_BSLASHglslink] = ACTIONS(12189), + [anon_sym_BSLASHglstext] = ACTIONS(12189), + [anon_sym_BSLASHGlstext] = ACTIONS(12189), + [anon_sym_BSLASHGLStext] = ACTIONS(12189), + [anon_sym_BSLASHglsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12189), + [anon_sym_BSLASHglsplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSplural] = ACTIONS(12189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHglsname] = ACTIONS(12189), + [anon_sym_BSLASHGlsname] = ACTIONS(12189), + [anon_sym_BSLASHGLSname] = ACTIONS(12189), + [anon_sym_BSLASHglssymbol] = ACTIONS(12189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12189), + [anon_sym_BSLASHglsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12189), + [anon_sym_BSLASHglsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12189), + [anon_sym_BSLASHglsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12189), + [anon_sym_BSLASHglsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12189), + [anon_sym_BSLASHglsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12189), + [anon_sym_BSLASHnewacronym] = ACTIONS(12189), + [anon_sym_BSLASHacrshort] = ACTIONS(12189), + [anon_sym_BSLASHAcrshort] = ACTIONS(12189), + [anon_sym_BSLASHACRshort] = ACTIONS(12189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12189), + [anon_sym_BSLASHacrlong] = ACTIONS(12189), + [anon_sym_BSLASHAcrlong] = ACTIONS(12189), + [anon_sym_BSLASHACRlong] = ACTIONS(12189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12189), + [anon_sym_BSLASHacrfull] = ACTIONS(12189), + [anon_sym_BSLASHAcrfull] = ACTIONS(12189), + [anon_sym_BSLASHACRfull] = ACTIONS(12189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12189), + [anon_sym_BSLASHacs] = ACTIONS(12189), + [anon_sym_BSLASHAcs] = ACTIONS(12189), + [anon_sym_BSLASHacsp] = ACTIONS(12189), + [anon_sym_BSLASHAcsp] = ACTIONS(12189), + [anon_sym_BSLASHacl] = ACTIONS(12189), + [anon_sym_BSLASHAcl] = ACTIONS(12189), + [anon_sym_BSLASHaclp] = ACTIONS(12189), + [anon_sym_BSLASHAclp] = ACTIONS(12189), + [anon_sym_BSLASHacf] = ACTIONS(12189), + [anon_sym_BSLASHAcf] = ACTIONS(12189), + [anon_sym_BSLASHacfp] = ACTIONS(12189), + [anon_sym_BSLASHAcfp] = ACTIONS(12189), + [anon_sym_BSLASHac] = ACTIONS(12189), + [anon_sym_BSLASHAc] = ACTIONS(12189), + [anon_sym_BSLASHacp] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12189), + [anon_sym_BSLASHcolor] = ACTIONS(12189), + [anon_sym_BSLASHcolorbox] = ACTIONS(12189), + [anon_sym_BSLASHtextcolor] = ACTIONS(12189), + [anon_sym_BSLASHpagecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12189), + }, + [1761] = { + [sym_generic_command_name] = ACTIONS(12116), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12116), + [anon_sym_LBRACK] = ACTIONS(12114), + [anon_sym_RBRACK] = ACTIONS(12114), + [anon_sym_LBRACE] = ACTIONS(12114), + [anon_sym_RBRACE] = ACTIONS(12114), + [anon_sym_LPAREN] = ACTIONS(12114), + [anon_sym_COMMA] = ACTIONS(12114), + [anon_sym_EQ] = ACTIONS(12114), + [sym_word] = ACTIONS(12114), + [sym_param] = ACTIONS(12114), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12114), + [anon_sym_DOLLAR] = ACTIONS(12116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12114), + [anon_sym_BSLASHbegin] = ACTIONS(12116), + [anon_sym_BSLASHcaption] = ACTIONS(12116), + [anon_sym_BSLASHcite] = ACTIONS(12116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCite] = ACTIONS(12116), + [anon_sym_BSLASHnocite] = ACTIONS(12116), + [anon_sym_BSLASHcitet] = ACTIONS(12116), + [anon_sym_BSLASHcitep] = ACTIONS(12116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteauthor] = ACTIONS(12116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitetitle] = ACTIONS(12116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteyear] = ACTIONS(12116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitedate] = ACTIONS(12116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteurl] = ACTIONS(12116), + [anon_sym_BSLASHfullcite] = ACTIONS(12116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12116), + [anon_sym_BSLASHcitealt] = ACTIONS(12116), + [anon_sym_BSLASHcitealp] = ACTIONS(12116), + [anon_sym_BSLASHcitetext] = ACTIONS(12116), + [anon_sym_BSLASHparencite] = ACTIONS(12116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHParencite] = ACTIONS(12116), + [anon_sym_BSLASHfootcite] = ACTIONS(12116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12116), + [anon_sym_BSLASHtextcite] = ACTIONS(12116), + [anon_sym_BSLASHTextcite] = ACTIONS(12116), + [anon_sym_BSLASHsmartcite] = ACTIONS(12116), + [anon_sym_BSLASHSmartcite] = ACTIONS(12116), + [anon_sym_BSLASHsupercite] = ACTIONS(12116), + [anon_sym_BSLASHautocite] = ACTIONS(12116), + [anon_sym_BSLASHAutocite] = ACTIONS(12116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHvolcite] = ACTIONS(12116), + [anon_sym_BSLASHVolcite] = ACTIONS(12116), + [anon_sym_BSLASHpvolcite] = ACTIONS(12116), + [anon_sym_BSLASHPvolcite] = ACTIONS(12116), + [anon_sym_BSLASHfvolcite] = ACTIONS(12116), + [anon_sym_BSLASHftvolcite] = ACTIONS(12116), + [anon_sym_BSLASHsvolcite] = ACTIONS(12116), + [anon_sym_BSLASHSvolcite] = ACTIONS(12116), + [anon_sym_BSLASHtvolcite] = ACTIONS(12116), + [anon_sym_BSLASHTvolcite] = ACTIONS(12116), + [anon_sym_BSLASHavolcite] = ACTIONS(12116), + [anon_sym_BSLASHAvolcite] = ACTIONS(12116), + [anon_sym_BSLASHnotecite] = ACTIONS(12116), + [anon_sym_BSLASHpnotecite] = ACTIONS(12116), + [anon_sym_BSLASHPnotecite] = ACTIONS(12116), + [anon_sym_BSLASHfnotecite] = ACTIONS(12116), + [anon_sym_BSLASHusepackage] = ACTIONS(12116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12116), + [anon_sym_BSLASHinclude] = ACTIONS(12116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12116), + [anon_sym_BSLASHinput] = ACTIONS(12116), + [anon_sym_BSLASHsubfile] = ACTIONS(12116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12116), + [anon_sym_BSLASHbibliography] = ACTIONS(12116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12116), + [anon_sym_BSLASHincludesvg] = ACTIONS(12116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12116), + [anon_sym_BSLASHimport] = ACTIONS(12116), + [anon_sym_BSLASHsubimport] = ACTIONS(12116), + [anon_sym_BSLASHinputfrom] = ACTIONS(12116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12116), + [anon_sym_BSLASHincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHlabel] = ACTIONS(12116), + [anon_sym_BSLASHref] = ACTIONS(12116), + [anon_sym_BSLASHvref] = ACTIONS(12116), + [anon_sym_BSLASHVref] = ACTIONS(12116), + [anon_sym_BSLASHautoref] = ACTIONS(12116), + [anon_sym_BSLASHpageref] = ACTIONS(12116), + [anon_sym_BSLASHcref] = ACTIONS(12116), + [anon_sym_BSLASHCref] = ACTIONS(12116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnameCref] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHlabelcref] = ACTIONS(12116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12116), + [anon_sym_BSLASHeqref] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange] = ACTIONS(12116), + [anon_sym_BSLASHCrefrange] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewlabel] = ACTIONS(12116), + [anon_sym_BSLASHnewcommand] = ACTIONS(12116), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12116), + [anon_sym_BSLASHgls] = ACTIONS(12116), + [anon_sym_BSLASHGls] = ACTIONS(12116), + [anon_sym_BSLASHGLS] = ACTIONS(12116), + [anon_sym_BSLASHglspl] = ACTIONS(12116), + [anon_sym_BSLASHGlspl] = ACTIONS(12116), + [anon_sym_BSLASHGLSpl] = ACTIONS(12116), + [anon_sym_BSLASHglsdisp] = ACTIONS(12116), + [anon_sym_BSLASHglslink] = ACTIONS(12116), + [anon_sym_BSLASHglstext] = ACTIONS(12116), + [anon_sym_BSLASHGlstext] = ACTIONS(12116), + [anon_sym_BSLASHGLStext] = ACTIONS(12116), + [anon_sym_BSLASHglsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12116), + [anon_sym_BSLASHglsplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSplural] = ACTIONS(12116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHglsname] = ACTIONS(12116), + [anon_sym_BSLASHGlsname] = ACTIONS(12116), + [anon_sym_BSLASHGLSname] = ACTIONS(12116), + [anon_sym_BSLASHglssymbol] = ACTIONS(12116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12116), + [anon_sym_BSLASHglsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12116), + [anon_sym_BSLASHglsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12116), + [anon_sym_BSLASHglsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12116), + [anon_sym_BSLASHglsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12116), + [anon_sym_BSLASHglsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12116), + [anon_sym_BSLASHnewacronym] = ACTIONS(12116), + [anon_sym_BSLASHacrshort] = ACTIONS(12116), + [anon_sym_BSLASHAcrshort] = ACTIONS(12116), + [anon_sym_BSLASHACRshort] = ACTIONS(12116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12116), + [anon_sym_BSLASHacrlong] = ACTIONS(12116), + [anon_sym_BSLASHAcrlong] = ACTIONS(12116), + [anon_sym_BSLASHACRlong] = ACTIONS(12116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12116), + [anon_sym_BSLASHacrfull] = ACTIONS(12116), + [anon_sym_BSLASHAcrfull] = ACTIONS(12116), + [anon_sym_BSLASHACRfull] = ACTIONS(12116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12116), + [anon_sym_BSLASHacs] = ACTIONS(12116), + [anon_sym_BSLASHAcs] = ACTIONS(12116), + [anon_sym_BSLASHacsp] = ACTIONS(12116), + [anon_sym_BSLASHAcsp] = ACTIONS(12116), + [anon_sym_BSLASHacl] = ACTIONS(12116), + [anon_sym_BSLASHAcl] = ACTIONS(12116), + [anon_sym_BSLASHaclp] = ACTIONS(12116), + [anon_sym_BSLASHAclp] = ACTIONS(12116), + [anon_sym_BSLASHacf] = ACTIONS(12116), + [anon_sym_BSLASHAcf] = ACTIONS(12116), + [anon_sym_BSLASHacfp] = ACTIONS(12116), + [anon_sym_BSLASHAcfp] = ACTIONS(12116), + [anon_sym_BSLASHac] = ACTIONS(12116), + [anon_sym_BSLASHAc] = ACTIONS(12116), + [anon_sym_BSLASHacp] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12116), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12116), + [anon_sym_BSLASHcolor] = ACTIONS(12116), + [anon_sym_BSLASHcolorbox] = ACTIONS(12116), + [anon_sym_BSLASHtextcolor] = ACTIONS(12116), + [anon_sym_BSLASHpagecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12116), + }, + [1762] = { + [sym_generic_command_name] = ACTIONS(12251), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12251), + [anon_sym_LBRACK] = ACTIONS(12249), + [anon_sym_RBRACK] = ACTIONS(12249), + [anon_sym_LBRACE] = ACTIONS(12249), + [anon_sym_RBRACE] = ACTIONS(12249), + [anon_sym_LPAREN] = ACTIONS(12249), + [anon_sym_COMMA] = ACTIONS(12249), + [anon_sym_EQ] = ACTIONS(12249), + [sym_word] = ACTIONS(12249), + [sym_param] = ACTIONS(12249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12249), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12249), + [anon_sym_DOLLAR] = ACTIONS(12251), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12249), + [anon_sym_BSLASHbegin] = ACTIONS(12251), + [anon_sym_BSLASHcaption] = ACTIONS(12251), + [anon_sym_BSLASHcite] = ACTIONS(12251), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCite] = ACTIONS(12251), + [anon_sym_BSLASHnocite] = ACTIONS(12251), + [anon_sym_BSLASHcitet] = ACTIONS(12251), + [anon_sym_BSLASHcitep] = ACTIONS(12251), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteauthor] = ACTIONS(12251), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12251), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitetitle] = ACTIONS(12251), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteyear] = ACTIONS(12251), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitedate] = ACTIONS(12251), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteurl] = ACTIONS(12251), + [anon_sym_BSLASHfullcite] = ACTIONS(12251), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12251), + [anon_sym_BSLASHcitealt] = ACTIONS(12251), + [anon_sym_BSLASHcitealp] = ACTIONS(12251), + [anon_sym_BSLASHcitetext] = ACTIONS(12251), + [anon_sym_BSLASHparencite] = ACTIONS(12251), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHParencite] = ACTIONS(12251), + [anon_sym_BSLASHfootcite] = ACTIONS(12251), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12251), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12251), + [anon_sym_BSLASHtextcite] = ACTIONS(12251), + [anon_sym_BSLASHTextcite] = ACTIONS(12251), + [anon_sym_BSLASHsmartcite] = ACTIONS(12251), + [anon_sym_BSLASHSmartcite] = ACTIONS(12251), + [anon_sym_BSLASHsupercite] = ACTIONS(12251), + [anon_sym_BSLASHautocite] = ACTIONS(12251), + [anon_sym_BSLASHAutocite] = ACTIONS(12251), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHvolcite] = ACTIONS(12251), + [anon_sym_BSLASHVolcite] = ACTIONS(12251), + [anon_sym_BSLASHpvolcite] = ACTIONS(12251), + [anon_sym_BSLASHPvolcite] = ACTIONS(12251), + [anon_sym_BSLASHfvolcite] = ACTIONS(12251), + [anon_sym_BSLASHftvolcite] = ACTIONS(12251), + [anon_sym_BSLASHsvolcite] = ACTIONS(12251), + [anon_sym_BSLASHSvolcite] = ACTIONS(12251), + [anon_sym_BSLASHtvolcite] = ACTIONS(12251), + [anon_sym_BSLASHTvolcite] = ACTIONS(12251), + [anon_sym_BSLASHavolcite] = ACTIONS(12251), + [anon_sym_BSLASHAvolcite] = ACTIONS(12251), + [anon_sym_BSLASHnotecite] = ACTIONS(12251), + [anon_sym_BSLASHpnotecite] = ACTIONS(12251), + [anon_sym_BSLASHPnotecite] = ACTIONS(12251), + [anon_sym_BSLASHfnotecite] = ACTIONS(12251), + [anon_sym_BSLASHusepackage] = ACTIONS(12251), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12251), + [anon_sym_BSLASHinclude] = ACTIONS(12251), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12251), + [anon_sym_BSLASHinput] = ACTIONS(12251), + [anon_sym_BSLASHsubfile] = ACTIONS(12251), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12251), + [anon_sym_BSLASHbibliography] = ACTIONS(12251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12251), + [anon_sym_BSLASHincludesvg] = ACTIONS(12251), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12251), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12251), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12251), + [anon_sym_BSLASHimport] = ACTIONS(12251), + [anon_sym_BSLASHsubimport] = ACTIONS(12251), + [anon_sym_BSLASHinputfrom] = ACTIONS(12251), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12251), + [anon_sym_BSLASHincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHlabel] = ACTIONS(12251), + [anon_sym_BSLASHref] = ACTIONS(12251), + [anon_sym_BSLASHvref] = ACTIONS(12251), + [anon_sym_BSLASHVref] = ACTIONS(12251), + [anon_sym_BSLASHautoref] = ACTIONS(12251), + [anon_sym_BSLASHpageref] = ACTIONS(12251), + [anon_sym_BSLASHcref] = ACTIONS(12251), + [anon_sym_BSLASHCref] = ACTIONS(12251), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnameCref] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHlabelcref] = ACTIONS(12251), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12251), + [anon_sym_BSLASHeqref] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange] = ACTIONS(12251), + [anon_sym_BSLASHCrefrange] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewlabel] = ACTIONS(12251), + [anon_sym_BSLASHnewcommand] = ACTIONS(12251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12251), + [anon_sym_BSLASHgls] = ACTIONS(12251), + [anon_sym_BSLASHGls] = ACTIONS(12251), + [anon_sym_BSLASHGLS] = ACTIONS(12251), + [anon_sym_BSLASHglspl] = ACTIONS(12251), + [anon_sym_BSLASHGlspl] = ACTIONS(12251), + [anon_sym_BSLASHGLSpl] = ACTIONS(12251), + [anon_sym_BSLASHglsdisp] = ACTIONS(12251), + [anon_sym_BSLASHglslink] = ACTIONS(12251), + [anon_sym_BSLASHglstext] = ACTIONS(12251), + [anon_sym_BSLASHGlstext] = ACTIONS(12251), + [anon_sym_BSLASHGLStext] = ACTIONS(12251), + [anon_sym_BSLASHglsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12251), + [anon_sym_BSLASHglsplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSplural] = ACTIONS(12251), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHglsname] = ACTIONS(12251), + [anon_sym_BSLASHGlsname] = ACTIONS(12251), + [anon_sym_BSLASHGLSname] = ACTIONS(12251), + [anon_sym_BSLASHglssymbol] = ACTIONS(12251), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12251), + [anon_sym_BSLASHglsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12251), + [anon_sym_BSLASHglsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12251), + [anon_sym_BSLASHglsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12251), + [anon_sym_BSLASHglsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12251), + [anon_sym_BSLASHglsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12251), + [anon_sym_BSLASHnewacronym] = ACTIONS(12251), + [anon_sym_BSLASHacrshort] = ACTIONS(12251), + [anon_sym_BSLASHAcrshort] = ACTIONS(12251), + [anon_sym_BSLASHACRshort] = ACTIONS(12251), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12251), + [anon_sym_BSLASHacrlong] = ACTIONS(12251), + [anon_sym_BSLASHAcrlong] = ACTIONS(12251), + [anon_sym_BSLASHACRlong] = ACTIONS(12251), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12251), + [anon_sym_BSLASHacrfull] = ACTIONS(12251), + [anon_sym_BSLASHAcrfull] = ACTIONS(12251), + [anon_sym_BSLASHACRfull] = ACTIONS(12251), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12251), + [anon_sym_BSLASHacs] = ACTIONS(12251), + [anon_sym_BSLASHAcs] = ACTIONS(12251), + [anon_sym_BSLASHacsp] = ACTIONS(12251), + [anon_sym_BSLASHAcsp] = ACTIONS(12251), + [anon_sym_BSLASHacl] = ACTIONS(12251), + [anon_sym_BSLASHAcl] = ACTIONS(12251), + [anon_sym_BSLASHaclp] = ACTIONS(12251), + [anon_sym_BSLASHAclp] = ACTIONS(12251), + [anon_sym_BSLASHacf] = ACTIONS(12251), + [anon_sym_BSLASHAcf] = ACTIONS(12251), + [anon_sym_BSLASHacfp] = ACTIONS(12251), + [anon_sym_BSLASHAcfp] = ACTIONS(12251), + [anon_sym_BSLASHac] = ACTIONS(12251), + [anon_sym_BSLASHAc] = ACTIONS(12251), + [anon_sym_BSLASHacp] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12251), + [anon_sym_BSLASHcolor] = ACTIONS(12251), + [anon_sym_BSLASHcolorbox] = ACTIONS(12251), + [anon_sym_BSLASHtextcolor] = ACTIONS(12251), + [anon_sym_BSLASHpagecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12251), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12251), + }, + [1763] = { + [sym_generic_command_name] = ACTIONS(12259), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12259), + [anon_sym_LBRACK] = ACTIONS(12257), + [anon_sym_RBRACK] = ACTIONS(12257), + [anon_sym_LBRACE] = ACTIONS(12257), + [anon_sym_RBRACE] = ACTIONS(12257), + [anon_sym_LPAREN] = ACTIONS(12257), + [anon_sym_COMMA] = ACTIONS(12257), + [anon_sym_EQ] = ACTIONS(12257), + [sym_word] = ACTIONS(12257), + [sym_param] = ACTIONS(12257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12257), + [anon_sym_DOLLAR] = ACTIONS(12259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12257), + [anon_sym_BSLASHbegin] = ACTIONS(12259), + [anon_sym_BSLASHcaption] = ACTIONS(12259), + [anon_sym_BSLASHcite] = ACTIONS(12259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCite] = ACTIONS(12259), + [anon_sym_BSLASHnocite] = ACTIONS(12259), + [anon_sym_BSLASHcitet] = ACTIONS(12259), + [anon_sym_BSLASHcitep] = ACTIONS(12259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteauthor] = ACTIONS(12259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitetitle] = ACTIONS(12259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteyear] = ACTIONS(12259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitedate] = ACTIONS(12259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteurl] = ACTIONS(12259), + [anon_sym_BSLASHfullcite] = ACTIONS(12259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12259), + [anon_sym_BSLASHcitealt] = ACTIONS(12259), + [anon_sym_BSLASHcitealp] = ACTIONS(12259), + [anon_sym_BSLASHcitetext] = ACTIONS(12259), + [anon_sym_BSLASHparencite] = ACTIONS(12259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHParencite] = ACTIONS(12259), + [anon_sym_BSLASHfootcite] = ACTIONS(12259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12259), + [anon_sym_BSLASHtextcite] = ACTIONS(12259), + [anon_sym_BSLASHTextcite] = ACTIONS(12259), + [anon_sym_BSLASHsmartcite] = ACTIONS(12259), + [anon_sym_BSLASHSmartcite] = ACTIONS(12259), + [anon_sym_BSLASHsupercite] = ACTIONS(12259), + [anon_sym_BSLASHautocite] = ACTIONS(12259), + [anon_sym_BSLASHAutocite] = ACTIONS(12259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHvolcite] = ACTIONS(12259), + [anon_sym_BSLASHVolcite] = ACTIONS(12259), + [anon_sym_BSLASHpvolcite] = ACTIONS(12259), + [anon_sym_BSLASHPvolcite] = ACTIONS(12259), + [anon_sym_BSLASHfvolcite] = ACTIONS(12259), + [anon_sym_BSLASHftvolcite] = ACTIONS(12259), + [anon_sym_BSLASHsvolcite] = ACTIONS(12259), + [anon_sym_BSLASHSvolcite] = ACTIONS(12259), + [anon_sym_BSLASHtvolcite] = ACTIONS(12259), + [anon_sym_BSLASHTvolcite] = ACTIONS(12259), + [anon_sym_BSLASHavolcite] = ACTIONS(12259), + [anon_sym_BSLASHAvolcite] = ACTIONS(12259), + [anon_sym_BSLASHnotecite] = ACTIONS(12259), + [anon_sym_BSLASHpnotecite] = ACTIONS(12259), + [anon_sym_BSLASHPnotecite] = ACTIONS(12259), + [anon_sym_BSLASHfnotecite] = ACTIONS(12259), + [anon_sym_BSLASHusepackage] = ACTIONS(12259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12259), + [anon_sym_BSLASHinclude] = ACTIONS(12259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12259), + [anon_sym_BSLASHinput] = ACTIONS(12259), + [anon_sym_BSLASHsubfile] = ACTIONS(12259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12259), + [anon_sym_BSLASHbibliography] = ACTIONS(12259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12259), + [anon_sym_BSLASHincludesvg] = ACTIONS(12259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12259), + [anon_sym_BSLASHimport] = ACTIONS(12259), + [anon_sym_BSLASHsubimport] = ACTIONS(12259), + [anon_sym_BSLASHinputfrom] = ACTIONS(12259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12259), + [anon_sym_BSLASHincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHlabel] = ACTIONS(12259), + [anon_sym_BSLASHref] = ACTIONS(12259), + [anon_sym_BSLASHvref] = ACTIONS(12259), + [anon_sym_BSLASHVref] = ACTIONS(12259), + [anon_sym_BSLASHautoref] = ACTIONS(12259), + [anon_sym_BSLASHpageref] = ACTIONS(12259), + [anon_sym_BSLASHcref] = ACTIONS(12259), + [anon_sym_BSLASHCref] = ACTIONS(12259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnameCref] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHlabelcref] = ACTIONS(12259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12259), + [anon_sym_BSLASHeqref] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange] = ACTIONS(12259), + [anon_sym_BSLASHCrefrange] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewlabel] = ACTIONS(12259), + [anon_sym_BSLASHnewcommand] = ACTIONS(12259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12259), + [anon_sym_BSLASHgls] = ACTIONS(12259), + [anon_sym_BSLASHGls] = ACTIONS(12259), + [anon_sym_BSLASHGLS] = ACTIONS(12259), + [anon_sym_BSLASHglspl] = ACTIONS(12259), + [anon_sym_BSLASHGlspl] = ACTIONS(12259), + [anon_sym_BSLASHGLSpl] = ACTIONS(12259), + [anon_sym_BSLASHglsdisp] = ACTIONS(12259), + [anon_sym_BSLASHglslink] = ACTIONS(12259), + [anon_sym_BSLASHglstext] = ACTIONS(12259), + [anon_sym_BSLASHGlstext] = ACTIONS(12259), + [anon_sym_BSLASHGLStext] = ACTIONS(12259), + [anon_sym_BSLASHglsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12259), + [anon_sym_BSLASHglsplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSplural] = ACTIONS(12259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHglsname] = ACTIONS(12259), + [anon_sym_BSLASHGlsname] = ACTIONS(12259), + [anon_sym_BSLASHGLSname] = ACTIONS(12259), + [anon_sym_BSLASHglssymbol] = ACTIONS(12259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12259), + [anon_sym_BSLASHglsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12259), + [anon_sym_BSLASHglsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12259), + [anon_sym_BSLASHglsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12259), + [anon_sym_BSLASHglsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12259), + [anon_sym_BSLASHglsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12259), + [anon_sym_BSLASHnewacronym] = ACTIONS(12259), + [anon_sym_BSLASHacrshort] = ACTIONS(12259), + [anon_sym_BSLASHAcrshort] = ACTIONS(12259), + [anon_sym_BSLASHACRshort] = ACTIONS(12259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12259), + [anon_sym_BSLASHacrlong] = ACTIONS(12259), + [anon_sym_BSLASHAcrlong] = ACTIONS(12259), + [anon_sym_BSLASHACRlong] = ACTIONS(12259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12259), + [anon_sym_BSLASHacrfull] = ACTIONS(12259), + [anon_sym_BSLASHAcrfull] = ACTIONS(12259), + [anon_sym_BSLASHACRfull] = ACTIONS(12259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12259), + [anon_sym_BSLASHacs] = ACTIONS(12259), + [anon_sym_BSLASHAcs] = ACTIONS(12259), + [anon_sym_BSLASHacsp] = ACTIONS(12259), + [anon_sym_BSLASHAcsp] = ACTIONS(12259), + [anon_sym_BSLASHacl] = ACTIONS(12259), + [anon_sym_BSLASHAcl] = ACTIONS(12259), + [anon_sym_BSLASHaclp] = ACTIONS(12259), + [anon_sym_BSLASHAclp] = ACTIONS(12259), + [anon_sym_BSLASHacf] = ACTIONS(12259), + [anon_sym_BSLASHAcf] = ACTIONS(12259), + [anon_sym_BSLASHacfp] = ACTIONS(12259), + [anon_sym_BSLASHAcfp] = ACTIONS(12259), + [anon_sym_BSLASHac] = ACTIONS(12259), + [anon_sym_BSLASHAc] = ACTIONS(12259), + [anon_sym_BSLASHacp] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12259), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12259), + [anon_sym_BSLASHcolor] = ACTIONS(12259), + [anon_sym_BSLASHcolorbox] = ACTIONS(12259), + [anon_sym_BSLASHtextcolor] = ACTIONS(12259), + [anon_sym_BSLASHpagecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12259), + }, + [1764] = { + [sym_brace_group] = STATE(3273), + [sym_generic_command_name] = ACTIONS(12028), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12026), + [anon_sym_RBRACK] = ACTIONS(12026), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12026), + [anon_sym_LPAREN] = ACTIONS(12026), + [anon_sym_COMMA] = ACTIONS(12026), + [anon_sym_EQ] = ACTIONS(12026), + [sym_word] = ACTIONS(12026), + [sym_param] = ACTIONS(12026), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12026), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12026), + [anon_sym_DOLLAR] = ACTIONS(12028), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12026), + [anon_sym_BSLASHbegin] = ACTIONS(12028), + [anon_sym_BSLASHcaption] = ACTIONS(12028), + [anon_sym_BSLASHcite] = ACTIONS(12028), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCite] = ACTIONS(12028), + [anon_sym_BSLASHnocite] = ACTIONS(12028), + [anon_sym_BSLASHcitet] = ACTIONS(12028), + [anon_sym_BSLASHcitep] = ACTIONS(12028), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteauthor] = ACTIONS(12028), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12028), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitetitle] = ACTIONS(12028), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteyear] = ACTIONS(12028), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12026), + [anon_sym_BSLASHcitedate] = ACTIONS(12028), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12026), + [anon_sym_BSLASHciteurl] = ACTIONS(12028), + [anon_sym_BSLASHfullcite] = ACTIONS(12028), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12028), + [anon_sym_BSLASHcitealt] = ACTIONS(12028), + [anon_sym_BSLASHcitealp] = ACTIONS(12028), + [anon_sym_BSLASHcitetext] = ACTIONS(12028), + [anon_sym_BSLASHparencite] = ACTIONS(12028), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHParencite] = ACTIONS(12028), + [anon_sym_BSLASHfootcite] = ACTIONS(12028), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12028), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12028), + [anon_sym_BSLASHtextcite] = ACTIONS(12028), + [anon_sym_BSLASHTextcite] = ACTIONS(12028), + [anon_sym_BSLASHsmartcite] = ACTIONS(12028), + [anon_sym_BSLASHSmartcite] = ACTIONS(12028), + [anon_sym_BSLASHsupercite] = ACTIONS(12028), + [anon_sym_BSLASHautocite] = ACTIONS(12028), + [anon_sym_BSLASHAutocite] = ACTIONS(12028), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12026), + [anon_sym_BSLASHvolcite] = ACTIONS(12028), + [anon_sym_BSLASHVolcite] = ACTIONS(12028), + [anon_sym_BSLASHpvolcite] = ACTIONS(12028), + [anon_sym_BSLASHPvolcite] = ACTIONS(12028), + [anon_sym_BSLASHfvolcite] = ACTIONS(12028), + [anon_sym_BSLASHftvolcite] = ACTIONS(12028), + [anon_sym_BSLASHsvolcite] = ACTIONS(12028), + [anon_sym_BSLASHSvolcite] = ACTIONS(12028), + [anon_sym_BSLASHtvolcite] = ACTIONS(12028), + [anon_sym_BSLASHTvolcite] = ACTIONS(12028), + [anon_sym_BSLASHavolcite] = ACTIONS(12028), + [anon_sym_BSLASHAvolcite] = ACTIONS(12028), + [anon_sym_BSLASHnotecite] = ACTIONS(12028), + [anon_sym_BSLASHpnotecite] = ACTIONS(12028), + [anon_sym_BSLASHPnotecite] = ACTIONS(12028), + [anon_sym_BSLASHfnotecite] = ACTIONS(12028), + [anon_sym_BSLASHusepackage] = ACTIONS(12028), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12028), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12028), + [anon_sym_BSLASHinclude] = ACTIONS(12028), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12028), + [anon_sym_BSLASHinput] = ACTIONS(12028), + [anon_sym_BSLASHsubfile] = ACTIONS(12028), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12028), + [anon_sym_BSLASHbibliography] = ACTIONS(12028), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12028), + [anon_sym_BSLASHincludesvg] = ACTIONS(12028), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12028), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12028), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12028), + [anon_sym_BSLASHimport] = ACTIONS(12028), + [anon_sym_BSLASHsubimport] = ACTIONS(12028), + [anon_sym_BSLASHinputfrom] = ACTIONS(12028), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12028), + [anon_sym_BSLASHincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12028), + [anon_sym_BSLASHlabel] = ACTIONS(12028), + [anon_sym_BSLASHref] = ACTIONS(12028), + [anon_sym_BSLASHvref] = ACTIONS(12028), + [anon_sym_BSLASHVref] = ACTIONS(12028), + [anon_sym_BSLASHautoref] = ACTIONS(12028), + [anon_sym_BSLASHpageref] = ACTIONS(12028), + [anon_sym_BSLASHcref] = ACTIONS(12028), + [anon_sym_BSLASHCref] = ACTIONS(12028), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnameCref] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12028), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12028), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12028), + [anon_sym_BSLASHlabelcref] = ACTIONS(12028), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12028), + [anon_sym_BSLASHeqref] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange] = ACTIONS(12028), + [anon_sym_BSLASHCrefrange] = ACTIONS(12028), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewlabel] = ACTIONS(12028), + [anon_sym_BSLASHnewcommand] = ACTIONS(12028), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12028), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12026), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12028), + [anon_sym_BSLASHgls] = ACTIONS(12028), + [anon_sym_BSLASHGls] = ACTIONS(12028), + [anon_sym_BSLASHGLS] = ACTIONS(12028), + [anon_sym_BSLASHglspl] = ACTIONS(12028), + [anon_sym_BSLASHGlspl] = ACTIONS(12028), + [anon_sym_BSLASHGLSpl] = ACTIONS(12028), + [anon_sym_BSLASHglsdisp] = ACTIONS(12028), + [anon_sym_BSLASHglslink] = ACTIONS(12028), + [anon_sym_BSLASHglstext] = ACTIONS(12028), + [anon_sym_BSLASHGlstext] = ACTIONS(12028), + [anon_sym_BSLASHGLStext] = ACTIONS(12028), + [anon_sym_BSLASHglsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12028), + [anon_sym_BSLASHglsplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSplural] = ACTIONS(12028), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12028), + [anon_sym_BSLASHglsname] = ACTIONS(12028), + [anon_sym_BSLASHGlsname] = ACTIONS(12028), + [anon_sym_BSLASHGLSname] = ACTIONS(12028), + [anon_sym_BSLASHglssymbol] = ACTIONS(12028), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12028), + [anon_sym_BSLASHglsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12028), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12028), + [anon_sym_BSLASHglsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12028), + [anon_sym_BSLASHglsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12028), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12028), + [anon_sym_BSLASHglsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12028), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12028), + [anon_sym_BSLASHglsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12028), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12028), + [anon_sym_BSLASHnewacronym] = ACTIONS(12028), + [anon_sym_BSLASHacrshort] = ACTIONS(12028), + [anon_sym_BSLASHAcrshort] = ACTIONS(12028), + [anon_sym_BSLASHACRshort] = ACTIONS(12028), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12028), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12028), + [anon_sym_BSLASHacrlong] = ACTIONS(12028), + [anon_sym_BSLASHAcrlong] = ACTIONS(12028), + [anon_sym_BSLASHACRlong] = ACTIONS(12028), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12028), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12028), + [anon_sym_BSLASHacrfull] = ACTIONS(12028), + [anon_sym_BSLASHAcrfull] = ACTIONS(12028), + [anon_sym_BSLASHACRfull] = ACTIONS(12028), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12028), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12028), + [anon_sym_BSLASHacs] = ACTIONS(12028), + [anon_sym_BSLASHAcs] = ACTIONS(12028), + [anon_sym_BSLASHacsp] = ACTIONS(12028), + [anon_sym_BSLASHAcsp] = ACTIONS(12028), + [anon_sym_BSLASHacl] = ACTIONS(12028), + [anon_sym_BSLASHAcl] = ACTIONS(12028), + [anon_sym_BSLASHaclp] = ACTIONS(12028), + [anon_sym_BSLASHAclp] = ACTIONS(12028), + [anon_sym_BSLASHacf] = ACTIONS(12028), + [anon_sym_BSLASHAcf] = ACTIONS(12028), + [anon_sym_BSLASHacfp] = ACTIONS(12028), + [anon_sym_BSLASHAcfp] = ACTIONS(12028), + [anon_sym_BSLASHac] = ACTIONS(12028), + [anon_sym_BSLASHAc] = ACTIONS(12028), + [anon_sym_BSLASHacp] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12028), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12028), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12028), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12028), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12028), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12028), + [anon_sym_BSLASHcolor] = ACTIONS(12028), + [anon_sym_BSLASHcolorbox] = ACTIONS(12028), + [anon_sym_BSLASHtextcolor] = ACTIONS(12028), + [anon_sym_BSLASHpagecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12028), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12028), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12028), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12028), + }, + [1765] = { + [sym_generic_command_name] = ACTIONS(12263), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12263), + [anon_sym_LBRACK] = ACTIONS(12261), + [anon_sym_RBRACK] = ACTIONS(12261), + [anon_sym_LBRACE] = ACTIONS(12261), + [anon_sym_RBRACE] = ACTIONS(12261), + [anon_sym_LPAREN] = ACTIONS(12261), + [anon_sym_COMMA] = ACTIONS(12261), + [anon_sym_EQ] = ACTIONS(12261), + [sym_word] = ACTIONS(12261), + [sym_param] = ACTIONS(12261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12261), + [anon_sym_DOLLAR] = ACTIONS(12263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12261), + [anon_sym_BSLASHbegin] = ACTIONS(12263), + [anon_sym_BSLASHcaption] = ACTIONS(12263), + [anon_sym_BSLASHcite] = ACTIONS(12263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCite] = ACTIONS(12263), + [anon_sym_BSLASHnocite] = ACTIONS(12263), + [anon_sym_BSLASHcitet] = ACTIONS(12263), + [anon_sym_BSLASHcitep] = ACTIONS(12263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteauthor] = ACTIONS(12263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitetitle] = ACTIONS(12263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteyear] = ACTIONS(12263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitedate] = ACTIONS(12263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteurl] = ACTIONS(12263), + [anon_sym_BSLASHfullcite] = ACTIONS(12263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12263), + [anon_sym_BSLASHcitealt] = ACTIONS(12263), + [anon_sym_BSLASHcitealp] = ACTIONS(12263), + [anon_sym_BSLASHcitetext] = ACTIONS(12263), + [anon_sym_BSLASHparencite] = ACTIONS(12263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHParencite] = ACTIONS(12263), + [anon_sym_BSLASHfootcite] = ACTIONS(12263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12263), + [anon_sym_BSLASHtextcite] = ACTIONS(12263), + [anon_sym_BSLASHTextcite] = ACTIONS(12263), + [anon_sym_BSLASHsmartcite] = ACTIONS(12263), + [anon_sym_BSLASHSmartcite] = ACTIONS(12263), + [anon_sym_BSLASHsupercite] = ACTIONS(12263), + [anon_sym_BSLASHautocite] = ACTIONS(12263), + [anon_sym_BSLASHAutocite] = ACTIONS(12263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHvolcite] = ACTIONS(12263), + [anon_sym_BSLASHVolcite] = ACTIONS(12263), + [anon_sym_BSLASHpvolcite] = ACTIONS(12263), + [anon_sym_BSLASHPvolcite] = ACTIONS(12263), + [anon_sym_BSLASHfvolcite] = ACTIONS(12263), + [anon_sym_BSLASHftvolcite] = ACTIONS(12263), + [anon_sym_BSLASHsvolcite] = ACTIONS(12263), + [anon_sym_BSLASHSvolcite] = ACTIONS(12263), + [anon_sym_BSLASHtvolcite] = ACTIONS(12263), + [anon_sym_BSLASHTvolcite] = ACTIONS(12263), + [anon_sym_BSLASHavolcite] = ACTIONS(12263), + [anon_sym_BSLASHAvolcite] = ACTIONS(12263), + [anon_sym_BSLASHnotecite] = ACTIONS(12263), + [anon_sym_BSLASHpnotecite] = ACTIONS(12263), + [anon_sym_BSLASHPnotecite] = ACTIONS(12263), + [anon_sym_BSLASHfnotecite] = ACTIONS(12263), + [anon_sym_BSLASHusepackage] = ACTIONS(12263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12263), + [anon_sym_BSLASHinclude] = ACTIONS(12263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12263), + [anon_sym_BSLASHinput] = ACTIONS(12263), + [anon_sym_BSLASHsubfile] = ACTIONS(12263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12263), + [anon_sym_BSLASHbibliography] = ACTIONS(12263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12263), + [anon_sym_BSLASHincludesvg] = ACTIONS(12263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12263), + [anon_sym_BSLASHimport] = ACTIONS(12263), + [anon_sym_BSLASHsubimport] = ACTIONS(12263), + [anon_sym_BSLASHinputfrom] = ACTIONS(12263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12263), + [anon_sym_BSLASHincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHlabel] = ACTIONS(12263), + [anon_sym_BSLASHref] = ACTIONS(12263), + [anon_sym_BSLASHvref] = ACTIONS(12263), + [anon_sym_BSLASHVref] = ACTIONS(12263), + [anon_sym_BSLASHautoref] = ACTIONS(12263), + [anon_sym_BSLASHpageref] = ACTIONS(12263), + [anon_sym_BSLASHcref] = ACTIONS(12263), + [anon_sym_BSLASHCref] = ACTIONS(12263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnameCref] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHlabelcref] = ACTIONS(12263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12263), + [anon_sym_BSLASHeqref] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange] = ACTIONS(12263), + [anon_sym_BSLASHCrefrange] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewlabel] = ACTIONS(12263), + [anon_sym_BSLASHnewcommand] = ACTIONS(12263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12263), + [anon_sym_BSLASHgls] = ACTIONS(12263), + [anon_sym_BSLASHGls] = ACTIONS(12263), + [anon_sym_BSLASHGLS] = ACTIONS(12263), + [anon_sym_BSLASHglspl] = ACTIONS(12263), + [anon_sym_BSLASHGlspl] = ACTIONS(12263), + [anon_sym_BSLASHGLSpl] = ACTIONS(12263), + [anon_sym_BSLASHglsdisp] = ACTIONS(12263), + [anon_sym_BSLASHglslink] = ACTIONS(12263), + [anon_sym_BSLASHglstext] = ACTIONS(12263), + [anon_sym_BSLASHGlstext] = ACTIONS(12263), + [anon_sym_BSLASHGLStext] = ACTIONS(12263), + [anon_sym_BSLASHglsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12263), + [anon_sym_BSLASHglsplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSplural] = ACTIONS(12263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHglsname] = ACTIONS(12263), + [anon_sym_BSLASHGlsname] = ACTIONS(12263), + [anon_sym_BSLASHGLSname] = ACTIONS(12263), + [anon_sym_BSLASHglssymbol] = ACTIONS(12263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12263), + [anon_sym_BSLASHglsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12263), + [anon_sym_BSLASHglsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12263), + [anon_sym_BSLASHglsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12263), + [anon_sym_BSLASHglsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12263), + [anon_sym_BSLASHglsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12263), + [anon_sym_BSLASHnewacronym] = ACTIONS(12263), + [anon_sym_BSLASHacrshort] = ACTIONS(12263), + [anon_sym_BSLASHAcrshort] = ACTIONS(12263), + [anon_sym_BSLASHACRshort] = ACTIONS(12263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12263), + [anon_sym_BSLASHacrlong] = ACTIONS(12263), + [anon_sym_BSLASHAcrlong] = ACTIONS(12263), + [anon_sym_BSLASHACRlong] = ACTIONS(12263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12263), + [anon_sym_BSLASHacrfull] = ACTIONS(12263), + [anon_sym_BSLASHAcrfull] = ACTIONS(12263), + [anon_sym_BSLASHACRfull] = ACTIONS(12263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12263), + [anon_sym_BSLASHacs] = ACTIONS(12263), + [anon_sym_BSLASHAcs] = ACTIONS(12263), + [anon_sym_BSLASHacsp] = ACTIONS(12263), + [anon_sym_BSLASHAcsp] = ACTIONS(12263), + [anon_sym_BSLASHacl] = ACTIONS(12263), + [anon_sym_BSLASHAcl] = ACTIONS(12263), + [anon_sym_BSLASHaclp] = ACTIONS(12263), + [anon_sym_BSLASHAclp] = ACTIONS(12263), + [anon_sym_BSLASHacf] = ACTIONS(12263), + [anon_sym_BSLASHAcf] = ACTIONS(12263), + [anon_sym_BSLASHacfp] = ACTIONS(12263), + [anon_sym_BSLASHAcfp] = ACTIONS(12263), + [anon_sym_BSLASHac] = ACTIONS(12263), + [anon_sym_BSLASHAc] = ACTIONS(12263), + [anon_sym_BSLASHacp] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12263), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12263), + [anon_sym_BSLASHcolor] = ACTIONS(12263), + [anon_sym_BSLASHcolorbox] = ACTIONS(12263), + [anon_sym_BSLASHtextcolor] = ACTIONS(12263), + [anon_sym_BSLASHpagecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12263), + }, + [1766] = { + [sym_generic_command_name] = ACTIONS(12319), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12319), + [anon_sym_LBRACK] = ACTIONS(12317), + [anon_sym_RBRACK] = ACTIONS(12317), + [anon_sym_LBRACE] = ACTIONS(12317), + [anon_sym_RBRACE] = ACTIONS(12317), + [anon_sym_LPAREN] = ACTIONS(12317), + [anon_sym_COMMA] = ACTIONS(12317), + [anon_sym_EQ] = ACTIONS(12317), + [sym_word] = ACTIONS(12317), + [sym_param] = ACTIONS(12317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12317), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12317), + [anon_sym_DOLLAR] = ACTIONS(12319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12317), + [anon_sym_BSLASHbegin] = ACTIONS(12319), + [anon_sym_BSLASHcaption] = ACTIONS(12319), + [anon_sym_BSLASHcite] = ACTIONS(12319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCite] = ACTIONS(12319), + [anon_sym_BSLASHnocite] = ACTIONS(12319), + [anon_sym_BSLASHcitet] = ACTIONS(12319), + [anon_sym_BSLASHcitep] = ACTIONS(12319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteauthor] = ACTIONS(12319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitetitle] = ACTIONS(12319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteyear] = ACTIONS(12319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitedate] = ACTIONS(12319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteurl] = ACTIONS(12319), + [anon_sym_BSLASHfullcite] = ACTIONS(12319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12319), + [anon_sym_BSLASHcitealt] = ACTIONS(12319), + [anon_sym_BSLASHcitealp] = ACTIONS(12319), + [anon_sym_BSLASHcitetext] = ACTIONS(12319), + [anon_sym_BSLASHparencite] = ACTIONS(12319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHParencite] = ACTIONS(12319), + [anon_sym_BSLASHfootcite] = ACTIONS(12319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12319), + [anon_sym_BSLASHtextcite] = ACTIONS(12319), + [anon_sym_BSLASHTextcite] = ACTIONS(12319), + [anon_sym_BSLASHsmartcite] = ACTIONS(12319), + [anon_sym_BSLASHSmartcite] = ACTIONS(12319), + [anon_sym_BSLASHsupercite] = ACTIONS(12319), + [anon_sym_BSLASHautocite] = ACTIONS(12319), + [anon_sym_BSLASHAutocite] = ACTIONS(12319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHvolcite] = ACTIONS(12319), + [anon_sym_BSLASHVolcite] = ACTIONS(12319), + [anon_sym_BSLASHpvolcite] = ACTIONS(12319), + [anon_sym_BSLASHPvolcite] = ACTIONS(12319), + [anon_sym_BSLASHfvolcite] = ACTIONS(12319), + [anon_sym_BSLASHftvolcite] = ACTIONS(12319), + [anon_sym_BSLASHsvolcite] = ACTIONS(12319), + [anon_sym_BSLASHSvolcite] = ACTIONS(12319), + [anon_sym_BSLASHtvolcite] = ACTIONS(12319), + [anon_sym_BSLASHTvolcite] = ACTIONS(12319), + [anon_sym_BSLASHavolcite] = ACTIONS(12319), + [anon_sym_BSLASHAvolcite] = ACTIONS(12319), + [anon_sym_BSLASHnotecite] = ACTIONS(12319), + [anon_sym_BSLASHpnotecite] = ACTIONS(12319), + [anon_sym_BSLASHPnotecite] = ACTIONS(12319), + [anon_sym_BSLASHfnotecite] = ACTIONS(12319), + [anon_sym_BSLASHusepackage] = ACTIONS(12319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12319), + [anon_sym_BSLASHinclude] = ACTIONS(12319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12319), + [anon_sym_BSLASHinput] = ACTIONS(12319), + [anon_sym_BSLASHsubfile] = ACTIONS(12319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12319), + [anon_sym_BSLASHbibliography] = ACTIONS(12319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12319), + [anon_sym_BSLASHincludesvg] = ACTIONS(12319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12319), + [anon_sym_BSLASHimport] = ACTIONS(12319), + [anon_sym_BSLASHsubimport] = ACTIONS(12319), + [anon_sym_BSLASHinputfrom] = ACTIONS(12319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12319), + [anon_sym_BSLASHincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHlabel] = ACTIONS(12319), + [anon_sym_BSLASHref] = ACTIONS(12319), + [anon_sym_BSLASHvref] = ACTIONS(12319), + [anon_sym_BSLASHVref] = ACTIONS(12319), + [anon_sym_BSLASHautoref] = ACTIONS(12319), + [anon_sym_BSLASHpageref] = ACTIONS(12319), + [anon_sym_BSLASHcref] = ACTIONS(12319), + [anon_sym_BSLASHCref] = ACTIONS(12319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnameCref] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHlabelcref] = ACTIONS(12319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12319), + [anon_sym_BSLASHeqref] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange] = ACTIONS(12319), + [anon_sym_BSLASHCrefrange] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewlabel] = ACTIONS(12319), + [anon_sym_BSLASHnewcommand] = ACTIONS(12319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12319), + [anon_sym_BSLASHgls] = ACTIONS(12319), + [anon_sym_BSLASHGls] = ACTIONS(12319), + [anon_sym_BSLASHGLS] = ACTIONS(12319), + [anon_sym_BSLASHglspl] = ACTIONS(12319), + [anon_sym_BSLASHGlspl] = ACTIONS(12319), + [anon_sym_BSLASHGLSpl] = ACTIONS(12319), + [anon_sym_BSLASHglsdisp] = ACTIONS(12319), + [anon_sym_BSLASHglslink] = ACTIONS(12319), + [anon_sym_BSLASHglstext] = ACTIONS(12319), + [anon_sym_BSLASHGlstext] = ACTIONS(12319), + [anon_sym_BSLASHGLStext] = ACTIONS(12319), + [anon_sym_BSLASHglsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12319), + [anon_sym_BSLASHglsplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSplural] = ACTIONS(12319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHglsname] = ACTIONS(12319), + [anon_sym_BSLASHGlsname] = ACTIONS(12319), + [anon_sym_BSLASHGLSname] = ACTIONS(12319), + [anon_sym_BSLASHglssymbol] = ACTIONS(12319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12319), + [anon_sym_BSLASHglsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12319), + [anon_sym_BSLASHglsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12319), + [anon_sym_BSLASHglsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12319), + [anon_sym_BSLASHglsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12319), + [anon_sym_BSLASHglsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12319), + [anon_sym_BSLASHnewacronym] = ACTIONS(12319), + [anon_sym_BSLASHacrshort] = ACTIONS(12319), + [anon_sym_BSLASHAcrshort] = ACTIONS(12319), + [anon_sym_BSLASHACRshort] = ACTIONS(12319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12319), + [anon_sym_BSLASHacrlong] = ACTIONS(12319), + [anon_sym_BSLASHAcrlong] = ACTIONS(12319), + [anon_sym_BSLASHACRlong] = ACTIONS(12319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12319), + [anon_sym_BSLASHacrfull] = ACTIONS(12319), + [anon_sym_BSLASHAcrfull] = ACTIONS(12319), + [anon_sym_BSLASHACRfull] = ACTIONS(12319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12319), + [anon_sym_BSLASHacs] = ACTIONS(12319), + [anon_sym_BSLASHAcs] = ACTIONS(12319), + [anon_sym_BSLASHacsp] = ACTIONS(12319), + [anon_sym_BSLASHAcsp] = ACTIONS(12319), + [anon_sym_BSLASHacl] = ACTIONS(12319), + [anon_sym_BSLASHAcl] = ACTIONS(12319), + [anon_sym_BSLASHaclp] = ACTIONS(12319), + [anon_sym_BSLASHAclp] = ACTIONS(12319), + [anon_sym_BSLASHacf] = ACTIONS(12319), + [anon_sym_BSLASHAcf] = ACTIONS(12319), + [anon_sym_BSLASHacfp] = ACTIONS(12319), + [anon_sym_BSLASHAcfp] = ACTIONS(12319), + [anon_sym_BSLASHac] = ACTIONS(12319), + [anon_sym_BSLASHAc] = ACTIONS(12319), + [anon_sym_BSLASHacp] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12319), + [anon_sym_BSLASHcolor] = ACTIONS(12319), + [anon_sym_BSLASHcolorbox] = ACTIONS(12319), + [anon_sym_BSLASHtextcolor] = ACTIONS(12319), + [anon_sym_BSLASHpagecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12319), + }, + [1767] = { + [sym_generic_command_name] = ACTIONS(12267), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12267), + [anon_sym_LBRACK] = ACTIONS(12265), + [anon_sym_RBRACK] = ACTIONS(12265), + [anon_sym_LBRACE] = ACTIONS(12265), + [anon_sym_RBRACE] = ACTIONS(12265), + [anon_sym_LPAREN] = ACTIONS(12265), + [anon_sym_COMMA] = ACTIONS(12265), + [anon_sym_EQ] = ACTIONS(12265), + [sym_word] = ACTIONS(12265), + [sym_param] = ACTIONS(12265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12265), + [anon_sym_DOLLAR] = ACTIONS(12267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12265), + [anon_sym_BSLASHbegin] = ACTIONS(12267), + [anon_sym_BSLASHcaption] = ACTIONS(12267), + [anon_sym_BSLASHcite] = ACTIONS(12267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCite] = ACTIONS(12267), + [anon_sym_BSLASHnocite] = ACTIONS(12267), + [anon_sym_BSLASHcitet] = ACTIONS(12267), + [anon_sym_BSLASHcitep] = ACTIONS(12267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteauthor] = ACTIONS(12267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitetitle] = ACTIONS(12267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteyear] = ACTIONS(12267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitedate] = ACTIONS(12267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteurl] = ACTIONS(12267), + [anon_sym_BSLASHfullcite] = ACTIONS(12267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12267), + [anon_sym_BSLASHcitealt] = ACTIONS(12267), + [anon_sym_BSLASHcitealp] = ACTIONS(12267), + [anon_sym_BSLASHcitetext] = ACTIONS(12267), + [anon_sym_BSLASHparencite] = ACTIONS(12267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHParencite] = ACTIONS(12267), + [anon_sym_BSLASHfootcite] = ACTIONS(12267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12267), + [anon_sym_BSLASHtextcite] = ACTIONS(12267), + [anon_sym_BSLASHTextcite] = ACTIONS(12267), + [anon_sym_BSLASHsmartcite] = ACTIONS(12267), + [anon_sym_BSLASHSmartcite] = ACTIONS(12267), + [anon_sym_BSLASHsupercite] = ACTIONS(12267), + [anon_sym_BSLASHautocite] = ACTIONS(12267), + [anon_sym_BSLASHAutocite] = ACTIONS(12267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHvolcite] = ACTIONS(12267), + [anon_sym_BSLASHVolcite] = ACTIONS(12267), + [anon_sym_BSLASHpvolcite] = ACTIONS(12267), + [anon_sym_BSLASHPvolcite] = ACTIONS(12267), + [anon_sym_BSLASHfvolcite] = ACTIONS(12267), + [anon_sym_BSLASHftvolcite] = ACTIONS(12267), + [anon_sym_BSLASHsvolcite] = ACTIONS(12267), + [anon_sym_BSLASHSvolcite] = ACTIONS(12267), + [anon_sym_BSLASHtvolcite] = ACTIONS(12267), + [anon_sym_BSLASHTvolcite] = ACTIONS(12267), + [anon_sym_BSLASHavolcite] = ACTIONS(12267), + [anon_sym_BSLASHAvolcite] = ACTIONS(12267), + [anon_sym_BSLASHnotecite] = ACTIONS(12267), + [anon_sym_BSLASHpnotecite] = ACTIONS(12267), + [anon_sym_BSLASHPnotecite] = ACTIONS(12267), + [anon_sym_BSLASHfnotecite] = ACTIONS(12267), + [anon_sym_BSLASHusepackage] = ACTIONS(12267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12267), + [anon_sym_BSLASHinclude] = ACTIONS(12267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12267), + [anon_sym_BSLASHinput] = ACTIONS(12267), + [anon_sym_BSLASHsubfile] = ACTIONS(12267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12267), + [anon_sym_BSLASHbibliography] = ACTIONS(12267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12267), + [anon_sym_BSLASHincludesvg] = ACTIONS(12267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12267), + [anon_sym_BSLASHimport] = ACTIONS(12267), + [anon_sym_BSLASHsubimport] = ACTIONS(12267), + [anon_sym_BSLASHinputfrom] = ACTIONS(12267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12267), + [anon_sym_BSLASHincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHlabel] = ACTIONS(12267), + [anon_sym_BSLASHref] = ACTIONS(12267), + [anon_sym_BSLASHvref] = ACTIONS(12267), + [anon_sym_BSLASHVref] = ACTIONS(12267), + [anon_sym_BSLASHautoref] = ACTIONS(12267), + [anon_sym_BSLASHpageref] = ACTIONS(12267), + [anon_sym_BSLASHcref] = ACTIONS(12267), + [anon_sym_BSLASHCref] = ACTIONS(12267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnameCref] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHlabelcref] = ACTIONS(12267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12267), + [anon_sym_BSLASHeqref] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange] = ACTIONS(12267), + [anon_sym_BSLASHCrefrange] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewlabel] = ACTIONS(12267), + [anon_sym_BSLASHnewcommand] = ACTIONS(12267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12267), + [anon_sym_BSLASHgls] = ACTIONS(12267), + [anon_sym_BSLASHGls] = ACTIONS(12267), + [anon_sym_BSLASHGLS] = ACTIONS(12267), + [anon_sym_BSLASHglspl] = ACTIONS(12267), + [anon_sym_BSLASHGlspl] = ACTIONS(12267), + [anon_sym_BSLASHGLSpl] = ACTIONS(12267), + [anon_sym_BSLASHglsdisp] = ACTIONS(12267), + [anon_sym_BSLASHglslink] = ACTIONS(12267), + [anon_sym_BSLASHglstext] = ACTIONS(12267), + [anon_sym_BSLASHGlstext] = ACTIONS(12267), + [anon_sym_BSLASHGLStext] = ACTIONS(12267), + [anon_sym_BSLASHglsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12267), + [anon_sym_BSLASHglsplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSplural] = ACTIONS(12267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHglsname] = ACTIONS(12267), + [anon_sym_BSLASHGlsname] = ACTIONS(12267), + [anon_sym_BSLASHGLSname] = ACTIONS(12267), + [anon_sym_BSLASHglssymbol] = ACTIONS(12267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12267), + [anon_sym_BSLASHglsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12267), + [anon_sym_BSLASHglsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12267), + [anon_sym_BSLASHglsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12267), + [anon_sym_BSLASHglsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12267), + [anon_sym_BSLASHglsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12267), + [anon_sym_BSLASHnewacronym] = ACTIONS(12267), + [anon_sym_BSLASHacrshort] = ACTIONS(12267), + [anon_sym_BSLASHAcrshort] = ACTIONS(12267), + [anon_sym_BSLASHACRshort] = ACTIONS(12267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12267), + [anon_sym_BSLASHacrlong] = ACTIONS(12267), + [anon_sym_BSLASHAcrlong] = ACTIONS(12267), + [anon_sym_BSLASHACRlong] = ACTIONS(12267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12267), + [anon_sym_BSLASHacrfull] = ACTIONS(12267), + [anon_sym_BSLASHAcrfull] = ACTIONS(12267), + [anon_sym_BSLASHACRfull] = ACTIONS(12267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12267), + [anon_sym_BSLASHacs] = ACTIONS(12267), + [anon_sym_BSLASHAcs] = ACTIONS(12267), + [anon_sym_BSLASHacsp] = ACTIONS(12267), + [anon_sym_BSLASHAcsp] = ACTIONS(12267), + [anon_sym_BSLASHacl] = ACTIONS(12267), + [anon_sym_BSLASHAcl] = ACTIONS(12267), + [anon_sym_BSLASHaclp] = ACTIONS(12267), + [anon_sym_BSLASHAclp] = ACTIONS(12267), + [anon_sym_BSLASHacf] = ACTIONS(12267), + [anon_sym_BSLASHAcf] = ACTIONS(12267), + [anon_sym_BSLASHacfp] = ACTIONS(12267), + [anon_sym_BSLASHAcfp] = ACTIONS(12267), + [anon_sym_BSLASHac] = ACTIONS(12267), + [anon_sym_BSLASHAc] = ACTIONS(12267), + [anon_sym_BSLASHacp] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12267), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12267), + [anon_sym_BSLASHcolor] = ACTIONS(12267), + [anon_sym_BSLASHcolorbox] = ACTIONS(12267), + [anon_sym_BSLASHtextcolor] = ACTIONS(12267), + [anon_sym_BSLASHpagecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12267), + }, + [1768] = { + [sym_generic_command_name] = ACTIONS(12271), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12271), + [anon_sym_LBRACK] = ACTIONS(12269), + [anon_sym_RBRACK] = ACTIONS(12269), + [anon_sym_LBRACE] = ACTIONS(12269), + [anon_sym_RBRACE] = ACTIONS(12269), + [anon_sym_LPAREN] = ACTIONS(12269), + [anon_sym_COMMA] = ACTIONS(12269), + [anon_sym_EQ] = ACTIONS(12269), + [sym_word] = ACTIONS(12269), + [sym_param] = ACTIONS(12269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12269), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12269), + [anon_sym_DOLLAR] = ACTIONS(12271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12269), + [anon_sym_BSLASHbegin] = ACTIONS(12271), + [anon_sym_BSLASHcaption] = ACTIONS(12271), + [anon_sym_BSLASHcite] = ACTIONS(12271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCite] = ACTIONS(12271), + [anon_sym_BSLASHnocite] = ACTIONS(12271), + [anon_sym_BSLASHcitet] = ACTIONS(12271), + [anon_sym_BSLASHcitep] = ACTIONS(12271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteauthor] = ACTIONS(12271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitetitle] = ACTIONS(12271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteyear] = ACTIONS(12271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitedate] = ACTIONS(12271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteurl] = ACTIONS(12271), + [anon_sym_BSLASHfullcite] = ACTIONS(12271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12271), + [anon_sym_BSLASHcitealt] = ACTIONS(12271), + [anon_sym_BSLASHcitealp] = ACTIONS(12271), + [anon_sym_BSLASHcitetext] = ACTIONS(12271), + [anon_sym_BSLASHparencite] = ACTIONS(12271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHParencite] = ACTIONS(12271), + [anon_sym_BSLASHfootcite] = ACTIONS(12271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12271), + [anon_sym_BSLASHtextcite] = ACTIONS(12271), + [anon_sym_BSLASHTextcite] = ACTIONS(12271), + [anon_sym_BSLASHsmartcite] = ACTIONS(12271), + [anon_sym_BSLASHSmartcite] = ACTIONS(12271), + [anon_sym_BSLASHsupercite] = ACTIONS(12271), + [anon_sym_BSLASHautocite] = ACTIONS(12271), + [anon_sym_BSLASHAutocite] = ACTIONS(12271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHvolcite] = ACTIONS(12271), + [anon_sym_BSLASHVolcite] = ACTIONS(12271), + [anon_sym_BSLASHpvolcite] = ACTIONS(12271), + [anon_sym_BSLASHPvolcite] = ACTIONS(12271), + [anon_sym_BSLASHfvolcite] = ACTIONS(12271), + [anon_sym_BSLASHftvolcite] = ACTIONS(12271), + [anon_sym_BSLASHsvolcite] = ACTIONS(12271), + [anon_sym_BSLASHSvolcite] = ACTIONS(12271), + [anon_sym_BSLASHtvolcite] = ACTIONS(12271), + [anon_sym_BSLASHTvolcite] = ACTIONS(12271), + [anon_sym_BSLASHavolcite] = ACTIONS(12271), + [anon_sym_BSLASHAvolcite] = ACTIONS(12271), + [anon_sym_BSLASHnotecite] = ACTIONS(12271), + [anon_sym_BSLASHpnotecite] = ACTIONS(12271), + [anon_sym_BSLASHPnotecite] = ACTIONS(12271), + [anon_sym_BSLASHfnotecite] = ACTIONS(12271), + [anon_sym_BSLASHusepackage] = ACTIONS(12271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12271), + [anon_sym_BSLASHinclude] = ACTIONS(12271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12271), + [anon_sym_BSLASHinput] = ACTIONS(12271), + [anon_sym_BSLASHsubfile] = ACTIONS(12271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12271), + [anon_sym_BSLASHbibliography] = ACTIONS(12271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12271), + [anon_sym_BSLASHincludesvg] = ACTIONS(12271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12271), + [anon_sym_BSLASHimport] = ACTIONS(12271), + [anon_sym_BSLASHsubimport] = ACTIONS(12271), + [anon_sym_BSLASHinputfrom] = ACTIONS(12271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12271), + [anon_sym_BSLASHincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHlabel] = ACTIONS(12271), + [anon_sym_BSLASHref] = ACTIONS(12271), + [anon_sym_BSLASHvref] = ACTIONS(12271), + [anon_sym_BSLASHVref] = ACTIONS(12271), + [anon_sym_BSLASHautoref] = ACTIONS(12271), + [anon_sym_BSLASHpageref] = ACTIONS(12271), + [anon_sym_BSLASHcref] = ACTIONS(12271), + [anon_sym_BSLASHCref] = ACTIONS(12271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnameCref] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHlabelcref] = ACTIONS(12271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12271), + [anon_sym_BSLASHeqref] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange] = ACTIONS(12271), + [anon_sym_BSLASHCrefrange] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewlabel] = ACTIONS(12271), + [anon_sym_BSLASHnewcommand] = ACTIONS(12271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12271), + [anon_sym_BSLASHgls] = ACTIONS(12271), + [anon_sym_BSLASHGls] = ACTIONS(12271), + [anon_sym_BSLASHGLS] = ACTIONS(12271), + [anon_sym_BSLASHglspl] = ACTIONS(12271), + [anon_sym_BSLASHGlspl] = ACTIONS(12271), + [anon_sym_BSLASHGLSpl] = ACTIONS(12271), + [anon_sym_BSLASHglsdisp] = ACTIONS(12271), + [anon_sym_BSLASHglslink] = ACTIONS(12271), + [anon_sym_BSLASHglstext] = ACTIONS(12271), + [anon_sym_BSLASHGlstext] = ACTIONS(12271), + [anon_sym_BSLASHGLStext] = ACTIONS(12271), + [anon_sym_BSLASHglsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12271), + [anon_sym_BSLASHglsplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSplural] = ACTIONS(12271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHglsname] = ACTIONS(12271), + [anon_sym_BSLASHGlsname] = ACTIONS(12271), + [anon_sym_BSLASHGLSname] = ACTIONS(12271), + [anon_sym_BSLASHglssymbol] = ACTIONS(12271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12271), + [anon_sym_BSLASHglsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12271), + [anon_sym_BSLASHglsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12271), + [anon_sym_BSLASHglsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12271), + [anon_sym_BSLASHglsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12271), + [anon_sym_BSLASHglsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12271), + [anon_sym_BSLASHnewacronym] = ACTIONS(12271), + [anon_sym_BSLASHacrshort] = ACTIONS(12271), + [anon_sym_BSLASHAcrshort] = ACTIONS(12271), + [anon_sym_BSLASHACRshort] = ACTIONS(12271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12271), + [anon_sym_BSLASHacrlong] = ACTIONS(12271), + [anon_sym_BSLASHAcrlong] = ACTIONS(12271), + [anon_sym_BSLASHACRlong] = ACTIONS(12271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12271), + [anon_sym_BSLASHacrfull] = ACTIONS(12271), + [anon_sym_BSLASHAcrfull] = ACTIONS(12271), + [anon_sym_BSLASHACRfull] = ACTIONS(12271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12271), + [anon_sym_BSLASHacs] = ACTIONS(12271), + [anon_sym_BSLASHAcs] = ACTIONS(12271), + [anon_sym_BSLASHacsp] = ACTIONS(12271), + [anon_sym_BSLASHAcsp] = ACTIONS(12271), + [anon_sym_BSLASHacl] = ACTIONS(12271), + [anon_sym_BSLASHAcl] = ACTIONS(12271), + [anon_sym_BSLASHaclp] = ACTIONS(12271), + [anon_sym_BSLASHAclp] = ACTIONS(12271), + [anon_sym_BSLASHacf] = ACTIONS(12271), + [anon_sym_BSLASHAcf] = ACTIONS(12271), + [anon_sym_BSLASHacfp] = ACTIONS(12271), + [anon_sym_BSLASHAcfp] = ACTIONS(12271), + [anon_sym_BSLASHac] = ACTIONS(12271), + [anon_sym_BSLASHAc] = ACTIONS(12271), + [anon_sym_BSLASHacp] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12271), + [anon_sym_BSLASHcolor] = ACTIONS(12271), + [anon_sym_BSLASHcolorbox] = ACTIONS(12271), + [anon_sym_BSLASHtextcolor] = ACTIONS(12271), + [anon_sym_BSLASHpagecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12271), + }, + [1769] = { + [sym_generic_command_name] = ACTIONS(12279), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12279), + [anon_sym_LBRACK] = ACTIONS(12277), + [anon_sym_RBRACK] = ACTIONS(12277), + [anon_sym_LBRACE] = ACTIONS(12277), + [anon_sym_RBRACE] = ACTIONS(12277), + [anon_sym_LPAREN] = ACTIONS(12277), + [anon_sym_COMMA] = ACTIONS(12277), + [anon_sym_EQ] = ACTIONS(12277), + [sym_word] = ACTIONS(12277), + [sym_param] = ACTIONS(12277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12277), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12277), + [anon_sym_DOLLAR] = ACTIONS(12279), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12277), + [anon_sym_BSLASHbegin] = ACTIONS(12279), + [anon_sym_BSLASHcaption] = ACTIONS(12279), + [anon_sym_BSLASHcite] = ACTIONS(12279), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCite] = ACTIONS(12279), + [anon_sym_BSLASHnocite] = ACTIONS(12279), + [anon_sym_BSLASHcitet] = ACTIONS(12279), + [anon_sym_BSLASHcitep] = ACTIONS(12279), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteauthor] = ACTIONS(12279), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12279), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitetitle] = ACTIONS(12279), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteyear] = ACTIONS(12279), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitedate] = ACTIONS(12279), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteurl] = ACTIONS(12279), + [anon_sym_BSLASHfullcite] = ACTIONS(12279), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12279), + [anon_sym_BSLASHcitealt] = ACTIONS(12279), + [anon_sym_BSLASHcitealp] = ACTIONS(12279), + [anon_sym_BSLASHcitetext] = ACTIONS(12279), + [anon_sym_BSLASHparencite] = ACTIONS(12279), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHParencite] = ACTIONS(12279), + [anon_sym_BSLASHfootcite] = ACTIONS(12279), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12279), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12279), + [anon_sym_BSLASHtextcite] = ACTIONS(12279), + [anon_sym_BSLASHTextcite] = ACTIONS(12279), + [anon_sym_BSLASHsmartcite] = ACTIONS(12279), + [anon_sym_BSLASHSmartcite] = ACTIONS(12279), + [anon_sym_BSLASHsupercite] = ACTIONS(12279), + [anon_sym_BSLASHautocite] = ACTIONS(12279), + [anon_sym_BSLASHAutocite] = ACTIONS(12279), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHvolcite] = ACTIONS(12279), + [anon_sym_BSLASHVolcite] = ACTIONS(12279), + [anon_sym_BSLASHpvolcite] = ACTIONS(12279), + [anon_sym_BSLASHPvolcite] = ACTIONS(12279), + [anon_sym_BSLASHfvolcite] = ACTIONS(12279), + [anon_sym_BSLASHftvolcite] = ACTIONS(12279), + [anon_sym_BSLASHsvolcite] = ACTIONS(12279), + [anon_sym_BSLASHSvolcite] = ACTIONS(12279), + [anon_sym_BSLASHtvolcite] = ACTIONS(12279), + [anon_sym_BSLASHTvolcite] = ACTIONS(12279), + [anon_sym_BSLASHavolcite] = ACTIONS(12279), + [anon_sym_BSLASHAvolcite] = ACTIONS(12279), + [anon_sym_BSLASHnotecite] = ACTIONS(12279), + [anon_sym_BSLASHpnotecite] = ACTIONS(12279), + [anon_sym_BSLASHPnotecite] = ACTIONS(12279), + [anon_sym_BSLASHfnotecite] = ACTIONS(12279), + [anon_sym_BSLASHusepackage] = ACTIONS(12279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12279), + [anon_sym_BSLASHinclude] = ACTIONS(12279), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12279), + [anon_sym_BSLASHinput] = ACTIONS(12279), + [anon_sym_BSLASHsubfile] = ACTIONS(12279), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12279), + [anon_sym_BSLASHbibliography] = ACTIONS(12279), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12279), + [anon_sym_BSLASHincludesvg] = ACTIONS(12279), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12279), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12279), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12279), + [anon_sym_BSLASHimport] = ACTIONS(12279), + [anon_sym_BSLASHsubimport] = ACTIONS(12279), + [anon_sym_BSLASHinputfrom] = ACTIONS(12279), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12279), + [anon_sym_BSLASHincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHlabel] = ACTIONS(12279), + [anon_sym_BSLASHref] = ACTIONS(12279), + [anon_sym_BSLASHvref] = ACTIONS(12279), + [anon_sym_BSLASHVref] = ACTIONS(12279), + [anon_sym_BSLASHautoref] = ACTIONS(12279), + [anon_sym_BSLASHpageref] = ACTIONS(12279), + [anon_sym_BSLASHcref] = ACTIONS(12279), + [anon_sym_BSLASHCref] = ACTIONS(12279), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnameCref] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHlabelcref] = ACTIONS(12279), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12279), + [anon_sym_BSLASHeqref] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange] = ACTIONS(12279), + [anon_sym_BSLASHCrefrange] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewlabel] = ACTIONS(12279), + [anon_sym_BSLASHnewcommand] = ACTIONS(12279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12279), + [anon_sym_BSLASHgls] = ACTIONS(12279), + [anon_sym_BSLASHGls] = ACTIONS(12279), + [anon_sym_BSLASHGLS] = ACTIONS(12279), + [anon_sym_BSLASHglspl] = ACTIONS(12279), + [anon_sym_BSLASHGlspl] = ACTIONS(12279), + [anon_sym_BSLASHGLSpl] = ACTIONS(12279), + [anon_sym_BSLASHglsdisp] = ACTIONS(12279), + [anon_sym_BSLASHglslink] = ACTIONS(12279), + [anon_sym_BSLASHglstext] = ACTIONS(12279), + [anon_sym_BSLASHGlstext] = ACTIONS(12279), + [anon_sym_BSLASHGLStext] = ACTIONS(12279), + [anon_sym_BSLASHglsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12279), + [anon_sym_BSLASHglsplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSplural] = ACTIONS(12279), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHglsname] = ACTIONS(12279), + [anon_sym_BSLASHGlsname] = ACTIONS(12279), + [anon_sym_BSLASHGLSname] = ACTIONS(12279), + [anon_sym_BSLASHglssymbol] = ACTIONS(12279), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12279), + [anon_sym_BSLASHglsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12279), + [anon_sym_BSLASHglsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12279), + [anon_sym_BSLASHglsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12279), + [anon_sym_BSLASHglsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12279), + [anon_sym_BSLASHglsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12279), + [anon_sym_BSLASHnewacronym] = ACTIONS(12279), + [anon_sym_BSLASHacrshort] = ACTIONS(12279), + [anon_sym_BSLASHAcrshort] = ACTIONS(12279), + [anon_sym_BSLASHACRshort] = ACTIONS(12279), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12279), + [anon_sym_BSLASHacrlong] = ACTIONS(12279), + [anon_sym_BSLASHAcrlong] = ACTIONS(12279), + [anon_sym_BSLASHACRlong] = ACTIONS(12279), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12279), + [anon_sym_BSLASHacrfull] = ACTIONS(12279), + [anon_sym_BSLASHAcrfull] = ACTIONS(12279), + [anon_sym_BSLASHACRfull] = ACTIONS(12279), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12279), + [anon_sym_BSLASHacs] = ACTIONS(12279), + [anon_sym_BSLASHAcs] = ACTIONS(12279), + [anon_sym_BSLASHacsp] = ACTIONS(12279), + [anon_sym_BSLASHAcsp] = ACTIONS(12279), + [anon_sym_BSLASHacl] = ACTIONS(12279), + [anon_sym_BSLASHAcl] = ACTIONS(12279), + [anon_sym_BSLASHaclp] = ACTIONS(12279), + [anon_sym_BSLASHAclp] = ACTIONS(12279), + [anon_sym_BSLASHacf] = ACTIONS(12279), + [anon_sym_BSLASHAcf] = ACTIONS(12279), + [anon_sym_BSLASHacfp] = ACTIONS(12279), + [anon_sym_BSLASHAcfp] = ACTIONS(12279), + [anon_sym_BSLASHac] = ACTIONS(12279), + [anon_sym_BSLASHAc] = ACTIONS(12279), + [anon_sym_BSLASHacp] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12279), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12279), + [anon_sym_BSLASHcolor] = ACTIONS(12279), + [anon_sym_BSLASHcolorbox] = ACTIONS(12279), + [anon_sym_BSLASHtextcolor] = ACTIONS(12279), + [anon_sym_BSLASHpagecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12279), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12279), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12279), + }, + [1770] = { + [sym_generic_command_name] = ACTIONS(12287), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12287), + [anon_sym_LBRACK] = ACTIONS(12285), + [anon_sym_RBRACK] = ACTIONS(12285), + [anon_sym_LBRACE] = ACTIONS(12285), + [anon_sym_RBRACE] = ACTIONS(12285), + [anon_sym_LPAREN] = ACTIONS(12285), + [anon_sym_COMMA] = ACTIONS(12285), + [anon_sym_EQ] = ACTIONS(12285), + [sym_word] = ACTIONS(12285), + [sym_param] = ACTIONS(12285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12285), + [anon_sym_DOLLAR] = ACTIONS(12287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12285), + [anon_sym_BSLASHbegin] = ACTIONS(12287), + [anon_sym_BSLASHcaption] = ACTIONS(12287), + [anon_sym_BSLASHcite] = ACTIONS(12287), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCite] = ACTIONS(12287), + [anon_sym_BSLASHnocite] = ACTIONS(12287), + [anon_sym_BSLASHcitet] = ACTIONS(12287), + [anon_sym_BSLASHcitep] = ACTIONS(12287), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteauthor] = ACTIONS(12287), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12287), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitetitle] = ACTIONS(12287), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteyear] = ACTIONS(12287), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitedate] = ACTIONS(12287), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteurl] = ACTIONS(12287), + [anon_sym_BSLASHfullcite] = ACTIONS(12287), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12287), + [anon_sym_BSLASHcitealt] = ACTIONS(12287), + [anon_sym_BSLASHcitealp] = ACTIONS(12287), + [anon_sym_BSLASHcitetext] = ACTIONS(12287), + [anon_sym_BSLASHparencite] = ACTIONS(12287), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHParencite] = ACTIONS(12287), + [anon_sym_BSLASHfootcite] = ACTIONS(12287), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12287), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12287), + [anon_sym_BSLASHtextcite] = ACTIONS(12287), + [anon_sym_BSLASHTextcite] = ACTIONS(12287), + [anon_sym_BSLASHsmartcite] = ACTIONS(12287), + [anon_sym_BSLASHSmartcite] = ACTIONS(12287), + [anon_sym_BSLASHsupercite] = ACTIONS(12287), + [anon_sym_BSLASHautocite] = ACTIONS(12287), + [anon_sym_BSLASHAutocite] = ACTIONS(12287), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHvolcite] = ACTIONS(12287), + [anon_sym_BSLASHVolcite] = ACTIONS(12287), + [anon_sym_BSLASHpvolcite] = ACTIONS(12287), + [anon_sym_BSLASHPvolcite] = ACTIONS(12287), + [anon_sym_BSLASHfvolcite] = ACTIONS(12287), + [anon_sym_BSLASHftvolcite] = ACTIONS(12287), + [anon_sym_BSLASHsvolcite] = ACTIONS(12287), + [anon_sym_BSLASHSvolcite] = ACTIONS(12287), + [anon_sym_BSLASHtvolcite] = ACTIONS(12287), + [anon_sym_BSLASHTvolcite] = ACTIONS(12287), + [anon_sym_BSLASHavolcite] = ACTIONS(12287), + [anon_sym_BSLASHAvolcite] = ACTIONS(12287), + [anon_sym_BSLASHnotecite] = ACTIONS(12287), + [anon_sym_BSLASHpnotecite] = ACTIONS(12287), + [anon_sym_BSLASHPnotecite] = ACTIONS(12287), + [anon_sym_BSLASHfnotecite] = ACTIONS(12287), + [anon_sym_BSLASHusepackage] = ACTIONS(12287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12287), + [anon_sym_BSLASHinclude] = ACTIONS(12287), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12287), + [anon_sym_BSLASHinput] = ACTIONS(12287), + [anon_sym_BSLASHsubfile] = ACTIONS(12287), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12287), + [anon_sym_BSLASHbibliography] = ACTIONS(12287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12287), + [anon_sym_BSLASHincludesvg] = ACTIONS(12287), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12287), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12287), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12287), + [anon_sym_BSLASHimport] = ACTIONS(12287), + [anon_sym_BSLASHsubimport] = ACTIONS(12287), + [anon_sym_BSLASHinputfrom] = ACTIONS(12287), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12287), + [anon_sym_BSLASHincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHlabel] = ACTIONS(12287), + [anon_sym_BSLASHref] = ACTIONS(12287), + [anon_sym_BSLASHvref] = ACTIONS(12287), + [anon_sym_BSLASHVref] = ACTIONS(12287), + [anon_sym_BSLASHautoref] = ACTIONS(12287), + [anon_sym_BSLASHpageref] = ACTIONS(12287), + [anon_sym_BSLASHcref] = ACTIONS(12287), + [anon_sym_BSLASHCref] = ACTIONS(12287), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnameCref] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHlabelcref] = ACTIONS(12287), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12287), + [anon_sym_BSLASHeqref] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange] = ACTIONS(12287), + [anon_sym_BSLASHCrefrange] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewlabel] = ACTIONS(12287), + [anon_sym_BSLASHnewcommand] = ACTIONS(12287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12287), + [anon_sym_BSLASHgls] = ACTIONS(12287), + [anon_sym_BSLASHGls] = ACTIONS(12287), + [anon_sym_BSLASHGLS] = ACTIONS(12287), + [anon_sym_BSLASHglspl] = ACTIONS(12287), + [anon_sym_BSLASHGlspl] = ACTIONS(12287), + [anon_sym_BSLASHGLSpl] = ACTIONS(12287), + [anon_sym_BSLASHglsdisp] = ACTIONS(12287), + [anon_sym_BSLASHglslink] = ACTIONS(12287), + [anon_sym_BSLASHglstext] = ACTIONS(12287), + [anon_sym_BSLASHGlstext] = ACTIONS(12287), + [anon_sym_BSLASHGLStext] = ACTIONS(12287), + [anon_sym_BSLASHglsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12287), + [anon_sym_BSLASHglsplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSplural] = ACTIONS(12287), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHglsname] = ACTIONS(12287), + [anon_sym_BSLASHGlsname] = ACTIONS(12287), + [anon_sym_BSLASHGLSname] = ACTIONS(12287), + [anon_sym_BSLASHglssymbol] = ACTIONS(12287), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12287), + [anon_sym_BSLASHglsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12287), + [anon_sym_BSLASHglsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12287), + [anon_sym_BSLASHglsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12287), + [anon_sym_BSLASHglsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12287), + [anon_sym_BSLASHglsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12287), + [anon_sym_BSLASHnewacronym] = ACTIONS(12287), + [anon_sym_BSLASHacrshort] = ACTIONS(12287), + [anon_sym_BSLASHAcrshort] = ACTIONS(12287), + [anon_sym_BSLASHACRshort] = ACTIONS(12287), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12287), + [anon_sym_BSLASHacrlong] = ACTIONS(12287), + [anon_sym_BSLASHAcrlong] = ACTIONS(12287), + [anon_sym_BSLASHACRlong] = ACTIONS(12287), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12287), + [anon_sym_BSLASHacrfull] = ACTIONS(12287), + [anon_sym_BSLASHAcrfull] = ACTIONS(12287), + [anon_sym_BSLASHACRfull] = ACTIONS(12287), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12287), + [anon_sym_BSLASHacs] = ACTIONS(12287), + [anon_sym_BSLASHAcs] = ACTIONS(12287), + [anon_sym_BSLASHacsp] = ACTIONS(12287), + [anon_sym_BSLASHAcsp] = ACTIONS(12287), + [anon_sym_BSLASHacl] = ACTIONS(12287), + [anon_sym_BSLASHAcl] = ACTIONS(12287), + [anon_sym_BSLASHaclp] = ACTIONS(12287), + [anon_sym_BSLASHAclp] = ACTIONS(12287), + [anon_sym_BSLASHacf] = ACTIONS(12287), + [anon_sym_BSLASHAcf] = ACTIONS(12287), + [anon_sym_BSLASHacfp] = ACTIONS(12287), + [anon_sym_BSLASHAcfp] = ACTIONS(12287), + [anon_sym_BSLASHac] = ACTIONS(12287), + [anon_sym_BSLASHAc] = ACTIONS(12287), + [anon_sym_BSLASHacp] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12287), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12287), + [anon_sym_BSLASHcolor] = ACTIONS(12287), + [anon_sym_BSLASHcolorbox] = ACTIONS(12287), + [anon_sym_BSLASHtextcolor] = ACTIONS(12287), + [anon_sym_BSLASHpagecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12287), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12287), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12287), + }, + [1771] = { + [sym_generic_command_name] = ACTIONS(12291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12291), + [anon_sym_LBRACK] = ACTIONS(12289), + [anon_sym_RBRACK] = ACTIONS(12289), + [anon_sym_LBRACE] = ACTIONS(12289), + [anon_sym_RBRACE] = ACTIONS(12289), + [anon_sym_LPAREN] = ACTIONS(12289), + [anon_sym_COMMA] = ACTIONS(12289), + [anon_sym_EQ] = ACTIONS(12289), + [sym_word] = ACTIONS(12289), + [sym_param] = ACTIONS(12289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12289), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12289), + [anon_sym_DOLLAR] = ACTIONS(12291), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12289), + [anon_sym_BSLASHbegin] = ACTIONS(12291), + [anon_sym_BSLASHcaption] = ACTIONS(12291), + [anon_sym_BSLASHcite] = ACTIONS(12291), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCite] = ACTIONS(12291), + [anon_sym_BSLASHnocite] = ACTIONS(12291), + [anon_sym_BSLASHcitet] = ACTIONS(12291), + [anon_sym_BSLASHcitep] = ACTIONS(12291), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteauthor] = ACTIONS(12291), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12291), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitetitle] = ACTIONS(12291), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteyear] = ACTIONS(12291), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitedate] = ACTIONS(12291), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteurl] = ACTIONS(12291), + [anon_sym_BSLASHfullcite] = ACTIONS(12291), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12291), + [anon_sym_BSLASHcitealt] = ACTIONS(12291), + [anon_sym_BSLASHcitealp] = ACTIONS(12291), + [anon_sym_BSLASHcitetext] = ACTIONS(12291), + [anon_sym_BSLASHparencite] = ACTIONS(12291), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHParencite] = ACTIONS(12291), + [anon_sym_BSLASHfootcite] = ACTIONS(12291), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12291), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12291), + [anon_sym_BSLASHtextcite] = ACTIONS(12291), + [anon_sym_BSLASHTextcite] = ACTIONS(12291), + [anon_sym_BSLASHsmartcite] = ACTIONS(12291), + [anon_sym_BSLASHSmartcite] = ACTIONS(12291), + [anon_sym_BSLASHsupercite] = ACTIONS(12291), + [anon_sym_BSLASHautocite] = ACTIONS(12291), + [anon_sym_BSLASHAutocite] = ACTIONS(12291), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHvolcite] = ACTIONS(12291), + [anon_sym_BSLASHVolcite] = ACTIONS(12291), + [anon_sym_BSLASHpvolcite] = ACTIONS(12291), + [anon_sym_BSLASHPvolcite] = ACTIONS(12291), + [anon_sym_BSLASHfvolcite] = ACTIONS(12291), + [anon_sym_BSLASHftvolcite] = ACTIONS(12291), + [anon_sym_BSLASHsvolcite] = ACTIONS(12291), + [anon_sym_BSLASHSvolcite] = ACTIONS(12291), + [anon_sym_BSLASHtvolcite] = ACTIONS(12291), + [anon_sym_BSLASHTvolcite] = ACTIONS(12291), + [anon_sym_BSLASHavolcite] = ACTIONS(12291), + [anon_sym_BSLASHAvolcite] = ACTIONS(12291), + [anon_sym_BSLASHnotecite] = ACTIONS(12291), + [anon_sym_BSLASHpnotecite] = ACTIONS(12291), + [anon_sym_BSLASHPnotecite] = ACTIONS(12291), + [anon_sym_BSLASHfnotecite] = ACTIONS(12291), + [anon_sym_BSLASHusepackage] = ACTIONS(12291), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12291), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12291), + [anon_sym_BSLASHinclude] = ACTIONS(12291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12291), + [anon_sym_BSLASHinput] = ACTIONS(12291), + [anon_sym_BSLASHsubfile] = ACTIONS(12291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12291), + [anon_sym_BSLASHbibliography] = ACTIONS(12291), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12291), + [anon_sym_BSLASHincludesvg] = ACTIONS(12291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12291), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12291), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12291), + [anon_sym_BSLASHimport] = ACTIONS(12291), + [anon_sym_BSLASHsubimport] = ACTIONS(12291), + [anon_sym_BSLASHinputfrom] = ACTIONS(12291), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12291), + [anon_sym_BSLASHincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHlabel] = ACTIONS(12291), + [anon_sym_BSLASHref] = ACTIONS(12291), + [anon_sym_BSLASHvref] = ACTIONS(12291), + [anon_sym_BSLASHVref] = ACTIONS(12291), + [anon_sym_BSLASHautoref] = ACTIONS(12291), + [anon_sym_BSLASHpageref] = ACTIONS(12291), + [anon_sym_BSLASHcref] = ACTIONS(12291), + [anon_sym_BSLASHCref] = ACTIONS(12291), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnameCref] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHlabelcref] = ACTIONS(12291), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12291), + [anon_sym_BSLASHeqref] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange] = ACTIONS(12291), + [anon_sym_BSLASHCrefrange] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewlabel] = ACTIONS(12291), + [anon_sym_BSLASHnewcommand] = ACTIONS(12291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12291), + [anon_sym_BSLASHgls] = ACTIONS(12291), + [anon_sym_BSLASHGls] = ACTIONS(12291), + [anon_sym_BSLASHGLS] = ACTIONS(12291), + [anon_sym_BSLASHglspl] = ACTIONS(12291), + [anon_sym_BSLASHGlspl] = ACTIONS(12291), + [anon_sym_BSLASHGLSpl] = ACTIONS(12291), + [anon_sym_BSLASHglsdisp] = ACTIONS(12291), + [anon_sym_BSLASHglslink] = ACTIONS(12291), + [anon_sym_BSLASHglstext] = ACTIONS(12291), + [anon_sym_BSLASHGlstext] = ACTIONS(12291), + [anon_sym_BSLASHGLStext] = ACTIONS(12291), + [anon_sym_BSLASHglsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12291), + [anon_sym_BSLASHglsplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSplural] = ACTIONS(12291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHglsname] = ACTIONS(12291), + [anon_sym_BSLASHGlsname] = ACTIONS(12291), + [anon_sym_BSLASHGLSname] = ACTIONS(12291), + [anon_sym_BSLASHglssymbol] = ACTIONS(12291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12291), + [anon_sym_BSLASHglsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12291), + [anon_sym_BSLASHglsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12291), + [anon_sym_BSLASHglsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12291), + [anon_sym_BSLASHglsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12291), + [anon_sym_BSLASHglsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12291), + [anon_sym_BSLASHnewacronym] = ACTIONS(12291), + [anon_sym_BSLASHacrshort] = ACTIONS(12291), + [anon_sym_BSLASHAcrshort] = ACTIONS(12291), + [anon_sym_BSLASHACRshort] = ACTIONS(12291), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12291), + [anon_sym_BSLASHacrlong] = ACTIONS(12291), + [anon_sym_BSLASHAcrlong] = ACTIONS(12291), + [anon_sym_BSLASHACRlong] = ACTIONS(12291), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12291), + [anon_sym_BSLASHacrfull] = ACTIONS(12291), + [anon_sym_BSLASHAcrfull] = ACTIONS(12291), + [anon_sym_BSLASHACRfull] = ACTIONS(12291), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12291), + [anon_sym_BSLASHacs] = ACTIONS(12291), + [anon_sym_BSLASHAcs] = ACTIONS(12291), + [anon_sym_BSLASHacsp] = ACTIONS(12291), + [anon_sym_BSLASHAcsp] = ACTIONS(12291), + [anon_sym_BSLASHacl] = ACTIONS(12291), + [anon_sym_BSLASHAcl] = ACTIONS(12291), + [anon_sym_BSLASHaclp] = ACTIONS(12291), + [anon_sym_BSLASHAclp] = ACTIONS(12291), + [anon_sym_BSLASHacf] = ACTIONS(12291), + [anon_sym_BSLASHAcf] = ACTIONS(12291), + [anon_sym_BSLASHacfp] = ACTIONS(12291), + [anon_sym_BSLASHAcfp] = ACTIONS(12291), + [anon_sym_BSLASHac] = ACTIONS(12291), + [anon_sym_BSLASHAc] = ACTIONS(12291), + [anon_sym_BSLASHacp] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12291), + [anon_sym_BSLASHcolor] = ACTIONS(12291), + [anon_sym_BSLASHcolorbox] = ACTIONS(12291), + [anon_sym_BSLASHtextcolor] = ACTIONS(12291), + [anon_sym_BSLASHpagecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12291), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12291), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12291), + }, + [1772] = { + [sym_brace_group] = STATE(3272), + [sym_generic_command_name] = ACTIONS(12092), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12090), + [anon_sym_RBRACK] = ACTIONS(12090), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12090), + [anon_sym_LPAREN] = ACTIONS(12090), + [anon_sym_COMMA] = ACTIONS(12090), + [anon_sym_EQ] = ACTIONS(12090), + [sym_word] = ACTIONS(12090), + [sym_param] = ACTIONS(12090), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12090), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12090), + [anon_sym_DOLLAR] = ACTIONS(12092), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12090), + [anon_sym_BSLASHbegin] = ACTIONS(12092), + [anon_sym_BSLASHcaption] = ACTIONS(12092), + [anon_sym_BSLASHcite] = ACTIONS(12092), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCite] = ACTIONS(12092), + [anon_sym_BSLASHnocite] = ACTIONS(12092), + [anon_sym_BSLASHcitet] = ACTIONS(12092), + [anon_sym_BSLASHcitep] = ACTIONS(12092), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteauthor] = ACTIONS(12092), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12092), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitetitle] = ACTIONS(12092), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteyear] = ACTIONS(12092), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12090), + [anon_sym_BSLASHcitedate] = ACTIONS(12092), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12090), + [anon_sym_BSLASHciteurl] = ACTIONS(12092), + [anon_sym_BSLASHfullcite] = ACTIONS(12092), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12092), + [anon_sym_BSLASHcitealt] = ACTIONS(12092), + [anon_sym_BSLASHcitealp] = ACTIONS(12092), + [anon_sym_BSLASHcitetext] = ACTIONS(12092), + [anon_sym_BSLASHparencite] = ACTIONS(12092), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHParencite] = ACTIONS(12092), + [anon_sym_BSLASHfootcite] = ACTIONS(12092), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12092), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12092), + [anon_sym_BSLASHtextcite] = ACTIONS(12092), + [anon_sym_BSLASHTextcite] = ACTIONS(12092), + [anon_sym_BSLASHsmartcite] = ACTIONS(12092), + [anon_sym_BSLASHSmartcite] = ACTIONS(12092), + [anon_sym_BSLASHsupercite] = ACTIONS(12092), + [anon_sym_BSLASHautocite] = ACTIONS(12092), + [anon_sym_BSLASHAutocite] = ACTIONS(12092), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12090), + [anon_sym_BSLASHvolcite] = ACTIONS(12092), + [anon_sym_BSLASHVolcite] = ACTIONS(12092), + [anon_sym_BSLASHpvolcite] = ACTIONS(12092), + [anon_sym_BSLASHPvolcite] = ACTIONS(12092), + [anon_sym_BSLASHfvolcite] = ACTIONS(12092), + [anon_sym_BSLASHftvolcite] = ACTIONS(12092), + [anon_sym_BSLASHsvolcite] = ACTIONS(12092), + [anon_sym_BSLASHSvolcite] = ACTIONS(12092), + [anon_sym_BSLASHtvolcite] = ACTIONS(12092), + [anon_sym_BSLASHTvolcite] = ACTIONS(12092), + [anon_sym_BSLASHavolcite] = ACTIONS(12092), + [anon_sym_BSLASHAvolcite] = ACTIONS(12092), + [anon_sym_BSLASHnotecite] = ACTIONS(12092), + [anon_sym_BSLASHpnotecite] = ACTIONS(12092), + [anon_sym_BSLASHPnotecite] = ACTIONS(12092), + [anon_sym_BSLASHfnotecite] = ACTIONS(12092), + [anon_sym_BSLASHusepackage] = ACTIONS(12092), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12092), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12092), + [anon_sym_BSLASHinclude] = ACTIONS(12092), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12092), + [anon_sym_BSLASHinput] = ACTIONS(12092), + [anon_sym_BSLASHsubfile] = ACTIONS(12092), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12092), + [anon_sym_BSLASHbibliography] = ACTIONS(12092), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12092), + [anon_sym_BSLASHincludesvg] = ACTIONS(12092), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12092), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12092), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12092), + [anon_sym_BSLASHimport] = ACTIONS(12092), + [anon_sym_BSLASHsubimport] = ACTIONS(12092), + [anon_sym_BSLASHinputfrom] = ACTIONS(12092), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12092), + [anon_sym_BSLASHincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12092), + [anon_sym_BSLASHlabel] = ACTIONS(12092), + [anon_sym_BSLASHref] = ACTIONS(12092), + [anon_sym_BSLASHvref] = ACTIONS(12092), + [anon_sym_BSLASHVref] = ACTIONS(12092), + [anon_sym_BSLASHautoref] = ACTIONS(12092), + [anon_sym_BSLASHpageref] = ACTIONS(12092), + [anon_sym_BSLASHcref] = ACTIONS(12092), + [anon_sym_BSLASHCref] = ACTIONS(12092), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnameCref] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12092), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12092), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12092), + [anon_sym_BSLASHlabelcref] = ACTIONS(12092), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12092), + [anon_sym_BSLASHeqref] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange] = ACTIONS(12092), + [anon_sym_BSLASHCrefrange] = ACTIONS(12092), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewlabel] = ACTIONS(12092), + [anon_sym_BSLASHnewcommand] = ACTIONS(12092), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12092), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12090), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12092), + [anon_sym_BSLASHgls] = ACTIONS(12092), + [anon_sym_BSLASHGls] = ACTIONS(12092), + [anon_sym_BSLASHGLS] = ACTIONS(12092), + [anon_sym_BSLASHglspl] = ACTIONS(12092), + [anon_sym_BSLASHGlspl] = ACTIONS(12092), + [anon_sym_BSLASHGLSpl] = ACTIONS(12092), + [anon_sym_BSLASHglsdisp] = ACTIONS(12092), + [anon_sym_BSLASHglslink] = ACTIONS(12092), + [anon_sym_BSLASHglstext] = ACTIONS(12092), + [anon_sym_BSLASHGlstext] = ACTIONS(12092), + [anon_sym_BSLASHGLStext] = ACTIONS(12092), + [anon_sym_BSLASHglsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12092), + [anon_sym_BSLASHglsplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSplural] = ACTIONS(12092), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12092), + [anon_sym_BSLASHglsname] = ACTIONS(12092), + [anon_sym_BSLASHGlsname] = ACTIONS(12092), + [anon_sym_BSLASHGLSname] = ACTIONS(12092), + [anon_sym_BSLASHglssymbol] = ACTIONS(12092), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12092), + [anon_sym_BSLASHglsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12092), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12092), + [anon_sym_BSLASHglsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12092), + [anon_sym_BSLASHglsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12092), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12092), + [anon_sym_BSLASHglsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12092), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12092), + [anon_sym_BSLASHglsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12092), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12092), + [anon_sym_BSLASHnewacronym] = ACTIONS(12092), + [anon_sym_BSLASHacrshort] = ACTIONS(12092), + [anon_sym_BSLASHAcrshort] = ACTIONS(12092), + [anon_sym_BSLASHACRshort] = ACTIONS(12092), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12092), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12092), + [anon_sym_BSLASHacrlong] = ACTIONS(12092), + [anon_sym_BSLASHAcrlong] = ACTIONS(12092), + [anon_sym_BSLASHACRlong] = ACTIONS(12092), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12092), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12092), + [anon_sym_BSLASHacrfull] = ACTIONS(12092), + [anon_sym_BSLASHAcrfull] = ACTIONS(12092), + [anon_sym_BSLASHACRfull] = ACTIONS(12092), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12092), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12092), + [anon_sym_BSLASHacs] = ACTIONS(12092), + [anon_sym_BSLASHAcs] = ACTIONS(12092), + [anon_sym_BSLASHacsp] = ACTIONS(12092), + [anon_sym_BSLASHAcsp] = ACTIONS(12092), + [anon_sym_BSLASHacl] = ACTIONS(12092), + [anon_sym_BSLASHAcl] = ACTIONS(12092), + [anon_sym_BSLASHaclp] = ACTIONS(12092), + [anon_sym_BSLASHAclp] = ACTIONS(12092), + [anon_sym_BSLASHacf] = ACTIONS(12092), + [anon_sym_BSLASHAcf] = ACTIONS(12092), + [anon_sym_BSLASHacfp] = ACTIONS(12092), + [anon_sym_BSLASHAcfp] = ACTIONS(12092), + [anon_sym_BSLASHac] = ACTIONS(12092), + [anon_sym_BSLASHAc] = ACTIONS(12092), + [anon_sym_BSLASHacp] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12092), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12092), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12092), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12092), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12092), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12092), + [anon_sym_BSLASHcolor] = ACTIONS(12092), + [anon_sym_BSLASHcolorbox] = ACTIONS(12092), + [anon_sym_BSLASHtextcolor] = ACTIONS(12092), + [anon_sym_BSLASHpagecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12092), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12092), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12092), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12092), + }, + [1773] = { + [sym_generic_command_name] = ACTIONS(12295), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12295), + [anon_sym_LBRACK] = ACTIONS(12293), + [anon_sym_RBRACK] = ACTIONS(12293), + [anon_sym_LBRACE] = ACTIONS(12293), + [anon_sym_RBRACE] = ACTIONS(12293), + [anon_sym_LPAREN] = ACTIONS(12293), + [anon_sym_COMMA] = ACTIONS(12293), + [anon_sym_EQ] = ACTIONS(12293), + [sym_word] = ACTIONS(12293), + [sym_param] = ACTIONS(12293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12293), + [anon_sym_DOLLAR] = ACTIONS(12295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12293), + [anon_sym_BSLASHbegin] = ACTIONS(12295), + [anon_sym_BSLASHcaption] = ACTIONS(12295), + [anon_sym_BSLASHcite] = ACTIONS(12295), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCite] = ACTIONS(12295), + [anon_sym_BSLASHnocite] = ACTIONS(12295), + [anon_sym_BSLASHcitet] = ACTIONS(12295), + [anon_sym_BSLASHcitep] = ACTIONS(12295), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteauthor] = ACTIONS(12295), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12295), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitetitle] = ACTIONS(12295), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteyear] = ACTIONS(12295), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitedate] = ACTIONS(12295), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteurl] = ACTIONS(12295), + [anon_sym_BSLASHfullcite] = ACTIONS(12295), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12295), + [anon_sym_BSLASHcitealt] = ACTIONS(12295), + [anon_sym_BSLASHcitealp] = ACTIONS(12295), + [anon_sym_BSLASHcitetext] = ACTIONS(12295), + [anon_sym_BSLASHparencite] = ACTIONS(12295), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHParencite] = ACTIONS(12295), + [anon_sym_BSLASHfootcite] = ACTIONS(12295), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12295), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12295), + [anon_sym_BSLASHtextcite] = ACTIONS(12295), + [anon_sym_BSLASHTextcite] = ACTIONS(12295), + [anon_sym_BSLASHsmartcite] = ACTIONS(12295), + [anon_sym_BSLASHSmartcite] = ACTIONS(12295), + [anon_sym_BSLASHsupercite] = ACTIONS(12295), + [anon_sym_BSLASHautocite] = ACTIONS(12295), + [anon_sym_BSLASHAutocite] = ACTIONS(12295), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHvolcite] = ACTIONS(12295), + [anon_sym_BSLASHVolcite] = ACTIONS(12295), + [anon_sym_BSLASHpvolcite] = ACTIONS(12295), + [anon_sym_BSLASHPvolcite] = ACTIONS(12295), + [anon_sym_BSLASHfvolcite] = ACTIONS(12295), + [anon_sym_BSLASHftvolcite] = ACTIONS(12295), + [anon_sym_BSLASHsvolcite] = ACTIONS(12295), + [anon_sym_BSLASHSvolcite] = ACTIONS(12295), + [anon_sym_BSLASHtvolcite] = ACTIONS(12295), + [anon_sym_BSLASHTvolcite] = ACTIONS(12295), + [anon_sym_BSLASHavolcite] = ACTIONS(12295), + [anon_sym_BSLASHAvolcite] = ACTIONS(12295), + [anon_sym_BSLASHnotecite] = ACTIONS(12295), + [anon_sym_BSLASHpnotecite] = ACTIONS(12295), + [anon_sym_BSLASHPnotecite] = ACTIONS(12295), + [anon_sym_BSLASHfnotecite] = ACTIONS(12295), + [anon_sym_BSLASHusepackage] = ACTIONS(12295), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12295), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12295), + [anon_sym_BSLASHinclude] = ACTIONS(12295), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12295), + [anon_sym_BSLASHinput] = ACTIONS(12295), + [anon_sym_BSLASHsubfile] = ACTIONS(12295), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12295), + [anon_sym_BSLASHbibliography] = ACTIONS(12295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12295), + [anon_sym_BSLASHincludesvg] = ACTIONS(12295), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12295), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12295), + [anon_sym_BSLASHimport] = ACTIONS(12295), + [anon_sym_BSLASHsubimport] = ACTIONS(12295), + [anon_sym_BSLASHinputfrom] = ACTIONS(12295), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12295), + [anon_sym_BSLASHincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHlabel] = ACTIONS(12295), + [anon_sym_BSLASHref] = ACTIONS(12295), + [anon_sym_BSLASHvref] = ACTIONS(12295), + [anon_sym_BSLASHVref] = ACTIONS(12295), + [anon_sym_BSLASHautoref] = ACTIONS(12295), + [anon_sym_BSLASHpageref] = ACTIONS(12295), + [anon_sym_BSLASHcref] = ACTIONS(12295), + [anon_sym_BSLASHCref] = ACTIONS(12295), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnameCref] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHlabelcref] = ACTIONS(12295), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12295), + [anon_sym_BSLASHeqref] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange] = ACTIONS(12295), + [anon_sym_BSLASHCrefrange] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewlabel] = ACTIONS(12295), + [anon_sym_BSLASHnewcommand] = ACTIONS(12295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12295), + [anon_sym_BSLASHgls] = ACTIONS(12295), + [anon_sym_BSLASHGls] = ACTIONS(12295), + [anon_sym_BSLASHGLS] = ACTIONS(12295), + [anon_sym_BSLASHglspl] = ACTIONS(12295), + [anon_sym_BSLASHGlspl] = ACTIONS(12295), + [anon_sym_BSLASHGLSpl] = ACTIONS(12295), + [anon_sym_BSLASHglsdisp] = ACTIONS(12295), + [anon_sym_BSLASHglslink] = ACTIONS(12295), + [anon_sym_BSLASHglstext] = ACTIONS(12295), + [anon_sym_BSLASHGlstext] = ACTIONS(12295), + [anon_sym_BSLASHGLStext] = ACTIONS(12295), + [anon_sym_BSLASHglsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12295), + [anon_sym_BSLASHglsplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSplural] = ACTIONS(12295), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHglsname] = ACTIONS(12295), + [anon_sym_BSLASHGlsname] = ACTIONS(12295), + [anon_sym_BSLASHGLSname] = ACTIONS(12295), + [anon_sym_BSLASHglssymbol] = ACTIONS(12295), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12295), + [anon_sym_BSLASHglsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12295), + [anon_sym_BSLASHglsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12295), + [anon_sym_BSLASHglsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12295), + [anon_sym_BSLASHglsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12295), + [anon_sym_BSLASHglsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12295), + [anon_sym_BSLASHnewacronym] = ACTIONS(12295), + [anon_sym_BSLASHacrshort] = ACTIONS(12295), + [anon_sym_BSLASHAcrshort] = ACTIONS(12295), + [anon_sym_BSLASHACRshort] = ACTIONS(12295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12295), + [anon_sym_BSLASHacrlong] = ACTIONS(12295), + [anon_sym_BSLASHAcrlong] = ACTIONS(12295), + [anon_sym_BSLASHACRlong] = ACTIONS(12295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12295), + [anon_sym_BSLASHacrfull] = ACTIONS(12295), + [anon_sym_BSLASHAcrfull] = ACTIONS(12295), + [anon_sym_BSLASHACRfull] = ACTIONS(12295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12295), + [anon_sym_BSLASHacs] = ACTIONS(12295), + [anon_sym_BSLASHAcs] = ACTIONS(12295), + [anon_sym_BSLASHacsp] = ACTIONS(12295), + [anon_sym_BSLASHAcsp] = ACTIONS(12295), + [anon_sym_BSLASHacl] = ACTIONS(12295), + [anon_sym_BSLASHAcl] = ACTIONS(12295), + [anon_sym_BSLASHaclp] = ACTIONS(12295), + [anon_sym_BSLASHAclp] = ACTIONS(12295), + [anon_sym_BSLASHacf] = ACTIONS(12295), + [anon_sym_BSLASHAcf] = ACTIONS(12295), + [anon_sym_BSLASHacfp] = ACTIONS(12295), + [anon_sym_BSLASHAcfp] = ACTIONS(12295), + [anon_sym_BSLASHac] = ACTIONS(12295), + [anon_sym_BSLASHAc] = ACTIONS(12295), + [anon_sym_BSLASHacp] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12295), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12295), + [anon_sym_BSLASHcolor] = ACTIONS(12295), + [anon_sym_BSLASHcolorbox] = ACTIONS(12295), + [anon_sym_BSLASHtextcolor] = ACTIONS(12295), + [anon_sym_BSLASHpagecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12295), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12295), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12295), + }, + [1774] = { + [sym_generic_command_name] = ACTIONS(12303), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12303), + [anon_sym_LBRACK] = ACTIONS(12301), + [anon_sym_RBRACK] = ACTIONS(12301), + [anon_sym_LBRACE] = ACTIONS(12301), + [anon_sym_RBRACE] = ACTIONS(12301), + [anon_sym_LPAREN] = ACTIONS(12301), + [anon_sym_COMMA] = ACTIONS(12301), + [anon_sym_EQ] = ACTIONS(12301), + [sym_word] = ACTIONS(12301), + [sym_param] = ACTIONS(12301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12301), + [anon_sym_DOLLAR] = ACTIONS(12303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12301), + [anon_sym_BSLASHbegin] = ACTIONS(12303), + [anon_sym_BSLASHcaption] = ACTIONS(12303), + [anon_sym_BSLASHcite] = ACTIONS(12303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCite] = ACTIONS(12303), + [anon_sym_BSLASHnocite] = ACTIONS(12303), + [anon_sym_BSLASHcitet] = ACTIONS(12303), + [anon_sym_BSLASHcitep] = ACTIONS(12303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteauthor] = ACTIONS(12303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitetitle] = ACTIONS(12303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteyear] = ACTIONS(12303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitedate] = ACTIONS(12303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteurl] = ACTIONS(12303), + [anon_sym_BSLASHfullcite] = ACTIONS(12303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12303), + [anon_sym_BSLASHcitealt] = ACTIONS(12303), + [anon_sym_BSLASHcitealp] = ACTIONS(12303), + [anon_sym_BSLASHcitetext] = ACTIONS(12303), + [anon_sym_BSLASHparencite] = ACTIONS(12303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHParencite] = ACTIONS(12303), + [anon_sym_BSLASHfootcite] = ACTIONS(12303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12303), + [anon_sym_BSLASHtextcite] = ACTIONS(12303), + [anon_sym_BSLASHTextcite] = ACTIONS(12303), + [anon_sym_BSLASHsmartcite] = ACTIONS(12303), + [anon_sym_BSLASHSmartcite] = ACTIONS(12303), + [anon_sym_BSLASHsupercite] = ACTIONS(12303), + [anon_sym_BSLASHautocite] = ACTIONS(12303), + [anon_sym_BSLASHAutocite] = ACTIONS(12303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHvolcite] = ACTIONS(12303), + [anon_sym_BSLASHVolcite] = ACTIONS(12303), + [anon_sym_BSLASHpvolcite] = ACTIONS(12303), + [anon_sym_BSLASHPvolcite] = ACTIONS(12303), + [anon_sym_BSLASHfvolcite] = ACTIONS(12303), + [anon_sym_BSLASHftvolcite] = ACTIONS(12303), + [anon_sym_BSLASHsvolcite] = ACTIONS(12303), + [anon_sym_BSLASHSvolcite] = ACTIONS(12303), + [anon_sym_BSLASHtvolcite] = ACTIONS(12303), + [anon_sym_BSLASHTvolcite] = ACTIONS(12303), + [anon_sym_BSLASHavolcite] = ACTIONS(12303), + [anon_sym_BSLASHAvolcite] = ACTIONS(12303), + [anon_sym_BSLASHnotecite] = ACTIONS(12303), + [anon_sym_BSLASHpnotecite] = ACTIONS(12303), + [anon_sym_BSLASHPnotecite] = ACTIONS(12303), + [anon_sym_BSLASHfnotecite] = ACTIONS(12303), + [anon_sym_BSLASHusepackage] = ACTIONS(12303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12303), + [anon_sym_BSLASHinclude] = ACTIONS(12303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12303), + [anon_sym_BSLASHinput] = ACTIONS(12303), + [anon_sym_BSLASHsubfile] = ACTIONS(12303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12303), + [anon_sym_BSLASHbibliography] = ACTIONS(12303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12303), + [anon_sym_BSLASHincludesvg] = ACTIONS(12303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12303), + [anon_sym_BSLASHimport] = ACTIONS(12303), + [anon_sym_BSLASHsubimport] = ACTIONS(12303), + [anon_sym_BSLASHinputfrom] = ACTIONS(12303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12303), + [anon_sym_BSLASHincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHlabel] = ACTIONS(12303), + [anon_sym_BSLASHref] = ACTIONS(12303), + [anon_sym_BSLASHvref] = ACTIONS(12303), + [anon_sym_BSLASHVref] = ACTIONS(12303), + [anon_sym_BSLASHautoref] = ACTIONS(12303), + [anon_sym_BSLASHpageref] = ACTIONS(12303), + [anon_sym_BSLASHcref] = ACTIONS(12303), + [anon_sym_BSLASHCref] = ACTIONS(12303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnameCref] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHlabelcref] = ACTIONS(12303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12303), + [anon_sym_BSLASHeqref] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange] = ACTIONS(12303), + [anon_sym_BSLASHCrefrange] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewlabel] = ACTIONS(12303), + [anon_sym_BSLASHnewcommand] = ACTIONS(12303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12303), + [anon_sym_BSLASHgls] = ACTIONS(12303), + [anon_sym_BSLASHGls] = ACTIONS(12303), + [anon_sym_BSLASHGLS] = ACTIONS(12303), + [anon_sym_BSLASHglspl] = ACTIONS(12303), + [anon_sym_BSLASHGlspl] = ACTIONS(12303), + [anon_sym_BSLASHGLSpl] = ACTIONS(12303), + [anon_sym_BSLASHglsdisp] = ACTIONS(12303), + [anon_sym_BSLASHglslink] = ACTIONS(12303), + [anon_sym_BSLASHglstext] = ACTIONS(12303), + [anon_sym_BSLASHGlstext] = ACTIONS(12303), + [anon_sym_BSLASHGLStext] = ACTIONS(12303), + [anon_sym_BSLASHglsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12303), + [anon_sym_BSLASHglsplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSplural] = ACTIONS(12303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHglsname] = ACTIONS(12303), + [anon_sym_BSLASHGlsname] = ACTIONS(12303), + [anon_sym_BSLASHGLSname] = ACTIONS(12303), + [anon_sym_BSLASHglssymbol] = ACTIONS(12303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12303), + [anon_sym_BSLASHglsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12303), + [anon_sym_BSLASHglsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12303), + [anon_sym_BSLASHglsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12303), + [anon_sym_BSLASHglsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12303), + [anon_sym_BSLASHglsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12303), + [anon_sym_BSLASHnewacronym] = ACTIONS(12303), + [anon_sym_BSLASHacrshort] = ACTIONS(12303), + [anon_sym_BSLASHAcrshort] = ACTIONS(12303), + [anon_sym_BSLASHACRshort] = ACTIONS(12303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12303), + [anon_sym_BSLASHacrlong] = ACTIONS(12303), + [anon_sym_BSLASHAcrlong] = ACTIONS(12303), + [anon_sym_BSLASHACRlong] = ACTIONS(12303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12303), + [anon_sym_BSLASHacrfull] = ACTIONS(12303), + [anon_sym_BSLASHAcrfull] = ACTIONS(12303), + [anon_sym_BSLASHACRfull] = ACTIONS(12303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12303), + [anon_sym_BSLASHacs] = ACTIONS(12303), + [anon_sym_BSLASHAcs] = ACTIONS(12303), + [anon_sym_BSLASHacsp] = ACTIONS(12303), + [anon_sym_BSLASHAcsp] = ACTIONS(12303), + [anon_sym_BSLASHacl] = ACTIONS(12303), + [anon_sym_BSLASHAcl] = ACTIONS(12303), + [anon_sym_BSLASHaclp] = ACTIONS(12303), + [anon_sym_BSLASHAclp] = ACTIONS(12303), + [anon_sym_BSLASHacf] = ACTIONS(12303), + [anon_sym_BSLASHAcf] = ACTIONS(12303), + [anon_sym_BSLASHacfp] = ACTIONS(12303), + [anon_sym_BSLASHAcfp] = ACTIONS(12303), + [anon_sym_BSLASHac] = ACTIONS(12303), + [anon_sym_BSLASHAc] = ACTIONS(12303), + [anon_sym_BSLASHacp] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12303), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12303), + [anon_sym_BSLASHcolor] = ACTIONS(12303), + [anon_sym_BSLASHcolorbox] = ACTIONS(12303), + [anon_sym_BSLASHtextcolor] = ACTIONS(12303), + [anon_sym_BSLASHpagecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12303), + }, + [1775] = { + [sym_generic_command_name] = ACTIONS(12307), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12307), + [anon_sym_LBRACK] = ACTIONS(12305), + [anon_sym_RBRACK] = ACTIONS(12305), + [anon_sym_LBRACE] = ACTIONS(12305), + [anon_sym_RBRACE] = ACTIONS(12305), + [anon_sym_LPAREN] = ACTIONS(12305), + [anon_sym_COMMA] = ACTIONS(12305), + [anon_sym_EQ] = ACTIONS(12305), + [sym_word] = ACTIONS(12305), + [sym_param] = ACTIONS(12305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12305), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12305), + [anon_sym_DOLLAR] = ACTIONS(12307), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12305), + [anon_sym_BSLASHbegin] = ACTIONS(12307), + [anon_sym_BSLASHcaption] = ACTIONS(12307), + [anon_sym_BSLASHcite] = ACTIONS(12307), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCite] = ACTIONS(12307), + [anon_sym_BSLASHnocite] = ACTIONS(12307), + [anon_sym_BSLASHcitet] = ACTIONS(12307), + [anon_sym_BSLASHcitep] = ACTIONS(12307), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteauthor] = ACTIONS(12307), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12307), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitetitle] = ACTIONS(12307), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteyear] = ACTIONS(12307), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitedate] = ACTIONS(12307), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteurl] = ACTIONS(12307), + [anon_sym_BSLASHfullcite] = ACTIONS(12307), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12307), + [anon_sym_BSLASHcitealt] = ACTIONS(12307), + [anon_sym_BSLASHcitealp] = ACTIONS(12307), + [anon_sym_BSLASHcitetext] = ACTIONS(12307), + [anon_sym_BSLASHparencite] = ACTIONS(12307), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHParencite] = ACTIONS(12307), + [anon_sym_BSLASHfootcite] = ACTIONS(12307), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12307), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12307), + [anon_sym_BSLASHtextcite] = ACTIONS(12307), + [anon_sym_BSLASHTextcite] = ACTIONS(12307), + [anon_sym_BSLASHsmartcite] = ACTIONS(12307), + [anon_sym_BSLASHSmartcite] = ACTIONS(12307), + [anon_sym_BSLASHsupercite] = ACTIONS(12307), + [anon_sym_BSLASHautocite] = ACTIONS(12307), + [anon_sym_BSLASHAutocite] = ACTIONS(12307), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHvolcite] = ACTIONS(12307), + [anon_sym_BSLASHVolcite] = ACTIONS(12307), + [anon_sym_BSLASHpvolcite] = ACTIONS(12307), + [anon_sym_BSLASHPvolcite] = ACTIONS(12307), + [anon_sym_BSLASHfvolcite] = ACTIONS(12307), + [anon_sym_BSLASHftvolcite] = ACTIONS(12307), + [anon_sym_BSLASHsvolcite] = ACTIONS(12307), + [anon_sym_BSLASHSvolcite] = ACTIONS(12307), + [anon_sym_BSLASHtvolcite] = ACTIONS(12307), + [anon_sym_BSLASHTvolcite] = ACTIONS(12307), + [anon_sym_BSLASHavolcite] = ACTIONS(12307), + [anon_sym_BSLASHAvolcite] = ACTIONS(12307), + [anon_sym_BSLASHnotecite] = ACTIONS(12307), + [anon_sym_BSLASHpnotecite] = ACTIONS(12307), + [anon_sym_BSLASHPnotecite] = ACTIONS(12307), + [anon_sym_BSLASHfnotecite] = ACTIONS(12307), + [anon_sym_BSLASHusepackage] = ACTIONS(12307), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12307), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12307), + [anon_sym_BSLASHinclude] = ACTIONS(12307), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12307), + [anon_sym_BSLASHinput] = ACTIONS(12307), + [anon_sym_BSLASHsubfile] = ACTIONS(12307), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12307), + [anon_sym_BSLASHbibliography] = ACTIONS(12307), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12307), + [anon_sym_BSLASHincludesvg] = ACTIONS(12307), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12307), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12307), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12307), + [anon_sym_BSLASHimport] = ACTIONS(12307), + [anon_sym_BSLASHsubimport] = ACTIONS(12307), + [anon_sym_BSLASHinputfrom] = ACTIONS(12307), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12307), + [anon_sym_BSLASHincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHlabel] = ACTIONS(12307), + [anon_sym_BSLASHref] = ACTIONS(12307), + [anon_sym_BSLASHvref] = ACTIONS(12307), + [anon_sym_BSLASHVref] = ACTIONS(12307), + [anon_sym_BSLASHautoref] = ACTIONS(12307), + [anon_sym_BSLASHpageref] = ACTIONS(12307), + [anon_sym_BSLASHcref] = ACTIONS(12307), + [anon_sym_BSLASHCref] = ACTIONS(12307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnameCref] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHlabelcref] = ACTIONS(12307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12307), + [anon_sym_BSLASHeqref] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange] = ACTIONS(12307), + [anon_sym_BSLASHCrefrange] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewlabel] = ACTIONS(12307), + [anon_sym_BSLASHnewcommand] = ACTIONS(12307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12307), + [anon_sym_BSLASHgls] = ACTIONS(12307), + [anon_sym_BSLASHGls] = ACTIONS(12307), + [anon_sym_BSLASHGLS] = ACTIONS(12307), + [anon_sym_BSLASHglspl] = ACTIONS(12307), + [anon_sym_BSLASHGlspl] = ACTIONS(12307), + [anon_sym_BSLASHGLSpl] = ACTIONS(12307), + [anon_sym_BSLASHglsdisp] = ACTIONS(12307), + [anon_sym_BSLASHglslink] = ACTIONS(12307), + [anon_sym_BSLASHglstext] = ACTIONS(12307), + [anon_sym_BSLASHGlstext] = ACTIONS(12307), + [anon_sym_BSLASHGLStext] = ACTIONS(12307), + [anon_sym_BSLASHglsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12307), + [anon_sym_BSLASHglsplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSplural] = ACTIONS(12307), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHglsname] = ACTIONS(12307), + [anon_sym_BSLASHGlsname] = ACTIONS(12307), + [anon_sym_BSLASHGLSname] = ACTIONS(12307), + [anon_sym_BSLASHglssymbol] = ACTIONS(12307), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12307), + [anon_sym_BSLASHglsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12307), + [anon_sym_BSLASHglsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12307), + [anon_sym_BSLASHglsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12307), + [anon_sym_BSLASHglsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12307), + [anon_sym_BSLASHglsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12307), + [anon_sym_BSLASHnewacronym] = ACTIONS(12307), + [anon_sym_BSLASHacrshort] = ACTIONS(12307), + [anon_sym_BSLASHAcrshort] = ACTIONS(12307), + [anon_sym_BSLASHACRshort] = ACTIONS(12307), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12307), + [anon_sym_BSLASHacrlong] = ACTIONS(12307), + [anon_sym_BSLASHAcrlong] = ACTIONS(12307), + [anon_sym_BSLASHACRlong] = ACTIONS(12307), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12307), + [anon_sym_BSLASHacrfull] = ACTIONS(12307), + [anon_sym_BSLASHAcrfull] = ACTIONS(12307), + [anon_sym_BSLASHACRfull] = ACTIONS(12307), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12307), + [anon_sym_BSLASHacs] = ACTIONS(12307), + [anon_sym_BSLASHAcs] = ACTIONS(12307), + [anon_sym_BSLASHacsp] = ACTIONS(12307), + [anon_sym_BSLASHAcsp] = ACTIONS(12307), + [anon_sym_BSLASHacl] = ACTIONS(12307), + [anon_sym_BSLASHAcl] = ACTIONS(12307), + [anon_sym_BSLASHaclp] = ACTIONS(12307), + [anon_sym_BSLASHAclp] = ACTIONS(12307), + [anon_sym_BSLASHacf] = ACTIONS(12307), + [anon_sym_BSLASHAcf] = ACTIONS(12307), + [anon_sym_BSLASHacfp] = ACTIONS(12307), + [anon_sym_BSLASHAcfp] = ACTIONS(12307), + [anon_sym_BSLASHac] = ACTIONS(12307), + [anon_sym_BSLASHAc] = ACTIONS(12307), + [anon_sym_BSLASHacp] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12307), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12307), + [anon_sym_BSLASHcolor] = ACTIONS(12307), + [anon_sym_BSLASHcolorbox] = ACTIONS(12307), + [anon_sym_BSLASHtextcolor] = ACTIONS(12307), + [anon_sym_BSLASHpagecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12307), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12307), + }, + [1776] = { + [sym_generic_command_name] = ACTIONS(12349), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12349), + [anon_sym_LBRACK] = ACTIONS(12347), + [anon_sym_RBRACK] = ACTIONS(12347), + [anon_sym_LBRACE] = ACTIONS(12347), + [anon_sym_RBRACE] = ACTIONS(12347), + [anon_sym_LPAREN] = ACTIONS(12347), + [anon_sym_COMMA] = ACTIONS(12347), + [anon_sym_EQ] = ACTIONS(12347), + [sym_word] = ACTIONS(12347), + [sym_param] = ACTIONS(12347), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12347), + [anon_sym_DOLLAR] = ACTIONS(12349), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12347), + [anon_sym_BSLASHbegin] = ACTIONS(12349), + [anon_sym_BSLASHcaption] = ACTIONS(12349), + [anon_sym_BSLASHcite] = ACTIONS(12349), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCite] = ACTIONS(12349), + [anon_sym_BSLASHnocite] = ACTIONS(12349), + [anon_sym_BSLASHcitet] = ACTIONS(12349), + [anon_sym_BSLASHcitep] = ACTIONS(12349), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteauthor] = ACTIONS(12349), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12349), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitetitle] = ACTIONS(12349), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteyear] = ACTIONS(12349), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitedate] = ACTIONS(12349), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteurl] = ACTIONS(12349), + [anon_sym_BSLASHfullcite] = ACTIONS(12349), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12349), + [anon_sym_BSLASHcitealt] = ACTIONS(12349), + [anon_sym_BSLASHcitealp] = ACTIONS(12349), + [anon_sym_BSLASHcitetext] = ACTIONS(12349), + [anon_sym_BSLASHparencite] = ACTIONS(12349), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHParencite] = ACTIONS(12349), + [anon_sym_BSLASHfootcite] = ACTIONS(12349), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12349), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12349), + [anon_sym_BSLASHtextcite] = ACTIONS(12349), + [anon_sym_BSLASHTextcite] = ACTIONS(12349), + [anon_sym_BSLASHsmartcite] = ACTIONS(12349), + [anon_sym_BSLASHSmartcite] = ACTIONS(12349), + [anon_sym_BSLASHsupercite] = ACTIONS(12349), + [anon_sym_BSLASHautocite] = ACTIONS(12349), + [anon_sym_BSLASHAutocite] = ACTIONS(12349), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHvolcite] = ACTIONS(12349), + [anon_sym_BSLASHVolcite] = ACTIONS(12349), + [anon_sym_BSLASHpvolcite] = ACTIONS(12349), + [anon_sym_BSLASHPvolcite] = ACTIONS(12349), + [anon_sym_BSLASHfvolcite] = ACTIONS(12349), + [anon_sym_BSLASHftvolcite] = ACTIONS(12349), + [anon_sym_BSLASHsvolcite] = ACTIONS(12349), + [anon_sym_BSLASHSvolcite] = ACTIONS(12349), + [anon_sym_BSLASHtvolcite] = ACTIONS(12349), + [anon_sym_BSLASHTvolcite] = ACTIONS(12349), + [anon_sym_BSLASHavolcite] = ACTIONS(12349), + [anon_sym_BSLASHAvolcite] = ACTIONS(12349), + [anon_sym_BSLASHnotecite] = ACTIONS(12349), + [anon_sym_BSLASHpnotecite] = ACTIONS(12349), + [anon_sym_BSLASHPnotecite] = ACTIONS(12349), + [anon_sym_BSLASHfnotecite] = ACTIONS(12349), + [anon_sym_BSLASHusepackage] = ACTIONS(12349), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12349), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12349), + [anon_sym_BSLASHinclude] = ACTIONS(12349), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12349), + [anon_sym_BSLASHinput] = ACTIONS(12349), + [anon_sym_BSLASHsubfile] = ACTIONS(12349), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12349), + [anon_sym_BSLASHbibliography] = ACTIONS(12349), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12349), + [anon_sym_BSLASHincludesvg] = ACTIONS(12349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12349), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12349), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12349), + [anon_sym_BSLASHimport] = ACTIONS(12349), + [anon_sym_BSLASHsubimport] = ACTIONS(12349), + [anon_sym_BSLASHinputfrom] = ACTIONS(12349), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12349), + [anon_sym_BSLASHincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHlabel] = ACTIONS(12349), + [anon_sym_BSLASHref] = ACTIONS(12349), + [anon_sym_BSLASHvref] = ACTIONS(12349), + [anon_sym_BSLASHVref] = ACTIONS(12349), + [anon_sym_BSLASHautoref] = ACTIONS(12349), + [anon_sym_BSLASHpageref] = ACTIONS(12349), + [anon_sym_BSLASHcref] = ACTIONS(12349), + [anon_sym_BSLASHCref] = ACTIONS(12349), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnameCref] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHlabelcref] = ACTIONS(12349), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12349), + [anon_sym_BSLASHeqref] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange] = ACTIONS(12349), + [anon_sym_BSLASHCrefrange] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewlabel] = ACTIONS(12349), + [anon_sym_BSLASHnewcommand] = ACTIONS(12349), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12349), + [anon_sym_BSLASHgls] = ACTIONS(12349), + [anon_sym_BSLASHGls] = ACTIONS(12349), + [anon_sym_BSLASHGLS] = ACTIONS(12349), + [anon_sym_BSLASHglspl] = ACTIONS(12349), + [anon_sym_BSLASHGlspl] = ACTIONS(12349), + [anon_sym_BSLASHGLSpl] = ACTIONS(12349), + [anon_sym_BSLASHglsdisp] = ACTIONS(12349), + [anon_sym_BSLASHglslink] = ACTIONS(12349), + [anon_sym_BSLASHglstext] = ACTIONS(12349), + [anon_sym_BSLASHGlstext] = ACTIONS(12349), + [anon_sym_BSLASHGLStext] = ACTIONS(12349), + [anon_sym_BSLASHglsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12349), + [anon_sym_BSLASHglsplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSplural] = ACTIONS(12349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHglsname] = ACTIONS(12349), + [anon_sym_BSLASHGlsname] = ACTIONS(12349), + [anon_sym_BSLASHGLSname] = ACTIONS(12349), + [anon_sym_BSLASHglssymbol] = ACTIONS(12349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12349), + [anon_sym_BSLASHglsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12349), + [anon_sym_BSLASHglsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12349), + [anon_sym_BSLASHglsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12349), + [anon_sym_BSLASHglsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12349), + [anon_sym_BSLASHglsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12349), + [anon_sym_BSLASHnewacronym] = ACTIONS(12349), + [anon_sym_BSLASHacrshort] = ACTIONS(12349), + [anon_sym_BSLASHAcrshort] = ACTIONS(12349), + [anon_sym_BSLASHACRshort] = ACTIONS(12349), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12349), + [anon_sym_BSLASHacrlong] = ACTIONS(12349), + [anon_sym_BSLASHAcrlong] = ACTIONS(12349), + [anon_sym_BSLASHACRlong] = ACTIONS(12349), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12349), + [anon_sym_BSLASHacrfull] = ACTIONS(12349), + [anon_sym_BSLASHAcrfull] = ACTIONS(12349), + [anon_sym_BSLASHACRfull] = ACTIONS(12349), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12349), + [anon_sym_BSLASHacs] = ACTIONS(12349), + [anon_sym_BSLASHAcs] = ACTIONS(12349), + [anon_sym_BSLASHacsp] = ACTIONS(12349), + [anon_sym_BSLASHAcsp] = ACTIONS(12349), + [anon_sym_BSLASHacl] = ACTIONS(12349), + [anon_sym_BSLASHAcl] = ACTIONS(12349), + [anon_sym_BSLASHaclp] = ACTIONS(12349), + [anon_sym_BSLASHAclp] = ACTIONS(12349), + [anon_sym_BSLASHacf] = ACTIONS(12349), + [anon_sym_BSLASHAcf] = ACTIONS(12349), + [anon_sym_BSLASHacfp] = ACTIONS(12349), + [anon_sym_BSLASHAcfp] = ACTIONS(12349), + [anon_sym_BSLASHac] = ACTIONS(12349), + [anon_sym_BSLASHAc] = ACTIONS(12349), + [anon_sym_BSLASHacp] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12349), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12349), + [anon_sym_BSLASHcolor] = ACTIONS(12349), + [anon_sym_BSLASHcolorbox] = ACTIONS(12349), + [anon_sym_BSLASHtextcolor] = ACTIONS(12349), + [anon_sym_BSLASHpagecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12349), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12349), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12349), + }, + [1777] = { + [sym_generic_command_name] = ACTIONS(12315), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12315), + [anon_sym_LBRACK] = ACTIONS(12313), + [anon_sym_RBRACK] = ACTIONS(12313), + [anon_sym_LBRACE] = ACTIONS(12313), + [anon_sym_RBRACE] = ACTIONS(12313), + [anon_sym_LPAREN] = ACTIONS(12313), + [anon_sym_COMMA] = ACTIONS(12313), + [anon_sym_EQ] = ACTIONS(12313), + [sym_word] = ACTIONS(12313), + [sym_param] = ACTIONS(12313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12313), + [anon_sym_DOLLAR] = ACTIONS(12315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12313), + [anon_sym_BSLASHbegin] = ACTIONS(12315), + [anon_sym_BSLASHcaption] = ACTIONS(12315), + [anon_sym_BSLASHcite] = ACTIONS(12315), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCite] = ACTIONS(12315), + [anon_sym_BSLASHnocite] = ACTIONS(12315), + [anon_sym_BSLASHcitet] = ACTIONS(12315), + [anon_sym_BSLASHcitep] = ACTIONS(12315), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteauthor] = ACTIONS(12315), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12315), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitetitle] = ACTIONS(12315), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteyear] = ACTIONS(12315), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitedate] = ACTIONS(12315), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteurl] = ACTIONS(12315), + [anon_sym_BSLASHfullcite] = ACTIONS(12315), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12315), + [anon_sym_BSLASHcitealt] = ACTIONS(12315), + [anon_sym_BSLASHcitealp] = ACTIONS(12315), + [anon_sym_BSLASHcitetext] = ACTIONS(12315), + [anon_sym_BSLASHparencite] = ACTIONS(12315), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHParencite] = ACTIONS(12315), + [anon_sym_BSLASHfootcite] = ACTIONS(12315), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12315), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12315), + [anon_sym_BSLASHtextcite] = ACTIONS(12315), + [anon_sym_BSLASHTextcite] = ACTIONS(12315), + [anon_sym_BSLASHsmartcite] = ACTIONS(12315), + [anon_sym_BSLASHSmartcite] = ACTIONS(12315), + [anon_sym_BSLASHsupercite] = ACTIONS(12315), + [anon_sym_BSLASHautocite] = ACTIONS(12315), + [anon_sym_BSLASHAutocite] = ACTIONS(12315), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHvolcite] = ACTIONS(12315), + [anon_sym_BSLASHVolcite] = ACTIONS(12315), + [anon_sym_BSLASHpvolcite] = ACTIONS(12315), + [anon_sym_BSLASHPvolcite] = ACTIONS(12315), + [anon_sym_BSLASHfvolcite] = ACTIONS(12315), + [anon_sym_BSLASHftvolcite] = ACTIONS(12315), + [anon_sym_BSLASHsvolcite] = ACTIONS(12315), + [anon_sym_BSLASHSvolcite] = ACTIONS(12315), + [anon_sym_BSLASHtvolcite] = ACTIONS(12315), + [anon_sym_BSLASHTvolcite] = ACTIONS(12315), + [anon_sym_BSLASHavolcite] = ACTIONS(12315), + [anon_sym_BSLASHAvolcite] = ACTIONS(12315), + [anon_sym_BSLASHnotecite] = ACTIONS(12315), + [anon_sym_BSLASHpnotecite] = ACTIONS(12315), + [anon_sym_BSLASHPnotecite] = ACTIONS(12315), + [anon_sym_BSLASHfnotecite] = ACTIONS(12315), + [anon_sym_BSLASHusepackage] = ACTIONS(12315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12315), + [anon_sym_BSLASHinclude] = ACTIONS(12315), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12315), + [anon_sym_BSLASHinput] = ACTIONS(12315), + [anon_sym_BSLASHsubfile] = ACTIONS(12315), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12315), + [anon_sym_BSLASHbibliography] = ACTIONS(12315), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12315), + [anon_sym_BSLASHincludesvg] = ACTIONS(12315), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12315), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12315), + [anon_sym_BSLASHimport] = ACTIONS(12315), + [anon_sym_BSLASHsubimport] = ACTIONS(12315), + [anon_sym_BSLASHinputfrom] = ACTIONS(12315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12315), + [anon_sym_BSLASHincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHlabel] = ACTIONS(12315), + [anon_sym_BSLASHref] = ACTIONS(12315), + [anon_sym_BSLASHvref] = ACTIONS(12315), + [anon_sym_BSLASHVref] = ACTIONS(12315), + [anon_sym_BSLASHautoref] = ACTIONS(12315), + [anon_sym_BSLASHpageref] = ACTIONS(12315), + [anon_sym_BSLASHcref] = ACTIONS(12315), + [anon_sym_BSLASHCref] = ACTIONS(12315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnameCref] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHlabelcref] = ACTIONS(12315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12315), + [anon_sym_BSLASHeqref] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange] = ACTIONS(12315), + [anon_sym_BSLASHCrefrange] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewlabel] = ACTIONS(12315), + [anon_sym_BSLASHnewcommand] = ACTIONS(12315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12315), + [anon_sym_BSLASHgls] = ACTIONS(12315), + [anon_sym_BSLASHGls] = ACTIONS(12315), + [anon_sym_BSLASHGLS] = ACTIONS(12315), + [anon_sym_BSLASHglspl] = ACTIONS(12315), + [anon_sym_BSLASHGlspl] = ACTIONS(12315), + [anon_sym_BSLASHGLSpl] = ACTIONS(12315), + [anon_sym_BSLASHglsdisp] = ACTIONS(12315), + [anon_sym_BSLASHglslink] = ACTIONS(12315), + [anon_sym_BSLASHglstext] = ACTIONS(12315), + [anon_sym_BSLASHGlstext] = ACTIONS(12315), + [anon_sym_BSLASHGLStext] = ACTIONS(12315), + [anon_sym_BSLASHglsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12315), + [anon_sym_BSLASHglsplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSplural] = ACTIONS(12315), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHglsname] = ACTIONS(12315), + [anon_sym_BSLASHGlsname] = ACTIONS(12315), + [anon_sym_BSLASHGLSname] = ACTIONS(12315), + [anon_sym_BSLASHglssymbol] = ACTIONS(12315), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12315), + [anon_sym_BSLASHglsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12315), + [anon_sym_BSLASHglsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12315), + [anon_sym_BSLASHglsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12315), + [anon_sym_BSLASHglsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12315), + [anon_sym_BSLASHglsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12315), + [anon_sym_BSLASHnewacronym] = ACTIONS(12315), + [anon_sym_BSLASHacrshort] = ACTIONS(12315), + [anon_sym_BSLASHAcrshort] = ACTIONS(12315), + [anon_sym_BSLASHACRshort] = ACTIONS(12315), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12315), + [anon_sym_BSLASHacrlong] = ACTIONS(12315), + [anon_sym_BSLASHAcrlong] = ACTIONS(12315), + [anon_sym_BSLASHACRlong] = ACTIONS(12315), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12315), + [anon_sym_BSLASHacrfull] = ACTIONS(12315), + [anon_sym_BSLASHAcrfull] = ACTIONS(12315), + [anon_sym_BSLASHACRfull] = ACTIONS(12315), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12315), + [anon_sym_BSLASHacs] = ACTIONS(12315), + [anon_sym_BSLASHAcs] = ACTIONS(12315), + [anon_sym_BSLASHacsp] = ACTIONS(12315), + [anon_sym_BSLASHAcsp] = ACTIONS(12315), + [anon_sym_BSLASHacl] = ACTIONS(12315), + [anon_sym_BSLASHAcl] = ACTIONS(12315), + [anon_sym_BSLASHaclp] = ACTIONS(12315), + [anon_sym_BSLASHAclp] = ACTIONS(12315), + [anon_sym_BSLASHacf] = ACTIONS(12315), + [anon_sym_BSLASHAcf] = ACTIONS(12315), + [anon_sym_BSLASHacfp] = ACTIONS(12315), + [anon_sym_BSLASHAcfp] = ACTIONS(12315), + [anon_sym_BSLASHac] = ACTIONS(12315), + [anon_sym_BSLASHAc] = ACTIONS(12315), + [anon_sym_BSLASHacp] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12315), + [anon_sym_BSLASHcolor] = ACTIONS(12315), + [anon_sym_BSLASHcolorbox] = ACTIONS(12315), + [anon_sym_BSLASHtextcolor] = ACTIONS(12315), + [anon_sym_BSLASHpagecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12315), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12315), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12315), + }, + [1778] = { + [sym_generic_command_name] = ACTIONS(12120), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12120), + [anon_sym_LBRACK] = ACTIONS(12118), + [anon_sym_RBRACK] = ACTIONS(12118), + [anon_sym_LBRACE] = ACTIONS(12118), + [anon_sym_RBRACE] = ACTIONS(12118), + [anon_sym_LPAREN] = ACTIONS(12118), + [anon_sym_COMMA] = ACTIONS(12118), + [anon_sym_EQ] = ACTIONS(12118), + [sym_word] = ACTIONS(12118), + [sym_param] = ACTIONS(12118), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12118), + [anon_sym_DOLLAR] = ACTIONS(12120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12118), + [anon_sym_BSLASHbegin] = ACTIONS(12120), + [anon_sym_BSLASHcaption] = ACTIONS(12120), + [anon_sym_BSLASHcite] = ACTIONS(12120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCite] = ACTIONS(12120), + [anon_sym_BSLASHnocite] = ACTIONS(12120), + [anon_sym_BSLASHcitet] = ACTIONS(12120), + [anon_sym_BSLASHcitep] = ACTIONS(12120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteauthor] = ACTIONS(12120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitetitle] = ACTIONS(12120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteyear] = ACTIONS(12120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitedate] = ACTIONS(12120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteurl] = ACTIONS(12120), + [anon_sym_BSLASHfullcite] = ACTIONS(12120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12120), + [anon_sym_BSLASHcitealt] = ACTIONS(12120), + [anon_sym_BSLASHcitealp] = ACTIONS(12120), + [anon_sym_BSLASHcitetext] = ACTIONS(12120), + [anon_sym_BSLASHparencite] = ACTIONS(12120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHParencite] = ACTIONS(12120), + [anon_sym_BSLASHfootcite] = ACTIONS(12120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12120), + [anon_sym_BSLASHtextcite] = ACTIONS(12120), + [anon_sym_BSLASHTextcite] = ACTIONS(12120), + [anon_sym_BSLASHsmartcite] = ACTIONS(12120), + [anon_sym_BSLASHSmartcite] = ACTIONS(12120), + [anon_sym_BSLASHsupercite] = ACTIONS(12120), + [anon_sym_BSLASHautocite] = ACTIONS(12120), + [anon_sym_BSLASHAutocite] = ACTIONS(12120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHvolcite] = ACTIONS(12120), + [anon_sym_BSLASHVolcite] = ACTIONS(12120), + [anon_sym_BSLASHpvolcite] = ACTIONS(12120), + [anon_sym_BSLASHPvolcite] = ACTIONS(12120), + [anon_sym_BSLASHfvolcite] = ACTIONS(12120), + [anon_sym_BSLASHftvolcite] = ACTIONS(12120), + [anon_sym_BSLASHsvolcite] = ACTIONS(12120), + [anon_sym_BSLASHSvolcite] = ACTIONS(12120), + [anon_sym_BSLASHtvolcite] = ACTIONS(12120), + [anon_sym_BSLASHTvolcite] = ACTIONS(12120), + [anon_sym_BSLASHavolcite] = ACTIONS(12120), + [anon_sym_BSLASHAvolcite] = ACTIONS(12120), + [anon_sym_BSLASHnotecite] = ACTIONS(12120), + [anon_sym_BSLASHpnotecite] = ACTIONS(12120), + [anon_sym_BSLASHPnotecite] = ACTIONS(12120), + [anon_sym_BSLASHfnotecite] = ACTIONS(12120), + [anon_sym_BSLASHusepackage] = ACTIONS(12120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12120), + [anon_sym_BSLASHinclude] = ACTIONS(12120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12120), + [anon_sym_BSLASHinput] = ACTIONS(12120), + [anon_sym_BSLASHsubfile] = ACTIONS(12120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12120), + [anon_sym_BSLASHbibliography] = ACTIONS(12120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12120), + [anon_sym_BSLASHincludesvg] = ACTIONS(12120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12120), + [anon_sym_BSLASHimport] = ACTIONS(12120), + [anon_sym_BSLASHsubimport] = ACTIONS(12120), + [anon_sym_BSLASHinputfrom] = ACTIONS(12120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12120), + [anon_sym_BSLASHincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHlabel] = ACTIONS(12120), + [anon_sym_BSLASHref] = ACTIONS(12120), + [anon_sym_BSLASHvref] = ACTIONS(12120), + [anon_sym_BSLASHVref] = ACTIONS(12120), + [anon_sym_BSLASHautoref] = ACTIONS(12120), + [anon_sym_BSLASHpageref] = ACTIONS(12120), + [anon_sym_BSLASHcref] = ACTIONS(12120), + [anon_sym_BSLASHCref] = ACTIONS(12120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnameCref] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHlabelcref] = ACTIONS(12120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12120), + [anon_sym_BSLASHeqref] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange] = ACTIONS(12120), + [anon_sym_BSLASHCrefrange] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewlabel] = ACTIONS(12120), + [anon_sym_BSLASHnewcommand] = ACTIONS(12120), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12120), + [anon_sym_BSLASHgls] = ACTIONS(12120), + [anon_sym_BSLASHGls] = ACTIONS(12120), + [anon_sym_BSLASHGLS] = ACTIONS(12120), + [anon_sym_BSLASHglspl] = ACTIONS(12120), + [anon_sym_BSLASHGlspl] = ACTIONS(12120), + [anon_sym_BSLASHGLSpl] = ACTIONS(12120), + [anon_sym_BSLASHglsdisp] = ACTIONS(12120), + [anon_sym_BSLASHglslink] = ACTIONS(12120), + [anon_sym_BSLASHglstext] = ACTIONS(12120), + [anon_sym_BSLASHGlstext] = ACTIONS(12120), + [anon_sym_BSLASHGLStext] = ACTIONS(12120), + [anon_sym_BSLASHglsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12120), + [anon_sym_BSLASHglsplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSplural] = ACTIONS(12120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHglsname] = ACTIONS(12120), + [anon_sym_BSLASHGlsname] = ACTIONS(12120), + [anon_sym_BSLASHGLSname] = ACTIONS(12120), + [anon_sym_BSLASHglssymbol] = ACTIONS(12120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12120), + [anon_sym_BSLASHglsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12120), + [anon_sym_BSLASHglsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12120), + [anon_sym_BSLASHglsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12120), + [anon_sym_BSLASHglsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12120), + [anon_sym_BSLASHglsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12120), + [anon_sym_BSLASHnewacronym] = ACTIONS(12120), + [anon_sym_BSLASHacrshort] = ACTIONS(12120), + [anon_sym_BSLASHAcrshort] = ACTIONS(12120), + [anon_sym_BSLASHACRshort] = ACTIONS(12120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12120), + [anon_sym_BSLASHacrlong] = ACTIONS(12120), + [anon_sym_BSLASHAcrlong] = ACTIONS(12120), + [anon_sym_BSLASHACRlong] = ACTIONS(12120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12120), + [anon_sym_BSLASHacrfull] = ACTIONS(12120), + [anon_sym_BSLASHAcrfull] = ACTIONS(12120), + [anon_sym_BSLASHACRfull] = ACTIONS(12120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12120), + [anon_sym_BSLASHacs] = ACTIONS(12120), + [anon_sym_BSLASHAcs] = ACTIONS(12120), + [anon_sym_BSLASHacsp] = ACTIONS(12120), + [anon_sym_BSLASHAcsp] = ACTIONS(12120), + [anon_sym_BSLASHacl] = ACTIONS(12120), + [anon_sym_BSLASHAcl] = ACTIONS(12120), + [anon_sym_BSLASHaclp] = ACTIONS(12120), + [anon_sym_BSLASHAclp] = ACTIONS(12120), + [anon_sym_BSLASHacf] = ACTIONS(12120), + [anon_sym_BSLASHAcf] = ACTIONS(12120), + [anon_sym_BSLASHacfp] = ACTIONS(12120), + [anon_sym_BSLASHAcfp] = ACTIONS(12120), + [anon_sym_BSLASHac] = ACTIONS(12120), + [anon_sym_BSLASHAc] = ACTIONS(12120), + [anon_sym_BSLASHacp] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12120), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12120), + [anon_sym_BSLASHcolor] = ACTIONS(12120), + [anon_sym_BSLASHcolorbox] = ACTIONS(12120), + [anon_sym_BSLASHtextcolor] = ACTIONS(12120), + [anon_sym_BSLASHpagecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12120), + }, + [1779] = { + [sym_generic_command_name] = ACTIONS(12335), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12335), + [anon_sym_LBRACK] = ACTIONS(12791), + [anon_sym_RBRACK] = ACTIONS(12333), + [anon_sym_LBRACE] = ACTIONS(12333), + [anon_sym_RBRACE] = ACTIONS(12333), + [anon_sym_LPAREN] = ACTIONS(12333), + [anon_sym_COMMA] = ACTIONS(12333), + [anon_sym_EQ] = ACTIONS(12333), + [sym_word] = ACTIONS(12333), + [sym_param] = ACTIONS(12333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12333), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12333), + [anon_sym_DOLLAR] = ACTIONS(12335), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12333), + [anon_sym_BSLASHbegin] = ACTIONS(12335), + [anon_sym_BSLASHcaption] = ACTIONS(12335), + [anon_sym_BSLASHcite] = ACTIONS(12335), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCite] = ACTIONS(12335), + [anon_sym_BSLASHnocite] = ACTIONS(12335), + [anon_sym_BSLASHcitet] = ACTIONS(12335), + [anon_sym_BSLASHcitep] = ACTIONS(12335), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteauthor] = ACTIONS(12335), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12335), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitetitle] = ACTIONS(12335), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteyear] = ACTIONS(12335), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitedate] = ACTIONS(12335), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteurl] = ACTIONS(12335), + [anon_sym_BSLASHfullcite] = ACTIONS(12335), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12335), + [anon_sym_BSLASHcitealt] = ACTIONS(12335), + [anon_sym_BSLASHcitealp] = ACTIONS(12335), + [anon_sym_BSLASHcitetext] = ACTIONS(12335), + [anon_sym_BSLASHparencite] = ACTIONS(12335), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHParencite] = ACTIONS(12335), + [anon_sym_BSLASHfootcite] = ACTIONS(12335), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12335), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12335), + [anon_sym_BSLASHtextcite] = ACTIONS(12335), + [anon_sym_BSLASHTextcite] = ACTIONS(12335), + [anon_sym_BSLASHsmartcite] = ACTIONS(12335), + [anon_sym_BSLASHSmartcite] = ACTIONS(12335), + [anon_sym_BSLASHsupercite] = ACTIONS(12335), + [anon_sym_BSLASHautocite] = ACTIONS(12335), + [anon_sym_BSLASHAutocite] = ACTIONS(12335), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHvolcite] = ACTIONS(12335), + [anon_sym_BSLASHVolcite] = ACTIONS(12335), + [anon_sym_BSLASHpvolcite] = ACTIONS(12335), + [anon_sym_BSLASHPvolcite] = ACTIONS(12335), + [anon_sym_BSLASHfvolcite] = ACTIONS(12335), + [anon_sym_BSLASHftvolcite] = ACTIONS(12335), + [anon_sym_BSLASHsvolcite] = ACTIONS(12335), + [anon_sym_BSLASHSvolcite] = ACTIONS(12335), + [anon_sym_BSLASHtvolcite] = ACTIONS(12335), + [anon_sym_BSLASHTvolcite] = ACTIONS(12335), + [anon_sym_BSLASHavolcite] = ACTIONS(12335), + [anon_sym_BSLASHAvolcite] = ACTIONS(12335), + [anon_sym_BSLASHnotecite] = ACTIONS(12335), + [anon_sym_BSLASHpnotecite] = ACTIONS(12335), + [anon_sym_BSLASHPnotecite] = ACTIONS(12335), + [anon_sym_BSLASHfnotecite] = ACTIONS(12335), + [anon_sym_BSLASHusepackage] = ACTIONS(12335), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12335), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12335), + [anon_sym_BSLASHinclude] = ACTIONS(12335), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12335), + [anon_sym_BSLASHinput] = ACTIONS(12335), + [anon_sym_BSLASHsubfile] = ACTIONS(12335), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12335), + [anon_sym_BSLASHbibliography] = ACTIONS(12335), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12335), + [anon_sym_BSLASHincludesvg] = ACTIONS(12335), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12335), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12335), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12335), + [anon_sym_BSLASHimport] = ACTIONS(12335), + [anon_sym_BSLASHsubimport] = ACTIONS(12335), + [anon_sym_BSLASHinputfrom] = ACTIONS(12335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12335), + [anon_sym_BSLASHincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHlabel] = ACTIONS(12335), + [anon_sym_BSLASHref] = ACTIONS(12335), + [anon_sym_BSLASHvref] = ACTIONS(12335), + [anon_sym_BSLASHVref] = ACTIONS(12335), + [anon_sym_BSLASHautoref] = ACTIONS(12335), + [anon_sym_BSLASHpageref] = ACTIONS(12335), + [anon_sym_BSLASHcref] = ACTIONS(12335), + [anon_sym_BSLASHCref] = ACTIONS(12335), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnameCref] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHlabelcref] = ACTIONS(12335), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12335), + [anon_sym_BSLASHeqref] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange] = ACTIONS(12335), + [anon_sym_BSLASHCrefrange] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewlabel] = ACTIONS(12335), + [anon_sym_BSLASHnewcommand] = ACTIONS(12335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12335), + [anon_sym_BSLASHgls] = ACTIONS(12335), + [anon_sym_BSLASHGls] = ACTIONS(12335), + [anon_sym_BSLASHGLS] = ACTIONS(12335), + [anon_sym_BSLASHglspl] = ACTIONS(12335), + [anon_sym_BSLASHGlspl] = ACTIONS(12335), + [anon_sym_BSLASHGLSpl] = ACTIONS(12335), + [anon_sym_BSLASHglsdisp] = ACTIONS(12335), + [anon_sym_BSLASHglslink] = ACTIONS(12335), + [anon_sym_BSLASHglstext] = ACTIONS(12335), + [anon_sym_BSLASHGlstext] = ACTIONS(12335), + [anon_sym_BSLASHGLStext] = ACTIONS(12335), + [anon_sym_BSLASHglsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12335), + [anon_sym_BSLASHglsplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSplural] = ACTIONS(12335), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHglsname] = ACTIONS(12335), + [anon_sym_BSLASHGlsname] = ACTIONS(12335), + [anon_sym_BSLASHGLSname] = ACTIONS(12335), + [anon_sym_BSLASHglssymbol] = ACTIONS(12335), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12335), + [anon_sym_BSLASHglsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12335), + [anon_sym_BSLASHglsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12335), + [anon_sym_BSLASHglsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12335), + [anon_sym_BSLASHglsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12335), + [anon_sym_BSLASHglsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12335), + [anon_sym_BSLASHnewacronym] = ACTIONS(12335), + [anon_sym_BSLASHacrshort] = ACTIONS(12335), + [anon_sym_BSLASHAcrshort] = ACTIONS(12335), + [anon_sym_BSLASHACRshort] = ACTIONS(12335), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12335), + [anon_sym_BSLASHacrlong] = ACTIONS(12335), + [anon_sym_BSLASHAcrlong] = ACTIONS(12335), + [anon_sym_BSLASHACRlong] = ACTIONS(12335), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12335), + [anon_sym_BSLASHacrfull] = ACTIONS(12335), + [anon_sym_BSLASHAcrfull] = ACTIONS(12335), + [anon_sym_BSLASHACRfull] = ACTIONS(12335), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12335), + [anon_sym_BSLASHacs] = ACTIONS(12335), + [anon_sym_BSLASHAcs] = ACTIONS(12335), + [anon_sym_BSLASHacsp] = ACTIONS(12335), + [anon_sym_BSLASHAcsp] = ACTIONS(12335), + [anon_sym_BSLASHacl] = ACTIONS(12335), + [anon_sym_BSLASHAcl] = ACTIONS(12335), + [anon_sym_BSLASHaclp] = ACTIONS(12335), + [anon_sym_BSLASHAclp] = ACTIONS(12335), + [anon_sym_BSLASHacf] = ACTIONS(12335), + [anon_sym_BSLASHAcf] = ACTIONS(12335), + [anon_sym_BSLASHacfp] = ACTIONS(12335), + [anon_sym_BSLASHAcfp] = ACTIONS(12335), + [anon_sym_BSLASHac] = ACTIONS(12335), + [anon_sym_BSLASHAc] = ACTIONS(12335), + [anon_sym_BSLASHacp] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12335), + [anon_sym_BSLASHcolor] = ACTIONS(12335), + [anon_sym_BSLASHcolorbox] = ACTIONS(12335), + [anon_sym_BSLASHtextcolor] = ACTIONS(12335), + [anon_sym_BSLASHpagecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12335), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12335), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12335), + }, + [1780] = { + [sym_generic_command_name] = ACTIONS(12341), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12341), + [anon_sym_LBRACK] = ACTIONS(12339), + [anon_sym_RBRACK] = ACTIONS(12339), + [anon_sym_LBRACE] = ACTIONS(12339), + [anon_sym_RBRACE] = ACTIONS(12339), + [anon_sym_LPAREN] = ACTIONS(12339), + [anon_sym_COMMA] = ACTIONS(12339), + [anon_sym_EQ] = ACTIONS(12339), + [sym_word] = ACTIONS(12339), + [sym_param] = ACTIONS(12339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12339), + [anon_sym_DOLLAR] = ACTIONS(12341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12339), + [anon_sym_BSLASHbegin] = ACTIONS(12341), + [anon_sym_BSLASHcaption] = ACTIONS(12341), + [anon_sym_BSLASHcite] = ACTIONS(12341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCite] = ACTIONS(12341), + [anon_sym_BSLASHnocite] = ACTIONS(12341), + [anon_sym_BSLASHcitet] = ACTIONS(12341), + [anon_sym_BSLASHcitep] = ACTIONS(12341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteauthor] = ACTIONS(12341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitetitle] = ACTIONS(12341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteyear] = ACTIONS(12341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitedate] = ACTIONS(12341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteurl] = ACTIONS(12341), + [anon_sym_BSLASHfullcite] = ACTIONS(12341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12341), + [anon_sym_BSLASHcitealt] = ACTIONS(12341), + [anon_sym_BSLASHcitealp] = ACTIONS(12341), + [anon_sym_BSLASHcitetext] = ACTIONS(12341), + [anon_sym_BSLASHparencite] = ACTIONS(12341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHParencite] = ACTIONS(12341), + [anon_sym_BSLASHfootcite] = ACTIONS(12341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12341), + [anon_sym_BSLASHtextcite] = ACTIONS(12341), + [anon_sym_BSLASHTextcite] = ACTIONS(12341), + [anon_sym_BSLASHsmartcite] = ACTIONS(12341), + [anon_sym_BSLASHSmartcite] = ACTIONS(12341), + [anon_sym_BSLASHsupercite] = ACTIONS(12341), + [anon_sym_BSLASHautocite] = ACTIONS(12341), + [anon_sym_BSLASHAutocite] = ACTIONS(12341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHvolcite] = ACTIONS(12341), + [anon_sym_BSLASHVolcite] = ACTIONS(12341), + [anon_sym_BSLASHpvolcite] = ACTIONS(12341), + [anon_sym_BSLASHPvolcite] = ACTIONS(12341), + [anon_sym_BSLASHfvolcite] = ACTIONS(12341), + [anon_sym_BSLASHftvolcite] = ACTIONS(12341), + [anon_sym_BSLASHsvolcite] = ACTIONS(12341), + [anon_sym_BSLASHSvolcite] = ACTIONS(12341), + [anon_sym_BSLASHtvolcite] = ACTIONS(12341), + [anon_sym_BSLASHTvolcite] = ACTIONS(12341), + [anon_sym_BSLASHavolcite] = ACTIONS(12341), + [anon_sym_BSLASHAvolcite] = ACTIONS(12341), + [anon_sym_BSLASHnotecite] = ACTIONS(12341), + [anon_sym_BSLASHpnotecite] = ACTIONS(12341), + [anon_sym_BSLASHPnotecite] = ACTIONS(12341), + [anon_sym_BSLASHfnotecite] = ACTIONS(12341), + [anon_sym_BSLASHusepackage] = ACTIONS(12341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12341), + [anon_sym_BSLASHinclude] = ACTIONS(12341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12341), + [anon_sym_BSLASHinput] = ACTIONS(12341), + [anon_sym_BSLASHsubfile] = ACTIONS(12341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12341), + [anon_sym_BSLASHbibliography] = ACTIONS(12341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12341), + [anon_sym_BSLASHincludesvg] = ACTIONS(12341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12341), + [anon_sym_BSLASHimport] = ACTIONS(12341), + [anon_sym_BSLASHsubimport] = ACTIONS(12341), + [anon_sym_BSLASHinputfrom] = ACTIONS(12341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12341), + [anon_sym_BSLASHincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHlabel] = ACTIONS(12341), + [anon_sym_BSLASHref] = ACTIONS(12341), + [anon_sym_BSLASHvref] = ACTIONS(12341), + [anon_sym_BSLASHVref] = ACTIONS(12341), + [anon_sym_BSLASHautoref] = ACTIONS(12341), + [anon_sym_BSLASHpageref] = ACTIONS(12341), + [anon_sym_BSLASHcref] = ACTIONS(12341), + [anon_sym_BSLASHCref] = ACTIONS(12341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnameCref] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHlabelcref] = ACTIONS(12341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12341), + [anon_sym_BSLASHeqref] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange] = ACTIONS(12341), + [anon_sym_BSLASHCrefrange] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewlabel] = ACTIONS(12341), + [anon_sym_BSLASHnewcommand] = ACTIONS(12341), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12341), + [anon_sym_BSLASHgls] = ACTIONS(12341), + [anon_sym_BSLASHGls] = ACTIONS(12341), + [anon_sym_BSLASHGLS] = ACTIONS(12341), + [anon_sym_BSLASHglspl] = ACTIONS(12341), + [anon_sym_BSLASHGlspl] = ACTIONS(12341), + [anon_sym_BSLASHGLSpl] = ACTIONS(12341), + [anon_sym_BSLASHglsdisp] = ACTIONS(12341), + [anon_sym_BSLASHglslink] = ACTIONS(12341), + [anon_sym_BSLASHglstext] = ACTIONS(12341), + [anon_sym_BSLASHGlstext] = ACTIONS(12341), + [anon_sym_BSLASHGLStext] = ACTIONS(12341), + [anon_sym_BSLASHglsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12341), + [anon_sym_BSLASHglsplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSplural] = ACTIONS(12341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHglsname] = ACTIONS(12341), + [anon_sym_BSLASHGlsname] = ACTIONS(12341), + [anon_sym_BSLASHGLSname] = ACTIONS(12341), + [anon_sym_BSLASHglssymbol] = ACTIONS(12341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12341), + [anon_sym_BSLASHglsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12341), + [anon_sym_BSLASHglsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12341), + [anon_sym_BSLASHglsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12341), + [anon_sym_BSLASHglsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12341), + [anon_sym_BSLASHglsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12341), + [anon_sym_BSLASHnewacronym] = ACTIONS(12341), + [anon_sym_BSLASHacrshort] = ACTIONS(12341), + [anon_sym_BSLASHAcrshort] = ACTIONS(12341), + [anon_sym_BSLASHACRshort] = ACTIONS(12341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12341), + [anon_sym_BSLASHacrlong] = ACTIONS(12341), + [anon_sym_BSLASHAcrlong] = ACTIONS(12341), + [anon_sym_BSLASHACRlong] = ACTIONS(12341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12341), + [anon_sym_BSLASHacrfull] = ACTIONS(12341), + [anon_sym_BSLASHAcrfull] = ACTIONS(12341), + [anon_sym_BSLASHACRfull] = ACTIONS(12341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12341), + [anon_sym_BSLASHacs] = ACTIONS(12341), + [anon_sym_BSLASHAcs] = ACTIONS(12341), + [anon_sym_BSLASHacsp] = ACTIONS(12341), + [anon_sym_BSLASHAcsp] = ACTIONS(12341), + [anon_sym_BSLASHacl] = ACTIONS(12341), + [anon_sym_BSLASHAcl] = ACTIONS(12341), + [anon_sym_BSLASHaclp] = ACTIONS(12341), + [anon_sym_BSLASHAclp] = ACTIONS(12341), + [anon_sym_BSLASHacf] = ACTIONS(12341), + [anon_sym_BSLASHAcf] = ACTIONS(12341), + [anon_sym_BSLASHacfp] = ACTIONS(12341), + [anon_sym_BSLASHAcfp] = ACTIONS(12341), + [anon_sym_BSLASHac] = ACTIONS(12341), + [anon_sym_BSLASHAc] = ACTIONS(12341), + [anon_sym_BSLASHacp] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12341), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12341), + [anon_sym_BSLASHcolor] = ACTIONS(12341), + [anon_sym_BSLASHcolorbox] = ACTIONS(12341), + [anon_sym_BSLASHtextcolor] = ACTIONS(12341), + [anon_sym_BSLASHpagecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12341), + }, + [1781] = { + [sym_generic_command_name] = ACTIONS(12353), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12353), + [anon_sym_LBRACK] = ACTIONS(12351), + [anon_sym_RBRACK] = ACTIONS(12351), + [anon_sym_LBRACE] = ACTIONS(12351), + [anon_sym_RBRACE] = ACTIONS(12351), + [anon_sym_LPAREN] = ACTIONS(12351), + [anon_sym_COMMA] = ACTIONS(12351), + [anon_sym_EQ] = ACTIONS(12351), + [sym_word] = ACTIONS(12351), + [sym_param] = ACTIONS(12351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12351), + [anon_sym_DOLLAR] = ACTIONS(12353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12351), + [anon_sym_BSLASHbegin] = ACTIONS(12353), + [anon_sym_BSLASHcaption] = ACTIONS(12353), + [anon_sym_BSLASHcite] = ACTIONS(12353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCite] = ACTIONS(12353), + [anon_sym_BSLASHnocite] = ACTIONS(12353), + [anon_sym_BSLASHcitet] = ACTIONS(12353), + [anon_sym_BSLASHcitep] = ACTIONS(12353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteauthor] = ACTIONS(12353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitetitle] = ACTIONS(12353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteyear] = ACTIONS(12353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitedate] = ACTIONS(12353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteurl] = ACTIONS(12353), + [anon_sym_BSLASHfullcite] = ACTIONS(12353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12353), + [anon_sym_BSLASHcitealt] = ACTIONS(12353), + [anon_sym_BSLASHcitealp] = ACTIONS(12353), + [anon_sym_BSLASHcitetext] = ACTIONS(12353), + [anon_sym_BSLASHparencite] = ACTIONS(12353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHParencite] = ACTIONS(12353), + [anon_sym_BSLASHfootcite] = ACTIONS(12353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12353), + [anon_sym_BSLASHtextcite] = ACTIONS(12353), + [anon_sym_BSLASHTextcite] = ACTIONS(12353), + [anon_sym_BSLASHsmartcite] = ACTIONS(12353), + [anon_sym_BSLASHSmartcite] = ACTIONS(12353), + [anon_sym_BSLASHsupercite] = ACTIONS(12353), + [anon_sym_BSLASHautocite] = ACTIONS(12353), + [anon_sym_BSLASHAutocite] = ACTIONS(12353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHvolcite] = ACTIONS(12353), + [anon_sym_BSLASHVolcite] = ACTIONS(12353), + [anon_sym_BSLASHpvolcite] = ACTIONS(12353), + [anon_sym_BSLASHPvolcite] = ACTIONS(12353), + [anon_sym_BSLASHfvolcite] = ACTIONS(12353), + [anon_sym_BSLASHftvolcite] = ACTIONS(12353), + [anon_sym_BSLASHsvolcite] = ACTIONS(12353), + [anon_sym_BSLASHSvolcite] = ACTIONS(12353), + [anon_sym_BSLASHtvolcite] = ACTIONS(12353), + [anon_sym_BSLASHTvolcite] = ACTIONS(12353), + [anon_sym_BSLASHavolcite] = ACTIONS(12353), + [anon_sym_BSLASHAvolcite] = ACTIONS(12353), + [anon_sym_BSLASHnotecite] = ACTIONS(12353), + [anon_sym_BSLASHpnotecite] = ACTIONS(12353), + [anon_sym_BSLASHPnotecite] = ACTIONS(12353), + [anon_sym_BSLASHfnotecite] = ACTIONS(12353), + [anon_sym_BSLASHusepackage] = ACTIONS(12353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12353), + [anon_sym_BSLASHinclude] = ACTIONS(12353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12353), + [anon_sym_BSLASHinput] = ACTIONS(12353), + [anon_sym_BSLASHsubfile] = ACTIONS(12353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12353), + [anon_sym_BSLASHbibliography] = ACTIONS(12353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12353), + [anon_sym_BSLASHincludesvg] = ACTIONS(12353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12353), + [anon_sym_BSLASHimport] = ACTIONS(12353), + [anon_sym_BSLASHsubimport] = ACTIONS(12353), + [anon_sym_BSLASHinputfrom] = ACTIONS(12353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12353), + [anon_sym_BSLASHincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHlabel] = ACTIONS(12353), + [anon_sym_BSLASHref] = ACTIONS(12353), + [anon_sym_BSLASHvref] = ACTIONS(12353), + [anon_sym_BSLASHVref] = ACTIONS(12353), + [anon_sym_BSLASHautoref] = ACTIONS(12353), + [anon_sym_BSLASHpageref] = ACTIONS(12353), + [anon_sym_BSLASHcref] = ACTIONS(12353), + [anon_sym_BSLASHCref] = ACTIONS(12353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnameCref] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHlabelcref] = ACTIONS(12353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12353), + [anon_sym_BSLASHeqref] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange] = ACTIONS(12353), + [anon_sym_BSLASHCrefrange] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewlabel] = ACTIONS(12353), + [anon_sym_BSLASHnewcommand] = ACTIONS(12353), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12353), + [anon_sym_BSLASHgls] = ACTIONS(12353), + [anon_sym_BSLASHGls] = ACTIONS(12353), + [anon_sym_BSLASHGLS] = ACTIONS(12353), + [anon_sym_BSLASHglspl] = ACTIONS(12353), + [anon_sym_BSLASHGlspl] = ACTIONS(12353), + [anon_sym_BSLASHGLSpl] = ACTIONS(12353), + [anon_sym_BSLASHglsdisp] = ACTIONS(12353), + [anon_sym_BSLASHglslink] = ACTIONS(12353), + [anon_sym_BSLASHglstext] = ACTIONS(12353), + [anon_sym_BSLASHGlstext] = ACTIONS(12353), + [anon_sym_BSLASHGLStext] = ACTIONS(12353), + [anon_sym_BSLASHglsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12353), + [anon_sym_BSLASHglsplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSplural] = ACTIONS(12353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHglsname] = ACTIONS(12353), + [anon_sym_BSLASHGlsname] = ACTIONS(12353), + [anon_sym_BSLASHGLSname] = ACTIONS(12353), + [anon_sym_BSLASHglssymbol] = ACTIONS(12353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12353), + [anon_sym_BSLASHglsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12353), + [anon_sym_BSLASHglsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12353), + [anon_sym_BSLASHglsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12353), + [anon_sym_BSLASHglsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12353), + [anon_sym_BSLASHglsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12353), + [anon_sym_BSLASHnewacronym] = ACTIONS(12353), + [anon_sym_BSLASHacrshort] = ACTIONS(12353), + [anon_sym_BSLASHAcrshort] = ACTIONS(12353), + [anon_sym_BSLASHACRshort] = ACTIONS(12353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12353), + [anon_sym_BSLASHacrlong] = ACTIONS(12353), + [anon_sym_BSLASHAcrlong] = ACTIONS(12353), + [anon_sym_BSLASHACRlong] = ACTIONS(12353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12353), + [anon_sym_BSLASHacrfull] = ACTIONS(12353), + [anon_sym_BSLASHAcrfull] = ACTIONS(12353), + [anon_sym_BSLASHACRfull] = ACTIONS(12353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12353), + [anon_sym_BSLASHacs] = ACTIONS(12353), + [anon_sym_BSLASHAcs] = ACTIONS(12353), + [anon_sym_BSLASHacsp] = ACTIONS(12353), + [anon_sym_BSLASHAcsp] = ACTIONS(12353), + [anon_sym_BSLASHacl] = ACTIONS(12353), + [anon_sym_BSLASHAcl] = ACTIONS(12353), + [anon_sym_BSLASHaclp] = ACTIONS(12353), + [anon_sym_BSLASHAclp] = ACTIONS(12353), + [anon_sym_BSLASHacf] = ACTIONS(12353), + [anon_sym_BSLASHAcf] = ACTIONS(12353), + [anon_sym_BSLASHacfp] = ACTIONS(12353), + [anon_sym_BSLASHAcfp] = ACTIONS(12353), + [anon_sym_BSLASHac] = ACTIONS(12353), + [anon_sym_BSLASHAc] = ACTIONS(12353), + [anon_sym_BSLASHacp] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12353), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12353), + [anon_sym_BSLASHcolor] = ACTIONS(12353), + [anon_sym_BSLASHcolorbox] = ACTIONS(12353), + [anon_sym_BSLASHtextcolor] = ACTIONS(12353), + [anon_sym_BSLASHpagecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12353), + }, + [1782] = { + [sym_generic_command_name] = ACTIONS(12357), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12357), + [anon_sym_LBRACK] = ACTIONS(12355), + [anon_sym_RBRACK] = ACTIONS(12355), + [anon_sym_LBRACE] = ACTIONS(12355), + [anon_sym_RBRACE] = ACTIONS(12355), + [anon_sym_LPAREN] = ACTIONS(12355), + [anon_sym_COMMA] = ACTIONS(12355), + [anon_sym_EQ] = ACTIONS(12355), + [sym_word] = ACTIONS(12355), + [sym_param] = ACTIONS(12355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12355), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12355), + [anon_sym_DOLLAR] = ACTIONS(12357), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12355), + [anon_sym_BSLASHbegin] = ACTIONS(12357), + [anon_sym_BSLASHcaption] = ACTIONS(12357), + [anon_sym_BSLASHcite] = ACTIONS(12357), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCite] = ACTIONS(12357), + [anon_sym_BSLASHnocite] = ACTIONS(12357), + [anon_sym_BSLASHcitet] = ACTIONS(12357), + [anon_sym_BSLASHcitep] = ACTIONS(12357), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteauthor] = ACTIONS(12357), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12357), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitetitle] = ACTIONS(12357), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteyear] = ACTIONS(12357), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitedate] = ACTIONS(12357), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteurl] = ACTIONS(12357), + [anon_sym_BSLASHfullcite] = ACTIONS(12357), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12357), + [anon_sym_BSLASHcitealt] = ACTIONS(12357), + [anon_sym_BSLASHcitealp] = ACTIONS(12357), + [anon_sym_BSLASHcitetext] = ACTIONS(12357), + [anon_sym_BSLASHparencite] = ACTIONS(12357), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHParencite] = ACTIONS(12357), + [anon_sym_BSLASHfootcite] = ACTIONS(12357), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12357), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12357), + [anon_sym_BSLASHtextcite] = ACTIONS(12357), + [anon_sym_BSLASHTextcite] = ACTIONS(12357), + [anon_sym_BSLASHsmartcite] = ACTIONS(12357), + [anon_sym_BSLASHSmartcite] = ACTIONS(12357), + [anon_sym_BSLASHsupercite] = ACTIONS(12357), + [anon_sym_BSLASHautocite] = ACTIONS(12357), + [anon_sym_BSLASHAutocite] = ACTIONS(12357), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHvolcite] = ACTIONS(12357), + [anon_sym_BSLASHVolcite] = ACTIONS(12357), + [anon_sym_BSLASHpvolcite] = ACTIONS(12357), + [anon_sym_BSLASHPvolcite] = ACTIONS(12357), + [anon_sym_BSLASHfvolcite] = ACTIONS(12357), + [anon_sym_BSLASHftvolcite] = ACTIONS(12357), + [anon_sym_BSLASHsvolcite] = ACTIONS(12357), + [anon_sym_BSLASHSvolcite] = ACTIONS(12357), + [anon_sym_BSLASHtvolcite] = ACTIONS(12357), + [anon_sym_BSLASHTvolcite] = ACTIONS(12357), + [anon_sym_BSLASHavolcite] = ACTIONS(12357), + [anon_sym_BSLASHAvolcite] = ACTIONS(12357), + [anon_sym_BSLASHnotecite] = ACTIONS(12357), + [anon_sym_BSLASHpnotecite] = ACTIONS(12357), + [anon_sym_BSLASHPnotecite] = ACTIONS(12357), + [anon_sym_BSLASHfnotecite] = ACTIONS(12357), + [anon_sym_BSLASHusepackage] = ACTIONS(12357), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12357), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12357), + [anon_sym_BSLASHinclude] = ACTIONS(12357), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12357), + [anon_sym_BSLASHinput] = ACTIONS(12357), + [anon_sym_BSLASHsubfile] = ACTIONS(12357), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12357), + [anon_sym_BSLASHbibliography] = ACTIONS(12357), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12357), + [anon_sym_BSLASHincludesvg] = ACTIONS(12357), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12357), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12357), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12357), + [anon_sym_BSLASHimport] = ACTIONS(12357), + [anon_sym_BSLASHsubimport] = ACTIONS(12357), + [anon_sym_BSLASHinputfrom] = ACTIONS(12357), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12357), + [anon_sym_BSLASHincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHlabel] = ACTIONS(12357), + [anon_sym_BSLASHref] = ACTIONS(12357), + [anon_sym_BSLASHvref] = ACTIONS(12357), + [anon_sym_BSLASHVref] = ACTIONS(12357), + [anon_sym_BSLASHautoref] = ACTIONS(12357), + [anon_sym_BSLASHpageref] = ACTIONS(12357), + [anon_sym_BSLASHcref] = ACTIONS(12357), + [anon_sym_BSLASHCref] = ACTIONS(12357), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnameCref] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHlabelcref] = ACTIONS(12357), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12357), + [anon_sym_BSLASHeqref] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange] = ACTIONS(12357), + [anon_sym_BSLASHCrefrange] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewlabel] = ACTIONS(12357), + [anon_sym_BSLASHnewcommand] = ACTIONS(12357), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12357), + [anon_sym_BSLASHgls] = ACTIONS(12357), + [anon_sym_BSLASHGls] = ACTIONS(12357), + [anon_sym_BSLASHGLS] = ACTIONS(12357), + [anon_sym_BSLASHglspl] = ACTIONS(12357), + [anon_sym_BSLASHGlspl] = ACTIONS(12357), + [anon_sym_BSLASHGLSpl] = ACTIONS(12357), + [anon_sym_BSLASHglsdisp] = ACTIONS(12357), + [anon_sym_BSLASHglslink] = ACTIONS(12357), + [anon_sym_BSLASHglstext] = ACTIONS(12357), + [anon_sym_BSLASHGlstext] = ACTIONS(12357), + [anon_sym_BSLASHGLStext] = ACTIONS(12357), + [anon_sym_BSLASHglsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12357), + [anon_sym_BSLASHglsplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSplural] = ACTIONS(12357), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHglsname] = ACTIONS(12357), + [anon_sym_BSLASHGlsname] = ACTIONS(12357), + [anon_sym_BSLASHGLSname] = ACTIONS(12357), + [anon_sym_BSLASHglssymbol] = ACTIONS(12357), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12357), + [anon_sym_BSLASHglsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12357), + [anon_sym_BSLASHglsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12357), + [anon_sym_BSLASHglsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12357), + [anon_sym_BSLASHglsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12357), + [anon_sym_BSLASHglsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12357), + [anon_sym_BSLASHnewacronym] = ACTIONS(12357), + [anon_sym_BSLASHacrshort] = ACTIONS(12357), + [anon_sym_BSLASHAcrshort] = ACTIONS(12357), + [anon_sym_BSLASHACRshort] = ACTIONS(12357), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12357), + [anon_sym_BSLASHacrlong] = ACTIONS(12357), + [anon_sym_BSLASHAcrlong] = ACTIONS(12357), + [anon_sym_BSLASHACRlong] = ACTIONS(12357), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12357), + [anon_sym_BSLASHacrfull] = ACTIONS(12357), + [anon_sym_BSLASHAcrfull] = ACTIONS(12357), + [anon_sym_BSLASHACRfull] = ACTIONS(12357), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12357), + [anon_sym_BSLASHacs] = ACTIONS(12357), + [anon_sym_BSLASHAcs] = ACTIONS(12357), + [anon_sym_BSLASHacsp] = ACTIONS(12357), + [anon_sym_BSLASHAcsp] = ACTIONS(12357), + [anon_sym_BSLASHacl] = ACTIONS(12357), + [anon_sym_BSLASHAcl] = ACTIONS(12357), + [anon_sym_BSLASHaclp] = ACTIONS(12357), + [anon_sym_BSLASHAclp] = ACTIONS(12357), + [anon_sym_BSLASHacf] = ACTIONS(12357), + [anon_sym_BSLASHAcf] = ACTIONS(12357), + [anon_sym_BSLASHacfp] = ACTIONS(12357), + [anon_sym_BSLASHAcfp] = ACTIONS(12357), + [anon_sym_BSLASHac] = ACTIONS(12357), + [anon_sym_BSLASHAc] = ACTIONS(12357), + [anon_sym_BSLASHacp] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12357), + [anon_sym_BSLASHcolor] = ACTIONS(12357), + [anon_sym_BSLASHcolorbox] = ACTIONS(12357), + [anon_sym_BSLASHtextcolor] = ACTIONS(12357), + [anon_sym_BSLASHpagecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12357), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12357), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12357), + }, + [1783] = { + [sym_generic_command_name] = ACTIONS(12361), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12361), + [anon_sym_LBRACK] = ACTIONS(12359), + [anon_sym_RBRACK] = ACTIONS(12359), + [anon_sym_LBRACE] = ACTIONS(12359), + [anon_sym_RBRACE] = ACTIONS(12359), + [anon_sym_LPAREN] = ACTIONS(12359), + [anon_sym_COMMA] = ACTIONS(12359), + [anon_sym_EQ] = ACTIONS(12359), + [sym_word] = ACTIONS(12359), + [sym_param] = ACTIONS(12359), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12359), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12359), + [anon_sym_DOLLAR] = ACTIONS(12361), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12359), + [anon_sym_BSLASHbegin] = ACTIONS(12361), + [anon_sym_BSLASHcaption] = ACTIONS(12361), + [anon_sym_BSLASHcite] = ACTIONS(12361), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCite] = ACTIONS(12361), + [anon_sym_BSLASHnocite] = ACTIONS(12361), + [anon_sym_BSLASHcitet] = ACTIONS(12361), + [anon_sym_BSLASHcitep] = ACTIONS(12361), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteauthor] = ACTIONS(12361), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12361), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitetitle] = ACTIONS(12361), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteyear] = ACTIONS(12361), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitedate] = ACTIONS(12361), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteurl] = ACTIONS(12361), + [anon_sym_BSLASHfullcite] = ACTIONS(12361), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12361), + [anon_sym_BSLASHcitealt] = ACTIONS(12361), + [anon_sym_BSLASHcitealp] = ACTIONS(12361), + [anon_sym_BSLASHcitetext] = ACTIONS(12361), + [anon_sym_BSLASHparencite] = ACTIONS(12361), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHParencite] = ACTIONS(12361), + [anon_sym_BSLASHfootcite] = ACTIONS(12361), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12361), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12361), + [anon_sym_BSLASHtextcite] = ACTIONS(12361), + [anon_sym_BSLASHTextcite] = ACTIONS(12361), + [anon_sym_BSLASHsmartcite] = ACTIONS(12361), + [anon_sym_BSLASHSmartcite] = ACTIONS(12361), + [anon_sym_BSLASHsupercite] = ACTIONS(12361), + [anon_sym_BSLASHautocite] = ACTIONS(12361), + [anon_sym_BSLASHAutocite] = ACTIONS(12361), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHvolcite] = ACTIONS(12361), + [anon_sym_BSLASHVolcite] = ACTIONS(12361), + [anon_sym_BSLASHpvolcite] = ACTIONS(12361), + [anon_sym_BSLASHPvolcite] = ACTIONS(12361), + [anon_sym_BSLASHfvolcite] = ACTIONS(12361), + [anon_sym_BSLASHftvolcite] = ACTIONS(12361), + [anon_sym_BSLASHsvolcite] = ACTIONS(12361), + [anon_sym_BSLASHSvolcite] = ACTIONS(12361), + [anon_sym_BSLASHtvolcite] = ACTIONS(12361), + [anon_sym_BSLASHTvolcite] = ACTIONS(12361), + [anon_sym_BSLASHavolcite] = ACTIONS(12361), + [anon_sym_BSLASHAvolcite] = ACTIONS(12361), + [anon_sym_BSLASHnotecite] = ACTIONS(12361), + [anon_sym_BSLASHpnotecite] = ACTIONS(12361), + [anon_sym_BSLASHPnotecite] = ACTIONS(12361), + [anon_sym_BSLASHfnotecite] = ACTIONS(12361), + [anon_sym_BSLASHusepackage] = ACTIONS(12361), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12361), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12361), + [anon_sym_BSLASHinclude] = ACTIONS(12361), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12361), + [anon_sym_BSLASHinput] = ACTIONS(12361), + [anon_sym_BSLASHsubfile] = ACTIONS(12361), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12361), + [anon_sym_BSLASHbibliography] = ACTIONS(12361), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12361), + [anon_sym_BSLASHincludesvg] = ACTIONS(12361), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12361), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12361), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12361), + [anon_sym_BSLASHimport] = ACTIONS(12361), + [anon_sym_BSLASHsubimport] = ACTIONS(12361), + [anon_sym_BSLASHinputfrom] = ACTIONS(12361), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12361), + [anon_sym_BSLASHincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHlabel] = ACTIONS(12361), + [anon_sym_BSLASHref] = ACTIONS(12361), + [anon_sym_BSLASHvref] = ACTIONS(12361), + [anon_sym_BSLASHVref] = ACTIONS(12361), + [anon_sym_BSLASHautoref] = ACTIONS(12361), + [anon_sym_BSLASHpageref] = ACTIONS(12361), + [anon_sym_BSLASHcref] = ACTIONS(12361), + [anon_sym_BSLASHCref] = ACTIONS(12361), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnameCref] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHlabelcref] = ACTIONS(12361), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12361), + [anon_sym_BSLASHeqref] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange] = ACTIONS(12361), + [anon_sym_BSLASHCrefrange] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewlabel] = ACTIONS(12361), + [anon_sym_BSLASHnewcommand] = ACTIONS(12361), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12361), + [anon_sym_BSLASHgls] = ACTIONS(12361), + [anon_sym_BSLASHGls] = ACTIONS(12361), + [anon_sym_BSLASHGLS] = ACTIONS(12361), + [anon_sym_BSLASHglspl] = ACTIONS(12361), + [anon_sym_BSLASHGlspl] = ACTIONS(12361), + [anon_sym_BSLASHGLSpl] = ACTIONS(12361), + [anon_sym_BSLASHglsdisp] = ACTIONS(12361), + [anon_sym_BSLASHglslink] = ACTIONS(12361), + [anon_sym_BSLASHglstext] = ACTIONS(12361), + [anon_sym_BSLASHGlstext] = ACTIONS(12361), + [anon_sym_BSLASHGLStext] = ACTIONS(12361), + [anon_sym_BSLASHglsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12361), + [anon_sym_BSLASHglsplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSplural] = ACTIONS(12361), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHglsname] = ACTIONS(12361), + [anon_sym_BSLASHGlsname] = ACTIONS(12361), + [anon_sym_BSLASHGLSname] = ACTIONS(12361), + [anon_sym_BSLASHglssymbol] = ACTIONS(12361), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12361), + [anon_sym_BSLASHglsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12361), + [anon_sym_BSLASHglsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12361), + [anon_sym_BSLASHglsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12361), + [anon_sym_BSLASHglsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12361), + [anon_sym_BSLASHglsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12361), + [anon_sym_BSLASHnewacronym] = ACTIONS(12361), + [anon_sym_BSLASHacrshort] = ACTIONS(12361), + [anon_sym_BSLASHAcrshort] = ACTIONS(12361), + [anon_sym_BSLASHACRshort] = ACTIONS(12361), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12361), + [anon_sym_BSLASHacrlong] = ACTIONS(12361), + [anon_sym_BSLASHAcrlong] = ACTIONS(12361), + [anon_sym_BSLASHACRlong] = ACTIONS(12361), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12361), + [anon_sym_BSLASHacrfull] = ACTIONS(12361), + [anon_sym_BSLASHAcrfull] = ACTIONS(12361), + [anon_sym_BSLASHACRfull] = ACTIONS(12361), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12361), + [anon_sym_BSLASHacs] = ACTIONS(12361), + [anon_sym_BSLASHAcs] = ACTIONS(12361), + [anon_sym_BSLASHacsp] = ACTIONS(12361), + [anon_sym_BSLASHAcsp] = ACTIONS(12361), + [anon_sym_BSLASHacl] = ACTIONS(12361), + [anon_sym_BSLASHAcl] = ACTIONS(12361), + [anon_sym_BSLASHaclp] = ACTIONS(12361), + [anon_sym_BSLASHAclp] = ACTIONS(12361), + [anon_sym_BSLASHacf] = ACTIONS(12361), + [anon_sym_BSLASHAcf] = ACTIONS(12361), + [anon_sym_BSLASHacfp] = ACTIONS(12361), + [anon_sym_BSLASHAcfp] = ACTIONS(12361), + [anon_sym_BSLASHac] = ACTIONS(12361), + [anon_sym_BSLASHAc] = ACTIONS(12361), + [anon_sym_BSLASHacp] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12361), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12361), + [anon_sym_BSLASHcolor] = ACTIONS(12361), + [anon_sym_BSLASHcolorbox] = ACTIONS(12361), + [anon_sym_BSLASHtextcolor] = ACTIONS(12361), + [anon_sym_BSLASHpagecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12361), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12361), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12361), + }, + [1784] = { + [sym_brace_group] = STATE(3267), + [sym_generic_command_name] = ACTIONS(12088), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12086), + [anon_sym_RBRACK] = ACTIONS(12086), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12086), + [anon_sym_LPAREN] = ACTIONS(12086), + [anon_sym_COMMA] = ACTIONS(12086), + [anon_sym_EQ] = ACTIONS(12086), + [sym_word] = ACTIONS(12086), + [sym_param] = ACTIONS(12086), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12086), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12086), + [anon_sym_DOLLAR] = ACTIONS(12088), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12086), + [anon_sym_BSLASHbegin] = ACTIONS(12088), + [anon_sym_BSLASHcaption] = ACTIONS(12088), + [anon_sym_BSLASHcite] = ACTIONS(12088), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCite] = ACTIONS(12088), + [anon_sym_BSLASHnocite] = ACTIONS(12088), + [anon_sym_BSLASHcitet] = ACTIONS(12088), + [anon_sym_BSLASHcitep] = ACTIONS(12088), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteauthor] = ACTIONS(12088), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12088), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitetitle] = ACTIONS(12088), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteyear] = ACTIONS(12088), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12086), + [anon_sym_BSLASHcitedate] = ACTIONS(12088), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12086), + [anon_sym_BSLASHciteurl] = ACTIONS(12088), + [anon_sym_BSLASHfullcite] = ACTIONS(12088), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12088), + [anon_sym_BSLASHcitealt] = ACTIONS(12088), + [anon_sym_BSLASHcitealp] = ACTIONS(12088), + [anon_sym_BSLASHcitetext] = ACTIONS(12088), + [anon_sym_BSLASHparencite] = ACTIONS(12088), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHParencite] = ACTIONS(12088), + [anon_sym_BSLASHfootcite] = ACTIONS(12088), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12088), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12088), + [anon_sym_BSLASHtextcite] = ACTIONS(12088), + [anon_sym_BSLASHTextcite] = ACTIONS(12088), + [anon_sym_BSLASHsmartcite] = ACTIONS(12088), + [anon_sym_BSLASHSmartcite] = ACTIONS(12088), + [anon_sym_BSLASHsupercite] = ACTIONS(12088), + [anon_sym_BSLASHautocite] = ACTIONS(12088), + [anon_sym_BSLASHAutocite] = ACTIONS(12088), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12086), + [anon_sym_BSLASHvolcite] = ACTIONS(12088), + [anon_sym_BSLASHVolcite] = ACTIONS(12088), + [anon_sym_BSLASHpvolcite] = ACTIONS(12088), + [anon_sym_BSLASHPvolcite] = ACTIONS(12088), + [anon_sym_BSLASHfvolcite] = ACTIONS(12088), + [anon_sym_BSLASHftvolcite] = ACTIONS(12088), + [anon_sym_BSLASHsvolcite] = ACTIONS(12088), + [anon_sym_BSLASHSvolcite] = ACTIONS(12088), + [anon_sym_BSLASHtvolcite] = ACTIONS(12088), + [anon_sym_BSLASHTvolcite] = ACTIONS(12088), + [anon_sym_BSLASHavolcite] = ACTIONS(12088), + [anon_sym_BSLASHAvolcite] = ACTIONS(12088), + [anon_sym_BSLASHnotecite] = ACTIONS(12088), + [anon_sym_BSLASHpnotecite] = ACTIONS(12088), + [anon_sym_BSLASHPnotecite] = ACTIONS(12088), + [anon_sym_BSLASHfnotecite] = ACTIONS(12088), + [anon_sym_BSLASHusepackage] = ACTIONS(12088), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12088), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12088), + [anon_sym_BSLASHinclude] = ACTIONS(12088), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12088), + [anon_sym_BSLASHinput] = ACTIONS(12088), + [anon_sym_BSLASHsubfile] = ACTIONS(12088), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12088), + [anon_sym_BSLASHbibliography] = ACTIONS(12088), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12088), + [anon_sym_BSLASHincludesvg] = ACTIONS(12088), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12088), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12088), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12088), + [anon_sym_BSLASHimport] = ACTIONS(12088), + [anon_sym_BSLASHsubimport] = ACTIONS(12088), + [anon_sym_BSLASHinputfrom] = ACTIONS(12088), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12088), + [anon_sym_BSLASHincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12088), + [anon_sym_BSLASHlabel] = ACTIONS(12088), + [anon_sym_BSLASHref] = ACTIONS(12088), + [anon_sym_BSLASHvref] = ACTIONS(12088), + [anon_sym_BSLASHVref] = ACTIONS(12088), + [anon_sym_BSLASHautoref] = ACTIONS(12088), + [anon_sym_BSLASHpageref] = ACTIONS(12088), + [anon_sym_BSLASHcref] = ACTIONS(12088), + [anon_sym_BSLASHCref] = ACTIONS(12088), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnameCref] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12088), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12088), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12088), + [anon_sym_BSLASHlabelcref] = ACTIONS(12088), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12088), + [anon_sym_BSLASHeqref] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange] = ACTIONS(12088), + [anon_sym_BSLASHCrefrange] = ACTIONS(12088), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewlabel] = ACTIONS(12088), + [anon_sym_BSLASHnewcommand] = ACTIONS(12088), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12088), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12086), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12088), + [anon_sym_BSLASHgls] = ACTIONS(12088), + [anon_sym_BSLASHGls] = ACTIONS(12088), + [anon_sym_BSLASHGLS] = ACTIONS(12088), + [anon_sym_BSLASHglspl] = ACTIONS(12088), + [anon_sym_BSLASHGlspl] = ACTIONS(12088), + [anon_sym_BSLASHGLSpl] = ACTIONS(12088), + [anon_sym_BSLASHglsdisp] = ACTIONS(12088), + [anon_sym_BSLASHglslink] = ACTIONS(12088), + [anon_sym_BSLASHglstext] = ACTIONS(12088), + [anon_sym_BSLASHGlstext] = ACTIONS(12088), + [anon_sym_BSLASHGLStext] = ACTIONS(12088), + [anon_sym_BSLASHglsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12088), + [anon_sym_BSLASHglsplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSplural] = ACTIONS(12088), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12088), + [anon_sym_BSLASHglsname] = ACTIONS(12088), + [anon_sym_BSLASHGlsname] = ACTIONS(12088), + [anon_sym_BSLASHGLSname] = ACTIONS(12088), + [anon_sym_BSLASHglssymbol] = ACTIONS(12088), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12088), + [anon_sym_BSLASHglsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12088), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12088), + [anon_sym_BSLASHglsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12088), + [anon_sym_BSLASHglsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12088), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12088), + [anon_sym_BSLASHglsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12088), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12088), + [anon_sym_BSLASHglsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12088), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12088), + [anon_sym_BSLASHnewacronym] = ACTIONS(12088), + [anon_sym_BSLASHacrshort] = ACTIONS(12088), + [anon_sym_BSLASHAcrshort] = ACTIONS(12088), + [anon_sym_BSLASHACRshort] = ACTIONS(12088), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12088), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12088), + [anon_sym_BSLASHacrlong] = ACTIONS(12088), + [anon_sym_BSLASHAcrlong] = ACTIONS(12088), + [anon_sym_BSLASHACRlong] = ACTIONS(12088), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12088), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12088), + [anon_sym_BSLASHacrfull] = ACTIONS(12088), + [anon_sym_BSLASHAcrfull] = ACTIONS(12088), + [anon_sym_BSLASHACRfull] = ACTIONS(12088), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12088), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12088), + [anon_sym_BSLASHacs] = ACTIONS(12088), + [anon_sym_BSLASHAcs] = ACTIONS(12088), + [anon_sym_BSLASHacsp] = ACTIONS(12088), + [anon_sym_BSLASHAcsp] = ACTIONS(12088), + [anon_sym_BSLASHacl] = ACTIONS(12088), + [anon_sym_BSLASHAcl] = ACTIONS(12088), + [anon_sym_BSLASHaclp] = ACTIONS(12088), + [anon_sym_BSLASHAclp] = ACTIONS(12088), + [anon_sym_BSLASHacf] = ACTIONS(12088), + [anon_sym_BSLASHAcf] = ACTIONS(12088), + [anon_sym_BSLASHacfp] = ACTIONS(12088), + [anon_sym_BSLASHAcfp] = ACTIONS(12088), + [anon_sym_BSLASHac] = ACTIONS(12088), + [anon_sym_BSLASHAc] = ACTIONS(12088), + [anon_sym_BSLASHacp] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12088), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12088), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12088), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12088), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12088), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12088), + [anon_sym_BSLASHcolor] = ACTIONS(12088), + [anon_sym_BSLASHcolorbox] = ACTIONS(12088), + [anon_sym_BSLASHtextcolor] = ACTIONS(12088), + [anon_sym_BSLASHpagecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12088), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12088), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12088), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12088), + }, + [1785] = { + [sym_generic_command_name] = ACTIONS(12369), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12369), + [anon_sym_LBRACK] = ACTIONS(12367), + [anon_sym_RBRACK] = ACTIONS(12367), + [anon_sym_LBRACE] = ACTIONS(12367), + [anon_sym_RBRACE] = ACTIONS(12367), + [anon_sym_LPAREN] = ACTIONS(12367), + [anon_sym_COMMA] = ACTIONS(12367), + [anon_sym_EQ] = ACTIONS(12367), + [sym_word] = ACTIONS(12367), + [sym_param] = ACTIONS(12367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12367), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12367), + [anon_sym_DOLLAR] = ACTIONS(12369), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12367), + [anon_sym_BSLASHbegin] = ACTIONS(12369), + [anon_sym_BSLASHcaption] = ACTIONS(12369), + [anon_sym_BSLASHcite] = ACTIONS(12369), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCite] = ACTIONS(12369), + [anon_sym_BSLASHnocite] = ACTIONS(12369), + [anon_sym_BSLASHcitet] = ACTIONS(12369), + [anon_sym_BSLASHcitep] = ACTIONS(12369), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteauthor] = ACTIONS(12369), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12369), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitetitle] = ACTIONS(12369), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteyear] = ACTIONS(12369), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitedate] = ACTIONS(12369), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteurl] = ACTIONS(12369), + [anon_sym_BSLASHfullcite] = ACTIONS(12369), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12369), + [anon_sym_BSLASHcitealt] = ACTIONS(12369), + [anon_sym_BSLASHcitealp] = ACTIONS(12369), + [anon_sym_BSLASHcitetext] = ACTIONS(12369), + [anon_sym_BSLASHparencite] = ACTIONS(12369), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHParencite] = ACTIONS(12369), + [anon_sym_BSLASHfootcite] = ACTIONS(12369), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12369), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12369), + [anon_sym_BSLASHtextcite] = ACTIONS(12369), + [anon_sym_BSLASHTextcite] = ACTIONS(12369), + [anon_sym_BSLASHsmartcite] = ACTIONS(12369), + [anon_sym_BSLASHSmartcite] = ACTIONS(12369), + [anon_sym_BSLASHsupercite] = ACTIONS(12369), + [anon_sym_BSLASHautocite] = ACTIONS(12369), + [anon_sym_BSLASHAutocite] = ACTIONS(12369), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHvolcite] = ACTIONS(12369), + [anon_sym_BSLASHVolcite] = ACTIONS(12369), + [anon_sym_BSLASHpvolcite] = ACTIONS(12369), + [anon_sym_BSLASHPvolcite] = ACTIONS(12369), + [anon_sym_BSLASHfvolcite] = ACTIONS(12369), + [anon_sym_BSLASHftvolcite] = ACTIONS(12369), + [anon_sym_BSLASHsvolcite] = ACTIONS(12369), + [anon_sym_BSLASHSvolcite] = ACTIONS(12369), + [anon_sym_BSLASHtvolcite] = ACTIONS(12369), + [anon_sym_BSLASHTvolcite] = ACTIONS(12369), + [anon_sym_BSLASHavolcite] = ACTIONS(12369), + [anon_sym_BSLASHAvolcite] = ACTIONS(12369), + [anon_sym_BSLASHnotecite] = ACTIONS(12369), + [anon_sym_BSLASHpnotecite] = ACTIONS(12369), + [anon_sym_BSLASHPnotecite] = ACTIONS(12369), + [anon_sym_BSLASHfnotecite] = ACTIONS(12369), + [anon_sym_BSLASHusepackage] = ACTIONS(12369), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12369), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12369), + [anon_sym_BSLASHinclude] = ACTIONS(12369), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12369), + [anon_sym_BSLASHinput] = ACTIONS(12369), + [anon_sym_BSLASHsubfile] = ACTIONS(12369), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12369), + [anon_sym_BSLASHbibliography] = ACTIONS(12369), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12369), + [anon_sym_BSLASHincludesvg] = ACTIONS(12369), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12369), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12369), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12369), + [anon_sym_BSLASHimport] = ACTIONS(12369), + [anon_sym_BSLASHsubimport] = ACTIONS(12369), + [anon_sym_BSLASHinputfrom] = ACTIONS(12369), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12369), + [anon_sym_BSLASHincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHlabel] = ACTIONS(12369), + [anon_sym_BSLASHref] = ACTIONS(12369), + [anon_sym_BSLASHvref] = ACTIONS(12369), + [anon_sym_BSLASHVref] = ACTIONS(12369), + [anon_sym_BSLASHautoref] = ACTIONS(12369), + [anon_sym_BSLASHpageref] = ACTIONS(12369), + [anon_sym_BSLASHcref] = ACTIONS(12369), + [anon_sym_BSLASHCref] = ACTIONS(12369), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnameCref] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHlabelcref] = ACTIONS(12369), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12369), + [anon_sym_BSLASHeqref] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange] = ACTIONS(12369), + [anon_sym_BSLASHCrefrange] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewlabel] = ACTIONS(12369), + [anon_sym_BSLASHnewcommand] = ACTIONS(12369), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12369), + [anon_sym_BSLASHgls] = ACTIONS(12369), + [anon_sym_BSLASHGls] = ACTIONS(12369), + [anon_sym_BSLASHGLS] = ACTIONS(12369), + [anon_sym_BSLASHglspl] = ACTIONS(12369), + [anon_sym_BSLASHGlspl] = ACTIONS(12369), + [anon_sym_BSLASHGLSpl] = ACTIONS(12369), + [anon_sym_BSLASHglsdisp] = ACTIONS(12369), + [anon_sym_BSLASHglslink] = ACTIONS(12369), + [anon_sym_BSLASHglstext] = ACTIONS(12369), + [anon_sym_BSLASHGlstext] = ACTIONS(12369), + [anon_sym_BSLASHGLStext] = ACTIONS(12369), + [anon_sym_BSLASHglsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12369), + [anon_sym_BSLASHglsplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSplural] = ACTIONS(12369), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHglsname] = ACTIONS(12369), + [anon_sym_BSLASHGlsname] = ACTIONS(12369), + [anon_sym_BSLASHGLSname] = ACTIONS(12369), + [anon_sym_BSLASHglssymbol] = ACTIONS(12369), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12369), + [anon_sym_BSLASHglsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12369), + [anon_sym_BSLASHglsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12369), + [anon_sym_BSLASHglsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12369), + [anon_sym_BSLASHglsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12369), + [anon_sym_BSLASHglsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12369), + [anon_sym_BSLASHnewacronym] = ACTIONS(12369), + [anon_sym_BSLASHacrshort] = ACTIONS(12369), + [anon_sym_BSLASHAcrshort] = ACTIONS(12369), + [anon_sym_BSLASHACRshort] = ACTIONS(12369), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12369), + [anon_sym_BSLASHacrlong] = ACTIONS(12369), + [anon_sym_BSLASHAcrlong] = ACTIONS(12369), + [anon_sym_BSLASHACRlong] = ACTIONS(12369), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12369), + [anon_sym_BSLASHacrfull] = ACTIONS(12369), + [anon_sym_BSLASHAcrfull] = ACTIONS(12369), + [anon_sym_BSLASHACRfull] = ACTIONS(12369), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12369), + [anon_sym_BSLASHacs] = ACTIONS(12369), + [anon_sym_BSLASHAcs] = ACTIONS(12369), + [anon_sym_BSLASHacsp] = ACTIONS(12369), + [anon_sym_BSLASHAcsp] = ACTIONS(12369), + [anon_sym_BSLASHacl] = ACTIONS(12369), + [anon_sym_BSLASHAcl] = ACTIONS(12369), + [anon_sym_BSLASHaclp] = ACTIONS(12369), + [anon_sym_BSLASHAclp] = ACTIONS(12369), + [anon_sym_BSLASHacf] = ACTIONS(12369), + [anon_sym_BSLASHAcf] = ACTIONS(12369), + [anon_sym_BSLASHacfp] = ACTIONS(12369), + [anon_sym_BSLASHAcfp] = ACTIONS(12369), + [anon_sym_BSLASHac] = ACTIONS(12369), + [anon_sym_BSLASHAc] = ACTIONS(12369), + [anon_sym_BSLASHacp] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12369), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12369), + [anon_sym_BSLASHcolor] = ACTIONS(12369), + [anon_sym_BSLASHcolorbox] = ACTIONS(12369), + [anon_sym_BSLASHtextcolor] = ACTIONS(12369), + [anon_sym_BSLASHpagecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12369), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12369), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12369), + }, + [1786] = { + [sym_generic_command_name] = ACTIONS(12373), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12373), + [anon_sym_LBRACK] = ACTIONS(12371), + [anon_sym_RBRACK] = ACTIONS(12371), + [anon_sym_LBRACE] = ACTIONS(12371), + [anon_sym_RBRACE] = ACTIONS(12371), + [anon_sym_LPAREN] = ACTIONS(12371), + [anon_sym_COMMA] = ACTIONS(12371), + [anon_sym_EQ] = ACTIONS(12371), + [sym_word] = ACTIONS(12371), + [sym_param] = ACTIONS(12371), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12371), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12371), + [anon_sym_DOLLAR] = ACTIONS(12373), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12371), + [anon_sym_BSLASHbegin] = ACTIONS(12373), + [anon_sym_BSLASHcaption] = ACTIONS(12373), + [anon_sym_BSLASHcite] = ACTIONS(12373), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCite] = ACTIONS(12373), + [anon_sym_BSLASHnocite] = ACTIONS(12373), + [anon_sym_BSLASHcitet] = ACTIONS(12373), + [anon_sym_BSLASHcitep] = ACTIONS(12373), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteauthor] = ACTIONS(12373), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12373), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitetitle] = ACTIONS(12373), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteyear] = ACTIONS(12373), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitedate] = ACTIONS(12373), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteurl] = ACTIONS(12373), + [anon_sym_BSLASHfullcite] = ACTIONS(12373), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12373), + [anon_sym_BSLASHcitealt] = ACTIONS(12373), + [anon_sym_BSLASHcitealp] = ACTIONS(12373), + [anon_sym_BSLASHcitetext] = ACTIONS(12373), + [anon_sym_BSLASHparencite] = ACTIONS(12373), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHParencite] = ACTIONS(12373), + [anon_sym_BSLASHfootcite] = ACTIONS(12373), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12373), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12373), + [anon_sym_BSLASHtextcite] = ACTIONS(12373), + [anon_sym_BSLASHTextcite] = ACTIONS(12373), + [anon_sym_BSLASHsmartcite] = ACTIONS(12373), + [anon_sym_BSLASHSmartcite] = ACTIONS(12373), + [anon_sym_BSLASHsupercite] = ACTIONS(12373), + [anon_sym_BSLASHautocite] = ACTIONS(12373), + [anon_sym_BSLASHAutocite] = ACTIONS(12373), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHvolcite] = ACTIONS(12373), + [anon_sym_BSLASHVolcite] = ACTIONS(12373), + [anon_sym_BSLASHpvolcite] = ACTIONS(12373), + [anon_sym_BSLASHPvolcite] = ACTIONS(12373), + [anon_sym_BSLASHfvolcite] = ACTIONS(12373), + [anon_sym_BSLASHftvolcite] = ACTIONS(12373), + [anon_sym_BSLASHsvolcite] = ACTIONS(12373), + [anon_sym_BSLASHSvolcite] = ACTIONS(12373), + [anon_sym_BSLASHtvolcite] = ACTIONS(12373), + [anon_sym_BSLASHTvolcite] = ACTIONS(12373), + [anon_sym_BSLASHavolcite] = ACTIONS(12373), + [anon_sym_BSLASHAvolcite] = ACTIONS(12373), + [anon_sym_BSLASHnotecite] = ACTIONS(12373), + [anon_sym_BSLASHpnotecite] = ACTIONS(12373), + [anon_sym_BSLASHPnotecite] = ACTIONS(12373), + [anon_sym_BSLASHfnotecite] = ACTIONS(12373), + [anon_sym_BSLASHusepackage] = ACTIONS(12373), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12373), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12373), + [anon_sym_BSLASHinclude] = ACTIONS(12373), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12373), + [anon_sym_BSLASHinput] = ACTIONS(12373), + [anon_sym_BSLASHsubfile] = ACTIONS(12373), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12373), + [anon_sym_BSLASHbibliography] = ACTIONS(12373), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12373), + [anon_sym_BSLASHincludesvg] = ACTIONS(12373), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12373), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12373), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12373), + [anon_sym_BSLASHimport] = ACTIONS(12373), + [anon_sym_BSLASHsubimport] = ACTIONS(12373), + [anon_sym_BSLASHinputfrom] = ACTIONS(12373), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12373), + [anon_sym_BSLASHincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHlabel] = ACTIONS(12373), + [anon_sym_BSLASHref] = ACTIONS(12373), + [anon_sym_BSLASHvref] = ACTIONS(12373), + [anon_sym_BSLASHVref] = ACTIONS(12373), + [anon_sym_BSLASHautoref] = ACTIONS(12373), + [anon_sym_BSLASHpageref] = ACTIONS(12373), + [anon_sym_BSLASHcref] = ACTIONS(12373), + [anon_sym_BSLASHCref] = ACTIONS(12373), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnameCref] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHlabelcref] = ACTIONS(12373), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12373), + [anon_sym_BSLASHeqref] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange] = ACTIONS(12373), + [anon_sym_BSLASHCrefrange] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewlabel] = ACTIONS(12373), + [anon_sym_BSLASHnewcommand] = ACTIONS(12373), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12373), + [anon_sym_BSLASHgls] = ACTIONS(12373), + [anon_sym_BSLASHGls] = ACTIONS(12373), + [anon_sym_BSLASHGLS] = ACTIONS(12373), + [anon_sym_BSLASHglspl] = ACTIONS(12373), + [anon_sym_BSLASHGlspl] = ACTIONS(12373), + [anon_sym_BSLASHGLSpl] = ACTIONS(12373), + [anon_sym_BSLASHglsdisp] = ACTIONS(12373), + [anon_sym_BSLASHglslink] = ACTIONS(12373), + [anon_sym_BSLASHglstext] = ACTIONS(12373), + [anon_sym_BSLASHGlstext] = ACTIONS(12373), + [anon_sym_BSLASHGLStext] = ACTIONS(12373), + [anon_sym_BSLASHglsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12373), + [anon_sym_BSLASHglsplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSplural] = ACTIONS(12373), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHglsname] = ACTIONS(12373), + [anon_sym_BSLASHGlsname] = ACTIONS(12373), + [anon_sym_BSLASHGLSname] = ACTIONS(12373), + [anon_sym_BSLASHglssymbol] = ACTIONS(12373), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12373), + [anon_sym_BSLASHglsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12373), + [anon_sym_BSLASHglsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12373), + [anon_sym_BSLASHglsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12373), + [anon_sym_BSLASHglsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12373), + [anon_sym_BSLASHglsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12373), + [anon_sym_BSLASHnewacronym] = ACTIONS(12373), + [anon_sym_BSLASHacrshort] = ACTIONS(12373), + [anon_sym_BSLASHAcrshort] = ACTIONS(12373), + [anon_sym_BSLASHACRshort] = ACTIONS(12373), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12373), + [anon_sym_BSLASHacrlong] = ACTIONS(12373), + [anon_sym_BSLASHAcrlong] = ACTIONS(12373), + [anon_sym_BSLASHACRlong] = ACTIONS(12373), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12373), + [anon_sym_BSLASHacrfull] = ACTIONS(12373), + [anon_sym_BSLASHAcrfull] = ACTIONS(12373), + [anon_sym_BSLASHACRfull] = ACTIONS(12373), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12373), + [anon_sym_BSLASHacs] = ACTIONS(12373), + [anon_sym_BSLASHAcs] = ACTIONS(12373), + [anon_sym_BSLASHacsp] = ACTIONS(12373), + [anon_sym_BSLASHAcsp] = ACTIONS(12373), + [anon_sym_BSLASHacl] = ACTIONS(12373), + [anon_sym_BSLASHAcl] = ACTIONS(12373), + [anon_sym_BSLASHaclp] = ACTIONS(12373), + [anon_sym_BSLASHAclp] = ACTIONS(12373), + [anon_sym_BSLASHacf] = ACTIONS(12373), + [anon_sym_BSLASHAcf] = ACTIONS(12373), + [anon_sym_BSLASHacfp] = ACTIONS(12373), + [anon_sym_BSLASHAcfp] = ACTIONS(12373), + [anon_sym_BSLASHac] = ACTIONS(12373), + [anon_sym_BSLASHAc] = ACTIONS(12373), + [anon_sym_BSLASHacp] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12373), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12373), + [anon_sym_BSLASHcolor] = ACTIONS(12373), + [anon_sym_BSLASHcolorbox] = ACTIONS(12373), + [anon_sym_BSLASHtextcolor] = ACTIONS(12373), + [anon_sym_BSLASHpagecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12373), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12373), + }, + [1787] = { + [sym_generic_command_name] = ACTIONS(12377), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12377), + [anon_sym_LBRACK] = ACTIONS(12375), + [anon_sym_RBRACK] = ACTIONS(12375), + [anon_sym_LBRACE] = ACTIONS(12375), + [anon_sym_RBRACE] = ACTIONS(12375), + [anon_sym_LPAREN] = ACTIONS(12375), + [anon_sym_COMMA] = ACTIONS(12375), + [anon_sym_EQ] = ACTIONS(12375), + [sym_word] = ACTIONS(12375), + [sym_param] = ACTIONS(12375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12375), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12375), + [anon_sym_DOLLAR] = ACTIONS(12377), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12375), + [anon_sym_BSLASHbegin] = ACTIONS(12377), + [anon_sym_BSLASHcaption] = ACTIONS(12377), + [anon_sym_BSLASHcite] = ACTIONS(12377), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCite] = ACTIONS(12377), + [anon_sym_BSLASHnocite] = ACTIONS(12377), + [anon_sym_BSLASHcitet] = ACTIONS(12377), + [anon_sym_BSLASHcitep] = ACTIONS(12377), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteauthor] = ACTIONS(12377), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12377), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitetitle] = ACTIONS(12377), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteyear] = ACTIONS(12377), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitedate] = ACTIONS(12377), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteurl] = ACTIONS(12377), + [anon_sym_BSLASHfullcite] = ACTIONS(12377), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12377), + [anon_sym_BSLASHcitealt] = ACTIONS(12377), + [anon_sym_BSLASHcitealp] = ACTIONS(12377), + [anon_sym_BSLASHcitetext] = ACTIONS(12377), + [anon_sym_BSLASHparencite] = ACTIONS(12377), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHParencite] = ACTIONS(12377), + [anon_sym_BSLASHfootcite] = ACTIONS(12377), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12377), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12377), + [anon_sym_BSLASHtextcite] = ACTIONS(12377), + [anon_sym_BSLASHTextcite] = ACTIONS(12377), + [anon_sym_BSLASHsmartcite] = ACTIONS(12377), + [anon_sym_BSLASHSmartcite] = ACTIONS(12377), + [anon_sym_BSLASHsupercite] = ACTIONS(12377), + [anon_sym_BSLASHautocite] = ACTIONS(12377), + [anon_sym_BSLASHAutocite] = ACTIONS(12377), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHvolcite] = ACTIONS(12377), + [anon_sym_BSLASHVolcite] = ACTIONS(12377), + [anon_sym_BSLASHpvolcite] = ACTIONS(12377), + [anon_sym_BSLASHPvolcite] = ACTIONS(12377), + [anon_sym_BSLASHfvolcite] = ACTIONS(12377), + [anon_sym_BSLASHftvolcite] = ACTIONS(12377), + [anon_sym_BSLASHsvolcite] = ACTIONS(12377), + [anon_sym_BSLASHSvolcite] = ACTIONS(12377), + [anon_sym_BSLASHtvolcite] = ACTIONS(12377), + [anon_sym_BSLASHTvolcite] = ACTIONS(12377), + [anon_sym_BSLASHavolcite] = ACTIONS(12377), + [anon_sym_BSLASHAvolcite] = ACTIONS(12377), + [anon_sym_BSLASHnotecite] = ACTIONS(12377), + [anon_sym_BSLASHpnotecite] = ACTIONS(12377), + [anon_sym_BSLASHPnotecite] = ACTIONS(12377), + [anon_sym_BSLASHfnotecite] = ACTIONS(12377), + [anon_sym_BSLASHusepackage] = ACTIONS(12377), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12377), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12377), + [anon_sym_BSLASHinclude] = ACTIONS(12377), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12377), + [anon_sym_BSLASHinput] = ACTIONS(12377), + [anon_sym_BSLASHsubfile] = ACTIONS(12377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12377), + [anon_sym_BSLASHbibliography] = ACTIONS(12377), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12377), + [anon_sym_BSLASHincludesvg] = ACTIONS(12377), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12377), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12377), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12377), + [anon_sym_BSLASHimport] = ACTIONS(12377), + [anon_sym_BSLASHsubimport] = ACTIONS(12377), + [anon_sym_BSLASHinputfrom] = ACTIONS(12377), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12377), + [anon_sym_BSLASHincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHlabel] = ACTIONS(12377), + [anon_sym_BSLASHref] = ACTIONS(12377), + [anon_sym_BSLASHvref] = ACTIONS(12377), + [anon_sym_BSLASHVref] = ACTIONS(12377), + [anon_sym_BSLASHautoref] = ACTIONS(12377), + [anon_sym_BSLASHpageref] = ACTIONS(12377), + [anon_sym_BSLASHcref] = ACTIONS(12377), + [anon_sym_BSLASHCref] = ACTIONS(12377), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnameCref] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHlabelcref] = ACTIONS(12377), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12377), + [anon_sym_BSLASHeqref] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange] = ACTIONS(12377), + [anon_sym_BSLASHCrefrange] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewlabel] = ACTIONS(12377), + [anon_sym_BSLASHnewcommand] = ACTIONS(12377), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12377), + [anon_sym_BSLASHgls] = ACTIONS(12377), + [anon_sym_BSLASHGls] = ACTIONS(12377), + [anon_sym_BSLASHGLS] = ACTIONS(12377), + [anon_sym_BSLASHglspl] = ACTIONS(12377), + [anon_sym_BSLASHGlspl] = ACTIONS(12377), + [anon_sym_BSLASHGLSpl] = ACTIONS(12377), + [anon_sym_BSLASHglsdisp] = ACTIONS(12377), + [anon_sym_BSLASHglslink] = ACTIONS(12377), + [anon_sym_BSLASHglstext] = ACTIONS(12377), + [anon_sym_BSLASHGlstext] = ACTIONS(12377), + [anon_sym_BSLASHGLStext] = ACTIONS(12377), + [anon_sym_BSLASHglsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12377), + [anon_sym_BSLASHglsplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSplural] = ACTIONS(12377), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHglsname] = ACTIONS(12377), + [anon_sym_BSLASHGlsname] = ACTIONS(12377), + [anon_sym_BSLASHGLSname] = ACTIONS(12377), + [anon_sym_BSLASHglssymbol] = ACTIONS(12377), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12377), + [anon_sym_BSLASHglsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12377), + [anon_sym_BSLASHglsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12377), + [anon_sym_BSLASHglsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12377), + [anon_sym_BSLASHglsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12377), + [anon_sym_BSLASHglsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12377), + [anon_sym_BSLASHnewacronym] = ACTIONS(12377), + [anon_sym_BSLASHacrshort] = ACTIONS(12377), + [anon_sym_BSLASHAcrshort] = ACTIONS(12377), + [anon_sym_BSLASHACRshort] = ACTIONS(12377), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12377), + [anon_sym_BSLASHacrlong] = ACTIONS(12377), + [anon_sym_BSLASHAcrlong] = ACTIONS(12377), + [anon_sym_BSLASHACRlong] = ACTIONS(12377), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12377), + [anon_sym_BSLASHacrfull] = ACTIONS(12377), + [anon_sym_BSLASHAcrfull] = ACTIONS(12377), + [anon_sym_BSLASHACRfull] = ACTIONS(12377), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12377), + [anon_sym_BSLASHacs] = ACTIONS(12377), + [anon_sym_BSLASHAcs] = ACTIONS(12377), + [anon_sym_BSLASHacsp] = ACTIONS(12377), + [anon_sym_BSLASHAcsp] = ACTIONS(12377), + [anon_sym_BSLASHacl] = ACTIONS(12377), + [anon_sym_BSLASHAcl] = ACTIONS(12377), + [anon_sym_BSLASHaclp] = ACTIONS(12377), + [anon_sym_BSLASHAclp] = ACTIONS(12377), + [anon_sym_BSLASHacf] = ACTIONS(12377), + [anon_sym_BSLASHAcf] = ACTIONS(12377), + [anon_sym_BSLASHacfp] = ACTIONS(12377), + [anon_sym_BSLASHAcfp] = ACTIONS(12377), + [anon_sym_BSLASHac] = ACTIONS(12377), + [anon_sym_BSLASHAc] = ACTIONS(12377), + [anon_sym_BSLASHacp] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12377), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12377), + [anon_sym_BSLASHcolor] = ACTIONS(12377), + [anon_sym_BSLASHcolorbox] = ACTIONS(12377), + [anon_sym_BSLASHtextcolor] = ACTIONS(12377), + [anon_sym_BSLASHpagecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12377), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12377), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12377), + }, + [1788] = { + [sym_generic_command_name] = ACTIONS(12132), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12132), + [anon_sym_LBRACK] = ACTIONS(12130), + [anon_sym_RBRACK] = ACTIONS(12130), + [anon_sym_LBRACE] = ACTIONS(12130), + [anon_sym_RBRACE] = ACTIONS(12130), + [anon_sym_LPAREN] = ACTIONS(12130), + [anon_sym_COMMA] = ACTIONS(12130), + [anon_sym_EQ] = ACTIONS(12130), + [sym_word] = ACTIONS(12130), + [sym_param] = ACTIONS(12130), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12130), + [anon_sym_DOLLAR] = ACTIONS(12132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12130), + [anon_sym_BSLASHbegin] = ACTIONS(12132), + [anon_sym_BSLASHcaption] = ACTIONS(12132), + [anon_sym_BSLASHcite] = ACTIONS(12132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCite] = ACTIONS(12132), + [anon_sym_BSLASHnocite] = ACTIONS(12132), + [anon_sym_BSLASHcitet] = ACTIONS(12132), + [anon_sym_BSLASHcitep] = ACTIONS(12132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteauthor] = ACTIONS(12132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitetitle] = ACTIONS(12132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteyear] = ACTIONS(12132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitedate] = ACTIONS(12132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteurl] = ACTIONS(12132), + [anon_sym_BSLASHfullcite] = ACTIONS(12132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12132), + [anon_sym_BSLASHcitealt] = ACTIONS(12132), + [anon_sym_BSLASHcitealp] = ACTIONS(12132), + [anon_sym_BSLASHcitetext] = ACTIONS(12132), + [anon_sym_BSLASHparencite] = ACTIONS(12132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHParencite] = ACTIONS(12132), + [anon_sym_BSLASHfootcite] = ACTIONS(12132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12132), + [anon_sym_BSLASHtextcite] = ACTIONS(12132), + [anon_sym_BSLASHTextcite] = ACTIONS(12132), + [anon_sym_BSLASHsmartcite] = ACTIONS(12132), + [anon_sym_BSLASHSmartcite] = ACTIONS(12132), + [anon_sym_BSLASHsupercite] = ACTIONS(12132), + [anon_sym_BSLASHautocite] = ACTIONS(12132), + [anon_sym_BSLASHAutocite] = ACTIONS(12132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHvolcite] = ACTIONS(12132), + [anon_sym_BSLASHVolcite] = ACTIONS(12132), + [anon_sym_BSLASHpvolcite] = ACTIONS(12132), + [anon_sym_BSLASHPvolcite] = ACTIONS(12132), + [anon_sym_BSLASHfvolcite] = ACTIONS(12132), + [anon_sym_BSLASHftvolcite] = ACTIONS(12132), + [anon_sym_BSLASHsvolcite] = ACTIONS(12132), + [anon_sym_BSLASHSvolcite] = ACTIONS(12132), + [anon_sym_BSLASHtvolcite] = ACTIONS(12132), + [anon_sym_BSLASHTvolcite] = ACTIONS(12132), + [anon_sym_BSLASHavolcite] = ACTIONS(12132), + [anon_sym_BSLASHAvolcite] = ACTIONS(12132), + [anon_sym_BSLASHnotecite] = ACTIONS(12132), + [anon_sym_BSLASHpnotecite] = ACTIONS(12132), + [anon_sym_BSLASHPnotecite] = ACTIONS(12132), + [anon_sym_BSLASHfnotecite] = ACTIONS(12132), + [anon_sym_BSLASHusepackage] = ACTIONS(12132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12132), + [anon_sym_BSLASHinclude] = ACTIONS(12132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12132), + [anon_sym_BSLASHinput] = ACTIONS(12132), + [anon_sym_BSLASHsubfile] = ACTIONS(12132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12132), + [anon_sym_BSLASHbibliography] = ACTIONS(12132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12132), + [anon_sym_BSLASHincludesvg] = ACTIONS(12132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12132), + [anon_sym_BSLASHimport] = ACTIONS(12132), + [anon_sym_BSLASHsubimport] = ACTIONS(12132), + [anon_sym_BSLASHinputfrom] = ACTIONS(12132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12132), + [anon_sym_BSLASHincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHlabel] = ACTIONS(12132), + [anon_sym_BSLASHref] = ACTIONS(12132), + [anon_sym_BSLASHvref] = ACTIONS(12132), + [anon_sym_BSLASHVref] = ACTIONS(12132), + [anon_sym_BSLASHautoref] = ACTIONS(12132), + [anon_sym_BSLASHpageref] = ACTIONS(12132), + [anon_sym_BSLASHcref] = ACTIONS(12132), + [anon_sym_BSLASHCref] = ACTIONS(12132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnameCref] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHlabelcref] = ACTIONS(12132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12132), + [anon_sym_BSLASHeqref] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange] = ACTIONS(12132), + [anon_sym_BSLASHCrefrange] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewlabel] = ACTIONS(12132), + [anon_sym_BSLASHnewcommand] = ACTIONS(12132), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12132), + [anon_sym_BSLASHgls] = ACTIONS(12132), + [anon_sym_BSLASHGls] = ACTIONS(12132), + [anon_sym_BSLASHGLS] = ACTIONS(12132), + [anon_sym_BSLASHglspl] = ACTIONS(12132), + [anon_sym_BSLASHGlspl] = ACTIONS(12132), + [anon_sym_BSLASHGLSpl] = ACTIONS(12132), + [anon_sym_BSLASHglsdisp] = ACTIONS(12132), + [anon_sym_BSLASHglslink] = ACTIONS(12132), + [anon_sym_BSLASHglstext] = ACTIONS(12132), + [anon_sym_BSLASHGlstext] = ACTIONS(12132), + [anon_sym_BSLASHGLStext] = ACTIONS(12132), + [anon_sym_BSLASHglsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12132), + [anon_sym_BSLASHglsplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSplural] = ACTIONS(12132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHglsname] = ACTIONS(12132), + [anon_sym_BSLASHGlsname] = ACTIONS(12132), + [anon_sym_BSLASHGLSname] = ACTIONS(12132), + [anon_sym_BSLASHglssymbol] = ACTIONS(12132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12132), + [anon_sym_BSLASHglsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12132), + [anon_sym_BSLASHglsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12132), + [anon_sym_BSLASHglsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12132), + [anon_sym_BSLASHglsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12132), + [anon_sym_BSLASHglsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12132), + [anon_sym_BSLASHnewacronym] = ACTIONS(12132), + [anon_sym_BSLASHacrshort] = ACTIONS(12132), + [anon_sym_BSLASHAcrshort] = ACTIONS(12132), + [anon_sym_BSLASHACRshort] = ACTIONS(12132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12132), + [anon_sym_BSLASHacrlong] = ACTIONS(12132), + [anon_sym_BSLASHAcrlong] = ACTIONS(12132), + [anon_sym_BSLASHACRlong] = ACTIONS(12132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12132), + [anon_sym_BSLASHacrfull] = ACTIONS(12132), + [anon_sym_BSLASHAcrfull] = ACTIONS(12132), + [anon_sym_BSLASHACRfull] = ACTIONS(12132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12132), + [anon_sym_BSLASHacs] = ACTIONS(12132), + [anon_sym_BSLASHAcs] = ACTIONS(12132), + [anon_sym_BSLASHacsp] = ACTIONS(12132), + [anon_sym_BSLASHAcsp] = ACTIONS(12132), + [anon_sym_BSLASHacl] = ACTIONS(12132), + [anon_sym_BSLASHAcl] = ACTIONS(12132), + [anon_sym_BSLASHaclp] = ACTIONS(12132), + [anon_sym_BSLASHAclp] = ACTIONS(12132), + [anon_sym_BSLASHacf] = ACTIONS(12132), + [anon_sym_BSLASHAcf] = ACTIONS(12132), + [anon_sym_BSLASHacfp] = ACTIONS(12132), + [anon_sym_BSLASHAcfp] = ACTIONS(12132), + [anon_sym_BSLASHac] = ACTIONS(12132), + [anon_sym_BSLASHAc] = ACTIONS(12132), + [anon_sym_BSLASHacp] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12132), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12132), + [anon_sym_BSLASHcolor] = ACTIONS(12132), + [anon_sym_BSLASHcolorbox] = ACTIONS(12132), + [anon_sym_BSLASHtextcolor] = ACTIONS(12132), + [anon_sym_BSLASHpagecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12132), + }, + [1789] = { + [sym_generic_command_name] = ACTIONS(12381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12381), + [anon_sym_LBRACK] = ACTIONS(12379), + [anon_sym_RBRACK] = ACTIONS(12379), + [anon_sym_LBRACE] = ACTIONS(12379), + [anon_sym_RBRACE] = ACTIONS(12379), + [anon_sym_LPAREN] = ACTIONS(12379), + [anon_sym_COMMA] = ACTIONS(12379), + [anon_sym_EQ] = ACTIONS(12379), + [sym_word] = ACTIONS(12379), + [sym_param] = ACTIONS(12379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12379), + [anon_sym_DOLLAR] = ACTIONS(12381), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12379), + [anon_sym_BSLASHbegin] = ACTIONS(12381), + [anon_sym_BSLASHcaption] = ACTIONS(12381), + [anon_sym_BSLASHcite] = ACTIONS(12381), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCite] = ACTIONS(12381), + [anon_sym_BSLASHnocite] = ACTIONS(12381), + [anon_sym_BSLASHcitet] = ACTIONS(12381), + [anon_sym_BSLASHcitep] = ACTIONS(12381), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteauthor] = ACTIONS(12381), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12381), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitetitle] = ACTIONS(12381), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteyear] = ACTIONS(12381), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitedate] = ACTIONS(12381), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteurl] = ACTIONS(12381), + [anon_sym_BSLASHfullcite] = ACTIONS(12381), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12381), + [anon_sym_BSLASHcitealt] = ACTIONS(12381), + [anon_sym_BSLASHcitealp] = ACTIONS(12381), + [anon_sym_BSLASHcitetext] = ACTIONS(12381), + [anon_sym_BSLASHparencite] = ACTIONS(12381), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHParencite] = ACTIONS(12381), + [anon_sym_BSLASHfootcite] = ACTIONS(12381), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12381), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12381), + [anon_sym_BSLASHtextcite] = ACTIONS(12381), + [anon_sym_BSLASHTextcite] = ACTIONS(12381), + [anon_sym_BSLASHsmartcite] = ACTIONS(12381), + [anon_sym_BSLASHSmartcite] = ACTIONS(12381), + [anon_sym_BSLASHsupercite] = ACTIONS(12381), + [anon_sym_BSLASHautocite] = ACTIONS(12381), + [anon_sym_BSLASHAutocite] = ACTIONS(12381), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHvolcite] = ACTIONS(12381), + [anon_sym_BSLASHVolcite] = ACTIONS(12381), + [anon_sym_BSLASHpvolcite] = ACTIONS(12381), + [anon_sym_BSLASHPvolcite] = ACTIONS(12381), + [anon_sym_BSLASHfvolcite] = ACTIONS(12381), + [anon_sym_BSLASHftvolcite] = ACTIONS(12381), + [anon_sym_BSLASHsvolcite] = ACTIONS(12381), + [anon_sym_BSLASHSvolcite] = ACTIONS(12381), + [anon_sym_BSLASHtvolcite] = ACTIONS(12381), + [anon_sym_BSLASHTvolcite] = ACTIONS(12381), + [anon_sym_BSLASHavolcite] = ACTIONS(12381), + [anon_sym_BSLASHAvolcite] = ACTIONS(12381), + [anon_sym_BSLASHnotecite] = ACTIONS(12381), + [anon_sym_BSLASHpnotecite] = ACTIONS(12381), + [anon_sym_BSLASHPnotecite] = ACTIONS(12381), + [anon_sym_BSLASHfnotecite] = ACTIONS(12381), + [anon_sym_BSLASHusepackage] = ACTIONS(12381), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12381), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12381), + [anon_sym_BSLASHinclude] = ACTIONS(12381), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12381), + [anon_sym_BSLASHinput] = ACTIONS(12381), + [anon_sym_BSLASHsubfile] = ACTIONS(12381), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12381), + [anon_sym_BSLASHbibliography] = ACTIONS(12381), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12381), + [anon_sym_BSLASHincludesvg] = ACTIONS(12381), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12381), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12381), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12381), + [anon_sym_BSLASHimport] = ACTIONS(12381), + [anon_sym_BSLASHsubimport] = ACTIONS(12381), + [anon_sym_BSLASHinputfrom] = ACTIONS(12381), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12381), + [anon_sym_BSLASHincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHlabel] = ACTIONS(12381), + [anon_sym_BSLASHref] = ACTIONS(12381), + [anon_sym_BSLASHvref] = ACTIONS(12381), + [anon_sym_BSLASHVref] = ACTIONS(12381), + [anon_sym_BSLASHautoref] = ACTIONS(12381), + [anon_sym_BSLASHpageref] = ACTIONS(12381), + [anon_sym_BSLASHcref] = ACTIONS(12381), + [anon_sym_BSLASHCref] = ACTIONS(12381), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnameCref] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHlabelcref] = ACTIONS(12381), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12381), + [anon_sym_BSLASHeqref] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange] = ACTIONS(12381), + [anon_sym_BSLASHCrefrange] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewlabel] = ACTIONS(12381), + [anon_sym_BSLASHnewcommand] = ACTIONS(12381), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12381), + [anon_sym_BSLASHgls] = ACTIONS(12381), + [anon_sym_BSLASHGls] = ACTIONS(12381), + [anon_sym_BSLASHGLS] = ACTIONS(12381), + [anon_sym_BSLASHglspl] = ACTIONS(12381), + [anon_sym_BSLASHGlspl] = ACTIONS(12381), + [anon_sym_BSLASHGLSpl] = ACTIONS(12381), + [anon_sym_BSLASHglsdisp] = ACTIONS(12381), + [anon_sym_BSLASHglslink] = ACTIONS(12381), + [anon_sym_BSLASHglstext] = ACTIONS(12381), + [anon_sym_BSLASHGlstext] = ACTIONS(12381), + [anon_sym_BSLASHGLStext] = ACTIONS(12381), + [anon_sym_BSLASHglsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12381), + [anon_sym_BSLASHglsplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSplural] = ACTIONS(12381), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHglsname] = ACTIONS(12381), + [anon_sym_BSLASHGlsname] = ACTIONS(12381), + [anon_sym_BSLASHGLSname] = ACTIONS(12381), + [anon_sym_BSLASHglssymbol] = ACTIONS(12381), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12381), + [anon_sym_BSLASHglsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12381), + [anon_sym_BSLASHglsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12381), + [anon_sym_BSLASHglsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12381), + [anon_sym_BSLASHglsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12381), + [anon_sym_BSLASHglsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12381), + [anon_sym_BSLASHnewacronym] = ACTIONS(12381), + [anon_sym_BSLASHacrshort] = ACTIONS(12381), + [anon_sym_BSLASHAcrshort] = ACTIONS(12381), + [anon_sym_BSLASHACRshort] = ACTIONS(12381), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12381), + [anon_sym_BSLASHacrlong] = ACTIONS(12381), + [anon_sym_BSLASHAcrlong] = ACTIONS(12381), + [anon_sym_BSLASHACRlong] = ACTIONS(12381), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12381), + [anon_sym_BSLASHacrfull] = ACTIONS(12381), + [anon_sym_BSLASHAcrfull] = ACTIONS(12381), + [anon_sym_BSLASHACRfull] = ACTIONS(12381), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12381), + [anon_sym_BSLASHacs] = ACTIONS(12381), + [anon_sym_BSLASHAcs] = ACTIONS(12381), + [anon_sym_BSLASHacsp] = ACTIONS(12381), + [anon_sym_BSLASHAcsp] = ACTIONS(12381), + [anon_sym_BSLASHacl] = ACTIONS(12381), + [anon_sym_BSLASHAcl] = ACTIONS(12381), + [anon_sym_BSLASHaclp] = ACTIONS(12381), + [anon_sym_BSLASHAclp] = ACTIONS(12381), + [anon_sym_BSLASHacf] = ACTIONS(12381), + [anon_sym_BSLASHAcf] = ACTIONS(12381), + [anon_sym_BSLASHacfp] = ACTIONS(12381), + [anon_sym_BSLASHAcfp] = ACTIONS(12381), + [anon_sym_BSLASHac] = ACTIONS(12381), + [anon_sym_BSLASHAc] = ACTIONS(12381), + [anon_sym_BSLASHacp] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12381), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12381), + [anon_sym_BSLASHcolor] = ACTIONS(12381), + [anon_sym_BSLASHcolorbox] = ACTIONS(12381), + [anon_sym_BSLASHtextcolor] = ACTIONS(12381), + [anon_sym_BSLASHpagecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12381), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12381), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12381), + }, + [1790] = { + [sym_generic_command_name] = ACTIONS(12393), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12393), + [anon_sym_LBRACK] = ACTIONS(12391), + [anon_sym_RBRACK] = ACTIONS(12391), + [anon_sym_LBRACE] = ACTIONS(12391), + [anon_sym_RBRACE] = ACTIONS(12391), + [anon_sym_LPAREN] = ACTIONS(12391), + [anon_sym_COMMA] = ACTIONS(12391), + [anon_sym_EQ] = ACTIONS(12391), + [sym_word] = ACTIONS(12391), + [sym_param] = ACTIONS(12391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12391), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12391), + [anon_sym_DOLLAR] = ACTIONS(12393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12391), + [anon_sym_BSLASHbegin] = ACTIONS(12393), + [anon_sym_BSLASHcaption] = ACTIONS(12393), + [anon_sym_BSLASHcite] = ACTIONS(12393), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCite] = ACTIONS(12393), + [anon_sym_BSLASHnocite] = ACTIONS(12393), + [anon_sym_BSLASHcitet] = ACTIONS(12393), + [anon_sym_BSLASHcitep] = ACTIONS(12393), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteauthor] = ACTIONS(12393), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12393), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitetitle] = ACTIONS(12393), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteyear] = ACTIONS(12393), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitedate] = ACTIONS(12393), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteurl] = ACTIONS(12393), + [anon_sym_BSLASHfullcite] = ACTIONS(12393), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12393), + [anon_sym_BSLASHcitealt] = ACTIONS(12393), + [anon_sym_BSLASHcitealp] = ACTIONS(12393), + [anon_sym_BSLASHcitetext] = ACTIONS(12393), + [anon_sym_BSLASHparencite] = ACTIONS(12393), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHParencite] = ACTIONS(12393), + [anon_sym_BSLASHfootcite] = ACTIONS(12393), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12393), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12393), + [anon_sym_BSLASHtextcite] = ACTIONS(12393), + [anon_sym_BSLASHTextcite] = ACTIONS(12393), + [anon_sym_BSLASHsmartcite] = ACTIONS(12393), + [anon_sym_BSLASHSmartcite] = ACTIONS(12393), + [anon_sym_BSLASHsupercite] = ACTIONS(12393), + [anon_sym_BSLASHautocite] = ACTIONS(12393), + [anon_sym_BSLASHAutocite] = ACTIONS(12393), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHvolcite] = ACTIONS(12393), + [anon_sym_BSLASHVolcite] = ACTIONS(12393), + [anon_sym_BSLASHpvolcite] = ACTIONS(12393), + [anon_sym_BSLASHPvolcite] = ACTIONS(12393), + [anon_sym_BSLASHfvolcite] = ACTIONS(12393), + [anon_sym_BSLASHftvolcite] = ACTIONS(12393), + [anon_sym_BSLASHsvolcite] = ACTIONS(12393), + [anon_sym_BSLASHSvolcite] = ACTIONS(12393), + [anon_sym_BSLASHtvolcite] = ACTIONS(12393), + [anon_sym_BSLASHTvolcite] = ACTIONS(12393), + [anon_sym_BSLASHavolcite] = ACTIONS(12393), + [anon_sym_BSLASHAvolcite] = ACTIONS(12393), + [anon_sym_BSLASHnotecite] = ACTIONS(12393), + [anon_sym_BSLASHpnotecite] = ACTIONS(12393), + [anon_sym_BSLASHPnotecite] = ACTIONS(12393), + [anon_sym_BSLASHfnotecite] = ACTIONS(12393), + [anon_sym_BSLASHusepackage] = ACTIONS(12393), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12393), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12393), + [anon_sym_BSLASHinclude] = ACTIONS(12393), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12393), + [anon_sym_BSLASHinput] = ACTIONS(12393), + [anon_sym_BSLASHsubfile] = ACTIONS(12393), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12393), + [anon_sym_BSLASHbibliography] = ACTIONS(12393), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12393), + [anon_sym_BSLASHincludesvg] = ACTIONS(12393), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12393), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12393), + [anon_sym_BSLASHimport] = ACTIONS(12393), + [anon_sym_BSLASHsubimport] = ACTIONS(12393), + [anon_sym_BSLASHinputfrom] = ACTIONS(12393), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12393), + [anon_sym_BSLASHincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHlabel] = ACTIONS(12393), + [anon_sym_BSLASHref] = ACTIONS(12393), + [anon_sym_BSLASHvref] = ACTIONS(12393), + [anon_sym_BSLASHVref] = ACTIONS(12393), + [anon_sym_BSLASHautoref] = ACTIONS(12393), + [anon_sym_BSLASHpageref] = ACTIONS(12393), + [anon_sym_BSLASHcref] = ACTIONS(12393), + [anon_sym_BSLASHCref] = ACTIONS(12393), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnameCref] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHlabelcref] = ACTIONS(12393), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12393), + [anon_sym_BSLASHeqref] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange] = ACTIONS(12393), + [anon_sym_BSLASHCrefrange] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewlabel] = ACTIONS(12393), + [anon_sym_BSLASHnewcommand] = ACTIONS(12393), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12393), + [anon_sym_BSLASHgls] = ACTIONS(12393), + [anon_sym_BSLASHGls] = ACTIONS(12393), + [anon_sym_BSLASHGLS] = ACTIONS(12393), + [anon_sym_BSLASHglspl] = ACTIONS(12393), + [anon_sym_BSLASHGlspl] = ACTIONS(12393), + [anon_sym_BSLASHGLSpl] = ACTIONS(12393), + [anon_sym_BSLASHglsdisp] = ACTIONS(12393), + [anon_sym_BSLASHglslink] = ACTIONS(12393), + [anon_sym_BSLASHglstext] = ACTIONS(12393), + [anon_sym_BSLASHGlstext] = ACTIONS(12393), + [anon_sym_BSLASHGLStext] = ACTIONS(12393), + [anon_sym_BSLASHglsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12393), + [anon_sym_BSLASHglsplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSplural] = ACTIONS(12393), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHglsname] = ACTIONS(12393), + [anon_sym_BSLASHGlsname] = ACTIONS(12393), + [anon_sym_BSLASHGLSname] = ACTIONS(12393), + [anon_sym_BSLASHglssymbol] = ACTIONS(12393), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12393), + [anon_sym_BSLASHglsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12393), + [anon_sym_BSLASHglsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12393), + [anon_sym_BSLASHglsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12393), + [anon_sym_BSLASHglsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12393), + [anon_sym_BSLASHglsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12393), + [anon_sym_BSLASHnewacronym] = ACTIONS(12393), + [anon_sym_BSLASHacrshort] = ACTIONS(12393), + [anon_sym_BSLASHAcrshort] = ACTIONS(12393), + [anon_sym_BSLASHACRshort] = ACTIONS(12393), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12393), + [anon_sym_BSLASHacrlong] = ACTIONS(12393), + [anon_sym_BSLASHAcrlong] = ACTIONS(12393), + [anon_sym_BSLASHACRlong] = ACTIONS(12393), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12393), + [anon_sym_BSLASHacrfull] = ACTIONS(12393), + [anon_sym_BSLASHAcrfull] = ACTIONS(12393), + [anon_sym_BSLASHACRfull] = ACTIONS(12393), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12393), + [anon_sym_BSLASHacs] = ACTIONS(12393), + [anon_sym_BSLASHAcs] = ACTIONS(12393), + [anon_sym_BSLASHacsp] = ACTIONS(12393), + [anon_sym_BSLASHAcsp] = ACTIONS(12393), + [anon_sym_BSLASHacl] = ACTIONS(12393), + [anon_sym_BSLASHAcl] = ACTIONS(12393), + [anon_sym_BSLASHaclp] = ACTIONS(12393), + [anon_sym_BSLASHAclp] = ACTIONS(12393), + [anon_sym_BSLASHacf] = ACTIONS(12393), + [anon_sym_BSLASHAcf] = ACTIONS(12393), + [anon_sym_BSLASHacfp] = ACTIONS(12393), + [anon_sym_BSLASHAcfp] = ACTIONS(12393), + [anon_sym_BSLASHac] = ACTIONS(12393), + [anon_sym_BSLASHAc] = ACTIONS(12393), + [anon_sym_BSLASHacp] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12393), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12393), + [anon_sym_BSLASHcolor] = ACTIONS(12393), + [anon_sym_BSLASHcolorbox] = ACTIONS(12393), + [anon_sym_BSLASHtextcolor] = ACTIONS(12393), + [anon_sym_BSLASHpagecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12393), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12393), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12393), + }, + [1791] = { + [sym_generic_command_name] = ACTIONS(12397), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12397), + [anon_sym_LBRACK] = ACTIONS(12395), + [anon_sym_RBRACK] = ACTIONS(12395), + [anon_sym_LBRACE] = ACTIONS(12395), + [anon_sym_RBRACE] = ACTIONS(12395), + [anon_sym_LPAREN] = ACTIONS(12395), + [anon_sym_COMMA] = ACTIONS(12395), + [anon_sym_EQ] = ACTIONS(12395), + [sym_word] = ACTIONS(12395), + [sym_param] = ACTIONS(12395), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12395), + [anon_sym_DOLLAR] = ACTIONS(12397), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12395), + [anon_sym_BSLASHbegin] = ACTIONS(12397), + [anon_sym_BSLASHcaption] = ACTIONS(12397), + [anon_sym_BSLASHcite] = ACTIONS(12397), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCite] = ACTIONS(12397), + [anon_sym_BSLASHnocite] = ACTIONS(12397), + [anon_sym_BSLASHcitet] = ACTIONS(12397), + [anon_sym_BSLASHcitep] = ACTIONS(12397), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteauthor] = ACTIONS(12397), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12397), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitetitle] = ACTIONS(12397), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteyear] = ACTIONS(12397), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitedate] = ACTIONS(12397), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteurl] = ACTIONS(12397), + [anon_sym_BSLASHfullcite] = ACTIONS(12397), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12397), + [anon_sym_BSLASHcitealt] = ACTIONS(12397), + [anon_sym_BSLASHcitealp] = ACTIONS(12397), + [anon_sym_BSLASHcitetext] = ACTIONS(12397), + [anon_sym_BSLASHparencite] = ACTIONS(12397), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHParencite] = ACTIONS(12397), + [anon_sym_BSLASHfootcite] = ACTIONS(12397), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12397), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12397), + [anon_sym_BSLASHtextcite] = ACTIONS(12397), + [anon_sym_BSLASHTextcite] = ACTIONS(12397), + [anon_sym_BSLASHsmartcite] = ACTIONS(12397), + [anon_sym_BSLASHSmartcite] = ACTIONS(12397), + [anon_sym_BSLASHsupercite] = ACTIONS(12397), + [anon_sym_BSLASHautocite] = ACTIONS(12397), + [anon_sym_BSLASHAutocite] = ACTIONS(12397), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHvolcite] = ACTIONS(12397), + [anon_sym_BSLASHVolcite] = ACTIONS(12397), + [anon_sym_BSLASHpvolcite] = ACTIONS(12397), + [anon_sym_BSLASHPvolcite] = ACTIONS(12397), + [anon_sym_BSLASHfvolcite] = ACTIONS(12397), + [anon_sym_BSLASHftvolcite] = ACTIONS(12397), + [anon_sym_BSLASHsvolcite] = ACTIONS(12397), + [anon_sym_BSLASHSvolcite] = ACTIONS(12397), + [anon_sym_BSLASHtvolcite] = ACTIONS(12397), + [anon_sym_BSLASHTvolcite] = ACTIONS(12397), + [anon_sym_BSLASHavolcite] = ACTIONS(12397), + [anon_sym_BSLASHAvolcite] = ACTIONS(12397), + [anon_sym_BSLASHnotecite] = ACTIONS(12397), + [anon_sym_BSLASHpnotecite] = ACTIONS(12397), + [anon_sym_BSLASHPnotecite] = ACTIONS(12397), + [anon_sym_BSLASHfnotecite] = ACTIONS(12397), + [anon_sym_BSLASHusepackage] = ACTIONS(12397), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12397), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12397), + [anon_sym_BSLASHinclude] = ACTIONS(12397), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12397), + [anon_sym_BSLASHinput] = ACTIONS(12397), + [anon_sym_BSLASHsubfile] = ACTIONS(12397), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12397), + [anon_sym_BSLASHbibliography] = ACTIONS(12397), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12397), + [anon_sym_BSLASHincludesvg] = ACTIONS(12397), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12397), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12397), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12397), + [anon_sym_BSLASHimport] = ACTIONS(12397), + [anon_sym_BSLASHsubimport] = ACTIONS(12397), + [anon_sym_BSLASHinputfrom] = ACTIONS(12397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12397), + [anon_sym_BSLASHincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHlabel] = ACTIONS(12397), + [anon_sym_BSLASHref] = ACTIONS(12397), + [anon_sym_BSLASHvref] = ACTIONS(12397), + [anon_sym_BSLASHVref] = ACTIONS(12397), + [anon_sym_BSLASHautoref] = ACTIONS(12397), + [anon_sym_BSLASHpageref] = ACTIONS(12397), + [anon_sym_BSLASHcref] = ACTIONS(12397), + [anon_sym_BSLASHCref] = ACTIONS(12397), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnameCref] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHlabelcref] = ACTIONS(12397), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12397), + [anon_sym_BSLASHeqref] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange] = ACTIONS(12397), + [anon_sym_BSLASHCrefrange] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewlabel] = ACTIONS(12397), + [anon_sym_BSLASHnewcommand] = ACTIONS(12397), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12397), + [anon_sym_BSLASHgls] = ACTIONS(12397), + [anon_sym_BSLASHGls] = ACTIONS(12397), + [anon_sym_BSLASHGLS] = ACTIONS(12397), + [anon_sym_BSLASHglspl] = ACTIONS(12397), + [anon_sym_BSLASHGlspl] = ACTIONS(12397), + [anon_sym_BSLASHGLSpl] = ACTIONS(12397), + [anon_sym_BSLASHglsdisp] = ACTIONS(12397), + [anon_sym_BSLASHglslink] = ACTIONS(12397), + [anon_sym_BSLASHglstext] = ACTIONS(12397), + [anon_sym_BSLASHGlstext] = ACTIONS(12397), + [anon_sym_BSLASHGLStext] = ACTIONS(12397), + [anon_sym_BSLASHglsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12397), + [anon_sym_BSLASHglsplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSplural] = ACTIONS(12397), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHglsname] = ACTIONS(12397), + [anon_sym_BSLASHGlsname] = ACTIONS(12397), + [anon_sym_BSLASHGLSname] = ACTIONS(12397), + [anon_sym_BSLASHglssymbol] = ACTIONS(12397), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12397), + [anon_sym_BSLASHglsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12397), + [anon_sym_BSLASHglsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12397), + [anon_sym_BSLASHglsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12397), + [anon_sym_BSLASHglsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12397), + [anon_sym_BSLASHglsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12397), + [anon_sym_BSLASHnewacronym] = ACTIONS(12397), + [anon_sym_BSLASHacrshort] = ACTIONS(12397), + [anon_sym_BSLASHAcrshort] = ACTIONS(12397), + [anon_sym_BSLASHACRshort] = ACTIONS(12397), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12397), + [anon_sym_BSLASHacrlong] = ACTIONS(12397), + [anon_sym_BSLASHAcrlong] = ACTIONS(12397), + [anon_sym_BSLASHACRlong] = ACTIONS(12397), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12397), + [anon_sym_BSLASHacrfull] = ACTIONS(12397), + [anon_sym_BSLASHAcrfull] = ACTIONS(12397), + [anon_sym_BSLASHACRfull] = ACTIONS(12397), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12397), + [anon_sym_BSLASHacs] = ACTIONS(12397), + [anon_sym_BSLASHAcs] = ACTIONS(12397), + [anon_sym_BSLASHacsp] = ACTIONS(12397), + [anon_sym_BSLASHAcsp] = ACTIONS(12397), + [anon_sym_BSLASHacl] = ACTIONS(12397), + [anon_sym_BSLASHAcl] = ACTIONS(12397), + [anon_sym_BSLASHaclp] = ACTIONS(12397), + [anon_sym_BSLASHAclp] = ACTIONS(12397), + [anon_sym_BSLASHacf] = ACTIONS(12397), + [anon_sym_BSLASHAcf] = ACTIONS(12397), + [anon_sym_BSLASHacfp] = ACTIONS(12397), + [anon_sym_BSLASHAcfp] = ACTIONS(12397), + [anon_sym_BSLASHac] = ACTIONS(12397), + [anon_sym_BSLASHAc] = ACTIONS(12397), + [anon_sym_BSLASHacp] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12397), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12397), + [anon_sym_BSLASHcolor] = ACTIONS(12397), + [anon_sym_BSLASHcolorbox] = ACTIONS(12397), + [anon_sym_BSLASHtextcolor] = ACTIONS(12397), + [anon_sym_BSLASHpagecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12397), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12397), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12397), + }, + [1792] = { + [sym_generic_command_name] = ACTIONS(12401), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12401), + [anon_sym_LBRACK] = ACTIONS(12399), + [anon_sym_RBRACK] = ACTIONS(12399), + [anon_sym_LBRACE] = ACTIONS(12399), + [anon_sym_RBRACE] = ACTIONS(12399), + [anon_sym_LPAREN] = ACTIONS(12399), + [anon_sym_COMMA] = ACTIONS(12399), + [anon_sym_EQ] = ACTIONS(12399), + [sym_word] = ACTIONS(12399), + [sym_param] = ACTIONS(12399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12399), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12399), + [anon_sym_DOLLAR] = ACTIONS(12401), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12399), + [anon_sym_BSLASHbegin] = ACTIONS(12401), + [anon_sym_BSLASHcaption] = ACTIONS(12401), + [anon_sym_BSLASHcite] = ACTIONS(12401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCite] = ACTIONS(12401), + [anon_sym_BSLASHnocite] = ACTIONS(12401), + [anon_sym_BSLASHcitet] = ACTIONS(12401), + [anon_sym_BSLASHcitep] = ACTIONS(12401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteauthor] = ACTIONS(12401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitetitle] = ACTIONS(12401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteyear] = ACTIONS(12401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitedate] = ACTIONS(12401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteurl] = ACTIONS(12401), + [anon_sym_BSLASHfullcite] = ACTIONS(12401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12401), + [anon_sym_BSLASHcitealt] = ACTIONS(12401), + [anon_sym_BSLASHcitealp] = ACTIONS(12401), + [anon_sym_BSLASHcitetext] = ACTIONS(12401), + [anon_sym_BSLASHparencite] = ACTIONS(12401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHParencite] = ACTIONS(12401), + [anon_sym_BSLASHfootcite] = ACTIONS(12401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12401), + [anon_sym_BSLASHtextcite] = ACTIONS(12401), + [anon_sym_BSLASHTextcite] = ACTIONS(12401), + [anon_sym_BSLASHsmartcite] = ACTIONS(12401), + [anon_sym_BSLASHSmartcite] = ACTIONS(12401), + [anon_sym_BSLASHsupercite] = ACTIONS(12401), + [anon_sym_BSLASHautocite] = ACTIONS(12401), + [anon_sym_BSLASHAutocite] = ACTIONS(12401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHvolcite] = ACTIONS(12401), + [anon_sym_BSLASHVolcite] = ACTIONS(12401), + [anon_sym_BSLASHpvolcite] = ACTIONS(12401), + [anon_sym_BSLASHPvolcite] = ACTIONS(12401), + [anon_sym_BSLASHfvolcite] = ACTIONS(12401), + [anon_sym_BSLASHftvolcite] = ACTIONS(12401), + [anon_sym_BSLASHsvolcite] = ACTIONS(12401), + [anon_sym_BSLASHSvolcite] = ACTIONS(12401), + [anon_sym_BSLASHtvolcite] = ACTIONS(12401), + [anon_sym_BSLASHTvolcite] = ACTIONS(12401), + [anon_sym_BSLASHavolcite] = ACTIONS(12401), + [anon_sym_BSLASHAvolcite] = ACTIONS(12401), + [anon_sym_BSLASHnotecite] = ACTIONS(12401), + [anon_sym_BSLASHpnotecite] = ACTIONS(12401), + [anon_sym_BSLASHPnotecite] = ACTIONS(12401), + [anon_sym_BSLASHfnotecite] = ACTIONS(12401), + [anon_sym_BSLASHusepackage] = ACTIONS(12401), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12401), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12401), + [anon_sym_BSLASHinclude] = ACTIONS(12401), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12401), + [anon_sym_BSLASHinput] = ACTIONS(12401), + [anon_sym_BSLASHsubfile] = ACTIONS(12401), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12401), + [anon_sym_BSLASHbibliography] = ACTIONS(12401), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12401), + [anon_sym_BSLASHincludesvg] = ACTIONS(12401), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12401), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12401), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12401), + [anon_sym_BSLASHimport] = ACTIONS(12401), + [anon_sym_BSLASHsubimport] = ACTIONS(12401), + [anon_sym_BSLASHinputfrom] = ACTIONS(12401), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12401), + [anon_sym_BSLASHincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHlabel] = ACTIONS(12401), + [anon_sym_BSLASHref] = ACTIONS(12401), + [anon_sym_BSLASHvref] = ACTIONS(12401), + [anon_sym_BSLASHVref] = ACTIONS(12401), + [anon_sym_BSLASHautoref] = ACTIONS(12401), + [anon_sym_BSLASHpageref] = ACTIONS(12401), + [anon_sym_BSLASHcref] = ACTIONS(12401), + [anon_sym_BSLASHCref] = ACTIONS(12401), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnameCref] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHlabelcref] = ACTIONS(12401), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12401), + [anon_sym_BSLASHeqref] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange] = ACTIONS(12401), + [anon_sym_BSLASHCrefrange] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewlabel] = ACTIONS(12401), + [anon_sym_BSLASHnewcommand] = ACTIONS(12401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12401), + [anon_sym_BSLASHgls] = ACTIONS(12401), + [anon_sym_BSLASHGls] = ACTIONS(12401), + [anon_sym_BSLASHGLS] = ACTIONS(12401), + [anon_sym_BSLASHglspl] = ACTIONS(12401), + [anon_sym_BSLASHGlspl] = ACTIONS(12401), + [anon_sym_BSLASHGLSpl] = ACTIONS(12401), + [anon_sym_BSLASHglsdisp] = ACTIONS(12401), + [anon_sym_BSLASHglslink] = ACTIONS(12401), + [anon_sym_BSLASHglstext] = ACTIONS(12401), + [anon_sym_BSLASHGlstext] = ACTIONS(12401), + [anon_sym_BSLASHGLStext] = ACTIONS(12401), + [anon_sym_BSLASHglsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12401), + [anon_sym_BSLASHglsplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSplural] = ACTIONS(12401), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHglsname] = ACTIONS(12401), + [anon_sym_BSLASHGlsname] = ACTIONS(12401), + [anon_sym_BSLASHGLSname] = ACTIONS(12401), + [anon_sym_BSLASHglssymbol] = ACTIONS(12401), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12401), + [anon_sym_BSLASHglsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12401), + [anon_sym_BSLASHglsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12401), + [anon_sym_BSLASHglsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12401), + [anon_sym_BSLASHglsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12401), + [anon_sym_BSLASHglsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12401), + [anon_sym_BSLASHnewacronym] = ACTIONS(12401), + [anon_sym_BSLASHacrshort] = ACTIONS(12401), + [anon_sym_BSLASHAcrshort] = ACTIONS(12401), + [anon_sym_BSLASHACRshort] = ACTIONS(12401), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12401), + [anon_sym_BSLASHacrlong] = ACTIONS(12401), + [anon_sym_BSLASHAcrlong] = ACTIONS(12401), + [anon_sym_BSLASHACRlong] = ACTIONS(12401), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12401), + [anon_sym_BSLASHacrfull] = ACTIONS(12401), + [anon_sym_BSLASHAcrfull] = ACTIONS(12401), + [anon_sym_BSLASHACRfull] = ACTIONS(12401), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12401), + [anon_sym_BSLASHacs] = ACTIONS(12401), + [anon_sym_BSLASHAcs] = ACTIONS(12401), + [anon_sym_BSLASHacsp] = ACTIONS(12401), + [anon_sym_BSLASHAcsp] = ACTIONS(12401), + [anon_sym_BSLASHacl] = ACTIONS(12401), + [anon_sym_BSLASHAcl] = ACTIONS(12401), + [anon_sym_BSLASHaclp] = ACTIONS(12401), + [anon_sym_BSLASHAclp] = ACTIONS(12401), + [anon_sym_BSLASHacf] = ACTIONS(12401), + [anon_sym_BSLASHAcf] = ACTIONS(12401), + [anon_sym_BSLASHacfp] = ACTIONS(12401), + [anon_sym_BSLASHAcfp] = ACTIONS(12401), + [anon_sym_BSLASHac] = ACTIONS(12401), + [anon_sym_BSLASHAc] = ACTIONS(12401), + [anon_sym_BSLASHacp] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12401), + [anon_sym_BSLASHcolor] = ACTIONS(12401), + [anon_sym_BSLASHcolorbox] = ACTIONS(12401), + [anon_sym_BSLASHtextcolor] = ACTIONS(12401), + [anon_sym_BSLASHpagecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12401), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12401), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12401), + }, + [1793] = { + [sym_generic_command_name] = ACTIONS(12405), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12405), + [anon_sym_LBRACK] = ACTIONS(12403), + [anon_sym_RBRACK] = ACTIONS(12403), + [anon_sym_LBRACE] = ACTIONS(12403), + [anon_sym_RBRACE] = ACTIONS(12403), + [anon_sym_LPAREN] = ACTIONS(12403), + [anon_sym_COMMA] = ACTIONS(12403), + [anon_sym_EQ] = ACTIONS(12403), + [sym_word] = ACTIONS(12403), + [sym_param] = ACTIONS(12403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12403), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12403), + [anon_sym_DOLLAR] = ACTIONS(12405), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12403), + [anon_sym_BSLASHbegin] = ACTIONS(12405), + [anon_sym_BSLASHcaption] = ACTIONS(12405), + [anon_sym_BSLASHcite] = ACTIONS(12405), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCite] = ACTIONS(12405), + [anon_sym_BSLASHnocite] = ACTIONS(12405), + [anon_sym_BSLASHcitet] = ACTIONS(12405), + [anon_sym_BSLASHcitep] = ACTIONS(12405), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteauthor] = ACTIONS(12405), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12405), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitetitle] = ACTIONS(12405), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteyear] = ACTIONS(12405), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitedate] = ACTIONS(12405), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteurl] = ACTIONS(12405), + [anon_sym_BSLASHfullcite] = ACTIONS(12405), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12405), + [anon_sym_BSLASHcitealt] = ACTIONS(12405), + [anon_sym_BSLASHcitealp] = ACTIONS(12405), + [anon_sym_BSLASHcitetext] = ACTIONS(12405), + [anon_sym_BSLASHparencite] = ACTIONS(12405), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHParencite] = ACTIONS(12405), + [anon_sym_BSLASHfootcite] = ACTIONS(12405), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12405), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12405), + [anon_sym_BSLASHtextcite] = ACTIONS(12405), + [anon_sym_BSLASHTextcite] = ACTIONS(12405), + [anon_sym_BSLASHsmartcite] = ACTIONS(12405), + [anon_sym_BSLASHSmartcite] = ACTIONS(12405), + [anon_sym_BSLASHsupercite] = ACTIONS(12405), + [anon_sym_BSLASHautocite] = ACTIONS(12405), + [anon_sym_BSLASHAutocite] = ACTIONS(12405), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHvolcite] = ACTIONS(12405), + [anon_sym_BSLASHVolcite] = ACTIONS(12405), + [anon_sym_BSLASHpvolcite] = ACTIONS(12405), + [anon_sym_BSLASHPvolcite] = ACTIONS(12405), + [anon_sym_BSLASHfvolcite] = ACTIONS(12405), + [anon_sym_BSLASHftvolcite] = ACTIONS(12405), + [anon_sym_BSLASHsvolcite] = ACTIONS(12405), + [anon_sym_BSLASHSvolcite] = ACTIONS(12405), + [anon_sym_BSLASHtvolcite] = ACTIONS(12405), + [anon_sym_BSLASHTvolcite] = ACTIONS(12405), + [anon_sym_BSLASHavolcite] = ACTIONS(12405), + [anon_sym_BSLASHAvolcite] = ACTIONS(12405), + [anon_sym_BSLASHnotecite] = ACTIONS(12405), + [anon_sym_BSLASHpnotecite] = ACTIONS(12405), + [anon_sym_BSLASHPnotecite] = ACTIONS(12405), + [anon_sym_BSLASHfnotecite] = ACTIONS(12405), + [anon_sym_BSLASHusepackage] = ACTIONS(12405), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12405), + [anon_sym_BSLASHinclude] = ACTIONS(12405), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12405), + [anon_sym_BSLASHinput] = ACTIONS(12405), + [anon_sym_BSLASHsubfile] = ACTIONS(12405), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12405), + [anon_sym_BSLASHbibliography] = ACTIONS(12405), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12405), + [anon_sym_BSLASHincludesvg] = ACTIONS(12405), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12405), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12405), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12405), + [anon_sym_BSLASHimport] = ACTIONS(12405), + [anon_sym_BSLASHsubimport] = ACTIONS(12405), + [anon_sym_BSLASHinputfrom] = ACTIONS(12405), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12405), + [anon_sym_BSLASHincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHlabel] = ACTIONS(12405), + [anon_sym_BSLASHref] = ACTIONS(12405), + [anon_sym_BSLASHvref] = ACTIONS(12405), + [anon_sym_BSLASHVref] = ACTIONS(12405), + [anon_sym_BSLASHautoref] = ACTIONS(12405), + [anon_sym_BSLASHpageref] = ACTIONS(12405), + [anon_sym_BSLASHcref] = ACTIONS(12405), + [anon_sym_BSLASHCref] = ACTIONS(12405), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnameCref] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHlabelcref] = ACTIONS(12405), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12405), + [anon_sym_BSLASHeqref] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange] = ACTIONS(12405), + [anon_sym_BSLASHCrefrange] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewlabel] = ACTIONS(12405), + [anon_sym_BSLASHnewcommand] = ACTIONS(12405), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12405), + [anon_sym_BSLASHgls] = ACTIONS(12405), + [anon_sym_BSLASHGls] = ACTIONS(12405), + [anon_sym_BSLASHGLS] = ACTIONS(12405), + [anon_sym_BSLASHglspl] = ACTIONS(12405), + [anon_sym_BSLASHGlspl] = ACTIONS(12405), + [anon_sym_BSLASHGLSpl] = ACTIONS(12405), + [anon_sym_BSLASHglsdisp] = ACTIONS(12405), + [anon_sym_BSLASHglslink] = ACTIONS(12405), + [anon_sym_BSLASHglstext] = ACTIONS(12405), + [anon_sym_BSLASHGlstext] = ACTIONS(12405), + [anon_sym_BSLASHGLStext] = ACTIONS(12405), + [anon_sym_BSLASHglsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12405), + [anon_sym_BSLASHglsplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSplural] = ACTIONS(12405), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHglsname] = ACTIONS(12405), + [anon_sym_BSLASHGlsname] = ACTIONS(12405), + [anon_sym_BSLASHGLSname] = ACTIONS(12405), + [anon_sym_BSLASHglssymbol] = ACTIONS(12405), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12405), + [anon_sym_BSLASHglsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12405), + [anon_sym_BSLASHglsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12405), + [anon_sym_BSLASHglsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12405), + [anon_sym_BSLASHglsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12405), + [anon_sym_BSLASHglsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12405), + [anon_sym_BSLASHnewacronym] = ACTIONS(12405), + [anon_sym_BSLASHacrshort] = ACTIONS(12405), + [anon_sym_BSLASHAcrshort] = ACTIONS(12405), + [anon_sym_BSLASHACRshort] = ACTIONS(12405), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12405), + [anon_sym_BSLASHacrlong] = ACTIONS(12405), + [anon_sym_BSLASHAcrlong] = ACTIONS(12405), + [anon_sym_BSLASHACRlong] = ACTIONS(12405), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12405), + [anon_sym_BSLASHacrfull] = ACTIONS(12405), + [anon_sym_BSLASHAcrfull] = ACTIONS(12405), + [anon_sym_BSLASHACRfull] = ACTIONS(12405), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12405), + [anon_sym_BSLASHacs] = ACTIONS(12405), + [anon_sym_BSLASHAcs] = ACTIONS(12405), + [anon_sym_BSLASHacsp] = ACTIONS(12405), + [anon_sym_BSLASHAcsp] = ACTIONS(12405), + [anon_sym_BSLASHacl] = ACTIONS(12405), + [anon_sym_BSLASHAcl] = ACTIONS(12405), + [anon_sym_BSLASHaclp] = ACTIONS(12405), + [anon_sym_BSLASHAclp] = ACTIONS(12405), + [anon_sym_BSLASHacf] = ACTIONS(12405), + [anon_sym_BSLASHAcf] = ACTIONS(12405), + [anon_sym_BSLASHacfp] = ACTIONS(12405), + [anon_sym_BSLASHAcfp] = ACTIONS(12405), + [anon_sym_BSLASHac] = ACTIONS(12405), + [anon_sym_BSLASHAc] = ACTIONS(12405), + [anon_sym_BSLASHacp] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12405), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12405), + [anon_sym_BSLASHcolor] = ACTIONS(12405), + [anon_sym_BSLASHcolorbox] = ACTIONS(12405), + [anon_sym_BSLASHtextcolor] = ACTIONS(12405), + [anon_sym_BSLASHpagecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12405), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12405), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12405), + }, + [1794] = { + [sym_generic_command_name] = ACTIONS(12409), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12409), + [anon_sym_LBRACK] = ACTIONS(12407), + [anon_sym_RBRACK] = ACTIONS(12407), + [anon_sym_LBRACE] = ACTIONS(12407), + [anon_sym_RBRACE] = ACTIONS(12407), + [anon_sym_LPAREN] = ACTIONS(12407), + [anon_sym_COMMA] = ACTIONS(12407), + [anon_sym_EQ] = ACTIONS(12407), + [sym_word] = ACTIONS(12407), + [sym_param] = ACTIONS(12407), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12407), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12407), + [anon_sym_DOLLAR] = ACTIONS(12409), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12407), + [anon_sym_BSLASHbegin] = ACTIONS(12409), + [anon_sym_BSLASHcaption] = ACTIONS(12409), + [anon_sym_BSLASHcite] = ACTIONS(12409), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCite] = ACTIONS(12409), + [anon_sym_BSLASHnocite] = ACTIONS(12409), + [anon_sym_BSLASHcitet] = ACTIONS(12409), + [anon_sym_BSLASHcitep] = ACTIONS(12409), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteauthor] = ACTIONS(12409), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12409), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitetitle] = ACTIONS(12409), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteyear] = ACTIONS(12409), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitedate] = ACTIONS(12409), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteurl] = ACTIONS(12409), + [anon_sym_BSLASHfullcite] = ACTIONS(12409), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12409), + [anon_sym_BSLASHcitealt] = ACTIONS(12409), + [anon_sym_BSLASHcitealp] = ACTIONS(12409), + [anon_sym_BSLASHcitetext] = ACTIONS(12409), + [anon_sym_BSLASHparencite] = ACTIONS(12409), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHParencite] = ACTIONS(12409), + [anon_sym_BSLASHfootcite] = ACTIONS(12409), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12409), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12409), + [anon_sym_BSLASHtextcite] = ACTIONS(12409), + [anon_sym_BSLASHTextcite] = ACTIONS(12409), + [anon_sym_BSLASHsmartcite] = ACTIONS(12409), + [anon_sym_BSLASHSmartcite] = ACTIONS(12409), + [anon_sym_BSLASHsupercite] = ACTIONS(12409), + [anon_sym_BSLASHautocite] = ACTIONS(12409), + [anon_sym_BSLASHAutocite] = ACTIONS(12409), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHvolcite] = ACTIONS(12409), + [anon_sym_BSLASHVolcite] = ACTIONS(12409), + [anon_sym_BSLASHpvolcite] = ACTIONS(12409), + [anon_sym_BSLASHPvolcite] = ACTIONS(12409), + [anon_sym_BSLASHfvolcite] = ACTIONS(12409), + [anon_sym_BSLASHftvolcite] = ACTIONS(12409), + [anon_sym_BSLASHsvolcite] = ACTIONS(12409), + [anon_sym_BSLASHSvolcite] = ACTIONS(12409), + [anon_sym_BSLASHtvolcite] = ACTIONS(12409), + [anon_sym_BSLASHTvolcite] = ACTIONS(12409), + [anon_sym_BSLASHavolcite] = ACTIONS(12409), + [anon_sym_BSLASHAvolcite] = ACTIONS(12409), + [anon_sym_BSLASHnotecite] = ACTIONS(12409), + [anon_sym_BSLASHpnotecite] = ACTIONS(12409), + [anon_sym_BSLASHPnotecite] = ACTIONS(12409), + [anon_sym_BSLASHfnotecite] = ACTIONS(12409), + [anon_sym_BSLASHusepackage] = ACTIONS(12409), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12409), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12409), + [anon_sym_BSLASHinclude] = ACTIONS(12409), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12409), + [anon_sym_BSLASHinput] = ACTIONS(12409), + [anon_sym_BSLASHsubfile] = ACTIONS(12409), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12409), + [anon_sym_BSLASHbibliography] = ACTIONS(12409), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12409), + [anon_sym_BSLASHincludesvg] = ACTIONS(12409), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12409), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12409), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12409), + [anon_sym_BSLASHimport] = ACTIONS(12409), + [anon_sym_BSLASHsubimport] = ACTIONS(12409), + [anon_sym_BSLASHinputfrom] = ACTIONS(12409), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12409), + [anon_sym_BSLASHincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHlabel] = ACTIONS(12409), + [anon_sym_BSLASHref] = ACTIONS(12409), + [anon_sym_BSLASHvref] = ACTIONS(12409), + [anon_sym_BSLASHVref] = ACTIONS(12409), + [anon_sym_BSLASHautoref] = ACTIONS(12409), + [anon_sym_BSLASHpageref] = ACTIONS(12409), + [anon_sym_BSLASHcref] = ACTIONS(12409), + [anon_sym_BSLASHCref] = ACTIONS(12409), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnameCref] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHlabelcref] = ACTIONS(12409), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12409), + [anon_sym_BSLASHeqref] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange] = ACTIONS(12409), + [anon_sym_BSLASHCrefrange] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewlabel] = ACTIONS(12409), + [anon_sym_BSLASHnewcommand] = ACTIONS(12409), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12409), + [anon_sym_BSLASHgls] = ACTIONS(12409), + [anon_sym_BSLASHGls] = ACTIONS(12409), + [anon_sym_BSLASHGLS] = ACTIONS(12409), + [anon_sym_BSLASHglspl] = ACTIONS(12409), + [anon_sym_BSLASHGlspl] = ACTIONS(12409), + [anon_sym_BSLASHGLSpl] = ACTIONS(12409), + [anon_sym_BSLASHglsdisp] = ACTIONS(12409), + [anon_sym_BSLASHglslink] = ACTIONS(12409), + [anon_sym_BSLASHglstext] = ACTIONS(12409), + [anon_sym_BSLASHGlstext] = ACTIONS(12409), + [anon_sym_BSLASHGLStext] = ACTIONS(12409), + [anon_sym_BSLASHglsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12409), + [anon_sym_BSLASHglsplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSplural] = ACTIONS(12409), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHglsname] = ACTIONS(12409), + [anon_sym_BSLASHGlsname] = ACTIONS(12409), + [anon_sym_BSLASHGLSname] = ACTIONS(12409), + [anon_sym_BSLASHglssymbol] = ACTIONS(12409), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12409), + [anon_sym_BSLASHglsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12409), + [anon_sym_BSLASHglsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12409), + [anon_sym_BSLASHglsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12409), + [anon_sym_BSLASHglsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12409), + [anon_sym_BSLASHglsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12409), + [anon_sym_BSLASHnewacronym] = ACTIONS(12409), + [anon_sym_BSLASHacrshort] = ACTIONS(12409), + [anon_sym_BSLASHAcrshort] = ACTIONS(12409), + [anon_sym_BSLASHACRshort] = ACTIONS(12409), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12409), + [anon_sym_BSLASHacrlong] = ACTIONS(12409), + [anon_sym_BSLASHAcrlong] = ACTIONS(12409), + [anon_sym_BSLASHACRlong] = ACTIONS(12409), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12409), + [anon_sym_BSLASHacrfull] = ACTIONS(12409), + [anon_sym_BSLASHAcrfull] = ACTIONS(12409), + [anon_sym_BSLASHACRfull] = ACTIONS(12409), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12409), + [anon_sym_BSLASHacs] = ACTIONS(12409), + [anon_sym_BSLASHAcs] = ACTIONS(12409), + [anon_sym_BSLASHacsp] = ACTIONS(12409), + [anon_sym_BSLASHAcsp] = ACTIONS(12409), + [anon_sym_BSLASHacl] = ACTIONS(12409), + [anon_sym_BSLASHAcl] = ACTIONS(12409), + [anon_sym_BSLASHaclp] = ACTIONS(12409), + [anon_sym_BSLASHAclp] = ACTIONS(12409), + [anon_sym_BSLASHacf] = ACTIONS(12409), + [anon_sym_BSLASHAcf] = ACTIONS(12409), + [anon_sym_BSLASHacfp] = ACTIONS(12409), + [anon_sym_BSLASHAcfp] = ACTIONS(12409), + [anon_sym_BSLASHac] = ACTIONS(12409), + [anon_sym_BSLASHAc] = ACTIONS(12409), + [anon_sym_BSLASHacp] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12409), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12409), + [anon_sym_BSLASHcolor] = ACTIONS(12409), + [anon_sym_BSLASHcolorbox] = ACTIONS(12409), + [anon_sym_BSLASHtextcolor] = ACTIONS(12409), + [anon_sym_BSLASHpagecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12409), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12409), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12409), + }, + [1795] = { + [sym_generic_command_name] = ACTIONS(12413), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12413), + [anon_sym_LBRACK] = ACTIONS(12411), + [anon_sym_RBRACK] = ACTIONS(12411), + [anon_sym_LBRACE] = ACTIONS(12411), + [anon_sym_RBRACE] = ACTIONS(12411), + [anon_sym_LPAREN] = ACTIONS(12411), + [anon_sym_COMMA] = ACTIONS(12411), + [anon_sym_EQ] = ACTIONS(12411), + [sym_word] = ACTIONS(12411), + [sym_param] = ACTIONS(12411), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12411), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12411), + [anon_sym_DOLLAR] = ACTIONS(12413), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12411), + [anon_sym_BSLASHbegin] = ACTIONS(12413), + [anon_sym_BSLASHcaption] = ACTIONS(12413), + [anon_sym_BSLASHcite] = ACTIONS(12413), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCite] = ACTIONS(12413), + [anon_sym_BSLASHnocite] = ACTIONS(12413), + [anon_sym_BSLASHcitet] = ACTIONS(12413), + [anon_sym_BSLASHcitep] = ACTIONS(12413), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteauthor] = ACTIONS(12413), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12413), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitetitle] = ACTIONS(12413), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteyear] = ACTIONS(12413), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitedate] = ACTIONS(12413), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteurl] = ACTIONS(12413), + [anon_sym_BSLASHfullcite] = ACTIONS(12413), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12413), + [anon_sym_BSLASHcitealt] = ACTIONS(12413), + [anon_sym_BSLASHcitealp] = ACTIONS(12413), + [anon_sym_BSLASHcitetext] = ACTIONS(12413), + [anon_sym_BSLASHparencite] = ACTIONS(12413), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHParencite] = ACTIONS(12413), + [anon_sym_BSLASHfootcite] = ACTIONS(12413), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12413), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12413), + [anon_sym_BSLASHtextcite] = ACTIONS(12413), + [anon_sym_BSLASHTextcite] = ACTIONS(12413), + [anon_sym_BSLASHsmartcite] = ACTIONS(12413), + [anon_sym_BSLASHSmartcite] = ACTIONS(12413), + [anon_sym_BSLASHsupercite] = ACTIONS(12413), + [anon_sym_BSLASHautocite] = ACTIONS(12413), + [anon_sym_BSLASHAutocite] = ACTIONS(12413), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHvolcite] = ACTIONS(12413), + [anon_sym_BSLASHVolcite] = ACTIONS(12413), + [anon_sym_BSLASHpvolcite] = ACTIONS(12413), + [anon_sym_BSLASHPvolcite] = ACTIONS(12413), + [anon_sym_BSLASHfvolcite] = ACTIONS(12413), + [anon_sym_BSLASHftvolcite] = ACTIONS(12413), + [anon_sym_BSLASHsvolcite] = ACTIONS(12413), + [anon_sym_BSLASHSvolcite] = ACTIONS(12413), + [anon_sym_BSLASHtvolcite] = ACTIONS(12413), + [anon_sym_BSLASHTvolcite] = ACTIONS(12413), + [anon_sym_BSLASHavolcite] = ACTIONS(12413), + [anon_sym_BSLASHAvolcite] = ACTIONS(12413), + [anon_sym_BSLASHnotecite] = ACTIONS(12413), + [anon_sym_BSLASHpnotecite] = ACTIONS(12413), + [anon_sym_BSLASHPnotecite] = ACTIONS(12413), + [anon_sym_BSLASHfnotecite] = ACTIONS(12413), + [anon_sym_BSLASHusepackage] = ACTIONS(12413), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12413), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12413), + [anon_sym_BSLASHinclude] = ACTIONS(12413), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12413), + [anon_sym_BSLASHinput] = ACTIONS(12413), + [anon_sym_BSLASHsubfile] = ACTIONS(12413), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12413), + [anon_sym_BSLASHbibliography] = ACTIONS(12413), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12413), + [anon_sym_BSLASHincludesvg] = ACTIONS(12413), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12413), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12413), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12413), + [anon_sym_BSLASHimport] = ACTIONS(12413), + [anon_sym_BSLASHsubimport] = ACTIONS(12413), + [anon_sym_BSLASHinputfrom] = ACTIONS(12413), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12413), + [anon_sym_BSLASHincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHlabel] = ACTIONS(12413), + [anon_sym_BSLASHref] = ACTIONS(12413), + [anon_sym_BSLASHvref] = ACTIONS(12413), + [anon_sym_BSLASHVref] = ACTIONS(12413), + [anon_sym_BSLASHautoref] = ACTIONS(12413), + [anon_sym_BSLASHpageref] = ACTIONS(12413), + [anon_sym_BSLASHcref] = ACTIONS(12413), + [anon_sym_BSLASHCref] = ACTIONS(12413), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnameCref] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHlabelcref] = ACTIONS(12413), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12413), + [anon_sym_BSLASHeqref] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange] = ACTIONS(12413), + [anon_sym_BSLASHCrefrange] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewlabel] = ACTIONS(12413), + [anon_sym_BSLASHnewcommand] = ACTIONS(12413), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12413), + [anon_sym_BSLASHgls] = ACTIONS(12413), + [anon_sym_BSLASHGls] = ACTIONS(12413), + [anon_sym_BSLASHGLS] = ACTIONS(12413), + [anon_sym_BSLASHglspl] = ACTIONS(12413), + [anon_sym_BSLASHGlspl] = ACTIONS(12413), + [anon_sym_BSLASHGLSpl] = ACTIONS(12413), + [anon_sym_BSLASHglsdisp] = ACTIONS(12413), + [anon_sym_BSLASHglslink] = ACTIONS(12413), + [anon_sym_BSLASHglstext] = ACTIONS(12413), + [anon_sym_BSLASHGlstext] = ACTIONS(12413), + [anon_sym_BSLASHGLStext] = ACTIONS(12413), + [anon_sym_BSLASHglsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12413), + [anon_sym_BSLASHglsplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSplural] = ACTIONS(12413), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHglsname] = ACTIONS(12413), + [anon_sym_BSLASHGlsname] = ACTIONS(12413), + [anon_sym_BSLASHGLSname] = ACTIONS(12413), + [anon_sym_BSLASHglssymbol] = ACTIONS(12413), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12413), + [anon_sym_BSLASHglsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12413), + [anon_sym_BSLASHglsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12413), + [anon_sym_BSLASHglsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12413), + [anon_sym_BSLASHglsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12413), + [anon_sym_BSLASHglsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12413), + [anon_sym_BSLASHnewacronym] = ACTIONS(12413), + [anon_sym_BSLASHacrshort] = ACTIONS(12413), + [anon_sym_BSLASHAcrshort] = ACTIONS(12413), + [anon_sym_BSLASHACRshort] = ACTIONS(12413), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12413), + [anon_sym_BSLASHacrlong] = ACTIONS(12413), + [anon_sym_BSLASHAcrlong] = ACTIONS(12413), + [anon_sym_BSLASHACRlong] = ACTIONS(12413), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12413), + [anon_sym_BSLASHacrfull] = ACTIONS(12413), + [anon_sym_BSLASHAcrfull] = ACTIONS(12413), + [anon_sym_BSLASHACRfull] = ACTIONS(12413), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12413), + [anon_sym_BSLASHacs] = ACTIONS(12413), + [anon_sym_BSLASHAcs] = ACTIONS(12413), + [anon_sym_BSLASHacsp] = ACTIONS(12413), + [anon_sym_BSLASHAcsp] = ACTIONS(12413), + [anon_sym_BSLASHacl] = ACTIONS(12413), + [anon_sym_BSLASHAcl] = ACTIONS(12413), + [anon_sym_BSLASHaclp] = ACTIONS(12413), + [anon_sym_BSLASHAclp] = ACTIONS(12413), + [anon_sym_BSLASHacf] = ACTIONS(12413), + [anon_sym_BSLASHAcf] = ACTIONS(12413), + [anon_sym_BSLASHacfp] = ACTIONS(12413), + [anon_sym_BSLASHAcfp] = ACTIONS(12413), + [anon_sym_BSLASHac] = ACTIONS(12413), + [anon_sym_BSLASHAc] = ACTIONS(12413), + [anon_sym_BSLASHacp] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12413), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12413), + [anon_sym_BSLASHcolor] = ACTIONS(12413), + [anon_sym_BSLASHcolorbox] = ACTIONS(12413), + [anon_sym_BSLASHtextcolor] = ACTIONS(12413), + [anon_sym_BSLASHpagecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12413), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12413), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12413), + }, + [1796] = { + [sym_generic_command_name] = ACTIONS(12421), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12421), + [anon_sym_LBRACK] = ACTIONS(12419), + [anon_sym_RBRACK] = ACTIONS(12419), + [anon_sym_LBRACE] = ACTIONS(12419), + [anon_sym_RBRACE] = ACTIONS(12419), + [anon_sym_LPAREN] = ACTIONS(12419), + [anon_sym_COMMA] = ACTIONS(12419), + [anon_sym_EQ] = ACTIONS(12419), + [sym_word] = ACTIONS(12419), + [sym_param] = ACTIONS(12419), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12419), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12419), + [anon_sym_DOLLAR] = ACTIONS(12421), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12419), + [anon_sym_BSLASHbegin] = ACTIONS(12421), + [anon_sym_BSLASHcaption] = ACTIONS(12421), + [anon_sym_BSLASHcite] = ACTIONS(12421), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCite] = ACTIONS(12421), + [anon_sym_BSLASHnocite] = ACTIONS(12421), + [anon_sym_BSLASHcitet] = ACTIONS(12421), + [anon_sym_BSLASHcitep] = ACTIONS(12421), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteauthor] = ACTIONS(12421), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12421), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitetitle] = ACTIONS(12421), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteyear] = ACTIONS(12421), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitedate] = ACTIONS(12421), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteurl] = ACTIONS(12421), + [anon_sym_BSLASHfullcite] = ACTIONS(12421), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12421), + [anon_sym_BSLASHcitealt] = ACTIONS(12421), + [anon_sym_BSLASHcitealp] = ACTIONS(12421), + [anon_sym_BSLASHcitetext] = ACTIONS(12421), + [anon_sym_BSLASHparencite] = ACTIONS(12421), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHParencite] = ACTIONS(12421), + [anon_sym_BSLASHfootcite] = ACTIONS(12421), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12421), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12421), + [anon_sym_BSLASHtextcite] = ACTIONS(12421), + [anon_sym_BSLASHTextcite] = ACTIONS(12421), + [anon_sym_BSLASHsmartcite] = ACTIONS(12421), + [anon_sym_BSLASHSmartcite] = ACTIONS(12421), + [anon_sym_BSLASHsupercite] = ACTIONS(12421), + [anon_sym_BSLASHautocite] = ACTIONS(12421), + [anon_sym_BSLASHAutocite] = ACTIONS(12421), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHvolcite] = ACTIONS(12421), + [anon_sym_BSLASHVolcite] = ACTIONS(12421), + [anon_sym_BSLASHpvolcite] = ACTIONS(12421), + [anon_sym_BSLASHPvolcite] = ACTIONS(12421), + [anon_sym_BSLASHfvolcite] = ACTIONS(12421), + [anon_sym_BSLASHftvolcite] = ACTIONS(12421), + [anon_sym_BSLASHsvolcite] = ACTIONS(12421), + [anon_sym_BSLASHSvolcite] = ACTIONS(12421), + [anon_sym_BSLASHtvolcite] = ACTIONS(12421), + [anon_sym_BSLASHTvolcite] = ACTIONS(12421), + [anon_sym_BSLASHavolcite] = ACTIONS(12421), + [anon_sym_BSLASHAvolcite] = ACTIONS(12421), + [anon_sym_BSLASHnotecite] = ACTIONS(12421), + [anon_sym_BSLASHpnotecite] = ACTIONS(12421), + [anon_sym_BSLASHPnotecite] = ACTIONS(12421), + [anon_sym_BSLASHfnotecite] = ACTIONS(12421), + [anon_sym_BSLASHusepackage] = ACTIONS(12421), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12421), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12421), + [anon_sym_BSLASHinclude] = ACTIONS(12421), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12421), + [anon_sym_BSLASHinput] = ACTIONS(12421), + [anon_sym_BSLASHsubfile] = ACTIONS(12421), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12421), + [anon_sym_BSLASHbibliography] = ACTIONS(12421), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12421), + [anon_sym_BSLASHincludesvg] = ACTIONS(12421), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12421), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12421), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12421), + [anon_sym_BSLASHimport] = ACTIONS(12421), + [anon_sym_BSLASHsubimport] = ACTIONS(12421), + [anon_sym_BSLASHinputfrom] = ACTIONS(12421), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12421), + [anon_sym_BSLASHincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHlabel] = ACTIONS(12421), + [anon_sym_BSLASHref] = ACTIONS(12421), + [anon_sym_BSLASHvref] = ACTIONS(12421), + [anon_sym_BSLASHVref] = ACTIONS(12421), + [anon_sym_BSLASHautoref] = ACTIONS(12421), + [anon_sym_BSLASHpageref] = ACTIONS(12421), + [anon_sym_BSLASHcref] = ACTIONS(12421), + [anon_sym_BSLASHCref] = ACTIONS(12421), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnameCref] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHlabelcref] = ACTIONS(12421), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12421), + [anon_sym_BSLASHeqref] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange] = ACTIONS(12421), + [anon_sym_BSLASHCrefrange] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewlabel] = ACTIONS(12421), + [anon_sym_BSLASHnewcommand] = ACTIONS(12421), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12421), + [anon_sym_BSLASHgls] = ACTIONS(12421), + [anon_sym_BSLASHGls] = ACTIONS(12421), + [anon_sym_BSLASHGLS] = ACTIONS(12421), + [anon_sym_BSLASHglspl] = ACTIONS(12421), + [anon_sym_BSLASHGlspl] = ACTIONS(12421), + [anon_sym_BSLASHGLSpl] = ACTIONS(12421), + [anon_sym_BSLASHglsdisp] = ACTIONS(12421), + [anon_sym_BSLASHglslink] = ACTIONS(12421), + [anon_sym_BSLASHglstext] = ACTIONS(12421), + [anon_sym_BSLASHGlstext] = ACTIONS(12421), + [anon_sym_BSLASHGLStext] = ACTIONS(12421), + [anon_sym_BSLASHglsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12421), + [anon_sym_BSLASHglsplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSplural] = ACTIONS(12421), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHglsname] = ACTIONS(12421), + [anon_sym_BSLASHGlsname] = ACTIONS(12421), + [anon_sym_BSLASHGLSname] = ACTIONS(12421), + [anon_sym_BSLASHglssymbol] = ACTIONS(12421), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12421), + [anon_sym_BSLASHglsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12421), + [anon_sym_BSLASHglsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12421), + [anon_sym_BSLASHglsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12421), + [anon_sym_BSLASHglsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12421), + [anon_sym_BSLASHglsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12421), + [anon_sym_BSLASHnewacronym] = ACTIONS(12421), + [anon_sym_BSLASHacrshort] = ACTIONS(12421), + [anon_sym_BSLASHAcrshort] = ACTIONS(12421), + [anon_sym_BSLASHACRshort] = ACTIONS(12421), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12421), + [anon_sym_BSLASHacrlong] = ACTIONS(12421), + [anon_sym_BSLASHAcrlong] = ACTIONS(12421), + [anon_sym_BSLASHACRlong] = ACTIONS(12421), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12421), + [anon_sym_BSLASHacrfull] = ACTIONS(12421), + [anon_sym_BSLASHAcrfull] = ACTIONS(12421), + [anon_sym_BSLASHACRfull] = ACTIONS(12421), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12421), + [anon_sym_BSLASHacs] = ACTIONS(12421), + [anon_sym_BSLASHAcs] = ACTIONS(12421), + [anon_sym_BSLASHacsp] = ACTIONS(12421), + [anon_sym_BSLASHAcsp] = ACTIONS(12421), + [anon_sym_BSLASHacl] = ACTIONS(12421), + [anon_sym_BSLASHAcl] = ACTIONS(12421), + [anon_sym_BSLASHaclp] = ACTIONS(12421), + [anon_sym_BSLASHAclp] = ACTIONS(12421), + [anon_sym_BSLASHacf] = ACTIONS(12421), + [anon_sym_BSLASHAcf] = ACTIONS(12421), + [anon_sym_BSLASHacfp] = ACTIONS(12421), + [anon_sym_BSLASHAcfp] = ACTIONS(12421), + [anon_sym_BSLASHac] = ACTIONS(12421), + [anon_sym_BSLASHAc] = ACTIONS(12421), + [anon_sym_BSLASHacp] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12421), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12421), + [anon_sym_BSLASHcolor] = ACTIONS(12421), + [anon_sym_BSLASHcolorbox] = ACTIONS(12421), + [anon_sym_BSLASHtextcolor] = ACTIONS(12421), + [anon_sym_BSLASHpagecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12421), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12421), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12421), + }, + [1797] = { + [sym_generic_command_name] = ACTIONS(12425), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12425), + [anon_sym_LBRACK] = ACTIONS(12423), + [anon_sym_RBRACK] = ACTIONS(12423), + [anon_sym_LBRACE] = ACTIONS(12423), + [anon_sym_RBRACE] = ACTIONS(12423), + [anon_sym_LPAREN] = ACTIONS(12423), + [anon_sym_COMMA] = ACTIONS(12423), + [anon_sym_EQ] = ACTIONS(12423), + [sym_word] = ACTIONS(12423), + [sym_param] = ACTIONS(12423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12423), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12423), + [anon_sym_DOLLAR] = ACTIONS(12425), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12423), + [anon_sym_BSLASHbegin] = ACTIONS(12425), + [anon_sym_BSLASHcaption] = ACTIONS(12425), + [anon_sym_BSLASHcite] = ACTIONS(12425), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCite] = ACTIONS(12425), + [anon_sym_BSLASHnocite] = ACTIONS(12425), + [anon_sym_BSLASHcitet] = ACTIONS(12425), + [anon_sym_BSLASHcitep] = ACTIONS(12425), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteauthor] = ACTIONS(12425), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12425), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitetitle] = ACTIONS(12425), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteyear] = ACTIONS(12425), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitedate] = ACTIONS(12425), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteurl] = ACTIONS(12425), + [anon_sym_BSLASHfullcite] = ACTIONS(12425), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12425), + [anon_sym_BSLASHcitealt] = ACTIONS(12425), + [anon_sym_BSLASHcitealp] = ACTIONS(12425), + [anon_sym_BSLASHcitetext] = ACTIONS(12425), + [anon_sym_BSLASHparencite] = ACTIONS(12425), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHParencite] = ACTIONS(12425), + [anon_sym_BSLASHfootcite] = ACTIONS(12425), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12425), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12425), + [anon_sym_BSLASHtextcite] = ACTIONS(12425), + [anon_sym_BSLASHTextcite] = ACTIONS(12425), + [anon_sym_BSLASHsmartcite] = ACTIONS(12425), + [anon_sym_BSLASHSmartcite] = ACTIONS(12425), + [anon_sym_BSLASHsupercite] = ACTIONS(12425), + [anon_sym_BSLASHautocite] = ACTIONS(12425), + [anon_sym_BSLASHAutocite] = ACTIONS(12425), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHvolcite] = ACTIONS(12425), + [anon_sym_BSLASHVolcite] = ACTIONS(12425), + [anon_sym_BSLASHpvolcite] = ACTIONS(12425), + [anon_sym_BSLASHPvolcite] = ACTIONS(12425), + [anon_sym_BSLASHfvolcite] = ACTIONS(12425), + [anon_sym_BSLASHftvolcite] = ACTIONS(12425), + [anon_sym_BSLASHsvolcite] = ACTIONS(12425), + [anon_sym_BSLASHSvolcite] = ACTIONS(12425), + [anon_sym_BSLASHtvolcite] = ACTIONS(12425), + [anon_sym_BSLASHTvolcite] = ACTIONS(12425), + [anon_sym_BSLASHavolcite] = ACTIONS(12425), + [anon_sym_BSLASHAvolcite] = ACTIONS(12425), + [anon_sym_BSLASHnotecite] = ACTIONS(12425), + [anon_sym_BSLASHpnotecite] = ACTIONS(12425), + [anon_sym_BSLASHPnotecite] = ACTIONS(12425), + [anon_sym_BSLASHfnotecite] = ACTIONS(12425), + [anon_sym_BSLASHusepackage] = ACTIONS(12425), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12425), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12425), + [anon_sym_BSLASHinclude] = ACTIONS(12425), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12425), + [anon_sym_BSLASHinput] = ACTIONS(12425), + [anon_sym_BSLASHsubfile] = ACTIONS(12425), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12425), + [anon_sym_BSLASHbibliography] = ACTIONS(12425), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12425), + [anon_sym_BSLASHincludesvg] = ACTIONS(12425), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12425), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12425), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12425), + [anon_sym_BSLASHimport] = ACTIONS(12425), + [anon_sym_BSLASHsubimport] = ACTIONS(12425), + [anon_sym_BSLASHinputfrom] = ACTIONS(12425), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12425), + [anon_sym_BSLASHincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHlabel] = ACTIONS(12425), + [anon_sym_BSLASHref] = ACTIONS(12425), + [anon_sym_BSLASHvref] = ACTIONS(12425), + [anon_sym_BSLASHVref] = ACTIONS(12425), + [anon_sym_BSLASHautoref] = ACTIONS(12425), + [anon_sym_BSLASHpageref] = ACTIONS(12425), + [anon_sym_BSLASHcref] = ACTIONS(12425), + [anon_sym_BSLASHCref] = ACTIONS(12425), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnameCref] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHlabelcref] = ACTIONS(12425), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12425), + [anon_sym_BSLASHeqref] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange] = ACTIONS(12425), + [anon_sym_BSLASHCrefrange] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewlabel] = ACTIONS(12425), + [anon_sym_BSLASHnewcommand] = ACTIONS(12425), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12425), + [anon_sym_BSLASHgls] = ACTIONS(12425), + [anon_sym_BSLASHGls] = ACTIONS(12425), + [anon_sym_BSLASHGLS] = ACTIONS(12425), + [anon_sym_BSLASHglspl] = ACTIONS(12425), + [anon_sym_BSLASHGlspl] = ACTIONS(12425), + [anon_sym_BSLASHGLSpl] = ACTIONS(12425), + [anon_sym_BSLASHglsdisp] = ACTIONS(12425), + [anon_sym_BSLASHglslink] = ACTIONS(12425), + [anon_sym_BSLASHglstext] = ACTIONS(12425), + [anon_sym_BSLASHGlstext] = ACTIONS(12425), + [anon_sym_BSLASHGLStext] = ACTIONS(12425), + [anon_sym_BSLASHglsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12425), + [anon_sym_BSLASHglsplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSplural] = ACTIONS(12425), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHglsname] = ACTIONS(12425), + [anon_sym_BSLASHGlsname] = ACTIONS(12425), + [anon_sym_BSLASHGLSname] = ACTIONS(12425), + [anon_sym_BSLASHglssymbol] = ACTIONS(12425), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12425), + [anon_sym_BSLASHglsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12425), + [anon_sym_BSLASHglsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12425), + [anon_sym_BSLASHglsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12425), + [anon_sym_BSLASHglsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12425), + [anon_sym_BSLASHglsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12425), + [anon_sym_BSLASHnewacronym] = ACTIONS(12425), + [anon_sym_BSLASHacrshort] = ACTIONS(12425), + [anon_sym_BSLASHAcrshort] = ACTIONS(12425), + [anon_sym_BSLASHACRshort] = ACTIONS(12425), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12425), + [anon_sym_BSLASHacrlong] = ACTIONS(12425), + [anon_sym_BSLASHAcrlong] = ACTIONS(12425), + [anon_sym_BSLASHACRlong] = ACTIONS(12425), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12425), + [anon_sym_BSLASHacrfull] = ACTIONS(12425), + [anon_sym_BSLASHAcrfull] = ACTIONS(12425), + [anon_sym_BSLASHACRfull] = ACTIONS(12425), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12425), + [anon_sym_BSLASHacs] = ACTIONS(12425), + [anon_sym_BSLASHAcs] = ACTIONS(12425), + [anon_sym_BSLASHacsp] = ACTIONS(12425), + [anon_sym_BSLASHAcsp] = ACTIONS(12425), + [anon_sym_BSLASHacl] = ACTIONS(12425), + [anon_sym_BSLASHAcl] = ACTIONS(12425), + [anon_sym_BSLASHaclp] = ACTIONS(12425), + [anon_sym_BSLASHAclp] = ACTIONS(12425), + [anon_sym_BSLASHacf] = ACTIONS(12425), + [anon_sym_BSLASHAcf] = ACTIONS(12425), + [anon_sym_BSLASHacfp] = ACTIONS(12425), + [anon_sym_BSLASHAcfp] = ACTIONS(12425), + [anon_sym_BSLASHac] = ACTIONS(12425), + [anon_sym_BSLASHAc] = ACTIONS(12425), + [anon_sym_BSLASHacp] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12425), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12425), + [anon_sym_BSLASHcolor] = ACTIONS(12425), + [anon_sym_BSLASHcolorbox] = ACTIONS(12425), + [anon_sym_BSLASHtextcolor] = ACTIONS(12425), + [anon_sym_BSLASHpagecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12425), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12425), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12425), + }, + [1798] = { + [sym_generic_command_name] = ACTIONS(12429), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12429), + [anon_sym_LBRACK] = ACTIONS(12427), + [anon_sym_RBRACK] = ACTIONS(12427), + [anon_sym_LBRACE] = ACTIONS(12427), + [anon_sym_RBRACE] = ACTIONS(12427), + [anon_sym_LPAREN] = ACTIONS(12427), + [anon_sym_COMMA] = ACTIONS(12427), + [anon_sym_EQ] = ACTIONS(12427), + [sym_word] = ACTIONS(12427), + [sym_param] = ACTIONS(12427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12427), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12427), + [anon_sym_DOLLAR] = ACTIONS(12429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12427), + [anon_sym_BSLASHbegin] = ACTIONS(12429), + [anon_sym_BSLASHcaption] = ACTIONS(12429), + [anon_sym_BSLASHcite] = ACTIONS(12429), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCite] = ACTIONS(12429), + [anon_sym_BSLASHnocite] = ACTIONS(12429), + [anon_sym_BSLASHcitet] = ACTIONS(12429), + [anon_sym_BSLASHcitep] = ACTIONS(12429), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteauthor] = ACTIONS(12429), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12429), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitetitle] = ACTIONS(12429), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteyear] = ACTIONS(12429), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitedate] = ACTIONS(12429), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteurl] = ACTIONS(12429), + [anon_sym_BSLASHfullcite] = ACTIONS(12429), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12429), + [anon_sym_BSLASHcitealt] = ACTIONS(12429), + [anon_sym_BSLASHcitealp] = ACTIONS(12429), + [anon_sym_BSLASHcitetext] = ACTIONS(12429), + [anon_sym_BSLASHparencite] = ACTIONS(12429), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHParencite] = ACTIONS(12429), + [anon_sym_BSLASHfootcite] = ACTIONS(12429), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12429), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12429), + [anon_sym_BSLASHtextcite] = ACTIONS(12429), + [anon_sym_BSLASHTextcite] = ACTIONS(12429), + [anon_sym_BSLASHsmartcite] = ACTIONS(12429), + [anon_sym_BSLASHSmartcite] = ACTIONS(12429), + [anon_sym_BSLASHsupercite] = ACTIONS(12429), + [anon_sym_BSLASHautocite] = ACTIONS(12429), + [anon_sym_BSLASHAutocite] = ACTIONS(12429), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHvolcite] = ACTIONS(12429), + [anon_sym_BSLASHVolcite] = ACTIONS(12429), + [anon_sym_BSLASHpvolcite] = ACTIONS(12429), + [anon_sym_BSLASHPvolcite] = ACTIONS(12429), + [anon_sym_BSLASHfvolcite] = ACTIONS(12429), + [anon_sym_BSLASHftvolcite] = ACTIONS(12429), + [anon_sym_BSLASHsvolcite] = ACTIONS(12429), + [anon_sym_BSLASHSvolcite] = ACTIONS(12429), + [anon_sym_BSLASHtvolcite] = ACTIONS(12429), + [anon_sym_BSLASHTvolcite] = ACTIONS(12429), + [anon_sym_BSLASHavolcite] = ACTIONS(12429), + [anon_sym_BSLASHAvolcite] = ACTIONS(12429), + [anon_sym_BSLASHnotecite] = ACTIONS(12429), + [anon_sym_BSLASHpnotecite] = ACTIONS(12429), + [anon_sym_BSLASHPnotecite] = ACTIONS(12429), + [anon_sym_BSLASHfnotecite] = ACTIONS(12429), + [anon_sym_BSLASHusepackage] = ACTIONS(12429), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12429), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12429), + [anon_sym_BSLASHinclude] = ACTIONS(12429), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12429), + [anon_sym_BSLASHinput] = ACTIONS(12429), + [anon_sym_BSLASHsubfile] = ACTIONS(12429), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12429), + [anon_sym_BSLASHbibliography] = ACTIONS(12429), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12429), + [anon_sym_BSLASHincludesvg] = ACTIONS(12429), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12429), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12429), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12429), + [anon_sym_BSLASHimport] = ACTIONS(12429), + [anon_sym_BSLASHsubimport] = ACTIONS(12429), + [anon_sym_BSLASHinputfrom] = ACTIONS(12429), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12429), + [anon_sym_BSLASHincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHlabel] = ACTIONS(12429), + [anon_sym_BSLASHref] = ACTIONS(12429), + [anon_sym_BSLASHvref] = ACTIONS(12429), + [anon_sym_BSLASHVref] = ACTIONS(12429), + [anon_sym_BSLASHautoref] = ACTIONS(12429), + [anon_sym_BSLASHpageref] = ACTIONS(12429), + [anon_sym_BSLASHcref] = ACTIONS(12429), + [anon_sym_BSLASHCref] = ACTIONS(12429), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnameCref] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHlabelcref] = ACTIONS(12429), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12429), + [anon_sym_BSLASHeqref] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange] = ACTIONS(12429), + [anon_sym_BSLASHCrefrange] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewlabel] = ACTIONS(12429), + [anon_sym_BSLASHnewcommand] = ACTIONS(12429), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12429), + [anon_sym_BSLASHgls] = ACTIONS(12429), + [anon_sym_BSLASHGls] = ACTIONS(12429), + [anon_sym_BSLASHGLS] = ACTIONS(12429), + [anon_sym_BSLASHglspl] = ACTIONS(12429), + [anon_sym_BSLASHGlspl] = ACTIONS(12429), + [anon_sym_BSLASHGLSpl] = ACTIONS(12429), + [anon_sym_BSLASHglsdisp] = ACTIONS(12429), + [anon_sym_BSLASHglslink] = ACTIONS(12429), + [anon_sym_BSLASHglstext] = ACTIONS(12429), + [anon_sym_BSLASHGlstext] = ACTIONS(12429), + [anon_sym_BSLASHGLStext] = ACTIONS(12429), + [anon_sym_BSLASHglsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12429), + [anon_sym_BSLASHglsplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSplural] = ACTIONS(12429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHglsname] = ACTIONS(12429), + [anon_sym_BSLASHGlsname] = ACTIONS(12429), + [anon_sym_BSLASHGLSname] = ACTIONS(12429), + [anon_sym_BSLASHglssymbol] = ACTIONS(12429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12429), + [anon_sym_BSLASHglsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12429), + [anon_sym_BSLASHglsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12429), + [anon_sym_BSLASHglsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12429), + [anon_sym_BSLASHglsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12429), + [anon_sym_BSLASHglsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12429), + [anon_sym_BSLASHnewacronym] = ACTIONS(12429), + [anon_sym_BSLASHacrshort] = ACTIONS(12429), + [anon_sym_BSLASHAcrshort] = ACTIONS(12429), + [anon_sym_BSLASHACRshort] = ACTIONS(12429), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12429), + [anon_sym_BSLASHacrlong] = ACTIONS(12429), + [anon_sym_BSLASHAcrlong] = ACTIONS(12429), + [anon_sym_BSLASHACRlong] = ACTIONS(12429), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12429), + [anon_sym_BSLASHacrfull] = ACTIONS(12429), + [anon_sym_BSLASHAcrfull] = ACTIONS(12429), + [anon_sym_BSLASHACRfull] = ACTIONS(12429), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12429), + [anon_sym_BSLASHacs] = ACTIONS(12429), + [anon_sym_BSLASHAcs] = ACTIONS(12429), + [anon_sym_BSLASHacsp] = ACTIONS(12429), + [anon_sym_BSLASHAcsp] = ACTIONS(12429), + [anon_sym_BSLASHacl] = ACTIONS(12429), + [anon_sym_BSLASHAcl] = ACTIONS(12429), + [anon_sym_BSLASHaclp] = ACTIONS(12429), + [anon_sym_BSLASHAclp] = ACTIONS(12429), + [anon_sym_BSLASHacf] = ACTIONS(12429), + [anon_sym_BSLASHAcf] = ACTIONS(12429), + [anon_sym_BSLASHacfp] = ACTIONS(12429), + [anon_sym_BSLASHAcfp] = ACTIONS(12429), + [anon_sym_BSLASHac] = ACTIONS(12429), + [anon_sym_BSLASHAc] = ACTIONS(12429), + [anon_sym_BSLASHacp] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12429), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12429), + [anon_sym_BSLASHcolor] = ACTIONS(12429), + [anon_sym_BSLASHcolorbox] = ACTIONS(12429), + [anon_sym_BSLASHtextcolor] = ACTIONS(12429), + [anon_sym_BSLASHpagecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12429), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12429), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12429), + }, + [1799] = { + [sym_generic_command_name] = ACTIONS(12433), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12433), + [anon_sym_LBRACK] = ACTIONS(12431), + [anon_sym_RBRACK] = ACTIONS(12431), + [anon_sym_LBRACE] = ACTIONS(12431), + [anon_sym_RBRACE] = ACTIONS(12431), + [anon_sym_LPAREN] = ACTIONS(12431), + [anon_sym_COMMA] = ACTIONS(12431), + [anon_sym_EQ] = ACTIONS(12431), + [sym_word] = ACTIONS(12431), + [sym_param] = ACTIONS(12431), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12431), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12431), + [anon_sym_DOLLAR] = ACTIONS(12433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12431), + [anon_sym_BSLASHbegin] = ACTIONS(12433), + [anon_sym_BSLASHcaption] = ACTIONS(12433), + [anon_sym_BSLASHcite] = ACTIONS(12433), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCite] = ACTIONS(12433), + [anon_sym_BSLASHnocite] = ACTIONS(12433), + [anon_sym_BSLASHcitet] = ACTIONS(12433), + [anon_sym_BSLASHcitep] = ACTIONS(12433), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteauthor] = ACTIONS(12433), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12433), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitetitle] = ACTIONS(12433), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteyear] = ACTIONS(12433), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitedate] = ACTIONS(12433), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteurl] = ACTIONS(12433), + [anon_sym_BSLASHfullcite] = ACTIONS(12433), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12433), + [anon_sym_BSLASHcitealt] = ACTIONS(12433), + [anon_sym_BSLASHcitealp] = ACTIONS(12433), + [anon_sym_BSLASHcitetext] = ACTIONS(12433), + [anon_sym_BSLASHparencite] = ACTIONS(12433), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHParencite] = ACTIONS(12433), + [anon_sym_BSLASHfootcite] = ACTIONS(12433), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12433), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12433), + [anon_sym_BSLASHtextcite] = ACTIONS(12433), + [anon_sym_BSLASHTextcite] = ACTIONS(12433), + [anon_sym_BSLASHsmartcite] = ACTIONS(12433), + [anon_sym_BSLASHSmartcite] = ACTIONS(12433), + [anon_sym_BSLASHsupercite] = ACTIONS(12433), + [anon_sym_BSLASHautocite] = ACTIONS(12433), + [anon_sym_BSLASHAutocite] = ACTIONS(12433), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHvolcite] = ACTIONS(12433), + [anon_sym_BSLASHVolcite] = ACTIONS(12433), + [anon_sym_BSLASHpvolcite] = ACTIONS(12433), + [anon_sym_BSLASHPvolcite] = ACTIONS(12433), + [anon_sym_BSLASHfvolcite] = ACTIONS(12433), + [anon_sym_BSLASHftvolcite] = ACTIONS(12433), + [anon_sym_BSLASHsvolcite] = ACTIONS(12433), + [anon_sym_BSLASHSvolcite] = ACTIONS(12433), + [anon_sym_BSLASHtvolcite] = ACTIONS(12433), + [anon_sym_BSLASHTvolcite] = ACTIONS(12433), + [anon_sym_BSLASHavolcite] = ACTIONS(12433), + [anon_sym_BSLASHAvolcite] = ACTIONS(12433), + [anon_sym_BSLASHnotecite] = ACTIONS(12433), + [anon_sym_BSLASHpnotecite] = ACTIONS(12433), + [anon_sym_BSLASHPnotecite] = ACTIONS(12433), + [anon_sym_BSLASHfnotecite] = ACTIONS(12433), + [anon_sym_BSLASHusepackage] = ACTIONS(12433), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12433), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12433), + [anon_sym_BSLASHinclude] = ACTIONS(12433), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12433), + [anon_sym_BSLASHinput] = ACTIONS(12433), + [anon_sym_BSLASHsubfile] = ACTIONS(12433), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12433), + [anon_sym_BSLASHbibliography] = ACTIONS(12433), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12433), + [anon_sym_BSLASHincludesvg] = ACTIONS(12433), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12433), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12433), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12433), + [anon_sym_BSLASHimport] = ACTIONS(12433), + [anon_sym_BSLASHsubimport] = ACTIONS(12433), + [anon_sym_BSLASHinputfrom] = ACTIONS(12433), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12433), + [anon_sym_BSLASHincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHlabel] = ACTIONS(12433), + [anon_sym_BSLASHref] = ACTIONS(12433), + [anon_sym_BSLASHvref] = ACTIONS(12433), + [anon_sym_BSLASHVref] = ACTIONS(12433), + [anon_sym_BSLASHautoref] = ACTIONS(12433), + [anon_sym_BSLASHpageref] = ACTIONS(12433), + [anon_sym_BSLASHcref] = ACTIONS(12433), + [anon_sym_BSLASHCref] = ACTIONS(12433), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnameCref] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHlabelcref] = ACTIONS(12433), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12433), + [anon_sym_BSLASHeqref] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange] = ACTIONS(12433), + [anon_sym_BSLASHCrefrange] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewlabel] = ACTIONS(12433), + [anon_sym_BSLASHnewcommand] = ACTIONS(12433), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12433), + [anon_sym_BSLASHgls] = ACTIONS(12433), + [anon_sym_BSLASHGls] = ACTIONS(12433), + [anon_sym_BSLASHGLS] = ACTIONS(12433), + [anon_sym_BSLASHglspl] = ACTIONS(12433), + [anon_sym_BSLASHGlspl] = ACTIONS(12433), + [anon_sym_BSLASHGLSpl] = ACTIONS(12433), + [anon_sym_BSLASHglsdisp] = ACTIONS(12433), + [anon_sym_BSLASHglslink] = ACTIONS(12433), + [anon_sym_BSLASHglstext] = ACTIONS(12433), + [anon_sym_BSLASHGlstext] = ACTIONS(12433), + [anon_sym_BSLASHGLStext] = ACTIONS(12433), + [anon_sym_BSLASHglsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12433), + [anon_sym_BSLASHglsplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSplural] = ACTIONS(12433), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHglsname] = ACTIONS(12433), + [anon_sym_BSLASHGlsname] = ACTIONS(12433), + [anon_sym_BSLASHGLSname] = ACTIONS(12433), + [anon_sym_BSLASHglssymbol] = ACTIONS(12433), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12433), + [anon_sym_BSLASHglsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12433), + [anon_sym_BSLASHglsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12433), + [anon_sym_BSLASHglsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12433), + [anon_sym_BSLASHglsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12433), + [anon_sym_BSLASHglsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12433), + [anon_sym_BSLASHnewacronym] = ACTIONS(12433), + [anon_sym_BSLASHacrshort] = ACTIONS(12433), + [anon_sym_BSLASHAcrshort] = ACTIONS(12433), + [anon_sym_BSLASHACRshort] = ACTIONS(12433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12433), + [anon_sym_BSLASHacrlong] = ACTIONS(12433), + [anon_sym_BSLASHAcrlong] = ACTIONS(12433), + [anon_sym_BSLASHACRlong] = ACTIONS(12433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12433), + [anon_sym_BSLASHacrfull] = ACTIONS(12433), + [anon_sym_BSLASHAcrfull] = ACTIONS(12433), + [anon_sym_BSLASHACRfull] = ACTIONS(12433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12433), + [anon_sym_BSLASHacs] = ACTIONS(12433), + [anon_sym_BSLASHAcs] = ACTIONS(12433), + [anon_sym_BSLASHacsp] = ACTIONS(12433), + [anon_sym_BSLASHAcsp] = ACTIONS(12433), + [anon_sym_BSLASHacl] = ACTIONS(12433), + [anon_sym_BSLASHAcl] = ACTIONS(12433), + [anon_sym_BSLASHaclp] = ACTIONS(12433), + [anon_sym_BSLASHAclp] = ACTIONS(12433), + [anon_sym_BSLASHacf] = ACTIONS(12433), + [anon_sym_BSLASHAcf] = ACTIONS(12433), + [anon_sym_BSLASHacfp] = ACTIONS(12433), + [anon_sym_BSLASHAcfp] = ACTIONS(12433), + [anon_sym_BSLASHac] = ACTIONS(12433), + [anon_sym_BSLASHAc] = ACTIONS(12433), + [anon_sym_BSLASHacp] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12433), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12433), + [anon_sym_BSLASHcolor] = ACTIONS(12433), + [anon_sym_BSLASHcolorbox] = ACTIONS(12433), + [anon_sym_BSLASHtextcolor] = ACTIONS(12433), + [anon_sym_BSLASHpagecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12433), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12433), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12433), + }, + [1800] = { + [sym_generic_command_name] = ACTIONS(12227), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12227), + [anon_sym_LBRACK] = ACTIONS(12225), + [anon_sym_RBRACK] = ACTIONS(12225), + [anon_sym_LBRACE] = ACTIONS(12225), + [anon_sym_RBRACE] = ACTIONS(12225), + [anon_sym_LPAREN] = ACTIONS(12225), + [anon_sym_COMMA] = ACTIONS(12225), + [anon_sym_EQ] = ACTIONS(12225), + [sym_word] = ACTIONS(12225), + [sym_param] = ACTIONS(12225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12225), + [anon_sym_DOLLAR] = ACTIONS(12227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12225), + [anon_sym_BSLASHbegin] = ACTIONS(12227), + [anon_sym_BSLASHcaption] = ACTIONS(12227), + [anon_sym_BSLASHcite] = ACTIONS(12227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCite] = ACTIONS(12227), + [anon_sym_BSLASHnocite] = ACTIONS(12227), + [anon_sym_BSLASHcitet] = ACTIONS(12227), + [anon_sym_BSLASHcitep] = ACTIONS(12227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteauthor] = ACTIONS(12227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitetitle] = ACTIONS(12227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteyear] = ACTIONS(12227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitedate] = ACTIONS(12227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteurl] = ACTIONS(12227), + [anon_sym_BSLASHfullcite] = ACTIONS(12227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12227), + [anon_sym_BSLASHcitealt] = ACTIONS(12227), + [anon_sym_BSLASHcitealp] = ACTIONS(12227), + [anon_sym_BSLASHcitetext] = ACTIONS(12227), + [anon_sym_BSLASHparencite] = ACTIONS(12227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHParencite] = ACTIONS(12227), + [anon_sym_BSLASHfootcite] = ACTIONS(12227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12227), + [anon_sym_BSLASHtextcite] = ACTIONS(12227), + [anon_sym_BSLASHTextcite] = ACTIONS(12227), + [anon_sym_BSLASHsmartcite] = ACTIONS(12227), + [anon_sym_BSLASHSmartcite] = ACTIONS(12227), + [anon_sym_BSLASHsupercite] = ACTIONS(12227), + [anon_sym_BSLASHautocite] = ACTIONS(12227), + [anon_sym_BSLASHAutocite] = ACTIONS(12227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHvolcite] = ACTIONS(12227), + [anon_sym_BSLASHVolcite] = ACTIONS(12227), + [anon_sym_BSLASHpvolcite] = ACTIONS(12227), + [anon_sym_BSLASHPvolcite] = ACTIONS(12227), + [anon_sym_BSLASHfvolcite] = ACTIONS(12227), + [anon_sym_BSLASHftvolcite] = ACTIONS(12227), + [anon_sym_BSLASHsvolcite] = ACTIONS(12227), + [anon_sym_BSLASHSvolcite] = ACTIONS(12227), + [anon_sym_BSLASHtvolcite] = ACTIONS(12227), + [anon_sym_BSLASHTvolcite] = ACTIONS(12227), + [anon_sym_BSLASHavolcite] = ACTIONS(12227), + [anon_sym_BSLASHAvolcite] = ACTIONS(12227), + [anon_sym_BSLASHnotecite] = ACTIONS(12227), + [anon_sym_BSLASHpnotecite] = ACTIONS(12227), + [anon_sym_BSLASHPnotecite] = ACTIONS(12227), + [anon_sym_BSLASHfnotecite] = ACTIONS(12227), + [anon_sym_BSLASHusepackage] = ACTIONS(12227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12227), + [anon_sym_BSLASHinclude] = ACTIONS(12227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12227), + [anon_sym_BSLASHinput] = ACTIONS(12227), + [anon_sym_BSLASHsubfile] = ACTIONS(12227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12227), + [anon_sym_BSLASHbibliography] = ACTIONS(12227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12227), + [anon_sym_BSLASHincludesvg] = ACTIONS(12227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12227), + [anon_sym_BSLASHimport] = ACTIONS(12227), + [anon_sym_BSLASHsubimport] = ACTIONS(12227), + [anon_sym_BSLASHinputfrom] = ACTIONS(12227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12227), + [anon_sym_BSLASHincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHlabel] = ACTIONS(12227), + [anon_sym_BSLASHref] = ACTIONS(12227), + [anon_sym_BSLASHvref] = ACTIONS(12227), + [anon_sym_BSLASHVref] = ACTIONS(12227), + [anon_sym_BSLASHautoref] = ACTIONS(12227), + [anon_sym_BSLASHpageref] = ACTIONS(12227), + [anon_sym_BSLASHcref] = ACTIONS(12227), + [anon_sym_BSLASHCref] = ACTIONS(12227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnameCref] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHlabelcref] = ACTIONS(12227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12227), + [anon_sym_BSLASHeqref] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange] = ACTIONS(12227), + [anon_sym_BSLASHCrefrange] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewlabel] = ACTIONS(12227), + [anon_sym_BSLASHnewcommand] = ACTIONS(12227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12227), + [anon_sym_BSLASHgls] = ACTIONS(12227), + [anon_sym_BSLASHGls] = ACTIONS(12227), + [anon_sym_BSLASHGLS] = ACTIONS(12227), + [anon_sym_BSLASHglspl] = ACTIONS(12227), + [anon_sym_BSLASHGlspl] = ACTIONS(12227), + [anon_sym_BSLASHGLSpl] = ACTIONS(12227), + [anon_sym_BSLASHglsdisp] = ACTIONS(12227), + [anon_sym_BSLASHglslink] = ACTIONS(12227), + [anon_sym_BSLASHglstext] = ACTIONS(12227), + [anon_sym_BSLASHGlstext] = ACTIONS(12227), + [anon_sym_BSLASHGLStext] = ACTIONS(12227), + [anon_sym_BSLASHglsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12227), + [anon_sym_BSLASHglsplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSplural] = ACTIONS(12227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHglsname] = ACTIONS(12227), + [anon_sym_BSLASHGlsname] = ACTIONS(12227), + [anon_sym_BSLASHGLSname] = ACTIONS(12227), + [anon_sym_BSLASHglssymbol] = ACTIONS(12227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12227), + [anon_sym_BSLASHglsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12227), + [anon_sym_BSLASHglsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12227), + [anon_sym_BSLASHglsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12227), + [anon_sym_BSLASHglsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12227), + [anon_sym_BSLASHglsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12227), + [anon_sym_BSLASHnewacronym] = ACTIONS(12227), + [anon_sym_BSLASHacrshort] = ACTIONS(12227), + [anon_sym_BSLASHAcrshort] = ACTIONS(12227), + [anon_sym_BSLASHACRshort] = ACTIONS(12227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12227), + [anon_sym_BSLASHacrlong] = ACTIONS(12227), + [anon_sym_BSLASHAcrlong] = ACTIONS(12227), + [anon_sym_BSLASHACRlong] = ACTIONS(12227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12227), + [anon_sym_BSLASHacrfull] = ACTIONS(12227), + [anon_sym_BSLASHAcrfull] = ACTIONS(12227), + [anon_sym_BSLASHACRfull] = ACTIONS(12227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12227), + [anon_sym_BSLASHacs] = ACTIONS(12227), + [anon_sym_BSLASHAcs] = ACTIONS(12227), + [anon_sym_BSLASHacsp] = ACTIONS(12227), + [anon_sym_BSLASHAcsp] = ACTIONS(12227), + [anon_sym_BSLASHacl] = ACTIONS(12227), + [anon_sym_BSLASHAcl] = ACTIONS(12227), + [anon_sym_BSLASHaclp] = ACTIONS(12227), + [anon_sym_BSLASHAclp] = ACTIONS(12227), + [anon_sym_BSLASHacf] = ACTIONS(12227), + [anon_sym_BSLASHAcf] = ACTIONS(12227), + [anon_sym_BSLASHacfp] = ACTIONS(12227), + [anon_sym_BSLASHAcfp] = ACTIONS(12227), + [anon_sym_BSLASHac] = ACTIONS(12227), + [anon_sym_BSLASHAc] = ACTIONS(12227), + [anon_sym_BSLASHacp] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12227), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12227), + [anon_sym_BSLASHcolor] = ACTIONS(12227), + [anon_sym_BSLASHcolorbox] = ACTIONS(12227), + [anon_sym_BSLASHtextcolor] = ACTIONS(12227), + [anon_sym_BSLASHpagecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12227), + }, + [1801] = { + [sym_generic_command_name] = ACTIONS(12441), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12441), + [anon_sym_LBRACK] = ACTIONS(12439), + [anon_sym_RBRACK] = ACTIONS(12439), + [anon_sym_LBRACE] = ACTIONS(12439), + [anon_sym_RBRACE] = ACTIONS(12439), + [anon_sym_LPAREN] = ACTIONS(12439), + [anon_sym_COMMA] = ACTIONS(12439), + [anon_sym_EQ] = ACTIONS(12439), + [sym_word] = ACTIONS(12439), + [sym_param] = ACTIONS(12439), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12439), + [anon_sym_DOLLAR] = ACTIONS(12441), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12439), + [anon_sym_BSLASHbegin] = ACTIONS(12441), + [anon_sym_BSLASHcaption] = ACTIONS(12441), + [anon_sym_BSLASHcite] = ACTIONS(12441), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCite] = ACTIONS(12441), + [anon_sym_BSLASHnocite] = ACTIONS(12441), + [anon_sym_BSLASHcitet] = ACTIONS(12441), + [anon_sym_BSLASHcitep] = ACTIONS(12441), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteauthor] = ACTIONS(12441), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12441), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitetitle] = ACTIONS(12441), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteyear] = ACTIONS(12441), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitedate] = ACTIONS(12441), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteurl] = ACTIONS(12441), + [anon_sym_BSLASHfullcite] = ACTIONS(12441), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12441), + [anon_sym_BSLASHcitealt] = ACTIONS(12441), + [anon_sym_BSLASHcitealp] = ACTIONS(12441), + [anon_sym_BSLASHcitetext] = ACTIONS(12441), + [anon_sym_BSLASHparencite] = ACTIONS(12441), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHParencite] = ACTIONS(12441), + [anon_sym_BSLASHfootcite] = ACTIONS(12441), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12441), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12441), + [anon_sym_BSLASHtextcite] = ACTIONS(12441), + [anon_sym_BSLASHTextcite] = ACTIONS(12441), + [anon_sym_BSLASHsmartcite] = ACTIONS(12441), + [anon_sym_BSLASHSmartcite] = ACTIONS(12441), + [anon_sym_BSLASHsupercite] = ACTIONS(12441), + [anon_sym_BSLASHautocite] = ACTIONS(12441), + [anon_sym_BSLASHAutocite] = ACTIONS(12441), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHvolcite] = ACTIONS(12441), + [anon_sym_BSLASHVolcite] = ACTIONS(12441), + [anon_sym_BSLASHpvolcite] = ACTIONS(12441), + [anon_sym_BSLASHPvolcite] = ACTIONS(12441), + [anon_sym_BSLASHfvolcite] = ACTIONS(12441), + [anon_sym_BSLASHftvolcite] = ACTIONS(12441), + [anon_sym_BSLASHsvolcite] = ACTIONS(12441), + [anon_sym_BSLASHSvolcite] = ACTIONS(12441), + [anon_sym_BSLASHtvolcite] = ACTIONS(12441), + [anon_sym_BSLASHTvolcite] = ACTIONS(12441), + [anon_sym_BSLASHavolcite] = ACTIONS(12441), + [anon_sym_BSLASHAvolcite] = ACTIONS(12441), + [anon_sym_BSLASHnotecite] = ACTIONS(12441), + [anon_sym_BSLASHpnotecite] = ACTIONS(12441), + [anon_sym_BSLASHPnotecite] = ACTIONS(12441), + [anon_sym_BSLASHfnotecite] = ACTIONS(12441), + [anon_sym_BSLASHusepackage] = ACTIONS(12441), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12441), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12441), + [anon_sym_BSLASHinclude] = ACTIONS(12441), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12441), + [anon_sym_BSLASHinput] = ACTIONS(12441), + [anon_sym_BSLASHsubfile] = ACTIONS(12441), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12441), + [anon_sym_BSLASHbibliography] = ACTIONS(12441), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12441), + [anon_sym_BSLASHincludesvg] = ACTIONS(12441), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12441), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12441), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12441), + [anon_sym_BSLASHimport] = ACTIONS(12441), + [anon_sym_BSLASHsubimport] = ACTIONS(12441), + [anon_sym_BSLASHinputfrom] = ACTIONS(12441), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12441), + [anon_sym_BSLASHincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHlabel] = ACTIONS(12441), + [anon_sym_BSLASHref] = ACTIONS(12441), + [anon_sym_BSLASHvref] = ACTIONS(12441), + [anon_sym_BSLASHVref] = ACTIONS(12441), + [anon_sym_BSLASHautoref] = ACTIONS(12441), + [anon_sym_BSLASHpageref] = ACTIONS(12441), + [anon_sym_BSLASHcref] = ACTIONS(12441), + [anon_sym_BSLASHCref] = ACTIONS(12441), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnameCref] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHlabelcref] = ACTIONS(12441), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12441), + [anon_sym_BSLASHeqref] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange] = ACTIONS(12441), + [anon_sym_BSLASHCrefrange] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewlabel] = ACTIONS(12441), + [anon_sym_BSLASHnewcommand] = ACTIONS(12441), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12441), + [anon_sym_BSLASHgls] = ACTIONS(12441), + [anon_sym_BSLASHGls] = ACTIONS(12441), + [anon_sym_BSLASHGLS] = ACTIONS(12441), + [anon_sym_BSLASHglspl] = ACTIONS(12441), + [anon_sym_BSLASHGlspl] = ACTIONS(12441), + [anon_sym_BSLASHGLSpl] = ACTIONS(12441), + [anon_sym_BSLASHglsdisp] = ACTIONS(12441), + [anon_sym_BSLASHglslink] = ACTIONS(12441), + [anon_sym_BSLASHglstext] = ACTIONS(12441), + [anon_sym_BSLASHGlstext] = ACTIONS(12441), + [anon_sym_BSLASHGLStext] = ACTIONS(12441), + [anon_sym_BSLASHglsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12441), + [anon_sym_BSLASHglsplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSplural] = ACTIONS(12441), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHglsname] = ACTIONS(12441), + [anon_sym_BSLASHGlsname] = ACTIONS(12441), + [anon_sym_BSLASHGLSname] = ACTIONS(12441), + [anon_sym_BSLASHglssymbol] = ACTIONS(12441), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12441), + [anon_sym_BSLASHglsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12441), + [anon_sym_BSLASHglsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12441), + [anon_sym_BSLASHglsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12441), + [anon_sym_BSLASHglsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12441), + [anon_sym_BSLASHglsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12441), + [anon_sym_BSLASHnewacronym] = ACTIONS(12441), + [anon_sym_BSLASHacrshort] = ACTIONS(12441), + [anon_sym_BSLASHAcrshort] = ACTIONS(12441), + [anon_sym_BSLASHACRshort] = ACTIONS(12441), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12441), + [anon_sym_BSLASHacrlong] = ACTIONS(12441), + [anon_sym_BSLASHAcrlong] = ACTIONS(12441), + [anon_sym_BSLASHACRlong] = ACTIONS(12441), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12441), + [anon_sym_BSLASHacrfull] = ACTIONS(12441), + [anon_sym_BSLASHAcrfull] = ACTIONS(12441), + [anon_sym_BSLASHACRfull] = ACTIONS(12441), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12441), + [anon_sym_BSLASHacs] = ACTIONS(12441), + [anon_sym_BSLASHAcs] = ACTIONS(12441), + [anon_sym_BSLASHacsp] = ACTIONS(12441), + [anon_sym_BSLASHAcsp] = ACTIONS(12441), + [anon_sym_BSLASHacl] = ACTIONS(12441), + [anon_sym_BSLASHAcl] = ACTIONS(12441), + [anon_sym_BSLASHaclp] = ACTIONS(12441), + [anon_sym_BSLASHAclp] = ACTIONS(12441), + [anon_sym_BSLASHacf] = ACTIONS(12441), + [anon_sym_BSLASHAcf] = ACTIONS(12441), + [anon_sym_BSLASHacfp] = ACTIONS(12441), + [anon_sym_BSLASHAcfp] = ACTIONS(12441), + [anon_sym_BSLASHac] = ACTIONS(12441), + [anon_sym_BSLASHAc] = ACTIONS(12441), + [anon_sym_BSLASHacp] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12441), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12441), + [anon_sym_BSLASHcolor] = ACTIONS(12441), + [anon_sym_BSLASHcolorbox] = ACTIONS(12441), + [anon_sym_BSLASHtextcolor] = ACTIONS(12441), + [anon_sym_BSLASHpagecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12441), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12441), + }, + [1802] = { + [sym_generic_command_name] = ACTIONS(12445), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12445), + [anon_sym_LBRACK] = ACTIONS(12443), + [anon_sym_RBRACK] = ACTIONS(12443), + [anon_sym_LBRACE] = ACTIONS(12443), + [anon_sym_RBRACE] = ACTIONS(12443), + [anon_sym_LPAREN] = ACTIONS(12443), + [anon_sym_COMMA] = ACTIONS(12443), + [anon_sym_EQ] = ACTIONS(12443), + [sym_word] = ACTIONS(12443), + [sym_param] = ACTIONS(12443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12443), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12443), + [anon_sym_DOLLAR] = ACTIONS(12445), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12443), + [anon_sym_BSLASHbegin] = ACTIONS(12445), + [anon_sym_BSLASHcaption] = ACTIONS(12445), + [anon_sym_BSLASHcite] = ACTIONS(12445), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCite] = ACTIONS(12445), + [anon_sym_BSLASHnocite] = ACTIONS(12445), + [anon_sym_BSLASHcitet] = ACTIONS(12445), + [anon_sym_BSLASHcitep] = ACTIONS(12445), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteauthor] = ACTIONS(12445), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12445), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitetitle] = ACTIONS(12445), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteyear] = ACTIONS(12445), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitedate] = ACTIONS(12445), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteurl] = ACTIONS(12445), + [anon_sym_BSLASHfullcite] = ACTIONS(12445), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12445), + [anon_sym_BSLASHcitealt] = ACTIONS(12445), + [anon_sym_BSLASHcitealp] = ACTIONS(12445), + [anon_sym_BSLASHcitetext] = ACTIONS(12445), + [anon_sym_BSLASHparencite] = ACTIONS(12445), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHParencite] = ACTIONS(12445), + [anon_sym_BSLASHfootcite] = ACTIONS(12445), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12445), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12445), + [anon_sym_BSLASHtextcite] = ACTIONS(12445), + [anon_sym_BSLASHTextcite] = ACTIONS(12445), + [anon_sym_BSLASHsmartcite] = ACTIONS(12445), + [anon_sym_BSLASHSmartcite] = ACTIONS(12445), + [anon_sym_BSLASHsupercite] = ACTIONS(12445), + [anon_sym_BSLASHautocite] = ACTIONS(12445), + [anon_sym_BSLASHAutocite] = ACTIONS(12445), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHvolcite] = ACTIONS(12445), + [anon_sym_BSLASHVolcite] = ACTIONS(12445), + [anon_sym_BSLASHpvolcite] = ACTIONS(12445), + [anon_sym_BSLASHPvolcite] = ACTIONS(12445), + [anon_sym_BSLASHfvolcite] = ACTIONS(12445), + [anon_sym_BSLASHftvolcite] = ACTIONS(12445), + [anon_sym_BSLASHsvolcite] = ACTIONS(12445), + [anon_sym_BSLASHSvolcite] = ACTIONS(12445), + [anon_sym_BSLASHtvolcite] = ACTIONS(12445), + [anon_sym_BSLASHTvolcite] = ACTIONS(12445), + [anon_sym_BSLASHavolcite] = ACTIONS(12445), + [anon_sym_BSLASHAvolcite] = ACTIONS(12445), + [anon_sym_BSLASHnotecite] = ACTIONS(12445), + [anon_sym_BSLASHpnotecite] = ACTIONS(12445), + [anon_sym_BSLASHPnotecite] = ACTIONS(12445), + [anon_sym_BSLASHfnotecite] = ACTIONS(12445), + [anon_sym_BSLASHusepackage] = ACTIONS(12445), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12445), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12445), + [anon_sym_BSLASHinclude] = ACTIONS(12445), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12445), + [anon_sym_BSLASHinput] = ACTIONS(12445), + [anon_sym_BSLASHsubfile] = ACTIONS(12445), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12445), + [anon_sym_BSLASHbibliography] = ACTIONS(12445), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12445), + [anon_sym_BSLASHincludesvg] = ACTIONS(12445), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12445), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12445), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12445), + [anon_sym_BSLASHimport] = ACTIONS(12445), + [anon_sym_BSLASHsubimport] = ACTIONS(12445), + [anon_sym_BSLASHinputfrom] = ACTIONS(12445), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12445), + [anon_sym_BSLASHincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHlabel] = ACTIONS(12445), + [anon_sym_BSLASHref] = ACTIONS(12445), + [anon_sym_BSLASHvref] = ACTIONS(12445), + [anon_sym_BSLASHVref] = ACTIONS(12445), + [anon_sym_BSLASHautoref] = ACTIONS(12445), + [anon_sym_BSLASHpageref] = ACTIONS(12445), + [anon_sym_BSLASHcref] = ACTIONS(12445), + [anon_sym_BSLASHCref] = ACTIONS(12445), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnameCref] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHlabelcref] = ACTIONS(12445), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12445), + [anon_sym_BSLASHeqref] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange] = ACTIONS(12445), + [anon_sym_BSLASHCrefrange] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewlabel] = ACTIONS(12445), + [anon_sym_BSLASHnewcommand] = ACTIONS(12445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12445), + [anon_sym_BSLASHgls] = ACTIONS(12445), + [anon_sym_BSLASHGls] = ACTIONS(12445), + [anon_sym_BSLASHGLS] = ACTIONS(12445), + [anon_sym_BSLASHglspl] = ACTIONS(12445), + [anon_sym_BSLASHGlspl] = ACTIONS(12445), + [anon_sym_BSLASHGLSpl] = ACTIONS(12445), + [anon_sym_BSLASHglsdisp] = ACTIONS(12445), + [anon_sym_BSLASHglslink] = ACTIONS(12445), + [anon_sym_BSLASHglstext] = ACTIONS(12445), + [anon_sym_BSLASHGlstext] = ACTIONS(12445), + [anon_sym_BSLASHGLStext] = ACTIONS(12445), + [anon_sym_BSLASHglsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12445), + [anon_sym_BSLASHglsplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSplural] = ACTIONS(12445), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHglsname] = ACTIONS(12445), + [anon_sym_BSLASHGlsname] = ACTIONS(12445), + [anon_sym_BSLASHGLSname] = ACTIONS(12445), + [anon_sym_BSLASHglssymbol] = ACTIONS(12445), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12445), + [anon_sym_BSLASHglsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12445), + [anon_sym_BSLASHglsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12445), + [anon_sym_BSLASHglsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12445), + [anon_sym_BSLASHglsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12445), + [anon_sym_BSLASHglsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12445), + [anon_sym_BSLASHnewacronym] = ACTIONS(12445), + [anon_sym_BSLASHacrshort] = ACTIONS(12445), + [anon_sym_BSLASHAcrshort] = ACTIONS(12445), + [anon_sym_BSLASHACRshort] = ACTIONS(12445), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12445), + [anon_sym_BSLASHacrlong] = ACTIONS(12445), + [anon_sym_BSLASHAcrlong] = ACTIONS(12445), + [anon_sym_BSLASHACRlong] = ACTIONS(12445), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12445), + [anon_sym_BSLASHacrfull] = ACTIONS(12445), + [anon_sym_BSLASHAcrfull] = ACTIONS(12445), + [anon_sym_BSLASHACRfull] = ACTIONS(12445), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12445), + [anon_sym_BSLASHacs] = ACTIONS(12445), + [anon_sym_BSLASHAcs] = ACTIONS(12445), + [anon_sym_BSLASHacsp] = ACTIONS(12445), + [anon_sym_BSLASHAcsp] = ACTIONS(12445), + [anon_sym_BSLASHacl] = ACTIONS(12445), + [anon_sym_BSLASHAcl] = ACTIONS(12445), + [anon_sym_BSLASHaclp] = ACTIONS(12445), + [anon_sym_BSLASHAclp] = ACTIONS(12445), + [anon_sym_BSLASHacf] = ACTIONS(12445), + [anon_sym_BSLASHAcf] = ACTIONS(12445), + [anon_sym_BSLASHacfp] = ACTIONS(12445), + [anon_sym_BSLASHAcfp] = ACTIONS(12445), + [anon_sym_BSLASHac] = ACTIONS(12445), + [anon_sym_BSLASHAc] = ACTIONS(12445), + [anon_sym_BSLASHacp] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12445), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12445), + [anon_sym_BSLASHcolor] = ACTIONS(12445), + [anon_sym_BSLASHcolorbox] = ACTIONS(12445), + [anon_sym_BSLASHtextcolor] = ACTIONS(12445), + [anon_sym_BSLASHpagecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12445), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12445), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12445), + }, + [1803] = { + [sym_generic_command_name] = ACTIONS(12449), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12449), + [anon_sym_LBRACK] = ACTIONS(12447), + [anon_sym_RBRACK] = ACTIONS(12447), + [anon_sym_LBRACE] = ACTIONS(12447), + [anon_sym_RBRACE] = ACTIONS(12447), + [anon_sym_LPAREN] = ACTIONS(12447), + [anon_sym_COMMA] = ACTIONS(12447), + [anon_sym_EQ] = ACTIONS(12447), + [sym_word] = ACTIONS(12447), + [sym_param] = ACTIONS(12447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12447), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12447), + [anon_sym_DOLLAR] = ACTIONS(12449), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12447), + [anon_sym_BSLASHbegin] = ACTIONS(12449), + [anon_sym_BSLASHcaption] = ACTIONS(12449), + [anon_sym_BSLASHcite] = ACTIONS(12449), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCite] = ACTIONS(12449), + [anon_sym_BSLASHnocite] = ACTIONS(12449), + [anon_sym_BSLASHcitet] = ACTIONS(12449), + [anon_sym_BSLASHcitep] = ACTIONS(12449), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteauthor] = ACTIONS(12449), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12449), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitetitle] = ACTIONS(12449), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteyear] = ACTIONS(12449), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitedate] = ACTIONS(12449), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteurl] = ACTIONS(12449), + [anon_sym_BSLASHfullcite] = ACTIONS(12449), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12449), + [anon_sym_BSLASHcitealt] = ACTIONS(12449), + [anon_sym_BSLASHcitealp] = ACTIONS(12449), + [anon_sym_BSLASHcitetext] = ACTIONS(12449), + [anon_sym_BSLASHparencite] = ACTIONS(12449), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHParencite] = ACTIONS(12449), + [anon_sym_BSLASHfootcite] = ACTIONS(12449), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12449), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12449), + [anon_sym_BSLASHtextcite] = ACTIONS(12449), + [anon_sym_BSLASHTextcite] = ACTIONS(12449), + [anon_sym_BSLASHsmartcite] = ACTIONS(12449), + [anon_sym_BSLASHSmartcite] = ACTIONS(12449), + [anon_sym_BSLASHsupercite] = ACTIONS(12449), + [anon_sym_BSLASHautocite] = ACTIONS(12449), + [anon_sym_BSLASHAutocite] = ACTIONS(12449), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHvolcite] = ACTIONS(12449), + [anon_sym_BSLASHVolcite] = ACTIONS(12449), + [anon_sym_BSLASHpvolcite] = ACTIONS(12449), + [anon_sym_BSLASHPvolcite] = ACTIONS(12449), + [anon_sym_BSLASHfvolcite] = ACTIONS(12449), + [anon_sym_BSLASHftvolcite] = ACTIONS(12449), + [anon_sym_BSLASHsvolcite] = ACTIONS(12449), + [anon_sym_BSLASHSvolcite] = ACTIONS(12449), + [anon_sym_BSLASHtvolcite] = ACTIONS(12449), + [anon_sym_BSLASHTvolcite] = ACTIONS(12449), + [anon_sym_BSLASHavolcite] = ACTIONS(12449), + [anon_sym_BSLASHAvolcite] = ACTIONS(12449), + [anon_sym_BSLASHnotecite] = ACTIONS(12449), + [anon_sym_BSLASHpnotecite] = ACTIONS(12449), + [anon_sym_BSLASHPnotecite] = ACTIONS(12449), + [anon_sym_BSLASHfnotecite] = ACTIONS(12449), + [anon_sym_BSLASHusepackage] = ACTIONS(12449), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12449), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12449), + [anon_sym_BSLASHinclude] = ACTIONS(12449), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12449), + [anon_sym_BSLASHinput] = ACTIONS(12449), + [anon_sym_BSLASHsubfile] = ACTIONS(12449), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12449), + [anon_sym_BSLASHbibliography] = ACTIONS(12449), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12449), + [anon_sym_BSLASHincludesvg] = ACTIONS(12449), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12449), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12449), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12449), + [anon_sym_BSLASHimport] = ACTIONS(12449), + [anon_sym_BSLASHsubimport] = ACTIONS(12449), + [anon_sym_BSLASHinputfrom] = ACTIONS(12449), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12449), + [anon_sym_BSLASHincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHlabel] = ACTIONS(12449), + [anon_sym_BSLASHref] = ACTIONS(12449), + [anon_sym_BSLASHvref] = ACTIONS(12449), + [anon_sym_BSLASHVref] = ACTIONS(12449), + [anon_sym_BSLASHautoref] = ACTIONS(12449), + [anon_sym_BSLASHpageref] = ACTIONS(12449), + [anon_sym_BSLASHcref] = ACTIONS(12449), + [anon_sym_BSLASHCref] = ACTIONS(12449), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnameCref] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHlabelcref] = ACTIONS(12449), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12449), + [anon_sym_BSLASHeqref] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange] = ACTIONS(12449), + [anon_sym_BSLASHCrefrange] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewlabel] = ACTIONS(12449), + [anon_sym_BSLASHnewcommand] = ACTIONS(12449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12449), + [anon_sym_BSLASHgls] = ACTIONS(12449), + [anon_sym_BSLASHGls] = ACTIONS(12449), + [anon_sym_BSLASHGLS] = ACTIONS(12449), + [anon_sym_BSLASHglspl] = ACTIONS(12449), + [anon_sym_BSLASHGlspl] = ACTIONS(12449), + [anon_sym_BSLASHGLSpl] = ACTIONS(12449), + [anon_sym_BSLASHglsdisp] = ACTIONS(12449), + [anon_sym_BSLASHglslink] = ACTIONS(12449), + [anon_sym_BSLASHglstext] = ACTIONS(12449), + [anon_sym_BSLASHGlstext] = ACTIONS(12449), + [anon_sym_BSLASHGLStext] = ACTIONS(12449), + [anon_sym_BSLASHglsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12449), + [anon_sym_BSLASHglsplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSplural] = ACTIONS(12449), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHglsname] = ACTIONS(12449), + [anon_sym_BSLASHGlsname] = ACTIONS(12449), + [anon_sym_BSLASHGLSname] = ACTIONS(12449), + [anon_sym_BSLASHglssymbol] = ACTIONS(12449), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12449), + [anon_sym_BSLASHglsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12449), + [anon_sym_BSLASHglsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12449), + [anon_sym_BSLASHglsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12449), + [anon_sym_BSLASHglsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12449), + [anon_sym_BSLASHglsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12449), + [anon_sym_BSLASHnewacronym] = ACTIONS(12449), + [anon_sym_BSLASHacrshort] = ACTIONS(12449), + [anon_sym_BSLASHAcrshort] = ACTIONS(12449), + [anon_sym_BSLASHACRshort] = ACTIONS(12449), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12449), + [anon_sym_BSLASHacrlong] = ACTIONS(12449), + [anon_sym_BSLASHAcrlong] = ACTIONS(12449), + [anon_sym_BSLASHACRlong] = ACTIONS(12449), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12449), + [anon_sym_BSLASHacrfull] = ACTIONS(12449), + [anon_sym_BSLASHAcrfull] = ACTIONS(12449), + [anon_sym_BSLASHACRfull] = ACTIONS(12449), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12449), + [anon_sym_BSLASHacs] = ACTIONS(12449), + [anon_sym_BSLASHAcs] = ACTIONS(12449), + [anon_sym_BSLASHacsp] = ACTIONS(12449), + [anon_sym_BSLASHAcsp] = ACTIONS(12449), + [anon_sym_BSLASHacl] = ACTIONS(12449), + [anon_sym_BSLASHAcl] = ACTIONS(12449), + [anon_sym_BSLASHaclp] = ACTIONS(12449), + [anon_sym_BSLASHAclp] = ACTIONS(12449), + [anon_sym_BSLASHacf] = ACTIONS(12449), + [anon_sym_BSLASHAcf] = ACTIONS(12449), + [anon_sym_BSLASHacfp] = ACTIONS(12449), + [anon_sym_BSLASHAcfp] = ACTIONS(12449), + [anon_sym_BSLASHac] = ACTIONS(12449), + [anon_sym_BSLASHAc] = ACTIONS(12449), + [anon_sym_BSLASHacp] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12449), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12449), + [anon_sym_BSLASHcolor] = ACTIONS(12449), + [anon_sym_BSLASHcolorbox] = ACTIONS(12449), + [anon_sym_BSLASHtextcolor] = ACTIONS(12449), + [anon_sym_BSLASHpagecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12449), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12449), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12449), + }, + [1804] = { + [sym_generic_command_name] = ACTIONS(12453), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12453), + [anon_sym_LBRACK] = ACTIONS(12451), + [anon_sym_RBRACK] = ACTIONS(12451), + [anon_sym_LBRACE] = ACTIONS(12451), + [anon_sym_RBRACE] = ACTIONS(12451), + [anon_sym_LPAREN] = ACTIONS(12451), + [anon_sym_COMMA] = ACTIONS(12451), + [anon_sym_EQ] = ACTIONS(12451), + [sym_word] = ACTIONS(12451), + [sym_param] = ACTIONS(12451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12451), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12451), + [anon_sym_DOLLAR] = ACTIONS(12453), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12451), + [anon_sym_BSLASHbegin] = ACTIONS(12453), + [anon_sym_BSLASHcaption] = ACTIONS(12453), + [anon_sym_BSLASHcite] = ACTIONS(12453), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCite] = ACTIONS(12453), + [anon_sym_BSLASHnocite] = ACTIONS(12453), + [anon_sym_BSLASHcitet] = ACTIONS(12453), + [anon_sym_BSLASHcitep] = ACTIONS(12453), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteauthor] = ACTIONS(12453), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12453), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitetitle] = ACTIONS(12453), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteyear] = ACTIONS(12453), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitedate] = ACTIONS(12453), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteurl] = ACTIONS(12453), + [anon_sym_BSLASHfullcite] = ACTIONS(12453), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12453), + [anon_sym_BSLASHcitealt] = ACTIONS(12453), + [anon_sym_BSLASHcitealp] = ACTIONS(12453), + [anon_sym_BSLASHcitetext] = ACTIONS(12453), + [anon_sym_BSLASHparencite] = ACTIONS(12453), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHParencite] = ACTIONS(12453), + [anon_sym_BSLASHfootcite] = ACTIONS(12453), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12453), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12453), + [anon_sym_BSLASHtextcite] = ACTIONS(12453), + [anon_sym_BSLASHTextcite] = ACTIONS(12453), + [anon_sym_BSLASHsmartcite] = ACTIONS(12453), + [anon_sym_BSLASHSmartcite] = ACTIONS(12453), + [anon_sym_BSLASHsupercite] = ACTIONS(12453), + [anon_sym_BSLASHautocite] = ACTIONS(12453), + [anon_sym_BSLASHAutocite] = ACTIONS(12453), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHvolcite] = ACTIONS(12453), + [anon_sym_BSLASHVolcite] = ACTIONS(12453), + [anon_sym_BSLASHpvolcite] = ACTIONS(12453), + [anon_sym_BSLASHPvolcite] = ACTIONS(12453), + [anon_sym_BSLASHfvolcite] = ACTIONS(12453), + [anon_sym_BSLASHftvolcite] = ACTIONS(12453), + [anon_sym_BSLASHsvolcite] = ACTIONS(12453), + [anon_sym_BSLASHSvolcite] = ACTIONS(12453), + [anon_sym_BSLASHtvolcite] = ACTIONS(12453), + [anon_sym_BSLASHTvolcite] = ACTIONS(12453), + [anon_sym_BSLASHavolcite] = ACTIONS(12453), + [anon_sym_BSLASHAvolcite] = ACTIONS(12453), + [anon_sym_BSLASHnotecite] = ACTIONS(12453), + [anon_sym_BSLASHpnotecite] = ACTIONS(12453), + [anon_sym_BSLASHPnotecite] = ACTIONS(12453), + [anon_sym_BSLASHfnotecite] = ACTIONS(12453), + [anon_sym_BSLASHusepackage] = ACTIONS(12453), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12453), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12453), + [anon_sym_BSLASHinclude] = ACTIONS(12453), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12453), + [anon_sym_BSLASHinput] = ACTIONS(12453), + [anon_sym_BSLASHsubfile] = ACTIONS(12453), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12453), + [anon_sym_BSLASHbibliography] = ACTIONS(12453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12453), + [anon_sym_BSLASHincludesvg] = ACTIONS(12453), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12453), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12453), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12453), + [anon_sym_BSLASHimport] = ACTIONS(12453), + [anon_sym_BSLASHsubimport] = ACTIONS(12453), + [anon_sym_BSLASHinputfrom] = ACTIONS(12453), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12453), + [anon_sym_BSLASHincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHlabel] = ACTIONS(12453), + [anon_sym_BSLASHref] = ACTIONS(12453), + [anon_sym_BSLASHvref] = ACTIONS(12453), + [anon_sym_BSLASHVref] = ACTIONS(12453), + [anon_sym_BSLASHautoref] = ACTIONS(12453), + [anon_sym_BSLASHpageref] = ACTIONS(12453), + [anon_sym_BSLASHcref] = ACTIONS(12453), + [anon_sym_BSLASHCref] = ACTIONS(12453), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnameCref] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHlabelcref] = ACTIONS(12453), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12453), + [anon_sym_BSLASHeqref] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange] = ACTIONS(12453), + [anon_sym_BSLASHCrefrange] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewlabel] = ACTIONS(12453), + [anon_sym_BSLASHnewcommand] = ACTIONS(12453), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12453), + [anon_sym_BSLASHgls] = ACTIONS(12453), + [anon_sym_BSLASHGls] = ACTIONS(12453), + [anon_sym_BSLASHGLS] = ACTIONS(12453), + [anon_sym_BSLASHglspl] = ACTIONS(12453), + [anon_sym_BSLASHGlspl] = ACTIONS(12453), + [anon_sym_BSLASHGLSpl] = ACTIONS(12453), + [anon_sym_BSLASHglsdisp] = ACTIONS(12453), + [anon_sym_BSLASHglslink] = ACTIONS(12453), + [anon_sym_BSLASHglstext] = ACTIONS(12453), + [anon_sym_BSLASHGlstext] = ACTIONS(12453), + [anon_sym_BSLASHGLStext] = ACTIONS(12453), + [anon_sym_BSLASHglsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12453), + [anon_sym_BSLASHglsplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSplural] = ACTIONS(12453), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHglsname] = ACTIONS(12453), + [anon_sym_BSLASHGlsname] = ACTIONS(12453), + [anon_sym_BSLASHGLSname] = ACTIONS(12453), + [anon_sym_BSLASHglssymbol] = ACTIONS(12453), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12453), + [anon_sym_BSLASHglsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12453), + [anon_sym_BSLASHglsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12453), + [anon_sym_BSLASHglsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12453), + [anon_sym_BSLASHglsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12453), + [anon_sym_BSLASHglsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12453), + [anon_sym_BSLASHnewacronym] = ACTIONS(12453), + [anon_sym_BSLASHacrshort] = ACTIONS(12453), + [anon_sym_BSLASHAcrshort] = ACTIONS(12453), + [anon_sym_BSLASHACRshort] = ACTIONS(12453), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12453), + [anon_sym_BSLASHacrlong] = ACTIONS(12453), + [anon_sym_BSLASHAcrlong] = ACTIONS(12453), + [anon_sym_BSLASHACRlong] = ACTIONS(12453), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12453), + [anon_sym_BSLASHacrfull] = ACTIONS(12453), + [anon_sym_BSLASHAcrfull] = ACTIONS(12453), + [anon_sym_BSLASHACRfull] = ACTIONS(12453), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12453), + [anon_sym_BSLASHacs] = ACTIONS(12453), + [anon_sym_BSLASHAcs] = ACTIONS(12453), + [anon_sym_BSLASHacsp] = ACTIONS(12453), + [anon_sym_BSLASHAcsp] = ACTIONS(12453), + [anon_sym_BSLASHacl] = ACTIONS(12453), + [anon_sym_BSLASHAcl] = ACTIONS(12453), + [anon_sym_BSLASHaclp] = ACTIONS(12453), + [anon_sym_BSLASHAclp] = ACTIONS(12453), + [anon_sym_BSLASHacf] = ACTIONS(12453), + [anon_sym_BSLASHAcf] = ACTIONS(12453), + [anon_sym_BSLASHacfp] = ACTIONS(12453), + [anon_sym_BSLASHAcfp] = ACTIONS(12453), + [anon_sym_BSLASHac] = ACTIONS(12453), + [anon_sym_BSLASHAc] = ACTIONS(12453), + [anon_sym_BSLASHacp] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12453), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12453), + [anon_sym_BSLASHcolor] = ACTIONS(12453), + [anon_sym_BSLASHcolorbox] = ACTIONS(12453), + [anon_sym_BSLASHtextcolor] = ACTIONS(12453), + [anon_sym_BSLASHpagecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12453), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12453), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12453), + }, + [1805] = { + [sym_generic_command_name] = ACTIONS(12461), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12461), + [anon_sym_LBRACK] = ACTIONS(12459), + [anon_sym_RBRACK] = ACTIONS(12459), + [anon_sym_LBRACE] = ACTIONS(12459), + [anon_sym_RBRACE] = ACTIONS(12459), + [anon_sym_LPAREN] = ACTIONS(12459), + [anon_sym_COMMA] = ACTIONS(12459), + [anon_sym_EQ] = ACTIONS(12459), + [sym_word] = ACTIONS(12459), + [sym_param] = ACTIONS(12459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12459), + [anon_sym_DOLLAR] = ACTIONS(12461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12459), + [anon_sym_BSLASHbegin] = ACTIONS(12461), + [anon_sym_BSLASHcaption] = ACTIONS(12461), + [anon_sym_BSLASHcite] = ACTIONS(12461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCite] = ACTIONS(12461), + [anon_sym_BSLASHnocite] = ACTIONS(12461), + [anon_sym_BSLASHcitet] = ACTIONS(12461), + [anon_sym_BSLASHcitep] = ACTIONS(12461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteauthor] = ACTIONS(12461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitetitle] = ACTIONS(12461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteyear] = ACTIONS(12461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitedate] = ACTIONS(12461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteurl] = ACTIONS(12461), + [anon_sym_BSLASHfullcite] = ACTIONS(12461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12461), + [anon_sym_BSLASHcitealt] = ACTIONS(12461), + [anon_sym_BSLASHcitealp] = ACTIONS(12461), + [anon_sym_BSLASHcitetext] = ACTIONS(12461), + [anon_sym_BSLASHparencite] = ACTIONS(12461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHParencite] = ACTIONS(12461), + [anon_sym_BSLASHfootcite] = ACTIONS(12461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12461), + [anon_sym_BSLASHtextcite] = ACTIONS(12461), + [anon_sym_BSLASHTextcite] = ACTIONS(12461), + [anon_sym_BSLASHsmartcite] = ACTIONS(12461), + [anon_sym_BSLASHSmartcite] = ACTIONS(12461), + [anon_sym_BSLASHsupercite] = ACTIONS(12461), + [anon_sym_BSLASHautocite] = ACTIONS(12461), + [anon_sym_BSLASHAutocite] = ACTIONS(12461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHvolcite] = ACTIONS(12461), + [anon_sym_BSLASHVolcite] = ACTIONS(12461), + [anon_sym_BSLASHpvolcite] = ACTIONS(12461), + [anon_sym_BSLASHPvolcite] = ACTIONS(12461), + [anon_sym_BSLASHfvolcite] = ACTIONS(12461), + [anon_sym_BSLASHftvolcite] = ACTIONS(12461), + [anon_sym_BSLASHsvolcite] = ACTIONS(12461), + [anon_sym_BSLASHSvolcite] = ACTIONS(12461), + [anon_sym_BSLASHtvolcite] = ACTIONS(12461), + [anon_sym_BSLASHTvolcite] = ACTIONS(12461), + [anon_sym_BSLASHavolcite] = ACTIONS(12461), + [anon_sym_BSLASHAvolcite] = ACTIONS(12461), + [anon_sym_BSLASHnotecite] = ACTIONS(12461), + [anon_sym_BSLASHpnotecite] = ACTIONS(12461), + [anon_sym_BSLASHPnotecite] = ACTIONS(12461), + [anon_sym_BSLASHfnotecite] = ACTIONS(12461), + [anon_sym_BSLASHusepackage] = ACTIONS(12461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12461), + [anon_sym_BSLASHinclude] = ACTIONS(12461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12461), + [anon_sym_BSLASHinput] = ACTIONS(12461), + [anon_sym_BSLASHsubfile] = ACTIONS(12461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12461), + [anon_sym_BSLASHbibliography] = ACTIONS(12461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12461), + [anon_sym_BSLASHincludesvg] = ACTIONS(12461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12461), + [anon_sym_BSLASHimport] = ACTIONS(12461), + [anon_sym_BSLASHsubimport] = ACTIONS(12461), + [anon_sym_BSLASHinputfrom] = ACTIONS(12461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12461), + [anon_sym_BSLASHincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHlabel] = ACTIONS(12461), + [anon_sym_BSLASHref] = ACTIONS(12461), + [anon_sym_BSLASHvref] = ACTIONS(12461), + [anon_sym_BSLASHVref] = ACTIONS(12461), + [anon_sym_BSLASHautoref] = ACTIONS(12461), + [anon_sym_BSLASHpageref] = ACTIONS(12461), + [anon_sym_BSLASHcref] = ACTIONS(12461), + [anon_sym_BSLASHCref] = ACTIONS(12461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnameCref] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHlabelcref] = ACTIONS(12461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12461), + [anon_sym_BSLASHeqref] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange] = ACTIONS(12461), + [anon_sym_BSLASHCrefrange] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewlabel] = ACTIONS(12461), + [anon_sym_BSLASHnewcommand] = ACTIONS(12461), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12461), + [anon_sym_BSLASHgls] = ACTIONS(12461), + [anon_sym_BSLASHGls] = ACTIONS(12461), + [anon_sym_BSLASHGLS] = ACTIONS(12461), + [anon_sym_BSLASHglspl] = ACTIONS(12461), + [anon_sym_BSLASHGlspl] = ACTIONS(12461), + [anon_sym_BSLASHGLSpl] = ACTIONS(12461), + [anon_sym_BSLASHglsdisp] = ACTIONS(12461), + [anon_sym_BSLASHglslink] = ACTIONS(12461), + [anon_sym_BSLASHglstext] = ACTIONS(12461), + [anon_sym_BSLASHGlstext] = ACTIONS(12461), + [anon_sym_BSLASHGLStext] = ACTIONS(12461), + [anon_sym_BSLASHglsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12461), + [anon_sym_BSLASHglsplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSplural] = ACTIONS(12461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHglsname] = ACTIONS(12461), + [anon_sym_BSLASHGlsname] = ACTIONS(12461), + [anon_sym_BSLASHGLSname] = ACTIONS(12461), + [anon_sym_BSLASHglssymbol] = ACTIONS(12461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12461), + [anon_sym_BSLASHglsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12461), + [anon_sym_BSLASHglsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12461), + [anon_sym_BSLASHglsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12461), + [anon_sym_BSLASHglsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12461), + [anon_sym_BSLASHglsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12461), + [anon_sym_BSLASHnewacronym] = ACTIONS(12461), + [anon_sym_BSLASHacrshort] = ACTIONS(12461), + [anon_sym_BSLASHAcrshort] = ACTIONS(12461), + [anon_sym_BSLASHACRshort] = ACTIONS(12461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12461), + [anon_sym_BSLASHacrlong] = ACTIONS(12461), + [anon_sym_BSLASHAcrlong] = ACTIONS(12461), + [anon_sym_BSLASHACRlong] = ACTIONS(12461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12461), + [anon_sym_BSLASHacrfull] = ACTIONS(12461), + [anon_sym_BSLASHAcrfull] = ACTIONS(12461), + [anon_sym_BSLASHACRfull] = ACTIONS(12461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12461), + [anon_sym_BSLASHacs] = ACTIONS(12461), + [anon_sym_BSLASHAcs] = ACTIONS(12461), + [anon_sym_BSLASHacsp] = ACTIONS(12461), + [anon_sym_BSLASHAcsp] = ACTIONS(12461), + [anon_sym_BSLASHacl] = ACTIONS(12461), + [anon_sym_BSLASHAcl] = ACTIONS(12461), + [anon_sym_BSLASHaclp] = ACTIONS(12461), + [anon_sym_BSLASHAclp] = ACTIONS(12461), + [anon_sym_BSLASHacf] = ACTIONS(12461), + [anon_sym_BSLASHAcf] = ACTIONS(12461), + [anon_sym_BSLASHacfp] = ACTIONS(12461), + [anon_sym_BSLASHAcfp] = ACTIONS(12461), + [anon_sym_BSLASHac] = ACTIONS(12461), + [anon_sym_BSLASHAc] = ACTIONS(12461), + [anon_sym_BSLASHacp] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12461), + [anon_sym_BSLASHcolor] = ACTIONS(12461), + [anon_sym_BSLASHcolorbox] = ACTIONS(12461), + [anon_sym_BSLASHtextcolor] = ACTIONS(12461), + [anon_sym_BSLASHpagecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12461), + }, + [1806] = { + [sym_generic_command_name] = ACTIONS(12465), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12465), + [anon_sym_LBRACK] = ACTIONS(12463), + [anon_sym_RBRACK] = ACTIONS(12463), + [anon_sym_LBRACE] = ACTIONS(12463), + [anon_sym_RBRACE] = ACTIONS(12463), + [anon_sym_LPAREN] = ACTIONS(12463), + [anon_sym_COMMA] = ACTIONS(12463), + [anon_sym_EQ] = ACTIONS(12463), + [sym_word] = ACTIONS(12463), + [sym_param] = ACTIONS(12463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12463), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12463), + [anon_sym_DOLLAR] = ACTIONS(12465), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12463), + [anon_sym_BSLASHbegin] = ACTIONS(12465), + [anon_sym_BSLASHcaption] = ACTIONS(12465), + [anon_sym_BSLASHcite] = ACTIONS(12465), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCite] = ACTIONS(12465), + [anon_sym_BSLASHnocite] = ACTIONS(12465), + [anon_sym_BSLASHcitet] = ACTIONS(12465), + [anon_sym_BSLASHcitep] = ACTIONS(12465), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteauthor] = ACTIONS(12465), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12465), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitetitle] = ACTIONS(12465), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteyear] = ACTIONS(12465), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitedate] = ACTIONS(12465), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteurl] = ACTIONS(12465), + [anon_sym_BSLASHfullcite] = ACTIONS(12465), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12465), + [anon_sym_BSLASHcitealt] = ACTIONS(12465), + [anon_sym_BSLASHcitealp] = ACTIONS(12465), + [anon_sym_BSLASHcitetext] = ACTIONS(12465), + [anon_sym_BSLASHparencite] = ACTIONS(12465), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHParencite] = ACTIONS(12465), + [anon_sym_BSLASHfootcite] = ACTIONS(12465), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12465), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12465), + [anon_sym_BSLASHtextcite] = ACTIONS(12465), + [anon_sym_BSLASHTextcite] = ACTIONS(12465), + [anon_sym_BSLASHsmartcite] = ACTIONS(12465), + [anon_sym_BSLASHSmartcite] = ACTIONS(12465), + [anon_sym_BSLASHsupercite] = ACTIONS(12465), + [anon_sym_BSLASHautocite] = ACTIONS(12465), + [anon_sym_BSLASHAutocite] = ACTIONS(12465), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHvolcite] = ACTIONS(12465), + [anon_sym_BSLASHVolcite] = ACTIONS(12465), + [anon_sym_BSLASHpvolcite] = ACTIONS(12465), + [anon_sym_BSLASHPvolcite] = ACTIONS(12465), + [anon_sym_BSLASHfvolcite] = ACTIONS(12465), + [anon_sym_BSLASHftvolcite] = ACTIONS(12465), + [anon_sym_BSLASHsvolcite] = ACTIONS(12465), + [anon_sym_BSLASHSvolcite] = ACTIONS(12465), + [anon_sym_BSLASHtvolcite] = ACTIONS(12465), + [anon_sym_BSLASHTvolcite] = ACTIONS(12465), + [anon_sym_BSLASHavolcite] = ACTIONS(12465), + [anon_sym_BSLASHAvolcite] = ACTIONS(12465), + [anon_sym_BSLASHnotecite] = ACTIONS(12465), + [anon_sym_BSLASHpnotecite] = ACTIONS(12465), + [anon_sym_BSLASHPnotecite] = ACTIONS(12465), + [anon_sym_BSLASHfnotecite] = ACTIONS(12465), + [anon_sym_BSLASHusepackage] = ACTIONS(12465), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12465), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12465), + [anon_sym_BSLASHinclude] = ACTIONS(12465), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12465), + [anon_sym_BSLASHinput] = ACTIONS(12465), + [anon_sym_BSLASHsubfile] = ACTIONS(12465), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12465), + [anon_sym_BSLASHbibliography] = ACTIONS(12465), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12465), + [anon_sym_BSLASHincludesvg] = ACTIONS(12465), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12465), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12465), + [anon_sym_BSLASHimport] = ACTIONS(12465), + [anon_sym_BSLASHsubimport] = ACTIONS(12465), + [anon_sym_BSLASHinputfrom] = ACTIONS(12465), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12465), + [anon_sym_BSLASHincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHlabel] = ACTIONS(12465), + [anon_sym_BSLASHref] = ACTIONS(12465), + [anon_sym_BSLASHvref] = ACTIONS(12465), + [anon_sym_BSLASHVref] = ACTIONS(12465), + [anon_sym_BSLASHautoref] = ACTIONS(12465), + [anon_sym_BSLASHpageref] = ACTIONS(12465), + [anon_sym_BSLASHcref] = ACTIONS(12465), + [anon_sym_BSLASHCref] = ACTIONS(12465), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnameCref] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHlabelcref] = ACTIONS(12465), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12465), + [anon_sym_BSLASHeqref] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange] = ACTIONS(12465), + [anon_sym_BSLASHCrefrange] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewlabel] = ACTIONS(12465), + [anon_sym_BSLASHnewcommand] = ACTIONS(12465), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12465), + [anon_sym_BSLASHgls] = ACTIONS(12465), + [anon_sym_BSLASHGls] = ACTIONS(12465), + [anon_sym_BSLASHGLS] = ACTIONS(12465), + [anon_sym_BSLASHglspl] = ACTIONS(12465), + [anon_sym_BSLASHGlspl] = ACTIONS(12465), + [anon_sym_BSLASHGLSpl] = ACTIONS(12465), + [anon_sym_BSLASHglsdisp] = ACTIONS(12465), + [anon_sym_BSLASHglslink] = ACTIONS(12465), + [anon_sym_BSLASHglstext] = ACTIONS(12465), + [anon_sym_BSLASHGlstext] = ACTIONS(12465), + [anon_sym_BSLASHGLStext] = ACTIONS(12465), + [anon_sym_BSLASHglsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12465), + [anon_sym_BSLASHglsplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSplural] = ACTIONS(12465), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHglsname] = ACTIONS(12465), + [anon_sym_BSLASHGlsname] = ACTIONS(12465), + [anon_sym_BSLASHGLSname] = ACTIONS(12465), + [anon_sym_BSLASHglssymbol] = ACTIONS(12465), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12465), + [anon_sym_BSLASHglsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12465), + [anon_sym_BSLASHglsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12465), + [anon_sym_BSLASHglsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12465), + [anon_sym_BSLASHglsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12465), + [anon_sym_BSLASHglsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12465), + [anon_sym_BSLASHnewacronym] = ACTIONS(12465), + [anon_sym_BSLASHacrshort] = ACTIONS(12465), + [anon_sym_BSLASHAcrshort] = ACTIONS(12465), + [anon_sym_BSLASHACRshort] = ACTIONS(12465), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12465), + [anon_sym_BSLASHacrlong] = ACTIONS(12465), + [anon_sym_BSLASHAcrlong] = ACTIONS(12465), + [anon_sym_BSLASHACRlong] = ACTIONS(12465), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12465), + [anon_sym_BSLASHacrfull] = ACTIONS(12465), + [anon_sym_BSLASHAcrfull] = ACTIONS(12465), + [anon_sym_BSLASHACRfull] = ACTIONS(12465), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12465), + [anon_sym_BSLASHacs] = ACTIONS(12465), + [anon_sym_BSLASHAcs] = ACTIONS(12465), + [anon_sym_BSLASHacsp] = ACTIONS(12465), + [anon_sym_BSLASHAcsp] = ACTIONS(12465), + [anon_sym_BSLASHacl] = ACTIONS(12465), + [anon_sym_BSLASHAcl] = ACTIONS(12465), + [anon_sym_BSLASHaclp] = ACTIONS(12465), + [anon_sym_BSLASHAclp] = ACTIONS(12465), + [anon_sym_BSLASHacf] = ACTIONS(12465), + [anon_sym_BSLASHAcf] = ACTIONS(12465), + [anon_sym_BSLASHacfp] = ACTIONS(12465), + [anon_sym_BSLASHAcfp] = ACTIONS(12465), + [anon_sym_BSLASHac] = ACTIONS(12465), + [anon_sym_BSLASHAc] = ACTIONS(12465), + [anon_sym_BSLASHacp] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12465), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12465), + [anon_sym_BSLASHcolor] = ACTIONS(12465), + [anon_sym_BSLASHcolorbox] = ACTIONS(12465), + [anon_sym_BSLASHtextcolor] = ACTIONS(12465), + [anon_sym_BSLASHpagecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12465), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12465), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12465), + }, + [1807] = { + [sym_generic_command_name] = ACTIONS(12469), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12469), + [anon_sym_LBRACK] = ACTIONS(12467), + [anon_sym_RBRACK] = ACTIONS(12467), + [anon_sym_LBRACE] = ACTIONS(12467), + [anon_sym_RBRACE] = ACTIONS(12467), + [anon_sym_LPAREN] = ACTIONS(12467), + [anon_sym_COMMA] = ACTIONS(12467), + [anon_sym_EQ] = ACTIONS(12467), + [sym_word] = ACTIONS(12467), + [sym_param] = ACTIONS(12467), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12467), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12467), + [anon_sym_DOLLAR] = ACTIONS(12469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12467), + [anon_sym_BSLASHbegin] = ACTIONS(12469), + [anon_sym_BSLASHcaption] = ACTIONS(12469), + [anon_sym_BSLASHcite] = ACTIONS(12469), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCite] = ACTIONS(12469), + [anon_sym_BSLASHnocite] = ACTIONS(12469), + [anon_sym_BSLASHcitet] = ACTIONS(12469), + [anon_sym_BSLASHcitep] = ACTIONS(12469), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteauthor] = ACTIONS(12469), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12469), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitetitle] = ACTIONS(12469), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteyear] = ACTIONS(12469), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitedate] = ACTIONS(12469), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteurl] = ACTIONS(12469), + [anon_sym_BSLASHfullcite] = ACTIONS(12469), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12469), + [anon_sym_BSLASHcitealt] = ACTIONS(12469), + [anon_sym_BSLASHcitealp] = ACTIONS(12469), + [anon_sym_BSLASHcitetext] = ACTIONS(12469), + [anon_sym_BSLASHparencite] = ACTIONS(12469), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHParencite] = ACTIONS(12469), + [anon_sym_BSLASHfootcite] = ACTIONS(12469), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12469), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12469), + [anon_sym_BSLASHtextcite] = ACTIONS(12469), + [anon_sym_BSLASHTextcite] = ACTIONS(12469), + [anon_sym_BSLASHsmartcite] = ACTIONS(12469), + [anon_sym_BSLASHSmartcite] = ACTIONS(12469), + [anon_sym_BSLASHsupercite] = ACTIONS(12469), + [anon_sym_BSLASHautocite] = ACTIONS(12469), + [anon_sym_BSLASHAutocite] = ACTIONS(12469), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHvolcite] = ACTIONS(12469), + [anon_sym_BSLASHVolcite] = ACTIONS(12469), + [anon_sym_BSLASHpvolcite] = ACTIONS(12469), + [anon_sym_BSLASHPvolcite] = ACTIONS(12469), + [anon_sym_BSLASHfvolcite] = ACTIONS(12469), + [anon_sym_BSLASHftvolcite] = ACTIONS(12469), + [anon_sym_BSLASHsvolcite] = ACTIONS(12469), + [anon_sym_BSLASHSvolcite] = ACTIONS(12469), + [anon_sym_BSLASHtvolcite] = ACTIONS(12469), + [anon_sym_BSLASHTvolcite] = ACTIONS(12469), + [anon_sym_BSLASHavolcite] = ACTIONS(12469), + [anon_sym_BSLASHAvolcite] = ACTIONS(12469), + [anon_sym_BSLASHnotecite] = ACTIONS(12469), + [anon_sym_BSLASHpnotecite] = ACTIONS(12469), + [anon_sym_BSLASHPnotecite] = ACTIONS(12469), + [anon_sym_BSLASHfnotecite] = ACTIONS(12469), + [anon_sym_BSLASHusepackage] = ACTIONS(12469), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12469), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12469), + [anon_sym_BSLASHinclude] = ACTIONS(12469), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12469), + [anon_sym_BSLASHinput] = ACTIONS(12469), + [anon_sym_BSLASHsubfile] = ACTIONS(12469), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12469), + [anon_sym_BSLASHbibliography] = ACTIONS(12469), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12469), + [anon_sym_BSLASHincludesvg] = ACTIONS(12469), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12469), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12469), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12469), + [anon_sym_BSLASHimport] = ACTIONS(12469), + [anon_sym_BSLASHsubimport] = ACTIONS(12469), + [anon_sym_BSLASHinputfrom] = ACTIONS(12469), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12469), + [anon_sym_BSLASHincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHlabel] = ACTIONS(12469), + [anon_sym_BSLASHref] = ACTIONS(12469), + [anon_sym_BSLASHvref] = ACTIONS(12469), + [anon_sym_BSLASHVref] = ACTIONS(12469), + [anon_sym_BSLASHautoref] = ACTIONS(12469), + [anon_sym_BSLASHpageref] = ACTIONS(12469), + [anon_sym_BSLASHcref] = ACTIONS(12469), + [anon_sym_BSLASHCref] = ACTIONS(12469), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnameCref] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHlabelcref] = ACTIONS(12469), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12469), + [anon_sym_BSLASHeqref] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange] = ACTIONS(12469), + [anon_sym_BSLASHCrefrange] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewlabel] = ACTIONS(12469), + [anon_sym_BSLASHnewcommand] = ACTIONS(12469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12469), + [anon_sym_BSLASHgls] = ACTIONS(12469), + [anon_sym_BSLASHGls] = ACTIONS(12469), + [anon_sym_BSLASHGLS] = ACTIONS(12469), + [anon_sym_BSLASHglspl] = ACTIONS(12469), + [anon_sym_BSLASHGlspl] = ACTIONS(12469), + [anon_sym_BSLASHGLSpl] = ACTIONS(12469), + [anon_sym_BSLASHglsdisp] = ACTIONS(12469), + [anon_sym_BSLASHglslink] = ACTIONS(12469), + [anon_sym_BSLASHglstext] = ACTIONS(12469), + [anon_sym_BSLASHGlstext] = ACTIONS(12469), + [anon_sym_BSLASHGLStext] = ACTIONS(12469), + [anon_sym_BSLASHglsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12469), + [anon_sym_BSLASHglsplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSplural] = ACTIONS(12469), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHglsname] = ACTIONS(12469), + [anon_sym_BSLASHGlsname] = ACTIONS(12469), + [anon_sym_BSLASHGLSname] = ACTIONS(12469), + [anon_sym_BSLASHglssymbol] = ACTIONS(12469), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12469), + [anon_sym_BSLASHglsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12469), + [anon_sym_BSLASHglsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12469), + [anon_sym_BSLASHglsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12469), + [anon_sym_BSLASHglsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12469), + [anon_sym_BSLASHglsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12469), + [anon_sym_BSLASHnewacronym] = ACTIONS(12469), + [anon_sym_BSLASHacrshort] = ACTIONS(12469), + [anon_sym_BSLASHAcrshort] = ACTIONS(12469), + [anon_sym_BSLASHACRshort] = ACTIONS(12469), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12469), + [anon_sym_BSLASHacrlong] = ACTIONS(12469), + [anon_sym_BSLASHAcrlong] = ACTIONS(12469), + [anon_sym_BSLASHACRlong] = ACTIONS(12469), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12469), + [anon_sym_BSLASHacrfull] = ACTIONS(12469), + [anon_sym_BSLASHAcrfull] = ACTIONS(12469), + [anon_sym_BSLASHACRfull] = ACTIONS(12469), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12469), + [anon_sym_BSLASHacs] = ACTIONS(12469), + [anon_sym_BSLASHAcs] = ACTIONS(12469), + [anon_sym_BSLASHacsp] = ACTIONS(12469), + [anon_sym_BSLASHAcsp] = ACTIONS(12469), + [anon_sym_BSLASHacl] = ACTIONS(12469), + [anon_sym_BSLASHAcl] = ACTIONS(12469), + [anon_sym_BSLASHaclp] = ACTIONS(12469), + [anon_sym_BSLASHAclp] = ACTIONS(12469), + [anon_sym_BSLASHacf] = ACTIONS(12469), + [anon_sym_BSLASHAcf] = ACTIONS(12469), + [anon_sym_BSLASHacfp] = ACTIONS(12469), + [anon_sym_BSLASHAcfp] = ACTIONS(12469), + [anon_sym_BSLASHac] = ACTIONS(12469), + [anon_sym_BSLASHAc] = ACTIONS(12469), + [anon_sym_BSLASHacp] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12469), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12469), + [anon_sym_BSLASHcolor] = ACTIONS(12469), + [anon_sym_BSLASHcolorbox] = ACTIONS(12469), + [anon_sym_BSLASHtextcolor] = ACTIONS(12469), + [anon_sym_BSLASHpagecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12469), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12469), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12469), + }, + [1808] = { + [sym_generic_command_name] = ACTIONS(12477), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12477), + [anon_sym_LBRACK] = ACTIONS(12475), + [anon_sym_RBRACK] = ACTIONS(12475), + [anon_sym_LBRACE] = ACTIONS(12475), + [anon_sym_RBRACE] = ACTIONS(12475), + [anon_sym_LPAREN] = ACTIONS(12475), + [anon_sym_COMMA] = ACTIONS(12475), + [anon_sym_EQ] = ACTIONS(12475), + [sym_word] = ACTIONS(12475), + [sym_param] = ACTIONS(12475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12475), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12475), + [anon_sym_DOLLAR] = ACTIONS(12477), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12475), + [anon_sym_BSLASHbegin] = ACTIONS(12477), + [anon_sym_BSLASHcaption] = ACTIONS(12477), + [anon_sym_BSLASHcite] = ACTIONS(12477), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCite] = ACTIONS(12477), + [anon_sym_BSLASHnocite] = ACTIONS(12477), + [anon_sym_BSLASHcitet] = ACTIONS(12477), + [anon_sym_BSLASHcitep] = ACTIONS(12477), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteauthor] = ACTIONS(12477), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12477), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitetitle] = ACTIONS(12477), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteyear] = ACTIONS(12477), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitedate] = ACTIONS(12477), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteurl] = ACTIONS(12477), + [anon_sym_BSLASHfullcite] = ACTIONS(12477), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12477), + [anon_sym_BSLASHcitealt] = ACTIONS(12477), + [anon_sym_BSLASHcitealp] = ACTIONS(12477), + [anon_sym_BSLASHcitetext] = ACTIONS(12477), + [anon_sym_BSLASHparencite] = ACTIONS(12477), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHParencite] = ACTIONS(12477), + [anon_sym_BSLASHfootcite] = ACTIONS(12477), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12477), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12477), + [anon_sym_BSLASHtextcite] = ACTIONS(12477), + [anon_sym_BSLASHTextcite] = ACTIONS(12477), + [anon_sym_BSLASHsmartcite] = ACTIONS(12477), + [anon_sym_BSLASHSmartcite] = ACTIONS(12477), + [anon_sym_BSLASHsupercite] = ACTIONS(12477), + [anon_sym_BSLASHautocite] = ACTIONS(12477), + [anon_sym_BSLASHAutocite] = ACTIONS(12477), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHvolcite] = ACTIONS(12477), + [anon_sym_BSLASHVolcite] = ACTIONS(12477), + [anon_sym_BSLASHpvolcite] = ACTIONS(12477), + [anon_sym_BSLASHPvolcite] = ACTIONS(12477), + [anon_sym_BSLASHfvolcite] = ACTIONS(12477), + [anon_sym_BSLASHftvolcite] = ACTIONS(12477), + [anon_sym_BSLASHsvolcite] = ACTIONS(12477), + [anon_sym_BSLASHSvolcite] = ACTIONS(12477), + [anon_sym_BSLASHtvolcite] = ACTIONS(12477), + [anon_sym_BSLASHTvolcite] = ACTIONS(12477), + [anon_sym_BSLASHavolcite] = ACTIONS(12477), + [anon_sym_BSLASHAvolcite] = ACTIONS(12477), + [anon_sym_BSLASHnotecite] = ACTIONS(12477), + [anon_sym_BSLASHpnotecite] = ACTIONS(12477), + [anon_sym_BSLASHPnotecite] = ACTIONS(12477), + [anon_sym_BSLASHfnotecite] = ACTIONS(12477), + [anon_sym_BSLASHusepackage] = ACTIONS(12477), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12477), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12477), + [anon_sym_BSLASHinclude] = ACTIONS(12477), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12477), + [anon_sym_BSLASHinput] = ACTIONS(12477), + [anon_sym_BSLASHsubfile] = ACTIONS(12477), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12477), + [anon_sym_BSLASHbibliography] = ACTIONS(12477), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12477), + [anon_sym_BSLASHincludesvg] = ACTIONS(12477), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12477), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12477), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12477), + [anon_sym_BSLASHimport] = ACTIONS(12477), + [anon_sym_BSLASHsubimport] = ACTIONS(12477), + [anon_sym_BSLASHinputfrom] = ACTIONS(12477), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12477), + [anon_sym_BSLASHincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHlabel] = ACTIONS(12477), + [anon_sym_BSLASHref] = ACTIONS(12477), + [anon_sym_BSLASHvref] = ACTIONS(12477), + [anon_sym_BSLASHVref] = ACTIONS(12477), + [anon_sym_BSLASHautoref] = ACTIONS(12477), + [anon_sym_BSLASHpageref] = ACTIONS(12477), + [anon_sym_BSLASHcref] = ACTIONS(12477), + [anon_sym_BSLASHCref] = ACTIONS(12477), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnameCref] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHlabelcref] = ACTIONS(12477), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12477), + [anon_sym_BSLASHeqref] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange] = ACTIONS(12477), + [anon_sym_BSLASHCrefrange] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewlabel] = ACTIONS(12477), + [anon_sym_BSLASHnewcommand] = ACTIONS(12477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12477), + [anon_sym_BSLASHgls] = ACTIONS(12477), + [anon_sym_BSLASHGls] = ACTIONS(12477), + [anon_sym_BSLASHGLS] = ACTIONS(12477), + [anon_sym_BSLASHglspl] = ACTIONS(12477), + [anon_sym_BSLASHGlspl] = ACTIONS(12477), + [anon_sym_BSLASHGLSpl] = ACTIONS(12477), + [anon_sym_BSLASHglsdisp] = ACTIONS(12477), + [anon_sym_BSLASHglslink] = ACTIONS(12477), + [anon_sym_BSLASHglstext] = ACTIONS(12477), + [anon_sym_BSLASHGlstext] = ACTIONS(12477), + [anon_sym_BSLASHGLStext] = ACTIONS(12477), + [anon_sym_BSLASHglsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12477), + [anon_sym_BSLASHglsplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSplural] = ACTIONS(12477), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHglsname] = ACTIONS(12477), + [anon_sym_BSLASHGlsname] = ACTIONS(12477), + [anon_sym_BSLASHGLSname] = ACTIONS(12477), + [anon_sym_BSLASHglssymbol] = ACTIONS(12477), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12477), + [anon_sym_BSLASHglsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12477), + [anon_sym_BSLASHglsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12477), + [anon_sym_BSLASHglsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12477), + [anon_sym_BSLASHglsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12477), + [anon_sym_BSLASHglsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12477), + [anon_sym_BSLASHnewacronym] = ACTIONS(12477), + [anon_sym_BSLASHacrshort] = ACTIONS(12477), + [anon_sym_BSLASHAcrshort] = ACTIONS(12477), + [anon_sym_BSLASHACRshort] = ACTIONS(12477), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12477), + [anon_sym_BSLASHacrlong] = ACTIONS(12477), + [anon_sym_BSLASHAcrlong] = ACTIONS(12477), + [anon_sym_BSLASHACRlong] = ACTIONS(12477), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12477), + [anon_sym_BSLASHacrfull] = ACTIONS(12477), + [anon_sym_BSLASHAcrfull] = ACTIONS(12477), + [anon_sym_BSLASHACRfull] = ACTIONS(12477), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12477), + [anon_sym_BSLASHacs] = ACTIONS(12477), + [anon_sym_BSLASHAcs] = ACTIONS(12477), + [anon_sym_BSLASHacsp] = ACTIONS(12477), + [anon_sym_BSLASHAcsp] = ACTIONS(12477), + [anon_sym_BSLASHacl] = ACTIONS(12477), + [anon_sym_BSLASHAcl] = ACTIONS(12477), + [anon_sym_BSLASHaclp] = ACTIONS(12477), + [anon_sym_BSLASHAclp] = ACTIONS(12477), + [anon_sym_BSLASHacf] = ACTIONS(12477), + [anon_sym_BSLASHAcf] = ACTIONS(12477), + [anon_sym_BSLASHacfp] = ACTIONS(12477), + [anon_sym_BSLASHAcfp] = ACTIONS(12477), + [anon_sym_BSLASHac] = ACTIONS(12477), + [anon_sym_BSLASHAc] = ACTIONS(12477), + [anon_sym_BSLASHacp] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12477), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12477), + [anon_sym_BSLASHcolor] = ACTIONS(12477), + [anon_sym_BSLASHcolorbox] = ACTIONS(12477), + [anon_sym_BSLASHtextcolor] = ACTIONS(12477), + [anon_sym_BSLASHpagecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12477), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12477), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12477), + }, + [1809] = { + [sym_generic_command_name] = ACTIONS(12481), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12481), + [anon_sym_LBRACK] = ACTIONS(12479), + [anon_sym_RBRACK] = ACTIONS(12479), + [anon_sym_LBRACE] = ACTIONS(12479), + [anon_sym_RBRACE] = ACTIONS(12479), + [anon_sym_LPAREN] = ACTIONS(12479), + [anon_sym_COMMA] = ACTIONS(12479), + [anon_sym_EQ] = ACTIONS(12479), + [sym_word] = ACTIONS(12479), + [sym_param] = ACTIONS(12479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12479), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12479), + [anon_sym_DOLLAR] = ACTIONS(12481), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12479), + [anon_sym_BSLASHbegin] = ACTIONS(12481), + [anon_sym_BSLASHcaption] = ACTIONS(12481), + [anon_sym_BSLASHcite] = ACTIONS(12481), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCite] = ACTIONS(12481), + [anon_sym_BSLASHnocite] = ACTIONS(12481), + [anon_sym_BSLASHcitet] = ACTIONS(12481), + [anon_sym_BSLASHcitep] = ACTIONS(12481), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteauthor] = ACTIONS(12481), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12481), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitetitle] = ACTIONS(12481), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteyear] = ACTIONS(12481), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitedate] = ACTIONS(12481), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteurl] = ACTIONS(12481), + [anon_sym_BSLASHfullcite] = ACTIONS(12481), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12481), + [anon_sym_BSLASHcitealt] = ACTIONS(12481), + [anon_sym_BSLASHcitealp] = ACTIONS(12481), + [anon_sym_BSLASHcitetext] = ACTIONS(12481), + [anon_sym_BSLASHparencite] = ACTIONS(12481), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHParencite] = ACTIONS(12481), + [anon_sym_BSLASHfootcite] = ACTIONS(12481), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12481), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12481), + [anon_sym_BSLASHtextcite] = ACTIONS(12481), + [anon_sym_BSLASHTextcite] = ACTIONS(12481), + [anon_sym_BSLASHsmartcite] = ACTIONS(12481), + [anon_sym_BSLASHSmartcite] = ACTIONS(12481), + [anon_sym_BSLASHsupercite] = ACTIONS(12481), + [anon_sym_BSLASHautocite] = ACTIONS(12481), + [anon_sym_BSLASHAutocite] = ACTIONS(12481), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHvolcite] = ACTIONS(12481), + [anon_sym_BSLASHVolcite] = ACTIONS(12481), + [anon_sym_BSLASHpvolcite] = ACTIONS(12481), + [anon_sym_BSLASHPvolcite] = ACTIONS(12481), + [anon_sym_BSLASHfvolcite] = ACTIONS(12481), + [anon_sym_BSLASHftvolcite] = ACTIONS(12481), + [anon_sym_BSLASHsvolcite] = ACTIONS(12481), + [anon_sym_BSLASHSvolcite] = ACTIONS(12481), + [anon_sym_BSLASHtvolcite] = ACTIONS(12481), + [anon_sym_BSLASHTvolcite] = ACTIONS(12481), + [anon_sym_BSLASHavolcite] = ACTIONS(12481), + [anon_sym_BSLASHAvolcite] = ACTIONS(12481), + [anon_sym_BSLASHnotecite] = ACTIONS(12481), + [anon_sym_BSLASHpnotecite] = ACTIONS(12481), + [anon_sym_BSLASHPnotecite] = ACTIONS(12481), + [anon_sym_BSLASHfnotecite] = ACTIONS(12481), + [anon_sym_BSLASHusepackage] = ACTIONS(12481), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12481), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12481), + [anon_sym_BSLASHinclude] = ACTIONS(12481), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12481), + [anon_sym_BSLASHinput] = ACTIONS(12481), + [anon_sym_BSLASHsubfile] = ACTIONS(12481), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12481), + [anon_sym_BSLASHbibliography] = ACTIONS(12481), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12481), + [anon_sym_BSLASHincludesvg] = ACTIONS(12481), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12481), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12481), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12481), + [anon_sym_BSLASHimport] = ACTIONS(12481), + [anon_sym_BSLASHsubimport] = ACTIONS(12481), + [anon_sym_BSLASHinputfrom] = ACTIONS(12481), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12481), + [anon_sym_BSLASHincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHlabel] = ACTIONS(12481), + [anon_sym_BSLASHref] = ACTIONS(12481), + [anon_sym_BSLASHvref] = ACTIONS(12481), + [anon_sym_BSLASHVref] = ACTIONS(12481), + [anon_sym_BSLASHautoref] = ACTIONS(12481), + [anon_sym_BSLASHpageref] = ACTIONS(12481), + [anon_sym_BSLASHcref] = ACTIONS(12481), + [anon_sym_BSLASHCref] = ACTIONS(12481), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnameCref] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHlabelcref] = ACTIONS(12481), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12481), + [anon_sym_BSLASHeqref] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange] = ACTIONS(12481), + [anon_sym_BSLASHCrefrange] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewlabel] = ACTIONS(12481), + [anon_sym_BSLASHnewcommand] = ACTIONS(12481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12481), + [anon_sym_BSLASHgls] = ACTIONS(12481), + [anon_sym_BSLASHGls] = ACTIONS(12481), + [anon_sym_BSLASHGLS] = ACTIONS(12481), + [anon_sym_BSLASHglspl] = ACTIONS(12481), + [anon_sym_BSLASHGlspl] = ACTIONS(12481), + [anon_sym_BSLASHGLSpl] = ACTIONS(12481), + [anon_sym_BSLASHglsdisp] = ACTIONS(12481), + [anon_sym_BSLASHglslink] = ACTIONS(12481), + [anon_sym_BSLASHglstext] = ACTIONS(12481), + [anon_sym_BSLASHGlstext] = ACTIONS(12481), + [anon_sym_BSLASHGLStext] = ACTIONS(12481), + [anon_sym_BSLASHglsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12481), + [anon_sym_BSLASHglsplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSplural] = ACTIONS(12481), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHglsname] = ACTIONS(12481), + [anon_sym_BSLASHGlsname] = ACTIONS(12481), + [anon_sym_BSLASHGLSname] = ACTIONS(12481), + [anon_sym_BSLASHglssymbol] = ACTIONS(12481), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12481), + [anon_sym_BSLASHglsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12481), + [anon_sym_BSLASHglsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12481), + [anon_sym_BSLASHglsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12481), + [anon_sym_BSLASHglsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12481), + [anon_sym_BSLASHglsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12481), + [anon_sym_BSLASHnewacronym] = ACTIONS(12481), + [anon_sym_BSLASHacrshort] = ACTIONS(12481), + [anon_sym_BSLASHAcrshort] = ACTIONS(12481), + [anon_sym_BSLASHACRshort] = ACTIONS(12481), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12481), + [anon_sym_BSLASHacrlong] = ACTIONS(12481), + [anon_sym_BSLASHAcrlong] = ACTIONS(12481), + [anon_sym_BSLASHACRlong] = ACTIONS(12481), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12481), + [anon_sym_BSLASHacrfull] = ACTIONS(12481), + [anon_sym_BSLASHAcrfull] = ACTIONS(12481), + [anon_sym_BSLASHACRfull] = ACTIONS(12481), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12481), + [anon_sym_BSLASHacs] = ACTIONS(12481), + [anon_sym_BSLASHAcs] = ACTIONS(12481), + [anon_sym_BSLASHacsp] = ACTIONS(12481), + [anon_sym_BSLASHAcsp] = ACTIONS(12481), + [anon_sym_BSLASHacl] = ACTIONS(12481), + [anon_sym_BSLASHAcl] = ACTIONS(12481), + [anon_sym_BSLASHaclp] = ACTIONS(12481), + [anon_sym_BSLASHAclp] = ACTIONS(12481), + [anon_sym_BSLASHacf] = ACTIONS(12481), + [anon_sym_BSLASHAcf] = ACTIONS(12481), + [anon_sym_BSLASHacfp] = ACTIONS(12481), + [anon_sym_BSLASHAcfp] = ACTIONS(12481), + [anon_sym_BSLASHac] = ACTIONS(12481), + [anon_sym_BSLASHAc] = ACTIONS(12481), + [anon_sym_BSLASHacp] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12481), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12481), + [anon_sym_BSLASHcolor] = ACTIONS(12481), + [anon_sym_BSLASHcolorbox] = ACTIONS(12481), + [anon_sym_BSLASHtextcolor] = ACTIONS(12481), + [anon_sym_BSLASHpagecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12481), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12481), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12481), + }, + [1810] = { + [sym_generic_command_name] = ACTIONS(12493), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12493), + [anon_sym_LBRACK] = ACTIONS(12491), + [anon_sym_RBRACK] = ACTIONS(12491), + [anon_sym_LBRACE] = ACTIONS(12491), + [anon_sym_RBRACE] = ACTIONS(12491), + [anon_sym_LPAREN] = ACTIONS(12491), + [anon_sym_COMMA] = ACTIONS(12491), + [anon_sym_EQ] = ACTIONS(12491), + [sym_word] = ACTIONS(12491), + [sym_param] = ACTIONS(12491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12491), + [anon_sym_DOLLAR] = ACTIONS(12493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12491), + [anon_sym_BSLASHbegin] = ACTIONS(12493), + [anon_sym_BSLASHcaption] = ACTIONS(12493), + [anon_sym_BSLASHcite] = ACTIONS(12493), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCite] = ACTIONS(12493), + [anon_sym_BSLASHnocite] = ACTIONS(12493), + [anon_sym_BSLASHcitet] = ACTIONS(12493), + [anon_sym_BSLASHcitep] = ACTIONS(12493), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteauthor] = ACTIONS(12493), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12493), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitetitle] = ACTIONS(12493), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteyear] = ACTIONS(12493), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitedate] = ACTIONS(12493), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteurl] = ACTIONS(12493), + [anon_sym_BSLASHfullcite] = ACTIONS(12493), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12493), + [anon_sym_BSLASHcitealt] = ACTIONS(12493), + [anon_sym_BSLASHcitealp] = ACTIONS(12493), + [anon_sym_BSLASHcitetext] = ACTIONS(12493), + [anon_sym_BSLASHparencite] = ACTIONS(12493), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHParencite] = ACTIONS(12493), + [anon_sym_BSLASHfootcite] = ACTIONS(12493), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12493), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12493), + [anon_sym_BSLASHtextcite] = ACTIONS(12493), + [anon_sym_BSLASHTextcite] = ACTIONS(12493), + [anon_sym_BSLASHsmartcite] = ACTIONS(12493), + [anon_sym_BSLASHSmartcite] = ACTIONS(12493), + [anon_sym_BSLASHsupercite] = ACTIONS(12493), + [anon_sym_BSLASHautocite] = ACTIONS(12493), + [anon_sym_BSLASHAutocite] = ACTIONS(12493), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHvolcite] = ACTIONS(12493), + [anon_sym_BSLASHVolcite] = ACTIONS(12493), + [anon_sym_BSLASHpvolcite] = ACTIONS(12493), + [anon_sym_BSLASHPvolcite] = ACTIONS(12493), + [anon_sym_BSLASHfvolcite] = ACTIONS(12493), + [anon_sym_BSLASHftvolcite] = ACTIONS(12493), + [anon_sym_BSLASHsvolcite] = ACTIONS(12493), + [anon_sym_BSLASHSvolcite] = ACTIONS(12493), + [anon_sym_BSLASHtvolcite] = ACTIONS(12493), + [anon_sym_BSLASHTvolcite] = ACTIONS(12493), + [anon_sym_BSLASHavolcite] = ACTIONS(12493), + [anon_sym_BSLASHAvolcite] = ACTIONS(12493), + [anon_sym_BSLASHnotecite] = ACTIONS(12493), + [anon_sym_BSLASHpnotecite] = ACTIONS(12493), + [anon_sym_BSLASHPnotecite] = ACTIONS(12493), + [anon_sym_BSLASHfnotecite] = ACTIONS(12493), + [anon_sym_BSLASHusepackage] = ACTIONS(12493), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12493), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12493), + [anon_sym_BSLASHinclude] = ACTIONS(12493), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12493), + [anon_sym_BSLASHinput] = ACTIONS(12493), + [anon_sym_BSLASHsubfile] = ACTIONS(12493), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12493), + [anon_sym_BSLASHbibliography] = ACTIONS(12493), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12493), + [anon_sym_BSLASHincludesvg] = ACTIONS(12493), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12493), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12493), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12493), + [anon_sym_BSLASHimport] = ACTIONS(12493), + [anon_sym_BSLASHsubimport] = ACTIONS(12493), + [anon_sym_BSLASHinputfrom] = ACTIONS(12493), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12493), + [anon_sym_BSLASHincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHlabel] = ACTIONS(12493), + [anon_sym_BSLASHref] = ACTIONS(12493), + [anon_sym_BSLASHvref] = ACTIONS(12493), + [anon_sym_BSLASHVref] = ACTIONS(12493), + [anon_sym_BSLASHautoref] = ACTIONS(12493), + [anon_sym_BSLASHpageref] = ACTIONS(12493), + [anon_sym_BSLASHcref] = ACTIONS(12493), + [anon_sym_BSLASHCref] = ACTIONS(12493), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnameCref] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHlabelcref] = ACTIONS(12493), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12493), + [anon_sym_BSLASHeqref] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange] = ACTIONS(12493), + [anon_sym_BSLASHCrefrange] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewlabel] = ACTIONS(12493), + [anon_sym_BSLASHnewcommand] = ACTIONS(12493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12493), + [anon_sym_BSLASHgls] = ACTIONS(12493), + [anon_sym_BSLASHGls] = ACTIONS(12493), + [anon_sym_BSLASHGLS] = ACTIONS(12493), + [anon_sym_BSLASHglspl] = ACTIONS(12493), + [anon_sym_BSLASHGlspl] = ACTIONS(12493), + [anon_sym_BSLASHGLSpl] = ACTIONS(12493), + [anon_sym_BSLASHglsdisp] = ACTIONS(12493), + [anon_sym_BSLASHglslink] = ACTIONS(12493), + [anon_sym_BSLASHglstext] = ACTIONS(12493), + [anon_sym_BSLASHGlstext] = ACTIONS(12493), + [anon_sym_BSLASHGLStext] = ACTIONS(12493), + [anon_sym_BSLASHglsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12493), + [anon_sym_BSLASHglsplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSplural] = ACTIONS(12493), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHglsname] = ACTIONS(12493), + [anon_sym_BSLASHGlsname] = ACTIONS(12493), + [anon_sym_BSLASHGLSname] = ACTIONS(12493), + [anon_sym_BSLASHglssymbol] = ACTIONS(12493), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12493), + [anon_sym_BSLASHglsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12493), + [anon_sym_BSLASHglsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12493), + [anon_sym_BSLASHglsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12493), + [anon_sym_BSLASHglsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12493), + [anon_sym_BSLASHglsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12493), + [anon_sym_BSLASHnewacronym] = ACTIONS(12493), + [anon_sym_BSLASHacrshort] = ACTIONS(12493), + [anon_sym_BSLASHAcrshort] = ACTIONS(12493), + [anon_sym_BSLASHACRshort] = ACTIONS(12493), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12493), + [anon_sym_BSLASHacrlong] = ACTIONS(12493), + [anon_sym_BSLASHAcrlong] = ACTIONS(12493), + [anon_sym_BSLASHACRlong] = ACTIONS(12493), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12493), + [anon_sym_BSLASHacrfull] = ACTIONS(12493), + [anon_sym_BSLASHAcrfull] = ACTIONS(12493), + [anon_sym_BSLASHACRfull] = ACTIONS(12493), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12493), + [anon_sym_BSLASHacs] = ACTIONS(12493), + [anon_sym_BSLASHAcs] = ACTIONS(12493), + [anon_sym_BSLASHacsp] = ACTIONS(12493), + [anon_sym_BSLASHAcsp] = ACTIONS(12493), + [anon_sym_BSLASHacl] = ACTIONS(12493), + [anon_sym_BSLASHAcl] = ACTIONS(12493), + [anon_sym_BSLASHaclp] = ACTIONS(12493), + [anon_sym_BSLASHAclp] = ACTIONS(12493), + [anon_sym_BSLASHacf] = ACTIONS(12493), + [anon_sym_BSLASHAcf] = ACTIONS(12493), + [anon_sym_BSLASHacfp] = ACTIONS(12493), + [anon_sym_BSLASHAcfp] = ACTIONS(12493), + [anon_sym_BSLASHac] = ACTIONS(12493), + [anon_sym_BSLASHAc] = ACTIONS(12493), + [anon_sym_BSLASHacp] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12493), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12493), + [anon_sym_BSLASHcolor] = ACTIONS(12493), + [anon_sym_BSLASHcolorbox] = ACTIONS(12493), + [anon_sym_BSLASHtextcolor] = ACTIONS(12493), + [anon_sym_BSLASHpagecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12493), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12493), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12493), + }, + [1811] = { + [sym_generic_command_name] = ACTIONS(12181), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12181), + [anon_sym_LBRACK] = ACTIONS(12179), + [anon_sym_RBRACK] = ACTIONS(12179), + [anon_sym_LBRACE] = ACTIONS(12179), + [anon_sym_RBRACE] = ACTIONS(12179), + [anon_sym_LPAREN] = ACTIONS(12179), + [anon_sym_COMMA] = ACTIONS(12179), + [anon_sym_EQ] = ACTIONS(12179), + [sym_word] = ACTIONS(12179), + [sym_param] = ACTIONS(12179), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12179), + [anon_sym_DOLLAR] = ACTIONS(12181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12179), + [anon_sym_BSLASHbegin] = ACTIONS(12181), + [anon_sym_BSLASHcaption] = ACTIONS(12181), + [anon_sym_BSLASHcite] = ACTIONS(12181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCite] = ACTIONS(12181), + [anon_sym_BSLASHnocite] = ACTIONS(12181), + [anon_sym_BSLASHcitet] = ACTIONS(12181), + [anon_sym_BSLASHcitep] = ACTIONS(12181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteauthor] = ACTIONS(12181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitetitle] = ACTIONS(12181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteyear] = ACTIONS(12181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitedate] = ACTIONS(12181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteurl] = ACTIONS(12181), + [anon_sym_BSLASHfullcite] = ACTIONS(12181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12181), + [anon_sym_BSLASHcitealt] = ACTIONS(12181), + [anon_sym_BSLASHcitealp] = ACTIONS(12181), + [anon_sym_BSLASHcitetext] = ACTIONS(12181), + [anon_sym_BSLASHparencite] = ACTIONS(12181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHParencite] = ACTIONS(12181), + [anon_sym_BSLASHfootcite] = ACTIONS(12181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12181), + [anon_sym_BSLASHtextcite] = ACTIONS(12181), + [anon_sym_BSLASHTextcite] = ACTIONS(12181), + [anon_sym_BSLASHsmartcite] = ACTIONS(12181), + [anon_sym_BSLASHSmartcite] = ACTIONS(12181), + [anon_sym_BSLASHsupercite] = ACTIONS(12181), + [anon_sym_BSLASHautocite] = ACTIONS(12181), + [anon_sym_BSLASHAutocite] = ACTIONS(12181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHvolcite] = ACTIONS(12181), + [anon_sym_BSLASHVolcite] = ACTIONS(12181), + [anon_sym_BSLASHpvolcite] = ACTIONS(12181), + [anon_sym_BSLASHPvolcite] = ACTIONS(12181), + [anon_sym_BSLASHfvolcite] = ACTIONS(12181), + [anon_sym_BSLASHftvolcite] = ACTIONS(12181), + [anon_sym_BSLASHsvolcite] = ACTIONS(12181), + [anon_sym_BSLASHSvolcite] = ACTIONS(12181), + [anon_sym_BSLASHtvolcite] = ACTIONS(12181), + [anon_sym_BSLASHTvolcite] = ACTIONS(12181), + [anon_sym_BSLASHavolcite] = ACTIONS(12181), + [anon_sym_BSLASHAvolcite] = ACTIONS(12181), + [anon_sym_BSLASHnotecite] = ACTIONS(12181), + [anon_sym_BSLASHpnotecite] = ACTIONS(12181), + [anon_sym_BSLASHPnotecite] = ACTIONS(12181), + [anon_sym_BSLASHfnotecite] = ACTIONS(12181), + [anon_sym_BSLASHusepackage] = ACTIONS(12181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12181), + [anon_sym_BSLASHinclude] = ACTIONS(12181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12181), + [anon_sym_BSLASHinput] = ACTIONS(12181), + [anon_sym_BSLASHsubfile] = ACTIONS(12181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12181), + [anon_sym_BSLASHbibliography] = ACTIONS(12181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12181), + [anon_sym_BSLASHincludesvg] = ACTIONS(12181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12181), + [anon_sym_BSLASHimport] = ACTIONS(12181), + [anon_sym_BSLASHsubimport] = ACTIONS(12181), + [anon_sym_BSLASHinputfrom] = ACTIONS(12181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12181), + [anon_sym_BSLASHincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHlabel] = ACTIONS(12181), + [anon_sym_BSLASHref] = ACTIONS(12181), + [anon_sym_BSLASHvref] = ACTIONS(12181), + [anon_sym_BSLASHVref] = ACTIONS(12181), + [anon_sym_BSLASHautoref] = ACTIONS(12181), + [anon_sym_BSLASHpageref] = ACTIONS(12181), + [anon_sym_BSLASHcref] = ACTIONS(12181), + [anon_sym_BSLASHCref] = ACTIONS(12181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnameCref] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHlabelcref] = ACTIONS(12181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12181), + [anon_sym_BSLASHeqref] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange] = ACTIONS(12181), + [anon_sym_BSLASHCrefrange] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewlabel] = ACTIONS(12181), + [anon_sym_BSLASHnewcommand] = ACTIONS(12181), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12181), + [anon_sym_BSLASHgls] = ACTIONS(12181), + [anon_sym_BSLASHGls] = ACTIONS(12181), + [anon_sym_BSLASHGLS] = ACTIONS(12181), + [anon_sym_BSLASHglspl] = ACTIONS(12181), + [anon_sym_BSLASHGlspl] = ACTIONS(12181), + [anon_sym_BSLASHGLSpl] = ACTIONS(12181), + [anon_sym_BSLASHglsdisp] = ACTIONS(12181), + [anon_sym_BSLASHglslink] = ACTIONS(12181), + [anon_sym_BSLASHglstext] = ACTIONS(12181), + [anon_sym_BSLASHGlstext] = ACTIONS(12181), + [anon_sym_BSLASHGLStext] = ACTIONS(12181), + [anon_sym_BSLASHglsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12181), + [anon_sym_BSLASHglsplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSplural] = ACTIONS(12181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHglsname] = ACTIONS(12181), + [anon_sym_BSLASHGlsname] = ACTIONS(12181), + [anon_sym_BSLASHGLSname] = ACTIONS(12181), + [anon_sym_BSLASHglssymbol] = ACTIONS(12181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12181), + [anon_sym_BSLASHglsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12181), + [anon_sym_BSLASHglsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12181), + [anon_sym_BSLASHglsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12181), + [anon_sym_BSLASHglsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12181), + [anon_sym_BSLASHglsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12181), + [anon_sym_BSLASHnewacronym] = ACTIONS(12181), + [anon_sym_BSLASHacrshort] = ACTIONS(12181), + [anon_sym_BSLASHAcrshort] = ACTIONS(12181), + [anon_sym_BSLASHACRshort] = ACTIONS(12181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12181), + [anon_sym_BSLASHacrlong] = ACTIONS(12181), + [anon_sym_BSLASHAcrlong] = ACTIONS(12181), + [anon_sym_BSLASHACRlong] = ACTIONS(12181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12181), + [anon_sym_BSLASHacrfull] = ACTIONS(12181), + [anon_sym_BSLASHAcrfull] = ACTIONS(12181), + [anon_sym_BSLASHACRfull] = ACTIONS(12181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12181), + [anon_sym_BSLASHacs] = ACTIONS(12181), + [anon_sym_BSLASHAcs] = ACTIONS(12181), + [anon_sym_BSLASHacsp] = ACTIONS(12181), + [anon_sym_BSLASHAcsp] = ACTIONS(12181), + [anon_sym_BSLASHacl] = ACTIONS(12181), + [anon_sym_BSLASHAcl] = ACTIONS(12181), + [anon_sym_BSLASHaclp] = ACTIONS(12181), + [anon_sym_BSLASHAclp] = ACTIONS(12181), + [anon_sym_BSLASHacf] = ACTIONS(12181), + [anon_sym_BSLASHAcf] = ACTIONS(12181), + [anon_sym_BSLASHacfp] = ACTIONS(12181), + [anon_sym_BSLASHAcfp] = ACTIONS(12181), + [anon_sym_BSLASHac] = ACTIONS(12181), + [anon_sym_BSLASHAc] = ACTIONS(12181), + [anon_sym_BSLASHacp] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12181), + [anon_sym_BSLASHcolor] = ACTIONS(12181), + [anon_sym_BSLASHcolorbox] = ACTIONS(12181), + [anon_sym_BSLASHtextcolor] = ACTIONS(12181), + [anon_sym_BSLASHpagecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12181), + }, + [1812] = { + [sym_generic_command_name] = ACTIONS(12497), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12497), + [anon_sym_LBRACK] = ACTIONS(12495), + [anon_sym_RBRACK] = ACTIONS(12495), + [anon_sym_LBRACE] = ACTIONS(12495), + [anon_sym_RBRACE] = ACTIONS(12495), + [anon_sym_LPAREN] = ACTIONS(12495), + [anon_sym_COMMA] = ACTIONS(12495), + [anon_sym_EQ] = ACTIONS(12495), + [sym_word] = ACTIONS(12495), + [sym_param] = ACTIONS(12495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12495), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12495), + [anon_sym_DOLLAR] = ACTIONS(12497), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12495), + [anon_sym_BSLASHbegin] = ACTIONS(12497), + [anon_sym_BSLASHcaption] = ACTIONS(12497), + [anon_sym_BSLASHcite] = ACTIONS(12497), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCite] = ACTIONS(12497), + [anon_sym_BSLASHnocite] = ACTIONS(12497), + [anon_sym_BSLASHcitet] = ACTIONS(12497), + [anon_sym_BSLASHcitep] = ACTIONS(12497), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteauthor] = ACTIONS(12497), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12497), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitetitle] = ACTIONS(12497), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteyear] = ACTIONS(12497), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitedate] = ACTIONS(12497), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteurl] = ACTIONS(12497), + [anon_sym_BSLASHfullcite] = ACTIONS(12497), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12497), + [anon_sym_BSLASHcitealt] = ACTIONS(12497), + [anon_sym_BSLASHcitealp] = ACTIONS(12497), + [anon_sym_BSLASHcitetext] = ACTIONS(12497), + [anon_sym_BSLASHparencite] = ACTIONS(12497), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHParencite] = ACTIONS(12497), + [anon_sym_BSLASHfootcite] = ACTIONS(12497), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12497), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12497), + [anon_sym_BSLASHtextcite] = ACTIONS(12497), + [anon_sym_BSLASHTextcite] = ACTIONS(12497), + [anon_sym_BSLASHsmartcite] = ACTIONS(12497), + [anon_sym_BSLASHSmartcite] = ACTIONS(12497), + [anon_sym_BSLASHsupercite] = ACTIONS(12497), + [anon_sym_BSLASHautocite] = ACTIONS(12497), + [anon_sym_BSLASHAutocite] = ACTIONS(12497), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHvolcite] = ACTIONS(12497), + [anon_sym_BSLASHVolcite] = ACTIONS(12497), + [anon_sym_BSLASHpvolcite] = ACTIONS(12497), + [anon_sym_BSLASHPvolcite] = ACTIONS(12497), + [anon_sym_BSLASHfvolcite] = ACTIONS(12497), + [anon_sym_BSLASHftvolcite] = ACTIONS(12497), + [anon_sym_BSLASHsvolcite] = ACTIONS(12497), + [anon_sym_BSLASHSvolcite] = ACTIONS(12497), + [anon_sym_BSLASHtvolcite] = ACTIONS(12497), + [anon_sym_BSLASHTvolcite] = ACTIONS(12497), + [anon_sym_BSLASHavolcite] = ACTIONS(12497), + [anon_sym_BSLASHAvolcite] = ACTIONS(12497), + [anon_sym_BSLASHnotecite] = ACTIONS(12497), + [anon_sym_BSLASHpnotecite] = ACTIONS(12497), + [anon_sym_BSLASHPnotecite] = ACTIONS(12497), + [anon_sym_BSLASHfnotecite] = ACTIONS(12497), + [anon_sym_BSLASHusepackage] = ACTIONS(12497), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12497), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12497), + [anon_sym_BSLASHinclude] = ACTIONS(12497), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12497), + [anon_sym_BSLASHinput] = ACTIONS(12497), + [anon_sym_BSLASHsubfile] = ACTIONS(12497), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12497), + [anon_sym_BSLASHbibliography] = ACTIONS(12497), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12497), + [anon_sym_BSLASHincludesvg] = ACTIONS(12497), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12497), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12497), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12497), + [anon_sym_BSLASHimport] = ACTIONS(12497), + [anon_sym_BSLASHsubimport] = ACTIONS(12497), + [anon_sym_BSLASHinputfrom] = ACTIONS(12497), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12497), + [anon_sym_BSLASHincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHlabel] = ACTIONS(12497), + [anon_sym_BSLASHref] = ACTIONS(12497), + [anon_sym_BSLASHvref] = ACTIONS(12497), + [anon_sym_BSLASHVref] = ACTIONS(12497), + [anon_sym_BSLASHautoref] = ACTIONS(12497), + [anon_sym_BSLASHpageref] = ACTIONS(12497), + [anon_sym_BSLASHcref] = ACTIONS(12497), + [anon_sym_BSLASHCref] = ACTIONS(12497), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnameCref] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHlabelcref] = ACTIONS(12497), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12497), + [anon_sym_BSLASHeqref] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange] = ACTIONS(12497), + [anon_sym_BSLASHCrefrange] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewlabel] = ACTIONS(12497), + [anon_sym_BSLASHnewcommand] = ACTIONS(12497), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12497), + [anon_sym_BSLASHgls] = ACTIONS(12497), + [anon_sym_BSLASHGls] = ACTIONS(12497), + [anon_sym_BSLASHGLS] = ACTIONS(12497), + [anon_sym_BSLASHglspl] = ACTIONS(12497), + [anon_sym_BSLASHGlspl] = ACTIONS(12497), + [anon_sym_BSLASHGLSpl] = ACTIONS(12497), + [anon_sym_BSLASHglsdisp] = ACTIONS(12497), + [anon_sym_BSLASHglslink] = ACTIONS(12497), + [anon_sym_BSLASHglstext] = ACTIONS(12497), + [anon_sym_BSLASHGlstext] = ACTIONS(12497), + [anon_sym_BSLASHGLStext] = ACTIONS(12497), + [anon_sym_BSLASHglsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12497), + [anon_sym_BSLASHglsplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSplural] = ACTIONS(12497), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHglsname] = ACTIONS(12497), + [anon_sym_BSLASHGlsname] = ACTIONS(12497), + [anon_sym_BSLASHGLSname] = ACTIONS(12497), + [anon_sym_BSLASHglssymbol] = ACTIONS(12497), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12497), + [anon_sym_BSLASHglsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12497), + [anon_sym_BSLASHglsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12497), + [anon_sym_BSLASHglsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12497), + [anon_sym_BSLASHglsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12497), + [anon_sym_BSLASHglsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12497), + [anon_sym_BSLASHnewacronym] = ACTIONS(12497), + [anon_sym_BSLASHacrshort] = ACTIONS(12497), + [anon_sym_BSLASHAcrshort] = ACTIONS(12497), + [anon_sym_BSLASHACRshort] = ACTIONS(12497), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12497), + [anon_sym_BSLASHacrlong] = ACTIONS(12497), + [anon_sym_BSLASHAcrlong] = ACTIONS(12497), + [anon_sym_BSLASHACRlong] = ACTIONS(12497), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12497), + [anon_sym_BSLASHacrfull] = ACTIONS(12497), + [anon_sym_BSLASHAcrfull] = ACTIONS(12497), + [anon_sym_BSLASHACRfull] = ACTIONS(12497), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12497), + [anon_sym_BSLASHacs] = ACTIONS(12497), + [anon_sym_BSLASHAcs] = ACTIONS(12497), + [anon_sym_BSLASHacsp] = ACTIONS(12497), + [anon_sym_BSLASHAcsp] = ACTIONS(12497), + [anon_sym_BSLASHacl] = ACTIONS(12497), + [anon_sym_BSLASHAcl] = ACTIONS(12497), + [anon_sym_BSLASHaclp] = ACTIONS(12497), + [anon_sym_BSLASHAclp] = ACTIONS(12497), + [anon_sym_BSLASHacf] = ACTIONS(12497), + [anon_sym_BSLASHAcf] = ACTIONS(12497), + [anon_sym_BSLASHacfp] = ACTIONS(12497), + [anon_sym_BSLASHAcfp] = ACTIONS(12497), + [anon_sym_BSLASHac] = ACTIONS(12497), + [anon_sym_BSLASHAc] = ACTIONS(12497), + [anon_sym_BSLASHacp] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12497), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12497), + [anon_sym_BSLASHcolor] = ACTIONS(12497), + [anon_sym_BSLASHcolorbox] = ACTIONS(12497), + [anon_sym_BSLASHtextcolor] = ACTIONS(12497), + [anon_sym_BSLASHpagecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12497), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12497), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12497), + }, + [1813] = { + [sym_generic_command_name] = ACTIONS(12501), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12501), + [anon_sym_LBRACK] = ACTIONS(12499), + [anon_sym_RBRACK] = ACTIONS(12499), + [anon_sym_LBRACE] = ACTIONS(12499), + [anon_sym_RBRACE] = ACTIONS(12499), + [anon_sym_LPAREN] = ACTIONS(12499), + [anon_sym_COMMA] = ACTIONS(12499), + [anon_sym_EQ] = ACTIONS(12499), + [sym_word] = ACTIONS(12499), + [sym_param] = ACTIONS(12499), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12499), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12499), + [anon_sym_DOLLAR] = ACTIONS(12501), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12499), + [anon_sym_BSLASHbegin] = ACTIONS(12501), + [anon_sym_BSLASHcaption] = ACTIONS(12501), + [anon_sym_BSLASHcite] = ACTIONS(12501), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCite] = ACTIONS(12501), + [anon_sym_BSLASHnocite] = ACTIONS(12501), + [anon_sym_BSLASHcitet] = ACTIONS(12501), + [anon_sym_BSLASHcitep] = ACTIONS(12501), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteauthor] = ACTIONS(12501), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12501), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitetitle] = ACTIONS(12501), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteyear] = ACTIONS(12501), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitedate] = ACTIONS(12501), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteurl] = ACTIONS(12501), + [anon_sym_BSLASHfullcite] = ACTIONS(12501), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12501), + [anon_sym_BSLASHcitealt] = ACTIONS(12501), + [anon_sym_BSLASHcitealp] = ACTIONS(12501), + [anon_sym_BSLASHcitetext] = ACTIONS(12501), + [anon_sym_BSLASHparencite] = ACTIONS(12501), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHParencite] = ACTIONS(12501), + [anon_sym_BSLASHfootcite] = ACTIONS(12501), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12501), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12501), + [anon_sym_BSLASHtextcite] = ACTIONS(12501), + [anon_sym_BSLASHTextcite] = ACTIONS(12501), + [anon_sym_BSLASHsmartcite] = ACTIONS(12501), + [anon_sym_BSLASHSmartcite] = ACTIONS(12501), + [anon_sym_BSLASHsupercite] = ACTIONS(12501), + [anon_sym_BSLASHautocite] = ACTIONS(12501), + [anon_sym_BSLASHAutocite] = ACTIONS(12501), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHvolcite] = ACTIONS(12501), + [anon_sym_BSLASHVolcite] = ACTIONS(12501), + [anon_sym_BSLASHpvolcite] = ACTIONS(12501), + [anon_sym_BSLASHPvolcite] = ACTIONS(12501), + [anon_sym_BSLASHfvolcite] = ACTIONS(12501), + [anon_sym_BSLASHftvolcite] = ACTIONS(12501), + [anon_sym_BSLASHsvolcite] = ACTIONS(12501), + [anon_sym_BSLASHSvolcite] = ACTIONS(12501), + [anon_sym_BSLASHtvolcite] = ACTIONS(12501), + [anon_sym_BSLASHTvolcite] = ACTIONS(12501), + [anon_sym_BSLASHavolcite] = ACTIONS(12501), + [anon_sym_BSLASHAvolcite] = ACTIONS(12501), + [anon_sym_BSLASHnotecite] = ACTIONS(12501), + [anon_sym_BSLASHpnotecite] = ACTIONS(12501), + [anon_sym_BSLASHPnotecite] = ACTIONS(12501), + [anon_sym_BSLASHfnotecite] = ACTIONS(12501), + [anon_sym_BSLASHusepackage] = ACTIONS(12501), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12501), + [anon_sym_BSLASHinclude] = ACTIONS(12501), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12501), + [anon_sym_BSLASHinput] = ACTIONS(12501), + [anon_sym_BSLASHsubfile] = ACTIONS(12501), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12501), + [anon_sym_BSLASHbibliography] = ACTIONS(12501), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12501), + [anon_sym_BSLASHincludesvg] = ACTIONS(12501), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12501), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12501), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12501), + [anon_sym_BSLASHimport] = ACTIONS(12501), + [anon_sym_BSLASHsubimport] = ACTIONS(12501), + [anon_sym_BSLASHinputfrom] = ACTIONS(12501), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12501), + [anon_sym_BSLASHincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHlabel] = ACTIONS(12501), + [anon_sym_BSLASHref] = ACTIONS(12501), + [anon_sym_BSLASHvref] = ACTIONS(12501), + [anon_sym_BSLASHVref] = ACTIONS(12501), + [anon_sym_BSLASHautoref] = ACTIONS(12501), + [anon_sym_BSLASHpageref] = ACTIONS(12501), + [anon_sym_BSLASHcref] = ACTIONS(12501), + [anon_sym_BSLASHCref] = ACTIONS(12501), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnameCref] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHlabelcref] = ACTIONS(12501), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12501), + [anon_sym_BSLASHeqref] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange] = ACTIONS(12501), + [anon_sym_BSLASHCrefrange] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewlabel] = ACTIONS(12501), + [anon_sym_BSLASHnewcommand] = ACTIONS(12501), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12501), + [anon_sym_BSLASHgls] = ACTIONS(12501), + [anon_sym_BSLASHGls] = ACTIONS(12501), + [anon_sym_BSLASHGLS] = ACTIONS(12501), + [anon_sym_BSLASHglspl] = ACTIONS(12501), + [anon_sym_BSLASHGlspl] = ACTIONS(12501), + [anon_sym_BSLASHGLSpl] = ACTIONS(12501), + [anon_sym_BSLASHglsdisp] = ACTIONS(12501), + [anon_sym_BSLASHglslink] = ACTIONS(12501), + [anon_sym_BSLASHglstext] = ACTIONS(12501), + [anon_sym_BSLASHGlstext] = ACTIONS(12501), + [anon_sym_BSLASHGLStext] = ACTIONS(12501), + [anon_sym_BSLASHglsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12501), + [anon_sym_BSLASHglsplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSplural] = ACTIONS(12501), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHglsname] = ACTIONS(12501), + [anon_sym_BSLASHGlsname] = ACTIONS(12501), + [anon_sym_BSLASHGLSname] = ACTIONS(12501), + [anon_sym_BSLASHglssymbol] = ACTIONS(12501), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12501), + [anon_sym_BSLASHglsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12501), + [anon_sym_BSLASHglsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12501), + [anon_sym_BSLASHglsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12501), + [anon_sym_BSLASHglsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12501), + [anon_sym_BSLASHglsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12501), + [anon_sym_BSLASHnewacronym] = ACTIONS(12501), + [anon_sym_BSLASHacrshort] = ACTIONS(12501), + [anon_sym_BSLASHAcrshort] = ACTIONS(12501), + [anon_sym_BSLASHACRshort] = ACTIONS(12501), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12501), + [anon_sym_BSLASHacrlong] = ACTIONS(12501), + [anon_sym_BSLASHAcrlong] = ACTIONS(12501), + [anon_sym_BSLASHACRlong] = ACTIONS(12501), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12501), + [anon_sym_BSLASHacrfull] = ACTIONS(12501), + [anon_sym_BSLASHAcrfull] = ACTIONS(12501), + [anon_sym_BSLASHACRfull] = ACTIONS(12501), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12501), + [anon_sym_BSLASHacs] = ACTIONS(12501), + [anon_sym_BSLASHAcs] = ACTIONS(12501), + [anon_sym_BSLASHacsp] = ACTIONS(12501), + [anon_sym_BSLASHAcsp] = ACTIONS(12501), + [anon_sym_BSLASHacl] = ACTIONS(12501), + [anon_sym_BSLASHAcl] = ACTIONS(12501), + [anon_sym_BSLASHaclp] = ACTIONS(12501), + [anon_sym_BSLASHAclp] = ACTIONS(12501), + [anon_sym_BSLASHacf] = ACTIONS(12501), + [anon_sym_BSLASHAcf] = ACTIONS(12501), + [anon_sym_BSLASHacfp] = ACTIONS(12501), + [anon_sym_BSLASHAcfp] = ACTIONS(12501), + [anon_sym_BSLASHac] = ACTIONS(12501), + [anon_sym_BSLASHAc] = ACTIONS(12501), + [anon_sym_BSLASHacp] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12501), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12501), + [anon_sym_BSLASHcolor] = ACTIONS(12501), + [anon_sym_BSLASHcolorbox] = ACTIONS(12501), + [anon_sym_BSLASHtextcolor] = ACTIONS(12501), + [anon_sym_BSLASHpagecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12501), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12501), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12501), + }, + [1814] = { + [sym_generic_command_name] = ACTIONS(12509), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12509), + [anon_sym_LBRACK] = ACTIONS(12507), + [anon_sym_RBRACK] = ACTIONS(12507), + [anon_sym_LBRACE] = ACTIONS(12507), + [anon_sym_RBRACE] = ACTIONS(12507), + [anon_sym_LPAREN] = ACTIONS(12507), + [anon_sym_COMMA] = ACTIONS(12507), + [anon_sym_EQ] = ACTIONS(12507), + [sym_word] = ACTIONS(12507), + [sym_param] = ACTIONS(12507), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12507), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12507), + [anon_sym_DOLLAR] = ACTIONS(12509), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12507), + [anon_sym_BSLASHbegin] = ACTIONS(12509), + [anon_sym_BSLASHcaption] = ACTIONS(12509), + [anon_sym_BSLASHcite] = ACTIONS(12509), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCite] = ACTIONS(12509), + [anon_sym_BSLASHnocite] = ACTIONS(12509), + [anon_sym_BSLASHcitet] = ACTIONS(12509), + [anon_sym_BSLASHcitep] = ACTIONS(12509), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteauthor] = ACTIONS(12509), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12509), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitetitle] = ACTIONS(12509), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteyear] = ACTIONS(12509), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitedate] = ACTIONS(12509), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteurl] = ACTIONS(12509), + [anon_sym_BSLASHfullcite] = ACTIONS(12509), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12509), + [anon_sym_BSLASHcitealt] = ACTIONS(12509), + [anon_sym_BSLASHcitealp] = ACTIONS(12509), + [anon_sym_BSLASHcitetext] = ACTIONS(12509), + [anon_sym_BSLASHparencite] = ACTIONS(12509), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHParencite] = ACTIONS(12509), + [anon_sym_BSLASHfootcite] = ACTIONS(12509), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12509), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12509), + [anon_sym_BSLASHtextcite] = ACTIONS(12509), + [anon_sym_BSLASHTextcite] = ACTIONS(12509), + [anon_sym_BSLASHsmartcite] = ACTIONS(12509), + [anon_sym_BSLASHSmartcite] = ACTIONS(12509), + [anon_sym_BSLASHsupercite] = ACTIONS(12509), + [anon_sym_BSLASHautocite] = ACTIONS(12509), + [anon_sym_BSLASHAutocite] = ACTIONS(12509), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHvolcite] = ACTIONS(12509), + [anon_sym_BSLASHVolcite] = ACTIONS(12509), + [anon_sym_BSLASHpvolcite] = ACTIONS(12509), + [anon_sym_BSLASHPvolcite] = ACTIONS(12509), + [anon_sym_BSLASHfvolcite] = ACTIONS(12509), + [anon_sym_BSLASHftvolcite] = ACTIONS(12509), + [anon_sym_BSLASHsvolcite] = ACTIONS(12509), + [anon_sym_BSLASHSvolcite] = ACTIONS(12509), + [anon_sym_BSLASHtvolcite] = ACTIONS(12509), + [anon_sym_BSLASHTvolcite] = ACTIONS(12509), + [anon_sym_BSLASHavolcite] = ACTIONS(12509), + [anon_sym_BSLASHAvolcite] = ACTIONS(12509), + [anon_sym_BSLASHnotecite] = ACTIONS(12509), + [anon_sym_BSLASHpnotecite] = ACTIONS(12509), + [anon_sym_BSLASHPnotecite] = ACTIONS(12509), + [anon_sym_BSLASHfnotecite] = ACTIONS(12509), + [anon_sym_BSLASHusepackage] = ACTIONS(12509), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12509), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12509), + [anon_sym_BSLASHinclude] = ACTIONS(12509), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12509), + [anon_sym_BSLASHinput] = ACTIONS(12509), + [anon_sym_BSLASHsubfile] = ACTIONS(12509), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12509), + [anon_sym_BSLASHbibliography] = ACTIONS(12509), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12509), + [anon_sym_BSLASHincludesvg] = ACTIONS(12509), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12509), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12509), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12509), + [anon_sym_BSLASHimport] = ACTIONS(12509), + [anon_sym_BSLASHsubimport] = ACTIONS(12509), + [anon_sym_BSLASHinputfrom] = ACTIONS(12509), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12509), + [anon_sym_BSLASHincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHlabel] = ACTIONS(12509), + [anon_sym_BSLASHref] = ACTIONS(12509), + [anon_sym_BSLASHvref] = ACTIONS(12509), + [anon_sym_BSLASHVref] = ACTIONS(12509), + [anon_sym_BSLASHautoref] = ACTIONS(12509), + [anon_sym_BSLASHpageref] = ACTIONS(12509), + [anon_sym_BSLASHcref] = ACTIONS(12509), + [anon_sym_BSLASHCref] = ACTIONS(12509), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnameCref] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHlabelcref] = ACTIONS(12509), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12509), + [anon_sym_BSLASHeqref] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange] = ACTIONS(12509), + [anon_sym_BSLASHCrefrange] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewlabel] = ACTIONS(12509), + [anon_sym_BSLASHnewcommand] = ACTIONS(12509), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12509), + [anon_sym_BSLASHgls] = ACTIONS(12509), + [anon_sym_BSLASHGls] = ACTIONS(12509), + [anon_sym_BSLASHGLS] = ACTIONS(12509), + [anon_sym_BSLASHglspl] = ACTIONS(12509), + [anon_sym_BSLASHGlspl] = ACTIONS(12509), + [anon_sym_BSLASHGLSpl] = ACTIONS(12509), + [anon_sym_BSLASHglsdisp] = ACTIONS(12509), + [anon_sym_BSLASHglslink] = ACTIONS(12509), + [anon_sym_BSLASHglstext] = ACTIONS(12509), + [anon_sym_BSLASHGlstext] = ACTIONS(12509), + [anon_sym_BSLASHGLStext] = ACTIONS(12509), + [anon_sym_BSLASHglsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12509), + [anon_sym_BSLASHglsplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSplural] = ACTIONS(12509), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHglsname] = ACTIONS(12509), + [anon_sym_BSLASHGlsname] = ACTIONS(12509), + [anon_sym_BSLASHGLSname] = ACTIONS(12509), + [anon_sym_BSLASHglssymbol] = ACTIONS(12509), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12509), + [anon_sym_BSLASHglsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12509), + [anon_sym_BSLASHglsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12509), + [anon_sym_BSLASHglsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12509), + [anon_sym_BSLASHglsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12509), + [anon_sym_BSLASHglsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12509), + [anon_sym_BSLASHnewacronym] = ACTIONS(12509), + [anon_sym_BSLASHacrshort] = ACTIONS(12509), + [anon_sym_BSLASHAcrshort] = ACTIONS(12509), + [anon_sym_BSLASHACRshort] = ACTIONS(12509), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12509), + [anon_sym_BSLASHacrlong] = ACTIONS(12509), + [anon_sym_BSLASHAcrlong] = ACTIONS(12509), + [anon_sym_BSLASHACRlong] = ACTIONS(12509), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12509), + [anon_sym_BSLASHacrfull] = ACTIONS(12509), + [anon_sym_BSLASHAcrfull] = ACTIONS(12509), + [anon_sym_BSLASHACRfull] = ACTIONS(12509), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12509), + [anon_sym_BSLASHacs] = ACTIONS(12509), + [anon_sym_BSLASHAcs] = ACTIONS(12509), + [anon_sym_BSLASHacsp] = ACTIONS(12509), + [anon_sym_BSLASHAcsp] = ACTIONS(12509), + [anon_sym_BSLASHacl] = ACTIONS(12509), + [anon_sym_BSLASHAcl] = ACTIONS(12509), + [anon_sym_BSLASHaclp] = ACTIONS(12509), + [anon_sym_BSLASHAclp] = ACTIONS(12509), + [anon_sym_BSLASHacf] = ACTIONS(12509), + [anon_sym_BSLASHAcf] = ACTIONS(12509), + [anon_sym_BSLASHacfp] = ACTIONS(12509), + [anon_sym_BSLASHAcfp] = ACTIONS(12509), + [anon_sym_BSLASHac] = ACTIONS(12509), + [anon_sym_BSLASHAc] = ACTIONS(12509), + [anon_sym_BSLASHacp] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12509), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12509), + [anon_sym_BSLASHcolor] = ACTIONS(12509), + [anon_sym_BSLASHcolorbox] = ACTIONS(12509), + [anon_sym_BSLASHtextcolor] = ACTIONS(12509), + [anon_sym_BSLASHpagecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12509), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12509), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12509), + }, + [1815] = { + [sym_generic_command_name] = ACTIONS(12513), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12513), + [anon_sym_LBRACK] = ACTIONS(12511), + [anon_sym_RBRACK] = ACTIONS(12511), + [anon_sym_LBRACE] = ACTIONS(12793), + [anon_sym_RBRACE] = ACTIONS(12511), + [anon_sym_LPAREN] = ACTIONS(12511), + [anon_sym_COMMA] = ACTIONS(12511), + [anon_sym_EQ] = ACTIONS(12511), + [sym_word] = ACTIONS(12511), + [sym_param] = ACTIONS(12511), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12511), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12511), + [anon_sym_DOLLAR] = ACTIONS(12513), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12511), + [anon_sym_BSLASHbegin] = ACTIONS(12513), + [anon_sym_BSLASHcaption] = ACTIONS(12513), + [anon_sym_BSLASHcite] = ACTIONS(12513), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCite] = ACTIONS(12513), + [anon_sym_BSLASHnocite] = ACTIONS(12513), + [anon_sym_BSLASHcitet] = ACTIONS(12513), + [anon_sym_BSLASHcitep] = ACTIONS(12513), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteauthor] = ACTIONS(12513), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12513), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitetitle] = ACTIONS(12513), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteyear] = ACTIONS(12513), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitedate] = ACTIONS(12513), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteurl] = ACTIONS(12513), + [anon_sym_BSLASHfullcite] = ACTIONS(12513), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12513), + [anon_sym_BSLASHcitealt] = ACTIONS(12513), + [anon_sym_BSLASHcitealp] = ACTIONS(12513), + [anon_sym_BSLASHcitetext] = ACTIONS(12513), + [anon_sym_BSLASHparencite] = ACTIONS(12513), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHParencite] = ACTIONS(12513), + [anon_sym_BSLASHfootcite] = ACTIONS(12513), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12513), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12513), + [anon_sym_BSLASHtextcite] = ACTIONS(12513), + [anon_sym_BSLASHTextcite] = ACTIONS(12513), + [anon_sym_BSLASHsmartcite] = ACTIONS(12513), + [anon_sym_BSLASHSmartcite] = ACTIONS(12513), + [anon_sym_BSLASHsupercite] = ACTIONS(12513), + [anon_sym_BSLASHautocite] = ACTIONS(12513), + [anon_sym_BSLASHAutocite] = ACTIONS(12513), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHvolcite] = ACTIONS(12513), + [anon_sym_BSLASHVolcite] = ACTIONS(12513), + [anon_sym_BSLASHpvolcite] = ACTIONS(12513), + [anon_sym_BSLASHPvolcite] = ACTIONS(12513), + [anon_sym_BSLASHfvolcite] = ACTIONS(12513), + [anon_sym_BSLASHftvolcite] = ACTIONS(12513), + [anon_sym_BSLASHsvolcite] = ACTIONS(12513), + [anon_sym_BSLASHSvolcite] = ACTIONS(12513), + [anon_sym_BSLASHtvolcite] = ACTIONS(12513), + [anon_sym_BSLASHTvolcite] = ACTIONS(12513), + [anon_sym_BSLASHavolcite] = ACTIONS(12513), + [anon_sym_BSLASHAvolcite] = ACTIONS(12513), + [anon_sym_BSLASHnotecite] = ACTIONS(12513), + [anon_sym_BSLASHpnotecite] = ACTIONS(12513), + [anon_sym_BSLASHPnotecite] = ACTIONS(12513), + [anon_sym_BSLASHfnotecite] = ACTIONS(12513), + [anon_sym_BSLASHusepackage] = ACTIONS(12513), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12513), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12513), + [anon_sym_BSLASHinclude] = ACTIONS(12513), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12513), + [anon_sym_BSLASHinput] = ACTIONS(12513), + [anon_sym_BSLASHsubfile] = ACTIONS(12513), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12513), + [anon_sym_BSLASHbibliography] = ACTIONS(12513), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12513), + [anon_sym_BSLASHincludesvg] = ACTIONS(12513), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12513), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12513), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12513), + [anon_sym_BSLASHimport] = ACTIONS(12513), + [anon_sym_BSLASHsubimport] = ACTIONS(12513), + [anon_sym_BSLASHinputfrom] = ACTIONS(12513), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12513), + [anon_sym_BSLASHincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHlabel] = ACTIONS(12513), + [anon_sym_BSLASHref] = ACTIONS(12513), + [anon_sym_BSLASHvref] = ACTIONS(12513), + [anon_sym_BSLASHVref] = ACTIONS(12513), + [anon_sym_BSLASHautoref] = ACTIONS(12513), + [anon_sym_BSLASHpageref] = ACTIONS(12513), + [anon_sym_BSLASHcref] = ACTIONS(12513), + [anon_sym_BSLASHCref] = ACTIONS(12513), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnameCref] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHlabelcref] = ACTIONS(12513), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12513), + [anon_sym_BSLASHeqref] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange] = ACTIONS(12513), + [anon_sym_BSLASHCrefrange] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewlabel] = ACTIONS(12513), + [anon_sym_BSLASHnewcommand] = ACTIONS(12513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12513), + [anon_sym_BSLASHgls] = ACTIONS(12513), + [anon_sym_BSLASHGls] = ACTIONS(12513), + [anon_sym_BSLASHGLS] = ACTIONS(12513), + [anon_sym_BSLASHglspl] = ACTIONS(12513), + [anon_sym_BSLASHGlspl] = ACTIONS(12513), + [anon_sym_BSLASHGLSpl] = ACTIONS(12513), + [anon_sym_BSLASHglsdisp] = ACTIONS(12513), + [anon_sym_BSLASHglslink] = ACTIONS(12513), + [anon_sym_BSLASHglstext] = ACTIONS(12513), + [anon_sym_BSLASHGlstext] = ACTIONS(12513), + [anon_sym_BSLASHGLStext] = ACTIONS(12513), + [anon_sym_BSLASHglsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12513), + [anon_sym_BSLASHglsplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSplural] = ACTIONS(12513), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHglsname] = ACTIONS(12513), + [anon_sym_BSLASHGlsname] = ACTIONS(12513), + [anon_sym_BSLASHGLSname] = ACTIONS(12513), + [anon_sym_BSLASHglssymbol] = ACTIONS(12513), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12513), + [anon_sym_BSLASHglsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12513), + [anon_sym_BSLASHglsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12513), + [anon_sym_BSLASHglsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12513), + [anon_sym_BSLASHglsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12513), + [anon_sym_BSLASHglsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12513), + [anon_sym_BSLASHnewacronym] = ACTIONS(12513), + [anon_sym_BSLASHacrshort] = ACTIONS(12513), + [anon_sym_BSLASHAcrshort] = ACTIONS(12513), + [anon_sym_BSLASHACRshort] = ACTIONS(12513), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12513), + [anon_sym_BSLASHacrlong] = ACTIONS(12513), + [anon_sym_BSLASHAcrlong] = ACTIONS(12513), + [anon_sym_BSLASHACRlong] = ACTIONS(12513), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12513), + [anon_sym_BSLASHacrfull] = ACTIONS(12513), + [anon_sym_BSLASHAcrfull] = ACTIONS(12513), + [anon_sym_BSLASHACRfull] = ACTIONS(12513), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12513), + [anon_sym_BSLASHacs] = ACTIONS(12513), + [anon_sym_BSLASHAcs] = ACTIONS(12513), + [anon_sym_BSLASHacsp] = ACTIONS(12513), + [anon_sym_BSLASHAcsp] = ACTIONS(12513), + [anon_sym_BSLASHacl] = ACTIONS(12513), + [anon_sym_BSLASHAcl] = ACTIONS(12513), + [anon_sym_BSLASHaclp] = ACTIONS(12513), + [anon_sym_BSLASHAclp] = ACTIONS(12513), + [anon_sym_BSLASHacf] = ACTIONS(12513), + [anon_sym_BSLASHAcf] = ACTIONS(12513), + [anon_sym_BSLASHacfp] = ACTIONS(12513), + [anon_sym_BSLASHAcfp] = ACTIONS(12513), + [anon_sym_BSLASHac] = ACTIONS(12513), + [anon_sym_BSLASHAc] = ACTIONS(12513), + [anon_sym_BSLASHacp] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12513), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12513), + [anon_sym_BSLASHcolor] = ACTIONS(12513), + [anon_sym_BSLASHcolorbox] = ACTIONS(12513), + [anon_sym_BSLASHtextcolor] = ACTIONS(12513), + [anon_sym_BSLASHpagecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12513), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12513), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12513), + }, + [1816] = { + [sym_generic_command_name] = ACTIONS(12519), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12519), + [anon_sym_LBRACK] = ACTIONS(12517), + [anon_sym_RBRACK] = ACTIONS(12517), + [anon_sym_LBRACE] = ACTIONS(12517), + [anon_sym_RBRACE] = ACTIONS(12517), + [anon_sym_LPAREN] = ACTIONS(12517), + [anon_sym_COMMA] = ACTIONS(12517), + [anon_sym_EQ] = ACTIONS(12517), + [sym_word] = ACTIONS(12517), + [sym_param] = ACTIONS(12517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12517), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12517), + [anon_sym_DOLLAR] = ACTIONS(12519), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12517), + [anon_sym_BSLASHbegin] = ACTIONS(12519), + [anon_sym_BSLASHcaption] = ACTIONS(12519), + [anon_sym_BSLASHcite] = ACTIONS(12519), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCite] = ACTIONS(12519), + [anon_sym_BSLASHnocite] = ACTIONS(12519), + [anon_sym_BSLASHcitet] = ACTIONS(12519), + [anon_sym_BSLASHcitep] = ACTIONS(12519), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteauthor] = ACTIONS(12519), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12519), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitetitle] = ACTIONS(12519), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteyear] = ACTIONS(12519), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitedate] = ACTIONS(12519), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteurl] = ACTIONS(12519), + [anon_sym_BSLASHfullcite] = ACTIONS(12519), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12519), + [anon_sym_BSLASHcitealt] = ACTIONS(12519), + [anon_sym_BSLASHcitealp] = ACTIONS(12519), + [anon_sym_BSLASHcitetext] = ACTIONS(12519), + [anon_sym_BSLASHparencite] = ACTIONS(12519), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHParencite] = ACTIONS(12519), + [anon_sym_BSLASHfootcite] = ACTIONS(12519), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12519), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12519), + [anon_sym_BSLASHtextcite] = ACTIONS(12519), + [anon_sym_BSLASHTextcite] = ACTIONS(12519), + [anon_sym_BSLASHsmartcite] = ACTIONS(12519), + [anon_sym_BSLASHSmartcite] = ACTIONS(12519), + [anon_sym_BSLASHsupercite] = ACTIONS(12519), + [anon_sym_BSLASHautocite] = ACTIONS(12519), + [anon_sym_BSLASHAutocite] = ACTIONS(12519), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHvolcite] = ACTIONS(12519), + [anon_sym_BSLASHVolcite] = ACTIONS(12519), + [anon_sym_BSLASHpvolcite] = ACTIONS(12519), + [anon_sym_BSLASHPvolcite] = ACTIONS(12519), + [anon_sym_BSLASHfvolcite] = ACTIONS(12519), + [anon_sym_BSLASHftvolcite] = ACTIONS(12519), + [anon_sym_BSLASHsvolcite] = ACTIONS(12519), + [anon_sym_BSLASHSvolcite] = ACTIONS(12519), + [anon_sym_BSLASHtvolcite] = ACTIONS(12519), + [anon_sym_BSLASHTvolcite] = ACTIONS(12519), + [anon_sym_BSLASHavolcite] = ACTIONS(12519), + [anon_sym_BSLASHAvolcite] = ACTIONS(12519), + [anon_sym_BSLASHnotecite] = ACTIONS(12519), + [anon_sym_BSLASHpnotecite] = ACTIONS(12519), + [anon_sym_BSLASHPnotecite] = ACTIONS(12519), + [anon_sym_BSLASHfnotecite] = ACTIONS(12519), + [anon_sym_BSLASHusepackage] = ACTIONS(12519), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12519), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12519), + [anon_sym_BSLASHinclude] = ACTIONS(12519), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12519), + [anon_sym_BSLASHinput] = ACTIONS(12519), + [anon_sym_BSLASHsubfile] = ACTIONS(12519), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12519), + [anon_sym_BSLASHbibliography] = ACTIONS(12519), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12519), + [anon_sym_BSLASHincludesvg] = ACTIONS(12519), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12519), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12519), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12519), + [anon_sym_BSLASHimport] = ACTIONS(12519), + [anon_sym_BSLASHsubimport] = ACTIONS(12519), + [anon_sym_BSLASHinputfrom] = ACTIONS(12519), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12519), + [anon_sym_BSLASHincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHlabel] = ACTIONS(12519), + [anon_sym_BSLASHref] = ACTIONS(12519), + [anon_sym_BSLASHvref] = ACTIONS(12519), + [anon_sym_BSLASHVref] = ACTIONS(12519), + [anon_sym_BSLASHautoref] = ACTIONS(12519), + [anon_sym_BSLASHpageref] = ACTIONS(12519), + [anon_sym_BSLASHcref] = ACTIONS(12519), + [anon_sym_BSLASHCref] = ACTIONS(12519), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnameCref] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHlabelcref] = ACTIONS(12519), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12519), + [anon_sym_BSLASHeqref] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange] = ACTIONS(12519), + [anon_sym_BSLASHCrefrange] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewlabel] = ACTIONS(12519), + [anon_sym_BSLASHnewcommand] = ACTIONS(12519), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12519), + [anon_sym_BSLASHgls] = ACTIONS(12519), + [anon_sym_BSLASHGls] = ACTIONS(12519), + [anon_sym_BSLASHGLS] = ACTIONS(12519), + [anon_sym_BSLASHglspl] = ACTIONS(12519), + [anon_sym_BSLASHGlspl] = ACTIONS(12519), + [anon_sym_BSLASHGLSpl] = ACTIONS(12519), + [anon_sym_BSLASHglsdisp] = ACTIONS(12519), + [anon_sym_BSLASHglslink] = ACTIONS(12519), + [anon_sym_BSLASHglstext] = ACTIONS(12519), + [anon_sym_BSLASHGlstext] = ACTIONS(12519), + [anon_sym_BSLASHGLStext] = ACTIONS(12519), + [anon_sym_BSLASHglsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12519), + [anon_sym_BSLASHglsplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSplural] = ACTIONS(12519), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHglsname] = ACTIONS(12519), + [anon_sym_BSLASHGlsname] = ACTIONS(12519), + [anon_sym_BSLASHGLSname] = ACTIONS(12519), + [anon_sym_BSLASHglssymbol] = ACTIONS(12519), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12519), + [anon_sym_BSLASHglsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12519), + [anon_sym_BSLASHglsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12519), + [anon_sym_BSLASHglsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12519), + [anon_sym_BSLASHglsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12519), + [anon_sym_BSLASHglsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12519), + [anon_sym_BSLASHnewacronym] = ACTIONS(12519), + [anon_sym_BSLASHacrshort] = ACTIONS(12519), + [anon_sym_BSLASHAcrshort] = ACTIONS(12519), + [anon_sym_BSLASHACRshort] = ACTIONS(12519), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12519), + [anon_sym_BSLASHacrlong] = ACTIONS(12519), + [anon_sym_BSLASHAcrlong] = ACTIONS(12519), + [anon_sym_BSLASHACRlong] = ACTIONS(12519), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12519), + [anon_sym_BSLASHacrfull] = ACTIONS(12519), + [anon_sym_BSLASHAcrfull] = ACTIONS(12519), + [anon_sym_BSLASHACRfull] = ACTIONS(12519), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12519), + [anon_sym_BSLASHacs] = ACTIONS(12519), + [anon_sym_BSLASHAcs] = ACTIONS(12519), + [anon_sym_BSLASHacsp] = ACTIONS(12519), + [anon_sym_BSLASHAcsp] = ACTIONS(12519), + [anon_sym_BSLASHacl] = ACTIONS(12519), + [anon_sym_BSLASHAcl] = ACTIONS(12519), + [anon_sym_BSLASHaclp] = ACTIONS(12519), + [anon_sym_BSLASHAclp] = ACTIONS(12519), + [anon_sym_BSLASHacf] = ACTIONS(12519), + [anon_sym_BSLASHAcf] = ACTIONS(12519), + [anon_sym_BSLASHacfp] = ACTIONS(12519), + [anon_sym_BSLASHAcfp] = ACTIONS(12519), + [anon_sym_BSLASHac] = ACTIONS(12519), + [anon_sym_BSLASHAc] = ACTIONS(12519), + [anon_sym_BSLASHacp] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12519), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12519), + [anon_sym_BSLASHcolor] = ACTIONS(12519), + [anon_sym_BSLASHcolorbox] = ACTIONS(12519), + [anon_sym_BSLASHtextcolor] = ACTIONS(12519), + [anon_sym_BSLASHpagecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12519), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12519), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12519), + }, + [1817] = { + [sym_generic_command_name] = ACTIONS(12523), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12523), + [anon_sym_LBRACK] = ACTIONS(12521), + [anon_sym_RBRACK] = ACTIONS(12521), + [anon_sym_LBRACE] = ACTIONS(12521), + [anon_sym_RBRACE] = ACTIONS(12521), + [anon_sym_LPAREN] = ACTIONS(12521), + [anon_sym_COMMA] = ACTIONS(12521), + [anon_sym_EQ] = ACTIONS(12521), + [sym_word] = ACTIONS(12521), + [sym_param] = ACTIONS(12521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12521), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12521), + [anon_sym_DOLLAR] = ACTIONS(12523), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12521), + [anon_sym_BSLASHbegin] = ACTIONS(12523), + [anon_sym_BSLASHcaption] = ACTIONS(12523), + [anon_sym_BSLASHcite] = ACTIONS(12523), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCite] = ACTIONS(12523), + [anon_sym_BSLASHnocite] = ACTIONS(12523), + [anon_sym_BSLASHcitet] = ACTIONS(12523), + [anon_sym_BSLASHcitep] = ACTIONS(12523), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteauthor] = ACTIONS(12523), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12523), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitetitle] = ACTIONS(12523), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteyear] = ACTIONS(12523), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitedate] = ACTIONS(12523), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteurl] = ACTIONS(12523), + [anon_sym_BSLASHfullcite] = ACTIONS(12523), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12523), + [anon_sym_BSLASHcitealt] = ACTIONS(12523), + [anon_sym_BSLASHcitealp] = ACTIONS(12523), + [anon_sym_BSLASHcitetext] = ACTIONS(12523), + [anon_sym_BSLASHparencite] = ACTIONS(12523), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHParencite] = ACTIONS(12523), + [anon_sym_BSLASHfootcite] = ACTIONS(12523), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12523), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12523), + [anon_sym_BSLASHtextcite] = ACTIONS(12523), + [anon_sym_BSLASHTextcite] = ACTIONS(12523), + [anon_sym_BSLASHsmartcite] = ACTIONS(12523), + [anon_sym_BSLASHSmartcite] = ACTIONS(12523), + [anon_sym_BSLASHsupercite] = ACTIONS(12523), + [anon_sym_BSLASHautocite] = ACTIONS(12523), + [anon_sym_BSLASHAutocite] = ACTIONS(12523), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHvolcite] = ACTIONS(12523), + [anon_sym_BSLASHVolcite] = ACTIONS(12523), + [anon_sym_BSLASHpvolcite] = ACTIONS(12523), + [anon_sym_BSLASHPvolcite] = ACTIONS(12523), + [anon_sym_BSLASHfvolcite] = ACTIONS(12523), + [anon_sym_BSLASHftvolcite] = ACTIONS(12523), + [anon_sym_BSLASHsvolcite] = ACTIONS(12523), + [anon_sym_BSLASHSvolcite] = ACTIONS(12523), + [anon_sym_BSLASHtvolcite] = ACTIONS(12523), + [anon_sym_BSLASHTvolcite] = ACTIONS(12523), + [anon_sym_BSLASHavolcite] = ACTIONS(12523), + [anon_sym_BSLASHAvolcite] = ACTIONS(12523), + [anon_sym_BSLASHnotecite] = ACTIONS(12523), + [anon_sym_BSLASHpnotecite] = ACTIONS(12523), + [anon_sym_BSLASHPnotecite] = ACTIONS(12523), + [anon_sym_BSLASHfnotecite] = ACTIONS(12523), + [anon_sym_BSLASHusepackage] = ACTIONS(12523), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12523), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12523), + [anon_sym_BSLASHinclude] = ACTIONS(12523), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12523), + [anon_sym_BSLASHinput] = ACTIONS(12523), + [anon_sym_BSLASHsubfile] = ACTIONS(12523), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12523), + [anon_sym_BSLASHbibliography] = ACTIONS(12523), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12523), + [anon_sym_BSLASHincludesvg] = ACTIONS(12523), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12523), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12523), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12523), + [anon_sym_BSLASHimport] = ACTIONS(12523), + [anon_sym_BSLASHsubimport] = ACTIONS(12523), + [anon_sym_BSLASHinputfrom] = ACTIONS(12523), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12523), + [anon_sym_BSLASHincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHlabel] = ACTIONS(12523), + [anon_sym_BSLASHref] = ACTIONS(12523), + [anon_sym_BSLASHvref] = ACTIONS(12523), + [anon_sym_BSLASHVref] = ACTIONS(12523), + [anon_sym_BSLASHautoref] = ACTIONS(12523), + [anon_sym_BSLASHpageref] = ACTIONS(12523), + [anon_sym_BSLASHcref] = ACTIONS(12523), + [anon_sym_BSLASHCref] = ACTIONS(12523), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnameCref] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHlabelcref] = ACTIONS(12523), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12523), + [anon_sym_BSLASHeqref] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange] = ACTIONS(12523), + [anon_sym_BSLASHCrefrange] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewlabel] = ACTIONS(12523), + [anon_sym_BSLASHnewcommand] = ACTIONS(12523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12523), + [anon_sym_BSLASHgls] = ACTIONS(12523), + [anon_sym_BSLASHGls] = ACTIONS(12523), + [anon_sym_BSLASHGLS] = ACTIONS(12523), + [anon_sym_BSLASHglspl] = ACTIONS(12523), + [anon_sym_BSLASHGlspl] = ACTIONS(12523), + [anon_sym_BSLASHGLSpl] = ACTIONS(12523), + [anon_sym_BSLASHglsdisp] = ACTIONS(12523), + [anon_sym_BSLASHglslink] = ACTIONS(12523), + [anon_sym_BSLASHglstext] = ACTIONS(12523), + [anon_sym_BSLASHGlstext] = ACTIONS(12523), + [anon_sym_BSLASHGLStext] = ACTIONS(12523), + [anon_sym_BSLASHglsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12523), + [anon_sym_BSLASHglsplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSplural] = ACTIONS(12523), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHglsname] = ACTIONS(12523), + [anon_sym_BSLASHGlsname] = ACTIONS(12523), + [anon_sym_BSLASHGLSname] = ACTIONS(12523), + [anon_sym_BSLASHglssymbol] = ACTIONS(12523), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12523), + [anon_sym_BSLASHglsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12523), + [anon_sym_BSLASHglsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12523), + [anon_sym_BSLASHglsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12523), + [anon_sym_BSLASHglsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12523), + [anon_sym_BSLASHglsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12523), + [anon_sym_BSLASHnewacronym] = ACTIONS(12523), + [anon_sym_BSLASHacrshort] = ACTIONS(12523), + [anon_sym_BSLASHAcrshort] = ACTIONS(12523), + [anon_sym_BSLASHACRshort] = ACTIONS(12523), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12523), + [anon_sym_BSLASHacrlong] = ACTIONS(12523), + [anon_sym_BSLASHAcrlong] = ACTIONS(12523), + [anon_sym_BSLASHACRlong] = ACTIONS(12523), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12523), + [anon_sym_BSLASHacrfull] = ACTIONS(12523), + [anon_sym_BSLASHAcrfull] = ACTIONS(12523), + [anon_sym_BSLASHACRfull] = ACTIONS(12523), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12523), + [anon_sym_BSLASHacs] = ACTIONS(12523), + [anon_sym_BSLASHAcs] = ACTIONS(12523), + [anon_sym_BSLASHacsp] = ACTIONS(12523), + [anon_sym_BSLASHAcsp] = ACTIONS(12523), + [anon_sym_BSLASHacl] = ACTIONS(12523), + [anon_sym_BSLASHAcl] = ACTIONS(12523), + [anon_sym_BSLASHaclp] = ACTIONS(12523), + [anon_sym_BSLASHAclp] = ACTIONS(12523), + [anon_sym_BSLASHacf] = ACTIONS(12523), + [anon_sym_BSLASHAcf] = ACTIONS(12523), + [anon_sym_BSLASHacfp] = ACTIONS(12523), + [anon_sym_BSLASHAcfp] = ACTIONS(12523), + [anon_sym_BSLASHac] = ACTIONS(12523), + [anon_sym_BSLASHAc] = ACTIONS(12523), + [anon_sym_BSLASHacp] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12523), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12523), + [anon_sym_BSLASHcolor] = ACTIONS(12523), + [anon_sym_BSLASHcolorbox] = ACTIONS(12523), + [anon_sym_BSLASHtextcolor] = ACTIONS(12523), + [anon_sym_BSLASHpagecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12523), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12523), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12523), + }, + [1818] = { + [sym_generic_command_name] = ACTIONS(12527), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12527), + [anon_sym_LBRACK] = ACTIONS(12525), + [anon_sym_RBRACK] = ACTIONS(12525), + [anon_sym_LBRACE] = ACTIONS(12525), + [anon_sym_RBRACE] = ACTIONS(12525), + [anon_sym_LPAREN] = ACTIONS(12525), + [anon_sym_COMMA] = ACTIONS(12525), + [anon_sym_EQ] = ACTIONS(12525), + [sym_word] = ACTIONS(12525), + [sym_param] = ACTIONS(12525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12525), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12525), + [anon_sym_DOLLAR] = ACTIONS(12527), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12525), + [anon_sym_BSLASHbegin] = ACTIONS(12527), + [anon_sym_BSLASHcaption] = ACTIONS(12527), + [anon_sym_BSLASHcite] = ACTIONS(12527), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCite] = ACTIONS(12527), + [anon_sym_BSLASHnocite] = ACTIONS(12527), + [anon_sym_BSLASHcitet] = ACTIONS(12527), + [anon_sym_BSLASHcitep] = ACTIONS(12527), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteauthor] = ACTIONS(12527), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12527), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitetitle] = ACTIONS(12527), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteyear] = ACTIONS(12527), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitedate] = ACTIONS(12527), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteurl] = ACTIONS(12527), + [anon_sym_BSLASHfullcite] = ACTIONS(12527), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12527), + [anon_sym_BSLASHcitealt] = ACTIONS(12527), + [anon_sym_BSLASHcitealp] = ACTIONS(12527), + [anon_sym_BSLASHcitetext] = ACTIONS(12527), + [anon_sym_BSLASHparencite] = ACTIONS(12527), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHParencite] = ACTIONS(12527), + [anon_sym_BSLASHfootcite] = ACTIONS(12527), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12527), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12527), + [anon_sym_BSLASHtextcite] = ACTIONS(12527), + [anon_sym_BSLASHTextcite] = ACTIONS(12527), + [anon_sym_BSLASHsmartcite] = ACTIONS(12527), + [anon_sym_BSLASHSmartcite] = ACTIONS(12527), + [anon_sym_BSLASHsupercite] = ACTIONS(12527), + [anon_sym_BSLASHautocite] = ACTIONS(12527), + [anon_sym_BSLASHAutocite] = ACTIONS(12527), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHvolcite] = ACTIONS(12527), + [anon_sym_BSLASHVolcite] = ACTIONS(12527), + [anon_sym_BSLASHpvolcite] = ACTIONS(12527), + [anon_sym_BSLASHPvolcite] = ACTIONS(12527), + [anon_sym_BSLASHfvolcite] = ACTIONS(12527), + [anon_sym_BSLASHftvolcite] = ACTIONS(12527), + [anon_sym_BSLASHsvolcite] = ACTIONS(12527), + [anon_sym_BSLASHSvolcite] = ACTIONS(12527), + [anon_sym_BSLASHtvolcite] = ACTIONS(12527), + [anon_sym_BSLASHTvolcite] = ACTIONS(12527), + [anon_sym_BSLASHavolcite] = ACTIONS(12527), + [anon_sym_BSLASHAvolcite] = ACTIONS(12527), + [anon_sym_BSLASHnotecite] = ACTIONS(12527), + [anon_sym_BSLASHpnotecite] = ACTIONS(12527), + [anon_sym_BSLASHPnotecite] = ACTIONS(12527), + [anon_sym_BSLASHfnotecite] = ACTIONS(12527), + [anon_sym_BSLASHusepackage] = ACTIONS(12527), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12527), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12527), + [anon_sym_BSLASHinclude] = ACTIONS(12527), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12527), + [anon_sym_BSLASHinput] = ACTIONS(12527), + [anon_sym_BSLASHsubfile] = ACTIONS(12527), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12527), + [anon_sym_BSLASHbibliography] = ACTIONS(12527), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12527), + [anon_sym_BSLASHincludesvg] = ACTIONS(12527), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12527), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12527), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12527), + [anon_sym_BSLASHimport] = ACTIONS(12527), + [anon_sym_BSLASHsubimport] = ACTIONS(12527), + [anon_sym_BSLASHinputfrom] = ACTIONS(12527), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12527), + [anon_sym_BSLASHincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHlabel] = ACTIONS(12527), + [anon_sym_BSLASHref] = ACTIONS(12527), + [anon_sym_BSLASHvref] = ACTIONS(12527), + [anon_sym_BSLASHVref] = ACTIONS(12527), + [anon_sym_BSLASHautoref] = ACTIONS(12527), + [anon_sym_BSLASHpageref] = ACTIONS(12527), + [anon_sym_BSLASHcref] = ACTIONS(12527), + [anon_sym_BSLASHCref] = ACTIONS(12527), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnameCref] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHlabelcref] = ACTIONS(12527), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12527), + [anon_sym_BSLASHeqref] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange] = ACTIONS(12527), + [anon_sym_BSLASHCrefrange] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewlabel] = ACTIONS(12527), + [anon_sym_BSLASHnewcommand] = ACTIONS(12527), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12527), + [anon_sym_BSLASHgls] = ACTIONS(12527), + [anon_sym_BSLASHGls] = ACTIONS(12527), + [anon_sym_BSLASHGLS] = ACTIONS(12527), + [anon_sym_BSLASHglspl] = ACTIONS(12527), + [anon_sym_BSLASHGlspl] = ACTIONS(12527), + [anon_sym_BSLASHGLSpl] = ACTIONS(12527), + [anon_sym_BSLASHglsdisp] = ACTIONS(12527), + [anon_sym_BSLASHglslink] = ACTIONS(12527), + [anon_sym_BSLASHglstext] = ACTIONS(12527), + [anon_sym_BSLASHGlstext] = ACTIONS(12527), + [anon_sym_BSLASHGLStext] = ACTIONS(12527), + [anon_sym_BSLASHglsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12527), + [anon_sym_BSLASHglsplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSplural] = ACTIONS(12527), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHglsname] = ACTIONS(12527), + [anon_sym_BSLASHGlsname] = ACTIONS(12527), + [anon_sym_BSLASHGLSname] = ACTIONS(12527), + [anon_sym_BSLASHglssymbol] = ACTIONS(12527), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12527), + [anon_sym_BSLASHglsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12527), + [anon_sym_BSLASHglsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12527), + [anon_sym_BSLASHglsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12527), + [anon_sym_BSLASHglsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12527), + [anon_sym_BSLASHglsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12527), + [anon_sym_BSLASHnewacronym] = ACTIONS(12527), + [anon_sym_BSLASHacrshort] = ACTIONS(12527), + [anon_sym_BSLASHAcrshort] = ACTIONS(12527), + [anon_sym_BSLASHACRshort] = ACTIONS(12527), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12527), + [anon_sym_BSLASHacrlong] = ACTIONS(12527), + [anon_sym_BSLASHAcrlong] = ACTIONS(12527), + [anon_sym_BSLASHACRlong] = ACTIONS(12527), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12527), + [anon_sym_BSLASHacrfull] = ACTIONS(12527), + [anon_sym_BSLASHAcrfull] = ACTIONS(12527), + [anon_sym_BSLASHACRfull] = ACTIONS(12527), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12527), + [anon_sym_BSLASHacs] = ACTIONS(12527), + [anon_sym_BSLASHAcs] = ACTIONS(12527), + [anon_sym_BSLASHacsp] = ACTIONS(12527), + [anon_sym_BSLASHAcsp] = ACTIONS(12527), + [anon_sym_BSLASHacl] = ACTIONS(12527), + [anon_sym_BSLASHAcl] = ACTIONS(12527), + [anon_sym_BSLASHaclp] = ACTIONS(12527), + [anon_sym_BSLASHAclp] = ACTIONS(12527), + [anon_sym_BSLASHacf] = ACTIONS(12527), + [anon_sym_BSLASHAcf] = ACTIONS(12527), + [anon_sym_BSLASHacfp] = ACTIONS(12527), + [anon_sym_BSLASHAcfp] = ACTIONS(12527), + [anon_sym_BSLASHac] = ACTIONS(12527), + [anon_sym_BSLASHAc] = ACTIONS(12527), + [anon_sym_BSLASHacp] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12527), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12527), + [anon_sym_BSLASHcolor] = ACTIONS(12527), + [anon_sym_BSLASHcolorbox] = ACTIONS(12527), + [anon_sym_BSLASHtextcolor] = ACTIONS(12527), + [anon_sym_BSLASHpagecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12527), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12527), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12527), + }, + [1819] = { + [sym_generic_command_name] = ACTIONS(12531), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12531), + [anon_sym_LBRACK] = ACTIONS(12529), + [anon_sym_RBRACK] = ACTIONS(12529), + [anon_sym_LBRACE] = ACTIONS(12529), + [anon_sym_RBRACE] = ACTIONS(12529), + [anon_sym_LPAREN] = ACTIONS(12529), + [anon_sym_COMMA] = ACTIONS(12529), + [anon_sym_EQ] = ACTIONS(12529), + [sym_word] = ACTIONS(12529), + [sym_param] = ACTIONS(12529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12529), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12529), + [anon_sym_DOLLAR] = ACTIONS(12531), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12529), + [anon_sym_BSLASHbegin] = ACTIONS(12531), + [anon_sym_BSLASHcaption] = ACTIONS(12531), + [anon_sym_BSLASHcite] = ACTIONS(12531), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCite] = ACTIONS(12531), + [anon_sym_BSLASHnocite] = ACTIONS(12531), + [anon_sym_BSLASHcitet] = ACTIONS(12531), + [anon_sym_BSLASHcitep] = ACTIONS(12531), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteauthor] = ACTIONS(12531), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12531), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitetitle] = ACTIONS(12531), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteyear] = ACTIONS(12531), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitedate] = ACTIONS(12531), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteurl] = ACTIONS(12531), + [anon_sym_BSLASHfullcite] = ACTIONS(12531), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12531), + [anon_sym_BSLASHcitealt] = ACTIONS(12531), + [anon_sym_BSLASHcitealp] = ACTIONS(12531), + [anon_sym_BSLASHcitetext] = ACTIONS(12531), + [anon_sym_BSLASHparencite] = ACTIONS(12531), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHParencite] = ACTIONS(12531), + [anon_sym_BSLASHfootcite] = ACTIONS(12531), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12531), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12531), + [anon_sym_BSLASHtextcite] = ACTIONS(12531), + [anon_sym_BSLASHTextcite] = ACTIONS(12531), + [anon_sym_BSLASHsmartcite] = ACTIONS(12531), + [anon_sym_BSLASHSmartcite] = ACTIONS(12531), + [anon_sym_BSLASHsupercite] = ACTIONS(12531), + [anon_sym_BSLASHautocite] = ACTIONS(12531), + [anon_sym_BSLASHAutocite] = ACTIONS(12531), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHvolcite] = ACTIONS(12531), + [anon_sym_BSLASHVolcite] = ACTIONS(12531), + [anon_sym_BSLASHpvolcite] = ACTIONS(12531), + [anon_sym_BSLASHPvolcite] = ACTIONS(12531), + [anon_sym_BSLASHfvolcite] = ACTIONS(12531), + [anon_sym_BSLASHftvolcite] = ACTIONS(12531), + [anon_sym_BSLASHsvolcite] = ACTIONS(12531), + [anon_sym_BSLASHSvolcite] = ACTIONS(12531), + [anon_sym_BSLASHtvolcite] = ACTIONS(12531), + [anon_sym_BSLASHTvolcite] = ACTIONS(12531), + [anon_sym_BSLASHavolcite] = ACTIONS(12531), + [anon_sym_BSLASHAvolcite] = ACTIONS(12531), + [anon_sym_BSLASHnotecite] = ACTIONS(12531), + [anon_sym_BSLASHpnotecite] = ACTIONS(12531), + [anon_sym_BSLASHPnotecite] = ACTIONS(12531), + [anon_sym_BSLASHfnotecite] = ACTIONS(12531), + [anon_sym_BSLASHusepackage] = ACTIONS(12531), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12531), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12531), + [anon_sym_BSLASHinclude] = ACTIONS(12531), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12531), + [anon_sym_BSLASHinput] = ACTIONS(12531), + [anon_sym_BSLASHsubfile] = ACTIONS(12531), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12531), + [anon_sym_BSLASHbibliography] = ACTIONS(12531), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12531), + [anon_sym_BSLASHincludesvg] = ACTIONS(12531), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12531), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12531), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12531), + [anon_sym_BSLASHimport] = ACTIONS(12531), + [anon_sym_BSLASHsubimport] = ACTIONS(12531), + [anon_sym_BSLASHinputfrom] = ACTIONS(12531), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12531), + [anon_sym_BSLASHincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHlabel] = ACTIONS(12531), + [anon_sym_BSLASHref] = ACTIONS(12531), + [anon_sym_BSLASHvref] = ACTIONS(12531), + [anon_sym_BSLASHVref] = ACTIONS(12531), + [anon_sym_BSLASHautoref] = ACTIONS(12531), + [anon_sym_BSLASHpageref] = ACTIONS(12531), + [anon_sym_BSLASHcref] = ACTIONS(12531), + [anon_sym_BSLASHCref] = ACTIONS(12531), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnameCref] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHlabelcref] = ACTIONS(12531), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12531), + [anon_sym_BSLASHeqref] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange] = ACTIONS(12531), + [anon_sym_BSLASHCrefrange] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewlabel] = ACTIONS(12531), + [anon_sym_BSLASHnewcommand] = ACTIONS(12531), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12531), + [anon_sym_BSLASHgls] = ACTIONS(12531), + [anon_sym_BSLASHGls] = ACTIONS(12531), + [anon_sym_BSLASHGLS] = ACTIONS(12531), + [anon_sym_BSLASHglspl] = ACTIONS(12531), + [anon_sym_BSLASHGlspl] = ACTIONS(12531), + [anon_sym_BSLASHGLSpl] = ACTIONS(12531), + [anon_sym_BSLASHglsdisp] = ACTIONS(12531), + [anon_sym_BSLASHglslink] = ACTIONS(12531), + [anon_sym_BSLASHglstext] = ACTIONS(12531), + [anon_sym_BSLASHGlstext] = ACTIONS(12531), + [anon_sym_BSLASHGLStext] = ACTIONS(12531), + [anon_sym_BSLASHglsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12531), + [anon_sym_BSLASHglsplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSplural] = ACTIONS(12531), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHglsname] = ACTIONS(12531), + [anon_sym_BSLASHGlsname] = ACTIONS(12531), + [anon_sym_BSLASHGLSname] = ACTIONS(12531), + [anon_sym_BSLASHglssymbol] = ACTIONS(12531), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12531), + [anon_sym_BSLASHglsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12531), + [anon_sym_BSLASHglsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12531), + [anon_sym_BSLASHglsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12531), + [anon_sym_BSLASHglsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12531), + [anon_sym_BSLASHglsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12531), + [anon_sym_BSLASHnewacronym] = ACTIONS(12531), + [anon_sym_BSLASHacrshort] = ACTIONS(12531), + [anon_sym_BSLASHAcrshort] = ACTIONS(12531), + [anon_sym_BSLASHACRshort] = ACTIONS(12531), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12531), + [anon_sym_BSLASHacrlong] = ACTIONS(12531), + [anon_sym_BSLASHAcrlong] = ACTIONS(12531), + [anon_sym_BSLASHACRlong] = ACTIONS(12531), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12531), + [anon_sym_BSLASHacrfull] = ACTIONS(12531), + [anon_sym_BSLASHAcrfull] = ACTIONS(12531), + [anon_sym_BSLASHACRfull] = ACTIONS(12531), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12531), + [anon_sym_BSLASHacs] = ACTIONS(12531), + [anon_sym_BSLASHAcs] = ACTIONS(12531), + [anon_sym_BSLASHacsp] = ACTIONS(12531), + [anon_sym_BSLASHAcsp] = ACTIONS(12531), + [anon_sym_BSLASHacl] = ACTIONS(12531), + [anon_sym_BSLASHAcl] = ACTIONS(12531), + [anon_sym_BSLASHaclp] = ACTIONS(12531), + [anon_sym_BSLASHAclp] = ACTIONS(12531), + [anon_sym_BSLASHacf] = ACTIONS(12531), + [anon_sym_BSLASHAcf] = ACTIONS(12531), + [anon_sym_BSLASHacfp] = ACTIONS(12531), + [anon_sym_BSLASHAcfp] = ACTIONS(12531), + [anon_sym_BSLASHac] = ACTIONS(12531), + [anon_sym_BSLASHAc] = ACTIONS(12531), + [anon_sym_BSLASHacp] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12531), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12531), + [anon_sym_BSLASHcolor] = ACTIONS(12531), + [anon_sym_BSLASHcolorbox] = ACTIONS(12531), + [anon_sym_BSLASHtextcolor] = ACTIONS(12531), + [anon_sym_BSLASHpagecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12531), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12531), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12531), + }, + [1820] = { + [sym_generic_command_name] = ACTIONS(12539), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12539), + [anon_sym_LBRACK] = ACTIONS(12537), + [anon_sym_RBRACK] = ACTIONS(12537), + [anon_sym_LBRACE] = ACTIONS(12537), + [anon_sym_RBRACE] = ACTIONS(12537), + [anon_sym_LPAREN] = ACTIONS(12537), + [anon_sym_COMMA] = ACTIONS(12537), + [anon_sym_EQ] = ACTIONS(12537), + [sym_word] = ACTIONS(12537), + [sym_param] = ACTIONS(12537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12537), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12537), + [anon_sym_DOLLAR] = ACTIONS(12539), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12537), + [anon_sym_BSLASHbegin] = ACTIONS(12539), + [anon_sym_BSLASHcaption] = ACTIONS(12539), + [anon_sym_BSLASHcite] = ACTIONS(12539), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCite] = ACTIONS(12539), + [anon_sym_BSLASHnocite] = ACTIONS(12539), + [anon_sym_BSLASHcitet] = ACTIONS(12539), + [anon_sym_BSLASHcitep] = ACTIONS(12539), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteauthor] = ACTIONS(12539), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12539), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitetitle] = ACTIONS(12539), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteyear] = ACTIONS(12539), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitedate] = ACTIONS(12539), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteurl] = ACTIONS(12539), + [anon_sym_BSLASHfullcite] = ACTIONS(12539), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12539), + [anon_sym_BSLASHcitealt] = ACTIONS(12539), + [anon_sym_BSLASHcitealp] = ACTIONS(12539), + [anon_sym_BSLASHcitetext] = ACTIONS(12539), + [anon_sym_BSLASHparencite] = ACTIONS(12539), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHParencite] = ACTIONS(12539), + [anon_sym_BSLASHfootcite] = ACTIONS(12539), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12539), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12539), + [anon_sym_BSLASHtextcite] = ACTIONS(12539), + [anon_sym_BSLASHTextcite] = ACTIONS(12539), + [anon_sym_BSLASHsmartcite] = ACTIONS(12539), + [anon_sym_BSLASHSmartcite] = ACTIONS(12539), + [anon_sym_BSLASHsupercite] = ACTIONS(12539), + [anon_sym_BSLASHautocite] = ACTIONS(12539), + [anon_sym_BSLASHAutocite] = ACTIONS(12539), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHvolcite] = ACTIONS(12539), + [anon_sym_BSLASHVolcite] = ACTIONS(12539), + [anon_sym_BSLASHpvolcite] = ACTIONS(12539), + [anon_sym_BSLASHPvolcite] = ACTIONS(12539), + [anon_sym_BSLASHfvolcite] = ACTIONS(12539), + [anon_sym_BSLASHftvolcite] = ACTIONS(12539), + [anon_sym_BSLASHsvolcite] = ACTIONS(12539), + [anon_sym_BSLASHSvolcite] = ACTIONS(12539), + [anon_sym_BSLASHtvolcite] = ACTIONS(12539), + [anon_sym_BSLASHTvolcite] = ACTIONS(12539), + [anon_sym_BSLASHavolcite] = ACTIONS(12539), + [anon_sym_BSLASHAvolcite] = ACTIONS(12539), + [anon_sym_BSLASHnotecite] = ACTIONS(12539), + [anon_sym_BSLASHpnotecite] = ACTIONS(12539), + [anon_sym_BSLASHPnotecite] = ACTIONS(12539), + [anon_sym_BSLASHfnotecite] = ACTIONS(12539), + [anon_sym_BSLASHusepackage] = ACTIONS(12539), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12539), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12539), + [anon_sym_BSLASHinclude] = ACTIONS(12539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12539), + [anon_sym_BSLASHinput] = ACTIONS(12539), + [anon_sym_BSLASHsubfile] = ACTIONS(12539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12539), + [anon_sym_BSLASHbibliography] = ACTIONS(12539), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12539), + [anon_sym_BSLASHincludesvg] = ACTIONS(12539), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12539), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12539), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12539), + [anon_sym_BSLASHimport] = ACTIONS(12539), + [anon_sym_BSLASHsubimport] = ACTIONS(12539), + [anon_sym_BSLASHinputfrom] = ACTIONS(12539), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12539), + [anon_sym_BSLASHincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHlabel] = ACTIONS(12539), + [anon_sym_BSLASHref] = ACTIONS(12539), + [anon_sym_BSLASHvref] = ACTIONS(12539), + [anon_sym_BSLASHVref] = ACTIONS(12539), + [anon_sym_BSLASHautoref] = ACTIONS(12539), + [anon_sym_BSLASHpageref] = ACTIONS(12539), + [anon_sym_BSLASHcref] = ACTIONS(12539), + [anon_sym_BSLASHCref] = ACTIONS(12539), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnameCref] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHlabelcref] = ACTIONS(12539), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12539), + [anon_sym_BSLASHeqref] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange] = ACTIONS(12539), + [anon_sym_BSLASHCrefrange] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewlabel] = ACTIONS(12539), + [anon_sym_BSLASHnewcommand] = ACTIONS(12539), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12539), + [anon_sym_BSLASHgls] = ACTIONS(12539), + [anon_sym_BSLASHGls] = ACTIONS(12539), + [anon_sym_BSLASHGLS] = ACTIONS(12539), + [anon_sym_BSLASHglspl] = ACTIONS(12539), + [anon_sym_BSLASHGlspl] = ACTIONS(12539), + [anon_sym_BSLASHGLSpl] = ACTIONS(12539), + [anon_sym_BSLASHglsdisp] = ACTIONS(12539), + [anon_sym_BSLASHglslink] = ACTIONS(12539), + [anon_sym_BSLASHglstext] = ACTIONS(12539), + [anon_sym_BSLASHGlstext] = ACTIONS(12539), + [anon_sym_BSLASHGLStext] = ACTIONS(12539), + [anon_sym_BSLASHglsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12539), + [anon_sym_BSLASHglsplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSplural] = ACTIONS(12539), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHglsname] = ACTIONS(12539), + [anon_sym_BSLASHGlsname] = ACTIONS(12539), + [anon_sym_BSLASHGLSname] = ACTIONS(12539), + [anon_sym_BSLASHglssymbol] = ACTIONS(12539), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12539), + [anon_sym_BSLASHglsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12539), + [anon_sym_BSLASHglsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12539), + [anon_sym_BSLASHglsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12539), + [anon_sym_BSLASHglsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12539), + [anon_sym_BSLASHglsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12539), + [anon_sym_BSLASHnewacronym] = ACTIONS(12539), + [anon_sym_BSLASHacrshort] = ACTIONS(12539), + [anon_sym_BSLASHAcrshort] = ACTIONS(12539), + [anon_sym_BSLASHACRshort] = ACTIONS(12539), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12539), + [anon_sym_BSLASHacrlong] = ACTIONS(12539), + [anon_sym_BSLASHAcrlong] = ACTIONS(12539), + [anon_sym_BSLASHACRlong] = ACTIONS(12539), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12539), + [anon_sym_BSLASHacrfull] = ACTIONS(12539), + [anon_sym_BSLASHAcrfull] = ACTIONS(12539), + [anon_sym_BSLASHACRfull] = ACTIONS(12539), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12539), + [anon_sym_BSLASHacs] = ACTIONS(12539), + [anon_sym_BSLASHAcs] = ACTIONS(12539), + [anon_sym_BSLASHacsp] = ACTIONS(12539), + [anon_sym_BSLASHAcsp] = ACTIONS(12539), + [anon_sym_BSLASHacl] = ACTIONS(12539), + [anon_sym_BSLASHAcl] = ACTIONS(12539), + [anon_sym_BSLASHaclp] = ACTIONS(12539), + [anon_sym_BSLASHAclp] = ACTIONS(12539), + [anon_sym_BSLASHacf] = ACTIONS(12539), + [anon_sym_BSLASHAcf] = ACTIONS(12539), + [anon_sym_BSLASHacfp] = ACTIONS(12539), + [anon_sym_BSLASHAcfp] = ACTIONS(12539), + [anon_sym_BSLASHac] = ACTIONS(12539), + [anon_sym_BSLASHAc] = ACTIONS(12539), + [anon_sym_BSLASHacp] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12539), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12539), + [anon_sym_BSLASHcolor] = ACTIONS(12539), + [anon_sym_BSLASHcolorbox] = ACTIONS(12539), + [anon_sym_BSLASHtextcolor] = ACTIONS(12539), + [anon_sym_BSLASHpagecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12539), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12539), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12539), + }, + [1821] = { + [sym_brace_group] = STATE(3283), + [sym_generic_command_name] = ACTIONS(12058), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12056), + [anon_sym_RBRACK] = ACTIONS(12056), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12056), + [anon_sym_LPAREN] = ACTIONS(12056), + [anon_sym_COMMA] = ACTIONS(12056), + [anon_sym_EQ] = ACTIONS(12056), + [sym_word] = ACTIONS(12056), + [sym_param] = ACTIONS(12056), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12056), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12056), + [anon_sym_DOLLAR] = ACTIONS(12058), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12056), + [anon_sym_BSLASHbegin] = ACTIONS(12058), + [anon_sym_BSLASHcaption] = ACTIONS(12058), + [anon_sym_BSLASHcite] = ACTIONS(12058), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCite] = ACTIONS(12058), + [anon_sym_BSLASHnocite] = ACTIONS(12058), + [anon_sym_BSLASHcitet] = ACTIONS(12058), + [anon_sym_BSLASHcitep] = ACTIONS(12058), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteauthor] = ACTIONS(12058), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12058), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitetitle] = ACTIONS(12058), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteyear] = ACTIONS(12058), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12056), + [anon_sym_BSLASHcitedate] = ACTIONS(12058), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12056), + [anon_sym_BSLASHciteurl] = ACTIONS(12058), + [anon_sym_BSLASHfullcite] = ACTIONS(12058), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12058), + [anon_sym_BSLASHcitealt] = ACTIONS(12058), + [anon_sym_BSLASHcitealp] = ACTIONS(12058), + [anon_sym_BSLASHcitetext] = ACTIONS(12058), + [anon_sym_BSLASHparencite] = ACTIONS(12058), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHParencite] = ACTIONS(12058), + [anon_sym_BSLASHfootcite] = ACTIONS(12058), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12058), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12058), + [anon_sym_BSLASHtextcite] = ACTIONS(12058), + [anon_sym_BSLASHTextcite] = ACTIONS(12058), + [anon_sym_BSLASHsmartcite] = ACTIONS(12058), + [anon_sym_BSLASHSmartcite] = ACTIONS(12058), + [anon_sym_BSLASHsupercite] = ACTIONS(12058), + [anon_sym_BSLASHautocite] = ACTIONS(12058), + [anon_sym_BSLASHAutocite] = ACTIONS(12058), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12056), + [anon_sym_BSLASHvolcite] = ACTIONS(12058), + [anon_sym_BSLASHVolcite] = ACTIONS(12058), + [anon_sym_BSLASHpvolcite] = ACTIONS(12058), + [anon_sym_BSLASHPvolcite] = ACTIONS(12058), + [anon_sym_BSLASHfvolcite] = ACTIONS(12058), + [anon_sym_BSLASHftvolcite] = ACTIONS(12058), + [anon_sym_BSLASHsvolcite] = ACTIONS(12058), + [anon_sym_BSLASHSvolcite] = ACTIONS(12058), + [anon_sym_BSLASHtvolcite] = ACTIONS(12058), + [anon_sym_BSLASHTvolcite] = ACTIONS(12058), + [anon_sym_BSLASHavolcite] = ACTIONS(12058), + [anon_sym_BSLASHAvolcite] = ACTIONS(12058), + [anon_sym_BSLASHnotecite] = ACTIONS(12058), + [anon_sym_BSLASHpnotecite] = ACTIONS(12058), + [anon_sym_BSLASHPnotecite] = ACTIONS(12058), + [anon_sym_BSLASHfnotecite] = ACTIONS(12058), + [anon_sym_BSLASHusepackage] = ACTIONS(12058), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12058), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12058), + [anon_sym_BSLASHinclude] = ACTIONS(12058), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12058), + [anon_sym_BSLASHinput] = ACTIONS(12058), + [anon_sym_BSLASHsubfile] = ACTIONS(12058), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12058), + [anon_sym_BSLASHbibliography] = ACTIONS(12058), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12058), + [anon_sym_BSLASHincludesvg] = ACTIONS(12058), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12058), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12058), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12058), + [anon_sym_BSLASHimport] = ACTIONS(12058), + [anon_sym_BSLASHsubimport] = ACTIONS(12058), + [anon_sym_BSLASHinputfrom] = ACTIONS(12058), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12058), + [anon_sym_BSLASHincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12058), + [anon_sym_BSLASHlabel] = ACTIONS(12058), + [anon_sym_BSLASHref] = ACTIONS(12058), + [anon_sym_BSLASHvref] = ACTIONS(12058), + [anon_sym_BSLASHVref] = ACTIONS(12058), + [anon_sym_BSLASHautoref] = ACTIONS(12058), + [anon_sym_BSLASHpageref] = ACTIONS(12058), + [anon_sym_BSLASHcref] = ACTIONS(12058), + [anon_sym_BSLASHCref] = ACTIONS(12058), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnameCref] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12058), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12058), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12058), + [anon_sym_BSLASHlabelcref] = ACTIONS(12058), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12058), + [anon_sym_BSLASHeqref] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange] = ACTIONS(12058), + [anon_sym_BSLASHCrefrange] = ACTIONS(12058), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewlabel] = ACTIONS(12058), + [anon_sym_BSLASHnewcommand] = ACTIONS(12058), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12058), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12056), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12058), + [anon_sym_BSLASHgls] = ACTIONS(12058), + [anon_sym_BSLASHGls] = ACTIONS(12058), + [anon_sym_BSLASHGLS] = ACTIONS(12058), + [anon_sym_BSLASHglspl] = ACTIONS(12058), + [anon_sym_BSLASHGlspl] = ACTIONS(12058), + [anon_sym_BSLASHGLSpl] = ACTIONS(12058), + [anon_sym_BSLASHglsdisp] = ACTIONS(12058), + [anon_sym_BSLASHglslink] = ACTIONS(12058), + [anon_sym_BSLASHglstext] = ACTIONS(12058), + [anon_sym_BSLASHGlstext] = ACTIONS(12058), + [anon_sym_BSLASHGLStext] = ACTIONS(12058), + [anon_sym_BSLASHglsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12058), + [anon_sym_BSLASHglsplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSplural] = ACTIONS(12058), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12058), + [anon_sym_BSLASHglsname] = ACTIONS(12058), + [anon_sym_BSLASHGlsname] = ACTIONS(12058), + [anon_sym_BSLASHGLSname] = ACTIONS(12058), + [anon_sym_BSLASHglssymbol] = ACTIONS(12058), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12058), + [anon_sym_BSLASHglsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12058), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12058), + [anon_sym_BSLASHglsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12058), + [anon_sym_BSLASHglsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12058), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12058), + [anon_sym_BSLASHglsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12058), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12058), + [anon_sym_BSLASHglsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12058), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12058), + [anon_sym_BSLASHnewacronym] = ACTIONS(12058), + [anon_sym_BSLASHacrshort] = ACTIONS(12058), + [anon_sym_BSLASHAcrshort] = ACTIONS(12058), + [anon_sym_BSLASHACRshort] = ACTIONS(12058), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12058), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12058), + [anon_sym_BSLASHacrlong] = ACTIONS(12058), + [anon_sym_BSLASHAcrlong] = ACTIONS(12058), + [anon_sym_BSLASHACRlong] = ACTIONS(12058), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12058), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12058), + [anon_sym_BSLASHacrfull] = ACTIONS(12058), + [anon_sym_BSLASHAcrfull] = ACTIONS(12058), + [anon_sym_BSLASHACRfull] = ACTIONS(12058), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12058), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12058), + [anon_sym_BSLASHacs] = ACTIONS(12058), + [anon_sym_BSLASHAcs] = ACTIONS(12058), + [anon_sym_BSLASHacsp] = ACTIONS(12058), + [anon_sym_BSLASHAcsp] = ACTIONS(12058), + [anon_sym_BSLASHacl] = ACTIONS(12058), + [anon_sym_BSLASHAcl] = ACTIONS(12058), + [anon_sym_BSLASHaclp] = ACTIONS(12058), + [anon_sym_BSLASHAclp] = ACTIONS(12058), + [anon_sym_BSLASHacf] = ACTIONS(12058), + [anon_sym_BSLASHAcf] = ACTIONS(12058), + [anon_sym_BSLASHacfp] = ACTIONS(12058), + [anon_sym_BSLASHAcfp] = ACTIONS(12058), + [anon_sym_BSLASHac] = ACTIONS(12058), + [anon_sym_BSLASHAc] = ACTIONS(12058), + [anon_sym_BSLASHacp] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12058), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12058), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12058), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12058), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12058), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12058), + [anon_sym_BSLASHcolor] = ACTIONS(12058), + [anon_sym_BSLASHcolorbox] = ACTIONS(12058), + [anon_sym_BSLASHtextcolor] = ACTIONS(12058), + [anon_sym_BSLASHpagecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12058), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12058), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12058), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12058), + }, + [1822] = { + [sym_generic_command_name] = ACTIONS(12221), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12221), + [anon_sym_LBRACK] = ACTIONS(12219), + [anon_sym_RBRACK] = ACTIONS(12219), + [anon_sym_LBRACE] = ACTIONS(12795), + [anon_sym_RBRACE] = ACTIONS(12219), + [anon_sym_LPAREN] = ACTIONS(12219), + [anon_sym_COMMA] = ACTIONS(12219), + [anon_sym_EQ] = ACTIONS(12219), + [sym_word] = ACTIONS(12219), + [sym_param] = ACTIONS(12219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12219), + [anon_sym_DOLLAR] = ACTIONS(12221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12219), + [anon_sym_BSLASHbegin] = ACTIONS(12221), + [anon_sym_BSLASHcaption] = ACTIONS(12221), + [anon_sym_BSLASHcite] = ACTIONS(12221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCite] = ACTIONS(12221), + [anon_sym_BSLASHnocite] = ACTIONS(12221), + [anon_sym_BSLASHcitet] = ACTIONS(12221), + [anon_sym_BSLASHcitep] = ACTIONS(12221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteauthor] = ACTIONS(12221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitetitle] = ACTIONS(12221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteyear] = ACTIONS(12221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitedate] = ACTIONS(12221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteurl] = ACTIONS(12221), + [anon_sym_BSLASHfullcite] = ACTIONS(12221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12221), + [anon_sym_BSLASHcitealt] = ACTIONS(12221), + [anon_sym_BSLASHcitealp] = ACTIONS(12221), + [anon_sym_BSLASHcitetext] = ACTIONS(12221), + [anon_sym_BSLASHparencite] = ACTIONS(12221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHParencite] = ACTIONS(12221), + [anon_sym_BSLASHfootcite] = ACTIONS(12221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12221), + [anon_sym_BSLASHtextcite] = ACTIONS(12221), + [anon_sym_BSLASHTextcite] = ACTIONS(12221), + [anon_sym_BSLASHsmartcite] = ACTIONS(12221), + [anon_sym_BSLASHSmartcite] = ACTIONS(12221), + [anon_sym_BSLASHsupercite] = ACTIONS(12221), + [anon_sym_BSLASHautocite] = ACTIONS(12221), + [anon_sym_BSLASHAutocite] = ACTIONS(12221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHvolcite] = ACTIONS(12221), + [anon_sym_BSLASHVolcite] = ACTIONS(12221), + [anon_sym_BSLASHpvolcite] = ACTIONS(12221), + [anon_sym_BSLASHPvolcite] = ACTIONS(12221), + [anon_sym_BSLASHfvolcite] = ACTIONS(12221), + [anon_sym_BSLASHftvolcite] = ACTIONS(12221), + [anon_sym_BSLASHsvolcite] = ACTIONS(12221), + [anon_sym_BSLASHSvolcite] = ACTIONS(12221), + [anon_sym_BSLASHtvolcite] = ACTIONS(12221), + [anon_sym_BSLASHTvolcite] = ACTIONS(12221), + [anon_sym_BSLASHavolcite] = ACTIONS(12221), + [anon_sym_BSLASHAvolcite] = ACTIONS(12221), + [anon_sym_BSLASHnotecite] = ACTIONS(12221), + [anon_sym_BSLASHpnotecite] = ACTIONS(12221), + [anon_sym_BSLASHPnotecite] = ACTIONS(12221), + [anon_sym_BSLASHfnotecite] = ACTIONS(12221), + [anon_sym_BSLASHusepackage] = ACTIONS(12221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12221), + [anon_sym_BSLASHinclude] = ACTIONS(12221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12221), + [anon_sym_BSLASHinput] = ACTIONS(12221), + [anon_sym_BSLASHsubfile] = ACTIONS(12221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12221), + [anon_sym_BSLASHbibliography] = ACTIONS(12221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12221), + [anon_sym_BSLASHincludesvg] = ACTIONS(12221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12221), + [anon_sym_BSLASHimport] = ACTIONS(12221), + [anon_sym_BSLASHsubimport] = ACTIONS(12221), + [anon_sym_BSLASHinputfrom] = ACTIONS(12221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12221), + [anon_sym_BSLASHincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHlabel] = ACTIONS(12221), + [anon_sym_BSLASHref] = ACTIONS(12221), + [anon_sym_BSLASHvref] = ACTIONS(12221), + [anon_sym_BSLASHVref] = ACTIONS(12221), + [anon_sym_BSLASHautoref] = ACTIONS(12221), + [anon_sym_BSLASHpageref] = ACTIONS(12221), + [anon_sym_BSLASHcref] = ACTIONS(12221), + [anon_sym_BSLASHCref] = ACTIONS(12221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnameCref] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHlabelcref] = ACTIONS(12221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12221), + [anon_sym_BSLASHeqref] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange] = ACTIONS(12221), + [anon_sym_BSLASHCrefrange] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewlabel] = ACTIONS(12221), + [anon_sym_BSLASHnewcommand] = ACTIONS(12221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12221), + [anon_sym_BSLASHgls] = ACTIONS(12221), + [anon_sym_BSLASHGls] = ACTIONS(12221), + [anon_sym_BSLASHGLS] = ACTIONS(12221), + [anon_sym_BSLASHglspl] = ACTIONS(12221), + [anon_sym_BSLASHGlspl] = ACTIONS(12221), + [anon_sym_BSLASHGLSpl] = ACTIONS(12221), + [anon_sym_BSLASHglsdisp] = ACTIONS(12221), + [anon_sym_BSLASHglslink] = ACTIONS(12221), + [anon_sym_BSLASHglstext] = ACTIONS(12221), + [anon_sym_BSLASHGlstext] = ACTIONS(12221), + [anon_sym_BSLASHGLStext] = ACTIONS(12221), + [anon_sym_BSLASHglsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12221), + [anon_sym_BSLASHglsplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSplural] = ACTIONS(12221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHglsname] = ACTIONS(12221), + [anon_sym_BSLASHGlsname] = ACTIONS(12221), + [anon_sym_BSLASHGLSname] = ACTIONS(12221), + [anon_sym_BSLASHglssymbol] = ACTIONS(12221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12221), + [anon_sym_BSLASHglsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12221), + [anon_sym_BSLASHglsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12221), + [anon_sym_BSLASHglsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12221), + [anon_sym_BSLASHglsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12221), + [anon_sym_BSLASHglsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12221), + [anon_sym_BSLASHnewacronym] = ACTIONS(12221), + [anon_sym_BSLASHacrshort] = ACTIONS(12221), + [anon_sym_BSLASHAcrshort] = ACTIONS(12221), + [anon_sym_BSLASHACRshort] = ACTIONS(12221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12221), + [anon_sym_BSLASHacrlong] = ACTIONS(12221), + [anon_sym_BSLASHAcrlong] = ACTIONS(12221), + [anon_sym_BSLASHACRlong] = ACTIONS(12221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12221), + [anon_sym_BSLASHacrfull] = ACTIONS(12221), + [anon_sym_BSLASHAcrfull] = ACTIONS(12221), + [anon_sym_BSLASHACRfull] = ACTIONS(12221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12221), + [anon_sym_BSLASHacs] = ACTIONS(12221), + [anon_sym_BSLASHAcs] = ACTIONS(12221), + [anon_sym_BSLASHacsp] = ACTIONS(12221), + [anon_sym_BSLASHAcsp] = ACTIONS(12221), + [anon_sym_BSLASHacl] = ACTIONS(12221), + [anon_sym_BSLASHAcl] = ACTIONS(12221), + [anon_sym_BSLASHaclp] = ACTIONS(12221), + [anon_sym_BSLASHAclp] = ACTIONS(12221), + [anon_sym_BSLASHacf] = ACTIONS(12221), + [anon_sym_BSLASHAcf] = ACTIONS(12221), + [anon_sym_BSLASHacfp] = ACTIONS(12221), + [anon_sym_BSLASHAcfp] = ACTIONS(12221), + [anon_sym_BSLASHac] = ACTIONS(12221), + [anon_sym_BSLASHAc] = ACTIONS(12221), + [anon_sym_BSLASHacp] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12221), + [anon_sym_BSLASHcolor] = ACTIONS(12221), + [anon_sym_BSLASHcolorbox] = ACTIONS(12221), + [anon_sym_BSLASHtextcolor] = ACTIONS(12221), + [anon_sym_BSLASHpagecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12221), + }, + [1823] = { + [sym_generic_command_name] = ACTIONS(12543), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12543), + [anon_sym_LBRACK] = ACTIONS(12541), + [anon_sym_RBRACK] = ACTIONS(12541), + [anon_sym_LBRACE] = ACTIONS(12541), + [anon_sym_RBRACE] = ACTIONS(12541), + [anon_sym_LPAREN] = ACTIONS(12541), + [anon_sym_COMMA] = ACTIONS(12541), + [anon_sym_EQ] = ACTIONS(12541), + [sym_word] = ACTIONS(12541), + [sym_param] = ACTIONS(12541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12541), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12541), + [anon_sym_DOLLAR] = ACTIONS(12543), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12541), + [anon_sym_BSLASHbegin] = ACTIONS(12543), + [anon_sym_BSLASHcaption] = ACTIONS(12543), + [anon_sym_BSLASHcite] = ACTIONS(12543), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCite] = ACTIONS(12543), + [anon_sym_BSLASHnocite] = ACTIONS(12543), + [anon_sym_BSLASHcitet] = ACTIONS(12543), + [anon_sym_BSLASHcitep] = ACTIONS(12543), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteauthor] = ACTIONS(12543), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12543), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitetitle] = ACTIONS(12543), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteyear] = ACTIONS(12543), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitedate] = ACTIONS(12543), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteurl] = ACTIONS(12543), + [anon_sym_BSLASHfullcite] = ACTIONS(12543), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12543), + [anon_sym_BSLASHcitealt] = ACTIONS(12543), + [anon_sym_BSLASHcitealp] = ACTIONS(12543), + [anon_sym_BSLASHcitetext] = ACTIONS(12543), + [anon_sym_BSLASHparencite] = ACTIONS(12543), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHParencite] = ACTIONS(12543), + [anon_sym_BSLASHfootcite] = ACTIONS(12543), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12543), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12543), + [anon_sym_BSLASHtextcite] = ACTIONS(12543), + [anon_sym_BSLASHTextcite] = ACTIONS(12543), + [anon_sym_BSLASHsmartcite] = ACTIONS(12543), + [anon_sym_BSLASHSmartcite] = ACTIONS(12543), + [anon_sym_BSLASHsupercite] = ACTIONS(12543), + [anon_sym_BSLASHautocite] = ACTIONS(12543), + [anon_sym_BSLASHAutocite] = ACTIONS(12543), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHvolcite] = ACTIONS(12543), + [anon_sym_BSLASHVolcite] = ACTIONS(12543), + [anon_sym_BSLASHpvolcite] = ACTIONS(12543), + [anon_sym_BSLASHPvolcite] = ACTIONS(12543), + [anon_sym_BSLASHfvolcite] = ACTIONS(12543), + [anon_sym_BSLASHftvolcite] = ACTIONS(12543), + [anon_sym_BSLASHsvolcite] = ACTIONS(12543), + [anon_sym_BSLASHSvolcite] = ACTIONS(12543), + [anon_sym_BSLASHtvolcite] = ACTIONS(12543), + [anon_sym_BSLASHTvolcite] = ACTIONS(12543), + [anon_sym_BSLASHavolcite] = ACTIONS(12543), + [anon_sym_BSLASHAvolcite] = ACTIONS(12543), + [anon_sym_BSLASHnotecite] = ACTIONS(12543), + [anon_sym_BSLASHpnotecite] = ACTIONS(12543), + [anon_sym_BSLASHPnotecite] = ACTIONS(12543), + [anon_sym_BSLASHfnotecite] = ACTIONS(12543), + [anon_sym_BSLASHusepackage] = ACTIONS(12543), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12543), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12543), + [anon_sym_BSLASHinclude] = ACTIONS(12543), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12543), + [anon_sym_BSLASHinput] = ACTIONS(12543), + [anon_sym_BSLASHsubfile] = ACTIONS(12543), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12543), + [anon_sym_BSLASHbibliography] = ACTIONS(12543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12543), + [anon_sym_BSLASHincludesvg] = ACTIONS(12543), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12543), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12543), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12543), + [anon_sym_BSLASHimport] = ACTIONS(12543), + [anon_sym_BSLASHsubimport] = ACTIONS(12543), + [anon_sym_BSLASHinputfrom] = ACTIONS(12543), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12543), + [anon_sym_BSLASHincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHlabel] = ACTIONS(12543), + [anon_sym_BSLASHref] = ACTIONS(12543), + [anon_sym_BSLASHvref] = ACTIONS(12543), + [anon_sym_BSLASHVref] = ACTIONS(12543), + [anon_sym_BSLASHautoref] = ACTIONS(12543), + [anon_sym_BSLASHpageref] = ACTIONS(12543), + [anon_sym_BSLASHcref] = ACTIONS(12543), + [anon_sym_BSLASHCref] = ACTIONS(12543), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnameCref] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHlabelcref] = ACTIONS(12543), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12543), + [anon_sym_BSLASHeqref] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange] = ACTIONS(12543), + [anon_sym_BSLASHCrefrange] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewlabel] = ACTIONS(12543), + [anon_sym_BSLASHnewcommand] = ACTIONS(12543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12543), + [anon_sym_BSLASHgls] = ACTIONS(12543), + [anon_sym_BSLASHGls] = ACTIONS(12543), + [anon_sym_BSLASHGLS] = ACTIONS(12543), + [anon_sym_BSLASHglspl] = ACTIONS(12543), + [anon_sym_BSLASHGlspl] = ACTIONS(12543), + [anon_sym_BSLASHGLSpl] = ACTIONS(12543), + [anon_sym_BSLASHglsdisp] = ACTIONS(12543), + [anon_sym_BSLASHglslink] = ACTIONS(12543), + [anon_sym_BSLASHglstext] = ACTIONS(12543), + [anon_sym_BSLASHGlstext] = ACTIONS(12543), + [anon_sym_BSLASHGLStext] = ACTIONS(12543), + [anon_sym_BSLASHglsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12543), + [anon_sym_BSLASHglsplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSplural] = ACTIONS(12543), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHglsname] = ACTIONS(12543), + [anon_sym_BSLASHGlsname] = ACTIONS(12543), + [anon_sym_BSLASHGLSname] = ACTIONS(12543), + [anon_sym_BSLASHglssymbol] = ACTIONS(12543), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12543), + [anon_sym_BSLASHglsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12543), + [anon_sym_BSLASHglsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12543), + [anon_sym_BSLASHglsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12543), + [anon_sym_BSLASHglsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12543), + [anon_sym_BSLASHglsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12543), + [anon_sym_BSLASHnewacronym] = ACTIONS(12543), + [anon_sym_BSLASHacrshort] = ACTIONS(12543), + [anon_sym_BSLASHAcrshort] = ACTIONS(12543), + [anon_sym_BSLASHACRshort] = ACTIONS(12543), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12543), + [anon_sym_BSLASHacrlong] = ACTIONS(12543), + [anon_sym_BSLASHAcrlong] = ACTIONS(12543), + [anon_sym_BSLASHACRlong] = ACTIONS(12543), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12543), + [anon_sym_BSLASHacrfull] = ACTIONS(12543), + [anon_sym_BSLASHAcrfull] = ACTIONS(12543), + [anon_sym_BSLASHACRfull] = ACTIONS(12543), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12543), + [anon_sym_BSLASHacs] = ACTIONS(12543), + [anon_sym_BSLASHAcs] = ACTIONS(12543), + [anon_sym_BSLASHacsp] = ACTIONS(12543), + [anon_sym_BSLASHAcsp] = ACTIONS(12543), + [anon_sym_BSLASHacl] = ACTIONS(12543), + [anon_sym_BSLASHAcl] = ACTIONS(12543), + [anon_sym_BSLASHaclp] = ACTIONS(12543), + [anon_sym_BSLASHAclp] = ACTIONS(12543), + [anon_sym_BSLASHacf] = ACTIONS(12543), + [anon_sym_BSLASHAcf] = ACTIONS(12543), + [anon_sym_BSLASHacfp] = ACTIONS(12543), + [anon_sym_BSLASHAcfp] = ACTIONS(12543), + [anon_sym_BSLASHac] = ACTIONS(12543), + [anon_sym_BSLASHAc] = ACTIONS(12543), + [anon_sym_BSLASHacp] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12543), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12543), + [anon_sym_BSLASHcolor] = ACTIONS(12543), + [anon_sym_BSLASHcolorbox] = ACTIONS(12543), + [anon_sym_BSLASHtextcolor] = ACTIONS(12543), + [anon_sym_BSLASHpagecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12543), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12543), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12543), + }, + [1824] = { + [sym_generic_command_name] = ACTIONS(12104), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12104), + [anon_sym_LBRACK] = ACTIONS(12102), + [anon_sym_RBRACK] = ACTIONS(12102), + [anon_sym_LBRACE] = ACTIONS(12102), + [anon_sym_RBRACE] = ACTIONS(12102), + [anon_sym_LPAREN] = ACTIONS(12102), + [anon_sym_COMMA] = ACTIONS(12102), + [anon_sym_EQ] = ACTIONS(12102), + [sym_word] = ACTIONS(12102), + [sym_param] = ACTIONS(12102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12102), + [anon_sym_DOLLAR] = ACTIONS(12104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12102), + [anon_sym_BSLASHbegin] = ACTIONS(12104), + [anon_sym_BSLASHcaption] = ACTIONS(12104), + [anon_sym_BSLASHcite] = ACTIONS(12104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCite] = ACTIONS(12104), + [anon_sym_BSLASHnocite] = ACTIONS(12104), + [anon_sym_BSLASHcitet] = ACTIONS(12104), + [anon_sym_BSLASHcitep] = ACTIONS(12104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteauthor] = ACTIONS(12104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitetitle] = ACTIONS(12104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteyear] = ACTIONS(12104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitedate] = ACTIONS(12104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteurl] = ACTIONS(12104), + [anon_sym_BSLASHfullcite] = ACTIONS(12104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12104), + [anon_sym_BSLASHcitealt] = ACTIONS(12104), + [anon_sym_BSLASHcitealp] = ACTIONS(12104), + [anon_sym_BSLASHcitetext] = ACTIONS(12104), + [anon_sym_BSLASHparencite] = ACTIONS(12104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHParencite] = ACTIONS(12104), + [anon_sym_BSLASHfootcite] = ACTIONS(12104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12104), + [anon_sym_BSLASHtextcite] = ACTIONS(12104), + [anon_sym_BSLASHTextcite] = ACTIONS(12104), + [anon_sym_BSLASHsmartcite] = ACTIONS(12104), + [anon_sym_BSLASHSmartcite] = ACTIONS(12104), + [anon_sym_BSLASHsupercite] = ACTIONS(12104), + [anon_sym_BSLASHautocite] = ACTIONS(12104), + [anon_sym_BSLASHAutocite] = ACTIONS(12104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHvolcite] = ACTIONS(12104), + [anon_sym_BSLASHVolcite] = ACTIONS(12104), + [anon_sym_BSLASHpvolcite] = ACTIONS(12104), + [anon_sym_BSLASHPvolcite] = ACTIONS(12104), + [anon_sym_BSLASHfvolcite] = ACTIONS(12104), + [anon_sym_BSLASHftvolcite] = ACTIONS(12104), + [anon_sym_BSLASHsvolcite] = ACTIONS(12104), + [anon_sym_BSLASHSvolcite] = ACTIONS(12104), + [anon_sym_BSLASHtvolcite] = ACTIONS(12104), + [anon_sym_BSLASHTvolcite] = ACTIONS(12104), + [anon_sym_BSLASHavolcite] = ACTIONS(12104), + [anon_sym_BSLASHAvolcite] = ACTIONS(12104), + [anon_sym_BSLASHnotecite] = ACTIONS(12104), + [anon_sym_BSLASHpnotecite] = ACTIONS(12104), + [anon_sym_BSLASHPnotecite] = ACTIONS(12104), + [anon_sym_BSLASHfnotecite] = ACTIONS(12104), + [anon_sym_BSLASHusepackage] = ACTIONS(12104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12104), + [anon_sym_BSLASHinclude] = ACTIONS(12104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12104), + [anon_sym_BSLASHinput] = ACTIONS(12104), + [anon_sym_BSLASHsubfile] = ACTIONS(12104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12104), + [anon_sym_BSLASHbibliography] = ACTIONS(12104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12104), + [anon_sym_BSLASHincludesvg] = ACTIONS(12104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12104), + [anon_sym_BSLASHimport] = ACTIONS(12104), + [anon_sym_BSLASHsubimport] = ACTIONS(12104), + [anon_sym_BSLASHinputfrom] = ACTIONS(12104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12104), + [anon_sym_BSLASHincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHlabel] = ACTIONS(12104), + [anon_sym_BSLASHref] = ACTIONS(12104), + [anon_sym_BSLASHvref] = ACTIONS(12104), + [anon_sym_BSLASHVref] = ACTIONS(12104), + [anon_sym_BSLASHautoref] = ACTIONS(12104), + [anon_sym_BSLASHpageref] = ACTIONS(12104), + [anon_sym_BSLASHcref] = ACTIONS(12104), + [anon_sym_BSLASHCref] = ACTIONS(12104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnameCref] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHlabelcref] = ACTIONS(12104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12104), + [anon_sym_BSLASHeqref] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange] = ACTIONS(12104), + [anon_sym_BSLASHCrefrange] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewlabel] = ACTIONS(12104), + [anon_sym_BSLASHnewcommand] = ACTIONS(12104), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12104), + [anon_sym_BSLASHgls] = ACTIONS(12104), + [anon_sym_BSLASHGls] = ACTIONS(12104), + [anon_sym_BSLASHGLS] = ACTIONS(12104), + [anon_sym_BSLASHglspl] = ACTIONS(12104), + [anon_sym_BSLASHGlspl] = ACTIONS(12104), + [anon_sym_BSLASHGLSpl] = ACTIONS(12104), + [anon_sym_BSLASHglsdisp] = ACTIONS(12104), + [anon_sym_BSLASHglslink] = ACTIONS(12104), + [anon_sym_BSLASHglstext] = ACTIONS(12104), + [anon_sym_BSLASHGlstext] = ACTIONS(12104), + [anon_sym_BSLASHGLStext] = ACTIONS(12104), + [anon_sym_BSLASHglsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12104), + [anon_sym_BSLASHglsplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSplural] = ACTIONS(12104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHglsname] = ACTIONS(12104), + [anon_sym_BSLASHGlsname] = ACTIONS(12104), + [anon_sym_BSLASHGLSname] = ACTIONS(12104), + [anon_sym_BSLASHglssymbol] = ACTIONS(12104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12104), + [anon_sym_BSLASHglsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12104), + [anon_sym_BSLASHglsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12104), + [anon_sym_BSLASHglsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12104), + [anon_sym_BSLASHglsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12104), + [anon_sym_BSLASHglsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12104), + [anon_sym_BSLASHnewacronym] = ACTIONS(12104), + [anon_sym_BSLASHacrshort] = ACTIONS(12104), + [anon_sym_BSLASHAcrshort] = ACTIONS(12104), + [anon_sym_BSLASHACRshort] = ACTIONS(12104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12104), + [anon_sym_BSLASHacrlong] = ACTIONS(12104), + [anon_sym_BSLASHAcrlong] = ACTIONS(12104), + [anon_sym_BSLASHACRlong] = ACTIONS(12104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12104), + [anon_sym_BSLASHacrfull] = ACTIONS(12104), + [anon_sym_BSLASHAcrfull] = ACTIONS(12104), + [anon_sym_BSLASHACRfull] = ACTIONS(12104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12104), + [anon_sym_BSLASHacs] = ACTIONS(12104), + [anon_sym_BSLASHAcs] = ACTIONS(12104), + [anon_sym_BSLASHacsp] = ACTIONS(12104), + [anon_sym_BSLASHAcsp] = ACTIONS(12104), + [anon_sym_BSLASHacl] = ACTIONS(12104), + [anon_sym_BSLASHAcl] = ACTIONS(12104), + [anon_sym_BSLASHaclp] = ACTIONS(12104), + [anon_sym_BSLASHAclp] = ACTIONS(12104), + [anon_sym_BSLASHacf] = ACTIONS(12104), + [anon_sym_BSLASHAcf] = ACTIONS(12104), + [anon_sym_BSLASHacfp] = ACTIONS(12104), + [anon_sym_BSLASHAcfp] = ACTIONS(12104), + [anon_sym_BSLASHac] = ACTIONS(12104), + [anon_sym_BSLASHAc] = ACTIONS(12104), + [anon_sym_BSLASHacp] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12104), + [anon_sym_BSLASHcolor] = ACTIONS(12104), + [anon_sym_BSLASHcolorbox] = ACTIONS(12104), + [anon_sym_BSLASHtextcolor] = ACTIONS(12104), + [anon_sym_BSLASHpagecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12104), + }, + [1825] = { + [sym_generic_command_name] = ACTIONS(12547), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12547), + [anon_sym_LBRACK] = ACTIONS(12545), + [anon_sym_RBRACK] = ACTIONS(12545), + [anon_sym_LBRACE] = ACTIONS(12545), + [anon_sym_RBRACE] = ACTIONS(12545), + [anon_sym_LPAREN] = ACTIONS(12545), + [anon_sym_COMMA] = ACTIONS(12545), + [anon_sym_EQ] = ACTIONS(12545), + [sym_word] = ACTIONS(12545), + [sym_param] = ACTIONS(12545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12545), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12545), + [anon_sym_DOLLAR] = ACTIONS(12547), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12545), + [anon_sym_BSLASHbegin] = ACTIONS(12547), + [anon_sym_BSLASHcaption] = ACTIONS(12547), + [anon_sym_BSLASHcite] = ACTIONS(12547), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCite] = ACTIONS(12547), + [anon_sym_BSLASHnocite] = ACTIONS(12547), + [anon_sym_BSLASHcitet] = ACTIONS(12547), + [anon_sym_BSLASHcitep] = ACTIONS(12547), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteauthor] = ACTIONS(12547), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12547), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitetitle] = ACTIONS(12547), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteyear] = ACTIONS(12547), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitedate] = ACTIONS(12547), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteurl] = ACTIONS(12547), + [anon_sym_BSLASHfullcite] = ACTIONS(12547), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12547), + [anon_sym_BSLASHcitealt] = ACTIONS(12547), + [anon_sym_BSLASHcitealp] = ACTIONS(12547), + [anon_sym_BSLASHcitetext] = ACTIONS(12547), + [anon_sym_BSLASHparencite] = ACTIONS(12547), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHParencite] = ACTIONS(12547), + [anon_sym_BSLASHfootcite] = ACTIONS(12547), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12547), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12547), + [anon_sym_BSLASHtextcite] = ACTIONS(12547), + [anon_sym_BSLASHTextcite] = ACTIONS(12547), + [anon_sym_BSLASHsmartcite] = ACTIONS(12547), + [anon_sym_BSLASHSmartcite] = ACTIONS(12547), + [anon_sym_BSLASHsupercite] = ACTIONS(12547), + [anon_sym_BSLASHautocite] = ACTIONS(12547), + [anon_sym_BSLASHAutocite] = ACTIONS(12547), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHvolcite] = ACTIONS(12547), + [anon_sym_BSLASHVolcite] = ACTIONS(12547), + [anon_sym_BSLASHpvolcite] = ACTIONS(12547), + [anon_sym_BSLASHPvolcite] = ACTIONS(12547), + [anon_sym_BSLASHfvolcite] = ACTIONS(12547), + [anon_sym_BSLASHftvolcite] = ACTIONS(12547), + [anon_sym_BSLASHsvolcite] = ACTIONS(12547), + [anon_sym_BSLASHSvolcite] = ACTIONS(12547), + [anon_sym_BSLASHtvolcite] = ACTIONS(12547), + [anon_sym_BSLASHTvolcite] = ACTIONS(12547), + [anon_sym_BSLASHavolcite] = ACTIONS(12547), + [anon_sym_BSLASHAvolcite] = ACTIONS(12547), + [anon_sym_BSLASHnotecite] = ACTIONS(12547), + [anon_sym_BSLASHpnotecite] = ACTIONS(12547), + [anon_sym_BSLASHPnotecite] = ACTIONS(12547), + [anon_sym_BSLASHfnotecite] = ACTIONS(12547), + [anon_sym_BSLASHusepackage] = ACTIONS(12547), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12547), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12547), + [anon_sym_BSLASHinclude] = ACTIONS(12547), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12547), + [anon_sym_BSLASHinput] = ACTIONS(12547), + [anon_sym_BSLASHsubfile] = ACTIONS(12547), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12547), + [anon_sym_BSLASHbibliography] = ACTIONS(12547), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12547), + [anon_sym_BSLASHincludesvg] = ACTIONS(12547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12547), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12547), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12547), + [anon_sym_BSLASHimport] = ACTIONS(12547), + [anon_sym_BSLASHsubimport] = ACTIONS(12547), + [anon_sym_BSLASHinputfrom] = ACTIONS(12547), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12547), + [anon_sym_BSLASHincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHlabel] = ACTIONS(12547), + [anon_sym_BSLASHref] = ACTIONS(12547), + [anon_sym_BSLASHvref] = ACTIONS(12547), + [anon_sym_BSLASHVref] = ACTIONS(12547), + [anon_sym_BSLASHautoref] = ACTIONS(12547), + [anon_sym_BSLASHpageref] = ACTIONS(12547), + [anon_sym_BSLASHcref] = ACTIONS(12547), + [anon_sym_BSLASHCref] = ACTIONS(12547), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnameCref] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHlabelcref] = ACTIONS(12547), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12547), + [anon_sym_BSLASHeqref] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange] = ACTIONS(12547), + [anon_sym_BSLASHCrefrange] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewlabel] = ACTIONS(12547), + [anon_sym_BSLASHnewcommand] = ACTIONS(12547), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12547), + [anon_sym_BSLASHgls] = ACTIONS(12547), + [anon_sym_BSLASHGls] = ACTIONS(12547), + [anon_sym_BSLASHGLS] = ACTIONS(12547), + [anon_sym_BSLASHglspl] = ACTIONS(12547), + [anon_sym_BSLASHGlspl] = ACTIONS(12547), + [anon_sym_BSLASHGLSpl] = ACTIONS(12547), + [anon_sym_BSLASHglsdisp] = ACTIONS(12547), + [anon_sym_BSLASHglslink] = ACTIONS(12547), + [anon_sym_BSLASHglstext] = ACTIONS(12547), + [anon_sym_BSLASHGlstext] = ACTIONS(12547), + [anon_sym_BSLASHGLStext] = ACTIONS(12547), + [anon_sym_BSLASHglsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12547), + [anon_sym_BSLASHglsplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSplural] = ACTIONS(12547), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHglsname] = ACTIONS(12547), + [anon_sym_BSLASHGlsname] = ACTIONS(12547), + [anon_sym_BSLASHGLSname] = ACTIONS(12547), + [anon_sym_BSLASHglssymbol] = ACTIONS(12547), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12547), + [anon_sym_BSLASHglsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12547), + [anon_sym_BSLASHglsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12547), + [anon_sym_BSLASHglsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12547), + [anon_sym_BSLASHglsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12547), + [anon_sym_BSLASHglsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12547), + [anon_sym_BSLASHnewacronym] = ACTIONS(12547), + [anon_sym_BSLASHacrshort] = ACTIONS(12547), + [anon_sym_BSLASHAcrshort] = ACTIONS(12547), + [anon_sym_BSLASHACRshort] = ACTIONS(12547), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12547), + [anon_sym_BSLASHacrlong] = ACTIONS(12547), + [anon_sym_BSLASHAcrlong] = ACTIONS(12547), + [anon_sym_BSLASHACRlong] = ACTIONS(12547), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12547), + [anon_sym_BSLASHacrfull] = ACTIONS(12547), + [anon_sym_BSLASHAcrfull] = ACTIONS(12547), + [anon_sym_BSLASHACRfull] = ACTIONS(12547), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12547), + [anon_sym_BSLASHacs] = ACTIONS(12547), + [anon_sym_BSLASHAcs] = ACTIONS(12547), + [anon_sym_BSLASHacsp] = ACTIONS(12547), + [anon_sym_BSLASHAcsp] = ACTIONS(12547), + [anon_sym_BSLASHacl] = ACTIONS(12547), + [anon_sym_BSLASHAcl] = ACTIONS(12547), + [anon_sym_BSLASHaclp] = ACTIONS(12547), + [anon_sym_BSLASHAclp] = ACTIONS(12547), + [anon_sym_BSLASHacf] = ACTIONS(12547), + [anon_sym_BSLASHAcf] = ACTIONS(12547), + [anon_sym_BSLASHacfp] = ACTIONS(12547), + [anon_sym_BSLASHAcfp] = ACTIONS(12547), + [anon_sym_BSLASHac] = ACTIONS(12547), + [anon_sym_BSLASHAc] = ACTIONS(12547), + [anon_sym_BSLASHacp] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12547), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12547), + [anon_sym_BSLASHcolor] = ACTIONS(12547), + [anon_sym_BSLASHcolorbox] = ACTIONS(12547), + [anon_sym_BSLASHtextcolor] = ACTIONS(12547), + [anon_sym_BSLASHpagecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12547), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12547), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12547), + }, + [1826] = { + [sym_generic_command_name] = ACTIONS(12255), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12255), + [anon_sym_LBRACK] = ACTIONS(12253), + [anon_sym_RBRACK] = ACTIONS(12253), + [anon_sym_LBRACE] = ACTIONS(12253), + [anon_sym_RBRACE] = ACTIONS(12253), + [anon_sym_LPAREN] = ACTIONS(12253), + [anon_sym_COMMA] = ACTIONS(12253), + [anon_sym_EQ] = ACTIONS(12253), + [sym_word] = ACTIONS(12253), + [sym_param] = ACTIONS(12253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12253), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12253), + [anon_sym_DOLLAR] = ACTIONS(12255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12253), + [anon_sym_BSLASHbegin] = ACTIONS(12255), + [anon_sym_BSLASHcaption] = ACTIONS(12255), + [anon_sym_BSLASHcite] = ACTIONS(12255), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCite] = ACTIONS(12255), + [anon_sym_BSLASHnocite] = ACTIONS(12255), + [anon_sym_BSLASHcitet] = ACTIONS(12255), + [anon_sym_BSLASHcitep] = ACTIONS(12255), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteauthor] = ACTIONS(12255), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12255), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitetitle] = ACTIONS(12255), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteyear] = ACTIONS(12255), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitedate] = ACTIONS(12255), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteurl] = ACTIONS(12255), + [anon_sym_BSLASHfullcite] = ACTIONS(12255), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12255), + [anon_sym_BSLASHcitealt] = ACTIONS(12255), + [anon_sym_BSLASHcitealp] = ACTIONS(12255), + [anon_sym_BSLASHcitetext] = ACTIONS(12255), + [anon_sym_BSLASHparencite] = ACTIONS(12255), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHParencite] = ACTIONS(12255), + [anon_sym_BSLASHfootcite] = ACTIONS(12255), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12255), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12255), + [anon_sym_BSLASHtextcite] = ACTIONS(12255), + [anon_sym_BSLASHTextcite] = ACTIONS(12255), + [anon_sym_BSLASHsmartcite] = ACTIONS(12255), + [anon_sym_BSLASHSmartcite] = ACTIONS(12255), + [anon_sym_BSLASHsupercite] = ACTIONS(12255), + [anon_sym_BSLASHautocite] = ACTIONS(12255), + [anon_sym_BSLASHAutocite] = ACTIONS(12255), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHvolcite] = ACTIONS(12255), + [anon_sym_BSLASHVolcite] = ACTIONS(12255), + [anon_sym_BSLASHpvolcite] = ACTIONS(12255), + [anon_sym_BSLASHPvolcite] = ACTIONS(12255), + [anon_sym_BSLASHfvolcite] = ACTIONS(12255), + [anon_sym_BSLASHftvolcite] = ACTIONS(12255), + [anon_sym_BSLASHsvolcite] = ACTIONS(12255), + [anon_sym_BSLASHSvolcite] = ACTIONS(12255), + [anon_sym_BSLASHtvolcite] = ACTIONS(12255), + [anon_sym_BSLASHTvolcite] = ACTIONS(12255), + [anon_sym_BSLASHavolcite] = ACTIONS(12255), + [anon_sym_BSLASHAvolcite] = ACTIONS(12255), + [anon_sym_BSLASHnotecite] = ACTIONS(12255), + [anon_sym_BSLASHpnotecite] = ACTIONS(12255), + [anon_sym_BSLASHPnotecite] = ACTIONS(12255), + [anon_sym_BSLASHfnotecite] = ACTIONS(12255), + [anon_sym_BSLASHusepackage] = ACTIONS(12255), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12255), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12255), + [anon_sym_BSLASHinclude] = ACTIONS(12255), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12255), + [anon_sym_BSLASHinput] = ACTIONS(12255), + [anon_sym_BSLASHsubfile] = ACTIONS(12255), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12255), + [anon_sym_BSLASHbibliography] = ACTIONS(12255), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12255), + [anon_sym_BSLASHincludesvg] = ACTIONS(12255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12255), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12255), + [anon_sym_BSLASHimport] = ACTIONS(12255), + [anon_sym_BSLASHsubimport] = ACTIONS(12255), + [anon_sym_BSLASHinputfrom] = ACTIONS(12255), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12255), + [anon_sym_BSLASHincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHlabel] = ACTIONS(12255), + [anon_sym_BSLASHref] = ACTIONS(12255), + [anon_sym_BSLASHvref] = ACTIONS(12255), + [anon_sym_BSLASHVref] = ACTIONS(12255), + [anon_sym_BSLASHautoref] = ACTIONS(12255), + [anon_sym_BSLASHpageref] = ACTIONS(12255), + [anon_sym_BSLASHcref] = ACTIONS(12255), + [anon_sym_BSLASHCref] = ACTIONS(12255), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnameCref] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHlabelcref] = ACTIONS(12255), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12255), + [anon_sym_BSLASHeqref] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange] = ACTIONS(12255), + [anon_sym_BSLASHCrefrange] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewlabel] = ACTIONS(12255), + [anon_sym_BSLASHnewcommand] = ACTIONS(12255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12255), + [anon_sym_BSLASHgls] = ACTIONS(12255), + [anon_sym_BSLASHGls] = ACTIONS(12255), + [anon_sym_BSLASHGLS] = ACTIONS(12255), + [anon_sym_BSLASHglspl] = ACTIONS(12255), + [anon_sym_BSLASHGlspl] = ACTIONS(12255), + [anon_sym_BSLASHGLSpl] = ACTIONS(12255), + [anon_sym_BSLASHglsdisp] = ACTIONS(12255), + [anon_sym_BSLASHglslink] = ACTIONS(12255), + [anon_sym_BSLASHglstext] = ACTIONS(12255), + [anon_sym_BSLASHGlstext] = ACTIONS(12255), + [anon_sym_BSLASHGLStext] = ACTIONS(12255), + [anon_sym_BSLASHglsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12255), + [anon_sym_BSLASHglsplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSplural] = ACTIONS(12255), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHglsname] = ACTIONS(12255), + [anon_sym_BSLASHGlsname] = ACTIONS(12255), + [anon_sym_BSLASHGLSname] = ACTIONS(12255), + [anon_sym_BSLASHglssymbol] = ACTIONS(12255), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12255), + [anon_sym_BSLASHglsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12255), + [anon_sym_BSLASHglsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12255), + [anon_sym_BSLASHglsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12255), + [anon_sym_BSLASHglsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12255), + [anon_sym_BSLASHglsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12255), + [anon_sym_BSLASHnewacronym] = ACTIONS(12255), + [anon_sym_BSLASHacrshort] = ACTIONS(12255), + [anon_sym_BSLASHAcrshort] = ACTIONS(12255), + [anon_sym_BSLASHACRshort] = ACTIONS(12255), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12255), + [anon_sym_BSLASHacrlong] = ACTIONS(12255), + [anon_sym_BSLASHAcrlong] = ACTIONS(12255), + [anon_sym_BSLASHACRlong] = ACTIONS(12255), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12255), + [anon_sym_BSLASHacrfull] = ACTIONS(12255), + [anon_sym_BSLASHAcrfull] = ACTIONS(12255), + [anon_sym_BSLASHACRfull] = ACTIONS(12255), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12255), + [anon_sym_BSLASHacs] = ACTIONS(12255), + [anon_sym_BSLASHAcs] = ACTIONS(12255), + [anon_sym_BSLASHacsp] = ACTIONS(12255), + [anon_sym_BSLASHAcsp] = ACTIONS(12255), + [anon_sym_BSLASHacl] = ACTIONS(12255), + [anon_sym_BSLASHAcl] = ACTIONS(12255), + [anon_sym_BSLASHaclp] = ACTIONS(12255), + [anon_sym_BSLASHAclp] = ACTIONS(12255), + [anon_sym_BSLASHacf] = ACTIONS(12255), + [anon_sym_BSLASHAcf] = ACTIONS(12255), + [anon_sym_BSLASHacfp] = ACTIONS(12255), + [anon_sym_BSLASHAcfp] = ACTIONS(12255), + [anon_sym_BSLASHac] = ACTIONS(12255), + [anon_sym_BSLASHAc] = ACTIONS(12255), + [anon_sym_BSLASHacp] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12255), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12255), + [anon_sym_BSLASHcolor] = ACTIONS(12255), + [anon_sym_BSLASHcolorbox] = ACTIONS(12255), + [anon_sym_BSLASHtextcolor] = ACTIONS(12255), + [anon_sym_BSLASHpagecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12255), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12255), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12255), + }, + [1827] = { + [sym_generic_command_name] = ACTIONS(12559), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12559), + [anon_sym_LBRACK] = ACTIONS(12557), + [anon_sym_RBRACK] = ACTIONS(12557), + [anon_sym_LBRACE] = ACTIONS(12557), + [anon_sym_RBRACE] = ACTIONS(12557), + [anon_sym_LPAREN] = ACTIONS(12557), + [anon_sym_COMMA] = ACTIONS(12557), + [anon_sym_EQ] = ACTIONS(12557), + [sym_word] = ACTIONS(12557), + [sym_param] = ACTIONS(12557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12557), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12557), + [anon_sym_DOLLAR] = ACTIONS(12559), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12557), + [anon_sym_BSLASHbegin] = ACTIONS(12559), + [anon_sym_BSLASHcaption] = ACTIONS(12559), + [anon_sym_BSLASHcite] = ACTIONS(12559), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCite] = ACTIONS(12559), + [anon_sym_BSLASHnocite] = ACTIONS(12559), + [anon_sym_BSLASHcitet] = ACTIONS(12559), + [anon_sym_BSLASHcitep] = ACTIONS(12559), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteauthor] = ACTIONS(12559), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12559), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitetitle] = ACTIONS(12559), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteyear] = ACTIONS(12559), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitedate] = ACTIONS(12559), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteurl] = ACTIONS(12559), + [anon_sym_BSLASHfullcite] = ACTIONS(12559), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12559), + [anon_sym_BSLASHcitealt] = ACTIONS(12559), + [anon_sym_BSLASHcitealp] = ACTIONS(12559), + [anon_sym_BSLASHcitetext] = ACTIONS(12559), + [anon_sym_BSLASHparencite] = ACTIONS(12559), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHParencite] = ACTIONS(12559), + [anon_sym_BSLASHfootcite] = ACTIONS(12559), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12559), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12559), + [anon_sym_BSLASHtextcite] = ACTIONS(12559), + [anon_sym_BSLASHTextcite] = ACTIONS(12559), + [anon_sym_BSLASHsmartcite] = ACTIONS(12559), + [anon_sym_BSLASHSmartcite] = ACTIONS(12559), + [anon_sym_BSLASHsupercite] = ACTIONS(12559), + [anon_sym_BSLASHautocite] = ACTIONS(12559), + [anon_sym_BSLASHAutocite] = ACTIONS(12559), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHvolcite] = ACTIONS(12559), + [anon_sym_BSLASHVolcite] = ACTIONS(12559), + [anon_sym_BSLASHpvolcite] = ACTIONS(12559), + [anon_sym_BSLASHPvolcite] = ACTIONS(12559), + [anon_sym_BSLASHfvolcite] = ACTIONS(12559), + [anon_sym_BSLASHftvolcite] = ACTIONS(12559), + [anon_sym_BSLASHsvolcite] = ACTIONS(12559), + [anon_sym_BSLASHSvolcite] = ACTIONS(12559), + [anon_sym_BSLASHtvolcite] = ACTIONS(12559), + [anon_sym_BSLASHTvolcite] = ACTIONS(12559), + [anon_sym_BSLASHavolcite] = ACTIONS(12559), + [anon_sym_BSLASHAvolcite] = ACTIONS(12559), + [anon_sym_BSLASHnotecite] = ACTIONS(12559), + [anon_sym_BSLASHpnotecite] = ACTIONS(12559), + [anon_sym_BSLASHPnotecite] = ACTIONS(12559), + [anon_sym_BSLASHfnotecite] = ACTIONS(12559), + [anon_sym_BSLASHusepackage] = ACTIONS(12559), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12559), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12559), + [anon_sym_BSLASHinclude] = ACTIONS(12559), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12559), + [anon_sym_BSLASHinput] = ACTIONS(12559), + [anon_sym_BSLASHsubfile] = ACTIONS(12559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12559), + [anon_sym_BSLASHbibliography] = ACTIONS(12559), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12559), + [anon_sym_BSLASHincludesvg] = ACTIONS(12559), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12559), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12559), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12559), + [anon_sym_BSLASHimport] = ACTIONS(12559), + [anon_sym_BSLASHsubimport] = ACTIONS(12559), + [anon_sym_BSLASHinputfrom] = ACTIONS(12559), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12559), + [anon_sym_BSLASHincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHlabel] = ACTIONS(12559), + [anon_sym_BSLASHref] = ACTIONS(12559), + [anon_sym_BSLASHvref] = ACTIONS(12559), + [anon_sym_BSLASHVref] = ACTIONS(12559), + [anon_sym_BSLASHautoref] = ACTIONS(12559), + [anon_sym_BSLASHpageref] = ACTIONS(12559), + [anon_sym_BSLASHcref] = ACTIONS(12559), + [anon_sym_BSLASHCref] = ACTIONS(12559), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnameCref] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHlabelcref] = ACTIONS(12559), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12559), + [anon_sym_BSLASHeqref] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange] = ACTIONS(12559), + [anon_sym_BSLASHCrefrange] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewlabel] = ACTIONS(12559), + [anon_sym_BSLASHnewcommand] = ACTIONS(12559), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12559), + [anon_sym_BSLASHgls] = ACTIONS(12559), + [anon_sym_BSLASHGls] = ACTIONS(12559), + [anon_sym_BSLASHGLS] = ACTIONS(12559), + [anon_sym_BSLASHglspl] = ACTIONS(12559), + [anon_sym_BSLASHGlspl] = ACTIONS(12559), + [anon_sym_BSLASHGLSpl] = ACTIONS(12559), + [anon_sym_BSLASHglsdisp] = ACTIONS(12559), + [anon_sym_BSLASHglslink] = ACTIONS(12559), + [anon_sym_BSLASHglstext] = ACTIONS(12559), + [anon_sym_BSLASHGlstext] = ACTIONS(12559), + [anon_sym_BSLASHGLStext] = ACTIONS(12559), + [anon_sym_BSLASHglsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12559), + [anon_sym_BSLASHglsplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSplural] = ACTIONS(12559), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHglsname] = ACTIONS(12559), + [anon_sym_BSLASHGlsname] = ACTIONS(12559), + [anon_sym_BSLASHGLSname] = ACTIONS(12559), + [anon_sym_BSLASHglssymbol] = ACTIONS(12559), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12559), + [anon_sym_BSLASHglsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12559), + [anon_sym_BSLASHglsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12559), + [anon_sym_BSLASHglsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12559), + [anon_sym_BSLASHglsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12559), + [anon_sym_BSLASHglsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12559), + [anon_sym_BSLASHnewacronym] = ACTIONS(12559), + [anon_sym_BSLASHacrshort] = ACTIONS(12559), + [anon_sym_BSLASHAcrshort] = ACTIONS(12559), + [anon_sym_BSLASHACRshort] = ACTIONS(12559), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12559), + [anon_sym_BSLASHacrlong] = ACTIONS(12559), + [anon_sym_BSLASHAcrlong] = ACTIONS(12559), + [anon_sym_BSLASHACRlong] = ACTIONS(12559), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12559), + [anon_sym_BSLASHacrfull] = ACTIONS(12559), + [anon_sym_BSLASHAcrfull] = ACTIONS(12559), + [anon_sym_BSLASHACRfull] = ACTIONS(12559), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12559), + [anon_sym_BSLASHacs] = ACTIONS(12559), + [anon_sym_BSLASHAcs] = ACTIONS(12559), + [anon_sym_BSLASHacsp] = ACTIONS(12559), + [anon_sym_BSLASHAcsp] = ACTIONS(12559), + [anon_sym_BSLASHacl] = ACTIONS(12559), + [anon_sym_BSLASHAcl] = ACTIONS(12559), + [anon_sym_BSLASHaclp] = ACTIONS(12559), + [anon_sym_BSLASHAclp] = ACTIONS(12559), + [anon_sym_BSLASHacf] = ACTIONS(12559), + [anon_sym_BSLASHAcf] = ACTIONS(12559), + [anon_sym_BSLASHacfp] = ACTIONS(12559), + [anon_sym_BSLASHAcfp] = ACTIONS(12559), + [anon_sym_BSLASHac] = ACTIONS(12559), + [anon_sym_BSLASHAc] = ACTIONS(12559), + [anon_sym_BSLASHacp] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12559), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12559), + [anon_sym_BSLASHcolor] = ACTIONS(12559), + [anon_sym_BSLASHcolorbox] = ACTIONS(12559), + [anon_sym_BSLASHtextcolor] = ACTIONS(12559), + [anon_sym_BSLASHpagecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12559), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12559), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12559), + }, + [1828] = { + [sym_generic_command_name] = ACTIONS(12555), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12555), + [anon_sym_LBRACK] = ACTIONS(12553), + [anon_sym_RBRACK] = ACTIONS(12553), + [anon_sym_LBRACE] = ACTIONS(12553), + [anon_sym_RBRACE] = ACTIONS(12553), + [anon_sym_LPAREN] = ACTIONS(12553), + [anon_sym_COMMA] = ACTIONS(12553), + [anon_sym_EQ] = ACTIONS(12553), + [sym_word] = ACTIONS(12553), + [sym_param] = ACTIONS(12553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12553), + [anon_sym_DOLLAR] = ACTIONS(12555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12553), + [anon_sym_BSLASHbegin] = ACTIONS(12555), + [anon_sym_BSLASHcaption] = ACTIONS(12555), + [anon_sym_BSLASHcite] = ACTIONS(12555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCite] = ACTIONS(12555), + [anon_sym_BSLASHnocite] = ACTIONS(12555), + [anon_sym_BSLASHcitet] = ACTIONS(12555), + [anon_sym_BSLASHcitep] = ACTIONS(12555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteauthor] = ACTIONS(12555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitetitle] = ACTIONS(12555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteyear] = ACTIONS(12555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitedate] = ACTIONS(12555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteurl] = ACTIONS(12555), + [anon_sym_BSLASHfullcite] = ACTIONS(12555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12555), + [anon_sym_BSLASHcitealt] = ACTIONS(12555), + [anon_sym_BSLASHcitealp] = ACTIONS(12555), + [anon_sym_BSLASHcitetext] = ACTIONS(12555), + [anon_sym_BSLASHparencite] = ACTIONS(12555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHParencite] = ACTIONS(12555), + [anon_sym_BSLASHfootcite] = ACTIONS(12555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12555), + [anon_sym_BSLASHtextcite] = ACTIONS(12555), + [anon_sym_BSLASHTextcite] = ACTIONS(12555), + [anon_sym_BSLASHsmartcite] = ACTIONS(12555), + [anon_sym_BSLASHSmartcite] = ACTIONS(12555), + [anon_sym_BSLASHsupercite] = ACTIONS(12555), + [anon_sym_BSLASHautocite] = ACTIONS(12555), + [anon_sym_BSLASHAutocite] = ACTIONS(12555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHvolcite] = ACTIONS(12555), + [anon_sym_BSLASHVolcite] = ACTIONS(12555), + [anon_sym_BSLASHpvolcite] = ACTIONS(12555), + [anon_sym_BSLASHPvolcite] = ACTIONS(12555), + [anon_sym_BSLASHfvolcite] = ACTIONS(12555), + [anon_sym_BSLASHftvolcite] = ACTIONS(12555), + [anon_sym_BSLASHsvolcite] = ACTIONS(12555), + [anon_sym_BSLASHSvolcite] = ACTIONS(12555), + [anon_sym_BSLASHtvolcite] = ACTIONS(12555), + [anon_sym_BSLASHTvolcite] = ACTIONS(12555), + [anon_sym_BSLASHavolcite] = ACTIONS(12555), + [anon_sym_BSLASHAvolcite] = ACTIONS(12555), + [anon_sym_BSLASHnotecite] = ACTIONS(12555), + [anon_sym_BSLASHpnotecite] = ACTIONS(12555), + [anon_sym_BSLASHPnotecite] = ACTIONS(12555), + [anon_sym_BSLASHfnotecite] = ACTIONS(12555), + [anon_sym_BSLASHusepackage] = ACTIONS(12555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12555), + [anon_sym_BSLASHinclude] = ACTIONS(12555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12555), + [anon_sym_BSLASHinput] = ACTIONS(12555), + [anon_sym_BSLASHsubfile] = ACTIONS(12555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12555), + [anon_sym_BSLASHbibliography] = ACTIONS(12555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12555), + [anon_sym_BSLASHincludesvg] = ACTIONS(12555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12555), + [anon_sym_BSLASHimport] = ACTIONS(12555), + [anon_sym_BSLASHsubimport] = ACTIONS(12555), + [anon_sym_BSLASHinputfrom] = ACTIONS(12555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12555), + [anon_sym_BSLASHincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHlabel] = ACTIONS(12555), + [anon_sym_BSLASHref] = ACTIONS(12555), + [anon_sym_BSLASHvref] = ACTIONS(12555), + [anon_sym_BSLASHVref] = ACTIONS(12555), + [anon_sym_BSLASHautoref] = ACTIONS(12555), + [anon_sym_BSLASHpageref] = ACTIONS(12555), + [anon_sym_BSLASHcref] = ACTIONS(12555), + [anon_sym_BSLASHCref] = ACTIONS(12555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnameCref] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHlabelcref] = ACTIONS(12555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12555), + [anon_sym_BSLASHeqref] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange] = ACTIONS(12555), + [anon_sym_BSLASHCrefrange] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewlabel] = ACTIONS(12555), + [anon_sym_BSLASHnewcommand] = ACTIONS(12555), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12555), + [anon_sym_BSLASHgls] = ACTIONS(12555), + [anon_sym_BSLASHGls] = ACTIONS(12555), + [anon_sym_BSLASHGLS] = ACTIONS(12555), + [anon_sym_BSLASHglspl] = ACTIONS(12555), + [anon_sym_BSLASHGlspl] = ACTIONS(12555), + [anon_sym_BSLASHGLSpl] = ACTIONS(12555), + [anon_sym_BSLASHglsdisp] = ACTIONS(12555), + [anon_sym_BSLASHglslink] = ACTIONS(12555), + [anon_sym_BSLASHglstext] = ACTIONS(12555), + [anon_sym_BSLASHGlstext] = ACTIONS(12555), + [anon_sym_BSLASHGLStext] = ACTIONS(12555), + [anon_sym_BSLASHglsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12555), + [anon_sym_BSLASHglsplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSplural] = ACTIONS(12555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHglsname] = ACTIONS(12555), + [anon_sym_BSLASHGlsname] = ACTIONS(12555), + [anon_sym_BSLASHGLSname] = ACTIONS(12555), + [anon_sym_BSLASHglssymbol] = ACTIONS(12555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12555), + [anon_sym_BSLASHglsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12555), + [anon_sym_BSLASHglsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12555), + [anon_sym_BSLASHglsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12555), + [anon_sym_BSLASHglsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12555), + [anon_sym_BSLASHglsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12555), + [anon_sym_BSLASHnewacronym] = ACTIONS(12555), + [anon_sym_BSLASHacrshort] = ACTIONS(12555), + [anon_sym_BSLASHAcrshort] = ACTIONS(12555), + [anon_sym_BSLASHACRshort] = ACTIONS(12555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12555), + [anon_sym_BSLASHacrlong] = ACTIONS(12555), + [anon_sym_BSLASHAcrlong] = ACTIONS(12555), + [anon_sym_BSLASHACRlong] = ACTIONS(12555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12555), + [anon_sym_BSLASHacrfull] = ACTIONS(12555), + [anon_sym_BSLASHAcrfull] = ACTIONS(12555), + [anon_sym_BSLASHACRfull] = ACTIONS(12555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12555), + [anon_sym_BSLASHacs] = ACTIONS(12555), + [anon_sym_BSLASHAcs] = ACTIONS(12555), + [anon_sym_BSLASHacsp] = ACTIONS(12555), + [anon_sym_BSLASHAcsp] = ACTIONS(12555), + [anon_sym_BSLASHacl] = ACTIONS(12555), + [anon_sym_BSLASHAcl] = ACTIONS(12555), + [anon_sym_BSLASHaclp] = ACTIONS(12555), + [anon_sym_BSLASHAclp] = ACTIONS(12555), + [anon_sym_BSLASHacf] = ACTIONS(12555), + [anon_sym_BSLASHAcf] = ACTIONS(12555), + [anon_sym_BSLASHacfp] = ACTIONS(12555), + [anon_sym_BSLASHAcfp] = ACTIONS(12555), + [anon_sym_BSLASHac] = ACTIONS(12555), + [anon_sym_BSLASHAc] = ACTIONS(12555), + [anon_sym_BSLASHacp] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12555), + [anon_sym_BSLASHcolor] = ACTIONS(12555), + [anon_sym_BSLASHcolorbox] = ACTIONS(12555), + [anon_sym_BSLASHtextcolor] = ACTIONS(12555), + [anon_sym_BSLASHpagecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12555), + }, + [1829] = { + [sym_generic_command_name] = ACTIONS(12551), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12551), + [anon_sym_LBRACK] = ACTIONS(12549), + [anon_sym_RBRACK] = ACTIONS(12549), + [anon_sym_LBRACE] = ACTIONS(12549), + [anon_sym_RBRACE] = ACTIONS(12549), + [anon_sym_LPAREN] = ACTIONS(12549), + [anon_sym_COMMA] = ACTIONS(12549), + [anon_sym_EQ] = ACTIONS(12549), + [sym_word] = ACTIONS(12549), + [sym_param] = ACTIONS(12549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12549), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12549), + [anon_sym_DOLLAR] = ACTIONS(12551), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12549), + [anon_sym_BSLASHbegin] = ACTIONS(12551), + [anon_sym_BSLASHcaption] = ACTIONS(12551), + [anon_sym_BSLASHcite] = ACTIONS(12551), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCite] = ACTIONS(12551), + [anon_sym_BSLASHnocite] = ACTIONS(12551), + [anon_sym_BSLASHcitet] = ACTIONS(12551), + [anon_sym_BSLASHcitep] = ACTIONS(12551), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteauthor] = ACTIONS(12551), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12551), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitetitle] = ACTIONS(12551), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteyear] = ACTIONS(12551), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitedate] = ACTIONS(12551), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteurl] = ACTIONS(12551), + [anon_sym_BSLASHfullcite] = ACTIONS(12551), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12551), + [anon_sym_BSLASHcitealt] = ACTIONS(12551), + [anon_sym_BSLASHcitealp] = ACTIONS(12551), + [anon_sym_BSLASHcitetext] = ACTIONS(12551), + [anon_sym_BSLASHparencite] = ACTIONS(12551), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHParencite] = ACTIONS(12551), + [anon_sym_BSLASHfootcite] = ACTIONS(12551), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12551), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12551), + [anon_sym_BSLASHtextcite] = ACTIONS(12551), + [anon_sym_BSLASHTextcite] = ACTIONS(12551), + [anon_sym_BSLASHsmartcite] = ACTIONS(12551), + [anon_sym_BSLASHSmartcite] = ACTIONS(12551), + [anon_sym_BSLASHsupercite] = ACTIONS(12551), + [anon_sym_BSLASHautocite] = ACTIONS(12551), + [anon_sym_BSLASHAutocite] = ACTIONS(12551), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHvolcite] = ACTIONS(12551), + [anon_sym_BSLASHVolcite] = ACTIONS(12551), + [anon_sym_BSLASHpvolcite] = ACTIONS(12551), + [anon_sym_BSLASHPvolcite] = ACTIONS(12551), + [anon_sym_BSLASHfvolcite] = ACTIONS(12551), + [anon_sym_BSLASHftvolcite] = ACTIONS(12551), + [anon_sym_BSLASHsvolcite] = ACTIONS(12551), + [anon_sym_BSLASHSvolcite] = ACTIONS(12551), + [anon_sym_BSLASHtvolcite] = ACTIONS(12551), + [anon_sym_BSLASHTvolcite] = ACTIONS(12551), + [anon_sym_BSLASHavolcite] = ACTIONS(12551), + [anon_sym_BSLASHAvolcite] = ACTIONS(12551), + [anon_sym_BSLASHnotecite] = ACTIONS(12551), + [anon_sym_BSLASHpnotecite] = ACTIONS(12551), + [anon_sym_BSLASHPnotecite] = ACTIONS(12551), + [anon_sym_BSLASHfnotecite] = ACTIONS(12551), + [anon_sym_BSLASHusepackage] = ACTIONS(12551), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12551), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12551), + [anon_sym_BSLASHinclude] = ACTIONS(12551), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12551), + [anon_sym_BSLASHinput] = ACTIONS(12551), + [anon_sym_BSLASHsubfile] = ACTIONS(12551), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12551), + [anon_sym_BSLASHbibliography] = ACTIONS(12551), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12551), + [anon_sym_BSLASHincludesvg] = ACTIONS(12551), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12551), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12551), + [anon_sym_BSLASHimport] = ACTIONS(12551), + [anon_sym_BSLASHsubimport] = ACTIONS(12551), + [anon_sym_BSLASHinputfrom] = ACTIONS(12551), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12551), + [anon_sym_BSLASHincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHlabel] = ACTIONS(12551), + [anon_sym_BSLASHref] = ACTIONS(12551), + [anon_sym_BSLASHvref] = ACTIONS(12551), + [anon_sym_BSLASHVref] = ACTIONS(12551), + [anon_sym_BSLASHautoref] = ACTIONS(12551), + [anon_sym_BSLASHpageref] = ACTIONS(12551), + [anon_sym_BSLASHcref] = ACTIONS(12551), + [anon_sym_BSLASHCref] = ACTIONS(12551), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnameCref] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHlabelcref] = ACTIONS(12551), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12551), + [anon_sym_BSLASHeqref] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange] = ACTIONS(12551), + [anon_sym_BSLASHCrefrange] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewlabel] = ACTIONS(12551), + [anon_sym_BSLASHnewcommand] = ACTIONS(12551), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12551), + [anon_sym_BSLASHgls] = ACTIONS(12551), + [anon_sym_BSLASHGls] = ACTIONS(12551), + [anon_sym_BSLASHGLS] = ACTIONS(12551), + [anon_sym_BSLASHglspl] = ACTIONS(12551), + [anon_sym_BSLASHGlspl] = ACTIONS(12551), + [anon_sym_BSLASHGLSpl] = ACTIONS(12551), + [anon_sym_BSLASHglsdisp] = ACTIONS(12551), + [anon_sym_BSLASHglslink] = ACTIONS(12551), + [anon_sym_BSLASHglstext] = ACTIONS(12551), + [anon_sym_BSLASHGlstext] = ACTIONS(12551), + [anon_sym_BSLASHGLStext] = ACTIONS(12551), + [anon_sym_BSLASHglsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12551), + [anon_sym_BSLASHglsplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSplural] = ACTIONS(12551), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHglsname] = ACTIONS(12551), + [anon_sym_BSLASHGlsname] = ACTIONS(12551), + [anon_sym_BSLASHGLSname] = ACTIONS(12551), + [anon_sym_BSLASHglssymbol] = ACTIONS(12551), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12551), + [anon_sym_BSLASHglsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12551), + [anon_sym_BSLASHglsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12551), + [anon_sym_BSLASHglsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12551), + [anon_sym_BSLASHglsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12551), + [anon_sym_BSLASHglsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12551), + [anon_sym_BSLASHnewacronym] = ACTIONS(12551), + [anon_sym_BSLASHacrshort] = ACTIONS(12551), + [anon_sym_BSLASHAcrshort] = ACTIONS(12551), + [anon_sym_BSLASHACRshort] = ACTIONS(12551), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12551), + [anon_sym_BSLASHacrlong] = ACTIONS(12551), + [anon_sym_BSLASHAcrlong] = ACTIONS(12551), + [anon_sym_BSLASHACRlong] = ACTIONS(12551), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12551), + [anon_sym_BSLASHacrfull] = ACTIONS(12551), + [anon_sym_BSLASHAcrfull] = ACTIONS(12551), + [anon_sym_BSLASHACRfull] = ACTIONS(12551), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12551), + [anon_sym_BSLASHacs] = ACTIONS(12551), + [anon_sym_BSLASHAcs] = ACTIONS(12551), + [anon_sym_BSLASHacsp] = ACTIONS(12551), + [anon_sym_BSLASHAcsp] = ACTIONS(12551), + [anon_sym_BSLASHacl] = ACTIONS(12551), + [anon_sym_BSLASHAcl] = ACTIONS(12551), + [anon_sym_BSLASHaclp] = ACTIONS(12551), + [anon_sym_BSLASHAclp] = ACTIONS(12551), + [anon_sym_BSLASHacf] = ACTIONS(12551), + [anon_sym_BSLASHAcf] = ACTIONS(12551), + [anon_sym_BSLASHacfp] = ACTIONS(12551), + [anon_sym_BSLASHAcfp] = ACTIONS(12551), + [anon_sym_BSLASHac] = ACTIONS(12551), + [anon_sym_BSLASHAc] = ACTIONS(12551), + [anon_sym_BSLASHacp] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12551), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12551), + [anon_sym_BSLASHcolor] = ACTIONS(12551), + [anon_sym_BSLASHcolorbox] = ACTIONS(12551), + [anon_sym_BSLASHtextcolor] = ACTIONS(12551), + [anon_sym_BSLASHpagecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12551), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12551), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12551), + }, + [1830] = { + [sym_generic_command_name] = ACTIONS(12535), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12535), + [anon_sym_LBRACK] = ACTIONS(12533), + [anon_sym_RBRACK] = ACTIONS(12533), + [anon_sym_LBRACE] = ACTIONS(12533), + [anon_sym_RBRACE] = ACTIONS(12533), + [anon_sym_LPAREN] = ACTIONS(12533), + [anon_sym_COMMA] = ACTIONS(12533), + [anon_sym_EQ] = ACTIONS(12533), + [sym_word] = ACTIONS(12533), + [sym_param] = ACTIONS(12533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12533), + [anon_sym_DOLLAR] = ACTIONS(12535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12533), + [anon_sym_BSLASHbegin] = ACTIONS(12535), + [anon_sym_BSLASHcaption] = ACTIONS(12535), + [anon_sym_BSLASHcite] = ACTIONS(12535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCite] = ACTIONS(12535), + [anon_sym_BSLASHnocite] = ACTIONS(12535), + [anon_sym_BSLASHcitet] = ACTIONS(12535), + [anon_sym_BSLASHcitep] = ACTIONS(12535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteauthor] = ACTIONS(12535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitetitle] = ACTIONS(12535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteyear] = ACTIONS(12535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitedate] = ACTIONS(12535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteurl] = ACTIONS(12535), + [anon_sym_BSLASHfullcite] = ACTIONS(12535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12535), + [anon_sym_BSLASHcitealt] = ACTIONS(12535), + [anon_sym_BSLASHcitealp] = ACTIONS(12535), + [anon_sym_BSLASHcitetext] = ACTIONS(12535), + [anon_sym_BSLASHparencite] = ACTIONS(12535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHParencite] = ACTIONS(12535), + [anon_sym_BSLASHfootcite] = ACTIONS(12535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12535), + [anon_sym_BSLASHtextcite] = ACTIONS(12535), + [anon_sym_BSLASHTextcite] = ACTIONS(12535), + [anon_sym_BSLASHsmartcite] = ACTIONS(12535), + [anon_sym_BSLASHSmartcite] = ACTIONS(12535), + [anon_sym_BSLASHsupercite] = ACTIONS(12535), + [anon_sym_BSLASHautocite] = ACTIONS(12535), + [anon_sym_BSLASHAutocite] = ACTIONS(12535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHvolcite] = ACTIONS(12535), + [anon_sym_BSLASHVolcite] = ACTIONS(12535), + [anon_sym_BSLASHpvolcite] = ACTIONS(12535), + [anon_sym_BSLASHPvolcite] = ACTIONS(12535), + [anon_sym_BSLASHfvolcite] = ACTIONS(12535), + [anon_sym_BSLASHftvolcite] = ACTIONS(12535), + [anon_sym_BSLASHsvolcite] = ACTIONS(12535), + [anon_sym_BSLASHSvolcite] = ACTIONS(12535), + [anon_sym_BSLASHtvolcite] = ACTIONS(12535), + [anon_sym_BSLASHTvolcite] = ACTIONS(12535), + [anon_sym_BSLASHavolcite] = ACTIONS(12535), + [anon_sym_BSLASHAvolcite] = ACTIONS(12535), + [anon_sym_BSLASHnotecite] = ACTIONS(12535), + [anon_sym_BSLASHpnotecite] = ACTIONS(12535), + [anon_sym_BSLASHPnotecite] = ACTIONS(12535), + [anon_sym_BSLASHfnotecite] = ACTIONS(12535), + [anon_sym_BSLASHusepackage] = ACTIONS(12535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12535), + [anon_sym_BSLASHinclude] = ACTIONS(12535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12535), + [anon_sym_BSLASHinput] = ACTIONS(12535), + [anon_sym_BSLASHsubfile] = ACTIONS(12535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12535), + [anon_sym_BSLASHbibliography] = ACTIONS(12535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12535), + [anon_sym_BSLASHincludesvg] = ACTIONS(12535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12535), + [anon_sym_BSLASHimport] = ACTIONS(12535), + [anon_sym_BSLASHsubimport] = ACTIONS(12535), + [anon_sym_BSLASHinputfrom] = ACTIONS(12535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12535), + [anon_sym_BSLASHincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHlabel] = ACTIONS(12535), + [anon_sym_BSLASHref] = ACTIONS(12535), + [anon_sym_BSLASHvref] = ACTIONS(12535), + [anon_sym_BSLASHVref] = ACTIONS(12535), + [anon_sym_BSLASHautoref] = ACTIONS(12535), + [anon_sym_BSLASHpageref] = ACTIONS(12535), + [anon_sym_BSLASHcref] = ACTIONS(12535), + [anon_sym_BSLASHCref] = ACTIONS(12535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnameCref] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHlabelcref] = ACTIONS(12535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12535), + [anon_sym_BSLASHeqref] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange] = ACTIONS(12535), + [anon_sym_BSLASHCrefrange] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewlabel] = ACTIONS(12535), + [anon_sym_BSLASHnewcommand] = ACTIONS(12535), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12535), + [anon_sym_BSLASHgls] = ACTIONS(12535), + [anon_sym_BSLASHGls] = ACTIONS(12535), + [anon_sym_BSLASHGLS] = ACTIONS(12535), + [anon_sym_BSLASHglspl] = ACTIONS(12535), + [anon_sym_BSLASHGlspl] = ACTIONS(12535), + [anon_sym_BSLASHGLSpl] = ACTIONS(12535), + [anon_sym_BSLASHglsdisp] = ACTIONS(12535), + [anon_sym_BSLASHglslink] = ACTIONS(12535), + [anon_sym_BSLASHglstext] = ACTIONS(12535), + [anon_sym_BSLASHGlstext] = ACTIONS(12535), + [anon_sym_BSLASHGLStext] = ACTIONS(12535), + [anon_sym_BSLASHglsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12535), + [anon_sym_BSLASHglsplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSplural] = ACTIONS(12535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHglsname] = ACTIONS(12535), + [anon_sym_BSLASHGlsname] = ACTIONS(12535), + [anon_sym_BSLASHGLSname] = ACTIONS(12535), + [anon_sym_BSLASHglssymbol] = ACTIONS(12535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12535), + [anon_sym_BSLASHglsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12535), + [anon_sym_BSLASHglsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12535), + [anon_sym_BSLASHglsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12535), + [anon_sym_BSLASHglsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12535), + [anon_sym_BSLASHglsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12535), + [anon_sym_BSLASHnewacronym] = ACTIONS(12535), + [anon_sym_BSLASHacrshort] = ACTIONS(12535), + [anon_sym_BSLASHAcrshort] = ACTIONS(12535), + [anon_sym_BSLASHACRshort] = ACTIONS(12535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12535), + [anon_sym_BSLASHacrlong] = ACTIONS(12535), + [anon_sym_BSLASHAcrlong] = ACTIONS(12535), + [anon_sym_BSLASHACRlong] = ACTIONS(12535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12535), + [anon_sym_BSLASHacrfull] = ACTIONS(12535), + [anon_sym_BSLASHAcrfull] = ACTIONS(12535), + [anon_sym_BSLASHACRfull] = ACTIONS(12535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12535), + [anon_sym_BSLASHacs] = ACTIONS(12535), + [anon_sym_BSLASHAcs] = ACTIONS(12535), + [anon_sym_BSLASHacsp] = ACTIONS(12535), + [anon_sym_BSLASHAcsp] = ACTIONS(12535), + [anon_sym_BSLASHacl] = ACTIONS(12535), + [anon_sym_BSLASHAcl] = ACTIONS(12535), + [anon_sym_BSLASHaclp] = ACTIONS(12535), + [anon_sym_BSLASHAclp] = ACTIONS(12535), + [anon_sym_BSLASHacf] = ACTIONS(12535), + [anon_sym_BSLASHAcf] = ACTIONS(12535), + [anon_sym_BSLASHacfp] = ACTIONS(12535), + [anon_sym_BSLASHAcfp] = ACTIONS(12535), + [anon_sym_BSLASHac] = ACTIONS(12535), + [anon_sym_BSLASHAc] = ACTIONS(12535), + [anon_sym_BSLASHacp] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12535), + [anon_sym_BSLASHcolor] = ACTIONS(12535), + [anon_sym_BSLASHcolorbox] = ACTIONS(12535), + [anon_sym_BSLASHtextcolor] = ACTIONS(12535), + [anon_sym_BSLASHpagecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12535), + }, + [1831] = { + [sym_generic_command_name] = ACTIONS(12505), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12505), + [anon_sym_LBRACK] = ACTIONS(12503), + [anon_sym_RBRACK] = ACTIONS(12503), + [anon_sym_LBRACE] = ACTIONS(12503), + [anon_sym_RBRACE] = ACTIONS(12503), + [anon_sym_LPAREN] = ACTIONS(12503), + [anon_sym_COMMA] = ACTIONS(12503), + [anon_sym_EQ] = ACTIONS(12503), + [sym_word] = ACTIONS(12503), + [sym_param] = ACTIONS(12503), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12503), + [anon_sym_DOLLAR] = ACTIONS(12505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12503), + [anon_sym_BSLASHbegin] = ACTIONS(12505), + [anon_sym_BSLASHcaption] = ACTIONS(12505), + [anon_sym_BSLASHcite] = ACTIONS(12505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCite] = ACTIONS(12505), + [anon_sym_BSLASHnocite] = ACTIONS(12505), + [anon_sym_BSLASHcitet] = ACTIONS(12505), + [anon_sym_BSLASHcitep] = ACTIONS(12505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteauthor] = ACTIONS(12505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitetitle] = ACTIONS(12505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteyear] = ACTIONS(12505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitedate] = ACTIONS(12505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteurl] = ACTIONS(12505), + [anon_sym_BSLASHfullcite] = ACTIONS(12505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12505), + [anon_sym_BSLASHcitealt] = ACTIONS(12505), + [anon_sym_BSLASHcitealp] = ACTIONS(12505), + [anon_sym_BSLASHcitetext] = ACTIONS(12505), + [anon_sym_BSLASHparencite] = ACTIONS(12505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHParencite] = ACTIONS(12505), + [anon_sym_BSLASHfootcite] = ACTIONS(12505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12505), + [anon_sym_BSLASHtextcite] = ACTIONS(12505), + [anon_sym_BSLASHTextcite] = ACTIONS(12505), + [anon_sym_BSLASHsmartcite] = ACTIONS(12505), + [anon_sym_BSLASHSmartcite] = ACTIONS(12505), + [anon_sym_BSLASHsupercite] = ACTIONS(12505), + [anon_sym_BSLASHautocite] = ACTIONS(12505), + [anon_sym_BSLASHAutocite] = ACTIONS(12505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHvolcite] = ACTIONS(12505), + [anon_sym_BSLASHVolcite] = ACTIONS(12505), + [anon_sym_BSLASHpvolcite] = ACTIONS(12505), + [anon_sym_BSLASHPvolcite] = ACTIONS(12505), + [anon_sym_BSLASHfvolcite] = ACTIONS(12505), + [anon_sym_BSLASHftvolcite] = ACTIONS(12505), + [anon_sym_BSLASHsvolcite] = ACTIONS(12505), + [anon_sym_BSLASHSvolcite] = ACTIONS(12505), + [anon_sym_BSLASHtvolcite] = ACTIONS(12505), + [anon_sym_BSLASHTvolcite] = ACTIONS(12505), + [anon_sym_BSLASHavolcite] = ACTIONS(12505), + [anon_sym_BSLASHAvolcite] = ACTIONS(12505), + [anon_sym_BSLASHnotecite] = ACTIONS(12505), + [anon_sym_BSLASHpnotecite] = ACTIONS(12505), + [anon_sym_BSLASHPnotecite] = ACTIONS(12505), + [anon_sym_BSLASHfnotecite] = ACTIONS(12505), + [anon_sym_BSLASHusepackage] = ACTIONS(12505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12505), + [anon_sym_BSLASHinclude] = ACTIONS(12505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12505), + [anon_sym_BSLASHinput] = ACTIONS(12505), + [anon_sym_BSLASHsubfile] = ACTIONS(12505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12505), + [anon_sym_BSLASHbibliography] = ACTIONS(12505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12505), + [anon_sym_BSLASHincludesvg] = ACTIONS(12505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12505), + [anon_sym_BSLASHimport] = ACTIONS(12505), + [anon_sym_BSLASHsubimport] = ACTIONS(12505), + [anon_sym_BSLASHinputfrom] = ACTIONS(12505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12505), + [anon_sym_BSLASHincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHlabel] = ACTIONS(12505), + [anon_sym_BSLASHref] = ACTIONS(12505), + [anon_sym_BSLASHvref] = ACTIONS(12505), + [anon_sym_BSLASHVref] = ACTIONS(12505), + [anon_sym_BSLASHautoref] = ACTIONS(12505), + [anon_sym_BSLASHpageref] = ACTIONS(12505), + [anon_sym_BSLASHcref] = ACTIONS(12505), + [anon_sym_BSLASHCref] = ACTIONS(12505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnameCref] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHlabelcref] = ACTIONS(12505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12505), + [anon_sym_BSLASHeqref] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange] = ACTIONS(12505), + [anon_sym_BSLASHCrefrange] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewlabel] = ACTIONS(12505), + [anon_sym_BSLASHnewcommand] = ACTIONS(12505), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12505), + [anon_sym_BSLASHgls] = ACTIONS(12505), + [anon_sym_BSLASHGls] = ACTIONS(12505), + [anon_sym_BSLASHGLS] = ACTIONS(12505), + [anon_sym_BSLASHglspl] = ACTIONS(12505), + [anon_sym_BSLASHGlspl] = ACTIONS(12505), + [anon_sym_BSLASHGLSpl] = ACTIONS(12505), + [anon_sym_BSLASHglsdisp] = ACTIONS(12505), + [anon_sym_BSLASHglslink] = ACTIONS(12505), + [anon_sym_BSLASHglstext] = ACTIONS(12505), + [anon_sym_BSLASHGlstext] = ACTIONS(12505), + [anon_sym_BSLASHGLStext] = ACTIONS(12505), + [anon_sym_BSLASHglsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12505), + [anon_sym_BSLASHglsplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSplural] = ACTIONS(12505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHglsname] = ACTIONS(12505), + [anon_sym_BSLASHGlsname] = ACTIONS(12505), + [anon_sym_BSLASHGLSname] = ACTIONS(12505), + [anon_sym_BSLASHglssymbol] = ACTIONS(12505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12505), + [anon_sym_BSLASHglsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12505), + [anon_sym_BSLASHglsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12505), + [anon_sym_BSLASHglsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12505), + [anon_sym_BSLASHglsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12505), + [anon_sym_BSLASHglsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12505), + [anon_sym_BSLASHnewacronym] = ACTIONS(12505), + [anon_sym_BSLASHacrshort] = ACTIONS(12505), + [anon_sym_BSLASHAcrshort] = ACTIONS(12505), + [anon_sym_BSLASHACRshort] = ACTIONS(12505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12505), + [anon_sym_BSLASHacrlong] = ACTIONS(12505), + [anon_sym_BSLASHAcrlong] = ACTIONS(12505), + [anon_sym_BSLASHACRlong] = ACTIONS(12505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12505), + [anon_sym_BSLASHacrfull] = ACTIONS(12505), + [anon_sym_BSLASHAcrfull] = ACTIONS(12505), + [anon_sym_BSLASHACRfull] = ACTIONS(12505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12505), + [anon_sym_BSLASHacs] = ACTIONS(12505), + [anon_sym_BSLASHAcs] = ACTIONS(12505), + [anon_sym_BSLASHacsp] = ACTIONS(12505), + [anon_sym_BSLASHAcsp] = ACTIONS(12505), + [anon_sym_BSLASHacl] = ACTIONS(12505), + [anon_sym_BSLASHAcl] = ACTIONS(12505), + [anon_sym_BSLASHaclp] = ACTIONS(12505), + [anon_sym_BSLASHAclp] = ACTIONS(12505), + [anon_sym_BSLASHacf] = ACTIONS(12505), + [anon_sym_BSLASHAcf] = ACTIONS(12505), + [anon_sym_BSLASHacfp] = ACTIONS(12505), + [anon_sym_BSLASHAcfp] = ACTIONS(12505), + [anon_sym_BSLASHac] = ACTIONS(12505), + [anon_sym_BSLASHAc] = ACTIONS(12505), + [anon_sym_BSLASHacp] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12505), + [anon_sym_BSLASHcolor] = ACTIONS(12505), + [anon_sym_BSLASHcolorbox] = ACTIONS(12505), + [anon_sym_BSLASHtextcolor] = ACTIONS(12505), + [anon_sym_BSLASHpagecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12505), + }, + [1832] = { + [sym_generic_command_name] = ACTIONS(12489), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12489), + [anon_sym_LBRACK] = ACTIONS(12487), + [anon_sym_RBRACK] = ACTIONS(12487), + [anon_sym_LBRACE] = ACTIONS(12487), + [anon_sym_RBRACE] = ACTIONS(12487), + [anon_sym_LPAREN] = ACTIONS(12487), + [anon_sym_COMMA] = ACTIONS(12487), + [anon_sym_EQ] = ACTIONS(12487), + [sym_word] = ACTIONS(12487), + [sym_param] = ACTIONS(12487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12487), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12487), + [anon_sym_DOLLAR] = ACTIONS(12489), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12487), + [anon_sym_BSLASHbegin] = ACTIONS(12489), + [anon_sym_BSLASHcaption] = ACTIONS(12489), + [anon_sym_BSLASHcite] = ACTIONS(12489), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCite] = ACTIONS(12489), + [anon_sym_BSLASHnocite] = ACTIONS(12489), + [anon_sym_BSLASHcitet] = ACTIONS(12489), + [anon_sym_BSLASHcitep] = ACTIONS(12489), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteauthor] = ACTIONS(12489), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12489), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitetitle] = ACTIONS(12489), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteyear] = ACTIONS(12489), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitedate] = ACTIONS(12489), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteurl] = ACTIONS(12489), + [anon_sym_BSLASHfullcite] = ACTIONS(12489), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12489), + [anon_sym_BSLASHcitealt] = ACTIONS(12489), + [anon_sym_BSLASHcitealp] = ACTIONS(12489), + [anon_sym_BSLASHcitetext] = ACTIONS(12489), + [anon_sym_BSLASHparencite] = ACTIONS(12489), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHParencite] = ACTIONS(12489), + [anon_sym_BSLASHfootcite] = ACTIONS(12489), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12489), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12489), + [anon_sym_BSLASHtextcite] = ACTIONS(12489), + [anon_sym_BSLASHTextcite] = ACTIONS(12489), + [anon_sym_BSLASHsmartcite] = ACTIONS(12489), + [anon_sym_BSLASHSmartcite] = ACTIONS(12489), + [anon_sym_BSLASHsupercite] = ACTIONS(12489), + [anon_sym_BSLASHautocite] = ACTIONS(12489), + [anon_sym_BSLASHAutocite] = ACTIONS(12489), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHvolcite] = ACTIONS(12489), + [anon_sym_BSLASHVolcite] = ACTIONS(12489), + [anon_sym_BSLASHpvolcite] = ACTIONS(12489), + [anon_sym_BSLASHPvolcite] = ACTIONS(12489), + [anon_sym_BSLASHfvolcite] = ACTIONS(12489), + [anon_sym_BSLASHftvolcite] = ACTIONS(12489), + [anon_sym_BSLASHsvolcite] = ACTIONS(12489), + [anon_sym_BSLASHSvolcite] = ACTIONS(12489), + [anon_sym_BSLASHtvolcite] = ACTIONS(12489), + [anon_sym_BSLASHTvolcite] = ACTIONS(12489), + [anon_sym_BSLASHavolcite] = ACTIONS(12489), + [anon_sym_BSLASHAvolcite] = ACTIONS(12489), + [anon_sym_BSLASHnotecite] = ACTIONS(12489), + [anon_sym_BSLASHpnotecite] = ACTIONS(12489), + [anon_sym_BSLASHPnotecite] = ACTIONS(12489), + [anon_sym_BSLASHfnotecite] = ACTIONS(12489), + [anon_sym_BSLASHusepackage] = ACTIONS(12489), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12489), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12489), + [anon_sym_BSLASHinclude] = ACTIONS(12489), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12489), + [anon_sym_BSLASHinput] = ACTIONS(12489), + [anon_sym_BSLASHsubfile] = ACTIONS(12489), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12489), + [anon_sym_BSLASHbibliography] = ACTIONS(12489), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12489), + [anon_sym_BSLASHincludesvg] = ACTIONS(12489), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12489), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12489), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12489), + [anon_sym_BSLASHimport] = ACTIONS(12489), + [anon_sym_BSLASHsubimport] = ACTIONS(12489), + [anon_sym_BSLASHinputfrom] = ACTIONS(12489), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12489), + [anon_sym_BSLASHincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHlabel] = ACTIONS(12489), + [anon_sym_BSLASHref] = ACTIONS(12489), + [anon_sym_BSLASHvref] = ACTIONS(12489), + [anon_sym_BSLASHVref] = ACTIONS(12489), + [anon_sym_BSLASHautoref] = ACTIONS(12489), + [anon_sym_BSLASHpageref] = ACTIONS(12489), + [anon_sym_BSLASHcref] = ACTIONS(12489), + [anon_sym_BSLASHCref] = ACTIONS(12489), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnameCref] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHlabelcref] = ACTIONS(12489), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12489), + [anon_sym_BSLASHeqref] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange] = ACTIONS(12489), + [anon_sym_BSLASHCrefrange] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewlabel] = ACTIONS(12489), + [anon_sym_BSLASHnewcommand] = ACTIONS(12489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12489), + [anon_sym_BSLASHgls] = ACTIONS(12489), + [anon_sym_BSLASHGls] = ACTIONS(12489), + [anon_sym_BSLASHGLS] = ACTIONS(12489), + [anon_sym_BSLASHglspl] = ACTIONS(12489), + [anon_sym_BSLASHGlspl] = ACTIONS(12489), + [anon_sym_BSLASHGLSpl] = ACTIONS(12489), + [anon_sym_BSLASHglsdisp] = ACTIONS(12489), + [anon_sym_BSLASHglslink] = ACTIONS(12489), + [anon_sym_BSLASHglstext] = ACTIONS(12489), + [anon_sym_BSLASHGlstext] = ACTIONS(12489), + [anon_sym_BSLASHGLStext] = ACTIONS(12489), + [anon_sym_BSLASHglsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12489), + [anon_sym_BSLASHglsplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSplural] = ACTIONS(12489), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHglsname] = ACTIONS(12489), + [anon_sym_BSLASHGlsname] = ACTIONS(12489), + [anon_sym_BSLASHGLSname] = ACTIONS(12489), + [anon_sym_BSLASHglssymbol] = ACTIONS(12489), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12489), + [anon_sym_BSLASHglsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12489), + [anon_sym_BSLASHglsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12489), + [anon_sym_BSLASHglsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12489), + [anon_sym_BSLASHglsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12489), + [anon_sym_BSLASHglsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12489), + [anon_sym_BSLASHnewacronym] = ACTIONS(12489), + [anon_sym_BSLASHacrshort] = ACTIONS(12489), + [anon_sym_BSLASHAcrshort] = ACTIONS(12489), + [anon_sym_BSLASHACRshort] = ACTIONS(12489), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12489), + [anon_sym_BSLASHacrlong] = ACTIONS(12489), + [anon_sym_BSLASHAcrlong] = ACTIONS(12489), + [anon_sym_BSLASHACRlong] = ACTIONS(12489), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12489), + [anon_sym_BSLASHacrfull] = ACTIONS(12489), + [anon_sym_BSLASHAcrfull] = ACTIONS(12489), + [anon_sym_BSLASHACRfull] = ACTIONS(12489), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12489), + [anon_sym_BSLASHacs] = ACTIONS(12489), + [anon_sym_BSLASHAcs] = ACTIONS(12489), + [anon_sym_BSLASHacsp] = ACTIONS(12489), + [anon_sym_BSLASHAcsp] = ACTIONS(12489), + [anon_sym_BSLASHacl] = ACTIONS(12489), + [anon_sym_BSLASHAcl] = ACTIONS(12489), + [anon_sym_BSLASHaclp] = ACTIONS(12489), + [anon_sym_BSLASHAclp] = ACTIONS(12489), + [anon_sym_BSLASHacf] = ACTIONS(12489), + [anon_sym_BSLASHAcf] = ACTIONS(12489), + [anon_sym_BSLASHacfp] = ACTIONS(12489), + [anon_sym_BSLASHAcfp] = ACTIONS(12489), + [anon_sym_BSLASHac] = ACTIONS(12489), + [anon_sym_BSLASHAc] = ACTIONS(12489), + [anon_sym_BSLASHacp] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12489), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12489), + [anon_sym_BSLASHcolor] = ACTIONS(12489), + [anon_sym_BSLASHcolorbox] = ACTIONS(12489), + [anon_sym_BSLASHtextcolor] = ACTIONS(12489), + [anon_sym_BSLASHpagecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12489), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12489), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12489), + }, + [1833] = { + [sym_generic_command_name] = ACTIONS(12473), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12473), + [anon_sym_LBRACK] = ACTIONS(12471), + [anon_sym_RBRACK] = ACTIONS(12471), + [anon_sym_LBRACE] = ACTIONS(12471), + [anon_sym_RBRACE] = ACTIONS(12471), + [anon_sym_LPAREN] = ACTIONS(12471), + [anon_sym_COMMA] = ACTIONS(12471), + [anon_sym_EQ] = ACTIONS(12471), + [sym_word] = ACTIONS(12471), + [sym_param] = ACTIONS(12471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12471), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12471), + [anon_sym_DOLLAR] = ACTIONS(12473), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12471), + [anon_sym_BSLASHbegin] = ACTIONS(12473), + [anon_sym_BSLASHcaption] = ACTIONS(12473), + [anon_sym_BSLASHcite] = ACTIONS(12473), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCite] = ACTIONS(12473), + [anon_sym_BSLASHnocite] = ACTIONS(12473), + [anon_sym_BSLASHcitet] = ACTIONS(12473), + [anon_sym_BSLASHcitep] = ACTIONS(12473), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteauthor] = ACTIONS(12473), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12473), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitetitle] = ACTIONS(12473), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteyear] = ACTIONS(12473), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitedate] = ACTIONS(12473), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteurl] = ACTIONS(12473), + [anon_sym_BSLASHfullcite] = ACTIONS(12473), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12473), + [anon_sym_BSLASHcitealt] = ACTIONS(12473), + [anon_sym_BSLASHcitealp] = ACTIONS(12473), + [anon_sym_BSLASHcitetext] = ACTIONS(12473), + [anon_sym_BSLASHparencite] = ACTIONS(12473), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHParencite] = ACTIONS(12473), + [anon_sym_BSLASHfootcite] = ACTIONS(12473), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12473), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12473), + [anon_sym_BSLASHtextcite] = ACTIONS(12473), + [anon_sym_BSLASHTextcite] = ACTIONS(12473), + [anon_sym_BSLASHsmartcite] = ACTIONS(12473), + [anon_sym_BSLASHSmartcite] = ACTIONS(12473), + [anon_sym_BSLASHsupercite] = ACTIONS(12473), + [anon_sym_BSLASHautocite] = ACTIONS(12473), + [anon_sym_BSLASHAutocite] = ACTIONS(12473), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHvolcite] = ACTIONS(12473), + [anon_sym_BSLASHVolcite] = ACTIONS(12473), + [anon_sym_BSLASHpvolcite] = ACTIONS(12473), + [anon_sym_BSLASHPvolcite] = ACTIONS(12473), + [anon_sym_BSLASHfvolcite] = ACTIONS(12473), + [anon_sym_BSLASHftvolcite] = ACTIONS(12473), + [anon_sym_BSLASHsvolcite] = ACTIONS(12473), + [anon_sym_BSLASHSvolcite] = ACTIONS(12473), + [anon_sym_BSLASHtvolcite] = ACTIONS(12473), + [anon_sym_BSLASHTvolcite] = ACTIONS(12473), + [anon_sym_BSLASHavolcite] = ACTIONS(12473), + [anon_sym_BSLASHAvolcite] = ACTIONS(12473), + [anon_sym_BSLASHnotecite] = ACTIONS(12473), + [anon_sym_BSLASHpnotecite] = ACTIONS(12473), + [anon_sym_BSLASHPnotecite] = ACTIONS(12473), + [anon_sym_BSLASHfnotecite] = ACTIONS(12473), + [anon_sym_BSLASHusepackage] = ACTIONS(12473), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12473), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12473), + [anon_sym_BSLASHinclude] = ACTIONS(12473), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12473), + [anon_sym_BSLASHinput] = ACTIONS(12473), + [anon_sym_BSLASHsubfile] = ACTIONS(12473), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12473), + [anon_sym_BSLASHbibliography] = ACTIONS(12473), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12473), + [anon_sym_BSLASHincludesvg] = ACTIONS(12473), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12473), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12473), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12473), + [anon_sym_BSLASHimport] = ACTIONS(12473), + [anon_sym_BSLASHsubimport] = ACTIONS(12473), + [anon_sym_BSLASHinputfrom] = ACTIONS(12473), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12473), + [anon_sym_BSLASHincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHlabel] = ACTIONS(12473), + [anon_sym_BSLASHref] = ACTIONS(12473), + [anon_sym_BSLASHvref] = ACTIONS(12473), + [anon_sym_BSLASHVref] = ACTIONS(12473), + [anon_sym_BSLASHautoref] = ACTIONS(12473), + [anon_sym_BSLASHpageref] = ACTIONS(12473), + [anon_sym_BSLASHcref] = ACTIONS(12473), + [anon_sym_BSLASHCref] = ACTIONS(12473), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnameCref] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHlabelcref] = ACTIONS(12473), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12473), + [anon_sym_BSLASHeqref] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange] = ACTIONS(12473), + [anon_sym_BSLASHCrefrange] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewlabel] = ACTIONS(12473), + [anon_sym_BSLASHnewcommand] = ACTIONS(12473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12473), + [anon_sym_BSLASHgls] = ACTIONS(12473), + [anon_sym_BSLASHGls] = ACTIONS(12473), + [anon_sym_BSLASHGLS] = ACTIONS(12473), + [anon_sym_BSLASHglspl] = ACTIONS(12473), + [anon_sym_BSLASHGlspl] = ACTIONS(12473), + [anon_sym_BSLASHGLSpl] = ACTIONS(12473), + [anon_sym_BSLASHglsdisp] = ACTIONS(12473), + [anon_sym_BSLASHglslink] = ACTIONS(12473), + [anon_sym_BSLASHglstext] = ACTIONS(12473), + [anon_sym_BSLASHGlstext] = ACTIONS(12473), + [anon_sym_BSLASHGLStext] = ACTIONS(12473), + [anon_sym_BSLASHglsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12473), + [anon_sym_BSLASHglsplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSplural] = ACTIONS(12473), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHglsname] = ACTIONS(12473), + [anon_sym_BSLASHGlsname] = ACTIONS(12473), + [anon_sym_BSLASHGLSname] = ACTIONS(12473), + [anon_sym_BSLASHglssymbol] = ACTIONS(12473), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12473), + [anon_sym_BSLASHglsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12473), + [anon_sym_BSLASHglsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12473), + [anon_sym_BSLASHglsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12473), + [anon_sym_BSLASHglsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12473), + [anon_sym_BSLASHglsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12473), + [anon_sym_BSLASHnewacronym] = ACTIONS(12473), + [anon_sym_BSLASHacrshort] = ACTIONS(12473), + [anon_sym_BSLASHAcrshort] = ACTIONS(12473), + [anon_sym_BSLASHACRshort] = ACTIONS(12473), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12473), + [anon_sym_BSLASHacrlong] = ACTIONS(12473), + [anon_sym_BSLASHAcrlong] = ACTIONS(12473), + [anon_sym_BSLASHACRlong] = ACTIONS(12473), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12473), + [anon_sym_BSLASHacrfull] = ACTIONS(12473), + [anon_sym_BSLASHAcrfull] = ACTIONS(12473), + [anon_sym_BSLASHACRfull] = ACTIONS(12473), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12473), + [anon_sym_BSLASHacs] = ACTIONS(12473), + [anon_sym_BSLASHAcs] = ACTIONS(12473), + [anon_sym_BSLASHacsp] = ACTIONS(12473), + [anon_sym_BSLASHAcsp] = ACTIONS(12473), + [anon_sym_BSLASHacl] = ACTIONS(12473), + [anon_sym_BSLASHAcl] = ACTIONS(12473), + [anon_sym_BSLASHaclp] = ACTIONS(12473), + [anon_sym_BSLASHAclp] = ACTIONS(12473), + [anon_sym_BSLASHacf] = ACTIONS(12473), + [anon_sym_BSLASHAcf] = ACTIONS(12473), + [anon_sym_BSLASHacfp] = ACTIONS(12473), + [anon_sym_BSLASHAcfp] = ACTIONS(12473), + [anon_sym_BSLASHac] = ACTIONS(12473), + [anon_sym_BSLASHAc] = ACTIONS(12473), + [anon_sym_BSLASHacp] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12473), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12473), + [anon_sym_BSLASHcolor] = ACTIONS(12473), + [anon_sym_BSLASHcolorbox] = ACTIONS(12473), + [anon_sym_BSLASHtextcolor] = ACTIONS(12473), + [anon_sym_BSLASHpagecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12473), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12473), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12473), + }, + [1834] = { + [sym_generic_command_name] = ACTIONS(12457), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12457), + [anon_sym_LBRACK] = ACTIONS(12455), + [anon_sym_RBRACK] = ACTIONS(12455), + [anon_sym_LBRACE] = ACTIONS(12455), + [anon_sym_RBRACE] = ACTIONS(12455), + [anon_sym_LPAREN] = ACTIONS(12455), + [anon_sym_COMMA] = ACTIONS(12455), + [anon_sym_EQ] = ACTIONS(12455), + [sym_word] = ACTIONS(12455), + [sym_param] = ACTIONS(12455), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12455), + [anon_sym_DOLLAR] = ACTIONS(12457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12455), + [anon_sym_BSLASHbegin] = ACTIONS(12457), + [anon_sym_BSLASHcaption] = ACTIONS(12457), + [anon_sym_BSLASHcite] = ACTIONS(12457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCite] = ACTIONS(12457), + [anon_sym_BSLASHnocite] = ACTIONS(12457), + [anon_sym_BSLASHcitet] = ACTIONS(12457), + [anon_sym_BSLASHcitep] = ACTIONS(12457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteauthor] = ACTIONS(12457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitetitle] = ACTIONS(12457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteyear] = ACTIONS(12457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitedate] = ACTIONS(12457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteurl] = ACTIONS(12457), + [anon_sym_BSLASHfullcite] = ACTIONS(12457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12457), + [anon_sym_BSLASHcitealt] = ACTIONS(12457), + [anon_sym_BSLASHcitealp] = ACTIONS(12457), + [anon_sym_BSLASHcitetext] = ACTIONS(12457), + [anon_sym_BSLASHparencite] = ACTIONS(12457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHParencite] = ACTIONS(12457), + [anon_sym_BSLASHfootcite] = ACTIONS(12457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12457), + [anon_sym_BSLASHtextcite] = ACTIONS(12457), + [anon_sym_BSLASHTextcite] = ACTIONS(12457), + [anon_sym_BSLASHsmartcite] = ACTIONS(12457), + [anon_sym_BSLASHSmartcite] = ACTIONS(12457), + [anon_sym_BSLASHsupercite] = ACTIONS(12457), + [anon_sym_BSLASHautocite] = ACTIONS(12457), + [anon_sym_BSLASHAutocite] = ACTIONS(12457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHvolcite] = ACTIONS(12457), + [anon_sym_BSLASHVolcite] = ACTIONS(12457), + [anon_sym_BSLASHpvolcite] = ACTIONS(12457), + [anon_sym_BSLASHPvolcite] = ACTIONS(12457), + [anon_sym_BSLASHfvolcite] = ACTIONS(12457), + [anon_sym_BSLASHftvolcite] = ACTIONS(12457), + [anon_sym_BSLASHsvolcite] = ACTIONS(12457), + [anon_sym_BSLASHSvolcite] = ACTIONS(12457), + [anon_sym_BSLASHtvolcite] = ACTIONS(12457), + [anon_sym_BSLASHTvolcite] = ACTIONS(12457), + [anon_sym_BSLASHavolcite] = ACTIONS(12457), + [anon_sym_BSLASHAvolcite] = ACTIONS(12457), + [anon_sym_BSLASHnotecite] = ACTIONS(12457), + [anon_sym_BSLASHpnotecite] = ACTIONS(12457), + [anon_sym_BSLASHPnotecite] = ACTIONS(12457), + [anon_sym_BSLASHfnotecite] = ACTIONS(12457), + [anon_sym_BSLASHusepackage] = ACTIONS(12457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12457), + [anon_sym_BSLASHinclude] = ACTIONS(12457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12457), + [anon_sym_BSLASHinput] = ACTIONS(12457), + [anon_sym_BSLASHsubfile] = ACTIONS(12457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12457), + [anon_sym_BSLASHbibliography] = ACTIONS(12457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12457), + [anon_sym_BSLASHincludesvg] = ACTIONS(12457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12457), + [anon_sym_BSLASHimport] = ACTIONS(12457), + [anon_sym_BSLASHsubimport] = ACTIONS(12457), + [anon_sym_BSLASHinputfrom] = ACTIONS(12457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12457), + [anon_sym_BSLASHincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHlabel] = ACTIONS(12457), + [anon_sym_BSLASHref] = ACTIONS(12457), + [anon_sym_BSLASHvref] = ACTIONS(12457), + [anon_sym_BSLASHVref] = ACTIONS(12457), + [anon_sym_BSLASHautoref] = ACTIONS(12457), + [anon_sym_BSLASHpageref] = ACTIONS(12457), + [anon_sym_BSLASHcref] = ACTIONS(12457), + [anon_sym_BSLASHCref] = ACTIONS(12457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnameCref] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHlabelcref] = ACTIONS(12457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12457), + [anon_sym_BSLASHeqref] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange] = ACTIONS(12457), + [anon_sym_BSLASHCrefrange] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewlabel] = ACTIONS(12457), + [anon_sym_BSLASHnewcommand] = ACTIONS(12457), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12457), + [anon_sym_BSLASHgls] = ACTIONS(12457), + [anon_sym_BSLASHGls] = ACTIONS(12457), + [anon_sym_BSLASHGLS] = ACTIONS(12457), + [anon_sym_BSLASHglspl] = ACTIONS(12457), + [anon_sym_BSLASHGlspl] = ACTIONS(12457), + [anon_sym_BSLASHGLSpl] = ACTIONS(12457), + [anon_sym_BSLASHglsdisp] = ACTIONS(12457), + [anon_sym_BSLASHglslink] = ACTIONS(12457), + [anon_sym_BSLASHglstext] = ACTIONS(12457), + [anon_sym_BSLASHGlstext] = ACTIONS(12457), + [anon_sym_BSLASHGLStext] = ACTIONS(12457), + [anon_sym_BSLASHglsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12457), + [anon_sym_BSLASHglsplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSplural] = ACTIONS(12457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHglsname] = ACTIONS(12457), + [anon_sym_BSLASHGlsname] = ACTIONS(12457), + [anon_sym_BSLASHGLSname] = ACTIONS(12457), + [anon_sym_BSLASHglssymbol] = ACTIONS(12457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12457), + [anon_sym_BSLASHglsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12457), + [anon_sym_BSLASHglsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12457), + [anon_sym_BSLASHglsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12457), + [anon_sym_BSLASHglsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12457), + [anon_sym_BSLASHglsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12457), + [anon_sym_BSLASHnewacronym] = ACTIONS(12457), + [anon_sym_BSLASHacrshort] = ACTIONS(12457), + [anon_sym_BSLASHAcrshort] = ACTIONS(12457), + [anon_sym_BSLASHACRshort] = ACTIONS(12457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12457), + [anon_sym_BSLASHacrlong] = ACTIONS(12457), + [anon_sym_BSLASHAcrlong] = ACTIONS(12457), + [anon_sym_BSLASHACRlong] = ACTIONS(12457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12457), + [anon_sym_BSLASHacrfull] = ACTIONS(12457), + [anon_sym_BSLASHAcrfull] = ACTIONS(12457), + [anon_sym_BSLASHACRfull] = ACTIONS(12457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12457), + [anon_sym_BSLASHacs] = ACTIONS(12457), + [anon_sym_BSLASHAcs] = ACTIONS(12457), + [anon_sym_BSLASHacsp] = ACTIONS(12457), + [anon_sym_BSLASHAcsp] = ACTIONS(12457), + [anon_sym_BSLASHacl] = ACTIONS(12457), + [anon_sym_BSLASHAcl] = ACTIONS(12457), + [anon_sym_BSLASHaclp] = ACTIONS(12457), + [anon_sym_BSLASHAclp] = ACTIONS(12457), + [anon_sym_BSLASHacf] = ACTIONS(12457), + [anon_sym_BSLASHAcf] = ACTIONS(12457), + [anon_sym_BSLASHacfp] = ACTIONS(12457), + [anon_sym_BSLASHAcfp] = ACTIONS(12457), + [anon_sym_BSLASHac] = ACTIONS(12457), + [anon_sym_BSLASHAc] = ACTIONS(12457), + [anon_sym_BSLASHacp] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12457), + [anon_sym_BSLASHcolor] = ACTIONS(12457), + [anon_sym_BSLASHcolorbox] = ACTIONS(12457), + [anon_sym_BSLASHtextcolor] = ACTIONS(12457), + [anon_sym_BSLASHpagecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12457), + }, + [1835] = { + [sym_generic_command_name] = ACTIONS(12417), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12417), + [anon_sym_LBRACK] = ACTIONS(12415), + [anon_sym_RBRACK] = ACTIONS(12415), + [anon_sym_LBRACE] = ACTIONS(12415), + [anon_sym_RBRACE] = ACTIONS(12415), + [anon_sym_LPAREN] = ACTIONS(12415), + [anon_sym_COMMA] = ACTIONS(12415), + [anon_sym_EQ] = ACTIONS(12415), + [sym_word] = ACTIONS(12415), + [sym_param] = ACTIONS(12415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12415), + [anon_sym_DOLLAR] = ACTIONS(12417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12415), + [anon_sym_BSLASHbegin] = ACTIONS(12417), + [anon_sym_BSLASHcaption] = ACTIONS(12417), + [anon_sym_BSLASHcite] = ACTIONS(12417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCite] = ACTIONS(12417), + [anon_sym_BSLASHnocite] = ACTIONS(12417), + [anon_sym_BSLASHcitet] = ACTIONS(12417), + [anon_sym_BSLASHcitep] = ACTIONS(12417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteauthor] = ACTIONS(12417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitetitle] = ACTIONS(12417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteyear] = ACTIONS(12417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitedate] = ACTIONS(12417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteurl] = ACTIONS(12417), + [anon_sym_BSLASHfullcite] = ACTIONS(12417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12417), + [anon_sym_BSLASHcitealt] = ACTIONS(12417), + [anon_sym_BSLASHcitealp] = ACTIONS(12417), + [anon_sym_BSLASHcitetext] = ACTIONS(12417), + [anon_sym_BSLASHparencite] = ACTIONS(12417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHParencite] = ACTIONS(12417), + [anon_sym_BSLASHfootcite] = ACTIONS(12417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12417), + [anon_sym_BSLASHtextcite] = ACTIONS(12417), + [anon_sym_BSLASHTextcite] = ACTIONS(12417), + [anon_sym_BSLASHsmartcite] = ACTIONS(12417), + [anon_sym_BSLASHSmartcite] = ACTIONS(12417), + [anon_sym_BSLASHsupercite] = ACTIONS(12417), + [anon_sym_BSLASHautocite] = ACTIONS(12417), + [anon_sym_BSLASHAutocite] = ACTIONS(12417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHvolcite] = ACTIONS(12417), + [anon_sym_BSLASHVolcite] = ACTIONS(12417), + [anon_sym_BSLASHpvolcite] = ACTIONS(12417), + [anon_sym_BSLASHPvolcite] = ACTIONS(12417), + [anon_sym_BSLASHfvolcite] = ACTIONS(12417), + [anon_sym_BSLASHftvolcite] = ACTIONS(12417), + [anon_sym_BSLASHsvolcite] = ACTIONS(12417), + [anon_sym_BSLASHSvolcite] = ACTIONS(12417), + [anon_sym_BSLASHtvolcite] = ACTIONS(12417), + [anon_sym_BSLASHTvolcite] = ACTIONS(12417), + [anon_sym_BSLASHavolcite] = ACTIONS(12417), + [anon_sym_BSLASHAvolcite] = ACTIONS(12417), + [anon_sym_BSLASHnotecite] = ACTIONS(12417), + [anon_sym_BSLASHpnotecite] = ACTIONS(12417), + [anon_sym_BSLASHPnotecite] = ACTIONS(12417), + [anon_sym_BSLASHfnotecite] = ACTIONS(12417), + [anon_sym_BSLASHusepackage] = ACTIONS(12417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12417), + [anon_sym_BSLASHinclude] = ACTIONS(12417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12417), + [anon_sym_BSLASHinput] = ACTIONS(12417), + [anon_sym_BSLASHsubfile] = ACTIONS(12417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12417), + [anon_sym_BSLASHbibliography] = ACTIONS(12417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12417), + [anon_sym_BSLASHincludesvg] = ACTIONS(12417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12417), + [anon_sym_BSLASHimport] = ACTIONS(12417), + [anon_sym_BSLASHsubimport] = ACTIONS(12417), + [anon_sym_BSLASHinputfrom] = ACTIONS(12417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12417), + [anon_sym_BSLASHincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHlabel] = ACTIONS(12417), + [anon_sym_BSLASHref] = ACTIONS(12417), + [anon_sym_BSLASHvref] = ACTIONS(12417), + [anon_sym_BSLASHVref] = ACTIONS(12417), + [anon_sym_BSLASHautoref] = ACTIONS(12417), + [anon_sym_BSLASHpageref] = ACTIONS(12417), + [anon_sym_BSLASHcref] = ACTIONS(12417), + [anon_sym_BSLASHCref] = ACTIONS(12417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnameCref] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHlabelcref] = ACTIONS(12417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12417), + [anon_sym_BSLASHeqref] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange] = ACTIONS(12417), + [anon_sym_BSLASHCrefrange] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewlabel] = ACTIONS(12417), + [anon_sym_BSLASHnewcommand] = ACTIONS(12417), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12417), + [anon_sym_BSLASHgls] = ACTIONS(12417), + [anon_sym_BSLASHGls] = ACTIONS(12417), + [anon_sym_BSLASHGLS] = ACTIONS(12417), + [anon_sym_BSLASHglspl] = ACTIONS(12417), + [anon_sym_BSLASHGlspl] = ACTIONS(12417), + [anon_sym_BSLASHGLSpl] = ACTIONS(12417), + [anon_sym_BSLASHglsdisp] = ACTIONS(12417), + [anon_sym_BSLASHglslink] = ACTIONS(12417), + [anon_sym_BSLASHglstext] = ACTIONS(12417), + [anon_sym_BSLASHGlstext] = ACTIONS(12417), + [anon_sym_BSLASHGLStext] = ACTIONS(12417), + [anon_sym_BSLASHglsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12417), + [anon_sym_BSLASHglsplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSplural] = ACTIONS(12417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHglsname] = ACTIONS(12417), + [anon_sym_BSLASHGlsname] = ACTIONS(12417), + [anon_sym_BSLASHGLSname] = ACTIONS(12417), + [anon_sym_BSLASHglssymbol] = ACTIONS(12417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12417), + [anon_sym_BSLASHglsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12417), + [anon_sym_BSLASHglsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12417), + [anon_sym_BSLASHglsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12417), + [anon_sym_BSLASHglsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12417), + [anon_sym_BSLASHglsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12417), + [anon_sym_BSLASHnewacronym] = ACTIONS(12417), + [anon_sym_BSLASHacrshort] = ACTIONS(12417), + [anon_sym_BSLASHAcrshort] = ACTIONS(12417), + [anon_sym_BSLASHACRshort] = ACTIONS(12417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12417), + [anon_sym_BSLASHacrlong] = ACTIONS(12417), + [anon_sym_BSLASHAcrlong] = ACTIONS(12417), + [anon_sym_BSLASHACRlong] = ACTIONS(12417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12417), + [anon_sym_BSLASHacrfull] = ACTIONS(12417), + [anon_sym_BSLASHAcrfull] = ACTIONS(12417), + [anon_sym_BSLASHACRfull] = ACTIONS(12417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12417), + [anon_sym_BSLASHacs] = ACTIONS(12417), + [anon_sym_BSLASHAcs] = ACTIONS(12417), + [anon_sym_BSLASHacsp] = ACTIONS(12417), + [anon_sym_BSLASHAcsp] = ACTIONS(12417), + [anon_sym_BSLASHacl] = ACTIONS(12417), + [anon_sym_BSLASHAcl] = ACTIONS(12417), + [anon_sym_BSLASHaclp] = ACTIONS(12417), + [anon_sym_BSLASHAclp] = ACTIONS(12417), + [anon_sym_BSLASHacf] = ACTIONS(12417), + [anon_sym_BSLASHAcf] = ACTIONS(12417), + [anon_sym_BSLASHacfp] = ACTIONS(12417), + [anon_sym_BSLASHAcfp] = ACTIONS(12417), + [anon_sym_BSLASHac] = ACTIONS(12417), + [anon_sym_BSLASHAc] = ACTIONS(12417), + [anon_sym_BSLASHacp] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12417), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12417), + [anon_sym_BSLASHcolor] = ACTIONS(12417), + [anon_sym_BSLASHcolorbox] = ACTIONS(12417), + [anon_sym_BSLASHtextcolor] = ACTIONS(12417), + [anon_sym_BSLASHpagecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12417), + }, + [1836] = { + [sym_generic_command_name] = ACTIONS(12389), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12389), + [anon_sym_LBRACK] = ACTIONS(12387), + [anon_sym_RBRACK] = ACTIONS(12387), + [anon_sym_LBRACE] = ACTIONS(12387), + [anon_sym_RBRACE] = ACTIONS(12387), + [anon_sym_LPAREN] = ACTIONS(12387), + [anon_sym_COMMA] = ACTIONS(12387), + [anon_sym_EQ] = ACTIONS(12387), + [sym_word] = ACTIONS(12387), + [sym_param] = ACTIONS(12387), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12387), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12387), + [anon_sym_DOLLAR] = ACTIONS(12389), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12387), + [anon_sym_BSLASHbegin] = ACTIONS(12389), + [anon_sym_BSLASHcaption] = ACTIONS(12389), + [anon_sym_BSLASHcite] = ACTIONS(12389), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCite] = ACTIONS(12389), + [anon_sym_BSLASHnocite] = ACTIONS(12389), + [anon_sym_BSLASHcitet] = ACTIONS(12389), + [anon_sym_BSLASHcitep] = ACTIONS(12389), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteauthor] = ACTIONS(12389), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12389), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitetitle] = ACTIONS(12389), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteyear] = ACTIONS(12389), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitedate] = ACTIONS(12389), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteurl] = ACTIONS(12389), + [anon_sym_BSLASHfullcite] = ACTIONS(12389), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12389), + [anon_sym_BSLASHcitealt] = ACTIONS(12389), + [anon_sym_BSLASHcitealp] = ACTIONS(12389), + [anon_sym_BSLASHcitetext] = ACTIONS(12389), + [anon_sym_BSLASHparencite] = ACTIONS(12389), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHParencite] = ACTIONS(12389), + [anon_sym_BSLASHfootcite] = ACTIONS(12389), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12389), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12389), + [anon_sym_BSLASHtextcite] = ACTIONS(12389), + [anon_sym_BSLASHTextcite] = ACTIONS(12389), + [anon_sym_BSLASHsmartcite] = ACTIONS(12389), + [anon_sym_BSLASHSmartcite] = ACTIONS(12389), + [anon_sym_BSLASHsupercite] = ACTIONS(12389), + [anon_sym_BSLASHautocite] = ACTIONS(12389), + [anon_sym_BSLASHAutocite] = ACTIONS(12389), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHvolcite] = ACTIONS(12389), + [anon_sym_BSLASHVolcite] = ACTIONS(12389), + [anon_sym_BSLASHpvolcite] = ACTIONS(12389), + [anon_sym_BSLASHPvolcite] = ACTIONS(12389), + [anon_sym_BSLASHfvolcite] = ACTIONS(12389), + [anon_sym_BSLASHftvolcite] = ACTIONS(12389), + [anon_sym_BSLASHsvolcite] = ACTIONS(12389), + [anon_sym_BSLASHSvolcite] = ACTIONS(12389), + [anon_sym_BSLASHtvolcite] = ACTIONS(12389), + [anon_sym_BSLASHTvolcite] = ACTIONS(12389), + [anon_sym_BSLASHavolcite] = ACTIONS(12389), + [anon_sym_BSLASHAvolcite] = ACTIONS(12389), + [anon_sym_BSLASHnotecite] = ACTIONS(12389), + [anon_sym_BSLASHpnotecite] = ACTIONS(12389), + [anon_sym_BSLASHPnotecite] = ACTIONS(12389), + [anon_sym_BSLASHfnotecite] = ACTIONS(12389), + [anon_sym_BSLASHusepackage] = ACTIONS(12389), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12389), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12389), + [anon_sym_BSLASHinclude] = ACTIONS(12389), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12389), + [anon_sym_BSLASHinput] = ACTIONS(12389), + [anon_sym_BSLASHsubfile] = ACTIONS(12389), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12389), + [anon_sym_BSLASHbibliography] = ACTIONS(12389), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12389), + [anon_sym_BSLASHincludesvg] = ACTIONS(12389), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12389), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12389), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12389), + [anon_sym_BSLASHimport] = ACTIONS(12389), + [anon_sym_BSLASHsubimport] = ACTIONS(12389), + [anon_sym_BSLASHinputfrom] = ACTIONS(12389), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12389), + [anon_sym_BSLASHincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHlabel] = ACTIONS(12389), + [anon_sym_BSLASHref] = ACTIONS(12389), + [anon_sym_BSLASHvref] = ACTIONS(12389), + [anon_sym_BSLASHVref] = ACTIONS(12389), + [anon_sym_BSLASHautoref] = ACTIONS(12389), + [anon_sym_BSLASHpageref] = ACTIONS(12389), + [anon_sym_BSLASHcref] = ACTIONS(12389), + [anon_sym_BSLASHCref] = ACTIONS(12389), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnameCref] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHlabelcref] = ACTIONS(12389), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12389), + [anon_sym_BSLASHeqref] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange] = ACTIONS(12389), + [anon_sym_BSLASHCrefrange] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewlabel] = ACTIONS(12389), + [anon_sym_BSLASHnewcommand] = ACTIONS(12389), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12389), + [anon_sym_BSLASHgls] = ACTIONS(12389), + [anon_sym_BSLASHGls] = ACTIONS(12389), + [anon_sym_BSLASHGLS] = ACTIONS(12389), + [anon_sym_BSLASHglspl] = ACTIONS(12389), + [anon_sym_BSLASHGlspl] = ACTIONS(12389), + [anon_sym_BSLASHGLSpl] = ACTIONS(12389), + [anon_sym_BSLASHglsdisp] = ACTIONS(12389), + [anon_sym_BSLASHglslink] = ACTIONS(12389), + [anon_sym_BSLASHglstext] = ACTIONS(12389), + [anon_sym_BSLASHGlstext] = ACTIONS(12389), + [anon_sym_BSLASHGLStext] = ACTIONS(12389), + [anon_sym_BSLASHglsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12389), + [anon_sym_BSLASHglsplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSplural] = ACTIONS(12389), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHglsname] = ACTIONS(12389), + [anon_sym_BSLASHGlsname] = ACTIONS(12389), + [anon_sym_BSLASHGLSname] = ACTIONS(12389), + [anon_sym_BSLASHglssymbol] = ACTIONS(12389), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12389), + [anon_sym_BSLASHglsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12389), + [anon_sym_BSLASHglsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12389), + [anon_sym_BSLASHglsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12389), + [anon_sym_BSLASHglsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12389), + [anon_sym_BSLASHglsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12389), + [anon_sym_BSLASHnewacronym] = ACTIONS(12389), + [anon_sym_BSLASHacrshort] = ACTIONS(12389), + [anon_sym_BSLASHAcrshort] = ACTIONS(12389), + [anon_sym_BSLASHACRshort] = ACTIONS(12389), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12389), + [anon_sym_BSLASHacrlong] = ACTIONS(12389), + [anon_sym_BSLASHAcrlong] = ACTIONS(12389), + [anon_sym_BSLASHACRlong] = ACTIONS(12389), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12389), + [anon_sym_BSLASHacrfull] = ACTIONS(12389), + [anon_sym_BSLASHAcrfull] = ACTIONS(12389), + [anon_sym_BSLASHACRfull] = ACTIONS(12389), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12389), + [anon_sym_BSLASHacs] = ACTIONS(12389), + [anon_sym_BSLASHAcs] = ACTIONS(12389), + [anon_sym_BSLASHacsp] = ACTIONS(12389), + [anon_sym_BSLASHAcsp] = ACTIONS(12389), + [anon_sym_BSLASHacl] = ACTIONS(12389), + [anon_sym_BSLASHAcl] = ACTIONS(12389), + [anon_sym_BSLASHaclp] = ACTIONS(12389), + [anon_sym_BSLASHAclp] = ACTIONS(12389), + [anon_sym_BSLASHacf] = ACTIONS(12389), + [anon_sym_BSLASHAcf] = ACTIONS(12389), + [anon_sym_BSLASHacfp] = ACTIONS(12389), + [anon_sym_BSLASHAcfp] = ACTIONS(12389), + [anon_sym_BSLASHac] = ACTIONS(12389), + [anon_sym_BSLASHAc] = ACTIONS(12389), + [anon_sym_BSLASHacp] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12389), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12389), + [anon_sym_BSLASHcolor] = ACTIONS(12389), + [anon_sym_BSLASHcolorbox] = ACTIONS(12389), + [anon_sym_BSLASHtextcolor] = ACTIONS(12389), + [anon_sym_BSLASHpagecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12389), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12389), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12389), + }, + [1837] = { + [sym_generic_command_name] = ACTIONS(12385), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12385), + [anon_sym_LBRACK] = ACTIONS(12383), + [anon_sym_RBRACK] = ACTIONS(12383), + [anon_sym_LBRACE] = ACTIONS(12383), + [anon_sym_RBRACE] = ACTIONS(12383), + [anon_sym_LPAREN] = ACTIONS(12383), + [anon_sym_COMMA] = ACTIONS(12383), + [anon_sym_EQ] = ACTIONS(12383), + [sym_word] = ACTIONS(12383), + [sym_param] = ACTIONS(12383), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12383), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12383), + [anon_sym_DOLLAR] = ACTIONS(12385), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12383), + [anon_sym_BSLASHbegin] = ACTIONS(12385), + [anon_sym_BSLASHcaption] = ACTIONS(12385), + [anon_sym_BSLASHcite] = ACTIONS(12385), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCite] = ACTIONS(12385), + [anon_sym_BSLASHnocite] = ACTIONS(12385), + [anon_sym_BSLASHcitet] = ACTIONS(12385), + [anon_sym_BSLASHcitep] = ACTIONS(12385), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteauthor] = ACTIONS(12385), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12385), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitetitle] = ACTIONS(12385), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteyear] = ACTIONS(12385), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitedate] = ACTIONS(12385), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteurl] = ACTIONS(12385), + [anon_sym_BSLASHfullcite] = ACTIONS(12385), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12385), + [anon_sym_BSLASHcitealt] = ACTIONS(12385), + [anon_sym_BSLASHcitealp] = ACTIONS(12385), + [anon_sym_BSLASHcitetext] = ACTIONS(12385), + [anon_sym_BSLASHparencite] = ACTIONS(12385), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHParencite] = ACTIONS(12385), + [anon_sym_BSLASHfootcite] = ACTIONS(12385), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12385), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12385), + [anon_sym_BSLASHtextcite] = ACTIONS(12385), + [anon_sym_BSLASHTextcite] = ACTIONS(12385), + [anon_sym_BSLASHsmartcite] = ACTIONS(12385), + [anon_sym_BSLASHSmartcite] = ACTIONS(12385), + [anon_sym_BSLASHsupercite] = ACTIONS(12385), + [anon_sym_BSLASHautocite] = ACTIONS(12385), + [anon_sym_BSLASHAutocite] = ACTIONS(12385), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHvolcite] = ACTIONS(12385), + [anon_sym_BSLASHVolcite] = ACTIONS(12385), + [anon_sym_BSLASHpvolcite] = ACTIONS(12385), + [anon_sym_BSLASHPvolcite] = ACTIONS(12385), + [anon_sym_BSLASHfvolcite] = ACTIONS(12385), + [anon_sym_BSLASHftvolcite] = ACTIONS(12385), + [anon_sym_BSLASHsvolcite] = ACTIONS(12385), + [anon_sym_BSLASHSvolcite] = ACTIONS(12385), + [anon_sym_BSLASHtvolcite] = ACTIONS(12385), + [anon_sym_BSLASHTvolcite] = ACTIONS(12385), + [anon_sym_BSLASHavolcite] = ACTIONS(12385), + [anon_sym_BSLASHAvolcite] = ACTIONS(12385), + [anon_sym_BSLASHnotecite] = ACTIONS(12385), + [anon_sym_BSLASHpnotecite] = ACTIONS(12385), + [anon_sym_BSLASHPnotecite] = ACTIONS(12385), + [anon_sym_BSLASHfnotecite] = ACTIONS(12385), + [anon_sym_BSLASHusepackage] = ACTIONS(12385), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12385), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12385), + [anon_sym_BSLASHinclude] = ACTIONS(12385), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12385), + [anon_sym_BSLASHinput] = ACTIONS(12385), + [anon_sym_BSLASHsubfile] = ACTIONS(12385), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12385), + [anon_sym_BSLASHbibliography] = ACTIONS(12385), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12385), + [anon_sym_BSLASHincludesvg] = ACTIONS(12385), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12385), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12385), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12385), + [anon_sym_BSLASHimport] = ACTIONS(12385), + [anon_sym_BSLASHsubimport] = ACTIONS(12385), + [anon_sym_BSLASHinputfrom] = ACTIONS(12385), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12385), + [anon_sym_BSLASHincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHlabel] = ACTIONS(12385), + [anon_sym_BSLASHref] = ACTIONS(12385), + [anon_sym_BSLASHvref] = ACTIONS(12385), + [anon_sym_BSLASHVref] = ACTIONS(12385), + [anon_sym_BSLASHautoref] = ACTIONS(12385), + [anon_sym_BSLASHpageref] = ACTIONS(12385), + [anon_sym_BSLASHcref] = ACTIONS(12385), + [anon_sym_BSLASHCref] = ACTIONS(12385), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnameCref] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHlabelcref] = ACTIONS(12385), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12385), + [anon_sym_BSLASHeqref] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange] = ACTIONS(12385), + [anon_sym_BSLASHCrefrange] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewlabel] = ACTIONS(12385), + [anon_sym_BSLASHnewcommand] = ACTIONS(12385), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12385), + [anon_sym_BSLASHgls] = ACTIONS(12385), + [anon_sym_BSLASHGls] = ACTIONS(12385), + [anon_sym_BSLASHGLS] = ACTIONS(12385), + [anon_sym_BSLASHglspl] = ACTIONS(12385), + [anon_sym_BSLASHGlspl] = ACTIONS(12385), + [anon_sym_BSLASHGLSpl] = ACTIONS(12385), + [anon_sym_BSLASHglsdisp] = ACTIONS(12385), + [anon_sym_BSLASHglslink] = ACTIONS(12385), + [anon_sym_BSLASHglstext] = ACTIONS(12385), + [anon_sym_BSLASHGlstext] = ACTIONS(12385), + [anon_sym_BSLASHGLStext] = ACTIONS(12385), + [anon_sym_BSLASHglsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12385), + [anon_sym_BSLASHglsplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSplural] = ACTIONS(12385), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHglsname] = ACTIONS(12385), + [anon_sym_BSLASHGlsname] = ACTIONS(12385), + [anon_sym_BSLASHGLSname] = ACTIONS(12385), + [anon_sym_BSLASHglssymbol] = ACTIONS(12385), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12385), + [anon_sym_BSLASHglsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12385), + [anon_sym_BSLASHglsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12385), + [anon_sym_BSLASHglsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12385), + [anon_sym_BSLASHglsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12385), + [anon_sym_BSLASHglsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12385), + [anon_sym_BSLASHnewacronym] = ACTIONS(12385), + [anon_sym_BSLASHacrshort] = ACTIONS(12385), + [anon_sym_BSLASHAcrshort] = ACTIONS(12385), + [anon_sym_BSLASHACRshort] = ACTIONS(12385), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12385), + [anon_sym_BSLASHacrlong] = ACTIONS(12385), + [anon_sym_BSLASHAcrlong] = ACTIONS(12385), + [anon_sym_BSLASHACRlong] = ACTIONS(12385), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12385), + [anon_sym_BSLASHacrfull] = ACTIONS(12385), + [anon_sym_BSLASHAcrfull] = ACTIONS(12385), + [anon_sym_BSLASHACRfull] = ACTIONS(12385), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12385), + [anon_sym_BSLASHacs] = ACTIONS(12385), + [anon_sym_BSLASHAcs] = ACTIONS(12385), + [anon_sym_BSLASHacsp] = ACTIONS(12385), + [anon_sym_BSLASHAcsp] = ACTIONS(12385), + [anon_sym_BSLASHacl] = ACTIONS(12385), + [anon_sym_BSLASHAcl] = ACTIONS(12385), + [anon_sym_BSLASHaclp] = ACTIONS(12385), + [anon_sym_BSLASHAclp] = ACTIONS(12385), + [anon_sym_BSLASHacf] = ACTIONS(12385), + [anon_sym_BSLASHAcf] = ACTIONS(12385), + [anon_sym_BSLASHacfp] = ACTIONS(12385), + [anon_sym_BSLASHAcfp] = ACTIONS(12385), + [anon_sym_BSLASHac] = ACTIONS(12385), + [anon_sym_BSLASHAc] = ACTIONS(12385), + [anon_sym_BSLASHacp] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12385), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12385), + [anon_sym_BSLASHcolor] = ACTIONS(12385), + [anon_sym_BSLASHcolorbox] = ACTIONS(12385), + [anon_sym_BSLASHtextcolor] = ACTIONS(12385), + [anon_sym_BSLASHpagecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12385), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12385), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12385), + }, + [1838] = { + [sym_generic_command_name] = ACTIONS(12365), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12365), + [anon_sym_LBRACK] = ACTIONS(12363), + [anon_sym_RBRACK] = ACTIONS(12363), + [anon_sym_LBRACE] = ACTIONS(12363), + [anon_sym_RBRACE] = ACTIONS(12363), + [anon_sym_LPAREN] = ACTIONS(12363), + [anon_sym_COMMA] = ACTIONS(12363), + [anon_sym_EQ] = ACTIONS(12363), + [sym_word] = ACTIONS(12363), + [sym_param] = ACTIONS(12363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12363), + [anon_sym_DOLLAR] = ACTIONS(12365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12363), + [anon_sym_BSLASHbegin] = ACTIONS(12365), + [anon_sym_BSLASHcaption] = ACTIONS(12365), + [anon_sym_BSLASHcite] = ACTIONS(12365), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCite] = ACTIONS(12365), + [anon_sym_BSLASHnocite] = ACTIONS(12365), + [anon_sym_BSLASHcitet] = ACTIONS(12365), + [anon_sym_BSLASHcitep] = ACTIONS(12365), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteauthor] = ACTIONS(12365), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12365), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitetitle] = ACTIONS(12365), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteyear] = ACTIONS(12365), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitedate] = ACTIONS(12365), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteurl] = ACTIONS(12365), + [anon_sym_BSLASHfullcite] = ACTIONS(12365), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12365), + [anon_sym_BSLASHcitealt] = ACTIONS(12365), + [anon_sym_BSLASHcitealp] = ACTIONS(12365), + [anon_sym_BSLASHcitetext] = ACTIONS(12365), + [anon_sym_BSLASHparencite] = ACTIONS(12365), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHParencite] = ACTIONS(12365), + [anon_sym_BSLASHfootcite] = ACTIONS(12365), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12365), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12365), + [anon_sym_BSLASHtextcite] = ACTIONS(12365), + [anon_sym_BSLASHTextcite] = ACTIONS(12365), + [anon_sym_BSLASHsmartcite] = ACTIONS(12365), + [anon_sym_BSLASHSmartcite] = ACTIONS(12365), + [anon_sym_BSLASHsupercite] = ACTIONS(12365), + [anon_sym_BSLASHautocite] = ACTIONS(12365), + [anon_sym_BSLASHAutocite] = ACTIONS(12365), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHvolcite] = ACTIONS(12365), + [anon_sym_BSLASHVolcite] = ACTIONS(12365), + [anon_sym_BSLASHpvolcite] = ACTIONS(12365), + [anon_sym_BSLASHPvolcite] = ACTIONS(12365), + [anon_sym_BSLASHfvolcite] = ACTIONS(12365), + [anon_sym_BSLASHftvolcite] = ACTIONS(12365), + [anon_sym_BSLASHsvolcite] = ACTIONS(12365), + [anon_sym_BSLASHSvolcite] = ACTIONS(12365), + [anon_sym_BSLASHtvolcite] = ACTIONS(12365), + [anon_sym_BSLASHTvolcite] = ACTIONS(12365), + [anon_sym_BSLASHavolcite] = ACTIONS(12365), + [anon_sym_BSLASHAvolcite] = ACTIONS(12365), + [anon_sym_BSLASHnotecite] = ACTIONS(12365), + [anon_sym_BSLASHpnotecite] = ACTIONS(12365), + [anon_sym_BSLASHPnotecite] = ACTIONS(12365), + [anon_sym_BSLASHfnotecite] = ACTIONS(12365), + [anon_sym_BSLASHusepackage] = ACTIONS(12365), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12365), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12365), + [anon_sym_BSLASHinclude] = ACTIONS(12365), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12365), + [anon_sym_BSLASHinput] = ACTIONS(12365), + [anon_sym_BSLASHsubfile] = ACTIONS(12365), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12365), + [anon_sym_BSLASHbibliography] = ACTIONS(12365), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12365), + [anon_sym_BSLASHincludesvg] = ACTIONS(12365), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12365), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12365), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12365), + [anon_sym_BSLASHimport] = ACTIONS(12365), + [anon_sym_BSLASHsubimport] = ACTIONS(12365), + [anon_sym_BSLASHinputfrom] = ACTIONS(12365), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12365), + [anon_sym_BSLASHincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHlabel] = ACTIONS(12365), + [anon_sym_BSLASHref] = ACTIONS(12365), + [anon_sym_BSLASHvref] = ACTIONS(12365), + [anon_sym_BSLASHVref] = ACTIONS(12365), + [anon_sym_BSLASHautoref] = ACTIONS(12365), + [anon_sym_BSLASHpageref] = ACTIONS(12365), + [anon_sym_BSLASHcref] = ACTIONS(12365), + [anon_sym_BSLASHCref] = ACTIONS(12365), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnameCref] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHlabelcref] = ACTIONS(12365), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12365), + [anon_sym_BSLASHeqref] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange] = ACTIONS(12365), + [anon_sym_BSLASHCrefrange] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewlabel] = ACTIONS(12365), + [anon_sym_BSLASHnewcommand] = ACTIONS(12365), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12365), + [anon_sym_BSLASHgls] = ACTIONS(12365), + [anon_sym_BSLASHGls] = ACTIONS(12365), + [anon_sym_BSLASHGLS] = ACTIONS(12365), + [anon_sym_BSLASHglspl] = ACTIONS(12365), + [anon_sym_BSLASHGlspl] = ACTIONS(12365), + [anon_sym_BSLASHGLSpl] = ACTIONS(12365), + [anon_sym_BSLASHglsdisp] = ACTIONS(12365), + [anon_sym_BSLASHglslink] = ACTIONS(12365), + [anon_sym_BSLASHglstext] = ACTIONS(12365), + [anon_sym_BSLASHGlstext] = ACTIONS(12365), + [anon_sym_BSLASHGLStext] = ACTIONS(12365), + [anon_sym_BSLASHglsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12365), + [anon_sym_BSLASHglsplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSplural] = ACTIONS(12365), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHglsname] = ACTIONS(12365), + [anon_sym_BSLASHGlsname] = ACTIONS(12365), + [anon_sym_BSLASHGLSname] = ACTIONS(12365), + [anon_sym_BSLASHglssymbol] = ACTIONS(12365), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12365), + [anon_sym_BSLASHglsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12365), + [anon_sym_BSLASHglsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12365), + [anon_sym_BSLASHglsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12365), + [anon_sym_BSLASHglsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12365), + [anon_sym_BSLASHglsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12365), + [anon_sym_BSLASHnewacronym] = ACTIONS(12365), + [anon_sym_BSLASHacrshort] = ACTIONS(12365), + [anon_sym_BSLASHAcrshort] = ACTIONS(12365), + [anon_sym_BSLASHACRshort] = ACTIONS(12365), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12365), + [anon_sym_BSLASHacrlong] = ACTIONS(12365), + [anon_sym_BSLASHAcrlong] = ACTIONS(12365), + [anon_sym_BSLASHACRlong] = ACTIONS(12365), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12365), + [anon_sym_BSLASHacrfull] = ACTIONS(12365), + [anon_sym_BSLASHAcrfull] = ACTIONS(12365), + [anon_sym_BSLASHACRfull] = ACTIONS(12365), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12365), + [anon_sym_BSLASHacs] = ACTIONS(12365), + [anon_sym_BSLASHAcs] = ACTIONS(12365), + [anon_sym_BSLASHacsp] = ACTIONS(12365), + [anon_sym_BSLASHAcsp] = ACTIONS(12365), + [anon_sym_BSLASHacl] = ACTIONS(12365), + [anon_sym_BSLASHAcl] = ACTIONS(12365), + [anon_sym_BSLASHaclp] = ACTIONS(12365), + [anon_sym_BSLASHAclp] = ACTIONS(12365), + [anon_sym_BSLASHacf] = ACTIONS(12365), + [anon_sym_BSLASHAcf] = ACTIONS(12365), + [anon_sym_BSLASHacfp] = ACTIONS(12365), + [anon_sym_BSLASHAcfp] = ACTIONS(12365), + [anon_sym_BSLASHac] = ACTIONS(12365), + [anon_sym_BSLASHAc] = ACTIONS(12365), + [anon_sym_BSLASHacp] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12365), + [anon_sym_BSLASHcolor] = ACTIONS(12365), + [anon_sym_BSLASHcolorbox] = ACTIONS(12365), + [anon_sym_BSLASHtextcolor] = ACTIONS(12365), + [anon_sym_BSLASHpagecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12365), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12365), + }, + [1839] = { + [sym_generic_command_name] = ACTIONS(12231), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12231), + [anon_sym_LBRACK] = ACTIONS(12229), + [anon_sym_RBRACK] = ACTIONS(12229), + [anon_sym_LBRACE] = ACTIONS(12229), + [anon_sym_RBRACE] = ACTIONS(12229), + [anon_sym_LPAREN] = ACTIONS(12229), + [anon_sym_COMMA] = ACTIONS(12229), + [anon_sym_EQ] = ACTIONS(12229), + [sym_word] = ACTIONS(12229), + [sym_param] = ACTIONS(12229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12229), + [anon_sym_DOLLAR] = ACTIONS(12231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12229), + [anon_sym_BSLASHbegin] = ACTIONS(12231), + [anon_sym_BSLASHcaption] = ACTIONS(12231), + [anon_sym_BSLASHcite] = ACTIONS(12231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCite] = ACTIONS(12231), + [anon_sym_BSLASHnocite] = ACTIONS(12231), + [anon_sym_BSLASHcitet] = ACTIONS(12231), + [anon_sym_BSLASHcitep] = ACTIONS(12231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteauthor] = ACTIONS(12231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitetitle] = ACTIONS(12231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteyear] = ACTIONS(12231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitedate] = ACTIONS(12231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteurl] = ACTIONS(12231), + [anon_sym_BSLASHfullcite] = ACTIONS(12231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12231), + [anon_sym_BSLASHcitealt] = ACTIONS(12231), + [anon_sym_BSLASHcitealp] = ACTIONS(12231), + [anon_sym_BSLASHcitetext] = ACTIONS(12231), + [anon_sym_BSLASHparencite] = ACTIONS(12231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHParencite] = ACTIONS(12231), + [anon_sym_BSLASHfootcite] = ACTIONS(12231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12231), + [anon_sym_BSLASHtextcite] = ACTIONS(12231), + [anon_sym_BSLASHTextcite] = ACTIONS(12231), + [anon_sym_BSLASHsmartcite] = ACTIONS(12231), + [anon_sym_BSLASHSmartcite] = ACTIONS(12231), + [anon_sym_BSLASHsupercite] = ACTIONS(12231), + [anon_sym_BSLASHautocite] = ACTIONS(12231), + [anon_sym_BSLASHAutocite] = ACTIONS(12231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHvolcite] = ACTIONS(12231), + [anon_sym_BSLASHVolcite] = ACTIONS(12231), + [anon_sym_BSLASHpvolcite] = ACTIONS(12231), + [anon_sym_BSLASHPvolcite] = ACTIONS(12231), + [anon_sym_BSLASHfvolcite] = ACTIONS(12231), + [anon_sym_BSLASHftvolcite] = ACTIONS(12231), + [anon_sym_BSLASHsvolcite] = ACTIONS(12231), + [anon_sym_BSLASHSvolcite] = ACTIONS(12231), + [anon_sym_BSLASHtvolcite] = ACTIONS(12231), + [anon_sym_BSLASHTvolcite] = ACTIONS(12231), + [anon_sym_BSLASHavolcite] = ACTIONS(12231), + [anon_sym_BSLASHAvolcite] = ACTIONS(12231), + [anon_sym_BSLASHnotecite] = ACTIONS(12231), + [anon_sym_BSLASHpnotecite] = ACTIONS(12231), + [anon_sym_BSLASHPnotecite] = ACTIONS(12231), + [anon_sym_BSLASHfnotecite] = ACTIONS(12231), + [anon_sym_BSLASHusepackage] = ACTIONS(12231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12231), + [anon_sym_BSLASHinclude] = ACTIONS(12231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12231), + [anon_sym_BSLASHinput] = ACTIONS(12231), + [anon_sym_BSLASHsubfile] = ACTIONS(12231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12231), + [anon_sym_BSLASHbibliography] = ACTIONS(12231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12231), + [anon_sym_BSLASHincludesvg] = ACTIONS(12231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12231), + [anon_sym_BSLASHimport] = ACTIONS(12231), + [anon_sym_BSLASHsubimport] = ACTIONS(12231), + [anon_sym_BSLASHinputfrom] = ACTIONS(12231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12231), + [anon_sym_BSLASHincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHlabel] = ACTIONS(12231), + [anon_sym_BSLASHref] = ACTIONS(12231), + [anon_sym_BSLASHvref] = ACTIONS(12231), + [anon_sym_BSLASHVref] = ACTIONS(12231), + [anon_sym_BSLASHautoref] = ACTIONS(12231), + [anon_sym_BSLASHpageref] = ACTIONS(12231), + [anon_sym_BSLASHcref] = ACTIONS(12231), + [anon_sym_BSLASHCref] = ACTIONS(12231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnameCref] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHlabelcref] = ACTIONS(12231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12231), + [anon_sym_BSLASHeqref] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange] = ACTIONS(12231), + [anon_sym_BSLASHCrefrange] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewlabel] = ACTIONS(12231), + [anon_sym_BSLASHnewcommand] = ACTIONS(12231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12231), + [anon_sym_BSLASHgls] = ACTIONS(12231), + [anon_sym_BSLASHGls] = ACTIONS(12231), + [anon_sym_BSLASHGLS] = ACTIONS(12231), + [anon_sym_BSLASHglspl] = ACTIONS(12231), + [anon_sym_BSLASHGlspl] = ACTIONS(12231), + [anon_sym_BSLASHGLSpl] = ACTIONS(12231), + [anon_sym_BSLASHglsdisp] = ACTIONS(12231), + [anon_sym_BSLASHglslink] = ACTIONS(12231), + [anon_sym_BSLASHglstext] = ACTIONS(12231), + [anon_sym_BSLASHGlstext] = ACTIONS(12231), + [anon_sym_BSLASHGLStext] = ACTIONS(12231), + [anon_sym_BSLASHglsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12231), + [anon_sym_BSLASHglsplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSplural] = ACTIONS(12231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHglsname] = ACTIONS(12231), + [anon_sym_BSLASHGlsname] = ACTIONS(12231), + [anon_sym_BSLASHGLSname] = ACTIONS(12231), + [anon_sym_BSLASHglssymbol] = ACTIONS(12231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12231), + [anon_sym_BSLASHglsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12231), + [anon_sym_BSLASHglsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12231), + [anon_sym_BSLASHglsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12231), + [anon_sym_BSLASHglsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12231), + [anon_sym_BSLASHglsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12231), + [anon_sym_BSLASHnewacronym] = ACTIONS(12231), + [anon_sym_BSLASHacrshort] = ACTIONS(12231), + [anon_sym_BSLASHAcrshort] = ACTIONS(12231), + [anon_sym_BSLASHACRshort] = ACTIONS(12231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12231), + [anon_sym_BSLASHacrlong] = ACTIONS(12231), + [anon_sym_BSLASHAcrlong] = ACTIONS(12231), + [anon_sym_BSLASHACRlong] = ACTIONS(12231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12231), + [anon_sym_BSLASHacrfull] = ACTIONS(12231), + [anon_sym_BSLASHAcrfull] = ACTIONS(12231), + [anon_sym_BSLASHACRfull] = ACTIONS(12231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12231), + [anon_sym_BSLASHacs] = ACTIONS(12231), + [anon_sym_BSLASHAcs] = ACTIONS(12231), + [anon_sym_BSLASHacsp] = ACTIONS(12231), + [anon_sym_BSLASHAcsp] = ACTIONS(12231), + [anon_sym_BSLASHacl] = ACTIONS(12231), + [anon_sym_BSLASHAcl] = ACTIONS(12231), + [anon_sym_BSLASHaclp] = ACTIONS(12231), + [anon_sym_BSLASHAclp] = ACTIONS(12231), + [anon_sym_BSLASHacf] = ACTIONS(12231), + [anon_sym_BSLASHAcf] = ACTIONS(12231), + [anon_sym_BSLASHacfp] = ACTIONS(12231), + [anon_sym_BSLASHAcfp] = ACTIONS(12231), + [anon_sym_BSLASHac] = ACTIONS(12231), + [anon_sym_BSLASHAc] = ACTIONS(12231), + [anon_sym_BSLASHacp] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12231), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12231), + [anon_sym_BSLASHcolor] = ACTIONS(12231), + [anon_sym_BSLASHcolorbox] = ACTIONS(12231), + [anon_sym_BSLASHtextcolor] = ACTIONS(12231), + [anon_sym_BSLASHpagecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12231), + }, + [1840] = { + [sym_generic_command_name] = ACTIONS(12345), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12345), + [anon_sym_LBRACK] = ACTIONS(12343), + [anon_sym_RBRACK] = ACTIONS(12343), + [anon_sym_LBRACE] = ACTIONS(12343), + [anon_sym_RBRACE] = ACTIONS(12343), + [anon_sym_LPAREN] = ACTIONS(12343), + [anon_sym_COMMA] = ACTIONS(12343), + [anon_sym_EQ] = ACTIONS(12343), + [sym_word] = ACTIONS(12343), + [sym_param] = ACTIONS(12343), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12343), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12343), + [anon_sym_DOLLAR] = ACTIONS(12345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12343), + [anon_sym_BSLASHbegin] = ACTIONS(12345), + [anon_sym_BSLASHcaption] = ACTIONS(12345), + [anon_sym_BSLASHcite] = ACTIONS(12345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCite] = ACTIONS(12345), + [anon_sym_BSLASHnocite] = ACTIONS(12345), + [anon_sym_BSLASHcitet] = ACTIONS(12345), + [anon_sym_BSLASHcitep] = ACTIONS(12345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteauthor] = ACTIONS(12345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitetitle] = ACTIONS(12345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteyear] = ACTIONS(12345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitedate] = ACTIONS(12345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteurl] = ACTIONS(12345), + [anon_sym_BSLASHfullcite] = ACTIONS(12345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12345), + [anon_sym_BSLASHcitealt] = ACTIONS(12345), + [anon_sym_BSLASHcitealp] = ACTIONS(12345), + [anon_sym_BSLASHcitetext] = ACTIONS(12345), + [anon_sym_BSLASHparencite] = ACTIONS(12345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHParencite] = ACTIONS(12345), + [anon_sym_BSLASHfootcite] = ACTIONS(12345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12345), + [anon_sym_BSLASHtextcite] = ACTIONS(12345), + [anon_sym_BSLASHTextcite] = ACTIONS(12345), + [anon_sym_BSLASHsmartcite] = ACTIONS(12345), + [anon_sym_BSLASHSmartcite] = ACTIONS(12345), + [anon_sym_BSLASHsupercite] = ACTIONS(12345), + [anon_sym_BSLASHautocite] = ACTIONS(12345), + [anon_sym_BSLASHAutocite] = ACTIONS(12345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHvolcite] = ACTIONS(12345), + [anon_sym_BSLASHVolcite] = ACTIONS(12345), + [anon_sym_BSLASHpvolcite] = ACTIONS(12345), + [anon_sym_BSLASHPvolcite] = ACTIONS(12345), + [anon_sym_BSLASHfvolcite] = ACTIONS(12345), + [anon_sym_BSLASHftvolcite] = ACTIONS(12345), + [anon_sym_BSLASHsvolcite] = ACTIONS(12345), + [anon_sym_BSLASHSvolcite] = ACTIONS(12345), + [anon_sym_BSLASHtvolcite] = ACTIONS(12345), + [anon_sym_BSLASHTvolcite] = ACTIONS(12345), + [anon_sym_BSLASHavolcite] = ACTIONS(12345), + [anon_sym_BSLASHAvolcite] = ACTIONS(12345), + [anon_sym_BSLASHnotecite] = ACTIONS(12345), + [anon_sym_BSLASHpnotecite] = ACTIONS(12345), + [anon_sym_BSLASHPnotecite] = ACTIONS(12345), + [anon_sym_BSLASHfnotecite] = ACTIONS(12345), + [anon_sym_BSLASHusepackage] = ACTIONS(12345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12345), + [anon_sym_BSLASHinclude] = ACTIONS(12345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12345), + [anon_sym_BSLASHinput] = ACTIONS(12345), + [anon_sym_BSLASHsubfile] = ACTIONS(12345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12345), + [anon_sym_BSLASHbibliography] = ACTIONS(12345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12345), + [anon_sym_BSLASHincludesvg] = ACTIONS(12345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12345), + [anon_sym_BSLASHimport] = ACTIONS(12345), + [anon_sym_BSLASHsubimport] = ACTIONS(12345), + [anon_sym_BSLASHinputfrom] = ACTIONS(12345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12345), + [anon_sym_BSLASHincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHlabel] = ACTIONS(12345), + [anon_sym_BSLASHref] = ACTIONS(12345), + [anon_sym_BSLASHvref] = ACTIONS(12345), + [anon_sym_BSLASHVref] = ACTIONS(12345), + [anon_sym_BSLASHautoref] = ACTIONS(12345), + [anon_sym_BSLASHpageref] = ACTIONS(12345), + [anon_sym_BSLASHcref] = ACTIONS(12345), + [anon_sym_BSLASHCref] = ACTIONS(12345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnameCref] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHlabelcref] = ACTIONS(12345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12345), + [anon_sym_BSLASHeqref] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange] = ACTIONS(12345), + [anon_sym_BSLASHCrefrange] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewlabel] = ACTIONS(12345), + [anon_sym_BSLASHnewcommand] = ACTIONS(12345), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12345), + [anon_sym_BSLASHgls] = ACTIONS(12345), + [anon_sym_BSLASHGls] = ACTIONS(12345), + [anon_sym_BSLASHGLS] = ACTIONS(12345), + [anon_sym_BSLASHglspl] = ACTIONS(12345), + [anon_sym_BSLASHGlspl] = ACTIONS(12345), + [anon_sym_BSLASHGLSpl] = ACTIONS(12345), + [anon_sym_BSLASHglsdisp] = ACTIONS(12345), + [anon_sym_BSLASHglslink] = ACTIONS(12345), + [anon_sym_BSLASHglstext] = ACTIONS(12345), + [anon_sym_BSLASHGlstext] = ACTIONS(12345), + [anon_sym_BSLASHGLStext] = ACTIONS(12345), + [anon_sym_BSLASHglsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12345), + [anon_sym_BSLASHglsplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSplural] = ACTIONS(12345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHglsname] = ACTIONS(12345), + [anon_sym_BSLASHGlsname] = ACTIONS(12345), + [anon_sym_BSLASHGLSname] = ACTIONS(12345), + [anon_sym_BSLASHglssymbol] = ACTIONS(12345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12345), + [anon_sym_BSLASHglsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12345), + [anon_sym_BSLASHglsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12345), + [anon_sym_BSLASHglsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12345), + [anon_sym_BSLASHglsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12345), + [anon_sym_BSLASHglsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12345), + [anon_sym_BSLASHnewacronym] = ACTIONS(12345), + [anon_sym_BSLASHacrshort] = ACTIONS(12345), + [anon_sym_BSLASHAcrshort] = ACTIONS(12345), + [anon_sym_BSLASHACRshort] = ACTIONS(12345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12345), + [anon_sym_BSLASHacrlong] = ACTIONS(12345), + [anon_sym_BSLASHAcrlong] = ACTIONS(12345), + [anon_sym_BSLASHACRlong] = ACTIONS(12345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12345), + [anon_sym_BSLASHacrfull] = ACTIONS(12345), + [anon_sym_BSLASHAcrfull] = ACTIONS(12345), + [anon_sym_BSLASHACRfull] = ACTIONS(12345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12345), + [anon_sym_BSLASHacs] = ACTIONS(12345), + [anon_sym_BSLASHAcs] = ACTIONS(12345), + [anon_sym_BSLASHacsp] = ACTIONS(12345), + [anon_sym_BSLASHAcsp] = ACTIONS(12345), + [anon_sym_BSLASHacl] = ACTIONS(12345), + [anon_sym_BSLASHAcl] = ACTIONS(12345), + [anon_sym_BSLASHaclp] = ACTIONS(12345), + [anon_sym_BSLASHAclp] = ACTIONS(12345), + [anon_sym_BSLASHacf] = ACTIONS(12345), + [anon_sym_BSLASHAcf] = ACTIONS(12345), + [anon_sym_BSLASHacfp] = ACTIONS(12345), + [anon_sym_BSLASHAcfp] = ACTIONS(12345), + [anon_sym_BSLASHac] = ACTIONS(12345), + [anon_sym_BSLASHAc] = ACTIONS(12345), + [anon_sym_BSLASHacp] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12345), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12345), + [anon_sym_BSLASHcolor] = ACTIONS(12345), + [anon_sym_BSLASHcolorbox] = ACTIONS(12345), + [anon_sym_BSLASHtextcolor] = ACTIONS(12345), + [anon_sym_BSLASHpagecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12345), + }, + [1841] = { + [sym_generic_command_name] = ACTIONS(12331), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12331), + [anon_sym_LBRACK] = ACTIONS(12329), + [anon_sym_RBRACK] = ACTIONS(12329), + [anon_sym_LBRACE] = ACTIONS(12329), + [anon_sym_RBRACE] = ACTIONS(12329), + [anon_sym_LPAREN] = ACTIONS(12329), + [anon_sym_COMMA] = ACTIONS(12329), + [anon_sym_EQ] = ACTIONS(12329), + [sym_word] = ACTIONS(12329), + [sym_param] = ACTIONS(12329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12329), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12329), + [anon_sym_DOLLAR] = ACTIONS(12331), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12329), + [anon_sym_BSLASHbegin] = ACTIONS(12331), + [anon_sym_BSLASHcaption] = ACTIONS(12331), + [anon_sym_BSLASHcite] = ACTIONS(12331), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCite] = ACTIONS(12331), + [anon_sym_BSLASHnocite] = ACTIONS(12331), + [anon_sym_BSLASHcitet] = ACTIONS(12331), + [anon_sym_BSLASHcitep] = ACTIONS(12331), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteauthor] = ACTIONS(12331), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12331), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitetitle] = ACTIONS(12331), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteyear] = ACTIONS(12331), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitedate] = ACTIONS(12331), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteurl] = ACTIONS(12331), + [anon_sym_BSLASHfullcite] = ACTIONS(12331), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12331), + [anon_sym_BSLASHcitealt] = ACTIONS(12331), + [anon_sym_BSLASHcitealp] = ACTIONS(12331), + [anon_sym_BSLASHcitetext] = ACTIONS(12331), + [anon_sym_BSLASHparencite] = ACTIONS(12331), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHParencite] = ACTIONS(12331), + [anon_sym_BSLASHfootcite] = ACTIONS(12331), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12331), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12331), + [anon_sym_BSLASHtextcite] = ACTIONS(12331), + [anon_sym_BSLASHTextcite] = ACTIONS(12331), + [anon_sym_BSLASHsmartcite] = ACTIONS(12331), + [anon_sym_BSLASHSmartcite] = ACTIONS(12331), + [anon_sym_BSLASHsupercite] = ACTIONS(12331), + [anon_sym_BSLASHautocite] = ACTIONS(12331), + [anon_sym_BSLASHAutocite] = ACTIONS(12331), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHvolcite] = ACTIONS(12331), + [anon_sym_BSLASHVolcite] = ACTIONS(12331), + [anon_sym_BSLASHpvolcite] = ACTIONS(12331), + [anon_sym_BSLASHPvolcite] = ACTIONS(12331), + [anon_sym_BSLASHfvolcite] = ACTIONS(12331), + [anon_sym_BSLASHftvolcite] = ACTIONS(12331), + [anon_sym_BSLASHsvolcite] = ACTIONS(12331), + [anon_sym_BSLASHSvolcite] = ACTIONS(12331), + [anon_sym_BSLASHtvolcite] = ACTIONS(12331), + [anon_sym_BSLASHTvolcite] = ACTIONS(12331), + [anon_sym_BSLASHavolcite] = ACTIONS(12331), + [anon_sym_BSLASHAvolcite] = ACTIONS(12331), + [anon_sym_BSLASHnotecite] = ACTIONS(12331), + [anon_sym_BSLASHpnotecite] = ACTIONS(12331), + [anon_sym_BSLASHPnotecite] = ACTIONS(12331), + [anon_sym_BSLASHfnotecite] = ACTIONS(12331), + [anon_sym_BSLASHusepackage] = ACTIONS(12331), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12331), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12331), + [anon_sym_BSLASHinclude] = ACTIONS(12331), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12331), + [anon_sym_BSLASHinput] = ACTIONS(12331), + [anon_sym_BSLASHsubfile] = ACTIONS(12331), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12331), + [anon_sym_BSLASHbibliography] = ACTIONS(12331), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12331), + [anon_sym_BSLASHincludesvg] = ACTIONS(12331), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12331), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12331), + [anon_sym_BSLASHimport] = ACTIONS(12331), + [anon_sym_BSLASHsubimport] = ACTIONS(12331), + [anon_sym_BSLASHinputfrom] = ACTIONS(12331), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12331), + [anon_sym_BSLASHincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHlabel] = ACTIONS(12331), + [anon_sym_BSLASHref] = ACTIONS(12331), + [anon_sym_BSLASHvref] = ACTIONS(12331), + [anon_sym_BSLASHVref] = ACTIONS(12331), + [anon_sym_BSLASHautoref] = ACTIONS(12331), + [anon_sym_BSLASHpageref] = ACTIONS(12331), + [anon_sym_BSLASHcref] = ACTIONS(12331), + [anon_sym_BSLASHCref] = ACTIONS(12331), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnameCref] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHlabelcref] = ACTIONS(12331), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12331), + [anon_sym_BSLASHeqref] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange] = ACTIONS(12331), + [anon_sym_BSLASHCrefrange] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewlabel] = ACTIONS(12331), + [anon_sym_BSLASHnewcommand] = ACTIONS(12331), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12331), + [anon_sym_BSLASHgls] = ACTIONS(12331), + [anon_sym_BSLASHGls] = ACTIONS(12331), + [anon_sym_BSLASHGLS] = ACTIONS(12331), + [anon_sym_BSLASHglspl] = ACTIONS(12331), + [anon_sym_BSLASHGlspl] = ACTIONS(12331), + [anon_sym_BSLASHGLSpl] = ACTIONS(12331), + [anon_sym_BSLASHglsdisp] = ACTIONS(12331), + [anon_sym_BSLASHglslink] = ACTIONS(12331), + [anon_sym_BSLASHglstext] = ACTIONS(12331), + [anon_sym_BSLASHGlstext] = ACTIONS(12331), + [anon_sym_BSLASHGLStext] = ACTIONS(12331), + [anon_sym_BSLASHglsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12331), + [anon_sym_BSLASHglsplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSplural] = ACTIONS(12331), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHglsname] = ACTIONS(12331), + [anon_sym_BSLASHGlsname] = ACTIONS(12331), + [anon_sym_BSLASHGLSname] = ACTIONS(12331), + [anon_sym_BSLASHglssymbol] = ACTIONS(12331), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12331), + [anon_sym_BSLASHglsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12331), + [anon_sym_BSLASHglsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12331), + [anon_sym_BSLASHglsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12331), + [anon_sym_BSLASHglsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12331), + [anon_sym_BSLASHglsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12331), + [anon_sym_BSLASHnewacronym] = ACTIONS(12331), + [anon_sym_BSLASHacrshort] = ACTIONS(12331), + [anon_sym_BSLASHAcrshort] = ACTIONS(12331), + [anon_sym_BSLASHACRshort] = ACTIONS(12331), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12331), + [anon_sym_BSLASHacrlong] = ACTIONS(12331), + [anon_sym_BSLASHAcrlong] = ACTIONS(12331), + [anon_sym_BSLASHACRlong] = ACTIONS(12331), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12331), + [anon_sym_BSLASHacrfull] = ACTIONS(12331), + [anon_sym_BSLASHAcrfull] = ACTIONS(12331), + [anon_sym_BSLASHACRfull] = ACTIONS(12331), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12331), + [anon_sym_BSLASHacs] = ACTIONS(12331), + [anon_sym_BSLASHAcs] = ACTIONS(12331), + [anon_sym_BSLASHacsp] = ACTIONS(12331), + [anon_sym_BSLASHAcsp] = ACTIONS(12331), + [anon_sym_BSLASHacl] = ACTIONS(12331), + [anon_sym_BSLASHAcl] = ACTIONS(12331), + [anon_sym_BSLASHaclp] = ACTIONS(12331), + [anon_sym_BSLASHAclp] = ACTIONS(12331), + [anon_sym_BSLASHacf] = ACTIONS(12331), + [anon_sym_BSLASHAcf] = ACTIONS(12331), + [anon_sym_BSLASHacfp] = ACTIONS(12331), + [anon_sym_BSLASHAcfp] = ACTIONS(12331), + [anon_sym_BSLASHac] = ACTIONS(12331), + [anon_sym_BSLASHAc] = ACTIONS(12331), + [anon_sym_BSLASHacp] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12331), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12331), + [anon_sym_BSLASHcolor] = ACTIONS(12331), + [anon_sym_BSLASHcolorbox] = ACTIONS(12331), + [anon_sym_BSLASHtextcolor] = ACTIONS(12331), + [anon_sym_BSLASHpagecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12331), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12331), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12331), + }, + [1842] = { + [sym_generic_command_name] = ACTIONS(12327), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12327), + [anon_sym_LBRACK] = ACTIONS(12325), + [anon_sym_RBRACK] = ACTIONS(12325), + [anon_sym_LBRACE] = ACTIONS(12325), + [anon_sym_RBRACE] = ACTIONS(12325), + [anon_sym_LPAREN] = ACTIONS(12325), + [anon_sym_COMMA] = ACTIONS(12325), + [anon_sym_EQ] = ACTIONS(12325), + [sym_word] = ACTIONS(12325), + [sym_param] = ACTIONS(12325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12325), + [anon_sym_DOLLAR] = ACTIONS(12327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12325), + [anon_sym_BSLASHbegin] = ACTIONS(12327), + [anon_sym_BSLASHcaption] = ACTIONS(12327), + [anon_sym_BSLASHcite] = ACTIONS(12327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCite] = ACTIONS(12327), + [anon_sym_BSLASHnocite] = ACTIONS(12327), + [anon_sym_BSLASHcitet] = ACTIONS(12327), + [anon_sym_BSLASHcitep] = ACTIONS(12327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteauthor] = ACTIONS(12327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitetitle] = ACTIONS(12327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteyear] = ACTIONS(12327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitedate] = ACTIONS(12327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteurl] = ACTIONS(12327), + [anon_sym_BSLASHfullcite] = ACTIONS(12327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12327), + [anon_sym_BSLASHcitealt] = ACTIONS(12327), + [anon_sym_BSLASHcitealp] = ACTIONS(12327), + [anon_sym_BSLASHcitetext] = ACTIONS(12327), + [anon_sym_BSLASHparencite] = ACTIONS(12327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHParencite] = ACTIONS(12327), + [anon_sym_BSLASHfootcite] = ACTIONS(12327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12327), + [anon_sym_BSLASHtextcite] = ACTIONS(12327), + [anon_sym_BSLASHTextcite] = ACTIONS(12327), + [anon_sym_BSLASHsmartcite] = ACTIONS(12327), + [anon_sym_BSLASHSmartcite] = ACTIONS(12327), + [anon_sym_BSLASHsupercite] = ACTIONS(12327), + [anon_sym_BSLASHautocite] = ACTIONS(12327), + [anon_sym_BSLASHAutocite] = ACTIONS(12327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHvolcite] = ACTIONS(12327), + [anon_sym_BSLASHVolcite] = ACTIONS(12327), + [anon_sym_BSLASHpvolcite] = ACTIONS(12327), + [anon_sym_BSLASHPvolcite] = ACTIONS(12327), + [anon_sym_BSLASHfvolcite] = ACTIONS(12327), + [anon_sym_BSLASHftvolcite] = ACTIONS(12327), + [anon_sym_BSLASHsvolcite] = ACTIONS(12327), + [anon_sym_BSLASHSvolcite] = ACTIONS(12327), + [anon_sym_BSLASHtvolcite] = ACTIONS(12327), + [anon_sym_BSLASHTvolcite] = ACTIONS(12327), + [anon_sym_BSLASHavolcite] = ACTIONS(12327), + [anon_sym_BSLASHAvolcite] = ACTIONS(12327), + [anon_sym_BSLASHnotecite] = ACTIONS(12327), + [anon_sym_BSLASHpnotecite] = ACTIONS(12327), + [anon_sym_BSLASHPnotecite] = ACTIONS(12327), + [anon_sym_BSLASHfnotecite] = ACTIONS(12327), + [anon_sym_BSLASHusepackage] = ACTIONS(12327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12327), + [anon_sym_BSLASHinclude] = ACTIONS(12327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12327), + [anon_sym_BSLASHinput] = ACTIONS(12327), + [anon_sym_BSLASHsubfile] = ACTIONS(12327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12327), + [anon_sym_BSLASHbibliography] = ACTIONS(12327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12327), + [anon_sym_BSLASHincludesvg] = ACTIONS(12327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12327), + [anon_sym_BSLASHimport] = ACTIONS(12327), + [anon_sym_BSLASHsubimport] = ACTIONS(12327), + [anon_sym_BSLASHinputfrom] = ACTIONS(12327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12327), + [anon_sym_BSLASHincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHlabel] = ACTIONS(12327), + [anon_sym_BSLASHref] = ACTIONS(12327), + [anon_sym_BSLASHvref] = ACTIONS(12327), + [anon_sym_BSLASHVref] = ACTIONS(12327), + [anon_sym_BSLASHautoref] = ACTIONS(12327), + [anon_sym_BSLASHpageref] = ACTIONS(12327), + [anon_sym_BSLASHcref] = ACTIONS(12327), + [anon_sym_BSLASHCref] = ACTIONS(12327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnameCref] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHlabelcref] = ACTIONS(12327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12327), + [anon_sym_BSLASHeqref] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange] = ACTIONS(12327), + [anon_sym_BSLASHCrefrange] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewlabel] = ACTIONS(12327), + [anon_sym_BSLASHnewcommand] = ACTIONS(12327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12327), + [anon_sym_BSLASHgls] = ACTIONS(12327), + [anon_sym_BSLASHGls] = ACTIONS(12327), + [anon_sym_BSLASHGLS] = ACTIONS(12327), + [anon_sym_BSLASHglspl] = ACTIONS(12327), + [anon_sym_BSLASHGlspl] = ACTIONS(12327), + [anon_sym_BSLASHGLSpl] = ACTIONS(12327), + [anon_sym_BSLASHglsdisp] = ACTIONS(12327), + [anon_sym_BSLASHglslink] = ACTIONS(12327), + [anon_sym_BSLASHglstext] = ACTIONS(12327), + [anon_sym_BSLASHGlstext] = ACTIONS(12327), + [anon_sym_BSLASHGLStext] = ACTIONS(12327), + [anon_sym_BSLASHglsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12327), + [anon_sym_BSLASHglsplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSplural] = ACTIONS(12327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHglsname] = ACTIONS(12327), + [anon_sym_BSLASHGlsname] = ACTIONS(12327), + [anon_sym_BSLASHGLSname] = ACTIONS(12327), + [anon_sym_BSLASHglssymbol] = ACTIONS(12327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12327), + [anon_sym_BSLASHglsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12327), + [anon_sym_BSLASHglsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12327), + [anon_sym_BSLASHglsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12327), + [anon_sym_BSLASHglsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12327), + [anon_sym_BSLASHglsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12327), + [anon_sym_BSLASHnewacronym] = ACTIONS(12327), + [anon_sym_BSLASHacrshort] = ACTIONS(12327), + [anon_sym_BSLASHAcrshort] = ACTIONS(12327), + [anon_sym_BSLASHACRshort] = ACTIONS(12327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12327), + [anon_sym_BSLASHacrlong] = ACTIONS(12327), + [anon_sym_BSLASHAcrlong] = ACTIONS(12327), + [anon_sym_BSLASHACRlong] = ACTIONS(12327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12327), + [anon_sym_BSLASHacrfull] = ACTIONS(12327), + [anon_sym_BSLASHAcrfull] = ACTIONS(12327), + [anon_sym_BSLASHACRfull] = ACTIONS(12327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12327), + [anon_sym_BSLASHacs] = ACTIONS(12327), + [anon_sym_BSLASHAcs] = ACTIONS(12327), + [anon_sym_BSLASHacsp] = ACTIONS(12327), + [anon_sym_BSLASHAcsp] = ACTIONS(12327), + [anon_sym_BSLASHacl] = ACTIONS(12327), + [anon_sym_BSLASHAcl] = ACTIONS(12327), + [anon_sym_BSLASHaclp] = ACTIONS(12327), + [anon_sym_BSLASHAclp] = ACTIONS(12327), + [anon_sym_BSLASHacf] = ACTIONS(12327), + [anon_sym_BSLASHAcf] = ACTIONS(12327), + [anon_sym_BSLASHacfp] = ACTIONS(12327), + [anon_sym_BSLASHAcfp] = ACTIONS(12327), + [anon_sym_BSLASHac] = ACTIONS(12327), + [anon_sym_BSLASHAc] = ACTIONS(12327), + [anon_sym_BSLASHacp] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12327), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12327), + [anon_sym_BSLASHcolor] = ACTIONS(12327), + [anon_sym_BSLASHcolorbox] = ACTIONS(12327), + [anon_sym_BSLASHtextcolor] = ACTIONS(12327), + [anon_sym_BSLASHpagecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12327), + }, + [1843] = { + [sym_generic_command_name] = ACTIONS(12311), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12311), + [anon_sym_LBRACK] = ACTIONS(12309), + [anon_sym_RBRACK] = ACTIONS(12309), + [anon_sym_LBRACE] = ACTIONS(12309), + [anon_sym_RBRACE] = ACTIONS(12309), + [anon_sym_LPAREN] = ACTIONS(12309), + [anon_sym_COMMA] = ACTIONS(12309), + [anon_sym_EQ] = ACTIONS(12309), + [sym_word] = ACTIONS(12309), + [sym_param] = ACTIONS(12309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12309), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12309), + [anon_sym_DOLLAR] = ACTIONS(12311), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12309), + [anon_sym_BSLASHbegin] = ACTIONS(12311), + [anon_sym_BSLASHcaption] = ACTIONS(12311), + [anon_sym_BSLASHcite] = ACTIONS(12311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCite] = ACTIONS(12311), + [anon_sym_BSLASHnocite] = ACTIONS(12311), + [anon_sym_BSLASHcitet] = ACTIONS(12311), + [anon_sym_BSLASHcitep] = ACTIONS(12311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteauthor] = ACTIONS(12311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitetitle] = ACTIONS(12311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteyear] = ACTIONS(12311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitedate] = ACTIONS(12311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteurl] = ACTIONS(12311), + [anon_sym_BSLASHfullcite] = ACTIONS(12311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12311), + [anon_sym_BSLASHcitealt] = ACTIONS(12311), + [anon_sym_BSLASHcitealp] = ACTIONS(12311), + [anon_sym_BSLASHcitetext] = ACTIONS(12311), + [anon_sym_BSLASHparencite] = ACTIONS(12311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHParencite] = ACTIONS(12311), + [anon_sym_BSLASHfootcite] = ACTIONS(12311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12311), + [anon_sym_BSLASHtextcite] = ACTIONS(12311), + [anon_sym_BSLASHTextcite] = ACTIONS(12311), + [anon_sym_BSLASHsmartcite] = ACTIONS(12311), + [anon_sym_BSLASHSmartcite] = ACTIONS(12311), + [anon_sym_BSLASHsupercite] = ACTIONS(12311), + [anon_sym_BSLASHautocite] = ACTIONS(12311), + [anon_sym_BSLASHAutocite] = ACTIONS(12311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHvolcite] = ACTIONS(12311), + [anon_sym_BSLASHVolcite] = ACTIONS(12311), + [anon_sym_BSLASHpvolcite] = ACTIONS(12311), + [anon_sym_BSLASHPvolcite] = ACTIONS(12311), + [anon_sym_BSLASHfvolcite] = ACTIONS(12311), + [anon_sym_BSLASHftvolcite] = ACTIONS(12311), + [anon_sym_BSLASHsvolcite] = ACTIONS(12311), + [anon_sym_BSLASHSvolcite] = ACTIONS(12311), + [anon_sym_BSLASHtvolcite] = ACTIONS(12311), + [anon_sym_BSLASHTvolcite] = ACTIONS(12311), + [anon_sym_BSLASHavolcite] = ACTIONS(12311), + [anon_sym_BSLASHAvolcite] = ACTIONS(12311), + [anon_sym_BSLASHnotecite] = ACTIONS(12311), + [anon_sym_BSLASHpnotecite] = ACTIONS(12311), + [anon_sym_BSLASHPnotecite] = ACTIONS(12311), + [anon_sym_BSLASHfnotecite] = ACTIONS(12311), + [anon_sym_BSLASHusepackage] = ACTIONS(12311), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12311), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12311), + [anon_sym_BSLASHinclude] = ACTIONS(12311), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12311), + [anon_sym_BSLASHinput] = ACTIONS(12311), + [anon_sym_BSLASHsubfile] = ACTIONS(12311), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12311), + [anon_sym_BSLASHbibliography] = ACTIONS(12311), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12311), + [anon_sym_BSLASHincludesvg] = ACTIONS(12311), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12311), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12311), + [anon_sym_BSLASHimport] = ACTIONS(12311), + [anon_sym_BSLASHsubimport] = ACTIONS(12311), + [anon_sym_BSLASHinputfrom] = ACTIONS(12311), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12311), + [anon_sym_BSLASHincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHlabel] = ACTIONS(12311), + [anon_sym_BSLASHref] = ACTIONS(12311), + [anon_sym_BSLASHvref] = ACTIONS(12311), + [anon_sym_BSLASHVref] = ACTIONS(12311), + [anon_sym_BSLASHautoref] = ACTIONS(12311), + [anon_sym_BSLASHpageref] = ACTIONS(12311), + [anon_sym_BSLASHcref] = ACTIONS(12311), + [anon_sym_BSLASHCref] = ACTIONS(12311), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnameCref] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHlabelcref] = ACTIONS(12311), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12311), + [anon_sym_BSLASHeqref] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange] = ACTIONS(12311), + [anon_sym_BSLASHCrefrange] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewlabel] = ACTIONS(12311), + [anon_sym_BSLASHnewcommand] = ACTIONS(12311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12311), + [anon_sym_BSLASHgls] = ACTIONS(12311), + [anon_sym_BSLASHGls] = ACTIONS(12311), + [anon_sym_BSLASHGLS] = ACTIONS(12311), + [anon_sym_BSLASHglspl] = ACTIONS(12311), + [anon_sym_BSLASHGlspl] = ACTIONS(12311), + [anon_sym_BSLASHGLSpl] = ACTIONS(12311), + [anon_sym_BSLASHglsdisp] = ACTIONS(12311), + [anon_sym_BSLASHglslink] = ACTIONS(12311), + [anon_sym_BSLASHglstext] = ACTIONS(12311), + [anon_sym_BSLASHGlstext] = ACTIONS(12311), + [anon_sym_BSLASHGLStext] = ACTIONS(12311), + [anon_sym_BSLASHglsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12311), + [anon_sym_BSLASHglsplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSplural] = ACTIONS(12311), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHglsname] = ACTIONS(12311), + [anon_sym_BSLASHGlsname] = ACTIONS(12311), + [anon_sym_BSLASHGLSname] = ACTIONS(12311), + [anon_sym_BSLASHglssymbol] = ACTIONS(12311), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12311), + [anon_sym_BSLASHglsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12311), + [anon_sym_BSLASHglsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12311), + [anon_sym_BSLASHglsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12311), + [anon_sym_BSLASHglsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12311), + [anon_sym_BSLASHglsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12311), + [anon_sym_BSLASHnewacronym] = ACTIONS(12311), + [anon_sym_BSLASHacrshort] = ACTIONS(12311), + [anon_sym_BSLASHAcrshort] = ACTIONS(12311), + [anon_sym_BSLASHACRshort] = ACTIONS(12311), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12311), + [anon_sym_BSLASHacrlong] = ACTIONS(12311), + [anon_sym_BSLASHAcrlong] = ACTIONS(12311), + [anon_sym_BSLASHACRlong] = ACTIONS(12311), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12311), + [anon_sym_BSLASHacrfull] = ACTIONS(12311), + [anon_sym_BSLASHAcrfull] = ACTIONS(12311), + [anon_sym_BSLASHACRfull] = ACTIONS(12311), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12311), + [anon_sym_BSLASHacs] = ACTIONS(12311), + [anon_sym_BSLASHAcs] = ACTIONS(12311), + [anon_sym_BSLASHacsp] = ACTIONS(12311), + [anon_sym_BSLASHAcsp] = ACTIONS(12311), + [anon_sym_BSLASHacl] = ACTIONS(12311), + [anon_sym_BSLASHAcl] = ACTIONS(12311), + [anon_sym_BSLASHaclp] = ACTIONS(12311), + [anon_sym_BSLASHAclp] = ACTIONS(12311), + [anon_sym_BSLASHacf] = ACTIONS(12311), + [anon_sym_BSLASHAcf] = ACTIONS(12311), + [anon_sym_BSLASHacfp] = ACTIONS(12311), + [anon_sym_BSLASHAcfp] = ACTIONS(12311), + [anon_sym_BSLASHac] = ACTIONS(12311), + [anon_sym_BSLASHAc] = ACTIONS(12311), + [anon_sym_BSLASHacp] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12311), + [anon_sym_BSLASHcolor] = ACTIONS(12311), + [anon_sym_BSLASHcolorbox] = ACTIONS(12311), + [anon_sym_BSLASHtextcolor] = ACTIONS(12311), + [anon_sym_BSLASHpagecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12311), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12311), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12311), + }, + [1844] = { + [sym_generic_command_name] = ACTIONS(12299), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12299), + [anon_sym_LBRACK] = ACTIONS(12297), + [anon_sym_RBRACK] = ACTIONS(12297), + [anon_sym_LBRACE] = ACTIONS(12297), + [anon_sym_RBRACE] = ACTIONS(12297), + [anon_sym_LPAREN] = ACTIONS(12297), + [anon_sym_COMMA] = ACTIONS(12297), + [anon_sym_EQ] = ACTIONS(12297), + [sym_word] = ACTIONS(12297), + [sym_param] = ACTIONS(12297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12297), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12297), + [anon_sym_DOLLAR] = ACTIONS(12299), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12297), + [anon_sym_BSLASHbegin] = ACTIONS(12299), + [anon_sym_BSLASHcaption] = ACTIONS(12299), + [anon_sym_BSLASHcite] = ACTIONS(12299), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCite] = ACTIONS(12299), + [anon_sym_BSLASHnocite] = ACTIONS(12299), + [anon_sym_BSLASHcitet] = ACTIONS(12299), + [anon_sym_BSLASHcitep] = ACTIONS(12299), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteauthor] = ACTIONS(12299), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12299), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitetitle] = ACTIONS(12299), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteyear] = ACTIONS(12299), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitedate] = ACTIONS(12299), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteurl] = ACTIONS(12299), + [anon_sym_BSLASHfullcite] = ACTIONS(12299), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12299), + [anon_sym_BSLASHcitealt] = ACTIONS(12299), + [anon_sym_BSLASHcitealp] = ACTIONS(12299), + [anon_sym_BSLASHcitetext] = ACTIONS(12299), + [anon_sym_BSLASHparencite] = ACTIONS(12299), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHParencite] = ACTIONS(12299), + [anon_sym_BSLASHfootcite] = ACTIONS(12299), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12299), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12299), + [anon_sym_BSLASHtextcite] = ACTIONS(12299), + [anon_sym_BSLASHTextcite] = ACTIONS(12299), + [anon_sym_BSLASHsmartcite] = ACTIONS(12299), + [anon_sym_BSLASHSmartcite] = ACTIONS(12299), + [anon_sym_BSLASHsupercite] = ACTIONS(12299), + [anon_sym_BSLASHautocite] = ACTIONS(12299), + [anon_sym_BSLASHAutocite] = ACTIONS(12299), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHvolcite] = ACTIONS(12299), + [anon_sym_BSLASHVolcite] = ACTIONS(12299), + [anon_sym_BSLASHpvolcite] = ACTIONS(12299), + [anon_sym_BSLASHPvolcite] = ACTIONS(12299), + [anon_sym_BSLASHfvolcite] = ACTIONS(12299), + [anon_sym_BSLASHftvolcite] = ACTIONS(12299), + [anon_sym_BSLASHsvolcite] = ACTIONS(12299), + [anon_sym_BSLASHSvolcite] = ACTIONS(12299), + [anon_sym_BSLASHtvolcite] = ACTIONS(12299), + [anon_sym_BSLASHTvolcite] = ACTIONS(12299), + [anon_sym_BSLASHavolcite] = ACTIONS(12299), + [anon_sym_BSLASHAvolcite] = ACTIONS(12299), + [anon_sym_BSLASHnotecite] = ACTIONS(12299), + [anon_sym_BSLASHpnotecite] = ACTIONS(12299), + [anon_sym_BSLASHPnotecite] = ACTIONS(12299), + [anon_sym_BSLASHfnotecite] = ACTIONS(12299), + [anon_sym_BSLASHusepackage] = ACTIONS(12299), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12299), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12299), + [anon_sym_BSLASHinclude] = ACTIONS(12299), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12299), + [anon_sym_BSLASHinput] = ACTIONS(12299), + [anon_sym_BSLASHsubfile] = ACTIONS(12299), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12299), + [anon_sym_BSLASHbibliography] = ACTIONS(12299), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12299), + [anon_sym_BSLASHincludesvg] = ACTIONS(12299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12299), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12299), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12299), + [anon_sym_BSLASHimport] = ACTIONS(12299), + [anon_sym_BSLASHsubimport] = ACTIONS(12299), + [anon_sym_BSLASHinputfrom] = ACTIONS(12299), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12299), + [anon_sym_BSLASHincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHlabel] = ACTIONS(12299), + [anon_sym_BSLASHref] = ACTIONS(12299), + [anon_sym_BSLASHvref] = ACTIONS(12299), + [anon_sym_BSLASHVref] = ACTIONS(12299), + [anon_sym_BSLASHautoref] = ACTIONS(12299), + [anon_sym_BSLASHpageref] = ACTIONS(12299), + [anon_sym_BSLASHcref] = ACTIONS(12299), + [anon_sym_BSLASHCref] = ACTIONS(12299), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnameCref] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHlabelcref] = ACTIONS(12299), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12299), + [anon_sym_BSLASHeqref] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange] = ACTIONS(12299), + [anon_sym_BSLASHCrefrange] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewlabel] = ACTIONS(12299), + [anon_sym_BSLASHnewcommand] = ACTIONS(12299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12299), + [anon_sym_BSLASHgls] = ACTIONS(12299), + [anon_sym_BSLASHGls] = ACTIONS(12299), + [anon_sym_BSLASHGLS] = ACTIONS(12299), + [anon_sym_BSLASHglspl] = ACTIONS(12299), + [anon_sym_BSLASHGlspl] = ACTIONS(12299), + [anon_sym_BSLASHGLSpl] = ACTIONS(12299), + [anon_sym_BSLASHglsdisp] = ACTIONS(12299), + [anon_sym_BSLASHglslink] = ACTIONS(12299), + [anon_sym_BSLASHglstext] = ACTIONS(12299), + [anon_sym_BSLASHGlstext] = ACTIONS(12299), + [anon_sym_BSLASHGLStext] = ACTIONS(12299), + [anon_sym_BSLASHglsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12299), + [anon_sym_BSLASHglsplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSplural] = ACTIONS(12299), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHglsname] = ACTIONS(12299), + [anon_sym_BSLASHGlsname] = ACTIONS(12299), + [anon_sym_BSLASHGLSname] = ACTIONS(12299), + [anon_sym_BSLASHglssymbol] = ACTIONS(12299), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12299), + [anon_sym_BSLASHglsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12299), + [anon_sym_BSLASHglsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12299), + [anon_sym_BSLASHglsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12299), + [anon_sym_BSLASHglsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12299), + [anon_sym_BSLASHglsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12299), + [anon_sym_BSLASHnewacronym] = ACTIONS(12299), + [anon_sym_BSLASHacrshort] = ACTIONS(12299), + [anon_sym_BSLASHAcrshort] = ACTIONS(12299), + [anon_sym_BSLASHACRshort] = ACTIONS(12299), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12299), + [anon_sym_BSLASHacrlong] = ACTIONS(12299), + [anon_sym_BSLASHAcrlong] = ACTIONS(12299), + [anon_sym_BSLASHACRlong] = ACTIONS(12299), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12299), + [anon_sym_BSLASHacrfull] = ACTIONS(12299), + [anon_sym_BSLASHAcrfull] = ACTIONS(12299), + [anon_sym_BSLASHACRfull] = ACTIONS(12299), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12299), + [anon_sym_BSLASHacs] = ACTIONS(12299), + [anon_sym_BSLASHAcs] = ACTIONS(12299), + [anon_sym_BSLASHacsp] = ACTIONS(12299), + [anon_sym_BSLASHAcsp] = ACTIONS(12299), + [anon_sym_BSLASHacl] = ACTIONS(12299), + [anon_sym_BSLASHAcl] = ACTIONS(12299), + [anon_sym_BSLASHaclp] = ACTIONS(12299), + [anon_sym_BSLASHAclp] = ACTIONS(12299), + [anon_sym_BSLASHacf] = ACTIONS(12299), + [anon_sym_BSLASHAcf] = ACTIONS(12299), + [anon_sym_BSLASHacfp] = ACTIONS(12299), + [anon_sym_BSLASHAcfp] = ACTIONS(12299), + [anon_sym_BSLASHac] = ACTIONS(12299), + [anon_sym_BSLASHAc] = ACTIONS(12299), + [anon_sym_BSLASHacp] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12299), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12299), + [anon_sym_BSLASHcolor] = ACTIONS(12299), + [anon_sym_BSLASHcolorbox] = ACTIONS(12299), + [anon_sym_BSLASHtextcolor] = ACTIONS(12299), + [anon_sym_BSLASHpagecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12299), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12299), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12299), + }, + [1845] = { + [sym_generic_command_name] = ACTIONS(12283), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12283), + [anon_sym_LBRACK] = ACTIONS(12281), + [anon_sym_RBRACK] = ACTIONS(12281), + [anon_sym_LBRACE] = ACTIONS(12281), + [anon_sym_RBRACE] = ACTIONS(12281), + [anon_sym_LPAREN] = ACTIONS(12281), + [anon_sym_COMMA] = ACTIONS(12281), + [anon_sym_EQ] = ACTIONS(12281), + [sym_word] = ACTIONS(12281), + [sym_param] = ACTIONS(12281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12281), + [anon_sym_DOLLAR] = ACTIONS(12283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12281), + [anon_sym_BSLASHbegin] = ACTIONS(12283), + [anon_sym_BSLASHcaption] = ACTIONS(12283), + [anon_sym_BSLASHcite] = ACTIONS(12283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCite] = ACTIONS(12283), + [anon_sym_BSLASHnocite] = ACTIONS(12283), + [anon_sym_BSLASHcitet] = ACTIONS(12283), + [anon_sym_BSLASHcitep] = ACTIONS(12283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteauthor] = ACTIONS(12283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitetitle] = ACTIONS(12283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteyear] = ACTIONS(12283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitedate] = ACTIONS(12283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteurl] = ACTIONS(12283), + [anon_sym_BSLASHfullcite] = ACTIONS(12283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12283), + [anon_sym_BSLASHcitealt] = ACTIONS(12283), + [anon_sym_BSLASHcitealp] = ACTIONS(12283), + [anon_sym_BSLASHcitetext] = ACTIONS(12283), + [anon_sym_BSLASHparencite] = ACTIONS(12283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHParencite] = ACTIONS(12283), + [anon_sym_BSLASHfootcite] = ACTIONS(12283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12283), + [anon_sym_BSLASHtextcite] = ACTIONS(12283), + [anon_sym_BSLASHTextcite] = ACTIONS(12283), + [anon_sym_BSLASHsmartcite] = ACTIONS(12283), + [anon_sym_BSLASHSmartcite] = ACTIONS(12283), + [anon_sym_BSLASHsupercite] = ACTIONS(12283), + [anon_sym_BSLASHautocite] = ACTIONS(12283), + [anon_sym_BSLASHAutocite] = ACTIONS(12283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHvolcite] = ACTIONS(12283), + [anon_sym_BSLASHVolcite] = ACTIONS(12283), + [anon_sym_BSLASHpvolcite] = ACTIONS(12283), + [anon_sym_BSLASHPvolcite] = ACTIONS(12283), + [anon_sym_BSLASHfvolcite] = ACTIONS(12283), + [anon_sym_BSLASHftvolcite] = ACTIONS(12283), + [anon_sym_BSLASHsvolcite] = ACTIONS(12283), + [anon_sym_BSLASHSvolcite] = ACTIONS(12283), + [anon_sym_BSLASHtvolcite] = ACTIONS(12283), + [anon_sym_BSLASHTvolcite] = ACTIONS(12283), + [anon_sym_BSLASHavolcite] = ACTIONS(12283), + [anon_sym_BSLASHAvolcite] = ACTIONS(12283), + [anon_sym_BSLASHnotecite] = ACTIONS(12283), + [anon_sym_BSLASHpnotecite] = ACTIONS(12283), + [anon_sym_BSLASHPnotecite] = ACTIONS(12283), + [anon_sym_BSLASHfnotecite] = ACTIONS(12283), + [anon_sym_BSLASHusepackage] = ACTIONS(12283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12283), + [anon_sym_BSLASHinclude] = ACTIONS(12283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12283), + [anon_sym_BSLASHinput] = ACTIONS(12283), + [anon_sym_BSLASHsubfile] = ACTIONS(12283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12283), + [anon_sym_BSLASHbibliography] = ACTIONS(12283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12283), + [anon_sym_BSLASHincludesvg] = ACTIONS(12283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12283), + [anon_sym_BSLASHimport] = ACTIONS(12283), + [anon_sym_BSLASHsubimport] = ACTIONS(12283), + [anon_sym_BSLASHinputfrom] = ACTIONS(12283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12283), + [anon_sym_BSLASHincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHlabel] = ACTIONS(12283), + [anon_sym_BSLASHref] = ACTIONS(12283), + [anon_sym_BSLASHvref] = ACTIONS(12283), + [anon_sym_BSLASHVref] = ACTIONS(12283), + [anon_sym_BSLASHautoref] = ACTIONS(12283), + [anon_sym_BSLASHpageref] = ACTIONS(12283), + [anon_sym_BSLASHcref] = ACTIONS(12283), + [anon_sym_BSLASHCref] = ACTIONS(12283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnameCref] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHlabelcref] = ACTIONS(12283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12283), + [anon_sym_BSLASHeqref] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange] = ACTIONS(12283), + [anon_sym_BSLASHCrefrange] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewlabel] = ACTIONS(12283), + [anon_sym_BSLASHnewcommand] = ACTIONS(12283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12283), + [anon_sym_BSLASHgls] = ACTIONS(12283), + [anon_sym_BSLASHGls] = ACTIONS(12283), + [anon_sym_BSLASHGLS] = ACTIONS(12283), + [anon_sym_BSLASHglspl] = ACTIONS(12283), + [anon_sym_BSLASHGlspl] = ACTIONS(12283), + [anon_sym_BSLASHGLSpl] = ACTIONS(12283), + [anon_sym_BSLASHglsdisp] = ACTIONS(12283), + [anon_sym_BSLASHglslink] = ACTIONS(12283), + [anon_sym_BSLASHglstext] = ACTIONS(12283), + [anon_sym_BSLASHGlstext] = ACTIONS(12283), + [anon_sym_BSLASHGLStext] = ACTIONS(12283), + [anon_sym_BSLASHglsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12283), + [anon_sym_BSLASHglsplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSplural] = ACTIONS(12283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHglsname] = ACTIONS(12283), + [anon_sym_BSLASHGlsname] = ACTIONS(12283), + [anon_sym_BSLASHGLSname] = ACTIONS(12283), + [anon_sym_BSLASHglssymbol] = ACTIONS(12283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12283), + [anon_sym_BSLASHglsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12283), + [anon_sym_BSLASHglsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12283), + [anon_sym_BSLASHglsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12283), + [anon_sym_BSLASHglsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12283), + [anon_sym_BSLASHglsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12283), + [anon_sym_BSLASHnewacronym] = ACTIONS(12283), + [anon_sym_BSLASHacrshort] = ACTIONS(12283), + [anon_sym_BSLASHAcrshort] = ACTIONS(12283), + [anon_sym_BSLASHACRshort] = ACTIONS(12283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12283), + [anon_sym_BSLASHacrlong] = ACTIONS(12283), + [anon_sym_BSLASHAcrlong] = ACTIONS(12283), + [anon_sym_BSLASHACRlong] = ACTIONS(12283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12283), + [anon_sym_BSLASHacrfull] = ACTIONS(12283), + [anon_sym_BSLASHAcrfull] = ACTIONS(12283), + [anon_sym_BSLASHACRfull] = ACTIONS(12283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12283), + [anon_sym_BSLASHacs] = ACTIONS(12283), + [anon_sym_BSLASHAcs] = ACTIONS(12283), + [anon_sym_BSLASHacsp] = ACTIONS(12283), + [anon_sym_BSLASHAcsp] = ACTIONS(12283), + [anon_sym_BSLASHacl] = ACTIONS(12283), + [anon_sym_BSLASHAcl] = ACTIONS(12283), + [anon_sym_BSLASHaclp] = ACTIONS(12283), + [anon_sym_BSLASHAclp] = ACTIONS(12283), + [anon_sym_BSLASHacf] = ACTIONS(12283), + [anon_sym_BSLASHAcf] = ACTIONS(12283), + [anon_sym_BSLASHacfp] = ACTIONS(12283), + [anon_sym_BSLASHAcfp] = ACTIONS(12283), + [anon_sym_BSLASHac] = ACTIONS(12283), + [anon_sym_BSLASHAc] = ACTIONS(12283), + [anon_sym_BSLASHacp] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12283), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12283), + [anon_sym_BSLASHcolor] = ACTIONS(12283), + [anon_sym_BSLASHcolorbox] = ACTIONS(12283), + [anon_sym_BSLASHtextcolor] = ACTIONS(12283), + [anon_sym_BSLASHpagecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12283), + }, + [1846] = { + [sym_generic_command_name] = ACTIONS(12275), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12275), + [anon_sym_LBRACK] = ACTIONS(12273), + [anon_sym_RBRACK] = ACTIONS(12273), + [anon_sym_LBRACE] = ACTIONS(12273), + [anon_sym_RBRACE] = ACTIONS(12273), + [anon_sym_LPAREN] = ACTIONS(12273), + [anon_sym_COMMA] = ACTIONS(12273), + [anon_sym_EQ] = ACTIONS(12273), + [sym_word] = ACTIONS(12273), + [sym_param] = ACTIONS(12273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12273), + [anon_sym_DOLLAR] = ACTIONS(12275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12273), + [anon_sym_BSLASHbegin] = ACTIONS(12275), + [anon_sym_BSLASHcaption] = ACTIONS(12275), + [anon_sym_BSLASHcite] = ACTIONS(12275), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCite] = ACTIONS(12275), + [anon_sym_BSLASHnocite] = ACTIONS(12275), + [anon_sym_BSLASHcitet] = ACTIONS(12275), + [anon_sym_BSLASHcitep] = ACTIONS(12275), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteauthor] = ACTIONS(12275), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12275), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitetitle] = ACTIONS(12275), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteyear] = ACTIONS(12275), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitedate] = ACTIONS(12275), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteurl] = ACTIONS(12275), + [anon_sym_BSLASHfullcite] = ACTIONS(12275), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12275), + [anon_sym_BSLASHcitealt] = ACTIONS(12275), + [anon_sym_BSLASHcitealp] = ACTIONS(12275), + [anon_sym_BSLASHcitetext] = ACTIONS(12275), + [anon_sym_BSLASHparencite] = ACTIONS(12275), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHParencite] = ACTIONS(12275), + [anon_sym_BSLASHfootcite] = ACTIONS(12275), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12275), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12275), + [anon_sym_BSLASHtextcite] = ACTIONS(12275), + [anon_sym_BSLASHTextcite] = ACTIONS(12275), + [anon_sym_BSLASHsmartcite] = ACTIONS(12275), + [anon_sym_BSLASHSmartcite] = ACTIONS(12275), + [anon_sym_BSLASHsupercite] = ACTIONS(12275), + [anon_sym_BSLASHautocite] = ACTIONS(12275), + [anon_sym_BSLASHAutocite] = ACTIONS(12275), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHvolcite] = ACTIONS(12275), + [anon_sym_BSLASHVolcite] = ACTIONS(12275), + [anon_sym_BSLASHpvolcite] = ACTIONS(12275), + [anon_sym_BSLASHPvolcite] = ACTIONS(12275), + [anon_sym_BSLASHfvolcite] = ACTIONS(12275), + [anon_sym_BSLASHftvolcite] = ACTIONS(12275), + [anon_sym_BSLASHsvolcite] = ACTIONS(12275), + [anon_sym_BSLASHSvolcite] = ACTIONS(12275), + [anon_sym_BSLASHtvolcite] = ACTIONS(12275), + [anon_sym_BSLASHTvolcite] = ACTIONS(12275), + [anon_sym_BSLASHavolcite] = ACTIONS(12275), + [anon_sym_BSLASHAvolcite] = ACTIONS(12275), + [anon_sym_BSLASHnotecite] = ACTIONS(12275), + [anon_sym_BSLASHpnotecite] = ACTIONS(12275), + [anon_sym_BSLASHPnotecite] = ACTIONS(12275), + [anon_sym_BSLASHfnotecite] = ACTIONS(12275), + [anon_sym_BSLASHusepackage] = ACTIONS(12275), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12275), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12275), + [anon_sym_BSLASHinclude] = ACTIONS(12275), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12275), + [anon_sym_BSLASHinput] = ACTIONS(12275), + [anon_sym_BSLASHsubfile] = ACTIONS(12275), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12275), + [anon_sym_BSLASHbibliography] = ACTIONS(12275), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12275), + [anon_sym_BSLASHincludesvg] = ACTIONS(12275), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12275), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12275), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12275), + [anon_sym_BSLASHimport] = ACTIONS(12275), + [anon_sym_BSLASHsubimport] = ACTIONS(12275), + [anon_sym_BSLASHinputfrom] = ACTIONS(12275), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12275), + [anon_sym_BSLASHincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHlabel] = ACTIONS(12275), + [anon_sym_BSLASHref] = ACTIONS(12275), + [anon_sym_BSLASHvref] = ACTIONS(12275), + [anon_sym_BSLASHVref] = ACTIONS(12275), + [anon_sym_BSLASHautoref] = ACTIONS(12275), + [anon_sym_BSLASHpageref] = ACTIONS(12275), + [anon_sym_BSLASHcref] = ACTIONS(12275), + [anon_sym_BSLASHCref] = ACTIONS(12275), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnameCref] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHlabelcref] = ACTIONS(12275), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12275), + [anon_sym_BSLASHeqref] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange] = ACTIONS(12275), + [anon_sym_BSLASHCrefrange] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewlabel] = ACTIONS(12275), + [anon_sym_BSLASHnewcommand] = ACTIONS(12275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12275), + [anon_sym_BSLASHgls] = ACTIONS(12275), + [anon_sym_BSLASHGls] = ACTIONS(12275), + [anon_sym_BSLASHGLS] = ACTIONS(12275), + [anon_sym_BSLASHglspl] = ACTIONS(12275), + [anon_sym_BSLASHGlspl] = ACTIONS(12275), + [anon_sym_BSLASHGLSpl] = ACTIONS(12275), + [anon_sym_BSLASHglsdisp] = ACTIONS(12275), + [anon_sym_BSLASHglslink] = ACTIONS(12275), + [anon_sym_BSLASHglstext] = ACTIONS(12275), + [anon_sym_BSLASHGlstext] = ACTIONS(12275), + [anon_sym_BSLASHGLStext] = ACTIONS(12275), + [anon_sym_BSLASHglsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12275), + [anon_sym_BSLASHglsplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSplural] = ACTIONS(12275), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHglsname] = ACTIONS(12275), + [anon_sym_BSLASHGlsname] = ACTIONS(12275), + [anon_sym_BSLASHGLSname] = ACTIONS(12275), + [anon_sym_BSLASHglssymbol] = ACTIONS(12275), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12275), + [anon_sym_BSLASHglsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12275), + [anon_sym_BSLASHglsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12275), + [anon_sym_BSLASHglsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12275), + [anon_sym_BSLASHglsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12275), + [anon_sym_BSLASHglsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12275), + [anon_sym_BSLASHnewacronym] = ACTIONS(12275), + [anon_sym_BSLASHacrshort] = ACTIONS(12275), + [anon_sym_BSLASHAcrshort] = ACTIONS(12275), + [anon_sym_BSLASHACRshort] = ACTIONS(12275), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12275), + [anon_sym_BSLASHacrlong] = ACTIONS(12275), + [anon_sym_BSLASHAcrlong] = ACTIONS(12275), + [anon_sym_BSLASHACRlong] = ACTIONS(12275), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12275), + [anon_sym_BSLASHacrfull] = ACTIONS(12275), + [anon_sym_BSLASHAcrfull] = ACTIONS(12275), + [anon_sym_BSLASHACRfull] = ACTIONS(12275), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12275), + [anon_sym_BSLASHacs] = ACTIONS(12275), + [anon_sym_BSLASHAcs] = ACTIONS(12275), + [anon_sym_BSLASHacsp] = ACTIONS(12275), + [anon_sym_BSLASHAcsp] = ACTIONS(12275), + [anon_sym_BSLASHacl] = ACTIONS(12275), + [anon_sym_BSLASHAcl] = ACTIONS(12275), + [anon_sym_BSLASHaclp] = ACTIONS(12275), + [anon_sym_BSLASHAclp] = ACTIONS(12275), + [anon_sym_BSLASHacf] = ACTIONS(12275), + [anon_sym_BSLASHAcf] = ACTIONS(12275), + [anon_sym_BSLASHacfp] = ACTIONS(12275), + [anon_sym_BSLASHAcfp] = ACTIONS(12275), + [anon_sym_BSLASHac] = ACTIONS(12275), + [anon_sym_BSLASHAc] = ACTIONS(12275), + [anon_sym_BSLASHacp] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12275), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12275), + [anon_sym_BSLASHcolor] = ACTIONS(12275), + [anon_sym_BSLASHcolorbox] = ACTIONS(12275), + [anon_sym_BSLASHtextcolor] = ACTIONS(12275), + [anon_sym_BSLASHpagecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12275), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12275), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12275), + }, + [1847] = { + [sym_generic_command_name] = ACTIONS(12209), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12209), + [anon_sym_LBRACK] = ACTIONS(12207), + [anon_sym_RBRACK] = ACTIONS(12207), + [anon_sym_LBRACE] = ACTIONS(12207), + [anon_sym_RBRACE] = ACTIONS(12207), + [anon_sym_LPAREN] = ACTIONS(12207), + [anon_sym_COMMA] = ACTIONS(12207), + [anon_sym_EQ] = ACTIONS(12207), + [sym_word] = ACTIONS(12207), + [sym_param] = ACTIONS(12207), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12207), + [anon_sym_DOLLAR] = ACTIONS(12209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12207), + [anon_sym_BSLASHbegin] = ACTIONS(12209), + [anon_sym_BSLASHcaption] = ACTIONS(12209), + [anon_sym_BSLASHcite] = ACTIONS(12209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCite] = ACTIONS(12209), + [anon_sym_BSLASHnocite] = ACTIONS(12209), + [anon_sym_BSLASHcitet] = ACTIONS(12209), + [anon_sym_BSLASHcitep] = ACTIONS(12209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteauthor] = ACTIONS(12209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitetitle] = ACTIONS(12209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteyear] = ACTIONS(12209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitedate] = ACTIONS(12209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteurl] = ACTIONS(12209), + [anon_sym_BSLASHfullcite] = ACTIONS(12209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12209), + [anon_sym_BSLASHcitealt] = ACTIONS(12209), + [anon_sym_BSLASHcitealp] = ACTIONS(12209), + [anon_sym_BSLASHcitetext] = ACTIONS(12209), + [anon_sym_BSLASHparencite] = ACTIONS(12209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHParencite] = ACTIONS(12209), + [anon_sym_BSLASHfootcite] = ACTIONS(12209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12209), + [anon_sym_BSLASHtextcite] = ACTIONS(12209), + [anon_sym_BSLASHTextcite] = ACTIONS(12209), + [anon_sym_BSLASHsmartcite] = ACTIONS(12209), + [anon_sym_BSLASHSmartcite] = ACTIONS(12209), + [anon_sym_BSLASHsupercite] = ACTIONS(12209), + [anon_sym_BSLASHautocite] = ACTIONS(12209), + [anon_sym_BSLASHAutocite] = ACTIONS(12209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHvolcite] = ACTIONS(12209), + [anon_sym_BSLASHVolcite] = ACTIONS(12209), + [anon_sym_BSLASHpvolcite] = ACTIONS(12209), + [anon_sym_BSLASHPvolcite] = ACTIONS(12209), + [anon_sym_BSLASHfvolcite] = ACTIONS(12209), + [anon_sym_BSLASHftvolcite] = ACTIONS(12209), + [anon_sym_BSLASHsvolcite] = ACTIONS(12209), + [anon_sym_BSLASHSvolcite] = ACTIONS(12209), + [anon_sym_BSLASHtvolcite] = ACTIONS(12209), + [anon_sym_BSLASHTvolcite] = ACTIONS(12209), + [anon_sym_BSLASHavolcite] = ACTIONS(12209), + [anon_sym_BSLASHAvolcite] = ACTIONS(12209), + [anon_sym_BSLASHnotecite] = ACTIONS(12209), + [anon_sym_BSLASHpnotecite] = ACTIONS(12209), + [anon_sym_BSLASHPnotecite] = ACTIONS(12209), + [anon_sym_BSLASHfnotecite] = ACTIONS(12209), + [anon_sym_BSLASHusepackage] = ACTIONS(12209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12209), + [anon_sym_BSLASHinclude] = ACTIONS(12209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12209), + [anon_sym_BSLASHinput] = ACTIONS(12209), + [anon_sym_BSLASHsubfile] = ACTIONS(12209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12209), + [anon_sym_BSLASHbibliography] = ACTIONS(12209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12209), + [anon_sym_BSLASHincludesvg] = ACTIONS(12209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12209), + [anon_sym_BSLASHimport] = ACTIONS(12209), + [anon_sym_BSLASHsubimport] = ACTIONS(12209), + [anon_sym_BSLASHinputfrom] = ACTIONS(12209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12209), + [anon_sym_BSLASHincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHlabel] = ACTIONS(12209), + [anon_sym_BSLASHref] = ACTIONS(12209), + [anon_sym_BSLASHvref] = ACTIONS(12209), + [anon_sym_BSLASHVref] = ACTIONS(12209), + [anon_sym_BSLASHautoref] = ACTIONS(12209), + [anon_sym_BSLASHpageref] = ACTIONS(12209), + [anon_sym_BSLASHcref] = ACTIONS(12209), + [anon_sym_BSLASHCref] = ACTIONS(12209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnameCref] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHlabelcref] = ACTIONS(12209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12209), + [anon_sym_BSLASHeqref] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange] = ACTIONS(12209), + [anon_sym_BSLASHCrefrange] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewlabel] = ACTIONS(12209), + [anon_sym_BSLASHnewcommand] = ACTIONS(12209), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12209), + [anon_sym_BSLASHgls] = ACTIONS(12209), + [anon_sym_BSLASHGls] = ACTIONS(12209), + [anon_sym_BSLASHGLS] = ACTIONS(12209), + [anon_sym_BSLASHglspl] = ACTIONS(12209), + [anon_sym_BSLASHGlspl] = ACTIONS(12209), + [anon_sym_BSLASHGLSpl] = ACTIONS(12209), + [anon_sym_BSLASHglsdisp] = ACTIONS(12209), + [anon_sym_BSLASHglslink] = ACTIONS(12209), + [anon_sym_BSLASHglstext] = ACTIONS(12209), + [anon_sym_BSLASHGlstext] = ACTIONS(12209), + [anon_sym_BSLASHGLStext] = ACTIONS(12209), + [anon_sym_BSLASHglsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12209), + [anon_sym_BSLASHglsplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSplural] = ACTIONS(12209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHglsname] = ACTIONS(12209), + [anon_sym_BSLASHGlsname] = ACTIONS(12209), + [anon_sym_BSLASHGLSname] = ACTIONS(12209), + [anon_sym_BSLASHglssymbol] = ACTIONS(12209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12209), + [anon_sym_BSLASHglsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12209), + [anon_sym_BSLASHglsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12209), + [anon_sym_BSLASHglsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12209), + [anon_sym_BSLASHglsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12209), + [anon_sym_BSLASHglsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12209), + [anon_sym_BSLASHnewacronym] = ACTIONS(12209), + [anon_sym_BSLASHacrshort] = ACTIONS(12209), + [anon_sym_BSLASHAcrshort] = ACTIONS(12209), + [anon_sym_BSLASHACRshort] = ACTIONS(12209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12209), + [anon_sym_BSLASHacrlong] = ACTIONS(12209), + [anon_sym_BSLASHAcrlong] = ACTIONS(12209), + [anon_sym_BSLASHACRlong] = ACTIONS(12209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12209), + [anon_sym_BSLASHacrfull] = ACTIONS(12209), + [anon_sym_BSLASHAcrfull] = ACTIONS(12209), + [anon_sym_BSLASHACRfull] = ACTIONS(12209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12209), + [anon_sym_BSLASHacs] = ACTIONS(12209), + [anon_sym_BSLASHAcs] = ACTIONS(12209), + [anon_sym_BSLASHacsp] = ACTIONS(12209), + [anon_sym_BSLASHAcsp] = ACTIONS(12209), + [anon_sym_BSLASHacl] = ACTIONS(12209), + [anon_sym_BSLASHAcl] = ACTIONS(12209), + [anon_sym_BSLASHaclp] = ACTIONS(12209), + [anon_sym_BSLASHAclp] = ACTIONS(12209), + [anon_sym_BSLASHacf] = ACTIONS(12209), + [anon_sym_BSLASHAcf] = ACTIONS(12209), + [anon_sym_BSLASHacfp] = ACTIONS(12209), + [anon_sym_BSLASHAcfp] = ACTIONS(12209), + [anon_sym_BSLASHac] = ACTIONS(12209), + [anon_sym_BSLASHAc] = ACTIONS(12209), + [anon_sym_BSLASHacp] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12209), + [anon_sym_BSLASHcolor] = ACTIONS(12209), + [anon_sym_BSLASHcolorbox] = ACTIONS(12209), + [anon_sym_BSLASHtextcolor] = ACTIONS(12209), + [anon_sym_BSLASHpagecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12209), + }, + [1848] = { + [sym_generic_command_name] = ACTIONS(12197), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12197), + [anon_sym_LBRACK] = ACTIONS(12195), + [anon_sym_RBRACK] = ACTIONS(12195), + [anon_sym_LBRACE] = ACTIONS(12195), + [anon_sym_RBRACE] = ACTIONS(12195), + [anon_sym_LPAREN] = ACTIONS(12195), + [anon_sym_COMMA] = ACTIONS(12195), + [anon_sym_EQ] = ACTIONS(12195), + [sym_word] = ACTIONS(12195), + [sym_param] = ACTIONS(12195), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12195), + [anon_sym_DOLLAR] = ACTIONS(12197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12195), + [anon_sym_BSLASHbegin] = ACTIONS(12197), + [anon_sym_BSLASHcaption] = ACTIONS(12197), + [anon_sym_BSLASHcite] = ACTIONS(12197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCite] = ACTIONS(12197), + [anon_sym_BSLASHnocite] = ACTIONS(12197), + [anon_sym_BSLASHcitet] = ACTIONS(12197), + [anon_sym_BSLASHcitep] = ACTIONS(12197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteauthor] = ACTIONS(12197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitetitle] = ACTIONS(12197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteyear] = ACTIONS(12197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitedate] = ACTIONS(12197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteurl] = ACTIONS(12197), + [anon_sym_BSLASHfullcite] = ACTIONS(12197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12197), + [anon_sym_BSLASHcitealt] = ACTIONS(12197), + [anon_sym_BSLASHcitealp] = ACTIONS(12197), + [anon_sym_BSLASHcitetext] = ACTIONS(12197), + [anon_sym_BSLASHparencite] = ACTIONS(12197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHParencite] = ACTIONS(12197), + [anon_sym_BSLASHfootcite] = ACTIONS(12197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12197), + [anon_sym_BSLASHtextcite] = ACTIONS(12197), + [anon_sym_BSLASHTextcite] = ACTIONS(12197), + [anon_sym_BSLASHsmartcite] = ACTIONS(12197), + [anon_sym_BSLASHSmartcite] = ACTIONS(12197), + [anon_sym_BSLASHsupercite] = ACTIONS(12197), + [anon_sym_BSLASHautocite] = ACTIONS(12197), + [anon_sym_BSLASHAutocite] = ACTIONS(12197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHvolcite] = ACTIONS(12197), + [anon_sym_BSLASHVolcite] = ACTIONS(12197), + [anon_sym_BSLASHpvolcite] = ACTIONS(12197), + [anon_sym_BSLASHPvolcite] = ACTIONS(12197), + [anon_sym_BSLASHfvolcite] = ACTIONS(12197), + [anon_sym_BSLASHftvolcite] = ACTIONS(12197), + [anon_sym_BSLASHsvolcite] = ACTIONS(12197), + [anon_sym_BSLASHSvolcite] = ACTIONS(12197), + [anon_sym_BSLASHtvolcite] = ACTIONS(12197), + [anon_sym_BSLASHTvolcite] = ACTIONS(12197), + [anon_sym_BSLASHavolcite] = ACTIONS(12197), + [anon_sym_BSLASHAvolcite] = ACTIONS(12197), + [anon_sym_BSLASHnotecite] = ACTIONS(12197), + [anon_sym_BSLASHpnotecite] = ACTIONS(12197), + [anon_sym_BSLASHPnotecite] = ACTIONS(12197), + [anon_sym_BSLASHfnotecite] = ACTIONS(12197), + [anon_sym_BSLASHusepackage] = ACTIONS(12197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12197), + [anon_sym_BSLASHinclude] = ACTIONS(12197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12197), + [anon_sym_BSLASHinput] = ACTIONS(12197), + [anon_sym_BSLASHsubfile] = ACTIONS(12197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12197), + [anon_sym_BSLASHbibliography] = ACTIONS(12197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12197), + [anon_sym_BSLASHincludesvg] = ACTIONS(12197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12197), + [anon_sym_BSLASHimport] = ACTIONS(12197), + [anon_sym_BSLASHsubimport] = ACTIONS(12197), + [anon_sym_BSLASHinputfrom] = ACTIONS(12197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12197), + [anon_sym_BSLASHincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHlabel] = ACTIONS(12197), + [anon_sym_BSLASHref] = ACTIONS(12197), + [anon_sym_BSLASHvref] = ACTIONS(12197), + [anon_sym_BSLASHVref] = ACTIONS(12197), + [anon_sym_BSLASHautoref] = ACTIONS(12197), + [anon_sym_BSLASHpageref] = ACTIONS(12197), + [anon_sym_BSLASHcref] = ACTIONS(12197), + [anon_sym_BSLASHCref] = ACTIONS(12197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnameCref] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHlabelcref] = ACTIONS(12197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12197), + [anon_sym_BSLASHeqref] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange] = ACTIONS(12197), + [anon_sym_BSLASHCrefrange] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewlabel] = ACTIONS(12197), + [anon_sym_BSLASHnewcommand] = ACTIONS(12197), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12197), + [anon_sym_BSLASHgls] = ACTIONS(12197), + [anon_sym_BSLASHGls] = ACTIONS(12197), + [anon_sym_BSLASHGLS] = ACTIONS(12197), + [anon_sym_BSLASHglspl] = ACTIONS(12197), + [anon_sym_BSLASHGlspl] = ACTIONS(12197), + [anon_sym_BSLASHGLSpl] = ACTIONS(12197), + [anon_sym_BSLASHglsdisp] = ACTIONS(12197), + [anon_sym_BSLASHglslink] = ACTIONS(12197), + [anon_sym_BSLASHglstext] = ACTIONS(12197), + [anon_sym_BSLASHGlstext] = ACTIONS(12197), + [anon_sym_BSLASHGLStext] = ACTIONS(12197), + [anon_sym_BSLASHglsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12197), + [anon_sym_BSLASHglsplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSplural] = ACTIONS(12197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHglsname] = ACTIONS(12197), + [anon_sym_BSLASHGlsname] = ACTIONS(12197), + [anon_sym_BSLASHGLSname] = ACTIONS(12197), + [anon_sym_BSLASHglssymbol] = ACTIONS(12197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12197), + [anon_sym_BSLASHglsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12197), + [anon_sym_BSLASHglsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12197), + [anon_sym_BSLASHglsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12197), + [anon_sym_BSLASHglsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12197), + [anon_sym_BSLASHglsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12197), + [anon_sym_BSLASHnewacronym] = ACTIONS(12197), + [anon_sym_BSLASHacrshort] = ACTIONS(12197), + [anon_sym_BSLASHAcrshort] = ACTIONS(12197), + [anon_sym_BSLASHACRshort] = ACTIONS(12197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12197), + [anon_sym_BSLASHacrlong] = ACTIONS(12197), + [anon_sym_BSLASHAcrlong] = ACTIONS(12197), + [anon_sym_BSLASHACRlong] = ACTIONS(12197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12197), + [anon_sym_BSLASHacrfull] = ACTIONS(12197), + [anon_sym_BSLASHAcrfull] = ACTIONS(12197), + [anon_sym_BSLASHACRfull] = ACTIONS(12197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12197), + [anon_sym_BSLASHacs] = ACTIONS(12197), + [anon_sym_BSLASHAcs] = ACTIONS(12197), + [anon_sym_BSLASHacsp] = ACTIONS(12197), + [anon_sym_BSLASHAcsp] = ACTIONS(12197), + [anon_sym_BSLASHacl] = ACTIONS(12197), + [anon_sym_BSLASHAcl] = ACTIONS(12197), + [anon_sym_BSLASHaclp] = ACTIONS(12197), + [anon_sym_BSLASHAclp] = ACTIONS(12197), + [anon_sym_BSLASHacf] = ACTIONS(12197), + [anon_sym_BSLASHAcf] = ACTIONS(12197), + [anon_sym_BSLASHacfp] = ACTIONS(12197), + [anon_sym_BSLASHAcfp] = ACTIONS(12197), + [anon_sym_BSLASHac] = ACTIONS(12197), + [anon_sym_BSLASHAc] = ACTIONS(12197), + [anon_sym_BSLASHacp] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12197), + [anon_sym_BSLASHcolor] = ACTIONS(12197), + [anon_sym_BSLASHcolorbox] = ACTIONS(12197), + [anon_sym_BSLASHtextcolor] = ACTIONS(12197), + [anon_sym_BSLASHpagecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12197), + }, + [1849] = { + [sym_generic_command_name] = ACTIONS(12177), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12177), + [anon_sym_LBRACK] = ACTIONS(12175), + [anon_sym_RBRACK] = ACTIONS(12175), + [anon_sym_LBRACE] = ACTIONS(12175), + [anon_sym_RBRACE] = ACTIONS(12175), + [anon_sym_LPAREN] = ACTIONS(12175), + [anon_sym_COMMA] = ACTIONS(12175), + [anon_sym_EQ] = ACTIONS(12175), + [sym_word] = ACTIONS(12175), + [sym_param] = ACTIONS(12175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12175), + [anon_sym_DOLLAR] = ACTIONS(12177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12175), + [anon_sym_BSLASHbegin] = ACTIONS(12177), + [anon_sym_BSLASHcaption] = ACTIONS(12177), + [anon_sym_BSLASHcite] = ACTIONS(12177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCite] = ACTIONS(12177), + [anon_sym_BSLASHnocite] = ACTIONS(12177), + [anon_sym_BSLASHcitet] = ACTIONS(12177), + [anon_sym_BSLASHcitep] = ACTIONS(12177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteauthor] = ACTIONS(12177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitetitle] = ACTIONS(12177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteyear] = ACTIONS(12177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitedate] = ACTIONS(12177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteurl] = ACTIONS(12177), + [anon_sym_BSLASHfullcite] = ACTIONS(12177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12177), + [anon_sym_BSLASHcitealt] = ACTIONS(12177), + [anon_sym_BSLASHcitealp] = ACTIONS(12177), + [anon_sym_BSLASHcitetext] = ACTIONS(12177), + [anon_sym_BSLASHparencite] = ACTIONS(12177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHParencite] = ACTIONS(12177), + [anon_sym_BSLASHfootcite] = ACTIONS(12177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12177), + [anon_sym_BSLASHtextcite] = ACTIONS(12177), + [anon_sym_BSLASHTextcite] = ACTIONS(12177), + [anon_sym_BSLASHsmartcite] = ACTIONS(12177), + [anon_sym_BSLASHSmartcite] = ACTIONS(12177), + [anon_sym_BSLASHsupercite] = ACTIONS(12177), + [anon_sym_BSLASHautocite] = ACTIONS(12177), + [anon_sym_BSLASHAutocite] = ACTIONS(12177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHvolcite] = ACTIONS(12177), + [anon_sym_BSLASHVolcite] = ACTIONS(12177), + [anon_sym_BSLASHpvolcite] = ACTIONS(12177), + [anon_sym_BSLASHPvolcite] = ACTIONS(12177), + [anon_sym_BSLASHfvolcite] = ACTIONS(12177), + [anon_sym_BSLASHftvolcite] = ACTIONS(12177), + [anon_sym_BSLASHsvolcite] = ACTIONS(12177), + [anon_sym_BSLASHSvolcite] = ACTIONS(12177), + [anon_sym_BSLASHtvolcite] = ACTIONS(12177), + [anon_sym_BSLASHTvolcite] = ACTIONS(12177), + [anon_sym_BSLASHavolcite] = ACTIONS(12177), + [anon_sym_BSLASHAvolcite] = ACTIONS(12177), + [anon_sym_BSLASHnotecite] = ACTIONS(12177), + [anon_sym_BSLASHpnotecite] = ACTIONS(12177), + [anon_sym_BSLASHPnotecite] = ACTIONS(12177), + [anon_sym_BSLASHfnotecite] = ACTIONS(12177), + [anon_sym_BSLASHusepackage] = ACTIONS(12177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12177), + [anon_sym_BSLASHinclude] = ACTIONS(12177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12177), + [anon_sym_BSLASHinput] = ACTIONS(12177), + [anon_sym_BSLASHsubfile] = ACTIONS(12177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12177), + [anon_sym_BSLASHbibliography] = ACTIONS(12177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12177), + [anon_sym_BSLASHincludesvg] = ACTIONS(12177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12177), + [anon_sym_BSLASHimport] = ACTIONS(12177), + [anon_sym_BSLASHsubimport] = ACTIONS(12177), + [anon_sym_BSLASHinputfrom] = ACTIONS(12177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12177), + [anon_sym_BSLASHincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHlabel] = ACTIONS(12177), + [anon_sym_BSLASHref] = ACTIONS(12177), + [anon_sym_BSLASHvref] = ACTIONS(12177), + [anon_sym_BSLASHVref] = ACTIONS(12177), + [anon_sym_BSLASHautoref] = ACTIONS(12177), + [anon_sym_BSLASHpageref] = ACTIONS(12177), + [anon_sym_BSLASHcref] = ACTIONS(12177), + [anon_sym_BSLASHCref] = ACTIONS(12177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnameCref] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHlabelcref] = ACTIONS(12177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12177), + [anon_sym_BSLASHeqref] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange] = ACTIONS(12177), + [anon_sym_BSLASHCrefrange] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewlabel] = ACTIONS(12177), + [anon_sym_BSLASHnewcommand] = ACTIONS(12177), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12177), + [anon_sym_BSLASHgls] = ACTIONS(12177), + [anon_sym_BSLASHGls] = ACTIONS(12177), + [anon_sym_BSLASHGLS] = ACTIONS(12177), + [anon_sym_BSLASHglspl] = ACTIONS(12177), + [anon_sym_BSLASHGlspl] = ACTIONS(12177), + [anon_sym_BSLASHGLSpl] = ACTIONS(12177), + [anon_sym_BSLASHglsdisp] = ACTIONS(12177), + [anon_sym_BSLASHglslink] = ACTIONS(12177), + [anon_sym_BSLASHglstext] = ACTIONS(12177), + [anon_sym_BSLASHGlstext] = ACTIONS(12177), + [anon_sym_BSLASHGLStext] = ACTIONS(12177), + [anon_sym_BSLASHglsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12177), + [anon_sym_BSLASHglsplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSplural] = ACTIONS(12177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHglsname] = ACTIONS(12177), + [anon_sym_BSLASHGlsname] = ACTIONS(12177), + [anon_sym_BSLASHGLSname] = ACTIONS(12177), + [anon_sym_BSLASHglssymbol] = ACTIONS(12177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12177), + [anon_sym_BSLASHglsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12177), + [anon_sym_BSLASHglsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12177), + [anon_sym_BSLASHglsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12177), + [anon_sym_BSLASHglsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12177), + [anon_sym_BSLASHglsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12177), + [anon_sym_BSLASHnewacronym] = ACTIONS(12177), + [anon_sym_BSLASHacrshort] = ACTIONS(12177), + [anon_sym_BSLASHAcrshort] = ACTIONS(12177), + [anon_sym_BSLASHACRshort] = ACTIONS(12177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12177), + [anon_sym_BSLASHacrlong] = ACTIONS(12177), + [anon_sym_BSLASHAcrlong] = ACTIONS(12177), + [anon_sym_BSLASHACRlong] = ACTIONS(12177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12177), + [anon_sym_BSLASHacrfull] = ACTIONS(12177), + [anon_sym_BSLASHAcrfull] = ACTIONS(12177), + [anon_sym_BSLASHACRfull] = ACTIONS(12177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12177), + [anon_sym_BSLASHacs] = ACTIONS(12177), + [anon_sym_BSLASHAcs] = ACTIONS(12177), + [anon_sym_BSLASHacsp] = ACTIONS(12177), + [anon_sym_BSLASHAcsp] = ACTIONS(12177), + [anon_sym_BSLASHacl] = ACTIONS(12177), + [anon_sym_BSLASHAcl] = ACTIONS(12177), + [anon_sym_BSLASHaclp] = ACTIONS(12177), + [anon_sym_BSLASHAclp] = ACTIONS(12177), + [anon_sym_BSLASHacf] = ACTIONS(12177), + [anon_sym_BSLASHAcf] = ACTIONS(12177), + [anon_sym_BSLASHacfp] = ACTIONS(12177), + [anon_sym_BSLASHAcfp] = ACTIONS(12177), + [anon_sym_BSLASHac] = ACTIONS(12177), + [anon_sym_BSLASHAc] = ACTIONS(12177), + [anon_sym_BSLASHacp] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12177), + [anon_sym_BSLASHcolor] = ACTIONS(12177), + [anon_sym_BSLASHcolorbox] = ACTIONS(12177), + [anon_sym_BSLASHtextcolor] = ACTIONS(12177), + [anon_sym_BSLASHpagecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12177), + }, + [1850] = { + [sym_generic_command_name] = ACTIONS(12173), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12173), + [anon_sym_LBRACK] = ACTIONS(12171), + [anon_sym_RBRACK] = ACTIONS(12171), + [anon_sym_LBRACE] = ACTIONS(12171), + [anon_sym_RBRACE] = ACTIONS(12171), + [anon_sym_LPAREN] = ACTIONS(12171), + [anon_sym_COMMA] = ACTIONS(12171), + [anon_sym_EQ] = ACTIONS(12171), + [sym_word] = ACTIONS(12171), + [sym_param] = ACTIONS(12171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12171), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12171), + [anon_sym_DOLLAR] = ACTIONS(12173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12171), + [anon_sym_BSLASHbegin] = ACTIONS(12173), + [anon_sym_BSLASHcaption] = ACTIONS(12173), + [anon_sym_BSLASHcite] = ACTIONS(12173), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCite] = ACTIONS(12173), + [anon_sym_BSLASHnocite] = ACTIONS(12173), + [anon_sym_BSLASHcitet] = ACTIONS(12173), + [anon_sym_BSLASHcitep] = ACTIONS(12173), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteauthor] = ACTIONS(12173), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12173), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitetitle] = ACTIONS(12173), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteyear] = ACTIONS(12173), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitedate] = ACTIONS(12173), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteurl] = ACTIONS(12173), + [anon_sym_BSLASHfullcite] = ACTIONS(12173), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12173), + [anon_sym_BSLASHcitealt] = ACTIONS(12173), + [anon_sym_BSLASHcitealp] = ACTIONS(12173), + [anon_sym_BSLASHcitetext] = ACTIONS(12173), + [anon_sym_BSLASHparencite] = ACTIONS(12173), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHParencite] = ACTIONS(12173), + [anon_sym_BSLASHfootcite] = ACTIONS(12173), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12173), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12173), + [anon_sym_BSLASHtextcite] = ACTIONS(12173), + [anon_sym_BSLASHTextcite] = ACTIONS(12173), + [anon_sym_BSLASHsmartcite] = ACTIONS(12173), + [anon_sym_BSLASHSmartcite] = ACTIONS(12173), + [anon_sym_BSLASHsupercite] = ACTIONS(12173), + [anon_sym_BSLASHautocite] = ACTIONS(12173), + [anon_sym_BSLASHAutocite] = ACTIONS(12173), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHvolcite] = ACTIONS(12173), + [anon_sym_BSLASHVolcite] = ACTIONS(12173), + [anon_sym_BSLASHpvolcite] = ACTIONS(12173), + [anon_sym_BSLASHPvolcite] = ACTIONS(12173), + [anon_sym_BSLASHfvolcite] = ACTIONS(12173), + [anon_sym_BSLASHftvolcite] = ACTIONS(12173), + [anon_sym_BSLASHsvolcite] = ACTIONS(12173), + [anon_sym_BSLASHSvolcite] = ACTIONS(12173), + [anon_sym_BSLASHtvolcite] = ACTIONS(12173), + [anon_sym_BSLASHTvolcite] = ACTIONS(12173), + [anon_sym_BSLASHavolcite] = ACTIONS(12173), + [anon_sym_BSLASHAvolcite] = ACTIONS(12173), + [anon_sym_BSLASHnotecite] = ACTIONS(12173), + [anon_sym_BSLASHpnotecite] = ACTIONS(12173), + [anon_sym_BSLASHPnotecite] = ACTIONS(12173), + [anon_sym_BSLASHfnotecite] = ACTIONS(12173), + [anon_sym_BSLASHusepackage] = ACTIONS(12173), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12173), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12173), + [anon_sym_BSLASHinclude] = ACTIONS(12173), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12173), + [anon_sym_BSLASHinput] = ACTIONS(12173), + [anon_sym_BSLASHsubfile] = ACTIONS(12173), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12173), + [anon_sym_BSLASHbibliography] = ACTIONS(12173), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12173), + [anon_sym_BSLASHincludesvg] = ACTIONS(12173), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12173), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12173), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12173), + [anon_sym_BSLASHimport] = ACTIONS(12173), + [anon_sym_BSLASHsubimport] = ACTIONS(12173), + [anon_sym_BSLASHinputfrom] = ACTIONS(12173), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12173), + [anon_sym_BSLASHincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHlabel] = ACTIONS(12173), + [anon_sym_BSLASHref] = ACTIONS(12173), + [anon_sym_BSLASHvref] = ACTIONS(12173), + [anon_sym_BSLASHVref] = ACTIONS(12173), + [anon_sym_BSLASHautoref] = ACTIONS(12173), + [anon_sym_BSLASHpageref] = ACTIONS(12173), + [anon_sym_BSLASHcref] = ACTIONS(12173), + [anon_sym_BSLASHCref] = ACTIONS(12173), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnameCref] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHlabelcref] = ACTIONS(12173), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12173), + [anon_sym_BSLASHeqref] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange] = ACTIONS(12173), + [anon_sym_BSLASHCrefrange] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewlabel] = ACTIONS(12173), + [anon_sym_BSLASHnewcommand] = ACTIONS(12173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12173), + [anon_sym_BSLASHgls] = ACTIONS(12173), + [anon_sym_BSLASHGls] = ACTIONS(12173), + [anon_sym_BSLASHGLS] = ACTIONS(12173), + [anon_sym_BSLASHglspl] = ACTIONS(12173), + [anon_sym_BSLASHGlspl] = ACTIONS(12173), + [anon_sym_BSLASHGLSpl] = ACTIONS(12173), + [anon_sym_BSLASHglsdisp] = ACTIONS(12173), + [anon_sym_BSLASHglslink] = ACTIONS(12173), + [anon_sym_BSLASHglstext] = ACTIONS(12173), + [anon_sym_BSLASHGlstext] = ACTIONS(12173), + [anon_sym_BSLASHGLStext] = ACTIONS(12173), + [anon_sym_BSLASHglsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12173), + [anon_sym_BSLASHglsplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSplural] = ACTIONS(12173), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHglsname] = ACTIONS(12173), + [anon_sym_BSLASHGlsname] = ACTIONS(12173), + [anon_sym_BSLASHGLSname] = ACTIONS(12173), + [anon_sym_BSLASHglssymbol] = ACTIONS(12173), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12173), + [anon_sym_BSLASHglsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12173), + [anon_sym_BSLASHglsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12173), + [anon_sym_BSLASHglsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12173), + [anon_sym_BSLASHglsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12173), + [anon_sym_BSLASHglsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12173), + [anon_sym_BSLASHnewacronym] = ACTIONS(12173), + [anon_sym_BSLASHacrshort] = ACTIONS(12173), + [anon_sym_BSLASHAcrshort] = ACTIONS(12173), + [anon_sym_BSLASHACRshort] = ACTIONS(12173), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12173), + [anon_sym_BSLASHacrlong] = ACTIONS(12173), + [anon_sym_BSLASHAcrlong] = ACTIONS(12173), + [anon_sym_BSLASHACRlong] = ACTIONS(12173), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12173), + [anon_sym_BSLASHacrfull] = ACTIONS(12173), + [anon_sym_BSLASHAcrfull] = ACTIONS(12173), + [anon_sym_BSLASHACRfull] = ACTIONS(12173), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12173), + [anon_sym_BSLASHacs] = ACTIONS(12173), + [anon_sym_BSLASHAcs] = ACTIONS(12173), + [anon_sym_BSLASHacsp] = ACTIONS(12173), + [anon_sym_BSLASHAcsp] = ACTIONS(12173), + [anon_sym_BSLASHacl] = ACTIONS(12173), + [anon_sym_BSLASHAcl] = ACTIONS(12173), + [anon_sym_BSLASHaclp] = ACTIONS(12173), + [anon_sym_BSLASHAclp] = ACTIONS(12173), + [anon_sym_BSLASHacf] = ACTIONS(12173), + [anon_sym_BSLASHAcf] = ACTIONS(12173), + [anon_sym_BSLASHacfp] = ACTIONS(12173), + [anon_sym_BSLASHAcfp] = ACTIONS(12173), + [anon_sym_BSLASHac] = ACTIONS(12173), + [anon_sym_BSLASHAc] = ACTIONS(12173), + [anon_sym_BSLASHacp] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12173), + [anon_sym_BSLASHcolor] = ACTIONS(12173), + [anon_sym_BSLASHcolorbox] = ACTIONS(12173), + [anon_sym_BSLASHtextcolor] = ACTIONS(12173), + [anon_sym_BSLASHpagecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12173), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12173), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12173), + }, + [1851] = { + [sym_generic_command_name] = ACTIONS(12160), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12160), + [anon_sym_LBRACK] = ACTIONS(12158), + [anon_sym_RBRACK] = ACTIONS(12158), + [anon_sym_LBRACE] = ACTIONS(12158), + [anon_sym_RBRACE] = ACTIONS(12158), + [anon_sym_LPAREN] = ACTIONS(12158), + [anon_sym_COMMA] = ACTIONS(12158), + [anon_sym_EQ] = ACTIONS(12158), + [sym_word] = ACTIONS(12158), + [sym_param] = ACTIONS(12158), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12158), + [anon_sym_DOLLAR] = ACTIONS(12160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12158), + [anon_sym_BSLASHbegin] = ACTIONS(12160), + [anon_sym_BSLASHcaption] = ACTIONS(12160), + [anon_sym_BSLASHcite] = ACTIONS(12160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCite] = ACTIONS(12160), + [anon_sym_BSLASHnocite] = ACTIONS(12160), + [anon_sym_BSLASHcitet] = ACTIONS(12160), + [anon_sym_BSLASHcitep] = ACTIONS(12160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteauthor] = ACTIONS(12160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitetitle] = ACTIONS(12160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteyear] = ACTIONS(12160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitedate] = ACTIONS(12160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteurl] = ACTIONS(12160), + [anon_sym_BSLASHfullcite] = ACTIONS(12160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12160), + [anon_sym_BSLASHcitealt] = ACTIONS(12160), + [anon_sym_BSLASHcitealp] = ACTIONS(12160), + [anon_sym_BSLASHcitetext] = ACTIONS(12160), + [anon_sym_BSLASHparencite] = ACTIONS(12160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHParencite] = ACTIONS(12160), + [anon_sym_BSLASHfootcite] = ACTIONS(12160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12160), + [anon_sym_BSLASHtextcite] = ACTIONS(12160), + [anon_sym_BSLASHTextcite] = ACTIONS(12160), + [anon_sym_BSLASHsmartcite] = ACTIONS(12160), + [anon_sym_BSLASHSmartcite] = ACTIONS(12160), + [anon_sym_BSLASHsupercite] = ACTIONS(12160), + [anon_sym_BSLASHautocite] = ACTIONS(12160), + [anon_sym_BSLASHAutocite] = ACTIONS(12160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHvolcite] = ACTIONS(12160), + [anon_sym_BSLASHVolcite] = ACTIONS(12160), + [anon_sym_BSLASHpvolcite] = ACTIONS(12160), + [anon_sym_BSLASHPvolcite] = ACTIONS(12160), + [anon_sym_BSLASHfvolcite] = ACTIONS(12160), + [anon_sym_BSLASHftvolcite] = ACTIONS(12160), + [anon_sym_BSLASHsvolcite] = ACTIONS(12160), + [anon_sym_BSLASHSvolcite] = ACTIONS(12160), + [anon_sym_BSLASHtvolcite] = ACTIONS(12160), + [anon_sym_BSLASHTvolcite] = ACTIONS(12160), + [anon_sym_BSLASHavolcite] = ACTIONS(12160), + [anon_sym_BSLASHAvolcite] = ACTIONS(12160), + [anon_sym_BSLASHnotecite] = ACTIONS(12160), + [anon_sym_BSLASHpnotecite] = ACTIONS(12160), + [anon_sym_BSLASHPnotecite] = ACTIONS(12160), + [anon_sym_BSLASHfnotecite] = ACTIONS(12160), + [anon_sym_BSLASHusepackage] = ACTIONS(12160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12160), + [anon_sym_BSLASHinclude] = ACTIONS(12160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12160), + [anon_sym_BSLASHinput] = ACTIONS(12160), + [anon_sym_BSLASHsubfile] = ACTIONS(12160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12160), + [anon_sym_BSLASHbibliography] = ACTIONS(12160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12160), + [anon_sym_BSLASHincludesvg] = ACTIONS(12160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12160), + [anon_sym_BSLASHimport] = ACTIONS(12160), + [anon_sym_BSLASHsubimport] = ACTIONS(12160), + [anon_sym_BSLASHinputfrom] = ACTIONS(12160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12160), + [anon_sym_BSLASHincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHlabel] = ACTIONS(12160), + [anon_sym_BSLASHref] = ACTIONS(12160), + [anon_sym_BSLASHvref] = ACTIONS(12160), + [anon_sym_BSLASHVref] = ACTIONS(12160), + [anon_sym_BSLASHautoref] = ACTIONS(12160), + [anon_sym_BSLASHpageref] = ACTIONS(12160), + [anon_sym_BSLASHcref] = ACTIONS(12160), + [anon_sym_BSLASHCref] = ACTIONS(12160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnameCref] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHlabelcref] = ACTIONS(12160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12160), + [anon_sym_BSLASHeqref] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange] = ACTIONS(12160), + [anon_sym_BSLASHCrefrange] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewlabel] = ACTIONS(12160), + [anon_sym_BSLASHnewcommand] = ACTIONS(12160), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12160), + [anon_sym_BSLASHgls] = ACTIONS(12160), + [anon_sym_BSLASHGls] = ACTIONS(12160), + [anon_sym_BSLASHGLS] = ACTIONS(12160), + [anon_sym_BSLASHglspl] = ACTIONS(12160), + [anon_sym_BSLASHGlspl] = ACTIONS(12160), + [anon_sym_BSLASHGLSpl] = ACTIONS(12160), + [anon_sym_BSLASHglsdisp] = ACTIONS(12160), + [anon_sym_BSLASHglslink] = ACTIONS(12160), + [anon_sym_BSLASHglstext] = ACTIONS(12160), + [anon_sym_BSLASHGlstext] = ACTIONS(12160), + [anon_sym_BSLASHGLStext] = ACTIONS(12160), + [anon_sym_BSLASHglsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12160), + [anon_sym_BSLASHglsplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSplural] = ACTIONS(12160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHglsname] = ACTIONS(12160), + [anon_sym_BSLASHGlsname] = ACTIONS(12160), + [anon_sym_BSLASHGLSname] = ACTIONS(12160), + [anon_sym_BSLASHglssymbol] = ACTIONS(12160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12160), + [anon_sym_BSLASHglsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12160), + [anon_sym_BSLASHglsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12160), + [anon_sym_BSLASHglsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12160), + [anon_sym_BSLASHglsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12160), + [anon_sym_BSLASHglsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12160), + [anon_sym_BSLASHnewacronym] = ACTIONS(12160), + [anon_sym_BSLASHacrshort] = ACTIONS(12160), + [anon_sym_BSLASHAcrshort] = ACTIONS(12160), + [anon_sym_BSLASHACRshort] = ACTIONS(12160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12160), + [anon_sym_BSLASHacrlong] = ACTIONS(12160), + [anon_sym_BSLASHAcrlong] = ACTIONS(12160), + [anon_sym_BSLASHACRlong] = ACTIONS(12160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12160), + [anon_sym_BSLASHacrfull] = ACTIONS(12160), + [anon_sym_BSLASHAcrfull] = ACTIONS(12160), + [anon_sym_BSLASHACRfull] = ACTIONS(12160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12160), + [anon_sym_BSLASHacs] = ACTIONS(12160), + [anon_sym_BSLASHAcs] = ACTIONS(12160), + [anon_sym_BSLASHacsp] = ACTIONS(12160), + [anon_sym_BSLASHAcsp] = ACTIONS(12160), + [anon_sym_BSLASHacl] = ACTIONS(12160), + [anon_sym_BSLASHAcl] = ACTIONS(12160), + [anon_sym_BSLASHaclp] = ACTIONS(12160), + [anon_sym_BSLASHAclp] = ACTIONS(12160), + [anon_sym_BSLASHacf] = ACTIONS(12160), + [anon_sym_BSLASHAcf] = ACTIONS(12160), + [anon_sym_BSLASHacfp] = ACTIONS(12160), + [anon_sym_BSLASHAcfp] = ACTIONS(12160), + [anon_sym_BSLASHac] = ACTIONS(12160), + [anon_sym_BSLASHAc] = ACTIONS(12160), + [anon_sym_BSLASHacp] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12160), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12160), + [anon_sym_BSLASHcolor] = ACTIONS(12160), + [anon_sym_BSLASHcolorbox] = ACTIONS(12160), + [anon_sym_BSLASHtextcolor] = ACTIONS(12160), + [anon_sym_BSLASHpagecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12160), + }, + [1852] = { + [sym_generic_command_name] = ACTIONS(12156), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12156), + [anon_sym_LBRACK] = ACTIONS(12154), + [anon_sym_RBRACK] = ACTIONS(12154), + [anon_sym_LBRACE] = ACTIONS(12154), + [anon_sym_RBRACE] = ACTIONS(12154), + [anon_sym_LPAREN] = ACTIONS(12154), + [anon_sym_COMMA] = ACTIONS(12154), + [anon_sym_EQ] = ACTIONS(12154), + [sym_word] = ACTIONS(12154), + [sym_param] = ACTIONS(12154), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12154), + [anon_sym_DOLLAR] = ACTIONS(12156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12154), + [anon_sym_BSLASHbegin] = ACTIONS(12156), + [anon_sym_BSLASHcaption] = ACTIONS(12156), + [anon_sym_BSLASHcite] = ACTIONS(12156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCite] = ACTIONS(12156), + [anon_sym_BSLASHnocite] = ACTIONS(12156), + [anon_sym_BSLASHcitet] = ACTIONS(12156), + [anon_sym_BSLASHcitep] = ACTIONS(12156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteauthor] = ACTIONS(12156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitetitle] = ACTIONS(12156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteyear] = ACTIONS(12156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitedate] = ACTIONS(12156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteurl] = ACTIONS(12156), + [anon_sym_BSLASHfullcite] = ACTIONS(12156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12156), + [anon_sym_BSLASHcitealt] = ACTIONS(12156), + [anon_sym_BSLASHcitealp] = ACTIONS(12156), + [anon_sym_BSLASHcitetext] = ACTIONS(12156), + [anon_sym_BSLASHparencite] = ACTIONS(12156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHParencite] = ACTIONS(12156), + [anon_sym_BSLASHfootcite] = ACTIONS(12156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12156), + [anon_sym_BSLASHtextcite] = ACTIONS(12156), + [anon_sym_BSLASHTextcite] = ACTIONS(12156), + [anon_sym_BSLASHsmartcite] = ACTIONS(12156), + [anon_sym_BSLASHSmartcite] = ACTIONS(12156), + [anon_sym_BSLASHsupercite] = ACTIONS(12156), + [anon_sym_BSLASHautocite] = ACTIONS(12156), + [anon_sym_BSLASHAutocite] = ACTIONS(12156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHvolcite] = ACTIONS(12156), + [anon_sym_BSLASHVolcite] = ACTIONS(12156), + [anon_sym_BSLASHpvolcite] = ACTIONS(12156), + [anon_sym_BSLASHPvolcite] = ACTIONS(12156), + [anon_sym_BSLASHfvolcite] = ACTIONS(12156), + [anon_sym_BSLASHftvolcite] = ACTIONS(12156), + [anon_sym_BSLASHsvolcite] = ACTIONS(12156), + [anon_sym_BSLASHSvolcite] = ACTIONS(12156), + [anon_sym_BSLASHtvolcite] = ACTIONS(12156), + [anon_sym_BSLASHTvolcite] = ACTIONS(12156), + [anon_sym_BSLASHavolcite] = ACTIONS(12156), + [anon_sym_BSLASHAvolcite] = ACTIONS(12156), + [anon_sym_BSLASHnotecite] = ACTIONS(12156), + [anon_sym_BSLASHpnotecite] = ACTIONS(12156), + [anon_sym_BSLASHPnotecite] = ACTIONS(12156), + [anon_sym_BSLASHfnotecite] = ACTIONS(12156), + [anon_sym_BSLASHusepackage] = ACTIONS(12156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12156), + [anon_sym_BSLASHinclude] = ACTIONS(12156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12156), + [anon_sym_BSLASHinput] = ACTIONS(12156), + [anon_sym_BSLASHsubfile] = ACTIONS(12156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12156), + [anon_sym_BSLASHbibliography] = ACTIONS(12156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12156), + [anon_sym_BSLASHincludesvg] = ACTIONS(12156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12156), + [anon_sym_BSLASHimport] = ACTIONS(12156), + [anon_sym_BSLASHsubimport] = ACTIONS(12156), + [anon_sym_BSLASHinputfrom] = ACTIONS(12156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12156), + [anon_sym_BSLASHincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHlabel] = ACTIONS(12156), + [anon_sym_BSLASHref] = ACTIONS(12156), + [anon_sym_BSLASHvref] = ACTIONS(12156), + [anon_sym_BSLASHVref] = ACTIONS(12156), + [anon_sym_BSLASHautoref] = ACTIONS(12156), + [anon_sym_BSLASHpageref] = ACTIONS(12156), + [anon_sym_BSLASHcref] = ACTIONS(12156), + [anon_sym_BSLASHCref] = ACTIONS(12156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnameCref] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHlabelcref] = ACTIONS(12156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12156), + [anon_sym_BSLASHeqref] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange] = ACTIONS(12156), + [anon_sym_BSLASHCrefrange] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewlabel] = ACTIONS(12156), + [anon_sym_BSLASHnewcommand] = ACTIONS(12156), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12156), + [anon_sym_BSLASHgls] = ACTIONS(12156), + [anon_sym_BSLASHGls] = ACTIONS(12156), + [anon_sym_BSLASHGLS] = ACTIONS(12156), + [anon_sym_BSLASHglspl] = ACTIONS(12156), + [anon_sym_BSLASHGlspl] = ACTIONS(12156), + [anon_sym_BSLASHGLSpl] = ACTIONS(12156), + [anon_sym_BSLASHglsdisp] = ACTIONS(12156), + [anon_sym_BSLASHglslink] = ACTIONS(12156), + [anon_sym_BSLASHglstext] = ACTIONS(12156), + [anon_sym_BSLASHGlstext] = ACTIONS(12156), + [anon_sym_BSLASHGLStext] = ACTIONS(12156), + [anon_sym_BSLASHglsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12156), + [anon_sym_BSLASHglsplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSplural] = ACTIONS(12156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHglsname] = ACTIONS(12156), + [anon_sym_BSLASHGlsname] = ACTIONS(12156), + [anon_sym_BSLASHGLSname] = ACTIONS(12156), + [anon_sym_BSLASHglssymbol] = ACTIONS(12156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12156), + [anon_sym_BSLASHglsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12156), + [anon_sym_BSLASHglsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12156), + [anon_sym_BSLASHglsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12156), + [anon_sym_BSLASHglsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12156), + [anon_sym_BSLASHglsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12156), + [anon_sym_BSLASHnewacronym] = ACTIONS(12156), + [anon_sym_BSLASHacrshort] = ACTIONS(12156), + [anon_sym_BSLASHAcrshort] = ACTIONS(12156), + [anon_sym_BSLASHACRshort] = ACTIONS(12156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12156), + [anon_sym_BSLASHacrlong] = ACTIONS(12156), + [anon_sym_BSLASHAcrlong] = ACTIONS(12156), + [anon_sym_BSLASHACRlong] = ACTIONS(12156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12156), + [anon_sym_BSLASHacrfull] = ACTIONS(12156), + [anon_sym_BSLASHAcrfull] = ACTIONS(12156), + [anon_sym_BSLASHACRfull] = ACTIONS(12156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12156), + [anon_sym_BSLASHacs] = ACTIONS(12156), + [anon_sym_BSLASHAcs] = ACTIONS(12156), + [anon_sym_BSLASHacsp] = ACTIONS(12156), + [anon_sym_BSLASHAcsp] = ACTIONS(12156), + [anon_sym_BSLASHacl] = ACTIONS(12156), + [anon_sym_BSLASHAcl] = ACTIONS(12156), + [anon_sym_BSLASHaclp] = ACTIONS(12156), + [anon_sym_BSLASHAclp] = ACTIONS(12156), + [anon_sym_BSLASHacf] = ACTIONS(12156), + [anon_sym_BSLASHAcf] = ACTIONS(12156), + [anon_sym_BSLASHacfp] = ACTIONS(12156), + [anon_sym_BSLASHAcfp] = ACTIONS(12156), + [anon_sym_BSLASHac] = ACTIONS(12156), + [anon_sym_BSLASHAc] = ACTIONS(12156), + [anon_sym_BSLASHacp] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12156), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12156), + [anon_sym_BSLASHcolor] = ACTIONS(12156), + [anon_sym_BSLASHcolorbox] = ACTIONS(12156), + [anon_sym_BSLASHtextcolor] = ACTIONS(12156), + [anon_sym_BSLASHpagecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12156), + }, + [1853] = { + [sym_generic_command_name] = ACTIONS(12152), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12152), + [anon_sym_LBRACK] = ACTIONS(12150), + [anon_sym_RBRACK] = ACTIONS(12150), + [anon_sym_LBRACE] = ACTIONS(12150), + [anon_sym_RBRACE] = ACTIONS(12150), + [anon_sym_LPAREN] = ACTIONS(12150), + [anon_sym_COMMA] = ACTIONS(12150), + [anon_sym_EQ] = ACTIONS(12150), + [sym_word] = ACTIONS(12150), + [sym_param] = ACTIONS(12150), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12150), + [anon_sym_DOLLAR] = ACTIONS(12152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12150), + [anon_sym_BSLASHbegin] = ACTIONS(12152), + [anon_sym_BSLASHcaption] = ACTIONS(12152), + [anon_sym_BSLASHcite] = ACTIONS(12152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCite] = ACTIONS(12152), + [anon_sym_BSLASHnocite] = ACTIONS(12152), + [anon_sym_BSLASHcitet] = ACTIONS(12152), + [anon_sym_BSLASHcitep] = ACTIONS(12152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteauthor] = ACTIONS(12152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitetitle] = ACTIONS(12152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteyear] = ACTIONS(12152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitedate] = ACTIONS(12152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteurl] = ACTIONS(12152), + [anon_sym_BSLASHfullcite] = ACTIONS(12152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12152), + [anon_sym_BSLASHcitealt] = ACTIONS(12152), + [anon_sym_BSLASHcitealp] = ACTIONS(12152), + [anon_sym_BSLASHcitetext] = ACTIONS(12152), + [anon_sym_BSLASHparencite] = ACTIONS(12152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHParencite] = ACTIONS(12152), + [anon_sym_BSLASHfootcite] = ACTIONS(12152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12152), + [anon_sym_BSLASHtextcite] = ACTIONS(12152), + [anon_sym_BSLASHTextcite] = ACTIONS(12152), + [anon_sym_BSLASHsmartcite] = ACTIONS(12152), + [anon_sym_BSLASHSmartcite] = ACTIONS(12152), + [anon_sym_BSLASHsupercite] = ACTIONS(12152), + [anon_sym_BSLASHautocite] = ACTIONS(12152), + [anon_sym_BSLASHAutocite] = ACTIONS(12152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHvolcite] = ACTIONS(12152), + [anon_sym_BSLASHVolcite] = ACTIONS(12152), + [anon_sym_BSLASHpvolcite] = ACTIONS(12152), + [anon_sym_BSLASHPvolcite] = ACTIONS(12152), + [anon_sym_BSLASHfvolcite] = ACTIONS(12152), + [anon_sym_BSLASHftvolcite] = ACTIONS(12152), + [anon_sym_BSLASHsvolcite] = ACTIONS(12152), + [anon_sym_BSLASHSvolcite] = ACTIONS(12152), + [anon_sym_BSLASHtvolcite] = ACTIONS(12152), + [anon_sym_BSLASHTvolcite] = ACTIONS(12152), + [anon_sym_BSLASHavolcite] = ACTIONS(12152), + [anon_sym_BSLASHAvolcite] = ACTIONS(12152), + [anon_sym_BSLASHnotecite] = ACTIONS(12152), + [anon_sym_BSLASHpnotecite] = ACTIONS(12152), + [anon_sym_BSLASHPnotecite] = ACTIONS(12152), + [anon_sym_BSLASHfnotecite] = ACTIONS(12152), + [anon_sym_BSLASHusepackage] = ACTIONS(12152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12152), + [anon_sym_BSLASHinclude] = ACTIONS(12152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12152), + [anon_sym_BSLASHinput] = ACTIONS(12152), + [anon_sym_BSLASHsubfile] = ACTIONS(12152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12152), + [anon_sym_BSLASHbibliography] = ACTIONS(12152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12152), + [anon_sym_BSLASHincludesvg] = ACTIONS(12152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12152), + [anon_sym_BSLASHimport] = ACTIONS(12152), + [anon_sym_BSLASHsubimport] = ACTIONS(12152), + [anon_sym_BSLASHinputfrom] = ACTIONS(12152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12152), + [anon_sym_BSLASHincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHlabel] = ACTIONS(12152), + [anon_sym_BSLASHref] = ACTIONS(12152), + [anon_sym_BSLASHvref] = ACTIONS(12152), + [anon_sym_BSLASHVref] = ACTIONS(12152), + [anon_sym_BSLASHautoref] = ACTIONS(12152), + [anon_sym_BSLASHpageref] = ACTIONS(12152), + [anon_sym_BSLASHcref] = ACTIONS(12152), + [anon_sym_BSLASHCref] = ACTIONS(12152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnameCref] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHlabelcref] = ACTIONS(12152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12152), + [anon_sym_BSLASHeqref] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange] = ACTIONS(12152), + [anon_sym_BSLASHCrefrange] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewlabel] = ACTIONS(12152), + [anon_sym_BSLASHnewcommand] = ACTIONS(12152), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12152), + [anon_sym_BSLASHgls] = ACTIONS(12152), + [anon_sym_BSLASHGls] = ACTIONS(12152), + [anon_sym_BSLASHGLS] = ACTIONS(12152), + [anon_sym_BSLASHglspl] = ACTIONS(12152), + [anon_sym_BSLASHGlspl] = ACTIONS(12152), + [anon_sym_BSLASHGLSpl] = ACTIONS(12152), + [anon_sym_BSLASHglsdisp] = ACTIONS(12152), + [anon_sym_BSLASHglslink] = ACTIONS(12152), + [anon_sym_BSLASHglstext] = ACTIONS(12152), + [anon_sym_BSLASHGlstext] = ACTIONS(12152), + [anon_sym_BSLASHGLStext] = ACTIONS(12152), + [anon_sym_BSLASHglsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12152), + [anon_sym_BSLASHglsplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSplural] = ACTIONS(12152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHglsname] = ACTIONS(12152), + [anon_sym_BSLASHGlsname] = ACTIONS(12152), + [anon_sym_BSLASHGLSname] = ACTIONS(12152), + [anon_sym_BSLASHglssymbol] = ACTIONS(12152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12152), + [anon_sym_BSLASHglsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12152), + [anon_sym_BSLASHglsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12152), + [anon_sym_BSLASHglsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12152), + [anon_sym_BSLASHglsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12152), + [anon_sym_BSLASHglsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12152), + [anon_sym_BSLASHnewacronym] = ACTIONS(12152), + [anon_sym_BSLASHacrshort] = ACTIONS(12152), + [anon_sym_BSLASHAcrshort] = ACTIONS(12152), + [anon_sym_BSLASHACRshort] = ACTIONS(12152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12152), + [anon_sym_BSLASHacrlong] = ACTIONS(12152), + [anon_sym_BSLASHAcrlong] = ACTIONS(12152), + [anon_sym_BSLASHACRlong] = ACTIONS(12152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12152), + [anon_sym_BSLASHacrfull] = ACTIONS(12152), + [anon_sym_BSLASHAcrfull] = ACTIONS(12152), + [anon_sym_BSLASHACRfull] = ACTIONS(12152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12152), + [anon_sym_BSLASHacs] = ACTIONS(12152), + [anon_sym_BSLASHAcs] = ACTIONS(12152), + [anon_sym_BSLASHacsp] = ACTIONS(12152), + [anon_sym_BSLASHAcsp] = ACTIONS(12152), + [anon_sym_BSLASHacl] = ACTIONS(12152), + [anon_sym_BSLASHAcl] = ACTIONS(12152), + [anon_sym_BSLASHaclp] = ACTIONS(12152), + [anon_sym_BSLASHAclp] = ACTIONS(12152), + [anon_sym_BSLASHacf] = ACTIONS(12152), + [anon_sym_BSLASHAcf] = ACTIONS(12152), + [anon_sym_BSLASHacfp] = ACTIONS(12152), + [anon_sym_BSLASHAcfp] = ACTIONS(12152), + [anon_sym_BSLASHac] = ACTIONS(12152), + [anon_sym_BSLASHAc] = ACTIONS(12152), + [anon_sym_BSLASHacp] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12152), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12152), + [anon_sym_BSLASHcolor] = ACTIONS(12152), + [anon_sym_BSLASHcolorbox] = ACTIONS(12152), + [anon_sym_BSLASHtextcolor] = ACTIONS(12152), + [anon_sym_BSLASHpagecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12152), + }, + [1854] = { + [sym_generic_command_name] = ACTIONS(12148), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12148), + [anon_sym_LBRACK] = ACTIONS(12146), + [anon_sym_RBRACK] = ACTIONS(12146), + [anon_sym_LBRACE] = ACTIONS(12146), + [anon_sym_RBRACE] = ACTIONS(12146), + [anon_sym_LPAREN] = ACTIONS(12146), + [anon_sym_COMMA] = ACTIONS(12146), + [anon_sym_EQ] = ACTIONS(12146), + [sym_word] = ACTIONS(12146), + [sym_param] = ACTIONS(12146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12146), + [anon_sym_DOLLAR] = ACTIONS(12148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12146), + [anon_sym_BSLASHbegin] = ACTIONS(12148), + [anon_sym_BSLASHcaption] = ACTIONS(12148), + [anon_sym_BSLASHcite] = ACTIONS(12148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCite] = ACTIONS(12148), + [anon_sym_BSLASHnocite] = ACTIONS(12148), + [anon_sym_BSLASHcitet] = ACTIONS(12148), + [anon_sym_BSLASHcitep] = ACTIONS(12148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteauthor] = ACTIONS(12148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitetitle] = ACTIONS(12148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteyear] = ACTIONS(12148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitedate] = ACTIONS(12148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteurl] = ACTIONS(12148), + [anon_sym_BSLASHfullcite] = ACTIONS(12148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12148), + [anon_sym_BSLASHcitealt] = ACTIONS(12148), + [anon_sym_BSLASHcitealp] = ACTIONS(12148), + [anon_sym_BSLASHcitetext] = ACTIONS(12148), + [anon_sym_BSLASHparencite] = ACTIONS(12148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHParencite] = ACTIONS(12148), + [anon_sym_BSLASHfootcite] = ACTIONS(12148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12148), + [anon_sym_BSLASHtextcite] = ACTIONS(12148), + [anon_sym_BSLASHTextcite] = ACTIONS(12148), + [anon_sym_BSLASHsmartcite] = ACTIONS(12148), + [anon_sym_BSLASHSmartcite] = ACTIONS(12148), + [anon_sym_BSLASHsupercite] = ACTIONS(12148), + [anon_sym_BSLASHautocite] = ACTIONS(12148), + [anon_sym_BSLASHAutocite] = ACTIONS(12148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHvolcite] = ACTIONS(12148), + [anon_sym_BSLASHVolcite] = ACTIONS(12148), + [anon_sym_BSLASHpvolcite] = ACTIONS(12148), + [anon_sym_BSLASHPvolcite] = ACTIONS(12148), + [anon_sym_BSLASHfvolcite] = ACTIONS(12148), + [anon_sym_BSLASHftvolcite] = ACTIONS(12148), + [anon_sym_BSLASHsvolcite] = ACTIONS(12148), + [anon_sym_BSLASHSvolcite] = ACTIONS(12148), + [anon_sym_BSLASHtvolcite] = ACTIONS(12148), + [anon_sym_BSLASHTvolcite] = ACTIONS(12148), + [anon_sym_BSLASHavolcite] = ACTIONS(12148), + [anon_sym_BSLASHAvolcite] = ACTIONS(12148), + [anon_sym_BSLASHnotecite] = ACTIONS(12148), + [anon_sym_BSLASHpnotecite] = ACTIONS(12148), + [anon_sym_BSLASHPnotecite] = ACTIONS(12148), + [anon_sym_BSLASHfnotecite] = ACTIONS(12148), + [anon_sym_BSLASHusepackage] = ACTIONS(12148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12148), + [anon_sym_BSLASHinclude] = ACTIONS(12148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12148), + [anon_sym_BSLASHinput] = ACTIONS(12148), + [anon_sym_BSLASHsubfile] = ACTIONS(12148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12148), + [anon_sym_BSLASHbibliography] = ACTIONS(12148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12148), + [anon_sym_BSLASHincludesvg] = ACTIONS(12148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12148), + [anon_sym_BSLASHimport] = ACTIONS(12148), + [anon_sym_BSLASHsubimport] = ACTIONS(12148), + [anon_sym_BSLASHinputfrom] = ACTIONS(12148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12148), + [anon_sym_BSLASHincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHlabel] = ACTIONS(12148), + [anon_sym_BSLASHref] = ACTIONS(12148), + [anon_sym_BSLASHvref] = ACTIONS(12148), + [anon_sym_BSLASHVref] = ACTIONS(12148), + [anon_sym_BSLASHautoref] = ACTIONS(12148), + [anon_sym_BSLASHpageref] = ACTIONS(12148), + [anon_sym_BSLASHcref] = ACTIONS(12148), + [anon_sym_BSLASHCref] = ACTIONS(12148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnameCref] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHlabelcref] = ACTIONS(12148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12148), + [anon_sym_BSLASHeqref] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange] = ACTIONS(12148), + [anon_sym_BSLASHCrefrange] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewlabel] = ACTIONS(12148), + [anon_sym_BSLASHnewcommand] = ACTIONS(12148), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12148), + [anon_sym_BSLASHgls] = ACTIONS(12148), + [anon_sym_BSLASHGls] = ACTIONS(12148), + [anon_sym_BSLASHGLS] = ACTIONS(12148), + [anon_sym_BSLASHglspl] = ACTIONS(12148), + [anon_sym_BSLASHGlspl] = ACTIONS(12148), + [anon_sym_BSLASHGLSpl] = ACTIONS(12148), + [anon_sym_BSLASHglsdisp] = ACTIONS(12148), + [anon_sym_BSLASHglslink] = ACTIONS(12148), + [anon_sym_BSLASHglstext] = ACTIONS(12148), + [anon_sym_BSLASHGlstext] = ACTIONS(12148), + [anon_sym_BSLASHGLStext] = ACTIONS(12148), + [anon_sym_BSLASHglsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12148), + [anon_sym_BSLASHglsplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSplural] = ACTIONS(12148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHglsname] = ACTIONS(12148), + [anon_sym_BSLASHGlsname] = ACTIONS(12148), + [anon_sym_BSLASHGLSname] = ACTIONS(12148), + [anon_sym_BSLASHglssymbol] = ACTIONS(12148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12148), + [anon_sym_BSLASHglsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12148), + [anon_sym_BSLASHglsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12148), + [anon_sym_BSLASHglsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12148), + [anon_sym_BSLASHglsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12148), + [anon_sym_BSLASHglsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12148), + [anon_sym_BSLASHnewacronym] = ACTIONS(12148), + [anon_sym_BSLASHacrshort] = ACTIONS(12148), + [anon_sym_BSLASHAcrshort] = ACTIONS(12148), + [anon_sym_BSLASHACRshort] = ACTIONS(12148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12148), + [anon_sym_BSLASHacrlong] = ACTIONS(12148), + [anon_sym_BSLASHAcrlong] = ACTIONS(12148), + [anon_sym_BSLASHACRlong] = ACTIONS(12148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12148), + [anon_sym_BSLASHacrfull] = ACTIONS(12148), + [anon_sym_BSLASHAcrfull] = ACTIONS(12148), + [anon_sym_BSLASHACRfull] = ACTIONS(12148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12148), + [anon_sym_BSLASHacs] = ACTIONS(12148), + [anon_sym_BSLASHAcs] = ACTIONS(12148), + [anon_sym_BSLASHacsp] = ACTIONS(12148), + [anon_sym_BSLASHAcsp] = ACTIONS(12148), + [anon_sym_BSLASHacl] = ACTIONS(12148), + [anon_sym_BSLASHAcl] = ACTIONS(12148), + [anon_sym_BSLASHaclp] = ACTIONS(12148), + [anon_sym_BSLASHAclp] = ACTIONS(12148), + [anon_sym_BSLASHacf] = ACTIONS(12148), + [anon_sym_BSLASHAcf] = ACTIONS(12148), + [anon_sym_BSLASHacfp] = ACTIONS(12148), + [anon_sym_BSLASHAcfp] = ACTIONS(12148), + [anon_sym_BSLASHac] = ACTIONS(12148), + [anon_sym_BSLASHAc] = ACTIONS(12148), + [anon_sym_BSLASHacp] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12148), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12148), + [anon_sym_BSLASHcolor] = ACTIONS(12148), + [anon_sym_BSLASHcolorbox] = ACTIONS(12148), + [anon_sym_BSLASHtextcolor] = ACTIONS(12148), + [anon_sym_BSLASHpagecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12148), + }, + [1855] = { + [sym_generic_command_name] = ACTIONS(12437), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12437), + [anon_sym_LBRACK] = ACTIONS(12435), + [anon_sym_RBRACK] = ACTIONS(12435), + [anon_sym_LBRACE] = ACTIONS(12435), + [anon_sym_RBRACE] = ACTIONS(12435), + [anon_sym_LPAREN] = ACTIONS(12435), + [anon_sym_COMMA] = ACTIONS(12435), + [anon_sym_EQ] = ACTIONS(12435), + [sym_word] = ACTIONS(12435), + [sym_param] = ACTIONS(12435), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12435), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12435), + [anon_sym_DOLLAR] = ACTIONS(12437), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12435), + [anon_sym_BSLASHbegin] = ACTIONS(12437), + [anon_sym_BSLASHcaption] = ACTIONS(12437), + [anon_sym_BSLASHcite] = ACTIONS(12437), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCite] = ACTIONS(12437), + [anon_sym_BSLASHnocite] = ACTIONS(12437), + [anon_sym_BSLASHcitet] = ACTIONS(12437), + [anon_sym_BSLASHcitep] = ACTIONS(12437), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteauthor] = ACTIONS(12437), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12437), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitetitle] = ACTIONS(12437), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteyear] = ACTIONS(12437), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitedate] = ACTIONS(12437), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteurl] = ACTIONS(12437), + [anon_sym_BSLASHfullcite] = ACTIONS(12437), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12437), + [anon_sym_BSLASHcitealt] = ACTIONS(12437), + [anon_sym_BSLASHcitealp] = ACTIONS(12437), + [anon_sym_BSLASHcitetext] = ACTIONS(12437), + [anon_sym_BSLASHparencite] = ACTIONS(12437), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHParencite] = ACTIONS(12437), + [anon_sym_BSLASHfootcite] = ACTIONS(12437), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12437), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12437), + [anon_sym_BSLASHtextcite] = ACTIONS(12437), + [anon_sym_BSLASHTextcite] = ACTIONS(12437), + [anon_sym_BSLASHsmartcite] = ACTIONS(12437), + [anon_sym_BSLASHSmartcite] = ACTIONS(12437), + [anon_sym_BSLASHsupercite] = ACTIONS(12437), + [anon_sym_BSLASHautocite] = ACTIONS(12437), + [anon_sym_BSLASHAutocite] = ACTIONS(12437), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHvolcite] = ACTIONS(12437), + [anon_sym_BSLASHVolcite] = ACTIONS(12437), + [anon_sym_BSLASHpvolcite] = ACTIONS(12437), + [anon_sym_BSLASHPvolcite] = ACTIONS(12437), + [anon_sym_BSLASHfvolcite] = ACTIONS(12437), + [anon_sym_BSLASHftvolcite] = ACTIONS(12437), + [anon_sym_BSLASHsvolcite] = ACTIONS(12437), + [anon_sym_BSLASHSvolcite] = ACTIONS(12437), + [anon_sym_BSLASHtvolcite] = ACTIONS(12437), + [anon_sym_BSLASHTvolcite] = ACTIONS(12437), + [anon_sym_BSLASHavolcite] = ACTIONS(12437), + [anon_sym_BSLASHAvolcite] = ACTIONS(12437), + [anon_sym_BSLASHnotecite] = ACTIONS(12437), + [anon_sym_BSLASHpnotecite] = ACTIONS(12437), + [anon_sym_BSLASHPnotecite] = ACTIONS(12437), + [anon_sym_BSLASHfnotecite] = ACTIONS(12437), + [anon_sym_BSLASHusepackage] = ACTIONS(12437), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12437), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12437), + [anon_sym_BSLASHinclude] = ACTIONS(12437), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12437), + [anon_sym_BSLASHinput] = ACTIONS(12437), + [anon_sym_BSLASHsubfile] = ACTIONS(12437), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12437), + [anon_sym_BSLASHbibliography] = ACTIONS(12437), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12437), + [anon_sym_BSLASHincludesvg] = ACTIONS(12437), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12437), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12437), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12437), + [anon_sym_BSLASHimport] = ACTIONS(12437), + [anon_sym_BSLASHsubimport] = ACTIONS(12437), + [anon_sym_BSLASHinputfrom] = ACTIONS(12437), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12437), + [anon_sym_BSLASHincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHlabel] = ACTIONS(12437), + [anon_sym_BSLASHref] = ACTIONS(12437), + [anon_sym_BSLASHvref] = ACTIONS(12437), + [anon_sym_BSLASHVref] = ACTIONS(12437), + [anon_sym_BSLASHautoref] = ACTIONS(12437), + [anon_sym_BSLASHpageref] = ACTIONS(12437), + [anon_sym_BSLASHcref] = ACTIONS(12437), + [anon_sym_BSLASHCref] = ACTIONS(12437), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnameCref] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHlabelcref] = ACTIONS(12437), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12437), + [anon_sym_BSLASHeqref] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange] = ACTIONS(12437), + [anon_sym_BSLASHCrefrange] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewlabel] = ACTIONS(12437), + [anon_sym_BSLASHnewcommand] = ACTIONS(12437), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12437), + [anon_sym_BSLASHgls] = ACTIONS(12437), + [anon_sym_BSLASHGls] = ACTIONS(12437), + [anon_sym_BSLASHGLS] = ACTIONS(12437), + [anon_sym_BSLASHglspl] = ACTIONS(12437), + [anon_sym_BSLASHGlspl] = ACTIONS(12437), + [anon_sym_BSLASHGLSpl] = ACTIONS(12437), + [anon_sym_BSLASHglsdisp] = ACTIONS(12437), + [anon_sym_BSLASHglslink] = ACTIONS(12437), + [anon_sym_BSLASHglstext] = ACTIONS(12437), + [anon_sym_BSLASHGlstext] = ACTIONS(12437), + [anon_sym_BSLASHGLStext] = ACTIONS(12437), + [anon_sym_BSLASHglsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12437), + [anon_sym_BSLASHglsplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSplural] = ACTIONS(12437), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHglsname] = ACTIONS(12437), + [anon_sym_BSLASHGlsname] = ACTIONS(12437), + [anon_sym_BSLASHGLSname] = ACTIONS(12437), + [anon_sym_BSLASHglssymbol] = ACTIONS(12437), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12437), + [anon_sym_BSLASHglsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12437), + [anon_sym_BSLASHglsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12437), + [anon_sym_BSLASHglsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12437), + [anon_sym_BSLASHglsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12437), + [anon_sym_BSLASHglsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12437), + [anon_sym_BSLASHnewacronym] = ACTIONS(12437), + [anon_sym_BSLASHacrshort] = ACTIONS(12437), + [anon_sym_BSLASHAcrshort] = ACTIONS(12437), + [anon_sym_BSLASHACRshort] = ACTIONS(12437), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12437), + [anon_sym_BSLASHacrlong] = ACTIONS(12437), + [anon_sym_BSLASHAcrlong] = ACTIONS(12437), + [anon_sym_BSLASHACRlong] = ACTIONS(12437), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12437), + [anon_sym_BSLASHacrfull] = ACTIONS(12437), + [anon_sym_BSLASHAcrfull] = ACTIONS(12437), + [anon_sym_BSLASHACRfull] = ACTIONS(12437), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12437), + [anon_sym_BSLASHacs] = ACTIONS(12437), + [anon_sym_BSLASHAcs] = ACTIONS(12437), + [anon_sym_BSLASHacsp] = ACTIONS(12437), + [anon_sym_BSLASHAcsp] = ACTIONS(12437), + [anon_sym_BSLASHacl] = ACTIONS(12437), + [anon_sym_BSLASHAcl] = ACTIONS(12437), + [anon_sym_BSLASHaclp] = ACTIONS(12437), + [anon_sym_BSLASHAclp] = ACTIONS(12437), + [anon_sym_BSLASHacf] = ACTIONS(12437), + [anon_sym_BSLASHAcf] = ACTIONS(12437), + [anon_sym_BSLASHacfp] = ACTIONS(12437), + [anon_sym_BSLASHAcfp] = ACTIONS(12437), + [anon_sym_BSLASHac] = ACTIONS(12437), + [anon_sym_BSLASHAc] = ACTIONS(12437), + [anon_sym_BSLASHacp] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12437), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12437), + [anon_sym_BSLASHcolor] = ACTIONS(12437), + [anon_sym_BSLASHcolorbox] = ACTIONS(12437), + [anon_sym_BSLASHtextcolor] = ACTIONS(12437), + [anon_sym_BSLASHpagecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12437), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12437), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12437), + }, + [1856] = { + [sym_generic_command_name] = ACTIONS(12144), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12144), + [anon_sym_LBRACK] = ACTIONS(12142), + [anon_sym_RBRACK] = ACTIONS(12142), + [anon_sym_LBRACE] = ACTIONS(12142), + [anon_sym_RBRACE] = ACTIONS(12142), + [anon_sym_LPAREN] = ACTIONS(12142), + [anon_sym_COMMA] = ACTIONS(12142), + [anon_sym_EQ] = ACTIONS(12142), + [sym_word] = ACTIONS(12142), + [sym_param] = ACTIONS(12142), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12142), + [anon_sym_DOLLAR] = ACTIONS(12144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12142), + [anon_sym_BSLASHbegin] = ACTIONS(12144), + [anon_sym_BSLASHcaption] = ACTIONS(12144), + [anon_sym_BSLASHcite] = ACTIONS(12144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCite] = ACTIONS(12144), + [anon_sym_BSLASHnocite] = ACTIONS(12144), + [anon_sym_BSLASHcitet] = ACTIONS(12144), + [anon_sym_BSLASHcitep] = ACTIONS(12144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteauthor] = ACTIONS(12144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitetitle] = ACTIONS(12144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteyear] = ACTIONS(12144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitedate] = ACTIONS(12144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteurl] = ACTIONS(12144), + [anon_sym_BSLASHfullcite] = ACTIONS(12144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12144), + [anon_sym_BSLASHcitealt] = ACTIONS(12144), + [anon_sym_BSLASHcitealp] = ACTIONS(12144), + [anon_sym_BSLASHcitetext] = ACTIONS(12144), + [anon_sym_BSLASHparencite] = ACTIONS(12144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHParencite] = ACTIONS(12144), + [anon_sym_BSLASHfootcite] = ACTIONS(12144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12144), + [anon_sym_BSLASHtextcite] = ACTIONS(12144), + [anon_sym_BSLASHTextcite] = ACTIONS(12144), + [anon_sym_BSLASHsmartcite] = ACTIONS(12144), + [anon_sym_BSLASHSmartcite] = ACTIONS(12144), + [anon_sym_BSLASHsupercite] = ACTIONS(12144), + [anon_sym_BSLASHautocite] = ACTIONS(12144), + [anon_sym_BSLASHAutocite] = ACTIONS(12144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHvolcite] = ACTIONS(12144), + [anon_sym_BSLASHVolcite] = ACTIONS(12144), + [anon_sym_BSLASHpvolcite] = ACTIONS(12144), + [anon_sym_BSLASHPvolcite] = ACTIONS(12144), + [anon_sym_BSLASHfvolcite] = ACTIONS(12144), + [anon_sym_BSLASHftvolcite] = ACTIONS(12144), + [anon_sym_BSLASHsvolcite] = ACTIONS(12144), + [anon_sym_BSLASHSvolcite] = ACTIONS(12144), + [anon_sym_BSLASHtvolcite] = ACTIONS(12144), + [anon_sym_BSLASHTvolcite] = ACTIONS(12144), + [anon_sym_BSLASHavolcite] = ACTIONS(12144), + [anon_sym_BSLASHAvolcite] = ACTIONS(12144), + [anon_sym_BSLASHnotecite] = ACTIONS(12144), + [anon_sym_BSLASHpnotecite] = ACTIONS(12144), + [anon_sym_BSLASHPnotecite] = ACTIONS(12144), + [anon_sym_BSLASHfnotecite] = ACTIONS(12144), + [anon_sym_BSLASHusepackage] = ACTIONS(12144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12144), + [anon_sym_BSLASHinclude] = ACTIONS(12144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12144), + [anon_sym_BSLASHinput] = ACTIONS(12144), + [anon_sym_BSLASHsubfile] = ACTIONS(12144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12144), + [anon_sym_BSLASHbibliography] = ACTIONS(12144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12144), + [anon_sym_BSLASHincludesvg] = ACTIONS(12144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12144), + [anon_sym_BSLASHimport] = ACTIONS(12144), + [anon_sym_BSLASHsubimport] = ACTIONS(12144), + [anon_sym_BSLASHinputfrom] = ACTIONS(12144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12144), + [anon_sym_BSLASHincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHlabel] = ACTIONS(12144), + [anon_sym_BSLASHref] = ACTIONS(12144), + [anon_sym_BSLASHvref] = ACTIONS(12144), + [anon_sym_BSLASHVref] = ACTIONS(12144), + [anon_sym_BSLASHautoref] = ACTIONS(12144), + [anon_sym_BSLASHpageref] = ACTIONS(12144), + [anon_sym_BSLASHcref] = ACTIONS(12144), + [anon_sym_BSLASHCref] = ACTIONS(12144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnameCref] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHlabelcref] = ACTIONS(12144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12144), + [anon_sym_BSLASHeqref] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange] = ACTIONS(12144), + [anon_sym_BSLASHCrefrange] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewlabel] = ACTIONS(12144), + [anon_sym_BSLASHnewcommand] = ACTIONS(12144), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12144), + [anon_sym_BSLASHgls] = ACTIONS(12144), + [anon_sym_BSLASHGls] = ACTIONS(12144), + [anon_sym_BSLASHGLS] = ACTIONS(12144), + [anon_sym_BSLASHglspl] = ACTIONS(12144), + [anon_sym_BSLASHGlspl] = ACTIONS(12144), + [anon_sym_BSLASHGLSpl] = ACTIONS(12144), + [anon_sym_BSLASHglsdisp] = ACTIONS(12144), + [anon_sym_BSLASHglslink] = ACTIONS(12144), + [anon_sym_BSLASHglstext] = ACTIONS(12144), + [anon_sym_BSLASHGlstext] = ACTIONS(12144), + [anon_sym_BSLASHGLStext] = ACTIONS(12144), + [anon_sym_BSLASHglsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12144), + [anon_sym_BSLASHglsplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSplural] = ACTIONS(12144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHglsname] = ACTIONS(12144), + [anon_sym_BSLASHGlsname] = ACTIONS(12144), + [anon_sym_BSLASHGLSname] = ACTIONS(12144), + [anon_sym_BSLASHglssymbol] = ACTIONS(12144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12144), + [anon_sym_BSLASHglsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12144), + [anon_sym_BSLASHglsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12144), + [anon_sym_BSLASHglsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12144), + [anon_sym_BSLASHglsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12144), + [anon_sym_BSLASHglsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12144), + [anon_sym_BSLASHnewacronym] = ACTIONS(12144), + [anon_sym_BSLASHacrshort] = ACTIONS(12144), + [anon_sym_BSLASHAcrshort] = ACTIONS(12144), + [anon_sym_BSLASHACRshort] = ACTIONS(12144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12144), + [anon_sym_BSLASHacrlong] = ACTIONS(12144), + [anon_sym_BSLASHAcrlong] = ACTIONS(12144), + [anon_sym_BSLASHACRlong] = ACTIONS(12144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12144), + [anon_sym_BSLASHacrfull] = ACTIONS(12144), + [anon_sym_BSLASHAcrfull] = ACTIONS(12144), + [anon_sym_BSLASHACRfull] = ACTIONS(12144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12144), + [anon_sym_BSLASHacs] = ACTIONS(12144), + [anon_sym_BSLASHAcs] = ACTIONS(12144), + [anon_sym_BSLASHacsp] = ACTIONS(12144), + [anon_sym_BSLASHAcsp] = ACTIONS(12144), + [anon_sym_BSLASHacl] = ACTIONS(12144), + [anon_sym_BSLASHAcl] = ACTIONS(12144), + [anon_sym_BSLASHaclp] = ACTIONS(12144), + [anon_sym_BSLASHAclp] = ACTIONS(12144), + [anon_sym_BSLASHacf] = ACTIONS(12144), + [anon_sym_BSLASHAcf] = ACTIONS(12144), + [anon_sym_BSLASHacfp] = ACTIONS(12144), + [anon_sym_BSLASHAcfp] = ACTIONS(12144), + [anon_sym_BSLASHac] = ACTIONS(12144), + [anon_sym_BSLASHAc] = ACTIONS(12144), + [anon_sym_BSLASHacp] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12144), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12144), + [anon_sym_BSLASHcolor] = ACTIONS(12144), + [anon_sym_BSLASHcolorbox] = ACTIONS(12144), + [anon_sym_BSLASHtextcolor] = ACTIONS(12144), + [anon_sym_BSLASHpagecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12144), + }, + [1857] = { + [sym_generic_command_name] = ACTIONS(12140), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12140), + [anon_sym_LBRACK] = ACTIONS(12138), + [anon_sym_RBRACK] = ACTIONS(12138), + [anon_sym_LBRACE] = ACTIONS(12138), + [anon_sym_RBRACE] = ACTIONS(12138), + [anon_sym_LPAREN] = ACTIONS(12138), + [anon_sym_COMMA] = ACTIONS(12138), + [anon_sym_EQ] = ACTIONS(12138), + [sym_word] = ACTIONS(12138), + [sym_param] = ACTIONS(12138), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12138), + [anon_sym_DOLLAR] = ACTIONS(12140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12138), + [anon_sym_BSLASHbegin] = ACTIONS(12140), + [anon_sym_BSLASHcaption] = ACTIONS(12140), + [anon_sym_BSLASHcite] = ACTIONS(12140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCite] = ACTIONS(12140), + [anon_sym_BSLASHnocite] = ACTIONS(12140), + [anon_sym_BSLASHcitet] = ACTIONS(12140), + [anon_sym_BSLASHcitep] = ACTIONS(12140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteauthor] = ACTIONS(12140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitetitle] = ACTIONS(12140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteyear] = ACTIONS(12140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitedate] = ACTIONS(12140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteurl] = ACTIONS(12140), + [anon_sym_BSLASHfullcite] = ACTIONS(12140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12140), + [anon_sym_BSLASHcitealt] = ACTIONS(12140), + [anon_sym_BSLASHcitealp] = ACTIONS(12140), + [anon_sym_BSLASHcitetext] = ACTIONS(12140), + [anon_sym_BSLASHparencite] = ACTIONS(12140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHParencite] = ACTIONS(12140), + [anon_sym_BSLASHfootcite] = ACTIONS(12140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12140), + [anon_sym_BSLASHtextcite] = ACTIONS(12140), + [anon_sym_BSLASHTextcite] = ACTIONS(12140), + [anon_sym_BSLASHsmartcite] = ACTIONS(12140), + [anon_sym_BSLASHSmartcite] = ACTIONS(12140), + [anon_sym_BSLASHsupercite] = ACTIONS(12140), + [anon_sym_BSLASHautocite] = ACTIONS(12140), + [anon_sym_BSLASHAutocite] = ACTIONS(12140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHvolcite] = ACTIONS(12140), + [anon_sym_BSLASHVolcite] = ACTIONS(12140), + [anon_sym_BSLASHpvolcite] = ACTIONS(12140), + [anon_sym_BSLASHPvolcite] = ACTIONS(12140), + [anon_sym_BSLASHfvolcite] = ACTIONS(12140), + [anon_sym_BSLASHftvolcite] = ACTIONS(12140), + [anon_sym_BSLASHsvolcite] = ACTIONS(12140), + [anon_sym_BSLASHSvolcite] = ACTIONS(12140), + [anon_sym_BSLASHtvolcite] = ACTIONS(12140), + [anon_sym_BSLASHTvolcite] = ACTIONS(12140), + [anon_sym_BSLASHavolcite] = ACTIONS(12140), + [anon_sym_BSLASHAvolcite] = ACTIONS(12140), + [anon_sym_BSLASHnotecite] = ACTIONS(12140), + [anon_sym_BSLASHpnotecite] = ACTIONS(12140), + [anon_sym_BSLASHPnotecite] = ACTIONS(12140), + [anon_sym_BSLASHfnotecite] = ACTIONS(12140), + [anon_sym_BSLASHusepackage] = ACTIONS(12140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12140), + [anon_sym_BSLASHinclude] = ACTIONS(12140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12140), + [anon_sym_BSLASHinput] = ACTIONS(12140), + [anon_sym_BSLASHsubfile] = ACTIONS(12140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12140), + [anon_sym_BSLASHbibliography] = ACTIONS(12140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12140), + [anon_sym_BSLASHincludesvg] = ACTIONS(12140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12140), + [anon_sym_BSLASHimport] = ACTIONS(12140), + [anon_sym_BSLASHsubimport] = ACTIONS(12140), + [anon_sym_BSLASHinputfrom] = ACTIONS(12140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12140), + [anon_sym_BSLASHincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHlabel] = ACTIONS(12140), + [anon_sym_BSLASHref] = ACTIONS(12140), + [anon_sym_BSLASHvref] = ACTIONS(12140), + [anon_sym_BSLASHVref] = ACTIONS(12140), + [anon_sym_BSLASHautoref] = ACTIONS(12140), + [anon_sym_BSLASHpageref] = ACTIONS(12140), + [anon_sym_BSLASHcref] = ACTIONS(12140), + [anon_sym_BSLASHCref] = ACTIONS(12140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnameCref] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHlabelcref] = ACTIONS(12140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12140), + [anon_sym_BSLASHeqref] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange] = ACTIONS(12140), + [anon_sym_BSLASHCrefrange] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewlabel] = ACTIONS(12140), + [anon_sym_BSLASHnewcommand] = ACTIONS(12140), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12140), + [anon_sym_BSLASHgls] = ACTIONS(12140), + [anon_sym_BSLASHGls] = ACTIONS(12140), + [anon_sym_BSLASHGLS] = ACTIONS(12140), + [anon_sym_BSLASHglspl] = ACTIONS(12140), + [anon_sym_BSLASHGlspl] = ACTIONS(12140), + [anon_sym_BSLASHGLSpl] = ACTIONS(12140), + [anon_sym_BSLASHglsdisp] = ACTIONS(12140), + [anon_sym_BSLASHglslink] = ACTIONS(12140), + [anon_sym_BSLASHglstext] = ACTIONS(12140), + [anon_sym_BSLASHGlstext] = ACTIONS(12140), + [anon_sym_BSLASHGLStext] = ACTIONS(12140), + [anon_sym_BSLASHglsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12140), + [anon_sym_BSLASHglsplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSplural] = ACTIONS(12140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHglsname] = ACTIONS(12140), + [anon_sym_BSLASHGlsname] = ACTIONS(12140), + [anon_sym_BSLASHGLSname] = ACTIONS(12140), + [anon_sym_BSLASHglssymbol] = ACTIONS(12140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12140), + [anon_sym_BSLASHglsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12140), + [anon_sym_BSLASHglsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12140), + [anon_sym_BSLASHglsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12140), + [anon_sym_BSLASHglsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12140), + [anon_sym_BSLASHglsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12140), + [anon_sym_BSLASHnewacronym] = ACTIONS(12140), + [anon_sym_BSLASHacrshort] = ACTIONS(12140), + [anon_sym_BSLASHAcrshort] = ACTIONS(12140), + [anon_sym_BSLASHACRshort] = ACTIONS(12140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12140), + [anon_sym_BSLASHacrlong] = ACTIONS(12140), + [anon_sym_BSLASHAcrlong] = ACTIONS(12140), + [anon_sym_BSLASHACRlong] = ACTIONS(12140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12140), + [anon_sym_BSLASHacrfull] = ACTIONS(12140), + [anon_sym_BSLASHAcrfull] = ACTIONS(12140), + [anon_sym_BSLASHACRfull] = ACTIONS(12140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12140), + [anon_sym_BSLASHacs] = ACTIONS(12140), + [anon_sym_BSLASHAcs] = ACTIONS(12140), + [anon_sym_BSLASHacsp] = ACTIONS(12140), + [anon_sym_BSLASHAcsp] = ACTIONS(12140), + [anon_sym_BSLASHacl] = ACTIONS(12140), + [anon_sym_BSLASHAcl] = ACTIONS(12140), + [anon_sym_BSLASHaclp] = ACTIONS(12140), + [anon_sym_BSLASHAclp] = ACTIONS(12140), + [anon_sym_BSLASHacf] = ACTIONS(12140), + [anon_sym_BSLASHAcf] = ACTIONS(12140), + [anon_sym_BSLASHacfp] = ACTIONS(12140), + [anon_sym_BSLASHAcfp] = ACTIONS(12140), + [anon_sym_BSLASHac] = ACTIONS(12140), + [anon_sym_BSLASHAc] = ACTIONS(12140), + [anon_sym_BSLASHacp] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12140), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12140), + [anon_sym_BSLASHcolor] = ACTIONS(12140), + [anon_sym_BSLASHcolorbox] = ACTIONS(12140), + [anon_sym_BSLASHtextcolor] = ACTIONS(12140), + [anon_sym_BSLASHpagecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12140), + }, + [1858] = { + [sym_generic_command_name] = ACTIONS(12136), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12136), + [anon_sym_LBRACK] = ACTIONS(12134), + [anon_sym_RBRACK] = ACTIONS(12134), + [anon_sym_LBRACE] = ACTIONS(12134), + [anon_sym_RBRACE] = ACTIONS(12134), + [anon_sym_LPAREN] = ACTIONS(12134), + [anon_sym_COMMA] = ACTIONS(12134), + [anon_sym_EQ] = ACTIONS(12134), + [sym_word] = ACTIONS(12134), + [sym_param] = ACTIONS(12134), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12134), + [anon_sym_DOLLAR] = ACTIONS(12136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12134), + [anon_sym_BSLASHbegin] = ACTIONS(12136), + [anon_sym_BSLASHcaption] = ACTIONS(12136), + [anon_sym_BSLASHcite] = ACTIONS(12136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCite] = ACTIONS(12136), + [anon_sym_BSLASHnocite] = ACTIONS(12136), + [anon_sym_BSLASHcitet] = ACTIONS(12136), + [anon_sym_BSLASHcitep] = ACTIONS(12136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteauthor] = ACTIONS(12136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitetitle] = ACTIONS(12136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteyear] = ACTIONS(12136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitedate] = ACTIONS(12136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteurl] = ACTIONS(12136), + [anon_sym_BSLASHfullcite] = ACTIONS(12136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12136), + [anon_sym_BSLASHcitealt] = ACTIONS(12136), + [anon_sym_BSLASHcitealp] = ACTIONS(12136), + [anon_sym_BSLASHcitetext] = ACTIONS(12136), + [anon_sym_BSLASHparencite] = ACTIONS(12136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHParencite] = ACTIONS(12136), + [anon_sym_BSLASHfootcite] = ACTIONS(12136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12136), + [anon_sym_BSLASHtextcite] = ACTIONS(12136), + [anon_sym_BSLASHTextcite] = ACTIONS(12136), + [anon_sym_BSLASHsmartcite] = ACTIONS(12136), + [anon_sym_BSLASHSmartcite] = ACTIONS(12136), + [anon_sym_BSLASHsupercite] = ACTIONS(12136), + [anon_sym_BSLASHautocite] = ACTIONS(12136), + [anon_sym_BSLASHAutocite] = ACTIONS(12136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHvolcite] = ACTIONS(12136), + [anon_sym_BSLASHVolcite] = ACTIONS(12136), + [anon_sym_BSLASHpvolcite] = ACTIONS(12136), + [anon_sym_BSLASHPvolcite] = ACTIONS(12136), + [anon_sym_BSLASHfvolcite] = ACTIONS(12136), + [anon_sym_BSLASHftvolcite] = ACTIONS(12136), + [anon_sym_BSLASHsvolcite] = ACTIONS(12136), + [anon_sym_BSLASHSvolcite] = ACTIONS(12136), + [anon_sym_BSLASHtvolcite] = ACTIONS(12136), + [anon_sym_BSLASHTvolcite] = ACTIONS(12136), + [anon_sym_BSLASHavolcite] = ACTIONS(12136), + [anon_sym_BSLASHAvolcite] = ACTIONS(12136), + [anon_sym_BSLASHnotecite] = ACTIONS(12136), + [anon_sym_BSLASHpnotecite] = ACTIONS(12136), + [anon_sym_BSLASHPnotecite] = ACTIONS(12136), + [anon_sym_BSLASHfnotecite] = ACTIONS(12136), + [anon_sym_BSLASHusepackage] = ACTIONS(12136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12136), + [anon_sym_BSLASHinclude] = ACTIONS(12136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12136), + [anon_sym_BSLASHinput] = ACTIONS(12136), + [anon_sym_BSLASHsubfile] = ACTIONS(12136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12136), + [anon_sym_BSLASHbibliography] = ACTIONS(12136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12136), + [anon_sym_BSLASHincludesvg] = ACTIONS(12136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12136), + [anon_sym_BSLASHimport] = ACTIONS(12136), + [anon_sym_BSLASHsubimport] = ACTIONS(12136), + [anon_sym_BSLASHinputfrom] = ACTIONS(12136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12136), + [anon_sym_BSLASHincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHlabel] = ACTIONS(12136), + [anon_sym_BSLASHref] = ACTIONS(12136), + [anon_sym_BSLASHvref] = ACTIONS(12136), + [anon_sym_BSLASHVref] = ACTIONS(12136), + [anon_sym_BSLASHautoref] = ACTIONS(12136), + [anon_sym_BSLASHpageref] = ACTIONS(12136), + [anon_sym_BSLASHcref] = ACTIONS(12136), + [anon_sym_BSLASHCref] = ACTIONS(12136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnameCref] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHlabelcref] = ACTIONS(12136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12136), + [anon_sym_BSLASHeqref] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange] = ACTIONS(12136), + [anon_sym_BSLASHCrefrange] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewlabel] = ACTIONS(12136), + [anon_sym_BSLASHnewcommand] = ACTIONS(12136), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12136), + [anon_sym_BSLASHgls] = ACTIONS(12136), + [anon_sym_BSLASHGls] = ACTIONS(12136), + [anon_sym_BSLASHGLS] = ACTIONS(12136), + [anon_sym_BSLASHglspl] = ACTIONS(12136), + [anon_sym_BSLASHGlspl] = ACTIONS(12136), + [anon_sym_BSLASHGLSpl] = ACTIONS(12136), + [anon_sym_BSLASHglsdisp] = ACTIONS(12136), + [anon_sym_BSLASHglslink] = ACTIONS(12136), + [anon_sym_BSLASHglstext] = ACTIONS(12136), + [anon_sym_BSLASHGlstext] = ACTIONS(12136), + [anon_sym_BSLASHGLStext] = ACTIONS(12136), + [anon_sym_BSLASHglsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12136), + [anon_sym_BSLASHglsplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSplural] = ACTIONS(12136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHglsname] = ACTIONS(12136), + [anon_sym_BSLASHGlsname] = ACTIONS(12136), + [anon_sym_BSLASHGLSname] = ACTIONS(12136), + [anon_sym_BSLASHglssymbol] = ACTIONS(12136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12136), + [anon_sym_BSLASHglsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12136), + [anon_sym_BSLASHglsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12136), + [anon_sym_BSLASHglsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12136), + [anon_sym_BSLASHglsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12136), + [anon_sym_BSLASHglsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12136), + [anon_sym_BSLASHnewacronym] = ACTIONS(12136), + [anon_sym_BSLASHacrshort] = ACTIONS(12136), + [anon_sym_BSLASHAcrshort] = ACTIONS(12136), + [anon_sym_BSLASHACRshort] = ACTIONS(12136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12136), + [anon_sym_BSLASHacrlong] = ACTIONS(12136), + [anon_sym_BSLASHAcrlong] = ACTIONS(12136), + [anon_sym_BSLASHACRlong] = ACTIONS(12136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12136), + [anon_sym_BSLASHacrfull] = ACTIONS(12136), + [anon_sym_BSLASHAcrfull] = ACTIONS(12136), + [anon_sym_BSLASHACRfull] = ACTIONS(12136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12136), + [anon_sym_BSLASHacs] = ACTIONS(12136), + [anon_sym_BSLASHAcs] = ACTIONS(12136), + [anon_sym_BSLASHacsp] = ACTIONS(12136), + [anon_sym_BSLASHAcsp] = ACTIONS(12136), + [anon_sym_BSLASHacl] = ACTIONS(12136), + [anon_sym_BSLASHAcl] = ACTIONS(12136), + [anon_sym_BSLASHaclp] = ACTIONS(12136), + [anon_sym_BSLASHAclp] = ACTIONS(12136), + [anon_sym_BSLASHacf] = ACTIONS(12136), + [anon_sym_BSLASHAcf] = ACTIONS(12136), + [anon_sym_BSLASHacfp] = ACTIONS(12136), + [anon_sym_BSLASHAcfp] = ACTIONS(12136), + [anon_sym_BSLASHac] = ACTIONS(12136), + [anon_sym_BSLASHAc] = ACTIONS(12136), + [anon_sym_BSLASHacp] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12136), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12136), + [anon_sym_BSLASHcolor] = ACTIONS(12136), + [anon_sym_BSLASHcolorbox] = ACTIONS(12136), + [anon_sym_BSLASHtextcolor] = ACTIONS(12136), + [anon_sym_BSLASHpagecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12136), + }, + [1859] = { + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [1860] = { + [sym_generic_command_name] = ACTIONS(12128), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12128), + [anon_sym_LBRACK] = ACTIONS(12126), + [anon_sym_RBRACK] = ACTIONS(12126), + [anon_sym_LBRACE] = ACTIONS(12126), + [anon_sym_RBRACE] = ACTIONS(12126), + [anon_sym_LPAREN] = ACTIONS(12126), + [anon_sym_COMMA] = ACTIONS(12126), + [anon_sym_EQ] = ACTIONS(12126), + [sym_word] = ACTIONS(12126), + [sym_param] = ACTIONS(12126), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12126), + [anon_sym_DOLLAR] = ACTIONS(12128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12126), + [anon_sym_BSLASHbegin] = ACTIONS(12128), + [anon_sym_BSLASHcaption] = ACTIONS(12128), + [anon_sym_BSLASHcite] = ACTIONS(12128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCite] = ACTIONS(12128), + [anon_sym_BSLASHnocite] = ACTIONS(12128), + [anon_sym_BSLASHcitet] = ACTIONS(12128), + [anon_sym_BSLASHcitep] = ACTIONS(12128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteauthor] = ACTIONS(12128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitetitle] = ACTIONS(12128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteyear] = ACTIONS(12128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitedate] = ACTIONS(12128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteurl] = ACTIONS(12128), + [anon_sym_BSLASHfullcite] = ACTIONS(12128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12128), + [anon_sym_BSLASHcitealt] = ACTIONS(12128), + [anon_sym_BSLASHcitealp] = ACTIONS(12128), + [anon_sym_BSLASHcitetext] = ACTIONS(12128), + [anon_sym_BSLASHparencite] = ACTIONS(12128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHParencite] = ACTIONS(12128), + [anon_sym_BSLASHfootcite] = ACTIONS(12128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12128), + [anon_sym_BSLASHtextcite] = ACTIONS(12128), + [anon_sym_BSLASHTextcite] = ACTIONS(12128), + [anon_sym_BSLASHsmartcite] = ACTIONS(12128), + [anon_sym_BSLASHSmartcite] = ACTIONS(12128), + [anon_sym_BSLASHsupercite] = ACTIONS(12128), + [anon_sym_BSLASHautocite] = ACTIONS(12128), + [anon_sym_BSLASHAutocite] = ACTIONS(12128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHvolcite] = ACTIONS(12128), + [anon_sym_BSLASHVolcite] = ACTIONS(12128), + [anon_sym_BSLASHpvolcite] = ACTIONS(12128), + [anon_sym_BSLASHPvolcite] = ACTIONS(12128), + [anon_sym_BSLASHfvolcite] = ACTIONS(12128), + [anon_sym_BSLASHftvolcite] = ACTIONS(12128), + [anon_sym_BSLASHsvolcite] = ACTIONS(12128), + [anon_sym_BSLASHSvolcite] = ACTIONS(12128), + [anon_sym_BSLASHtvolcite] = ACTIONS(12128), + [anon_sym_BSLASHTvolcite] = ACTIONS(12128), + [anon_sym_BSLASHavolcite] = ACTIONS(12128), + [anon_sym_BSLASHAvolcite] = ACTIONS(12128), + [anon_sym_BSLASHnotecite] = ACTIONS(12128), + [anon_sym_BSLASHpnotecite] = ACTIONS(12128), + [anon_sym_BSLASHPnotecite] = ACTIONS(12128), + [anon_sym_BSLASHfnotecite] = ACTIONS(12128), + [anon_sym_BSLASHusepackage] = ACTIONS(12128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12128), + [anon_sym_BSLASHinclude] = ACTIONS(12128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12128), + [anon_sym_BSLASHinput] = ACTIONS(12128), + [anon_sym_BSLASHsubfile] = ACTIONS(12128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12128), + [anon_sym_BSLASHbibliography] = ACTIONS(12128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12128), + [anon_sym_BSLASHincludesvg] = ACTIONS(12128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12128), + [anon_sym_BSLASHimport] = ACTIONS(12128), + [anon_sym_BSLASHsubimport] = ACTIONS(12128), + [anon_sym_BSLASHinputfrom] = ACTIONS(12128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12128), + [anon_sym_BSLASHincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHlabel] = ACTIONS(12128), + [anon_sym_BSLASHref] = ACTIONS(12128), + [anon_sym_BSLASHvref] = ACTIONS(12128), + [anon_sym_BSLASHVref] = ACTIONS(12128), + [anon_sym_BSLASHautoref] = ACTIONS(12128), + [anon_sym_BSLASHpageref] = ACTIONS(12128), + [anon_sym_BSLASHcref] = ACTIONS(12128), + [anon_sym_BSLASHCref] = ACTIONS(12128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnameCref] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHlabelcref] = ACTIONS(12128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12128), + [anon_sym_BSLASHeqref] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange] = ACTIONS(12128), + [anon_sym_BSLASHCrefrange] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewlabel] = ACTIONS(12128), + [anon_sym_BSLASHnewcommand] = ACTIONS(12128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12128), + [anon_sym_BSLASHgls] = ACTIONS(12128), + [anon_sym_BSLASHGls] = ACTIONS(12128), + [anon_sym_BSLASHGLS] = ACTIONS(12128), + [anon_sym_BSLASHglspl] = ACTIONS(12128), + [anon_sym_BSLASHGlspl] = ACTIONS(12128), + [anon_sym_BSLASHGLSpl] = ACTIONS(12128), + [anon_sym_BSLASHglsdisp] = ACTIONS(12128), + [anon_sym_BSLASHglslink] = ACTIONS(12128), + [anon_sym_BSLASHglstext] = ACTIONS(12128), + [anon_sym_BSLASHGlstext] = ACTIONS(12128), + [anon_sym_BSLASHGLStext] = ACTIONS(12128), + [anon_sym_BSLASHglsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12128), + [anon_sym_BSLASHglsplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSplural] = ACTIONS(12128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHglsname] = ACTIONS(12128), + [anon_sym_BSLASHGlsname] = ACTIONS(12128), + [anon_sym_BSLASHGLSname] = ACTIONS(12128), + [anon_sym_BSLASHglssymbol] = ACTIONS(12128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12128), + [anon_sym_BSLASHglsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12128), + [anon_sym_BSLASHglsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12128), + [anon_sym_BSLASHglsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12128), + [anon_sym_BSLASHglsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12128), + [anon_sym_BSLASHglsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12128), + [anon_sym_BSLASHnewacronym] = ACTIONS(12128), + [anon_sym_BSLASHacrshort] = ACTIONS(12128), + [anon_sym_BSLASHAcrshort] = ACTIONS(12128), + [anon_sym_BSLASHACRshort] = ACTIONS(12128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12128), + [anon_sym_BSLASHacrlong] = ACTIONS(12128), + [anon_sym_BSLASHAcrlong] = ACTIONS(12128), + [anon_sym_BSLASHACRlong] = ACTIONS(12128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12128), + [anon_sym_BSLASHacrfull] = ACTIONS(12128), + [anon_sym_BSLASHAcrfull] = ACTIONS(12128), + [anon_sym_BSLASHACRfull] = ACTIONS(12128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12128), + [anon_sym_BSLASHacs] = ACTIONS(12128), + [anon_sym_BSLASHAcs] = ACTIONS(12128), + [anon_sym_BSLASHacsp] = ACTIONS(12128), + [anon_sym_BSLASHAcsp] = ACTIONS(12128), + [anon_sym_BSLASHacl] = ACTIONS(12128), + [anon_sym_BSLASHAcl] = ACTIONS(12128), + [anon_sym_BSLASHaclp] = ACTIONS(12128), + [anon_sym_BSLASHAclp] = ACTIONS(12128), + [anon_sym_BSLASHacf] = ACTIONS(12128), + [anon_sym_BSLASHAcf] = ACTIONS(12128), + [anon_sym_BSLASHacfp] = ACTIONS(12128), + [anon_sym_BSLASHAcfp] = ACTIONS(12128), + [anon_sym_BSLASHac] = ACTIONS(12128), + [anon_sym_BSLASHAc] = ACTIONS(12128), + [anon_sym_BSLASHacp] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12128), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12128), + [anon_sym_BSLASHcolor] = ACTIONS(12128), + [anon_sym_BSLASHcolorbox] = ACTIONS(12128), + [anon_sym_BSLASHtextcolor] = ACTIONS(12128), + [anon_sym_BSLASHpagecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12128), + }, + [1861] = { + [sym_generic_command_name] = ACTIONS(12185), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12185), + [anon_sym_LBRACK] = ACTIONS(12183), + [anon_sym_RBRACK] = ACTIONS(12183), + [anon_sym_LBRACE] = ACTIONS(12183), + [anon_sym_RBRACE] = ACTIONS(12183), + [anon_sym_LPAREN] = ACTIONS(12183), + [anon_sym_COMMA] = ACTIONS(12183), + [anon_sym_EQ] = ACTIONS(12183), + [sym_word] = ACTIONS(12183), + [sym_param] = ACTIONS(12183), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12183), + [anon_sym_DOLLAR] = ACTIONS(12185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12183), + [anon_sym_BSLASHbegin] = ACTIONS(12185), + [anon_sym_BSLASHcaption] = ACTIONS(12185), + [anon_sym_BSLASHcite] = ACTIONS(12185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCite] = ACTIONS(12185), + [anon_sym_BSLASHnocite] = ACTIONS(12185), + [anon_sym_BSLASHcitet] = ACTIONS(12185), + [anon_sym_BSLASHcitep] = ACTIONS(12185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteauthor] = ACTIONS(12185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitetitle] = ACTIONS(12185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteyear] = ACTIONS(12185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitedate] = ACTIONS(12185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteurl] = ACTIONS(12185), + [anon_sym_BSLASHfullcite] = ACTIONS(12185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12185), + [anon_sym_BSLASHcitealt] = ACTIONS(12185), + [anon_sym_BSLASHcitealp] = ACTIONS(12185), + [anon_sym_BSLASHcitetext] = ACTIONS(12185), + [anon_sym_BSLASHparencite] = ACTIONS(12185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHParencite] = ACTIONS(12185), + [anon_sym_BSLASHfootcite] = ACTIONS(12185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12185), + [anon_sym_BSLASHtextcite] = ACTIONS(12185), + [anon_sym_BSLASHTextcite] = ACTIONS(12185), + [anon_sym_BSLASHsmartcite] = ACTIONS(12185), + [anon_sym_BSLASHSmartcite] = ACTIONS(12185), + [anon_sym_BSLASHsupercite] = ACTIONS(12185), + [anon_sym_BSLASHautocite] = ACTIONS(12185), + [anon_sym_BSLASHAutocite] = ACTIONS(12185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHvolcite] = ACTIONS(12185), + [anon_sym_BSLASHVolcite] = ACTIONS(12185), + [anon_sym_BSLASHpvolcite] = ACTIONS(12185), + [anon_sym_BSLASHPvolcite] = ACTIONS(12185), + [anon_sym_BSLASHfvolcite] = ACTIONS(12185), + [anon_sym_BSLASHftvolcite] = ACTIONS(12185), + [anon_sym_BSLASHsvolcite] = ACTIONS(12185), + [anon_sym_BSLASHSvolcite] = ACTIONS(12185), + [anon_sym_BSLASHtvolcite] = ACTIONS(12185), + [anon_sym_BSLASHTvolcite] = ACTIONS(12185), + [anon_sym_BSLASHavolcite] = ACTIONS(12185), + [anon_sym_BSLASHAvolcite] = ACTIONS(12185), + [anon_sym_BSLASHnotecite] = ACTIONS(12185), + [anon_sym_BSLASHpnotecite] = ACTIONS(12185), + [anon_sym_BSLASHPnotecite] = ACTIONS(12185), + [anon_sym_BSLASHfnotecite] = ACTIONS(12185), + [anon_sym_BSLASHusepackage] = ACTIONS(12185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12185), + [anon_sym_BSLASHinclude] = ACTIONS(12185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12185), + [anon_sym_BSLASHinput] = ACTIONS(12185), + [anon_sym_BSLASHsubfile] = ACTIONS(12185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12185), + [anon_sym_BSLASHbibliography] = ACTIONS(12185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12185), + [anon_sym_BSLASHincludesvg] = ACTIONS(12185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12185), + [anon_sym_BSLASHimport] = ACTIONS(12185), + [anon_sym_BSLASHsubimport] = ACTIONS(12185), + [anon_sym_BSLASHinputfrom] = ACTIONS(12185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12185), + [anon_sym_BSLASHincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHlabel] = ACTIONS(12185), + [anon_sym_BSLASHref] = ACTIONS(12185), + [anon_sym_BSLASHvref] = ACTIONS(12185), + [anon_sym_BSLASHVref] = ACTIONS(12185), + [anon_sym_BSLASHautoref] = ACTIONS(12185), + [anon_sym_BSLASHpageref] = ACTIONS(12185), + [anon_sym_BSLASHcref] = ACTIONS(12185), + [anon_sym_BSLASHCref] = ACTIONS(12185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnameCref] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHlabelcref] = ACTIONS(12185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12185), + [anon_sym_BSLASHeqref] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange] = ACTIONS(12185), + [anon_sym_BSLASHCrefrange] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewlabel] = ACTIONS(12185), + [anon_sym_BSLASHnewcommand] = ACTIONS(12185), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12185), + [anon_sym_BSLASHgls] = ACTIONS(12185), + [anon_sym_BSLASHGls] = ACTIONS(12185), + [anon_sym_BSLASHGLS] = ACTIONS(12185), + [anon_sym_BSLASHglspl] = ACTIONS(12185), + [anon_sym_BSLASHGlspl] = ACTIONS(12185), + [anon_sym_BSLASHGLSpl] = ACTIONS(12185), + [anon_sym_BSLASHglsdisp] = ACTIONS(12185), + [anon_sym_BSLASHglslink] = ACTIONS(12185), + [anon_sym_BSLASHglstext] = ACTIONS(12185), + [anon_sym_BSLASHGlstext] = ACTIONS(12185), + [anon_sym_BSLASHGLStext] = ACTIONS(12185), + [anon_sym_BSLASHglsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12185), + [anon_sym_BSLASHglsplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSplural] = ACTIONS(12185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHglsname] = ACTIONS(12185), + [anon_sym_BSLASHGlsname] = ACTIONS(12185), + [anon_sym_BSLASHGLSname] = ACTIONS(12185), + [anon_sym_BSLASHglssymbol] = ACTIONS(12185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12185), + [anon_sym_BSLASHglsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12185), + [anon_sym_BSLASHglsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12185), + [anon_sym_BSLASHglsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12185), + [anon_sym_BSLASHglsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12185), + [anon_sym_BSLASHglsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12185), + [anon_sym_BSLASHnewacronym] = ACTIONS(12185), + [anon_sym_BSLASHacrshort] = ACTIONS(12185), + [anon_sym_BSLASHAcrshort] = ACTIONS(12185), + [anon_sym_BSLASHACRshort] = ACTIONS(12185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12185), + [anon_sym_BSLASHacrlong] = ACTIONS(12185), + [anon_sym_BSLASHAcrlong] = ACTIONS(12185), + [anon_sym_BSLASHACRlong] = ACTIONS(12185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12185), + [anon_sym_BSLASHacrfull] = ACTIONS(12185), + [anon_sym_BSLASHAcrfull] = ACTIONS(12185), + [anon_sym_BSLASHACRfull] = ACTIONS(12185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12185), + [anon_sym_BSLASHacs] = ACTIONS(12185), + [anon_sym_BSLASHAcs] = ACTIONS(12185), + [anon_sym_BSLASHacsp] = ACTIONS(12185), + [anon_sym_BSLASHAcsp] = ACTIONS(12185), + [anon_sym_BSLASHacl] = ACTIONS(12185), + [anon_sym_BSLASHAcl] = ACTIONS(12185), + [anon_sym_BSLASHaclp] = ACTIONS(12185), + [anon_sym_BSLASHAclp] = ACTIONS(12185), + [anon_sym_BSLASHacf] = ACTIONS(12185), + [anon_sym_BSLASHAcf] = ACTIONS(12185), + [anon_sym_BSLASHacfp] = ACTIONS(12185), + [anon_sym_BSLASHAcfp] = ACTIONS(12185), + [anon_sym_BSLASHac] = ACTIONS(12185), + [anon_sym_BSLASHAc] = ACTIONS(12185), + [anon_sym_BSLASHacp] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12185), + [anon_sym_BSLASHcolor] = ACTIONS(12185), + [anon_sym_BSLASHcolorbox] = ACTIONS(12185), + [anon_sym_BSLASHtextcolor] = ACTIONS(12185), + [anon_sym_BSLASHpagecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12185), + }, + [1862] = { + [sym_generic_command_name] = ACTIONS(12124), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12124), + [anon_sym_LBRACK] = ACTIONS(12122), + [anon_sym_RBRACK] = ACTIONS(12122), + [anon_sym_LBRACE] = ACTIONS(12122), + [anon_sym_RBRACE] = ACTIONS(12122), + [anon_sym_LPAREN] = ACTIONS(12122), + [anon_sym_COMMA] = ACTIONS(12122), + [anon_sym_EQ] = ACTIONS(12122), + [sym_word] = ACTIONS(12122), + [sym_param] = ACTIONS(12122), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12122), + [anon_sym_DOLLAR] = ACTIONS(12124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12122), + [anon_sym_BSLASHbegin] = ACTIONS(12124), + [anon_sym_BSLASHcaption] = ACTIONS(12124), + [anon_sym_BSLASHcite] = ACTIONS(12124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCite] = ACTIONS(12124), + [anon_sym_BSLASHnocite] = ACTIONS(12124), + [anon_sym_BSLASHcitet] = ACTIONS(12124), + [anon_sym_BSLASHcitep] = ACTIONS(12124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteauthor] = ACTIONS(12124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitetitle] = ACTIONS(12124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteyear] = ACTIONS(12124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitedate] = ACTIONS(12124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteurl] = ACTIONS(12124), + [anon_sym_BSLASHfullcite] = ACTIONS(12124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12124), + [anon_sym_BSLASHcitealt] = ACTIONS(12124), + [anon_sym_BSLASHcitealp] = ACTIONS(12124), + [anon_sym_BSLASHcitetext] = ACTIONS(12124), + [anon_sym_BSLASHparencite] = ACTIONS(12124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHParencite] = ACTIONS(12124), + [anon_sym_BSLASHfootcite] = ACTIONS(12124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12124), + [anon_sym_BSLASHtextcite] = ACTIONS(12124), + [anon_sym_BSLASHTextcite] = ACTIONS(12124), + [anon_sym_BSLASHsmartcite] = ACTIONS(12124), + [anon_sym_BSLASHSmartcite] = ACTIONS(12124), + [anon_sym_BSLASHsupercite] = ACTIONS(12124), + [anon_sym_BSLASHautocite] = ACTIONS(12124), + [anon_sym_BSLASHAutocite] = ACTIONS(12124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHvolcite] = ACTIONS(12124), + [anon_sym_BSLASHVolcite] = ACTIONS(12124), + [anon_sym_BSLASHpvolcite] = ACTIONS(12124), + [anon_sym_BSLASHPvolcite] = ACTIONS(12124), + [anon_sym_BSLASHfvolcite] = ACTIONS(12124), + [anon_sym_BSLASHftvolcite] = ACTIONS(12124), + [anon_sym_BSLASHsvolcite] = ACTIONS(12124), + [anon_sym_BSLASHSvolcite] = ACTIONS(12124), + [anon_sym_BSLASHtvolcite] = ACTIONS(12124), + [anon_sym_BSLASHTvolcite] = ACTIONS(12124), + [anon_sym_BSLASHavolcite] = ACTIONS(12124), + [anon_sym_BSLASHAvolcite] = ACTIONS(12124), + [anon_sym_BSLASHnotecite] = ACTIONS(12124), + [anon_sym_BSLASHpnotecite] = ACTIONS(12124), + [anon_sym_BSLASHPnotecite] = ACTIONS(12124), + [anon_sym_BSLASHfnotecite] = ACTIONS(12124), + [anon_sym_BSLASHusepackage] = ACTIONS(12124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12124), + [anon_sym_BSLASHinclude] = ACTIONS(12124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12124), + [anon_sym_BSLASHinput] = ACTIONS(12124), + [anon_sym_BSLASHsubfile] = ACTIONS(12124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12124), + [anon_sym_BSLASHbibliography] = ACTIONS(12124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12124), + [anon_sym_BSLASHincludesvg] = ACTIONS(12124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12124), + [anon_sym_BSLASHimport] = ACTIONS(12124), + [anon_sym_BSLASHsubimport] = ACTIONS(12124), + [anon_sym_BSLASHinputfrom] = ACTIONS(12124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12124), + [anon_sym_BSLASHincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHlabel] = ACTIONS(12124), + [anon_sym_BSLASHref] = ACTIONS(12124), + [anon_sym_BSLASHvref] = ACTIONS(12124), + [anon_sym_BSLASHVref] = ACTIONS(12124), + [anon_sym_BSLASHautoref] = ACTIONS(12124), + [anon_sym_BSLASHpageref] = ACTIONS(12124), + [anon_sym_BSLASHcref] = ACTIONS(12124), + [anon_sym_BSLASHCref] = ACTIONS(12124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnameCref] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHlabelcref] = ACTIONS(12124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12124), + [anon_sym_BSLASHeqref] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange] = ACTIONS(12124), + [anon_sym_BSLASHCrefrange] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewlabel] = ACTIONS(12124), + [anon_sym_BSLASHnewcommand] = ACTIONS(12124), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12124), + [anon_sym_BSLASHgls] = ACTIONS(12124), + [anon_sym_BSLASHGls] = ACTIONS(12124), + [anon_sym_BSLASHGLS] = ACTIONS(12124), + [anon_sym_BSLASHglspl] = ACTIONS(12124), + [anon_sym_BSLASHGlspl] = ACTIONS(12124), + [anon_sym_BSLASHGLSpl] = ACTIONS(12124), + [anon_sym_BSLASHglsdisp] = ACTIONS(12124), + [anon_sym_BSLASHglslink] = ACTIONS(12124), + [anon_sym_BSLASHglstext] = ACTIONS(12124), + [anon_sym_BSLASHGlstext] = ACTIONS(12124), + [anon_sym_BSLASHGLStext] = ACTIONS(12124), + [anon_sym_BSLASHglsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12124), + [anon_sym_BSLASHglsplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSplural] = ACTIONS(12124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHglsname] = ACTIONS(12124), + [anon_sym_BSLASHGlsname] = ACTIONS(12124), + [anon_sym_BSLASHGLSname] = ACTIONS(12124), + [anon_sym_BSLASHglssymbol] = ACTIONS(12124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12124), + [anon_sym_BSLASHglsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12124), + [anon_sym_BSLASHglsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12124), + [anon_sym_BSLASHglsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12124), + [anon_sym_BSLASHglsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12124), + [anon_sym_BSLASHglsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12124), + [anon_sym_BSLASHnewacronym] = ACTIONS(12124), + [anon_sym_BSLASHacrshort] = ACTIONS(12124), + [anon_sym_BSLASHAcrshort] = ACTIONS(12124), + [anon_sym_BSLASHACRshort] = ACTIONS(12124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12124), + [anon_sym_BSLASHacrlong] = ACTIONS(12124), + [anon_sym_BSLASHAcrlong] = ACTIONS(12124), + [anon_sym_BSLASHACRlong] = ACTIONS(12124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12124), + [anon_sym_BSLASHacrfull] = ACTIONS(12124), + [anon_sym_BSLASHAcrfull] = ACTIONS(12124), + [anon_sym_BSLASHACRfull] = ACTIONS(12124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12124), + [anon_sym_BSLASHacs] = ACTIONS(12124), + [anon_sym_BSLASHAcs] = ACTIONS(12124), + [anon_sym_BSLASHacsp] = ACTIONS(12124), + [anon_sym_BSLASHAcsp] = ACTIONS(12124), + [anon_sym_BSLASHacl] = ACTIONS(12124), + [anon_sym_BSLASHAcl] = ACTIONS(12124), + [anon_sym_BSLASHaclp] = ACTIONS(12124), + [anon_sym_BSLASHAclp] = ACTIONS(12124), + [anon_sym_BSLASHacf] = ACTIONS(12124), + [anon_sym_BSLASHAcf] = ACTIONS(12124), + [anon_sym_BSLASHacfp] = ACTIONS(12124), + [anon_sym_BSLASHAcfp] = ACTIONS(12124), + [anon_sym_BSLASHac] = ACTIONS(12124), + [anon_sym_BSLASHAc] = ACTIONS(12124), + [anon_sym_BSLASHacp] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12124), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12124), + [anon_sym_BSLASHcolor] = ACTIONS(12124), + [anon_sym_BSLASHcolorbox] = ACTIONS(12124), + [anon_sym_BSLASHtextcolor] = ACTIONS(12124), + [anon_sym_BSLASHpagecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12124), + }, + [1863] = { + [sym_generic_command_name] = ACTIONS(12485), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12485), + [anon_sym_LBRACK] = ACTIONS(12483), + [anon_sym_RBRACK] = ACTIONS(12483), + [anon_sym_LBRACE] = ACTIONS(12483), + [anon_sym_RBRACE] = ACTIONS(12483), + [anon_sym_LPAREN] = ACTIONS(12483), + [anon_sym_COMMA] = ACTIONS(12483), + [anon_sym_EQ] = ACTIONS(12483), + [sym_word] = ACTIONS(12483), + [sym_param] = ACTIONS(12483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12483), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12483), + [anon_sym_DOLLAR] = ACTIONS(12485), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12483), + [anon_sym_BSLASHbegin] = ACTIONS(12485), + [anon_sym_BSLASHcaption] = ACTIONS(12485), + [anon_sym_BSLASHcite] = ACTIONS(12485), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCite] = ACTIONS(12485), + [anon_sym_BSLASHnocite] = ACTIONS(12485), + [anon_sym_BSLASHcitet] = ACTIONS(12485), + [anon_sym_BSLASHcitep] = ACTIONS(12485), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteauthor] = ACTIONS(12485), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12485), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitetitle] = ACTIONS(12485), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteyear] = ACTIONS(12485), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitedate] = ACTIONS(12485), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteurl] = ACTIONS(12485), + [anon_sym_BSLASHfullcite] = ACTIONS(12485), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12485), + [anon_sym_BSLASHcitealt] = ACTIONS(12485), + [anon_sym_BSLASHcitealp] = ACTIONS(12485), + [anon_sym_BSLASHcitetext] = ACTIONS(12485), + [anon_sym_BSLASHparencite] = ACTIONS(12485), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHParencite] = ACTIONS(12485), + [anon_sym_BSLASHfootcite] = ACTIONS(12485), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12485), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12485), + [anon_sym_BSLASHtextcite] = ACTIONS(12485), + [anon_sym_BSLASHTextcite] = ACTIONS(12485), + [anon_sym_BSLASHsmartcite] = ACTIONS(12485), + [anon_sym_BSLASHSmartcite] = ACTIONS(12485), + [anon_sym_BSLASHsupercite] = ACTIONS(12485), + [anon_sym_BSLASHautocite] = ACTIONS(12485), + [anon_sym_BSLASHAutocite] = ACTIONS(12485), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHvolcite] = ACTIONS(12485), + [anon_sym_BSLASHVolcite] = ACTIONS(12485), + [anon_sym_BSLASHpvolcite] = ACTIONS(12485), + [anon_sym_BSLASHPvolcite] = ACTIONS(12485), + [anon_sym_BSLASHfvolcite] = ACTIONS(12485), + [anon_sym_BSLASHftvolcite] = ACTIONS(12485), + [anon_sym_BSLASHsvolcite] = ACTIONS(12485), + [anon_sym_BSLASHSvolcite] = ACTIONS(12485), + [anon_sym_BSLASHtvolcite] = ACTIONS(12485), + [anon_sym_BSLASHTvolcite] = ACTIONS(12485), + [anon_sym_BSLASHavolcite] = ACTIONS(12485), + [anon_sym_BSLASHAvolcite] = ACTIONS(12485), + [anon_sym_BSLASHnotecite] = ACTIONS(12485), + [anon_sym_BSLASHpnotecite] = ACTIONS(12485), + [anon_sym_BSLASHPnotecite] = ACTIONS(12485), + [anon_sym_BSLASHfnotecite] = ACTIONS(12485), + [anon_sym_BSLASHusepackage] = ACTIONS(12485), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12485), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12485), + [anon_sym_BSLASHinclude] = ACTIONS(12485), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12485), + [anon_sym_BSLASHinput] = ACTIONS(12485), + [anon_sym_BSLASHsubfile] = ACTIONS(12485), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12485), + [anon_sym_BSLASHbibliography] = ACTIONS(12485), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12485), + [anon_sym_BSLASHincludesvg] = ACTIONS(12485), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12485), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12485), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12485), + [anon_sym_BSLASHimport] = ACTIONS(12485), + [anon_sym_BSLASHsubimport] = ACTIONS(12485), + [anon_sym_BSLASHinputfrom] = ACTIONS(12485), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12485), + [anon_sym_BSLASHincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHlabel] = ACTIONS(12485), + [anon_sym_BSLASHref] = ACTIONS(12485), + [anon_sym_BSLASHvref] = ACTIONS(12485), + [anon_sym_BSLASHVref] = ACTIONS(12485), + [anon_sym_BSLASHautoref] = ACTIONS(12485), + [anon_sym_BSLASHpageref] = ACTIONS(12485), + [anon_sym_BSLASHcref] = ACTIONS(12485), + [anon_sym_BSLASHCref] = ACTIONS(12485), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnameCref] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHlabelcref] = ACTIONS(12485), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12485), + [anon_sym_BSLASHeqref] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange] = ACTIONS(12485), + [anon_sym_BSLASHCrefrange] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewlabel] = ACTIONS(12485), + [anon_sym_BSLASHnewcommand] = ACTIONS(12485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12485), + [anon_sym_BSLASHgls] = ACTIONS(12485), + [anon_sym_BSLASHGls] = ACTIONS(12485), + [anon_sym_BSLASHGLS] = ACTIONS(12485), + [anon_sym_BSLASHglspl] = ACTIONS(12485), + [anon_sym_BSLASHGlspl] = ACTIONS(12485), + [anon_sym_BSLASHGLSpl] = ACTIONS(12485), + [anon_sym_BSLASHglsdisp] = ACTIONS(12485), + [anon_sym_BSLASHglslink] = ACTIONS(12485), + [anon_sym_BSLASHglstext] = ACTIONS(12485), + [anon_sym_BSLASHGlstext] = ACTIONS(12485), + [anon_sym_BSLASHGLStext] = ACTIONS(12485), + [anon_sym_BSLASHglsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12485), + [anon_sym_BSLASHglsplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSplural] = ACTIONS(12485), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHglsname] = ACTIONS(12485), + [anon_sym_BSLASHGlsname] = ACTIONS(12485), + [anon_sym_BSLASHGLSname] = ACTIONS(12485), + [anon_sym_BSLASHglssymbol] = ACTIONS(12485), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12485), + [anon_sym_BSLASHglsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12485), + [anon_sym_BSLASHglsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12485), + [anon_sym_BSLASHglsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12485), + [anon_sym_BSLASHglsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12485), + [anon_sym_BSLASHglsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12485), + [anon_sym_BSLASHnewacronym] = ACTIONS(12485), + [anon_sym_BSLASHacrshort] = ACTIONS(12485), + [anon_sym_BSLASHAcrshort] = ACTIONS(12485), + [anon_sym_BSLASHACRshort] = ACTIONS(12485), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12485), + [anon_sym_BSLASHacrlong] = ACTIONS(12485), + [anon_sym_BSLASHAcrlong] = ACTIONS(12485), + [anon_sym_BSLASHACRlong] = ACTIONS(12485), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12485), + [anon_sym_BSLASHacrfull] = ACTIONS(12485), + [anon_sym_BSLASHAcrfull] = ACTIONS(12485), + [anon_sym_BSLASHACRfull] = ACTIONS(12485), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12485), + [anon_sym_BSLASHacs] = ACTIONS(12485), + [anon_sym_BSLASHAcs] = ACTIONS(12485), + [anon_sym_BSLASHacsp] = ACTIONS(12485), + [anon_sym_BSLASHAcsp] = ACTIONS(12485), + [anon_sym_BSLASHacl] = ACTIONS(12485), + [anon_sym_BSLASHAcl] = ACTIONS(12485), + [anon_sym_BSLASHaclp] = ACTIONS(12485), + [anon_sym_BSLASHAclp] = ACTIONS(12485), + [anon_sym_BSLASHacf] = ACTIONS(12485), + [anon_sym_BSLASHAcf] = ACTIONS(12485), + [anon_sym_BSLASHacfp] = ACTIONS(12485), + [anon_sym_BSLASHAcfp] = ACTIONS(12485), + [anon_sym_BSLASHac] = ACTIONS(12485), + [anon_sym_BSLASHAc] = ACTIONS(12485), + [anon_sym_BSLASHacp] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12485), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12485), + [anon_sym_BSLASHcolor] = ACTIONS(12485), + [anon_sym_BSLASHcolorbox] = ACTIONS(12485), + [anon_sym_BSLASHtextcolor] = ACTIONS(12485), + [anon_sym_BSLASHpagecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12485), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12485), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12485), + }, + [1864] = { + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(117), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [1865] = { + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(111), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [1866] = { + [sym_generic_command_name] = ACTIONS(12323), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12323), + [anon_sym_LBRACK] = ACTIONS(12321), + [anon_sym_RBRACK] = ACTIONS(12321), + [anon_sym_LBRACE] = ACTIONS(12321), + [anon_sym_RBRACE] = ACTIONS(12321), + [anon_sym_LPAREN] = ACTIONS(12321), + [anon_sym_COMMA] = ACTIONS(12321), + [anon_sym_EQ] = ACTIONS(12321), + [sym_word] = ACTIONS(12321), + [sym_param] = ACTIONS(12321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12321), + [anon_sym_DOLLAR] = ACTIONS(12323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12321), + [anon_sym_BSLASHbegin] = ACTIONS(12323), + [anon_sym_BSLASHcaption] = ACTIONS(12323), + [anon_sym_BSLASHcite] = ACTIONS(12323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCite] = ACTIONS(12323), + [anon_sym_BSLASHnocite] = ACTIONS(12323), + [anon_sym_BSLASHcitet] = ACTIONS(12323), + [anon_sym_BSLASHcitep] = ACTIONS(12323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteauthor] = ACTIONS(12323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitetitle] = ACTIONS(12323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteyear] = ACTIONS(12323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitedate] = ACTIONS(12323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteurl] = ACTIONS(12323), + [anon_sym_BSLASHfullcite] = ACTIONS(12323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12323), + [anon_sym_BSLASHcitealt] = ACTIONS(12323), + [anon_sym_BSLASHcitealp] = ACTIONS(12323), + [anon_sym_BSLASHcitetext] = ACTIONS(12323), + [anon_sym_BSLASHparencite] = ACTIONS(12323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHParencite] = ACTIONS(12323), + [anon_sym_BSLASHfootcite] = ACTIONS(12323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12323), + [anon_sym_BSLASHtextcite] = ACTIONS(12323), + [anon_sym_BSLASHTextcite] = ACTIONS(12323), + [anon_sym_BSLASHsmartcite] = ACTIONS(12323), + [anon_sym_BSLASHSmartcite] = ACTIONS(12323), + [anon_sym_BSLASHsupercite] = ACTIONS(12323), + [anon_sym_BSLASHautocite] = ACTIONS(12323), + [anon_sym_BSLASHAutocite] = ACTIONS(12323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHvolcite] = ACTIONS(12323), + [anon_sym_BSLASHVolcite] = ACTIONS(12323), + [anon_sym_BSLASHpvolcite] = ACTIONS(12323), + [anon_sym_BSLASHPvolcite] = ACTIONS(12323), + [anon_sym_BSLASHfvolcite] = ACTIONS(12323), + [anon_sym_BSLASHftvolcite] = ACTIONS(12323), + [anon_sym_BSLASHsvolcite] = ACTIONS(12323), + [anon_sym_BSLASHSvolcite] = ACTIONS(12323), + [anon_sym_BSLASHtvolcite] = ACTIONS(12323), + [anon_sym_BSLASHTvolcite] = ACTIONS(12323), + [anon_sym_BSLASHavolcite] = ACTIONS(12323), + [anon_sym_BSLASHAvolcite] = ACTIONS(12323), + [anon_sym_BSLASHnotecite] = ACTIONS(12323), + [anon_sym_BSLASHpnotecite] = ACTIONS(12323), + [anon_sym_BSLASHPnotecite] = ACTIONS(12323), + [anon_sym_BSLASHfnotecite] = ACTIONS(12323), + [anon_sym_BSLASHusepackage] = ACTIONS(12323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12323), + [anon_sym_BSLASHinclude] = ACTIONS(12323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12323), + [anon_sym_BSLASHinput] = ACTIONS(12323), + [anon_sym_BSLASHsubfile] = ACTIONS(12323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12323), + [anon_sym_BSLASHbibliography] = ACTIONS(12323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12323), + [anon_sym_BSLASHincludesvg] = ACTIONS(12323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12323), + [anon_sym_BSLASHimport] = ACTIONS(12323), + [anon_sym_BSLASHsubimport] = ACTIONS(12323), + [anon_sym_BSLASHinputfrom] = ACTIONS(12323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12323), + [anon_sym_BSLASHincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHlabel] = ACTIONS(12323), + [anon_sym_BSLASHref] = ACTIONS(12323), + [anon_sym_BSLASHvref] = ACTIONS(12323), + [anon_sym_BSLASHVref] = ACTIONS(12323), + [anon_sym_BSLASHautoref] = ACTIONS(12323), + [anon_sym_BSLASHpageref] = ACTIONS(12323), + [anon_sym_BSLASHcref] = ACTIONS(12323), + [anon_sym_BSLASHCref] = ACTIONS(12323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnameCref] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHlabelcref] = ACTIONS(12323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12323), + [anon_sym_BSLASHeqref] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange] = ACTIONS(12323), + [anon_sym_BSLASHCrefrange] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewlabel] = ACTIONS(12323), + [anon_sym_BSLASHnewcommand] = ACTIONS(12323), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12323), + [anon_sym_BSLASHgls] = ACTIONS(12323), + [anon_sym_BSLASHGls] = ACTIONS(12323), + [anon_sym_BSLASHGLS] = ACTIONS(12323), + [anon_sym_BSLASHglspl] = ACTIONS(12323), + [anon_sym_BSLASHGlspl] = ACTIONS(12323), + [anon_sym_BSLASHGLSpl] = ACTIONS(12323), + [anon_sym_BSLASHglsdisp] = ACTIONS(12323), + [anon_sym_BSLASHglslink] = ACTIONS(12323), + [anon_sym_BSLASHglstext] = ACTIONS(12323), + [anon_sym_BSLASHGlstext] = ACTIONS(12323), + [anon_sym_BSLASHGLStext] = ACTIONS(12323), + [anon_sym_BSLASHglsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12323), + [anon_sym_BSLASHglsplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSplural] = ACTIONS(12323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHglsname] = ACTIONS(12323), + [anon_sym_BSLASHGlsname] = ACTIONS(12323), + [anon_sym_BSLASHGLSname] = ACTIONS(12323), + [anon_sym_BSLASHglssymbol] = ACTIONS(12323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12323), + [anon_sym_BSLASHglsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12323), + [anon_sym_BSLASHglsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12323), + [anon_sym_BSLASHglsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12323), + [anon_sym_BSLASHglsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12323), + [anon_sym_BSLASHglsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12323), + [anon_sym_BSLASHnewacronym] = ACTIONS(12323), + [anon_sym_BSLASHacrshort] = ACTIONS(12323), + [anon_sym_BSLASHAcrshort] = ACTIONS(12323), + [anon_sym_BSLASHACRshort] = ACTIONS(12323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12323), + [anon_sym_BSLASHacrlong] = ACTIONS(12323), + [anon_sym_BSLASHAcrlong] = ACTIONS(12323), + [anon_sym_BSLASHACRlong] = ACTIONS(12323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12323), + [anon_sym_BSLASHacrfull] = ACTIONS(12323), + [anon_sym_BSLASHAcrfull] = ACTIONS(12323), + [anon_sym_BSLASHACRfull] = ACTIONS(12323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12323), + [anon_sym_BSLASHacs] = ACTIONS(12323), + [anon_sym_BSLASHAcs] = ACTIONS(12323), + [anon_sym_BSLASHacsp] = ACTIONS(12323), + [anon_sym_BSLASHAcsp] = ACTIONS(12323), + [anon_sym_BSLASHacl] = ACTIONS(12323), + [anon_sym_BSLASHAcl] = ACTIONS(12323), + [anon_sym_BSLASHaclp] = ACTIONS(12323), + [anon_sym_BSLASHAclp] = ACTIONS(12323), + [anon_sym_BSLASHacf] = ACTIONS(12323), + [anon_sym_BSLASHAcf] = ACTIONS(12323), + [anon_sym_BSLASHacfp] = ACTIONS(12323), + [anon_sym_BSLASHAcfp] = ACTIONS(12323), + [anon_sym_BSLASHac] = ACTIONS(12323), + [anon_sym_BSLASHAc] = ACTIONS(12323), + [anon_sym_BSLASHacp] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12323), + [anon_sym_BSLASHcolor] = ACTIONS(12323), + [anon_sym_BSLASHcolorbox] = ACTIONS(12323), + [anon_sym_BSLASHtextcolor] = ACTIONS(12323), + [anon_sym_BSLASHpagecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12323), + }, + [1867] = { + [sym_generic_command_name] = ACTIONS(12201), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12201), + [anon_sym_LBRACK] = ACTIONS(12199), + [anon_sym_RBRACK] = ACTIONS(12199), + [anon_sym_LBRACE] = ACTIONS(12199), + [anon_sym_RBRACE] = ACTIONS(12199), + [anon_sym_LPAREN] = ACTIONS(12199), + [anon_sym_COMMA] = ACTIONS(12199), + [anon_sym_EQ] = ACTIONS(12199), + [sym_word] = ACTIONS(12199), + [sym_param] = ACTIONS(12199), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12199), + [anon_sym_DOLLAR] = ACTIONS(12201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12199), + [anon_sym_BSLASHbegin] = ACTIONS(12201), + [anon_sym_BSLASHcaption] = ACTIONS(12201), + [anon_sym_BSLASHcite] = ACTIONS(12201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCite] = ACTIONS(12201), + [anon_sym_BSLASHnocite] = ACTIONS(12201), + [anon_sym_BSLASHcitet] = ACTIONS(12201), + [anon_sym_BSLASHcitep] = ACTIONS(12201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteauthor] = ACTIONS(12201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitetitle] = ACTIONS(12201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteyear] = ACTIONS(12201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitedate] = ACTIONS(12201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteurl] = ACTIONS(12201), + [anon_sym_BSLASHfullcite] = ACTIONS(12201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12201), + [anon_sym_BSLASHcitealt] = ACTIONS(12201), + [anon_sym_BSLASHcitealp] = ACTIONS(12201), + [anon_sym_BSLASHcitetext] = ACTIONS(12201), + [anon_sym_BSLASHparencite] = ACTIONS(12201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHParencite] = ACTIONS(12201), + [anon_sym_BSLASHfootcite] = ACTIONS(12201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12201), + [anon_sym_BSLASHtextcite] = ACTIONS(12201), + [anon_sym_BSLASHTextcite] = ACTIONS(12201), + [anon_sym_BSLASHsmartcite] = ACTIONS(12201), + [anon_sym_BSLASHSmartcite] = ACTIONS(12201), + [anon_sym_BSLASHsupercite] = ACTIONS(12201), + [anon_sym_BSLASHautocite] = ACTIONS(12201), + [anon_sym_BSLASHAutocite] = ACTIONS(12201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHvolcite] = ACTIONS(12201), + [anon_sym_BSLASHVolcite] = ACTIONS(12201), + [anon_sym_BSLASHpvolcite] = ACTIONS(12201), + [anon_sym_BSLASHPvolcite] = ACTIONS(12201), + [anon_sym_BSLASHfvolcite] = ACTIONS(12201), + [anon_sym_BSLASHftvolcite] = ACTIONS(12201), + [anon_sym_BSLASHsvolcite] = ACTIONS(12201), + [anon_sym_BSLASHSvolcite] = ACTIONS(12201), + [anon_sym_BSLASHtvolcite] = ACTIONS(12201), + [anon_sym_BSLASHTvolcite] = ACTIONS(12201), + [anon_sym_BSLASHavolcite] = ACTIONS(12201), + [anon_sym_BSLASHAvolcite] = ACTIONS(12201), + [anon_sym_BSLASHnotecite] = ACTIONS(12201), + [anon_sym_BSLASHpnotecite] = ACTIONS(12201), + [anon_sym_BSLASHPnotecite] = ACTIONS(12201), + [anon_sym_BSLASHfnotecite] = ACTIONS(12201), + [anon_sym_BSLASHusepackage] = ACTIONS(12201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12201), + [anon_sym_BSLASHinclude] = ACTIONS(12201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12201), + [anon_sym_BSLASHinput] = ACTIONS(12201), + [anon_sym_BSLASHsubfile] = ACTIONS(12201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12201), + [anon_sym_BSLASHbibliography] = ACTIONS(12201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12201), + [anon_sym_BSLASHincludesvg] = ACTIONS(12201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12201), + [anon_sym_BSLASHimport] = ACTIONS(12201), + [anon_sym_BSLASHsubimport] = ACTIONS(12201), + [anon_sym_BSLASHinputfrom] = ACTIONS(12201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12201), + [anon_sym_BSLASHincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHlabel] = ACTIONS(12201), + [anon_sym_BSLASHref] = ACTIONS(12201), + [anon_sym_BSLASHvref] = ACTIONS(12201), + [anon_sym_BSLASHVref] = ACTIONS(12201), + [anon_sym_BSLASHautoref] = ACTIONS(12201), + [anon_sym_BSLASHpageref] = ACTIONS(12201), + [anon_sym_BSLASHcref] = ACTIONS(12201), + [anon_sym_BSLASHCref] = ACTIONS(12201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnameCref] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHlabelcref] = ACTIONS(12201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12201), + [anon_sym_BSLASHeqref] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange] = ACTIONS(12201), + [anon_sym_BSLASHCrefrange] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewlabel] = ACTIONS(12201), + [anon_sym_BSLASHnewcommand] = ACTIONS(12201), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12201), + [anon_sym_BSLASHgls] = ACTIONS(12201), + [anon_sym_BSLASHGls] = ACTIONS(12201), + [anon_sym_BSLASHGLS] = ACTIONS(12201), + [anon_sym_BSLASHglspl] = ACTIONS(12201), + [anon_sym_BSLASHGlspl] = ACTIONS(12201), + [anon_sym_BSLASHGLSpl] = ACTIONS(12201), + [anon_sym_BSLASHglsdisp] = ACTIONS(12201), + [anon_sym_BSLASHglslink] = ACTIONS(12201), + [anon_sym_BSLASHglstext] = ACTIONS(12201), + [anon_sym_BSLASHGlstext] = ACTIONS(12201), + [anon_sym_BSLASHGLStext] = ACTIONS(12201), + [anon_sym_BSLASHglsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12201), + [anon_sym_BSLASHglsplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSplural] = ACTIONS(12201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHglsname] = ACTIONS(12201), + [anon_sym_BSLASHGlsname] = ACTIONS(12201), + [anon_sym_BSLASHGLSname] = ACTIONS(12201), + [anon_sym_BSLASHglssymbol] = ACTIONS(12201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12201), + [anon_sym_BSLASHglsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12201), + [anon_sym_BSLASHglsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12201), + [anon_sym_BSLASHglsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12201), + [anon_sym_BSLASHglsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12201), + [anon_sym_BSLASHglsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12201), + [anon_sym_BSLASHnewacronym] = ACTIONS(12201), + [anon_sym_BSLASHacrshort] = ACTIONS(12201), + [anon_sym_BSLASHAcrshort] = ACTIONS(12201), + [anon_sym_BSLASHACRshort] = ACTIONS(12201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12201), + [anon_sym_BSLASHacrlong] = ACTIONS(12201), + [anon_sym_BSLASHAcrlong] = ACTIONS(12201), + [anon_sym_BSLASHACRlong] = ACTIONS(12201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12201), + [anon_sym_BSLASHacrfull] = ACTIONS(12201), + [anon_sym_BSLASHAcrfull] = ACTIONS(12201), + [anon_sym_BSLASHACRfull] = ACTIONS(12201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12201), + [anon_sym_BSLASHacs] = ACTIONS(12201), + [anon_sym_BSLASHAcs] = ACTIONS(12201), + [anon_sym_BSLASHacsp] = ACTIONS(12201), + [anon_sym_BSLASHAcsp] = ACTIONS(12201), + [anon_sym_BSLASHacl] = ACTIONS(12201), + [anon_sym_BSLASHAcl] = ACTIONS(12201), + [anon_sym_BSLASHaclp] = ACTIONS(12201), + [anon_sym_BSLASHAclp] = ACTIONS(12201), + [anon_sym_BSLASHacf] = ACTIONS(12201), + [anon_sym_BSLASHAcf] = ACTIONS(12201), + [anon_sym_BSLASHacfp] = ACTIONS(12201), + [anon_sym_BSLASHAcfp] = ACTIONS(12201), + [anon_sym_BSLASHac] = ACTIONS(12201), + [anon_sym_BSLASHAc] = ACTIONS(12201), + [anon_sym_BSLASHacp] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12201), + [anon_sym_BSLASHcolor] = ACTIONS(12201), + [anon_sym_BSLASHcolorbox] = ACTIONS(12201), + [anon_sym_BSLASHtextcolor] = ACTIONS(12201), + [anon_sym_BSLASHpagecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12201), + }, + [1868] = { + [sym_generic_command_name] = ACTIONS(12193), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12193), + [anon_sym_LBRACK] = ACTIONS(12191), + [anon_sym_RBRACK] = ACTIONS(12191), + [anon_sym_LBRACE] = ACTIONS(12191), + [anon_sym_RBRACE] = ACTIONS(12191), + [anon_sym_LPAREN] = ACTIONS(12191), + [anon_sym_COMMA] = ACTIONS(12191), + [anon_sym_EQ] = ACTIONS(12191), + [sym_word] = ACTIONS(12191), + [sym_param] = ACTIONS(12191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12191), + [anon_sym_DOLLAR] = ACTIONS(12193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12191), + [anon_sym_BSLASHbegin] = ACTIONS(12193), + [anon_sym_BSLASHcaption] = ACTIONS(12193), + [anon_sym_BSLASHcite] = ACTIONS(12193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCite] = ACTIONS(12193), + [anon_sym_BSLASHnocite] = ACTIONS(12193), + [anon_sym_BSLASHcitet] = ACTIONS(12193), + [anon_sym_BSLASHcitep] = ACTIONS(12193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteauthor] = ACTIONS(12193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitetitle] = ACTIONS(12193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteyear] = ACTIONS(12193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitedate] = ACTIONS(12193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteurl] = ACTIONS(12193), + [anon_sym_BSLASHfullcite] = ACTIONS(12193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12193), + [anon_sym_BSLASHcitealt] = ACTIONS(12193), + [anon_sym_BSLASHcitealp] = ACTIONS(12193), + [anon_sym_BSLASHcitetext] = ACTIONS(12193), + [anon_sym_BSLASHparencite] = ACTIONS(12193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHParencite] = ACTIONS(12193), + [anon_sym_BSLASHfootcite] = ACTIONS(12193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12193), + [anon_sym_BSLASHtextcite] = ACTIONS(12193), + [anon_sym_BSLASHTextcite] = ACTIONS(12193), + [anon_sym_BSLASHsmartcite] = ACTIONS(12193), + [anon_sym_BSLASHSmartcite] = ACTIONS(12193), + [anon_sym_BSLASHsupercite] = ACTIONS(12193), + [anon_sym_BSLASHautocite] = ACTIONS(12193), + [anon_sym_BSLASHAutocite] = ACTIONS(12193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHvolcite] = ACTIONS(12193), + [anon_sym_BSLASHVolcite] = ACTIONS(12193), + [anon_sym_BSLASHpvolcite] = ACTIONS(12193), + [anon_sym_BSLASHPvolcite] = ACTIONS(12193), + [anon_sym_BSLASHfvolcite] = ACTIONS(12193), + [anon_sym_BSLASHftvolcite] = ACTIONS(12193), + [anon_sym_BSLASHsvolcite] = ACTIONS(12193), + [anon_sym_BSLASHSvolcite] = ACTIONS(12193), + [anon_sym_BSLASHtvolcite] = ACTIONS(12193), + [anon_sym_BSLASHTvolcite] = ACTIONS(12193), + [anon_sym_BSLASHavolcite] = ACTIONS(12193), + [anon_sym_BSLASHAvolcite] = ACTIONS(12193), + [anon_sym_BSLASHnotecite] = ACTIONS(12193), + [anon_sym_BSLASHpnotecite] = ACTIONS(12193), + [anon_sym_BSLASHPnotecite] = ACTIONS(12193), + [anon_sym_BSLASHfnotecite] = ACTIONS(12193), + [anon_sym_BSLASHusepackage] = ACTIONS(12193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12193), + [anon_sym_BSLASHinclude] = ACTIONS(12193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12193), + [anon_sym_BSLASHinput] = ACTIONS(12193), + [anon_sym_BSLASHsubfile] = ACTIONS(12193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12193), + [anon_sym_BSLASHbibliography] = ACTIONS(12193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12193), + [anon_sym_BSLASHincludesvg] = ACTIONS(12193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12193), + [anon_sym_BSLASHimport] = ACTIONS(12193), + [anon_sym_BSLASHsubimport] = ACTIONS(12193), + [anon_sym_BSLASHinputfrom] = ACTIONS(12193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12193), + [anon_sym_BSLASHincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHlabel] = ACTIONS(12193), + [anon_sym_BSLASHref] = ACTIONS(12193), + [anon_sym_BSLASHvref] = ACTIONS(12193), + [anon_sym_BSLASHVref] = ACTIONS(12193), + [anon_sym_BSLASHautoref] = ACTIONS(12193), + [anon_sym_BSLASHpageref] = ACTIONS(12193), + [anon_sym_BSLASHcref] = ACTIONS(12193), + [anon_sym_BSLASHCref] = ACTIONS(12193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnameCref] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHlabelcref] = ACTIONS(12193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12193), + [anon_sym_BSLASHeqref] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange] = ACTIONS(12193), + [anon_sym_BSLASHCrefrange] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewlabel] = ACTIONS(12193), + [anon_sym_BSLASHnewcommand] = ACTIONS(12193), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12193), + [anon_sym_BSLASHgls] = ACTIONS(12193), + [anon_sym_BSLASHGls] = ACTIONS(12193), + [anon_sym_BSLASHGLS] = ACTIONS(12193), + [anon_sym_BSLASHglspl] = ACTIONS(12193), + [anon_sym_BSLASHGlspl] = ACTIONS(12193), + [anon_sym_BSLASHGLSpl] = ACTIONS(12193), + [anon_sym_BSLASHglsdisp] = ACTIONS(12193), + [anon_sym_BSLASHglslink] = ACTIONS(12193), + [anon_sym_BSLASHglstext] = ACTIONS(12193), + [anon_sym_BSLASHGlstext] = ACTIONS(12193), + [anon_sym_BSLASHGLStext] = ACTIONS(12193), + [anon_sym_BSLASHglsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12193), + [anon_sym_BSLASHglsplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSplural] = ACTIONS(12193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHglsname] = ACTIONS(12193), + [anon_sym_BSLASHGlsname] = ACTIONS(12193), + [anon_sym_BSLASHGLSname] = ACTIONS(12193), + [anon_sym_BSLASHglssymbol] = ACTIONS(12193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12193), + [anon_sym_BSLASHglsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12193), + [anon_sym_BSLASHglsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12193), + [anon_sym_BSLASHglsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12193), + [anon_sym_BSLASHglsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12193), + [anon_sym_BSLASHglsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12193), + [anon_sym_BSLASHnewacronym] = ACTIONS(12193), + [anon_sym_BSLASHacrshort] = ACTIONS(12193), + [anon_sym_BSLASHAcrshort] = ACTIONS(12193), + [anon_sym_BSLASHACRshort] = ACTIONS(12193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12193), + [anon_sym_BSLASHacrlong] = ACTIONS(12193), + [anon_sym_BSLASHAcrlong] = ACTIONS(12193), + [anon_sym_BSLASHACRlong] = ACTIONS(12193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12193), + [anon_sym_BSLASHacrfull] = ACTIONS(12193), + [anon_sym_BSLASHAcrfull] = ACTIONS(12193), + [anon_sym_BSLASHACRfull] = ACTIONS(12193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12193), + [anon_sym_BSLASHacs] = ACTIONS(12193), + [anon_sym_BSLASHAcs] = ACTIONS(12193), + [anon_sym_BSLASHacsp] = ACTIONS(12193), + [anon_sym_BSLASHAcsp] = ACTIONS(12193), + [anon_sym_BSLASHacl] = ACTIONS(12193), + [anon_sym_BSLASHAcl] = ACTIONS(12193), + [anon_sym_BSLASHaclp] = ACTIONS(12193), + [anon_sym_BSLASHAclp] = ACTIONS(12193), + [anon_sym_BSLASHacf] = ACTIONS(12193), + [anon_sym_BSLASHAcf] = ACTIONS(12193), + [anon_sym_BSLASHacfp] = ACTIONS(12193), + [anon_sym_BSLASHAcfp] = ACTIONS(12193), + [anon_sym_BSLASHac] = ACTIONS(12193), + [anon_sym_BSLASHAc] = ACTIONS(12193), + [anon_sym_BSLASHacp] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12193), + [anon_sym_BSLASHcolor] = ACTIONS(12193), + [anon_sym_BSLASHcolorbox] = ACTIONS(12193), + [anon_sym_BSLASHtextcolor] = ACTIONS(12193), + [anon_sym_BSLASHpagecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12193), + }, + [1869] = { + [sym_generic_command_name] = ACTIONS(12205), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12205), + [anon_sym_LBRACK] = ACTIONS(12203), + [anon_sym_RBRACK] = ACTIONS(12203), + [anon_sym_LBRACE] = ACTIONS(12203), + [anon_sym_RBRACE] = ACTIONS(12203), + [anon_sym_LPAREN] = ACTIONS(12203), + [anon_sym_COMMA] = ACTIONS(12203), + [anon_sym_EQ] = ACTIONS(12203), + [sym_word] = ACTIONS(12203), + [sym_param] = ACTIONS(12203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12203), + [anon_sym_DOLLAR] = ACTIONS(12205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12203), + [anon_sym_BSLASHbegin] = ACTIONS(12205), + [anon_sym_BSLASHcaption] = ACTIONS(12205), + [anon_sym_BSLASHcite] = ACTIONS(12205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCite] = ACTIONS(12205), + [anon_sym_BSLASHnocite] = ACTIONS(12205), + [anon_sym_BSLASHcitet] = ACTIONS(12205), + [anon_sym_BSLASHcitep] = ACTIONS(12205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteauthor] = ACTIONS(12205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitetitle] = ACTIONS(12205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteyear] = ACTIONS(12205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitedate] = ACTIONS(12205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteurl] = ACTIONS(12205), + [anon_sym_BSLASHfullcite] = ACTIONS(12205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12205), + [anon_sym_BSLASHcitealt] = ACTIONS(12205), + [anon_sym_BSLASHcitealp] = ACTIONS(12205), + [anon_sym_BSLASHcitetext] = ACTIONS(12205), + [anon_sym_BSLASHparencite] = ACTIONS(12205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHParencite] = ACTIONS(12205), + [anon_sym_BSLASHfootcite] = ACTIONS(12205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12205), + [anon_sym_BSLASHtextcite] = ACTIONS(12205), + [anon_sym_BSLASHTextcite] = ACTIONS(12205), + [anon_sym_BSLASHsmartcite] = ACTIONS(12205), + [anon_sym_BSLASHSmartcite] = ACTIONS(12205), + [anon_sym_BSLASHsupercite] = ACTIONS(12205), + [anon_sym_BSLASHautocite] = ACTIONS(12205), + [anon_sym_BSLASHAutocite] = ACTIONS(12205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHvolcite] = ACTIONS(12205), + [anon_sym_BSLASHVolcite] = ACTIONS(12205), + [anon_sym_BSLASHpvolcite] = ACTIONS(12205), + [anon_sym_BSLASHPvolcite] = ACTIONS(12205), + [anon_sym_BSLASHfvolcite] = ACTIONS(12205), + [anon_sym_BSLASHftvolcite] = ACTIONS(12205), + [anon_sym_BSLASHsvolcite] = ACTIONS(12205), + [anon_sym_BSLASHSvolcite] = ACTIONS(12205), + [anon_sym_BSLASHtvolcite] = ACTIONS(12205), + [anon_sym_BSLASHTvolcite] = ACTIONS(12205), + [anon_sym_BSLASHavolcite] = ACTIONS(12205), + [anon_sym_BSLASHAvolcite] = ACTIONS(12205), + [anon_sym_BSLASHnotecite] = ACTIONS(12205), + [anon_sym_BSLASHpnotecite] = ACTIONS(12205), + [anon_sym_BSLASHPnotecite] = ACTIONS(12205), + [anon_sym_BSLASHfnotecite] = ACTIONS(12205), + [anon_sym_BSLASHusepackage] = ACTIONS(12205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12205), + [anon_sym_BSLASHinclude] = ACTIONS(12205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12205), + [anon_sym_BSLASHinput] = ACTIONS(12205), + [anon_sym_BSLASHsubfile] = ACTIONS(12205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12205), + [anon_sym_BSLASHbibliography] = ACTIONS(12205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12205), + [anon_sym_BSLASHincludesvg] = ACTIONS(12205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12205), + [anon_sym_BSLASHimport] = ACTIONS(12205), + [anon_sym_BSLASHsubimport] = ACTIONS(12205), + [anon_sym_BSLASHinputfrom] = ACTIONS(12205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12205), + [anon_sym_BSLASHincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHlabel] = ACTIONS(12205), + [anon_sym_BSLASHref] = ACTIONS(12205), + [anon_sym_BSLASHvref] = ACTIONS(12205), + [anon_sym_BSLASHVref] = ACTIONS(12205), + [anon_sym_BSLASHautoref] = ACTIONS(12205), + [anon_sym_BSLASHpageref] = ACTIONS(12205), + [anon_sym_BSLASHcref] = ACTIONS(12205), + [anon_sym_BSLASHCref] = ACTIONS(12205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnameCref] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHlabelcref] = ACTIONS(12205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12205), + [anon_sym_BSLASHeqref] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange] = ACTIONS(12205), + [anon_sym_BSLASHCrefrange] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewlabel] = ACTIONS(12205), + [anon_sym_BSLASHnewcommand] = ACTIONS(12205), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12205), + [anon_sym_BSLASHgls] = ACTIONS(12205), + [anon_sym_BSLASHGls] = ACTIONS(12205), + [anon_sym_BSLASHGLS] = ACTIONS(12205), + [anon_sym_BSLASHglspl] = ACTIONS(12205), + [anon_sym_BSLASHGlspl] = ACTIONS(12205), + [anon_sym_BSLASHGLSpl] = ACTIONS(12205), + [anon_sym_BSLASHglsdisp] = ACTIONS(12205), + [anon_sym_BSLASHglslink] = ACTIONS(12205), + [anon_sym_BSLASHglstext] = ACTIONS(12205), + [anon_sym_BSLASHGlstext] = ACTIONS(12205), + [anon_sym_BSLASHGLStext] = ACTIONS(12205), + [anon_sym_BSLASHglsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12205), + [anon_sym_BSLASHglsplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSplural] = ACTIONS(12205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHglsname] = ACTIONS(12205), + [anon_sym_BSLASHGlsname] = ACTIONS(12205), + [anon_sym_BSLASHGLSname] = ACTIONS(12205), + [anon_sym_BSLASHglssymbol] = ACTIONS(12205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12205), + [anon_sym_BSLASHglsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12205), + [anon_sym_BSLASHglsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12205), + [anon_sym_BSLASHglsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12205), + [anon_sym_BSLASHglsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12205), + [anon_sym_BSLASHglsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12205), + [anon_sym_BSLASHnewacronym] = ACTIONS(12205), + [anon_sym_BSLASHacrshort] = ACTIONS(12205), + [anon_sym_BSLASHAcrshort] = ACTIONS(12205), + [anon_sym_BSLASHACRshort] = ACTIONS(12205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12205), + [anon_sym_BSLASHacrlong] = ACTIONS(12205), + [anon_sym_BSLASHAcrlong] = ACTIONS(12205), + [anon_sym_BSLASHACRlong] = ACTIONS(12205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12205), + [anon_sym_BSLASHacrfull] = ACTIONS(12205), + [anon_sym_BSLASHAcrfull] = ACTIONS(12205), + [anon_sym_BSLASHACRfull] = ACTIONS(12205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12205), + [anon_sym_BSLASHacs] = ACTIONS(12205), + [anon_sym_BSLASHAcs] = ACTIONS(12205), + [anon_sym_BSLASHacsp] = ACTIONS(12205), + [anon_sym_BSLASHAcsp] = ACTIONS(12205), + [anon_sym_BSLASHacl] = ACTIONS(12205), + [anon_sym_BSLASHAcl] = ACTIONS(12205), + [anon_sym_BSLASHaclp] = ACTIONS(12205), + [anon_sym_BSLASHAclp] = ACTIONS(12205), + [anon_sym_BSLASHacf] = ACTIONS(12205), + [anon_sym_BSLASHAcf] = ACTIONS(12205), + [anon_sym_BSLASHacfp] = ACTIONS(12205), + [anon_sym_BSLASHAcfp] = ACTIONS(12205), + [anon_sym_BSLASHac] = ACTIONS(12205), + [anon_sym_BSLASHAc] = ACTIONS(12205), + [anon_sym_BSLASHacp] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12205), + [anon_sym_BSLASHcolor] = ACTIONS(12205), + [anon_sym_BSLASHcolorbox] = ACTIONS(12205), + [anon_sym_BSLASHtextcolor] = ACTIONS(12205), + [anon_sym_BSLASHpagecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12205), + }, + [1870] = { + [sym_generic_command_name] = ACTIONS(12213), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12213), + [anon_sym_LBRACK] = ACTIONS(12211), + [anon_sym_RBRACK] = ACTIONS(12211), + [anon_sym_LBRACE] = ACTIONS(12211), + [anon_sym_RBRACE] = ACTIONS(12211), + [anon_sym_LPAREN] = ACTIONS(12211), + [anon_sym_COMMA] = ACTIONS(12211), + [anon_sym_EQ] = ACTIONS(12211), + [sym_word] = ACTIONS(12211), + [sym_param] = ACTIONS(12211), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12211), + [anon_sym_DOLLAR] = ACTIONS(12213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12211), + [anon_sym_BSLASHbegin] = ACTIONS(12213), + [anon_sym_BSLASHcaption] = ACTIONS(12213), + [anon_sym_BSLASHcite] = ACTIONS(12213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCite] = ACTIONS(12213), + [anon_sym_BSLASHnocite] = ACTIONS(12213), + [anon_sym_BSLASHcitet] = ACTIONS(12213), + [anon_sym_BSLASHcitep] = ACTIONS(12213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteauthor] = ACTIONS(12213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitetitle] = ACTIONS(12213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteyear] = ACTIONS(12213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitedate] = ACTIONS(12213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteurl] = ACTIONS(12213), + [anon_sym_BSLASHfullcite] = ACTIONS(12213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12213), + [anon_sym_BSLASHcitealt] = ACTIONS(12213), + [anon_sym_BSLASHcitealp] = ACTIONS(12213), + [anon_sym_BSLASHcitetext] = ACTIONS(12213), + [anon_sym_BSLASHparencite] = ACTIONS(12213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHParencite] = ACTIONS(12213), + [anon_sym_BSLASHfootcite] = ACTIONS(12213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12213), + [anon_sym_BSLASHtextcite] = ACTIONS(12213), + [anon_sym_BSLASHTextcite] = ACTIONS(12213), + [anon_sym_BSLASHsmartcite] = ACTIONS(12213), + [anon_sym_BSLASHSmartcite] = ACTIONS(12213), + [anon_sym_BSLASHsupercite] = ACTIONS(12213), + [anon_sym_BSLASHautocite] = ACTIONS(12213), + [anon_sym_BSLASHAutocite] = ACTIONS(12213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHvolcite] = ACTIONS(12213), + [anon_sym_BSLASHVolcite] = ACTIONS(12213), + [anon_sym_BSLASHpvolcite] = ACTIONS(12213), + [anon_sym_BSLASHPvolcite] = ACTIONS(12213), + [anon_sym_BSLASHfvolcite] = ACTIONS(12213), + [anon_sym_BSLASHftvolcite] = ACTIONS(12213), + [anon_sym_BSLASHsvolcite] = ACTIONS(12213), + [anon_sym_BSLASHSvolcite] = ACTIONS(12213), + [anon_sym_BSLASHtvolcite] = ACTIONS(12213), + [anon_sym_BSLASHTvolcite] = ACTIONS(12213), + [anon_sym_BSLASHavolcite] = ACTIONS(12213), + [anon_sym_BSLASHAvolcite] = ACTIONS(12213), + [anon_sym_BSLASHnotecite] = ACTIONS(12213), + [anon_sym_BSLASHpnotecite] = ACTIONS(12213), + [anon_sym_BSLASHPnotecite] = ACTIONS(12213), + [anon_sym_BSLASHfnotecite] = ACTIONS(12213), + [anon_sym_BSLASHusepackage] = ACTIONS(12213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12213), + [anon_sym_BSLASHinclude] = ACTIONS(12213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12213), + [anon_sym_BSLASHinput] = ACTIONS(12213), + [anon_sym_BSLASHsubfile] = ACTIONS(12213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12213), + [anon_sym_BSLASHbibliography] = ACTIONS(12213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12213), + [anon_sym_BSLASHincludesvg] = ACTIONS(12213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12213), + [anon_sym_BSLASHimport] = ACTIONS(12213), + [anon_sym_BSLASHsubimport] = ACTIONS(12213), + [anon_sym_BSLASHinputfrom] = ACTIONS(12213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12213), + [anon_sym_BSLASHincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHlabel] = ACTIONS(12213), + [anon_sym_BSLASHref] = ACTIONS(12213), + [anon_sym_BSLASHvref] = ACTIONS(12213), + [anon_sym_BSLASHVref] = ACTIONS(12213), + [anon_sym_BSLASHautoref] = ACTIONS(12213), + [anon_sym_BSLASHpageref] = ACTIONS(12213), + [anon_sym_BSLASHcref] = ACTIONS(12213), + [anon_sym_BSLASHCref] = ACTIONS(12213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnameCref] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHlabelcref] = ACTIONS(12213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12213), + [anon_sym_BSLASHeqref] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange] = ACTIONS(12213), + [anon_sym_BSLASHCrefrange] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewlabel] = ACTIONS(12213), + [anon_sym_BSLASHnewcommand] = ACTIONS(12213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12213), + [anon_sym_BSLASHgls] = ACTIONS(12213), + [anon_sym_BSLASHGls] = ACTIONS(12213), + [anon_sym_BSLASHGLS] = ACTIONS(12213), + [anon_sym_BSLASHglspl] = ACTIONS(12213), + [anon_sym_BSLASHGlspl] = ACTIONS(12213), + [anon_sym_BSLASHGLSpl] = ACTIONS(12213), + [anon_sym_BSLASHglsdisp] = ACTIONS(12213), + [anon_sym_BSLASHglslink] = ACTIONS(12213), + [anon_sym_BSLASHglstext] = ACTIONS(12213), + [anon_sym_BSLASHGlstext] = ACTIONS(12213), + [anon_sym_BSLASHGLStext] = ACTIONS(12213), + [anon_sym_BSLASHglsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12213), + [anon_sym_BSLASHglsplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSplural] = ACTIONS(12213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHglsname] = ACTIONS(12213), + [anon_sym_BSLASHGlsname] = ACTIONS(12213), + [anon_sym_BSLASHGLSname] = ACTIONS(12213), + [anon_sym_BSLASHglssymbol] = ACTIONS(12213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12213), + [anon_sym_BSLASHglsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12213), + [anon_sym_BSLASHglsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12213), + [anon_sym_BSLASHglsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12213), + [anon_sym_BSLASHglsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12213), + [anon_sym_BSLASHglsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12213), + [anon_sym_BSLASHnewacronym] = ACTIONS(12213), + [anon_sym_BSLASHacrshort] = ACTIONS(12213), + [anon_sym_BSLASHAcrshort] = ACTIONS(12213), + [anon_sym_BSLASHACRshort] = ACTIONS(12213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12213), + [anon_sym_BSLASHacrlong] = ACTIONS(12213), + [anon_sym_BSLASHAcrlong] = ACTIONS(12213), + [anon_sym_BSLASHACRlong] = ACTIONS(12213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12213), + [anon_sym_BSLASHacrfull] = ACTIONS(12213), + [anon_sym_BSLASHAcrfull] = ACTIONS(12213), + [anon_sym_BSLASHACRfull] = ACTIONS(12213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12213), + [anon_sym_BSLASHacs] = ACTIONS(12213), + [anon_sym_BSLASHAcs] = ACTIONS(12213), + [anon_sym_BSLASHacsp] = ACTIONS(12213), + [anon_sym_BSLASHAcsp] = ACTIONS(12213), + [anon_sym_BSLASHacl] = ACTIONS(12213), + [anon_sym_BSLASHAcl] = ACTIONS(12213), + [anon_sym_BSLASHaclp] = ACTIONS(12213), + [anon_sym_BSLASHAclp] = ACTIONS(12213), + [anon_sym_BSLASHacf] = ACTIONS(12213), + [anon_sym_BSLASHAcf] = ACTIONS(12213), + [anon_sym_BSLASHacfp] = ACTIONS(12213), + [anon_sym_BSLASHAcfp] = ACTIONS(12213), + [anon_sym_BSLASHac] = ACTIONS(12213), + [anon_sym_BSLASHAc] = ACTIONS(12213), + [anon_sym_BSLASHacp] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12213), + [anon_sym_BSLASHcolor] = ACTIONS(12213), + [anon_sym_BSLASHcolorbox] = ACTIONS(12213), + [anon_sym_BSLASHtextcolor] = ACTIONS(12213), + [anon_sym_BSLASHpagecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12213), + }, + [1871] = { + [sym_generic_command_name] = ACTIONS(12217), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_BSLASHitem] = ACTIONS(12217), + [anon_sym_LBRACK] = ACTIONS(12215), + [anon_sym_RBRACK] = ACTIONS(12215), + [anon_sym_LBRACE] = ACTIONS(12215), + [anon_sym_RBRACE] = ACTIONS(12215), + [anon_sym_LPAREN] = ACTIONS(12215), + [anon_sym_COMMA] = ACTIONS(12215), + [anon_sym_EQ] = ACTIONS(12215), + [sym_word] = ACTIONS(12215), + [sym_param] = ACTIONS(12215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12215), + [anon_sym_DOLLAR] = ACTIONS(12217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12215), + [anon_sym_BSLASHbegin] = ACTIONS(12217), + [anon_sym_BSLASHcaption] = ACTIONS(12217), + [anon_sym_BSLASHcite] = ACTIONS(12217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCite] = ACTIONS(12217), + [anon_sym_BSLASHnocite] = ACTIONS(12217), + [anon_sym_BSLASHcitet] = ACTIONS(12217), + [anon_sym_BSLASHcitep] = ACTIONS(12217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteauthor] = ACTIONS(12217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitetitle] = ACTIONS(12217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteyear] = ACTIONS(12217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitedate] = ACTIONS(12217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteurl] = ACTIONS(12217), + [anon_sym_BSLASHfullcite] = ACTIONS(12217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12217), + [anon_sym_BSLASHcitealt] = ACTIONS(12217), + [anon_sym_BSLASHcitealp] = ACTIONS(12217), + [anon_sym_BSLASHcitetext] = ACTIONS(12217), + [anon_sym_BSLASHparencite] = ACTIONS(12217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHParencite] = ACTIONS(12217), + [anon_sym_BSLASHfootcite] = ACTIONS(12217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12217), + [anon_sym_BSLASHtextcite] = ACTIONS(12217), + [anon_sym_BSLASHTextcite] = ACTIONS(12217), + [anon_sym_BSLASHsmartcite] = ACTIONS(12217), + [anon_sym_BSLASHSmartcite] = ACTIONS(12217), + [anon_sym_BSLASHsupercite] = ACTIONS(12217), + [anon_sym_BSLASHautocite] = ACTIONS(12217), + [anon_sym_BSLASHAutocite] = ACTIONS(12217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHvolcite] = ACTIONS(12217), + [anon_sym_BSLASHVolcite] = ACTIONS(12217), + [anon_sym_BSLASHpvolcite] = ACTIONS(12217), + [anon_sym_BSLASHPvolcite] = ACTIONS(12217), + [anon_sym_BSLASHfvolcite] = ACTIONS(12217), + [anon_sym_BSLASHftvolcite] = ACTIONS(12217), + [anon_sym_BSLASHsvolcite] = ACTIONS(12217), + [anon_sym_BSLASHSvolcite] = ACTIONS(12217), + [anon_sym_BSLASHtvolcite] = ACTIONS(12217), + [anon_sym_BSLASHTvolcite] = ACTIONS(12217), + [anon_sym_BSLASHavolcite] = ACTIONS(12217), + [anon_sym_BSLASHAvolcite] = ACTIONS(12217), + [anon_sym_BSLASHnotecite] = ACTIONS(12217), + [anon_sym_BSLASHpnotecite] = ACTIONS(12217), + [anon_sym_BSLASHPnotecite] = ACTIONS(12217), + [anon_sym_BSLASHfnotecite] = ACTIONS(12217), + [anon_sym_BSLASHusepackage] = ACTIONS(12217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12217), + [anon_sym_BSLASHinclude] = ACTIONS(12217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12217), + [anon_sym_BSLASHinput] = ACTIONS(12217), + [anon_sym_BSLASHsubfile] = ACTIONS(12217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12217), + [anon_sym_BSLASHbibliography] = ACTIONS(12217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12217), + [anon_sym_BSLASHincludesvg] = ACTIONS(12217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12217), + [anon_sym_BSLASHimport] = ACTIONS(12217), + [anon_sym_BSLASHsubimport] = ACTIONS(12217), + [anon_sym_BSLASHinputfrom] = ACTIONS(12217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12217), + [anon_sym_BSLASHincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHlabel] = ACTIONS(12217), + [anon_sym_BSLASHref] = ACTIONS(12217), + [anon_sym_BSLASHvref] = ACTIONS(12217), + [anon_sym_BSLASHVref] = ACTIONS(12217), + [anon_sym_BSLASHautoref] = ACTIONS(12217), + [anon_sym_BSLASHpageref] = ACTIONS(12217), + [anon_sym_BSLASHcref] = ACTIONS(12217), + [anon_sym_BSLASHCref] = ACTIONS(12217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnameCref] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHlabelcref] = ACTIONS(12217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12217), + [anon_sym_BSLASHeqref] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange] = ACTIONS(12217), + [anon_sym_BSLASHCrefrange] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewlabel] = ACTIONS(12217), + [anon_sym_BSLASHnewcommand] = ACTIONS(12217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12217), + [anon_sym_BSLASHgls] = ACTIONS(12217), + [anon_sym_BSLASHGls] = ACTIONS(12217), + [anon_sym_BSLASHGLS] = ACTIONS(12217), + [anon_sym_BSLASHglspl] = ACTIONS(12217), + [anon_sym_BSLASHGlspl] = ACTIONS(12217), + [anon_sym_BSLASHGLSpl] = ACTIONS(12217), + [anon_sym_BSLASHglsdisp] = ACTIONS(12217), + [anon_sym_BSLASHglslink] = ACTIONS(12217), + [anon_sym_BSLASHglstext] = ACTIONS(12217), + [anon_sym_BSLASHGlstext] = ACTIONS(12217), + [anon_sym_BSLASHGLStext] = ACTIONS(12217), + [anon_sym_BSLASHglsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12217), + [anon_sym_BSLASHglsplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSplural] = ACTIONS(12217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHglsname] = ACTIONS(12217), + [anon_sym_BSLASHGlsname] = ACTIONS(12217), + [anon_sym_BSLASHGLSname] = ACTIONS(12217), + [anon_sym_BSLASHglssymbol] = ACTIONS(12217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12217), + [anon_sym_BSLASHglsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12217), + [anon_sym_BSLASHglsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12217), + [anon_sym_BSLASHglsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12217), + [anon_sym_BSLASHglsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12217), + [anon_sym_BSLASHglsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12217), + [anon_sym_BSLASHnewacronym] = ACTIONS(12217), + [anon_sym_BSLASHacrshort] = ACTIONS(12217), + [anon_sym_BSLASHAcrshort] = ACTIONS(12217), + [anon_sym_BSLASHACRshort] = ACTIONS(12217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12217), + [anon_sym_BSLASHacrlong] = ACTIONS(12217), + [anon_sym_BSLASHAcrlong] = ACTIONS(12217), + [anon_sym_BSLASHACRlong] = ACTIONS(12217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12217), + [anon_sym_BSLASHacrfull] = ACTIONS(12217), + [anon_sym_BSLASHAcrfull] = ACTIONS(12217), + [anon_sym_BSLASHACRfull] = ACTIONS(12217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12217), + [anon_sym_BSLASHacs] = ACTIONS(12217), + [anon_sym_BSLASHAcs] = ACTIONS(12217), + [anon_sym_BSLASHacsp] = ACTIONS(12217), + [anon_sym_BSLASHAcsp] = ACTIONS(12217), + [anon_sym_BSLASHacl] = ACTIONS(12217), + [anon_sym_BSLASHAcl] = ACTIONS(12217), + [anon_sym_BSLASHaclp] = ACTIONS(12217), + [anon_sym_BSLASHAclp] = ACTIONS(12217), + [anon_sym_BSLASHacf] = ACTIONS(12217), + [anon_sym_BSLASHAcf] = ACTIONS(12217), + [anon_sym_BSLASHacfp] = ACTIONS(12217), + [anon_sym_BSLASHAcfp] = ACTIONS(12217), + [anon_sym_BSLASHac] = ACTIONS(12217), + [anon_sym_BSLASHAc] = ACTIONS(12217), + [anon_sym_BSLASHacp] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12217), + [anon_sym_BSLASHcolor] = ACTIONS(12217), + [anon_sym_BSLASHcolorbox] = ACTIONS(12217), + [anon_sym_BSLASHtextcolor] = ACTIONS(12217), + [anon_sym_BSLASHpagecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12217), + }, + [1872] = { + [sym_brace_group] = STATE(3266), + [sym_generic_command_name] = ACTIONS(12054), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12052), + [anon_sym_RBRACK] = ACTIONS(12052), + [anon_sym_LBRACE] = ACTIONS(27), + [anon_sym_RBRACE] = ACTIONS(12052), + [anon_sym_LPAREN] = ACTIONS(12052), + [anon_sym_COMMA] = ACTIONS(12052), + [anon_sym_EQ] = ACTIONS(12052), + [sym_word] = ACTIONS(12052), + [sym_param] = ACTIONS(12052), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12052), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12052), + [anon_sym_DOLLAR] = ACTIONS(12054), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12052), + [anon_sym_BSLASHbegin] = ACTIONS(12054), + [anon_sym_BSLASHcaption] = ACTIONS(12054), + [anon_sym_BSLASHcite] = ACTIONS(12054), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCite] = ACTIONS(12054), + [anon_sym_BSLASHnocite] = ACTIONS(12054), + [anon_sym_BSLASHcitet] = ACTIONS(12054), + [anon_sym_BSLASHcitep] = ACTIONS(12054), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteauthor] = ACTIONS(12054), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12054), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitetitle] = ACTIONS(12054), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteyear] = ACTIONS(12054), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12052), + [anon_sym_BSLASHcitedate] = ACTIONS(12054), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12052), + [anon_sym_BSLASHciteurl] = ACTIONS(12054), + [anon_sym_BSLASHfullcite] = ACTIONS(12054), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12054), + [anon_sym_BSLASHcitealt] = ACTIONS(12054), + [anon_sym_BSLASHcitealp] = ACTIONS(12054), + [anon_sym_BSLASHcitetext] = ACTIONS(12054), + [anon_sym_BSLASHparencite] = ACTIONS(12054), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHParencite] = ACTIONS(12054), + [anon_sym_BSLASHfootcite] = ACTIONS(12054), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12054), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12054), + [anon_sym_BSLASHtextcite] = ACTIONS(12054), + [anon_sym_BSLASHTextcite] = ACTIONS(12054), + [anon_sym_BSLASHsmartcite] = ACTIONS(12054), + [anon_sym_BSLASHSmartcite] = ACTIONS(12054), + [anon_sym_BSLASHsupercite] = ACTIONS(12054), + [anon_sym_BSLASHautocite] = ACTIONS(12054), + [anon_sym_BSLASHAutocite] = ACTIONS(12054), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12052), + [anon_sym_BSLASHvolcite] = ACTIONS(12054), + [anon_sym_BSLASHVolcite] = ACTIONS(12054), + [anon_sym_BSLASHpvolcite] = ACTIONS(12054), + [anon_sym_BSLASHPvolcite] = ACTIONS(12054), + [anon_sym_BSLASHfvolcite] = ACTIONS(12054), + [anon_sym_BSLASHftvolcite] = ACTIONS(12054), + [anon_sym_BSLASHsvolcite] = ACTIONS(12054), + [anon_sym_BSLASHSvolcite] = ACTIONS(12054), + [anon_sym_BSLASHtvolcite] = ACTIONS(12054), + [anon_sym_BSLASHTvolcite] = ACTIONS(12054), + [anon_sym_BSLASHavolcite] = ACTIONS(12054), + [anon_sym_BSLASHAvolcite] = ACTIONS(12054), + [anon_sym_BSLASHnotecite] = ACTIONS(12054), + [anon_sym_BSLASHpnotecite] = ACTIONS(12054), + [anon_sym_BSLASHPnotecite] = ACTIONS(12054), + [anon_sym_BSLASHfnotecite] = ACTIONS(12054), + [anon_sym_BSLASHusepackage] = ACTIONS(12054), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12054), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12054), + [anon_sym_BSLASHinclude] = ACTIONS(12054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12054), + [anon_sym_BSLASHinput] = ACTIONS(12054), + [anon_sym_BSLASHsubfile] = ACTIONS(12054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12054), + [anon_sym_BSLASHbibliography] = ACTIONS(12054), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12054), + [anon_sym_BSLASHincludesvg] = ACTIONS(12054), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12054), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12054), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12054), + [anon_sym_BSLASHimport] = ACTIONS(12054), + [anon_sym_BSLASHsubimport] = ACTIONS(12054), + [anon_sym_BSLASHinputfrom] = ACTIONS(12054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12054), + [anon_sym_BSLASHincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12054), + [anon_sym_BSLASHlabel] = ACTIONS(12054), + [anon_sym_BSLASHref] = ACTIONS(12054), + [anon_sym_BSLASHvref] = ACTIONS(12054), + [anon_sym_BSLASHVref] = ACTIONS(12054), + [anon_sym_BSLASHautoref] = ACTIONS(12054), + [anon_sym_BSLASHpageref] = ACTIONS(12054), + [anon_sym_BSLASHcref] = ACTIONS(12054), + [anon_sym_BSLASHCref] = ACTIONS(12054), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnameCref] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12054), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12054), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12054), + [anon_sym_BSLASHlabelcref] = ACTIONS(12054), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12054), + [anon_sym_BSLASHeqref] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange] = ACTIONS(12054), + [anon_sym_BSLASHCrefrange] = ACTIONS(12054), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewlabel] = ACTIONS(12054), + [anon_sym_BSLASHnewcommand] = ACTIONS(12054), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12054), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12052), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12054), + [anon_sym_BSLASHgls] = ACTIONS(12054), + [anon_sym_BSLASHGls] = ACTIONS(12054), + [anon_sym_BSLASHGLS] = ACTIONS(12054), + [anon_sym_BSLASHglspl] = ACTIONS(12054), + [anon_sym_BSLASHGlspl] = ACTIONS(12054), + [anon_sym_BSLASHGLSpl] = ACTIONS(12054), + [anon_sym_BSLASHglsdisp] = ACTIONS(12054), + [anon_sym_BSLASHglslink] = ACTIONS(12054), + [anon_sym_BSLASHglstext] = ACTIONS(12054), + [anon_sym_BSLASHGlstext] = ACTIONS(12054), + [anon_sym_BSLASHGLStext] = ACTIONS(12054), + [anon_sym_BSLASHglsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12054), + [anon_sym_BSLASHglsplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSplural] = ACTIONS(12054), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12054), + [anon_sym_BSLASHglsname] = ACTIONS(12054), + [anon_sym_BSLASHGlsname] = ACTIONS(12054), + [anon_sym_BSLASHGLSname] = ACTIONS(12054), + [anon_sym_BSLASHglssymbol] = ACTIONS(12054), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12054), + [anon_sym_BSLASHglsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12054), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12054), + [anon_sym_BSLASHglsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12054), + [anon_sym_BSLASHglsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12054), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12054), + [anon_sym_BSLASHglsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12054), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12054), + [anon_sym_BSLASHglsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12054), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12054), + [anon_sym_BSLASHnewacronym] = ACTIONS(12054), + [anon_sym_BSLASHacrshort] = ACTIONS(12054), + [anon_sym_BSLASHAcrshort] = ACTIONS(12054), + [anon_sym_BSLASHACRshort] = ACTIONS(12054), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12054), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12054), + [anon_sym_BSLASHacrlong] = ACTIONS(12054), + [anon_sym_BSLASHAcrlong] = ACTIONS(12054), + [anon_sym_BSLASHACRlong] = ACTIONS(12054), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12054), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12054), + [anon_sym_BSLASHacrfull] = ACTIONS(12054), + [anon_sym_BSLASHAcrfull] = ACTIONS(12054), + [anon_sym_BSLASHACRfull] = ACTIONS(12054), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12054), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12054), + [anon_sym_BSLASHacs] = ACTIONS(12054), + [anon_sym_BSLASHAcs] = ACTIONS(12054), + [anon_sym_BSLASHacsp] = ACTIONS(12054), + [anon_sym_BSLASHAcsp] = ACTIONS(12054), + [anon_sym_BSLASHacl] = ACTIONS(12054), + [anon_sym_BSLASHAcl] = ACTIONS(12054), + [anon_sym_BSLASHaclp] = ACTIONS(12054), + [anon_sym_BSLASHAclp] = ACTIONS(12054), + [anon_sym_BSLASHacf] = ACTIONS(12054), + [anon_sym_BSLASHAcf] = ACTIONS(12054), + [anon_sym_BSLASHacfp] = ACTIONS(12054), + [anon_sym_BSLASHAcfp] = ACTIONS(12054), + [anon_sym_BSLASHac] = ACTIONS(12054), + [anon_sym_BSLASHAc] = ACTIONS(12054), + [anon_sym_BSLASHacp] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12054), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12054), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12054), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12054), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12054), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12054), + [anon_sym_BSLASHcolor] = ACTIONS(12054), + [anon_sym_BSLASHcolorbox] = ACTIONS(12054), + [anon_sym_BSLASHtextcolor] = ACTIONS(12054), + [anon_sym_BSLASHpagecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12054), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12054), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12054), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12054), + }, + [1873] = { + [sym_generic_command_name] = ACTIONS(12501), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12499), + [anon_sym_RBRACK] = ACTIONS(12499), + [anon_sym_LBRACE] = ACTIONS(12499), + [anon_sym_RBRACE] = ACTIONS(12499), + [anon_sym_LPAREN] = ACTIONS(12499), + [anon_sym_COMMA] = ACTIONS(12499), + [anon_sym_EQ] = ACTIONS(12499), + [sym_word] = ACTIONS(12499), + [sym_param] = ACTIONS(12499), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12499), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12499), + [anon_sym_DOLLAR] = ACTIONS(12501), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12499), + [anon_sym_BSLASHbegin] = ACTIONS(12501), + [anon_sym_BSLASHcaption] = ACTIONS(12501), + [anon_sym_BSLASHcite] = ACTIONS(12501), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCite] = ACTIONS(12501), + [anon_sym_BSLASHnocite] = ACTIONS(12501), + [anon_sym_BSLASHcitet] = ACTIONS(12501), + [anon_sym_BSLASHcitep] = ACTIONS(12501), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteauthor] = ACTIONS(12501), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12501), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitetitle] = ACTIONS(12501), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteyear] = ACTIONS(12501), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12499), + [anon_sym_BSLASHcitedate] = ACTIONS(12501), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12499), + [anon_sym_BSLASHciteurl] = ACTIONS(12501), + [anon_sym_BSLASHfullcite] = ACTIONS(12501), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12501), + [anon_sym_BSLASHcitealt] = ACTIONS(12501), + [anon_sym_BSLASHcitealp] = ACTIONS(12501), + [anon_sym_BSLASHcitetext] = ACTIONS(12501), + [anon_sym_BSLASHparencite] = ACTIONS(12501), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHParencite] = ACTIONS(12501), + [anon_sym_BSLASHfootcite] = ACTIONS(12501), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12501), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12501), + [anon_sym_BSLASHtextcite] = ACTIONS(12501), + [anon_sym_BSLASHTextcite] = ACTIONS(12501), + [anon_sym_BSLASHsmartcite] = ACTIONS(12501), + [anon_sym_BSLASHSmartcite] = ACTIONS(12501), + [anon_sym_BSLASHsupercite] = ACTIONS(12501), + [anon_sym_BSLASHautocite] = ACTIONS(12501), + [anon_sym_BSLASHAutocite] = ACTIONS(12501), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12499), + [anon_sym_BSLASHvolcite] = ACTIONS(12501), + [anon_sym_BSLASHVolcite] = ACTIONS(12501), + [anon_sym_BSLASHpvolcite] = ACTIONS(12501), + [anon_sym_BSLASHPvolcite] = ACTIONS(12501), + [anon_sym_BSLASHfvolcite] = ACTIONS(12501), + [anon_sym_BSLASHftvolcite] = ACTIONS(12501), + [anon_sym_BSLASHsvolcite] = ACTIONS(12501), + [anon_sym_BSLASHSvolcite] = ACTIONS(12501), + [anon_sym_BSLASHtvolcite] = ACTIONS(12501), + [anon_sym_BSLASHTvolcite] = ACTIONS(12501), + [anon_sym_BSLASHavolcite] = ACTIONS(12501), + [anon_sym_BSLASHAvolcite] = ACTIONS(12501), + [anon_sym_BSLASHnotecite] = ACTIONS(12501), + [anon_sym_BSLASHpnotecite] = ACTIONS(12501), + [anon_sym_BSLASHPnotecite] = ACTIONS(12501), + [anon_sym_BSLASHfnotecite] = ACTIONS(12501), + [anon_sym_BSLASHusepackage] = ACTIONS(12501), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12501), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12501), + [anon_sym_BSLASHinclude] = ACTIONS(12501), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12501), + [anon_sym_BSLASHinput] = ACTIONS(12501), + [anon_sym_BSLASHsubfile] = ACTIONS(12501), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12501), + [anon_sym_BSLASHbibliography] = ACTIONS(12501), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12501), + [anon_sym_BSLASHincludesvg] = ACTIONS(12501), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12501), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12501), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12501), + [anon_sym_BSLASHimport] = ACTIONS(12501), + [anon_sym_BSLASHsubimport] = ACTIONS(12501), + [anon_sym_BSLASHinputfrom] = ACTIONS(12501), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12501), + [anon_sym_BSLASHincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12501), + [anon_sym_BSLASHlabel] = ACTIONS(12501), + [anon_sym_BSLASHref] = ACTIONS(12501), + [anon_sym_BSLASHvref] = ACTIONS(12501), + [anon_sym_BSLASHVref] = ACTIONS(12501), + [anon_sym_BSLASHautoref] = ACTIONS(12501), + [anon_sym_BSLASHpageref] = ACTIONS(12501), + [anon_sym_BSLASHcref] = ACTIONS(12501), + [anon_sym_BSLASHCref] = ACTIONS(12501), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnameCref] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12501), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12501), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12501), + [anon_sym_BSLASHlabelcref] = ACTIONS(12501), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12501), + [anon_sym_BSLASHeqref] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange] = ACTIONS(12501), + [anon_sym_BSLASHCrefrange] = ACTIONS(12501), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewlabel] = ACTIONS(12501), + [anon_sym_BSLASHnewcommand] = ACTIONS(12501), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12501), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12499), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12501), + [anon_sym_BSLASHgls] = ACTIONS(12501), + [anon_sym_BSLASHGls] = ACTIONS(12501), + [anon_sym_BSLASHGLS] = ACTIONS(12501), + [anon_sym_BSLASHglspl] = ACTIONS(12501), + [anon_sym_BSLASHGlspl] = ACTIONS(12501), + [anon_sym_BSLASHGLSpl] = ACTIONS(12501), + [anon_sym_BSLASHglsdisp] = ACTIONS(12501), + [anon_sym_BSLASHglslink] = ACTIONS(12501), + [anon_sym_BSLASHglstext] = ACTIONS(12501), + [anon_sym_BSLASHGlstext] = ACTIONS(12501), + [anon_sym_BSLASHGLStext] = ACTIONS(12501), + [anon_sym_BSLASHglsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12501), + [anon_sym_BSLASHglsplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSplural] = ACTIONS(12501), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12501), + [anon_sym_BSLASHglsname] = ACTIONS(12501), + [anon_sym_BSLASHGlsname] = ACTIONS(12501), + [anon_sym_BSLASHGLSname] = ACTIONS(12501), + [anon_sym_BSLASHglssymbol] = ACTIONS(12501), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12501), + [anon_sym_BSLASHglsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12501), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12501), + [anon_sym_BSLASHglsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12501), + [anon_sym_BSLASHglsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12501), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12501), + [anon_sym_BSLASHglsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12501), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12501), + [anon_sym_BSLASHglsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12501), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12501), + [anon_sym_BSLASHnewacronym] = ACTIONS(12501), + [anon_sym_BSLASHacrshort] = ACTIONS(12501), + [anon_sym_BSLASHAcrshort] = ACTIONS(12501), + [anon_sym_BSLASHACRshort] = ACTIONS(12501), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12501), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12501), + [anon_sym_BSLASHacrlong] = ACTIONS(12501), + [anon_sym_BSLASHAcrlong] = ACTIONS(12501), + [anon_sym_BSLASHACRlong] = ACTIONS(12501), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12501), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12501), + [anon_sym_BSLASHacrfull] = ACTIONS(12501), + [anon_sym_BSLASHAcrfull] = ACTIONS(12501), + [anon_sym_BSLASHACRfull] = ACTIONS(12501), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12501), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12501), + [anon_sym_BSLASHacs] = ACTIONS(12501), + [anon_sym_BSLASHAcs] = ACTIONS(12501), + [anon_sym_BSLASHacsp] = ACTIONS(12501), + [anon_sym_BSLASHAcsp] = ACTIONS(12501), + [anon_sym_BSLASHacl] = ACTIONS(12501), + [anon_sym_BSLASHAcl] = ACTIONS(12501), + [anon_sym_BSLASHaclp] = ACTIONS(12501), + [anon_sym_BSLASHAclp] = ACTIONS(12501), + [anon_sym_BSLASHacf] = ACTIONS(12501), + [anon_sym_BSLASHAcf] = ACTIONS(12501), + [anon_sym_BSLASHacfp] = ACTIONS(12501), + [anon_sym_BSLASHAcfp] = ACTIONS(12501), + [anon_sym_BSLASHac] = ACTIONS(12501), + [anon_sym_BSLASHAc] = ACTIONS(12501), + [anon_sym_BSLASHacp] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12501), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12501), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12501), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12501), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12501), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12501), + [anon_sym_BSLASHcolor] = ACTIONS(12501), + [anon_sym_BSLASHcolorbox] = ACTIONS(12501), + [anon_sym_BSLASHtextcolor] = ACTIONS(12501), + [anon_sym_BSLASHpagecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12501), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12501), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12501), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12501), + }, + [1874] = { + [sym_generic_command_name] = ACTIONS(12505), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12503), + [anon_sym_RBRACK] = ACTIONS(12503), + [anon_sym_LBRACE] = ACTIONS(12503), + [anon_sym_RBRACE] = ACTIONS(12503), + [anon_sym_LPAREN] = ACTIONS(12503), + [anon_sym_COMMA] = ACTIONS(12503), + [anon_sym_EQ] = ACTIONS(12503), + [sym_word] = ACTIONS(12503), + [sym_param] = ACTIONS(12503), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12503), + [anon_sym_DOLLAR] = ACTIONS(12505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12503), + [anon_sym_BSLASHbegin] = ACTIONS(12505), + [anon_sym_BSLASHcaption] = ACTIONS(12505), + [anon_sym_BSLASHcite] = ACTIONS(12505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCite] = ACTIONS(12505), + [anon_sym_BSLASHnocite] = ACTIONS(12505), + [anon_sym_BSLASHcitet] = ACTIONS(12505), + [anon_sym_BSLASHcitep] = ACTIONS(12505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteauthor] = ACTIONS(12505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitetitle] = ACTIONS(12505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteyear] = ACTIONS(12505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12503), + [anon_sym_BSLASHcitedate] = ACTIONS(12505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12503), + [anon_sym_BSLASHciteurl] = ACTIONS(12505), + [anon_sym_BSLASHfullcite] = ACTIONS(12505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12505), + [anon_sym_BSLASHcitealt] = ACTIONS(12505), + [anon_sym_BSLASHcitealp] = ACTIONS(12505), + [anon_sym_BSLASHcitetext] = ACTIONS(12505), + [anon_sym_BSLASHparencite] = ACTIONS(12505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHParencite] = ACTIONS(12505), + [anon_sym_BSLASHfootcite] = ACTIONS(12505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12505), + [anon_sym_BSLASHtextcite] = ACTIONS(12505), + [anon_sym_BSLASHTextcite] = ACTIONS(12505), + [anon_sym_BSLASHsmartcite] = ACTIONS(12505), + [anon_sym_BSLASHSmartcite] = ACTIONS(12505), + [anon_sym_BSLASHsupercite] = ACTIONS(12505), + [anon_sym_BSLASHautocite] = ACTIONS(12505), + [anon_sym_BSLASHAutocite] = ACTIONS(12505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12503), + [anon_sym_BSLASHvolcite] = ACTIONS(12505), + [anon_sym_BSLASHVolcite] = ACTIONS(12505), + [anon_sym_BSLASHpvolcite] = ACTIONS(12505), + [anon_sym_BSLASHPvolcite] = ACTIONS(12505), + [anon_sym_BSLASHfvolcite] = ACTIONS(12505), + [anon_sym_BSLASHftvolcite] = ACTIONS(12505), + [anon_sym_BSLASHsvolcite] = ACTIONS(12505), + [anon_sym_BSLASHSvolcite] = ACTIONS(12505), + [anon_sym_BSLASHtvolcite] = ACTIONS(12505), + [anon_sym_BSLASHTvolcite] = ACTIONS(12505), + [anon_sym_BSLASHavolcite] = ACTIONS(12505), + [anon_sym_BSLASHAvolcite] = ACTIONS(12505), + [anon_sym_BSLASHnotecite] = ACTIONS(12505), + [anon_sym_BSLASHpnotecite] = ACTIONS(12505), + [anon_sym_BSLASHPnotecite] = ACTIONS(12505), + [anon_sym_BSLASHfnotecite] = ACTIONS(12505), + [anon_sym_BSLASHusepackage] = ACTIONS(12505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12505), + [anon_sym_BSLASHinclude] = ACTIONS(12505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12505), + [anon_sym_BSLASHinput] = ACTIONS(12505), + [anon_sym_BSLASHsubfile] = ACTIONS(12505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12505), + [anon_sym_BSLASHbibliography] = ACTIONS(12505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12505), + [anon_sym_BSLASHincludesvg] = ACTIONS(12505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12505), + [anon_sym_BSLASHimport] = ACTIONS(12505), + [anon_sym_BSLASHsubimport] = ACTIONS(12505), + [anon_sym_BSLASHinputfrom] = ACTIONS(12505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12505), + [anon_sym_BSLASHincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12505), + [anon_sym_BSLASHlabel] = ACTIONS(12505), + [anon_sym_BSLASHref] = ACTIONS(12505), + [anon_sym_BSLASHvref] = ACTIONS(12505), + [anon_sym_BSLASHVref] = ACTIONS(12505), + [anon_sym_BSLASHautoref] = ACTIONS(12505), + [anon_sym_BSLASHpageref] = ACTIONS(12505), + [anon_sym_BSLASHcref] = ACTIONS(12505), + [anon_sym_BSLASHCref] = ACTIONS(12505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnameCref] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12505), + [anon_sym_BSLASHlabelcref] = ACTIONS(12505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12505), + [anon_sym_BSLASHeqref] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange] = ACTIONS(12505), + [anon_sym_BSLASHCrefrange] = ACTIONS(12505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewlabel] = ACTIONS(12505), + [anon_sym_BSLASHnewcommand] = ACTIONS(12505), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12503), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12505), + [anon_sym_BSLASHgls] = ACTIONS(12505), + [anon_sym_BSLASHGls] = ACTIONS(12505), + [anon_sym_BSLASHGLS] = ACTIONS(12505), + [anon_sym_BSLASHglspl] = ACTIONS(12505), + [anon_sym_BSLASHGlspl] = ACTIONS(12505), + [anon_sym_BSLASHGLSpl] = ACTIONS(12505), + [anon_sym_BSLASHglsdisp] = ACTIONS(12505), + [anon_sym_BSLASHglslink] = ACTIONS(12505), + [anon_sym_BSLASHglstext] = ACTIONS(12505), + [anon_sym_BSLASHGlstext] = ACTIONS(12505), + [anon_sym_BSLASHGLStext] = ACTIONS(12505), + [anon_sym_BSLASHglsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12505), + [anon_sym_BSLASHglsplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSplural] = ACTIONS(12505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12505), + [anon_sym_BSLASHglsname] = ACTIONS(12505), + [anon_sym_BSLASHGlsname] = ACTIONS(12505), + [anon_sym_BSLASHGLSname] = ACTIONS(12505), + [anon_sym_BSLASHglssymbol] = ACTIONS(12505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12505), + [anon_sym_BSLASHglsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12505), + [anon_sym_BSLASHglsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12505), + [anon_sym_BSLASHglsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12505), + [anon_sym_BSLASHglsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12505), + [anon_sym_BSLASHglsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12505), + [anon_sym_BSLASHnewacronym] = ACTIONS(12505), + [anon_sym_BSLASHacrshort] = ACTIONS(12505), + [anon_sym_BSLASHAcrshort] = ACTIONS(12505), + [anon_sym_BSLASHACRshort] = ACTIONS(12505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12505), + [anon_sym_BSLASHacrlong] = ACTIONS(12505), + [anon_sym_BSLASHAcrlong] = ACTIONS(12505), + [anon_sym_BSLASHACRlong] = ACTIONS(12505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12505), + [anon_sym_BSLASHacrfull] = ACTIONS(12505), + [anon_sym_BSLASHAcrfull] = ACTIONS(12505), + [anon_sym_BSLASHACRfull] = ACTIONS(12505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12505), + [anon_sym_BSLASHacs] = ACTIONS(12505), + [anon_sym_BSLASHAcs] = ACTIONS(12505), + [anon_sym_BSLASHacsp] = ACTIONS(12505), + [anon_sym_BSLASHAcsp] = ACTIONS(12505), + [anon_sym_BSLASHacl] = ACTIONS(12505), + [anon_sym_BSLASHAcl] = ACTIONS(12505), + [anon_sym_BSLASHaclp] = ACTIONS(12505), + [anon_sym_BSLASHAclp] = ACTIONS(12505), + [anon_sym_BSLASHacf] = ACTIONS(12505), + [anon_sym_BSLASHAcf] = ACTIONS(12505), + [anon_sym_BSLASHacfp] = ACTIONS(12505), + [anon_sym_BSLASHAcfp] = ACTIONS(12505), + [anon_sym_BSLASHac] = ACTIONS(12505), + [anon_sym_BSLASHAc] = ACTIONS(12505), + [anon_sym_BSLASHacp] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12505), + [anon_sym_BSLASHcolor] = ACTIONS(12505), + [anon_sym_BSLASHcolorbox] = ACTIONS(12505), + [anon_sym_BSLASHtextcolor] = ACTIONS(12505), + [anon_sym_BSLASHpagecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12505), + }, + [1875] = { + [sym_generic_command_name] = ACTIONS(12267), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12265), + [anon_sym_RBRACK] = ACTIONS(12265), + [anon_sym_LBRACE] = ACTIONS(12265), + [anon_sym_RBRACE] = ACTIONS(12265), + [anon_sym_LPAREN] = ACTIONS(12265), + [anon_sym_COMMA] = ACTIONS(12265), + [anon_sym_EQ] = ACTIONS(12265), + [sym_word] = ACTIONS(12265), + [sym_param] = ACTIONS(12265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12265), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12265), + [anon_sym_DOLLAR] = ACTIONS(12267), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12265), + [anon_sym_BSLASHbegin] = ACTIONS(12267), + [anon_sym_BSLASHcaption] = ACTIONS(12267), + [anon_sym_BSLASHcite] = ACTIONS(12267), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCite] = ACTIONS(12267), + [anon_sym_BSLASHnocite] = ACTIONS(12267), + [anon_sym_BSLASHcitet] = ACTIONS(12267), + [anon_sym_BSLASHcitep] = ACTIONS(12267), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteauthor] = ACTIONS(12267), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12267), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitetitle] = ACTIONS(12267), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteyear] = ACTIONS(12267), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12265), + [anon_sym_BSLASHcitedate] = ACTIONS(12267), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12265), + [anon_sym_BSLASHciteurl] = ACTIONS(12267), + [anon_sym_BSLASHfullcite] = ACTIONS(12267), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12267), + [anon_sym_BSLASHcitealt] = ACTIONS(12267), + [anon_sym_BSLASHcitealp] = ACTIONS(12267), + [anon_sym_BSLASHcitetext] = ACTIONS(12267), + [anon_sym_BSLASHparencite] = ACTIONS(12267), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHParencite] = ACTIONS(12267), + [anon_sym_BSLASHfootcite] = ACTIONS(12267), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12267), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12267), + [anon_sym_BSLASHtextcite] = ACTIONS(12267), + [anon_sym_BSLASHTextcite] = ACTIONS(12267), + [anon_sym_BSLASHsmartcite] = ACTIONS(12267), + [anon_sym_BSLASHSmartcite] = ACTIONS(12267), + [anon_sym_BSLASHsupercite] = ACTIONS(12267), + [anon_sym_BSLASHautocite] = ACTIONS(12267), + [anon_sym_BSLASHAutocite] = ACTIONS(12267), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12265), + [anon_sym_BSLASHvolcite] = ACTIONS(12267), + [anon_sym_BSLASHVolcite] = ACTIONS(12267), + [anon_sym_BSLASHpvolcite] = ACTIONS(12267), + [anon_sym_BSLASHPvolcite] = ACTIONS(12267), + [anon_sym_BSLASHfvolcite] = ACTIONS(12267), + [anon_sym_BSLASHftvolcite] = ACTIONS(12267), + [anon_sym_BSLASHsvolcite] = ACTIONS(12267), + [anon_sym_BSLASHSvolcite] = ACTIONS(12267), + [anon_sym_BSLASHtvolcite] = ACTIONS(12267), + [anon_sym_BSLASHTvolcite] = ACTIONS(12267), + [anon_sym_BSLASHavolcite] = ACTIONS(12267), + [anon_sym_BSLASHAvolcite] = ACTIONS(12267), + [anon_sym_BSLASHnotecite] = ACTIONS(12267), + [anon_sym_BSLASHpnotecite] = ACTIONS(12267), + [anon_sym_BSLASHPnotecite] = ACTIONS(12267), + [anon_sym_BSLASHfnotecite] = ACTIONS(12267), + [anon_sym_BSLASHusepackage] = ACTIONS(12267), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12267), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12267), + [anon_sym_BSLASHinclude] = ACTIONS(12267), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12267), + [anon_sym_BSLASHinput] = ACTIONS(12267), + [anon_sym_BSLASHsubfile] = ACTIONS(12267), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12267), + [anon_sym_BSLASHbibliography] = ACTIONS(12267), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12267), + [anon_sym_BSLASHincludesvg] = ACTIONS(12267), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12267), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12267), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12267), + [anon_sym_BSLASHimport] = ACTIONS(12267), + [anon_sym_BSLASHsubimport] = ACTIONS(12267), + [anon_sym_BSLASHinputfrom] = ACTIONS(12267), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12267), + [anon_sym_BSLASHincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12267), + [anon_sym_BSLASHlabel] = ACTIONS(12267), + [anon_sym_BSLASHref] = ACTIONS(12267), + [anon_sym_BSLASHvref] = ACTIONS(12267), + [anon_sym_BSLASHVref] = ACTIONS(12267), + [anon_sym_BSLASHautoref] = ACTIONS(12267), + [anon_sym_BSLASHpageref] = ACTIONS(12267), + [anon_sym_BSLASHcref] = ACTIONS(12267), + [anon_sym_BSLASHCref] = ACTIONS(12267), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnameCref] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12267), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12267), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12267), + [anon_sym_BSLASHlabelcref] = ACTIONS(12267), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12267), + [anon_sym_BSLASHeqref] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange] = ACTIONS(12267), + [anon_sym_BSLASHCrefrange] = ACTIONS(12267), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewlabel] = ACTIONS(12267), + [anon_sym_BSLASHnewcommand] = ACTIONS(12267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12267), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12267), + [anon_sym_BSLASHgls] = ACTIONS(12267), + [anon_sym_BSLASHGls] = ACTIONS(12267), + [anon_sym_BSLASHGLS] = ACTIONS(12267), + [anon_sym_BSLASHglspl] = ACTIONS(12267), + [anon_sym_BSLASHGlspl] = ACTIONS(12267), + [anon_sym_BSLASHGLSpl] = ACTIONS(12267), + [anon_sym_BSLASHglsdisp] = ACTIONS(12267), + [anon_sym_BSLASHglslink] = ACTIONS(12267), + [anon_sym_BSLASHglstext] = ACTIONS(12267), + [anon_sym_BSLASHGlstext] = ACTIONS(12267), + [anon_sym_BSLASHGLStext] = ACTIONS(12267), + [anon_sym_BSLASHglsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12267), + [anon_sym_BSLASHglsplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSplural] = ACTIONS(12267), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12267), + [anon_sym_BSLASHglsname] = ACTIONS(12267), + [anon_sym_BSLASHGlsname] = ACTIONS(12267), + [anon_sym_BSLASHGLSname] = ACTIONS(12267), + [anon_sym_BSLASHglssymbol] = ACTIONS(12267), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12267), + [anon_sym_BSLASHglsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12267), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12267), + [anon_sym_BSLASHglsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12267), + [anon_sym_BSLASHglsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12267), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12267), + [anon_sym_BSLASHglsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12267), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12267), + [anon_sym_BSLASHglsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12267), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12267), + [anon_sym_BSLASHnewacronym] = ACTIONS(12267), + [anon_sym_BSLASHacrshort] = ACTIONS(12267), + [anon_sym_BSLASHAcrshort] = ACTIONS(12267), + [anon_sym_BSLASHACRshort] = ACTIONS(12267), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12267), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12267), + [anon_sym_BSLASHacrlong] = ACTIONS(12267), + [anon_sym_BSLASHAcrlong] = ACTIONS(12267), + [anon_sym_BSLASHACRlong] = ACTIONS(12267), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12267), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12267), + [anon_sym_BSLASHacrfull] = ACTIONS(12267), + [anon_sym_BSLASHAcrfull] = ACTIONS(12267), + [anon_sym_BSLASHACRfull] = ACTIONS(12267), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12267), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12267), + [anon_sym_BSLASHacs] = ACTIONS(12267), + [anon_sym_BSLASHAcs] = ACTIONS(12267), + [anon_sym_BSLASHacsp] = ACTIONS(12267), + [anon_sym_BSLASHAcsp] = ACTIONS(12267), + [anon_sym_BSLASHacl] = ACTIONS(12267), + [anon_sym_BSLASHAcl] = ACTIONS(12267), + [anon_sym_BSLASHaclp] = ACTIONS(12267), + [anon_sym_BSLASHAclp] = ACTIONS(12267), + [anon_sym_BSLASHacf] = ACTIONS(12267), + [anon_sym_BSLASHAcf] = ACTIONS(12267), + [anon_sym_BSLASHacfp] = ACTIONS(12267), + [anon_sym_BSLASHAcfp] = ACTIONS(12267), + [anon_sym_BSLASHac] = ACTIONS(12267), + [anon_sym_BSLASHAc] = ACTIONS(12267), + [anon_sym_BSLASHacp] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12267), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12267), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12267), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12267), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12267), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12267), + [anon_sym_BSLASHcolor] = ACTIONS(12267), + [anon_sym_BSLASHcolorbox] = ACTIONS(12267), + [anon_sym_BSLASHtextcolor] = ACTIONS(12267), + [anon_sym_BSLASHpagecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12267), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12267), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12267), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12267), + }, + [1876] = { + [sym_generic_command_name] = ACTIONS(12319), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12317), + [anon_sym_RBRACK] = ACTIONS(12317), + [anon_sym_LBRACE] = ACTIONS(12317), + [anon_sym_RBRACE] = ACTIONS(12317), + [anon_sym_LPAREN] = ACTIONS(12317), + [anon_sym_COMMA] = ACTIONS(12317), + [anon_sym_EQ] = ACTIONS(12317), + [sym_word] = ACTIONS(12317), + [sym_param] = ACTIONS(12317), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12317), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12317), + [anon_sym_DOLLAR] = ACTIONS(12319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12317), + [anon_sym_BSLASHbegin] = ACTIONS(12319), + [anon_sym_BSLASHcaption] = ACTIONS(12319), + [anon_sym_BSLASHcite] = ACTIONS(12319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCite] = ACTIONS(12319), + [anon_sym_BSLASHnocite] = ACTIONS(12319), + [anon_sym_BSLASHcitet] = ACTIONS(12319), + [anon_sym_BSLASHcitep] = ACTIONS(12319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteauthor] = ACTIONS(12319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitetitle] = ACTIONS(12319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteyear] = ACTIONS(12319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12317), + [anon_sym_BSLASHcitedate] = ACTIONS(12319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12317), + [anon_sym_BSLASHciteurl] = ACTIONS(12319), + [anon_sym_BSLASHfullcite] = ACTIONS(12319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12319), + [anon_sym_BSLASHcitealt] = ACTIONS(12319), + [anon_sym_BSLASHcitealp] = ACTIONS(12319), + [anon_sym_BSLASHcitetext] = ACTIONS(12319), + [anon_sym_BSLASHparencite] = ACTIONS(12319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHParencite] = ACTIONS(12319), + [anon_sym_BSLASHfootcite] = ACTIONS(12319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12319), + [anon_sym_BSLASHtextcite] = ACTIONS(12319), + [anon_sym_BSLASHTextcite] = ACTIONS(12319), + [anon_sym_BSLASHsmartcite] = ACTIONS(12319), + [anon_sym_BSLASHSmartcite] = ACTIONS(12319), + [anon_sym_BSLASHsupercite] = ACTIONS(12319), + [anon_sym_BSLASHautocite] = ACTIONS(12319), + [anon_sym_BSLASHAutocite] = ACTIONS(12319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12317), + [anon_sym_BSLASHvolcite] = ACTIONS(12319), + [anon_sym_BSLASHVolcite] = ACTIONS(12319), + [anon_sym_BSLASHpvolcite] = ACTIONS(12319), + [anon_sym_BSLASHPvolcite] = ACTIONS(12319), + [anon_sym_BSLASHfvolcite] = ACTIONS(12319), + [anon_sym_BSLASHftvolcite] = ACTIONS(12319), + [anon_sym_BSLASHsvolcite] = ACTIONS(12319), + [anon_sym_BSLASHSvolcite] = ACTIONS(12319), + [anon_sym_BSLASHtvolcite] = ACTIONS(12319), + [anon_sym_BSLASHTvolcite] = ACTIONS(12319), + [anon_sym_BSLASHavolcite] = ACTIONS(12319), + [anon_sym_BSLASHAvolcite] = ACTIONS(12319), + [anon_sym_BSLASHnotecite] = ACTIONS(12319), + [anon_sym_BSLASHpnotecite] = ACTIONS(12319), + [anon_sym_BSLASHPnotecite] = ACTIONS(12319), + [anon_sym_BSLASHfnotecite] = ACTIONS(12319), + [anon_sym_BSLASHusepackage] = ACTIONS(12319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12319), + [anon_sym_BSLASHinclude] = ACTIONS(12319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12319), + [anon_sym_BSLASHinput] = ACTIONS(12319), + [anon_sym_BSLASHsubfile] = ACTIONS(12319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12319), + [anon_sym_BSLASHbibliography] = ACTIONS(12319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12319), + [anon_sym_BSLASHincludesvg] = ACTIONS(12319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12319), + [anon_sym_BSLASHimport] = ACTIONS(12319), + [anon_sym_BSLASHsubimport] = ACTIONS(12319), + [anon_sym_BSLASHinputfrom] = ACTIONS(12319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12319), + [anon_sym_BSLASHincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12319), + [anon_sym_BSLASHlabel] = ACTIONS(12319), + [anon_sym_BSLASHref] = ACTIONS(12319), + [anon_sym_BSLASHvref] = ACTIONS(12319), + [anon_sym_BSLASHVref] = ACTIONS(12319), + [anon_sym_BSLASHautoref] = ACTIONS(12319), + [anon_sym_BSLASHpageref] = ACTIONS(12319), + [anon_sym_BSLASHcref] = ACTIONS(12319), + [anon_sym_BSLASHCref] = ACTIONS(12319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnameCref] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12319), + [anon_sym_BSLASHlabelcref] = ACTIONS(12319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12319), + [anon_sym_BSLASHeqref] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange] = ACTIONS(12319), + [anon_sym_BSLASHCrefrange] = ACTIONS(12319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewlabel] = ACTIONS(12319), + [anon_sym_BSLASHnewcommand] = ACTIONS(12319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12317), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12319), + [anon_sym_BSLASHgls] = ACTIONS(12319), + [anon_sym_BSLASHGls] = ACTIONS(12319), + [anon_sym_BSLASHGLS] = ACTIONS(12319), + [anon_sym_BSLASHglspl] = ACTIONS(12319), + [anon_sym_BSLASHGlspl] = ACTIONS(12319), + [anon_sym_BSLASHGLSpl] = ACTIONS(12319), + [anon_sym_BSLASHglsdisp] = ACTIONS(12319), + [anon_sym_BSLASHglslink] = ACTIONS(12319), + [anon_sym_BSLASHglstext] = ACTIONS(12319), + [anon_sym_BSLASHGlstext] = ACTIONS(12319), + [anon_sym_BSLASHGLStext] = ACTIONS(12319), + [anon_sym_BSLASHglsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12319), + [anon_sym_BSLASHglsplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSplural] = ACTIONS(12319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12319), + [anon_sym_BSLASHglsname] = ACTIONS(12319), + [anon_sym_BSLASHGlsname] = ACTIONS(12319), + [anon_sym_BSLASHGLSname] = ACTIONS(12319), + [anon_sym_BSLASHglssymbol] = ACTIONS(12319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12319), + [anon_sym_BSLASHglsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12319), + [anon_sym_BSLASHglsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12319), + [anon_sym_BSLASHglsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12319), + [anon_sym_BSLASHglsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12319), + [anon_sym_BSLASHglsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12319), + [anon_sym_BSLASHnewacronym] = ACTIONS(12319), + [anon_sym_BSLASHacrshort] = ACTIONS(12319), + [anon_sym_BSLASHAcrshort] = ACTIONS(12319), + [anon_sym_BSLASHACRshort] = ACTIONS(12319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12319), + [anon_sym_BSLASHacrlong] = ACTIONS(12319), + [anon_sym_BSLASHAcrlong] = ACTIONS(12319), + [anon_sym_BSLASHACRlong] = ACTIONS(12319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12319), + [anon_sym_BSLASHacrfull] = ACTIONS(12319), + [anon_sym_BSLASHAcrfull] = ACTIONS(12319), + [anon_sym_BSLASHACRfull] = ACTIONS(12319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12319), + [anon_sym_BSLASHacs] = ACTIONS(12319), + [anon_sym_BSLASHAcs] = ACTIONS(12319), + [anon_sym_BSLASHacsp] = ACTIONS(12319), + [anon_sym_BSLASHAcsp] = ACTIONS(12319), + [anon_sym_BSLASHacl] = ACTIONS(12319), + [anon_sym_BSLASHAcl] = ACTIONS(12319), + [anon_sym_BSLASHaclp] = ACTIONS(12319), + [anon_sym_BSLASHAclp] = ACTIONS(12319), + [anon_sym_BSLASHacf] = ACTIONS(12319), + [anon_sym_BSLASHAcf] = ACTIONS(12319), + [anon_sym_BSLASHacfp] = ACTIONS(12319), + [anon_sym_BSLASHAcfp] = ACTIONS(12319), + [anon_sym_BSLASHac] = ACTIONS(12319), + [anon_sym_BSLASHAc] = ACTIONS(12319), + [anon_sym_BSLASHacp] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12319), + [anon_sym_BSLASHcolor] = ACTIONS(12319), + [anon_sym_BSLASHcolorbox] = ACTIONS(12319), + [anon_sym_BSLASHtextcolor] = ACTIONS(12319), + [anon_sym_BSLASHpagecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12319), + }, + [1877] = { + [sym_generic_command_name] = ACTIONS(12263), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12261), + [anon_sym_RBRACK] = ACTIONS(12261), + [anon_sym_LBRACE] = ACTIONS(12261), + [anon_sym_RBRACE] = ACTIONS(12261), + [anon_sym_LPAREN] = ACTIONS(12261), + [anon_sym_COMMA] = ACTIONS(12261), + [anon_sym_EQ] = ACTIONS(12261), + [sym_word] = ACTIONS(12261), + [sym_param] = ACTIONS(12261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12261), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12261), + [anon_sym_DOLLAR] = ACTIONS(12263), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12261), + [anon_sym_BSLASHbegin] = ACTIONS(12263), + [anon_sym_BSLASHcaption] = ACTIONS(12263), + [anon_sym_BSLASHcite] = ACTIONS(12263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCite] = ACTIONS(12263), + [anon_sym_BSLASHnocite] = ACTIONS(12263), + [anon_sym_BSLASHcitet] = ACTIONS(12263), + [anon_sym_BSLASHcitep] = ACTIONS(12263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteauthor] = ACTIONS(12263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitetitle] = ACTIONS(12263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteyear] = ACTIONS(12263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12261), + [anon_sym_BSLASHcitedate] = ACTIONS(12263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12261), + [anon_sym_BSLASHciteurl] = ACTIONS(12263), + [anon_sym_BSLASHfullcite] = ACTIONS(12263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12263), + [anon_sym_BSLASHcitealt] = ACTIONS(12263), + [anon_sym_BSLASHcitealp] = ACTIONS(12263), + [anon_sym_BSLASHcitetext] = ACTIONS(12263), + [anon_sym_BSLASHparencite] = ACTIONS(12263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHParencite] = ACTIONS(12263), + [anon_sym_BSLASHfootcite] = ACTIONS(12263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12263), + [anon_sym_BSLASHtextcite] = ACTIONS(12263), + [anon_sym_BSLASHTextcite] = ACTIONS(12263), + [anon_sym_BSLASHsmartcite] = ACTIONS(12263), + [anon_sym_BSLASHSmartcite] = ACTIONS(12263), + [anon_sym_BSLASHsupercite] = ACTIONS(12263), + [anon_sym_BSLASHautocite] = ACTIONS(12263), + [anon_sym_BSLASHAutocite] = ACTIONS(12263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12261), + [anon_sym_BSLASHvolcite] = ACTIONS(12263), + [anon_sym_BSLASHVolcite] = ACTIONS(12263), + [anon_sym_BSLASHpvolcite] = ACTIONS(12263), + [anon_sym_BSLASHPvolcite] = ACTIONS(12263), + [anon_sym_BSLASHfvolcite] = ACTIONS(12263), + [anon_sym_BSLASHftvolcite] = ACTIONS(12263), + [anon_sym_BSLASHsvolcite] = ACTIONS(12263), + [anon_sym_BSLASHSvolcite] = ACTIONS(12263), + [anon_sym_BSLASHtvolcite] = ACTIONS(12263), + [anon_sym_BSLASHTvolcite] = ACTIONS(12263), + [anon_sym_BSLASHavolcite] = ACTIONS(12263), + [anon_sym_BSLASHAvolcite] = ACTIONS(12263), + [anon_sym_BSLASHnotecite] = ACTIONS(12263), + [anon_sym_BSLASHpnotecite] = ACTIONS(12263), + [anon_sym_BSLASHPnotecite] = ACTIONS(12263), + [anon_sym_BSLASHfnotecite] = ACTIONS(12263), + [anon_sym_BSLASHusepackage] = ACTIONS(12263), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12263), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12263), + [anon_sym_BSLASHinclude] = ACTIONS(12263), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12263), + [anon_sym_BSLASHinput] = ACTIONS(12263), + [anon_sym_BSLASHsubfile] = ACTIONS(12263), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12263), + [anon_sym_BSLASHbibliography] = ACTIONS(12263), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12263), + [anon_sym_BSLASHincludesvg] = ACTIONS(12263), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12263), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12263), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12263), + [anon_sym_BSLASHimport] = ACTIONS(12263), + [anon_sym_BSLASHsubimport] = ACTIONS(12263), + [anon_sym_BSLASHinputfrom] = ACTIONS(12263), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12263), + [anon_sym_BSLASHincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12263), + [anon_sym_BSLASHlabel] = ACTIONS(12263), + [anon_sym_BSLASHref] = ACTIONS(12263), + [anon_sym_BSLASHvref] = ACTIONS(12263), + [anon_sym_BSLASHVref] = ACTIONS(12263), + [anon_sym_BSLASHautoref] = ACTIONS(12263), + [anon_sym_BSLASHpageref] = ACTIONS(12263), + [anon_sym_BSLASHcref] = ACTIONS(12263), + [anon_sym_BSLASHCref] = ACTIONS(12263), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnameCref] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12263), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12263), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12263), + [anon_sym_BSLASHlabelcref] = ACTIONS(12263), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12263), + [anon_sym_BSLASHeqref] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange] = ACTIONS(12263), + [anon_sym_BSLASHCrefrange] = ACTIONS(12263), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewlabel] = ACTIONS(12263), + [anon_sym_BSLASHnewcommand] = ACTIONS(12263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12263), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12263), + [anon_sym_BSLASHgls] = ACTIONS(12263), + [anon_sym_BSLASHGls] = ACTIONS(12263), + [anon_sym_BSLASHGLS] = ACTIONS(12263), + [anon_sym_BSLASHglspl] = ACTIONS(12263), + [anon_sym_BSLASHGlspl] = ACTIONS(12263), + [anon_sym_BSLASHGLSpl] = ACTIONS(12263), + [anon_sym_BSLASHglsdisp] = ACTIONS(12263), + [anon_sym_BSLASHglslink] = ACTIONS(12263), + [anon_sym_BSLASHglstext] = ACTIONS(12263), + [anon_sym_BSLASHGlstext] = ACTIONS(12263), + [anon_sym_BSLASHGLStext] = ACTIONS(12263), + [anon_sym_BSLASHglsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12263), + [anon_sym_BSLASHglsplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSplural] = ACTIONS(12263), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12263), + [anon_sym_BSLASHglsname] = ACTIONS(12263), + [anon_sym_BSLASHGlsname] = ACTIONS(12263), + [anon_sym_BSLASHGLSname] = ACTIONS(12263), + [anon_sym_BSLASHglssymbol] = ACTIONS(12263), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12263), + [anon_sym_BSLASHglsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12263), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12263), + [anon_sym_BSLASHglsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12263), + [anon_sym_BSLASHglsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12263), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12263), + [anon_sym_BSLASHglsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12263), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12263), + [anon_sym_BSLASHglsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12263), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12263), + [anon_sym_BSLASHnewacronym] = ACTIONS(12263), + [anon_sym_BSLASHacrshort] = ACTIONS(12263), + [anon_sym_BSLASHAcrshort] = ACTIONS(12263), + [anon_sym_BSLASHACRshort] = ACTIONS(12263), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12263), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12263), + [anon_sym_BSLASHacrlong] = ACTIONS(12263), + [anon_sym_BSLASHAcrlong] = ACTIONS(12263), + [anon_sym_BSLASHACRlong] = ACTIONS(12263), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12263), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12263), + [anon_sym_BSLASHacrfull] = ACTIONS(12263), + [anon_sym_BSLASHAcrfull] = ACTIONS(12263), + [anon_sym_BSLASHACRfull] = ACTIONS(12263), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12263), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12263), + [anon_sym_BSLASHacs] = ACTIONS(12263), + [anon_sym_BSLASHAcs] = ACTIONS(12263), + [anon_sym_BSLASHacsp] = ACTIONS(12263), + [anon_sym_BSLASHAcsp] = ACTIONS(12263), + [anon_sym_BSLASHacl] = ACTIONS(12263), + [anon_sym_BSLASHAcl] = ACTIONS(12263), + [anon_sym_BSLASHaclp] = ACTIONS(12263), + [anon_sym_BSLASHAclp] = ACTIONS(12263), + [anon_sym_BSLASHacf] = ACTIONS(12263), + [anon_sym_BSLASHAcf] = ACTIONS(12263), + [anon_sym_BSLASHacfp] = ACTIONS(12263), + [anon_sym_BSLASHAcfp] = ACTIONS(12263), + [anon_sym_BSLASHac] = ACTIONS(12263), + [anon_sym_BSLASHAc] = ACTIONS(12263), + [anon_sym_BSLASHacp] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12263), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12263), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12263), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12263), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12263), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12263), + [anon_sym_BSLASHcolor] = ACTIONS(12263), + [anon_sym_BSLASHcolorbox] = ACTIONS(12263), + [anon_sym_BSLASHtextcolor] = ACTIONS(12263), + [anon_sym_BSLASHpagecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12263), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12263), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12263), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12263), + }, + [1878] = { + [sym_generic_command_name] = ACTIONS(12259), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12257), + [anon_sym_RBRACK] = ACTIONS(12257), + [anon_sym_LBRACE] = ACTIONS(12257), + [anon_sym_RBRACE] = ACTIONS(12257), + [anon_sym_LPAREN] = ACTIONS(12257), + [anon_sym_COMMA] = ACTIONS(12257), + [anon_sym_EQ] = ACTIONS(12257), + [sym_word] = ACTIONS(12257), + [sym_param] = ACTIONS(12257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12257), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12257), + [anon_sym_DOLLAR] = ACTIONS(12259), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12257), + [anon_sym_BSLASHbegin] = ACTIONS(12259), + [anon_sym_BSLASHcaption] = ACTIONS(12259), + [anon_sym_BSLASHcite] = ACTIONS(12259), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCite] = ACTIONS(12259), + [anon_sym_BSLASHnocite] = ACTIONS(12259), + [anon_sym_BSLASHcitet] = ACTIONS(12259), + [anon_sym_BSLASHcitep] = ACTIONS(12259), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteauthor] = ACTIONS(12259), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12259), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitetitle] = ACTIONS(12259), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteyear] = ACTIONS(12259), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12257), + [anon_sym_BSLASHcitedate] = ACTIONS(12259), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12257), + [anon_sym_BSLASHciteurl] = ACTIONS(12259), + [anon_sym_BSLASHfullcite] = ACTIONS(12259), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12259), + [anon_sym_BSLASHcitealt] = ACTIONS(12259), + [anon_sym_BSLASHcitealp] = ACTIONS(12259), + [anon_sym_BSLASHcitetext] = ACTIONS(12259), + [anon_sym_BSLASHparencite] = ACTIONS(12259), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHParencite] = ACTIONS(12259), + [anon_sym_BSLASHfootcite] = ACTIONS(12259), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12259), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12259), + [anon_sym_BSLASHtextcite] = ACTIONS(12259), + [anon_sym_BSLASHTextcite] = ACTIONS(12259), + [anon_sym_BSLASHsmartcite] = ACTIONS(12259), + [anon_sym_BSLASHSmartcite] = ACTIONS(12259), + [anon_sym_BSLASHsupercite] = ACTIONS(12259), + [anon_sym_BSLASHautocite] = ACTIONS(12259), + [anon_sym_BSLASHAutocite] = ACTIONS(12259), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12257), + [anon_sym_BSLASHvolcite] = ACTIONS(12259), + [anon_sym_BSLASHVolcite] = ACTIONS(12259), + [anon_sym_BSLASHpvolcite] = ACTIONS(12259), + [anon_sym_BSLASHPvolcite] = ACTIONS(12259), + [anon_sym_BSLASHfvolcite] = ACTIONS(12259), + [anon_sym_BSLASHftvolcite] = ACTIONS(12259), + [anon_sym_BSLASHsvolcite] = ACTIONS(12259), + [anon_sym_BSLASHSvolcite] = ACTIONS(12259), + [anon_sym_BSLASHtvolcite] = ACTIONS(12259), + [anon_sym_BSLASHTvolcite] = ACTIONS(12259), + [anon_sym_BSLASHavolcite] = ACTIONS(12259), + [anon_sym_BSLASHAvolcite] = ACTIONS(12259), + [anon_sym_BSLASHnotecite] = ACTIONS(12259), + [anon_sym_BSLASHpnotecite] = ACTIONS(12259), + [anon_sym_BSLASHPnotecite] = ACTIONS(12259), + [anon_sym_BSLASHfnotecite] = ACTIONS(12259), + [anon_sym_BSLASHusepackage] = ACTIONS(12259), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12259), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12259), + [anon_sym_BSLASHinclude] = ACTIONS(12259), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12259), + [anon_sym_BSLASHinput] = ACTIONS(12259), + [anon_sym_BSLASHsubfile] = ACTIONS(12259), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12259), + [anon_sym_BSLASHbibliography] = ACTIONS(12259), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12259), + [anon_sym_BSLASHincludesvg] = ACTIONS(12259), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12259), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12259), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12259), + [anon_sym_BSLASHimport] = ACTIONS(12259), + [anon_sym_BSLASHsubimport] = ACTIONS(12259), + [anon_sym_BSLASHinputfrom] = ACTIONS(12259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12259), + [anon_sym_BSLASHincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12259), + [anon_sym_BSLASHlabel] = ACTIONS(12259), + [anon_sym_BSLASHref] = ACTIONS(12259), + [anon_sym_BSLASHvref] = ACTIONS(12259), + [anon_sym_BSLASHVref] = ACTIONS(12259), + [anon_sym_BSLASHautoref] = ACTIONS(12259), + [anon_sym_BSLASHpageref] = ACTIONS(12259), + [anon_sym_BSLASHcref] = ACTIONS(12259), + [anon_sym_BSLASHCref] = ACTIONS(12259), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnameCref] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12259), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12259), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12259), + [anon_sym_BSLASHlabelcref] = ACTIONS(12259), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12259), + [anon_sym_BSLASHeqref] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange] = ACTIONS(12259), + [anon_sym_BSLASHCrefrange] = ACTIONS(12259), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewlabel] = ACTIONS(12259), + [anon_sym_BSLASHnewcommand] = ACTIONS(12259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12259), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12259), + [anon_sym_BSLASHgls] = ACTIONS(12259), + [anon_sym_BSLASHGls] = ACTIONS(12259), + [anon_sym_BSLASHGLS] = ACTIONS(12259), + [anon_sym_BSLASHglspl] = ACTIONS(12259), + [anon_sym_BSLASHGlspl] = ACTIONS(12259), + [anon_sym_BSLASHGLSpl] = ACTIONS(12259), + [anon_sym_BSLASHglsdisp] = ACTIONS(12259), + [anon_sym_BSLASHglslink] = ACTIONS(12259), + [anon_sym_BSLASHglstext] = ACTIONS(12259), + [anon_sym_BSLASHGlstext] = ACTIONS(12259), + [anon_sym_BSLASHGLStext] = ACTIONS(12259), + [anon_sym_BSLASHglsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12259), + [anon_sym_BSLASHglsplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSplural] = ACTIONS(12259), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12259), + [anon_sym_BSLASHglsname] = ACTIONS(12259), + [anon_sym_BSLASHGlsname] = ACTIONS(12259), + [anon_sym_BSLASHGLSname] = ACTIONS(12259), + [anon_sym_BSLASHglssymbol] = ACTIONS(12259), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12259), + [anon_sym_BSLASHglsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12259), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12259), + [anon_sym_BSLASHglsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12259), + [anon_sym_BSLASHglsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12259), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12259), + [anon_sym_BSLASHglsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12259), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12259), + [anon_sym_BSLASHglsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12259), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12259), + [anon_sym_BSLASHnewacronym] = ACTIONS(12259), + [anon_sym_BSLASHacrshort] = ACTIONS(12259), + [anon_sym_BSLASHAcrshort] = ACTIONS(12259), + [anon_sym_BSLASHACRshort] = ACTIONS(12259), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12259), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12259), + [anon_sym_BSLASHacrlong] = ACTIONS(12259), + [anon_sym_BSLASHAcrlong] = ACTIONS(12259), + [anon_sym_BSLASHACRlong] = ACTIONS(12259), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12259), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12259), + [anon_sym_BSLASHacrfull] = ACTIONS(12259), + [anon_sym_BSLASHAcrfull] = ACTIONS(12259), + [anon_sym_BSLASHACRfull] = ACTIONS(12259), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12259), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12259), + [anon_sym_BSLASHacs] = ACTIONS(12259), + [anon_sym_BSLASHAcs] = ACTIONS(12259), + [anon_sym_BSLASHacsp] = ACTIONS(12259), + [anon_sym_BSLASHAcsp] = ACTIONS(12259), + [anon_sym_BSLASHacl] = ACTIONS(12259), + [anon_sym_BSLASHAcl] = ACTIONS(12259), + [anon_sym_BSLASHaclp] = ACTIONS(12259), + [anon_sym_BSLASHAclp] = ACTIONS(12259), + [anon_sym_BSLASHacf] = ACTIONS(12259), + [anon_sym_BSLASHAcf] = ACTIONS(12259), + [anon_sym_BSLASHacfp] = ACTIONS(12259), + [anon_sym_BSLASHAcfp] = ACTIONS(12259), + [anon_sym_BSLASHac] = ACTIONS(12259), + [anon_sym_BSLASHAc] = ACTIONS(12259), + [anon_sym_BSLASHacp] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12259), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12259), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12259), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12259), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12259), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12259), + [anon_sym_BSLASHcolor] = ACTIONS(12259), + [anon_sym_BSLASHcolorbox] = ACTIONS(12259), + [anon_sym_BSLASHtextcolor] = ACTIONS(12259), + [anon_sym_BSLASHpagecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12259), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12259), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12259), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12259), + }, + [1879] = { + [sym_generic_command_name] = ACTIONS(12144), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12142), + [anon_sym_RBRACK] = ACTIONS(12142), + [anon_sym_LBRACE] = ACTIONS(12142), + [anon_sym_RBRACE] = ACTIONS(12142), + [anon_sym_LPAREN] = ACTIONS(12142), + [anon_sym_COMMA] = ACTIONS(12142), + [anon_sym_EQ] = ACTIONS(12142), + [sym_word] = ACTIONS(12142), + [sym_param] = ACTIONS(12142), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12142), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12142), + [anon_sym_DOLLAR] = ACTIONS(12144), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12142), + [anon_sym_BSLASHbegin] = ACTIONS(12144), + [anon_sym_BSLASHcaption] = ACTIONS(12144), + [anon_sym_BSLASHcite] = ACTIONS(12144), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCite] = ACTIONS(12144), + [anon_sym_BSLASHnocite] = ACTIONS(12144), + [anon_sym_BSLASHcitet] = ACTIONS(12144), + [anon_sym_BSLASHcitep] = ACTIONS(12144), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteauthor] = ACTIONS(12144), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12144), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitetitle] = ACTIONS(12144), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteyear] = ACTIONS(12144), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12142), + [anon_sym_BSLASHcitedate] = ACTIONS(12144), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12142), + [anon_sym_BSLASHciteurl] = ACTIONS(12144), + [anon_sym_BSLASHfullcite] = ACTIONS(12144), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12144), + [anon_sym_BSLASHcitealt] = ACTIONS(12144), + [anon_sym_BSLASHcitealp] = ACTIONS(12144), + [anon_sym_BSLASHcitetext] = ACTIONS(12144), + [anon_sym_BSLASHparencite] = ACTIONS(12144), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHParencite] = ACTIONS(12144), + [anon_sym_BSLASHfootcite] = ACTIONS(12144), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12144), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12144), + [anon_sym_BSLASHtextcite] = ACTIONS(12144), + [anon_sym_BSLASHTextcite] = ACTIONS(12144), + [anon_sym_BSLASHsmartcite] = ACTIONS(12144), + [anon_sym_BSLASHSmartcite] = ACTIONS(12144), + [anon_sym_BSLASHsupercite] = ACTIONS(12144), + [anon_sym_BSLASHautocite] = ACTIONS(12144), + [anon_sym_BSLASHAutocite] = ACTIONS(12144), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12142), + [anon_sym_BSLASHvolcite] = ACTIONS(12144), + [anon_sym_BSLASHVolcite] = ACTIONS(12144), + [anon_sym_BSLASHpvolcite] = ACTIONS(12144), + [anon_sym_BSLASHPvolcite] = ACTIONS(12144), + [anon_sym_BSLASHfvolcite] = ACTIONS(12144), + [anon_sym_BSLASHftvolcite] = ACTIONS(12144), + [anon_sym_BSLASHsvolcite] = ACTIONS(12144), + [anon_sym_BSLASHSvolcite] = ACTIONS(12144), + [anon_sym_BSLASHtvolcite] = ACTIONS(12144), + [anon_sym_BSLASHTvolcite] = ACTIONS(12144), + [anon_sym_BSLASHavolcite] = ACTIONS(12144), + [anon_sym_BSLASHAvolcite] = ACTIONS(12144), + [anon_sym_BSLASHnotecite] = ACTIONS(12144), + [anon_sym_BSLASHpnotecite] = ACTIONS(12144), + [anon_sym_BSLASHPnotecite] = ACTIONS(12144), + [anon_sym_BSLASHfnotecite] = ACTIONS(12144), + [anon_sym_BSLASHusepackage] = ACTIONS(12144), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12144), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12144), + [anon_sym_BSLASHinclude] = ACTIONS(12144), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12144), + [anon_sym_BSLASHinput] = ACTIONS(12144), + [anon_sym_BSLASHsubfile] = ACTIONS(12144), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12144), + [anon_sym_BSLASHbibliography] = ACTIONS(12144), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12144), + [anon_sym_BSLASHincludesvg] = ACTIONS(12144), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12144), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12144), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12144), + [anon_sym_BSLASHimport] = ACTIONS(12144), + [anon_sym_BSLASHsubimport] = ACTIONS(12144), + [anon_sym_BSLASHinputfrom] = ACTIONS(12144), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12144), + [anon_sym_BSLASHincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12144), + [anon_sym_BSLASHlabel] = ACTIONS(12144), + [anon_sym_BSLASHref] = ACTIONS(12144), + [anon_sym_BSLASHvref] = ACTIONS(12144), + [anon_sym_BSLASHVref] = ACTIONS(12144), + [anon_sym_BSLASHautoref] = ACTIONS(12144), + [anon_sym_BSLASHpageref] = ACTIONS(12144), + [anon_sym_BSLASHcref] = ACTIONS(12144), + [anon_sym_BSLASHCref] = ACTIONS(12144), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnameCref] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12144), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12144), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12144), + [anon_sym_BSLASHlabelcref] = ACTIONS(12144), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12144), + [anon_sym_BSLASHeqref] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange] = ACTIONS(12144), + [anon_sym_BSLASHCrefrange] = ACTIONS(12144), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewlabel] = ACTIONS(12144), + [anon_sym_BSLASHnewcommand] = ACTIONS(12144), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12144), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12142), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12144), + [anon_sym_BSLASHgls] = ACTIONS(12144), + [anon_sym_BSLASHGls] = ACTIONS(12144), + [anon_sym_BSLASHGLS] = ACTIONS(12144), + [anon_sym_BSLASHglspl] = ACTIONS(12144), + [anon_sym_BSLASHGlspl] = ACTIONS(12144), + [anon_sym_BSLASHGLSpl] = ACTIONS(12144), + [anon_sym_BSLASHglsdisp] = ACTIONS(12144), + [anon_sym_BSLASHglslink] = ACTIONS(12144), + [anon_sym_BSLASHglstext] = ACTIONS(12144), + [anon_sym_BSLASHGlstext] = ACTIONS(12144), + [anon_sym_BSLASHGLStext] = ACTIONS(12144), + [anon_sym_BSLASHglsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12144), + [anon_sym_BSLASHglsplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSplural] = ACTIONS(12144), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12144), + [anon_sym_BSLASHglsname] = ACTIONS(12144), + [anon_sym_BSLASHGlsname] = ACTIONS(12144), + [anon_sym_BSLASHGLSname] = ACTIONS(12144), + [anon_sym_BSLASHglssymbol] = ACTIONS(12144), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12144), + [anon_sym_BSLASHglsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12144), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12144), + [anon_sym_BSLASHglsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12144), + [anon_sym_BSLASHglsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12144), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12144), + [anon_sym_BSLASHglsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12144), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12144), + [anon_sym_BSLASHglsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12144), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12144), + [anon_sym_BSLASHnewacronym] = ACTIONS(12144), + [anon_sym_BSLASHacrshort] = ACTIONS(12144), + [anon_sym_BSLASHAcrshort] = ACTIONS(12144), + [anon_sym_BSLASHACRshort] = ACTIONS(12144), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12144), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12144), + [anon_sym_BSLASHacrlong] = ACTIONS(12144), + [anon_sym_BSLASHAcrlong] = ACTIONS(12144), + [anon_sym_BSLASHACRlong] = ACTIONS(12144), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12144), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12144), + [anon_sym_BSLASHacrfull] = ACTIONS(12144), + [anon_sym_BSLASHAcrfull] = ACTIONS(12144), + [anon_sym_BSLASHACRfull] = ACTIONS(12144), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12144), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12144), + [anon_sym_BSLASHacs] = ACTIONS(12144), + [anon_sym_BSLASHAcs] = ACTIONS(12144), + [anon_sym_BSLASHacsp] = ACTIONS(12144), + [anon_sym_BSLASHAcsp] = ACTIONS(12144), + [anon_sym_BSLASHacl] = ACTIONS(12144), + [anon_sym_BSLASHAcl] = ACTIONS(12144), + [anon_sym_BSLASHaclp] = ACTIONS(12144), + [anon_sym_BSLASHAclp] = ACTIONS(12144), + [anon_sym_BSLASHacf] = ACTIONS(12144), + [anon_sym_BSLASHAcf] = ACTIONS(12144), + [anon_sym_BSLASHacfp] = ACTIONS(12144), + [anon_sym_BSLASHAcfp] = ACTIONS(12144), + [anon_sym_BSLASHac] = ACTIONS(12144), + [anon_sym_BSLASHAc] = ACTIONS(12144), + [anon_sym_BSLASHacp] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12144), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12144), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12144), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12144), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12144), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12144), + [anon_sym_BSLASHcolor] = ACTIONS(12144), + [anon_sym_BSLASHcolorbox] = ACTIONS(12144), + [anon_sym_BSLASHtextcolor] = ACTIONS(12144), + [anon_sym_BSLASHpagecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12144), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12144), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12144), + }, + [1880] = { + [sym_generic_command_name] = ACTIONS(12189), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12187), + [anon_sym_RBRACK] = ACTIONS(12187), + [anon_sym_LBRACE] = ACTIONS(12187), + [anon_sym_RBRACE] = ACTIONS(12187), + [anon_sym_LPAREN] = ACTIONS(12187), + [anon_sym_COMMA] = ACTIONS(12187), + [anon_sym_EQ] = ACTIONS(12187), + [sym_word] = ACTIONS(12187), + [sym_param] = ACTIONS(12187), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12187), + [anon_sym_DOLLAR] = ACTIONS(12189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12187), + [anon_sym_BSLASHbegin] = ACTIONS(12189), + [anon_sym_BSLASHcaption] = ACTIONS(12189), + [anon_sym_BSLASHcite] = ACTIONS(12189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCite] = ACTIONS(12189), + [anon_sym_BSLASHnocite] = ACTIONS(12189), + [anon_sym_BSLASHcitet] = ACTIONS(12189), + [anon_sym_BSLASHcitep] = ACTIONS(12189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteauthor] = ACTIONS(12189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitetitle] = ACTIONS(12189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteyear] = ACTIONS(12189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12187), + [anon_sym_BSLASHcitedate] = ACTIONS(12189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12187), + [anon_sym_BSLASHciteurl] = ACTIONS(12189), + [anon_sym_BSLASHfullcite] = ACTIONS(12189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12189), + [anon_sym_BSLASHcitealt] = ACTIONS(12189), + [anon_sym_BSLASHcitealp] = ACTIONS(12189), + [anon_sym_BSLASHcitetext] = ACTIONS(12189), + [anon_sym_BSLASHparencite] = ACTIONS(12189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHParencite] = ACTIONS(12189), + [anon_sym_BSLASHfootcite] = ACTIONS(12189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12189), + [anon_sym_BSLASHtextcite] = ACTIONS(12189), + [anon_sym_BSLASHTextcite] = ACTIONS(12189), + [anon_sym_BSLASHsmartcite] = ACTIONS(12189), + [anon_sym_BSLASHSmartcite] = ACTIONS(12189), + [anon_sym_BSLASHsupercite] = ACTIONS(12189), + [anon_sym_BSLASHautocite] = ACTIONS(12189), + [anon_sym_BSLASHAutocite] = ACTIONS(12189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12187), + [anon_sym_BSLASHvolcite] = ACTIONS(12189), + [anon_sym_BSLASHVolcite] = ACTIONS(12189), + [anon_sym_BSLASHpvolcite] = ACTIONS(12189), + [anon_sym_BSLASHPvolcite] = ACTIONS(12189), + [anon_sym_BSLASHfvolcite] = ACTIONS(12189), + [anon_sym_BSLASHftvolcite] = ACTIONS(12189), + [anon_sym_BSLASHsvolcite] = ACTIONS(12189), + [anon_sym_BSLASHSvolcite] = ACTIONS(12189), + [anon_sym_BSLASHtvolcite] = ACTIONS(12189), + [anon_sym_BSLASHTvolcite] = ACTIONS(12189), + [anon_sym_BSLASHavolcite] = ACTIONS(12189), + [anon_sym_BSLASHAvolcite] = ACTIONS(12189), + [anon_sym_BSLASHnotecite] = ACTIONS(12189), + [anon_sym_BSLASHpnotecite] = ACTIONS(12189), + [anon_sym_BSLASHPnotecite] = ACTIONS(12189), + [anon_sym_BSLASHfnotecite] = ACTIONS(12189), + [anon_sym_BSLASHusepackage] = ACTIONS(12189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12189), + [anon_sym_BSLASHinclude] = ACTIONS(12189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12189), + [anon_sym_BSLASHinput] = ACTIONS(12189), + [anon_sym_BSLASHsubfile] = ACTIONS(12189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12189), + [anon_sym_BSLASHbibliography] = ACTIONS(12189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12189), + [anon_sym_BSLASHincludesvg] = ACTIONS(12189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12189), + [anon_sym_BSLASHimport] = ACTIONS(12189), + [anon_sym_BSLASHsubimport] = ACTIONS(12189), + [anon_sym_BSLASHinputfrom] = ACTIONS(12189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12189), + [anon_sym_BSLASHincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12189), + [anon_sym_BSLASHlabel] = ACTIONS(12189), + [anon_sym_BSLASHref] = ACTIONS(12189), + [anon_sym_BSLASHvref] = ACTIONS(12189), + [anon_sym_BSLASHVref] = ACTIONS(12189), + [anon_sym_BSLASHautoref] = ACTIONS(12189), + [anon_sym_BSLASHpageref] = ACTIONS(12189), + [anon_sym_BSLASHcref] = ACTIONS(12189), + [anon_sym_BSLASHCref] = ACTIONS(12189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnameCref] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12189), + [anon_sym_BSLASHlabelcref] = ACTIONS(12189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12189), + [anon_sym_BSLASHeqref] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange] = ACTIONS(12189), + [anon_sym_BSLASHCrefrange] = ACTIONS(12189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewlabel] = ACTIONS(12189), + [anon_sym_BSLASHnewcommand] = ACTIONS(12189), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12187), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12189), + [anon_sym_BSLASHgls] = ACTIONS(12189), + [anon_sym_BSLASHGls] = ACTIONS(12189), + [anon_sym_BSLASHGLS] = ACTIONS(12189), + [anon_sym_BSLASHglspl] = ACTIONS(12189), + [anon_sym_BSLASHGlspl] = ACTIONS(12189), + [anon_sym_BSLASHGLSpl] = ACTIONS(12189), + [anon_sym_BSLASHglsdisp] = ACTIONS(12189), + [anon_sym_BSLASHglslink] = ACTIONS(12189), + [anon_sym_BSLASHglstext] = ACTIONS(12189), + [anon_sym_BSLASHGlstext] = ACTIONS(12189), + [anon_sym_BSLASHGLStext] = ACTIONS(12189), + [anon_sym_BSLASHglsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12189), + [anon_sym_BSLASHglsplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSplural] = ACTIONS(12189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12189), + [anon_sym_BSLASHglsname] = ACTIONS(12189), + [anon_sym_BSLASHGlsname] = ACTIONS(12189), + [anon_sym_BSLASHGLSname] = ACTIONS(12189), + [anon_sym_BSLASHglssymbol] = ACTIONS(12189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12189), + [anon_sym_BSLASHglsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12189), + [anon_sym_BSLASHglsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12189), + [anon_sym_BSLASHglsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12189), + [anon_sym_BSLASHglsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12189), + [anon_sym_BSLASHglsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12189), + [anon_sym_BSLASHnewacronym] = ACTIONS(12189), + [anon_sym_BSLASHacrshort] = ACTIONS(12189), + [anon_sym_BSLASHAcrshort] = ACTIONS(12189), + [anon_sym_BSLASHACRshort] = ACTIONS(12189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12189), + [anon_sym_BSLASHacrlong] = ACTIONS(12189), + [anon_sym_BSLASHAcrlong] = ACTIONS(12189), + [anon_sym_BSLASHACRlong] = ACTIONS(12189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12189), + [anon_sym_BSLASHacrfull] = ACTIONS(12189), + [anon_sym_BSLASHAcrfull] = ACTIONS(12189), + [anon_sym_BSLASHACRfull] = ACTIONS(12189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12189), + [anon_sym_BSLASHacs] = ACTIONS(12189), + [anon_sym_BSLASHAcs] = ACTIONS(12189), + [anon_sym_BSLASHacsp] = ACTIONS(12189), + [anon_sym_BSLASHAcsp] = ACTIONS(12189), + [anon_sym_BSLASHacl] = ACTIONS(12189), + [anon_sym_BSLASHAcl] = ACTIONS(12189), + [anon_sym_BSLASHaclp] = ACTIONS(12189), + [anon_sym_BSLASHAclp] = ACTIONS(12189), + [anon_sym_BSLASHacf] = ACTIONS(12189), + [anon_sym_BSLASHAcf] = ACTIONS(12189), + [anon_sym_BSLASHacfp] = ACTIONS(12189), + [anon_sym_BSLASHAcfp] = ACTIONS(12189), + [anon_sym_BSLASHac] = ACTIONS(12189), + [anon_sym_BSLASHAc] = ACTIONS(12189), + [anon_sym_BSLASHacp] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12189), + [anon_sym_BSLASHcolor] = ACTIONS(12189), + [anon_sym_BSLASHcolorbox] = ACTIONS(12189), + [anon_sym_BSLASHtextcolor] = ACTIONS(12189), + [anon_sym_BSLASHpagecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12189), + }, + [1881] = { + [sym_generic_command_name] = ACTIONS(12247), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12245), + [anon_sym_RBRACK] = ACTIONS(12245), + [anon_sym_LBRACE] = ACTIONS(12245), + [anon_sym_RBRACE] = ACTIONS(12245), + [anon_sym_LPAREN] = ACTIONS(12245), + [anon_sym_COMMA] = ACTIONS(12245), + [anon_sym_EQ] = ACTIONS(12245), + [sym_word] = ACTIONS(12245), + [sym_param] = ACTIONS(12245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12245), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12245), + [anon_sym_DOLLAR] = ACTIONS(12247), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12245), + [anon_sym_BSLASHbegin] = ACTIONS(12247), + [anon_sym_BSLASHcaption] = ACTIONS(12247), + [anon_sym_BSLASHcite] = ACTIONS(12247), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCite] = ACTIONS(12247), + [anon_sym_BSLASHnocite] = ACTIONS(12247), + [anon_sym_BSLASHcitet] = ACTIONS(12247), + [anon_sym_BSLASHcitep] = ACTIONS(12247), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteauthor] = ACTIONS(12247), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12247), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitetitle] = ACTIONS(12247), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteyear] = ACTIONS(12247), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12245), + [anon_sym_BSLASHcitedate] = ACTIONS(12247), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12245), + [anon_sym_BSLASHciteurl] = ACTIONS(12247), + [anon_sym_BSLASHfullcite] = ACTIONS(12247), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12247), + [anon_sym_BSLASHcitealt] = ACTIONS(12247), + [anon_sym_BSLASHcitealp] = ACTIONS(12247), + [anon_sym_BSLASHcitetext] = ACTIONS(12247), + [anon_sym_BSLASHparencite] = ACTIONS(12247), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHParencite] = ACTIONS(12247), + [anon_sym_BSLASHfootcite] = ACTIONS(12247), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12247), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12247), + [anon_sym_BSLASHtextcite] = ACTIONS(12247), + [anon_sym_BSLASHTextcite] = ACTIONS(12247), + [anon_sym_BSLASHsmartcite] = ACTIONS(12247), + [anon_sym_BSLASHSmartcite] = ACTIONS(12247), + [anon_sym_BSLASHsupercite] = ACTIONS(12247), + [anon_sym_BSLASHautocite] = ACTIONS(12247), + [anon_sym_BSLASHAutocite] = ACTIONS(12247), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12245), + [anon_sym_BSLASHvolcite] = ACTIONS(12247), + [anon_sym_BSLASHVolcite] = ACTIONS(12247), + [anon_sym_BSLASHpvolcite] = ACTIONS(12247), + [anon_sym_BSLASHPvolcite] = ACTIONS(12247), + [anon_sym_BSLASHfvolcite] = ACTIONS(12247), + [anon_sym_BSLASHftvolcite] = ACTIONS(12247), + [anon_sym_BSLASHsvolcite] = ACTIONS(12247), + [anon_sym_BSLASHSvolcite] = ACTIONS(12247), + [anon_sym_BSLASHtvolcite] = ACTIONS(12247), + [anon_sym_BSLASHTvolcite] = ACTIONS(12247), + [anon_sym_BSLASHavolcite] = ACTIONS(12247), + [anon_sym_BSLASHAvolcite] = ACTIONS(12247), + [anon_sym_BSLASHnotecite] = ACTIONS(12247), + [anon_sym_BSLASHpnotecite] = ACTIONS(12247), + [anon_sym_BSLASHPnotecite] = ACTIONS(12247), + [anon_sym_BSLASHfnotecite] = ACTIONS(12247), + [anon_sym_BSLASHusepackage] = ACTIONS(12247), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12247), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12247), + [anon_sym_BSLASHinclude] = ACTIONS(12247), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12247), + [anon_sym_BSLASHinput] = ACTIONS(12247), + [anon_sym_BSLASHsubfile] = ACTIONS(12247), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12247), + [anon_sym_BSLASHbibliography] = ACTIONS(12247), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12247), + [anon_sym_BSLASHincludesvg] = ACTIONS(12247), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12247), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12247), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12247), + [anon_sym_BSLASHimport] = ACTIONS(12247), + [anon_sym_BSLASHsubimport] = ACTIONS(12247), + [anon_sym_BSLASHinputfrom] = ACTIONS(12247), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12247), + [anon_sym_BSLASHincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12247), + [anon_sym_BSLASHlabel] = ACTIONS(12247), + [anon_sym_BSLASHref] = ACTIONS(12247), + [anon_sym_BSLASHvref] = ACTIONS(12247), + [anon_sym_BSLASHVref] = ACTIONS(12247), + [anon_sym_BSLASHautoref] = ACTIONS(12247), + [anon_sym_BSLASHpageref] = ACTIONS(12247), + [anon_sym_BSLASHcref] = ACTIONS(12247), + [anon_sym_BSLASHCref] = ACTIONS(12247), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnameCref] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12247), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12247), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12247), + [anon_sym_BSLASHlabelcref] = ACTIONS(12247), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12247), + [anon_sym_BSLASHeqref] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange] = ACTIONS(12247), + [anon_sym_BSLASHCrefrange] = ACTIONS(12247), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewlabel] = ACTIONS(12247), + [anon_sym_BSLASHnewcommand] = ACTIONS(12247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12247), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12247), + [anon_sym_BSLASHgls] = ACTIONS(12247), + [anon_sym_BSLASHGls] = ACTIONS(12247), + [anon_sym_BSLASHGLS] = ACTIONS(12247), + [anon_sym_BSLASHglspl] = ACTIONS(12247), + [anon_sym_BSLASHGlspl] = ACTIONS(12247), + [anon_sym_BSLASHGLSpl] = ACTIONS(12247), + [anon_sym_BSLASHglsdisp] = ACTIONS(12247), + [anon_sym_BSLASHglslink] = ACTIONS(12247), + [anon_sym_BSLASHglstext] = ACTIONS(12247), + [anon_sym_BSLASHGlstext] = ACTIONS(12247), + [anon_sym_BSLASHGLStext] = ACTIONS(12247), + [anon_sym_BSLASHglsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12247), + [anon_sym_BSLASHglsplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSplural] = ACTIONS(12247), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12247), + [anon_sym_BSLASHglsname] = ACTIONS(12247), + [anon_sym_BSLASHGlsname] = ACTIONS(12247), + [anon_sym_BSLASHGLSname] = ACTIONS(12247), + [anon_sym_BSLASHglssymbol] = ACTIONS(12247), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12247), + [anon_sym_BSLASHglsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12247), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12247), + [anon_sym_BSLASHglsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12247), + [anon_sym_BSLASHglsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12247), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12247), + [anon_sym_BSLASHglsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12247), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12247), + [anon_sym_BSLASHglsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12247), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12247), + [anon_sym_BSLASHnewacronym] = ACTIONS(12247), + [anon_sym_BSLASHacrshort] = ACTIONS(12247), + [anon_sym_BSLASHAcrshort] = ACTIONS(12247), + [anon_sym_BSLASHACRshort] = ACTIONS(12247), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12247), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12247), + [anon_sym_BSLASHacrlong] = ACTIONS(12247), + [anon_sym_BSLASHAcrlong] = ACTIONS(12247), + [anon_sym_BSLASHACRlong] = ACTIONS(12247), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12247), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12247), + [anon_sym_BSLASHacrfull] = ACTIONS(12247), + [anon_sym_BSLASHAcrfull] = ACTIONS(12247), + [anon_sym_BSLASHACRfull] = ACTIONS(12247), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12247), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12247), + [anon_sym_BSLASHacs] = ACTIONS(12247), + [anon_sym_BSLASHAcs] = ACTIONS(12247), + [anon_sym_BSLASHacsp] = ACTIONS(12247), + [anon_sym_BSLASHAcsp] = ACTIONS(12247), + [anon_sym_BSLASHacl] = ACTIONS(12247), + [anon_sym_BSLASHAcl] = ACTIONS(12247), + [anon_sym_BSLASHaclp] = ACTIONS(12247), + [anon_sym_BSLASHAclp] = ACTIONS(12247), + [anon_sym_BSLASHacf] = ACTIONS(12247), + [anon_sym_BSLASHAcf] = ACTIONS(12247), + [anon_sym_BSLASHacfp] = ACTIONS(12247), + [anon_sym_BSLASHAcfp] = ACTIONS(12247), + [anon_sym_BSLASHac] = ACTIONS(12247), + [anon_sym_BSLASHAc] = ACTIONS(12247), + [anon_sym_BSLASHacp] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12247), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12247), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12247), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12247), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12247), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12247), + [anon_sym_BSLASHcolor] = ACTIONS(12247), + [anon_sym_BSLASHcolorbox] = ACTIONS(12247), + [anon_sym_BSLASHtextcolor] = ACTIONS(12247), + [anon_sym_BSLASHpagecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12247), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12247), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12247), + }, + [1882] = { + [sym_generic_command_name] = ACTIONS(12243), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12241), + [anon_sym_RBRACK] = ACTIONS(12241), + [anon_sym_LBRACE] = ACTIONS(12241), + [anon_sym_RBRACE] = ACTIONS(12241), + [anon_sym_LPAREN] = ACTIONS(12241), + [anon_sym_COMMA] = ACTIONS(12241), + [anon_sym_EQ] = ACTIONS(12241), + [sym_word] = ACTIONS(12241), + [sym_param] = ACTIONS(12241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12241), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12241), + [anon_sym_DOLLAR] = ACTIONS(12243), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12241), + [anon_sym_BSLASHbegin] = ACTIONS(12243), + [anon_sym_BSLASHcaption] = ACTIONS(12243), + [anon_sym_BSLASHcite] = ACTIONS(12243), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCite] = ACTIONS(12243), + [anon_sym_BSLASHnocite] = ACTIONS(12243), + [anon_sym_BSLASHcitet] = ACTIONS(12243), + [anon_sym_BSLASHcitep] = ACTIONS(12243), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteauthor] = ACTIONS(12243), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12243), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitetitle] = ACTIONS(12243), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteyear] = ACTIONS(12243), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12241), + [anon_sym_BSLASHcitedate] = ACTIONS(12243), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12241), + [anon_sym_BSLASHciteurl] = ACTIONS(12243), + [anon_sym_BSLASHfullcite] = ACTIONS(12243), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12243), + [anon_sym_BSLASHcitealt] = ACTIONS(12243), + [anon_sym_BSLASHcitealp] = ACTIONS(12243), + [anon_sym_BSLASHcitetext] = ACTIONS(12243), + [anon_sym_BSLASHparencite] = ACTIONS(12243), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHParencite] = ACTIONS(12243), + [anon_sym_BSLASHfootcite] = ACTIONS(12243), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12243), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12243), + [anon_sym_BSLASHtextcite] = ACTIONS(12243), + [anon_sym_BSLASHTextcite] = ACTIONS(12243), + [anon_sym_BSLASHsmartcite] = ACTIONS(12243), + [anon_sym_BSLASHSmartcite] = ACTIONS(12243), + [anon_sym_BSLASHsupercite] = ACTIONS(12243), + [anon_sym_BSLASHautocite] = ACTIONS(12243), + [anon_sym_BSLASHAutocite] = ACTIONS(12243), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12241), + [anon_sym_BSLASHvolcite] = ACTIONS(12243), + [anon_sym_BSLASHVolcite] = ACTIONS(12243), + [anon_sym_BSLASHpvolcite] = ACTIONS(12243), + [anon_sym_BSLASHPvolcite] = ACTIONS(12243), + [anon_sym_BSLASHfvolcite] = ACTIONS(12243), + [anon_sym_BSLASHftvolcite] = ACTIONS(12243), + [anon_sym_BSLASHsvolcite] = ACTIONS(12243), + [anon_sym_BSLASHSvolcite] = ACTIONS(12243), + [anon_sym_BSLASHtvolcite] = ACTIONS(12243), + [anon_sym_BSLASHTvolcite] = ACTIONS(12243), + [anon_sym_BSLASHavolcite] = ACTIONS(12243), + [anon_sym_BSLASHAvolcite] = ACTIONS(12243), + [anon_sym_BSLASHnotecite] = ACTIONS(12243), + [anon_sym_BSLASHpnotecite] = ACTIONS(12243), + [anon_sym_BSLASHPnotecite] = ACTIONS(12243), + [anon_sym_BSLASHfnotecite] = ACTIONS(12243), + [anon_sym_BSLASHusepackage] = ACTIONS(12243), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12243), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12243), + [anon_sym_BSLASHinclude] = ACTIONS(12243), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12243), + [anon_sym_BSLASHinput] = ACTIONS(12243), + [anon_sym_BSLASHsubfile] = ACTIONS(12243), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12243), + [anon_sym_BSLASHbibliography] = ACTIONS(12243), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12243), + [anon_sym_BSLASHincludesvg] = ACTIONS(12243), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12243), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12243), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12243), + [anon_sym_BSLASHimport] = ACTIONS(12243), + [anon_sym_BSLASHsubimport] = ACTIONS(12243), + [anon_sym_BSLASHinputfrom] = ACTIONS(12243), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12243), + [anon_sym_BSLASHincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12243), + [anon_sym_BSLASHlabel] = ACTIONS(12243), + [anon_sym_BSLASHref] = ACTIONS(12243), + [anon_sym_BSLASHvref] = ACTIONS(12243), + [anon_sym_BSLASHVref] = ACTIONS(12243), + [anon_sym_BSLASHautoref] = ACTIONS(12243), + [anon_sym_BSLASHpageref] = ACTIONS(12243), + [anon_sym_BSLASHcref] = ACTIONS(12243), + [anon_sym_BSLASHCref] = ACTIONS(12243), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnameCref] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12243), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12243), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12243), + [anon_sym_BSLASHlabelcref] = ACTIONS(12243), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12243), + [anon_sym_BSLASHeqref] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange] = ACTIONS(12243), + [anon_sym_BSLASHCrefrange] = ACTIONS(12243), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewlabel] = ACTIONS(12243), + [anon_sym_BSLASHnewcommand] = ACTIONS(12243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12243), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12243), + [anon_sym_BSLASHgls] = ACTIONS(12243), + [anon_sym_BSLASHGls] = ACTIONS(12243), + [anon_sym_BSLASHGLS] = ACTIONS(12243), + [anon_sym_BSLASHglspl] = ACTIONS(12243), + [anon_sym_BSLASHGlspl] = ACTIONS(12243), + [anon_sym_BSLASHGLSpl] = ACTIONS(12243), + [anon_sym_BSLASHglsdisp] = ACTIONS(12243), + [anon_sym_BSLASHglslink] = ACTIONS(12243), + [anon_sym_BSLASHglstext] = ACTIONS(12243), + [anon_sym_BSLASHGlstext] = ACTIONS(12243), + [anon_sym_BSLASHGLStext] = ACTIONS(12243), + [anon_sym_BSLASHglsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12243), + [anon_sym_BSLASHglsplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSplural] = ACTIONS(12243), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12243), + [anon_sym_BSLASHglsname] = ACTIONS(12243), + [anon_sym_BSLASHGlsname] = ACTIONS(12243), + [anon_sym_BSLASHGLSname] = ACTIONS(12243), + [anon_sym_BSLASHglssymbol] = ACTIONS(12243), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12243), + [anon_sym_BSLASHglsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12243), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12243), + [anon_sym_BSLASHglsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12243), + [anon_sym_BSLASHglsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12243), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12243), + [anon_sym_BSLASHglsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12243), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12243), + [anon_sym_BSLASHglsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12243), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12243), + [anon_sym_BSLASHnewacronym] = ACTIONS(12243), + [anon_sym_BSLASHacrshort] = ACTIONS(12243), + [anon_sym_BSLASHAcrshort] = ACTIONS(12243), + [anon_sym_BSLASHACRshort] = ACTIONS(12243), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12243), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12243), + [anon_sym_BSLASHacrlong] = ACTIONS(12243), + [anon_sym_BSLASHAcrlong] = ACTIONS(12243), + [anon_sym_BSLASHACRlong] = ACTIONS(12243), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12243), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12243), + [anon_sym_BSLASHacrfull] = ACTIONS(12243), + [anon_sym_BSLASHAcrfull] = ACTIONS(12243), + [anon_sym_BSLASHACRfull] = ACTIONS(12243), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12243), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12243), + [anon_sym_BSLASHacs] = ACTIONS(12243), + [anon_sym_BSLASHAcs] = ACTIONS(12243), + [anon_sym_BSLASHacsp] = ACTIONS(12243), + [anon_sym_BSLASHAcsp] = ACTIONS(12243), + [anon_sym_BSLASHacl] = ACTIONS(12243), + [anon_sym_BSLASHAcl] = ACTIONS(12243), + [anon_sym_BSLASHaclp] = ACTIONS(12243), + [anon_sym_BSLASHAclp] = ACTIONS(12243), + [anon_sym_BSLASHacf] = ACTIONS(12243), + [anon_sym_BSLASHAcf] = ACTIONS(12243), + [anon_sym_BSLASHacfp] = ACTIONS(12243), + [anon_sym_BSLASHAcfp] = ACTIONS(12243), + [anon_sym_BSLASHac] = ACTIONS(12243), + [anon_sym_BSLASHAc] = ACTIONS(12243), + [anon_sym_BSLASHacp] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12243), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12243), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12243), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12243), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12243), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12243), + [anon_sym_BSLASHcolor] = ACTIONS(12243), + [anon_sym_BSLASHcolorbox] = ACTIONS(12243), + [anon_sym_BSLASHtextcolor] = ACTIONS(12243), + [anon_sym_BSLASHpagecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12243), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12243), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12243), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12243), + }, + [1883] = { + [sym_generic_command_name] = ACTIONS(12299), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12297), + [anon_sym_RBRACK] = ACTIONS(12297), + [anon_sym_LBRACE] = ACTIONS(12297), + [anon_sym_RBRACE] = ACTIONS(12297), + [anon_sym_LPAREN] = ACTIONS(12297), + [anon_sym_COMMA] = ACTIONS(12297), + [anon_sym_EQ] = ACTIONS(12297), + [sym_word] = ACTIONS(12297), + [sym_param] = ACTIONS(12297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12297), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12297), + [anon_sym_DOLLAR] = ACTIONS(12299), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12297), + [anon_sym_BSLASHbegin] = ACTIONS(12299), + [anon_sym_BSLASHcaption] = ACTIONS(12299), + [anon_sym_BSLASHcite] = ACTIONS(12299), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCite] = ACTIONS(12299), + [anon_sym_BSLASHnocite] = ACTIONS(12299), + [anon_sym_BSLASHcitet] = ACTIONS(12299), + [anon_sym_BSLASHcitep] = ACTIONS(12299), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteauthor] = ACTIONS(12299), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12299), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitetitle] = ACTIONS(12299), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteyear] = ACTIONS(12299), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12297), + [anon_sym_BSLASHcitedate] = ACTIONS(12299), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12297), + [anon_sym_BSLASHciteurl] = ACTIONS(12299), + [anon_sym_BSLASHfullcite] = ACTIONS(12299), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12299), + [anon_sym_BSLASHcitealt] = ACTIONS(12299), + [anon_sym_BSLASHcitealp] = ACTIONS(12299), + [anon_sym_BSLASHcitetext] = ACTIONS(12299), + [anon_sym_BSLASHparencite] = ACTIONS(12299), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHParencite] = ACTIONS(12299), + [anon_sym_BSLASHfootcite] = ACTIONS(12299), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12299), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12299), + [anon_sym_BSLASHtextcite] = ACTIONS(12299), + [anon_sym_BSLASHTextcite] = ACTIONS(12299), + [anon_sym_BSLASHsmartcite] = ACTIONS(12299), + [anon_sym_BSLASHSmartcite] = ACTIONS(12299), + [anon_sym_BSLASHsupercite] = ACTIONS(12299), + [anon_sym_BSLASHautocite] = ACTIONS(12299), + [anon_sym_BSLASHAutocite] = ACTIONS(12299), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12297), + [anon_sym_BSLASHvolcite] = ACTIONS(12299), + [anon_sym_BSLASHVolcite] = ACTIONS(12299), + [anon_sym_BSLASHpvolcite] = ACTIONS(12299), + [anon_sym_BSLASHPvolcite] = ACTIONS(12299), + [anon_sym_BSLASHfvolcite] = ACTIONS(12299), + [anon_sym_BSLASHftvolcite] = ACTIONS(12299), + [anon_sym_BSLASHsvolcite] = ACTIONS(12299), + [anon_sym_BSLASHSvolcite] = ACTIONS(12299), + [anon_sym_BSLASHtvolcite] = ACTIONS(12299), + [anon_sym_BSLASHTvolcite] = ACTIONS(12299), + [anon_sym_BSLASHavolcite] = ACTIONS(12299), + [anon_sym_BSLASHAvolcite] = ACTIONS(12299), + [anon_sym_BSLASHnotecite] = ACTIONS(12299), + [anon_sym_BSLASHpnotecite] = ACTIONS(12299), + [anon_sym_BSLASHPnotecite] = ACTIONS(12299), + [anon_sym_BSLASHfnotecite] = ACTIONS(12299), + [anon_sym_BSLASHusepackage] = ACTIONS(12299), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12299), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12299), + [anon_sym_BSLASHinclude] = ACTIONS(12299), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12299), + [anon_sym_BSLASHinput] = ACTIONS(12299), + [anon_sym_BSLASHsubfile] = ACTIONS(12299), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12299), + [anon_sym_BSLASHbibliography] = ACTIONS(12299), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12299), + [anon_sym_BSLASHincludesvg] = ACTIONS(12299), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12299), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12299), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12299), + [anon_sym_BSLASHimport] = ACTIONS(12299), + [anon_sym_BSLASHsubimport] = ACTIONS(12299), + [anon_sym_BSLASHinputfrom] = ACTIONS(12299), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12299), + [anon_sym_BSLASHincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12299), + [anon_sym_BSLASHlabel] = ACTIONS(12299), + [anon_sym_BSLASHref] = ACTIONS(12299), + [anon_sym_BSLASHvref] = ACTIONS(12299), + [anon_sym_BSLASHVref] = ACTIONS(12299), + [anon_sym_BSLASHautoref] = ACTIONS(12299), + [anon_sym_BSLASHpageref] = ACTIONS(12299), + [anon_sym_BSLASHcref] = ACTIONS(12299), + [anon_sym_BSLASHCref] = ACTIONS(12299), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnameCref] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12299), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12299), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12299), + [anon_sym_BSLASHlabelcref] = ACTIONS(12299), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12299), + [anon_sym_BSLASHeqref] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange] = ACTIONS(12299), + [anon_sym_BSLASHCrefrange] = ACTIONS(12299), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewlabel] = ACTIONS(12299), + [anon_sym_BSLASHnewcommand] = ACTIONS(12299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12299), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12299), + [anon_sym_BSLASHgls] = ACTIONS(12299), + [anon_sym_BSLASHGls] = ACTIONS(12299), + [anon_sym_BSLASHGLS] = ACTIONS(12299), + [anon_sym_BSLASHglspl] = ACTIONS(12299), + [anon_sym_BSLASHGlspl] = ACTIONS(12299), + [anon_sym_BSLASHGLSpl] = ACTIONS(12299), + [anon_sym_BSLASHglsdisp] = ACTIONS(12299), + [anon_sym_BSLASHglslink] = ACTIONS(12299), + [anon_sym_BSLASHglstext] = ACTIONS(12299), + [anon_sym_BSLASHGlstext] = ACTIONS(12299), + [anon_sym_BSLASHGLStext] = ACTIONS(12299), + [anon_sym_BSLASHglsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12299), + [anon_sym_BSLASHglsplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSplural] = ACTIONS(12299), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12299), + [anon_sym_BSLASHglsname] = ACTIONS(12299), + [anon_sym_BSLASHGlsname] = ACTIONS(12299), + [anon_sym_BSLASHGLSname] = ACTIONS(12299), + [anon_sym_BSLASHglssymbol] = ACTIONS(12299), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12299), + [anon_sym_BSLASHglsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12299), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12299), + [anon_sym_BSLASHglsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12299), + [anon_sym_BSLASHglsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12299), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12299), + [anon_sym_BSLASHglsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12299), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12299), + [anon_sym_BSLASHglsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12299), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12299), + [anon_sym_BSLASHnewacronym] = ACTIONS(12299), + [anon_sym_BSLASHacrshort] = ACTIONS(12299), + [anon_sym_BSLASHAcrshort] = ACTIONS(12299), + [anon_sym_BSLASHACRshort] = ACTIONS(12299), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12299), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12299), + [anon_sym_BSLASHacrlong] = ACTIONS(12299), + [anon_sym_BSLASHAcrlong] = ACTIONS(12299), + [anon_sym_BSLASHACRlong] = ACTIONS(12299), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12299), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12299), + [anon_sym_BSLASHacrfull] = ACTIONS(12299), + [anon_sym_BSLASHAcrfull] = ACTIONS(12299), + [anon_sym_BSLASHACRfull] = ACTIONS(12299), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12299), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12299), + [anon_sym_BSLASHacs] = ACTIONS(12299), + [anon_sym_BSLASHAcs] = ACTIONS(12299), + [anon_sym_BSLASHacsp] = ACTIONS(12299), + [anon_sym_BSLASHAcsp] = ACTIONS(12299), + [anon_sym_BSLASHacl] = ACTIONS(12299), + [anon_sym_BSLASHAcl] = ACTIONS(12299), + [anon_sym_BSLASHaclp] = ACTIONS(12299), + [anon_sym_BSLASHAclp] = ACTIONS(12299), + [anon_sym_BSLASHacf] = ACTIONS(12299), + [anon_sym_BSLASHAcf] = ACTIONS(12299), + [anon_sym_BSLASHacfp] = ACTIONS(12299), + [anon_sym_BSLASHAcfp] = ACTIONS(12299), + [anon_sym_BSLASHac] = ACTIONS(12299), + [anon_sym_BSLASHAc] = ACTIONS(12299), + [anon_sym_BSLASHacp] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12299), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12299), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12299), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12299), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12299), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12299), + [anon_sym_BSLASHcolor] = ACTIONS(12299), + [anon_sym_BSLASHcolorbox] = ACTIONS(12299), + [anon_sym_BSLASHtextcolor] = ACTIONS(12299), + [anon_sym_BSLASHpagecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12299), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12299), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12299), + }, + [1884] = { + [sym_generic_command_name] = ACTIONS(12239), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12237), + [anon_sym_RBRACK] = ACTIONS(12237), + [anon_sym_LBRACE] = ACTIONS(12237), + [anon_sym_RBRACE] = ACTIONS(12237), + [anon_sym_LPAREN] = ACTIONS(12237), + [anon_sym_COMMA] = ACTIONS(12237), + [anon_sym_EQ] = ACTIONS(12237), + [sym_word] = ACTIONS(12237), + [sym_param] = ACTIONS(12237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12237), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12237), + [anon_sym_DOLLAR] = ACTIONS(12239), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12237), + [anon_sym_BSLASHbegin] = ACTIONS(12239), + [anon_sym_BSLASHcaption] = ACTIONS(12239), + [anon_sym_BSLASHcite] = ACTIONS(12239), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCite] = ACTIONS(12239), + [anon_sym_BSLASHnocite] = ACTIONS(12239), + [anon_sym_BSLASHcitet] = ACTIONS(12239), + [anon_sym_BSLASHcitep] = ACTIONS(12239), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteauthor] = ACTIONS(12239), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12239), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitetitle] = ACTIONS(12239), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteyear] = ACTIONS(12239), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12237), + [anon_sym_BSLASHcitedate] = ACTIONS(12239), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12237), + [anon_sym_BSLASHciteurl] = ACTIONS(12239), + [anon_sym_BSLASHfullcite] = ACTIONS(12239), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12239), + [anon_sym_BSLASHcitealt] = ACTIONS(12239), + [anon_sym_BSLASHcitealp] = ACTIONS(12239), + [anon_sym_BSLASHcitetext] = ACTIONS(12239), + [anon_sym_BSLASHparencite] = ACTIONS(12239), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHParencite] = ACTIONS(12239), + [anon_sym_BSLASHfootcite] = ACTIONS(12239), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12239), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12239), + [anon_sym_BSLASHtextcite] = ACTIONS(12239), + [anon_sym_BSLASHTextcite] = ACTIONS(12239), + [anon_sym_BSLASHsmartcite] = ACTIONS(12239), + [anon_sym_BSLASHSmartcite] = ACTIONS(12239), + [anon_sym_BSLASHsupercite] = ACTIONS(12239), + [anon_sym_BSLASHautocite] = ACTIONS(12239), + [anon_sym_BSLASHAutocite] = ACTIONS(12239), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12237), + [anon_sym_BSLASHvolcite] = ACTIONS(12239), + [anon_sym_BSLASHVolcite] = ACTIONS(12239), + [anon_sym_BSLASHpvolcite] = ACTIONS(12239), + [anon_sym_BSLASHPvolcite] = ACTIONS(12239), + [anon_sym_BSLASHfvolcite] = ACTIONS(12239), + [anon_sym_BSLASHftvolcite] = ACTIONS(12239), + [anon_sym_BSLASHsvolcite] = ACTIONS(12239), + [anon_sym_BSLASHSvolcite] = ACTIONS(12239), + [anon_sym_BSLASHtvolcite] = ACTIONS(12239), + [anon_sym_BSLASHTvolcite] = ACTIONS(12239), + [anon_sym_BSLASHavolcite] = ACTIONS(12239), + [anon_sym_BSLASHAvolcite] = ACTIONS(12239), + [anon_sym_BSLASHnotecite] = ACTIONS(12239), + [anon_sym_BSLASHpnotecite] = ACTIONS(12239), + [anon_sym_BSLASHPnotecite] = ACTIONS(12239), + [anon_sym_BSLASHfnotecite] = ACTIONS(12239), + [anon_sym_BSLASHusepackage] = ACTIONS(12239), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12239), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12239), + [anon_sym_BSLASHinclude] = ACTIONS(12239), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12239), + [anon_sym_BSLASHinput] = ACTIONS(12239), + [anon_sym_BSLASHsubfile] = ACTIONS(12239), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12239), + [anon_sym_BSLASHbibliography] = ACTIONS(12239), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12239), + [anon_sym_BSLASHincludesvg] = ACTIONS(12239), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12239), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12239), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12239), + [anon_sym_BSLASHimport] = ACTIONS(12239), + [anon_sym_BSLASHsubimport] = ACTIONS(12239), + [anon_sym_BSLASHinputfrom] = ACTIONS(12239), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12239), + [anon_sym_BSLASHincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12239), + [anon_sym_BSLASHlabel] = ACTIONS(12239), + [anon_sym_BSLASHref] = ACTIONS(12239), + [anon_sym_BSLASHvref] = ACTIONS(12239), + [anon_sym_BSLASHVref] = ACTIONS(12239), + [anon_sym_BSLASHautoref] = ACTIONS(12239), + [anon_sym_BSLASHpageref] = ACTIONS(12239), + [anon_sym_BSLASHcref] = ACTIONS(12239), + [anon_sym_BSLASHCref] = ACTIONS(12239), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnameCref] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12239), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12239), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12239), + [anon_sym_BSLASHlabelcref] = ACTIONS(12239), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12239), + [anon_sym_BSLASHeqref] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange] = ACTIONS(12239), + [anon_sym_BSLASHCrefrange] = ACTIONS(12239), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewlabel] = ACTIONS(12239), + [anon_sym_BSLASHnewcommand] = ACTIONS(12239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12239), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12239), + [anon_sym_BSLASHgls] = ACTIONS(12239), + [anon_sym_BSLASHGls] = ACTIONS(12239), + [anon_sym_BSLASHGLS] = ACTIONS(12239), + [anon_sym_BSLASHglspl] = ACTIONS(12239), + [anon_sym_BSLASHGlspl] = ACTIONS(12239), + [anon_sym_BSLASHGLSpl] = ACTIONS(12239), + [anon_sym_BSLASHglsdisp] = ACTIONS(12239), + [anon_sym_BSLASHglslink] = ACTIONS(12239), + [anon_sym_BSLASHglstext] = ACTIONS(12239), + [anon_sym_BSLASHGlstext] = ACTIONS(12239), + [anon_sym_BSLASHGLStext] = ACTIONS(12239), + [anon_sym_BSLASHglsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12239), + [anon_sym_BSLASHglsplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSplural] = ACTIONS(12239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12239), + [anon_sym_BSLASHglsname] = ACTIONS(12239), + [anon_sym_BSLASHGlsname] = ACTIONS(12239), + [anon_sym_BSLASHGLSname] = ACTIONS(12239), + [anon_sym_BSLASHglssymbol] = ACTIONS(12239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12239), + [anon_sym_BSLASHglsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12239), + [anon_sym_BSLASHglsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12239), + [anon_sym_BSLASHglsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12239), + [anon_sym_BSLASHglsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12239), + [anon_sym_BSLASHglsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12239), + [anon_sym_BSLASHnewacronym] = ACTIONS(12239), + [anon_sym_BSLASHacrshort] = ACTIONS(12239), + [anon_sym_BSLASHAcrshort] = ACTIONS(12239), + [anon_sym_BSLASHACRshort] = ACTIONS(12239), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12239), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12239), + [anon_sym_BSLASHacrlong] = ACTIONS(12239), + [anon_sym_BSLASHAcrlong] = ACTIONS(12239), + [anon_sym_BSLASHACRlong] = ACTIONS(12239), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12239), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12239), + [anon_sym_BSLASHacrfull] = ACTIONS(12239), + [anon_sym_BSLASHAcrfull] = ACTIONS(12239), + [anon_sym_BSLASHACRfull] = ACTIONS(12239), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12239), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12239), + [anon_sym_BSLASHacs] = ACTIONS(12239), + [anon_sym_BSLASHAcs] = ACTIONS(12239), + [anon_sym_BSLASHacsp] = ACTIONS(12239), + [anon_sym_BSLASHAcsp] = ACTIONS(12239), + [anon_sym_BSLASHacl] = ACTIONS(12239), + [anon_sym_BSLASHAcl] = ACTIONS(12239), + [anon_sym_BSLASHaclp] = ACTIONS(12239), + [anon_sym_BSLASHAclp] = ACTIONS(12239), + [anon_sym_BSLASHacf] = ACTIONS(12239), + [anon_sym_BSLASHAcf] = ACTIONS(12239), + [anon_sym_BSLASHacfp] = ACTIONS(12239), + [anon_sym_BSLASHAcfp] = ACTIONS(12239), + [anon_sym_BSLASHac] = ACTIONS(12239), + [anon_sym_BSLASHAc] = ACTIONS(12239), + [anon_sym_BSLASHacp] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12239), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12239), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12239), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12239), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12239), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12239), + [anon_sym_BSLASHcolor] = ACTIONS(12239), + [anon_sym_BSLASHcolorbox] = ACTIONS(12239), + [anon_sym_BSLASHtextcolor] = ACTIONS(12239), + [anon_sym_BSLASHpagecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12239), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12239), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12239), + }, + [1885] = { + [sym_generic_command_name] = ACTIONS(12235), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12233), + [anon_sym_RBRACK] = ACTIONS(12233), + [anon_sym_LBRACE] = ACTIONS(12233), + [anon_sym_RBRACE] = ACTIONS(12233), + [anon_sym_LPAREN] = ACTIONS(12233), + [anon_sym_COMMA] = ACTIONS(12233), + [anon_sym_EQ] = ACTIONS(12233), + [sym_word] = ACTIONS(12233), + [sym_param] = ACTIONS(12233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12233), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12233), + [anon_sym_DOLLAR] = ACTIONS(12235), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12233), + [anon_sym_BSLASHbegin] = ACTIONS(12235), + [anon_sym_BSLASHcaption] = ACTIONS(12235), + [anon_sym_BSLASHcite] = ACTIONS(12235), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCite] = ACTIONS(12235), + [anon_sym_BSLASHnocite] = ACTIONS(12235), + [anon_sym_BSLASHcitet] = ACTIONS(12235), + [anon_sym_BSLASHcitep] = ACTIONS(12235), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteauthor] = ACTIONS(12235), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12235), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitetitle] = ACTIONS(12235), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteyear] = ACTIONS(12235), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12233), + [anon_sym_BSLASHcitedate] = ACTIONS(12235), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12233), + [anon_sym_BSLASHciteurl] = ACTIONS(12235), + [anon_sym_BSLASHfullcite] = ACTIONS(12235), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12235), + [anon_sym_BSLASHcitealt] = ACTIONS(12235), + [anon_sym_BSLASHcitealp] = ACTIONS(12235), + [anon_sym_BSLASHcitetext] = ACTIONS(12235), + [anon_sym_BSLASHparencite] = ACTIONS(12235), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHParencite] = ACTIONS(12235), + [anon_sym_BSLASHfootcite] = ACTIONS(12235), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12235), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12235), + [anon_sym_BSLASHtextcite] = ACTIONS(12235), + [anon_sym_BSLASHTextcite] = ACTIONS(12235), + [anon_sym_BSLASHsmartcite] = ACTIONS(12235), + [anon_sym_BSLASHSmartcite] = ACTIONS(12235), + [anon_sym_BSLASHsupercite] = ACTIONS(12235), + [anon_sym_BSLASHautocite] = ACTIONS(12235), + [anon_sym_BSLASHAutocite] = ACTIONS(12235), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12233), + [anon_sym_BSLASHvolcite] = ACTIONS(12235), + [anon_sym_BSLASHVolcite] = ACTIONS(12235), + [anon_sym_BSLASHpvolcite] = ACTIONS(12235), + [anon_sym_BSLASHPvolcite] = ACTIONS(12235), + [anon_sym_BSLASHfvolcite] = ACTIONS(12235), + [anon_sym_BSLASHftvolcite] = ACTIONS(12235), + [anon_sym_BSLASHsvolcite] = ACTIONS(12235), + [anon_sym_BSLASHSvolcite] = ACTIONS(12235), + [anon_sym_BSLASHtvolcite] = ACTIONS(12235), + [anon_sym_BSLASHTvolcite] = ACTIONS(12235), + [anon_sym_BSLASHavolcite] = ACTIONS(12235), + [anon_sym_BSLASHAvolcite] = ACTIONS(12235), + [anon_sym_BSLASHnotecite] = ACTIONS(12235), + [anon_sym_BSLASHpnotecite] = ACTIONS(12235), + [anon_sym_BSLASHPnotecite] = ACTIONS(12235), + [anon_sym_BSLASHfnotecite] = ACTIONS(12235), + [anon_sym_BSLASHusepackage] = ACTIONS(12235), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12235), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12235), + [anon_sym_BSLASHinclude] = ACTIONS(12235), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12235), + [anon_sym_BSLASHinput] = ACTIONS(12235), + [anon_sym_BSLASHsubfile] = ACTIONS(12235), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12235), + [anon_sym_BSLASHbibliography] = ACTIONS(12235), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12235), + [anon_sym_BSLASHincludesvg] = ACTIONS(12235), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12235), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12235), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12235), + [anon_sym_BSLASHimport] = ACTIONS(12235), + [anon_sym_BSLASHsubimport] = ACTIONS(12235), + [anon_sym_BSLASHinputfrom] = ACTIONS(12235), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12235), + [anon_sym_BSLASHincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12235), + [anon_sym_BSLASHlabel] = ACTIONS(12235), + [anon_sym_BSLASHref] = ACTIONS(12235), + [anon_sym_BSLASHvref] = ACTIONS(12235), + [anon_sym_BSLASHVref] = ACTIONS(12235), + [anon_sym_BSLASHautoref] = ACTIONS(12235), + [anon_sym_BSLASHpageref] = ACTIONS(12235), + [anon_sym_BSLASHcref] = ACTIONS(12235), + [anon_sym_BSLASHCref] = ACTIONS(12235), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnameCref] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12235), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12235), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12235), + [anon_sym_BSLASHlabelcref] = ACTIONS(12235), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12235), + [anon_sym_BSLASHeqref] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange] = ACTIONS(12235), + [anon_sym_BSLASHCrefrange] = ACTIONS(12235), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewlabel] = ACTIONS(12235), + [anon_sym_BSLASHnewcommand] = ACTIONS(12235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12235), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12235), + [anon_sym_BSLASHgls] = ACTIONS(12235), + [anon_sym_BSLASHGls] = ACTIONS(12235), + [anon_sym_BSLASHGLS] = ACTIONS(12235), + [anon_sym_BSLASHglspl] = ACTIONS(12235), + [anon_sym_BSLASHGlspl] = ACTIONS(12235), + [anon_sym_BSLASHGLSpl] = ACTIONS(12235), + [anon_sym_BSLASHglsdisp] = ACTIONS(12235), + [anon_sym_BSLASHglslink] = ACTIONS(12235), + [anon_sym_BSLASHglstext] = ACTIONS(12235), + [anon_sym_BSLASHGlstext] = ACTIONS(12235), + [anon_sym_BSLASHGLStext] = ACTIONS(12235), + [anon_sym_BSLASHglsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12235), + [anon_sym_BSLASHglsplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSplural] = ACTIONS(12235), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12235), + [anon_sym_BSLASHglsname] = ACTIONS(12235), + [anon_sym_BSLASHGlsname] = ACTIONS(12235), + [anon_sym_BSLASHGLSname] = ACTIONS(12235), + [anon_sym_BSLASHglssymbol] = ACTIONS(12235), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12235), + [anon_sym_BSLASHglsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12235), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12235), + [anon_sym_BSLASHglsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12235), + [anon_sym_BSLASHglsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12235), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12235), + [anon_sym_BSLASHglsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12235), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12235), + [anon_sym_BSLASHglsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12235), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12235), + [anon_sym_BSLASHnewacronym] = ACTIONS(12235), + [anon_sym_BSLASHacrshort] = ACTIONS(12235), + [anon_sym_BSLASHAcrshort] = ACTIONS(12235), + [anon_sym_BSLASHACRshort] = ACTIONS(12235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12235), + [anon_sym_BSLASHacrlong] = ACTIONS(12235), + [anon_sym_BSLASHAcrlong] = ACTIONS(12235), + [anon_sym_BSLASHACRlong] = ACTIONS(12235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12235), + [anon_sym_BSLASHacrfull] = ACTIONS(12235), + [anon_sym_BSLASHAcrfull] = ACTIONS(12235), + [anon_sym_BSLASHACRfull] = ACTIONS(12235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12235), + [anon_sym_BSLASHacs] = ACTIONS(12235), + [anon_sym_BSLASHAcs] = ACTIONS(12235), + [anon_sym_BSLASHacsp] = ACTIONS(12235), + [anon_sym_BSLASHAcsp] = ACTIONS(12235), + [anon_sym_BSLASHacl] = ACTIONS(12235), + [anon_sym_BSLASHAcl] = ACTIONS(12235), + [anon_sym_BSLASHaclp] = ACTIONS(12235), + [anon_sym_BSLASHAclp] = ACTIONS(12235), + [anon_sym_BSLASHacf] = ACTIONS(12235), + [anon_sym_BSLASHAcf] = ACTIONS(12235), + [anon_sym_BSLASHacfp] = ACTIONS(12235), + [anon_sym_BSLASHAcfp] = ACTIONS(12235), + [anon_sym_BSLASHac] = ACTIONS(12235), + [anon_sym_BSLASHAc] = ACTIONS(12235), + [anon_sym_BSLASHacp] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12235), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12235), + [anon_sym_BSLASHcolor] = ACTIONS(12235), + [anon_sym_BSLASHcolorbox] = ACTIONS(12235), + [anon_sym_BSLASHtextcolor] = ACTIONS(12235), + [anon_sym_BSLASHpagecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12235), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12235), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12235), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12235), + }, + [1886] = { + [sym_generic_command_name] = ACTIONS(12551), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12549), + [anon_sym_RBRACK] = ACTIONS(12549), + [anon_sym_LBRACE] = ACTIONS(12549), + [anon_sym_RBRACE] = ACTIONS(12549), + [anon_sym_LPAREN] = ACTIONS(12549), + [anon_sym_COMMA] = ACTIONS(12549), + [anon_sym_EQ] = ACTIONS(12549), + [sym_word] = ACTIONS(12549), + [sym_param] = ACTIONS(12549), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12549), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12549), + [anon_sym_DOLLAR] = ACTIONS(12551), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12549), + [anon_sym_BSLASHbegin] = ACTIONS(12551), + [anon_sym_BSLASHcaption] = ACTIONS(12551), + [anon_sym_BSLASHcite] = ACTIONS(12551), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCite] = ACTIONS(12551), + [anon_sym_BSLASHnocite] = ACTIONS(12551), + [anon_sym_BSLASHcitet] = ACTIONS(12551), + [anon_sym_BSLASHcitep] = ACTIONS(12551), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteauthor] = ACTIONS(12551), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12551), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitetitle] = ACTIONS(12551), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteyear] = ACTIONS(12551), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12549), + [anon_sym_BSLASHcitedate] = ACTIONS(12551), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12549), + [anon_sym_BSLASHciteurl] = ACTIONS(12551), + [anon_sym_BSLASHfullcite] = ACTIONS(12551), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12551), + [anon_sym_BSLASHcitealt] = ACTIONS(12551), + [anon_sym_BSLASHcitealp] = ACTIONS(12551), + [anon_sym_BSLASHcitetext] = ACTIONS(12551), + [anon_sym_BSLASHparencite] = ACTIONS(12551), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHParencite] = ACTIONS(12551), + [anon_sym_BSLASHfootcite] = ACTIONS(12551), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12551), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12551), + [anon_sym_BSLASHtextcite] = ACTIONS(12551), + [anon_sym_BSLASHTextcite] = ACTIONS(12551), + [anon_sym_BSLASHsmartcite] = ACTIONS(12551), + [anon_sym_BSLASHSmartcite] = ACTIONS(12551), + [anon_sym_BSLASHsupercite] = ACTIONS(12551), + [anon_sym_BSLASHautocite] = ACTIONS(12551), + [anon_sym_BSLASHAutocite] = ACTIONS(12551), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12549), + [anon_sym_BSLASHvolcite] = ACTIONS(12551), + [anon_sym_BSLASHVolcite] = ACTIONS(12551), + [anon_sym_BSLASHpvolcite] = ACTIONS(12551), + [anon_sym_BSLASHPvolcite] = ACTIONS(12551), + [anon_sym_BSLASHfvolcite] = ACTIONS(12551), + [anon_sym_BSLASHftvolcite] = ACTIONS(12551), + [anon_sym_BSLASHsvolcite] = ACTIONS(12551), + [anon_sym_BSLASHSvolcite] = ACTIONS(12551), + [anon_sym_BSLASHtvolcite] = ACTIONS(12551), + [anon_sym_BSLASHTvolcite] = ACTIONS(12551), + [anon_sym_BSLASHavolcite] = ACTIONS(12551), + [anon_sym_BSLASHAvolcite] = ACTIONS(12551), + [anon_sym_BSLASHnotecite] = ACTIONS(12551), + [anon_sym_BSLASHpnotecite] = ACTIONS(12551), + [anon_sym_BSLASHPnotecite] = ACTIONS(12551), + [anon_sym_BSLASHfnotecite] = ACTIONS(12551), + [anon_sym_BSLASHusepackage] = ACTIONS(12551), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12551), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12551), + [anon_sym_BSLASHinclude] = ACTIONS(12551), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12551), + [anon_sym_BSLASHinput] = ACTIONS(12551), + [anon_sym_BSLASHsubfile] = ACTIONS(12551), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12551), + [anon_sym_BSLASHbibliography] = ACTIONS(12551), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12551), + [anon_sym_BSLASHincludesvg] = ACTIONS(12551), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12551), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12551), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12551), + [anon_sym_BSLASHimport] = ACTIONS(12551), + [anon_sym_BSLASHsubimport] = ACTIONS(12551), + [anon_sym_BSLASHinputfrom] = ACTIONS(12551), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12551), + [anon_sym_BSLASHincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12551), + [anon_sym_BSLASHlabel] = ACTIONS(12551), + [anon_sym_BSLASHref] = ACTIONS(12551), + [anon_sym_BSLASHvref] = ACTIONS(12551), + [anon_sym_BSLASHVref] = ACTIONS(12551), + [anon_sym_BSLASHautoref] = ACTIONS(12551), + [anon_sym_BSLASHpageref] = ACTIONS(12551), + [anon_sym_BSLASHcref] = ACTIONS(12551), + [anon_sym_BSLASHCref] = ACTIONS(12551), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnameCref] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12551), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12551), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12551), + [anon_sym_BSLASHlabelcref] = ACTIONS(12551), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12551), + [anon_sym_BSLASHeqref] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange] = ACTIONS(12551), + [anon_sym_BSLASHCrefrange] = ACTIONS(12551), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewlabel] = ACTIONS(12551), + [anon_sym_BSLASHnewcommand] = ACTIONS(12551), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12551), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12549), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12551), + [anon_sym_BSLASHgls] = ACTIONS(12551), + [anon_sym_BSLASHGls] = ACTIONS(12551), + [anon_sym_BSLASHGLS] = ACTIONS(12551), + [anon_sym_BSLASHglspl] = ACTIONS(12551), + [anon_sym_BSLASHGlspl] = ACTIONS(12551), + [anon_sym_BSLASHGLSpl] = ACTIONS(12551), + [anon_sym_BSLASHglsdisp] = ACTIONS(12551), + [anon_sym_BSLASHglslink] = ACTIONS(12551), + [anon_sym_BSLASHglstext] = ACTIONS(12551), + [anon_sym_BSLASHGlstext] = ACTIONS(12551), + [anon_sym_BSLASHGLStext] = ACTIONS(12551), + [anon_sym_BSLASHglsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12551), + [anon_sym_BSLASHglsplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSplural] = ACTIONS(12551), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12551), + [anon_sym_BSLASHglsname] = ACTIONS(12551), + [anon_sym_BSLASHGlsname] = ACTIONS(12551), + [anon_sym_BSLASHGLSname] = ACTIONS(12551), + [anon_sym_BSLASHglssymbol] = ACTIONS(12551), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12551), + [anon_sym_BSLASHglsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12551), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12551), + [anon_sym_BSLASHglsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12551), + [anon_sym_BSLASHglsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12551), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12551), + [anon_sym_BSLASHglsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12551), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12551), + [anon_sym_BSLASHglsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12551), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12551), + [anon_sym_BSLASHnewacronym] = ACTIONS(12551), + [anon_sym_BSLASHacrshort] = ACTIONS(12551), + [anon_sym_BSLASHAcrshort] = ACTIONS(12551), + [anon_sym_BSLASHACRshort] = ACTIONS(12551), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12551), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12551), + [anon_sym_BSLASHacrlong] = ACTIONS(12551), + [anon_sym_BSLASHAcrlong] = ACTIONS(12551), + [anon_sym_BSLASHACRlong] = ACTIONS(12551), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12551), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12551), + [anon_sym_BSLASHacrfull] = ACTIONS(12551), + [anon_sym_BSLASHAcrfull] = ACTIONS(12551), + [anon_sym_BSLASHACRfull] = ACTIONS(12551), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12551), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12551), + [anon_sym_BSLASHacs] = ACTIONS(12551), + [anon_sym_BSLASHAcs] = ACTIONS(12551), + [anon_sym_BSLASHacsp] = ACTIONS(12551), + [anon_sym_BSLASHAcsp] = ACTIONS(12551), + [anon_sym_BSLASHacl] = ACTIONS(12551), + [anon_sym_BSLASHAcl] = ACTIONS(12551), + [anon_sym_BSLASHaclp] = ACTIONS(12551), + [anon_sym_BSLASHAclp] = ACTIONS(12551), + [anon_sym_BSLASHacf] = ACTIONS(12551), + [anon_sym_BSLASHAcf] = ACTIONS(12551), + [anon_sym_BSLASHacfp] = ACTIONS(12551), + [anon_sym_BSLASHAcfp] = ACTIONS(12551), + [anon_sym_BSLASHac] = ACTIONS(12551), + [anon_sym_BSLASHAc] = ACTIONS(12551), + [anon_sym_BSLASHacp] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12551), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12551), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12551), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12551), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12551), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12551), + [anon_sym_BSLASHcolor] = ACTIONS(12551), + [anon_sym_BSLASHcolorbox] = ACTIONS(12551), + [anon_sym_BSLASHtextcolor] = ACTIONS(12551), + [anon_sym_BSLASHpagecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12551), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12551), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12551), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12551), + }, + [1887] = { + [sym_generic_command_name] = ACTIONS(12136), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12134), + [anon_sym_RBRACK] = ACTIONS(12134), + [anon_sym_LBRACE] = ACTIONS(12134), + [anon_sym_RBRACE] = ACTIONS(12134), + [anon_sym_LPAREN] = ACTIONS(12134), + [anon_sym_COMMA] = ACTIONS(12134), + [anon_sym_EQ] = ACTIONS(12134), + [sym_word] = ACTIONS(12134), + [sym_param] = ACTIONS(12134), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12134), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12134), + [anon_sym_DOLLAR] = ACTIONS(12136), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12134), + [anon_sym_BSLASHbegin] = ACTIONS(12136), + [anon_sym_BSLASHcaption] = ACTIONS(12136), + [anon_sym_BSLASHcite] = ACTIONS(12136), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCite] = ACTIONS(12136), + [anon_sym_BSLASHnocite] = ACTIONS(12136), + [anon_sym_BSLASHcitet] = ACTIONS(12136), + [anon_sym_BSLASHcitep] = ACTIONS(12136), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteauthor] = ACTIONS(12136), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12136), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitetitle] = ACTIONS(12136), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteyear] = ACTIONS(12136), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12134), + [anon_sym_BSLASHcitedate] = ACTIONS(12136), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12134), + [anon_sym_BSLASHciteurl] = ACTIONS(12136), + [anon_sym_BSLASHfullcite] = ACTIONS(12136), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12136), + [anon_sym_BSLASHcitealt] = ACTIONS(12136), + [anon_sym_BSLASHcitealp] = ACTIONS(12136), + [anon_sym_BSLASHcitetext] = ACTIONS(12136), + [anon_sym_BSLASHparencite] = ACTIONS(12136), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHParencite] = ACTIONS(12136), + [anon_sym_BSLASHfootcite] = ACTIONS(12136), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12136), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12136), + [anon_sym_BSLASHtextcite] = ACTIONS(12136), + [anon_sym_BSLASHTextcite] = ACTIONS(12136), + [anon_sym_BSLASHsmartcite] = ACTIONS(12136), + [anon_sym_BSLASHSmartcite] = ACTIONS(12136), + [anon_sym_BSLASHsupercite] = ACTIONS(12136), + [anon_sym_BSLASHautocite] = ACTIONS(12136), + [anon_sym_BSLASHAutocite] = ACTIONS(12136), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12134), + [anon_sym_BSLASHvolcite] = ACTIONS(12136), + [anon_sym_BSLASHVolcite] = ACTIONS(12136), + [anon_sym_BSLASHpvolcite] = ACTIONS(12136), + [anon_sym_BSLASHPvolcite] = ACTIONS(12136), + [anon_sym_BSLASHfvolcite] = ACTIONS(12136), + [anon_sym_BSLASHftvolcite] = ACTIONS(12136), + [anon_sym_BSLASHsvolcite] = ACTIONS(12136), + [anon_sym_BSLASHSvolcite] = ACTIONS(12136), + [anon_sym_BSLASHtvolcite] = ACTIONS(12136), + [anon_sym_BSLASHTvolcite] = ACTIONS(12136), + [anon_sym_BSLASHavolcite] = ACTIONS(12136), + [anon_sym_BSLASHAvolcite] = ACTIONS(12136), + [anon_sym_BSLASHnotecite] = ACTIONS(12136), + [anon_sym_BSLASHpnotecite] = ACTIONS(12136), + [anon_sym_BSLASHPnotecite] = ACTIONS(12136), + [anon_sym_BSLASHfnotecite] = ACTIONS(12136), + [anon_sym_BSLASHusepackage] = ACTIONS(12136), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12136), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12136), + [anon_sym_BSLASHinclude] = ACTIONS(12136), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12136), + [anon_sym_BSLASHinput] = ACTIONS(12136), + [anon_sym_BSLASHsubfile] = ACTIONS(12136), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12136), + [anon_sym_BSLASHbibliography] = ACTIONS(12136), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12136), + [anon_sym_BSLASHincludesvg] = ACTIONS(12136), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12136), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12136), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12136), + [anon_sym_BSLASHimport] = ACTIONS(12136), + [anon_sym_BSLASHsubimport] = ACTIONS(12136), + [anon_sym_BSLASHinputfrom] = ACTIONS(12136), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12136), + [anon_sym_BSLASHincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12136), + [anon_sym_BSLASHlabel] = ACTIONS(12136), + [anon_sym_BSLASHref] = ACTIONS(12136), + [anon_sym_BSLASHvref] = ACTIONS(12136), + [anon_sym_BSLASHVref] = ACTIONS(12136), + [anon_sym_BSLASHautoref] = ACTIONS(12136), + [anon_sym_BSLASHpageref] = ACTIONS(12136), + [anon_sym_BSLASHcref] = ACTIONS(12136), + [anon_sym_BSLASHCref] = ACTIONS(12136), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnameCref] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12136), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12136), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12136), + [anon_sym_BSLASHlabelcref] = ACTIONS(12136), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12136), + [anon_sym_BSLASHeqref] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange] = ACTIONS(12136), + [anon_sym_BSLASHCrefrange] = ACTIONS(12136), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewlabel] = ACTIONS(12136), + [anon_sym_BSLASHnewcommand] = ACTIONS(12136), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12136), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12134), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12136), + [anon_sym_BSLASHgls] = ACTIONS(12136), + [anon_sym_BSLASHGls] = ACTIONS(12136), + [anon_sym_BSLASHGLS] = ACTIONS(12136), + [anon_sym_BSLASHglspl] = ACTIONS(12136), + [anon_sym_BSLASHGlspl] = ACTIONS(12136), + [anon_sym_BSLASHGLSpl] = ACTIONS(12136), + [anon_sym_BSLASHglsdisp] = ACTIONS(12136), + [anon_sym_BSLASHglslink] = ACTIONS(12136), + [anon_sym_BSLASHglstext] = ACTIONS(12136), + [anon_sym_BSLASHGlstext] = ACTIONS(12136), + [anon_sym_BSLASHGLStext] = ACTIONS(12136), + [anon_sym_BSLASHglsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12136), + [anon_sym_BSLASHglsplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSplural] = ACTIONS(12136), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12136), + [anon_sym_BSLASHglsname] = ACTIONS(12136), + [anon_sym_BSLASHGlsname] = ACTIONS(12136), + [anon_sym_BSLASHGLSname] = ACTIONS(12136), + [anon_sym_BSLASHglssymbol] = ACTIONS(12136), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12136), + [anon_sym_BSLASHglsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12136), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12136), + [anon_sym_BSLASHglsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12136), + [anon_sym_BSLASHglsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12136), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12136), + [anon_sym_BSLASHglsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12136), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12136), + [anon_sym_BSLASHglsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12136), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12136), + [anon_sym_BSLASHnewacronym] = ACTIONS(12136), + [anon_sym_BSLASHacrshort] = ACTIONS(12136), + [anon_sym_BSLASHAcrshort] = ACTIONS(12136), + [anon_sym_BSLASHACRshort] = ACTIONS(12136), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12136), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12136), + [anon_sym_BSLASHacrlong] = ACTIONS(12136), + [anon_sym_BSLASHAcrlong] = ACTIONS(12136), + [anon_sym_BSLASHACRlong] = ACTIONS(12136), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12136), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12136), + [anon_sym_BSLASHacrfull] = ACTIONS(12136), + [anon_sym_BSLASHAcrfull] = ACTIONS(12136), + [anon_sym_BSLASHACRfull] = ACTIONS(12136), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12136), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12136), + [anon_sym_BSLASHacs] = ACTIONS(12136), + [anon_sym_BSLASHAcs] = ACTIONS(12136), + [anon_sym_BSLASHacsp] = ACTIONS(12136), + [anon_sym_BSLASHAcsp] = ACTIONS(12136), + [anon_sym_BSLASHacl] = ACTIONS(12136), + [anon_sym_BSLASHAcl] = ACTIONS(12136), + [anon_sym_BSLASHaclp] = ACTIONS(12136), + [anon_sym_BSLASHAclp] = ACTIONS(12136), + [anon_sym_BSLASHacf] = ACTIONS(12136), + [anon_sym_BSLASHAcf] = ACTIONS(12136), + [anon_sym_BSLASHacfp] = ACTIONS(12136), + [anon_sym_BSLASHAcfp] = ACTIONS(12136), + [anon_sym_BSLASHac] = ACTIONS(12136), + [anon_sym_BSLASHAc] = ACTIONS(12136), + [anon_sym_BSLASHacp] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12136), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12136), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12136), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12136), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12136), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12136), + [anon_sym_BSLASHcolor] = ACTIONS(12136), + [anon_sym_BSLASHcolorbox] = ACTIONS(12136), + [anon_sym_BSLASHtextcolor] = ACTIONS(12136), + [anon_sym_BSLASHpagecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12136), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12136), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12136), + }, + [1888] = { + [sym_generic_command_name] = ACTIONS(12221), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12219), + [anon_sym_RBRACK] = ACTIONS(12219), + [anon_sym_LBRACE] = ACTIONS(12797), + [anon_sym_RBRACE] = ACTIONS(12219), + [anon_sym_LPAREN] = ACTIONS(12219), + [anon_sym_COMMA] = ACTIONS(12219), + [anon_sym_EQ] = ACTIONS(12219), + [sym_word] = ACTIONS(12219), + [sym_param] = ACTIONS(12219), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12219), + [anon_sym_DOLLAR] = ACTIONS(12221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12219), + [anon_sym_BSLASHbegin] = ACTIONS(12221), + [anon_sym_BSLASHcaption] = ACTIONS(12221), + [anon_sym_BSLASHcite] = ACTIONS(12221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCite] = ACTIONS(12221), + [anon_sym_BSLASHnocite] = ACTIONS(12221), + [anon_sym_BSLASHcitet] = ACTIONS(12221), + [anon_sym_BSLASHcitep] = ACTIONS(12221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteauthor] = ACTIONS(12221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitetitle] = ACTIONS(12221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteyear] = ACTIONS(12221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12219), + [anon_sym_BSLASHcitedate] = ACTIONS(12221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12219), + [anon_sym_BSLASHciteurl] = ACTIONS(12221), + [anon_sym_BSLASHfullcite] = ACTIONS(12221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12221), + [anon_sym_BSLASHcitealt] = ACTIONS(12221), + [anon_sym_BSLASHcitealp] = ACTIONS(12221), + [anon_sym_BSLASHcitetext] = ACTIONS(12221), + [anon_sym_BSLASHparencite] = ACTIONS(12221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHParencite] = ACTIONS(12221), + [anon_sym_BSLASHfootcite] = ACTIONS(12221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12221), + [anon_sym_BSLASHtextcite] = ACTIONS(12221), + [anon_sym_BSLASHTextcite] = ACTIONS(12221), + [anon_sym_BSLASHsmartcite] = ACTIONS(12221), + [anon_sym_BSLASHSmartcite] = ACTIONS(12221), + [anon_sym_BSLASHsupercite] = ACTIONS(12221), + [anon_sym_BSLASHautocite] = ACTIONS(12221), + [anon_sym_BSLASHAutocite] = ACTIONS(12221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12219), + [anon_sym_BSLASHvolcite] = ACTIONS(12221), + [anon_sym_BSLASHVolcite] = ACTIONS(12221), + [anon_sym_BSLASHpvolcite] = ACTIONS(12221), + [anon_sym_BSLASHPvolcite] = ACTIONS(12221), + [anon_sym_BSLASHfvolcite] = ACTIONS(12221), + [anon_sym_BSLASHftvolcite] = ACTIONS(12221), + [anon_sym_BSLASHsvolcite] = ACTIONS(12221), + [anon_sym_BSLASHSvolcite] = ACTIONS(12221), + [anon_sym_BSLASHtvolcite] = ACTIONS(12221), + [anon_sym_BSLASHTvolcite] = ACTIONS(12221), + [anon_sym_BSLASHavolcite] = ACTIONS(12221), + [anon_sym_BSLASHAvolcite] = ACTIONS(12221), + [anon_sym_BSLASHnotecite] = ACTIONS(12221), + [anon_sym_BSLASHpnotecite] = ACTIONS(12221), + [anon_sym_BSLASHPnotecite] = ACTIONS(12221), + [anon_sym_BSLASHfnotecite] = ACTIONS(12221), + [anon_sym_BSLASHusepackage] = ACTIONS(12221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12221), + [anon_sym_BSLASHinclude] = ACTIONS(12221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12221), + [anon_sym_BSLASHinput] = ACTIONS(12221), + [anon_sym_BSLASHsubfile] = ACTIONS(12221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12221), + [anon_sym_BSLASHbibliography] = ACTIONS(12221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12221), + [anon_sym_BSLASHincludesvg] = ACTIONS(12221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12221), + [anon_sym_BSLASHimport] = ACTIONS(12221), + [anon_sym_BSLASHsubimport] = ACTIONS(12221), + [anon_sym_BSLASHinputfrom] = ACTIONS(12221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12221), + [anon_sym_BSLASHincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12221), + [anon_sym_BSLASHlabel] = ACTIONS(12221), + [anon_sym_BSLASHref] = ACTIONS(12221), + [anon_sym_BSLASHvref] = ACTIONS(12221), + [anon_sym_BSLASHVref] = ACTIONS(12221), + [anon_sym_BSLASHautoref] = ACTIONS(12221), + [anon_sym_BSLASHpageref] = ACTIONS(12221), + [anon_sym_BSLASHcref] = ACTIONS(12221), + [anon_sym_BSLASHCref] = ACTIONS(12221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnameCref] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12221), + [anon_sym_BSLASHlabelcref] = ACTIONS(12221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12221), + [anon_sym_BSLASHeqref] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange] = ACTIONS(12221), + [anon_sym_BSLASHCrefrange] = ACTIONS(12221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewlabel] = ACTIONS(12221), + [anon_sym_BSLASHnewcommand] = ACTIONS(12221), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12219), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12221), + [anon_sym_BSLASHgls] = ACTIONS(12221), + [anon_sym_BSLASHGls] = ACTIONS(12221), + [anon_sym_BSLASHGLS] = ACTIONS(12221), + [anon_sym_BSLASHglspl] = ACTIONS(12221), + [anon_sym_BSLASHGlspl] = ACTIONS(12221), + [anon_sym_BSLASHGLSpl] = ACTIONS(12221), + [anon_sym_BSLASHglsdisp] = ACTIONS(12221), + [anon_sym_BSLASHglslink] = ACTIONS(12221), + [anon_sym_BSLASHglstext] = ACTIONS(12221), + [anon_sym_BSLASHGlstext] = ACTIONS(12221), + [anon_sym_BSLASHGLStext] = ACTIONS(12221), + [anon_sym_BSLASHglsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12221), + [anon_sym_BSLASHglsplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSplural] = ACTIONS(12221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12221), + [anon_sym_BSLASHglsname] = ACTIONS(12221), + [anon_sym_BSLASHGlsname] = ACTIONS(12221), + [anon_sym_BSLASHGLSname] = ACTIONS(12221), + [anon_sym_BSLASHglssymbol] = ACTIONS(12221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12221), + [anon_sym_BSLASHglsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12221), + [anon_sym_BSLASHglsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12221), + [anon_sym_BSLASHglsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12221), + [anon_sym_BSLASHglsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12221), + [anon_sym_BSLASHglsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12221), + [anon_sym_BSLASHnewacronym] = ACTIONS(12221), + [anon_sym_BSLASHacrshort] = ACTIONS(12221), + [anon_sym_BSLASHAcrshort] = ACTIONS(12221), + [anon_sym_BSLASHACRshort] = ACTIONS(12221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12221), + [anon_sym_BSLASHacrlong] = ACTIONS(12221), + [anon_sym_BSLASHAcrlong] = ACTIONS(12221), + [anon_sym_BSLASHACRlong] = ACTIONS(12221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12221), + [anon_sym_BSLASHacrfull] = ACTIONS(12221), + [anon_sym_BSLASHAcrfull] = ACTIONS(12221), + [anon_sym_BSLASHACRfull] = ACTIONS(12221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12221), + [anon_sym_BSLASHacs] = ACTIONS(12221), + [anon_sym_BSLASHAcs] = ACTIONS(12221), + [anon_sym_BSLASHacsp] = ACTIONS(12221), + [anon_sym_BSLASHAcsp] = ACTIONS(12221), + [anon_sym_BSLASHacl] = ACTIONS(12221), + [anon_sym_BSLASHAcl] = ACTIONS(12221), + [anon_sym_BSLASHaclp] = ACTIONS(12221), + [anon_sym_BSLASHAclp] = ACTIONS(12221), + [anon_sym_BSLASHacf] = ACTIONS(12221), + [anon_sym_BSLASHAcf] = ACTIONS(12221), + [anon_sym_BSLASHacfp] = ACTIONS(12221), + [anon_sym_BSLASHAcfp] = ACTIONS(12221), + [anon_sym_BSLASHac] = ACTIONS(12221), + [anon_sym_BSLASHAc] = ACTIONS(12221), + [anon_sym_BSLASHacp] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12221), + [anon_sym_BSLASHcolor] = ACTIONS(12221), + [anon_sym_BSLASHcolorbox] = ACTIONS(12221), + [anon_sym_BSLASHtextcolor] = ACTIONS(12221), + [anon_sym_BSLASHpagecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12221), + }, + [1889] = { + [sym_generic_command_name] = ACTIONS(12217), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12215), + [anon_sym_RBRACK] = ACTIONS(12215), + [anon_sym_LBRACE] = ACTIONS(12215), + [anon_sym_RBRACE] = ACTIONS(12215), + [anon_sym_LPAREN] = ACTIONS(12215), + [anon_sym_COMMA] = ACTIONS(12215), + [anon_sym_EQ] = ACTIONS(12215), + [sym_word] = ACTIONS(12215), + [sym_param] = ACTIONS(12215), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12215), + [anon_sym_DOLLAR] = ACTIONS(12217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12215), + [anon_sym_BSLASHbegin] = ACTIONS(12217), + [anon_sym_BSLASHcaption] = ACTIONS(12217), + [anon_sym_BSLASHcite] = ACTIONS(12217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCite] = ACTIONS(12217), + [anon_sym_BSLASHnocite] = ACTIONS(12217), + [anon_sym_BSLASHcitet] = ACTIONS(12217), + [anon_sym_BSLASHcitep] = ACTIONS(12217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteauthor] = ACTIONS(12217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitetitle] = ACTIONS(12217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteyear] = ACTIONS(12217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12215), + [anon_sym_BSLASHcitedate] = ACTIONS(12217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12215), + [anon_sym_BSLASHciteurl] = ACTIONS(12217), + [anon_sym_BSLASHfullcite] = ACTIONS(12217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12217), + [anon_sym_BSLASHcitealt] = ACTIONS(12217), + [anon_sym_BSLASHcitealp] = ACTIONS(12217), + [anon_sym_BSLASHcitetext] = ACTIONS(12217), + [anon_sym_BSLASHparencite] = ACTIONS(12217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHParencite] = ACTIONS(12217), + [anon_sym_BSLASHfootcite] = ACTIONS(12217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12217), + [anon_sym_BSLASHtextcite] = ACTIONS(12217), + [anon_sym_BSLASHTextcite] = ACTIONS(12217), + [anon_sym_BSLASHsmartcite] = ACTIONS(12217), + [anon_sym_BSLASHSmartcite] = ACTIONS(12217), + [anon_sym_BSLASHsupercite] = ACTIONS(12217), + [anon_sym_BSLASHautocite] = ACTIONS(12217), + [anon_sym_BSLASHAutocite] = ACTIONS(12217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12215), + [anon_sym_BSLASHvolcite] = ACTIONS(12217), + [anon_sym_BSLASHVolcite] = ACTIONS(12217), + [anon_sym_BSLASHpvolcite] = ACTIONS(12217), + [anon_sym_BSLASHPvolcite] = ACTIONS(12217), + [anon_sym_BSLASHfvolcite] = ACTIONS(12217), + [anon_sym_BSLASHftvolcite] = ACTIONS(12217), + [anon_sym_BSLASHsvolcite] = ACTIONS(12217), + [anon_sym_BSLASHSvolcite] = ACTIONS(12217), + [anon_sym_BSLASHtvolcite] = ACTIONS(12217), + [anon_sym_BSLASHTvolcite] = ACTIONS(12217), + [anon_sym_BSLASHavolcite] = ACTIONS(12217), + [anon_sym_BSLASHAvolcite] = ACTIONS(12217), + [anon_sym_BSLASHnotecite] = ACTIONS(12217), + [anon_sym_BSLASHpnotecite] = ACTIONS(12217), + [anon_sym_BSLASHPnotecite] = ACTIONS(12217), + [anon_sym_BSLASHfnotecite] = ACTIONS(12217), + [anon_sym_BSLASHusepackage] = ACTIONS(12217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12217), + [anon_sym_BSLASHinclude] = ACTIONS(12217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12217), + [anon_sym_BSLASHinput] = ACTIONS(12217), + [anon_sym_BSLASHsubfile] = ACTIONS(12217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12217), + [anon_sym_BSLASHbibliography] = ACTIONS(12217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12217), + [anon_sym_BSLASHincludesvg] = ACTIONS(12217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12217), + [anon_sym_BSLASHimport] = ACTIONS(12217), + [anon_sym_BSLASHsubimport] = ACTIONS(12217), + [anon_sym_BSLASHinputfrom] = ACTIONS(12217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12217), + [anon_sym_BSLASHincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12217), + [anon_sym_BSLASHlabel] = ACTIONS(12217), + [anon_sym_BSLASHref] = ACTIONS(12217), + [anon_sym_BSLASHvref] = ACTIONS(12217), + [anon_sym_BSLASHVref] = ACTIONS(12217), + [anon_sym_BSLASHautoref] = ACTIONS(12217), + [anon_sym_BSLASHpageref] = ACTIONS(12217), + [anon_sym_BSLASHcref] = ACTIONS(12217), + [anon_sym_BSLASHCref] = ACTIONS(12217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnameCref] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12217), + [anon_sym_BSLASHlabelcref] = ACTIONS(12217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12217), + [anon_sym_BSLASHeqref] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange] = ACTIONS(12217), + [anon_sym_BSLASHCrefrange] = ACTIONS(12217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewlabel] = ACTIONS(12217), + [anon_sym_BSLASHnewcommand] = ACTIONS(12217), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12217), + [anon_sym_BSLASHgls] = ACTIONS(12217), + [anon_sym_BSLASHGls] = ACTIONS(12217), + [anon_sym_BSLASHGLS] = ACTIONS(12217), + [anon_sym_BSLASHglspl] = ACTIONS(12217), + [anon_sym_BSLASHGlspl] = ACTIONS(12217), + [anon_sym_BSLASHGLSpl] = ACTIONS(12217), + [anon_sym_BSLASHglsdisp] = ACTIONS(12217), + [anon_sym_BSLASHglslink] = ACTIONS(12217), + [anon_sym_BSLASHglstext] = ACTIONS(12217), + [anon_sym_BSLASHGlstext] = ACTIONS(12217), + [anon_sym_BSLASHGLStext] = ACTIONS(12217), + [anon_sym_BSLASHglsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12217), + [anon_sym_BSLASHglsplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSplural] = ACTIONS(12217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12217), + [anon_sym_BSLASHglsname] = ACTIONS(12217), + [anon_sym_BSLASHGlsname] = ACTIONS(12217), + [anon_sym_BSLASHGLSname] = ACTIONS(12217), + [anon_sym_BSLASHglssymbol] = ACTIONS(12217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12217), + [anon_sym_BSLASHglsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12217), + [anon_sym_BSLASHglsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12217), + [anon_sym_BSLASHglsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12217), + [anon_sym_BSLASHglsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12217), + [anon_sym_BSLASHglsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12217), + [anon_sym_BSLASHnewacronym] = ACTIONS(12217), + [anon_sym_BSLASHacrshort] = ACTIONS(12217), + [anon_sym_BSLASHAcrshort] = ACTIONS(12217), + [anon_sym_BSLASHACRshort] = ACTIONS(12217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12217), + [anon_sym_BSLASHacrlong] = ACTIONS(12217), + [anon_sym_BSLASHAcrlong] = ACTIONS(12217), + [anon_sym_BSLASHACRlong] = ACTIONS(12217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12217), + [anon_sym_BSLASHacrfull] = ACTIONS(12217), + [anon_sym_BSLASHAcrfull] = ACTIONS(12217), + [anon_sym_BSLASHACRfull] = ACTIONS(12217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12217), + [anon_sym_BSLASHacs] = ACTIONS(12217), + [anon_sym_BSLASHAcs] = ACTIONS(12217), + [anon_sym_BSLASHacsp] = ACTIONS(12217), + [anon_sym_BSLASHAcsp] = ACTIONS(12217), + [anon_sym_BSLASHacl] = ACTIONS(12217), + [anon_sym_BSLASHAcl] = ACTIONS(12217), + [anon_sym_BSLASHaclp] = ACTIONS(12217), + [anon_sym_BSLASHAclp] = ACTIONS(12217), + [anon_sym_BSLASHacf] = ACTIONS(12217), + [anon_sym_BSLASHAcf] = ACTIONS(12217), + [anon_sym_BSLASHacfp] = ACTIONS(12217), + [anon_sym_BSLASHAcfp] = ACTIONS(12217), + [anon_sym_BSLASHac] = ACTIONS(12217), + [anon_sym_BSLASHAc] = ACTIONS(12217), + [anon_sym_BSLASHacp] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12217), + [anon_sym_BSLASHcolor] = ACTIONS(12217), + [anon_sym_BSLASHcolorbox] = ACTIONS(12217), + [anon_sym_BSLASHtextcolor] = ACTIONS(12217), + [anon_sym_BSLASHpagecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12217), + }, + [1890] = { + [sym_generic_command_name] = ACTIONS(12485), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12483), + [anon_sym_RBRACK] = ACTIONS(12483), + [anon_sym_LBRACE] = ACTIONS(12483), + [anon_sym_RBRACE] = ACTIONS(12483), + [anon_sym_LPAREN] = ACTIONS(12483), + [anon_sym_COMMA] = ACTIONS(12483), + [anon_sym_EQ] = ACTIONS(12483), + [sym_word] = ACTIONS(12483), + [sym_param] = ACTIONS(12483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12483), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12483), + [anon_sym_DOLLAR] = ACTIONS(12485), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12483), + [anon_sym_BSLASHbegin] = ACTIONS(12485), + [anon_sym_BSLASHcaption] = ACTIONS(12485), + [anon_sym_BSLASHcite] = ACTIONS(12485), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCite] = ACTIONS(12485), + [anon_sym_BSLASHnocite] = ACTIONS(12485), + [anon_sym_BSLASHcitet] = ACTIONS(12485), + [anon_sym_BSLASHcitep] = ACTIONS(12485), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteauthor] = ACTIONS(12485), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12485), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitetitle] = ACTIONS(12485), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteyear] = ACTIONS(12485), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12483), + [anon_sym_BSLASHcitedate] = ACTIONS(12485), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12483), + [anon_sym_BSLASHciteurl] = ACTIONS(12485), + [anon_sym_BSLASHfullcite] = ACTIONS(12485), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12485), + [anon_sym_BSLASHcitealt] = ACTIONS(12485), + [anon_sym_BSLASHcitealp] = ACTIONS(12485), + [anon_sym_BSLASHcitetext] = ACTIONS(12485), + [anon_sym_BSLASHparencite] = ACTIONS(12485), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHParencite] = ACTIONS(12485), + [anon_sym_BSLASHfootcite] = ACTIONS(12485), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12485), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12485), + [anon_sym_BSLASHtextcite] = ACTIONS(12485), + [anon_sym_BSLASHTextcite] = ACTIONS(12485), + [anon_sym_BSLASHsmartcite] = ACTIONS(12485), + [anon_sym_BSLASHSmartcite] = ACTIONS(12485), + [anon_sym_BSLASHsupercite] = ACTIONS(12485), + [anon_sym_BSLASHautocite] = ACTIONS(12485), + [anon_sym_BSLASHAutocite] = ACTIONS(12485), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12483), + [anon_sym_BSLASHvolcite] = ACTIONS(12485), + [anon_sym_BSLASHVolcite] = ACTIONS(12485), + [anon_sym_BSLASHpvolcite] = ACTIONS(12485), + [anon_sym_BSLASHPvolcite] = ACTIONS(12485), + [anon_sym_BSLASHfvolcite] = ACTIONS(12485), + [anon_sym_BSLASHftvolcite] = ACTIONS(12485), + [anon_sym_BSLASHsvolcite] = ACTIONS(12485), + [anon_sym_BSLASHSvolcite] = ACTIONS(12485), + [anon_sym_BSLASHtvolcite] = ACTIONS(12485), + [anon_sym_BSLASHTvolcite] = ACTIONS(12485), + [anon_sym_BSLASHavolcite] = ACTIONS(12485), + [anon_sym_BSLASHAvolcite] = ACTIONS(12485), + [anon_sym_BSLASHnotecite] = ACTIONS(12485), + [anon_sym_BSLASHpnotecite] = ACTIONS(12485), + [anon_sym_BSLASHPnotecite] = ACTIONS(12485), + [anon_sym_BSLASHfnotecite] = ACTIONS(12485), + [anon_sym_BSLASHusepackage] = ACTIONS(12485), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12485), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12485), + [anon_sym_BSLASHinclude] = ACTIONS(12485), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12485), + [anon_sym_BSLASHinput] = ACTIONS(12485), + [anon_sym_BSLASHsubfile] = ACTIONS(12485), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12485), + [anon_sym_BSLASHbibliography] = ACTIONS(12485), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12485), + [anon_sym_BSLASHincludesvg] = ACTIONS(12485), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12485), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12485), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12485), + [anon_sym_BSLASHimport] = ACTIONS(12485), + [anon_sym_BSLASHsubimport] = ACTIONS(12485), + [anon_sym_BSLASHinputfrom] = ACTIONS(12485), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12485), + [anon_sym_BSLASHincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12485), + [anon_sym_BSLASHlabel] = ACTIONS(12485), + [anon_sym_BSLASHref] = ACTIONS(12485), + [anon_sym_BSLASHvref] = ACTIONS(12485), + [anon_sym_BSLASHVref] = ACTIONS(12485), + [anon_sym_BSLASHautoref] = ACTIONS(12485), + [anon_sym_BSLASHpageref] = ACTIONS(12485), + [anon_sym_BSLASHcref] = ACTIONS(12485), + [anon_sym_BSLASHCref] = ACTIONS(12485), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnameCref] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12485), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12485), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12485), + [anon_sym_BSLASHlabelcref] = ACTIONS(12485), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12485), + [anon_sym_BSLASHeqref] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange] = ACTIONS(12485), + [anon_sym_BSLASHCrefrange] = ACTIONS(12485), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewlabel] = ACTIONS(12485), + [anon_sym_BSLASHnewcommand] = ACTIONS(12485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12485), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12485), + [anon_sym_BSLASHgls] = ACTIONS(12485), + [anon_sym_BSLASHGls] = ACTIONS(12485), + [anon_sym_BSLASHGLS] = ACTIONS(12485), + [anon_sym_BSLASHglspl] = ACTIONS(12485), + [anon_sym_BSLASHGlspl] = ACTIONS(12485), + [anon_sym_BSLASHGLSpl] = ACTIONS(12485), + [anon_sym_BSLASHglsdisp] = ACTIONS(12485), + [anon_sym_BSLASHglslink] = ACTIONS(12485), + [anon_sym_BSLASHglstext] = ACTIONS(12485), + [anon_sym_BSLASHGlstext] = ACTIONS(12485), + [anon_sym_BSLASHGLStext] = ACTIONS(12485), + [anon_sym_BSLASHglsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12485), + [anon_sym_BSLASHglsplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSplural] = ACTIONS(12485), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12485), + [anon_sym_BSLASHglsname] = ACTIONS(12485), + [anon_sym_BSLASHGlsname] = ACTIONS(12485), + [anon_sym_BSLASHGLSname] = ACTIONS(12485), + [anon_sym_BSLASHglssymbol] = ACTIONS(12485), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12485), + [anon_sym_BSLASHglsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12485), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12485), + [anon_sym_BSLASHglsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12485), + [anon_sym_BSLASHglsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12485), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12485), + [anon_sym_BSLASHglsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12485), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12485), + [anon_sym_BSLASHglsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12485), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12485), + [anon_sym_BSLASHnewacronym] = ACTIONS(12485), + [anon_sym_BSLASHacrshort] = ACTIONS(12485), + [anon_sym_BSLASHAcrshort] = ACTIONS(12485), + [anon_sym_BSLASHACRshort] = ACTIONS(12485), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12485), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12485), + [anon_sym_BSLASHacrlong] = ACTIONS(12485), + [anon_sym_BSLASHAcrlong] = ACTIONS(12485), + [anon_sym_BSLASHACRlong] = ACTIONS(12485), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12485), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12485), + [anon_sym_BSLASHacrfull] = ACTIONS(12485), + [anon_sym_BSLASHAcrfull] = ACTIONS(12485), + [anon_sym_BSLASHACRfull] = ACTIONS(12485), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12485), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12485), + [anon_sym_BSLASHacs] = ACTIONS(12485), + [anon_sym_BSLASHAcs] = ACTIONS(12485), + [anon_sym_BSLASHacsp] = ACTIONS(12485), + [anon_sym_BSLASHAcsp] = ACTIONS(12485), + [anon_sym_BSLASHacl] = ACTIONS(12485), + [anon_sym_BSLASHAcl] = ACTIONS(12485), + [anon_sym_BSLASHaclp] = ACTIONS(12485), + [anon_sym_BSLASHAclp] = ACTIONS(12485), + [anon_sym_BSLASHacf] = ACTIONS(12485), + [anon_sym_BSLASHAcf] = ACTIONS(12485), + [anon_sym_BSLASHacfp] = ACTIONS(12485), + [anon_sym_BSLASHAcfp] = ACTIONS(12485), + [anon_sym_BSLASHac] = ACTIONS(12485), + [anon_sym_BSLASHAc] = ACTIONS(12485), + [anon_sym_BSLASHacp] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12485), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12485), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12485), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12485), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12485), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12485), + [anon_sym_BSLASHcolor] = ACTIONS(12485), + [anon_sym_BSLASHcolorbox] = ACTIONS(12485), + [anon_sym_BSLASHtextcolor] = ACTIONS(12485), + [anon_sym_BSLASHpagecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12485), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12485), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12485), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12485), + }, + [1891] = { + [sym_generic_command_name] = ACTIONS(12213), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12211), + [anon_sym_RBRACK] = ACTIONS(12211), + [anon_sym_LBRACE] = ACTIONS(12211), + [anon_sym_RBRACE] = ACTIONS(12211), + [anon_sym_LPAREN] = ACTIONS(12211), + [anon_sym_COMMA] = ACTIONS(12211), + [anon_sym_EQ] = ACTIONS(12211), + [sym_word] = ACTIONS(12211), + [sym_param] = ACTIONS(12211), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12211), + [anon_sym_DOLLAR] = ACTIONS(12213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12211), + [anon_sym_BSLASHbegin] = ACTIONS(12213), + [anon_sym_BSLASHcaption] = ACTIONS(12213), + [anon_sym_BSLASHcite] = ACTIONS(12213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCite] = ACTIONS(12213), + [anon_sym_BSLASHnocite] = ACTIONS(12213), + [anon_sym_BSLASHcitet] = ACTIONS(12213), + [anon_sym_BSLASHcitep] = ACTIONS(12213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteauthor] = ACTIONS(12213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitetitle] = ACTIONS(12213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteyear] = ACTIONS(12213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12211), + [anon_sym_BSLASHcitedate] = ACTIONS(12213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12211), + [anon_sym_BSLASHciteurl] = ACTIONS(12213), + [anon_sym_BSLASHfullcite] = ACTIONS(12213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12213), + [anon_sym_BSLASHcitealt] = ACTIONS(12213), + [anon_sym_BSLASHcitealp] = ACTIONS(12213), + [anon_sym_BSLASHcitetext] = ACTIONS(12213), + [anon_sym_BSLASHparencite] = ACTIONS(12213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHParencite] = ACTIONS(12213), + [anon_sym_BSLASHfootcite] = ACTIONS(12213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12213), + [anon_sym_BSLASHtextcite] = ACTIONS(12213), + [anon_sym_BSLASHTextcite] = ACTIONS(12213), + [anon_sym_BSLASHsmartcite] = ACTIONS(12213), + [anon_sym_BSLASHSmartcite] = ACTIONS(12213), + [anon_sym_BSLASHsupercite] = ACTIONS(12213), + [anon_sym_BSLASHautocite] = ACTIONS(12213), + [anon_sym_BSLASHAutocite] = ACTIONS(12213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12211), + [anon_sym_BSLASHvolcite] = ACTIONS(12213), + [anon_sym_BSLASHVolcite] = ACTIONS(12213), + [anon_sym_BSLASHpvolcite] = ACTIONS(12213), + [anon_sym_BSLASHPvolcite] = ACTIONS(12213), + [anon_sym_BSLASHfvolcite] = ACTIONS(12213), + [anon_sym_BSLASHftvolcite] = ACTIONS(12213), + [anon_sym_BSLASHsvolcite] = ACTIONS(12213), + [anon_sym_BSLASHSvolcite] = ACTIONS(12213), + [anon_sym_BSLASHtvolcite] = ACTIONS(12213), + [anon_sym_BSLASHTvolcite] = ACTIONS(12213), + [anon_sym_BSLASHavolcite] = ACTIONS(12213), + [anon_sym_BSLASHAvolcite] = ACTIONS(12213), + [anon_sym_BSLASHnotecite] = ACTIONS(12213), + [anon_sym_BSLASHpnotecite] = ACTIONS(12213), + [anon_sym_BSLASHPnotecite] = ACTIONS(12213), + [anon_sym_BSLASHfnotecite] = ACTIONS(12213), + [anon_sym_BSLASHusepackage] = ACTIONS(12213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12213), + [anon_sym_BSLASHinclude] = ACTIONS(12213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12213), + [anon_sym_BSLASHinput] = ACTIONS(12213), + [anon_sym_BSLASHsubfile] = ACTIONS(12213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12213), + [anon_sym_BSLASHbibliography] = ACTIONS(12213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12213), + [anon_sym_BSLASHincludesvg] = ACTIONS(12213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12213), + [anon_sym_BSLASHimport] = ACTIONS(12213), + [anon_sym_BSLASHsubimport] = ACTIONS(12213), + [anon_sym_BSLASHinputfrom] = ACTIONS(12213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12213), + [anon_sym_BSLASHincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12213), + [anon_sym_BSLASHlabel] = ACTIONS(12213), + [anon_sym_BSLASHref] = ACTIONS(12213), + [anon_sym_BSLASHvref] = ACTIONS(12213), + [anon_sym_BSLASHVref] = ACTIONS(12213), + [anon_sym_BSLASHautoref] = ACTIONS(12213), + [anon_sym_BSLASHpageref] = ACTIONS(12213), + [anon_sym_BSLASHcref] = ACTIONS(12213), + [anon_sym_BSLASHCref] = ACTIONS(12213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnameCref] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12213), + [anon_sym_BSLASHlabelcref] = ACTIONS(12213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12213), + [anon_sym_BSLASHeqref] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange] = ACTIONS(12213), + [anon_sym_BSLASHCrefrange] = ACTIONS(12213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewlabel] = ACTIONS(12213), + [anon_sym_BSLASHnewcommand] = ACTIONS(12213), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12211), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12213), + [anon_sym_BSLASHgls] = ACTIONS(12213), + [anon_sym_BSLASHGls] = ACTIONS(12213), + [anon_sym_BSLASHGLS] = ACTIONS(12213), + [anon_sym_BSLASHglspl] = ACTIONS(12213), + [anon_sym_BSLASHGlspl] = ACTIONS(12213), + [anon_sym_BSLASHGLSpl] = ACTIONS(12213), + [anon_sym_BSLASHglsdisp] = ACTIONS(12213), + [anon_sym_BSLASHglslink] = ACTIONS(12213), + [anon_sym_BSLASHglstext] = ACTIONS(12213), + [anon_sym_BSLASHGlstext] = ACTIONS(12213), + [anon_sym_BSLASHGLStext] = ACTIONS(12213), + [anon_sym_BSLASHglsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12213), + [anon_sym_BSLASHglsplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSplural] = ACTIONS(12213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12213), + [anon_sym_BSLASHglsname] = ACTIONS(12213), + [anon_sym_BSLASHGlsname] = ACTIONS(12213), + [anon_sym_BSLASHGLSname] = ACTIONS(12213), + [anon_sym_BSLASHglssymbol] = ACTIONS(12213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12213), + [anon_sym_BSLASHglsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12213), + [anon_sym_BSLASHglsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12213), + [anon_sym_BSLASHglsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12213), + [anon_sym_BSLASHglsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12213), + [anon_sym_BSLASHglsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12213), + [anon_sym_BSLASHnewacronym] = ACTIONS(12213), + [anon_sym_BSLASHacrshort] = ACTIONS(12213), + [anon_sym_BSLASHAcrshort] = ACTIONS(12213), + [anon_sym_BSLASHACRshort] = ACTIONS(12213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12213), + [anon_sym_BSLASHacrlong] = ACTIONS(12213), + [anon_sym_BSLASHAcrlong] = ACTIONS(12213), + [anon_sym_BSLASHACRlong] = ACTIONS(12213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12213), + [anon_sym_BSLASHacrfull] = ACTIONS(12213), + [anon_sym_BSLASHAcrfull] = ACTIONS(12213), + [anon_sym_BSLASHACRfull] = ACTIONS(12213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12213), + [anon_sym_BSLASHacs] = ACTIONS(12213), + [anon_sym_BSLASHAcs] = ACTIONS(12213), + [anon_sym_BSLASHacsp] = ACTIONS(12213), + [anon_sym_BSLASHAcsp] = ACTIONS(12213), + [anon_sym_BSLASHacl] = ACTIONS(12213), + [anon_sym_BSLASHAcl] = ACTIONS(12213), + [anon_sym_BSLASHaclp] = ACTIONS(12213), + [anon_sym_BSLASHAclp] = ACTIONS(12213), + [anon_sym_BSLASHacf] = ACTIONS(12213), + [anon_sym_BSLASHAcf] = ACTIONS(12213), + [anon_sym_BSLASHacfp] = ACTIONS(12213), + [anon_sym_BSLASHAcfp] = ACTIONS(12213), + [anon_sym_BSLASHac] = ACTIONS(12213), + [anon_sym_BSLASHAc] = ACTIONS(12213), + [anon_sym_BSLASHacp] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12213), + [anon_sym_BSLASHcolor] = ACTIONS(12213), + [anon_sym_BSLASHcolorbox] = ACTIONS(12213), + [anon_sym_BSLASHtextcolor] = ACTIONS(12213), + [anon_sym_BSLASHpagecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12213), + }, + [1892] = { + [sym_generic_command_name] = ACTIONS(12283), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12281), + [anon_sym_RBRACK] = ACTIONS(12281), + [anon_sym_LBRACE] = ACTIONS(12281), + [anon_sym_RBRACE] = ACTIONS(12281), + [anon_sym_LPAREN] = ACTIONS(12281), + [anon_sym_COMMA] = ACTIONS(12281), + [anon_sym_EQ] = ACTIONS(12281), + [sym_word] = ACTIONS(12281), + [sym_param] = ACTIONS(12281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12281), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12281), + [anon_sym_DOLLAR] = ACTIONS(12283), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12281), + [anon_sym_BSLASHbegin] = ACTIONS(12283), + [anon_sym_BSLASHcaption] = ACTIONS(12283), + [anon_sym_BSLASHcite] = ACTIONS(12283), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCite] = ACTIONS(12283), + [anon_sym_BSLASHnocite] = ACTIONS(12283), + [anon_sym_BSLASHcitet] = ACTIONS(12283), + [anon_sym_BSLASHcitep] = ACTIONS(12283), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteauthor] = ACTIONS(12283), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12283), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitetitle] = ACTIONS(12283), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteyear] = ACTIONS(12283), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12281), + [anon_sym_BSLASHcitedate] = ACTIONS(12283), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12281), + [anon_sym_BSLASHciteurl] = ACTIONS(12283), + [anon_sym_BSLASHfullcite] = ACTIONS(12283), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12283), + [anon_sym_BSLASHcitealt] = ACTIONS(12283), + [anon_sym_BSLASHcitealp] = ACTIONS(12283), + [anon_sym_BSLASHcitetext] = ACTIONS(12283), + [anon_sym_BSLASHparencite] = ACTIONS(12283), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHParencite] = ACTIONS(12283), + [anon_sym_BSLASHfootcite] = ACTIONS(12283), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12283), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12283), + [anon_sym_BSLASHtextcite] = ACTIONS(12283), + [anon_sym_BSLASHTextcite] = ACTIONS(12283), + [anon_sym_BSLASHsmartcite] = ACTIONS(12283), + [anon_sym_BSLASHSmartcite] = ACTIONS(12283), + [anon_sym_BSLASHsupercite] = ACTIONS(12283), + [anon_sym_BSLASHautocite] = ACTIONS(12283), + [anon_sym_BSLASHAutocite] = ACTIONS(12283), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12281), + [anon_sym_BSLASHvolcite] = ACTIONS(12283), + [anon_sym_BSLASHVolcite] = ACTIONS(12283), + [anon_sym_BSLASHpvolcite] = ACTIONS(12283), + [anon_sym_BSLASHPvolcite] = ACTIONS(12283), + [anon_sym_BSLASHfvolcite] = ACTIONS(12283), + [anon_sym_BSLASHftvolcite] = ACTIONS(12283), + [anon_sym_BSLASHsvolcite] = ACTIONS(12283), + [anon_sym_BSLASHSvolcite] = ACTIONS(12283), + [anon_sym_BSLASHtvolcite] = ACTIONS(12283), + [anon_sym_BSLASHTvolcite] = ACTIONS(12283), + [anon_sym_BSLASHavolcite] = ACTIONS(12283), + [anon_sym_BSLASHAvolcite] = ACTIONS(12283), + [anon_sym_BSLASHnotecite] = ACTIONS(12283), + [anon_sym_BSLASHpnotecite] = ACTIONS(12283), + [anon_sym_BSLASHPnotecite] = ACTIONS(12283), + [anon_sym_BSLASHfnotecite] = ACTIONS(12283), + [anon_sym_BSLASHusepackage] = ACTIONS(12283), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12283), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12283), + [anon_sym_BSLASHinclude] = ACTIONS(12283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12283), + [anon_sym_BSLASHinput] = ACTIONS(12283), + [anon_sym_BSLASHsubfile] = ACTIONS(12283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12283), + [anon_sym_BSLASHbibliography] = ACTIONS(12283), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12283), + [anon_sym_BSLASHincludesvg] = ACTIONS(12283), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12283), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12283), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12283), + [anon_sym_BSLASHimport] = ACTIONS(12283), + [anon_sym_BSLASHsubimport] = ACTIONS(12283), + [anon_sym_BSLASHinputfrom] = ACTIONS(12283), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12283), + [anon_sym_BSLASHincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12283), + [anon_sym_BSLASHlabel] = ACTIONS(12283), + [anon_sym_BSLASHref] = ACTIONS(12283), + [anon_sym_BSLASHvref] = ACTIONS(12283), + [anon_sym_BSLASHVref] = ACTIONS(12283), + [anon_sym_BSLASHautoref] = ACTIONS(12283), + [anon_sym_BSLASHpageref] = ACTIONS(12283), + [anon_sym_BSLASHcref] = ACTIONS(12283), + [anon_sym_BSLASHCref] = ACTIONS(12283), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnameCref] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12283), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12283), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12283), + [anon_sym_BSLASHlabelcref] = ACTIONS(12283), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12283), + [anon_sym_BSLASHeqref] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange] = ACTIONS(12283), + [anon_sym_BSLASHCrefrange] = ACTIONS(12283), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewlabel] = ACTIONS(12283), + [anon_sym_BSLASHnewcommand] = ACTIONS(12283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12283), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12283), + [anon_sym_BSLASHgls] = ACTIONS(12283), + [anon_sym_BSLASHGls] = ACTIONS(12283), + [anon_sym_BSLASHGLS] = ACTIONS(12283), + [anon_sym_BSLASHglspl] = ACTIONS(12283), + [anon_sym_BSLASHGlspl] = ACTIONS(12283), + [anon_sym_BSLASHGLSpl] = ACTIONS(12283), + [anon_sym_BSLASHglsdisp] = ACTIONS(12283), + [anon_sym_BSLASHglslink] = ACTIONS(12283), + [anon_sym_BSLASHglstext] = ACTIONS(12283), + [anon_sym_BSLASHGlstext] = ACTIONS(12283), + [anon_sym_BSLASHGLStext] = ACTIONS(12283), + [anon_sym_BSLASHglsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12283), + [anon_sym_BSLASHglsplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSplural] = ACTIONS(12283), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12283), + [anon_sym_BSLASHglsname] = ACTIONS(12283), + [anon_sym_BSLASHGlsname] = ACTIONS(12283), + [anon_sym_BSLASHGLSname] = ACTIONS(12283), + [anon_sym_BSLASHglssymbol] = ACTIONS(12283), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12283), + [anon_sym_BSLASHglsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12283), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12283), + [anon_sym_BSLASHglsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12283), + [anon_sym_BSLASHglsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12283), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12283), + [anon_sym_BSLASHglsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12283), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12283), + [anon_sym_BSLASHglsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12283), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12283), + [anon_sym_BSLASHnewacronym] = ACTIONS(12283), + [anon_sym_BSLASHacrshort] = ACTIONS(12283), + [anon_sym_BSLASHAcrshort] = ACTIONS(12283), + [anon_sym_BSLASHACRshort] = ACTIONS(12283), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12283), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12283), + [anon_sym_BSLASHacrlong] = ACTIONS(12283), + [anon_sym_BSLASHAcrlong] = ACTIONS(12283), + [anon_sym_BSLASHACRlong] = ACTIONS(12283), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12283), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12283), + [anon_sym_BSLASHacrfull] = ACTIONS(12283), + [anon_sym_BSLASHAcrfull] = ACTIONS(12283), + [anon_sym_BSLASHACRfull] = ACTIONS(12283), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12283), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12283), + [anon_sym_BSLASHacs] = ACTIONS(12283), + [anon_sym_BSLASHAcs] = ACTIONS(12283), + [anon_sym_BSLASHacsp] = ACTIONS(12283), + [anon_sym_BSLASHAcsp] = ACTIONS(12283), + [anon_sym_BSLASHacl] = ACTIONS(12283), + [anon_sym_BSLASHAcl] = ACTIONS(12283), + [anon_sym_BSLASHaclp] = ACTIONS(12283), + [anon_sym_BSLASHAclp] = ACTIONS(12283), + [anon_sym_BSLASHacf] = ACTIONS(12283), + [anon_sym_BSLASHAcf] = ACTIONS(12283), + [anon_sym_BSLASHacfp] = ACTIONS(12283), + [anon_sym_BSLASHAcfp] = ACTIONS(12283), + [anon_sym_BSLASHac] = ACTIONS(12283), + [anon_sym_BSLASHAc] = ACTIONS(12283), + [anon_sym_BSLASHacp] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12283), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12283), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12283), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12283), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12283), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12283), + [anon_sym_BSLASHcolor] = ACTIONS(12283), + [anon_sym_BSLASHcolorbox] = ACTIONS(12283), + [anon_sym_BSLASHtextcolor] = ACTIONS(12283), + [anon_sym_BSLASHpagecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12283), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12283), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12283), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12283), + }, + [1893] = { + [sym_generic_command_name] = ACTIONS(12205), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12203), + [anon_sym_RBRACK] = ACTIONS(12203), + [anon_sym_LBRACE] = ACTIONS(12203), + [anon_sym_RBRACE] = ACTIONS(12203), + [anon_sym_LPAREN] = ACTIONS(12203), + [anon_sym_COMMA] = ACTIONS(12203), + [anon_sym_EQ] = ACTIONS(12203), + [sym_word] = ACTIONS(12203), + [sym_param] = ACTIONS(12203), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12203), + [anon_sym_DOLLAR] = ACTIONS(12205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12203), + [anon_sym_BSLASHbegin] = ACTIONS(12205), + [anon_sym_BSLASHcaption] = ACTIONS(12205), + [anon_sym_BSLASHcite] = ACTIONS(12205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCite] = ACTIONS(12205), + [anon_sym_BSLASHnocite] = ACTIONS(12205), + [anon_sym_BSLASHcitet] = ACTIONS(12205), + [anon_sym_BSLASHcitep] = ACTIONS(12205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteauthor] = ACTIONS(12205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitetitle] = ACTIONS(12205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteyear] = ACTIONS(12205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12203), + [anon_sym_BSLASHcitedate] = ACTIONS(12205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12203), + [anon_sym_BSLASHciteurl] = ACTIONS(12205), + [anon_sym_BSLASHfullcite] = ACTIONS(12205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12205), + [anon_sym_BSLASHcitealt] = ACTIONS(12205), + [anon_sym_BSLASHcitealp] = ACTIONS(12205), + [anon_sym_BSLASHcitetext] = ACTIONS(12205), + [anon_sym_BSLASHparencite] = ACTIONS(12205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHParencite] = ACTIONS(12205), + [anon_sym_BSLASHfootcite] = ACTIONS(12205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12205), + [anon_sym_BSLASHtextcite] = ACTIONS(12205), + [anon_sym_BSLASHTextcite] = ACTIONS(12205), + [anon_sym_BSLASHsmartcite] = ACTIONS(12205), + [anon_sym_BSLASHSmartcite] = ACTIONS(12205), + [anon_sym_BSLASHsupercite] = ACTIONS(12205), + [anon_sym_BSLASHautocite] = ACTIONS(12205), + [anon_sym_BSLASHAutocite] = ACTIONS(12205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12203), + [anon_sym_BSLASHvolcite] = ACTIONS(12205), + [anon_sym_BSLASHVolcite] = ACTIONS(12205), + [anon_sym_BSLASHpvolcite] = ACTIONS(12205), + [anon_sym_BSLASHPvolcite] = ACTIONS(12205), + [anon_sym_BSLASHfvolcite] = ACTIONS(12205), + [anon_sym_BSLASHftvolcite] = ACTIONS(12205), + [anon_sym_BSLASHsvolcite] = ACTIONS(12205), + [anon_sym_BSLASHSvolcite] = ACTIONS(12205), + [anon_sym_BSLASHtvolcite] = ACTIONS(12205), + [anon_sym_BSLASHTvolcite] = ACTIONS(12205), + [anon_sym_BSLASHavolcite] = ACTIONS(12205), + [anon_sym_BSLASHAvolcite] = ACTIONS(12205), + [anon_sym_BSLASHnotecite] = ACTIONS(12205), + [anon_sym_BSLASHpnotecite] = ACTIONS(12205), + [anon_sym_BSLASHPnotecite] = ACTIONS(12205), + [anon_sym_BSLASHfnotecite] = ACTIONS(12205), + [anon_sym_BSLASHusepackage] = ACTIONS(12205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12205), + [anon_sym_BSLASHinclude] = ACTIONS(12205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12205), + [anon_sym_BSLASHinput] = ACTIONS(12205), + [anon_sym_BSLASHsubfile] = ACTIONS(12205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12205), + [anon_sym_BSLASHbibliography] = ACTIONS(12205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12205), + [anon_sym_BSLASHincludesvg] = ACTIONS(12205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12205), + [anon_sym_BSLASHimport] = ACTIONS(12205), + [anon_sym_BSLASHsubimport] = ACTIONS(12205), + [anon_sym_BSLASHinputfrom] = ACTIONS(12205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12205), + [anon_sym_BSLASHincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12205), + [anon_sym_BSLASHlabel] = ACTIONS(12205), + [anon_sym_BSLASHref] = ACTIONS(12205), + [anon_sym_BSLASHvref] = ACTIONS(12205), + [anon_sym_BSLASHVref] = ACTIONS(12205), + [anon_sym_BSLASHautoref] = ACTIONS(12205), + [anon_sym_BSLASHpageref] = ACTIONS(12205), + [anon_sym_BSLASHcref] = ACTIONS(12205), + [anon_sym_BSLASHCref] = ACTIONS(12205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnameCref] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12205), + [anon_sym_BSLASHlabelcref] = ACTIONS(12205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12205), + [anon_sym_BSLASHeqref] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange] = ACTIONS(12205), + [anon_sym_BSLASHCrefrange] = ACTIONS(12205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewlabel] = ACTIONS(12205), + [anon_sym_BSLASHnewcommand] = ACTIONS(12205), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12203), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12205), + [anon_sym_BSLASHgls] = ACTIONS(12205), + [anon_sym_BSLASHGls] = ACTIONS(12205), + [anon_sym_BSLASHGLS] = ACTIONS(12205), + [anon_sym_BSLASHglspl] = ACTIONS(12205), + [anon_sym_BSLASHGlspl] = ACTIONS(12205), + [anon_sym_BSLASHGLSpl] = ACTIONS(12205), + [anon_sym_BSLASHglsdisp] = ACTIONS(12205), + [anon_sym_BSLASHglslink] = ACTIONS(12205), + [anon_sym_BSLASHglstext] = ACTIONS(12205), + [anon_sym_BSLASHGlstext] = ACTIONS(12205), + [anon_sym_BSLASHGLStext] = ACTIONS(12205), + [anon_sym_BSLASHglsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12205), + [anon_sym_BSLASHglsplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSplural] = ACTIONS(12205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12205), + [anon_sym_BSLASHglsname] = ACTIONS(12205), + [anon_sym_BSLASHGlsname] = ACTIONS(12205), + [anon_sym_BSLASHGLSname] = ACTIONS(12205), + [anon_sym_BSLASHglssymbol] = ACTIONS(12205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12205), + [anon_sym_BSLASHglsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12205), + [anon_sym_BSLASHglsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12205), + [anon_sym_BSLASHglsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12205), + [anon_sym_BSLASHglsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12205), + [anon_sym_BSLASHglsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12205), + [anon_sym_BSLASHnewacronym] = ACTIONS(12205), + [anon_sym_BSLASHacrshort] = ACTIONS(12205), + [anon_sym_BSLASHAcrshort] = ACTIONS(12205), + [anon_sym_BSLASHACRshort] = ACTIONS(12205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12205), + [anon_sym_BSLASHacrlong] = ACTIONS(12205), + [anon_sym_BSLASHAcrlong] = ACTIONS(12205), + [anon_sym_BSLASHACRlong] = ACTIONS(12205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12205), + [anon_sym_BSLASHacrfull] = ACTIONS(12205), + [anon_sym_BSLASHAcrfull] = ACTIONS(12205), + [anon_sym_BSLASHACRfull] = ACTIONS(12205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12205), + [anon_sym_BSLASHacs] = ACTIONS(12205), + [anon_sym_BSLASHAcs] = ACTIONS(12205), + [anon_sym_BSLASHacsp] = ACTIONS(12205), + [anon_sym_BSLASHAcsp] = ACTIONS(12205), + [anon_sym_BSLASHacl] = ACTIONS(12205), + [anon_sym_BSLASHAcl] = ACTIONS(12205), + [anon_sym_BSLASHaclp] = ACTIONS(12205), + [anon_sym_BSLASHAclp] = ACTIONS(12205), + [anon_sym_BSLASHacf] = ACTIONS(12205), + [anon_sym_BSLASHAcf] = ACTIONS(12205), + [anon_sym_BSLASHacfp] = ACTIONS(12205), + [anon_sym_BSLASHAcfp] = ACTIONS(12205), + [anon_sym_BSLASHac] = ACTIONS(12205), + [anon_sym_BSLASHAc] = ACTIONS(12205), + [anon_sym_BSLASHacp] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12205), + [anon_sym_BSLASHcolor] = ACTIONS(12205), + [anon_sym_BSLASHcolorbox] = ACTIONS(12205), + [anon_sym_BSLASHtextcolor] = ACTIONS(12205), + [anon_sym_BSLASHpagecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12205), + }, + [1894] = { + [sym_generic_command_name] = ACTIONS(12279), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12277), + [anon_sym_RBRACK] = ACTIONS(12277), + [anon_sym_LBRACE] = ACTIONS(12277), + [anon_sym_RBRACE] = ACTIONS(12277), + [anon_sym_LPAREN] = ACTIONS(12277), + [anon_sym_COMMA] = ACTIONS(12277), + [anon_sym_EQ] = ACTIONS(12277), + [sym_word] = ACTIONS(12277), + [sym_param] = ACTIONS(12277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12277), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12277), + [anon_sym_DOLLAR] = ACTIONS(12279), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12277), + [anon_sym_BSLASHbegin] = ACTIONS(12279), + [anon_sym_BSLASHcaption] = ACTIONS(12279), + [anon_sym_BSLASHcite] = ACTIONS(12279), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCite] = ACTIONS(12279), + [anon_sym_BSLASHnocite] = ACTIONS(12279), + [anon_sym_BSLASHcitet] = ACTIONS(12279), + [anon_sym_BSLASHcitep] = ACTIONS(12279), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteauthor] = ACTIONS(12279), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12279), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitetitle] = ACTIONS(12279), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteyear] = ACTIONS(12279), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12277), + [anon_sym_BSLASHcitedate] = ACTIONS(12279), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12277), + [anon_sym_BSLASHciteurl] = ACTIONS(12279), + [anon_sym_BSLASHfullcite] = ACTIONS(12279), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12279), + [anon_sym_BSLASHcitealt] = ACTIONS(12279), + [anon_sym_BSLASHcitealp] = ACTIONS(12279), + [anon_sym_BSLASHcitetext] = ACTIONS(12279), + [anon_sym_BSLASHparencite] = ACTIONS(12279), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHParencite] = ACTIONS(12279), + [anon_sym_BSLASHfootcite] = ACTIONS(12279), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12279), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12279), + [anon_sym_BSLASHtextcite] = ACTIONS(12279), + [anon_sym_BSLASHTextcite] = ACTIONS(12279), + [anon_sym_BSLASHsmartcite] = ACTIONS(12279), + [anon_sym_BSLASHSmartcite] = ACTIONS(12279), + [anon_sym_BSLASHsupercite] = ACTIONS(12279), + [anon_sym_BSLASHautocite] = ACTIONS(12279), + [anon_sym_BSLASHAutocite] = ACTIONS(12279), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12277), + [anon_sym_BSLASHvolcite] = ACTIONS(12279), + [anon_sym_BSLASHVolcite] = ACTIONS(12279), + [anon_sym_BSLASHpvolcite] = ACTIONS(12279), + [anon_sym_BSLASHPvolcite] = ACTIONS(12279), + [anon_sym_BSLASHfvolcite] = ACTIONS(12279), + [anon_sym_BSLASHftvolcite] = ACTIONS(12279), + [anon_sym_BSLASHsvolcite] = ACTIONS(12279), + [anon_sym_BSLASHSvolcite] = ACTIONS(12279), + [anon_sym_BSLASHtvolcite] = ACTIONS(12279), + [anon_sym_BSLASHTvolcite] = ACTIONS(12279), + [anon_sym_BSLASHavolcite] = ACTIONS(12279), + [anon_sym_BSLASHAvolcite] = ACTIONS(12279), + [anon_sym_BSLASHnotecite] = ACTIONS(12279), + [anon_sym_BSLASHpnotecite] = ACTIONS(12279), + [anon_sym_BSLASHPnotecite] = ACTIONS(12279), + [anon_sym_BSLASHfnotecite] = ACTIONS(12279), + [anon_sym_BSLASHusepackage] = ACTIONS(12279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12279), + [anon_sym_BSLASHinclude] = ACTIONS(12279), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12279), + [anon_sym_BSLASHinput] = ACTIONS(12279), + [anon_sym_BSLASHsubfile] = ACTIONS(12279), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12279), + [anon_sym_BSLASHbibliography] = ACTIONS(12279), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12279), + [anon_sym_BSLASHincludesvg] = ACTIONS(12279), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12279), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12279), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12279), + [anon_sym_BSLASHimport] = ACTIONS(12279), + [anon_sym_BSLASHsubimport] = ACTIONS(12279), + [anon_sym_BSLASHinputfrom] = ACTIONS(12279), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12279), + [anon_sym_BSLASHincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12279), + [anon_sym_BSLASHlabel] = ACTIONS(12279), + [anon_sym_BSLASHref] = ACTIONS(12279), + [anon_sym_BSLASHvref] = ACTIONS(12279), + [anon_sym_BSLASHVref] = ACTIONS(12279), + [anon_sym_BSLASHautoref] = ACTIONS(12279), + [anon_sym_BSLASHpageref] = ACTIONS(12279), + [anon_sym_BSLASHcref] = ACTIONS(12279), + [anon_sym_BSLASHCref] = ACTIONS(12279), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnameCref] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12279), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12279), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12279), + [anon_sym_BSLASHlabelcref] = ACTIONS(12279), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12279), + [anon_sym_BSLASHeqref] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange] = ACTIONS(12279), + [anon_sym_BSLASHCrefrange] = ACTIONS(12279), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewlabel] = ACTIONS(12279), + [anon_sym_BSLASHnewcommand] = ACTIONS(12279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12279), + [anon_sym_BSLASHgls] = ACTIONS(12279), + [anon_sym_BSLASHGls] = ACTIONS(12279), + [anon_sym_BSLASHGLS] = ACTIONS(12279), + [anon_sym_BSLASHglspl] = ACTIONS(12279), + [anon_sym_BSLASHGlspl] = ACTIONS(12279), + [anon_sym_BSLASHGLSpl] = ACTIONS(12279), + [anon_sym_BSLASHglsdisp] = ACTIONS(12279), + [anon_sym_BSLASHglslink] = ACTIONS(12279), + [anon_sym_BSLASHglstext] = ACTIONS(12279), + [anon_sym_BSLASHGlstext] = ACTIONS(12279), + [anon_sym_BSLASHGLStext] = ACTIONS(12279), + [anon_sym_BSLASHglsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12279), + [anon_sym_BSLASHglsplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSplural] = ACTIONS(12279), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12279), + [anon_sym_BSLASHglsname] = ACTIONS(12279), + [anon_sym_BSLASHGlsname] = ACTIONS(12279), + [anon_sym_BSLASHGLSname] = ACTIONS(12279), + [anon_sym_BSLASHglssymbol] = ACTIONS(12279), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12279), + [anon_sym_BSLASHglsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12279), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12279), + [anon_sym_BSLASHglsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12279), + [anon_sym_BSLASHglsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12279), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12279), + [anon_sym_BSLASHglsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12279), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12279), + [anon_sym_BSLASHglsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12279), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12279), + [anon_sym_BSLASHnewacronym] = ACTIONS(12279), + [anon_sym_BSLASHacrshort] = ACTIONS(12279), + [anon_sym_BSLASHAcrshort] = ACTIONS(12279), + [anon_sym_BSLASHACRshort] = ACTIONS(12279), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12279), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12279), + [anon_sym_BSLASHacrlong] = ACTIONS(12279), + [anon_sym_BSLASHAcrlong] = ACTIONS(12279), + [anon_sym_BSLASHACRlong] = ACTIONS(12279), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12279), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12279), + [anon_sym_BSLASHacrfull] = ACTIONS(12279), + [anon_sym_BSLASHAcrfull] = ACTIONS(12279), + [anon_sym_BSLASHACRfull] = ACTIONS(12279), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12279), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12279), + [anon_sym_BSLASHacs] = ACTIONS(12279), + [anon_sym_BSLASHAcs] = ACTIONS(12279), + [anon_sym_BSLASHacsp] = ACTIONS(12279), + [anon_sym_BSLASHAcsp] = ACTIONS(12279), + [anon_sym_BSLASHacl] = ACTIONS(12279), + [anon_sym_BSLASHAcl] = ACTIONS(12279), + [anon_sym_BSLASHaclp] = ACTIONS(12279), + [anon_sym_BSLASHAclp] = ACTIONS(12279), + [anon_sym_BSLASHacf] = ACTIONS(12279), + [anon_sym_BSLASHAcf] = ACTIONS(12279), + [anon_sym_BSLASHacfp] = ACTIONS(12279), + [anon_sym_BSLASHAcfp] = ACTIONS(12279), + [anon_sym_BSLASHac] = ACTIONS(12279), + [anon_sym_BSLASHAc] = ACTIONS(12279), + [anon_sym_BSLASHacp] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12279), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12279), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12279), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12279), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12279), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12279), + [anon_sym_BSLASHcolor] = ACTIONS(12279), + [anon_sym_BSLASHcolorbox] = ACTIONS(12279), + [anon_sym_BSLASHtextcolor] = ACTIONS(12279), + [anon_sym_BSLASHpagecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12279), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12279), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12279), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12279), + }, + [1895] = { + [sym_generic_command_name] = ACTIONS(127), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(125), + [anon_sym_RBRACK] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(125), + [anon_sym_RBRACE] = ACTIONS(125), + [anon_sym_LPAREN] = ACTIONS(125), + [anon_sym_COMMA] = ACTIONS(125), + [anon_sym_EQ] = ACTIONS(125), + [sym_word] = ACTIONS(125), + [sym_param] = ACTIONS(125), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(125), + [anon_sym_DOLLAR] = ACTIONS(127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(125), + [anon_sym_BSLASHbegin] = ACTIONS(127), + [anon_sym_BSLASHcaption] = ACTIONS(127), + [anon_sym_BSLASHcite] = ACTIONS(127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(125), + [anon_sym_BSLASHCite] = ACTIONS(127), + [anon_sym_BSLASHnocite] = ACTIONS(127), + [anon_sym_BSLASHcitet] = ACTIONS(127), + [anon_sym_BSLASHcitep] = ACTIONS(127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteauthor] = ACTIONS(127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitetitle] = ACTIONS(127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteyear] = ACTIONS(127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(125), + [anon_sym_BSLASHcitedate] = ACTIONS(127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(125), + [anon_sym_BSLASHciteurl] = ACTIONS(127), + [anon_sym_BSLASHfullcite] = ACTIONS(127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(127), + [anon_sym_BSLASHcitealt] = ACTIONS(127), + [anon_sym_BSLASHcitealp] = ACTIONS(127), + [anon_sym_BSLASHcitetext] = ACTIONS(127), + [anon_sym_BSLASHparencite] = ACTIONS(127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(125), + [anon_sym_BSLASHParencite] = ACTIONS(127), + [anon_sym_BSLASHfootcite] = ACTIONS(127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(127), + [anon_sym_BSLASHtextcite] = ACTIONS(127), + [anon_sym_BSLASHTextcite] = ACTIONS(127), + [anon_sym_BSLASHsmartcite] = ACTIONS(127), + [anon_sym_BSLASHSmartcite] = ACTIONS(127), + [anon_sym_BSLASHsupercite] = ACTIONS(127), + [anon_sym_BSLASHautocite] = ACTIONS(127), + [anon_sym_BSLASHAutocite] = ACTIONS(127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(125), + [anon_sym_BSLASHvolcite] = ACTIONS(127), + [anon_sym_BSLASHVolcite] = ACTIONS(127), + [anon_sym_BSLASHpvolcite] = ACTIONS(127), + [anon_sym_BSLASHPvolcite] = ACTIONS(127), + [anon_sym_BSLASHfvolcite] = ACTIONS(127), + [anon_sym_BSLASHftvolcite] = ACTIONS(127), + [anon_sym_BSLASHsvolcite] = ACTIONS(127), + [anon_sym_BSLASHSvolcite] = ACTIONS(127), + [anon_sym_BSLASHtvolcite] = ACTIONS(127), + [anon_sym_BSLASHTvolcite] = ACTIONS(127), + [anon_sym_BSLASHavolcite] = ACTIONS(127), + [anon_sym_BSLASHAvolcite] = ACTIONS(127), + [anon_sym_BSLASHnotecite] = ACTIONS(127), + [anon_sym_BSLASHpnotecite] = ACTIONS(127), + [anon_sym_BSLASHPnotecite] = ACTIONS(127), + [anon_sym_BSLASHfnotecite] = ACTIONS(127), + [anon_sym_BSLASHusepackage] = ACTIONS(127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(127), + [anon_sym_BSLASHinclude] = ACTIONS(127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(127), + [anon_sym_BSLASHinput] = ACTIONS(127), + [anon_sym_BSLASHsubfile] = ACTIONS(127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(127), + [anon_sym_BSLASHbibliography] = ACTIONS(127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(127), + [anon_sym_BSLASHincludesvg] = ACTIONS(127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(127), + [anon_sym_BSLASHimport] = ACTIONS(127), + [anon_sym_BSLASHsubimport] = ACTIONS(127), + [anon_sym_BSLASHinputfrom] = ACTIONS(127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(127), + [anon_sym_BSLASHincludefrom] = ACTIONS(127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(127), + [anon_sym_BSLASHlabel] = ACTIONS(127), + [anon_sym_BSLASHref] = ACTIONS(127), + [anon_sym_BSLASHvref] = ACTIONS(127), + [anon_sym_BSLASHVref] = ACTIONS(127), + [anon_sym_BSLASHautoref] = ACTIONS(127), + [anon_sym_BSLASHpageref] = ACTIONS(127), + [anon_sym_BSLASHcref] = ACTIONS(127), + [anon_sym_BSLASHCref] = ACTIONS(127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(125), + [anon_sym_BSLASHnamecref] = ACTIONS(127), + [anon_sym_BSLASHnameCref] = ACTIONS(127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(127), + [anon_sym_BSLASHlabelcref] = ACTIONS(127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(127), + [anon_sym_BSLASHeqref] = ACTIONS(127), + [anon_sym_BSLASHcrefrange] = ACTIONS(127), + [anon_sym_BSLASHCrefrange] = ACTIONS(127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewlabel] = ACTIONS(127), + [anon_sym_BSLASHnewcommand] = ACTIONS(127), + [anon_sym_BSLASHrenewcommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(125), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(127), + [anon_sym_BSLASHgls] = ACTIONS(127), + [anon_sym_BSLASHGls] = ACTIONS(127), + [anon_sym_BSLASHGLS] = ACTIONS(127), + [anon_sym_BSLASHglspl] = ACTIONS(127), + [anon_sym_BSLASHGlspl] = ACTIONS(127), + [anon_sym_BSLASHGLSpl] = ACTIONS(127), + [anon_sym_BSLASHglsdisp] = ACTIONS(127), + [anon_sym_BSLASHglslink] = ACTIONS(127), + [anon_sym_BSLASHglstext] = ACTIONS(127), + [anon_sym_BSLASHGlstext] = ACTIONS(127), + [anon_sym_BSLASHGLStext] = ACTIONS(127), + [anon_sym_BSLASHglsfirst] = ACTIONS(127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(127), + [anon_sym_BSLASHglsplural] = ACTIONS(127), + [anon_sym_BSLASHGlsplural] = ACTIONS(127), + [anon_sym_BSLASHGLSplural] = ACTIONS(127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(127), + [anon_sym_BSLASHglsname] = ACTIONS(127), + [anon_sym_BSLASHGlsname] = ACTIONS(127), + [anon_sym_BSLASHGLSname] = ACTIONS(127), + [anon_sym_BSLASHglssymbol] = ACTIONS(127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(127), + [anon_sym_BSLASHglsdesc] = ACTIONS(127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(127), + [anon_sym_BSLASHglsuseri] = ACTIONS(127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(127), + [anon_sym_BSLASHglsuserii] = ACTIONS(127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(127), + [anon_sym_BSLASHglsuserv] = ACTIONS(127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(127), + [anon_sym_BSLASHglsuservi] = ACTIONS(127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(127), + [anon_sym_BSLASHnewacronym] = ACTIONS(127), + [anon_sym_BSLASHacrshort] = ACTIONS(127), + [anon_sym_BSLASHAcrshort] = ACTIONS(127), + [anon_sym_BSLASHACRshort] = ACTIONS(127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(127), + [anon_sym_BSLASHacrlong] = ACTIONS(127), + [anon_sym_BSLASHAcrlong] = ACTIONS(127), + [anon_sym_BSLASHACRlong] = ACTIONS(127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(127), + [anon_sym_BSLASHacrfull] = ACTIONS(127), + [anon_sym_BSLASHAcrfull] = ACTIONS(127), + [anon_sym_BSLASHACRfull] = ACTIONS(127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(127), + [anon_sym_BSLASHacs] = ACTIONS(127), + [anon_sym_BSLASHAcs] = ACTIONS(127), + [anon_sym_BSLASHacsp] = ACTIONS(127), + [anon_sym_BSLASHAcsp] = ACTIONS(127), + [anon_sym_BSLASHacl] = ACTIONS(127), + [anon_sym_BSLASHAcl] = ACTIONS(127), + [anon_sym_BSLASHaclp] = ACTIONS(127), + [anon_sym_BSLASHAclp] = ACTIONS(127), + [anon_sym_BSLASHacf] = ACTIONS(127), + [anon_sym_BSLASHAcf] = ACTIONS(127), + [anon_sym_BSLASHacfp] = ACTIONS(127), + [anon_sym_BSLASHAcfp] = ACTIONS(127), + [anon_sym_BSLASHac] = ACTIONS(127), + [anon_sym_BSLASHAc] = ACTIONS(127), + [anon_sym_BSLASHacp] = ACTIONS(127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(127), + [anon_sym_BSLASHcolor] = ACTIONS(127), + [anon_sym_BSLASHcolorbox] = ACTIONS(127), + [anon_sym_BSLASHtextcolor] = ACTIONS(127), + [anon_sym_BSLASHpagecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + }, + [1896] = { + [sym_generic_command_name] = ACTIONS(12201), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12199), + [anon_sym_RBRACK] = ACTIONS(12199), + [anon_sym_LBRACE] = ACTIONS(12199), + [anon_sym_RBRACE] = ACTIONS(12199), + [anon_sym_LPAREN] = ACTIONS(12199), + [anon_sym_COMMA] = ACTIONS(12199), + [anon_sym_EQ] = ACTIONS(12199), + [sym_word] = ACTIONS(12199), + [sym_param] = ACTIONS(12199), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12199), + [anon_sym_DOLLAR] = ACTIONS(12201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12199), + [anon_sym_BSLASHbegin] = ACTIONS(12201), + [anon_sym_BSLASHcaption] = ACTIONS(12201), + [anon_sym_BSLASHcite] = ACTIONS(12201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCite] = ACTIONS(12201), + [anon_sym_BSLASHnocite] = ACTIONS(12201), + [anon_sym_BSLASHcitet] = ACTIONS(12201), + [anon_sym_BSLASHcitep] = ACTIONS(12201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteauthor] = ACTIONS(12201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitetitle] = ACTIONS(12201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteyear] = ACTIONS(12201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12199), + [anon_sym_BSLASHcitedate] = ACTIONS(12201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12199), + [anon_sym_BSLASHciteurl] = ACTIONS(12201), + [anon_sym_BSLASHfullcite] = ACTIONS(12201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12201), + [anon_sym_BSLASHcitealt] = ACTIONS(12201), + [anon_sym_BSLASHcitealp] = ACTIONS(12201), + [anon_sym_BSLASHcitetext] = ACTIONS(12201), + [anon_sym_BSLASHparencite] = ACTIONS(12201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHParencite] = ACTIONS(12201), + [anon_sym_BSLASHfootcite] = ACTIONS(12201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12201), + [anon_sym_BSLASHtextcite] = ACTIONS(12201), + [anon_sym_BSLASHTextcite] = ACTIONS(12201), + [anon_sym_BSLASHsmartcite] = ACTIONS(12201), + [anon_sym_BSLASHSmartcite] = ACTIONS(12201), + [anon_sym_BSLASHsupercite] = ACTIONS(12201), + [anon_sym_BSLASHautocite] = ACTIONS(12201), + [anon_sym_BSLASHAutocite] = ACTIONS(12201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12199), + [anon_sym_BSLASHvolcite] = ACTIONS(12201), + [anon_sym_BSLASHVolcite] = ACTIONS(12201), + [anon_sym_BSLASHpvolcite] = ACTIONS(12201), + [anon_sym_BSLASHPvolcite] = ACTIONS(12201), + [anon_sym_BSLASHfvolcite] = ACTIONS(12201), + [anon_sym_BSLASHftvolcite] = ACTIONS(12201), + [anon_sym_BSLASHsvolcite] = ACTIONS(12201), + [anon_sym_BSLASHSvolcite] = ACTIONS(12201), + [anon_sym_BSLASHtvolcite] = ACTIONS(12201), + [anon_sym_BSLASHTvolcite] = ACTIONS(12201), + [anon_sym_BSLASHavolcite] = ACTIONS(12201), + [anon_sym_BSLASHAvolcite] = ACTIONS(12201), + [anon_sym_BSLASHnotecite] = ACTIONS(12201), + [anon_sym_BSLASHpnotecite] = ACTIONS(12201), + [anon_sym_BSLASHPnotecite] = ACTIONS(12201), + [anon_sym_BSLASHfnotecite] = ACTIONS(12201), + [anon_sym_BSLASHusepackage] = ACTIONS(12201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12201), + [anon_sym_BSLASHinclude] = ACTIONS(12201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12201), + [anon_sym_BSLASHinput] = ACTIONS(12201), + [anon_sym_BSLASHsubfile] = ACTIONS(12201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12201), + [anon_sym_BSLASHbibliography] = ACTIONS(12201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12201), + [anon_sym_BSLASHincludesvg] = ACTIONS(12201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12201), + [anon_sym_BSLASHimport] = ACTIONS(12201), + [anon_sym_BSLASHsubimport] = ACTIONS(12201), + [anon_sym_BSLASHinputfrom] = ACTIONS(12201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12201), + [anon_sym_BSLASHincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12201), + [anon_sym_BSLASHlabel] = ACTIONS(12201), + [anon_sym_BSLASHref] = ACTIONS(12201), + [anon_sym_BSLASHvref] = ACTIONS(12201), + [anon_sym_BSLASHVref] = ACTIONS(12201), + [anon_sym_BSLASHautoref] = ACTIONS(12201), + [anon_sym_BSLASHpageref] = ACTIONS(12201), + [anon_sym_BSLASHcref] = ACTIONS(12201), + [anon_sym_BSLASHCref] = ACTIONS(12201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnameCref] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12201), + [anon_sym_BSLASHlabelcref] = ACTIONS(12201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12201), + [anon_sym_BSLASHeqref] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange] = ACTIONS(12201), + [anon_sym_BSLASHCrefrange] = ACTIONS(12201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewlabel] = ACTIONS(12201), + [anon_sym_BSLASHnewcommand] = ACTIONS(12201), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12199), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12201), + [anon_sym_BSLASHgls] = ACTIONS(12201), + [anon_sym_BSLASHGls] = ACTIONS(12201), + [anon_sym_BSLASHGLS] = ACTIONS(12201), + [anon_sym_BSLASHglspl] = ACTIONS(12201), + [anon_sym_BSLASHGlspl] = ACTIONS(12201), + [anon_sym_BSLASHGLSpl] = ACTIONS(12201), + [anon_sym_BSLASHglsdisp] = ACTIONS(12201), + [anon_sym_BSLASHglslink] = ACTIONS(12201), + [anon_sym_BSLASHglstext] = ACTIONS(12201), + [anon_sym_BSLASHGlstext] = ACTIONS(12201), + [anon_sym_BSLASHGLStext] = ACTIONS(12201), + [anon_sym_BSLASHglsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12201), + [anon_sym_BSLASHglsplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSplural] = ACTIONS(12201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12201), + [anon_sym_BSLASHglsname] = ACTIONS(12201), + [anon_sym_BSLASHGlsname] = ACTIONS(12201), + [anon_sym_BSLASHGLSname] = ACTIONS(12201), + [anon_sym_BSLASHglssymbol] = ACTIONS(12201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12201), + [anon_sym_BSLASHglsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12201), + [anon_sym_BSLASHglsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12201), + [anon_sym_BSLASHglsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12201), + [anon_sym_BSLASHglsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12201), + [anon_sym_BSLASHglsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12201), + [anon_sym_BSLASHnewacronym] = ACTIONS(12201), + [anon_sym_BSLASHacrshort] = ACTIONS(12201), + [anon_sym_BSLASHAcrshort] = ACTIONS(12201), + [anon_sym_BSLASHACRshort] = ACTIONS(12201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12201), + [anon_sym_BSLASHacrlong] = ACTIONS(12201), + [anon_sym_BSLASHAcrlong] = ACTIONS(12201), + [anon_sym_BSLASHACRlong] = ACTIONS(12201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12201), + [anon_sym_BSLASHacrfull] = ACTIONS(12201), + [anon_sym_BSLASHAcrfull] = ACTIONS(12201), + [anon_sym_BSLASHACRfull] = ACTIONS(12201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12201), + [anon_sym_BSLASHacs] = ACTIONS(12201), + [anon_sym_BSLASHAcs] = ACTIONS(12201), + [anon_sym_BSLASHacsp] = ACTIONS(12201), + [anon_sym_BSLASHAcsp] = ACTIONS(12201), + [anon_sym_BSLASHacl] = ACTIONS(12201), + [anon_sym_BSLASHAcl] = ACTIONS(12201), + [anon_sym_BSLASHaclp] = ACTIONS(12201), + [anon_sym_BSLASHAclp] = ACTIONS(12201), + [anon_sym_BSLASHacf] = ACTIONS(12201), + [anon_sym_BSLASHAcf] = ACTIONS(12201), + [anon_sym_BSLASHacfp] = ACTIONS(12201), + [anon_sym_BSLASHAcfp] = ACTIONS(12201), + [anon_sym_BSLASHac] = ACTIONS(12201), + [anon_sym_BSLASHAc] = ACTIONS(12201), + [anon_sym_BSLASHacp] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12201), + [anon_sym_BSLASHcolor] = ACTIONS(12201), + [anon_sym_BSLASHcolorbox] = ACTIONS(12201), + [anon_sym_BSLASHtextcolor] = ACTIONS(12201), + [anon_sym_BSLASHpagecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12201), + }, + [1897] = { + [sym_generic_command_name] = ACTIONS(123), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(121), + [anon_sym_RBRACK] = ACTIONS(121), + [anon_sym_LBRACE] = ACTIONS(121), + [anon_sym_RBRACE] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(121), + [anon_sym_COMMA] = ACTIONS(121), + [anon_sym_EQ] = ACTIONS(121), + [sym_word] = ACTIONS(121), + [sym_param] = ACTIONS(121), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(121), + [anon_sym_DOLLAR] = ACTIONS(123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(121), + [anon_sym_BSLASHbegin] = ACTIONS(123), + [anon_sym_BSLASHcaption] = ACTIONS(123), + [anon_sym_BSLASHcite] = ACTIONS(123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(121), + [anon_sym_BSLASHCite] = ACTIONS(123), + [anon_sym_BSLASHnocite] = ACTIONS(123), + [anon_sym_BSLASHcitet] = ACTIONS(123), + [anon_sym_BSLASHcitep] = ACTIONS(123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteauthor] = ACTIONS(123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitetitle] = ACTIONS(123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteyear] = ACTIONS(123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(121), + [anon_sym_BSLASHcitedate] = ACTIONS(123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(121), + [anon_sym_BSLASHciteurl] = ACTIONS(123), + [anon_sym_BSLASHfullcite] = ACTIONS(123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(123), + [anon_sym_BSLASHcitealt] = ACTIONS(123), + [anon_sym_BSLASHcitealp] = ACTIONS(123), + [anon_sym_BSLASHcitetext] = ACTIONS(123), + [anon_sym_BSLASHparencite] = ACTIONS(123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(121), + [anon_sym_BSLASHParencite] = ACTIONS(123), + [anon_sym_BSLASHfootcite] = ACTIONS(123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(123), + [anon_sym_BSLASHtextcite] = ACTIONS(123), + [anon_sym_BSLASHTextcite] = ACTIONS(123), + [anon_sym_BSLASHsmartcite] = ACTIONS(123), + [anon_sym_BSLASHSmartcite] = ACTIONS(123), + [anon_sym_BSLASHsupercite] = ACTIONS(123), + [anon_sym_BSLASHautocite] = ACTIONS(123), + [anon_sym_BSLASHAutocite] = ACTIONS(123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(121), + [anon_sym_BSLASHvolcite] = ACTIONS(123), + [anon_sym_BSLASHVolcite] = ACTIONS(123), + [anon_sym_BSLASHpvolcite] = ACTIONS(123), + [anon_sym_BSLASHPvolcite] = ACTIONS(123), + [anon_sym_BSLASHfvolcite] = ACTIONS(123), + [anon_sym_BSLASHftvolcite] = ACTIONS(123), + [anon_sym_BSLASHsvolcite] = ACTIONS(123), + [anon_sym_BSLASHSvolcite] = ACTIONS(123), + [anon_sym_BSLASHtvolcite] = ACTIONS(123), + [anon_sym_BSLASHTvolcite] = ACTIONS(123), + [anon_sym_BSLASHavolcite] = ACTIONS(123), + [anon_sym_BSLASHAvolcite] = ACTIONS(123), + [anon_sym_BSLASHnotecite] = ACTIONS(123), + [anon_sym_BSLASHpnotecite] = ACTIONS(123), + [anon_sym_BSLASHPnotecite] = ACTIONS(123), + [anon_sym_BSLASHfnotecite] = ACTIONS(123), + [anon_sym_BSLASHusepackage] = ACTIONS(123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(123), + [anon_sym_BSLASHinclude] = ACTIONS(123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(123), + [anon_sym_BSLASHinput] = ACTIONS(123), + [anon_sym_BSLASHsubfile] = ACTIONS(123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(123), + [anon_sym_BSLASHbibliography] = ACTIONS(123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(123), + [anon_sym_BSLASHincludesvg] = ACTIONS(123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(123), + [anon_sym_BSLASHimport] = ACTIONS(123), + [anon_sym_BSLASHsubimport] = ACTIONS(123), + [anon_sym_BSLASHinputfrom] = ACTIONS(123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(123), + [anon_sym_BSLASHincludefrom] = ACTIONS(123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(123), + [anon_sym_BSLASHlabel] = ACTIONS(123), + [anon_sym_BSLASHref] = ACTIONS(123), + [anon_sym_BSLASHvref] = ACTIONS(123), + [anon_sym_BSLASHVref] = ACTIONS(123), + [anon_sym_BSLASHautoref] = ACTIONS(123), + [anon_sym_BSLASHpageref] = ACTIONS(123), + [anon_sym_BSLASHcref] = ACTIONS(123), + [anon_sym_BSLASHCref] = ACTIONS(123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(121), + [anon_sym_BSLASHnamecref] = ACTIONS(123), + [anon_sym_BSLASHnameCref] = ACTIONS(123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(123), + [anon_sym_BSLASHlabelcref] = ACTIONS(123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(123), + [anon_sym_BSLASHeqref] = ACTIONS(123), + [anon_sym_BSLASHcrefrange] = ACTIONS(123), + [anon_sym_BSLASHCrefrange] = ACTIONS(123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewlabel] = ACTIONS(123), + [anon_sym_BSLASHnewcommand] = ACTIONS(123), + [anon_sym_BSLASHrenewcommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(121), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(123), + [anon_sym_BSLASHgls] = ACTIONS(123), + [anon_sym_BSLASHGls] = ACTIONS(123), + [anon_sym_BSLASHGLS] = ACTIONS(123), + [anon_sym_BSLASHglspl] = ACTIONS(123), + [anon_sym_BSLASHGlspl] = ACTIONS(123), + [anon_sym_BSLASHGLSpl] = ACTIONS(123), + [anon_sym_BSLASHglsdisp] = ACTIONS(123), + [anon_sym_BSLASHglslink] = ACTIONS(123), + [anon_sym_BSLASHglstext] = ACTIONS(123), + [anon_sym_BSLASHGlstext] = ACTIONS(123), + [anon_sym_BSLASHGLStext] = ACTIONS(123), + [anon_sym_BSLASHglsfirst] = ACTIONS(123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(123), + [anon_sym_BSLASHglsplural] = ACTIONS(123), + [anon_sym_BSLASHGlsplural] = ACTIONS(123), + [anon_sym_BSLASHGLSplural] = ACTIONS(123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(123), + [anon_sym_BSLASHglsname] = ACTIONS(123), + [anon_sym_BSLASHGlsname] = ACTIONS(123), + [anon_sym_BSLASHGLSname] = ACTIONS(123), + [anon_sym_BSLASHglssymbol] = ACTIONS(123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(123), + [anon_sym_BSLASHglsdesc] = ACTIONS(123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(123), + [anon_sym_BSLASHglsuseri] = ACTIONS(123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(123), + [anon_sym_BSLASHglsuserii] = ACTIONS(123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(123), + [anon_sym_BSLASHglsuserv] = ACTIONS(123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(123), + [anon_sym_BSLASHglsuservi] = ACTIONS(123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(123), + [anon_sym_BSLASHnewacronym] = ACTIONS(123), + [anon_sym_BSLASHacrshort] = ACTIONS(123), + [anon_sym_BSLASHAcrshort] = ACTIONS(123), + [anon_sym_BSLASHACRshort] = ACTIONS(123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(123), + [anon_sym_BSLASHacrlong] = ACTIONS(123), + [anon_sym_BSLASHAcrlong] = ACTIONS(123), + [anon_sym_BSLASHACRlong] = ACTIONS(123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(123), + [anon_sym_BSLASHacrfull] = ACTIONS(123), + [anon_sym_BSLASHAcrfull] = ACTIONS(123), + [anon_sym_BSLASHACRfull] = ACTIONS(123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(123), + [anon_sym_BSLASHacs] = ACTIONS(123), + [anon_sym_BSLASHAcs] = ACTIONS(123), + [anon_sym_BSLASHacsp] = ACTIONS(123), + [anon_sym_BSLASHAcsp] = ACTIONS(123), + [anon_sym_BSLASHacl] = ACTIONS(123), + [anon_sym_BSLASHAcl] = ACTIONS(123), + [anon_sym_BSLASHaclp] = ACTIONS(123), + [anon_sym_BSLASHAclp] = ACTIONS(123), + [anon_sym_BSLASHacf] = ACTIONS(123), + [anon_sym_BSLASHAcf] = ACTIONS(123), + [anon_sym_BSLASHacfp] = ACTIONS(123), + [anon_sym_BSLASHAcfp] = ACTIONS(123), + [anon_sym_BSLASHac] = ACTIONS(123), + [anon_sym_BSLASHAc] = ACTIONS(123), + [anon_sym_BSLASHacp] = ACTIONS(123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(123), + [anon_sym_BSLASHcolor] = ACTIONS(123), + [anon_sym_BSLASHcolorbox] = ACTIONS(123), + [anon_sym_BSLASHtextcolor] = ACTIONS(123), + [anon_sym_BSLASHpagecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(123), + }, + [1898] = { + [sym_generic_command_name] = ACTIONS(12275), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12273), + [anon_sym_RBRACK] = ACTIONS(12273), + [anon_sym_LBRACE] = ACTIONS(12273), + [anon_sym_RBRACE] = ACTIONS(12273), + [anon_sym_LPAREN] = ACTIONS(12273), + [anon_sym_COMMA] = ACTIONS(12273), + [anon_sym_EQ] = ACTIONS(12273), + [sym_word] = ACTIONS(12273), + [sym_param] = ACTIONS(12273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12273), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12273), + [anon_sym_DOLLAR] = ACTIONS(12275), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12273), + [anon_sym_BSLASHbegin] = ACTIONS(12275), + [anon_sym_BSLASHcaption] = ACTIONS(12275), + [anon_sym_BSLASHcite] = ACTIONS(12275), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCite] = ACTIONS(12275), + [anon_sym_BSLASHnocite] = ACTIONS(12275), + [anon_sym_BSLASHcitet] = ACTIONS(12275), + [anon_sym_BSLASHcitep] = ACTIONS(12275), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteauthor] = ACTIONS(12275), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12275), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitetitle] = ACTIONS(12275), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteyear] = ACTIONS(12275), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12273), + [anon_sym_BSLASHcitedate] = ACTIONS(12275), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12273), + [anon_sym_BSLASHciteurl] = ACTIONS(12275), + [anon_sym_BSLASHfullcite] = ACTIONS(12275), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12275), + [anon_sym_BSLASHcitealt] = ACTIONS(12275), + [anon_sym_BSLASHcitealp] = ACTIONS(12275), + [anon_sym_BSLASHcitetext] = ACTIONS(12275), + [anon_sym_BSLASHparencite] = ACTIONS(12275), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHParencite] = ACTIONS(12275), + [anon_sym_BSLASHfootcite] = ACTIONS(12275), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12275), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12275), + [anon_sym_BSLASHtextcite] = ACTIONS(12275), + [anon_sym_BSLASHTextcite] = ACTIONS(12275), + [anon_sym_BSLASHsmartcite] = ACTIONS(12275), + [anon_sym_BSLASHSmartcite] = ACTIONS(12275), + [anon_sym_BSLASHsupercite] = ACTIONS(12275), + [anon_sym_BSLASHautocite] = ACTIONS(12275), + [anon_sym_BSLASHAutocite] = ACTIONS(12275), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12273), + [anon_sym_BSLASHvolcite] = ACTIONS(12275), + [anon_sym_BSLASHVolcite] = ACTIONS(12275), + [anon_sym_BSLASHpvolcite] = ACTIONS(12275), + [anon_sym_BSLASHPvolcite] = ACTIONS(12275), + [anon_sym_BSLASHfvolcite] = ACTIONS(12275), + [anon_sym_BSLASHftvolcite] = ACTIONS(12275), + [anon_sym_BSLASHsvolcite] = ACTIONS(12275), + [anon_sym_BSLASHSvolcite] = ACTIONS(12275), + [anon_sym_BSLASHtvolcite] = ACTIONS(12275), + [anon_sym_BSLASHTvolcite] = ACTIONS(12275), + [anon_sym_BSLASHavolcite] = ACTIONS(12275), + [anon_sym_BSLASHAvolcite] = ACTIONS(12275), + [anon_sym_BSLASHnotecite] = ACTIONS(12275), + [anon_sym_BSLASHpnotecite] = ACTIONS(12275), + [anon_sym_BSLASHPnotecite] = ACTIONS(12275), + [anon_sym_BSLASHfnotecite] = ACTIONS(12275), + [anon_sym_BSLASHusepackage] = ACTIONS(12275), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12275), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12275), + [anon_sym_BSLASHinclude] = ACTIONS(12275), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12275), + [anon_sym_BSLASHinput] = ACTIONS(12275), + [anon_sym_BSLASHsubfile] = ACTIONS(12275), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12275), + [anon_sym_BSLASHbibliography] = ACTIONS(12275), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12275), + [anon_sym_BSLASHincludesvg] = ACTIONS(12275), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12275), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12275), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12275), + [anon_sym_BSLASHimport] = ACTIONS(12275), + [anon_sym_BSLASHsubimport] = ACTIONS(12275), + [anon_sym_BSLASHinputfrom] = ACTIONS(12275), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12275), + [anon_sym_BSLASHincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12275), + [anon_sym_BSLASHlabel] = ACTIONS(12275), + [anon_sym_BSLASHref] = ACTIONS(12275), + [anon_sym_BSLASHvref] = ACTIONS(12275), + [anon_sym_BSLASHVref] = ACTIONS(12275), + [anon_sym_BSLASHautoref] = ACTIONS(12275), + [anon_sym_BSLASHpageref] = ACTIONS(12275), + [anon_sym_BSLASHcref] = ACTIONS(12275), + [anon_sym_BSLASHCref] = ACTIONS(12275), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnameCref] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12275), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12275), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12275), + [anon_sym_BSLASHlabelcref] = ACTIONS(12275), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12275), + [anon_sym_BSLASHeqref] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange] = ACTIONS(12275), + [anon_sym_BSLASHCrefrange] = ACTIONS(12275), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewlabel] = ACTIONS(12275), + [anon_sym_BSLASHnewcommand] = ACTIONS(12275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12275), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12275), + [anon_sym_BSLASHgls] = ACTIONS(12275), + [anon_sym_BSLASHGls] = ACTIONS(12275), + [anon_sym_BSLASHGLS] = ACTIONS(12275), + [anon_sym_BSLASHglspl] = ACTIONS(12275), + [anon_sym_BSLASHGlspl] = ACTIONS(12275), + [anon_sym_BSLASHGLSpl] = ACTIONS(12275), + [anon_sym_BSLASHglsdisp] = ACTIONS(12275), + [anon_sym_BSLASHglslink] = ACTIONS(12275), + [anon_sym_BSLASHglstext] = ACTIONS(12275), + [anon_sym_BSLASHGlstext] = ACTIONS(12275), + [anon_sym_BSLASHGLStext] = ACTIONS(12275), + [anon_sym_BSLASHglsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12275), + [anon_sym_BSLASHglsplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSplural] = ACTIONS(12275), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12275), + [anon_sym_BSLASHglsname] = ACTIONS(12275), + [anon_sym_BSLASHGlsname] = ACTIONS(12275), + [anon_sym_BSLASHGLSname] = ACTIONS(12275), + [anon_sym_BSLASHglssymbol] = ACTIONS(12275), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12275), + [anon_sym_BSLASHglsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12275), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12275), + [anon_sym_BSLASHglsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12275), + [anon_sym_BSLASHglsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12275), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12275), + [anon_sym_BSLASHglsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12275), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12275), + [anon_sym_BSLASHglsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12275), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12275), + [anon_sym_BSLASHnewacronym] = ACTIONS(12275), + [anon_sym_BSLASHacrshort] = ACTIONS(12275), + [anon_sym_BSLASHAcrshort] = ACTIONS(12275), + [anon_sym_BSLASHACRshort] = ACTIONS(12275), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12275), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12275), + [anon_sym_BSLASHacrlong] = ACTIONS(12275), + [anon_sym_BSLASHAcrlong] = ACTIONS(12275), + [anon_sym_BSLASHACRlong] = ACTIONS(12275), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12275), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12275), + [anon_sym_BSLASHacrfull] = ACTIONS(12275), + [anon_sym_BSLASHAcrfull] = ACTIONS(12275), + [anon_sym_BSLASHACRfull] = ACTIONS(12275), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12275), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12275), + [anon_sym_BSLASHacs] = ACTIONS(12275), + [anon_sym_BSLASHAcs] = ACTIONS(12275), + [anon_sym_BSLASHacsp] = ACTIONS(12275), + [anon_sym_BSLASHAcsp] = ACTIONS(12275), + [anon_sym_BSLASHacl] = ACTIONS(12275), + [anon_sym_BSLASHAcl] = ACTIONS(12275), + [anon_sym_BSLASHaclp] = ACTIONS(12275), + [anon_sym_BSLASHAclp] = ACTIONS(12275), + [anon_sym_BSLASHacf] = ACTIONS(12275), + [anon_sym_BSLASHAcf] = ACTIONS(12275), + [anon_sym_BSLASHacfp] = ACTIONS(12275), + [anon_sym_BSLASHAcfp] = ACTIONS(12275), + [anon_sym_BSLASHac] = ACTIONS(12275), + [anon_sym_BSLASHAc] = ACTIONS(12275), + [anon_sym_BSLASHacp] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12275), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12275), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12275), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12275), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12275), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12275), + [anon_sym_BSLASHcolor] = ACTIONS(12275), + [anon_sym_BSLASHcolorbox] = ACTIONS(12275), + [anon_sym_BSLASHtextcolor] = ACTIONS(12275), + [anon_sym_BSLASHpagecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12275), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12275), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12275), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12275), + }, + [1899] = { + [sym_generic_command_name] = ACTIONS(12120), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12118), + [anon_sym_RBRACK] = ACTIONS(12118), + [anon_sym_LBRACE] = ACTIONS(12118), + [anon_sym_RBRACE] = ACTIONS(12118), + [anon_sym_LPAREN] = ACTIONS(12118), + [anon_sym_COMMA] = ACTIONS(12118), + [anon_sym_EQ] = ACTIONS(12118), + [sym_word] = ACTIONS(12118), + [sym_param] = ACTIONS(12118), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12118), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12118), + [anon_sym_DOLLAR] = ACTIONS(12120), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12118), + [anon_sym_BSLASHbegin] = ACTIONS(12120), + [anon_sym_BSLASHcaption] = ACTIONS(12120), + [anon_sym_BSLASHcite] = ACTIONS(12120), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCite] = ACTIONS(12120), + [anon_sym_BSLASHnocite] = ACTIONS(12120), + [anon_sym_BSLASHcitet] = ACTIONS(12120), + [anon_sym_BSLASHcitep] = ACTIONS(12120), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteauthor] = ACTIONS(12120), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12120), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitetitle] = ACTIONS(12120), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteyear] = ACTIONS(12120), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12118), + [anon_sym_BSLASHcitedate] = ACTIONS(12120), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12118), + [anon_sym_BSLASHciteurl] = ACTIONS(12120), + [anon_sym_BSLASHfullcite] = ACTIONS(12120), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12120), + [anon_sym_BSLASHcitealt] = ACTIONS(12120), + [anon_sym_BSLASHcitealp] = ACTIONS(12120), + [anon_sym_BSLASHcitetext] = ACTIONS(12120), + [anon_sym_BSLASHparencite] = ACTIONS(12120), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHParencite] = ACTIONS(12120), + [anon_sym_BSLASHfootcite] = ACTIONS(12120), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12120), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12120), + [anon_sym_BSLASHtextcite] = ACTIONS(12120), + [anon_sym_BSLASHTextcite] = ACTIONS(12120), + [anon_sym_BSLASHsmartcite] = ACTIONS(12120), + [anon_sym_BSLASHSmartcite] = ACTIONS(12120), + [anon_sym_BSLASHsupercite] = ACTIONS(12120), + [anon_sym_BSLASHautocite] = ACTIONS(12120), + [anon_sym_BSLASHAutocite] = ACTIONS(12120), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12118), + [anon_sym_BSLASHvolcite] = ACTIONS(12120), + [anon_sym_BSLASHVolcite] = ACTIONS(12120), + [anon_sym_BSLASHpvolcite] = ACTIONS(12120), + [anon_sym_BSLASHPvolcite] = ACTIONS(12120), + [anon_sym_BSLASHfvolcite] = ACTIONS(12120), + [anon_sym_BSLASHftvolcite] = ACTIONS(12120), + [anon_sym_BSLASHsvolcite] = ACTIONS(12120), + [anon_sym_BSLASHSvolcite] = ACTIONS(12120), + [anon_sym_BSLASHtvolcite] = ACTIONS(12120), + [anon_sym_BSLASHTvolcite] = ACTIONS(12120), + [anon_sym_BSLASHavolcite] = ACTIONS(12120), + [anon_sym_BSLASHAvolcite] = ACTIONS(12120), + [anon_sym_BSLASHnotecite] = ACTIONS(12120), + [anon_sym_BSLASHpnotecite] = ACTIONS(12120), + [anon_sym_BSLASHPnotecite] = ACTIONS(12120), + [anon_sym_BSLASHfnotecite] = ACTIONS(12120), + [anon_sym_BSLASHusepackage] = ACTIONS(12120), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12120), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12120), + [anon_sym_BSLASHinclude] = ACTIONS(12120), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12120), + [anon_sym_BSLASHinput] = ACTIONS(12120), + [anon_sym_BSLASHsubfile] = ACTIONS(12120), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12120), + [anon_sym_BSLASHbibliography] = ACTIONS(12120), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12120), + [anon_sym_BSLASHincludesvg] = ACTIONS(12120), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12120), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12120), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12120), + [anon_sym_BSLASHimport] = ACTIONS(12120), + [anon_sym_BSLASHsubimport] = ACTIONS(12120), + [anon_sym_BSLASHinputfrom] = ACTIONS(12120), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12120), + [anon_sym_BSLASHincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12120), + [anon_sym_BSLASHlabel] = ACTIONS(12120), + [anon_sym_BSLASHref] = ACTIONS(12120), + [anon_sym_BSLASHvref] = ACTIONS(12120), + [anon_sym_BSLASHVref] = ACTIONS(12120), + [anon_sym_BSLASHautoref] = ACTIONS(12120), + [anon_sym_BSLASHpageref] = ACTIONS(12120), + [anon_sym_BSLASHcref] = ACTIONS(12120), + [anon_sym_BSLASHCref] = ACTIONS(12120), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnameCref] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12120), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12120), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12120), + [anon_sym_BSLASHlabelcref] = ACTIONS(12120), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12120), + [anon_sym_BSLASHeqref] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange] = ACTIONS(12120), + [anon_sym_BSLASHCrefrange] = ACTIONS(12120), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewlabel] = ACTIONS(12120), + [anon_sym_BSLASHnewcommand] = ACTIONS(12120), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12120), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12118), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12120), + [anon_sym_BSLASHgls] = ACTIONS(12120), + [anon_sym_BSLASHGls] = ACTIONS(12120), + [anon_sym_BSLASHGLS] = ACTIONS(12120), + [anon_sym_BSLASHglspl] = ACTIONS(12120), + [anon_sym_BSLASHGlspl] = ACTIONS(12120), + [anon_sym_BSLASHGLSpl] = ACTIONS(12120), + [anon_sym_BSLASHglsdisp] = ACTIONS(12120), + [anon_sym_BSLASHglslink] = ACTIONS(12120), + [anon_sym_BSLASHglstext] = ACTIONS(12120), + [anon_sym_BSLASHGlstext] = ACTIONS(12120), + [anon_sym_BSLASHGLStext] = ACTIONS(12120), + [anon_sym_BSLASHglsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12120), + [anon_sym_BSLASHglsplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSplural] = ACTIONS(12120), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12120), + [anon_sym_BSLASHglsname] = ACTIONS(12120), + [anon_sym_BSLASHGlsname] = ACTIONS(12120), + [anon_sym_BSLASHGLSname] = ACTIONS(12120), + [anon_sym_BSLASHglssymbol] = ACTIONS(12120), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12120), + [anon_sym_BSLASHglsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12120), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12120), + [anon_sym_BSLASHglsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12120), + [anon_sym_BSLASHglsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12120), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12120), + [anon_sym_BSLASHglsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12120), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12120), + [anon_sym_BSLASHglsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12120), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12120), + [anon_sym_BSLASHnewacronym] = ACTIONS(12120), + [anon_sym_BSLASHacrshort] = ACTIONS(12120), + [anon_sym_BSLASHAcrshort] = ACTIONS(12120), + [anon_sym_BSLASHACRshort] = ACTIONS(12120), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12120), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12120), + [anon_sym_BSLASHacrlong] = ACTIONS(12120), + [anon_sym_BSLASHAcrlong] = ACTIONS(12120), + [anon_sym_BSLASHACRlong] = ACTIONS(12120), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12120), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12120), + [anon_sym_BSLASHacrfull] = ACTIONS(12120), + [anon_sym_BSLASHAcrfull] = ACTIONS(12120), + [anon_sym_BSLASHACRfull] = ACTIONS(12120), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12120), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12120), + [anon_sym_BSLASHacs] = ACTIONS(12120), + [anon_sym_BSLASHAcs] = ACTIONS(12120), + [anon_sym_BSLASHacsp] = ACTIONS(12120), + [anon_sym_BSLASHAcsp] = ACTIONS(12120), + [anon_sym_BSLASHacl] = ACTIONS(12120), + [anon_sym_BSLASHAcl] = ACTIONS(12120), + [anon_sym_BSLASHaclp] = ACTIONS(12120), + [anon_sym_BSLASHAclp] = ACTIONS(12120), + [anon_sym_BSLASHacf] = ACTIONS(12120), + [anon_sym_BSLASHAcf] = ACTIONS(12120), + [anon_sym_BSLASHacfp] = ACTIONS(12120), + [anon_sym_BSLASHAcfp] = ACTIONS(12120), + [anon_sym_BSLASHac] = ACTIONS(12120), + [anon_sym_BSLASHAc] = ACTIONS(12120), + [anon_sym_BSLASHacp] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12120), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12120), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12120), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12120), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12120), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12120), + [anon_sym_BSLASHcolor] = ACTIONS(12120), + [anon_sym_BSLASHcolorbox] = ACTIONS(12120), + [anon_sym_BSLASHtextcolor] = ACTIONS(12120), + [anon_sym_BSLASHpagecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12120), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12120), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12120), + }, + [1900] = { + [sym_generic_command_name] = ACTIONS(12197), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12195), + [anon_sym_RBRACK] = ACTIONS(12195), + [anon_sym_LBRACE] = ACTIONS(12195), + [anon_sym_RBRACE] = ACTIONS(12195), + [anon_sym_LPAREN] = ACTIONS(12195), + [anon_sym_COMMA] = ACTIONS(12195), + [anon_sym_EQ] = ACTIONS(12195), + [sym_word] = ACTIONS(12195), + [sym_param] = ACTIONS(12195), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12195), + [anon_sym_DOLLAR] = ACTIONS(12197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12195), + [anon_sym_BSLASHbegin] = ACTIONS(12197), + [anon_sym_BSLASHcaption] = ACTIONS(12197), + [anon_sym_BSLASHcite] = ACTIONS(12197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCite] = ACTIONS(12197), + [anon_sym_BSLASHnocite] = ACTIONS(12197), + [anon_sym_BSLASHcitet] = ACTIONS(12197), + [anon_sym_BSLASHcitep] = ACTIONS(12197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteauthor] = ACTIONS(12197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitetitle] = ACTIONS(12197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteyear] = ACTIONS(12197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12195), + [anon_sym_BSLASHcitedate] = ACTIONS(12197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12195), + [anon_sym_BSLASHciteurl] = ACTIONS(12197), + [anon_sym_BSLASHfullcite] = ACTIONS(12197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12197), + [anon_sym_BSLASHcitealt] = ACTIONS(12197), + [anon_sym_BSLASHcitealp] = ACTIONS(12197), + [anon_sym_BSLASHcitetext] = ACTIONS(12197), + [anon_sym_BSLASHparencite] = ACTIONS(12197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHParencite] = ACTIONS(12197), + [anon_sym_BSLASHfootcite] = ACTIONS(12197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12197), + [anon_sym_BSLASHtextcite] = ACTIONS(12197), + [anon_sym_BSLASHTextcite] = ACTIONS(12197), + [anon_sym_BSLASHsmartcite] = ACTIONS(12197), + [anon_sym_BSLASHSmartcite] = ACTIONS(12197), + [anon_sym_BSLASHsupercite] = ACTIONS(12197), + [anon_sym_BSLASHautocite] = ACTIONS(12197), + [anon_sym_BSLASHAutocite] = ACTIONS(12197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12195), + [anon_sym_BSLASHvolcite] = ACTIONS(12197), + [anon_sym_BSLASHVolcite] = ACTIONS(12197), + [anon_sym_BSLASHpvolcite] = ACTIONS(12197), + [anon_sym_BSLASHPvolcite] = ACTIONS(12197), + [anon_sym_BSLASHfvolcite] = ACTIONS(12197), + [anon_sym_BSLASHftvolcite] = ACTIONS(12197), + [anon_sym_BSLASHsvolcite] = ACTIONS(12197), + [anon_sym_BSLASHSvolcite] = ACTIONS(12197), + [anon_sym_BSLASHtvolcite] = ACTIONS(12197), + [anon_sym_BSLASHTvolcite] = ACTIONS(12197), + [anon_sym_BSLASHavolcite] = ACTIONS(12197), + [anon_sym_BSLASHAvolcite] = ACTIONS(12197), + [anon_sym_BSLASHnotecite] = ACTIONS(12197), + [anon_sym_BSLASHpnotecite] = ACTIONS(12197), + [anon_sym_BSLASHPnotecite] = ACTIONS(12197), + [anon_sym_BSLASHfnotecite] = ACTIONS(12197), + [anon_sym_BSLASHusepackage] = ACTIONS(12197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12197), + [anon_sym_BSLASHinclude] = ACTIONS(12197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12197), + [anon_sym_BSLASHinput] = ACTIONS(12197), + [anon_sym_BSLASHsubfile] = ACTIONS(12197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12197), + [anon_sym_BSLASHbibliography] = ACTIONS(12197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12197), + [anon_sym_BSLASHincludesvg] = ACTIONS(12197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12197), + [anon_sym_BSLASHimport] = ACTIONS(12197), + [anon_sym_BSLASHsubimport] = ACTIONS(12197), + [anon_sym_BSLASHinputfrom] = ACTIONS(12197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12197), + [anon_sym_BSLASHincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12197), + [anon_sym_BSLASHlabel] = ACTIONS(12197), + [anon_sym_BSLASHref] = ACTIONS(12197), + [anon_sym_BSLASHvref] = ACTIONS(12197), + [anon_sym_BSLASHVref] = ACTIONS(12197), + [anon_sym_BSLASHautoref] = ACTIONS(12197), + [anon_sym_BSLASHpageref] = ACTIONS(12197), + [anon_sym_BSLASHcref] = ACTIONS(12197), + [anon_sym_BSLASHCref] = ACTIONS(12197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnameCref] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12197), + [anon_sym_BSLASHlabelcref] = ACTIONS(12197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12197), + [anon_sym_BSLASHeqref] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange] = ACTIONS(12197), + [anon_sym_BSLASHCrefrange] = ACTIONS(12197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewlabel] = ACTIONS(12197), + [anon_sym_BSLASHnewcommand] = ACTIONS(12197), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12195), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12197), + [anon_sym_BSLASHgls] = ACTIONS(12197), + [anon_sym_BSLASHGls] = ACTIONS(12197), + [anon_sym_BSLASHGLS] = ACTIONS(12197), + [anon_sym_BSLASHglspl] = ACTIONS(12197), + [anon_sym_BSLASHGlspl] = ACTIONS(12197), + [anon_sym_BSLASHGLSpl] = ACTIONS(12197), + [anon_sym_BSLASHglsdisp] = ACTIONS(12197), + [anon_sym_BSLASHglslink] = ACTIONS(12197), + [anon_sym_BSLASHglstext] = ACTIONS(12197), + [anon_sym_BSLASHGlstext] = ACTIONS(12197), + [anon_sym_BSLASHGLStext] = ACTIONS(12197), + [anon_sym_BSLASHglsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12197), + [anon_sym_BSLASHglsplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSplural] = ACTIONS(12197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12197), + [anon_sym_BSLASHglsname] = ACTIONS(12197), + [anon_sym_BSLASHGlsname] = ACTIONS(12197), + [anon_sym_BSLASHGLSname] = ACTIONS(12197), + [anon_sym_BSLASHglssymbol] = ACTIONS(12197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12197), + [anon_sym_BSLASHglsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12197), + [anon_sym_BSLASHglsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12197), + [anon_sym_BSLASHglsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12197), + [anon_sym_BSLASHglsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12197), + [anon_sym_BSLASHglsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12197), + [anon_sym_BSLASHnewacronym] = ACTIONS(12197), + [anon_sym_BSLASHacrshort] = ACTIONS(12197), + [anon_sym_BSLASHAcrshort] = ACTIONS(12197), + [anon_sym_BSLASHACRshort] = ACTIONS(12197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12197), + [anon_sym_BSLASHacrlong] = ACTIONS(12197), + [anon_sym_BSLASHAcrlong] = ACTIONS(12197), + [anon_sym_BSLASHACRlong] = ACTIONS(12197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12197), + [anon_sym_BSLASHacrfull] = ACTIONS(12197), + [anon_sym_BSLASHAcrfull] = ACTIONS(12197), + [anon_sym_BSLASHACRfull] = ACTIONS(12197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12197), + [anon_sym_BSLASHacs] = ACTIONS(12197), + [anon_sym_BSLASHAcs] = ACTIONS(12197), + [anon_sym_BSLASHacsp] = ACTIONS(12197), + [anon_sym_BSLASHAcsp] = ACTIONS(12197), + [anon_sym_BSLASHacl] = ACTIONS(12197), + [anon_sym_BSLASHAcl] = ACTIONS(12197), + [anon_sym_BSLASHaclp] = ACTIONS(12197), + [anon_sym_BSLASHAclp] = ACTIONS(12197), + [anon_sym_BSLASHacf] = ACTIONS(12197), + [anon_sym_BSLASHAcf] = ACTIONS(12197), + [anon_sym_BSLASHacfp] = ACTIONS(12197), + [anon_sym_BSLASHAcfp] = ACTIONS(12197), + [anon_sym_BSLASHac] = ACTIONS(12197), + [anon_sym_BSLASHAc] = ACTIONS(12197), + [anon_sym_BSLASHacp] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12197), + [anon_sym_BSLASHcolor] = ACTIONS(12197), + [anon_sym_BSLASHcolorbox] = ACTIONS(12197), + [anon_sym_BSLASHtextcolor] = ACTIONS(12197), + [anon_sym_BSLASHpagecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12197), + }, + [1901] = { + [sym_generic_command_name] = ACTIONS(12209), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12207), + [anon_sym_RBRACK] = ACTIONS(12207), + [anon_sym_LBRACE] = ACTIONS(12207), + [anon_sym_RBRACE] = ACTIONS(12207), + [anon_sym_LPAREN] = ACTIONS(12207), + [anon_sym_COMMA] = ACTIONS(12207), + [anon_sym_EQ] = ACTIONS(12207), + [sym_word] = ACTIONS(12207), + [sym_param] = ACTIONS(12207), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12207), + [anon_sym_DOLLAR] = ACTIONS(12209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12207), + [anon_sym_BSLASHbegin] = ACTIONS(12209), + [anon_sym_BSLASHcaption] = ACTIONS(12209), + [anon_sym_BSLASHcite] = ACTIONS(12209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCite] = ACTIONS(12209), + [anon_sym_BSLASHnocite] = ACTIONS(12209), + [anon_sym_BSLASHcitet] = ACTIONS(12209), + [anon_sym_BSLASHcitep] = ACTIONS(12209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteauthor] = ACTIONS(12209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitetitle] = ACTIONS(12209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteyear] = ACTIONS(12209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12207), + [anon_sym_BSLASHcitedate] = ACTIONS(12209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12207), + [anon_sym_BSLASHciteurl] = ACTIONS(12209), + [anon_sym_BSLASHfullcite] = ACTIONS(12209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12209), + [anon_sym_BSLASHcitealt] = ACTIONS(12209), + [anon_sym_BSLASHcitealp] = ACTIONS(12209), + [anon_sym_BSLASHcitetext] = ACTIONS(12209), + [anon_sym_BSLASHparencite] = ACTIONS(12209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHParencite] = ACTIONS(12209), + [anon_sym_BSLASHfootcite] = ACTIONS(12209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12209), + [anon_sym_BSLASHtextcite] = ACTIONS(12209), + [anon_sym_BSLASHTextcite] = ACTIONS(12209), + [anon_sym_BSLASHsmartcite] = ACTIONS(12209), + [anon_sym_BSLASHSmartcite] = ACTIONS(12209), + [anon_sym_BSLASHsupercite] = ACTIONS(12209), + [anon_sym_BSLASHautocite] = ACTIONS(12209), + [anon_sym_BSLASHAutocite] = ACTIONS(12209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12207), + [anon_sym_BSLASHvolcite] = ACTIONS(12209), + [anon_sym_BSLASHVolcite] = ACTIONS(12209), + [anon_sym_BSLASHpvolcite] = ACTIONS(12209), + [anon_sym_BSLASHPvolcite] = ACTIONS(12209), + [anon_sym_BSLASHfvolcite] = ACTIONS(12209), + [anon_sym_BSLASHftvolcite] = ACTIONS(12209), + [anon_sym_BSLASHsvolcite] = ACTIONS(12209), + [anon_sym_BSLASHSvolcite] = ACTIONS(12209), + [anon_sym_BSLASHtvolcite] = ACTIONS(12209), + [anon_sym_BSLASHTvolcite] = ACTIONS(12209), + [anon_sym_BSLASHavolcite] = ACTIONS(12209), + [anon_sym_BSLASHAvolcite] = ACTIONS(12209), + [anon_sym_BSLASHnotecite] = ACTIONS(12209), + [anon_sym_BSLASHpnotecite] = ACTIONS(12209), + [anon_sym_BSLASHPnotecite] = ACTIONS(12209), + [anon_sym_BSLASHfnotecite] = ACTIONS(12209), + [anon_sym_BSLASHusepackage] = ACTIONS(12209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12209), + [anon_sym_BSLASHinclude] = ACTIONS(12209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12209), + [anon_sym_BSLASHinput] = ACTIONS(12209), + [anon_sym_BSLASHsubfile] = ACTIONS(12209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12209), + [anon_sym_BSLASHbibliography] = ACTIONS(12209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12209), + [anon_sym_BSLASHincludesvg] = ACTIONS(12209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12209), + [anon_sym_BSLASHimport] = ACTIONS(12209), + [anon_sym_BSLASHsubimport] = ACTIONS(12209), + [anon_sym_BSLASHinputfrom] = ACTIONS(12209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12209), + [anon_sym_BSLASHincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12209), + [anon_sym_BSLASHlabel] = ACTIONS(12209), + [anon_sym_BSLASHref] = ACTIONS(12209), + [anon_sym_BSLASHvref] = ACTIONS(12209), + [anon_sym_BSLASHVref] = ACTIONS(12209), + [anon_sym_BSLASHautoref] = ACTIONS(12209), + [anon_sym_BSLASHpageref] = ACTIONS(12209), + [anon_sym_BSLASHcref] = ACTIONS(12209), + [anon_sym_BSLASHCref] = ACTIONS(12209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnameCref] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12209), + [anon_sym_BSLASHlabelcref] = ACTIONS(12209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12209), + [anon_sym_BSLASHeqref] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange] = ACTIONS(12209), + [anon_sym_BSLASHCrefrange] = ACTIONS(12209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewlabel] = ACTIONS(12209), + [anon_sym_BSLASHnewcommand] = ACTIONS(12209), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12207), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12209), + [anon_sym_BSLASHgls] = ACTIONS(12209), + [anon_sym_BSLASHGls] = ACTIONS(12209), + [anon_sym_BSLASHGLS] = ACTIONS(12209), + [anon_sym_BSLASHglspl] = ACTIONS(12209), + [anon_sym_BSLASHGlspl] = ACTIONS(12209), + [anon_sym_BSLASHGLSpl] = ACTIONS(12209), + [anon_sym_BSLASHglsdisp] = ACTIONS(12209), + [anon_sym_BSLASHglslink] = ACTIONS(12209), + [anon_sym_BSLASHglstext] = ACTIONS(12209), + [anon_sym_BSLASHGlstext] = ACTIONS(12209), + [anon_sym_BSLASHGLStext] = ACTIONS(12209), + [anon_sym_BSLASHglsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12209), + [anon_sym_BSLASHglsplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSplural] = ACTIONS(12209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12209), + [anon_sym_BSLASHglsname] = ACTIONS(12209), + [anon_sym_BSLASHGlsname] = ACTIONS(12209), + [anon_sym_BSLASHGLSname] = ACTIONS(12209), + [anon_sym_BSLASHglssymbol] = ACTIONS(12209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12209), + [anon_sym_BSLASHglsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12209), + [anon_sym_BSLASHglsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12209), + [anon_sym_BSLASHglsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12209), + [anon_sym_BSLASHglsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12209), + [anon_sym_BSLASHglsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12209), + [anon_sym_BSLASHnewacronym] = ACTIONS(12209), + [anon_sym_BSLASHacrshort] = ACTIONS(12209), + [anon_sym_BSLASHAcrshort] = ACTIONS(12209), + [anon_sym_BSLASHACRshort] = ACTIONS(12209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12209), + [anon_sym_BSLASHacrlong] = ACTIONS(12209), + [anon_sym_BSLASHAcrlong] = ACTIONS(12209), + [anon_sym_BSLASHACRlong] = ACTIONS(12209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12209), + [anon_sym_BSLASHacrfull] = ACTIONS(12209), + [anon_sym_BSLASHAcrfull] = ACTIONS(12209), + [anon_sym_BSLASHACRfull] = ACTIONS(12209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12209), + [anon_sym_BSLASHacs] = ACTIONS(12209), + [anon_sym_BSLASHAcs] = ACTIONS(12209), + [anon_sym_BSLASHacsp] = ACTIONS(12209), + [anon_sym_BSLASHAcsp] = ACTIONS(12209), + [anon_sym_BSLASHacl] = ACTIONS(12209), + [anon_sym_BSLASHAcl] = ACTIONS(12209), + [anon_sym_BSLASHaclp] = ACTIONS(12209), + [anon_sym_BSLASHAclp] = ACTIONS(12209), + [anon_sym_BSLASHacf] = ACTIONS(12209), + [anon_sym_BSLASHAcf] = ACTIONS(12209), + [anon_sym_BSLASHacfp] = ACTIONS(12209), + [anon_sym_BSLASHAcfp] = ACTIONS(12209), + [anon_sym_BSLASHac] = ACTIONS(12209), + [anon_sym_BSLASHAc] = ACTIONS(12209), + [anon_sym_BSLASHacp] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12209), + [anon_sym_BSLASHcolor] = ACTIONS(12209), + [anon_sym_BSLASHcolorbox] = ACTIONS(12209), + [anon_sym_BSLASHtextcolor] = ACTIONS(12209), + [anon_sym_BSLASHpagecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12209), + }, + [1902] = { + [sym_generic_command_name] = ACTIONS(12177), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12175), + [anon_sym_RBRACK] = ACTIONS(12175), + [anon_sym_LBRACE] = ACTIONS(12175), + [anon_sym_RBRACE] = ACTIONS(12175), + [anon_sym_LPAREN] = ACTIONS(12175), + [anon_sym_COMMA] = ACTIONS(12175), + [anon_sym_EQ] = ACTIONS(12175), + [sym_word] = ACTIONS(12175), + [sym_param] = ACTIONS(12175), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12175), + [anon_sym_DOLLAR] = ACTIONS(12177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12175), + [anon_sym_BSLASHbegin] = ACTIONS(12177), + [anon_sym_BSLASHcaption] = ACTIONS(12177), + [anon_sym_BSLASHcite] = ACTIONS(12177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCite] = ACTIONS(12177), + [anon_sym_BSLASHnocite] = ACTIONS(12177), + [anon_sym_BSLASHcitet] = ACTIONS(12177), + [anon_sym_BSLASHcitep] = ACTIONS(12177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteauthor] = ACTIONS(12177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitetitle] = ACTIONS(12177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteyear] = ACTIONS(12177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12175), + [anon_sym_BSLASHcitedate] = ACTIONS(12177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12175), + [anon_sym_BSLASHciteurl] = ACTIONS(12177), + [anon_sym_BSLASHfullcite] = ACTIONS(12177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12177), + [anon_sym_BSLASHcitealt] = ACTIONS(12177), + [anon_sym_BSLASHcitealp] = ACTIONS(12177), + [anon_sym_BSLASHcitetext] = ACTIONS(12177), + [anon_sym_BSLASHparencite] = ACTIONS(12177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHParencite] = ACTIONS(12177), + [anon_sym_BSLASHfootcite] = ACTIONS(12177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12177), + [anon_sym_BSLASHtextcite] = ACTIONS(12177), + [anon_sym_BSLASHTextcite] = ACTIONS(12177), + [anon_sym_BSLASHsmartcite] = ACTIONS(12177), + [anon_sym_BSLASHSmartcite] = ACTIONS(12177), + [anon_sym_BSLASHsupercite] = ACTIONS(12177), + [anon_sym_BSLASHautocite] = ACTIONS(12177), + [anon_sym_BSLASHAutocite] = ACTIONS(12177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12175), + [anon_sym_BSLASHvolcite] = ACTIONS(12177), + [anon_sym_BSLASHVolcite] = ACTIONS(12177), + [anon_sym_BSLASHpvolcite] = ACTIONS(12177), + [anon_sym_BSLASHPvolcite] = ACTIONS(12177), + [anon_sym_BSLASHfvolcite] = ACTIONS(12177), + [anon_sym_BSLASHftvolcite] = ACTIONS(12177), + [anon_sym_BSLASHsvolcite] = ACTIONS(12177), + [anon_sym_BSLASHSvolcite] = ACTIONS(12177), + [anon_sym_BSLASHtvolcite] = ACTIONS(12177), + [anon_sym_BSLASHTvolcite] = ACTIONS(12177), + [anon_sym_BSLASHavolcite] = ACTIONS(12177), + [anon_sym_BSLASHAvolcite] = ACTIONS(12177), + [anon_sym_BSLASHnotecite] = ACTIONS(12177), + [anon_sym_BSLASHpnotecite] = ACTIONS(12177), + [anon_sym_BSLASHPnotecite] = ACTIONS(12177), + [anon_sym_BSLASHfnotecite] = ACTIONS(12177), + [anon_sym_BSLASHusepackage] = ACTIONS(12177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12177), + [anon_sym_BSLASHinclude] = ACTIONS(12177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12177), + [anon_sym_BSLASHinput] = ACTIONS(12177), + [anon_sym_BSLASHsubfile] = ACTIONS(12177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12177), + [anon_sym_BSLASHbibliography] = ACTIONS(12177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12177), + [anon_sym_BSLASHincludesvg] = ACTIONS(12177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12177), + [anon_sym_BSLASHimport] = ACTIONS(12177), + [anon_sym_BSLASHsubimport] = ACTIONS(12177), + [anon_sym_BSLASHinputfrom] = ACTIONS(12177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12177), + [anon_sym_BSLASHincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12177), + [anon_sym_BSLASHlabel] = ACTIONS(12177), + [anon_sym_BSLASHref] = ACTIONS(12177), + [anon_sym_BSLASHvref] = ACTIONS(12177), + [anon_sym_BSLASHVref] = ACTIONS(12177), + [anon_sym_BSLASHautoref] = ACTIONS(12177), + [anon_sym_BSLASHpageref] = ACTIONS(12177), + [anon_sym_BSLASHcref] = ACTIONS(12177), + [anon_sym_BSLASHCref] = ACTIONS(12177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnameCref] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12177), + [anon_sym_BSLASHlabelcref] = ACTIONS(12177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12177), + [anon_sym_BSLASHeqref] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange] = ACTIONS(12177), + [anon_sym_BSLASHCrefrange] = ACTIONS(12177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewlabel] = ACTIONS(12177), + [anon_sym_BSLASHnewcommand] = ACTIONS(12177), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12175), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12177), + [anon_sym_BSLASHgls] = ACTIONS(12177), + [anon_sym_BSLASHGls] = ACTIONS(12177), + [anon_sym_BSLASHGLS] = ACTIONS(12177), + [anon_sym_BSLASHglspl] = ACTIONS(12177), + [anon_sym_BSLASHGlspl] = ACTIONS(12177), + [anon_sym_BSLASHGLSpl] = ACTIONS(12177), + [anon_sym_BSLASHglsdisp] = ACTIONS(12177), + [anon_sym_BSLASHglslink] = ACTIONS(12177), + [anon_sym_BSLASHglstext] = ACTIONS(12177), + [anon_sym_BSLASHGlstext] = ACTIONS(12177), + [anon_sym_BSLASHGLStext] = ACTIONS(12177), + [anon_sym_BSLASHglsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12177), + [anon_sym_BSLASHglsplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSplural] = ACTIONS(12177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12177), + [anon_sym_BSLASHglsname] = ACTIONS(12177), + [anon_sym_BSLASHGlsname] = ACTIONS(12177), + [anon_sym_BSLASHGLSname] = ACTIONS(12177), + [anon_sym_BSLASHglssymbol] = ACTIONS(12177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12177), + [anon_sym_BSLASHglsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12177), + [anon_sym_BSLASHglsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12177), + [anon_sym_BSLASHglsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12177), + [anon_sym_BSLASHglsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12177), + [anon_sym_BSLASHglsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12177), + [anon_sym_BSLASHnewacronym] = ACTIONS(12177), + [anon_sym_BSLASHacrshort] = ACTIONS(12177), + [anon_sym_BSLASHAcrshort] = ACTIONS(12177), + [anon_sym_BSLASHACRshort] = ACTIONS(12177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12177), + [anon_sym_BSLASHacrlong] = ACTIONS(12177), + [anon_sym_BSLASHAcrlong] = ACTIONS(12177), + [anon_sym_BSLASHACRlong] = ACTIONS(12177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12177), + [anon_sym_BSLASHacrfull] = ACTIONS(12177), + [anon_sym_BSLASHAcrfull] = ACTIONS(12177), + [anon_sym_BSLASHACRfull] = ACTIONS(12177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12177), + [anon_sym_BSLASHacs] = ACTIONS(12177), + [anon_sym_BSLASHAcs] = ACTIONS(12177), + [anon_sym_BSLASHacsp] = ACTIONS(12177), + [anon_sym_BSLASHAcsp] = ACTIONS(12177), + [anon_sym_BSLASHacl] = ACTIONS(12177), + [anon_sym_BSLASHAcl] = ACTIONS(12177), + [anon_sym_BSLASHaclp] = ACTIONS(12177), + [anon_sym_BSLASHAclp] = ACTIONS(12177), + [anon_sym_BSLASHacf] = ACTIONS(12177), + [anon_sym_BSLASHAcf] = ACTIONS(12177), + [anon_sym_BSLASHacfp] = ACTIONS(12177), + [anon_sym_BSLASHAcfp] = ACTIONS(12177), + [anon_sym_BSLASHac] = ACTIONS(12177), + [anon_sym_BSLASHAc] = ACTIONS(12177), + [anon_sym_BSLASHacp] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12177), + [anon_sym_BSLASHcolor] = ACTIONS(12177), + [anon_sym_BSLASHcolorbox] = ACTIONS(12177), + [anon_sym_BSLASHtextcolor] = ACTIONS(12177), + [anon_sym_BSLASHpagecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12177), + }, + [1903] = { + [sym_generic_command_name] = ACTIONS(12193), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12191), + [anon_sym_RBRACK] = ACTIONS(12191), + [anon_sym_LBRACE] = ACTIONS(12191), + [anon_sym_RBRACE] = ACTIONS(12191), + [anon_sym_LPAREN] = ACTIONS(12191), + [anon_sym_COMMA] = ACTIONS(12191), + [anon_sym_EQ] = ACTIONS(12191), + [sym_word] = ACTIONS(12191), + [sym_param] = ACTIONS(12191), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12191), + [anon_sym_DOLLAR] = ACTIONS(12193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12191), + [anon_sym_BSLASHbegin] = ACTIONS(12193), + [anon_sym_BSLASHcaption] = ACTIONS(12193), + [anon_sym_BSLASHcite] = ACTIONS(12193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCite] = ACTIONS(12193), + [anon_sym_BSLASHnocite] = ACTIONS(12193), + [anon_sym_BSLASHcitet] = ACTIONS(12193), + [anon_sym_BSLASHcitep] = ACTIONS(12193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteauthor] = ACTIONS(12193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitetitle] = ACTIONS(12193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteyear] = ACTIONS(12193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12191), + [anon_sym_BSLASHcitedate] = ACTIONS(12193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12191), + [anon_sym_BSLASHciteurl] = ACTIONS(12193), + [anon_sym_BSLASHfullcite] = ACTIONS(12193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12193), + [anon_sym_BSLASHcitealt] = ACTIONS(12193), + [anon_sym_BSLASHcitealp] = ACTIONS(12193), + [anon_sym_BSLASHcitetext] = ACTIONS(12193), + [anon_sym_BSLASHparencite] = ACTIONS(12193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHParencite] = ACTIONS(12193), + [anon_sym_BSLASHfootcite] = ACTIONS(12193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12193), + [anon_sym_BSLASHtextcite] = ACTIONS(12193), + [anon_sym_BSLASHTextcite] = ACTIONS(12193), + [anon_sym_BSLASHsmartcite] = ACTIONS(12193), + [anon_sym_BSLASHSmartcite] = ACTIONS(12193), + [anon_sym_BSLASHsupercite] = ACTIONS(12193), + [anon_sym_BSLASHautocite] = ACTIONS(12193), + [anon_sym_BSLASHAutocite] = ACTIONS(12193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12191), + [anon_sym_BSLASHvolcite] = ACTIONS(12193), + [anon_sym_BSLASHVolcite] = ACTIONS(12193), + [anon_sym_BSLASHpvolcite] = ACTIONS(12193), + [anon_sym_BSLASHPvolcite] = ACTIONS(12193), + [anon_sym_BSLASHfvolcite] = ACTIONS(12193), + [anon_sym_BSLASHftvolcite] = ACTIONS(12193), + [anon_sym_BSLASHsvolcite] = ACTIONS(12193), + [anon_sym_BSLASHSvolcite] = ACTIONS(12193), + [anon_sym_BSLASHtvolcite] = ACTIONS(12193), + [anon_sym_BSLASHTvolcite] = ACTIONS(12193), + [anon_sym_BSLASHavolcite] = ACTIONS(12193), + [anon_sym_BSLASHAvolcite] = ACTIONS(12193), + [anon_sym_BSLASHnotecite] = ACTIONS(12193), + [anon_sym_BSLASHpnotecite] = ACTIONS(12193), + [anon_sym_BSLASHPnotecite] = ACTIONS(12193), + [anon_sym_BSLASHfnotecite] = ACTIONS(12193), + [anon_sym_BSLASHusepackage] = ACTIONS(12193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12193), + [anon_sym_BSLASHinclude] = ACTIONS(12193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12193), + [anon_sym_BSLASHinput] = ACTIONS(12193), + [anon_sym_BSLASHsubfile] = ACTIONS(12193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12193), + [anon_sym_BSLASHbibliography] = ACTIONS(12193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12193), + [anon_sym_BSLASHincludesvg] = ACTIONS(12193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12193), + [anon_sym_BSLASHimport] = ACTIONS(12193), + [anon_sym_BSLASHsubimport] = ACTIONS(12193), + [anon_sym_BSLASHinputfrom] = ACTIONS(12193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12193), + [anon_sym_BSLASHincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12193), + [anon_sym_BSLASHlabel] = ACTIONS(12193), + [anon_sym_BSLASHref] = ACTIONS(12193), + [anon_sym_BSLASHvref] = ACTIONS(12193), + [anon_sym_BSLASHVref] = ACTIONS(12193), + [anon_sym_BSLASHautoref] = ACTIONS(12193), + [anon_sym_BSLASHpageref] = ACTIONS(12193), + [anon_sym_BSLASHcref] = ACTIONS(12193), + [anon_sym_BSLASHCref] = ACTIONS(12193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnameCref] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12193), + [anon_sym_BSLASHlabelcref] = ACTIONS(12193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12193), + [anon_sym_BSLASHeqref] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange] = ACTIONS(12193), + [anon_sym_BSLASHCrefrange] = ACTIONS(12193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewlabel] = ACTIONS(12193), + [anon_sym_BSLASHnewcommand] = ACTIONS(12193), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12191), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12193), + [anon_sym_BSLASHgls] = ACTIONS(12193), + [anon_sym_BSLASHGls] = ACTIONS(12193), + [anon_sym_BSLASHGLS] = ACTIONS(12193), + [anon_sym_BSLASHglspl] = ACTIONS(12193), + [anon_sym_BSLASHGlspl] = ACTIONS(12193), + [anon_sym_BSLASHGLSpl] = ACTIONS(12193), + [anon_sym_BSLASHglsdisp] = ACTIONS(12193), + [anon_sym_BSLASHglslink] = ACTIONS(12193), + [anon_sym_BSLASHglstext] = ACTIONS(12193), + [anon_sym_BSLASHGlstext] = ACTIONS(12193), + [anon_sym_BSLASHGLStext] = ACTIONS(12193), + [anon_sym_BSLASHglsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12193), + [anon_sym_BSLASHglsplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSplural] = ACTIONS(12193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12193), + [anon_sym_BSLASHglsname] = ACTIONS(12193), + [anon_sym_BSLASHGlsname] = ACTIONS(12193), + [anon_sym_BSLASHGLSname] = ACTIONS(12193), + [anon_sym_BSLASHglssymbol] = ACTIONS(12193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12193), + [anon_sym_BSLASHglsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12193), + [anon_sym_BSLASHglsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12193), + [anon_sym_BSLASHglsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12193), + [anon_sym_BSLASHglsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12193), + [anon_sym_BSLASHglsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12193), + [anon_sym_BSLASHnewacronym] = ACTIONS(12193), + [anon_sym_BSLASHacrshort] = ACTIONS(12193), + [anon_sym_BSLASHAcrshort] = ACTIONS(12193), + [anon_sym_BSLASHACRshort] = ACTIONS(12193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12193), + [anon_sym_BSLASHacrlong] = ACTIONS(12193), + [anon_sym_BSLASHAcrlong] = ACTIONS(12193), + [anon_sym_BSLASHACRlong] = ACTIONS(12193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12193), + [anon_sym_BSLASHacrfull] = ACTIONS(12193), + [anon_sym_BSLASHAcrfull] = ACTIONS(12193), + [anon_sym_BSLASHACRfull] = ACTIONS(12193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12193), + [anon_sym_BSLASHacs] = ACTIONS(12193), + [anon_sym_BSLASHAcs] = ACTIONS(12193), + [anon_sym_BSLASHacsp] = ACTIONS(12193), + [anon_sym_BSLASHAcsp] = ACTIONS(12193), + [anon_sym_BSLASHacl] = ACTIONS(12193), + [anon_sym_BSLASHAcl] = ACTIONS(12193), + [anon_sym_BSLASHaclp] = ACTIONS(12193), + [anon_sym_BSLASHAclp] = ACTIONS(12193), + [anon_sym_BSLASHacf] = ACTIONS(12193), + [anon_sym_BSLASHAcf] = ACTIONS(12193), + [anon_sym_BSLASHacfp] = ACTIONS(12193), + [anon_sym_BSLASHAcfp] = ACTIONS(12193), + [anon_sym_BSLASHac] = ACTIONS(12193), + [anon_sym_BSLASHAc] = ACTIONS(12193), + [anon_sym_BSLASHacp] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12193), + [anon_sym_BSLASHcolor] = ACTIONS(12193), + [anon_sym_BSLASHcolorbox] = ACTIONS(12193), + [anon_sym_BSLASHtextcolor] = ACTIONS(12193), + [anon_sym_BSLASHpagecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12193), + }, + [1904] = { + [sym_generic_command_name] = ACTIONS(12173), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12171), + [anon_sym_RBRACK] = ACTIONS(12171), + [anon_sym_LBRACE] = ACTIONS(12171), + [anon_sym_RBRACE] = ACTIONS(12171), + [anon_sym_LPAREN] = ACTIONS(12171), + [anon_sym_COMMA] = ACTIONS(12171), + [anon_sym_EQ] = ACTIONS(12171), + [sym_word] = ACTIONS(12171), + [sym_param] = ACTIONS(12171), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12171), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12171), + [anon_sym_DOLLAR] = ACTIONS(12173), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12171), + [anon_sym_BSLASHbegin] = ACTIONS(12173), + [anon_sym_BSLASHcaption] = ACTIONS(12173), + [anon_sym_BSLASHcite] = ACTIONS(12173), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCite] = ACTIONS(12173), + [anon_sym_BSLASHnocite] = ACTIONS(12173), + [anon_sym_BSLASHcitet] = ACTIONS(12173), + [anon_sym_BSLASHcitep] = ACTIONS(12173), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteauthor] = ACTIONS(12173), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12173), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitetitle] = ACTIONS(12173), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteyear] = ACTIONS(12173), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12171), + [anon_sym_BSLASHcitedate] = ACTIONS(12173), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12171), + [anon_sym_BSLASHciteurl] = ACTIONS(12173), + [anon_sym_BSLASHfullcite] = ACTIONS(12173), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12173), + [anon_sym_BSLASHcitealt] = ACTIONS(12173), + [anon_sym_BSLASHcitealp] = ACTIONS(12173), + [anon_sym_BSLASHcitetext] = ACTIONS(12173), + [anon_sym_BSLASHparencite] = ACTIONS(12173), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHParencite] = ACTIONS(12173), + [anon_sym_BSLASHfootcite] = ACTIONS(12173), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12173), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12173), + [anon_sym_BSLASHtextcite] = ACTIONS(12173), + [anon_sym_BSLASHTextcite] = ACTIONS(12173), + [anon_sym_BSLASHsmartcite] = ACTIONS(12173), + [anon_sym_BSLASHSmartcite] = ACTIONS(12173), + [anon_sym_BSLASHsupercite] = ACTIONS(12173), + [anon_sym_BSLASHautocite] = ACTIONS(12173), + [anon_sym_BSLASHAutocite] = ACTIONS(12173), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12171), + [anon_sym_BSLASHvolcite] = ACTIONS(12173), + [anon_sym_BSLASHVolcite] = ACTIONS(12173), + [anon_sym_BSLASHpvolcite] = ACTIONS(12173), + [anon_sym_BSLASHPvolcite] = ACTIONS(12173), + [anon_sym_BSLASHfvolcite] = ACTIONS(12173), + [anon_sym_BSLASHftvolcite] = ACTIONS(12173), + [anon_sym_BSLASHsvolcite] = ACTIONS(12173), + [anon_sym_BSLASHSvolcite] = ACTIONS(12173), + [anon_sym_BSLASHtvolcite] = ACTIONS(12173), + [anon_sym_BSLASHTvolcite] = ACTIONS(12173), + [anon_sym_BSLASHavolcite] = ACTIONS(12173), + [anon_sym_BSLASHAvolcite] = ACTIONS(12173), + [anon_sym_BSLASHnotecite] = ACTIONS(12173), + [anon_sym_BSLASHpnotecite] = ACTIONS(12173), + [anon_sym_BSLASHPnotecite] = ACTIONS(12173), + [anon_sym_BSLASHfnotecite] = ACTIONS(12173), + [anon_sym_BSLASHusepackage] = ACTIONS(12173), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12173), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12173), + [anon_sym_BSLASHinclude] = ACTIONS(12173), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12173), + [anon_sym_BSLASHinput] = ACTIONS(12173), + [anon_sym_BSLASHsubfile] = ACTIONS(12173), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12173), + [anon_sym_BSLASHbibliography] = ACTIONS(12173), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12173), + [anon_sym_BSLASHincludesvg] = ACTIONS(12173), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12173), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12173), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12173), + [anon_sym_BSLASHimport] = ACTIONS(12173), + [anon_sym_BSLASHsubimport] = ACTIONS(12173), + [anon_sym_BSLASHinputfrom] = ACTIONS(12173), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12173), + [anon_sym_BSLASHincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12173), + [anon_sym_BSLASHlabel] = ACTIONS(12173), + [anon_sym_BSLASHref] = ACTIONS(12173), + [anon_sym_BSLASHvref] = ACTIONS(12173), + [anon_sym_BSLASHVref] = ACTIONS(12173), + [anon_sym_BSLASHautoref] = ACTIONS(12173), + [anon_sym_BSLASHpageref] = ACTIONS(12173), + [anon_sym_BSLASHcref] = ACTIONS(12173), + [anon_sym_BSLASHCref] = ACTIONS(12173), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnameCref] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12173), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12173), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12173), + [anon_sym_BSLASHlabelcref] = ACTIONS(12173), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12173), + [anon_sym_BSLASHeqref] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange] = ACTIONS(12173), + [anon_sym_BSLASHCrefrange] = ACTIONS(12173), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewlabel] = ACTIONS(12173), + [anon_sym_BSLASHnewcommand] = ACTIONS(12173), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12173), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12171), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12173), + [anon_sym_BSLASHgls] = ACTIONS(12173), + [anon_sym_BSLASHGls] = ACTIONS(12173), + [anon_sym_BSLASHGLS] = ACTIONS(12173), + [anon_sym_BSLASHglspl] = ACTIONS(12173), + [anon_sym_BSLASHGlspl] = ACTIONS(12173), + [anon_sym_BSLASHGLSpl] = ACTIONS(12173), + [anon_sym_BSLASHglsdisp] = ACTIONS(12173), + [anon_sym_BSLASHglslink] = ACTIONS(12173), + [anon_sym_BSLASHglstext] = ACTIONS(12173), + [anon_sym_BSLASHGlstext] = ACTIONS(12173), + [anon_sym_BSLASHGLStext] = ACTIONS(12173), + [anon_sym_BSLASHglsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12173), + [anon_sym_BSLASHglsplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSplural] = ACTIONS(12173), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12173), + [anon_sym_BSLASHglsname] = ACTIONS(12173), + [anon_sym_BSLASHGlsname] = ACTIONS(12173), + [anon_sym_BSLASHGLSname] = ACTIONS(12173), + [anon_sym_BSLASHglssymbol] = ACTIONS(12173), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12173), + [anon_sym_BSLASHglsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12173), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12173), + [anon_sym_BSLASHglsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12173), + [anon_sym_BSLASHglsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12173), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12173), + [anon_sym_BSLASHglsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12173), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12173), + [anon_sym_BSLASHglsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12173), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12173), + [anon_sym_BSLASHnewacronym] = ACTIONS(12173), + [anon_sym_BSLASHacrshort] = ACTIONS(12173), + [anon_sym_BSLASHAcrshort] = ACTIONS(12173), + [anon_sym_BSLASHACRshort] = ACTIONS(12173), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12173), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12173), + [anon_sym_BSLASHacrlong] = ACTIONS(12173), + [anon_sym_BSLASHAcrlong] = ACTIONS(12173), + [anon_sym_BSLASHACRlong] = ACTIONS(12173), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12173), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12173), + [anon_sym_BSLASHacrfull] = ACTIONS(12173), + [anon_sym_BSLASHAcrfull] = ACTIONS(12173), + [anon_sym_BSLASHACRfull] = ACTIONS(12173), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12173), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12173), + [anon_sym_BSLASHacs] = ACTIONS(12173), + [anon_sym_BSLASHAcs] = ACTIONS(12173), + [anon_sym_BSLASHacsp] = ACTIONS(12173), + [anon_sym_BSLASHAcsp] = ACTIONS(12173), + [anon_sym_BSLASHacl] = ACTIONS(12173), + [anon_sym_BSLASHAcl] = ACTIONS(12173), + [anon_sym_BSLASHaclp] = ACTIONS(12173), + [anon_sym_BSLASHAclp] = ACTIONS(12173), + [anon_sym_BSLASHacf] = ACTIONS(12173), + [anon_sym_BSLASHAcf] = ACTIONS(12173), + [anon_sym_BSLASHacfp] = ACTIONS(12173), + [anon_sym_BSLASHAcfp] = ACTIONS(12173), + [anon_sym_BSLASHac] = ACTIONS(12173), + [anon_sym_BSLASHAc] = ACTIONS(12173), + [anon_sym_BSLASHacp] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12173), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12173), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12173), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12173), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12173), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12173), + [anon_sym_BSLASHcolor] = ACTIONS(12173), + [anon_sym_BSLASHcolorbox] = ACTIONS(12173), + [anon_sym_BSLASHtextcolor] = ACTIONS(12173), + [anon_sym_BSLASHpagecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12173), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12173), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12173), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12173), + }, + [1905] = { + [sym_generic_command_name] = ACTIONS(12116), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12114), + [anon_sym_RBRACK] = ACTIONS(12114), + [anon_sym_LBRACE] = ACTIONS(12114), + [anon_sym_RBRACE] = ACTIONS(12114), + [anon_sym_LPAREN] = ACTIONS(12114), + [anon_sym_COMMA] = ACTIONS(12114), + [anon_sym_EQ] = ACTIONS(12114), + [sym_word] = ACTIONS(12114), + [sym_param] = ACTIONS(12114), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12114), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12114), + [anon_sym_DOLLAR] = ACTIONS(12116), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12114), + [anon_sym_BSLASHbegin] = ACTIONS(12116), + [anon_sym_BSLASHcaption] = ACTIONS(12116), + [anon_sym_BSLASHcite] = ACTIONS(12116), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCite] = ACTIONS(12116), + [anon_sym_BSLASHnocite] = ACTIONS(12116), + [anon_sym_BSLASHcitet] = ACTIONS(12116), + [anon_sym_BSLASHcitep] = ACTIONS(12116), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteauthor] = ACTIONS(12116), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12116), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitetitle] = ACTIONS(12116), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteyear] = ACTIONS(12116), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12114), + [anon_sym_BSLASHcitedate] = ACTIONS(12116), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12114), + [anon_sym_BSLASHciteurl] = ACTIONS(12116), + [anon_sym_BSLASHfullcite] = ACTIONS(12116), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12116), + [anon_sym_BSLASHcitealt] = ACTIONS(12116), + [anon_sym_BSLASHcitealp] = ACTIONS(12116), + [anon_sym_BSLASHcitetext] = ACTIONS(12116), + [anon_sym_BSLASHparencite] = ACTIONS(12116), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHParencite] = ACTIONS(12116), + [anon_sym_BSLASHfootcite] = ACTIONS(12116), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12116), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12116), + [anon_sym_BSLASHtextcite] = ACTIONS(12116), + [anon_sym_BSLASHTextcite] = ACTIONS(12116), + [anon_sym_BSLASHsmartcite] = ACTIONS(12116), + [anon_sym_BSLASHSmartcite] = ACTIONS(12116), + [anon_sym_BSLASHsupercite] = ACTIONS(12116), + [anon_sym_BSLASHautocite] = ACTIONS(12116), + [anon_sym_BSLASHAutocite] = ACTIONS(12116), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12114), + [anon_sym_BSLASHvolcite] = ACTIONS(12116), + [anon_sym_BSLASHVolcite] = ACTIONS(12116), + [anon_sym_BSLASHpvolcite] = ACTIONS(12116), + [anon_sym_BSLASHPvolcite] = ACTIONS(12116), + [anon_sym_BSLASHfvolcite] = ACTIONS(12116), + [anon_sym_BSLASHftvolcite] = ACTIONS(12116), + [anon_sym_BSLASHsvolcite] = ACTIONS(12116), + [anon_sym_BSLASHSvolcite] = ACTIONS(12116), + [anon_sym_BSLASHtvolcite] = ACTIONS(12116), + [anon_sym_BSLASHTvolcite] = ACTIONS(12116), + [anon_sym_BSLASHavolcite] = ACTIONS(12116), + [anon_sym_BSLASHAvolcite] = ACTIONS(12116), + [anon_sym_BSLASHnotecite] = ACTIONS(12116), + [anon_sym_BSLASHpnotecite] = ACTIONS(12116), + [anon_sym_BSLASHPnotecite] = ACTIONS(12116), + [anon_sym_BSLASHfnotecite] = ACTIONS(12116), + [anon_sym_BSLASHusepackage] = ACTIONS(12116), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12116), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12116), + [anon_sym_BSLASHinclude] = ACTIONS(12116), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12116), + [anon_sym_BSLASHinput] = ACTIONS(12116), + [anon_sym_BSLASHsubfile] = ACTIONS(12116), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12116), + [anon_sym_BSLASHbibliography] = ACTIONS(12116), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12116), + [anon_sym_BSLASHincludesvg] = ACTIONS(12116), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12116), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12116), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12116), + [anon_sym_BSLASHimport] = ACTIONS(12116), + [anon_sym_BSLASHsubimport] = ACTIONS(12116), + [anon_sym_BSLASHinputfrom] = ACTIONS(12116), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12116), + [anon_sym_BSLASHincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12116), + [anon_sym_BSLASHlabel] = ACTIONS(12116), + [anon_sym_BSLASHref] = ACTIONS(12116), + [anon_sym_BSLASHvref] = ACTIONS(12116), + [anon_sym_BSLASHVref] = ACTIONS(12116), + [anon_sym_BSLASHautoref] = ACTIONS(12116), + [anon_sym_BSLASHpageref] = ACTIONS(12116), + [anon_sym_BSLASHcref] = ACTIONS(12116), + [anon_sym_BSLASHCref] = ACTIONS(12116), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnameCref] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12116), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12116), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12116), + [anon_sym_BSLASHlabelcref] = ACTIONS(12116), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12116), + [anon_sym_BSLASHeqref] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange] = ACTIONS(12116), + [anon_sym_BSLASHCrefrange] = ACTIONS(12116), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewlabel] = ACTIONS(12116), + [anon_sym_BSLASHnewcommand] = ACTIONS(12116), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12116), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12114), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12116), + [anon_sym_BSLASHgls] = ACTIONS(12116), + [anon_sym_BSLASHGls] = ACTIONS(12116), + [anon_sym_BSLASHGLS] = ACTIONS(12116), + [anon_sym_BSLASHglspl] = ACTIONS(12116), + [anon_sym_BSLASHGlspl] = ACTIONS(12116), + [anon_sym_BSLASHGLSpl] = ACTIONS(12116), + [anon_sym_BSLASHglsdisp] = ACTIONS(12116), + [anon_sym_BSLASHglslink] = ACTIONS(12116), + [anon_sym_BSLASHglstext] = ACTIONS(12116), + [anon_sym_BSLASHGlstext] = ACTIONS(12116), + [anon_sym_BSLASHGLStext] = ACTIONS(12116), + [anon_sym_BSLASHglsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12116), + [anon_sym_BSLASHglsplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSplural] = ACTIONS(12116), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12116), + [anon_sym_BSLASHglsname] = ACTIONS(12116), + [anon_sym_BSLASHGlsname] = ACTIONS(12116), + [anon_sym_BSLASHGLSname] = ACTIONS(12116), + [anon_sym_BSLASHglssymbol] = ACTIONS(12116), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12116), + [anon_sym_BSLASHglsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12116), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12116), + [anon_sym_BSLASHglsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12116), + [anon_sym_BSLASHglsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12116), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12116), + [anon_sym_BSLASHglsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12116), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12116), + [anon_sym_BSLASHglsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12116), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12116), + [anon_sym_BSLASHnewacronym] = ACTIONS(12116), + [anon_sym_BSLASHacrshort] = ACTIONS(12116), + [anon_sym_BSLASHAcrshort] = ACTIONS(12116), + [anon_sym_BSLASHACRshort] = ACTIONS(12116), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12116), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12116), + [anon_sym_BSLASHacrlong] = ACTIONS(12116), + [anon_sym_BSLASHAcrlong] = ACTIONS(12116), + [anon_sym_BSLASHACRlong] = ACTIONS(12116), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12116), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12116), + [anon_sym_BSLASHacrfull] = ACTIONS(12116), + [anon_sym_BSLASHAcrfull] = ACTIONS(12116), + [anon_sym_BSLASHACRfull] = ACTIONS(12116), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12116), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12116), + [anon_sym_BSLASHacs] = ACTIONS(12116), + [anon_sym_BSLASHAcs] = ACTIONS(12116), + [anon_sym_BSLASHacsp] = ACTIONS(12116), + [anon_sym_BSLASHAcsp] = ACTIONS(12116), + [anon_sym_BSLASHacl] = ACTIONS(12116), + [anon_sym_BSLASHAcl] = ACTIONS(12116), + [anon_sym_BSLASHaclp] = ACTIONS(12116), + [anon_sym_BSLASHAclp] = ACTIONS(12116), + [anon_sym_BSLASHacf] = ACTIONS(12116), + [anon_sym_BSLASHAcf] = ACTIONS(12116), + [anon_sym_BSLASHacfp] = ACTIONS(12116), + [anon_sym_BSLASHAcfp] = ACTIONS(12116), + [anon_sym_BSLASHac] = ACTIONS(12116), + [anon_sym_BSLASHAc] = ACTIONS(12116), + [anon_sym_BSLASHacp] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12116), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12116), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12116), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12116), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12116), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12116), + [anon_sym_BSLASHcolor] = ACTIONS(12116), + [anon_sym_BSLASHcolorbox] = ACTIONS(12116), + [anon_sym_BSLASHtextcolor] = ACTIONS(12116), + [anon_sym_BSLASHpagecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12116), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12116), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12116), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12116), + }, + [1906] = { + [sym_generic_command_name] = ACTIONS(117), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_RBRACK] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(115), + [anon_sym_RBRACE] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(115), + [anon_sym_COMMA] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(115), + [sym_word] = ACTIONS(115), + [sym_param] = ACTIONS(115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(115), + [anon_sym_BSLASH_LBRACK] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_BSLASH_LPAREN] = ACTIONS(115), + [anon_sym_BSLASHbegin] = ACTIONS(117), + [anon_sym_BSLASHcaption] = ACTIONS(117), + [anon_sym_BSLASHcite] = ACTIONS(117), + [anon_sym_BSLASHcite_STAR] = ACTIONS(115), + [anon_sym_BSLASHCite] = ACTIONS(117), + [anon_sym_BSLASHnocite] = ACTIONS(117), + [anon_sym_BSLASHcitet] = ACTIONS(117), + [anon_sym_BSLASHcitep] = ACTIONS(117), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteauthor] = ACTIONS(117), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHCiteauthor] = ACTIONS(117), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitetitle] = ACTIONS(117), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteyear] = ACTIONS(117), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(115), + [anon_sym_BSLASHcitedate] = ACTIONS(117), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(115), + [anon_sym_BSLASHciteurl] = ACTIONS(117), + [anon_sym_BSLASHfullcite] = ACTIONS(117), + [anon_sym_BSLASHciteyearpar] = ACTIONS(117), + [anon_sym_BSLASHcitealt] = ACTIONS(117), + [anon_sym_BSLASHcitealp] = ACTIONS(117), + [anon_sym_BSLASHcitetext] = ACTIONS(117), + [anon_sym_BSLASHparencite] = ACTIONS(117), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(115), + [anon_sym_BSLASHParencite] = ACTIONS(117), + [anon_sym_BSLASHfootcite] = ACTIONS(117), + [anon_sym_BSLASHfootfullcite] = ACTIONS(117), + [anon_sym_BSLASHfootcitetext] = ACTIONS(117), + [anon_sym_BSLASHtextcite] = ACTIONS(117), + [anon_sym_BSLASHTextcite] = ACTIONS(117), + [anon_sym_BSLASHsmartcite] = ACTIONS(117), + [anon_sym_BSLASHSmartcite] = ACTIONS(117), + [anon_sym_BSLASHsupercite] = ACTIONS(117), + [anon_sym_BSLASHautocite] = ACTIONS(117), + [anon_sym_BSLASHAutocite] = ACTIONS(117), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(115), + [anon_sym_BSLASHvolcite] = ACTIONS(117), + [anon_sym_BSLASHVolcite] = ACTIONS(117), + [anon_sym_BSLASHpvolcite] = ACTIONS(117), + [anon_sym_BSLASHPvolcite] = ACTIONS(117), + [anon_sym_BSLASHfvolcite] = ACTIONS(117), + [anon_sym_BSLASHftvolcite] = ACTIONS(117), + [anon_sym_BSLASHsvolcite] = ACTIONS(117), + [anon_sym_BSLASHSvolcite] = ACTIONS(117), + [anon_sym_BSLASHtvolcite] = ACTIONS(117), + [anon_sym_BSLASHTvolcite] = ACTIONS(117), + [anon_sym_BSLASHavolcite] = ACTIONS(117), + [anon_sym_BSLASHAvolcite] = ACTIONS(117), + [anon_sym_BSLASHnotecite] = ACTIONS(117), + [anon_sym_BSLASHpnotecite] = ACTIONS(117), + [anon_sym_BSLASHPnotecite] = ACTIONS(117), + [anon_sym_BSLASHfnotecite] = ACTIONS(117), + [anon_sym_BSLASHusepackage] = ACTIONS(117), + [anon_sym_BSLASHRequirePackage] = ACTIONS(117), + [anon_sym_BSLASHdocumentclass] = ACTIONS(117), + [anon_sym_BSLASHinclude] = ACTIONS(117), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(117), + [anon_sym_BSLASHinput] = ACTIONS(117), + [anon_sym_BSLASHsubfile] = ACTIONS(117), + [anon_sym_BSLASHaddbibresource] = ACTIONS(117), + [anon_sym_BSLASHbibliography] = ACTIONS(117), + [anon_sym_BSLASHincludegraphics] = ACTIONS(117), + [anon_sym_BSLASHincludesvg] = ACTIONS(117), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(117), + [anon_sym_BSLASHverbatiminput] = ACTIONS(117), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(117), + [anon_sym_BSLASHimport] = ACTIONS(117), + [anon_sym_BSLASHsubimport] = ACTIONS(117), + [anon_sym_BSLASHinputfrom] = ACTIONS(117), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(117), + [anon_sym_BSLASHincludefrom] = ACTIONS(117), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(117), + [anon_sym_BSLASHlabel] = ACTIONS(117), + [anon_sym_BSLASHref] = ACTIONS(117), + [anon_sym_BSLASHvref] = ACTIONS(117), + [anon_sym_BSLASHVref] = ACTIONS(117), + [anon_sym_BSLASHautoref] = ACTIONS(117), + [anon_sym_BSLASHpageref] = ACTIONS(117), + [anon_sym_BSLASHcref] = ACTIONS(117), + [anon_sym_BSLASHCref] = ACTIONS(117), + [anon_sym_BSLASHcref_STAR] = ACTIONS(115), + [anon_sym_BSLASHCref_STAR] = ACTIONS(115), + [anon_sym_BSLASHnamecref] = ACTIONS(117), + [anon_sym_BSLASHnameCref] = ACTIONS(117), + [anon_sym_BSLASHlcnamecref] = ACTIONS(117), + [anon_sym_BSLASHnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHnameCrefs] = ACTIONS(117), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(117), + [anon_sym_BSLASHlabelcref] = ACTIONS(117), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(117), + [anon_sym_BSLASHeqref] = ACTIONS(117), + [anon_sym_BSLASHcrefrange] = ACTIONS(117), + [anon_sym_BSLASHCrefrange] = ACTIONS(117), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewlabel] = ACTIONS(117), + [anon_sym_BSLASHnewcommand] = ACTIONS(117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(117), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(117), + [anon_sym_BSLASHgls] = ACTIONS(117), + [anon_sym_BSLASHGls] = ACTIONS(117), + [anon_sym_BSLASHGLS] = ACTIONS(117), + [anon_sym_BSLASHglspl] = ACTIONS(117), + [anon_sym_BSLASHGlspl] = ACTIONS(117), + [anon_sym_BSLASHGLSpl] = ACTIONS(117), + [anon_sym_BSLASHglsdisp] = ACTIONS(117), + [anon_sym_BSLASHglslink] = ACTIONS(117), + [anon_sym_BSLASHglstext] = ACTIONS(117), + [anon_sym_BSLASHGlstext] = ACTIONS(117), + [anon_sym_BSLASHGLStext] = ACTIONS(117), + [anon_sym_BSLASHglsfirst] = ACTIONS(117), + [anon_sym_BSLASHGlsfirst] = ACTIONS(117), + [anon_sym_BSLASHGLSfirst] = ACTIONS(117), + [anon_sym_BSLASHglsplural] = ACTIONS(117), + [anon_sym_BSLASHGlsplural] = ACTIONS(117), + [anon_sym_BSLASHGLSplural] = ACTIONS(117), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(117), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(117), + [anon_sym_BSLASHglsname] = ACTIONS(117), + [anon_sym_BSLASHGlsname] = ACTIONS(117), + [anon_sym_BSLASHGLSname] = ACTIONS(117), + [anon_sym_BSLASHglssymbol] = ACTIONS(117), + [anon_sym_BSLASHGlssymbol] = ACTIONS(117), + [anon_sym_BSLASHglsdesc] = ACTIONS(117), + [anon_sym_BSLASHGlsdesc] = ACTIONS(117), + [anon_sym_BSLASHGLSdesc] = ACTIONS(117), + [anon_sym_BSLASHglsuseri] = ACTIONS(117), + [anon_sym_BSLASHGlsuseri] = ACTIONS(117), + [anon_sym_BSLASHGLSuseri] = ACTIONS(117), + [anon_sym_BSLASHglsuserii] = ACTIONS(117), + [anon_sym_BSLASHGlsuserii] = ACTIONS(117), + [anon_sym_BSLASHGLSuserii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(117), + [anon_sym_BSLASHglsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(117), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(117), + [anon_sym_BSLASHglsuserv] = ACTIONS(117), + [anon_sym_BSLASHGlsuserv] = ACTIONS(117), + [anon_sym_BSLASHGLSuserv] = ACTIONS(117), + [anon_sym_BSLASHglsuservi] = ACTIONS(117), + [anon_sym_BSLASHGlsuservi] = ACTIONS(117), + [anon_sym_BSLASHGLSuservi] = ACTIONS(117), + [anon_sym_BSLASHnewacronym] = ACTIONS(117), + [anon_sym_BSLASHacrshort] = ACTIONS(117), + [anon_sym_BSLASHAcrshort] = ACTIONS(117), + [anon_sym_BSLASHACRshort] = ACTIONS(117), + [anon_sym_BSLASHacrshortpl] = ACTIONS(117), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(117), + [anon_sym_BSLASHACRshortpl] = ACTIONS(117), + [anon_sym_BSLASHacrlong] = ACTIONS(117), + [anon_sym_BSLASHAcrlong] = ACTIONS(117), + [anon_sym_BSLASHACRlong] = ACTIONS(117), + [anon_sym_BSLASHacrlongpl] = ACTIONS(117), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(117), + [anon_sym_BSLASHACRlongpl] = ACTIONS(117), + [anon_sym_BSLASHacrfull] = ACTIONS(117), + [anon_sym_BSLASHAcrfull] = ACTIONS(117), + [anon_sym_BSLASHACRfull] = ACTIONS(117), + [anon_sym_BSLASHacrfullpl] = ACTIONS(117), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(117), + [anon_sym_BSLASHACRfullpl] = ACTIONS(117), + [anon_sym_BSLASHacs] = ACTIONS(117), + [anon_sym_BSLASHAcs] = ACTIONS(117), + [anon_sym_BSLASHacsp] = ACTIONS(117), + [anon_sym_BSLASHAcsp] = ACTIONS(117), + [anon_sym_BSLASHacl] = ACTIONS(117), + [anon_sym_BSLASHAcl] = ACTIONS(117), + [anon_sym_BSLASHaclp] = ACTIONS(117), + [anon_sym_BSLASHAclp] = ACTIONS(117), + [anon_sym_BSLASHacf] = ACTIONS(117), + [anon_sym_BSLASHAcf] = ACTIONS(117), + [anon_sym_BSLASHacfp] = ACTIONS(117), + [anon_sym_BSLASHAcfp] = ACTIONS(117), + [anon_sym_BSLASHac] = ACTIONS(117), + [anon_sym_BSLASHAc] = ACTIONS(117), + [anon_sym_BSLASHacp] = ACTIONS(117), + [anon_sym_BSLASHglsentrylong] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(117), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryshort] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(117), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(117), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(117), + [anon_sym_BSLASHnewtheorem] = ACTIONS(117), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(117), + [anon_sym_BSLASHcolor] = ACTIONS(117), + [anon_sym_BSLASHcolorbox] = ACTIONS(117), + [anon_sym_BSLASHtextcolor] = ACTIONS(117), + [anon_sym_BSLASHpagecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolor] = ACTIONS(117), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(117), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(117), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(117), + }, + [1907] = { + [sym_generic_command_name] = ACTIONS(12160), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12158), + [anon_sym_RBRACK] = ACTIONS(12158), + [anon_sym_LBRACE] = ACTIONS(12158), + [anon_sym_RBRACE] = ACTIONS(12158), + [anon_sym_LPAREN] = ACTIONS(12158), + [anon_sym_COMMA] = ACTIONS(12158), + [anon_sym_EQ] = ACTIONS(12158), + [sym_word] = ACTIONS(12158), + [sym_param] = ACTIONS(12158), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12158), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12158), + [anon_sym_DOLLAR] = ACTIONS(12160), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12158), + [anon_sym_BSLASHbegin] = ACTIONS(12160), + [anon_sym_BSLASHcaption] = ACTIONS(12160), + [anon_sym_BSLASHcite] = ACTIONS(12160), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCite] = ACTIONS(12160), + [anon_sym_BSLASHnocite] = ACTIONS(12160), + [anon_sym_BSLASHcitet] = ACTIONS(12160), + [anon_sym_BSLASHcitep] = ACTIONS(12160), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteauthor] = ACTIONS(12160), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12160), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitetitle] = ACTIONS(12160), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteyear] = ACTIONS(12160), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12158), + [anon_sym_BSLASHcitedate] = ACTIONS(12160), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12158), + [anon_sym_BSLASHciteurl] = ACTIONS(12160), + [anon_sym_BSLASHfullcite] = ACTIONS(12160), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12160), + [anon_sym_BSLASHcitealt] = ACTIONS(12160), + [anon_sym_BSLASHcitealp] = ACTIONS(12160), + [anon_sym_BSLASHcitetext] = ACTIONS(12160), + [anon_sym_BSLASHparencite] = ACTIONS(12160), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHParencite] = ACTIONS(12160), + [anon_sym_BSLASHfootcite] = ACTIONS(12160), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12160), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12160), + [anon_sym_BSLASHtextcite] = ACTIONS(12160), + [anon_sym_BSLASHTextcite] = ACTIONS(12160), + [anon_sym_BSLASHsmartcite] = ACTIONS(12160), + [anon_sym_BSLASHSmartcite] = ACTIONS(12160), + [anon_sym_BSLASHsupercite] = ACTIONS(12160), + [anon_sym_BSLASHautocite] = ACTIONS(12160), + [anon_sym_BSLASHAutocite] = ACTIONS(12160), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12158), + [anon_sym_BSLASHvolcite] = ACTIONS(12160), + [anon_sym_BSLASHVolcite] = ACTIONS(12160), + [anon_sym_BSLASHpvolcite] = ACTIONS(12160), + [anon_sym_BSLASHPvolcite] = ACTIONS(12160), + [anon_sym_BSLASHfvolcite] = ACTIONS(12160), + [anon_sym_BSLASHftvolcite] = ACTIONS(12160), + [anon_sym_BSLASHsvolcite] = ACTIONS(12160), + [anon_sym_BSLASHSvolcite] = ACTIONS(12160), + [anon_sym_BSLASHtvolcite] = ACTIONS(12160), + [anon_sym_BSLASHTvolcite] = ACTIONS(12160), + [anon_sym_BSLASHavolcite] = ACTIONS(12160), + [anon_sym_BSLASHAvolcite] = ACTIONS(12160), + [anon_sym_BSLASHnotecite] = ACTIONS(12160), + [anon_sym_BSLASHpnotecite] = ACTIONS(12160), + [anon_sym_BSLASHPnotecite] = ACTIONS(12160), + [anon_sym_BSLASHfnotecite] = ACTIONS(12160), + [anon_sym_BSLASHusepackage] = ACTIONS(12160), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12160), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12160), + [anon_sym_BSLASHinclude] = ACTIONS(12160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12160), + [anon_sym_BSLASHinput] = ACTIONS(12160), + [anon_sym_BSLASHsubfile] = ACTIONS(12160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12160), + [anon_sym_BSLASHbibliography] = ACTIONS(12160), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12160), + [anon_sym_BSLASHincludesvg] = ACTIONS(12160), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12160), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12160), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12160), + [anon_sym_BSLASHimport] = ACTIONS(12160), + [anon_sym_BSLASHsubimport] = ACTIONS(12160), + [anon_sym_BSLASHinputfrom] = ACTIONS(12160), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12160), + [anon_sym_BSLASHincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12160), + [anon_sym_BSLASHlabel] = ACTIONS(12160), + [anon_sym_BSLASHref] = ACTIONS(12160), + [anon_sym_BSLASHvref] = ACTIONS(12160), + [anon_sym_BSLASHVref] = ACTIONS(12160), + [anon_sym_BSLASHautoref] = ACTIONS(12160), + [anon_sym_BSLASHpageref] = ACTIONS(12160), + [anon_sym_BSLASHcref] = ACTIONS(12160), + [anon_sym_BSLASHCref] = ACTIONS(12160), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnameCref] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12160), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12160), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12160), + [anon_sym_BSLASHlabelcref] = ACTIONS(12160), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12160), + [anon_sym_BSLASHeqref] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange] = ACTIONS(12160), + [anon_sym_BSLASHCrefrange] = ACTIONS(12160), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewlabel] = ACTIONS(12160), + [anon_sym_BSLASHnewcommand] = ACTIONS(12160), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12160), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12158), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12160), + [anon_sym_BSLASHgls] = ACTIONS(12160), + [anon_sym_BSLASHGls] = ACTIONS(12160), + [anon_sym_BSLASHGLS] = ACTIONS(12160), + [anon_sym_BSLASHglspl] = ACTIONS(12160), + [anon_sym_BSLASHGlspl] = ACTIONS(12160), + [anon_sym_BSLASHGLSpl] = ACTIONS(12160), + [anon_sym_BSLASHglsdisp] = ACTIONS(12160), + [anon_sym_BSLASHglslink] = ACTIONS(12160), + [anon_sym_BSLASHglstext] = ACTIONS(12160), + [anon_sym_BSLASHGlstext] = ACTIONS(12160), + [anon_sym_BSLASHGLStext] = ACTIONS(12160), + [anon_sym_BSLASHglsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12160), + [anon_sym_BSLASHglsplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSplural] = ACTIONS(12160), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12160), + [anon_sym_BSLASHglsname] = ACTIONS(12160), + [anon_sym_BSLASHGlsname] = ACTIONS(12160), + [anon_sym_BSLASHGLSname] = ACTIONS(12160), + [anon_sym_BSLASHglssymbol] = ACTIONS(12160), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12160), + [anon_sym_BSLASHglsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12160), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12160), + [anon_sym_BSLASHglsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12160), + [anon_sym_BSLASHglsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12160), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12160), + [anon_sym_BSLASHglsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12160), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12160), + [anon_sym_BSLASHglsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12160), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12160), + [anon_sym_BSLASHnewacronym] = ACTIONS(12160), + [anon_sym_BSLASHacrshort] = ACTIONS(12160), + [anon_sym_BSLASHAcrshort] = ACTIONS(12160), + [anon_sym_BSLASHACRshort] = ACTIONS(12160), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12160), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12160), + [anon_sym_BSLASHacrlong] = ACTIONS(12160), + [anon_sym_BSLASHAcrlong] = ACTIONS(12160), + [anon_sym_BSLASHACRlong] = ACTIONS(12160), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12160), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12160), + [anon_sym_BSLASHacrfull] = ACTIONS(12160), + [anon_sym_BSLASHAcrfull] = ACTIONS(12160), + [anon_sym_BSLASHACRfull] = ACTIONS(12160), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12160), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12160), + [anon_sym_BSLASHacs] = ACTIONS(12160), + [anon_sym_BSLASHAcs] = ACTIONS(12160), + [anon_sym_BSLASHacsp] = ACTIONS(12160), + [anon_sym_BSLASHAcsp] = ACTIONS(12160), + [anon_sym_BSLASHacl] = ACTIONS(12160), + [anon_sym_BSLASHAcl] = ACTIONS(12160), + [anon_sym_BSLASHaclp] = ACTIONS(12160), + [anon_sym_BSLASHAclp] = ACTIONS(12160), + [anon_sym_BSLASHacf] = ACTIONS(12160), + [anon_sym_BSLASHAcf] = ACTIONS(12160), + [anon_sym_BSLASHacfp] = ACTIONS(12160), + [anon_sym_BSLASHAcfp] = ACTIONS(12160), + [anon_sym_BSLASHac] = ACTIONS(12160), + [anon_sym_BSLASHAc] = ACTIONS(12160), + [anon_sym_BSLASHacp] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12160), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12160), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12160), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12160), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12160), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12160), + [anon_sym_BSLASHcolor] = ACTIONS(12160), + [anon_sym_BSLASHcolorbox] = ACTIONS(12160), + [anon_sym_BSLASHtextcolor] = ACTIONS(12160), + [anon_sym_BSLASHpagecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12160), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12160), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12160), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12160), + }, + [1908] = { + [sym_generic_command_name] = ACTIONS(12156), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12154), + [anon_sym_RBRACK] = ACTIONS(12154), + [anon_sym_LBRACE] = ACTIONS(12154), + [anon_sym_RBRACE] = ACTIONS(12154), + [anon_sym_LPAREN] = ACTIONS(12154), + [anon_sym_COMMA] = ACTIONS(12154), + [anon_sym_EQ] = ACTIONS(12154), + [sym_word] = ACTIONS(12154), + [sym_param] = ACTIONS(12154), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12154), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12154), + [anon_sym_DOLLAR] = ACTIONS(12156), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12154), + [anon_sym_BSLASHbegin] = ACTIONS(12156), + [anon_sym_BSLASHcaption] = ACTIONS(12156), + [anon_sym_BSLASHcite] = ACTIONS(12156), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCite] = ACTIONS(12156), + [anon_sym_BSLASHnocite] = ACTIONS(12156), + [anon_sym_BSLASHcitet] = ACTIONS(12156), + [anon_sym_BSLASHcitep] = ACTIONS(12156), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteauthor] = ACTIONS(12156), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12156), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitetitle] = ACTIONS(12156), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteyear] = ACTIONS(12156), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12154), + [anon_sym_BSLASHcitedate] = ACTIONS(12156), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12154), + [anon_sym_BSLASHciteurl] = ACTIONS(12156), + [anon_sym_BSLASHfullcite] = ACTIONS(12156), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12156), + [anon_sym_BSLASHcitealt] = ACTIONS(12156), + [anon_sym_BSLASHcitealp] = ACTIONS(12156), + [anon_sym_BSLASHcitetext] = ACTIONS(12156), + [anon_sym_BSLASHparencite] = ACTIONS(12156), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHParencite] = ACTIONS(12156), + [anon_sym_BSLASHfootcite] = ACTIONS(12156), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12156), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12156), + [anon_sym_BSLASHtextcite] = ACTIONS(12156), + [anon_sym_BSLASHTextcite] = ACTIONS(12156), + [anon_sym_BSLASHsmartcite] = ACTIONS(12156), + [anon_sym_BSLASHSmartcite] = ACTIONS(12156), + [anon_sym_BSLASHsupercite] = ACTIONS(12156), + [anon_sym_BSLASHautocite] = ACTIONS(12156), + [anon_sym_BSLASHAutocite] = ACTIONS(12156), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12154), + [anon_sym_BSLASHvolcite] = ACTIONS(12156), + [anon_sym_BSLASHVolcite] = ACTIONS(12156), + [anon_sym_BSLASHpvolcite] = ACTIONS(12156), + [anon_sym_BSLASHPvolcite] = ACTIONS(12156), + [anon_sym_BSLASHfvolcite] = ACTIONS(12156), + [anon_sym_BSLASHftvolcite] = ACTIONS(12156), + [anon_sym_BSLASHsvolcite] = ACTIONS(12156), + [anon_sym_BSLASHSvolcite] = ACTIONS(12156), + [anon_sym_BSLASHtvolcite] = ACTIONS(12156), + [anon_sym_BSLASHTvolcite] = ACTIONS(12156), + [anon_sym_BSLASHavolcite] = ACTIONS(12156), + [anon_sym_BSLASHAvolcite] = ACTIONS(12156), + [anon_sym_BSLASHnotecite] = ACTIONS(12156), + [anon_sym_BSLASHpnotecite] = ACTIONS(12156), + [anon_sym_BSLASHPnotecite] = ACTIONS(12156), + [anon_sym_BSLASHfnotecite] = ACTIONS(12156), + [anon_sym_BSLASHusepackage] = ACTIONS(12156), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12156), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12156), + [anon_sym_BSLASHinclude] = ACTIONS(12156), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12156), + [anon_sym_BSLASHinput] = ACTIONS(12156), + [anon_sym_BSLASHsubfile] = ACTIONS(12156), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12156), + [anon_sym_BSLASHbibliography] = ACTIONS(12156), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12156), + [anon_sym_BSLASHincludesvg] = ACTIONS(12156), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12156), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12156), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12156), + [anon_sym_BSLASHimport] = ACTIONS(12156), + [anon_sym_BSLASHsubimport] = ACTIONS(12156), + [anon_sym_BSLASHinputfrom] = ACTIONS(12156), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12156), + [anon_sym_BSLASHincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12156), + [anon_sym_BSLASHlabel] = ACTIONS(12156), + [anon_sym_BSLASHref] = ACTIONS(12156), + [anon_sym_BSLASHvref] = ACTIONS(12156), + [anon_sym_BSLASHVref] = ACTIONS(12156), + [anon_sym_BSLASHautoref] = ACTIONS(12156), + [anon_sym_BSLASHpageref] = ACTIONS(12156), + [anon_sym_BSLASHcref] = ACTIONS(12156), + [anon_sym_BSLASHCref] = ACTIONS(12156), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnameCref] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12156), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12156), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12156), + [anon_sym_BSLASHlabelcref] = ACTIONS(12156), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12156), + [anon_sym_BSLASHeqref] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange] = ACTIONS(12156), + [anon_sym_BSLASHCrefrange] = ACTIONS(12156), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewlabel] = ACTIONS(12156), + [anon_sym_BSLASHnewcommand] = ACTIONS(12156), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12156), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12154), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12156), + [anon_sym_BSLASHgls] = ACTIONS(12156), + [anon_sym_BSLASHGls] = ACTIONS(12156), + [anon_sym_BSLASHGLS] = ACTIONS(12156), + [anon_sym_BSLASHglspl] = ACTIONS(12156), + [anon_sym_BSLASHGlspl] = ACTIONS(12156), + [anon_sym_BSLASHGLSpl] = ACTIONS(12156), + [anon_sym_BSLASHglsdisp] = ACTIONS(12156), + [anon_sym_BSLASHglslink] = ACTIONS(12156), + [anon_sym_BSLASHglstext] = ACTIONS(12156), + [anon_sym_BSLASHGlstext] = ACTIONS(12156), + [anon_sym_BSLASHGLStext] = ACTIONS(12156), + [anon_sym_BSLASHglsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12156), + [anon_sym_BSLASHglsplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSplural] = ACTIONS(12156), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12156), + [anon_sym_BSLASHglsname] = ACTIONS(12156), + [anon_sym_BSLASHGlsname] = ACTIONS(12156), + [anon_sym_BSLASHGLSname] = ACTIONS(12156), + [anon_sym_BSLASHglssymbol] = ACTIONS(12156), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12156), + [anon_sym_BSLASHglsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12156), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12156), + [anon_sym_BSLASHglsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12156), + [anon_sym_BSLASHglsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12156), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12156), + [anon_sym_BSLASHglsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12156), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12156), + [anon_sym_BSLASHglsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12156), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12156), + [anon_sym_BSLASHnewacronym] = ACTIONS(12156), + [anon_sym_BSLASHacrshort] = ACTIONS(12156), + [anon_sym_BSLASHAcrshort] = ACTIONS(12156), + [anon_sym_BSLASHACRshort] = ACTIONS(12156), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12156), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12156), + [anon_sym_BSLASHacrlong] = ACTIONS(12156), + [anon_sym_BSLASHAcrlong] = ACTIONS(12156), + [anon_sym_BSLASHACRlong] = ACTIONS(12156), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12156), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12156), + [anon_sym_BSLASHacrfull] = ACTIONS(12156), + [anon_sym_BSLASHAcrfull] = ACTIONS(12156), + [anon_sym_BSLASHACRfull] = ACTIONS(12156), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12156), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12156), + [anon_sym_BSLASHacs] = ACTIONS(12156), + [anon_sym_BSLASHAcs] = ACTIONS(12156), + [anon_sym_BSLASHacsp] = ACTIONS(12156), + [anon_sym_BSLASHAcsp] = ACTIONS(12156), + [anon_sym_BSLASHacl] = ACTIONS(12156), + [anon_sym_BSLASHAcl] = ACTIONS(12156), + [anon_sym_BSLASHaclp] = ACTIONS(12156), + [anon_sym_BSLASHAclp] = ACTIONS(12156), + [anon_sym_BSLASHacf] = ACTIONS(12156), + [anon_sym_BSLASHAcf] = ACTIONS(12156), + [anon_sym_BSLASHacfp] = ACTIONS(12156), + [anon_sym_BSLASHAcfp] = ACTIONS(12156), + [anon_sym_BSLASHac] = ACTIONS(12156), + [anon_sym_BSLASHAc] = ACTIONS(12156), + [anon_sym_BSLASHacp] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12156), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12156), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12156), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12156), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12156), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12156), + [anon_sym_BSLASHcolor] = ACTIONS(12156), + [anon_sym_BSLASHcolorbox] = ACTIONS(12156), + [anon_sym_BSLASHtextcolor] = ACTIONS(12156), + [anon_sym_BSLASHpagecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12156), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12156), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12156), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12156), + }, + [1909] = { + [sym_generic_command_name] = ACTIONS(12124), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12122), + [anon_sym_RBRACK] = ACTIONS(12122), + [anon_sym_LBRACE] = ACTIONS(12122), + [anon_sym_RBRACE] = ACTIONS(12122), + [anon_sym_LPAREN] = ACTIONS(12122), + [anon_sym_COMMA] = ACTIONS(12122), + [anon_sym_EQ] = ACTIONS(12122), + [sym_word] = ACTIONS(12122), + [sym_param] = ACTIONS(12122), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12122), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12122), + [anon_sym_DOLLAR] = ACTIONS(12124), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12122), + [anon_sym_BSLASHbegin] = ACTIONS(12124), + [anon_sym_BSLASHcaption] = ACTIONS(12124), + [anon_sym_BSLASHcite] = ACTIONS(12124), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCite] = ACTIONS(12124), + [anon_sym_BSLASHnocite] = ACTIONS(12124), + [anon_sym_BSLASHcitet] = ACTIONS(12124), + [anon_sym_BSLASHcitep] = ACTIONS(12124), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteauthor] = ACTIONS(12124), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12124), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitetitle] = ACTIONS(12124), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteyear] = ACTIONS(12124), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12122), + [anon_sym_BSLASHcitedate] = ACTIONS(12124), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12122), + [anon_sym_BSLASHciteurl] = ACTIONS(12124), + [anon_sym_BSLASHfullcite] = ACTIONS(12124), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12124), + [anon_sym_BSLASHcitealt] = ACTIONS(12124), + [anon_sym_BSLASHcitealp] = ACTIONS(12124), + [anon_sym_BSLASHcitetext] = ACTIONS(12124), + [anon_sym_BSLASHparencite] = ACTIONS(12124), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHParencite] = ACTIONS(12124), + [anon_sym_BSLASHfootcite] = ACTIONS(12124), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12124), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12124), + [anon_sym_BSLASHtextcite] = ACTIONS(12124), + [anon_sym_BSLASHTextcite] = ACTIONS(12124), + [anon_sym_BSLASHsmartcite] = ACTIONS(12124), + [anon_sym_BSLASHSmartcite] = ACTIONS(12124), + [anon_sym_BSLASHsupercite] = ACTIONS(12124), + [anon_sym_BSLASHautocite] = ACTIONS(12124), + [anon_sym_BSLASHAutocite] = ACTIONS(12124), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12122), + [anon_sym_BSLASHvolcite] = ACTIONS(12124), + [anon_sym_BSLASHVolcite] = ACTIONS(12124), + [anon_sym_BSLASHpvolcite] = ACTIONS(12124), + [anon_sym_BSLASHPvolcite] = ACTIONS(12124), + [anon_sym_BSLASHfvolcite] = ACTIONS(12124), + [anon_sym_BSLASHftvolcite] = ACTIONS(12124), + [anon_sym_BSLASHsvolcite] = ACTIONS(12124), + [anon_sym_BSLASHSvolcite] = ACTIONS(12124), + [anon_sym_BSLASHtvolcite] = ACTIONS(12124), + [anon_sym_BSLASHTvolcite] = ACTIONS(12124), + [anon_sym_BSLASHavolcite] = ACTIONS(12124), + [anon_sym_BSLASHAvolcite] = ACTIONS(12124), + [anon_sym_BSLASHnotecite] = ACTIONS(12124), + [anon_sym_BSLASHpnotecite] = ACTIONS(12124), + [anon_sym_BSLASHPnotecite] = ACTIONS(12124), + [anon_sym_BSLASHfnotecite] = ACTIONS(12124), + [anon_sym_BSLASHusepackage] = ACTIONS(12124), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12124), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12124), + [anon_sym_BSLASHinclude] = ACTIONS(12124), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12124), + [anon_sym_BSLASHinput] = ACTIONS(12124), + [anon_sym_BSLASHsubfile] = ACTIONS(12124), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12124), + [anon_sym_BSLASHbibliography] = ACTIONS(12124), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12124), + [anon_sym_BSLASHincludesvg] = ACTIONS(12124), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12124), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12124), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12124), + [anon_sym_BSLASHimport] = ACTIONS(12124), + [anon_sym_BSLASHsubimport] = ACTIONS(12124), + [anon_sym_BSLASHinputfrom] = ACTIONS(12124), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12124), + [anon_sym_BSLASHincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12124), + [anon_sym_BSLASHlabel] = ACTIONS(12124), + [anon_sym_BSLASHref] = ACTIONS(12124), + [anon_sym_BSLASHvref] = ACTIONS(12124), + [anon_sym_BSLASHVref] = ACTIONS(12124), + [anon_sym_BSLASHautoref] = ACTIONS(12124), + [anon_sym_BSLASHpageref] = ACTIONS(12124), + [anon_sym_BSLASHcref] = ACTIONS(12124), + [anon_sym_BSLASHCref] = ACTIONS(12124), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnameCref] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12124), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12124), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12124), + [anon_sym_BSLASHlabelcref] = ACTIONS(12124), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12124), + [anon_sym_BSLASHeqref] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange] = ACTIONS(12124), + [anon_sym_BSLASHCrefrange] = ACTIONS(12124), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewlabel] = ACTIONS(12124), + [anon_sym_BSLASHnewcommand] = ACTIONS(12124), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12124), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12122), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12124), + [anon_sym_BSLASHgls] = ACTIONS(12124), + [anon_sym_BSLASHGls] = ACTIONS(12124), + [anon_sym_BSLASHGLS] = ACTIONS(12124), + [anon_sym_BSLASHglspl] = ACTIONS(12124), + [anon_sym_BSLASHGlspl] = ACTIONS(12124), + [anon_sym_BSLASHGLSpl] = ACTIONS(12124), + [anon_sym_BSLASHglsdisp] = ACTIONS(12124), + [anon_sym_BSLASHglslink] = ACTIONS(12124), + [anon_sym_BSLASHglstext] = ACTIONS(12124), + [anon_sym_BSLASHGlstext] = ACTIONS(12124), + [anon_sym_BSLASHGLStext] = ACTIONS(12124), + [anon_sym_BSLASHglsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12124), + [anon_sym_BSLASHglsplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSplural] = ACTIONS(12124), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12124), + [anon_sym_BSLASHglsname] = ACTIONS(12124), + [anon_sym_BSLASHGlsname] = ACTIONS(12124), + [anon_sym_BSLASHGLSname] = ACTIONS(12124), + [anon_sym_BSLASHglssymbol] = ACTIONS(12124), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12124), + [anon_sym_BSLASHglsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12124), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12124), + [anon_sym_BSLASHglsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12124), + [anon_sym_BSLASHglsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12124), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12124), + [anon_sym_BSLASHglsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12124), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12124), + [anon_sym_BSLASHglsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12124), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12124), + [anon_sym_BSLASHnewacronym] = ACTIONS(12124), + [anon_sym_BSLASHacrshort] = ACTIONS(12124), + [anon_sym_BSLASHAcrshort] = ACTIONS(12124), + [anon_sym_BSLASHACRshort] = ACTIONS(12124), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12124), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12124), + [anon_sym_BSLASHacrlong] = ACTIONS(12124), + [anon_sym_BSLASHAcrlong] = ACTIONS(12124), + [anon_sym_BSLASHACRlong] = ACTIONS(12124), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12124), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12124), + [anon_sym_BSLASHacrfull] = ACTIONS(12124), + [anon_sym_BSLASHAcrfull] = ACTIONS(12124), + [anon_sym_BSLASHACRfull] = ACTIONS(12124), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12124), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12124), + [anon_sym_BSLASHacs] = ACTIONS(12124), + [anon_sym_BSLASHAcs] = ACTIONS(12124), + [anon_sym_BSLASHacsp] = ACTIONS(12124), + [anon_sym_BSLASHAcsp] = ACTIONS(12124), + [anon_sym_BSLASHacl] = ACTIONS(12124), + [anon_sym_BSLASHAcl] = ACTIONS(12124), + [anon_sym_BSLASHaclp] = ACTIONS(12124), + [anon_sym_BSLASHAclp] = ACTIONS(12124), + [anon_sym_BSLASHacf] = ACTIONS(12124), + [anon_sym_BSLASHAcf] = ACTIONS(12124), + [anon_sym_BSLASHacfp] = ACTIONS(12124), + [anon_sym_BSLASHAcfp] = ACTIONS(12124), + [anon_sym_BSLASHac] = ACTIONS(12124), + [anon_sym_BSLASHAc] = ACTIONS(12124), + [anon_sym_BSLASHacp] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12124), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12124), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12124), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12124), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12124), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12124), + [anon_sym_BSLASHcolor] = ACTIONS(12124), + [anon_sym_BSLASHcolorbox] = ACTIONS(12124), + [anon_sym_BSLASHtextcolor] = ACTIONS(12124), + [anon_sym_BSLASHpagecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12124), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12124), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12124), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12124), + }, + [1910] = { + [sym_generic_command_name] = ACTIONS(12152), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12150), + [anon_sym_RBRACK] = ACTIONS(12150), + [anon_sym_LBRACE] = ACTIONS(12150), + [anon_sym_RBRACE] = ACTIONS(12150), + [anon_sym_LPAREN] = ACTIONS(12150), + [anon_sym_COMMA] = ACTIONS(12150), + [anon_sym_EQ] = ACTIONS(12150), + [sym_word] = ACTIONS(12150), + [sym_param] = ACTIONS(12150), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12150), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12150), + [anon_sym_DOLLAR] = ACTIONS(12152), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12150), + [anon_sym_BSLASHbegin] = ACTIONS(12152), + [anon_sym_BSLASHcaption] = ACTIONS(12152), + [anon_sym_BSLASHcite] = ACTIONS(12152), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCite] = ACTIONS(12152), + [anon_sym_BSLASHnocite] = ACTIONS(12152), + [anon_sym_BSLASHcitet] = ACTIONS(12152), + [anon_sym_BSLASHcitep] = ACTIONS(12152), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteauthor] = ACTIONS(12152), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12152), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitetitle] = ACTIONS(12152), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteyear] = ACTIONS(12152), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12150), + [anon_sym_BSLASHcitedate] = ACTIONS(12152), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12150), + [anon_sym_BSLASHciteurl] = ACTIONS(12152), + [anon_sym_BSLASHfullcite] = ACTIONS(12152), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12152), + [anon_sym_BSLASHcitealt] = ACTIONS(12152), + [anon_sym_BSLASHcitealp] = ACTIONS(12152), + [anon_sym_BSLASHcitetext] = ACTIONS(12152), + [anon_sym_BSLASHparencite] = ACTIONS(12152), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHParencite] = ACTIONS(12152), + [anon_sym_BSLASHfootcite] = ACTIONS(12152), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12152), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12152), + [anon_sym_BSLASHtextcite] = ACTIONS(12152), + [anon_sym_BSLASHTextcite] = ACTIONS(12152), + [anon_sym_BSLASHsmartcite] = ACTIONS(12152), + [anon_sym_BSLASHSmartcite] = ACTIONS(12152), + [anon_sym_BSLASHsupercite] = ACTIONS(12152), + [anon_sym_BSLASHautocite] = ACTIONS(12152), + [anon_sym_BSLASHAutocite] = ACTIONS(12152), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12150), + [anon_sym_BSLASHvolcite] = ACTIONS(12152), + [anon_sym_BSLASHVolcite] = ACTIONS(12152), + [anon_sym_BSLASHpvolcite] = ACTIONS(12152), + [anon_sym_BSLASHPvolcite] = ACTIONS(12152), + [anon_sym_BSLASHfvolcite] = ACTIONS(12152), + [anon_sym_BSLASHftvolcite] = ACTIONS(12152), + [anon_sym_BSLASHsvolcite] = ACTIONS(12152), + [anon_sym_BSLASHSvolcite] = ACTIONS(12152), + [anon_sym_BSLASHtvolcite] = ACTIONS(12152), + [anon_sym_BSLASHTvolcite] = ACTIONS(12152), + [anon_sym_BSLASHavolcite] = ACTIONS(12152), + [anon_sym_BSLASHAvolcite] = ACTIONS(12152), + [anon_sym_BSLASHnotecite] = ACTIONS(12152), + [anon_sym_BSLASHpnotecite] = ACTIONS(12152), + [anon_sym_BSLASHPnotecite] = ACTIONS(12152), + [anon_sym_BSLASHfnotecite] = ACTIONS(12152), + [anon_sym_BSLASHusepackage] = ACTIONS(12152), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12152), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12152), + [anon_sym_BSLASHinclude] = ACTIONS(12152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12152), + [anon_sym_BSLASHinput] = ACTIONS(12152), + [anon_sym_BSLASHsubfile] = ACTIONS(12152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12152), + [anon_sym_BSLASHbibliography] = ACTIONS(12152), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12152), + [anon_sym_BSLASHincludesvg] = ACTIONS(12152), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12152), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12152), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12152), + [anon_sym_BSLASHimport] = ACTIONS(12152), + [anon_sym_BSLASHsubimport] = ACTIONS(12152), + [anon_sym_BSLASHinputfrom] = ACTIONS(12152), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12152), + [anon_sym_BSLASHincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12152), + [anon_sym_BSLASHlabel] = ACTIONS(12152), + [anon_sym_BSLASHref] = ACTIONS(12152), + [anon_sym_BSLASHvref] = ACTIONS(12152), + [anon_sym_BSLASHVref] = ACTIONS(12152), + [anon_sym_BSLASHautoref] = ACTIONS(12152), + [anon_sym_BSLASHpageref] = ACTIONS(12152), + [anon_sym_BSLASHcref] = ACTIONS(12152), + [anon_sym_BSLASHCref] = ACTIONS(12152), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnameCref] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12152), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12152), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12152), + [anon_sym_BSLASHlabelcref] = ACTIONS(12152), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12152), + [anon_sym_BSLASHeqref] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange] = ACTIONS(12152), + [anon_sym_BSLASHCrefrange] = ACTIONS(12152), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewlabel] = ACTIONS(12152), + [anon_sym_BSLASHnewcommand] = ACTIONS(12152), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12152), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12150), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12152), + [anon_sym_BSLASHgls] = ACTIONS(12152), + [anon_sym_BSLASHGls] = ACTIONS(12152), + [anon_sym_BSLASHGLS] = ACTIONS(12152), + [anon_sym_BSLASHglspl] = ACTIONS(12152), + [anon_sym_BSLASHGlspl] = ACTIONS(12152), + [anon_sym_BSLASHGLSpl] = ACTIONS(12152), + [anon_sym_BSLASHglsdisp] = ACTIONS(12152), + [anon_sym_BSLASHglslink] = ACTIONS(12152), + [anon_sym_BSLASHglstext] = ACTIONS(12152), + [anon_sym_BSLASHGlstext] = ACTIONS(12152), + [anon_sym_BSLASHGLStext] = ACTIONS(12152), + [anon_sym_BSLASHglsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12152), + [anon_sym_BSLASHglsplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSplural] = ACTIONS(12152), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12152), + [anon_sym_BSLASHglsname] = ACTIONS(12152), + [anon_sym_BSLASHGlsname] = ACTIONS(12152), + [anon_sym_BSLASHGLSname] = ACTIONS(12152), + [anon_sym_BSLASHglssymbol] = ACTIONS(12152), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12152), + [anon_sym_BSLASHglsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12152), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12152), + [anon_sym_BSLASHglsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12152), + [anon_sym_BSLASHglsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12152), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12152), + [anon_sym_BSLASHglsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12152), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12152), + [anon_sym_BSLASHglsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12152), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12152), + [anon_sym_BSLASHnewacronym] = ACTIONS(12152), + [anon_sym_BSLASHacrshort] = ACTIONS(12152), + [anon_sym_BSLASHAcrshort] = ACTIONS(12152), + [anon_sym_BSLASHACRshort] = ACTIONS(12152), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12152), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12152), + [anon_sym_BSLASHacrlong] = ACTIONS(12152), + [anon_sym_BSLASHAcrlong] = ACTIONS(12152), + [anon_sym_BSLASHACRlong] = ACTIONS(12152), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12152), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12152), + [anon_sym_BSLASHacrfull] = ACTIONS(12152), + [anon_sym_BSLASHAcrfull] = ACTIONS(12152), + [anon_sym_BSLASHACRfull] = ACTIONS(12152), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12152), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12152), + [anon_sym_BSLASHacs] = ACTIONS(12152), + [anon_sym_BSLASHAcs] = ACTIONS(12152), + [anon_sym_BSLASHacsp] = ACTIONS(12152), + [anon_sym_BSLASHAcsp] = ACTIONS(12152), + [anon_sym_BSLASHacl] = ACTIONS(12152), + [anon_sym_BSLASHAcl] = ACTIONS(12152), + [anon_sym_BSLASHaclp] = ACTIONS(12152), + [anon_sym_BSLASHAclp] = ACTIONS(12152), + [anon_sym_BSLASHacf] = ACTIONS(12152), + [anon_sym_BSLASHAcf] = ACTIONS(12152), + [anon_sym_BSLASHacfp] = ACTIONS(12152), + [anon_sym_BSLASHAcfp] = ACTIONS(12152), + [anon_sym_BSLASHac] = ACTIONS(12152), + [anon_sym_BSLASHAc] = ACTIONS(12152), + [anon_sym_BSLASHacp] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12152), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12152), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12152), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12152), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12152), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12152), + [anon_sym_BSLASHcolor] = ACTIONS(12152), + [anon_sym_BSLASHcolorbox] = ACTIONS(12152), + [anon_sym_BSLASHtextcolor] = ACTIONS(12152), + [anon_sym_BSLASHpagecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12152), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12152), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12152), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12152), + }, + [1911] = { + [sym_generic_command_name] = ACTIONS(12148), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12146), + [anon_sym_RBRACK] = ACTIONS(12146), + [anon_sym_LBRACE] = ACTIONS(12146), + [anon_sym_RBRACE] = ACTIONS(12146), + [anon_sym_LPAREN] = ACTIONS(12146), + [anon_sym_COMMA] = ACTIONS(12146), + [anon_sym_EQ] = ACTIONS(12146), + [sym_word] = ACTIONS(12146), + [sym_param] = ACTIONS(12146), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12146), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12146), + [anon_sym_DOLLAR] = ACTIONS(12148), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12146), + [anon_sym_BSLASHbegin] = ACTIONS(12148), + [anon_sym_BSLASHcaption] = ACTIONS(12148), + [anon_sym_BSLASHcite] = ACTIONS(12148), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCite] = ACTIONS(12148), + [anon_sym_BSLASHnocite] = ACTIONS(12148), + [anon_sym_BSLASHcitet] = ACTIONS(12148), + [anon_sym_BSLASHcitep] = ACTIONS(12148), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteauthor] = ACTIONS(12148), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12148), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitetitle] = ACTIONS(12148), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteyear] = ACTIONS(12148), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12146), + [anon_sym_BSLASHcitedate] = ACTIONS(12148), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12146), + [anon_sym_BSLASHciteurl] = ACTIONS(12148), + [anon_sym_BSLASHfullcite] = ACTIONS(12148), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12148), + [anon_sym_BSLASHcitealt] = ACTIONS(12148), + [anon_sym_BSLASHcitealp] = ACTIONS(12148), + [anon_sym_BSLASHcitetext] = ACTIONS(12148), + [anon_sym_BSLASHparencite] = ACTIONS(12148), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHParencite] = ACTIONS(12148), + [anon_sym_BSLASHfootcite] = ACTIONS(12148), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12148), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12148), + [anon_sym_BSLASHtextcite] = ACTIONS(12148), + [anon_sym_BSLASHTextcite] = ACTIONS(12148), + [anon_sym_BSLASHsmartcite] = ACTIONS(12148), + [anon_sym_BSLASHSmartcite] = ACTIONS(12148), + [anon_sym_BSLASHsupercite] = ACTIONS(12148), + [anon_sym_BSLASHautocite] = ACTIONS(12148), + [anon_sym_BSLASHAutocite] = ACTIONS(12148), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12146), + [anon_sym_BSLASHvolcite] = ACTIONS(12148), + [anon_sym_BSLASHVolcite] = ACTIONS(12148), + [anon_sym_BSLASHpvolcite] = ACTIONS(12148), + [anon_sym_BSLASHPvolcite] = ACTIONS(12148), + [anon_sym_BSLASHfvolcite] = ACTIONS(12148), + [anon_sym_BSLASHftvolcite] = ACTIONS(12148), + [anon_sym_BSLASHsvolcite] = ACTIONS(12148), + [anon_sym_BSLASHSvolcite] = ACTIONS(12148), + [anon_sym_BSLASHtvolcite] = ACTIONS(12148), + [anon_sym_BSLASHTvolcite] = ACTIONS(12148), + [anon_sym_BSLASHavolcite] = ACTIONS(12148), + [anon_sym_BSLASHAvolcite] = ACTIONS(12148), + [anon_sym_BSLASHnotecite] = ACTIONS(12148), + [anon_sym_BSLASHpnotecite] = ACTIONS(12148), + [anon_sym_BSLASHPnotecite] = ACTIONS(12148), + [anon_sym_BSLASHfnotecite] = ACTIONS(12148), + [anon_sym_BSLASHusepackage] = ACTIONS(12148), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12148), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12148), + [anon_sym_BSLASHinclude] = ACTIONS(12148), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12148), + [anon_sym_BSLASHinput] = ACTIONS(12148), + [anon_sym_BSLASHsubfile] = ACTIONS(12148), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12148), + [anon_sym_BSLASHbibliography] = ACTIONS(12148), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12148), + [anon_sym_BSLASHincludesvg] = ACTIONS(12148), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12148), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12148), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12148), + [anon_sym_BSLASHimport] = ACTIONS(12148), + [anon_sym_BSLASHsubimport] = ACTIONS(12148), + [anon_sym_BSLASHinputfrom] = ACTIONS(12148), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12148), + [anon_sym_BSLASHincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12148), + [anon_sym_BSLASHlabel] = ACTIONS(12148), + [anon_sym_BSLASHref] = ACTIONS(12148), + [anon_sym_BSLASHvref] = ACTIONS(12148), + [anon_sym_BSLASHVref] = ACTIONS(12148), + [anon_sym_BSLASHautoref] = ACTIONS(12148), + [anon_sym_BSLASHpageref] = ACTIONS(12148), + [anon_sym_BSLASHcref] = ACTIONS(12148), + [anon_sym_BSLASHCref] = ACTIONS(12148), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnameCref] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12148), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12148), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12148), + [anon_sym_BSLASHlabelcref] = ACTIONS(12148), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12148), + [anon_sym_BSLASHeqref] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange] = ACTIONS(12148), + [anon_sym_BSLASHCrefrange] = ACTIONS(12148), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewlabel] = ACTIONS(12148), + [anon_sym_BSLASHnewcommand] = ACTIONS(12148), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12148), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12146), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12148), + [anon_sym_BSLASHgls] = ACTIONS(12148), + [anon_sym_BSLASHGls] = ACTIONS(12148), + [anon_sym_BSLASHGLS] = ACTIONS(12148), + [anon_sym_BSLASHglspl] = ACTIONS(12148), + [anon_sym_BSLASHGlspl] = ACTIONS(12148), + [anon_sym_BSLASHGLSpl] = ACTIONS(12148), + [anon_sym_BSLASHglsdisp] = ACTIONS(12148), + [anon_sym_BSLASHglslink] = ACTIONS(12148), + [anon_sym_BSLASHglstext] = ACTIONS(12148), + [anon_sym_BSLASHGlstext] = ACTIONS(12148), + [anon_sym_BSLASHGLStext] = ACTIONS(12148), + [anon_sym_BSLASHglsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12148), + [anon_sym_BSLASHglsplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSplural] = ACTIONS(12148), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12148), + [anon_sym_BSLASHglsname] = ACTIONS(12148), + [anon_sym_BSLASHGlsname] = ACTIONS(12148), + [anon_sym_BSLASHGLSname] = ACTIONS(12148), + [anon_sym_BSLASHglssymbol] = ACTIONS(12148), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12148), + [anon_sym_BSLASHglsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12148), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12148), + [anon_sym_BSLASHglsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12148), + [anon_sym_BSLASHglsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12148), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12148), + [anon_sym_BSLASHglsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12148), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12148), + [anon_sym_BSLASHglsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12148), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12148), + [anon_sym_BSLASHnewacronym] = ACTIONS(12148), + [anon_sym_BSLASHacrshort] = ACTIONS(12148), + [anon_sym_BSLASHAcrshort] = ACTIONS(12148), + [anon_sym_BSLASHACRshort] = ACTIONS(12148), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12148), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12148), + [anon_sym_BSLASHacrlong] = ACTIONS(12148), + [anon_sym_BSLASHAcrlong] = ACTIONS(12148), + [anon_sym_BSLASHACRlong] = ACTIONS(12148), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12148), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12148), + [anon_sym_BSLASHacrfull] = ACTIONS(12148), + [anon_sym_BSLASHAcrfull] = ACTIONS(12148), + [anon_sym_BSLASHACRfull] = ACTIONS(12148), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12148), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12148), + [anon_sym_BSLASHacs] = ACTIONS(12148), + [anon_sym_BSLASHAcs] = ACTIONS(12148), + [anon_sym_BSLASHacsp] = ACTIONS(12148), + [anon_sym_BSLASHAcsp] = ACTIONS(12148), + [anon_sym_BSLASHacl] = ACTIONS(12148), + [anon_sym_BSLASHAcl] = ACTIONS(12148), + [anon_sym_BSLASHaclp] = ACTIONS(12148), + [anon_sym_BSLASHAclp] = ACTIONS(12148), + [anon_sym_BSLASHacf] = ACTIONS(12148), + [anon_sym_BSLASHAcf] = ACTIONS(12148), + [anon_sym_BSLASHacfp] = ACTIONS(12148), + [anon_sym_BSLASHAcfp] = ACTIONS(12148), + [anon_sym_BSLASHac] = ACTIONS(12148), + [anon_sym_BSLASHAc] = ACTIONS(12148), + [anon_sym_BSLASHacp] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12148), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12148), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12148), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12148), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12148), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12148), + [anon_sym_BSLASHcolor] = ACTIONS(12148), + [anon_sym_BSLASHcolorbox] = ACTIONS(12148), + [anon_sym_BSLASHtextcolor] = ACTIONS(12148), + [anon_sym_BSLASHpagecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12148), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12148), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12148), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12148), + }, + [1912] = { + [sym_generic_command_name] = ACTIONS(12349), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12347), + [anon_sym_RBRACK] = ACTIONS(12347), + [anon_sym_LBRACE] = ACTIONS(12347), + [anon_sym_RBRACE] = ACTIONS(12347), + [anon_sym_LPAREN] = ACTIONS(12347), + [anon_sym_COMMA] = ACTIONS(12347), + [anon_sym_EQ] = ACTIONS(12347), + [sym_word] = ACTIONS(12347), + [sym_param] = ACTIONS(12347), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12347), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12347), + [anon_sym_DOLLAR] = ACTIONS(12349), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12347), + [anon_sym_BSLASHbegin] = ACTIONS(12349), + [anon_sym_BSLASHcaption] = ACTIONS(12349), + [anon_sym_BSLASHcite] = ACTIONS(12349), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCite] = ACTIONS(12349), + [anon_sym_BSLASHnocite] = ACTIONS(12349), + [anon_sym_BSLASHcitet] = ACTIONS(12349), + [anon_sym_BSLASHcitep] = ACTIONS(12349), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteauthor] = ACTIONS(12349), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12349), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitetitle] = ACTIONS(12349), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteyear] = ACTIONS(12349), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12347), + [anon_sym_BSLASHcitedate] = ACTIONS(12349), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12347), + [anon_sym_BSLASHciteurl] = ACTIONS(12349), + [anon_sym_BSLASHfullcite] = ACTIONS(12349), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12349), + [anon_sym_BSLASHcitealt] = ACTIONS(12349), + [anon_sym_BSLASHcitealp] = ACTIONS(12349), + [anon_sym_BSLASHcitetext] = ACTIONS(12349), + [anon_sym_BSLASHparencite] = ACTIONS(12349), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHParencite] = ACTIONS(12349), + [anon_sym_BSLASHfootcite] = ACTIONS(12349), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12349), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12349), + [anon_sym_BSLASHtextcite] = ACTIONS(12349), + [anon_sym_BSLASHTextcite] = ACTIONS(12349), + [anon_sym_BSLASHsmartcite] = ACTIONS(12349), + [anon_sym_BSLASHSmartcite] = ACTIONS(12349), + [anon_sym_BSLASHsupercite] = ACTIONS(12349), + [anon_sym_BSLASHautocite] = ACTIONS(12349), + [anon_sym_BSLASHAutocite] = ACTIONS(12349), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12347), + [anon_sym_BSLASHvolcite] = ACTIONS(12349), + [anon_sym_BSLASHVolcite] = ACTIONS(12349), + [anon_sym_BSLASHpvolcite] = ACTIONS(12349), + [anon_sym_BSLASHPvolcite] = ACTIONS(12349), + [anon_sym_BSLASHfvolcite] = ACTIONS(12349), + [anon_sym_BSLASHftvolcite] = ACTIONS(12349), + [anon_sym_BSLASHsvolcite] = ACTIONS(12349), + [anon_sym_BSLASHSvolcite] = ACTIONS(12349), + [anon_sym_BSLASHtvolcite] = ACTIONS(12349), + [anon_sym_BSLASHTvolcite] = ACTIONS(12349), + [anon_sym_BSLASHavolcite] = ACTIONS(12349), + [anon_sym_BSLASHAvolcite] = ACTIONS(12349), + [anon_sym_BSLASHnotecite] = ACTIONS(12349), + [anon_sym_BSLASHpnotecite] = ACTIONS(12349), + [anon_sym_BSLASHPnotecite] = ACTIONS(12349), + [anon_sym_BSLASHfnotecite] = ACTIONS(12349), + [anon_sym_BSLASHusepackage] = ACTIONS(12349), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12349), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12349), + [anon_sym_BSLASHinclude] = ACTIONS(12349), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12349), + [anon_sym_BSLASHinput] = ACTIONS(12349), + [anon_sym_BSLASHsubfile] = ACTIONS(12349), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12349), + [anon_sym_BSLASHbibliography] = ACTIONS(12349), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12349), + [anon_sym_BSLASHincludesvg] = ACTIONS(12349), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12349), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12349), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12349), + [anon_sym_BSLASHimport] = ACTIONS(12349), + [anon_sym_BSLASHsubimport] = ACTIONS(12349), + [anon_sym_BSLASHinputfrom] = ACTIONS(12349), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12349), + [anon_sym_BSLASHincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12349), + [anon_sym_BSLASHlabel] = ACTIONS(12349), + [anon_sym_BSLASHref] = ACTIONS(12349), + [anon_sym_BSLASHvref] = ACTIONS(12349), + [anon_sym_BSLASHVref] = ACTIONS(12349), + [anon_sym_BSLASHautoref] = ACTIONS(12349), + [anon_sym_BSLASHpageref] = ACTIONS(12349), + [anon_sym_BSLASHcref] = ACTIONS(12349), + [anon_sym_BSLASHCref] = ACTIONS(12349), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnameCref] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12349), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12349), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12349), + [anon_sym_BSLASHlabelcref] = ACTIONS(12349), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12349), + [anon_sym_BSLASHeqref] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange] = ACTIONS(12349), + [anon_sym_BSLASHCrefrange] = ACTIONS(12349), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewlabel] = ACTIONS(12349), + [anon_sym_BSLASHnewcommand] = ACTIONS(12349), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12349), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12347), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12349), + [anon_sym_BSLASHgls] = ACTIONS(12349), + [anon_sym_BSLASHGls] = ACTIONS(12349), + [anon_sym_BSLASHGLS] = ACTIONS(12349), + [anon_sym_BSLASHglspl] = ACTIONS(12349), + [anon_sym_BSLASHGlspl] = ACTIONS(12349), + [anon_sym_BSLASHGLSpl] = ACTIONS(12349), + [anon_sym_BSLASHglsdisp] = ACTIONS(12349), + [anon_sym_BSLASHglslink] = ACTIONS(12349), + [anon_sym_BSLASHglstext] = ACTIONS(12349), + [anon_sym_BSLASHGlstext] = ACTIONS(12349), + [anon_sym_BSLASHGLStext] = ACTIONS(12349), + [anon_sym_BSLASHglsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12349), + [anon_sym_BSLASHglsplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSplural] = ACTIONS(12349), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12349), + [anon_sym_BSLASHglsname] = ACTIONS(12349), + [anon_sym_BSLASHGlsname] = ACTIONS(12349), + [anon_sym_BSLASHGLSname] = ACTIONS(12349), + [anon_sym_BSLASHglssymbol] = ACTIONS(12349), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12349), + [anon_sym_BSLASHglsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12349), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12349), + [anon_sym_BSLASHglsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12349), + [anon_sym_BSLASHglsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12349), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12349), + [anon_sym_BSLASHglsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12349), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12349), + [anon_sym_BSLASHglsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12349), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12349), + [anon_sym_BSLASHnewacronym] = ACTIONS(12349), + [anon_sym_BSLASHacrshort] = ACTIONS(12349), + [anon_sym_BSLASHAcrshort] = ACTIONS(12349), + [anon_sym_BSLASHACRshort] = ACTIONS(12349), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12349), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12349), + [anon_sym_BSLASHacrlong] = ACTIONS(12349), + [anon_sym_BSLASHAcrlong] = ACTIONS(12349), + [anon_sym_BSLASHACRlong] = ACTIONS(12349), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12349), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12349), + [anon_sym_BSLASHacrfull] = ACTIONS(12349), + [anon_sym_BSLASHAcrfull] = ACTIONS(12349), + [anon_sym_BSLASHACRfull] = ACTIONS(12349), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12349), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12349), + [anon_sym_BSLASHacs] = ACTIONS(12349), + [anon_sym_BSLASHAcs] = ACTIONS(12349), + [anon_sym_BSLASHacsp] = ACTIONS(12349), + [anon_sym_BSLASHAcsp] = ACTIONS(12349), + [anon_sym_BSLASHacl] = ACTIONS(12349), + [anon_sym_BSLASHAcl] = ACTIONS(12349), + [anon_sym_BSLASHaclp] = ACTIONS(12349), + [anon_sym_BSLASHAclp] = ACTIONS(12349), + [anon_sym_BSLASHacf] = ACTIONS(12349), + [anon_sym_BSLASHAcf] = ACTIONS(12349), + [anon_sym_BSLASHacfp] = ACTIONS(12349), + [anon_sym_BSLASHAcfp] = ACTIONS(12349), + [anon_sym_BSLASHac] = ACTIONS(12349), + [anon_sym_BSLASHAc] = ACTIONS(12349), + [anon_sym_BSLASHacp] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12349), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12349), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12349), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12349), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12349), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12349), + [anon_sym_BSLASHcolor] = ACTIONS(12349), + [anon_sym_BSLASHcolorbox] = ACTIONS(12349), + [anon_sym_BSLASHtextcolor] = ACTIONS(12349), + [anon_sym_BSLASHpagecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12349), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12349), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12349), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12349), + }, + [1913] = { + [sym_generic_command_name] = ACTIONS(12323), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12321), + [anon_sym_RBRACK] = ACTIONS(12321), + [anon_sym_LBRACE] = ACTIONS(12321), + [anon_sym_RBRACE] = ACTIONS(12321), + [anon_sym_LPAREN] = ACTIONS(12321), + [anon_sym_COMMA] = ACTIONS(12321), + [anon_sym_EQ] = ACTIONS(12321), + [sym_word] = ACTIONS(12321), + [sym_param] = ACTIONS(12321), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12321), + [anon_sym_DOLLAR] = ACTIONS(12323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12321), + [anon_sym_BSLASHbegin] = ACTIONS(12323), + [anon_sym_BSLASHcaption] = ACTIONS(12323), + [anon_sym_BSLASHcite] = ACTIONS(12323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCite] = ACTIONS(12323), + [anon_sym_BSLASHnocite] = ACTIONS(12323), + [anon_sym_BSLASHcitet] = ACTIONS(12323), + [anon_sym_BSLASHcitep] = ACTIONS(12323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteauthor] = ACTIONS(12323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitetitle] = ACTIONS(12323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteyear] = ACTIONS(12323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12321), + [anon_sym_BSLASHcitedate] = ACTIONS(12323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12321), + [anon_sym_BSLASHciteurl] = ACTIONS(12323), + [anon_sym_BSLASHfullcite] = ACTIONS(12323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12323), + [anon_sym_BSLASHcitealt] = ACTIONS(12323), + [anon_sym_BSLASHcitealp] = ACTIONS(12323), + [anon_sym_BSLASHcitetext] = ACTIONS(12323), + [anon_sym_BSLASHparencite] = ACTIONS(12323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHParencite] = ACTIONS(12323), + [anon_sym_BSLASHfootcite] = ACTIONS(12323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12323), + [anon_sym_BSLASHtextcite] = ACTIONS(12323), + [anon_sym_BSLASHTextcite] = ACTIONS(12323), + [anon_sym_BSLASHsmartcite] = ACTIONS(12323), + [anon_sym_BSLASHSmartcite] = ACTIONS(12323), + [anon_sym_BSLASHsupercite] = ACTIONS(12323), + [anon_sym_BSLASHautocite] = ACTIONS(12323), + [anon_sym_BSLASHAutocite] = ACTIONS(12323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12321), + [anon_sym_BSLASHvolcite] = ACTIONS(12323), + [anon_sym_BSLASHVolcite] = ACTIONS(12323), + [anon_sym_BSLASHpvolcite] = ACTIONS(12323), + [anon_sym_BSLASHPvolcite] = ACTIONS(12323), + [anon_sym_BSLASHfvolcite] = ACTIONS(12323), + [anon_sym_BSLASHftvolcite] = ACTIONS(12323), + [anon_sym_BSLASHsvolcite] = ACTIONS(12323), + [anon_sym_BSLASHSvolcite] = ACTIONS(12323), + [anon_sym_BSLASHtvolcite] = ACTIONS(12323), + [anon_sym_BSLASHTvolcite] = ACTIONS(12323), + [anon_sym_BSLASHavolcite] = ACTIONS(12323), + [anon_sym_BSLASHAvolcite] = ACTIONS(12323), + [anon_sym_BSLASHnotecite] = ACTIONS(12323), + [anon_sym_BSLASHpnotecite] = ACTIONS(12323), + [anon_sym_BSLASHPnotecite] = ACTIONS(12323), + [anon_sym_BSLASHfnotecite] = ACTIONS(12323), + [anon_sym_BSLASHusepackage] = ACTIONS(12323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12323), + [anon_sym_BSLASHinclude] = ACTIONS(12323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12323), + [anon_sym_BSLASHinput] = ACTIONS(12323), + [anon_sym_BSLASHsubfile] = ACTIONS(12323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12323), + [anon_sym_BSLASHbibliography] = ACTIONS(12323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12323), + [anon_sym_BSLASHincludesvg] = ACTIONS(12323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12323), + [anon_sym_BSLASHimport] = ACTIONS(12323), + [anon_sym_BSLASHsubimport] = ACTIONS(12323), + [anon_sym_BSLASHinputfrom] = ACTIONS(12323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12323), + [anon_sym_BSLASHincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12323), + [anon_sym_BSLASHlabel] = ACTIONS(12323), + [anon_sym_BSLASHref] = ACTIONS(12323), + [anon_sym_BSLASHvref] = ACTIONS(12323), + [anon_sym_BSLASHVref] = ACTIONS(12323), + [anon_sym_BSLASHautoref] = ACTIONS(12323), + [anon_sym_BSLASHpageref] = ACTIONS(12323), + [anon_sym_BSLASHcref] = ACTIONS(12323), + [anon_sym_BSLASHCref] = ACTIONS(12323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnameCref] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12323), + [anon_sym_BSLASHlabelcref] = ACTIONS(12323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12323), + [anon_sym_BSLASHeqref] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange] = ACTIONS(12323), + [anon_sym_BSLASHCrefrange] = ACTIONS(12323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewlabel] = ACTIONS(12323), + [anon_sym_BSLASHnewcommand] = ACTIONS(12323), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12321), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12323), + [anon_sym_BSLASHgls] = ACTIONS(12323), + [anon_sym_BSLASHGls] = ACTIONS(12323), + [anon_sym_BSLASHGLS] = ACTIONS(12323), + [anon_sym_BSLASHglspl] = ACTIONS(12323), + [anon_sym_BSLASHGlspl] = ACTIONS(12323), + [anon_sym_BSLASHGLSpl] = ACTIONS(12323), + [anon_sym_BSLASHglsdisp] = ACTIONS(12323), + [anon_sym_BSLASHglslink] = ACTIONS(12323), + [anon_sym_BSLASHglstext] = ACTIONS(12323), + [anon_sym_BSLASHGlstext] = ACTIONS(12323), + [anon_sym_BSLASHGLStext] = ACTIONS(12323), + [anon_sym_BSLASHglsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12323), + [anon_sym_BSLASHglsplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSplural] = ACTIONS(12323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12323), + [anon_sym_BSLASHglsname] = ACTIONS(12323), + [anon_sym_BSLASHGlsname] = ACTIONS(12323), + [anon_sym_BSLASHGLSname] = ACTIONS(12323), + [anon_sym_BSLASHglssymbol] = ACTIONS(12323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12323), + [anon_sym_BSLASHglsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12323), + [anon_sym_BSLASHglsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12323), + [anon_sym_BSLASHglsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12323), + [anon_sym_BSLASHglsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12323), + [anon_sym_BSLASHglsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12323), + [anon_sym_BSLASHnewacronym] = ACTIONS(12323), + [anon_sym_BSLASHacrshort] = ACTIONS(12323), + [anon_sym_BSLASHAcrshort] = ACTIONS(12323), + [anon_sym_BSLASHACRshort] = ACTIONS(12323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12323), + [anon_sym_BSLASHacrlong] = ACTIONS(12323), + [anon_sym_BSLASHAcrlong] = ACTIONS(12323), + [anon_sym_BSLASHACRlong] = ACTIONS(12323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12323), + [anon_sym_BSLASHacrfull] = ACTIONS(12323), + [anon_sym_BSLASHAcrfull] = ACTIONS(12323), + [anon_sym_BSLASHACRfull] = ACTIONS(12323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12323), + [anon_sym_BSLASHacs] = ACTIONS(12323), + [anon_sym_BSLASHAcs] = ACTIONS(12323), + [anon_sym_BSLASHacsp] = ACTIONS(12323), + [anon_sym_BSLASHAcsp] = ACTIONS(12323), + [anon_sym_BSLASHacl] = ACTIONS(12323), + [anon_sym_BSLASHAcl] = ACTIONS(12323), + [anon_sym_BSLASHaclp] = ACTIONS(12323), + [anon_sym_BSLASHAclp] = ACTIONS(12323), + [anon_sym_BSLASHacf] = ACTIONS(12323), + [anon_sym_BSLASHAcf] = ACTIONS(12323), + [anon_sym_BSLASHacfp] = ACTIONS(12323), + [anon_sym_BSLASHAcfp] = ACTIONS(12323), + [anon_sym_BSLASHac] = ACTIONS(12323), + [anon_sym_BSLASHAc] = ACTIONS(12323), + [anon_sym_BSLASHacp] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12323), + [anon_sym_BSLASHcolor] = ACTIONS(12323), + [anon_sym_BSLASHcolorbox] = ACTIONS(12323), + [anon_sym_BSLASHtextcolor] = ACTIONS(12323), + [anon_sym_BSLASHpagecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12323), + }, + [1914] = { + [sym_generic_command_name] = ACTIONS(12311), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12309), + [anon_sym_RBRACK] = ACTIONS(12309), + [anon_sym_LBRACE] = ACTIONS(12309), + [anon_sym_RBRACE] = ACTIONS(12309), + [anon_sym_LPAREN] = ACTIONS(12309), + [anon_sym_COMMA] = ACTIONS(12309), + [anon_sym_EQ] = ACTIONS(12309), + [sym_word] = ACTIONS(12309), + [sym_param] = ACTIONS(12309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12309), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12309), + [anon_sym_DOLLAR] = ACTIONS(12311), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12309), + [anon_sym_BSLASHbegin] = ACTIONS(12311), + [anon_sym_BSLASHcaption] = ACTIONS(12311), + [anon_sym_BSLASHcite] = ACTIONS(12311), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCite] = ACTIONS(12311), + [anon_sym_BSLASHnocite] = ACTIONS(12311), + [anon_sym_BSLASHcitet] = ACTIONS(12311), + [anon_sym_BSLASHcitep] = ACTIONS(12311), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteauthor] = ACTIONS(12311), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12311), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitetitle] = ACTIONS(12311), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteyear] = ACTIONS(12311), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12309), + [anon_sym_BSLASHcitedate] = ACTIONS(12311), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12309), + [anon_sym_BSLASHciteurl] = ACTIONS(12311), + [anon_sym_BSLASHfullcite] = ACTIONS(12311), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12311), + [anon_sym_BSLASHcitealt] = ACTIONS(12311), + [anon_sym_BSLASHcitealp] = ACTIONS(12311), + [anon_sym_BSLASHcitetext] = ACTIONS(12311), + [anon_sym_BSLASHparencite] = ACTIONS(12311), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHParencite] = ACTIONS(12311), + [anon_sym_BSLASHfootcite] = ACTIONS(12311), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12311), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12311), + [anon_sym_BSLASHtextcite] = ACTIONS(12311), + [anon_sym_BSLASHTextcite] = ACTIONS(12311), + [anon_sym_BSLASHsmartcite] = ACTIONS(12311), + [anon_sym_BSLASHSmartcite] = ACTIONS(12311), + [anon_sym_BSLASHsupercite] = ACTIONS(12311), + [anon_sym_BSLASHautocite] = ACTIONS(12311), + [anon_sym_BSLASHAutocite] = ACTIONS(12311), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12309), + [anon_sym_BSLASHvolcite] = ACTIONS(12311), + [anon_sym_BSLASHVolcite] = ACTIONS(12311), + [anon_sym_BSLASHpvolcite] = ACTIONS(12311), + [anon_sym_BSLASHPvolcite] = ACTIONS(12311), + [anon_sym_BSLASHfvolcite] = ACTIONS(12311), + [anon_sym_BSLASHftvolcite] = ACTIONS(12311), + [anon_sym_BSLASHsvolcite] = ACTIONS(12311), + [anon_sym_BSLASHSvolcite] = ACTIONS(12311), + [anon_sym_BSLASHtvolcite] = ACTIONS(12311), + [anon_sym_BSLASHTvolcite] = ACTIONS(12311), + [anon_sym_BSLASHavolcite] = ACTIONS(12311), + [anon_sym_BSLASHAvolcite] = ACTIONS(12311), + [anon_sym_BSLASHnotecite] = ACTIONS(12311), + [anon_sym_BSLASHpnotecite] = ACTIONS(12311), + [anon_sym_BSLASHPnotecite] = ACTIONS(12311), + [anon_sym_BSLASHfnotecite] = ACTIONS(12311), + [anon_sym_BSLASHusepackage] = ACTIONS(12311), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12311), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12311), + [anon_sym_BSLASHinclude] = ACTIONS(12311), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12311), + [anon_sym_BSLASHinput] = ACTIONS(12311), + [anon_sym_BSLASHsubfile] = ACTIONS(12311), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12311), + [anon_sym_BSLASHbibliography] = ACTIONS(12311), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12311), + [anon_sym_BSLASHincludesvg] = ACTIONS(12311), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12311), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12311), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12311), + [anon_sym_BSLASHimport] = ACTIONS(12311), + [anon_sym_BSLASHsubimport] = ACTIONS(12311), + [anon_sym_BSLASHinputfrom] = ACTIONS(12311), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12311), + [anon_sym_BSLASHincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12311), + [anon_sym_BSLASHlabel] = ACTIONS(12311), + [anon_sym_BSLASHref] = ACTIONS(12311), + [anon_sym_BSLASHvref] = ACTIONS(12311), + [anon_sym_BSLASHVref] = ACTIONS(12311), + [anon_sym_BSLASHautoref] = ACTIONS(12311), + [anon_sym_BSLASHpageref] = ACTIONS(12311), + [anon_sym_BSLASHcref] = ACTIONS(12311), + [anon_sym_BSLASHCref] = ACTIONS(12311), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnameCref] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12311), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12311), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12311), + [anon_sym_BSLASHlabelcref] = ACTIONS(12311), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12311), + [anon_sym_BSLASHeqref] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange] = ACTIONS(12311), + [anon_sym_BSLASHCrefrange] = ACTIONS(12311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewlabel] = ACTIONS(12311), + [anon_sym_BSLASHnewcommand] = ACTIONS(12311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12311), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12311), + [anon_sym_BSLASHgls] = ACTIONS(12311), + [anon_sym_BSLASHGls] = ACTIONS(12311), + [anon_sym_BSLASHGLS] = ACTIONS(12311), + [anon_sym_BSLASHglspl] = ACTIONS(12311), + [anon_sym_BSLASHGlspl] = ACTIONS(12311), + [anon_sym_BSLASHGLSpl] = ACTIONS(12311), + [anon_sym_BSLASHglsdisp] = ACTIONS(12311), + [anon_sym_BSLASHglslink] = ACTIONS(12311), + [anon_sym_BSLASHglstext] = ACTIONS(12311), + [anon_sym_BSLASHGlstext] = ACTIONS(12311), + [anon_sym_BSLASHGLStext] = ACTIONS(12311), + [anon_sym_BSLASHglsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12311), + [anon_sym_BSLASHglsplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSplural] = ACTIONS(12311), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12311), + [anon_sym_BSLASHglsname] = ACTIONS(12311), + [anon_sym_BSLASHGlsname] = ACTIONS(12311), + [anon_sym_BSLASHGLSname] = ACTIONS(12311), + [anon_sym_BSLASHglssymbol] = ACTIONS(12311), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12311), + [anon_sym_BSLASHglsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12311), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12311), + [anon_sym_BSLASHglsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12311), + [anon_sym_BSLASHglsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12311), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12311), + [anon_sym_BSLASHglsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12311), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12311), + [anon_sym_BSLASHglsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12311), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12311), + [anon_sym_BSLASHnewacronym] = ACTIONS(12311), + [anon_sym_BSLASHacrshort] = ACTIONS(12311), + [anon_sym_BSLASHAcrshort] = ACTIONS(12311), + [anon_sym_BSLASHACRshort] = ACTIONS(12311), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12311), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12311), + [anon_sym_BSLASHacrlong] = ACTIONS(12311), + [anon_sym_BSLASHAcrlong] = ACTIONS(12311), + [anon_sym_BSLASHACRlong] = ACTIONS(12311), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12311), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12311), + [anon_sym_BSLASHacrfull] = ACTIONS(12311), + [anon_sym_BSLASHAcrfull] = ACTIONS(12311), + [anon_sym_BSLASHACRfull] = ACTIONS(12311), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12311), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12311), + [anon_sym_BSLASHacs] = ACTIONS(12311), + [anon_sym_BSLASHAcs] = ACTIONS(12311), + [anon_sym_BSLASHacsp] = ACTIONS(12311), + [anon_sym_BSLASHAcsp] = ACTIONS(12311), + [anon_sym_BSLASHacl] = ACTIONS(12311), + [anon_sym_BSLASHAcl] = ACTIONS(12311), + [anon_sym_BSLASHaclp] = ACTIONS(12311), + [anon_sym_BSLASHAclp] = ACTIONS(12311), + [anon_sym_BSLASHacf] = ACTIONS(12311), + [anon_sym_BSLASHAcf] = ACTIONS(12311), + [anon_sym_BSLASHacfp] = ACTIONS(12311), + [anon_sym_BSLASHAcfp] = ACTIONS(12311), + [anon_sym_BSLASHac] = ACTIONS(12311), + [anon_sym_BSLASHAc] = ACTIONS(12311), + [anon_sym_BSLASHacp] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12311), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12311), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12311), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12311), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12311), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12311), + [anon_sym_BSLASHcolor] = ACTIONS(12311), + [anon_sym_BSLASHcolorbox] = ACTIONS(12311), + [anon_sym_BSLASHtextcolor] = ACTIONS(12311), + [anon_sym_BSLASHpagecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12311), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12311), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12311), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12311), + }, + [1915] = { + [sym_generic_command_name] = ACTIONS(12108), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12106), + [anon_sym_RBRACK] = ACTIONS(12106), + [anon_sym_LBRACE] = ACTIONS(12106), + [anon_sym_RBRACE] = ACTIONS(12106), + [anon_sym_LPAREN] = ACTIONS(12106), + [anon_sym_COMMA] = ACTIONS(12106), + [anon_sym_EQ] = ACTIONS(12106), + [sym_word] = ACTIONS(12106), + [sym_param] = ACTIONS(12106), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12106), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12106), + [anon_sym_DOLLAR] = ACTIONS(12108), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12106), + [anon_sym_BSLASHbegin] = ACTIONS(12108), + [anon_sym_BSLASHcaption] = ACTIONS(12108), + [anon_sym_BSLASHcite] = ACTIONS(12108), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCite] = ACTIONS(12108), + [anon_sym_BSLASHnocite] = ACTIONS(12108), + [anon_sym_BSLASHcitet] = ACTIONS(12108), + [anon_sym_BSLASHcitep] = ACTIONS(12108), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteauthor] = ACTIONS(12108), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12108), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitetitle] = ACTIONS(12108), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteyear] = ACTIONS(12108), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12106), + [anon_sym_BSLASHcitedate] = ACTIONS(12108), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12106), + [anon_sym_BSLASHciteurl] = ACTIONS(12108), + [anon_sym_BSLASHfullcite] = ACTIONS(12108), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12108), + [anon_sym_BSLASHcitealt] = ACTIONS(12108), + [anon_sym_BSLASHcitealp] = ACTIONS(12108), + [anon_sym_BSLASHcitetext] = ACTIONS(12108), + [anon_sym_BSLASHparencite] = ACTIONS(12108), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHParencite] = ACTIONS(12108), + [anon_sym_BSLASHfootcite] = ACTIONS(12108), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12108), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12108), + [anon_sym_BSLASHtextcite] = ACTIONS(12108), + [anon_sym_BSLASHTextcite] = ACTIONS(12108), + [anon_sym_BSLASHsmartcite] = ACTIONS(12108), + [anon_sym_BSLASHSmartcite] = ACTIONS(12108), + [anon_sym_BSLASHsupercite] = ACTIONS(12108), + [anon_sym_BSLASHautocite] = ACTIONS(12108), + [anon_sym_BSLASHAutocite] = ACTIONS(12108), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12106), + [anon_sym_BSLASHvolcite] = ACTIONS(12108), + [anon_sym_BSLASHVolcite] = ACTIONS(12108), + [anon_sym_BSLASHpvolcite] = ACTIONS(12108), + [anon_sym_BSLASHPvolcite] = ACTIONS(12108), + [anon_sym_BSLASHfvolcite] = ACTIONS(12108), + [anon_sym_BSLASHftvolcite] = ACTIONS(12108), + [anon_sym_BSLASHsvolcite] = ACTIONS(12108), + [anon_sym_BSLASHSvolcite] = ACTIONS(12108), + [anon_sym_BSLASHtvolcite] = ACTIONS(12108), + [anon_sym_BSLASHTvolcite] = ACTIONS(12108), + [anon_sym_BSLASHavolcite] = ACTIONS(12108), + [anon_sym_BSLASHAvolcite] = ACTIONS(12108), + [anon_sym_BSLASHnotecite] = ACTIONS(12108), + [anon_sym_BSLASHpnotecite] = ACTIONS(12108), + [anon_sym_BSLASHPnotecite] = ACTIONS(12108), + [anon_sym_BSLASHfnotecite] = ACTIONS(12108), + [anon_sym_BSLASHusepackage] = ACTIONS(12108), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12108), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12108), + [anon_sym_BSLASHinclude] = ACTIONS(12108), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12108), + [anon_sym_BSLASHinput] = ACTIONS(12108), + [anon_sym_BSLASHsubfile] = ACTIONS(12108), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12108), + [anon_sym_BSLASHbibliography] = ACTIONS(12108), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12108), + [anon_sym_BSLASHincludesvg] = ACTIONS(12108), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12108), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12108), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12108), + [anon_sym_BSLASHimport] = ACTIONS(12108), + [anon_sym_BSLASHsubimport] = ACTIONS(12108), + [anon_sym_BSLASHinputfrom] = ACTIONS(12108), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12108), + [anon_sym_BSLASHincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12108), + [anon_sym_BSLASHlabel] = ACTIONS(12108), + [anon_sym_BSLASHref] = ACTIONS(12108), + [anon_sym_BSLASHvref] = ACTIONS(12108), + [anon_sym_BSLASHVref] = ACTIONS(12108), + [anon_sym_BSLASHautoref] = ACTIONS(12108), + [anon_sym_BSLASHpageref] = ACTIONS(12108), + [anon_sym_BSLASHcref] = ACTIONS(12108), + [anon_sym_BSLASHCref] = ACTIONS(12108), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnameCref] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12108), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12108), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12108), + [anon_sym_BSLASHlabelcref] = ACTIONS(12108), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12108), + [anon_sym_BSLASHeqref] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange] = ACTIONS(12108), + [anon_sym_BSLASHCrefrange] = ACTIONS(12108), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewlabel] = ACTIONS(12108), + [anon_sym_BSLASHnewcommand] = ACTIONS(12108), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12108), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12106), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12108), + [anon_sym_BSLASHgls] = ACTIONS(12108), + [anon_sym_BSLASHGls] = ACTIONS(12108), + [anon_sym_BSLASHGLS] = ACTIONS(12108), + [anon_sym_BSLASHglspl] = ACTIONS(12108), + [anon_sym_BSLASHGlspl] = ACTIONS(12108), + [anon_sym_BSLASHGLSpl] = ACTIONS(12108), + [anon_sym_BSLASHglsdisp] = ACTIONS(12108), + [anon_sym_BSLASHglslink] = ACTIONS(12108), + [anon_sym_BSLASHglstext] = ACTIONS(12108), + [anon_sym_BSLASHGlstext] = ACTIONS(12108), + [anon_sym_BSLASHGLStext] = ACTIONS(12108), + [anon_sym_BSLASHglsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12108), + [anon_sym_BSLASHglsplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSplural] = ACTIONS(12108), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12108), + [anon_sym_BSLASHglsname] = ACTIONS(12108), + [anon_sym_BSLASHGlsname] = ACTIONS(12108), + [anon_sym_BSLASHGLSname] = ACTIONS(12108), + [anon_sym_BSLASHglssymbol] = ACTIONS(12108), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12108), + [anon_sym_BSLASHglsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12108), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12108), + [anon_sym_BSLASHglsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12108), + [anon_sym_BSLASHglsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12108), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12108), + [anon_sym_BSLASHglsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12108), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12108), + [anon_sym_BSLASHglsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12108), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12108), + [anon_sym_BSLASHnewacronym] = ACTIONS(12108), + [anon_sym_BSLASHacrshort] = ACTIONS(12108), + [anon_sym_BSLASHAcrshort] = ACTIONS(12108), + [anon_sym_BSLASHACRshort] = ACTIONS(12108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12108), + [anon_sym_BSLASHacrlong] = ACTIONS(12108), + [anon_sym_BSLASHAcrlong] = ACTIONS(12108), + [anon_sym_BSLASHACRlong] = ACTIONS(12108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12108), + [anon_sym_BSLASHacrfull] = ACTIONS(12108), + [anon_sym_BSLASHAcrfull] = ACTIONS(12108), + [anon_sym_BSLASHACRfull] = ACTIONS(12108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12108), + [anon_sym_BSLASHacs] = ACTIONS(12108), + [anon_sym_BSLASHAcs] = ACTIONS(12108), + [anon_sym_BSLASHacsp] = ACTIONS(12108), + [anon_sym_BSLASHAcsp] = ACTIONS(12108), + [anon_sym_BSLASHacl] = ACTIONS(12108), + [anon_sym_BSLASHAcl] = ACTIONS(12108), + [anon_sym_BSLASHaclp] = ACTIONS(12108), + [anon_sym_BSLASHAclp] = ACTIONS(12108), + [anon_sym_BSLASHacf] = ACTIONS(12108), + [anon_sym_BSLASHAcf] = ACTIONS(12108), + [anon_sym_BSLASHacfp] = ACTIONS(12108), + [anon_sym_BSLASHAcfp] = ACTIONS(12108), + [anon_sym_BSLASHac] = ACTIONS(12108), + [anon_sym_BSLASHAc] = ACTIONS(12108), + [anon_sym_BSLASHacp] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12108), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12108), + [anon_sym_BSLASHcolor] = ACTIONS(12108), + [anon_sym_BSLASHcolorbox] = ACTIONS(12108), + [anon_sym_BSLASHtextcolor] = ACTIONS(12108), + [anon_sym_BSLASHpagecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12108), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12108), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12108), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12108), + }, + [1916] = { + [sym_generic_command_name] = ACTIONS(12287), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12285), + [anon_sym_RBRACK] = ACTIONS(12285), + [anon_sym_LBRACE] = ACTIONS(12285), + [anon_sym_RBRACE] = ACTIONS(12285), + [anon_sym_LPAREN] = ACTIONS(12285), + [anon_sym_COMMA] = ACTIONS(12285), + [anon_sym_EQ] = ACTIONS(12285), + [sym_word] = ACTIONS(12285), + [sym_param] = ACTIONS(12285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12285), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12285), + [anon_sym_DOLLAR] = ACTIONS(12287), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12285), + [anon_sym_BSLASHbegin] = ACTIONS(12287), + [anon_sym_BSLASHcaption] = ACTIONS(12287), + [anon_sym_BSLASHcite] = ACTIONS(12287), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCite] = ACTIONS(12287), + [anon_sym_BSLASHnocite] = ACTIONS(12287), + [anon_sym_BSLASHcitet] = ACTIONS(12287), + [anon_sym_BSLASHcitep] = ACTIONS(12287), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteauthor] = ACTIONS(12287), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12287), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitetitle] = ACTIONS(12287), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteyear] = ACTIONS(12287), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12285), + [anon_sym_BSLASHcitedate] = ACTIONS(12287), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12285), + [anon_sym_BSLASHciteurl] = ACTIONS(12287), + [anon_sym_BSLASHfullcite] = ACTIONS(12287), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12287), + [anon_sym_BSLASHcitealt] = ACTIONS(12287), + [anon_sym_BSLASHcitealp] = ACTIONS(12287), + [anon_sym_BSLASHcitetext] = ACTIONS(12287), + [anon_sym_BSLASHparencite] = ACTIONS(12287), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHParencite] = ACTIONS(12287), + [anon_sym_BSLASHfootcite] = ACTIONS(12287), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12287), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12287), + [anon_sym_BSLASHtextcite] = ACTIONS(12287), + [anon_sym_BSLASHTextcite] = ACTIONS(12287), + [anon_sym_BSLASHsmartcite] = ACTIONS(12287), + [anon_sym_BSLASHSmartcite] = ACTIONS(12287), + [anon_sym_BSLASHsupercite] = ACTIONS(12287), + [anon_sym_BSLASHautocite] = ACTIONS(12287), + [anon_sym_BSLASHAutocite] = ACTIONS(12287), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12285), + [anon_sym_BSLASHvolcite] = ACTIONS(12287), + [anon_sym_BSLASHVolcite] = ACTIONS(12287), + [anon_sym_BSLASHpvolcite] = ACTIONS(12287), + [anon_sym_BSLASHPvolcite] = ACTIONS(12287), + [anon_sym_BSLASHfvolcite] = ACTIONS(12287), + [anon_sym_BSLASHftvolcite] = ACTIONS(12287), + [anon_sym_BSLASHsvolcite] = ACTIONS(12287), + [anon_sym_BSLASHSvolcite] = ACTIONS(12287), + [anon_sym_BSLASHtvolcite] = ACTIONS(12287), + [anon_sym_BSLASHTvolcite] = ACTIONS(12287), + [anon_sym_BSLASHavolcite] = ACTIONS(12287), + [anon_sym_BSLASHAvolcite] = ACTIONS(12287), + [anon_sym_BSLASHnotecite] = ACTIONS(12287), + [anon_sym_BSLASHpnotecite] = ACTIONS(12287), + [anon_sym_BSLASHPnotecite] = ACTIONS(12287), + [anon_sym_BSLASHfnotecite] = ACTIONS(12287), + [anon_sym_BSLASHusepackage] = ACTIONS(12287), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12287), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12287), + [anon_sym_BSLASHinclude] = ACTIONS(12287), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12287), + [anon_sym_BSLASHinput] = ACTIONS(12287), + [anon_sym_BSLASHsubfile] = ACTIONS(12287), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12287), + [anon_sym_BSLASHbibliography] = ACTIONS(12287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12287), + [anon_sym_BSLASHincludesvg] = ACTIONS(12287), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12287), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12287), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12287), + [anon_sym_BSLASHimport] = ACTIONS(12287), + [anon_sym_BSLASHsubimport] = ACTIONS(12287), + [anon_sym_BSLASHinputfrom] = ACTIONS(12287), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12287), + [anon_sym_BSLASHincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12287), + [anon_sym_BSLASHlabel] = ACTIONS(12287), + [anon_sym_BSLASHref] = ACTIONS(12287), + [anon_sym_BSLASHvref] = ACTIONS(12287), + [anon_sym_BSLASHVref] = ACTIONS(12287), + [anon_sym_BSLASHautoref] = ACTIONS(12287), + [anon_sym_BSLASHpageref] = ACTIONS(12287), + [anon_sym_BSLASHcref] = ACTIONS(12287), + [anon_sym_BSLASHCref] = ACTIONS(12287), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnameCref] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12287), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12287), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12287), + [anon_sym_BSLASHlabelcref] = ACTIONS(12287), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12287), + [anon_sym_BSLASHeqref] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange] = ACTIONS(12287), + [anon_sym_BSLASHCrefrange] = ACTIONS(12287), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewlabel] = ACTIONS(12287), + [anon_sym_BSLASHnewcommand] = ACTIONS(12287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12287), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12287), + [anon_sym_BSLASHgls] = ACTIONS(12287), + [anon_sym_BSLASHGls] = ACTIONS(12287), + [anon_sym_BSLASHGLS] = ACTIONS(12287), + [anon_sym_BSLASHglspl] = ACTIONS(12287), + [anon_sym_BSLASHGlspl] = ACTIONS(12287), + [anon_sym_BSLASHGLSpl] = ACTIONS(12287), + [anon_sym_BSLASHglsdisp] = ACTIONS(12287), + [anon_sym_BSLASHglslink] = ACTIONS(12287), + [anon_sym_BSLASHglstext] = ACTIONS(12287), + [anon_sym_BSLASHGlstext] = ACTIONS(12287), + [anon_sym_BSLASHGLStext] = ACTIONS(12287), + [anon_sym_BSLASHglsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12287), + [anon_sym_BSLASHglsplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSplural] = ACTIONS(12287), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12287), + [anon_sym_BSLASHglsname] = ACTIONS(12287), + [anon_sym_BSLASHGlsname] = ACTIONS(12287), + [anon_sym_BSLASHGLSname] = ACTIONS(12287), + [anon_sym_BSLASHglssymbol] = ACTIONS(12287), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12287), + [anon_sym_BSLASHglsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12287), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12287), + [anon_sym_BSLASHglsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12287), + [anon_sym_BSLASHglsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12287), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12287), + [anon_sym_BSLASHglsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12287), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12287), + [anon_sym_BSLASHglsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12287), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12287), + [anon_sym_BSLASHnewacronym] = ACTIONS(12287), + [anon_sym_BSLASHacrshort] = ACTIONS(12287), + [anon_sym_BSLASHAcrshort] = ACTIONS(12287), + [anon_sym_BSLASHACRshort] = ACTIONS(12287), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12287), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12287), + [anon_sym_BSLASHacrlong] = ACTIONS(12287), + [anon_sym_BSLASHAcrlong] = ACTIONS(12287), + [anon_sym_BSLASHACRlong] = ACTIONS(12287), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12287), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12287), + [anon_sym_BSLASHacrfull] = ACTIONS(12287), + [anon_sym_BSLASHAcrfull] = ACTIONS(12287), + [anon_sym_BSLASHACRfull] = ACTIONS(12287), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12287), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12287), + [anon_sym_BSLASHacs] = ACTIONS(12287), + [anon_sym_BSLASHAcs] = ACTIONS(12287), + [anon_sym_BSLASHacsp] = ACTIONS(12287), + [anon_sym_BSLASHAcsp] = ACTIONS(12287), + [anon_sym_BSLASHacl] = ACTIONS(12287), + [anon_sym_BSLASHAcl] = ACTIONS(12287), + [anon_sym_BSLASHaclp] = ACTIONS(12287), + [anon_sym_BSLASHAclp] = ACTIONS(12287), + [anon_sym_BSLASHacf] = ACTIONS(12287), + [anon_sym_BSLASHAcf] = ACTIONS(12287), + [anon_sym_BSLASHacfp] = ACTIONS(12287), + [anon_sym_BSLASHAcfp] = ACTIONS(12287), + [anon_sym_BSLASHac] = ACTIONS(12287), + [anon_sym_BSLASHAc] = ACTIONS(12287), + [anon_sym_BSLASHacp] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12287), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12287), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12287), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12287), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12287), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12287), + [anon_sym_BSLASHcolor] = ACTIONS(12287), + [anon_sym_BSLASHcolorbox] = ACTIONS(12287), + [anon_sym_BSLASHtextcolor] = ACTIONS(12287), + [anon_sym_BSLASHpagecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12287), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12287), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12287), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12287), + }, + [1917] = { + [sym_generic_command_name] = ACTIONS(12291), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12289), + [anon_sym_RBRACK] = ACTIONS(12289), + [anon_sym_LBRACE] = ACTIONS(12289), + [anon_sym_RBRACE] = ACTIONS(12289), + [anon_sym_LPAREN] = ACTIONS(12289), + [anon_sym_COMMA] = ACTIONS(12289), + [anon_sym_EQ] = ACTIONS(12289), + [sym_word] = ACTIONS(12289), + [sym_param] = ACTIONS(12289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12289), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12289), + [anon_sym_DOLLAR] = ACTIONS(12291), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12289), + [anon_sym_BSLASHbegin] = ACTIONS(12291), + [anon_sym_BSLASHcaption] = ACTIONS(12291), + [anon_sym_BSLASHcite] = ACTIONS(12291), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCite] = ACTIONS(12291), + [anon_sym_BSLASHnocite] = ACTIONS(12291), + [anon_sym_BSLASHcitet] = ACTIONS(12291), + [anon_sym_BSLASHcitep] = ACTIONS(12291), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteauthor] = ACTIONS(12291), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12291), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitetitle] = ACTIONS(12291), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteyear] = ACTIONS(12291), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12289), + [anon_sym_BSLASHcitedate] = ACTIONS(12291), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12289), + [anon_sym_BSLASHciteurl] = ACTIONS(12291), + [anon_sym_BSLASHfullcite] = ACTIONS(12291), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12291), + [anon_sym_BSLASHcitealt] = ACTIONS(12291), + [anon_sym_BSLASHcitealp] = ACTIONS(12291), + [anon_sym_BSLASHcitetext] = ACTIONS(12291), + [anon_sym_BSLASHparencite] = ACTIONS(12291), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHParencite] = ACTIONS(12291), + [anon_sym_BSLASHfootcite] = ACTIONS(12291), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12291), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12291), + [anon_sym_BSLASHtextcite] = ACTIONS(12291), + [anon_sym_BSLASHTextcite] = ACTIONS(12291), + [anon_sym_BSLASHsmartcite] = ACTIONS(12291), + [anon_sym_BSLASHSmartcite] = ACTIONS(12291), + [anon_sym_BSLASHsupercite] = ACTIONS(12291), + [anon_sym_BSLASHautocite] = ACTIONS(12291), + [anon_sym_BSLASHAutocite] = ACTIONS(12291), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12289), + [anon_sym_BSLASHvolcite] = ACTIONS(12291), + [anon_sym_BSLASHVolcite] = ACTIONS(12291), + [anon_sym_BSLASHpvolcite] = ACTIONS(12291), + [anon_sym_BSLASHPvolcite] = ACTIONS(12291), + [anon_sym_BSLASHfvolcite] = ACTIONS(12291), + [anon_sym_BSLASHftvolcite] = ACTIONS(12291), + [anon_sym_BSLASHsvolcite] = ACTIONS(12291), + [anon_sym_BSLASHSvolcite] = ACTIONS(12291), + [anon_sym_BSLASHtvolcite] = ACTIONS(12291), + [anon_sym_BSLASHTvolcite] = ACTIONS(12291), + [anon_sym_BSLASHavolcite] = ACTIONS(12291), + [anon_sym_BSLASHAvolcite] = ACTIONS(12291), + [anon_sym_BSLASHnotecite] = ACTIONS(12291), + [anon_sym_BSLASHpnotecite] = ACTIONS(12291), + [anon_sym_BSLASHPnotecite] = ACTIONS(12291), + [anon_sym_BSLASHfnotecite] = ACTIONS(12291), + [anon_sym_BSLASHusepackage] = ACTIONS(12291), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12291), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12291), + [anon_sym_BSLASHinclude] = ACTIONS(12291), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12291), + [anon_sym_BSLASHinput] = ACTIONS(12291), + [anon_sym_BSLASHsubfile] = ACTIONS(12291), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12291), + [anon_sym_BSLASHbibliography] = ACTIONS(12291), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12291), + [anon_sym_BSLASHincludesvg] = ACTIONS(12291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12291), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12291), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12291), + [anon_sym_BSLASHimport] = ACTIONS(12291), + [anon_sym_BSLASHsubimport] = ACTIONS(12291), + [anon_sym_BSLASHinputfrom] = ACTIONS(12291), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12291), + [anon_sym_BSLASHincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12291), + [anon_sym_BSLASHlabel] = ACTIONS(12291), + [anon_sym_BSLASHref] = ACTIONS(12291), + [anon_sym_BSLASHvref] = ACTIONS(12291), + [anon_sym_BSLASHVref] = ACTIONS(12291), + [anon_sym_BSLASHautoref] = ACTIONS(12291), + [anon_sym_BSLASHpageref] = ACTIONS(12291), + [anon_sym_BSLASHcref] = ACTIONS(12291), + [anon_sym_BSLASHCref] = ACTIONS(12291), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnameCref] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12291), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12291), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12291), + [anon_sym_BSLASHlabelcref] = ACTIONS(12291), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12291), + [anon_sym_BSLASHeqref] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange] = ACTIONS(12291), + [anon_sym_BSLASHCrefrange] = ACTIONS(12291), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewlabel] = ACTIONS(12291), + [anon_sym_BSLASHnewcommand] = ACTIONS(12291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12291), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12291), + [anon_sym_BSLASHgls] = ACTIONS(12291), + [anon_sym_BSLASHGls] = ACTIONS(12291), + [anon_sym_BSLASHGLS] = ACTIONS(12291), + [anon_sym_BSLASHglspl] = ACTIONS(12291), + [anon_sym_BSLASHGlspl] = ACTIONS(12291), + [anon_sym_BSLASHGLSpl] = ACTIONS(12291), + [anon_sym_BSLASHglsdisp] = ACTIONS(12291), + [anon_sym_BSLASHglslink] = ACTIONS(12291), + [anon_sym_BSLASHglstext] = ACTIONS(12291), + [anon_sym_BSLASHGlstext] = ACTIONS(12291), + [anon_sym_BSLASHGLStext] = ACTIONS(12291), + [anon_sym_BSLASHglsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12291), + [anon_sym_BSLASHglsplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSplural] = ACTIONS(12291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12291), + [anon_sym_BSLASHglsname] = ACTIONS(12291), + [anon_sym_BSLASHGlsname] = ACTIONS(12291), + [anon_sym_BSLASHGLSname] = ACTIONS(12291), + [anon_sym_BSLASHglssymbol] = ACTIONS(12291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12291), + [anon_sym_BSLASHglsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12291), + [anon_sym_BSLASHglsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12291), + [anon_sym_BSLASHglsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12291), + [anon_sym_BSLASHglsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12291), + [anon_sym_BSLASHglsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12291), + [anon_sym_BSLASHnewacronym] = ACTIONS(12291), + [anon_sym_BSLASHacrshort] = ACTIONS(12291), + [anon_sym_BSLASHAcrshort] = ACTIONS(12291), + [anon_sym_BSLASHACRshort] = ACTIONS(12291), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12291), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12291), + [anon_sym_BSLASHacrlong] = ACTIONS(12291), + [anon_sym_BSLASHAcrlong] = ACTIONS(12291), + [anon_sym_BSLASHACRlong] = ACTIONS(12291), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12291), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12291), + [anon_sym_BSLASHacrfull] = ACTIONS(12291), + [anon_sym_BSLASHAcrfull] = ACTIONS(12291), + [anon_sym_BSLASHACRfull] = ACTIONS(12291), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12291), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12291), + [anon_sym_BSLASHacs] = ACTIONS(12291), + [anon_sym_BSLASHAcs] = ACTIONS(12291), + [anon_sym_BSLASHacsp] = ACTIONS(12291), + [anon_sym_BSLASHAcsp] = ACTIONS(12291), + [anon_sym_BSLASHacl] = ACTIONS(12291), + [anon_sym_BSLASHAcl] = ACTIONS(12291), + [anon_sym_BSLASHaclp] = ACTIONS(12291), + [anon_sym_BSLASHAclp] = ACTIONS(12291), + [anon_sym_BSLASHacf] = ACTIONS(12291), + [anon_sym_BSLASHAcf] = ACTIONS(12291), + [anon_sym_BSLASHacfp] = ACTIONS(12291), + [anon_sym_BSLASHAcfp] = ACTIONS(12291), + [anon_sym_BSLASHac] = ACTIONS(12291), + [anon_sym_BSLASHAc] = ACTIONS(12291), + [anon_sym_BSLASHacp] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12291), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12291), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12291), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12291), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12291), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12291), + [anon_sym_BSLASHcolor] = ACTIONS(12291), + [anon_sym_BSLASHcolorbox] = ACTIONS(12291), + [anon_sym_BSLASHtextcolor] = ACTIONS(12291), + [anon_sym_BSLASHpagecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12291), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12291), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12291), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12291), + }, + [1918] = { + [sym_generic_command_name] = ACTIONS(12327), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12325), + [anon_sym_RBRACK] = ACTIONS(12325), + [anon_sym_LBRACE] = ACTIONS(12325), + [anon_sym_RBRACE] = ACTIONS(12325), + [anon_sym_LPAREN] = ACTIONS(12325), + [anon_sym_COMMA] = ACTIONS(12325), + [anon_sym_EQ] = ACTIONS(12325), + [sym_word] = ACTIONS(12325), + [sym_param] = ACTIONS(12325), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12325), + [anon_sym_DOLLAR] = ACTIONS(12327), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12325), + [anon_sym_BSLASHbegin] = ACTIONS(12327), + [anon_sym_BSLASHcaption] = ACTIONS(12327), + [anon_sym_BSLASHcite] = ACTIONS(12327), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCite] = ACTIONS(12327), + [anon_sym_BSLASHnocite] = ACTIONS(12327), + [anon_sym_BSLASHcitet] = ACTIONS(12327), + [anon_sym_BSLASHcitep] = ACTIONS(12327), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteauthor] = ACTIONS(12327), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12327), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitetitle] = ACTIONS(12327), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteyear] = ACTIONS(12327), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12325), + [anon_sym_BSLASHcitedate] = ACTIONS(12327), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12325), + [anon_sym_BSLASHciteurl] = ACTIONS(12327), + [anon_sym_BSLASHfullcite] = ACTIONS(12327), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12327), + [anon_sym_BSLASHcitealt] = ACTIONS(12327), + [anon_sym_BSLASHcitealp] = ACTIONS(12327), + [anon_sym_BSLASHcitetext] = ACTIONS(12327), + [anon_sym_BSLASHparencite] = ACTIONS(12327), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHParencite] = ACTIONS(12327), + [anon_sym_BSLASHfootcite] = ACTIONS(12327), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12327), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12327), + [anon_sym_BSLASHtextcite] = ACTIONS(12327), + [anon_sym_BSLASHTextcite] = ACTIONS(12327), + [anon_sym_BSLASHsmartcite] = ACTIONS(12327), + [anon_sym_BSLASHSmartcite] = ACTIONS(12327), + [anon_sym_BSLASHsupercite] = ACTIONS(12327), + [anon_sym_BSLASHautocite] = ACTIONS(12327), + [anon_sym_BSLASHAutocite] = ACTIONS(12327), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12325), + [anon_sym_BSLASHvolcite] = ACTIONS(12327), + [anon_sym_BSLASHVolcite] = ACTIONS(12327), + [anon_sym_BSLASHpvolcite] = ACTIONS(12327), + [anon_sym_BSLASHPvolcite] = ACTIONS(12327), + [anon_sym_BSLASHfvolcite] = ACTIONS(12327), + [anon_sym_BSLASHftvolcite] = ACTIONS(12327), + [anon_sym_BSLASHsvolcite] = ACTIONS(12327), + [anon_sym_BSLASHSvolcite] = ACTIONS(12327), + [anon_sym_BSLASHtvolcite] = ACTIONS(12327), + [anon_sym_BSLASHTvolcite] = ACTIONS(12327), + [anon_sym_BSLASHavolcite] = ACTIONS(12327), + [anon_sym_BSLASHAvolcite] = ACTIONS(12327), + [anon_sym_BSLASHnotecite] = ACTIONS(12327), + [anon_sym_BSLASHpnotecite] = ACTIONS(12327), + [anon_sym_BSLASHPnotecite] = ACTIONS(12327), + [anon_sym_BSLASHfnotecite] = ACTIONS(12327), + [anon_sym_BSLASHusepackage] = ACTIONS(12327), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12327), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12327), + [anon_sym_BSLASHinclude] = ACTIONS(12327), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12327), + [anon_sym_BSLASHinput] = ACTIONS(12327), + [anon_sym_BSLASHsubfile] = ACTIONS(12327), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12327), + [anon_sym_BSLASHbibliography] = ACTIONS(12327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12327), + [anon_sym_BSLASHincludesvg] = ACTIONS(12327), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12327), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12327), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12327), + [anon_sym_BSLASHimport] = ACTIONS(12327), + [anon_sym_BSLASHsubimport] = ACTIONS(12327), + [anon_sym_BSLASHinputfrom] = ACTIONS(12327), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12327), + [anon_sym_BSLASHincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12327), + [anon_sym_BSLASHlabel] = ACTIONS(12327), + [anon_sym_BSLASHref] = ACTIONS(12327), + [anon_sym_BSLASHvref] = ACTIONS(12327), + [anon_sym_BSLASHVref] = ACTIONS(12327), + [anon_sym_BSLASHautoref] = ACTIONS(12327), + [anon_sym_BSLASHpageref] = ACTIONS(12327), + [anon_sym_BSLASHcref] = ACTIONS(12327), + [anon_sym_BSLASHCref] = ACTIONS(12327), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnameCref] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12327), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12327), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12327), + [anon_sym_BSLASHlabelcref] = ACTIONS(12327), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12327), + [anon_sym_BSLASHeqref] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange] = ACTIONS(12327), + [anon_sym_BSLASHCrefrange] = ACTIONS(12327), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewlabel] = ACTIONS(12327), + [anon_sym_BSLASHnewcommand] = ACTIONS(12327), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12327), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12327), + [anon_sym_BSLASHgls] = ACTIONS(12327), + [anon_sym_BSLASHGls] = ACTIONS(12327), + [anon_sym_BSLASHGLS] = ACTIONS(12327), + [anon_sym_BSLASHglspl] = ACTIONS(12327), + [anon_sym_BSLASHGlspl] = ACTIONS(12327), + [anon_sym_BSLASHGLSpl] = ACTIONS(12327), + [anon_sym_BSLASHglsdisp] = ACTIONS(12327), + [anon_sym_BSLASHglslink] = ACTIONS(12327), + [anon_sym_BSLASHglstext] = ACTIONS(12327), + [anon_sym_BSLASHGlstext] = ACTIONS(12327), + [anon_sym_BSLASHGLStext] = ACTIONS(12327), + [anon_sym_BSLASHglsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12327), + [anon_sym_BSLASHglsplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSplural] = ACTIONS(12327), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12327), + [anon_sym_BSLASHglsname] = ACTIONS(12327), + [anon_sym_BSLASHGlsname] = ACTIONS(12327), + [anon_sym_BSLASHGLSname] = ACTIONS(12327), + [anon_sym_BSLASHglssymbol] = ACTIONS(12327), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12327), + [anon_sym_BSLASHglsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12327), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12327), + [anon_sym_BSLASHglsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12327), + [anon_sym_BSLASHglsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12327), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12327), + [anon_sym_BSLASHglsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12327), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12327), + [anon_sym_BSLASHglsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12327), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12327), + [anon_sym_BSLASHnewacronym] = ACTIONS(12327), + [anon_sym_BSLASHacrshort] = ACTIONS(12327), + [anon_sym_BSLASHAcrshort] = ACTIONS(12327), + [anon_sym_BSLASHACRshort] = ACTIONS(12327), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12327), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12327), + [anon_sym_BSLASHacrlong] = ACTIONS(12327), + [anon_sym_BSLASHAcrlong] = ACTIONS(12327), + [anon_sym_BSLASHACRlong] = ACTIONS(12327), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12327), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12327), + [anon_sym_BSLASHacrfull] = ACTIONS(12327), + [anon_sym_BSLASHAcrfull] = ACTIONS(12327), + [anon_sym_BSLASHACRfull] = ACTIONS(12327), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12327), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12327), + [anon_sym_BSLASHacs] = ACTIONS(12327), + [anon_sym_BSLASHAcs] = ACTIONS(12327), + [anon_sym_BSLASHacsp] = ACTIONS(12327), + [anon_sym_BSLASHAcsp] = ACTIONS(12327), + [anon_sym_BSLASHacl] = ACTIONS(12327), + [anon_sym_BSLASHAcl] = ACTIONS(12327), + [anon_sym_BSLASHaclp] = ACTIONS(12327), + [anon_sym_BSLASHAclp] = ACTIONS(12327), + [anon_sym_BSLASHacf] = ACTIONS(12327), + [anon_sym_BSLASHAcf] = ACTIONS(12327), + [anon_sym_BSLASHacfp] = ACTIONS(12327), + [anon_sym_BSLASHAcfp] = ACTIONS(12327), + [anon_sym_BSLASHac] = ACTIONS(12327), + [anon_sym_BSLASHAc] = ACTIONS(12327), + [anon_sym_BSLASHacp] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12327), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12327), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12327), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12327), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12327), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12327), + [anon_sym_BSLASHcolor] = ACTIONS(12327), + [anon_sym_BSLASHcolorbox] = ACTIONS(12327), + [anon_sym_BSLASHtextcolor] = ACTIONS(12327), + [anon_sym_BSLASHpagecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12327), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12327), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12327), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12327), + }, + [1919] = { + [sym_generic_command_name] = ACTIONS(12295), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12293), + [anon_sym_RBRACK] = ACTIONS(12293), + [anon_sym_LBRACE] = ACTIONS(12293), + [anon_sym_RBRACE] = ACTIONS(12293), + [anon_sym_LPAREN] = ACTIONS(12293), + [anon_sym_COMMA] = ACTIONS(12293), + [anon_sym_EQ] = ACTIONS(12293), + [sym_word] = ACTIONS(12293), + [sym_param] = ACTIONS(12293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12293), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12293), + [anon_sym_DOLLAR] = ACTIONS(12295), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12293), + [anon_sym_BSLASHbegin] = ACTIONS(12295), + [anon_sym_BSLASHcaption] = ACTIONS(12295), + [anon_sym_BSLASHcite] = ACTIONS(12295), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCite] = ACTIONS(12295), + [anon_sym_BSLASHnocite] = ACTIONS(12295), + [anon_sym_BSLASHcitet] = ACTIONS(12295), + [anon_sym_BSLASHcitep] = ACTIONS(12295), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteauthor] = ACTIONS(12295), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12295), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitetitle] = ACTIONS(12295), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteyear] = ACTIONS(12295), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12293), + [anon_sym_BSLASHcitedate] = ACTIONS(12295), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12293), + [anon_sym_BSLASHciteurl] = ACTIONS(12295), + [anon_sym_BSLASHfullcite] = ACTIONS(12295), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12295), + [anon_sym_BSLASHcitealt] = ACTIONS(12295), + [anon_sym_BSLASHcitealp] = ACTIONS(12295), + [anon_sym_BSLASHcitetext] = ACTIONS(12295), + [anon_sym_BSLASHparencite] = ACTIONS(12295), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHParencite] = ACTIONS(12295), + [anon_sym_BSLASHfootcite] = ACTIONS(12295), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12295), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12295), + [anon_sym_BSLASHtextcite] = ACTIONS(12295), + [anon_sym_BSLASHTextcite] = ACTIONS(12295), + [anon_sym_BSLASHsmartcite] = ACTIONS(12295), + [anon_sym_BSLASHSmartcite] = ACTIONS(12295), + [anon_sym_BSLASHsupercite] = ACTIONS(12295), + [anon_sym_BSLASHautocite] = ACTIONS(12295), + [anon_sym_BSLASHAutocite] = ACTIONS(12295), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12293), + [anon_sym_BSLASHvolcite] = ACTIONS(12295), + [anon_sym_BSLASHVolcite] = ACTIONS(12295), + [anon_sym_BSLASHpvolcite] = ACTIONS(12295), + [anon_sym_BSLASHPvolcite] = ACTIONS(12295), + [anon_sym_BSLASHfvolcite] = ACTIONS(12295), + [anon_sym_BSLASHftvolcite] = ACTIONS(12295), + [anon_sym_BSLASHsvolcite] = ACTIONS(12295), + [anon_sym_BSLASHSvolcite] = ACTIONS(12295), + [anon_sym_BSLASHtvolcite] = ACTIONS(12295), + [anon_sym_BSLASHTvolcite] = ACTIONS(12295), + [anon_sym_BSLASHavolcite] = ACTIONS(12295), + [anon_sym_BSLASHAvolcite] = ACTIONS(12295), + [anon_sym_BSLASHnotecite] = ACTIONS(12295), + [anon_sym_BSLASHpnotecite] = ACTIONS(12295), + [anon_sym_BSLASHPnotecite] = ACTIONS(12295), + [anon_sym_BSLASHfnotecite] = ACTIONS(12295), + [anon_sym_BSLASHusepackage] = ACTIONS(12295), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12295), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12295), + [anon_sym_BSLASHinclude] = ACTIONS(12295), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12295), + [anon_sym_BSLASHinput] = ACTIONS(12295), + [anon_sym_BSLASHsubfile] = ACTIONS(12295), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12295), + [anon_sym_BSLASHbibliography] = ACTIONS(12295), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12295), + [anon_sym_BSLASHincludesvg] = ACTIONS(12295), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12295), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12295), + [anon_sym_BSLASHimport] = ACTIONS(12295), + [anon_sym_BSLASHsubimport] = ACTIONS(12295), + [anon_sym_BSLASHinputfrom] = ACTIONS(12295), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12295), + [anon_sym_BSLASHincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12295), + [anon_sym_BSLASHlabel] = ACTIONS(12295), + [anon_sym_BSLASHref] = ACTIONS(12295), + [anon_sym_BSLASHvref] = ACTIONS(12295), + [anon_sym_BSLASHVref] = ACTIONS(12295), + [anon_sym_BSLASHautoref] = ACTIONS(12295), + [anon_sym_BSLASHpageref] = ACTIONS(12295), + [anon_sym_BSLASHcref] = ACTIONS(12295), + [anon_sym_BSLASHCref] = ACTIONS(12295), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnameCref] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12295), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12295), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12295), + [anon_sym_BSLASHlabelcref] = ACTIONS(12295), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12295), + [anon_sym_BSLASHeqref] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange] = ACTIONS(12295), + [anon_sym_BSLASHCrefrange] = ACTIONS(12295), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewlabel] = ACTIONS(12295), + [anon_sym_BSLASHnewcommand] = ACTIONS(12295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12295), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12295), + [anon_sym_BSLASHgls] = ACTIONS(12295), + [anon_sym_BSLASHGls] = ACTIONS(12295), + [anon_sym_BSLASHGLS] = ACTIONS(12295), + [anon_sym_BSLASHglspl] = ACTIONS(12295), + [anon_sym_BSLASHGlspl] = ACTIONS(12295), + [anon_sym_BSLASHGLSpl] = ACTIONS(12295), + [anon_sym_BSLASHglsdisp] = ACTIONS(12295), + [anon_sym_BSLASHglslink] = ACTIONS(12295), + [anon_sym_BSLASHglstext] = ACTIONS(12295), + [anon_sym_BSLASHGlstext] = ACTIONS(12295), + [anon_sym_BSLASHGLStext] = ACTIONS(12295), + [anon_sym_BSLASHglsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12295), + [anon_sym_BSLASHglsplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSplural] = ACTIONS(12295), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12295), + [anon_sym_BSLASHglsname] = ACTIONS(12295), + [anon_sym_BSLASHGlsname] = ACTIONS(12295), + [anon_sym_BSLASHGLSname] = ACTIONS(12295), + [anon_sym_BSLASHglssymbol] = ACTIONS(12295), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12295), + [anon_sym_BSLASHglsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12295), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12295), + [anon_sym_BSLASHglsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12295), + [anon_sym_BSLASHglsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12295), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12295), + [anon_sym_BSLASHglsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12295), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12295), + [anon_sym_BSLASHglsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12295), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12295), + [anon_sym_BSLASHnewacronym] = ACTIONS(12295), + [anon_sym_BSLASHacrshort] = ACTIONS(12295), + [anon_sym_BSLASHAcrshort] = ACTIONS(12295), + [anon_sym_BSLASHACRshort] = ACTIONS(12295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12295), + [anon_sym_BSLASHacrlong] = ACTIONS(12295), + [anon_sym_BSLASHAcrlong] = ACTIONS(12295), + [anon_sym_BSLASHACRlong] = ACTIONS(12295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12295), + [anon_sym_BSLASHacrfull] = ACTIONS(12295), + [anon_sym_BSLASHAcrfull] = ACTIONS(12295), + [anon_sym_BSLASHACRfull] = ACTIONS(12295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12295), + [anon_sym_BSLASHacs] = ACTIONS(12295), + [anon_sym_BSLASHAcs] = ACTIONS(12295), + [anon_sym_BSLASHacsp] = ACTIONS(12295), + [anon_sym_BSLASHAcsp] = ACTIONS(12295), + [anon_sym_BSLASHacl] = ACTIONS(12295), + [anon_sym_BSLASHAcl] = ACTIONS(12295), + [anon_sym_BSLASHaclp] = ACTIONS(12295), + [anon_sym_BSLASHAclp] = ACTIONS(12295), + [anon_sym_BSLASHacf] = ACTIONS(12295), + [anon_sym_BSLASHAcf] = ACTIONS(12295), + [anon_sym_BSLASHacfp] = ACTIONS(12295), + [anon_sym_BSLASHAcfp] = ACTIONS(12295), + [anon_sym_BSLASHac] = ACTIONS(12295), + [anon_sym_BSLASHAc] = ACTIONS(12295), + [anon_sym_BSLASHacp] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12295), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12295), + [anon_sym_BSLASHcolor] = ACTIONS(12295), + [anon_sym_BSLASHcolorbox] = ACTIONS(12295), + [anon_sym_BSLASHtextcolor] = ACTIONS(12295), + [anon_sym_BSLASHpagecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12295), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12295), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12295), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12295), + }, + [1920] = { + [sym_generic_command_name] = ACTIONS(12303), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12301), + [anon_sym_RBRACK] = ACTIONS(12301), + [anon_sym_LBRACE] = ACTIONS(12301), + [anon_sym_RBRACE] = ACTIONS(12301), + [anon_sym_LPAREN] = ACTIONS(12301), + [anon_sym_COMMA] = ACTIONS(12301), + [anon_sym_EQ] = ACTIONS(12301), + [sym_word] = ACTIONS(12301), + [sym_param] = ACTIONS(12301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12301), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12301), + [anon_sym_DOLLAR] = ACTIONS(12303), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12301), + [anon_sym_BSLASHbegin] = ACTIONS(12303), + [anon_sym_BSLASHcaption] = ACTIONS(12303), + [anon_sym_BSLASHcite] = ACTIONS(12303), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCite] = ACTIONS(12303), + [anon_sym_BSLASHnocite] = ACTIONS(12303), + [anon_sym_BSLASHcitet] = ACTIONS(12303), + [anon_sym_BSLASHcitep] = ACTIONS(12303), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteauthor] = ACTIONS(12303), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12303), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitetitle] = ACTIONS(12303), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteyear] = ACTIONS(12303), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12301), + [anon_sym_BSLASHcitedate] = ACTIONS(12303), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12301), + [anon_sym_BSLASHciteurl] = ACTIONS(12303), + [anon_sym_BSLASHfullcite] = ACTIONS(12303), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12303), + [anon_sym_BSLASHcitealt] = ACTIONS(12303), + [anon_sym_BSLASHcitealp] = ACTIONS(12303), + [anon_sym_BSLASHcitetext] = ACTIONS(12303), + [anon_sym_BSLASHparencite] = ACTIONS(12303), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHParencite] = ACTIONS(12303), + [anon_sym_BSLASHfootcite] = ACTIONS(12303), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12303), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12303), + [anon_sym_BSLASHtextcite] = ACTIONS(12303), + [anon_sym_BSLASHTextcite] = ACTIONS(12303), + [anon_sym_BSLASHsmartcite] = ACTIONS(12303), + [anon_sym_BSLASHSmartcite] = ACTIONS(12303), + [anon_sym_BSLASHsupercite] = ACTIONS(12303), + [anon_sym_BSLASHautocite] = ACTIONS(12303), + [anon_sym_BSLASHAutocite] = ACTIONS(12303), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12301), + [anon_sym_BSLASHvolcite] = ACTIONS(12303), + [anon_sym_BSLASHVolcite] = ACTIONS(12303), + [anon_sym_BSLASHpvolcite] = ACTIONS(12303), + [anon_sym_BSLASHPvolcite] = ACTIONS(12303), + [anon_sym_BSLASHfvolcite] = ACTIONS(12303), + [anon_sym_BSLASHftvolcite] = ACTIONS(12303), + [anon_sym_BSLASHsvolcite] = ACTIONS(12303), + [anon_sym_BSLASHSvolcite] = ACTIONS(12303), + [anon_sym_BSLASHtvolcite] = ACTIONS(12303), + [anon_sym_BSLASHTvolcite] = ACTIONS(12303), + [anon_sym_BSLASHavolcite] = ACTIONS(12303), + [anon_sym_BSLASHAvolcite] = ACTIONS(12303), + [anon_sym_BSLASHnotecite] = ACTIONS(12303), + [anon_sym_BSLASHpnotecite] = ACTIONS(12303), + [anon_sym_BSLASHPnotecite] = ACTIONS(12303), + [anon_sym_BSLASHfnotecite] = ACTIONS(12303), + [anon_sym_BSLASHusepackage] = ACTIONS(12303), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12303), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12303), + [anon_sym_BSLASHinclude] = ACTIONS(12303), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12303), + [anon_sym_BSLASHinput] = ACTIONS(12303), + [anon_sym_BSLASHsubfile] = ACTIONS(12303), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12303), + [anon_sym_BSLASHbibliography] = ACTIONS(12303), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12303), + [anon_sym_BSLASHincludesvg] = ACTIONS(12303), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12303), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12303), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12303), + [anon_sym_BSLASHimport] = ACTIONS(12303), + [anon_sym_BSLASHsubimport] = ACTIONS(12303), + [anon_sym_BSLASHinputfrom] = ACTIONS(12303), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12303), + [anon_sym_BSLASHincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12303), + [anon_sym_BSLASHlabel] = ACTIONS(12303), + [anon_sym_BSLASHref] = ACTIONS(12303), + [anon_sym_BSLASHvref] = ACTIONS(12303), + [anon_sym_BSLASHVref] = ACTIONS(12303), + [anon_sym_BSLASHautoref] = ACTIONS(12303), + [anon_sym_BSLASHpageref] = ACTIONS(12303), + [anon_sym_BSLASHcref] = ACTIONS(12303), + [anon_sym_BSLASHCref] = ACTIONS(12303), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnameCref] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12303), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12303), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12303), + [anon_sym_BSLASHlabelcref] = ACTIONS(12303), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12303), + [anon_sym_BSLASHeqref] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange] = ACTIONS(12303), + [anon_sym_BSLASHCrefrange] = ACTIONS(12303), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewlabel] = ACTIONS(12303), + [anon_sym_BSLASHnewcommand] = ACTIONS(12303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12303), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12303), + [anon_sym_BSLASHgls] = ACTIONS(12303), + [anon_sym_BSLASHGls] = ACTIONS(12303), + [anon_sym_BSLASHGLS] = ACTIONS(12303), + [anon_sym_BSLASHglspl] = ACTIONS(12303), + [anon_sym_BSLASHGlspl] = ACTIONS(12303), + [anon_sym_BSLASHGLSpl] = ACTIONS(12303), + [anon_sym_BSLASHglsdisp] = ACTIONS(12303), + [anon_sym_BSLASHglslink] = ACTIONS(12303), + [anon_sym_BSLASHglstext] = ACTIONS(12303), + [anon_sym_BSLASHGlstext] = ACTIONS(12303), + [anon_sym_BSLASHGLStext] = ACTIONS(12303), + [anon_sym_BSLASHglsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12303), + [anon_sym_BSLASHglsplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSplural] = ACTIONS(12303), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12303), + [anon_sym_BSLASHglsname] = ACTIONS(12303), + [anon_sym_BSLASHGlsname] = ACTIONS(12303), + [anon_sym_BSLASHGLSname] = ACTIONS(12303), + [anon_sym_BSLASHglssymbol] = ACTIONS(12303), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12303), + [anon_sym_BSLASHglsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12303), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12303), + [anon_sym_BSLASHglsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12303), + [anon_sym_BSLASHglsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12303), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12303), + [anon_sym_BSLASHglsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12303), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12303), + [anon_sym_BSLASHglsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12303), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12303), + [anon_sym_BSLASHnewacronym] = ACTIONS(12303), + [anon_sym_BSLASHacrshort] = ACTIONS(12303), + [anon_sym_BSLASHAcrshort] = ACTIONS(12303), + [anon_sym_BSLASHACRshort] = ACTIONS(12303), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12303), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12303), + [anon_sym_BSLASHacrlong] = ACTIONS(12303), + [anon_sym_BSLASHAcrlong] = ACTIONS(12303), + [anon_sym_BSLASHACRlong] = ACTIONS(12303), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12303), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12303), + [anon_sym_BSLASHacrfull] = ACTIONS(12303), + [anon_sym_BSLASHAcrfull] = ACTIONS(12303), + [anon_sym_BSLASHACRfull] = ACTIONS(12303), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12303), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12303), + [anon_sym_BSLASHacs] = ACTIONS(12303), + [anon_sym_BSLASHAcs] = ACTIONS(12303), + [anon_sym_BSLASHacsp] = ACTIONS(12303), + [anon_sym_BSLASHAcsp] = ACTIONS(12303), + [anon_sym_BSLASHacl] = ACTIONS(12303), + [anon_sym_BSLASHAcl] = ACTIONS(12303), + [anon_sym_BSLASHaclp] = ACTIONS(12303), + [anon_sym_BSLASHAclp] = ACTIONS(12303), + [anon_sym_BSLASHacf] = ACTIONS(12303), + [anon_sym_BSLASHAcf] = ACTIONS(12303), + [anon_sym_BSLASHacfp] = ACTIONS(12303), + [anon_sym_BSLASHAcfp] = ACTIONS(12303), + [anon_sym_BSLASHac] = ACTIONS(12303), + [anon_sym_BSLASHAc] = ACTIONS(12303), + [anon_sym_BSLASHacp] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12303), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12303), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12303), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12303), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12303), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12303), + [anon_sym_BSLASHcolor] = ACTIONS(12303), + [anon_sym_BSLASHcolorbox] = ACTIONS(12303), + [anon_sym_BSLASHtextcolor] = ACTIONS(12303), + [anon_sym_BSLASHpagecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12303), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12303), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12303), + }, + [1921] = { + [sym_generic_command_name] = ACTIONS(12331), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12329), + [anon_sym_RBRACK] = ACTIONS(12329), + [anon_sym_LBRACE] = ACTIONS(12329), + [anon_sym_RBRACE] = ACTIONS(12329), + [anon_sym_LPAREN] = ACTIONS(12329), + [anon_sym_COMMA] = ACTIONS(12329), + [anon_sym_EQ] = ACTIONS(12329), + [sym_word] = ACTIONS(12329), + [sym_param] = ACTIONS(12329), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12329), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12329), + [anon_sym_DOLLAR] = ACTIONS(12331), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12329), + [anon_sym_BSLASHbegin] = ACTIONS(12331), + [anon_sym_BSLASHcaption] = ACTIONS(12331), + [anon_sym_BSLASHcite] = ACTIONS(12331), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCite] = ACTIONS(12331), + [anon_sym_BSLASHnocite] = ACTIONS(12331), + [anon_sym_BSLASHcitet] = ACTIONS(12331), + [anon_sym_BSLASHcitep] = ACTIONS(12331), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteauthor] = ACTIONS(12331), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12331), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitetitle] = ACTIONS(12331), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteyear] = ACTIONS(12331), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12329), + [anon_sym_BSLASHcitedate] = ACTIONS(12331), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12329), + [anon_sym_BSLASHciteurl] = ACTIONS(12331), + [anon_sym_BSLASHfullcite] = ACTIONS(12331), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12331), + [anon_sym_BSLASHcitealt] = ACTIONS(12331), + [anon_sym_BSLASHcitealp] = ACTIONS(12331), + [anon_sym_BSLASHcitetext] = ACTIONS(12331), + [anon_sym_BSLASHparencite] = ACTIONS(12331), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHParencite] = ACTIONS(12331), + [anon_sym_BSLASHfootcite] = ACTIONS(12331), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12331), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12331), + [anon_sym_BSLASHtextcite] = ACTIONS(12331), + [anon_sym_BSLASHTextcite] = ACTIONS(12331), + [anon_sym_BSLASHsmartcite] = ACTIONS(12331), + [anon_sym_BSLASHSmartcite] = ACTIONS(12331), + [anon_sym_BSLASHsupercite] = ACTIONS(12331), + [anon_sym_BSLASHautocite] = ACTIONS(12331), + [anon_sym_BSLASHAutocite] = ACTIONS(12331), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12329), + [anon_sym_BSLASHvolcite] = ACTIONS(12331), + [anon_sym_BSLASHVolcite] = ACTIONS(12331), + [anon_sym_BSLASHpvolcite] = ACTIONS(12331), + [anon_sym_BSLASHPvolcite] = ACTIONS(12331), + [anon_sym_BSLASHfvolcite] = ACTIONS(12331), + [anon_sym_BSLASHftvolcite] = ACTIONS(12331), + [anon_sym_BSLASHsvolcite] = ACTIONS(12331), + [anon_sym_BSLASHSvolcite] = ACTIONS(12331), + [anon_sym_BSLASHtvolcite] = ACTIONS(12331), + [anon_sym_BSLASHTvolcite] = ACTIONS(12331), + [anon_sym_BSLASHavolcite] = ACTIONS(12331), + [anon_sym_BSLASHAvolcite] = ACTIONS(12331), + [anon_sym_BSLASHnotecite] = ACTIONS(12331), + [anon_sym_BSLASHpnotecite] = ACTIONS(12331), + [anon_sym_BSLASHPnotecite] = ACTIONS(12331), + [anon_sym_BSLASHfnotecite] = ACTIONS(12331), + [anon_sym_BSLASHusepackage] = ACTIONS(12331), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12331), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12331), + [anon_sym_BSLASHinclude] = ACTIONS(12331), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12331), + [anon_sym_BSLASHinput] = ACTIONS(12331), + [anon_sym_BSLASHsubfile] = ACTIONS(12331), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12331), + [anon_sym_BSLASHbibliography] = ACTIONS(12331), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12331), + [anon_sym_BSLASHincludesvg] = ACTIONS(12331), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12331), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12331), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12331), + [anon_sym_BSLASHimport] = ACTIONS(12331), + [anon_sym_BSLASHsubimport] = ACTIONS(12331), + [anon_sym_BSLASHinputfrom] = ACTIONS(12331), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12331), + [anon_sym_BSLASHincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12331), + [anon_sym_BSLASHlabel] = ACTIONS(12331), + [anon_sym_BSLASHref] = ACTIONS(12331), + [anon_sym_BSLASHvref] = ACTIONS(12331), + [anon_sym_BSLASHVref] = ACTIONS(12331), + [anon_sym_BSLASHautoref] = ACTIONS(12331), + [anon_sym_BSLASHpageref] = ACTIONS(12331), + [anon_sym_BSLASHcref] = ACTIONS(12331), + [anon_sym_BSLASHCref] = ACTIONS(12331), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnameCref] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12331), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12331), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12331), + [anon_sym_BSLASHlabelcref] = ACTIONS(12331), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12331), + [anon_sym_BSLASHeqref] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange] = ACTIONS(12331), + [anon_sym_BSLASHCrefrange] = ACTIONS(12331), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewlabel] = ACTIONS(12331), + [anon_sym_BSLASHnewcommand] = ACTIONS(12331), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12331), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12329), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12331), + [anon_sym_BSLASHgls] = ACTIONS(12331), + [anon_sym_BSLASHGls] = ACTIONS(12331), + [anon_sym_BSLASHGLS] = ACTIONS(12331), + [anon_sym_BSLASHglspl] = ACTIONS(12331), + [anon_sym_BSLASHGlspl] = ACTIONS(12331), + [anon_sym_BSLASHGLSpl] = ACTIONS(12331), + [anon_sym_BSLASHglsdisp] = ACTIONS(12331), + [anon_sym_BSLASHglslink] = ACTIONS(12331), + [anon_sym_BSLASHglstext] = ACTIONS(12331), + [anon_sym_BSLASHGlstext] = ACTIONS(12331), + [anon_sym_BSLASHGLStext] = ACTIONS(12331), + [anon_sym_BSLASHglsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12331), + [anon_sym_BSLASHglsplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSplural] = ACTIONS(12331), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12331), + [anon_sym_BSLASHglsname] = ACTIONS(12331), + [anon_sym_BSLASHGlsname] = ACTIONS(12331), + [anon_sym_BSLASHGLSname] = ACTIONS(12331), + [anon_sym_BSLASHglssymbol] = ACTIONS(12331), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12331), + [anon_sym_BSLASHglsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12331), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12331), + [anon_sym_BSLASHglsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12331), + [anon_sym_BSLASHglsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12331), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12331), + [anon_sym_BSLASHglsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12331), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12331), + [anon_sym_BSLASHglsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12331), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12331), + [anon_sym_BSLASHnewacronym] = ACTIONS(12331), + [anon_sym_BSLASHacrshort] = ACTIONS(12331), + [anon_sym_BSLASHAcrshort] = ACTIONS(12331), + [anon_sym_BSLASHACRshort] = ACTIONS(12331), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12331), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12331), + [anon_sym_BSLASHacrlong] = ACTIONS(12331), + [anon_sym_BSLASHAcrlong] = ACTIONS(12331), + [anon_sym_BSLASHACRlong] = ACTIONS(12331), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12331), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12331), + [anon_sym_BSLASHacrfull] = ACTIONS(12331), + [anon_sym_BSLASHAcrfull] = ACTIONS(12331), + [anon_sym_BSLASHACRfull] = ACTIONS(12331), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12331), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12331), + [anon_sym_BSLASHacs] = ACTIONS(12331), + [anon_sym_BSLASHAcs] = ACTIONS(12331), + [anon_sym_BSLASHacsp] = ACTIONS(12331), + [anon_sym_BSLASHAcsp] = ACTIONS(12331), + [anon_sym_BSLASHacl] = ACTIONS(12331), + [anon_sym_BSLASHAcl] = ACTIONS(12331), + [anon_sym_BSLASHaclp] = ACTIONS(12331), + [anon_sym_BSLASHAclp] = ACTIONS(12331), + [anon_sym_BSLASHacf] = ACTIONS(12331), + [anon_sym_BSLASHAcf] = ACTIONS(12331), + [anon_sym_BSLASHacfp] = ACTIONS(12331), + [anon_sym_BSLASHAcfp] = ACTIONS(12331), + [anon_sym_BSLASHac] = ACTIONS(12331), + [anon_sym_BSLASHAc] = ACTIONS(12331), + [anon_sym_BSLASHacp] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12331), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12331), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12331), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12331), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12331), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12331), + [anon_sym_BSLASHcolor] = ACTIONS(12331), + [anon_sym_BSLASHcolorbox] = ACTIONS(12331), + [anon_sym_BSLASHtextcolor] = ACTIONS(12331), + [anon_sym_BSLASHpagecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12331), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12331), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12331), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12331), + }, + [1922] = { + [sym_generic_command_name] = ACTIONS(12307), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12305), + [anon_sym_RBRACK] = ACTIONS(12305), + [anon_sym_LBRACE] = ACTIONS(12305), + [anon_sym_RBRACE] = ACTIONS(12305), + [anon_sym_LPAREN] = ACTIONS(12305), + [anon_sym_COMMA] = ACTIONS(12305), + [anon_sym_EQ] = ACTIONS(12305), + [sym_word] = ACTIONS(12305), + [sym_param] = ACTIONS(12305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12305), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12305), + [anon_sym_DOLLAR] = ACTIONS(12307), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12305), + [anon_sym_BSLASHbegin] = ACTIONS(12307), + [anon_sym_BSLASHcaption] = ACTIONS(12307), + [anon_sym_BSLASHcite] = ACTIONS(12307), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCite] = ACTIONS(12307), + [anon_sym_BSLASHnocite] = ACTIONS(12307), + [anon_sym_BSLASHcitet] = ACTIONS(12307), + [anon_sym_BSLASHcitep] = ACTIONS(12307), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteauthor] = ACTIONS(12307), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12307), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitetitle] = ACTIONS(12307), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteyear] = ACTIONS(12307), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12305), + [anon_sym_BSLASHcitedate] = ACTIONS(12307), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12305), + [anon_sym_BSLASHciteurl] = ACTIONS(12307), + [anon_sym_BSLASHfullcite] = ACTIONS(12307), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12307), + [anon_sym_BSLASHcitealt] = ACTIONS(12307), + [anon_sym_BSLASHcitealp] = ACTIONS(12307), + [anon_sym_BSLASHcitetext] = ACTIONS(12307), + [anon_sym_BSLASHparencite] = ACTIONS(12307), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHParencite] = ACTIONS(12307), + [anon_sym_BSLASHfootcite] = ACTIONS(12307), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12307), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12307), + [anon_sym_BSLASHtextcite] = ACTIONS(12307), + [anon_sym_BSLASHTextcite] = ACTIONS(12307), + [anon_sym_BSLASHsmartcite] = ACTIONS(12307), + [anon_sym_BSLASHSmartcite] = ACTIONS(12307), + [anon_sym_BSLASHsupercite] = ACTIONS(12307), + [anon_sym_BSLASHautocite] = ACTIONS(12307), + [anon_sym_BSLASHAutocite] = ACTIONS(12307), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12305), + [anon_sym_BSLASHvolcite] = ACTIONS(12307), + [anon_sym_BSLASHVolcite] = ACTIONS(12307), + [anon_sym_BSLASHpvolcite] = ACTIONS(12307), + [anon_sym_BSLASHPvolcite] = ACTIONS(12307), + [anon_sym_BSLASHfvolcite] = ACTIONS(12307), + [anon_sym_BSLASHftvolcite] = ACTIONS(12307), + [anon_sym_BSLASHsvolcite] = ACTIONS(12307), + [anon_sym_BSLASHSvolcite] = ACTIONS(12307), + [anon_sym_BSLASHtvolcite] = ACTIONS(12307), + [anon_sym_BSLASHTvolcite] = ACTIONS(12307), + [anon_sym_BSLASHavolcite] = ACTIONS(12307), + [anon_sym_BSLASHAvolcite] = ACTIONS(12307), + [anon_sym_BSLASHnotecite] = ACTIONS(12307), + [anon_sym_BSLASHpnotecite] = ACTIONS(12307), + [anon_sym_BSLASHPnotecite] = ACTIONS(12307), + [anon_sym_BSLASHfnotecite] = ACTIONS(12307), + [anon_sym_BSLASHusepackage] = ACTIONS(12307), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12307), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12307), + [anon_sym_BSLASHinclude] = ACTIONS(12307), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12307), + [anon_sym_BSLASHinput] = ACTIONS(12307), + [anon_sym_BSLASHsubfile] = ACTIONS(12307), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12307), + [anon_sym_BSLASHbibliography] = ACTIONS(12307), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12307), + [anon_sym_BSLASHincludesvg] = ACTIONS(12307), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12307), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12307), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12307), + [anon_sym_BSLASHimport] = ACTIONS(12307), + [anon_sym_BSLASHsubimport] = ACTIONS(12307), + [anon_sym_BSLASHinputfrom] = ACTIONS(12307), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12307), + [anon_sym_BSLASHincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12307), + [anon_sym_BSLASHlabel] = ACTIONS(12307), + [anon_sym_BSLASHref] = ACTIONS(12307), + [anon_sym_BSLASHvref] = ACTIONS(12307), + [anon_sym_BSLASHVref] = ACTIONS(12307), + [anon_sym_BSLASHautoref] = ACTIONS(12307), + [anon_sym_BSLASHpageref] = ACTIONS(12307), + [anon_sym_BSLASHcref] = ACTIONS(12307), + [anon_sym_BSLASHCref] = ACTIONS(12307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnameCref] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12307), + [anon_sym_BSLASHlabelcref] = ACTIONS(12307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12307), + [anon_sym_BSLASHeqref] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange] = ACTIONS(12307), + [anon_sym_BSLASHCrefrange] = ACTIONS(12307), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewlabel] = ACTIONS(12307), + [anon_sym_BSLASHnewcommand] = ACTIONS(12307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12307), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12307), + [anon_sym_BSLASHgls] = ACTIONS(12307), + [anon_sym_BSLASHGls] = ACTIONS(12307), + [anon_sym_BSLASHGLS] = ACTIONS(12307), + [anon_sym_BSLASHglspl] = ACTIONS(12307), + [anon_sym_BSLASHGlspl] = ACTIONS(12307), + [anon_sym_BSLASHGLSpl] = ACTIONS(12307), + [anon_sym_BSLASHglsdisp] = ACTIONS(12307), + [anon_sym_BSLASHglslink] = ACTIONS(12307), + [anon_sym_BSLASHglstext] = ACTIONS(12307), + [anon_sym_BSLASHGlstext] = ACTIONS(12307), + [anon_sym_BSLASHGLStext] = ACTIONS(12307), + [anon_sym_BSLASHglsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12307), + [anon_sym_BSLASHglsplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSplural] = ACTIONS(12307), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12307), + [anon_sym_BSLASHglsname] = ACTIONS(12307), + [anon_sym_BSLASHGlsname] = ACTIONS(12307), + [anon_sym_BSLASHGLSname] = ACTIONS(12307), + [anon_sym_BSLASHglssymbol] = ACTIONS(12307), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12307), + [anon_sym_BSLASHglsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12307), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12307), + [anon_sym_BSLASHglsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12307), + [anon_sym_BSLASHglsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12307), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12307), + [anon_sym_BSLASHglsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12307), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12307), + [anon_sym_BSLASHglsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12307), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12307), + [anon_sym_BSLASHnewacronym] = ACTIONS(12307), + [anon_sym_BSLASHacrshort] = ACTIONS(12307), + [anon_sym_BSLASHAcrshort] = ACTIONS(12307), + [anon_sym_BSLASHACRshort] = ACTIONS(12307), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12307), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12307), + [anon_sym_BSLASHacrlong] = ACTIONS(12307), + [anon_sym_BSLASHAcrlong] = ACTIONS(12307), + [anon_sym_BSLASHACRlong] = ACTIONS(12307), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12307), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12307), + [anon_sym_BSLASHacrfull] = ACTIONS(12307), + [anon_sym_BSLASHAcrfull] = ACTIONS(12307), + [anon_sym_BSLASHACRfull] = ACTIONS(12307), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12307), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12307), + [anon_sym_BSLASHacs] = ACTIONS(12307), + [anon_sym_BSLASHAcs] = ACTIONS(12307), + [anon_sym_BSLASHacsp] = ACTIONS(12307), + [anon_sym_BSLASHAcsp] = ACTIONS(12307), + [anon_sym_BSLASHacl] = ACTIONS(12307), + [anon_sym_BSLASHAcl] = ACTIONS(12307), + [anon_sym_BSLASHaclp] = ACTIONS(12307), + [anon_sym_BSLASHAclp] = ACTIONS(12307), + [anon_sym_BSLASHacf] = ACTIONS(12307), + [anon_sym_BSLASHAcf] = ACTIONS(12307), + [anon_sym_BSLASHacfp] = ACTIONS(12307), + [anon_sym_BSLASHAcfp] = ACTIONS(12307), + [anon_sym_BSLASHac] = ACTIONS(12307), + [anon_sym_BSLASHAc] = ACTIONS(12307), + [anon_sym_BSLASHacp] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12307), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12307), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12307), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12307), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12307), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12307), + [anon_sym_BSLASHcolor] = ACTIONS(12307), + [anon_sym_BSLASHcolorbox] = ACTIONS(12307), + [anon_sym_BSLASHtextcolor] = ACTIONS(12307), + [anon_sym_BSLASHpagecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12307), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12307), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12307), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12307), + }, + [1923] = { + [sym_generic_command_name] = ACTIONS(12132), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12130), + [anon_sym_RBRACK] = ACTIONS(12130), + [anon_sym_LBRACE] = ACTIONS(12130), + [anon_sym_RBRACE] = ACTIONS(12130), + [anon_sym_LPAREN] = ACTIONS(12130), + [anon_sym_COMMA] = ACTIONS(12130), + [anon_sym_EQ] = ACTIONS(12130), + [sym_word] = ACTIONS(12130), + [sym_param] = ACTIONS(12130), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12130), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12130), + [anon_sym_DOLLAR] = ACTIONS(12132), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12130), + [anon_sym_BSLASHbegin] = ACTIONS(12132), + [anon_sym_BSLASHcaption] = ACTIONS(12132), + [anon_sym_BSLASHcite] = ACTIONS(12132), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCite] = ACTIONS(12132), + [anon_sym_BSLASHnocite] = ACTIONS(12132), + [anon_sym_BSLASHcitet] = ACTIONS(12132), + [anon_sym_BSLASHcitep] = ACTIONS(12132), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteauthor] = ACTIONS(12132), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12132), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitetitle] = ACTIONS(12132), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteyear] = ACTIONS(12132), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12130), + [anon_sym_BSLASHcitedate] = ACTIONS(12132), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12130), + [anon_sym_BSLASHciteurl] = ACTIONS(12132), + [anon_sym_BSLASHfullcite] = ACTIONS(12132), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12132), + [anon_sym_BSLASHcitealt] = ACTIONS(12132), + [anon_sym_BSLASHcitealp] = ACTIONS(12132), + [anon_sym_BSLASHcitetext] = ACTIONS(12132), + [anon_sym_BSLASHparencite] = ACTIONS(12132), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHParencite] = ACTIONS(12132), + [anon_sym_BSLASHfootcite] = ACTIONS(12132), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12132), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12132), + [anon_sym_BSLASHtextcite] = ACTIONS(12132), + [anon_sym_BSLASHTextcite] = ACTIONS(12132), + [anon_sym_BSLASHsmartcite] = ACTIONS(12132), + [anon_sym_BSLASHSmartcite] = ACTIONS(12132), + [anon_sym_BSLASHsupercite] = ACTIONS(12132), + [anon_sym_BSLASHautocite] = ACTIONS(12132), + [anon_sym_BSLASHAutocite] = ACTIONS(12132), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12130), + [anon_sym_BSLASHvolcite] = ACTIONS(12132), + [anon_sym_BSLASHVolcite] = ACTIONS(12132), + [anon_sym_BSLASHpvolcite] = ACTIONS(12132), + [anon_sym_BSLASHPvolcite] = ACTIONS(12132), + [anon_sym_BSLASHfvolcite] = ACTIONS(12132), + [anon_sym_BSLASHftvolcite] = ACTIONS(12132), + [anon_sym_BSLASHsvolcite] = ACTIONS(12132), + [anon_sym_BSLASHSvolcite] = ACTIONS(12132), + [anon_sym_BSLASHtvolcite] = ACTIONS(12132), + [anon_sym_BSLASHTvolcite] = ACTIONS(12132), + [anon_sym_BSLASHavolcite] = ACTIONS(12132), + [anon_sym_BSLASHAvolcite] = ACTIONS(12132), + [anon_sym_BSLASHnotecite] = ACTIONS(12132), + [anon_sym_BSLASHpnotecite] = ACTIONS(12132), + [anon_sym_BSLASHPnotecite] = ACTIONS(12132), + [anon_sym_BSLASHfnotecite] = ACTIONS(12132), + [anon_sym_BSLASHusepackage] = ACTIONS(12132), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12132), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12132), + [anon_sym_BSLASHinclude] = ACTIONS(12132), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12132), + [anon_sym_BSLASHinput] = ACTIONS(12132), + [anon_sym_BSLASHsubfile] = ACTIONS(12132), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12132), + [anon_sym_BSLASHbibliography] = ACTIONS(12132), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12132), + [anon_sym_BSLASHincludesvg] = ACTIONS(12132), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12132), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12132), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12132), + [anon_sym_BSLASHimport] = ACTIONS(12132), + [anon_sym_BSLASHsubimport] = ACTIONS(12132), + [anon_sym_BSLASHinputfrom] = ACTIONS(12132), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12132), + [anon_sym_BSLASHincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12132), + [anon_sym_BSLASHlabel] = ACTIONS(12132), + [anon_sym_BSLASHref] = ACTIONS(12132), + [anon_sym_BSLASHvref] = ACTIONS(12132), + [anon_sym_BSLASHVref] = ACTIONS(12132), + [anon_sym_BSLASHautoref] = ACTIONS(12132), + [anon_sym_BSLASHpageref] = ACTIONS(12132), + [anon_sym_BSLASHcref] = ACTIONS(12132), + [anon_sym_BSLASHCref] = ACTIONS(12132), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnameCref] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12132), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12132), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12132), + [anon_sym_BSLASHlabelcref] = ACTIONS(12132), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12132), + [anon_sym_BSLASHeqref] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange] = ACTIONS(12132), + [anon_sym_BSLASHCrefrange] = ACTIONS(12132), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewlabel] = ACTIONS(12132), + [anon_sym_BSLASHnewcommand] = ACTIONS(12132), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12132), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12130), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12132), + [anon_sym_BSLASHgls] = ACTIONS(12132), + [anon_sym_BSLASHGls] = ACTIONS(12132), + [anon_sym_BSLASHGLS] = ACTIONS(12132), + [anon_sym_BSLASHglspl] = ACTIONS(12132), + [anon_sym_BSLASHGlspl] = ACTIONS(12132), + [anon_sym_BSLASHGLSpl] = ACTIONS(12132), + [anon_sym_BSLASHglsdisp] = ACTIONS(12132), + [anon_sym_BSLASHglslink] = ACTIONS(12132), + [anon_sym_BSLASHglstext] = ACTIONS(12132), + [anon_sym_BSLASHGlstext] = ACTIONS(12132), + [anon_sym_BSLASHGLStext] = ACTIONS(12132), + [anon_sym_BSLASHglsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12132), + [anon_sym_BSLASHglsplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSplural] = ACTIONS(12132), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12132), + [anon_sym_BSLASHglsname] = ACTIONS(12132), + [anon_sym_BSLASHGlsname] = ACTIONS(12132), + [anon_sym_BSLASHGLSname] = ACTIONS(12132), + [anon_sym_BSLASHglssymbol] = ACTIONS(12132), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12132), + [anon_sym_BSLASHglsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12132), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12132), + [anon_sym_BSLASHglsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12132), + [anon_sym_BSLASHglsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12132), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12132), + [anon_sym_BSLASHglsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12132), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12132), + [anon_sym_BSLASHglsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12132), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12132), + [anon_sym_BSLASHnewacronym] = ACTIONS(12132), + [anon_sym_BSLASHacrshort] = ACTIONS(12132), + [anon_sym_BSLASHAcrshort] = ACTIONS(12132), + [anon_sym_BSLASHACRshort] = ACTIONS(12132), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12132), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12132), + [anon_sym_BSLASHacrlong] = ACTIONS(12132), + [anon_sym_BSLASHAcrlong] = ACTIONS(12132), + [anon_sym_BSLASHACRlong] = ACTIONS(12132), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12132), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12132), + [anon_sym_BSLASHacrfull] = ACTIONS(12132), + [anon_sym_BSLASHAcrfull] = ACTIONS(12132), + [anon_sym_BSLASHACRfull] = ACTIONS(12132), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12132), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12132), + [anon_sym_BSLASHacs] = ACTIONS(12132), + [anon_sym_BSLASHAcs] = ACTIONS(12132), + [anon_sym_BSLASHacsp] = ACTIONS(12132), + [anon_sym_BSLASHAcsp] = ACTIONS(12132), + [anon_sym_BSLASHacl] = ACTIONS(12132), + [anon_sym_BSLASHAcl] = ACTIONS(12132), + [anon_sym_BSLASHaclp] = ACTIONS(12132), + [anon_sym_BSLASHAclp] = ACTIONS(12132), + [anon_sym_BSLASHacf] = ACTIONS(12132), + [anon_sym_BSLASHAcf] = ACTIONS(12132), + [anon_sym_BSLASHacfp] = ACTIONS(12132), + [anon_sym_BSLASHAcfp] = ACTIONS(12132), + [anon_sym_BSLASHac] = ACTIONS(12132), + [anon_sym_BSLASHAc] = ACTIONS(12132), + [anon_sym_BSLASHacp] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12132), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12132), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12132), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12132), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12132), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12132), + [anon_sym_BSLASHcolor] = ACTIONS(12132), + [anon_sym_BSLASHcolorbox] = ACTIONS(12132), + [anon_sym_BSLASHtextcolor] = ACTIONS(12132), + [anon_sym_BSLASHpagecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12132), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12132), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12132), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12132), + }, + [1924] = { + [sym_generic_command_name] = ACTIONS(12345), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12343), + [anon_sym_RBRACK] = ACTIONS(12343), + [anon_sym_LBRACE] = ACTIONS(12343), + [anon_sym_RBRACE] = ACTIONS(12343), + [anon_sym_LPAREN] = ACTIONS(12343), + [anon_sym_COMMA] = ACTIONS(12343), + [anon_sym_EQ] = ACTIONS(12343), + [sym_word] = ACTIONS(12343), + [sym_param] = ACTIONS(12343), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12343), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12343), + [anon_sym_DOLLAR] = ACTIONS(12345), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12343), + [anon_sym_BSLASHbegin] = ACTIONS(12345), + [anon_sym_BSLASHcaption] = ACTIONS(12345), + [anon_sym_BSLASHcite] = ACTIONS(12345), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCite] = ACTIONS(12345), + [anon_sym_BSLASHnocite] = ACTIONS(12345), + [anon_sym_BSLASHcitet] = ACTIONS(12345), + [anon_sym_BSLASHcitep] = ACTIONS(12345), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteauthor] = ACTIONS(12345), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12345), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitetitle] = ACTIONS(12345), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteyear] = ACTIONS(12345), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12343), + [anon_sym_BSLASHcitedate] = ACTIONS(12345), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12343), + [anon_sym_BSLASHciteurl] = ACTIONS(12345), + [anon_sym_BSLASHfullcite] = ACTIONS(12345), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12345), + [anon_sym_BSLASHcitealt] = ACTIONS(12345), + [anon_sym_BSLASHcitealp] = ACTIONS(12345), + [anon_sym_BSLASHcitetext] = ACTIONS(12345), + [anon_sym_BSLASHparencite] = ACTIONS(12345), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHParencite] = ACTIONS(12345), + [anon_sym_BSLASHfootcite] = ACTIONS(12345), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12345), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12345), + [anon_sym_BSLASHtextcite] = ACTIONS(12345), + [anon_sym_BSLASHTextcite] = ACTIONS(12345), + [anon_sym_BSLASHsmartcite] = ACTIONS(12345), + [anon_sym_BSLASHSmartcite] = ACTIONS(12345), + [anon_sym_BSLASHsupercite] = ACTIONS(12345), + [anon_sym_BSLASHautocite] = ACTIONS(12345), + [anon_sym_BSLASHAutocite] = ACTIONS(12345), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12343), + [anon_sym_BSLASHvolcite] = ACTIONS(12345), + [anon_sym_BSLASHVolcite] = ACTIONS(12345), + [anon_sym_BSLASHpvolcite] = ACTIONS(12345), + [anon_sym_BSLASHPvolcite] = ACTIONS(12345), + [anon_sym_BSLASHfvolcite] = ACTIONS(12345), + [anon_sym_BSLASHftvolcite] = ACTIONS(12345), + [anon_sym_BSLASHsvolcite] = ACTIONS(12345), + [anon_sym_BSLASHSvolcite] = ACTIONS(12345), + [anon_sym_BSLASHtvolcite] = ACTIONS(12345), + [anon_sym_BSLASHTvolcite] = ACTIONS(12345), + [anon_sym_BSLASHavolcite] = ACTIONS(12345), + [anon_sym_BSLASHAvolcite] = ACTIONS(12345), + [anon_sym_BSLASHnotecite] = ACTIONS(12345), + [anon_sym_BSLASHpnotecite] = ACTIONS(12345), + [anon_sym_BSLASHPnotecite] = ACTIONS(12345), + [anon_sym_BSLASHfnotecite] = ACTIONS(12345), + [anon_sym_BSLASHusepackage] = ACTIONS(12345), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12345), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12345), + [anon_sym_BSLASHinclude] = ACTIONS(12345), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12345), + [anon_sym_BSLASHinput] = ACTIONS(12345), + [anon_sym_BSLASHsubfile] = ACTIONS(12345), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12345), + [anon_sym_BSLASHbibliography] = ACTIONS(12345), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12345), + [anon_sym_BSLASHincludesvg] = ACTIONS(12345), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12345), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12345), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12345), + [anon_sym_BSLASHimport] = ACTIONS(12345), + [anon_sym_BSLASHsubimport] = ACTIONS(12345), + [anon_sym_BSLASHinputfrom] = ACTIONS(12345), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12345), + [anon_sym_BSLASHincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12345), + [anon_sym_BSLASHlabel] = ACTIONS(12345), + [anon_sym_BSLASHref] = ACTIONS(12345), + [anon_sym_BSLASHvref] = ACTIONS(12345), + [anon_sym_BSLASHVref] = ACTIONS(12345), + [anon_sym_BSLASHautoref] = ACTIONS(12345), + [anon_sym_BSLASHpageref] = ACTIONS(12345), + [anon_sym_BSLASHcref] = ACTIONS(12345), + [anon_sym_BSLASHCref] = ACTIONS(12345), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnameCref] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12345), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12345), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12345), + [anon_sym_BSLASHlabelcref] = ACTIONS(12345), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12345), + [anon_sym_BSLASHeqref] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange] = ACTIONS(12345), + [anon_sym_BSLASHCrefrange] = ACTIONS(12345), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewlabel] = ACTIONS(12345), + [anon_sym_BSLASHnewcommand] = ACTIONS(12345), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12345), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12343), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12345), + [anon_sym_BSLASHgls] = ACTIONS(12345), + [anon_sym_BSLASHGls] = ACTIONS(12345), + [anon_sym_BSLASHGLS] = ACTIONS(12345), + [anon_sym_BSLASHglspl] = ACTIONS(12345), + [anon_sym_BSLASHGlspl] = ACTIONS(12345), + [anon_sym_BSLASHGLSpl] = ACTIONS(12345), + [anon_sym_BSLASHglsdisp] = ACTIONS(12345), + [anon_sym_BSLASHglslink] = ACTIONS(12345), + [anon_sym_BSLASHglstext] = ACTIONS(12345), + [anon_sym_BSLASHGlstext] = ACTIONS(12345), + [anon_sym_BSLASHGLStext] = ACTIONS(12345), + [anon_sym_BSLASHglsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12345), + [anon_sym_BSLASHglsplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSplural] = ACTIONS(12345), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12345), + [anon_sym_BSLASHglsname] = ACTIONS(12345), + [anon_sym_BSLASHGlsname] = ACTIONS(12345), + [anon_sym_BSLASHGLSname] = ACTIONS(12345), + [anon_sym_BSLASHglssymbol] = ACTIONS(12345), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12345), + [anon_sym_BSLASHglsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12345), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12345), + [anon_sym_BSLASHglsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12345), + [anon_sym_BSLASHglsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12345), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12345), + [anon_sym_BSLASHglsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12345), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12345), + [anon_sym_BSLASHglsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12345), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12345), + [anon_sym_BSLASHnewacronym] = ACTIONS(12345), + [anon_sym_BSLASHacrshort] = ACTIONS(12345), + [anon_sym_BSLASHAcrshort] = ACTIONS(12345), + [anon_sym_BSLASHACRshort] = ACTIONS(12345), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12345), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12345), + [anon_sym_BSLASHacrlong] = ACTIONS(12345), + [anon_sym_BSLASHAcrlong] = ACTIONS(12345), + [anon_sym_BSLASHACRlong] = ACTIONS(12345), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12345), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12345), + [anon_sym_BSLASHacrfull] = ACTIONS(12345), + [anon_sym_BSLASHAcrfull] = ACTIONS(12345), + [anon_sym_BSLASHACRfull] = ACTIONS(12345), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12345), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12345), + [anon_sym_BSLASHacs] = ACTIONS(12345), + [anon_sym_BSLASHAcs] = ACTIONS(12345), + [anon_sym_BSLASHacsp] = ACTIONS(12345), + [anon_sym_BSLASHAcsp] = ACTIONS(12345), + [anon_sym_BSLASHacl] = ACTIONS(12345), + [anon_sym_BSLASHAcl] = ACTIONS(12345), + [anon_sym_BSLASHaclp] = ACTIONS(12345), + [anon_sym_BSLASHAclp] = ACTIONS(12345), + [anon_sym_BSLASHacf] = ACTIONS(12345), + [anon_sym_BSLASHAcf] = ACTIONS(12345), + [anon_sym_BSLASHacfp] = ACTIONS(12345), + [anon_sym_BSLASHAcfp] = ACTIONS(12345), + [anon_sym_BSLASHac] = ACTIONS(12345), + [anon_sym_BSLASHAc] = ACTIONS(12345), + [anon_sym_BSLASHacp] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12345), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12345), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12345), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12345), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12345), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12345), + [anon_sym_BSLASHcolor] = ACTIONS(12345), + [anon_sym_BSLASHcolorbox] = ACTIONS(12345), + [anon_sym_BSLASHtextcolor] = ACTIONS(12345), + [anon_sym_BSLASHpagecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12345), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12345), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12345), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12345), + }, + [1925] = { + [sym_generic_command_name] = ACTIONS(12315), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12313), + [anon_sym_RBRACK] = ACTIONS(12313), + [anon_sym_LBRACE] = ACTIONS(12313), + [anon_sym_RBRACE] = ACTIONS(12313), + [anon_sym_LPAREN] = ACTIONS(12313), + [anon_sym_COMMA] = ACTIONS(12313), + [anon_sym_EQ] = ACTIONS(12313), + [sym_word] = ACTIONS(12313), + [sym_param] = ACTIONS(12313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12313), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12313), + [anon_sym_DOLLAR] = ACTIONS(12315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12313), + [anon_sym_BSLASHbegin] = ACTIONS(12315), + [anon_sym_BSLASHcaption] = ACTIONS(12315), + [anon_sym_BSLASHcite] = ACTIONS(12315), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCite] = ACTIONS(12315), + [anon_sym_BSLASHnocite] = ACTIONS(12315), + [anon_sym_BSLASHcitet] = ACTIONS(12315), + [anon_sym_BSLASHcitep] = ACTIONS(12315), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteauthor] = ACTIONS(12315), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12315), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitetitle] = ACTIONS(12315), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteyear] = ACTIONS(12315), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12313), + [anon_sym_BSLASHcitedate] = ACTIONS(12315), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12313), + [anon_sym_BSLASHciteurl] = ACTIONS(12315), + [anon_sym_BSLASHfullcite] = ACTIONS(12315), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12315), + [anon_sym_BSLASHcitealt] = ACTIONS(12315), + [anon_sym_BSLASHcitealp] = ACTIONS(12315), + [anon_sym_BSLASHcitetext] = ACTIONS(12315), + [anon_sym_BSLASHparencite] = ACTIONS(12315), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHParencite] = ACTIONS(12315), + [anon_sym_BSLASHfootcite] = ACTIONS(12315), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12315), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12315), + [anon_sym_BSLASHtextcite] = ACTIONS(12315), + [anon_sym_BSLASHTextcite] = ACTIONS(12315), + [anon_sym_BSLASHsmartcite] = ACTIONS(12315), + [anon_sym_BSLASHSmartcite] = ACTIONS(12315), + [anon_sym_BSLASHsupercite] = ACTIONS(12315), + [anon_sym_BSLASHautocite] = ACTIONS(12315), + [anon_sym_BSLASHAutocite] = ACTIONS(12315), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12313), + [anon_sym_BSLASHvolcite] = ACTIONS(12315), + [anon_sym_BSLASHVolcite] = ACTIONS(12315), + [anon_sym_BSLASHpvolcite] = ACTIONS(12315), + [anon_sym_BSLASHPvolcite] = ACTIONS(12315), + [anon_sym_BSLASHfvolcite] = ACTIONS(12315), + [anon_sym_BSLASHftvolcite] = ACTIONS(12315), + [anon_sym_BSLASHsvolcite] = ACTIONS(12315), + [anon_sym_BSLASHSvolcite] = ACTIONS(12315), + [anon_sym_BSLASHtvolcite] = ACTIONS(12315), + [anon_sym_BSLASHTvolcite] = ACTIONS(12315), + [anon_sym_BSLASHavolcite] = ACTIONS(12315), + [anon_sym_BSLASHAvolcite] = ACTIONS(12315), + [anon_sym_BSLASHnotecite] = ACTIONS(12315), + [anon_sym_BSLASHpnotecite] = ACTIONS(12315), + [anon_sym_BSLASHPnotecite] = ACTIONS(12315), + [anon_sym_BSLASHfnotecite] = ACTIONS(12315), + [anon_sym_BSLASHusepackage] = ACTIONS(12315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12315), + [anon_sym_BSLASHinclude] = ACTIONS(12315), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12315), + [anon_sym_BSLASHinput] = ACTIONS(12315), + [anon_sym_BSLASHsubfile] = ACTIONS(12315), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12315), + [anon_sym_BSLASHbibliography] = ACTIONS(12315), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12315), + [anon_sym_BSLASHincludesvg] = ACTIONS(12315), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12315), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12315), + [anon_sym_BSLASHimport] = ACTIONS(12315), + [anon_sym_BSLASHsubimport] = ACTIONS(12315), + [anon_sym_BSLASHinputfrom] = ACTIONS(12315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12315), + [anon_sym_BSLASHincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12315), + [anon_sym_BSLASHlabel] = ACTIONS(12315), + [anon_sym_BSLASHref] = ACTIONS(12315), + [anon_sym_BSLASHvref] = ACTIONS(12315), + [anon_sym_BSLASHVref] = ACTIONS(12315), + [anon_sym_BSLASHautoref] = ACTIONS(12315), + [anon_sym_BSLASHpageref] = ACTIONS(12315), + [anon_sym_BSLASHcref] = ACTIONS(12315), + [anon_sym_BSLASHCref] = ACTIONS(12315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnameCref] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12315), + [anon_sym_BSLASHlabelcref] = ACTIONS(12315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12315), + [anon_sym_BSLASHeqref] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange] = ACTIONS(12315), + [anon_sym_BSLASHCrefrange] = ACTIONS(12315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewlabel] = ACTIONS(12315), + [anon_sym_BSLASHnewcommand] = ACTIONS(12315), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12315), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12315), + [anon_sym_BSLASHgls] = ACTIONS(12315), + [anon_sym_BSLASHGls] = ACTIONS(12315), + [anon_sym_BSLASHGLS] = ACTIONS(12315), + [anon_sym_BSLASHglspl] = ACTIONS(12315), + [anon_sym_BSLASHGlspl] = ACTIONS(12315), + [anon_sym_BSLASHGLSpl] = ACTIONS(12315), + [anon_sym_BSLASHglsdisp] = ACTIONS(12315), + [anon_sym_BSLASHglslink] = ACTIONS(12315), + [anon_sym_BSLASHglstext] = ACTIONS(12315), + [anon_sym_BSLASHGlstext] = ACTIONS(12315), + [anon_sym_BSLASHGLStext] = ACTIONS(12315), + [anon_sym_BSLASHglsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12315), + [anon_sym_BSLASHglsplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSplural] = ACTIONS(12315), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12315), + [anon_sym_BSLASHglsname] = ACTIONS(12315), + [anon_sym_BSLASHGlsname] = ACTIONS(12315), + [anon_sym_BSLASHGLSname] = ACTIONS(12315), + [anon_sym_BSLASHglssymbol] = ACTIONS(12315), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12315), + [anon_sym_BSLASHglsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12315), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12315), + [anon_sym_BSLASHglsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12315), + [anon_sym_BSLASHglsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12315), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12315), + [anon_sym_BSLASHglsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12315), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12315), + [anon_sym_BSLASHglsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12315), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12315), + [anon_sym_BSLASHnewacronym] = ACTIONS(12315), + [anon_sym_BSLASHacrshort] = ACTIONS(12315), + [anon_sym_BSLASHAcrshort] = ACTIONS(12315), + [anon_sym_BSLASHACRshort] = ACTIONS(12315), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12315), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12315), + [anon_sym_BSLASHacrlong] = ACTIONS(12315), + [anon_sym_BSLASHAcrlong] = ACTIONS(12315), + [anon_sym_BSLASHACRlong] = ACTIONS(12315), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12315), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12315), + [anon_sym_BSLASHacrfull] = ACTIONS(12315), + [anon_sym_BSLASHAcrfull] = ACTIONS(12315), + [anon_sym_BSLASHACRfull] = ACTIONS(12315), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12315), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12315), + [anon_sym_BSLASHacs] = ACTIONS(12315), + [anon_sym_BSLASHAcs] = ACTIONS(12315), + [anon_sym_BSLASHacsp] = ACTIONS(12315), + [anon_sym_BSLASHAcsp] = ACTIONS(12315), + [anon_sym_BSLASHacl] = ACTIONS(12315), + [anon_sym_BSLASHAcl] = ACTIONS(12315), + [anon_sym_BSLASHaclp] = ACTIONS(12315), + [anon_sym_BSLASHAclp] = ACTIONS(12315), + [anon_sym_BSLASHacf] = ACTIONS(12315), + [anon_sym_BSLASHAcf] = ACTIONS(12315), + [anon_sym_BSLASHacfp] = ACTIONS(12315), + [anon_sym_BSLASHAcfp] = ACTIONS(12315), + [anon_sym_BSLASHac] = ACTIONS(12315), + [anon_sym_BSLASHAc] = ACTIONS(12315), + [anon_sym_BSLASHacp] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12315), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12315), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12315), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12315), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12315), + [anon_sym_BSLASHcolor] = ACTIONS(12315), + [anon_sym_BSLASHcolorbox] = ACTIONS(12315), + [anon_sym_BSLASHtextcolor] = ACTIONS(12315), + [anon_sym_BSLASHpagecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12315), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12315), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12315), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12315), + }, + [1926] = { + [sym_generic_command_name] = ACTIONS(12231), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12229), + [anon_sym_RBRACK] = ACTIONS(12229), + [anon_sym_LBRACE] = ACTIONS(12229), + [anon_sym_RBRACE] = ACTIONS(12229), + [anon_sym_LPAREN] = ACTIONS(12229), + [anon_sym_COMMA] = ACTIONS(12229), + [anon_sym_EQ] = ACTIONS(12229), + [sym_word] = ACTIONS(12229), + [sym_param] = ACTIONS(12229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12229), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12229), + [anon_sym_DOLLAR] = ACTIONS(12231), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12229), + [anon_sym_BSLASHbegin] = ACTIONS(12231), + [anon_sym_BSLASHcaption] = ACTIONS(12231), + [anon_sym_BSLASHcite] = ACTIONS(12231), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCite] = ACTIONS(12231), + [anon_sym_BSLASHnocite] = ACTIONS(12231), + [anon_sym_BSLASHcitet] = ACTIONS(12231), + [anon_sym_BSLASHcitep] = ACTIONS(12231), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteauthor] = ACTIONS(12231), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12231), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitetitle] = ACTIONS(12231), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteyear] = ACTIONS(12231), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12229), + [anon_sym_BSLASHcitedate] = ACTIONS(12231), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12229), + [anon_sym_BSLASHciteurl] = ACTIONS(12231), + [anon_sym_BSLASHfullcite] = ACTIONS(12231), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12231), + [anon_sym_BSLASHcitealt] = ACTIONS(12231), + [anon_sym_BSLASHcitealp] = ACTIONS(12231), + [anon_sym_BSLASHcitetext] = ACTIONS(12231), + [anon_sym_BSLASHparencite] = ACTIONS(12231), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHParencite] = ACTIONS(12231), + [anon_sym_BSLASHfootcite] = ACTIONS(12231), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12231), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12231), + [anon_sym_BSLASHtextcite] = ACTIONS(12231), + [anon_sym_BSLASHTextcite] = ACTIONS(12231), + [anon_sym_BSLASHsmartcite] = ACTIONS(12231), + [anon_sym_BSLASHSmartcite] = ACTIONS(12231), + [anon_sym_BSLASHsupercite] = ACTIONS(12231), + [anon_sym_BSLASHautocite] = ACTIONS(12231), + [anon_sym_BSLASHAutocite] = ACTIONS(12231), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12229), + [anon_sym_BSLASHvolcite] = ACTIONS(12231), + [anon_sym_BSLASHVolcite] = ACTIONS(12231), + [anon_sym_BSLASHpvolcite] = ACTIONS(12231), + [anon_sym_BSLASHPvolcite] = ACTIONS(12231), + [anon_sym_BSLASHfvolcite] = ACTIONS(12231), + [anon_sym_BSLASHftvolcite] = ACTIONS(12231), + [anon_sym_BSLASHsvolcite] = ACTIONS(12231), + [anon_sym_BSLASHSvolcite] = ACTIONS(12231), + [anon_sym_BSLASHtvolcite] = ACTIONS(12231), + [anon_sym_BSLASHTvolcite] = ACTIONS(12231), + [anon_sym_BSLASHavolcite] = ACTIONS(12231), + [anon_sym_BSLASHAvolcite] = ACTIONS(12231), + [anon_sym_BSLASHnotecite] = ACTIONS(12231), + [anon_sym_BSLASHpnotecite] = ACTIONS(12231), + [anon_sym_BSLASHPnotecite] = ACTIONS(12231), + [anon_sym_BSLASHfnotecite] = ACTIONS(12231), + [anon_sym_BSLASHusepackage] = ACTIONS(12231), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12231), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12231), + [anon_sym_BSLASHinclude] = ACTIONS(12231), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12231), + [anon_sym_BSLASHinput] = ACTIONS(12231), + [anon_sym_BSLASHsubfile] = ACTIONS(12231), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12231), + [anon_sym_BSLASHbibliography] = ACTIONS(12231), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12231), + [anon_sym_BSLASHincludesvg] = ACTIONS(12231), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12231), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12231), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12231), + [anon_sym_BSLASHimport] = ACTIONS(12231), + [anon_sym_BSLASHsubimport] = ACTIONS(12231), + [anon_sym_BSLASHinputfrom] = ACTIONS(12231), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12231), + [anon_sym_BSLASHincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12231), + [anon_sym_BSLASHlabel] = ACTIONS(12231), + [anon_sym_BSLASHref] = ACTIONS(12231), + [anon_sym_BSLASHvref] = ACTIONS(12231), + [anon_sym_BSLASHVref] = ACTIONS(12231), + [anon_sym_BSLASHautoref] = ACTIONS(12231), + [anon_sym_BSLASHpageref] = ACTIONS(12231), + [anon_sym_BSLASHcref] = ACTIONS(12231), + [anon_sym_BSLASHCref] = ACTIONS(12231), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnameCref] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12231), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12231), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12231), + [anon_sym_BSLASHlabelcref] = ACTIONS(12231), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12231), + [anon_sym_BSLASHeqref] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange] = ACTIONS(12231), + [anon_sym_BSLASHCrefrange] = ACTIONS(12231), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewlabel] = ACTIONS(12231), + [anon_sym_BSLASHnewcommand] = ACTIONS(12231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12231), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12231), + [anon_sym_BSLASHgls] = ACTIONS(12231), + [anon_sym_BSLASHGls] = ACTIONS(12231), + [anon_sym_BSLASHGLS] = ACTIONS(12231), + [anon_sym_BSLASHglspl] = ACTIONS(12231), + [anon_sym_BSLASHGlspl] = ACTIONS(12231), + [anon_sym_BSLASHGLSpl] = ACTIONS(12231), + [anon_sym_BSLASHglsdisp] = ACTIONS(12231), + [anon_sym_BSLASHglslink] = ACTIONS(12231), + [anon_sym_BSLASHglstext] = ACTIONS(12231), + [anon_sym_BSLASHGlstext] = ACTIONS(12231), + [anon_sym_BSLASHGLStext] = ACTIONS(12231), + [anon_sym_BSLASHglsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12231), + [anon_sym_BSLASHglsplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSplural] = ACTIONS(12231), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12231), + [anon_sym_BSLASHglsname] = ACTIONS(12231), + [anon_sym_BSLASHGlsname] = ACTIONS(12231), + [anon_sym_BSLASHGLSname] = ACTIONS(12231), + [anon_sym_BSLASHglssymbol] = ACTIONS(12231), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12231), + [anon_sym_BSLASHglsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12231), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12231), + [anon_sym_BSLASHglsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12231), + [anon_sym_BSLASHglsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12231), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12231), + [anon_sym_BSLASHglsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12231), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12231), + [anon_sym_BSLASHglsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12231), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12231), + [anon_sym_BSLASHnewacronym] = ACTIONS(12231), + [anon_sym_BSLASHacrshort] = ACTIONS(12231), + [anon_sym_BSLASHAcrshort] = ACTIONS(12231), + [anon_sym_BSLASHACRshort] = ACTIONS(12231), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12231), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12231), + [anon_sym_BSLASHacrlong] = ACTIONS(12231), + [anon_sym_BSLASHAcrlong] = ACTIONS(12231), + [anon_sym_BSLASHACRlong] = ACTIONS(12231), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12231), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12231), + [anon_sym_BSLASHacrfull] = ACTIONS(12231), + [anon_sym_BSLASHAcrfull] = ACTIONS(12231), + [anon_sym_BSLASHACRfull] = ACTIONS(12231), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12231), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12231), + [anon_sym_BSLASHacs] = ACTIONS(12231), + [anon_sym_BSLASHAcs] = ACTIONS(12231), + [anon_sym_BSLASHacsp] = ACTIONS(12231), + [anon_sym_BSLASHAcsp] = ACTIONS(12231), + [anon_sym_BSLASHacl] = ACTIONS(12231), + [anon_sym_BSLASHAcl] = ACTIONS(12231), + [anon_sym_BSLASHaclp] = ACTIONS(12231), + [anon_sym_BSLASHAclp] = ACTIONS(12231), + [anon_sym_BSLASHacf] = ACTIONS(12231), + [anon_sym_BSLASHAcf] = ACTIONS(12231), + [anon_sym_BSLASHacfp] = ACTIONS(12231), + [anon_sym_BSLASHAcfp] = ACTIONS(12231), + [anon_sym_BSLASHac] = ACTIONS(12231), + [anon_sym_BSLASHAc] = ACTIONS(12231), + [anon_sym_BSLASHacp] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12231), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12231), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12231), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12231), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12231), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12231), + [anon_sym_BSLASHcolor] = ACTIONS(12231), + [anon_sym_BSLASHcolorbox] = ACTIONS(12231), + [anon_sym_BSLASHtextcolor] = ACTIONS(12231), + [anon_sym_BSLASHpagecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12231), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12231), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12231), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12231), + }, + [1927] = { + [sym_generic_command_name] = ACTIONS(12365), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12363), + [anon_sym_RBRACK] = ACTIONS(12363), + [anon_sym_LBRACE] = ACTIONS(12363), + [anon_sym_RBRACE] = ACTIONS(12363), + [anon_sym_LPAREN] = ACTIONS(12363), + [anon_sym_COMMA] = ACTIONS(12363), + [anon_sym_EQ] = ACTIONS(12363), + [sym_word] = ACTIONS(12363), + [sym_param] = ACTIONS(12363), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12363), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12363), + [anon_sym_DOLLAR] = ACTIONS(12365), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12363), + [anon_sym_BSLASHbegin] = ACTIONS(12365), + [anon_sym_BSLASHcaption] = ACTIONS(12365), + [anon_sym_BSLASHcite] = ACTIONS(12365), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCite] = ACTIONS(12365), + [anon_sym_BSLASHnocite] = ACTIONS(12365), + [anon_sym_BSLASHcitet] = ACTIONS(12365), + [anon_sym_BSLASHcitep] = ACTIONS(12365), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteauthor] = ACTIONS(12365), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12365), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitetitle] = ACTIONS(12365), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteyear] = ACTIONS(12365), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12363), + [anon_sym_BSLASHcitedate] = ACTIONS(12365), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12363), + [anon_sym_BSLASHciteurl] = ACTIONS(12365), + [anon_sym_BSLASHfullcite] = ACTIONS(12365), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12365), + [anon_sym_BSLASHcitealt] = ACTIONS(12365), + [anon_sym_BSLASHcitealp] = ACTIONS(12365), + [anon_sym_BSLASHcitetext] = ACTIONS(12365), + [anon_sym_BSLASHparencite] = ACTIONS(12365), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHParencite] = ACTIONS(12365), + [anon_sym_BSLASHfootcite] = ACTIONS(12365), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12365), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12365), + [anon_sym_BSLASHtextcite] = ACTIONS(12365), + [anon_sym_BSLASHTextcite] = ACTIONS(12365), + [anon_sym_BSLASHsmartcite] = ACTIONS(12365), + [anon_sym_BSLASHSmartcite] = ACTIONS(12365), + [anon_sym_BSLASHsupercite] = ACTIONS(12365), + [anon_sym_BSLASHautocite] = ACTIONS(12365), + [anon_sym_BSLASHAutocite] = ACTIONS(12365), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12363), + [anon_sym_BSLASHvolcite] = ACTIONS(12365), + [anon_sym_BSLASHVolcite] = ACTIONS(12365), + [anon_sym_BSLASHpvolcite] = ACTIONS(12365), + [anon_sym_BSLASHPvolcite] = ACTIONS(12365), + [anon_sym_BSLASHfvolcite] = ACTIONS(12365), + [anon_sym_BSLASHftvolcite] = ACTIONS(12365), + [anon_sym_BSLASHsvolcite] = ACTIONS(12365), + [anon_sym_BSLASHSvolcite] = ACTIONS(12365), + [anon_sym_BSLASHtvolcite] = ACTIONS(12365), + [anon_sym_BSLASHTvolcite] = ACTIONS(12365), + [anon_sym_BSLASHavolcite] = ACTIONS(12365), + [anon_sym_BSLASHAvolcite] = ACTIONS(12365), + [anon_sym_BSLASHnotecite] = ACTIONS(12365), + [anon_sym_BSLASHpnotecite] = ACTIONS(12365), + [anon_sym_BSLASHPnotecite] = ACTIONS(12365), + [anon_sym_BSLASHfnotecite] = ACTIONS(12365), + [anon_sym_BSLASHusepackage] = ACTIONS(12365), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12365), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12365), + [anon_sym_BSLASHinclude] = ACTIONS(12365), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12365), + [anon_sym_BSLASHinput] = ACTIONS(12365), + [anon_sym_BSLASHsubfile] = ACTIONS(12365), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12365), + [anon_sym_BSLASHbibliography] = ACTIONS(12365), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12365), + [anon_sym_BSLASHincludesvg] = ACTIONS(12365), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12365), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12365), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12365), + [anon_sym_BSLASHimport] = ACTIONS(12365), + [anon_sym_BSLASHsubimport] = ACTIONS(12365), + [anon_sym_BSLASHinputfrom] = ACTIONS(12365), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12365), + [anon_sym_BSLASHincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12365), + [anon_sym_BSLASHlabel] = ACTIONS(12365), + [anon_sym_BSLASHref] = ACTIONS(12365), + [anon_sym_BSLASHvref] = ACTIONS(12365), + [anon_sym_BSLASHVref] = ACTIONS(12365), + [anon_sym_BSLASHautoref] = ACTIONS(12365), + [anon_sym_BSLASHpageref] = ACTIONS(12365), + [anon_sym_BSLASHcref] = ACTIONS(12365), + [anon_sym_BSLASHCref] = ACTIONS(12365), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnameCref] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12365), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12365), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12365), + [anon_sym_BSLASHlabelcref] = ACTIONS(12365), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12365), + [anon_sym_BSLASHeqref] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange] = ACTIONS(12365), + [anon_sym_BSLASHCrefrange] = ACTIONS(12365), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewlabel] = ACTIONS(12365), + [anon_sym_BSLASHnewcommand] = ACTIONS(12365), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12365), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12363), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12365), + [anon_sym_BSLASHgls] = ACTIONS(12365), + [anon_sym_BSLASHGls] = ACTIONS(12365), + [anon_sym_BSLASHGLS] = ACTIONS(12365), + [anon_sym_BSLASHglspl] = ACTIONS(12365), + [anon_sym_BSLASHGlspl] = ACTIONS(12365), + [anon_sym_BSLASHGLSpl] = ACTIONS(12365), + [anon_sym_BSLASHglsdisp] = ACTIONS(12365), + [anon_sym_BSLASHglslink] = ACTIONS(12365), + [anon_sym_BSLASHglstext] = ACTIONS(12365), + [anon_sym_BSLASHGlstext] = ACTIONS(12365), + [anon_sym_BSLASHGLStext] = ACTIONS(12365), + [anon_sym_BSLASHglsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12365), + [anon_sym_BSLASHglsplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSplural] = ACTIONS(12365), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12365), + [anon_sym_BSLASHglsname] = ACTIONS(12365), + [anon_sym_BSLASHGlsname] = ACTIONS(12365), + [anon_sym_BSLASHGLSname] = ACTIONS(12365), + [anon_sym_BSLASHglssymbol] = ACTIONS(12365), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12365), + [anon_sym_BSLASHglsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12365), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12365), + [anon_sym_BSLASHglsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12365), + [anon_sym_BSLASHglsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12365), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12365), + [anon_sym_BSLASHglsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12365), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12365), + [anon_sym_BSLASHglsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12365), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12365), + [anon_sym_BSLASHnewacronym] = ACTIONS(12365), + [anon_sym_BSLASHacrshort] = ACTIONS(12365), + [anon_sym_BSLASHAcrshort] = ACTIONS(12365), + [anon_sym_BSLASHACRshort] = ACTIONS(12365), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12365), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12365), + [anon_sym_BSLASHacrlong] = ACTIONS(12365), + [anon_sym_BSLASHAcrlong] = ACTIONS(12365), + [anon_sym_BSLASHACRlong] = ACTIONS(12365), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12365), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12365), + [anon_sym_BSLASHacrfull] = ACTIONS(12365), + [anon_sym_BSLASHAcrfull] = ACTIONS(12365), + [anon_sym_BSLASHACRfull] = ACTIONS(12365), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12365), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12365), + [anon_sym_BSLASHacs] = ACTIONS(12365), + [anon_sym_BSLASHAcs] = ACTIONS(12365), + [anon_sym_BSLASHacsp] = ACTIONS(12365), + [anon_sym_BSLASHAcsp] = ACTIONS(12365), + [anon_sym_BSLASHacl] = ACTIONS(12365), + [anon_sym_BSLASHAcl] = ACTIONS(12365), + [anon_sym_BSLASHaclp] = ACTIONS(12365), + [anon_sym_BSLASHAclp] = ACTIONS(12365), + [anon_sym_BSLASHacf] = ACTIONS(12365), + [anon_sym_BSLASHAcf] = ACTIONS(12365), + [anon_sym_BSLASHacfp] = ACTIONS(12365), + [anon_sym_BSLASHAcfp] = ACTIONS(12365), + [anon_sym_BSLASHac] = ACTIONS(12365), + [anon_sym_BSLASHAc] = ACTIONS(12365), + [anon_sym_BSLASHacp] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12365), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12365), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12365), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12365), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12365), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12365), + [anon_sym_BSLASHcolor] = ACTIONS(12365), + [anon_sym_BSLASHcolorbox] = ACTIONS(12365), + [anon_sym_BSLASHtextcolor] = ACTIONS(12365), + [anon_sym_BSLASHpagecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12365), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12365), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12365), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12365), + }, + [1928] = { + [sym_generic_command_name] = ACTIONS(12335), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12799), + [anon_sym_RBRACK] = ACTIONS(12333), + [anon_sym_LBRACE] = ACTIONS(12333), + [anon_sym_RBRACE] = ACTIONS(12333), + [anon_sym_LPAREN] = ACTIONS(12333), + [anon_sym_COMMA] = ACTIONS(12333), + [anon_sym_EQ] = ACTIONS(12333), + [sym_word] = ACTIONS(12333), + [sym_param] = ACTIONS(12333), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12333), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12333), + [anon_sym_DOLLAR] = ACTIONS(12335), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12333), + [anon_sym_BSLASHbegin] = ACTIONS(12335), + [anon_sym_BSLASHcaption] = ACTIONS(12335), + [anon_sym_BSLASHcite] = ACTIONS(12335), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCite] = ACTIONS(12335), + [anon_sym_BSLASHnocite] = ACTIONS(12335), + [anon_sym_BSLASHcitet] = ACTIONS(12335), + [anon_sym_BSLASHcitep] = ACTIONS(12335), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteauthor] = ACTIONS(12335), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12335), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitetitle] = ACTIONS(12335), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteyear] = ACTIONS(12335), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12333), + [anon_sym_BSLASHcitedate] = ACTIONS(12335), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12333), + [anon_sym_BSLASHciteurl] = ACTIONS(12335), + [anon_sym_BSLASHfullcite] = ACTIONS(12335), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12335), + [anon_sym_BSLASHcitealt] = ACTIONS(12335), + [anon_sym_BSLASHcitealp] = ACTIONS(12335), + [anon_sym_BSLASHcitetext] = ACTIONS(12335), + [anon_sym_BSLASHparencite] = ACTIONS(12335), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHParencite] = ACTIONS(12335), + [anon_sym_BSLASHfootcite] = ACTIONS(12335), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12335), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12335), + [anon_sym_BSLASHtextcite] = ACTIONS(12335), + [anon_sym_BSLASHTextcite] = ACTIONS(12335), + [anon_sym_BSLASHsmartcite] = ACTIONS(12335), + [anon_sym_BSLASHSmartcite] = ACTIONS(12335), + [anon_sym_BSLASHsupercite] = ACTIONS(12335), + [anon_sym_BSLASHautocite] = ACTIONS(12335), + [anon_sym_BSLASHAutocite] = ACTIONS(12335), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12333), + [anon_sym_BSLASHvolcite] = ACTIONS(12335), + [anon_sym_BSLASHVolcite] = ACTIONS(12335), + [anon_sym_BSLASHpvolcite] = ACTIONS(12335), + [anon_sym_BSLASHPvolcite] = ACTIONS(12335), + [anon_sym_BSLASHfvolcite] = ACTIONS(12335), + [anon_sym_BSLASHftvolcite] = ACTIONS(12335), + [anon_sym_BSLASHsvolcite] = ACTIONS(12335), + [anon_sym_BSLASHSvolcite] = ACTIONS(12335), + [anon_sym_BSLASHtvolcite] = ACTIONS(12335), + [anon_sym_BSLASHTvolcite] = ACTIONS(12335), + [anon_sym_BSLASHavolcite] = ACTIONS(12335), + [anon_sym_BSLASHAvolcite] = ACTIONS(12335), + [anon_sym_BSLASHnotecite] = ACTIONS(12335), + [anon_sym_BSLASHpnotecite] = ACTIONS(12335), + [anon_sym_BSLASHPnotecite] = ACTIONS(12335), + [anon_sym_BSLASHfnotecite] = ACTIONS(12335), + [anon_sym_BSLASHusepackage] = ACTIONS(12335), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12335), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12335), + [anon_sym_BSLASHinclude] = ACTIONS(12335), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12335), + [anon_sym_BSLASHinput] = ACTIONS(12335), + [anon_sym_BSLASHsubfile] = ACTIONS(12335), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12335), + [anon_sym_BSLASHbibliography] = ACTIONS(12335), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12335), + [anon_sym_BSLASHincludesvg] = ACTIONS(12335), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12335), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12335), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12335), + [anon_sym_BSLASHimport] = ACTIONS(12335), + [anon_sym_BSLASHsubimport] = ACTIONS(12335), + [anon_sym_BSLASHinputfrom] = ACTIONS(12335), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12335), + [anon_sym_BSLASHincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12335), + [anon_sym_BSLASHlabel] = ACTIONS(12335), + [anon_sym_BSLASHref] = ACTIONS(12335), + [anon_sym_BSLASHvref] = ACTIONS(12335), + [anon_sym_BSLASHVref] = ACTIONS(12335), + [anon_sym_BSLASHautoref] = ACTIONS(12335), + [anon_sym_BSLASHpageref] = ACTIONS(12335), + [anon_sym_BSLASHcref] = ACTIONS(12335), + [anon_sym_BSLASHCref] = ACTIONS(12335), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnameCref] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12335), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12335), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12335), + [anon_sym_BSLASHlabelcref] = ACTIONS(12335), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12335), + [anon_sym_BSLASHeqref] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange] = ACTIONS(12335), + [anon_sym_BSLASHCrefrange] = ACTIONS(12335), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewlabel] = ACTIONS(12335), + [anon_sym_BSLASHnewcommand] = ACTIONS(12335), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12335), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12333), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12335), + [anon_sym_BSLASHgls] = ACTIONS(12335), + [anon_sym_BSLASHGls] = ACTIONS(12335), + [anon_sym_BSLASHGLS] = ACTIONS(12335), + [anon_sym_BSLASHglspl] = ACTIONS(12335), + [anon_sym_BSLASHGlspl] = ACTIONS(12335), + [anon_sym_BSLASHGLSpl] = ACTIONS(12335), + [anon_sym_BSLASHglsdisp] = ACTIONS(12335), + [anon_sym_BSLASHglslink] = ACTIONS(12335), + [anon_sym_BSLASHglstext] = ACTIONS(12335), + [anon_sym_BSLASHGlstext] = ACTIONS(12335), + [anon_sym_BSLASHGLStext] = ACTIONS(12335), + [anon_sym_BSLASHglsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12335), + [anon_sym_BSLASHglsplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSplural] = ACTIONS(12335), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12335), + [anon_sym_BSLASHglsname] = ACTIONS(12335), + [anon_sym_BSLASHGlsname] = ACTIONS(12335), + [anon_sym_BSLASHGLSname] = ACTIONS(12335), + [anon_sym_BSLASHglssymbol] = ACTIONS(12335), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12335), + [anon_sym_BSLASHglsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12335), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12335), + [anon_sym_BSLASHglsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12335), + [anon_sym_BSLASHglsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12335), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12335), + [anon_sym_BSLASHglsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12335), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12335), + [anon_sym_BSLASHglsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12335), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12335), + [anon_sym_BSLASHnewacronym] = ACTIONS(12335), + [anon_sym_BSLASHacrshort] = ACTIONS(12335), + [anon_sym_BSLASHAcrshort] = ACTIONS(12335), + [anon_sym_BSLASHACRshort] = ACTIONS(12335), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12335), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12335), + [anon_sym_BSLASHacrlong] = ACTIONS(12335), + [anon_sym_BSLASHAcrlong] = ACTIONS(12335), + [anon_sym_BSLASHACRlong] = ACTIONS(12335), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12335), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12335), + [anon_sym_BSLASHacrfull] = ACTIONS(12335), + [anon_sym_BSLASHAcrfull] = ACTIONS(12335), + [anon_sym_BSLASHACRfull] = ACTIONS(12335), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12335), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12335), + [anon_sym_BSLASHacs] = ACTIONS(12335), + [anon_sym_BSLASHAcs] = ACTIONS(12335), + [anon_sym_BSLASHacsp] = ACTIONS(12335), + [anon_sym_BSLASHAcsp] = ACTIONS(12335), + [anon_sym_BSLASHacl] = ACTIONS(12335), + [anon_sym_BSLASHAcl] = ACTIONS(12335), + [anon_sym_BSLASHaclp] = ACTIONS(12335), + [anon_sym_BSLASHAclp] = ACTIONS(12335), + [anon_sym_BSLASHacf] = ACTIONS(12335), + [anon_sym_BSLASHAcf] = ACTIONS(12335), + [anon_sym_BSLASHacfp] = ACTIONS(12335), + [anon_sym_BSLASHAcfp] = ACTIONS(12335), + [anon_sym_BSLASHac] = ACTIONS(12335), + [anon_sym_BSLASHAc] = ACTIONS(12335), + [anon_sym_BSLASHacp] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12335), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12335), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12335), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12335), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12335), + [anon_sym_BSLASHcolor] = ACTIONS(12335), + [anon_sym_BSLASHcolorbox] = ACTIONS(12335), + [anon_sym_BSLASHtextcolor] = ACTIONS(12335), + [anon_sym_BSLASHpagecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12335), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12335), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12335), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12335), + }, + [1929] = { + [sym_generic_command_name] = ACTIONS(12341), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12339), + [anon_sym_RBRACK] = ACTIONS(12339), + [anon_sym_LBRACE] = ACTIONS(12339), + [anon_sym_RBRACE] = ACTIONS(12339), + [anon_sym_LPAREN] = ACTIONS(12339), + [anon_sym_COMMA] = ACTIONS(12339), + [anon_sym_EQ] = ACTIONS(12339), + [sym_word] = ACTIONS(12339), + [sym_param] = ACTIONS(12339), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12339), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12339), + [anon_sym_DOLLAR] = ACTIONS(12341), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12339), + [anon_sym_BSLASHbegin] = ACTIONS(12341), + [anon_sym_BSLASHcaption] = ACTIONS(12341), + [anon_sym_BSLASHcite] = ACTIONS(12341), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCite] = ACTIONS(12341), + [anon_sym_BSLASHnocite] = ACTIONS(12341), + [anon_sym_BSLASHcitet] = ACTIONS(12341), + [anon_sym_BSLASHcitep] = ACTIONS(12341), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteauthor] = ACTIONS(12341), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12341), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitetitle] = ACTIONS(12341), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteyear] = ACTIONS(12341), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12339), + [anon_sym_BSLASHcitedate] = ACTIONS(12341), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12339), + [anon_sym_BSLASHciteurl] = ACTIONS(12341), + [anon_sym_BSLASHfullcite] = ACTIONS(12341), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12341), + [anon_sym_BSLASHcitealt] = ACTIONS(12341), + [anon_sym_BSLASHcitealp] = ACTIONS(12341), + [anon_sym_BSLASHcitetext] = ACTIONS(12341), + [anon_sym_BSLASHparencite] = ACTIONS(12341), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHParencite] = ACTIONS(12341), + [anon_sym_BSLASHfootcite] = ACTIONS(12341), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12341), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12341), + [anon_sym_BSLASHtextcite] = ACTIONS(12341), + [anon_sym_BSLASHTextcite] = ACTIONS(12341), + [anon_sym_BSLASHsmartcite] = ACTIONS(12341), + [anon_sym_BSLASHSmartcite] = ACTIONS(12341), + [anon_sym_BSLASHsupercite] = ACTIONS(12341), + [anon_sym_BSLASHautocite] = ACTIONS(12341), + [anon_sym_BSLASHAutocite] = ACTIONS(12341), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12339), + [anon_sym_BSLASHvolcite] = ACTIONS(12341), + [anon_sym_BSLASHVolcite] = ACTIONS(12341), + [anon_sym_BSLASHpvolcite] = ACTIONS(12341), + [anon_sym_BSLASHPvolcite] = ACTIONS(12341), + [anon_sym_BSLASHfvolcite] = ACTIONS(12341), + [anon_sym_BSLASHftvolcite] = ACTIONS(12341), + [anon_sym_BSLASHsvolcite] = ACTIONS(12341), + [anon_sym_BSLASHSvolcite] = ACTIONS(12341), + [anon_sym_BSLASHtvolcite] = ACTIONS(12341), + [anon_sym_BSLASHTvolcite] = ACTIONS(12341), + [anon_sym_BSLASHavolcite] = ACTIONS(12341), + [anon_sym_BSLASHAvolcite] = ACTIONS(12341), + [anon_sym_BSLASHnotecite] = ACTIONS(12341), + [anon_sym_BSLASHpnotecite] = ACTIONS(12341), + [anon_sym_BSLASHPnotecite] = ACTIONS(12341), + [anon_sym_BSLASHfnotecite] = ACTIONS(12341), + [anon_sym_BSLASHusepackage] = ACTIONS(12341), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12341), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12341), + [anon_sym_BSLASHinclude] = ACTIONS(12341), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12341), + [anon_sym_BSLASHinput] = ACTIONS(12341), + [anon_sym_BSLASHsubfile] = ACTIONS(12341), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12341), + [anon_sym_BSLASHbibliography] = ACTIONS(12341), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12341), + [anon_sym_BSLASHincludesvg] = ACTIONS(12341), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12341), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12341), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12341), + [anon_sym_BSLASHimport] = ACTIONS(12341), + [anon_sym_BSLASHsubimport] = ACTIONS(12341), + [anon_sym_BSLASHinputfrom] = ACTIONS(12341), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12341), + [anon_sym_BSLASHincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12341), + [anon_sym_BSLASHlabel] = ACTIONS(12341), + [anon_sym_BSLASHref] = ACTIONS(12341), + [anon_sym_BSLASHvref] = ACTIONS(12341), + [anon_sym_BSLASHVref] = ACTIONS(12341), + [anon_sym_BSLASHautoref] = ACTIONS(12341), + [anon_sym_BSLASHpageref] = ACTIONS(12341), + [anon_sym_BSLASHcref] = ACTIONS(12341), + [anon_sym_BSLASHCref] = ACTIONS(12341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnameCref] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12341), + [anon_sym_BSLASHlabelcref] = ACTIONS(12341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12341), + [anon_sym_BSLASHeqref] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange] = ACTIONS(12341), + [anon_sym_BSLASHCrefrange] = ACTIONS(12341), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewlabel] = ACTIONS(12341), + [anon_sym_BSLASHnewcommand] = ACTIONS(12341), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12341), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12339), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12341), + [anon_sym_BSLASHgls] = ACTIONS(12341), + [anon_sym_BSLASHGls] = ACTIONS(12341), + [anon_sym_BSLASHGLS] = ACTIONS(12341), + [anon_sym_BSLASHglspl] = ACTIONS(12341), + [anon_sym_BSLASHGlspl] = ACTIONS(12341), + [anon_sym_BSLASHGLSpl] = ACTIONS(12341), + [anon_sym_BSLASHglsdisp] = ACTIONS(12341), + [anon_sym_BSLASHglslink] = ACTIONS(12341), + [anon_sym_BSLASHglstext] = ACTIONS(12341), + [anon_sym_BSLASHGlstext] = ACTIONS(12341), + [anon_sym_BSLASHGLStext] = ACTIONS(12341), + [anon_sym_BSLASHglsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12341), + [anon_sym_BSLASHglsplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSplural] = ACTIONS(12341), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12341), + [anon_sym_BSLASHglsname] = ACTIONS(12341), + [anon_sym_BSLASHGlsname] = ACTIONS(12341), + [anon_sym_BSLASHGLSname] = ACTIONS(12341), + [anon_sym_BSLASHglssymbol] = ACTIONS(12341), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12341), + [anon_sym_BSLASHglsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12341), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12341), + [anon_sym_BSLASHglsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12341), + [anon_sym_BSLASHglsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12341), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12341), + [anon_sym_BSLASHglsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12341), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12341), + [anon_sym_BSLASHglsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12341), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12341), + [anon_sym_BSLASHnewacronym] = ACTIONS(12341), + [anon_sym_BSLASHacrshort] = ACTIONS(12341), + [anon_sym_BSLASHAcrshort] = ACTIONS(12341), + [anon_sym_BSLASHACRshort] = ACTIONS(12341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12341), + [anon_sym_BSLASHacrlong] = ACTIONS(12341), + [anon_sym_BSLASHAcrlong] = ACTIONS(12341), + [anon_sym_BSLASHACRlong] = ACTIONS(12341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12341), + [anon_sym_BSLASHacrfull] = ACTIONS(12341), + [anon_sym_BSLASHAcrfull] = ACTIONS(12341), + [anon_sym_BSLASHACRfull] = ACTIONS(12341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12341), + [anon_sym_BSLASHacs] = ACTIONS(12341), + [anon_sym_BSLASHAcs] = ACTIONS(12341), + [anon_sym_BSLASHacsp] = ACTIONS(12341), + [anon_sym_BSLASHAcsp] = ACTIONS(12341), + [anon_sym_BSLASHacl] = ACTIONS(12341), + [anon_sym_BSLASHAcl] = ACTIONS(12341), + [anon_sym_BSLASHaclp] = ACTIONS(12341), + [anon_sym_BSLASHAclp] = ACTIONS(12341), + [anon_sym_BSLASHacf] = ACTIONS(12341), + [anon_sym_BSLASHAcf] = ACTIONS(12341), + [anon_sym_BSLASHacfp] = ACTIONS(12341), + [anon_sym_BSLASHAcfp] = ACTIONS(12341), + [anon_sym_BSLASHac] = ACTIONS(12341), + [anon_sym_BSLASHAc] = ACTIONS(12341), + [anon_sym_BSLASHacp] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12341), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12341), + [anon_sym_BSLASHcolor] = ACTIONS(12341), + [anon_sym_BSLASHcolorbox] = ACTIONS(12341), + [anon_sym_BSLASHtextcolor] = ACTIONS(12341), + [anon_sym_BSLASHpagecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12341), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12341), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12341), + }, + [1930] = { + [sym_generic_command_name] = ACTIONS(12353), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12351), + [anon_sym_RBRACK] = ACTIONS(12351), + [anon_sym_LBRACE] = ACTIONS(12351), + [anon_sym_RBRACE] = ACTIONS(12351), + [anon_sym_LPAREN] = ACTIONS(12351), + [anon_sym_COMMA] = ACTIONS(12351), + [anon_sym_EQ] = ACTIONS(12351), + [sym_word] = ACTIONS(12351), + [sym_param] = ACTIONS(12351), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12351), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12351), + [anon_sym_DOLLAR] = ACTIONS(12353), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12351), + [anon_sym_BSLASHbegin] = ACTIONS(12353), + [anon_sym_BSLASHcaption] = ACTIONS(12353), + [anon_sym_BSLASHcite] = ACTIONS(12353), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCite] = ACTIONS(12353), + [anon_sym_BSLASHnocite] = ACTIONS(12353), + [anon_sym_BSLASHcitet] = ACTIONS(12353), + [anon_sym_BSLASHcitep] = ACTIONS(12353), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteauthor] = ACTIONS(12353), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12353), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitetitle] = ACTIONS(12353), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteyear] = ACTIONS(12353), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12351), + [anon_sym_BSLASHcitedate] = ACTIONS(12353), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12351), + [anon_sym_BSLASHciteurl] = ACTIONS(12353), + [anon_sym_BSLASHfullcite] = ACTIONS(12353), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12353), + [anon_sym_BSLASHcitealt] = ACTIONS(12353), + [anon_sym_BSLASHcitealp] = ACTIONS(12353), + [anon_sym_BSLASHcitetext] = ACTIONS(12353), + [anon_sym_BSLASHparencite] = ACTIONS(12353), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHParencite] = ACTIONS(12353), + [anon_sym_BSLASHfootcite] = ACTIONS(12353), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12353), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12353), + [anon_sym_BSLASHtextcite] = ACTIONS(12353), + [anon_sym_BSLASHTextcite] = ACTIONS(12353), + [anon_sym_BSLASHsmartcite] = ACTIONS(12353), + [anon_sym_BSLASHSmartcite] = ACTIONS(12353), + [anon_sym_BSLASHsupercite] = ACTIONS(12353), + [anon_sym_BSLASHautocite] = ACTIONS(12353), + [anon_sym_BSLASHAutocite] = ACTIONS(12353), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12351), + [anon_sym_BSLASHvolcite] = ACTIONS(12353), + [anon_sym_BSLASHVolcite] = ACTIONS(12353), + [anon_sym_BSLASHpvolcite] = ACTIONS(12353), + [anon_sym_BSLASHPvolcite] = ACTIONS(12353), + [anon_sym_BSLASHfvolcite] = ACTIONS(12353), + [anon_sym_BSLASHftvolcite] = ACTIONS(12353), + [anon_sym_BSLASHsvolcite] = ACTIONS(12353), + [anon_sym_BSLASHSvolcite] = ACTIONS(12353), + [anon_sym_BSLASHtvolcite] = ACTIONS(12353), + [anon_sym_BSLASHTvolcite] = ACTIONS(12353), + [anon_sym_BSLASHavolcite] = ACTIONS(12353), + [anon_sym_BSLASHAvolcite] = ACTIONS(12353), + [anon_sym_BSLASHnotecite] = ACTIONS(12353), + [anon_sym_BSLASHpnotecite] = ACTIONS(12353), + [anon_sym_BSLASHPnotecite] = ACTIONS(12353), + [anon_sym_BSLASHfnotecite] = ACTIONS(12353), + [anon_sym_BSLASHusepackage] = ACTIONS(12353), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12353), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12353), + [anon_sym_BSLASHinclude] = ACTIONS(12353), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12353), + [anon_sym_BSLASHinput] = ACTIONS(12353), + [anon_sym_BSLASHsubfile] = ACTIONS(12353), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12353), + [anon_sym_BSLASHbibliography] = ACTIONS(12353), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12353), + [anon_sym_BSLASHincludesvg] = ACTIONS(12353), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12353), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12353), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12353), + [anon_sym_BSLASHimport] = ACTIONS(12353), + [anon_sym_BSLASHsubimport] = ACTIONS(12353), + [anon_sym_BSLASHinputfrom] = ACTIONS(12353), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12353), + [anon_sym_BSLASHincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12353), + [anon_sym_BSLASHlabel] = ACTIONS(12353), + [anon_sym_BSLASHref] = ACTIONS(12353), + [anon_sym_BSLASHvref] = ACTIONS(12353), + [anon_sym_BSLASHVref] = ACTIONS(12353), + [anon_sym_BSLASHautoref] = ACTIONS(12353), + [anon_sym_BSLASHpageref] = ACTIONS(12353), + [anon_sym_BSLASHcref] = ACTIONS(12353), + [anon_sym_BSLASHCref] = ACTIONS(12353), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnameCref] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12353), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12353), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12353), + [anon_sym_BSLASHlabelcref] = ACTIONS(12353), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12353), + [anon_sym_BSLASHeqref] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange] = ACTIONS(12353), + [anon_sym_BSLASHCrefrange] = ACTIONS(12353), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewlabel] = ACTIONS(12353), + [anon_sym_BSLASHnewcommand] = ACTIONS(12353), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12353), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12351), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12353), + [anon_sym_BSLASHgls] = ACTIONS(12353), + [anon_sym_BSLASHGls] = ACTIONS(12353), + [anon_sym_BSLASHGLS] = ACTIONS(12353), + [anon_sym_BSLASHglspl] = ACTIONS(12353), + [anon_sym_BSLASHGlspl] = ACTIONS(12353), + [anon_sym_BSLASHGLSpl] = ACTIONS(12353), + [anon_sym_BSLASHglsdisp] = ACTIONS(12353), + [anon_sym_BSLASHglslink] = ACTIONS(12353), + [anon_sym_BSLASHglstext] = ACTIONS(12353), + [anon_sym_BSLASHGlstext] = ACTIONS(12353), + [anon_sym_BSLASHGLStext] = ACTIONS(12353), + [anon_sym_BSLASHglsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12353), + [anon_sym_BSLASHglsplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSplural] = ACTIONS(12353), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12353), + [anon_sym_BSLASHglsname] = ACTIONS(12353), + [anon_sym_BSLASHGlsname] = ACTIONS(12353), + [anon_sym_BSLASHGLSname] = ACTIONS(12353), + [anon_sym_BSLASHglssymbol] = ACTIONS(12353), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12353), + [anon_sym_BSLASHglsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12353), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12353), + [anon_sym_BSLASHglsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12353), + [anon_sym_BSLASHglsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12353), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12353), + [anon_sym_BSLASHglsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12353), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12353), + [anon_sym_BSLASHglsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12353), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12353), + [anon_sym_BSLASHnewacronym] = ACTIONS(12353), + [anon_sym_BSLASHacrshort] = ACTIONS(12353), + [anon_sym_BSLASHAcrshort] = ACTIONS(12353), + [anon_sym_BSLASHACRshort] = ACTIONS(12353), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12353), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12353), + [anon_sym_BSLASHacrlong] = ACTIONS(12353), + [anon_sym_BSLASHAcrlong] = ACTIONS(12353), + [anon_sym_BSLASHACRlong] = ACTIONS(12353), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12353), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12353), + [anon_sym_BSLASHacrfull] = ACTIONS(12353), + [anon_sym_BSLASHAcrfull] = ACTIONS(12353), + [anon_sym_BSLASHACRfull] = ACTIONS(12353), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12353), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12353), + [anon_sym_BSLASHacs] = ACTIONS(12353), + [anon_sym_BSLASHAcs] = ACTIONS(12353), + [anon_sym_BSLASHacsp] = ACTIONS(12353), + [anon_sym_BSLASHAcsp] = ACTIONS(12353), + [anon_sym_BSLASHacl] = ACTIONS(12353), + [anon_sym_BSLASHAcl] = ACTIONS(12353), + [anon_sym_BSLASHaclp] = ACTIONS(12353), + [anon_sym_BSLASHAclp] = ACTIONS(12353), + [anon_sym_BSLASHacf] = ACTIONS(12353), + [anon_sym_BSLASHAcf] = ACTIONS(12353), + [anon_sym_BSLASHacfp] = ACTIONS(12353), + [anon_sym_BSLASHAcfp] = ACTIONS(12353), + [anon_sym_BSLASHac] = ACTIONS(12353), + [anon_sym_BSLASHAc] = ACTIONS(12353), + [anon_sym_BSLASHacp] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12353), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12353), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12353), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12353), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12353), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12353), + [anon_sym_BSLASHcolor] = ACTIONS(12353), + [anon_sym_BSLASHcolorbox] = ACTIONS(12353), + [anon_sym_BSLASHtextcolor] = ACTIONS(12353), + [anon_sym_BSLASHpagecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12353), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12353), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12353), + }, + [1931] = { + [sym_generic_command_name] = ACTIONS(12357), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12355), + [anon_sym_RBRACK] = ACTIONS(12355), + [anon_sym_LBRACE] = ACTIONS(12355), + [anon_sym_RBRACE] = ACTIONS(12355), + [anon_sym_LPAREN] = ACTIONS(12355), + [anon_sym_COMMA] = ACTIONS(12355), + [anon_sym_EQ] = ACTIONS(12355), + [sym_word] = ACTIONS(12355), + [sym_param] = ACTIONS(12355), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12355), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12355), + [anon_sym_DOLLAR] = ACTIONS(12357), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12355), + [anon_sym_BSLASHbegin] = ACTIONS(12357), + [anon_sym_BSLASHcaption] = ACTIONS(12357), + [anon_sym_BSLASHcite] = ACTIONS(12357), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCite] = ACTIONS(12357), + [anon_sym_BSLASHnocite] = ACTIONS(12357), + [anon_sym_BSLASHcitet] = ACTIONS(12357), + [anon_sym_BSLASHcitep] = ACTIONS(12357), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteauthor] = ACTIONS(12357), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12357), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitetitle] = ACTIONS(12357), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteyear] = ACTIONS(12357), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12355), + [anon_sym_BSLASHcitedate] = ACTIONS(12357), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12355), + [anon_sym_BSLASHciteurl] = ACTIONS(12357), + [anon_sym_BSLASHfullcite] = ACTIONS(12357), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12357), + [anon_sym_BSLASHcitealt] = ACTIONS(12357), + [anon_sym_BSLASHcitealp] = ACTIONS(12357), + [anon_sym_BSLASHcitetext] = ACTIONS(12357), + [anon_sym_BSLASHparencite] = ACTIONS(12357), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHParencite] = ACTIONS(12357), + [anon_sym_BSLASHfootcite] = ACTIONS(12357), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12357), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12357), + [anon_sym_BSLASHtextcite] = ACTIONS(12357), + [anon_sym_BSLASHTextcite] = ACTIONS(12357), + [anon_sym_BSLASHsmartcite] = ACTIONS(12357), + [anon_sym_BSLASHSmartcite] = ACTIONS(12357), + [anon_sym_BSLASHsupercite] = ACTIONS(12357), + [anon_sym_BSLASHautocite] = ACTIONS(12357), + [anon_sym_BSLASHAutocite] = ACTIONS(12357), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12355), + [anon_sym_BSLASHvolcite] = ACTIONS(12357), + [anon_sym_BSLASHVolcite] = ACTIONS(12357), + [anon_sym_BSLASHpvolcite] = ACTIONS(12357), + [anon_sym_BSLASHPvolcite] = ACTIONS(12357), + [anon_sym_BSLASHfvolcite] = ACTIONS(12357), + [anon_sym_BSLASHftvolcite] = ACTIONS(12357), + [anon_sym_BSLASHsvolcite] = ACTIONS(12357), + [anon_sym_BSLASHSvolcite] = ACTIONS(12357), + [anon_sym_BSLASHtvolcite] = ACTIONS(12357), + [anon_sym_BSLASHTvolcite] = ACTIONS(12357), + [anon_sym_BSLASHavolcite] = ACTIONS(12357), + [anon_sym_BSLASHAvolcite] = ACTIONS(12357), + [anon_sym_BSLASHnotecite] = ACTIONS(12357), + [anon_sym_BSLASHpnotecite] = ACTIONS(12357), + [anon_sym_BSLASHPnotecite] = ACTIONS(12357), + [anon_sym_BSLASHfnotecite] = ACTIONS(12357), + [anon_sym_BSLASHusepackage] = ACTIONS(12357), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12357), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12357), + [anon_sym_BSLASHinclude] = ACTIONS(12357), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12357), + [anon_sym_BSLASHinput] = ACTIONS(12357), + [anon_sym_BSLASHsubfile] = ACTIONS(12357), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12357), + [anon_sym_BSLASHbibliography] = ACTIONS(12357), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12357), + [anon_sym_BSLASHincludesvg] = ACTIONS(12357), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12357), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12357), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12357), + [anon_sym_BSLASHimport] = ACTIONS(12357), + [anon_sym_BSLASHsubimport] = ACTIONS(12357), + [anon_sym_BSLASHinputfrom] = ACTIONS(12357), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12357), + [anon_sym_BSLASHincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12357), + [anon_sym_BSLASHlabel] = ACTIONS(12357), + [anon_sym_BSLASHref] = ACTIONS(12357), + [anon_sym_BSLASHvref] = ACTIONS(12357), + [anon_sym_BSLASHVref] = ACTIONS(12357), + [anon_sym_BSLASHautoref] = ACTIONS(12357), + [anon_sym_BSLASHpageref] = ACTIONS(12357), + [anon_sym_BSLASHcref] = ACTIONS(12357), + [anon_sym_BSLASHCref] = ACTIONS(12357), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnameCref] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12357), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12357), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12357), + [anon_sym_BSLASHlabelcref] = ACTIONS(12357), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12357), + [anon_sym_BSLASHeqref] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange] = ACTIONS(12357), + [anon_sym_BSLASHCrefrange] = ACTIONS(12357), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewlabel] = ACTIONS(12357), + [anon_sym_BSLASHnewcommand] = ACTIONS(12357), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12357), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12355), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12357), + [anon_sym_BSLASHgls] = ACTIONS(12357), + [anon_sym_BSLASHGls] = ACTIONS(12357), + [anon_sym_BSLASHGLS] = ACTIONS(12357), + [anon_sym_BSLASHglspl] = ACTIONS(12357), + [anon_sym_BSLASHGlspl] = ACTIONS(12357), + [anon_sym_BSLASHGLSpl] = ACTIONS(12357), + [anon_sym_BSLASHglsdisp] = ACTIONS(12357), + [anon_sym_BSLASHglslink] = ACTIONS(12357), + [anon_sym_BSLASHglstext] = ACTIONS(12357), + [anon_sym_BSLASHGlstext] = ACTIONS(12357), + [anon_sym_BSLASHGLStext] = ACTIONS(12357), + [anon_sym_BSLASHglsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12357), + [anon_sym_BSLASHglsplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSplural] = ACTIONS(12357), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12357), + [anon_sym_BSLASHglsname] = ACTIONS(12357), + [anon_sym_BSLASHGlsname] = ACTIONS(12357), + [anon_sym_BSLASHGLSname] = ACTIONS(12357), + [anon_sym_BSLASHglssymbol] = ACTIONS(12357), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12357), + [anon_sym_BSLASHglsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12357), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12357), + [anon_sym_BSLASHglsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12357), + [anon_sym_BSLASHglsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12357), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12357), + [anon_sym_BSLASHglsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12357), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12357), + [anon_sym_BSLASHglsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12357), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12357), + [anon_sym_BSLASHnewacronym] = ACTIONS(12357), + [anon_sym_BSLASHacrshort] = ACTIONS(12357), + [anon_sym_BSLASHAcrshort] = ACTIONS(12357), + [anon_sym_BSLASHACRshort] = ACTIONS(12357), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12357), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12357), + [anon_sym_BSLASHacrlong] = ACTIONS(12357), + [anon_sym_BSLASHAcrlong] = ACTIONS(12357), + [anon_sym_BSLASHACRlong] = ACTIONS(12357), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12357), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12357), + [anon_sym_BSLASHacrfull] = ACTIONS(12357), + [anon_sym_BSLASHAcrfull] = ACTIONS(12357), + [anon_sym_BSLASHACRfull] = ACTIONS(12357), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12357), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12357), + [anon_sym_BSLASHacs] = ACTIONS(12357), + [anon_sym_BSLASHAcs] = ACTIONS(12357), + [anon_sym_BSLASHacsp] = ACTIONS(12357), + [anon_sym_BSLASHAcsp] = ACTIONS(12357), + [anon_sym_BSLASHacl] = ACTIONS(12357), + [anon_sym_BSLASHAcl] = ACTIONS(12357), + [anon_sym_BSLASHaclp] = ACTIONS(12357), + [anon_sym_BSLASHAclp] = ACTIONS(12357), + [anon_sym_BSLASHacf] = ACTIONS(12357), + [anon_sym_BSLASHAcf] = ACTIONS(12357), + [anon_sym_BSLASHacfp] = ACTIONS(12357), + [anon_sym_BSLASHAcfp] = ACTIONS(12357), + [anon_sym_BSLASHac] = ACTIONS(12357), + [anon_sym_BSLASHAc] = ACTIONS(12357), + [anon_sym_BSLASHacp] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12357), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12357), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12357), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12357), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12357), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12357), + [anon_sym_BSLASHcolor] = ACTIONS(12357), + [anon_sym_BSLASHcolorbox] = ACTIONS(12357), + [anon_sym_BSLASHtextcolor] = ACTIONS(12357), + [anon_sym_BSLASHpagecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12357), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12357), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12357), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12357), + }, + [1932] = { + [sym_generic_command_name] = ACTIONS(12361), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12359), + [anon_sym_RBRACK] = ACTIONS(12359), + [anon_sym_LBRACE] = ACTIONS(12359), + [anon_sym_RBRACE] = ACTIONS(12359), + [anon_sym_LPAREN] = ACTIONS(12359), + [anon_sym_COMMA] = ACTIONS(12359), + [anon_sym_EQ] = ACTIONS(12359), + [sym_word] = ACTIONS(12359), + [sym_param] = ACTIONS(12359), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12359), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12359), + [anon_sym_DOLLAR] = ACTIONS(12361), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12359), + [anon_sym_BSLASHbegin] = ACTIONS(12361), + [anon_sym_BSLASHcaption] = ACTIONS(12361), + [anon_sym_BSLASHcite] = ACTIONS(12361), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCite] = ACTIONS(12361), + [anon_sym_BSLASHnocite] = ACTIONS(12361), + [anon_sym_BSLASHcitet] = ACTIONS(12361), + [anon_sym_BSLASHcitep] = ACTIONS(12361), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteauthor] = ACTIONS(12361), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12361), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitetitle] = ACTIONS(12361), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteyear] = ACTIONS(12361), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12359), + [anon_sym_BSLASHcitedate] = ACTIONS(12361), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12359), + [anon_sym_BSLASHciteurl] = ACTIONS(12361), + [anon_sym_BSLASHfullcite] = ACTIONS(12361), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12361), + [anon_sym_BSLASHcitealt] = ACTIONS(12361), + [anon_sym_BSLASHcitealp] = ACTIONS(12361), + [anon_sym_BSLASHcitetext] = ACTIONS(12361), + [anon_sym_BSLASHparencite] = ACTIONS(12361), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHParencite] = ACTIONS(12361), + [anon_sym_BSLASHfootcite] = ACTIONS(12361), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12361), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12361), + [anon_sym_BSLASHtextcite] = ACTIONS(12361), + [anon_sym_BSLASHTextcite] = ACTIONS(12361), + [anon_sym_BSLASHsmartcite] = ACTIONS(12361), + [anon_sym_BSLASHSmartcite] = ACTIONS(12361), + [anon_sym_BSLASHsupercite] = ACTIONS(12361), + [anon_sym_BSLASHautocite] = ACTIONS(12361), + [anon_sym_BSLASHAutocite] = ACTIONS(12361), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12359), + [anon_sym_BSLASHvolcite] = ACTIONS(12361), + [anon_sym_BSLASHVolcite] = ACTIONS(12361), + [anon_sym_BSLASHpvolcite] = ACTIONS(12361), + [anon_sym_BSLASHPvolcite] = ACTIONS(12361), + [anon_sym_BSLASHfvolcite] = ACTIONS(12361), + [anon_sym_BSLASHftvolcite] = ACTIONS(12361), + [anon_sym_BSLASHsvolcite] = ACTIONS(12361), + [anon_sym_BSLASHSvolcite] = ACTIONS(12361), + [anon_sym_BSLASHtvolcite] = ACTIONS(12361), + [anon_sym_BSLASHTvolcite] = ACTIONS(12361), + [anon_sym_BSLASHavolcite] = ACTIONS(12361), + [anon_sym_BSLASHAvolcite] = ACTIONS(12361), + [anon_sym_BSLASHnotecite] = ACTIONS(12361), + [anon_sym_BSLASHpnotecite] = ACTIONS(12361), + [anon_sym_BSLASHPnotecite] = ACTIONS(12361), + [anon_sym_BSLASHfnotecite] = ACTIONS(12361), + [anon_sym_BSLASHusepackage] = ACTIONS(12361), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12361), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12361), + [anon_sym_BSLASHinclude] = ACTIONS(12361), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12361), + [anon_sym_BSLASHinput] = ACTIONS(12361), + [anon_sym_BSLASHsubfile] = ACTIONS(12361), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12361), + [anon_sym_BSLASHbibliography] = ACTIONS(12361), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12361), + [anon_sym_BSLASHincludesvg] = ACTIONS(12361), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12361), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12361), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12361), + [anon_sym_BSLASHimport] = ACTIONS(12361), + [anon_sym_BSLASHsubimport] = ACTIONS(12361), + [anon_sym_BSLASHinputfrom] = ACTIONS(12361), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12361), + [anon_sym_BSLASHincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12361), + [anon_sym_BSLASHlabel] = ACTIONS(12361), + [anon_sym_BSLASHref] = ACTIONS(12361), + [anon_sym_BSLASHvref] = ACTIONS(12361), + [anon_sym_BSLASHVref] = ACTIONS(12361), + [anon_sym_BSLASHautoref] = ACTIONS(12361), + [anon_sym_BSLASHpageref] = ACTIONS(12361), + [anon_sym_BSLASHcref] = ACTIONS(12361), + [anon_sym_BSLASHCref] = ACTIONS(12361), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnameCref] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12361), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12361), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12361), + [anon_sym_BSLASHlabelcref] = ACTIONS(12361), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12361), + [anon_sym_BSLASHeqref] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange] = ACTIONS(12361), + [anon_sym_BSLASHCrefrange] = ACTIONS(12361), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewlabel] = ACTIONS(12361), + [anon_sym_BSLASHnewcommand] = ACTIONS(12361), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12361), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12359), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12361), + [anon_sym_BSLASHgls] = ACTIONS(12361), + [anon_sym_BSLASHGls] = ACTIONS(12361), + [anon_sym_BSLASHGLS] = ACTIONS(12361), + [anon_sym_BSLASHglspl] = ACTIONS(12361), + [anon_sym_BSLASHGlspl] = ACTIONS(12361), + [anon_sym_BSLASHGLSpl] = ACTIONS(12361), + [anon_sym_BSLASHglsdisp] = ACTIONS(12361), + [anon_sym_BSLASHglslink] = ACTIONS(12361), + [anon_sym_BSLASHglstext] = ACTIONS(12361), + [anon_sym_BSLASHGlstext] = ACTIONS(12361), + [anon_sym_BSLASHGLStext] = ACTIONS(12361), + [anon_sym_BSLASHglsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12361), + [anon_sym_BSLASHglsplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSplural] = ACTIONS(12361), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12361), + [anon_sym_BSLASHglsname] = ACTIONS(12361), + [anon_sym_BSLASHGlsname] = ACTIONS(12361), + [anon_sym_BSLASHGLSname] = ACTIONS(12361), + [anon_sym_BSLASHglssymbol] = ACTIONS(12361), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12361), + [anon_sym_BSLASHglsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12361), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12361), + [anon_sym_BSLASHglsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12361), + [anon_sym_BSLASHglsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12361), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12361), + [anon_sym_BSLASHglsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12361), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12361), + [anon_sym_BSLASHglsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12361), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12361), + [anon_sym_BSLASHnewacronym] = ACTIONS(12361), + [anon_sym_BSLASHacrshort] = ACTIONS(12361), + [anon_sym_BSLASHAcrshort] = ACTIONS(12361), + [anon_sym_BSLASHACRshort] = ACTIONS(12361), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12361), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12361), + [anon_sym_BSLASHacrlong] = ACTIONS(12361), + [anon_sym_BSLASHAcrlong] = ACTIONS(12361), + [anon_sym_BSLASHACRlong] = ACTIONS(12361), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12361), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12361), + [anon_sym_BSLASHacrfull] = ACTIONS(12361), + [anon_sym_BSLASHAcrfull] = ACTIONS(12361), + [anon_sym_BSLASHACRfull] = ACTIONS(12361), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12361), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12361), + [anon_sym_BSLASHacs] = ACTIONS(12361), + [anon_sym_BSLASHAcs] = ACTIONS(12361), + [anon_sym_BSLASHacsp] = ACTIONS(12361), + [anon_sym_BSLASHAcsp] = ACTIONS(12361), + [anon_sym_BSLASHacl] = ACTIONS(12361), + [anon_sym_BSLASHAcl] = ACTIONS(12361), + [anon_sym_BSLASHaclp] = ACTIONS(12361), + [anon_sym_BSLASHAclp] = ACTIONS(12361), + [anon_sym_BSLASHacf] = ACTIONS(12361), + [anon_sym_BSLASHAcf] = ACTIONS(12361), + [anon_sym_BSLASHacfp] = ACTIONS(12361), + [anon_sym_BSLASHAcfp] = ACTIONS(12361), + [anon_sym_BSLASHac] = ACTIONS(12361), + [anon_sym_BSLASHAc] = ACTIONS(12361), + [anon_sym_BSLASHacp] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12361), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12361), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12361), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12361), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12361), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12361), + [anon_sym_BSLASHcolor] = ACTIONS(12361), + [anon_sym_BSLASHcolorbox] = ACTIONS(12361), + [anon_sym_BSLASHtextcolor] = ACTIONS(12361), + [anon_sym_BSLASHpagecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12361), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12361), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12361), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12361), + }, + [1933] = { + [sym_generic_command_name] = ACTIONS(12369), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12367), + [anon_sym_RBRACK] = ACTIONS(12367), + [anon_sym_LBRACE] = ACTIONS(12367), + [anon_sym_RBRACE] = ACTIONS(12367), + [anon_sym_LPAREN] = ACTIONS(12367), + [anon_sym_COMMA] = ACTIONS(12367), + [anon_sym_EQ] = ACTIONS(12367), + [sym_word] = ACTIONS(12367), + [sym_param] = ACTIONS(12367), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12367), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12367), + [anon_sym_DOLLAR] = ACTIONS(12369), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12367), + [anon_sym_BSLASHbegin] = ACTIONS(12369), + [anon_sym_BSLASHcaption] = ACTIONS(12369), + [anon_sym_BSLASHcite] = ACTIONS(12369), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCite] = ACTIONS(12369), + [anon_sym_BSLASHnocite] = ACTIONS(12369), + [anon_sym_BSLASHcitet] = ACTIONS(12369), + [anon_sym_BSLASHcitep] = ACTIONS(12369), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteauthor] = ACTIONS(12369), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12369), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitetitle] = ACTIONS(12369), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteyear] = ACTIONS(12369), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12367), + [anon_sym_BSLASHcitedate] = ACTIONS(12369), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12367), + [anon_sym_BSLASHciteurl] = ACTIONS(12369), + [anon_sym_BSLASHfullcite] = ACTIONS(12369), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12369), + [anon_sym_BSLASHcitealt] = ACTIONS(12369), + [anon_sym_BSLASHcitealp] = ACTIONS(12369), + [anon_sym_BSLASHcitetext] = ACTIONS(12369), + [anon_sym_BSLASHparencite] = ACTIONS(12369), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHParencite] = ACTIONS(12369), + [anon_sym_BSLASHfootcite] = ACTIONS(12369), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12369), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12369), + [anon_sym_BSLASHtextcite] = ACTIONS(12369), + [anon_sym_BSLASHTextcite] = ACTIONS(12369), + [anon_sym_BSLASHsmartcite] = ACTIONS(12369), + [anon_sym_BSLASHSmartcite] = ACTIONS(12369), + [anon_sym_BSLASHsupercite] = ACTIONS(12369), + [anon_sym_BSLASHautocite] = ACTIONS(12369), + [anon_sym_BSLASHAutocite] = ACTIONS(12369), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12367), + [anon_sym_BSLASHvolcite] = ACTIONS(12369), + [anon_sym_BSLASHVolcite] = ACTIONS(12369), + [anon_sym_BSLASHpvolcite] = ACTIONS(12369), + [anon_sym_BSLASHPvolcite] = ACTIONS(12369), + [anon_sym_BSLASHfvolcite] = ACTIONS(12369), + [anon_sym_BSLASHftvolcite] = ACTIONS(12369), + [anon_sym_BSLASHsvolcite] = ACTIONS(12369), + [anon_sym_BSLASHSvolcite] = ACTIONS(12369), + [anon_sym_BSLASHtvolcite] = ACTIONS(12369), + [anon_sym_BSLASHTvolcite] = ACTIONS(12369), + [anon_sym_BSLASHavolcite] = ACTIONS(12369), + [anon_sym_BSLASHAvolcite] = ACTIONS(12369), + [anon_sym_BSLASHnotecite] = ACTIONS(12369), + [anon_sym_BSLASHpnotecite] = ACTIONS(12369), + [anon_sym_BSLASHPnotecite] = ACTIONS(12369), + [anon_sym_BSLASHfnotecite] = ACTIONS(12369), + [anon_sym_BSLASHusepackage] = ACTIONS(12369), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12369), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12369), + [anon_sym_BSLASHinclude] = ACTIONS(12369), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12369), + [anon_sym_BSLASHinput] = ACTIONS(12369), + [anon_sym_BSLASHsubfile] = ACTIONS(12369), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12369), + [anon_sym_BSLASHbibliography] = ACTIONS(12369), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12369), + [anon_sym_BSLASHincludesvg] = ACTIONS(12369), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12369), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12369), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12369), + [anon_sym_BSLASHimport] = ACTIONS(12369), + [anon_sym_BSLASHsubimport] = ACTIONS(12369), + [anon_sym_BSLASHinputfrom] = ACTIONS(12369), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12369), + [anon_sym_BSLASHincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12369), + [anon_sym_BSLASHlabel] = ACTIONS(12369), + [anon_sym_BSLASHref] = ACTIONS(12369), + [anon_sym_BSLASHvref] = ACTIONS(12369), + [anon_sym_BSLASHVref] = ACTIONS(12369), + [anon_sym_BSLASHautoref] = ACTIONS(12369), + [anon_sym_BSLASHpageref] = ACTIONS(12369), + [anon_sym_BSLASHcref] = ACTIONS(12369), + [anon_sym_BSLASHCref] = ACTIONS(12369), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnameCref] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12369), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12369), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12369), + [anon_sym_BSLASHlabelcref] = ACTIONS(12369), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12369), + [anon_sym_BSLASHeqref] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange] = ACTIONS(12369), + [anon_sym_BSLASHCrefrange] = ACTIONS(12369), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewlabel] = ACTIONS(12369), + [anon_sym_BSLASHnewcommand] = ACTIONS(12369), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12369), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12367), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12369), + [anon_sym_BSLASHgls] = ACTIONS(12369), + [anon_sym_BSLASHGls] = ACTIONS(12369), + [anon_sym_BSLASHGLS] = ACTIONS(12369), + [anon_sym_BSLASHglspl] = ACTIONS(12369), + [anon_sym_BSLASHGlspl] = ACTIONS(12369), + [anon_sym_BSLASHGLSpl] = ACTIONS(12369), + [anon_sym_BSLASHglsdisp] = ACTIONS(12369), + [anon_sym_BSLASHglslink] = ACTIONS(12369), + [anon_sym_BSLASHglstext] = ACTIONS(12369), + [anon_sym_BSLASHGlstext] = ACTIONS(12369), + [anon_sym_BSLASHGLStext] = ACTIONS(12369), + [anon_sym_BSLASHglsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12369), + [anon_sym_BSLASHglsplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSplural] = ACTIONS(12369), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12369), + [anon_sym_BSLASHglsname] = ACTIONS(12369), + [anon_sym_BSLASHGlsname] = ACTIONS(12369), + [anon_sym_BSLASHGLSname] = ACTIONS(12369), + [anon_sym_BSLASHglssymbol] = ACTIONS(12369), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12369), + [anon_sym_BSLASHglsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12369), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12369), + [anon_sym_BSLASHglsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12369), + [anon_sym_BSLASHglsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12369), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12369), + [anon_sym_BSLASHglsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12369), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12369), + [anon_sym_BSLASHglsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12369), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12369), + [anon_sym_BSLASHnewacronym] = ACTIONS(12369), + [anon_sym_BSLASHacrshort] = ACTIONS(12369), + [anon_sym_BSLASHAcrshort] = ACTIONS(12369), + [anon_sym_BSLASHACRshort] = ACTIONS(12369), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12369), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12369), + [anon_sym_BSLASHacrlong] = ACTIONS(12369), + [anon_sym_BSLASHAcrlong] = ACTIONS(12369), + [anon_sym_BSLASHACRlong] = ACTIONS(12369), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12369), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12369), + [anon_sym_BSLASHacrfull] = ACTIONS(12369), + [anon_sym_BSLASHAcrfull] = ACTIONS(12369), + [anon_sym_BSLASHACRfull] = ACTIONS(12369), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12369), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12369), + [anon_sym_BSLASHacs] = ACTIONS(12369), + [anon_sym_BSLASHAcs] = ACTIONS(12369), + [anon_sym_BSLASHacsp] = ACTIONS(12369), + [anon_sym_BSLASHAcsp] = ACTIONS(12369), + [anon_sym_BSLASHacl] = ACTIONS(12369), + [anon_sym_BSLASHAcl] = ACTIONS(12369), + [anon_sym_BSLASHaclp] = ACTIONS(12369), + [anon_sym_BSLASHAclp] = ACTIONS(12369), + [anon_sym_BSLASHacf] = ACTIONS(12369), + [anon_sym_BSLASHAcf] = ACTIONS(12369), + [anon_sym_BSLASHacfp] = ACTIONS(12369), + [anon_sym_BSLASHAcfp] = ACTIONS(12369), + [anon_sym_BSLASHac] = ACTIONS(12369), + [anon_sym_BSLASHAc] = ACTIONS(12369), + [anon_sym_BSLASHacp] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12369), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12369), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12369), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12369), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12369), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12369), + [anon_sym_BSLASHcolor] = ACTIONS(12369), + [anon_sym_BSLASHcolorbox] = ACTIONS(12369), + [anon_sym_BSLASHtextcolor] = ACTIONS(12369), + [anon_sym_BSLASHpagecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12369), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12369), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12369), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12369), + }, + [1934] = { + [sym_generic_command_name] = ACTIONS(12373), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12371), + [anon_sym_RBRACK] = ACTIONS(12371), + [anon_sym_LBRACE] = ACTIONS(12371), + [anon_sym_RBRACE] = ACTIONS(12371), + [anon_sym_LPAREN] = ACTIONS(12371), + [anon_sym_COMMA] = ACTIONS(12371), + [anon_sym_EQ] = ACTIONS(12371), + [sym_word] = ACTIONS(12371), + [sym_param] = ACTIONS(12371), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12371), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12371), + [anon_sym_DOLLAR] = ACTIONS(12373), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12371), + [anon_sym_BSLASHbegin] = ACTIONS(12373), + [anon_sym_BSLASHcaption] = ACTIONS(12373), + [anon_sym_BSLASHcite] = ACTIONS(12373), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCite] = ACTIONS(12373), + [anon_sym_BSLASHnocite] = ACTIONS(12373), + [anon_sym_BSLASHcitet] = ACTIONS(12373), + [anon_sym_BSLASHcitep] = ACTIONS(12373), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteauthor] = ACTIONS(12373), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12373), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitetitle] = ACTIONS(12373), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteyear] = ACTIONS(12373), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12371), + [anon_sym_BSLASHcitedate] = ACTIONS(12373), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12371), + [anon_sym_BSLASHciteurl] = ACTIONS(12373), + [anon_sym_BSLASHfullcite] = ACTIONS(12373), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12373), + [anon_sym_BSLASHcitealt] = ACTIONS(12373), + [anon_sym_BSLASHcitealp] = ACTIONS(12373), + [anon_sym_BSLASHcitetext] = ACTIONS(12373), + [anon_sym_BSLASHparencite] = ACTIONS(12373), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHParencite] = ACTIONS(12373), + [anon_sym_BSLASHfootcite] = ACTIONS(12373), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12373), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12373), + [anon_sym_BSLASHtextcite] = ACTIONS(12373), + [anon_sym_BSLASHTextcite] = ACTIONS(12373), + [anon_sym_BSLASHsmartcite] = ACTIONS(12373), + [anon_sym_BSLASHSmartcite] = ACTIONS(12373), + [anon_sym_BSLASHsupercite] = ACTIONS(12373), + [anon_sym_BSLASHautocite] = ACTIONS(12373), + [anon_sym_BSLASHAutocite] = ACTIONS(12373), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12371), + [anon_sym_BSLASHvolcite] = ACTIONS(12373), + [anon_sym_BSLASHVolcite] = ACTIONS(12373), + [anon_sym_BSLASHpvolcite] = ACTIONS(12373), + [anon_sym_BSLASHPvolcite] = ACTIONS(12373), + [anon_sym_BSLASHfvolcite] = ACTIONS(12373), + [anon_sym_BSLASHftvolcite] = ACTIONS(12373), + [anon_sym_BSLASHsvolcite] = ACTIONS(12373), + [anon_sym_BSLASHSvolcite] = ACTIONS(12373), + [anon_sym_BSLASHtvolcite] = ACTIONS(12373), + [anon_sym_BSLASHTvolcite] = ACTIONS(12373), + [anon_sym_BSLASHavolcite] = ACTIONS(12373), + [anon_sym_BSLASHAvolcite] = ACTIONS(12373), + [anon_sym_BSLASHnotecite] = ACTIONS(12373), + [anon_sym_BSLASHpnotecite] = ACTIONS(12373), + [anon_sym_BSLASHPnotecite] = ACTIONS(12373), + [anon_sym_BSLASHfnotecite] = ACTIONS(12373), + [anon_sym_BSLASHusepackage] = ACTIONS(12373), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12373), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12373), + [anon_sym_BSLASHinclude] = ACTIONS(12373), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12373), + [anon_sym_BSLASHinput] = ACTIONS(12373), + [anon_sym_BSLASHsubfile] = ACTIONS(12373), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12373), + [anon_sym_BSLASHbibliography] = ACTIONS(12373), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12373), + [anon_sym_BSLASHincludesvg] = ACTIONS(12373), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12373), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12373), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12373), + [anon_sym_BSLASHimport] = ACTIONS(12373), + [anon_sym_BSLASHsubimport] = ACTIONS(12373), + [anon_sym_BSLASHinputfrom] = ACTIONS(12373), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12373), + [anon_sym_BSLASHincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12373), + [anon_sym_BSLASHlabel] = ACTIONS(12373), + [anon_sym_BSLASHref] = ACTIONS(12373), + [anon_sym_BSLASHvref] = ACTIONS(12373), + [anon_sym_BSLASHVref] = ACTIONS(12373), + [anon_sym_BSLASHautoref] = ACTIONS(12373), + [anon_sym_BSLASHpageref] = ACTIONS(12373), + [anon_sym_BSLASHcref] = ACTIONS(12373), + [anon_sym_BSLASHCref] = ACTIONS(12373), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnameCref] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12373), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12373), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12373), + [anon_sym_BSLASHlabelcref] = ACTIONS(12373), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12373), + [anon_sym_BSLASHeqref] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange] = ACTIONS(12373), + [anon_sym_BSLASHCrefrange] = ACTIONS(12373), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewlabel] = ACTIONS(12373), + [anon_sym_BSLASHnewcommand] = ACTIONS(12373), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12373), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12371), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12373), + [anon_sym_BSLASHgls] = ACTIONS(12373), + [anon_sym_BSLASHGls] = ACTIONS(12373), + [anon_sym_BSLASHGLS] = ACTIONS(12373), + [anon_sym_BSLASHglspl] = ACTIONS(12373), + [anon_sym_BSLASHGlspl] = ACTIONS(12373), + [anon_sym_BSLASHGLSpl] = ACTIONS(12373), + [anon_sym_BSLASHglsdisp] = ACTIONS(12373), + [anon_sym_BSLASHglslink] = ACTIONS(12373), + [anon_sym_BSLASHglstext] = ACTIONS(12373), + [anon_sym_BSLASHGlstext] = ACTIONS(12373), + [anon_sym_BSLASHGLStext] = ACTIONS(12373), + [anon_sym_BSLASHglsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12373), + [anon_sym_BSLASHglsplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSplural] = ACTIONS(12373), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12373), + [anon_sym_BSLASHglsname] = ACTIONS(12373), + [anon_sym_BSLASHGlsname] = ACTIONS(12373), + [anon_sym_BSLASHGLSname] = ACTIONS(12373), + [anon_sym_BSLASHglssymbol] = ACTIONS(12373), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12373), + [anon_sym_BSLASHglsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12373), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12373), + [anon_sym_BSLASHglsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12373), + [anon_sym_BSLASHglsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12373), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12373), + [anon_sym_BSLASHglsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12373), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12373), + [anon_sym_BSLASHglsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12373), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12373), + [anon_sym_BSLASHnewacronym] = ACTIONS(12373), + [anon_sym_BSLASHacrshort] = ACTIONS(12373), + [anon_sym_BSLASHAcrshort] = ACTIONS(12373), + [anon_sym_BSLASHACRshort] = ACTIONS(12373), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12373), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12373), + [anon_sym_BSLASHacrlong] = ACTIONS(12373), + [anon_sym_BSLASHAcrlong] = ACTIONS(12373), + [anon_sym_BSLASHACRlong] = ACTIONS(12373), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12373), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12373), + [anon_sym_BSLASHacrfull] = ACTIONS(12373), + [anon_sym_BSLASHAcrfull] = ACTIONS(12373), + [anon_sym_BSLASHACRfull] = ACTIONS(12373), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12373), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12373), + [anon_sym_BSLASHacs] = ACTIONS(12373), + [anon_sym_BSLASHAcs] = ACTIONS(12373), + [anon_sym_BSLASHacsp] = ACTIONS(12373), + [anon_sym_BSLASHAcsp] = ACTIONS(12373), + [anon_sym_BSLASHacl] = ACTIONS(12373), + [anon_sym_BSLASHAcl] = ACTIONS(12373), + [anon_sym_BSLASHaclp] = ACTIONS(12373), + [anon_sym_BSLASHAclp] = ACTIONS(12373), + [anon_sym_BSLASHacf] = ACTIONS(12373), + [anon_sym_BSLASHAcf] = ACTIONS(12373), + [anon_sym_BSLASHacfp] = ACTIONS(12373), + [anon_sym_BSLASHAcfp] = ACTIONS(12373), + [anon_sym_BSLASHac] = ACTIONS(12373), + [anon_sym_BSLASHAc] = ACTIONS(12373), + [anon_sym_BSLASHacp] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12373), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12373), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12373), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12373), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12373), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12373), + [anon_sym_BSLASHcolor] = ACTIONS(12373), + [anon_sym_BSLASHcolorbox] = ACTIONS(12373), + [anon_sym_BSLASHtextcolor] = ACTIONS(12373), + [anon_sym_BSLASHpagecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12373), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12373), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12373), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12373), + }, + [1935] = { + [sym_generic_command_name] = ACTIONS(12377), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12375), + [anon_sym_RBRACK] = ACTIONS(12375), + [anon_sym_LBRACE] = ACTIONS(12375), + [anon_sym_RBRACE] = ACTIONS(12375), + [anon_sym_LPAREN] = ACTIONS(12375), + [anon_sym_COMMA] = ACTIONS(12375), + [anon_sym_EQ] = ACTIONS(12375), + [sym_word] = ACTIONS(12375), + [sym_param] = ACTIONS(12375), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12375), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12375), + [anon_sym_DOLLAR] = ACTIONS(12377), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12375), + [anon_sym_BSLASHbegin] = ACTIONS(12377), + [anon_sym_BSLASHcaption] = ACTIONS(12377), + [anon_sym_BSLASHcite] = ACTIONS(12377), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCite] = ACTIONS(12377), + [anon_sym_BSLASHnocite] = ACTIONS(12377), + [anon_sym_BSLASHcitet] = ACTIONS(12377), + [anon_sym_BSLASHcitep] = ACTIONS(12377), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteauthor] = ACTIONS(12377), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12377), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitetitle] = ACTIONS(12377), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteyear] = ACTIONS(12377), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12375), + [anon_sym_BSLASHcitedate] = ACTIONS(12377), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12375), + [anon_sym_BSLASHciteurl] = ACTIONS(12377), + [anon_sym_BSLASHfullcite] = ACTIONS(12377), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12377), + [anon_sym_BSLASHcitealt] = ACTIONS(12377), + [anon_sym_BSLASHcitealp] = ACTIONS(12377), + [anon_sym_BSLASHcitetext] = ACTIONS(12377), + [anon_sym_BSLASHparencite] = ACTIONS(12377), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHParencite] = ACTIONS(12377), + [anon_sym_BSLASHfootcite] = ACTIONS(12377), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12377), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12377), + [anon_sym_BSLASHtextcite] = ACTIONS(12377), + [anon_sym_BSLASHTextcite] = ACTIONS(12377), + [anon_sym_BSLASHsmartcite] = ACTIONS(12377), + [anon_sym_BSLASHSmartcite] = ACTIONS(12377), + [anon_sym_BSLASHsupercite] = ACTIONS(12377), + [anon_sym_BSLASHautocite] = ACTIONS(12377), + [anon_sym_BSLASHAutocite] = ACTIONS(12377), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12375), + [anon_sym_BSLASHvolcite] = ACTIONS(12377), + [anon_sym_BSLASHVolcite] = ACTIONS(12377), + [anon_sym_BSLASHpvolcite] = ACTIONS(12377), + [anon_sym_BSLASHPvolcite] = ACTIONS(12377), + [anon_sym_BSLASHfvolcite] = ACTIONS(12377), + [anon_sym_BSLASHftvolcite] = ACTIONS(12377), + [anon_sym_BSLASHsvolcite] = ACTIONS(12377), + [anon_sym_BSLASHSvolcite] = ACTIONS(12377), + [anon_sym_BSLASHtvolcite] = ACTIONS(12377), + [anon_sym_BSLASHTvolcite] = ACTIONS(12377), + [anon_sym_BSLASHavolcite] = ACTIONS(12377), + [anon_sym_BSLASHAvolcite] = ACTIONS(12377), + [anon_sym_BSLASHnotecite] = ACTIONS(12377), + [anon_sym_BSLASHpnotecite] = ACTIONS(12377), + [anon_sym_BSLASHPnotecite] = ACTIONS(12377), + [anon_sym_BSLASHfnotecite] = ACTIONS(12377), + [anon_sym_BSLASHusepackage] = ACTIONS(12377), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12377), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12377), + [anon_sym_BSLASHinclude] = ACTIONS(12377), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12377), + [anon_sym_BSLASHinput] = ACTIONS(12377), + [anon_sym_BSLASHsubfile] = ACTIONS(12377), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12377), + [anon_sym_BSLASHbibliography] = ACTIONS(12377), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12377), + [anon_sym_BSLASHincludesvg] = ACTIONS(12377), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12377), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12377), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12377), + [anon_sym_BSLASHimport] = ACTIONS(12377), + [anon_sym_BSLASHsubimport] = ACTIONS(12377), + [anon_sym_BSLASHinputfrom] = ACTIONS(12377), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12377), + [anon_sym_BSLASHincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12377), + [anon_sym_BSLASHlabel] = ACTIONS(12377), + [anon_sym_BSLASHref] = ACTIONS(12377), + [anon_sym_BSLASHvref] = ACTIONS(12377), + [anon_sym_BSLASHVref] = ACTIONS(12377), + [anon_sym_BSLASHautoref] = ACTIONS(12377), + [anon_sym_BSLASHpageref] = ACTIONS(12377), + [anon_sym_BSLASHcref] = ACTIONS(12377), + [anon_sym_BSLASHCref] = ACTIONS(12377), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnameCref] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12377), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12377), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12377), + [anon_sym_BSLASHlabelcref] = ACTIONS(12377), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12377), + [anon_sym_BSLASHeqref] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange] = ACTIONS(12377), + [anon_sym_BSLASHCrefrange] = ACTIONS(12377), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewlabel] = ACTIONS(12377), + [anon_sym_BSLASHnewcommand] = ACTIONS(12377), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12377), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12375), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12377), + [anon_sym_BSLASHgls] = ACTIONS(12377), + [anon_sym_BSLASHGls] = ACTIONS(12377), + [anon_sym_BSLASHGLS] = ACTIONS(12377), + [anon_sym_BSLASHglspl] = ACTIONS(12377), + [anon_sym_BSLASHGlspl] = ACTIONS(12377), + [anon_sym_BSLASHGLSpl] = ACTIONS(12377), + [anon_sym_BSLASHglsdisp] = ACTIONS(12377), + [anon_sym_BSLASHglslink] = ACTIONS(12377), + [anon_sym_BSLASHglstext] = ACTIONS(12377), + [anon_sym_BSLASHGlstext] = ACTIONS(12377), + [anon_sym_BSLASHGLStext] = ACTIONS(12377), + [anon_sym_BSLASHglsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12377), + [anon_sym_BSLASHglsplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSplural] = ACTIONS(12377), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12377), + [anon_sym_BSLASHglsname] = ACTIONS(12377), + [anon_sym_BSLASHGlsname] = ACTIONS(12377), + [anon_sym_BSLASHGLSname] = ACTIONS(12377), + [anon_sym_BSLASHglssymbol] = ACTIONS(12377), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12377), + [anon_sym_BSLASHglsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12377), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12377), + [anon_sym_BSLASHglsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12377), + [anon_sym_BSLASHglsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12377), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12377), + [anon_sym_BSLASHglsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12377), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12377), + [anon_sym_BSLASHglsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12377), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12377), + [anon_sym_BSLASHnewacronym] = ACTIONS(12377), + [anon_sym_BSLASHacrshort] = ACTIONS(12377), + [anon_sym_BSLASHAcrshort] = ACTIONS(12377), + [anon_sym_BSLASHACRshort] = ACTIONS(12377), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12377), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12377), + [anon_sym_BSLASHacrlong] = ACTIONS(12377), + [anon_sym_BSLASHAcrlong] = ACTIONS(12377), + [anon_sym_BSLASHACRlong] = ACTIONS(12377), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12377), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12377), + [anon_sym_BSLASHacrfull] = ACTIONS(12377), + [anon_sym_BSLASHAcrfull] = ACTIONS(12377), + [anon_sym_BSLASHACRfull] = ACTIONS(12377), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12377), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12377), + [anon_sym_BSLASHacs] = ACTIONS(12377), + [anon_sym_BSLASHAcs] = ACTIONS(12377), + [anon_sym_BSLASHacsp] = ACTIONS(12377), + [anon_sym_BSLASHAcsp] = ACTIONS(12377), + [anon_sym_BSLASHacl] = ACTIONS(12377), + [anon_sym_BSLASHAcl] = ACTIONS(12377), + [anon_sym_BSLASHaclp] = ACTIONS(12377), + [anon_sym_BSLASHAclp] = ACTIONS(12377), + [anon_sym_BSLASHacf] = ACTIONS(12377), + [anon_sym_BSLASHAcf] = ACTIONS(12377), + [anon_sym_BSLASHacfp] = ACTIONS(12377), + [anon_sym_BSLASHAcfp] = ACTIONS(12377), + [anon_sym_BSLASHac] = ACTIONS(12377), + [anon_sym_BSLASHAc] = ACTIONS(12377), + [anon_sym_BSLASHacp] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12377), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12377), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12377), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12377), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12377), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12377), + [anon_sym_BSLASHcolor] = ACTIONS(12377), + [anon_sym_BSLASHcolorbox] = ACTIONS(12377), + [anon_sym_BSLASHtextcolor] = ACTIONS(12377), + [anon_sym_BSLASHpagecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12377), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12377), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12377), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12377), + }, + [1936] = { + [sym_generic_command_name] = ACTIONS(12381), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12379), + [anon_sym_RBRACK] = ACTIONS(12379), + [anon_sym_LBRACE] = ACTIONS(12379), + [anon_sym_RBRACE] = ACTIONS(12379), + [anon_sym_LPAREN] = ACTIONS(12379), + [anon_sym_COMMA] = ACTIONS(12379), + [anon_sym_EQ] = ACTIONS(12379), + [sym_word] = ACTIONS(12379), + [sym_param] = ACTIONS(12379), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12379), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12379), + [anon_sym_DOLLAR] = ACTIONS(12381), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12379), + [anon_sym_BSLASHbegin] = ACTIONS(12381), + [anon_sym_BSLASHcaption] = ACTIONS(12381), + [anon_sym_BSLASHcite] = ACTIONS(12381), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCite] = ACTIONS(12381), + [anon_sym_BSLASHnocite] = ACTIONS(12381), + [anon_sym_BSLASHcitet] = ACTIONS(12381), + [anon_sym_BSLASHcitep] = ACTIONS(12381), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteauthor] = ACTIONS(12381), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12381), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitetitle] = ACTIONS(12381), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteyear] = ACTIONS(12381), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12379), + [anon_sym_BSLASHcitedate] = ACTIONS(12381), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12379), + [anon_sym_BSLASHciteurl] = ACTIONS(12381), + [anon_sym_BSLASHfullcite] = ACTIONS(12381), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12381), + [anon_sym_BSLASHcitealt] = ACTIONS(12381), + [anon_sym_BSLASHcitealp] = ACTIONS(12381), + [anon_sym_BSLASHcitetext] = ACTIONS(12381), + [anon_sym_BSLASHparencite] = ACTIONS(12381), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHParencite] = ACTIONS(12381), + [anon_sym_BSLASHfootcite] = ACTIONS(12381), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12381), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12381), + [anon_sym_BSLASHtextcite] = ACTIONS(12381), + [anon_sym_BSLASHTextcite] = ACTIONS(12381), + [anon_sym_BSLASHsmartcite] = ACTIONS(12381), + [anon_sym_BSLASHSmartcite] = ACTIONS(12381), + [anon_sym_BSLASHsupercite] = ACTIONS(12381), + [anon_sym_BSLASHautocite] = ACTIONS(12381), + [anon_sym_BSLASHAutocite] = ACTIONS(12381), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12379), + [anon_sym_BSLASHvolcite] = ACTIONS(12381), + [anon_sym_BSLASHVolcite] = ACTIONS(12381), + [anon_sym_BSLASHpvolcite] = ACTIONS(12381), + [anon_sym_BSLASHPvolcite] = ACTIONS(12381), + [anon_sym_BSLASHfvolcite] = ACTIONS(12381), + [anon_sym_BSLASHftvolcite] = ACTIONS(12381), + [anon_sym_BSLASHsvolcite] = ACTIONS(12381), + [anon_sym_BSLASHSvolcite] = ACTIONS(12381), + [anon_sym_BSLASHtvolcite] = ACTIONS(12381), + [anon_sym_BSLASHTvolcite] = ACTIONS(12381), + [anon_sym_BSLASHavolcite] = ACTIONS(12381), + [anon_sym_BSLASHAvolcite] = ACTIONS(12381), + [anon_sym_BSLASHnotecite] = ACTIONS(12381), + [anon_sym_BSLASHpnotecite] = ACTIONS(12381), + [anon_sym_BSLASHPnotecite] = ACTIONS(12381), + [anon_sym_BSLASHfnotecite] = ACTIONS(12381), + [anon_sym_BSLASHusepackage] = ACTIONS(12381), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12381), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12381), + [anon_sym_BSLASHinclude] = ACTIONS(12381), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12381), + [anon_sym_BSLASHinput] = ACTIONS(12381), + [anon_sym_BSLASHsubfile] = ACTIONS(12381), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12381), + [anon_sym_BSLASHbibliography] = ACTIONS(12381), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12381), + [anon_sym_BSLASHincludesvg] = ACTIONS(12381), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12381), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12381), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12381), + [anon_sym_BSLASHimport] = ACTIONS(12381), + [anon_sym_BSLASHsubimport] = ACTIONS(12381), + [anon_sym_BSLASHinputfrom] = ACTIONS(12381), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12381), + [anon_sym_BSLASHincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12381), + [anon_sym_BSLASHlabel] = ACTIONS(12381), + [anon_sym_BSLASHref] = ACTIONS(12381), + [anon_sym_BSLASHvref] = ACTIONS(12381), + [anon_sym_BSLASHVref] = ACTIONS(12381), + [anon_sym_BSLASHautoref] = ACTIONS(12381), + [anon_sym_BSLASHpageref] = ACTIONS(12381), + [anon_sym_BSLASHcref] = ACTIONS(12381), + [anon_sym_BSLASHCref] = ACTIONS(12381), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnameCref] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12381), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12381), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12381), + [anon_sym_BSLASHlabelcref] = ACTIONS(12381), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12381), + [anon_sym_BSLASHeqref] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange] = ACTIONS(12381), + [anon_sym_BSLASHCrefrange] = ACTIONS(12381), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewlabel] = ACTIONS(12381), + [anon_sym_BSLASHnewcommand] = ACTIONS(12381), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12381), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12379), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12381), + [anon_sym_BSLASHgls] = ACTIONS(12381), + [anon_sym_BSLASHGls] = ACTIONS(12381), + [anon_sym_BSLASHGLS] = ACTIONS(12381), + [anon_sym_BSLASHglspl] = ACTIONS(12381), + [anon_sym_BSLASHGlspl] = ACTIONS(12381), + [anon_sym_BSLASHGLSpl] = ACTIONS(12381), + [anon_sym_BSLASHglsdisp] = ACTIONS(12381), + [anon_sym_BSLASHglslink] = ACTIONS(12381), + [anon_sym_BSLASHglstext] = ACTIONS(12381), + [anon_sym_BSLASHGlstext] = ACTIONS(12381), + [anon_sym_BSLASHGLStext] = ACTIONS(12381), + [anon_sym_BSLASHglsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12381), + [anon_sym_BSLASHglsplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSplural] = ACTIONS(12381), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12381), + [anon_sym_BSLASHglsname] = ACTIONS(12381), + [anon_sym_BSLASHGlsname] = ACTIONS(12381), + [anon_sym_BSLASHGLSname] = ACTIONS(12381), + [anon_sym_BSLASHglssymbol] = ACTIONS(12381), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12381), + [anon_sym_BSLASHglsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12381), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12381), + [anon_sym_BSLASHglsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12381), + [anon_sym_BSLASHglsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12381), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12381), + [anon_sym_BSLASHglsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12381), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12381), + [anon_sym_BSLASHglsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12381), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12381), + [anon_sym_BSLASHnewacronym] = ACTIONS(12381), + [anon_sym_BSLASHacrshort] = ACTIONS(12381), + [anon_sym_BSLASHAcrshort] = ACTIONS(12381), + [anon_sym_BSLASHACRshort] = ACTIONS(12381), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12381), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12381), + [anon_sym_BSLASHacrlong] = ACTIONS(12381), + [anon_sym_BSLASHAcrlong] = ACTIONS(12381), + [anon_sym_BSLASHACRlong] = ACTIONS(12381), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12381), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12381), + [anon_sym_BSLASHacrfull] = ACTIONS(12381), + [anon_sym_BSLASHAcrfull] = ACTIONS(12381), + [anon_sym_BSLASHACRfull] = ACTIONS(12381), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12381), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12381), + [anon_sym_BSLASHacs] = ACTIONS(12381), + [anon_sym_BSLASHAcs] = ACTIONS(12381), + [anon_sym_BSLASHacsp] = ACTIONS(12381), + [anon_sym_BSLASHAcsp] = ACTIONS(12381), + [anon_sym_BSLASHacl] = ACTIONS(12381), + [anon_sym_BSLASHAcl] = ACTIONS(12381), + [anon_sym_BSLASHaclp] = ACTIONS(12381), + [anon_sym_BSLASHAclp] = ACTIONS(12381), + [anon_sym_BSLASHacf] = ACTIONS(12381), + [anon_sym_BSLASHAcf] = ACTIONS(12381), + [anon_sym_BSLASHacfp] = ACTIONS(12381), + [anon_sym_BSLASHAcfp] = ACTIONS(12381), + [anon_sym_BSLASHac] = ACTIONS(12381), + [anon_sym_BSLASHAc] = ACTIONS(12381), + [anon_sym_BSLASHacp] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12381), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12381), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12381), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12381), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12381), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12381), + [anon_sym_BSLASHcolor] = ACTIONS(12381), + [anon_sym_BSLASHcolorbox] = ACTIONS(12381), + [anon_sym_BSLASHtextcolor] = ACTIONS(12381), + [anon_sym_BSLASHpagecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12381), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12381), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12381), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12381), + }, + [1937] = { + [sym_generic_command_name] = ACTIONS(12393), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12391), + [anon_sym_RBRACK] = ACTIONS(12391), + [anon_sym_LBRACE] = ACTIONS(12391), + [anon_sym_RBRACE] = ACTIONS(12391), + [anon_sym_LPAREN] = ACTIONS(12391), + [anon_sym_COMMA] = ACTIONS(12391), + [anon_sym_EQ] = ACTIONS(12391), + [sym_word] = ACTIONS(12391), + [sym_param] = ACTIONS(12391), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12391), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12391), + [anon_sym_DOLLAR] = ACTIONS(12393), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12391), + [anon_sym_BSLASHbegin] = ACTIONS(12393), + [anon_sym_BSLASHcaption] = ACTIONS(12393), + [anon_sym_BSLASHcite] = ACTIONS(12393), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCite] = ACTIONS(12393), + [anon_sym_BSLASHnocite] = ACTIONS(12393), + [anon_sym_BSLASHcitet] = ACTIONS(12393), + [anon_sym_BSLASHcitep] = ACTIONS(12393), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteauthor] = ACTIONS(12393), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12393), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitetitle] = ACTIONS(12393), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteyear] = ACTIONS(12393), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12391), + [anon_sym_BSLASHcitedate] = ACTIONS(12393), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12391), + [anon_sym_BSLASHciteurl] = ACTIONS(12393), + [anon_sym_BSLASHfullcite] = ACTIONS(12393), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12393), + [anon_sym_BSLASHcitealt] = ACTIONS(12393), + [anon_sym_BSLASHcitealp] = ACTIONS(12393), + [anon_sym_BSLASHcitetext] = ACTIONS(12393), + [anon_sym_BSLASHparencite] = ACTIONS(12393), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHParencite] = ACTIONS(12393), + [anon_sym_BSLASHfootcite] = ACTIONS(12393), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12393), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12393), + [anon_sym_BSLASHtextcite] = ACTIONS(12393), + [anon_sym_BSLASHTextcite] = ACTIONS(12393), + [anon_sym_BSLASHsmartcite] = ACTIONS(12393), + [anon_sym_BSLASHSmartcite] = ACTIONS(12393), + [anon_sym_BSLASHsupercite] = ACTIONS(12393), + [anon_sym_BSLASHautocite] = ACTIONS(12393), + [anon_sym_BSLASHAutocite] = ACTIONS(12393), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12391), + [anon_sym_BSLASHvolcite] = ACTIONS(12393), + [anon_sym_BSLASHVolcite] = ACTIONS(12393), + [anon_sym_BSLASHpvolcite] = ACTIONS(12393), + [anon_sym_BSLASHPvolcite] = ACTIONS(12393), + [anon_sym_BSLASHfvolcite] = ACTIONS(12393), + [anon_sym_BSLASHftvolcite] = ACTIONS(12393), + [anon_sym_BSLASHsvolcite] = ACTIONS(12393), + [anon_sym_BSLASHSvolcite] = ACTIONS(12393), + [anon_sym_BSLASHtvolcite] = ACTIONS(12393), + [anon_sym_BSLASHTvolcite] = ACTIONS(12393), + [anon_sym_BSLASHavolcite] = ACTIONS(12393), + [anon_sym_BSLASHAvolcite] = ACTIONS(12393), + [anon_sym_BSLASHnotecite] = ACTIONS(12393), + [anon_sym_BSLASHpnotecite] = ACTIONS(12393), + [anon_sym_BSLASHPnotecite] = ACTIONS(12393), + [anon_sym_BSLASHfnotecite] = ACTIONS(12393), + [anon_sym_BSLASHusepackage] = ACTIONS(12393), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12393), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12393), + [anon_sym_BSLASHinclude] = ACTIONS(12393), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12393), + [anon_sym_BSLASHinput] = ACTIONS(12393), + [anon_sym_BSLASHsubfile] = ACTIONS(12393), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12393), + [anon_sym_BSLASHbibliography] = ACTIONS(12393), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12393), + [anon_sym_BSLASHincludesvg] = ACTIONS(12393), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12393), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12393), + [anon_sym_BSLASHimport] = ACTIONS(12393), + [anon_sym_BSLASHsubimport] = ACTIONS(12393), + [anon_sym_BSLASHinputfrom] = ACTIONS(12393), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12393), + [anon_sym_BSLASHincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12393), + [anon_sym_BSLASHlabel] = ACTIONS(12393), + [anon_sym_BSLASHref] = ACTIONS(12393), + [anon_sym_BSLASHvref] = ACTIONS(12393), + [anon_sym_BSLASHVref] = ACTIONS(12393), + [anon_sym_BSLASHautoref] = ACTIONS(12393), + [anon_sym_BSLASHpageref] = ACTIONS(12393), + [anon_sym_BSLASHcref] = ACTIONS(12393), + [anon_sym_BSLASHCref] = ACTIONS(12393), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnameCref] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12393), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12393), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12393), + [anon_sym_BSLASHlabelcref] = ACTIONS(12393), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12393), + [anon_sym_BSLASHeqref] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange] = ACTIONS(12393), + [anon_sym_BSLASHCrefrange] = ACTIONS(12393), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewlabel] = ACTIONS(12393), + [anon_sym_BSLASHnewcommand] = ACTIONS(12393), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12393), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12391), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12393), + [anon_sym_BSLASHgls] = ACTIONS(12393), + [anon_sym_BSLASHGls] = ACTIONS(12393), + [anon_sym_BSLASHGLS] = ACTIONS(12393), + [anon_sym_BSLASHglspl] = ACTIONS(12393), + [anon_sym_BSLASHGlspl] = ACTIONS(12393), + [anon_sym_BSLASHGLSpl] = ACTIONS(12393), + [anon_sym_BSLASHglsdisp] = ACTIONS(12393), + [anon_sym_BSLASHglslink] = ACTIONS(12393), + [anon_sym_BSLASHglstext] = ACTIONS(12393), + [anon_sym_BSLASHGlstext] = ACTIONS(12393), + [anon_sym_BSLASHGLStext] = ACTIONS(12393), + [anon_sym_BSLASHglsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12393), + [anon_sym_BSLASHglsplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSplural] = ACTIONS(12393), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12393), + [anon_sym_BSLASHglsname] = ACTIONS(12393), + [anon_sym_BSLASHGlsname] = ACTIONS(12393), + [anon_sym_BSLASHGLSname] = ACTIONS(12393), + [anon_sym_BSLASHglssymbol] = ACTIONS(12393), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12393), + [anon_sym_BSLASHglsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12393), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12393), + [anon_sym_BSLASHglsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12393), + [anon_sym_BSLASHglsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12393), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12393), + [anon_sym_BSLASHglsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12393), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12393), + [anon_sym_BSLASHglsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12393), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12393), + [anon_sym_BSLASHnewacronym] = ACTIONS(12393), + [anon_sym_BSLASHacrshort] = ACTIONS(12393), + [anon_sym_BSLASHAcrshort] = ACTIONS(12393), + [anon_sym_BSLASHACRshort] = ACTIONS(12393), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12393), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12393), + [anon_sym_BSLASHacrlong] = ACTIONS(12393), + [anon_sym_BSLASHAcrlong] = ACTIONS(12393), + [anon_sym_BSLASHACRlong] = ACTIONS(12393), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12393), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12393), + [anon_sym_BSLASHacrfull] = ACTIONS(12393), + [anon_sym_BSLASHAcrfull] = ACTIONS(12393), + [anon_sym_BSLASHACRfull] = ACTIONS(12393), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12393), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12393), + [anon_sym_BSLASHacs] = ACTIONS(12393), + [anon_sym_BSLASHAcs] = ACTIONS(12393), + [anon_sym_BSLASHacsp] = ACTIONS(12393), + [anon_sym_BSLASHAcsp] = ACTIONS(12393), + [anon_sym_BSLASHacl] = ACTIONS(12393), + [anon_sym_BSLASHAcl] = ACTIONS(12393), + [anon_sym_BSLASHaclp] = ACTIONS(12393), + [anon_sym_BSLASHAclp] = ACTIONS(12393), + [anon_sym_BSLASHacf] = ACTIONS(12393), + [anon_sym_BSLASHAcf] = ACTIONS(12393), + [anon_sym_BSLASHacfp] = ACTIONS(12393), + [anon_sym_BSLASHAcfp] = ACTIONS(12393), + [anon_sym_BSLASHac] = ACTIONS(12393), + [anon_sym_BSLASHAc] = ACTIONS(12393), + [anon_sym_BSLASHacp] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12393), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12393), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12393), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12393), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12393), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12393), + [anon_sym_BSLASHcolor] = ACTIONS(12393), + [anon_sym_BSLASHcolorbox] = ACTIONS(12393), + [anon_sym_BSLASHtextcolor] = ACTIONS(12393), + [anon_sym_BSLASHpagecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12393), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12393), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12393), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12393), + }, + [1938] = { + [sym_generic_command_name] = ACTIONS(12397), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12395), + [anon_sym_RBRACK] = ACTIONS(12395), + [anon_sym_LBRACE] = ACTIONS(12395), + [anon_sym_RBRACE] = ACTIONS(12395), + [anon_sym_LPAREN] = ACTIONS(12395), + [anon_sym_COMMA] = ACTIONS(12395), + [anon_sym_EQ] = ACTIONS(12395), + [sym_word] = ACTIONS(12395), + [sym_param] = ACTIONS(12395), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12395), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12395), + [anon_sym_DOLLAR] = ACTIONS(12397), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12395), + [anon_sym_BSLASHbegin] = ACTIONS(12397), + [anon_sym_BSLASHcaption] = ACTIONS(12397), + [anon_sym_BSLASHcite] = ACTIONS(12397), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCite] = ACTIONS(12397), + [anon_sym_BSLASHnocite] = ACTIONS(12397), + [anon_sym_BSLASHcitet] = ACTIONS(12397), + [anon_sym_BSLASHcitep] = ACTIONS(12397), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteauthor] = ACTIONS(12397), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12397), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitetitle] = ACTIONS(12397), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteyear] = ACTIONS(12397), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12395), + [anon_sym_BSLASHcitedate] = ACTIONS(12397), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12395), + [anon_sym_BSLASHciteurl] = ACTIONS(12397), + [anon_sym_BSLASHfullcite] = ACTIONS(12397), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12397), + [anon_sym_BSLASHcitealt] = ACTIONS(12397), + [anon_sym_BSLASHcitealp] = ACTIONS(12397), + [anon_sym_BSLASHcitetext] = ACTIONS(12397), + [anon_sym_BSLASHparencite] = ACTIONS(12397), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHParencite] = ACTIONS(12397), + [anon_sym_BSLASHfootcite] = ACTIONS(12397), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12397), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12397), + [anon_sym_BSLASHtextcite] = ACTIONS(12397), + [anon_sym_BSLASHTextcite] = ACTIONS(12397), + [anon_sym_BSLASHsmartcite] = ACTIONS(12397), + [anon_sym_BSLASHSmartcite] = ACTIONS(12397), + [anon_sym_BSLASHsupercite] = ACTIONS(12397), + [anon_sym_BSLASHautocite] = ACTIONS(12397), + [anon_sym_BSLASHAutocite] = ACTIONS(12397), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12395), + [anon_sym_BSLASHvolcite] = ACTIONS(12397), + [anon_sym_BSLASHVolcite] = ACTIONS(12397), + [anon_sym_BSLASHpvolcite] = ACTIONS(12397), + [anon_sym_BSLASHPvolcite] = ACTIONS(12397), + [anon_sym_BSLASHfvolcite] = ACTIONS(12397), + [anon_sym_BSLASHftvolcite] = ACTIONS(12397), + [anon_sym_BSLASHsvolcite] = ACTIONS(12397), + [anon_sym_BSLASHSvolcite] = ACTIONS(12397), + [anon_sym_BSLASHtvolcite] = ACTIONS(12397), + [anon_sym_BSLASHTvolcite] = ACTIONS(12397), + [anon_sym_BSLASHavolcite] = ACTIONS(12397), + [anon_sym_BSLASHAvolcite] = ACTIONS(12397), + [anon_sym_BSLASHnotecite] = ACTIONS(12397), + [anon_sym_BSLASHpnotecite] = ACTIONS(12397), + [anon_sym_BSLASHPnotecite] = ACTIONS(12397), + [anon_sym_BSLASHfnotecite] = ACTIONS(12397), + [anon_sym_BSLASHusepackage] = ACTIONS(12397), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12397), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12397), + [anon_sym_BSLASHinclude] = ACTIONS(12397), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12397), + [anon_sym_BSLASHinput] = ACTIONS(12397), + [anon_sym_BSLASHsubfile] = ACTIONS(12397), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12397), + [anon_sym_BSLASHbibliography] = ACTIONS(12397), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12397), + [anon_sym_BSLASHincludesvg] = ACTIONS(12397), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12397), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12397), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12397), + [anon_sym_BSLASHimport] = ACTIONS(12397), + [anon_sym_BSLASHsubimport] = ACTIONS(12397), + [anon_sym_BSLASHinputfrom] = ACTIONS(12397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12397), + [anon_sym_BSLASHincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12397), + [anon_sym_BSLASHlabel] = ACTIONS(12397), + [anon_sym_BSLASHref] = ACTIONS(12397), + [anon_sym_BSLASHvref] = ACTIONS(12397), + [anon_sym_BSLASHVref] = ACTIONS(12397), + [anon_sym_BSLASHautoref] = ACTIONS(12397), + [anon_sym_BSLASHpageref] = ACTIONS(12397), + [anon_sym_BSLASHcref] = ACTIONS(12397), + [anon_sym_BSLASHCref] = ACTIONS(12397), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnameCref] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12397), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12397), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12397), + [anon_sym_BSLASHlabelcref] = ACTIONS(12397), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12397), + [anon_sym_BSLASHeqref] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange] = ACTIONS(12397), + [anon_sym_BSLASHCrefrange] = ACTIONS(12397), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewlabel] = ACTIONS(12397), + [anon_sym_BSLASHnewcommand] = ACTIONS(12397), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12397), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12395), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12397), + [anon_sym_BSLASHgls] = ACTIONS(12397), + [anon_sym_BSLASHGls] = ACTIONS(12397), + [anon_sym_BSLASHGLS] = ACTIONS(12397), + [anon_sym_BSLASHglspl] = ACTIONS(12397), + [anon_sym_BSLASHGlspl] = ACTIONS(12397), + [anon_sym_BSLASHGLSpl] = ACTIONS(12397), + [anon_sym_BSLASHglsdisp] = ACTIONS(12397), + [anon_sym_BSLASHglslink] = ACTIONS(12397), + [anon_sym_BSLASHglstext] = ACTIONS(12397), + [anon_sym_BSLASHGlstext] = ACTIONS(12397), + [anon_sym_BSLASHGLStext] = ACTIONS(12397), + [anon_sym_BSLASHglsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12397), + [anon_sym_BSLASHglsplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSplural] = ACTIONS(12397), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12397), + [anon_sym_BSLASHglsname] = ACTIONS(12397), + [anon_sym_BSLASHGlsname] = ACTIONS(12397), + [anon_sym_BSLASHGLSname] = ACTIONS(12397), + [anon_sym_BSLASHglssymbol] = ACTIONS(12397), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12397), + [anon_sym_BSLASHglsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12397), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12397), + [anon_sym_BSLASHglsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12397), + [anon_sym_BSLASHglsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12397), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12397), + [anon_sym_BSLASHglsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12397), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12397), + [anon_sym_BSLASHglsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12397), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12397), + [anon_sym_BSLASHnewacronym] = ACTIONS(12397), + [anon_sym_BSLASHacrshort] = ACTIONS(12397), + [anon_sym_BSLASHAcrshort] = ACTIONS(12397), + [anon_sym_BSLASHACRshort] = ACTIONS(12397), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12397), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12397), + [anon_sym_BSLASHacrlong] = ACTIONS(12397), + [anon_sym_BSLASHAcrlong] = ACTIONS(12397), + [anon_sym_BSLASHACRlong] = ACTIONS(12397), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12397), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12397), + [anon_sym_BSLASHacrfull] = ACTIONS(12397), + [anon_sym_BSLASHAcrfull] = ACTIONS(12397), + [anon_sym_BSLASHACRfull] = ACTIONS(12397), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12397), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12397), + [anon_sym_BSLASHacs] = ACTIONS(12397), + [anon_sym_BSLASHAcs] = ACTIONS(12397), + [anon_sym_BSLASHacsp] = ACTIONS(12397), + [anon_sym_BSLASHAcsp] = ACTIONS(12397), + [anon_sym_BSLASHacl] = ACTIONS(12397), + [anon_sym_BSLASHAcl] = ACTIONS(12397), + [anon_sym_BSLASHaclp] = ACTIONS(12397), + [anon_sym_BSLASHAclp] = ACTIONS(12397), + [anon_sym_BSLASHacf] = ACTIONS(12397), + [anon_sym_BSLASHAcf] = ACTIONS(12397), + [anon_sym_BSLASHacfp] = ACTIONS(12397), + [anon_sym_BSLASHAcfp] = ACTIONS(12397), + [anon_sym_BSLASHac] = ACTIONS(12397), + [anon_sym_BSLASHAc] = ACTIONS(12397), + [anon_sym_BSLASHacp] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12397), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12397), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12397), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12397), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12397), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12397), + [anon_sym_BSLASHcolor] = ACTIONS(12397), + [anon_sym_BSLASHcolorbox] = ACTIONS(12397), + [anon_sym_BSLASHtextcolor] = ACTIONS(12397), + [anon_sym_BSLASHpagecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12397), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12397), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12397), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12397), + }, + [1939] = { + [sym_generic_command_name] = ACTIONS(12401), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12399), + [anon_sym_RBRACK] = ACTIONS(12399), + [anon_sym_LBRACE] = ACTIONS(12399), + [anon_sym_RBRACE] = ACTIONS(12399), + [anon_sym_LPAREN] = ACTIONS(12399), + [anon_sym_COMMA] = ACTIONS(12399), + [anon_sym_EQ] = ACTIONS(12399), + [sym_word] = ACTIONS(12399), + [sym_param] = ACTIONS(12399), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12399), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12399), + [anon_sym_DOLLAR] = ACTIONS(12401), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12399), + [anon_sym_BSLASHbegin] = ACTIONS(12401), + [anon_sym_BSLASHcaption] = ACTIONS(12401), + [anon_sym_BSLASHcite] = ACTIONS(12401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCite] = ACTIONS(12401), + [anon_sym_BSLASHnocite] = ACTIONS(12401), + [anon_sym_BSLASHcitet] = ACTIONS(12401), + [anon_sym_BSLASHcitep] = ACTIONS(12401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteauthor] = ACTIONS(12401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitetitle] = ACTIONS(12401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteyear] = ACTIONS(12401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12399), + [anon_sym_BSLASHcitedate] = ACTIONS(12401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12399), + [anon_sym_BSLASHciteurl] = ACTIONS(12401), + [anon_sym_BSLASHfullcite] = ACTIONS(12401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12401), + [anon_sym_BSLASHcitealt] = ACTIONS(12401), + [anon_sym_BSLASHcitealp] = ACTIONS(12401), + [anon_sym_BSLASHcitetext] = ACTIONS(12401), + [anon_sym_BSLASHparencite] = ACTIONS(12401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHParencite] = ACTIONS(12401), + [anon_sym_BSLASHfootcite] = ACTIONS(12401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12401), + [anon_sym_BSLASHtextcite] = ACTIONS(12401), + [anon_sym_BSLASHTextcite] = ACTIONS(12401), + [anon_sym_BSLASHsmartcite] = ACTIONS(12401), + [anon_sym_BSLASHSmartcite] = ACTIONS(12401), + [anon_sym_BSLASHsupercite] = ACTIONS(12401), + [anon_sym_BSLASHautocite] = ACTIONS(12401), + [anon_sym_BSLASHAutocite] = ACTIONS(12401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12399), + [anon_sym_BSLASHvolcite] = ACTIONS(12401), + [anon_sym_BSLASHVolcite] = ACTIONS(12401), + [anon_sym_BSLASHpvolcite] = ACTIONS(12401), + [anon_sym_BSLASHPvolcite] = ACTIONS(12401), + [anon_sym_BSLASHfvolcite] = ACTIONS(12401), + [anon_sym_BSLASHftvolcite] = ACTIONS(12401), + [anon_sym_BSLASHsvolcite] = ACTIONS(12401), + [anon_sym_BSLASHSvolcite] = ACTIONS(12401), + [anon_sym_BSLASHtvolcite] = ACTIONS(12401), + [anon_sym_BSLASHTvolcite] = ACTIONS(12401), + [anon_sym_BSLASHavolcite] = ACTIONS(12401), + [anon_sym_BSLASHAvolcite] = ACTIONS(12401), + [anon_sym_BSLASHnotecite] = ACTIONS(12401), + [anon_sym_BSLASHpnotecite] = ACTIONS(12401), + [anon_sym_BSLASHPnotecite] = ACTIONS(12401), + [anon_sym_BSLASHfnotecite] = ACTIONS(12401), + [anon_sym_BSLASHusepackage] = ACTIONS(12401), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12401), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12401), + [anon_sym_BSLASHinclude] = ACTIONS(12401), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12401), + [anon_sym_BSLASHinput] = ACTIONS(12401), + [anon_sym_BSLASHsubfile] = ACTIONS(12401), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12401), + [anon_sym_BSLASHbibliography] = ACTIONS(12401), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12401), + [anon_sym_BSLASHincludesvg] = ACTIONS(12401), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12401), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12401), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12401), + [anon_sym_BSLASHimport] = ACTIONS(12401), + [anon_sym_BSLASHsubimport] = ACTIONS(12401), + [anon_sym_BSLASHinputfrom] = ACTIONS(12401), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12401), + [anon_sym_BSLASHincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12401), + [anon_sym_BSLASHlabel] = ACTIONS(12401), + [anon_sym_BSLASHref] = ACTIONS(12401), + [anon_sym_BSLASHvref] = ACTIONS(12401), + [anon_sym_BSLASHVref] = ACTIONS(12401), + [anon_sym_BSLASHautoref] = ACTIONS(12401), + [anon_sym_BSLASHpageref] = ACTIONS(12401), + [anon_sym_BSLASHcref] = ACTIONS(12401), + [anon_sym_BSLASHCref] = ACTIONS(12401), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnameCref] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12401), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12401), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12401), + [anon_sym_BSLASHlabelcref] = ACTIONS(12401), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12401), + [anon_sym_BSLASHeqref] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange] = ACTIONS(12401), + [anon_sym_BSLASHCrefrange] = ACTIONS(12401), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewlabel] = ACTIONS(12401), + [anon_sym_BSLASHnewcommand] = ACTIONS(12401), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12401), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12399), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12401), + [anon_sym_BSLASHgls] = ACTIONS(12401), + [anon_sym_BSLASHGls] = ACTIONS(12401), + [anon_sym_BSLASHGLS] = ACTIONS(12401), + [anon_sym_BSLASHglspl] = ACTIONS(12401), + [anon_sym_BSLASHGlspl] = ACTIONS(12401), + [anon_sym_BSLASHGLSpl] = ACTIONS(12401), + [anon_sym_BSLASHglsdisp] = ACTIONS(12401), + [anon_sym_BSLASHglslink] = ACTIONS(12401), + [anon_sym_BSLASHglstext] = ACTIONS(12401), + [anon_sym_BSLASHGlstext] = ACTIONS(12401), + [anon_sym_BSLASHGLStext] = ACTIONS(12401), + [anon_sym_BSLASHglsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12401), + [anon_sym_BSLASHglsplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSplural] = ACTIONS(12401), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12401), + [anon_sym_BSLASHglsname] = ACTIONS(12401), + [anon_sym_BSLASHGlsname] = ACTIONS(12401), + [anon_sym_BSLASHGLSname] = ACTIONS(12401), + [anon_sym_BSLASHglssymbol] = ACTIONS(12401), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12401), + [anon_sym_BSLASHglsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12401), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12401), + [anon_sym_BSLASHglsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12401), + [anon_sym_BSLASHglsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12401), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12401), + [anon_sym_BSLASHglsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12401), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12401), + [anon_sym_BSLASHglsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12401), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12401), + [anon_sym_BSLASHnewacronym] = ACTIONS(12401), + [anon_sym_BSLASHacrshort] = ACTIONS(12401), + [anon_sym_BSLASHAcrshort] = ACTIONS(12401), + [anon_sym_BSLASHACRshort] = ACTIONS(12401), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12401), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12401), + [anon_sym_BSLASHacrlong] = ACTIONS(12401), + [anon_sym_BSLASHAcrlong] = ACTIONS(12401), + [anon_sym_BSLASHACRlong] = ACTIONS(12401), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12401), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12401), + [anon_sym_BSLASHacrfull] = ACTIONS(12401), + [anon_sym_BSLASHAcrfull] = ACTIONS(12401), + [anon_sym_BSLASHACRfull] = ACTIONS(12401), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12401), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12401), + [anon_sym_BSLASHacs] = ACTIONS(12401), + [anon_sym_BSLASHAcs] = ACTIONS(12401), + [anon_sym_BSLASHacsp] = ACTIONS(12401), + [anon_sym_BSLASHAcsp] = ACTIONS(12401), + [anon_sym_BSLASHacl] = ACTIONS(12401), + [anon_sym_BSLASHAcl] = ACTIONS(12401), + [anon_sym_BSLASHaclp] = ACTIONS(12401), + [anon_sym_BSLASHAclp] = ACTIONS(12401), + [anon_sym_BSLASHacf] = ACTIONS(12401), + [anon_sym_BSLASHAcf] = ACTIONS(12401), + [anon_sym_BSLASHacfp] = ACTIONS(12401), + [anon_sym_BSLASHAcfp] = ACTIONS(12401), + [anon_sym_BSLASHac] = ACTIONS(12401), + [anon_sym_BSLASHAc] = ACTIONS(12401), + [anon_sym_BSLASHacp] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12401), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12401), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12401), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12401), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12401), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12401), + [anon_sym_BSLASHcolor] = ACTIONS(12401), + [anon_sym_BSLASHcolorbox] = ACTIONS(12401), + [anon_sym_BSLASHtextcolor] = ACTIONS(12401), + [anon_sym_BSLASHpagecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12401), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12401), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12401), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12401), + }, + [1940] = { + [sym_generic_command_name] = ACTIONS(12405), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12403), + [anon_sym_RBRACK] = ACTIONS(12403), + [anon_sym_LBRACE] = ACTIONS(12403), + [anon_sym_RBRACE] = ACTIONS(12403), + [anon_sym_LPAREN] = ACTIONS(12403), + [anon_sym_COMMA] = ACTIONS(12403), + [anon_sym_EQ] = ACTIONS(12403), + [sym_word] = ACTIONS(12403), + [sym_param] = ACTIONS(12403), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12403), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12403), + [anon_sym_DOLLAR] = ACTIONS(12405), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12403), + [anon_sym_BSLASHbegin] = ACTIONS(12405), + [anon_sym_BSLASHcaption] = ACTIONS(12405), + [anon_sym_BSLASHcite] = ACTIONS(12405), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCite] = ACTIONS(12405), + [anon_sym_BSLASHnocite] = ACTIONS(12405), + [anon_sym_BSLASHcitet] = ACTIONS(12405), + [anon_sym_BSLASHcitep] = ACTIONS(12405), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteauthor] = ACTIONS(12405), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12405), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitetitle] = ACTIONS(12405), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteyear] = ACTIONS(12405), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12403), + [anon_sym_BSLASHcitedate] = ACTIONS(12405), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12403), + [anon_sym_BSLASHciteurl] = ACTIONS(12405), + [anon_sym_BSLASHfullcite] = ACTIONS(12405), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12405), + [anon_sym_BSLASHcitealt] = ACTIONS(12405), + [anon_sym_BSLASHcitealp] = ACTIONS(12405), + [anon_sym_BSLASHcitetext] = ACTIONS(12405), + [anon_sym_BSLASHparencite] = ACTIONS(12405), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHParencite] = ACTIONS(12405), + [anon_sym_BSLASHfootcite] = ACTIONS(12405), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12405), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12405), + [anon_sym_BSLASHtextcite] = ACTIONS(12405), + [anon_sym_BSLASHTextcite] = ACTIONS(12405), + [anon_sym_BSLASHsmartcite] = ACTIONS(12405), + [anon_sym_BSLASHSmartcite] = ACTIONS(12405), + [anon_sym_BSLASHsupercite] = ACTIONS(12405), + [anon_sym_BSLASHautocite] = ACTIONS(12405), + [anon_sym_BSLASHAutocite] = ACTIONS(12405), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12403), + [anon_sym_BSLASHvolcite] = ACTIONS(12405), + [anon_sym_BSLASHVolcite] = ACTIONS(12405), + [anon_sym_BSLASHpvolcite] = ACTIONS(12405), + [anon_sym_BSLASHPvolcite] = ACTIONS(12405), + [anon_sym_BSLASHfvolcite] = ACTIONS(12405), + [anon_sym_BSLASHftvolcite] = ACTIONS(12405), + [anon_sym_BSLASHsvolcite] = ACTIONS(12405), + [anon_sym_BSLASHSvolcite] = ACTIONS(12405), + [anon_sym_BSLASHtvolcite] = ACTIONS(12405), + [anon_sym_BSLASHTvolcite] = ACTIONS(12405), + [anon_sym_BSLASHavolcite] = ACTIONS(12405), + [anon_sym_BSLASHAvolcite] = ACTIONS(12405), + [anon_sym_BSLASHnotecite] = ACTIONS(12405), + [anon_sym_BSLASHpnotecite] = ACTIONS(12405), + [anon_sym_BSLASHPnotecite] = ACTIONS(12405), + [anon_sym_BSLASHfnotecite] = ACTIONS(12405), + [anon_sym_BSLASHusepackage] = ACTIONS(12405), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12405), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12405), + [anon_sym_BSLASHinclude] = ACTIONS(12405), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12405), + [anon_sym_BSLASHinput] = ACTIONS(12405), + [anon_sym_BSLASHsubfile] = ACTIONS(12405), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12405), + [anon_sym_BSLASHbibliography] = ACTIONS(12405), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12405), + [anon_sym_BSLASHincludesvg] = ACTIONS(12405), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12405), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12405), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12405), + [anon_sym_BSLASHimport] = ACTIONS(12405), + [anon_sym_BSLASHsubimport] = ACTIONS(12405), + [anon_sym_BSLASHinputfrom] = ACTIONS(12405), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12405), + [anon_sym_BSLASHincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12405), + [anon_sym_BSLASHlabel] = ACTIONS(12405), + [anon_sym_BSLASHref] = ACTIONS(12405), + [anon_sym_BSLASHvref] = ACTIONS(12405), + [anon_sym_BSLASHVref] = ACTIONS(12405), + [anon_sym_BSLASHautoref] = ACTIONS(12405), + [anon_sym_BSLASHpageref] = ACTIONS(12405), + [anon_sym_BSLASHcref] = ACTIONS(12405), + [anon_sym_BSLASHCref] = ACTIONS(12405), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnameCref] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12405), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12405), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12405), + [anon_sym_BSLASHlabelcref] = ACTIONS(12405), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12405), + [anon_sym_BSLASHeqref] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange] = ACTIONS(12405), + [anon_sym_BSLASHCrefrange] = ACTIONS(12405), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewlabel] = ACTIONS(12405), + [anon_sym_BSLASHnewcommand] = ACTIONS(12405), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12405), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12403), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12405), + [anon_sym_BSLASHgls] = ACTIONS(12405), + [anon_sym_BSLASHGls] = ACTIONS(12405), + [anon_sym_BSLASHGLS] = ACTIONS(12405), + [anon_sym_BSLASHglspl] = ACTIONS(12405), + [anon_sym_BSLASHGlspl] = ACTIONS(12405), + [anon_sym_BSLASHGLSpl] = ACTIONS(12405), + [anon_sym_BSLASHglsdisp] = ACTIONS(12405), + [anon_sym_BSLASHglslink] = ACTIONS(12405), + [anon_sym_BSLASHglstext] = ACTIONS(12405), + [anon_sym_BSLASHGlstext] = ACTIONS(12405), + [anon_sym_BSLASHGLStext] = ACTIONS(12405), + [anon_sym_BSLASHglsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12405), + [anon_sym_BSLASHglsplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSplural] = ACTIONS(12405), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12405), + [anon_sym_BSLASHglsname] = ACTIONS(12405), + [anon_sym_BSLASHGlsname] = ACTIONS(12405), + [anon_sym_BSLASHGLSname] = ACTIONS(12405), + [anon_sym_BSLASHglssymbol] = ACTIONS(12405), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12405), + [anon_sym_BSLASHglsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12405), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12405), + [anon_sym_BSLASHglsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12405), + [anon_sym_BSLASHglsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12405), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12405), + [anon_sym_BSLASHglsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12405), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12405), + [anon_sym_BSLASHglsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12405), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12405), + [anon_sym_BSLASHnewacronym] = ACTIONS(12405), + [anon_sym_BSLASHacrshort] = ACTIONS(12405), + [anon_sym_BSLASHAcrshort] = ACTIONS(12405), + [anon_sym_BSLASHACRshort] = ACTIONS(12405), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12405), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12405), + [anon_sym_BSLASHacrlong] = ACTIONS(12405), + [anon_sym_BSLASHAcrlong] = ACTIONS(12405), + [anon_sym_BSLASHACRlong] = ACTIONS(12405), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12405), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12405), + [anon_sym_BSLASHacrfull] = ACTIONS(12405), + [anon_sym_BSLASHAcrfull] = ACTIONS(12405), + [anon_sym_BSLASHACRfull] = ACTIONS(12405), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12405), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12405), + [anon_sym_BSLASHacs] = ACTIONS(12405), + [anon_sym_BSLASHAcs] = ACTIONS(12405), + [anon_sym_BSLASHacsp] = ACTIONS(12405), + [anon_sym_BSLASHAcsp] = ACTIONS(12405), + [anon_sym_BSLASHacl] = ACTIONS(12405), + [anon_sym_BSLASHAcl] = ACTIONS(12405), + [anon_sym_BSLASHaclp] = ACTIONS(12405), + [anon_sym_BSLASHAclp] = ACTIONS(12405), + [anon_sym_BSLASHacf] = ACTIONS(12405), + [anon_sym_BSLASHAcf] = ACTIONS(12405), + [anon_sym_BSLASHacfp] = ACTIONS(12405), + [anon_sym_BSLASHAcfp] = ACTIONS(12405), + [anon_sym_BSLASHac] = ACTIONS(12405), + [anon_sym_BSLASHAc] = ACTIONS(12405), + [anon_sym_BSLASHacp] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12405), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12405), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12405), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12405), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12405), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12405), + [anon_sym_BSLASHcolor] = ACTIONS(12405), + [anon_sym_BSLASHcolorbox] = ACTIONS(12405), + [anon_sym_BSLASHtextcolor] = ACTIONS(12405), + [anon_sym_BSLASHpagecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12405), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12405), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12405), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12405), + }, + [1941] = { + [sym_generic_command_name] = ACTIONS(12385), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12383), + [anon_sym_RBRACK] = ACTIONS(12383), + [anon_sym_LBRACE] = ACTIONS(12383), + [anon_sym_RBRACE] = ACTIONS(12383), + [anon_sym_LPAREN] = ACTIONS(12383), + [anon_sym_COMMA] = ACTIONS(12383), + [anon_sym_EQ] = ACTIONS(12383), + [sym_word] = ACTIONS(12383), + [sym_param] = ACTIONS(12383), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12383), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12383), + [anon_sym_DOLLAR] = ACTIONS(12385), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12383), + [anon_sym_BSLASHbegin] = ACTIONS(12385), + [anon_sym_BSLASHcaption] = ACTIONS(12385), + [anon_sym_BSLASHcite] = ACTIONS(12385), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCite] = ACTIONS(12385), + [anon_sym_BSLASHnocite] = ACTIONS(12385), + [anon_sym_BSLASHcitet] = ACTIONS(12385), + [anon_sym_BSLASHcitep] = ACTIONS(12385), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteauthor] = ACTIONS(12385), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12385), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitetitle] = ACTIONS(12385), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteyear] = ACTIONS(12385), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12383), + [anon_sym_BSLASHcitedate] = ACTIONS(12385), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12383), + [anon_sym_BSLASHciteurl] = ACTIONS(12385), + [anon_sym_BSLASHfullcite] = ACTIONS(12385), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12385), + [anon_sym_BSLASHcitealt] = ACTIONS(12385), + [anon_sym_BSLASHcitealp] = ACTIONS(12385), + [anon_sym_BSLASHcitetext] = ACTIONS(12385), + [anon_sym_BSLASHparencite] = ACTIONS(12385), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHParencite] = ACTIONS(12385), + [anon_sym_BSLASHfootcite] = ACTIONS(12385), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12385), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12385), + [anon_sym_BSLASHtextcite] = ACTIONS(12385), + [anon_sym_BSLASHTextcite] = ACTIONS(12385), + [anon_sym_BSLASHsmartcite] = ACTIONS(12385), + [anon_sym_BSLASHSmartcite] = ACTIONS(12385), + [anon_sym_BSLASHsupercite] = ACTIONS(12385), + [anon_sym_BSLASHautocite] = ACTIONS(12385), + [anon_sym_BSLASHAutocite] = ACTIONS(12385), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12383), + [anon_sym_BSLASHvolcite] = ACTIONS(12385), + [anon_sym_BSLASHVolcite] = ACTIONS(12385), + [anon_sym_BSLASHpvolcite] = ACTIONS(12385), + [anon_sym_BSLASHPvolcite] = ACTIONS(12385), + [anon_sym_BSLASHfvolcite] = ACTIONS(12385), + [anon_sym_BSLASHftvolcite] = ACTIONS(12385), + [anon_sym_BSLASHsvolcite] = ACTIONS(12385), + [anon_sym_BSLASHSvolcite] = ACTIONS(12385), + [anon_sym_BSLASHtvolcite] = ACTIONS(12385), + [anon_sym_BSLASHTvolcite] = ACTIONS(12385), + [anon_sym_BSLASHavolcite] = ACTIONS(12385), + [anon_sym_BSLASHAvolcite] = ACTIONS(12385), + [anon_sym_BSLASHnotecite] = ACTIONS(12385), + [anon_sym_BSLASHpnotecite] = ACTIONS(12385), + [anon_sym_BSLASHPnotecite] = ACTIONS(12385), + [anon_sym_BSLASHfnotecite] = ACTIONS(12385), + [anon_sym_BSLASHusepackage] = ACTIONS(12385), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12385), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12385), + [anon_sym_BSLASHinclude] = ACTIONS(12385), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12385), + [anon_sym_BSLASHinput] = ACTIONS(12385), + [anon_sym_BSLASHsubfile] = ACTIONS(12385), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12385), + [anon_sym_BSLASHbibliography] = ACTIONS(12385), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12385), + [anon_sym_BSLASHincludesvg] = ACTIONS(12385), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12385), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12385), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12385), + [anon_sym_BSLASHimport] = ACTIONS(12385), + [anon_sym_BSLASHsubimport] = ACTIONS(12385), + [anon_sym_BSLASHinputfrom] = ACTIONS(12385), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12385), + [anon_sym_BSLASHincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12385), + [anon_sym_BSLASHlabel] = ACTIONS(12385), + [anon_sym_BSLASHref] = ACTIONS(12385), + [anon_sym_BSLASHvref] = ACTIONS(12385), + [anon_sym_BSLASHVref] = ACTIONS(12385), + [anon_sym_BSLASHautoref] = ACTIONS(12385), + [anon_sym_BSLASHpageref] = ACTIONS(12385), + [anon_sym_BSLASHcref] = ACTIONS(12385), + [anon_sym_BSLASHCref] = ACTIONS(12385), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnameCref] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12385), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12385), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12385), + [anon_sym_BSLASHlabelcref] = ACTIONS(12385), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12385), + [anon_sym_BSLASHeqref] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange] = ACTIONS(12385), + [anon_sym_BSLASHCrefrange] = ACTIONS(12385), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewlabel] = ACTIONS(12385), + [anon_sym_BSLASHnewcommand] = ACTIONS(12385), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12385), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12383), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12385), + [anon_sym_BSLASHgls] = ACTIONS(12385), + [anon_sym_BSLASHGls] = ACTIONS(12385), + [anon_sym_BSLASHGLS] = ACTIONS(12385), + [anon_sym_BSLASHglspl] = ACTIONS(12385), + [anon_sym_BSLASHGlspl] = ACTIONS(12385), + [anon_sym_BSLASHGLSpl] = ACTIONS(12385), + [anon_sym_BSLASHglsdisp] = ACTIONS(12385), + [anon_sym_BSLASHglslink] = ACTIONS(12385), + [anon_sym_BSLASHglstext] = ACTIONS(12385), + [anon_sym_BSLASHGlstext] = ACTIONS(12385), + [anon_sym_BSLASHGLStext] = ACTIONS(12385), + [anon_sym_BSLASHglsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12385), + [anon_sym_BSLASHglsplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSplural] = ACTIONS(12385), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12385), + [anon_sym_BSLASHglsname] = ACTIONS(12385), + [anon_sym_BSLASHGlsname] = ACTIONS(12385), + [anon_sym_BSLASHGLSname] = ACTIONS(12385), + [anon_sym_BSLASHglssymbol] = ACTIONS(12385), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12385), + [anon_sym_BSLASHglsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12385), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12385), + [anon_sym_BSLASHglsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12385), + [anon_sym_BSLASHglsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12385), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12385), + [anon_sym_BSLASHglsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12385), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12385), + [anon_sym_BSLASHglsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12385), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12385), + [anon_sym_BSLASHnewacronym] = ACTIONS(12385), + [anon_sym_BSLASHacrshort] = ACTIONS(12385), + [anon_sym_BSLASHAcrshort] = ACTIONS(12385), + [anon_sym_BSLASHACRshort] = ACTIONS(12385), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12385), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12385), + [anon_sym_BSLASHacrlong] = ACTIONS(12385), + [anon_sym_BSLASHAcrlong] = ACTIONS(12385), + [anon_sym_BSLASHACRlong] = ACTIONS(12385), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12385), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12385), + [anon_sym_BSLASHacrfull] = ACTIONS(12385), + [anon_sym_BSLASHAcrfull] = ACTIONS(12385), + [anon_sym_BSLASHACRfull] = ACTIONS(12385), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12385), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12385), + [anon_sym_BSLASHacs] = ACTIONS(12385), + [anon_sym_BSLASHAcs] = ACTIONS(12385), + [anon_sym_BSLASHacsp] = ACTIONS(12385), + [anon_sym_BSLASHAcsp] = ACTIONS(12385), + [anon_sym_BSLASHacl] = ACTIONS(12385), + [anon_sym_BSLASHAcl] = ACTIONS(12385), + [anon_sym_BSLASHaclp] = ACTIONS(12385), + [anon_sym_BSLASHAclp] = ACTIONS(12385), + [anon_sym_BSLASHacf] = ACTIONS(12385), + [anon_sym_BSLASHAcf] = ACTIONS(12385), + [anon_sym_BSLASHacfp] = ACTIONS(12385), + [anon_sym_BSLASHAcfp] = ACTIONS(12385), + [anon_sym_BSLASHac] = ACTIONS(12385), + [anon_sym_BSLASHAc] = ACTIONS(12385), + [anon_sym_BSLASHacp] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12385), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12385), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12385), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12385), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12385), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12385), + [anon_sym_BSLASHcolor] = ACTIONS(12385), + [anon_sym_BSLASHcolorbox] = ACTIONS(12385), + [anon_sym_BSLASHtextcolor] = ACTIONS(12385), + [anon_sym_BSLASHpagecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12385), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12385), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12385), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12385), + }, + [1942] = { + [sym_generic_command_name] = ACTIONS(12251), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12249), + [anon_sym_RBRACK] = ACTIONS(12249), + [anon_sym_LBRACE] = ACTIONS(12249), + [anon_sym_RBRACE] = ACTIONS(12249), + [anon_sym_LPAREN] = ACTIONS(12249), + [anon_sym_COMMA] = ACTIONS(12249), + [anon_sym_EQ] = ACTIONS(12249), + [sym_word] = ACTIONS(12249), + [sym_param] = ACTIONS(12249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12249), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12249), + [anon_sym_DOLLAR] = ACTIONS(12251), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12249), + [anon_sym_BSLASHbegin] = ACTIONS(12251), + [anon_sym_BSLASHcaption] = ACTIONS(12251), + [anon_sym_BSLASHcite] = ACTIONS(12251), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCite] = ACTIONS(12251), + [anon_sym_BSLASHnocite] = ACTIONS(12251), + [anon_sym_BSLASHcitet] = ACTIONS(12251), + [anon_sym_BSLASHcitep] = ACTIONS(12251), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteauthor] = ACTIONS(12251), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12251), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitetitle] = ACTIONS(12251), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteyear] = ACTIONS(12251), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12249), + [anon_sym_BSLASHcitedate] = ACTIONS(12251), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12249), + [anon_sym_BSLASHciteurl] = ACTIONS(12251), + [anon_sym_BSLASHfullcite] = ACTIONS(12251), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12251), + [anon_sym_BSLASHcitealt] = ACTIONS(12251), + [anon_sym_BSLASHcitealp] = ACTIONS(12251), + [anon_sym_BSLASHcitetext] = ACTIONS(12251), + [anon_sym_BSLASHparencite] = ACTIONS(12251), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHParencite] = ACTIONS(12251), + [anon_sym_BSLASHfootcite] = ACTIONS(12251), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12251), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12251), + [anon_sym_BSLASHtextcite] = ACTIONS(12251), + [anon_sym_BSLASHTextcite] = ACTIONS(12251), + [anon_sym_BSLASHsmartcite] = ACTIONS(12251), + [anon_sym_BSLASHSmartcite] = ACTIONS(12251), + [anon_sym_BSLASHsupercite] = ACTIONS(12251), + [anon_sym_BSLASHautocite] = ACTIONS(12251), + [anon_sym_BSLASHAutocite] = ACTIONS(12251), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12249), + [anon_sym_BSLASHvolcite] = ACTIONS(12251), + [anon_sym_BSLASHVolcite] = ACTIONS(12251), + [anon_sym_BSLASHpvolcite] = ACTIONS(12251), + [anon_sym_BSLASHPvolcite] = ACTIONS(12251), + [anon_sym_BSLASHfvolcite] = ACTIONS(12251), + [anon_sym_BSLASHftvolcite] = ACTIONS(12251), + [anon_sym_BSLASHsvolcite] = ACTIONS(12251), + [anon_sym_BSLASHSvolcite] = ACTIONS(12251), + [anon_sym_BSLASHtvolcite] = ACTIONS(12251), + [anon_sym_BSLASHTvolcite] = ACTIONS(12251), + [anon_sym_BSLASHavolcite] = ACTIONS(12251), + [anon_sym_BSLASHAvolcite] = ACTIONS(12251), + [anon_sym_BSLASHnotecite] = ACTIONS(12251), + [anon_sym_BSLASHpnotecite] = ACTIONS(12251), + [anon_sym_BSLASHPnotecite] = ACTIONS(12251), + [anon_sym_BSLASHfnotecite] = ACTIONS(12251), + [anon_sym_BSLASHusepackage] = ACTIONS(12251), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12251), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12251), + [anon_sym_BSLASHinclude] = ACTIONS(12251), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12251), + [anon_sym_BSLASHinput] = ACTIONS(12251), + [anon_sym_BSLASHsubfile] = ACTIONS(12251), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12251), + [anon_sym_BSLASHbibliography] = ACTIONS(12251), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12251), + [anon_sym_BSLASHincludesvg] = ACTIONS(12251), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12251), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12251), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12251), + [anon_sym_BSLASHimport] = ACTIONS(12251), + [anon_sym_BSLASHsubimport] = ACTIONS(12251), + [anon_sym_BSLASHinputfrom] = ACTIONS(12251), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12251), + [anon_sym_BSLASHincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12251), + [anon_sym_BSLASHlabel] = ACTIONS(12251), + [anon_sym_BSLASHref] = ACTIONS(12251), + [anon_sym_BSLASHvref] = ACTIONS(12251), + [anon_sym_BSLASHVref] = ACTIONS(12251), + [anon_sym_BSLASHautoref] = ACTIONS(12251), + [anon_sym_BSLASHpageref] = ACTIONS(12251), + [anon_sym_BSLASHcref] = ACTIONS(12251), + [anon_sym_BSLASHCref] = ACTIONS(12251), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnameCref] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12251), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12251), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12251), + [anon_sym_BSLASHlabelcref] = ACTIONS(12251), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12251), + [anon_sym_BSLASHeqref] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange] = ACTIONS(12251), + [anon_sym_BSLASHCrefrange] = ACTIONS(12251), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewlabel] = ACTIONS(12251), + [anon_sym_BSLASHnewcommand] = ACTIONS(12251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12251), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12251), + [anon_sym_BSLASHgls] = ACTIONS(12251), + [anon_sym_BSLASHGls] = ACTIONS(12251), + [anon_sym_BSLASHGLS] = ACTIONS(12251), + [anon_sym_BSLASHglspl] = ACTIONS(12251), + [anon_sym_BSLASHGlspl] = ACTIONS(12251), + [anon_sym_BSLASHGLSpl] = ACTIONS(12251), + [anon_sym_BSLASHglsdisp] = ACTIONS(12251), + [anon_sym_BSLASHglslink] = ACTIONS(12251), + [anon_sym_BSLASHglstext] = ACTIONS(12251), + [anon_sym_BSLASHGlstext] = ACTIONS(12251), + [anon_sym_BSLASHGLStext] = ACTIONS(12251), + [anon_sym_BSLASHglsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12251), + [anon_sym_BSLASHglsplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSplural] = ACTIONS(12251), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12251), + [anon_sym_BSLASHglsname] = ACTIONS(12251), + [anon_sym_BSLASHGlsname] = ACTIONS(12251), + [anon_sym_BSLASHGLSname] = ACTIONS(12251), + [anon_sym_BSLASHglssymbol] = ACTIONS(12251), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12251), + [anon_sym_BSLASHglsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12251), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12251), + [anon_sym_BSLASHglsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12251), + [anon_sym_BSLASHglsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12251), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12251), + [anon_sym_BSLASHglsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12251), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12251), + [anon_sym_BSLASHglsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12251), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12251), + [anon_sym_BSLASHnewacronym] = ACTIONS(12251), + [anon_sym_BSLASHacrshort] = ACTIONS(12251), + [anon_sym_BSLASHAcrshort] = ACTIONS(12251), + [anon_sym_BSLASHACRshort] = ACTIONS(12251), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12251), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12251), + [anon_sym_BSLASHacrlong] = ACTIONS(12251), + [anon_sym_BSLASHAcrlong] = ACTIONS(12251), + [anon_sym_BSLASHACRlong] = ACTIONS(12251), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12251), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12251), + [anon_sym_BSLASHacrfull] = ACTIONS(12251), + [anon_sym_BSLASHAcrfull] = ACTIONS(12251), + [anon_sym_BSLASHACRfull] = ACTIONS(12251), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12251), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12251), + [anon_sym_BSLASHacs] = ACTIONS(12251), + [anon_sym_BSLASHAcs] = ACTIONS(12251), + [anon_sym_BSLASHacsp] = ACTIONS(12251), + [anon_sym_BSLASHAcsp] = ACTIONS(12251), + [anon_sym_BSLASHacl] = ACTIONS(12251), + [anon_sym_BSLASHAcl] = ACTIONS(12251), + [anon_sym_BSLASHaclp] = ACTIONS(12251), + [anon_sym_BSLASHAclp] = ACTIONS(12251), + [anon_sym_BSLASHacf] = ACTIONS(12251), + [anon_sym_BSLASHAcf] = ACTIONS(12251), + [anon_sym_BSLASHacfp] = ACTIONS(12251), + [anon_sym_BSLASHAcfp] = ACTIONS(12251), + [anon_sym_BSLASHac] = ACTIONS(12251), + [anon_sym_BSLASHAc] = ACTIONS(12251), + [anon_sym_BSLASHacp] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12251), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12251), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12251), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12251), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12251), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12251), + [anon_sym_BSLASHcolor] = ACTIONS(12251), + [anon_sym_BSLASHcolorbox] = ACTIONS(12251), + [anon_sym_BSLASHtextcolor] = ACTIONS(12251), + [anon_sym_BSLASHpagecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12251), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12251), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12251), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12251), + }, + [1943] = { + [sym_generic_command_name] = ACTIONS(12409), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12407), + [anon_sym_RBRACK] = ACTIONS(12407), + [anon_sym_LBRACE] = ACTIONS(12407), + [anon_sym_RBRACE] = ACTIONS(12407), + [anon_sym_LPAREN] = ACTIONS(12407), + [anon_sym_COMMA] = ACTIONS(12407), + [anon_sym_EQ] = ACTIONS(12407), + [sym_word] = ACTIONS(12407), + [sym_param] = ACTIONS(12407), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12407), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12407), + [anon_sym_DOLLAR] = ACTIONS(12409), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12407), + [anon_sym_BSLASHbegin] = ACTIONS(12409), + [anon_sym_BSLASHcaption] = ACTIONS(12409), + [anon_sym_BSLASHcite] = ACTIONS(12409), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCite] = ACTIONS(12409), + [anon_sym_BSLASHnocite] = ACTIONS(12409), + [anon_sym_BSLASHcitet] = ACTIONS(12409), + [anon_sym_BSLASHcitep] = ACTIONS(12409), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteauthor] = ACTIONS(12409), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12409), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitetitle] = ACTIONS(12409), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteyear] = ACTIONS(12409), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12407), + [anon_sym_BSLASHcitedate] = ACTIONS(12409), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12407), + [anon_sym_BSLASHciteurl] = ACTIONS(12409), + [anon_sym_BSLASHfullcite] = ACTIONS(12409), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12409), + [anon_sym_BSLASHcitealt] = ACTIONS(12409), + [anon_sym_BSLASHcitealp] = ACTIONS(12409), + [anon_sym_BSLASHcitetext] = ACTIONS(12409), + [anon_sym_BSLASHparencite] = ACTIONS(12409), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHParencite] = ACTIONS(12409), + [anon_sym_BSLASHfootcite] = ACTIONS(12409), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12409), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12409), + [anon_sym_BSLASHtextcite] = ACTIONS(12409), + [anon_sym_BSLASHTextcite] = ACTIONS(12409), + [anon_sym_BSLASHsmartcite] = ACTIONS(12409), + [anon_sym_BSLASHSmartcite] = ACTIONS(12409), + [anon_sym_BSLASHsupercite] = ACTIONS(12409), + [anon_sym_BSLASHautocite] = ACTIONS(12409), + [anon_sym_BSLASHAutocite] = ACTIONS(12409), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12407), + [anon_sym_BSLASHvolcite] = ACTIONS(12409), + [anon_sym_BSLASHVolcite] = ACTIONS(12409), + [anon_sym_BSLASHpvolcite] = ACTIONS(12409), + [anon_sym_BSLASHPvolcite] = ACTIONS(12409), + [anon_sym_BSLASHfvolcite] = ACTIONS(12409), + [anon_sym_BSLASHftvolcite] = ACTIONS(12409), + [anon_sym_BSLASHsvolcite] = ACTIONS(12409), + [anon_sym_BSLASHSvolcite] = ACTIONS(12409), + [anon_sym_BSLASHtvolcite] = ACTIONS(12409), + [anon_sym_BSLASHTvolcite] = ACTIONS(12409), + [anon_sym_BSLASHavolcite] = ACTIONS(12409), + [anon_sym_BSLASHAvolcite] = ACTIONS(12409), + [anon_sym_BSLASHnotecite] = ACTIONS(12409), + [anon_sym_BSLASHpnotecite] = ACTIONS(12409), + [anon_sym_BSLASHPnotecite] = ACTIONS(12409), + [anon_sym_BSLASHfnotecite] = ACTIONS(12409), + [anon_sym_BSLASHusepackage] = ACTIONS(12409), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12409), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12409), + [anon_sym_BSLASHinclude] = ACTIONS(12409), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12409), + [anon_sym_BSLASHinput] = ACTIONS(12409), + [anon_sym_BSLASHsubfile] = ACTIONS(12409), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12409), + [anon_sym_BSLASHbibliography] = ACTIONS(12409), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12409), + [anon_sym_BSLASHincludesvg] = ACTIONS(12409), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12409), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12409), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12409), + [anon_sym_BSLASHimport] = ACTIONS(12409), + [anon_sym_BSLASHsubimport] = ACTIONS(12409), + [anon_sym_BSLASHinputfrom] = ACTIONS(12409), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12409), + [anon_sym_BSLASHincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12409), + [anon_sym_BSLASHlabel] = ACTIONS(12409), + [anon_sym_BSLASHref] = ACTIONS(12409), + [anon_sym_BSLASHvref] = ACTIONS(12409), + [anon_sym_BSLASHVref] = ACTIONS(12409), + [anon_sym_BSLASHautoref] = ACTIONS(12409), + [anon_sym_BSLASHpageref] = ACTIONS(12409), + [anon_sym_BSLASHcref] = ACTIONS(12409), + [anon_sym_BSLASHCref] = ACTIONS(12409), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnameCref] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12409), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12409), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12409), + [anon_sym_BSLASHlabelcref] = ACTIONS(12409), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12409), + [anon_sym_BSLASHeqref] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange] = ACTIONS(12409), + [anon_sym_BSLASHCrefrange] = ACTIONS(12409), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewlabel] = ACTIONS(12409), + [anon_sym_BSLASHnewcommand] = ACTIONS(12409), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12409), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12407), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12409), + [anon_sym_BSLASHgls] = ACTIONS(12409), + [anon_sym_BSLASHGls] = ACTIONS(12409), + [anon_sym_BSLASHGLS] = ACTIONS(12409), + [anon_sym_BSLASHglspl] = ACTIONS(12409), + [anon_sym_BSLASHGlspl] = ACTIONS(12409), + [anon_sym_BSLASHGLSpl] = ACTIONS(12409), + [anon_sym_BSLASHglsdisp] = ACTIONS(12409), + [anon_sym_BSLASHglslink] = ACTIONS(12409), + [anon_sym_BSLASHglstext] = ACTIONS(12409), + [anon_sym_BSLASHGlstext] = ACTIONS(12409), + [anon_sym_BSLASHGLStext] = ACTIONS(12409), + [anon_sym_BSLASHglsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12409), + [anon_sym_BSLASHglsplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSplural] = ACTIONS(12409), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12409), + [anon_sym_BSLASHglsname] = ACTIONS(12409), + [anon_sym_BSLASHGlsname] = ACTIONS(12409), + [anon_sym_BSLASHGLSname] = ACTIONS(12409), + [anon_sym_BSLASHglssymbol] = ACTIONS(12409), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12409), + [anon_sym_BSLASHglsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12409), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12409), + [anon_sym_BSLASHglsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12409), + [anon_sym_BSLASHglsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12409), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12409), + [anon_sym_BSLASHglsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12409), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12409), + [anon_sym_BSLASHglsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12409), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12409), + [anon_sym_BSLASHnewacronym] = ACTIONS(12409), + [anon_sym_BSLASHacrshort] = ACTIONS(12409), + [anon_sym_BSLASHAcrshort] = ACTIONS(12409), + [anon_sym_BSLASHACRshort] = ACTIONS(12409), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12409), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12409), + [anon_sym_BSLASHacrlong] = ACTIONS(12409), + [anon_sym_BSLASHAcrlong] = ACTIONS(12409), + [anon_sym_BSLASHACRlong] = ACTIONS(12409), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12409), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12409), + [anon_sym_BSLASHacrfull] = ACTIONS(12409), + [anon_sym_BSLASHAcrfull] = ACTIONS(12409), + [anon_sym_BSLASHACRfull] = ACTIONS(12409), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12409), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12409), + [anon_sym_BSLASHacs] = ACTIONS(12409), + [anon_sym_BSLASHAcs] = ACTIONS(12409), + [anon_sym_BSLASHacsp] = ACTIONS(12409), + [anon_sym_BSLASHAcsp] = ACTIONS(12409), + [anon_sym_BSLASHacl] = ACTIONS(12409), + [anon_sym_BSLASHAcl] = ACTIONS(12409), + [anon_sym_BSLASHaclp] = ACTIONS(12409), + [anon_sym_BSLASHAclp] = ACTIONS(12409), + [anon_sym_BSLASHacf] = ACTIONS(12409), + [anon_sym_BSLASHAcf] = ACTIONS(12409), + [anon_sym_BSLASHacfp] = ACTIONS(12409), + [anon_sym_BSLASHAcfp] = ACTIONS(12409), + [anon_sym_BSLASHac] = ACTIONS(12409), + [anon_sym_BSLASHAc] = ACTIONS(12409), + [anon_sym_BSLASHacp] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12409), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12409), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12409), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12409), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12409), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12409), + [anon_sym_BSLASHcolor] = ACTIONS(12409), + [anon_sym_BSLASHcolorbox] = ACTIONS(12409), + [anon_sym_BSLASHtextcolor] = ACTIONS(12409), + [anon_sym_BSLASHpagecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12409), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12409), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12409), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12409), + }, + [1944] = { + [sym_generic_command_name] = ACTIONS(12413), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12411), + [anon_sym_RBRACK] = ACTIONS(12411), + [anon_sym_LBRACE] = ACTIONS(12411), + [anon_sym_RBRACE] = ACTIONS(12411), + [anon_sym_LPAREN] = ACTIONS(12411), + [anon_sym_COMMA] = ACTIONS(12411), + [anon_sym_EQ] = ACTIONS(12411), + [sym_word] = ACTIONS(12411), + [sym_param] = ACTIONS(12411), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12411), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12411), + [anon_sym_DOLLAR] = ACTIONS(12413), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12411), + [anon_sym_BSLASHbegin] = ACTIONS(12413), + [anon_sym_BSLASHcaption] = ACTIONS(12413), + [anon_sym_BSLASHcite] = ACTIONS(12413), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCite] = ACTIONS(12413), + [anon_sym_BSLASHnocite] = ACTIONS(12413), + [anon_sym_BSLASHcitet] = ACTIONS(12413), + [anon_sym_BSLASHcitep] = ACTIONS(12413), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteauthor] = ACTIONS(12413), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12413), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitetitle] = ACTIONS(12413), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteyear] = ACTIONS(12413), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12411), + [anon_sym_BSLASHcitedate] = ACTIONS(12413), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12411), + [anon_sym_BSLASHciteurl] = ACTIONS(12413), + [anon_sym_BSLASHfullcite] = ACTIONS(12413), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12413), + [anon_sym_BSLASHcitealt] = ACTIONS(12413), + [anon_sym_BSLASHcitealp] = ACTIONS(12413), + [anon_sym_BSLASHcitetext] = ACTIONS(12413), + [anon_sym_BSLASHparencite] = ACTIONS(12413), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHParencite] = ACTIONS(12413), + [anon_sym_BSLASHfootcite] = ACTIONS(12413), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12413), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12413), + [anon_sym_BSLASHtextcite] = ACTIONS(12413), + [anon_sym_BSLASHTextcite] = ACTIONS(12413), + [anon_sym_BSLASHsmartcite] = ACTIONS(12413), + [anon_sym_BSLASHSmartcite] = ACTIONS(12413), + [anon_sym_BSLASHsupercite] = ACTIONS(12413), + [anon_sym_BSLASHautocite] = ACTIONS(12413), + [anon_sym_BSLASHAutocite] = ACTIONS(12413), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12411), + [anon_sym_BSLASHvolcite] = ACTIONS(12413), + [anon_sym_BSLASHVolcite] = ACTIONS(12413), + [anon_sym_BSLASHpvolcite] = ACTIONS(12413), + [anon_sym_BSLASHPvolcite] = ACTIONS(12413), + [anon_sym_BSLASHfvolcite] = ACTIONS(12413), + [anon_sym_BSLASHftvolcite] = ACTIONS(12413), + [anon_sym_BSLASHsvolcite] = ACTIONS(12413), + [anon_sym_BSLASHSvolcite] = ACTIONS(12413), + [anon_sym_BSLASHtvolcite] = ACTIONS(12413), + [anon_sym_BSLASHTvolcite] = ACTIONS(12413), + [anon_sym_BSLASHavolcite] = ACTIONS(12413), + [anon_sym_BSLASHAvolcite] = ACTIONS(12413), + [anon_sym_BSLASHnotecite] = ACTIONS(12413), + [anon_sym_BSLASHpnotecite] = ACTIONS(12413), + [anon_sym_BSLASHPnotecite] = ACTIONS(12413), + [anon_sym_BSLASHfnotecite] = ACTIONS(12413), + [anon_sym_BSLASHusepackage] = ACTIONS(12413), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12413), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12413), + [anon_sym_BSLASHinclude] = ACTIONS(12413), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12413), + [anon_sym_BSLASHinput] = ACTIONS(12413), + [anon_sym_BSLASHsubfile] = ACTIONS(12413), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12413), + [anon_sym_BSLASHbibliography] = ACTIONS(12413), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12413), + [anon_sym_BSLASHincludesvg] = ACTIONS(12413), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12413), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12413), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12413), + [anon_sym_BSLASHimport] = ACTIONS(12413), + [anon_sym_BSLASHsubimport] = ACTIONS(12413), + [anon_sym_BSLASHinputfrom] = ACTIONS(12413), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12413), + [anon_sym_BSLASHincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12413), + [anon_sym_BSLASHlabel] = ACTIONS(12413), + [anon_sym_BSLASHref] = ACTIONS(12413), + [anon_sym_BSLASHvref] = ACTIONS(12413), + [anon_sym_BSLASHVref] = ACTIONS(12413), + [anon_sym_BSLASHautoref] = ACTIONS(12413), + [anon_sym_BSLASHpageref] = ACTIONS(12413), + [anon_sym_BSLASHcref] = ACTIONS(12413), + [anon_sym_BSLASHCref] = ACTIONS(12413), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnameCref] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12413), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12413), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12413), + [anon_sym_BSLASHlabelcref] = ACTIONS(12413), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12413), + [anon_sym_BSLASHeqref] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange] = ACTIONS(12413), + [anon_sym_BSLASHCrefrange] = ACTIONS(12413), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewlabel] = ACTIONS(12413), + [anon_sym_BSLASHnewcommand] = ACTIONS(12413), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12413), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12413), + [anon_sym_BSLASHgls] = ACTIONS(12413), + [anon_sym_BSLASHGls] = ACTIONS(12413), + [anon_sym_BSLASHGLS] = ACTIONS(12413), + [anon_sym_BSLASHglspl] = ACTIONS(12413), + [anon_sym_BSLASHGlspl] = ACTIONS(12413), + [anon_sym_BSLASHGLSpl] = ACTIONS(12413), + [anon_sym_BSLASHglsdisp] = ACTIONS(12413), + [anon_sym_BSLASHglslink] = ACTIONS(12413), + [anon_sym_BSLASHglstext] = ACTIONS(12413), + [anon_sym_BSLASHGlstext] = ACTIONS(12413), + [anon_sym_BSLASHGLStext] = ACTIONS(12413), + [anon_sym_BSLASHglsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12413), + [anon_sym_BSLASHglsplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSplural] = ACTIONS(12413), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12413), + [anon_sym_BSLASHglsname] = ACTIONS(12413), + [anon_sym_BSLASHGlsname] = ACTIONS(12413), + [anon_sym_BSLASHGLSname] = ACTIONS(12413), + [anon_sym_BSLASHglssymbol] = ACTIONS(12413), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12413), + [anon_sym_BSLASHglsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12413), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12413), + [anon_sym_BSLASHglsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12413), + [anon_sym_BSLASHglsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12413), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12413), + [anon_sym_BSLASHglsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12413), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12413), + [anon_sym_BSLASHglsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12413), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12413), + [anon_sym_BSLASHnewacronym] = ACTIONS(12413), + [anon_sym_BSLASHacrshort] = ACTIONS(12413), + [anon_sym_BSLASHAcrshort] = ACTIONS(12413), + [anon_sym_BSLASHACRshort] = ACTIONS(12413), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12413), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12413), + [anon_sym_BSLASHacrlong] = ACTIONS(12413), + [anon_sym_BSLASHAcrlong] = ACTIONS(12413), + [anon_sym_BSLASHACRlong] = ACTIONS(12413), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12413), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12413), + [anon_sym_BSLASHacrfull] = ACTIONS(12413), + [anon_sym_BSLASHAcrfull] = ACTIONS(12413), + [anon_sym_BSLASHACRfull] = ACTIONS(12413), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12413), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12413), + [anon_sym_BSLASHacs] = ACTIONS(12413), + [anon_sym_BSLASHAcs] = ACTIONS(12413), + [anon_sym_BSLASHacsp] = ACTIONS(12413), + [anon_sym_BSLASHAcsp] = ACTIONS(12413), + [anon_sym_BSLASHacl] = ACTIONS(12413), + [anon_sym_BSLASHAcl] = ACTIONS(12413), + [anon_sym_BSLASHaclp] = ACTIONS(12413), + [anon_sym_BSLASHAclp] = ACTIONS(12413), + [anon_sym_BSLASHacf] = ACTIONS(12413), + [anon_sym_BSLASHAcf] = ACTIONS(12413), + [anon_sym_BSLASHacfp] = ACTIONS(12413), + [anon_sym_BSLASHAcfp] = ACTIONS(12413), + [anon_sym_BSLASHac] = ACTIONS(12413), + [anon_sym_BSLASHAc] = ACTIONS(12413), + [anon_sym_BSLASHacp] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12413), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12413), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12413), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12413), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12413), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12413), + [anon_sym_BSLASHcolor] = ACTIONS(12413), + [anon_sym_BSLASHcolorbox] = ACTIONS(12413), + [anon_sym_BSLASHtextcolor] = ACTIONS(12413), + [anon_sym_BSLASHpagecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12413), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12413), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12413), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12413), + }, + [1945] = { + [sym_generic_command_name] = ACTIONS(12421), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12419), + [anon_sym_RBRACK] = ACTIONS(12419), + [anon_sym_LBRACE] = ACTIONS(12419), + [anon_sym_RBRACE] = ACTIONS(12419), + [anon_sym_LPAREN] = ACTIONS(12419), + [anon_sym_COMMA] = ACTIONS(12419), + [anon_sym_EQ] = ACTIONS(12419), + [sym_word] = ACTIONS(12419), + [sym_param] = ACTIONS(12419), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12419), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12419), + [anon_sym_DOLLAR] = ACTIONS(12421), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12419), + [anon_sym_BSLASHbegin] = ACTIONS(12421), + [anon_sym_BSLASHcaption] = ACTIONS(12421), + [anon_sym_BSLASHcite] = ACTIONS(12421), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCite] = ACTIONS(12421), + [anon_sym_BSLASHnocite] = ACTIONS(12421), + [anon_sym_BSLASHcitet] = ACTIONS(12421), + [anon_sym_BSLASHcitep] = ACTIONS(12421), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteauthor] = ACTIONS(12421), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12421), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitetitle] = ACTIONS(12421), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteyear] = ACTIONS(12421), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12419), + [anon_sym_BSLASHcitedate] = ACTIONS(12421), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12419), + [anon_sym_BSLASHciteurl] = ACTIONS(12421), + [anon_sym_BSLASHfullcite] = ACTIONS(12421), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12421), + [anon_sym_BSLASHcitealt] = ACTIONS(12421), + [anon_sym_BSLASHcitealp] = ACTIONS(12421), + [anon_sym_BSLASHcitetext] = ACTIONS(12421), + [anon_sym_BSLASHparencite] = ACTIONS(12421), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHParencite] = ACTIONS(12421), + [anon_sym_BSLASHfootcite] = ACTIONS(12421), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12421), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12421), + [anon_sym_BSLASHtextcite] = ACTIONS(12421), + [anon_sym_BSLASHTextcite] = ACTIONS(12421), + [anon_sym_BSLASHsmartcite] = ACTIONS(12421), + [anon_sym_BSLASHSmartcite] = ACTIONS(12421), + [anon_sym_BSLASHsupercite] = ACTIONS(12421), + [anon_sym_BSLASHautocite] = ACTIONS(12421), + [anon_sym_BSLASHAutocite] = ACTIONS(12421), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12419), + [anon_sym_BSLASHvolcite] = ACTIONS(12421), + [anon_sym_BSLASHVolcite] = ACTIONS(12421), + [anon_sym_BSLASHpvolcite] = ACTIONS(12421), + [anon_sym_BSLASHPvolcite] = ACTIONS(12421), + [anon_sym_BSLASHfvolcite] = ACTIONS(12421), + [anon_sym_BSLASHftvolcite] = ACTIONS(12421), + [anon_sym_BSLASHsvolcite] = ACTIONS(12421), + [anon_sym_BSLASHSvolcite] = ACTIONS(12421), + [anon_sym_BSLASHtvolcite] = ACTIONS(12421), + [anon_sym_BSLASHTvolcite] = ACTIONS(12421), + [anon_sym_BSLASHavolcite] = ACTIONS(12421), + [anon_sym_BSLASHAvolcite] = ACTIONS(12421), + [anon_sym_BSLASHnotecite] = ACTIONS(12421), + [anon_sym_BSLASHpnotecite] = ACTIONS(12421), + [anon_sym_BSLASHPnotecite] = ACTIONS(12421), + [anon_sym_BSLASHfnotecite] = ACTIONS(12421), + [anon_sym_BSLASHusepackage] = ACTIONS(12421), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12421), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12421), + [anon_sym_BSLASHinclude] = ACTIONS(12421), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12421), + [anon_sym_BSLASHinput] = ACTIONS(12421), + [anon_sym_BSLASHsubfile] = ACTIONS(12421), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12421), + [anon_sym_BSLASHbibliography] = ACTIONS(12421), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12421), + [anon_sym_BSLASHincludesvg] = ACTIONS(12421), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12421), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12421), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12421), + [anon_sym_BSLASHimport] = ACTIONS(12421), + [anon_sym_BSLASHsubimport] = ACTIONS(12421), + [anon_sym_BSLASHinputfrom] = ACTIONS(12421), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12421), + [anon_sym_BSLASHincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12421), + [anon_sym_BSLASHlabel] = ACTIONS(12421), + [anon_sym_BSLASHref] = ACTIONS(12421), + [anon_sym_BSLASHvref] = ACTIONS(12421), + [anon_sym_BSLASHVref] = ACTIONS(12421), + [anon_sym_BSLASHautoref] = ACTIONS(12421), + [anon_sym_BSLASHpageref] = ACTIONS(12421), + [anon_sym_BSLASHcref] = ACTIONS(12421), + [anon_sym_BSLASHCref] = ACTIONS(12421), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnameCref] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12421), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12421), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12421), + [anon_sym_BSLASHlabelcref] = ACTIONS(12421), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12421), + [anon_sym_BSLASHeqref] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange] = ACTIONS(12421), + [anon_sym_BSLASHCrefrange] = ACTIONS(12421), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewlabel] = ACTIONS(12421), + [anon_sym_BSLASHnewcommand] = ACTIONS(12421), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12421), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12419), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12421), + [anon_sym_BSLASHgls] = ACTIONS(12421), + [anon_sym_BSLASHGls] = ACTIONS(12421), + [anon_sym_BSLASHGLS] = ACTIONS(12421), + [anon_sym_BSLASHglspl] = ACTIONS(12421), + [anon_sym_BSLASHGlspl] = ACTIONS(12421), + [anon_sym_BSLASHGLSpl] = ACTIONS(12421), + [anon_sym_BSLASHglsdisp] = ACTIONS(12421), + [anon_sym_BSLASHglslink] = ACTIONS(12421), + [anon_sym_BSLASHglstext] = ACTIONS(12421), + [anon_sym_BSLASHGlstext] = ACTIONS(12421), + [anon_sym_BSLASHGLStext] = ACTIONS(12421), + [anon_sym_BSLASHglsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12421), + [anon_sym_BSLASHglsplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSplural] = ACTIONS(12421), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12421), + [anon_sym_BSLASHglsname] = ACTIONS(12421), + [anon_sym_BSLASHGlsname] = ACTIONS(12421), + [anon_sym_BSLASHGLSname] = ACTIONS(12421), + [anon_sym_BSLASHglssymbol] = ACTIONS(12421), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12421), + [anon_sym_BSLASHglsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12421), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12421), + [anon_sym_BSLASHglsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12421), + [anon_sym_BSLASHglsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12421), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12421), + [anon_sym_BSLASHglsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12421), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12421), + [anon_sym_BSLASHglsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12421), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12421), + [anon_sym_BSLASHnewacronym] = ACTIONS(12421), + [anon_sym_BSLASHacrshort] = ACTIONS(12421), + [anon_sym_BSLASHAcrshort] = ACTIONS(12421), + [anon_sym_BSLASHACRshort] = ACTIONS(12421), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12421), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12421), + [anon_sym_BSLASHacrlong] = ACTIONS(12421), + [anon_sym_BSLASHAcrlong] = ACTIONS(12421), + [anon_sym_BSLASHACRlong] = ACTIONS(12421), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12421), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12421), + [anon_sym_BSLASHacrfull] = ACTIONS(12421), + [anon_sym_BSLASHAcrfull] = ACTIONS(12421), + [anon_sym_BSLASHACRfull] = ACTIONS(12421), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12421), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12421), + [anon_sym_BSLASHacs] = ACTIONS(12421), + [anon_sym_BSLASHAcs] = ACTIONS(12421), + [anon_sym_BSLASHacsp] = ACTIONS(12421), + [anon_sym_BSLASHAcsp] = ACTIONS(12421), + [anon_sym_BSLASHacl] = ACTIONS(12421), + [anon_sym_BSLASHAcl] = ACTIONS(12421), + [anon_sym_BSLASHaclp] = ACTIONS(12421), + [anon_sym_BSLASHAclp] = ACTIONS(12421), + [anon_sym_BSLASHacf] = ACTIONS(12421), + [anon_sym_BSLASHAcf] = ACTIONS(12421), + [anon_sym_BSLASHacfp] = ACTIONS(12421), + [anon_sym_BSLASHAcfp] = ACTIONS(12421), + [anon_sym_BSLASHac] = ACTIONS(12421), + [anon_sym_BSLASHAc] = ACTIONS(12421), + [anon_sym_BSLASHacp] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12421), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12421), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12421), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12421), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12421), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12421), + [anon_sym_BSLASHcolor] = ACTIONS(12421), + [anon_sym_BSLASHcolorbox] = ACTIONS(12421), + [anon_sym_BSLASHtextcolor] = ACTIONS(12421), + [anon_sym_BSLASHpagecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12421), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12421), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12421), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12421), + }, + [1946] = { + [sym_generic_command_name] = ACTIONS(12389), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12387), + [anon_sym_RBRACK] = ACTIONS(12387), + [anon_sym_LBRACE] = ACTIONS(12387), + [anon_sym_RBRACE] = ACTIONS(12387), + [anon_sym_LPAREN] = ACTIONS(12387), + [anon_sym_COMMA] = ACTIONS(12387), + [anon_sym_EQ] = ACTIONS(12387), + [sym_word] = ACTIONS(12387), + [sym_param] = ACTIONS(12387), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12387), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12387), + [anon_sym_DOLLAR] = ACTIONS(12389), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12387), + [anon_sym_BSLASHbegin] = ACTIONS(12389), + [anon_sym_BSLASHcaption] = ACTIONS(12389), + [anon_sym_BSLASHcite] = ACTIONS(12389), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCite] = ACTIONS(12389), + [anon_sym_BSLASHnocite] = ACTIONS(12389), + [anon_sym_BSLASHcitet] = ACTIONS(12389), + [anon_sym_BSLASHcitep] = ACTIONS(12389), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteauthor] = ACTIONS(12389), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12389), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitetitle] = ACTIONS(12389), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteyear] = ACTIONS(12389), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12387), + [anon_sym_BSLASHcitedate] = ACTIONS(12389), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12387), + [anon_sym_BSLASHciteurl] = ACTIONS(12389), + [anon_sym_BSLASHfullcite] = ACTIONS(12389), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12389), + [anon_sym_BSLASHcitealt] = ACTIONS(12389), + [anon_sym_BSLASHcitealp] = ACTIONS(12389), + [anon_sym_BSLASHcitetext] = ACTIONS(12389), + [anon_sym_BSLASHparencite] = ACTIONS(12389), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHParencite] = ACTIONS(12389), + [anon_sym_BSLASHfootcite] = ACTIONS(12389), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12389), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12389), + [anon_sym_BSLASHtextcite] = ACTIONS(12389), + [anon_sym_BSLASHTextcite] = ACTIONS(12389), + [anon_sym_BSLASHsmartcite] = ACTIONS(12389), + [anon_sym_BSLASHSmartcite] = ACTIONS(12389), + [anon_sym_BSLASHsupercite] = ACTIONS(12389), + [anon_sym_BSLASHautocite] = ACTIONS(12389), + [anon_sym_BSLASHAutocite] = ACTIONS(12389), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12387), + [anon_sym_BSLASHvolcite] = ACTIONS(12389), + [anon_sym_BSLASHVolcite] = ACTIONS(12389), + [anon_sym_BSLASHpvolcite] = ACTIONS(12389), + [anon_sym_BSLASHPvolcite] = ACTIONS(12389), + [anon_sym_BSLASHfvolcite] = ACTIONS(12389), + [anon_sym_BSLASHftvolcite] = ACTIONS(12389), + [anon_sym_BSLASHsvolcite] = ACTIONS(12389), + [anon_sym_BSLASHSvolcite] = ACTIONS(12389), + [anon_sym_BSLASHtvolcite] = ACTIONS(12389), + [anon_sym_BSLASHTvolcite] = ACTIONS(12389), + [anon_sym_BSLASHavolcite] = ACTIONS(12389), + [anon_sym_BSLASHAvolcite] = ACTIONS(12389), + [anon_sym_BSLASHnotecite] = ACTIONS(12389), + [anon_sym_BSLASHpnotecite] = ACTIONS(12389), + [anon_sym_BSLASHPnotecite] = ACTIONS(12389), + [anon_sym_BSLASHfnotecite] = ACTIONS(12389), + [anon_sym_BSLASHusepackage] = ACTIONS(12389), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12389), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12389), + [anon_sym_BSLASHinclude] = ACTIONS(12389), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12389), + [anon_sym_BSLASHinput] = ACTIONS(12389), + [anon_sym_BSLASHsubfile] = ACTIONS(12389), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12389), + [anon_sym_BSLASHbibliography] = ACTIONS(12389), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12389), + [anon_sym_BSLASHincludesvg] = ACTIONS(12389), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12389), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12389), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12389), + [anon_sym_BSLASHimport] = ACTIONS(12389), + [anon_sym_BSLASHsubimport] = ACTIONS(12389), + [anon_sym_BSLASHinputfrom] = ACTIONS(12389), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12389), + [anon_sym_BSLASHincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12389), + [anon_sym_BSLASHlabel] = ACTIONS(12389), + [anon_sym_BSLASHref] = ACTIONS(12389), + [anon_sym_BSLASHvref] = ACTIONS(12389), + [anon_sym_BSLASHVref] = ACTIONS(12389), + [anon_sym_BSLASHautoref] = ACTIONS(12389), + [anon_sym_BSLASHpageref] = ACTIONS(12389), + [anon_sym_BSLASHcref] = ACTIONS(12389), + [anon_sym_BSLASHCref] = ACTIONS(12389), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnameCref] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12389), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12389), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12389), + [anon_sym_BSLASHlabelcref] = ACTIONS(12389), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12389), + [anon_sym_BSLASHeqref] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange] = ACTIONS(12389), + [anon_sym_BSLASHCrefrange] = ACTIONS(12389), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewlabel] = ACTIONS(12389), + [anon_sym_BSLASHnewcommand] = ACTIONS(12389), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12389), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12387), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12389), + [anon_sym_BSLASHgls] = ACTIONS(12389), + [anon_sym_BSLASHGls] = ACTIONS(12389), + [anon_sym_BSLASHGLS] = ACTIONS(12389), + [anon_sym_BSLASHglspl] = ACTIONS(12389), + [anon_sym_BSLASHGlspl] = ACTIONS(12389), + [anon_sym_BSLASHGLSpl] = ACTIONS(12389), + [anon_sym_BSLASHglsdisp] = ACTIONS(12389), + [anon_sym_BSLASHglslink] = ACTIONS(12389), + [anon_sym_BSLASHglstext] = ACTIONS(12389), + [anon_sym_BSLASHGlstext] = ACTIONS(12389), + [anon_sym_BSLASHGLStext] = ACTIONS(12389), + [anon_sym_BSLASHglsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12389), + [anon_sym_BSLASHglsplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSplural] = ACTIONS(12389), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12389), + [anon_sym_BSLASHglsname] = ACTIONS(12389), + [anon_sym_BSLASHGlsname] = ACTIONS(12389), + [anon_sym_BSLASHGLSname] = ACTIONS(12389), + [anon_sym_BSLASHglssymbol] = ACTIONS(12389), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12389), + [anon_sym_BSLASHglsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12389), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12389), + [anon_sym_BSLASHglsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12389), + [anon_sym_BSLASHglsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12389), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12389), + [anon_sym_BSLASHglsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12389), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12389), + [anon_sym_BSLASHglsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12389), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12389), + [anon_sym_BSLASHnewacronym] = ACTIONS(12389), + [anon_sym_BSLASHacrshort] = ACTIONS(12389), + [anon_sym_BSLASHAcrshort] = ACTIONS(12389), + [anon_sym_BSLASHACRshort] = ACTIONS(12389), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12389), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12389), + [anon_sym_BSLASHacrlong] = ACTIONS(12389), + [anon_sym_BSLASHAcrlong] = ACTIONS(12389), + [anon_sym_BSLASHACRlong] = ACTIONS(12389), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12389), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12389), + [anon_sym_BSLASHacrfull] = ACTIONS(12389), + [anon_sym_BSLASHAcrfull] = ACTIONS(12389), + [anon_sym_BSLASHACRfull] = ACTIONS(12389), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12389), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12389), + [anon_sym_BSLASHacs] = ACTIONS(12389), + [anon_sym_BSLASHAcs] = ACTIONS(12389), + [anon_sym_BSLASHacsp] = ACTIONS(12389), + [anon_sym_BSLASHAcsp] = ACTIONS(12389), + [anon_sym_BSLASHacl] = ACTIONS(12389), + [anon_sym_BSLASHAcl] = ACTIONS(12389), + [anon_sym_BSLASHaclp] = ACTIONS(12389), + [anon_sym_BSLASHAclp] = ACTIONS(12389), + [anon_sym_BSLASHacf] = ACTIONS(12389), + [anon_sym_BSLASHAcf] = ACTIONS(12389), + [anon_sym_BSLASHacfp] = ACTIONS(12389), + [anon_sym_BSLASHAcfp] = ACTIONS(12389), + [anon_sym_BSLASHac] = ACTIONS(12389), + [anon_sym_BSLASHAc] = ACTIONS(12389), + [anon_sym_BSLASHacp] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12389), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12389), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12389), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12389), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12389), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12389), + [anon_sym_BSLASHcolor] = ACTIONS(12389), + [anon_sym_BSLASHcolorbox] = ACTIONS(12389), + [anon_sym_BSLASHtextcolor] = ACTIONS(12389), + [anon_sym_BSLASHpagecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12389), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12389), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12389), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12389), + }, + [1947] = { + [sym_generic_command_name] = ACTIONS(12140), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12138), + [anon_sym_RBRACK] = ACTIONS(12138), + [anon_sym_LBRACE] = ACTIONS(12138), + [anon_sym_RBRACE] = ACTIONS(12138), + [anon_sym_LPAREN] = ACTIONS(12138), + [anon_sym_COMMA] = ACTIONS(12138), + [anon_sym_EQ] = ACTIONS(12138), + [sym_word] = ACTIONS(12138), + [sym_param] = ACTIONS(12138), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12138), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12138), + [anon_sym_DOLLAR] = ACTIONS(12140), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12138), + [anon_sym_BSLASHbegin] = ACTIONS(12140), + [anon_sym_BSLASHcaption] = ACTIONS(12140), + [anon_sym_BSLASHcite] = ACTIONS(12140), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCite] = ACTIONS(12140), + [anon_sym_BSLASHnocite] = ACTIONS(12140), + [anon_sym_BSLASHcitet] = ACTIONS(12140), + [anon_sym_BSLASHcitep] = ACTIONS(12140), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteauthor] = ACTIONS(12140), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12140), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitetitle] = ACTIONS(12140), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteyear] = ACTIONS(12140), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12138), + [anon_sym_BSLASHcitedate] = ACTIONS(12140), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12138), + [anon_sym_BSLASHciteurl] = ACTIONS(12140), + [anon_sym_BSLASHfullcite] = ACTIONS(12140), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12140), + [anon_sym_BSLASHcitealt] = ACTIONS(12140), + [anon_sym_BSLASHcitealp] = ACTIONS(12140), + [anon_sym_BSLASHcitetext] = ACTIONS(12140), + [anon_sym_BSLASHparencite] = ACTIONS(12140), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHParencite] = ACTIONS(12140), + [anon_sym_BSLASHfootcite] = ACTIONS(12140), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12140), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12140), + [anon_sym_BSLASHtextcite] = ACTIONS(12140), + [anon_sym_BSLASHTextcite] = ACTIONS(12140), + [anon_sym_BSLASHsmartcite] = ACTIONS(12140), + [anon_sym_BSLASHSmartcite] = ACTIONS(12140), + [anon_sym_BSLASHsupercite] = ACTIONS(12140), + [anon_sym_BSLASHautocite] = ACTIONS(12140), + [anon_sym_BSLASHAutocite] = ACTIONS(12140), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12138), + [anon_sym_BSLASHvolcite] = ACTIONS(12140), + [anon_sym_BSLASHVolcite] = ACTIONS(12140), + [anon_sym_BSLASHpvolcite] = ACTIONS(12140), + [anon_sym_BSLASHPvolcite] = ACTIONS(12140), + [anon_sym_BSLASHfvolcite] = ACTIONS(12140), + [anon_sym_BSLASHftvolcite] = ACTIONS(12140), + [anon_sym_BSLASHsvolcite] = ACTIONS(12140), + [anon_sym_BSLASHSvolcite] = ACTIONS(12140), + [anon_sym_BSLASHtvolcite] = ACTIONS(12140), + [anon_sym_BSLASHTvolcite] = ACTIONS(12140), + [anon_sym_BSLASHavolcite] = ACTIONS(12140), + [anon_sym_BSLASHAvolcite] = ACTIONS(12140), + [anon_sym_BSLASHnotecite] = ACTIONS(12140), + [anon_sym_BSLASHpnotecite] = ACTIONS(12140), + [anon_sym_BSLASHPnotecite] = ACTIONS(12140), + [anon_sym_BSLASHfnotecite] = ACTIONS(12140), + [anon_sym_BSLASHusepackage] = ACTIONS(12140), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12140), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12140), + [anon_sym_BSLASHinclude] = ACTIONS(12140), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12140), + [anon_sym_BSLASHinput] = ACTIONS(12140), + [anon_sym_BSLASHsubfile] = ACTIONS(12140), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12140), + [anon_sym_BSLASHbibliography] = ACTIONS(12140), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12140), + [anon_sym_BSLASHincludesvg] = ACTIONS(12140), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12140), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12140), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12140), + [anon_sym_BSLASHimport] = ACTIONS(12140), + [anon_sym_BSLASHsubimport] = ACTIONS(12140), + [anon_sym_BSLASHinputfrom] = ACTIONS(12140), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12140), + [anon_sym_BSLASHincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12140), + [anon_sym_BSLASHlabel] = ACTIONS(12140), + [anon_sym_BSLASHref] = ACTIONS(12140), + [anon_sym_BSLASHvref] = ACTIONS(12140), + [anon_sym_BSLASHVref] = ACTIONS(12140), + [anon_sym_BSLASHautoref] = ACTIONS(12140), + [anon_sym_BSLASHpageref] = ACTIONS(12140), + [anon_sym_BSLASHcref] = ACTIONS(12140), + [anon_sym_BSLASHCref] = ACTIONS(12140), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnameCref] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12140), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12140), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12140), + [anon_sym_BSLASHlabelcref] = ACTIONS(12140), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12140), + [anon_sym_BSLASHeqref] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange] = ACTIONS(12140), + [anon_sym_BSLASHCrefrange] = ACTIONS(12140), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewlabel] = ACTIONS(12140), + [anon_sym_BSLASHnewcommand] = ACTIONS(12140), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12140), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12138), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12140), + [anon_sym_BSLASHgls] = ACTIONS(12140), + [anon_sym_BSLASHGls] = ACTIONS(12140), + [anon_sym_BSLASHGLS] = ACTIONS(12140), + [anon_sym_BSLASHglspl] = ACTIONS(12140), + [anon_sym_BSLASHGlspl] = ACTIONS(12140), + [anon_sym_BSLASHGLSpl] = ACTIONS(12140), + [anon_sym_BSLASHglsdisp] = ACTIONS(12140), + [anon_sym_BSLASHglslink] = ACTIONS(12140), + [anon_sym_BSLASHglstext] = ACTIONS(12140), + [anon_sym_BSLASHGlstext] = ACTIONS(12140), + [anon_sym_BSLASHGLStext] = ACTIONS(12140), + [anon_sym_BSLASHglsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12140), + [anon_sym_BSLASHglsplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSplural] = ACTIONS(12140), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12140), + [anon_sym_BSLASHglsname] = ACTIONS(12140), + [anon_sym_BSLASHGlsname] = ACTIONS(12140), + [anon_sym_BSLASHGLSname] = ACTIONS(12140), + [anon_sym_BSLASHglssymbol] = ACTIONS(12140), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12140), + [anon_sym_BSLASHglsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12140), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12140), + [anon_sym_BSLASHglsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12140), + [anon_sym_BSLASHglsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12140), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12140), + [anon_sym_BSLASHglsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12140), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12140), + [anon_sym_BSLASHglsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12140), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12140), + [anon_sym_BSLASHnewacronym] = ACTIONS(12140), + [anon_sym_BSLASHacrshort] = ACTIONS(12140), + [anon_sym_BSLASHAcrshort] = ACTIONS(12140), + [anon_sym_BSLASHACRshort] = ACTIONS(12140), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12140), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12140), + [anon_sym_BSLASHacrlong] = ACTIONS(12140), + [anon_sym_BSLASHAcrlong] = ACTIONS(12140), + [anon_sym_BSLASHACRlong] = ACTIONS(12140), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12140), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12140), + [anon_sym_BSLASHacrfull] = ACTIONS(12140), + [anon_sym_BSLASHAcrfull] = ACTIONS(12140), + [anon_sym_BSLASHACRfull] = ACTIONS(12140), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12140), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12140), + [anon_sym_BSLASHacs] = ACTIONS(12140), + [anon_sym_BSLASHAcs] = ACTIONS(12140), + [anon_sym_BSLASHacsp] = ACTIONS(12140), + [anon_sym_BSLASHAcsp] = ACTIONS(12140), + [anon_sym_BSLASHacl] = ACTIONS(12140), + [anon_sym_BSLASHAcl] = ACTIONS(12140), + [anon_sym_BSLASHaclp] = ACTIONS(12140), + [anon_sym_BSLASHAclp] = ACTIONS(12140), + [anon_sym_BSLASHacf] = ACTIONS(12140), + [anon_sym_BSLASHAcf] = ACTIONS(12140), + [anon_sym_BSLASHacfp] = ACTIONS(12140), + [anon_sym_BSLASHAcfp] = ACTIONS(12140), + [anon_sym_BSLASHac] = ACTIONS(12140), + [anon_sym_BSLASHAc] = ACTIONS(12140), + [anon_sym_BSLASHacp] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12140), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12140), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12140), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12140), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12140), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12140), + [anon_sym_BSLASHcolor] = ACTIONS(12140), + [anon_sym_BSLASHcolorbox] = ACTIONS(12140), + [anon_sym_BSLASHtextcolor] = ACTIONS(12140), + [anon_sym_BSLASHpagecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12140), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12140), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12140), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12140), + }, + [1948] = { + [sym_generic_command_name] = ACTIONS(12417), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12415), + [anon_sym_RBRACK] = ACTIONS(12415), + [anon_sym_LBRACE] = ACTIONS(12415), + [anon_sym_RBRACE] = ACTIONS(12415), + [anon_sym_LPAREN] = ACTIONS(12415), + [anon_sym_COMMA] = ACTIONS(12415), + [anon_sym_EQ] = ACTIONS(12415), + [sym_word] = ACTIONS(12415), + [sym_param] = ACTIONS(12415), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12415), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12415), + [anon_sym_DOLLAR] = ACTIONS(12417), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12415), + [anon_sym_BSLASHbegin] = ACTIONS(12417), + [anon_sym_BSLASHcaption] = ACTIONS(12417), + [anon_sym_BSLASHcite] = ACTIONS(12417), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCite] = ACTIONS(12417), + [anon_sym_BSLASHnocite] = ACTIONS(12417), + [anon_sym_BSLASHcitet] = ACTIONS(12417), + [anon_sym_BSLASHcitep] = ACTIONS(12417), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteauthor] = ACTIONS(12417), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12417), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitetitle] = ACTIONS(12417), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteyear] = ACTIONS(12417), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12415), + [anon_sym_BSLASHcitedate] = ACTIONS(12417), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12415), + [anon_sym_BSLASHciteurl] = ACTIONS(12417), + [anon_sym_BSLASHfullcite] = ACTIONS(12417), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12417), + [anon_sym_BSLASHcitealt] = ACTIONS(12417), + [anon_sym_BSLASHcitealp] = ACTIONS(12417), + [anon_sym_BSLASHcitetext] = ACTIONS(12417), + [anon_sym_BSLASHparencite] = ACTIONS(12417), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHParencite] = ACTIONS(12417), + [anon_sym_BSLASHfootcite] = ACTIONS(12417), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12417), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12417), + [anon_sym_BSLASHtextcite] = ACTIONS(12417), + [anon_sym_BSLASHTextcite] = ACTIONS(12417), + [anon_sym_BSLASHsmartcite] = ACTIONS(12417), + [anon_sym_BSLASHSmartcite] = ACTIONS(12417), + [anon_sym_BSLASHsupercite] = ACTIONS(12417), + [anon_sym_BSLASHautocite] = ACTIONS(12417), + [anon_sym_BSLASHAutocite] = ACTIONS(12417), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12415), + [anon_sym_BSLASHvolcite] = ACTIONS(12417), + [anon_sym_BSLASHVolcite] = ACTIONS(12417), + [anon_sym_BSLASHpvolcite] = ACTIONS(12417), + [anon_sym_BSLASHPvolcite] = ACTIONS(12417), + [anon_sym_BSLASHfvolcite] = ACTIONS(12417), + [anon_sym_BSLASHftvolcite] = ACTIONS(12417), + [anon_sym_BSLASHsvolcite] = ACTIONS(12417), + [anon_sym_BSLASHSvolcite] = ACTIONS(12417), + [anon_sym_BSLASHtvolcite] = ACTIONS(12417), + [anon_sym_BSLASHTvolcite] = ACTIONS(12417), + [anon_sym_BSLASHavolcite] = ACTIONS(12417), + [anon_sym_BSLASHAvolcite] = ACTIONS(12417), + [anon_sym_BSLASHnotecite] = ACTIONS(12417), + [anon_sym_BSLASHpnotecite] = ACTIONS(12417), + [anon_sym_BSLASHPnotecite] = ACTIONS(12417), + [anon_sym_BSLASHfnotecite] = ACTIONS(12417), + [anon_sym_BSLASHusepackage] = ACTIONS(12417), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12417), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12417), + [anon_sym_BSLASHinclude] = ACTIONS(12417), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12417), + [anon_sym_BSLASHinput] = ACTIONS(12417), + [anon_sym_BSLASHsubfile] = ACTIONS(12417), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12417), + [anon_sym_BSLASHbibliography] = ACTIONS(12417), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12417), + [anon_sym_BSLASHincludesvg] = ACTIONS(12417), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12417), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12417), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12417), + [anon_sym_BSLASHimport] = ACTIONS(12417), + [anon_sym_BSLASHsubimport] = ACTIONS(12417), + [anon_sym_BSLASHinputfrom] = ACTIONS(12417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12417), + [anon_sym_BSLASHincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12417), + [anon_sym_BSLASHlabel] = ACTIONS(12417), + [anon_sym_BSLASHref] = ACTIONS(12417), + [anon_sym_BSLASHvref] = ACTIONS(12417), + [anon_sym_BSLASHVref] = ACTIONS(12417), + [anon_sym_BSLASHautoref] = ACTIONS(12417), + [anon_sym_BSLASHpageref] = ACTIONS(12417), + [anon_sym_BSLASHcref] = ACTIONS(12417), + [anon_sym_BSLASHCref] = ACTIONS(12417), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnameCref] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12417), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12417), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12417), + [anon_sym_BSLASHlabelcref] = ACTIONS(12417), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12417), + [anon_sym_BSLASHeqref] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange] = ACTIONS(12417), + [anon_sym_BSLASHCrefrange] = ACTIONS(12417), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewlabel] = ACTIONS(12417), + [anon_sym_BSLASHnewcommand] = ACTIONS(12417), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12415), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12417), + [anon_sym_BSLASHgls] = ACTIONS(12417), + [anon_sym_BSLASHGls] = ACTIONS(12417), + [anon_sym_BSLASHGLS] = ACTIONS(12417), + [anon_sym_BSLASHglspl] = ACTIONS(12417), + [anon_sym_BSLASHGlspl] = ACTIONS(12417), + [anon_sym_BSLASHGLSpl] = ACTIONS(12417), + [anon_sym_BSLASHglsdisp] = ACTIONS(12417), + [anon_sym_BSLASHglslink] = ACTIONS(12417), + [anon_sym_BSLASHglstext] = ACTIONS(12417), + [anon_sym_BSLASHGlstext] = ACTIONS(12417), + [anon_sym_BSLASHGLStext] = ACTIONS(12417), + [anon_sym_BSLASHglsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12417), + [anon_sym_BSLASHglsplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSplural] = ACTIONS(12417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12417), + [anon_sym_BSLASHglsname] = ACTIONS(12417), + [anon_sym_BSLASHGlsname] = ACTIONS(12417), + [anon_sym_BSLASHGLSname] = ACTIONS(12417), + [anon_sym_BSLASHglssymbol] = ACTIONS(12417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12417), + [anon_sym_BSLASHglsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12417), + [anon_sym_BSLASHglsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12417), + [anon_sym_BSLASHglsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12417), + [anon_sym_BSLASHglsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12417), + [anon_sym_BSLASHglsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12417), + [anon_sym_BSLASHnewacronym] = ACTIONS(12417), + [anon_sym_BSLASHacrshort] = ACTIONS(12417), + [anon_sym_BSLASHAcrshort] = ACTIONS(12417), + [anon_sym_BSLASHACRshort] = ACTIONS(12417), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12417), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12417), + [anon_sym_BSLASHacrlong] = ACTIONS(12417), + [anon_sym_BSLASHAcrlong] = ACTIONS(12417), + [anon_sym_BSLASHACRlong] = ACTIONS(12417), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12417), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12417), + [anon_sym_BSLASHacrfull] = ACTIONS(12417), + [anon_sym_BSLASHAcrfull] = ACTIONS(12417), + [anon_sym_BSLASHACRfull] = ACTIONS(12417), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12417), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12417), + [anon_sym_BSLASHacs] = ACTIONS(12417), + [anon_sym_BSLASHAcs] = ACTIONS(12417), + [anon_sym_BSLASHacsp] = ACTIONS(12417), + [anon_sym_BSLASHAcsp] = ACTIONS(12417), + [anon_sym_BSLASHacl] = ACTIONS(12417), + [anon_sym_BSLASHAcl] = ACTIONS(12417), + [anon_sym_BSLASHaclp] = ACTIONS(12417), + [anon_sym_BSLASHAclp] = ACTIONS(12417), + [anon_sym_BSLASHacf] = ACTIONS(12417), + [anon_sym_BSLASHAcf] = ACTIONS(12417), + [anon_sym_BSLASHacfp] = ACTIONS(12417), + [anon_sym_BSLASHAcfp] = ACTIONS(12417), + [anon_sym_BSLASHac] = ACTIONS(12417), + [anon_sym_BSLASHAc] = ACTIONS(12417), + [anon_sym_BSLASHacp] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12417), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12417), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12417), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12417), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12417), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12417), + [anon_sym_BSLASHcolor] = ACTIONS(12417), + [anon_sym_BSLASHcolorbox] = ACTIONS(12417), + [anon_sym_BSLASHtextcolor] = ACTIONS(12417), + [anon_sym_BSLASHpagecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12417), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12417), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12417), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12417), + }, + [1949] = { + [sym_generic_command_name] = ACTIONS(12425), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12423), + [anon_sym_RBRACK] = ACTIONS(12423), + [anon_sym_LBRACE] = ACTIONS(12423), + [anon_sym_RBRACE] = ACTIONS(12423), + [anon_sym_LPAREN] = ACTIONS(12423), + [anon_sym_COMMA] = ACTIONS(12423), + [anon_sym_EQ] = ACTIONS(12423), + [sym_word] = ACTIONS(12423), + [sym_param] = ACTIONS(12423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12423), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12423), + [anon_sym_DOLLAR] = ACTIONS(12425), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12423), + [anon_sym_BSLASHbegin] = ACTIONS(12425), + [anon_sym_BSLASHcaption] = ACTIONS(12425), + [anon_sym_BSLASHcite] = ACTIONS(12425), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCite] = ACTIONS(12425), + [anon_sym_BSLASHnocite] = ACTIONS(12425), + [anon_sym_BSLASHcitet] = ACTIONS(12425), + [anon_sym_BSLASHcitep] = ACTIONS(12425), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteauthor] = ACTIONS(12425), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12425), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitetitle] = ACTIONS(12425), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteyear] = ACTIONS(12425), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12423), + [anon_sym_BSLASHcitedate] = ACTIONS(12425), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12423), + [anon_sym_BSLASHciteurl] = ACTIONS(12425), + [anon_sym_BSLASHfullcite] = ACTIONS(12425), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12425), + [anon_sym_BSLASHcitealt] = ACTIONS(12425), + [anon_sym_BSLASHcitealp] = ACTIONS(12425), + [anon_sym_BSLASHcitetext] = ACTIONS(12425), + [anon_sym_BSLASHparencite] = ACTIONS(12425), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHParencite] = ACTIONS(12425), + [anon_sym_BSLASHfootcite] = ACTIONS(12425), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12425), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12425), + [anon_sym_BSLASHtextcite] = ACTIONS(12425), + [anon_sym_BSLASHTextcite] = ACTIONS(12425), + [anon_sym_BSLASHsmartcite] = ACTIONS(12425), + [anon_sym_BSLASHSmartcite] = ACTIONS(12425), + [anon_sym_BSLASHsupercite] = ACTIONS(12425), + [anon_sym_BSLASHautocite] = ACTIONS(12425), + [anon_sym_BSLASHAutocite] = ACTIONS(12425), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12423), + [anon_sym_BSLASHvolcite] = ACTIONS(12425), + [anon_sym_BSLASHVolcite] = ACTIONS(12425), + [anon_sym_BSLASHpvolcite] = ACTIONS(12425), + [anon_sym_BSLASHPvolcite] = ACTIONS(12425), + [anon_sym_BSLASHfvolcite] = ACTIONS(12425), + [anon_sym_BSLASHftvolcite] = ACTIONS(12425), + [anon_sym_BSLASHsvolcite] = ACTIONS(12425), + [anon_sym_BSLASHSvolcite] = ACTIONS(12425), + [anon_sym_BSLASHtvolcite] = ACTIONS(12425), + [anon_sym_BSLASHTvolcite] = ACTIONS(12425), + [anon_sym_BSLASHavolcite] = ACTIONS(12425), + [anon_sym_BSLASHAvolcite] = ACTIONS(12425), + [anon_sym_BSLASHnotecite] = ACTIONS(12425), + [anon_sym_BSLASHpnotecite] = ACTIONS(12425), + [anon_sym_BSLASHPnotecite] = ACTIONS(12425), + [anon_sym_BSLASHfnotecite] = ACTIONS(12425), + [anon_sym_BSLASHusepackage] = ACTIONS(12425), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12425), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12425), + [anon_sym_BSLASHinclude] = ACTIONS(12425), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12425), + [anon_sym_BSLASHinput] = ACTIONS(12425), + [anon_sym_BSLASHsubfile] = ACTIONS(12425), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12425), + [anon_sym_BSLASHbibliography] = ACTIONS(12425), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12425), + [anon_sym_BSLASHincludesvg] = ACTIONS(12425), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12425), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12425), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12425), + [anon_sym_BSLASHimport] = ACTIONS(12425), + [anon_sym_BSLASHsubimport] = ACTIONS(12425), + [anon_sym_BSLASHinputfrom] = ACTIONS(12425), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12425), + [anon_sym_BSLASHincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12425), + [anon_sym_BSLASHlabel] = ACTIONS(12425), + [anon_sym_BSLASHref] = ACTIONS(12425), + [anon_sym_BSLASHvref] = ACTIONS(12425), + [anon_sym_BSLASHVref] = ACTIONS(12425), + [anon_sym_BSLASHautoref] = ACTIONS(12425), + [anon_sym_BSLASHpageref] = ACTIONS(12425), + [anon_sym_BSLASHcref] = ACTIONS(12425), + [anon_sym_BSLASHCref] = ACTIONS(12425), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnameCref] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12425), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12425), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12425), + [anon_sym_BSLASHlabelcref] = ACTIONS(12425), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12425), + [anon_sym_BSLASHeqref] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange] = ACTIONS(12425), + [anon_sym_BSLASHCrefrange] = ACTIONS(12425), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewlabel] = ACTIONS(12425), + [anon_sym_BSLASHnewcommand] = ACTIONS(12425), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12425), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12423), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12425), + [anon_sym_BSLASHgls] = ACTIONS(12425), + [anon_sym_BSLASHGls] = ACTIONS(12425), + [anon_sym_BSLASHGLS] = ACTIONS(12425), + [anon_sym_BSLASHglspl] = ACTIONS(12425), + [anon_sym_BSLASHGlspl] = ACTIONS(12425), + [anon_sym_BSLASHGLSpl] = ACTIONS(12425), + [anon_sym_BSLASHglsdisp] = ACTIONS(12425), + [anon_sym_BSLASHglslink] = ACTIONS(12425), + [anon_sym_BSLASHglstext] = ACTIONS(12425), + [anon_sym_BSLASHGlstext] = ACTIONS(12425), + [anon_sym_BSLASHGLStext] = ACTIONS(12425), + [anon_sym_BSLASHglsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12425), + [anon_sym_BSLASHglsplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSplural] = ACTIONS(12425), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12425), + [anon_sym_BSLASHglsname] = ACTIONS(12425), + [anon_sym_BSLASHGlsname] = ACTIONS(12425), + [anon_sym_BSLASHGLSname] = ACTIONS(12425), + [anon_sym_BSLASHglssymbol] = ACTIONS(12425), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12425), + [anon_sym_BSLASHglsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12425), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12425), + [anon_sym_BSLASHglsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12425), + [anon_sym_BSLASHglsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12425), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12425), + [anon_sym_BSLASHglsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12425), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12425), + [anon_sym_BSLASHglsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12425), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12425), + [anon_sym_BSLASHnewacronym] = ACTIONS(12425), + [anon_sym_BSLASHacrshort] = ACTIONS(12425), + [anon_sym_BSLASHAcrshort] = ACTIONS(12425), + [anon_sym_BSLASHACRshort] = ACTIONS(12425), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12425), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12425), + [anon_sym_BSLASHacrlong] = ACTIONS(12425), + [anon_sym_BSLASHAcrlong] = ACTIONS(12425), + [anon_sym_BSLASHACRlong] = ACTIONS(12425), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12425), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12425), + [anon_sym_BSLASHacrfull] = ACTIONS(12425), + [anon_sym_BSLASHAcrfull] = ACTIONS(12425), + [anon_sym_BSLASHACRfull] = ACTIONS(12425), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12425), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12425), + [anon_sym_BSLASHacs] = ACTIONS(12425), + [anon_sym_BSLASHAcs] = ACTIONS(12425), + [anon_sym_BSLASHacsp] = ACTIONS(12425), + [anon_sym_BSLASHAcsp] = ACTIONS(12425), + [anon_sym_BSLASHacl] = ACTIONS(12425), + [anon_sym_BSLASHAcl] = ACTIONS(12425), + [anon_sym_BSLASHaclp] = ACTIONS(12425), + [anon_sym_BSLASHAclp] = ACTIONS(12425), + [anon_sym_BSLASHacf] = ACTIONS(12425), + [anon_sym_BSLASHAcf] = ACTIONS(12425), + [anon_sym_BSLASHacfp] = ACTIONS(12425), + [anon_sym_BSLASHAcfp] = ACTIONS(12425), + [anon_sym_BSLASHac] = ACTIONS(12425), + [anon_sym_BSLASHAc] = ACTIONS(12425), + [anon_sym_BSLASHacp] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12425), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12425), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12425), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12425), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12425), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12425), + [anon_sym_BSLASHcolor] = ACTIONS(12425), + [anon_sym_BSLASHcolorbox] = ACTIONS(12425), + [anon_sym_BSLASHtextcolor] = ACTIONS(12425), + [anon_sym_BSLASHpagecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12425), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12425), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12425), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12425), + }, + [1950] = { + [sym_generic_command_name] = ACTIONS(12429), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12427), + [anon_sym_RBRACK] = ACTIONS(12427), + [anon_sym_LBRACE] = ACTIONS(12427), + [anon_sym_RBRACE] = ACTIONS(12427), + [anon_sym_LPAREN] = ACTIONS(12427), + [anon_sym_COMMA] = ACTIONS(12427), + [anon_sym_EQ] = ACTIONS(12427), + [sym_word] = ACTIONS(12427), + [sym_param] = ACTIONS(12427), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12427), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12427), + [anon_sym_DOLLAR] = ACTIONS(12429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12427), + [anon_sym_BSLASHbegin] = ACTIONS(12429), + [anon_sym_BSLASHcaption] = ACTIONS(12429), + [anon_sym_BSLASHcite] = ACTIONS(12429), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCite] = ACTIONS(12429), + [anon_sym_BSLASHnocite] = ACTIONS(12429), + [anon_sym_BSLASHcitet] = ACTIONS(12429), + [anon_sym_BSLASHcitep] = ACTIONS(12429), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteauthor] = ACTIONS(12429), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12429), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitetitle] = ACTIONS(12429), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteyear] = ACTIONS(12429), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12427), + [anon_sym_BSLASHcitedate] = ACTIONS(12429), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12427), + [anon_sym_BSLASHciteurl] = ACTIONS(12429), + [anon_sym_BSLASHfullcite] = ACTIONS(12429), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12429), + [anon_sym_BSLASHcitealt] = ACTIONS(12429), + [anon_sym_BSLASHcitealp] = ACTIONS(12429), + [anon_sym_BSLASHcitetext] = ACTIONS(12429), + [anon_sym_BSLASHparencite] = ACTIONS(12429), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHParencite] = ACTIONS(12429), + [anon_sym_BSLASHfootcite] = ACTIONS(12429), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12429), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12429), + [anon_sym_BSLASHtextcite] = ACTIONS(12429), + [anon_sym_BSLASHTextcite] = ACTIONS(12429), + [anon_sym_BSLASHsmartcite] = ACTIONS(12429), + [anon_sym_BSLASHSmartcite] = ACTIONS(12429), + [anon_sym_BSLASHsupercite] = ACTIONS(12429), + [anon_sym_BSLASHautocite] = ACTIONS(12429), + [anon_sym_BSLASHAutocite] = ACTIONS(12429), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12427), + [anon_sym_BSLASHvolcite] = ACTIONS(12429), + [anon_sym_BSLASHVolcite] = ACTIONS(12429), + [anon_sym_BSLASHpvolcite] = ACTIONS(12429), + [anon_sym_BSLASHPvolcite] = ACTIONS(12429), + [anon_sym_BSLASHfvolcite] = ACTIONS(12429), + [anon_sym_BSLASHftvolcite] = ACTIONS(12429), + [anon_sym_BSLASHsvolcite] = ACTIONS(12429), + [anon_sym_BSLASHSvolcite] = ACTIONS(12429), + [anon_sym_BSLASHtvolcite] = ACTIONS(12429), + [anon_sym_BSLASHTvolcite] = ACTIONS(12429), + [anon_sym_BSLASHavolcite] = ACTIONS(12429), + [anon_sym_BSLASHAvolcite] = ACTIONS(12429), + [anon_sym_BSLASHnotecite] = ACTIONS(12429), + [anon_sym_BSLASHpnotecite] = ACTIONS(12429), + [anon_sym_BSLASHPnotecite] = ACTIONS(12429), + [anon_sym_BSLASHfnotecite] = ACTIONS(12429), + [anon_sym_BSLASHusepackage] = ACTIONS(12429), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12429), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12429), + [anon_sym_BSLASHinclude] = ACTIONS(12429), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12429), + [anon_sym_BSLASHinput] = ACTIONS(12429), + [anon_sym_BSLASHsubfile] = ACTIONS(12429), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12429), + [anon_sym_BSLASHbibliography] = ACTIONS(12429), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12429), + [anon_sym_BSLASHincludesvg] = ACTIONS(12429), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12429), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12429), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12429), + [anon_sym_BSLASHimport] = ACTIONS(12429), + [anon_sym_BSLASHsubimport] = ACTIONS(12429), + [anon_sym_BSLASHinputfrom] = ACTIONS(12429), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12429), + [anon_sym_BSLASHincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12429), + [anon_sym_BSLASHlabel] = ACTIONS(12429), + [anon_sym_BSLASHref] = ACTIONS(12429), + [anon_sym_BSLASHvref] = ACTIONS(12429), + [anon_sym_BSLASHVref] = ACTIONS(12429), + [anon_sym_BSLASHautoref] = ACTIONS(12429), + [anon_sym_BSLASHpageref] = ACTIONS(12429), + [anon_sym_BSLASHcref] = ACTIONS(12429), + [anon_sym_BSLASHCref] = ACTIONS(12429), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnameCref] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12429), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12429), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12429), + [anon_sym_BSLASHlabelcref] = ACTIONS(12429), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12429), + [anon_sym_BSLASHeqref] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange] = ACTIONS(12429), + [anon_sym_BSLASHCrefrange] = ACTIONS(12429), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewlabel] = ACTIONS(12429), + [anon_sym_BSLASHnewcommand] = ACTIONS(12429), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12429), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12427), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12429), + [anon_sym_BSLASHgls] = ACTIONS(12429), + [anon_sym_BSLASHGls] = ACTIONS(12429), + [anon_sym_BSLASHGLS] = ACTIONS(12429), + [anon_sym_BSLASHglspl] = ACTIONS(12429), + [anon_sym_BSLASHGlspl] = ACTIONS(12429), + [anon_sym_BSLASHGLSpl] = ACTIONS(12429), + [anon_sym_BSLASHglsdisp] = ACTIONS(12429), + [anon_sym_BSLASHglslink] = ACTIONS(12429), + [anon_sym_BSLASHglstext] = ACTIONS(12429), + [anon_sym_BSLASHGlstext] = ACTIONS(12429), + [anon_sym_BSLASHGLStext] = ACTIONS(12429), + [anon_sym_BSLASHglsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12429), + [anon_sym_BSLASHglsplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSplural] = ACTIONS(12429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12429), + [anon_sym_BSLASHglsname] = ACTIONS(12429), + [anon_sym_BSLASHGlsname] = ACTIONS(12429), + [anon_sym_BSLASHGLSname] = ACTIONS(12429), + [anon_sym_BSLASHglssymbol] = ACTIONS(12429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12429), + [anon_sym_BSLASHglsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12429), + [anon_sym_BSLASHglsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12429), + [anon_sym_BSLASHglsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12429), + [anon_sym_BSLASHglsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12429), + [anon_sym_BSLASHglsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12429), + [anon_sym_BSLASHnewacronym] = ACTIONS(12429), + [anon_sym_BSLASHacrshort] = ACTIONS(12429), + [anon_sym_BSLASHAcrshort] = ACTIONS(12429), + [anon_sym_BSLASHACRshort] = ACTIONS(12429), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12429), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12429), + [anon_sym_BSLASHacrlong] = ACTIONS(12429), + [anon_sym_BSLASHAcrlong] = ACTIONS(12429), + [anon_sym_BSLASHACRlong] = ACTIONS(12429), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12429), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12429), + [anon_sym_BSLASHacrfull] = ACTIONS(12429), + [anon_sym_BSLASHAcrfull] = ACTIONS(12429), + [anon_sym_BSLASHACRfull] = ACTIONS(12429), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12429), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12429), + [anon_sym_BSLASHacs] = ACTIONS(12429), + [anon_sym_BSLASHAcs] = ACTIONS(12429), + [anon_sym_BSLASHacsp] = ACTIONS(12429), + [anon_sym_BSLASHAcsp] = ACTIONS(12429), + [anon_sym_BSLASHacl] = ACTIONS(12429), + [anon_sym_BSLASHAcl] = ACTIONS(12429), + [anon_sym_BSLASHaclp] = ACTIONS(12429), + [anon_sym_BSLASHAclp] = ACTIONS(12429), + [anon_sym_BSLASHacf] = ACTIONS(12429), + [anon_sym_BSLASHAcf] = ACTIONS(12429), + [anon_sym_BSLASHacfp] = ACTIONS(12429), + [anon_sym_BSLASHAcfp] = ACTIONS(12429), + [anon_sym_BSLASHac] = ACTIONS(12429), + [anon_sym_BSLASHAc] = ACTIONS(12429), + [anon_sym_BSLASHacp] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12429), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12429), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12429), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12429), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12429), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12429), + [anon_sym_BSLASHcolor] = ACTIONS(12429), + [anon_sym_BSLASHcolorbox] = ACTIONS(12429), + [anon_sym_BSLASHtextcolor] = ACTIONS(12429), + [anon_sym_BSLASHpagecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12429), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12429), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12429), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12429), + }, + [1951] = { + [sym_generic_command_name] = ACTIONS(12433), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12431), + [anon_sym_RBRACK] = ACTIONS(12431), + [anon_sym_LBRACE] = ACTIONS(12431), + [anon_sym_RBRACE] = ACTIONS(12431), + [anon_sym_LPAREN] = ACTIONS(12431), + [anon_sym_COMMA] = ACTIONS(12431), + [anon_sym_EQ] = ACTIONS(12431), + [sym_word] = ACTIONS(12431), + [sym_param] = ACTIONS(12431), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12431), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12431), + [anon_sym_DOLLAR] = ACTIONS(12433), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12431), + [anon_sym_BSLASHbegin] = ACTIONS(12433), + [anon_sym_BSLASHcaption] = ACTIONS(12433), + [anon_sym_BSLASHcite] = ACTIONS(12433), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCite] = ACTIONS(12433), + [anon_sym_BSLASHnocite] = ACTIONS(12433), + [anon_sym_BSLASHcitet] = ACTIONS(12433), + [anon_sym_BSLASHcitep] = ACTIONS(12433), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteauthor] = ACTIONS(12433), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12433), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitetitle] = ACTIONS(12433), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteyear] = ACTIONS(12433), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12431), + [anon_sym_BSLASHcitedate] = ACTIONS(12433), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12431), + [anon_sym_BSLASHciteurl] = ACTIONS(12433), + [anon_sym_BSLASHfullcite] = ACTIONS(12433), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12433), + [anon_sym_BSLASHcitealt] = ACTIONS(12433), + [anon_sym_BSLASHcitealp] = ACTIONS(12433), + [anon_sym_BSLASHcitetext] = ACTIONS(12433), + [anon_sym_BSLASHparencite] = ACTIONS(12433), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHParencite] = ACTIONS(12433), + [anon_sym_BSLASHfootcite] = ACTIONS(12433), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12433), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12433), + [anon_sym_BSLASHtextcite] = ACTIONS(12433), + [anon_sym_BSLASHTextcite] = ACTIONS(12433), + [anon_sym_BSLASHsmartcite] = ACTIONS(12433), + [anon_sym_BSLASHSmartcite] = ACTIONS(12433), + [anon_sym_BSLASHsupercite] = ACTIONS(12433), + [anon_sym_BSLASHautocite] = ACTIONS(12433), + [anon_sym_BSLASHAutocite] = ACTIONS(12433), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12431), + [anon_sym_BSLASHvolcite] = ACTIONS(12433), + [anon_sym_BSLASHVolcite] = ACTIONS(12433), + [anon_sym_BSLASHpvolcite] = ACTIONS(12433), + [anon_sym_BSLASHPvolcite] = ACTIONS(12433), + [anon_sym_BSLASHfvolcite] = ACTIONS(12433), + [anon_sym_BSLASHftvolcite] = ACTIONS(12433), + [anon_sym_BSLASHsvolcite] = ACTIONS(12433), + [anon_sym_BSLASHSvolcite] = ACTIONS(12433), + [anon_sym_BSLASHtvolcite] = ACTIONS(12433), + [anon_sym_BSLASHTvolcite] = ACTIONS(12433), + [anon_sym_BSLASHavolcite] = ACTIONS(12433), + [anon_sym_BSLASHAvolcite] = ACTIONS(12433), + [anon_sym_BSLASHnotecite] = ACTIONS(12433), + [anon_sym_BSLASHpnotecite] = ACTIONS(12433), + [anon_sym_BSLASHPnotecite] = ACTIONS(12433), + [anon_sym_BSLASHfnotecite] = ACTIONS(12433), + [anon_sym_BSLASHusepackage] = ACTIONS(12433), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12433), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12433), + [anon_sym_BSLASHinclude] = ACTIONS(12433), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12433), + [anon_sym_BSLASHinput] = ACTIONS(12433), + [anon_sym_BSLASHsubfile] = ACTIONS(12433), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12433), + [anon_sym_BSLASHbibliography] = ACTIONS(12433), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12433), + [anon_sym_BSLASHincludesvg] = ACTIONS(12433), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12433), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12433), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12433), + [anon_sym_BSLASHimport] = ACTIONS(12433), + [anon_sym_BSLASHsubimport] = ACTIONS(12433), + [anon_sym_BSLASHinputfrom] = ACTIONS(12433), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12433), + [anon_sym_BSLASHincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12433), + [anon_sym_BSLASHlabel] = ACTIONS(12433), + [anon_sym_BSLASHref] = ACTIONS(12433), + [anon_sym_BSLASHvref] = ACTIONS(12433), + [anon_sym_BSLASHVref] = ACTIONS(12433), + [anon_sym_BSLASHautoref] = ACTIONS(12433), + [anon_sym_BSLASHpageref] = ACTIONS(12433), + [anon_sym_BSLASHcref] = ACTIONS(12433), + [anon_sym_BSLASHCref] = ACTIONS(12433), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnameCref] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12433), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12433), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12433), + [anon_sym_BSLASHlabelcref] = ACTIONS(12433), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12433), + [anon_sym_BSLASHeqref] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange] = ACTIONS(12433), + [anon_sym_BSLASHCrefrange] = ACTIONS(12433), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewlabel] = ACTIONS(12433), + [anon_sym_BSLASHnewcommand] = ACTIONS(12433), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12433), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12431), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12433), + [anon_sym_BSLASHgls] = ACTIONS(12433), + [anon_sym_BSLASHGls] = ACTIONS(12433), + [anon_sym_BSLASHGLS] = ACTIONS(12433), + [anon_sym_BSLASHglspl] = ACTIONS(12433), + [anon_sym_BSLASHGlspl] = ACTIONS(12433), + [anon_sym_BSLASHGLSpl] = ACTIONS(12433), + [anon_sym_BSLASHglsdisp] = ACTIONS(12433), + [anon_sym_BSLASHglslink] = ACTIONS(12433), + [anon_sym_BSLASHglstext] = ACTIONS(12433), + [anon_sym_BSLASHGlstext] = ACTIONS(12433), + [anon_sym_BSLASHGLStext] = ACTIONS(12433), + [anon_sym_BSLASHglsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12433), + [anon_sym_BSLASHglsplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSplural] = ACTIONS(12433), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12433), + [anon_sym_BSLASHglsname] = ACTIONS(12433), + [anon_sym_BSLASHGlsname] = ACTIONS(12433), + [anon_sym_BSLASHGLSname] = ACTIONS(12433), + [anon_sym_BSLASHglssymbol] = ACTIONS(12433), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12433), + [anon_sym_BSLASHglsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12433), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12433), + [anon_sym_BSLASHglsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12433), + [anon_sym_BSLASHglsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12433), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12433), + [anon_sym_BSLASHglsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12433), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12433), + [anon_sym_BSLASHglsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12433), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12433), + [anon_sym_BSLASHnewacronym] = ACTIONS(12433), + [anon_sym_BSLASHacrshort] = ACTIONS(12433), + [anon_sym_BSLASHAcrshort] = ACTIONS(12433), + [anon_sym_BSLASHACRshort] = ACTIONS(12433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12433), + [anon_sym_BSLASHacrlong] = ACTIONS(12433), + [anon_sym_BSLASHAcrlong] = ACTIONS(12433), + [anon_sym_BSLASHACRlong] = ACTIONS(12433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12433), + [anon_sym_BSLASHacrfull] = ACTIONS(12433), + [anon_sym_BSLASHAcrfull] = ACTIONS(12433), + [anon_sym_BSLASHACRfull] = ACTIONS(12433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12433), + [anon_sym_BSLASHacs] = ACTIONS(12433), + [anon_sym_BSLASHAcs] = ACTIONS(12433), + [anon_sym_BSLASHacsp] = ACTIONS(12433), + [anon_sym_BSLASHAcsp] = ACTIONS(12433), + [anon_sym_BSLASHacl] = ACTIONS(12433), + [anon_sym_BSLASHAcl] = ACTIONS(12433), + [anon_sym_BSLASHaclp] = ACTIONS(12433), + [anon_sym_BSLASHAclp] = ACTIONS(12433), + [anon_sym_BSLASHacf] = ACTIONS(12433), + [anon_sym_BSLASHAcf] = ACTIONS(12433), + [anon_sym_BSLASHacfp] = ACTIONS(12433), + [anon_sym_BSLASHAcfp] = ACTIONS(12433), + [anon_sym_BSLASHac] = ACTIONS(12433), + [anon_sym_BSLASHAc] = ACTIONS(12433), + [anon_sym_BSLASHacp] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12433), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12433), + [anon_sym_BSLASHcolor] = ACTIONS(12433), + [anon_sym_BSLASHcolorbox] = ACTIONS(12433), + [anon_sym_BSLASHtextcolor] = ACTIONS(12433), + [anon_sym_BSLASHpagecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12433), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12433), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12433), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12433), + }, + [1952] = { + [sym_generic_command_name] = ACTIONS(12181), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12179), + [anon_sym_RBRACK] = ACTIONS(12179), + [anon_sym_LBRACE] = ACTIONS(12179), + [anon_sym_RBRACE] = ACTIONS(12179), + [anon_sym_LPAREN] = ACTIONS(12179), + [anon_sym_COMMA] = ACTIONS(12179), + [anon_sym_EQ] = ACTIONS(12179), + [sym_word] = ACTIONS(12179), + [sym_param] = ACTIONS(12179), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12179), + [anon_sym_DOLLAR] = ACTIONS(12181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12179), + [anon_sym_BSLASHbegin] = ACTIONS(12181), + [anon_sym_BSLASHcaption] = ACTIONS(12181), + [anon_sym_BSLASHcite] = ACTIONS(12181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCite] = ACTIONS(12181), + [anon_sym_BSLASHnocite] = ACTIONS(12181), + [anon_sym_BSLASHcitet] = ACTIONS(12181), + [anon_sym_BSLASHcitep] = ACTIONS(12181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteauthor] = ACTIONS(12181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitetitle] = ACTIONS(12181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteyear] = ACTIONS(12181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12179), + [anon_sym_BSLASHcitedate] = ACTIONS(12181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12179), + [anon_sym_BSLASHciteurl] = ACTIONS(12181), + [anon_sym_BSLASHfullcite] = ACTIONS(12181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12181), + [anon_sym_BSLASHcitealt] = ACTIONS(12181), + [anon_sym_BSLASHcitealp] = ACTIONS(12181), + [anon_sym_BSLASHcitetext] = ACTIONS(12181), + [anon_sym_BSLASHparencite] = ACTIONS(12181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHParencite] = ACTIONS(12181), + [anon_sym_BSLASHfootcite] = ACTIONS(12181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12181), + [anon_sym_BSLASHtextcite] = ACTIONS(12181), + [anon_sym_BSLASHTextcite] = ACTIONS(12181), + [anon_sym_BSLASHsmartcite] = ACTIONS(12181), + [anon_sym_BSLASHSmartcite] = ACTIONS(12181), + [anon_sym_BSLASHsupercite] = ACTIONS(12181), + [anon_sym_BSLASHautocite] = ACTIONS(12181), + [anon_sym_BSLASHAutocite] = ACTIONS(12181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12179), + [anon_sym_BSLASHvolcite] = ACTIONS(12181), + [anon_sym_BSLASHVolcite] = ACTIONS(12181), + [anon_sym_BSLASHpvolcite] = ACTIONS(12181), + [anon_sym_BSLASHPvolcite] = ACTIONS(12181), + [anon_sym_BSLASHfvolcite] = ACTIONS(12181), + [anon_sym_BSLASHftvolcite] = ACTIONS(12181), + [anon_sym_BSLASHsvolcite] = ACTIONS(12181), + [anon_sym_BSLASHSvolcite] = ACTIONS(12181), + [anon_sym_BSLASHtvolcite] = ACTIONS(12181), + [anon_sym_BSLASHTvolcite] = ACTIONS(12181), + [anon_sym_BSLASHavolcite] = ACTIONS(12181), + [anon_sym_BSLASHAvolcite] = ACTIONS(12181), + [anon_sym_BSLASHnotecite] = ACTIONS(12181), + [anon_sym_BSLASHpnotecite] = ACTIONS(12181), + [anon_sym_BSLASHPnotecite] = ACTIONS(12181), + [anon_sym_BSLASHfnotecite] = ACTIONS(12181), + [anon_sym_BSLASHusepackage] = ACTIONS(12181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12181), + [anon_sym_BSLASHinclude] = ACTIONS(12181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12181), + [anon_sym_BSLASHinput] = ACTIONS(12181), + [anon_sym_BSLASHsubfile] = ACTIONS(12181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12181), + [anon_sym_BSLASHbibliography] = ACTIONS(12181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12181), + [anon_sym_BSLASHincludesvg] = ACTIONS(12181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12181), + [anon_sym_BSLASHimport] = ACTIONS(12181), + [anon_sym_BSLASHsubimport] = ACTIONS(12181), + [anon_sym_BSLASHinputfrom] = ACTIONS(12181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12181), + [anon_sym_BSLASHincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12181), + [anon_sym_BSLASHlabel] = ACTIONS(12181), + [anon_sym_BSLASHref] = ACTIONS(12181), + [anon_sym_BSLASHvref] = ACTIONS(12181), + [anon_sym_BSLASHVref] = ACTIONS(12181), + [anon_sym_BSLASHautoref] = ACTIONS(12181), + [anon_sym_BSLASHpageref] = ACTIONS(12181), + [anon_sym_BSLASHcref] = ACTIONS(12181), + [anon_sym_BSLASHCref] = ACTIONS(12181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnameCref] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12181), + [anon_sym_BSLASHlabelcref] = ACTIONS(12181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12181), + [anon_sym_BSLASHeqref] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange] = ACTIONS(12181), + [anon_sym_BSLASHCrefrange] = ACTIONS(12181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewlabel] = ACTIONS(12181), + [anon_sym_BSLASHnewcommand] = ACTIONS(12181), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12179), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12181), + [anon_sym_BSLASHgls] = ACTIONS(12181), + [anon_sym_BSLASHGls] = ACTIONS(12181), + [anon_sym_BSLASHGLS] = ACTIONS(12181), + [anon_sym_BSLASHglspl] = ACTIONS(12181), + [anon_sym_BSLASHGlspl] = ACTIONS(12181), + [anon_sym_BSLASHGLSpl] = ACTIONS(12181), + [anon_sym_BSLASHglsdisp] = ACTIONS(12181), + [anon_sym_BSLASHglslink] = ACTIONS(12181), + [anon_sym_BSLASHglstext] = ACTIONS(12181), + [anon_sym_BSLASHGlstext] = ACTIONS(12181), + [anon_sym_BSLASHGLStext] = ACTIONS(12181), + [anon_sym_BSLASHglsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12181), + [anon_sym_BSLASHglsplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSplural] = ACTIONS(12181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12181), + [anon_sym_BSLASHglsname] = ACTIONS(12181), + [anon_sym_BSLASHGlsname] = ACTIONS(12181), + [anon_sym_BSLASHGLSname] = ACTIONS(12181), + [anon_sym_BSLASHglssymbol] = ACTIONS(12181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12181), + [anon_sym_BSLASHglsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12181), + [anon_sym_BSLASHglsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12181), + [anon_sym_BSLASHglsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12181), + [anon_sym_BSLASHglsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12181), + [anon_sym_BSLASHglsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12181), + [anon_sym_BSLASHnewacronym] = ACTIONS(12181), + [anon_sym_BSLASHacrshort] = ACTIONS(12181), + [anon_sym_BSLASHAcrshort] = ACTIONS(12181), + [anon_sym_BSLASHACRshort] = ACTIONS(12181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12181), + [anon_sym_BSLASHacrlong] = ACTIONS(12181), + [anon_sym_BSLASHAcrlong] = ACTIONS(12181), + [anon_sym_BSLASHACRlong] = ACTIONS(12181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12181), + [anon_sym_BSLASHacrfull] = ACTIONS(12181), + [anon_sym_BSLASHAcrfull] = ACTIONS(12181), + [anon_sym_BSLASHACRfull] = ACTIONS(12181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12181), + [anon_sym_BSLASHacs] = ACTIONS(12181), + [anon_sym_BSLASHAcs] = ACTIONS(12181), + [anon_sym_BSLASHacsp] = ACTIONS(12181), + [anon_sym_BSLASHAcsp] = ACTIONS(12181), + [anon_sym_BSLASHacl] = ACTIONS(12181), + [anon_sym_BSLASHAcl] = ACTIONS(12181), + [anon_sym_BSLASHaclp] = ACTIONS(12181), + [anon_sym_BSLASHAclp] = ACTIONS(12181), + [anon_sym_BSLASHacf] = ACTIONS(12181), + [anon_sym_BSLASHAcf] = ACTIONS(12181), + [anon_sym_BSLASHacfp] = ACTIONS(12181), + [anon_sym_BSLASHAcfp] = ACTIONS(12181), + [anon_sym_BSLASHac] = ACTIONS(12181), + [anon_sym_BSLASHAc] = ACTIONS(12181), + [anon_sym_BSLASHacp] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12181), + [anon_sym_BSLASHcolor] = ACTIONS(12181), + [anon_sym_BSLASHcolorbox] = ACTIONS(12181), + [anon_sym_BSLASHtextcolor] = ACTIONS(12181), + [anon_sym_BSLASHpagecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12181), + }, + [1953] = { + [sym_generic_command_name] = ACTIONS(12185), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12183), + [anon_sym_RBRACK] = ACTIONS(12183), + [anon_sym_LBRACE] = ACTIONS(12183), + [anon_sym_RBRACE] = ACTIONS(12183), + [anon_sym_LPAREN] = ACTIONS(12183), + [anon_sym_COMMA] = ACTIONS(12183), + [anon_sym_EQ] = ACTIONS(12183), + [sym_word] = ACTIONS(12183), + [sym_param] = ACTIONS(12183), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12183), + [anon_sym_DOLLAR] = ACTIONS(12185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12183), + [anon_sym_BSLASHbegin] = ACTIONS(12185), + [anon_sym_BSLASHcaption] = ACTIONS(12185), + [anon_sym_BSLASHcite] = ACTIONS(12185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCite] = ACTIONS(12185), + [anon_sym_BSLASHnocite] = ACTIONS(12185), + [anon_sym_BSLASHcitet] = ACTIONS(12185), + [anon_sym_BSLASHcitep] = ACTIONS(12185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteauthor] = ACTIONS(12185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitetitle] = ACTIONS(12185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteyear] = ACTIONS(12185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12183), + [anon_sym_BSLASHcitedate] = ACTIONS(12185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12183), + [anon_sym_BSLASHciteurl] = ACTIONS(12185), + [anon_sym_BSLASHfullcite] = ACTIONS(12185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12185), + [anon_sym_BSLASHcitealt] = ACTIONS(12185), + [anon_sym_BSLASHcitealp] = ACTIONS(12185), + [anon_sym_BSLASHcitetext] = ACTIONS(12185), + [anon_sym_BSLASHparencite] = ACTIONS(12185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHParencite] = ACTIONS(12185), + [anon_sym_BSLASHfootcite] = ACTIONS(12185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12185), + [anon_sym_BSLASHtextcite] = ACTIONS(12185), + [anon_sym_BSLASHTextcite] = ACTIONS(12185), + [anon_sym_BSLASHsmartcite] = ACTIONS(12185), + [anon_sym_BSLASHSmartcite] = ACTIONS(12185), + [anon_sym_BSLASHsupercite] = ACTIONS(12185), + [anon_sym_BSLASHautocite] = ACTIONS(12185), + [anon_sym_BSLASHAutocite] = ACTIONS(12185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12183), + [anon_sym_BSLASHvolcite] = ACTIONS(12185), + [anon_sym_BSLASHVolcite] = ACTIONS(12185), + [anon_sym_BSLASHpvolcite] = ACTIONS(12185), + [anon_sym_BSLASHPvolcite] = ACTIONS(12185), + [anon_sym_BSLASHfvolcite] = ACTIONS(12185), + [anon_sym_BSLASHftvolcite] = ACTIONS(12185), + [anon_sym_BSLASHsvolcite] = ACTIONS(12185), + [anon_sym_BSLASHSvolcite] = ACTIONS(12185), + [anon_sym_BSLASHtvolcite] = ACTIONS(12185), + [anon_sym_BSLASHTvolcite] = ACTIONS(12185), + [anon_sym_BSLASHavolcite] = ACTIONS(12185), + [anon_sym_BSLASHAvolcite] = ACTIONS(12185), + [anon_sym_BSLASHnotecite] = ACTIONS(12185), + [anon_sym_BSLASHpnotecite] = ACTIONS(12185), + [anon_sym_BSLASHPnotecite] = ACTIONS(12185), + [anon_sym_BSLASHfnotecite] = ACTIONS(12185), + [anon_sym_BSLASHusepackage] = ACTIONS(12185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12185), + [anon_sym_BSLASHinclude] = ACTIONS(12185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12185), + [anon_sym_BSLASHinput] = ACTIONS(12185), + [anon_sym_BSLASHsubfile] = ACTIONS(12185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12185), + [anon_sym_BSLASHbibliography] = ACTIONS(12185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12185), + [anon_sym_BSLASHincludesvg] = ACTIONS(12185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12185), + [anon_sym_BSLASHimport] = ACTIONS(12185), + [anon_sym_BSLASHsubimport] = ACTIONS(12185), + [anon_sym_BSLASHinputfrom] = ACTIONS(12185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12185), + [anon_sym_BSLASHincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12185), + [anon_sym_BSLASHlabel] = ACTIONS(12185), + [anon_sym_BSLASHref] = ACTIONS(12185), + [anon_sym_BSLASHvref] = ACTIONS(12185), + [anon_sym_BSLASHVref] = ACTIONS(12185), + [anon_sym_BSLASHautoref] = ACTIONS(12185), + [anon_sym_BSLASHpageref] = ACTIONS(12185), + [anon_sym_BSLASHcref] = ACTIONS(12185), + [anon_sym_BSLASHCref] = ACTIONS(12185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnameCref] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12185), + [anon_sym_BSLASHlabelcref] = ACTIONS(12185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12185), + [anon_sym_BSLASHeqref] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange] = ACTIONS(12185), + [anon_sym_BSLASHCrefrange] = ACTIONS(12185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewlabel] = ACTIONS(12185), + [anon_sym_BSLASHnewcommand] = ACTIONS(12185), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12183), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12185), + [anon_sym_BSLASHgls] = ACTIONS(12185), + [anon_sym_BSLASHGls] = ACTIONS(12185), + [anon_sym_BSLASHGLS] = ACTIONS(12185), + [anon_sym_BSLASHglspl] = ACTIONS(12185), + [anon_sym_BSLASHGlspl] = ACTIONS(12185), + [anon_sym_BSLASHGLSpl] = ACTIONS(12185), + [anon_sym_BSLASHglsdisp] = ACTIONS(12185), + [anon_sym_BSLASHglslink] = ACTIONS(12185), + [anon_sym_BSLASHglstext] = ACTIONS(12185), + [anon_sym_BSLASHGlstext] = ACTIONS(12185), + [anon_sym_BSLASHGLStext] = ACTIONS(12185), + [anon_sym_BSLASHglsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12185), + [anon_sym_BSLASHglsplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSplural] = ACTIONS(12185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12185), + [anon_sym_BSLASHglsname] = ACTIONS(12185), + [anon_sym_BSLASHGlsname] = ACTIONS(12185), + [anon_sym_BSLASHGLSname] = ACTIONS(12185), + [anon_sym_BSLASHglssymbol] = ACTIONS(12185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12185), + [anon_sym_BSLASHglsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12185), + [anon_sym_BSLASHglsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12185), + [anon_sym_BSLASHglsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12185), + [anon_sym_BSLASHglsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12185), + [anon_sym_BSLASHglsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12185), + [anon_sym_BSLASHnewacronym] = ACTIONS(12185), + [anon_sym_BSLASHacrshort] = ACTIONS(12185), + [anon_sym_BSLASHAcrshort] = ACTIONS(12185), + [anon_sym_BSLASHACRshort] = ACTIONS(12185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12185), + [anon_sym_BSLASHacrlong] = ACTIONS(12185), + [anon_sym_BSLASHAcrlong] = ACTIONS(12185), + [anon_sym_BSLASHACRlong] = ACTIONS(12185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12185), + [anon_sym_BSLASHacrfull] = ACTIONS(12185), + [anon_sym_BSLASHAcrfull] = ACTIONS(12185), + [anon_sym_BSLASHACRfull] = ACTIONS(12185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12185), + [anon_sym_BSLASHacs] = ACTIONS(12185), + [anon_sym_BSLASHAcs] = ACTIONS(12185), + [anon_sym_BSLASHacsp] = ACTIONS(12185), + [anon_sym_BSLASHAcsp] = ACTIONS(12185), + [anon_sym_BSLASHacl] = ACTIONS(12185), + [anon_sym_BSLASHAcl] = ACTIONS(12185), + [anon_sym_BSLASHaclp] = ACTIONS(12185), + [anon_sym_BSLASHAclp] = ACTIONS(12185), + [anon_sym_BSLASHacf] = ACTIONS(12185), + [anon_sym_BSLASHAcf] = ACTIONS(12185), + [anon_sym_BSLASHacfp] = ACTIONS(12185), + [anon_sym_BSLASHAcfp] = ACTIONS(12185), + [anon_sym_BSLASHac] = ACTIONS(12185), + [anon_sym_BSLASHAc] = ACTIONS(12185), + [anon_sym_BSLASHacp] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12185), + [anon_sym_BSLASHcolor] = ACTIONS(12185), + [anon_sym_BSLASHcolorbox] = ACTIONS(12185), + [anon_sym_BSLASHtextcolor] = ACTIONS(12185), + [anon_sym_BSLASHpagecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12185), + }, + [1954] = { + [sym_generic_command_name] = ACTIONS(12227), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12225), + [anon_sym_RBRACK] = ACTIONS(12225), + [anon_sym_LBRACE] = ACTIONS(12225), + [anon_sym_RBRACE] = ACTIONS(12225), + [anon_sym_LPAREN] = ACTIONS(12225), + [anon_sym_COMMA] = ACTIONS(12225), + [anon_sym_EQ] = ACTIONS(12225), + [sym_word] = ACTIONS(12225), + [sym_param] = ACTIONS(12225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12225), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12225), + [anon_sym_DOLLAR] = ACTIONS(12227), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12225), + [anon_sym_BSLASHbegin] = ACTIONS(12227), + [anon_sym_BSLASHcaption] = ACTIONS(12227), + [anon_sym_BSLASHcite] = ACTIONS(12227), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCite] = ACTIONS(12227), + [anon_sym_BSLASHnocite] = ACTIONS(12227), + [anon_sym_BSLASHcitet] = ACTIONS(12227), + [anon_sym_BSLASHcitep] = ACTIONS(12227), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteauthor] = ACTIONS(12227), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12227), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitetitle] = ACTIONS(12227), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteyear] = ACTIONS(12227), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12225), + [anon_sym_BSLASHcitedate] = ACTIONS(12227), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12225), + [anon_sym_BSLASHciteurl] = ACTIONS(12227), + [anon_sym_BSLASHfullcite] = ACTIONS(12227), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12227), + [anon_sym_BSLASHcitealt] = ACTIONS(12227), + [anon_sym_BSLASHcitealp] = ACTIONS(12227), + [anon_sym_BSLASHcitetext] = ACTIONS(12227), + [anon_sym_BSLASHparencite] = ACTIONS(12227), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHParencite] = ACTIONS(12227), + [anon_sym_BSLASHfootcite] = ACTIONS(12227), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12227), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12227), + [anon_sym_BSLASHtextcite] = ACTIONS(12227), + [anon_sym_BSLASHTextcite] = ACTIONS(12227), + [anon_sym_BSLASHsmartcite] = ACTIONS(12227), + [anon_sym_BSLASHSmartcite] = ACTIONS(12227), + [anon_sym_BSLASHsupercite] = ACTIONS(12227), + [anon_sym_BSLASHautocite] = ACTIONS(12227), + [anon_sym_BSLASHAutocite] = ACTIONS(12227), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12225), + [anon_sym_BSLASHvolcite] = ACTIONS(12227), + [anon_sym_BSLASHVolcite] = ACTIONS(12227), + [anon_sym_BSLASHpvolcite] = ACTIONS(12227), + [anon_sym_BSLASHPvolcite] = ACTIONS(12227), + [anon_sym_BSLASHfvolcite] = ACTIONS(12227), + [anon_sym_BSLASHftvolcite] = ACTIONS(12227), + [anon_sym_BSLASHsvolcite] = ACTIONS(12227), + [anon_sym_BSLASHSvolcite] = ACTIONS(12227), + [anon_sym_BSLASHtvolcite] = ACTIONS(12227), + [anon_sym_BSLASHTvolcite] = ACTIONS(12227), + [anon_sym_BSLASHavolcite] = ACTIONS(12227), + [anon_sym_BSLASHAvolcite] = ACTIONS(12227), + [anon_sym_BSLASHnotecite] = ACTIONS(12227), + [anon_sym_BSLASHpnotecite] = ACTIONS(12227), + [anon_sym_BSLASHPnotecite] = ACTIONS(12227), + [anon_sym_BSLASHfnotecite] = ACTIONS(12227), + [anon_sym_BSLASHusepackage] = ACTIONS(12227), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12227), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12227), + [anon_sym_BSLASHinclude] = ACTIONS(12227), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12227), + [anon_sym_BSLASHinput] = ACTIONS(12227), + [anon_sym_BSLASHsubfile] = ACTIONS(12227), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12227), + [anon_sym_BSLASHbibliography] = ACTIONS(12227), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12227), + [anon_sym_BSLASHincludesvg] = ACTIONS(12227), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12227), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12227), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12227), + [anon_sym_BSLASHimport] = ACTIONS(12227), + [anon_sym_BSLASHsubimport] = ACTIONS(12227), + [anon_sym_BSLASHinputfrom] = ACTIONS(12227), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12227), + [anon_sym_BSLASHincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12227), + [anon_sym_BSLASHlabel] = ACTIONS(12227), + [anon_sym_BSLASHref] = ACTIONS(12227), + [anon_sym_BSLASHvref] = ACTIONS(12227), + [anon_sym_BSLASHVref] = ACTIONS(12227), + [anon_sym_BSLASHautoref] = ACTIONS(12227), + [anon_sym_BSLASHpageref] = ACTIONS(12227), + [anon_sym_BSLASHcref] = ACTIONS(12227), + [anon_sym_BSLASHCref] = ACTIONS(12227), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnameCref] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12227), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12227), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12227), + [anon_sym_BSLASHlabelcref] = ACTIONS(12227), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12227), + [anon_sym_BSLASHeqref] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange] = ACTIONS(12227), + [anon_sym_BSLASHCrefrange] = ACTIONS(12227), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewlabel] = ACTIONS(12227), + [anon_sym_BSLASHnewcommand] = ACTIONS(12227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12227), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12227), + [anon_sym_BSLASHgls] = ACTIONS(12227), + [anon_sym_BSLASHGls] = ACTIONS(12227), + [anon_sym_BSLASHGLS] = ACTIONS(12227), + [anon_sym_BSLASHglspl] = ACTIONS(12227), + [anon_sym_BSLASHGlspl] = ACTIONS(12227), + [anon_sym_BSLASHGLSpl] = ACTIONS(12227), + [anon_sym_BSLASHglsdisp] = ACTIONS(12227), + [anon_sym_BSLASHglslink] = ACTIONS(12227), + [anon_sym_BSLASHglstext] = ACTIONS(12227), + [anon_sym_BSLASHGlstext] = ACTIONS(12227), + [anon_sym_BSLASHGLStext] = ACTIONS(12227), + [anon_sym_BSLASHglsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12227), + [anon_sym_BSLASHglsplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSplural] = ACTIONS(12227), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12227), + [anon_sym_BSLASHglsname] = ACTIONS(12227), + [anon_sym_BSLASHGlsname] = ACTIONS(12227), + [anon_sym_BSLASHGLSname] = ACTIONS(12227), + [anon_sym_BSLASHglssymbol] = ACTIONS(12227), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12227), + [anon_sym_BSLASHglsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12227), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12227), + [anon_sym_BSLASHglsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12227), + [anon_sym_BSLASHglsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12227), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12227), + [anon_sym_BSLASHglsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12227), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12227), + [anon_sym_BSLASHglsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12227), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12227), + [anon_sym_BSLASHnewacronym] = ACTIONS(12227), + [anon_sym_BSLASHacrshort] = ACTIONS(12227), + [anon_sym_BSLASHAcrshort] = ACTIONS(12227), + [anon_sym_BSLASHACRshort] = ACTIONS(12227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12227), + [anon_sym_BSLASHacrlong] = ACTIONS(12227), + [anon_sym_BSLASHAcrlong] = ACTIONS(12227), + [anon_sym_BSLASHACRlong] = ACTIONS(12227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12227), + [anon_sym_BSLASHacrfull] = ACTIONS(12227), + [anon_sym_BSLASHAcrfull] = ACTIONS(12227), + [anon_sym_BSLASHACRfull] = ACTIONS(12227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12227), + [anon_sym_BSLASHacs] = ACTIONS(12227), + [anon_sym_BSLASHAcs] = ACTIONS(12227), + [anon_sym_BSLASHacsp] = ACTIONS(12227), + [anon_sym_BSLASHAcsp] = ACTIONS(12227), + [anon_sym_BSLASHacl] = ACTIONS(12227), + [anon_sym_BSLASHAcl] = ACTIONS(12227), + [anon_sym_BSLASHaclp] = ACTIONS(12227), + [anon_sym_BSLASHAclp] = ACTIONS(12227), + [anon_sym_BSLASHacf] = ACTIONS(12227), + [anon_sym_BSLASHAcf] = ACTIONS(12227), + [anon_sym_BSLASHacfp] = ACTIONS(12227), + [anon_sym_BSLASHAcfp] = ACTIONS(12227), + [anon_sym_BSLASHac] = ACTIONS(12227), + [anon_sym_BSLASHAc] = ACTIONS(12227), + [anon_sym_BSLASHacp] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12227), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12227), + [anon_sym_BSLASHcolor] = ACTIONS(12227), + [anon_sym_BSLASHcolorbox] = ACTIONS(12227), + [anon_sym_BSLASHtextcolor] = ACTIONS(12227), + [anon_sym_BSLASHpagecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12227), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12227), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12227), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12227), + }, + [1955] = { + [sym_generic_command_name] = ACTIONS(12441), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12439), + [anon_sym_RBRACK] = ACTIONS(12439), + [anon_sym_LBRACE] = ACTIONS(12439), + [anon_sym_RBRACE] = ACTIONS(12439), + [anon_sym_LPAREN] = ACTIONS(12439), + [anon_sym_COMMA] = ACTIONS(12439), + [anon_sym_EQ] = ACTIONS(12439), + [sym_word] = ACTIONS(12439), + [sym_param] = ACTIONS(12439), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12439), + [anon_sym_DOLLAR] = ACTIONS(12441), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12439), + [anon_sym_BSLASHbegin] = ACTIONS(12441), + [anon_sym_BSLASHcaption] = ACTIONS(12441), + [anon_sym_BSLASHcite] = ACTIONS(12441), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCite] = ACTIONS(12441), + [anon_sym_BSLASHnocite] = ACTIONS(12441), + [anon_sym_BSLASHcitet] = ACTIONS(12441), + [anon_sym_BSLASHcitep] = ACTIONS(12441), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteauthor] = ACTIONS(12441), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12441), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitetitle] = ACTIONS(12441), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteyear] = ACTIONS(12441), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12439), + [anon_sym_BSLASHcitedate] = ACTIONS(12441), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12439), + [anon_sym_BSLASHciteurl] = ACTIONS(12441), + [anon_sym_BSLASHfullcite] = ACTIONS(12441), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12441), + [anon_sym_BSLASHcitealt] = ACTIONS(12441), + [anon_sym_BSLASHcitealp] = ACTIONS(12441), + [anon_sym_BSLASHcitetext] = ACTIONS(12441), + [anon_sym_BSLASHparencite] = ACTIONS(12441), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHParencite] = ACTIONS(12441), + [anon_sym_BSLASHfootcite] = ACTIONS(12441), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12441), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12441), + [anon_sym_BSLASHtextcite] = ACTIONS(12441), + [anon_sym_BSLASHTextcite] = ACTIONS(12441), + [anon_sym_BSLASHsmartcite] = ACTIONS(12441), + [anon_sym_BSLASHSmartcite] = ACTIONS(12441), + [anon_sym_BSLASHsupercite] = ACTIONS(12441), + [anon_sym_BSLASHautocite] = ACTIONS(12441), + [anon_sym_BSLASHAutocite] = ACTIONS(12441), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12439), + [anon_sym_BSLASHvolcite] = ACTIONS(12441), + [anon_sym_BSLASHVolcite] = ACTIONS(12441), + [anon_sym_BSLASHpvolcite] = ACTIONS(12441), + [anon_sym_BSLASHPvolcite] = ACTIONS(12441), + [anon_sym_BSLASHfvolcite] = ACTIONS(12441), + [anon_sym_BSLASHftvolcite] = ACTIONS(12441), + [anon_sym_BSLASHsvolcite] = ACTIONS(12441), + [anon_sym_BSLASHSvolcite] = ACTIONS(12441), + [anon_sym_BSLASHtvolcite] = ACTIONS(12441), + [anon_sym_BSLASHTvolcite] = ACTIONS(12441), + [anon_sym_BSLASHavolcite] = ACTIONS(12441), + [anon_sym_BSLASHAvolcite] = ACTIONS(12441), + [anon_sym_BSLASHnotecite] = ACTIONS(12441), + [anon_sym_BSLASHpnotecite] = ACTIONS(12441), + [anon_sym_BSLASHPnotecite] = ACTIONS(12441), + [anon_sym_BSLASHfnotecite] = ACTIONS(12441), + [anon_sym_BSLASHusepackage] = ACTIONS(12441), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12441), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12441), + [anon_sym_BSLASHinclude] = ACTIONS(12441), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12441), + [anon_sym_BSLASHinput] = ACTIONS(12441), + [anon_sym_BSLASHsubfile] = ACTIONS(12441), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12441), + [anon_sym_BSLASHbibliography] = ACTIONS(12441), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12441), + [anon_sym_BSLASHincludesvg] = ACTIONS(12441), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12441), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12441), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12441), + [anon_sym_BSLASHimport] = ACTIONS(12441), + [anon_sym_BSLASHsubimport] = ACTIONS(12441), + [anon_sym_BSLASHinputfrom] = ACTIONS(12441), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12441), + [anon_sym_BSLASHincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12441), + [anon_sym_BSLASHlabel] = ACTIONS(12441), + [anon_sym_BSLASHref] = ACTIONS(12441), + [anon_sym_BSLASHvref] = ACTIONS(12441), + [anon_sym_BSLASHVref] = ACTIONS(12441), + [anon_sym_BSLASHautoref] = ACTIONS(12441), + [anon_sym_BSLASHpageref] = ACTIONS(12441), + [anon_sym_BSLASHcref] = ACTIONS(12441), + [anon_sym_BSLASHCref] = ACTIONS(12441), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnameCref] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12441), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12441), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12441), + [anon_sym_BSLASHlabelcref] = ACTIONS(12441), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12441), + [anon_sym_BSLASHeqref] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange] = ACTIONS(12441), + [anon_sym_BSLASHCrefrange] = ACTIONS(12441), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewlabel] = ACTIONS(12441), + [anon_sym_BSLASHnewcommand] = ACTIONS(12441), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12441), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12439), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12441), + [anon_sym_BSLASHgls] = ACTIONS(12441), + [anon_sym_BSLASHGls] = ACTIONS(12441), + [anon_sym_BSLASHGLS] = ACTIONS(12441), + [anon_sym_BSLASHglspl] = ACTIONS(12441), + [anon_sym_BSLASHGlspl] = ACTIONS(12441), + [anon_sym_BSLASHGLSpl] = ACTIONS(12441), + [anon_sym_BSLASHglsdisp] = ACTIONS(12441), + [anon_sym_BSLASHglslink] = ACTIONS(12441), + [anon_sym_BSLASHglstext] = ACTIONS(12441), + [anon_sym_BSLASHGlstext] = ACTIONS(12441), + [anon_sym_BSLASHGLStext] = ACTIONS(12441), + [anon_sym_BSLASHglsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12441), + [anon_sym_BSLASHglsplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSplural] = ACTIONS(12441), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12441), + [anon_sym_BSLASHglsname] = ACTIONS(12441), + [anon_sym_BSLASHGlsname] = ACTIONS(12441), + [anon_sym_BSLASHGLSname] = ACTIONS(12441), + [anon_sym_BSLASHglssymbol] = ACTIONS(12441), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12441), + [anon_sym_BSLASHglsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12441), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12441), + [anon_sym_BSLASHglsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12441), + [anon_sym_BSLASHglsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12441), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12441), + [anon_sym_BSLASHglsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12441), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12441), + [anon_sym_BSLASHglsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12441), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12441), + [anon_sym_BSLASHnewacronym] = ACTIONS(12441), + [anon_sym_BSLASHacrshort] = ACTIONS(12441), + [anon_sym_BSLASHAcrshort] = ACTIONS(12441), + [anon_sym_BSLASHACRshort] = ACTIONS(12441), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12441), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12441), + [anon_sym_BSLASHacrlong] = ACTIONS(12441), + [anon_sym_BSLASHAcrlong] = ACTIONS(12441), + [anon_sym_BSLASHACRlong] = ACTIONS(12441), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12441), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12441), + [anon_sym_BSLASHacrfull] = ACTIONS(12441), + [anon_sym_BSLASHAcrfull] = ACTIONS(12441), + [anon_sym_BSLASHACRfull] = ACTIONS(12441), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12441), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12441), + [anon_sym_BSLASHacs] = ACTIONS(12441), + [anon_sym_BSLASHAcs] = ACTIONS(12441), + [anon_sym_BSLASHacsp] = ACTIONS(12441), + [anon_sym_BSLASHAcsp] = ACTIONS(12441), + [anon_sym_BSLASHacl] = ACTIONS(12441), + [anon_sym_BSLASHAcl] = ACTIONS(12441), + [anon_sym_BSLASHaclp] = ACTIONS(12441), + [anon_sym_BSLASHAclp] = ACTIONS(12441), + [anon_sym_BSLASHacf] = ACTIONS(12441), + [anon_sym_BSLASHAcf] = ACTIONS(12441), + [anon_sym_BSLASHacfp] = ACTIONS(12441), + [anon_sym_BSLASHAcfp] = ACTIONS(12441), + [anon_sym_BSLASHac] = ACTIONS(12441), + [anon_sym_BSLASHAc] = ACTIONS(12441), + [anon_sym_BSLASHacp] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12441), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12441), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12441), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12441), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12441), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12441), + [anon_sym_BSLASHcolor] = ACTIONS(12441), + [anon_sym_BSLASHcolorbox] = ACTIONS(12441), + [anon_sym_BSLASHtextcolor] = ACTIONS(12441), + [anon_sym_BSLASHpagecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12441), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12441), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12441), + }, + [1956] = { + [sym_generic_command_name] = ACTIONS(12457), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12455), + [anon_sym_RBRACK] = ACTIONS(12455), + [anon_sym_LBRACE] = ACTIONS(12455), + [anon_sym_RBRACE] = ACTIONS(12455), + [anon_sym_LPAREN] = ACTIONS(12455), + [anon_sym_COMMA] = ACTIONS(12455), + [anon_sym_EQ] = ACTIONS(12455), + [sym_word] = ACTIONS(12455), + [sym_param] = ACTIONS(12455), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12455), + [anon_sym_DOLLAR] = ACTIONS(12457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12455), + [anon_sym_BSLASHbegin] = ACTIONS(12457), + [anon_sym_BSLASHcaption] = ACTIONS(12457), + [anon_sym_BSLASHcite] = ACTIONS(12457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCite] = ACTIONS(12457), + [anon_sym_BSLASHnocite] = ACTIONS(12457), + [anon_sym_BSLASHcitet] = ACTIONS(12457), + [anon_sym_BSLASHcitep] = ACTIONS(12457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteauthor] = ACTIONS(12457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitetitle] = ACTIONS(12457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteyear] = ACTIONS(12457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12455), + [anon_sym_BSLASHcitedate] = ACTIONS(12457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12455), + [anon_sym_BSLASHciteurl] = ACTIONS(12457), + [anon_sym_BSLASHfullcite] = ACTIONS(12457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12457), + [anon_sym_BSLASHcitealt] = ACTIONS(12457), + [anon_sym_BSLASHcitealp] = ACTIONS(12457), + [anon_sym_BSLASHcitetext] = ACTIONS(12457), + [anon_sym_BSLASHparencite] = ACTIONS(12457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHParencite] = ACTIONS(12457), + [anon_sym_BSLASHfootcite] = ACTIONS(12457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12457), + [anon_sym_BSLASHtextcite] = ACTIONS(12457), + [anon_sym_BSLASHTextcite] = ACTIONS(12457), + [anon_sym_BSLASHsmartcite] = ACTIONS(12457), + [anon_sym_BSLASHSmartcite] = ACTIONS(12457), + [anon_sym_BSLASHsupercite] = ACTIONS(12457), + [anon_sym_BSLASHautocite] = ACTIONS(12457), + [anon_sym_BSLASHAutocite] = ACTIONS(12457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12455), + [anon_sym_BSLASHvolcite] = ACTIONS(12457), + [anon_sym_BSLASHVolcite] = ACTIONS(12457), + [anon_sym_BSLASHpvolcite] = ACTIONS(12457), + [anon_sym_BSLASHPvolcite] = ACTIONS(12457), + [anon_sym_BSLASHfvolcite] = ACTIONS(12457), + [anon_sym_BSLASHftvolcite] = ACTIONS(12457), + [anon_sym_BSLASHsvolcite] = ACTIONS(12457), + [anon_sym_BSLASHSvolcite] = ACTIONS(12457), + [anon_sym_BSLASHtvolcite] = ACTIONS(12457), + [anon_sym_BSLASHTvolcite] = ACTIONS(12457), + [anon_sym_BSLASHavolcite] = ACTIONS(12457), + [anon_sym_BSLASHAvolcite] = ACTIONS(12457), + [anon_sym_BSLASHnotecite] = ACTIONS(12457), + [anon_sym_BSLASHpnotecite] = ACTIONS(12457), + [anon_sym_BSLASHPnotecite] = ACTIONS(12457), + [anon_sym_BSLASHfnotecite] = ACTIONS(12457), + [anon_sym_BSLASHusepackage] = ACTIONS(12457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12457), + [anon_sym_BSLASHinclude] = ACTIONS(12457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12457), + [anon_sym_BSLASHinput] = ACTIONS(12457), + [anon_sym_BSLASHsubfile] = ACTIONS(12457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12457), + [anon_sym_BSLASHbibliography] = ACTIONS(12457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12457), + [anon_sym_BSLASHincludesvg] = ACTIONS(12457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12457), + [anon_sym_BSLASHimport] = ACTIONS(12457), + [anon_sym_BSLASHsubimport] = ACTIONS(12457), + [anon_sym_BSLASHinputfrom] = ACTIONS(12457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12457), + [anon_sym_BSLASHincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12457), + [anon_sym_BSLASHlabel] = ACTIONS(12457), + [anon_sym_BSLASHref] = ACTIONS(12457), + [anon_sym_BSLASHvref] = ACTIONS(12457), + [anon_sym_BSLASHVref] = ACTIONS(12457), + [anon_sym_BSLASHautoref] = ACTIONS(12457), + [anon_sym_BSLASHpageref] = ACTIONS(12457), + [anon_sym_BSLASHcref] = ACTIONS(12457), + [anon_sym_BSLASHCref] = ACTIONS(12457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnameCref] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12457), + [anon_sym_BSLASHlabelcref] = ACTIONS(12457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12457), + [anon_sym_BSLASHeqref] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange] = ACTIONS(12457), + [anon_sym_BSLASHCrefrange] = ACTIONS(12457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewlabel] = ACTIONS(12457), + [anon_sym_BSLASHnewcommand] = ACTIONS(12457), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12455), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12457), + [anon_sym_BSLASHgls] = ACTIONS(12457), + [anon_sym_BSLASHGls] = ACTIONS(12457), + [anon_sym_BSLASHGLS] = ACTIONS(12457), + [anon_sym_BSLASHglspl] = ACTIONS(12457), + [anon_sym_BSLASHGlspl] = ACTIONS(12457), + [anon_sym_BSLASHGLSpl] = ACTIONS(12457), + [anon_sym_BSLASHglsdisp] = ACTIONS(12457), + [anon_sym_BSLASHglslink] = ACTIONS(12457), + [anon_sym_BSLASHglstext] = ACTIONS(12457), + [anon_sym_BSLASHGlstext] = ACTIONS(12457), + [anon_sym_BSLASHGLStext] = ACTIONS(12457), + [anon_sym_BSLASHglsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12457), + [anon_sym_BSLASHglsplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSplural] = ACTIONS(12457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12457), + [anon_sym_BSLASHglsname] = ACTIONS(12457), + [anon_sym_BSLASHGlsname] = ACTIONS(12457), + [anon_sym_BSLASHGLSname] = ACTIONS(12457), + [anon_sym_BSLASHglssymbol] = ACTIONS(12457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12457), + [anon_sym_BSLASHglsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12457), + [anon_sym_BSLASHglsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12457), + [anon_sym_BSLASHglsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12457), + [anon_sym_BSLASHglsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12457), + [anon_sym_BSLASHglsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12457), + [anon_sym_BSLASHnewacronym] = ACTIONS(12457), + [anon_sym_BSLASHacrshort] = ACTIONS(12457), + [anon_sym_BSLASHAcrshort] = ACTIONS(12457), + [anon_sym_BSLASHACRshort] = ACTIONS(12457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12457), + [anon_sym_BSLASHacrlong] = ACTIONS(12457), + [anon_sym_BSLASHAcrlong] = ACTIONS(12457), + [anon_sym_BSLASHACRlong] = ACTIONS(12457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12457), + [anon_sym_BSLASHacrfull] = ACTIONS(12457), + [anon_sym_BSLASHAcrfull] = ACTIONS(12457), + [anon_sym_BSLASHACRfull] = ACTIONS(12457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12457), + [anon_sym_BSLASHacs] = ACTIONS(12457), + [anon_sym_BSLASHAcs] = ACTIONS(12457), + [anon_sym_BSLASHacsp] = ACTIONS(12457), + [anon_sym_BSLASHAcsp] = ACTIONS(12457), + [anon_sym_BSLASHacl] = ACTIONS(12457), + [anon_sym_BSLASHAcl] = ACTIONS(12457), + [anon_sym_BSLASHaclp] = ACTIONS(12457), + [anon_sym_BSLASHAclp] = ACTIONS(12457), + [anon_sym_BSLASHacf] = ACTIONS(12457), + [anon_sym_BSLASHAcf] = ACTIONS(12457), + [anon_sym_BSLASHacfp] = ACTIONS(12457), + [anon_sym_BSLASHAcfp] = ACTIONS(12457), + [anon_sym_BSLASHac] = ACTIONS(12457), + [anon_sym_BSLASHAc] = ACTIONS(12457), + [anon_sym_BSLASHacp] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12457), + [anon_sym_BSLASHcolor] = ACTIONS(12457), + [anon_sym_BSLASHcolorbox] = ACTIONS(12457), + [anon_sym_BSLASHtextcolor] = ACTIONS(12457), + [anon_sym_BSLASHpagecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12457), + }, + [1957] = { + [sym_generic_command_name] = ACTIONS(12445), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12443), + [anon_sym_RBRACK] = ACTIONS(12443), + [anon_sym_LBRACE] = ACTIONS(12443), + [anon_sym_RBRACE] = ACTIONS(12443), + [anon_sym_LPAREN] = ACTIONS(12443), + [anon_sym_COMMA] = ACTIONS(12443), + [anon_sym_EQ] = ACTIONS(12443), + [sym_word] = ACTIONS(12443), + [sym_param] = ACTIONS(12443), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12443), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12443), + [anon_sym_DOLLAR] = ACTIONS(12445), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12443), + [anon_sym_BSLASHbegin] = ACTIONS(12445), + [anon_sym_BSLASHcaption] = ACTIONS(12445), + [anon_sym_BSLASHcite] = ACTIONS(12445), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCite] = ACTIONS(12445), + [anon_sym_BSLASHnocite] = ACTIONS(12445), + [anon_sym_BSLASHcitet] = ACTIONS(12445), + [anon_sym_BSLASHcitep] = ACTIONS(12445), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteauthor] = ACTIONS(12445), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12445), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitetitle] = ACTIONS(12445), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteyear] = ACTIONS(12445), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12443), + [anon_sym_BSLASHcitedate] = ACTIONS(12445), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12443), + [anon_sym_BSLASHciteurl] = ACTIONS(12445), + [anon_sym_BSLASHfullcite] = ACTIONS(12445), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12445), + [anon_sym_BSLASHcitealt] = ACTIONS(12445), + [anon_sym_BSLASHcitealp] = ACTIONS(12445), + [anon_sym_BSLASHcitetext] = ACTIONS(12445), + [anon_sym_BSLASHparencite] = ACTIONS(12445), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHParencite] = ACTIONS(12445), + [anon_sym_BSLASHfootcite] = ACTIONS(12445), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12445), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12445), + [anon_sym_BSLASHtextcite] = ACTIONS(12445), + [anon_sym_BSLASHTextcite] = ACTIONS(12445), + [anon_sym_BSLASHsmartcite] = ACTIONS(12445), + [anon_sym_BSLASHSmartcite] = ACTIONS(12445), + [anon_sym_BSLASHsupercite] = ACTIONS(12445), + [anon_sym_BSLASHautocite] = ACTIONS(12445), + [anon_sym_BSLASHAutocite] = ACTIONS(12445), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12443), + [anon_sym_BSLASHvolcite] = ACTIONS(12445), + [anon_sym_BSLASHVolcite] = ACTIONS(12445), + [anon_sym_BSLASHpvolcite] = ACTIONS(12445), + [anon_sym_BSLASHPvolcite] = ACTIONS(12445), + [anon_sym_BSLASHfvolcite] = ACTIONS(12445), + [anon_sym_BSLASHftvolcite] = ACTIONS(12445), + [anon_sym_BSLASHsvolcite] = ACTIONS(12445), + [anon_sym_BSLASHSvolcite] = ACTIONS(12445), + [anon_sym_BSLASHtvolcite] = ACTIONS(12445), + [anon_sym_BSLASHTvolcite] = ACTIONS(12445), + [anon_sym_BSLASHavolcite] = ACTIONS(12445), + [anon_sym_BSLASHAvolcite] = ACTIONS(12445), + [anon_sym_BSLASHnotecite] = ACTIONS(12445), + [anon_sym_BSLASHpnotecite] = ACTIONS(12445), + [anon_sym_BSLASHPnotecite] = ACTIONS(12445), + [anon_sym_BSLASHfnotecite] = ACTIONS(12445), + [anon_sym_BSLASHusepackage] = ACTIONS(12445), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12445), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12445), + [anon_sym_BSLASHinclude] = ACTIONS(12445), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12445), + [anon_sym_BSLASHinput] = ACTIONS(12445), + [anon_sym_BSLASHsubfile] = ACTIONS(12445), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12445), + [anon_sym_BSLASHbibliography] = ACTIONS(12445), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12445), + [anon_sym_BSLASHincludesvg] = ACTIONS(12445), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12445), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12445), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12445), + [anon_sym_BSLASHimport] = ACTIONS(12445), + [anon_sym_BSLASHsubimport] = ACTIONS(12445), + [anon_sym_BSLASHinputfrom] = ACTIONS(12445), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12445), + [anon_sym_BSLASHincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12445), + [anon_sym_BSLASHlabel] = ACTIONS(12445), + [anon_sym_BSLASHref] = ACTIONS(12445), + [anon_sym_BSLASHvref] = ACTIONS(12445), + [anon_sym_BSLASHVref] = ACTIONS(12445), + [anon_sym_BSLASHautoref] = ACTIONS(12445), + [anon_sym_BSLASHpageref] = ACTIONS(12445), + [anon_sym_BSLASHcref] = ACTIONS(12445), + [anon_sym_BSLASHCref] = ACTIONS(12445), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnameCref] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12445), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12445), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12445), + [anon_sym_BSLASHlabelcref] = ACTIONS(12445), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12445), + [anon_sym_BSLASHeqref] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange] = ACTIONS(12445), + [anon_sym_BSLASHCrefrange] = ACTIONS(12445), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewlabel] = ACTIONS(12445), + [anon_sym_BSLASHnewcommand] = ACTIONS(12445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12445), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12443), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12445), + [anon_sym_BSLASHgls] = ACTIONS(12445), + [anon_sym_BSLASHGls] = ACTIONS(12445), + [anon_sym_BSLASHGLS] = ACTIONS(12445), + [anon_sym_BSLASHglspl] = ACTIONS(12445), + [anon_sym_BSLASHGlspl] = ACTIONS(12445), + [anon_sym_BSLASHGLSpl] = ACTIONS(12445), + [anon_sym_BSLASHglsdisp] = ACTIONS(12445), + [anon_sym_BSLASHglslink] = ACTIONS(12445), + [anon_sym_BSLASHglstext] = ACTIONS(12445), + [anon_sym_BSLASHGlstext] = ACTIONS(12445), + [anon_sym_BSLASHGLStext] = ACTIONS(12445), + [anon_sym_BSLASHglsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12445), + [anon_sym_BSLASHglsplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSplural] = ACTIONS(12445), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12445), + [anon_sym_BSLASHglsname] = ACTIONS(12445), + [anon_sym_BSLASHGlsname] = ACTIONS(12445), + [anon_sym_BSLASHGLSname] = ACTIONS(12445), + [anon_sym_BSLASHglssymbol] = ACTIONS(12445), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12445), + [anon_sym_BSLASHglsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12445), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12445), + [anon_sym_BSLASHglsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12445), + [anon_sym_BSLASHglsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12445), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12445), + [anon_sym_BSLASHglsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12445), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12445), + [anon_sym_BSLASHglsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12445), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12445), + [anon_sym_BSLASHnewacronym] = ACTIONS(12445), + [anon_sym_BSLASHacrshort] = ACTIONS(12445), + [anon_sym_BSLASHAcrshort] = ACTIONS(12445), + [anon_sym_BSLASHACRshort] = ACTIONS(12445), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12445), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12445), + [anon_sym_BSLASHacrlong] = ACTIONS(12445), + [anon_sym_BSLASHAcrlong] = ACTIONS(12445), + [anon_sym_BSLASHACRlong] = ACTIONS(12445), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12445), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12445), + [anon_sym_BSLASHacrfull] = ACTIONS(12445), + [anon_sym_BSLASHAcrfull] = ACTIONS(12445), + [anon_sym_BSLASHACRfull] = ACTIONS(12445), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12445), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12445), + [anon_sym_BSLASHacs] = ACTIONS(12445), + [anon_sym_BSLASHAcs] = ACTIONS(12445), + [anon_sym_BSLASHacsp] = ACTIONS(12445), + [anon_sym_BSLASHAcsp] = ACTIONS(12445), + [anon_sym_BSLASHacl] = ACTIONS(12445), + [anon_sym_BSLASHAcl] = ACTIONS(12445), + [anon_sym_BSLASHaclp] = ACTIONS(12445), + [anon_sym_BSLASHAclp] = ACTIONS(12445), + [anon_sym_BSLASHacf] = ACTIONS(12445), + [anon_sym_BSLASHAcf] = ACTIONS(12445), + [anon_sym_BSLASHacfp] = ACTIONS(12445), + [anon_sym_BSLASHAcfp] = ACTIONS(12445), + [anon_sym_BSLASHac] = ACTIONS(12445), + [anon_sym_BSLASHAc] = ACTIONS(12445), + [anon_sym_BSLASHacp] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12445), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12445), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12445), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12445), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12445), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12445), + [anon_sym_BSLASHcolor] = ACTIONS(12445), + [anon_sym_BSLASHcolorbox] = ACTIONS(12445), + [anon_sym_BSLASHtextcolor] = ACTIONS(12445), + [anon_sym_BSLASHpagecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12445), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12445), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12445), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12445), + }, + [1958] = { + [sym_generic_command_name] = ACTIONS(12449), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12447), + [anon_sym_RBRACK] = ACTIONS(12447), + [anon_sym_LBRACE] = ACTIONS(12447), + [anon_sym_RBRACE] = ACTIONS(12447), + [anon_sym_LPAREN] = ACTIONS(12447), + [anon_sym_COMMA] = ACTIONS(12447), + [anon_sym_EQ] = ACTIONS(12447), + [sym_word] = ACTIONS(12447), + [sym_param] = ACTIONS(12447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12447), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12447), + [anon_sym_DOLLAR] = ACTIONS(12449), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12447), + [anon_sym_BSLASHbegin] = ACTIONS(12449), + [anon_sym_BSLASHcaption] = ACTIONS(12449), + [anon_sym_BSLASHcite] = ACTIONS(12449), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCite] = ACTIONS(12449), + [anon_sym_BSLASHnocite] = ACTIONS(12449), + [anon_sym_BSLASHcitet] = ACTIONS(12449), + [anon_sym_BSLASHcitep] = ACTIONS(12449), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteauthor] = ACTIONS(12449), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12449), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitetitle] = ACTIONS(12449), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteyear] = ACTIONS(12449), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12447), + [anon_sym_BSLASHcitedate] = ACTIONS(12449), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12447), + [anon_sym_BSLASHciteurl] = ACTIONS(12449), + [anon_sym_BSLASHfullcite] = ACTIONS(12449), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12449), + [anon_sym_BSLASHcitealt] = ACTIONS(12449), + [anon_sym_BSLASHcitealp] = ACTIONS(12449), + [anon_sym_BSLASHcitetext] = ACTIONS(12449), + [anon_sym_BSLASHparencite] = ACTIONS(12449), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHParencite] = ACTIONS(12449), + [anon_sym_BSLASHfootcite] = ACTIONS(12449), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12449), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12449), + [anon_sym_BSLASHtextcite] = ACTIONS(12449), + [anon_sym_BSLASHTextcite] = ACTIONS(12449), + [anon_sym_BSLASHsmartcite] = ACTIONS(12449), + [anon_sym_BSLASHSmartcite] = ACTIONS(12449), + [anon_sym_BSLASHsupercite] = ACTIONS(12449), + [anon_sym_BSLASHautocite] = ACTIONS(12449), + [anon_sym_BSLASHAutocite] = ACTIONS(12449), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12447), + [anon_sym_BSLASHvolcite] = ACTIONS(12449), + [anon_sym_BSLASHVolcite] = ACTIONS(12449), + [anon_sym_BSLASHpvolcite] = ACTIONS(12449), + [anon_sym_BSLASHPvolcite] = ACTIONS(12449), + [anon_sym_BSLASHfvolcite] = ACTIONS(12449), + [anon_sym_BSLASHftvolcite] = ACTIONS(12449), + [anon_sym_BSLASHsvolcite] = ACTIONS(12449), + [anon_sym_BSLASHSvolcite] = ACTIONS(12449), + [anon_sym_BSLASHtvolcite] = ACTIONS(12449), + [anon_sym_BSLASHTvolcite] = ACTIONS(12449), + [anon_sym_BSLASHavolcite] = ACTIONS(12449), + [anon_sym_BSLASHAvolcite] = ACTIONS(12449), + [anon_sym_BSLASHnotecite] = ACTIONS(12449), + [anon_sym_BSLASHpnotecite] = ACTIONS(12449), + [anon_sym_BSLASHPnotecite] = ACTIONS(12449), + [anon_sym_BSLASHfnotecite] = ACTIONS(12449), + [anon_sym_BSLASHusepackage] = ACTIONS(12449), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12449), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12449), + [anon_sym_BSLASHinclude] = ACTIONS(12449), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12449), + [anon_sym_BSLASHinput] = ACTIONS(12449), + [anon_sym_BSLASHsubfile] = ACTIONS(12449), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12449), + [anon_sym_BSLASHbibliography] = ACTIONS(12449), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12449), + [anon_sym_BSLASHincludesvg] = ACTIONS(12449), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12449), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12449), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12449), + [anon_sym_BSLASHimport] = ACTIONS(12449), + [anon_sym_BSLASHsubimport] = ACTIONS(12449), + [anon_sym_BSLASHinputfrom] = ACTIONS(12449), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12449), + [anon_sym_BSLASHincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12449), + [anon_sym_BSLASHlabel] = ACTIONS(12449), + [anon_sym_BSLASHref] = ACTIONS(12449), + [anon_sym_BSLASHvref] = ACTIONS(12449), + [anon_sym_BSLASHVref] = ACTIONS(12449), + [anon_sym_BSLASHautoref] = ACTIONS(12449), + [anon_sym_BSLASHpageref] = ACTIONS(12449), + [anon_sym_BSLASHcref] = ACTIONS(12449), + [anon_sym_BSLASHCref] = ACTIONS(12449), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnameCref] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12449), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12449), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12449), + [anon_sym_BSLASHlabelcref] = ACTIONS(12449), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12449), + [anon_sym_BSLASHeqref] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange] = ACTIONS(12449), + [anon_sym_BSLASHCrefrange] = ACTIONS(12449), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewlabel] = ACTIONS(12449), + [anon_sym_BSLASHnewcommand] = ACTIONS(12449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12449), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12449), + [anon_sym_BSLASHgls] = ACTIONS(12449), + [anon_sym_BSLASHGls] = ACTIONS(12449), + [anon_sym_BSLASHGLS] = ACTIONS(12449), + [anon_sym_BSLASHglspl] = ACTIONS(12449), + [anon_sym_BSLASHGlspl] = ACTIONS(12449), + [anon_sym_BSLASHGLSpl] = ACTIONS(12449), + [anon_sym_BSLASHglsdisp] = ACTIONS(12449), + [anon_sym_BSLASHglslink] = ACTIONS(12449), + [anon_sym_BSLASHglstext] = ACTIONS(12449), + [anon_sym_BSLASHGlstext] = ACTIONS(12449), + [anon_sym_BSLASHGLStext] = ACTIONS(12449), + [anon_sym_BSLASHglsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12449), + [anon_sym_BSLASHglsplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSplural] = ACTIONS(12449), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12449), + [anon_sym_BSLASHglsname] = ACTIONS(12449), + [anon_sym_BSLASHGlsname] = ACTIONS(12449), + [anon_sym_BSLASHGLSname] = ACTIONS(12449), + [anon_sym_BSLASHglssymbol] = ACTIONS(12449), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12449), + [anon_sym_BSLASHglsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12449), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12449), + [anon_sym_BSLASHglsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12449), + [anon_sym_BSLASHglsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12449), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12449), + [anon_sym_BSLASHglsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12449), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12449), + [anon_sym_BSLASHglsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12449), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12449), + [anon_sym_BSLASHnewacronym] = ACTIONS(12449), + [anon_sym_BSLASHacrshort] = ACTIONS(12449), + [anon_sym_BSLASHAcrshort] = ACTIONS(12449), + [anon_sym_BSLASHACRshort] = ACTIONS(12449), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12449), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12449), + [anon_sym_BSLASHacrlong] = ACTIONS(12449), + [anon_sym_BSLASHAcrlong] = ACTIONS(12449), + [anon_sym_BSLASHACRlong] = ACTIONS(12449), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12449), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12449), + [anon_sym_BSLASHacrfull] = ACTIONS(12449), + [anon_sym_BSLASHAcrfull] = ACTIONS(12449), + [anon_sym_BSLASHACRfull] = ACTIONS(12449), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12449), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12449), + [anon_sym_BSLASHacs] = ACTIONS(12449), + [anon_sym_BSLASHAcs] = ACTIONS(12449), + [anon_sym_BSLASHacsp] = ACTIONS(12449), + [anon_sym_BSLASHAcsp] = ACTIONS(12449), + [anon_sym_BSLASHacl] = ACTIONS(12449), + [anon_sym_BSLASHAcl] = ACTIONS(12449), + [anon_sym_BSLASHaclp] = ACTIONS(12449), + [anon_sym_BSLASHAclp] = ACTIONS(12449), + [anon_sym_BSLASHacf] = ACTIONS(12449), + [anon_sym_BSLASHAcf] = ACTIONS(12449), + [anon_sym_BSLASHacfp] = ACTIONS(12449), + [anon_sym_BSLASHAcfp] = ACTIONS(12449), + [anon_sym_BSLASHac] = ACTIONS(12449), + [anon_sym_BSLASHAc] = ACTIONS(12449), + [anon_sym_BSLASHacp] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12449), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12449), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12449), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12449), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12449), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12449), + [anon_sym_BSLASHcolor] = ACTIONS(12449), + [anon_sym_BSLASHcolorbox] = ACTIONS(12449), + [anon_sym_BSLASHtextcolor] = ACTIONS(12449), + [anon_sym_BSLASHpagecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12449), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12449), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12449), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12449), + }, + [1959] = { + [sym_generic_command_name] = ACTIONS(12453), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12451), + [anon_sym_RBRACK] = ACTIONS(12451), + [anon_sym_LBRACE] = ACTIONS(12451), + [anon_sym_RBRACE] = ACTIONS(12451), + [anon_sym_LPAREN] = ACTIONS(12451), + [anon_sym_COMMA] = ACTIONS(12451), + [anon_sym_EQ] = ACTIONS(12451), + [sym_word] = ACTIONS(12451), + [sym_param] = ACTIONS(12451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12451), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12451), + [anon_sym_DOLLAR] = ACTIONS(12453), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12451), + [anon_sym_BSLASHbegin] = ACTIONS(12453), + [anon_sym_BSLASHcaption] = ACTIONS(12453), + [anon_sym_BSLASHcite] = ACTIONS(12453), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCite] = ACTIONS(12453), + [anon_sym_BSLASHnocite] = ACTIONS(12453), + [anon_sym_BSLASHcitet] = ACTIONS(12453), + [anon_sym_BSLASHcitep] = ACTIONS(12453), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteauthor] = ACTIONS(12453), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12453), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitetitle] = ACTIONS(12453), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteyear] = ACTIONS(12453), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12451), + [anon_sym_BSLASHcitedate] = ACTIONS(12453), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12451), + [anon_sym_BSLASHciteurl] = ACTIONS(12453), + [anon_sym_BSLASHfullcite] = ACTIONS(12453), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12453), + [anon_sym_BSLASHcitealt] = ACTIONS(12453), + [anon_sym_BSLASHcitealp] = ACTIONS(12453), + [anon_sym_BSLASHcitetext] = ACTIONS(12453), + [anon_sym_BSLASHparencite] = ACTIONS(12453), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHParencite] = ACTIONS(12453), + [anon_sym_BSLASHfootcite] = ACTIONS(12453), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12453), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12453), + [anon_sym_BSLASHtextcite] = ACTIONS(12453), + [anon_sym_BSLASHTextcite] = ACTIONS(12453), + [anon_sym_BSLASHsmartcite] = ACTIONS(12453), + [anon_sym_BSLASHSmartcite] = ACTIONS(12453), + [anon_sym_BSLASHsupercite] = ACTIONS(12453), + [anon_sym_BSLASHautocite] = ACTIONS(12453), + [anon_sym_BSLASHAutocite] = ACTIONS(12453), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12451), + [anon_sym_BSLASHvolcite] = ACTIONS(12453), + [anon_sym_BSLASHVolcite] = ACTIONS(12453), + [anon_sym_BSLASHpvolcite] = ACTIONS(12453), + [anon_sym_BSLASHPvolcite] = ACTIONS(12453), + [anon_sym_BSLASHfvolcite] = ACTIONS(12453), + [anon_sym_BSLASHftvolcite] = ACTIONS(12453), + [anon_sym_BSLASHsvolcite] = ACTIONS(12453), + [anon_sym_BSLASHSvolcite] = ACTIONS(12453), + [anon_sym_BSLASHtvolcite] = ACTIONS(12453), + [anon_sym_BSLASHTvolcite] = ACTIONS(12453), + [anon_sym_BSLASHavolcite] = ACTIONS(12453), + [anon_sym_BSLASHAvolcite] = ACTIONS(12453), + [anon_sym_BSLASHnotecite] = ACTIONS(12453), + [anon_sym_BSLASHpnotecite] = ACTIONS(12453), + [anon_sym_BSLASHPnotecite] = ACTIONS(12453), + [anon_sym_BSLASHfnotecite] = ACTIONS(12453), + [anon_sym_BSLASHusepackage] = ACTIONS(12453), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12453), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12453), + [anon_sym_BSLASHinclude] = ACTIONS(12453), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12453), + [anon_sym_BSLASHinput] = ACTIONS(12453), + [anon_sym_BSLASHsubfile] = ACTIONS(12453), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12453), + [anon_sym_BSLASHbibliography] = ACTIONS(12453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12453), + [anon_sym_BSLASHincludesvg] = ACTIONS(12453), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12453), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12453), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12453), + [anon_sym_BSLASHimport] = ACTIONS(12453), + [anon_sym_BSLASHsubimport] = ACTIONS(12453), + [anon_sym_BSLASHinputfrom] = ACTIONS(12453), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12453), + [anon_sym_BSLASHincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12453), + [anon_sym_BSLASHlabel] = ACTIONS(12453), + [anon_sym_BSLASHref] = ACTIONS(12453), + [anon_sym_BSLASHvref] = ACTIONS(12453), + [anon_sym_BSLASHVref] = ACTIONS(12453), + [anon_sym_BSLASHautoref] = ACTIONS(12453), + [anon_sym_BSLASHpageref] = ACTIONS(12453), + [anon_sym_BSLASHcref] = ACTIONS(12453), + [anon_sym_BSLASHCref] = ACTIONS(12453), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnameCref] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12453), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12453), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12453), + [anon_sym_BSLASHlabelcref] = ACTIONS(12453), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12453), + [anon_sym_BSLASHeqref] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange] = ACTIONS(12453), + [anon_sym_BSLASHCrefrange] = ACTIONS(12453), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewlabel] = ACTIONS(12453), + [anon_sym_BSLASHnewcommand] = ACTIONS(12453), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12453), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12453), + [anon_sym_BSLASHgls] = ACTIONS(12453), + [anon_sym_BSLASHGls] = ACTIONS(12453), + [anon_sym_BSLASHGLS] = ACTIONS(12453), + [anon_sym_BSLASHglspl] = ACTIONS(12453), + [anon_sym_BSLASHGlspl] = ACTIONS(12453), + [anon_sym_BSLASHGLSpl] = ACTIONS(12453), + [anon_sym_BSLASHglsdisp] = ACTIONS(12453), + [anon_sym_BSLASHglslink] = ACTIONS(12453), + [anon_sym_BSLASHglstext] = ACTIONS(12453), + [anon_sym_BSLASHGlstext] = ACTIONS(12453), + [anon_sym_BSLASHGLStext] = ACTIONS(12453), + [anon_sym_BSLASHglsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12453), + [anon_sym_BSLASHglsplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSplural] = ACTIONS(12453), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12453), + [anon_sym_BSLASHglsname] = ACTIONS(12453), + [anon_sym_BSLASHGlsname] = ACTIONS(12453), + [anon_sym_BSLASHGLSname] = ACTIONS(12453), + [anon_sym_BSLASHglssymbol] = ACTIONS(12453), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12453), + [anon_sym_BSLASHglsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12453), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12453), + [anon_sym_BSLASHglsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12453), + [anon_sym_BSLASHglsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12453), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12453), + [anon_sym_BSLASHglsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12453), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12453), + [anon_sym_BSLASHglsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12453), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12453), + [anon_sym_BSLASHnewacronym] = ACTIONS(12453), + [anon_sym_BSLASHacrshort] = ACTIONS(12453), + [anon_sym_BSLASHAcrshort] = ACTIONS(12453), + [anon_sym_BSLASHACRshort] = ACTIONS(12453), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12453), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12453), + [anon_sym_BSLASHacrlong] = ACTIONS(12453), + [anon_sym_BSLASHAcrlong] = ACTIONS(12453), + [anon_sym_BSLASHACRlong] = ACTIONS(12453), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12453), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12453), + [anon_sym_BSLASHacrfull] = ACTIONS(12453), + [anon_sym_BSLASHAcrfull] = ACTIONS(12453), + [anon_sym_BSLASHACRfull] = ACTIONS(12453), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12453), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12453), + [anon_sym_BSLASHacs] = ACTIONS(12453), + [anon_sym_BSLASHAcs] = ACTIONS(12453), + [anon_sym_BSLASHacsp] = ACTIONS(12453), + [anon_sym_BSLASHAcsp] = ACTIONS(12453), + [anon_sym_BSLASHacl] = ACTIONS(12453), + [anon_sym_BSLASHAcl] = ACTIONS(12453), + [anon_sym_BSLASHaclp] = ACTIONS(12453), + [anon_sym_BSLASHAclp] = ACTIONS(12453), + [anon_sym_BSLASHacf] = ACTIONS(12453), + [anon_sym_BSLASHAcf] = ACTIONS(12453), + [anon_sym_BSLASHacfp] = ACTIONS(12453), + [anon_sym_BSLASHAcfp] = ACTIONS(12453), + [anon_sym_BSLASHac] = ACTIONS(12453), + [anon_sym_BSLASHAc] = ACTIONS(12453), + [anon_sym_BSLASHacp] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12453), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12453), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12453), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12453), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12453), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12453), + [anon_sym_BSLASHcolor] = ACTIONS(12453), + [anon_sym_BSLASHcolorbox] = ACTIONS(12453), + [anon_sym_BSLASHtextcolor] = ACTIONS(12453), + [anon_sym_BSLASHpagecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12453), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12453), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12453), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12453), + }, + [1960] = { + [sym_generic_command_name] = ACTIONS(12461), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12459), + [anon_sym_RBRACK] = ACTIONS(12459), + [anon_sym_LBRACE] = ACTIONS(12459), + [anon_sym_RBRACE] = ACTIONS(12459), + [anon_sym_LPAREN] = ACTIONS(12459), + [anon_sym_COMMA] = ACTIONS(12459), + [anon_sym_EQ] = ACTIONS(12459), + [sym_word] = ACTIONS(12459), + [sym_param] = ACTIONS(12459), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12459), + [anon_sym_DOLLAR] = ACTIONS(12461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12459), + [anon_sym_BSLASHbegin] = ACTIONS(12461), + [anon_sym_BSLASHcaption] = ACTIONS(12461), + [anon_sym_BSLASHcite] = ACTIONS(12461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCite] = ACTIONS(12461), + [anon_sym_BSLASHnocite] = ACTIONS(12461), + [anon_sym_BSLASHcitet] = ACTIONS(12461), + [anon_sym_BSLASHcitep] = ACTIONS(12461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteauthor] = ACTIONS(12461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitetitle] = ACTIONS(12461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteyear] = ACTIONS(12461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12459), + [anon_sym_BSLASHcitedate] = ACTIONS(12461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12459), + [anon_sym_BSLASHciteurl] = ACTIONS(12461), + [anon_sym_BSLASHfullcite] = ACTIONS(12461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12461), + [anon_sym_BSLASHcitealt] = ACTIONS(12461), + [anon_sym_BSLASHcitealp] = ACTIONS(12461), + [anon_sym_BSLASHcitetext] = ACTIONS(12461), + [anon_sym_BSLASHparencite] = ACTIONS(12461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHParencite] = ACTIONS(12461), + [anon_sym_BSLASHfootcite] = ACTIONS(12461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12461), + [anon_sym_BSLASHtextcite] = ACTIONS(12461), + [anon_sym_BSLASHTextcite] = ACTIONS(12461), + [anon_sym_BSLASHsmartcite] = ACTIONS(12461), + [anon_sym_BSLASHSmartcite] = ACTIONS(12461), + [anon_sym_BSLASHsupercite] = ACTIONS(12461), + [anon_sym_BSLASHautocite] = ACTIONS(12461), + [anon_sym_BSLASHAutocite] = ACTIONS(12461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12459), + [anon_sym_BSLASHvolcite] = ACTIONS(12461), + [anon_sym_BSLASHVolcite] = ACTIONS(12461), + [anon_sym_BSLASHpvolcite] = ACTIONS(12461), + [anon_sym_BSLASHPvolcite] = ACTIONS(12461), + [anon_sym_BSLASHfvolcite] = ACTIONS(12461), + [anon_sym_BSLASHftvolcite] = ACTIONS(12461), + [anon_sym_BSLASHsvolcite] = ACTIONS(12461), + [anon_sym_BSLASHSvolcite] = ACTIONS(12461), + [anon_sym_BSLASHtvolcite] = ACTIONS(12461), + [anon_sym_BSLASHTvolcite] = ACTIONS(12461), + [anon_sym_BSLASHavolcite] = ACTIONS(12461), + [anon_sym_BSLASHAvolcite] = ACTIONS(12461), + [anon_sym_BSLASHnotecite] = ACTIONS(12461), + [anon_sym_BSLASHpnotecite] = ACTIONS(12461), + [anon_sym_BSLASHPnotecite] = ACTIONS(12461), + [anon_sym_BSLASHfnotecite] = ACTIONS(12461), + [anon_sym_BSLASHusepackage] = ACTIONS(12461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12461), + [anon_sym_BSLASHinclude] = ACTIONS(12461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12461), + [anon_sym_BSLASHinput] = ACTIONS(12461), + [anon_sym_BSLASHsubfile] = ACTIONS(12461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12461), + [anon_sym_BSLASHbibliography] = ACTIONS(12461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12461), + [anon_sym_BSLASHincludesvg] = ACTIONS(12461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12461), + [anon_sym_BSLASHimport] = ACTIONS(12461), + [anon_sym_BSLASHsubimport] = ACTIONS(12461), + [anon_sym_BSLASHinputfrom] = ACTIONS(12461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12461), + [anon_sym_BSLASHincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12461), + [anon_sym_BSLASHlabel] = ACTIONS(12461), + [anon_sym_BSLASHref] = ACTIONS(12461), + [anon_sym_BSLASHvref] = ACTIONS(12461), + [anon_sym_BSLASHVref] = ACTIONS(12461), + [anon_sym_BSLASHautoref] = ACTIONS(12461), + [anon_sym_BSLASHpageref] = ACTIONS(12461), + [anon_sym_BSLASHcref] = ACTIONS(12461), + [anon_sym_BSLASHCref] = ACTIONS(12461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnameCref] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12461), + [anon_sym_BSLASHlabelcref] = ACTIONS(12461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12461), + [anon_sym_BSLASHeqref] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange] = ACTIONS(12461), + [anon_sym_BSLASHCrefrange] = ACTIONS(12461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewlabel] = ACTIONS(12461), + [anon_sym_BSLASHnewcommand] = ACTIONS(12461), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12459), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12461), + [anon_sym_BSLASHgls] = ACTIONS(12461), + [anon_sym_BSLASHGls] = ACTIONS(12461), + [anon_sym_BSLASHGLS] = ACTIONS(12461), + [anon_sym_BSLASHglspl] = ACTIONS(12461), + [anon_sym_BSLASHGlspl] = ACTIONS(12461), + [anon_sym_BSLASHGLSpl] = ACTIONS(12461), + [anon_sym_BSLASHglsdisp] = ACTIONS(12461), + [anon_sym_BSLASHglslink] = ACTIONS(12461), + [anon_sym_BSLASHglstext] = ACTIONS(12461), + [anon_sym_BSLASHGlstext] = ACTIONS(12461), + [anon_sym_BSLASHGLStext] = ACTIONS(12461), + [anon_sym_BSLASHglsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12461), + [anon_sym_BSLASHglsplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSplural] = ACTIONS(12461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12461), + [anon_sym_BSLASHglsname] = ACTIONS(12461), + [anon_sym_BSLASHGlsname] = ACTIONS(12461), + [anon_sym_BSLASHGLSname] = ACTIONS(12461), + [anon_sym_BSLASHglssymbol] = ACTIONS(12461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12461), + [anon_sym_BSLASHglsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12461), + [anon_sym_BSLASHglsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12461), + [anon_sym_BSLASHglsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12461), + [anon_sym_BSLASHglsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12461), + [anon_sym_BSLASHglsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12461), + [anon_sym_BSLASHnewacronym] = ACTIONS(12461), + [anon_sym_BSLASHacrshort] = ACTIONS(12461), + [anon_sym_BSLASHAcrshort] = ACTIONS(12461), + [anon_sym_BSLASHACRshort] = ACTIONS(12461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12461), + [anon_sym_BSLASHacrlong] = ACTIONS(12461), + [anon_sym_BSLASHAcrlong] = ACTIONS(12461), + [anon_sym_BSLASHACRlong] = ACTIONS(12461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12461), + [anon_sym_BSLASHacrfull] = ACTIONS(12461), + [anon_sym_BSLASHAcrfull] = ACTIONS(12461), + [anon_sym_BSLASHACRfull] = ACTIONS(12461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12461), + [anon_sym_BSLASHacs] = ACTIONS(12461), + [anon_sym_BSLASHAcs] = ACTIONS(12461), + [anon_sym_BSLASHacsp] = ACTIONS(12461), + [anon_sym_BSLASHAcsp] = ACTIONS(12461), + [anon_sym_BSLASHacl] = ACTIONS(12461), + [anon_sym_BSLASHAcl] = ACTIONS(12461), + [anon_sym_BSLASHaclp] = ACTIONS(12461), + [anon_sym_BSLASHAclp] = ACTIONS(12461), + [anon_sym_BSLASHacf] = ACTIONS(12461), + [anon_sym_BSLASHAcf] = ACTIONS(12461), + [anon_sym_BSLASHacfp] = ACTIONS(12461), + [anon_sym_BSLASHAcfp] = ACTIONS(12461), + [anon_sym_BSLASHac] = ACTIONS(12461), + [anon_sym_BSLASHAc] = ACTIONS(12461), + [anon_sym_BSLASHacp] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12461), + [anon_sym_BSLASHcolor] = ACTIONS(12461), + [anon_sym_BSLASHcolorbox] = ACTIONS(12461), + [anon_sym_BSLASHtextcolor] = ACTIONS(12461), + [anon_sym_BSLASHpagecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12461), + }, + [1961] = { + [sym_generic_command_name] = ACTIONS(12465), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12463), + [anon_sym_RBRACK] = ACTIONS(12463), + [anon_sym_LBRACE] = ACTIONS(12463), + [anon_sym_RBRACE] = ACTIONS(12463), + [anon_sym_LPAREN] = ACTIONS(12463), + [anon_sym_COMMA] = ACTIONS(12463), + [anon_sym_EQ] = ACTIONS(12463), + [sym_word] = ACTIONS(12463), + [sym_param] = ACTIONS(12463), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12463), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12463), + [anon_sym_DOLLAR] = ACTIONS(12465), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12463), + [anon_sym_BSLASHbegin] = ACTIONS(12465), + [anon_sym_BSLASHcaption] = ACTIONS(12465), + [anon_sym_BSLASHcite] = ACTIONS(12465), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCite] = ACTIONS(12465), + [anon_sym_BSLASHnocite] = ACTIONS(12465), + [anon_sym_BSLASHcitet] = ACTIONS(12465), + [anon_sym_BSLASHcitep] = ACTIONS(12465), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteauthor] = ACTIONS(12465), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12465), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitetitle] = ACTIONS(12465), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteyear] = ACTIONS(12465), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12463), + [anon_sym_BSLASHcitedate] = ACTIONS(12465), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12463), + [anon_sym_BSLASHciteurl] = ACTIONS(12465), + [anon_sym_BSLASHfullcite] = ACTIONS(12465), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12465), + [anon_sym_BSLASHcitealt] = ACTIONS(12465), + [anon_sym_BSLASHcitealp] = ACTIONS(12465), + [anon_sym_BSLASHcitetext] = ACTIONS(12465), + [anon_sym_BSLASHparencite] = ACTIONS(12465), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHParencite] = ACTIONS(12465), + [anon_sym_BSLASHfootcite] = ACTIONS(12465), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12465), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12465), + [anon_sym_BSLASHtextcite] = ACTIONS(12465), + [anon_sym_BSLASHTextcite] = ACTIONS(12465), + [anon_sym_BSLASHsmartcite] = ACTIONS(12465), + [anon_sym_BSLASHSmartcite] = ACTIONS(12465), + [anon_sym_BSLASHsupercite] = ACTIONS(12465), + [anon_sym_BSLASHautocite] = ACTIONS(12465), + [anon_sym_BSLASHAutocite] = ACTIONS(12465), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12463), + [anon_sym_BSLASHvolcite] = ACTIONS(12465), + [anon_sym_BSLASHVolcite] = ACTIONS(12465), + [anon_sym_BSLASHpvolcite] = ACTIONS(12465), + [anon_sym_BSLASHPvolcite] = ACTIONS(12465), + [anon_sym_BSLASHfvolcite] = ACTIONS(12465), + [anon_sym_BSLASHftvolcite] = ACTIONS(12465), + [anon_sym_BSLASHsvolcite] = ACTIONS(12465), + [anon_sym_BSLASHSvolcite] = ACTIONS(12465), + [anon_sym_BSLASHtvolcite] = ACTIONS(12465), + [anon_sym_BSLASHTvolcite] = ACTIONS(12465), + [anon_sym_BSLASHavolcite] = ACTIONS(12465), + [anon_sym_BSLASHAvolcite] = ACTIONS(12465), + [anon_sym_BSLASHnotecite] = ACTIONS(12465), + [anon_sym_BSLASHpnotecite] = ACTIONS(12465), + [anon_sym_BSLASHPnotecite] = ACTIONS(12465), + [anon_sym_BSLASHfnotecite] = ACTIONS(12465), + [anon_sym_BSLASHusepackage] = ACTIONS(12465), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12465), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12465), + [anon_sym_BSLASHinclude] = ACTIONS(12465), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12465), + [anon_sym_BSLASHinput] = ACTIONS(12465), + [anon_sym_BSLASHsubfile] = ACTIONS(12465), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12465), + [anon_sym_BSLASHbibliography] = ACTIONS(12465), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12465), + [anon_sym_BSLASHincludesvg] = ACTIONS(12465), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12465), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12465), + [anon_sym_BSLASHimport] = ACTIONS(12465), + [anon_sym_BSLASHsubimport] = ACTIONS(12465), + [anon_sym_BSLASHinputfrom] = ACTIONS(12465), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12465), + [anon_sym_BSLASHincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12465), + [anon_sym_BSLASHlabel] = ACTIONS(12465), + [anon_sym_BSLASHref] = ACTIONS(12465), + [anon_sym_BSLASHvref] = ACTIONS(12465), + [anon_sym_BSLASHVref] = ACTIONS(12465), + [anon_sym_BSLASHautoref] = ACTIONS(12465), + [anon_sym_BSLASHpageref] = ACTIONS(12465), + [anon_sym_BSLASHcref] = ACTIONS(12465), + [anon_sym_BSLASHCref] = ACTIONS(12465), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnameCref] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12465), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12465), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12465), + [anon_sym_BSLASHlabelcref] = ACTIONS(12465), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12465), + [anon_sym_BSLASHeqref] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange] = ACTIONS(12465), + [anon_sym_BSLASHCrefrange] = ACTIONS(12465), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewlabel] = ACTIONS(12465), + [anon_sym_BSLASHnewcommand] = ACTIONS(12465), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12465), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12463), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12465), + [anon_sym_BSLASHgls] = ACTIONS(12465), + [anon_sym_BSLASHGls] = ACTIONS(12465), + [anon_sym_BSLASHGLS] = ACTIONS(12465), + [anon_sym_BSLASHglspl] = ACTIONS(12465), + [anon_sym_BSLASHGlspl] = ACTIONS(12465), + [anon_sym_BSLASHGLSpl] = ACTIONS(12465), + [anon_sym_BSLASHglsdisp] = ACTIONS(12465), + [anon_sym_BSLASHglslink] = ACTIONS(12465), + [anon_sym_BSLASHglstext] = ACTIONS(12465), + [anon_sym_BSLASHGlstext] = ACTIONS(12465), + [anon_sym_BSLASHGLStext] = ACTIONS(12465), + [anon_sym_BSLASHglsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12465), + [anon_sym_BSLASHglsplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSplural] = ACTIONS(12465), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12465), + [anon_sym_BSLASHglsname] = ACTIONS(12465), + [anon_sym_BSLASHGlsname] = ACTIONS(12465), + [anon_sym_BSLASHGLSname] = ACTIONS(12465), + [anon_sym_BSLASHglssymbol] = ACTIONS(12465), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12465), + [anon_sym_BSLASHglsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12465), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12465), + [anon_sym_BSLASHglsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12465), + [anon_sym_BSLASHglsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12465), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12465), + [anon_sym_BSLASHglsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12465), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12465), + [anon_sym_BSLASHglsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12465), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12465), + [anon_sym_BSLASHnewacronym] = ACTIONS(12465), + [anon_sym_BSLASHacrshort] = ACTIONS(12465), + [anon_sym_BSLASHAcrshort] = ACTIONS(12465), + [anon_sym_BSLASHACRshort] = ACTIONS(12465), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12465), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12465), + [anon_sym_BSLASHacrlong] = ACTIONS(12465), + [anon_sym_BSLASHAcrlong] = ACTIONS(12465), + [anon_sym_BSLASHACRlong] = ACTIONS(12465), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12465), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12465), + [anon_sym_BSLASHacrfull] = ACTIONS(12465), + [anon_sym_BSLASHAcrfull] = ACTIONS(12465), + [anon_sym_BSLASHACRfull] = ACTIONS(12465), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12465), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12465), + [anon_sym_BSLASHacs] = ACTIONS(12465), + [anon_sym_BSLASHAcs] = ACTIONS(12465), + [anon_sym_BSLASHacsp] = ACTIONS(12465), + [anon_sym_BSLASHAcsp] = ACTIONS(12465), + [anon_sym_BSLASHacl] = ACTIONS(12465), + [anon_sym_BSLASHAcl] = ACTIONS(12465), + [anon_sym_BSLASHaclp] = ACTIONS(12465), + [anon_sym_BSLASHAclp] = ACTIONS(12465), + [anon_sym_BSLASHacf] = ACTIONS(12465), + [anon_sym_BSLASHAcf] = ACTIONS(12465), + [anon_sym_BSLASHacfp] = ACTIONS(12465), + [anon_sym_BSLASHAcfp] = ACTIONS(12465), + [anon_sym_BSLASHac] = ACTIONS(12465), + [anon_sym_BSLASHAc] = ACTIONS(12465), + [anon_sym_BSLASHacp] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12465), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12465), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12465), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12465), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12465), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12465), + [anon_sym_BSLASHcolor] = ACTIONS(12465), + [anon_sym_BSLASHcolorbox] = ACTIONS(12465), + [anon_sym_BSLASHtextcolor] = ACTIONS(12465), + [anon_sym_BSLASHpagecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12465), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12465), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12465), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12465), + }, + [1962] = { + [sym_generic_command_name] = ACTIONS(12469), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12467), + [anon_sym_RBRACK] = ACTIONS(12467), + [anon_sym_LBRACE] = ACTIONS(12467), + [anon_sym_RBRACE] = ACTIONS(12467), + [anon_sym_LPAREN] = ACTIONS(12467), + [anon_sym_COMMA] = ACTIONS(12467), + [anon_sym_EQ] = ACTIONS(12467), + [sym_word] = ACTIONS(12467), + [sym_param] = ACTIONS(12467), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12467), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12467), + [anon_sym_DOLLAR] = ACTIONS(12469), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12467), + [anon_sym_BSLASHbegin] = ACTIONS(12469), + [anon_sym_BSLASHcaption] = ACTIONS(12469), + [anon_sym_BSLASHcite] = ACTIONS(12469), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCite] = ACTIONS(12469), + [anon_sym_BSLASHnocite] = ACTIONS(12469), + [anon_sym_BSLASHcitet] = ACTIONS(12469), + [anon_sym_BSLASHcitep] = ACTIONS(12469), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteauthor] = ACTIONS(12469), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12469), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitetitle] = ACTIONS(12469), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteyear] = ACTIONS(12469), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12467), + [anon_sym_BSLASHcitedate] = ACTIONS(12469), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12467), + [anon_sym_BSLASHciteurl] = ACTIONS(12469), + [anon_sym_BSLASHfullcite] = ACTIONS(12469), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12469), + [anon_sym_BSLASHcitealt] = ACTIONS(12469), + [anon_sym_BSLASHcitealp] = ACTIONS(12469), + [anon_sym_BSLASHcitetext] = ACTIONS(12469), + [anon_sym_BSLASHparencite] = ACTIONS(12469), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHParencite] = ACTIONS(12469), + [anon_sym_BSLASHfootcite] = ACTIONS(12469), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12469), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12469), + [anon_sym_BSLASHtextcite] = ACTIONS(12469), + [anon_sym_BSLASHTextcite] = ACTIONS(12469), + [anon_sym_BSLASHsmartcite] = ACTIONS(12469), + [anon_sym_BSLASHSmartcite] = ACTIONS(12469), + [anon_sym_BSLASHsupercite] = ACTIONS(12469), + [anon_sym_BSLASHautocite] = ACTIONS(12469), + [anon_sym_BSLASHAutocite] = ACTIONS(12469), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12467), + [anon_sym_BSLASHvolcite] = ACTIONS(12469), + [anon_sym_BSLASHVolcite] = ACTIONS(12469), + [anon_sym_BSLASHpvolcite] = ACTIONS(12469), + [anon_sym_BSLASHPvolcite] = ACTIONS(12469), + [anon_sym_BSLASHfvolcite] = ACTIONS(12469), + [anon_sym_BSLASHftvolcite] = ACTIONS(12469), + [anon_sym_BSLASHsvolcite] = ACTIONS(12469), + [anon_sym_BSLASHSvolcite] = ACTIONS(12469), + [anon_sym_BSLASHtvolcite] = ACTIONS(12469), + [anon_sym_BSLASHTvolcite] = ACTIONS(12469), + [anon_sym_BSLASHavolcite] = ACTIONS(12469), + [anon_sym_BSLASHAvolcite] = ACTIONS(12469), + [anon_sym_BSLASHnotecite] = ACTIONS(12469), + [anon_sym_BSLASHpnotecite] = ACTIONS(12469), + [anon_sym_BSLASHPnotecite] = ACTIONS(12469), + [anon_sym_BSLASHfnotecite] = ACTIONS(12469), + [anon_sym_BSLASHusepackage] = ACTIONS(12469), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12469), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12469), + [anon_sym_BSLASHinclude] = ACTIONS(12469), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12469), + [anon_sym_BSLASHinput] = ACTIONS(12469), + [anon_sym_BSLASHsubfile] = ACTIONS(12469), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12469), + [anon_sym_BSLASHbibliography] = ACTIONS(12469), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12469), + [anon_sym_BSLASHincludesvg] = ACTIONS(12469), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12469), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12469), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12469), + [anon_sym_BSLASHimport] = ACTIONS(12469), + [anon_sym_BSLASHsubimport] = ACTIONS(12469), + [anon_sym_BSLASHinputfrom] = ACTIONS(12469), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12469), + [anon_sym_BSLASHincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12469), + [anon_sym_BSLASHlabel] = ACTIONS(12469), + [anon_sym_BSLASHref] = ACTIONS(12469), + [anon_sym_BSLASHvref] = ACTIONS(12469), + [anon_sym_BSLASHVref] = ACTIONS(12469), + [anon_sym_BSLASHautoref] = ACTIONS(12469), + [anon_sym_BSLASHpageref] = ACTIONS(12469), + [anon_sym_BSLASHcref] = ACTIONS(12469), + [anon_sym_BSLASHCref] = ACTIONS(12469), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnameCref] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12469), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12469), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12469), + [anon_sym_BSLASHlabelcref] = ACTIONS(12469), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12469), + [anon_sym_BSLASHeqref] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange] = ACTIONS(12469), + [anon_sym_BSLASHCrefrange] = ACTIONS(12469), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewlabel] = ACTIONS(12469), + [anon_sym_BSLASHnewcommand] = ACTIONS(12469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12469), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12467), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12469), + [anon_sym_BSLASHgls] = ACTIONS(12469), + [anon_sym_BSLASHGls] = ACTIONS(12469), + [anon_sym_BSLASHGLS] = ACTIONS(12469), + [anon_sym_BSLASHglspl] = ACTIONS(12469), + [anon_sym_BSLASHGlspl] = ACTIONS(12469), + [anon_sym_BSLASHGLSpl] = ACTIONS(12469), + [anon_sym_BSLASHglsdisp] = ACTIONS(12469), + [anon_sym_BSLASHglslink] = ACTIONS(12469), + [anon_sym_BSLASHglstext] = ACTIONS(12469), + [anon_sym_BSLASHGlstext] = ACTIONS(12469), + [anon_sym_BSLASHGLStext] = ACTIONS(12469), + [anon_sym_BSLASHglsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12469), + [anon_sym_BSLASHglsplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSplural] = ACTIONS(12469), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12469), + [anon_sym_BSLASHglsname] = ACTIONS(12469), + [anon_sym_BSLASHGlsname] = ACTIONS(12469), + [anon_sym_BSLASHGLSname] = ACTIONS(12469), + [anon_sym_BSLASHglssymbol] = ACTIONS(12469), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12469), + [anon_sym_BSLASHglsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12469), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12469), + [anon_sym_BSLASHglsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12469), + [anon_sym_BSLASHglsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12469), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12469), + [anon_sym_BSLASHglsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12469), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12469), + [anon_sym_BSLASHglsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12469), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12469), + [anon_sym_BSLASHnewacronym] = ACTIONS(12469), + [anon_sym_BSLASHacrshort] = ACTIONS(12469), + [anon_sym_BSLASHAcrshort] = ACTIONS(12469), + [anon_sym_BSLASHACRshort] = ACTIONS(12469), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12469), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12469), + [anon_sym_BSLASHacrlong] = ACTIONS(12469), + [anon_sym_BSLASHAcrlong] = ACTIONS(12469), + [anon_sym_BSLASHACRlong] = ACTIONS(12469), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12469), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12469), + [anon_sym_BSLASHacrfull] = ACTIONS(12469), + [anon_sym_BSLASHAcrfull] = ACTIONS(12469), + [anon_sym_BSLASHACRfull] = ACTIONS(12469), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12469), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12469), + [anon_sym_BSLASHacs] = ACTIONS(12469), + [anon_sym_BSLASHAcs] = ACTIONS(12469), + [anon_sym_BSLASHacsp] = ACTIONS(12469), + [anon_sym_BSLASHAcsp] = ACTIONS(12469), + [anon_sym_BSLASHacl] = ACTIONS(12469), + [anon_sym_BSLASHAcl] = ACTIONS(12469), + [anon_sym_BSLASHaclp] = ACTIONS(12469), + [anon_sym_BSLASHAclp] = ACTIONS(12469), + [anon_sym_BSLASHacf] = ACTIONS(12469), + [anon_sym_BSLASHAcf] = ACTIONS(12469), + [anon_sym_BSLASHacfp] = ACTIONS(12469), + [anon_sym_BSLASHAcfp] = ACTIONS(12469), + [anon_sym_BSLASHac] = ACTIONS(12469), + [anon_sym_BSLASHAc] = ACTIONS(12469), + [anon_sym_BSLASHacp] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12469), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12469), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12469), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12469), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12469), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12469), + [anon_sym_BSLASHcolor] = ACTIONS(12469), + [anon_sym_BSLASHcolorbox] = ACTIONS(12469), + [anon_sym_BSLASHtextcolor] = ACTIONS(12469), + [anon_sym_BSLASHpagecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12469), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12469), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12469), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12469), + }, + [1963] = { + [sym_generic_command_name] = ACTIONS(12477), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12475), + [anon_sym_RBRACK] = ACTIONS(12475), + [anon_sym_LBRACE] = ACTIONS(12475), + [anon_sym_RBRACE] = ACTIONS(12475), + [anon_sym_LPAREN] = ACTIONS(12475), + [anon_sym_COMMA] = ACTIONS(12475), + [anon_sym_EQ] = ACTIONS(12475), + [sym_word] = ACTIONS(12475), + [sym_param] = ACTIONS(12475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12475), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12475), + [anon_sym_DOLLAR] = ACTIONS(12477), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12475), + [anon_sym_BSLASHbegin] = ACTIONS(12477), + [anon_sym_BSLASHcaption] = ACTIONS(12477), + [anon_sym_BSLASHcite] = ACTIONS(12477), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCite] = ACTIONS(12477), + [anon_sym_BSLASHnocite] = ACTIONS(12477), + [anon_sym_BSLASHcitet] = ACTIONS(12477), + [anon_sym_BSLASHcitep] = ACTIONS(12477), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteauthor] = ACTIONS(12477), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12477), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitetitle] = ACTIONS(12477), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteyear] = ACTIONS(12477), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12475), + [anon_sym_BSLASHcitedate] = ACTIONS(12477), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12475), + [anon_sym_BSLASHciteurl] = ACTIONS(12477), + [anon_sym_BSLASHfullcite] = ACTIONS(12477), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12477), + [anon_sym_BSLASHcitealt] = ACTIONS(12477), + [anon_sym_BSLASHcitealp] = ACTIONS(12477), + [anon_sym_BSLASHcitetext] = ACTIONS(12477), + [anon_sym_BSLASHparencite] = ACTIONS(12477), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHParencite] = ACTIONS(12477), + [anon_sym_BSLASHfootcite] = ACTIONS(12477), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12477), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12477), + [anon_sym_BSLASHtextcite] = ACTIONS(12477), + [anon_sym_BSLASHTextcite] = ACTIONS(12477), + [anon_sym_BSLASHsmartcite] = ACTIONS(12477), + [anon_sym_BSLASHSmartcite] = ACTIONS(12477), + [anon_sym_BSLASHsupercite] = ACTIONS(12477), + [anon_sym_BSLASHautocite] = ACTIONS(12477), + [anon_sym_BSLASHAutocite] = ACTIONS(12477), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12475), + [anon_sym_BSLASHvolcite] = ACTIONS(12477), + [anon_sym_BSLASHVolcite] = ACTIONS(12477), + [anon_sym_BSLASHpvolcite] = ACTIONS(12477), + [anon_sym_BSLASHPvolcite] = ACTIONS(12477), + [anon_sym_BSLASHfvolcite] = ACTIONS(12477), + [anon_sym_BSLASHftvolcite] = ACTIONS(12477), + [anon_sym_BSLASHsvolcite] = ACTIONS(12477), + [anon_sym_BSLASHSvolcite] = ACTIONS(12477), + [anon_sym_BSLASHtvolcite] = ACTIONS(12477), + [anon_sym_BSLASHTvolcite] = ACTIONS(12477), + [anon_sym_BSLASHavolcite] = ACTIONS(12477), + [anon_sym_BSLASHAvolcite] = ACTIONS(12477), + [anon_sym_BSLASHnotecite] = ACTIONS(12477), + [anon_sym_BSLASHpnotecite] = ACTIONS(12477), + [anon_sym_BSLASHPnotecite] = ACTIONS(12477), + [anon_sym_BSLASHfnotecite] = ACTIONS(12477), + [anon_sym_BSLASHusepackage] = ACTIONS(12477), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12477), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12477), + [anon_sym_BSLASHinclude] = ACTIONS(12477), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12477), + [anon_sym_BSLASHinput] = ACTIONS(12477), + [anon_sym_BSLASHsubfile] = ACTIONS(12477), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12477), + [anon_sym_BSLASHbibliography] = ACTIONS(12477), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12477), + [anon_sym_BSLASHincludesvg] = ACTIONS(12477), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12477), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12477), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12477), + [anon_sym_BSLASHimport] = ACTIONS(12477), + [anon_sym_BSLASHsubimport] = ACTIONS(12477), + [anon_sym_BSLASHinputfrom] = ACTIONS(12477), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12477), + [anon_sym_BSLASHincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12477), + [anon_sym_BSLASHlabel] = ACTIONS(12477), + [anon_sym_BSLASHref] = ACTIONS(12477), + [anon_sym_BSLASHvref] = ACTIONS(12477), + [anon_sym_BSLASHVref] = ACTIONS(12477), + [anon_sym_BSLASHautoref] = ACTIONS(12477), + [anon_sym_BSLASHpageref] = ACTIONS(12477), + [anon_sym_BSLASHcref] = ACTIONS(12477), + [anon_sym_BSLASHCref] = ACTIONS(12477), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnameCref] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12477), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12477), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12477), + [anon_sym_BSLASHlabelcref] = ACTIONS(12477), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12477), + [anon_sym_BSLASHeqref] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange] = ACTIONS(12477), + [anon_sym_BSLASHCrefrange] = ACTIONS(12477), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewlabel] = ACTIONS(12477), + [anon_sym_BSLASHnewcommand] = ACTIONS(12477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12477), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12477), + [anon_sym_BSLASHgls] = ACTIONS(12477), + [anon_sym_BSLASHGls] = ACTIONS(12477), + [anon_sym_BSLASHGLS] = ACTIONS(12477), + [anon_sym_BSLASHglspl] = ACTIONS(12477), + [anon_sym_BSLASHGlspl] = ACTIONS(12477), + [anon_sym_BSLASHGLSpl] = ACTIONS(12477), + [anon_sym_BSLASHglsdisp] = ACTIONS(12477), + [anon_sym_BSLASHglslink] = ACTIONS(12477), + [anon_sym_BSLASHglstext] = ACTIONS(12477), + [anon_sym_BSLASHGlstext] = ACTIONS(12477), + [anon_sym_BSLASHGLStext] = ACTIONS(12477), + [anon_sym_BSLASHglsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12477), + [anon_sym_BSLASHglsplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSplural] = ACTIONS(12477), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12477), + [anon_sym_BSLASHglsname] = ACTIONS(12477), + [anon_sym_BSLASHGlsname] = ACTIONS(12477), + [anon_sym_BSLASHGLSname] = ACTIONS(12477), + [anon_sym_BSLASHglssymbol] = ACTIONS(12477), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12477), + [anon_sym_BSLASHglsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12477), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12477), + [anon_sym_BSLASHglsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12477), + [anon_sym_BSLASHglsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12477), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12477), + [anon_sym_BSLASHglsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12477), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12477), + [anon_sym_BSLASHglsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12477), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12477), + [anon_sym_BSLASHnewacronym] = ACTIONS(12477), + [anon_sym_BSLASHacrshort] = ACTIONS(12477), + [anon_sym_BSLASHAcrshort] = ACTIONS(12477), + [anon_sym_BSLASHACRshort] = ACTIONS(12477), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12477), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12477), + [anon_sym_BSLASHacrlong] = ACTIONS(12477), + [anon_sym_BSLASHAcrlong] = ACTIONS(12477), + [anon_sym_BSLASHACRlong] = ACTIONS(12477), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12477), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12477), + [anon_sym_BSLASHacrfull] = ACTIONS(12477), + [anon_sym_BSLASHAcrfull] = ACTIONS(12477), + [anon_sym_BSLASHACRfull] = ACTIONS(12477), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12477), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12477), + [anon_sym_BSLASHacs] = ACTIONS(12477), + [anon_sym_BSLASHAcs] = ACTIONS(12477), + [anon_sym_BSLASHacsp] = ACTIONS(12477), + [anon_sym_BSLASHAcsp] = ACTIONS(12477), + [anon_sym_BSLASHacl] = ACTIONS(12477), + [anon_sym_BSLASHAcl] = ACTIONS(12477), + [anon_sym_BSLASHaclp] = ACTIONS(12477), + [anon_sym_BSLASHAclp] = ACTIONS(12477), + [anon_sym_BSLASHacf] = ACTIONS(12477), + [anon_sym_BSLASHAcf] = ACTIONS(12477), + [anon_sym_BSLASHacfp] = ACTIONS(12477), + [anon_sym_BSLASHAcfp] = ACTIONS(12477), + [anon_sym_BSLASHac] = ACTIONS(12477), + [anon_sym_BSLASHAc] = ACTIONS(12477), + [anon_sym_BSLASHacp] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12477), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12477), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12477), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12477), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12477), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12477), + [anon_sym_BSLASHcolor] = ACTIONS(12477), + [anon_sym_BSLASHcolorbox] = ACTIONS(12477), + [anon_sym_BSLASHtextcolor] = ACTIONS(12477), + [anon_sym_BSLASHpagecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12477), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12477), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12477), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12477), + }, + [1964] = { + [sym_generic_command_name] = ACTIONS(12481), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12479), + [anon_sym_RBRACK] = ACTIONS(12479), + [anon_sym_LBRACE] = ACTIONS(12479), + [anon_sym_RBRACE] = ACTIONS(12479), + [anon_sym_LPAREN] = ACTIONS(12479), + [anon_sym_COMMA] = ACTIONS(12479), + [anon_sym_EQ] = ACTIONS(12479), + [sym_word] = ACTIONS(12479), + [sym_param] = ACTIONS(12479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12479), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12479), + [anon_sym_DOLLAR] = ACTIONS(12481), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12479), + [anon_sym_BSLASHbegin] = ACTIONS(12481), + [anon_sym_BSLASHcaption] = ACTIONS(12481), + [anon_sym_BSLASHcite] = ACTIONS(12481), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCite] = ACTIONS(12481), + [anon_sym_BSLASHnocite] = ACTIONS(12481), + [anon_sym_BSLASHcitet] = ACTIONS(12481), + [anon_sym_BSLASHcitep] = ACTIONS(12481), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteauthor] = ACTIONS(12481), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12481), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitetitle] = ACTIONS(12481), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteyear] = ACTIONS(12481), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12479), + [anon_sym_BSLASHcitedate] = ACTIONS(12481), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12479), + [anon_sym_BSLASHciteurl] = ACTIONS(12481), + [anon_sym_BSLASHfullcite] = ACTIONS(12481), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12481), + [anon_sym_BSLASHcitealt] = ACTIONS(12481), + [anon_sym_BSLASHcitealp] = ACTIONS(12481), + [anon_sym_BSLASHcitetext] = ACTIONS(12481), + [anon_sym_BSLASHparencite] = ACTIONS(12481), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHParencite] = ACTIONS(12481), + [anon_sym_BSLASHfootcite] = ACTIONS(12481), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12481), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12481), + [anon_sym_BSLASHtextcite] = ACTIONS(12481), + [anon_sym_BSLASHTextcite] = ACTIONS(12481), + [anon_sym_BSLASHsmartcite] = ACTIONS(12481), + [anon_sym_BSLASHSmartcite] = ACTIONS(12481), + [anon_sym_BSLASHsupercite] = ACTIONS(12481), + [anon_sym_BSLASHautocite] = ACTIONS(12481), + [anon_sym_BSLASHAutocite] = ACTIONS(12481), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12479), + [anon_sym_BSLASHvolcite] = ACTIONS(12481), + [anon_sym_BSLASHVolcite] = ACTIONS(12481), + [anon_sym_BSLASHpvolcite] = ACTIONS(12481), + [anon_sym_BSLASHPvolcite] = ACTIONS(12481), + [anon_sym_BSLASHfvolcite] = ACTIONS(12481), + [anon_sym_BSLASHftvolcite] = ACTIONS(12481), + [anon_sym_BSLASHsvolcite] = ACTIONS(12481), + [anon_sym_BSLASHSvolcite] = ACTIONS(12481), + [anon_sym_BSLASHtvolcite] = ACTIONS(12481), + [anon_sym_BSLASHTvolcite] = ACTIONS(12481), + [anon_sym_BSLASHavolcite] = ACTIONS(12481), + [anon_sym_BSLASHAvolcite] = ACTIONS(12481), + [anon_sym_BSLASHnotecite] = ACTIONS(12481), + [anon_sym_BSLASHpnotecite] = ACTIONS(12481), + [anon_sym_BSLASHPnotecite] = ACTIONS(12481), + [anon_sym_BSLASHfnotecite] = ACTIONS(12481), + [anon_sym_BSLASHusepackage] = ACTIONS(12481), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12481), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12481), + [anon_sym_BSLASHinclude] = ACTIONS(12481), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12481), + [anon_sym_BSLASHinput] = ACTIONS(12481), + [anon_sym_BSLASHsubfile] = ACTIONS(12481), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12481), + [anon_sym_BSLASHbibliography] = ACTIONS(12481), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12481), + [anon_sym_BSLASHincludesvg] = ACTIONS(12481), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12481), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12481), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12481), + [anon_sym_BSLASHimport] = ACTIONS(12481), + [anon_sym_BSLASHsubimport] = ACTIONS(12481), + [anon_sym_BSLASHinputfrom] = ACTIONS(12481), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12481), + [anon_sym_BSLASHincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12481), + [anon_sym_BSLASHlabel] = ACTIONS(12481), + [anon_sym_BSLASHref] = ACTIONS(12481), + [anon_sym_BSLASHvref] = ACTIONS(12481), + [anon_sym_BSLASHVref] = ACTIONS(12481), + [anon_sym_BSLASHautoref] = ACTIONS(12481), + [anon_sym_BSLASHpageref] = ACTIONS(12481), + [anon_sym_BSLASHcref] = ACTIONS(12481), + [anon_sym_BSLASHCref] = ACTIONS(12481), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnameCref] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12481), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12481), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12481), + [anon_sym_BSLASHlabelcref] = ACTIONS(12481), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12481), + [anon_sym_BSLASHeqref] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange] = ACTIONS(12481), + [anon_sym_BSLASHCrefrange] = ACTIONS(12481), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewlabel] = ACTIONS(12481), + [anon_sym_BSLASHnewcommand] = ACTIONS(12481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12481), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12481), + [anon_sym_BSLASHgls] = ACTIONS(12481), + [anon_sym_BSLASHGls] = ACTIONS(12481), + [anon_sym_BSLASHGLS] = ACTIONS(12481), + [anon_sym_BSLASHglspl] = ACTIONS(12481), + [anon_sym_BSLASHGlspl] = ACTIONS(12481), + [anon_sym_BSLASHGLSpl] = ACTIONS(12481), + [anon_sym_BSLASHglsdisp] = ACTIONS(12481), + [anon_sym_BSLASHglslink] = ACTIONS(12481), + [anon_sym_BSLASHglstext] = ACTIONS(12481), + [anon_sym_BSLASHGlstext] = ACTIONS(12481), + [anon_sym_BSLASHGLStext] = ACTIONS(12481), + [anon_sym_BSLASHglsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12481), + [anon_sym_BSLASHglsplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSplural] = ACTIONS(12481), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12481), + [anon_sym_BSLASHglsname] = ACTIONS(12481), + [anon_sym_BSLASHGlsname] = ACTIONS(12481), + [anon_sym_BSLASHGLSname] = ACTIONS(12481), + [anon_sym_BSLASHglssymbol] = ACTIONS(12481), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12481), + [anon_sym_BSLASHglsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12481), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12481), + [anon_sym_BSLASHglsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12481), + [anon_sym_BSLASHglsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12481), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12481), + [anon_sym_BSLASHglsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12481), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12481), + [anon_sym_BSLASHglsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12481), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12481), + [anon_sym_BSLASHnewacronym] = ACTIONS(12481), + [anon_sym_BSLASHacrshort] = ACTIONS(12481), + [anon_sym_BSLASHAcrshort] = ACTIONS(12481), + [anon_sym_BSLASHACRshort] = ACTIONS(12481), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12481), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12481), + [anon_sym_BSLASHacrlong] = ACTIONS(12481), + [anon_sym_BSLASHAcrlong] = ACTIONS(12481), + [anon_sym_BSLASHACRlong] = ACTIONS(12481), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12481), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12481), + [anon_sym_BSLASHacrfull] = ACTIONS(12481), + [anon_sym_BSLASHAcrfull] = ACTIONS(12481), + [anon_sym_BSLASHACRfull] = ACTIONS(12481), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12481), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12481), + [anon_sym_BSLASHacs] = ACTIONS(12481), + [anon_sym_BSLASHAcs] = ACTIONS(12481), + [anon_sym_BSLASHacsp] = ACTIONS(12481), + [anon_sym_BSLASHAcsp] = ACTIONS(12481), + [anon_sym_BSLASHacl] = ACTIONS(12481), + [anon_sym_BSLASHAcl] = ACTIONS(12481), + [anon_sym_BSLASHaclp] = ACTIONS(12481), + [anon_sym_BSLASHAclp] = ACTIONS(12481), + [anon_sym_BSLASHacf] = ACTIONS(12481), + [anon_sym_BSLASHAcf] = ACTIONS(12481), + [anon_sym_BSLASHacfp] = ACTIONS(12481), + [anon_sym_BSLASHAcfp] = ACTIONS(12481), + [anon_sym_BSLASHac] = ACTIONS(12481), + [anon_sym_BSLASHAc] = ACTIONS(12481), + [anon_sym_BSLASHacp] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12481), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12481), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12481), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12481), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12481), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12481), + [anon_sym_BSLASHcolor] = ACTIONS(12481), + [anon_sym_BSLASHcolorbox] = ACTIONS(12481), + [anon_sym_BSLASHtextcolor] = ACTIONS(12481), + [anon_sym_BSLASHpagecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12481), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12481), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12481), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12481), + }, + [1965] = { + [sym_generic_command_name] = ACTIONS(12493), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12491), + [anon_sym_RBRACK] = ACTIONS(12491), + [anon_sym_LBRACE] = ACTIONS(12491), + [anon_sym_RBRACE] = ACTIONS(12491), + [anon_sym_LPAREN] = ACTIONS(12491), + [anon_sym_COMMA] = ACTIONS(12491), + [anon_sym_EQ] = ACTIONS(12491), + [sym_word] = ACTIONS(12491), + [sym_param] = ACTIONS(12491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12491), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12491), + [anon_sym_DOLLAR] = ACTIONS(12493), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12491), + [anon_sym_BSLASHbegin] = ACTIONS(12493), + [anon_sym_BSLASHcaption] = ACTIONS(12493), + [anon_sym_BSLASHcite] = ACTIONS(12493), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCite] = ACTIONS(12493), + [anon_sym_BSLASHnocite] = ACTIONS(12493), + [anon_sym_BSLASHcitet] = ACTIONS(12493), + [anon_sym_BSLASHcitep] = ACTIONS(12493), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteauthor] = ACTIONS(12493), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12493), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitetitle] = ACTIONS(12493), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteyear] = ACTIONS(12493), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12491), + [anon_sym_BSLASHcitedate] = ACTIONS(12493), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12491), + [anon_sym_BSLASHciteurl] = ACTIONS(12493), + [anon_sym_BSLASHfullcite] = ACTIONS(12493), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12493), + [anon_sym_BSLASHcitealt] = ACTIONS(12493), + [anon_sym_BSLASHcitealp] = ACTIONS(12493), + [anon_sym_BSLASHcitetext] = ACTIONS(12493), + [anon_sym_BSLASHparencite] = ACTIONS(12493), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHParencite] = ACTIONS(12493), + [anon_sym_BSLASHfootcite] = ACTIONS(12493), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12493), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12493), + [anon_sym_BSLASHtextcite] = ACTIONS(12493), + [anon_sym_BSLASHTextcite] = ACTIONS(12493), + [anon_sym_BSLASHsmartcite] = ACTIONS(12493), + [anon_sym_BSLASHSmartcite] = ACTIONS(12493), + [anon_sym_BSLASHsupercite] = ACTIONS(12493), + [anon_sym_BSLASHautocite] = ACTIONS(12493), + [anon_sym_BSLASHAutocite] = ACTIONS(12493), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12491), + [anon_sym_BSLASHvolcite] = ACTIONS(12493), + [anon_sym_BSLASHVolcite] = ACTIONS(12493), + [anon_sym_BSLASHpvolcite] = ACTIONS(12493), + [anon_sym_BSLASHPvolcite] = ACTIONS(12493), + [anon_sym_BSLASHfvolcite] = ACTIONS(12493), + [anon_sym_BSLASHftvolcite] = ACTIONS(12493), + [anon_sym_BSLASHsvolcite] = ACTIONS(12493), + [anon_sym_BSLASHSvolcite] = ACTIONS(12493), + [anon_sym_BSLASHtvolcite] = ACTIONS(12493), + [anon_sym_BSLASHTvolcite] = ACTIONS(12493), + [anon_sym_BSLASHavolcite] = ACTIONS(12493), + [anon_sym_BSLASHAvolcite] = ACTIONS(12493), + [anon_sym_BSLASHnotecite] = ACTIONS(12493), + [anon_sym_BSLASHpnotecite] = ACTIONS(12493), + [anon_sym_BSLASHPnotecite] = ACTIONS(12493), + [anon_sym_BSLASHfnotecite] = ACTIONS(12493), + [anon_sym_BSLASHusepackage] = ACTIONS(12493), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12493), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12493), + [anon_sym_BSLASHinclude] = ACTIONS(12493), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12493), + [anon_sym_BSLASHinput] = ACTIONS(12493), + [anon_sym_BSLASHsubfile] = ACTIONS(12493), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12493), + [anon_sym_BSLASHbibliography] = ACTIONS(12493), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12493), + [anon_sym_BSLASHincludesvg] = ACTIONS(12493), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12493), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12493), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12493), + [anon_sym_BSLASHimport] = ACTIONS(12493), + [anon_sym_BSLASHsubimport] = ACTIONS(12493), + [anon_sym_BSLASHinputfrom] = ACTIONS(12493), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12493), + [anon_sym_BSLASHincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12493), + [anon_sym_BSLASHlabel] = ACTIONS(12493), + [anon_sym_BSLASHref] = ACTIONS(12493), + [anon_sym_BSLASHvref] = ACTIONS(12493), + [anon_sym_BSLASHVref] = ACTIONS(12493), + [anon_sym_BSLASHautoref] = ACTIONS(12493), + [anon_sym_BSLASHpageref] = ACTIONS(12493), + [anon_sym_BSLASHcref] = ACTIONS(12493), + [anon_sym_BSLASHCref] = ACTIONS(12493), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnameCref] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12493), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12493), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12493), + [anon_sym_BSLASHlabelcref] = ACTIONS(12493), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12493), + [anon_sym_BSLASHeqref] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange] = ACTIONS(12493), + [anon_sym_BSLASHCrefrange] = ACTIONS(12493), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewlabel] = ACTIONS(12493), + [anon_sym_BSLASHnewcommand] = ACTIONS(12493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12493), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12493), + [anon_sym_BSLASHgls] = ACTIONS(12493), + [anon_sym_BSLASHGls] = ACTIONS(12493), + [anon_sym_BSLASHGLS] = ACTIONS(12493), + [anon_sym_BSLASHglspl] = ACTIONS(12493), + [anon_sym_BSLASHGlspl] = ACTIONS(12493), + [anon_sym_BSLASHGLSpl] = ACTIONS(12493), + [anon_sym_BSLASHglsdisp] = ACTIONS(12493), + [anon_sym_BSLASHglslink] = ACTIONS(12493), + [anon_sym_BSLASHglstext] = ACTIONS(12493), + [anon_sym_BSLASHGlstext] = ACTIONS(12493), + [anon_sym_BSLASHGLStext] = ACTIONS(12493), + [anon_sym_BSLASHglsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12493), + [anon_sym_BSLASHglsplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSplural] = ACTIONS(12493), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12493), + [anon_sym_BSLASHglsname] = ACTIONS(12493), + [anon_sym_BSLASHGlsname] = ACTIONS(12493), + [anon_sym_BSLASHGLSname] = ACTIONS(12493), + [anon_sym_BSLASHglssymbol] = ACTIONS(12493), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12493), + [anon_sym_BSLASHglsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12493), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12493), + [anon_sym_BSLASHglsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12493), + [anon_sym_BSLASHglsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12493), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12493), + [anon_sym_BSLASHglsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12493), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12493), + [anon_sym_BSLASHglsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12493), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12493), + [anon_sym_BSLASHnewacronym] = ACTIONS(12493), + [anon_sym_BSLASHacrshort] = ACTIONS(12493), + [anon_sym_BSLASHAcrshort] = ACTIONS(12493), + [anon_sym_BSLASHACRshort] = ACTIONS(12493), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12493), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12493), + [anon_sym_BSLASHacrlong] = ACTIONS(12493), + [anon_sym_BSLASHAcrlong] = ACTIONS(12493), + [anon_sym_BSLASHACRlong] = ACTIONS(12493), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12493), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12493), + [anon_sym_BSLASHacrfull] = ACTIONS(12493), + [anon_sym_BSLASHAcrfull] = ACTIONS(12493), + [anon_sym_BSLASHACRfull] = ACTIONS(12493), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12493), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12493), + [anon_sym_BSLASHacs] = ACTIONS(12493), + [anon_sym_BSLASHAcs] = ACTIONS(12493), + [anon_sym_BSLASHacsp] = ACTIONS(12493), + [anon_sym_BSLASHAcsp] = ACTIONS(12493), + [anon_sym_BSLASHacl] = ACTIONS(12493), + [anon_sym_BSLASHAcl] = ACTIONS(12493), + [anon_sym_BSLASHaclp] = ACTIONS(12493), + [anon_sym_BSLASHAclp] = ACTIONS(12493), + [anon_sym_BSLASHacf] = ACTIONS(12493), + [anon_sym_BSLASHAcf] = ACTIONS(12493), + [anon_sym_BSLASHacfp] = ACTIONS(12493), + [anon_sym_BSLASHAcfp] = ACTIONS(12493), + [anon_sym_BSLASHac] = ACTIONS(12493), + [anon_sym_BSLASHAc] = ACTIONS(12493), + [anon_sym_BSLASHacp] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12493), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12493), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12493), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12493), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12493), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12493), + [anon_sym_BSLASHcolor] = ACTIONS(12493), + [anon_sym_BSLASHcolorbox] = ACTIONS(12493), + [anon_sym_BSLASHtextcolor] = ACTIONS(12493), + [anon_sym_BSLASHpagecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12493), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12493), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12493), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12493), + }, + [1966] = { + [sym_generic_command_name] = ACTIONS(12497), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12495), + [anon_sym_RBRACK] = ACTIONS(12495), + [anon_sym_LBRACE] = ACTIONS(12495), + [anon_sym_RBRACE] = ACTIONS(12495), + [anon_sym_LPAREN] = ACTIONS(12495), + [anon_sym_COMMA] = ACTIONS(12495), + [anon_sym_EQ] = ACTIONS(12495), + [sym_word] = ACTIONS(12495), + [sym_param] = ACTIONS(12495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12495), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12495), + [anon_sym_DOLLAR] = ACTIONS(12497), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12495), + [anon_sym_BSLASHbegin] = ACTIONS(12497), + [anon_sym_BSLASHcaption] = ACTIONS(12497), + [anon_sym_BSLASHcite] = ACTIONS(12497), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCite] = ACTIONS(12497), + [anon_sym_BSLASHnocite] = ACTIONS(12497), + [anon_sym_BSLASHcitet] = ACTIONS(12497), + [anon_sym_BSLASHcitep] = ACTIONS(12497), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteauthor] = ACTIONS(12497), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12497), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitetitle] = ACTIONS(12497), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteyear] = ACTIONS(12497), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12495), + [anon_sym_BSLASHcitedate] = ACTIONS(12497), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12495), + [anon_sym_BSLASHciteurl] = ACTIONS(12497), + [anon_sym_BSLASHfullcite] = ACTIONS(12497), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12497), + [anon_sym_BSLASHcitealt] = ACTIONS(12497), + [anon_sym_BSLASHcitealp] = ACTIONS(12497), + [anon_sym_BSLASHcitetext] = ACTIONS(12497), + [anon_sym_BSLASHparencite] = ACTIONS(12497), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHParencite] = ACTIONS(12497), + [anon_sym_BSLASHfootcite] = ACTIONS(12497), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12497), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12497), + [anon_sym_BSLASHtextcite] = ACTIONS(12497), + [anon_sym_BSLASHTextcite] = ACTIONS(12497), + [anon_sym_BSLASHsmartcite] = ACTIONS(12497), + [anon_sym_BSLASHSmartcite] = ACTIONS(12497), + [anon_sym_BSLASHsupercite] = ACTIONS(12497), + [anon_sym_BSLASHautocite] = ACTIONS(12497), + [anon_sym_BSLASHAutocite] = ACTIONS(12497), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12495), + [anon_sym_BSLASHvolcite] = ACTIONS(12497), + [anon_sym_BSLASHVolcite] = ACTIONS(12497), + [anon_sym_BSLASHpvolcite] = ACTIONS(12497), + [anon_sym_BSLASHPvolcite] = ACTIONS(12497), + [anon_sym_BSLASHfvolcite] = ACTIONS(12497), + [anon_sym_BSLASHftvolcite] = ACTIONS(12497), + [anon_sym_BSLASHsvolcite] = ACTIONS(12497), + [anon_sym_BSLASHSvolcite] = ACTIONS(12497), + [anon_sym_BSLASHtvolcite] = ACTIONS(12497), + [anon_sym_BSLASHTvolcite] = ACTIONS(12497), + [anon_sym_BSLASHavolcite] = ACTIONS(12497), + [anon_sym_BSLASHAvolcite] = ACTIONS(12497), + [anon_sym_BSLASHnotecite] = ACTIONS(12497), + [anon_sym_BSLASHpnotecite] = ACTIONS(12497), + [anon_sym_BSLASHPnotecite] = ACTIONS(12497), + [anon_sym_BSLASHfnotecite] = ACTIONS(12497), + [anon_sym_BSLASHusepackage] = ACTIONS(12497), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12497), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12497), + [anon_sym_BSLASHinclude] = ACTIONS(12497), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12497), + [anon_sym_BSLASHinput] = ACTIONS(12497), + [anon_sym_BSLASHsubfile] = ACTIONS(12497), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12497), + [anon_sym_BSLASHbibliography] = ACTIONS(12497), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12497), + [anon_sym_BSLASHincludesvg] = ACTIONS(12497), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12497), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12497), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12497), + [anon_sym_BSLASHimport] = ACTIONS(12497), + [anon_sym_BSLASHsubimport] = ACTIONS(12497), + [anon_sym_BSLASHinputfrom] = ACTIONS(12497), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12497), + [anon_sym_BSLASHincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12497), + [anon_sym_BSLASHlabel] = ACTIONS(12497), + [anon_sym_BSLASHref] = ACTIONS(12497), + [anon_sym_BSLASHvref] = ACTIONS(12497), + [anon_sym_BSLASHVref] = ACTIONS(12497), + [anon_sym_BSLASHautoref] = ACTIONS(12497), + [anon_sym_BSLASHpageref] = ACTIONS(12497), + [anon_sym_BSLASHcref] = ACTIONS(12497), + [anon_sym_BSLASHCref] = ACTIONS(12497), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnameCref] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12497), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12497), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12497), + [anon_sym_BSLASHlabelcref] = ACTIONS(12497), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12497), + [anon_sym_BSLASHeqref] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange] = ACTIONS(12497), + [anon_sym_BSLASHCrefrange] = ACTIONS(12497), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewlabel] = ACTIONS(12497), + [anon_sym_BSLASHnewcommand] = ACTIONS(12497), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12497), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12497), + [anon_sym_BSLASHgls] = ACTIONS(12497), + [anon_sym_BSLASHGls] = ACTIONS(12497), + [anon_sym_BSLASHGLS] = ACTIONS(12497), + [anon_sym_BSLASHglspl] = ACTIONS(12497), + [anon_sym_BSLASHGlspl] = ACTIONS(12497), + [anon_sym_BSLASHGLSpl] = ACTIONS(12497), + [anon_sym_BSLASHglsdisp] = ACTIONS(12497), + [anon_sym_BSLASHglslink] = ACTIONS(12497), + [anon_sym_BSLASHglstext] = ACTIONS(12497), + [anon_sym_BSLASHGlstext] = ACTIONS(12497), + [anon_sym_BSLASHGLStext] = ACTIONS(12497), + [anon_sym_BSLASHglsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12497), + [anon_sym_BSLASHglsplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSplural] = ACTIONS(12497), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12497), + [anon_sym_BSLASHglsname] = ACTIONS(12497), + [anon_sym_BSLASHGlsname] = ACTIONS(12497), + [anon_sym_BSLASHGLSname] = ACTIONS(12497), + [anon_sym_BSLASHglssymbol] = ACTIONS(12497), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12497), + [anon_sym_BSLASHglsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12497), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12497), + [anon_sym_BSLASHglsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12497), + [anon_sym_BSLASHglsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12497), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12497), + [anon_sym_BSLASHglsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12497), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12497), + [anon_sym_BSLASHglsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12497), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12497), + [anon_sym_BSLASHnewacronym] = ACTIONS(12497), + [anon_sym_BSLASHacrshort] = ACTIONS(12497), + [anon_sym_BSLASHAcrshort] = ACTIONS(12497), + [anon_sym_BSLASHACRshort] = ACTIONS(12497), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12497), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12497), + [anon_sym_BSLASHacrlong] = ACTIONS(12497), + [anon_sym_BSLASHAcrlong] = ACTIONS(12497), + [anon_sym_BSLASHACRlong] = ACTIONS(12497), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12497), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12497), + [anon_sym_BSLASHacrfull] = ACTIONS(12497), + [anon_sym_BSLASHAcrfull] = ACTIONS(12497), + [anon_sym_BSLASHACRfull] = ACTIONS(12497), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12497), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12497), + [anon_sym_BSLASHacs] = ACTIONS(12497), + [anon_sym_BSLASHAcs] = ACTIONS(12497), + [anon_sym_BSLASHacsp] = ACTIONS(12497), + [anon_sym_BSLASHAcsp] = ACTIONS(12497), + [anon_sym_BSLASHacl] = ACTIONS(12497), + [anon_sym_BSLASHAcl] = ACTIONS(12497), + [anon_sym_BSLASHaclp] = ACTIONS(12497), + [anon_sym_BSLASHAclp] = ACTIONS(12497), + [anon_sym_BSLASHacf] = ACTIONS(12497), + [anon_sym_BSLASHAcf] = ACTIONS(12497), + [anon_sym_BSLASHacfp] = ACTIONS(12497), + [anon_sym_BSLASHAcfp] = ACTIONS(12497), + [anon_sym_BSLASHac] = ACTIONS(12497), + [anon_sym_BSLASHAc] = ACTIONS(12497), + [anon_sym_BSLASHacp] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12497), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12497), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12497), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12497), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12497), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12497), + [anon_sym_BSLASHcolor] = ACTIONS(12497), + [anon_sym_BSLASHcolorbox] = ACTIONS(12497), + [anon_sym_BSLASHtextcolor] = ACTIONS(12497), + [anon_sym_BSLASHpagecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12497), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12497), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12497), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12497), + }, + [1967] = { + [sym_generic_command_name] = ACTIONS(12509), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12507), + [anon_sym_RBRACK] = ACTIONS(12507), + [anon_sym_LBRACE] = ACTIONS(12507), + [anon_sym_RBRACE] = ACTIONS(12507), + [anon_sym_LPAREN] = ACTIONS(12507), + [anon_sym_COMMA] = ACTIONS(12507), + [anon_sym_EQ] = ACTIONS(12507), + [sym_word] = ACTIONS(12507), + [sym_param] = ACTIONS(12507), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12507), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12507), + [anon_sym_DOLLAR] = ACTIONS(12509), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12507), + [anon_sym_BSLASHbegin] = ACTIONS(12509), + [anon_sym_BSLASHcaption] = ACTIONS(12509), + [anon_sym_BSLASHcite] = ACTIONS(12509), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCite] = ACTIONS(12509), + [anon_sym_BSLASHnocite] = ACTIONS(12509), + [anon_sym_BSLASHcitet] = ACTIONS(12509), + [anon_sym_BSLASHcitep] = ACTIONS(12509), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteauthor] = ACTIONS(12509), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12509), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitetitle] = ACTIONS(12509), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteyear] = ACTIONS(12509), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12507), + [anon_sym_BSLASHcitedate] = ACTIONS(12509), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12507), + [anon_sym_BSLASHciteurl] = ACTIONS(12509), + [anon_sym_BSLASHfullcite] = ACTIONS(12509), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12509), + [anon_sym_BSLASHcitealt] = ACTIONS(12509), + [anon_sym_BSLASHcitealp] = ACTIONS(12509), + [anon_sym_BSLASHcitetext] = ACTIONS(12509), + [anon_sym_BSLASHparencite] = ACTIONS(12509), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHParencite] = ACTIONS(12509), + [anon_sym_BSLASHfootcite] = ACTIONS(12509), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12509), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12509), + [anon_sym_BSLASHtextcite] = ACTIONS(12509), + [anon_sym_BSLASHTextcite] = ACTIONS(12509), + [anon_sym_BSLASHsmartcite] = ACTIONS(12509), + [anon_sym_BSLASHSmartcite] = ACTIONS(12509), + [anon_sym_BSLASHsupercite] = ACTIONS(12509), + [anon_sym_BSLASHautocite] = ACTIONS(12509), + [anon_sym_BSLASHAutocite] = ACTIONS(12509), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12507), + [anon_sym_BSLASHvolcite] = ACTIONS(12509), + [anon_sym_BSLASHVolcite] = ACTIONS(12509), + [anon_sym_BSLASHpvolcite] = ACTIONS(12509), + [anon_sym_BSLASHPvolcite] = ACTIONS(12509), + [anon_sym_BSLASHfvolcite] = ACTIONS(12509), + [anon_sym_BSLASHftvolcite] = ACTIONS(12509), + [anon_sym_BSLASHsvolcite] = ACTIONS(12509), + [anon_sym_BSLASHSvolcite] = ACTIONS(12509), + [anon_sym_BSLASHtvolcite] = ACTIONS(12509), + [anon_sym_BSLASHTvolcite] = ACTIONS(12509), + [anon_sym_BSLASHavolcite] = ACTIONS(12509), + [anon_sym_BSLASHAvolcite] = ACTIONS(12509), + [anon_sym_BSLASHnotecite] = ACTIONS(12509), + [anon_sym_BSLASHpnotecite] = ACTIONS(12509), + [anon_sym_BSLASHPnotecite] = ACTIONS(12509), + [anon_sym_BSLASHfnotecite] = ACTIONS(12509), + [anon_sym_BSLASHusepackage] = ACTIONS(12509), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12509), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12509), + [anon_sym_BSLASHinclude] = ACTIONS(12509), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12509), + [anon_sym_BSLASHinput] = ACTIONS(12509), + [anon_sym_BSLASHsubfile] = ACTIONS(12509), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12509), + [anon_sym_BSLASHbibliography] = ACTIONS(12509), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12509), + [anon_sym_BSLASHincludesvg] = ACTIONS(12509), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12509), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12509), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12509), + [anon_sym_BSLASHimport] = ACTIONS(12509), + [anon_sym_BSLASHsubimport] = ACTIONS(12509), + [anon_sym_BSLASHinputfrom] = ACTIONS(12509), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12509), + [anon_sym_BSLASHincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12509), + [anon_sym_BSLASHlabel] = ACTIONS(12509), + [anon_sym_BSLASHref] = ACTIONS(12509), + [anon_sym_BSLASHvref] = ACTIONS(12509), + [anon_sym_BSLASHVref] = ACTIONS(12509), + [anon_sym_BSLASHautoref] = ACTIONS(12509), + [anon_sym_BSLASHpageref] = ACTIONS(12509), + [anon_sym_BSLASHcref] = ACTIONS(12509), + [anon_sym_BSLASHCref] = ACTIONS(12509), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnameCref] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12509), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12509), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12509), + [anon_sym_BSLASHlabelcref] = ACTIONS(12509), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12509), + [anon_sym_BSLASHeqref] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange] = ACTIONS(12509), + [anon_sym_BSLASHCrefrange] = ACTIONS(12509), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewlabel] = ACTIONS(12509), + [anon_sym_BSLASHnewcommand] = ACTIONS(12509), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12509), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12507), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12509), + [anon_sym_BSLASHgls] = ACTIONS(12509), + [anon_sym_BSLASHGls] = ACTIONS(12509), + [anon_sym_BSLASHGLS] = ACTIONS(12509), + [anon_sym_BSLASHglspl] = ACTIONS(12509), + [anon_sym_BSLASHGlspl] = ACTIONS(12509), + [anon_sym_BSLASHGLSpl] = ACTIONS(12509), + [anon_sym_BSLASHglsdisp] = ACTIONS(12509), + [anon_sym_BSLASHglslink] = ACTIONS(12509), + [anon_sym_BSLASHglstext] = ACTIONS(12509), + [anon_sym_BSLASHGlstext] = ACTIONS(12509), + [anon_sym_BSLASHGLStext] = ACTIONS(12509), + [anon_sym_BSLASHglsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12509), + [anon_sym_BSLASHglsplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSplural] = ACTIONS(12509), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12509), + [anon_sym_BSLASHglsname] = ACTIONS(12509), + [anon_sym_BSLASHGlsname] = ACTIONS(12509), + [anon_sym_BSLASHGLSname] = ACTIONS(12509), + [anon_sym_BSLASHglssymbol] = ACTIONS(12509), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12509), + [anon_sym_BSLASHglsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12509), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12509), + [anon_sym_BSLASHglsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12509), + [anon_sym_BSLASHglsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12509), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12509), + [anon_sym_BSLASHglsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12509), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12509), + [anon_sym_BSLASHglsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12509), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12509), + [anon_sym_BSLASHnewacronym] = ACTIONS(12509), + [anon_sym_BSLASHacrshort] = ACTIONS(12509), + [anon_sym_BSLASHAcrshort] = ACTIONS(12509), + [anon_sym_BSLASHACRshort] = ACTIONS(12509), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12509), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12509), + [anon_sym_BSLASHacrlong] = ACTIONS(12509), + [anon_sym_BSLASHAcrlong] = ACTIONS(12509), + [anon_sym_BSLASHACRlong] = ACTIONS(12509), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12509), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12509), + [anon_sym_BSLASHacrfull] = ACTIONS(12509), + [anon_sym_BSLASHAcrfull] = ACTIONS(12509), + [anon_sym_BSLASHACRfull] = ACTIONS(12509), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12509), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12509), + [anon_sym_BSLASHacs] = ACTIONS(12509), + [anon_sym_BSLASHAcs] = ACTIONS(12509), + [anon_sym_BSLASHacsp] = ACTIONS(12509), + [anon_sym_BSLASHAcsp] = ACTIONS(12509), + [anon_sym_BSLASHacl] = ACTIONS(12509), + [anon_sym_BSLASHAcl] = ACTIONS(12509), + [anon_sym_BSLASHaclp] = ACTIONS(12509), + [anon_sym_BSLASHAclp] = ACTIONS(12509), + [anon_sym_BSLASHacf] = ACTIONS(12509), + [anon_sym_BSLASHAcf] = ACTIONS(12509), + [anon_sym_BSLASHacfp] = ACTIONS(12509), + [anon_sym_BSLASHAcfp] = ACTIONS(12509), + [anon_sym_BSLASHac] = ACTIONS(12509), + [anon_sym_BSLASHAc] = ACTIONS(12509), + [anon_sym_BSLASHacp] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12509), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12509), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12509), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12509), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12509), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12509), + [anon_sym_BSLASHcolor] = ACTIONS(12509), + [anon_sym_BSLASHcolorbox] = ACTIONS(12509), + [anon_sym_BSLASHtextcolor] = ACTIONS(12509), + [anon_sym_BSLASHpagecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12509), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12509), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12509), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12509), + }, + [1968] = { + [sym_generic_command_name] = ACTIONS(12513), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12511), + [anon_sym_RBRACK] = ACTIONS(12511), + [anon_sym_LBRACE] = ACTIONS(12801), + [anon_sym_RBRACE] = ACTIONS(12511), + [anon_sym_LPAREN] = ACTIONS(12511), + [anon_sym_COMMA] = ACTIONS(12511), + [anon_sym_EQ] = ACTIONS(12511), + [sym_word] = ACTIONS(12511), + [sym_param] = ACTIONS(12511), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12511), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12511), + [anon_sym_DOLLAR] = ACTIONS(12513), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12511), + [anon_sym_BSLASHbegin] = ACTIONS(12513), + [anon_sym_BSLASHcaption] = ACTIONS(12513), + [anon_sym_BSLASHcite] = ACTIONS(12513), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCite] = ACTIONS(12513), + [anon_sym_BSLASHnocite] = ACTIONS(12513), + [anon_sym_BSLASHcitet] = ACTIONS(12513), + [anon_sym_BSLASHcitep] = ACTIONS(12513), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteauthor] = ACTIONS(12513), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12513), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitetitle] = ACTIONS(12513), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteyear] = ACTIONS(12513), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12511), + [anon_sym_BSLASHcitedate] = ACTIONS(12513), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12511), + [anon_sym_BSLASHciteurl] = ACTIONS(12513), + [anon_sym_BSLASHfullcite] = ACTIONS(12513), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12513), + [anon_sym_BSLASHcitealt] = ACTIONS(12513), + [anon_sym_BSLASHcitealp] = ACTIONS(12513), + [anon_sym_BSLASHcitetext] = ACTIONS(12513), + [anon_sym_BSLASHparencite] = ACTIONS(12513), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHParencite] = ACTIONS(12513), + [anon_sym_BSLASHfootcite] = ACTIONS(12513), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12513), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12513), + [anon_sym_BSLASHtextcite] = ACTIONS(12513), + [anon_sym_BSLASHTextcite] = ACTIONS(12513), + [anon_sym_BSLASHsmartcite] = ACTIONS(12513), + [anon_sym_BSLASHSmartcite] = ACTIONS(12513), + [anon_sym_BSLASHsupercite] = ACTIONS(12513), + [anon_sym_BSLASHautocite] = ACTIONS(12513), + [anon_sym_BSLASHAutocite] = ACTIONS(12513), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12511), + [anon_sym_BSLASHvolcite] = ACTIONS(12513), + [anon_sym_BSLASHVolcite] = ACTIONS(12513), + [anon_sym_BSLASHpvolcite] = ACTIONS(12513), + [anon_sym_BSLASHPvolcite] = ACTIONS(12513), + [anon_sym_BSLASHfvolcite] = ACTIONS(12513), + [anon_sym_BSLASHftvolcite] = ACTIONS(12513), + [anon_sym_BSLASHsvolcite] = ACTIONS(12513), + [anon_sym_BSLASHSvolcite] = ACTIONS(12513), + [anon_sym_BSLASHtvolcite] = ACTIONS(12513), + [anon_sym_BSLASHTvolcite] = ACTIONS(12513), + [anon_sym_BSLASHavolcite] = ACTIONS(12513), + [anon_sym_BSLASHAvolcite] = ACTIONS(12513), + [anon_sym_BSLASHnotecite] = ACTIONS(12513), + [anon_sym_BSLASHpnotecite] = ACTIONS(12513), + [anon_sym_BSLASHPnotecite] = ACTIONS(12513), + [anon_sym_BSLASHfnotecite] = ACTIONS(12513), + [anon_sym_BSLASHusepackage] = ACTIONS(12513), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12513), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12513), + [anon_sym_BSLASHinclude] = ACTIONS(12513), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12513), + [anon_sym_BSLASHinput] = ACTIONS(12513), + [anon_sym_BSLASHsubfile] = ACTIONS(12513), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12513), + [anon_sym_BSLASHbibliography] = ACTIONS(12513), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12513), + [anon_sym_BSLASHincludesvg] = ACTIONS(12513), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12513), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12513), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12513), + [anon_sym_BSLASHimport] = ACTIONS(12513), + [anon_sym_BSLASHsubimport] = ACTIONS(12513), + [anon_sym_BSLASHinputfrom] = ACTIONS(12513), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12513), + [anon_sym_BSLASHincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12513), + [anon_sym_BSLASHlabel] = ACTIONS(12513), + [anon_sym_BSLASHref] = ACTIONS(12513), + [anon_sym_BSLASHvref] = ACTIONS(12513), + [anon_sym_BSLASHVref] = ACTIONS(12513), + [anon_sym_BSLASHautoref] = ACTIONS(12513), + [anon_sym_BSLASHpageref] = ACTIONS(12513), + [anon_sym_BSLASHcref] = ACTIONS(12513), + [anon_sym_BSLASHCref] = ACTIONS(12513), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnameCref] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12513), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12513), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12513), + [anon_sym_BSLASHlabelcref] = ACTIONS(12513), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12513), + [anon_sym_BSLASHeqref] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange] = ACTIONS(12513), + [anon_sym_BSLASHCrefrange] = ACTIONS(12513), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewlabel] = ACTIONS(12513), + [anon_sym_BSLASHnewcommand] = ACTIONS(12513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12513), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12511), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12513), + [anon_sym_BSLASHgls] = ACTIONS(12513), + [anon_sym_BSLASHGls] = ACTIONS(12513), + [anon_sym_BSLASHGLS] = ACTIONS(12513), + [anon_sym_BSLASHglspl] = ACTIONS(12513), + [anon_sym_BSLASHGlspl] = ACTIONS(12513), + [anon_sym_BSLASHGLSpl] = ACTIONS(12513), + [anon_sym_BSLASHglsdisp] = ACTIONS(12513), + [anon_sym_BSLASHglslink] = ACTIONS(12513), + [anon_sym_BSLASHglstext] = ACTIONS(12513), + [anon_sym_BSLASHGlstext] = ACTIONS(12513), + [anon_sym_BSLASHGLStext] = ACTIONS(12513), + [anon_sym_BSLASHglsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12513), + [anon_sym_BSLASHglsplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSplural] = ACTIONS(12513), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12513), + [anon_sym_BSLASHglsname] = ACTIONS(12513), + [anon_sym_BSLASHGlsname] = ACTIONS(12513), + [anon_sym_BSLASHGLSname] = ACTIONS(12513), + [anon_sym_BSLASHglssymbol] = ACTIONS(12513), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12513), + [anon_sym_BSLASHglsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12513), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12513), + [anon_sym_BSLASHglsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12513), + [anon_sym_BSLASHglsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12513), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12513), + [anon_sym_BSLASHglsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12513), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12513), + [anon_sym_BSLASHglsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12513), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12513), + [anon_sym_BSLASHnewacronym] = ACTIONS(12513), + [anon_sym_BSLASHacrshort] = ACTIONS(12513), + [anon_sym_BSLASHAcrshort] = ACTIONS(12513), + [anon_sym_BSLASHACRshort] = ACTIONS(12513), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12513), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12513), + [anon_sym_BSLASHacrlong] = ACTIONS(12513), + [anon_sym_BSLASHAcrlong] = ACTIONS(12513), + [anon_sym_BSLASHACRlong] = ACTIONS(12513), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12513), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12513), + [anon_sym_BSLASHacrfull] = ACTIONS(12513), + [anon_sym_BSLASHAcrfull] = ACTIONS(12513), + [anon_sym_BSLASHACRfull] = ACTIONS(12513), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12513), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12513), + [anon_sym_BSLASHacs] = ACTIONS(12513), + [anon_sym_BSLASHAcs] = ACTIONS(12513), + [anon_sym_BSLASHacsp] = ACTIONS(12513), + [anon_sym_BSLASHAcsp] = ACTIONS(12513), + [anon_sym_BSLASHacl] = ACTIONS(12513), + [anon_sym_BSLASHAcl] = ACTIONS(12513), + [anon_sym_BSLASHaclp] = ACTIONS(12513), + [anon_sym_BSLASHAclp] = ACTIONS(12513), + [anon_sym_BSLASHacf] = ACTIONS(12513), + [anon_sym_BSLASHAcf] = ACTIONS(12513), + [anon_sym_BSLASHacfp] = ACTIONS(12513), + [anon_sym_BSLASHAcfp] = ACTIONS(12513), + [anon_sym_BSLASHac] = ACTIONS(12513), + [anon_sym_BSLASHAc] = ACTIONS(12513), + [anon_sym_BSLASHacp] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12513), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12513), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12513), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12513), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12513), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12513), + [anon_sym_BSLASHcolor] = ACTIONS(12513), + [anon_sym_BSLASHcolorbox] = ACTIONS(12513), + [anon_sym_BSLASHtextcolor] = ACTIONS(12513), + [anon_sym_BSLASHpagecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12513), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12513), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12513), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12513), + }, + [1969] = { + [sym_generic_command_name] = ACTIONS(12519), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12517), + [anon_sym_RBRACK] = ACTIONS(12517), + [anon_sym_LBRACE] = ACTIONS(12517), + [anon_sym_RBRACE] = ACTIONS(12517), + [anon_sym_LPAREN] = ACTIONS(12517), + [anon_sym_COMMA] = ACTIONS(12517), + [anon_sym_EQ] = ACTIONS(12517), + [sym_word] = ACTIONS(12517), + [sym_param] = ACTIONS(12517), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12517), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12517), + [anon_sym_DOLLAR] = ACTIONS(12519), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12517), + [anon_sym_BSLASHbegin] = ACTIONS(12519), + [anon_sym_BSLASHcaption] = ACTIONS(12519), + [anon_sym_BSLASHcite] = ACTIONS(12519), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCite] = ACTIONS(12519), + [anon_sym_BSLASHnocite] = ACTIONS(12519), + [anon_sym_BSLASHcitet] = ACTIONS(12519), + [anon_sym_BSLASHcitep] = ACTIONS(12519), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteauthor] = ACTIONS(12519), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12519), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitetitle] = ACTIONS(12519), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteyear] = ACTIONS(12519), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12517), + [anon_sym_BSLASHcitedate] = ACTIONS(12519), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12517), + [anon_sym_BSLASHciteurl] = ACTIONS(12519), + [anon_sym_BSLASHfullcite] = ACTIONS(12519), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12519), + [anon_sym_BSLASHcitealt] = ACTIONS(12519), + [anon_sym_BSLASHcitealp] = ACTIONS(12519), + [anon_sym_BSLASHcitetext] = ACTIONS(12519), + [anon_sym_BSLASHparencite] = ACTIONS(12519), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHParencite] = ACTIONS(12519), + [anon_sym_BSLASHfootcite] = ACTIONS(12519), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12519), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12519), + [anon_sym_BSLASHtextcite] = ACTIONS(12519), + [anon_sym_BSLASHTextcite] = ACTIONS(12519), + [anon_sym_BSLASHsmartcite] = ACTIONS(12519), + [anon_sym_BSLASHSmartcite] = ACTIONS(12519), + [anon_sym_BSLASHsupercite] = ACTIONS(12519), + [anon_sym_BSLASHautocite] = ACTIONS(12519), + [anon_sym_BSLASHAutocite] = ACTIONS(12519), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12517), + [anon_sym_BSLASHvolcite] = ACTIONS(12519), + [anon_sym_BSLASHVolcite] = ACTIONS(12519), + [anon_sym_BSLASHpvolcite] = ACTIONS(12519), + [anon_sym_BSLASHPvolcite] = ACTIONS(12519), + [anon_sym_BSLASHfvolcite] = ACTIONS(12519), + [anon_sym_BSLASHftvolcite] = ACTIONS(12519), + [anon_sym_BSLASHsvolcite] = ACTIONS(12519), + [anon_sym_BSLASHSvolcite] = ACTIONS(12519), + [anon_sym_BSLASHtvolcite] = ACTIONS(12519), + [anon_sym_BSLASHTvolcite] = ACTIONS(12519), + [anon_sym_BSLASHavolcite] = ACTIONS(12519), + [anon_sym_BSLASHAvolcite] = ACTIONS(12519), + [anon_sym_BSLASHnotecite] = ACTIONS(12519), + [anon_sym_BSLASHpnotecite] = ACTIONS(12519), + [anon_sym_BSLASHPnotecite] = ACTIONS(12519), + [anon_sym_BSLASHfnotecite] = ACTIONS(12519), + [anon_sym_BSLASHusepackage] = ACTIONS(12519), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12519), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12519), + [anon_sym_BSLASHinclude] = ACTIONS(12519), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12519), + [anon_sym_BSLASHinput] = ACTIONS(12519), + [anon_sym_BSLASHsubfile] = ACTIONS(12519), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12519), + [anon_sym_BSLASHbibliography] = ACTIONS(12519), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12519), + [anon_sym_BSLASHincludesvg] = ACTIONS(12519), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12519), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12519), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12519), + [anon_sym_BSLASHimport] = ACTIONS(12519), + [anon_sym_BSLASHsubimport] = ACTIONS(12519), + [anon_sym_BSLASHinputfrom] = ACTIONS(12519), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12519), + [anon_sym_BSLASHincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12519), + [anon_sym_BSLASHlabel] = ACTIONS(12519), + [anon_sym_BSLASHref] = ACTIONS(12519), + [anon_sym_BSLASHvref] = ACTIONS(12519), + [anon_sym_BSLASHVref] = ACTIONS(12519), + [anon_sym_BSLASHautoref] = ACTIONS(12519), + [anon_sym_BSLASHpageref] = ACTIONS(12519), + [anon_sym_BSLASHcref] = ACTIONS(12519), + [anon_sym_BSLASHCref] = ACTIONS(12519), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnameCref] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12519), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12519), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12519), + [anon_sym_BSLASHlabelcref] = ACTIONS(12519), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12519), + [anon_sym_BSLASHeqref] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange] = ACTIONS(12519), + [anon_sym_BSLASHCrefrange] = ACTIONS(12519), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewlabel] = ACTIONS(12519), + [anon_sym_BSLASHnewcommand] = ACTIONS(12519), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12519), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12517), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12519), + [anon_sym_BSLASHgls] = ACTIONS(12519), + [anon_sym_BSLASHGls] = ACTIONS(12519), + [anon_sym_BSLASHGLS] = ACTIONS(12519), + [anon_sym_BSLASHglspl] = ACTIONS(12519), + [anon_sym_BSLASHGlspl] = ACTIONS(12519), + [anon_sym_BSLASHGLSpl] = ACTIONS(12519), + [anon_sym_BSLASHglsdisp] = ACTIONS(12519), + [anon_sym_BSLASHglslink] = ACTIONS(12519), + [anon_sym_BSLASHglstext] = ACTIONS(12519), + [anon_sym_BSLASHGlstext] = ACTIONS(12519), + [anon_sym_BSLASHGLStext] = ACTIONS(12519), + [anon_sym_BSLASHglsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12519), + [anon_sym_BSLASHglsplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSplural] = ACTIONS(12519), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12519), + [anon_sym_BSLASHglsname] = ACTIONS(12519), + [anon_sym_BSLASHGlsname] = ACTIONS(12519), + [anon_sym_BSLASHGLSname] = ACTIONS(12519), + [anon_sym_BSLASHglssymbol] = ACTIONS(12519), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12519), + [anon_sym_BSLASHglsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12519), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12519), + [anon_sym_BSLASHglsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12519), + [anon_sym_BSLASHglsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12519), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12519), + [anon_sym_BSLASHglsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12519), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12519), + [anon_sym_BSLASHglsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12519), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12519), + [anon_sym_BSLASHnewacronym] = ACTIONS(12519), + [anon_sym_BSLASHacrshort] = ACTIONS(12519), + [anon_sym_BSLASHAcrshort] = ACTIONS(12519), + [anon_sym_BSLASHACRshort] = ACTIONS(12519), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12519), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12519), + [anon_sym_BSLASHacrlong] = ACTIONS(12519), + [anon_sym_BSLASHAcrlong] = ACTIONS(12519), + [anon_sym_BSLASHACRlong] = ACTIONS(12519), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12519), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12519), + [anon_sym_BSLASHacrfull] = ACTIONS(12519), + [anon_sym_BSLASHAcrfull] = ACTIONS(12519), + [anon_sym_BSLASHACRfull] = ACTIONS(12519), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12519), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12519), + [anon_sym_BSLASHacs] = ACTIONS(12519), + [anon_sym_BSLASHAcs] = ACTIONS(12519), + [anon_sym_BSLASHacsp] = ACTIONS(12519), + [anon_sym_BSLASHAcsp] = ACTIONS(12519), + [anon_sym_BSLASHacl] = ACTIONS(12519), + [anon_sym_BSLASHAcl] = ACTIONS(12519), + [anon_sym_BSLASHaclp] = ACTIONS(12519), + [anon_sym_BSLASHAclp] = ACTIONS(12519), + [anon_sym_BSLASHacf] = ACTIONS(12519), + [anon_sym_BSLASHAcf] = ACTIONS(12519), + [anon_sym_BSLASHacfp] = ACTIONS(12519), + [anon_sym_BSLASHAcfp] = ACTIONS(12519), + [anon_sym_BSLASHac] = ACTIONS(12519), + [anon_sym_BSLASHAc] = ACTIONS(12519), + [anon_sym_BSLASHacp] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12519), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12519), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12519), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12519), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12519), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12519), + [anon_sym_BSLASHcolor] = ACTIONS(12519), + [anon_sym_BSLASHcolorbox] = ACTIONS(12519), + [anon_sym_BSLASHtextcolor] = ACTIONS(12519), + [anon_sym_BSLASHpagecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12519), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12519), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12519), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12519), + }, + [1970] = { + [sym_generic_command_name] = ACTIONS(12523), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12521), + [anon_sym_RBRACK] = ACTIONS(12521), + [anon_sym_LBRACE] = ACTIONS(12521), + [anon_sym_RBRACE] = ACTIONS(12521), + [anon_sym_LPAREN] = ACTIONS(12521), + [anon_sym_COMMA] = ACTIONS(12521), + [anon_sym_EQ] = ACTIONS(12521), + [sym_word] = ACTIONS(12521), + [sym_param] = ACTIONS(12521), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12521), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12521), + [anon_sym_DOLLAR] = ACTIONS(12523), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12521), + [anon_sym_BSLASHbegin] = ACTIONS(12523), + [anon_sym_BSLASHcaption] = ACTIONS(12523), + [anon_sym_BSLASHcite] = ACTIONS(12523), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCite] = ACTIONS(12523), + [anon_sym_BSLASHnocite] = ACTIONS(12523), + [anon_sym_BSLASHcitet] = ACTIONS(12523), + [anon_sym_BSLASHcitep] = ACTIONS(12523), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteauthor] = ACTIONS(12523), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12523), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitetitle] = ACTIONS(12523), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteyear] = ACTIONS(12523), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12521), + [anon_sym_BSLASHcitedate] = ACTIONS(12523), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12521), + [anon_sym_BSLASHciteurl] = ACTIONS(12523), + [anon_sym_BSLASHfullcite] = ACTIONS(12523), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12523), + [anon_sym_BSLASHcitealt] = ACTIONS(12523), + [anon_sym_BSLASHcitealp] = ACTIONS(12523), + [anon_sym_BSLASHcitetext] = ACTIONS(12523), + [anon_sym_BSLASHparencite] = ACTIONS(12523), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHParencite] = ACTIONS(12523), + [anon_sym_BSLASHfootcite] = ACTIONS(12523), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12523), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12523), + [anon_sym_BSLASHtextcite] = ACTIONS(12523), + [anon_sym_BSLASHTextcite] = ACTIONS(12523), + [anon_sym_BSLASHsmartcite] = ACTIONS(12523), + [anon_sym_BSLASHSmartcite] = ACTIONS(12523), + [anon_sym_BSLASHsupercite] = ACTIONS(12523), + [anon_sym_BSLASHautocite] = ACTIONS(12523), + [anon_sym_BSLASHAutocite] = ACTIONS(12523), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12521), + [anon_sym_BSLASHvolcite] = ACTIONS(12523), + [anon_sym_BSLASHVolcite] = ACTIONS(12523), + [anon_sym_BSLASHpvolcite] = ACTIONS(12523), + [anon_sym_BSLASHPvolcite] = ACTIONS(12523), + [anon_sym_BSLASHfvolcite] = ACTIONS(12523), + [anon_sym_BSLASHftvolcite] = ACTIONS(12523), + [anon_sym_BSLASHsvolcite] = ACTIONS(12523), + [anon_sym_BSLASHSvolcite] = ACTIONS(12523), + [anon_sym_BSLASHtvolcite] = ACTIONS(12523), + [anon_sym_BSLASHTvolcite] = ACTIONS(12523), + [anon_sym_BSLASHavolcite] = ACTIONS(12523), + [anon_sym_BSLASHAvolcite] = ACTIONS(12523), + [anon_sym_BSLASHnotecite] = ACTIONS(12523), + [anon_sym_BSLASHpnotecite] = ACTIONS(12523), + [anon_sym_BSLASHPnotecite] = ACTIONS(12523), + [anon_sym_BSLASHfnotecite] = ACTIONS(12523), + [anon_sym_BSLASHusepackage] = ACTIONS(12523), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12523), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12523), + [anon_sym_BSLASHinclude] = ACTIONS(12523), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12523), + [anon_sym_BSLASHinput] = ACTIONS(12523), + [anon_sym_BSLASHsubfile] = ACTIONS(12523), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12523), + [anon_sym_BSLASHbibliography] = ACTIONS(12523), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12523), + [anon_sym_BSLASHincludesvg] = ACTIONS(12523), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12523), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12523), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12523), + [anon_sym_BSLASHimport] = ACTIONS(12523), + [anon_sym_BSLASHsubimport] = ACTIONS(12523), + [anon_sym_BSLASHinputfrom] = ACTIONS(12523), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12523), + [anon_sym_BSLASHincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12523), + [anon_sym_BSLASHlabel] = ACTIONS(12523), + [anon_sym_BSLASHref] = ACTIONS(12523), + [anon_sym_BSLASHvref] = ACTIONS(12523), + [anon_sym_BSLASHVref] = ACTIONS(12523), + [anon_sym_BSLASHautoref] = ACTIONS(12523), + [anon_sym_BSLASHpageref] = ACTIONS(12523), + [anon_sym_BSLASHcref] = ACTIONS(12523), + [anon_sym_BSLASHCref] = ACTIONS(12523), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnameCref] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12523), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12523), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12523), + [anon_sym_BSLASHlabelcref] = ACTIONS(12523), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12523), + [anon_sym_BSLASHeqref] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange] = ACTIONS(12523), + [anon_sym_BSLASHCrefrange] = ACTIONS(12523), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewlabel] = ACTIONS(12523), + [anon_sym_BSLASHnewcommand] = ACTIONS(12523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12523), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12521), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12523), + [anon_sym_BSLASHgls] = ACTIONS(12523), + [anon_sym_BSLASHGls] = ACTIONS(12523), + [anon_sym_BSLASHGLS] = ACTIONS(12523), + [anon_sym_BSLASHglspl] = ACTIONS(12523), + [anon_sym_BSLASHGlspl] = ACTIONS(12523), + [anon_sym_BSLASHGLSpl] = ACTIONS(12523), + [anon_sym_BSLASHglsdisp] = ACTIONS(12523), + [anon_sym_BSLASHglslink] = ACTIONS(12523), + [anon_sym_BSLASHglstext] = ACTIONS(12523), + [anon_sym_BSLASHGlstext] = ACTIONS(12523), + [anon_sym_BSLASHGLStext] = ACTIONS(12523), + [anon_sym_BSLASHglsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12523), + [anon_sym_BSLASHglsplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSplural] = ACTIONS(12523), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12523), + [anon_sym_BSLASHglsname] = ACTIONS(12523), + [anon_sym_BSLASHGlsname] = ACTIONS(12523), + [anon_sym_BSLASHGLSname] = ACTIONS(12523), + [anon_sym_BSLASHglssymbol] = ACTIONS(12523), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12523), + [anon_sym_BSLASHglsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12523), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12523), + [anon_sym_BSLASHglsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12523), + [anon_sym_BSLASHglsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12523), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12523), + [anon_sym_BSLASHglsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12523), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12523), + [anon_sym_BSLASHglsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12523), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12523), + [anon_sym_BSLASHnewacronym] = ACTIONS(12523), + [anon_sym_BSLASHacrshort] = ACTIONS(12523), + [anon_sym_BSLASHAcrshort] = ACTIONS(12523), + [anon_sym_BSLASHACRshort] = ACTIONS(12523), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12523), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12523), + [anon_sym_BSLASHacrlong] = ACTIONS(12523), + [anon_sym_BSLASHAcrlong] = ACTIONS(12523), + [anon_sym_BSLASHACRlong] = ACTIONS(12523), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12523), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12523), + [anon_sym_BSLASHacrfull] = ACTIONS(12523), + [anon_sym_BSLASHAcrfull] = ACTIONS(12523), + [anon_sym_BSLASHACRfull] = ACTIONS(12523), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12523), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12523), + [anon_sym_BSLASHacs] = ACTIONS(12523), + [anon_sym_BSLASHAcs] = ACTIONS(12523), + [anon_sym_BSLASHacsp] = ACTIONS(12523), + [anon_sym_BSLASHAcsp] = ACTIONS(12523), + [anon_sym_BSLASHacl] = ACTIONS(12523), + [anon_sym_BSLASHAcl] = ACTIONS(12523), + [anon_sym_BSLASHaclp] = ACTIONS(12523), + [anon_sym_BSLASHAclp] = ACTIONS(12523), + [anon_sym_BSLASHacf] = ACTIONS(12523), + [anon_sym_BSLASHAcf] = ACTIONS(12523), + [anon_sym_BSLASHacfp] = ACTIONS(12523), + [anon_sym_BSLASHAcfp] = ACTIONS(12523), + [anon_sym_BSLASHac] = ACTIONS(12523), + [anon_sym_BSLASHAc] = ACTIONS(12523), + [anon_sym_BSLASHacp] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12523), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12523), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12523), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12523), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12523), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12523), + [anon_sym_BSLASHcolor] = ACTIONS(12523), + [anon_sym_BSLASHcolorbox] = ACTIONS(12523), + [anon_sym_BSLASHtextcolor] = ACTIONS(12523), + [anon_sym_BSLASHpagecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12523), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12523), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12523), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12523), + }, + [1971] = { + [sym_generic_command_name] = ACTIONS(12527), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12525), + [anon_sym_RBRACK] = ACTIONS(12525), + [anon_sym_LBRACE] = ACTIONS(12525), + [anon_sym_RBRACE] = ACTIONS(12525), + [anon_sym_LPAREN] = ACTIONS(12525), + [anon_sym_COMMA] = ACTIONS(12525), + [anon_sym_EQ] = ACTIONS(12525), + [sym_word] = ACTIONS(12525), + [sym_param] = ACTIONS(12525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12525), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12525), + [anon_sym_DOLLAR] = ACTIONS(12527), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12525), + [anon_sym_BSLASHbegin] = ACTIONS(12527), + [anon_sym_BSLASHcaption] = ACTIONS(12527), + [anon_sym_BSLASHcite] = ACTIONS(12527), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCite] = ACTIONS(12527), + [anon_sym_BSLASHnocite] = ACTIONS(12527), + [anon_sym_BSLASHcitet] = ACTIONS(12527), + [anon_sym_BSLASHcitep] = ACTIONS(12527), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteauthor] = ACTIONS(12527), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12527), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitetitle] = ACTIONS(12527), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteyear] = ACTIONS(12527), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12525), + [anon_sym_BSLASHcitedate] = ACTIONS(12527), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12525), + [anon_sym_BSLASHciteurl] = ACTIONS(12527), + [anon_sym_BSLASHfullcite] = ACTIONS(12527), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12527), + [anon_sym_BSLASHcitealt] = ACTIONS(12527), + [anon_sym_BSLASHcitealp] = ACTIONS(12527), + [anon_sym_BSLASHcitetext] = ACTIONS(12527), + [anon_sym_BSLASHparencite] = ACTIONS(12527), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHParencite] = ACTIONS(12527), + [anon_sym_BSLASHfootcite] = ACTIONS(12527), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12527), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12527), + [anon_sym_BSLASHtextcite] = ACTIONS(12527), + [anon_sym_BSLASHTextcite] = ACTIONS(12527), + [anon_sym_BSLASHsmartcite] = ACTIONS(12527), + [anon_sym_BSLASHSmartcite] = ACTIONS(12527), + [anon_sym_BSLASHsupercite] = ACTIONS(12527), + [anon_sym_BSLASHautocite] = ACTIONS(12527), + [anon_sym_BSLASHAutocite] = ACTIONS(12527), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12525), + [anon_sym_BSLASHvolcite] = ACTIONS(12527), + [anon_sym_BSLASHVolcite] = ACTIONS(12527), + [anon_sym_BSLASHpvolcite] = ACTIONS(12527), + [anon_sym_BSLASHPvolcite] = ACTIONS(12527), + [anon_sym_BSLASHfvolcite] = ACTIONS(12527), + [anon_sym_BSLASHftvolcite] = ACTIONS(12527), + [anon_sym_BSLASHsvolcite] = ACTIONS(12527), + [anon_sym_BSLASHSvolcite] = ACTIONS(12527), + [anon_sym_BSLASHtvolcite] = ACTIONS(12527), + [anon_sym_BSLASHTvolcite] = ACTIONS(12527), + [anon_sym_BSLASHavolcite] = ACTIONS(12527), + [anon_sym_BSLASHAvolcite] = ACTIONS(12527), + [anon_sym_BSLASHnotecite] = ACTIONS(12527), + [anon_sym_BSLASHpnotecite] = ACTIONS(12527), + [anon_sym_BSLASHPnotecite] = ACTIONS(12527), + [anon_sym_BSLASHfnotecite] = ACTIONS(12527), + [anon_sym_BSLASHusepackage] = ACTIONS(12527), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12527), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12527), + [anon_sym_BSLASHinclude] = ACTIONS(12527), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12527), + [anon_sym_BSLASHinput] = ACTIONS(12527), + [anon_sym_BSLASHsubfile] = ACTIONS(12527), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12527), + [anon_sym_BSLASHbibliography] = ACTIONS(12527), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12527), + [anon_sym_BSLASHincludesvg] = ACTIONS(12527), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12527), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12527), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12527), + [anon_sym_BSLASHimport] = ACTIONS(12527), + [anon_sym_BSLASHsubimport] = ACTIONS(12527), + [anon_sym_BSLASHinputfrom] = ACTIONS(12527), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12527), + [anon_sym_BSLASHincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12527), + [anon_sym_BSLASHlabel] = ACTIONS(12527), + [anon_sym_BSLASHref] = ACTIONS(12527), + [anon_sym_BSLASHvref] = ACTIONS(12527), + [anon_sym_BSLASHVref] = ACTIONS(12527), + [anon_sym_BSLASHautoref] = ACTIONS(12527), + [anon_sym_BSLASHpageref] = ACTIONS(12527), + [anon_sym_BSLASHcref] = ACTIONS(12527), + [anon_sym_BSLASHCref] = ACTIONS(12527), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnameCref] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12527), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12527), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12527), + [anon_sym_BSLASHlabelcref] = ACTIONS(12527), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12527), + [anon_sym_BSLASHeqref] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange] = ACTIONS(12527), + [anon_sym_BSLASHCrefrange] = ACTIONS(12527), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewlabel] = ACTIONS(12527), + [anon_sym_BSLASHnewcommand] = ACTIONS(12527), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12527), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12527), + [anon_sym_BSLASHgls] = ACTIONS(12527), + [anon_sym_BSLASHGls] = ACTIONS(12527), + [anon_sym_BSLASHGLS] = ACTIONS(12527), + [anon_sym_BSLASHglspl] = ACTIONS(12527), + [anon_sym_BSLASHGlspl] = ACTIONS(12527), + [anon_sym_BSLASHGLSpl] = ACTIONS(12527), + [anon_sym_BSLASHglsdisp] = ACTIONS(12527), + [anon_sym_BSLASHglslink] = ACTIONS(12527), + [anon_sym_BSLASHglstext] = ACTIONS(12527), + [anon_sym_BSLASHGlstext] = ACTIONS(12527), + [anon_sym_BSLASHGLStext] = ACTIONS(12527), + [anon_sym_BSLASHglsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12527), + [anon_sym_BSLASHglsplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSplural] = ACTIONS(12527), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12527), + [anon_sym_BSLASHglsname] = ACTIONS(12527), + [anon_sym_BSLASHGlsname] = ACTIONS(12527), + [anon_sym_BSLASHGLSname] = ACTIONS(12527), + [anon_sym_BSLASHglssymbol] = ACTIONS(12527), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12527), + [anon_sym_BSLASHglsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12527), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12527), + [anon_sym_BSLASHglsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12527), + [anon_sym_BSLASHglsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12527), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12527), + [anon_sym_BSLASHglsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12527), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12527), + [anon_sym_BSLASHglsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12527), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12527), + [anon_sym_BSLASHnewacronym] = ACTIONS(12527), + [anon_sym_BSLASHacrshort] = ACTIONS(12527), + [anon_sym_BSLASHAcrshort] = ACTIONS(12527), + [anon_sym_BSLASHACRshort] = ACTIONS(12527), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12527), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12527), + [anon_sym_BSLASHacrlong] = ACTIONS(12527), + [anon_sym_BSLASHAcrlong] = ACTIONS(12527), + [anon_sym_BSLASHACRlong] = ACTIONS(12527), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12527), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12527), + [anon_sym_BSLASHacrfull] = ACTIONS(12527), + [anon_sym_BSLASHAcrfull] = ACTIONS(12527), + [anon_sym_BSLASHACRfull] = ACTIONS(12527), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12527), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12527), + [anon_sym_BSLASHacs] = ACTIONS(12527), + [anon_sym_BSLASHAcs] = ACTIONS(12527), + [anon_sym_BSLASHacsp] = ACTIONS(12527), + [anon_sym_BSLASHAcsp] = ACTIONS(12527), + [anon_sym_BSLASHacl] = ACTIONS(12527), + [anon_sym_BSLASHAcl] = ACTIONS(12527), + [anon_sym_BSLASHaclp] = ACTIONS(12527), + [anon_sym_BSLASHAclp] = ACTIONS(12527), + [anon_sym_BSLASHacf] = ACTIONS(12527), + [anon_sym_BSLASHAcf] = ACTIONS(12527), + [anon_sym_BSLASHacfp] = ACTIONS(12527), + [anon_sym_BSLASHAcfp] = ACTIONS(12527), + [anon_sym_BSLASHac] = ACTIONS(12527), + [anon_sym_BSLASHAc] = ACTIONS(12527), + [anon_sym_BSLASHacp] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12527), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12527), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12527), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12527), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12527), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12527), + [anon_sym_BSLASHcolor] = ACTIONS(12527), + [anon_sym_BSLASHcolorbox] = ACTIONS(12527), + [anon_sym_BSLASHtextcolor] = ACTIONS(12527), + [anon_sym_BSLASHpagecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12527), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12527), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12527), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12527), + }, + [1972] = { + [sym_generic_command_name] = ACTIONS(12531), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12529), + [anon_sym_RBRACK] = ACTIONS(12529), + [anon_sym_LBRACE] = ACTIONS(12529), + [anon_sym_RBRACE] = ACTIONS(12529), + [anon_sym_LPAREN] = ACTIONS(12529), + [anon_sym_COMMA] = ACTIONS(12529), + [anon_sym_EQ] = ACTIONS(12529), + [sym_word] = ACTIONS(12529), + [sym_param] = ACTIONS(12529), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12529), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12529), + [anon_sym_DOLLAR] = ACTIONS(12531), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12529), + [anon_sym_BSLASHbegin] = ACTIONS(12531), + [anon_sym_BSLASHcaption] = ACTIONS(12531), + [anon_sym_BSLASHcite] = ACTIONS(12531), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCite] = ACTIONS(12531), + [anon_sym_BSLASHnocite] = ACTIONS(12531), + [anon_sym_BSLASHcitet] = ACTIONS(12531), + [anon_sym_BSLASHcitep] = ACTIONS(12531), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteauthor] = ACTIONS(12531), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12531), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitetitle] = ACTIONS(12531), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteyear] = ACTIONS(12531), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12529), + [anon_sym_BSLASHcitedate] = ACTIONS(12531), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12529), + [anon_sym_BSLASHciteurl] = ACTIONS(12531), + [anon_sym_BSLASHfullcite] = ACTIONS(12531), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12531), + [anon_sym_BSLASHcitealt] = ACTIONS(12531), + [anon_sym_BSLASHcitealp] = ACTIONS(12531), + [anon_sym_BSLASHcitetext] = ACTIONS(12531), + [anon_sym_BSLASHparencite] = ACTIONS(12531), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHParencite] = ACTIONS(12531), + [anon_sym_BSLASHfootcite] = ACTIONS(12531), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12531), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12531), + [anon_sym_BSLASHtextcite] = ACTIONS(12531), + [anon_sym_BSLASHTextcite] = ACTIONS(12531), + [anon_sym_BSLASHsmartcite] = ACTIONS(12531), + [anon_sym_BSLASHSmartcite] = ACTIONS(12531), + [anon_sym_BSLASHsupercite] = ACTIONS(12531), + [anon_sym_BSLASHautocite] = ACTIONS(12531), + [anon_sym_BSLASHAutocite] = ACTIONS(12531), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12529), + [anon_sym_BSLASHvolcite] = ACTIONS(12531), + [anon_sym_BSLASHVolcite] = ACTIONS(12531), + [anon_sym_BSLASHpvolcite] = ACTIONS(12531), + [anon_sym_BSLASHPvolcite] = ACTIONS(12531), + [anon_sym_BSLASHfvolcite] = ACTIONS(12531), + [anon_sym_BSLASHftvolcite] = ACTIONS(12531), + [anon_sym_BSLASHsvolcite] = ACTIONS(12531), + [anon_sym_BSLASHSvolcite] = ACTIONS(12531), + [anon_sym_BSLASHtvolcite] = ACTIONS(12531), + [anon_sym_BSLASHTvolcite] = ACTIONS(12531), + [anon_sym_BSLASHavolcite] = ACTIONS(12531), + [anon_sym_BSLASHAvolcite] = ACTIONS(12531), + [anon_sym_BSLASHnotecite] = ACTIONS(12531), + [anon_sym_BSLASHpnotecite] = ACTIONS(12531), + [anon_sym_BSLASHPnotecite] = ACTIONS(12531), + [anon_sym_BSLASHfnotecite] = ACTIONS(12531), + [anon_sym_BSLASHusepackage] = ACTIONS(12531), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12531), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12531), + [anon_sym_BSLASHinclude] = ACTIONS(12531), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12531), + [anon_sym_BSLASHinput] = ACTIONS(12531), + [anon_sym_BSLASHsubfile] = ACTIONS(12531), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12531), + [anon_sym_BSLASHbibliography] = ACTIONS(12531), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12531), + [anon_sym_BSLASHincludesvg] = ACTIONS(12531), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12531), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12531), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12531), + [anon_sym_BSLASHimport] = ACTIONS(12531), + [anon_sym_BSLASHsubimport] = ACTIONS(12531), + [anon_sym_BSLASHinputfrom] = ACTIONS(12531), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12531), + [anon_sym_BSLASHincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12531), + [anon_sym_BSLASHlabel] = ACTIONS(12531), + [anon_sym_BSLASHref] = ACTIONS(12531), + [anon_sym_BSLASHvref] = ACTIONS(12531), + [anon_sym_BSLASHVref] = ACTIONS(12531), + [anon_sym_BSLASHautoref] = ACTIONS(12531), + [anon_sym_BSLASHpageref] = ACTIONS(12531), + [anon_sym_BSLASHcref] = ACTIONS(12531), + [anon_sym_BSLASHCref] = ACTIONS(12531), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnameCref] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12531), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12531), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12531), + [anon_sym_BSLASHlabelcref] = ACTIONS(12531), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12531), + [anon_sym_BSLASHeqref] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange] = ACTIONS(12531), + [anon_sym_BSLASHCrefrange] = ACTIONS(12531), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewlabel] = ACTIONS(12531), + [anon_sym_BSLASHnewcommand] = ACTIONS(12531), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12531), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12529), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12531), + [anon_sym_BSLASHgls] = ACTIONS(12531), + [anon_sym_BSLASHGls] = ACTIONS(12531), + [anon_sym_BSLASHGLS] = ACTIONS(12531), + [anon_sym_BSLASHglspl] = ACTIONS(12531), + [anon_sym_BSLASHGlspl] = ACTIONS(12531), + [anon_sym_BSLASHGLSpl] = ACTIONS(12531), + [anon_sym_BSLASHglsdisp] = ACTIONS(12531), + [anon_sym_BSLASHglslink] = ACTIONS(12531), + [anon_sym_BSLASHglstext] = ACTIONS(12531), + [anon_sym_BSLASHGlstext] = ACTIONS(12531), + [anon_sym_BSLASHGLStext] = ACTIONS(12531), + [anon_sym_BSLASHglsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12531), + [anon_sym_BSLASHglsplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSplural] = ACTIONS(12531), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12531), + [anon_sym_BSLASHglsname] = ACTIONS(12531), + [anon_sym_BSLASHGlsname] = ACTIONS(12531), + [anon_sym_BSLASHGLSname] = ACTIONS(12531), + [anon_sym_BSLASHglssymbol] = ACTIONS(12531), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12531), + [anon_sym_BSLASHglsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12531), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12531), + [anon_sym_BSLASHglsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12531), + [anon_sym_BSLASHglsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12531), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12531), + [anon_sym_BSLASHglsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12531), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12531), + [anon_sym_BSLASHglsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12531), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12531), + [anon_sym_BSLASHnewacronym] = ACTIONS(12531), + [anon_sym_BSLASHacrshort] = ACTIONS(12531), + [anon_sym_BSLASHAcrshort] = ACTIONS(12531), + [anon_sym_BSLASHACRshort] = ACTIONS(12531), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12531), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12531), + [anon_sym_BSLASHacrlong] = ACTIONS(12531), + [anon_sym_BSLASHAcrlong] = ACTIONS(12531), + [anon_sym_BSLASHACRlong] = ACTIONS(12531), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12531), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12531), + [anon_sym_BSLASHacrfull] = ACTIONS(12531), + [anon_sym_BSLASHAcrfull] = ACTIONS(12531), + [anon_sym_BSLASHACRfull] = ACTIONS(12531), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12531), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12531), + [anon_sym_BSLASHacs] = ACTIONS(12531), + [anon_sym_BSLASHAcs] = ACTIONS(12531), + [anon_sym_BSLASHacsp] = ACTIONS(12531), + [anon_sym_BSLASHAcsp] = ACTIONS(12531), + [anon_sym_BSLASHacl] = ACTIONS(12531), + [anon_sym_BSLASHAcl] = ACTIONS(12531), + [anon_sym_BSLASHaclp] = ACTIONS(12531), + [anon_sym_BSLASHAclp] = ACTIONS(12531), + [anon_sym_BSLASHacf] = ACTIONS(12531), + [anon_sym_BSLASHAcf] = ACTIONS(12531), + [anon_sym_BSLASHacfp] = ACTIONS(12531), + [anon_sym_BSLASHAcfp] = ACTIONS(12531), + [anon_sym_BSLASHac] = ACTIONS(12531), + [anon_sym_BSLASHAc] = ACTIONS(12531), + [anon_sym_BSLASHacp] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12531), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12531), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12531), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12531), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12531), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12531), + [anon_sym_BSLASHcolor] = ACTIONS(12531), + [anon_sym_BSLASHcolorbox] = ACTIONS(12531), + [anon_sym_BSLASHtextcolor] = ACTIONS(12531), + [anon_sym_BSLASHpagecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12531), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12531), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12531), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12531), + }, + [1973] = { + [sym_generic_command_name] = ACTIONS(12473), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12471), + [anon_sym_RBRACK] = ACTIONS(12471), + [anon_sym_LBRACE] = ACTIONS(12471), + [anon_sym_RBRACE] = ACTIONS(12471), + [anon_sym_LPAREN] = ACTIONS(12471), + [anon_sym_COMMA] = ACTIONS(12471), + [anon_sym_EQ] = ACTIONS(12471), + [sym_word] = ACTIONS(12471), + [sym_param] = ACTIONS(12471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12471), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12471), + [anon_sym_DOLLAR] = ACTIONS(12473), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12471), + [anon_sym_BSLASHbegin] = ACTIONS(12473), + [anon_sym_BSLASHcaption] = ACTIONS(12473), + [anon_sym_BSLASHcite] = ACTIONS(12473), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCite] = ACTIONS(12473), + [anon_sym_BSLASHnocite] = ACTIONS(12473), + [anon_sym_BSLASHcitet] = ACTIONS(12473), + [anon_sym_BSLASHcitep] = ACTIONS(12473), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteauthor] = ACTIONS(12473), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12473), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitetitle] = ACTIONS(12473), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteyear] = ACTIONS(12473), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12471), + [anon_sym_BSLASHcitedate] = ACTIONS(12473), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12471), + [anon_sym_BSLASHciteurl] = ACTIONS(12473), + [anon_sym_BSLASHfullcite] = ACTIONS(12473), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12473), + [anon_sym_BSLASHcitealt] = ACTIONS(12473), + [anon_sym_BSLASHcitealp] = ACTIONS(12473), + [anon_sym_BSLASHcitetext] = ACTIONS(12473), + [anon_sym_BSLASHparencite] = ACTIONS(12473), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHParencite] = ACTIONS(12473), + [anon_sym_BSLASHfootcite] = ACTIONS(12473), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12473), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12473), + [anon_sym_BSLASHtextcite] = ACTIONS(12473), + [anon_sym_BSLASHTextcite] = ACTIONS(12473), + [anon_sym_BSLASHsmartcite] = ACTIONS(12473), + [anon_sym_BSLASHSmartcite] = ACTIONS(12473), + [anon_sym_BSLASHsupercite] = ACTIONS(12473), + [anon_sym_BSLASHautocite] = ACTIONS(12473), + [anon_sym_BSLASHAutocite] = ACTIONS(12473), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12471), + [anon_sym_BSLASHvolcite] = ACTIONS(12473), + [anon_sym_BSLASHVolcite] = ACTIONS(12473), + [anon_sym_BSLASHpvolcite] = ACTIONS(12473), + [anon_sym_BSLASHPvolcite] = ACTIONS(12473), + [anon_sym_BSLASHfvolcite] = ACTIONS(12473), + [anon_sym_BSLASHftvolcite] = ACTIONS(12473), + [anon_sym_BSLASHsvolcite] = ACTIONS(12473), + [anon_sym_BSLASHSvolcite] = ACTIONS(12473), + [anon_sym_BSLASHtvolcite] = ACTIONS(12473), + [anon_sym_BSLASHTvolcite] = ACTIONS(12473), + [anon_sym_BSLASHavolcite] = ACTIONS(12473), + [anon_sym_BSLASHAvolcite] = ACTIONS(12473), + [anon_sym_BSLASHnotecite] = ACTIONS(12473), + [anon_sym_BSLASHpnotecite] = ACTIONS(12473), + [anon_sym_BSLASHPnotecite] = ACTIONS(12473), + [anon_sym_BSLASHfnotecite] = ACTIONS(12473), + [anon_sym_BSLASHusepackage] = ACTIONS(12473), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12473), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12473), + [anon_sym_BSLASHinclude] = ACTIONS(12473), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12473), + [anon_sym_BSLASHinput] = ACTIONS(12473), + [anon_sym_BSLASHsubfile] = ACTIONS(12473), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12473), + [anon_sym_BSLASHbibliography] = ACTIONS(12473), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12473), + [anon_sym_BSLASHincludesvg] = ACTIONS(12473), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12473), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12473), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12473), + [anon_sym_BSLASHimport] = ACTIONS(12473), + [anon_sym_BSLASHsubimport] = ACTIONS(12473), + [anon_sym_BSLASHinputfrom] = ACTIONS(12473), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12473), + [anon_sym_BSLASHincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12473), + [anon_sym_BSLASHlabel] = ACTIONS(12473), + [anon_sym_BSLASHref] = ACTIONS(12473), + [anon_sym_BSLASHvref] = ACTIONS(12473), + [anon_sym_BSLASHVref] = ACTIONS(12473), + [anon_sym_BSLASHautoref] = ACTIONS(12473), + [anon_sym_BSLASHpageref] = ACTIONS(12473), + [anon_sym_BSLASHcref] = ACTIONS(12473), + [anon_sym_BSLASHCref] = ACTIONS(12473), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnameCref] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12473), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12473), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12473), + [anon_sym_BSLASHlabelcref] = ACTIONS(12473), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12473), + [anon_sym_BSLASHeqref] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange] = ACTIONS(12473), + [anon_sym_BSLASHCrefrange] = ACTIONS(12473), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewlabel] = ACTIONS(12473), + [anon_sym_BSLASHnewcommand] = ACTIONS(12473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12473), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12473), + [anon_sym_BSLASHgls] = ACTIONS(12473), + [anon_sym_BSLASHGls] = ACTIONS(12473), + [anon_sym_BSLASHGLS] = ACTIONS(12473), + [anon_sym_BSLASHglspl] = ACTIONS(12473), + [anon_sym_BSLASHGlspl] = ACTIONS(12473), + [anon_sym_BSLASHGLSpl] = ACTIONS(12473), + [anon_sym_BSLASHglsdisp] = ACTIONS(12473), + [anon_sym_BSLASHglslink] = ACTIONS(12473), + [anon_sym_BSLASHglstext] = ACTIONS(12473), + [anon_sym_BSLASHGlstext] = ACTIONS(12473), + [anon_sym_BSLASHGLStext] = ACTIONS(12473), + [anon_sym_BSLASHglsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12473), + [anon_sym_BSLASHglsplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSplural] = ACTIONS(12473), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12473), + [anon_sym_BSLASHglsname] = ACTIONS(12473), + [anon_sym_BSLASHGlsname] = ACTIONS(12473), + [anon_sym_BSLASHGLSname] = ACTIONS(12473), + [anon_sym_BSLASHglssymbol] = ACTIONS(12473), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12473), + [anon_sym_BSLASHglsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12473), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12473), + [anon_sym_BSLASHglsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12473), + [anon_sym_BSLASHglsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12473), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12473), + [anon_sym_BSLASHglsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12473), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12473), + [anon_sym_BSLASHglsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12473), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12473), + [anon_sym_BSLASHnewacronym] = ACTIONS(12473), + [anon_sym_BSLASHacrshort] = ACTIONS(12473), + [anon_sym_BSLASHAcrshort] = ACTIONS(12473), + [anon_sym_BSLASHACRshort] = ACTIONS(12473), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12473), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12473), + [anon_sym_BSLASHacrlong] = ACTIONS(12473), + [anon_sym_BSLASHAcrlong] = ACTIONS(12473), + [anon_sym_BSLASHACRlong] = ACTIONS(12473), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12473), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12473), + [anon_sym_BSLASHacrfull] = ACTIONS(12473), + [anon_sym_BSLASHAcrfull] = ACTIONS(12473), + [anon_sym_BSLASHACRfull] = ACTIONS(12473), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12473), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12473), + [anon_sym_BSLASHacs] = ACTIONS(12473), + [anon_sym_BSLASHAcs] = ACTIONS(12473), + [anon_sym_BSLASHacsp] = ACTIONS(12473), + [anon_sym_BSLASHAcsp] = ACTIONS(12473), + [anon_sym_BSLASHacl] = ACTIONS(12473), + [anon_sym_BSLASHAcl] = ACTIONS(12473), + [anon_sym_BSLASHaclp] = ACTIONS(12473), + [anon_sym_BSLASHAclp] = ACTIONS(12473), + [anon_sym_BSLASHacf] = ACTIONS(12473), + [anon_sym_BSLASHAcf] = ACTIONS(12473), + [anon_sym_BSLASHacfp] = ACTIONS(12473), + [anon_sym_BSLASHAcfp] = ACTIONS(12473), + [anon_sym_BSLASHac] = ACTIONS(12473), + [anon_sym_BSLASHAc] = ACTIONS(12473), + [anon_sym_BSLASHacp] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12473), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12473), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12473), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12473), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12473), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12473), + [anon_sym_BSLASHcolor] = ACTIONS(12473), + [anon_sym_BSLASHcolorbox] = ACTIONS(12473), + [anon_sym_BSLASHtextcolor] = ACTIONS(12473), + [anon_sym_BSLASHpagecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12473), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12473), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12473), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12473), + }, + [1974] = { + [sym_generic_command_name] = ACTIONS(12489), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12487), + [anon_sym_RBRACK] = ACTIONS(12487), + [anon_sym_LBRACE] = ACTIONS(12487), + [anon_sym_RBRACE] = ACTIONS(12487), + [anon_sym_LPAREN] = ACTIONS(12487), + [anon_sym_COMMA] = ACTIONS(12487), + [anon_sym_EQ] = ACTIONS(12487), + [sym_word] = ACTIONS(12487), + [sym_param] = ACTIONS(12487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12487), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12487), + [anon_sym_DOLLAR] = ACTIONS(12489), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12487), + [anon_sym_BSLASHbegin] = ACTIONS(12489), + [anon_sym_BSLASHcaption] = ACTIONS(12489), + [anon_sym_BSLASHcite] = ACTIONS(12489), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCite] = ACTIONS(12489), + [anon_sym_BSLASHnocite] = ACTIONS(12489), + [anon_sym_BSLASHcitet] = ACTIONS(12489), + [anon_sym_BSLASHcitep] = ACTIONS(12489), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteauthor] = ACTIONS(12489), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12489), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitetitle] = ACTIONS(12489), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteyear] = ACTIONS(12489), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12487), + [anon_sym_BSLASHcitedate] = ACTIONS(12489), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12487), + [anon_sym_BSLASHciteurl] = ACTIONS(12489), + [anon_sym_BSLASHfullcite] = ACTIONS(12489), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12489), + [anon_sym_BSLASHcitealt] = ACTIONS(12489), + [anon_sym_BSLASHcitealp] = ACTIONS(12489), + [anon_sym_BSLASHcitetext] = ACTIONS(12489), + [anon_sym_BSLASHparencite] = ACTIONS(12489), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHParencite] = ACTIONS(12489), + [anon_sym_BSLASHfootcite] = ACTIONS(12489), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12489), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12489), + [anon_sym_BSLASHtextcite] = ACTIONS(12489), + [anon_sym_BSLASHTextcite] = ACTIONS(12489), + [anon_sym_BSLASHsmartcite] = ACTIONS(12489), + [anon_sym_BSLASHSmartcite] = ACTIONS(12489), + [anon_sym_BSLASHsupercite] = ACTIONS(12489), + [anon_sym_BSLASHautocite] = ACTIONS(12489), + [anon_sym_BSLASHAutocite] = ACTIONS(12489), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12487), + [anon_sym_BSLASHvolcite] = ACTIONS(12489), + [anon_sym_BSLASHVolcite] = ACTIONS(12489), + [anon_sym_BSLASHpvolcite] = ACTIONS(12489), + [anon_sym_BSLASHPvolcite] = ACTIONS(12489), + [anon_sym_BSLASHfvolcite] = ACTIONS(12489), + [anon_sym_BSLASHftvolcite] = ACTIONS(12489), + [anon_sym_BSLASHsvolcite] = ACTIONS(12489), + [anon_sym_BSLASHSvolcite] = ACTIONS(12489), + [anon_sym_BSLASHtvolcite] = ACTIONS(12489), + [anon_sym_BSLASHTvolcite] = ACTIONS(12489), + [anon_sym_BSLASHavolcite] = ACTIONS(12489), + [anon_sym_BSLASHAvolcite] = ACTIONS(12489), + [anon_sym_BSLASHnotecite] = ACTIONS(12489), + [anon_sym_BSLASHpnotecite] = ACTIONS(12489), + [anon_sym_BSLASHPnotecite] = ACTIONS(12489), + [anon_sym_BSLASHfnotecite] = ACTIONS(12489), + [anon_sym_BSLASHusepackage] = ACTIONS(12489), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12489), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12489), + [anon_sym_BSLASHinclude] = ACTIONS(12489), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12489), + [anon_sym_BSLASHinput] = ACTIONS(12489), + [anon_sym_BSLASHsubfile] = ACTIONS(12489), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12489), + [anon_sym_BSLASHbibliography] = ACTIONS(12489), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12489), + [anon_sym_BSLASHincludesvg] = ACTIONS(12489), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12489), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12489), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12489), + [anon_sym_BSLASHimport] = ACTIONS(12489), + [anon_sym_BSLASHsubimport] = ACTIONS(12489), + [anon_sym_BSLASHinputfrom] = ACTIONS(12489), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12489), + [anon_sym_BSLASHincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12489), + [anon_sym_BSLASHlabel] = ACTIONS(12489), + [anon_sym_BSLASHref] = ACTIONS(12489), + [anon_sym_BSLASHvref] = ACTIONS(12489), + [anon_sym_BSLASHVref] = ACTIONS(12489), + [anon_sym_BSLASHautoref] = ACTIONS(12489), + [anon_sym_BSLASHpageref] = ACTIONS(12489), + [anon_sym_BSLASHcref] = ACTIONS(12489), + [anon_sym_BSLASHCref] = ACTIONS(12489), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnameCref] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12489), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12489), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12489), + [anon_sym_BSLASHlabelcref] = ACTIONS(12489), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12489), + [anon_sym_BSLASHeqref] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange] = ACTIONS(12489), + [anon_sym_BSLASHCrefrange] = ACTIONS(12489), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewlabel] = ACTIONS(12489), + [anon_sym_BSLASHnewcommand] = ACTIONS(12489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12489), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12489), + [anon_sym_BSLASHgls] = ACTIONS(12489), + [anon_sym_BSLASHGls] = ACTIONS(12489), + [anon_sym_BSLASHGLS] = ACTIONS(12489), + [anon_sym_BSLASHglspl] = ACTIONS(12489), + [anon_sym_BSLASHGlspl] = ACTIONS(12489), + [anon_sym_BSLASHGLSpl] = ACTIONS(12489), + [anon_sym_BSLASHglsdisp] = ACTIONS(12489), + [anon_sym_BSLASHglslink] = ACTIONS(12489), + [anon_sym_BSLASHglstext] = ACTIONS(12489), + [anon_sym_BSLASHGlstext] = ACTIONS(12489), + [anon_sym_BSLASHGLStext] = ACTIONS(12489), + [anon_sym_BSLASHglsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12489), + [anon_sym_BSLASHglsplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSplural] = ACTIONS(12489), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12489), + [anon_sym_BSLASHglsname] = ACTIONS(12489), + [anon_sym_BSLASHGlsname] = ACTIONS(12489), + [anon_sym_BSLASHGLSname] = ACTIONS(12489), + [anon_sym_BSLASHglssymbol] = ACTIONS(12489), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12489), + [anon_sym_BSLASHglsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12489), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12489), + [anon_sym_BSLASHglsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12489), + [anon_sym_BSLASHglsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12489), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12489), + [anon_sym_BSLASHglsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12489), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12489), + [anon_sym_BSLASHglsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12489), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12489), + [anon_sym_BSLASHnewacronym] = ACTIONS(12489), + [anon_sym_BSLASHacrshort] = ACTIONS(12489), + [anon_sym_BSLASHAcrshort] = ACTIONS(12489), + [anon_sym_BSLASHACRshort] = ACTIONS(12489), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12489), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12489), + [anon_sym_BSLASHacrlong] = ACTIONS(12489), + [anon_sym_BSLASHAcrlong] = ACTIONS(12489), + [anon_sym_BSLASHACRlong] = ACTIONS(12489), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12489), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12489), + [anon_sym_BSLASHacrfull] = ACTIONS(12489), + [anon_sym_BSLASHAcrfull] = ACTIONS(12489), + [anon_sym_BSLASHACRfull] = ACTIONS(12489), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12489), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12489), + [anon_sym_BSLASHacs] = ACTIONS(12489), + [anon_sym_BSLASHAcs] = ACTIONS(12489), + [anon_sym_BSLASHacsp] = ACTIONS(12489), + [anon_sym_BSLASHAcsp] = ACTIONS(12489), + [anon_sym_BSLASHacl] = ACTIONS(12489), + [anon_sym_BSLASHAcl] = ACTIONS(12489), + [anon_sym_BSLASHaclp] = ACTIONS(12489), + [anon_sym_BSLASHAclp] = ACTIONS(12489), + [anon_sym_BSLASHacf] = ACTIONS(12489), + [anon_sym_BSLASHAcf] = ACTIONS(12489), + [anon_sym_BSLASHacfp] = ACTIONS(12489), + [anon_sym_BSLASHAcfp] = ACTIONS(12489), + [anon_sym_BSLASHac] = ACTIONS(12489), + [anon_sym_BSLASHAc] = ACTIONS(12489), + [anon_sym_BSLASHacp] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12489), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12489), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12489), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12489), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12489), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12489), + [anon_sym_BSLASHcolor] = ACTIONS(12489), + [anon_sym_BSLASHcolorbox] = ACTIONS(12489), + [anon_sym_BSLASHtextcolor] = ACTIONS(12489), + [anon_sym_BSLASHpagecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12489), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12489), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12489), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12489), + }, + [1975] = { + [sym_generic_command_name] = ACTIONS(12539), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12537), + [anon_sym_RBRACK] = ACTIONS(12537), + [anon_sym_LBRACE] = ACTIONS(12537), + [anon_sym_RBRACE] = ACTIONS(12537), + [anon_sym_LPAREN] = ACTIONS(12537), + [anon_sym_COMMA] = ACTIONS(12537), + [anon_sym_EQ] = ACTIONS(12537), + [sym_word] = ACTIONS(12537), + [sym_param] = ACTIONS(12537), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12537), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12537), + [anon_sym_DOLLAR] = ACTIONS(12539), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12537), + [anon_sym_BSLASHbegin] = ACTIONS(12539), + [anon_sym_BSLASHcaption] = ACTIONS(12539), + [anon_sym_BSLASHcite] = ACTIONS(12539), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCite] = ACTIONS(12539), + [anon_sym_BSLASHnocite] = ACTIONS(12539), + [anon_sym_BSLASHcitet] = ACTIONS(12539), + [anon_sym_BSLASHcitep] = ACTIONS(12539), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteauthor] = ACTIONS(12539), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12539), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitetitle] = ACTIONS(12539), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteyear] = ACTIONS(12539), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12537), + [anon_sym_BSLASHcitedate] = ACTIONS(12539), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12537), + [anon_sym_BSLASHciteurl] = ACTIONS(12539), + [anon_sym_BSLASHfullcite] = ACTIONS(12539), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12539), + [anon_sym_BSLASHcitealt] = ACTIONS(12539), + [anon_sym_BSLASHcitealp] = ACTIONS(12539), + [anon_sym_BSLASHcitetext] = ACTIONS(12539), + [anon_sym_BSLASHparencite] = ACTIONS(12539), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHParencite] = ACTIONS(12539), + [anon_sym_BSLASHfootcite] = ACTIONS(12539), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12539), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12539), + [anon_sym_BSLASHtextcite] = ACTIONS(12539), + [anon_sym_BSLASHTextcite] = ACTIONS(12539), + [anon_sym_BSLASHsmartcite] = ACTIONS(12539), + [anon_sym_BSLASHSmartcite] = ACTIONS(12539), + [anon_sym_BSLASHsupercite] = ACTIONS(12539), + [anon_sym_BSLASHautocite] = ACTIONS(12539), + [anon_sym_BSLASHAutocite] = ACTIONS(12539), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12537), + [anon_sym_BSLASHvolcite] = ACTIONS(12539), + [anon_sym_BSLASHVolcite] = ACTIONS(12539), + [anon_sym_BSLASHpvolcite] = ACTIONS(12539), + [anon_sym_BSLASHPvolcite] = ACTIONS(12539), + [anon_sym_BSLASHfvolcite] = ACTIONS(12539), + [anon_sym_BSLASHftvolcite] = ACTIONS(12539), + [anon_sym_BSLASHsvolcite] = ACTIONS(12539), + [anon_sym_BSLASHSvolcite] = ACTIONS(12539), + [anon_sym_BSLASHtvolcite] = ACTIONS(12539), + [anon_sym_BSLASHTvolcite] = ACTIONS(12539), + [anon_sym_BSLASHavolcite] = ACTIONS(12539), + [anon_sym_BSLASHAvolcite] = ACTIONS(12539), + [anon_sym_BSLASHnotecite] = ACTIONS(12539), + [anon_sym_BSLASHpnotecite] = ACTIONS(12539), + [anon_sym_BSLASHPnotecite] = ACTIONS(12539), + [anon_sym_BSLASHfnotecite] = ACTIONS(12539), + [anon_sym_BSLASHusepackage] = ACTIONS(12539), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12539), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12539), + [anon_sym_BSLASHinclude] = ACTIONS(12539), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12539), + [anon_sym_BSLASHinput] = ACTIONS(12539), + [anon_sym_BSLASHsubfile] = ACTIONS(12539), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12539), + [anon_sym_BSLASHbibliography] = ACTIONS(12539), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12539), + [anon_sym_BSLASHincludesvg] = ACTIONS(12539), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12539), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12539), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12539), + [anon_sym_BSLASHimport] = ACTIONS(12539), + [anon_sym_BSLASHsubimport] = ACTIONS(12539), + [anon_sym_BSLASHinputfrom] = ACTIONS(12539), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12539), + [anon_sym_BSLASHincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12539), + [anon_sym_BSLASHlabel] = ACTIONS(12539), + [anon_sym_BSLASHref] = ACTIONS(12539), + [anon_sym_BSLASHvref] = ACTIONS(12539), + [anon_sym_BSLASHVref] = ACTIONS(12539), + [anon_sym_BSLASHautoref] = ACTIONS(12539), + [anon_sym_BSLASHpageref] = ACTIONS(12539), + [anon_sym_BSLASHcref] = ACTIONS(12539), + [anon_sym_BSLASHCref] = ACTIONS(12539), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnameCref] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12539), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12539), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12539), + [anon_sym_BSLASHlabelcref] = ACTIONS(12539), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12539), + [anon_sym_BSLASHeqref] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange] = ACTIONS(12539), + [anon_sym_BSLASHCrefrange] = ACTIONS(12539), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewlabel] = ACTIONS(12539), + [anon_sym_BSLASHnewcommand] = ACTIONS(12539), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12539), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12537), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12539), + [anon_sym_BSLASHgls] = ACTIONS(12539), + [anon_sym_BSLASHGls] = ACTIONS(12539), + [anon_sym_BSLASHGLS] = ACTIONS(12539), + [anon_sym_BSLASHglspl] = ACTIONS(12539), + [anon_sym_BSLASHGlspl] = ACTIONS(12539), + [anon_sym_BSLASHGLSpl] = ACTIONS(12539), + [anon_sym_BSLASHglsdisp] = ACTIONS(12539), + [anon_sym_BSLASHglslink] = ACTIONS(12539), + [anon_sym_BSLASHglstext] = ACTIONS(12539), + [anon_sym_BSLASHGlstext] = ACTIONS(12539), + [anon_sym_BSLASHGLStext] = ACTIONS(12539), + [anon_sym_BSLASHglsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12539), + [anon_sym_BSLASHglsplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSplural] = ACTIONS(12539), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12539), + [anon_sym_BSLASHglsname] = ACTIONS(12539), + [anon_sym_BSLASHGlsname] = ACTIONS(12539), + [anon_sym_BSLASHGLSname] = ACTIONS(12539), + [anon_sym_BSLASHglssymbol] = ACTIONS(12539), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12539), + [anon_sym_BSLASHglsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12539), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12539), + [anon_sym_BSLASHglsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12539), + [anon_sym_BSLASHglsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12539), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12539), + [anon_sym_BSLASHglsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12539), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12539), + [anon_sym_BSLASHglsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12539), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12539), + [anon_sym_BSLASHnewacronym] = ACTIONS(12539), + [anon_sym_BSLASHacrshort] = ACTIONS(12539), + [anon_sym_BSLASHAcrshort] = ACTIONS(12539), + [anon_sym_BSLASHACRshort] = ACTIONS(12539), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12539), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12539), + [anon_sym_BSLASHacrlong] = ACTIONS(12539), + [anon_sym_BSLASHAcrlong] = ACTIONS(12539), + [anon_sym_BSLASHACRlong] = ACTIONS(12539), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12539), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12539), + [anon_sym_BSLASHacrfull] = ACTIONS(12539), + [anon_sym_BSLASHAcrfull] = ACTIONS(12539), + [anon_sym_BSLASHACRfull] = ACTIONS(12539), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12539), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12539), + [anon_sym_BSLASHacs] = ACTIONS(12539), + [anon_sym_BSLASHAcs] = ACTIONS(12539), + [anon_sym_BSLASHacsp] = ACTIONS(12539), + [anon_sym_BSLASHAcsp] = ACTIONS(12539), + [anon_sym_BSLASHacl] = ACTIONS(12539), + [anon_sym_BSLASHAcl] = ACTIONS(12539), + [anon_sym_BSLASHaclp] = ACTIONS(12539), + [anon_sym_BSLASHAclp] = ACTIONS(12539), + [anon_sym_BSLASHacf] = ACTIONS(12539), + [anon_sym_BSLASHAcf] = ACTIONS(12539), + [anon_sym_BSLASHacfp] = ACTIONS(12539), + [anon_sym_BSLASHAcfp] = ACTIONS(12539), + [anon_sym_BSLASHac] = ACTIONS(12539), + [anon_sym_BSLASHAc] = ACTIONS(12539), + [anon_sym_BSLASHacp] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12539), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12539), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12539), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12539), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12539), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12539), + [anon_sym_BSLASHcolor] = ACTIONS(12539), + [anon_sym_BSLASHcolorbox] = ACTIONS(12539), + [anon_sym_BSLASHtextcolor] = ACTIONS(12539), + [anon_sym_BSLASHpagecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12539), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12539), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12539), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12539), + }, + [1976] = { + [sym_generic_command_name] = ACTIONS(12271), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12269), + [anon_sym_RBRACK] = ACTIONS(12269), + [anon_sym_LBRACE] = ACTIONS(12269), + [anon_sym_RBRACE] = ACTIONS(12269), + [anon_sym_LPAREN] = ACTIONS(12269), + [anon_sym_COMMA] = ACTIONS(12269), + [anon_sym_EQ] = ACTIONS(12269), + [sym_word] = ACTIONS(12269), + [sym_param] = ACTIONS(12269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12269), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12269), + [anon_sym_DOLLAR] = ACTIONS(12271), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12269), + [anon_sym_BSLASHbegin] = ACTIONS(12271), + [anon_sym_BSLASHcaption] = ACTIONS(12271), + [anon_sym_BSLASHcite] = ACTIONS(12271), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCite] = ACTIONS(12271), + [anon_sym_BSLASHnocite] = ACTIONS(12271), + [anon_sym_BSLASHcitet] = ACTIONS(12271), + [anon_sym_BSLASHcitep] = ACTIONS(12271), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteauthor] = ACTIONS(12271), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12271), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitetitle] = ACTIONS(12271), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteyear] = ACTIONS(12271), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12269), + [anon_sym_BSLASHcitedate] = ACTIONS(12271), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12269), + [anon_sym_BSLASHciteurl] = ACTIONS(12271), + [anon_sym_BSLASHfullcite] = ACTIONS(12271), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12271), + [anon_sym_BSLASHcitealt] = ACTIONS(12271), + [anon_sym_BSLASHcitealp] = ACTIONS(12271), + [anon_sym_BSLASHcitetext] = ACTIONS(12271), + [anon_sym_BSLASHparencite] = ACTIONS(12271), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHParencite] = ACTIONS(12271), + [anon_sym_BSLASHfootcite] = ACTIONS(12271), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12271), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12271), + [anon_sym_BSLASHtextcite] = ACTIONS(12271), + [anon_sym_BSLASHTextcite] = ACTIONS(12271), + [anon_sym_BSLASHsmartcite] = ACTIONS(12271), + [anon_sym_BSLASHSmartcite] = ACTIONS(12271), + [anon_sym_BSLASHsupercite] = ACTIONS(12271), + [anon_sym_BSLASHautocite] = ACTIONS(12271), + [anon_sym_BSLASHAutocite] = ACTIONS(12271), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12269), + [anon_sym_BSLASHvolcite] = ACTIONS(12271), + [anon_sym_BSLASHVolcite] = ACTIONS(12271), + [anon_sym_BSLASHpvolcite] = ACTIONS(12271), + [anon_sym_BSLASHPvolcite] = ACTIONS(12271), + [anon_sym_BSLASHfvolcite] = ACTIONS(12271), + [anon_sym_BSLASHftvolcite] = ACTIONS(12271), + [anon_sym_BSLASHsvolcite] = ACTIONS(12271), + [anon_sym_BSLASHSvolcite] = ACTIONS(12271), + [anon_sym_BSLASHtvolcite] = ACTIONS(12271), + [anon_sym_BSLASHTvolcite] = ACTIONS(12271), + [anon_sym_BSLASHavolcite] = ACTIONS(12271), + [anon_sym_BSLASHAvolcite] = ACTIONS(12271), + [anon_sym_BSLASHnotecite] = ACTIONS(12271), + [anon_sym_BSLASHpnotecite] = ACTIONS(12271), + [anon_sym_BSLASHPnotecite] = ACTIONS(12271), + [anon_sym_BSLASHfnotecite] = ACTIONS(12271), + [anon_sym_BSLASHusepackage] = ACTIONS(12271), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12271), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12271), + [anon_sym_BSLASHinclude] = ACTIONS(12271), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12271), + [anon_sym_BSLASHinput] = ACTIONS(12271), + [anon_sym_BSLASHsubfile] = ACTIONS(12271), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12271), + [anon_sym_BSLASHbibliography] = ACTIONS(12271), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12271), + [anon_sym_BSLASHincludesvg] = ACTIONS(12271), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12271), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12271), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12271), + [anon_sym_BSLASHimport] = ACTIONS(12271), + [anon_sym_BSLASHsubimport] = ACTIONS(12271), + [anon_sym_BSLASHinputfrom] = ACTIONS(12271), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12271), + [anon_sym_BSLASHincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12271), + [anon_sym_BSLASHlabel] = ACTIONS(12271), + [anon_sym_BSLASHref] = ACTIONS(12271), + [anon_sym_BSLASHvref] = ACTIONS(12271), + [anon_sym_BSLASHVref] = ACTIONS(12271), + [anon_sym_BSLASHautoref] = ACTIONS(12271), + [anon_sym_BSLASHpageref] = ACTIONS(12271), + [anon_sym_BSLASHcref] = ACTIONS(12271), + [anon_sym_BSLASHCref] = ACTIONS(12271), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnameCref] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12271), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12271), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12271), + [anon_sym_BSLASHlabelcref] = ACTIONS(12271), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12271), + [anon_sym_BSLASHeqref] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange] = ACTIONS(12271), + [anon_sym_BSLASHCrefrange] = ACTIONS(12271), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewlabel] = ACTIONS(12271), + [anon_sym_BSLASHnewcommand] = ACTIONS(12271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12271), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12271), + [anon_sym_BSLASHgls] = ACTIONS(12271), + [anon_sym_BSLASHGls] = ACTIONS(12271), + [anon_sym_BSLASHGLS] = ACTIONS(12271), + [anon_sym_BSLASHglspl] = ACTIONS(12271), + [anon_sym_BSLASHGlspl] = ACTIONS(12271), + [anon_sym_BSLASHGLSpl] = ACTIONS(12271), + [anon_sym_BSLASHglsdisp] = ACTIONS(12271), + [anon_sym_BSLASHglslink] = ACTIONS(12271), + [anon_sym_BSLASHglstext] = ACTIONS(12271), + [anon_sym_BSLASHGlstext] = ACTIONS(12271), + [anon_sym_BSLASHGLStext] = ACTIONS(12271), + [anon_sym_BSLASHglsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12271), + [anon_sym_BSLASHglsplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSplural] = ACTIONS(12271), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12271), + [anon_sym_BSLASHglsname] = ACTIONS(12271), + [anon_sym_BSLASHGlsname] = ACTIONS(12271), + [anon_sym_BSLASHGLSname] = ACTIONS(12271), + [anon_sym_BSLASHglssymbol] = ACTIONS(12271), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12271), + [anon_sym_BSLASHglsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12271), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12271), + [anon_sym_BSLASHglsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12271), + [anon_sym_BSLASHglsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12271), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12271), + [anon_sym_BSLASHglsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12271), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12271), + [anon_sym_BSLASHglsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12271), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12271), + [anon_sym_BSLASHnewacronym] = ACTIONS(12271), + [anon_sym_BSLASHacrshort] = ACTIONS(12271), + [anon_sym_BSLASHAcrshort] = ACTIONS(12271), + [anon_sym_BSLASHACRshort] = ACTIONS(12271), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12271), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12271), + [anon_sym_BSLASHacrlong] = ACTIONS(12271), + [anon_sym_BSLASHAcrlong] = ACTIONS(12271), + [anon_sym_BSLASHACRlong] = ACTIONS(12271), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12271), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12271), + [anon_sym_BSLASHacrfull] = ACTIONS(12271), + [anon_sym_BSLASHAcrfull] = ACTIONS(12271), + [anon_sym_BSLASHACRfull] = ACTIONS(12271), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12271), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12271), + [anon_sym_BSLASHacs] = ACTIONS(12271), + [anon_sym_BSLASHAcs] = ACTIONS(12271), + [anon_sym_BSLASHacsp] = ACTIONS(12271), + [anon_sym_BSLASHAcsp] = ACTIONS(12271), + [anon_sym_BSLASHacl] = ACTIONS(12271), + [anon_sym_BSLASHAcl] = ACTIONS(12271), + [anon_sym_BSLASHaclp] = ACTIONS(12271), + [anon_sym_BSLASHAclp] = ACTIONS(12271), + [anon_sym_BSLASHacf] = ACTIONS(12271), + [anon_sym_BSLASHAcf] = ACTIONS(12271), + [anon_sym_BSLASHacfp] = ACTIONS(12271), + [anon_sym_BSLASHAcfp] = ACTIONS(12271), + [anon_sym_BSLASHac] = ACTIONS(12271), + [anon_sym_BSLASHAc] = ACTIONS(12271), + [anon_sym_BSLASHacp] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12271), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12271), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12271), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12271), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12271), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12271), + [anon_sym_BSLASHcolor] = ACTIONS(12271), + [anon_sym_BSLASHcolorbox] = ACTIONS(12271), + [anon_sym_BSLASHtextcolor] = ACTIONS(12271), + [anon_sym_BSLASHpagecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12271), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12271), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12271), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12271), + }, + [1977] = { + [sym_generic_command_name] = ACTIONS(12543), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12541), + [anon_sym_RBRACK] = ACTIONS(12541), + [anon_sym_LBRACE] = ACTIONS(12541), + [anon_sym_RBRACE] = ACTIONS(12541), + [anon_sym_LPAREN] = ACTIONS(12541), + [anon_sym_COMMA] = ACTIONS(12541), + [anon_sym_EQ] = ACTIONS(12541), + [sym_word] = ACTIONS(12541), + [sym_param] = ACTIONS(12541), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12541), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12541), + [anon_sym_DOLLAR] = ACTIONS(12543), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12541), + [anon_sym_BSLASHbegin] = ACTIONS(12543), + [anon_sym_BSLASHcaption] = ACTIONS(12543), + [anon_sym_BSLASHcite] = ACTIONS(12543), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCite] = ACTIONS(12543), + [anon_sym_BSLASHnocite] = ACTIONS(12543), + [anon_sym_BSLASHcitet] = ACTIONS(12543), + [anon_sym_BSLASHcitep] = ACTIONS(12543), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteauthor] = ACTIONS(12543), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12543), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitetitle] = ACTIONS(12543), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteyear] = ACTIONS(12543), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12541), + [anon_sym_BSLASHcitedate] = ACTIONS(12543), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12541), + [anon_sym_BSLASHciteurl] = ACTIONS(12543), + [anon_sym_BSLASHfullcite] = ACTIONS(12543), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12543), + [anon_sym_BSLASHcitealt] = ACTIONS(12543), + [anon_sym_BSLASHcitealp] = ACTIONS(12543), + [anon_sym_BSLASHcitetext] = ACTIONS(12543), + [anon_sym_BSLASHparencite] = ACTIONS(12543), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHParencite] = ACTIONS(12543), + [anon_sym_BSLASHfootcite] = ACTIONS(12543), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12543), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12543), + [anon_sym_BSLASHtextcite] = ACTIONS(12543), + [anon_sym_BSLASHTextcite] = ACTIONS(12543), + [anon_sym_BSLASHsmartcite] = ACTIONS(12543), + [anon_sym_BSLASHSmartcite] = ACTIONS(12543), + [anon_sym_BSLASHsupercite] = ACTIONS(12543), + [anon_sym_BSLASHautocite] = ACTIONS(12543), + [anon_sym_BSLASHAutocite] = ACTIONS(12543), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12541), + [anon_sym_BSLASHvolcite] = ACTIONS(12543), + [anon_sym_BSLASHVolcite] = ACTIONS(12543), + [anon_sym_BSLASHpvolcite] = ACTIONS(12543), + [anon_sym_BSLASHPvolcite] = ACTIONS(12543), + [anon_sym_BSLASHfvolcite] = ACTIONS(12543), + [anon_sym_BSLASHftvolcite] = ACTIONS(12543), + [anon_sym_BSLASHsvolcite] = ACTIONS(12543), + [anon_sym_BSLASHSvolcite] = ACTIONS(12543), + [anon_sym_BSLASHtvolcite] = ACTIONS(12543), + [anon_sym_BSLASHTvolcite] = ACTIONS(12543), + [anon_sym_BSLASHavolcite] = ACTIONS(12543), + [anon_sym_BSLASHAvolcite] = ACTIONS(12543), + [anon_sym_BSLASHnotecite] = ACTIONS(12543), + [anon_sym_BSLASHpnotecite] = ACTIONS(12543), + [anon_sym_BSLASHPnotecite] = ACTIONS(12543), + [anon_sym_BSLASHfnotecite] = ACTIONS(12543), + [anon_sym_BSLASHusepackage] = ACTIONS(12543), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12543), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12543), + [anon_sym_BSLASHinclude] = ACTIONS(12543), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12543), + [anon_sym_BSLASHinput] = ACTIONS(12543), + [anon_sym_BSLASHsubfile] = ACTIONS(12543), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12543), + [anon_sym_BSLASHbibliography] = ACTIONS(12543), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12543), + [anon_sym_BSLASHincludesvg] = ACTIONS(12543), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12543), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12543), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12543), + [anon_sym_BSLASHimport] = ACTIONS(12543), + [anon_sym_BSLASHsubimport] = ACTIONS(12543), + [anon_sym_BSLASHinputfrom] = ACTIONS(12543), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12543), + [anon_sym_BSLASHincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12543), + [anon_sym_BSLASHlabel] = ACTIONS(12543), + [anon_sym_BSLASHref] = ACTIONS(12543), + [anon_sym_BSLASHvref] = ACTIONS(12543), + [anon_sym_BSLASHVref] = ACTIONS(12543), + [anon_sym_BSLASHautoref] = ACTIONS(12543), + [anon_sym_BSLASHpageref] = ACTIONS(12543), + [anon_sym_BSLASHcref] = ACTIONS(12543), + [anon_sym_BSLASHCref] = ACTIONS(12543), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnameCref] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12543), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12543), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12543), + [anon_sym_BSLASHlabelcref] = ACTIONS(12543), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12543), + [anon_sym_BSLASHeqref] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange] = ACTIONS(12543), + [anon_sym_BSLASHCrefrange] = ACTIONS(12543), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewlabel] = ACTIONS(12543), + [anon_sym_BSLASHnewcommand] = ACTIONS(12543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12543), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12541), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12543), + [anon_sym_BSLASHgls] = ACTIONS(12543), + [anon_sym_BSLASHGls] = ACTIONS(12543), + [anon_sym_BSLASHGLS] = ACTIONS(12543), + [anon_sym_BSLASHglspl] = ACTIONS(12543), + [anon_sym_BSLASHGlspl] = ACTIONS(12543), + [anon_sym_BSLASHGLSpl] = ACTIONS(12543), + [anon_sym_BSLASHglsdisp] = ACTIONS(12543), + [anon_sym_BSLASHglslink] = ACTIONS(12543), + [anon_sym_BSLASHglstext] = ACTIONS(12543), + [anon_sym_BSLASHGlstext] = ACTIONS(12543), + [anon_sym_BSLASHGLStext] = ACTIONS(12543), + [anon_sym_BSLASHglsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12543), + [anon_sym_BSLASHglsplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSplural] = ACTIONS(12543), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12543), + [anon_sym_BSLASHglsname] = ACTIONS(12543), + [anon_sym_BSLASHGlsname] = ACTIONS(12543), + [anon_sym_BSLASHGLSname] = ACTIONS(12543), + [anon_sym_BSLASHglssymbol] = ACTIONS(12543), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12543), + [anon_sym_BSLASHglsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12543), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12543), + [anon_sym_BSLASHglsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12543), + [anon_sym_BSLASHglsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12543), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12543), + [anon_sym_BSLASHglsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12543), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12543), + [anon_sym_BSLASHglsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12543), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12543), + [anon_sym_BSLASHnewacronym] = ACTIONS(12543), + [anon_sym_BSLASHacrshort] = ACTIONS(12543), + [anon_sym_BSLASHAcrshort] = ACTIONS(12543), + [anon_sym_BSLASHACRshort] = ACTIONS(12543), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12543), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12543), + [anon_sym_BSLASHacrlong] = ACTIONS(12543), + [anon_sym_BSLASHAcrlong] = ACTIONS(12543), + [anon_sym_BSLASHACRlong] = ACTIONS(12543), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12543), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12543), + [anon_sym_BSLASHacrfull] = ACTIONS(12543), + [anon_sym_BSLASHAcrfull] = ACTIONS(12543), + [anon_sym_BSLASHACRfull] = ACTIONS(12543), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12543), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12543), + [anon_sym_BSLASHacs] = ACTIONS(12543), + [anon_sym_BSLASHAcs] = ACTIONS(12543), + [anon_sym_BSLASHacsp] = ACTIONS(12543), + [anon_sym_BSLASHAcsp] = ACTIONS(12543), + [anon_sym_BSLASHacl] = ACTIONS(12543), + [anon_sym_BSLASHAcl] = ACTIONS(12543), + [anon_sym_BSLASHaclp] = ACTIONS(12543), + [anon_sym_BSLASHAclp] = ACTIONS(12543), + [anon_sym_BSLASHacf] = ACTIONS(12543), + [anon_sym_BSLASHAcf] = ACTIONS(12543), + [anon_sym_BSLASHacfp] = ACTIONS(12543), + [anon_sym_BSLASHAcfp] = ACTIONS(12543), + [anon_sym_BSLASHac] = ACTIONS(12543), + [anon_sym_BSLASHAc] = ACTIONS(12543), + [anon_sym_BSLASHacp] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12543), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12543), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12543), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12543), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12543), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12543), + [anon_sym_BSLASHcolor] = ACTIONS(12543), + [anon_sym_BSLASHcolorbox] = ACTIONS(12543), + [anon_sym_BSLASHtextcolor] = ACTIONS(12543), + [anon_sym_BSLASHpagecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12543), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12543), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12543), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12543), + }, + [1978] = { + [sym_generic_command_name] = ACTIONS(12104), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12102), + [anon_sym_RBRACK] = ACTIONS(12102), + [anon_sym_LBRACE] = ACTIONS(12102), + [anon_sym_RBRACE] = ACTIONS(12102), + [anon_sym_LPAREN] = ACTIONS(12102), + [anon_sym_COMMA] = ACTIONS(12102), + [anon_sym_EQ] = ACTIONS(12102), + [sym_word] = ACTIONS(12102), + [sym_param] = ACTIONS(12102), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12102), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12102), + [anon_sym_DOLLAR] = ACTIONS(12104), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12102), + [anon_sym_BSLASHbegin] = ACTIONS(12104), + [anon_sym_BSLASHcaption] = ACTIONS(12104), + [anon_sym_BSLASHcite] = ACTIONS(12104), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCite] = ACTIONS(12104), + [anon_sym_BSLASHnocite] = ACTIONS(12104), + [anon_sym_BSLASHcitet] = ACTIONS(12104), + [anon_sym_BSLASHcitep] = ACTIONS(12104), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteauthor] = ACTIONS(12104), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12104), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitetitle] = ACTIONS(12104), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteyear] = ACTIONS(12104), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12102), + [anon_sym_BSLASHcitedate] = ACTIONS(12104), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12102), + [anon_sym_BSLASHciteurl] = ACTIONS(12104), + [anon_sym_BSLASHfullcite] = ACTIONS(12104), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12104), + [anon_sym_BSLASHcitealt] = ACTIONS(12104), + [anon_sym_BSLASHcitealp] = ACTIONS(12104), + [anon_sym_BSLASHcitetext] = ACTIONS(12104), + [anon_sym_BSLASHparencite] = ACTIONS(12104), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHParencite] = ACTIONS(12104), + [anon_sym_BSLASHfootcite] = ACTIONS(12104), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12104), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12104), + [anon_sym_BSLASHtextcite] = ACTIONS(12104), + [anon_sym_BSLASHTextcite] = ACTIONS(12104), + [anon_sym_BSLASHsmartcite] = ACTIONS(12104), + [anon_sym_BSLASHSmartcite] = ACTIONS(12104), + [anon_sym_BSLASHsupercite] = ACTIONS(12104), + [anon_sym_BSLASHautocite] = ACTIONS(12104), + [anon_sym_BSLASHAutocite] = ACTIONS(12104), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12102), + [anon_sym_BSLASHvolcite] = ACTIONS(12104), + [anon_sym_BSLASHVolcite] = ACTIONS(12104), + [anon_sym_BSLASHpvolcite] = ACTIONS(12104), + [anon_sym_BSLASHPvolcite] = ACTIONS(12104), + [anon_sym_BSLASHfvolcite] = ACTIONS(12104), + [anon_sym_BSLASHftvolcite] = ACTIONS(12104), + [anon_sym_BSLASHsvolcite] = ACTIONS(12104), + [anon_sym_BSLASHSvolcite] = ACTIONS(12104), + [anon_sym_BSLASHtvolcite] = ACTIONS(12104), + [anon_sym_BSLASHTvolcite] = ACTIONS(12104), + [anon_sym_BSLASHavolcite] = ACTIONS(12104), + [anon_sym_BSLASHAvolcite] = ACTIONS(12104), + [anon_sym_BSLASHnotecite] = ACTIONS(12104), + [anon_sym_BSLASHpnotecite] = ACTIONS(12104), + [anon_sym_BSLASHPnotecite] = ACTIONS(12104), + [anon_sym_BSLASHfnotecite] = ACTIONS(12104), + [anon_sym_BSLASHusepackage] = ACTIONS(12104), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12104), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12104), + [anon_sym_BSLASHinclude] = ACTIONS(12104), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12104), + [anon_sym_BSLASHinput] = ACTIONS(12104), + [anon_sym_BSLASHsubfile] = ACTIONS(12104), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12104), + [anon_sym_BSLASHbibliography] = ACTIONS(12104), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12104), + [anon_sym_BSLASHincludesvg] = ACTIONS(12104), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12104), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12104), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12104), + [anon_sym_BSLASHimport] = ACTIONS(12104), + [anon_sym_BSLASHsubimport] = ACTIONS(12104), + [anon_sym_BSLASHinputfrom] = ACTIONS(12104), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12104), + [anon_sym_BSLASHincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12104), + [anon_sym_BSLASHlabel] = ACTIONS(12104), + [anon_sym_BSLASHref] = ACTIONS(12104), + [anon_sym_BSLASHvref] = ACTIONS(12104), + [anon_sym_BSLASHVref] = ACTIONS(12104), + [anon_sym_BSLASHautoref] = ACTIONS(12104), + [anon_sym_BSLASHpageref] = ACTIONS(12104), + [anon_sym_BSLASHcref] = ACTIONS(12104), + [anon_sym_BSLASHCref] = ACTIONS(12104), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnameCref] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12104), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12104), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12104), + [anon_sym_BSLASHlabelcref] = ACTIONS(12104), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12104), + [anon_sym_BSLASHeqref] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange] = ACTIONS(12104), + [anon_sym_BSLASHCrefrange] = ACTIONS(12104), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewlabel] = ACTIONS(12104), + [anon_sym_BSLASHnewcommand] = ACTIONS(12104), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12104), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12102), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12104), + [anon_sym_BSLASHgls] = ACTIONS(12104), + [anon_sym_BSLASHGls] = ACTIONS(12104), + [anon_sym_BSLASHGLS] = ACTIONS(12104), + [anon_sym_BSLASHglspl] = ACTIONS(12104), + [anon_sym_BSLASHGlspl] = ACTIONS(12104), + [anon_sym_BSLASHGLSpl] = ACTIONS(12104), + [anon_sym_BSLASHglsdisp] = ACTIONS(12104), + [anon_sym_BSLASHglslink] = ACTIONS(12104), + [anon_sym_BSLASHglstext] = ACTIONS(12104), + [anon_sym_BSLASHGlstext] = ACTIONS(12104), + [anon_sym_BSLASHGLStext] = ACTIONS(12104), + [anon_sym_BSLASHglsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12104), + [anon_sym_BSLASHglsplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSplural] = ACTIONS(12104), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12104), + [anon_sym_BSLASHglsname] = ACTIONS(12104), + [anon_sym_BSLASHGlsname] = ACTIONS(12104), + [anon_sym_BSLASHGLSname] = ACTIONS(12104), + [anon_sym_BSLASHglssymbol] = ACTIONS(12104), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12104), + [anon_sym_BSLASHglsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12104), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12104), + [anon_sym_BSLASHglsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12104), + [anon_sym_BSLASHglsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12104), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12104), + [anon_sym_BSLASHglsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12104), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12104), + [anon_sym_BSLASHglsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12104), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12104), + [anon_sym_BSLASHnewacronym] = ACTIONS(12104), + [anon_sym_BSLASHacrshort] = ACTIONS(12104), + [anon_sym_BSLASHAcrshort] = ACTIONS(12104), + [anon_sym_BSLASHACRshort] = ACTIONS(12104), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12104), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12104), + [anon_sym_BSLASHacrlong] = ACTIONS(12104), + [anon_sym_BSLASHAcrlong] = ACTIONS(12104), + [anon_sym_BSLASHACRlong] = ACTIONS(12104), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12104), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12104), + [anon_sym_BSLASHacrfull] = ACTIONS(12104), + [anon_sym_BSLASHAcrfull] = ACTIONS(12104), + [anon_sym_BSLASHACRfull] = ACTIONS(12104), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12104), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12104), + [anon_sym_BSLASHacs] = ACTIONS(12104), + [anon_sym_BSLASHAcs] = ACTIONS(12104), + [anon_sym_BSLASHacsp] = ACTIONS(12104), + [anon_sym_BSLASHAcsp] = ACTIONS(12104), + [anon_sym_BSLASHacl] = ACTIONS(12104), + [anon_sym_BSLASHAcl] = ACTIONS(12104), + [anon_sym_BSLASHaclp] = ACTIONS(12104), + [anon_sym_BSLASHAclp] = ACTIONS(12104), + [anon_sym_BSLASHacf] = ACTIONS(12104), + [anon_sym_BSLASHAcf] = ACTIONS(12104), + [anon_sym_BSLASHacfp] = ACTIONS(12104), + [anon_sym_BSLASHAcfp] = ACTIONS(12104), + [anon_sym_BSLASHac] = ACTIONS(12104), + [anon_sym_BSLASHAc] = ACTIONS(12104), + [anon_sym_BSLASHacp] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12104), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12104), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12104), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12104), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12104), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12104), + [anon_sym_BSLASHcolor] = ACTIONS(12104), + [anon_sym_BSLASHcolorbox] = ACTIONS(12104), + [anon_sym_BSLASHtextcolor] = ACTIONS(12104), + [anon_sym_BSLASHpagecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12104), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12104), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12104), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12104), + }, + [1979] = { + [sym_generic_command_name] = ACTIONS(12535), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12533), + [anon_sym_RBRACK] = ACTIONS(12533), + [anon_sym_LBRACE] = ACTIONS(12533), + [anon_sym_RBRACE] = ACTIONS(12533), + [anon_sym_LPAREN] = ACTIONS(12533), + [anon_sym_COMMA] = ACTIONS(12533), + [anon_sym_EQ] = ACTIONS(12533), + [sym_word] = ACTIONS(12533), + [sym_param] = ACTIONS(12533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12533), + [anon_sym_DOLLAR] = ACTIONS(12535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12533), + [anon_sym_BSLASHbegin] = ACTIONS(12535), + [anon_sym_BSLASHcaption] = ACTIONS(12535), + [anon_sym_BSLASHcite] = ACTIONS(12535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCite] = ACTIONS(12535), + [anon_sym_BSLASHnocite] = ACTIONS(12535), + [anon_sym_BSLASHcitet] = ACTIONS(12535), + [anon_sym_BSLASHcitep] = ACTIONS(12535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteauthor] = ACTIONS(12535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitetitle] = ACTIONS(12535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteyear] = ACTIONS(12535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12533), + [anon_sym_BSLASHcitedate] = ACTIONS(12535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12533), + [anon_sym_BSLASHciteurl] = ACTIONS(12535), + [anon_sym_BSLASHfullcite] = ACTIONS(12535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12535), + [anon_sym_BSLASHcitealt] = ACTIONS(12535), + [anon_sym_BSLASHcitealp] = ACTIONS(12535), + [anon_sym_BSLASHcitetext] = ACTIONS(12535), + [anon_sym_BSLASHparencite] = ACTIONS(12535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHParencite] = ACTIONS(12535), + [anon_sym_BSLASHfootcite] = ACTIONS(12535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12535), + [anon_sym_BSLASHtextcite] = ACTIONS(12535), + [anon_sym_BSLASHTextcite] = ACTIONS(12535), + [anon_sym_BSLASHsmartcite] = ACTIONS(12535), + [anon_sym_BSLASHSmartcite] = ACTIONS(12535), + [anon_sym_BSLASHsupercite] = ACTIONS(12535), + [anon_sym_BSLASHautocite] = ACTIONS(12535), + [anon_sym_BSLASHAutocite] = ACTIONS(12535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12533), + [anon_sym_BSLASHvolcite] = ACTIONS(12535), + [anon_sym_BSLASHVolcite] = ACTIONS(12535), + [anon_sym_BSLASHpvolcite] = ACTIONS(12535), + [anon_sym_BSLASHPvolcite] = ACTIONS(12535), + [anon_sym_BSLASHfvolcite] = ACTIONS(12535), + [anon_sym_BSLASHftvolcite] = ACTIONS(12535), + [anon_sym_BSLASHsvolcite] = ACTIONS(12535), + [anon_sym_BSLASHSvolcite] = ACTIONS(12535), + [anon_sym_BSLASHtvolcite] = ACTIONS(12535), + [anon_sym_BSLASHTvolcite] = ACTIONS(12535), + [anon_sym_BSLASHavolcite] = ACTIONS(12535), + [anon_sym_BSLASHAvolcite] = ACTIONS(12535), + [anon_sym_BSLASHnotecite] = ACTIONS(12535), + [anon_sym_BSLASHpnotecite] = ACTIONS(12535), + [anon_sym_BSLASHPnotecite] = ACTIONS(12535), + [anon_sym_BSLASHfnotecite] = ACTIONS(12535), + [anon_sym_BSLASHusepackage] = ACTIONS(12535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12535), + [anon_sym_BSLASHinclude] = ACTIONS(12535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12535), + [anon_sym_BSLASHinput] = ACTIONS(12535), + [anon_sym_BSLASHsubfile] = ACTIONS(12535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12535), + [anon_sym_BSLASHbibliography] = ACTIONS(12535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12535), + [anon_sym_BSLASHincludesvg] = ACTIONS(12535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12535), + [anon_sym_BSLASHimport] = ACTIONS(12535), + [anon_sym_BSLASHsubimport] = ACTIONS(12535), + [anon_sym_BSLASHinputfrom] = ACTIONS(12535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12535), + [anon_sym_BSLASHincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12535), + [anon_sym_BSLASHlabel] = ACTIONS(12535), + [anon_sym_BSLASHref] = ACTIONS(12535), + [anon_sym_BSLASHvref] = ACTIONS(12535), + [anon_sym_BSLASHVref] = ACTIONS(12535), + [anon_sym_BSLASHautoref] = ACTIONS(12535), + [anon_sym_BSLASHpageref] = ACTIONS(12535), + [anon_sym_BSLASHcref] = ACTIONS(12535), + [anon_sym_BSLASHCref] = ACTIONS(12535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnameCref] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12535), + [anon_sym_BSLASHlabelcref] = ACTIONS(12535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12535), + [anon_sym_BSLASHeqref] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange] = ACTIONS(12535), + [anon_sym_BSLASHCrefrange] = ACTIONS(12535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewlabel] = ACTIONS(12535), + [anon_sym_BSLASHnewcommand] = ACTIONS(12535), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12533), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12535), + [anon_sym_BSLASHgls] = ACTIONS(12535), + [anon_sym_BSLASHGls] = ACTIONS(12535), + [anon_sym_BSLASHGLS] = ACTIONS(12535), + [anon_sym_BSLASHglspl] = ACTIONS(12535), + [anon_sym_BSLASHGlspl] = ACTIONS(12535), + [anon_sym_BSLASHGLSpl] = ACTIONS(12535), + [anon_sym_BSLASHglsdisp] = ACTIONS(12535), + [anon_sym_BSLASHglslink] = ACTIONS(12535), + [anon_sym_BSLASHglstext] = ACTIONS(12535), + [anon_sym_BSLASHGlstext] = ACTIONS(12535), + [anon_sym_BSLASHGLStext] = ACTIONS(12535), + [anon_sym_BSLASHglsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12535), + [anon_sym_BSLASHglsplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSplural] = ACTIONS(12535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12535), + [anon_sym_BSLASHglsname] = ACTIONS(12535), + [anon_sym_BSLASHGlsname] = ACTIONS(12535), + [anon_sym_BSLASHGLSname] = ACTIONS(12535), + [anon_sym_BSLASHglssymbol] = ACTIONS(12535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12535), + [anon_sym_BSLASHglsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12535), + [anon_sym_BSLASHglsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12535), + [anon_sym_BSLASHglsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12535), + [anon_sym_BSLASHglsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12535), + [anon_sym_BSLASHglsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12535), + [anon_sym_BSLASHnewacronym] = ACTIONS(12535), + [anon_sym_BSLASHacrshort] = ACTIONS(12535), + [anon_sym_BSLASHAcrshort] = ACTIONS(12535), + [anon_sym_BSLASHACRshort] = ACTIONS(12535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12535), + [anon_sym_BSLASHacrlong] = ACTIONS(12535), + [anon_sym_BSLASHAcrlong] = ACTIONS(12535), + [anon_sym_BSLASHACRlong] = ACTIONS(12535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12535), + [anon_sym_BSLASHacrfull] = ACTIONS(12535), + [anon_sym_BSLASHAcrfull] = ACTIONS(12535), + [anon_sym_BSLASHACRfull] = ACTIONS(12535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12535), + [anon_sym_BSLASHacs] = ACTIONS(12535), + [anon_sym_BSLASHAcs] = ACTIONS(12535), + [anon_sym_BSLASHacsp] = ACTIONS(12535), + [anon_sym_BSLASHAcsp] = ACTIONS(12535), + [anon_sym_BSLASHacl] = ACTIONS(12535), + [anon_sym_BSLASHAcl] = ACTIONS(12535), + [anon_sym_BSLASHaclp] = ACTIONS(12535), + [anon_sym_BSLASHAclp] = ACTIONS(12535), + [anon_sym_BSLASHacf] = ACTIONS(12535), + [anon_sym_BSLASHAcf] = ACTIONS(12535), + [anon_sym_BSLASHacfp] = ACTIONS(12535), + [anon_sym_BSLASHAcfp] = ACTIONS(12535), + [anon_sym_BSLASHac] = ACTIONS(12535), + [anon_sym_BSLASHAc] = ACTIONS(12535), + [anon_sym_BSLASHacp] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12535), + [anon_sym_BSLASHcolor] = ACTIONS(12535), + [anon_sym_BSLASHcolorbox] = ACTIONS(12535), + [anon_sym_BSLASHtextcolor] = ACTIONS(12535), + [anon_sym_BSLASHpagecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12535), + }, + [1980] = { + [sym_generic_command_name] = ACTIONS(12547), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12545), + [anon_sym_RBRACK] = ACTIONS(12545), + [anon_sym_LBRACE] = ACTIONS(12545), + [anon_sym_RBRACE] = ACTIONS(12545), + [anon_sym_LPAREN] = ACTIONS(12545), + [anon_sym_COMMA] = ACTIONS(12545), + [anon_sym_EQ] = ACTIONS(12545), + [sym_word] = ACTIONS(12545), + [sym_param] = ACTIONS(12545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12545), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12545), + [anon_sym_DOLLAR] = ACTIONS(12547), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12545), + [anon_sym_BSLASHbegin] = ACTIONS(12547), + [anon_sym_BSLASHcaption] = ACTIONS(12547), + [anon_sym_BSLASHcite] = ACTIONS(12547), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCite] = ACTIONS(12547), + [anon_sym_BSLASHnocite] = ACTIONS(12547), + [anon_sym_BSLASHcitet] = ACTIONS(12547), + [anon_sym_BSLASHcitep] = ACTIONS(12547), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteauthor] = ACTIONS(12547), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12547), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitetitle] = ACTIONS(12547), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteyear] = ACTIONS(12547), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12545), + [anon_sym_BSLASHcitedate] = ACTIONS(12547), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12545), + [anon_sym_BSLASHciteurl] = ACTIONS(12547), + [anon_sym_BSLASHfullcite] = ACTIONS(12547), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12547), + [anon_sym_BSLASHcitealt] = ACTIONS(12547), + [anon_sym_BSLASHcitealp] = ACTIONS(12547), + [anon_sym_BSLASHcitetext] = ACTIONS(12547), + [anon_sym_BSLASHparencite] = ACTIONS(12547), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHParencite] = ACTIONS(12547), + [anon_sym_BSLASHfootcite] = ACTIONS(12547), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12547), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12547), + [anon_sym_BSLASHtextcite] = ACTIONS(12547), + [anon_sym_BSLASHTextcite] = ACTIONS(12547), + [anon_sym_BSLASHsmartcite] = ACTIONS(12547), + [anon_sym_BSLASHSmartcite] = ACTIONS(12547), + [anon_sym_BSLASHsupercite] = ACTIONS(12547), + [anon_sym_BSLASHautocite] = ACTIONS(12547), + [anon_sym_BSLASHAutocite] = ACTIONS(12547), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12545), + [anon_sym_BSLASHvolcite] = ACTIONS(12547), + [anon_sym_BSLASHVolcite] = ACTIONS(12547), + [anon_sym_BSLASHpvolcite] = ACTIONS(12547), + [anon_sym_BSLASHPvolcite] = ACTIONS(12547), + [anon_sym_BSLASHfvolcite] = ACTIONS(12547), + [anon_sym_BSLASHftvolcite] = ACTIONS(12547), + [anon_sym_BSLASHsvolcite] = ACTIONS(12547), + [anon_sym_BSLASHSvolcite] = ACTIONS(12547), + [anon_sym_BSLASHtvolcite] = ACTIONS(12547), + [anon_sym_BSLASHTvolcite] = ACTIONS(12547), + [anon_sym_BSLASHavolcite] = ACTIONS(12547), + [anon_sym_BSLASHAvolcite] = ACTIONS(12547), + [anon_sym_BSLASHnotecite] = ACTIONS(12547), + [anon_sym_BSLASHpnotecite] = ACTIONS(12547), + [anon_sym_BSLASHPnotecite] = ACTIONS(12547), + [anon_sym_BSLASHfnotecite] = ACTIONS(12547), + [anon_sym_BSLASHusepackage] = ACTIONS(12547), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12547), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12547), + [anon_sym_BSLASHinclude] = ACTIONS(12547), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12547), + [anon_sym_BSLASHinput] = ACTIONS(12547), + [anon_sym_BSLASHsubfile] = ACTIONS(12547), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12547), + [anon_sym_BSLASHbibliography] = ACTIONS(12547), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12547), + [anon_sym_BSLASHincludesvg] = ACTIONS(12547), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12547), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12547), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12547), + [anon_sym_BSLASHimport] = ACTIONS(12547), + [anon_sym_BSLASHsubimport] = ACTIONS(12547), + [anon_sym_BSLASHinputfrom] = ACTIONS(12547), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12547), + [anon_sym_BSLASHincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12547), + [anon_sym_BSLASHlabel] = ACTIONS(12547), + [anon_sym_BSLASHref] = ACTIONS(12547), + [anon_sym_BSLASHvref] = ACTIONS(12547), + [anon_sym_BSLASHVref] = ACTIONS(12547), + [anon_sym_BSLASHautoref] = ACTIONS(12547), + [anon_sym_BSLASHpageref] = ACTIONS(12547), + [anon_sym_BSLASHcref] = ACTIONS(12547), + [anon_sym_BSLASHCref] = ACTIONS(12547), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnameCref] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12547), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12547), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12547), + [anon_sym_BSLASHlabelcref] = ACTIONS(12547), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12547), + [anon_sym_BSLASHeqref] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange] = ACTIONS(12547), + [anon_sym_BSLASHCrefrange] = ACTIONS(12547), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewlabel] = ACTIONS(12547), + [anon_sym_BSLASHnewcommand] = ACTIONS(12547), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12547), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12547), + [anon_sym_BSLASHgls] = ACTIONS(12547), + [anon_sym_BSLASHGls] = ACTIONS(12547), + [anon_sym_BSLASHGLS] = ACTIONS(12547), + [anon_sym_BSLASHglspl] = ACTIONS(12547), + [anon_sym_BSLASHGlspl] = ACTIONS(12547), + [anon_sym_BSLASHGLSpl] = ACTIONS(12547), + [anon_sym_BSLASHglsdisp] = ACTIONS(12547), + [anon_sym_BSLASHglslink] = ACTIONS(12547), + [anon_sym_BSLASHglstext] = ACTIONS(12547), + [anon_sym_BSLASHGlstext] = ACTIONS(12547), + [anon_sym_BSLASHGLStext] = ACTIONS(12547), + [anon_sym_BSLASHglsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12547), + [anon_sym_BSLASHglsplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSplural] = ACTIONS(12547), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12547), + [anon_sym_BSLASHglsname] = ACTIONS(12547), + [anon_sym_BSLASHGlsname] = ACTIONS(12547), + [anon_sym_BSLASHGLSname] = ACTIONS(12547), + [anon_sym_BSLASHglssymbol] = ACTIONS(12547), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12547), + [anon_sym_BSLASHglsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12547), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12547), + [anon_sym_BSLASHglsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12547), + [anon_sym_BSLASHglsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12547), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12547), + [anon_sym_BSLASHglsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12547), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12547), + [anon_sym_BSLASHglsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12547), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12547), + [anon_sym_BSLASHnewacronym] = ACTIONS(12547), + [anon_sym_BSLASHacrshort] = ACTIONS(12547), + [anon_sym_BSLASHAcrshort] = ACTIONS(12547), + [anon_sym_BSLASHACRshort] = ACTIONS(12547), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12547), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12547), + [anon_sym_BSLASHacrlong] = ACTIONS(12547), + [anon_sym_BSLASHAcrlong] = ACTIONS(12547), + [anon_sym_BSLASHACRlong] = ACTIONS(12547), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12547), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12547), + [anon_sym_BSLASHacrfull] = ACTIONS(12547), + [anon_sym_BSLASHAcrfull] = ACTIONS(12547), + [anon_sym_BSLASHACRfull] = ACTIONS(12547), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12547), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12547), + [anon_sym_BSLASHacs] = ACTIONS(12547), + [anon_sym_BSLASHAcs] = ACTIONS(12547), + [anon_sym_BSLASHacsp] = ACTIONS(12547), + [anon_sym_BSLASHAcsp] = ACTIONS(12547), + [anon_sym_BSLASHacl] = ACTIONS(12547), + [anon_sym_BSLASHAcl] = ACTIONS(12547), + [anon_sym_BSLASHaclp] = ACTIONS(12547), + [anon_sym_BSLASHAclp] = ACTIONS(12547), + [anon_sym_BSLASHacf] = ACTIONS(12547), + [anon_sym_BSLASHAcf] = ACTIONS(12547), + [anon_sym_BSLASHacfp] = ACTIONS(12547), + [anon_sym_BSLASHAcfp] = ACTIONS(12547), + [anon_sym_BSLASHac] = ACTIONS(12547), + [anon_sym_BSLASHAc] = ACTIONS(12547), + [anon_sym_BSLASHacp] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12547), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12547), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12547), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12547), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12547), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12547), + [anon_sym_BSLASHcolor] = ACTIONS(12547), + [anon_sym_BSLASHcolorbox] = ACTIONS(12547), + [anon_sym_BSLASHtextcolor] = ACTIONS(12547), + [anon_sym_BSLASHpagecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12547), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12547), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12547), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12547), + }, + [1981] = { + [sym_generic_command_name] = ACTIONS(12128), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12126), + [anon_sym_RBRACK] = ACTIONS(12126), + [anon_sym_LBRACE] = ACTIONS(12126), + [anon_sym_RBRACE] = ACTIONS(12126), + [anon_sym_LPAREN] = ACTIONS(12126), + [anon_sym_COMMA] = ACTIONS(12126), + [anon_sym_EQ] = ACTIONS(12126), + [sym_word] = ACTIONS(12126), + [sym_param] = ACTIONS(12126), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12126), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12126), + [anon_sym_DOLLAR] = ACTIONS(12128), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12126), + [anon_sym_BSLASHbegin] = ACTIONS(12128), + [anon_sym_BSLASHcaption] = ACTIONS(12128), + [anon_sym_BSLASHcite] = ACTIONS(12128), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCite] = ACTIONS(12128), + [anon_sym_BSLASHnocite] = ACTIONS(12128), + [anon_sym_BSLASHcitet] = ACTIONS(12128), + [anon_sym_BSLASHcitep] = ACTIONS(12128), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteauthor] = ACTIONS(12128), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12128), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitetitle] = ACTIONS(12128), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteyear] = ACTIONS(12128), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12126), + [anon_sym_BSLASHcitedate] = ACTIONS(12128), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12126), + [anon_sym_BSLASHciteurl] = ACTIONS(12128), + [anon_sym_BSLASHfullcite] = ACTIONS(12128), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12128), + [anon_sym_BSLASHcitealt] = ACTIONS(12128), + [anon_sym_BSLASHcitealp] = ACTIONS(12128), + [anon_sym_BSLASHcitetext] = ACTIONS(12128), + [anon_sym_BSLASHparencite] = ACTIONS(12128), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHParencite] = ACTIONS(12128), + [anon_sym_BSLASHfootcite] = ACTIONS(12128), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12128), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12128), + [anon_sym_BSLASHtextcite] = ACTIONS(12128), + [anon_sym_BSLASHTextcite] = ACTIONS(12128), + [anon_sym_BSLASHsmartcite] = ACTIONS(12128), + [anon_sym_BSLASHSmartcite] = ACTIONS(12128), + [anon_sym_BSLASHsupercite] = ACTIONS(12128), + [anon_sym_BSLASHautocite] = ACTIONS(12128), + [anon_sym_BSLASHAutocite] = ACTIONS(12128), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12126), + [anon_sym_BSLASHvolcite] = ACTIONS(12128), + [anon_sym_BSLASHVolcite] = ACTIONS(12128), + [anon_sym_BSLASHpvolcite] = ACTIONS(12128), + [anon_sym_BSLASHPvolcite] = ACTIONS(12128), + [anon_sym_BSLASHfvolcite] = ACTIONS(12128), + [anon_sym_BSLASHftvolcite] = ACTIONS(12128), + [anon_sym_BSLASHsvolcite] = ACTIONS(12128), + [anon_sym_BSLASHSvolcite] = ACTIONS(12128), + [anon_sym_BSLASHtvolcite] = ACTIONS(12128), + [anon_sym_BSLASHTvolcite] = ACTIONS(12128), + [anon_sym_BSLASHavolcite] = ACTIONS(12128), + [anon_sym_BSLASHAvolcite] = ACTIONS(12128), + [anon_sym_BSLASHnotecite] = ACTIONS(12128), + [anon_sym_BSLASHpnotecite] = ACTIONS(12128), + [anon_sym_BSLASHPnotecite] = ACTIONS(12128), + [anon_sym_BSLASHfnotecite] = ACTIONS(12128), + [anon_sym_BSLASHusepackage] = ACTIONS(12128), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12128), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12128), + [anon_sym_BSLASHinclude] = ACTIONS(12128), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12128), + [anon_sym_BSLASHinput] = ACTIONS(12128), + [anon_sym_BSLASHsubfile] = ACTIONS(12128), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12128), + [anon_sym_BSLASHbibliography] = ACTIONS(12128), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12128), + [anon_sym_BSLASHincludesvg] = ACTIONS(12128), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12128), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12128), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12128), + [anon_sym_BSLASHimport] = ACTIONS(12128), + [anon_sym_BSLASHsubimport] = ACTIONS(12128), + [anon_sym_BSLASHinputfrom] = ACTIONS(12128), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12128), + [anon_sym_BSLASHincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12128), + [anon_sym_BSLASHlabel] = ACTIONS(12128), + [anon_sym_BSLASHref] = ACTIONS(12128), + [anon_sym_BSLASHvref] = ACTIONS(12128), + [anon_sym_BSLASHVref] = ACTIONS(12128), + [anon_sym_BSLASHautoref] = ACTIONS(12128), + [anon_sym_BSLASHpageref] = ACTIONS(12128), + [anon_sym_BSLASHcref] = ACTIONS(12128), + [anon_sym_BSLASHCref] = ACTIONS(12128), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnameCref] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12128), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12128), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12128), + [anon_sym_BSLASHlabelcref] = ACTIONS(12128), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12128), + [anon_sym_BSLASHeqref] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange] = ACTIONS(12128), + [anon_sym_BSLASHCrefrange] = ACTIONS(12128), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewlabel] = ACTIONS(12128), + [anon_sym_BSLASHnewcommand] = ACTIONS(12128), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12128), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12126), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12128), + [anon_sym_BSLASHgls] = ACTIONS(12128), + [anon_sym_BSLASHGls] = ACTIONS(12128), + [anon_sym_BSLASHGLS] = ACTIONS(12128), + [anon_sym_BSLASHglspl] = ACTIONS(12128), + [anon_sym_BSLASHGlspl] = ACTIONS(12128), + [anon_sym_BSLASHGLSpl] = ACTIONS(12128), + [anon_sym_BSLASHglsdisp] = ACTIONS(12128), + [anon_sym_BSLASHglslink] = ACTIONS(12128), + [anon_sym_BSLASHglstext] = ACTIONS(12128), + [anon_sym_BSLASHGlstext] = ACTIONS(12128), + [anon_sym_BSLASHGLStext] = ACTIONS(12128), + [anon_sym_BSLASHglsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12128), + [anon_sym_BSLASHglsplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSplural] = ACTIONS(12128), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12128), + [anon_sym_BSLASHglsname] = ACTIONS(12128), + [anon_sym_BSLASHGlsname] = ACTIONS(12128), + [anon_sym_BSLASHGLSname] = ACTIONS(12128), + [anon_sym_BSLASHglssymbol] = ACTIONS(12128), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12128), + [anon_sym_BSLASHglsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12128), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12128), + [anon_sym_BSLASHglsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12128), + [anon_sym_BSLASHglsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12128), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12128), + [anon_sym_BSLASHglsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12128), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12128), + [anon_sym_BSLASHglsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12128), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12128), + [anon_sym_BSLASHnewacronym] = ACTIONS(12128), + [anon_sym_BSLASHacrshort] = ACTIONS(12128), + [anon_sym_BSLASHAcrshort] = ACTIONS(12128), + [anon_sym_BSLASHACRshort] = ACTIONS(12128), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12128), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12128), + [anon_sym_BSLASHacrlong] = ACTIONS(12128), + [anon_sym_BSLASHAcrlong] = ACTIONS(12128), + [anon_sym_BSLASHACRlong] = ACTIONS(12128), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12128), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12128), + [anon_sym_BSLASHacrfull] = ACTIONS(12128), + [anon_sym_BSLASHAcrfull] = ACTIONS(12128), + [anon_sym_BSLASHACRfull] = ACTIONS(12128), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12128), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12128), + [anon_sym_BSLASHacs] = ACTIONS(12128), + [anon_sym_BSLASHAcs] = ACTIONS(12128), + [anon_sym_BSLASHacsp] = ACTIONS(12128), + [anon_sym_BSLASHAcsp] = ACTIONS(12128), + [anon_sym_BSLASHacl] = ACTIONS(12128), + [anon_sym_BSLASHAcl] = ACTIONS(12128), + [anon_sym_BSLASHaclp] = ACTIONS(12128), + [anon_sym_BSLASHAclp] = ACTIONS(12128), + [anon_sym_BSLASHacf] = ACTIONS(12128), + [anon_sym_BSLASHAcf] = ACTIONS(12128), + [anon_sym_BSLASHacfp] = ACTIONS(12128), + [anon_sym_BSLASHAcfp] = ACTIONS(12128), + [anon_sym_BSLASHac] = ACTIONS(12128), + [anon_sym_BSLASHAc] = ACTIONS(12128), + [anon_sym_BSLASHacp] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12128), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12128), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12128), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12128), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12128), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12128), + [anon_sym_BSLASHcolor] = ACTIONS(12128), + [anon_sym_BSLASHcolorbox] = ACTIONS(12128), + [anon_sym_BSLASHtextcolor] = ACTIONS(12128), + [anon_sym_BSLASHpagecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12128), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12128), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12128), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12128), + }, + [1982] = { + [sym_generic_command_name] = ACTIONS(12255), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12253), + [anon_sym_RBRACK] = ACTIONS(12253), + [anon_sym_LBRACE] = ACTIONS(12253), + [anon_sym_RBRACE] = ACTIONS(12253), + [anon_sym_LPAREN] = ACTIONS(12253), + [anon_sym_COMMA] = ACTIONS(12253), + [anon_sym_EQ] = ACTIONS(12253), + [sym_word] = ACTIONS(12253), + [sym_param] = ACTIONS(12253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12253), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12253), + [anon_sym_DOLLAR] = ACTIONS(12255), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12253), + [anon_sym_BSLASHbegin] = ACTIONS(12255), + [anon_sym_BSLASHcaption] = ACTIONS(12255), + [anon_sym_BSLASHcite] = ACTIONS(12255), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCite] = ACTIONS(12255), + [anon_sym_BSLASHnocite] = ACTIONS(12255), + [anon_sym_BSLASHcitet] = ACTIONS(12255), + [anon_sym_BSLASHcitep] = ACTIONS(12255), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteauthor] = ACTIONS(12255), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12255), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitetitle] = ACTIONS(12255), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteyear] = ACTIONS(12255), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12253), + [anon_sym_BSLASHcitedate] = ACTIONS(12255), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12253), + [anon_sym_BSLASHciteurl] = ACTIONS(12255), + [anon_sym_BSLASHfullcite] = ACTIONS(12255), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12255), + [anon_sym_BSLASHcitealt] = ACTIONS(12255), + [anon_sym_BSLASHcitealp] = ACTIONS(12255), + [anon_sym_BSLASHcitetext] = ACTIONS(12255), + [anon_sym_BSLASHparencite] = ACTIONS(12255), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHParencite] = ACTIONS(12255), + [anon_sym_BSLASHfootcite] = ACTIONS(12255), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12255), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12255), + [anon_sym_BSLASHtextcite] = ACTIONS(12255), + [anon_sym_BSLASHTextcite] = ACTIONS(12255), + [anon_sym_BSLASHsmartcite] = ACTIONS(12255), + [anon_sym_BSLASHSmartcite] = ACTIONS(12255), + [anon_sym_BSLASHsupercite] = ACTIONS(12255), + [anon_sym_BSLASHautocite] = ACTIONS(12255), + [anon_sym_BSLASHAutocite] = ACTIONS(12255), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12253), + [anon_sym_BSLASHvolcite] = ACTIONS(12255), + [anon_sym_BSLASHVolcite] = ACTIONS(12255), + [anon_sym_BSLASHpvolcite] = ACTIONS(12255), + [anon_sym_BSLASHPvolcite] = ACTIONS(12255), + [anon_sym_BSLASHfvolcite] = ACTIONS(12255), + [anon_sym_BSLASHftvolcite] = ACTIONS(12255), + [anon_sym_BSLASHsvolcite] = ACTIONS(12255), + [anon_sym_BSLASHSvolcite] = ACTIONS(12255), + [anon_sym_BSLASHtvolcite] = ACTIONS(12255), + [anon_sym_BSLASHTvolcite] = ACTIONS(12255), + [anon_sym_BSLASHavolcite] = ACTIONS(12255), + [anon_sym_BSLASHAvolcite] = ACTIONS(12255), + [anon_sym_BSLASHnotecite] = ACTIONS(12255), + [anon_sym_BSLASHpnotecite] = ACTIONS(12255), + [anon_sym_BSLASHPnotecite] = ACTIONS(12255), + [anon_sym_BSLASHfnotecite] = ACTIONS(12255), + [anon_sym_BSLASHusepackage] = ACTIONS(12255), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12255), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12255), + [anon_sym_BSLASHinclude] = ACTIONS(12255), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12255), + [anon_sym_BSLASHinput] = ACTIONS(12255), + [anon_sym_BSLASHsubfile] = ACTIONS(12255), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12255), + [anon_sym_BSLASHbibliography] = ACTIONS(12255), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12255), + [anon_sym_BSLASHincludesvg] = ACTIONS(12255), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12255), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12255), + [anon_sym_BSLASHimport] = ACTIONS(12255), + [anon_sym_BSLASHsubimport] = ACTIONS(12255), + [anon_sym_BSLASHinputfrom] = ACTIONS(12255), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12255), + [anon_sym_BSLASHincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12255), + [anon_sym_BSLASHlabel] = ACTIONS(12255), + [anon_sym_BSLASHref] = ACTIONS(12255), + [anon_sym_BSLASHvref] = ACTIONS(12255), + [anon_sym_BSLASHVref] = ACTIONS(12255), + [anon_sym_BSLASHautoref] = ACTIONS(12255), + [anon_sym_BSLASHpageref] = ACTIONS(12255), + [anon_sym_BSLASHcref] = ACTIONS(12255), + [anon_sym_BSLASHCref] = ACTIONS(12255), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnameCref] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12255), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12255), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12255), + [anon_sym_BSLASHlabelcref] = ACTIONS(12255), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12255), + [anon_sym_BSLASHeqref] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange] = ACTIONS(12255), + [anon_sym_BSLASHCrefrange] = ACTIONS(12255), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewlabel] = ACTIONS(12255), + [anon_sym_BSLASHnewcommand] = ACTIONS(12255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12255), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12255), + [anon_sym_BSLASHgls] = ACTIONS(12255), + [anon_sym_BSLASHGls] = ACTIONS(12255), + [anon_sym_BSLASHGLS] = ACTIONS(12255), + [anon_sym_BSLASHglspl] = ACTIONS(12255), + [anon_sym_BSLASHGlspl] = ACTIONS(12255), + [anon_sym_BSLASHGLSpl] = ACTIONS(12255), + [anon_sym_BSLASHglsdisp] = ACTIONS(12255), + [anon_sym_BSLASHglslink] = ACTIONS(12255), + [anon_sym_BSLASHglstext] = ACTIONS(12255), + [anon_sym_BSLASHGlstext] = ACTIONS(12255), + [anon_sym_BSLASHGLStext] = ACTIONS(12255), + [anon_sym_BSLASHglsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12255), + [anon_sym_BSLASHglsplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSplural] = ACTIONS(12255), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12255), + [anon_sym_BSLASHglsname] = ACTIONS(12255), + [anon_sym_BSLASHGlsname] = ACTIONS(12255), + [anon_sym_BSLASHGLSname] = ACTIONS(12255), + [anon_sym_BSLASHglssymbol] = ACTIONS(12255), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12255), + [anon_sym_BSLASHglsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12255), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12255), + [anon_sym_BSLASHglsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12255), + [anon_sym_BSLASHglsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12255), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12255), + [anon_sym_BSLASHglsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12255), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12255), + [anon_sym_BSLASHglsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12255), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12255), + [anon_sym_BSLASHnewacronym] = ACTIONS(12255), + [anon_sym_BSLASHacrshort] = ACTIONS(12255), + [anon_sym_BSLASHAcrshort] = ACTIONS(12255), + [anon_sym_BSLASHACRshort] = ACTIONS(12255), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12255), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12255), + [anon_sym_BSLASHacrlong] = ACTIONS(12255), + [anon_sym_BSLASHAcrlong] = ACTIONS(12255), + [anon_sym_BSLASHACRlong] = ACTIONS(12255), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12255), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12255), + [anon_sym_BSLASHacrfull] = ACTIONS(12255), + [anon_sym_BSLASHAcrfull] = ACTIONS(12255), + [anon_sym_BSLASHACRfull] = ACTIONS(12255), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12255), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12255), + [anon_sym_BSLASHacs] = ACTIONS(12255), + [anon_sym_BSLASHAcs] = ACTIONS(12255), + [anon_sym_BSLASHacsp] = ACTIONS(12255), + [anon_sym_BSLASHAcsp] = ACTIONS(12255), + [anon_sym_BSLASHacl] = ACTIONS(12255), + [anon_sym_BSLASHAcl] = ACTIONS(12255), + [anon_sym_BSLASHaclp] = ACTIONS(12255), + [anon_sym_BSLASHAclp] = ACTIONS(12255), + [anon_sym_BSLASHacf] = ACTIONS(12255), + [anon_sym_BSLASHAcf] = ACTIONS(12255), + [anon_sym_BSLASHacfp] = ACTIONS(12255), + [anon_sym_BSLASHAcfp] = ACTIONS(12255), + [anon_sym_BSLASHac] = ACTIONS(12255), + [anon_sym_BSLASHAc] = ACTIONS(12255), + [anon_sym_BSLASHacp] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12255), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12255), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12255), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12255), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12255), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12255), + [anon_sym_BSLASHcolor] = ACTIONS(12255), + [anon_sym_BSLASHcolorbox] = ACTIONS(12255), + [anon_sym_BSLASHtextcolor] = ACTIONS(12255), + [anon_sym_BSLASHpagecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12255), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12255), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12255), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12255), + }, + [1983] = { + [sym_generic_command_name] = ACTIONS(12559), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12557), + [anon_sym_RBRACK] = ACTIONS(12557), + [anon_sym_LBRACE] = ACTIONS(12557), + [anon_sym_RBRACE] = ACTIONS(12557), + [anon_sym_LPAREN] = ACTIONS(12557), + [anon_sym_COMMA] = ACTIONS(12557), + [anon_sym_EQ] = ACTIONS(12557), + [sym_word] = ACTIONS(12557), + [sym_param] = ACTIONS(12557), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12557), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12557), + [anon_sym_DOLLAR] = ACTIONS(12559), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12557), + [anon_sym_BSLASHbegin] = ACTIONS(12559), + [anon_sym_BSLASHcaption] = ACTIONS(12559), + [anon_sym_BSLASHcite] = ACTIONS(12559), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCite] = ACTIONS(12559), + [anon_sym_BSLASHnocite] = ACTIONS(12559), + [anon_sym_BSLASHcitet] = ACTIONS(12559), + [anon_sym_BSLASHcitep] = ACTIONS(12559), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteauthor] = ACTIONS(12559), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12559), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitetitle] = ACTIONS(12559), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteyear] = ACTIONS(12559), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12557), + [anon_sym_BSLASHcitedate] = ACTIONS(12559), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12557), + [anon_sym_BSLASHciteurl] = ACTIONS(12559), + [anon_sym_BSLASHfullcite] = ACTIONS(12559), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12559), + [anon_sym_BSLASHcitealt] = ACTIONS(12559), + [anon_sym_BSLASHcitealp] = ACTIONS(12559), + [anon_sym_BSLASHcitetext] = ACTIONS(12559), + [anon_sym_BSLASHparencite] = ACTIONS(12559), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHParencite] = ACTIONS(12559), + [anon_sym_BSLASHfootcite] = ACTIONS(12559), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12559), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12559), + [anon_sym_BSLASHtextcite] = ACTIONS(12559), + [anon_sym_BSLASHTextcite] = ACTIONS(12559), + [anon_sym_BSLASHsmartcite] = ACTIONS(12559), + [anon_sym_BSLASHSmartcite] = ACTIONS(12559), + [anon_sym_BSLASHsupercite] = ACTIONS(12559), + [anon_sym_BSLASHautocite] = ACTIONS(12559), + [anon_sym_BSLASHAutocite] = ACTIONS(12559), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12557), + [anon_sym_BSLASHvolcite] = ACTIONS(12559), + [anon_sym_BSLASHVolcite] = ACTIONS(12559), + [anon_sym_BSLASHpvolcite] = ACTIONS(12559), + [anon_sym_BSLASHPvolcite] = ACTIONS(12559), + [anon_sym_BSLASHfvolcite] = ACTIONS(12559), + [anon_sym_BSLASHftvolcite] = ACTIONS(12559), + [anon_sym_BSLASHsvolcite] = ACTIONS(12559), + [anon_sym_BSLASHSvolcite] = ACTIONS(12559), + [anon_sym_BSLASHtvolcite] = ACTIONS(12559), + [anon_sym_BSLASHTvolcite] = ACTIONS(12559), + [anon_sym_BSLASHavolcite] = ACTIONS(12559), + [anon_sym_BSLASHAvolcite] = ACTIONS(12559), + [anon_sym_BSLASHnotecite] = ACTIONS(12559), + [anon_sym_BSLASHpnotecite] = ACTIONS(12559), + [anon_sym_BSLASHPnotecite] = ACTIONS(12559), + [anon_sym_BSLASHfnotecite] = ACTIONS(12559), + [anon_sym_BSLASHusepackage] = ACTIONS(12559), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12559), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12559), + [anon_sym_BSLASHinclude] = ACTIONS(12559), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12559), + [anon_sym_BSLASHinput] = ACTIONS(12559), + [anon_sym_BSLASHsubfile] = ACTIONS(12559), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12559), + [anon_sym_BSLASHbibliography] = ACTIONS(12559), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12559), + [anon_sym_BSLASHincludesvg] = ACTIONS(12559), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12559), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12559), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12559), + [anon_sym_BSLASHimport] = ACTIONS(12559), + [anon_sym_BSLASHsubimport] = ACTIONS(12559), + [anon_sym_BSLASHinputfrom] = ACTIONS(12559), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12559), + [anon_sym_BSLASHincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12559), + [anon_sym_BSLASHlabel] = ACTIONS(12559), + [anon_sym_BSLASHref] = ACTIONS(12559), + [anon_sym_BSLASHvref] = ACTIONS(12559), + [anon_sym_BSLASHVref] = ACTIONS(12559), + [anon_sym_BSLASHautoref] = ACTIONS(12559), + [anon_sym_BSLASHpageref] = ACTIONS(12559), + [anon_sym_BSLASHcref] = ACTIONS(12559), + [anon_sym_BSLASHCref] = ACTIONS(12559), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnameCref] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12559), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12559), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12559), + [anon_sym_BSLASHlabelcref] = ACTIONS(12559), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12559), + [anon_sym_BSLASHeqref] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange] = ACTIONS(12559), + [anon_sym_BSLASHCrefrange] = ACTIONS(12559), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewlabel] = ACTIONS(12559), + [anon_sym_BSLASHnewcommand] = ACTIONS(12559), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12559), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12557), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12559), + [anon_sym_BSLASHgls] = ACTIONS(12559), + [anon_sym_BSLASHGls] = ACTIONS(12559), + [anon_sym_BSLASHGLS] = ACTIONS(12559), + [anon_sym_BSLASHglspl] = ACTIONS(12559), + [anon_sym_BSLASHGlspl] = ACTIONS(12559), + [anon_sym_BSLASHGLSpl] = ACTIONS(12559), + [anon_sym_BSLASHglsdisp] = ACTIONS(12559), + [anon_sym_BSLASHglslink] = ACTIONS(12559), + [anon_sym_BSLASHglstext] = ACTIONS(12559), + [anon_sym_BSLASHGlstext] = ACTIONS(12559), + [anon_sym_BSLASHGLStext] = ACTIONS(12559), + [anon_sym_BSLASHglsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12559), + [anon_sym_BSLASHglsplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSplural] = ACTIONS(12559), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12559), + [anon_sym_BSLASHglsname] = ACTIONS(12559), + [anon_sym_BSLASHGlsname] = ACTIONS(12559), + [anon_sym_BSLASHGLSname] = ACTIONS(12559), + [anon_sym_BSLASHglssymbol] = ACTIONS(12559), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12559), + [anon_sym_BSLASHglsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12559), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12559), + [anon_sym_BSLASHglsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12559), + [anon_sym_BSLASHglsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12559), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12559), + [anon_sym_BSLASHglsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12559), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12559), + [anon_sym_BSLASHglsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12559), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12559), + [anon_sym_BSLASHnewacronym] = ACTIONS(12559), + [anon_sym_BSLASHacrshort] = ACTIONS(12559), + [anon_sym_BSLASHAcrshort] = ACTIONS(12559), + [anon_sym_BSLASHACRshort] = ACTIONS(12559), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12559), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12559), + [anon_sym_BSLASHacrlong] = ACTIONS(12559), + [anon_sym_BSLASHAcrlong] = ACTIONS(12559), + [anon_sym_BSLASHACRlong] = ACTIONS(12559), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12559), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12559), + [anon_sym_BSLASHacrfull] = ACTIONS(12559), + [anon_sym_BSLASHAcrfull] = ACTIONS(12559), + [anon_sym_BSLASHACRfull] = ACTIONS(12559), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12559), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12559), + [anon_sym_BSLASHacs] = ACTIONS(12559), + [anon_sym_BSLASHAcs] = ACTIONS(12559), + [anon_sym_BSLASHacsp] = ACTIONS(12559), + [anon_sym_BSLASHAcsp] = ACTIONS(12559), + [anon_sym_BSLASHacl] = ACTIONS(12559), + [anon_sym_BSLASHAcl] = ACTIONS(12559), + [anon_sym_BSLASHaclp] = ACTIONS(12559), + [anon_sym_BSLASHAclp] = ACTIONS(12559), + [anon_sym_BSLASHacf] = ACTIONS(12559), + [anon_sym_BSLASHAcf] = ACTIONS(12559), + [anon_sym_BSLASHacfp] = ACTIONS(12559), + [anon_sym_BSLASHAcfp] = ACTIONS(12559), + [anon_sym_BSLASHac] = ACTIONS(12559), + [anon_sym_BSLASHAc] = ACTIONS(12559), + [anon_sym_BSLASHacp] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12559), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12559), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12559), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12559), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12559), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12559), + [anon_sym_BSLASHcolor] = ACTIONS(12559), + [anon_sym_BSLASHcolorbox] = ACTIONS(12559), + [anon_sym_BSLASHtextcolor] = ACTIONS(12559), + [anon_sym_BSLASHpagecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12559), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12559), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12559), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12559), + }, + [1984] = { + [sym_generic_command_name] = ACTIONS(12555), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12553), + [anon_sym_RBRACK] = ACTIONS(12553), + [anon_sym_LBRACE] = ACTIONS(12553), + [anon_sym_RBRACE] = ACTIONS(12553), + [anon_sym_LPAREN] = ACTIONS(12553), + [anon_sym_COMMA] = ACTIONS(12553), + [anon_sym_EQ] = ACTIONS(12553), + [sym_word] = ACTIONS(12553), + [sym_param] = ACTIONS(12553), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12553), + [anon_sym_DOLLAR] = ACTIONS(12555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12553), + [anon_sym_BSLASHbegin] = ACTIONS(12555), + [anon_sym_BSLASHcaption] = ACTIONS(12555), + [anon_sym_BSLASHcite] = ACTIONS(12555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCite] = ACTIONS(12555), + [anon_sym_BSLASHnocite] = ACTIONS(12555), + [anon_sym_BSLASHcitet] = ACTIONS(12555), + [anon_sym_BSLASHcitep] = ACTIONS(12555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteauthor] = ACTIONS(12555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitetitle] = ACTIONS(12555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteyear] = ACTIONS(12555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12553), + [anon_sym_BSLASHcitedate] = ACTIONS(12555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12553), + [anon_sym_BSLASHciteurl] = ACTIONS(12555), + [anon_sym_BSLASHfullcite] = ACTIONS(12555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12555), + [anon_sym_BSLASHcitealt] = ACTIONS(12555), + [anon_sym_BSLASHcitealp] = ACTIONS(12555), + [anon_sym_BSLASHcitetext] = ACTIONS(12555), + [anon_sym_BSLASHparencite] = ACTIONS(12555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHParencite] = ACTIONS(12555), + [anon_sym_BSLASHfootcite] = ACTIONS(12555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12555), + [anon_sym_BSLASHtextcite] = ACTIONS(12555), + [anon_sym_BSLASHTextcite] = ACTIONS(12555), + [anon_sym_BSLASHsmartcite] = ACTIONS(12555), + [anon_sym_BSLASHSmartcite] = ACTIONS(12555), + [anon_sym_BSLASHsupercite] = ACTIONS(12555), + [anon_sym_BSLASHautocite] = ACTIONS(12555), + [anon_sym_BSLASHAutocite] = ACTIONS(12555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12553), + [anon_sym_BSLASHvolcite] = ACTIONS(12555), + [anon_sym_BSLASHVolcite] = ACTIONS(12555), + [anon_sym_BSLASHpvolcite] = ACTIONS(12555), + [anon_sym_BSLASHPvolcite] = ACTIONS(12555), + [anon_sym_BSLASHfvolcite] = ACTIONS(12555), + [anon_sym_BSLASHftvolcite] = ACTIONS(12555), + [anon_sym_BSLASHsvolcite] = ACTIONS(12555), + [anon_sym_BSLASHSvolcite] = ACTIONS(12555), + [anon_sym_BSLASHtvolcite] = ACTIONS(12555), + [anon_sym_BSLASHTvolcite] = ACTIONS(12555), + [anon_sym_BSLASHavolcite] = ACTIONS(12555), + [anon_sym_BSLASHAvolcite] = ACTIONS(12555), + [anon_sym_BSLASHnotecite] = ACTIONS(12555), + [anon_sym_BSLASHpnotecite] = ACTIONS(12555), + [anon_sym_BSLASHPnotecite] = ACTIONS(12555), + [anon_sym_BSLASHfnotecite] = ACTIONS(12555), + [anon_sym_BSLASHusepackage] = ACTIONS(12555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12555), + [anon_sym_BSLASHinclude] = ACTIONS(12555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12555), + [anon_sym_BSLASHinput] = ACTIONS(12555), + [anon_sym_BSLASHsubfile] = ACTIONS(12555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12555), + [anon_sym_BSLASHbibliography] = ACTIONS(12555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12555), + [anon_sym_BSLASHincludesvg] = ACTIONS(12555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12555), + [anon_sym_BSLASHimport] = ACTIONS(12555), + [anon_sym_BSLASHsubimport] = ACTIONS(12555), + [anon_sym_BSLASHinputfrom] = ACTIONS(12555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12555), + [anon_sym_BSLASHincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12555), + [anon_sym_BSLASHlabel] = ACTIONS(12555), + [anon_sym_BSLASHref] = ACTIONS(12555), + [anon_sym_BSLASHvref] = ACTIONS(12555), + [anon_sym_BSLASHVref] = ACTIONS(12555), + [anon_sym_BSLASHautoref] = ACTIONS(12555), + [anon_sym_BSLASHpageref] = ACTIONS(12555), + [anon_sym_BSLASHcref] = ACTIONS(12555), + [anon_sym_BSLASHCref] = ACTIONS(12555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnameCref] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12555), + [anon_sym_BSLASHlabelcref] = ACTIONS(12555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12555), + [anon_sym_BSLASHeqref] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange] = ACTIONS(12555), + [anon_sym_BSLASHCrefrange] = ACTIONS(12555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewlabel] = ACTIONS(12555), + [anon_sym_BSLASHnewcommand] = ACTIONS(12555), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12553), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12555), + [anon_sym_BSLASHgls] = ACTIONS(12555), + [anon_sym_BSLASHGls] = ACTIONS(12555), + [anon_sym_BSLASHGLS] = ACTIONS(12555), + [anon_sym_BSLASHglspl] = ACTIONS(12555), + [anon_sym_BSLASHGlspl] = ACTIONS(12555), + [anon_sym_BSLASHGLSpl] = ACTIONS(12555), + [anon_sym_BSLASHglsdisp] = ACTIONS(12555), + [anon_sym_BSLASHglslink] = ACTIONS(12555), + [anon_sym_BSLASHglstext] = ACTIONS(12555), + [anon_sym_BSLASHGlstext] = ACTIONS(12555), + [anon_sym_BSLASHGLStext] = ACTIONS(12555), + [anon_sym_BSLASHglsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12555), + [anon_sym_BSLASHglsplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSplural] = ACTIONS(12555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12555), + [anon_sym_BSLASHglsname] = ACTIONS(12555), + [anon_sym_BSLASHGlsname] = ACTIONS(12555), + [anon_sym_BSLASHGLSname] = ACTIONS(12555), + [anon_sym_BSLASHglssymbol] = ACTIONS(12555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12555), + [anon_sym_BSLASHglsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12555), + [anon_sym_BSLASHglsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12555), + [anon_sym_BSLASHglsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12555), + [anon_sym_BSLASHglsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12555), + [anon_sym_BSLASHglsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12555), + [anon_sym_BSLASHnewacronym] = ACTIONS(12555), + [anon_sym_BSLASHacrshort] = ACTIONS(12555), + [anon_sym_BSLASHAcrshort] = ACTIONS(12555), + [anon_sym_BSLASHACRshort] = ACTIONS(12555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12555), + [anon_sym_BSLASHacrlong] = ACTIONS(12555), + [anon_sym_BSLASHAcrlong] = ACTIONS(12555), + [anon_sym_BSLASHACRlong] = ACTIONS(12555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12555), + [anon_sym_BSLASHacrfull] = ACTIONS(12555), + [anon_sym_BSLASHAcrfull] = ACTIONS(12555), + [anon_sym_BSLASHACRfull] = ACTIONS(12555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12555), + [anon_sym_BSLASHacs] = ACTIONS(12555), + [anon_sym_BSLASHAcs] = ACTIONS(12555), + [anon_sym_BSLASHacsp] = ACTIONS(12555), + [anon_sym_BSLASHAcsp] = ACTIONS(12555), + [anon_sym_BSLASHacl] = ACTIONS(12555), + [anon_sym_BSLASHAcl] = ACTIONS(12555), + [anon_sym_BSLASHaclp] = ACTIONS(12555), + [anon_sym_BSLASHAclp] = ACTIONS(12555), + [anon_sym_BSLASHacf] = ACTIONS(12555), + [anon_sym_BSLASHAcf] = ACTIONS(12555), + [anon_sym_BSLASHacfp] = ACTIONS(12555), + [anon_sym_BSLASHAcfp] = ACTIONS(12555), + [anon_sym_BSLASHac] = ACTIONS(12555), + [anon_sym_BSLASHAc] = ACTIONS(12555), + [anon_sym_BSLASHacp] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12555), + [anon_sym_BSLASHcolor] = ACTIONS(12555), + [anon_sym_BSLASHcolorbox] = ACTIONS(12555), + [anon_sym_BSLASHtextcolor] = ACTIONS(12555), + [anon_sym_BSLASHpagecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12555), + }, + [1985] = { + [sym_generic_command_name] = ACTIONS(111), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_RBRACK] = ACTIONS(109), + [anon_sym_LBRACE] = ACTIONS(109), + [anon_sym_RBRACE] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(109), + [anon_sym_COMMA] = ACTIONS(109), + [anon_sym_EQ] = ACTIONS(109), + [sym_word] = ACTIONS(109), + [sym_param] = ACTIONS(109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(109), + [anon_sym_BSLASH_LBRACK] = ACTIONS(109), + [anon_sym_DOLLAR] = ACTIONS(111), + [anon_sym_BSLASH_LPAREN] = ACTIONS(109), + [anon_sym_BSLASHbegin] = ACTIONS(111), + [anon_sym_BSLASHcaption] = ACTIONS(111), + [anon_sym_BSLASHcite] = ACTIONS(111), + [anon_sym_BSLASHcite_STAR] = ACTIONS(109), + [anon_sym_BSLASHCite] = ACTIONS(111), + [anon_sym_BSLASHnocite] = ACTIONS(111), + [anon_sym_BSLASHcitet] = ACTIONS(111), + [anon_sym_BSLASHcitep] = ACTIONS(111), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteauthor] = ACTIONS(111), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHCiteauthor] = ACTIONS(111), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitetitle] = ACTIONS(111), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteyear] = ACTIONS(111), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(109), + [anon_sym_BSLASHcitedate] = ACTIONS(111), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(109), + [anon_sym_BSLASHciteurl] = ACTIONS(111), + [anon_sym_BSLASHfullcite] = ACTIONS(111), + [anon_sym_BSLASHciteyearpar] = ACTIONS(111), + [anon_sym_BSLASHcitealt] = ACTIONS(111), + [anon_sym_BSLASHcitealp] = ACTIONS(111), + [anon_sym_BSLASHcitetext] = ACTIONS(111), + [anon_sym_BSLASHparencite] = ACTIONS(111), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(109), + [anon_sym_BSLASHParencite] = ACTIONS(111), + [anon_sym_BSLASHfootcite] = ACTIONS(111), + [anon_sym_BSLASHfootfullcite] = ACTIONS(111), + [anon_sym_BSLASHfootcitetext] = ACTIONS(111), + [anon_sym_BSLASHtextcite] = ACTIONS(111), + [anon_sym_BSLASHTextcite] = ACTIONS(111), + [anon_sym_BSLASHsmartcite] = ACTIONS(111), + [anon_sym_BSLASHSmartcite] = ACTIONS(111), + [anon_sym_BSLASHsupercite] = ACTIONS(111), + [anon_sym_BSLASHautocite] = ACTIONS(111), + [anon_sym_BSLASHAutocite] = ACTIONS(111), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(109), + [anon_sym_BSLASHvolcite] = ACTIONS(111), + [anon_sym_BSLASHVolcite] = ACTIONS(111), + [anon_sym_BSLASHpvolcite] = ACTIONS(111), + [anon_sym_BSLASHPvolcite] = ACTIONS(111), + [anon_sym_BSLASHfvolcite] = ACTIONS(111), + [anon_sym_BSLASHftvolcite] = ACTIONS(111), + [anon_sym_BSLASHsvolcite] = ACTIONS(111), + [anon_sym_BSLASHSvolcite] = ACTIONS(111), + [anon_sym_BSLASHtvolcite] = ACTIONS(111), + [anon_sym_BSLASHTvolcite] = ACTIONS(111), + [anon_sym_BSLASHavolcite] = ACTIONS(111), + [anon_sym_BSLASHAvolcite] = ACTIONS(111), + [anon_sym_BSLASHnotecite] = ACTIONS(111), + [anon_sym_BSLASHpnotecite] = ACTIONS(111), + [anon_sym_BSLASHPnotecite] = ACTIONS(111), + [anon_sym_BSLASHfnotecite] = ACTIONS(111), + [anon_sym_BSLASHusepackage] = ACTIONS(111), + [anon_sym_BSLASHRequirePackage] = ACTIONS(111), + [anon_sym_BSLASHdocumentclass] = ACTIONS(111), + [anon_sym_BSLASHinclude] = ACTIONS(111), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(111), + [anon_sym_BSLASHinput] = ACTIONS(111), + [anon_sym_BSLASHsubfile] = ACTIONS(111), + [anon_sym_BSLASHaddbibresource] = ACTIONS(111), + [anon_sym_BSLASHbibliography] = ACTIONS(111), + [anon_sym_BSLASHincludegraphics] = ACTIONS(111), + [anon_sym_BSLASHincludesvg] = ACTIONS(111), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(111), + [anon_sym_BSLASHverbatiminput] = ACTIONS(111), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(111), + [anon_sym_BSLASHimport] = ACTIONS(111), + [anon_sym_BSLASHsubimport] = ACTIONS(111), + [anon_sym_BSLASHinputfrom] = ACTIONS(111), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(111), + [anon_sym_BSLASHincludefrom] = ACTIONS(111), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(111), + [anon_sym_BSLASHlabel] = ACTIONS(111), + [anon_sym_BSLASHref] = ACTIONS(111), + [anon_sym_BSLASHvref] = ACTIONS(111), + [anon_sym_BSLASHVref] = ACTIONS(111), + [anon_sym_BSLASHautoref] = ACTIONS(111), + [anon_sym_BSLASHpageref] = ACTIONS(111), + [anon_sym_BSLASHcref] = ACTIONS(111), + [anon_sym_BSLASHCref] = ACTIONS(111), + [anon_sym_BSLASHcref_STAR] = ACTIONS(109), + [anon_sym_BSLASHCref_STAR] = ACTIONS(109), + [anon_sym_BSLASHnamecref] = ACTIONS(111), + [anon_sym_BSLASHnameCref] = ACTIONS(111), + [anon_sym_BSLASHlcnamecref] = ACTIONS(111), + [anon_sym_BSLASHnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHnameCrefs] = ACTIONS(111), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(111), + [anon_sym_BSLASHlabelcref] = ACTIONS(111), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(111), + [anon_sym_BSLASHeqref] = ACTIONS(111), + [anon_sym_BSLASHcrefrange] = ACTIONS(111), + [anon_sym_BSLASHCrefrange] = ACTIONS(111), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewlabel] = ACTIONS(111), + [anon_sym_BSLASHnewcommand] = ACTIONS(111), + [anon_sym_BSLASHrenewcommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(111), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(111), + [anon_sym_BSLASHgls] = ACTIONS(111), + [anon_sym_BSLASHGls] = ACTIONS(111), + [anon_sym_BSLASHGLS] = ACTIONS(111), + [anon_sym_BSLASHglspl] = ACTIONS(111), + [anon_sym_BSLASHGlspl] = ACTIONS(111), + [anon_sym_BSLASHGLSpl] = ACTIONS(111), + [anon_sym_BSLASHglsdisp] = ACTIONS(111), + [anon_sym_BSLASHglslink] = ACTIONS(111), + [anon_sym_BSLASHglstext] = ACTIONS(111), + [anon_sym_BSLASHGlstext] = ACTIONS(111), + [anon_sym_BSLASHGLStext] = ACTIONS(111), + [anon_sym_BSLASHglsfirst] = ACTIONS(111), + [anon_sym_BSLASHGlsfirst] = ACTIONS(111), + [anon_sym_BSLASHGLSfirst] = ACTIONS(111), + [anon_sym_BSLASHglsplural] = ACTIONS(111), + [anon_sym_BSLASHGlsplural] = ACTIONS(111), + [anon_sym_BSLASHGLSplural] = ACTIONS(111), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(111), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(111), + [anon_sym_BSLASHglsname] = ACTIONS(111), + [anon_sym_BSLASHGlsname] = ACTIONS(111), + [anon_sym_BSLASHGLSname] = ACTIONS(111), + [anon_sym_BSLASHglssymbol] = ACTIONS(111), + [anon_sym_BSLASHGlssymbol] = ACTIONS(111), + [anon_sym_BSLASHglsdesc] = ACTIONS(111), + [anon_sym_BSLASHGlsdesc] = ACTIONS(111), + [anon_sym_BSLASHGLSdesc] = ACTIONS(111), + [anon_sym_BSLASHglsuseri] = ACTIONS(111), + [anon_sym_BSLASHGlsuseri] = ACTIONS(111), + [anon_sym_BSLASHGLSuseri] = ACTIONS(111), + [anon_sym_BSLASHglsuserii] = ACTIONS(111), + [anon_sym_BSLASHGlsuserii] = ACTIONS(111), + [anon_sym_BSLASHGLSuserii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(111), + [anon_sym_BSLASHglsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(111), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(111), + [anon_sym_BSLASHglsuserv] = ACTIONS(111), + [anon_sym_BSLASHGlsuserv] = ACTIONS(111), + [anon_sym_BSLASHGLSuserv] = ACTIONS(111), + [anon_sym_BSLASHglsuservi] = ACTIONS(111), + [anon_sym_BSLASHGlsuservi] = ACTIONS(111), + [anon_sym_BSLASHGLSuservi] = ACTIONS(111), + [anon_sym_BSLASHnewacronym] = ACTIONS(111), + [anon_sym_BSLASHacrshort] = ACTIONS(111), + [anon_sym_BSLASHAcrshort] = ACTIONS(111), + [anon_sym_BSLASHACRshort] = ACTIONS(111), + [anon_sym_BSLASHacrshortpl] = ACTIONS(111), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(111), + [anon_sym_BSLASHACRshortpl] = ACTIONS(111), + [anon_sym_BSLASHacrlong] = ACTIONS(111), + [anon_sym_BSLASHAcrlong] = ACTIONS(111), + [anon_sym_BSLASHACRlong] = ACTIONS(111), + [anon_sym_BSLASHacrlongpl] = ACTIONS(111), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(111), + [anon_sym_BSLASHACRlongpl] = ACTIONS(111), + [anon_sym_BSLASHacrfull] = ACTIONS(111), + [anon_sym_BSLASHAcrfull] = ACTIONS(111), + [anon_sym_BSLASHACRfull] = ACTIONS(111), + [anon_sym_BSLASHacrfullpl] = ACTIONS(111), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(111), + [anon_sym_BSLASHACRfullpl] = ACTIONS(111), + [anon_sym_BSLASHacs] = ACTIONS(111), + [anon_sym_BSLASHAcs] = ACTIONS(111), + [anon_sym_BSLASHacsp] = ACTIONS(111), + [anon_sym_BSLASHAcsp] = ACTIONS(111), + [anon_sym_BSLASHacl] = ACTIONS(111), + [anon_sym_BSLASHAcl] = ACTIONS(111), + [anon_sym_BSLASHaclp] = ACTIONS(111), + [anon_sym_BSLASHAclp] = ACTIONS(111), + [anon_sym_BSLASHacf] = ACTIONS(111), + [anon_sym_BSLASHAcf] = ACTIONS(111), + [anon_sym_BSLASHacfp] = ACTIONS(111), + [anon_sym_BSLASHAcfp] = ACTIONS(111), + [anon_sym_BSLASHac] = ACTIONS(111), + [anon_sym_BSLASHAc] = ACTIONS(111), + [anon_sym_BSLASHacp] = ACTIONS(111), + [anon_sym_BSLASHglsentrylong] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(111), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryshort] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(111), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(111), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(111), + [anon_sym_BSLASHnewtheorem] = ACTIONS(111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(111), + [anon_sym_BSLASHcolor] = ACTIONS(111), + [anon_sym_BSLASHcolorbox] = ACTIONS(111), + [anon_sym_BSLASHtextcolor] = ACTIONS(111), + [anon_sym_BSLASHpagecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(111), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(111), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(111), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(111), + }, + [1986] = { + [sym_generic_command_name] = ACTIONS(12437), + [sym__whitespace] = ACTIONS(3), + [sym__comment] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(12435), + [anon_sym_RBRACK] = ACTIONS(12435), + [anon_sym_LBRACE] = ACTIONS(12435), + [anon_sym_RBRACE] = ACTIONS(12435), + [anon_sym_LPAREN] = ACTIONS(12435), + [anon_sym_COMMA] = ACTIONS(12435), + [anon_sym_EQ] = ACTIONS(12435), + [sym_word] = ACTIONS(12435), + [sym_param] = ACTIONS(12435), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(12435), + [anon_sym_BSLASH_LBRACK] = ACTIONS(12435), + [anon_sym_DOLLAR] = ACTIONS(12437), + [anon_sym_BSLASH_LPAREN] = ACTIONS(12435), + [anon_sym_BSLASHbegin] = ACTIONS(12437), + [anon_sym_BSLASHcaption] = ACTIONS(12437), + [anon_sym_BSLASHcite] = ACTIONS(12437), + [anon_sym_BSLASHcite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCite] = ACTIONS(12437), + [anon_sym_BSLASHnocite] = ACTIONS(12437), + [anon_sym_BSLASHcitet] = ACTIONS(12437), + [anon_sym_BSLASHcitep] = ACTIONS(12437), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteauthor] = ACTIONS(12437), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCiteauthor] = ACTIONS(12437), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitetitle] = ACTIONS(12437), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteyear] = ACTIONS(12437), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(12435), + [anon_sym_BSLASHcitedate] = ACTIONS(12437), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(12435), + [anon_sym_BSLASHciteurl] = ACTIONS(12437), + [anon_sym_BSLASHfullcite] = ACTIONS(12437), + [anon_sym_BSLASHciteyearpar] = ACTIONS(12437), + [anon_sym_BSLASHcitealt] = ACTIONS(12437), + [anon_sym_BSLASHcitealp] = ACTIONS(12437), + [anon_sym_BSLASHcitetext] = ACTIONS(12437), + [anon_sym_BSLASHparencite] = ACTIONS(12437), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHParencite] = ACTIONS(12437), + [anon_sym_BSLASHfootcite] = ACTIONS(12437), + [anon_sym_BSLASHfootfullcite] = ACTIONS(12437), + [anon_sym_BSLASHfootcitetext] = ACTIONS(12437), + [anon_sym_BSLASHtextcite] = ACTIONS(12437), + [anon_sym_BSLASHTextcite] = ACTIONS(12437), + [anon_sym_BSLASHsmartcite] = ACTIONS(12437), + [anon_sym_BSLASHSmartcite] = ACTIONS(12437), + [anon_sym_BSLASHsupercite] = ACTIONS(12437), + [anon_sym_BSLASHautocite] = ACTIONS(12437), + [anon_sym_BSLASHAutocite] = ACTIONS(12437), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(12435), + [anon_sym_BSLASHvolcite] = ACTIONS(12437), + [anon_sym_BSLASHVolcite] = ACTIONS(12437), + [anon_sym_BSLASHpvolcite] = ACTIONS(12437), + [anon_sym_BSLASHPvolcite] = ACTIONS(12437), + [anon_sym_BSLASHfvolcite] = ACTIONS(12437), + [anon_sym_BSLASHftvolcite] = ACTIONS(12437), + [anon_sym_BSLASHsvolcite] = ACTIONS(12437), + [anon_sym_BSLASHSvolcite] = ACTIONS(12437), + [anon_sym_BSLASHtvolcite] = ACTIONS(12437), + [anon_sym_BSLASHTvolcite] = ACTIONS(12437), + [anon_sym_BSLASHavolcite] = ACTIONS(12437), + [anon_sym_BSLASHAvolcite] = ACTIONS(12437), + [anon_sym_BSLASHnotecite] = ACTIONS(12437), + [anon_sym_BSLASHpnotecite] = ACTIONS(12437), + [anon_sym_BSLASHPnotecite] = ACTIONS(12437), + [anon_sym_BSLASHfnotecite] = ACTIONS(12437), + [anon_sym_BSLASHusepackage] = ACTIONS(12437), + [anon_sym_BSLASHRequirePackage] = ACTIONS(12437), + [anon_sym_BSLASHdocumentclass] = ACTIONS(12437), + [anon_sym_BSLASHinclude] = ACTIONS(12437), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(12437), + [anon_sym_BSLASHinput] = ACTIONS(12437), + [anon_sym_BSLASHsubfile] = ACTIONS(12437), + [anon_sym_BSLASHaddbibresource] = ACTIONS(12437), + [anon_sym_BSLASHbibliography] = ACTIONS(12437), + [anon_sym_BSLASHincludegraphics] = ACTIONS(12437), + [anon_sym_BSLASHincludesvg] = ACTIONS(12437), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(12437), + [anon_sym_BSLASHverbatiminput] = ACTIONS(12437), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(12437), + [anon_sym_BSLASHimport] = ACTIONS(12437), + [anon_sym_BSLASHsubimport] = ACTIONS(12437), + [anon_sym_BSLASHinputfrom] = ACTIONS(12437), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(12437), + [anon_sym_BSLASHincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(12437), + [anon_sym_BSLASHlabel] = ACTIONS(12437), + [anon_sym_BSLASHref] = ACTIONS(12437), + [anon_sym_BSLASHvref] = ACTIONS(12437), + [anon_sym_BSLASHVref] = ACTIONS(12437), + [anon_sym_BSLASHautoref] = ACTIONS(12437), + [anon_sym_BSLASHpageref] = ACTIONS(12437), + [anon_sym_BSLASHcref] = ACTIONS(12437), + [anon_sym_BSLASHCref] = ACTIONS(12437), + [anon_sym_BSLASHcref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCref_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnameCref] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecref] = ACTIONS(12437), + [anon_sym_BSLASHnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHnameCrefs] = ACTIONS(12437), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(12437), + [anon_sym_BSLASHlabelcref] = ACTIONS(12437), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(12437), + [anon_sym_BSLASHeqref] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange] = ACTIONS(12437), + [anon_sym_BSLASHCrefrange] = ACTIONS(12437), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewlabel] = ACTIONS(12437), + [anon_sym_BSLASHnewcommand] = ACTIONS(12437), + [anon_sym_BSLASHrenewcommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(12437), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(12435), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(12437), + [anon_sym_BSLASHgls] = ACTIONS(12437), + [anon_sym_BSLASHGls] = ACTIONS(12437), + [anon_sym_BSLASHGLS] = ACTIONS(12437), + [anon_sym_BSLASHglspl] = ACTIONS(12437), + [anon_sym_BSLASHGlspl] = ACTIONS(12437), + [anon_sym_BSLASHGLSpl] = ACTIONS(12437), + [anon_sym_BSLASHglsdisp] = ACTIONS(12437), + [anon_sym_BSLASHglslink] = ACTIONS(12437), + [anon_sym_BSLASHglstext] = ACTIONS(12437), + [anon_sym_BSLASHGlstext] = ACTIONS(12437), + [anon_sym_BSLASHGLStext] = ACTIONS(12437), + [anon_sym_BSLASHglsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirst] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirst] = ACTIONS(12437), + [anon_sym_BSLASHglsplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSplural] = ACTIONS(12437), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(12437), + [anon_sym_BSLASHglsname] = ACTIONS(12437), + [anon_sym_BSLASHGlsname] = ACTIONS(12437), + [anon_sym_BSLASHGLSname] = ACTIONS(12437), + [anon_sym_BSLASHglssymbol] = ACTIONS(12437), + [anon_sym_BSLASHGlssymbol] = ACTIONS(12437), + [anon_sym_BSLASHglsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGlsdesc] = ACTIONS(12437), + [anon_sym_BSLASHGLSdesc] = ACTIONS(12437), + [anon_sym_BSLASHglsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseri] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseri] = ACTIONS(12437), + [anon_sym_BSLASHglsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(12437), + [anon_sym_BSLASHglsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(12437), + [anon_sym_BSLASHglsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGlsuserv] = ACTIONS(12437), + [anon_sym_BSLASHGLSuserv] = ACTIONS(12437), + [anon_sym_BSLASHglsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGlsuservi] = ACTIONS(12437), + [anon_sym_BSLASHGLSuservi] = ACTIONS(12437), + [anon_sym_BSLASHnewacronym] = ACTIONS(12437), + [anon_sym_BSLASHacrshort] = ACTIONS(12437), + [anon_sym_BSLASHAcrshort] = ACTIONS(12437), + [anon_sym_BSLASHACRshort] = ACTIONS(12437), + [anon_sym_BSLASHacrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(12437), + [anon_sym_BSLASHACRshortpl] = ACTIONS(12437), + [anon_sym_BSLASHacrlong] = ACTIONS(12437), + [anon_sym_BSLASHAcrlong] = ACTIONS(12437), + [anon_sym_BSLASHACRlong] = ACTIONS(12437), + [anon_sym_BSLASHacrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(12437), + [anon_sym_BSLASHACRlongpl] = ACTIONS(12437), + [anon_sym_BSLASHacrfull] = ACTIONS(12437), + [anon_sym_BSLASHAcrfull] = ACTIONS(12437), + [anon_sym_BSLASHACRfull] = ACTIONS(12437), + [anon_sym_BSLASHacrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(12437), + [anon_sym_BSLASHACRfullpl] = ACTIONS(12437), + [anon_sym_BSLASHacs] = ACTIONS(12437), + [anon_sym_BSLASHAcs] = ACTIONS(12437), + [anon_sym_BSLASHacsp] = ACTIONS(12437), + [anon_sym_BSLASHAcsp] = ACTIONS(12437), + [anon_sym_BSLASHacl] = ACTIONS(12437), + [anon_sym_BSLASHAcl] = ACTIONS(12437), + [anon_sym_BSLASHaclp] = ACTIONS(12437), + [anon_sym_BSLASHAclp] = ACTIONS(12437), + [anon_sym_BSLASHacf] = ACTIONS(12437), + [anon_sym_BSLASHAcf] = ACTIONS(12437), + [anon_sym_BSLASHacfp] = ACTIONS(12437), + [anon_sym_BSLASHAcfp] = ACTIONS(12437), + [anon_sym_BSLASHac] = ACTIONS(12437), + [anon_sym_BSLASHAc] = ACTIONS(12437), + [anon_sym_BSLASHacp] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(12437), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(12437), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(12437), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(12437), + [anon_sym_BSLASHnewtheorem] = ACTIONS(12437), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(12437), + [anon_sym_BSLASHcolor] = ACTIONS(12437), + [anon_sym_BSLASHcolorbox] = ACTIONS(12437), + [anon_sym_BSLASHtextcolor] = ACTIONS(12437), + [anon_sym_BSLASHpagecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolor] = ACTIONS(12437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(12437), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(12437), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(12437), + }, +}; + +static uint16_t ts_small_parse_table[] = { + [0] = 4, STATE(3813), 1, sym_text, ACTIONS(3), 2, @@ -145170,7 +495861,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, sym_word, - [90369] = 4, + [17] = 4, STATE(3477), 1, sym_text, ACTIONS(3), 2, @@ -145183,7 +495874,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, sym_word, - [90386] = 4, + [34] = 4, STATE(3661), 1, sym_text, ACTIONS(3), 2, @@ -145196,7 +495887,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, sym_word, - [90403] = 4, + [51] = 4, STATE(3530), 1, sym_text, ACTIONS(3), 2, @@ -145209,20 +495900,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, sym_word, - [90420] = 4, - ACTIONS(11845), 1, + [68] = 4, + ACTIONS(12805), 1, sym_word, STATE(1991), 1, aux_sym_key_val_pair_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - ACTIONS(11843), 4, + ACTIONS(12803), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, anon_sym_EQ, - [90437] = 4, + [85] = 4, STATE(3714), 1, sym_text, ACTIONS(3), 2, @@ -145235,7 +495926,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, sym_word, - [90454] = 4, + [102] = 4, STATE(3797), 1, sym_text, ACTIONS(3), 2, @@ -145248,7 +495939,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, sym_word, - [90471] = 4, + [119] = 4, STATE(3657), 1, sym_text, ACTIONS(3), 2, @@ -145261,7 +495952,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, sym_word, - [90488] = 4, + [136] = 4, STATE(4418), 1, sym_text, ACTIONS(3), 2, @@ -145274,7 +495965,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, sym_word, - [90505] = 4, + [153] = 4, STATE(4009), 1, sym_text, ACTIONS(3), 2, @@ -145287,7 +495978,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, sym_word, - [90522] = 4, + [170] = 4, STATE(3597), 1, sym_text, ACTIONS(3), 2, @@ -145300,7 +495991,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, sym_word, - [90539] = 4, + [187] = 4, STATE(4430), 1, sym_text, ACTIONS(3), 2, @@ -145313,21 +496004,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, sym_word, - [90556] = 5, - ACTIONS(11850), 1, + [204] = 5, + ACTIONS(12810), 1, anon_sym_EQ, - ACTIONS(11852), 1, + ACTIONS(12812), 1, sym_word, STATE(1991), 1, aux_sym_key_val_pair_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - ACTIONS(11848), 3, + ACTIONS(12808), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, - [90575] = 4, + [223] = 4, STATE(4007), 1, sym_text, ACTIONS(3), 2, @@ -145340,10 +496031,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_EQ, sym_word, - [90592] = 5, - ACTIONS(11854), 1, + [240] = 5, + ACTIONS(12814), 1, anon_sym_RBRACE, - ACTIONS(11856), 1, + ACTIONS(12816), 1, sym_word, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -145352,10 +496043,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90609] = 5, - ACTIONS(7092), 1, + [257] = 5, + ACTIONS(7664), 1, anon_sym_LBRACE, - ACTIONS(11032), 1, + ACTIONS(11992), 1, anon_sym_LBRACK, STATE(1500), 1, sym_brace_group, @@ -145364,10 +496055,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90626] = 5, - ACTIONS(9831), 1, + [274] = 5, + ACTIONS(10671), 1, anon_sym_LBRACE, - ACTIONS(11032), 1, + ACTIONS(11992), 1, anon_sym_LBRACK, STATE(1749), 1, sym_brace_group, @@ -145376,10 +496067,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90643] = 5, - ACTIONS(11856), 1, + [291] = 5, + ACTIONS(12816), 1, sym_word, - ACTIONS(11858), 1, + ACTIONS(12818), 1, anon_sym_RBRACE, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -145388,10 +496079,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90660] = 5, + [308] = 5, ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(11032), 1, + ACTIONS(11992), 1, anon_sym_LBRACK, STATE(593), 1, sym_brace_group, @@ -145400,10 +496091,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90677] = 5, - ACTIONS(11856), 1, + [325] = 5, + ACTIONS(12816), 1, sym_word, - ACTIONS(11860), 1, + ACTIONS(12820), 1, anon_sym_RBRACE, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -145412,10 +496103,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90694] = 5, - ACTIONS(11856), 1, + [342] = 5, + ACTIONS(12816), 1, sym_word, - ACTIONS(11862), 1, + ACTIONS(12822), 1, anon_sym_RBRACE, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -145424,10 +496115,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90711] = 5, - ACTIONS(9023), 1, + [359] = 5, + ACTIONS(9783), 1, anon_sym_LBRACE, - ACTIONS(11032), 1, + ACTIONS(11992), 1, anon_sym_LBRACK, STATE(1628), 1, sym_brace_group, @@ -145436,10 +496127,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90728] = 5, - ACTIONS(5872), 1, + [376] = 5, + ACTIONS(6328), 1, anon_sym_LBRACE, - ACTIONS(11032), 1, + ACTIONS(11992), 1, anon_sym_LBRACK, STATE(1354), 1, sym_brace_group, @@ -145448,21 +496139,21 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90745] = 4, - ACTIONS(11866), 1, + [393] = 4, + ACTIONS(12826), 1, anon_sym_COMMA, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - ACTIONS(11864), 2, + ACTIONS(12824), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [90760] = 5, - ACTIONS(11856), 1, + [408] = 5, + ACTIONS(12816), 1, sym_word, - ACTIONS(11869), 1, + ACTIONS(12829), 1, anon_sym_RBRACE, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -145471,10 +496162,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90777] = 5, - ACTIONS(3806), 1, + [425] = 5, + ACTIONS(4074), 1, anon_sym_LBRACE, - ACTIONS(11032), 1, + ACTIONS(11992), 1, anon_sym_LBRACK, STATE(1207), 1, sym_brace_group, @@ -145483,10 +496174,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90794] = 5, - ACTIONS(11856), 1, + [442] = 5, + ACTIONS(12816), 1, sym_word, - ACTIONS(11871), 1, + ACTIONS(12831), 1, anon_sym_RBRACE, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -145495,10 +496186,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90811] = 5, - ACTIONS(11856), 1, + [459] = 5, + ACTIONS(12816), 1, sym_word, - ACTIONS(11873), 1, + ACTIONS(12833), 1, anon_sym_RBRACE, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -145507,10 +496198,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90828] = 5, - ACTIONS(10401), 1, + [476] = 5, + ACTIONS(11297), 1, anon_sym_LBRACE, - ACTIONS(11032), 1, + ACTIONS(11992), 1, anon_sym_LBRACK, STATE(1863), 1, sym_brace_group, @@ -145519,10 +496210,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90845] = 5, - ACTIONS(2188), 1, + [493] = 5, + ACTIONS(2316), 1, anon_sym_LBRACE, - ACTIONS(11032), 1, + ACTIONS(11992), 1, anon_sym_LBRACK, STATE(1056), 1, sym_brace_group, @@ -145531,10 +496222,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90862] = 5, - ACTIONS(11856), 1, + [510] = 5, + ACTIONS(12816), 1, sym_word, - ACTIONS(11875), 1, + ACTIONS(12835), 1, anon_sym_RBRACE, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -145543,10 +496234,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90879] = 5, - ACTIONS(11856), 1, + [527] = 5, + ACTIONS(12816), 1, sym_word, - ACTIONS(11877), 1, + ACTIONS(12837), 1, anon_sym_RBRACK, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -145555,10 +496246,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90896] = 5, - ACTIONS(10836), 1, + [544] = 5, + ACTIONS(11776), 1, anon_sym_LBRACE, - ACTIONS(11032), 1, + ACTIONS(11992), 1, anon_sym_LBRACK, STATE(1890), 1, sym_brace_group, @@ -145567,10 +496258,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90913] = 5, - ACTIONS(284), 1, + [561] = 5, + ACTIONS(304), 1, anon_sym_LBRACE, - ACTIONS(11032), 1, + ACTIONS(11992), 1, anon_sym_LBRACK, STATE(949), 1, sym_brace_group, @@ -145579,10 +496270,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90930] = 5, - ACTIONS(11856), 1, + [578] = 5, + ACTIONS(12816), 1, sym_word, - ACTIONS(11879), 1, + ACTIONS(12839), 1, anon_sym_RBRACE, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -145591,10 +496282,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90947] = 5, - ACTIONS(11856), 1, + [595] = 5, + ACTIONS(12816), 1, sym_word, - ACTIONS(11881), 1, + ACTIONS(12841), 1, anon_sym_RBRACE, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -145603,10 +496294,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90964] = 5, - ACTIONS(378), 1, + [612] = 5, + ACTIONS(406), 1, anon_sym_LBRACE, - ACTIONS(11032), 1, + ACTIONS(11992), 1, anon_sym_LBRACK, STATE(892), 1, sym_brace_group, @@ -145615,10 +496306,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90981] = 5, - ACTIONS(11856), 1, + [629] = 5, + ACTIONS(12816), 1, sym_word, - ACTIONS(11883), 1, + ACTIONS(12843), 1, anon_sym_RBRACE, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -145627,10 +496318,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [90998] = 5, - ACTIONS(476), 1, + [646] = 5, + ACTIONS(512), 1, anon_sym_LBRACE, - ACTIONS(11032), 1, + ACTIONS(11992), 1, anon_sym_LBRACK, STATE(746), 1, sym_brace_group, @@ -145639,10 +496330,10 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [91015] = 5, - ACTIONS(11856), 1, + [663] = 5, + ACTIONS(12816), 1, sym_word, - ACTIONS(11885), 1, + ACTIONS(12845), 1, anon_sym_RBRACE, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -145651,5494 +496342,5494 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [91032] = 4, - ACTIONS(11887), 1, + [680] = 4, + ACTIONS(12847), 1, anon_sym_RBRACE, - ACTIONS(11889), 1, + ACTIONS(12849), 1, anon_sym_COMMA, STATE(2306), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91046] = 4, - ACTIONS(11891), 1, + [694] = 4, + ACTIONS(12851), 1, anon_sym_RBRACE, - ACTIONS(11893), 1, + ACTIONS(12853), 1, anon_sym_COMMA, STATE(2393), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91060] = 4, - ACTIONS(11895), 1, + [708] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11897), 1, + ACTIONS(12857), 1, anon_sym_LBRACE, STATE(4438), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91074] = 4, - ACTIONS(11895), 1, + [722] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11899), 1, + ACTIONS(12859), 1, anon_sym_LBRACE, STATE(4432), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91088] = 4, - ACTIONS(11895), 1, + [736] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11901), 1, + ACTIONS(12861), 1, anon_sym_LBRACE, STATE(4426), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91102] = 4, - ACTIONS(11895), 1, + [750] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11903), 1, + ACTIONS(12863), 1, anon_sym_LBRACE, STATE(4420), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91116] = 4, - ACTIONS(11895), 1, + [764] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11905), 1, + ACTIONS(12865), 1, anon_sym_LBRACE, STATE(4414), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91130] = 4, - ACTIONS(11895), 1, + [778] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11907), 1, + ACTIONS(12867), 1, anon_sym_LBRACE, STATE(4408), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91144] = 4, - ACTIONS(11895), 1, + [792] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11909), 1, + ACTIONS(12869), 1, anon_sym_LBRACE, STATE(4402), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91158] = 4, - ACTIONS(11911), 1, + [806] = 4, + ACTIONS(12871), 1, anon_sym_RBRACE, - ACTIONS(11913), 1, + ACTIONS(12873), 1, anon_sym_COMMA, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91172] = 4, - ACTIONS(11895), 1, + [820] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11915), 1, + ACTIONS(12875), 1, anon_sym_LBRACE, STATE(4396), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91186] = 4, - ACTIONS(11895), 1, + [834] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11917), 1, + ACTIONS(12877), 1, anon_sym_LBRACE, STATE(4390), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91200] = 4, - ACTIONS(11895), 1, + [848] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11919), 1, + ACTIONS(12879), 1, anon_sym_LBRACE, STATE(4384), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91214] = 4, - ACTIONS(11921), 1, + [862] = 4, + ACTIONS(12881), 1, anon_sym_RBRACE, - ACTIONS(11923), 1, + ACTIONS(12883), 1, anon_sym_COMMA, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91228] = 4, - ACTIONS(11895), 1, + [876] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11925), 1, + ACTIONS(12885), 1, anon_sym_LBRACE, STATE(4378), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91242] = 4, - ACTIONS(11895), 1, + [890] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11927), 1, + ACTIONS(12887), 1, anon_sym_LBRACE, STATE(4243), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91256] = 4, - ACTIONS(11895), 1, + [904] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11929), 1, + ACTIONS(12889), 1, anon_sym_LBRACE, STATE(4242), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91270] = 4, - ACTIONS(11913), 1, + [918] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(11931), 1, + ACTIONS(12891), 1, anon_sym_RBRACE, STATE(2036), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91284] = 4, - ACTIONS(11895), 1, + [932] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11933), 1, + ACTIONS(12893), 1, anon_sym_LBRACE, STATE(4222), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91298] = 4, - ACTIONS(11895), 1, + [946] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11935), 1, + ACTIONS(12895), 1, anon_sym_LBRACE, STATE(4221), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91312] = 4, - ACTIONS(11895), 1, + [960] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11937), 1, + ACTIONS(12897), 1, anon_sym_LBRACE, STATE(4201), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91326] = 4, - ACTIONS(11895), 1, + [974] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11939), 1, + ACTIONS(12899), 1, anon_sym_LBRACE, STATE(4200), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91340] = 4, - ACTIONS(11895), 1, + [988] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11941), 1, + ACTIONS(12901), 1, anon_sym_LBRACE, STATE(4180), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91354] = 4, - ACTIONS(11895), 1, + [1002] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11943), 1, + ACTIONS(12903), 1, anon_sym_LBRACE, STATE(4179), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91368] = 4, - ACTIONS(11895), 1, + [1016] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11945), 1, + ACTIONS(12905), 1, anon_sym_LBRACE, STATE(4159), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91382] = 4, - ACTIONS(11895), 1, + [1030] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11947), 1, + ACTIONS(12907), 1, anon_sym_LBRACE, STATE(4158), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91396] = 4, - ACTIONS(11895), 1, + [1044] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11949), 1, + ACTIONS(12909), 1, anon_sym_LBRACE, STATE(4138), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91410] = 4, - ACTIONS(11895), 1, + [1058] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11951), 1, + ACTIONS(12911), 1, anon_sym_LBRACE, STATE(4137), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91424] = 4, - ACTIONS(11895), 1, + [1072] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11953), 1, + ACTIONS(12913), 1, anon_sym_LBRACE, STATE(4117), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91438] = 4, - ACTIONS(11923), 1, + [1086] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(11955), 1, + ACTIONS(12915), 1, anon_sym_RBRACE, STATE(2040), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91452] = 4, - ACTIONS(11895), 1, + [1100] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11957), 1, + ACTIONS(12917), 1, anon_sym_LBRACE, STATE(4116), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91466] = 4, - ACTIONS(11895), 1, + [1114] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11959), 1, + ACTIONS(12919), 1, anon_sym_LBRACE, STATE(4096), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91480] = 4, - ACTIONS(11895), 1, + [1128] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11961), 1, + ACTIONS(12921), 1, anon_sym_LBRACE, STATE(4095), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91494] = 4, - ACTIONS(11963), 1, + [1142] = 4, + ACTIONS(12923), 1, anon_sym_RBRACE, - ACTIONS(11965), 1, + ACTIONS(12925), 1, anon_sym_COMMA, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91508] = 4, - ACTIONS(11967), 1, + [1156] = 4, + ACTIONS(12927), 1, anon_sym_RBRACE, - ACTIONS(11969), 1, + ACTIONS(12929), 1, anon_sym_COMMA, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91522] = 4, - ACTIONS(11895), 1, + [1170] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11972), 1, + ACTIONS(12932), 1, anon_sym_LBRACE, STATE(4075), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91536] = 4, - ACTIONS(11974), 1, + [1184] = 4, + ACTIONS(12934), 1, anon_sym_RBRACE, - ACTIONS(11976), 1, + ACTIONS(12936), 1, anon_sym_COMMA, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91550] = 4, - ACTIONS(11895), 1, + [1198] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11979), 1, + ACTIONS(12939), 1, anon_sym_LBRACE, STATE(4074), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91564] = 4, - ACTIONS(11895), 1, + [1212] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11981), 1, + ACTIONS(12941), 1, anon_sym_LBRACE, STATE(4054), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91578] = 4, - ACTIONS(11895), 1, + [1226] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11983), 1, + ACTIONS(12943), 1, anon_sym_LBRACE, STATE(4053), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91592] = 4, - ACTIONS(11895), 1, + [1240] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11985), 1, + ACTIONS(12945), 1, anon_sym_LBRACE, STATE(4033), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91606] = 4, - ACTIONS(11895), 1, + [1254] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11987), 1, + ACTIONS(12947), 1, anon_sym_LBRACE, STATE(4032), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91620] = 4, - ACTIONS(11032), 1, + [1268] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(11989), 1, + ACTIONS(12949), 1, anon_sym_LBRACE, STATE(3998), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91634] = 4, - ACTIONS(11895), 1, + [1282] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11991), 1, + ACTIONS(12951), 1, anon_sym_LBRACE, STATE(3991), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91648] = 4, - ACTIONS(11895), 1, + [1296] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11993), 1, + ACTIONS(12953), 1, anon_sym_LBRACE, STATE(3990), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91662] = 4, - ACTIONS(11895), 1, + [1310] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11995), 1, + ACTIONS(12955), 1, anon_sym_LBRACE, STATE(3989), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91676] = 4, - ACTIONS(11895), 1, + [1324] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11997), 1, + ACTIONS(12957), 1, anon_sym_LBRACE, STATE(3988), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91690] = 4, - ACTIONS(11895), 1, + [1338] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(11999), 1, + ACTIONS(12959), 1, anon_sym_LBRACE, STATE(3987), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91704] = 4, - ACTIONS(11895), 1, + [1352] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12001), 1, + ACTIONS(12961), 1, anon_sym_LBRACE, STATE(3986), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91718] = 4, - ACTIONS(11032), 1, + [1366] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12003), 1, + ACTIONS(12963), 1, anon_sym_LBRACE, STATE(2069), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91732] = 4, - ACTIONS(11032), 1, + [1380] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12005), 1, + ACTIONS(12965), 1, anon_sym_LBRACE, STATE(3945), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91746] = 4, - ACTIONS(11895), 1, + [1394] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12007), 1, + ACTIONS(12967), 1, anon_sym_LBRACE, STATE(3938), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91760] = 4, - ACTIONS(11895), 1, + [1408] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12009), 1, + ACTIONS(12969), 1, anon_sym_LBRACE, STATE(3937), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91774] = 4, - ACTIONS(11895), 1, + [1422] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12011), 1, + ACTIONS(12971), 1, anon_sym_LBRACE, STATE(3936), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91788] = 4, - ACTIONS(11895), 1, + [1436] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12013), 1, + ACTIONS(12973), 1, anon_sym_LBRACE, STATE(3935), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91802] = 4, - ACTIONS(11895), 1, + [1450] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12015), 1, + ACTIONS(12975), 1, anon_sym_LBRACE, STATE(3934), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91816] = 4, - ACTIONS(11895), 1, + [1464] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12017), 1, + ACTIONS(12977), 1, anon_sym_LBRACE, STATE(3933), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91830] = 4, - ACTIONS(11965), 1, + [1478] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12019), 1, + ACTIONS(12979), 1, anon_sym_RBRACE, STATE(2113), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91844] = 4, - ACTIONS(11032), 1, + [1492] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12021), 1, + ACTIONS(12981), 1, anon_sym_LBRACE, STATE(2077), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91858] = 4, - ACTIONS(11889), 1, + [1506] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12023), 1, + ACTIONS(12983), 1, anon_sym_RBRACE, STATE(2116), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91872] = 4, - ACTIONS(11032), 1, + [1520] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12025), 1, + ACTIONS(12985), 1, anon_sym_LBRACE, STATE(3892), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91886] = 4, - ACTIONS(11889), 1, + [1534] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12027), 1, + ACTIONS(12987), 1, anon_sym_RBRACE, STATE(2118), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91900] = 4, - ACTIONS(11895), 1, + [1548] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12029), 1, + ACTIONS(12989), 1, anon_sym_LBRACE, STATE(3885), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91914] = 4, - ACTIONS(11889), 1, + [1562] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12031), 1, + ACTIONS(12991), 1, anon_sym_RBRACE, STATE(2120), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91928] = 4, - ACTIONS(11889), 1, + [1576] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12033), 1, + ACTIONS(12993), 1, anon_sym_RBRACE, STATE(2121), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91942] = 4, - ACTIONS(11889), 1, + [1590] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12035), 1, + ACTIONS(12995), 1, anon_sym_RBRACE, STATE(2122), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91956] = 4, - ACTIONS(11895), 1, + [1604] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12037), 1, + ACTIONS(12997), 1, anon_sym_LBRACE, STATE(3884), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91970] = 4, - ACTIONS(11889), 1, + [1618] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12039), 1, + ACTIONS(12999), 1, anon_sym_RBRACE, STATE(2124), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91984] = 4, - ACTIONS(11889), 1, + [1632] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12041), 1, + ACTIONS(13001), 1, anon_sym_RBRACE, STATE(2125), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [91998] = 4, - ACTIONS(11895), 1, + [1646] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12043), 1, + ACTIONS(13003), 1, anon_sym_LBRACE, STATE(3883), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92012] = 4, - ACTIONS(11889), 1, + [1660] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12045), 1, + ACTIONS(13005), 1, anon_sym_RBRACE, STATE(2127), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92026] = 4, - ACTIONS(11895), 1, + [1674] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12047), 1, + ACTIONS(13007), 1, anon_sym_LBRACE, STATE(3882), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92040] = 4, - ACTIONS(11889), 1, + [1688] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12049), 1, + ACTIONS(13009), 1, anon_sym_RBRACE, STATE(2129), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92054] = 4, - ACTIONS(11895), 1, + [1702] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12051), 1, + ACTIONS(13011), 1, anon_sym_LBRACE, STATE(3881), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92068] = 4, - ACTIONS(11889), 1, + [1716] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12053), 1, + ACTIONS(13013), 1, anon_sym_RBRACE, STATE(2131), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92082] = 4, - ACTIONS(11895), 1, + [1730] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12055), 1, + ACTIONS(13015), 1, anon_sym_LBRACE, STATE(3880), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92096] = 4, - ACTIONS(12057), 1, + [1744] = 4, + ACTIONS(13017), 1, anon_sym_RBRACE, - ACTIONS(12059), 1, + ACTIONS(13019), 1, anon_sym_COMMA, STATE(2132), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92110] = 4, - ACTIONS(12059), 1, + [1758] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12061), 1, + ACTIONS(13021), 1, anon_sym_RBRACE, STATE(2133), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92124] = 4, - ACTIONS(11032), 1, + [1772] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12063), 1, + ACTIONS(13023), 1, anon_sym_LBRACE, STATE(2087), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92138] = 4, - ACTIONS(11032), 1, + [1786] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12065), 1, + ACTIONS(13025), 1, anon_sym_LBRACE, STATE(3839), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92152] = 4, - ACTIONS(11895), 1, + [1800] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12067), 1, + ACTIONS(13027), 1, anon_sym_LBRACE, STATE(3832), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92166] = 4, - ACTIONS(11895), 1, + [1814] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12069), 1, + ACTIONS(13029), 1, anon_sym_LBRACE, STATE(3831), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92180] = 4, - ACTIONS(11913), 1, + [1828] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12071), 1, + ACTIONS(13031), 1, anon_sym_RBRACE, STATE(2140), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92194] = 4, - ACTIONS(11893), 1, + [1842] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12073), 1, + ACTIONS(13033), 1, anon_sym_RBRACE, STATE(2141), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92208] = 4, - ACTIONS(11893), 1, + [1856] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12075), 1, + ACTIONS(13035), 1, anon_sym_RBRACE, STATE(2142), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92222] = 4, - ACTIONS(11895), 1, + [1870] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12077), 1, + ACTIONS(13037), 1, anon_sym_LBRACE, STATE(3830), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92236] = 4, - ACTIONS(11965), 1, + [1884] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12079), 1, + ACTIONS(13039), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92250] = 4, - ACTIONS(11965), 1, + [1898] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12081), 1, + ACTIONS(13041), 1, anon_sym_RBRACE, STATE(2144), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92264] = 4, - ACTIONS(11895), 1, + [1912] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12083), 1, + ACTIONS(13043), 1, anon_sym_LBRACE, STATE(3829), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92278] = 4, - ACTIONS(11889), 1, + [1926] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12085), 1, + ACTIONS(13045), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92292] = 4, - ACTIONS(11889), 1, + [1940] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12087), 1, + ACTIONS(13047), 1, anon_sym_RBRACE, STATE(2146), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92306] = 4, - ACTIONS(11889), 1, + [1954] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12089), 1, + ACTIONS(13049), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92320] = 4, - ACTIONS(11889), 1, + [1968] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12091), 1, + ACTIONS(13051), 1, anon_sym_RBRACE, STATE(2147), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92334] = 4, - ACTIONS(11889), 1, + [1982] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12093), 1, + ACTIONS(13053), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92348] = 4, - ACTIONS(11889), 1, + [1996] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12095), 1, + ACTIONS(13055), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92362] = 4, - ACTIONS(11889), 1, + [2010] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12097), 1, + ACTIONS(13057), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92376] = 4, - ACTIONS(11889), 1, + [2024] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12099), 1, + ACTIONS(13059), 1, anon_sym_RBRACE, STATE(2148), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92390] = 4, - ACTIONS(11889), 1, + [2038] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12101), 1, + ACTIONS(13061), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92404] = 4, - ACTIONS(11889), 1, + [2052] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12103), 1, + ACTIONS(13063), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92418] = 4, - ACTIONS(11889), 1, + [2066] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12105), 1, + ACTIONS(13065), 1, anon_sym_RBRACE, STATE(2149), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92432] = 4, - ACTIONS(11889), 1, + [2080] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12107), 1, + ACTIONS(13067), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92446] = 4, - ACTIONS(11889), 1, + [2094] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12109), 1, + ACTIONS(13069), 1, anon_sym_RBRACE, STATE(2150), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92460] = 4, - ACTIONS(11889), 1, + [2108] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12111), 1, + ACTIONS(13071), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92474] = 4, - ACTIONS(11889), 1, + [2122] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12113), 1, + ACTIONS(13073), 1, anon_sym_RBRACE, STATE(2151), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92488] = 4, - ACTIONS(11889), 1, + [2136] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12115), 1, + ACTIONS(13075), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92502] = 4, - ACTIONS(12059), 1, + [2150] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12117), 1, + ACTIONS(13077), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92516] = 4, - ACTIONS(12059), 1, + [2164] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(13079), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92530] = 4, - ACTIONS(11895), 1, + [2178] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12121), 1, + ACTIONS(13081), 1, anon_sym_LBRACE, STATE(3828), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92544] = 4, - ACTIONS(11895), 1, + [2192] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12123), 1, + ACTIONS(13083), 1, anon_sym_LBRACE, STATE(3827), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92558] = 4, - ACTIONS(11032), 1, + [2206] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12125), 1, + ACTIONS(13085), 1, anon_sym_LBRACE, STATE(2106), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92572] = 4, - ACTIONS(11032), 1, + [2220] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12127), 1, + ACTIONS(13087), 1, anon_sym_LBRACE, STATE(3786), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92586] = 4, - ACTIONS(11895), 1, + [2234] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12129), 1, + ACTIONS(13089), 1, anon_sym_LBRACE, STATE(3779), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92600] = 4, - ACTIONS(284), 1, + [2248] = 4, + ACTIONS(304), 1, anon_sym_LBRACE, - ACTIONS(12131), 1, + ACTIONS(13091), 1, anon_sym_LBRACK, STATE(941), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92614] = 4, - ACTIONS(11913), 1, + [2262] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12133), 1, + ACTIONS(13093), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92628] = 4, - ACTIONS(11893), 1, + [2276] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12135), 1, + ACTIONS(13095), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92642] = 4, - ACTIONS(11893), 1, + [2290] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12137), 1, + ACTIONS(13097), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92656] = 4, - ACTIONS(11895), 1, + [2304] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12139), 1, + ACTIONS(13099), 1, anon_sym_LBRACE, STATE(3778), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92670] = 4, - ACTIONS(11965), 1, + [2318] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12141), 1, + ACTIONS(13101), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92684] = 4, - ACTIONS(11965), 1, + [2332] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12143), 1, + ACTIONS(13103), 1, anon_sym_RBRACE, STATE(2156), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92698] = 4, - ACTIONS(11889), 1, + [2346] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12145), 1, + ACTIONS(13105), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92712] = 4, - ACTIONS(11889), 1, + [2360] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12147), 1, + ACTIONS(13107), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92726] = 4, - ACTIONS(11889), 1, + [2374] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12149), 1, + ACTIONS(13109), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92740] = 4, - ACTIONS(11889), 1, + [2388] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12151), 1, + ACTIONS(13111), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92754] = 4, - ACTIONS(11889), 1, + [2402] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12153), 1, + ACTIONS(13113), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92768] = 4, - ACTIONS(11889), 1, + [2416] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12155), 1, + ACTIONS(13115), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92782] = 4, - ACTIONS(11895), 1, + [2430] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12157), 1, + ACTIONS(13117), 1, anon_sym_LBRACE, STATE(3777), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92796] = 4, - ACTIONS(11895), 1, + [2444] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12159), 1, + ACTIONS(13119), 1, anon_sym_LBRACE, STATE(3776), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92810] = 4, - ACTIONS(11895), 1, + [2458] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12161), 1, + ACTIONS(13121), 1, anon_sym_LBRACE, STATE(3775), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92824] = 4, - ACTIONS(11895), 1, + [2472] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12163), 1, + ACTIONS(13123), 1, anon_sym_LBRACE, STATE(3774), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92838] = 4, - ACTIONS(11965), 1, + [2486] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12165), 1, + ACTIONS(13125), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92852] = 4, - ACTIONS(11032), 1, + [2500] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12167), 1, + ACTIONS(13127), 1, anon_sym_LBRACE, STATE(2137), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92866] = 4, - ACTIONS(11032), 1, + [2514] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12169), 1, + ACTIONS(13129), 1, anon_sym_LBRACE, STATE(3733), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92880] = 4, - ACTIONS(11923), 1, + [2528] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12171), 1, + ACTIONS(13131), 1, anon_sym_RBRACE, STATE(2165), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92894] = 4, - ACTIONS(11895), 1, + [2542] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12173), 1, + ACTIONS(13133), 1, anon_sym_LBRACE, STATE(3726), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92908] = 4, - ACTIONS(11895), 1, + [2556] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12175), 1, + ACTIONS(13135), 1, anon_sym_LBRACE, STATE(3725), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92922] = 4, - ACTIONS(11913), 1, + [2570] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12177), 1, + ACTIONS(13137), 1, anon_sym_RBRACE, STATE(2168), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92936] = 4, - ACTIONS(11895), 1, + [2584] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12179), 1, + ACTIONS(13139), 1, anon_sym_LBRACE, STATE(3724), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92950] = 4, - ACTIONS(11895), 1, + [2598] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12181), 1, + ACTIONS(13141), 1, anon_sym_LBRACE, STATE(3723), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92964] = 4, - ACTIONS(11923), 1, + [2612] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12183), 1, + ACTIONS(13143), 1, anon_sym_RBRACE, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92978] = 4, - ACTIONS(11895), 1, + [2626] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12185), 1, + ACTIONS(13145), 1, anon_sym_LBRACE, STATE(3722), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [92992] = 4, - ACTIONS(11895), 1, + [2640] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12187), 1, + ACTIONS(13147), 1, anon_sym_LBRACE, STATE(3721), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93006] = 4, - ACTIONS(11913), 1, + [2654] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12189), 1, + ACTIONS(13149), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93020] = 4, - ACTIONS(11032), 1, + [2668] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12191), 1, + ACTIONS(13151), 1, anon_sym_LBRACE, STATE(2158), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93034] = 4, - ACTIONS(11032), 1, + [2682] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12193), 1, + ACTIONS(13153), 1, anon_sym_LBRACE, STATE(3680), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93048] = 4, - ACTIONS(11895), 1, + [2696] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12195), 1, + ACTIONS(13155), 1, anon_sym_LBRACE, STATE(3673), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93062] = 4, - ACTIONS(11895), 1, + [2710] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12197), 1, + ACTIONS(13157), 1, anon_sym_LBRACE, STATE(3672), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93076] = 4, - ACTIONS(11895), 1, + [2724] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12199), 1, + ACTIONS(13159), 1, anon_sym_LBRACE, STATE(3671), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93090] = 4, - ACTIONS(11895), 1, + [2738] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12201), 1, + ACTIONS(13161), 1, anon_sym_LBRACE, STATE(3670), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93104] = 4, - ACTIONS(11895), 1, + [2752] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12203), 1, + ACTIONS(13163), 1, anon_sym_LBRACE, STATE(3669), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93118] = 4, - ACTIONS(11895), 1, + [2766] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12205), 1, + ACTIONS(13165), 1, anon_sym_LBRACE, STATE(3668), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93132] = 4, - ACTIONS(11032), 1, + [2780] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12207), 1, + ACTIONS(13167), 1, anon_sym_LBRACE, STATE(2170), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93146] = 4, - ACTIONS(11032), 1, + [2794] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12209), 1, + ACTIONS(13169), 1, anon_sym_LBRACE, STATE(3627), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93160] = 4, - ACTIONS(11895), 1, + [2808] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12211), 1, + ACTIONS(13171), 1, anon_sym_LBRACE, STATE(3620), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93174] = 4, - ACTIONS(11895), 1, + [2822] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12213), 1, + ACTIONS(13173), 1, anon_sym_LBRACE, STATE(3619), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93188] = 4, - ACTIONS(11895), 1, + [2836] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12215), 1, + ACTIONS(13175), 1, anon_sym_LBRACE, STATE(3618), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93202] = 4, - ACTIONS(11895), 1, + [2850] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12217), 1, + ACTIONS(13177), 1, anon_sym_LBRACE, STATE(3617), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93216] = 4, - ACTIONS(11895), 1, + [2864] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12219), 1, + ACTIONS(13179), 1, anon_sym_LBRACE, STATE(3616), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93230] = 4, - ACTIONS(11895), 1, + [2878] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12221), 1, + ACTIONS(13181), 1, anon_sym_LBRACE, STATE(3615), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93244] = 4, - ACTIONS(12223), 1, + [2892] = 4, + ACTIONS(13183), 1, anon_sym_RBRACE, - ACTIONS(12225), 1, + ACTIONS(13185), 1, anon_sym_COMMA, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93258] = 4, - ACTIONS(11032), 1, + [2906] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12228), 1, + ACTIONS(13188), 1, anon_sym_LBRACE, STATE(2178), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93272] = 4, - ACTIONS(11895), 1, + [2920] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12230), 1, + ACTIONS(13190), 1, anon_sym_LBRACE, STATE(3705), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93286] = 4, - ACTIONS(11889), 1, + [2934] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12232), 1, + ACTIONS(13192), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93300] = 4, - ACTIONS(11889), 1, + [2948] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12234), 1, + ACTIONS(13194), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93314] = 4, - ACTIONS(11889), 1, + [2962] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12236), 1, + ACTIONS(13196), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93328] = 4, - ACTIONS(11889), 1, + [2976] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12238), 1, + ACTIONS(13198), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93342] = 4, - ACTIONS(11889), 1, + [2990] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12240), 1, + ACTIONS(13200), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93356] = 4, - ACTIONS(11032), 1, + [3004] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12242), 1, + ACTIONS(13202), 1, anon_sym_LBRACE, STATE(3574), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93370] = 4, - ACTIONS(11895), 1, + [3018] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12244), 1, + ACTIONS(13204), 1, anon_sym_LBRACE, STATE(3567), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93384] = 4, - ACTIONS(11895), 1, + [3032] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12246), 1, + ACTIONS(13206), 1, anon_sym_LBRACE, STATE(3566), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93398] = 4, - ACTIONS(11895), 1, + [3046] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12248), 1, + ACTIONS(13208), 1, anon_sym_LBRACE, STATE(3565), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93412] = 4, - ACTIONS(11895), 1, + [3060] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12250), 1, + ACTIONS(13210), 1, anon_sym_LBRACE, STATE(3564), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93426] = 4, - ACTIONS(11895), 1, + [3074] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12252), 1, + ACTIONS(13212), 1, anon_sym_LBRACE, STATE(3563), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93440] = 4, - ACTIONS(11895), 1, + [3088] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12254), 1, + ACTIONS(13214), 1, anon_sym_LBRACE, STATE(3562), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93454] = 4, - ACTIONS(11032), 1, + [3102] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12256), 1, + ACTIONS(13216), 1, anon_sym_LBRACE, STATE(2193), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93468] = 4, - ACTIONS(11032), 1, + [3116] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12258), 1, + ACTIONS(13218), 1, anon_sym_LBRACE, STATE(2453), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93482] = 4, - ACTIONS(11032), 1, + [3130] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12260), 1, + ACTIONS(13220), 1, anon_sym_LBRACE, STATE(3521), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93496] = 4, - ACTIONS(11895), 1, + [3144] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12262), 1, + ACTIONS(13222), 1, anon_sym_LBRACE, STATE(3514), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93510] = 4, - ACTIONS(11895), 1, + [3158] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12264), 1, + ACTIONS(13224), 1, anon_sym_LBRACE, STATE(3513), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93524] = 4, - ACTIONS(11895), 1, + [3172] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12266), 1, + ACTIONS(13226), 1, anon_sym_LBRACE, STATE(3512), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93538] = 4, - ACTIONS(11895), 1, + [3186] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12268), 1, + ACTIONS(13228), 1, anon_sym_LBRACE, STATE(3511), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93552] = 4, - ACTIONS(11895), 1, + [3200] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12270), 1, + ACTIONS(13230), 1, anon_sym_LBRACE, STATE(3510), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93566] = 4, - ACTIONS(11895), 1, + [3214] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12272), 1, + ACTIONS(13232), 1, anon_sym_LBRACE, STATE(3509), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93580] = 4, - ACTIONS(11889), 1, + [3228] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12274), 1, + ACTIONS(13234), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93594] = 4, - ACTIONS(12276), 1, + [3242] = 4, + ACTIONS(13236), 1, anon_sym_RBRACE, - ACTIONS(12278), 1, + ACTIONS(13238), 1, anon_sym_COMMA, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93608] = 4, - ACTIONS(11032), 1, + [3256] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12281), 1, + ACTIONS(13241), 1, anon_sym_LBRACE, STATE(2202), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93622] = 2, + [3270] = 2, ACTIONS(3), 2, sym__whitespace, sym__comment, - ACTIONS(12283), 3, + ACTIONS(13243), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, - [93632] = 4, - ACTIONS(11965), 1, + [3280] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12285), 1, + ACTIONS(13245), 1, anon_sym_RBRACE, STATE(2242), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93646] = 4, - ACTIONS(11032), 1, + [3294] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12287), 1, + ACTIONS(13247), 1, anon_sym_LBRACE, STATE(3468), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93660] = 4, - ACTIONS(11889), 1, + [3308] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12289), 1, + ACTIONS(13249), 1, anon_sym_RBRACE, STATE(2245), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93674] = 4, - ACTIONS(11895), 1, + [3322] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12291), 1, + ACTIONS(13251), 1, anon_sym_LBRACE, STATE(3461), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93688] = 4, - ACTIONS(11889), 1, + [3336] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12293), 1, + ACTIONS(13253), 1, anon_sym_RBRACE, STATE(2247), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93702] = 4, - ACTIONS(11895), 1, + [3350] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12295), 1, + ACTIONS(13255), 1, anon_sym_LBRACE, STATE(3460), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93716] = 4, - ACTIONS(11889), 1, + [3364] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12297), 1, + ACTIONS(13257), 1, anon_sym_RBRACE, STATE(2249), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93730] = 4, - ACTIONS(11889), 1, + [3378] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12299), 1, + ACTIONS(13259), 1, anon_sym_RBRACE, STATE(2250), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93744] = 4, - ACTIONS(11889), 1, + [3392] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12301), 1, + ACTIONS(13261), 1, anon_sym_RBRACE, STATE(2251), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93758] = 4, - ACTIONS(11895), 1, + [3406] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12303), 1, + ACTIONS(13263), 1, anon_sym_LBRACE, STATE(3459), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93772] = 4, - ACTIONS(11889), 1, + [3420] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12305), 1, + ACTIONS(13265), 1, anon_sym_RBRACE, STATE(2253), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93786] = 4, - ACTIONS(11889), 1, + [3434] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12307), 1, + ACTIONS(13267), 1, anon_sym_RBRACE, STATE(2254), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93800] = 4, - ACTIONS(11895), 1, + [3448] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12309), 1, + ACTIONS(13269), 1, anon_sym_LBRACE, STATE(3458), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93814] = 4, - ACTIONS(11889), 1, + [3462] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12311), 1, + ACTIONS(13271), 1, anon_sym_RBRACE, STATE(2256), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93828] = 4, - ACTIONS(11895), 1, + [3476] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12313), 1, + ACTIONS(13273), 1, anon_sym_LBRACE, STATE(3457), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93842] = 4, - ACTIONS(11889), 1, + [3490] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12315), 1, + ACTIONS(13275), 1, anon_sym_RBRACE, STATE(2258), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93856] = 4, - ACTIONS(11895), 1, + [3504] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12317), 1, + ACTIONS(13277), 1, anon_sym_LBRACE, STATE(3456), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93870] = 4, - ACTIONS(11889), 1, + [3518] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12319), 1, + ACTIONS(13279), 1, anon_sym_RBRACE, STATE(2260), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93884] = 4, - ACTIONS(11032), 1, + [3532] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12321), 1, + ACTIONS(13281), 1, anon_sym_LBRACE, STATE(2214), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93898] = 4, - ACTIONS(12059), 1, + [3546] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12323), 1, + ACTIONS(13283), 1, anon_sym_RBRACE, STATE(2261), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93912] = 4, - ACTIONS(12059), 1, + [3560] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12325), 1, + ACTIONS(13285), 1, anon_sym_RBRACE, STATE(2262), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93926] = 4, - ACTIONS(11895), 1, + [3574] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12327), 1, + ACTIONS(13287), 1, anon_sym_LBRACE, STATE(3710), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93940] = 4, - ACTIONS(11895), 1, + [3588] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12329), 1, + ACTIONS(13289), 1, anon_sym_LBRACE, STATE(3689), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93954] = 4, - ACTIONS(11913), 1, + [3602] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12331), 1, + ACTIONS(13291), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93968] = 4, - ACTIONS(11923), 1, + [3616] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12333), 1, + ACTIONS(13293), 1, anon_sym_RBRACE, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93982] = 4, - ACTIONS(11913), 1, + [3630] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12335), 1, + ACTIONS(13295), 1, anon_sym_RBRACE, STATE(2269), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [93996] = 4, - ACTIONS(11893), 1, + [3644] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12337), 1, + ACTIONS(13297), 1, anon_sym_RBRACE, STATE(2270), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94010] = 4, - ACTIONS(11893), 1, + [3658] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12339), 1, + ACTIONS(13299), 1, anon_sym_RBRACE, STATE(2271), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94024] = 4, - ACTIONS(11913), 1, + [3672] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12341), 1, + ACTIONS(13301), 1, anon_sym_RBRACE, STATE(2236), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94038] = 4, - ACTIONS(11965), 1, + [3686] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12343), 1, + ACTIONS(13303), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94052] = 4, - ACTIONS(11965), 1, + [3700] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12345), 1, + ACTIONS(13305), 1, anon_sym_RBRACE, STATE(2273), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94066] = 4, - ACTIONS(11923), 1, + [3714] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12347), 1, + ACTIONS(13307), 1, anon_sym_RBRACE, STATE(2237), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94080] = 4, - ACTIONS(11889), 1, + [3728] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12349), 1, + ACTIONS(13309), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94094] = 4, - ACTIONS(11889), 1, + [3742] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12351), 1, + ACTIONS(13311), 1, anon_sym_RBRACE, STATE(2275), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94108] = 4, - ACTIONS(11889), 1, + [3756] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12353), 1, + ACTIONS(13313), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94122] = 4, - ACTIONS(11889), 1, + [3770] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12355), 1, + ACTIONS(13315), 1, anon_sym_RBRACE, STATE(2276), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94136] = 4, - ACTIONS(11889), 1, + [3784] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12357), 1, + ACTIONS(13317), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94150] = 4, - ACTIONS(11889), 1, + [3798] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12359), 1, + ACTIONS(13319), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94164] = 4, - ACTIONS(11889), 1, + [3812] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12361), 1, + ACTIONS(13321), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94178] = 4, - ACTIONS(11889), 1, + [3826] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12363), 1, + ACTIONS(13323), 1, anon_sym_RBRACE, STATE(2277), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94192] = 4, - ACTIONS(11889), 1, + [3840] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12365), 1, + ACTIONS(13325), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94206] = 4, - ACTIONS(11889), 1, + [3854] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12367), 1, + ACTIONS(13327), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94220] = 4, - ACTIONS(11889), 1, + [3868] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12369), 1, + ACTIONS(13329), 1, anon_sym_RBRACE, STATE(2278), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94234] = 4, - ACTIONS(11889), 1, + [3882] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12371), 1, + ACTIONS(13331), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94248] = 4, - ACTIONS(11889), 1, + [3896] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12373), 1, + ACTIONS(13333), 1, anon_sym_RBRACE, STATE(2279), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94262] = 4, - ACTIONS(11889), 1, + [3910] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12375), 1, + ACTIONS(13335), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94276] = 4, - ACTIONS(11889), 1, + [3924] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12377), 1, + ACTIONS(13337), 1, anon_sym_RBRACE, STATE(2280), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94290] = 4, - ACTIONS(11889), 1, + [3938] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12379), 1, + ACTIONS(13339), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94304] = 4, - ACTIONS(12059), 1, + [3952] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12381), 1, + ACTIONS(13341), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94318] = 4, - ACTIONS(12059), 1, + [3966] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12383), 1, + ACTIONS(13343), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94332] = 4, - ACTIONS(11965), 1, + [3980] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12385), 1, + ACTIONS(13345), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94346] = 4, - ACTIONS(11895), 1, + [3994] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12387), 1, + ACTIONS(13347), 1, anon_sym_LBRACE, STATE(3707), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94360] = 4, - ACTIONS(11889), 1, + [4008] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12389), 1, + ACTIONS(13349), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94374] = 4, - ACTIONS(11889), 1, + [4022] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12391), 1, + ACTIONS(13351), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94388] = 4, - ACTIONS(11889), 1, + [4036] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12393), 1, + ACTIONS(13353), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94402] = 4, - ACTIONS(378), 1, + [4050] = 4, + ACTIONS(406), 1, anon_sym_LBRACE, - ACTIONS(12395), 1, + ACTIONS(13355), 1, anon_sym_LBRACK, STATE(698), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94416] = 4, - ACTIONS(11913), 1, + [4064] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12397), 1, + ACTIONS(13357), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94430] = 4, - ACTIONS(11893), 1, + [4078] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12399), 1, + ACTIONS(13359), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94444] = 4, - ACTIONS(11893), 1, + [4092] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12401), 1, + ACTIONS(13361), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94458] = 4, - ACTIONS(11889), 1, + [4106] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12403), 1, + ACTIONS(13363), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94472] = 4, - ACTIONS(11965), 1, + [4120] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12405), 1, + ACTIONS(13365), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94486] = 4, - ACTIONS(11965), 1, + [4134] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12407), 1, + ACTIONS(13367), 1, anon_sym_RBRACE, STATE(2285), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94500] = 4, - ACTIONS(11889), 1, + [4148] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12409), 1, + ACTIONS(13369), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94514] = 4, - ACTIONS(11889), 1, + [4162] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12411), 1, + ACTIONS(13371), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94528] = 4, - ACTIONS(11889), 1, + [4176] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12413), 1, + ACTIONS(13373), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94542] = 4, - ACTIONS(11889), 1, + [4190] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12415), 1, + ACTIONS(13375), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94556] = 4, - ACTIONS(11889), 1, + [4204] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12417), 1, + ACTIONS(13377), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94570] = 4, - ACTIONS(11889), 1, + [4218] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12419), 1, + ACTIONS(13379), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94584] = 2, + [4232] = 2, ACTIONS(3), 2, sym__whitespace, sym__comment, - ACTIONS(12421), 3, + ACTIONS(13381), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_COMMA, - [94594] = 4, - ACTIONS(11889), 1, + [4242] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12423), 1, + ACTIONS(13383), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94608] = 4, - ACTIONS(11889), 1, + [4256] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12425), 1, + ACTIONS(13385), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94622] = 4, - ACTIONS(11965), 1, + [4270] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12427), 1, + ACTIONS(13387), 1, anon_sym_RBRACE, STATE(2263), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94636] = 4, - ACTIONS(11965), 1, + [4284] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12429), 1, + ACTIONS(13389), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94650] = 4, - ACTIONS(11965), 1, + [4298] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12431), 1, + ACTIONS(13391), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94664] = 4, - ACTIONS(11893), 1, + [4312] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12433), 1, + ACTIONS(13393), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94678] = 4, - ACTIONS(11923), 1, + [4326] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12435), 1, + ACTIONS(13395), 1, anon_sym_RBRACE, STATE(2294), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94692] = 4, - ACTIONS(11893), 1, + [4340] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12437), 1, + ACTIONS(13397), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94706] = 4, - ACTIONS(11913), 1, + [4354] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12439), 1, + ACTIONS(13399), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94720] = 4, - ACTIONS(11913), 1, + [4368] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12441), 1, + ACTIONS(13401), 1, anon_sym_RBRACE, STATE(2297), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94734] = 4, - ACTIONS(10401), 1, + [4382] = 4, + ACTIONS(11297), 1, anon_sym_LBRACE, - ACTIONS(12443), 1, + ACTIONS(13403), 1, anon_sym_LBRACK, STATE(1779), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94748] = 4, - ACTIONS(12059), 1, + [4396] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12445), 1, + ACTIONS(13405), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94762] = 4, - ACTIONS(11923), 1, + [4410] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12447), 1, + ACTIONS(13407), 1, anon_sym_RBRACE, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94776] = 4, - ACTIONS(12059), 1, + [4424] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12449), 1, + ACTIONS(13409), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94790] = 4, - ACTIONS(11889), 1, + [4438] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12451), 1, + ACTIONS(13411), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94804] = 4, - ACTIONS(11913), 1, + [4452] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12453), 1, + ACTIONS(13413), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94818] = 4, - ACTIONS(11889), 1, + [4466] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12455), 1, + ACTIONS(13415), 1, anon_sym_RBRACE, STATE(2265), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94832] = 4, - ACTIONS(11889), 1, + [4480] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12457), 1, + ACTIONS(13417), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94846] = 4, - ACTIONS(11889), 1, + [4494] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12459), 1, + ACTIONS(13419), 1, anon_sym_RBRACE, STATE(2266), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94860] = 4, - ACTIONS(11889), 1, + [4508] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12461), 1, + ACTIONS(13421), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94874] = 4, - ACTIONS(11889), 1, + [4522] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12463), 1, + ACTIONS(13423), 1, anon_sym_RBRACE, STATE(2267), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94888] = 4, - ACTIONS(11889), 1, + [4536] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12465), 1, + ACTIONS(13425), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94902] = 4, - ACTIONS(11889), 1, + [4550] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12467), 1, + ACTIONS(13427), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94916] = 4, - ACTIONS(11889), 1, + [4564] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12469), 1, + ACTIONS(13429), 1, anon_sym_RBRACE, STATE(2272), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94930] = 4, - ACTIONS(11889), 1, + [4578] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12471), 1, + ACTIONS(13431), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94944] = 4, - ACTIONS(11889), 1, + [4592] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12473), 1, + ACTIONS(13433), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94958] = 4, - ACTIONS(11889), 1, + [4606] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12475), 1, + ACTIONS(13435), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94972] = 4, - ACTIONS(11889), 1, + [4620] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12477), 1, + ACTIONS(13437), 1, anon_sym_RBRACE, STATE(2282), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [94986] = 4, - ACTIONS(11965), 1, + [4634] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12479), 1, + ACTIONS(13439), 1, anon_sym_RBRACE, STATE(2060), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95000] = 4, - ACTIONS(11965), 1, + [4648] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12481), 1, + ACTIONS(13441), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95014] = 4, - ACTIONS(12483), 1, + [4662] = 4, + ACTIONS(13443), 1, anon_sym_RBRACE, - ACTIONS(12485), 1, + ACTIONS(13445), 1, anon_sym_COMMA, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95028] = 4, - ACTIONS(11889), 1, + [4676] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12488), 1, + ACTIONS(13448), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95042] = 4, - ACTIONS(11889), 1, + [4690] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12490), 1, + ACTIONS(13450), 1, anon_sym_RBRACE, STATE(2283), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95056] = 4, - ACTIONS(11893), 1, + [4704] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12492), 1, + ACTIONS(13452), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95070] = 4, - ACTIONS(11893), 1, + [4718] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12494), 1, + ACTIONS(13454), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95084] = 4, - ACTIONS(11889), 1, + [4732] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12496), 1, + ACTIONS(13456), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95098] = 4, - ACTIONS(11913), 1, + [4746] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12498), 1, + ACTIONS(13458), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95112] = 4, - ACTIONS(11965), 1, + [4760] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12500), 1, + ACTIONS(13460), 1, anon_sym_RBRACE, STATE(2286), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95126] = 4, - ACTIONS(11965), 1, + [4774] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12502), 1, + ACTIONS(13462), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95140] = 4, - ACTIONS(11895), 1, + [4788] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12504), 1, + ACTIONS(13464), 1, anon_sym_LBRACE, STATE(3816), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95154] = 4, - ACTIONS(11893), 1, + [4802] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12506), 1, + ACTIONS(13466), 1, anon_sym_RBRACE, STATE(2287), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95168] = 4, - ACTIONS(11893), 1, + [4816] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12508), 1, + ACTIONS(13468), 1, anon_sym_RBRACE, STATE(2289), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95182] = 4, - ACTIONS(11913), 1, + [4830] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12510), 1, + ACTIONS(13470), 1, anon_sym_RBRACE, STATE(2290), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95196] = 4, - ACTIONS(12059), 1, + [4844] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12512), 1, + ACTIONS(13472), 1, anon_sym_RBRACE, STATE(2293), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95210] = 4, - ACTIONS(12059), 1, + [4858] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12514), 1, + ACTIONS(13474), 1, anon_sym_RBRACE, STATE(2295), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95224] = 4, - ACTIONS(11889), 1, + [4872] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12516), 1, + ACTIONS(13476), 1, anon_sym_RBRACE, STATE(2296), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95238] = 4, - ACTIONS(11889), 1, + [4886] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12518), 1, + ACTIONS(13478), 1, anon_sym_RBRACE, STATE(2299), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95252] = 4, - ACTIONS(11889), 1, + [4900] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12520), 1, + ACTIONS(13480), 1, anon_sym_RBRACE, STATE(2301), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95266] = 4, - ACTIONS(11889), 1, + [4914] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12522), 1, + ACTIONS(13482), 1, anon_sym_RBRACE, STATE(2303), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95280] = 4, - ACTIONS(11889), 1, + [4928] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12524), 1, + ACTIONS(13484), 1, anon_sym_RBRACE, STATE(2304), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95294] = 4, - ACTIONS(11889), 1, + [4942] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12526), 1, + ACTIONS(13486), 1, anon_sym_RBRACE, STATE(2307), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95308] = 4, - ACTIONS(11889), 1, + [4956] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12528), 1, + ACTIONS(13488), 1, anon_sym_RBRACE, STATE(2308), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95322] = 4, - ACTIONS(11889), 1, + [4970] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12530), 1, + ACTIONS(13490), 1, anon_sym_RBRACE, STATE(2313), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95336] = 4, - ACTIONS(11889), 1, + [4984] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12532), 1, + ACTIONS(13492), 1, anon_sym_RBRACE, STATE(2317), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95350] = 4, - ACTIONS(11965), 1, + [4998] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12534), 1, + ACTIONS(13494), 1, anon_sym_RBRACE, STATE(2320), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95364] = 4, - ACTIONS(11895), 1, + [5012] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12536), 1, + ACTIONS(13496), 1, anon_sym_LBRACE, STATE(3866), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95378] = 4, - ACTIONS(11895), 1, + [5026] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12538), 1, + ACTIONS(13498), 1, anon_sym_LBRACE, STATE(3906), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95392] = 4, + [5040] = 4, ACTIONS(27), 1, anon_sym_LBRACE, - ACTIONS(12540), 1, + ACTIONS(13500), 1, anon_sym_LBRACK, STATE(554), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95406] = 4, - ACTIONS(11895), 1, + [5054] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12542), 1, + ACTIONS(13502), 1, anon_sym_LBRACE, STATE(3970), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95420] = 4, - ACTIONS(11913), 1, + [5068] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12544), 1, + ACTIONS(13504), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95434] = 4, - ACTIONS(11965), 1, + [5082] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12546), 1, + ACTIONS(13506), 1, anon_sym_RBRACE, STATE(2371), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95448] = 4, - ACTIONS(11923), 1, + [5096] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12548), 1, + ACTIONS(13508), 1, anon_sym_RBRACE, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95462] = 4, - ACTIONS(11889), 1, + [5110] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12550), 1, + ACTIONS(13510), 1, anon_sym_RBRACE, STATE(2374), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95476] = 4, - ACTIONS(11913), 1, + [5124] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12552), 1, + ACTIONS(13512), 1, anon_sym_RBRACE, STATE(2341), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95490] = 4, - ACTIONS(11889), 1, + [5138] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12554), 1, + ACTIONS(13514), 1, anon_sym_RBRACE, STATE(2376), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95504] = 4, - ACTIONS(11923), 1, + [5152] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12556), 1, + ACTIONS(13516), 1, anon_sym_RBRACE, STATE(2343), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95518] = 4, - ACTIONS(11889), 1, + [5166] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12558), 1, + ACTIONS(13518), 1, anon_sym_RBRACE, STATE(2378), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95532] = 4, - ACTIONS(11889), 1, + [5180] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12560), 1, + ACTIONS(13520), 1, anon_sym_RBRACE, STATE(2379), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95546] = 4, - ACTIONS(11889), 1, + [5194] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12562), 1, + ACTIONS(13522), 1, anon_sym_RBRACE, STATE(2380), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95560] = 4, - ACTIONS(11965), 1, + [5208] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12564), 1, + ACTIONS(13524), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95574] = 4, - ACTIONS(11889), 1, + [5222] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12566), 1, + ACTIONS(13526), 1, anon_sym_RBRACE, STATE(2382), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95588] = 4, - ACTIONS(11889), 1, + [5236] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12568), 1, + ACTIONS(13528), 1, anon_sym_RBRACE, STATE(2383), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95602] = 4, - ACTIONS(11895), 1, + [5250] = 4, + ACTIONS(12855), 1, anon_sym_LBRACK, - ACTIONS(12570), 1, + ACTIONS(13530), 1, anon_sym_LBRACE, STATE(3871), 1, sym_key_val_options, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95616] = 4, - ACTIONS(11889), 1, + [5264] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12572), 1, + ACTIONS(13532), 1, anon_sym_RBRACE, STATE(2385), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95630] = 4, - ACTIONS(11889), 1, + [5278] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12574), 1, + ACTIONS(13534), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95644] = 4, - ACTIONS(11889), 1, + [5292] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12576), 1, + ACTIONS(13536), 1, anon_sym_RBRACE, STATE(2387), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95658] = 4, - ACTIONS(11889), 1, + [5306] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12578), 1, + ACTIONS(13538), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95672] = 4, - ACTIONS(11889), 1, + [5320] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12580), 1, + ACTIONS(13540), 1, anon_sym_RBRACE, STATE(2389), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95686] = 4, - ACTIONS(11889), 1, + [5334] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12582), 1, + ACTIONS(13542), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95700] = 4, - ACTIONS(12059), 1, + [5348] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12584), 1, + ACTIONS(13544), 1, anon_sym_RBRACE, STATE(2390), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95714] = 4, - ACTIONS(12059), 1, + [5362] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12586), 1, + ACTIONS(13546), 1, anon_sym_RBRACE, STATE(2391), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95728] = 4, - ACTIONS(11889), 1, + [5376] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12588), 1, + ACTIONS(13548), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95742] = 4, - ACTIONS(11889), 1, + [5390] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12590), 1, + ACTIONS(13550), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95756] = 4, - ACTIONS(11889), 1, + [5404] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12592), 1, + ACTIONS(13552), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95770] = 4, - ACTIONS(11965), 1, + [5418] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12594), 1, + ACTIONS(13554), 1, anon_sym_RBRACE, STATE(2351), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95784] = 4, - ACTIONS(11913), 1, + [5432] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12596), 1, + ACTIONS(13556), 1, anon_sym_RBRACE, STATE(2398), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95798] = 4, - ACTIONS(11893), 1, + [5446] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12598), 1, + ACTIONS(13558), 1, anon_sym_RBRACE, STATE(2399), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95812] = 4, - ACTIONS(11893), 1, + [5460] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12600), 1, + ACTIONS(13560), 1, anon_sym_RBRACE, STATE(2400), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95826] = 4, - ACTIONS(11889), 1, + [5474] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12602), 1, + ACTIONS(13562), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95840] = 4, - ACTIONS(11965), 1, + [5488] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12604), 1, + ACTIONS(13564), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95854] = 4, - ACTIONS(11965), 1, + [5502] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12606), 1, + ACTIONS(13566), 1, anon_sym_RBRACE, STATE(2402), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95868] = 4, - ACTIONS(11965), 1, + [5516] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12608), 1, + ACTIONS(13568), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95882] = 4, - ACTIONS(11889), 1, + [5530] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12610), 1, + ACTIONS(13570), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95896] = 4, - ACTIONS(11889), 1, + [5544] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12612), 1, + ACTIONS(13572), 1, anon_sym_RBRACE, STATE(2404), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95910] = 4, - ACTIONS(11889), 1, + [5558] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12614), 1, + ACTIONS(13574), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95924] = 4, - ACTIONS(11889), 1, + [5572] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12616), 1, + ACTIONS(13576), 1, anon_sym_RBRACE, STATE(2405), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95938] = 4, - ACTIONS(11889), 1, + [5586] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12618), 1, + ACTIONS(13578), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95952] = 4, - ACTIONS(11889), 1, + [5600] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12620), 1, + ACTIONS(13580), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95966] = 4, - ACTIONS(11889), 1, + [5614] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12622), 1, + ACTIONS(13582), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95980] = 4, - ACTIONS(11889), 1, + [5628] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12624), 1, + ACTIONS(13584), 1, anon_sym_RBRACE, STATE(2406), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [95994] = 4, - ACTIONS(11889), 1, + [5642] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12626), 1, + ACTIONS(13586), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96008] = 4, - ACTIONS(11889), 1, + [5656] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12628), 1, + ACTIONS(13588), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96022] = 4, - ACTIONS(11889), 1, + [5670] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12630), 1, + ACTIONS(13590), 1, anon_sym_RBRACE, STATE(2407), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96036] = 4, - ACTIONS(11889), 1, + [5684] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12632), 1, + ACTIONS(13592), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96050] = 4, - ACTIONS(11889), 1, + [5698] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12634), 1, + ACTIONS(13594), 1, anon_sym_RBRACE, STATE(2408), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96064] = 4, - ACTIONS(11889), 1, + [5712] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12636), 1, + ACTIONS(13596), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96078] = 4, - ACTIONS(11889), 1, + [5726] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12638), 1, + ACTIONS(13598), 1, anon_sym_RBRACE, STATE(2409), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96092] = 4, - ACTIONS(11889), 1, + [5740] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12640), 1, + ACTIONS(13600), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96106] = 4, - ACTIONS(12059), 1, + [5754] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12642), 1, + ACTIONS(13602), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96120] = 4, - ACTIONS(12059), 1, + [5768] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12644), 1, + ACTIONS(13604), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96134] = 4, - ACTIONS(11893), 1, + [5782] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12646), 1, + ACTIONS(13606), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96148] = 4, - ACTIONS(11893), 1, + [5796] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12648), 1, + ACTIONS(13608), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96162] = 4, - ACTIONS(11913), 1, + [5810] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12650), 1, + ACTIONS(13610), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96176] = 4, - ACTIONS(9831), 1, + [5824] = 4, + ACTIONS(10671), 1, anon_sym_LBRACE, - ACTIONS(12652), 1, + ACTIONS(13612), 1, anon_sym_LBRACK, STATE(1670), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96190] = 4, - ACTIONS(12059), 1, + [5838] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12654), 1, + ACTIONS(13614), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96204] = 4, - ACTIONS(476), 1, + [5852] = 4, + ACTIONS(512), 1, anon_sym_LBRACE, - ACTIONS(12656), 1, + ACTIONS(13616), 1, anon_sym_LBRACK, STATE(850), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96218] = 4, - ACTIONS(11913), 1, + [5866] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12658), 1, + ACTIONS(13618), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96232] = 4, - ACTIONS(11893), 1, + [5880] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12660), 1, + ACTIONS(13620), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96246] = 4, - ACTIONS(11893), 1, + [5894] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12662), 1, + ACTIONS(13622), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96260] = 4, - ACTIONS(12059), 1, + [5908] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12664), 1, + ACTIONS(13624), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96274] = 4, - ACTIONS(11965), 1, + [5922] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12666), 1, + ACTIONS(13626), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96288] = 4, - ACTIONS(11965), 1, + [5936] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12668), 1, + ACTIONS(13628), 1, anon_sym_RBRACE, STATE(2414), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96302] = 4, - ACTIONS(11889), 1, + [5950] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12670), 1, + ACTIONS(13630), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96316] = 4, - ACTIONS(11889), 1, + [5964] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12672), 1, + ACTIONS(13632), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96330] = 4, - ACTIONS(11889), 1, + [5978] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12674), 1, + ACTIONS(13634), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96344] = 4, - ACTIONS(11889), 1, + [5992] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12676), 1, + ACTIONS(13636), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96358] = 4, - ACTIONS(11889), 1, + [6006] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12678), 1, + ACTIONS(13638), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96372] = 4, - ACTIONS(11889), 1, + [6020] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12680), 1, + ACTIONS(13640), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96386] = 4, - ACTIONS(11889), 1, + [6034] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12682), 1, + ACTIONS(13642), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96400] = 4, - ACTIONS(11889), 1, + [6048] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12684), 1, + ACTIONS(13644), 1, anon_sym_RBRACE, STATE(2356), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96414] = 4, - ACTIONS(11889), 1, + [6062] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12686), 1, + ACTIONS(13646), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96428] = 4, - ACTIONS(11889), 1, + [6076] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12688), 1, + ACTIONS(13648), 1, anon_sym_RBRACE, STATE(2358), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96442] = 4, - ACTIONS(11965), 1, + [6090] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12690), 1, + ACTIONS(13650), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96456] = 4, - ACTIONS(11889), 1, + [6104] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12692), 1, + ACTIONS(13652), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96470] = 4, - ACTIONS(11889), 1, + [6118] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12694), 1, + ACTIONS(13654), 1, anon_sym_RBRACE, STATE(2360), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96484] = 4, - ACTIONS(11923), 1, + [6132] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12696), 1, + ACTIONS(13656), 1, anon_sym_RBRACE, STATE(2423), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96498] = 4, - ACTIONS(11889), 1, + [6146] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12698), 1, + ACTIONS(13658), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96512] = 4, - ACTIONS(11889), 1, + [6160] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12700), 1, + ACTIONS(13660), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96526] = 4, - ACTIONS(11913), 1, + [6174] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12702), 1, + ACTIONS(13662), 1, anon_sym_RBRACE, STATE(2426), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96540] = 4, - ACTIONS(11889), 1, + [6188] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12704), 1, + ACTIONS(13664), 1, anon_sym_RBRACE, STATE(2363), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96554] = 4, - ACTIONS(11889), 1, + [6202] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12706), 1, + ACTIONS(13666), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96568] = 4, - ACTIONS(11923), 1, + [6216] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12708), 1, + ACTIONS(13668), 1, anon_sym_RBRACE, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96582] = 4, - ACTIONS(11889), 1, + [6230] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12710), 1, + ACTIONS(13670), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96596] = 4, - ACTIONS(11889), 1, + [6244] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12712), 1, + ACTIONS(13672), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96610] = 4, - ACTIONS(11913), 1, + [6258] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12714), 1, + ACTIONS(13674), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96624] = 4, - ACTIONS(11889), 1, + [6272] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12716), 1, + ACTIONS(13676), 1, anon_sym_RBRACE, STATE(2364), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96638] = 4, - ACTIONS(11889), 1, + [6286] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12718), 1, + ACTIONS(13678), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96652] = 4, - ACTIONS(11889), 1, + [6300] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12720), 1, + ACTIONS(13680), 1, anon_sym_RBRACE, STATE(2365), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96666] = 4, - ACTIONS(11889), 1, + [6314] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12722), 1, + ACTIONS(13682), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96680] = 4, - ACTIONS(11965), 1, + [6328] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12724), 1, + ACTIONS(13684), 1, anon_sym_RBRACE, STATE(2373), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96694] = 4, - ACTIONS(11965), 1, + [6342] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12726), 1, + ACTIONS(13686), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96708] = 4, - ACTIONS(11893), 1, + [6356] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12728), 1, + ACTIONS(13688), 1, anon_sym_RBRACE, STATE(2392), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96722] = 4, - ACTIONS(11913), 1, + [6370] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12730), 1, + ACTIONS(13690), 1, anon_sym_RBRACE, STATE(2394), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96736] = 4, - ACTIONS(12059), 1, + [6384] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12732), 1, + ACTIONS(13692), 1, anon_sym_RBRACE, STATE(2396), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96750] = 4, - ACTIONS(12059), 1, + [6398] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12734), 1, + ACTIONS(13694), 1, anon_sym_RBRACE, STATE(2401), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96764] = 4, - ACTIONS(11889), 1, + [6412] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12736), 1, + ACTIONS(13696), 1, anon_sym_RBRACE, STATE(2410), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96778] = 4, - ACTIONS(11889), 1, + [6426] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12738), 1, + ACTIONS(13698), 1, anon_sym_RBRACE, STATE(2412), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96792] = 4, - ACTIONS(11889), 1, + [6440] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12740), 1, + ACTIONS(13700), 1, anon_sym_RBRACE, STATE(2415), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96806] = 4, - ACTIONS(11889), 1, + [6454] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12742), 1, + ACTIONS(13702), 1, anon_sym_RBRACE, STATE(2418), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96820] = 4, - ACTIONS(11889), 1, + [6468] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12744), 1, + ACTIONS(13704), 1, anon_sym_RBRACE, STATE(2419), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96834] = 4, - ACTIONS(11889), 1, + [6482] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12746), 1, + ACTIONS(13706), 1, anon_sym_RBRACE, STATE(2422), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96848] = 4, - ACTIONS(11889), 1, + [6496] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12748), 1, + ACTIONS(13708), 1, anon_sym_RBRACE, STATE(2424), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96862] = 4, - ACTIONS(12059), 1, + [6510] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12750), 1, + ACTIONS(13710), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96876] = 4, - ACTIONS(12059), 1, + [6524] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12752), 1, + ACTIONS(13712), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96890] = 4, - ACTIONS(11889), 1, + [6538] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12754), 1, + ACTIONS(13714), 1, anon_sym_RBRACE, STATE(2425), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96904] = 4, - ACTIONS(11889), 1, + [6552] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12756), 1, + ACTIONS(13716), 1, anon_sym_RBRACE, STATE(2428), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96918] = 4, - ACTIONS(11889), 1, + [6566] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12758), 1, + ACTIONS(13718), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96932] = 4, - ACTIONS(11889), 1, + [6580] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12760), 1, + ACTIONS(13720), 1, anon_sym_RBRACE, STATE(2188), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96946] = 4, - ACTIONS(11889), 1, + [6594] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12762), 1, + ACTIONS(13722), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96960] = 4, - ACTIONS(11889), 1, + [6608] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12764), 1, + ACTIONS(13724), 1, anon_sym_RBRACE, STATE(2430), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96974] = 4, - ACTIONS(11965), 1, + [6622] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12766), 1, + ACTIONS(13726), 1, anon_sym_RBRACE, STATE(2432), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [96988] = 4, - ACTIONS(11032), 1, + [6636] = 4, + ACTIONS(11992), 1, anon_sym_LBRACK, - ACTIONS(12768), 1, + ACTIONS(13728), 1, anon_sym_LBRACE, STATE(3982), 1, sym_bracket_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97002] = 4, - ACTIONS(11913), 1, + [6650] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12770), 1, + ACTIONS(13730), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97016] = 4, - ACTIONS(11923), 1, + [6664] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12772), 1, + ACTIONS(13732), 1, anon_sym_RBRACE, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97030] = 4, - ACTIONS(11913), 1, + [6678] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12774), 1, + ACTIONS(13734), 1, anon_sym_RBRACE, STATE(2454), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97044] = 4, - ACTIONS(11923), 1, + [6692] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12776), 1, + ACTIONS(13736), 1, anon_sym_RBRACE, STATE(2455), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97058] = 4, - ACTIONS(11965), 1, + [6706] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12778), 1, + ACTIONS(13738), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97072] = 4, - ACTIONS(11889), 1, + [6720] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12780), 1, + ACTIONS(13740), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97086] = 4, - ACTIONS(11889), 1, + [6734] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12782), 1, + ACTIONS(13742), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97100] = 4, - ACTIONS(11889), 1, + [6748] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12784), 1, + ACTIONS(13744), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97114] = 4, - ACTIONS(11889), 1, + [6762] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12786), 1, + ACTIONS(13746), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97128] = 4, - ACTIONS(11889), 1, + [6776] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12788), 1, + ACTIONS(13748), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97142] = 4, - ACTIONS(11889), 1, + [6790] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12790), 1, + ACTIONS(13750), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97156] = 4, - ACTIONS(11965), 1, + [6804] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12792), 1, + ACTIONS(13752), 1, anon_sym_RBRACE, STATE(2458), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97170] = 4, - ACTIONS(11965), 1, + [6818] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12794), 1, + ACTIONS(13754), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97184] = 4, - ACTIONS(11889), 1, + [6832] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12796), 1, + ACTIONS(13756), 1, anon_sym_RBRACE, STATE(2189), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97198] = 4, - ACTIONS(11889), 1, + [6846] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12798), 1, + ACTIONS(13758), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97212] = 4, - ACTIONS(11889), 1, + [6860] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12800), 1, + ACTIONS(13760), 1, anon_sym_RBRACE, STATE(2190), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97226] = 4, - ACTIONS(11889), 1, + [6874] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12802), 1, + ACTIONS(13762), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97240] = 4, - ACTIONS(11965), 1, + [6888] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12804), 1, + ACTIONS(13764), 1, anon_sym_RBRACE, STATE(2500), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97254] = 4, - ACTIONS(11893), 1, + [6902] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12806), 1, + ACTIONS(13766), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97268] = 4, - ACTIONS(11889), 1, + [6916] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12808), 1, + ACTIONS(13768), 1, anon_sym_RBRACE, STATE(2503), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97282] = 4, - ACTIONS(11893), 1, + [6930] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12810), 1, + ACTIONS(13770), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97296] = 4, - ACTIONS(11889), 1, + [6944] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12812), 1, + ACTIONS(13772), 1, anon_sym_RBRACE, STATE(2505), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97310] = 4, - ACTIONS(11913), 1, + [6958] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12814), 1, + ACTIONS(13774), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97324] = 4, - ACTIONS(11889), 1, + [6972] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12816), 1, + ACTIONS(13776), 1, anon_sym_RBRACE, STATE(2507), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97338] = 4, - ACTIONS(11889), 1, + [6986] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12818), 1, + ACTIONS(13778), 1, anon_sym_RBRACE, STATE(2508), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97352] = 4, - ACTIONS(11889), 1, + [7000] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12820), 1, + ACTIONS(13780), 1, anon_sym_RBRACE, STATE(2509), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97366] = 4, - ACTIONS(9023), 1, + [7014] = 4, + ACTIONS(9783), 1, anon_sym_LBRACE, - ACTIONS(12822), 1, + ACTIONS(13782), 1, anon_sym_LBRACK, STATE(1551), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97380] = 4, - ACTIONS(11889), 1, + [7028] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12824), 1, + ACTIONS(13784), 1, anon_sym_RBRACE, STATE(2511), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97394] = 4, - ACTIONS(11889), 1, + [7042] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12826), 1, + ACTIONS(13786), 1, anon_sym_RBRACE, STATE(2512), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97408] = 4, - ACTIONS(12059), 1, + [7056] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12828), 1, + ACTIONS(13788), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97422] = 4, - ACTIONS(11889), 1, + [7070] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12830), 1, + ACTIONS(13790), 1, anon_sym_RBRACE, STATE(2514), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97436] = 4, - ACTIONS(12059), 1, + [7084] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12832), 1, + ACTIONS(13792), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97450] = 4, - ACTIONS(11889), 1, + [7098] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12834), 1, + ACTIONS(13794), 1, anon_sym_RBRACE, STATE(2516), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97464] = 4, - ACTIONS(11889), 1, + [7112] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12836), 1, + ACTIONS(13796), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97478] = 4, - ACTIONS(11889), 1, + [7126] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12838), 1, + ACTIONS(13798), 1, anon_sym_RBRACE, STATE(2518), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97492] = 4, - ACTIONS(11889), 1, + [7140] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12840), 1, + ACTIONS(13800), 1, anon_sym_RBRACE, STATE(2459), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97506] = 4, - ACTIONS(12059), 1, + [7154] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12842), 1, + ACTIONS(13802), 1, anon_sym_RBRACE, STATE(2519), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97520] = 4, - ACTIONS(12059), 1, + [7168] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12844), 1, + ACTIONS(13804), 1, anon_sym_RBRACE, STATE(2520), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97534] = 4, - ACTIONS(11889), 1, + [7182] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12846), 1, + ACTIONS(13806), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97548] = 4, - ACTIONS(11889), 1, + [7196] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12848), 1, + ACTIONS(13808), 1, anon_sym_RBRACE, STATE(2460), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97562] = 4, - ACTIONS(11889), 1, + [7210] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12850), 1, + ACTIONS(13810), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97576] = 4, - ACTIONS(11889), 1, + [7224] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12852), 1, + ACTIONS(13812), 1, anon_sym_RBRACE, STATE(2461), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97590] = 4, - ACTIONS(11913), 1, + [7238] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12854), 1, + ACTIONS(13814), 1, anon_sym_RBRACE, STATE(2527), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97604] = 4, - ACTIONS(11893), 1, + [7252] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12856), 1, + ACTIONS(13816), 1, anon_sym_RBRACE, STATE(2528), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97618] = 4, - ACTIONS(11893), 1, + [7266] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12858), 1, + ACTIONS(13818), 1, anon_sym_RBRACE, STATE(2529), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97632] = 4, - ACTIONS(11893), 1, + [7280] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12860), 1, + ACTIONS(13820), 1, anon_sym_RBRACE, STATE(2315), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97646] = 4, - ACTIONS(11965), 1, + [7294] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12862), 1, + ACTIONS(13822), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97660] = 4, - ACTIONS(11965), 1, + [7308] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12864), 1, + ACTIONS(13824), 1, anon_sym_RBRACE, STATE(2531), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97674] = 4, - ACTIONS(11889), 1, + [7322] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12866), 1, + ACTIONS(13826), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97688] = 4, - ACTIONS(11889), 1, + [7336] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12868), 1, + ACTIONS(13828), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97702] = 4, - ACTIONS(11889), 1, + [7350] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12870), 1, + ACTIONS(13830), 1, anon_sym_RBRACE, STATE(2533), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97716] = 4, - ACTIONS(11889), 1, + [7364] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12872), 1, + ACTIONS(13832), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97730] = 4, - ACTIONS(11889), 1, + [7378] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12874), 1, + ACTIONS(13834), 1, anon_sym_RBRACE, STATE(2534), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97744] = 4, - ACTIONS(11889), 1, + [7392] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12876), 1, + ACTIONS(13836), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97758] = 4, - ACTIONS(11889), 1, + [7406] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12878), 1, + ACTIONS(13838), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97772] = 4, - ACTIONS(11889), 1, + [7420] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12880), 1, + ACTIONS(13840), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97786] = 4, - ACTIONS(11889), 1, + [7434] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12882), 1, + ACTIONS(13842), 1, anon_sym_RBRACE, STATE(2535), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97800] = 4, - ACTIONS(11889), 1, + [7448] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12884), 1, + ACTIONS(13844), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97814] = 4, - ACTIONS(11889), 1, + [7462] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12886), 1, + ACTIONS(13846), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97828] = 4, - ACTIONS(11889), 1, + [7476] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12888), 1, + ACTIONS(13848), 1, anon_sym_RBRACE, STATE(2536), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97842] = 4, - ACTIONS(11889), 1, + [7490] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12890), 1, + ACTIONS(13850), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97856] = 4, - ACTIONS(11889), 1, + [7504] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12892), 1, + ACTIONS(13852), 1, anon_sym_RBRACE, STATE(2537), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97870] = 4, - ACTIONS(11889), 1, + [7518] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12894), 1, + ACTIONS(13854), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97884] = 4, - ACTIONS(11889), 1, + [7532] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12896), 1, + ACTIONS(13856), 1, anon_sym_RBRACE, STATE(2538), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97898] = 4, - ACTIONS(11889), 1, + [7546] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12898), 1, + ACTIONS(13858), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97912] = 4, - ACTIONS(12059), 1, + [7560] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12900), 1, + ACTIONS(13860), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97926] = 4, - ACTIONS(12059), 1, + [7574] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12902), 1, + ACTIONS(13862), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97940] = 4, - ACTIONS(11889), 1, + [7588] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12904), 1, + ACTIONS(13864), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97954] = 4, - ACTIONS(11889), 1, + [7602] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12906), 1, + ACTIONS(13866), 1, anon_sym_RBRACE, STATE(2462), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97968] = 4, - ACTIONS(11889), 1, + [7616] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12908), 1, + ACTIONS(13868), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97982] = 4, - ACTIONS(11889), 1, + [7630] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12910), 1, + ACTIONS(13870), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [97996] = 4, - ACTIONS(11889), 1, + [7644] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12912), 1, + ACTIONS(13872), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98010] = 4, - ACTIONS(10836), 1, + [7658] = 4, + ACTIONS(11776), 1, anon_sym_LBRACE, - ACTIONS(12914), 1, + ACTIONS(13874), 1, anon_sym_LBRACK, STATE(1928), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98024] = 4, - ACTIONS(11913), 1, + [7672] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12916), 1, + ACTIONS(13876), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98038] = 4, - ACTIONS(11893), 1, + [7686] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12918), 1, + ACTIONS(13878), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98052] = 4, - ACTIONS(11893), 1, + [7700] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12920), 1, + ACTIONS(13880), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98066] = 4, - ACTIONS(11889), 1, + [7714] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12922), 1, + ACTIONS(13882), 1, anon_sym_RBRACE, STATE(2463), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98080] = 4, - ACTIONS(11965), 1, + [7728] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12924), 1, + ACTIONS(13884), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98094] = 4, - ACTIONS(11965), 1, + [7742] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12926), 1, + ACTIONS(13886), 1, anon_sym_RBRACE, STATE(2543), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98108] = 4, - ACTIONS(11889), 1, + [7756] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12928), 1, + ACTIONS(13888), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98122] = 4, - ACTIONS(11889), 1, + [7770] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12930), 1, + ACTIONS(13890), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98136] = 4, - ACTIONS(11889), 1, + [7784] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12932), 1, + ACTIONS(13892), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98150] = 4, - ACTIONS(11889), 1, + [7798] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12934), 1, + ACTIONS(13894), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98164] = 4, - ACTIONS(11889), 1, + [7812] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12936), 1, + ACTIONS(13896), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98178] = 4, - ACTIONS(11889), 1, + [7826] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12938), 1, + ACTIONS(13898), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98192] = 4, - ACTIONS(11889), 1, + [7840] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12940), 1, + ACTIONS(13900), 1, anon_sym_RBRACE, STATE(2191), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98206] = 4, - ACTIONS(11889), 1, + [7854] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12942), 1, + ACTIONS(13902), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98220] = 4, - ACTIONS(11889), 1, + [7868] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12944), 1, + ACTIONS(13904), 1, anon_sym_RBRACE, STATE(2464), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98234] = 4, - ACTIONS(11889), 1, + [7882] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12946), 1, + ACTIONS(13906), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98248] = 4, - ACTIONS(11965), 1, + [7896] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12948), 1, + ACTIONS(13908), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98262] = 4, - ACTIONS(11965), 1, + [7910] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12950), 1, + ACTIONS(13910), 1, anon_sym_RBRACE, STATE(2466), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98276] = 4, - ACTIONS(11965), 1, + [7924] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12952), 1, + ACTIONS(13912), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98290] = 4, - ACTIONS(11923), 1, + [7938] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12954), 1, + ACTIONS(13914), 1, anon_sym_RBRACE, STATE(2552), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98304] = 4, - ACTIONS(11893), 1, + [7952] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12956), 1, + ACTIONS(13916), 1, anon_sym_RBRACE, STATE(2472), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98318] = 4, - ACTIONS(11893), 1, + [7966] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(12958), 1, + ACTIONS(13918), 1, anon_sym_RBRACE, STATE(2474), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98332] = 4, - ACTIONS(11913), 1, + [7980] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12960), 1, + ACTIONS(13920), 1, anon_sym_RBRACE, STATE(2555), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98346] = 4, - ACTIONS(11913), 1, + [7994] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12962), 1, + ACTIONS(13922), 1, anon_sym_RBRACE, STATE(2476), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98360] = 4, - ACTIONS(12059), 1, + [8008] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12964), 1, + ACTIONS(13924), 1, anon_sym_RBRACE, STATE(2483), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98374] = 4, - ACTIONS(11923), 1, + [8022] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(12966), 1, + ACTIONS(13926), 1, anon_sym_RBRACE, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98388] = 4, - ACTIONS(12059), 1, + [8036] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(12968), 1, + ACTIONS(13928), 1, anon_sym_RBRACE, STATE(2485), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98402] = 4, - ACTIONS(11889), 1, + [8050] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12970), 1, + ACTIONS(13930), 1, anon_sym_RBRACE, STATE(2487), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98416] = 4, - ACTIONS(11913), 1, + [8064] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12972), 1, + ACTIONS(13932), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98430] = 4, - ACTIONS(11889), 1, + [8078] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12974), 1, + ACTIONS(13934), 1, anon_sym_RBRACE, STATE(2492), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98444] = 4, - ACTIONS(11889), 1, + [8092] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12976), 1, + ACTIONS(13936), 1, anon_sym_RBRACE, STATE(2494), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98458] = 4, - ACTIONS(11889), 1, + [8106] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12978), 1, + ACTIONS(13938), 1, anon_sym_RBRACE, STATE(2502), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98472] = 4, - ACTIONS(11889), 1, + [8120] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12980), 1, + ACTIONS(13940), 1, anon_sym_RBRACE, STATE(2521), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98486] = 4, - ACTIONS(11889), 1, + [8134] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12982), 1, + ACTIONS(13942), 1, anon_sym_RBRACE, STATE(2523), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98500] = 4, - ACTIONS(11889), 1, + [8148] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12984), 1, + ACTIONS(13944), 1, anon_sym_RBRACE, STATE(2524), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98514] = 4, - ACTIONS(11889), 1, + [8162] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12986), 1, + ACTIONS(13946), 1, anon_sym_RBRACE, STATE(2525), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98528] = 4, - ACTIONS(11889), 1, + [8176] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12988), 1, + ACTIONS(13948), 1, anon_sym_RBRACE, STATE(2540), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98542] = 4, - ACTIONS(11889), 1, + [8190] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12990), 1, + ACTIONS(13950), 1, anon_sym_RBRACE, STATE(2542), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98556] = 4, - ACTIONS(11965), 1, + [8204] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(12992), 1, + ACTIONS(13952), 1, anon_sym_RBRACE, STATE(2545), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98570] = 4, - ACTIONS(11913), 1, + [8218] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(12994), 1, + ACTIONS(13954), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98584] = 4, - ACTIONS(11889), 1, + [8232] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12996), 1, + ACTIONS(13956), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98598] = 4, - ACTIONS(11889), 1, + [8246] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(12998), 1, + ACTIONS(13958), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98612] = 4, - ACTIONS(11889), 1, + [8260] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13000), 1, + ACTIONS(13960), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98626] = 4, - ACTIONS(11889), 1, + [8274] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13002), 1, + ACTIONS(13962), 1, anon_sym_RBRACE, STATE(2192), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98640] = 4, - ACTIONS(11889), 1, + [8288] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13004), 1, + ACTIONS(13964), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98654] = 4, - ACTIONS(11889), 1, + [8302] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13006), 1, + ACTIONS(13966), 1, anon_sym_RBRACE, STATE(2209), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98668] = 4, - ACTIONS(11889), 1, + [8316] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13008), 1, + ACTIONS(13968), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98682] = 4, - ACTIONS(11923), 1, + [8330] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(13010), 1, + ACTIONS(13970), 1, anon_sym_RBRACE, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98696] = 4, - ACTIONS(11923), 1, + [8344] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(13012), 1, + ACTIONS(13972), 1, anon_sym_RBRACK, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98710] = 4, - ACTIONS(11856), 1, + [8358] = 4, + ACTIONS(12816), 1, sym_word, STATE(1999), 1, aux_sym_key_val_pair_repeat1, @@ -151147,2303 +501838,2303 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [98724] = 4, - ACTIONS(11913), 1, + [8372] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13014), 1, + ACTIONS(13974), 1, anon_sym_RBRACE, STATE(2566), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98738] = 4, - ACTIONS(11923), 1, + [8386] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(13016), 1, + ACTIONS(13976), 1, anon_sym_RBRACE, STATE(2574), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98752] = 4, - ACTIONS(11965), 1, + [8400] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13018), 1, + ACTIONS(13978), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98766] = 4, - ACTIONS(11889), 1, + [8414] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13020), 1, + ACTIONS(13980), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98780] = 4, - ACTIONS(11889), 1, + [8428] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13022), 1, + ACTIONS(13982), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98794] = 4, - ACTIONS(11889), 1, + [8442] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13024), 1, + ACTIONS(13984), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98808] = 4, - ACTIONS(11889), 1, + [8456] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13026), 1, + ACTIONS(13986), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98822] = 4, - ACTIONS(11889), 1, + [8470] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13028), 1, + ACTIONS(13988), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98836] = 4, - ACTIONS(11889), 1, + [8484] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13030), 1, + ACTIONS(13990), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98850] = 4, - ACTIONS(11965), 1, + [8498] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13032), 1, + ACTIONS(13992), 1, anon_sym_RBRACE, STATE(2579), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98864] = 4, - ACTIONS(11965), 1, + [8512] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13034), 1, + ACTIONS(13994), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98878] = 4, - ACTIONS(11893), 1, + [8526] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13036), 1, + ACTIONS(13996), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98892] = 4, - ACTIONS(11893), 1, + [8540] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13038), 1, + ACTIONS(13998), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98906] = 4, - ACTIONS(11913), 1, + [8554] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13040), 1, + ACTIONS(14000), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98920] = 4, - ACTIONS(7092), 1, + [8568] = 4, + ACTIONS(7664), 1, anon_sym_LBRACE, - ACTIONS(13042), 1, + ACTIONS(14002), 1, anon_sym_LBRACK, STATE(1426), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98934] = 4, - ACTIONS(12059), 1, + [8582] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13044), 1, + ACTIONS(14004), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98948] = 4, - ACTIONS(12059), 1, + [8596] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13046), 1, + ACTIONS(14006), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98962] = 4, - ACTIONS(11889), 1, + [8610] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13048), 1, + ACTIONS(14008), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98976] = 4, - ACTIONS(11965), 1, + [8624] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13050), 1, + ACTIONS(14010), 1, anon_sym_RBRACE, STATE(2311), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [98990] = 4, - ACTIONS(11965), 1, + [8638] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13052), 1, + ACTIONS(14012), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99004] = 4, - ACTIONS(11889), 1, + [8652] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13054), 1, + ACTIONS(14014), 1, anon_sym_RBRACE, STATE(2580), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99018] = 4, - ACTIONS(11889), 1, + [8666] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13056), 1, + ACTIONS(14016), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99032] = 4, - ACTIONS(11965), 1, + [8680] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13058), 1, + ACTIONS(14018), 1, anon_sym_RBRACE, STATE(2628), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99046] = 4, - ACTIONS(11889), 1, + [8694] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13060), 1, + ACTIONS(14020), 1, anon_sym_RBRACE, STATE(2581), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99060] = 4, - ACTIONS(11889), 1, + [8708] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13062), 1, + ACTIONS(14022), 1, anon_sym_RBRACE, STATE(2631), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99074] = 4, - ACTIONS(11889), 1, + [8722] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13064), 1, + ACTIONS(14024), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99088] = 4, - ACTIONS(11889), 1, + [8736] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13066), 1, + ACTIONS(14026), 1, anon_sym_RBRACE, STATE(2633), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99102] = 4, - ACTIONS(11889), 1, + [8750] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13068), 1, + ACTIONS(14028), 1, anon_sym_RBRACE, STATE(2582), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99116] = 4, - ACTIONS(11889), 1, + [8764] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13070), 1, + ACTIONS(14030), 1, anon_sym_RBRACE, STATE(2635), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99130] = 4, - ACTIONS(11889), 1, + [8778] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13072), 1, + ACTIONS(14032), 1, anon_sym_RBRACE, STATE(2636), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99144] = 4, - ACTIONS(11889), 1, + [8792] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13074), 1, + ACTIONS(14034), 1, anon_sym_RBRACE, STATE(2637), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99158] = 4, - ACTIONS(11889), 1, + [8806] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13076), 1, + ACTIONS(14036), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99172] = 4, - ACTIONS(11889), 1, + [8820] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13078), 1, + ACTIONS(14038), 1, anon_sym_RBRACE, STATE(2639), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99186] = 4, - ACTIONS(11889), 1, + [8834] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13080), 1, + ACTIONS(14040), 1, anon_sym_RBRACE, STATE(2640), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99200] = 4, - ACTIONS(11889), 1, + [8848] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13082), 1, + ACTIONS(14042), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99214] = 4, - ACTIONS(11889), 1, + [8862] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13084), 1, + ACTIONS(14044), 1, anon_sym_RBRACE, STATE(2642), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99228] = 4, - ACTIONS(11889), 1, + [8876] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13086), 1, + ACTIONS(14046), 1, anon_sym_RBRACE, STATE(2583), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99242] = 4, - ACTIONS(11889), 1, + [8890] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13088), 1, + ACTIONS(14048), 1, anon_sym_RBRACE, STATE(2644), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99256] = 4, - ACTIONS(11889), 1, + [8904] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13090), 1, + ACTIONS(14050), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99270] = 4, - ACTIONS(11889), 1, + [8918] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13092), 1, + ACTIONS(14052), 1, anon_sym_RBRACE, STATE(2646), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99284] = 4, - ACTIONS(11889), 1, + [8932] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13094), 1, + ACTIONS(14054), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99298] = 4, - ACTIONS(12059), 1, + [8946] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13096), 1, + ACTIONS(14056), 1, anon_sym_RBRACE, STATE(2647), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99312] = 4, - ACTIONS(12059), 1, + [8960] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13098), 1, + ACTIONS(14058), 1, anon_sym_RBRACE, STATE(2648), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99326] = 4, - ACTIONS(11889), 1, + [8974] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13100), 1, + ACTIONS(14060), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99340] = 4, - ACTIONS(11889), 1, + [8988] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13102), 1, + ACTIONS(14062), 1, anon_sym_RBRACE, STATE(2584), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99354] = 4, - ACTIONS(11889), 1, + [9002] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13104), 1, + ACTIONS(14064), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99368] = 4, - ACTIONS(11889), 1, + [9016] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13106), 1, + ACTIONS(14066), 1, anon_sym_RBRACE, STATE(2585), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99382] = 4, - ACTIONS(11913), 1, + [9030] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13108), 1, + ACTIONS(14068), 1, anon_sym_RBRACE, STATE(2655), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99396] = 4, - ACTIONS(11893), 1, + [9044] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13110), 1, + ACTIONS(14070), 1, anon_sym_RBRACE, STATE(2656), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99410] = 4, - ACTIONS(11893), 1, + [9058] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13112), 1, + ACTIONS(14072), 1, anon_sym_RBRACE, STATE(2657), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99424] = 4, - ACTIONS(11889), 1, + [9072] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13114), 1, + ACTIONS(14074), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99438] = 4, - ACTIONS(11965), 1, + [9086] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13116), 1, + ACTIONS(14076), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99452] = 4, - ACTIONS(11965), 1, + [9100] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13118), 1, + ACTIONS(14078), 1, anon_sym_RBRACE, STATE(2659), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99466] = 4, - ACTIONS(11965), 1, + [9114] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13120), 1, + ACTIONS(14080), 1, anon_sym_RBRACE, STATE(2587), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99480] = 4, - ACTIONS(11889), 1, + [9128] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13122), 1, + ACTIONS(14082), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99494] = 4, - ACTIONS(11889), 1, + [9142] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13124), 1, + ACTIONS(14084), 1, anon_sym_RBRACE, STATE(2661), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99508] = 4, - ACTIONS(11889), 1, + [9156] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13126), 1, + ACTIONS(14086), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99522] = 4, - ACTIONS(11889), 1, + [9170] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13128), 1, + ACTIONS(14088), 1, anon_sym_RBRACE, STATE(2662), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99536] = 4, - ACTIONS(11889), 1, + [9184] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13130), 1, + ACTIONS(14090), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99550] = 4, - ACTIONS(11889), 1, + [9198] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13132), 1, + ACTIONS(14092), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99564] = 4, - ACTIONS(11889), 1, + [9212] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13134), 1, + ACTIONS(14094), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99578] = 4, - ACTIONS(11889), 1, + [9226] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13136), 1, + ACTIONS(14096), 1, anon_sym_RBRACE, STATE(2663), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99592] = 4, - ACTIONS(11889), 1, + [9240] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13138), 1, + ACTIONS(14098), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99606] = 4, - ACTIONS(11889), 1, + [9254] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13140), 1, + ACTIONS(14100), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99620] = 4, - ACTIONS(11889), 1, + [9268] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13142), 1, + ACTIONS(14102), 1, anon_sym_RBRACE, STATE(2664), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99634] = 4, - ACTIONS(11889), 1, + [9282] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13144), 1, + ACTIONS(14104), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99648] = 4, - ACTIONS(11889), 1, + [9296] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13146), 1, + ACTIONS(14106), 1, anon_sym_RBRACE, STATE(2665), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99662] = 4, - ACTIONS(11889), 1, + [9310] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13148), 1, + ACTIONS(14108), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99676] = 4, - ACTIONS(11889), 1, + [9324] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13150), 1, + ACTIONS(14110), 1, anon_sym_RBRACE, STATE(2666), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99690] = 4, - ACTIONS(11889), 1, + [9338] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13152), 1, + ACTIONS(14112), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99704] = 4, - ACTIONS(12059), 1, + [9352] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13154), 1, + ACTIONS(14114), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99718] = 4, - ACTIONS(12059), 1, + [9366] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13156), 1, + ACTIONS(14116), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99732] = 4, - ACTIONS(11965), 1, + [9380] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13158), 1, + ACTIONS(14118), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99746] = 4, - ACTIONS(11893), 1, + [9394] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13160), 1, + ACTIONS(14120), 1, anon_sym_RBRACE, STATE(2588), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99760] = 4, - ACTIONS(11893), 1, + [9408] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13162), 1, + ACTIONS(14122), 1, anon_sym_RBRACE, STATE(2589), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99774] = 4, - ACTIONS(11913), 1, + [9422] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13164), 1, + ACTIONS(14124), 1, anon_sym_RBRACE, STATE(2590), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99788] = 4, - ACTIONS(12059), 1, + [9436] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13166), 1, + ACTIONS(14126), 1, anon_sym_RBRACE, STATE(2592), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99802] = 4, - ACTIONS(2188), 1, + [9450] = 4, + ACTIONS(2316), 1, anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(14128), 1, anon_sym_LBRACK, STATE(1013), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99816] = 4, - ACTIONS(11913), 1, + [9464] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13170), 1, + ACTIONS(14130), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99830] = 4, - ACTIONS(11893), 1, + [9478] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13172), 1, + ACTIONS(14132), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99844] = 4, - ACTIONS(11893), 1, + [9492] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13174), 1, + ACTIONS(14134), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99858] = 4, - ACTIONS(12059), 1, + [9506] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13176), 1, + ACTIONS(14136), 1, anon_sym_RBRACE, STATE(2593), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99872] = 4, - ACTIONS(11965), 1, + [9520] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13178), 1, + ACTIONS(14138), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99886] = 4, - ACTIONS(11965), 1, + [9534] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13180), 1, + ACTIONS(14140), 1, anon_sym_RBRACE, STATE(2671), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99900] = 4, - ACTIONS(11889), 1, + [9548] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13182), 1, + ACTIONS(14142), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99914] = 4, - ACTIONS(11889), 1, + [9562] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13184), 1, + ACTIONS(14144), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99928] = 4, - ACTIONS(11889), 1, + [9576] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13186), 1, + ACTIONS(14146), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99942] = 4, - ACTIONS(11889), 1, + [9590] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13188), 1, + ACTIONS(14148), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99956] = 4, - ACTIONS(11889), 1, + [9604] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13190), 1, + ACTIONS(14150), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99970] = 4, - ACTIONS(11889), 1, + [9618] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13192), 1, + ACTIONS(14152), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99984] = 4, - ACTIONS(11893), 1, + [9632] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13194), 1, + ACTIONS(14154), 1, anon_sym_RBRACE, STATE(2316), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [99998] = 4, - ACTIONS(11889), 1, + [9646] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13196), 1, + ACTIONS(14156), 1, anon_sym_RBRACE, STATE(2594), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100012] = 4, - ACTIONS(11889), 1, + [9660] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13198), 1, + ACTIONS(14158), 1, anon_sym_RBRACE, STATE(2598), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100026] = 4, - ACTIONS(11889), 1, + [9674] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13200), 1, + ACTIONS(14160), 1, anon_sym_RBRACE, STATE(2602), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100040] = 4, - ACTIONS(11965), 1, + [9688] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13202), 1, + ACTIONS(14162), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100054] = 4, - ACTIONS(11889), 1, + [9702] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13204), 1, + ACTIONS(14164), 1, anon_sym_RBRACE, STATE(2608), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100068] = 4, - ACTIONS(11889), 1, + [9716] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13206), 1, + ACTIONS(14166), 1, anon_sym_RBRACE, STATE(2611), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100082] = 4, - ACTIONS(11923), 1, + [9730] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(13208), 1, + ACTIONS(14168), 1, anon_sym_RBRACE, STATE(2680), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100096] = 4, - ACTIONS(11889), 1, + [9744] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13210), 1, + ACTIONS(14170), 1, anon_sym_RBRACE, STATE(2615), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100110] = 4, - ACTIONS(11889), 1, + [9758] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13212), 1, + ACTIONS(14172), 1, anon_sym_RBRACE, STATE(2617), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100124] = 4, - ACTIONS(11913), 1, + [9772] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13214), 1, + ACTIONS(14174), 1, anon_sym_RBRACE, STATE(2683), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100138] = 4, - ACTIONS(11889), 1, + [9786] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13216), 1, + ACTIONS(14176), 1, anon_sym_RBRACE, STATE(2620), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100152] = 4, - ACTIONS(11889), 1, + [9800] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13218), 1, + ACTIONS(14178), 1, anon_sym_RBRACE, STATE(2622), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100166] = 4, - ACTIONS(11923), 1, + [9814] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(13220), 1, + ACTIONS(14180), 1, anon_sym_RBRACE, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100180] = 4, - ACTIONS(11889), 1, + [9828] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13222), 1, + ACTIONS(14182), 1, anon_sym_RBRACE, STATE(2627), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100194] = 4, - ACTIONS(11965), 1, + [9842] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13224), 1, + ACTIONS(14184), 1, anon_sym_RBRACE, STATE(2649), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100208] = 4, - ACTIONS(11913), 1, + [9856] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13226), 1, + ACTIONS(14186), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100222] = 4, - ACTIONS(11965), 1, + [9870] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13228), 1, + ACTIONS(14188), 1, anon_sym_RBRACE, STATE(2596), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100236] = 4, - ACTIONS(11923), 1, + [9884] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(13230), 1, + ACTIONS(14190), 1, anon_sym_RBRACK, STATE(2575), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100250] = 4, - ACTIONS(11889), 1, + [9898] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13232), 1, + ACTIONS(14192), 1, anon_sym_RBRACE, STATE(2573), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100264] = 4, - ACTIONS(11913), 1, + [9912] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13234), 1, + ACTIONS(14194), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100278] = 4, - ACTIONS(11923), 1, + [9926] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(13236), 1, + ACTIONS(14196), 1, anon_sym_RBRACE, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100292] = 4, - ACTIONS(11913), 1, + [9940] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13238), 1, + ACTIONS(14198), 1, anon_sym_RBRACE, STATE(2687), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100306] = 4, - ACTIONS(11923), 1, + [9954] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(13240), 1, + ACTIONS(14200), 1, anon_sym_RBRACE, STATE(2688), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100320] = 4, - ACTIONS(11965), 1, + [9968] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13242), 1, + ACTIONS(14202), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100334] = 4, - ACTIONS(11889), 1, + [9982] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13244), 1, + ACTIONS(14204), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100348] = 4, - ACTIONS(11889), 1, + [9996] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13246), 1, + ACTIONS(14206), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100362] = 4, - ACTIONS(11913), 1, + [10010] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13248), 1, + ACTIONS(14208), 1, anon_sym_RBRACE, STATE(2318), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100376] = 4, - ACTIONS(11889), 1, + [10024] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13250), 1, + ACTIONS(14210), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100390] = 4, - ACTIONS(11889), 1, + [10038] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13252), 1, + ACTIONS(14212), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100404] = 4, - ACTIONS(11889), 1, + [10052] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13254), 1, + ACTIONS(14214), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100418] = 4, - ACTIONS(11889), 1, + [10066] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13256), 1, + ACTIONS(14216), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100432] = 4, - ACTIONS(11965), 1, + [10080] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13258), 1, + ACTIONS(14218), 1, anon_sym_RBRACE, STATE(2691), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100446] = 4, - ACTIONS(11965), 1, + [10094] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13260), 1, + ACTIONS(14220), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100460] = 4, - ACTIONS(11893), 1, + [10108] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13262), 1, + ACTIONS(14222), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100474] = 4, - ACTIONS(11893), 1, + [10122] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13264), 1, + ACTIONS(14224), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100488] = 4, - ACTIONS(11913), 1, + [10136] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13266), 1, + ACTIONS(14226), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100502] = 4, - ACTIONS(5872), 1, + [10150] = 4, + ACTIONS(6328), 1, anon_sym_LBRACE, - ACTIONS(13268), 1, + ACTIONS(14228), 1, anon_sym_LBRACK, STATE(1285), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100516] = 4, - ACTIONS(12059), 1, + [10164] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13270), 1, + ACTIONS(14230), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100530] = 4, - ACTIONS(12059), 1, + [10178] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13272), 1, + ACTIONS(14232), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100544] = 4, - ACTIONS(11889), 1, + [10192] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13274), 1, + ACTIONS(14234), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100558] = 4, - ACTIONS(11889), 1, + [10206] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13276), 1, + ACTIONS(14236), 1, anon_sym_RBRACE, STATE(2692), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100572] = 4, - ACTIONS(11889), 1, + [10220] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13278), 1, + ACTIONS(14238), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100586] = 4, - ACTIONS(11889), 1, + [10234] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13280), 1, + ACTIONS(14240), 1, anon_sym_RBRACE, STATE(2693), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100600] = 4, - ACTIONS(11889), 1, + [10248] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13282), 1, + ACTIONS(14242), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100614] = 4, - ACTIONS(11889), 1, + [10262] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13284), 1, + ACTIONS(14244), 1, anon_sym_RBRACE, STATE(2695), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100628] = 4, - ACTIONS(11889), 1, + [10276] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13286), 1, + ACTIONS(14246), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100642] = 4, - ACTIONS(11889), 1, + [10290] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13288), 1, + ACTIONS(14248), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100656] = 4, - ACTIONS(11889), 1, + [10304] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13290), 1, + ACTIONS(14250), 1, anon_sym_RBRACE, STATE(2696), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100670] = 4, - ACTIONS(11889), 1, + [10318] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13292), 1, + ACTIONS(14252), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100684] = 4, - ACTIONS(11889), 1, + [10332] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13294), 1, + ACTIONS(14254), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100698] = 4, - ACTIONS(11889), 1, + [10346] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13296), 1, + ACTIONS(14256), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100712] = 4, - ACTIONS(11889), 1, + [10360] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13298), 1, + ACTIONS(14258), 1, anon_sym_RBRACE, STATE(2697), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100726] = 4, - ACTIONS(11889), 1, + [10374] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13300), 1, + ACTIONS(14260), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100740] = 4, - ACTIONS(11889), 1, + [10388] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13302), 1, + ACTIONS(14262), 1, anon_sym_RBRACE, STATE(2698), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100754] = 4, - ACTIONS(11889), 1, + [10402] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13304), 1, + ACTIONS(14264), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100768] = 4, - ACTIONS(11965), 1, + [10416] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13306), 1, + ACTIONS(14266), 1, anon_sym_RBRACE, STATE(2700), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100782] = 4, - ACTIONS(11965), 1, + [10430] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13308), 1, + ACTIONS(14268), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100796] = 4, - ACTIONS(11893), 1, + [10444] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13310), 1, + ACTIONS(14270), 1, anon_sym_RBRACE, STATE(2701), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100810] = 4, - ACTIONS(11965), 1, + [10458] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13312), 1, + ACTIONS(14272), 1, anon_sym_RBRACE, STATE(2755), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100824] = 4, - ACTIONS(11893), 1, + [10472] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13314), 1, + ACTIONS(14274), 1, anon_sym_RBRACE, STATE(2702), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100838] = 4, - ACTIONS(11889), 1, + [10486] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13316), 1, + ACTIONS(14276), 1, anon_sym_RBRACE, STATE(2758), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100852] = 4, - ACTIONS(11913), 1, + [10500] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13318), 1, + ACTIONS(14278), 1, anon_sym_RBRACE, STATE(2703), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100866] = 4, - ACTIONS(11889), 1, + [10514] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13320), 1, + ACTIONS(14280), 1, anon_sym_RBRACE, STATE(2760), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100880] = 4, - ACTIONS(12059), 1, + [10528] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13322), 1, + ACTIONS(14282), 1, anon_sym_RBRACE, STATE(2705), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100894] = 4, - ACTIONS(11889), 1, + [10542] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13324), 1, + ACTIONS(14284), 1, anon_sym_RBRACE, STATE(2762), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100908] = 4, - ACTIONS(11889), 1, + [10556] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13326), 1, + ACTIONS(14286), 1, anon_sym_RBRACE, STATE(2763), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100922] = 4, - ACTIONS(11889), 1, + [10570] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13328), 1, + ACTIONS(14288), 1, anon_sym_RBRACE, STATE(2764), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100936] = 4, - ACTIONS(12059), 1, + [10584] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13330), 1, + ACTIONS(14290), 1, anon_sym_RBRACE, STATE(2706), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100950] = 4, - ACTIONS(11889), 1, + [10598] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13332), 1, + ACTIONS(14292), 1, anon_sym_RBRACE, STATE(2766), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100964] = 4, - ACTIONS(11889), 1, + [10612] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13334), 1, + ACTIONS(14294), 1, anon_sym_RBRACE, STATE(2767), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100978] = 4, - ACTIONS(11889), 1, + [10626] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13336), 1, + ACTIONS(14296), 1, anon_sym_RBRACE, STATE(2707), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [100992] = 4, - ACTIONS(11889), 1, + [10640] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13338), 1, + ACTIONS(14298), 1, anon_sym_RBRACE, STATE(2769), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101006] = 4, - ACTIONS(11889), 1, + [10654] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13340), 1, + ACTIONS(14300), 1, anon_sym_RBRACE, STATE(2709), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101020] = 4, - ACTIONS(11889), 1, + [10668] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13342), 1, + ACTIONS(14302), 1, anon_sym_RBRACE, STATE(2771), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101034] = 4, - ACTIONS(11889), 1, + [10682] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13344), 1, + ACTIONS(14304), 1, anon_sym_RBRACE, STATE(2711), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101048] = 4, - ACTIONS(11889), 1, + [10696] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13346), 1, + ACTIONS(14306), 1, anon_sym_RBRACE, STATE(2773), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101062] = 4, - ACTIONS(11889), 1, + [10710] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13348), 1, + ACTIONS(14308), 1, anon_sym_RBRACE, STATE(2713), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101076] = 4, - ACTIONS(12059), 1, + [10724] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13350), 1, + ACTIONS(14310), 1, anon_sym_RBRACE, STATE(2774), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101090] = 4, - ACTIONS(12059), 1, + [10738] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13352), 1, + ACTIONS(14312), 1, anon_sym_RBRACE, STATE(2775), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101104] = 4, - ACTIONS(11889), 1, + [10752] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13354), 1, + ACTIONS(14314), 1, anon_sym_RBRACE, STATE(2714), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101118] = 4, - ACTIONS(11889), 1, + [10766] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13356), 1, + ACTIONS(14316), 1, anon_sym_RBRACE, STATE(2716), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101132] = 4, - ACTIONS(11889), 1, + [10780] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13358), 1, + ACTIONS(14318), 1, anon_sym_RBRACE, STATE(2717), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101146] = 4, - ACTIONS(11889), 1, + [10794] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13360), 1, + ACTIONS(14320), 1, anon_sym_RBRACE, STATE(2718), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101160] = 4, - ACTIONS(11913), 1, + [10808] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13362), 1, + ACTIONS(14322), 1, anon_sym_RBRACE, STATE(2782), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101174] = 4, - ACTIONS(11893), 1, + [10822] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13364), 1, + ACTIONS(14324), 1, anon_sym_RBRACE, STATE(2783), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101188] = 4, - ACTIONS(11893), 1, + [10836] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13366), 1, + ACTIONS(14326), 1, anon_sym_RBRACE, STATE(2784), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101202] = 4, - ACTIONS(11889), 1, + [10850] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13368), 1, + ACTIONS(14328), 1, anon_sym_RBRACE, STATE(2571), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101216] = 4, - ACTIONS(11965), 1, + [10864] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13370), 1, + ACTIONS(14330), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101230] = 4, - ACTIONS(11965), 1, + [10878] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13372), 1, + ACTIONS(14332), 1, anon_sym_RBRACE, STATE(2786), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101244] = 4, - ACTIONS(11889), 1, + [10892] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13374), 1, + ACTIONS(14334), 1, anon_sym_RBRACE, STATE(2720), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101258] = 4, - ACTIONS(11889), 1, + [10906] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13376), 1, + ACTIONS(14336), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101272] = 4, - ACTIONS(11889), 1, + [10920] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13378), 1, + ACTIONS(14338), 1, anon_sym_RBRACE, STATE(2788), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101286] = 4, - ACTIONS(11889), 1, + [10934] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13380), 1, + ACTIONS(14340), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101300] = 4, - ACTIONS(11889), 1, + [10948] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13382), 1, + ACTIONS(14342), 1, anon_sym_RBRACE, STATE(2789), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101314] = 4, - ACTIONS(11889), 1, + [10962] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13384), 1, + ACTIONS(14344), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101328] = 4, - ACTIONS(11889), 1, + [10976] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13386), 1, + ACTIONS(14346), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101342] = 4, - ACTIONS(11889), 1, + [10990] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13388), 1, + ACTIONS(14348), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101356] = 4, - ACTIONS(11889), 1, + [11004] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13390), 1, + ACTIONS(14350), 1, anon_sym_RBRACE, STATE(2790), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101370] = 4, - ACTIONS(11889), 1, + [11018] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13392), 1, + ACTIONS(14352), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101384] = 4, - ACTIONS(11889), 1, + [11032] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13394), 1, + ACTIONS(14354), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101398] = 4, - ACTIONS(11889), 1, + [11046] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13396), 1, + ACTIONS(14356), 1, anon_sym_RBRACE, STATE(2791), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101412] = 4, - ACTIONS(11889), 1, + [11060] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13398), 1, + ACTIONS(14358), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101426] = 4, - ACTIONS(11889), 1, + [11074] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13400), 1, + ACTIONS(14360), 1, anon_sym_RBRACE, STATE(2792), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101440] = 4, - ACTIONS(11889), 1, + [11088] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13402), 1, + ACTIONS(14362), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101454] = 4, - ACTIONS(11889), 1, + [11102] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13404), 1, + ACTIONS(14364), 1, anon_sym_RBRACE, STATE(2793), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101468] = 4, - ACTIONS(11889), 1, + [11116] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13406), 1, + ACTIONS(14366), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101482] = 4, - ACTIONS(12059), 1, + [11130] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13408), 1, + ACTIONS(14368), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101496] = 4, - ACTIONS(12059), 1, + [11144] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13410), 1, + ACTIONS(14370), 1, anon_sym_RBRACE, STATE(2185), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101510] = 4, - ACTIONS(11889), 1, + [11158] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13412), 1, + ACTIONS(14372), 1, anon_sym_RBRACE, STATE(2722), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101524] = 4, - ACTIONS(11965), 1, + [11172] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13414), 1, + ACTIONS(14374), 1, anon_sym_RBRACE, STATE(2724), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101538] = 4, - ACTIONS(11889), 1, + [11186] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13416), 1, + ACTIONS(14376), 1, anon_sym_RBRACE, STATE(2569), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101552] = 4, - ACTIONS(11889), 1, + [11200] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13418), 1, + ACTIONS(14378), 1, anon_sym_RBRACE, STATE(2568), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101566] = 4, - ACTIONS(11889), 1, + [11214] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13420), 1, + ACTIONS(14380), 1, anon_sym_RBRACE, STATE(2567), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101580] = 4, - ACTIONS(3806), 1, + [11228] = 4, + ACTIONS(4074), 1, anon_sym_LBRACE, - ACTIONS(13422), 1, + ACTIONS(14382), 1, anon_sym_LBRACK, STATE(1175), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101594] = 4, - ACTIONS(11913), 1, + [11242] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13424), 1, + ACTIONS(14384), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101608] = 4, - ACTIONS(11893), 1, + [11256] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13426), 1, + ACTIONS(14386), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101622] = 4, - ACTIONS(11893), 1, + [11270] = 4, + ACTIONS(12853), 1, anon_sym_COMMA, - ACTIONS(13428), 1, + ACTIONS(14388), 1, anon_sym_RBRACE, STATE(2061), 1, aux_sym_pgf_library_import_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101636] = 4, - ACTIONS(11889), 1, + [11284] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13430), 1, + ACTIONS(14390), 1, anon_sym_RBRACE, STATE(2448), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101650] = 4, - ACTIONS(11965), 1, + [11298] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13432), 1, + ACTIONS(14392), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101664] = 4, - ACTIONS(11965), 1, + [11312] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13434), 1, + ACTIONS(14394), 1, anon_sym_RBRACE, STATE(2798), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101678] = 4, - ACTIONS(11889), 1, + [11326] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13436), 1, + ACTIONS(14396), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101692] = 4, - ACTIONS(11889), 1, + [11340] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13438), 1, + ACTIONS(14398), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101706] = 4, - ACTIONS(11889), 1, + [11354] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13440), 1, + ACTIONS(14400), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101720] = 4, - ACTIONS(11889), 1, + [11368] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13442), 1, + ACTIONS(14402), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101734] = 4, - ACTIONS(11889), 1, + [11382] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13444), 1, + ACTIONS(14404), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101748] = 4, - ACTIONS(11889), 1, + [11396] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13446), 1, + ACTIONS(14406), 1, anon_sym_RBRACE, STATE(2210), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101762] = 4, - ACTIONS(12059), 1, + [11410] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13448), 1, + ACTIONS(14408), 1, anon_sym_RBRACE, STATE(2444), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101776] = 4, - ACTIONS(11889), 1, + [11424] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13450), 1, + ACTIONS(14410), 1, anon_sym_RBRACE, STATE(2470), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101790] = 4, - ACTIONS(11889), 1, + [11438] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13452), 1, + ACTIONS(14412), 1, anon_sym_RBRACE, STATE(2468), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101804] = 4, - ACTIONS(11889), 1, + [11452] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13454), 1, + ACTIONS(14414), 1, anon_sym_RBRACE, STATE(2450), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101818] = 4, - ACTIONS(11965), 1, + [11466] = 4, + ACTIONS(12925), 1, anon_sym_COMMA, - ACTIONS(13456), 1, + ACTIONS(14416), 1, anon_sym_RBRACE, STATE(2312), 1, aux_sym_citation_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101832] = 4, - ACTIONS(11889), 1, + [11480] = 4, + ACTIONS(12849), 1, anon_sym_COMMA, - ACTIONS(13458), 1, + ACTIONS(14418), 1, anon_sym_RBRACE, STATE(2370), 1, aux_sym_package_include_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101846] = 4, - ACTIONS(12059), 1, + [11494] = 4, + ACTIONS(13019), 1, anon_sym_COMMA, - ACTIONS(13460), 1, + ACTIONS(14420), 1, anon_sym_RBRACE, STATE(2445), 1, aux_sym_label_reference_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101860] = 4, - ACTIONS(11923), 1, + [11508] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(13462), 1, + ACTIONS(14422), 1, anon_sym_RBRACE, STATE(2803), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101874] = 4, - ACTIONS(11913), 1, + [11522] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13464), 1, + ACTIONS(14424), 1, anon_sym_RBRACE, STATE(2063), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101888] = 4, - ACTIONS(11923), 1, + [11536] = 4, + ACTIONS(12883), 1, anon_sym_COMMA, - ACTIONS(13466), 1, + ACTIONS(14426), 1, anon_sym_RBRACE, STATE(2010), 1, aux_sym_key_val_options_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101902] = 4, - ACTIONS(11913), 1, + [11550] = 4, + ACTIONS(12873), 1, anon_sym_COMMA, - ACTIONS(13468), 1, + ACTIONS(14428), 1, anon_sym_RBRACE, STATE(2802), 1, aux_sym_color_set_definition_repeat1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101916] = 3, - ACTIONS(13470), 1, + [11564] = 3, + ACTIONS(14430), 1, anon_sym_RBRACE, - ACTIONS(13472), 1, + ACTIONS(14432), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101927] = 3, - ACTIONS(3806), 1, + [11575] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1152), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101938] = 3, + [11586] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(580), 1, @@ -153451,15 +504142,15 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [101949] = 3, - ACTIONS(3806), 1, + [11597] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1150), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101960] = 3, + [11608] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2807), 1, @@ -153467,31 +504158,31 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [101971] = 3, - ACTIONS(3806), 1, + [11619] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1156), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101982] = 3, - ACTIONS(3806), 1, + [11630] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1148), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [101993] = 3, - ACTIONS(3806), 1, + [11641] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1147), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102004] = 3, + [11652] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(517), 1, @@ -153499,55 +504190,55 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [102015] = 3, - ACTIONS(3806), 1, + [11663] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1145), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102026] = 3, - ACTIONS(3806), 1, + [11674] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1144), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102037] = 3, - ACTIONS(5872), 1, + [11685] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(348), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102048] = 3, - ACTIONS(5872), 1, + [11696] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(375), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102059] = 3, - ACTIONS(5872), 1, + [11707] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(394), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102070] = 3, - ACTIONS(5872), 1, + [11718] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(418), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102081] = 3, + [11729] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2813), 1, @@ -153555,7 +504246,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [102092] = 3, + [11740] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(499), 1, @@ -153563,7 +504254,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [102103] = 3, + [11751] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(498), 1, @@ -153571,7 +504262,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [102114] = 3, + [11762] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2821), 1, @@ -153579,55 +504270,55 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [102125] = 3, - ACTIONS(13474), 1, + [11773] = 3, + ACTIONS(14434), 1, anon_sym_RBRACE, - ACTIONS(13476), 1, + ACTIONS(14436), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102136] = 3, - ACTIONS(3806), 1, + [11784] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1135), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102147] = 3, - ACTIONS(13478), 1, + [11795] = 3, + ACTIONS(14438), 1, anon_sym_RBRACE, - ACTIONS(13480), 1, + ACTIONS(14440), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102158] = 3, - ACTIONS(13482), 1, + [11806] = 3, + ACTIONS(14442), 1, anon_sym_RBRACE, - ACTIONS(13484), 1, + ACTIONS(14444), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102169] = 3, - ACTIONS(13486), 1, + [11817] = 3, + ACTIONS(14446), 1, anon_sym_RBRACE, - ACTIONS(13488), 1, + ACTIONS(14448), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102180] = 3, - ACTIONS(3806), 1, + [11828] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1161), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102191] = 3, + [11839] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(521), 1, @@ -153635,367 +504326,367 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [102202] = 3, - ACTIONS(13490), 1, + [11850] = 3, + ACTIONS(14450), 1, anon_sym_RBRACE, - ACTIONS(13492), 1, + ACTIONS(14452), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102213] = 3, - ACTIONS(5872), 1, + [11861] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1369), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102224] = 3, - ACTIONS(13494), 1, + [11872] = 3, + ACTIONS(14454), 1, anon_sym_RBRACE, - ACTIONS(13496), 1, + ACTIONS(14456), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102235] = 3, - ACTIONS(13498), 1, + [11883] = 3, + ACTIONS(14458), 1, anon_sym_RBRACE, - ACTIONS(13500), 1, + ACTIONS(14460), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102246] = 3, - ACTIONS(13502), 1, + [11894] = 3, + ACTIONS(14462), 1, anon_sym_RBRACE, - ACTIONS(13504), 1, + ACTIONS(14464), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102257] = 3, - ACTIONS(13506), 1, + [11905] = 3, + ACTIONS(14466), 1, anon_sym_RBRACE, - ACTIONS(13508), 1, + ACTIONS(14468), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102268] = 3, - ACTIONS(13510), 1, + [11916] = 3, + ACTIONS(14470), 1, anon_sym_RBRACE, - ACTIONS(13512), 1, + ACTIONS(14472), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102279] = 3, - ACTIONS(13514), 1, + [11927] = 3, + ACTIONS(14474), 1, anon_sym_RBRACE, - ACTIONS(13516), 1, + ACTIONS(14476), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102290] = 3, - ACTIONS(13518), 1, + [11938] = 3, + ACTIONS(14478), 1, anon_sym_RBRACE, - ACTIONS(13520), 1, + ACTIONS(14480), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102301] = 3, - ACTIONS(13522), 1, + [11949] = 3, + ACTIONS(14482), 1, anon_sym_RBRACE, - ACTIONS(13524), 1, + ACTIONS(14484), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102312] = 3, - ACTIONS(13526), 1, + [11960] = 3, + ACTIONS(14486), 1, anon_sym_RBRACE, - ACTIONS(13528), 1, + ACTIONS(14488), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102323] = 3, - ACTIONS(13530), 1, + [11971] = 3, + ACTIONS(14490), 1, anon_sym_RBRACE, - ACTIONS(13532), 1, + ACTIONS(14492), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102334] = 3, - ACTIONS(13534), 1, + [11982] = 3, + ACTIONS(14494), 1, anon_sym_RBRACE, - ACTIONS(13536), 1, + ACTIONS(14496), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102345] = 3, - ACTIONS(13538), 1, + [11993] = 3, + ACTIONS(14498), 1, anon_sym_RBRACE, - ACTIONS(13540), 1, + ACTIONS(14500), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102356] = 3, - ACTIONS(13542), 1, + [12004] = 3, + ACTIONS(14502), 1, anon_sym_RBRACE, - ACTIONS(13544), 1, + ACTIONS(14504), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102367] = 3, - ACTIONS(13546), 1, + [12015] = 3, + ACTIONS(14506), 1, anon_sym_RBRACE, - ACTIONS(13548), 1, + ACTIONS(14508), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102378] = 3, - ACTIONS(13550), 1, + [12026] = 3, + ACTIONS(14510), 1, anon_sym_RBRACE, - ACTIONS(13552), 1, + ACTIONS(14512), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102389] = 3, - ACTIONS(13554), 1, + [12037] = 3, + ACTIONS(14514), 1, anon_sym_LBRACK, - ACTIONS(13556), 1, + ACTIONS(14516), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102400] = 3, - ACTIONS(13558), 1, + [12048] = 3, + ACTIONS(14518), 1, anon_sym_LBRACK, - ACTIONS(13560), 1, + ACTIONS(14520), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102411] = 3, - ACTIONS(3806), 1, + [12059] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1178), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102422] = 3, - ACTIONS(13562), 1, + [12070] = 3, + ACTIONS(14522), 1, anon_sym_RBRACE, - ACTIONS(13564), 1, + ACTIONS(14524), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102433] = 3, - ACTIONS(3806), 1, + [12081] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1179), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102444] = 3, - ACTIONS(13566), 1, + [12092] = 3, + ACTIONS(14526), 1, anon_sym_RBRACE, - ACTIONS(13568), 1, + ACTIONS(14528), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102455] = 3, - ACTIONS(3806), 1, + [12103] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1180), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102466] = 3, - ACTIONS(13570), 1, + [12114] = 3, + ACTIONS(14530), 1, anon_sym_RBRACE, - ACTIONS(13572), 1, + ACTIONS(14532), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102477] = 3, - ACTIONS(13574), 1, + [12125] = 3, + ACTIONS(14534), 1, anon_sym_RBRACE, - ACTIONS(13576), 1, + ACTIONS(14536), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102488] = 3, - ACTIONS(13578), 1, + [12136] = 3, + ACTIONS(14538), 1, anon_sym_RBRACE, - ACTIONS(13580), 1, + ACTIONS(14540), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102499] = 3, - ACTIONS(13582), 1, + [12147] = 3, + ACTIONS(14542), 1, anon_sym_LBRACK, - ACTIONS(13584), 1, + ACTIONS(14544), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102510] = 3, - ACTIONS(13586), 1, + [12158] = 3, + ACTIONS(14546), 1, anon_sym_LBRACK, - ACTIONS(13588), 1, + ACTIONS(14548), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102521] = 3, - ACTIONS(13590), 1, + [12169] = 3, + ACTIONS(14550), 1, anon_sym_LBRACK, - ACTIONS(13592), 1, + ACTIONS(14552), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102532] = 3, - ACTIONS(13594), 1, + [12180] = 3, + ACTIONS(14554), 1, anon_sym_RBRACE, - ACTIONS(13596), 1, + ACTIONS(14556), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102543] = 3, - ACTIONS(13598), 1, + [12191] = 3, + ACTIONS(14558), 1, anon_sym_LBRACK, - ACTIONS(13600), 1, + ACTIONS(14560), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102554] = 3, - ACTIONS(13602), 1, + [12202] = 3, + ACTIONS(14562), 1, anon_sym_LBRACK, - ACTIONS(13604), 1, + ACTIONS(14564), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102565] = 3, - ACTIONS(13606), 1, + [12213] = 3, + ACTIONS(14566), 1, anon_sym_RBRACE, - ACTIONS(13608), 1, + ACTIONS(14568), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102576] = 3, - ACTIONS(13610), 1, + [12224] = 3, + ACTIONS(14570), 1, anon_sym_RBRACE, - ACTIONS(13612), 1, + ACTIONS(14572), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102587] = 3, - ACTIONS(13614), 1, + [12235] = 3, + ACTIONS(14574), 1, anon_sym_RBRACE, - ACTIONS(13616), 1, + ACTIONS(14576), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102598] = 3, - ACTIONS(13618), 1, + [12246] = 3, + ACTIONS(14578), 1, anon_sym_RBRACE, - ACTIONS(13620), 1, + ACTIONS(14580), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102609] = 3, - ACTIONS(13622), 1, + [12257] = 3, + ACTIONS(14582), 1, anon_sym_RBRACE, - ACTIONS(13624), 1, + ACTIONS(14584), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102620] = 3, - ACTIONS(13626), 1, + [12268] = 3, + ACTIONS(14586), 1, anon_sym_RBRACE, - ACTIONS(13628), 1, + ACTIONS(14588), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102631] = 3, - ACTIONS(13630), 1, + [12279] = 3, + ACTIONS(14590), 1, anon_sym_LBRACK, - ACTIONS(13632), 1, + ACTIONS(14592), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102642] = 3, - ACTIONS(13634), 1, + [12290] = 3, + ACTIONS(14594), 1, anon_sym_RBRACE, - ACTIONS(13636), 1, + ACTIONS(14596), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102653] = 3, - ACTIONS(13638), 1, + [12301] = 3, + ACTIONS(14598), 1, anon_sym_RBRACE, - ACTIONS(13640), 1, + ACTIONS(14600), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102664] = 3, - ACTIONS(13642), 1, + [12312] = 3, + ACTIONS(14602), 1, anon_sym_LBRACK, - ACTIONS(13644), 1, + ACTIONS(14604), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102675] = 3, - ACTIONS(13646), 1, + [12323] = 3, + ACTIONS(14606), 1, anon_sym_LBRACK, - ACTIONS(13648), 1, + ACTIONS(14608), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102686] = 3, - ACTIONS(13650), 1, + [12334] = 3, + ACTIONS(14610), 1, anon_sym_LBRACK, - ACTIONS(13652), 1, + ACTIONS(14612), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102697] = 3, + [12345] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2822), 1, @@ -154003,23 +504694,23 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [102708] = 3, - ACTIONS(13654), 1, + [12356] = 3, + ACTIONS(14614), 1, anon_sym_RBRACE, - ACTIONS(13656), 1, + ACTIONS(14616), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102719] = 3, - ACTIONS(13658), 1, + [12367] = 3, + ACTIONS(14618), 1, anon_sym_RBRACE, - ACTIONS(13660), 1, + ACTIONS(14620), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102730] = 3, + [12378] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(525), 1, @@ -154027,223 +504718,223 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [102741] = 3, - ACTIONS(284), 1, + [12389] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(254), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102752] = 3, - ACTIONS(284), 1, + [12400] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(272), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102763] = 3, - ACTIONS(284), 1, + [12411] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(295), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102774] = 3, - ACTIONS(13662), 1, + [12422] = 3, + ACTIONS(14622), 1, anon_sym_RBRACE, - ACTIONS(13664), 1, + ACTIONS(14624), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102785] = 3, - ACTIONS(284), 1, + [12433] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(316), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102796] = 3, - ACTIONS(13666), 1, + [12444] = 3, + ACTIONS(14626), 1, anon_sym_RBRACE, - ACTIONS(13668), 1, + ACTIONS(14628), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102807] = 3, - ACTIONS(13670), 1, + [12455] = 3, + ACTIONS(14630), 1, anon_sym_RBRACE, - ACTIONS(13672), 1, + ACTIONS(14632), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102818] = 3, - ACTIONS(13674), 1, + [12466] = 3, + ACTIONS(14634), 1, anon_sym_RBRACE, - ACTIONS(13676), 1, + ACTIONS(14636), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102829] = 3, - ACTIONS(13678), 1, + [12477] = 3, + ACTIONS(14638), 1, anon_sym_RBRACE, - ACTIONS(13680), 1, + ACTIONS(14640), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102840] = 3, - ACTIONS(13682), 1, + [12488] = 3, + ACTIONS(14642), 1, anon_sym_RBRACE, - ACTIONS(13684), 1, + ACTIONS(14644), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102851] = 3, - ACTIONS(13686), 1, + [12499] = 3, + ACTIONS(14646), 1, anon_sym_RBRACE, - ACTIONS(13688), 1, + ACTIONS(14648), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102862] = 3, - ACTIONS(13690), 1, + [12510] = 3, + ACTIONS(14650), 1, anon_sym_RBRACE, - ACTIONS(13692), 1, + ACTIONS(14652), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102873] = 3, - ACTIONS(13694), 1, + [12521] = 3, + ACTIONS(14654), 1, anon_sym_RBRACE, - ACTIONS(13696), 1, + ACTIONS(14656), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102884] = 3, - ACTIONS(13698), 1, + [12532] = 3, + ACTIONS(14658), 1, anon_sym_RBRACE, - ACTIONS(13700), 1, + ACTIONS(14660), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102895] = 3, - ACTIONS(13702), 1, + [12543] = 3, + ACTIONS(14662), 1, anon_sym_RBRACE, - ACTIONS(13704), 1, + ACTIONS(14664), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102906] = 3, - ACTIONS(13706), 1, + [12554] = 3, + ACTIONS(14666), 1, anon_sym_RBRACE, - ACTIONS(13708), 1, + ACTIONS(14668), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102917] = 3, - ACTIONS(13710), 1, + [12565] = 3, + ACTIONS(14670), 1, anon_sym_RBRACE, - ACTIONS(13712), 1, + ACTIONS(14672), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102928] = 3, - ACTIONS(13714), 1, + [12576] = 3, + ACTIONS(14674), 1, anon_sym_RBRACE, - ACTIONS(13716), 1, + ACTIONS(14676), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102939] = 3, - ACTIONS(13718), 1, + [12587] = 3, + ACTIONS(14678), 1, anon_sym_RBRACE, - ACTIONS(13720), 1, + ACTIONS(14680), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102950] = 3, - ACTIONS(13722), 1, + [12598] = 3, + ACTIONS(14682), 1, anon_sym_RBRACE, - ACTIONS(13724), 1, + ACTIONS(14684), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102961] = 3, - ACTIONS(3806), 1, + [12609] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1224), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102972] = 3, - ACTIONS(284), 1, + [12620] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(330), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102983] = 3, - ACTIONS(5872), 1, + [12631] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1290), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [102994] = 3, - ACTIONS(5872), 1, + [12642] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1289), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103005] = 3, - ACTIONS(5872), 1, + [12653] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1288), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103016] = 3, - ACTIONS(284), 1, + [12664] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(342), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103027] = 3, - ACTIONS(284), 1, + [12675] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(371), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103038] = 3, + [12686] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(496), 1, @@ -154251,54 +504942,54 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103049] = 2, + [12697] = 2, ACTIONS(3), 2, sym__whitespace, sym__comment, - ACTIONS(13726), 2, + ACTIONS(14686), 2, anon_sym_RBRACE, anon_sym_COMMA, - [103058] = 3, - ACTIONS(284), 1, + [12706] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(956), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103069] = 3, - ACTIONS(13728), 1, + [12717] = 3, + ACTIONS(14688), 1, anon_sym_RBRACE, - ACTIONS(13730), 1, + ACTIONS(14690), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103080] = 3, - ACTIONS(13732), 1, + [12728] = 3, + ACTIONS(14692), 1, anon_sym_RBRACE, - ACTIONS(13734), 1, + ACTIONS(14694), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103091] = 3, - ACTIONS(13736), 1, + [12739] = 3, + ACTIONS(14696), 1, anon_sym_RBRACE, - ACTIONS(13738), 1, + ACTIONS(14698), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103102] = 3, - ACTIONS(13740), 1, + [12750] = 3, + ACTIONS(14700), 1, anon_sym_RBRACE, - ACTIONS(13742), 1, + ACTIONS(14702), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103113] = 3, + [12761] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3435), 1, @@ -154306,7 +504997,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103124] = 3, + [12772] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3434), 1, @@ -154314,7 +505005,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103135] = 3, + [12783] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(230), 1, @@ -154322,7 +505013,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103146] = 3, + [12794] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3432), 1, @@ -154330,63 +505021,63 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103157] = 3, - ACTIONS(3806), 1, + [12805] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(402), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103168] = 3, - ACTIONS(3806), 1, + [12816] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(361), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103179] = 3, - ACTIONS(13744), 1, + [12827] = 3, + ACTIONS(14704), 1, anon_sym_RBRACE, - ACTIONS(13746), 1, + ACTIONS(14706), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103190] = 3, - ACTIONS(5872), 1, + [12838] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1269), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103201] = 3, - ACTIONS(13748), 1, + [12849] = 3, + ACTIONS(14708), 1, anon_sym_RBRACE, - ACTIONS(13750), 1, + ACTIONS(14710), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103212] = 3, - ACTIONS(5872), 1, + [12860] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1267), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103223] = 3, - ACTIONS(3806), 1, + [12871] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(354), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103234] = 3, + [12882] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3431), 1, @@ -154394,7 +505085,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103245] = 3, + [12893] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3425), 1, @@ -154402,23 +505093,23 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103256] = 3, - ACTIONS(3806), 1, + [12904] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(327), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103267] = 3, - ACTIONS(5872), 1, + [12915] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1265), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103278] = 3, + [12926] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3422), 1, @@ -154426,47 +505117,47 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103289] = 3, - ACTIONS(3806), 1, + [12937] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(314), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103300] = 3, - ACTIONS(5872), 1, + [12948] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1259), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103311] = 3, - ACTIONS(5872), 1, + [12959] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1275), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103322] = 3, - ACTIONS(2188), 1, + [12970] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(977), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103333] = 3, - ACTIONS(5872), 1, + [12981] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1307), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103344] = 3, + [12992] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3417), 1, @@ -154474,31 +505165,31 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103355] = 3, - ACTIONS(2188), 1, + [13003] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(979), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103366] = 3, - ACTIONS(5872), 1, + [13014] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1335), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103377] = 3, - ACTIONS(5872), 1, + [13025] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1341), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103388] = 3, + [13036] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3415), 1, @@ -154506,295 +505197,295 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103399] = 3, - ACTIONS(5872), 1, + [13047] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1343), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103410] = 3, - ACTIONS(5872), 1, + [13058] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(1350), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103421] = 3, - ACTIONS(7092), 1, + [13069] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(395), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103432] = 3, - ACTIONS(7092), 1, + [13080] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(411), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103443] = 3, - ACTIONS(7092), 1, + [13091] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(425), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103454] = 3, - ACTIONS(13752), 1, + [13102] = 3, + ACTIONS(14712), 1, anon_sym_RBRACE, - ACTIONS(13754), 1, + ACTIONS(14714), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103465] = 3, - ACTIONS(2188), 1, + [13113] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(981), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103476] = 3, - ACTIONS(13756), 1, + [13124] = 3, + ACTIONS(14716), 1, anon_sym_LBRACK, - ACTIONS(13758), 1, + ACTIONS(14718), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103487] = 3, - ACTIONS(13760), 1, + [13135] = 3, + ACTIONS(14720), 1, anon_sym_RBRACE, - ACTIONS(13762), 1, + ACTIONS(14722), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103498] = 3, - ACTIONS(13764), 1, + [13146] = 3, + ACTIONS(14724), 1, anon_sym_RBRACE, - ACTIONS(13766), 1, + ACTIONS(14726), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103509] = 3, - ACTIONS(2188), 1, + [13157] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(982), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103520] = 3, - ACTIONS(13768), 1, + [13168] = 3, + ACTIONS(14728), 1, anon_sym_RBRACE, - ACTIONS(13770), 1, + ACTIONS(14730), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103531] = 3, - ACTIONS(13772), 1, + [13179] = 3, + ACTIONS(14732), 1, anon_sym_RBRACE, - ACTIONS(13774), 1, + ACTIONS(14734), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103542] = 3, - ACTIONS(13776), 1, + [13190] = 3, + ACTIONS(14736), 1, anon_sym_RBRACE, - ACTIONS(13778), 1, + ACTIONS(14738), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103553] = 3, - ACTIONS(13780), 1, + [13201] = 3, + ACTIONS(14740), 1, anon_sym_RBRACE, - ACTIONS(13782), 1, + ACTIONS(14742), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103564] = 3, - ACTIONS(13784), 1, + [13212] = 3, + ACTIONS(14744), 1, anon_sym_RBRACE, - ACTIONS(13786), 1, + ACTIONS(14746), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103575] = 3, - ACTIONS(13788), 1, + [13223] = 3, + ACTIONS(14748), 1, anon_sym_RBRACE, - ACTIONS(13790), 1, + ACTIONS(14750), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103586] = 3, - ACTIONS(7092), 1, + [13234] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1505), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103597] = 3, - ACTIONS(13792), 1, + [13245] = 3, + ACTIONS(14752), 1, anon_sym_RBRACE, - ACTIONS(13794), 1, + ACTIONS(14754), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103608] = 3, - ACTIONS(13796), 1, + [13256] = 3, + ACTIONS(14756), 1, anon_sym_RBRACE, - ACTIONS(13798), 1, + ACTIONS(14758), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103619] = 3, - ACTIONS(13800), 1, + [13267] = 3, + ACTIONS(14760), 1, anon_sym_RBRACE, - ACTIONS(13802), 1, + ACTIONS(14762), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103630] = 3, - ACTIONS(13804), 1, + [13278] = 3, + ACTIONS(14764), 1, anon_sym_RBRACE, - ACTIONS(13806), 1, + ACTIONS(14766), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103641] = 3, - ACTIONS(13808), 1, + [13289] = 3, + ACTIONS(14768), 1, anon_sym_RBRACE, - ACTIONS(13810), 1, + ACTIONS(14770), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103652] = 3, - ACTIONS(13812), 1, + [13300] = 3, + ACTIONS(14772), 1, anon_sym_RBRACE, - ACTIONS(13814), 1, + ACTIONS(14774), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103663] = 3, - ACTIONS(13816), 1, + [13311] = 3, + ACTIONS(14776), 1, anon_sym_RBRACE, - ACTIONS(13818), 1, + ACTIONS(14778), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103674] = 3, - ACTIONS(13820), 1, + [13322] = 3, + ACTIONS(14780), 1, anon_sym_RBRACE, - ACTIONS(13822), 1, + ACTIONS(14782), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103685] = 3, - ACTIONS(13824), 1, + [13333] = 3, + ACTIONS(14784), 1, anon_sym_RBRACE, - ACTIONS(13826), 1, + ACTIONS(14786), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103696] = 3, - ACTIONS(13828), 1, + [13344] = 3, + ACTIONS(14788), 1, anon_sym_RBRACE, - ACTIONS(13830), 1, + ACTIONS(14790), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103707] = 3, - ACTIONS(13832), 1, + [13355] = 3, + ACTIONS(14792), 1, anon_sym_RBRACE, - ACTIONS(13834), 1, + ACTIONS(14794), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103718] = 3, - ACTIONS(13836), 1, + [13366] = 3, + ACTIONS(14796), 1, anon_sym_RBRACE, - ACTIONS(13838), 1, + ACTIONS(14798), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103729] = 3, - ACTIONS(13840), 1, + [13377] = 3, + ACTIONS(14800), 1, anon_sym_RBRACE, - ACTIONS(13842), 1, + ACTIONS(14802), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103740] = 3, - ACTIONS(13844), 1, + [13388] = 3, + ACTIONS(14804), 1, anon_sym_RBRACE, - ACTIONS(13846), 1, + ACTIONS(14806), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103751] = 3, - ACTIONS(13848), 1, + [13399] = 3, + ACTIONS(14808), 1, anon_sym_RBRACE, - ACTIONS(13850), 1, + ACTIONS(14810), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103762] = 3, - ACTIONS(13852), 1, + [13410] = 3, + ACTIONS(14812), 1, anon_sym_RBRACE, - ACTIONS(13854), 1, + ACTIONS(14814), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103773] = 3, - ACTIONS(13856), 1, + [13421] = 3, + ACTIONS(14816), 1, anon_sym_RBRACE, - ACTIONS(13858), 1, + ACTIONS(14818), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103784] = 3, - ACTIONS(13860), 1, + [13432] = 3, + ACTIONS(14820), 1, anon_sym_RBRACE, - ACTIONS(13862), 1, + ACTIONS(14822), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103795] = 3, + [13443] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3313), 1, @@ -154802,7 +505493,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103806] = 3, + [13454] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3312), 1, @@ -154810,55 +505501,55 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103817] = 3, - ACTIONS(13864), 1, + [13465] = 3, + ACTIONS(14824), 1, anon_sym_RBRACE, - ACTIONS(13866), 1, + ACTIONS(14826), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103828] = 3, - ACTIONS(2188), 1, + [13476] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(985), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103839] = 3, - ACTIONS(13868), 1, + [13487] = 3, + ACTIONS(14828), 1, anon_sym_RBRACE, - ACTIONS(13870), 1, + ACTIONS(14830), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103850] = 3, - ACTIONS(2188), 1, + [13498] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(987), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103861] = 3, - ACTIONS(13872), 1, + [13509] = 3, + ACTIONS(14832), 1, anon_sym_RBRACE, - ACTIONS(13874), 1, + ACTIONS(14834), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103872] = 3, - ACTIONS(2188), 1, + [13520] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(988), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103883] = 3, + [13531] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(250), 1, @@ -154866,23 +505557,23 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103894] = 3, - ACTIONS(2188), 1, + [13542] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(991), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103905] = 3, - ACTIONS(13876), 1, + [13553] = 3, + ACTIONS(14836), 1, anon_sym_RBRACE, - ACTIONS(13878), 1, + ACTIONS(14838), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103916] = 3, + [13564] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3310), 1, @@ -154890,7 +505581,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103927] = 3, + [13575] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3309), 1, @@ -154898,55 +505589,55 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [103938] = 3, - ACTIONS(13880), 1, + [13586] = 3, + ACTIONS(14840), 1, anon_sym_RBRACE, - ACTIONS(13882), 1, + ACTIONS(14842), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103949] = 3, - ACTIONS(2188), 1, + [13597] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(996), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103960] = 3, - ACTIONS(13884), 1, + [13608] = 3, + ACTIONS(14844), 1, anon_sym_RBRACE, - ACTIONS(13886), 1, + ACTIONS(14846), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103971] = 3, - ACTIONS(13888), 1, + [13619] = 3, + ACTIONS(14848), 1, anon_sym_RBRACE, - ACTIONS(13890), 1, + ACTIONS(14850), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103982] = 3, - ACTIONS(13892), 1, + [13630] = 3, + ACTIONS(14852), 1, anon_sym_RBRACE, - ACTIONS(13894), 1, + ACTIONS(14854), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [103993] = 3, - ACTIONS(2188), 1, + [13641] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(998), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104004] = 3, + [13652] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3303), 1, @@ -154954,7 +505645,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104015] = 3, + [13663] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3300), 1, @@ -154962,7 +505653,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104026] = 3, + [13674] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3295), 1, @@ -154970,7 +505661,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104037] = 3, + [13685] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3293), 1, @@ -154978,86 +505669,86 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104048] = 3, - ACTIONS(13896), 1, + [13696] = 3, + ACTIONS(14856), 1, anon_sym_RBRACE, - ACTIONS(13898), 1, + ACTIONS(14858), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104059] = 3, - ACTIONS(13900), 1, + [13707] = 3, + ACTIONS(14860), 1, anon_sym_LBRACK, - ACTIONS(13902), 1, + ACTIONS(14862), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104070] = 3, - ACTIONS(13904), 1, + [13718] = 3, + ACTIONS(14864), 1, anon_sym_RBRACE, - ACTIONS(13906), 1, + ACTIONS(14866), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104081] = 3, - ACTIONS(13908), 1, + [13729] = 3, + ACTIONS(14868), 1, anon_sym_RBRACE, - ACTIONS(13910), 1, + ACTIONS(14870), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104092] = 3, - ACTIONS(2188), 1, + [13740] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(1016), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104103] = 3, - ACTIONS(2188), 1, + [13751] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(1017), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104114] = 2, + [13762] = 2, ACTIONS(3), 2, sym__whitespace, sym__comment, - ACTIONS(13912), 2, + ACTIONS(14872), 2, anon_sym_RBRACE, anon_sym_COMMA, - [104123] = 3, - ACTIONS(2188), 1, + [13771] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(1018), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104134] = 3, - ACTIONS(13914), 1, + [13782] = 3, + ACTIONS(14874), 1, anon_sym_RBRACE, - ACTIONS(13916), 1, + ACTIONS(14876), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104145] = 3, - ACTIONS(13918), 1, + [13793] = 3, + ACTIONS(14878), 1, anon_sym_RBRACE, - ACTIONS(13920), 1, + ACTIONS(14880), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104156] = 3, + [13804] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2879), 1, @@ -155065,7 +505756,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104167] = 3, + [13815] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(518), 1, @@ -155073,23 +505764,23 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104178] = 3, - ACTIONS(13922), 1, + [13826] = 3, + ACTIONS(14882), 1, anon_sym_RBRACE, - ACTIONS(13924), 1, + ACTIONS(14884), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104189] = 3, - ACTIONS(13926), 1, + [13837] = 3, + ACTIONS(14886), 1, anon_sym_RBRACE, - ACTIONS(13928), 1, + ACTIONS(14888), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104200] = 3, + [13848] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3190), 1, @@ -155097,7 +505788,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104211] = 3, + [13859] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3189), 1, @@ -155105,63 +505796,63 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104222] = 3, - ACTIONS(13930), 1, + [13870] = 3, + ACTIONS(14890), 1, anon_sym_RBRACE, - ACTIONS(13932), 1, + ACTIONS(14892), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104233] = 3, - ACTIONS(13934), 1, + [13881] = 3, + ACTIONS(14894), 1, anon_sym_RBRACE, - ACTIONS(13936), 1, + ACTIONS(14896), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104244] = 3, - ACTIONS(13938), 1, + [13892] = 3, + ACTIONS(14898), 1, anon_sym_RBRACE, - ACTIONS(13940), 1, + ACTIONS(14900), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104255] = 3, - ACTIONS(13942), 1, + [13903] = 3, + ACTIONS(14902), 1, anon_sym_RBRACE, - ACTIONS(13944), 1, + ACTIONS(14904), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104266] = 3, - ACTIONS(13946), 1, + [13914] = 3, + ACTIONS(14906), 1, anon_sym_RBRACE, - ACTIONS(13948), 1, + ACTIONS(14908), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104277] = 3, - ACTIONS(13950), 1, + [13925] = 3, + ACTIONS(14910), 1, anon_sym_RBRACE, - ACTIONS(13952), 1, + ACTIONS(14912), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104288] = 3, - ACTIONS(13954), 1, + [13936] = 3, + ACTIONS(14914), 1, anon_sym_RBRACE, - ACTIONS(13956), 1, + ACTIONS(14916), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104299] = 3, + [13947] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(55), 1, @@ -155169,7 +505860,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104310] = 3, + [13958] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3187), 1, @@ -155177,55 +505868,55 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104321] = 3, - ACTIONS(13958), 1, + [13969] = 3, + ACTIONS(14918), 1, anon_sym_RBRACE, - ACTIONS(13960), 1, + ACTIONS(14920), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104332] = 3, - ACTIONS(13962), 1, + [13980] = 3, + ACTIONS(14922), 1, anon_sym_RBRACE, - ACTIONS(13964), 1, + ACTIONS(14924), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104343] = 3, - ACTIONS(13966), 1, + [13991] = 3, + ACTIONS(14926), 1, anon_sym_RBRACE, - ACTIONS(13968), 1, + ACTIONS(14928), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104354] = 3, - ACTIONS(7092), 1, + [14002] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1431), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104365] = 3, - ACTIONS(7092), 1, + [14013] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1430), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104376] = 3, - ACTIONS(7092), 1, + [14024] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1429), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104387] = 3, + [14035] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3186), 1, @@ -155233,7 +505924,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104398] = 3, + [14046] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3180), 1, @@ -155241,39 +505932,39 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104409] = 3, - ACTIONS(13970), 1, + [14057] = 3, + ACTIONS(14930), 1, anon_sym_RBRACE, - ACTIONS(13972), 1, + ACTIONS(14932), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104420] = 3, - ACTIONS(13974), 1, + [14068] = 3, + ACTIONS(14934), 1, anon_sym_RBRACE, - ACTIONS(13976), 1, + ACTIONS(14936), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104431] = 3, - ACTIONS(13978), 1, + [14079] = 3, + ACTIONS(14938), 1, anon_sym_RBRACE, - ACTIONS(13980), 1, + ACTIONS(14940), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104442] = 3, - ACTIONS(13982), 1, + [14090] = 3, + ACTIONS(14942), 1, anon_sym_RBRACE, - ACTIONS(13984), 1, + ACTIONS(14944), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104453] = 3, + [14101] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3177), 1, @@ -155281,71 +505972,71 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104464] = 3, - ACTIONS(13986), 1, + [14112] = 3, + ACTIONS(14946), 1, anon_sym_RBRACE, - ACTIONS(13988), 1, + ACTIONS(14948), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104475] = 3, - ACTIONS(13990), 1, + [14123] = 3, + ACTIONS(14950), 1, anon_sym_RBRACE, - ACTIONS(13992), 1, + ACTIONS(14952), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104486] = 3, - ACTIONS(13994), 1, + [14134] = 3, + ACTIONS(14954), 1, anon_sym_RBRACE, - ACTIONS(13996), 1, + ACTIONS(14956), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104497] = 3, - ACTIONS(13998), 1, + [14145] = 3, + ACTIONS(14958), 1, anon_sym_RBRACE, - ACTIONS(14000), 1, + ACTIONS(14960), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104508] = 3, - ACTIONS(14002), 1, + [14156] = 3, + ACTIONS(14962), 1, anon_sym_RBRACE, - ACTIONS(14004), 1, + ACTIONS(14964), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104519] = 3, - ACTIONS(14006), 1, + [14167] = 3, + ACTIONS(14966), 1, anon_sym_RBRACE, - ACTIONS(14008), 1, + ACTIONS(14968), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104530] = 3, - ACTIONS(14010), 1, + [14178] = 3, + ACTIONS(14970), 1, anon_sym_RBRACE, - ACTIONS(14012), 1, + ACTIONS(14972), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104541] = 3, - ACTIONS(14014), 1, + [14189] = 3, + ACTIONS(14974), 1, anon_sym_RBRACE, - ACTIONS(14016), 1, + ACTIONS(14976), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104552] = 3, + [14200] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3172), 1, @@ -155353,39 +506044,39 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104563] = 3, - ACTIONS(7092), 1, + [14211] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1413), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104574] = 3, - ACTIONS(14018), 1, + [14222] = 3, + ACTIONS(14978), 1, anon_sym_RBRACE, - ACTIONS(14020), 1, + ACTIONS(14980), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104585] = 3, - ACTIONS(7092), 1, + [14233] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1412), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104596] = 3, - ACTIONS(2188), 1, + [14244] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(1074), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104607] = 3, + [14255] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3170), 1, @@ -155393,159 +506084,159 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104618] = 3, - ACTIONS(14022), 1, + [14266] = 3, + ACTIONS(14982), 1, anon_sym_RBRACE, - ACTIONS(14024), 1, + ACTIONS(14984), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104629] = 3, - ACTIONS(14026), 1, + [14277] = 3, + ACTIONS(14986), 1, anon_sym_RBRACE, - ACTIONS(14028), 1, + ACTIONS(14988), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104640] = 3, - ACTIONS(7092), 1, + [14288] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1407), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104651] = 3, - ACTIONS(14030), 1, + [14299] = 3, + ACTIONS(14990), 1, anon_sym_LBRACK, - ACTIONS(14032), 1, + ACTIONS(14992), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104662] = 3, - ACTIONS(14034), 1, + [14310] = 3, + ACTIONS(14994), 1, anon_sym_RBRACE, - ACTIONS(14036), 1, + ACTIONS(14996), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104673] = 3, - ACTIONS(7092), 1, + [14321] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1405), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104684] = 3, - ACTIONS(7092), 1, + [14332] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1404), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104695] = 3, - ACTIONS(14038), 1, + [14343] = 3, + ACTIONS(14998), 1, anon_sym_RBRACE, - ACTIONS(14040), 1, + ACTIONS(15000), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104706] = 3, - ACTIONS(7092), 1, + [14354] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1402), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104717] = 3, - ACTIONS(14042), 1, + [14365] = 3, + ACTIONS(15002), 1, anon_sym_RBRACE, - ACTIONS(14044), 1, + ACTIONS(15004), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104728] = 3, - ACTIONS(2188), 1, + [14376] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(379), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104739] = 3, - ACTIONS(7092), 1, + [14387] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1400), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104750] = 3, - ACTIONS(7092), 1, + [14398] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1399), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104761] = 3, - ACTIONS(14046), 1, + [14409] = 3, + ACTIONS(15006), 1, anon_sym_RBRACE, - ACTIONS(14048), 1, + ACTIONS(15008), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104772] = 3, - ACTIONS(7092), 1, + [14420] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1397), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104783] = 3, - ACTIONS(7092), 1, + [14431] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(1396), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104794] = 3, - ACTIONS(9023), 1, + [14442] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(426), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104805] = 3, - ACTIONS(9023), 1, + [14453] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(438), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104816] = 3, - ACTIONS(14050), 1, + [14464] = 3, + ACTIONS(15010), 1, anon_sym_RBRACE, - ACTIONS(14052), 1, + ACTIONS(15012), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104827] = 3, + [14475] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3066), 1, @@ -155553,7 +506244,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104838] = 3, + [14486] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3065), 1, @@ -155561,7 +506252,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104849] = 3, + [14497] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(280), 1, @@ -155569,7 +506260,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104860] = 3, + [14508] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3063), 1, @@ -155577,7 +506268,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104871] = 3, + [14519] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3062), 1, @@ -155585,7 +506276,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104882] = 3, + [14530] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3056), 1, @@ -155593,7 +506284,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104893] = 3, + [14541] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3053), 1, @@ -155601,7 +506292,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104904] = 3, + [14552] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3048), 1, @@ -155609,7 +506300,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104915] = 3, + [14563] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3046), 1, @@ -155617,327 +506308,327 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [104926] = 3, - ACTIONS(14054), 1, + [14574] = 3, + ACTIONS(15014), 1, anon_sym_RBRACE, - ACTIONS(14056), 1, + ACTIONS(15016), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104937] = 3, - ACTIONS(14058), 1, + [14585] = 3, + ACTIONS(15018), 1, anon_sym_LBRACK, - ACTIONS(14060), 1, + ACTIONS(15020), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104948] = 3, - ACTIONS(9023), 1, + [14596] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1622), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104959] = 3, - ACTIONS(14062), 1, + [14607] = 3, + ACTIONS(15022), 1, anon_sym_RBRACE, - ACTIONS(14064), 1, + ACTIONS(15024), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104970] = 3, - ACTIONS(14066), 1, + [14618] = 3, + ACTIONS(15026), 1, anon_sym_RBRACE, - ACTIONS(14068), 1, + ACTIONS(15028), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104981] = 3, - ACTIONS(14070), 1, + [14629] = 3, + ACTIONS(15030), 1, anon_sym_RBRACE, - ACTIONS(14072), 1, + ACTIONS(15032), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [104992] = 3, - ACTIONS(14074), 1, + [14640] = 3, + ACTIONS(15034), 1, anon_sym_RBRACE, - ACTIONS(14076), 1, + ACTIONS(15036), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105003] = 3, - ACTIONS(14078), 1, + [14651] = 3, + ACTIONS(15038), 1, anon_sym_RBRACE, - ACTIONS(14080), 1, + ACTIONS(15040), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105014] = 3, - ACTIONS(14082), 1, + [14662] = 3, + ACTIONS(15042), 1, anon_sym_RBRACE, - ACTIONS(14084), 1, + ACTIONS(15044), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105025] = 3, - ACTIONS(14086), 1, + [14673] = 3, + ACTIONS(15046), 1, anon_sym_RBRACE, - ACTIONS(14088), 1, + ACTIONS(15048), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105036] = 3, - ACTIONS(14090), 1, + [14684] = 3, + ACTIONS(15050), 1, anon_sym_RBRACE, - ACTIONS(14092), 1, + ACTIONS(15052), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105047] = 3, - ACTIONS(14094), 1, + [14695] = 3, + ACTIONS(15054), 1, anon_sym_RBRACE, - ACTIONS(14096), 1, + ACTIONS(15056), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105058] = 3, - ACTIONS(14098), 1, + [14706] = 3, + ACTIONS(15058), 1, anon_sym_RBRACE, - ACTIONS(14100), 1, + ACTIONS(15060), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105069] = 3, - ACTIONS(14102), 1, + [14717] = 3, + ACTIONS(15062), 1, anon_sym_RBRACE, - ACTIONS(14104), 1, + ACTIONS(15064), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105080] = 3, - ACTIONS(14106), 1, + [14728] = 3, + ACTIONS(15066), 1, anon_sym_RBRACE, - ACTIONS(14108), 1, + ACTIONS(15068), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105091] = 3, - ACTIONS(14110), 1, + [14739] = 3, + ACTIONS(15070), 1, anon_sym_RBRACE, - ACTIONS(14112), 1, + ACTIONS(15072), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105102] = 3, - ACTIONS(14114), 1, + [14750] = 3, + ACTIONS(15074), 1, anon_sym_RBRACE, - ACTIONS(14116), 1, + ACTIONS(15076), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105113] = 3, - ACTIONS(14118), 1, + [14761] = 3, + ACTIONS(15078), 1, anon_sym_RBRACE, - ACTIONS(14120), 1, + ACTIONS(15080), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105124] = 3, - ACTIONS(14122), 1, + [14772] = 3, + ACTIONS(15082), 1, anon_sym_RBRACE, - ACTIONS(14124), 1, + ACTIONS(15084), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105135] = 3, - ACTIONS(14126), 1, + [14783] = 3, + ACTIONS(15086), 1, anon_sym_RBRACE, - ACTIONS(14128), 1, + ACTIONS(15088), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105146] = 3, - ACTIONS(284), 1, + [14794] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(946), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105157] = 3, - ACTIONS(14130), 1, + [14805] = 3, + ACTIONS(15090), 1, anon_sym_RBRACE, - ACTIONS(14132), 1, + ACTIONS(15092), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105168] = 3, - ACTIONS(2188), 1, + [14816] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(343), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105179] = 3, - ACTIONS(14134), 1, + [14827] = 3, + ACTIONS(15094), 1, anon_sym_RBRACE, - ACTIONS(14136), 1, + ACTIONS(15096), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105190] = 3, - ACTIONS(2188), 1, + [14838] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(339), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105201] = 3, - ACTIONS(14138), 1, + [14849] = 3, + ACTIONS(15098), 1, anon_sym_RBRACE, - ACTIONS(14140), 1, + ACTIONS(15100), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105212] = 3, - ACTIONS(2188), 1, + [14860] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(312), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105223] = 3, - ACTIONS(14142), 1, + [14871] = 3, + ACTIONS(15102), 1, anon_sym_RBRACE, - ACTIONS(14144), 1, + ACTIONS(15104), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105234] = 3, - ACTIONS(2188), 1, + [14882] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(286), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105245] = 3, - ACTIONS(2188), 1, + [14893] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(274), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105256] = 3, - ACTIONS(10836), 1, + [14904] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1986), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105267] = 3, - ACTIONS(14146), 1, + [14915] = 3, + ACTIONS(15106), 1, anon_sym_RBRACE, - ACTIONS(14148), 1, + ACTIONS(15108), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105278] = 3, - ACTIONS(10836), 1, + [14926] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1953), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105289] = 3, - ACTIONS(284), 1, + [14937] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(945), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105300] = 3, - ACTIONS(14150), 1, + [14948] = 3, + ACTIONS(15110), 1, anon_sym_RBRACE, - ACTIONS(14152), 1, + ACTIONS(15112), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105311] = 3, - ACTIONS(10836), 1, + [14959] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1899), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105322] = 3, - ACTIONS(14154), 1, + [14970] = 3, + ACTIONS(15114), 1, anon_sym_RBRACE, - ACTIONS(14156), 1, + ACTIONS(15116), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105333] = 3, - ACTIONS(10836), 1, + [14981] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1905), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105344] = 3, - ACTIONS(14158), 1, + [14992] = 3, + ACTIONS(15118), 1, anon_sym_RBRACE, - ACTIONS(14160), 1, + ACTIONS(15120), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105355] = 3, - ACTIONS(284), 1, + [15003] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(944), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105366] = 3, + [15014] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2941), 1, @@ -155945,23 +506636,23 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105377] = 3, - ACTIONS(10836), 1, + [15025] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1896), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105388] = 3, - ACTIONS(10836), 1, + [15036] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1891), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105399] = 3, + [15047] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2940), 1, @@ -155969,7 +506660,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105410] = 3, + [15058] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(255), 1, @@ -155977,7 +506668,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105421] = 3, + [15069] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2938), 1, @@ -155985,7 +506676,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105432] = 3, + [15080] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2937), 1, @@ -155993,15 +506684,15 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105443] = 3, - ACTIONS(10836), 1, + [15091] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1889), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105454] = 3, + [15102] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2931), 1, @@ -156009,15 +506700,15 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105465] = 3, - ACTIONS(10836), 1, + [15113] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1915), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105476] = 3, + [15124] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2928), 1, @@ -156025,7 +506716,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105487] = 3, + [15135] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2923), 1, @@ -156033,7 +506724,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105498] = 3, + [15146] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2921), 1, @@ -156041,103 +506732,103 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105509] = 3, - ACTIONS(14162), 1, + [15157] = 3, + ACTIONS(15122), 1, anon_sym_RBRACE, - ACTIONS(14164), 1, + ACTIONS(15124), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105520] = 3, - ACTIONS(10836), 1, + [15168] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1880), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105531] = 3, - ACTIONS(14166), 1, + [15179] = 3, + ACTIONS(15126), 1, anon_sym_RBRACE, - ACTIONS(14168), 1, + ACTIONS(15128), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105542] = 3, - ACTIONS(10836), 1, + [15190] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1942), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105553] = 3, - ACTIONS(14170), 1, + [15201] = 3, + ACTIONS(15130), 1, anon_sym_LBRACK, - ACTIONS(14172), 1, + ACTIONS(15132), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105564] = 3, - ACTIONS(284), 1, + [15212] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(917), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105575] = 3, - ACTIONS(14174), 1, + [15223] = 3, + ACTIONS(15134), 1, anon_sym_RBRACE, - ACTIONS(14176), 1, + ACTIONS(15136), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105586] = 3, - ACTIONS(10836), 1, + [15234] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1931), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105597] = 3, - ACTIONS(10836), 1, + [15245] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1932), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105608] = 3, - ACTIONS(10836), 1, + [15256] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1933), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105619] = 3, - ACTIONS(14178), 1, + [15267] = 3, + ACTIONS(15138), 1, anon_sym_RBRACE, - ACTIONS(14180), 1, + ACTIONS(15140), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105630] = 3, - ACTIONS(284), 1, + [15278] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(916), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105641] = 3, + [15289] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2815), 1, @@ -156145,7 +506836,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105652] = 3, + [15300] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2814), 1, @@ -156153,7 +506844,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105663] = 3, + [15311] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(303), 1, @@ -156161,7 +506852,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105674] = 3, + [15322] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2812), 1, @@ -156169,55 +506860,55 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105685] = 3, - ACTIONS(14182), 1, + [15333] = 3, + ACTIONS(15142), 1, anon_sym_RBRACE, - ACTIONS(14184), 1, + ACTIONS(15144), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105696] = 3, - ACTIONS(14186), 1, + [15344] = 3, + ACTIONS(15146), 1, anon_sym_RBRACE, - ACTIONS(14188), 1, + ACTIONS(15148), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105707] = 3, - ACTIONS(14190), 1, + [15355] = 3, + ACTIONS(15150), 1, anon_sym_RBRACE, - ACTIONS(14192), 1, + ACTIONS(15152), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105718] = 3, - ACTIONS(9023), 1, + [15366] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1556), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105729] = 3, - ACTIONS(9023), 1, + [15377] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1555), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105740] = 3, - ACTIONS(9023), 1, + [15388] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1554), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105751] = 3, + [15399] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2811), 1, @@ -156225,7 +506916,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105762] = 3, + [15410] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3279), 1, @@ -156233,39 +506924,39 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105773] = 3, - ACTIONS(14194), 1, + [15421] = 3, + ACTIONS(15154), 1, anon_sym_RBRACE, - ACTIONS(14196), 1, + ACTIONS(15156), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105784] = 3, - ACTIONS(14198), 1, + [15432] = 3, + ACTIONS(15158), 1, anon_sym_RBRACE, - ACTIONS(14200), 1, + ACTIONS(15160), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105795] = 3, - ACTIONS(14202), 1, + [15443] = 3, + ACTIONS(15162), 1, anon_sym_RBRACE, - ACTIONS(14204), 1, + ACTIONS(15164), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105806] = 3, - ACTIONS(14206), 1, + [15454] = 3, + ACTIONS(15166), 1, anon_sym_RBRACE, - ACTIONS(14208), 1, + ACTIONS(15168), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105817] = 3, + [15465] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2810), 1, @@ -156273,111 +506964,111 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105828] = 3, - ACTIONS(14210), 1, + [15476] = 3, + ACTIONS(15170), 1, anon_sym_RBRACE, - ACTIONS(14212), 1, + ACTIONS(15172), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105839] = 3, - ACTIONS(14214), 1, + [15487] = 3, + ACTIONS(15174), 1, anon_sym_RBRACE, - ACTIONS(14216), 1, + ACTIONS(15176), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105850] = 3, - ACTIONS(14218), 1, + [15498] = 3, + ACTIONS(15178), 1, anon_sym_RBRACE, - ACTIONS(14220), 1, + ACTIONS(15180), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105861] = 3, - ACTIONS(14222), 1, + [15509] = 3, + ACTIONS(15182), 1, anon_sym_RBRACE, - ACTIONS(14224), 1, + ACTIONS(15184), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105872] = 3, - ACTIONS(14226), 1, + [15520] = 3, + ACTIONS(15186), 1, anon_sym_RBRACE, - ACTIONS(14228), 1, + ACTIONS(15188), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105883] = 3, - ACTIONS(14230), 1, + [15531] = 3, + ACTIONS(15190), 1, anon_sym_RBRACE, - ACTIONS(14232), 1, + ACTIONS(15192), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105894] = 3, - ACTIONS(14234), 1, + [15542] = 3, + ACTIONS(15194), 1, anon_sym_RBRACE, - ACTIONS(14236), 1, + ACTIONS(15196), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105905] = 3, - ACTIONS(14238), 1, + [15553] = 3, + ACTIONS(15198), 1, anon_sym_RBRACE, - ACTIONS(14240), 1, + ACTIONS(15200), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105916] = 3, - ACTIONS(14242), 1, + [15564] = 3, + ACTIONS(15202), 1, anon_sym_RBRACE, - ACTIONS(14244), 1, + ACTIONS(15204), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105927] = 3, - ACTIONS(9023), 1, + [15575] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1538), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105938] = 3, - ACTIONS(14246), 1, + [15586] = 3, + ACTIONS(15206), 1, anon_sym_RBRACE, - ACTIONS(14248), 1, + ACTIONS(15208), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105949] = 3, - ACTIONS(9023), 1, + [15597] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1537), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105960] = 3, - ACTIONS(14250), 1, + [15608] = 3, + ACTIONS(15210), 1, anon_sym_RBRACE, - ACTIONS(14252), 1, + ACTIONS(15212), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [105971] = 3, + [15619] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2825), 1, @@ -156385,7 +507076,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105982] = 3, + [15630] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2829), 1, @@ -156393,207 +507084,207 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [105993] = 3, - ACTIONS(14254), 1, + [15641] = 3, + ACTIONS(15214), 1, anon_sym_RBRACE, - ACTIONS(14256), 1, + ACTIONS(15216), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106004] = 3, - ACTIONS(9023), 1, + [15652] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1532), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106015] = 3, - ACTIONS(14258), 1, + [15663] = 3, + ACTIONS(15218), 1, anon_sym_LBRACK, - ACTIONS(14260), 1, + ACTIONS(15220), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106026] = 3, - ACTIONS(14262), 1, + [15674] = 3, + ACTIONS(15222), 1, anon_sym_RBRACE, - ACTIONS(14264), 1, + ACTIONS(15224), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106037] = 3, - ACTIONS(9023), 1, + [15685] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1530), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106048] = 3, - ACTIONS(9023), 1, + [15696] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1529), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106059] = 3, - ACTIONS(14266), 1, + [15707] = 3, + ACTIONS(15226), 1, anon_sym_RBRACE, - ACTIONS(14268), 1, + ACTIONS(15228), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106070] = 3, - ACTIONS(9023), 1, + [15718] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1527), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106081] = 3, - ACTIONS(284), 1, + [15729] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(910), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106092] = 3, - ACTIONS(14270), 1, + [15740] = 3, + ACTIONS(15230), 1, anon_sym_RBRACE, - ACTIONS(14272), 1, + ACTIONS(15232), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106103] = 3, - ACTIONS(9023), 1, + [15751] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1525), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106114] = 3, - ACTIONS(9023), 1, + [15762] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1524), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106125] = 3, - ACTIONS(284), 1, + [15773] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(908), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106136] = 3, - ACTIONS(9023), 1, + [15784] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1521), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106147] = 3, - ACTIONS(9023), 1, + [15795] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(1520), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106158] = 3, - ACTIONS(9831), 1, + [15806] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(446), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106169] = 3, - ACTIONS(284), 1, + [15817] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(907), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106180] = 3, - ACTIONS(14274), 1, + [15828] = 3, + ACTIONS(15234), 1, anon_sym_RBRACE, - ACTIONS(14276), 1, + ACTIONS(15236), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106191] = 3, - ACTIONS(14278), 1, + [15839] = 3, + ACTIONS(15238), 1, anon_sym_RBRACE, - ACTIONS(14280), 1, + ACTIONS(15240), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106202] = 3, - ACTIONS(284), 1, + [15850] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(905), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106213] = 3, - ACTIONS(14282), 1, + [15861] = 3, + ACTIONS(15242), 1, anon_sym_RBRACE, - ACTIONS(14284), 1, + ACTIONS(15244), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106224] = 3, - ACTIONS(14286), 1, + [15872] = 3, + ACTIONS(15246), 1, anon_sym_RBRACE, - ACTIONS(14288), 1, + ACTIONS(15248), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106235] = 3, - ACTIONS(14290), 1, + [15883] = 3, + ACTIONS(15250), 1, anon_sym_RBRACE, - ACTIONS(14292), 1, + ACTIONS(15252), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106246] = 3, - ACTIONS(284), 1, + [15894] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(903), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106257] = 3, - ACTIONS(14294), 1, + [15905] = 3, + ACTIONS(15254), 1, anon_sym_RBRACE, - ACTIONS(14296), 1, + ACTIONS(15256), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106268] = 3, + [15916] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2933), 1, @@ -156601,159 +507292,159 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106279] = 3, - ACTIONS(14298), 1, + [15927] = 3, + ACTIONS(15258), 1, anon_sym_RBRACE, - ACTIONS(14300), 1, + ACTIONS(15260), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106290] = 3, - ACTIONS(14302), 1, + [15938] = 3, + ACTIONS(15262), 1, anon_sym_RBRACE, - ACTIONS(14304), 1, + ACTIONS(15264), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106301] = 3, - ACTIONS(9831), 1, + [15949] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1743), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106312] = 3, - ACTIONS(14306), 1, + [15960] = 3, + ACTIONS(15266), 1, anon_sym_RBRACE, - ACTIONS(14308), 1, + ACTIONS(15268), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106323] = 3, - ACTIONS(14310), 1, + [15971] = 3, + ACTIONS(15270), 1, anon_sym_RBRACE, - ACTIONS(14312), 1, + ACTIONS(15272), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106334] = 3, - ACTIONS(14314), 1, + [15982] = 3, + ACTIONS(15274), 1, anon_sym_RBRACE, - ACTIONS(14316), 1, + ACTIONS(15276), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106345] = 3, - ACTIONS(14318), 1, + [15993] = 3, + ACTIONS(15278), 1, anon_sym_RBRACE, - ACTIONS(14320), 1, + ACTIONS(15280), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106356] = 3, - ACTIONS(14322), 1, + [16004] = 3, + ACTIONS(15282), 1, anon_sym_RBRACE, - ACTIONS(14324), 1, + ACTIONS(15284), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106367] = 3, - ACTIONS(14326), 1, + [16015] = 3, + ACTIONS(15286), 1, anon_sym_RBRACE, - ACTIONS(14328), 1, + ACTIONS(15288), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106378] = 3, - ACTIONS(14330), 1, + [16026] = 3, + ACTIONS(15290), 1, anon_sym_RBRACE, - ACTIONS(14332), 1, + ACTIONS(15292), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106389] = 3, - ACTIONS(14334), 1, + [16037] = 3, + ACTIONS(15294), 1, anon_sym_RBRACE, - ACTIONS(14336), 1, + ACTIONS(15296), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106400] = 3, - ACTIONS(14338), 1, + [16048] = 3, + ACTIONS(15298), 1, anon_sym_RBRACE, - ACTIONS(14340), 1, + ACTIONS(15300), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106411] = 3, - ACTIONS(14342), 1, + [16059] = 3, + ACTIONS(15302), 1, anon_sym_RBRACE, - ACTIONS(14344), 1, + ACTIONS(15304), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106422] = 3, - ACTIONS(14346), 1, + [16070] = 3, + ACTIONS(15306), 1, anon_sym_RBRACE, - ACTIONS(14348), 1, + ACTIONS(15308), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106433] = 3, - ACTIONS(14350), 1, + [16081] = 3, + ACTIONS(15310), 1, anon_sym_RBRACE, - ACTIONS(14352), 1, + ACTIONS(15312), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106444] = 3, - ACTIONS(14354), 1, + [16092] = 3, + ACTIONS(15314), 1, anon_sym_RBRACE, - ACTIONS(14356), 1, + ACTIONS(15316), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106455] = 3, - ACTIONS(14358), 1, + [16103] = 3, + ACTIONS(15318), 1, anon_sym_RBRACE, - ACTIONS(14360), 1, + ACTIONS(15320), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106466] = 3, - ACTIONS(14362), 1, + [16114] = 3, + ACTIONS(15322), 1, anon_sym_RBRACE, - ACTIONS(14364), 1, + ACTIONS(15324), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106477] = 3, - ACTIONS(14366), 1, + [16125] = 3, + ACTIONS(15326), 1, anon_sym_RBRACE, - ACTIONS(14368), 1, + ACTIONS(15328), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106488] = 3, + [16136] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(506), 1, @@ -156761,7 +507452,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106499] = 3, + [16147] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2936), 1, @@ -156769,7 +507460,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106510] = 3, + [16158] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2946), 1, @@ -156777,39 +507468,39 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106521] = 3, - ACTIONS(14370), 1, + [16169] = 3, + ACTIONS(15330), 1, anon_sym_RBRACE, - ACTIONS(14372), 1, + ACTIONS(15332), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106532] = 3, - ACTIONS(14374), 1, + [16180] = 3, + ACTIONS(15334), 1, anon_sym_RBRACE, - ACTIONS(14376), 1, + ACTIONS(15336), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106543] = 3, - ACTIONS(10836), 1, + [16191] = 3, + ACTIONS(11776), 1, anon_sym_LBRACE, STATE(1947), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106554] = 3, - ACTIONS(14378), 1, + [16202] = 3, + ACTIONS(15338), 1, anon_sym_RBRACE, - ACTIONS(14380), 1, + ACTIONS(15340), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106565] = 3, + [16213] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2950), 1, @@ -156817,15 +507508,15 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106576] = 3, - ACTIONS(14382), 1, + [16224] = 3, + ACTIONS(15342), 1, anon_sym_RBRACE, - ACTIONS(14384), 1, + ACTIONS(15344), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106587] = 3, + [16235] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2983), 1, @@ -156833,7 +507524,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106598] = 3, + [16246] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(562), 1, @@ -156841,7 +507532,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106609] = 3, + [16257] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2985), 1, @@ -156849,15 +507540,15 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106620] = 3, - ACTIONS(14386), 1, + [16268] = 3, + ACTIONS(15346), 1, anon_sym_RBRACE, - ACTIONS(14388), 1, + ACTIONS(15348), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106631] = 3, + [16279] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(560), 1, @@ -156865,7 +507556,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106642] = 3, + [16290] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(559), 1, @@ -156873,15 +507564,15 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106653] = 3, - ACTIONS(14390), 1, + [16301] = 3, + ACTIONS(15350), 1, anon_sym_RBRACE, - ACTIONS(14392), 1, + ACTIONS(15352), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106664] = 3, + [16312] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2990), 1, @@ -156889,39 +507580,39 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106675] = 3, - ACTIONS(14394), 1, + [16323] = 3, + ACTIONS(15354), 1, anon_sym_RBRACE, - ACTIONS(14396), 1, + ACTIONS(15356), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106686] = 3, - ACTIONS(10401), 1, + [16334] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(461), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106697] = 3, - ACTIONS(14398), 1, + [16345] = 3, + ACTIONS(15358), 1, anon_sym_RBRACE, - ACTIONS(14400), 1, + ACTIONS(15360), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106708] = 3, - ACTIONS(9831), 1, + [16356] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(436), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106719] = 3, + [16367] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2994), 1, @@ -156929,63 +507620,63 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106730] = 3, - ACTIONS(9023), 1, + [16378] = 3, + ACTIONS(9783), 1, anon_sym_LBRACE, STATE(417), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106741] = 3, - ACTIONS(7092), 1, + [16389] = 3, + ACTIONS(7664), 1, anon_sym_LBRACE, STATE(365), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106752] = 3, - ACTIONS(284), 1, + [16400] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(901), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106763] = 3, - ACTIONS(14402), 1, + [16411] = 3, + ACTIONS(15362), 1, anon_sym_LBRACK, - ACTIONS(14404), 1, + ACTIONS(15364), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106774] = 3, - ACTIONS(284), 1, + [16422] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(899), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106785] = 3, - ACTIONS(284), 1, + [16433] = 3, + ACTIONS(304), 1, anon_sym_LBRACE, STATE(898), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106796] = 3, - ACTIONS(5872), 1, + [16444] = 3, + ACTIONS(6328), 1, anon_sym_LBRACE, STATE(333), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106807] = 3, + [16455] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(524), 1, @@ -156993,127 +507684,127 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106818] = 3, - ACTIONS(3806), 1, + [16466] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(293), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106829] = 3, - ACTIONS(378), 1, + [16477] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(267), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106840] = 3, - ACTIONS(2188), 1, + [16488] = 3, + ACTIONS(2316), 1, anon_sym_LBRACE, STATE(258), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106851] = 3, - ACTIONS(476), 1, + [16499] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(884), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106862] = 3, - ACTIONS(14406), 1, + [16510] = 3, + ACTIONS(15366), 1, anon_sym_RBRACE, - ACTIONS(14408), 1, + ACTIONS(15368), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106873] = 3, - ACTIONS(476), 1, + [16521] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(883), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106884] = 3, - ACTIONS(378), 1, + [16532] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(271), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106895] = 3, - ACTIONS(476), 1, + [16543] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(881), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106906] = 3, - ACTIONS(476), 1, + [16554] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(880), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106917] = 3, - ACTIONS(378), 1, + [16565] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(297), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106928] = 3, - ACTIONS(476), 1, + [16576] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(877), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106939] = 3, - ACTIONS(476), 1, + [16587] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(875), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106950] = 3, - ACTIONS(476), 1, + [16598] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(874), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106961] = 3, - ACTIONS(378), 1, + [16609] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(317), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106972] = 3, - ACTIONS(476), 1, + [16620] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(871), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [106983] = 3, + [16631] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3109), 1, @@ -157121,7 +507812,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [106994] = 3, + [16642] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3111), 1, @@ -157129,31 +507820,31 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107005] = 3, - ACTIONS(476), 1, + [16653] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(866), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107016] = 3, - ACTIONS(14410), 1, + [16664] = 3, + ACTIONS(15370), 1, anon_sym_RBRACE, - ACTIONS(14412), 1, + ACTIONS(15372), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107027] = 3, - ACTIONS(476), 1, + [16675] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(864), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107038] = 3, + [16686] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(288), 1, @@ -157161,7 +507852,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107049] = 3, + [16697] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3114), 1, @@ -157169,7 +507860,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107060] = 3, + [16708] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3116), 1, @@ -157177,31 +507868,31 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107071] = 3, - ACTIONS(9831), 1, + [16719] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1675), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107082] = 3, - ACTIONS(9831), 1, + [16730] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1674), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107093] = 3, - ACTIONS(9831), 1, + [16741] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1673), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107104] = 3, + [16752] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3126), 1, @@ -157209,7 +507900,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107115] = 3, + [16763] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3128), 1, @@ -157217,39 +507908,39 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107126] = 3, - ACTIONS(3806), 1, + [16774] = 3, + ACTIONS(4074), 1, anon_sym_LBRACE, STATE(1153), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107137] = 3, - ACTIONS(476), 1, + [16785] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(847), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107148] = 3, - ACTIONS(476), 1, + [16796] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(846), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107159] = 3, - ACTIONS(476), 1, + [16807] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(845), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107170] = 3, + [16818] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3133), 1, @@ -157257,15 +507948,15 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107181] = 3, - ACTIONS(14414), 1, + [16829] = 3, + ACTIONS(15374), 1, anon_sym_RBRACE, - ACTIONS(14416), 1, + ACTIONS(15376), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107192] = 3, + [16840] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3135), 1, @@ -157273,95 +507964,95 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107203] = 3, - ACTIONS(378), 1, + [16851] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(323), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107214] = 3, - ACTIONS(14418), 1, + [16862] = 3, + ACTIONS(15378), 1, anon_sym_LBRACK, - ACTIONS(14420), 1, + ACTIONS(15380), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107225] = 3, - ACTIONS(378), 1, + [16873] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(359), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107236] = 3, - ACTIONS(378), 1, + [16884] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(372), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107247] = 3, - ACTIONS(14422), 1, + [16895] = 3, + ACTIONS(15382), 1, anon_sym_RBRACE, - ACTIONS(14424), 1, + ACTIONS(15384), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107258] = 3, - ACTIONS(14426), 1, + [16906] = 3, + ACTIONS(15386), 1, anon_sym_RBRACE, - ACTIONS(14428), 1, + ACTIONS(15388), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107269] = 3, - ACTIONS(14430), 1, + [16917] = 3, + ACTIONS(15390), 1, anon_sym_RBRACE, - ACTIONS(14432), 1, + ACTIONS(15392), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107280] = 3, - ACTIONS(9831), 1, + [16928] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1657), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107291] = 3, - ACTIONS(14434), 1, + [16939] = 3, + ACTIONS(15394), 1, anon_sym_RBRACE, - ACTIONS(14436), 1, + ACTIONS(15396), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107302] = 3, - ACTIONS(9831), 1, + [16950] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1656), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107313] = 3, - ACTIONS(14438), 1, + [16961] = 3, + ACTIONS(15398), 1, anon_sym_RBRACE, - ACTIONS(14440), 1, + ACTIONS(15400), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107324] = 3, + [16972] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(2907), 1, @@ -157369,7 +508060,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107335] = 3, + [16983] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(533), 1, @@ -157377,70 +508068,70 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107346] = 3, - ACTIONS(14442), 1, + [16994] = 3, + ACTIONS(15402), 1, anon_sym_RBRACE, - ACTIONS(14444), 1, + ACTIONS(15404), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107357] = 3, - ACTIONS(9831), 1, + [17005] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1651), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107368] = 2, + [17016] = 2, ACTIONS(3), 2, sym__whitespace, sym__comment, - ACTIONS(14446), 2, + ACTIONS(15406), 2, anon_sym_RBRACE, anon_sym_COMMA, - [107377] = 3, - ACTIONS(14448), 1, + [17025] = 3, + ACTIONS(15408), 1, anon_sym_RBRACE, - ACTIONS(14450), 1, + ACTIONS(15410), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107388] = 3, - ACTIONS(9831), 1, + [17036] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1648), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107399] = 3, - ACTIONS(9831), 1, + [17047] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1631), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107410] = 3, - ACTIONS(14452), 1, + [17058] = 3, + ACTIONS(15412), 1, anon_sym_RBRACE, - ACTIONS(14454), 1, + ACTIONS(15414), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107421] = 3, - ACTIONS(9831), 1, + [17069] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1646), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107432] = 3, + [17080] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3254), 1, @@ -157448,7 +508139,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107443] = 3, + [17091] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3256), 1, @@ -157456,23 +508147,23 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107454] = 3, - ACTIONS(9831), 1, + [17102] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1644), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107465] = 3, - ACTIONS(9831), 1, + [17113] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1643), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107476] = 3, + [17124] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3258), 1, @@ -157480,31 +508171,31 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107487] = 3, - ACTIONS(9831), 1, + [17135] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1641), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107498] = 3, - ACTIONS(9831), 1, + [17146] = 3, + ACTIONS(10671), 1, anon_sym_LBRACE, STATE(1640), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107509] = 3, - ACTIONS(14456), 1, + [17157] = 3, + ACTIONS(15416), 1, anon_sym_LBRACK, - ACTIONS(14458), 1, + ACTIONS(15418), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107520] = 3, + [17168] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3259), 1, @@ -157512,7 +508203,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107531] = 3, + [17179] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3263), 1, @@ -157520,7 +508211,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107542] = 3, + [17190] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3265), 1, @@ -157528,7 +508219,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107553] = 3, + [17201] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3268), 1, @@ -157536,7 +508227,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107564] = 3, + [17212] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3270), 1, @@ -157544,359 +508235,359 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [107575] = 3, - ACTIONS(14460), 1, + [17223] = 3, + ACTIONS(15420), 1, anon_sym_RBRACE, - ACTIONS(14462), 1, + ACTIONS(15422), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107586] = 3, - ACTIONS(378), 1, + [17234] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(885), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107597] = 3, - ACTIONS(14464), 1, + [17245] = 3, + ACTIONS(15424), 1, anon_sym_LBRACK, - ACTIONS(14466), 1, + ACTIONS(15426), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107608] = 3, - ACTIONS(14468), 1, + [17256] = 3, + ACTIONS(15428), 1, anon_sym_LBRACK, - ACTIONS(14470), 1, + ACTIONS(15430), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107619] = 3, - ACTIONS(14472), 1, + [17267] = 3, + ACTIONS(15432), 1, anon_sym_RBRACE, - ACTIONS(14474), 1, + ACTIONS(15434), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107630] = 3, - ACTIONS(14476), 1, + [17278] = 3, + ACTIONS(15436), 1, anon_sym_RBRACE, - ACTIONS(14478), 1, + ACTIONS(15438), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107641] = 3, - ACTIONS(10401), 1, + [17289] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1857), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107652] = 3, - ACTIONS(14480), 1, + [17300] = 3, + ACTIONS(15440), 1, anon_sym_RBRACE, - ACTIONS(14482), 1, + ACTIONS(15442), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107663] = 3, - ACTIONS(14484), 1, + [17311] = 3, + ACTIONS(15444), 1, anon_sym_RBRACE, - ACTIONS(14486), 1, + ACTIONS(15446), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107674] = 3, - ACTIONS(14488), 1, + [17322] = 3, + ACTIONS(15448), 1, anon_sym_RBRACE, - ACTIONS(14490), 1, + ACTIONS(15450), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107685] = 3, - ACTIONS(14492), 1, + [17333] = 3, + ACTIONS(15452), 1, anon_sym_RBRACE, - ACTIONS(14494), 1, + ACTIONS(15454), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107696] = 3, - ACTIONS(14496), 1, + [17344] = 3, + ACTIONS(15456), 1, anon_sym_RBRACE, - ACTIONS(14498), 1, + ACTIONS(15458), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107707] = 3, - ACTIONS(14500), 1, + [17355] = 3, + ACTIONS(15460), 1, anon_sym_RBRACE, - ACTIONS(14502), 1, + ACTIONS(15462), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107718] = 3, - ACTIONS(14504), 1, + [17366] = 3, + ACTIONS(15464), 1, anon_sym_RBRACE, - ACTIONS(14506), 1, + ACTIONS(15466), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107729] = 3, - ACTIONS(14508), 1, + [17377] = 3, + ACTIONS(15468), 1, anon_sym_RBRACE, - ACTIONS(14510), 1, + ACTIONS(15470), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107740] = 3, - ACTIONS(14512), 1, + [17388] = 3, + ACTIONS(15472), 1, anon_sym_RBRACE, - ACTIONS(14514), 1, + ACTIONS(15474), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107751] = 3, - ACTIONS(14516), 1, + [17399] = 3, + ACTIONS(15476), 1, anon_sym_RBRACE, - ACTIONS(14518), 1, + ACTIONS(15478), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107762] = 3, - ACTIONS(14520), 1, + [17410] = 3, + ACTIONS(15480), 1, anon_sym_RBRACE, - ACTIONS(14522), 1, + ACTIONS(15482), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107773] = 3, - ACTIONS(14524), 1, + [17421] = 3, + ACTIONS(15484), 1, anon_sym_RBRACE, - ACTIONS(14526), 1, + ACTIONS(15486), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107784] = 3, - ACTIONS(14528), 1, + [17432] = 3, + ACTIONS(15488), 1, anon_sym_RBRACE, - ACTIONS(14530), 1, + ACTIONS(15490), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107795] = 3, - ACTIONS(14532), 1, + [17443] = 3, + ACTIONS(15492), 1, anon_sym_RBRACE, - ACTIONS(14534), 1, + ACTIONS(15494), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107806] = 3, - ACTIONS(14536), 1, + [17454] = 3, + ACTIONS(15496), 1, anon_sym_RBRACE, - ACTIONS(14538), 1, + ACTIONS(15498), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107817] = 3, - ACTIONS(14540), 1, + [17465] = 3, + ACTIONS(15500), 1, anon_sym_RBRACE, - ACTIONS(14542), 1, + ACTIONS(15502), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107828] = 3, - ACTIONS(14544), 1, + [17476] = 3, + ACTIONS(15504), 1, anon_sym_RBRACE, - ACTIONS(14546), 1, + ACTIONS(15506), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107839] = 3, - ACTIONS(14548), 1, + [17487] = 3, + ACTIONS(15508), 1, anon_sym_RBRACE, - ACTIONS(14550), 1, + ACTIONS(15510), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107850] = 3, - ACTIONS(14552), 1, + [17498] = 3, + ACTIONS(15512), 1, anon_sym_RBRACE, - ACTIONS(14554), 1, + ACTIONS(15514), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107861] = 3, - ACTIONS(14556), 1, + [17509] = 3, + ACTIONS(15516), 1, anon_sym_RBRACE, - ACTIONS(14558), 1, + ACTIONS(15518), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107872] = 3, - ACTIONS(14560), 1, + [17520] = 3, + ACTIONS(15520), 1, anon_sym_RBRACE, - ACTIONS(14562), 1, + ACTIONS(15522), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107883] = 3, - ACTIONS(14564), 1, + [17531] = 3, + ACTIONS(15524), 1, anon_sym_RBRACE, - ACTIONS(14566), 1, + ACTIONS(15526), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107894] = 3, - ACTIONS(14568), 1, + [17542] = 3, + ACTIONS(15528), 1, anon_sym_RBRACE, - ACTIONS(14570), 1, + ACTIONS(15530), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107905] = 3, - ACTIONS(14572), 1, + [17553] = 3, + ACTIONS(15532), 1, anon_sym_RBRACE, - ACTIONS(14574), 1, + ACTIONS(15534), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107916] = 3, - ACTIONS(14576), 1, + [17564] = 3, + ACTIONS(15536), 1, anon_sym_RBRACE, - ACTIONS(14578), 1, + ACTIONS(15538), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107927] = 3, - ACTIONS(14580), 1, + [17575] = 3, + ACTIONS(15540), 1, anon_sym_RBRACE, - ACTIONS(14582), 1, + ACTIONS(15542), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107938] = 3, - ACTIONS(14584), 1, + [17586] = 3, + ACTIONS(15544), 1, anon_sym_RBRACE, - ACTIONS(14586), 1, + ACTIONS(15546), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107949] = 3, - ACTIONS(14588), 1, + [17597] = 3, + ACTIONS(15548), 1, anon_sym_RBRACE, - ACTIONS(14590), 1, + ACTIONS(15550), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107960] = 3, - ACTIONS(14592), 1, + [17608] = 3, + ACTIONS(15552), 1, anon_sym_RBRACE, - ACTIONS(14594), 1, + ACTIONS(15554), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107971] = 3, - ACTIONS(14596), 1, + [17619] = 3, + ACTIONS(15556), 1, anon_sym_RBRACE, - ACTIONS(14598), 1, + ACTIONS(15558), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107982] = 3, - ACTIONS(14600), 1, + [17630] = 3, + ACTIONS(15560), 1, anon_sym_RBRACE, - ACTIONS(14602), 1, + ACTIONS(15562), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [107993] = 3, - ACTIONS(14604), 1, + [17641] = 3, + ACTIONS(15564), 1, anon_sym_RBRACE, - ACTIONS(14606), 1, + ACTIONS(15566), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108004] = 3, - ACTIONS(14608), 1, + [17652] = 3, + ACTIONS(15568), 1, anon_sym_RBRACE, - ACTIONS(14610), 1, + ACTIONS(15570), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108015] = 3, - ACTIONS(14612), 1, + [17663] = 3, + ACTIONS(15572), 1, anon_sym_RBRACE, - ACTIONS(14614), 1, + ACTIONS(15574), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108026] = 3, - ACTIONS(14616), 1, + [17674] = 3, + ACTIONS(15576), 1, anon_sym_RBRACE, - ACTIONS(14618), 1, + ACTIONS(15578), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108037] = 3, - ACTIONS(14620), 1, + [17685] = 3, + ACTIONS(15580), 1, anon_sym_RBRACE, - ACTIONS(14622), 1, + ACTIONS(15582), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108048] = 3, - ACTIONS(14624), 1, + [17696] = 3, + ACTIONS(15584), 1, anon_sym_RBRACE, - ACTIONS(14626), 1, + ACTIONS(15586), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108059] = 3, + [17707] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3388), 1, @@ -157904,23 +508595,23 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108070] = 3, - ACTIONS(14628), 1, + [17718] = 3, + ACTIONS(15588), 1, anon_sym_RBRACE, - ACTIONS(14630), 1, + ACTIONS(15590), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108081] = 3, - ACTIONS(14632), 1, + [17729] = 3, + ACTIONS(15592), 1, anon_sym_RBRACE, - ACTIONS(14634), 1, + ACTIONS(15594), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108092] = 3, + [17740] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3389), 1, @@ -157928,15 +508619,15 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108103] = 3, - ACTIONS(14636), 1, + [17751] = 3, + ACTIONS(15596), 1, anon_sym_RBRACE, - ACTIONS(14638), 1, + ACTIONS(15598), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108114] = 3, + [17762] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3391), 1, @@ -157944,7 +508635,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108125] = 3, + [17773] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3392), 1, @@ -157952,31 +508643,31 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108136] = 3, - ACTIONS(14640), 1, + [17784] = 3, + ACTIONS(15600), 1, anon_sym_RBRACE, - ACTIONS(14642), 1, + ACTIONS(15602), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108147] = 3, - ACTIONS(14644), 1, + [17795] = 3, + ACTIONS(15604), 1, anon_sym_RBRACE, - ACTIONS(14646), 1, + ACTIONS(15606), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108158] = 3, - ACTIONS(476), 1, + [17806] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(766), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108169] = 3, + [17817] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3401), 1, @@ -157984,7 +508675,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108180] = 3, + [17828] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3010), 1, @@ -157992,7 +508683,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108191] = 3, + [17839] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3403), 1, @@ -158000,15 +508691,15 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108202] = 3, - ACTIONS(14648), 1, + [17850] = 3, + ACTIONS(15608), 1, anon_sym_RBRACE, - ACTIONS(14650), 1, + ACTIONS(15610), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108213] = 3, + [17861] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3407), 1, @@ -158016,7 +508707,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108224] = 3, + [17872] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3409), 1, @@ -158024,253 +508715,253 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108235] = 2, + [17883] = 2, ACTIONS(3), 2, sym__whitespace, sym__comment, - ACTIONS(14652), 2, + ACTIONS(15612), 2, anon_sym_RBRACE, anon_sym_COMMA, - [108244] = 3, - ACTIONS(476), 1, + [17892] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(370), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108255] = 3, - ACTIONS(476), 1, + [17903] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(349), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108266] = 3, - ACTIONS(476), 1, + [17914] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(335), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108277] = 3, - ACTIONS(476), 1, + [17925] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(305), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108288] = 3, - ACTIONS(476), 1, + [17936] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(299), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108299] = 3, - ACTIONS(476), 1, + [17947] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(277), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108310] = 3, - ACTIONS(476), 1, + [17958] = 3, + ACTIONS(512), 1, anon_sym_LBRACE, STATE(257), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108321] = 3, - ACTIONS(378), 1, + [17969] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(728), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108332] = 3, - ACTIONS(378), 1, + [17980] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(727), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108343] = 3, - ACTIONS(14654), 1, + [17991] = 3, + ACTIONS(15614), 1, anon_sym_RBRACE, - ACTIONS(14656), 1, + ACTIONS(15616), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108354] = 3, - ACTIONS(378), 1, + [18002] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(725), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108365] = 3, - ACTIONS(378), 1, + [18013] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(724), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108376] = 3, - ACTIONS(14658), 1, + [18024] = 3, + ACTIONS(15618), 1, anon_sym_LBRACK, - ACTIONS(14660), 1, + ACTIONS(15620), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108387] = 3, - ACTIONS(378), 1, + [18035] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(722), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108398] = 3, - ACTIONS(378), 1, + [18046] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(720), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108409] = 3, - ACTIONS(10401), 1, + [18057] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1785), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108420] = 3, - ACTIONS(10401), 1, + [18068] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1783), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108431] = 3, - ACTIONS(10401), 1, + [18079] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1782), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108442] = 3, - ACTIONS(14662), 1, + [18090] = 3, + ACTIONS(15622), 1, anon_sym_RBRACE, - ACTIONS(14664), 1, + ACTIONS(15624), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108453] = 3, - ACTIONS(14666), 1, + [18101] = 3, + ACTIONS(15626), 1, anon_sym_RBRACE, - ACTIONS(14668), 1, + ACTIONS(15628), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108464] = 3, - ACTIONS(378), 1, + [18112] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(719), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108475] = 3, - ACTIONS(14670), 1, + [18123] = 3, + ACTIONS(15630), 1, anon_sym_RBRACE, - ACTIONS(14672), 1, + ACTIONS(15632), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108486] = 3, - ACTIONS(378), 1, + [18134] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(717), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108497] = 3, - ACTIONS(14674), 1, + [18145] = 3, + ACTIONS(15634), 1, anon_sym_RBRACE, - ACTIONS(14676), 1, + ACTIONS(15636), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108508] = 3, - ACTIONS(14678), 1, + [18156] = 3, + ACTIONS(15638), 1, anon_sym_RBRACE, - ACTIONS(14680), 1, + ACTIONS(15640), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108519] = 3, - ACTIONS(14682), 1, + [18167] = 3, + ACTIONS(15642), 1, anon_sym_RBRACE, - ACTIONS(14684), 1, + ACTIONS(15644), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108530] = 3, - ACTIONS(378), 1, + [18178] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(712), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108541] = 3, - ACTIONS(14686), 1, + [18189] = 3, + ACTIONS(15646), 1, anon_sym_RBRACE, - ACTIONS(14688), 1, + ACTIONS(15648), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108552] = 3, - ACTIONS(378), 1, + [18200] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(711), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108563] = 2, + [18211] = 2, ACTIONS(3), 2, sym__whitespace, sym__comment, - ACTIONS(14690), 2, + ACTIONS(15650), 2, anon_sym_RBRACE, anon_sym_COMMA, - [108572] = 3, + [18220] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3248), 1, @@ -158278,7 +508969,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108583] = 3, + [18231] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3247), 1, @@ -158286,55 +508977,55 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108594] = 3, - ACTIONS(378), 1, + [18242] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(695), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108605] = 3, - ACTIONS(378), 1, + [18253] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(694), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108616] = 3, - ACTIONS(10401), 1, + [18264] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1762), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108627] = 3, - ACTIONS(14692), 1, + [18275] = 3, + ACTIONS(15652), 1, anon_sym_RBRACE, - ACTIONS(14694), 1, + ACTIONS(15654), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108638] = 3, - ACTIONS(10401), 1, + [18286] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1760), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108649] = 3, - ACTIONS(378), 1, + [18297] = 3, + ACTIONS(406), 1, anon_sym_LBRACE, STATE(693), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108660] = 3, + [18308] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3245), 1, @@ -158342,7 +509033,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108671] = 3, + [18319] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3199), 1, @@ -158350,23 +509041,23 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108682] = 3, - ACTIONS(14696), 1, + [18330] = 3, + ACTIONS(15656), 1, anon_sym_RBRACE, - ACTIONS(14698), 1, + ACTIONS(15658), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108693] = 3, - ACTIONS(10401), 1, + [18341] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1754), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108704] = 3, + [18352] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3188), 1, @@ -158374,7 +509065,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108715] = 3, + [18363] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3298), 1, @@ -158382,23 +509073,23 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108726] = 3, - ACTIONS(10401), 1, + [18374] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1871), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108737] = 3, - ACTIONS(10401), 1, + [18385] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1870), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108748] = 3, + [18396] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3184), 1, @@ -158406,15 +509097,15 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108759] = 3, - ACTIONS(10401), 1, + [18407] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1867), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108770] = 3, + [18418] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3143), 1, @@ -158422,7 +509113,7 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108781] = 3, + [18429] = 3, ACTIONS(27), 1, anon_sym_LBRACE, STATE(3137), 1, @@ -158430,10291 +509121,8776 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__whitespace, sym__comment, - [108792] = 3, - ACTIONS(10401), 1, + [18440] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1761), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108803] = 3, - ACTIONS(10401), 1, + [18451] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1778), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108814] = 3, - ACTIONS(14700), 1, + [18462] = 3, + ACTIONS(15660), 1, anon_sym_RBRACE, - ACTIONS(14702), 1, + ACTIONS(15662), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108825] = 3, - ACTIONS(10401), 1, + [18473] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1861), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108836] = 3, - ACTIONS(10401), 1, + [18484] = 3, + ACTIONS(11297), 1, anon_sym_LBRACE, STATE(1855), 1, sym_brace_group, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108847] = 3, - ACTIONS(14704), 1, + [18495] = 3, + ACTIONS(15664), 1, anon_sym_LBRACK, - ACTIONS(14706), 1, + ACTIONS(15666), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108858] = 3, - ACTIONS(14708), 1, + [18506] = 3, + ACTIONS(15668), 1, anon_sym_RBRACE, - ACTIONS(14710), 1, + ACTIONS(15670), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108869] = 3, - ACTIONS(14712), 1, + [18517] = 3, + ACTIONS(15672), 1, anon_sym_RBRACE, - ACTIONS(14714), 1, + ACTIONS(15674), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108880] = 3, - ACTIONS(14716), 1, + [18528] = 3, + ACTIONS(15676), 1, anon_sym_RBRACE, - ACTIONS(14718), 1, + ACTIONS(15678), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108891] = 3, - ACTIONS(14720), 1, + [18539] = 3, + ACTIONS(15680), 1, anon_sym_RBRACE, - ACTIONS(14722), 1, + ACTIONS(15682), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108902] = 3, - ACTIONS(14724), 1, + [18550] = 3, + ACTIONS(15684), 1, anon_sym_RBRACE, - ACTIONS(14726), 1, + ACTIONS(15686), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108913] = 2, - ACTIONS(14728), 1, + [18561] = 2, + ACTIONS(15688), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108921] = 2, - ACTIONS(14730), 1, + [18569] = 2, + ACTIONS(15690), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108929] = 2, - ACTIONS(14732), 1, + [18577] = 2, + ACTIONS(15692), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108937] = 2, - ACTIONS(14734), 1, + [18585] = 2, + ACTIONS(15694), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108945] = 2, - ACTIONS(14736), 1, + [18593] = 2, + ACTIONS(15696), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108953] = 2, - ACTIONS(14738), 1, + [18601] = 2, + ACTIONS(15698), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108961] = 2, - ACTIONS(14740), 1, + [18609] = 2, + ACTIONS(15700), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108969] = 2, - ACTIONS(14742), 1, + [18617] = 2, + ACTIONS(15702), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108977] = 2, - ACTIONS(14744), 1, + [18625] = 2, + ACTIONS(15704), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108985] = 2, - ACTIONS(14746), 1, + [18633] = 2, + ACTIONS(15706), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [108993] = 2, - ACTIONS(14748), 1, + [18641] = 2, + ACTIONS(15708), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109001] = 2, - ACTIONS(14750), 1, + [18649] = 2, + ACTIONS(15710), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109009] = 2, - ACTIONS(14752), 1, + [18657] = 2, + ACTIONS(15712), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109017] = 2, - ACTIONS(14754), 1, + [18665] = 2, + ACTIONS(15714), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109025] = 2, - ACTIONS(14756), 1, + [18673] = 2, + ACTIONS(15716), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109033] = 2, - ACTIONS(14758), 1, + [18681] = 2, + ACTIONS(15718), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109041] = 2, - ACTIONS(14760), 1, + [18689] = 2, + ACTIONS(15720), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109049] = 2, - ACTIONS(14762), 1, + [18697] = 2, + ACTIONS(15722), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109057] = 2, - ACTIONS(14764), 1, + [18705] = 2, + ACTIONS(15724), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109065] = 2, - ACTIONS(14766), 1, + [18713] = 2, + ACTIONS(15726), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109073] = 2, - ACTIONS(14768), 1, + [18721] = 2, + ACTIONS(15728), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109081] = 2, - ACTIONS(14770), 1, + [18729] = 2, + ACTIONS(15730), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109089] = 2, - ACTIONS(14772), 1, + [18737] = 2, + ACTIONS(15732), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109097] = 2, - ACTIONS(14774), 1, + [18745] = 2, + ACTIONS(15734), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109105] = 2, - ACTIONS(14776), 1, + [18753] = 2, + ACTIONS(15736), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109113] = 2, - ACTIONS(14778), 1, + [18761] = 2, + ACTIONS(15738), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109121] = 2, - ACTIONS(14780), 1, + [18769] = 2, + ACTIONS(15740), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109129] = 2, - ACTIONS(14782), 1, + [18777] = 2, + ACTIONS(15742), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109137] = 2, - ACTIONS(14784), 1, + [18785] = 2, + ACTIONS(15744), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109145] = 2, - ACTIONS(14786), 1, + [18793] = 2, + ACTIONS(15746), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109153] = 2, - ACTIONS(14788), 1, + [18801] = 2, + ACTIONS(15748), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109161] = 2, - ACTIONS(14790), 1, + [18809] = 2, + ACTIONS(15750), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109169] = 2, - ACTIONS(14792), 1, + [18817] = 2, + ACTIONS(15752), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109177] = 2, - ACTIONS(14794), 1, + [18825] = 2, + ACTIONS(15754), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109185] = 2, - ACTIONS(14796), 1, + [18833] = 2, + ACTIONS(15756), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109193] = 2, - ACTIONS(14798), 1, + [18841] = 2, + ACTIONS(15758), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109201] = 2, - ACTIONS(14800), 1, + [18849] = 2, + ACTIONS(15760), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109209] = 2, - ACTIONS(14802), 1, + [18857] = 2, + ACTIONS(15762), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109217] = 2, - ACTIONS(14804), 1, + [18865] = 2, + ACTIONS(15764), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109225] = 2, - ACTIONS(14806), 1, + [18873] = 2, + ACTIONS(15766), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109233] = 2, - ACTIONS(14808), 1, + [18881] = 2, + ACTIONS(15768), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109241] = 2, - ACTIONS(14810), 1, + [18889] = 2, + ACTIONS(15770), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109249] = 2, - ACTIONS(14812), 1, + [18897] = 2, + ACTIONS(15772), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109257] = 2, - ACTIONS(14814), 1, + [18905] = 2, + ACTIONS(15774), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109265] = 2, - ACTIONS(14816), 1, + [18913] = 2, + ACTIONS(15776), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109273] = 2, - ACTIONS(14818), 1, + [18921] = 2, + ACTIONS(15778), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109281] = 2, - ACTIONS(14820), 1, + [18929] = 2, + ACTIONS(15780), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109289] = 2, - ACTIONS(14822), 1, + [18937] = 2, + ACTIONS(15782), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109297] = 2, - ACTIONS(14824), 1, + [18945] = 2, + ACTIONS(15784), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109305] = 2, - ACTIONS(14826), 1, + [18953] = 2, + ACTIONS(15786), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109313] = 2, - ACTIONS(14828), 1, + [18961] = 2, + ACTIONS(15788), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109321] = 2, - ACTIONS(14830), 1, + [18969] = 2, + ACTIONS(15790), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109329] = 2, - ACTIONS(14832), 1, + [18977] = 2, + ACTIONS(15792), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109337] = 2, - ACTIONS(14834), 1, + [18985] = 2, + ACTIONS(15794), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109345] = 2, - ACTIONS(14836), 1, + [18993] = 2, + ACTIONS(15796), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109353] = 2, - ACTIONS(14838), 1, + [19001] = 2, + ACTIONS(15798), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109361] = 2, - ACTIONS(14840), 1, + [19009] = 2, + ACTIONS(15800), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109369] = 2, - ACTIONS(14842), 1, + [19017] = 2, + ACTIONS(15802), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109377] = 2, - ACTIONS(14844), 1, + [19025] = 2, + ACTIONS(15804), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109385] = 2, - ACTIONS(14846), 1, + [19033] = 2, + ACTIONS(15806), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109393] = 2, - ACTIONS(14848), 1, + [19041] = 2, + ACTIONS(15808), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109401] = 2, - ACTIONS(14850), 1, + [19049] = 2, + ACTIONS(15810), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109409] = 2, - ACTIONS(14852), 1, + [19057] = 2, + ACTIONS(15812), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109417] = 2, - ACTIONS(14854), 1, + [19065] = 2, + ACTIONS(15814), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109425] = 2, - ACTIONS(14856), 1, + [19073] = 2, + ACTIONS(15816), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109433] = 2, - ACTIONS(14858), 1, + [19081] = 2, + ACTIONS(15818), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109441] = 2, - ACTIONS(14860), 1, + [19089] = 2, + ACTIONS(15820), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109449] = 2, - ACTIONS(14862), 1, + [19097] = 2, + ACTIONS(15822), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109457] = 2, - ACTIONS(14864), 1, + [19105] = 2, + ACTIONS(15824), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109465] = 2, - ACTIONS(14866), 1, + [19113] = 2, + ACTIONS(15826), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109473] = 2, - ACTIONS(14868), 1, + [19121] = 2, + ACTIONS(15828), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109481] = 2, - ACTIONS(14870), 1, + [19129] = 2, + ACTIONS(15830), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109489] = 2, - ACTIONS(14872), 1, + [19137] = 2, + ACTIONS(15832), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109497] = 2, - ACTIONS(14874), 1, + [19145] = 2, + ACTIONS(15834), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109505] = 2, - ACTIONS(14876), 1, + [19153] = 2, + ACTIONS(15836), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109513] = 2, - ACTIONS(14878), 1, + [19161] = 2, + ACTIONS(15838), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109521] = 2, - ACTIONS(14880), 1, + [19169] = 2, + ACTIONS(15840), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109529] = 2, - ACTIONS(14882), 1, + [19177] = 2, + ACTIONS(15842), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109537] = 2, - ACTIONS(14884), 1, + [19185] = 2, + ACTIONS(15844), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109545] = 2, - ACTIONS(14886), 1, + [19193] = 2, + ACTIONS(15846), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109553] = 2, - ACTIONS(14888), 1, + [19201] = 2, + ACTIONS(15848), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109561] = 2, - ACTIONS(14890), 1, + [19209] = 2, + ACTIONS(15850), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109569] = 2, - ACTIONS(14892), 1, + [19217] = 2, + ACTIONS(15852), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109577] = 2, - ACTIONS(14894), 1, + [19225] = 2, + ACTIONS(15854), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109585] = 2, - ACTIONS(14896), 1, + [19233] = 2, + ACTIONS(15856), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109593] = 2, - ACTIONS(14898), 1, + [19241] = 2, + ACTIONS(15858), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109601] = 2, - ACTIONS(14900), 1, + [19249] = 2, + ACTIONS(15860), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109609] = 2, - ACTIONS(14902), 1, + [19257] = 2, + ACTIONS(15862), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109617] = 2, - ACTIONS(14904), 1, + [19265] = 2, + ACTIONS(15864), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109625] = 2, - ACTIONS(14906), 1, + [19273] = 2, + ACTIONS(15866), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109633] = 2, - ACTIONS(14908), 1, + [19281] = 2, + ACTIONS(15868), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109641] = 2, - ACTIONS(14910), 1, + [19289] = 2, + ACTIONS(15870), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109649] = 2, - ACTIONS(14912), 1, + [19297] = 2, + ACTIONS(15872), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109657] = 2, - ACTIONS(14914), 1, + [19305] = 2, + ACTIONS(15874), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109665] = 2, - ACTIONS(14916), 1, + [19313] = 2, + ACTIONS(15876), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109673] = 2, - ACTIONS(14918), 1, + [19321] = 2, + ACTIONS(15878), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109681] = 2, - ACTIONS(14920), 1, + [19329] = 2, + ACTIONS(15880), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109689] = 2, - ACTIONS(14922), 1, + [19337] = 2, + ACTIONS(15882), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109697] = 2, - ACTIONS(14924), 1, + [19345] = 2, + ACTIONS(15884), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109705] = 2, - ACTIONS(14926), 1, + [19353] = 2, + ACTIONS(15886), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109713] = 2, - ACTIONS(14928), 1, + [19361] = 2, + ACTIONS(15888), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109721] = 2, - ACTIONS(14930), 1, + [19369] = 2, + ACTIONS(15890), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109729] = 2, - ACTIONS(14932), 1, + [19377] = 2, + ACTIONS(15892), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109737] = 2, - ACTIONS(14934), 1, + [19385] = 2, + ACTIONS(15894), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109745] = 2, - ACTIONS(14936), 1, + [19393] = 2, + ACTIONS(15896), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109753] = 2, - ACTIONS(14938), 1, + [19401] = 2, + ACTIONS(15898), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109761] = 2, - ACTIONS(14940), 1, + [19409] = 2, + ACTIONS(15900), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109769] = 2, - ACTIONS(14942), 1, + [19417] = 2, + ACTIONS(15902), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109777] = 2, - ACTIONS(14944), 1, + [19425] = 2, + ACTIONS(15904), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109785] = 2, - ACTIONS(14946), 1, + [19433] = 2, + ACTIONS(15906), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109793] = 2, - ACTIONS(14948), 1, + [19441] = 2, + ACTIONS(15908), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109801] = 2, - ACTIONS(14950), 1, + [19449] = 2, + ACTIONS(15910), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109809] = 2, - ACTIONS(14952), 1, + [19457] = 2, + ACTIONS(15912), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109817] = 2, - ACTIONS(14954), 1, + [19465] = 2, + ACTIONS(15914), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109825] = 2, - ACTIONS(14956), 1, + [19473] = 2, + ACTIONS(15916), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109833] = 2, - ACTIONS(14958), 1, + [19481] = 2, + ACTIONS(15918), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109841] = 2, - ACTIONS(14960), 1, + [19489] = 2, + ACTIONS(15920), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109849] = 2, - ACTIONS(14962), 1, + [19497] = 2, + ACTIONS(15922), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109857] = 2, - ACTIONS(14964), 1, + [19505] = 2, + ACTIONS(15924), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109865] = 2, - ACTIONS(14966), 1, + [19513] = 2, + ACTIONS(15926), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109873] = 2, - ACTIONS(14968), 1, + [19521] = 2, + ACTIONS(15928), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109881] = 2, - ACTIONS(14970), 1, + [19529] = 2, + ACTIONS(15930), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109889] = 2, - ACTIONS(14972), 1, + [19537] = 2, + ACTIONS(15932), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109897] = 2, - ACTIONS(14974), 1, + [19545] = 2, + ACTIONS(15934), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109905] = 2, - ACTIONS(14976), 1, + [19553] = 2, + ACTIONS(15936), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109913] = 2, - ACTIONS(14978), 1, + [19561] = 2, + ACTIONS(15938), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109921] = 2, - ACTIONS(14980), 1, + [19569] = 2, + ACTIONS(15940), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109929] = 2, - ACTIONS(14982), 1, + [19577] = 2, + ACTIONS(15942), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109937] = 2, - ACTIONS(14984), 1, + [19585] = 2, + ACTIONS(15944), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109945] = 2, - ACTIONS(14986), 1, + [19593] = 2, + ACTIONS(15946), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109953] = 2, - ACTIONS(14988), 1, + [19601] = 2, + ACTIONS(15948), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109961] = 2, - ACTIONS(14990), 1, + [19609] = 2, + ACTIONS(15950), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109969] = 2, - ACTIONS(14992), 1, + [19617] = 2, + ACTIONS(15952), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109977] = 2, - ACTIONS(14994), 1, + [19625] = 2, + ACTIONS(15954), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109985] = 2, - ACTIONS(14996), 1, + [19633] = 2, + ACTIONS(15956), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [109993] = 2, - ACTIONS(14998), 1, + [19641] = 2, + ACTIONS(15958), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110001] = 2, - ACTIONS(15000), 1, + [19649] = 2, + ACTIONS(15960), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110009] = 2, - ACTIONS(15002), 1, + [19657] = 2, + ACTIONS(15962), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110017] = 2, - ACTIONS(15004), 1, + [19665] = 2, + ACTIONS(15964), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110025] = 2, - ACTIONS(15006), 1, + [19673] = 2, + ACTIONS(15966), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110033] = 2, - ACTIONS(15008), 1, + [19681] = 2, + ACTIONS(15968), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110041] = 2, - ACTIONS(15010), 1, + [19689] = 2, + ACTIONS(15970), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110049] = 2, - ACTIONS(15012), 1, + [19697] = 2, + ACTIONS(15972), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110057] = 2, - ACTIONS(15014), 1, + [19705] = 2, + ACTIONS(15974), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110065] = 2, - ACTIONS(15016), 1, + [19713] = 2, + ACTIONS(15976), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110073] = 2, - ACTIONS(15018), 1, + [19721] = 2, + ACTIONS(15978), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110081] = 2, - ACTIONS(15020), 1, + [19729] = 2, + ACTIONS(15980), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110089] = 2, - ACTIONS(15022), 1, + [19737] = 2, + ACTIONS(15982), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110097] = 2, - ACTIONS(15024), 1, + [19745] = 2, + ACTIONS(15984), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110105] = 2, - ACTIONS(15026), 1, + [19753] = 2, + ACTIONS(15986), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110113] = 2, - ACTIONS(15028), 1, + [19761] = 2, + ACTIONS(15988), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110121] = 2, - ACTIONS(15030), 1, + [19769] = 2, + ACTIONS(15990), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110129] = 2, - ACTIONS(15032), 1, + [19777] = 2, + ACTIONS(15992), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110137] = 2, - ACTIONS(15034), 1, + [19785] = 2, + ACTIONS(15994), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110145] = 2, - ACTIONS(15036), 1, + [19793] = 2, + ACTIONS(15996), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110153] = 2, - ACTIONS(15038), 1, + [19801] = 2, + ACTIONS(15998), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110161] = 2, - ACTIONS(15040), 1, + [19809] = 2, + ACTIONS(16000), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110169] = 2, - ACTIONS(15042), 1, + [19817] = 2, + ACTIONS(16002), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110177] = 2, - ACTIONS(15044), 1, + [19825] = 2, + ACTIONS(16004), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110185] = 2, - ACTIONS(15046), 1, + [19833] = 2, + ACTIONS(16006), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110193] = 2, - ACTIONS(15048), 1, + [19841] = 2, + ACTIONS(16008), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110201] = 2, - ACTIONS(15050), 1, + [19849] = 2, + ACTIONS(16010), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110209] = 2, - ACTIONS(15052), 1, + [19857] = 2, + ACTIONS(16012), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110217] = 2, - ACTIONS(15054), 1, + [19865] = 2, + ACTIONS(16014), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110225] = 2, - ACTIONS(15056), 1, + [19873] = 2, + ACTIONS(16016), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110233] = 2, - ACTIONS(15058), 1, + [19881] = 2, + ACTIONS(16018), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110241] = 2, - ACTIONS(15060), 1, + [19889] = 2, + ACTIONS(16020), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110249] = 2, - ACTIONS(15062), 1, + [19897] = 2, + ACTIONS(16022), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110257] = 2, - ACTIONS(15064), 1, + [19905] = 2, + ACTIONS(16024), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110265] = 2, - ACTIONS(15066), 1, + [19913] = 2, + ACTIONS(16026), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110273] = 2, - ACTIONS(15068), 1, + [19921] = 2, + ACTIONS(16028), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110281] = 2, - ACTIONS(15070), 1, + [19929] = 2, + ACTIONS(16030), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110289] = 2, - ACTIONS(15072), 1, + [19937] = 2, + ACTIONS(16032), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110297] = 2, - ACTIONS(15074), 1, + [19945] = 2, + ACTIONS(16034), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110305] = 2, - ACTIONS(15076), 1, + [19953] = 2, + ACTIONS(16036), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110313] = 2, - ACTIONS(15078), 1, + [19961] = 2, + ACTIONS(16038), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110321] = 2, - ACTIONS(15080), 1, + [19969] = 2, + ACTIONS(16040), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110329] = 2, - ACTIONS(15082), 1, + [19977] = 2, + ACTIONS(16042), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110337] = 2, - ACTIONS(15084), 1, + [19985] = 2, + ACTIONS(16044), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110345] = 2, - ACTIONS(15086), 1, + [19993] = 2, + ACTIONS(16046), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110353] = 2, - ACTIONS(15088), 1, + [20001] = 2, + ACTIONS(16048), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110361] = 2, - ACTIONS(15090), 1, + [20009] = 2, + ACTIONS(16050), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110369] = 2, - ACTIONS(15092), 1, + [20017] = 2, + ACTIONS(16052), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110377] = 2, - ACTIONS(15094), 1, + [20025] = 2, + ACTIONS(16054), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110385] = 2, - ACTIONS(15096), 1, + [20033] = 2, + ACTIONS(16056), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110393] = 2, - ACTIONS(15098), 1, + [20041] = 2, + ACTIONS(16058), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110401] = 2, - ACTIONS(15100), 1, + [20049] = 2, + ACTIONS(16060), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110409] = 2, - ACTIONS(15102), 1, + [20057] = 2, + ACTIONS(16062), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110417] = 2, - ACTIONS(15104), 1, + [20065] = 2, + ACTIONS(16064), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110425] = 2, - ACTIONS(15106), 1, + [20073] = 2, + ACTIONS(16066), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110433] = 2, - ACTIONS(15108), 1, + [20081] = 2, + ACTIONS(16068), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110441] = 2, - ACTIONS(15110), 1, + [20089] = 2, + ACTIONS(16070), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110449] = 2, - ACTIONS(15112), 1, + [20097] = 2, + ACTIONS(16072), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110457] = 2, - ACTIONS(15114), 1, + [20105] = 2, + ACTIONS(16074), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110465] = 2, - ACTIONS(15116), 1, + [20113] = 2, + ACTIONS(16076), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110473] = 2, - ACTIONS(15118), 1, + [20121] = 2, + ACTIONS(16078), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110481] = 2, - ACTIONS(15120), 1, + [20129] = 2, + ACTIONS(16080), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110489] = 2, - ACTIONS(15122), 1, + [20137] = 2, + ACTIONS(16082), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110497] = 2, - ACTIONS(15124), 1, + [20145] = 2, + ACTIONS(16084), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110505] = 2, - ACTIONS(15126), 1, + [20153] = 2, + ACTIONS(16086), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110513] = 2, - ACTIONS(15128), 1, + [20161] = 2, + ACTIONS(16088), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110521] = 2, - ACTIONS(15130), 1, + [20169] = 2, + ACTIONS(16090), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110529] = 2, - ACTIONS(15132), 1, + [20177] = 2, + ACTIONS(16092), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110537] = 2, - ACTIONS(15134), 1, + [20185] = 2, + ACTIONS(16094), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110545] = 2, - ACTIONS(15136), 1, + [20193] = 2, + ACTIONS(16096), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110553] = 2, - ACTIONS(15138), 1, + [20201] = 2, + ACTIONS(16098), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110561] = 2, - ACTIONS(15140), 1, + [20209] = 2, + ACTIONS(16100), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110569] = 2, - ACTIONS(15142), 1, + [20217] = 2, + ACTIONS(16102), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110577] = 2, - ACTIONS(15144), 1, + [20225] = 2, + ACTIONS(16104), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110585] = 2, - ACTIONS(15146), 1, + [20233] = 2, + ACTIONS(16106), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110593] = 2, - ACTIONS(15148), 1, + [20241] = 2, + ACTIONS(16108), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110601] = 2, - ACTIONS(15150), 1, + [20249] = 2, + ACTIONS(16110), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110609] = 2, - ACTIONS(15152), 1, + [20257] = 2, + ACTIONS(16112), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110617] = 2, - ACTIONS(15154), 1, + [20265] = 2, + ACTIONS(16114), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110625] = 2, - ACTIONS(15156), 1, + [20273] = 2, + ACTIONS(16116), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110633] = 2, - ACTIONS(15158), 1, + [20281] = 2, + ACTIONS(16118), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110641] = 2, - ACTIONS(15160), 1, + [20289] = 2, + ACTIONS(16120), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110649] = 2, - ACTIONS(15162), 1, + [20297] = 2, + ACTIONS(16122), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110657] = 2, - ACTIONS(15164), 1, + [20305] = 2, + ACTIONS(16124), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110665] = 2, - ACTIONS(15166), 1, + [20313] = 2, + ACTIONS(16126), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110673] = 2, - ACTIONS(15168), 1, + [20321] = 2, + ACTIONS(16128), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110681] = 2, - ACTIONS(15170), 1, + [20329] = 2, + ACTIONS(16130), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110689] = 2, - ACTIONS(15172), 1, + [20337] = 2, + ACTIONS(16132), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110697] = 2, - ACTIONS(15174), 1, + [20345] = 2, + ACTIONS(16134), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110705] = 2, - ACTIONS(15176), 1, + [20353] = 2, + ACTIONS(16136), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110713] = 2, - ACTIONS(15178), 1, + [20361] = 2, + ACTIONS(16138), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110721] = 2, - ACTIONS(15180), 1, + [20369] = 2, + ACTIONS(16140), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110729] = 2, - ACTIONS(15182), 1, + [20377] = 2, + ACTIONS(16142), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110737] = 2, - ACTIONS(15184), 1, + [20385] = 2, + ACTIONS(16144), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110745] = 2, - ACTIONS(15186), 1, + [20393] = 2, + ACTIONS(16146), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110753] = 2, - ACTIONS(15188), 1, + [20401] = 2, + ACTIONS(16148), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110761] = 2, - ACTIONS(15190), 1, + [20409] = 2, + ACTIONS(16150), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110769] = 2, - ACTIONS(15192), 1, + [20417] = 2, + ACTIONS(16152), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110777] = 2, - ACTIONS(15194), 1, + [20425] = 2, + ACTIONS(16154), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110785] = 2, - ACTIONS(15196), 1, + [20433] = 2, + ACTIONS(16156), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110793] = 2, - ACTIONS(15198), 1, + [20441] = 2, + ACTIONS(16158), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110801] = 2, - ACTIONS(15200), 1, + [20449] = 2, + ACTIONS(16160), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110809] = 2, - ACTIONS(15202), 1, + [20457] = 2, + ACTIONS(16162), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110817] = 2, - ACTIONS(15204), 1, + [20465] = 2, + ACTIONS(16164), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110825] = 2, - ACTIONS(15206), 1, + [20473] = 2, + ACTIONS(16166), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110833] = 2, - ACTIONS(15208), 1, + [20481] = 2, + ACTIONS(16168), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110841] = 2, - ACTIONS(15210), 1, + [20489] = 2, + ACTIONS(16170), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110849] = 2, - ACTIONS(15212), 1, + [20497] = 2, + ACTIONS(16172), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110857] = 2, - ACTIONS(15214), 1, + [20505] = 2, + ACTIONS(16174), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110865] = 2, - ACTIONS(15216), 1, + [20513] = 2, + ACTIONS(16176), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110873] = 2, - ACTIONS(15218), 1, + [20521] = 2, + ACTIONS(16178), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110881] = 2, - ACTIONS(15220), 1, + [20529] = 2, + ACTIONS(16180), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110889] = 2, - ACTIONS(15222), 1, + [20537] = 2, + ACTIONS(16182), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110897] = 2, - ACTIONS(15224), 1, + [20545] = 2, + ACTIONS(16184), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110905] = 2, - ACTIONS(15226), 1, + [20553] = 2, + ACTIONS(16186), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110913] = 2, - ACTIONS(15228), 1, + [20561] = 2, + ACTIONS(16188), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110921] = 2, - ACTIONS(15230), 1, + [20569] = 2, + ACTIONS(16190), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110929] = 2, - ACTIONS(15232), 1, + [20577] = 2, + ACTIONS(16192), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110937] = 2, - ACTIONS(15234), 1, + [20585] = 2, + ACTIONS(16194), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110945] = 2, - ACTIONS(15236), 1, + [20593] = 2, + ACTIONS(16196), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110953] = 2, - ACTIONS(15238), 1, + [20601] = 2, + ACTIONS(16198), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110961] = 2, - ACTIONS(15240), 1, + [20609] = 2, + ACTIONS(16200), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110969] = 2, - ACTIONS(15242), 1, + [20617] = 2, + ACTIONS(16202), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110977] = 2, - ACTIONS(15244), 1, + [20625] = 2, + ACTIONS(16204), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110985] = 2, - ACTIONS(15246), 1, + [20633] = 2, + ACTIONS(16206), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [110993] = 2, - ACTIONS(15248), 1, + [20641] = 2, + ACTIONS(16208), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111001] = 2, - ACTIONS(15250), 1, + [20649] = 2, + ACTIONS(16210), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111009] = 2, - ACTIONS(15252), 1, + [20657] = 2, + ACTIONS(16212), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111017] = 2, - ACTIONS(15254), 1, + [20665] = 2, + ACTIONS(16214), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111025] = 2, - ACTIONS(15256), 1, + [20673] = 2, + ACTIONS(16216), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111033] = 2, - ACTIONS(15258), 1, + [20681] = 2, + ACTIONS(16218), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111041] = 2, - ACTIONS(15260), 1, + [20689] = 2, + ACTIONS(16220), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111049] = 2, - ACTIONS(15262), 1, + [20697] = 2, + ACTIONS(16222), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111057] = 2, - ACTIONS(15264), 1, + [20705] = 2, + ACTIONS(16224), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111065] = 2, - ACTIONS(15266), 1, + [20713] = 2, + ACTIONS(16226), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111073] = 2, - ACTIONS(15268), 1, + [20721] = 2, + ACTIONS(16228), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111081] = 2, - ACTIONS(15270), 1, + [20729] = 2, + ACTIONS(16230), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111089] = 2, - ACTIONS(15272), 1, + [20737] = 2, + ACTIONS(16232), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111097] = 2, - ACTIONS(15274), 1, + [20745] = 2, + ACTIONS(16234), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111105] = 2, - ACTIONS(15276), 1, + [20753] = 2, + ACTIONS(16236), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111113] = 2, - ACTIONS(15278), 1, + [20761] = 2, + ACTIONS(16238), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111121] = 2, - ACTIONS(15280), 1, + [20769] = 2, + ACTIONS(16240), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111129] = 2, - ACTIONS(15282), 1, + [20777] = 2, + ACTIONS(16242), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111137] = 2, - ACTIONS(15284), 1, + [20785] = 2, + ACTIONS(16244), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111145] = 2, - ACTIONS(15286), 1, + [20793] = 2, + ACTIONS(16246), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111153] = 2, - ACTIONS(15288), 1, + [20801] = 2, + ACTIONS(16248), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111161] = 2, - ACTIONS(15290), 1, + [20809] = 2, + ACTIONS(16250), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111169] = 2, - ACTIONS(15292), 1, + [20817] = 2, + ACTIONS(16252), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111177] = 2, - ACTIONS(15294), 1, + [20825] = 2, + ACTIONS(16254), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111185] = 2, - ACTIONS(15296), 1, + [20833] = 2, + ACTIONS(16256), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111193] = 2, - ACTIONS(15298), 1, + [20841] = 2, + ACTIONS(16258), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111201] = 2, - ACTIONS(15300), 1, + [20849] = 2, + ACTIONS(16260), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111209] = 2, - ACTIONS(15302), 1, + [20857] = 2, + ACTIONS(16262), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111217] = 2, - ACTIONS(15304), 1, + [20865] = 2, + ACTIONS(16264), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111225] = 2, - ACTIONS(15306), 1, + [20873] = 2, + ACTIONS(16266), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111233] = 2, - ACTIONS(15308), 1, + [20881] = 2, + ACTIONS(16268), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111241] = 2, - ACTIONS(15310), 1, + [20889] = 2, + ACTIONS(16270), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111249] = 2, - ACTIONS(15312), 1, + [20897] = 2, + ACTIONS(16272), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111257] = 2, - ACTIONS(15314), 1, + [20905] = 2, + ACTIONS(16274), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111265] = 2, - ACTIONS(15316), 1, + [20913] = 2, + ACTIONS(16276), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111273] = 2, - ACTIONS(15318), 1, + [20921] = 2, + ACTIONS(16278), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111281] = 2, - ACTIONS(15320), 1, + [20929] = 2, + ACTIONS(16280), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111289] = 2, - ACTIONS(15322), 1, + [20937] = 2, + ACTIONS(16282), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111297] = 2, - ACTIONS(15324), 1, + [20945] = 2, + ACTIONS(16284), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111305] = 2, - ACTIONS(15326), 1, + [20953] = 2, + ACTIONS(16286), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111313] = 2, - ACTIONS(15328), 1, + [20961] = 2, + ACTIONS(16288), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111321] = 2, - ACTIONS(15330), 1, + [20969] = 2, + ACTIONS(16290), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111329] = 2, - ACTIONS(15332), 1, + [20977] = 2, + ACTIONS(16292), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111337] = 2, - ACTIONS(15334), 1, + [20985] = 2, + ACTIONS(16294), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111345] = 2, - ACTIONS(15336), 1, + [20993] = 2, + ACTIONS(16296), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111353] = 2, - ACTIONS(15338), 1, + [21001] = 2, + ACTIONS(16298), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111361] = 2, - ACTIONS(15340), 1, + [21009] = 2, + ACTIONS(16300), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111369] = 2, - ACTIONS(15342), 1, + [21017] = 2, + ACTIONS(16302), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111377] = 2, - ACTIONS(15344), 1, + [21025] = 2, + ACTIONS(16304), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111385] = 2, - ACTIONS(15346), 1, + [21033] = 2, + ACTIONS(16306), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111393] = 2, - ACTIONS(15348), 1, + [21041] = 2, + ACTIONS(16308), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111401] = 2, - ACTIONS(15350), 1, + [21049] = 2, + ACTIONS(16310), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111409] = 2, - ACTIONS(15352), 1, + [21057] = 2, + ACTIONS(16312), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111417] = 2, - ACTIONS(15354), 1, + [21065] = 2, + ACTIONS(16314), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111425] = 2, - ACTIONS(15356), 1, + [21073] = 2, + ACTIONS(16316), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111433] = 2, - ACTIONS(15358), 1, + [21081] = 2, + ACTIONS(16318), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111441] = 2, - ACTIONS(15360), 1, + [21089] = 2, + ACTIONS(16320), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111449] = 2, - ACTIONS(15362), 1, + [21097] = 2, + ACTIONS(16322), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111457] = 2, - ACTIONS(15364), 1, + [21105] = 2, + ACTIONS(16324), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111465] = 2, - ACTIONS(15366), 1, + [21113] = 2, + ACTIONS(16326), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111473] = 2, - ACTIONS(15368), 1, + [21121] = 2, + ACTIONS(16328), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111481] = 2, - ACTIONS(15370), 1, + [21129] = 2, + ACTIONS(16330), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111489] = 2, - ACTIONS(15372), 1, + [21137] = 2, + ACTIONS(16332), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111497] = 2, - ACTIONS(15374), 1, + [21145] = 2, + ACTIONS(16334), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111505] = 2, - ACTIONS(15376), 1, + [21153] = 2, + ACTIONS(16336), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111513] = 2, - ACTIONS(15378), 1, + [21161] = 2, + ACTIONS(16338), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111521] = 2, - ACTIONS(15380), 1, + [21169] = 2, + ACTIONS(16340), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111529] = 2, - ACTIONS(15382), 1, + [21177] = 2, + ACTIONS(16342), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111537] = 2, - ACTIONS(15384), 1, + [21185] = 2, + ACTIONS(16344), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111545] = 2, - ACTIONS(15386), 1, + [21193] = 2, + ACTIONS(16346), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111553] = 2, - ACTIONS(15388), 1, + [21201] = 2, + ACTIONS(16348), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111561] = 2, - ACTIONS(15390), 1, + [21209] = 2, + ACTIONS(16350), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111569] = 2, - ACTIONS(15392), 1, + [21217] = 2, + ACTIONS(16352), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111577] = 2, - ACTIONS(15394), 1, + [21225] = 2, + ACTIONS(16354), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111585] = 2, - ACTIONS(15396), 1, + [21233] = 2, + ACTIONS(16356), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111593] = 2, - ACTIONS(15398), 1, + [21241] = 2, + ACTIONS(16358), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111601] = 2, - ACTIONS(15400), 1, + [21249] = 2, + ACTIONS(16360), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111609] = 2, - ACTIONS(15402), 1, + [21257] = 2, + ACTIONS(16362), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111617] = 2, - ACTIONS(15404), 1, + [21265] = 2, + ACTIONS(16364), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111625] = 2, - ACTIONS(15406), 1, + [21273] = 2, + ACTIONS(16366), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111633] = 2, - ACTIONS(15408), 1, + [21281] = 2, + ACTIONS(16368), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111641] = 2, - ACTIONS(15410), 1, + [21289] = 2, + ACTIONS(16370), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111649] = 2, - ACTIONS(15412), 1, + [21297] = 2, + ACTIONS(16372), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111657] = 2, - ACTIONS(15414), 1, + [21305] = 2, + ACTIONS(16374), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111665] = 2, - ACTIONS(15416), 1, + [21313] = 2, + ACTIONS(16376), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111673] = 2, - ACTIONS(15418), 1, + [21321] = 2, + ACTIONS(16378), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111681] = 2, - ACTIONS(15420), 1, + [21329] = 2, + ACTIONS(16380), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111689] = 2, - ACTIONS(15422), 1, + [21337] = 2, + ACTIONS(16382), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111697] = 2, - ACTIONS(15424), 1, + [21345] = 2, + ACTIONS(16384), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111705] = 2, - ACTIONS(15426), 1, + [21353] = 2, + ACTIONS(16386), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111713] = 2, - ACTIONS(15428), 1, + [21361] = 2, + ACTIONS(16388), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111721] = 2, - ACTIONS(15430), 1, + [21369] = 2, + ACTIONS(16390), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111729] = 2, - ACTIONS(15432), 1, + [21377] = 2, + ACTIONS(16392), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111737] = 2, - ACTIONS(15434), 1, + [21385] = 2, + ACTIONS(16394), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111745] = 2, - ACTIONS(15436), 1, + [21393] = 2, + ACTIONS(16396), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111753] = 2, - ACTIONS(15438), 1, + [21401] = 2, + ACTIONS(16398), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111761] = 2, - ACTIONS(15440), 1, + [21409] = 2, + ACTIONS(16400), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111769] = 2, - ACTIONS(15442), 1, + [21417] = 2, + ACTIONS(16402), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111777] = 2, - ACTIONS(15444), 1, + [21425] = 2, + ACTIONS(16404), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111785] = 2, - ACTIONS(15446), 1, + [21433] = 2, + ACTIONS(16406), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111793] = 2, - ACTIONS(15448), 1, + [21441] = 2, + ACTIONS(16408), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111801] = 2, - ACTIONS(15450), 1, + [21449] = 2, + ACTIONS(16410), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111809] = 2, - ACTIONS(15452), 1, + [21457] = 2, + ACTIONS(16412), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111817] = 2, - ACTIONS(15454), 1, + [21465] = 2, + ACTIONS(16414), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111825] = 2, - ACTIONS(15456), 1, + [21473] = 2, + ACTIONS(16416), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111833] = 2, - ACTIONS(15458), 1, + [21481] = 2, + ACTIONS(16418), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111841] = 2, - ACTIONS(15460), 1, + [21489] = 2, + ACTIONS(16420), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111849] = 2, - ACTIONS(15462), 1, + [21497] = 2, + ACTIONS(16422), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111857] = 2, - ACTIONS(15464), 1, + [21505] = 2, + ACTIONS(16424), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111865] = 2, - ACTIONS(15466), 1, + [21513] = 2, + ACTIONS(16426), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111873] = 2, - ACTIONS(15468), 1, + [21521] = 2, + ACTIONS(16428), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111881] = 2, - ACTIONS(15470), 1, + [21529] = 2, + ACTIONS(16430), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111889] = 2, - ACTIONS(15472), 1, + [21537] = 2, + ACTIONS(16432), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111897] = 2, - ACTIONS(15474), 1, + [21545] = 2, + ACTIONS(16434), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111905] = 2, - ACTIONS(15476), 1, + [21553] = 2, + ACTIONS(16436), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111913] = 2, - ACTIONS(15478), 1, + [21561] = 2, + ACTIONS(16438), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111921] = 2, - ACTIONS(15480), 1, + [21569] = 2, + ACTIONS(16440), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111929] = 2, - ACTIONS(15482), 1, + [21577] = 2, + ACTIONS(16442), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111937] = 2, - ACTIONS(15484), 1, + [21585] = 2, + ACTIONS(16444), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111945] = 2, - ACTIONS(15486), 1, + [21593] = 2, + ACTIONS(16446), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111953] = 2, - ACTIONS(15488), 1, + [21601] = 2, + ACTIONS(16448), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111961] = 2, - ACTIONS(15490), 1, + [21609] = 2, + ACTIONS(16450), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111969] = 2, - ACTIONS(15492), 1, + [21617] = 2, + ACTIONS(16452), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111977] = 2, - ACTIONS(15494), 1, + [21625] = 2, + ACTIONS(16454), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111985] = 2, - ACTIONS(15496), 1, + [21633] = 2, + ACTIONS(16456), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [111993] = 2, - ACTIONS(15498), 1, + [21641] = 2, + ACTIONS(16458), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112001] = 2, - ACTIONS(15500), 1, + [21649] = 2, + ACTIONS(16460), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112009] = 2, - ACTIONS(15502), 1, + [21657] = 2, + ACTIONS(16462), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112017] = 2, - ACTIONS(15504), 1, + [21665] = 2, + ACTIONS(16464), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112025] = 2, - ACTIONS(15506), 1, + [21673] = 2, + ACTIONS(16466), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112033] = 2, - ACTIONS(15508), 1, + [21681] = 2, + ACTIONS(16468), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112041] = 2, - ACTIONS(15510), 1, + [21689] = 2, + ACTIONS(16470), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112049] = 2, - ACTIONS(15512), 1, + [21697] = 2, + ACTIONS(16472), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112057] = 2, - ACTIONS(15514), 1, + [21705] = 2, + ACTIONS(16474), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112065] = 2, - ACTIONS(15516), 1, + [21713] = 2, + ACTIONS(16476), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112073] = 2, - ACTIONS(15518), 1, + [21721] = 2, + ACTIONS(16478), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112081] = 2, - ACTIONS(15520), 1, + [21729] = 2, + ACTIONS(16480), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112089] = 2, - ACTIONS(15522), 1, + [21737] = 2, + ACTIONS(16482), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112097] = 2, - ACTIONS(15524), 1, + [21745] = 2, + ACTIONS(16484), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112105] = 2, - ACTIONS(15526), 1, + [21753] = 2, + ACTIONS(16486), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112113] = 2, - ACTIONS(15528), 1, + [21761] = 2, + ACTIONS(16488), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112121] = 2, - ACTIONS(15530), 1, + [21769] = 2, + ACTIONS(16490), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112129] = 2, - ACTIONS(15532), 1, + [21777] = 2, + ACTIONS(16492), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112137] = 2, - ACTIONS(15534), 1, + [21785] = 2, + ACTIONS(16494), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112145] = 2, - ACTIONS(15536), 1, + [21793] = 2, + ACTIONS(16496), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112153] = 2, - ACTIONS(15538), 1, + [21801] = 2, + ACTIONS(16498), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112161] = 2, - ACTIONS(15540), 1, + [21809] = 2, + ACTIONS(16500), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112169] = 2, - ACTIONS(15542), 1, + [21817] = 2, + ACTIONS(16502), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112177] = 2, - ACTIONS(15544), 1, + [21825] = 2, + ACTIONS(16504), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112185] = 2, - ACTIONS(15546), 1, + [21833] = 2, + ACTIONS(16506), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112193] = 2, - ACTIONS(15548), 1, + [21841] = 2, + ACTIONS(16508), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112201] = 2, - ACTIONS(15550), 1, + [21849] = 2, + ACTIONS(16510), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112209] = 2, - ACTIONS(15552), 1, + [21857] = 2, + ACTIONS(16512), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112217] = 2, - ACTIONS(15554), 1, + [21865] = 2, + ACTIONS(16514), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112225] = 2, - ACTIONS(15556), 1, + [21873] = 2, + ACTIONS(16516), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112233] = 2, - ACTIONS(15558), 1, + [21881] = 2, + ACTIONS(16518), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112241] = 2, - ACTIONS(15560), 1, + [21889] = 2, + ACTIONS(16520), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112249] = 2, - ACTIONS(15562), 1, - aux_sym_command_definition_token2, + [21897] = 2, + ACTIONS(16522), 1, + aux_sym_command_definition_token1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112257] = 2, - ACTIONS(15564), 1, + [21905] = 2, + ACTIONS(16524), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112265] = 2, - ACTIONS(15566), 1, + [21913] = 2, + ACTIONS(16526), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112273] = 2, - ACTIONS(15568), 1, + [21921] = 2, + ACTIONS(16528), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112281] = 2, - ACTIONS(15570), 1, + [21929] = 2, + ACTIONS(16530), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112289] = 2, - ACTIONS(15572), 1, + [21937] = 2, + ACTIONS(16532), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112297] = 2, - ACTIONS(15574), 1, + [21945] = 2, + ACTIONS(16534), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112305] = 2, - ACTIONS(15576), 1, + [21953] = 2, + ACTIONS(16536), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112313] = 2, - ACTIONS(15578), 1, + [21961] = 2, + ACTIONS(16538), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112321] = 2, - ACTIONS(15580), 1, + [21969] = 2, + ACTIONS(16540), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112329] = 2, - ACTIONS(15582), 1, + [21977] = 2, + ACTIONS(16542), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112337] = 2, - ACTIONS(15584), 1, + [21985] = 2, + ACTIONS(16544), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112345] = 2, - ACTIONS(15586), 1, + [21993] = 2, + ACTIONS(16546), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112353] = 2, - ACTIONS(15588), 1, + [22001] = 2, + ACTIONS(16548), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112361] = 2, - ACTIONS(15590), 1, + [22009] = 2, + ACTIONS(16550), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112369] = 2, - ACTIONS(15592), 1, + [22017] = 2, + ACTIONS(16552), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112377] = 2, - ACTIONS(15594), 1, + [22025] = 2, + ACTIONS(16554), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112385] = 2, - ACTIONS(15596), 1, + [22033] = 2, + ACTIONS(16556), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112393] = 2, - ACTIONS(15598), 1, + [22041] = 2, + ACTIONS(16558), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112401] = 2, - ACTIONS(15600), 1, + [22049] = 2, + ACTIONS(16560), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112409] = 2, - ACTIONS(15602), 1, + [22057] = 2, + ACTIONS(16562), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112417] = 2, - ACTIONS(15604), 1, + [22065] = 2, + ACTIONS(16564), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112425] = 2, - ACTIONS(15606), 1, + [22073] = 2, + ACTIONS(16566), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112433] = 2, - ACTIONS(15608), 1, + [22081] = 2, + ACTIONS(16568), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112441] = 2, - ACTIONS(15610), 1, + [22089] = 2, + ACTIONS(16570), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112449] = 2, - ACTIONS(15612), 1, + [22097] = 2, + ACTIONS(16572), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112457] = 2, - ACTIONS(15614), 1, + [22105] = 2, + ACTIONS(16574), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112465] = 2, - ACTIONS(15616), 1, + [22113] = 2, + ACTIONS(16576), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112473] = 2, - ACTIONS(15618), 1, + [22121] = 2, + ACTIONS(16578), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112481] = 2, - ACTIONS(15620), 1, + [22129] = 2, + ACTIONS(16580), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112489] = 2, - ACTIONS(15622), 1, + [22137] = 2, + ACTIONS(16582), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112497] = 2, - ACTIONS(15624), 1, + [22145] = 2, + ACTIONS(16584), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112505] = 2, - ACTIONS(15626), 1, + [22153] = 2, + ACTIONS(16586), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112513] = 2, - ACTIONS(15628), 1, + [22161] = 2, + ACTIONS(16588), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112521] = 2, - ACTIONS(15630), 1, + [22169] = 2, + ACTIONS(16590), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112529] = 2, - ACTIONS(15632), 1, + [22177] = 2, + ACTIONS(16592), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112537] = 2, - ACTIONS(15634), 1, + [22185] = 2, + ACTIONS(16594), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112545] = 2, - ACTIONS(15636), 1, + [22193] = 2, + ACTIONS(16596), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112553] = 2, - ACTIONS(15638), 1, + [22201] = 2, + ACTIONS(16598), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112561] = 2, - ACTIONS(15640), 1, + [22209] = 2, + ACTIONS(16600), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112569] = 2, - ACTIONS(15642), 1, + [22217] = 2, + ACTIONS(16602), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112577] = 2, - ACTIONS(15644), 1, + [22225] = 2, + ACTIONS(16604), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112585] = 2, - ACTIONS(15646), 1, + [22233] = 2, + ACTIONS(16606), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112593] = 2, - ACTIONS(15648), 1, + [22241] = 2, + ACTIONS(16608), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112601] = 2, - ACTIONS(15650), 1, + [22249] = 2, + ACTIONS(16610), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112609] = 2, - ACTIONS(15652), 1, + [22257] = 2, + ACTIONS(16612), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112617] = 2, - ACTIONS(15654), 1, + [22265] = 2, + ACTIONS(16614), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112625] = 2, - ACTIONS(15656), 1, + [22273] = 2, + ACTIONS(16616), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112633] = 2, - ACTIONS(15658), 1, + [22281] = 2, + ACTIONS(16618), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112641] = 2, - ACTIONS(15660), 1, + [22289] = 2, + ACTIONS(16620), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112649] = 2, - ACTIONS(15662), 1, + [22297] = 2, + ACTIONS(16622), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112657] = 2, - ACTIONS(15664), 1, + [22305] = 2, + ACTIONS(16624), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112665] = 2, - ACTIONS(15666), 1, + [22313] = 2, + ACTIONS(16626), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112673] = 2, - ACTIONS(15668), 1, + [22321] = 2, + ACTIONS(16628), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112681] = 2, - ACTIONS(15670), 1, + [22329] = 2, + ACTIONS(16630), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112689] = 2, - ACTIONS(15672), 1, + [22337] = 2, + ACTIONS(16632), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112697] = 2, - ACTIONS(15674), 1, + [22345] = 2, + ACTIONS(16634), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112705] = 2, - ACTIONS(15676), 1, + [22353] = 2, + ACTIONS(16636), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112713] = 2, - ACTIONS(15678), 1, + [22361] = 2, + ACTIONS(16638), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112721] = 2, - ACTIONS(15680), 1, + [22369] = 2, + ACTIONS(16640), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112729] = 2, - ACTIONS(15682), 1, + [22377] = 2, + ACTIONS(16642), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112737] = 2, - ACTIONS(15684), 1, + [22385] = 2, + ACTIONS(16644), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112745] = 2, - ACTIONS(15686), 1, + [22393] = 2, + ACTIONS(16646), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112753] = 2, - ACTIONS(15688), 1, + [22401] = 2, + ACTIONS(16648), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112761] = 2, - ACTIONS(15690), 1, + [22409] = 2, + ACTIONS(16650), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112769] = 2, - ACTIONS(15692), 1, + [22417] = 2, + ACTIONS(16652), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112777] = 2, - ACTIONS(15694), 1, + [22425] = 2, + ACTIONS(16654), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112785] = 2, - ACTIONS(15696), 1, + [22433] = 2, + ACTIONS(16656), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112793] = 2, - ACTIONS(15698), 1, + [22441] = 2, + ACTIONS(16658), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112801] = 2, - ACTIONS(15700), 1, + [22449] = 2, + ACTIONS(16660), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112809] = 2, - ACTIONS(15702), 1, + [22457] = 2, + ACTIONS(16662), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112817] = 2, - ACTIONS(15704), 1, + [22465] = 2, + ACTIONS(16664), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112825] = 2, - ACTIONS(15706), 1, + [22473] = 2, + ACTIONS(16666), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112833] = 2, - ACTIONS(15708), 1, + [22481] = 2, + ACTIONS(16668), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112841] = 2, - ACTIONS(15710), 1, + [22489] = 2, + ACTIONS(16670), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112849] = 2, - ACTIONS(15712), 1, + [22497] = 2, + ACTIONS(16672), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112857] = 2, - ACTIONS(15714), 1, + [22505] = 2, + ACTIONS(16674), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112865] = 2, - ACTIONS(15716), 1, + [22513] = 2, + ACTIONS(16676), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112873] = 2, - ACTIONS(15718), 1, + [22521] = 2, + ACTIONS(16678), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112881] = 2, - ACTIONS(15720), 1, + [22529] = 2, + ACTIONS(16680), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112889] = 2, - ACTIONS(15722), 1, + [22537] = 2, + ACTIONS(16682), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112897] = 2, - ACTIONS(15724), 1, + [22545] = 2, + ACTIONS(16684), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112905] = 2, - ACTIONS(15726), 1, + [22553] = 2, + ACTIONS(16686), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112913] = 2, - ACTIONS(15728), 1, + [22561] = 2, + ACTIONS(16688), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112921] = 2, - ACTIONS(15730), 1, + [22569] = 2, + ACTIONS(16690), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112929] = 2, - ACTIONS(15732), 1, + [22577] = 2, + ACTIONS(16692), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112937] = 2, - ACTIONS(15734), 1, + [22585] = 2, + ACTIONS(16694), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112945] = 2, - ACTIONS(15736), 1, + [22593] = 2, + ACTIONS(16696), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112953] = 2, - ACTIONS(15738), 1, + [22601] = 2, + ACTIONS(16698), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112961] = 2, - ACTIONS(15740), 1, + [22609] = 2, + ACTIONS(16700), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112969] = 2, - ACTIONS(15742), 1, + [22617] = 2, + ACTIONS(16702), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112977] = 2, - ACTIONS(15744), 1, + [22625] = 2, + ACTIONS(16704), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112985] = 2, - ACTIONS(15746), 1, + [22633] = 2, + ACTIONS(16706), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [112993] = 2, - ACTIONS(15748), 1, + [22641] = 2, + ACTIONS(16708), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113001] = 2, - ACTIONS(15750), 1, + [22649] = 2, + ACTIONS(16710), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113009] = 2, - ACTIONS(15752), 1, + [22657] = 2, + ACTIONS(16712), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113017] = 2, - ACTIONS(15754), 1, + [22665] = 2, + ACTIONS(16714), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113025] = 2, - ACTIONS(15756), 1, + [22673] = 2, + ACTIONS(16716), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113033] = 2, - ACTIONS(15758), 1, + [22681] = 2, + ACTIONS(16718), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113041] = 2, - ACTIONS(15760), 1, + [22689] = 2, + ACTIONS(16720), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113049] = 2, - ACTIONS(15762), 1, + [22697] = 2, + ACTIONS(16722), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113057] = 2, - ACTIONS(15764), 1, + [22705] = 2, + ACTIONS(16724), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113065] = 2, - ACTIONS(15766), 1, + [22713] = 2, + ACTIONS(16726), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113073] = 2, - ACTIONS(15768), 1, + [22721] = 2, + ACTIONS(16728), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113081] = 2, - ACTIONS(15770), 1, + [22729] = 2, + ACTIONS(16730), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113089] = 2, - ACTIONS(15772), 1, + [22737] = 2, + ACTIONS(16732), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113097] = 2, - ACTIONS(15774), 1, + [22745] = 2, + ACTIONS(16734), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113105] = 2, - ACTIONS(15776), 1, + [22753] = 2, + ACTIONS(16736), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113113] = 2, - ACTIONS(15778), 1, + [22761] = 2, + ACTIONS(16738), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113121] = 2, - ACTIONS(15780), 1, + [22769] = 2, + ACTIONS(16740), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113129] = 2, - ACTIONS(15782), 1, + [22777] = 2, + ACTIONS(16742), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113137] = 2, - ACTIONS(15784), 1, + [22785] = 2, + ACTIONS(16744), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113145] = 2, - ACTIONS(15786), 1, + [22793] = 2, + ACTIONS(16746), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113153] = 2, - ACTIONS(15788), 1, + [22801] = 2, + ACTIONS(16748), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113161] = 2, - ACTIONS(15790), 1, + [22809] = 2, + ACTIONS(16750), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113169] = 2, - ACTIONS(15792), 1, + [22817] = 2, + ACTIONS(16752), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113177] = 2, - ACTIONS(15794), 1, + [22825] = 2, + ACTIONS(16754), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113185] = 2, - ACTIONS(15796), 1, + [22833] = 2, + ACTIONS(16756), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113193] = 2, - ACTIONS(15798), 1, + [22841] = 2, + ACTIONS(16758), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113201] = 2, - ACTIONS(15800), 1, + [22849] = 2, + ACTIONS(16760), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113209] = 2, - ACTIONS(15802), 1, + [22857] = 2, + ACTIONS(16762), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113217] = 2, - ACTIONS(15804), 1, + [22865] = 2, + ACTIONS(16764), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113225] = 2, - ACTIONS(15806), 1, + [22873] = 2, + ACTIONS(16766), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113233] = 2, - ACTIONS(15808), 1, + [22881] = 2, + ACTIONS(16768), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113241] = 2, - ACTIONS(15810), 1, + [22889] = 2, + ACTIONS(16770), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113249] = 2, - ACTIONS(15812), 1, + [22897] = 2, + ACTIONS(16772), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113257] = 2, - ACTIONS(15814), 1, + [22905] = 2, + ACTIONS(16774), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113265] = 2, - ACTIONS(15816), 1, + [22913] = 2, + ACTIONS(16776), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113273] = 2, - ACTIONS(15818), 1, + [22921] = 2, + ACTIONS(16778), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113281] = 2, - ACTIONS(15820), 1, + [22929] = 2, + ACTIONS(16780), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113289] = 2, - ACTIONS(15822), 1, + [22937] = 2, + ACTIONS(16782), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113297] = 2, - ACTIONS(15824), 1, + [22945] = 2, + ACTIONS(16784), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113305] = 2, - ACTIONS(15826), 1, + [22953] = 2, + ACTIONS(16786), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113313] = 2, - ACTIONS(15828), 1, + [22961] = 2, + ACTIONS(16788), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113321] = 2, - ACTIONS(15830), 1, + [22969] = 2, + ACTIONS(16790), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113329] = 2, - ACTIONS(15832), 1, + [22977] = 2, + ACTIONS(16792), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113337] = 2, - ACTIONS(15834), 1, + [22985] = 2, + ACTIONS(16794), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113345] = 2, - ACTIONS(15836), 1, + [22993] = 2, + ACTIONS(16796), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113353] = 2, - ACTIONS(15838), 1, + [23001] = 2, + ACTIONS(16798), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113361] = 2, - ACTIONS(15840), 1, + [23009] = 2, + ACTIONS(16800), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113369] = 2, - ACTIONS(15842), 1, + [23017] = 2, + ACTIONS(16802), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113377] = 2, - ACTIONS(15844), 1, + [23025] = 2, + ACTIONS(16804), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113385] = 2, - ACTIONS(15846), 1, + [23033] = 2, + ACTIONS(16806), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113393] = 2, - ACTIONS(15848), 1, + [23041] = 2, + ACTIONS(16808), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113401] = 2, - ACTIONS(15850), 1, + [23049] = 2, + ACTIONS(16810), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113409] = 2, - ACTIONS(15852), 1, + [23057] = 2, + ACTIONS(16812), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113417] = 2, - ACTIONS(15854), 1, + [23065] = 2, + ACTIONS(16814), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113425] = 2, - ACTIONS(15856), 1, + [23073] = 2, + ACTIONS(16816), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113433] = 2, - ACTIONS(15858), 1, + [23081] = 2, + ACTIONS(16818), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113441] = 2, - ACTIONS(15860), 1, + [23089] = 2, + ACTIONS(16820), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113449] = 2, - ACTIONS(15862), 1, + [23097] = 2, + ACTIONS(16822), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113457] = 2, - ACTIONS(15864), 1, + [23105] = 2, + ACTIONS(16824), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113465] = 2, - ACTIONS(15866), 1, + [23113] = 2, + ACTIONS(16826), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113473] = 2, - ACTIONS(15868), 1, + [23121] = 2, + ACTIONS(16828), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113481] = 2, - ACTIONS(15870), 1, + [23129] = 2, + ACTIONS(16830), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113489] = 2, - ACTIONS(15872), 1, + [23137] = 2, + ACTIONS(16832), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113497] = 2, - ACTIONS(15874), 1, + [23145] = 2, + ACTIONS(16834), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113505] = 2, - ACTIONS(15876), 1, + [23153] = 2, + ACTIONS(16836), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113513] = 2, - ACTIONS(15878), 1, + [23161] = 2, + ACTIONS(16838), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113521] = 2, - ACTIONS(15880), 1, + [23169] = 2, + ACTIONS(16840), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113529] = 2, - ACTIONS(15882), 1, + [23177] = 2, + ACTIONS(16842), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113537] = 2, - ACTIONS(15884), 1, + [23185] = 2, + ACTIONS(16844), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113545] = 2, - ACTIONS(15886), 1, + [23193] = 2, + ACTIONS(16846), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113553] = 2, - ACTIONS(15888), 1, + [23201] = 2, + ACTIONS(16848), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113561] = 2, - ACTIONS(15890), 1, + [23209] = 2, + ACTIONS(16850), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113569] = 2, - ACTIONS(15892), 1, + [23217] = 2, + ACTIONS(16852), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113577] = 2, - ACTIONS(15894), 1, + [23225] = 2, + ACTIONS(16854), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113585] = 2, - ACTIONS(15896), 1, + [23233] = 2, + ACTIONS(16856), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113593] = 2, - ACTIONS(15898), 1, + [23241] = 2, + ACTIONS(16858), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113601] = 2, - ACTIONS(15900), 1, + [23249] = 2, + ACTIONS(16860), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113609] = 2, - ACTIONS(15902), 1, + [23257] = 2, + ACTIONS(16862), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113617] = 2, - ACTIONS(15904), 1, + [23265] = 2, + ACTIONS(16864), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113625] = 2, - ACTIONS(15906), 1, + [23273] = 2, + ACTIONS(16866), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113633] = 2, - ACTIONS(15908), 1, + [23281] = 2, + ACTIONS(16868), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113641] = 2, - ACTIONS(15910), 1, + [23289] = 2, + ACTIONS(16870), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113649] = 2, - ACTIONS(15912), 1, + [23297] = 2, + ACTIONS(16872), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113657] = 2, - ACTIONS(15914), 1, + [23305] = 2, + ACTIONS(16874), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113665] = 2, - ACTIONS(15916), 1, + [23313] = 2, + ACTIONS(16876), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113673] = 2, - ACTIONS(15918), 1, + [23321] = 2, + ACTIONS(16878), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113681] = 2, - ACTIONS(15920), 1, + [23329] = 2, + ACTIONS(16880), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113689] = 2, - ACTIONS(15922), 1, + [23337] = 2, + ACTIONS(16882), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113697] = 2, - ACTIONS(15924), 1, + [23345] = 2, + ACTIONS(16884), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113705] = 2, - ACTIONS(15926), 1, + [23353] = 2, + ACTIONS(16886), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113713] = 2, - ACTIONS(15928), 1, + [23361] = 2, + ACTIONS(16888), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113721] = 2, - ACTIONS(15930), 1, + [23369] = 2, + ACTIONS(16890), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113729] = 2, - ACTIONS(15932), 1, + [23377] = 2, + ACTIONS(16892), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113737] = 2, - ACTIONS(15934), 1, + [23385] = 2, + ACTIONS(16894), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113745] = 2, - ACTIONS(15936), 1, + [23393] = 2, + ACTIONS(16896), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113753] = 2, - ACTIONS(15938), 1, + [23401] = 2, + ACTIONS(16898), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113761] = 2, - ACTIONS(15940), 1, + [23409] = 2, + ACTIONS(16900), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113769] = 2, - ACTIONS(15942), 1, + [23417] = 2, + ACTIONS(16902), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113777] = 2, - ACTIONS(15944), 1, + [23425] = 2, + ACTIONS(16904), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113785] = 2, - ACTIONS(15946), 1, + [23433] = 2, + ACTIONS(16906), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113793] = 2, - ACTIONS(15948), 1, + [23441] = 2, + ACTIONS(16908), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113801] = 2, - ACTIONS(15950), 1, + [23449] = 2, + ACTIONS(16910), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113809] = 2, - ACTIONS(15952), 1, + [23457] = 2, + ACTIONS(16912), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113817] = 2, - ACTIONS(15954), 1, + [23465] = 2, + ACTIONS(16914), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113825] = 2, - ACTIONS(15956), 1, + [23473] = 2, + ACTIONS(16916), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113833] = 2, - ACTIONS(15958), 1, + [23481] = 2, + ACTIONS(16918), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113841] = 2, - ACTIONS(15960), 1, + [23489] = 2, + ACTIONS(16920), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113849] = 2, - ACTIONS(15962), 1, + [23497] = 2, + ACTIONS(16922), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113857] = 2, - ACTIONS(15964), 1, + [23505] = 2, + ACTIONS(16924), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113865] = 2, - ACTIONS(15966), 1, + [23513] = 2, + ACTIONS(16926), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113873] = 2, - ACTIONS(15968), 1, + [23521] = 2, + ACTIONS(16928), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113881] = 2, - ACTIONS(15970), 1, + [23529] = 2, + ACTIONS(16930), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113889] = 2, - ACTIONS(15972), 1, + [23537] = 2, + ACTIONS(16932), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113897] = 2, - ACTIONS(15974), 1, + [23545] = 2, + ACTIONS(16934), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113905] = 2, - ACTIONS(15976), 1, + [23553] = 2, + ACTIONS(16936), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113913] = 2, - ACTIONS(15978), 1, + [23561] = 2, + ACTIONS(16938), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113921] = 2, - ACTIONS(15980), 1, + [23569] = 2, + ACTIONS(16940), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113929] = 2, - ACTIONS(15982), 1, + [23577] = 2, + ACTIONS(16942), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113937] = 2, - ACTIONS(15984), 1, + [23585] = 2, + ACTIONS(16944), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113945] = 2, - ACTIONS(15986), 1, + [23593] = 2, + ACTIONS(16946), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113953] = 2, - ACTIONS(15988), 1, + [23601] = 2, + ACTIONS(16948), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113961] = 2, - ACTIONS(15990), 1, + [23609] = 2, + ACTIONS(16950), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113969] = 2, - ACTIONS(15992), 1, + [23617] = 2, + ACTIONS(16952), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113977] = 2, - ACTIONS(15994), 1, + [23625] = 2, + ACTIONS(16954), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113985] = 2, - ACTIONS(15996), 1, + [23633] = 2, + ACTIONS(16956), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [113993] = 2, - ACTIONS(15998), 1, + [23641] = 2, + ACTIONS(16958), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114001] = 2, - ACTIONS(16000), 1, + [23649] = 2, + ACTIONS(16960), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114009] = 2, - ACTIONS(16002), 1, + [23657] = 2, + ACTIONS(16962), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114017] = 2, - ACTIONS(16004), 1, + [23665] = 2, + ACTIONS(16964), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114025] = 2, - ACTIONS(16006), 1, + [23673] = 2, + ACTIONS(16966), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114033] = 2, - ACTIONS(16008), 1, + [23681] = 2, + ACTIONS(16968), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114041] = 2, - ACTIONS(16010), 1, + [23689] = 2, + ACTIONS(16970), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114049] = 2, - ACTIONS(16012), 1, + [23697] = 2, + ACTIONS(16972), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114057] = 2, - ACTIONS(16014), 1, + [23705] = 2, + ACTIONS(16974), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114065] = 2, - ACTIONS(16016), 1, + [23713] = 2, + ACTIONS(16976), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114073] = 2, - ACTIONS(16018), 1, + [23721] = 2, + ACTIONS(16978), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114081] = 2, - ACTIONS(16020), 1, + [23729] = 2, + ACTIONS(16980), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114089] = 2, - ACTIONS(16022), 1, + [23737] = 2, + ACTIONS(16982), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114097] = 2, - ACTIONS(16024), 1, + [23745] = 2, + ACTIONS(16984), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114105] = 2, - ACTIONS(16026), 1, + [23753] = 2, + ACTIONS(16986), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114113] = 2, - ACTIONS(16028), 1, + [23761] = 2, + ACTIONS(16988), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114121] = 2, - ACTIONS(16030), 1, + [23769] = 2, + ACTIONS(16990), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114129] = 2, - ACTIONS(16032), 1, + [23777] = 2, + ACTIONS(16992), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114137] = 2, - ACTIONS(16034), 1, + [23785] = 2, + ACTIONS(16994), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114145] = 2, - ACTIONS(16036), 1, + [23793] = 2, + ACTIONS(16996), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114153] = 2, - ACTIONS(16038), 1, + [23801] = 2, + ACTIONS(16998), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114161] = 2, - ACTIONS(16040), 1, + [23809] = 2, + ACTIONS(17000), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114169] = 2, - ACTIONS(16042), 1, + [23817] = 2, + ACTIONS(17002), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114177] = 2, - ACTIONS(16044), 1, + [23825] = 2, + ACTIONS(17004), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114185] = 2, - ACTIONS(16046), 1, + [23833] = 2, + ACTIONS(17006), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114193] = 2, - ACTIONS(16048), 1, + [23841] = 2, + ACTIONS(17008), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114201] = 2, - ACTIONS(16050), 1, + [23849] = 2, + ACTIONS(17010), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114209] = 2, - ACTIONS(16052), 1, + [23857] = 2, + ACTIONS(17012), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114217] = 2, - ACTIONS(16054), 1, + [23865] = 2, + ACTIONS(17014), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114225] = 2, - ACTIONS(16056), 1, + [23873] = 2, + ACTIONS(17016), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114233] = 2, - ACTIONS(16058), 1, + [23881] = 2, + ACTIONS(17018), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114241] = 2, - ACTIONS(16060), 1, + [23889] = 2, + ACTIONS(17020), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114249] = 2, - ACTIONS(16062), 1, + [23897] = 2, + ACTIONS(17022), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114257] = 2, - ACTIONS(16064), 1, + [23905] = 2, + ACTIONS(17024), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114265] = 2, - ACTIONS(16066), 1, + [23913] = 2, + ACTIONS(17026), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114273] = 2, - ACTIONS(16068), 1, + [23921] = 2, + ACTIONS(17028), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114281] = 2, - ACTIONS(16070), 1, + [23929] = 2, + ACTIONS(17030), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114289] = 2, - ACTIONS(16072), 1, + [23937] = 2, + ACTIONS(17032), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114297] = 2, - ACTIONS(16074), 1, + [23945] = 2, + ACTIONS(17034), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114305] = 2, - ACTIONS(16076), 1, + [23953] = 2, + ACTIONS(17036), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114313] = 2, - ACTIONS(16078), 1, + [23961] = 2, + ACTIONS(17038), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114321] = 2, - ACTIONS(16080), 1, + [23969] = 2, + ACTIONS(17040), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114329] = 2, - ACTIONS(16082), 1, + [23977] = 2, + ACTIONS(17042), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114337] = 2, - ACTIONS(16084), 1, + [23985] = 2, + ACTIONS(17044), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114345] = 2, - ACTIONS(16086), 1, + [23993] = 2, + ACTIONS(17046), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114353] = 2, - ACTIONS(16088), 1, + [24001] = 2, + ACTIONS(17048), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114361] = 2, - ACTIONS(16090), 1, + [24009] = 2, + ACTIONS(17050), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114369] = 2, - ACTIONS(16092), 1, + [24017] = 2, + ACTIONS(17052), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114377] = 2, - ACTIONS(16094), 1, + [24025] = 2, + ACTIONS(17054), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114385] = 2, - ACTIONS(16096), 1, + [24033] = 2, + ACTIONS(17056), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114393] = 2, - ACTIONS(16098), 1, + [24041] = 2, + ACTIONS(17058), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114401] = 2, - ACTIONS(16100), 1, + [24049] = 2, + ACTIONS(17060), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114409] = 2, - ACTIONS(16102), 1, + [24057] = 2, + ACTIONS(17062), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114417] = 2, - ACTIONS(16104), 1, + [24065] = 2, + ACTIONS(17064), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114425] = 2, - ACTIONS(16106), 1, + [24073] = 2, + ACTIONS(17066), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114433] = 2, - ACTIONS(16108), 1, + [24081] = 2, + ACTIONS(17068), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114441] = 2, - ACTIONS(16110), 1, + [24089] = 2, + ACTIONS(17070), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114449] = 2, - ACTIONS(16112), 1, + [24097] = 2, + ACTIONS(17072), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114457] = 2, - ACTIONS(16114), 1, + [24105] = 2, + ACTIONS(17074), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114465] = 2, - ACTIONS(16116), 1, + [24113] = 2, + ACTIONS(17076), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114473] = 2, - ACTIONS(16118), 1, + [24121] = 2, + ACTIONS(17078), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114481] = 2, - ACTIONS(16120), 1, + [24129] = 2, + ACTIONS(17080), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114489] = 2, - ACTIONS(16122), 1, + [24137] = 2, + ACTIONS(17082), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114497] = 2, - ACTIONS(16124), 1, + [24145] = 2, + ACTIONS(17084), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114505] = 2, - ACTIONS(16126), 1, + [24153] = 2, + ACTIONS(17086), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114513] = 2, - ACTIONS(16128), 1, + [24161] = 2, + ACTIONS(17088), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114521] = 2, - ACTIONS(16130), 1, + [24169] = 2, + ACTIONS(17090), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114529] = 2, - ACTIONS(16132), 1, + [24177] = 2, + ACTIONS(17092), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114537] = 2, - ACTIONS(16134), 1, + [24185] = 2, + ACTIONS(17094), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114545] = 2, - ACTIONS(16136), 1, + [24193] = 2, + ACTIONS(17096), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114553] = 2, - ACTIONS(16138), 1, + [24201] = 2, + ACTIONS(17098), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114561] = 2, - ACTIONS(16140), 1, + [24209] = 2, + ACTIONS(17100), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114569] = 2, - ACTIONS(16142), 1, + [24217] = 2, + ACTIONS(17102), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114577] = 2, - ACTIONS(16144), 1, + [24225] = 2, + ACTIONS(17104), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114585] = 2, - ACTIONS(16146), 1, + [24233] = 2, + ACTIONS(17106), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114593] = 2, - ACTIONS(16148), 1, + [24241] = 2, + ACTIONS(17108), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114601] = 2, - ACTIONS(16150), 1, + [24249] = 2, + ACTIONS(17110), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114609] = 2, - ACTIONS(16152), 1, + [24257] = 2, + ACTIONS(17112), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114617] = 2, - ACTIONS(16154), 1, + [24265] = 2, + ACTIONS(17114), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114625] = 2, - ACTIONS(16156), 1, + [24273] = 2, + ACTIONS(17116), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114633] = 2, - ACTIONS(16158), 1, + [24281] = 2, + ACTIONS(17118), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114641] = 2, - ACTIONS(16160), 1, + [24289] = 2, + ACTIONS(17120), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114649] = 2, - ACTIONS(16162), 1, + [24297] = 2, + ACTIONS(17122), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114657] = 2, - ACTIONS(16164), 1, + [24305] = 2, + ACTIONS(17124), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114665] = 2, - ACTIONS(16166), 1, + [24313] = 2, + ACTIONS(17126), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114673] = 2, - ACTIONS(16168), 1, + [24321] = 2, + ACTIONS(17128), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114681] = 2, - ACTIONS(16170), 1, + [24329] = 2, + ACTIONS(17130), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114689] = 2, - ACTIONS(16172), 1, + [24337] = 2, + ACTIONS(17132), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114697] = 2, - ACTIONS(16174), 1, + [24345] = 2, + ACTIONS(17134), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114705] = 2, - ACTIONS(16176), 1, + [24353] = 2, + ACTIONS(17136), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114713] = 2, - ACTIONS(16178), 1, + [24361] = 2, + ACTIONS(17138), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114721] = 2, - ACTIONS(16180), 1, + [24369] = 2, + ACTIONS(17140), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114729] = 2, - ACTIONS(16182), 1, + [24377] = 2, + ACTIONS(17142), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114737] = 2, - ACTIONS(16184), 1, + [24385] = 2, + ACTIONS(17144), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114745] = 2, - ACTIONS(16186), 1, + [24393] = 2, + ACTIONS(17146), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114753] = 2, - ACTIONS(16188), 1, + [24401] = 2, + ACTIONS(17148), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114761] = 2, - ACTIONS(16190), 1, + [24409] = 2, + ACTIONS(17150), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114769] = 2, - ACTIONS(16192), 1, + [24417] = 2, + ACTIONS(17152), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114777] = 2, - ACTIONS(16194), 1, + [24425] = 2, + ACTIONS(17154), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114785] = 2, - ACTIONS(16196), 1, + [24433] = 2, + ACTIONS(17156), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114793] = 2, - ACTIONS(16198), 1, + [24441] = 2, + ACTIONS(17158), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114801] = 2, - ACTIONS(16200), 1, + [24449] = 2, + ACTIONS(17160), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114809] = 2, - ACTIONS(16202), 1, + [24457] = 2, + ACTIONS(17162), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114817] = 2, - ACTIONS(16204), 1, + [24465] = 2, + ACTIONS(17164), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114825] = 2, - ACTIONS(16206), 1, + [24473] = 2, + ACTIONS(17166), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114833] = 2, - ACTIONS(16208), 1, + [24481] = 2, + ACTIONS(17168), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114841] = 2, - ACTIONS(16210), 1, + [24489] = 2, + ACTIONS(17170), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114849] = 2, - ACTIONS(16212), 1, + [24497] = 2, + ACTIONS(17172), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114857] = 2, - ACTIONS(16214), 1, + [24505] = 2, + ACTIONS(17174), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114865] = 2, - ACTIONS(16216), 1, + [24513] = 2, + ACTIONS(17176), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114873] = 2, - ACTIONS(16218), 1, + [24521] = 2, + ACTIONS(17178), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114881] = 2, - ACTIONS(16220), 1, + [24529] = 2, + ACTIONS(17180), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114889] = 2, - ACTIONS(16222), 1, + [24537] = 2, + ACTIONS(17182), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114897] = 2, - ACTIONS(16224), 1, + [24545] = 2, + ACTIONS(17184), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114905] = 2, - ACTIONS(16226), 1, + [24553] = 2, + ACTIONS(17186), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114913] = 2, - ACTIONS(16228), 1, + [24561] = 2, + ACTIONS(17188), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114921] = 2, - ACTIONS(16230), 1, + [24569] = 2, + ACTIONS(17190), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114929] = 2, - ACTIONS(16232), 1, + [24577] = 2, + ACTIONS(17192), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114937] = 2, - ACTIONS(16234), 1, + [24585] = 2, + ACTIONS(17194), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114945] = 2, - ACTIONS(16236), 1, + [24593] = 2, + ACTIONS(17196), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114953] = 2, - ACTIONS(16238), 1, + [24601] = 2, + ACTIONS(17198), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114961] = 2, - ACTIONS(16240), 1, + [24609] = 2, + ACTIONS(17200), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114969] = 2, - ACTIONS(16242), 1, + [24617] = 2, + ACTIONS(17202), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114977] = 2, - ACTIONS(16244), 1, + [24625] = 2, + ACTIONS(17204), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114985] = 2, - ACTIONS(16246), 1, + [24633] = 2, + ACTIONS(17206), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [114993] = 2, - ACTIONS(16248), 1, + [24641] = 2, + ACTIONS(17208), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115001] = 2, - ACTIONS(16250), 1, + [24649] = 2, + ACTIONS(17210), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115009] = 2, - ACTIONS(16252), 1, + [24657] = 2, + ACTIONS(17212), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115017] = 2, - ACTIONS(16254), 1, + [24665] = 2, + ACTIONS(17214), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115025] = 2, - ACTIONS(16256), 1, + [24673] = 2, + ACTIONS(17216), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115033] = 2, - ACTIONS(16258), 1, + [24681] = 2, + ACTIONS(17218), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115041] = 2, - ACTIONS(16260), 1, + [24689] = 2, + ACTIONS(17220), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115049] = 2, - ACTIONS(16262), 1, + [24697] = 2, + ACTIONS(17222), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115057] = 2, - ACTIONS(16264), 1, + [24705] = 2, + ACTIONS(17224), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115065] = 2, - ACTIONS(16266), 1, + [24713] = 2, + ACTIONS(17226), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115073] = 2, - ACTIONS(16268), 1, + [24721] = 2, + ACTIONS(17228), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115081] = 2, - ACTIONS(16270), 1, + [24729] = 2, + ACTIONS(17230), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115089] = 2, - ACTIONS(16272), 1, + [24737] = 2, + ACTIONS(17232), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115097] = 2, - ACTIONS(16274), 1, + [24745] = 2, + ACTIONS(17234), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115105] = 2, - ACTIONS(16276), 1, + [24753] = 2, + ACTIONS(17236), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115113] = 2, - ACTIONS(16278), 1, + [24761] = 2, + ACTIONS(17238), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115121] = 2, - ACTIONS(16280), 1, + [24769] = 2, + ACTIONS(17240), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115129] = 2, - ACTIONS(16282), 1, + [24777] = 2, + ACTIONS(17242), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115137] = 2, - ACTIONS(16284), 1, + [24785] = 2, + ACTIONS(17244), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115145] = 2, - ACTIONS(16286), 1, + [24793] = 2, + ACTIONS(17246), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115153] = 2, - ACTIONS(16288), 1, + [24801] = 2, + ACTIONS(17248), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115161] = 2, - ACTIONS(16290), 1, + [24809] = 2, + ACTIONS(17250), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115169] = 2, - ACTIONS(16292), 1, + [24817] = 2, + ACTIONS(17252), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115177] = 2, - ACTIONS(16294), 1, + [24825] = 2, + ACTIONS(17254), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115185] = 2, - ACTIONS(16296), 1, + [24833] = 2, + ACTIONS(17256), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115193] = 2, - ACTIONS(16298), 1, + [24841] = 2, + ACTIONS(17258), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115201] = 2, - ACTIONS(16300), 1, + [24849] = 2, + ACTIONS(17260), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115209] = 2, - ACTIONS(16302), 1, + [24857] = 2, + ACTIONS(17262), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115217] = 2, - ACTIONS(16304), 1, + [24865] = 2, + ACTIONS(17264), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115225] = 2, - ACTIONS(16306), 1, + [24873] = 2, + ACTIONS(17266), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115233] = 2, - ACTIONS(16308), 1, + [24881] = 2, + ACTIONS(17268), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115241] = 2, - ACTIONS(16310), 1, + [24889] = 2, + ACTIONS(17270), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115249] = 2, - ACTIONS(16312), 1, + [24897] = 2, + ACTIONS(17272), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115257] = 2, - ACTIONS(16314), 1, + [24905] = 2, + ACTIONS(17274), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115265] = 2, - ACTIONS(16316), 1, + [24913] = 2, + ACTIONS(17276), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115273] = 2, - ACTIONS(16318), 1, + [24921] = 2, + ACTIONS(17278), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115281] = 2, - ACTIONS(16320), 1, + [24929] = 2, + ACTIONS(17280), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115289] = 2, - ACTIONS(16322), 1, + [24937] = 2, + ACTIONS(17282), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115297] = 2, - ACTIONS(16324), 1, + [24945] = 2, + ACTIONS(17284), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115305] = 2, - ACTIONS(16326), 1, + [24953] = 2, + ACTIONS(17286), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115313] = 2, - ACTIONS(16328), 1, + [24961] = 2, + ACTIONS(17288), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115321] = 2, - ACTIONS(16330), 1, + [24969] = 2, + ACTIONS(17290), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115329] = 2, - ACTIONS(16332), 1, + [24977] = 2, + ACTIONS(17292), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115337] = 2, - ACTIONS(16334), 1, + [24985] = 2, + ACTIONS(17294), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115345] = 2, - ACTIONS(16336), 1, + [24993] = 2, + ACTIONS(17296), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115353] = 2, - ACTIONS(16338), 1, + [25001] = 2, + ACTIONS(17298), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115361] = 2, - ACTIONS(16340), 1, + [25009] = 2, + ACTIONS(17300), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115369] = 2, - ACTIONS(16342), 1, + [25017] = 2, + ACTIONS(17302), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115377] = 2, - ACTIONS(16344), 1, + [25025] = 2, + ACTIONS(17304), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115385] = 2, - ACTIONS(16346), 1, + [25033] = 2, + ACTIONS(17306), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115393] = 2, - ACTIONS(16348), 1, + [25041] = 2, + ACTIONS(17308), 1, sym_generic_command_name, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115401] = 2, - ACTIONS(16350), 1, + [25049] = 2, + ACTIONS(17310), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115409] = 2, - ACTIONS(16352), 1, + [25057] = 2, + ACTIONS(17312), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115417] = 2, - ACTIONS(16354), 1, + [25065] = 2, + ACTIONS(17314), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115425] = 2, - ACTIONS(16356), 1, + [25073] = 2, + ACTIONS(17316), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115433] = 2, - ACTIONS(16358), 1, + [25081] = 2, + ACTIONS(17318), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115441] = 2, - ACTIONS(16360), 1, + [25089] = 2, + ACTIONS(17320), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115449] = 2, - ACTIONS(16362), 1, + [25097] = 2, + ACTIONS(17322), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115457] = 2, - ACTIONS(16364), 1, + [25105] = 2, + ACTIONS(17324), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115465] = 2, - ACTIONS(16366), 1, + [25113] = 2, + ACTIONS(17326), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115473] = 2, - ACTIONS(16368), 1, + [25121] = 2, + ACTIONS(17328), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115481] = 2, - ACTIONS(16370), 1, + [25129] = 2, + ACTIONS(17330), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115489] = 2, - ACTIONS(16372), 1, + [25137] = 2, + ACTIONS(17332), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115497] = 2, - ACTIONS(16374), 1, + [25145] = 2, + ACTIONS(17334), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115505] = 2, - ACTIONS(16376), 1, + [25153] = 2, + ACTIONS(17336), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115513] = 2, - ACTIONS(16378), 1, + [25161] = 2, + ACTIONS(17338), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115521] = 2, - ACTIONS(16380), 1, + [25169] = 2, + ACTIONS(17340), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115529] = 2, - ACTIONS(16382), 1, + [25177] = 2, + ACTIONS(17342), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115537] = 2, - ACTIONS(16384), 1, + [25185] = 2, + ACTIONS(17344), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115545] = 2, - ACTIONS(16386), 1, + [25193] = 2, + ACTIONS(17346), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115553] = 2, - ACTIONS(16388), 1, + [25201] = 2, + ACTIONS(17348), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115561] = 2, - ACTIONS(16390), 1, + [25209] = 2, + ACTIONS(17350), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115569] = 2, - ACTIONS(16392), 1, + [25217] = 2, + ACTIONS(17352), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115577] = 2, - ACTIONS(16394), 1, + [25225] = 2, + ACTIONS(17354), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115585] = 2, - ACTIONS(16396), 1, + [25233] = 2, + ACTIONS(17356), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115593] = 2, - ACTIONS(16398), 1, + [25241] = 2, + ACTIONS(17358), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115601] = 2, - ACTIONS(16400), 1, + [25249] = 2, + ACTIONS(17360), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115609] = 2, - ACTIONS(16402), 1, + [25257] = 2, + ACTIONS(17362), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115617] = 2, - ACTIONS(16404), 1, + [25265] = 2, + ACTIONS(17364), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115625] = 2, - ACTIONS(16406), 1, + [25273] = 2, + ACTIONS(17366), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115633] = 2, - ACTIONS(16408), 1, + [25281] = 2, + ACTIONS(17368), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115641] = 2, - ACTIONS(16410), 1, + [25289] = 2, + ACTIONS(17370), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115649] = 2, - ACTIONS(16412), 1, + [25297] = 2, + ACTIONS(17372), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115657] = 2, - ACTIONS(16414), 1, + [25305] = 2, + ACTIONS(17374), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115665] = 2, - ACTIONS(16416), 1, + [25313] = 2, + ACTIONS(17376), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115673] = 2, - ACTIONS(16418), 1, + [25321] = 2, + ACTIONS(17378), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115681] = 2, - ACTIONS(16420), 1, + [25329] = 2, + ACTIONS(17380), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115689] = 2, - ACTIONS(16422), 1, + [25337] = 2, + ACTIONS(17382), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115697] = 2, - ACTIONS(16424), 1, + [25345] = 2, + ACTIONS(17384), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115705] = 2, - ACTIONS(16426), 1, + [25353] = 2, + ACTIONS(17386), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115713] = 2, - ACTIONS(16428), 1, + [25361] = 2, + ACTIONS(17388), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115721] = 2, - ACTIONS(16430), 1, + [25369] = 2, + ACTIONS(17390), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115729] = 2, - ACTIONS(16432), 1, + [25377] = 2, + ACTIONS(17392), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115737] = 2, - ACTIONS(16434), 1, + [25385] = 2, + ACTIONS(17394), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115745] = 2, - ACTIONS(16436), 1, + [25393] = 2, + ACTIONS(17396), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115753] = 2, - ACTIONS(16438), 1, + [25401] = 2, + ACTIONS(17398), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115761] = 2, - ACTIONS(16440), 1, + [25409] = 2, + ACTIONS(17400), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115769] = 2, - ACTIONS(16442), 1, + [25417] = 2, + ACTIONS(17402), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115777] = 2, - ACTIONS(16444), 1, + [25425] = 2, + ACTIONS(17404), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115785] = 2, - ACTIONS(16446), 1, + [25433] = 2, + ACTIONS(17406), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115793] = 2, - ACTIONS(16448), 1, + [25441] = 2, + ACTIONS(17408), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115801] = 2, - ACTIONS(16450), 1, + [25449] = 2, + ACTIONS(17410), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115809] = 2, - ACTIONS(16452), 1, + [25457] = 2, + ACTIONS(17412), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115817] = 2, - ACTIONS(16454), 1, + [25465] = 2, + ACTIONS(17414), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115825] = 2, - ACTIONS(16456), 1, + [25473] = 2, + ACTIONS(17416), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115833] = 2, - ACTIONS(16458), 1, + [25481] = 2, + ACTIONS(17418), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115841] = 2, - ACTIONS(16460), 1, + [25489] = 2, + ACTIONS(17420), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115849] = 2, - ACTIONS(16462), 1, + [25497] = 2, + ACTIONS(17422), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115857] = 2, - ACTIONS(16464), 1, + [25505] = 2, + ACTIONS(17424), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115865] = 2, - ACTIONS(16466), 1, + [25513] = 2, + ACTIONS(17426), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115873] = 2, - ACTIONS(16468), 1, + [25521] = 2, + ACTIONS(17428), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115881] = 2, - ACTIONS(16470), 1, + [25529] = 2, + ACTIONS(17430), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115889] = 2, - ACTIONS(16472), 1, + [25537] = 2, + ACTIONS(17432), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115897] = 2, - ACTIONS(16474), 1, + [25545] = 2, + ACTIONS(17434), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115905] = 2, - ACTIONS(16476), 1, + [25553] = 2, + ACTIONS(17436), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115913] = 2, - ACTIONS(16478), 1, + [25561] = 2, + ACTIONS(17438), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115921] = 2, - ACTIONS(16480), 1, + [25569] = 2, + ACTIONS(17440), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115929] = 2, - ACTIONS(16482), 1, + [25577] = 2, + ACTIONS(17442), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115937] = 2, - ACTIONS(16484), 1, + [25585] = 2, + ACTIONS(17444), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115945] = 2, - ACTIONS(16486), 1, + [25593] = 2, + ACTIONS(17446), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115953] = 2, - ACTIONS(16488), 1, + [25601] = 2, + ACTIONS(17448), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115961] = 2, - ACTIONS(16490), 1, + [25609] = 2, + ACTIONS(17450), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115969] = 2, - ACTIONS(16492), 1, + [25617] = 2, + ACTIONS(17452), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115977] = 2, - ACTIONS(16494), 1, + [25625] = 2, + ACTIONS(17454), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115985] = 2, - ACTIONS(16496), 1, + [25633] = 2, + ACTIONS(17456), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [115993] = 2, - ACTIONS(16498), 1, + [25641] = 2, + ACTIONS(17458), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116001] = 2, - ACTIONS(16500), 1, + [25649] = 2, + ACTIONS(17460), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116009] = 2, - ACTIONS(16502), 1, + [25657] = 2, + ACTIONS(17462), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116017] = 2, - ACTIONS(16504), 1, + [25665] = 2, + ACTIONS(17464), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116025] = 2, - ACTIONS(16506), 1, + [25673] = 2, + ACTIONS(17466), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116033] = 2, - ACTIONS(16508), 1, + [25681] = 2, + ACTIONS(17468), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116041] = 2, - ACTIONS(16510), 1, + [25689] = 2, + ACTIONS(17470), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116049] = 2, - ACTIONS(16512), 1, + [25697] = 2, + ACTIONS(17472), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116057] = 2, - ACTIONS(16514), 1, + [25705] = 2, + ACTIONS(17474), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116065] = 2, - ACTIONS(16516), 1, + [25713] = 2, + ACTIONS(17476), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116073] = 2, - ACTIONS(16518), 1, + [25721] = 2, + ACTIONS(17478), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116081] = 2, - ACTIONS(16520), 1, + [25729] = 2, + ACTIONS(17480), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116089] = 2, - ACTIONS(16522), 1, + [25737] = 2, + ACTIONS(17482), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116097] = 2, - ACTIONS(16524), 1, + [25745] = 2, + ACTIONS(17484), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116105] = 2, - ACTIONS(16526), 1, + [25753] = 2, + ACTIONS(17486), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116113] = 2, - ACTIONS(16528), 1, + [25761] = 2, + ACTIONS(17488), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116121] = 2, - ACTIONS(16530), 1, + [25769] = 2, + ACTIONS(17490), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116129] = 2, - ACTIONS(16532), 1, + [25777] = 2, + ACTIONS(17492), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116137] = 2, - ACTIONS(16534), 1, + [25785] = 2, + ACTIONS(17494), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116145] = 2, - ACTIONS(16536), 1, + [25793] = 2, + ACTIONS(17496), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116153] = 2, - ACTIONS(16538), 1, + [25801] = 2, + ACTIONS(17498), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116161] = 2, - ACTIONS(16540), 1, + [25809] = 2, + ACTIONS(17500), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116169] = 2, - ACTIONS(16542), 1, + [25817] = 2, + ACTIONS(17502), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116177] = 2, - ACTIONS(16544), 1, + [25825] = 2, + ACTIONS(17504), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116185] = 2, - ACTIONS(16546), 1, + [25833] = 2, + ACTIONS(17506), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116193] = 2, - ACTIONS(16548), 1, + [25841] = 2, + ACTIONS(17508), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116201] = 2, - ACTIONS(16550), 1, + [25849] = 2, + ACTIONS(17510), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116209] = 2, - ACTIONS(16552), 1, + [25857] = 2, + ACTIONS(17512), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116217] = 2, - ACTIONS(16554), 1, + [25865] = 2, + ACTIONS(17514), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116225] = 2, - ACTIONS(16556), 1, + [25873] = 2, + ACTIONS(17516), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116233] = 2, - ACTIONS(16558), 1, + [25881] = 2, + ACTIONS(17518), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116241] = 2, - ACTIONS(16560), 1, + [25889] = 2, + ACTIONS(17520), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116249] = 2, - ACTIONS(16562), 1, + [25897] = 2, + ACTIONS(17522), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116257] = 2, - ACTIONS(16564), 1, + [25905] = 2, + ACTIONS(17524), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116265] = 2, - ACTIONS(16566), 1, + [25913] = 2, + ACTIONS(17526), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116273] = 2, - ACTIONS(16568), 1, + [25921] = 2, + ACTIONS(17528), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116281] = 2, - ACTIONS(16570), 1, + [25929] = 2, + ACTIONS(17530), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116289] = 2, - ACTIONS(16572), 1, + [25937] = 2, + ACTIONS(17532), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116297] = 2, - ACTIONS(16574), 1, + [25945] = 2, + ACTIONS(17534), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116305] = 2, - ACTIONS(16576), 1, + [25953] = 2, + ACTIONS(17536), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116313] = 2, - ACTIONS(16578), 1, + [25961] = 2, + ACTIONS(17538), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116321] = 2, - ACTIONS(16580), 1, + [25969] = 2, + ACTIONS(17540), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116329] = 2, - ACTIONS(16582), 1, + [25977] = 2, + ACTIONS(17542), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116337] = 2, - ACTIONS(16584), 1, + [25985] = 2, + ACTIONS(17544), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116345] = 2, - ACTIONS(16586), 1, + [25993] = 2, + ACTIONS(17546), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116353] = 2, - ACTIONS(16588), 1, + [26001] = 2, + ACTIONS(17548), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116361] = 2, - ACTIONS(16590), 1, + [26009] = 2, + ACTIONS(17550), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116369] = 2, - ACTIONS(16592), 1, + [26017] = 2, + ACTIONS(17552), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116377] = 2, - ACTIONS(16594), 1, + [26025] = 2, + ACTIONS(17554), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116385] = 2, - ACTIONS(16596), 1, + [26033] = 2, + ACTIONS(17556), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116393] = 2, - ACTIONS(16598), 1, + [26041] = 2, + ACTIONS(17558), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116401] = 2, - ACTIONS(16600), 1, + [26049] = 2, + ACTIONS(17560), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116409] = 2, - ACTIONS(16602), 1, + [26057] = 2, + ACTIONS(17562), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116417] = 2, - ACTIONS(16604), 1, + [26065] = 2, + ACTIONS(17564), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116425] = 2, - ACTIONS(16606), 1, + [26073] = 2, + ACTIONS(17566), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116433] = 2, - ACTIONS(16608), 1, + [26081] = 2, + ACTIONS(17568), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116441] = 2, - ACTIONS(16610), 1, + [26089] = 2, + ACTIONS(17570), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116449] = 2, - ACTIONS(16612), 1, + [26097] = 2, + ACTIONS(17572), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116457] = 2, - ACTIONS(16614), 1, + [26105] = 2, + ACTIONS(17574), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116465] = 2, - ACTIONS(16616), 1, + [26113] = 2, + ACTIONS(17576), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116473] = 2, - ACTIONS(16618), 1, + [26121] = 2, + ACTIONS(17578), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116481] = 2, - ACTIONS(16620), 1, + [26129] = 2, + ACTIONS(17580), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116489] = 2, - ACTIONS(16622), 1, + [26137] = 2, + ACTIONS(17582), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116497] = 2, - ACTIONS(16624), 1, + [26145] = 2, + ACTIONS(17584), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116505] = 2, - ACTIONS(16626), 1, + [26153] = 2, + ACTIONS(17586), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116513] = 2, - ACTIONS(16628), 1, + [26161] = 2, + ACTIONS(17588), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116521] = 2, - ACTIONS(16630), 1, + [26169] = 2, + ACTIONS(17590), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116529] = 2, - ACTIONS(16632), 1, + [26177] = 2, + ACTIONS(17592), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116537] = 2, - ACTIONS(16634), 1, + [26185] = 2, + ACTIONS(17594), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116545] = 2, - ACTIONS(16636), 1, + [26193] = 2, + ACTIONS(17596), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116553] = 2, - ACTIONS(16638), 1, + [26201] = 2, + ACTIONS(17598), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116561] = 2, - ACTIONS(16640), 1, + [26209] = 2, + ACTIONS(17600), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116569] = 2, - ACTIONS(16642), 1, + [26217] = 2, + ACTIONS(17602), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116577] = 2, - ACTIONS(16644), 1, + [26225] = 2, + ACTIONS(17604), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116585] = 2, - ACTIONS(16646), 1, + [26233] = 2, + ACTIONS(17606), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116593] = 2, - ACTIONS(16648), 1, + [26241] = 2, + ACTIONS(17608), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116601] = 2, - ACTIONS(16650), 1, + [26249] = 2, + ACTIONS(17610), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116609] = 2, - ACTIONS(16652), 1, + [26257] = 2, + ACTIONS(17612), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116617] = 2, - ACTIONS(16654), 1, + [26265] = 2, + ACTIONS(17614), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116625] = 2, - ACTIONS(16656), 1, + [26273] = 2, + ACTIONS(17616), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116633] = 2, - ACTIONS(16658), 1, + [26281] = 2, + ACTIONS(17618), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116641] = 2, - ACTIONS(16660), 1, + [26289] = 2, + ACTIONS(17620), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116649] = 2, - ACTIONS(16662), 1, + [26297] = 2, + ACTIONS(17622), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116657] = 2, - ACTIONS(16664), 1, + [26305] = 2, + ACTIONS(17624), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116665] = 2, - ACTIONS(16666), 1, + [26313] = 2, + ACTIONS(17626), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116673] = 2, - ACTIONS(16668), 1, + [26321] = 2, + ACTIONS(17628), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116681] = 2, - ACTIONS(16670), 1, + [26329] = 2, + ACTIONS(17630), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116689] = 2, - ACTIONS(16672), 1, + [26337] = 2, + ACTIONS(17632), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116697] = 2, - ACTIONS(16674), 1, + [26345] = 2, + ACTIONS(17634), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116705] = 2, - ACTIONS(16676), 1, + [26353] = 2, + ACTIONS(17636), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116713] = 2, - ACTIONS(16678), 1, + [26361] = 2, + ACTIONS(17638), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116721] = 2, - ACTIONS(16680), 1, + [26369] = 2, + ACTIONS(17640), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116729] = 2, - ACTIONS(16682), 1, + [26377] = 2, + ACTIONS(17642), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116737] = 2, - ACTIONS(16684), 1, + [26385] = 2, + ACTIONS(17644), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116745] = 2, - ACTIONS(16686), 1, + [26393] = 2, + ACTIONS(17646), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116753] = 2, - ACTIONS(16688), 1, + [26401] = 2, + ACTIONS(17648), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116761] = 2, - ACTIONS(16690), 1, + [26409] = 2, + ACTIONS(17650), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116769] = 2, - ACTIONS(16692), 1, + [26417] = 2, + ACTIONS(17652), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116777] = 2, - ACTIONS(16694), 1, + [26425] = 2, + ACTIONS(17654), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116785] = 2, - ACTIONS(16696), 1, + [26433] = 2, + ACTIONS(17656), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116793] = 2, - ACTIONS(16698), 1, + [26441] = 2, + ACTIONS(17658), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116801] = 2, - ACTIONS(16700), 1, + [26449] = 2, + ACTIONS(17660), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116809] = 2, - ACTIONS(16702), 1, + [26457] = 2, + ACTIONS(17662), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116817] = 2, - ACTIONS(16704), 1, + [26465] = 2, + ACTIONS(17664), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116825] = 2, - ACTIONS(16706), 1, + [26473] = 2, + ACTIONS(17666), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116833] = 2, - ACTIONS(16708), 1, + [26481] = 2, + ACTIONS(17668), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116841] = 2, - ACTIONS(16710), 1, + [26489] = 2, + ACTIONS(17670), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116849] = 2, - ACTIONS(16712), 1, + [26497] = 2, + ACTIONS(17672), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116857] = 2, - ACTIONS(16714), 1, + [26505] = 2, + ACTIONS(17674), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116865] = 2, - ACTIONS(16716), 1, + [26513] = 2, + ACTIONS(17676), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116873] = 2, - ACTIONS(16718), 1, + [26521] = 2, + ACTIONS(17678), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116881] = 2, - ACTIONS(16720), 1, + [26529] = 2, + ACTIONS(17680), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116889] = 2, - ACTIONS(16722), 1, + [26537] = 2, + ACTIONS(17682), 1, sym_word, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116897] = 2, - ACTIONS(16724), 1, + [26545] = 2, + ACTIONS(17684), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116905] = 2, - ACTIONS(16726), 1, + [26553] = 2, + ACTIONS(17686), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116913] = 2, - ACTIONS(16728), 1, + [26561] = 2, + ACTIONS(17688), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116921] = 2, - ACTIONS(16730), 1, - aux_sym_command_definition_token2, + [26569] = 2, + ACTIONS(17690), 1, + aux_sym_command_definition_token1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116929] = 2, - ACTIONS(16732), 1, + [26577] = 2, + ACTIONS(17692), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116937] = 2, - ACTIONS(16734), 1, + [26585] = 2, + ACTIONS(17694), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116945] = 2, - ACTIONS(16736), 1, - aux_sym_command_definition_token2, + [26593] = 2, + ACTIONS(17696), 1, + aux_sym_command_definition_token1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116953] = 2, - ACTIONS(16738), 1, + [26601] = 2, + ACTIONS(17698), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116961] = 2, - ACTIONS(16740), 1, + [26609] = 2, + ACTIONS(17700), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116969] = 2, - ACTIONS(16742), 1, - aux_sym_command_definition_token2, + [26617] = 2, + ACTIONS(17702), 1, + aux_sym_command_definition_token1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116977] = 2, - ACTIONS(16744), 1, + [26625] = 2, + ACTIONS(17704), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116985] = 2, - ACTIONS(16746), 1, + [26633] = 2, + ACTIONS(17706), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [116993] = 2, - ACTIONS(16748), 1, - aux_sym_command_definition_token2, + [26641] = 2, + ACTIONS(17708), 1, + aux_sym_command_definition_token1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117001] = 2, - ACTIONS(16750), 1, + [26649] = 2, + ACTIONS(17710), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117009] = 2, - ACTIONS(16752), 1, + [26657] = 2, + ACTIONS(17712), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117017] = 2, - ACTIONS(16754), 1, - aux_sym_command_definition_token2, + [26665] = 2, + ACTIONS(17714), 1, + aux_sym_command_definition_token1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117025] = 2, - ACTIONS(16756), 1, + [26673] = 2, + ACTIONS(17716), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117033] = 2, - ACTIONS(16758), 1, + [26681] = 2, + ACTIONS(17718), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117041] = 2, - ACTIONS(16760), 1, - aux_sym_command_definition_token2, + [26689] = 2, + ACTIONS(17720), 1, + aux_sym_command_definition_token1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117049] = 2, - ACTIONS(16762), 1, + [26697] = 2, + ACTIONS(17722), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117057] = 2, - ACTIONS(16764), 1, + [26705] = 2, + ACTIONS(17724), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117065] = 2, - ACTIONS(16766), 1, - aux_sym_command_definition_token2, + [26713] = 2, + ACTIONS(17726), 1, + aux_sym_command_definition_token1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117073] = 2, - ACTIONS(16768), 1, + [26721] = 2, + ACTIONS(17728), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117081] = 2, - ACTIONS(16770), 1, + [26729] = 2, + ACTIONS(17730), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117089] = 2, - ACTIONS(16772), 1, - aux_sym_command_definition_token2, + [26737] = 2, + ACTIONS(17732), 1, + aux_sym_command_definition_token1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117097] = 2, - ACTIONS(16774), 1, + [26745] = 2, + ACTIONS(17734), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117105] = 2, - ACTIONS(16776), 1, + [26753] = 2, + ACTIONS(17736), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117113] = 2, - ACTIONS(16778), 1, - aux_sym_command_definition_token2, + [26761] = 2, + ACTIONS(17738), 1, + aux_sym_command_definition_token1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117121] = 2, - ACTIONS(16780), 1, + [26769] = 2, + ACTIONS(17740), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117129] = 2, - ACTIONS(16782), 1, + [26777] = 2, + ACTIONS(17742), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117137] = 2, - ACTIONS(16784), 1, - aux_sym_command_definition_token2, + [26785] = 2, + ACTIONS(17744), 1, + aux_sym_command_definition_token1, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117145] = 2, - ACTIONS(16786), 1, + [26793] = 2, + ACTIONS(17746), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117153] = 2, - ACTIONS(16788), 1, + [26801] = 2, + ACTIONS(17748), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym__comment, - [117161] = 2, - ACTIONS(16790), 1, - aux_sym_command_definition_token2, + [26809] = 2, + ACTIONS(17750), 1, + aux_sym_command_definition_token1, ACTIONS(3), 2, sym__whitespace, sym__comment, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(472)] = 0, - [SMALL_STATE(473)] = 76, - [SMALL_STATE(474)] = 152, - [SMALL_STATE(475)] = 228, - [SMALL_STATE(476)] = 298, - [SMALL_STATE(477)] = 368, - [SMALL_STATE(478)] = 437, - [SMALL_STATE(479)] = 510, - [SMALL_STATE(480)] = 583, - [SMALL_STATE(481)] = 656, - [SMALL_STATE(482)] = 725, - [SMALL_STATE(483)] = 794, - [SMALL_STATE(484)] = 867, - [SMALL_STATE(485)] = 940, - [SMALL_STATE(486)] = 1013, - [SMALL_STATE(487)] = 1086, - [SMALL_STATE(488)] = 1159, - [SMALL_STATE(489)] = 1228, - [SMALL_STATE(490)] = 1297, - [SMALL_STATE(491)] = 1370, - [SMALL_STATE(492)] = 1443, - [SMALL_STATE(493)] = 1512, - [SMALL_STATE(494)] = 1585, - [SMALL_STATE(495)] = 1658, - [SMALL_STATE(496)] = 1722, - [SMALL_STATE(497)] = 1786, - [SMALL_STATE(498)] = 1858, - [SMALL_STATE(499)] = 1922, - [SMALL_STATE(500)] = 1986, - [SMALL_STATE(501)] = 2050, - [SMALL_STATE(502)] = 2114, - [SMALL_STATE(503)] = 2178, - [SMALL_STATE(504)] = 2242, - [SMALL_STATE(505)] = 2306, - [SMALL_STATE(506)] = 2370, - [SMALL_STATE(507)] = 2434, - [SMALL_STATE(508)] = 2498, - [SMALL_STATE(509)] = 2562, - [SMALL_STATE(510)] = 2626, - [SMALL_STATE(511)] = 2690, - [SMALL_STATE(512)] = 2754, - [SMALL_STATE(513)] = 2826, - [SMALL_STATE(514)] = 2890, - [SMALL_STATE(515)] = 2954, - [SMALL_STATE(516)] = 3026, - [SMALL_STATE(517)] = 3090, - [SMALL_STATE(518)] = 3154, - [SMALL_STATE(519)] = 3218, - [SMALL_STATE(520)] = 3282, - [SMALL_STATE(521)] = 3346, - [SMALL_STATE(522)] = 3410, - [SMALL_STATE(523)] = 3474, - [SMALL_STATE(524)] = 3538, - [SMALL_STATE(525)] = 3602, - [SMALL_STATE(526)] = 3666, - [SMALL_STATE(527)] = 3732, - [SMALL_STATE(528)] = 3796, - [SMALL_STATE(529)] = 3860, - [SMALL_STATE(530)] = 3924, - [SMALL_STATE(531)] = 3988, - [SMALL_STATE(532)] = 4052, - [SMALL_STATE(533)] = 4116, - [SMALL_STATE(534)] = 4180, - [SMALL_STATE(535)] = 4244, - [SMALL_STATE(536)] = 4308, - [SMALL_STATE(537)] = 4372, - [SMALL_STATE(538)] = 4436, - [SMALL_STATE(539)] = 4500, - [SMALL_STATE(540)] = 4564, - [SMALL_STATE(541)] = 4628, - [SMALL_STATE(542)] = 4692, - [SMALL_STATE(543)] = 4756, - [SMALL_STATE(544)] = 4820, - [SMALL_STATE(545)] = 4884, - [SMALL_STATE(546)] = 4948, - [SMALL_STATE(547)] = 5012, - [SMALL_STATE(548)] = 5076, - [SMALL_STATE(549)] = 5140, - [SMALL_STATE(550)] = 5204, - [SMALL_STATE(551)] = 5268, - [SMALL_STATE(552)] = 5332, - [SMALL_STATE(553)] = 5396, - [SMALL_STATE(554)] = 5460, - [SMALL_STATE(555)] = 5526, - [SMALL_STATE(556)] = 5590, - [SMALL_STATE(557)] = 5654, - [SMALL_STATE(558)] = 5718, - [SMALL_STATE(559)] = 5782, - [SMALL_STATE(560)] = 5846, - [SMALL_STATE(561)] = 5910, - [SMALL_STATE(562)] = 5974, - [SMALL_STATE(563)] = 6038, - [SMALL_STATE(564)] = 6102, - [SMALL_STATE(565)] = 6166, - [SMALL_STATE(566)] = 6230, - [SMALL_STATE(567)] = 6294, - [SMALL_STATE(568)] = 6358, - [SMALL_STATE(569)] = 6422, - [SMALL_STATE(570)] = 6486, - [SMALL_STATE(571)] = 6550, - [SMALL_STATE(572)] = 6614, - [SMALL_STATE(573)] = 6678, - [SMALL_STATE(574)] = 6742, - [SMALL_STATE(575)] = 6806, - [SMALL_STATE(576)] = 6870, - [SMALL_STATE(577)] = 6934, - [SMALL_STATE(578)] = 6998, - [SMALL_STATE(579)] = 7062, - [SMALL_STATE(580)] = 7126, - [SMALL_STATE(581)] = 7190, - [SMALL_STATE(582)] = 7254, - [SMALL_STATE(583)] = 7318, - [SMALL_STATE(584)] = 7382, - [SMALL_STATE(585)] = 7446, - [SMALL_STATE(586)] = 7510, - [SMALL_STATE(587)] = 7574, - [SMALL_STATE(588)] = 7638, - [SMALL_STATE(589)] = 7702, - [SMALL_STATE(590)] = 7766, - [SMALL_STATE(591)] = 7830, - [SMALL_STATE(592)] = 7894, - [SMALL_STATE(593)] = 7958, - [SMALL_STATE(594)] = 8022, - [SMALL_STATE(595)] = 8086, - [SMALL_STATE(596)] = 8150, - [SMALL_STATE(597)] = 8214, - [SMALL_STATE(598)] = 8278, - [SMALL_STATE(599)] = 8342, - [SMALL_STATE(600)] = 8406, - [SMALL_STATE(601)] = 8472, - [SMALL_STATE(602)] = 8536, - [SMALL_STATE(603)] = 8600, - [SMALL_STATE(604)] = 8664, - [SMALL_STATE(605)] = 8728, - [SMALL_STATE(606)] = 8792, - [SMALL_STATE(607)] = 8856, - [SMALL_STATE(608)] = 8920, - [SMALL_STATE(609)] = 8984, - [SMALL_STATE(610)] = 9048, - [SMALL_STATE(611)] = 9112, - [SMALL_STATE(612)] = 9176, - [SMALL_STATE(613)] = 9243, - [SMALL_STATE(614)] = 9314, - [SMALL_STATE(615)] = 9381, - [SMALL_STATE(616)] = 9448, - [SMALL_STATE(617)] = 9515, - [SMALL_STATE(618)] = 9582, - [SMALL_STATE(619)] = 9649, - [SMALL_STATE(620)] = 9716, - [SMALL_STATE(621)] = 9787, - [SMALL_STATE(622)] = 9854, - [SMALL_STATE(623)] = 9921, - [SMALL_STATE(624)] = 9988, - [SMALL_STATE(625)] = 10059, - [SMALL_STATE(626)] = 10126, - [SMALL_STATE(627)] = 10196, - [SMALL_STATE(628)] = 10260, - [SMALL_STATE(629)] = 10326, - [SMALL_STATE(630)] = 10396, - [SMALL_STATE(631)] = 10460, - [SMALL_STATE(632)] = 10526, - [SMALL_STATE(633)] = 10592, - [SMALL_STATE(634)] = 10656, - [SMALL_STATE(635)] = 10720, - [SMALL_STATE(636)] = 10786, - [SMALL_STATE(637)] = 10850, - [SMALL_STATE(638)] = 10916, - [SMALL_STATE(639)] = 10980, - [SMALL_STATE(640)] = 11046, - [SMALL_STATE(641)] = 11116, - [SMALL_STATE(642)] = 11182, - [SMALL_STATE(643)] = 11248, - [SMALL_STATE(644)] = 11312, - [SMALL_STATE(645)] = 11378, - [SMALL_STATE(646)] = 11444, - [SMALL_STATE(647)] = 11508, - [SMALL_STATE(648)] = 11572, - [SMALL_STATE(649)] = 11638, - [SMALL_STATE(650)] = 11702, - [SMALL_STATE(651)] = 11768, - [SMALL_STATE(652)] = 11834, - [SMALL_STATE(653)] = 11900, - [SMALL_STATE(654)] = 11966, - [SMALL_STATE(655)] = 12032, - [SMALL_STATE(656)] = 12098, - [SMALL_STATE(657)] = 12164, - [SMALL_STATE(658)] = 12230, - [SMALL_STATE(659)] = 12296, - [SMALL_STATE(660)] = 12362, - [SMALL_STATE(661)] = 12426, - [SMALL_STATE(662)] = 12490, - [SMALL_STATE(663)] = 12556, - [SMALL_STATE(664)] = 12622, - [SMALL_STATE(665)] = 12688, - [SMALL_STATE(666)] = 12754, - [SMALL_STATE(667)] = 12820, - [SMALL_STATE(668)] = 12881, - [SMALL_STATE(669)] = 12942, - [SMALL_STATE(670)] = 13003, - [SMALL_STATE(671)] = 13064, - [SMALL_STATE(672)] = 13125, - [SMALL_STATE(673)] = 13186, - [SMALL_STATE(674)] = 13247, - [SMALL_STATE(675)] = 13308, - [SMALL_STATE(676)] = 13369, - [SMALL_STATE(677)] = 13430, - [SMALL_STATE(678)] = 13491, - [SMALL_STATE(679)] = 13552, - [SMALL_STATE(680)] = 13613, - [SMALL_STATE(681)] = 13674, - [SMALL_STATE(682)] = 13735, - [SMALL_STATE(683)] = 13796, - [SMALL_STATE(684)] = 13857, - [SMALL_STATE(685)] = 13918, - [SMALL_STATE(686)] = 13979, - [SMALL_STATE(687)] = 14040, - [SMALL_STATE(688)] = 14101, - [SMALL_STATE(689)] = 14162, - [SMALL_STATE(690)] = 14223, - [SMALL_STATE(691)] = 14284, - [SMALL_STATE(692)] = 14345, - [SMALL_STATE(693)] = 14406, - [SMALL_STATE(694)] = 14467, - [SMALL_STATE(695)] = 14528, - [SMALL_STATE(696)] = 14589, - [SMALL_STATE(697)] = 14654, - [SMALL_STATE(698)] = 14715, - [SMALL_STATE(699)] = 14778, - [SMALL_STATE(700)] = 14839, - [SMALL_STATE(701)] = 14900, - [SMALL_STATE(702)] = 14961, - [SMALL_STATE(703)] = 15022, - [SMALL_STATE(704)] = 15083, - [SMALL_STATE(705)] = 15144, - [SMALL_STATE(706)] = 15205, - [SMALL_STATE(707)] = 15266, - [SMALL_STATE(708)] = 15327, - [SMALL_STATE(709)] = 15388, - [SMALL_STATE(710)] = 15449, - [SMALL_STATE(711)] = 15510, - [SMALL_STATE(712)] = 15571, - [SMALL_STATE(713)] = 15632, - [SMALL_STATE(714)] = 15693, - [SMALL_STATE(715)] = 15754, - [SMALL_STATE(716)] = 15815, - [SMALL_STATE(717)] = 15876, - [SMALL_STATE(718)] = 15937, - [SMALL_STATE(719)] = 16000, - [SMALL_STATE(720)] = 16061, - [SMALL_STATE(721)] = 16122, - [SMALL_STATE(722)] = 16183, - [SMALL_STATE(723)] = 16244, - [SMALL_STATE(724)] = 16305, - [SMALL_STATE(725)] = 16366, - [SMALL_STATE(726)] = 16427, - [SMALL_STATE(727)] = 16488, - [SMALL_STATE(728)] = 16549, - [SMALL_STATE(729)] = 16610, - [SMALL_STATE(730)] = 16671, - [SMALL_STATE(731)] = 16732, - [SMALL_STATE(732)] = 16793, - [SMALL_STATE(733)] = 16856, - [SMALL_STATE(734)] = 16917, - [SMALL_STATE(735)] = 16978, - [SMALL_STATE(736)] = 17039, - [SMALL_STATE(737)] = 17100, - [SMALL_STATE(738)] = 17161, - [SMALL_STATE(739)] = 17222, - [SMALL_STATE(740)] = 17283, - [SMALL_STATE(741)] = 17344, - [SMALL_STATE(742)] = 17405, - [SMALL_STATE(743)] = 17466, - [SMALL_STATE(744)] = 17527, - [SMALL_STATE(745)] = 17588, - [SMALL_STATE(746)] = 17649, - [SMALL_STATE(747)] = 17710, - [SMALL_STATE(748)] = 17771, - [SMALL_STATE(749)] = 17832, - [SMALL_STATE(750)] = 17893, - [SMALL_STATE(751)] = 17954, - [SMALL_STATE(752)] = 18015, - [SMALL_STATE(753)] = 18076, - [SMALL_STATE(754)] = 18137, - [SMALL_STATE(755)] = 18198, - [SMALL_STATE(756)] = 18259, - [SMALL_STATE(757)] = 18320, - [SMALL_STATE(758)] = 18381, - [SMALL_STATE(759)] = 18442, - [SMALL_STATE(760)] = 18503, - [SMALL_STATE(761)] = 18564, - [SMALL_STATE(762)] = 18625, - [SMALL_STATE(763)] = 18686, - [SMALL_STATE(764)] = 18747, - [SMALL_STATE(765)] = 18808, - [SMALL_STATE(766)] = 18869, - [SMALL_STATE(767)] = 18930, - [SMALL_STATE(768)] = 18991, - [SMALL_STATE(769)] = 19052, - [SMALL_STATE(770)] = 19113, - [SMALL_STATE(771)] = 19174, - [SMALL_STATE(772)] = 19235, - [SMALL_STATE(773)] = 19296, - [SMALL_STATE(774)] = 19357, - [SMALL_STATE(775)] = 19418, - [SMALL_STATE(776)] = 19479, - [SMALL_STATE(777)] = 19540, - [SMALL_STATE(778)] = 19601, - [SMALL_STATE(779)] = 19662, - [SMALL_STATE(780)] = 19723, - [SMALL_STATE(781)] = 19784, - [SMALL_STATE(782)] = 19845, - [SMALL_STATE(783)] = 19906, - [SMALL_STATE(784)] = 19967, - [SMALL_STATE(785)] = 20028, - [SMALL_STATE(786)] = 20089, - [SMALL_STATE(787)] = 20150, - [SMALL_STATE(788)] = 20211, - [SMALL_STATE(789)] = 20272, - [SMALL_STATE(790)] = 20333, - [SMALL_STATE(791)] = 20394, - [SMALL_STATE(792)] = 20455, - [SMALL_STATE(793)] = 20516, - [SMALL_STATE(794)] = 20577, - [SMALL_STATE(795)] = 20638, - [SMALL_STATE(796)] = 20699, - [SMALL_STATE(797)] = 20760, - [SMALL_STATE(798)] = 20821, - [SMALL_STATE(799)] = 20882, - [SMALL_STATE(800)] = 20943, - [SMALL_STATE(801)] = 21004, - [SMALL_STATE(802)] = 21065, - [SMALL_STATE(803)] = 21126, - [SMALL_STATE(804)] = 21187, - [SMALL_STATE(805)] = 21248, - [SMALL_STATE(806)] = 21309, - [SMALL_STATE(807)] = 21370, - [SMALL_STATE(808)] = 21431, - [SMALL_STATE(809)] = 21492, - [SMALL_STATE(810)] = 21553, - [SMALL_STATE(811)] = 21614, - [SMALL_STATE(812)] = 21675, - [SMALL_STATE(813)] = 21736, - [SMALL_STATE(814)] = 21797, - [SMALL_STATE(815)] = 21858, - [SMALL_STATE(816)] = 21921, - [SMALL_STATE(817)] = 21982, - [SMALL_STATE(818)] = 22043, - [SMALL_STATE(819)] = 22104, - [SMALL_STATE(820)] = 22165, - [SMALL_STATE(821)] = 22226, - [SMALL_STATE(822)] = 22287, - [SMALL_STATE(823)] = 22348, - [SMALL_STATE(824)] = 22409, - [SMALL_STATE(825)] = 22470, - [SMALL_STATE(826)] = 22531, - [SMALL_STATE(827)] = 22592, - [SMALL_STATE(828)] = 22653, - [SMALL_STATE(829)] = 22714, - [SMALL_STATE(830)] = 22775, - [SMALL_STATE(831)] = 22836, - [SMALL_STATE(832)] = 22897, - [SMALL_STATE(833)] = 22958, - [SMALL_STATE(834)] = 23019, - [SMALL_STATE(835)] = 23080, - [SMALL_STATE(836)] = 23141, - [SMALL_STATE(837)] = 23202, - [SMALL_STATE(838)] = 23263, - [SMALL_STATE(839)] = 23324, - [SMALL_STATE(840)] = 23385, - [SMALL_STATE(841)] = 23446, - [SMALL_STATE(842)] = 23507, - [SMALL_STATE(843)] = 23568, - [SMALL_STATE(844)] = 23629, - [SMALL_STATE(845)] = 23690, - [SMALL_STATE(846)] = 23751, - [SMALL_STATE(847)] = 23812, - [SMALL_STATE(848)] = 23873, - [SMALL_STATE(849)] = 23934, - [SMALL_STATE(850)] = 23995, - [SMALL_STATE(851)] = 24058, - [SMALL_STATE(852)] = 24119, - [SMALL_STATE(853)] = 24180, - [SMALL_STATE(854)] = 24241, - [SMALL_STATE(855)] = 24302, - [SMALL_STATE(856)] = 24363, - [SMALL_STATE(857)] = 24424, - [SMALL_STATE(858)] = 24485, - [SMALL_STATE(859)] = 24546, - [SMALL_STATE(860)] = 24607, - [SMALL_STATE(861)] = 24668, - [SMALL_STATE(862)] = 24729, - [SMALL_STATE(863)] = 24790, - [SMALL_STATE(864)] = 24851, - [SMALL_STATE(865)] = 24912, - [SMALL_STATE(866)] = 24973, - [SMALL_STATE(867)] = 25034, - [SMALL_STATE(868)] = 25095, - [SMALL_STATE(869)] = 25156, - [SMALL_STATE(870)] = 25217, - [SMALL_STATE(871)] = 25278, - [SMALL_STATE(872)] = 25339, - [SMALL_STATE(873)] = 25402, - [SMALL_STATE(874)] = 25463, - [SMALL_STATE(875)] = 25524, - [SMALL_STATE(876)] = 25585, - [SMALL_STATE(877)] = 25646, - [SMALL_STATE(878)] = 25707, - [SMALL_STATE(879)] = 25768, - [SMALL_STATE(880)] = 25829, - [SMALL_STATE(881)] = 25890, - [SMALL_STATE(882)] = 25951, - [SMALL_STATE(883)] = 26012, - [SMALL_STATE(884)] = 26073, - [SMALL_STATE(885)] = 26134, - [SMALL_STATE(886)] = 26195, - [SMALL_STATE(887)] = 26256, - [SMALL_STATE(888)] = 26317, - [SMALL_STATE(889)] = 26378, - [SMALL_STATE(890)] = 26439, - [SMALL_STATE(891)] = 26500, - [SMALL_STATE(892)] = 26561, - [SMALL_STATE(893)] = 26622, - [SMALL_STATE(894)] = 26683, - [SMALL_STATE(895)] = 26744, - [SMALL_STATE(896)] = 26805, - [SMALL_STATE(897)] = 26866, - [SMALL_STATE(898)] = 26927, - [SMALL_STATE(899)] = 26988, - [SMALL_STATE(900)] = 27049, - [SMALL_STATE(901)] = 27110, - [SMALL_STATE(902)] = 27171, - [SMALL_STATE(903)] = 27240, - [SMALL_STATE(904)] = 27301, - [SMALL_STATE(905)] = 27362, - [SMALL_STATE(906)] = 27423, - [SMALL_STATE(907)] = 27484, - [SMALL_STATE(908)] = 27545, - [SMALL_STATE(909)] = 27606, - [SMALL_STATE(910)] = 27669, - [SMALL_STATE(911)] = 27730, - [SMALL_STATE(912)] = 27791, - [SMALL_STATE(913)] = 27852, - [SMALL_STATE(914)] = 27913, - [SMALL_STATE(915)] = 27974, - [SMALL_STATE(916)] = 28035, - [SMALL_STATE(917)] = 28096, - [SMALL_STATE(918)] = 28157, - [SMALL_STATE(919)] = 28218, - [SMALL_STATE(920)] = 28279, - [SMALL_STATE(921)] = 28348, - [SMALL_STATE(922)] = 28409, - [SMALL_STATE(923)] = 28470, - [SMALL_STATE(924)] = 28531, - [SMALL_STATE(925)] = 28592, - [SMALL_STATE(926)] = 28653, - [SMALL_STATE(927)] = 28714, - [SMALL_STATE(928)] = 28775, - [SMALL_STATE(929)] = 28844, - [SMALL_STATE(930)] = 28905, - [SMALL_STATE(931)] = 28966, - [SMALL_STATE(932)] = 29031, - [SMALL_STATE(933)] = 29092, - [SMALL_STATE(934)] = 29153, - [SMALL_STATE(935)] = 29218, - [SMALL_STATE(936)] = 29283, - [SMALL_STATE(937)] = 29348, - [SMALL_STATE(938)] = 29413, - [SMALL_STATE(939)] = 29474, - [SMALL_STATE(940)] = 29539, - [SMALL_STATE(941)] = 29600, - [SMALL_STATE(942)] = 29663, - [SMALL_STATE(943)] = 29724, - [SMALL_STATE(944)] = 29785, - [SMALL_STATE(945)] = 29846, - [SMALL_STATE(946)] = 29907, - [SMALL_STATE(947)] = 29968, - [SMALL_STATE(948)] = 30029, - [SMALL_STATE(949)] = 30090, - [SMALL_STATE(950)] = 30151, - [SMALL_STATE(951)] = 30212, - [SMALL_STATE(952)] = 30273, - [SMALL_STATE(953)] = 30334, - [SMALL_STATE(954)] = 30395, - [SMALL_STATE(955)] = 30460, - [SMALL_STATE(956)] = 30521, - [SMALL_STATE(957)] = 30582, - [SMALL_STATE(958)] = 30643, - [SMALL_STATE(959)] = 30704, - [SMALL_STATE(960)] = 30765, - [SMALL_STATE(961)] = 30826, - [SMALL_STATE(962)] = 30887, - [SMALL_STATE(963)] = 30948, - [SMALL_STATE(964)] = 31009, - [SMALL_STATE(965)] = 31070, - [SMALL_STATE(966)] = 31131, - [SMALL_STATE(967)] = 31192, - [SMALL_STATE(968)] = 31253, - [SMALL_STATE(969)] = 31314, - [SMALL_STATE(970)] = 31375, - [SMALL_STATE(971)] = 31436, - [SMALL_STATE(972)] = 31497, - [SMALL_STATE(973)] = 31558, - [SMALL_STATE(974)] = 31619, - [SMALL_STATE(975)] = 31680, - [SMALL_STATE(976)] = 31741, - [SMALL_STATE(977)] = 31802, - [SMALL_STATE(978)] = 31863, - [SMALL_STATE(979)] = 31924, - [SMALL_STATE(980)] = 31985, - [SMALL_STATE(981)] = 32046, - [SMALL_STATE(982)] = 32107, - [SMALL_STATE(983)] = 32168, - [SMALL_STATE(984)] = 32229, - [SMALL_STATE(985)] = 32290, - [SMALL_STATE(986)] = 32351, - [SMALL_STATE(987)] = 32412, - [SMALL_STATE(988)] = 32473, - [SMALL_STATE(989)] = 32534, - [SMALL_STATE(990)] = 32595, - [SMALL_STATE(991)] = 32658, - [SMALL_STATE(992)] = 32719, - [SMALL_STATE(993)] = 32780, - [SMALL_STATE(994)] = 32841, - [SMALL_STATE(995)] = 32902, - [SMALL_STATE(996)] = 32963, - [SMALL_STATE(997)] = 33024, - [SMALL_STATE(998)] = 33085, - [SMALL_STATE(999)] = 33146, - [SMALL_STATE(1000)] = 33207, - [SMALL_STATE(1001)] = 33268, - [SMALL_STATE(1002)] = 33329, - [SMALL_STATE(1003)] = 33390, - [SMALL_STATE(1004)] = 33451, - [SMALL_STATE(1005)] = 33512, - [SMALL_STATE(1006)] = 33573, - [SMALL_STATE(1007)] = 33634, - [SMALL_STATE(1008)] = 33695, - [SMALL_STATE(1009)] = 33756, - [SMALL_STATE(1010)] = 33817, - [SMALL_STATE(1011)] = 33878, - [SMALL_STATE(1012)] = 33939, - [SMALL_STATE(1013)] = 34000, - [SMALL_STATE(1014)] = 34063, - [SMALL_STATE(1015)] = 34124, - [SMALL_STATE(1016)] = 34185, - [SMALL_STATE(1017)] = 34246, - [SMALL_STATE(1018)] = 34307, - [SMALL_STATE(1019)] = 34368, - [SMALL_STATE(1020)] = 34429, - [SMALL_STATE(1021)] = 34490, - [SMALL_STATE(1022)] = 34551, - [SMALL_STATE(1023)] = 34612, - [SMALL_STATE(1024)] = 34673, - [SMALL_STATE(1025)] = 34734, - [SMALL_STATE(1026)] = 34795, - [SMALL_STATE(1027)] = 34856, - [SMALL_STATE(1028)] = 34917, - [SMALL_STATE(1029)] = 34978, - [SMALL_STATE(1030)] = 35039, - [SMALL_STATE(1031)] = 35100, - [SMALL_STATE(1032)] = 35161, - [SMALL_STATE(1033)] = 35222, - [SMALL_STATE(1034)] = 35283, - [SMALL_STATE(1035)] = 35344, - [SMALL_STATE(1036)] = 35405, - [SMALL_STATE(1037)] = 35466, - [SMALL_STATE(1038)] = 35527, - [SMALL_STATE(1039)] = 35588, - [SMALL_STATE(1040)] = 35649, - [SMALL_STATE(1041)] = 35710, - [SMALL_STATE(1042)] = 35771, - [SMALL_STATE(1043)] = 35832, - [SMALL_STATE(1044)] = 35893, - [SMALL_STATE(1045)] = 35954, - [SMALL_STATE(1046)] = 36015, - [SMALL_STATE(1047)] = 36076, - [SMALL_STATE(1048)] = 36137, - [SMALL_STATE(1049)] = 36198, - [SMALL_STATE(1050)] = 36259, - [SMALL_STATE(1051)] = 36320, - [SMALL_STATE(1052)] = 36381, - [SMALL_STATE(1053)] = 36442, - [SMALL_STATE(1054)] = 36503, - [SMALL_STATE(1055)] = 36564, - [SMALL_STATE(1056)] = 36625, - [SMALL_STATE(1057)] = 36686, - [SMALL_STATE(1058)] = 36747, - [SMALL_STATE(1059)] = 36808, - [SMALL_STATE(1060)] = 36869, - [SMALL_STATE(1061)] = 36930, - [SMALL_STATE(1062)] = 36991, - [SMALL_STATE(1063)] = 37052, - [SMALL_STATE(1064)] = 37113, - [SMALL_STATE(1065)] = 37176, - [SMALL_STATE(1066)] = 37237, - [SMALL_STATE(1067)] = 37298, - [SMALL_STATE(1068)] = 37359, - [SMALL_STATE(1069)] = 37420, - [SMALL_STATE(1070)] = 37481, - [SMALL_STATE(1071)] = 37542, - [SMALL_STATE(1072)] = 37603, - [SMALL_STATE(1073)] = 37664, - [SMALL_STATE(1074)] = 37725, - [SMALL_STATE(1075)] = 37786, - [SMALL_STATE(1076)] = 37847, - [SMALL_STATE(1077)] = 37908, - [SMALL_STATE(1078)] = 37969, - [SMALL_STATE(1079)] = 38030, - [SMALL_STATE(1080)] = 38091, - [SMALL_STATE(1081)] = 38152, - [SMALL_STATE(1082)] = 38213, - [SMALL_STATE(1083)] = 38274, - [SMALL_STATE(1084)] = 38335, - [SMALL_STATE(1085)] = 38396, - [SMALL_STATE(1086)] = 38457, - [SMALL_STATE(1087)] = 38518, - [SMALL_STATE(1088)] = 38579, - [SMALL_STATE(1089)] = 38640, - [SMALL_STATE(1090)] = 38701, - [SMALL_STATE(1091)] = 38762, - [SMALL_STATE(1092)] = 38823, - [SMALL_STATE(1093)] = 38884, - [SMALL_STATE(1094)] = 38945, - [SMALL_STATE(1095)] = 39006, - [SMALL_STATE(1096)] = 39067, - [SMALL_STATE(1097)] = 39128, - [SMALL_STATE(1098)] = 39189, - [SMALL_STATE(1099)] = 39250, - [SMALL_STATE(1100)] = 39311, - [SMALL_STATE(1101)] = 39372, - [SMALL_STATE(1102)] = 39433, - [SMALL_STATE(1103)] = 39494, - [SMALL_STATE(1104)] = 39555, - [SMALL_STATE(1105)] = 39616, - [SMALL_STATE(1106)] = 39677, - [SMALL_STATE(1107)] = 39738, - [SMALL_STATE(1108)] = 39799, - [SMALL_STATE(1109)] = 39860, - [SMALL_STATE(1110)] = 39921, - [SMALL_STATE(1111)] = 39982, - [SMALL_STATE(1112)] = 40043, - [SMALL_STATE(1113)] = 40104, - [SMALL_STATE(1114)] = 40165, - [SMALL_STATE(1115)] = 40226, - [SMALL_STATE(1116)] = 40287, - [SMALL_STATE(1117)] = 40348, - [SMALL_STATE(1118)] = 40409, - [SMALL_STATE(1119)] = 40470, - [SMALL_STATE(1120)] = 40531, - [SMALL_STATE(1121)] = 40592, - [SMALL_STATE(1122)] = 40653, - [SMALL_STATE(1123)] = 40716, - [SMALL_STATE(1124)] = 40777, - [SMALL_STATE(1125)] = 40838, - [SMALL_STATE(1126)] = 40899, - [SMALL_STATE(1127)] = 40960, - [SMALL_STATE(1128)] = 41021, - [SMALL_STATE(1129)] = 41082, - [SMALL_STATE(1130)] = 41143, - [SMALL_STATE(1131)] = 41204, - [SMALL_STATE(1132)] = 41265, - [SMALL_STATE(1133)] = 41326, - [SMALL_STATE(1134)] = 41387, - [SMALL_STATE(1135)] = 41447, - [SMALL_STATE(1136)] = 41507, - [SMALL_STATE(1137)] = 41567, - [SMALL_STATE(1138)] = 41627, - [SMALL_STATE(1139)] = 41691, - [SMALL_STATE(1140)] = 41759, - [SMALL_STATE(1141)] = 41827, - [SMALL_STATE(1142)] = 41895, - [SMALL_STATE(1143)] = 41959, - [SMALL_STATE(1144)] = 42023, - [SMALL_STATE(1145)] = 42083, - [SMALL_STATE(1146)] = 42143, - [SMALL_STATE(1147)] = 42203, - [SMALL_STATE(1148)] = 42263, - [SMALL_STATE(1149)] = 42323, - [SMALL_STATE(1150)] = 42383, - [SMALL_STATE(1151)] = 42443, - [SMALL_STATE(1152)] = 42503, - [SMALL_STATE(1153)] = 42563, - [SMALL_STATE(1154)] = 42623, - [SMALL_STATE(1155)] = 42687, - [SMALL_STATE(1156)] = 42749, - [SMALL_STATE(1157)] = 42809, - [SMALL_STATE(1158)] = 42869, - [SMALL_STATE(1159)] = 42929, - [SMALL_STATE(1160)] = 42989, - [SMALL_STATE(1161)] = 43049, - [SMALL_STATE(1162)] = 43109, - [SMALL_STATE(1163)] = 43169, - [SMALL_STATE(1164)] = 43229, - [SMALL_STATE(1165)] = 43289, - [SMALL_STATE(1166)] = 43349, - [SMALL_STATE(1167)] = 43413, - [SMALL_STATE(1168)] = 43473, - [SMALL_STATE(1169)] = 43533, - [SMALL_STATE(1170)] = 43593, - [SMALL_STATE(1171)] = 43653, - [SMALL_STATE(1172)] = 43713, - [SMALL_STATE(1173)] = 43773, - [SMALL_STATE(1174)] = 43833, - [SMALL_STATE(1175)] = 43893, - [SMALL_STATE(1176)] = 43955, - [SMALL_STATE(1177)] = 44015, - [SMALL_STATE(1178)] = 44075, - [SMALL_STATE(1179)] = 44135, - [SMALL_STATE(1180)] = 44195, - [SMALL_STATE(1181)] = 44255, - [SMALL_STATE(1182)] = 44315, - [SMALL_STATE(1183)] = 44375, - [SMALL_STATE(1184)] = 44435, - [SMALL_STATE(1185)] = 44495, - [SMALL_STATE(1186)] = 44555, - [SMALL_STATE(1187)] = 44615, - [SMALL_STATE(1188)] = 44675, - [SMALL_STATE(1189)] = 44735, - [SMALL_STATE(1190)] = 44795, - [SMALL_STATE(1191)] = 44855, - [SMALL_STATE(1192)] = 44915, - [SMALL_STATE(1193)] = 44975, - [SMALL_STATE(1194)] = 45035, - [SMALL_STATE(1195)] = 45095, - [SMALL_STATE(1196)] = 45155, - [SMALL_STATE(1197)] = 45215, - [SMALL_STATE(1198)] = 45279, - [SMALL_STATE(1199)] = 45339, - [SMALL_STATE(1200)] = 45399, - [SMALL_STATE(1201)] = 45459, - [SMALL_STATE(1202)] = 45519, - [SMALL_STATE(1203)] = 45579, - [SMALL_STATE(1204)] = 45639, - [SMALL_STATE(1205)] = 45699, - [SMALL_STATE(1206)] = 45759, - [SMALL_STATE(1207)] = 45819, - [SMALL_STATE(1208)] = 45879, - [SMALL_STATE(1209)] = 45939, - [SMALL_STATE(1210)] = 45999, - [SMALL_STATE(1211)] = 46059, - [SMALL_STATE(1212)] = 46119, - [SMALL_STATE(1213)] = 46179, - [SMALL_STATE(1214)] = 46241, - [SMALL_STATE(1215)] = 46301, - [SMALL_STATE(1216)] = 46361, - [SMALL_STATE(1217)] = 46425, - [SMALL_STATE(1218)] = 46485, - [SMALL_STATE(1219)] = 46545, - [SMALL_STATE(1220)] = 46605, - [SMALL_STATE(1221)] = 46665, - [SMALL_STATE(1222)] = 46725, - [SMALL_STATE(1223)] = 46785, - [SMALL_STATE(1224)] = 46845, - [SMALL_STATE(1225)] = 46905, - [SMALL_STATE(1226)] = 46965, - [SMALL_STATE(1227)] = 47025, - [SMALL_STATE(1228)] = 47085, - [SMALL_STATE(1229)] = 47145, - [SMALL_STATE(1230)] = 47205, - [SMALL_STATE(1231)] = 47265, - [SMALL_STATE(1232)] = 47325, - [SMALL_STATE(1233)] = 47385, - [SMALL_STATE(1234)] = 47445, - [SMALL_STATE(1235)] = 47505, - [SMALL_STATE(1236)] = 47565, - [SMALL_STATE(1237)] = 47625, - [SMALL_STATE(1238)] = 47685, - [SMALL_STATE(1239)] = 47745, - [SMALL_STATE(1240)] = 47805, - [SMALL_STATE(1241)] = 47865, - [SMALL_STATE(1242)] = 47925, - [SMALL_STATE(1243)] = 47985, - [SMALL_STATE(1244)] = 48045, - [SMALL_STATE(1245)] = 48105, - [SMALL_STATE(1246)] = 48165, - [SMALL_STATE(1247)] = 48225, - [SMALL_STATE(1248)] = 48289, - [SMALL_STATE(1249)] = 48349, - [SMALL_STATE(1250)] = 48409, - [SMALL_STATE(1251)] = 48469, - [SMALL_STATE(1252)] = 48529, - [SMALL_STATE(1253)] = 48589, - [SMALL_STATE(1254)] = 48649, - [SMALL_STATE(1255)] = 48709, - [SMALL_STATE(1256)] = 48769, - [SMALL_STATE(1257)] = 48829, - [SMALL_STATE(1258)] = 48889, - [SMALL_STATE(1259)] = 48949, - [SMALL_STATE(1260)] = 49008, - [SMALL_STATE(1261)] = 49069, - [SMALL_STATE(1262)] = 49132, - [SMALL_STATE(1263)] = 49191, - [SMALL_STATE(1264)] = 49250, - [SMALL_STATE(1265)] = 49313, - [SMALL_STATE(1266)] = 49372, - [SMALL_STATE(1267)] = 49431, - [SMALL_STATE(1268)] = 49490, - [SMALL_STATE(1269)] = 49549, - [SMALL_STATE(1270)] = 49608, - [SMALL_STATE(1271)] = 49667, - [SMALL_STATE(1272)] = 49726, - [SMALL_STATE(1273)] = 49785, - [SMALL_STATE(1274)] = 49844, - [SMALL_STATE(1275)] = 49903, - [SMALL_STATE(1276)] = 49962, - [SMALL_STATE(1277)] = 50021, - [SMALL_STATE(1278)] = 50080, - [SMALL_STATE(1279)] = 50139, - [SMALL_STATE(1280)] = 50198, - [SMALL_STATE(1281)] = 50257, - [SMALL_STATE(1282)] = 50316, - [SMALL_STATE(1283)] = 50375, - [SMALL_STATE(1284)] = 50434, - [SMALL_STATE(1285)] = 50493, - [SMALL_STATE(1286)] = 50554, - [SMALL_STATE(1287)] = 50613, - [SMALL_STATE(1288)] = 50672, - [SMALL_STATE(1289)] = 50731, - [SMALL_STATE(1290)] = 50790, - [SMALL_STATE(1291)] = 50849, - [SMALL_STATE(1292)] = 50908, - [SMALL_STATE(1293)] = 50967, - [SMALL_STATE(1294)] = 51026, - [SMALL_STATE(1295)] = 51085, - [SMALL_STATE(1296)] = 51144, - [SMALL_STATE(1297)] = 51203, - [SMALL_STATE(1298)] = 51262, - [SMALL_STATE(1299)] = 51321, - [SMALL_STATE(1300)] = 51380, - [SMALL_STATE(1301)] = 51439, - [SMALL_STATE(1302)] = 51498, - [SMALL_STATE(1303)] = 51557, - [SMALL_STATE(1304)] = 51616, - [SMALL_STATE(1305)] = 51675, - [SMALL_STATE(1306)] = 51734, - [SMALL_STATE(1307)] = 51793, - [SMALL_STATE(1308)] = 51852, - [SMALL_STATE(1309)] = 51911, - [SMALL_STATE(1310)] = 51970, - [SMALL_STATE(1311)] = 52029, - [SMALL_STATE(1312)] = 52088, - [SMALL_STATE(1313)] = 52147, - [SMALL_STATE(1314)] = 52206, - [SMALL_STATE(1315)] = 52265, - [SMALL_STATE(1316)] = 52324, - [SMALL_STATE(1317)] = 52383, - [SMALL_STATE(1318)] = 52442, - [SMALL_STATE(1319)] = 52501, - [SMALL_STATE(1320)] = 52562, - [SMALL_STATE(1321)] = 52621, - [SMALL_STATE(1322)] = 52680, - [SMALL_STATE(1323)] = 52739, - [SMALL_STATE(1324)] = 52798, - [SMALL_STATE(1325)] = 52857, - [SMALL_STATE(1326)] = 52916, - [SMALL_STATE(1327)] = 52975, - [SMALL_STATE(1328)] = 53034, - [SMALL_STATE(1329)] = 53093, - [SMALL_STATE(1330)] = 53152, - [SMALL_STATE(1331)] = 53211, - [SMALL_STATE(1332)] = 53270, - [SMALL_STATE(1333)] = 53329, - [SMALL_STATE(1334)] = 53388, - [SMALL_STATE(1335)] = 53447, - [SMALL_STATE(1336)] = 53506, - [SMALL_STATE(1337)] = 53565, - [SMALL_STATE(1338)] = 53624, - [SMALL_STATE(1339)] = 53683, - [SMALL_STATE(1340)] = 53742, - [SMALL_STATE(1341)] = 53801, - [SMALL_STATE(1342)] = 53860, - [SMALL_STATE(1343)] = 53919, - [SMALL_STATE(1344)] = 53978, - [SMALL_STATE(1345)] = 54041, - [SMALL_STATE(1346)] = 54104, - [SMALL_STATE(1347)] = 54167, - [SMALL_STATE(1348)] = 54230, - [SMALL_STATE(1349)] = 54293, - [SMALL_STATE(1350)] = 54352, - [SMALL_STATE(1351)] = 54411, - [SMALL_STATE(1352)] = 54470, - [SMALL_STATE(1353)] = 54529, - [SMALL_STATE(1354)] = 54588, - [SMALL_STATE(1355)] = 54647, - [SMALL_STATE(1356)] = 54706, - [SMALL_STATE(1357)] = 54765, - [SMALL_STATE(1358)] = 54824, - [SMALL_STATE(1359)] = 54887, - [SMALL_STATE(1360)] = 54946, - [SMALL_STATE(1361)] = 55005, - [SMALL_STATE(1362)] = 55072, - [SMALL_STATE(1363)] = 55131, - [SMALL_STATE(1364)] = 55190, - [SMALL_STATE(1365)] = 55257, - [SMALL_STATE(1366)] = 55316, - [SMALL_STATE(1367)] = 55383, - [SMALL_STATE(1368)] = 55442, - [SMALL_STATE(1369)] = 55501, - [SMALL_STATE(1370)] = 55560, - [SMALL_STATE(1371)] = 55619, - [SMALL_STATE(1372)] = 55678, - [SMALL_STATE(1373)] = 55737, - [SMALL_STATE(1374)] = 55796, - [SMALL_STATE(1375)] = 55855, - [SMALL_STATE(1376)] = 55914, - [SMALL_STATE(1377)] = 55973, - [SMALL_STATE(1378)] = 56032, - [SMALL_STATE(1379)] = 56091, - [SMALL_STATE(1380)] = 56150, - [SMALL_STATE(1381)] = 56209, - [SMALL_STATE(1382)] = 56268, - [SMALL_STATE(1383)] = 56327, - [SMALL_STATE(1384)] = 56386, - [SMALL_STATE(1385)] = 56444, - [SMALL_STATE(1386)] = 56502, - [SMALL_STATE(1387)] = 56560, - [SMALL_STATE(1388)] = 56622, - [SMALL_STATE(1389)] = 56684, - [SMALL_STATE(1390)] = 56746, - [SMALL_STATE(1391)] = 56808, - [SMALL_STATE(1392)] = 56870, - [SMALL_STATE(1393)] = 56932, - [SMALL_STATE(1394)] = 56990, - [SMALL_STATE(1395)] = 57052, - [SMALL_STATE(1396)] = 57114, - [SMALL_STATE(1397)] = 57172, - [SMALL_STATE(1398)] = 57230, - [SMALL_STATE(1399)] = 57288, - [SMALL_STATE(1400)] = 57346, - [SMALL_STATE(1401)] = 57404, - [SMALL_STATE(1402)] = 57462, - [SMALL_STATE(1403)] = 57520, - [SMALL_STATE(1404)] = 57578, - [SMALL_STATE(1405)] = 57636, - [SMALL_STATE(1406)] = 57694, - [SMALL_STATE(1407)] = 57754, - [SMALL_STATE(1408)] = 57812, - [SMALL_STATE(1409)] = 57870, - [SMALL_STATE(1410)] = 57928, - [SMALL_STATE(1411)] = 57986, - [SMALL_STATE(1412)] = 58044, - [SMALL_STATE(1413)] = 58102, - [SMALL_STATE(1414)] = 58160, - [SMALL_STATE(1415)] = 58218, - [SMALL_STATE(1416)] = 58276, - [SMALL_STATE(1417)] = 58334, - [SMALL_STATE(1418)] = 58392, - [SMALL_STATE(1419)] = 58450, - [SMALL_STATE(1420)] = 58508, - [SMALL_STATE(1421)] = 58566, - [SMALL_STATE(1422)] = 58624, - [SMALL_STATE(1423)] = 58682, - [SMALL_STATE(1424)] = 58740, - [SMALL_STATE(1425)] = 58798, - [SMALL_STATE(1426)] = 58856, - [SMALL_STATE(1427)] = 58916, - [SMALL_STATE(1428)] = 58974, - [SMALL_STATE(1429)] = 59032, - [SMALL_STATE(1430)] = 59090, - [SMALL_STATE(1431)] = 59148, - [SMALL_STATE(1432)] = 59206, - [SMALL_STATE(1433)] = 59264, - [SMALL_STATE(1434)] = 59322, - [SMALL_STATE(1435)] = 59380, - [SMALL_STATE(1436)] = 59438, - [SMALL_STATE(1437)] = 59496, - [SMALL_STATE(1438)] = 59554, - [SMALL_STATE(1439)] = 59612, - [SMALL_STATE(1440)] = 59670, - [SMALL_STATE(1441)] = 59728, - [SMALL_STATE(1442)] = 59786, - [SMALL_STATE(1443)] = 59844, - [SMALL_STATE(1444)] = 59902, - [SMALL_STATE(1445)] = 59960, - [SMALL_STATE(1446)] = 60018, - [SMALL_STATE(1447)] = 60076, - [SMALL_STATE(1448)] = 60134, - [SMALL_STATE(1449)] = 60192, - [SMALL_STATE(1450)] = 60250, - [SMALL_STATE(1451)] = 60308, - [SMALL_STATE(1452)] = 60366, - [SMALL_STATE(1453)] = 60424, - [SMALL_STATE(1454)] = 60482, - [SMALL_STATE(1455)] = 60540, - [SMALL_STATE(1456)] = 60598, - [SMALL_STATE(1457)] = 60656, - [SMALL_STATE(1458)] = 60714, - [SMALL_STATE(1459)] = 60772, - [SMALL_STATE(1460)] = 60832, - [SMALL_STATE(1461)] = 60890, - [SMALL_STATE(1462)] = 60948, - [SMALL_STATE(1463)] = 61006, - [SMALL_STATE(1464)] = 61064, - [SMALL_STATE(1465)] = 61122, - [SMALL_STATE(1466)] = 61180, - [SMALL_STATE(1467)] = 61238, - [SMALL_STATE(1468)] = 61296, - [SMALL_STATE(1469)] = 61354, - [SMALL_STATE(1470)] = 61412, - [SMALL_STATE(1471)] = 61470, - [SMALL_STATE(1472)] = 61528, - [SMALL_STATE(1473)] = 61586, - [SMALL_STATE(1474)] = 61644, - [SMALL_STATE(1475)] = 61702, - [SMALL_STATE(1476)] = 61760, - [SMALL_STATE(1477)] = 61818, - [SMALL_STATE(1478)] = 61876, - [SMALL_STATE(1479)] = 61934, - [SMALL_STATE(1480)] = 61992, - [SMALL_STATE(1481)] = 62058, - [SMALL_STATE(1482)] = 62116, - [SMALL_STATE(1483)] = 62174, - [SMALL_STATE(1484)] = 62240, - [SMALL_STATE(1485)] = 62298, - [SMALL_STATE(1486)] = 62356, - [SMALL_STATE(1487)] = 62414, - [SMALL_STATE(1488)] = 62472, - [SMALL_STATE(1489)] = 62538, - [SMALL_STATE(1490)] = 62596, - [SMALL_STATE(1491)] = 62654, - [SMALL_STATE(1492)] = 62712, - [SMALL_STATE(1493)] = 62770, - [SMALL_STATE(1494)] = 62828, - [SMALL_STATE(1495)] = 62886, - [SMALL_STATE(1496)] = 62944, - [SMALL_STATE(1497)] = 63002, - [SMALL_STATE(1498)] = 63060, - [SMALL_STATE(1499)] = 63118, - [SMALL_STATE(1500)] = 63176, - [SMALL_STATE(1501)] = 63234, - [SMALL_STATE(1502)] = 63292, - [SMALL_STATE(1503)] = 63350, - [SMALL_STATE(1504)] = 63408, - [SMALL_STATE(1505)] = 63466, - [SMALL_STATE(1506)] = 63524, - [SMALL_STATE(1507)] = 63582, - [SMALL_STATE(1508)] = 63640, - [SMALL_STATE(1509)] = 63698, - [SMALL_STATE(1510)] = 63755, - [SMALL_STATE(1511)] = 63812, - [SMALL_STATE(1512)] = 63873, - [SMALL_STATE(1513)] = 63930, - [SMALL_STATE(1514)] = 63991, - [SMALL_STATE(1515)] = 64052, - [SMALL_STATE(1516)] = 64113, - [SMALL_STATE(1517)] = 64174, - [SMALL_STATE(1518)] = 64235, - [SMALL_STATE(1519)] = 64296, - [SMALL_STATE(1520)] = 64357, - [SMALL_STATE(1521)] = 64414, - [SMALL_STATE(1522)] = 64471, - [SMALL_STATE(1523)] = 64528, - [SMALL_STATE(1524)] = 64585, - [SMALL_STATE(1525)] = 64642, - [SMALL_STATE(1526)] = 64699, - [SMALL_STATE(1527)] = 64756, - [SMALL_STATE(1528)] = 64813, - [SMALL_STATE(1529)] = 64870, - [SMALL_STATE(1530)] = 64927, - [SMALL_STATE(1531)] = 64984, - [SMALL_STATE(1532)] = 65043, - [SMALL_STATE(1533)] = 65100, - [SMALL_STATE(1534)] = 65157, - [SMALL_STATE(1535)] = 65214, - [SMALL_STATE(1536)] = 65271, - [SMALL_STATE(1537)] = 65328, - [SMALL_STATE(1538)] = 65385, - [SMALL_STATE(1539)] = 65442, - [SMALL_STATE(1540)] = 65499, - [SMALL_STATE(1541)] = 65556, - [SMALL_STATE(1542)] = 65613, - [SMALL_STATE(1543)] = 65670, - [SMALL_STATE(1544)] = 65727, - [SMALL_STATE(1545)] = 65784, - [SMALL_STATE(1546)] = 65841, - [SMALL_STATE(1547)] = 65898, - [SMALL_STATE(1548)] = 65955, - [SMALL_STATE(1549)] = 66012, - [SMALL_STATE(1550)] = 66069, - [SMALL_STATE(1551)] = 66126, - [SMALL_STATE(1552)] = 66185, - [SMALL_STATE(1553)] = 66242, - [SMALL_STATE(1554)] = 66299, - [SMALL_STATE(1555)] = 66356, - [SMALL_STATE(1556)] = 66413, - [SMALL_STATE(1557)] = 66470, - [SMALL_STATE(1558)] = 66527, - [SMALL_STATE(1559)] = 66584, - [SMALL_STATE(1560)] = 66641, - [SMALL_STATE(1561)] = 66698, - [SMALL_STATE(1562)] = 66755, - [SMALL_STATE(1563)] = 66812, - [SMALL_STATE(1564)] = 66869, - [SMALL_STATE(1565)] = 66926, - [SMALL_STATE(1566)] = 66983, - [SMALL_STATE(1567)] = 67040, - [SMALL_STATE(1568)] = 67097, - [SMALL_STATE(1569)] = 67154, - [SMALL_STATE(1570)] = 67211, - [SMALL_STATE(1571)] = 67268, - [SMALL_STATE(1572)] = 67325, - [SMALL_STATE(1573)] = 67382, - [SMALL_STATE(1574)] = 67439, - [SMALL_STATE(1575)] = 67496, - [SMALL_STATE(1576)] = 67553, - [SMALL_STATE(1577)] = 67610, - [SMALL_STATE(1578)] = 67667, - [SMALL_STATE(1579)] = 67724, - [SMALL_STATE(1580)] = 67781, - [SMALL_STATE(1581)] = 67838, - [SMALL_STATE(1582)] = 67895, - [SMALL_STATE(1583)] = 67952, - [SMALL_STATE(1584)] = 68011, - [SMALL_STATE(1585)] = 68068, - [SMALL_STATE(1586)] = 68125, - [SMALL_STATE(1587)] = 68182, - [SMALL_STATE(1588)] = 68239, - [SMALL_STATE(1589)] = 68296, - [SMALL_STATE(1590)] = 68353, - [SMALL_STATE(1591)] = 68410, - [SMALL_STATE(1592)] = 68467, - [SMALL_STATE(1593)] = 68524, - [SMALL_STATE(1594)] = 68581, - [SMALL_STATE(1595)] = 68638, - [SMALL_STATE(1596)] = 68695, - [SMALL_STATE(1597)] = 68752, - [SMALL_STATE(1598)] = 68809, - [SMALL_STATE(1599)] = 68866, - [SMALL_STATE(1600)] = 68923, - [SMALL_STATE(1601)] = 68980, - [SMALL_STATE(1602)] = 69037, - [SMALL_STATE(1603)] = 69094, - [SMALL_STATE(1604)] = 69151, - [SMALL_STATE(1605)] = 69208, - [SMALL_STATE(1606)] = 69265, - [SMALL_STATE(1607)] = 69322, - [SMALL_STATE(1608)] = 69379, - [SMALL_STATE(1609)] = 69436, - [SMALL_STATE(1610)] = 69493, - [SMALL_STATE(1611)] = 69550, - [SMALL_STATE(1612)] = 69607, - [SMALL_STATE(1613)] = 69664, - [SMALL_STATE(1614)] = 69721, - [SMALL_STATE(1615)] = 69778, - [SMALL_STATE(1616)] = 69835, - [SMALL_STATE(1617)] = 69892, - [SMALL_STATE(1618)] = 69949, - [SMALL_STATE(1619)] = 70006, - [SMALL_STATE(1620)] = 70063, - [SMALL_STATE(1621)] = 70120, - [SMALL_STATE(1622)] = 70177, - [SMALL_STATE(1623)] = 70234, - [SMALL_STATE(1624)] = 70291, - [SMALL_STATE(1625)] = 70348, - [SMALL_STATE(1626)] = 70405, - [SMALL_STATE(1627)] = 70462, - [SMALL_STATE(1628)] = 70519, - [SMALL_STATE(1629)] = 70576, - [SMALL_STATE(1630)] = 70633, - [SMALL_STATE(1631)] = 70690, - [SMALL_STATE(1632)] = 70746, - [SMALL_STATE(1633)] = 70802, - [SMALL_STATE(1634)] = 70862, - [SMALL_STATE(1635)] = 70922, - [SMALL_STATE(1636)] = 70982, - [SMALL_STATE(1637)] = 71042, - [SMALL_STATE(1638)] = 71098, - [SMALL_STATE(1639)] = 71158, - [SMALL_STATE(1640)] = 71218, - [SMALL_STATE(1641)] = 71274, - [SMALL_STATE(1642)] = 71330, - [SMALL_STATE(1643)] = 71386, - [SMALL_STATE(1644)] = 71442, - [SMALL_STATE(1645)] = 71498, - [SMALL_STATE(1646)] = 71554, - [SMALL_STATE(1647)] = 71610, - [SMALL_STATE(1648)] = 71666, - [SMALL_STATE(1649)] = 71722, - [SMALL_STATE(1650)] = 71780, - [SMALL_STATE(1651)] = 71836, - [SMALL_STATE(1652)] = 71892, - [SMALL_STATE(1653)] = 71948, - [SMALL_STATE(1654)] = 72004, - [SMALL_STATE(1655)] = 72060, - [SMALL_STATE(1656)] = 72116, - [SMALL_STATE(1657)] = 72172, - [SMALL_STATE(1658)] = 72228, - [SMALL_STATE(1659)] = 72284, - [SMALL_STATE(1660)] = 72340, - [SMALL_STATE(1661)] = 72396, - [SMALL_STATE(1662)] = 72452, - [SMALL_STATE(1663)] = 72508, - [SMALL_STATE(1664)] = 72564, - [SMALL_STATE(1665)] = 72620, - [SMALL_STATE(1666)] = 72676, - [SMALL_STATE(1667)] = 72732, - [SMALL_STATE(1668)] = 72788, - [SMALL_STATE(1669)] = 72844, - [SMALL_STATE(1670)] = 72900, - [SMALL_STATE(1671)] = 72958, - [SMALL_STATE(1672)] = 73014, - [SMALL_STATE(1673)] = 73070, - [SMALL_STATE(1674)] = 73126, - [SMALL_STATE(1675)] = 73182, - [SMALL_STATE(1676)] = 73238, - [SMALL_STATE(1677)] = 73294, - [SMALL_STATE(1678)] = 73350, - [SMALL_STATE(1679)] = 73406, - [SMALL_STATE(1680)] = 73462, - [SMALL_STATE(1681)] = 73518, - [SMALL_STATE(1682)] = 73574, - [SMALL_STATE(1683)] = 73630, - [SMALL_STATE(1684)] = 73686, - [SMALL_STATE(1685)] = 73742, - [SMALL_STATE(1686)] = 73798, - [SMALL_STATE(1687)] = 73854, - [SMALL_STATE(1688)] = 73910, - [SMALL_STATE(1689)] = 73966, - [SMALL_STATE(1690)] = 74022, - [SMALL_STATE(1691)] = 74078, - [SMALL_STATE(1692)] = 74134, - [SMALL_STATE(1693)] = 74190, - [SMALL_STATE(1694)] = 74246, - [SMALL_STATE(1695)] = 74302, - [SMALL_STATE(1696)] = 74358, - [SMALL_STATE(1697)] = 74414, - [SMALL_STATE(1698)] = 74470, - [SMALL_STATE(1699)] = 74526, - [SMALL_STATE(1700)] = 74582, - [SMALL_STATE(1701)] = 74638, - [SMALL_STATE(1702)] = 74694, - [SMALL_STATE(1703)] = 74750, - [SMALL_STATE(1704)] = 74808, - [SMALL_STATE(1705)] = 74864, - [SMALL_STATE(1706)] = 74920, - [SMALL_STATE(1707)] = 74976, - [SMALL_STATE(1708)] = 75032, - [SMALL_STATE(1709)] = 75088, - [SMALL_STATE(1710)] = 75144, - [SMALL_STATE(1711)] = 75200, - [SMALL_STATE(1712)] = 75256, - [SMALL_STATE(1713)] = 75312, - [SMALL_STATE(1714)] = 75368, - [SMALL_STATE(1715)] = 75424, - [SMALL_STATE(1716)] = 75480, - [SMALL_STATE(1717)] = 75536, - [SMALL_STATE(1718)] = 75592, - [SMALL_STATE(1719)] = 75648, - [SMALL_STATE(1720)] = 75704, - [SMALL_STATE(1721)] = 75760, - [SMALL_STATE(1722)] = 75816, - [SMALL_STATE(1723)] = 75872, - [SMALL_STATE(1724)] = 75932, - [SMALL_STATE(1725)] = 75988, - [SMALL_STATE(1726)] = 76044, - [SMALL_STATE(1727)] = 76100, - [SMALL_STATE(1728)] = 76156, - [SMALL_STATE(1729)] = 76212, - [SMALL_STATE(1730)] = 76268, - [SMALL_STATE(1731)] = 76324, - [SMALL_STATE(1732)] = 76380, - [SMALL_STATE(1733)] = 76436, - [SMALL_STATE(1734)] = 76492, - [SMALL_STATE(1735)] = 76548, - [SMALL_STATE(1736)] = 76604, - [SMALL_STATE(1737)] = 76660, - [SMALL_STATE(1738)] = 76716, - [SMALL_STATE(1739)] = 76772, - [SMALL_STATE(1740)] = 76828, - [SMALL_STATE(1741)] = 76884, - [SMALL_STATE(1742)] = 76940, - [SMALL_STATE(1743)] = 76996, - [SMALL_STATE(1744)] = 77052, - [SMALL_STATE(1745)] = 77108, - [SMALL_STATE(1746)] = 77164, - [SMALL_STATE(1747)] = 77220, - [SMALL_STATE(1748)] = 77276, - [SMALL_STATE(1749)] = 77332, - [SMALL_STATE(1750)] = 77388, - [SMALL_STATE(1751)] = 77444, - [SMALL_STATE(1752)] = 77500, - [SMALL_STATE(1753)] = 77560, - [SMALL_STATE(1754)] = 77615, - [SMALL_STATE(1755)] = 77670, - [SMALL_STATE(1756)] = 77725, - [SMALL_STATE(1757)] = 77780, - [SMALL_STATE(1758)] = 77835, - [SMALL_STATE(1759)] = 77894, - [SMALL_STATE(1760)] = 77949, - [SMALL_STATE(1761)] = 78004, - [SMALL_STATE(1762)] = 78059, - [SMALL_STATE(1763)] = 78114, - [SMALL_STATE(1764)] = 78169, - [SMALL_STATE(1765)] = 78228, - [SMALL_STATE(1766)] = 78283, - [SMALL_STATE(1767)] = 78338, - [SMALL_STATE(1768)] = 78393, - [SMALL_STATE(1769)] = 78448, - [SMALL_STATE(1770)] = 78503, - [SMALL_STATE(1771)] = 78558, - [SMALL_STATE(1772)] = 78613, - [SMALL_STATE(1773)] = 78672, - [SMALL_STATE(1774)] = 78727, - [SMALL_STATE(1775)] = 78782, - [SMALL_STATE(1776)] = 78837, - [SMALL_STATE(1777)] = 78892, - [SMALL_STATE(1778)] = 78947, - [SMALL_STATE(1779)] = 79002, - [SMALL_STATE(1780)] = 79059, - [SMALL_STATE(1781)] = 79114, - [SMALL_STATE(1782)] = 79169, - [SMALL_STATE(1783)] = 79224, - [SMALL_STATE(1784)] = 79279, - [SMALL_STATE(1785)] = 79338, - [SMALL_STATE(1786)] = 79393, - [SMALL_STATE(1787)] = 79448, - [SMALL_STATE(1788)] = 79503, - [SMALL_STATE(1789)] = 79558, - [SMALL_STATE(1790)] = 79613, - [SMALL_STATE(1791)] = 79668, - [SMALL_STATE(1792)] = 79723, - [SMALL_STATE(1793)] = 79778, - [SMALL_STATE(1794)] = 79833, - [SMALL_STATE(1795)] = 79888, - [SMALL_STATE(1796)] = 79943, - [SMALL_STATE(1797)] = 79998, - [SMALL_STATE(1798)] = 80053, - [SMALL_STATE(1799)] = 80108, - [SMALL_STATE(1800)] = 80163, - [SMALL_STATE(1801)] = 80218, - [SMALL_STATE(1802)] = 80273, - [SMALL_STATE(1803)] = 80328, - [SMALL_STATE(1804)] = 80383, - [SMALL_STATE(1805)] = 80438, - [SMALL_STATE(1806)] = 80493, - [SMALL_STATE(1807)] = 80548, - [SMALL_STATE(1808)] = 80603, - [SMALL_STATE(1809)] = 80658, - [SMALL_STATE(1810)] = 80713, - [SMALL_STATE(1811)] = 80768, - [SMALL_STATE(1812)] = 80823, - [SMALL_STATE(1813)] = 80878, - [SMALL_STATE(1814)] = 80933, - [SMALL_STATE(1815)] = 80988, - [SMALL_STATE(1816)] = 81045, - [SMALL_STATE(1817)] = 81100, - [SMALL_STATE(1818)] = 81155, - [SMALL_STATE(1819)] = 81210, - [SMALL_STATE(1820)] = 81265, - [SMALL_STATE(1821)] = 81320, - [SMALL_STATE(1822)] = 81379, - [SMALL_STATE(1823)] = 81436, - [SMALL_STATE(1824)] = 81491, - [SMALL_STATE(1825)] = 81546, - [SMALL_STATE(1826)] = 81601, - [SMALL_STATE(1827)] = 81656, - [SMALL_STATE(1828)] = 81711, - [SMALL_STATE(1829)] = 81766, - [SMALL_STATE(1830)] = 81821, - [SMALL_STATE(1831)] = 81876, - [SMALL_STATE(1832)] = 81931, - [SMALL_STATE(1833)] = 81986, - [SMALL_STATE(1834)] = 82041, - [SMALL_STATE(1835)] = 82096, - [SMALL_STATE(1836)] = 82151, - [SMALL_STATE(1837)] = 82206, - [SMALL_STATE(1838)] = 82261, - [SMALL_STATE(1839)] = 82316, - [SMALL_STATE(1840)] = 82371, - [SMALL_STATE(1841)] = 82426, - [SMALL_STATE(1842)] = 82481, - [SMALL_STATE(1843)] = 82536, - [SMALL_STATE(1844)] = 82591, - [SMALL_STATE(1845)] = 82646, - [SMALL_STATE(1846)] = 82701, - [SMALL_STATE(1847)] = 82756, - [SMALL_STATE(1848)] = 82811, - [SMALL_STATE(1849)] = 82866, - [SMALL_STATE(1850)] = 82921, - [SMALL_STATE(1851)] = 82976, - [SMALL_STATE(1852)] = 83031, - [SMALL_STATE(1853)] = 83086, - [SMALL_STATE(1854)] = 83141, - [SMALL_STATE(1855)] = 83196, - [SMALL_STATE(1856)] = 83251, - [SMALL_STATE(1857)] = 83306, - [SMALL_STATE(1858)] = 83361, - [SMALL_STATE(1859)] = 83416, - [SMALL_STATE(1860)] = 83471, - [SMALL_STATE(1861)] = 83526, - [SMALL_STATE(1862)] = 83581, - [SMALL_STATE(1863)] = 83636, - [SMALL_STATE(1864)] = 83691, - [SMALL_STATE(1865)] = 83746, - [SMALL_STATE(1866)] = 83801, - [SMALL_STATE(1867)] = 83856, - [SMALL_STATE(1868)] = 83911, - [SMALL_STATE(1869)] = 83966, - [SMALL_STATE(1870)] = 84021, - [SMALL_STATE(1871)] = 84076, - [SMALL_STATE(1872)] = 84131, - [SMALL_STATE(1873)] = 84190, - [SMALL_STATE(1874)] = 84244, - [SMALL_STATE(1875)] = 84298, - [SMALL_STATE(1876)] = 84352, - [SMALL_STATE(1877)] = 84406, - [SMALL_STATE(1878)] = 84460, - [SMALL_STATE(1879)] = 84514, - [SMALL_STATE(1880)] = 84568, - [SMALL_STATE(1881)] = 84622, - [SMALL_STATE(1882)] = 84676, - [SMALL_STATE(1883)] = 84730, - [SMALL_STATE(1884)] = 84784, - [SMALL_STATE(1885)] = 84838, - [SMALL_STATE(1886)] = 84892, - [SMALL_STATE(1887)] = 84946, - [SMALL_STATE(1888)] = 85000, - [SMALL_STATE(1889)] = 85056, - [SMALL_STATE(1890)] = 85110, - [SMALL_STATE(1891)] = 85164, - [SMALL_STATE(1892)] = 85218, - [SMALL_STATE(1893)] = 85272, - [SMALL_STATE(1894)] = 85326, - [SMALL_STATE(1895)] = 85380, - [SMALL_STATE(1896)] = 85434, - [SMALL_STATE(1897)] = 85488, - [SMALL_STATE(1898)] = 85542, - [SMALL_STATE(1899)] = 85596, - [SMALL_STATE(1900)] = 85650, - [SMALL_STATE(1901)] = 85704, - [SMALL_STATE(1902)] = 85758, - [SMALL_STATE(1903)] = 85812, - [SMALL_STATE(1904)] = 85866, - [SMALL_STATE(1905)] = 85920, - [SMALL_STATE(1906)] = 85974, - [SMALL_STATE(1907)] = 86028, - [SMALL_STATE(1908)] = 86082, - [SMALL_STATE(1909)] = 86136, - [SMALL_STATE(1910)] = 86190, - [SMALL_STATE(1911)] = 86244, - [SMALL_STATE(1912)] = 86298, - [SMALL_STATE(1913)] = 86352, - [SMALL_STATE(1914)] = 86406, - [SMALL_STATE(1915)] = 86460, - [SMALL_STATE(1916)] = 86514, - [SMALL_STATE(1917)] = 86568, - [SMALL_STATE(1918)] = 86622, - [SMALL_STATE(1919)] = 86676, - [SMALL_STATE(1920)] = 86730, - [SMALL_STATE(1921)] = 86784, - [SMALL_STATE(1922)] = 86838, - [SMALL_STATE(1923)] = 86892, - [SMALL_STATE(1924)] = 86946, - [SMALL_STATE(1925)] = 87000, - [SMALL_STATE(1926)] = 87054, - [SMALL_STATE(1927)] = 87108, - [SMALL_STATE(1928)] = 87162, - [SMALL_STATE(1929)] = 87218, - [SMALL_STATE(1930)] = 87272, - [SMALL_STATE(1931)] = 87326, - [SMALL_STATE(1932)] = 87380, - [SMALL_STATE(1933)] = 87434, - [SMALL_STATE(1934)] = 87488, - [SMALL_STATE(1935)] = 87542, - [SMALL_STATE(1936)] = 87596, - [SMALL_STATE(1937)] = 87650, - [SMALL_STATE(1938)] = 87704, - [SMALL_STATE(1939)] = 87758, - [SMALL_STATE(1940)] = 87812, - [SMALL_STATE(1941)] = 87866, - [SMALL_STATE(1942)] = 87920, - [SMALL_STATE(1943)] = 87974, - [SMALL_STATE(1944)] = 88028, - [SMALL_STATE(1945)] = 88082, - [SMALL_STATE(1946)] = 88136, - [SMALL_STATE(1947)] = 88190, - [SMALL_STATE(1948)] = 88244, - [SMALL_STATE(1949)] = 88298, - [SMALL_STATE(1950)] = 88352, - [SMALL_STATE(1951)] = 88406, - [SMALL_STATE(1952)] = 88460, - [SMALL_STATE(1953)] = 88514, - [SMALL_STATE(1954)] = 88568, - [SMALL_STATE(1955)] = 88622, - [SMALL_STATE(1956)] = 88676, - [SMALL_STATE(1957)] = 88730, - [SMALL_STATE(1958)] = 88784, - [SMALL_STATE(1959)] = 88838, - [SMALL_STATE(1960)] = 88892, - [SMALL_STATE(1961)] = 88946, - [SMALL_STATE(1962)] = 89000, - [SMALL_STATE(1963)] = 89054, - [SMALL_STATE(1964)] = 89108, - [SMALL_STATE(1965)] = 89162, - [SMALL_STATE(1966)] = 89216, - [SMALL_STATE(1967)] = 89270, - [SMALL_STATE(1968)] = 89324, - [SMALL_STATE(1969)] = 89380, - [SMALL_STATE(1970)] = 89434, - [SMALL_STATE(1971)] = 89488, - [SMALL_STATE(1972)] = 89542, - [SMALL_STATE(1973)] = 89596, - [SMALL_STATE(1974)] = 89650, - [SMALL_STATE(1975)] = 89704, - [SMALL_STATE(1976)] = 89758, - [SMALL_STATE(1977)] = 89812, - [SMALL_STATE(1978)] = 89866, - [SMALL_STATE(1979)] = 89920, - [SMALL_STATE(1980)] = 89974, - [SMALL_STATE(1981)] = 90028, - [SMALL_STATE(1982)] = 90082, - [SMALL_STATE(1983)] = 90136, - [SMALL_STATE(1984)] = 90190, - [SMALL_STATE(1985)] = 90244, - [SMALL_STATE(1986)] = 90298, - [SMALL_STATE(1987)] = 90352, - [SMALL_STATE(1988)] = 90369, - [SMALL_STATE(1989)] = 90386, - [SMALL_STATE(1990)] = 90403, - [SMALL_STATE(1991)] = 90420, - [SMALL_STATE(1992)] = 90437, - [SMALL_STATE(1993)] = 90454, - [SMALL_STATE(1994)] = 90471, - [SMALL_STATE(1995)] = 90488, - [SMALL_STATE(1996)] = 90505, - [SMALL_STATE(1997)] = 90522, - [SMALL_STATE(1998)] = 90539, - [SMALL_STATE(1999)] = 90556, - [SMALL_STATE(2000)] = 90575, - [SMALL_STATE(2001)] = 90592, - [SMALL_STATE(2002)] = 90609, - [SMALL_STATE(2003)] = 90626, - [SMALL_STATE(2004)] = 90643, - [SMALL_STATE(2005)] = 90660, - [SMALL_STATE(2006)] = 90677, - [SMALL_STATE(2007)] = 90694, - [SMALL_STATE(2008)] = 90711, - [SMALL_STATE(2009)] = 90728, - [SMALL_STATE(2010)] = 90745, - [SMALL_STATE(2011)] = 90760, - [SMALL_STATE(2012)] = 90777, - [SMALL_STATE(2013)] = 90794, - [SMALL_STATE(2014)] = 90811, - [SMALL_STATE(2015)] = 90828, - [SMALL_STATE(2016)] = 90845, - [SMALL_STATE(2017)] = 90862, - [SMALL_STATE(2018)] = 90879, - [SMALL_STATE(2019)] = 90896, - [SMALL_STATE(2020)] = 90913, - [SMALL_STATE(2021)] = 90930, - [SMALL_STATE(2022)] = 90947, - [SMALL_STATE(2023)] = 90964, - [SMALL_STATE(2024)] = 90981, - [SMALL_STATE(2025)] = 90998, - [SMALL_STATE(2026)] = 91015, - [SMALL_STATE(2027)] = 91032, - [SMALL_STATE(2028)] = 91046, - [SMALL_STATE(2029)] = 91060, - [SMALL_STATE(2030)] = 91074, - [SMALL_STATE(2031)] = 91088, - [SMALL_STATE(2032)] = 91102, - [SMALL_STATE(2033)] = 91116, - [SMALL_STATE(2034)] = 91130, - [SMALL_STATE(2035)] = 91144, - [SMALL_STATE(2036)] = 91158, - [SMALL_STATE(2037)] = 91172, - [SMALL_STATE(2038)] = 91186, - [SMALL_STATE(2039)] = 91200, - [SMALL_STATE(2040)] = 91214, - [SMALL_STATE(2041)] = 91228, - [SMALL_STATE(2042)] = 91242, - [SMALL_STATE(2043)] = 91256, - [SMALL_STATE(2044)] = 91270, - [SMALL_STATE(2045)] = 91284, - [SMALL_STATE(2046)] = 91298, - [SMALL_STATE(2047)] = 91312, - [SMALL_STATE(2048)] = 91326, - [SMALL_STATE(2049)] = 91340, - [SMALL_STATE(2050)] = 91354, - [SMALL_STATE(2051)] = 91368, - [SMALL_STATE(2052)] = 91382, - [SMALL_STATE(2053)] = 91396, - [SMALL_STATE(2054)] = 91410, - [SMALL_STATE(2055)] = 91424, - [SMALL_STATE(2056)] = 91438, - [SMALL_STATE(2057)] = 91452, - [SMALL_STATE(2058)] = 91466, - [SMALL_STATE(2059)] = 91480, - [SMALL_STATE(2060)] = 91494, - [SMALL_STATE(2061)] = 91508, - [SMALL_STATE(2062)] = 91522, - [SMALL_STATE(2063)] = 91536, - [SMALL_STATE(2064)] = 91550, - [SMALL_STATE(2065)] = 91564, - [SMALL_STATE(2066)] = 91578, - [SMALL_STATE(2067)] = 91592, - [SMALL_STATE(2068)] = 91606, - [SMALL_STATE(2069)] = 91620, - [SMALL_STATE(2070)] = 91634, - [SMALL_STATE(2071)] = 91648, - [SMALL_STATE(2072)] = 91662, - [SMALL_STATE(2073)] = 91676, - [SMALL_STATE(2074)] = 91690, - [SMALL_STATE(2075)] = 91704, - [SMALL_STATE(2076)] = 91718, - [SMALL_STATE(2077)] = 91732, - [SMALL_STATE(2078)] = 91746, - [SMALL_STATE(2079)] = 91760, - [SMALL_STATE(2080)] = 91774, - [SMALL_STATE(2081)] = 91788, - [SMALL_STATE(2082)] = 91802, - [SMALL_STATE(2083)] = 91816, - [SMALL_STATE(2084)] = 91830, - [SMALL_STATE(2085)] = 91844, - [SMALL_STATE(2086)] = 91858, - [SMALL_STATE(2087)] = 91872, - [SMALL_STATE(2088)] = 91886, - [SMALL_STATE(2089)] = 91900, - [SMALL_STATE(2090)] = 91914, - [SMALL_STATE(2091)] = 91928, - [SMALL_STATE(2092)] = 91942, - [SMALL_STATE(2093)] = 91956, - [SMALL_STATE(2094)] = 91970, - [SMALL_STATE(2095)] = 91984, - [SMALL_STATE(2096)] = 91998, - [SMALL_STATE(2097)] = 92012, - [SMALL_STATE(2098)] = 92026, - [SMALL_STATE(2099)] = 92040, - [SMALL_STATE(2100)] = 92054, - [SMALL_STATE(2101)] = 92068, - [SMALL_STATE(2102)] = 92082, - [SMALL_STATE(2103)] = 92096, - [SMALL_STATE(2104)] = 92110, - [SMALL_STATE(2105)] = 92124, - [SMALL_STATE(2106)] = 92138, - [SMALL_STATE(2107)] = 92152, - [SMALL_STATE(2108)] = 92166, - [SMALL_STATE(2109)] = 92180, - [SMALL_STATE(2110)] = 92194, - [SMALL_STATE(2111)] = 92208, - [SMALL_STATE(2112)] = 92222, - [SMALL_STATE(2113)] = 92236, - [SMALL_STATE(2114)] = 92250, - [SMALL_STATE(2115)] = 92264, - [SMALL_STATE(2116)] = 92278, - [SMALL_STATE(2117)] = 92292, - [SMALL_STATE(2118)] = 92306, - [SMALL_STATE(2119)] = 92320, - [SMALL_STATE(2120)] = 92334, - [SMALL_STATE(2121)] = 92348, - [SMALL_STATE(2122)] = 92362, - [SMALL_STATE(2123)] = 92376, - [SMALL_STATE(2124)] = 92390, - [SMALL_STATE(2125)] = 92404, - [SMALL_STATE(2126)] = 92418, - [SMALL_STATE(2127)] = 92432, - [SMALL_STATE(2128)] = 92446, - [SMALL_STATE(2129)] = 92460, - [SMALL_STATE(2130)] = 92474, - [SMALL_STATE(2131)] = 92488, - [SMALL_STATE(2132)] = 92502, - [SMALL_STATE(2133)] = 92516, - [SMALL_STATE(2134)] = 92530, - [SMALL_STATE(2135)] = 92544, - [SMALL_STATE(2136)] = 92558, - [SMALL_STATE(2137)] = 92572, - [SMALL_STATE(2138)] = 92586, - [SMALL_STATE(2139)] = 92600, - [SMALL_STATE(2140)] = 92614, - [SMALL_STATE(2141)] = 92628, - [SMALL_STATE(2142)] = 92642, - [SMALL_STATE(2143)] = 92656, - [SMALL_STATE(2144)] = 92670, - [SMALL_STATE(2145)] = 92684, - [SMALL_STATE(2146)] = 92698, - [SMALL_STATE(2147)] = 92712, - [SMALL_STATE(2148)] = 92726, - [SMALL_STATE(2149)] = 92740, - [SMALL_STATE(2150)] = 92754, - [SMALL_STATE(2151)] = 92768, - [SMALL_STATE(2152)] = 92782, - [SMALL_STATE(2153)] = 92796, - [SMALL_STATE(2154)] = 92810, - [SMALL_STATE(2155)] = 92824, - [SMALL_STATE(2156)] = 92838, - [SMALL_STATE(2157)] = 92852, - [SMALL_STATE(2158)] = 92866, - [SMALL_STATE(2159)] = 92880, - [SMALL_STATE(2160)] = 92894, - [SMALL_STATE(2161)] = 92908, - [SMALL_STATE(2162)] = 92922, - [SMALL_STATE(2163)] = 92936, - [SMALL_STATE(2164)] = 92950, - [SMALL_STATE(2165)] = 92964, - [SMALL_STATE(2166)] = 92978, - [SMALL_STATE(2167)] = 92992, - [SMALL_STATE(2168)] = 93006, - [SMALL_STATE(2169)] = 93020, - [SMALL_STATE(2170)] = 93034, - [SMALL_STATE(2171)] = 93048, - [SMALL_STATE(2172)] = 93062, - [SMALL_STATE(2173)] = 93076, - [SMALL_STATE(2174)] = 93090, - [SMALL_STATE(2175)] = 93104, - [SMALL_STATE(2176)] = 93118, - [SMALL_STATE(2177)] = 93132, - [SMALL_STATE(2178)] = 93146, - [SMALL_STATE(2179)] = 93160, - [SMALL_STATE(2180)] = 93174, - [SMALL_STATE(2181)] = 93188, - [SMALL_STATE(2182)] = 93202, - [SMALL_STATE(2183)] = 93216, - [SMALL_STATE(2184)] = 93230, - [SMALL_STATE(2185)] = 93244, - [SMALL_STATE(2186)] = 93258, - [SMALL_STATE(2187)] = 93272, - [SMALL_STATE(2188)] = 93286, - [SMALL_STATE(2189)] = 93300, - [SMALL_STATE(2190)] = 93314, - [SMALL_STATE(2191)] = 93328, - [SMALL_STATE(2192)] = 93342, - [SMALL_STATE(2193)] = 93356, - [SMALL_STATE(2194)] = 93370, - [SMALL_STATE(2195)] = 93384, - [SMALL_STATE(2196)] = 93398, - [SMALL_STATE(2197)] = 93412, - [SMALL_STATE(2198)] = 93426, - [SMALL_STATE(2199)] = 93440, - [SMALL_STATE(2200)] = 93454, - [SMALL_STATE(2201)] = 93468, - [SMALL_STATE(2202)] = 93482, - [SMALL_STATE(2203)] = 93496, - [SMALL_STATE(2204)] = 93510, - [SMALL_STATE(2205)] = 93524, - [SMALL_STATE(2206)] = 93538, - [SMALL_STATE(2207)] = 93552, - [SMALL_STATE(2208)] = 93566, - [SMALL_STATE(2209)] = 93580, - [SMALL_STATE(2210)] = 93594, - [SMALL_STATE(2211)] = 93608, - [SMALL_STATE(2212)] = 93622, - [SMALL_STATE(2213)] = 93632, - [SMALL_STATE(2214)] = 93646, - [SMALL_STATE(2215)] = 93660, - [SMALL_STATE(2216)] = 93674, - [SMALL_STATE(2217)] = 93688, - [SMALL_STATE(2218)] = 93702, - [SMALL_STATE(2219)] = 93716, - [SMALL_STATE(2220)] = 93730, - [SMALL_STATE(2221)] = 93744, - [SMALL_STATE(2222)] = 93758, - [SMALL_STATE(2223)] = 93772, - [SMALL_STATE(2224)] = 93786, - [SMALL_STATE(2225)] = 93800, - [SMALL_STATE(2226)] = 93814, - [SMALL_STATE(2227)] = 93828, - [SMALL_STATE(2228)] = 93842, - [SMALL_STATE(2229)] = 93856, - [SMALL_STATE(2230)] = 93870, - [SMALL_STATE(2231)] = 93884, - [SMALL_STATE(2232)] = 93898, - [SMALL_STATE(2233)] = 93912, - [SMALL_STATE(2234)] = 93926, - [SMALL_STATE(2235)] = 93940, - [SMALL_STATE(2236)] = 93954, - [SMALL_STATE(2237)] = 93968, - [SMALL_STATE(2238)] = 93982, - [SMALL_STATE(2239)] = 93996, - [SMALL_STATE(2240)] = 94010, - [SMALL_STATE(2241)] = 94024, - [SMALL_STATE(2242)] = 94038, - [SMALL_STATE(2243)] = 94052, - [SMALL_STATE(2244)] = 94066, - [SMALL_STATE(2245)] = 94080, - [SMALL_STATE(2246)] = 94094, - [SMALL_STATE(2247)] = 94108, - [SMALL_STATE(2248)] = 94122, - [SMALL_STATE(2249)] = 94136, - [SMALL_STATE(2250)] = 94150, - [SMALL_STATE(2251)] = 94164, - [SMALL_STATE(2252)] = 94178, - [SMALL_STATE(2253)] = 94192, - [SMALL_STATE(2254)] = 94206, - [SMALL_STATE(2255)] = 94220, - [SMALL_STATE(2256)] = 94234, - [SMALL_STATE(2257)] = 94248, - [SMALL_STATE(2258)] = 94262, - [SMALL_STATE(2259)] = 94276, - [SMALL_STATE(2260)] = 94290, - [SMALL_STATE(2261)] = 94304, - [SMALL_STATE(2262)] = 94318, - [SMALL_STATE(2263)] = 94332, - [SMALL_STATE(2264)] = 94346, - [SMALL_STATE(2265)] = 94360, - [SMALL_STATE(2266)] = 94374, - [SMALL_STATE(2267)] = 94388, - [SMALL_STATE(2268)] = 94402, - [SMALL_STATE(2269)] = 94416, - [SMALL_STATE(2270)] = 94430, - [SMALL_STATE(2271)] = 94444, - [SMALL_STATE(2272)] = 94458, - [SMALL_STATE(2273)] = 94472, - [SMALL_STATE(2274)] = 94486, - [SMALL_STATE(2275)] = 94500, - [SMALL_STATE(2276)] = 94514, - [SMALL_STATE(2277)] = 94528, - [SMALL_STATE(2278)] = 94542, - [SMALL_STATE(2279)] = 94556, - [SMALL_STATE(2280)] = 94570, - [SMALL_STATE(2281)] = 94584, - [SMALL_STATE(2282)] = 94594, - [SMALL_STATE(2283)] = 94608, - [SMALL_STATE(2284)] = 94622, - [SMALL_STATE(2285)] = 94636, - [SMALL_STATE(2286)] = 94650, - [SMALL_STATE(2287)] = 94664, - [SMALL_STATE(2288)] = 94678, - [SMALL_STATE(2289)] = 94692, - [SMALL_STATE(2290)] = 94706, - [SMALL_STATE(2291)] = 94720, - [SMALL_STATE(2292)] = 94734, - [SMALL_STATE(2293)] = 94748, - [SMALL_STATE(2294)] = 94762, - [SMALL_STATE(2295)] = 94776, - [SMALL_STATE(2296)] = 94790, - [SMALL_STATE(2297)] = 94804, - [SMALL_STATE(2298)] = 94818, - [SMALL_STATE(2299)] = 94832, - [SMALL_STATE(2300)] = 94846, - [SMALL_STATE(2301)] = 94860, - [SMALL_STATE(2302)] = 94874, - [SMALL_STATE(2303)] = 94888, - [SMALL_STATE(2304)] = 94902, - [SMALL_STATE(2305)] = 94916, - [SMALL_STATE(2306)] = 94930, - [SMALL_STATE(2307)] = 94944, - [SMALL_STATE(2308)] = 94958, - [SMALL_STATE(2309)] = 94972, - [SMALL_STATE(2310)] = 94986, - [SMALL_STATE(2311)] = 95000, - [SMALL_STATE(2312)] = 95014, - [SMALL_STATE(2313)] = 95028, - [SMALL_STATE(2314)] = 95042, - [SMALL_STATE(2315)] = 95056, - [SMALL_STATE(2316)] = 95070, - [SMALL_STATE(2317)] = 95084, - [SMALL_STATE(2318)] = 95098, - [SMALL_STATE(2319)] = 95112, - [SMALL_STATE(2320)] = 95126, - [SMALL_STATE(2321)] = 95140, - [SMALL_STATE(2322)] = 95154, - [SMALL_STATE(2323)] = 95168, - [SMALL_STATE(2324)] = 95182, - [SMALL_STATE(2325)] = 95196, - [SMALL_STATE(2326)] = 95210, - [SMALL_STATE(2327)] = 95224, - [SMALL_STATE(2328)] = 95238, - [SMALL_STATE(2329)] = 95252, - [SMALL_STATE(2330)] = 95266, - [SMALL_STATE(2331)] = 95280, - [SMALL_STATE(2332)] = 95294, - [SMALL_STATE(2333)] = 95308, - [SMALL_STATE(2334)] = 95322, - [SMALL_STATE(2335)] = 95336, - [SMALL_STATE(2336)] = 95350, - [SMALL_STATE(2337)] = 95364, - [SMALL_STATE(2338)] = 95378, - [SMALL_STATE(2339)] = 95392, - [SMALL_STATE(2340)] = 95406, - [SMALL_STATE(2341)] = 95420, - [SMALL_STATE(2342)] = 95434, - [SMALL_STATE(2343)] = 95448, - [SMALL_STATE(2344)] = 95462, - [SMALL_STATE(2345)] = 95476, - [SMALL_STATE(2346)] = 95490, - [SMALL_STATE(2347)] = 95504, - [SMALL_STATE(2348)] = 95518, - [SMALL_STATE(2349)] = 95532, - [SMALL_STATE(2350)] = 95546, - [SMALL_STATE(2351)] = 95560, - [SMALL_STATE(2352)] = 95574, - [SMALL_STATE(2353)] = 95588, - [SMALL_STATE(2354)] = 95602, - [SMALL_STATE(2355)] = 95616, - [SMALL_STATE(2356)] = 95630, - [SMALL_STATE(2357)] = 95644, - [SMALL_STATE(2358)] = 95658, - [SMALL_STATE(2359)] = 95672, - [SMALL_STATE(2360)] = 95686, - [SMALL_STATE(2361)] = 95700, - [SMALL_STATE(2362)] = 95714, - [SMALL_STATE(2363)] = 95728, - [SMALL_STATE(2364)] = 95742, - [SMALL_STATE(2365)] = 95756, - [SMALL_STATE(2366)] = 95770, - [SMALL_STATE(2367)] = 95784, - [SMALL_STATE(2368)] = 95798, - [SMALL_STATE(2369)] = 95812, - [SMALL_STATE(2370)] = 95826, - [SMALL_STATE(2371)] = 95840, - [SMALL_STATE(2372)] = 95854, - [SMALL_STATE(2373)] = 95868, - [SMALL_STATE(2374)] = 95882, - [SMALL_STATE(2375)] = 95896, - [SMALL_STATE(2376)] = 95910, - [SMALL_STATE(2377)] = 95924, - [SMALL_STATE(2378)] = 95938, - [SMALL_STATE(2379)] = 95952, - [SMALL_STATE(2380)] = 95966, - [SMALL_STATE(2381)] = 95980, - [SMALL_STATE(2382)] = 95994, - [SMALL_STATE(2383)] = 96008, - [SMALL_STATE(2384)] = 96022, - [SMALL_STATE(2385)] = 96036, - [SMALL_STATE(2386)] = 96050, - [SMALL_STATE(2387)] = 96064, - [SMALL_STATE(2388)] = 96078, - [SMALL_STATE(2389)] = 96092, - [SMALL_STATE(2390)] = 96106, - [SMALL_STATE(2391)] = 96120, - [SMALL_STATE(2392)] = 96134, - [SMALL_STATE(2393)] = 96148, - [SMALL_STATE(2394)] = 96162, - [SMALL_STATE(2395)] = 96176, - [SMALL_STATE(2396)] = 96190, - [SMALL_STATE(2397)] = 96204, - [SMALL_STATE(2398)] = 96218, - [SMALL_STATE(2399)] = 96232, - [SMALL_STATE(2400)] = 96246, - [SMALL_STATE(2401)] = 96260, - [SMALL_STATE(2402)] = 96274, - [SMALL_STATE(2403)] = 96288, - [SMALL_STATE(2404)] = 96302, - [SMALL_STATE(2405)] = 96316, - [SMALL_STATE(2406)] = 96330, - [SMALL_STATE(2407)] = 96344, - [SMALL_STATE(2408)] = 96358, - [SMALL_STATE(2409)] = 96372, - [SMALL_STATE(2410)] = 96386, - [SMALL_STATE(2411)] = 96400, - [SMALL_STATE(2412)] = 96414, - [SMALL_STATE(2413)] = 96428, - [SMALL_STATE(2414)] = 96442, - [SMALL_STATE(2415)] = 96456, - [SMALL_STATE(2416)] = 96470, - [SMALL_STATE(2417)] = 96484, - [SMALL_STATE(2418)] = 96498, - [SMALL_STATE(2419)] = 96512, - [SMALL_STATE(2420)] = 96526, - [SMALL_STATE(2421)] = 96540, - [SMALL_STATE(2422)] = 96554, - [SMALL_STATE(2423)] = 96568, - [SMALL_STATE(2424)] = 96582, - [SMALL_STATE(2425)] = 96596, - [SMALL_STATE(2426)] = 96610, - [SMALL_STATE(2427)] = 96624, - [SMALL_STATE(2428)] = 96638, - [SMALL_STATE(2429)] = 96652, - [SMALL_STATE(2430)] = 96666, - [SMALL_STATE(2431)] = 96680, - [SMALL_STATE(2432)] = 96694, - [SMALL_STATE(2433)] = 96708, - [SMALL_STATE(2434)] = 96722, - [SMALL_STATE(2435)] = 96736, - [SMALL_STATE(2436)] = 96750, - [SMALL_STATE(2437)] = 96764, - [SMALL_STATE(2438)] = 96778, - [SMALL_STATE(2439)] = 96792, - [SMALL_STATE(2440)] = 96806, - [SMALL_STATE(2441)] = 96820, - [SMALL_STATE(2442)] = 96834, - [SMALL_STATE(2443)] = 96848, - [SMALL_STATE(2444)] = 96862, - [SMALL_STATE(2445)] = 96876, - [SMALL_STATE(2446)] = 96890, - [SMALL_STATE(2447)] = 96904, - [SMALL_STATE(2448)] = 96918, - [SMALL_STATE(2449)] = 96932, - [SMALL_STATE(2450)] = 96946, - [SMALL_STATE(2451)] = 96960, - [SMALL_STATE(2452)] = 96974, - [SMALL_STATE(2453)] = 96988, - [SMALL_STATE(2454)] = 97002, - [SMALL_STATE(2455)] = 97016, - [SMALL_STATE(2456)] = 97030, - [SMALL_STATE(2457)] = 97044, - [SMALL_STATE(2458)] = 97058, - [SMALL_STATE(2459)] = 97072, - [SMALL_STATE(2460)] = 97086, - [SMALL_STATE(2461)] = 97100, - [SMALL_STATE(2462)] = 97114, - [SMALL_STATE(2463)] = 97128, - [SMALL_STATE(2464)] = 97142, - [SMALL_STATE(2465)] = 97156, - [SMALL_STATE(2466)] = 97170, - [SMALL_STATE(2467)] = 97184, - [SMALL_STATE(2468)] = 97198, - [SMALL_STATE(2469)] = 97212, - [SMALL_STATE(2470)] = 97226, - [SMALL_STATE(2471)] = 97240, - [SMALL_STATE(2472)] = 97254, - [SMALL_STATE(2473)] = 97268, - [SMALL_STATE(2474)] = 97282, - [SMALL_STATE(2475)] = 97296, - [SMALL_STATE(2476)] = 97310, - [SMALL_STATE(2477)] = 97324, - [SMALL_STATE(2478)] = 97338, - [SMALL_STATE(2479)] = 97352, - [SMALL_STATE(2480)] = 97366, - [SMALL_STATE(2481)] = 97380, - [SMALL_STATE(2482)] = 97394, - [SMALL_STATE(2483)] = 97408, - [SMALL_STATE(2484)] = 97422, - [SMALL_STATE(2485)] = 97436, - [SMALL_STATE(2486)] = 97450, - [SMALL_STATE(2487)] = 97464, - [SMALL_STATE(2488)] = 97478, - [SMALL_STATE(2489)] = 97492, - [SMALL_STATE(2490)] = 97506, - [SMALL_STATE(2491)] = 97520, - [SMALL_STATE(2492)] = 97534, - [SMALL_STATE(2493)] = 97548, - [SMALL_STATE(2494)] = 97562, - [SMALL_STATE(2495)] = 97576, - [SMALL_STATE(2496)] = 97590, - [SMALL_STATE(2497)] = 97604, - [SMALL_STATE(2498)] = 97618, - [SMALL_STATE(2499)] = 97632, - [SMALL_STATE(2500)] = 97646, - [SMALL_STATE(2501)] = 97660, - [SMALL_STATE(2502)] = 97674, - [SMALL_STATE(2503)] = 97688, - [SMALL_STATE(2504)] = 97702, - [SMALL_STATE(2505)] = 97716, - [SMALL_STATE(2506)] = 97730, - [SMALL_STATE(2507)] = 97744, - [SMALL_STATE(2508)] = 97758, - [SMALL_STATE(2509)] = 97772, - [SMALL_STATE(2510)] = 97786, - [SMALL_STATE(2511)] = 97800, - [SMALL_STATE(2512)] = 97814, - [SMALL_STATE(2513)] = 97828, - [SMALL_STATE(2514)] = 97842, - [SMALL_STATE(2515)] = 97856, - [SMALL_STATE(2516)] = 97870, - [SMALL_STATE(2517)] = 97884, - [SMALL_STATE(2518)] = 97898, - [SMALL_STATE(2519)] = 97912, - [SMALL_STATE(2520)] = 97926, - [SMALL_STATE(2521)] = 97940, - [SMALL_STATE(2522)] = 97954, - [SMALL_STATE(2523)] = 97968, - [SMALL_STATE(2524)] = 97982, - [SMALL_STATE(2525)] = 97996, - [SMALL_STATE(2526)] = 98010, - [SMALL_STATE(2527)] = 98024, - [SMALL_STATE(2528)] = 98038, - [SMALL_STATE(2529)] = 98052, - [SMALL_STATE(2530)] = 98066, - [SMALL_STATE(2531)] = 98080, - [SMALL_STATE(2532)] = 98094, - [SMALL_STATE(2533)] = 98108, - [SMALL_STATE(2534)] = 98122, - [SMALL_STATE(2535)] = 98136, - [SMALL_STATE(2536)] = 98150, - [SMALL_STATE(2537)] = 98164, - [SMALL_STATE(2538)] = 98178, - [SMALL_STATE(2539)] = 98192, - [SMALL_STATE(2540)] = 98206, - [SMALL_STATE(2541)] = 98220, - [SMALL_STATE(2542)] = 98234, - [SMALL_STATE(2543)] = 98248, - [SMALL_STATE(2544)] = 98262, - [SMALL_STATE(2545)] = 98276, - [SMALL_STATE(2546)] = 98290, - [SMALL_STATE(2547)] = 98304, - [SMALL_STATE(2548)] = 98318, - [SMALL_STATE(2549)] = 98332, - [SMALL_STATE(2550)] = 98346, - [SMALL_STATE(2551)] = 98360, - [SMALL_STATE(2552)] = 98374, - [SMALL_STATE(2553)] = 98388, - [SMALL_STATE(2554)] = 98402, - [SMALL_STATE(2555)] = 98416, - [SMALL_STATE(2556)] = 98430, - [SMALL_STATE(2557)] = 98444, - [SMALL_STATE(2558)] = 98458, - [SMALL_STATE(2559)] = 98472, - [SMALL_STATE(2560)] = 98486, - [SMALL_STATE(2561)] = 98500, - [SMALL_STATE(2562)] = 98514, - [SMALL_STATE(2563)] = 98528, - [SMALL_STATE(2564)] = 98542, - [SMALL_STATE(2565)] = 98556, - [SMALL_STATE(2566)] = 98570, - [SMALL_STATE(2567)] = 98584, - [SMALL_STATE(2568)] = 98598, - [SMALL_STATE(2569)] = 98612, - [SMALL_STATE(2570)] = 98626, - [SMALL_STATE(2571)] = 98640, - [SMALL_STATE(2572)] = 98654, - [SMALL_STATE(2573)] = 98668, - [SMALL_STATE(2574)] = 98682, - [SMALL_STATE(2575)] = 98696, - [SMALL_STATE(2576)] = 98710, - [SMALL_STATE(2577)] = 98724, - [SMALL_STATE(2578)] = 98738, - [SMALL_STATE(2579)] = 98752, - [SMALL_STATE(2580)] = 98766, - [SMALL_STATE(2581)] = 98780, - [SMALL_STATE(2582)] = 98794, - [SMALL_STATE(2583)] = 98808, - [SMALL_STATE(2584)] = 98822, - [SMALL_STATE(2585)] = 98836, - [SMALL_STATE(2586)] = 98850, - [SMALL_STATE(2587)] = 98864, - [SMALL_STATE(2588)] = 98878, - [SMALL_STATE(2589)] = 98892, - [SMALL_STATE(2590)] = 98906, - [SMALL_STATE(2591)] = 98920, - [SMALL_STATE(2592)] = 98934, - [SMALL_STATE(2593)] = 98948, - [SMALL_STATE(2594)] = 98962, - [SMALL_STATE(2595)] = 98976, - [SMALL_STATE(2596)] = 98990, - [SMALL_STATE(2597)] = 99004, - [SMALL_STATE(2598)] = 99018, - [SMALL_STATE(2599)] = 99032, - [SMALL_STATE(2600)] = 99046, - [SMALL_STATE(2601)] = 99060, - [SMALL_STATE(2602)] = 99074, - [SMALL_STATE(2603)] = 99088, - [SMALL_STATE(2604)] = 99102, - [SMALL_STATE(2605)] = 99116, - [SMALL_STATE(2606)] = 99130, - [SMALL_STATE(2607)] = 99144, - [SMALL_STATE(2608)] = 99158, - [SMALL_STATE(2609)] = 99172, - [SMALL_STATE(2610)] = 99186, - [SMALL_STATE(2611)] = 99200, - [SMALL_STATE(2612)] = 99214, - [SMALL_STATE(2613)] = 99228, - [SMALL_STATE(2614)] = 99242, - [SMALL_STATE(2615)] = 99256, - [SMALL_STATE(2616)] = 99270, - [SMALL_STATE(2617)] = 99284, - [SMALL_STATE(2618)] = 99298, - [SMALL_STATE(2619)] = 99312, - [SMALL_STATE(2620)] = 99326, - [SMALL_STATE(2621)] = 99340, - [SMALL_STATE(2622)] = 99354, - [SMALL_STATE(2623)] = 99368, - [SMALL_STATE(2624)] = 99382, - [SMALL_STATE(2625)] = 99396, - [SMALL_STATE(2626)] = 99410, - [SMALL_STATE(2627)] = 99424, - [SMALL_STATE(2628)] = 99438, - [SMALL_STATE(2629)] = 99452, - [SMALL_STATE(2630)] = 99466, - [SMALL_STATE(2631)] = 99480, - [SMALL_STATE(2632)] = 99494, - [SMALL_STATE(2633)] = 99508, - [SMALL_STATE(2634)] = 99522, - [SMALL_STATE(2635)] = 99536, - [SMALL_STATE(2636)] = 99550, - [SMALL_STATE(2637)] = 99564, - [SMALL_STATE(2638)] = 99578, - [SMALL_STATE(2639)] = 99592, - [SMALL_STATE(2640)] = 99606, - [SMALL_STATE(2641)] = 99620, - [SMALL_STATE(2642)] = 99634, - [SMALL_STATE(2643)] = 99648, - [SMALL_STATE(2644)] = 99662, - [SMALL_STATE(2645)] = 99676, - [SMALL_STATE(2646)] = 99690, - [SMALL_STATE(2647)] = 99704, - [SMALL_STATE(2648)] = 99718, - [SMALL_STATE(2649)] = 99732, - [SMALL_STATE(2650)] = 99746, - [SMALL_STATE(2651)] = 99760, - [SMALL_STATE(2652)] = 99774, - [SMALL_STATE(2653)] = 99788, - [SMALL_STATE(2654)] = 99802, - [SMALL_STATE(2655)] = 99816, - [SMALL_STATE(2656)] = 99830, - [SMALL_STATE(2657)] = 99844, - [SMALL_STATE(2658)] = 99858, - [SMALL_STATE(2659)] = 99872, - [SMALL_STATE(2660)] = 99886, - [SMALL_STATE(2661)] = 99900, - [SMALL_STATE(2662)] = 99914, - [SMALL_STATE(2663)] = 99928, - [SMALL_STATE(2664)] = 99942, - [SMALL_STATE(2665)] = 99956, - [SMALL_STATE(2666)] = 99970, - [SMALL_STATE(2667)] = 99984, - [SMALL_STATE(2668)] = 99998, - [SMALL_STATE(2669)] = 100012, - [SMALL_STATE(2670)] = 100026, - [SMALL_STATE(2671)] = 100040, - [SMALL_STATE(2672)] = 100054, - [SMALL_STATE(2673)] = 100068, - [SMALL_STATE(2674)] = 100082, - [SMALL_STATE(2675)] = 100096, - [SMALL_STATE(2676)] = 100110, - [SMALL_STATE(2677)] = 100124, - [SMALL_STATE(2678)] = 100138, - [SMALL_STATE(2679)] = 100152, - [SMALL_STATE(2680)] = 100166, - [SMALL_STATE(2681)] = 100180, - [SMALL_STATE(2682)] = 100194, - [SMALL_STATE(2683)] = 100208, - [SMALL_STATE(2684)] = 100222, - [SMALL_STATE(2685)] = 100236, - [SMALL_STATE(2686)] = 100250, - [SMALL_STATE(2687)] = 100264, - [SMALL_STATE(2688)] = 100278, - [SMALL_STATE(2689)] = 100292, - [SMALL_STATE(2690)] = 100306, - [SMALL_STATE(2691)] = 100320, - [SMALL_STATE(2692)] = 100334, - [SMALL_STATE(2693)] = 100348, - [SMALL_STATE(2694)] = 100362, - [SMALL_STATE(2695)] = 100376, - [SMALL_STATE(2696)] = 100390, - [SMALL_STATE(2697)] = 100404, - [SMALL_STATE(2698)] = 100418, - [SMALL_STATE(2699)] = 100432, - [SMALL_STATE(2700)] = 100446, - [SMALL_STATE(2701)] = 100460, - [SMALL_STATE(2702)] = 100474, - [SMALL_STATE(2703)] = 100488, - [SMALL_STATE(2704)] = 100502, - [SMALL_STATE(2705)] = 100516, - [SMALL_STATE(2706)] = 100530, - [SMALL_STATE(2707)] = 100544, - [SMALL_STATE(2708)] = 100558, - [SMALL_STATE(2709)] = 100572, - [SMALL_STATE(2710)] = 100586, - [SMALL_STATE(2711)] = 100600, - [SMALL_STATE(2712)] = 100614, - [SMALL_STATE(2713)] = 100628, - [SMALL_STATE(2714)] = 100642, - [SMALL_STATE(2715)] = 100656, - [SMALL_STATE(2716)] = 100670, - [SMALL_STATE(2717)] = 100684, - [SMALL_STATE(2718)] = 100698, - [SMALL_STATE(2719)] = 100712, - [SMALL_STATE(2720)] = 100726, - [SMALL_STATE(2721)] = 100740, - [SMALL_STATE(2722)] = 100754, - [SMALL_STATE(2723)] = 100768, - [SMALL_STATE(2724)] = 100782, - [SMALL_STATE(2725)] = 100796, - [SMALL_STATE(2726)] = 100810, - [SMALL_STATE(2727)] = 100824, - [SMALL_STATE(2728)] = 100838, - [SMALL_STATE(2729)] = 100852, - [SMALL_STATE(2730)] = 100866, - [SMALL_STATE(2731)] = 100880, - [SMALL_STATE(2732)] = 100894, - [SMALL_STATE(2733)] = 100908, - [SMALL_STATE(2734)] = 100922, - [SMALL_STATE(2735)] = 100936, - [SMALL_STATE(2736)] = 100950, - [SMALL_STATE(2737)] = 100964, - [SMALL_STATE(2738)] = 100978, - [SMALL_STATE(2739)] = 100992, - [SMALL_STATE(2740)] = 101006, - [SMALL_STATE(2741)] = 101020, - [SMALL_STATE(2742)] = 101034, - [SMALL_STATE(2743)] = 101048, - [SMALL_STATE(2744)] = 101062, - [SMALL_STATE(2745)] = 101076, - [SMALL_STATE(2746)] = 101090, - [SMALL_STATE(2747)] = 101104, - [SMALL_STATE(2748)] = 101118, - [SMALL_STATE(2749)] = 101132, - [SMALL_STATE(2750)] = 101146, - [SMALL_STATE(2751)] = 101160, - [SMALL_STATE(2752)] = 101174, - [SMALL_STATE(2753)] = 101188, - [SMALL_STATE(2754)] = 101202, - [SMALL_STATE(2755)] = 101216, - [SMALL_STATE(2756)] = 101230, - [SMALL_STATE(2757)] = 101244, - [SMALL_STATE(2758)] = 101258, - [SMALL_STATE(2759)] = 101272, - [SMALL_STATE(2760)] = 101286, - [SMALL_STATE(2761)] = 101300, - [SMALL_STATE(2762)] = 101314, - [SMALL_STATE(2763)] = 101328, - [SMALL_STATE(2764)] = 101342, - [SMALL_STATE(2765)] = 101356, - [SMALL_STATE(2766)] = 101370, - [SMALL_STATE(2767)] = 101384, - [SMALL_STATE(2768)] = 101398, - [SMALL_STATE(2769)] = 101412, - [SMALL_STATE(2770)] = 101426, - [SMALL_STATE(2771)] = 101440, - [SMALL_STATE(2772)] = 101454, - [SMALL_STATE(2773)] = 101468, - [SMALL_STATE(2774)] = 101482, - [SMALL_STATE(2775)] = 101496, - [SMALL_STATE(2776)] = 101510, - [SMALL_STATE(2777)] = 101524, - [SMALL_STATE(2778)] = 101538, - [SMALL_STATE(2779)] = 101552, - [SMALL_STATE(2780)] = 101566, - [SMALL_STATE(2781)] = 101580, - [SMALL_STATE(2782)] = 101594, - [SMALL_STATE(2783)] = 101608, - [SMALL_STATE(2784)] = 101622, - [SMALL_STATE(2785)] = 101636, - [SMALL_STATE(2786)] = 101650, - [SMALL_STATE(2787)] = 101664, - [SMALL_STATE(2788)] = 101678, - [SMALL_STATE(2789)] = 101692, - [SMALL_STATE(2790)] = 101706, - [SMALL_STATE(2791)] = 101720, - [SMALL_STATE(2792)] = 101734, - [SMALL_STATE(2793)] = 101748, - [SMALL_STATE(2794)] = 101762, - [SMALL_STATE(2795)] = 101776, - [SMALL_STATE(2796)] = 101790, - [SMALL_STATE(2797)] = 101804, - [SMALL_STATE(2798)] = 101818, - [SMALL_STATE(2799)] = 101832, - [SMALL_STATE(2800)] = 101846, - [SMALL_STATE(2801)] = 101860, - [SMALL_STATE(2802)] = 101874, - [SMALL_STATE(2803)] = 101888, - [SMALL_STATE(2804)] = 101902, - [SMALL_STATE(2805)] = 101916, - [SMALL_STATE(2806)] = 101927, - [SMALL_STATE(2807)] = 101938, - [SMALL_STATE(2808)] = 101949, - [SMALL_STATE(2809)] = 101960, - [SMALL_STATE(2810)] = 101971, - [SMALL_STATE(2811)] = 101982, - [SMALL_STATE(2812)] = 101993, - [SMALL_STATE(2813)] = 102004, - [SMALL_STATE(2814)] = 102015, - [SMALL_STATE(2815)] = 102026, - [SMALL_STATE(2816)] = 102037, - [SMALL_STATE(2817)] = 102048, - [SMALL_STATE(2818)] = 102059, - [SMALL_STATE(2819)] = 102070, - [SMALL_STATE(2820)] = 102081, - [SMALL_STATE(2821)] = 102092, - [SMALL_STATE(2822)] = 102103, - [SMALL_STATE(2823)] = 102114, - [SMALL_STATE(2824)] = 102125, - [SMALL_STATE(2825)] = 102136, - [SMALL_STATE(2826)] = 102147, - [SMALL_STATE(2827)] = 102158, - [SMALL_STATE(2828)] = 102169, - [SMALL_STATE(2829)] = 102180, - [SMALL_STATE(2830)] = 102191, - [SMALL_STATE(2831)] = 102202, - [SMALL_STATE(2832)] = 102213, - [SMALL_STATE(2833)] = 102224, - [SMALL_STATE(2834)] = 102235, - [SMALL_STATE(2835)] = 102246, - [SMALL_STATE(2836)] = 102257, - [SMALL_STATE(2837)] = 102268, - [SMALL_STATE(2838)] = 102279, - [SMALL_STATE(2839)] = 102290, - [SMALL_STATE(2840)] = 102301, - [SMALL_STATE(2841)] = 102312, - [SMALL_STATE(2842)] = 102323, - [SMALL_STATE(2843)] = 102334, - [SMALL_STATE(2844)] = 102345, - [SMALL_STATE(2845)] = 102356, - [SMALL_STATE(2846)] = 102367, - [SMALL_STATE(2847)] = 102378, - [SMALL_STATE(2848)] = 102389, - [SMALL_STATE(2849)] = 102400, - [SMALL_STATE(2850)] = 102411, - [SMALL_STATE(2851)] = 102422, - [SMALL_STATE(2852)] = 102433, - [SMALL_STATE(2853)] = 102444, - [SMALL_STATE(2854)] = 102455, - [SMALL_STATE(2855)] = 102466, - [SMALL_STATE(2856)] = 102477, - [SMALL_STATE(2857)] = 102488, - [SMALL_STATE(2858)] = 102499, - [SMALL_STATE(2859)] = 102510, - [SMALL_STATE(2860)] = 102521, - [SMALL_STATE(2861)] = 102532, - [SMALL_STATE(2862)] = 102543, - [SMALL_STATE(2863)] = 102554, - [SMALL_STATE(2864)] = 102565, - [SMALL_STATE(2865)] = 102576, - [SMALL_STATE(2866)] = 102587, - [SMALL_STATE(2867)] = 102598, - [SMALL_STATE(2868)] = 102609, - [SMALL_STATE(2869)] = 102620, - [SMALL_STATE(2870)] = 102631, - [SMALL_STATE(2871)] = 102642, - [SMALL_STATE(2872)] = 102653, - [SMALL_STATE(2873)] = 102664, - [SMALL_STATE(2874)] = 102675, - [SMALL_STATE(2875)] = 102686, - [SMALL_STATE(2876)] = 102697, - [SMALL_STATE(2877)] = 102708, - [SMALL_STATE(2878)] = 102719, - [SMALL_STATE(2879)] = 102730, - [SMALL_STATE(2880)] = 102741, - [SMALL_STATE(2881)] = 102752, - [SMALL_STATE(2882)] = 102763, - [SMALL_STATE(2883)] = 102774, - [SMALL_STATE(2884)] = 102785, - [SMALL_STATE(2885)] = 102796, - [SMALL_STATE(2886)] = 102807, - [SMALL_STATE(2887)] = 102818, - [SMALL_STATE(2888)] = 102829, - [SMALL_STATE(2889)] = 102840, - [SMALL_STATE(2890)] = 102851, - [SMALL_STATE(2891)] = 102862, - [SMALL_STATE(2892)] = 102873, - [SMALL_STATE(2893)] = 102884, - [SMALL_STATE(2894)] = 102895, - [SMALL_STATE(2895)] = 102906, - [SMALL_STATE(2896)] = 102917, - [SMALL_STATE(2897)] = 102928, - [SMALL_STATE(2898)] = 102939, - [SMALL_STATE(2899)] = 102950, - [SMALL_STATE(2900)] = 102961, - [SMALL_STATE(2901)] = 102972, - [SMALL_STATE(2902)] = 102983, - [SMALL_STATE(2903)] = 102994, - [SMALL_STATE(2904)] = 103005, - [SMALL_STATE(2905)] = 103016, - [SMALL_STATE(2906)] = 103027, - [SMALL_STATE(2907)] = 103038, - [SMALL_STATE(2908)] = 103049, - [SMALL_STATE(2909)] = 103058, - [SMALL_STATE(2910)] = 103069, - [SMALL_STATE(2911)] = 103080, - [SMALL_STATE(2912)] = 103091, - [SMALL_STATE(2913)] = 103102, - [SMALL_STATE(2914)] = 103113, - [SMALL_STATE(2915)] = 103124, - [SMALL_STATE(2916)] = 103135, - [SMALL_STATE(2917)] = 103146, - [SMALL_STATE(2918)] = 103157, - [SMALL_STATE(2919)] = 103168, - [SMALL_STATE(2920)] = 103179, - [SMALL_STATE(2921)] = 103190, - [SMALL_STATE(2922)] = 103201, - [SMALL_STATE(2923)] = 103212, - [SMALL_STATE(2924)] = 103223, - [SMALL_STATE(2925)] = 103234, - [SMALL_STATE(2926)] = 103245, - [SMALL_STATE(2927)] = 103256, - [SMALL_STATE(2928)] = 103267, - [SMALL_STATE(2929)] = 103278, - [SMALL_STATE(2930)] = 103289, - [SMALL_STATE(2931)] = 103300, - [SMALL_STATE(2932)] = 103311, - [SMALL_STATE(2933)] = 103322, - [SMALL_STATE(2934)] = 103333, - [SMALL_STATE(2935)] = 103344, - [SMALL_STATE(2936)] = 103355, - [SMALL_STATE(2937)] = 103366, - [SMALL_STATE(2938)] = 103377, - [SMALL_STATE(2939)] = 103388, - [SMALL_STATE(2940)] = 103399, - [SMALL_STATE(2941)] = 103410, - [SMALL_STATE(2942)] = 103421, - [SMALL_STATE(2943)] = 103432, - [SMALL_STATE(2944)] = 103443, - [SMALL_STATE(2945)] = 103454, - [SMALL_STATE(2946)] = 103465, - [SMALL_STATE(2947)] = 103476, - [SMALL_STATE(2948)] = 103487, - [SMALL_STATE(2949)] = 103498, - [SMALL_STATE(2950)] = 103509, - [SMALL_STATE(2951)] = 103520, - [SMALL_STATE(2952)] = 103531, - [SMALL_STATE(2953)] = 103542, - [SMALL_STATE(2954)] = 103553, - [SMALL_STATE(2955)] = 103564, - [SMALL_STATE(2956)] = 103575, - [SMALL_STATE(2957)] = 103586, - [SMALL_STATE(2958)] = 103597, - [SMALL_STATE(2959)] = 103608, - [SMALL_STATE(2960)] = 103619, - [SMALL_STATE(2961)] = 103630, - [SMALL_STATE(2962)] = 103641, - [SMALL_STATE(2963)] = 103652, - [SMALL_STATE(2964)] = 103663, - [SMALL_STATE(2965)] = 103674, - [SMALL_STATE(2966)] = 103685, - [SMALL_STATE(2967)] = 103696, - [SMALL_STATE(2968)] = 103707, - [SMALL_STATE(2969)] = 103718, - [SMALL_STATE(2970)] = 103729, - [SMALL_STATE(2971)] = 103740, - [SMALL_STATE(2972)] = 103751, - [SMALL_STATE(2973)] = 103762, - [SMALL_STATE(2974)] = 103773, - [SMALL_STATE(2975)] = 103784, - [SMALL_STATE(2976)] = 103795, - [SMALL_STATE(2977)] = 103806, - [SMALL_STATE(2978)] = 103817, - [SMALL_STATE(2979)] = 103828, - [SMALL_STATE(2980)] = 103839, - [SMALL_STATE(2981)] = 103850, - [SMALL_STATE(2982)] = 103861, - [SMALL_STATE(2983)] = 103872, - [SMALL_STATE(2984)] = 103883, - [SMALL_STATE(2985)] = 103894, - [SMALL_STATE(2986)] = 103905, - [SMALL_STATE(2987)] = 103916, - [SMALL_STATE(2988)] = 103927, - [SMALL_STATE(2989)] = 103938, - [SMALL_STATE(2990)] = 103949, - [SMALL_STATE(2991)] = 103960, - [SMALL_STATE(2992)] = 103971, - [SMALL_STATE(2993)] = 103982, - [SMALL_STATE(2994)] = 103993, - [SMALL_STATE(2995)] = 104004, - [SMALL_STATE(2996)] = 104015, - [SMALL_STATE(2997)] = 104026, - [SMALL_STATE(2998)] = 104037, - [SMALL_STATE(2999)] = 104048, - [SMALL_STATE(3000)] = 104059, - [SMALL_STATE(3001)] = 104070, - [SMALL_STATE(3002)] = 104081, - [SMALL_STATE(3003)] = 104092, - [SMALL_STATE(3004)] = 104103, - [SMALL_STATE(3005)] = 104114, - [SMALL_STATE(3006)] = 104123, - [SMALL_STATE(3007)] = 104134, - [SMALL_STATE(3008)] = 104145, - [SMALL_STATE(3009)] = 104156, - [SMALL_STATE(3010)] = 104167, - [SMALL_STATE(3011)] = 104178, - [SMALL_STATE(3012)] = 104189, - [SMALL_STATE(3013)] = 104200, - [SMALL_STATE(3014)] = 104211, - [SMALL_STATE(3015)] = 104222, - [SMALL_STATE(3016)] = 104233, - [SMALL_STATE(3017)] = 104244, - [SMALL_STATE(3018)] = 104255, - [SMALL_STATE(3019)] = 104266, - [SMALL_STATE(3020)] = 104277, - [SMALL_STATE(3021)] = 104288, - [SMALL_STATE(3022)] = 104299, - [SMALL_STATE(3023)] = 104310, - [SMALL_STATE(3024)] = 104321, - [SMALL_STATE(3025)] = 104332, - [SMALL_STATE(3026)] = 104343, - [SMALL_STATE(3027)] = 104354, - [SMALL_STATE(3028)] = 104365, - [SMALL_STATE(3029)] = 104376, - [SMALL_STATE(3030)] = 104387, - [SMALL_STATE(3031)] = 104398, - [SMALL_STATE(3032)] = 104409, - [SMALL_STATE(3033)] = 104420, - [SMALL_STATE(3034)] = 104431, - [SMALL_STATE(3035)] = 104442, - [SMALL_STATE(3036)] = 104453, - [SMALL_STATE(3037)] = 104464, - [SMALL_STATE(3038)] = 104475, - [SMALL_STATE(3039)] = 104486, - [SMALL_STATE(3040)] = 104497, - [SMALL_STATE(3041)] = 104508, - [SMALL_STATE(3042)] = 104519, - [SMALL_STATE(3043)] = 104530, - [SMALL_STATE(3044)] = 104541, - [SMALL_STATE(3045)] = 104552, - [SMALL_STATE(3046)] = 104563, - [SMALL_STATE(3047)] = 104574, - [SMALL_STATE(3048)] = 104585, - [SMALL_STATE(3049)] = 104596, - [SMALL_STATE(3050)] = 104607, - [SMALL_STATE(3051)] = 104618, - [SMALL_STATE(3052)] = 104629, - [SMALL_STATE(3053)] = 104640, - [SMALL_STATE(3054)] = 104651, - [SMALL_STATE(3055)] = 104662, - [SMALL_STATE(3056)] = 104673, - [SMALL_STATE(3057)] = 104684, - [SMALL_STATE(3058)] = 104695, - [SMALL_STATE(3059)] = 104706, - [SMALL_STATE(3060)] = 104717, - [SMALL_STATE(3061)] = 104728, - [SMALL_STATE(3062)] = 104739, - [SMALL_STATE(3063)] = 104750, - [SMALL_STATE(3064)] = 104761, - [SMALL_STATE(3065)] = 104772, - [SMALL_STATE(3066)] = 104783, - [SMALL_STATE(3067)] = 104794, - [SMALL_STATE(3068)] = 104805, - [SMALL_STATE(3069)] = 104816, - [SMALL_STATE(3070)] = 104827, - [SMALL_STATE(3071)] = 104838, - [SMALL_STATE(3072)] = 104849, - [SMALL_STATE(3073)] = 104860, - [SMALL_STATE(3074)] = 104871, - [SMALL_STATE(3075)] = 104882, - [SMALL_STATE(3076)] = 104893, - [SMALL_STATE(3077)] = 104904, - [SMALL_STATE(3078)] = 104915, - [SMALL_STATE(3079)] = 104926, - [SMALL_STATE(3080)] = 104937, - [SMALL_STATE(3081)] = 104948, - [SMALL_STATE(3082)] = 104959, - [SMALL_STATE(3083)] = 104970, - [SMALL_STATE(3084)] = 104981, - [SMALL_STATE(3085)] = 104992, - [SMALL_STATE(3086)] = 105003, - [SMALL_STATE(3087)] = 105014, - [SMALL_STATE(3088)] = 105025, - [SMALL_STATE(3089)] = 105036, - [SMALL_STATE(3090)] = 105047, - [SMALL_STATE(3091)] = 105058, - [SMALL_STATE(3092)] = 105069, - [SMALL_STATE(3093)] = 105080, - [SMALL_STATE(3094)] = 105091, - [SMALL_STATE(3095)] = 105102, - [SMALL_STATE(3096)] = 105113, - [SMALL_STATE(3097)] = 105124, - [SMALL_STATE(3098)] = 105135, - [SMALL_STATE(3099)] = 105146, - [SMALL_STATE(3100)] = 105157, - [SMALL_STATE(3101)] = 105168, - [SMALL_STATE(3102)] = 105179, - [SMALL_STATE(3103)] = 105190, - [SMALL_STATE(3104)] = 105201, - [SMALL_STATE(3105)] = 105212, - [SMALL_STATE(3106)] = 105223, - [SMALL_STATE(3107)] = 105234, - [SMALL_STATE(3108)] = 105245, - [SMALL_STATE(3109)] = 105256, - [SMALL_STATE(3110)] = 105267, - [SMALL_STATE(3111)] = 105278, - [SMALL_STATE(3112)] = 105289, - [SMALL_STATE(3113)] = 105300, - [SMALL_STATE(3114)] = 105311, - [SMALL_STATE(3115)] = 105322, - [SMALL_STATE(3116)] = 105333, - [SMALL_STATE(3117)] = 105344, - [SMALL_STATE(3118)] = 105355, - [SMALL_STATE(3119)] = 105366, - [SMALL_STATE(3120)] = 105377, - [SMALL_STATE(3121)] = 105388, - [SMALL_STATE(3122)] = 105399, - [SMALL_STATE(3123)] = 105410, - [SMALL_STATE(3124)] = 105421, - [SMALL_STATE(3125)] = 105432, - [SMALL_STATE(3126)] = 105443, - [SMALL_STATE(3127)] = 105454, - [SMALL_STATE(3128)] = 105465, - [SMALL_STATE(3129)] = 105476, - [SMALL_STATE(3130)] = 105487, - [SMALL_STATE(3131)] = 105498, - [SMALL_STATE(3132)] = 105509, - [SMALL_STATE(3133)] = 105520, - [SMALL_STATE(3134)] = 105531, - [SMALL_STATE(3135)] = 105542, - [SMALL_STATE(3136)] = 105553, - [SMALL_STATE(3137)] = 105564, - [SMALL_STATE(3138)] = 105575, - [SMALL_STATE(3139)] = 105586, - [SMALL_STATE(3140)] = 105597, - [SMALL_STATE(3141)] = 105608, - [SMALL_STATE(3142)] = 105619, - [SMALL_STATE(3143)] = 105630, - [SMALL_STATE(3144)] = 105641, - [SMALL_STATE(3145)] = 105652, - [SMALL_STATE(3146)] = 105663, - [SMALL_STATE(3147)] = 105674, - [SMALL_STATE(3148)] = 105685, - [SMALL_STATE(3149)] = 105696, - [SMALL_STATE(3150)] = 105707, - [SMALL_STATE(3151)] = 105718, - [SMALL_STATE(3152)] = 105729, - [SMALL_STATE(3153)] = 105740, - [SMALL_STATE(3154)] = 105751, - [SMALL_STATE(3155)] = 105762, - [SMALL_STATE(3156)] = 105773, - [SMALL_STATE(3157)] = 105784, - [SMALL_STATE(3158)] = 105795, - [SMALL_STATE(3159)] = 105806, - [SMALL_STATE(3160)] = 105817, - [SMALL_STATE(3161)] = 105828, - [SMALL_STATE(3162)] = 105839, - [SMALL_STATE(3163)] = 105850, - [SMALL_STATE(3164)] = 105861, - [SMALL_STATE(3165)] = 105872, - [SMALL_STATE(3166)] = 105883, - [SMALL_STATE(3167)] = 105894, - [SMALL_STATE(3168)] = 105905, - [SMALL_STATE(3169)] = 105916, - [SMALL_STATE(3170)] = 105927, - [SMALL_STATE(3171)] = 105938, - [SMALL_STATE(3172)] = 105949, - [SMALL_STATE(3173)] = 105960, - [SMALL_STATE(3174)] = 105971, - [SMALL_STATE(3175)] = 105982, - [SMALL_STATE(3176)] = 105993, - [SMALL_STATE(3177)] = 106004, - [SMALL_STATE(3178)] = 106015, - [SMALL_STATE(3179)] = 106026, - [SMALL_STATE(3180)] = 106037, - [SMALL_STATE(3181)] = 106048, - [SMALL_STATE(3182)] = 106059, - [SMALL_STATE(3183)] = 106070, - [SMALL_STATE(3184)] = 106081, - [SMALL_STATE(3185)] = 106092, - [SMALL_STATE(3186)] = 106103, - [SMALL_STATE(3187)] = 106114, - [SMALL_STATE(3188)] = 106125, - [SMALL_STATE(3189)] = 106136, - [SMALL_STATE(3190)] = 106147, - [SMALL_STATE(3191)] = 106158, - [SMALL_STATE(3192)] = 106169, - [SMALL_STATE(3193)] = 106180, - [SMALL_STATE(3194)] = 106191, - [SMALL_STATE(3195)] = 106202, - [SMALL_STATE(3196)] = 106213, - [SMALL_STATE(3197)] = 106224, - [SMALL_STATE(3198)] = 106235, - [SMALL_STATE(3199)] = 106246, - [SMALL_STATE(3200)] = 106257, - [SMALL_STATE(3201)] = 106268, - [SMALL_STATE(3202)] = 106279, - [SMALL_STATE(3203)] = 106290, - [SMALL_STATE(3204)] = 106301, - [SMALL_STATE(3205)] = 106312, - [SMALL_STATE(3206)] = 106323, - [SMALL_STATE(3207)] = 106334, - [SMALL_STATE(3208)] = 106345, - [SMALL_STATE(3209)] = 106356, - [SMALL_STATE(3210)] = 106367, - [SMALL_STATE(3211)] = 106378, - [SMALL_STATE(3212)] = 106389, - [SMALL_STATE(3213)] = 106400, - [SMALL_STATE(3214)] = 106411, - [SMALL_STATE(3215)] = 106422, - [SMALL_STATE(3216)] = 106433, - [SMALL_STATE(3217)] = 106444, - [SMALL_STATE(3218)] = 106455, - [SMALL_STATE(3219)] = 106466, - [SMALL_STATE(3220)] = 106477, - [SMALL_STATE(3221)] = 106488, - [SMALL_STATE(3222)] = 106499, - [SMALL_STATE(3223)] = 106510, - [SMALL_STATE(3224)] = 106521, - [SMALL_STATE(3225)] = 106532, - [SMALL_STATE(3226)] = 106543, - [SMALL_STATE(3227)] = 106554, - [SMALL_STATE(3228)] = 106565, - [SMALL_STATE(3229)] = 106576, - [SMALL_STATE(3230)] = 106587, - [SMALL_STATE(3231)] = 106598, - [SMALL_STATE(3232)] = 106609, - [SMALL_STATE(3233)] = 106620, - [SMALL_STATE(3234)] = 106631, - [SMALL_STATE(3235)] = 106642, - [SMALL_STATE(3236)] = 106653, - [SMALL_STATE(3237)] = 106664, - [SMALL_STATE(3238)] = 106675, - [SMALL_STATE(3239)] = 106686, - [SMALL_STATE(3240)] = 106697, - [SMALL_STATE(3241)] = 106708, - [SMALL_STATE(3242)] = 106719, - [SMALL_STATE(3243)] = 106730, - [SMALL_STATE(3244)] = 106741, - [SMALL_STATE(3245)] = 106752, - [SMALL_STATE(3246)] = 106763, - [SMALL_STATE(3247)] = 106774, - [SMALL_STATE(3248)] = 106785, - [SMALL_STATE(3249)] = 106796, - [SMALL_STATE(3250)] = 106807, - [SMALL_STATE(3251)] = 106818, - [SMALL_STATE(3252)] = 106829, - [SMALL_STATE(3253)] = 106840, - [SMALL_STATE(3254)] = 106851, - [SMALL_STATE(3255)] = 106862, - [SMALL_STATE(3256)] = 106873, - [SMALL_STATE(3257)] = 106884, - [SMALL_STATE(3258)] = 106895, - [SMALL_STATE(3259)] = 106906, - [SMALL_STATE(3260)] = 106917, - [SMALL_STATE(3261)] = 106928, - [SMALL_STATE(3262)] = 106939, - [SMALL_STATE(3263)] = 106950, - [SMALL_STATE(3264)] = 106961, - [SMALL_STATE(3265)] = 106972, - [SMALL_STATE(3266)] = 106983, - [SMALL_STATE(3267)] = 106994, - [SMALL_STATE(3268)] = 107005, - [SMALL_STATE(3269)] = 107016, - [SMALL_STATE(3270)] = 107027, - [SMALL_STATE(3271)] = 107038, - [SMALL_STATE(3272)] = 107049, - [SMALL_STATE(3273)] = 107060, - [SMALL_STATE(3274)] = 107071, - [SMALL_STATE(3275)] = 107082, - [SMALL_STATE(3276)] = 107093, - [SMALL_STATE(3277)] = 107104, - [SMALL_STATE(3278)] = 107115, - [SMALL_STATE(3279)] = 107126, - [SMALL_STATE(3280)] = 107137, - [SMALL_STATE(3281)] = 107148, - [SMALL_STATE(3282)] = 107159, - [SMALL_STATE(3283)] = 107170, - [SMALL_STATE(3284)] = 107181, - [SMALL_STATE(3285)] = 107192, - [SMALL_STATE(3286)] = 107203, - [SMALL_STATE(3287)] = 107214, - [SMALL_STATE(3288)] = 107225, - [SMALL_STATE(3289)] = 107236, - [SMALL_STATE(3290)] = 107247, - [SMALL_STATE(3291)] = 107258, - [SMALL_STATE(3292)] = 107269, - [SMALL_STATE(3293)] = 107280, - [SMALL_STATE(3294)] = 107291, - [SMALL_STATE(3295)] = 107302, - [SMALL_STATE(3296)] = 107313, - [SMALL_STATE(3297)] = 107324, - [SMALL_STATE(3298)] = 107335, - [SMALL_STATE(3299)] = 107346, - [SMALL_STATE(3300)] = 107357, - [SMALL_STATE(3301)] = 107368, - [SMALL_STATE(3302)] = 107377, - [SMALL_STATE(3303)] = 107388, - [SMALL_STATE(3304)] = 107399, - [SMALL_STATE(3305)] = 107410, - [SMALL_STATE(3306)] = 107421, - [SMALL_STATE(3307)] = 107432, - [SMALL_STATE(3308)] = 107443, - [SMALL_STATE(3309)] = 107454, - [SMALL_STATE(3310)] = 107465, - [SMALL_STATE(3311)] = 107476, - [SMALL_STATE(3312)] = 107487, - [SMALL_STATE(3313)] = 107498, - [SMALL_STATE(3314)] = 107509, - [SMALL_STATE(3315)] = 107520, - [SMALL_STATE(3316)] = 107531, - [SMALL_STATE(3317)] = 107542, - [SMALL_STATE(3318)] = 107553, - [SMALL_STATE(3319)] = 107564, - [SMALL_STATE(3320)] = 107575, - [SMALL_STATE(3321)] = 107586, - [SMALL_STATE(3322)] = 107597, - [SMALL_STATE(3323)] = 107608, - [SMALL_STATE(3324)] = 107619, - [SMALL_STATE(3325)] = 107630, - [SMALL_STATE(3326)] = 107641, - [SMALL_STATE(3327)] = 107652, - [SMALL_STATE(3328)] = 107663, - [SMALL_STATE(3329)] = 107674, - [SMALL_STATE(3330)] = 107685, - [SMALL_STATE(3331)] = 107696, - [SMALL_STATE(3332)] = 107707, - [SMALL_STATE(3333)] = 107718, - [SMALL_STATE(3334)] = 107729, - [SMALL_STATE(3335)] = 107740, - [SMALL_STATE(3336)] = 107751, - [SMALL_STATE(3337)] = 107762, - [SMALL_STATE(3338)] = 107773, - [SMALL_STATE(3339)] = 107784, - [SMALL_STATE(3340)] = 107795, - [SMALL_STATE(3341)] = 107806, - [SMALL_STATE(3342)] = 107817, - [SMALL_STATE(3343)] = 107828, - [SMALL_STATE(3344)] = 107839, - [SMALL_STATE(3345)] = 107850, - [SMALL_STATE(3346)] = 107861, - [SMALL_STATE(3347)] = 107872, - [SMALL_STATE(3348)] = 107883, - [SMALL_STATE(3349)] = 107894, - [SMALL_STATE(3350)] = 107905, - [SMALL_STATE(3351)] = 107916, - [SMALL_STATE(3352)] = 107927, - [SMALL_STATE(3353)] = 107938, - [SMALL_STATE(3354)] = 107949, - [SMALL_STATE(3355)] = 107960, - [SMALL_STATE(3356)] = 107971, - [SMALL_STATE(3357)] = 107982, - [SMALL_STATE(3358)] = 107993, - [SMALL_STATE(3359)] = 108004, - [SMALL_STATE(3360)] = 108015, - [SMALL_STATE(3361)] = 108026, - [SMALL_STATE(3362)] = 108037, - [SMALL_STATE(3363)] = 108048, - [SMALL_STATE(3364)] = 108059, - [SMALL_STATE(3365)] = 108070, - [SMALL_STATE(3366)] = 108081, - [SMALL_STATE(3367)] = 108092, - [SMALL_STATE(3368)] = 108103, - [SMALL_STATE(3369)] = 108114, - [SMALL_STATE(3370)] = 108125, - [SMALL_STATE(3371)] = 108136, - [SMALL_STATE(3372)] = 108147, - [SMALL_STATE(3373)] = 108158, - [SMALL_STATE(3374)] = 108169, - [SMALL_STATE(3375)] = 108180, - [SMALL_STATE(3376)] = 108191, - [SMALL_STATE(3377)] = 108202, - [SMALL_STATE(3378)] = 108213, - [SMALL_STATE(3379)] = 108224, - [SMALL_STATE(3380)] = 108235, - [SMALL_STATE(3381)] = 108244, - [SMALL_STATE(3382)] = 108255, - [SMALL_STATE(3383)] = 108266, - [SMALL_STATE(3384)] = 108277, - [SMALL_STATE(3385)] = 108288, - [SMALL_STATE(3386)] = 108299, - [SMALL_STATE(3387)] = 108310, - [SMALL_STATE(3388)] = 108321, - [SMALL_STATE(3389)] = 108332, - [SMALL_STATE(3390)] = 108343, - [SMALL_STATE(3391)] = 108354, - [SMALL_STATE(3392)] = 108365, - [SMALL_STATE(3393)] = 108376, - [SMALL_STATE(3394)] = 108387, - [SMALL_STATE(3395)] = 108398, - [SMALL_STATE(3396)] = 108409, - [SMALL_STATE(3397)] = 108420, - [SMALL_STATE(3398)] = 108431, - [SMALL_STATE(3399)] = 108442, - [SMALL_STATE(3400)] = 108453, - [SMALL_STATE(3401)] = 108464, - [SMALL_STATE(3402)] = 108475, - [SMALL_STATE(3403)] = 108486, - [SMALL_STATE(3404)] = 108497, - [SMALL_STATE(3405)] = 108508, - [SMALL_STATE(3406)] = 108519, - [SMALL_STATE(3407)] = 108530, - [SMALL_STATE(3408)] = 108541, - [SMALL_STATE(3409)] = 108552, - [SMALL_STATE(3410)] = 108563, - [SMALL_STATE(3411)] = 108572, - [SMALL_STATE(3412)] = 108583, - [SMALL_STATE(3413)] = 108594, - [SMALL_STATE(3414)] = 108605, - [SMALL_STATE(3415)] = 108616, - [SMALL_STATE(3416)] = 108627, - [SMALL_STATE(3417)] = 108638, - [SMALL_STATE(3418)] = 108649, - [SMALL_STATE(3419)] = 108660, - [SMALL_STATE(3420)] = 108671, - [SMALL_STATE(3421)] = 108682, - [SMALL_STATE(3422)] = 108693, - [SMALL_STATE(3423)] = 108704, - [SMALL_STATE(3424)] = 108715, - [SMALL_STATE(3425)] = 108726, - [SMALL_STATE(3426)] = 108737, - [SMALL_STATE(3427)] = 108748, - [SMALL_STATE(3428)] = 108759, - [SMALL_STATE(3429)] = 108770, - [SMALL_STATE(3430)] = 108781, - [SMALL_STATE(3431)] = 108792, - [SMALL_STATE(3432)] = 108803, - [SMALL_STATE(3433)] = 108814, - [SMALL_STATE(3434)] = 108825, - [SMALL_STATE(3435)] = 108836, - [SMALL_STATE(3436)] = 108847, - [SMALL_STATE(3437)] = 108858, - [SMALL_STATE(3438)] = 108869, - [SMALL_STATE(3439)] = 108880, - [SMALL_STATE(3440)] = 108891, - [SMALL_STATE(3441)] = 108902, - [SMALL_STATE(3442)] = 108913, - [SMALL_STATE(3443)] = 108921, - [SMALL_STATE(3444)] = 108929, - [SMALL_STATE(3445)] = 108937, - [SMALL_STATE(3446)] = 108945, - [SMALL_STATE(3447)] = 108953, - [SMALL_STATE(3448)] = 108961, - [SMALL_STATE(3449)] = 108969, - [SMALL_STATE(3450)] = 108977, - [SMALL_STATE(3451)] = 108985, - [SMALL_STATE(3452)] = 108993, - [SMALL_STATE(3453)] = 109001, - [SMALL_STATE(3454)] = 109009, - [SMALL_STATE(3455)] = 109017, - [SMALL_STATE(3456)] = 109025, - [SMALL_STATE(3457)] = 109033, - [SMALL_STATE(3458)] = 109041, - [SMALL_STATE(3459)] = 109049, - [SMALL_STATE(3460)] = 109057, - [SMALL_STATE(3461)] = 109065, - [SMALL_STATE(3462)] = 109073, - [SMALL_STATE(3463)] = 109081, - [SMALL_STATE(3464)] = 109089, - [SMALL_STATE(3465)] = 109097, - [SMALL_STATE(3466)] = 109105, - [SMALL_STATE(3467)] = 109113, - [SMALL_STATE(3468)] = 109121, - [SMALL_STATE(3469)] = 109129, - [SMALL_STATE(3470)] = 109137, - [SMALL_STATE(3471)] = 109145, - [SMALL_STATE(3472)] = 109153, - [SMALL_STATE(3473)] = 109161, - [SMALL_STATE(3474)] = 109169, - [SMALL_STATE(3475)] = 109177, - [SMALL_STATE(3476)] = 109185, - [SMALL_STATE(3477)] = 109193, - [SMALL_STATE(3478)] = 109201, - [SMALL_STATE(3479)] = 109209, - [SMALL_STATE(3480)] = 109217, - [SMALL_STATE(3481)] = 109225, - [SMALL_STATE(3482)] = 109233, - [SMALL_STATE(3483)] = 109241, - [SMALL_STATE(3484)] = 109249, - [SMALL_STATE(3485)] = 109257, - [SMALL_STATE(3486)] = 109265, - [SMALL_STATE(3487)] = 109273, - [SMALL_STATE(3488)] = 109281, - [SMALL_STATE(3489)] = 109289, - [SMALL_STATE(3490)] = 109297, - [SMALL_STATE(3491)] = 109305, - [SMALL_STATE(3492)] = 109313, - [SMALL_STATE(3493)] = 109321, - [SMALL_STATE(3494)] = 109329, - [SMALL_STATE(3495)] = 109337, - [SMALL_STATE(3496)] = 109345, - [SMALL_STATE(3497)] = 109353, - [SMALL_STATE(3498)] = 109361, - [SMALL_STATE(3499)] = 109369, - [SMALL_STATE(3500)] = 109377, - [SMALL_STATE(3501)] = 109385, - [SMALL_STATE(3502)] = 109393, - [SMALL_STATE(3503)] = 109401, - [SMALL_STATE(3504)] = 109409, - [SMALL_STATE(3505)] = 109417, - [SMALL_STATE(3506)] = 109425, - [SMALL_STATE(3507)] = 109433, - [SMALL_STATE(3508)] = 109441, - [SMALL_STATE(3509)] = 109449, - [SMALL_STATE(3510)] = 109457, - [SMALL_STATE(3511)] = 109465, - [SMALL_STATE(3512)] = 109473, - [SMALL_STATE(3513)] = 109481, - [SMALL_STATE(3514)] = 109489, - [SMALL_STATE(3515)] = 109497, - [SMALL_STATE(3516)] = 109505, - [SMALL_STATE(3517)] = 109513, - [SMALL_STATE(3518)] = 109521, - [SMALL_STATE(3519)] = 109529, - [SMALL_STATE(3520)] = 109537, - [SMALL_STATE(3521)] = 109545, - [SMALL_STATE(3522)] = 109553, - [SMALL_STATE(3523)] = 109561, - [SMALL_STATE(3524)] = 109569, - [SMALL_STATE(3525)] = 109577, - [SMALL_STATE(3526)] = 109585, - [SMALL_STATE(3527)] = 109593, - [SMALL_STATE(3528)] = 109601, - [SMALL_STATE(3529)] = 109609, - [SMALL_STATE(3530)] = 109617, - [SMALL_STATE(3531)] = 109625, - [SMALL_STATE(3532)] = 109633, - [SMALL_STATE(3533)] = 109641, - [SMALL_STATE(3534)] = 109649, - [SMALL_STATE(3535)] = 109657, - [SMALL_STATE(3536)] = 109665, - [SMALL_STATE(3537)] = 109673, - [SMALL_STATE(3538)] = 109681, - [SMALL_STATE(3539)] = 109689, - [SMALL_STATE(3540)] = 109697, - [SMALL_STATE(3541)] = 109705, - [SMALL_STATE(3542)] = 109713, - [SMALL_STATE(3543)] = 109721, - [SMALL_STATE(3544)] = 109729, - [SMALL_STATE(3545)] = 109737, - [SMALL_STATE(3546)] = 109745, - [SMALL_STATE(3547)] = 109753, - [SMALL_STATE(3548)] = 109761, - [SMALL_STATE(3549)] = 109769, - [SMALL_STATE(3550)] = 109777, - [SMALL_STATE(3551)] = 109785, - [SMALL_STATE(3552)] = 109793, - [SMALL_STATE(3553)] = 109801, - [SMALL_STATE(3554)] = 109809, - [SMALL_STATE(3555)] = 109817, - [SMALL_STATE(3556)] = 109825, - [SMALL_STATE(3557)] = 109833, - [SMALL_STATE(3558)] = 109841, - [SMALL_STATE(3559)] = 109849, - [SMALL_STATE(3560)] = 109857, - [SMALL_STATE(3561)] = 109865, - [SMALL_STATE(3562)] = 109873, - [SMALL_STATE(3563)] = 109881, - [SMALL_STATE(3564)] = 109889, - [SMALL_STATE(3565)] = 109897, - [SMALL_STATE(3566)] = 109905, - [SMALL_STATE(3567)] = 109913, - [SMALL_STATE(3568)] = 109921, - [SMALL_STATE(3569)] = 109929, - [SMALL_STATE(3570)] = 109937, - [SMALL_STATE(3571)] = 109945, - [SMALL_STATE(3572)] = 109953, - [SMALL_STATE(3573)] = 109961, - [SMALL_STATE(3574)] = 109969, - [SMALL_STATE(3575)] = 109977, - [SMALL_STATE(3576)] = 109985, - [SMALL_STATE(3577)] = 109993, - [SMALL_STATE(3578)] = 110001, - [SMALL_STATE(3579)] = 110009, - [SMALL_STATE(3580)] = 110017, - [SMALL_STATE(3581)] = 110025, - [SMALL_STATE(3582)] = 110033, - [SMALL_STATE(3583)] = 110041, - [SMALL_STATE(3584)] = 110049, - [SMALL_STATE(3585)] = 110057, - [SMALL_STATE(3586)] = 110065, - [SMALL_STATE(3587)] = 110073, - [SMALL_STATE(3588)] = 110081, - [SMALL_STATE(3589)] = 110089, - [SMALL_STATE(3590)] = 110097, - [SMALL_STATE(3591)] = 110105, - [SMALL_STATE(3592)] = 110113, - [SMALL_STATE(3593)] = 110121, - [SMALL_STATE(3594)] = 110129, - [SMALL_STATE(3595)] = 110137, - [SMALL_STATE(3596)] = 110145, - [SMALL_STATE(3597)] = 110153, - [SMALL_STATE(3598)] = 110161, - [SMALL_STATE(3599)] = 110169, - [SMALL_STATE(3600)] = 110177, - [SMALL_STATE(3601)] = 110185, - [SMALL_STATE(3602)] = 110193, - [SMALL_STATE(3603)] = 110201, - [SMALL_STATE(3604)] = 110209, - [SMALL_STATE(3605)] = 110217, - [SMALL_STATE(3606)] = 110225, - [SMALL_STATE(3607)] = 110233, - [SMALL_STATE(3608)] = 110241, - [SMALL_STATE(3609)] = 110249, - [SMALL_STATE(3610)] = 110257, - [SMALL_STATE(3611)] = 110265, - [SMALL_STATE(3612)] = 110273, - [SMALL_STATE(3613)] = 110281, - [SMALL_STATE(3614)] = 110289, - [SMALL_STATE(3615)] = 110297, - [SMALL_STATE(3616)] = 110305, - [SMALL_STATE(3617)] = 110313, - [SMALL_STATE(3618)] = 110321, - [SMALL_STATE(3619)] = 110329, - [SMALL_STATE(3620)] = 110337, - [SMALL_STATE(3621)] = 110345, - [SMALL_STATE(3622)] = 110353, - [SMALL_STATE(3623)] = 110361, - [SMALL_STATE(3624)] = 110369, - [SMALL_STATE(3625)] = 110377, - [SMALL_STATE(3626)] = 110385, - [SMALL_STATE(3627)] = 110393, - [SMALL_STATE(3628)] = 110401, - [SMALL_STATE(3629)] = 110409, - [SMALL_STATE(3630)] = 110417, - [SMALL_STATE(3631)] = 110425, - [SMALL_STATE(3632)] = 110433, - [SMALL_STATE(3633)] = 110441, - [SMALL_STATE(3634)] = 110449, - [SMALL_STATE(3635)] = 110457, - [SMALL_STATE(3636)] = 110465, - [SMALL_STATE(3637)] = 110473, - [SMALL_STATE(3638)] = 110481, - [SMALL_STATE(3639)] = 110489, - [SMALL_STATE(3640)] = 110497, - [SMALL_STATE(3641)] = 110505, - [SMALL_STATE(3642)] = 110513, - [SMALL_STATE(3643)] = 110521, - [SMALL_STATE(3644)] = 110529, - [SMALL_STATE(3645)] = 110537, - [SMALL_STATE(3646)] = 110545, - [SMALL_STATE(3647)] = 110553, - [SMALL_STATE(3648)] = 110561, - [SMALL_STATE(3649)] = 110569, - [SMALL_STATE(3650)] = 110577, - [SMALL_STATE(3651)] = 110585, - [SMALL_STATE(3652)] = 110593, - [SMALL_STATE(3653)] = 110601, - [SMALL_STATE(3654)] = 110609, - [SMALL_STATE(3655)] = 110617, - [SMALL_STATE(3656)] = 110625, - [SMALL_STATE(3657)] = 110633, - [SMALL_STATE(3658)] = 110641, - [SMALL_STATE(3659)] = 110649, - [SMALL_STATE(3660)] = 110657, - [SMALL_STATE(3661)] = 110665, - [SMALL_STATE(3662)] = 110673, - [SMALL_STATE(3663)] = 110681, - [SMALL_STATE(3664)] = 110689, - [SMALL_STATE(3665)] = 110697, - [SMALL_STATE(3666)] = 110705, - [SMALL_STATE(3667)] = 110713, - [SMALL_STATE(3668)] = 110721, - [SMALL_STATE(3669)] = 110729, - [SMALL_STATE(3670)] = 110737, - [SMALL_STATE(3671)] = 110745, - [SMALL_STATE(3672)] = 110753, - [SMALL_STATE(3673)] = 110761, - [SMALL_STATE(3674)] = 110769, - [SMALL_STATE(3675)] = 110777, - [SMALL_STATE(3676)] = 110785, - [SMALL_STATE(3677)] = 110793, - [SMALL_STATE(3678)] = 110801, - [SMALL_STATE(3679)] = 110809, - [SMALL_STATE(3680)] = 110817, - [SMALL_STATE(3681)] = 110825, - [SMALL_STATE(3682)] = 110833, - [SMALL_STATE(3683)] = 110841, - [SMALL_STATE(3684)] = 110849, - [SMALL_STATE(3685)] = 110857, - [SMALL_STATE(3686)] = 110865, - [SMALL_STATE(3687)] = 110873, - [SMALL_STATE(3688)] = 110881, - [SMALL_STATE(3689)] = 110889, - [SMALL_STATE(3690)] = 110897, - [SMALL_STATE(3691)] = 110905, - [SMALL_STATE(3692)] = 110913, - [SMALL_STATE(3693)] = 110921, - [SMALL_STATE(3694)] = 110929, - [SMALL_STATE(3695)] = 110937, - [SMALL_STATE(3696)] = 110945, - [SMALL_STATE(3697)] = 110953, - [SMALL_STATE(3698)] = 110961, - [SMALL_STATE(3699)] = 110969, - [SMALL_STATE(3700)] = 110977, - [SMALL_STATE(3701)] = 110985, - [SMALL_STATE(3702)] = 110993, - [SMALL_STATE(3703)] = 111001, - [SMALL_STATE(3704)] = 111009, - [SMALL_STATE(3705)] = 111017, - [SMALL_STATE(3706)] = 111025, - [SMALL_STATE(3707)] = 111033, - [SMALL_STATE(3708)] = 111041, - [SMALL_STATE(3709)] = 111049, - [SMALL_STATE(3710)] = 111057, - [SMALL_STATE(3711)] = 111065, - [SMALL_STATE(3712)] = 111073, - [SMALL_STATE(3713)] = 111081, - [SMALL_STATE(3714)] = 111089, - [SMALL_STATE(3715)] = 111097, - [SMALL_STATE(3716)] = 111105, - [SMALL_STATE(3717)] = 111113, - [SMALL_STATE(3718)] = 111121, - [SMALL_STATE(3719)] = 111129, - [SMALL_STATE(3720)] = 111137, - [SMALL_STATE(3721)] = 111145, - [SMALL_STATE(3722)] = 111153, - [SMALL_STATE(3723)] = 111161, - [SMALL_STATE(3724)] = 111169, - [SMALL_STATE(3725)] = 111177, - [SMALL_STATE(3726)] = 111185, - [SMALL_STATE(3727)] = 111193, - [SMALL_STATE(3728)] = 111201, - [SMALL_STATE(3729)] = 111209, - [SMALL_STATE(3730)] = 111217, - [SMALL_STATE(3731)] = 111225, - [SMALL_STATE(3732)] = 111233, - [SMALL_STATE(3733)] = 111241, - [SMALL_STATE(3734)] = 111249, - [SMALL_STATE(3735)] = 111257, - [SMALL_STATE(3736)] = 111265, - [SMALL_STATE(3737)] = 111273, - [SMALL_STATE(3738)] = 111281, - [SMALL_STATE(3739)] = 111289, - [SMALL_STATE(3740)] = 111297, - [SMALL_STATE(3741)] = 111305, - [SMALL_STATE(3742)] = 111313, - [SMALL_STATE(3743)] = 111321, - [SMALL_STATE(3744)] = 111329, - [SMALL_STATE(3745)] = 111337, - [SMALL_STATE(3746)] = 111345, - [SMALL_STATE(3747)] = 111353, - [SMALL_STATE(3748)] = 111361, - [SMALL_STATE(3749)] = 111369, - [SMALL_STATE(3750)] = 111377, - [SMALL_STATE(3751)] = 111385, - [SMALL_STATE(3752)] = 111393, - [SMALL_STATE(3753)] = 111401, - [SMALL_STATE(3754)] = 111409, - [SMALL_STATE(3755)] = 111417, - [SMALL_STATE(3756)] = 111425, - [SMALL_STATE(3757)] = 111433, - [SMALL_STATE(3758)] = 111441, - [SMALL_STATE(3759)] = 111449, - [SMALL_STATE(3760)] = 111457, - [SMALL_STATE(3761)] = 111465, - [SMALL_STATE(3762)] = 111473, - [SMALL_STATE(3763)] = 111481, - [SMALL_STATE(3764)] = 111489, - [SMALL_STATE(3765)] = 111497, - [SMALL_STATE(3766)] = 111505, - [SMALL_STATE(3767)] = 111513, - [SMALL_STATE(3768)] = 111521, - [SMALL_STATE(3769)] = 111529, - [SMALL_STATE(3770)] = 111537, - [SMALL_STATE(3771)] = 111545, - [SMALL_STATE(3772)] = 111553, - [SMALL_STATE(3773)] = 111561, - [SMALL_STATE(3774)] = 111569, - [SMALL_STATE(3775)] = 111577, - [SMALL_STATE(3776)] = 111585, - [SMALL_STATE(3777)] = 111593, - [SMALL_STATE(3778)] = 111601, - [SMALL_STATE(3779)] = 111609, - [SMALL_STATE(3780)] = 111617, - [SMALL_STATE(3781)] = 111625, - [SMALL_STATE(3782)] = 111633, - [SMALL_STATE(3783)] = 111641, - [SMALL_STATE(3784)] = 111649, - [SMALL_STATE(3785)] = 111657, - [SMALL_STATE(3786)] = 111665, - [SMALL_STATE(3787)] = 111673, - [SMALL_STATE(3788)] = 111681, - [SMALL_STATE(3789)] = 111689, - [SMALL_STATE(3790)] = 111697, - [SMALL_STATE(3791)] = 111705, - [SMALL_STATE(3792)] = 111713, - [SMALL_STATE(3793)] = 111721, - [SMALL_STATE(3794)] = 111729, - [SMALL_STATE(3795)] = 111737, - [SMALL_STATE(3796)] = 111745, - [SMALL_STATE(3797)] = 111753, - [SMALL_STATE(3798)] = 111761, - [SMALL_STATE(3799)] = 111769, - [SMALL_STATE(3800)] = 111777, - [SMALL_STATE(3801)] = 111785, - [SMALL_STATE(3802)] = 111793, - [SMALL_STATE(3803)] = 111801, - [SMALL_STATE(3804)] = 111809, - [SMALL_STATE(3805)] = 111817, - [SMALL_STATE(3806)] = 111825, - [SMALL_STATE(3807)] = 111833, - [SMALL_STATE(3808)] = 111841, - [SMALL_STATE(3809)] = 111849, - [SMALL_STATE(3810)] = 111857, - [SMALL_STATE(3811)] = 111865, - [SMALL_STATE(3812)] = 111873, - [SMALL_STATE(3813)] = 111881, - [SMALL_STATE(3814)] = 111889, - [SMALL_STATE(3815)] = 111897, - [SMALL_STATE(3816)] = 111905, - [SMALL_STATE(3817)] = 111913, - [SMALL_STATE(3818)] = 111921, - [SMALL_STATE(3819)] = 111929, - [SMALL_STATE(3820)] = 111937, - [SMALL_STATE(3821)] = 111945, - [SMALL_STATE(3822)] = 111953, - [SMALL_STATE(3823)] = 111961, - [SMALL_STATE(3824)] = 111969, - [SMALL_STATE(3825)] = 111977, - [SMALL_STATE(3826)] = 111985, - [SMALL_STATE(3827)] = 111993, - [SMALL_STATE(3828)] = 112001, - [SMALL_STATE(3829)] = 112009, - [SMALL_STATE(3830)] = 112017, - [SMALL_STATE(3831)] = 112025, - [SMALL_STATE(3832)] = 112033, - [SMALL_STATE(3833)] = 112041, - [SMALL_STATE(3834)] = 112049, - [SMALL_STATE(3835)] = 112057, - [SMALL_STATE(3836)] = 112065, - [SMALL_STATE(3837)] = 112073, - [SMALL_STATE(3838)] = 112081, - [SMALL_STATE(3839)] = 112089, - [SMALL_STATE(3840)] = 112097, - [SMALL_STATE(3841)] = 112105, - [SMALL_STATE(3842)] = 112113, - [SMALL_STATE(3843)] = 112121, - [SMALL_STATE(3844)] = 112129, - [SMALL_STATE(3845)] = 112137, - [SMALL_STATE(3846)] = 112145, - [SMALL_STATE(3847)] = 112153, - [SMALL_STATE(3848)] = 112161, - [SMALL_STATE(3849)] = 112169, - [SMALL_STATE(3850)] = 112177, - [SMALL_STATE(3851)] = 112185, - [SMALL_STATE(3852)] = 112193, - [SMALL_STATE(3853)] = 112201, - [SMALL_STATE(3854)] = 112209, - [SMALL_STATE(3855)] = 112217, - [SMALL_STATE(3856)] = 112225, - [SMALL_STATE(3857)] = 112233, - [SMALL_STATE(3858)] = 112241, - [SMALL_STATE(3859)] = 112249, - [SMALL_STATE(3860)] = 112257, - [SMALL_STATE(3861)] = 112265, - [SMALL_STATE(3862)] = 112273, - [SMALL_STATE(3863)] = 112281, - [SMALL_STATE(3864)] = 112289, - [SMALL_STATE(3865)] = 112297, - [SMALL_STATE(3866)] = 112305, - [SMALL_STATE(3867)] = 112313, - [SMALL_STATE(3868)] = 112321, - [SMALL_STATE(3869)] = 112329, - [SMALL_STATE(3870)] = 112337, - [SMALL_STATE(3871)] = 112345, - [SMALL_STATE(3872)] = 112353, - [SMALL_STATE(3873)] = 112361, - [SMALL_STATE(3874)] = 112369, - [SMALL_STATE(3875)] = 112377, - [SMALL_STATE(3876)] = 112385, - [SMALL_STATE(3877)] = 112393, - [SMALL_STATE(3878)] = 112401, - [SMALL_STATE(3879)] = 112409, - [SMALL_STATE(3880)] = 112417, - [SMALL_STATE(3881)] = 112425, - [SMALL_STATE(3882)] = 112433, - [SMALL_STATE(3883)] = 112441, - [SMALL_STATE(3884)] = 112449, - [SMALL_STATE(3885)] = 112457, - [SMALL_STATE(3886)] = 112465, - [SMALL_STATE(3887)] = 112473, - [SMALL_STATE(3888)] = 112481, - [SMALL_STATE(3889)] = 112489, - [SMALL_STATE(3890)] = 112497, - [SMALL_STATE(3891)] = 112505, - [SMALL_STATE(3892)] = 112513, - [SMALL_STATE(3893)] = 112521, - [SMALL_STATE(3894)] = 112529, - [SMALL_STATE(3895)] = 112537, - [SMALL_STATE(3896)] = 112545, - [SMALL_STATE(3897)] = 112553, - [SMALL_STATE(3898)] = 112561, - [SMALL_STATE(3899)] = 112569, - [SMALL_STATE(3900)] = 112577, - [SMALL_STATE(3901)] = 112585, - [SMALL_STATE(3902)] = 112593, - [SMALL_STATE(3903)] = 112601, - [SMALL_STATE(3904)] = 112609, - [SMALL_STATE(3905)] = 112617, - [SMALL_STATE(3906)] = 112625, - [SMALL_STATE(3907)] = 112633, - [SMALL_STATE(3908)] = 112641, - [SMALL_STATE(3909)] = 112649, - [SMALL_STATE(3910)] = 112657, - [SMALL_STATE(3911)] = 112665, - [SMALL_STATE(3912)] = 112673, - [SMALL_STATE(3913)] = 112681, - [SMALL_STATE(3914)] = 112689, - [SMALL_STATE(3915)] = 112697, - [SMALL_STATE(3916)] = 112705, - [SMALL_STATE(3917)] = 112713, - [SMALL_STATE(3918)] = 112721, - [SMALL_STATE(3919)] = 112729, - [SMALL_STATE(3920)] = 112737, - [SMALL_STATE(3921)] = 112745, - [SMALL_STATE(3922)] = 112753, - [SMALL_STATE(3923)] = 112761, - [SMALL_STATE(3924)] = 112769, - [SMALL_STATE(3925)] = 112777, - [SMALL_STATE(3926)] = 112785, - [SMALL_STATE(3927)] = 112793, - [SMALL_STATE(3928)] = 112801, - [SMALL_STATE(3929)] = 112809, - [SMALL_STATE(3930)] = 112817, - [SMALL_STATE(3931)] = 112825, - [SMALL_STATE(3932)] = 112833, - [SMALL_STATE(3933)] = 112841, - [SMALL_STATE(3934)] = 112849, - [SMALL_STATE(3935)] = 112857, - [SMALL_STATE(3936)] = 112865, - [SMALL_STATE(3937)] = 112873, - [SMALL_STATE(3938)] = 112881, - [SMALL_STATE(3939)] = 112889, - [SMALL_STATE(3940)] = 112897, - [SMALL_STATE(3941)] = 112905, - [SMALL_STATE(3942)] = 112913, - [SMALL_STATE(3943)] = 112921, - [SMALL_STATE(3944)] = 112929, - [SMALL_STATE(3945)] = 112937, - [SMALL_STATE(3946)] = 112945, - [SMALL_STATE(3947)] = 112953, - [SMALL_STATE(3948)] = 112961, - [SMALL_STATE(3949)] = 112969, - [SMALL_STATE(3950)] = 112977, - [SMALL_STATE(3951)] = 112985, - [SMALL_STATE(3952)] = 112993, - [SMALL_STATE(3953)] = 113001, - [SMALL_STATE(3954)] = 113009, - [SMALL_STATE(3955)] = 113017, - [SMALL_STATE(3956)] = 113025, - [SMALL_STATE(3957)] = 113033, - [SMALL_STATE(3958)] = 113041, - [SMALL_STATE(3959)] = 113049, - [SMALL_STATE(3960)] = 113057, - [SMALL_STATE(3961)] = 113065, - [SMALL_STATE(3962)] = 113073, - [SMALL_STATE(3963)] = 113081, - [SMALL_STATE(3964)] = 113089, - [SMALL_STATE(3965)] = 113097, - [SMALL_STATE(3966)] = 113105, - [SMALL_STATE(3967)] = 113113, - [SMALL_STATE(3968)] = 113121, - [SMALL_STATE(3969)] = 113129, - [SMALL_STATE(3970)] = 113137, - [SMALL_STATE(3971)] = 113145, - [SMALL_STATE(3972)] = 113153, - [SMALL_STATE(3973)] = 113161, - [SMALL_STATE(3974)] = 113169, - [SMALL_STATE(3975)] = 113177, - [SMALL_STATE(3976)] = 113185, - [SMALL_STATE(3977)] = 113193, - [SMALL_STATE(3978)] = 113201, - [SMALL_STATE(3979)] = 113209, - [SMALL_STATE(3980)] = 113217, - [SMALL_STATE(3981)] = 113225, - [SMALL_STATE(3982)] = 113233, - [SMALL_STATE(3983)] = 113241, - [SMALL_STATE(3984)] = 113249, - [SMALL_STATE(3985)] = 113257, - [SMALL_STATE(3986)] = 113265, - [SMALL_STATE(3987)] = 113273, - [SMALL_STATE(3988)] = 113281, - [SMALL_STATE(3989)] = 113289, - [SMALL_STATE(3990)] = 113297, - [SMALL_STATE(3991)] = 113305, - [SMALL_STATE(3992)] = 113313, - [SMALL_STATE(3993)] = 113321, - [SMALL_STATE(3994)] = 113329, - [SMALL_STATE(3995)] = 113337, - [SMALL_STATE(3996)] = 113345, - [SMALL_STATE(3997)] = 113353, - [SMALL_STATE(3998)] = 113361, - [SMALL_STATE(3999)] = 113369, - [SMALL_STATE(4000)] = 113377, - [SMALL_STATE(4001)] = 113385, - [SMALL_STATE(4002)] = 113393, - [SMALL_STATE(4003)] = 113401, - [SMALL_STATE(4004)] = 113409, - [SMALL_STATE(4005)] = 113417, - [SMALL_STATE(4006)] = 113425, - [SMALL_STATE(4007)] = 113433, - [SMALL_STATE(4008)] = 113441, - [SMALL_STATE(4009)] = 113449, - [SMALL_STATE(4010)] = 113457, - [SMALL_STATE(4011)] = 113465, - [SMALL_STATE(4012)] = 113473, - [SMALL_STATE(4013)] = 113481, - [SMALL_STATE(4014)] = 113489, - [SMALL_STATE(4015)] = 113497, - [SMALL_STATE(4016)] = 113505, - [SMALL_STATE(4017)] = 113513, - [SMALL_STATE(4018)] = 113521, - [SMALL_STATE(4019)] = 113529, - [SMALL_STATE(4020)] = 113537, - [SMALL_STATE(4021)] = 113545, - [SMALL_STATE(4022)] = 113553, - [SMALL_STATE(4023)] = 113561, - [SMALL_STATE(4024)] = 113569, - [SMALL_STATE(4025)] = 113577, - [SMALL_STATE(4026)] = 113585, - [SMALL_STATE(4027)] = 113593, - [SMALL_STATE(4028)] = 113601, - [SMALL_STATE(4029)] = 113609, - [SMALL_STATE(4030)] = 113617, - [SMALL_STATE(4031)] = 113625, - [SMALL_STATE(4032)] = 113633, - [SMALL_STATE(4033)] = 113641, - [SMALL_STATE(4034)] = 113649, - [SMALL_STATE(4035)] = 113657, - [SMALL_STATE(4036)] = 113665, - [SMALL_STATE(4037)] = 113673, - [SMALL_STATE(4038)] = 113681, - [SMALL_STATE(4039)] = 113689, - [SMALL_STATE(4040)] = 113697, - [SMALL_STATE(4041)] = 113705, - [SMALL_STATE(4042)] = 113713, - [SMALL_STATE(4043)] = 113721, - [SMALL_STATE(4044)] = 113729, - [SMALL_STATE(4045)] = 113737, - [SMALL_STATE(4046)] = 113745, - [SMALL_STATE(4047)] = 113753, - [SMALL_STATE(4048)] = 113761, - [SMALL_STATE(4049)] = 113769, - [SMALL_STATE(4050)] = 113777, - [SMALL_STATE(4051)] = 113785, - [SMALL_STATE(4052)] = 113793, - [SMALL_STATE(4053)] = 113801, - [SMALL_STATE(4054)] = 113809, - [SMALL_STATE(4055)] = 113817, - [SMALL_STATE(4056)] = 113825, - [SMALL_STATE(4057)] = 113833, - [SMALL_STATE(4058)] = 113841, - [SMALL_STATE(4059)] = 113849, - [SMALL_STATE(4060)] = 113857, - [SMALL_STATE(4061)] = 113865, - [SMALL_STATE(4062)] = 113873, - [SMALL_STATE(4063)] = 113881, - [SMALL_STATE(4064)] = 113889, - [SMALL_STATE(4065)] = 113897, - [SMALL_STATE(4066)] = 113905, - [SMALL_STATE(4067)] = 113913, - [SMALL_STATE(4068)] = 113921, - [SMALL_STATE(4069)] = 113929, - [SMALL_STATE(4070)] = 113937, - [SMALL_STATE(4071)] = 113945, - [SMALL_STATE(4072)] = 113953, - [SMALL_STATE(4073)] = 113961, - [SMALL_STATE(4074)] = 113969, - [SMALL_STATE(4075)] = 113977, - [SMALL_STATE(4076)] = 113985, - [SMALL_STATE(4077)] = 113993, - [SMALL_STATE(4078)] = 114001, - [SMALL_STATE(4079)] = 114009, - [SMALL_STATE(4080)] = 114017, - [SMALL_STATE(4081)] = 114025, - [SMALL_STATE(4082)] = 114033, - [SMALL_STATE(4083)] = 114041, - [SMALL_STATE(4084)] = 114049, - [SMALL_STATE(4085)] = 114057, - [SMALL_STATE(4086)] = 114065, - [SMALL_STATE(4087)] = 114073, - [SMALL_STATE(4088)] = 114081, - [SMALL_STATE(4089)] = 114089, - [SMALL_STATE(4090)] = 114097, - [SMALL_STATE(4091)] = 114105, - [SMALL_STATE(4092)] = 114113, - [SMALL_STATE(4093)] = 114121, - [SMALL_STATE(4094)] = 114129, - [SMALL_STATE(4095)] = 114137, - [SMALL_STATE(4096)] = 114145, - [SMALL_STATE(4097)] = 114153, - [SMALL_STATE(4098)] = 114161, - [SMALL_STATE(4099)] = 114169, - [SMALL_STATE(4100)] = 114177, - [SMALL_STATE(4101)] = 114185, - [SMALL_STATE(4102)] = 114193, - [SMALL_STATE(4103)] = 114201, - [SMALL_STATE(4104)] = 114209, - [SMALL_STATE(4105)] = 114217, - [SMALL_STATE(4106)] = 114225, - [SMALL_STATE(4107)] = 114233, - [SMALL_STATE(4108)] = 114241, - [SMALL_STATE(4109)] = 114249, - [SMALL_STATE(4110)] = 114257, - [SMALL_STATE(4111)] = 114265, - [SMALL_STATE(4112)] = 114273, - [SMALL_STATE(4113)] = 114281, - [SMALL_STATE(4114)] = 114289, - [SMALL_STATE(4115)] = 114297, - [SMALL_STATE(4116)] = 114305, - [SMALL_STATE(4117)] = 114313, - [SMALL_STATE(4118)] = 114321, - [SMALL_STATE(4119)] = 114329, - [SMALL_STATE(4120)] = 114337, - [SMALL_STATE(4121)] = 114345, - [SMALL_STATE(4122)] = 114353, - [SMALL_STATE(4123)] = 114361, - [SMALL_STATE(4124)] = 114369, - [SMALL_STATE(4125)] = 114377, - [SMALL_STATE(4126)] = 114385, - [SMALL_STATE(4127)] = 114393, - [SMALL_STATE(4128)] = 114401, - [SMALL_STATE(4129)] = 114409, - [SMALL_STATE(4130)] = 114417, - [SMALL_STATE(4131)] = 114425, - [SMALL_STATE(4132)] = 114433, - [SMALL_STATE(4133)] = 114441, - [SMALL_STATE(4134)] = 114449, - [SMALL_STATE(4135)] = 114457, - [SMALL_STATE(4136)] = 114465, - [SMALL_STATE(4137)] = 114473, - [SMALL_STATE(4138)] = 114481, - [SMALL_STATE(4139)] = 114489, - [SMALL_STATE(4140)] = 114497, - [SMALL_STATE(4141)] = 114505, - [SMALL_STATE(4142)] = 114513, - [SMALL_STATE(4143)] = 114521, - [SMALL_STATE(4144)] = 114529, - [SMALL_STATE(4145)] = 114537, - [SMALL_STATE(4146)] = 114545, - [SMALL_STATE(4147)] = 114553, - [SMALL_STATE(4148)] = 114561, - [SMALL_STATE(4149)] = 114569, - [SMALL_STATE(4150)] = 114577, - [SMALL_STATE(4151)] = 114585, - [SMALL_STATE(4152)] = 114593, - [SMALL_STATE(4153)] = 114601, - [SMALL_STATE(4154)] = 114609, - [SMALL_STATE(4155)] = 114617, - [SMALL_STATE(4156)] = 114625, - [SMALL_STATE(4157)] = 114633, - [SMALL_STATE(4158)] = 114641, - [SMALL_STATE(4159)] = 114649, - [SMALL_STATE(4160)] = 114657, - [SMALL_STATE(4161)] = 114665, - [SMALL_STATE(4162)] = 114673, - [SMALL_STATE(4163)] = 114681, - [SMALL_STATE(4164)] = 114689, - [SMALL_STATE(4165)] = 114697, - [SMALL_STATE(4166)] = 114705, - [SMALL_STATE(4167)] = 114713, - [SMALL_STATE(4168)] = 114721, - [SMALL_STATE(4169)] = 114729, - [SMALL_STATE(4170)] = 114737, - [SMALL_STATE(4171)] = 114745, - [SMALL_STATE(4172)] = 114753, - [SMALL_STATE(4173)] = 114761, - [SMALL_STATE(4174)] = 114769, - [SMALL_STATE(4175)] = 114777, - [SMALL_STATE(4176)] = 114785, - [SMALL_STATE(4177)] = 114793, - [SMALL_STATE(4178)] = 114801, - [SMALL_STATE(4179)] = 114809, - [SMALL_STATE(4180)] = 114817, - [SMALL_STATE(4181)] = 114825, - [SMALL_STATE(4182)] = 114833, - [SMALL_STATE(4183)] = 114841, - [SMALL_STATE(4184)] = 114849, - [SMALL_STATE(4185)] = 114857, - [SMALL_STATE(4186)] = 114865, - [SMALL_STATE(4187)] = 114873, - [SMALL_STATE(4188)] = 114881, - [SMALL_STATE(4189)] = 114889, - [SMALL_STATE(4190)] = 114897, - [SMALL_STATE(4191)] = 114905, - [SMALL_STATE(4192)] = 114913, - [SMALL_STATE(4193)] = 114921, - [SMALL_STATE(4194)] = 114929, - [SMALL_STATE(4195)] = 114937, - [SMALL_STATE(4196)] = 114945, - [SMALL_STATE(4197)] = 114953, - [SMALL_STATE(4198)] = 114961, - [SMALL_STATE(4199)] = 114969, - [SMALL_STATE(4200)] = 114977, - [SMALL_STATE(4201)] = 114985, - [SMALL_STATE(4202)] = 114993, - [SMALL_STATE(4203)] = 115001, - [SMALL_STATE(4204)] = 115009, - [SMALL_STATE(4205)] = 115017, - [SMALL_STATE(4206)] = 115025, - [SMALL_STATE(4207)] = 115033, - [SMALL_STATE(4208)] = 115041, - [SMALL_STATE(4209)] = 115049, - [SMALL_STATE(4210)] = 115057, - [SMALL_STATE(4211)] = 115065, - [SMALL_STATE(4212)] = 115073, - [SMALL_STATE(4213)] = 115081, - [SMALL_STATE(4214)] = 115089, - [SMALL_STATE(4215)] = 115097, - [SMALL_STATE(4216)] = 115105, - [SMALL_STATE(4217)] = 115113, - [SMALL_STATE(4218)] = 115121, - [SMALL_STATE(4219)] = 115129, - [SMALL_STATE(4220)] = 115137, - [SMALL_STATE(4221)] = 115145, - [SMALL_STATE(4222)] = 115153, - [SMALL_STATE(4223)] = 115161, - [SMALL_STATE(4224)] = 115169, - [SMALL_STATE(4225)] = 115177, - [SMALL_STATE(4226)] = 115185, - [SMALL_STATE(4227)] = 115193, - [SMALL_STATE(4228)] = 115201, - [SMALL_STATE(4229)] = 115209, - [SMALL_STATE(4230)] = 115217, - [SMALL_STATE(4231)] = 115225, - [SMALL_STATE(4232)] = 115233, - [SMALL_STATE(4233)] = 115241, - [SMALL_STATE(4234)] = 115249, - [SMALL_STATE(4235)] = 115257, - [SMALL_STATE(4236)] = 115265, - [SMALL_STATE(4237)] = 115273, - [SMALL_STATE(4238)] = 115281, - [SMALL_STATE(4239)] = 115289, - [SMALL_STATE(4240)] = 115297, - [SMALL_STATE(4241)] = 115305, - [SMALL_STATE(4242)] = 115313, - [SMALL_STATE(4243)] = 115321, - [SMALL_STATE(4244)] = 115329, - [SMALL_STATE(4245)] = 115337, - [SMALL_STATE(4246)] = 115345, - [SMALL_STATE(4247)] = 115353, - [SMALL_STATE(4248)] = 115361, - [SMALL_STATE(4249)] = 115369, - [SMALL_STATE(4250)] = 115377, - [SMALL_STATE(4251)] = 115385, - [SMALL_STATE(4252)] = 115393, - [SMALL_STATE(4253)] = 115401, - [SMALL_STATE(4254)] = 115409, - [SMALL_STATE(4255)] = 115417, - [SMALL_STATE(4256)] = 115425, - [SMALL_STATE(4257)] = 115433, - [SMALL_STATE(4258)] = 115441, - [SMALL_STATE(4259)] = 115449, - [SMALL_STATE(4260)] = 115457, - [SMALL_STATE(4261)] = 115465, - [SMALL_STATE(4262)] = 115473, - [SMALL_STATE(4263)] = 115481, - [SMALL_STATE(4264)] = 115489, - [SMALL_STATE(4265)] = 115497, - [SMALL_STATE(4266)] = 115505, - [SMALL_STATE(4267)] = 115513, - [SMALL_STATE(4268)] = 115521, - [SMALL_STATE(4269)] = 115529, - [SMALL_STATE(4270)] = 115537, - [SMALL_STATE(4271)] = 115545, - [SMALL_STATE(4272)] = 115553, - [SMALL_STATE(4273)] = 115561, - [SMALL_STATE(4274)] = 115569, - [SMALL_STATE(4275)] = 115577, - [SMALL_STATE(4276)] = 115585, - [SMALL_STATE(4277)] = 115593, - [SMALL_STATE(4278)] = 115601, - [SMALL_STATE(4279)] = 115609, - [SMALL_STATE(4280)] = 115617, - [SMALL_STATE(4281)] = 115625, - [SMALL_STATE(4282)] = 115633, - [SMALL_STATE(4283)] = 115641, - [SMALL_STATE(4284)] = 115649, - [SMALL_STATE(4285)] = 115657, - [SMALL_STATE(4286)] = 115665, - [SMALL_STATE(4287)] = 115673, - [SMALL_STATE(4288)] = 115681, - [SMALL_STATE(4289)] = 115689, - [SMALL_STATE(4290)] = 115697, - [SMALL_STATE(4291)] = 115705, - [SMALL_STATE(4292)] = 115713, - [SMALL_STATE(4293)] = 115721, - [SMALL_STATE(4294)] = 115729, - [SMALL_STATE(4295)] = 115737, - [SMALL_STATE(4296)] = 115745, - [SMALL_STATE(4297)] = 115753, - [SMALL_STATE(4298)] = 115761, - [SMALL_STATE(4299)] = 115769, - [SMALL_STATE(4300)] = 115777, - [SMALL_STATE(4301)] = 115785, - [SMALL_STATE(4302)] = 115793, - [SMALL_STATE(4303)] = 115801, - [SMALL_STATE(4304)] = 115809, - [SMALL_STATE(4305)] = 115817, - [SMALL_STATE(4306)] = 115825, - [SMALL_STATE(4307)] = 115833, - [SMALL_STATE(4308)] = 115841, - [SMALL_STATE(4309)] = 115849, - [SMALL_STATE(4310)] = 115857, - [SMALL_STATE(4311)] = 115865, - [SMALL_STATE(4312)] = 115873, - [SMALL_STATE(4313)] = 115881, - [SMALL_STATE(4314)] = 115889, - [SMALL_STATE(4315)] = 115897, - [SMALL_STATE(4316)] = 115905, - [SMALL_STATE(4317)] = 115913, - [SMALL_STATE(4318)] = 115921, - [SMALL_STATE(4319)] = 115929, - [SMALL_STATE(4320)] = 115937, - [SMALL_STATE(4321)] = 115945, - [SMALL_STATE(4322)] = 115953, - [SMALL_STATE(4323)] = 115961, - [SMALL_STATE(4324)] = 115969, - [SMALL_STATE(4325)] = 115977, - [SMALL_STATE(4326)] = 115985, - [SMALL_STATE(4327)] = 115993, - [SMALL_STATE(4328)] = 116001, - [SMALL_STATE(4329)] = 116009, - [SMALL_STATE(4330)] = 116017, - [SMALL_STATE(4331)] = 116025, - [SMALL_STATE(4332)] = 116033, - [SMALL_STATE(4333)] = 116041, - [SMALL_STATE(4334)] = 116049, - [SMALL_STATE(4335)] = 116057, - [SMALL_STATE(4336)] = 116065, - [SMALL_STATE(4337)] = 116073, - [SMALL_STATE(4338)] = 116081, - [SMALL_STATE(4339)] = 116089, - [SMALL_STATE(4340)] = 116097, - [SMALL_STATE(4341)] = 116105, - [SMALL_STATE(4342)] = 116113, - [SMALL_STATE(4343)] = 116121, - [SMALL_STATE(4344)] = 116129, - [SMALL_STATE(4345)] = 116137, - [SMALL_STATE(4346)] = 116145, - [SMALL_STATE(4347)] = 116153, - [SMALL_STATE(4348)] = 116161, - [SMALL_STATE(4349)] = 116169, - [SMALL_STATE(4350)] = 116177, - [SMALL_STATE(4351)] = 116185, - [SMALL_STATE(4352)] = 116193, - [SMALL_STATE(4353)] = 116201, - [SMALL_STATE(4354)] = 116209, - [SMALL_STATE(4355)] = 116217, - [SMALL_STATE(4356)] = 116225, - [SMALL_STATE(4357)] = 116233, - [SMALL_STATE(4358)] = 116241, - [SMALL_STATE(4359)] = 116249, - [SMALL_STATE(4360)] = 116257, - [SMALL_STATE(4361)] = 116265, - [SMALL_STATE(4362)] = 116273, - [SMALL_STATE(4363)] = 116281, - [SMALL_STATE(4364)] = 116289, - [SMALL_STATE(4365)] = 116297, - [SMALL_STATE(4366)] = 116305, - [SMALL_STATE(4367)] = 116313, - [SMALL_STATE(4368)] = 116321, - [SMALL_STATE(4369)] = 116329, - [SMALL_STATE(4370)] = 116337, - [SMALL_STATE(4371)] = 116345, - [SMALL_STATE(4372)] = 116353, - [SMALL_STATE(4373)] = 116361, - [SMALL_STATE(4374)] = 116369, - [SMALL_STATE(4375)] = 116377, - [SMALL_STATE(4376)] = 116385, - [SMALL_STATE(4377)] = 116393, - [SMALL_STATE(4378)] = 116401, - [SMALL_STATE(4379)] = 116409, - [SMALL_STATE(4380)] = 116417, - [SMALL_STATE(4381)] = 116425, - [SMALL_STATE(4382)] = 116433, - [SMALL_STATE(4383)] = 116441, - [SMALL_STATE(4384)] = 116449, - [SMALL_STATE(4385)] = 116457, - [SMALL_STATE(4386)] = 116465, - [SMALL_STATE(4387)] = 116473, - [SMALL_STATE(4388)] = 116481, - [SMALL_STATE(4389)] = 116489, - [SMALL_STATE(4390)] = 116497, - [SMALL_STATE(4391)] = 116505, - [SMALL_STATE(4392)] = 116513, - [SMALL_STATE(4393)] = 116521, - [SMALL_STATE(4394)] = 116529, - [SMALL_STATE(4395)] = 116537, - [SMALL_STATE(4396)] = 116545, - [SMALL_STATE(4397)] = 116553, - [SMALL_STATE(4398)] = 116561, - [SMALL_STATE(4399)] = 116569, - [SMALL_STATE(4400)] = 116577, - [SMALL_STATE(4401)] = 116585, - [SMALL_STATE(4402)] = 116593, - [SMALL_STATE(4403)] = 116601, - [SMALL_STATE(4404)] = 116609, - [SMALL_STATE(4405)] = 116617, - [SMALL_STATE(4406)] = 116625, - [SMALL_STATE(4407)] = 116633, - [SMALL_STATE(4408)] = 116641, - [SMALL_STATE(4409)] = 116649, - [SMALL_STATE(4410)] = 116657, - [SMALL_STATE(4411)] = 116665, - [SMALL_STATE(4412)] = 116673, - [SMALL_STATE(4413)] = 116681, - [SMALL_STATE(4414)] = 116689, - [SMALL_STATE(4415)] = 116697, - [SMALL_STATE(4416)] = 116705, - [SMALL_STATE(4417)] = 116713, - [SMALL_STATE(4418)] = 116721, - [SMALL_STATE(4419)] = 116729, - [SMALL_STATE(4420)] = 116737, - [SMALL_STATE(4421)] = 116745, - [SMALL_STATE(4422)] = 116753, - [SMALL_STATE(4423)] = 116761, - [SMALL_STATE(4424)] = 116769, - [SMALL_STATE(4425)] = 116777, - [SMALL_STATE(4426)] = 116785, - [SMALL_STATE(4427)] = 116793, - [SMALL_STATE(4428)] = 116801, - [SMALL_STATE(4429)] = 116809, - [SMALL_STATE(4430)] = 116817, - [SMALL_STATE(4431)] = 116825, - [SMALL_STATE(4432)] = 116833, - [SMALL_STATE(4433)] = 116841, - [SMALL_STATE(4434)] = 116849, - [SMALL_STATE(4435)] = 116857, - [SMALL_STATE(4436)] = 116865, - [SMALL_STATE(4437)] = 116873, - [SMALL_STATE(4438)] = 116881, - [SMALL_STATE(4439)] = 116889, - [SMALL_STATE(4440)] = 116897, - [SMALL_STATE(4441)] = 116905, - [SMALL_STATE(4442)] = 116913, - [SMALL_STATE(4443)] = 116921, - [SMALL_STATE(4444)] = 116929, - [SMALL_STATE(4445)] = 116937, - [SMALL_STATE(4446)] = 116945, - [SMALL_STATE(4447)] = 116953, - [SMALL_STATE(4448)] = 116961, - [SMALL_STATE(4449)] = 116969, - [SMALL_STATE(4450)] = 116977, - [SMALL_STATE(4451)] = 116985, - [SMALL_STATE(4452)] = 116993, - [SMALL_STATE(4453)] = 117001, - [SMALL_STATE(4454)] = 117009, - [SMALL_STATE(4455)] = 117017, - [SMALL_STATE(4456)] = 117025, - [SMALL_STATE(4457)] = 117033, - [SMALL_STATE(4458)] = 117041, - [SMALL_STATE(4459)] = 117049, - [SMALL_STATE(4460)] = 117057, - [SMALL_STATE(4461)] = 117065, - [SMALL_STATE(4462)] = 117073, - [SMALL_STATE(4463)] = 117081, - [SMALL_STATE(4464)] = 117089, - [SMALL_STATE(4465)] = 117097, - [SMALL_STATE(4466)] = 117105, - [SMALL_STATE(4467)] = 117113, - [SMALL_STATE(4468)] = 117121, - [SMALL_STATE(4469)] = 117129, - [SMALL_STATE(4470)] = 117137, - [SMALL_STATE(4471)] = 117145, - [SMALL_STATE(4472)] = 117153, - [SMALL_STATE(4473)] = 117161, + [SMALL_STATE(1987)] = 0, + [SMALL_STATE(1988)] = 17, + [SMALL_STATE(1989)] = 34, + [SMALL_STATE(1990)] = 51, + [SMALL_STATE(1991)] = 68, + [SMALL_STATE(1992)] = 85, + [SMALL_STATE(1993)] = 102, + [SMALL_STATE(1994)] = 119, + [SMALL_STATE(1995)] = 136, + [SMALL_STATE(1996)] = 153, + [SMALL_STATE(1997)] = 170, + [SMALL_STATE(1998)] = 187, + [SMALL_STATE(1999)] = 204, + [SMALL_STATE(2000)] = 223, + [SMALL_STATE(2001)] = 240, + [SMALL_STATE(2002)] = 257, + [SMALL_STATE(2003)] = 274, + [SMALL_STATE(2004)] = 291, + [SMALL_STATE(2005)] = 308, + [SMALL_STATE(2006)] = 325, + [SMALL_STATE(2007)] = 342, + [SMALL_STATE(2008)] = 359, + [SMALL_STATE(2009)] = 376, + [SMALL_STATE(2010)] = 393, + [SMALL_STATE(2011)] = 408, + [SMALL_STATE(2012)] = 425, + [SMALL_STATE(2013)] = 442, + [SMALL_STATE(2014)] = 459, + [SMALL_STATE(2015)] = 476, + [SMALL_STATE(2016)] = 493, + [SMALL_STATE(2017)] = 510, + [SMALL_STATE(2018)] = 527, + [SMALL_STATE(2019)] = 544, + [SMALL_STATE(2020)] = 561, + [SMALL_STATE(2021)] = 578, + [SMALL_STATE(2022)] = 595, + [SMALL_STATE(2023)] = 612, + [SMALL_STATE(2024)] = 629, + [SMALL_STATE(2025)] = 646, + [SMALL_STATE(2026)] = 663, + [SMALL_STATE(2027)] = 680, + [SMALL_STATE(2028)] = 694, + [SMALL_STATE(2029)] = 708, + [SMALL_STATE(2030)] = 722, + [SMALL_STATE(2031)] = 736, + [SMALL_STATE(2032)] = 750, + [SMALL_STATE(2033)] = 764, + [SMALL_STATE(2034)] = 778, + [SMALL_STATE(2035)] = 792, + [SMALL_STATE(2036)] = 806, + [SMALL_STATE(2037)] = 820, + [SMALL_STATE(2038)] = 834, + [SMALL_STATE(2039)] = 848, + [SMALL_STATE(2040)] = 862, + [SMALL_STATE(2041)] = 876, + [SMALL_STATE(2042)] = 890, + [SMALL_STATE(2043)] = 904, + [SMALL_STATE(2044)] = 918, + [SMALL_STATE(2045)] = 932, + [SMALL_STATE(2046)] = 946, + [SMALL_STATE(2047)] = 960, + [SMALL_STATE(2048)] = 974, + [SMALL_STATE(2049)] = 988, + [SMALL_STATE(2050)] = 1002, + [SMALL_STATE(2051)] = 1016, + [SMALL_STATE(2052)] = 1030, + [SMALL_STATE(2053)] = 1044, + [SMALL_STATE(2054)] = 1058, + [SMALL_STATE(2055)] = 1072, + [SMALL_STATE(2056)] = 1086, + [SMALL_STATE(2057)] = 1100, + [SMALL_STATE(2058)] = 1114, + [SMALL_STATE(2059)] = 1128, + [SMALL_STATE(2060)] = 1142, + [SMALL_STATE(2061)] = 1156, + [SMALL_STATE(2062)] = 1170, + [SMALL_STATE(2063)] = 1184, + [SMALL_STATE(2064)] = 1198, + [SMALL_STATE(2065)] = 1212, + [SMALL_STATE(2066)] = 1226, + [SMALL_STATE(2067)] = 1240, + [SMALL_STATE(2068)] = 1254, + [SMALL_STATE(2069)] = 1268, + [SMALL_STATE(2070)] = 1282, + [SMALL_STATE(2071)] = 1296, + [SMALL_STATE(2072)] = 1310, + [SMALL_STATE(2073)] = 1324, + [SMALL_STATE(2074)] = 1338, + [SMALL_STATE(2075)] = 1352, + [SMALL_STATE(2076)] = 1366, + [SMALL_STATE(2077)] = 1380, + [SMALL_STATE(2078)] = 1394, + [SMALL_STATE(2079)] = 1408, + [SMALL_STATE(2080)] = 1422, + [SMALL_STATE(2081)] = 1436, + [SMALL_STATE(2082)] = 1450, + [SMALL_STATE(2083)] = 1464, + [SMALL_STATE(2084)] = 1478, + [SMALL_STATE(2085)] = 1492, + [SMALL_STATE(2086)] = 1506, + [SMALL_STATE(2087)] = 1520, + [SMALL_STATE(2088)] = 1534, + [SMALL_STATE(2089)] = 1548, + [SMALL_STATE(2090)] = 1562, + [SMALL_STATE(2091)] = 1576, + [SMALL_STATE(2092)] = 1590, + [SMALL_STATE(2093)] = 1604, + [SMALL_STATE(2094)] = 1618, + [SMALL_STATE(2095)] = 1632, + [SMALL_STATE(2096)] = 1646, + [SMALL_STATE(2097)] = 1660, + [SMALL_STATE(2098)] = 1674, + [SMALL_STATE(2099)] = 1688, + [SMALL_STATE(2100)] = 1702, + [SMALL_STATE(2101)] = 1716, + [SMALL_STATE(2102)] = 1730, + [SMALL_STATE(2103)] = 1744, + [SMALL_STATE(2104)] = 1758, + [SMALL_STATE(2105)] = 1772, + [SMALL_STATE(2106)] = 1786, + [SMALL_STATE(2107)] = 1800, + [SMALL_STATE(2108)] = 1814, + [SMALL_STATE(2109)] = 1828, + [SMALL_STATE(2110)] = 1842, + [SMALL_STATE(2111)] = 1856, + [SMALL_STATE(2112)] = 1870, + [SMALL_STATE(2113)] = 1884, + [SMALL_STATE(2114)] = 1898, + [SMALL_STATE(2115)] = 1912, + [SMALL_STATE(2116)] = 1926, + [SMALL_STATE(2117)] = 1940, + [SMALL_STATE(2118)] = 1954, + [SMALL_STATE(2119)] = 1968, + [SMALL_STATE(2120)] = 1982, + [SMALL_STATE(2121)] = 1996, + [SMALL_STATE(2122)] = 2010, + [SMALL_STATE(2123)] = 2024, + [SMALL_STATE(2124)] = 2038, + [SMALL_STATE(2125)] = 2052, + [SMALL_STATE(2126)] = 2066, + [SMALL_STATE(2127)] = 2080, + [SMALL_STATE(2128)] = 2094, + [SMALL_STATE(2129)] = 2108, + [SMALL_STATE(2130)] = 2122, + [SMALL_STATE(2131)] = 2136, + [SMALL_STATE(2132)] = 2150, + [SMALL_STATE(2133)] = 2164, + [SMALL_STATE(2134)] = 2178, + [SMALL_STATE(2135)] = 2192, + [SMALL_STATE(2136)] = 2206, + [SMALL_STATE(2137)] = 2220, + [SMALL_STATE(2138)] = 2234, + [SMALL_STATE(2139)] = 2248, + [SMALL_STATE(2140)] = 2262, + [SMALL_STATE(2141)] = 2276, + [SMALL_STATE(2142)] = 2290, + [SMALL_STATE(2143)] = 2304, + [SMALL_STATE(2144)] = 2318, + [SMALL_STATE(2145)] = 2332, + [SMALL_STATE(2146)] = 2346, + [SMALL_STATE(2147)] = 2360, + [SMALL_STATE(2148)] = 2374, + [SMALL_STATE(2149)] = 2388, + [SMALL_STATE(2150)] = 2402, + [SMALL_STATE(2151)] = 2416, + [SMALL_STATE(2152)] = 2430, + [SMALL_STATE(2153)] = 2444, + [SMALL_STATE(2154)] = 2458, + [SMALL_STATE(2155)] = 2472, + [SMALL_STATE(2156)] = 2486, + [SMALL_STATE(2157)] = 2500, + [SMALL_STATE(2158)] = 2514, + [SMALL_STATE(2159)] = 2528, + [SMALL_STATE(2160)] = 2542, + [SMALL_STATE(2161)] = 2556, + [SMALL_STATE(2162)] = 2570, + [SMALL_STATE(2163)] = 2584, + [SMALL_STATE(2164)] = 2598, + [SMALL_STATE(2165)] = 2612, + [SMALL_STATE(2166)] = 2626, + [SMALL_STATE(2167)] = 2640, + [SMALL_STATE(2168)] = 2654, + [SMALL_STATE(2169)] = 2668, + [SMALL_STATE(2170)] = 2682, + [SMALL_STATE(2171)] = 2696, + [SMALL_STATE(2172)] = 2710, + [SMALL_STATE(2173)] = 2724, + [SMALL_STATE(2174)] = 2738, + [SMALL_STATE(2175)] = 2752, + [SMALL_STATE(2176)] = 2766, + [SMALL_STATE(2177)] = 2780, + [SMALL_STATE(2178)] = 2794, + [SMALL_STATE(2179)] = 2808, + [SMALL_STATE(2180)] = 2822, + [SMALL_STATE(2181)] = 2836, + [SMALL_STATE(2182)] = 2850, + [SMALL_STATE(2183)] = 2864, + [SMALL_STATE(2184)] = 2878, + [SMALL_STATE(2185)] = 2892, + [SMALL_STATE(2186)] = 2906, + [SMALL_STATE(2187)] = 2920, + [SMALL_STATE(2188)] = 2934, + [SMALL_STATE(2189)] = 2948, + [SMALL_STATE(2190)] = 2962, + [SMALL_STATE(2191)] = 2976, + [SMALL_STATE(2192)] = 2990, + [SMALL_STATE(2193)] = 3004, + [SMALL_STATE(2194)] = 3018, + [SMALL_STATE(2195)] = 3032, + [SMALL_STATE(2196)] = 3046, + [SMALL_STATE(2197)] = 3060, + [SMALL_STATE(2198)] = 3074, + [SMALL_STATE(2199)] = 3088, + [SMALL_STATE(2200)] = 3102, + [SMALL_STATE(2201)] = 3116, + [SMALL_STATE(2202)] = 3130, + [SMALL_STATE(2203)] = 3144, + [SMALL_STATE(2204)] = 3158, + [SMALL_STATE(2205)] = 3172, + [SMALL_STATE(2206)] = 3186, + [SMALL_STATE(2207)] = 3200, + [SMALL_STATE(2208)] = 3214, + [SMALL_STATE(2209)] = 3228, + [SMALL_STATE(2210)] = 3242, + [SMALL_STATE(2211)] = 3256, + [SMALL_STATE(2212)] = 3270, + [SMALL_STATE(2213)] = 3280, + [SMALL_STATE(2214)] = 3294, + [SMALL_STATE(2215)] = 3308, + [SMALL_STATE(2216)] = 3322, + [SMALL_STATE(2217)] = 3336, + [SMALL_STATE(2218)] = 3350, + [SMALL_STATE(2219)] = 3364, + [SMALL_STATE(2220)] = 3378, + [SMALL_STATE(2221)] = 3392, + [SMALL_STATE(2222)] = 3406, + [SMALL_STATE(2223)] = 3420, + [SMALL_STATE(2224)] = 3434, + [SMALL_STATE(2225)] = 3448, + [SMALL_STATE(2226)] = 3462, + [SMALL_STATE(2227)] = 3476, + [SMALL_STATE(2228)] = 3490, + [SMALL_STATE(2229)] = 3504, + [SMALL_STATE(2230)] = 3518, + [SMALL_STATE(2231)] = 3532, + [SMALL_STATE(2232)] = 3546, + [SMALL_STATE(2233)] = 3560, + [SMALL_STATE(2234)] = 3574, + [SMALL_STATE(2235)] = 3588, + [SMALL_STATE(2236)] = 3602, + [SMALL_STATE(2237)] = 3616, + [SMALL_STATE(2238)] = 3630, + [SMALL_STATE(2239)] = 3644, + [SMALL_STATE(2240)] = 3658, + [SMALL_STATE(2241)] = 3672, + [SMALL_STATE(2242)] = 3686, + [SMALL_STATE(2243)] = 3700, + [SMALL_STATE(2244)] = 3714, + [SMALL_STATE(2245)] = 3728, + [SMALL_STATE(2246)] = 3742, + [SMALL_STATE(2247)] = 3756, + [SMALL_STATE(2248)] = 3770, + [SMALL_STATE(2249)] = 3784, + [SMALL_STATE(2250)] = 3798, + [SMALL_STATE(2251)] = 3812, + [SMALL_STATE(2252)] = 3826, + [SMALL_STATE(2253)] = 3840, + [SMALL_STATE(2254)] = 3854, + [SMALL_STATE(2255)] = 3868, + [SMALL_STATE(2256)] = 3882, + [SMALL_STATE(2257)] = 3896, + [SMALL_STATE(2258)] = 3910, + [SMALL_STATE(2259)] = 3924, + [SMALL_STATE(2260)] = 3938, + [SMALL_STATE(2261)] = 3952, + [SMALL_STATE(2262)] = 3966, + [SMALL_STATE(2263)] = 3980, + [SMALL_STATE(2264)] = 3994, + [SMALL_STATE(2265)] = 4008, + [SMALL_STATE(2266)] = 4022, + [SMALL_STATE(2267)] = 4036, + [SMALL_STATE(2268)] = 4050, + [SMALL_STATE(2269)] = 4064, + [SMALL_STATE(2270)] = 4078, + [SMALL_STATE(2271)] = 4092, + [SMALL_STATE(2272)] = 4106, + [SMALL_STATE(2273)] = 4120, + [SMALL_STATE(2274)] = 4134, + [SMALL_STATE(2275)] = 4148, + [SMALL_STATE(2276)] = 4162, + [SMALL_STATE(2277)] = 4176, + [SMALL_STATE(2278)] = 4190, + [SMALL_STATE(2279)] = 4204, + [SMALL_STATE(2280)] = 4218, + [SMALL_STATE(2281)] = 4232, + [SMALL_STATE(2282)] = 4242, + [SMALL_STATE(2283)] = 4256, + [SMALL_STATE(2284)] = 4270, + [SMALL_STATE(2285)] = 4284, + [SMALL_STATE(2286)] = 4298, + [SMALL_STATE(2287)] = 4312, + [SMALL_STATE(2288)] = 4326, + [SMALL_STATE(2289)] = 4340, + [SMALL_STATE(2290)] = 4354, + [SMALL_STATE(2291)] = 4368, + [SMALL_STATE(2292)] = 4382, + [SMALL_STATE(2293)] = 4396, + [SMALL_STATE(2294)] = 4410, + [SMALL_STATE(2295)] = 4424, + [SMALL_STATE(2296)] = 4438, + [SMALL_STATE(2297)] = 4452, + [SMALL_STATE(2298)] = 4466, + [SMALL_STATE(2299)] = 4480, + [SMALL_STATE(2300)] = 4494, + [SMALL_STATE(2301)] = 4508, + [SMALL_STATE(2302)] = 4522, + [SMALL_STATE(2303)] = 4536, + [SMALL_STATE(2304)] = 4550, + [SMALL_STATE(2305)] = 4564, + [SMALL_STATE(2306)] = 4578, + [SMALL_STATE(2307)] = 4592, + [SMALL_STATE(2308)] = 4606, + [SMALL_STATE(2309)] = 4620, + [SMALL_STATE(2310)] = 4634, + [SMALL_STATE(2311)] = 4648, + [SMALL_STATE(2312)] = 4662, + [SMALL_STATE(2313)] = 4676, + [SMALL_STATE(2314)] = 4690, + [SMALL_STATE(2315)] = 4704, + [SMALL_STATE(2316)] = 4718, + [SMALL_STATE(2317)] = 4732, + [SMALL_STATE(2318)] = 4746, + [SMALL_STATE(2319)] = 4760, + [SMALL_STATE(2320)] = 4774, + [SMALL_STATE(2321)] = 4788, + [SMALL_STATE(2322)] = 4802, + [SMALL_STATE(2323)] = 4816, + [SMALL_STATE(2324)] = 4830, + [SMALL_STATE(2325)] = 4844, + [SMALL_STATE(2326)] = 4858, + [SMALL_STATE(2327)] = 4872, + [SMALL_STATE(2328)] = 4886, + [SMALL_STATE(2329)] = 4900, + [SMALL_STATE(2330)] = 4914, + [SMALL_STATE(2331)] = 4928, + [SMALL_STATE(2332)] = 4942, + [SMALL_STATE(2333)] = 4956, + [SMALL_STATE(2334)] = 4970, + [SMALL_STATE(2335)] = 4984, + [SMALL_STATE(2336)] = 4998, + [SMALL_STATE(2337)] = 5012, + [SMALL_STATE(2338)] = 5026, + [SMALL_STATE(2339)] = 5040, + [SMALL_STATE(2340)] = 5054, + [SMALL_STATE(2341)] = 5068, + [SMALL_STATE(2342)] = 5082, + [SMALL_STATE(2343)] = 5096, + [SMALL_STATE(2344)] = 5110, + [SMALL_STATE(2345)] = 5124, + [SMALL_STATE(2346)] = 5138, + [SMALL_STATE(2347)] = 5152, + [SMALL_STATE(2348)] = 5166, + [SMALL_STATE(2349)] = 5180, + [SMALL_STATE(2350)] = 5194, + [SMALL_STATE(2351)] = 5208, + [SMALL_STATE(2352)] = 5222, + [SMALL_STATE(2353)] = 5236, + [SMALL_STATE(2354)] = 5250, + [SMALL_STATE(2355)] = 5264, + [SMALL_STATE(2356)] = 5278, + [SMALL_STATE(2357)] = 5292, + [SMALL_STATE(2358)] = 5306, + [SMALL_STATE(2359)] = 5320, + [SMALL_STATE(2360)] = 5334, + [SMALL_STATE(2361)] = 5348, + [SMALL_STATE(2362)] = 5362, + [SMALL_STATE(2363)] = 5376, + [SMALL_STATE(2364)] = 5390, + [SMALL_STATE(2365)] = 5404, + [SMALL_STATE(2366)] = 5418, + [SMALL_STATE(2367)] = 5432, + [SMALL_STATE(2368)] = 5446, + [SMALL_STATE(2369)] = 5460, + [SMALL_STATE(2370)] = 5474, + [SMALL_STATE(2371)] = 5488, + [SMALL_STATE(2372)] = 5502, + [SMALL_STATE(2373)] = 5516, + [SMALL_STATE(2374)] = 5530, + [SMALL_STATE(2375)] = 5544, + [SMALL_STATE(2376)] = 5558, + [SMALL_STATE(2377)] = 5572, + [SMALL_STATE(2378)] = 5586, + [SMALL_STATE(2379)] = 5600, + [SMALL_STATE(2380)] = 5614, + [SMALL_STATE(2381)] = 5628, + [SMALL_STATE(2382)] = 5642, + [SMALL_STATE(2383)] = 5656, + [SMALL_STATE(2384)] = 5670, + [SMALL_STATE(2385)] = 5684, + [SMALL_STATE(2386)] = 5698, + [SMALL_STATE(2387)] = 5712, + [SMALL_STATE(2388)] = 5726, + [SMALL_STATE(2389)] = 5740, + [SMALL_STATE(2390)] = 5754, + [SMALL_STATE(2391)] = 5768, + [SMALL_STATE(2392)] = 5782, + [SMALL_STATE(2393)] = 5796, + [SMALL_STATE(2394)] = 5810, + [SMALL_STATE(2395)] = 5824, + [SMALL_STATE(2396)] = 5838, + [SMALL_STATE(2397)] = 5852, + [SMALL_STATE(2398)] = 5866, + [SMALL_STATE(2399)] = 5880, + [SMALL_STATE(2400)] = 5894, + [SMALL_STATE(2401)] = 5908, + [SMALL_STATE(2402)] = 5922, + [SMALL_STATE(2403)] = 5936, + [SMALL_STATE(2404)] = 5950, + [SMALL_STATE(2405)] = 5964, + [SMALL_STATE(2406)] = 5978, + [SMALL_STATE(2407)] = 5992, + [SMALL_STATE(2408)] = 6006, + [SMALL_STATE(2409)] = 6020, + [SMALL_STATE(2410)] = 6034, + [SMALL_STATE(2411)] = 6048, + [SMALL_STATE(2412)] = 6062, + [SMALL_STATE(2413)] = 6076, + [SMALL_STATE(2414)] = 6090, + [SMALL_STATE(2415)] = 6104, + [SMALL_STATE(2416)] = 6118, + [SMALL_STATE(2417)] = 6132, + [SMALL_STATE(2418)] = 6146, + [SMALL_STATE(2419)] = 6160, + [SMALL_STATE(2420)] = 6174, + [SMALL_STATE(2421)] = 6188, + [SMALL_STATE(2422)] = 6202, + [SMALL_STATE(2423)] = 6216, + [SMALL_STATE(2424)] = 6230, + [SMALL_STATE(2425)] = 6244, + [SMALL_STATE(2426)] = 6258, + [SMALL_STATE(2427)] = 6272, + [SMALL_STATE(2428)] = 6286, + [SMALL_STATE(2429)] = 6300, + [SMALL_STATE(2430)] = 6314, + [SMALL_STATE(2431)] = 6328, + [SMALL_STATE(2432)] = 6342, + [SMALL_STATE(2433)] = 6356, + [SMALL_STATE(2434)] = 6370, + [SMALL_STATE(2435)] = 6384, + [SMALL_STATE(2436)] = 6398, + [SMALL_STATE(2437)] = 6412, + [SMALL_STATE(2438)] = 6426, + [SMALL_STATE(2439)] = 6440, + [SMALL_STATE(2440)] = 6454, + [SMALL_STATE(2441)] = 6468, + [SMALL_STATE(2442)] = 6482, + [SMALL_STATE(2443)] = 6496, + [SMALL_STATE(2444)] = 6510, + [SMALL_STATE(2445)] = 6524, + [SMALL_STATE(2446)] = 6538, + [SMALL_STATE(2447)] = 6552, + [SMALL_STATE(2448)] = 6566, + [SMALL_STATE(2449)] = 6580, + [SMALL_STATE(2450)] = 6594, + [SMALL_STATE(2451)] = 6608, + [SMALL_STATE(2452)] = 6622, + [SMALL_STATE(2453)] = 6636, + [SMALL_STATE(2454)] = 6650, + [SMALL_STATE(2455)] = 6664, + [SMALL_STATE(2456)] = 6678, + [SMALL_STATE(2457)] = 6692, + [SMALL_STATE(2458)] = 6706, + [SMALL_STATE(2459)] = 6720, + [SMALL_STATE(2460)] = 6734, + [SMALL_STATE(2461)] = 6748, + [SMALL_STATE(2462)] = 6762, + [SMALL_STATE(2463)] = 6776, + [SMALL_STATE(2464)] = 6790, + [SMALL_STATE(2465)] = 6804, + [SMALL_STATE(2466)] = 6818, + [SMALL_STATE(2467)] = 6832, + [SMALL_STATE(2468)] = 6846, + [SMALL_STATE(2469)] = 6860, + [SMALL_STATE(2470)] = 6874, + [SMALL_STATE(2471)] = 6888, + [SMALL_STATE(2472)] = 6902, + [SMALL_STATE(2473)] = 6916, + [SMALL_STATE(2474)] = 6930, + [SMALL_STATE(2475)] = 6944, + [SMALL_STATE(2476)] = 6958, + [SMALL_STATE(2477)] = 6972, + [SMALL_STATE(2478)] = 6986, + [SMALL_STATE(2479)] = 7000, + [SMALL_STATE(2480)] = 7014, + [SMALL_STATE(2481)] = 7028, + [SMALL_STATE(2482)] = 7042, + [SMALL_STATE(2483)] = 7056, + [SMALL_STATE(2484)] = 7070, + [SMALL_STATE(2485)] = 7084, + [SMALL_STATE(2486)] = 7098, + [SMALL_STATE(2487)] = 7112, + [SMALL_STATE(2488)] = 7126, + [SMALL_STATE(2489)] = 7140, + [SMALL_STATE(2490)] = 7154, + [SMALL_STATE(2491)] = 7168, + [SMALL_STATE(2492)] = 7182, + [SMALL_STATE(2493)] = 7196, + [SMALL_STATE(2494)] = 7210, + [SMALL_STATE(2495)] = 7224, + [SMALL_STATE(2496)] = 7238, + [SMALL_STATE(2497)] = 7252, + [SMALL_STATE(2498)] = 7266, + [SMALL_STATE(2499)] = 7280, + [SMALL_STATE(2500)] = 7294, + [SMALL_STATE(2501)] = 7308, + [SMALL_STATE(2502)] = 7322, + [SMALL_STATE(2503)] = 7336, + [SMALL_STATE(2504)] = 7350, + [SMALL_STATE(2505)] = 7364, + [SMALL_STATE(2506)] = 7378, + [SMALL_STATE(2507)] = 7392, + [SMALL_STATE(2508)] = 7406, + [SMALL_STATE(2509)] = 7420, + [SMALL_STATE(2510)] = 7434, + [SMALL_STATE(2511)] = 7448, + [SMALL_STATE(2512)] = 7462, + [SMALL_STATE(2513)] = 7476, + [SMALL_STATE(2514)] = 7490, + [SMALL_STATE(2515)] = 7504, + [SMALL_STATE(2516)] = 7518, + [SMALL_STATE(2517)] = 7532, + [SMALL_STATE(2518)] = 7546, + [SMALL_STATE(2519)] = 7560, + [SMALL_STATE(2520)] = 7574, + [SMALL_STATE(2521)] = 7588, + [SMALL_STATE(2522)] = 7602, + [SMALL_STATE(2523)] = 7616, + [SMALL_STATE(2524)] = 7630, + [SMALL_STATE(2525)] = 7644, + [SMALL_STATE(2526)] = 7658, + [SMALL_STATE(2527)] = 7672, + [SMALL_STATE(2528)] = 7686, + [SMALL_STATE(2529)] = 7700, + [SMALL_STATE(2530)] = 7714, + [SMALL_STATE(2531)] = 7728, + [SMALL_STATE(2532)] = 7742, + [SMALL_STATE(2533)] = 7756, + [SMALL_STATE(2534)] = 7770, + [SMALL_STATE(2535)] = 7784, + [SMALL_STATE(2536)] = 7798, + [SMALL_STATE(2537)] = 7812, + [SMALL_STATE(2538)] = 7826, + [SMALL_STATE(2539)] = 7840, + [SMALL_STATE(2540)] = 7854, + [SMALL_STATE(2541)] = 7868, + [SMALL_STATE(2542)] = 7882, + [SMALL_STATE(2543)] = 7896, + [SMALL_STATE(2544)] = 7910, + [SMALL_STATE(2545)] = 7924, + [SMALL_STATE(2546)] = 7938, + [SMALL_STATE(2547)] = 7952, + [SMALL_STATE(2548)] = 7966, + [SMALL_STATE(2549)] = 7980, + [SMALL_STATE(2550)] = 7994, + [SMALL_STATE(2551)] = 8008, + [SMALL_STATE(2552)] = 8022, + [SMALL_STATE(2553)] = 8036, + [SMALL_STATE(2554)] = 8050, + [SMALL_STATE(2555)] = 8064, + [SMALL_STATE(2556)] = 8078, + [SMALL_STATE(2557)] = 8092, + [SMALL_STATE(2558)] = 8106, + [SMALL_STATE(2559)] = 8120, + [SMALL_STATE(2560)] = 8134, + [SMALL_STATE(2561)] = 8148, + [SMALL_STATE(2562)] = 8162, + [SMALL_STATE(2563)] = 8176, + [SMALL_STATE(2564)] = 8190, + [SMALL_STATE(2565)] = 8204, + [SMALL_STATE(2566)] = 8218, + [SMALL_STATE(2567)] = 8232, + [SMALL_STATE(2568)] = 8246, + [SMALL_STATE(2569)] = 8260, + [SMALL_STATE(2570)] = 8274, + [SMALL_STATE(2571)] = 8288, + [SMALL_STATE(2572)] = 8302, + [SMALL_STATE(2573)] = 8316, + [SMALL_STATE(2574)] = 8330, + [SMALL_STATE(2575)] = 8344, + [SMALL_STATE(2576)] = 8358, + [SMALL_STATE(2577)] = 8372, + [SMALL_STATE(2578)] = 8386, + [SMALL_STATE(2579)] = 8400, + [SMALL_STATE(2580)] = 8414, + [SMALL_STATE(2581)] = 8428, + [SMALL_STATE(2582)] = 8442, + [SMALL_STATE(2583)] = 8456, + [SMALL_STATE(2584)] = 8470, + [SMALL_STATE(2585)] = 8484, + [SMALL_STATE(2586)] = 8498, + [SMALL_STATE(2587)] = 8512, + [SMALL_STATE(2588)] = 8526, + [SMALL_STATE(2589)] = 8540, + [SMALL_STATE(2590)] = 8554, + [SMALL_STATE(2591)] = 8568, + [SMALL_STATE(2592)] = 8582, + [SMALL_STATE(2593)] = 8596, + [SMALL_STATE(2594)] = 8610, + [SMALL_STATE(2595)] = 8624, + [SMALL_STATE(2596)] = 8638, + [SMALL_STATE(2597)] = 8652, + [SMALL_STATE(2598)] = 8666, + [SMALL_STATE(2599)] = 8680, + [SMALL_STATE(2600)] = 8694, + [SMALL_STATE(2601)] = 8708, + [SMALL_STATE(2602)] = 8722, + [SMALL_STATE(2603)] = 8736, + [SMALL_STATE(2604)] = 8750, + [SMALL_STATE(2605)] = 8764, + [SMALL_STATE(2606)] = 8778, + [SMALL_STATE(2607)] = 8792, + [SMALL_STATE(2608)] = 8806, + [SMALL_STATE(2609)] = 8820, + [SMALL_STATE(2610)] = 8834, + [SMALL_STATE(2611)] = 8848, + [SMALL_STATE(2612)] = 8862, + [SMALL_STATE(2613)] = 8876, + [SMALL_STATE(2614)] = 8890, + [SMALL_STATE(2615)] = 8904, + [SMALL_STATE(2616)] = 8918, + [SMALL_STATE(2617)] = 8932, + [SMALL_STATE(2618)] = 8946, + [SMALL_STATE(2619)] = 8960, + [SMALL_STATE(2620)] = 8974, + [SMALL_STATE(2621)] = 8988, + [SMALL_STATE(2622)] = 9002, + [SMALL_STATE(2623)] = 9016, + [SMALL_STATE(2624)] = 9030, + [SMALL_STATE(2625)] = 9044, + [SMALL_STATE(2626)] = 9058, + [SMALL_STATE(2627)] = 9072, + [SMALL_STATE(2628)] = 9086, + [SMALL_STATE(2629)] = 9100, + [SMALL_STATE(2630)] = 9114, + [SMALL_STATE(2631)] = 9128, + [SMALL_STATE(2632)] = 9142, + [SMALL_STATE(2633)] = 9156, + [SMALL_STATE(2634)] = 9170, + [SMALL_STATE(2635)] = 9184, + [SMALL_STATE(2636)] = 9198, + [SMALL_STATE(2637)] = 9212, + [SMALL_STATE(2638)] = 9226, + [SMALL_STATE(2639)] = 9240, + [SMALL_STATE(2640)] = 9254, + [SMALL_STATE(2641)] = 9268, + [SMALL_STATE(2642)] = 9282, + [SMALL_STATE(2643)] = 9296, + [SMALL_STATE(2644)] = 9310, + [SMALL_STATE(2645)] = 9324, + [SMALL_STATE(2646)] = 9338, + [SMALL_STATE(2647)] = 9352, + [SMALL_STATE(2648)] = 9366, + [SMALL_STATE(2649)] = 9380, + [SMALL_STATE(2650)] = 9394, + [SMALL_STATE(2651)] = 9408, + [SMALL_STATE(2652)] = 9422, + [SMALL_STATE(2653)] = 9436, + [SMALL_STATE(2654)] = 9450, + [SMALL_STATE(2655)] = 9464, + [SMALL_STATE(2656)] = 9478, + [SMALL_STATE(2657)] = 9492, + [SMALL_STATE(2658)] = 9506, + [SMALL_STATE(2659)] = 9520, + [SMALL_STATE(2660)] = 9534, + [SMALL_STATE(2661)] = 9548, + [SMALL_STATE(2662)] = 9562, + [SMALL_STATE(2663)] = 9576, + [SMALL_STATE(2664)] = 9590, + [SMALL_STATE(2665)] = 9604, + [SMALL_STATE(2666)] = 9618, + [SMALL_STATE(2667)] = 9632, + [SMALL_STATE(2668)] = 9646, + [SMALL_STATE(2669)] = 9660, + [SMALL_STATE(2670)] = 9674, + [SMALL_STATE(2671)] = 9688, + [SMALL_STATE(2672)] = 9702, + [SMALL_STATE(2673)] = 9716, + [SMALL_STATE(2674)] = 9730, + [SMALL_STATE(2675)] = 9744, + [SMALL_STATE(2676)] = 9758, + [SMALL_STATE(2677)] = 9772, + [SMALL_STATE(2678)] = 9786, + [SMALL_STATE(2679)] = 9800, + [SMALL_STATE(2680)] = 9814, + [SMALL_STATE(2681)] = 9828, + [SMALL_STATE(2682)] = 9842, + [SMALL_STATE(2683)] = 9856, + [SMALL_STATE(2684)] = 9870, + [SMALL_STATE(2685)] = 9884, + [SMALL_STATE(2686)] = 9898, + [SMALL_STATE(2687)] = 9912, + [SMALL_STATE(2688)] = 9926, + [SMALL_STATE(2689)] = 9940, + [SMALL_STATE(2690)] = 9954, + [SMALL_STATE(2691)] = 9968, + [SMALL_STATE(2692)] = 9982, + [SMALL_STATE(2693)] = 9996, + [SMALL_STATE(2694)] = 10010, + [SMALL_STATE(2695)] = 10024, + [SMALL_STATE(2696)] = 10038, + [SMALL_STATE(2697)] = 10052, + [SMALL_STATE(2698)] = 10066, + [SMALL_STATE(2699)] = 10080, + [SMALL_STATE(2700)] = 10094, + [SMALL_STATE(2701)] = 10108, + [SMALL_STATE(2702)] = 10122, + [SMALL_STATE(2703)] = 10136, + [SMALL_STATE(2704)] = 10150, + [SMALL_STATE(2705)] = 10164, + [SMALL_STATE(2706)] = 10178, + [SMALL_STATE(2707)] = 10192, + [SMALL_STATE(2708)] = 10206, + [SMALL_STATE(2709)] = 10220, + [SMALL_STATE(2710)] = 10234, + [SMALL_STATE(2711)] = 10248, + [SMALL_STATE(2712)] = 10262, + [SMALL_STATE(2713)] = 10276, + [SMALL_STATE(2714)] = 10290, + [SMALL_STATE(2715)] = 10304, + [SMALL_STATE(2716)] = 10318, + [SMALL_STATE(2717)] = 10332, + [SMALL_STATE(2718)] = 10346, + [SMALL_STATE(2719)] = 10360, + [SMALL_STATE(2720)] = 10374, + [SMALL_STATE(2721)] = 10388, + [SMALL_STATE(2722)] = 10402, + [SMALL_STATE(2723)] = 10416, + [SMALL_STATE(2724)] = 10430, + [SMALL_STATE(2725)] = 10444, + [SMALL_STATE(2726)] = 10458, + [SMALL_STATE(2727)] = 10472, + [SMALL_STATE(2728)] = 10486, + [SMALL_STATE(2729)] = 10500, + [SMALL_STATE(2730)] = 10514, + [SMALL_STATE(2731)] = 10528, + [SMALL_STATE(2732)] = 10542, + [SMALL_STATE(2733)] = 10556, + [SMALL_STATE(2734)] = 10570, + [SMALL_STATE(2735)] = 10584, + [SMALL_STATE(2736)] = 10598, + [SMALL_STATE(2737)] = 10612, + [SMALL_STATE(2738)] = 10626, + [SMALL_STATE(2739)] = 10640, + [SMALL_STATE(2740)] = 10654, + [SMALL_STATE(2741)] = 10668, + [SMALL_STATE(2742)] = 10682, + [SMALL_STATE(2743)] = 10696, + [SMALL_STATE(2744)] = 10710, + [SMALL_STATE(2745)] = 10724, + [SMALL_STATE(2746)] = 10738, + [SMALL_STATE(2747)] = 10752, + [SMALL_STATE(2748)] = 10766, + [SMALL_STATE(2749)] = 10780, + [SMALL_STATE(2750)] = 10794, + [SMALL_STATE(2751)] = 10808, + [SMALL_STATE(2752)] = 10822, + [SMALL_STATE(2753)] = 10836, + [SMALL_STATE(2754)] = 10850, + [SMALL_STATE(2755)] = 10864, + [SMALL_STATE(2756)] = 10878, + [SMALL_STATE(2757)] = 10892, + [SMALL_STATE(2758)] = 10906, + [SMALL_STATE(2759)] = 10920, + [SMALL_STATE(2760)] = 10934, + [SMALL_STATE(2761)] = 10948, + [SMALL_STATE(2762)] = 10962, + [SMALL_STATE(2763)] = 10976, + [SMALL_STATE(2764)] = 10990, + [SMALL_STATE(2765)] = 11004, + [SMALL_STATE(2766)] = 11018, + [SMALL_STATE(2767)] = 11032, + [SMALL_STATE(2768)] = 11046, + [SMALL_STATE(2769)] = 11060, + [SMALL_STATE(2770)] = 11074, + [SMALL_STATE(2771)] = 11088, + [SMALL_STATE(2772)] = 11102, + [SMALL_STATE(2773)] = 11116, + [SMALL_STATE(2774)] = 11130, + [SMALL_STATE(2775)] = 11144, + [SMALL_STATE(2776)] = 11158, + [SMALL_STATE(2777)] = 11172, + [SMALL_STATE(2778)] = 11186, + [SMALL_STATE(2779)] = 11200, + [SMALL_STATE(2780)] = 11214, + [SMALL_STATE(2781)] = 11228, + [SMALL_STATE(2782)] = 11242, + [SMALL_STATE(2783)] = 11256, + [SMALL_STATE(2784)] = 11270, + [SMALL_STATE(2785)] = 11284, + [SMALL_STATE(2786)] = 11298, + [SMALL_STATE(2787)] = 11312, + [SMALL_STATE(2788)] = 11326, + [SMALL_STATE(2789)] = 11340, + [SMALL_STATE(2790)] = 11354, + [SMALL_STATE(2791)] = 11368, + [SMALL_STATE(2792)] = 11382, + [SMALL_STATE(2793)] = 11396, + [SMALL_STATE(2794)] = 11410, + [SMALL_STATE(2795)] = 11424, + [SMALL_STATE(2796)] = 11438, + [SMALL_STATE(2797)] = 11452, + [SMALL_STATE(2798)] = 11466, + [SMALL_STATE(2799)] = 11480, + [SMALL_STATE(2800)] = 11494, + [SMALL_STATE(2801)] = 11508, + [SMALL_STATE(2802)] = 11522, + [SMALL_STATE(2803)] = 11536, + [SMALL_STATE(2804)] = 11550, + [SMALL_STATE(2805)] = 11564, + [SMALL_STATE(2806)] = 11575, + [SMALL_STATE(2807)] = 11586, + [SMALL_STATE(2808)] = 11597, + [SMALL_STATE(2809)] = 11608, + [SMALL_STATE(2810)] = 11619, + [SMALL_STATE(2811)] = 11630, + [SMALL_STATE(2812)] = 11641, + [SMALL_STATE(2813)] = 11652, + [SMALL_STATE(2814)] = 11663, + [SMALL_STATE(2815)] = 11674, + [SMALL_STATE(2816)] = 11685, + [SMALL_STATE(2817)] = 11696, + [SMALL_STATE(2818)] = 11707, + [SMALL_STATE(2819)] = 11718, + [SMALL_STATE(2820)] = 11729, + [SMALL_STATE(2821)] = 11740, + [SMALL_STATE(2822)] = 11751, + [SMALL_STATE(2823)] = 11762, + [SMALL_STATE(2824)] = 11773, + [SMALL_STATE(2825)] = 11784, + [SMALL_STATE(2826)] = 11795, + [SMALL_STATE(2827)] = 11806, + [SMALL_STATE(2828)] = 11817, + [SMALL_STATE(2829)] = 11828, + [SMALL_STATE(2830)] = 11839, + [SMALL_STATE(2831)] = 11850, + [SMALL_STATE(2832)] = 11861, + [SMALL_STATE(2833)] = 11872, + [SMALL_STATE(2834)] = 11883, + [SMALL_STATE(2835)] = 11894, + [SMALL_STATE(2836)] = 11905, + [SMALL_STATE(2837)] = 11916, + [SMALL_STATE(2838)] = 11927, + [SMALL_STATE(2839)] = 11938, + [SMALL_STATE(2840)] = 11949, + [SMALL_STATE(2841)] = 11960, + [SMALL_STATE(2842)] = 11971, + [SMALL_STATE(2843)] = 11982, + [SMALL_STATE(2844)] = 11993, + [SMALL_STATE(2845)] = 12004, + [SMALL_STATE(2846)] = 12015, + [SMALL_STATE(2847)] = 12026, + [SMALL_STATE(2848)] = 12037, + [SMALL_STATE(2849)] = 12048, + [SMALL_STATE(2850)] = 12059, + [SMALL_STATE(2851)] = 12070, + [SMALL_STATE(2852)] = 12081, + [SMALL_STATE(2853)] = 12092, + [SMALL_STATE(2854)] = 12103, + [SMALL_STATE(2855)] = 12114, + [SMALL_STATE(2856)] = 12125, + [SMALL_STATE(2857)] = 12136, + [SMALL_STATE(2858)] = 12147, + [SMALL_STATE(2859)] = 12158, + [SMALL_STATE(2860)] = 12169, + [SMALL_STATE(2861)] = 12180, + [SMALL_STATE(2862)] = 12191, + [SMALL_STATE(2863)] = 12202, + [SMALL_STATE(2864)] = 12213, + [SMALL_STATE(2865)] = 12224, + [SMALL_STATE(2866)] = 12235, + [SMALL_STATE(2867)] = 12246, + [SMALL_STATE(2868)] = 12257, + [SMALL_STATE(2869)] = 12268, + [SMALL_STATE(2870)] = 12279, + [SMALL_STATE(2871)] = 12290, + [SMALL_STATE(2872)] = 12301, + [SMALL_STATE(2873)] = 12312, + [SMALL_STATE(2874)] = 12323, + [SMALL_STATE(2875)] = 12334, + [SMALL_STATE(2876)] = 12345, + [SMALL_STATE(2877)] = 12356, + [SMALL_STATE(2878)] = 12367, + [SMALL_STATE(2879)] = 12378, + [SMALL_STATE(2880)] = 12389, + [SMALL_STATE(2881)] = 12400, + [SMALL_STATE(2882)] = 12411, + [SMALL_STATE(2883)] = 12422, + [SMALL_STATE(2884)] = 12433, + [SMALL_STATE(2885)] = 12444, + [SMALL_STATE(2886)] = 12455, + [SMALL_STATE(2887)] = 12466, + [SMALL_STATE(2888)] = 12477, + [SMALL_STATE(2889)] = 12488, + [SMALL_STATE(2890)] = 12499, + [SMALL_STATE(2891)] = 12510, + [SMALL_STATE(2892)] = 12521, + [SMALL_STATE(2893)] = 12532, + [SMALL_STATE(2894)] = 12543, + [SMALL_STATE(2895)] = 12554, + [SMALL_STATE(2896)] = 12565, + [SMALL_STATE(2897)] = 12576, + [SMALL_STATE(2898)] = 12587, + [SMALL_STATE(2899)] = 12598, + [SMALL_STATE(2900)] = 12609, + [SMALL_STATE(2901)] = 12620, + [SMALL_STATE(2902)] = 12631, + [SMALL_STATE(2903)] = 12642, + [SMALL_STATE(2904)] = 12653, + [SMALL_STATE(2905)] = 12664, + [SMALL_STATE(2906)] = 12675, + [SMALL_STATE(2907)] = 12686, + [SMALL_STATE(2908)] = 12697, + [SMALL_STATE(2909)] = 12706, + [SMALL_STATE(2910)] = 12717, + [SMALL_STATE(2911)] = 12728, + [SMALL_STATE(2912)] = 12739, + [SMALL_STATE(2913)] = 12750, + [SMALL_STATE(2914)] = 12761, + [SMALL_STATE(2915)] = 12772, + [SMALL_STATE(2916)] = 12783, + [SMALL_STATE(2917)] = 12794, + [SMALL_STATE(2918)] = 12805, + [SMALL_STATE(2919)] = 12816, + [SMALL_STATE(2920)] = 12827, + [SMALL_STATE(2921)] = 12838, + [SMALL_STATE(2922)] = 12849, + [SMALL_STATE(2923)] = 12860, + [SMALL_STATE(2924)] = 12871, + [SMALL_STATE(2925)] = 12882, + [SMALL_STATE(2926)] = 12893, + [SMALL_STATE(2927)] = 12904, + [SMALL_STATE(2928)] = 12915, + [SMALL_STATE(2929)] = 12926, + [SMALL_STATE(2930)] = 12937, + [SMALL_STATE(2931)] = 12948, + [SMALL_STATE(2932)] = 12959, + [SMALL_STATE(2933)] = 12970, + [SMALL_STATE(2934)] = 12981, + [SMALL_STATE(2935)] = 12992, + [SMALL_STATE(2936)] = 13003, + [SMALL_STATE(2937)] = 13014, + [SMALL_STATE(2938)] = 13025, + [SMALL_STATE(2939)] = 13036, + [SMALL_STATE(2940)] = 13047, + [SMALL_STATE(2941)] = 13058, + [SMALL_STATE(2942)] = 13069, + [SMALL_STATE(2943)] = 13080, + [SMALL_STATE(2944)] = 13091, + [SMALL_STATE(2945)] = 13102, + [SMALL_STATE(2946)] = 13113, + [SMALL_STATE(2947)] = 13124, + [SMALL_STATE(2948)] = 13135, + [SMALL_STATE(2949)] = 13146, + [SMALL_STATE(2950)] = 13157, + [SMALL_STATE(2951)] = 13168, + [SMALL_STATE(2952)] = 13179, + [SMALL_STATE(2953)] = 13190, + [SMALL_STATE(2954)] = 13201, + [SMALL_STATE(2955)] = 13212, + [SMALL_STATE(2956)] = 13223, + [SMALL_STATE(2957)] = 13234, + [SMALL_STATE(2958)] = 13245, + [SMALL_STATE(2959)] = 13256, + [SMALL_STATE(2960)] = 13267, + [SMALL_STATE(2961)] = 13278, + [SMALL_STATE(2962)] = 13289, + [SMALL_STATE(2963)] = 13300, + [SMALL_STATE(2964)] = 13311, + [SMALL_STATE(2965)] = 13322, + [SMALL_STATE(2966)] = 13333, + [SMALL_STATE(2967)] = 13344, + [SMALL_STATE(2968)] = 13355, + [SMALL_STATE(2969)] = 13366, + [SMALL_STATE(2970)] = 13377, + [SMALL_STATE(2971)] = 13388, + [SMALL_STATE(2972)] = 13399, + [SMALL_STATE(2973)] = 13410, + [SMALL_STATE(2974)] = 13421, + [SMALL_STATE(2975)] = 13432, + [SMALL_STATE(2976)] = 13443, + [SMALL_STATE(2977)] = 13454, + [SMALL_STATE(2978)] = 13465, + [SMALL_STATE(2979)] = 13476, + [SMALL_STATE(2980)] = 13487, + [SMALL_STATE(2981)] = 13498, + [SMALL_STATE(2982)] = 13509, + [SMALL_STATE(2983)] = 13520, + [SMALL_STATE(2984)] = 13531, + [SMALL_STATE(2985)] = 13542, + [SMALL_STATE(2986)] = 13553, + [SMALL_STATE(2987)] = 13564, + [SMALL_STATE(2988)] = 13575, + [SMALL_STATE(2989)] = 13586, + [SMALL_STATE(2990)] = 13597, + [SMALL_STATE(2991)] = 13608, + [SMALL_STATE(2992)] = 13619, + [SMALL_STATE(2993)] = 13630, + [SMALL_STATE(2994)] = 13641, + [SMALL_STATE(2995)] = 13652, + [SMALL_STATE(2996)] = 13663, + [SMALL_STATE(2997)] = 13674, + [SMALL_STATE(2998)] = 13685, + [SMALL_STATE(2999)] = 13696, + [SMALL_STATE(3000)] = 13707, + [SMALL_STATE(3001)] = 13718, + [SMALL_STATE(3002)] = 13729, + [SMALL_STATE(3003)] = 13740, + [SMALL_STATE(3004)] = 13751, + [SMALL_STATE(3005)] = 13762, + [SMALL_STATE(3006)] = 13771, + [SMALL_STATE(3007)] = 13782, + [SMALL_STATE(3008)] = 13793, + [SMALL_STATE(3009)] = 13804, + [SMALL_STATE(3010)] = 13815, + [SMALL_STATE(3011)] = 13826, + [SMALL_STATE(3012)] = 13837, + [SMALL_STATE(3013)] = 13848, + [SMALL_STATE(3014)] = 13859, + [SMALL_STATE(3015)] = 13870, + [SMALL_STATE(3016)] = 13881, + [SMALL_STATE(3017)] = 13892, + [SMALL_STATE(3018)] = 13903, + [SMALL_STATE(3019)] = 13914, + [SMALL_STATE(3020)] = 13925, + [SMALL_STATE(3021)] = 13936, + [SMALL_STATE(3022)] = 13947, + [SMALL_STATE(3023)] = 13958, + [SMALL_STATE(3024)] = 13969, + [SMALL_STATE(3025)] = 13980, + [SMALL_STATE(3026)] = 13991, + [SMALL_STATE(3027)] = 14002, + [SMALL_STATE(3028)] = 14013, + [SMALL_STATE(3029)] = 14024, + [SMALL_STATE(3030)] = 14035, + [SMALL_STATE(3031)] = 14046, + [SMALL_STATE(3032)] = 14057, + [SMALL_STATE(3033)] = 14068, + [SMALL_STATE(3034)] = 14079, + [SMALL_STATE(3035)] = 14090, + [SMALL_STATE(3036)] = 14101, + [SMALL_STATE(3037)] = 14112, + [SMALL_STATE(3038)] = 14123, + [SMALL_STATE(3039)] = 14134, + [SMALL_STATE(3040)] = 14145, + [SMALL_STATE(3041)] = 14156, + [SMALL_STATE(3042)] = 14167, + [SMALL_STATE(3043)] = 14178, + [SMALL_STATE(3044)] = 14189, + [SMALL_STATE(3045)] = 14200, + [SMALL_STATE(3046)] = 14211, + [SMALL_STATE(3047)] = 14222, + [SMALL_STATE(3048)] = 14233, + [SMALL_STATE(3049)] = 14244, + [SMALL_STATE(3050)] = 14255, + [SMALL_STATE(3051)] = 14266, + [SMALL_STATE(3052)] = 14277, + [SMALL_STATE(3053)] = 14288, + [SMALL_STATE(3054)] = 14299, + [SMALL_STATE(3055)] = 14310, + [SMALL_STATE(3056)] = 14321, + [SMALL_STATE(3057)] = 14332, + [SMALL_STATE(3058)] = 14343, + [SMALL_STATE(3059)] = 14354, + [SMALL_STATE(3060)] = 14365, + [SMALL_STATE(3061)] = 14376, + [SMALL_STATE(3062)] = 14387, + [SMALL_STATE(3063)] = 14398, + [SMALL_STATE(3064)] = 14409, + [SMALL_STATE(3065)] = 14420, + [SMALL_STATE(3066)] = 14431, + [SMALL_STATE(3067)] = 14442, + [SMALL_STATE(3068)] = 14453, + [SMALL_STATE(3069)] = 14464, + [SMALL_STATE(3070)] = 14475, + [SMALL_STATE(3071)] = 14486, + [SMALL_STATE(3072)] = 14497, + [SMALL_STATE(3073)] = 14508, + [SMALL_STATE(3074)] = 14519, + [SMALL_STATE(3075)] = 14530, + [SMALL_STATE(3076)] = 14541, + [SMALL_STATE(3077)] = 14552, + [SMALL_STATE(3078)] = 14563, + [SMALL_STATE(3079)] = 14574, + [SMALL_STATE(3080)] = 14585, + [SMALL_STATE(3081)] = 14596, + [SMALL_STATE(3082)] = 14607, + [SMALL_STATE(3083)] = 14618, + [SMALL_STATE(3084)] = 14629, + [SMALL_STATE(3085)] = 14640, + [SMALL_STATE(3086)] = 14651, + [SMALL_STATE(3087)] = 14662, + [SMALL_STATE(3088)] = 14673, + [SMALL_STATE(3089)] = 14684, + [SMALL_STATE(3090)] = 14695, + [SMALL_STATE(3091)] = 14706, + [SMALL_STATE(3092)] = 14717, + [SMALL_STATE(3093)] = 14728, + [SMALL_STATE(3094)] = 14739, + [SMALL_STATE(3095)] = 14750, + [SMALL_STATE(3096)] = 14761, + [SMALL_STATE(3097)] = 14772, + [SMALL_STATE(3098)] = 14783, + [SMALL_STATE(3099)] = 14794, + [SMALL_STATE(3100)] = 14805, + [SMALL_STATE(3101)] = 14816, + [SMALL_STATE(3102)] = 14827, + [SMALL_STATE(3103)] = 14838, + [SMALL_STATE(3104)] = 14849, + [SMALL_STATE(3105)] = 14860, + [SMALL_STATE(3106)] = 14871, + [SMALL_STATE(3107)] = 14882, + [SMALL_STATE(3108)] = 14893, + [SMALL_STATE(3109)] = 14904, + [SMALL_STATE(3110)] = 14915, + [SMALL_STATE(3111)] = 14926, + [SMALL_STATE(3112)] = 14937, + [SMALL_STATE(3113)] = 14948, + [SMALL_STATE(3114)] = 14959, + [SMALL_STATE(3115)] = 14970, + [SMALL_STATE(3116)] = 14981, + [SMALL_STATE(3117)] = 14992, + [SMALL_STATE(3118)] = 15003, + [SMALL_STATE(3119)] = 15014, + [SMALL_STATE(3120)] = 15025, + [SMALL_STATE(3121)] = 15036, + [SMALL_STATE(3122)] = 15047, + [SMALL_STATE(3123)] = 15058, + [SMALL_STATE(3124)] = 15069, + [SMALL_STATE(3125)] = 15080, + [SMALL_STATE(3126)] = 15091, + [SMALL_STATE(3127)] = 15102, + [SMALL_STATE(3128)] = 15113, + [SMALL_STATE(3129)] = 15124, + [SMALL_STATE(3130)] = 15135, + [SMALL_STATE(3131)] = 15146, + [SMALL_STATE(3132)] = 15157, + [SMALL_STATE(3133)] = 15168, + [SMALL_STATE(3134)] = 15179, + [SMALL_STATE(3135)] = 15190, + [SMALL_STATE(3136)] = 15201, + [SMALL_STATE(3137)] = 15212, + [SMALL_STATE(3138)] = 15223, + [SMALL_STATE(3139)] = 15234, + [SMALL_STATE(3140)] = 15245, + [SMALL_STATE(3141)] = 15256, + [SMALL_STATE(3142)] = 15267, + [SMALL_STATE(3143)] = 15278, + [SMALL_STATE(3144)] = 15289, + [SMALL_STATE(3145)] = 15300, + [SMALL_STATE(3146)] = 15311, + [SMALL_STATE(3147)] = 15322, + [SMALL_STATE(3148)] = 15333, + [SMALL_STATE(3149)] = 15344, + [SMALL_STATE(3150)] = 15355, + [SMALL_STATE(3151)] = 15366, + [SMALL_STATE(3152)] = 15377, + [SMALL_STATE(3153)] = 15388, + [SMALL_STATE(3154)] = 15399, + [SMALL_STATE(3155)] = 15410, + [SMALL_STATE(3156)] = 15421, + [SMALL_STATE(3157)] = 15432, + [SMALL_STATE(3158)] = 15443, + [SMALL_STATE(3159)] = 15454, + [SMALL_STATE(3160)] = 15465, + [SMALL_STATE(3161)] = 15476, + [SMALL_STATE(3162)] = 15487, + [SMALL_STATE(3163)] = 15498, + [SMALL_STATE(3164)] = 15509, + [SMALL_STATE(3165)] = 15520, + [SMALL_STATE(3166)] = 15531, + [SMALL_STATE(3167)] = 15542, + [SMALL_STATE(3168)] = 15553, + [SMALL_STATE(3169)] = 15564, + [SMALL_STATE(3170)] = 15575, + [SMALL_STATE(3171)] = 15586, + [SMALL_STATE(3172)] = 15597, + [SMALL_STATE(3173)] = 15608, + [SMALL_STATE(3174)] = 15619, + [SMALL_STATE(3175)] = 15630, + [SMALL_STATE(3176)] = 15641, + [SMALL_STATE(3177)] = 15652, + [SMALL_STATE(3178)] = 15663, + [SMALL_STATE(3179)] = 15674, + [SMALL_STATE(3180)] = 15685, + [SMALL_STATE(3181)] = 15696, + [SMALL_STATE(3182)] = 15707, + [SMALL_STATE(3183)] = 15718, + [SMALL_STATE(3184)] = 15729, + [SMALL_STATE(3185)] = 15740, + [SMALL_STATE(3186)] = 15751, + [SMALL_STATE(3187)] = 15762, + [SMALL_STATE(3188)] = 15773, + [SMALL_STATE(3189)] = 15784, + [SMALL_STATE(3190)] = 15795, + [SMALL_STATE(3191)] = 15806, + [SMALL_STATE(3192)] = 15817, + [SMALL_STATE(3193)] = 15828, + [SMALL_STATE(3194)] = 15839, + [SMALL_STATE(3195)] = 15850, + [SMALL_STATE(3196)] = 15861, + [SMALL_STATE(3197)] = 15872, + [SMALL_STATE(3198)] = 15883, + [SMALL_STATE(3199)] = 15894, + [SMALL_STATE(3200)] = 15905, + [SMALL_STATE(3201)] = 15916, + [SMALL_STATE(3202)] = 15927, + [SMALL_STATE(3203)] = 15938, + [SMALL_STATE(3204)] = 15949, + [SMALL_STATE(3205)] = 15960, + [SMALL_STATE(3206)] = 15971, + [SMALL_STATE(3207)] = 15982, + [SMALL_STATE(3208)] = 15993, + [SMALL_STATE(3209)] = 16004, + [SMALL_STATE(3210)] = 16015, + [SMALL_STATE(3211)] = 16026, + [SMALL_STATE(3212)] = 16037, + [SMALL_STATE(3213)] = 16048, + [SMALL_STATE(3214)] = 16059, + [SMALL_STATE(3215)] = 16070, + [SMALL_STATE(3216)] = 16081, + [SMALL_STATE(3217)] = 16092, + [SMALL_STATE(3218)] = 16103, + [SMALL_STATE(3219)] = 16114, + [SMALL_STATE(3220)] = 16125, + [SMALL_STATE(3221)] = 16136, + [SMALL_STATE(3222)] = 16147, + [SMALL_STATE(3223)] = 16158, + [SMALL_STATE(3224)] = 16169, + [SMALL_STATE(3225)] = 16180, + [SMALL_STATE(3226)] = 16191, + [SMALL_STATE(3227)] = 16202, + [SMALL_STATE(3228)] = 16213, + [SMALL_STATE(3229)] = 16224, + [SMALL_STATE(3230)] = 16235, + [SMALL_STATE(3231)] = 16246, + [SMALL_STATE(3232)] = 16257, + [SMALL_STATE(3233)] = 16268, + [SMALL_STATE(3234)] = 16279, + [SMALL_STATE(3235)] = 16290, + [SMALL_STATE(3236)] = 16301, + [SMALL_STATE(3237)] = 16312, + [SMALL_STATE(3238)] = 16323, + [SMALL_STATE(3239)] = 16334, + [SMALL_STATE(3240)] = 16345, + [SMALL_STATE(3241)] = 16356, + [SMALL_STATE(3242)] = 16367, + [SMALL_STATE(3243)] = 16378, + [SMALL_STATE(3244)] = 16389, + [SMALL_STATE(3245)] = 16400, + [SMALL_STATE(3246)] = 16411, + [SMALL_STATE(3247)] = 16422, + [SMALL_STATE(3248)] = 16433, + [SMALL_STATE(3249)] = 16444, + [SMALL_STATE(3250)] = 16455, + [SMALL_STATE(3251)] = 16466, + [SMALL_STATE(3252)] = 16477, + [SMALL_STATE(3253)] = 16488, + [SMALL_STATE(3254)] = 16499, + [SMALL_STATE(3255)] = 16510, + [SMALL_STATE(3256)] = 16521, + [SMALL_STATE(3257)] = 16532, + [SMALL_STATE(3258)] = 16543, + [SMALL_STATE(3259)] = 16554, + [SMALL_STATE(3260)] = 16565, + [SMALL_STATE(3261)] = 16576, + [SMALL_STATE(3262)] = 16587, + [SMALL_STATE(3263)] = 16598, + [SMALL_STATE(3264)] = 16609, + [SMALL_STATE(3265)] = 16620, + [SMALL_STATE(3266)] = 16631, + [SMALL_STATE(3267)] = 16642, + [SMALL_STATE(3268)] = 16653, + [SMALL_STATE(3269)] = 16664, + [SMALL_STATE(3270)] = 16675, + [SMALL_STATE(3271)] = 16686, + [SMALL_STATE(3272)] = 16697, + [SMALL_STATE(3273)] = 16708, + [SMALL_STATE(3274)] = 16719, + [SMALL_STATE(3275)] = 16730, + [SMALL_STATE(3276)] = 16741, + [SMALL_STATE(3277)] = 16752, + [SMALL_STATE(3278)] = 16763, + [SMALL_STATE(3279)] = 16774, + [SMALL_STATE(3280)] = 16785, + [SMALL_STATE(3281)] = 16796, + [SMALL_STATE(3282)] = 16807, + [SMALL_STATE(3283)] = 16818, + [SMALL_STATE(3284)] = 16829, + [SMALL_STATE(3285)] = 16840, + [SMALL_STATE(3286)] = 16851, + [SMALL_STATE(3287)] = 16862, + [SMALL_STATE(3288)] = 16873, + [SMALL_STATE(3289)] = 16884, + [SMALL_STATE(3290)] = 16895, + [SMALL_STATE(3291)] = 16906, + [SMALL_STATE(3292)] = 16917, + [SMALL_STATE(3293)] = 16928, + [SMALL_STATE(3294)] = 16939, + [SMALL_STATE(3295)] = 16950, + [SMALL_STATE(3296)] = 16961, + [SMALL_STATE(3297)] = 16972, + [SMALL_STATE(3298)] = 16983, + [SMALL_STATE(3299)] = 16994, + [SMALL_STATE(3300)] = 17005, + [SMALL_STATE(3301)] = 17016, + [SMALL_STATE(3302)] = 17025, + [SMALL_STATE(3303)] = 17036, + [SMALL_STATE(3304)] = 17047, + [SMALL_STATE(3305)] = 17058, + [SMALL_STATE(3306)] = 17069, + [SMALL_STATE(3307)] = 17080, + [SMALL_STATE(3308)] = 17091, + [SMALL_STATE(3309)] = 17102, + [SMALL_STATE(3310)] = 17113, + [SMALL_STATE(3311)] = 17124, + [SMALL_STATE(3312)] = 17135, + [SMALL_STATE(3313)] = 17146, + [SMALL_STATE(3314)] = 17157, + [SMALL_STATE(3315)] = 17168, + [SMALL_STATE(3316)] = 17179, + [SMALL_STATE(3317)] = 17190, + [SMALL_STATE(3318)] = 17201, + [SMALL_STATE(3319)] = 17212, + [SMALL_STATE(3320)] = 17223, + [SMALL_STATE(3321)] = 17234, + [SMALL_STATE(3322)] = 17245, + [SMALL_STATE(3323)] = 17256, + [SMALL_STATE(3324)] = 17267, + [SMALL_STATE(3325)] = 17278, + [SMALL_STATE(3326)] = 17289, + [SMALL_STATE(3327)] = 17300, + [SMALL_STATE(3328)] = 17311, + [SMALL_STATE(3329)] = 17322, + [SMALL_STATE(3330)] = 17333, + [SMALL_STATE(3331)] = 17344, + [SMALL_STATE(3332)] = 17355, + [SMALL_STATE(3333)] = 17366, + [SMALL_STATE(3334)] = 17377, + [SMALL_STATE(3335)] = 17388, + [SMALL_STATE(3336)] = 17399, + [SMALL_STATE(3337)] = 17410, + [SMALL_STATE(3338)] = 17421, + [SMALL_STATE(3339)] = 17432, + [SMALL_STATE(3340)] = 17443, + [SMALL_STATE(3341)] = 17454, + [SMALL_STATE(3342)] = 17465, + [SMALL_STATE(3343)] = 17476, + [SMALL_STATE(3344)] = 17487, + [SMALL_STATE(3345)] = 17498, + [SMALL_STATE(3346)] = 17509, + [SMALL_STATE(3347)] = 17520, + [SMALL_STATE(3348)] = 17531, + [SMALL_STATE(3349)] = 17542, + [SMALL_STATE(3350)] = 17553, + [SMALL_STATE(3351)] = 17564, + [SMALL_STATE(3352)] = 17575, + [SMALL_STATE(3353)] = 17586, + [SMALL_STATE(3354)] = 17597, + [SMALL_STATE(3355)] = 17608, + [SMALL_STATE(3356)] = 17619, + [SMALL_STATE(3357)] = 17630, + [SMALL_STATE(3358)] = 17641, + [SMALL_STATE(3359)] = 17652, + [SMALL_STATE(3360)] = 17663, + [SMALL_STATE(3361)] = 17674, + [SMALL_STATE(3362)] = 17685, + [SMALL_STATE(3363)] = 17696, + [SMALL_STATE(3364)] = 17707, + [SMALL_STATE(3365)] = 17718, + [SMALL_STATE(3366)] = 17729, + [SMALL_STATE(3367)] = 17740, + [SMALL_STATE(3368)] = 17751, + [SMALL_STATE(3369)] = 17762, + [SMALL_STATE(3370)] = 17773, + [SMALL_STATE(3371)] = 17784, + [SMALL_STATE(3372)] = 17795, + [SMALL_STATE(3373)] = 17806, + [SMALL_STATE(3374)] = 17817, + [SMALL_STATE(3375)] = 17828, + [SMALL_STATE(3376)] = 17839, + [SMALL_STATE(3377)] = 17850, + [SMALL_STATE(3378)] = 17861, + [SMALL_STATE(3379)] = 17872, + [SMALL_STATE(3380)] = 17883, + [SMALL_STATE(3381)] = 17892, + [SMALL_STATE(3382)] = 17903, + [SMALL_STATE(3383)] = 17914, + [SMALL_STATE(3384)] = 17925, + [SMALL_STATE(3385)] = 17936, + [SMALL_STATE(3386)] = 17947, + [SMALL_STATE(3387)] = 17958, + [SMALL_STATE(3388)] = 17969, + [SMALL_STATE(3389)] = 17980, + [SMALL_STATE(3390)] = 17991, + [SMALL_STATE(3391)] = 18002, + [SMALL_STATE(3392)] = 18013, + [SMALL_STATE(3393)] = 18024, + [SMALL_STATE(3394)] = 18035, + [SMALL_STATE(3395)] = 18046, + [SMALL_STATE(3396)] = 18057, + [SMALL_STATE(3397)] = 18068, + [SMALL_STATE(3398)] = 18079, + [SMALL_STATE(3399)] = 18090, + [SMALL_STATE(3400)] = 18101, + [SMALL_STATE(3401)] = 18112, + [SMALL_STATE(3402)] = 18123, + [SMALL_STATE(3403)] = 18134, + [SMALL_STATE(3404)] = 18145, + [SMALL_STATE(3405)] = 18156, + [SMALL_STATE(3406)] = 18167, + [SMALL_STATE(3407)] = 18178, + [SMALL_STATE(3408)] = 18189, + [SMALL_STATE(3409)] = 18200, + [SMALL_STATE(3410)] = 18211, + [SMALL_STATE(3411)] = 18220, + [SMALL_STATE(3412)] = 18231, + [SMALL_STATE(3413)] = 18242, + [SMALL_STATE(3414)] = 18253, + [SMALL_STATE(3415)] = 18264, + [SMALL_STATE(3416)] = 18275, + [SMALL_STATE(3417)] = 18286, + [SMALL_STATE(3418)] = 18297, + [SMALL_STATE(3419)] = 18308, + [SMALL_STATE(3420)] = 18319, + [SMALL_STATE(3421)] = 18330, + [SMALL_STATE(3422)] = 18341, + [SMALL_STATE(3423)] = 18352, + [SMALL_STATE(3424)] = 18363, + [SMALL_STATE(3425)] = 18374, + [SMALL_STATE(3426)] = 18385, + [SMALL_STATE(3427)] = 18396, + [SMALL_STATE(3428)] = 18407, + [SMALL_STATE(3429)] = 18418, + [SMALL_STATE(3430)] = 18429, + [SMALL_STATE(3431)] = 18440, + [SMALL_STATE(3432)] = 18451, + [SMALL_STATE(3433)] = 18462, + [SMALL_STATE(3434)] = 18473, + [SMALL_STATE(3435)] = 18484, + [SMALL_STATE(3436)] = 18495, + [SMALL_STATE(3437)] = 18506, + [SMALL_STATE(3438)] = 18517, + [SMALL_STATE(3439)] = 18528, + [SMALL_STATE(3440)] = 18539, + [SMALL_STATE(3441)] = 18550, + [SMALL_STATE(3442)] = 18561, + [SMALL_STATE(3443)] = 18569, + [SMALL_STATE(3444)] = 18577, + [SMALL_STATE(3445)] = 18585, + [SMALL_STATE(3446)] = 18593, + [SMALL_STATE(3447)] = 18601, + [SMALL_STATE(3448)] = 18609, + [SMALL_STATE(3449)] = 18617, + [SMALL_STATE(3450)] = 18625, + [SMALL_STATE(3451)] = 18633, + [SMALL_STATE(3452)] = 18641, + [SMALL_STATE(3453)] = 18649, + [SMALL_STATE(3454)] = 18657, + [SMALL_STATE(3455)] = 18665, + [SMALL_STATE(3456)] = 18673, + [SMALL_STATE(3457)] = 18681, + [SMALL_STATE(3458)] = 18689, + [SMALL_STATE(3459)] = 18697, + [SMALL_STATE(3460)] = 18705, + [SMALL_STATE(3461)] = 18713, + [SMALL_STATE(3462)] = 18721, + [SMALL_STATE(3463)] = 18729, + [SMALL_STATE(3464)] = 18737, + [SMALL_STATE(3465)] = 18745, + [SMALL_STATE(3466)] = 18753, + [SMALL_STATE(3467)] = 18761, + [SMALL_STATE(3468)] = 18769, + [SMALL_STATE(3469)] = 18777, + [SMALL_STATE(3470)] = 18785, + [SMALL_STATE(3471)] = 18793, + [SMALL_STATE(3472)] = 18801, + [SMALL_STATE(3473)] = 18809, + [SMALL_STATE(3474)] = 18817, + [SMALL_STATE(3475)] = 18825, + [SMALL_STATE(3476)] = 18833, + [SMALL_STATE(3477)] = 18841, + [SMALL_STATE(3478)] = 18849, + [SMALL_STATE(3479)] = 18857, + [SMALL_STATE(3480)] = 18865, + [SMALL_STATE(3481)] = 18873, + [SMALL_STATE(3482)] = 18881, + [SMALL_STATE(3483)] = 18889, + [SMALL_STATE(3484)] = 18897, + [SMALL_STATE(3485)] = 18905, + [SMALL_STATE(3486)] = 18913, + [SMALL_STATE(3487)] = 18921, + [SMALL_STATE(3488)] = 18929, + [SMALL_STATE(3489)] = 18937, + [SMALL_STATE(3490)] = 18945, + [SMALL_STATE(3491)] = 18953, + [SMALL_STATE(3492)] = 18961, + [SMALL_STATE(3493)] = 18969, + [SMALL_STATE(3494)] = 18977, + [SMALL_STATE(3495)] = 18985, + [SMALL_STATE(3496)] = 18993, + [SMALL_STATE(3497)] = 19001, + [SMALL_STATE(3498)] = 19009, + [SMALL_STATE(3499)] = 19017, + [SMALL_STATE(3500)] = 19025, + [SMALL_STATE(3501)] = 19033, + [SMALL_STATE(3502)] = 19041, + [SMALL_STATE(3503)] = 19049, + [SMALL_STATE(3504)] = 19057, + [SMALL_STATE(3505)] = 19065, + [SMALL_STATE(3506)] = 19073, + [SMALL_STATE(3507)] = 19081, + [SMALL_STATE(3508)] = 19089, + [SMALL_STATE(3509)] = 19097, + [SMALL_STATE(3510)] = 19105, + [SMALL_STATE(3511)] = 19113, + [SMALL_STATE(3512)] = 19121, + [SMALL_STATE(3513)] = 19129, + [SMALL_STATE(3514)] = 19137, + [SMALL_STATE(3515)] = 19145, + [SMALL_STATE(3516)] = 19153, + [SMALL_STATE(3517)] = 19161, + [SMALL_STATE(3518)] = 19169, + [SMALL_STATE(3519)] = 19177, + [SMALL_STATE(3520)] = 19185, + [SMALL_STATE(3521)] = 19193, + [SMALL_STATE(3522)] = 19201, + [SMALL_STATE(3523)] = 19209, + [SMALL_STATE(3524)] = 19217, + [SMALL_STATE(3525)] = 19225, + [SMALL_STATE(3526)] = 19233, + [SMALL_STATE(3527)] = 19241, + [SMALL_STATE(3528)] = 19249, + [SMALL_STATE(3529)] = 19257, + [SMALL_STATE(3530)] = 19265, + [SMALL_STATE(3531)] = 19273, + [SMALL_STATE(3532)] = 19281, + [SMALL_STATE(3533)] = 19289, + [SMALL_STATE(3534)] = 19297, + [SMALL_STATE(3535)] = 19305, + [SMALL_STATE(3536)] = 19313, + [SMALL_STATE(3537)] = 19321, + [SMALL_STATE(3538)] = 19329, + [SMALL_STATE(3539)] = 19337, + [SMALL_STATE(3540)] = 19345, + [SMALL_STATE(3541)] = 19353, + [SMALL_STATE(3542)] = 19361, + [SMALL_STATE(3543)] = 19369, + [SMALL_STATE(3544)] = 19377, + [SMALL_STATE(3545)] = 19385, + [SMALL_STATE(3546)] = 19393, + [SMALL_STATE(3547)] = 19401, + [SMALL_STATE(3548)] = 19409, + [SMALL_STATE(3549)] = 19417, + [SMALL_STATE(3550)] = 19425, + [SMALL_STATE(3551)] = 19433, + [SMALL_STATE(3552)] = 19441, + [SMALL_STATE(3553)] = 19449, + [SMALL_STATE(3554)] = 19457, + [SMALL_STATE(3555)] = 19465, + [SMALL_STATE(3556)] = 19473, + [SMALL_STATE(3557)] = 19481, + [SMALL_STATE(3558)] = 19489, + [SMALL_STATE(3559)] = 19497, + [SMALL_STATE(3560)] = 19505, + [SMALL_STATE(3561)] = 19513, + [SMALL_STATE(3562)] = 19521, + [SMALL_STATE(3563)] = 19529, + [SMALL_STATE(3564)] = 19537, + [SMALL_STATE(3565)] = 19545, + [SMALL_STATE(3566)] = 19553, + [SMALL_STATE(3567)] = 19561, + [SMALL_STATE(3568)] = 19569, + [SMALL_STATE(3569)] = 19577, + [SMALL_STATE(3570)] = 19585, + [SMALL_STATE(3571)] = 19593, + [SMALL_STATE(3572)] = 19601, + [SMALL_STATE(3573)] = 19609, + [SMALL_STATE(3574)] = 19617, + [SMALL_STATE(3575)] = 19625, + [SMALL_STATE(3576)] = 19633, + [SMALL_STATE(3577)] = 19641, + [SMALL_STATE(3578)] = 19649, + [SMALL_STATE(3579)] = 19657, + [SMALL_STATE(3580)] = 19665, + [SMALL_STATE(3581)] = 19673, + [SMALL_STATE(3582)] = 19681, + [SMALL_STATE(3583)] = 19689, + [SMALL_STATE(3584)] = 19697, + [SMALL_STATE(3585)] = 19705, + [SMALL_STATE(3586)] = 19713, + [SMALL_STATE(3587)] = 19721, + [SMALL_STATE(3588)] = 19729, + [SMALL_STATE(3589)] = 19737, + [SMALL_STATE(3590)] = 19745, + [SMALL_STATE(3591)] = 19753, + [SMALL_STATE(3592)] = 19761, + [SMALL_STATE(3593)] = 19769, + [SMALL_STATE(3594)] = 19777, + [SMALL_STATE(3595)] = 19785, + [SMALL_STATE(3596)] = 19793, + [SMALL_STATE(3597)] = 19801, + [SMALL_STATE(3598)] = 19809, + [SMALL_STATE(3599)] = 19817, + [SMALL_STATE(3600)] = 19825, + [SMALL_STATE(3601)] = 19833, + [SMALL_STATE(3602)] = 19841, + [SMALL_STATE(3603)] = 19849, + [SMALL_STATE(3604)] = 19857, + [SMALL_STATE(3605)] = 19865, + [SMALL_STATE(3606)] = 19873, + [SMALL_STATE(3607)] = 19881, + [SMALL_STATE(3608)] = 19889, + [SMALL_STATE(3609)] = 19897, + [SMALL_STATE(3610)] = 19905, + [SMALL_STATE(3611)] = 19913, + [SMALL_STATE(3612)] = 19921, + [SMALL_STATE(3613)] = 19929, + [SMALL_STATE(3614)] = 19937, + [SMALL_STATE(3615)] = 19945, + [SMALL_STATE(3616)] = 19953, + [SMALL_STATE(3617)] = 19961, + [SMALL_STATE(3618)] = 19969, + [SMALL_STATE(3619)] = 19977, + [SMALL_STATE(3620)] = 19985, + [SMALL_STATE(3621)] = 19993, + [SMALL_STATE(3622)] = 20001, + [SMALL_STATE(3623)] = 20009, + [SMALL_STATE(3624)] = 20017, + [SMALL_STATE(3625)] = 20025, + [SMALL_STATE(3626)] = 20033, + [SMALL_STATE(3627)] = 20041, + [SMALL_STATE(3628)] = 20049, + [SMALL_STATE(3629)] = 20057, + [SMALL_STATE(3630)] = 20065, + [SMALL_STATE(3631)] = 20073, + [SMALL_STATE(3632)] = 20081, + [SMALL_STATE(3633)] = 20089, + [SMALL_STATE(3634)] = 20097, + [SMALL_STATE(3635)] = 20105, + [SMALL_STATE(3636)] = 20113, + [SMALL_STATE(3637)] = 20121, + [SMALL_STATE(3638)] = 20129, + [SMALL_STATE(3639)] = 20137, + [SMALL_STATE(3640)] = 20145, + [SMALL_STATE(3641)] = 20153, + [SMALL_STATE(3642)] = 20161, + [SMALL_STATE(3643)] = 20169, + [SMALL_STATE(3644)] = 20177, + [SMALL_STATE(3645)] = 20185, + [SMALL_STATE(3646)] = 20193, + [SMALL_STATE(3647)] = 20201, + [SMALL_STATE(3648)] = 20209, + [SMALL_STATE(3649)] = 20217, + [SMALL_STATE(3650)] = 20225, + [SMALL_STATE(3651)] = 20233, + [SMALL_STATE(3652)] = 20241, + [SMALL_STATE(3653)] = 20249, + [SMALL_STATE(3654)] = 20257, + [SMALL_STATE(3655)] = 20265, + [SMALL_STATE(3656)] = 20273, + [SMALL_STATE(3657)] = 20281, + [SMALL_STATE(3658)] = 20289, + [SMALL_STATE(3659)] = 20297, + [SMALL_STATE(3660)] = 20305, + [SMALL_STATE(3661)] = 20313, + [SMALL_STATE(3662)] = 20321, + [SMALL_STATE(3663)] = 20329, + [SMALL_STATE(3664)] = 20337, + [SMALL_STATE(3665)] = 20345, + [SMALL_STATE(3666)] = 20353, + [SMALL_STATE(3667)] = 20361, + [SMALL_STATE(3668)] = 20369, + [SMALL_STATE(3669)] = 20377, + [SMALL_STATE(3670)] = 20385, + [SMALL_STATE(3671)] = 20393, + [SMALL_STATE(3672)] = 20401, + [SMALL_STATE(3673)] = 20409, + [SMALL_STATE(3674)] = 20417, + [SMALL_STATE(3675)] = 20425, + [SMALL_STATE(3676)] = 20433, + [SMALL_STATE(3677)] = 20441, + [SMALL_STATE(3678)] = 20449, + [SMALL_STATE(3679)] = 20457, + [SMALL_STATE(3680)] = 20465, + [SMALL_STATE(3681)] = 20473, + [SMALL_STATE(3682)] = 20481, + [SMALL_STATE(3683)] = 20489, + [SMALL_STATE(3684)] = 20497, + [SMALL_STATE(3685)] = 20505, + [SMALL_STATE(3686)] = 20513, + [SMALL_STATE(3687)] = 20521, + [SMALL_STATE(3688)] = 20529, + [SMALL_STATE(3689)] = 20537, + [SMALL_STATE(3690)] = 20545, + [SMALL_STATE(3691)] = 20553, + [SMALL_STATE(3692)] = 20561, + [SMALL_STATE(3693)] = 20569, + [SMALL_STATE(3694)] = 20577, + [SMALL_STATE(3695)] = 20585, + [SMALL_STATE(3696)] = 20593, + [SMALL_STATE(3697)] = 20601, + [SMALL_STATE(3698)] = 20609, + [SMALL_STATE(3699)] = 20617, + [SMALL_STATE(3700)] = 20625, + [SMALL_STATE(3701)] = 20633, + [SMALL_STATE(3702)] = 20641, + [SMALL_STATE(3703)] = 20649, + [SMALL_STATE(3704)] = 20657, + [SMALL_STATE(3705)] = 20665, + [SMALL_STATE(3706)] = 20673, + [SMALL_STATE(3707)] = 20681, + [SMALL_STATE(3708)] = 20689, + [SMALL_STATE(3709)] = 20697, + [SMALL_STATE(3710)] = 20705, + [SMALL_STATE(3711)] = 20713, + [SMALL_STATE(3712)] = 20721, + [SMALL_STATE(3713)] = 20729, + [SMALL_STATE(3714)] = 20737, + [SMALL_STATE(3715)] = 20745, + [SMALL_STATE(3716)] = 20753, + [SMALL_STATE(3717)] = 20761, + [SMALL_STATE(3718)] = 20769, + [SMALL_STATE(3719)] = 20777, + [SMALL_STATE(3720)] = 20785, + [SMALL_STATE(3721)] = 20793, + [SMALL_STATE(3722)] = 20801, + [SMALL_STATE(3723)] = 20809, + [SMALL_STATE(3724)] = 20817, + [SMALL_STATE(3725)] = 20825, + [SMALL_STATE(3726)] = 20833, + [SMALL_STATE(3727)] = 20841, + [SMALL_STATE(3728)] = 20849, + [SMALL_STATE(3729)] = 20857, + [SMALL_STATE(3730)] = 20865, + [SMALL_STATE(3731)] = 20873, + [SMALL_STATE(3732)] = 20881, + [SMALL_STATE(3733)] = 20889, + [SMALL_STATE(3734)] = 20897, + [SMALL_STATE(3735)] = 20905, + [SMALL_STATE(3736)] = 20913, + [SMALL_STATE(3737)] = 20921, + [SMALL_STATE(3738)] = 20929, + [SMALL_STATE(3739)] = 20937, + [SMALL_STATE(3740)] = 20945, + [SMALL_STATE(3741)] = 20953, + [SMALL_STATE(3742)] = 20961, + [SMALL_STATE(3743)] = 20969, + [SMALL_STATE(3744)] = 20977, + [SMALL_STATE(3745)] = 20985, + [SMALL_STATE(3746)] = 20993, + [SMALL_STATE(3747)] = 21001, + [SMALL_STATE(3748)] = 21009, + [SMALL_STATE(3749)] = 21017, + [SMALL_STATE(3750)] = 21025, + [SMALL_STATE(3751)] = 21033, + [SMALL_STATE(3752)] = 21041, + [SMALL_STATE(3753)] = 21049, + [SMALL_STATE(3754)] = 21057, + [SMALL_STATE(3755)] = 21065, + [SMALL_STATE(3756)] = 21073, + [SMALL_STATE(3757)] = 21081, + [SMALL_STATE(3758)] = 21089, + [SMALL_STATE(3759)] = 21097, + [SMALL_STATE(3760)] = 21105, + [SMALL_STATE(3761)] = 21113, + [SMALL_STATE(3762)] = 21121, + [SMALL_STATE(3763)] = 21129, + [SMALL_STATE(3764)] = 21137, + [SMALL_STATE(3765)] = 21145, + [SMALL_STATE(3766)] = 21153, + [SMALL_STATE(3767)] = 21161, + [SMALL_STATE(3768)] = 21169, + [SMALL_STATE(3769)] = 21177, + [SMALL_STATE(3770)] = 21185, + [SMALL_STATE(3771)] = 21193, + [SMALL_STATE(3772)] = 21201, + [SMALL_STATE(3773)] = 21209, + [SMALL_STATE(3774)] = 21217, + [SMALL_STATE(3775)] = 21225, + [SMALL_STATE(3776)] = 21233, + [SMALL_STATE(3777)] = 21241, + [SMALL_STATE(3778)] = 21249, + [SMALL_STATE(3779)] = 21257, + [SMALL_STATE(3780)] = 21265, + [SMALL_STATE(3781)] = 21273, + [SMALL_STATE(3782)] = 21281, + [SMALL_STATE(3783)] = 21289, + [SMALL_STATE(3784)] = 21297, + [SMALL_STATE(3785)] = 21305, + [SMALL_STATE(3786)] = 21313, + [SMALL_STATE(3787)] = 21321, + [SMALL_STATE(3788)] = 21329, + [SMALL_STATE(3789)] = 21337, + [SMALL_STATE(3790)] = 21345, + [SMALL_STATE(3791)] = 21353, + [SMALL_STATE(3792)] = 21361, + [SMALL_STATE(3793)] = 21369, + [SMALL_STATE(3794)] = 21377, + [SMALL_STATE(3795)] = 21385, + [SMALL_STATE(3796)] = 21393, + [SMALL_STATE(3797)] = 21401, + [SMALL_STATE(3798)] = 21409, + [SMALL_STATE(3799)] = 21417, + [SMALL_STATE(3800)] = 21425, + [SMALL_STATE(3801)] = 21433, + [SMALL_STATE(3802)] = 21441, + [SMALL_STATE(3803)] = 21449, + [SMALL_STATE(3804)] = 21457, + [SMALL_STATE(3805)] = 21465, + [SMALL_STATE(3806)] = 21473, + [SMALL_STATE(3807)] = 21481, + [SMALL_STATE(3808)] = 21489, + [SMALL_STATE(3809)] = 21497, + [SMALL_STATE(3810)] = 21505, + [SMALL_STATE(3811)] = 21513, + [SMALL_STATE(3812)] = 21521, + [SMALL_STATE(3813)] = 21529, + [SMALL_STATE(3814)] = 21537, + [SMALL_STATE(3815)] = 21545, + [SMALL_STATE(3816)] = 21553, + [SMALL_STATE(3817)] = 21561, + [SMALL_STATE(3818)] = 21569, + [SMALL_STATE(3819)] = 21577, + [SMALL_STATE(3820)] = 21585, + [SMALL_STATE(3821)] = 21593, + [SMALL_STATE(3822)] = 21601, + [SMALL_STATE(3823)] = 21609, + [SMALL_STATE(3824)] = 21617, + [SMALL_STATE(3825)] = 21625, + [SMALL_STATE(3826)] = 21633, + [SMALL_STATE(3827)] = 21641, + [SMALL_STATE(3828)] = 21649, + [SMALL_STATE(3829)] = 21657, + [SMALL_STATE(3830)] = 21665, + [SMALL_STATE(3831)] = 21673, + [SMALL_STATE(3832)] = 21681, + [SMALL_STATE(3833)] = 21689, + [SMALL_STATE(3834)] = 21697, + [SMALL_STATE(3835)] = 21705, + [SMALL_STATE(3836)] = 21713, + [SMALL_STATE(3837)] = 21721, + [SMALL_STATE(3838)] = 21729, + [SMALL_STATE(3839)] = 21737, + [SMALL_STATE(3840)] = 21745, + [SMALL_STATE(3841)] = 21753, + [SMALL_STATE(3842)] = 21761, + [SMALL_STATE(3843)] = 21769, + [SMALL_STATE(3844)] = 21777, + [SMALL_STATE(3845)] = 21785, + [SMALL_STATE(3846)] = 21793, + [SMALL_STATE(3847)] = 21801, + [SMALL_STATE(3848)] = 21809, + [SMALL_STATE(3849)] = 21817, + [SMALL_STATE(3850)] = 21825, + [SMALL_STATE(3851)] = 21833, + [SMALL_STATE(3852)] = 21841, + [SMALL_STATE(3853)] = 21849, + [SMALL_STATE(3854)] = 21857, + [SMALL_STATE(3855)] = 21865, + [SMALL_STATE(3856)] = 21873, + [SMALL_STATE(3857)] = 21881, + [SMALL_STATE(3858)] = 21889, + [SMALL_STATE(3859)] = 21897, + [SMALL_STATE(3860)] = 21905, + [SMALL_STATE(3861)] = 21913, + [SMALL_STATE(3862)] = 21921, + [SMALL_STATE(3863)] = 21929, + [SMALL_STATE(3864)] = 21937, + [SMALL_STATE(3865)] = 21945, + [SMALL_STATE(3866)] = 21953, + [SMALL_STATE(3867)] = 21961, + [SMALL_STATE(3868)] = 21969, + [SMALL_STATE(3869)] = 21977, + [SMALL_STATE(3870)] = 21985, + [SMALL_STATE(3871)] = 21993, + [SMALL_STATE(3872)] = 22001, + [SMALL_STATE(3873)] = 22009, + [SMALL_STATE(3874)] = 22017, + [SMALL_STATE(3875)] = 22025, + [SMALL_STATE(3876)] = 22033, + [SMALL_STATE(3877)] = 22041, + [SMALL_STATE(3878)] = 22049, + [SMALL_STATE(3879)] = 22057, + [SMALL_STATE(3880)] = 22065, + [SMALL_STATE(3881)] = 22073, + [SMALL_STATE(3882)] = 22081, + [SMALL_STATE(3883)] = 22089, + [SMALL_STATE(3884)] = 22097, + [SMALL_STATE(3885)] = 22105, + [SMALL_STATE(3886)] = 22113, + [SMALL_STATE(3887)] = 22121, + [SMALL_STATE(3888)] = 22129, + [SMALL_STATE(3889)] = 22137, + [SMALL_STATE(3890)] = 22145, + [SMALL_STATE(3891)] = 22153, + [SMALL_STATE(3892)] = 22161, + [SMALL_STATE(3893)] = 22169, + [SMALL_STATE(3894)] = 22177, + [SMALL_STATE(3895)] = 22185, + [SMALL_STATE(3896)] = 22193, + [SMALL_STATE(3897)] = 22201, + [SMALL_STATE(3898)] = 22209, + [SMALL_STATE(3899)] = 22217, + [SMALL_STATE(3900)] = 22225, + [SMALL_STATE(3901)] = 22233, + [SMALL_STATE(3902)] = 22241, + [SMALL_STATE(3903)] = 22249, + [SMALL_STATE(3904)] = 22257, + [SMALL_STATE(3905)] = 22265, + [SMALL_STATE(3906)] = 22273, + [SMALL_STATE(3907)] = 22281, + [SMALL_STATE(3908)] = 22289, + [SMALL_STATE(3909)] = 22297, + [SMALL_STATE(3910)] = 22305, + [SMALL_STATE(3911)] = 22313, + [SMALL_STATE(3912)] = 22321, + [SMALL_STATE(3913)] = 22329, + [SMALL_STATE(3914)] = 22337, + [SMALL_STATE(3915)] = 22345, + [SMALL_STATE(3916)] = 22353, + [SMALL_STATE(3917)] = 22361, + [SMALL_STATE(3918)] = 22369, + [SMALL_STATE(3919)] = 22377, + [SMALL_STATE(3920)] = 22385, + [SMALL_STATE(3921)] = 22393, + [SMALL_STATE(3922)] = 22401, + [SMALL_STATE(3923)] = 22409, + [SMALL_STATE(3924)] = 22417, + [SMALL_STATE(3925)] = 22425, + [SMALL_STATE(3926)] = 22433, + [SMALL_STATE(3927)] = 22441, + [SMALL_STATE(3928)] = 22449, + [SMALL_STATE(3929)] = 22457, + [SMALL_STATE(3930)] = 22465, + [SMALL_STATE(3931)] = 22473, + [SMALL_STATE(3932)] = 22481, + [SMALL_STATE(3933)] = 22489, + [SMALL_STATE(3934)] = 22497, + [SMALL_STATE(3935)] = 22505, + [SMALL_STATE(3936)] = 22513, + [SMALL_STATE(3937)] = 22521, + [SMALL_STATE(3938)] = 22529, + [SMALL_STATE(3939)] = 22537, + [SMALL_STATE(3940)] = 22545, + [SMALL_STATE(3941)] = 22553, + [SMALL_STATE(3942)] = 22561, + [SMALL_STATE(3943)] = 22569, + [SMALL_STATE(3944)] = 22577, + [SMALL_STATE(3945)] = 22585, + [SMALL_STATE(3946)] = 22593, + [SMALL_STATE(3947)] = 22601, + [SMALL_STATE(3948)] = 22609, + [SMALL_STATE(3949)] = 22617, + [SMALL_STATE(3950)] = 22625, + [SMALL_STATE(3951)] = 22633, + [SMALL_STATE(3952)] = 22641, + [SMALL_STATE(3953)] = 22649, + [SMALL_STATE(3954)] = 22657, + [SMALL_STATE(3955)] = 22665, + [SMALL_STATE(3956)] = 22673, + [SMALL_STATE(3957)] = 22681, + [SMALL_STATE(3958)] = 22689, + [SMALL_STATE(3959)] = 22697, + [SMALL_STATE(3960)] = 22705, + [SMALL_STATE(3961)] = 22713, + [SMALL_STATE(3962)] = 22721, + [SMALL_STATE(3963)] = 22729, + [SMALL_STATE(3964)] = 22737, + [SMALL_STATE(3965)] = 22745, + [SMALL_STATE(3966)] = 22753, + [SMALL_STATE(3967)] = 22761, + [SMALL_STATE(3968)] = 22769, + [SMALL_STATE(3969)] = 22777, + [SMALL_STATE(3970)] = 22785, + [SMALL_STATE(3971)] = 22793, + [SMALL_STATE(3972)] = 22801, + [SMALL_STATE(3973)] = 22809, + [SMALL_STATE(3974)] = 22817, + [SMALL_STATE(3975)] = 22825, + [SMALL_STATE(3976)] = 22833, + [SMALL_STATE(3977)] = 22841, + [SMALL_STATE(3978)] = 22849, + [SMALL_STATE(3979)] = 22857, + [SMALL_STATE(3980)] = 22865, + [SMALL_STATE(3981)] = 22873, + [SMALL_STATE(3982)] = 22881, + [SMALL_STATE(3983)] = 22889, + [SMALL_STATE(3984)] = 22897, + [SMALL_STATE(3985)] = 22905, + [SMALL_STATE(3986)] = 22913, + [SMALL_STATE(3987)] = 22921, + [SMALL_STATE(3988)] = 22929, + [SMALL_STATE(3989)] = 22937, + [SMALL_STATE(3990)] = 22945, + [SMALL_STATE(3991)] = 22953, + [SMALL_STATE(3992)] = 22961, + [SMALL_STATE(3993)] = 22969, + [SMALL_STATE(3994)] = 22977, + [SMALL_STATE(3995)] = 22985, + [SMALL_STATE(3996)] = 22993, + [SMALL_STATE(3997)] = 23001, + [SMALL_STATE(3998)] = 23009, + [SMALL_STATE(3999)] = 23017, + [SMALL_STATE(4000)] = 23025, + [SMALL_STATE(4001)] = 23033, + [SMALL_STATE(4002)] = 23041, + [SMALL_STATE(4003)] = 23049, + [SMALL_STATE(4004)] = 23057, + [SMALL_STATE(4005)] = 23065, + [SMALL_STATE(4006)] = 23073, + [SMALL_STATE(4007)] = 23081, + [SMALL_STATE(4008)] = 23089, + [SMALL_STATE(4009)] = 23097, + [SMALL_STATE(4010)] = 23105, + [SMALL_STATE(4011)] = 23113, + [SMALL_STATE(4012)] = 23121, + [SMALL_STATE(4013)] = 23129, + [SMALL_STATE(4014)] = 23137, + [SMALL_STATE(4015)] = 23145, + [SMALL_STATE(4016)] = 23153, + [SMALL_STATE(4017)] = 23161, + [SMALL_STATE(4018)] = 23169, + [SMALL_STATE(4019)] = 23177, + [SMALL_STATE(4020)] = 23185, + [SMALL_STATE(4021)] = 23193, + [SMALL_STATE(4022)] = 23201, + [SMALL_STATE(4023)] = 23209, + [SMALL_STATE(4024)] = 23217, + [SMALL_STATE(4025)] = 23225, + [SMALL_STATE(4026)] = 23233, + [SMALL_STATE(4027)] = 23241, + [SMALL_STATE(4028)] = 23249, + [SMALL_STATE(4029)] = 23257, + [SMALL_STATE(4030)] = 23265, + [SMALL_STATE(4031)] = 23273, + [SMALL_STATE(4032)] = 23281, + [SMALL_STATE(4033)] = 23289, + [SMALL_STATE(4034)] = 23297, + [SMALL_STATE(4035)] = 23305, + [SMALL_STATE(4036)] = 23313, + [SMALL_STATE(4037)] = 23321, + [SMALL_STATE(4038)] = 23329, + [SMALL_STATE(4039)] = 23337, + [SMALL_STATE(4040)] = 23345, + [SMALL_STATE(4041)] = 23353, + [SMALL_STATE(4042)] = 23361, + [SMALL_STATE(4043)] = 23369, + [SMALL_STATE(4044)] = 23377, + [SMALL_STATE(4045)] = 23385, + [SMALL_STATE(4046)] = 23393, + [SMALL_STATE(4047)] = 23401, + [SMALL_STATE(4048)] = 23409, + [SMALL_STATE(4049)] = 23417, + [SMALL_STATE(4050)] = 23425, + [SMALL_STATE(4051)] = 23433, + [SMALL_STATE(4052)] = 23441, + [SMALL_STATE(4053)] = 23449, + [SMALL_STATE(4054)] = 23457, + [SMALL_STATE(4055)] = 23465, + [SMALL_STATE(4056)] = 23473, + [SMALL_STATE(4057)] = 23481, + [SMALL_STATE(4058)] = 23489, + [SMALL_STATE(4059)] = 23497, + [SMALL_STATE(4060)] = 23505, + [SMALL_STATE(4061)] = 23513, + [SMALL_STATE(4062)] = 23521, + [SMALL_STATE(4063)] = 23529, + [SMALL_STATE(4064)] = 23537, + [SMALL_STATE(4065)] = 23545, + [SMALL_STATE(4066)] = 23553, + [SMALL_STATE(4067)] = 23561, + [SMALL_STATE(4068)] = 23569, + [SMALL_STATE(4069)] = 23577, + [SMALL_STATE(4070)] = 23585, + [SMALL_STATE(4071)] = 23593, + [SMALL_STATE(4072)] = 23601, + [SMALL_STATE(4073)] = 23609, + [SMALL_STATE(4074)] = 23617, + [SMALL_STATE(4075)] = 23625, + [SMALL_STATE(4076)] = 23633, + [SMALL_STATE(4077)] = 23641, + [SMALL_STATE(4078)] = 23649, + [SMALL_STATE(4079)] = 23657, + [SMALL_STATE(4080)] = 23665, + [SMALL_STATE(4081)] = 23673, + [SMALL_STATE(4082)] = 23681, + [SMALL_STATE(4083)] = 23689, + [SMALL_STATE(4084)] = 23697, + [SMALL_STATE(4085)] = 23705, + [SMALL_STATE(4086)] = 23713, + [SMALL_STATE(4087)] = 23721, + [SMALL_STATE(4088)] = 23729, + [SMALL_STATE(4089)] = 23737, + [SMALL_STATE(4090)] = 23745, + [SMALL_STATE(4091)] = 23753, + [SMALL_STATE(4092)] = 23761, + [SMALL_STATE(4093)] = 23769, + [SMALL_STATE(4094)] = 23777, + [SMALL_STATE(4095)] = 23785, + [SMALL_STATE(4096)] = 23793, + [SMALL_STATE(4097)] = 23801, + [SMALL_STATE(4098)] = 23809, + [SMALL_STATE(4099)] = 23817, + [SMALL_STATE(4100)] = 23825, + [SMALL_STATE(4101)] = 23833, + [SMALL_STATE(4102)] = 23841, + [SMALL_STATE(4103)] = 23849, + [SMALL_STATE(4104)] = 23857, + [SMALL_STATE(4105)] = 23865, + [SMALL_STATE(4106)] = 23873, + [SMALL_STATE(4107)] = 23881, + [SMALL_STATE(4108)] = 23889, + [SMALL_STATE(4109)] = 23897, + [SMALL_STATE(4110)] = 23905, + [SMALL_STATE(4111)] = 23913, + [SMALL_STATE(4112)] = 23921, + [SMALL_STATE(4113)] = 23929, + [SMALL_STATE(4114)] = 23937, + [SMALL_STATE(4115)] = 23945, + [SMALL_STATE(4116)] = 23953, + [SMALL_STATE(4117)] = 23961, + [SMALL_STATE(4118)] = 23969, + [SMALL_STATE(4119)] = 23977, + [SMALL_STATE(4120)] = 23985, + [SMALL_STATE(4121)] = 23993, + [SMALL_STATE(4122)] = 24001, + [SMALL_STATE(4123)] = 24009, + [SMALL_STATE(4124)] = 24017, + [SMALL_STATE(4125)] = 24025, + [SMALL_STATE(4126)] = 24033, + [SMALL_STATE(4127)] = 24041, + [SMALL_STATE(4128)] = 24049, + [SMALL_STATE(4129)] = 24057, + [SMALL_STATE(4130)] = 24065, + [SMALL_STATE(4131)] = 24073, + [SMALL_STATE(4132)] = 24081, + [SMALL_STATE(4133)] = 24089, + [SMALL_STATE(4134)] = 24097, + [SMALL_STATE(4135)] = 24105, + [SMALL_STATE(4136)] = 24113, + [SMALL_STATE(4137)] = 24121, + [SMALL_STATE(4138)] = 24129, + [SMALL_STATE(4139)] = 24137, + [SMALL_STATE(4140)] = 24145, + [SMALL_STATE(4141)] = 24153, + [SMALL_STATE(4142)] = 24161, + [SMALL_STATE(4143)] = 24169, + [SMALL_STATE(4144)] = 24177, + [SMALL_STATE(4145)] = 24185, + [SMALL_STATE(4146)] = 24193, + [SMALL_STATE(4147)] = 24201, + [SMALL_STATE(4148)] = 24209, + [SMALL_STATE(4149)] = 24217, + [SMALL_STATE(4150)] = 24225, + [SMALL_STATE(4151)] = 24233, + [SMALL_STATE(4152)] = 24241, + [SMALL_STATE(4153)] = 24249, + [SMALL_STATE(4154)] = 24257, + [SMALL_STATE(4155)] = 24265, + [SMALL_STATE(4156)] = 24273, + [SMALL_STATE(4157)] = 24281, + [SMALL_STATE(4158)] = 24289, + [SMALL_STATE(4159)] = 24297, + [SMALL_STATE(4160)] = 24305, + [SMALL_STATE(4161)] = 24313, + [SMALL_STATE(4162)] = 24321, + [SMALL_STATE(4163)] = 24329, + [SMALL_STATE(4164)] = 24337, + [SMALL_STATE(4165)] = 24345, + [SMALL_STATE(4166)] = 24353, + [SMALL_STATE(4167)] = 24361, + [SMALL_STATE(4168)] = 24369, + [SMALL_STATE(4169)] = 24377, + [SMALL_STATE(4170)] = 24385, + [SMALL_STATE(4171)] = 24393, + [SMALL_STATE(4172)] = 24401, + [SMALL_STATE(4173)] = 24409, + [SMALL_STATE(4174)] = 24417, + [SMALL_STATE(4175)] = 24425, + [SMALL_STATE(4176)] = 24433, + [SMALL_STATE(4177)] = 24441, + [SMALL_STATE(4178)] = 24449, + [SMALL_STATE(4179)] = 24457, + [SMALL_STATE(4180)] = 24465, + [SMALL_STATE(4181)] = 24473, + [SMALL_STATE(4182)] = 24481, + [SMALL_STATE(4183)] = 24489, + [SMALL_STATE(4184)] = 24497, + [SMALL_STATE(4185)] = 24505, + [SMALL_STATE(4186)] = 24513, + [SMALL_STATE(4187)] = 24521, + [SMALL_STATE(4188)] = 24529, + [SMALL_STATE(4189)] = 24537, + [SMALL_STATE(4190)] = 24545, + [SMALL_STATE(4191)] = 24553, + [SMALL_STATE(4192)] = 24561, + [SMALL_STATE(4193)] = 24569, + [SMALL_STATE(4194)] = 24577, + [SMALL_STATE(4195)] = 24585, + [SMALL_STATE(4196)] = 24593, + [SMALL_STATE(4197)] = 24601, + [SMALL_STATE(4198)] = 24609, + [SMALL_STATE(4199)] = 24617, + [SMALL_STATE(4200)] = 24625, + [SMALL_STATE(4201)] = 24633, + [SMALL_STATE(4202)] = 24641, + [SMALL_STATE(4203)] = 24649, + [SMALL_STATE(4204)] = 24657, + [SMALL_STATE(4205)] = 24665, + [SMALL_STATE(4206)] = 24673, + [SMALL_STATE(4207)] = 24681, + [SMALL_STATE(4208)] = 24689, + [SMALL_STATE(4209)] = 24697, + [SMALL_STATE(4210)] = 24705, + [SMALL_STATE(4211)] = 24713, + [SMALL_STATE(4212)] = 24721, + [SMALL_STATE(4213)] = 24729, + [SMALL_STATE(4214)] = 24737, + [SMALL_STATE(4215)] = 24745, + [SMALL_STATE(4216)] = 24753, + [SMALL_STATE(4217)] = 24761, + [SMALL_STATE(4218)] = 24769, + [SMALL_STATE(4219)] = 24777, + [SMALL_STATE(4220)] = 24785, + [SMALL_STATE(4221)] = 24793, + [SMALL_STATE(4222)] = 24801, + [SMALL_STATE(4223)] = 24809, + [SMALL_STATE(4224)] = 24817, + [SMALL_STATE(4225)] = 24825, + [SMALL_STATE(4226)] = 24833, + [SMALL_STATE(4227)] = 24841, + [SMALL_STATE(4228)] = 24849, + [SMALL_STATE(4229)] = 24857, + [SMALL_STATE(4230)] = 24865, + [SMALL_STATE(4231)] = 24873, + [SMALL_STATE(4232)] = 24881, + [SMALL_STATE(4233)] = 24889, + [SMALL_STATE(4234)] = 24897, + [SMALL_STATE(4235)] = 24905, + [SMALL_STATE(4236)] = 24913, + [SMALL_STATE(4237)] = 24921, + [SMALL_STATE(4238)] = 24929, + [SMALL_STATE(4239)] = 24937, + [SMALL_STATE(4240)] = 24945, + [SMALL_STATE(4241)] = 24953, + [SMALL_STATE(4242)] = 24961, + [SMALL_STATE(4243)] = 24969, + [SMALL_STATE(4244)] = 24977, + [SMALL_STATE(4245)] = 24985, + [SMALL_STATE(4246)] = 24993, + [SMALL_STATE(4247)] = 25001, + [SMALL_STATE(4248)] = 25009, + [SMALL_STATE(4249)] = 25017, + [SMALL_STATE(4250)] = 25025, + [SMALL_STATE(4251)] = 25033, + [SMALL_STATE(4252)] = 25041, + [SMALL_STATE(4253)] = 25049, + [SMALL_STATE(4254)] = 25057, + [SMALL_STATE(4255)] = 25065, + [SMALL_STATE(4256)] = 25073, + [SMALL_STATE(4257)] = 25081, + [SMALL_STATE(4258)] = 25089, + [SMALL_STATE(4259)] = 25097, + [SMALL_STATE(4260)] = 25105, + [SMALL_STATE(4261)] = 25113, + [SMALL_STATE(4262)] = 25121, + [SMALL_STATE(4263)] = 25129, + [SMALL_STATE(4264)] = 25137, + [SMALL_STATE(4265)] = 25145, + [SMALL_STATE(4266)] = 25153, + [SMALL_STATE(4267)] = 25161, + [SMALL_STATE(4268)] = 25169, + [SMALL_STATE(4269)] = 25177, + [SMALL_STATE(4270)] = 25185, + [SMALL_STATE(4271)] = 25193, + [SMALL_STATE(4272)] = 25201, + [SMALL_STATE(4273)] = 25209, + [SMALL_STATE(4274)] = 25217, + [SMALL_STATE(4275)] = 25225, + [SMALL_STATE(4276)] = 25233, + [SMALL_STATE(4277)] = 25241, + [SMALL_STATE(4278)] = 25249, + [SMALL_STATE(4279)] = 25257, + [SMALL_STATE(4280)] = 25265, + [SMALL_STATE(4281)] = 25273, + [SMALL_STATE(4282)] = 25281, + [SMALL_STATE(4283)] = 25289, + [SMALL_STATE(4284)] = 25297, + [SMALL_STATE(4285)] = 25305, + [SMALL_STATE(4286)] = 25313, + [SMALL_STATE(4287)] = 25321, + [SMALL_STATE(4288)] = 25329, + [SMALL_STATE(4289)] = 25337, + [SMALL_STATE(4290)] = 25345, + [SMALL_STATE(4291)] = 25353, + [SMALL_STATE(4292)] = 25361, + [SMALL_STATE(4293)] = 25369, + [SMALL_STATE(4294)] = 25377, + [SMALL_STATE(4295)] = 25385, + [SMALL_STATE(4296)] = 25393, + [SMALL_STATE(4297)] = 25401, + [SMALL_STATE(4298)] = 25409, + [SMALL_STATE(4299)] = 25417, + [SMALL_STATE(4300)] = 25425, + [SMALL_STATE(4301)] = 25433, + [SMALL_STATE(4302)] = 25441, + [SMALL_STATE(4303)] = 25449, + [SMALL_STATE(4304)] = 25457, + [SMALL_STATE(4305)] = 25465, + [SMALL_STATE(4306)] = 25473, + [SMALL_STATE(4307)] = 25481, + [SMALL_STATE(4308)] = 25489, + [SMALL_STATE(4309)] = 25497, + [SMALL_STATE(4310)] = 25505, + [SMALL_STATE(4311)] = 25513, + [SMALL_STATE(4312)] = 25521, + [SMALL_STATE(4313)] = 25529, + [SMALL_STATE(4314)] = 25537, + [SMALL_STATE(4315)] = 25545, + [SMALL_STATE(4316)] = 25553, + [SMALL_STATE(4317)] = 25561, + [SMALL_STATE(4318)] = 25569, + [SMALL_STATE(4319)] = 25577, + [SMALL_STATE(4320)] = 25585, + [SMALL_STATE(4321)] = 25593, + [SMALL_STATE(4322)] = 25601, + [SMALL_STATE(4323)] = 25609, + [SMALL_STATE(4324)] = 25617, + [SMALL_STATE(4325)] = 25625, + [SMALL_STATE(4326)] = 25633, + [SMALL_STATE(4327)] = 25641, + [SMALL_STATE(4328)] = 25649, + [SMALL_STATE(4329)] = 25657, + [SMALL_STATE(4330)] = 25665, + [SMALL_STATE(4331)] = 25673, + [SMALL_STATE(4332)] = 25681, + [SMALL_STATE(4333)] = 25689, + [SMALL_STATE(4334)] = 25697, + [SMALL_STATE(4335)] = 25705, + [SMALL_STATE(4336)] = 25713, + [SMALL_STATE(4337)] = 25721, + [SMALL_STATE(4338)] = 25729, + [SMALL_STATE(4339)] = 25737, + [SMALL_STATE(4340)] = 25745, + [SMALL_STATE(4341)] = 25753, + [SMALL_STATE(4342)] = 25761, + [SMALL_STATE(4343)] = 25769, + [SMALL_STATE(4344)] = 25777, + [SMALL_STATE(4345)] = 25785, + [SMALL_STATE(4346)] = 25793, + [SMALL_STATE(4347)] = 25801, + [SMALL_STATE(4348)] = 25809, + [SMALL_STATE(4349)] = 25817, + [SMALL_STATE(4350)] = 25825, + [SMALL_STATE(4351)] = 25833, + [SMALL_STATE(4352)] = 25841, + [SMALL_STATE(4353)] = 25849, + [SMALL_STATE(4354)] = 25857, + [SMALL_STATE(4355)] = 25865, + [SMALL_STATE(4356)] = 25873, + [SMALL_STATE(4357)] = 25881, + [SMALL_STATE(4358)] = 25889, + [SMALL_STATE(4359)] = 25897, + [SMALL_STATE(4360)] = 25905, + [SMALL_STATE(4361)] = 25913, + [SMALL_STATE(4362)] = 25921, + [SMALL_STATE(4363)] = 25929, + [SMALL_STATE(4364)] = 25937, + [SMALL_STATE(4365)] = 25945, + [SMALL_STATE(4366)] = 25953, + [SMALL_STATE(4367)] = 25961, + [SMALL_STATE(4368)] = 25969, + [SMALL_STATE(4369)] = 25977, + [SMALL_STATE(4370)] = 25985, + [SMALL_STATE(4371)] = 25993, + [SMALL_STATE(4372)] = 26001, + [SMALL_STATE(4373)] = 26009, + [SMALL_STATE(4374)] = 26017, + [SMALL_STATE(4375)] = 26025, + [SMALL_STATE(4376)] = 26033, + [SMALL_STATE(4377)] = 26041, + [SMALL_STATE(4378)] = 26049, + [SMALL_STATE(4379)] = 26057, + [SMALL_STATE(4380)] = 26065, + [SMALL_STATE(4381)] = 26073, + [SMALL_STATE(4382)] = 26081, + [SMALL_STATE(4383)] = 26089, + [SMALL_STATE(4384)] = 26097, + [SMALL_STATE(4385)] = 26105, + [SMALL_STATE(4386)] = 26113, + [SMALL_STATE(4387)] = 26121, + [SMALL_STATE(4388)] = 26129, + [SMALL_STATE(4389)] = 26137, + [SMALL_STATE(4390)] = 26145, + [SMALL_STATE(4391)] = 26153, + [SMALL_STATE(4392)] = 26161, + [SMALL_STATE(4393)] = 26169, + [SMALL_STATE(4394)] = 26177, + [SMALL_STATE(4395)] = 26185, + [SMALL_STATE(4396)] = 26193, + [SMALL_STATE(4397)] = 26201, + [SMALL_STATE(4398)] = 26209, + [SMALL_STATE(4399)] = 26217, + [SMALL_STATE(4400)] = 26225, + [SMALL_STATE(4401)] = 26233, + [SMALL_STATE(4402)] = 26241, + [SMALL_STATE(4403)] = 26249, + [SMALL_STATE(4404)] = 26257, + [SMALL_STATE(4405)] = 26265, + [SMALL_STATE(4406)] = 26273, + [SMALL_STATE(4407)] = 26281, + [SMALL_STATE(4408)] = 26289, + [SMALL_STATE(4409)] = 26297, + [SMALL_STATE(4410)] = 26305, + [SMALL_STATE(4411)] = 26313, + [SMALL_STATE(4412)] = 26321, + [SMALL_STATE(4413)] = 26329, + [SMALL_STATE(4414)] = 26337, + [SMALL_STATE(4415)] = 26345, + [SMALL_STATE(4416)] = 26353, + [SMALL_STATE(4417)] = 26361, + [SMALL_STATE(4418)] = 26369, + [SMALL_STATE(4419)] = 26377, + [SMALL_STATE(4420)] = 26385, + [SMALL_STATE(4421)] = 26393, + [SMALL_STATE(4422)] = 26401, + [SMALL_STATE(4423)] = 26409, + [SMALL_STATE(4424)] = 26417, + [SMALL_STATE(4425)] = 26425, + [SMALL_STATE(4426)] = 26433, + [SMALL_STATE(4427)] = 26441, + [SMALL_STATE(4428)] = 26449, + [SMALL_STATE(4429)] = 26457, + [SMALL_STATE(4430)] = 26465, + [SMALL_STATE(4431)] = 26473, + [SMALL_STATE(4432)] = 26481, + [SMALL_STATE(4433)] = 26489, + [SMALL_STATE(4434)] = 26497, + [SMALL_STATE(4435)] = 26505, + [SMALL_STATE(4436)] = 26513, + [SMALL_STATE(4437)] = 26521, + [SMALL_STATE(4438)] = 26529, + [SMALL_STATE(4439)] = 26537, + [SMALL_STATE(4440)] = 26545, + [SMALL_STATE(4441)] = 26553, + [SMALL_STATE(4442)] = 26561, + [SMALL_STATE(4443)] = 26569, + [SMALL_STATE(4444)] = 26577, + [SMALL_STATE(4445)] = 26585, + [SMALL_STATE(4446)] = 26593, + [SMALL_STATE(4447)] = 26601, + [SMALL_STATE(4448)] = 26609, + [SMALL_STATE(4449)] = 26617, + [SMALL_STATE(4450)] = 26625, + [SMALL_STATE(4451)] = 26633, + [SMALL_STATE(4452)] = 26641, + [SMALL_STATE(4453)] = 26649, + [SMALL_STATE(4454)] = 26657, + [SMALL_STATE(4455)] = 26665, + [SMALL_STATE(4456)] = 26673, + [SMALL_STATE(4457)] = 26681, + [SMALL_STATE(4458)] = 26689, + [SMALL_STATE(4459)] = 26697, + [SMALL_STATE(4460)] = 26705, + [SMALL_STATE(4461)] = 26713, + [SMALL_STATE(4462)] = 26721, + [SMALL_STATE(4463)] = 26729, + [SMALL_STATE(4464)] = 26737, + [SMALL_STATE(4465)] = 26745, + [SMALL_STATE(4466)] = 26753, + [SMALL_STATE(4467)] = 26761, + [SMALL_STATE(4468)] = 26769, + [SMALL_STATE(4469)] = 26777, + [SMALL_STATE(4470)] = 26785, + [SMALL_STATE(4471)] = 26793, + [SMALL_STATE(4472)] = 26801, + [SMALL_STATE(4473)] = 26809, }; static TSParseActionEntry ts_parse_actions[] = { @@ -168741,6865 +517917,7201 @@ static TSParseActionEntry ts_parse_actions[] = { [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 2, .production_id = 5), - [103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 2, .production_id = 5), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 2, .production_id = 5), - [109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 2, .production_id = 5), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 3, .production_id = 10), - [115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 3, .production_id = 10), - [117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 3, .production_id = 10), - [119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 3, .production_id = 10), - [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(472), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3022), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2916), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2984), - [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3123), - [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3072), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3271), - [144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3146), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(328), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(53), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(152), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(475), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(6), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(147), - [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(142), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(142), - [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3702), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2005), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2201), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2187), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2264), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3490), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3448), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2234), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3452), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2235), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2354), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2321), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3547), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3548), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3551), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3553), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3554), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3555), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3558), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3323), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3561), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3583), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2337), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2338), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2340), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3590), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3594), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3595), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3314), - [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3802), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3659), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 2, .production_id = 3), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 2, .production_id = 3), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(472), - [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2916), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2984), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3123), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3072), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3271), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3146), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(328), - [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(53), - [683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(152), - [686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(475), - [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(92), - [692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(147), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(142), - [698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(142), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3702), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2005), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2201), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2187), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2264), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3490), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3448), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2234), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3452), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2235), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2354), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2321), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3547), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3548), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3551), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3553), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3554), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3555), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3558), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3323), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3561), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3583), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2337), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2338), - [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2340), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3590), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3594), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3595), - [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3314), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3802), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3659), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 3, .production_id = 9), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 3, .production_id = 9), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(490), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2880), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2881), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2882), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2884), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2901), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2905), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2906), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(397), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(58), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(135), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(617), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(120), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(136), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(137), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(137), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2020), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2231), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2229), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2227), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3444), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3445), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2225), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3446), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2222), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2218), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2216), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3450), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4441), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4023), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3451), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4024), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4025), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4254), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2875), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4256), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4375), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2068), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2041), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2067), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4257), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4028), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4442), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3436), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3453), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3454), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 3, .production_id = 9), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 3, .production_id = 9), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(493), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3387), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3386), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3385), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3384), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3383), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3382), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3381), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(406), - [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(71), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(201), - [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(614), - [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(157), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(205), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(208), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(208), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2025), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2200), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2199), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2198), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3549), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3550), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2197), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3552), - [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2196), - [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2195), - [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2194), - [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3556), - [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4447), - [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4065), - [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3557), - [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4066), - [1230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4067), - [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4276), - [1236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2873), - [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4278), - [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4387), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2064), - [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2038), - [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2062), - [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4279), - [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4070), - [1260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4448), - [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3322), - [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3559), - [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3560), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), - [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(472), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2984), - [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3123), - [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3072), - [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3271), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3146), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(328), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(53), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(152), - [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(475), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(207), - [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(147), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(142), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(142), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3702), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2005), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2201), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2187), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2264), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3490), - [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3448), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2234), - [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3452), - [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2235), - [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2354), - [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2321), - [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3547), - [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3548), - [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3551), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3553), - [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3554), - [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3555), - [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3558), - [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3323), - [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3561), - [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3583), - [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2337), - [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2338), - [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2340), - [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3590), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3594), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3595), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3314), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3802), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3659), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(480), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3252), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3257), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3260), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3264), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3286), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3288), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3289), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(400), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(64), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(163), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(625), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(211), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(165), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(167), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(167), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2023), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2211), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2208), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2207), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3496), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3497), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2206), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3499), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2205), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2204), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2203), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3503), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4444), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4044), - [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3504), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4045), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4046), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4265), - [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2874), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4267), - [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4381), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2066), - [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2039), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2065), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4268), - [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4049), - [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4445), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3393), - [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3506), - [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3507), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 2, .production_id = 3), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 2, .production_id = 3), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 9), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 9), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, .production_id = 3), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, .production_id = 3), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(472), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), - [1890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3123), - [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3072), - [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3271), - [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3146), - [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(328), - [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(53), - [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(152), - [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(475), - [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(251), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(147), - [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(142), - [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(142), - [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3702), - [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2005), - [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2201), - [1935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2187), - [1938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2264), - [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3490), - [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3448), - [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2234), - [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3452), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2235), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2354), - [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2321), - [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3547), - [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3548), - [1968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3551), - [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3553), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3554), - [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3555), - [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3558), - [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3323), - [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3561), - [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3583), - [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2337), - [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2338), - [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2340), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3590), - [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3594), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3595), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3314), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3802), - [2016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3659), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), - [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(472), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3072), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3271), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3146), - [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(328), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(53), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(152), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(475), - [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(252), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(147), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(142), - [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(142), - [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3702), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2005), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2201), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2187), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2264), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3490), - [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3448), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2234), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3452), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2235), - [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2354), - [2092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2321), - [2095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3547), - [2098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3548), - [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3551), - [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3553), - [2107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3554), - [2110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3555), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3558), - [2116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3323), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3561), - [2122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3583), - [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2337), - [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2338), - [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2340), - [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3590), - [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3594), - [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3595), - [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3314), - [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3802), - [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3659), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 2, .production_id = 3), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 2, .production_id = 3), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 3, .production_id = 9), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 3, .production_id = 9), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(485), - [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3108), - [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3107), - [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3105), - [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3103), - [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3101), - [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3061), - [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(390), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(85), - [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(227), - [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(619), - [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(259), - [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(192), - [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(191), - [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(191), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2016), - [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2177), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2176), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2175), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3655), - [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3656), - [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2174), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3658), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2173), - [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2172), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2171), - [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3662), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4453), - [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4107), - [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3663), - [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4108), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4109), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4298), - [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2863), - [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4300), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4399), - [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2057), - [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2035), - [2374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2055), - [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4301), - [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4112), - [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4454), - [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3246), - [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3665), - [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3666), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(493), - [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3386), - [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3385), - [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3384), - [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3383), - [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3382), - [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3381), - [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(406), - [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(71), - [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(201), - [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(614), - [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(262), - [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(205), - [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(208), - [2441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(208), - [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2025), - [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2200), - [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2199), - [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2198), - [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3549), - [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3550), - [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2197), - [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3552), - [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2196), - [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2195), - [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2194), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3556), - [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4447), - [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4065), - [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3557), - [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4066), - [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4067), - [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4276), - [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2873), - [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4278), - [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4387), - [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2064), - [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2038), - [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2062), - [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4279), - [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4070), - [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4448), - [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3322), - [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3559), - [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3560), - [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(490), - [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2881), - [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2882), - [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2884), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2901), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2905), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2906), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(397), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(58), - [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(135), - [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(617), - [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(263), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(136), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(137), - [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(137), - [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2020), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2231), - [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2229), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2227), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3444), - [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3445), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2225), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3446), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2222), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2218), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2216), - [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3450), - [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4441), - [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4023), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3451), - [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4024), - [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4025), - [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4254), - [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2875), - [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4256), - [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4375), - [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2068), - [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2041), - [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2067), - [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4257), - [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4028), - [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4442), - [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3436), - [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3453), - [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3454), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(480), - [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3257), - [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3260), - [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3264), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3286), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3288), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3289), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(400), - [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(64), - [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(163), - [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(625), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(265), - [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(165), - [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(167), - [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(167), - [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2023), - [2721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2211), - [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2208), - [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2207), - [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3496), - [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3497), - [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2206), - [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3499), - [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2205), - [2745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2204), - [2748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2203), - [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3503), - [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4444), - [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4044), - [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3504), - [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4045), - [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4046), - [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4265), - [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2874), - [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4267), - [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4381), - [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2066), - [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2039), - [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2065), - [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4268), - [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4049), - [2796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4445), - [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3393), - [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3506), - [2805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3507), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 3, .production_id = 9), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 3, .production_id = 9), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(485), - [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3107), - [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3105), - [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3103), - [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3101), - [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3061), - [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(390), - [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(85), - [2864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(227), - [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(619), - [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(269), - [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(192), - [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(191), - [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(191), - [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2016), - [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2177), - [2888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2176), - [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2175), - [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3655), - [2897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3656), - [2900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2174), - [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3658), - [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2173), - [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2172), - [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2171), - [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3662), - [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4453), - [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4107), - [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3663), - [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4108), - [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4109), - [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4298), - [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2863), - [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4300), - [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4399), - [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2057), - [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2035), - [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2055), - [2954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4301), - [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4112), - [2960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4454), - [2963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3246), - [2966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3665), - [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3666), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(493), - [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3385), - [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3384), - [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3383), - [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3382), - [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3381), - [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(406), - [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(71), - [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(201), - [3005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(614), - [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(273), - [3011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(205), - [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(208), - [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(208), - [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2025), - [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2200), - [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2199), - [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2198), - [3032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3549), - [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3550), - [3038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2197), - [3041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3552), - [3044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2196), - [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2195), - [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2194), - [3053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3556), - [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4447), - [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4065), - [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3557), - [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4066), - [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4067), - [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4276), - [3074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2873), - [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4278), - [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4387), - [3083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2064), - [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2038), - [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2062), - [3092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4279), - [3095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4070), - [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4448), - [3101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3322), - [3104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3559), - [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3560), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), - [3114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(472), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), - [3119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3271), - [3122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3146), - [3125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(328), - [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(53), - [3131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(152), - [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(475), - [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(275), - [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(147), - [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(142), - [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(142), - [3149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3702), - [3152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2005), - [3155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2201), - [3158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2187), - [3161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2264), - [3164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3490), - [3167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3448), - [3170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2234), - [3173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3452), - [3176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2235), - [3179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2354), - [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2321), - [3185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3547), - [3188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3548), - [3191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3551), - [3194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3553), - [3197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3554), - [3200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3555), - [3203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3558), - [3206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3323), - [3209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3561), - [3212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3583), - [3215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2337), - [3218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2338), - [3221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2340), - [3224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3590), - [3227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3594), - [3230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3595), - [3233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3314), - [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3802), - [3239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3659), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(480), - [3249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3260), - [3252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3264), - [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3286), - [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3288), - [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3289), - [3264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(400), - [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(64), - [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(163), - [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(625), - [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(278), - [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(165), - [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(167), - [3285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(167), - [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2023), - [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2211), - [3294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2208), - [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2207), - [3300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3496), - [3303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3497), - [3306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2206), - [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3499), - [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2205), - [3315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2204), - [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2203), - [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3503), - [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4444), - [3327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4044), - [3330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3504), - [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4045), - [3336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4046), - [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4265), - [3342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2874), - [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4267), - [3348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4381), - [3351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2066), - [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2039), - [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2065), - [3360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4268), - [3363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4049), - [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4445), - [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3393), - [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3506), - [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3507), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 2, .production_id = 3), - [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 2, .production_id = 3), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(490), - [3389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2882), - [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2884), - [3395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2901), - [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2905), - [3401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2906), - [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(397), - [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(58), - [3410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(135), - [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(617), - [3416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(281), - [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(136), - [3422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(137), - [3425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(137), - [3428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2020), - [3431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2231), - [3434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2229), - [3437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2227), - [3440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3444), - [3443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3445), - [3446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2225), - [3449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3446), - [3452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2222), - [3455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2218), - [3458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2216), - [3461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3450), - [3464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4441), - [3467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4023), - [3470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3451), - [3473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4024), - [3476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4025), - [3479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4254), - [3482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2875), - [3485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4256), - [3488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4375), - [3491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2068), - [3494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2041), - [3497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2067), - [3500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4257), - [3503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4028), - [3506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4442), - [3509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3436), - [3512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3453), - [3515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3454), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(485), - [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3105), - [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3103), - [3531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3101), - [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3061), - [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(390), - [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(85), - [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(227), - [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(619), - [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(284), - [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(192), - [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(191), - [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(191), - [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2016), - [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2177), - [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2176), - [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2175), - [3573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3655), - [3576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3656), - [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2174), - [3582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3658), - [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2173), - [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2172), - [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2171), - [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3662), - [3597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4453), - [3600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4107), - [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3663), - [3606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4108), - [3609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4109), - [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4298), - [3615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2863), - [3618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4300), - [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4399), - [3624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2057), - [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2035), - [3630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2055), - [3633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4301), - [3636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4112), - [3639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4454), - [3642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3246), - [3645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3665), - [3648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3666), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(480), - [3658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3264), - [3661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3286), - [3664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3288), - [3667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3289), - [3670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(400), - [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(64), - [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(163), - [3679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(625), - [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(287), - [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(165), - [3688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(167), - [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(167), - [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2023), - [3697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2211), - [3700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2208), - [3703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2207), - [3706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3496), - [3709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3497), - [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2206), - [3715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3499), - [3718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2205), - [3721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2204), - [3724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2203), - [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3503), - [3730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4444), - [3733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4044), - [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3504), - [3739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4045), - [3742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4046), - [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4265), - [3748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2874), - [3751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4267), - [3754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4381), - [3757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2066), - [3760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2039), - [3763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2065), - [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4268), - [3769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4049), - [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4445), - [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3393), - [3778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3506), - [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3507), - [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, .production_id = 3), - [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2, .production_id = 3), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 3, .production_id = 9), - [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 3, .production_id = 9), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [3884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), - [3886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(472), - [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), - [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3146), - [3894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(328), - [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(53), - [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(152), - [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(475), - [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(291), - [3909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(147), - [3912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(142), - [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(142), - [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3702), - [3921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2005), - [3924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2201), - [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2187), - [3930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2264), - [3933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3490), - [3936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3448), - [3939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2234), - [3942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3452), - [3945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2235), - [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2354), - [3951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2321), - [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3547), - [3957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3548), - [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3551), - [3963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3553), - [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3554), - [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3555), - [3972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3558), - [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3323), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3561), - [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3583), - [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2337), - [3987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2338), - [3990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2340), - [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3590), - [3996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3594), - [3999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3595), - [4002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3314), - [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3802), - [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3659), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(493), - [4018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3384), - [4021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3383), - [4024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3382), - [4027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3381), - [4030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(406), - [4033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(71), - [4036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(201), - [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(614), - [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(294), - [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(205), - [4048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(208), - [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(208), - [4054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2025), - [4057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2200), - [4060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2199), - [4063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2198), - [4066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3549), - [4069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3550), - [4072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2197), - [4075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3552), - [4078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2196), - [4081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2195), - [4084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2194), - [4087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3556), - [4090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4447), - [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4065), - [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3557), - [4099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4066), - [4102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4067), - [4105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4276), - [4108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2873), - [4111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4278), - [4114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4387), - [4117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2064), - [4120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2038), - [4123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2062), - [4126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4279), - [4129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4070), - [4132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4448), - [4135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3322), - [4138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3559), - [4141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3560), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(497), - [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2930), - [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2927), - [4155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2924), - [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2919), - [4161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2918), - [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(422), - [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(93), - [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(237), - [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(645), - [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(296), - [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(173), - [4182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(171), - [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(171), - [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2012), - [4191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2169), - [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2167), - [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2166), - [4200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3708), - [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3709), - [4206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2164), - [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3711), - [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2163), - [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2161), - [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2160), - [4221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3715), - [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4456), - [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4128), - [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3716), - [4233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4129), - [4236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4130), - [4239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4309), - [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2862), - [4245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4311), - [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4405), - [4251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2054), - [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2034), - [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2053), - [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4312), - [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4133), - [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4457), - [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3178), - [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3718), - [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3719), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(490), - [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2884), - [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2901), - [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2905), - [4296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2906), - [4299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(397), - [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(58), - [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(135), - [4308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(617), - [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(300), - [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(136), - [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(137), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(137), - [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2020), - [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2231), - [4329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2229), - [4332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2227), - [4335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3444), - [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3445), - [4341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2225), - [4344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3446), - [4347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2222), - [4350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2218), - [4353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2216), - [4356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3450), - [4359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4441), - [4362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4023), - [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3451), - [4368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4024), - [4371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4025), - [4374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4254), - [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2875), - [4380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4256), - [4383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4375), - [4386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2068), - [4389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2041), - [4392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2067), - [4395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4257), - [4398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4028), - [4401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4442), - [4404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3436), - [4407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3453), - [4410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3454), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(493), - [4418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3383), - [4421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3382), - [4424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3381), - [4427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(406), - [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(71), - [4433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(201), - [4436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(614), - [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(302), - [4442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(205), - [4445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(208), - [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(208), - [4451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2025), - [4454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2200), - [4457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2199), - [4460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2198), - [4463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3549), - [4466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3550), - [4469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2197), - [4472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3552), - [4475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2196), - [4478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2195), - [4481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2194), - [4484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3556), - [4487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4447), - [4490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4065), - [4493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3557), - [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4066), - [4499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4067), - [4502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4276), - [4505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2873), - [4508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4278), - [4511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4387), - [4514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2064), - [4517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2038), - [4520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2062), - [4523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4279), - [4526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4070), - [4529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4448), - [4532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3322), - [4535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3559), - [4538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3560), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 2, .production_id = 3), - [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 2, .production_id = 3), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(497), - [4550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2927), - [4553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2924), - [4556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2919), - [4559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2918), - [4562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(422), - [4565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(93), - [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(237), - [4571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(645), - [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(304), - [4577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(173), - [4580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(171), - [4583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(171), - [4586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2012), - [4589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2169), - [4592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2167), - [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2166), - [4598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3708), - [4601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3709), - [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2164), - [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3711), - [4610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2163), - [4613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2161), - [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2160), - [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3715), - [4622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4456), - [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4128), - [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3716), - [4631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4129), - [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4130), - [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4309), - [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2862), - [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4311), - [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4405), - [4649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2054), - [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2034), - [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2053), - [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4312), - [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4133), - [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4457), - [4667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3178), - [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3718), - [4673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3719), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(480), - [4681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3286), - [4684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3288), - [4687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3289), - [4690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(400), - [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(64), - [4696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(163), - [4699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(625), - [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(306), - [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(165), - [4708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(167), - [4711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(167), - [4714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2023), - [4717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2211), - [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2208), - [4723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2207), - [4726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3496), - [4729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3497), - [4732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2206), - [4735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3499), - [4738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2205), - [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2204), - [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2203), - [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3503), - [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4444), - [4753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4044), - [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3504), - [4759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4045), - [4762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4046), - [4765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4265), - [4768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2874), - [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4267), - [4774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4381), - [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2066), - [4780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2039), - [4783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2065), - [4786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4268), - [4789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4049), - [4792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4445), - [4795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3393), - [4798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3506), - [4801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3507), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 3, .production_id = 9), - [4808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 3, .production_id = 9), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(490), - [4815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2901), - [4818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2905), - [4821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2906), - [4824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(397), - [4827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(58), - [4830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(135), - [4833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(617), - [4836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(309), - [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(136), - [4842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(137), - [4845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(137), - [4848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2020), - [4851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2231), - [4854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2229), - [4857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2227), - [4860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3444), - [4863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3445), - [4866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2225), - [4869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3446), - [4872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2222), - [4875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2218), - [4878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2216), - [4881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3450), - [4884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4441), - [4887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4023), - [4890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3451), - [4893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4024), - [4896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4025), - [4899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4254), - [4902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2875), - [4905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4256), - [4908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4375), - [4911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2068), - [4914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2041), - [4917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2067), - [4920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4257), - [4923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4028), - [4926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4442), - [4929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3436), - [4932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3453), - [4935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3454), - [4938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(485), - [4941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3103), - [4944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3101), - [4947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3061), - [4950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(390), - [4953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(85), - [4956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(227), - [4959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(619), - [4962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(310), - [4965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(192), - [4968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(191), - [4971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(191), - [4974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2016), - [4977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2177), - [4980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2176), - [4983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2175), - [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3655), - [4989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3656), - [4992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2174), - [4995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3658), - [4998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2173), - [5001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2172), - [5004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2171), - [5007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3662), - [5010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4453), - [5013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4107), - [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3663), - [5019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4108), - [5022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4109), - [5025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4298), - [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2863), - [5031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4300), - [5034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4399), - [5037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2057), - [5040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2035), - [5043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2055), - [5046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4301), - [5049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4112), - [5052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4454), - [5055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3246), - [5058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3665), - [5061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3666), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), - [5066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(472), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), - [5071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(328), - [5074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(53), - [5077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(152), - [5080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(475), - [5083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(311), - [5086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(147), - [5089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(142), - [5092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(142), - [5095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3702), - [5098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2005), - [5101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2201), - [5104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2187), - [5107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2264), - [5110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3490), - [5113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3448), - [5116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2234), - [5119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3452), - [5122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2235), - [5125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2354), - [5128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2321), - [5131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3547), - [5134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3548), - [5137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3551), - [5140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3553), - [5143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3554), - [5146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3555), - [5149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3558), - [5152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3323), - [5155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3561), - [5158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3583), - [5161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2337), - [5164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2338), - [5167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2340), - [5170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3590), - [5173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3594), - [5176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3595), - [5179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3314), - [5182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3802), - [5185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3659), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 2, .production_id = 4), - [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 2, .production_id = 4), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 14), - [5210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 14), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(480), - [5219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3288), - [5222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3289), - [5225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(400), - [5228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(64), - [5231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(163), - [5234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(625), - [5237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(322), - [5240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(165), - [5243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(167), - [5246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(167), - [5249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2023), - [5252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2211), - [5255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2208), - [5258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2207), - [5261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3496), - [5264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3497), - [5267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2206), - [5270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3499), - [5273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2205), - [5276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2204), - [5279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2203), - [5282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3503), - [5285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4444), - [5288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4044), - [5291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3504), - [5294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4045), - [5297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4046), - [5300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4265), - [5303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2874), - [5306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4267), - [5309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4381), - [5312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2066), - [5315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2039), - [5318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2065), - [5321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4268), - [5324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4049), - [5327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4445), - [5330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3393), - [5333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3506), - [5336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3507), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(613), - [5344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2816), - [5347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2817), - [5350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2818), - [5353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2819), - [5356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(431), - [5359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(101), - [5362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(193), - [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(931), - [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(324), - [5371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(149), - [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(148), - [5377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(148), - [5380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2009), - [5383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2157), - [5386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2155), - [5389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2154), - [5392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3761), - [5395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3762), - [5398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2153), - [5401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3764), - [5404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2152), - [5407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2143), - [5410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2138), - [5413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3768), - [5416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4459), - [5419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4149), - [5422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3769), - [5425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4150), - [5428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4151), - [5431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4320), - [5434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2860), - [5437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4322), - [5440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4411), - [5443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2052), - [5446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2033), - [5449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2051), - [5452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4323), - [5455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4154), - [5458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4460), - [5461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3136), - [5464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3771), - [5467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3772), - [5470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(497), - [5473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2924), - [5476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2919), - [5479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2918), - [5482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(422), - [5485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(93), - [5488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(237), - [5491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(645), - [5494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(325), - [5497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(173), - [5500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(171), - [5503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(171), - [5506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2012), - [5509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2169), - [5512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2167), - [5515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2166), - [5518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3708), - [5521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3709), - [5524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2164), - [5527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3711), - [5530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2163), - [5533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2161), - [5536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2160), - [5539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3715), - [5542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4456), - [5545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4128), - [5548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3716), - [5551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4129), - [5554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4130), - [5557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4309), - [5560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2862), - [5563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4311), - [5566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4405), - [5569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2054), - [5572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2034), - [5575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2053), - [5578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4312), - [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4133), - [5584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4457), - [5587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3178), - [5590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3718), - [5593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3719), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 1, .production_id = 1), - [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 1, .production_id = 1), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), - [5610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(472), - [5613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), - [5615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(53), - [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(152), - [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(475), - [5624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(329), - [5627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(147), - [5630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(142), - [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(142), - [5636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3702), - [5639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2005), - [5642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2201), - [5645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2187), - [5648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2264), - [5651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3490), - [5654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3448), - [5657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2234), - [5660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3452), - [5663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2235), - [5666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2354), - [5669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2321), - [5672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3547), - [5675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3548), - [5678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3551), - [5681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3553), - [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3554), - [5687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3555), - [5690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3558), - [5693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3323), - [5696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3561), - [5699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3583), - [5702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2337), - [5705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2338), - [5708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2340), - [5711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3590), - [5714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3594), - [5717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3595), - [5720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3314), - [5723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3802), - [5726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3659), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 23), - [5733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 23), - [5735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(490), - [5738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2905), - [5741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2906), - [5744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(397), - [5747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(58), - [5750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(135), - [5753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(617), - [5756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(332), - [5759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(136), - [5762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(137), - [5765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(137), - [5768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2020), - [5771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2231), - [5774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2229), - [5777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2227), - [5780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3444), - [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3445), - [5786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2225), - [5789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3446), - [5792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2222), - [5795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2218), - [5798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2216), - [5801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3450), - [5804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4441), - [5807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4023), - [5810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3451), - [5813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4024), - [5816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4025), - [5819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4254), - [5822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2875), - [5825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4256), - [5828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4375), - [5831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2068), - [5834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2041), - [5837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2067), - [5840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4257), - [5843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4028), - [5846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4442), - [5849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3436), - [5852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3453), - [5855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3454), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(493), - [5959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3382), - [5962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3381), - [5965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(406), - [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(71), - [5971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(201), - [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(614), - [5977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(340), - [5980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(205), - [5983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(208), - [5986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(208), - [5989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2025), - [5992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2200), - [5995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2199), - [5998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2198), - [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3549), - [6004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3550), - [6007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2197), - [6010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3552), - [6013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2196), - [6016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2195), - [6019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2194), - [6022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3556), - [6025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4447), - [6028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4065), - [6031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3557), - [6034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4066), - [6037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4067), - [6040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4276), - [6043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2873), - [6046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4278), - [6049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4387), - [6052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2064), - [6055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2038), - [6058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2062), - [6061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4279), - [6064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4070), - [6067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4448), - [6070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3322), - [6073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3559), - [6076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3560), - [6079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(485), - [6082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3101), - [6085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3061), - [6088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(390), - [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(85), - [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(227), - [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(619), - [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(341), - [6103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(192), - [6106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(191), - [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(191), - [6112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2016), - [6115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2177), - [6118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2176), - [6121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2175), - [6124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3655), - [6127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3656), - [6130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2174), - [6133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3658), - [6136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2173), - [6139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2172), - [6142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2171), - [6145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3662), - [6148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4453), - [6151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4107), - [6154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3663), - [6157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4108), - [6160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4109), - [6163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4298), - [6166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2863), - [6169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4300), - [6172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4399), - [6175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2057), - [6178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2035), - [6181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2055), - [6184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4301), - [6187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4112), - [6190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4454), - [6193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3246), - [6196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3665), - [6199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3666), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [6206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(497), - [6209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2919), - [6212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2918), - [6215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(422), - [6218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(93), - [6221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(237), - [6224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(645), - [6227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(344), - [6230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(173), - [6233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(171), - [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(171), - [6239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2012), - [6242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2169), - [6245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2167), - [6248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2166), - [6251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3708), - [6254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3709), - [6257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2164), - [6260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3711), - [6263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2163), - [6266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2161), - [6269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2160), - [6272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3715), - [6275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4456), - [6278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4128), - [6281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3716), - [6284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4129), - [6287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4130), - [6290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4309), - [6293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2862), - [6296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4311), - [6299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4405), - [6302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2054), - [6305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2034), - [6308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2053), - [6311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4312), - [6314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4133), - [6317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4457), - [6320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3178), - [6323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3718), - [6326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3719), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(493), - [6334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3381), - [6337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(406), - [6340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(71), - [6343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(201), - [6346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(614), - [6349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(346), - [6352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(205), - [6355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(208), - [6358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(208), - [6361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2025), - [6364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2200), - [6367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2199), - [6370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2198), - [6373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3549), - [6376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3550), - [6379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2197), - [6382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3552), - [6385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2196), - [6388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2195), - [6391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2194), - [6394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3556), - [6397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4447), - [6400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4065), - [6403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3557), - [6406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4066), - [6409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4067), - [6412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4276), - [6415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2873), - [6418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4278), - [6421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4387), - [6424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2064), - [6427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2038), - [6430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2062), - [6433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4279), - [6436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4070), - [6439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4448), - [6442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3322), - [6445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3559), - [6448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3560), - [6451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(485), - [6454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3061), - [6457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(390), - [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(85), - [6463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(227), - [6466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(619), - [6469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(347), - [6472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(192), - [6475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(191), - [6478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(191), - [6481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2016), - [6484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2177), - [6487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2176), - [6490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2175), - [6493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3655), - [6496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3656), - [6499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2174), - [6502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3658), - [6505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2173), - [6508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2172), - [6511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2171), - [6514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3662), - [6517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4453), - [6520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4107), - [6523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3663), - [6526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4108), - [6529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4109), - [6532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4298), - [6535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2863), - [6538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4300), - [6541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4399), - [6544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2057), - [6547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2035), - [6550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2055), - [6553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4301), - [6556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4112), - [6559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4454), - [6562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3246), - [6565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3665), - [6568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3666), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [6581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(613), - [6584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2817), - [6587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2818), - [6590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2819), - [6593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(431), - [6596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(101), - [6599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(193), - [6602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(931), - [6605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(353), - [6608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(149), - [6611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(148), - [6614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(148), - [6617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2009), - [6620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2157), - [6623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2155), - [6626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2154), - [6629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3761), - [6632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3762), - [6635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2153), - [6638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3764), - [6641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2152), - [6644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2143), - [6647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2138), - [6650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3768), - [6653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4459), - [6656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4149), - [6659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3769), - [6662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4150), - [6665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4151), - [6668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4320), - [6671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2860), - [6674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4322), - [6677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4411), - [6680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2052), - [6683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2033), - [6686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2051), - [6689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4323), - [6692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4154), - [6695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4460), - [6698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3136), - [6701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3771), - [6704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3772), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(490), - [6716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2906), - [6719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(397), - [6722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(58), - [6725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(135), - [6728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(617), - [6731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(357), - [6734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(136), - [6737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(137), - [6740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(137), - [6743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2020), - [6746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2231), - [6749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2229), - [6752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2227), - [6755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3444), - [6758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3445), - [6761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2225), - [6764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3446), - [6767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2222), - [6770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2218), - [6773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2216), - [6776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3450), - [6779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4441), - [6782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4023), - [6785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3451), - [6788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4024), - [6791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4025), - [6794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4254), - [6797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2875), - [6800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4256), - [6803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4375), - [6806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2068), - [6809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2041), - [6812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2067), - [6815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4257), - [6818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4028), - [6821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4442), - [6824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3436), - [6827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3453), - [6830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3454), - [6833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(480), - [6836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3289), - [6839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(400), - [6842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(64), - [6845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(163), - [6848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(625), - [6851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(358), - [6854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(165), - [6857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(167), - [6860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(167), - [6863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2023), - [6866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2211), - [6869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2208), - [6872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2207), - [6875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3496), - [6878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3497), - [6881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2206), - [6884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3499), - [6887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2205), - [6890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2204), - [6893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2203), - [6896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3503), - [6899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4444), - [6902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4044), - [6905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3504), - [6908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4045), - [6911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4046), - [6914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4265), - [6917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2874), - [6920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4267), - [6923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4381), - [6926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2066), - [6929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2039), - [6932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2065), - [6935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4268), - [6938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4049), - [6941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4445), - [6944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3393), - [6947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3506), - [6950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3507), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [6961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(490), - [6964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(397), - [6967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(58), - [6970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(135), - [6973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(617), - [6976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(363), - [6979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(136), - [6982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(137), - [6985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(137), - [6988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2020), - [6991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2231), - [6994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2229), - [6997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2227), - [7000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3444), - [7003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3445), - [7006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2225), - [7009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3446), - [7012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2222), - [7015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2218), - [7018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2216), - [7021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3450), - [7024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4441), - [7027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4023), - [7030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3451), - [7033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4024), - [7036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4025), - [7039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4254), - [7042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2875), - [7045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4256), - [7048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4375), - [7051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2068), - [7054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2041), - [7057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2067), - [7060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4257), - [7063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4028), - [7066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4442), - [7069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3436), - [7072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3453), - [7075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3454), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), - [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [7148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [7164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(480), - [7167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(400), - [7170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(64), - [7173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(163), - [7176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(625), - [7179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(366), - [7182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(165), - [7185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(167), - [7188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(167), - [7191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2023), - [7194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2211), - [7197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2208), - [7200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2207), - [7203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3496), - [7206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3497), - [7209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2206), - [7212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3499), - [7215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2205), - [7218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2204), - [7221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2203), - [7224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3503), - [7227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4444), - [7230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4044), - [7233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3504), - [7236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4045), - [7239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4046), - [7242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4265), - [7245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2874), - [7248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4267), - [7251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4381), - [7254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2066), - [7257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2039), - [7260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2065), - [7263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4268), - [7266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4049), - [7269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4445), - [7272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3393), - [7275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3506), - [7278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3507), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [7283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(497), - [7286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2918), - [7289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(422), - [7292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(93), - [7295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(237), - [7298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(645), - [7301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(368), - [7304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(173), - [7307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(171), - [7310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(171), - [7313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2012), - [7316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2169), - [7319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2167), - [7322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2166), - [7325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3708), - [7328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3709), - [7331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2164), - [7334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3711), - [7337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2163), - [7340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2161), - [7343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2160), - [7346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3715), - [7349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4456), - [7352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4128), - [7355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3716), - [7358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4129), - [7361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4130), - [7364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4309), - [7367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2862), - [7370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4311), - [7373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4405), - [7376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2054), - [7379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2034), - [7382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2053), - [7385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4312), - [7388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4133), - [7391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4457), - [7394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3178), - [7397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3718), - [7400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3719), - [7403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(640), - [7406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2942), - [7409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2943), - [7412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2944), - [7415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(445), - [7418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(107), - [7421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(174), - [7424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1143), - [7427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(369), - [7430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(244), - [7433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(181), - [7436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(181), - [7439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2002), - [7442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2136), - [7445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2135), - [7448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2134), - [7451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3814), - [7454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3815), - [7457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2115), - [7460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3817), - [7463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2112), - [7466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2108), - [7469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2107), - [7472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3821), - [7475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4462), - [7478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4170), - [7481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3822), - [7484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4171), - [7487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4172), - [7490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4331), - [7493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2859), - [7496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4333), - [7499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4417), - [7502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2050), - [7505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2032), - [7508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2049), - [7511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4334), - [7514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4175), - [7517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4463), - [7520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3080), - [7523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3824), - [7526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3825), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [7541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(493), - [7544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(406), - [7547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(71), - [7550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(201), - [7553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(614), - [7556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(376), - [7559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(205), - [7562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(208), - [7565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(208), - [7568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2025), - [7571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2200), - [7574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2199), - [7577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2198), - [7580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3549), - [7583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3550), - [7586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2197), - [7589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3552), - [7592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2196), - [7595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2195), - [7598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2194), - [7601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3556), - [7604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4447), - [7607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4065), - [7610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3557), - [7613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4066), - [7616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4067), - [7619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4276), - [7622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2873), - [7625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4278), - [7628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4387), - [7631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2064), - [7634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2038), - [7637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2062), - [7640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4279), - [7643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4070), - [7646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4448), - [7649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3322), - [7652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3559), - [7655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3560), - [7658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(613), - [7661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2818), - [7664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2819), - [7667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(431), - [7670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(101), - [7673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(193), - [7676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(931), - [7679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(377), - [7682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(149), - [7685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(148), - [7688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(148), - [7691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2009), - [7694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2157), - [7697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2155), - [7700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2154), - [7703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3761), - [7706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3762), - [7709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2153), - [7712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3764), - [7715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2152), - [7718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2143), - [7721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2138), - [7724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3768), - [7727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4459), - [7730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4149), - [7733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3769), - [7736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4150), - [7739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4151), - [7742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4320), - [7745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2860), - [7748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4322), - [7751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4411), - [7754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2052), - [7757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2033), - [7760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2051), - [7763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4323), - [7766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4154), - [7769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4460), - [7772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3136), - [7775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3771), - [7778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3772), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [7785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(485), - [7788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(390), - [7791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(85), - [7794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(227), - [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(619), - [7800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(380), - [7803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(192), - [7806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(191), - [7809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(191), - [7812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2016), - [7815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2177), - [7818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2176), - [7821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2175), - [7824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3655), - [7827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3656), - [7830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2174), - [7833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3658), - [7836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2173), - [7839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2172), - [7842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2171), - [7845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3662), - [7848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4453), - [7851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4107), - [7854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3663), - [7857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4108), - [7860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4109), - [7863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4298), - [7866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2863), - [7869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4300), - [7872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4399), - [7875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2057), - [7878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2035), - [7881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2055), - [7884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4301), - [7887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4112), - [7890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4454), - [7893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3246), - [7896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3665), - [7899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3666), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [7904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(493), - [7907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(71), - [7910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(201), - [7913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(614), - [7916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(382), - [7919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(205), - [7922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(208), - [7925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(208), - [7928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2025), - [7931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2200), - [7934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2199), - [7937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2198), - [7940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3549), - [7943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3550), - [7946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2197), - [7949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3552), - [7952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2196), - [7955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2195), - [7958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2194), - [7961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3556), - [7964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4447), - [7967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4065), - [7970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3557), - [7973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4066), - [7976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4067), - [7979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4276), - [7982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2873), - [7985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4278), - [7988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4387), - [7991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2064), - [7994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2038), - [7997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2062), - [8000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4279), - [8003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4070), - [8006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4448), - [8009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3322), - [8012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3559), - [8015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3560), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [8024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(490), - [8027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(58), - [8030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(135), - [8033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(617), - [8036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(386), - [8039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(136), - [8042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(137), - [8045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(137), - [8048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2020), - [8051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2231), - [8054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2229), - [8057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2227), - [8060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3444), - [8063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3445), - [8066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2225), - [8069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3446), - [8072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2222), - [8075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2218), - [8078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2216), - [8081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3450), - [8084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4441), - [8087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4023), - [8090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3451), - [8093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4024), - [8096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4025), - [8099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4254), - [8102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2875), - [8105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4256), - [8108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4375), - [8111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2068), - [8114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2041), - [8117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2067), - [8120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4257), - [8123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4028), - [8126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4442), - [8129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3436), - [8132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3453), - [8135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3454), - [8138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(613), - [8141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2819), - [8144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(431), - [8147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(101), - [8150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(193), - [8153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(931), - [8156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(387), - [8159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(149), - [8162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(148), - [8165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(148), - [8168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2009), - [8171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2157), - [8174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2155), - [8177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2154), - [8180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3761), - [8183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3762), - [8186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2153), - [8189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3764), - [8192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2152), - [8195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2143), - [8198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2138), - [8201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3768), - [8204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4459), - [8207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4149), - [8210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3769), - [8213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4150), - [8216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4151), - [8219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4320), - [8222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2860), - [8225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4322), - [8228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4411), - [8231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2052), - [8234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2033), - [8237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2051), - [8240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4323), - [8243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4154), - [8246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4460), - [8249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3136), - [8252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3771), - [8255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3772), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [8264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(640), - [8267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2943), - [8270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2944), - [8273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(445), - [8276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(107), - [8279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(174), - [8282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1143), - [8285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(392), - [8288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(244), - [8291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(181), - [8294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(181), - [8297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2002), - [8300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2136), - [8303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2135), - [8306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2134), - [8309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3814), - [8312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3815), - [8315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2115), - [8318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3817), - [8321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2112), - [8324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2108), - [8327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2107), - [8330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3821), - [8333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4462), - [8336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4170), - [8339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3822), - [8342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4171), - [8345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4172), - [8348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4331), - [8351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2859), - [8354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4333), - [8357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4417), - [8360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2050), - [8363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2032), - [8366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2049), - [8369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4334), - [8372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4175), - [8375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4463), - [8378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3080), - [8381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3824), - [8384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3825), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [8407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(485), - [8410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(85), - [8413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(227), - [8416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(619), - [8419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(401), - [8422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(192), - [8425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(191), - [8428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(191), - [8431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2016), - [8434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2177), - [8437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2176), - [8440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2175), - [8443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3655), - [8446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3656), - [8449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2174), - [8452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3658), - [8455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2173), - [8458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2172), - [8461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2171), - [8464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3662), - [8467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4453), - [8470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4107), - [8473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3663), - [8476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4108), - [8479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4109), - [8482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4298), - [8485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2863), - [8488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4300), - [8491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4399), - [8494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2057), - [8497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2035), - [8500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2055), - [8503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4301), - [8506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4112), - [8509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4454), - [8512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3246), - [8515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3665), - [8518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3666), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [8525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(480), - [8528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(64), - [8531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(163), - [8534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(625), - [8537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(404), - [8540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(165), - [8543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(167), - [8546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(167), - [8549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2023), - [8552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2211), - [8555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2208), - [8558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2207), - [8561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3496), - [8564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3497), - [8567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2206), - [8570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3499), - [8573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2205), - [8576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2204), - [8579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2203), - [8582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3503), - [8585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4444), - [8588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4044), - [8591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3504), - [8594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4045), - [8597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4046), - [8600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4265), - [8603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2874), - [8606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4267), - [8609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4381), - [8612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2066), - [8615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2039), - [8618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2065), - [8621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4268), - [8624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4049), - [8627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4445), - [8630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3393), - [8633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3506), - [8636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3507), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [8645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(497), - [8648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(422), - [8651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(93), - [8654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(237), - [8657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(645), - [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(409), - [8663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(173), - [8666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(171), - [8669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(171), - [8672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2012), - [8675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2169), - [8678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2167), - [8681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2166), - [8684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3708), - [8687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3709), - [8690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2164), - [8693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3711), - [8696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2163), - [8699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2161), - [8702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2160), - [8705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3715), - [8708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4456), - [8711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4128), - [8714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3716), - [8717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4129), - [8720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4130), - [8723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4309), - [8726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2862), - [8729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4311), - [8732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4405), - [8735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2054), - [8738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2034), - [8741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2053), - [8744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4312), - [8747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4133), - [8750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4457), - [8753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3178), - [8756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3718), - [8759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3719), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [8768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(928), - [8771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3067), - [8774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3068), - [8777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(451), - [8780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(104), - [8783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(150), - [8786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1264), - [8789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(413), - [8792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(248), - [8795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(236), - [8798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(236), - [8801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2008), - [8804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2105), - [8807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2102), - [8810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2100), - [8813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3867), - [8816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3868), - [8819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2098), - [8822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3870), - [8825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2096), - [8828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2093), - [8831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2089), - [8834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3874), - [8837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4465), - [8840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4191), - [8843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3875), - [8846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4192), - [8849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4193), - [8852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4342), - [8855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2858), - [8858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4344), - [8861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4423), - [8864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2048), - [8867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2031), - [8870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2047), - [8873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4345), - [8876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4196), - [8879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4466), - [8882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3054), - [8885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3877), - [8888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3878), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [8893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(640), - [8896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2944), - [8899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(445), - [8902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(107), - [8905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(174), - [8908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1143), - [8911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(415), - [8914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(244), - [8917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(181), - [8920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(181), - [8923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2002), - [8926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2136), - [8929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2135), - [8932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2134), - [8935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3814), - [8938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3815), - [8941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2115), - [8944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3817), - [8947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2112), - [8950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2108), - [8953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2107), - [8956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3821), - [8959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4462), - [8962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4170), - [8965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3822), - [8968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4171), - [8971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4172), - [8974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4331), - [8977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2859), - [8980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4333), - [8983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4417), - [8986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2050), - [8989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2032), - [8992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2049), - [8995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4334), - [8998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4175), - [9001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4463), - [9004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3080), - [9007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3824), - [9010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3825), - [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [9015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [9035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [9041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [9099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(613), - [9102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(431), - [9105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(101), - [9108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(193), - [9111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(931), - [9114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(420), - [9117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(149), - [9120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(148), - [9123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(148), - [9126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2009), - [9129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2157), - [9132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2155), - [9135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2154), - [9138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3761), - [9141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3762), - [9144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2153), - [9147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3764), - [9150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2152), - [9153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2143), - [9156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2138), - [9159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3768), - [9162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4459), - [9165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4149), - [9168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3769), - [9171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4150), - [9174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4151), - [9177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4320), - [9180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2860), - [9183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4322), - [9186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4411), - [9189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2052), - [9192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2033), - [9195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2051), - [9198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4323), - [9201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4154), - [9204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4460), - [9207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3136), - [9210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3771), - [9213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3772), - [9216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(497), - [9219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(93), - [9222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(237), - [9225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(645), - [9228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(421), - [9231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(173), - [9234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(171), - [9237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(171), - [9240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2012), - [9243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2169), - [9246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2167), - [9249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2166), - [9252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3708), - [9255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3709), - [9258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2164), - [9261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3711), - [9264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2163), - [9267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2161), - [9270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2160), - [9273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3715), - [9276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4456), - [9279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4128), - [9282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3716), - [9285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4129), - [9288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4130), - [9291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4309), - [9294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2862), - [9297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4311), - [9300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4405), - [9303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2054), - [9306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2034), - [9309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2053), - [9312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4312), - [9315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4133), - [9318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4457), - [9321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3178), - [9324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3718), - [9327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3719), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [9344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(613), - [9347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(101), - [9350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(193), - [9353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(931), - [9356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(428), - [9359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(149), - [9362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(148), - [9365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(148), - [9368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2009), - [9371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2157), - [9374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2155), - [9377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2154), - [9380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3761), - [9383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3762), - [9386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2153), - [9389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3764), - [9392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2152), - [9395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2143), - [9398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2138), - [9401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3768), - [9404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4459), - [9407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4149), - [9410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3769), - [9413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4150), - [9416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4151), - [9419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4320), - [9422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2860), - [9425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4322), - [9428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4411), - [9431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2052), - [9434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2033), - [9437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2051), - [9440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4323), - [9443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4154), - [9446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4460), - [9449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3136), - [9452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3771), - [9455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3772), - [9458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(640), - [9461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(445), - [9464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(107), - [9467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(174), - [9470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1143), - [9473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(430), - [9476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(244), - [9479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(181), - [9482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(181), - [9485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2002), - [9488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2136), - [9491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2135), - [9494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2134), - [9497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3814), - [9500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3815), - [9503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2115), - [9506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3817), - [9509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2112), - [9512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2108), - [9515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2107), - [9518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3821), - [9521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4462), - [9524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4170), - [9527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3822), - [9530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4171), - [9533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4172), - [9536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4331), - [9539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2859), - [9542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4333), - [9545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4417), - [9548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2050), - [9551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2032), - [9554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2049), - [9557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4334), - [9560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4175), - [9563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4463), - [9566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3080), - [9569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3824), - [9572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3825), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [9583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(928), - [9586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3068), - [9589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(451), - [9592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(104), - [9595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(150), - [9598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1264), - [9601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(434), - [9604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(248), - [9607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(236), - [9610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(236), - [9613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2008), - [9616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2105), - [9619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2102), - [9622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2100), - [9625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3867), - [9628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3868), - [9631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2098), - [9634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3870), - [9637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2096), - [9640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2093), - [9643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2089), - [9646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3874), - [9649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4465), - [9652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4191), - [9655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3875), - [9658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4192), - [9661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4193), - [9664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4342), - [9667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2858), - [9670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4344), - [9673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4423), - [9676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2048), - [9679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2031), - [9682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2047), - [9685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4345), - [9688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4196), - [9691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4466), - [9694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3054), - [9697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3877), - [9700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3878), - [9703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1140), - [9706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3191), - [9709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(457), - [9712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(87), - [9715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(116), - [9718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1388), - [9721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(435), - [9724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(143), - [9727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(141), - [9730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(141), - [9733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2003), - [9736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2085), - [9739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2083), - [9742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2082), - [9745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3920), - [9748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3921), - [9751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2081), - [9754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3923), - [9757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2080), - [9760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2079), - [9763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2078), - [9766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3927), - [9769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4468), - [9772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4212), - [9775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3928), - [9778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4213), - [9781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4214), - [9784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4353), - [9787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2849), - [9790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4355), - [9793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4429), - [9796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2046), - [9799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2030), - [9802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2045), - [9805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4356), - [9808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4217), - [9811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4469), - [9814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3000), - [9817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3930), - [9820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3931), - [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [9869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [9891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), - [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [9911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(640), - [9914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(107), - [9917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(174), - [9920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1143), - [9923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(441), - [9926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(244), - [9929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(181), - [9932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(181), - [9935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2002), - [9938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2136), - [9941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2135), - [9944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2134), - [9947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3814), - [9950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3815), - [9953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2115), - [9956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3817), - [9959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2112), - [9962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2108), - [9965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2107), - [9968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3821), - [9971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4462), - [9974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4170), - [9977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3822), - [9980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4171), - [9983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4172), - [9986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4331), - [9989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2859), - [9992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4333), - [9995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4417), - [9998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2050), - [10001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2032), - [10004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2049), - [10007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4334), - [10010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4175), - [10013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4463), - [10016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3080), - [10019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3824), - [10022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3825), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [10027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(928), - [10030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(451), - [10033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(104), - [10036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(150), - [10039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1264), - [10042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(444), - [10045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(248), - [10048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(236), - [10051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(236), - [10054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2008), - [10057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2105), - [10060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2102), - [10063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2100), - [10066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3867), - [10069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3868), - [10072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2098), - [10075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3870), - [10078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2096), - [10081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2093), - [10084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2089), - [10087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3874), - [10090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4465), - [10093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4191), - [10096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3875), - [10099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4192), - [10102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4193), - [10105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4342), - [10108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2858), - [10111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4344), - [10114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4423), - [10117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2048), - [10120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2031), - [10123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2047), - [10126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4345), - [10129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4196), - [10132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4466), - [10135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3054), - [10138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3877), - [10141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3878), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [10160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(928), - [10163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(104), - [10166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(150), - [10169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1264), - [10172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(452), - [10175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(248), - [10178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(236), - [10181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(236), - [10184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2008), - [10187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2105), - [10190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2102), - [10193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2100), - [10196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3867), - [10199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3868), - [10202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2098), - [10205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3870), - [10208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2096), - [10211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2093), - [10214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2089), - [10217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3874), - [10220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4465), - [10223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4191), - [10226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3875), - [10229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4192), - [10232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4193), - [10235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4342), - [10238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2858), - [10241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4344), - [10244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4423), - [10247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2048), - [10250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2031), - [10253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2047), - [10256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4345), - [10259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4196), - [10262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4466), - [10265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3054), - [10268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3877), - [10271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3878), - [10274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1140), - [10277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(457), - [10280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(87), - [10283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(116), - [10286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1388), - [10289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(453), - [10292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(143), - [10295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(141), - [10298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(141), - [10301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2003), - [10304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2085), - [10307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2083), - [10310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2082), - [10313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3920), - [10316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3921), - [10319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2081), - [10322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3923), - [10325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2080), - [10328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2079), - [10331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2078), - [10334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3927), - [10337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4468), - [10340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4212), - [10343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3928), - [10346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4213), - [10349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4214), - [10352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4353), - [10355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2849), - [10358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4355), - [10361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4429), - [10364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2046), - [10367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2030), - [10370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2045), - [10373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4356), - [10376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4217), - [10379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4469), - [10382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3000), - [10385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3930), - [10388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3931), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), - [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [10477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1140), - [10480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(87), - [10483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(116), - [10486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1388), - [10489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(458), - [10492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(143), - [10495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(141), - [10498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(141), - [10501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2003), - [10504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2085), - [10507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2083), - [10510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2082), - [10513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3920), - [10516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3921), - [10519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2081), - [10522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3923), - [10525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2080), - [10528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2079), - [10531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2078), - [10534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3927), - [10537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4468), - [10540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4212), - [10543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3928), - [10546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4213), - [10549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4214), - [10552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4353), - [10555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2849), - [10558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4355), - [10561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4429), - [10564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2046), - [10567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2030), - [10570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2045), - [10573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4356), - [10576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4217), - [10579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4469), - [10582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3000), - [10585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3930), - [10588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3931), - [10591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1364), - [10594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(463), - [10597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(46), - [10600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(239), - [10603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1513), - [10606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(460), - [10609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(158), - [10612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(160), - [10615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(160), - [10618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2015), - [10621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2076), - [10624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2075), - [10627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2074), - [10630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3973), - [10633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3974), - [10636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2073), - [10639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3976), - [10642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2072), - [10645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2071), - [10648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2070), - [10651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3980), - [10654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4471), - [10657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4233), - [10660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3981), - [10663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4234), - [10666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4235), - [10669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4364), - [10672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2848), - [10675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4366), - [10678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4435), - [10681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2043), - [10684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2029), - [10687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2042), - [10690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4367), - [10693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4238), - [10696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4472), - [10699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2947), - [10702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3983), - [10705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3984), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [10716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1364), - [10719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(46), - [10722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(239), - [10725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1513), - [10728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(464), - [10731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(158), - [10734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(160), - [10737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(160), - [10740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2015), - [10743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2076), - [10746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2075), - [10749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2074), - [10752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3973), - [10755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3974), - [10758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2073), - [10761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3976), - [10764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2072), - [10767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2071), - [10770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2070), - [10773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3980), - [10776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4471), - [10779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4233), - [10782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3981), - [10785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4234), - [10788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4235), - [10791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4364), - [10794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2848), - [10797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4366), - [10800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4435), - [10803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2043), - [10806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2029), - [10809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2042), - [10812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4367), - [10815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4238), - [10818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4472), - [10821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2947), - [10824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3983), - [10827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3984), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), - [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [10876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [10886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [10888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [10910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1483), - [10913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(77), - [10916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(169), - [10919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1752), - [10922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(469), - [10925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(235), - [10928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(233), - [10931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(233), - [10934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2019), - [10937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2186), - [10940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2184), - [10943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2183), - [10946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3602), - [10949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3603), - [10952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2182), - [10955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3605), - [10958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2181), - [10961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2180), - [10964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2179), - [10967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3609), - [10970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4450), - [10973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4086), - [10976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3610), - [10979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4087), - [10982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4088), - [10985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4287), - [10988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2870), - [10991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4289), - [10994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4393), - [10997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2059), - [11000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2037), - [11003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2058), - [11006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4290), - [11009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4091), - [11012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4451), - [11015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3287), - [11018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3612), - [11021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3613), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [11028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 1, .production_id = 2), - [11030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 1, .production_id = 2), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [11036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 2, .production_id = 7), - [11038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 2, .production_id = 7), - [11040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), - [11042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 2), - [11044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(199), - [11047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(152), - [11050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(126), - [11053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), - [11055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [11059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), - [11061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), - [11063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(476), - [11066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 5, .production_id = 46), - [11068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 5, .production_id = 46), - [11070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(220), - [11073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(227), - [11076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(218), - [11079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(146), - [11082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(135), - [11085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(129), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [11092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 8, .production_id = 69), - [11094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 8, .production_id = 69), - [11096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 3, .production_id = 1), - [11098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 3, .production_id = 1), - [11100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(177), - [11103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(163), - [11106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(187), - [11109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(216), - [11112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(201), - [11115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(219), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [11126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 7, .production_id = 63), - [11128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 7, .production_id = 63), - [11130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 6, .production_id = 55), - [11132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 6, .production_id = 55), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [11138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 4, .production_id = 22), - [11140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 4, .production_id = 22), - [11142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 4, .production_id = 20), - [11144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 4, .production_id = 20), - [11146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 7, .production_id = 61), - [11148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 7, .production_id = 61), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [11154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 8, .production_id = 70), - [11156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 8, .production_id = 70), - [11158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 9, .production_id = 71), - [11160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 9, .production_id = 71), - [11162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment, 2, .production_id = 8), - [11164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment, 2, .production_id = 8), - [11166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 3, .production_id = 10), - [11168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 3, .production_id = 10), - [11170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_group, 3, .production_id = 10), - [11172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_group, 3, .production_id = 10), - [11174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_group, 2, .production_id = 5), - [11176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_group, 2, .production_id = 5), - [11178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 3, .production_id = 11), - [11180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 3, .production_id = 11), - [11182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, .production_id = 1), - [11184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, .production_id = 1), - [11186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 3, .production_id = 1), - [11188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 3, .production_id = 1), - [11190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 3, .production_id = 1), - [11192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 3, .production_id = 1), - [11194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_include, 3, .production_id = 1), - [11196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_include, 3, .production_id = 1), - [11198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_input, 3, .production_id = 1), - [11200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_input, 3, .production_id = 1), - [11202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(183), - [11205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(237), - [11208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(182), - [11211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 3, .production_id = 1), - [11213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 3, .production_id = 1), - [11215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bibtex_include, 3, .production_id = 1), - [11217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bibtex_include, 3, .production_id = 1), - [11219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 10, .production_id = 72), - [11221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 10, .production_id = 72), - [11223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 10, .production_id = 73), - [11225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 10, .production_id = 73), - [11227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 6, .production_id = 56), - [11229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 6, .production_id = 56), - [11231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 8, .production_id = 68), - [11233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 8, .production_id = 68), - [11235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 3, .production_id = 1), - [11237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 3, .production_id = 1), - [11239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 8, .production_id = 67), - [11241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 8, .production_id = 67), - [11243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 8, .production_id = 66), - [11245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 8, .production_id = 66), - [11247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 3, .production_id = 1), - [11249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 3, .production_id = 1), - [11251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_definition, 8, .production_id = 65), - [11253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_definition, 8, .production_id = 65), - [11255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 7, .production_id = 64), - [11257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 7, .production_id = 64), - [11259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 7, .production_id = 62), - [11261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 7, .production_id = 62), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [11265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_include, 5, .production_id = 35), - [11267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_include, 5, .production_id = 35), - [11269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_group, 3, .production_id = 10), - [11271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_group, 3, .production_id = 10), - [11273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 7, .production_id = 60), - [11275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 7, .production_id = 60), - [11277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference_range, 7, .production_id = 59), - [11279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference_range, 7, .production_id = 59), - [11281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 7, .production_id = 58), - [11283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 7, .production_id = 58), - [11285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 7, .production_id = 57), - [11287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 7, .production_id = 57), - [11289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 6, .production_id = 54), - [11291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 6, .production_id = 54), - [11293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 4, .production_id = 20), - [11295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 4, .production_id = 20), - [11297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 6, .production_id = 15), - [11299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 6, .production_id = 15), - [11301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 6, .production_id = 53), - [11303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 6, .production_id = 53), - [11305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 6, .production_id = 53), - [11307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 6, .production_id = 53), - [11309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 6, .production_id = 53), - [11311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 6, .production_id = 53), - [11313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 3, .production_id = 1), - [11315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 3, .production_id = 1), - [11317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 6, .production_id = 53), - [11319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 6, .production_id = 53), - [11321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_include, 3, .production_id = 1), - [11323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_include, 3, .production_id = 1), - [11325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 6, .production_id = 53), - [11327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 6, .production_id = 53), - [11329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 6, .production_id = 52), - [11331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 6, .production_id = 52), - [11333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 6, .production_id = 51), - [11335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 6, .production_id = 51), - [11337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 3, .production_id = 1), - [11339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 3, .production_id = 1), - [11341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end, 4, .production_id = 15), - [11343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end, 4, .production_id = 15), - [11345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tikz_library_import, 5, .production_id = 49), - [11347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tikz_library_import, 5, .production_id = 49), - [11349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pgf_library_import, 3, .production_id = 1), - [11351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pgf_library_import, 3, .production_id = 1), - [11353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pgf_library_import, 5, .production_id = 49), - [11355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pgf_library_import, 5, .production_id = 49), - [11357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 6, .production_id = 53), - [11359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 6, .production_id = 53), - [11361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 2, .production_id = 5), - [11363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 2, .production_id = 5), - [11365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tikz_library_import, 3, .production_id = 1), - [11367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tikz_library_import, 3, .production_id = 1), - [11369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_group, 2, .production_id = 5), - [11371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_group, 2, .production_id = 5), - [11373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 44), - [11375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 44), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [11379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 5, .production_id = 43), - [11381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 5, .production_id = 43), - [11383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment, 3, .production_id = 13), - [11385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment, 3, .production_id = 13), - [11387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_group, 2, .production_id = 5), - [11389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_group, 2, .production_id = 5), - [11391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 5, .production_id = 43), - [11393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 5, .production_id = 43), - [11395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 5, .production_id = 42), - [11397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 5, .production_id = 42), - [11399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_definition, 5, .production_id = 42), - [11401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_definition, 5, .production_id = 42), - [11403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 4, .production_id = 16), - [11405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 4, .production_id = 16), - [11407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_number, 5, .production_id = 41), - [11409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_number, 5, .production_id = 41), - [11411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equation_label_reference, 5, .production_id = 39), - [11413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equation_label_reference, 5, .production_id = 39), - [11415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 5, .production_id = 39), - [11417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 5, .production_id = 39), - [11419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_include, 5, .production_id = 35), - [11421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_include, 5, .production_id = 35), - [11423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 4, .production_id = 17), - [11425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 4, .production_id = 17), - [11427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 4, .production_id = 19), - [11429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 4, .production_id = 19), - [11431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 5, .production_id = 37), - [11433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 5, .production_id = 37), - [11435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 5, .production_id = 35), - [11437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 5, .production_id = 35), - [11439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 5, .production_id = 37), - [11441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 5, .production_id = 37), - [11443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 5, .production_id = 35), - [11445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 5, .production_id = 35), - [11447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 5, .production_id = 37), - [11449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 5, .production_id = 37), - [11451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 5, .production_id = 35), - [11453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 5, .production_id = 35), - [11455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 4, .production_id = 20), - [11457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 4, .production_id = 20), - [11459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bibtex_include, 5, .production_id = 35), - [11461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bibtex_include, 5, .production_id = 35), - [11463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 5, .production_id = 37), - [11465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 5, .production_id = 37), - [11467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 5, .production_id = 35), - [11469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 5, .production_id = 35), - [11471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_input, 5, .production_id = 35), - [11473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_input, 5, .production_id = 35), - [11475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 11, .production_id = 74), - [11477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 11, .production_id = 74), - [11479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 5, .production_id = 37), - [11481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 5, .production_id = 37), - [11483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 5, .production_id = 35), - [11485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 5, .production_id = 35), - [11487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 5, .production_id = 37), - [11489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 5, .production_id = 37), - [11491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 5, .production_id = 35), - [11493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 5, .production_id = 35), - [11495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 4, .production_id = 19), - [11497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 4, .production_id = 19), - [11499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 5, .production_id = 29), - [11501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 5, .production_id = 29), - [11503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 5, .production_id = 28), - [11505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 5, .production_id = 28), - [11507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 5, .production_id = 26), - [11509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 5, .production_id = 26), - [11511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 4, .production_id = 20), - [11513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 4, .production_id = 20), - [11515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_group, 3, .production_id = 10), - [11517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_group, 3, .production_id = 10), - [11519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tikz_library_import, 4, .production_id = 15), - [11521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tikz_library_import, 4, .production_id = 15), - [11523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 2, .production_id = 6), - [11525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 2, .production_id = 6), - [11527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_include, 4, .production_id = 19), - [11529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_include, 4, .production_id = 19), - [11531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pgf_library_import, 4, .production_id = 15), - [11533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pgf_library_import, 4, .production_id = 15), - [11535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_reference, 4, .production_id = 15), - [11537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_reference, 4, .production_id = 15), - [11539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 4, .production_id = 15), - [11541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 4, .production_id = 15), - [11543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_input, 4, .production_id = 19), - [11545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_input, 4, .production_id = 19), - [11547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 4, .production_id = 15), - [11549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 4, .production_id = 15), - [11551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference_range, 4, .production_id = 21), - [11553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference_range, 4, .production_id = 21), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [11557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equation_label_reference, 4, .production_id = 14), - [11559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equation_label_reference, 4, .production_id = 14), - [11561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 4, .production_id = 14), - [11563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 4, .production_id = 14), - [11565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 4, .production_id = 15), - [11567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 4, .production_id = 15), - [11569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_include, 4, .production_id = 19), - [11571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_include, 4, .production_id = 19), - [11573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 4, .production_id = 19), - [11575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 4, .production_id = 19), - [11577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 4, .production_id = 20), - [11579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 4, .production_id = 20), - [11581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 4, .production_id = 19), - [11583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 4, .production_id = 19), - [11585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 4, .production_id = 19), - [11587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 4, .production_id = 19), - [11589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 4, .production_id = 20), - [11591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 4, .production_id = 20), - [11593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bibtex_include, 4, .production_id = 19), - [11595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bibtex_include, 4, .production_id = 19), - [11597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 4, .production_id = 19), - [11599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 4, .production_id = 19), - [11601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 4, .production_id = 15), - [11603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 4, .production_id = 15), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [11611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(615), - [11614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(616), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [11619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(618), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [11624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(161), - [11627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(193), - [11630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(159), - [11633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(621), - [11636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 5, .production_id = 24), - [11638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 5, .production_id = 24), - [11640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_begin_repeat1, 2), - [11642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_begin_repeat1, 2), SHIFT_REPEAT(216), - [11645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_begin_repeat1, 2), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [11653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_fragment, 1), - [11655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_fragment, 1), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [11659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(122), - [11662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(174), - [11665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(121), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [11680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(644), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [11695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(696), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [11716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(206), - [11719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(150), - [11722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(217), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [11737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(212), - [11740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(116), - [11743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(210), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [11750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1142), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [11769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1358), - [11772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(132), - [11775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(239), - [11778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(131), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [11785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1387), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [11796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(242), - [11799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(169), - [11802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(246), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [11809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1511), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [11820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1639), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [11843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_val_pair_repeat1, 2), - [11845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_val_pair_repeat1, 2), SHIFT_REPEAT(1991), - [11848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_pair, 1, .production_id = 12), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [11864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_val_options_repeat1, 2, .production_id = 32), - [11866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_val_options_repeat1, 2, .production_id = 32), SHIFT_REPEAT(2576), - [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [11967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pgf_library_import_repeat1, 2, .production_id = 50), - [11969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pgf_library_import_repeat1, 2, .production_id = 50), SHIFT_REPEAT(3535), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [11974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_color_set_definition_repeat1, 2, .production_id = 47), - [11976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_color_set_definition_repeat1, 2, .production_id = 47), SHIFT_REPEAT(3537), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [12223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_reference_repeat1, 2, .production_id = 40), - [12225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_label_reference_repeat1, 2, .production_id = 40), SHIFT_REPEAT(3700), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [12276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_include_repeat1, 2, .production_id = 36), - [12278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_include_repeat1, 2, .production_id = 36), SHIFT_REPEAT(3873), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [12283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_pair, 3, .production_id = 33), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [12421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_val_options_repeat1, 2, .production_id = 30), - [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [12483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_citation_repeat1, 2, .production_id = 27), - [12485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_citation_repeat1, 2, .production_id = 27), SHIFT_REPEAT(3914), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [13254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [13256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [13258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [13264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [13280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [13282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [13284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [13286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [13300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [13302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [13304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [13342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [13344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [13350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [13352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [13358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [13360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [13362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [13364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [13366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [13368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [13370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [13372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [13374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [13376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [13378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [13380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [13382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [13384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [13386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [13388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [13390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [13392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [13394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [13396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [13398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [13400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [13404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [13406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [13412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [13414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [13416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [13418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [13420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [13422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [13424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [13426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [13428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [13430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [13432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [13434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [13436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [13438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [13440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [13442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [13444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [13446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [13456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [13462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [13606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [13608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [13632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [13636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [13638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [13640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [13642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [13644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [13646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [13648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [13650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [13654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [13664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [13668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [13670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [13702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [13704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [13710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [13712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [13714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [13722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [13726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pgf_library_import_repeat1, 2, .production_id = 48), - [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [13738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [13744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [13756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [13760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [13762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [13764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [13766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [13770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [13780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [13788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [13790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [13794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [13800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [13806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [13808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [13810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [13812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [13816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [13826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [13828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [13830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [13832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [13834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [13836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [13846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [13852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [13854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [13874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [13880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [13884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [13890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [13894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [13896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [13898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [13900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [13912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_color_set_definition_repeat1, 2, .production_id = 45), - [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [13928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [13976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [13984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [13986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [13990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [13992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [13996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [13998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [14002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [14004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [14010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [14014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [14024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [14030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [14140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [14194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [14204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [14264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [14278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [14418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [14446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_reference_repeat1, 2, .production_id = 38), - [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [14480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [14518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [14652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_citation_repeat1, 2, .production_id = 25), - [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [14690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_include_repeat1, 2, .production_id = 34), - [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [14906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [15072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [15110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [15112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [15142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [15144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [15150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [15174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [15176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [15192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [15212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [15226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [15228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [15230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [15232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [15234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [15236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [15242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [15244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [15246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [15248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [15250] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [15252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [15254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [15258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [15260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [15268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [15278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [15280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [15282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [15290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [15292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [15294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [15298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [15300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [15302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [15304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [15306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [15308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [15314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [15316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [15318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [15320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [15322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [15324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [15326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [15328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [15330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [15332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [15334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [15336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [15338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [15342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [15350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [15352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [15354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [15360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [15362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [15364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [15366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [15372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [15376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [15378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [15380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [15382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [15384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [15386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [15388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [15390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [15392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [15394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [15396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [15398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [15400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [15402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [15404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [15406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [15410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [15412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [15418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [15420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [15422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [15424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [15432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [15438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [15440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [15442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [15444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [15446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [15450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [15452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [15454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [15456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [15458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [15460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [15464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [15466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [15468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [15470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [15472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [15474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [15476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [15480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_options, 4, .production_id = 31), - [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [15484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [15486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [15498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [15500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [15502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [15504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [15508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [15516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [15518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [15520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [15546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [15548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [15550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [15554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [15556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [15558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [15566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [15576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [15578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [15584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [15594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [15596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_options, 3, .production_id = 18), - [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [15602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [15608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [15610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [15612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [15618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [15622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [15624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [15626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [15628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [15630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [15636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [15640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [15642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [15644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [15646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [15648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [15650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [15652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [15654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [15656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [15658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [15660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [15662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [15664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [15666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [15668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [15670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [15672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [15674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [15676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [15678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [15680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [15682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [15684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [15686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [15688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [15690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [15692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [15694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [15696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [15698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [15700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [15702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [15704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [15706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [15708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [15710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [15712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [15718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [15720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [15722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [15726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [15728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [15730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [15732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [15734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [15736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [15738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [15740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [15742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [15744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [15746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [15750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [15752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [15754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [15756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [15760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [15768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [15770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [15774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [15778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [15780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [15782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [15784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [15790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [15794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [15798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [15800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [15802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [15804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [15806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [15808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [15810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [15812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [15814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_options, 2, .production_id = 5), - [15816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [15818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [15820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [15822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [15824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [15826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [15828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [15830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [15832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [15834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [15836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [15838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [15840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [15842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [15844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [15846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [15848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [15850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [15852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [15854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [15856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [15858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [15860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [15862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [15864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [15866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [15868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [15870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [15872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [15874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [15876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [15878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [15880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [15882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [15884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [15886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [15888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [15890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [15892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [15894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [15896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [15898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [15900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [15902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [15904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [15906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [15908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [15910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [15912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [15914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [15916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [15918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [15920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [15922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [15924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [15926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [15928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [15930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [15932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [15934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [15936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [15938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [15940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [15942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [15944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [15946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [15948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [15950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [15952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [15954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [15956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [15958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [15960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [15962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [15964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [15966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [15968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [15970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [15972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [15974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [15976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [15978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [15982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [15984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [15986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [15990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [15992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [15994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [15996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [15998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [16000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [16002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [16004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [16008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [16010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [16012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [16014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [16016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [16018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [16020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [16022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [16024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [16026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [16028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [16032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [16034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [16036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [16040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [16042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [16044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [16046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [16048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [16050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [16052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [16054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [16056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [16058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [16060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [16062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [16064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [16066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [16068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [16070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [16072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [16074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [16076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [16078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [16080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [16082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [16084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [16086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [16088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [16090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [16092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [16094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [16096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [16098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [16100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [16102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [16104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [16106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [16108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [16110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [16112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [16114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [16116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [16118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [16120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [16122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [16124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [16126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [16128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [16130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [16132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [16134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [16136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [16138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [16140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [16142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [16144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [16146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [16148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [16150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [16152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [16154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [16156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [16158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [16160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [16162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [16164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [16166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [16168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [16170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [16172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [16174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [16176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [16178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [16180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [16182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [16184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [16186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [16188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [16190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [16192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [16194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [16196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [16198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [16200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [16202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [16204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [16206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [16208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [16210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [16212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [16214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [16216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [16218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [16220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [16222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [16224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [16226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [16228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [16230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [16232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [16234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [16236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [16238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [16240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [16242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [16244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [16246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [16248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [16250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [16252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [16254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [16256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [16258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [16260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [16262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [16264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [16266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [16268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [16270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [16272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [16274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [16276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [16278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [16280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [16282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [16284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [16286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [16288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [16290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [16292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [16294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [16296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [16298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [16300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [16302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [16304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [16306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [16308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [16310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [16312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [16314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [16316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [16318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [16320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [16322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [16324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [16326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [16328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [16330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [16332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [16334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [16336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [16338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [16340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [16342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [16344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [16346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [16348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [16350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [16352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [16354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [16356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [16358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [16360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [16362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [16364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [16366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [16368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [16370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [16372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [16374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [16376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [16378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [16380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [16382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [16384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [16386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [16388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [16390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [16392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [16394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [16396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [16398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [16400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [16402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [16404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [16406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [16408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [16410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [16412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [16414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [16416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [16418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [16420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [16422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [16424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [16426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [16428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [16430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [16432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [16434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [16436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [16438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [16440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [16442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [16444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [16446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [16448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [16450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [16452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [16454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [16456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [16458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [16460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [16462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [16464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [16466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [16468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [16470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [16472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [16474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [16476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [16478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [16480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [16482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [16484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [16486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [16488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [16490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [16492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [16494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [16496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [16498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [16500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [16502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [16504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [16506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [16508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [16510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [16512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [16514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [16516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [16518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [16520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [16522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [16524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [16526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [16528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [16530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [16532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [16534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [16536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [16538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [16540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [16542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [16544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [16546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [16548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [16550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [16552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [16554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [16556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [16558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [16560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [16562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [16564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [16566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [16568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [16570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [16574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [16578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [16580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [16582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [16584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [16586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [16592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [16594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [16596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [16598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [16600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [16602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [16604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [16606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [16608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [16610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [16612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [16614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [16616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [16618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [16620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [16622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [16624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [16626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [16628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [16630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [16632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [16634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [16636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [16640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [16642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [16644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [16646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [16650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), - [16656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [16658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [16660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [16666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [16670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [16672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [16674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [16678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [16680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [16682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [16684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [16686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [16688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [16690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [16692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [16694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [16696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [16698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [16700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [16702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [16704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [16706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [16708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [16710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [16712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [16714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [16716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [16718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [16720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [16722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [16724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [16726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [16728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [16730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [16732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [16734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [16736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [16738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [16740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [16742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [16744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [16746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [16748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [16750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [16752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [16754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [16756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [16758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [16760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [16762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [16764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [16766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [16768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [16770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [16772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [16774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [16776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [16778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [16780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [16782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [16784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [16786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [16788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [16790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 2, .production_id = 5), + [111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 2, .production_id = 5), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 2, .production_id = 5), + [117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 2, .production_id = 5), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 3, .production_id = 10), + [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 3, .production_id = 10), + [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 3, .production_id = 10), + [127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 3, .production_id = 10), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), + [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(472), + [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3022), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2916), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2984), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3123), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3072), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3271), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3146), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(328), + [158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(53), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(152), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(475), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(6), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(147), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(142), + [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(142), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3702), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2005), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2201), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2201), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2187), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2264), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3490), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3448), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2234), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3452), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2235), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2354), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2321), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3547), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3548), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3551), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3553), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3553), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3554), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3555), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3555), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3558), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3323), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3561), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3561), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3583), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2337), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2338), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2340), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3590), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3594), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3595), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3314), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3802), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3659), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 2, .production_id = 3), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 2, .production_id = 3), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(472), + [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2916), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2984), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3123), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3072), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3271), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3146), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(328), + [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(53), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(152), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(475), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(92), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(147), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(142), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(142), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3702), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2005), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2201), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2201), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2187), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2264), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3490), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3448), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2234), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3452), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2235), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2354), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2321), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3547), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3548), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3551), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3553), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3553), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3554), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3555), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3555), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3558), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3323), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3561), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3561), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3583), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2337), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2338), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2340), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3590), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3594), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3595), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3314), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3802), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3659), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 3, .production_id = 9), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 3, .production_id = 9), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(490), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2880), + [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2881), + [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2882), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2884), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2901), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2905), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2906), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(397), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(58), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(135), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(617), + [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(120), + [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(136), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(137), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(137), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2020), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2231), + [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2231), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2229), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2227), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3444), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3445), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2225), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3446), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2222), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2218), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2216), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3450), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4441), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4023), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3451), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3451), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4024), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4025), + [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4025), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4254), + [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2875), + [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4256), + [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4256), + [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4375), + [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2068), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2041), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2067), + [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4257), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4028), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4442), + [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3436), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3453), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3454), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 3, .production_id = 9), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 3, .production_id = 9), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(493), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3387), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3386), + [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3385), + [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3384), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3383), + [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3382), + [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3381), + [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(406), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(71), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(201), + [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(614), + [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(157), + [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(205), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(208), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(208), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2025), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2200), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2200), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2199), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2198), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3549), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3550), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2197), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3552), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2196), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2195), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2194), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3556), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4447), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4065), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3557), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3557), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4066), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4067), + [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4067), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4276), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2873), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4278), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4278), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4387), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2064), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2038), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2062), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4279), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4070), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4448), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3322), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3559), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3560), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(472), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), + [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2984), + [1540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3123), + [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3072), + [1546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3271), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3146), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(328), + [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(53), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(152), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(475), + [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(207), + [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(147), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(142), + [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(142), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3702), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2005), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2201), + [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2201), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2187), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2264), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3490), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3448), + [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2234), + [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3452), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2235), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2354), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2321), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3547), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3548), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3551), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3553), + [1627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3553), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3554), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3555), + [1636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3555), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3558), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3323), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3561), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3561), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3583), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2337), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2338), + [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2340), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3590), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3594), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3595), + [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3314), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3802), + [1678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3659), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(480), + [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3252), + [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3257), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3260), + [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3264), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3286), + [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3288), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3289), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(400), + [1720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(64), + [1723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(163), + [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(625), + [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(211), + [1732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(165), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(167), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(167), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2023), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2211), + [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2211), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2208), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2207), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3496), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3497), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2206), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3499), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2205), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2204), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2203), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3503), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4444), + [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4044), + [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3504), + [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3504), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4045), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4046), + [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4046), + [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4265), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2874), + [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4267), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4267), + [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4381), + [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2066), + [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2039), + [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(2065), + [1825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4268), + [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4049), + [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(4445), + [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3393), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3506), + [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2), SHIFT_REPEAT(3507), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 2, .production_id = 3), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 2, .production_id = 3), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 9), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 9), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, .production_id = 3), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, .production_id = 3), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), + [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(472), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3123), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3072), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3271), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3146), + [2006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(328), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(53), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(152), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(475), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(251), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(147), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(142), + [2027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(142), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3702), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2005), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2201), + [2039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2201), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2187), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2264), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3490), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3448), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2234), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3452), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2235), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2354), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2321), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3547), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3548), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3551), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3553), + [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3553), + [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3554), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3555), + [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3555), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3558), + [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3323), + [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3561), + [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3561), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3583), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2337), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2338), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2340), + [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3590), + [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3594), + [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3595), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3314), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3802), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3659), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(472), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), + [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3072), + [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3271), + [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3146), + [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(328), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(53), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(152), + [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(475), + [2163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(252), + [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(147), + [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(142), + [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(142), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3702), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2005), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2201), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2201), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2187), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2264), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3490), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3448), + [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2234), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3452), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2235), + [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2354), + [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2321), + [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3547), + [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3548), + [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3551), + [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3553), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3553), + [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3554), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3555), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3555), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3558), + [2241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3323), + [2244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3561), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3561), + [2250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3583), + [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2337), + [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2338), + [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2340), + [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3590), + [2265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3594), + [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3595), + [2271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3314), + [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3802), + [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3659), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 2, .production_id = 3), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 2, .production_id = 3), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 3, .production_id = 9), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 3, .production_id = 9), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [2396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(485), + [2399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3108), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3107), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3105), + [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3103), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3101), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3061), + [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(390), + [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(85), + [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(227), + [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(619), + [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(259), + [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(192), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(191), + [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(191), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2016), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2177), + [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2177), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2176), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2175), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3655), + [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3656), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2174), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3658), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2173), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2172), + [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2171), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3662), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4453), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4107), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3663), + [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3663), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4108), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4109), + [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4109), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4298), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2863), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4300), + [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4300), + [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4399), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2057), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2035), + [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2055), + [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4301), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4112), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4454), + [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3246), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3665), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3666), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(493), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3386), + [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3385), + [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3384), + [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3383), + [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3382), + [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3381), + [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(406), + [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(71), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(201), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(614), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(262), + [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(205), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(208), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(208), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2025), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2200), + [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2200), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2199), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2198), + [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3549), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3550), + [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2197), + [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3552), + [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2196), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2195), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2194), + [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3556), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4447), + [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4065), + [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3557), + [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3557), + [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4066), + [2646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4067), + [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4067), + [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4276), + [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2873), + [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4278), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4278), + [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4387), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2064), + [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2038), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2062), + [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4279), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4070), + [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4448), + [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3322), + [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3559), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3560), + [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(490), + [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2881), + [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2882), + [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2884), + [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2901), + [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2905), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2906), + [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(397), + [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(58), + [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(135), + [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(617), + [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(263), + [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(136), + [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(137), + [2736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(137), + [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2020), + [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2231), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2231), + [2748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2229), + [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2227), + [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3444), + [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3445), + [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2225), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3446), + [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2222), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2218), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2216), + [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3450), + [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4441), + [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4023), + [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3451), + [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3451), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4024), + [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4025), + [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4025), + [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4254), + [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2875), + [2805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4256), + [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4256), + [2811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4375), + [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2068), + [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2041), + [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2067), + [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4257), + [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4028), + [2829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4442), + [2832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3436), + [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3453), + [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3454), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(480), + [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3257), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3260), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3264), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3286), + [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3288), + [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3289), + [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(400), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(64), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(163), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(625), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(265), + [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(165), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(167), + [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(167), + [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2023), + [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2211), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2211), + [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2208), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2207), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3496), + [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3497), + [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2206), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3499), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2205), + [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2204), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2203), + [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3503), + [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4444), + [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4044), + [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3504), + [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3504), + [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4045), + [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4046), + [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4046), + [2950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4265), + [2953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2874), + [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4267), + [2959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4267), + [2962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4381), + [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2066), + [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2039), + [2971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2065), + [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4268), + [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4049), + [2980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(4445), + [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3393), + [2986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3506), + [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(3507), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 3, .production_id = 9), + [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 3, .production_id = 9), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(485), + [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3107), + [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3105), + [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3103), + [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3101), + [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3061), + [3042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(390), + [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(85), + [3048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(227), + [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(619), + [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(269), + [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(192), + [3060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(191), + [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(191), + [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2016), + [3069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2177), + [3072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2177), + [3075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2176), + [3078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2175), + [3081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3655), + [3084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3656), + [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2174), + [3090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3658), + [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2173), + [3096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2172), + [3099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2171), + [3102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3662), + [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4453), + [3108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4107), + [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3663), + [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3663), + [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4108), + [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4109), + [3123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4109), + [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4298), + [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2863), + [3132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4300), + [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4300), + [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4399), + [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2057), + [3144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2035), + [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2055), + [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4301), + [3153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4112), + [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4454), + [3159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3246), + [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3665), + [3165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3666), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(493), + [3177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3385), + [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3384), + [3183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3383), + [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3382), + [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3381), + [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(406), + [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(71), + [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(201), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(614), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(273), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(205), + [3210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(208), + [3213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(208), + [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2025), + [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2200), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2200), + [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2199), + [3228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2198), + [3231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3549), + [3234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3550), + [3237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2197), + [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3552), + [3243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2196), + [3246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2195), + [3249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2194), + [3252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3556), + [3255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4447), + [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4065), + [3261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3557), + [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3557), + [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4066), + [3270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4067), + [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4067), + [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4276), + [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2873), + [3282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4278), + [3285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4278), + [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4387), + [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2064), + [3294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2038), + [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2062), + [3300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4279), + [3303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4070), + [3306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4448), + [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3322), + [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3559), + [3315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3560), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), + [3322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(472), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), + [3327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3271), + [3330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3146), + [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(328), + [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(53), + [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(152), + [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(475), + [3345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(275), + [3348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(147), + [3351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(142), + [3354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(142), + [3357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3702), + [3360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2005), + [3363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2201), + [3366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2201), + [3369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2187), + [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2264), + [3375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3490), + [3378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3448), + [3381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2234), + [3384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3452), + [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2235), + [3390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2354), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2321), + [3396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3547), + [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3548), + [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3551), + [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3553), + [3408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3553), + [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3554), + [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3555), + [3417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3555), + [3420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3558), + [3423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3323), + [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3561), + [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3561), + [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3583), + [3435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2337), + [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2338), + [3441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2340), + [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3590), + [3447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3594), + [3450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3595), + [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3314), + [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3802), + [3459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3659), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [3466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(480), + [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3260), + [3472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3264), + [3475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3286), + [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3288), + [3481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3289), + [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(400), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(64), + [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(163), + [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(625), + [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(278), + [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(165), + [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(167), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(167), + [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2023), + [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2211), + [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2211), + [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2208), + [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2207), + [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3496), + [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3497), + [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2206), + [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3499), + [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2205), + [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2204), + [3541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2203), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3503), + [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4444), + [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4044), + [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3504), + [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3504), + [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4045), + [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4046), + [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4046), + [3568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4265), + [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2874), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4267), + [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4267), + [3580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4381), + [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2066), + [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2039), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2065), + [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4268), + [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4049), + [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4445), + [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3393), + [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3506), + [3607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3507), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 2, .production_id = 3), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 2, .production_id = 3), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(490), + [3621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2882), + [3624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2884), + [3627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2901), + [3630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2905), + [3633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2906), + [3636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(397), + [3639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(58), + [3642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(135), + [3645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(617), + [3648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(281), + [3651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(136), + [3654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(137), + [3657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(137), + [3660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2020), + [3663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2231), + [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2231), + [3669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2229), + [3672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2227), + [3675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3444), + [3678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3445), + [3681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2225), + [3684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3446), + [3687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2222), + [3690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2218), + [3693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2216), + [3696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3450), + [3699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4441), + [3702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4023), + [3705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3451), + [3708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3451), + [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4024), + [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4025), + [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4025), + [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4254), + [3723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2875), + [3726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4256), + [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4256), + [3732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4375), + [3735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2068), + [3738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2041), + [3741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2067), + [3744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4257), + [3747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4028), + [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4442), + [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3436), + [3756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3453), + [3759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3454), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(485), + [3769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3105), + [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3103), + [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3101), + [3778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3061), + [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(390), + [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(85), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(227), + [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(619), + [3793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(284), + [3796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(192), + [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(191), + [3802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(191), + [3805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2016), + [3808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2177), + [3811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2177), + [3814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2176), + [3817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2175), + [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3655), + [3823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3656), + [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2174), + [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3658), + [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2173), + [3835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2172), + [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2171), + [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3662), + [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4453), + [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4107), + [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3663), + [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3663), + [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4108), + [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4109), + [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4109), + [3865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4298), + [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2863), + [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4300), + [3874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4300), + [3877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4399), + [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2057), + [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2035), + [3886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2055), + [3889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4301), + [3892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4112), + [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4454), + [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3246), + [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3665), + [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3666), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(480), + [3914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3264), + [3917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3286), + [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3288), + [3923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3289), + [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(400), + [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(64), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(163), + [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(625), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(287), + [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(165), + [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(167), + [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(167), + [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2023), + [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2211), + [3956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2211), + [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2208), + [3962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2207), + [3965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3496), + [3968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3497), + [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2206), + [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3499), + [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2205), + [3980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2204), + [3983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2203), + [3986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3503), + [3989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4444), + [3992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4044), + [3995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3504), + [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3504), + [4001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4045), + [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4046), + [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4046), + [4010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4265), + [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2874), + [4016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4267), + [4019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4267), + [4022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4381), + [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2066), + [4028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2039), + [4031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2065), + [4034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4268), + [4037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4049), + [4040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4445), + [4043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3393), + [4046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3506), + [4049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3507), + [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, .production_id = 3), + [4054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2, .production_id = 3), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 3, .production_id = 9), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 3, .production_id = 9), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), + [4162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(472), + [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), + [4167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3146), + [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(328), + [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(53), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(152), + [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(475), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(291), + [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(147), + [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(142), + [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(142), + [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3702), + [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2005), + [4200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2201), + [4203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2201), + [4206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2187), + [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2264), + [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3490), + [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3448), + [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2234), + [4221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3452), + [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2235), + [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2354), + [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2321), + [4233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3547), + [4236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3548), + [4239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3551), + [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3553), + [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3553), + [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3554), + [4251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3555), + [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3555), + [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3558), + [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3323), + [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3561), + [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3561), + [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3583), + [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2337), + [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2338), + [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2340), + [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3590), + [4284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3594), + [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3595), + [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3314), + [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3802), + [4296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3659), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(493), + [4306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3384), + [4309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3383), + [4312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3382), + [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3381), + [4318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(406), + [4321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(71), + [4324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(201), + [4327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(614), + [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(294), + [4333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(205), + [4336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(208), + [4339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(208), + [4342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2025), + [4345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2200), + [4348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2200), + [4351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2199), + [4354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2198), + [4357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3549), + [4360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3550), + [4363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2197), + [4366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3552), + [4369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2196), + [4372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2195), + [4375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2194), + [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3556), + [4381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4447), + [4384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4065), + [4387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3557), + [4390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3557), + [4393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4066), + [4396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4067), + [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4067), + [4402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4276), + [4405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2873), + [4408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4278), + [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4278), + [4414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4387), + [4417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2064), + [4420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2038), + [4423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2062), + [4426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4279), + [4429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4070), + [4432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4448), + [4435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3322), + [4438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3559), + [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3560), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(497), + [4449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2930), + [4452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2927), + [4455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2924), + [4458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2919), + [4461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2918), + [4464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(422), + [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(93), + [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(237), + [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(645), + [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(296), + [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(173), + [4482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(171), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(171), + [4488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2012), + [4491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2169), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2169), + [4497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2167), + [4500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2166), + [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3708), + [4506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3709), + [4509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2164), + [4512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3711), + [4515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2163), + [4518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2161), + [4521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2160), + [4524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3715), + [4527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4456), + [4530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4128), + [4533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3716), + [4536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3716), + [4539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4129), + [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4130), + [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4130), + [4548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4309), + [4551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2862), + [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4311), + [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4311), + [4560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4405), + [4563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2054), + [4566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2034), + [4569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(2053), + [4572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4312), + [4575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4133), + [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(4457), + [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3178), + [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3718), + [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chapter_repeat1, 2), SHIFT_REPEAT(3719), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(490), + [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2884), + [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2901), + [4605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2905), + [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2906), + [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(397), + [4614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(58), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(135), + [4620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(617), + [4623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(300), + [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(136), + [4629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(137), + [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(137), + [4635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2020), + [4638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2231), + [4641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2231), + [4644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2229), + [4647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2227), + [4650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3444), + [4653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3445), + [4656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2225), + [4659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3446), + [4662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2222), + [4665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2218), + [4668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2216), + [4671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3450), + [4674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4441), + [4677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4023), + [4680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3451), + [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3451), + [4686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4024), + [4689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4025), + [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4025), + [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4254), + [4698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2875), + [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4256), + [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4256), + [4707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4375), + [4710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2068), + [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2041), + [4716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2067), + [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4257), + [4722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4028), + [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4442), + [4728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3436), + [4731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3453), + [4734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3454), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(493), + [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3383), + [4745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3382), + [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3381), + [4751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(406), + [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(71), + [4757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(201), + [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(614), + [4763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(302), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(205), + [4769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(208), + [4772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(208), + [4775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2025), + [4778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2200), + [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2200), + [4784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2199), + [4787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2198), + [4790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3549), + [4793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3550), + [4796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2197), + [4799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3552), + [4802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2196), + [4805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2195), + [4808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2194), + [4811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3556), + [4814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4447), + [4817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4065), + [4820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3557), + [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3557), + [4826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4066), + [4829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4067), + [4832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4067), + [4835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4276), + [4838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2873), + [4841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4278), + [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4278), + [4847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4387), + [4850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2064), + [4853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2038), + [4856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2062), + [4859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4279), + [4862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4070), + [4865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4448), + [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3322), + [4871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3559), + [4874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3560), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 2, .production_id = 3), + [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 2, .production_id = 3), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(497), + [4886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2927), + [4889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2924), + [4892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2919), + [4895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2918), + [4898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(422), + [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(93), + [4904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(237), + [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(645), + [4910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(304), + [4913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(173), + [4916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(171), + [4919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(171), + [4922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2012), + [4925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2169), + [4928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2169), + [4931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2167), + [4934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2166), + [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3708), + [4940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3709), + [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2164), + [4946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3711), + [4949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2163), + [4952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2161), + [4955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2160), + [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3715), + [4961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4456), + [4964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4128), + [4967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3716), + [4970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3716), + [4973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4129), + [4976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4130), + [4979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4130), + [4982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4309), + [4985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2862), + [4988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4311), + [4991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4311), + [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4405), + [4997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2054), + [5000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2034), + [5003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2053), + [5006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4312), + [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4133), + [5012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4457), + [5015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3178), + [5018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3718), + [5021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3719), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(480), + [5029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3286), + [5032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3288), + [5035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3289), + [5038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(400), + [5041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(64), + [5044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(163), + [5047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(625), + [5050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(306), + [5053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(165), + [5056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(167), + [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(167), + [5062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2023), + [5065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2211), + [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2211), + [5071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2208), + [5074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2207), + [5077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3496), + [5080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3497), + [5083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2206), + [5086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3499), + [5089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2205), + [5092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2204), + [5095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2203), + [5098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3503), + [5101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4444), + [5104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4044), + [5107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3504), + [5110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3504), + [5113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4045), + [5116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4046), + [5119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4046), + [5122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4265), + [5125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2874), + [5128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4267), + [5131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4267), + [5134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4381), + [5137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2066), + [5140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2039), + [5143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2065), + [5146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4268), + [5149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4049), + [5152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4445), + [5155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3393), + [5158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3506), + [5161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3507), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 3, .production_id = 9), + [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 3, .production_id = 9), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(490), + [5175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2901), + [5178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2905), + [5181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2906), + [5184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(397), + [5187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(58), + [5190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(135), + [5193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(617), + [5196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(309), + [5199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(136), + [5202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(137), + [5205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(137), + [5208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2020), + [5211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2231), + [5214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2231), + [5217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2229), + [5220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2227), + [5223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3444), + [5226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3445), + [5229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2225), + [5232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3446), + [5235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2222), + [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2218), + [5241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2216), + [5244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3450), + [5247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4441), + [5250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4023), + [5253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3451), + [5256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3451), + [5259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4024), + [5262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4025), + [5265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4025), + [5268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4254), + [5271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2875), + [5274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4256), + [5277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4256), + [5280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4375), + [5283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2068), + [5286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2041), + [5289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2067), + [5292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4257), + [5295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4028), + [5298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4442), + [5301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3436), + [5304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3453), + [5307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3454), + [5310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(485), + [5313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3103), + [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3101), + [5319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3061), + [5322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(390), + [5325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(85), + [5328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(227), + [5331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(619), + [5334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(310), + [5337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(192), + [5340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(191), + [5343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(191), + [5346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2016), + [5349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2177), + [5352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2177), + [5355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2176), + [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2175), + [5361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3655), + [5364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3656), + [5367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2174), + [5370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3658), + [5373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2173), + [5376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2172), + [5379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2171), + [5382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3662), + [5385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4453), + [5388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4107), + [5391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3663), + [5394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3663), + [5397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4108), + [5400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4109), + [5403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4109), + [5406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4298), + [5409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2863), + [5412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4300), + [5415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4300), + [5418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4399), + [5421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2057), + [5424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2035), + [5427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2055), + [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4301), + [5433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4112), + [5436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4454), + [5439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3246), + [5442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3665), + [5445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3666), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), + [5450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(472), + [5453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), + [5455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(328), + [5458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(53), + [5461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(152), + [5464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(475), + [5467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(311), + [5470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(147), + [5473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(142), + [5476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(142), + [5479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3702), + [5482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2005), + [5485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2201), + [5488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2201), + [5491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2187), + [5494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2264), + [5497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3490), + [5500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3448), + [5503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2234), + [5506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3452), + [5509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2235), + [5512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2354), + [5515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2321), + [5518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3547), + [5521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3548), + [5524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3551), + [5527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3553), + [5530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3553), + [5533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3554), + [5536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3555), + [5539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3555), + [5542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3558), + [5545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3323), + [5548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3561), + [5551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3561), + [5554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3583), + [5557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2337), + [5560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2338), + [5563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2340), + [5566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3590), + [5569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3594), + [5572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3595), + [5575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3314), + [5578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3802), + [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3659), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 2, .production_id = 4), + [5600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 2, .production_id = 4), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 14), + [5606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 14), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [5612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(480), + [5615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3288), + [5618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3289), + [5621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(400), + [5624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(64), + [5627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(163), + [5630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(625), + [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(322), + [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(165), + [5639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(167), + [5642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(167), + [5645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2023), + [5648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2211), + [5651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2211), + [5654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2208), + [5657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2207), + [5660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3496), + [5663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3497), + [5666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2206), + [5669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3499), + [5672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2205), + [5675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2204), + [5678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2203), + [5681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3503), + [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4444), + [5687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4044), + [5690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3504), + [5693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3504), + [5696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4045), + [5699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4046), + [5702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4046), + [5705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4265), + [5708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2874), + [5711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4267), + [5714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4267), + [5717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4381), + [5720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2066), + [5723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2039), + [5726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2065), + [5729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4268), + [5732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4049), + [5735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4445), + [5738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3393), + [5741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3506), + [5744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3507), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(613), + [5752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2816), + [5755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2817), + [5758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2818), + [5761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2819), + [5764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(431), + [5767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(101), + [5770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(193), + [5773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(931), + [5776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(324), + [5779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(149), + [5782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(148), + [5785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(148), + [5788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2009), + [5791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2157), + [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2157), + [5797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2155), + [5800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2154), + [5803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3761), + [5806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3762), + [5809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2153), + [5812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3764), + [5815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2152), + [5818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2143), + [5821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2138), + [5824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3768), + [5827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4459), + [5830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4149), + [5833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3769), + [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3769), + [5839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4150), + [5842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4151), + [5845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4151), + [5848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4320), + [5851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2860), + [5854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4322), + [5857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4322), + [5860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4411), + [5863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2052), + [5866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2033), + [5869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(2051), + [5872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4323), + [5875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4154), + [5878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(4460), + [5881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3136), + [5884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3771), + [5887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_section_repeat1, 2), SHIFT_REPEAT(3772), + [5890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(497), + [5893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2924), + [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2919), + [5899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2918), + [5902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(422), + [5905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(93), + [5908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(237), + [5911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(645), + [5914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(325), + [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(173), + [5920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(171), + [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(171), + [5926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2012), + [5929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2169), + [5932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2169), + [5935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2167), + [5938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2166), + [5941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3708), + [5944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3709), + [5947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2164), + [5950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3711), + [5953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2163), + [5956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2161), + [5959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2160), + [5962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3715), + [5965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4456), + [5968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4128), + [5971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3716), + [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3716), + [5977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4129), + [5980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4130), + [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4130), + [5986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4309), + [5989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2862), + [5992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4311), + [5995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4311), + [5998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4405), + [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2054), + [6004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2034), + [6007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2053), + [6010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4312), + [6013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4133), + [6016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4457), + [6019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3178), + [6022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3718), + [6025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3719), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 1, .production_id = 1), + [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 1, .production_id = 1), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), + [6042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(472), + [6045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), + [6047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(53), + [6050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(152), + [6053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(475), + [6056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(329), + [6059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(147), + [6062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(142), + [6065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(142), + [6068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3702), + [6071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2005), + [6074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2201), + [6077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2201), + [6080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2187), + [6083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2264), + [6086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3490), + [6089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3448), + [6092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2234), + [6095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3452), + [6098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2235), + [6101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2354), + [6104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2321), + [6107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3547), + [6110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3548), + [6113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3551), + [6116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3553), + [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3553), + [6122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3554), + [6125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3555), + [6128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3555), + [6131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3558), + [6134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3323), + [6137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3561), + [6140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3561), + [6143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3583), + [6146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2337), + [6149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2338), + [6152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2340), + [6155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3590), + [6158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3594), + [6161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3595), + [6164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3314), + [6167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3802), + [6170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3659), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 23), + [6177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 23), + [6179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(490), + [6182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2905), + [6185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2906), + [6188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(397), + [6191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(58), + [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(135), + [6197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(617), + [6200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(332), + [6203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(136), + [6206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(137), + [6209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(137), + [6212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2020), + [6215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2231), + [6218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2231), + [6221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2229), + [6224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2227), + [6227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3444), + [6230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3445), + [6233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2225), + [6236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3446), + [6239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2222), + [6242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2218), + [6245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2216), + [6248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3450), + [6251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4441), + [6254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4023), + [6257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3451), + [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3451), + [6263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4024), + [6266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4025), + [6269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4025), + [6272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4254), + [6275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2875), + [6278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4256), + [6281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4256), + [6284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4375), + [6287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2068), + [6290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2041), + [6293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2067), + [6296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4257), + [6299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4028), + [6302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4442), + [6305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3436), + [6308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3453), + [6311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3454), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [6420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(493), + [6423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3382), + [6426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3381), + [6429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(406), + [6432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(71), + [6435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(201), + [6438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(614), + [6441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(340), + [6444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(205), + [6447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(208), + [6450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(208), + [6453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2025), + [6456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2200), + [6459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2200), + [6462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2199), + [6465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2198), + [6468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3549), + [6471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3550), + [6474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2197), + [6477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3552), + [6480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2196), + [6483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2195), + [6486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2194), + [6489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3556), + [6492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4447), + [6495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4065), + [6498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3557), + [6501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3557), + [6504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4066), + [6507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4067), + [6510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4067), + [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4276), + [6516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2873), + [6519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4278), + [6522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4278), + [6525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4387), + [6528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2064), + [6531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2038), + [6534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2062), + [6537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4279), + [6540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4070), + [6543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4448), + [6546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3322), + [6549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3559), + [6552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3560), + [6555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(485), + [6558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3101), + [6561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3061), + [6564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(390), + [6567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(85), + [6570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(227), + [6573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(619), + [6576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(341), + [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(192), + [6582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(191), + [6585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(191), + [6588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2016), + [6591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2177), + [6594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2177), + [6597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2176), + [6600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2175), + [6603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3655), + [6606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3656), + [6609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2174), + [6612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3658), + [6615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2173), + [6618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2172), + [6621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2171), + [6624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3662), + [6627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4453), + [6630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4107), + [6633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3663), + [6636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3663), + [6639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4108), + [6642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4109), + [6645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4109), + [6648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4298), + [6651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2863), + [6654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4300), + [6657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4300), + [6660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4399), + [6663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2057), + [6666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2035), + [6669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2055), + [6672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4301), + [6675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4112), + [6678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4454), + [6681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3246), + [6684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3665), + [6687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3666), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [6694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(497), + [6697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2919), + [6700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2918), + [6703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(422), + [6706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(93), + [6709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(237), + [6712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(645), + [6715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(344), + [6718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(173), + [6721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(171), + [6724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(171), + [6727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2012), + [6730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2169), + [6733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2169), + [6736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2167), + [6739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2166), + [6742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3708), + [6745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3709), + [6748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2164), + [6751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3711), + [6754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2163), + [6757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2161), + [6760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2160), + [6763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3715), + [6766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4456), + [6769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4128), + [6772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3716), + [6775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3716), + [6778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4129), + [6781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4130), + [6784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4130), + [6787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4309), + [6790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2862), + [6793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4311), + [6796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4311), + [6799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4405), + [6802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2054), + [6805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2034), + [6808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2053), + [6811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4312), + [6814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4133), + [6817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4457), + [6820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3178), + [6823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3718), + [6826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3719), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [6831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(493), + [6834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3381), + [6837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(406), + [6840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(71), + [6843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(201), + [6846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(614), + [6849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(346), + [6852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(205), + [6855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(208), + [6858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(208), + [6861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2025), + [6864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2200), + [6867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2200), + [6870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2199), + [6873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2198), + [6876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3549), + [6879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3550), + [6882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2197), + [6885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3552), + [6888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2196), + [6891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2195), + [6894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2194), + [6897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3556), + [6900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4447), + [6903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4065), + [6906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3557), + [6909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3557), + [6912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4066), + [6915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4067), + [6918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4067), + [6921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4276), + [6924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2873), + [6927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4278), + [6930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4278), + [6933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4387), + [6936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2064), + [6939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2038), + [6942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2062), + [6945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4279), + [6948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4070), + [6951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4448), + [6954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3322), + [6957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3559), + [6960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3560), + [6963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(485), + [6966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3061), + [6969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(390), + [6972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(85), + [6975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(227), + [6978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(619), + [6981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(347), + [6984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(192), + [6987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(191), + [6990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(191), + [6993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2016), + [6996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2177), + [6999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2177), + [7002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2176), + [7005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2175), + [7008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3655), + [7011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3656), + [7014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2174), + [7017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3658), + [7020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2173), + [7023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2172), + [7026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2171), + [7029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3662), + [7032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4453), + [7035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4107), + [7038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3663), + [7041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3663), + [7044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4108), + [7047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4109), + [7050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4109), + [7053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4298), + [7056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2863), + [7059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4300), + [7062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4300), + [7065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4399), + [7068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2057), + [7071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2035), + [7074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2055), + [7077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4301), + [7080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4112), + [7083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4454), + [7086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3246), + [7089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3665), + [7092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3666), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [7105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(613), + [7108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2817), + [7111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2818), + [7114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2819), + [7117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(431), + [7120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(101), + [7123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(193), + [7126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(931), + [7129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(353), + [7132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(149), + [7135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(148), + [7138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(148), + [7141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2009), + [7144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2157), + [7147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2157), + [7150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2155), + [7153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2154), + [7156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3761), + [7159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3762), + [7162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2153), + [7165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3764), + [7168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2152), + [7171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2143), + [7174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2138), + [7177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3768), + [7180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4459), + [7183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4149), + [7186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3769), + [7189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3769), + [7192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4150), + [7195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4151), + [7198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4151), + [7201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4320), + [7204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2860), + [7207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4322), + [7210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4322), + [7213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4411), + [7216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2052), + [7219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2033), + [7222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2051), + [7225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4323), + [7228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4154), + [7231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4460), + [7234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3136), + [7237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3771), + [7240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3772), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [7249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(490), + [7252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2906), + [7255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(397), + [7258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(58), + [7261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(135), + [7264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(617), + [7267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(357), + [7270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(136), + [7273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(137), + [7276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(137), + [7279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2020), + [7282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2231), + [7285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2231), + [7288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2229), + [7291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2227), + [7294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3444), + [7297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3445), + [7300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2225), + [7303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3446), + [7306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2222), + [7309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2218), + [7312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2216), + [7315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3450), + [7318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4441), + [7321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4023), + [7324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3451), + [7327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3451), + [7330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4024), + [7333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4025), + [7336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4025), + [7339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4254), + [7342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2875), + [7345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4256), + [7348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4256), + [7351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4375), + [7354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2068), + [7357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2041), + [7360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2067), + [7363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4257), + [7366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4028), + [7369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4442), + [7372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3436), + [7375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3453), + [7378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3454), + [7381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(480), + [7384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3289), + [7387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(400), + [7390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(64), + [7393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(163), + [7396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(625), + [7399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(358), + [7402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(165), + [7405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(167), + [7408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(167), + [7411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2023), + [7414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2211), + [7417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2211), + [7420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2208), + [7423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2207), + [7426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3496), + [7429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3497), + [7432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2206), + [7435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3499), + [7438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2205), + [7441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2204), + [7444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2203), + [7447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3503), + [7450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4444), + [7453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4044), + [7456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3504), + [7459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3504), + [7462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4045), + [7465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4046), + [7468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4046), + [7471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4265), + [7474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2874), + [7477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4267), + [7480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4267), + [7483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4381), + [7486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2066), + [7489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2039), + [7492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2065), + [7495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4268), + [7498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4049), + [7501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4445), + [7504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3393), + [7507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3506), + [7510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3507), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [7521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(490), + [7524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(397), + [7527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(58), + [7530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(135), + [7533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(617), + [7536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(363), + [7539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(136), + [7542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(137), + [7545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(137), + [7548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2020), + [7551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2231), + [7554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2231), + [7557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2229), + [7560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2227), + [7563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3444), + [7566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3445), + [7569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2225), + [7572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3446), + [7575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2222), + [7578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2218), + [7581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2216), + [7584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3450), + [7587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4441), + [7590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4023), + [7593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3451), + [7596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3451), + [7599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4024), + [7602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4025), + [7605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4025), + [7608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4254), + [7611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2875), + [7614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4256), + [7617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4256), + [7620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4375), + [7623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2068), + [7626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2041), + [7629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2067), + [7632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4257), + [7635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4028), + [7638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4442), + [7641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3436), + [7644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3453), + [7647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3454), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [7678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [7700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [7744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(480), + [7747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(400), + [7750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(64), + [7753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(163), + [7756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(625), + [7759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(366), + [7762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(165), + [7765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(167), + [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(167), + [7771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2023), + [7774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2211), + [7777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2211), + [7780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2208), + [7783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2207), + [7786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3496), + [7789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3497), + [7792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2206), + [7795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3499), + [7798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2205), + [7801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2204), + [7804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2203), + [7807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3503), + [7810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4444), + [7813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4044), + [7816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3504), + [7819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3504), + [7822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4045), + [7825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4046), + [7828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4046), + [7831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4265), + [7834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2874), + [7837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4267), + [7840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4267), + [7843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4381), + [7846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2066), + [7849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2039), + [7852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2065), + [7855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4268), + [7858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4049), + [7861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4445), + [7864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3393), + [7867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3506), + [7870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3507), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [7875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(497), + [7878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2918), + [7881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(422), + [7884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(93), + [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(237), + [7890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(645), + [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(368), + [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(173), + [7899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(171), + [7902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(171), + [7905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2012), + [7908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2169), + [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2169), + [7914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2167), + [7917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2166), + [7920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3708), + [7923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3709), + [7926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2164), + [7929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3711), + [7932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2163), + [7935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2161), + [7938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2160), + [7941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3715), + [7944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4456), + [7947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4128), + [7950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3716), + [7953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3716), + [7956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4129), + [7959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4130), + [7962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4130), + [7965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4309), + [7968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2862), + [7971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4311), + [7974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4311), + [7977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4405), + [7980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2054), + [7983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2034), + [7986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2053), + [7989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4312), + [7992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4133), + [7995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4457), + [7998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3178), + [8001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3718), + [8004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3719), + [8007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(640), + [8010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2942), + [8013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2943), + [8016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2944), + [8019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(445), + [8022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(107), + [8025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(174), + [8028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(1143), + [8031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(369), + [8034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(244), + [8037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(181), + [8040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(181), + [8043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2002), + [8046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2136), + [8049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2136), + [8052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2135), + [8055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2134), + [8058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3814), + [8061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3815), + [8064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2115), + [8067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3817), + [8070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2112), + [8073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2108), + [8076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2107), + [8079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3821), + [8082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4462), + [8085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4170), + [8088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3822), + [8091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3822), + [8094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4171), + [8097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4172), + [8100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4172), + [8103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4331), + [8106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2859), + [8109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4333), + [8112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4333), + [8115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4417), + [8118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2050), + [8121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2032), + [8124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(2049), + [8127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4334), + [8130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4175), + [8133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(4463), + [8136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3080), + [8139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3824), + [8142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsection_repeat1, 2), SHIFT_REPEAT(3825), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [8157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(493), + [8160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(406), + [8163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(71), + [8166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(201), + [8169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(614), + [8172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(376), + [8175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(205), + [8178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(208), + [8181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(208), + [8184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2025), + [8187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2200), + [8190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2200), + [8193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2199), + [8196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2198), + [8199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3549), + [8202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3550), + [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2197), + [8208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3552), + [8211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2196), + [8214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2195), + [8217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2194), + [8220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3556), + [8223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4447), + [8226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4065), + [8229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3557), + [8232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3557), + [8235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4066), + [8238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4067), + [8241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4067), + [8244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4276), + [8247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2873), + [8250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4278), + [8253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4278), + [8256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4387), + [8259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2064), + [8262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2038), + [8265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2062), + [8268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4279), + [8271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4070), + [8274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4448), + [8277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3322), + [8280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3559), + [8283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3560), + [8286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(613), + [8289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2818), + [8292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2819), + [8295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(431), + [8298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(101), + [8301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(193), + [8304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(931), + [8307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(377), + [8310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(149), + [8313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(148), + [8316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(148), + [8319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2009), + [8322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2157), + [8325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2157), + [8328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2155), + [8331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2154), + [8334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3761), + [8337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3762), + [8340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2153), + [8343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3764), + [8346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2152), + [8349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2143), + [8352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2138), + [8355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3768), + [8358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4459), + [8361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4149), + [8364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3769), + [8367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3769), + [8370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4150), + [8373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4151), + [8376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4151), + [8379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4320), + [8382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2860), + [8385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4322), + [8388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4322), + [8391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4411), + [8394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2052), + [8397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2033), + [8400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2051), + [8403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4323), + [8406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4154), + [8409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4460), + [8412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3136), + [8415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3771), + [8418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3772), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [8425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(485), + [8428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(390), + [8431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(85), + [8434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(227), + [8437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(619), + [8440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(380), + [8443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(192), + [8446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(191), + [8449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(191), + [8452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2016), + [8455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2177), + [8458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2177), + [8461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2176), + [8464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2175), + [8467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3655), + [8470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3656), + [8473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2174), + [8476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3658), + [8479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2173), + [8482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2172), + [8485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2171), + [8488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3662), + [8491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4453), + [8494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4107), + [8497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3663), + [8500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3663), + [8503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4108), + [8506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4109), + [8509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4109), + [8512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4298), + [8515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2863), + [8518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4300), + [8521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4300), + [8524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4399), + [8527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2057), + [8530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2035), + [8533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2055), + [8536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4301), + [8539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4112), + [8542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4454), + [8545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3246), + [8548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3665), + [8551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3666), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [8556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(493), + [8559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(71), + [8562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(201), + [8565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(614), + [8568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(382), + [8571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(205), + [8574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(208), + [8577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(208), + [8580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2025), + [8583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2200), + [8586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2200), + [8589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2199), + [8592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2198), + [8595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3549), + [8598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3550), + [8601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2197), + [8604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3552), + [8607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2196), + [8610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2195), + [8613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2194), + [8616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3556), + [8619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4447), + [8622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4065), + [8625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3557), + [8628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3557), + [8631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4066), + [8634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4067), + [8637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4067), + [8640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4276), + [8643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2873), + [8646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4278), + [8649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4278), + [8652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4387), + [8655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2064), + [8658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2038), + [8661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2062), + [8664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4279), + [8667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4070), + [8670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4448), + [8673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3322), + [8676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3559), + [8679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3560), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [8688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(490), + [8691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(58), + [8694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(135), + [8697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(617), + [8700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(386), + [8703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(136), + [8706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(137), + [8709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(137), + [8712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2020), + [8715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2231), + [8718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2231), + [8721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2229), + [8724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2227), + [8727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3444), + [8730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3445), + [8733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2225), + [8736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3446), + [8739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2222), + [8742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2218), + [8745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2216), + [8748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3450), + [8751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4441), + [8754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4023), + [8757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3451), + [8760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3451), + [8763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4024), + [8766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4025), + [8769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4025), + [8772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4254), + [8775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2875), + [8778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4256), + [8781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4256), + [8784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4375), + [8787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2068), + [8790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2041), + [8793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2067), + [8796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4257), + [8799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4028), + [8802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4442), + [8805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3436), + [8808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3453), + [8811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3454), + [8814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(613), + [8817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2819), + [8820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(431), + [8823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(101), + [8826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(193), + [8829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(931), + [8832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(387), + [8835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(149), + [8838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(148), + [8841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(148), + [8844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2009), + [8847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2157), + [8850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2157), + [8853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2155), + [8856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2154), + [8859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3761), + [8862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3762), + [8865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2153), + [8868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3764), + [8871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2152), + [8874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2143), + [8877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2138), + [8880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3768), + [8883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4459), + [8886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4149), + [8889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3769), + [8892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3769), + [8895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4150), + [8898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4151), + [8901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4151), + [8904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4320), + [8907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2860), + [8910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4322), + [8913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4322), + [8916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4411), + [8919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2052), + [8922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2033), + [8925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2051), + [8928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4323), + [8931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4154), + [8934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4460), + [8937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3136), + [8940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3771), + [8943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3772), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [8952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(640), + [8955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2943), + [8958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2944), + [8961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(445), + [8964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(107), + [8967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(174), + [8970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1143), + [8973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(392), + [8976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(244), + [8979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(181), + [8982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(181), + [8985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2002), + [8988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2136), + [8991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2136), + [8994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2135), + [8997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2134), + [9000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3814), + [9003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3815), + [9006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2115), + [9009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3817), + [9012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2112), + [9015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2108), + [9018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2107), + [9021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3821), + [9024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4462), + [9027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4170), + [9030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3822), + [9033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3822), + [9036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4171), + [9039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4172), + [9042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4172), + [9045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4331), + [9048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2859), + [9051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4333), + [9054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4333), + [9057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4417), + [9060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2050), + [9063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2032), + [9066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2049), + [9069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4334), + [9072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4175), + [9075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4463), + [9078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3080), + [9081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3824), + [9084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3825), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [9107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(485), + [9110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(85), + [9113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(227), + [9116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(619), + [9119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(401), + [9122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(192), + [9125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(191), + [9128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(191), + [9131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2016), + [9134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2177), + [9137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2177), + [9140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2176), + [9143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2175), + [9146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3655), + [9149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3656), + [9152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2174), + [9155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3658), + [9158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2173), + [9161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2172), + [9164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2171), + [9167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3662), + [9170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4453), + [9173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4107), + [9176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3663), + [9179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3663), + [9182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4108), + [9185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4109), + [9188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4109), + [9191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4298), + [9194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2863), + [9197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4300), + [9200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4300), + [9203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4399), + [9206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2057), + [9209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2035), + [9212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2055), + [9215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4301), + [9218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4112), + [9221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4454), + [9224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3246), + [9227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3665), + [9230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3666), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [9237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(480), + [9240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(64), + [9243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(163), + [9246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(625), + [9249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(404), + [9252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(165), + [9255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(167), + [9258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(167), + [9261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2023), + [9264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2211), + [9267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2211), + [9270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2208), + [9273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2207), + [9276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3496), + [9279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3497), + [9282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2206), + [9285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3499), + [9288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2205), + [9291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2204), + [9294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2203), + [9297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3503), + [9300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4444), + [9303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4044), + [9306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3504), + [9309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3504), + [9312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4045), + [9315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4046), + [9318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4046), + [9321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4265), + [9324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2874), + [9327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4267), + [9330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4267), + [9333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4381), + [9336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2066), + [9339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2039), + [9342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2065), + [9345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4268), + [9348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4049), + [9351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4445), + [9354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3393), + [9357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3506), + [9360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3507), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [9369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(497), + [9372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(422), + [9375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(93), + [9378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(237), + [9381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(645), + [9384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(409), + [9387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(173), + [9390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(171), + [9393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(171), + [9396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2012), + [9399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2169), + [9402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2169), + [9405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2167), + [9408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2166), + [9411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3708), + [9414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3709), + [9417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2164), + [9420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3711), + [9423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2163), + [9426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2161), + [9429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2160), + [9432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3715), + [9435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4456), + [9438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4128), + [9441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3716), + [9444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3716), + [9447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4129), + [9450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4130), + [9453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4130), + [9456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4309), + [9459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2862), + [9462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4311), + [9465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4311), + [9468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4405), + [9471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2054), + [9474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2034), + [9477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2053), + [9480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4312), + [9483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4133), + [9486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4457), + [9489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3178), + [9492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3718), + [9495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3719), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [9504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(928), + [9507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3067), + [9510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3068), + [9513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(451), + [9516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(104), + [9519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(150), + [9522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(1264), + [9525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(413), + [9528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(248), + [9531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(236), + [9534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(236), + [9537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2008), + [9540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2105), + [9543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2105), + [9546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2102), + [9549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2100), + [9552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3867), + [9555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3868), + [9558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2098), + [9561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3870), + [9564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2096), + [9567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2093), + [9570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2089), + [9573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3874), + [9576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4465), + [9579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4191), + [9582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3875), + [9585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3875), + [9588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4192), + [9591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4193), + [9594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4193), + [9597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4342), + [9600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2858), + [9603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4344), + [9606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4344), + [9609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4423), + [9612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2048), + [9615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2031), + [9618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(2047), + [9621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4345), + [9624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4196), + [9627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(4466), + [9630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3054), + [9633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3877), + [9636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subsubsection_repeat1, 2), SHIFT_REPEAT(3878), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [9641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(640), + [9644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2944), + [9647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(445), + [9650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(107), + [9653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(174), + [9656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1143), + [9659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(415), + [9662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(244), + [9665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(181), + [9668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(181), + [9671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2002), + [9674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2136), + [9677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2136), + [9680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2135), + [9683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2134), + [9686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3814), + [9689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3815), + [9692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2115), + [9695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3817), + [9698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2112), + [9701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2108), + [9704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2107), + [9707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3821), + [9710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4462), + [9713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4170), + [9716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3822), + [9719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3822), + [9722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4171), + [9725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4172), + [9728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4172), + [9731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4331), + [9734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2859), + [9737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4333), + [9740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4333), + [9743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4417), + [9746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2050), + [9749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2032), + [9752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2049), + [9755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4334), + [9758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4175), + [9761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4463), + [9764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3080), + [9767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3824), + [9770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3825), + [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [9867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(613), + [9870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(431), + [9873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(101), + [9876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(193), + [9879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(931), + [9882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(420), + [9885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(149), + [9888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(148), + [9891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(148), + [9894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2009), + [9897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2157), + [9900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2157), + [9903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2155), + [9906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2154), + [9909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3761), + [9912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3762), + [9915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2153), + [9918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3764), + [9921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2152), + [9924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2143), + [9927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2138), + [9930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3768), + [9933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4459), + [9936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4149), + [9939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3769), + [9942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3769), + [9945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4150), + [9948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4151), + [9951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4151), + [9954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4320), + [9957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2860), + [9960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4322), + [9963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4322), + [9966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4411), + [9969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2052), + [9972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2033), + [9975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2051), + [9978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4323), + [9981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4154), + [9984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4460), + [9987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3136), + [9990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3771), + [9993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3772), + [9996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(497), + [9999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(93), + [10002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(237), + [10005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(645), + [10008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(421), + [10011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(173), + [10014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(171), + [10017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(171), + [10020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2012), + [10023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2169), + [10026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2169), + [10029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2167), + [10032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2166), + [10035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3708), + [10038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3709), + [10041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2164), + [10044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3711), + [10047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2163), + [10050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2161), + [10053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2160), + [10056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3715), + [10059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4456), + [10062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4128), + [10065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3716), + [10068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3716), + [10071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4129), + [10074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4130), + [10077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4130), + [10080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4309), + [10083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2862), + [10086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4311), + [10089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4311), + [10092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4405), + [10095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2054), + [10098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2034), + [10101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2053), + [10104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4312), + [10107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4133), + [10110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4457), + [10113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3178), + [10116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3718), + [10119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3719), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [10136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(613), + [10139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(101), + [10142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(193), + [10145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(931), + [10148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(428), + [10151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(149), + [10154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(148), + [10157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(148), + [10160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2009), + [10163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2157), + [10166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2157), + [10169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2155), + [10172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2154), + [10175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3761), + [10178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3762), + [10181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2153), + [10184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3764), + [10187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2152), + [10190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2143), + [10193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2138), + [10196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3768), + [10199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4459), + [10202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4149), + [10205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3769), + [10208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3769), + [10211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4150), + [10214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4151), + [10217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4151), + [10220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4320), + [10223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2860), + [10226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4322), + [10229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4322), + [10232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4411), + [10235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2052), + [10238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2033), + [10241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2051), + [10244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4323), + [10247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4154), + [10250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4460), + [10253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3136), + [10256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3771), + [10259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3772), + [10262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(640), + [10265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(445), + [10268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(107), + [10271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(174), + [10274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1143), + [10277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(430), + [10280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(244), + [10283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(181), + [10286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(181), + [10289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2002), + [10292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2136), + [10295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2136), + [10298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2135), + [10301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2134), + [10304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3814), + [10307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3815), + [10310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2115), + [10313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3817), + [10316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2112), + [10319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2108), + [10322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2107), + [10325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3821), + [10328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4462), + [10331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4170), + [10334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3822), + [10337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3822), + [10340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4171), + [10343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4172), + [10346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4172), + [10349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4331), + [10352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2859), + [10355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4333), + [10358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4333), + [10361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4417), + [10364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2050), + [10367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2032), + [10370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2049), + [10373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4334), + [10376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4175), + [10379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4463), + [10382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3080), + [10385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3824), + [10388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3825), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [10399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(928), + [10402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3068), + [10405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(451), + [10408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(104), + [10411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(150), + [10414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1264), + [10417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(434), + [10420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(248), + [10423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(236), + [10426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(236), + [10429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2008), + [10432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2105), + [10435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2105), + [10438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2102), + [10441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2100), + [10444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3867), + [10447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3868), + [10450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2098), + [10453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3870), + [10456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2096), + [10459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2093), + [10462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2089), + [10465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3874), + [10468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4465), + [10471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4191), + [10474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3875), + [10477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3875), + [10480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4192), + [10483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4193), + [10486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4193), + [10489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4342), + [10492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2858), + [10495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4344), + [10498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4344), + [10501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4423), + [10504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2048), + [10507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2031), + [10510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2047), + [10513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4345), + [10516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4196), + [10519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4466), + [10522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3054), + [10525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3877), + [10528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3878), + [10531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1140), + [10534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3191), + [10537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(457), + [10540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(87), + [10543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(116), + [10546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(1388), + [10549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(435), + [10552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(143), + [10555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(141), + [10558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(141), + [10561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2003), + [10564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2085), + [10567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2085), + [10570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2083), + [10573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2082), + [10576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3920), + [10579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3921), + [10582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2081), + [10585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3923), + [10588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2080), + [10591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2079), + [10594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2078), + [10597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3927), + [10600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4468), + [10603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4212), + [10606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3928), + [10609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3928), + [10612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4213), + [10615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4214), + [10618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4214), + [10621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4353), + [10624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2849), + [10627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4355), + [10630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4355), + [10633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4429), + [10636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2046), + [10639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2030), + [10642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(2045), + [10645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4356), + [10648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4217), + [10651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(4469), + [10654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3000), + [10657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3930), + [10660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_paragraph_repeat1, 2), SHIFT_REPEAT(3931), + [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [10695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [10705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [10717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [10733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [10759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(640), + [10762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(107), + [10765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(174), + [10768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1143), + [10771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(441), + [10774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(244), + [10777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(181), + [10780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(181), + [10783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2002), + [10786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2136), + [10789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2136), + [10792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2135), + [10795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2134), + [10798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3814), + [10801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3815), + [10804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2115), + [10807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3817), + [10810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2112), + [10813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2108), + [10816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2107), + [10819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3821), + [10822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4462), + [10825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4170), + [10828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3822), + [10831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3822), + [10834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4171), + [10837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4172), + [10840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4172), + [10843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4331), + [10846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2859), + [10849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4333), + [10852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4333), + [10855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4417), + [10858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2050), + [10861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2032), + [10864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2049), + [10867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4334), + [10870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4175), + [10873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4463), + [10876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3080), + [10879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3824), + [10882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3825), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [10887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(928), + [10890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(451), + [10893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(104), + [10896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(150), + [10899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1264), + [10902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(444), + [10905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(248), + [10908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(236), + [10911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(236), + [10914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2008), + [10917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2105), + [10920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2105), + [10923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2102), + [10926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2100), + [10929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3867), + [10932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3868), + [10935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2098), + [10938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3870), + [10941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2096), + [10944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2093), + [10947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2089), + [10950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3874), + [10953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4465), + [10956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4191), + [10959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3875), + [10962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3875), + [10965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4192), + [10968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4193), + [10971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4193), + [10974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4342), + [10977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2858), + [10980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4344), + [10983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4344), + [10986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4423), + [10989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2048), + [10992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2031), + [10995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2047), + [10998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4345), + [11001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4196), + [11004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4466), + [11007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3054), + [11010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3877), + [11013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3878), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [11032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(928), + [11035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(104), + [11038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(150), + [11041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1264), + [11044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(452), + [11047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(248), + [11050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(236), + [11053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(236), + [11056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2008), + [11059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2105), + [11062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2105), + [11065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2102), + [11068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2100), + [11071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3867), + [11074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3868), + [11077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2098), + [11080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3870), + [11083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2096), + [11086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2093), + [11089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2089), + [11092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3874), + [11095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4465), + [11098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4191), + [11101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3875), + [11104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3875), + [11107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4192), + [11110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4193), + [11113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4193), + [11116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4342), + [11119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2858), + [11122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4344), + [11125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4344), + [11128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4423), + [11131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2048), + [11134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2031), + [11137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2047), + [11140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4345), + [11143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4196), + [11146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4466), + [11149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3054), + [11152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3877), + [11155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3878), + [11158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1140), + [11161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(457), + [11164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(87), + [11167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(116), + [11170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1388), + [11173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(453), + [11176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(143), + [11179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(141), + [11182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(141), + [11185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2003), + [11188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2085), + [11191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2085), + [11194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2083), + [11197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2082), + [11200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3920), + [11203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3921), + [11206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2081), + [11209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3923), + [11212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2080), + [11215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2079), + [11218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2078), + [11221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3927), + [11224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4468), + [11227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4212), + [11230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3928), + [11233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3928), + [11236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4213), + [11239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4214), + [11242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4214), + [11245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4353), + [11248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2849), + [11251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4355), + [11254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4355), + [11257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4429), + [11260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2046), + [11263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2030), + [11266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2045), + [11269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4356), + [11272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4217), + [11275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4469), + [11278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3000), + [11281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3930), + [11284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3931), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [11309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [11337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [11367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [11381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1140), + [11384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(87), + [11387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(116), + [11390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1388), + [11393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(458), + [11396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(143), + [11399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(141), + [11402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(141), + [11405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2003), + [11408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2085), + [11411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2085), + [11414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2083), + [11417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2082), + [11420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3920), + [11423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3921), + [11426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2081), + [11429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3923), + [11432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2080), + [11435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2079), + [11438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2078), + [11441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3927), + [11444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4468), + [11447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4212), + [11450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3928), + [11453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3928), + [11456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4213), + [11459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4214), + [11462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4214), + [11465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4353), + [11468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2849), + [11471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4355), + [11474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4355), + [11477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4429), + [11480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2046), + [11483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2030), + [11486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2045), + [11489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4356), + [11492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4217), + [11495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4469), + [11498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3000), + [11501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3930), + [11504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3931), + [11507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1364), + [11510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(463), + [11513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(46), + [11516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(239), + [11519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(1513), + [11522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(460), + [11525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(158), + [11528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(160), + [11531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(160), + [11534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2015), + [11537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2076), + [11540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2076), + [11543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2075), + [11546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2074), + [11549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3973), + [11552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3974), + [11555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2073), + [11558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3976), + [11561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2072), + [11564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2071), + [11567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2070), + [11570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3980), + [11573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4471), + [11576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4233), + [11579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3981), + [11582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3981), + [11585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4234), + [11588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4235), + [11591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4235), + [11594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4364), + [11597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2848), + [11600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4366), + [11603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4366), + [11606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4435), + [11609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2043), + [11612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2029), + [11615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2042), + [11618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4367), + [11621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4238), + [11624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(4472), + [11627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(2947), + [11630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3983), + [11633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subparagraph_repeat1, 2), SHIFT_REPEAT(3984), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [11644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1364), + [11647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(46), + [11650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(239), + [11653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1513), + [11656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(464), + [11659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(158), + [11662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(160), + [11665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(160), + [11668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2015), + [11671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2076), + [11674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2076), + [11677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2075), + [11680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2074), + [11683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3973), + [11686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3974), + [11689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2073), + [11692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3976), + [11695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2072), + [11698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2071), + [11701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2070), + [11704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3980), + [11707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4471), + [11710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4233), + [11713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3981), + [11716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3981), + [11719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4234), + [11722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4235), + [11725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4235), + [11728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4364), + [11731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2848), + [11734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4366), + [11737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4366), + [11740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4435), + [11743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2043), + [11746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2029), + [11749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2042), + [11752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4367), + [11755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4238), + [11758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4472), + [11761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2947), + [11764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3983), + [11767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3984), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [11772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [11784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [11788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [11790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [11794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [11796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [11798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [11800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [11802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [11804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [11806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [11808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [11810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [11812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [11814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [11816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [11818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [11822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [11824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [11828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [11830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [11832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [11836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [11838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [11840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [11842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [11844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [11846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [11848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [11850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [11852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [11854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [11858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1483), + [11861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(77), + [11864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(169), + [11867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(1752), + [11870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(469), + [11873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(235), + [11876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(233), + [11879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(233), + [11882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2019), + [11885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2186), + [11888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2186), + [11891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2184), + [11894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2183), + [11897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3602), + [11900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3603), + [11903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2182), + [11906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3605), + [11909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2181), + [11912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2180), + [11915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2179), + [11918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3609), + [11921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4450), + [11924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4086), + [11927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3610), + [11930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3610), + [11933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4087), + [11936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4088), + [11939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4088), + [11942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4287), + [11945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2870), + [11948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4289), + [11951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4289), + [11954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4393), + [11957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2059), + [11960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2037), + [11963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(2058), + [11966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4290), + [11969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4091), + [11972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(4451), + [11975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3287), + [11978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3612), + [11981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_item_repeat1, 2), SHIFT_REPEAT(3613), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [11988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 1, .production_id = 2), + [11990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 1, .production_id = 2), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [11996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 2, .production_id = 7), + [11998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 2, .production_id = 7), + [12000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), + [12002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 2), + [12004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(199), + [12007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(152), + [12010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(126), + [12013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), + [12015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [12019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), + [12021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2), + [12023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(476), + [12026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 5, .production_id = 46), + [12028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 5, .production_id = 46), + [12030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(220), + [12033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(227), + [12036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(218), + [12039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(146), + [12042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(135), + [12045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(129), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [12052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 8, .production_id = 69), + [12054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 8, .production_id = 69), + [12056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 3, .production_id = 1), + [12058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 3, .production_id = 1), + [12060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(177), + [12063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(163), + [12066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(187), + [12069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(216), + [12072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(201), + [12075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(219), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [12086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 7, .production_id = 63), + [12088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 7, .production_id = 63), + [12090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 6, .production_id = 55), + [12092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 6, .production_id = 55), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [12098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 4, .production_id = 22), + [12100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 4, .production_id = 22), + [12102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 4, .production_id = 20), + [12104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 4, .production_id = 20), + [12106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 7, .production_id = 61), + [12108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 7, .production_id = 61), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [12114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 8, .production_id = 70), + [12116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 8, .production_id = 70), + [12118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 9, .production_id = 71), + [12120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 9, .production_id = 71), + [12122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment, 2, .production_id = 8), + [12124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment, 2, .production_id = 8), + [12126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 3, .production_id = 10), + [12128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 3, .production_id = 10), + [12130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_group, 3, .production_id = 10), + [12132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_group, 3, .production_id = 10), + [12134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_group, 2, .production_id = 5), + [12136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_group, 2, .production_id = 5), + [12138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 3, .production_id = 11), + [12140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 3, .production_id = 11), + [12142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, .production_id = 1), + [12144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, .production_id = 1), + [12146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 3, .production_id = 1), + [12148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 3, .production_id = 1), + [12150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 3, .production_id = 1), + [12152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 3, .production_id = 1), + [12154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_include, 3, .production_id = 1), + [12156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_include, 3, .production_id = 1), + [12158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_input, 3, .production_id = 1), + [12160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_input, 3, .production_id = 1), + [12162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(183), + [12165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(237), + [12168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(182), + [12171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 3, .production_id = 1), + [12173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 3, .production_id = 1), + [12175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bibtex_include, 3, .production_id = 1), + [12177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bibtex_include, 3, .production_id = 1), + [12179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 10, .production_id = 72), + [12181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 10, .production_id = 72), + [12183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 10, .production_id = 73), + [12185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 10, .production_id = 73), + [12187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 6, .production_id = 56), + [12189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 6, .production_id = 56), + [12191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 8, .production_id = 68), + [12193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 8, .production_id = 68), + [12195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 3, .production_id = 1), + [12197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 3, .production_id = 1), + [12199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 8, .production_id = 67), + [12201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 8, .production_id = 67), + [12203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 8, .production_id = 66), + [12205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 8, .production_id = 66), + [12207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 3, .production_id = 1), + [12209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 3, .production_id = 1), + [12211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_definition, 8, .production_id = 65), + [12213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_definition, 8, .production_id = 65), + [12215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 7, .production_id = 64), + [12217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 7, .production_id = 64), + [12219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 7, .production_id = 62), + [12221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 7, .production_id = 62), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [12225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_include, 5, .production_id = 35), + [12227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_include, 5, .production_id = 35), + [12229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracket_group, 3, .production_id = 10), + [12231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracket_group, 3, .production_id = 10), + [12233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 7, .production_id = 60), + [12235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 7, .production_id = 60), + [12237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference_range, 7, .production_id = 59), + [12239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference_range, 7, .production_id = 59), + [12241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 7, .production_id = 58), + [12243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 7, .production_id = 58), + [12245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 7, .production_id = 57), + [12247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 7, .production_id = 57), + [12249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 6, .production_id = 54), + [12251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 6, .production_id = 54), + [12253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 4, .production_id = 20), + [12255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 4, .production_id = 20), + [12257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 6, .production_id = 15), + [12259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 6, .production_id = 15), + [12261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 6, .production_id = 53), + [12263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 6, .production_id = 53), + [12265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 6, .production_id = 53), + [12267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 6, .production_id = 53), + [12269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 6, .production_id = 53), + [12271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 6, .production_id = 53), + [12273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 3, .production_id = 1), + [12275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 3, .production_id = 1), + [12277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 6, .production_id = 53), + [12279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 6, .production_id = 53), + [12281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_include, 3, .production_id = 1), + [12283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_include, 3, .production_id = 1), + [12285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 6, .production_id = 53), + [12287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 6, .production_id = 53), + [12289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 6, .production_id = 52), + [12291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 6, .production_id = 52), + [12293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 6, .production_id = 51), + [12295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 6, .production_id = 51), + [12297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 3, .production_id = 1), + [12299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 3, .production_id = 1), + [12301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end, 4, .production_id = 15), + [12303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end, 4, .production_id = 15), + [12305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tikz_library_import, 5, .production_id = 49), + [12307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tikz_library_import, 5, .production_id = 49), + [12309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pgf_library_import, 3, .production_id = 1), + [12311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pgf_library_import, 3, .production_id = 1), + [12313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pgf_library_import, 5, .production_id = 49), + [12315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pgf_library_import, 5, .production_id = 49), + [12317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 6, .production_id = 53), + [12319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 6, .production_id = 53), + [12321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 2, .production_id = 5), + [12323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 2, .production_id = 5), + [12325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tikz_library_import, 3, .production_id = 1), + [12327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tikz_library_import, 3, .production_id = 1), + [12329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_group, 2, .production_id = 5), + [12331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_group, 2, .production_id = 5), + [12333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 44), + [12335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 44), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [12339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 5, .production_id = 43), + [12341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 5, .production_id = 43), + [12343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment, 3, .production_id = 13), + [12345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment, 3, .production_id = 13), + [12347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_group, 2, .production_id = 5), + [12349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_group, 2, .production_id = 5), + [12351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 5, .production_id = 43), + [12353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 5, .production_id = 43), + [12355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 5, .production_id = 42), + [12357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 5, .production_id = 42), + [12359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_definition, 5, .production_id = 42), + [12361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_definition, 5, .production_id = 42), + [12363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 4, .production_id = 16), + [12365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 4, .production_id = 16), + [12367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_number, 5, .production_id = 41), + [12369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_number, 5, .production_id = 41), + [12371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equation_label_reference, 5, .production_id = 39), + [12373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equation_label_reference, 5, .production_id = 39), + [12375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 5, .production_id = 39), + [12377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 5, .production_id = 39), + [12379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_include, 5, .production_id = 35), + [12381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_include, 5, .production_id = 35), + [12383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 4, .production_id = 17), + [12385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 4, .production_id = 17), + [12387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 4, .production_id = 19), + [12389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 4, .production_id = 19), + [12391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 5, .production_id = 37), + [12393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 5, .production_id = 37), + [12395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 5, .production_id = 35), + [12397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 5, .production_id = 35), + [12399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 5, .production_id = 37), + [12401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 5, .production_id = 37), + [12403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 5, .production_id = 35), + [12405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 5, .production_id = 35), + [12407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 5, .production_id = 37), + [12409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 5, .production_id = 37), + [12411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 5, .production_id = 35), + [12413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 5, .production_id = 35), + [12415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 4, .production_id = 20), + [12417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 4, .production_id = 20), + [12419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bibtex_include, 5, .production_id = 35), + [12421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bibtex_include, 5, .production_id = 35), + [12423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 5, .production_id = 37), + [12425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 5, .production_id = 37), + [12427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 5, .production_id = 35), + [12429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 5, .production_id = 35), + [12431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_input, 5, .production_id = 35), + [12433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_input, 5, .production_id = 35), + [12435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 11, .production_id = 74), + [12437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 11, .production_id = 74), + [12439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 5, .production_id = 37), + [12441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 5, .production_id = 37), + [12443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 5, .production_id = 35), + [12445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 5, .production_id = 35), + [12447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 5, .production_id = 37), + [12449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 5, .production_id = 37), + [12451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 5, .production_id = 35), + [12453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 5, .production_id = 35), + [12455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 4, .production_id = 19), + [12457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 4, .production_id = 19), + [12459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 5, .production_id = 29), + [12461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 5, .production_id = 29), + [12463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 5, .production_id = 28), + [12465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 5, .production_id = 28), + [12467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 5, .production_id = 26), + [12469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 5, .production_id = 26), + [12471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 4, .production_id = 20), + [12473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 4, .production_id = 20), + [12475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paren_group, 3, .production_id = 10), + [12477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paren_group, 3, .production_id = 10), + [12479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tikz_library_import, 4, .production_id = 15), + [12481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tikz_library_import, 4, .production_id = 15), + [12483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 2, .production_id = 6), + [12485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 2, .production_id = 6), + [12487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_include, 4, .production_id = 19), + [12489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_include, 4, .production_id = 19), + [12491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pgf_library_import, 4, .production_id = 15), + [12493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pgf_library_import, 4, .production_id = 15), + [12495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_reference, 4, .production_id = 15), + [12497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_reference, 4, .production_id = 15), + [12499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 4, .production_id = 15), + [12501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 4, .production_id = 15), + [12503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_input, 4, .production_id = 19), + [12505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_input, 4, .production_id = 19), + [12507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 4, .production_id = 15), + [12509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 4, .production_id = 15), + [12511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference_range, 4, .production_id = 21), + [12513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference_range, 4, .production_id = 21), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [12517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_equation_label_reference, 4, .production_id = 14), + [12519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_equation_label_reference, 4, .production_id = 14), + [12521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 4, .production_id = 14), + [12523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 4, .production_id = 14), + [12525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 4, .production_id = 15), + [12527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 4, .production_id = 15), + [12529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_include, 4, .production_id = 19), + [12531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_include, 4, .production_id = 19), + [12533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 4, .production_id = 19), + [12535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 4, .production_id = 19), + [12537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 4, .production_id = 20), + [12539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 4, .production_id = 20), + [12541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 4, .production_id = 19), + [12543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 4, .production_id = 19), + [12545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 4, .production_id = 19), + [12547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 4, .production_id = 19), + [12549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 4, .production_id = 20), + [12551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 4, .production_id = 20), + [12553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bibtex_include, 4, .production_id = 19), + [12555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bibtex_include, 4, .production_id = 19), + [12557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 4, .production_id = 19), + [12559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 4, .production_id = 19), + [12561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 4, .production_id = 15), + [12563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 4, .production_id = 15), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [12571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(615), + [12574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(616), + [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [12579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(618), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [12584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(161), + [12587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(193), + [12590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(159), + [12593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(621), + [12596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 5, .production_id = 24), + [12598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 5, .production_id = 24), + [12600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_begin_repeat1, 2), + [12602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_begin_repeat1, 2), SHIFT_REPEAT(216), + [12605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_begin_repeat1, 2), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [12613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_fragment, 1), + [12615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__text_fragment, 1), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [12619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(122), + [12622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(174), + [12625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(121), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [12640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(644), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [12655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(696), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [12676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(206), + [12679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(150), + [12682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(217), + [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [12697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(212), + [12700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(116), + [12703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(210), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [12710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1142), + [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [12729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1358), + [12732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(132), + [12735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(239), + [12738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(131), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [12745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1387), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [12756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(242), + [12759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(169), + [12762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2), SHIFT_REPEAT(246), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [12769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1511), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [12780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2), SHIFT_REPEAT(1639), + [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [12803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_val_pair_repeat1, 2), + [12805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_val_pair_repeat1, 2), SHIFT_REPEAT(1991), + [12808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_pair, 1, .production_id = 12), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [12824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_val_options_repeat1, 2, .production_id = 32), + [12826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_key_val_options_repeat1, 2, .production_id = 32), SHIFT_REPEAT(2576), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [12927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pgf_library_import_repeat1, 2, .production_id = 50), + [12929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pgf_library_import_repeat1, 2, .production_id = 50), SHIFT_REPEAT(3535), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [12934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_color_set_definition_repeat1, 2, .production_id = 47), + [12936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_color_set_definition_repeat1, 2, .production_id = 47), SHIFT_REPEAT(3537), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [13183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_reference_repeat1, 2, .production_id = 40), + [13185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_label_reference_repeat1, 2, .production_id = 40), SHIFT_REPEAT(3700), + [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [13236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_include_repeat1, 2, .production_id = 36), + [13238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_include_repeat1, 2, .production_id = 36), SHIFT_REPEAT(3873), + [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [13243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_pair, 3, .production_id = 33), + [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [13289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [13297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [13299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [13305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [13323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [13325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [13381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_key_val_options_repeat1, 2, .production_id = 30), + [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [13385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [13443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_citation_repeat1, 2, .production_id = 27), + [13445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_citation_repeat1, 2, .production_id = 27), SHIFT_REPEAT(3914), + [13448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [13450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [13452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [13454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [13456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [13458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [13460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [13462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [13464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [13466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [13468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [13470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [13472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [13474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [13476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [13480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [13482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [13484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [13488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [13490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [13492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [13494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [13500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [13502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [13504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [13506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [13508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [13510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [13512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [13514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [13516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [13518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [13520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [13522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [13524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [13526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [13528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [13530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [13536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [13538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [13540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [13544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [13546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [13550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [13552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [13560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [13562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [13576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [13578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [13580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [13586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [13588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [13594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [13598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [13600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [13606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [13608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [13618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [13622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [13624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [13628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [13630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [13632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [13634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [13636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [13638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [13640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [13642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [13644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [13646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [13648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [13650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [13654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [13656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [13658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [13660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [13664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [13666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [13668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [13670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [13676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [13680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [13686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [13692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [13694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [13696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [13698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [13702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [13704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [13710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [13712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [13714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [13718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [13722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [13734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [13738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [13744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [13746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [13756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [13760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [13762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [13764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [13766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [13770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [13780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [13788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [13790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [13794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [13800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [13802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [13804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [13806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [13808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [13810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [13812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [13814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [13816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [13826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [13828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [13830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [13832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [13834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [13836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [13846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [13852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [13854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [13864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [13868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [13872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [13874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [13876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [13880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [13882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [13884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [13888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [13890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [13892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [13894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [13896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [13898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [13900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [13918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [13928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [13936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [13944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [13946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [13956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [13964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [13966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [13976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [13984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [13986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [13990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [13992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [13996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [13998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [14002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [14004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [14010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [14014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [14024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [14030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [14032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [14038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [14046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [14048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [14050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [14054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [14056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [14058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [14062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [14070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [14086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [14100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [14140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [14164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [14172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [14188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [14194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [14204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [14222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [14234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [14246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [14252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [14264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [14270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [14272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [14274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [14278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [14290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [14300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [14304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [14306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [14318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [14320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [14328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [14344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [14346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [14348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [14352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [14354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [14356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [14364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [14374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [14378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [14380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [14382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [14384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [14392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [14394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [14404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [14406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [14408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [14410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [14412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [14414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [14416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [14418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [14424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [14426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [14428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [14430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [14432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [14434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [14436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [14438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [14440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [14442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [14444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [14446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [14448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [14450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [14452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [14454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [14456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [14462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [14478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [14480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [14488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [14496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [14518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [14522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [14538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [14544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [14556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [14564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [14566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [14568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [14578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [14584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [14594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [14610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [14648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [14672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [14686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pgf_library_import_repeat1, 2, .production_id = 48), + [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [14694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [14738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [14742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [14748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [14762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [14766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [14770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [14776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [14780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [14782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [14798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [14804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [14808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [14810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [14812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [14814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [14816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [14822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [14824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [14826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [14828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [14836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [14838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [14862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [14866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [14870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [14872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_color_set_definition_repeat1, 2, .production_id = 45), + [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [14894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [14906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [14908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [14912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [14914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [14916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [14918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [14920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [14922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [14924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [14926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [14928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [14930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [14932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [14934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [14936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [14940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [14942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [14974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [15072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [15074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [15076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [15082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [15086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [15088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [15090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [15094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [15096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [15100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [15106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [15110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [15112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [15114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [15118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [15120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [15126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [15128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [15130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [15134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [15136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [15142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [15144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [15146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [15148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [15150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [15152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [15174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [15176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [15192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [15212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [15214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [15226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [15228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [15230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [15232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [15234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [15236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [15240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [15242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [15244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [15246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [15248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [15250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [15252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [15254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [15258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [15260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [15268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [15278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [15280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [15282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [15290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [15292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [15294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [15296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [15298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [15300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [15302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [15304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [15306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [15308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [15310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [15312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [15314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [15316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [15318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [15320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [15322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [15324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [15326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [15328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [15330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [15332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [15334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [15336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [15338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [15342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [15350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [15352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [15354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [15360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [15362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [15364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [15366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [15370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [15372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [15376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [15378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [15380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [15382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [15384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [15386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [15388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [15390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [15392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [15394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [15396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [15398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [15400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [15402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [15404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [15406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_reference_repeat1, 2, .production_id = 38), + [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [15410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [15412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [15418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [15420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [15422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [15424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [15432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [15438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [15440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [15442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [15444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [15446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [15450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [15452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [15454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [15456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [15458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [15460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [15464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [15466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [15468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [15470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [15472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [15474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [15476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [15480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [15484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [15486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [15498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [15500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [15502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [15504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [15508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [15516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [15518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [15520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [15546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [15548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [15550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [15554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [15556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [15558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [15566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [15568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [15574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [15576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [15578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [15582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [15584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [15594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [15596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [15602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [15608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [15610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [15612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_citation_repeat1, 2, .production_id = 25), + [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [15618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [15622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [15624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [15626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [15628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [15630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [15636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [15640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [15642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [15644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [15646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [15648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [15650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_include_repeat1, 2, .production_id = 34), + [15652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [15654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [15656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [15658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [15660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [15662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [15664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [15666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [15668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [15670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [15672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [15674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [15676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [15678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [15680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [15682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [15684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [15686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [15688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [15690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [15692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [15694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [15696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [15698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [15700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [15702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [15704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [15706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [15708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [15710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [15712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [15718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [15720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [15722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [15726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [15728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [15730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [15732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [15734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [15736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [15738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [15740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [15742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [15744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [15746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [15750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [15752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [15754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [15756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [15760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [15768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [15770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [15774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [15778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [15780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [15782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [15784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [15790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [15794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [15798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [15800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [15802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [15804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [15806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [15808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [15810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [15812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [15814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [15816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [15818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [15820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [15822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [15824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [15826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [15828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [15830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [15832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [15834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [15836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [15838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [15840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [15842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [15844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [15846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [15848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [15850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [15852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [15854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [15856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [15858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [15860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [15862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [15864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [15866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [15868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [15870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [15872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [15874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [15876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [15878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [15880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [15882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [15884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [15886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [15888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [15890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [15892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [15894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [15896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [15898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [15900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [15902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [15904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [15906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [15908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [15910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [15912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [15914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [15916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [15918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [15920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [15922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [15924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [15926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [15928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [15930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [15932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [15934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [15936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [15938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [15940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [15942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [15944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [15946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [15948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [15950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [15952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [15954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [15956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [15958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [15960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [15962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [15964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [15966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [15968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [15970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [15972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [15974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [15976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [15978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [15982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [15984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [15986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [15990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [15992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [15994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [15996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [15998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [16000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [16002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [16004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [16008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [16010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [16012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [16014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [16016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [16018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [16020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [16022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [16024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [16026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [16028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [16032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [16034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [16036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [16040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [16042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [16044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [16046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [16048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [16050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [16052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [16054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [16056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [16058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [16060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [16062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [16064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [16066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [16068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [16070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [16072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [16074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [16076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [16078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [16080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [16082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [16084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [16086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [16088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [16090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [16092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [16094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [16096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [16098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [16100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [16102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [16104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [16106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [16108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [16110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [16112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [16114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [16116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [16118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [16120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [16122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [16124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [16126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [16128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [16130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [16132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [16134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [16136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [16138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [16140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [16142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [16144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [16146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [16148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [16150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [16152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [16154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [16156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [16158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [16160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [16162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [16164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [16166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [16168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [16170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [16172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [16174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [16176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [16178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [16180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [16182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [16184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [16186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [16188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [16190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [16192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [16194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [16196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [16198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [16200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [16202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [16204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [16206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [16208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [16210] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [16212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [16214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [16216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [16218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [16220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [16222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [16224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [16226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [16228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [16230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [16232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [16234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [16236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [16238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [16240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [16242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [16244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [16246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [16248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [16250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [16252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [16254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [16256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [16258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [16260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [16262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [16264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [16266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [16268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [16270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [16272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [16274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [16276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [16278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [16280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [16282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [16284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [16286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [16288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [16290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [16292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [16294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [16296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [16298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [16300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [16302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [16304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [16306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [16308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [16310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [16312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [16314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [16316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [16318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [16320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [16322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [16324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [16326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [16328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [16330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [16332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [16334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [16336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [16338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [16340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [16342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [16344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [16346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [16348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [16350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [16352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [16354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [16356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [16358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [16360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [16362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [16364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [16366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [16368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [16370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [16372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [16374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [16376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [16378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [16380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [16382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [16384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [16386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [16388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [16390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [16392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [16394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [16396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [16398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [16400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [16402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [16404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [16406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [16408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [16410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [16412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [16414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [16416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [16418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [16420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [16422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [16424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [16426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [16428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [16430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [16432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [16434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [16436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [16438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [16440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_options, 4, .production_id = 31), + [16442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [16444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [16446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [16448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [16450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [16452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [16454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [16456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [16458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [16460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [16462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [16464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [16466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [16468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [16470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [16472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [16474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [16476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [16478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [16480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [16482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [16484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [16486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [16488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [16490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [16492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [16494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [16496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [16498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [16500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [16502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [16504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [16506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [16508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [16510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [16512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [16514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [16516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [16518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [16520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [16522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [16524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [16526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [16528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [16530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [16532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [16534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [16536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [16538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [16540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [16542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [16544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [16546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [16548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [16550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [16552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [16554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [16556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_options, 3, .production_id = 18), + [16558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [16560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [16562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [16564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [16566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [16568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [16570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [16574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [16578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [16580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [16582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [16584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [16586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [16592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [16594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [16596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [16598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [16600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [16602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [16604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [16606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [16608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [16610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [16612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [16614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [16616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [16618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [16620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [16622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [16624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [16626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [16628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [16630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [16632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [16634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [16636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [16640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [16642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [16644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [16646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [16650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [16656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [16658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [16660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [16666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [16670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [16672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [16674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [16678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [16680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [16682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [16684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [16686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [16688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [16690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [16692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [16694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [16696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [16698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [16700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [16702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [16704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [16706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [16708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [16710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [16712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [16714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [16716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [16718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [16720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [16722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [16724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [16726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [16728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [16730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [16732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [16734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [16736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [16738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [16740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [16742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [16744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [16746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [16748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [16750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [16752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [16754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [16756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [16758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [16760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [16762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [16764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [16766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [16768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [16770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [16772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [16774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_val_options, 2, .production_id = 5), + [16776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [16778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [16780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [16782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [16784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [16786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [16788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [16790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [16792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [16794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [16796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [16798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [16800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [16802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [16804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [16806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [16808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [16810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [16812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [16814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [16816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [16818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [16820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [16822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [16824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [16826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [16828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [16830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [16832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [16836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [16838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [16840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [16842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [16844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [16846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [16848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [16850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [16852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [16854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [16856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [16858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [16860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [16862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [16864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [16866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [16868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [16870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [16872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [16874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [16876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [16878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [16880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [16882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [16884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [16886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [16888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [16890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [16892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [16894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [16896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [16898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [16900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [16902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [16904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [16906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [16908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [16910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [16912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [16914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [16916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [16918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [16920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [16922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [16924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [16926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [16928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [16930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [16932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [16936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [16942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [16944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [16946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [16948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [16950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [16952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [16954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [16956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [16958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [16960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [16962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [16964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [16966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [16968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [16970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [16972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [16974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [16976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [16978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [16980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [16982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [16984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [16986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [16988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [16990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [16992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [16994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [16996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [16998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [17000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [17002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [17004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [17006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [17008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [17010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [17012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [17014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [17016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [17018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [17020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [17022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [17024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [17026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [17028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [17030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [17032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [17034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [17036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [17038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [17040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [17042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [17044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [17046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [17048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [17050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [17052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [17054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [17056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [17058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [17060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [17062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [17064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [17066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [17068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [17070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [17072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [17074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [17076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [17078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [17080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [17082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [17084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [17086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [17088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [17090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [17092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [17094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [17096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [17098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [17100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [17102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [17104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [17106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [17108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [17110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [17112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [17114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [17116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [17118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [17120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [17122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [17124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [17126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [17128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [17130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [17132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [17134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [17136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [17138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [17140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [17142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [17144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [17146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [17148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [17150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [17152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [17154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [17156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [17158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [17162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [17164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [17166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [17168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [17170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [17172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [17174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [17176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [17178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [17180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [17182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [17184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [17186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [17188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [17190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [17192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [17194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [17196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [17198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [17200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [17202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [17204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [17206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [17208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [17210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [17212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [17214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [17216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [17218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [17220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [17222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [17224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [17226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [17228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [17230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [17232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [17234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [17236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [17238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [17240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [17242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [17244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [17246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [17248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [17250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [17252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [17254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [17256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [17258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [17260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [17262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [17264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [17266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [17268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [17270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [17272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [17274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [17276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [17278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [17280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [17282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [17284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [17286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [17288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [17290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [17292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [17294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [17296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [17298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [17300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [17302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [17304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [17306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [17308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [17310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [17312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [17314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [17316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [17318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [17320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [17322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [17324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [17326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [17328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [17330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [17332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [17334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [17336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [17338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [17340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [17342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [17344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [17346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [17348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [17350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [17352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [17354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [17356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [17358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [17360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [17362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [17364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [17366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [17368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [17370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [17372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [17374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [17376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [17378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [17380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [17382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [17384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [17386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [17388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [17390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [17392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [17394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [17396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [17398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [17400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [17402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [17404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [17406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [17408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [17410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [17412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [17414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [17416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [17418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [17420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [17422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [17424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [17426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [17428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [17430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [17432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [17434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [17436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [17438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [17440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [17442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [17444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [17446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [17448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [17450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [17452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [17454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [17456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [17458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [17460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [17462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [17464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [17466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [17468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [17470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [17472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [17474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [17476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [17478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [17480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [17482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [17484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [17486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [17488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [17490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [17492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [17494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [17496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [17498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [17500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [17502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [17504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [17506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [17508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [17510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [17512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [17514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [17516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [17518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [17520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [17522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [17524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [17526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [17528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [17530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [17532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [17534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [17536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [17538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [17540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [17542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [17544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [17546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [17548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [17550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [17552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [17554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [17556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [17558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [17560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [17562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [17564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [17566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [17568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [17570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [17572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [17574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [17576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [17578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [17580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [17582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [17584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), + [17586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [17588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [17590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [17592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [17594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [17596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [17598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [17600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [17602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [17604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [17606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [17608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [17610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [17612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [17614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [17616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [17618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [17620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [17622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [17624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [17626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [17628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [17630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [17632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [17634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [17636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [17638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [17640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [17642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [17644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [17646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [17648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [17650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [17652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [17654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [17656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [17658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [17660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [17662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [17664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [17666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [17668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [17670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [17672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [17674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [17676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [17678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [17680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [17682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [17684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [17686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [17688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [17690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [17692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [17694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [17696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [17698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [17700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [17702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [17704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [17706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [17708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [17710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [17712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [17714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [17716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [17718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [17720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [17722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [17724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [17726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [17728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [17730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [17732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [17734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [17736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [17738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [17740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [17742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [17744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [17746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [17748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [17750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), }; #ifdef __cplusplus @@ -175616,26 +525128,27 @@ extern const TSLanguage *tree_sitter_latex(void) { .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, .external_token_count = EXTERNAL_TOKEN_COUNT, - .symbol_names = ts_symbol_names, - .symbol_metadata = ts_symbol_metadata, + .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 = (const uint16_t *)ts_parse_table, + .small_parse_table = (const uint16_t *)ts_small_parse_table, + .small_parse_table_map = (const uint32_t *)ts_small_parse_table_map, .parse_actions = ts_parse_actions, - .lex_modes = ts_lex_modes, - .alias_sequences = (const TSSymbol *)ts_alias_sequences, - .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, - .lex_fn = ts_lex, - .keyword_lex_fn = ts_lex_keywords, - .keyword_capture_token = sym_generic_command_name, - .field_count = FIELD_COUNT, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, .field_map_slices = (const TSFieldMapSlice *)ts_field_map_slices, .field_map_entries = (const TSFieldMapEntry *)ts_field_map_entries, - .field_names = ts_field_names, - .large_state_count = LARGE_STATE_COUNT, - .small_parse_table = (const uint16_t *)ts_small_parse_table, - .small_parse_table_map = (const uint32_t *)ts_small_parse_table_map, + .symbol_metadata = ts_symbol_metadata, .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, - .state_count = STATE_COUNT, + .alias_sequences = (const TSSymbol *)ts_alias_sequences, + .lex_modes = ts_lex_modes, + .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym_generic_command_name, }; return &language; } diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index c5a788ff6..a3a87bd1d 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,6 +13,8 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 +typedef uint16_t TSStateId; + #ifndef TREE_SITTER_API_H_ typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; @@ -30,12 +32,10 @@ typedef struct { uint16_t length; } TSFieldMapSlice; -typedef uint16_t TSStateId; - typedef struct { - bool visible : 1; - bool named : 1; - bool supertype: 1; + bool visible; + bool named; + bool supertype; } TSSymbolMetadata; typedef struct TSLexer TSLexer; @@ -57,21 +57,21 @@ typedef enum { TSParseActionTypeRecover, } TSParseActionType; -typedef struct { - union { - struct { - TSStateId state; - bool extra : 1; - bool repetition : 1; - } shift; - struct { - TSSymbol symbol; - int16_t dynamic_precedence; - uint8_t child_count; - uint8_t production_id; - } reduce; - } params; - TSParseActionType type : 4; +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 { @@ -83,7 +83,7 @@ typedef union { TSParseAction action; struct { uint8_t count; - bool reusable : 1; + bool reusable; } entry; } TSParseActionEntry; @@ -93,13 +93,24 @@ struct TSLanguage { uint32_t alias_count; uint32_t token_count; uint32_t external_token_count; - const char **symbol_names; - const TSSymbolMetadata *symbol_metadata; + 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 TSLexMode *lex_modes; + const char **symbol_names; + const char **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; - uint16_t max_alias_sequence_length; + const TSLexMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -112,16 +123,6 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; - uint32_t field_count; - const TSFieldMapSlice *field_map_slices; - const TSFieldMapEntry *field_map_entries; - const char **field_names; - uint32_t large_state_count; - const uint16_t *small_parse_table; - const uint32_t *small_parse_table_map; - const TSSymbol *public_symbol_map; - const uint16_t *alias_map; - uint32_t state_count; }; /* @@ -170,66 +171,50 @@ struct TSLanguage { #define ACTIONS(id) id -#define SHIFT(state_value) \ - { \ - { \ - .params = { \ - .shift = { \ - .state = state_value \ - } \ - }, \ - .type = TSParseActionTypeShift \ - } \ - } +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value \ + } \ + }} #define SHIFT_REPEAT(state_value) \ - { \ - { \ - .params = { \ - .shift = { \ - .state = state_value, \ - .repetition = true \ - } \ - }, \ - .type = TSParseActionTypeShift \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value, \ + .repetition = true \ } \ - } - -#define RECOVER() \ - { \ - { .type = TSParseActionTypeRecover } \ - } + }} #define SHIFT_EXTRA() \ - { \ - { \ - .params = { \ - .shift = { \ - .extra = true \ - } \ - }, \ - .type = TSParseActionTypeShift \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ } \ - } + }} #define REDUCE(symbol_val, child_count_val, ...) \ - { \ - { \ - .params = { \ - .reduce = { \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ - }, \ - .type = TSParseActionTypeReduce \ - } \ - } - -#define ACCEPT_INPUT() \ - { \ - { .type = TSParseActionTypeAccept } \ - } + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} #ifdef __cplusplus }